summaryrefslogtreecommitdiffstats
path: root/dictionaries/en
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dictionaries/en/English.pngbin0 -> 2731 bytes
-rw-r--r--dictionaries/en/Lightproof.components18
-rw-r--r--dictionaries/en/Lightproof.py160
-rw-r--r--dictionaries/en/Linguistic.xcu18
-rw-r--r--dictionaries/en/META-INF/manifest.xml16
-rw-r--r--dictionaries/en/README.txt76
-rw-r--r--dictionaries/en/README_en_AU.txt347
-rw-r--r--dictionaries/en/README_en_CA.txt347
-rw-r--r--dictionaries/en/README_en_GB.txt242
-rw-r--r--dictionaries/en/README_en_GB_thes.txt1
-rw-r--r--dictionaries/en/README_en_US.txt347
-rw-r--r--dictionaries/en/README_en_ZA.txt709
-rw-r--r--dictionaries/en/README_hyph_en_GB.txt198
-rw-r--r--dictionaries/en/README_hyph_en_US.txt59
-rw-r--r--dictionaries/en/README_lightproof_en.txt3
-rw-r--r--dictionaries/en/WordNet_license.txt31
-rw-r--r--dictionaries/en/affDescription.txt149
-rw-r--r--dictionaries/en/changelog.txt975
-rw-r--r--dictionaries/en/description.xml18
-rw-r--r--dictionaries/en/dialog/en.xdl26
-rw-r--r--dictionaries/en/dialog/en_en_US.default0
-rw-r--r--dictionaries/en/dialog/en_en_US.properties37
-rw-r--r--dictionaries/en/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu27
-rw-r--r--dictionaries/en/dialog/registry/schema/org/openoffice/Lightproof_en.xcs98
-rw-r--r--dictionaries/en/dictionaries.xcu97
-rw-r--r--dictionaries/en/en_AU.aff205
-rw-r--r--dictionaries/en/en_AU.dic49824
-rw-r--r--dictionaries/en/en_CA.aff205
-rw-r--r--dictionaries/en/en_CA.dic49564
-rw-r--r--dictionaries/en/en_GB.aff1430
-rw-r--r--dictionaries/en/en_GB.dic96406
-rw-r--r--dictionaries/en/en_US.aff205
-rw-r--r--dictionaries/en/en_US.dic49569
-rw-r--r--dictionaries/en/en_ZA.aff1471
-rw-r--r--dictionaries/en/en_ZA.dic53537
-rw-r--r--dictionaries/en/hyph_en_GB.dic14062
-rw-r--r--dictionaries/en/hyph_en_US.dic11130
-rw-r--r--dictionaries/en/license.txt280
-rwxr-xr-xdictionaries/en/package-description.txt8
-rw-r--r--dictionaries/en/pythonpath/lightproof_en.py3
-rw-r--r--dictionaries/en/pythonpath/lightproof_handler_en.py119
-rw-r--r--dictionaries/en/pythonpath/lightproof_impl_en.py335
-rw-r--r--dictionaries/en/pythonpath/lightproof_opts_en.py4
-rw-r--r--dictionaries/en/th_en_US_v2.dat349814
44 files changed, 682170 insertions, 0 deletions
diff --git a/dictionaries/en/English.png b/dictionaries/en/English.png
new file mode 100644
index 0000000..13ec15f
--- /dev/null
+++ b/dictionaries/en/English.png
Binary files differ
diff --git a/dictionaries/en/Lightproof.components b/dictionaries/en/Lightproof.components
new file mode 100644
index 0000000..8c3446f
--- /dev/null
+++ b/dictionaries/en/Lightproof.components
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+-->
+<components xmlns="http://openoffice.org/2010/uno-components">
+ <component loader="com.sun.star.loader.Python" uri="./Lightproof.py">
+ <implementation name="org.libreoffice.comp.pyuno.Lightproof.en">
+ <service name="com.sun.star.linguistic2.Proofreader"/>
+ </implementation>
+ <implementation
+ name="org.libreoffice.comp.pyuno.LightproofOptionsEventHandler.en"/>
+ </component>
+</components>
diff --git a/dictionaries/en/Lightproof.py b/dictionaries/en/Lightproof.py
new file mode 100644
index 0000000..3003810
--- /dev/null
+++ b/dictionaries/en/Lightproof.py
@@ -0,0 +1,160 @@
+# -*- encoding: UTF-8 -*-
+# Lightproof grammar checker for LibreOffice and OpenOffice.org
+# 2009-2012 (c) László Németh (nemeth at numbertext org), license: MPL 1.1 / GPLv3+ / LGPLv3+
+
+import uno, unohelper, os, sys, traceback
+from lightproof_impl_en import locales
+from lightproof_impl_en import pkg
+import lightproof_impl_en
+import lightproof_handler_en
+
+from com.sun.star.linguistic2 import XProofreader, XSupportedLocales
+from com.sun.star.linguistic2 import ProofreadingResult, SingleProofreadingError
+from com.sun.star.lang import XServiceInfo, XServiceName, XServiceDisplayName
+from com.sun.star.lang import Locale
+# reload in obj.reload in Python 3
+try:
+ from obj import reload
+except:
+ pass
+
+class Lightproof( unohelper.Base, XProofreader, XServiceInfo, XServiceName, XServiceDisplayName, XSupportedLocales):
+
+ def __init__( self, ctx, *args ):
+ self.ctx = ctx
+ self.ServiceName = "com.sun.star.linguistic2.Proofreader"
+ self.ImplementationName = "org.libreoffice.comp.pyuno.Lightproof." + pkg
+ self.SupportedServiceNames = (self.ServiceName, )
+ self.locales = []
+ for i in locales:
+ l = locales[i]
+ self.locales += [Locale(l[0], l[1], l[2])]
+ self.locales = tuple(self.locales)
+ currentContext = uno.getComponentContext()
+ lightproof_impl_en.SMGR = currentContext.ServiceManager
+ lightproof_impl_en.spellchecker = \
+ lightproof_impl_en.SMGR.createInstanceWithContext("com.sun.star.linguistic2.SpellChecker", currentContext)
+ lightproof_handler_en.load(currentContext)
+
+ # XServiceName method implementations
+ def getServiceName(self):
+ return self.ImplementationName
+
+ # XServiceInfo method implementations
+ def getImplementationName (self):
+ return self.ImplementationName
+
+ def supportsService(self, ServiceName):
+ return (ServiceName in self.SupportedServiceNames)
+
+ def getSupportedServiceNames (self):
+ return self.SupportedServiceNames
+
+ # XSupportedLocales
+ def hasLocale(self, aLocale):
+ if aLocale in self.locales:
+ return True
+ for i in self.locales:
+ if (i.Country == aLocale.Country or i.Country == "") and aLocale.Language == i.Language:
+ return True
+ return False
+
+ def getLocales(self):
+ return self.locales
+
+ # XProofreader
+ def isSpellChecker(self):
+ return False
+
+ def doProofreading(self, nDocId, rText, rLocale, nStartOfSentencePos, \
+ nSuggestedSentenceEndPos, rProperties):
+ aRes = uno.createUnoStruct( "com.sun.star.linguistic2.ProofreadingResult" )
+ aRes.aDocumentIdentifier = nDocId
+ aRes.aText = rText
+ aRes.aLocale = rLocale
+ aRes.nStartOfSentencePosition = nStartOfSentencePos
+ aRes.nStartOfNextSentencePosition = nSuggestedSentenceEndPos
+ aRes.aProperties = ()
+ aRes.xProofreader = self
+ aRes.aErrors = ()
+ # PATCH FOR LO 4
+ # Fix for http://nabble.documentfoundation.org/Grammar-checker-Undocumented-change-in-the-API-for-LO-4-td4030639.html
+ if nStartOfSentencePos != 0:
+ return aRes
+ aRes.nStartOfNextSentencePosition = len(rText)
+ if len(rProperties) > 0 and rProperties[0].Name == "Update":
+ try:
+ import lightproof_compile_en
+ try:
+ code = lightproof_compile_en.c(rProperties[0].Value, rLocale.Language, True)
+ except Exception as e:
+ aRes.aText, aRes.nStartOfSentencePosition = e
+ return aRes
+ path = lightproof_impl_en.get_path()
+ f = open(path.replace("_impl", ""), "w")
+ f.write("dic = %s" % code["rules"])
+ f.close()
+ if pkg in lightproof_impl_en.langrule:
+ mo = lightproof_impl_en.langrule[pkg]
+ reload(mo)
+ lightproof_impl_en.compile_rules(mo.dic)
+ lightproof_impl_en.langrule[pkg] = mo
+ if "code" in code:
+ f = open(path, "r")
+ ft = f.read()
+ f.close()
+ f = open(path, "w")
+ f.write(ft[:ft.find("# [code]") + 8] + "\n" + code["code"])
+ f.close()
+ try:
+ reload(lightproof_impl_en)
+ except Exception as e:
+ aRes.aText = e.args[0]
+ if e.args[1][3] == "": # "expected an indented block" (end of file)
+ aRes.nStartOfSentencePosition = len(rText.split("\n"))
+ else:
+ aRes.nStartOfSentencePosition = rText.split("\n").index(e.args[1][3][:-1]) + 1
+ return aRes
+ aRes.aText = ""
+ return aRes
+ except:
+ if 'PYUNO_LOGLEVEL' in os.environ:
+ print(traceback.format_exc())
+
+ l = rText[aRes.nStartOfNextSentencePosition:aRes.nStartOfNextSentencePosition+1]
+ while l == " ":
+ aRes.nStartOfNextSentencePosition = aRes.nStartOfNextSentencePosition + 1
+ l = rText[aRes.nStartOfNextSentencePosition:aRes.nStartOfNextSentencePosition+1]
+ if aRes.nStartOfNextSentencePosition == nSuggestedSentenceEndPos and l!="":
+ aRes.nStartOfNextSentencePosition = nSuggestedSentenceEndPos + 1
+ aRes.nBehindEndOfSentencePosition = aRes.nStartOfNextSentencePosition
+
+ try:
+ aRes.aErrors = lightproof_impl_en.proofread( nDocId, rText, rLocale, \
+ nStartOfSentencePos, aRes.nBehindEndOfSentencePosition, rProperties)
+ except Exception as e:
+ if len(rProperties) > 0 and rProperties[0].Name == "Debug" and len(e.args) == 2:
+ aRes.aText, aRes.nStartOfSentencePosition = e
+ else:
+ if 'PYUNO_LOGLEVEL' in os.environ:
+ print(traceback.format_exc())
+ return aRes
+
+ def ignoreRule(self, rid, aLocale):
+ lightproof_impl_en.ignore[rid] = 1
+
+ def resetIgnoreRules(self):
+ lightproof_impl_en.ignore = {}
+
+ # XServiceDisplayName
+ def getServiceDisplayName(self, aLocale):
+ return lightproof_impl_en.name
+
+g_ImplementationHelper = unohelper.ImplementationHelper()
+g_ImplementationHelper.addImplementation( Lightproof, \
+ "org.libreoffice.comp.pyuno.Lightproof." + pkg,
+ ("com.sun.star.linguistic2.Proofreader",))
+
+g_ImplementationHelper.addImplementation( lightproof_handler_en.LightproofOptionsEventHandler, \
+ "org.libreoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg,
+ ())
diff --git a/dictionaries/en/Linguistic.xcu b/dictionaries/en/Linguistic.xcu
new file mode 100644
index 0000000..e090086
--- /dev/null
+++ b/dictionaries/en/Linguistic.xcu
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<oor:component-data oor:name="Linguistic"
+ oor:package="org.openoffice.Office" xmlns:oor="http://openoffice.org/2001/registry"
+ xmlns:xs="http://www.w3.org/2001/XMLSchema">
+ <node oor:name="ServiceManager">
+
+ <node oor:name="GrammarCheckers">
+ <node oor:name="org.libreoffice.comp.pyuno.Lightproof.en"
+ oor:op="fuse">
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-GB en-US en-PH en-ZA en-NA en-ZW en-AU en-CA en-IE en-IL en-IN en-BZ en-BS en-GH en-JM en-NZ en-TT</value>
+ </prop>
+ </node>
+ </node>
+
+ </node>
+
+</oor:component-data>
diff --git a/dictionaries/en/META-INF/manifest.xml b/dictionaries/en/META-INF/manifest.xml
new file mode 100644
index 0000000..b6489c7
--- /dev/null
+++ b/dictionaries/en/META-INF/manifest.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd">
+<manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest">
+ <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data"
+ manifest:full-path="dictionaries.xcu"/>
+ <manifest:file-entry manifest:media-type="application/vnd.sun.star.package-bundle-description" manifest:full-path="package-description.txt"/>
+ <manifest:file-entry manifest:full-path="dialog/OptionsDialog.xcs"
+ manifest:media-type="application/vnd.sun.star.configuration-schema" />
+ <manifest:file-entry manifest:full-path="dialog/OptionsDialog.xcu"
+ manifest:media-type="application/vnd.sun.star.configuration-data" />
+ <manifest:file-entry manifest:media-type="application/vnd.sun.star.uno-components"
+ manifest:full-path="Lightproof.components"/>
+ <manifest:file-entry
+ manifest:media-type="application/vnd.sun.star.configuration-data"
+ manifest:full-path="Linguistic.xcu" />
+</manifest:manifest>
diff --git a/dictionaries/en/README.txt b/dictionaries/en/README.txt
new file mode 100644
index 0000000..16ef20b
--- /dev/null
+++ b/dictionaries/en/README.txt
@@ -0,0 +1,76 @@
+OpenOffice.org Hunspell en_US dictionary
+2010-03-09 release
+
+--
+This dictionary is based on a subset of the original
+English wordlist created by Kevin Atkinson for Pspell
+and Aspell and thus is covered by his original
+LGPL license. The affix file is a heavily modified
+version of the original english.aff file which was
+released as part of Geoff Kuenning's Ispell and as
+such is covered by his BSD license.
+
+Thanks to both authors for there wonderful work.
+
+ChangeLog
+
+2010-03-09 (nemeth AT OOo)
+ - UTF-8 encoded dictionary:
+ - fix em-dash problem of OOo 3.2 by BREAK
+ - suggesting words with typographical apostrophes
+ - recognizing words with Unicode f ligatures
+ - add phonetic suggestion (Copyright (C) 2000 Björn Jacke, see the end of the file)
+
+2007-08-29 nemeth AT OOo
+
+Mozilla 376296 - add "axe" (variant of ax)
+Mozilla 386259 - add "JavaScript"
+Mozilla 383694 - add "foci" and "octopi" (plurals of focus and octopus)
+Issue 73024 - add "gauge"
+Issue 75710 - add "foldable"
+Issue 75772 - add "GHz"
+Mozilla 379527 and Issue 62294 - add "dialogue"
+Issue 64246 - add "acknowledgement" as a variant of "acknowledgment"
+
+- TRY extended with apostrophe and dash for
+ dont -> don't
+ alltime -> all-time suggestions
+- new REP suggestions:
+- REP alot a_lot (alot -> a lot)
+for suggestion)
+- REP nt n't (dont -> don't)
+- REP avengence -> a_vengeance (avengence -> a vengeance)
+- REP ninties 1990s
+- REP tion ssion: readmition -> readmission
+
+- add Mozilla words (blog, cafe, inline, online, eBay, PayPal, etc.)
+- add cybercaf
+- alias compression (saving 15 kB disk space + 0.8 MB memory)
+
+Mozilla 355178 - add scot-free
+Mozilla 374411 - add Scotty
+Mozilla 359305 - add archaeology, archeological, archeologist
+Mozilla 358754 - add doughnut
+Mozilla 254814 - add gauging, canoeing, *canoing, proactively
+Issue 71718 - remove *opthalmic, *opthalmology; *opthalmologic -> ophthalmologic
+Issue 68550 - *estoppal -> estoppel
+Issue 69345 - add tapenade
+Issue 67975 - add assistive
+Issue 63541 - remove *dessicate
+Issue 62599 - add toolbar
+
+2006-02-07 nemeth AT OOo
+
+Issue 48060 - add ordinal numbers with COMPOUNDRULE (1st, 11th, 101st etc.)
+Issue 29112, 55498 - add NOSUGGEST flags to taboo words
+Issue 56755 - add sequitor (non sequitor)
+Issue 50616 - add open source words (GNOME, KDE, OOo, OpenOffice.org)
+Issue 56389 - add Mozilla words (Mozilla, Firefox, Thunderbird)
+Issue 29110 - add okay
+Issue 58468 - add advisors
+Issue 58708 - add hiragana & katakana
+Issue 60240 - add arginine, histidine, monovalent, polymorphism, pyroelectric, pyroelectricity
+
+2005-11-01 dnaber AT OOo
+
+Issue 25797 - add proven, advisor, etc.
diff --git a/dictionaries/en/README_en_AU.txt b/dictionaries/en/README_en_AU.txt
new file mode 100644
index 0000000..8e87019
--- /dev/null
+++ b/dictionaries/en/README_en_AU.txt
@@ -0,0 +1,347 @@
+en_AU Hunspell Dictionary
+Version 2020.12.07
+Mon Dec 7 20:14:35 2020 -0500 [5ef55f9]
+http://wordlist.sourceforge.net
+
+README file for English Hunspell dictionaries derived from SCOWL.
+
+These dictionaries are created using the speller/make-hunspell-dict
+script in SCOWL.
+
+The following dictionaries are available:
+
+ en_US (American)
+ en_CA (Canadian)
+ en_GB-ise (British with "ise" spelling)
+ en_GB-ize (British with "ize" spelling)
+ en_AU (Australian)
+
+ en_US-large
+ en_CA-large
+ en_GB-large (with both "ise" and "ize" spelling)
+ en_AU-large
+
+The normal (non-large) dictionaries correspond to SCOWL size 60 and,
+to encourage consistent spelling, generally only include one spelling
+variant for a word. The large dictionaries correspond to SCOWL size
+70 and may include multiple spelling for a word when both variants are
+considered almost equal. The larger dictionaries however (1) have not
+been as carefully checked for errors as the normal dictionaries and
+thus may contain misspelled or invalid words; and (2) contain
+uncommon, yet valid, words that might cause problems as they are
+likely to be misspellings of more common words (for example, "ort" and
+"calender").
+
+To get an idea of the difference in size, here are 25 random words
+only found in the large dictionary for American English:
+
+ Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
+ crassitudes crural dogwatches errorless fetial flaxseeds godroon
+ incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
+ stemwinder stenoses syce thalassic zees
+
+The en_US, en_CA and en_AU are the official dictionaries for Hunspell.
+The en_GB and large dictionaries are made available on an experimental
+basis. If you find them useful please send me a quick email at
+kevina@gnu.org.
+
+If none of these dictionaries suite you (for example, maybe you want
+the normal dictionary that also includes common variants) additional
+dictionaries can be generated at http://app.aspell.net/create or by
+modifying speller/make-hunspell-dict in SCOWL. Please do let me know
+if you end up publishing a customized dictionary.
+
+If a word is not found in the dictionary or a word is there you think
+shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
+to help determine why that is.
+
+General comments on these list can be sent directly to me at
+kevina@gnu.org or to the wordlist-devel mailing lists
+(https://lists.sourceforge.net/lists/listinfo/wordlist-devel). If you
+have specific issues with any of these dictionaries please file a bug
+report at https://github.com/kevina/wordlist/issues.
+
+IMPORTANT CHANGES INTRODUCED In 2016.11.20:
+
+New Australian dictionaries thanks to the work of Benjamin Titze
+(btitze@protonmail.ch).
+
+IMPORTANT CHANGES INTRODUCED IN 2016.04.24:
+
+The dictionaries are now in UTF-8 format instead of ISO-8859-1. This
+was required to handle smart quotes correctly.
+
+IMPORTANT CHANGES INTRODUCED IN 2016.01.19:
+
+"SET UTF8" was changes to "SET UTF-8" in the affix file as some
+versions of Hunspell do not recognize "UTF8".
+
+ADDITIONAL NOTES:
+
+The NOSUGGEST flag was added to certain taboo words. While I made an
+honest attempt to flag the strongest taboo words with the NOSUGGEST
+flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
+The list was originally derived from Németh László, however I removed
+some words which, while being considered taboo by some dictionaries,
+are not really considered swear words in today's society.
+
+COPYRIGHT, SOURCES, and CREDITS:
+
+The English dictionaries come directly from SCOWL
+and is thus under the same copyright of SCOWL. The affix file is
+a heavily modified version of the original english.aff file which was
+released as part of Geoff Kuenning's Ispell and as such is covered by
+his BSD license. Part of SCOWL is also based on Ispell thus the
+Ispell copyright is included with the SCOWL copyright.
+
+The collective work is Copyright 2000-2018 by Kevin Atkinson as well
+as any of the copyrights mentioned below:
+
+ Copyright 2000-2018 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell these word
+ lists, the associated scripts, the output created from the scripts,
+ and its documentation for any purpose is hereby granted without fee,
+ provided that the above copyright notice appears in all copies and
+ that both that copyright notice and this permission notice appear in
+ supporting documentation. Kevin Atkinson makes no representations
+ about the suitability of this array for any purpose. It is provided
+ "as is" without express or implied warranty.
+
+Alan Beale <biljir@pobox.com> also deserves special credit as he has,
+in addition to providing the 12Dicts package and being a major
+contributor to the ENABLE word list, given me an incredible amount of
+feedback and created a number of special lists (those found in the
+Supplement) in order to help improve the overall quality of SCOWL.
+
+The 10 level includes the 1000 most common English words (according to
+the Moby (TM) Words II [MWords] package), a subset of the 1000 most
+common words on the Internet (again, according to Moby Words II), and
+frequently class 16 from Brian Kelk's "UK English Wordlist
+with Frequency Classification".
+
+The MWords package was explicitly placed in the public domain:
+
+ The Moby lexicon project is complete and has
+ been place into the public domain. Use, sell,
+ rework, excerpt and use in any way on any platform.
+
+ Placing this material on internal or public servers is
+ also encouraged. The compiler is not aware of any
+ export restrictions so freely distribute world-wide.
+
+ You can verify the public domain status by contacting
+
+ Grady Ward
+ 3449 Martha Ct.
+ Arcata, CA 95521-4884
+
+ grady@netcom.com
+ grady@northcoast.com
+
+The "UK English Wordlist With Frequency Classification" is also in the
+Public Domain:
+
+ Date: Sat, 08 Jul 2000 20:27:21 +0100
+ From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>
+
+ > I was wondering what the copyright status of your "UK English
+ > Wordlist With Frequency Classification" word list as it seems to
+ > be lacking any copyright notice.
+
+ There were many many sources in total, but any text marked
+ "copyright" was avoided. Locally-written documentation was one
+ source. An earlier version of the list resided in a filespace called
+ PUBLIC on the University mainframe, because it was considered public
+ domain.
+
+ Date: Tue, 11 Jul 2000 19:31:34 +0100
+
+ > So are you saying your word list is also in the public domain?
+
+ That is the intention.
+
+The 20 level includes frequency classes 7-15 from Brian's word list.
+
+The 35 level includes frequency classes 2-6 and words appearing in at
+least 11 of 12 dictionaries as indicated in the 12Dicts package. All
+words from the 12Dicts package have had likely inflections added via
+my inflection database.
+
+The 12Dicts package and Supplement is in the Public Domain.
+
+The WordNet database, which was used in the creation of the
+Inflections database, is under the following copyright:
+
+ 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 1.6 Copyright 1997 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.
+
+The 40 level includes words from Alan's 3esl list found in version 4.0
+of his 12dicts package. Like his other stuff the 3esl list is also in the
+public domain.
+
+The 50 level includes Brian's frequency class 1, words appearing
+in at least 5 of 12 of the dictionaries as indicated in the 12Dicts
+package, and uppercase words in at least 4 of the previous 12
+dictionaries. A decent number of proper names is also included: The
+top 1000 male, female, and Last names from the 1990 Census report; a
+list of names sent to me by Alan Beale; and a few names that I added
+myself. Finally a small list of abbreviations not commonly found in
+other word lists is included.
+
+The name files form the Census report is a government document which I
+don't think can be copyrighted.
+
+The file special-jargon.50 uses common.lst and word.lst from the
+"Unofficial Jargon File Word Lists" which is derived from "The Jargon
+File". All of which is in the Public Domain. This file also contain
+a few extra UNIX terms which are found in the file "unix-terms" in the
+special/ directory.
+
+The 55 level includes words from Alan's 2of4brif list found in version
+4.0 of his 12dicts package. Like his other stuff the 2of4brif is also
+in the public domain.
+
+The 60 level includes all words appearing in at least 2 of the 12
+dictionaries as indicated by the 12Dicts package.
+
+The 70 level includes Brian's frequency class 0 and the 74,550 common
+dictionary words from the MWords package. The common dictionary words,
+like those from the 12Dicts package, have had all likely inflections
+added. The 70 level also included the 5desk list from version 4.0 of
+the 12Dics package which is in the public domain.
+
+The 80 level includes the ENABLE word list, all the lists in the
+ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics
+Dictionary" (UKACD), the list of signature words from the YAWL package,
+and the 10,196 places list from the MWords package.
+
+The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,
+is in the Public Domain:
+
+ The ENABLE master word list, WORD.LST, is herewith formally released
+ into the Public Domain. Anyone is free to use it or distribute it in
+ any manner they see fit. No fee or registration is required for its
+ use nor are "contributions" solicited (if you feel you absolutely
+ must contribute something for your own peace of mind, the authors of
+ the ENABLE list ask that you make a donation on their behalf to your
+ favorite charity). This word list is our gift to the Scrabble
+ community, as an alternate to "official" word lists. Game designers
+ may feel free to incorporate the WORD.LST into their games. Please
+ mention the source and credit us as originators of the list. Note
+ that if you, as a game designer, use the WORD.LST in your product,
+ you may still copyright and protect your product, but you may *not*
+ legally copyright or in any way restrict redistribution of the
+ WORD.LST portion of your product. This *may* under law restrict your
+ rights to restrict your users' rights, but that is only fair.
+
+UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the
+following copyright:
+
+ Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
+
+ The following restriction is placed on the use of this publication:
+ if The UK Advanced Cryptics Dictionary is used in a software package
+ or redistributed in any form, the copyright notice must be
+ prominently displayed and the text of this document must be included
+ verbatim.
+
+ There are no other restrictions: I would like to see the list
+ distributed as widely as possible.
+
+The 95 level includes the 354,984 single words, 256,772 compound
+words, 4,946 female names and the 3,897 male names, and 21,986 names
+from the MWords package, ABLE.LST from the ENABLE Supplement, and some
+additional words found in my part-of-speech database that were not
+found anywhere else.
+
+Accent information was taken from UKACD.
+
+The VarCon package was used to create the American, British, Canadian,
+and Australian word list. It is under the following copyright:
+
+ Copyright 2000-2016 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Kevin Atkinson makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Copyright 2016 by Benjamin Titze
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Benjamin Titze makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Since the original words lists come from the Ispell distribution:
+
+ Copyright 1993, Geoff Kuenning, Granada Hills, CA
+ 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.
+ (clause 4 removed with permission from Geoff Kuenning)
+ 5. The name of Geoff Kuenning may not be used to endorse or promote
+ products derived from this software without specific prior
+ written permission.
+
+ THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF KUENNING 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.
+
+Build Date: Mon Dec 7 20:19:31 EST 2020
+Wordlist Command: mk-list --accents=strip en_AU 60
diff --git a/dictionaries/en/README_en_CA.txt b/dictionaries/en/README_en_CA.txt
new file mode 100644
index 0000000..e177731
--- /dev/null
+++ b/dictionaries/en/README_en_CA.txt
@@ -0,0 +1,347 @@
+en_CA Hunspell Dictionary
+Version 2020.12.07
+Mon Dec 7 20:14:35 2020 -0500 [5ef55f9]
+http://wordlist.sourceforge.net
+
+README file for English Hunspell dictionaries derived from SCOWL.
+
+These dictionaries are created using the speller/make-hunspell-dict
+script in SCOWL.
+
+The following dictionaries are available:
+
+ en_US (American)
+ en_CA (Canadian)
+ en_GB-ise (British with "ise" spelling)
+ en_GB-ize (British with "ize" spelling)
+ en_AU (Australian)
+
+ en_US-large
+ en_CA-large
+ en_GB-large (with both "ise" and "ize" spelling)
+ en_AU-large
+
+The normal (non-large) dictionaries correspond to SCOWL size 60 and,
+to encourage consistent spelling, generally only include one spelling
+variant for a word. The large dictionaries correspond to SCOWL size
+70 and may include multiple spelling for a word when both variants are
+considered almost equal. The larger dictionaries however (1) have not
+been as carefully checked for errors as the normal dictionaries and
+thus may contain misspelled or invalid words; and (2) contain
+uncommon, yet valid, words that might cause problems as they are
+likely to be misspellings of more common words (for example, "ort" and
+"calender").
+
+To get an idea of the difference in size, here are 25 random words
+only found in the large dictionary for American English:
+
+ Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
+ crassitudes crural dogwatches errorless fetial flaxseeds godroon
+ incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
+ stemwinder stenoses syce thalassic zees
+
+The en_US, en_CA and en_AU are the official dictionaries for Hunspell.
+The en_GB and large dictionaries are made available on an experimental
+basis. If you find them useful please send me a quick email at
+kevina@gnu.org.
+
+If none of these dictionaries suite you (for example, maybe you want
+the normal dictionary that also includes common variants) additional
+dictionaries can be generated at http://app.aspell.net/create or by
+modifying speller/make-hunspell-dict in SCOWL. Please do let me know
+if you end up publishing a customized dictionary.
+
+If a word is not found in the dictionary or a word is there you think
+shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
+to help determine why that is.
+
+General comments on these list can be sent directly to me at
+kevina@gnu.org or to the wordlist-devel mailing lists
+(https://lists.sourceforge.net/lists/listinfo/wordlist-devel). If you
+have specific issues with any of these dictionaries please file a bug
+report at https://github.com/kevina/wordlist/issues.
+
+IMPORTANT CHANGES INTRODUCED In 2016.11.20:
+
+New Australian dictionaries thanks to the work of Benjamin Titze
+(btitze@protonmail.ch).
+
+IMPORTANT CHANGES INTRODUCED IN 2016.04.24:
+
+The dictionaries are now in UTF-8 format instead of ISO-8859-1. This
+was required to handle smart quotes correctly.
+
+IMPORTANT CHANGES INTRODUCED IN 2016.01.19:
+
+"SET UTF8" was changes to "SET UTF-8" in the affix file as some
+versions of Hunspell do not recognize "UTF8".
+
+ADDITIONAL NOTES:
+
+The NOSUGGEST flag was added to certain taboo words. While I made an
+honest attempt to flag the strongest taboo words with the NOSUGGEST
+flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
+The list was originally derived from Németh László, however I removed
+some words which, while being considered taboo by some dictionaries,
+are not really considered swear words in today's society.
+
+COPYRIGHT, SOURCES, and CREDITS:
+
+The English dictionaries come directly from SCOWL
+and is thus under the same copyright of SCOWL. The affix file is
+a heavily modified version of the original english.aff file which was
+released as part of Geoff Kuenning's Ispell and as such is covered by
+his BSD license. Part of SCOWL is also based on Ispell thus the
+Ispell copyright is included with the SCOWL copyright.
+
+The collective work is Copyright 2000-2018 by Kevin Atkinson as well
+as any of the copyrights mentioned below:
+
+ Copyright 2000-2018 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell these word
+ lists, the associated scripts, the output created from the scripts,
+ and its documentation for any purpose is hereby granted without fee,
+ provided that the above copyright notice appears in all copies and
+ that both that copyright notice and this permission notice appear in
+ supporting documentation. Kevin Atkinson makes no representations
+ about the suitability of this array for any purpose. It is provided
+ "as is" without express or implied warranty.
+
+Alan Beale <biljir@pobox.com> also deserves special credit as he has,
+in addition to providing the 12Dicts package and being a major
+contributor to the ENABLE word list, given me an incredible amount of
+feedback and created a number of special lists (those found in the
+Supplement) in order to help improve the overall quality of SCOWL.
+
+The 10 level includes the 1000 most common English words (according to
+the Moby (TM) Words II [MWords] package), a subset of the 1000 most
+common words on the Internet (again, according to Moby Words II), and
+frequently class 16 from Brian Kelk's "UK English Wordlist
+with Frequency Classification".
+
+The MWords package was explicitly placed in the public domain:
+
+ The Moby lexicon project is complete and has
+ been place into the public domain. Use, sell,
+ rework, excerpt and use in any way on any platform.
+
+ Placing this material on internal or public servers is
+ also encouraged. The compiler is not aware of any
+ export restrictions so freely distribute world-wide.
+
+ You can verify the public domain status by contacting
+
+ Grady Ward
+ 3449 Martha Ct.
+ Arcata, CA 95521-4884
+
+ grady@netcom.com
+ grady@northcoast.com
+
+The "UK English Wordlist With Frequency Classification" is also in the
+Public Domain:
+
+ Date: Sat, 08 Jul 2000 20:27:21 +0100
+ From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>
+
+ > I was wondering what the copyright status of your "UK English
+ > Wordlist With Frequency Classification" word list as it seems to
+ > be lacking any copyright notice.
+
+ There were many many sources in total, but any text marked
+ "copyright" was avoided. Locally-written documentation was one
+ source. An earlier version of the list resided in a filespace called
+ PUBLIC on the University mainframe, because it was considered public
+ domain.
+
+ Date: Tue, 11 Jul 2000 19:31:34 +0100
+
+ > So are you saying your word list is also in the public domain?
+
+ That is the intention.
+
+The 20 level includes frequency classes 7-15 from Brian's word list.
+
+The 35 level includes frequency classes 2-6 and words appearing in at
+least 11 of 12 dictionaries as indicated in the 12Dicts package. All
+words from the 12Dicts package have had likely inflections added via
+my inflection database.
+
+The 12Dicts package and Supplement is in the Public Domain.
+
+The WordNet database, which was used in the creation of the
+Inflections database, is under the following copyright:
+
+ 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 1.6 Copyright 1997 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.
+
+The 40 level includes words from Alan's 3esl list found in version 4.0
+of his 12dicts package. Like his other stuff the 3esl list is also in the
+public domain.
+
+The 50 level includes Brian's frequency class 1, words appearing
+in at least 5 of 12 of the dictionaries as indicated in the 12Dicts
+package, and uppercase words in at least 4 of the previous 12
+dictionaries. A decent number of proper names is also included: The
+top 1000 male, female, and Last names from the 1990 Census report; a
+list of names sent to me by Alan Beale; and a few names that I added
+myself. Finally a small list of abbreviations not commonly found in
+other word lists is included.
+
+The name files form the Census report is a government document which I
+don't think can be copyrighted.
+
+The file special-jargon.50 uses common.lst and word.lst from the
+"Unofficial Jargon File Word Lists" which is derived from "The Jargon
+File". All of which is in the Public Domain. This file also contain
+a few extra UNIX terms which are found in the file "unix-terms" in the
+special/ directory.
+
+The 55 level includes words from Alan's 2of4brif list found in version
+4.0 of his 12dicts package. Like his other stuff the 2of4brif is also
+in the public domain.
+
+The 60 level includes all words appearing in at least 2 of the 12
+dictionaries as indicated by the 12Dicts package.
+
+The 70 level includes Brian's frequency class 0 and the 74,550 common
+dictionary words from the MWords package. The common dictionary words,
+like those from the 12Dicts package, have had all likely inflections
+added. The 70 level also included the 5desk list from version 4.0 of
+the 12Dics package which is in the public domain.
+
+The 80 level includes the ENABLE word list, all the lists in the
+ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics
+Dictionary" (UKACD), the list of signature words from the YAWL package,
+and the 10,196 places list from the MWords package.
+
+The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,
+is in the Public Domain:
+
+ The ENABLE master word list, WORD.LST, is herewith formally released
+ into the Public Domain. Anyone is free to use it or distribute it in
+ any manner they see fit. No fee or registration is required for its
+ use nor are "contributions" solicited (if you feel you absolutely
+ must contribute something for your own peace of mind, the authors of
+ the ENABLE list ask that you make a donation on their behalf to your
+ favorite charity). This word list is our gift to the Scrabble
+ community, as an alternate to "official" word lists. Game designers
+ may feel free to incorporate the WORD.LST into their games. Please
+ mention the source and credit us as originators of the list. Note
+ that if you, as a game designer, use the WORD.LST in your product,
+ you may still copyright and protect your product, but you may *not*
+ legally copyright or in any way restrict redistribution of the
+ WORD.LST portion of your product. This *may* under law restrict your
+ rights to restrict your users' rights, but that is only fair.
+
+UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the
+following copyright:
+
+ Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
+
+ The following restriction is placed on the use of this publication:
+ if The UK Advanced Cryptics Dictionary is used in a software package
+ or redistributed in any form, the copyright notice must be
+ prominently displayed and the text of this document must be included
+ verbatim.
+
+ There are no other restrictions: I would like to see the list
+ distributed as widely as possible.
+
+The 95 level includes the 354,984 single words, 256,772 compound
+words, 4,946 female names and the 3,897 male names, and 21,986 names
+from the MWords package, ABLE.LST from the ENABLE Supplement, and some
+additional words found in my part-of-speech database that were not
+found anywhere else.
+
+Accent information was taken from UKACD.
+
+The VarCon package was used to create the American, British, Canadian,
+and Australian word list. It is under the following copyright:
+
+ Copyright 2000-2016 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Kevin Atkinson makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Copyright 2016 by Benjamin Titze
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Benjamin Titze makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Since the original words lists come from the Ispell distribution:
+
+ Copyright 1993, Geoff Kuenning, Granada Hills, CA
+ 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.
+ (clause 4 removed with permission from Geoff Kuenning)
+ 5. The name of Geoff Kuenning may not be used to endorse or promote
+ products derived from this software without specific prior
+ written permission.
+
+ THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF KUENNING 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.
+
+Build Date: Mon Dec 7 20:19:28 EST 2020
+Wordlist Command: mk-list --accents=strip en_CA 60
diff --git a/dictionaries/en/README_en_GB.txt b/dictionaries/en/README_en_GB.txt
new file mode 100644
index 0000000..821acd0
--- /dev/null
+++ b/dictionaries/en/README_en_GB.txt
@@ -0,0 +1,242 @@
+This dictionary was initially based on a subset of the
+original English wordlist created by Kevin Atkinson for
+Pspell and Aspell, and thus is covered by his original
+LGPL licence.
+
+It has been extensively updated by David Bartlett, Brian Kelk,
+Andrew Brown and Marco A.G.Pinto:
+ — Numerous Americanisms/spellings have been removed;
+ — Missing words have been added;
+ — Many errors have been corrected;
+ — Compound hyphenated words have been added where appropriate;
+ — Thousands of proper/places names have been added;
+ — Thousands of possessives have been added;
+ — Thousands of plurals have been added;
+ — Thousands of duplicates have been removed.
+
+Valuable inputs to this process were received from many other
+people — far too numerous to name. Serious thanks to all for
+your greatly appreciated help.
+
+This wordlist is intended to be a good representation of
+current modern British English, and thus it should be a good
+basis for Commonwealth English in most countries of the world
+outside North America.
+
+The affix file has been created completely from scratch
+by David Bartlett and Andrew Brown, based on the published
+rules for MySpell and is also provided under the LGPL.
+
+In creating the affix rules, an attempt has been made to
+reproduce the most general rules for English word
+formation, rather than merely use it to compress the
+size of the dictionary. It is hoped that this will
+facilitate future localisation to other variants of English.
+
+-------
+
+This is a locally hosted copy of the English dictionaries with fixed
+dash handling and new ligature and phonetic suggestion support extension:
+https://extensions.openoffice.org/en/node/3785
+
+Original version of the en_GB dictionary:
+https://bz.apache.org/ooo/show_bug.cgi?id=72145
+
+OpenOffice.org patch and morphological extension.
+
+The morphological extension based on Wordlist POS and AGID data
+created by Kevin Atkinson and released on http://wordlist.sourceforge.net.
+
+Other fixes:
+
+OOo Issue 48060 — add numbers with affixes by COMPOUNDRULE (1st, 111th, 1990s etc.)
+OOo Issue 29112, 55498 — add NOSUGGEST flags to taboo words
+New REP items (better suggestions for accented words and a few mistakes)
+OOo Issue 63541 — remove *dessicated
+
+2008-12-18:
+ — NOSUGGEST, NUMBER/COMPOUNDRULE patches (nemeth AT OOo)
+
+2010-03-09 (nemeth AT OOo):
+ — UTF-8 encoded dictionary:
+ — Fix em-dash problem of OOo 3.2 by BREAK
+ — Suggesting words with typographical apostrophes
+ — Recognising words with Unicode f ligatures
+ — Add phonetic suggestion (© 2000 Björn Jacke)
+
+2013-08-25:
+ — GB forked by Marco A.G.Pinto
+
+2016-06-10:
+ — NOSUGGEST added to this clean version of the GB .AFF (Marco A.G.Pinto)
+
+2016-06-21:
+ — COMPOUNDING added to this clean version of the GB .AFF (Áron Budea)
+
+2016-08-01:
+ — GB changelog is no longer included in the README file
+
+2016-09-11:
+ — .AFF + .DIC now use UNIX line endings
+
+2017-10-08:
+ — Mozilla: used <em:maxVersion>*</em:maxVersion> to work with all future
+ versions, except Thunderbird
+
+2017-12-16:
+ — Added to the .AFF:
+ ICONV 1
+ ICONV ’ '
+ Thanks to Jeroen Ooms
+
+2018-05-01:
+ — Andrew Ziem suggested a list of 328 names of famous people on Kevin's GitHub:
+ “These 328 name tokens were derived from the top 100 lists in Google Trends via
+ this repository (https://github.com/az0/google-trend-names). The geography was
+ set to US, and it spanned dates from 2004 to 2018.”
+
+2018-08-01:
+ — Slightly higher quality icon
+ — Added tons of drug names supplied by the user Andrew Ziem on Kevin's GitHub
+ — Fixed/improved flag “5”: “women's” was missing
+
+2018-06-01+:
+ — Added places from New Zealand/UK (England, Scotland, Wales & Northern Ireland):
+ On V2.61–2.64 I included tons of place names.
+ My scientist friend, Peter McGavin, told me that in NZ they use British, so I decided
+ to do something about it. I did the same for the UK. I searched on Wikipedia for “towns”,
+ “counties”, “villages”, “boroughs”, “suburbs”, etc. and based me on:
+ — https://en.wikipedia.org/wiki/List_of_towns_in_England;
+ — https://en.wikipedia.org/wiki/List_of_towns_in_New_Zealand;
+ — https://en.wikipedia.org/wiki/List_of_civil_parishes_in_England;
+ — https://en.wikipedia.org/wiki/List_of_civil_parishes_in_Scotland;
+ — https://en.wikipedia.org/wiki/List_of_places_in_Scotland;
+ — https://en.wikipedia.org/wiki/List_of_communities_in_Wales;
+ — https://en.wikipedia.org/wiki/Local_government_in_Wales;
+ — https://en.wikipedia.org/wiki/List_of_towns_and_villages_in_Northern_Ireland;
+ — https://en.wikipedia.org/wiki/Counties_of_Northern_Ireland;
+ — https://en.wikipedia.org/wiki/Category:Suburbs_in_New_Zealand;
+ — https://en.wikipedia.org/wiki/List_of_Church_of_Scotland_parishes.
+ Furthermore, added places sent to me by Peter C.:
+ © OpenStreetMap contributors: www.openstreetmap.org/copyright.
+ © The Clergy of the Church of England Database Project, 2005.
+
+2018-10-01:
+ — Added the cities from Australia by population:
+ — https://en.wikipedia.org/wiki/List_of_cities_in_Australia_by_population
+ — Added tons of cities from the US with a 10 000+ population.
+ This list was supplied by Michael Holroyd on Kevin Atkinson's GitHub.
+ — Added tons of possessives to nouns, thanks to Jörg Knobloch.
+2018-12-01:
+ — Added the cities from Canada:
+ — https://en.wikipedia.org/wiki/List_of_cities_in_Canada
+
+2019-02-01:
+ — Improved flag “5” thanks to the GitHub user Ding-adong:
+ Some “swomen's” and “women 's” entries were missing.
+ — Fixed flag “3”: -ists, -ists, -ist's → -ist, -ists, -ist's.
+ — Improved flag “N”.
+
+2019-03-01:
+ — Added the LGPL_V3 License .txt into the Extension.
+ — Ding-adong added a flag “=” for suffixes: -lessness, -lessnesses, -lessness's.
+ — Ding-adong changed the prefix flag “O” to “^” since “O” was both prefix and suffix.
+ — Small fixes and enhancements on flags “z” and “O” by Ding-adong.
+
+2019-04-01:
+ — Improved flag “P” thanks to Ding-adong, giving also -nesses which
+ increased the wordlist in ~1800 valid words.
+
+2019-07-01+:
+ — Major clean-up of the .dic by removing thousands of duplicates, merging flags, adding
+ possessives and plurals.
+ — Improved flags: “i”, “n”, “N”, “O”, “W”, “Z”, “2” and “3”:
+ — Flag “2” increased the wordlist in ~400 valid words;
+ — Flag “i” increased the wordlist in ~200 valid words;
+ — Flag “n” increased the wordlist in ~1000 valid words.
+
+2019-11-01+:
+ — Added thousands of possessives and plurals.
+ — Improved flags: “1”, “3”, “N”, “O”, “W”.
+
+2020-11-01:
+ — Added the State and union territory capitals in India:
+ — https://en.wikipedia.org/wiki/List_of_state_and_union_territory_capitals_in_India
+
+2023-01-01:
+ — Sorted alphabetically the tags of the .aff, so the order of words in the wordlist changed.
+
+2023-02-02:
+ — Added flag “~” for “ish” ending words.
+ — Improved flag “J” (“ings” → “ing's” and “ings”), increasing the wordlist in ~490 valid words.
+
+2023-02-14:
+ — Improved flag “W”.
+
+2023-03-01:
+ — Removed most of the possessives of plurals ending with “s”.
+
+2023-05-07:
+ — Improved flag “O”.
+
+2023-05-17:
+ — Improved flag “W”.
+
+2023-05-23:
+ — Improved flag “J”.
+
+2023-09-03:
+ — Improved flag “N”, increasing the wordlist in 596 valid words.
+
+2023-10-03:
+ — Improved flag “q”, increasing the wordlist in 126 valid words.
+
+2023-10-07:
+ — Improved flag “-”, increasing the wordlist in 128 valid words.
+
+2023-10-26:
+ — Improved flag “J”, increasing the wordlist in 70 valid words.
+-------
+
+MARCO A.G.PINTO:
+Since the dictionary wasn't updated for many years, I forked it in 2013 to add new words and fixes.
+
+I grabbed Mozilla's version, since it wasn't obfuscated. Alexandro Colorado and I
+tried to unmunch the OpenOffice version, but all we got was rubbish.
+
+The dictionary icon in the Extension Manager was designed by Pedro Ribeiro Marques.
+
+The sources used to verify the spelling of the words I included in the dictionary:
+ 1) Oxford Dictionaries;
+ 2) Collins Dictionary;
+ 3) Macmillan Dictionary;
+ 4) Cambridge Dictionary;
+ 5) Merriam-Webster Dictionary (used with caution ⚠);
+ 6) Wiktionary (used with caution ⚠);
+ 7) Wikipedia (used with caution ⚠);
+ 8) Physical dictionaries.
+
+Main difficulties developing this dictionary:
+ 1) Proper names;
+ 2) Possessive forms;
+ 3) Plurals.
+
+Please let Marco A.G.Pinto know of any errors that you find:
+E-mail:
+marcoagpinto@sapo.pt
+
+Website:
+https://proofingtoolgui.org
+
+FAQ:
+https://proofingtoolgui.org/faq.html
+
+FAQ (“movie”, “automobile”, “airplane”, “hardcover” and “bookstore”):
+https://proofingtoolgui.org/faq.html#7
+Notice: Due to complaints, “movie” was added on V2.57 since it is a widely used word.
+
+Changelog:
+https://proofingtoolgui.org/en_GB_CHANGES.txt
+
+Nightly changes/latest releases (GitHub):
+https://github.com/marcoagpinto/aoo-mozilla-en-dict
diff --git a/dictionaries/en/README_en_GB_thes.txt b/dictionaries/en/README_en_GB_thes.txt
new file mode 100644
index 0000000..aff398a
--- /dev/null
+++ b/dictionaries/en/README_en_GB_thes.txt
@@ -0,0 +1 @@
+en_GB is using the WordNet thesaurus from the en_US directory.
diff --git a/dictionaries/en/README_en_US.txt b/dictionaries/en/README_en_US.txt
new file mode 100644
index 0000000..4585c30
--- /dev/null
+++ b/dictionaries/en/README_en_US.txt
@@ -0,0 +1,347 @@
+en_US Hunspell Dictionary
+Version 2020.12.07
+Mon Dec 7 20:14:35 2020 -0500 [5ef55f9]
+http://wordlist.sourceforge.net
+
+README file for English Hunspell dictionaries derived from SCOWL.
+
+These dictionaries are created using the speller/make-hunspell-dict
+script in SCOWL.
+
+The following dictionaries are available:
+
+ en_US (American)
+ en_CA (Canadian)
+ en_GB-ise (British with "ise" spelling)
+ en_GB-ize (British with "ize" spelling)
+ en_AU (Australian)
+
+ en_US-large
+ en_CA-large
+ en_GB-large (with both "ise" and "ize" spelling)
+ en_AU-large
+
+The normal (non-large) dictionaries correspond to SCOWL size 60 and,
+to encourage consistent spelling, generally only include one spelling
+variant for a word. The large dictionaries correspond to SCOWL size
+70 and may include multiple spelling for a word when both variants are
+considered almost equal. The larger dictionaries however (1) have not
+been as carefully checked for errors as the normal dictionaries and
+thus may contain misspelled or invalid words; and (2) contain
+uncommon, yet valid, words that might cause problems as they are
+likely to be misspellings of more common words (for example, "ort" and
+"calender").
+
+To get an idea of the difference in size, here are 25 random words
+only found in the large dictionary for American English:
+
+ Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
+ crassitudes crural dogwatches errorless fetial flaxseeds godroon
+ incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
+ stemwinder stenoses syce thalassic zees
+
+The en_US, en_CA and en_AU are the official dictionaries for Hunspell.
+The en_GB and large dictionaries are made available on an experimental
+basis. If you find them useful please send me a quick email at
+kevina@gnu.org.
+
+If none of these dictionaries suite you (for example, maybe you want
+the normal dictionary that also includes common variants) additional
+dictionaries can be generated at http://app.aspell.net/create or by
+modifying speller/make-hunspell-dict in SCOWL. Please do let me know
+if you end up publishing a customized dictionary.
+
+If a word is not found in the dictionary or a word is there you think
+shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
+to help determine why that is.
+
+General comments on these list can be sent directly to me at
+kevina@gnu.org or to the wordlist-devel mailing lists
+(https://lists.sourceforge.net/lists/listinfo/wordlist-devel). If you
+have specific issues with any of these dictionaries please file a bug
+report at https://github.com/kevina/wordlist/issues.
+
+IMPORTANT CHANGES INTRODUCED In 2016.11.20:
+
+New Australian dictionaries thanks to the work of Benjamin Titze
+(btitze@protonmail.ch).
+
+IMPORTANT CHANGES INTRODUCED IN 2016.04.24:
+
+The dictionaries are now in UTF-8 format instead of ISO-8859-1. This
+was required to handle smart quotes correctly.
+
+IMPORTANT CHANGES INTRODUCED IN 2016.01.19:
+
+"SET UTF8" was changes to "SET UTF-8" in the affix file as some
+versions of Hunspell do not recognize "UTF8".
+
+ADDITIONAL NOTES:
+
+The NOSUGGEST flag was added to certain taboo words. While I made an
+honest attempt to flag the strongest taboo words with the NOSUGGEST
+flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
+The list was originally derived from Németh László, however I removed
+some words which, while being considered taboo by some dictionaries,
+are not really considered swear words in today's society.
+
+COPYRIGHT, SOURCES, and CREDITS:
+
+The English dictionaries come directly from SCOWL
+and is thus under the same copyright of SCOWL. The affix file is
+a heavily modified version of the original english.aff file which was
+released as part of Geoff Kuenning's Ispell and as such is covered by
+his BSD license. Part of SCOWL is also based on Ispell thus the
+Ispell copyright is included with the SCOWL copyright.
+
+The collective work is Copyright 2000-2018 by Kevin Atkinson as well
+as any of the copyrights mentioned below:
+
+ Copyright 2000-2018 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell these word
+ lists, the associated scripts, the output created from the scripts,
+ and its documentation for any purpose is hereby granted without fee,
+ provided that the above copyright notice appears in all copies and
+ that both that copyright notice and this permission notice appear in
+ supporting documentation. Kevin Atkinson makes no representations
+ about the suitability of this array for any purpose. It is provided
+ "as is" without express or implied warranty.
+
+Alan Beale <biljir@pobox.com> also deserves special credit as he has,
+in addition to providing the 12Dicts package and being a major
+contributor to the ENABLE word list, given me an incredible amount of
+feedback and created a number of special lists (those found in the
+Supplement) in order to help improve the overall quality of SCOWL.
+
+The 10 level includes the 1000 most common English words (according to
+the Moby (TM) Words II [MWords] package), a subset of the 1000 most
+common words on the Internet (again, according to Moby Words II), and
+frequently class 16 from Brian Kelk's "UK English Wordlist
+with Frequency Classification".
+
+The MWords package was explicitly placed in the public domain:
+
+ The Moby lexicon project is complete and has
+ been place into the public domain. Use, sell,
+ rework, excerpt and use in any way on any platform.
+
+ Placing this material on internal or public servers is
+ also encouraged. The compiler is not aware of any
+ export restrictions so freely distribute world-wide.
+
+ You can verify the public domain status by contacting
+
+ Grady Ward
+ 3449 Martha Ct.
+ Arcata, CA 95521-4884
+
+ grady@netcom.com
+ grady@northcoast.com
+
+The "UK English Wordlist With Frequency Classification" is also in the
+Public Domain:
+
+ Date: Sat, 08 Jul 2000 20:27:21 +0100
+ From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>
+
+ > I was wondering what the copyright status of your "UK English
+ > Wordlist With Frequency Classification" word list as it seems to
+ > be lacking any copyright notice.
+
+ There were many many sources in total, but any text marked
+ "copyright" was avoided. Locally-written documentation was one
+ source. An earlier version of the list resided in a filespace called
+ PUBLIC on the University mainframe, because it was considered public
+ domain.
+
+ Date: Tue, 11 Jul 2000 19:31:34 +0100
+
+ > So are you saying your word list is also in the public domain?
+
+ That is the intention.
+
+The 20 level includes frequency classes 7-15 from Brian's word list.
+
+The 35 level includes frequency classes 2-6 and words appearing in at
+least 11 of 12 dictionaries as indicated in the 12Dicts package. All
+words from the 12Dicts package have had likely inflections added via
+my inflection database.
+
+The 12Dicts package and Supplement is in the Public Domain.
+
+The WordNet database, which was used in the creation of the
+Inflections database, is under the following copyright:
+
+ 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 1.6 Copyright 1997 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.
+
+The 40 level includes words from Alan's 3esl list found in version 4.0
+of his 12dicts package. Like his other stuff the 3esl list is also in the
+public domain.
+
+The 50 level includes Brian's frequency class 1, words appearing
+in at least 5 of 12 of the dictionaries as indicated in the 12Dicts
+package, and uppercase words in at least 4 of the previous 12
+dictionaries. A decent number of proper names is also included: The
+top 1000 male, female, and Last names from the 1990 Census report; a
+list of names sent to me by Alan Beale; and a few names that I added
+myself. Finally a small list of abbreviations not commonly found in
+other word lists is included.
+
+The name files form the Census report is a government document which I
+don't think can be copyrighted.
+
+The file special-jargon.50 uses common.lst and word.lst from the
+"Unofficial Jargon File Word Lists" which is derived from "The Jargon
+File". All of which is in the Public Domain. This file also contain
+a few extra UNIX terms which are found in the file "unix-terms" in the
+special/ directory.
+
+The 55 level includes words from Alan's 2of4brif list found in version
+4.0 of his 12dicts package. Like his other stuff the 2of4brif is also
+in the public domain.
+
+The 60 level includes all words appearing in at least 2 of the 12
+dictionaries as indicated by the 12Dicts package.
+
+The 70 level includes Brian's frequency class 0 and the 74,550 common
+dictionary words from the MWords package. The common dictionary words,
+like those from the 12Dicts package, have had all likely inflections
+added. The 70 level also included the 5desk list from version 4.0 of
+the 12Dics package which is in the public domain.
+
+The 80 level includes the ENABLE word list, all the lists in the
+ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics
+Dictionary" (UKACD), the list of signature words from the YAWL package,
+and the 10,196 places list from the MWords package.
+
+The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,
+is in the Public Domain:
+
+ The ENABLE master word list, WORD.LST, is herewith formally released
+ into the Public Domain. Anyone is free to use it or distribute it in
+ any manner they see fit. No fee or registration is required for its
+ use nor are "contributions" solicited (if you feel you absolutely
+ must contribute something for your own peace of mind, the authors of
+ the ENABLE list ask that you make a donation on their behalf to your
+ favorite charity). This word list is our gift to the Scrabble
+ community, as an alternate to "official" word lists. Game designers
+ may feel free to incorporate the WORD.LST into their games. Please
+ mention the source and credit us as originators of the list. Note
+ that if you, as a game designer, use the WORD.LST in your product,
+ you may still copyright and protect your product, but you may *not*
+ legally copyright or in any way restrict redistribution of the
+ WORD.LST portion of your product. This *may* under law restrict your
+ rights to restrict your users' rights, but that is only fair.
+
+UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the
+following copyright:
+
+ Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
+
+ The following restriction is placed on the use of this publication:
+ if The UK Advanced Cryptics Dictionary is used in a software package
+ or redistributed in any form, the copyright notice must be
+ prominently displayed and the text of this document must be included
+ verbatim.
+
+ There are no other restrictions: I would like to see the list
+ distributed as widely as possible.
+
+The 95 level includes the 354,984 single words, 256,772 compound
+words, 4,946 female names and the 3,897 male names, and 21,986 names
+from the MWords package, ABLE.LST from the ENABLE Supplement, and some
+additional words found in my part-of-speech database that were not
+found anywhere else.
+
+Accent information was taken from UKACD.
+
+The VarCon package was used to create the American, British, Canadian,
+and Australian word list. It is under the following copyright:
+
+ Copyright 2000-2016 by Kevin Atkinson
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Kevin Atkinson makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Copyright 2016 by Benjamin Titze
+
+ Permission to use, copy, modify, distribute and sell this array, the
+ associated software, and its documentation for any purpose is hereby
+ granted without fee, provided that the above copyright notice appears
+ in all copies and that both that copyright notice and this permission
+ notice appear in supporting documentation. Benjamin Titze makes no
+ representations about the suitability of this array for any
+ purpose. It is provided "as is" without express or implied warranty.
+
+ Since the original words lists come from the Ispell distribution:
+
+ Copyright 1993, Geoff Kuenning, Granada Hills, CA
+ 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.
+ (clause 4 removed with permission from Geoff Kuenning)
+ 5. The name of Geoff Kuenning may not be used to endorse or promote
+ products derived from this software without specific prior
+ written permission.
+
+ THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING 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 GEOFF KUENNING 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.
+
+Build Date: Mon Dec 7 20:19:27 EST 2020
+Wordlist Command: mk-list --accents=strip en_US 60
diff --git a/dictionaries/en/README_en_ZA.txt b/dictionaries/en/README_en_ZA.txt
new file mode 100644
index 0000000..436b56e
--- /dev/null
+++ b/dictionaries/en/README_en_ZA.txt
@@ -0,0 +1,709 @@
+MySpell English (South African) Spellchecker
+--------------------------------------------
+
+1. Welcome
+2. Copyright
+3. Installation and Setup
+4. Contributing
+5. Copying
+
+Enjoy!
+
+1. Welcome
+==========
+
+This spellchecker is Free Software:
+
+ Free to use - Free to share - Free to change.
+
+See section 4. Contributing to see how you can help make it even better.
+
+
+Why Free Software?
+------------------
+
+The Translate.org.za project's aim is to make language resources and software
+available to the speakers of that language and licensed in such a way that the
+resources remain Free and thus available to all the language's speakers.
+After all it is you, the speakers of South African English, who has actually developed
+it into the language that it is today.
+
+What is Free Software?
+----------------------
+
+For a good explanation of Free Software visit:
+ http://www.gnu.org/philosophy/philosophy.html AND
+ http://www.gnu.org/philosophy/free-sw.html
+
+
+2. Copyright
+============
+
+British English Wordlist
+------------------------
+
+The South African English wordlist uses the same list developed for the
+British English spell checker. That word list itself is derived from
+the English word lists developed for Aspell. This list is released
+under the LGPL.
+
+More details of the British English dictionary project can be found here:
+http://en-gb.pyxidium.co.uk/dictionary
+
+From the README for the British English Myspell spell checker:
+
+ This dictionary was initially based on a subset of the
+ original English wordlist created by Kevin Atkinson for
+ Pspell and Aspell and thus is covered by his original
+ LGPL licence.
+
+ It has been extensively updated by David Bartlett, Brian Kelk
+ and Andrew Brown:
+ - numerous Americanism have been removed
+ - numerous American spellings have been corrected
+ - missing words have been added
+ - many errors have been corrected
+ - compound hyphenated words have been added where appropriate
+
+ Valuable inputs to this process were received from many other
+ people - far too numerous to name. Serious thanks to you all
+ for your greatly appreciated help.
+
+ This word list is intended to be a good representation of
+ current modern British English and thus it should be a good
+ basis for Commonwealth English in most countries of the world
+ outside North America.
+
+ The affix file has been created completely from scratch
+ by David Bartlett and Andrew Brown, based on the published
+ rules for MySpell and is also provided under the LGPL.
+
+ In creating the affix rules an attempt has been made to
+ reproduce the most general rules for English word
+ formation, rather than merely use it as a means to
+ compress the size of the dictionary. It is hoped that this
+ will facilitate future localisation to other variants of
+ English.
+
+ Please let David Bartlett <dwb@openoffice.org> know of any
+ errors that you find.
+
+ The current release is R 1.18, 11/04/05
+
+
+MySpell Affix File
+------------------
+
+Copyright David Bartlett and Andrew Brown
+Released under the LGPL
+
+South African English Wordlists
+-------------------------------
+
+See the respective header files of the source wordlists for their copyright.
+All those developed by the Zuza Software Foundation are released under the
+LGPL.
+
+3. Installation and Setup
+=========================
+
+Automated
+---------
+
+Newer versions of OpenOffice.org have a built in macro to step you through an
+automatic install process.
+
+ File -> Autopilot -> Install new dictionaries...
+
+If this is unavailable then download 'DicOOo.sxw' from:
+http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/dicooo/DicOOo.sxw
+
+Run the macro and follow the steps outlined. If you would like the dictionary
+to be available to all users then run the installation as the administrative or
+root user. It is best to restart OpenOffice.org after the installation.
+
+The macro operates in two modes:
+
+1) Online - the latest dictionaries are retrieved from the OpenOffice.org
+ website.
+
+2) Offline - an offline dictionary pack, which you have already downloaded, is
+ installed from the hard-drive. Offline dictionaries can be downloaded from:
+ http://lingucomponent.openoffice.org/dictpack.html
+ OR
+ http://sourceforge.net/project/showfiles.php?group_id=91920&package_id=103504
+
+For more detailed instructions see:
+ http://lingucomponent.openoffice.org/auto_instal.html
+
+
+Non-automated
+-------------
+
+For instructions on how to install the Afrikaans dictionary manually please visit
+the following URL:
+http://lingucomponent.openoffice.org/manual_instal.html
+
+
+Spellchecker Selection
+----------------------
+
+Once the spellchecker is installed you need to configure a few settings and
+perform some checks.
+
+1) Check that the Afrikaans Spellchecker is enabled.
+
+ Tools -> Options -> Language Settings -> Writing Aids
+
+In the section marked 'Available language modules' select 'Edit...'. Under
+the languages drop-down select Afrikaans and ensure that the 'OpenOffice.org
+MySpell SpellChecker' is enabled.
+
+2) Set your default document language to Afrikaans
+
+If most of your writing is in Afrikaans then this step will ensure that
+documents you compose from now on are treated as Afrikaans documents. If much
+of your writing is in English you might want to skip this step.
+
+ Tools -> Options -> Language Settings -> Languages
+
+In the section marked 'Default languages for documents' is a drop-down labelled
+'Western'. Afrikaans has a tick next to it to indicate that a spellchecker is
+installed. Set your default language to Afrikaans.
+
+3) Changing existing documents or paragraphs to Afrikaans
+
+Some old document might be written in Afrikaans but the document was stored
+indicating that the text was in English. You can indicate that this is
+Afrikaans text by:
+
+ a) Select the relevant text (Ctrl-A selects the whole document)
+ b) Format -> Character...
+ Change the 'Language' drop-down to Afrikaans.
+
+
+4. Contributing
+===============
+
+You can help to make this software better by:
+
+a) Contributing corrections and missing words
+b) Contributing your wordlists
+c) Reviewing the existing wordlists and user contributed lists.
+d) Joining the Afrikaans translation and dictionary discussion list
+ 'translate-discuss-af' at:
+ http://sourceforge.net/mail/?group_id=91920
+
+Email your contributions to Dwayne Bailey <dwayne@translate.org.za>.
+
+
+5. Copying
+==========
+
+This software is released under the LGPL which is included here for your
+information.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL. It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+ This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it. You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+ When we speak of free software, we are referring to freedom of use,
+not price. Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+ To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights. These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
+
+ We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+ To protect each distributor, we want to make it very clear that
+there is no warranty for the free library. Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+
+ Finally, software patents pose a constant threat to the existence of
+any free program. We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder. Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+ Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License. This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License. We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+ When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library. The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom. The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+ We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License. It also provides other free software developers Less
+of an advantage over competing non-free programs. These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries. However, the Lesser license provides advantages in certain
+special circumstances.
+
+ For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard. To achieve this, non-free programs must be
+allowed to use the library. A more frequent case is that a free
+library does the same job as widely used non-free libraries. In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+ In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software. For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+ Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) The modified work must itself be a software library.
+
+ b) You must cause the files modified to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ c) You must cause the whole of the work to be licensed at no
+ charge to all third parties under the terms of this License.
+
+ d) If a facility in the modified Library refers to a function or a
+ table of data to be supplied by an application program that uses
+ the facility, other than as an argument passed when the facility
+ is invoked, then you must make a good faith effort to ensure that,
+ in the event an application does not supply such function or
+ table, the facility still operates, and performs whatever part of
+ its purpose remains meaningful.
+
+ (For example, a function in a library to compute square roots has
+ a purpose that is entirely well-defined independent of the
+ application. Therefore, Subsection 2d requires that any
+ application-supplied function or table used by this function must
+ be optional: if the application does not supply it, the square
+ root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+ This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
+
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
+
+ a) Accompany the work with the complete corresponding
+ machine-readable source code for the Library including whatever
+ changes were used in the work (which must be distributed under
+ Sections 1 and 2 above); and, if the work is an executable linked
+ with the Library, with the complete machine-readable "work that
+ uses the Library", as object code and/or source code, so that the
+ user can modify the Library and then relink to produce a modified
+ executable containing the modified Library. (It is understood
+ that the user who changes the contents of definitions files in the
+ Library will not necessarily be able to recompile the application
+ to use the modified definitions.)
+
+ b) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (1) uses at run time a
+ copy of the library already present on the user's computer system,
+ rather than copying library functions into the executable, and (2)
+ will operate properly with a modified version of the library, if
+ the user installs one, as long as the modified version is
+ interface-compatible with the version that the work was made with.
+
+ c) Accompany the work with a written offer, valid for at
+ least three years, to give the same user the materials
+ specified in Subsection 6a, above, for a charge no more
+ than the cost of performing this distribution.
+
+ d) If distribution of the work is made by offering access to copy
+ from a designated place, offer equivalent access to copy the above
+ specified materials from the same place.
+
+ e) Verify that the user has already received a copy of these
+ materials or that you have already sent this user a copy.
+
+ For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it. However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+ It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+ a) Accompany the combined library with a copy of the same work
+ based on the Library, uncombined with any other library
+ facilities. This must be distributed under the terms of the
+ Sections above.
+
+ b) Give prominent notice with the combined library of the fact
+ that part of it is a work based on the Library, and explaining
+ where to find the accompanying uncombined form of the same work.
+
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+ NO WARRANTY
+
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
+
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
+
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the library's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the library, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
+
+ <signature of Ty Coon>, 1 April 1990
+ Ty Coon, President of Vice
+
+That's all there is to it!
+
+
diff --git a/dictionaries/en/README_hyph_en_GB.txt b/dictionaries/en/README_hyph_en_GB.txt
new file mode 100644
index 0000000..4afac7b
--- /dev/null
+++ b/dictionaries/en/README_hyph_en_GB.txt
@@ -0,0 +1,198 @@
+hyph_en_GB.dic - British English hyphenation patterns for OpenOffice.org
+
+version 2011-10-07
+
+- remove unnecessary parts for Hyphen 2.8.2
+
+version 2010-03-16
+
+Changes
+
+- forbid hyphenation at 1-character distances from dashes (eg. ad=d-on)
+ and at the dashes (fix for OpenOffice.org 3.2)
+- UTF-8 encoding and corrected hyphenation for words with Unicode f ligatures
+ (conversion scripts: see Hyphen 2.6)
+
+version 2009-01-23
+
+Changes
+
+- add missing \hyphenation list (how-ever, through-out etc.)
+- set correct LEFTHYPHENMIN = 2, RIGHTHYPHENMIN = 3
+- handle apostrophes (forbid *can='t, *abaser='s, *o'c=lock etc.)
+- set COMPOUNDLEFTHYPHENMIN, COMPOUNDRIGHTHYPHENMIN values
+
+License
+
+BSD-style. Unlimited copying, redistribution and modification of this file
+is permitted with this copyright and license information.
+
+British English hyphenation patterns, based on "ukhyphen.tex" Version 1.0a
+Created by Dominik Wujastyk and Graham Toal using Frank Liang's PATGEN 1.0,
+source: http://ctan.org
+
+See original ukhyphen.tex license in this file, too.
+
+Conversion and modifications by László Németh (nemeth at OOo).
+
+Conversion:
+
+./substrings.pl hyph_en_GB.dic.source /tmp/hyph_en_GB.dic.patterns >/dev/null
+cat hyph_en_GB.dic.header /tmp/hyph_en_GB.dic.patterns >hyph_en_GB.dic
+
+hyph_en_GB.dic.header:
+
+ISO8859-1
+LEFTHYPHENMIN 2
+RIGHTHYPHENMIN 3
+COMPOUNDLEFTHYPHENMIN 2
+COMPOUNDRIGHTHYPHENMIN 3
+1'.
+1's.
+1't.
+NEXTLEVEL
+
+OpenOffice.org ukhyphen patch (hyph_en_GB.dic.source):
+
+--- ukhyphen.tex 2008-12-17 15:37:04.000000000 +0100
++++ hyph_en_GB.dic.source 2008-12-18 10:07:02.000000000 +0100
+@@ -52,7 +52,6 @@
+ %
+ % These patterns require a value of about 14000 for TeX's pattern memory size.
+ %
+-\patterns{ % just type <return> if you're not using INITEX
+ .ab4i
+ .ab3ol
+ .ace4
+@@ -8580,13 +8579,64 @@
+ z3zie
+ zzo3
+ z5zot
+-}
+-\hyphenation{ % Do NOT make any alterations to this list! --- DW
+-uni-ver-sity
+-uni-ver-sit-ies
+-how-ever
+-ma-nu-script
+-ma-nu-scripts
+-re-ci-pro-city
+-through-out
+-some-thing}
++.uni5ver5sity.
++.uni5ver5sit5ies.
++.how5ever.
++.ma5nu5script.
++.ma5nu5scripts.
++.re5ci5pro5city.
++.through5out.
++.some5thing.
++4'4
++4a'
++4b'
++4c'
++4d'
++4e'
++4f'
++4g'
++4h'
++4i'
++4j'
++4k'
++4l'
++4m'
++4n'
++4o'
++4p'
++4q'
++4r'
++4s'
++4t'
++4u'
++4v'
++4w'
++4x'
++4y'
++4z'
++'a4
++'b4
++'c4
++'d4
++'e4
++'f4
++'g4
++'h4
++'i4
++'j4
++'k4
++'l4
++'m4
++'n4
++'o4
++'p4
++'q4
++'r4
++'s4
++'t4
++'u4
++'v4
++'w4
++'x4
++'y4
++'z4
+
+Original License
+
+% File: ukhyphen.tex
+% TeX hyphenation patterns for UK English
+
+% Unlimited copying and redistribution of this file
+% is permitted so long as the file is not modified
+% in any way.
+%
+% Modifications may be made for private purposes (though
+% this is discouraged, as it could result in documents
+% hyphenating differently on different systems) but if
+% such modifications are re-distributed, the modified
+% file must not be capable of being confused with the
+% original. In particular, this means
+%
+%(a) the filename (the portion before the extension, if any)
+% must not match any of :
+%
+% UKHYPH UK-HYPH
+% UKHYPHEN UK-HYPHEN
+% UKHYPHENS UK-HYPHENS
+% UKHYPHENATION UK-HYPHENATION
+% UKHYPHENISATION UK-HYPHENISATION
+% UKHYPHENIZATION UK-HYPHENIZATION
+%
+% regardless of case, and
+%
+%(b) the file must contain conditions identical to these,
+% except that the modifier/distributor may, if he or she
+% wishes, augment the list of proscribed filenames.
+
+% $Log: ukhyph.tex $
+% Revision 2.0 1996/09/10 15:04:04 ucgadkw
+% o added list of hyphenation exceptions at the end of this file.
+%
+%
+% Version 1.0a. Released 18th October 2005/PT.
+%
+% Created by Dominik Wujastyk and Graham Toal using Frank Liang's PATGEN 1.0.
+% Like the US patterns, these UK patterns correctly hyphenate about 90% of
+% the words in the input list, and produce no hyphens not in the list
+% (see TeXbook pp. 451--2).
+%
+% These patterns are based on a file of 114925 British-hyphenated words
+% generously made available to Dominik Wujastyk by Oxford University Press.
+% This list of words is copyright to the OUP and may not be redistributed.
+% The hyphenation break points in the words in the abovementioned file is
+% also copyright to the OUP.
+%
+% We are very grateful to Oxford University Press for allowing us to use
+% their list of hyphenated words to produce the following TeX hyphenation
+% patterns. This file of hyphenation patterns may be freely distributed.
+%
+% These patterns require a value of about 14000 for TeX's pattern memory size.
+%
diff --git a/dictionaries/en/README_hyph_en_US.txt b/dictionaries/en/README_hyph_en_US.txt
new file mode 100644
index 0000000..8420172
--- /dev/null
+++ b/dictionaries/en/README_hyph_en_US.txt
@@ -0,0 +1,59 @@
+hyph_en_US.dic - American English hyphenation patterns for OpenOffice.org
+
+version 2011-10-07
+
+- remove unnecessary parts for the new Hyphen 2.8.2
+
+version 2010-03-16
+
+Changes
+
+- forbid hyphenation at 1-character distances from dashes (eg. ad=d-on)
+ and at the dashes (fix for OpenOffice.org 3.2)
+- set correct LEFTHYPHENMIN = 2, RIGHTHYPHENMIN = 3
+- handle apostrophes (forbid *o'=clock etc.)
+- set COMPOUNDLEFTHYPHENMIN, COMPOUNDRIGHTHYPHENMIN values
+- UTF-8 encoding
+- Unicode ligature support
+
+License
+
+BSD-style. Unlimited copying, redistribution and modification of this file
+is permitted with this copyright and license information.
+
+See original license in this file.
+
+Conversion and modifications by László Németh (nemeth at OOo).
+
+Based on the plain TeX hyphenation table
+(http://tug.ctan.org/text-archive/macros/plain/base/hyphen.tex) and
+the TugBoat hyphenation exceptions log in
+http://www.ctan.org/tex-archive/info/digests/tugboat/tb0hyf.tex, processed
+by the hyphenex.sh script (see in the same directory).
+
+Originally developed and distributed with the Hyphen hyphenation library,
+see http://hunspell.sourceforge.net/ for the source files and the conversion
+scripts.
+
+Licenses
+
+hyphen.tex:
+% The Plain TeX hyphenation tables [NOT TO BE CHANGED IN ANY WAY!]
+% Unlimited copying and redistribution of this file are permitted as long
+% as this file is not modified. Modifications are permitted, but only if
+% the resulting file is not named hyphen.tex.
+
+output of hyphenex.sh:
+% Hyphenation exceptions for US English, based on hyphenation exception
+% log articles in TUGboat.
+%
+% Copyright 2007 TeX Users Group.
+% You may freely use, modify and/or distribute this file.
+%
+% This is an automatically generated file. Do not edit!
+%
+% Please contact the TUGboat editorial staff <tugboat@tug.org>
+% for corrections and omissions.
+
+hyph_en_US.txt:
+See the previous licenses.
diff --git a/dictionaries/en/README_lightproof_en.txt b/dictionaries/en/README_lightproof_en.txt
new file mode 100644
index 0000000..43c91fe
--- /dev/null
+++ b/dictionaries/en/README_lightproof_en.txt
@@ -0,0 +1,3 @@
+English sentence checker for LibreOffice
+see git://anongit.freedesktop.org/libreoffice/lightproof
+2011-2012 (c) László Németh, license: MPL 1.1 / GPLv3+ / LGPLv3+
diff --git a/dictionaries/en/WordNet_license.txt b/dictionaries/en/WordNet_license.txt
new file mode 100644
index 0000000..f1f96d8
--- /dev/null
+++ b/dictionaries/en/WordNet_license.txt
@@ -0,0 +1,31 @@
+WordNet Release 2.1
+
+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.1 Copyright 2005 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/dictionaries/en/affDescription.txt b/dictionaries/en/affDescription.txt
new file mode 100644
index 0000000..9e15057
--- /dev/null
+++ b/dictionaries/en/affDescription.txt
@@ -0,0 +1,149 @@
+---------------------------------------------------------------------
+This file is a summary of the switches used in the en_GB affix file.
+A description of the affix file format is appended to the end of this
+
+In addition to the new suffix and prefix rules a modified TRY list is
+used in order to properly find spelling errors in words having . (period)
+' (apostrophe) and - (hyphen) within them. A replacement list for common
+mis-spellings has also been incorporated.
+
+The en_GB.aff affix file was created from scratch by David Bartlett and
+Andrew Brown.
+
+15/12/02
+---------------------------------------------------------------------
+
+A re- Prefix
+a mis- Prefix
+B -able, -ability, last syllable of stem stressed, -ate words > 2 syllables
+b -ible, very basic rules, only dropped e
+C de- Prefix
+c over- Prefix
+D -ed, regular verb past tenses, last syllable of stem stressed
+d -ed, -ing, regular verb past tenses and adverbial form, last syllable NOT stressed
+E dis- Prefix for negation
+e out- Prefix
+F con- prefix
+f under - Prefix
+G -ing, ending for verbs, stress on last syllable of stem
+g -ability, last syllable NOT stressed
+H -th, -fold - number specific suffixes, both generated
+h -edly, adverbial, simplified rules
+I in- im- il- ir- Prefix, opposite of.
+i -edness, degree, simplified rules
+J -ings, plural noun version of verb ing ending, simplified rules
+j -fully, suffix
+K pre-, prefix
+k -ingly, adverbial form, simplified rules
+L -ment, -ments, -ment's, suffix, both generated
+l -ably, simplified rules
+M -'s, possessive form
+m -man, -men, -man's, -men's suffixes, all generated
+N -ion, noun from verb, stress on last syllable of stem
+n -ion, -ions, noun from verb, stress NOT on last syllable of stem
+O non- Prefix
+o -ally, adverb from verb, simplified rules
+P -ness, -ness's, adjective degree of comparison
+p -less, comparative suffix
+Q -ise, -ised, -ises, -ising, -ize, -ized, -izes, -izing, all generated!
+q -isation, -isations, -ization, -izations, all generated
+R -er, -ers, er's, doer, last syllable stressed, both forms generated
+r -er, -ers, er's, doer, last syllable NOT stressed, both forms generated
+S -s, noun plurals, verb conjugation
+s -iser, -isers, -izer, -izers, -iser's, -izer's, all generated
+T -er, -est, adjectival comparatives, both generated
+t -isable, -isability, -izable, -izability, all generated
+U un- Prefix
+u -iveness, ending for verbs
+V -ive, ending for verbs (simplified rules)
+v -ively, ending for verbs
+W -ic, adjectival ending, simplified rules
+w -ical, adjectival ending, simplified rules
+X -ions, noun plural, stress on last syllable of stem, simplified rules
+x -ional, -ionally, simplified rules, both endings formed
+Y -ly, adverb endings for adjectives
+y -ry, adjectival and noun forms, simplified rules.
+Z -y, diminutive and adjectival form, simplified rules
+z -ily, adverbial ending where adjective adds y
+0 -al, noun from verb, simplified rules
+1 -ically, adverbial double suffix, simplified rules
+2 -iness, y+ness ending, simplified rules
+3 -ist, -ists, -ists's, professions
+4 trans-, Prefix
+5 -woman, -women, -woman's suffixes, all generated
+6 -ful, suffix
+7 -able, last syllable NOT stressed, -ate words <= 2 syllables
+8
+9
+
+---------------------------------------------------------------------
+To Do:
+-ity
+-en
+-ify, -ified, -ifies, -ifing
+-ism
+-ish
+-ous
+-ously
+
+---------------------------------------------------------------------
+The following minor suffixes have been ignored, based on
+frequency counts in the standard word list
+-fulness
+-lessly
+-lessness
+-ousness
+-ifier
+-ification
+-ward
+-ship
+-ishly
+-ible
+-ibility
+-iveity
+-edness
+-icable
+-icability
+-ality
+-alism
+-ics
+-ional
+-ology
+-ologist
+-istic
+
+---------------------------------------------------------------------
+What follows is cut and pasted from the instructions at
+http://whiteboard.openoffice.org/lingucomponent/affix.readme
+
+The first line has 4 fields:
+
+Field
+-----
+1 SFX - indicates this is a suffix
+2 D - is the name of the character which represents this suffix
+3 Y - indicates it can be combined with prefixes (cross product)
+4 4 - indicates that sequence of 4 affix entries are needed to
+ properly store the affix information
+
+The remaining lines describe the unique information for the 4 affix
+entries that make up this affix. Each line can be interpreted
+as follows: (note fields 1 and 2 are used as a check against line 1 info)
+
+Field
+-----
+1 SFX - indicates this is a suffix
+2 D - is the name of the character which represents this affix
+3 y - the string of chars to strip off before adding affix
+ (a 0 here indicates the NULL string)
+4 ied - the string of affix characters to add
+ (a 0 here indicates the NULL string)
+5 [^aeiou]y - the conditions which must be met before the affix
+ can be applied
+
+Field 5 is interesting. Since this is a suffix, field 5 tells us that
+there are 2 conditions that must be met. The first condition is that
+the next to the last character in the word must *NOT* be any of the
+following "a", "e", "i", "o" or "u". The second condition is that
+the last character of the word must end in "y".
+
diff --git a/dictionaries/en/changelog.txt b/dictionaries/en/changelog.txt
new file mode 100644
index 0000000..3f2d828
--- /dev/null
+++ b/dictionaries/en/changelog.txt
@@ -0,0 +1,975 @@
+MAGP 2023-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 479 new words(1) (2023-11-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 741 new words(1) (2023-10-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-09-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 318 new words(1) (2023-09-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-08-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 369 new words(1) (2023-08-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 479 new words(1) (2023-07-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-06-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 421 new words(1) (2023-06-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 835 new words(1) (2023-05-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-04-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 323 new words(1) (2023-04-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2023-03-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 523 new words(1) (2023-03-01).
+ (1) Flag J was improved and it added 490 entries (possessives);
+ Removed tons of possessives in plurals ending with "s".
+
+
+
+MAGP 2023-02-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 310 new words(1) (2023-02-01).
+ (1) Added tons of plurals and possessives.
+
+- South African (2023-02-01):
+ - Added: Czechia + Czechia's
+ - Fixed/improved: flag 3
+
+
+
+MAGP 2023-01-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 283 new words(1) (2023-01-01).
+ (1) Added tons of plurals and possessives.
+ Sorted alphabetically the tags of the .aff.
+
+- South African (2023-01-01):
+ - Added the: ICONV ’ '
+ - Sorted alphabetically the tags of the .aff.
+
+
+
+MAGP 2022-12-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 376 new words(1) (2022-12-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 427 new words(1) (2022-11-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 705 new words(1) (2022-10-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-09-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 481 new words(1) (2022-09-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-08-01
+
+Updated the Dictionaries:
+- South African (2022-08-01):
+ - Fixed the flag ! at start of words;
+ - Removed duplicate words;
+ - Sorted alphabetically the dictionary.
+
+- British (Marco A.G.Pinto)*
+ * British has 363 new words(1) (2022-08-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 312 new words(1) (2022-07-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-06-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 415 new words(1) (2022-06-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 465 new words(1) (2022-05-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-04-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 708 new words(1) (2022-04-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-03-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 679 new words(1) (2022-03-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-02-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1061 new words(1) (2022-02-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2022-01-01
+
+The description is now the LibreOffice one and added variants for the most important locales.
+
+There are now OpenOffice and LibreOffice specific extensions to enable triggering autoupdate on both offices.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1593 new words(1) (2022-01-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-12-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 951 new words(1) (2021-12-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1026 new words(1) (2021-11-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1147 new words(1) (2021-10-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-09-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1437 new words(1) (2021-09-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-08-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1225 new words(1) (2021-08-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1171 new words(1) (2021-07-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-06-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 808 new words(1) (2021-06-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 931 new words(1) (2021-05-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-04-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1560 new words(1) (2021-04-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-03-01
+
+Updated the Dictionaries:
+- South African (small fix: https://bugs.documentfoundation.org/show_bug.cgi?id=140102)
+- British (Marco A.G.Pinto)*
+ * British has 1791 new words(1) (2021-03-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-02-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1568 new words(1) (2021-02-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2021-01-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 1 181 new words(1) (2021-01-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-12-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1131 new words(1) (2020-12-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 964 new words(1) (2020-11-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 740 new words(1) (2020-09-01) + 447 new words(1) (2020-10-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-08-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 634 new words(1) (2020-08-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1004 new words(1) (2020-07-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-06-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 2874 new words(1) (2020-06-01).
+ (1) Added tons of plurals and possessives.
+ Added tons of astronomy words.
+
+
+
+MAGP 2020-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 2404 new words(1) (2020-05-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-04-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 2149 new words(1) (2020-04-01).
+ (1) Added tons of plurals and possessives.
+ Added tons of COVID-19 related terms.
+ Removed hundreds of duplicates.
+
+
+
+MAGP 2020-03-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1507 new words(1) (2020-03-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2020-02-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1834 new words(1) (2020-02-01).
+ (1) Added tons of plurals and possessives.
+ I didn't wait two months to update the .oxt because the plurals and
+ possessives added were too important.
+
+
+
+MAGP 2020-01-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1673 new words(1) (2019-12-01) + 1543 new words(1) (2020-01-01).
+ (1) Added tons of plurals and possessives.
+
+
+
+MAGP 2019-11-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 1081 new words(1) (2019-10-01) + 1255 new words(2) (2019-11-01).
+ (1) at least, because TOTAL_NEW_WORDS = TOTAL_CURRENT_WORDS - TOTAL_PREVIOUS_WORDS
+ and tons of duplicates were removed and cleaned/simplified the .dic.
+ There were also tons of plurals/possessives added (WIP).
+ (2) Added tons of plurals and possessives.
+
+
+
+MAGP 2019-09-01
+
+- Converted some line endings in this file from Windows to Unix.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 2822 new words(1) (2019-08-01) + 1705 new words(1) (2019-09-01).
+ (1) at least, because TOTAL_NEW_WORDS = TOTAL_CURRENT_WORDS - TOTAL_PREVIOUS_WORDS
+ and tons of duplicates were removed and cleaned/simplified the .dic.
+ There were also tons of plurals/possessives added (WIP).
+
+
+
+MAGP 2019-07-01
+
+- Improved the description of the Extension.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 614 new words (2019-06-01) + 180 new words(1) (2019-07-01).
+ (1) at least, because TOTAL_NEW_WORDS = TOTAL_CURRENT_WORDS - TOTAL_PREVIOUS_WORDS
+ and tons of duplicates were removed and cleaned/simplified the .dic.
+ There were also tons of plurals/possessives added (WIP).
+
+
+
+MAGP 2019-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 2358 new words (2019-04-01) + 458 new words (2019-05-01).
+
+
+
+MAGP 2019-03-01
+
+Added the LGPL_V3 License .txt into the Extension.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 764 new words (2019-02-01) + 1046 new words (2019-03-01).
+
+
+
+MAGP 2019-01-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1529 new words (2018-12-01) + 1175 new words (2019-01-01).
+
+
+
+MAGP 2018-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 5225 new words (2018-10-01) + 1138 new words (2018-11-01).
+
+
+
+MAGP 2018-09-01
+
+Improved the logo quality since Pedro Marques sent me the original model which can be resized in all sizes.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 5101 new words (2018-08-01) + 14713 new words (2018-09-01).
+
+
+
+MAGP 2018-07-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 3656 new words (2018-06-01) + 7101 new words (2018-07-01).
+
+
+
+MAGP 2018-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 820 new words (2018-04-01) + 857 new words (2018-05-01).
+
+
+
+MAGP 2018-03-01
+
+Simplified the Extension description.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1421 new words (2018-02-01) + 1208 new words (2018-03-01).
+
+
+
+MAGP 2018-01-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1483 new words (2017-12-01) + 3034 new words (2018-01-01).
+ In November + December, I added THOUSANDS of possessives to proper names.
+ Added 500+ proper names.
+
+
+
+MAGP 2017-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 467 new words (2017-10-01) + 824 new words (2017-11-01).
+
+
+
+MAGP 2017-09-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 473 new words (2017-08-01) + 297 new words (2017-09-01).
+
+
+
+MAGP 2017-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 480 new words (2017-06-01) + 433 new words (2017-07-01).
+
+
+
+MAGP 2017-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 431 new words (2017-04-01) + 271 new words (2017-05-01).
+
+
+
+MAGP 2017-03-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 638 new words (2017-02-01) + 326 new words (2017-03-01).
+
+
+
+MAGP 2017-01-01
+
+Updated the Dictionaries:
+- Australian (Kevin Atkinson)
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 488 new words (2016-12-01) + 554 new words (2017-01-01).
+
+
+
+MAGP 2016-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 710 new words (2016-10-01) + 735 new words (2016-11-01).
+
+
+
+MAGP 2016-09-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)*
+ * British has 773 new words (2016-08-01) + 728 new words (2016-09-01).
+ GB changelog is no longer included in the README file,
+ instead there are links inside it that point to the information
+ (lower filesize).
+
+
+
+MAGP 2016-07-01
+
+Updated the hyphenation patterns to 2011-10-07 (from LibreOffice):
+- US + GB
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 1107 new words (2016-06-01) + 738 new words (2016-07-01).
+ It now uses NOSUGGEST keyword for offensive words.
+ It now uses COMPOUNDING (Áron Budea)
+
+
+
+MAGP 2016-05-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 811 new words.
+
+
+
+MAGP 2016-04-01
+
+Updated the Dictionaries:
+- Australian (2016-03-14)*
+- British (Marco A.G.Pinto)**
+- South African (Dwayne Bailey) (2012-07-10)
+ * Australian had all UTF-8 corrupt words fixed by Marco.
+ ** British has 819 new words and attempted to make compatible with the command line using the UTF-8 apostrophe.
+
+
+
+MAGP 2016-03-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)*
+ * British has 935 new words.
+
+Converted the US Thesaurus into UTF-8 and removed 752 duplicated meanings
+
+
+
+MAGP 2016-02-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2016-01-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-12-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-09-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-08-01
+
+It is now compatible with the latest version of LibreOffice.
+
+Improved the description text.
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-07-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-06-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-05-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-04-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-03-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-02-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2015-01-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-12-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-11-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-10-01
+
+Updated the Dictionaries:
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-09-01
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-07-01
+
+Changed the publisher name in description.xml to "Marco A.G.Pinto" since
+Ariel Constenla-Haile and Andrea Pescetti from Apache told me that the one being
+used, "Apache OpenOffice", had a license incompatibility.
+
+Updated the en_GB dictionary.
+
+
+
+MAGP 2014-06-01
+
+Fixed the Extension URL in the description, since the old URL was temporary.
+
+Updated the Dictionaries:
+- American (Kevin Atkinson)
+- Canadian (Kevin Atkinson)
+- British (Marco A.G.Pinto)
+
+
+
+MAGP 2014-02-10
+
+The extension, in the Extension Manager, now has an icon, a name with a link and a description.
+Also updated the en_GB dictionary.
+
+
+
+MAGP 2014-01-07
+
+Updated the English British Dictionary.
+Regarding the 2006 version, this one has over 800 new unique words plus the derived ones.
+Please note that Marco's forked version was based on the non-obfuscated Mozilla version.
+
+
+
+AP 31/7/2013
+
+Modify dictionaries.xcu for better hyphenation, see
+https://issues.apache.org/ooo/show_bug.cgi?id=119087
+
+
+
+DNW 20/11/2008
+
+Removed un-Australian -ize variants of words from ths list.
+
+
+
+DNW 27/9/08
+
+A short list of Australian slang terms was added.
+Added same new words like 'cellphone' from various online new word lists.
+
+
+
+DNW 25/9/2008
+
+Version packaged as English Australian Dictionary Extension version 1 for OpenOffice version 3.
+
+-- Notes for 2.1.1 --
+
+- Made some modifications as this dictionary is specifically aimed at Mozilla products and online users.
+
+My modifications:
+
+blog/RDGMS
+Bugzilla/M
+caffeinate/D
+Camino/M
+ChatZilla/M
+eBay/M
+Firefox/M
+Flock/M
+-gauge/DaGS
+gauge/aBDGMS
+Google/M
+google/SGD
+HTML/M
+https
+inline/D
+-install/7NRn
+install/7NRnSUGMB
+-Internet/M
+internet/M
+JavaScript/M
+Mozilla/M
+phish/RG
+-plug-in
+plug-in/SM
+plugin/SM
+podcast/MSRG
+PowerPoint/M
+screenshot/S
+SeaMonkey/M
+Songbird/M
+-spam/DG
+spam/DGM
+-spammer
+spammer/MRS
+subdomain/SM
+Sunbird/M
+Thunderbird/M
+toolbar/S
+unsubscribe/D
+webmaster/MS
+webmistress/MS
+XULRunner/M
+
+-- Notes for 2.1 -- (Not released)
+Based on en_AU_V2.1.zip from http://www.justlocal.com.au/
+
+- Removed words with spaces
+- Removed trailing spaces from words
+- Change accented characters in words where this was valid according to the
+ Macquarie English dictionary.
+- Removed U.S. spellings of the words with ize so only ise and variants remain.
+- Fixed error in affix file on line 1068 from SFZ to SFX.
+
+
+-- Notes for 0.2 -- 2006-08-03
+Gah! A typo in the extension name? New version pronto!
+
+
+-- Notes for 0.1 -- 2006-08-03
+
+I, Cameron, downloaded the en-AU dictionary file from http://lingucomponent.openoffice.org/spell_dic.html to package it correctly for use in Mozilla applications and distribution through addons.mozilla.org. It was last modified on 2003-03-29. I received no reply after emailing the author, and such have decided to make my own fork (is it still a fork if the previous one isn't maintained?) for Mozilla :) I have also decided to change the license to the GNU General Public License - as per section 3 of the LGPL.
+
+The en_AU dictionary is credited to Kelvin Eldridge (previous maintainer) <audictionary@onlineconnections.com.au>, Jean Hollis Weber and David Wilson (originally licensed under the LGPL.)
+
+Their changes:
+- Words incorrect in Australian English removed
+- a list from the previously removed words with corrected spelling was added
+- a list of major rivers was added
+- a list of place names was added
+- a list of Australian mammals was added
+- a list of Aboriginal/Koori words commonly used was added
+
+This dictionary was based on the en_GB dictionary, edited by David Bartlett, Brian Kelk and Andrew Brown – (originally licensed under the LGPL.)
+
+Which was in turn initially based on a subset of the original English wordlist created by Kevin Atkinson for Pspell and Aspell – (originally licensed under the LGPL.)
+
+Original affix file created completely from scratch by David Bartlett and Andrew Brown, based on the published rules for MySpell – (originally licensed under the LGPL.)
diff --git a/dictionaries/en/description.xml b/dictionaries/en/description.xml
new file mode 100644
index 0000000..7d2a6e5
--- /dev/null
+++ b/dictionaries/en/description.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:d="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <version value="2023.11.01" />
+ <identifier value="org.openoffice.en.hunspell.dictionaries" />
+ <display-name>
+ <name lang="en-US">English spelling dictionaries, hyphenation rules, thesaurus, and grammar checker</name>
+ </display-name>
+ <platform value="all" />
+ <dependencies>
+ <OpenOffice.org-minimal-version value="3.0" d:name="OpenOffice.org 3.0" />
+ </dependencies>
+ <icon>
+ <default xlink:href="English.png" />
+ </icon>
+ <publisher>
+ <name xlink:href="https://extensions.libreoffice.org/extensions/english-dictionaries" lang="en">Marco A.G.Pinto</name>
+ </publisher>
+</description>
diff --git a/dictionaries/en/dialog/en.xdl b/dictionaries/en/dialog/en.xdl
new file mode 100644
index 0000000..86019ce
--- /dev/null
+++ b/dictionaries/en/dialog/en.xdl
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
+<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="en" dlg:left="101" dlg:top="52" dlg:width="196" dlg:height="72" dlg:closeable="true" dlg:moveable="true" dlg:withtitlebar="false">
+ <dlg:bulletinboard>
+<dlg:fixedline dlg:id="spelling" dlg:tab-index="0" dlg:left="5" dlg:top="5" dlg:width="240" dlg:height="10" dlg:value="&amp;spelling"/>
+<dlg:checkbox dlg:id="grammar" dlg:tab-index="1" dlg:left="10" dlg:top="15" dlg:width="100" dlg:height="10" dlg:value="&amp;grammar" dlg:checked="false" dlg:help-text="&amp;hlp_grammar"/>
+<dlg:checkbox dlg:id="cap" dlg:tab-index="2" dlg:left="120" dlg:top="15" dlg:width="100" dlg:height="10" dlg:value="&amp;cap" dlg:checked="false" dlg:help-text="&amp;hlp_cap"/>
+<dlg:checkbox dlg:id="dup" dlg:tab-index="3" dlg:left="10" dlg:top="25" dlg:width="100" dlg:height="10" dlg:value="&amp;dup" dlg:checked="false" dlg:help-text="&amp;hlp_dup"/>
+<dlg:checkbox dlg:id="pair" dlg:tab-index="4" dlg:left="120" dlg:top="25" dlg:width="100" dlg:height="10" dlg:value="&amp;pair" dlg:checked="false" dlg:help-text="&amp;hlp_pair"/>
+<dlg:fixedline dlg:id="punctuation" dlg:tab-index="5" dlg:left="5" dlg:top="35" dlg:width="240" dlg:height="10" dlg:value="&amp;punctuation"/>
+<dlg:checkbox dlg:id="spaces" dlg:tab-index="6" dlg:left="10" dlg:top="45" dlg:width="100" dlg:height="10" dlg:value="&amp;spaces" dlg:checked="true" dlg:help-text="&amp;hlp_spaces"/>
+<dlg:checkbox dlg:id="mdash" dlg:tab-index="7" dlg:left="120" dlg:top="45" dlg:width="100" dlg:height="10" dlg:value="&amp;mdash" dlg:checked="false" dlg:help-text="&amp;hlp_mdash"/>
+<dlg:checkbox dlg:id="quotation" dlg:tab-index="8" dlg:left="10" dlg:top="55" dlg:width="100" dlg:height="10" dlg:value="&amp;quotation" dlg:checked="false" dlg:help-text="&amp;hlp_quotation"/>
+<dlg:checkbox dlg:id="times" dlg:tab-index="9" dlg:left="120" dlg:top="55" dlg:width="100" dlg:height="10" dlg:value="&amp;times" dlg:checked="true" dlg:help-text="&amp;hlp_times"/>
+<dlg:checkbox dlg:id="spaces2" dlg:tab-index="10" dlg:left="10" dlg:top="65" dlg:width="100" dlg:height="10" dlg:value="&amp;spaces2" dlg:checked="false" dlg:help-text="&amp;hlp_spaces2"/>
+<dlg:checkbox dlg:id="ndash" dlg:tab-index="11" dlg:left="120" dlg:top="65" dlg:width="100" dlg:height="10" dlg:value="&amp;ndash" dlg:checked="false" dlg:help-text="&amp;hlp_ndash"/>
+<dlg:checkbox dlg:id="apostrophe" dlg:tab-index="12" dlg:left="10" dlg:top="75" dlg:width="100" dlg:height="10" dlg:value="&amp;apostrophe" dlg:checked="false" dlg:help-text="&amp;hlp_apostrophe"/>
+<dlg:checkbox dlg:id="ellipsis" dlg:tab-index="13" dlg:left="120" dlg:top="75" dlg:width="100" dlg:height="10" dlg:value="&amp;ellipsis" dlg:checked="false" dlg:help-text="&amp;hlp_ellipsis"/>
+<dlg:checkbox dlg:id="spaces3" dlg:tab-index="14" dlg:left="10" dlg:top="85" dlg:width="100" dlg:height="10" dlg:value="&amp;spaces3" dlg:checked="false" dlg:help-text="&amp;hlp_spaces3"/>
+<dlg:checkbox dlg:id="minus" dlg:tab-index="15" dlg:left="120" dlg:top="85" dlg:width="100" dlg:height="10" dlg:value="&amp;minus" dlg:checked="false" dlg:help-text="&amp;hlp_minus"/>
+<dlg:fixedline dlg:id="others" dlg:tab-index="16" dlg:left="5" dlg:top="95" dlg:width="240" dlg:height="10" dlg:value="&amp;others"/>
+<dlg:checkbox dlg:id="metric" dlg:tab-index="17" dlg:left="10" dlg:top="105" dlg:width="200" dlg:height="10" dlg:value="&amp;metric" dlg:checked="false" dlg:help-text="&amp;hlp_metric"/>
+<dlg:checkbox dlg:id="numsep" dlg:tab-index="18" dlg:left="10" dlg:top="115" dlg:width="200" dlg:height="10" dlg:value="&amp;numsep" dlg:checked="false" dlg:help-text="&amp;hlp_numsep"/>
+<dlg:checkbox dlg:id="nonmetric" dlg:tab-index="19" dlg:left="10" dlg:top="125" dlg:width="200" dlg:height="10" dlg:value="&amp;nonmetric" dlg:checked="false" dlg:help-text="&amp;hlp_nonmetric"/>
+</dlg:bulletinboard>
+</dlg:window>
diff --git a/dictionaries/en/dialog/en_en_US.default b/dictionaries/en/dialog/en_en_US.default
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/dictionaries/en/dialog/en_en_US.default
diff --git a/dictionaries/en/dialog/en_en_US.properties b/dictionaries/en/dialog/en_en_US.properties
new file mode 100644
index 0000000..0e43ded
--- /dev/null
+++ b/dictionaries/en/dialog/en_en_US.properties
@@ -0,0 +1,37 @@
+spelling=Grammar checking
+hlp_grammar= Check more grammar errors.
+grammar=Possible mistakes
+hlp_cap= Check missing capitalization of sentences.
+cap=Capitalization
+hlp_dup= Check repeated words.
+dup=Word duplication
+hlp_pair= Check missing or extra parentheses and quotation marks.
+pair=Parentheses
+punctuation=Punctuation
+hlp_spaces=Check single spaces between words.
+spaces=Word spacing
+hlp_mdash=Force unspaced em dash instead of spaced en dash.
+mdash=Em dash
+hlp_ndash=Force spaced en dash instead of unspaced em dash.
+ndash=En dash
+hlp_quotation=Check double quotation marks: "x" \u2192 \u201cx\u201d
+quotation=Quotation marks
+hlp_times=Check true multiplication sign: 5x5 \u2192 5\u00d75
+times=Multiplication sign
+hlp_spaces2=Check single spaces between sentences.
+spaces2=Sentence spacing
+hlp_spaces3=Check more than two extra space characters between words and sentences.
+spaces3=More spaces
+hlp_minus=Change hyphen characters to real minus signs.
+minus=Minus sign
+hlp_apostrophe=Change typewriter apostrophe, single quotation marks and correct double primes.
+apostrophe=Apostrophe
+hlp_ellipsis=Replace three dots with ellipsis.
+ellipsis=Ellipsis
+others=Others
+hlp_metric=Measurement conversion from \u00b0F, mph, ft, in, lb, gal and miles.
+metric=Convert to metric (\u00b0C, km/h, m, kg, l)
+hlp_numsep=Common (1000000 \u2192 1,000,000) or ISO (1000000 \u2192 1 000 000).
+numsep=Thousand separation of large numbers
+hlp_nonmetric=Measurement conversion from \u00b0C; km/h; cm, m, km; kg; l.
+nonmetric=Convert to non-metric (\u00b0F, mph, ft, lb, gal)
diff --git a/dictionaries/en/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu b/dictionaries/en/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu
new file mode 100644
index 0000000..a867a59
--- /dev/null
+++ b/dictionaries/en/dialog/registry/data/org/openoffice/Office/OptionsDialog.xcu
@@ -0,0 +1,27 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE oor:component-data SYSTEM "../../../../component-update.dtd">
+<oor:component-data oor:name="OptionsDialog" oor:package="org.openoffice.Office" xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <node oor:name="Nodes">
+ <node oor:name="LanguageSettings" oor:op="fuse">
+ <prop oor:name="Label">
+ <value xml:lang="en-US">Language Settings</value>
+ </prop>
+ <node oor:name="Leaves">
+ <node oor:name="org.openoffice.lightproof.en" oor:op="fuse">
+ <prop oor:name="Id">
+ <value>org.openoffice.en.hunspell.dictionaries</value>
+ </prop>
+ <prop oor:name="Label">
+ <value xml:lang="en-US">English Sentence Checking</value>
+ </prop>
+ <prop oor:name="OptionsPage">
+ <value>%origin%/en.xdl</value>
+ </prop>
+ <prop oor:name="EventHandlerService">
+ <value>org.libreoffice.comp.pyuno.LightproofOptionsEventHandler.en</value>
+ </prop>
+ </node>
+ </node>
+ </node>
+ </node>
+</oor:component-data>
diff --git a/dictionaries/en/dialog/registry/schema/org/openoffice/Lightproof_en.xcs b/dictionaries/en/dialog/registry/schema/org/openoffice/Lightproof_en.xcs
new file mode 100644
index 0000000..bb7843c
--- /dev/null
+++ b/dictionaries/en/dialog/registry/schema/org/openoffice/Lightproof_en.xcs
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+oor:name="Lightproof_en" oor:package="org.openoffice" xml:lang="en-US">
+<info>
+<author></author>
+<desc>Contains the options data used for the test extensions.</desc>
+</info>
+<templates>
+
+ <group oor:name="en">
+ <info>
+ <desc>The data for one leaf.</desc>
+ </info>
+<prop oor:name="grammar" oor:type="xs:string">
+ <info><desc>The grammar definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="cap" oor:type="xs:string">
+ <info><desc>The cap definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="dup" oor:type="xs:string">
+ <info><desc>The dup definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="pair" oor:type="xs:string">
+ <info><desc>The pair definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="spaces" oor:type="xs:string">
+ <info><desc>The spaces definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="mdash" oor:type="xs:string">
+ <info><desc>The mdash definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="quotation" oor:type="xs:string">
+ <info><desc>The quotation definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="times" oor:type="xs:string">
+ <info><desc>The times definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="spaces2" oor:type="xs:string">
+ <info><desc>The spaces2 definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="ndash" oor:type="xs:string">
+ <info><desc>The ndash definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="apostrophe" oor:type="xs:string">
+ <info><desc>The apostrophe definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="ellipsis" oor:type="xs:string">
+ <info><desc>The ellipsis definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="spaces3" oor:type="xs:string">
+ <info><desc>The spaces3 definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="minus" oor:type="xs:string">
+ <info><desc>The minus definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="metric" oor:type="xs:string">
+ <info><desc>The metric definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="numsep" oor:type="xs:string">
+ <info><desc>The numsep definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+<prop oor:name="nonmetric" oor:type="xs:string">
+ <info><desc>The nonmetric definition of one leaf.</desc></info>
+ <value></value>
+</prop>
+ </group>
+ </templates>
+ <component>
+ <group oor:name="Leaves">
+ <info>
+ <desc>The list of leaves.</desc>
+ </info>
+
+ <node-ref oor:name="en" oor:node-type="en">
+ <info>
+ <desc>The definition of one leaf.</desc>
+ </info>
+ </node-ref>
+ </group>
+ </component>
+
+</oor:component-schema>
diff --git a/dictionaries/en/dictionaries.xcu b/dictionaries/en/dictionaries.xcu
new file mode 100644
index 0000000..a77ae62
--- /dev/null
+++ b/dictionaries/en/dictionaries.xcu
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="Linguistic" oor:package="org.openoffice.Office">
+ <node oor:name="ServiceManager">
+ <node oor:name="Dictionaries">
+ <node oor:name="HunSpellDic_en-GB" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/en_GB.aff %origin%/en_GB.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_SPELL</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-GB en-BS en-BZ en-GH en-IE en-IN en-JM en-NZ en-TT</value>
+ </prop>
+ </node>
+ <node oor:name="HunSpellDic_en-ZA" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/en_ZA.aff %origin%/en_ZA.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_SPELL</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-ZA en-MW en-NA en-ZW</value>
+ </prop>
+ </node>
+ <node oor:name="HunSpellDic_en-US" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/en_US.aff %origin%/en_US.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_SPELL</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-US en-IL en-PH</value>
+ </prop>
+ </node>
+ <node oor:name="HunSpellDic_en-AU" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/en_AU.aff %origin%/en_AU.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_SPELL</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-AU</value>
+ </prop>
+ </node>
+ <node oor:name="HunSpellDic_en-CA" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/en_CA.aff %origin%/en_CA.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_SPELL</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-CA</value>
+ </prop>
+ </node>
+ <node oor:name="HyphDic_en-GB" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/hyph_en_GB.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_HYPH</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-GB en-ZA en-NA en-ZW en-AU en-CA en-IE en-IN en-BZ en-BS en-GH en-JM en-MW en-NZ en-TT</value>
+ </prop>
+ </node>
+ <node oor:name="HyphDic_en-US" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/hyph_en_US.dic</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_HYPH</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-US en-IL en-PH</value>
+ </prop>
+ </node>
+ <node oor:name="ThesDic_en-US" oor:op="fuse">
+ <prop oor:name="Locations" oor:type="oor:string-list">
+ <value>%origin%/th_en_US_v2.dat</value>
+ </prop>
+ <prop oor:name="Format" oor:type="xs:string">
+ <value>DICT_THES</value>
+ </prop>
+ <prop oor:name="Locales" oor:type="oor:string-list">
+ <value>en-GB en-US en-PH en-ZA en-NA en-ZW en-AU en-CA en-IE en-IL en-IN en-BZ en-BS en-GH en-JM en-MW en-NZ en-TT</value>
+ </prop>
+ </node>
+ </node>
+ </node>
+</oor:component-data>
+
+
diff --git a/dictionaries/en/en_AU.aff b/dictionaries/en/en_AU.aff
new file mode 100644
index 0000000..d0cccb3
--- /dev/null
+++ b/dictionaries/en/en_AU.aff
@@ -0,0 +1,205 @@
+SET UTF-8
+TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ'
+ICONV 1
+ICONV ’ '
+NOSUGGEST !
+
+# ordinal numbers
+COMPOUNDMIN 1
+# only in compounds: 1th, 2th, 3th
+ONLYINCOMPOUND c
+# compound rules:
+# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.)
+# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.)
+COMPOUNDRULE 2
+COMPOUNDRULE n*1t
+COMPOUNDRULE n*mp
+WORDCHARS 0123456789
+
+PFX A Y 1
+PFX A 0 re .
+
+PFX I Y 1
+PFX I 0 in .
+
+PFX U Y 1
+PFX U 0 un .
+
+PFX C Y 1
+PFX C 0 de .
+
+PFX E Y 1
+PFX E 0 dis .
+
+PFX F Y 1
+PFX F 0 con .
+
+PFX K Y 1
+PFX K 0 pro .
+
+SFX V N 2
+SFX V e ive e
+SFX V 0 ive [^e]
+
+SFX N Y 3
+SFX N e ion e
+SFX N y ication y
+SFX N 0 en [^ey]
+
+SFX X Y 3
+SFX X e ions e
+SFX X y ications y
+SFX X 0 ens [^ey]
+
+SFX H N 2
+SFX H y ieth y
+SFX H 0 th [^y]
+
+SFX Y Y 1
+SFX Y 0 ly .
+
+SFX G Y 2
+SFX G e ing e
+SFX G 0 ing [^e]
+
+SFX J Y 2
+SFX J e ings e
+SFX J 0 ings [^e]
+
+SFX D Y 4
+SFX D 0 d e
+SFX D y ied [^aeiou]y
+SFX D 0 ed [^ey]
+SFX D 0 ed [aeiou]y
+
+SFX T N 4
+SFX T 0 st e
+SFX T y iest [^aeiou]y
+SFX T 0 est [aeiou]y
+SFX T 0 est [^ey]
+
+SFX R Y 4
+SFX R 0 r e
+SFX R y ier [^aeiou]y
+SFX R 0 er [aeiou]y
+SFX R 0 er [^ey]
+
+SFX Z Y 4
+SFX Z 0 rs e
+SFX Z y iers [^aeiou]y
+SFX Z 0 ers [aeiou]y
+SFX Z 0 ers [^ey]
+
+SFX S Y 4
+SFX S y ies [^aeiou]y
+SFX S 0 s [aeiou]y
+SFX S 0 es [sxzh]
+SFX S 0 s [^sxzhy]
+
+SFX P Y 3
+SFX P y iness [^aeiou]y
+SFX P 0 ness [aeiou]y
+SFX P 0 ness [^y]
+
+SFX M Y 1
+SFX M 0 's .
+
+SFX B Y 3
+SFX B 0 able [^aeiou]
+SFX B 0 able ee
+SFX B e able [^aeiou]e
+
+SFX L Y 1
+SFX L 0 ment .
+
+REP 90
+REP a ei
+REP ei a
+REP a ey
+REP ey a
+REP ai ie
+REP ie ai
+REP alot a_lot
+REP are air
+REP are ear
+REP are eir
+REP air are
+REP air ere
+REP ere air
+REP ere ear
+REP ere eir
+REP ear are
+REP ear air
+REP ear ere
+REP eir are
+REP eir ere
+REP ch te
+REP te ch
+REP ch ti
+REP ti ch
+REP ch tu
+REP tu ch
+REP ch s
+REP s ch
+REP ch k
+REP k ch
+REP f ph
+REP ph f
+REP gh f
+REP f gh
+REP i igh
+REP igh i
+REP i uy
+REP uy i
+REP i ee
+REP ee i
+REP j di
+REP di j
+REP j gg
+REP gg j
+REP j ge
+REP ge j
+REP s ti
+REP ti s
+REP s ci
+REP ci s
+REP k cc
+REP cc k
+REP k qu
+REP qu k
+REP kw qu
+REP o eau
+REP eau o
+REP o ew
+REP ew o
+REP oo ew
+REP ew oo
+REP ew ui
+REP ui ew
+REP oo ui
+REP ui oo
+REP ew u
+REP u ew
+REP oo u
+REP u oo
+REP u oe
+REP oe u
+REP u ieu
+REP ieu u
+REP ue ew
+REP ew ue
+REP uff ough
+REP oo ieu
+REP ieu oo
+REP ier ear
+REP ear ier
+REP ear air
+REP air ear
+REP w qu
+REP qu w
+REP z ss
+REP ss z
+REP shun tion
+REP shun sion
+REP shun cion
+REP size cise
diff --git a/dictionaries/en/en_AU.dic b/dictionaries/en/en_AU.dic
new file mode 100644
index 0000000..c7e8ccb
--- /dev/null
+++ b/dictionaries/en/en_AU.dic
@@ -0,0 +1,49824 @@
+49823
+0/nm
+0th/pt
+1/n1
+1st/p
+1th/tc
+2/nm
+2nd/p
+2th/tc
+3/nm
+3rd/p
+3th/tc
+4/nm
+4th/pt
+5/nm
+5th/pt
+6/nm
+6th/pt
+7/nm
+7th/pt
+8/nm
+8th/pt
+9/nm
+9th/pt
+A/SM
+AA/M
+AAA
+AB/M
+ABA
+ABC/SM
+ABM/SM
+ABS
+AC/M
+ACLU/M
+ACT
+ACTH/M
+AD/M
+ADC
+ADD
+ADM
+ADP/M
+AF
+AFAIK
+AFB
+AFC/M
+AFDC
+AFN
+AFT
+AI/SM
+AIDS/M
+AK
+AL
+AM/M
+AMA
+AMD/M
+ANSI/S
+ANZUS/M
+AOL/M
+AP/M
+APB
+APC
+API
+APO
+APR
+AR
+ARC
+ASAP
+ASCII/SM
+ASL/M
+ASPCA
+ATM/M
+ATP/M
+ATV
+AV
+AVI
+AWACS/M
+AWOL/M
+AWS/M
+AZ/M
+AZT/M
+Aachen/M
+Aaliyah/M
+Aaron/M
+Abbas/M
+Abbasid/M
+Abbott/M
+Abby/M
+Abdul/M
+Abe/M
+Abel/M
+Abelard/M
+Abelson/M
+Aberdeen/M
+Abernathy/M
+Abidjan/M
+Abigail/M
+Abilene/M
+Abner/M
+Aborigine/MS
+Abraham/M
+Abram/MS
+Abrams/M
+Absalom/M
+Abuja/M
+Abyssinia/M
+Abyssinian/M
+Ac/M
+Acadia/M
+Acapulco/M
+Accenture/M
+Accra/M
+Acevedo/M
+Achaean/M
+Achebe/M
+Achernar/M
+Acheson/M
+Achilles/M
+Aconcagua/M
+Acosta/M
+Acropolis
+Acrux/M
+Actaeon/M
+Acton/M
+Acts/M
+Acuff/M
+Ada/SM
+Adam/SM
+Adams/M
+Adan/M
+Adana/M
+Adar/M
+Addams/M
+Adderley/M
+Addie/M
+Addison/M
+Adela/M
+Adelaide/M
+Adele/M
+Adeline/M
+Aden/M
+Adenauer/M
+Adhara/M
+Adidas/M
+Adirondack/SM
+Adirondacks/M
+Adkins/M
+Adler/M
+Adm
+Admiralty
+Adolf/M
+Adolfo/M
+Adolph/M
+Adonis/MS
+Adrenalin/MS
+Adrian/M
+Adriana/M
+Adriatic/M
+Adrienne/M
+Advent/MS
+Adventist/MS
+Advil/M
+Aegean/M
+Aelfric/M
+Aeneas/M
+Aeneid/M
+Aeolus/M
+Aeroflot/M
+Aeschylus/M
+Aesculapius/M
+Aesop/M
+Afghan/SM
+Afghani/M
+Afghanistan/M
+Afr
+Africa/M
+African/SM
+Afrikaans/M
+Afrikaner/SM
+Afro/SM
+Afrocentric
+Afrocentrism/M
+Ag/M
+Agamemnon/M
+Agana
+Agassi/M
+Agassiz/M
+Agatha/M
+Aggie/M
+Aglaia/M
+Agnes/M
+Agnew/M
+Agni/M
+Agra/M
+Agricola/M
+Agrippa/M
+Agrippina/M
+Aguascalientes
+Aguilar/M
+Aguinaldo/M
+Aguirre/M
+Agustin/M
+Ahab/M
+Ahmad/M
+Ahmadabad/M
+Ahmadinejad/M
+Ahmed/M
+Ahriman/M
+Aida/M
+Aiken/M
+Aileen/M
+Aimee/M
+Ainu/M
+Airedale/MS
+Aires/M
+Aisha/M
+Ajax/M
+Akbar/M
+Akhmatova/M
+Akihito/M
+Akita/M
+Akiva/M
+Akkad/M
+Akron/M
+Al/M
+Ala/S
+Alabama/M
+Alabaman/MS
+Alabamian/SM
+Aladdin/M
+Alamo/M
+Alamogordo/M
+Alan/M
+Alana/M
+Alar/M
+Alaric/M
+Alaska/M
+Alaskan/MS
+Alba/M
+Albania/M
+Albanian/MS
+Albany/M
+Albee/M
+Alberio/M
+Albert/M
+Alberta/M
+Albertan
+Alberto/M
+Albigensian/M
+Albion/M
+Albireo/M
+Albuquerque/M
+Albury/M
+Alcatraz/M
+Alcestis/M
+Alcibiades/M
+Alcindor/M
+Alcmena/M
+Alcoa/M
+Alcott/M
+Alcuin/M
+Alcyone/M
+Aldan/M
+Aldebaran/M
+Alden/M
+Alderamin/M
+Aldo/M
+Aldrin/M
+Alec/M
+Aleichem/M
+Alejandra/M
+Alejandro/M
+Alembert/M
+Aleppo/M
+Aleut/MS
+Aleutian/SM
+Alex/M
+Alexander/MS
+Alexandra/M
+Alexandria/M
+Alexandrian
+Alexei/M
+Alexis/M
+Alfonso/M
+Alfonzo/M
+Alford/M
+Alfred/M
+Alfreda/M
+Alfredo/M
+Algenib/M
+Alger/M
+Algeria/M
+Algerian/SM
+Algieba/M
+Algiers/M
+Algol/M
+Algonquian/SM
+Algonquin/MS
+Alhambra/M
+Alhena/M
+Ali/M
+Alice/M
+Alicia/M
+Alighieri/M
+Aline/M
+Alioth/M
+Alisa/M
+Alisha/M
+Alison/M
+Alissa/M
+Alistair/M
+Alkaid/M
+Allah/M
+Allahabad/M
+Allan/M
+Alleghenies/M
+Allegheny/SM
+Allegra/M
+Allen/M
+Allende/M
+Allentown/M
+Allhallows/M
+Allie/MS
+Allison/M
+Allstate/M
+Allyson/M
+Alma/M
+Almach/M
+Almaty/M
+Almighty/M
+Almohad/M
+Almoravid/M
+Alnilam/M
+Alnitak/M
+Alonzo/M
+Alpert/M
+Alphard/M
+Alphecca/M
+Alpheratz/M
+Alphonse/M
+Alphonso/M
+Alpine/M
+Alpo/M
+Alps/M
+Alsace/M
+Alsatian/SM
+Alsop/M
+Alston/M
+Alta/M
+Altaba/M
+Altai/M
+Altaic/M
+Altair/M
+Altamira/M
+Althea/M
+Altiplano/M
+Altman/M
+Altoids/M
+Alton/M
+Aludra/M
+Alva/M
+Alvarado/M
+Alvarez/M
+Alvaro/M
+Alvin/M
+Alyce/M
+Alyson/M
+Alyssa/M
+Alzheimer/M
+Am/MNR
+Amadeus/M
+Amado/M
+Amalia/M
+Amanda/M
+Amarillo/M
+Amaru/M
+Amaterasu/M
+Amati/M
+Amazon/SM
+Amazonian
+Amber/M
+Amelia/M
+Amen/M
+Amenhotep/M
+Amerasian/M
+America/SM
+American/MS
+Americana/M
+Americanisation/MS
+Americanise/GDS
+Americanism/MS
+Amerind/SM
+Amerindian/MS
+Ameslan/M
+Amgen/M
+Amharic/M
+Amherst/M
+Amie/M
+Amiga/M
+Amish/M
+Amman/M
+Amoco/M
+Amos/M
+Amparo/M
+Ampere/M
+Amritsar/M
+Amsterdam/M
+Amtrak/M
+Amundsen/M
+Amur/M
+Amway/M
+Amy/M
+Ana/M
+Anabaptist/M
+Anabel/M
+Anacin/M
+Anacreon/M
+Anaheim/M
+Analects/M
+Ananias/M
+Anasazi/M
+Anastasia/M
+Anatole/M
+Anatolia/M
+Anatolian/M
+Anaxagoras/M
+Anchorage/M
+Andalusia/M
+Andalusian/M
+Andaman/M
+Andean/M
+Andersen/M
+Anderson/M
+Andes/M
+Andorra/M
+Andorran/SM
+Andre/MS
+Andrea/M
+Andrei/M
+Andres/M
+Andretti/M
+Andrew/SM
+Andrews/M
+Andrianampoinimerina/M
+Android/M
+Andromache/M
+Andromeda/M
+Andropov/M
+Andy/M
+Angara/M
+Angel/M
+Angela/M
+Angeles/M
+Angelia/M
+Angelica/M
+Angelico/M
+Angelina/M
+Angeline/M
+Angelique/M
+Angelita/M
+Angelo/M
+Angelou/M
+Angevin/M
+Angie/M
+Angkor/M
+Angle/MS
+Anglia/M
+Anglican/SM
+Anglicanism/MS
+Anglicism/MS
+Anglicization
+Anglicize
+Anglo/M
+Anglophile/M
+Anglophobe
+Angola/M
+Angolan/MS
+Angora/SM
+Angstrom/M
+Anguilla/M
+Angus/M
+Anhui/M
+Aniakchak/M
+Anibal/M
+Anita/M
+Ankara/M
+Ann/M
+Anna/M
+Annabel/M
+Annabelle/M
+Annam/M
+Annapolis/M
+Annapurna/M
+Anne/M
+Annette/M
+Annie/M
+Annmarie/M
+Annunciation/SM
+Anouilh/M
+Anselm/M
+Anselmo/M
+Anshan/M
+Antaeus/M
+Antananarivo/M
+Antarctic/M
+Antarctica/M
+Antares/M
+Anthony/M
+Anthropocene
+Antichrist/SM
+Antietam/M
+Antifa/M
+Antigone/M
+Antigua/M
+Antillean
+Antilles/M
+Antioch/M
+Antipas/M
+Antipodes
+Antofagasta/M
+Antoine/M
+Antoinette/M
+Anton/M
+Antone/M
+Antonia/M
+Antoninus/M
+Antonio/M
+Antonius/M
+Antony/M
+Antwan/M
+Antwerp/M
+Anubis/M
+Anzac/M
+Apache/SM
+Apalachicola/M
+Apatosaurus
+Apennines/M
+Aphrodite/M
+Apia/M
+Apocalypse/M
+Apocrypha/M
+Apollinaire/M
+Apollo/SM
+Apollonian/M
+Apostle/M
+Appalachia/M
+Appalachian/SM
+Appalachians/M
+Appaloosa/SM
+Apple/M
+Appleseed/M
+Appleton/M
+Appomattox/M
+Apr/M
+April/MS
+Apuleius/M
+Aquafresh/M
+Aquarian
+Aquarius/MS
+Aquila/M
+Aquinas/M
+Aquino/M
+Aquitaine/M
+Ar/M
+Ara/M
+Arab/SM
+Arabia/M
+Arabian/MS
+Arabic/M
+Arabist/MS
+Araby/M
+Araceli/M
+Arafat/M
+Aragon
+Araguaya/M
+Aral/M
+Aramaic/M
+Aramco/M
+Arapaho/MS
+Arapahoes
+Ararat/M
+Araucanian/M
+Arawak/M
+Arawakan/M
+Arbitron/M
+Arcadia/M
+Arcadian/M
+Archean/M
+Archibald/M
+Archie/M
+Archimedes/M
+Arctic/M
+Arcturus/M
+Ardabil
+Arden/M
+Arduino/M
+Arequipa/M
+Ares/M
+Argentina/M
+Argentine/M
+Argentinean
+Argentinian/MS
+Argo/SM
+Argonaut/MS
+Argonne/M
+Argos/M
+Argus/M
+Ariadne/M
+Arianism/M
+Ariel/M
+Aries/MS
+Ariosto/M
+Aristarchus/M
+Aristides/M
+Aristophanes/M
+Aristotelian/M
+Aristotle/M
+Arius/M
+Ariz
+Arizona/M
+Arizonan/SM
+Arizonian/MS
+Arjuna/M
+Ark/M
+Arkansan/MS
+Arkansas/M
+Arkhangelsk/M
+Arkwright/M
+Arlene/M
+Arline/M
+Arlington/M
+Armageddon/SM
+Armagnac/M
+Armand/M
+Armando/M
+Armani/M
+Armenia/M
+Armenian/SM
+Armidale/M
+Arminius/M
+Armonk/M
+Armour/M
+Armstrong/M
+Arneb/M
+Arnhem/M
+Arno/M
+Arnold/M
+Arnulfo/M
+Aron/M
+Arrhenius/M
+Arron/M
+Art/M
+Artaxerxes/M
+Artemis/M
+Arthur/M
+Arthurian/M
+Artie/M
+Arturo/M
+Aruba/M
+Aryan/MS
+As/M
+Asama/M
+Ascella/M
+Ascension/M
+Asgard/M
+Ashanti/M
+Ashcroft/M
+Ashe/M
+Ashgabat
+Ashikaga/M
+Ashkenazim/M
+Ashkhabad/M
+Ashlee/M
+Ashley/M
+Ashmolean/M
+Ashurbanipal/M
+Asia/M
+Asiago
+Asian/MS
+Asiatic/SM
+Asimov/M
+Asmara/M
+Asoka/M
+Aspell/M
+Aspen/M
+Asperger/M
+Aspidiske/M
+Asquith/M
+Assad/M
+Assam/M
+Assamese/M
+Assembly
+Assisi/M
+Assyria/M
+Assyrian/SM
+Astaire/M
+Astana/M
+Astarte/M
+Aston/M
+Astor/M
+Astoria/M
+Astrakhan/M
+AstroTurf/M
+Asturias/M
+Asuncion/M
+Aswan/M
+At/SM
+Atacama/M
+Atahualpa/M
+Atalanta/M
+Atari/M
+Ataturk/M
+Athabasca/M
+Athabaskan/SM
+Athanasius
+Athena/M
+Athene/M
+Athenian/SM
+Athens/M
+Atkins/M
+Atkinson/M
+Atlanta/M
+Atlantes
+Atlantic/M
+Atlantis/M
+Atlas/MS
+Atman/M
+Atonement
+Atreus/M
+Atria/M
+Atropos/M
+Attic/M
+Attica/M
+Attila/M
+Attlee/M
+Attn
+Attucks/M
+Atwood/M
+Au/M
+Aubrey/M
+Auckland/M
+Auden/M
+Audi/M
+Audion/M
+Audra/M
+Audrey/M
+Audubon/M
+Aug/M
+Augean/M
+Augsburg/M
+August/MS
+Augusta/M
+Augustan/M
+Augustine/M
+Augustinian/MS
+Augustus/M
+Aurangzeb/M
+Aurelia/M
+Aurelio/M
+Aurelius/M
+Aureomycin/M
+Auriga/M
+Aurora/M
+Auschwitz/M
+Aussie/MS
+Austen/M
+Austerlitz/M
+Austin/MS
+Australasia/M
+Australasian
+Australia/M
+Australian/SM
+Australoid/M
+Australopithecus/M
+Austria/M
+Austrian/SM
+Austronesian/M
+Autumn/M
+Av/M
+Ava/M
+Avalon/M
+Ave/M
+Aventine/M
+Avernus/M
+Averroes/M
+Avery/M
+Avesta/M
+Avicenna/M
+Avignon/M
+Avila/M
+Avior/M
+Avis/M
+Avogadro/M
+Avon/M
+Axis
+Axum/M
+Ayala/M
+Ayers/M
+Aymara/M
+Ayrshire/M
+Ayurveda/M
+Ayyubid/M
+Azana/M
+Azania/M
+Azazel/M
+Azerbaijan/M
+Azerbaijani/MS
+Azores/M
+Azov/M
+Aztec/SM
+Aztecan/M
+Aztlan/M
+B/MNT
+BA/M
+BASIC/SM
+BB/M
+BBB/M
+BBC/M
+BBQ
+BBS
+BBSes
+BC/M
+BFF
+BIA
+BIOS
+BITNET
+BLT/SM
+BM/M
+BMW/M
+BO
+BP/M
+BPOE
+BR
+BS/M
+BSA
+BSD/SM
+BTU
+BTW
+BYOB
+Ba/M
+Baal/SM
+Baath/M
+Baathist/M
+Babbage/M
+Babbitt/M
+Babel/MS
+Babylon/MS
+Babylonia/M
+Babylonian/SM
+Bacall/M
+Bacardi/M
+Bacchanalia/M
+Bacchic
+Bacchus/M
+Bach/M
+Backus/M
+Bacon/M
+Bactria/M
+Baden/M
+Badlands/M
+Baedeker/MS
+Baeria/M
+Baeyer/M
+Baez/M
+Baffin/M
+Baggies/M
+Baghdad/M
+Baguio/M
+Baha'i/M
+Baha'ullah/M
+Bahama/SM
+Bahamanian
+Bahamas/M
+Bahamian/MS
+Bahia/M
+Bahrain/M
+Baidu/M
+Baikal/M
+Bailey/M
+Baird/M
+Bairnsdale/M
+Bakelite/M
+Baker/M
+Bakersfield/M
+Baku/M
+Bakunin/M
+Balanchine/M
+Balaton/M
+Balboa/M
+Balder/M
+Baldwin/SM
+Balearic/M
+Balfour/M
+Bali/M
+Balinese/M
+Balkan/MS
+Balkans/M
+Balkhash/M
+Ball/M
+Ballarat/M
+Ballard/M
+Ballina/M
+Balthazar/M
+Baltic/M
+Baltimore/M
+Baluchistan/M
+Balzac/M
+Bamako/M
+Bambi/M
+Banach/M
+Bancroft/M
+Bandung/M
+Bangalore/M
+Bangkok/M
+Bangladesh/M
+Bangladeshi/SM
+Bangor/M
+Bangui/M
+Banjarmasin/M
+Banjul/M
+Banks/M
+Banneker/M
+Bannister/M
+Banting/M
+Bantu/MS
+Baotou/M
+Baptist/SM
+Baptiste/M
+Barabbas/M
+Barack/M
+Barbadian/SM
+Barbados/M
+Barbara/M
+Barbarella/M
+Barbarossa/M
+Barbary/M
+Barber/M
+Barbie/M
+Barbour/M
+Barbra/M
+Barbuda/M
+Barcelona/M
+Barclay/SM
+Barclays/M
+Bardeen/M
+Barents/M
+Barker/M
+Barkley/M
+Barlow/M
+Barnabas/M
+Barnaby/M
+Barnard/M
+Barnaul/M
+Barnes/M
+Barnett/M
+Barney/M
+Barnum/M
+Baroda/M
+Barquisimeto/M
+Barr/M
+Barranquilla/M
+Barrera/M
+Barrett/M
+Barrie/M
+Barron/M
+Barry/M
+Barrymore/M
+Bart/M
+Barth/MS
+Bartholdi/M
+Bartholomew/M
+Bartlett/M
+Bartok/M
+Barton/M
+Baruch/M
+Baryshnikov/M
+Basel/M
+Basho/M
+Basie/M
+Basil/M
+Basque/MS
+Basra/M
+Bass/M
+Basseterre/M
+Bastille/M
+Basutoland/M
+Bataan/M
+Bates/M
+Bathsheba/M
+Bathurst/M
+Batista/M
+Batman/M
+Battle/M
+Batu/M
+Baudelaire/M
+Baudouin/M
+Baudrillard/M
+Bauer/M
+Bauhaus/M
+Baum/M
+Bavaria/M
+Bavarian/M
+Baxter/M
+Bayamon
+Bayer/M
+Bayes/M
+Bayesian/M
+Bayeux/M
+Baylor/M
+Bayonne/M
+Bayreuth/M
+Baywatch/M
+Be/MH
+Beach/M
+Beadle/M
+Bean/M
+Beard/M
+Beardmore/M
+Beardsley/M
+Bearnaise/M
+Beasley/M
+Beatlemania/M
+Beatles/M
+Beatrice/M
+Beatrix/M
+Beatriz/M
+Beatty/M
+Beau/M
+Beaufort/M
+Beaujolais/M
+Beaumarchais/M
+Beaumont/M
+Beauregard/M
+Beauvoir/M
+Bechtel/M
+Beck/MR
+Becker/M
+Becket/M
+Beckett/M
+Beckman
+Becky/M
+Becquerel/M
+Bede/M
+Bedouin/SM
+Beebe/M
+Beecher/M
+Beefaroni/M
+Beelzebub/M
+Beerbohm/M
+Beethoven/M
+Beeton/M
+Begin/M
+Behan/M
+Behring/M
+Beiderbecke/M
+Beijing/M
+Beirut/M
+Bekesy/M
+Bela/M
+Belarus/M
+Belarusian
+Belau/M
+Belem/M
+Belfast/M
+Belg
+Belgian/SM
+Belgium/M
+Belgrade/M
+Belinda/M
+Belize/M
+Bell/M
+Bella/M
+Bellamy/M
+Bellatrix/M
+Belleek/M
+Bellini/M
+Bellow/M
+Belmont/M
+Belmopan/M
+Belorussian/MS
+Belshazzar/M
+Beltane/M
+Belushi/M
+Ben/M
+Benacerraf/M
+Benchley/M
+Bender/M
+Bendictus
+Bendigo/M
+Bendix/M
+Benedict/M
+Benedictine/MS
+Benelux/M
+Benet/M
+Benetton/M
+Bengal/SM
+Bengali/M
+Benghazi/M
+Benin/M
+Beninese/M
+Benita/M
+Benito/M
+Benjamin/M
+Bennett/M
+Bennie/M
+Benny/M
+Benson/M
+Bentham/M
+Bentley/M
+Benton/M
+Benz/M
+Benzedrine/M
+Beowulf/M
+Berber/SM
+Berenice/M
+Beretta/M
+Berg/MNR
+Bergen/M
+Berger/M
+Bergerac/M
+Bergman/M
+Bergson/M
+Bering/M
+Berkeley/M
+Berkshire/SM
+Berkshires/M
+Berle/M
+Berlin/SZMR
+Berliner/M
+Berlioz/M
+Berlitz/M
+Bermuda/SM
+Bermudan/SM
+Bermudian/SM
+Bern/M
+Bernadette/M
+Bernadine/M
+Bernanke/M
+Bernard/M
+Bernardo/M
+Bernays/M
+Bernbach/M
+Bernese
+Bernhardt/M
+Bernice/M
+Bernie/M
+Bernini/M
+Bernoulli/M
+Bernstein/M
+Berra/M
+Berry/M
+Bert/M
+Berta/M
+Bertelsmann/M
+Bertha/M
+Bertie/M
+Bertillon/M
+Bertram/M
+Bertrand/M
+Beryl/M
+Berzelius/M
+Bess/M
+Bessel/M
+Bessemer/M
+Bessie/M
+Best/M
+Betelgeuse/M
+Beth/M
+Bethany/M
+Bethe/M
+Bethesda/M
+Bethlehem/M
+Bethune/M
+Betsy/M
+Bette/M
+Bettie/M
+Betty/M
+Bettye/M
+Beulah/M
+Beveridge
+Beverley/M
+Beverly/M
+Bharat/M
+Bhopal/M
+Bhutan/M
+Bhutanese/M
+Bhutto/M
+Bi/M
+Bialystok/M
+Bianca/M
+Bib
+Bible/MS
+Bic/M
+Biddle/M
+Biden/M
+Bierce/M
+BigQuery/M
+Bigfoot/M
+Biggles/M
+Biko/M
+Bilbao/M
+Bilbo/M
+Bill/MJ
+Billie/M
+Billings/M
+Billy/M
+Bimini/M
+Biogen/M
+Bioko/M
+Bird/M
+Birdseye/M
+Birkenstock/M
+Birmingham/M
+Biro/M
+Biscay/M
+Biscayne/M
+Bishkek/M
+Bishop/M
+Bismarck/M
+Bismark/M
+Bisquick/M
+Bissau/M
+BitTorrent/M
+Bizet/M
+Bjerknes/M
+Bjork/M
+Bk/M
+BlackBerry/M
+Blackbeard/M
+Blackburn/M
+Blackfeet/M
+Blackfoot/M
+Blackpool/M
+Blackshirt/M
+Blackstone/M
+Blackwell/M
+Blaine/M
+Blair/M
+Blake/M
+Blanca/M
+Blanchard/M
+Blanche/M
+Blankenship/M
+Blantyre/M
+Blatz/M
+Blavatsky/M
+Blenheim/M
+Blevins/M
+Bligh/M
+Bloch/M
+Blockbuster/M
+Bloemfontein/M
+Blondel/M
+Blondie/M
+Bloom/MR
+Bloomer/M
+Bloomfield/M
+Bloomingdale/M
+Bloomsbury/M
+Blu
+Blucher/M
+Bluebeard/M
+Bluetooth/M
+Blvd
+Blythe/M
+Boadicea
+Boas/M
+Bob/M
+Bobbi/M
+Bobbie/M
+Bobbitt/M
+Bobby/M
+Boccaccio/M
+Bodhidharma/M
+Bodhisattva/M
+Bodleian
+Boeing/M
+Boeotia/M
+Boeotian/M
+Boer/SM
+Boethius/M
+Bogart/M
+Bogota/M
+Bohemia/M
+Bohemian/SM
+Bohr/M
+Boise/M
+Bojangles/M
+Boleyn/M
+Bolivar/M
+Bolivia/M
+Bolivian/MS
+Bollywood/M
+Bologna/M
+Bolshevik/SM
+Bolsheviki
+Bolshevism/M
+Bolshevist/M
+Bolshoi/M
+Bolton/M
+Boltzmann/M
+Bomaderry/M
+Bombay/M
+Bonaparte/M
+Bonaventure/M
+Bond/M
+Bonhoeffer/M
+Boniface/M
+Bonita/M
+Bonn/MR
+Bonner/M
+Bonneville/M
+Bonnie/M
+Bono/M
+Booker/M
+Boole/M
+Boolean/M
+Boone/M
+Bootes/M
+Booth/M
+Bordeaux/M
+Borden/M
+Bordon/M
+Boreas/M
+Borg/SM
+Borges/M
+Borgia/M
+Borglum/M
+Boris/M
+Bork/M
+Borlaug/M
+Born/M
+Borneo/M
+Borobudur/M
+Borodin/M
+Boru/M
+Bosch/M
+Bose/M
+Bosnia/M
+Bosnian
+Bosporus/M
+Boston/MS
+Bostonian/M
+Boswell/M
+Botha
+Botox
+Botswana/M
+Botticelli/M
+Boulder/M
+Boulez/M
+Bourbaki/M
+Bourbon/SM
+Bournemouth/M
+Bovary/M
+Bowditch/M
+Bowell/M
+Bowen/M
+Bowers/M
+Bowery/M
+Bowie/M
+Bowman/M
+Bowral/M
+Boyd/M
+Boyer/M
+Boyle/M
+Br/MT
+Brad/MY
+Bradbury/M
+Braddock/M
+Bradford/M
+Bradley/M
+Bradly/M
+Bradshaw/M
+Bradstreet/M
+Brady/M
+Bragg/M
+Brahe/M
+Brahma/MS
+Brahmagupta/M
+Brahman/MS
+Brahmani
+Brahmanism/SM
+Brahmaputra/M
+Brahms/M
+Braille/MS
+Brain/M
+Brampton/M
+Bran/M
+Branch/M
+Brandeis/M
+Branden/M
+Brandenburg/M
+Brandi/M
+Brandie/M
+Brando/M
+Brandon/M
+Brandt/M
+Brandy/M
+Brant/M
+Braque/M
+Brasilia/M
+Bratislava/M
+Brattain/M
+Bray/M
+Brazil/M
+Brazilian/MS
+Brazos/M
+Brazzaville/M
+Breakspear/M
+Breathalyzer
+Brecht/M
+Breckenridge/M
+Bremen/M
+Brenda/M
+Brendan/M
+Brennan/M
+Brenner/M
+Brent/M
+Brenton/M
+Brest/M
+Bret/M
+Breton/M
+Brett/M
+Brewer/M
+Brewster/M
+Brexit
+Brezhnev/M
+Brian/M
+Briana/M
+Brianna/M
+Brice/M
+Bridalveil/M
+Bridgeport/M
+Bridger/M
+Bridges/M
+Bridget/M
+Bridgetown/M
+Bridgett/M
+Bridgette/M
+Bridgman/M
+Brie/SM
+Brigadoon/M
+Briggs/M
+Brigham/M
+Bright/M
+Brighton/M
+Brigid/M
+Brigitte/M
+Brillo/M
+Brillouin
+Brinkley/M
+Brisbane/M
+Bristol/M
+Brit/SM
+Britain/M
+Britannia/M
+Britannic/M
+Britannica/M
+Briticism/SM
+British/MRZ
+Britisher/M
+Britney/M
+Briton/MS
+Britt/MN
+Brittany/SM
+Britten/M
+Brittney/M
+Brno/M
+Broadway/SM
+Brobdingnag/M
+Brobdingnagian/M
+Brock/M
+Brokaw/M
+Bronson/M
+Bronte/M
+Brontosaurus
+Bronx/M
+Brooke/MS
+Brooklyn/M
+Brooks/M
+Broome/M
+Bros
+Brown/MG
+Browne/M
+Brownian/M
+Brownie/S
+Browning/M
+Brownshirt/M
+Brownsville/M
+Brubeck/M
+Bruce/M
+Bruckner/M
+Bruegel
+Brummel/M
+Brunei/M
+Bruneian/MS
+Brunelleschi/M
+Brunhilde/M
+Bruno/M
+Brunswick/M
+Brussels/M
+Brut/M
+Brutus/M
+Bryan/M
+Bryant/M
+Bryce/M
+Brynner/M
+Bryon/M
+Brzezinski/M
+Btu/M
+Buber/M
+Buchanan/M
+Bucharest/M
+Buchenwald/M
+Buchwald/M
+Buck/M
+Buckingham/M
+Buckley/M
+Buckner/M
+Bud/M
+Budapest/M
+Buddha/SM
+Buddhism/SM
+Buddhist/SM
+Buddy/M
+Budweiser/M
+Buffalo/M
+Buffy/M
+Buford/M
+Bugatti/M
+Bugzilla/M
+Buick/M
+Bujumbura/M
+Bukhara/M
+Bukharin/M
+Bulawayo/M
+Bulfinch/M
+Bulganin/M
+Bulgar/M
+Bulgari/M
+Bulgaria/M
+Bulgarian/SM
+Bullock/M
+Bullwinkle/M
+Bultmann/M
+Bumppo/M
+Bunbury/M
+Bunche/M
+Bundaberg/M
+Bundesbank/M
+Bundestag/M
+Bunin/M
+Bunker/M
+Bunsen/M
+Bunuel/M
+Bunyan/M
+Burbank/M
+Burberry/M
+Burch/M
+Burger/M
+Burgess/M
+Burgoyne/M
+Burgundian/M
+Burgundy/SM
+Burke/M
+Burks/M
+Burl/M
+Burlington/M
+Burma/M
+Burmese/M
+Burnett/M
+Burnie/M
+Burns/M
+Burnside/M
+Burr/M
+Burris/M
+Burroughs/M
+Bursa/M
+Burt/M
+Burton/M
+Burundi/M
+Burundian/MS
+Busch/M
+Bush/M
+Bushido/M
+Bushnell/M
+Busselton/M
+Butler/M
+Butterfingers/M
+Buxtehude/M
+Byblos/M
+Byers/M
+Byrd/M
+Byron/M
+Byronic/M
+Byzantine/MS
+Byzantium/M
+C/SM
+CA
+CAD/M
+CAI
+CAM
+CAP
+CARE
+CATV
+CB
+CBC/M
+CBS/M
+CCTV
+CCU
+CD/SM
+CDC
+CDT
+CEO/M
+CF
+CFC/M
+CFO
+CGI
+CIA/M
+CID
+CNN/M
+CNS/M
+CO/M
+COBOL/SM
+COD
+COL
+COLA
+COVID
+CPA/M
+CPI/M
+CPO
+CPR/M
+CPU/M
+CRT/SM
+CSS/M
+CST/M
+CT/M
+CV
+CVS/M
+CZ
+Ca/M
+Cabernet/M
+Cabot/M
+Cabral/M
+Cabrera/M
+Cabrini/M
+Cadette
+Cadillac/M
+Cadiz/M
+Caedmon/M
+Caerphilly/M
+Caesar/SM
+Cage/M
+Cagney/M
+Cahokia/M
+Caiaphas/M
+Cain/SM
+Cairns/M
+Cairo/M
+Caitlin/M
+Cajun/MS
+Cal/M
+Calais/M
+Calcutta/M
+Calder/M
+Calderon/M
+Caldwell/M
+Caleb/M
+Caledonia/M
+Calgary/M
+Calhoun/M
+Cali/M
+Caliban/M
+Calif
+California/M
+Californian/SM
+Caligula/M
+Callaghan/M
+Callahan/M
+Callao/M
+Callas/M
+Callie/M
+Calliope/M
+Callisto/M
+Caloocan/M
+Calvary/M
+Calvert/M
+Calvin/M
+Calvinism/MS
+Calvinist/MS
+Calvinistic
+Camacho/M
+Cambodia/M
+Cambodian/SM
+Cambrian/SM
+Cambridge/M
+Camden/M
+Camel/M
+Camelopardalis/M
+Camelot/MS
+Camembert/MS
+Cameron/M
+Cameroon/SM
+Cameroonian/MS
+Camilla/M
+Camille/M
+Camoens/M
+Campanella/M
+Campbell/M
+Campinas/M
+Campos/M
+Camry/M
+Camus/M
+Can/M
+Canaan/M
+Canaanite/MS
+Canad
+Canada/M
+Canadian/SM
+Canadianism
+Canaletto/M
+Canaries/M
+Canaveral/M
+Canberra/M
+Cancer/SM
+Cancun/M
+Candace/M
+Candice/M
+Candide/M
+Candy/M
+Cannes/M
+Cannon/M
+Canon/M
+Canopus/M
+Cantabrigian/M
+Canterbury/M
+Canton/M
+Cantonese/M
+Cantor/M
+Cantrell/M
+Cantu/M
+Canute/M
+Capablanca/M
+Capek/M
+Capella/M
+Capet/M
+Capetian/M
+Capetown/M
+Caph/M
+Capistrano/M
+Capitol/SM
+Capitoline/M
+Capone/M
+Capote/M
+Capra/M
+Capri/M
+Capricorn/MS
+Capt
+Capuchin/M
+Capulet/M
+Cara/M
+Caracalla/M
+Caracas/M
+Caravaggio/M
+Carboloy/M
+Carboniferous/M
+Carborundum/M
+Cardenas/M
+Cardiff/M
+Cardin/M
+Cardozo/M
+Carey/M
+Carib/MS
+Caribbean/MS
+Carina/M
+Carissa/M
+Carl/M
+Carla/M
+Carlene/M
+Carlin/M
+Carlo/MS
+Carlos/M
+Carlsbad/M
+Carlson/M
+Carlton/M
+Carly/M
+Carlyle/M
+Carmela/M
+Carmella/M
+Carmelo/M
+Carmen/M
+Carmichael/M
+Carmine/M
+Carnap/M
+Carnation/M
+Carnegie/M
+Carney/M
+Carnot/M
+Carol/M
+Carole/M
+Carolina/M
+Caroline/M
+Carolingian/M
+Carolinian/M
+Carolyn/M
+Carpathian/SM
+Carpathians/M
+Carpenter/M
+Carr/M
+Carranza/M
+Carrie/RM
+Carrier/M
+Carrillo/M
+Carroll/M
+Carson/M
+Carter/M
+Cartesian/M
+Carthage/M
+Carthaginian/MS
+Cartier/M
+Cartwright/M
+Caruso/M
+Carver/M
+Cary/M
+Casablanca/M
+Casals/M
+Casandra/M
+Casanova/SM
+Cascades/M
+Case/M
+Casey/M
+Cash/M
+Casio/M
+Caspar/M
+Caspian/M
+Cassandra/SM
+Cassatt/M
+Cassidy/M
+Cassie/M
+Cassiopeia/M
+Cassius/M
+Castaneda/M
+Castilian
+Castillo/M
+Castlereagh/M
+Castor/M
+Castries/M
+Castro/M
+Catalan/SM
+Catalina/M
+Catalonia/M
+Catawba/M
+Caterpillar/M
+Cathay/M
+Cather/M
+Catherine/M
+Cathleen/M
+Catholic/MS
+Catholicism/MS
+Cathryn/M
+Cathy/M
+Catiline/M
+Cato/M
+Catskill/SM
+Catskills/M
+Catt/M
+Catullus/M
+Caucasian/MS
+Caucasoid
+Caucasus/M
+Cauchy/M
+Cavendish/M
+Cavour/M
+Caxton/M
+Cayenne/M
+Cayman/M
+Cayuga/SM
+Cayuse
+Cb
+Cd/M
+Ce/M
+Ceausescu/M
+Cebu/M
+Cebuano/M
+Cecelia/M
+Cecil/M
+Cecile/M
+Cecilia/M
+Cecily/M
+Cedric/M
+Celeste/M
+Celgene/M
+Celia/M
+Celina/M
+Cellini/M
+Celsius/M
+Celt/SM
+Celtic/SM
+Cenozoic/M
+Centaurus/M
+Centigrade
+Central
+Cepheid/M
+Cepheus/M
+Cerberus/M
+Cerenkov/M
+Ceres/M
+Cerf/M
+Cervantes/M
+Cesar/M
+Cesarean/M
+Cessna/M
+Cetus/M
+Ceylon/M
+Ceylonese
+Cezanne/M
+Cf/M
+Ch'in/M
+Ch/N
+Chablis/M
+Chad/M
+Chadian/MS
+Chadwick/M
+Chagall/M
+Chaitanya/M
+Chaitin/M
+Chaldea
+Chaldean/M
+Challenger/M
+Chalmers
+Chamberlain/M
+Chambers/M
+Champlain/M
+Champollion/M
+Chan/M
+Chance/M
+Chancellorsville/M
+Chandigarh/M
+Chandler/M
+Chandon/M
+Chandra/M
+Chandragupta/M
+Chandrasekhar/M
+Chanel/M
+Chaney/M
+Chang/M
+Changchun/M
+Changsha/M
+Chantilly/M
+Chaplin/M
+Chaplinesque
+Chapman/M
+Chappaquiddick/M
+Chapultepec/M
+Charbray/M
+Chardonnay/M
+Charity/M
+Charlemagne/M
+Charlene/M
+Charles/M
+Charleston/MS
+Charley/M
+Charlie/M
+Charlotte/M
+Charlottetown/M
+Charmaine/M
+Charmin/M
+Charolais/M
+Charon/M
+Chartism/M
+Chartres/M
+Charybdis/M
+Chase/M
+Chasity/M
+Chateaubriand/M
+Chattahoochee/M
+Chattanooga/M
+Chatterley/M
+Chatterton/M
+Chaucer/M
+Chauncey/M
+Chautauqua/M
+Chavez/M
+Chayefsky/M
+Che/M
+Chechen/M
+Chechnya/M
+Cheddar/M
+Cheer/M
+Cheerios/M
+Cheetos/M
+Cheever/M
+Chekhov/M
+Chekhovian
+Chelsea/M
+Chelyabinsk/M
+Chen/M
+Cheney/M
+Chengdu/M
+Chennai/M
+Cheops/M
+Cheri/M
+Cherie/M
+Chernenko/M
+Chernobyl/M
+Chernomyrdin/M
+Cherokee/MS
+Cherry/M
+Cheryl/M
+Chesapeake/M
+Cheshire/M
+Chester/M
+Chesterfield/M
+Chesterton/M
+Chevalier/M
+Cheviot/M
+Chevrolet/M
+Chevron/M
+Chevy/M
+Cheyenne/SM
+Chi/M
+Chianti/MS
+Chiba/M
+Chibcha/M
+Chicago/M
+Chicagoan/M
+Chicana/M
+Chicano/M
+Chickasaw/MS
+Chiclets/M
+Chihuahua/MS
+Chile/M
+Chilean/MS
+Chimborazo/M
+Chimera/MS
+Chimu/M
+Chin/M
+China/M
+Chinatown/M
+Chinese/M
+Chinook/MS
+Chipewyan/M
+Chippendale/M
+Chippewa/SM
+Chiquita/M
+Chirico/M
+Chisholm/M
+Chisinau/M
+Chittagong/M
+Chivas/M
+Chloe/M
+Choctaw/SM
+Chomsky/M
+Chongqing/M
+Chopin/M
+Chopra/M
+Chou/M
+Chretien/M
+Chris/M
+Chrissie/M
+Chrissy/M
+Christ/MS
+Christa/M
+Christchurch/M
+Christendom/MS
+Christensen/M
+Christi/M
+Christian/SM
+Christianise
+Christianity/SM
+Christie/M
+Christina/M
+Christine/M
+Christlike
+Christmas/MS
+Christmastide/MS
+Christmastime/MS
+Christoper/M
+Christopher/M
+Chromebook/MS
+Chronicles
+Chrysler/M
+Chrysostom/M
+Chrystal/M
+Chuck/M
+Chukchi/M
+Chumash/M
+Chung/M
+Church/M
+Churchill/M
+Churriguera/M
+Chuvash/M
+Ci/M
+Cicero/M
+Cid/M
+Cimabue/M
+Cincinnati/M
+Cinderella/MS
+Cindy/M
+CinemaScope/M
+Cinerama/M
+Cipro/M
+Circe/M
+Cisco/M
+Citibank/M
+Citigroup/M
+Citroen/M
+Cl/MV
+Claiborne/M
+Clair/M
+Claire/M
+Clairol/M
+Clancy/M
+Clapeyron/M
+Clapton/M
+Clara/M
+Clare/M
+Clarence/M
+Clarendon/M
+Clarice/M
+Clarissa/M
+Clark/M
+Clarke/M
+Claude/M
+Claudette/M
+Claudia/M
+Claudine/M
+Claudio/M
+Claudius/M
+Claus/M
+Clausewitz/M
+Clausius/M
+Clay/M
+Clayton/M
+Clearasil/M
+Clem/XM
+Clemenceau/M
+Clemens/M
+Clement/MS
+Clementine/M
+Clements/M
+Clemons/M
+Clemson/M
+Cleo/M
+Cleopatra/M
+Cleveland/M
+Cliburn/M
+Cliff/M
+Clifford/M
+Clifton/M
+Cline/M
+Clint/M
+Clinton/M
+Clio/M
+Clive/M
+Clojure/M
+Clorets/M
+Clorox/M
+Closure/M
+Clotho/M
+Clouseau/M
+Clovis/M
+Clyde/M
+Clydesdale/M
+Clytemnestra/M
+Cm/M
+Cmdr
+Co/M
+Cobain/M
+Cobb/M
+Cochabamba/M
+Cochin/M
+Cochise/M
+Cochran/M
+Cockney/M
+Cocteau/M
+Cod
+Cody/M
+Coffey/M
+Coffs
+Cognac/M
+Cohan/M
+Cohen/M
+Coimbatore/M
+Cointreau/M
+Coke/SM
+Col/M
+Colac/M
+Colbert/M
+Colby/M
+Cole/M
+Coleen/M
+Coleman/M
+Coleridge/M
+Colette/M
+Colfax/M
+Colgate/M
+Colin/M
+Colleen/M
+Collier/M
+Collin/SM
+Collins/M
+Colo
+Cologne/M
+Colombia/M
+Colombian/MS
+Colombo/M
+Colon/M
+Coloradan/SM
+Colorado/M
+Coloradoan
+Colosseum/M
+Colt/M
+Coltrane/M
+Columbia/M
+Columbine/M
+Columbus/M
+Com
+Comanche/MS
+Combs/M
+Comdr
+Comintern/M
+Commandment
+Commons/M
+Commonwealth
+Communion/SM
+Communism
+Communist/SM
+Como/M
+Comoran
+Comoros/M
+Compaq/M
+Compton/M
+CompuServe/M
+Comte/M
+Conakry/M
+Conan/M
+Concepcion/M
+Concetta/M
+Concord/SM
+Concorde/M
+Condillac/M
+Condorcet/M
+Conestoga/M
+Confederacy/M
+Confederate/MS
+Confucian/SM
+Confucianism/MS
+Confucius/M
+Cong/M
+Congo/M
+Congolese/M
+Congregational
+Congregationalist/MS
+Congress/MS
+Congressional
+Congreve/M
+Conley/M
+Conn/MR
+Connecticut/M
+Connemara/M
+Conner/M
+Connery/M
+Connie/M
+Connolly/M
+Connors/M
+Conrad/M
+Conrail/M
+Conservative
+Constable/M
+Constance/M
+Constantine/M
+Constantinople/M
+Constitution
+Consuelo/M
+Continent/M
+Continental/M
+Contreras/M
+Conway/M
+Cook/M
+Cooke/M
+Cooley/M
+Coolidge/M
+Cooper/M
+Cooperstown/M
+Cooranbong/M
+Coors/M
+Copacabana/M
+Copeland/M
+Copenhagen/M
+Copernican/M
+Copernicus/M
+Copland/M
+Copley/M
+Copperfield/M
+Coppertone/M
+Coppola/M
+Coptic/M
+Cora/M
+Cordelia/M
+Cordilleras/M
+Cordoba/M
+Corey/M
+Corfu/M
+Corina/M
+Corine/M
+Corinne/M
+Corinth/M
+Corinthian/MS
+Corinthians/M
+Coriolanus/M
+Coriolis/M
+Cork
+Corleone/M
+Cormack/M
+Corneille/M
+Cornelia/M
+Cornelius/M
+Cornell/M
+Corning/M
+Cornish/MS
+Cornwall/M
+Cornwallis/M
+Coronado/M
+Corot/M
+Corp
+Correggio/M
+Corrine/M
+Corsica/M
+Corsican/M
+Cortes/MS
+Cortland/M
+Corvallis/M
+Corvette/M
+Corvus/M
+Cory/M
+Cosby/M
+CosmosDB/M
+Cossack/M
+Costco/M
+Costello/M
+Costner/M
+Cote/M
+Cotonou/M
+Cotopaxi/M
+Cotswold/M
+Cotton/M
+Coulomb/M
+Coulter/M
+Couperin/M
+Courbet/M
+Courtney/M
+Cousteau/M
+Coventry/SM
+Coward/M
+Cowell/M
+Cowley/M
+Cowper/M
+Cox/M
+Coy/M
+Coyle/M
+Cozumel/M
+Cpl
+Cr/MT
+Crabbe/M
+Craft/M
+Craig/M
+Cranach/M
+Crane/M
+Cranmer/M
+Crater/M
+Crawford/M
+Cray/M
+Crayola/M
+Creation/M
+Creator/M
+Crecy/M
+Cree/DSM
+Creek/SM
+Creighton/M
+Creole/SM
+Creon/M
+Cressida/M
+Crest/M
+Cretaceous/M
+Cretan/SM
+Crete/M
+Crichton/M
+Crick/M
+Crimea/M
+Crimean/M
+Criollo/M
+Crisco/M
+Cristina/M
+Croat/SM
+Croatia/M
+Croatian/MS
+Croce/M
+Crockett/M
+Croesus/M
+Cromwell/M
+Cromwellian/M
+Cronin/M
+Cronkite/M
+Cronus/M
+Crookes/M
+Crosby/M
+Cross/M
+Crow/SM
+Crowley/M
+Crucifixion/MS
+Cruikshank/M
+Cruise/M
+Crusades's
+Crusoe/M
+Crux/M
+Cruz/M
+Cryptozoic/M
+Crystal/M
+Csonka/M
+Ct
+Ctesiphon/M
+Cthulhu/M
+Cu/M
+Cuba/M
+Cuban/SM
+Cuchulain/M
+Cuisinart/M
+Culbertson/M
+Cullen/M
+Cumberland/M
+Cummings/M
+Cunard/M
+Cunningham/M
+Cupid/M
+Curacao/M
+Curie/M
+Curitiba/M
+Currier/M
+Curry/RM
+Curt/M
+Curtis/M
+Custer/M
+Cuvier/M
+Cuzco/M
+Cybele/M
+Cyclades/M
+Cyclopes/M
+Cyclops/M
+Cygnus/M
+Cymbeline/M
+Cynthia/M
+Cyprian/M
+Cypriot/MS
+Cyprus/M
+Cyrano/M
+Cyril/M
+Cyrillic/M
+Cyrus/M
+Czech/M
+Czechia/M
+Czechoslovak
+Czechoslovakia/M
+Czechoslovakian/SM
+Czechs
+Czerny/M
+D/M
+DA/M
+DAR
+DAT/M
+DBMS/M
+DC/M
+DD/M
+DDS/M
+DDT/S
+DE
+DEA
+DEC/SD
+DH
+DHS
+DI
+DJ
+DMCA
+DMD/M
+DMZ
+DNA/M
+DOA
+DOB
+DOD
+DOE
+DOS/M
+DOT
+DP/SM
+DPT
+DST
+DTP
+DUI
+DVD/S
+DVR/SM
+DWI
+Dachau/M
+Dacron/SM
+Dada/M
+Dadaism/M
+Daedalus/M
+Daguerre/M
+Dagwood/M
+Dahomey/M
+Daimler/M
+Daisy/M
+Dakar/M
+Dakota/SM
+Dakotan/M
+Dalai
+Dale/M
+Daley/M
+Dali/M
+Dalian/M
+Dallas/M
+Dalmatia/M
+Dalmatian/SM
+Dalton/M
+Damascus/M
+Dame/MN
+Damian/M
+Damien/M
+Damion/M
+Damocles/M
+Damon/M
+Dan/M
+Dana/M
+Danae/M
+Dane/SM
+Danelaw/M
+Dangerfield/M
+Danial/M
+Daniel/SM
+Danielle/M
+Daniels/M
+Danish/M
+Dannie/M
+Danny/M
+Danone/M
+Dante/M
+Danton/M
+Danube/M
+Danubian/M
+Daphne/M
+Darby/M
+Darcy/M
+Dardanelles/M
+Dare/M
+Daren/M
+Darfur/M
+Darin/M
+Dario/M
+Darius/M
+Darjeeling/M
+Darla/M
+Darlene/M
+Darling/M
+Darnell/M
+Darrel/M
+Darrell/M
+Darren/M
+Darrin/M
+Darrow/M
+Darryl/M
+Darth/M
+Dartmoor/M
+Dartmouth/M
+Darvon/M
+Darwin/M
+Darwinian/M
+Darwinism/SM
+Darwinist
+Daryl/M
+Datamation
+Daugherty/M
+Daumier/M
+Davao/M
+Dave/M
+Davenport/M
+David/MS
+Davidson/M
+Davies/M
+Davis/M
+Davy/SM
+Dawes/M
+Dawkins
+Dawn/M
+Dawson/M
+Day/M
+Dayan
+Dayton/M
+DeGeneres/M
+Deadhead/M
+Dean/M
+Deana/M
+Deandre/M
+Deann/M
+Deanna/M
+Deanne/M
+Death/M
+Debbie/M
+Debby/M
+Debian/M
+Debora/M
+Deborah/M
+Debouillet/M
+Debra/M
+Debs/M
+Debussy/M
+Dec/M
+Decalogue/M
+Decatur/M
+Decca/M
+Deccan/M
+December/SM
+Decker/M
+Dedekind/M
+Dee/M
+Deena/M
+Deere/M
+Defoe/M
+Degas/M
+Deidre/M
+Deimos/M
+Deirdre/M
+Deity
+Dejesus/M
+Del/M
+Delacroix/M
+Delacruz/M
+Delaney/M
+Delano/M
+Delaware/MS
+Delawarean/SM
+Delbert/M
+Deleon/M
+Delgado/M
+Delhi/M
+Delia/M
+Delibes/M
+Delicious/M
+Delilah/M
+Delilahs
+Delius/M
+Dell/M
+Della/M
+Delmar/M
+Delmarva/M
+Delmer/M
+Delmonico/M
+Delores/M
+Deloris/M
+Delphi/M
+Delphic/M
+Delphinus/M
+Delta/M
+Dem/G
+Demavend/M
+Demerol/M
+Demeter/M
+Demetrius/M
+Deming/M
+Democrat/SM
+Democratic
+Democritus/M
+Demosthenes/M
+Dempsey/M
+Dena/M
+Denali
+Deneb/M
+Denebola/M
+Deng/M
+Denis/M
+Denise/M
+Denmark/M
+Dennis/M
+Denny/M
+Denver/M
+Deon/M
+Depp/M
+Derby/M
+Derek/M
+Derick/M
+Dermot/M
+Derrick/M
+Derrida/M
+Descartes/M
+Desdemona/M
+Desiree/M
+Desmond/M
+Detroit/M
+Deuteronomy/M
+Devanagari/M
+Devi/M
+Devin/M
+Devon/M
+Devonian/M
+Devonport/M
+Dewar/M
+Dewayne/M
+Dewey/M
+Dewitt/M
+Dexedrine/M
+Dexter/M
+Dhaka/M
+Dhaulagiri/M
+Di/SM
+DiCaprio/M
+DiMaggio/M
+Diaghilev/M
+Dial/M
+Diana/M
+Diane/M
+Diann/M
+Dianna/M
+Dianne/M
+Dias
+Diaspora/MS
+Dick/XM
+Dickens/M
+Dickensian
+Dickerson/M
+Dickinson/M
+Dickson/M
+Dictaphone/SM
+Diderot/M
+Dido/M
+Didrikson/M
+Diefenbaker/M
+Diego/M
+Diem/M
+Dietrich/M
+Dijkstra/M
+Dijon/M
+Dilbert/MS
+Dillard/M
+Dillinger/M
+Dillon/M
+Dina/M
+Dinah/M
+Dino/M
+Diocletian/M
+Diogenes/M
+Dion/M
+Dionne/M
+Dionysian/M
+Dionysus/M
+Diophantine/M
+Dior/M
+Dipper/M
+Dir
+Dirac/M
+Dirichlet/M
+Dirk/M
+Dis/M
+Disney/M
+Disneyland/M
+Disraeli/M
+Divine/M
+Diwali/M
+Dix/M
+Dixie/M
+Dixiecrat/M
+Dixieland/SM
+Dixon/M
+Django/M
+Djibouti/M
+Dmitri/M
+Dnepropetrovsk/M
+Dniester/M
+Dobbin/M
+Doberman/M
+Dobro/M
+Doctor
+Doctorow/M
+Dodge/M
+Dodgson/M
+Dodoma/M
+Dodson/M
+Doe/M
+Doha/M
+Dolby/M
+Dole/M
+Dollie/M
+Dolly/M
+Dolores/M
+Domesday/M
+Domingo/M
+Dominguez/M
+Dominic/M
+Dominica/M
+Dominican/MS
+Dominick/M
+Dominion
+Dominique/M
+Domitian/M
+Don/SM
+Dona/M
+Donahue/M
+Donald/M
+Donaldson/M
+Donatello/M
+Donetsk/M
+Donizetti/M
+Donn/MR
+Donna/M
+Donne/M
+Donnell/M
+Donner/M
+Donnie/M
+Donny/M
+Donovan/M
+Dooley/M
+Doolittle/M
+Doonesbury/M
+Doppler/M
+Dora/M
+Dorcas/M
+Doreen/M
+Dorian/M
+Doric/M
+Doris/M
+Doritos/M
+Dorothea/M
+Dorothy/M
+Dorset/M
+Dorsey/M
+Dorthy/M
+Dortmund/M
+Dostoevsky/M
+Dot/M
+Dotson/M
+Douala/M
+Douay/M
+Doubleday/M
+Doug/M
+Douglas/M
+Douglass/M
+Douro/M
+Dover/M
+Dow/M
+Downs/M
+Downy/M
+Doyle/M
+Dr
+Draco/M
+Draconian/M
+Dracula/M
+Drake/M
+Dramamine/SM
+Drambuie/M
+Drano/M
+Dravidian/M
+Dreiser/M
+Dresden/M
+Drew/M
+Dreyfus/M
+Dristan/M
+Dropbox/M
+Drouin/M
+Drudge/M
+Drupal/M
+Dryden/M
+Dschubba/M
+Du
+DuPont/M
+Duane/M
+Dubai/M
+Dubbo/M
+Dubcek/M
+Dubhe/M
+Dublin/M
+Dubrovnik/M
+Duchamp/M
+Dudley/M
+Duffy/M
+Duisburg/M
+Duke/M
+Dulles/M
+Duluth/M
+Dumas/M
+Dumbledore/M
+Dumbo/M
+Dunant/M
+Dunbar/M
+Duncan/M
+Dundee
+Dunedin/M
+Dunkirk/M
+Dunlap/M
+Dunn/M
+Dunne/M
+Duracell/M
+Duran/M
+Durant/M
+Durante/M
+Durban/M
+Durer/M
+Durex/M
+Durham/MS
+Durkheim/M
+Duroc/M
+Durocher/M
+Duse/M
+Dushanbe/M
+Dusseldorf/M
+Dustbuster/M
+Dustin/M
+Dusty/M
+Dutch/M
+Dutchman/M
+Dutchmen/M
+Dutchwoman
+Duvalier/M
+Dvina/M
+Dvorak/M
+Dwayne/M
+Dwight/M
+Dy/M
+Dyer/M
+Dylan/M
+DynamoDB/M
+Dyson/M
+Dzerzhinsky/M
+Dzungaria/M
+E/SM
+EC
+ECG/M
+ECMAScript/M
+EDP/M
+EDT
+EEC/M
+EEG/M
+EEO
+EEOC
+EFL
+EFT
+EKG/M
+ELF/M
+EM
+EMT
+ENE/M
+EOE
+EPA/M
+ER
+ERA
+ESE/M
+ESL
+ESP/M
+ESPN/M
+ESR
+EST/M
+ET
+ETA
+ETD
+EU
+EULA/S
+Eakins/M
+Earhart/M
+Earl/M
+Earle/M
+Earlene/M
+Earline/M
+Earnest/M
+Earnestine/M
+Earnhardt/M
+Earp/M
+East/SZMR
+Easter/M
+Eastern/R
+Eastman/M
+Eastwood/M
+Eaton/M
+Eben/M
+Ebeneezer/M
+Ebert/M
+Ebola/M
+Ebonics/M
+Ebony/M
+Ebro/M
+Ecclesiastes/M
+Echuca/M
+Eco/M
+Ecstasy
+Ecuador/M
+Ecuadoran/SM
+Ecuadorean
+Ecuadorian/SM
+Ed/MNX
+Edam/SM
+Edda/M
+Eddie/M
+Eddington/M
+Eddy/M
+Eden/M
+Edgar/M
+Edgardo/M
+Edinburgh/M
+Edison/M
+Edith/M
+Edmond/M
+Edmonton/M
+Edmund/M
+Edna/M
+Edsel/M
+Eduardo/M
+Edward/SM
+Edwardian/M
+Edwardo/M
+Edwards/M
+Edwin/M
+Edwina/M
+Eeyore/M
+Effie/M
+Efrain/M
+Efren/M
+Eggo/M
+Egypt/M
+Egyptian/MS
+Egyptology/M
+Ehrenberg/M
+Ehrlich/M
+Eichmann/M
+Eiffel/M
+Eileen/M
+Einstein/MS
+Eire/M
+Eisenhower/M
+Eisenstein/M
+Eisner/M
+Elaine/M
+Elam/M
+Elanor/M
+Elasticsearch/M
+Elastoplast/M
+Elba/M
+Elbe/M
+Elbert/M
+Elbrus/M
+Eldon/M
+Eleanor/M
+Eleazar/M
+Electra/M
+Elena/M
+Elgar/M
+Eli/M
+Elias/M
+Elijah/M
+Elinor/M
+Eliot/M
+Elisa/M
+Elisabeth/M
+Elise/M
+Eliseo/M
+Elisha/M
+Eliza/M
+Elizabeth/M
+Elizabethan/SM
+Ella/M
+Ellen/M
+Ellesmere/M
+Ellie/M
+Ellington/M
+Elliot/M
+Elliott/M
+Ellis/M
+Ellison/M
+Elma/M
+Elmer/M
+Elmo/M
+Elnath/M
+Elnora/M
+Elohim/M
+Eloise/M
+Eloy/M
+Elroy/M
+Elsa/M
+Elsie/M
+Elsinore/M
+Eltanin/M
+Elton/M
+Elul/M
+Elva/M
+Elvia/M
+Elvin/M
+Elvira/M
+Elvis/M
+Elway/M
+Elwood/M
+Elysee/M
+Elysian/M
+Elysium/SM
+Emacs/M
+Emanuel/M
+Emerald/M
+Emerson/M
+Emery/M
+Emil/M
+Emile/M
+Emilia/M
+Emilio/M
+Emily/M
+Eminem/M
+Eminence
+Emma/M
+Emmanuel/M
+Emmett/M
+Emmy/M
+Emory/M
+Encarta/M
+Ender/SM
+Endymion/M
+Eng/M
+Engels/M
+England/M
+English/MRS
+Englishman/M
+Englishmen/M
+Englishwoman/M
+Englishwomen/M
+Enid/M
+Enif/M
+Eniwetok/M
+Enkidu/M
+Enoch/M
+Enos/M
+Enrico/M
+Enrique/M
+Enron/M
+Enterprise/M
+Eocene/M
+Epcot/M
+Ephesian/MS
+Ephesus/M
+Ephraim/M
+Epictetus/M
+Epicurean/M
+Epicurus/M
+Epimethius/M
+Epiphany/SM
+Episcopal
+Episcopalian/MS
+Epistle
+Epsom/M
+Epson/M
+Epstein/M
+Equuleus/M
+Er/M
+Erasmus/M
+Erato/M
+Eratosthenes/M
+Erebus/M
+Erector/M
+Erewhon/M
+Erhard/M
+Eric/M
+Erica/M
+Erich/M
+Erick/M
+Ericka/M
+Erickson/M
+Eridanus/M
+Erie/M
+Erik/M
+Erika/M
+Erin/M
+Eris/MS
+Eritrea/M
+Eritrean/SM
+Erlang/M
+Erlenmeyer/M
+Erma/M
+Erna/M
+Ernest/M
+Ernestine/M
+Ernesto/M
+Ernie/M
+Ernst/M
+Eros/MS
+Errol/M
+Erse/M
+ErvIn/M
+Erwin/M
+Esau/M
+Escher/M
+Escherichia/M
+Escondido
+Eskimo/MS
+Esky/SM
+Esmeralda/M
+Esperance/M
+Esperanto/M
+Esperanza/M
+Espinoza/M
+Esq/M
+Esquire/MS
+Essen/M
+Essene/M
+Essequibo/M
+Essex/M
+Essie/M
+Establishment
+Esteban/M
+Estela/M
+Estella/M
+Estelle/M
+Ester/M
+Esterhazy/M
+Estes/M
+Esther/M
+Estonia/M
+Estonian/SM
+Estrada/M
+Ethan/M
+Ethel/M
+Ethelred/M
+Ethernet/M
+Ethiopia/M
+Ethiopian/SM
+Etna/M
+Eton/M
+Etruria/M
+Etruscan/M
+Etta/M
+Eu/M
+Eucharist/MS
+Eucharistic
+Euclid/M
+Eugene/M
+Eugenia/M
+Eugenie/M
+Eugenio/M
+Eula/M
+Euler/M
+Eumenides/M
+Eunice/M
+Euphrates/M
+Eur
+Eurasia/M
+Eurasian/MS
+Euripides/M
+Eurodollar/SM
+Europa/M
+Europe/M
+European/MS
+Eurydice/M
+Eustachian/M
+Euterpe/M
+Eva/M
+Evan/SM
+Evangelical
+Evangelina/M
+Evangeline/M
+Evangelist/M
+Evans/M
+Evansville/M
+Eve/M
+Evelyn/M
+Evenki/M
+EverReady/M
+Everest/M
+Everett/M
+Everette/M
+Everglades/M
+Evert/M
+Evian/M
+Evita/M
+Ewing/M
+Excalibur/M
+Excedrin/M
+Excellency/SM
+Exchequer
+Exercycle/M
+Exocet/M
+Exodus/M
+Exxon/M
+Eyck/M
+Eyre/M
+Eysenck/M
+Ezekiel/M
+Ezra/M
+F/MD
+FAA
+FAQ/SM
+FBI/M
+FCC
+FD
+FDA
+FDIC/M
+FDR/M
+FHA/M
+FICA/M
+FIFO
+FL
+FM/SM
+FNMA/M
+FOFL
+FORTRAN/M
+FPO
+FSF/M
+FSLIC
+FTC
+FUD/S
+FWD
+FWIW
+FY
+FYI
+Faberge/M
+Fabian/MS
+Facebook/M
+Faeroe/M
+Fafnir/M
+Fagin/M
+Fahd/M
+Fahrenheit/M
+Fairbanks/M
+Faisal/M
+Faisalabad/M
+Faith/M
+Falasha/M
+Falkland/SM
+Falklands/M
+Fallopian/M
+Falstaff/M
+Falwell/M
+Fannie/M
+Fanny/M
+Faraday/M
+Fargo/M
+Farley/M
+Farmer/M
+Farragut/M
+Farrakhan/M
+Farrell/M
+Farrow/M
+Farsi/M
+Fassbinder/M
+Fatah/M
+Fates/M
+Father/SM
+Fatima/M
+Fatimid/M
+Faulkner/M
+Faulknerian/M
+Fauntleroy/M
+Faust/M
+Faustian/M
+Faustino/M
+Faustus/M
+Fawkes/M
+Fay/M
+Faye/M
+Fe/M
+Feb/M
+February/SM
+Fed/SM
+FedEx/M
+Federal/MS
+Federalist/M
+Federico/M
+Feds/M
+Felecia/M
+Felice/M
+Felicia/M
+Felicity/M
+Felipe/M
+Felix/M
+Fellini/M
+Fenian/M
+Ferber/M
+Ferdinand/M
+Fergus/M
+Ferguson/M
+Ferlinghetti/M
+Fermat/M
+Fermi/M
+Fern/M
+Fernandez/M
+Fernando/M
+Ferrari/M
+Ferraro/M
+Ferrell/M
+Ferris/M
+Feynman/M
+Fez/M
+Fiat/M
+Fiberglas/M
+Fibonacci/M
+Fichte/M
+Fidel/M
+Fido/M
+Fielding/M
+Fields/M
+Figaro/M
+Figueroa/M
+Fiji/M
+Fijian/MS
+Filipino/MS
+Fillmore/M
+Filofax/M
+Finch/M
+Finland/M
+Finlay/M
+Finley/M
+Finn/SM
+Finnbogadottir/M
+Finnegan/M
+Finnish/M
+Fiona/M
+Firebase/M
+Firefox/M
+Firestone/M
+Fischer/M
+Fisher/M
+Fisk/M
+Fitch/M
+Fitzgerald/M
+Fitzpatrick/M
+Fitzroy/M
+Fizeau/M
+Fla
+Flanagan/M
+Flanders/M
+Flathead
+Flatt/M
+Flaubert/M
+Fleischer/M
+Fleming/M
+Flemish/M
+Fletcher/M
+Flint/M
+Flintstones/M
+Flo/M
+Flora/M
+Florence/M
+Florentine/M
+Flores/M
+Florida/M
+Floridan/M
+Floridian/SM
+Florine/M
+Florsheim/M
+Flory/M
+Flossie/M
+Flowers/M
+Floyd/M
+Flynn/M
+Fm/M
+Foch/M
+Fokker/M
+Foley/M
+Folgers/M
+Folsom/M
+Fomalhaut/M
+Fonda/M
+Foosball/M
+Forbes/M
+Ford/M
+Foreman/M
+Forest/MR
+Forester/M
+Formica/MS
+Formosa/M
+Formosan/M
+Forrest/M
+Forster/M
+Fortaleza/M
+Fosse/M
+Foster/M
+Fotomat/M
+Foucault/M
+Fourier/M
+Fourneyron/M
+Fourth
+Fowler/M
+Fox/MS
+Fr/MD
+Fragonard/M
+Fran/M
+France/SM
+Frances/M
+Francesca/M
+Francine/M
+Francis/M
+Francisca/M
+Franciscan/MS
+Francisco/M
+Franck/M
+Franco/M
+Francois/M
+Francoise/M
+Francophile
+Franglais/M
+Frank/SM
+Frankel/M
+Frankenstein/M
+Frankfort/M
+Frankfurt/MR
+Frankfurter/M
+Frankie/M
+Frankish
+Franklin/M
+Franks/M
+Franny/M
+Franz/M
+Fraser/M
+Frau/MN
+Fraulein
+Frazier/M
+Fred/M
+Freda/M
+Freddie/M
+Freddy/M
+Frederic/M
+Frederick/M
+Fredericton/M
+Fredric/M
+Fredrick/M
+Freeman/M
+Freemason/SM
+Freemasonry/SM
+Freetown/M
+Freida/M
+Fremont/M
+French/MS
+Frenchman/M
+Frenchmen/M
+Frenchwoman/M
+Frenchwomen/M
+Freon/M
+Fresnel/M
+Fresno/M
+Freud/M
+Freudian/M
+Frey/M
+Freya/M
+Fri/M
+Friday/SM
+Frieda/M
+Friedan/M
+Friedman/M
+Friedmann/M
+Friend/SM
+Frigga/M
+Frigidaire/M
+Frisbee/M
+Frisco/M
+Frisian/MS
+Frito/M
+Fritz/M
+Frobisher/M
+Frodo/M
+Froissart/M
+Fromm/M
+Fronde/M
+Frontenac/M
+Frost/M
+Frostbelt/M
+Frunze/M
+Fry/M
+Frye/M
+Fuchs/M
+Fuentes/M
+Fugger/M
+Fuji/M
+Fujian/M
+Fujitsu/M
+Fujiwara/M
+Fujiyama/M
+Fukuoka/M
+Fukuyama/M
+Fulani/M
+Fulbright/M
+Fuller/M
+Fullerton/M
+Fulton/M
+Funafuti/M
+Fundy/M
+Furies/M
+Furman/M
+Furtwangler/M
+Fushun/M
+Fuzhou/M
+Fuzzbuster/M
+G'day
+G/MNRB
+GA
+GAO
+GATT/M
+GB/M
+GCC/M
+GDP/M
+GE/M
+GED
+GHQ/M
+GHz
+GI
+GIF
+GIGO
+GM/M
+GMAT
+GMO
+GMT/M
+GNP/M
+GNU/M
+GOP/M
+GP/M
+GPA
+GPO
+GPS
+GPU
+GSA
+GTE/M
+GU
+GUI/M
+Ga/M
+Gable/M
+Gabon/M
+Gabonese/M
+Gaborone/M
+Gabriel/M
+Gabriela/M
+Gabrielle/M
+Gacrux/M
+Gadsden/M
+Gaea/M
+Gael/SM
+Gaelic/M
+Gagarin/M
+Gage/M
+Gaia/M
+Gail/M
+Gaiman/M
+Gaines/M
+Gainsborough/M
+Galahad/SM
+Galapagos/M
+Galatea/M
+Galatia/M
+Galatians/M
+Galaxy
+Galbraith/M
+Gale/M
+Galen/M
+Galibi/M
+Galilean/SM
+Galilee/M
+Galileo/M
+Gall/M
+Gallagher/M
+Gallegos/M
+Gallic/M
+Gallicism/SM
+Gallo/M
+Galloway/M
+Gallup/M
+Galois/M
+Galsworthy/M
+Galvani/M
+Galveston/M
+Gama
+Gamay/M
+Gambia/M
+Gambian/SM
+Gamble/M
+Gamow/M
+Gandalf/M
+Gandhi/M
+Gandhian/M
+Ganesha/M
+Ganges/M
+Gangtok/M
+Gansu/M
+Gantry/M
+Ganymede/M
+Gap/M
+Garbo/M
+Garcia/M
+Gardner/M
+Gareth/M
+Garfield/M
+Garfunkel/M
+Gargantua/M
+Garibaldi/M
+Garland/M
+Garner/M
+Garrett/M
+Garrick/M
+Garrison/M
+Garry/M
+Garth/M
+Garvey/M
+Gary/M
+Garza/M
+Gascony/M
+Gasser/M
+Gastroenterology
+Gates/M
+Gatling/M
+Gatorade/M
+Gatsby/M
+Gatun/M
+Gauguin/M
+Gaul/SM
+Gaulish
+Gauss/M
+Gaussian/M
+Gautama/M
+Gautier/M
+Gavin/M
+Gawain/M
+Gay/M
+Gayle/M
+Gaza/M
+Gaziantep/M
+Gd/M
+Gdansk/M
+Ge/M
+Geelong/M
+Geffen/M
+Gehenna/M
+Gehrig/M
+Geiger/M
+Gelbvieh/M
+Geller/M
+Gemini/MS
+Gen/M
+Gena/M
+Genaro/M
+Gene/M
+Genesis/M
+Genet/M
+Geneva/M
+Genevieve/M
+Genghis/M
+Genoa/SM
+Gentoo/M
+Gentry/M
+Geo/M
+Geoffrey/M
+George/MS
+Georgetown/M
+Georgette/M
+Georgia/M
+Georgian/MS
+Georgina/M
+Ger/M
+Gerald/M
+Geraldine/M
+Geraldton/M
+Gerard/M
+Gerardo/M
+Gerber/M
+Gere/M
+Geritol/M
+German/MS
+Germanic/M
+Germany/M
+Geronimo/M
+Gerry/M
+Gershwin/M
+Gertrude/M
+Gestapo/SM
+Gethsemane/M
+Getty/M
+Gettysburg/M
+Gewurztraminer/M
+Ghana/M
+Ghanaian
+Ghats/M
+Ghazvanid/M
+Ghent/M
+Ghibelline/M
+Giacometti/M
+Giannini/M
+Giauque/M
+Gibbon/M
+Gibbs/M
+Gibraltar/MS
+Gibson/M
+Gide/M
+Gideon/M
+Gielgud/M
+Gienah/M
+Gil/M
+Gila/M
+Gilbert/M
+Gilberto/M
+Gilchrist/M
+Gilda/M
+Gilead/M
+Giles/M
+Gilgamesh/M
+Gill/M
+Gillespie/M
+Gillette/M
+Gilliam/M
+Gillian/M
+Gilligan/M
+Gilman
+Gilmore/M
+Gina/M
+Ginger/M
+Gingrich/M
+Ginny/M
+Gino/M
+Ginsberg/M
+Ginsburg/M
+Ginsu/M
+Giorgione/M
+Giotto/M
+Giovanni/M
+Giraudoux/M
+Giselle/M
+Gish/M
+GitHub/M
+Giuliani/M
+Giuseppe/M
+Giza/M
+Gk
+Gladstone/MS
+Gladys/M
+Glaser/M
+Glasgow/M
+Glass/M
+Glastonbury/M
+Glaswegian/SM
+Glaxo/M
+Gleason/M
+Glen/M
+Glenda/M
+Glendale
+Glenlivet/M
+Glenn/M
+Glenna/M
+Gloria/M
+Gloucester/M
+Glover/M
+Gnostic/M
+Gnosticism/M
+GnuPG
+Goa/M
+Gobi/M
+God/M
+Godard/M
+Goddard/M
+Godel/M
+Godhead/M
+Godiva/M
+Godot/M
+Godspeed/SM
+Godthaab/M
+Godunov/M
+Godzilla/M
+Goebbels/M
+Goering/M
+Goethals/M
+Goethe/M
+Goff/M
+Gog/M
+Gogol/M
+Goiania/M
+Golan/M
+Golconda/M
+Golda/M
+Goldberg/M
+Golden/M
+Goldie/M
+Goldilocks/M
+Golding/M
+Goldman/M
+Goldsmith/M
+Goldwater/M
+Goldwyn/M
+Golgi/M
+Golgotha/M
+Goliath/M
+Gomez/M
+Gomorrah/M
+Gompers/M
+Gomulka/M
+Gondwanaland/M
+Gonzales/M
+Gonzalez/M
+Gonzalo/M
+Good/M
+Goodall/M
+Goode/M
+Goodman/M
+Goodrich/M
+Goodwill/M
+Goodwin/M
+Goodyear/M
+Google/M
+Goolagong/M
+Goolwa/M
+Gopher
+Gorbachev/M
+Gordian/M
+Gordimer/M
+Gordon/M
+Gore/M
+Goren/M
+Gorey/M
+Gorgas/M
+Gorgon/M
+Gorgonzola/M
+Gorky/M
+Gospel/MS
+Goteborg/M
+Goth/M
+Gotham/M
+Gothic/MS
+Goths
+Gouda/SM
+Goulburn/M
+Gould/M
+Gounod/M
+Governor
+Goya/M
+Gr/B
+Grable/M
+Gracchus/M
+Grace/M
+Graceland/M
+Gracie/M
+Graciela/M
+Grady/M
+Graffias/M
+Grafton/M
+Graham/M
+Grahame/M
+Grail/M
+Grammy/M
+Grampians/M
+Granada/M
+Grant/M
+Grass/M
+Graves/M
+Gray/M
+Grecian/M
+Greece/M
+Greek/SM
+Greeley/M
+Green/SM
+Greene/M
+Greenland/M
+Greenlandic
+Greenpeace/M
+Greensboro/M
+Greensleeves/M
+Greenspan/M
+Greenwich/M
+Greer/M
+Greg/M
+Gregg/M
+Gregorian/M
+Gregorio/M
+Gregory/M
+Grenada/M
+Grenadian/MS
+Grenadines/M
+Grendel/M
+Grenoble/M
+Gresham/M
+Greta/M
+Gretchen/M
+Gretel/M
+Gretzky/M
+Grey/M
+Grieg/M
+Griffin/M
+Griffith/M
+Grimes/M
+Grimm/M
+Grinch/M
+Gris/M
+Gromyko/M
+Gropius/M
+Gross/M
+Grosz/M
+Grotius/M
+Grover/M
+Grozny
+Grumman/M
+Grundy/M
+Grunewald/M
+Grus/M
+Gruyere/SM
+Guadalajara/M
+Guadalcanal/M
+Guadalquivir/M
+Guadalupe/M
+Guadeloupe/M
+Guallatiri/M
+Guam/M
+Guamanian
+Guangdong/M
+Guangzhou/M
+Guantanamo/M
+Guarani/M
+Guarnieri/M
+Guatemala/M
+Guatemalan/MS
+Guayaquil/M
+Gucci/M
+Guelph/M
+Guernsey/MS
+Guerra/M
+Guerrero/M
+Guevara/M
+Guggenheim/M
+Guiana/M
+Guido
+Guillermo/M
+Guinea/M
+Guinean/MS
+Guinevere/M
+Guinness/M
+Guiyang/M
+Guizhou/M
+Guizot/M
+Gujarat/M
+Gujarati/M
+Gujranwala/M
+Gullah/M
+Gulliver/M
+Gumbel/M
+Gunther/M
+Guofeng/M
+Gupta/M
+Gurkha/M
+Gus/M
+Gustav/M
+Gustavo/M
+Gustavus/M
+Gutenberg/M
+Guthrie/M
+Gutierrez/M
+Guy/M
+Guyana/M
+Guyanese/M
+Guzman/M
+Gwalior/M
+Gwen/M
+Gwendoline/M
+Gwendolyn/M
+Gwyn/M
+Gympie/M
+Gypsy/SM
+H/M
+HBO/M
+HBase/M
+HDD
+HDMI
+HDTV
+HF/M
+HHS
+HI
+HIV/M
+HM
+HMO/M
+HMS
+HOV
+HP/M
+HPV
+HQ/M
+HR
+HRH
+HS
+HSBC/M
+HST
+HT
+HTML/M
+HTTP
+HUD/M
+Ha/M
+Haas/M
+Habakkuk/M
+Haber/M
+Hadar/M
+Hades/M
+Hadoop/M
+Hadrian/M
+Hafiz/M
+Hagar/M
+Haggai/M
+Hagiographa/M
+Hague/M
+Hahn/M
+Haida/SM
+Haifa/M
+Hainan/M
+Haiphong/M
+Haiti/M
+Haitian/MS
+Hakka/M
+Hakluyt/M
+Hal/SM
+Haldane/M
+Hale/M
+Haleakala/M
+Haley/M
+Halifax/M
+Hall/M
+Halley/M
+Halliburton/M
+Hallie/M
+Hallmark/M
+Halloween/MS
+Hallstatt/M
+Halon/M
+Hals/M
+Halsey/M
+Ham/M
+Haman/M
+Hamburg/MS
+Hamhung/M
+Hamilcar/M
+Hamill/M
+Hamilton/M
+Hamiltonian/M
+Hamitic/M
+Hamlet/M
+Hamlin/M
+Hammarskjold/M
+Hammerstein/M
+Hammett/M
+Hammond/M
+Hammurabi/M
+Hampshire/M
+Hampton/M
+Hamsun/M
+Han/SM
+Hancock/M
+Handel/M
+Handy/M
+Haney/M
+Hangul/M
+Hangzhou/M
+Hank/M
+Hanna/M
+Hannah/M
+Hannibal/M
+Hanoi/M
+Hanover/M
+Hanoverian/M
+Hans/MN
+Hansel/M
+Hansen/M
+Hanson/M
+Hanuka
+Hanukkah/M
+Hanukkahs
+Hapsburg/M
+Harare/M
+Harbin/M
+Hardin/M
+Harding/M
+Hardy/M
+Hargreaves/M
+Harlan/M
+Harlem/M
+Harlequin/M
+Harley/M
+Harlow/M
+Harmon/M
+Harold/M
+Harper/M
+Harpy/SM
+Harrell/M
+Harriet/M
+Harriett/M
+Harrington/M
+Harris/M
+Harrisburg/M
+Harrison/M
+Harrods/M
+Harry/M
+Hart/M
+Harte/M
+Hartford/M
+Hartline/M
+Hartman/M
+Harvard/M
+Harvey/M
+Hasbro/M
+Hasidim/M
+Haskell/M
+Hastings/M
+Hatfield/M
+Hathaway/M
+Hatsheput/M
+Hatteras/M
+Hattie/M
+Hauptmann/M
+Hausa/M
+Hausdorff/M
+Havana/MS
+Havarti/M
+Havel/M
+Havoline/M
+Haw
+Hawaii/M
+Hawaiian/SM
+Hawking/M
+Hawkins/M
+Hawks
+Hawthorne/M
+Hay/SM
+Hayden/M
+Haydn/M
+Hayek/M
+Hayes/M
+Haynes/M
+Hays/M
+Hayward/M
+Haywood/M
+Hayworth/M
+Hazel/M
+Hazlitt/M
+He/M
+Head/M
+Hearst/M
+Heath/MR
+Heather/M
+Heaviside/M
+Heb
+Hebe/M
+Hebei/M
+Hebert/M
+Hebraic/M
+Hebraism/SM
+Hebrew/MS
+Hebrews/M
+Hebrides/M
+Hecate/M
+Hector/M
+Hecuba/M
+Heep/M
+Hefner/M
+Hegel/M
+Hegelian/M
+Hegira/M
+Heidegger/M
+Heidelberg/M
+Heidi/M
+Heifetz/M
+Heilongjiang/M
+Heimlich/M
+Heine/M
+Heineken/M
+Heinlein/M
+Heinrich/M
+Heinz/M
+Heisenberg/M
+Heisman/M
+Helen/M
+Helena/M
+Helene/M
+Helga/M
+Helicobacter
+Helicon/M
+Heliopolis/M
+Helios/M
+Hellene/SM
+Hellenic/M
+Hellenisation/M
+Hellenise
+Hellenism/MS
+Hellenist
+Hellenistic/M
+Hellenize's
+Heller/M
+Hellespont/M
+Hellman/M
+Helmholtz/M
+Heloise/M
+Helsinki/M
+Helvetian
+Helvetius/M
+Hemingway/M
+Henan/M
+Hench/M
+Henderson/M
+Hendrick/MS
+Hendricks/M
+Hendrix/M
+Henley/M
+Hennessy/M
+Henri/M
+Henrietta/M
+Henrik/M
+Henry/M
+Hensley/M
+Henson/M
+Hepburn/M
+Hephaestus/M
+Hepplewhite/M
+Hera/M
+Heracles/M
+Heraclitus/M
+Herakles/M
+Herbart/M
+Herbert/M
+Herculaneum/M
+Herculean
+Hercules/M
+Herder/M
+Hereford/SM
+Herero/M
+Heriberto/M
+Herman/M
+Hermaphroditus/M
+Hermes/M
+Herminia/M
+Hermitage/M
+Hermite/M
+Hermosillo/M
+Hernandez/M
+Herod/M
+Herodotus/M
+Heroku/M
+Herr/MG
+Herrera/M
+Herrick/M
+Herring/M
+Herschel/M
+Hersey/M
+Hershel/M
+Hershey/M
+Hertz/M
+Hertzsprung/M
+Herzegovina/M
+Herzl/M
+Heshvan/M
+Hesiod/M
+Hesperus/M
+Hess/M
+Hesse/M
+Hessian/M
+Hester/M
+Heston/M
+Hettie/M
+Hewitt/M
+Hewlett/M
+Heyerdahl/M
+Heywood/M
+Hezbollah/M
+Hezekiah/M
+Hf/M
+Hg/M
+Hialeah/M
+Hiawatha/M
+Hibernia/M
+Hibernian
+Hickman/M
+Hickok/M
+Hicks/M
+Hieronymus/M
+Higashiosaka
+Higgins/M
+Highlander/SM
+Highlands
+Highness/M
+Hilario/M
+Hilary/M
+Hilbert/M
+Hilda/M
+Hildebrand/M
+Hilfiger/M
+Hill/M
+Hillary/M
+Hillel/M
+Hilton/M
+Himalaya/SM
+Himalayan
+Himalayas/M
+Himmler/M
+Hinayana/M
+Hindemith/M
+Hindenburg/M
+Hindi/M
+Hindu/SM
+Hinduism/SM
+Hindustan/M
+Hindustani/SM
+Hines/M
+Hinton/M
+Hipparchus/M
+Hippocrates/M
+Hippocratic/M
+Hiram/M
+Hirobumi/M
+Hirohito/M
+Hiroshima/M
+Hispanic/SM
+Hispaniola/M
+Hiss/M
+Hitachi/M
+Hitchcock/M
+Hitler/MS
+Hittite/SM
+Hmong/M
+Ho/M
+Hobart/M
+Hobbes/M
+Hobbs/M
+Hockney/M
+Hodge/SM
+Hodges/M
+Hodgkin/M
+Hoff/M
+Hoffa/M
+Hoffman/M
+Hofstadter/M
+Hogan/M
+Hogarth/M
+Hogwarts/M
+Hohenlohe/M
+Hohenstaufen/M
+Hohenzollern/M
+Hohhot/M
+Hohokam/M
+Hokkaido/M
+Hokusai/M
+Holbein/M
+Holcomb/M
+Holden/M
+Holder/M
+Holiday/M
+Holiness
+Holland/ZSMR
+Hollander/M
+Hollerith/M
+Holley/M
+Hollie/M
+Hollis/M
+Holloway/M
+Holly/M
+Hollywood/M
+Holman/M
+Holmes/M
+Holocaust/M
+Holocene/M
+Holst/M
+Holstein/SM
+Holt/M
+Homer/M
+Homeric/M
+Hon
+Honda/M
+Honduran/MS
+Honduras/M
+Honecker/M
+Honeywell/M
+Hong
+Honiara/M
+Honolulu/M
+Honorable
+Honshu/M
+Hood/M
+Hooke/RM
+Hooker/M
+Hooper/M
+Hoosier/MS
+Hooters/M
+Hoover/MS
+Hope/M
+Hopewell/M
+Hopi/SM
+Hopkins/M
+Hopper/M
+Horace/M
+Horacio/M
+Horatio/M
+Hormel/M
+Hormuz/M
+Horn/M
+Hornblower/M
+Horne/M
+Horowitz/M
+Horsham/M
+Horthy/M
+Horton/M
+Horus/M
+Hosea/M
+Host/SM
+Hotpoint/M
+Hottentot/SM
+Houdini/M
+House/M
+Housman/M
+Houston/M
+Houyhnhnm/M
+Hovhaness/M
+Howard/M
+Howe/M
+Howell/MS
+Howells/M
+Howrah
+Hoyle/M
+Hrothgar/M
+Hts
+Huang/M
+Hubbard/M
+Hubble/M
+Hubei/M
+Huber/M
+Hubert/M
+Huck/M
+Huddersfield
+Hudson/M
+Huerta/M
+Huey/M
+Huff/M
+Huffman/M
+Huggins/M
+Hugh/MS
+Hughes/M
+Hugo/M
+Huguenot/MS
+Hui/M
+Huitzilopotchli/M
+Hull/M
+Humberto/M
+Humboldt/M
+Hume/M
+Hummel/M
+Hummer/M
+Humphrey/SM
+Humvee/M
+Hun/SM
+Hunan/M
+Hung/M
+Hungarian/SM
+Hungary/M
+Hunspell/M
+Hunt/MR
+Hunter/M
+Huntington/M
+Huntley/M
+Huntsville/M
+Hurd/M
+Hurley/M
+Huron/M
+Hurst/M
+Hus/M
+Hussein/M
+Husserl/M
+Hussite/M
+Huston/M
+Hutchinson/M
+Hutton/M
+Hutu/M
+Huxley/M
+Huygens/M
+Hyades/M
+Hyde/M
+Hyderabad/M
+Hydra/M
+Hymen/M
+Hyperion/M
+Hyundai/M
+Hz/M
+I'd
+I'll
+I'm
+I've
+I/M
+IA
+IBM/M
+ICBM/SM
+ICC
+ICU
+ID/SM
+IDE
+IE
+IED
+IEEE
+IKEA/M
+IL
+IMF/M
+IMHO
+IMNSHO
+IMO
+IN
+ING/M
+INRI
+INS
+IOU/M
+IP
+IPA
+IPO
+IQ/M
+IRA/SM
+IRC
+IRS/M
+ISBN
+ISIS
+ISO/M
+ISP
+ISS
+IT
+IUD
+IV/SM
+IVF
+Ia
+Iaccoca/M
+Iago/M
+Ian/M
+Iapetus/M
+Ibadan/M
+Iberia/M
+Iberian/M
+Ibiza/M
+Iblis/M
+Ibo/M
+Ibsen/M
+Icahn/M
+Icarus/M
+Ice
+Iceland/MRZ
+Icelander/M
+Icelandic/M
+Ida/M
+Idaho/SM
+Idahoan/MS
+Idahoes
+Ieyasu/M
+Ignacio/M
+Ignatius/M
+Igor/M
+Iguassu/M
+Ijsselmeer/M
+Ike/M
+Ikhnaton/M
+Ila/M
+Ilene/M
+Iliad/SM
+Ill
+Illinois/M
+Illinoisan/MS
+Illuminati/M
+Ilyushin/M
+Imelda/M
+Imhotep/M
+Imodium/M
+Imogene/M
+Imus/M
+In/M
+Ina/M
+Inc
+Inca/SM
+Inchon/M
+Incorporated
+Ind
+Independence/M
+India/M
+Indian/MS
+Indiana/M
+Indianan/SM
+Indianapolis/M
+Indianian
+Indies/M
+Indira/M
+Indochina/M
+Indochinese/M
+Indonesia/M
+Indonesian/SM
+Indore/M
+Indra/M
+Indus/M
+Indy/SM
+Ines/M
+Inez/M
+Inge/M
+Inglewood
+Ingram/M
+Ingres/M
+Ingrid/M
+Innocent/M
+Innsbruck
+Inonu/M
+Inquisition/M
+Inst
+Instagram/M
+Instamatic/M
+Intel/M
+Intelsat/M
+Internationale/M
+Internet/SM
+Interpol/M
+Inuit/MS
+Inuktitut/M
+Invar/M
+Io/M
+Ionesco/M
+Ionian/MS
+Ionic/SM
+Iowa/SM
+Iowan/MS
+Iphigenia/M
+Ipswich
+Iqaluit/M
+Iqbal/M
+Iquitos/M
+Ir/M
+Ira/M
+Iran/M
+Iranian/SM
+Iraq/M
+Iraqi/MS
+Ireland/M
+Irene/M
+Iris/M
+Irish/MR
+Irishman/M
+Irishmen/M
+Irishwoman/M
+Irishwomen/M
+Irkutsk/M
+Irma/M
+Iroquoian/SM
+Iroquois/M
+Irrawaddy/M
+Irtish/M
+Irvin/M
+Irvine/M
+Irving/M
+Irwin/M
+Isaac/M
+Isabel/M
+Isabella/M
+Isabelle/M
+Isaiah/M
+Iscariot/M
+Isfahan/M
+Isherwood/M
+Ishim/M
+Ishmael/M
+Ishtar/M
+Isiah/M
+Isidro/M
+Isis/M
+Islam/MS
+Islamabad/M
+Islamic/M
+Islamism/M
+Islamist/M
+Islamophobia
+Islamophobic
+Ismael/M
+Ismail/M
+Isolde/M
+Ispell/M
+Israel/SM
+Israeli/SM
+Israelite/M
+Issac/M
+Issachar/M
+Istanbul/M
+Isuzu/M
+It
+Itaipu/M
+Ital
+Italian/SM
+Italianate
+Italy/M
+Itasca/M
+Ithaca/M
+Ithacan/M
+Ito/M
+Iva/M
+Ivan/M
+Ivanhoe/M
+Ives/M
+Ivorian
+Ivory/M
+Ivy/M
+Iyar/M
+Izaak/M
+Izanagi/M
+Izanami/M
+Izhevsk/M
+Izmir/M
+Izod/M
+Izvestia/M
+J/MD
+JCS
+JD
+JFK/M
+JP
+JPEG
+JV
+Jack/M
+Jackie/M
+Jacklyn/M
+Jackson/M
+Jacksonian/M
+Jacksonville/M
+Jacky/M
+Jaclyn/M
+Jacob/SM
+Jacobean/M
+Jacobi/M
+Jacobin/M
+Jacobite/M
+Jacobs/M
+Jacobson/M
+Jacquard/M
+Jacqueline/M
+Jacquelyn/M
+Jacques/M
+Jacuzzi/M
+Jagger/M
+Jagiellon/M
+Jaguar/M
+Jahangir/M
+Jaime/M
+Jain/M
+Jainism/M
+Jaipur/M
+Jakarta/M
+Jake/M
+Jamaal/M
+Jamaica/M
+Jamaican/SM
+Jamal/M
+Jamar/M
+Jame/SM
+Jamel/M
+James/M
+Jamestown/M
+Jami/M
+Jamie/M
+Jan/M
+Jana/M
+Janacek/M
+Jane/M
+Janell/M
+Janelle/M
+Janet/M
+Janette/M
+Janice/M
+Janie/M
+Janine/M
+Janis/M
+Janissary/M
+Janjaweed/M
+Janna/M
+Jannie/M
+Jansen/M
+Jansenist/M
+January/SM
+Janus/M
+Jap/SM
+Japan/M
+Japanese/MS
+Japura/M
+Jared/M
+Jarlsberg/M
+Jarred/M
+Jarrett/M
+Jarrod/M
+Jarvis/M
+Jasmine/M
+Jason/M
+Jasper/M
+Jataka/M
+Java/SM
+JavaScript/M
+Javanese/M
+Javier/M
+Jaxartes/M
+Jay/M
+Jayapura/M
+Jayawardene/M
+Jaycee/MS
+Jaycees/M
+Jayne/M
+Jayson/M
+Jean/M
+Jeanette/M
+Jeanie/M
+Jeanine/M
+Jeanne/M
+Jeannette/M
+Jeannie/M
+Jeannine/M
+Jed/M
+Jedi/M
+Jeep/M
+Jeeves/M
+Jeff/M
+Jefferey/M
+Jefferson/M
+Jeffersonian/M
+Jeffery/M
+Jeffrey/M
+Jeffry/M
+Jehoshaphat/M
+Jehovah/M
+Jekyll/M
+Jenifer/M
+Jenkins/M
+Jenna/M
+Jenner/M
+Jennie/M
+Jennifer/M
+Jennings/M
+Jenny/M
+Jensen/M
+Jephthah/M
+Jerald/M
+Jeremiah/M
+Jeremiahs
+Jeremy/M
+Jeri/M
+Jericho/M
+Jermaine/M
+Jeroboam/M
+Jerold/M
+Jerome/M
+Jerri/M
+Jerrod/M
+Jerrold/M
+Jerry/M
+Jersey/MS
+Jerusalem/M
+Jess/M
+Jesse/M
+Jessica/M
+Jessie/M
+Jesuit/MS
+Jesus/M
+Jetway/M
+Jew/SM
+Jewel/M
+Jewell/M
+Jewess/MS
+Jewish/PM
+Jewry/M
+Jezebel/SM
+Jiangsu/M
+Jiangxi/M
+Jidda/M
+Jilin/M
+Jill/M
+Jillian/M
+Jim/M
+Jimenez/M
+Jimmie/M
+Jimmy/M
+Jinan/M
+Jinnah/M
+Jinny/M
+Jivaro/M
+Jo/M
+Joan/M
+Joann/M
+Joanna/M
+Joanne/M
+Joaquin/M
+Job/SM
+Jobs/M
+Jocasta/M
+Jocelyn/M
+Jock/M
+Jockey/M
+Jodi/M
+Jodie/M
+Jody/M
+Joe/M
+Joel/M
+Joey/M
+Jogjakarta/M
+Johann/M
+Johanna/M
+Johannes/M
+Johannesburg/M
+John/SM
+Johnathan/M
+Johnathon/M
+Johnie/M
+Johnnie/M
+Johnny/M
+Johns/M
+Johnson/M
+Johnston/M
+Jolene/M
+Jolson/M
+Jon/M
+Jonah/M
+Jonahs
+Jonas/M
+Jonathan/M
+Jonathon/M
+Jones/M
+Joni/M
+Jonson/M
+Joplin/M
+Jordan/M
+Jordanian/MS
+Jorge/M
+Jose/M
+Josef/M
+Josefa/M
+Josefina/M
+Joseph/M
+Josephine/M
+Josephs
+Josephson/M
+Josephus/M
+Josh/M
+Joshua/M
+Josiah/M
+Josie/M
+Josue/M
+Joule/M
+Jove/M
+Jovian/M
+Joy/M
+Joyce/M
+Joycean/M
+Joyner/M
+Jpn
+Jr/M
+Juan/M
+Juana/M
+Juanita/M
+Juarez/M
+Jubal/M
+Judaeo
+Judah/M
+Judaic
+Judaical
+Judaism/MS
+Judas/MS
+Judd/M
+Jude/M
+Judea/M
+Judges
+Judith/M
+Judson/M
+Judy/M
+Juggernaut/M
+Jul
+Jules/M
+Julia/M
+Julian/M
+Juliana/M
+Julianne/M
+Julie/M
+Juliet/M
+Juliette/M
+Julio/M
+Julius/M
+Julliard/M
+July/SM
+Jun/M
+June/SM
+Juneau/M
+Jung/M
+Jungfrau/M
+Jungian/M
+Junior/SM
+Junker/SM
+Juno/M
+Jupiter/M
+Jurassic/M
+Jurua/M
+Justice/M
+Justin/M
+Justine/M
+Justinian/M
+Jutland/M
+Juvenal/M
+K/SMNGJ
+KB/M
+KC
+KFC/M
+KGB/M
+KIA
+KKK/M
+KO/M
+KP
+KS
+KY
+Kaaba/M
+Kabul/M
+Kafka/M
+Kafkaesque/M
+Kagoshima/M
+Kahlua/M
+Kaifeng/M
+Kaiser/MS
+Kaitlin/M
+Kalahari/M
+Kalamazoo/M
+Kalashnikov/M
+Kalb/M
+Kalevala/M
+Kalgoorlie/M
+Kali/M
+Kalmyk/M
+Kama/M
+Kamchatka/M
+Kamehameha/M
+Kampala/M
+Kampuchea/M
+Kan/SM
+Kanchenjunga/M
+Kandahar/M
+Kandinsky/M
+Kane/M
+Kannada/M
+Kano/M
+Kanpur/M
+Kansan/MS
+Kansas/M
+Kant/M
+Kantian/M
+Kaohsiung/M
+Kaposi/M
+Kara/M
+Karachi/M
+Karaganda/M
+Karakorum/M
+Karamazov/M
+Kareem/M
+Karen/M
+Karenina/M
+Kari/M
+Karin/M
+Karina/M
+Karl/M
+Karla/M
+Karloff/M
+Karo/M
+Karol/M
+Karratha/M
+Karroo/M
+Karyn/M
+Kasai/M
+Kasey/M
+Kashmir/SM
+Kasparov/M
+Kate/M
+Katelyn/M
+Katharine/M
+Katherine/M
+Katheryn/M
+Kathiawar/M
+Kathie/M
+Kathleen/M
+Kathmandu/M
+Kathrine/M
+Kathryn/M
+Kathy/M
+Katie/M
+Katina/M
+Katmai/M
+Katowice/M
+Katrina/M
+Katy/M
+Kauai/M
+Kaufman/M
+Kaunas/M
+Kaunda/M
+Kawabata/M
+Kawasaki/M
+Kay/M
+Kaye/M
+Kayla/M
+Kazakh/M
+Kazakhs
+Kazakhstan/M
+Kazan/M
+Kazantzakis/M
+Kb/M
+Keaton/M
+Keats/M
+Keck/M
+Keenan/M
+Keewatin/M
+Keillor/M
+Keisha/M
+Keith/M
+Keller/M
+Kelley/M
+Kelli/M
+Kellie/M
+Kellogg/M
+Kelly/M
+Kelsey/M
+Kelvin/M
+Kemerovo/M
+Kemp/M
+Kempis/M
+Kempsey/M
+Ken/M
+Kendall/M
+Kendra/M
+Kendrick/M
+Kenmore/M
+Kennan/M
+Kennedy/M
+Kenneth/M
+Kennith/M
+Kenny/M
+Kent/M
+Kenton/M
+Kentuckian/MS
+Kentucky/M
+Kenya/M
+Kenyan/SM
+Kenyatta/M
+Kenyon/M
+Keogh/M
+Keokuk/M
+Kepler/M
+Kerensky/M
+Keri/M
+Kermit/M
+Kern/M
+Kerouac/M
+Kerr/M
+Kerri/M
+Kerry/M
+Kettering/M
+Keven/M
+Kevin/M
+Kevlar/M
+Kevorkian/M
+Kewpie/M
+Key/M
+Keynes/M
+Keynesian/M
+Khabarovsk/M
+Khachaturian/M
+Khalid/M
+Khan/M
+Kharkov/M
+Khartoum/M
+Khayyam/M
+Khazar/M
+Khmer/M
+Khoikhoi/M
+Khoisan/M
+Khomeini/M
+Khorana/M
+Khrushchev/M
+Khufu/M
+Khulna/M
+Khwarizmi/M
+Khyber/M
+Kickapoo/M
+Kidd/M
+Kiel/M
+Kierkegaard/M
+Kieth/M
+Kiev/M
+Kigali/M
+Kikuyu/M
+Kilauea/M
+Kilimanjaro/M
+Kilroy/M
+Kim/M
+Kimberley/M
+Kimberly/M
+King/M
+Kingaroy/M
+Kingston/M
+Kingstown/M
+Kinko's
+Kinney/M
+Kinsey/M
+Kinshasa/M
+Kiowa/MS
+Kip/M
+Kipling/M
+Kirby/M
+Kirchhoff/M
+Kirchner/M
+Kirghistan/M
+Kirghiz/M
+Kirghizia/M
+Kiribati/M
+Kirinyaga/M
+Kirk/M
+Kirkland/M
+Kirkpatrick/M
+Kirov/M
+Kirsten/M
+Kisangani/M
+Kishinev/M
+Kislev/M
+Kissinger/M
+Kit/M
+Kitakyushu/M
+Kitchener/M
+Kitty/M
+Kiwanis/M
+Klan/M
+Klansman/M
+Klaus/M
+Klee/M
+Kleenex/MS
+Klein/M
+Klimt/M
+Kline/M
+Klingon/M
+Klondike/MS
+Kmart/M
+Knapp/M
+Knesset/M
+Kngwarreye/M
+Knickerbocker/M
+Knievel/M
+Knight/M
+Knopf/M
+Knossos/M
+Knowles/M
+Knox/M
+Knoxville/M
+Knudsen/M
+Knuth/M
+Knuths
+Kobe/M
+Koch/M
+Kochab/M
+Kodachrome/M
+Kodak/M
+Kodaly/M
+Kodiak/M
+Koestler/M
+Kohinoor/M
+Kohl/M
+Koizumi/M
+Kojak/M
+Kolyma/M
+Kommunizma/M
+Kong/M
+Kongo/M
+Konrad/M
+Koontz/M
+Koppel/M
+Koran/MS
+Koranic
+Korea/M
+Korean/SM
+Kornberg/M
+Kory/M
+Korzybski/M
+Kosciusko/M
+Kossuth/M
+Kosygin/M
+Kotlin/M
+Koufax/M
+Kowloon/M
+Kr/M
+Kraft/M
+Krakatoa/M
+Krakow/M
+Kramer/M
+Krasnodar/M
+Krasnoyarsk/M
+Krebs/M
+Kremlin/M
+Kremlinologist
+Kremlinology
+Kresge/M
+Kringle/M
+Kris/M
+Krishna/M
+Krishnamurti/M
+Krista/M
+Kristen/M
+Kristi/M
+Kristie/M
+Kristin/M
+Kristina/M
+Kristine/M
+Kristopher/M
+Kristy/M
+Kroc/M
+Kroger/M
+Kronecker/M
+Kropotkin/M
+Kruger/M
+Krugerrand/M
+Krupp/M
+Krystal/M
+Kshatriya/M
+Kublai/M
+Kubrick/M
+Kuhn/M
+Kuibyshev/M
+Kulthumm/M
+Kunming/M
+Kuomintang/M
+Kurd/M
+Kurdish/M
+Kurdistan/M
+Kurosawa/M
+Kurt/M
+Kurtis/M
+Kusch/M
+Kutuzov/M
+Kuwait/M
+Kuwaiti/SM
+Kuznets/M
+Kuznetsk/M
+Kwakiutl/M
+Kwan/M
+Kwangju/M
+Kwanzaa/MS
+Ky/MH
+Kyle/M
+Kyoto/M
+Kyrgyzstan/M
+Kyushu/M
+L'Amour/M
+L'Enfant
+L'Oreal/M
+L'Ouverture/M
+L/MN
+LA
+LAN/M
+LBJ/M
+LC
+LCD/M
+LCM
+LDC
+LED/M
+LG/M
+LGBT
+LIFO
+LL
+LLB/M
+LLD/M
+LNG
+LOGO
+LP/M
+LPG
+LPN/SM
+LSAT
+LSD/M
+LVN
+La/SM
+Lab
+Laban/M
+Labrador/SM
+Labradorean
+Lacey/M
+Lachesis/M
+Lactobacillus
+Lacy/M
+Ladoga/M
+Ladonna/M
+Lady/M
+Ladyship/MS
+Lafayette/M
+Lafitte/M
+Lagos/M
+Lagrange/M
+Lagrangian/M
+Lahore/M
+Laius/M
+Lajos/M
+Lakeisha/M
+Lakewood
+Lakisha/M
+Lakota/M
+Lakshmi/M
+Lamaism/SM
+Lamar/M
+Lamarck/M
+Lamaze/M
+Lamb/M
+Lambert/M
+Lamborghini/M
+Lambrusco/M
+Lamentations
+Lamont/M
+Lana/M
+Lanai/M
+Lancashire/M
+Lancaster/M
+Lance/M
+Lancelot/M
+Land/M
+Landon/M
+Landry/M
+Landsat/M
+Landsteiner/M
+Lane/M
+Lang/M
+Langerhans/M
+Langland/M
+Langley/M
+Langmuir/M
+Lanka/M
+Lankan/M
+Lanny/M
+Lansing/M
+Lanzhou/M
+Lao/SM
+Laocoon/M
+Laos/M
+Laotian/SM
+Laplace/M
+Laplacian
+Lapland/MR
+Lapp/SM
+Lara/M
+Laramie/M
+Lardner/M
+Laredo/M
+Larousse/M
+Larry/M
+Lars/MN
+Larsen/M
+Larson/M
+Lascaux/M
+Lassa/M
+Lassen/M
+Lassie/M
+Lat/M
+Latasha/M
+Lateran/M
+Latham/M
+Latin/MRS
+Latina
+Latino/SM
+Latinx
+Latisha/M
+Latonya/M
+Latoya/M
+Latrobe/M
+Latvia/M
+Latvian/MS
+Laud/MR
+Lauder/M
+Laue/M
+Launceston/M
+Laundromat/M
+Laura/M
+Laurasia/M
+Laurel/M
+Lauren/M
+Laurence/M
+Laurent/M
+Lauri/M
+Laurie/M
+Laval/M
+Lavern/M
+Laverne/M
+Lavoisier/M
+Lavonne/M
+Lawanda/M
+Lawrence/M
+Lawson/M
+Layamon/M
+Layla/M
+Lazaro/M
+Lazarus/M
+Le/SM
+Lea/M
+Leach/M
+Leadbelly/M
+Leah/M
+Leakey/M
+Lean/M
+Leander/M
+Leann/M
+Leanna/M
+Leanne/M
+Lear/M
+Learjet/M
+Leary/M
+Leavenworth/M
+Lebanese/M
+Lebanon/M
+Lebesgue/M
+Leblanc/M
+Leda/M
+Lederberg/M
+Lee/M
+Leeds/M
+Leeuwenhoek/M
+Leeward/M
+Left
+Legendre/M
+Leger/M
+Leghorn/M
+Lego/M
+Legree/M
+Lehman/M
+Leibniz/M
+Leicester/SM
+Leiden/M
+Leif/M
+Leigh/M
+Leila/M
+Leipzig/M
+Lela/M
+Leland/M
+Lelia/M
+Lemaitre/M
+Lemuel/M
+Lemuria/M
+Len/M
+Lena/M
+Lenard/M
+Lenin/M
+Leningrad/M
+Leninism/M
+Leninist/M
+Lennon/M
+Lenny/M
+Leno/M
+Lenoir/M
+Lenora/M
+Lenore/M
+Lent/SMN
+Lenten/M
+Leo/SM
+Leola/M
+Leon/M
+Leona/M
+Leonard/M
+Leonardo/M
+Leoncavallo/M
+Leonel/M
+Leonid/M
+Leonidas/M
+Leonor/M
+Leopold/M
+Leopoldo/M
+Lepidus/M
+Lepke/M
+Lepus/M
+Lerner/M
+Leroy/M
+Les/M
+Lesa/M
+Lesley/M
+Leslie/M
+Lesotho/M
+Lesseps/M
+Lessie/M
+Lester/M
+Lestrade/M
+Leta/M
+Letha/M
+Lethe/M
+Leticia/M
+Letitia/M
+Letterman/M
+Levant/M
+Levesque/M
+Levi/SM
+Leviathan/M
+Levine/M
+Leviticus/M
+Levitt/M
+Levy/M
+Lew/M
+Lewinsky/M
+Lewis/M
+Lexington/M
+Lexus/M
+Lhasa/MS
+Lhotse/M
+Li/MY
+Liaoning/M
+Libby/M
+Liberace/M
+Liberal
+Liberia/M
+Liberian/SM
+Libra/MS
+LibreOffice/M
+Libreville/M
+Librium/M
+Libya/M
+Libyan/SM
+Lichtenstein/M
+Lidia/M
+Lie/M
+Lieberman/M
+Liebfraumilch/M
+Liechtenstein/ZMR
+Liechtensteiner/M
+Liege/M
+Lieut
+Lila/M
+Lilia/M
+Lilian/M
+Liliana/M
+Lilith/M
+Liliuokalani/M
+Lille/M
+Lillian/M
+Lillie/M
+Lilliput/M
+Lilliputian/MS
+Lilly/M
+Lilongwe/M
+Lily/M
+Lima/M
+Limbaugh/M
+Limbo
+Limburger/M
+Limoges/M
+Limousin/M
+Limpopo/M
+Lin/M
+Lina/M
+Lincoln/MS
+Lind/M
+Linda/M
+Lindbergh/M
+Lindsay/M
+Lindsey/M
+Lindy/M
+Linnaeus/M
+Linotype/M
+Linton/M
+Linus/M
+Linux/MS
+Linwood/M
+Lionel/M
+Lipizzaner/M
+Lippi/M
+Lippmann/M
+Lipscomb/M
+Lipton/M
+Lisa/M
+Lisbon/M
+Lismore/M
+Lissajous/M
+Lister/M
+Listerine/M
+Liston/M
+Liszt/M
+Lithgow/M
+Lithuania/M
+Lithuanian/MS
+Little/M
+Litton/M
+Liverpool/M
+Liverpudlian/SM
+Livia/M
+Livingston/M
+Livingstone/M
+Livonia/M
+Livy/M
+Liz/M
+Liza/M
+Lizzie/M
+Lizzy/M
+Ljubljana/M
+Llewellyn/M
+Lloyd/M
+Ln
+Loafer/SM
+Lobachevsky/M
+Lochinvar/M
+Locke/M
+Lockean/M
+Lockheed/M
+Lockwood/M
+Lodge/M
+Lodz/M
+Loewe/M
+Loewi/M
+Loews/M
+Logan/M
+Lohengrin/M
+Loire/M
+Lois/M
+Loki/M
+Lola/M
+Lolita/M
+Lollard/M
+Lollobrigida/M
+Lombard/M
+Lombardi/M
+Lombardy/M
+Lome/M
+Lon/M
+London/MRZ
+Londoner/M
+Long/M
+Longfellow/M
+Longstreet/M
+Longueuil
+Lonnie/M
+Lopez/M
+Lora/M
+Loraine/M
+Lord/SM
+Lordship/SM
+Lorelei/M
+Loren/M
+Lorena/M
+Lorene/M
+Lorentz/M
+Lorentzian
+Lorenz/M
+Lorenzo/M
+Loretta/M
+Lori/M
+Lorie/M
+Lorna/M
+Lorraine/M
+Lorre/M
+Lorrie/M
+Los
+Lot/M
+Lothario/SM
+Lott/M
+Lottie/M
+Lou/M
+Louella/M
+Louie/M
+Louis/M
+Louisa/M
+Louise/M
+Louisiana/M
+Louisianan/MS
+Louisianian/MS
+Louisville/M
+Lourdes/M
+Louvre/M
+Love/M
+Lovecraft/M
+Lovelace/M
+Lowe/M
+Lowell/M
+Lowenbrau/M
+Lowery/M
+Lowlands
+Loyang/M
+Loyd/M
+Loyola/M
+Lr
+Lt
+Ltd
+Lu/M
+Luanda/M
+Luann/M
+Lubavitcher/M
+Lubbock/M
+Lubumbashi/M
+Lucas/M
+Luce/M
+Lucia/M
+Lucian/M
+Luciano/M
+Lucien/M
+Lucifer/M
+Lucile/M
+Lucille/M
+Lucinda/M
+Lucio/M
+Lucite/SM
+Lucius/M
+Lucknow/M
+Lucretia/M
+Lucretius/M
+Lucy/M
+Luddite/MS
+Ludhiana/M
+Ludwig/M
+Luella/M
+Lufthansa/M
+Luftwaffe/M
+Luger/M
+Lugosi/M
+Luigi/M
+Luis/M
+Luisa/M
+Luke/M
+Lula/M
+Lully/M
+Lulu/M
+Lumiere/M
+Luna/M
+Lupe/M
+Lupercalia/M
+Lupus/M
+Luria/M
+Lusaka/M
+Lusitania/M
+Luther/M
+Lutheran/SM
+Lutheranism/MS
+Luvs/M
+Luxembourg/ZMR
+Luxembourger/M
+Luxembourgian
+Luz/M
+Luzon/M
+Lvov/M
+LyX/M
+Lyallpur
+Lycra/M
+Lycurgus/M
+Lydia/M
+Lydian/SM
+Lyell/M
+Lyle/M
+Lyly/M
+Lyman/M
+Lyme/M
+Lynch/M
+Lynda/M
+Lyndon/M
+Lynette/M
+Lynn/M
+Lynne/M
+Lynnette/M
+Lyon/SM
+Lyons/M
+Lyra/M
+Lysenko/M
+Lysistrata/M
+Lysol/M
+M/SMGB
+MA/M
+MASH
+MB/M
+MBA/M
+MC
+MCI/M
+MD/M
+MDT
+ME
+MEGO/S
+MFA/M
+MGM/M
+MHz
+MI/M
+MIA
+MIDI/M
+MIPS
+MIRV
+MIT/M
+MM
+MN
+MO
+MOOC
+MP/M
+MPEG
+MRI/M
+MS/M
+MSG/M
+MST/M
+MSW
+MT/M
+MTV/M
+MVP/M
+MW
+Maalox/M
+Mabel/M
+Mable/M
+Mac/M
+MacArthur/M
+MacBride/M
+MacDonald/M
+MacLeish/M
+Macao/M
+Macaulay/M
+Macbeth/M
+Maccabees
+Maccabeus/M
+Mace/M
+Macedon/M
+Macedonia/M
+Macedonian/SM
+Mach/M
+Machiavelli/M
+Machiavellian/M
+Macias/M
+Macintosh/M
+Mack/M
+Mackay/M
+Mackenzie/M
+Mackinac/M
+Mackinaw/M
+Macmillan/M
+Macon/M
+Macumba/M
+Macy/M
+Madagascan/SM
+Madagascar/M
+Madam
+Madden/M
+Maddox/M
+Madeira/SM
+Madeleine/M
+Madeline/M
+Madelyn/M
+Madge/M
+Madison/M
+Madonna/SM
+Madras/M
+Madrid/M
+Madurai/M
+Mae/M
+Maeterlinck/M
+Mafia/MS
+Mafioso/M
+Magdalena/M
+Magdalene/M
+Magellan/M
+Magellanic/M
+Maggie/M
+Maghreb/M
+Magi
+Maginot/M
+Magnificat
+Magnitogorsk/M
+Magog/M
+Magoo/M
+Magritte/M
+Magsaysay/M
+Magus
+Magyar/SM
+Mahabharata/M
+Maharashtra/M
+Mahavira/M
+Mahayana/M
+Mahayanist/M
+Mahdi/M
+Mahfouz/M
+Mahican/SM
+Mahler/M
+Mai/M
+Maidenform/M
+Maigret/M
+Mailer/M
+Maillol/M
+Maiman/M
+Maimonides/M
+Maine/MZR
+Mainer/M
+Maisie/M
+Maitland/M
+Maitreya/M
+Maj
+Majesty
+Major/M
+Majorca/M
+Majuro/M
+Makarios/M
+Maker/M
+Malabar/M
+Malabo/M
+Malacca/M
+Malachi/M
+Malagasy/M
+Malamud/M
+Malaprop/M
+Malawi/M
+Malawian/SM
+Malay/MS
+Malaya/M
+Malayalam/M
+Malayan/MS
+Malaysia/M
+Malaysian/MS
+Malcolm/M
+Maldive/MS
+Maldives/M
+Maldivian/MS
+Maldonado/M
+Male/M
+Mali/M
+Malian/SM
+Malibu/M
+Malinda/M
+Malinowski/M
+Mallarme/M
+Mallomars/M
+Mallory/M
+Malone/M
+Malory/M
+Malplaquet/M
+Malraux/M
+Malta/M
+Maltese/M
+Malthus/M
+Malthusian/SM
+Mameluke/M
+Mamet/M
+Mamie/M
+Mamore/M
+Man/M
+Managua/M
+Manama/M
+Manasseh/M
+Manchester/M
+Manchu/SM
+Manchuria/M
+Manchurian/M
+Mancini/M
+Mancunian/MS
+Mandalay/M
+Mandarin/M
+Mandela/M
+Mandelbrot/M
+Mandingo/M
+Mandrell/M
+Mandy/M
+Manet/M
+Manfred/M
+Manhattan/SM
+Mani/M
+Manichean/M
+Manilas
+Manilla/M
+Manitoba/M
+Manitoulin/M
+Manley/M
+Mann/GM
+Mannheim/M
+Manning/M
+Mansfield/M
+Manson/M
+Mantegna/M
+Mantle/M
+Manuel/M
+Manuela/M
+Manx/M
+Mao/M
+Maoism/SM
+Maoist/SM
+Maori/MS
+Mapplethorpe/M
+Maputo/M
+Mar/SM
+Mara/M
+Maracaibo/M
+Marat/M
+Maratha/M
+Marathi/M
+Marathon/M
+Marc/M
+Marceau/M
+Marcel/M
+Marcelino/M
+Marcella/M
+Marcelo/M
+March/MS
+Marci/M
+Marcia/M
+Marciano/M
+Marcie/M
+Marco/MS
+Marconi/M
+Marcos/M
+Marcus/M
+Marcuse
+Marcy/M
+Marduk/M
+Margaret/M
+Margarita/M
+Margarito/M
+Marge/M
+Margery/M
+Margie/M
+Margo/M
+Margot
+Margret/M
+Margrethe/M
+Marguerite/M
+Mari/SM
+Maria/M
+MariaDB/M
+Marian/M
+Mariana/SM
+Marianas/M
+Marianne/M
+Mariano/M
+Maribel/M
+Maricela/M
+Marie/M
+Marietta/M
+Marilyn/M
+Marin/M
+Marina/M
+Marine/SM
+Mario/M
+Marion/M
+Maris/M
+Marisa/M
+Marisol/M
+Marissa/M
+Maritain/M
+Maritza/M
+Mariupol
+Marius/M
+Marjorie/M
+Marjory/M
+Mark/SM
+Markab/M
+Markham/M
+Markov/M
+Marks/M
+Marla/M
+Marlboro/M
+Marlborough/M
+Marlene/M
+Marley/M
+Marlin/M
+Marlon/M
+Marlowe/M
+Marmara/M
+Marne/M
+Maronite/M
+Marple/M
+Marquesas/M
+Marquette/M
+Marquez/M
+Marquis/M
+Marquita/M
+Marrakesh/M
+Marriott/M
+Mars/MS
+Marsala/M
+Marseillaise/MS
+Marseilles/M
+Marsh/M
+Marsha/M
+Marshall/M
+Marta/M
+Martel/M
+Martha/M
+Martial/M
+Martian/SM
+Martin/M
+Martina/M
+Martinez/M
+Martinique/M
+Marty/M
+Marva/M
+Marvell/M
+Marvin/M
+Marx/M
+Marxian
+Marxism/SM
+Marxist/SM
+Mary/M
+Maryann/M
+Maryanne/M
+Maryborough/M
+Maryellen/M
+Maryland/MR
+Marylander/M
+Marylou/M
+Masada/M
+Masai/M
+Masaryk/M
+Mascagni/M
+Masefield/M
+Maserati/M
+Maseru/M
+Mashhad/M
+Mason/MS
+Masonic/M
+Masonite/M
+Mass/MS
+Massachusetts/M
+Massasoit/M
+Massenet/M
+Massey/M
+Master/S
+MasterCard/M
+Masters/M
+Mather/M
+Matheson/M
+Mathew/SM
+Mathews/M
+Mathewson/M
+Mathias/M
+Mathis/M
+Matilda/M
+Matisse/M
+Matlab/M
+Matt/M
+Mattel/M
+Matterhorn/M
+Matthew/SM
+Matthews/M
+Matthias/M
+Mattie/M
+Maud/M
+Maude/M
+Maugham/M
+Maui/M
+Maupassant/M
+Maura/M
+Maureen/M
+Mauriac/M
+Maurice/M
+Mauricio/M
+Maurine/M
+Mauritania/M
+Mauritanian/SM
+Mauritian/SM
+Mauritius/M
+Mauro/M
+Maurois/M
+Mauryan/M
+Mauser/M
+Mavis/M
+Max/M
+Maximilian/M
+Maxine/M
+Maxwell/M
+May/SMR
+Maya/SM
+Mayan/MS
+Mayer/M
+Mayfair/M
+Mayflower/M
+Maynard/M
+Mayo/M
+Maypole
+Mayra/M
+Mays/M
+Maytag/M
+Mazama/M
+Mazarin/M
+Mazatlan/M
+Mazda/M
+Mazola/M
+Mazzini/M
+Mb/M
+Mbabane/M
+Mbini/M
+McAdam/M
+McBride/M
+McCain/M
+McCall/M
+McCarthy/M
+McCarthyism/M
+McCartney/M
+McCarty/M
+McClain/M
+McClellan/M
+McClure/M
+McConnell/M
+McCormick/M
+McCoy/M
+McCray/M
+McCullough/M
+McDaniel/M
+McDonald/M
+McDonnell/M
+McDowell/M
+McEnroe/M
+McFadden/M
+McFarland/M
+McGee/M
+McGovern/M
+McGowan/M
+McGuffey/M
+McGuire/M
+McIntosh/M
+McIntyre/M
+McJob
+McKay/M
+McKee/M
+McKenzie/M
+McKinley/M
+McKinney/M
+McKnight/M
+McLaughlin/M
+McLean/M
+McLeod/M
+McLuhan/M
+McMahon/M
+McMillan/M
+McNamara/M
+McNaughton/M
+McNeil/M
+McPherson/M
+McQueen/M
+McVeigh/M
+Md/M
+Me
+Mead/M
+Meade/M
+Meadows/M
+Meagan/M
+Meany/M
+Mecca/MS
+Medan/M
+Medea/M
+Medellin/M
+Media/M
+Medicaid/SM
+Medicare/SM
+Medici/M
+Medina/M
+Mediterranean/MS
+Medusa/M
+Meg/M
+Megan/M
+Meghan/M
+Meier/M
+Meighen/M
+Meiji/M
+Meir/M
+Mejia/M
+Mekong/M
+Mel/M
+Melanesia/M
+Melanesian/M
+Melanie/M
+Melba/M
+Melbourne/M
+Melchior/M
+Melchizedek/M
+Melendez/M
+Melinda/M
+Melisa/M
+Melisande/M
+Melissa/M
+Mellon/M
+Melody/M
+Melpomene/M
+Melton/M
+Melva/M
+Melville/M
+Melvin/M
+Memcached/M
+Memling/M
+Memphis/M
+Menander/M
+Mencius/M
+Mencken/M
+Mendel/M
+Mendeleev/M
+Mendelian/M
+Mendelssohn/M
+Mendez/M
+Mendocino/M
+Mendoza/M
+Menelaus/M
+Menelik/M
+Menes/M
+Mengzi
+Menkalinan/M
+Menkar/M
+Menkent/M
+Mennen/M
+Mennonite/MS
+Menominee/M
+Menotti/M
+Mensa/M
+Mentholatum/M
+Menuhin/M
+Menzies/M
+Mephisto
+Mephistopheles/M
+Merak/M
+Mercado/M
+Mercator/M
+Mercedes/M
+Mercer/M
+Mercia/M
+Merck/M
+Mercurochrome/M
+Mercury/SM
+Meredith/M
+Merino/M
+Merle/M
+Merlin/M
+Merlot/M
+Merovingian/M
+Merriam/M
+Merrick/M
+Merrill/M
+Merrimack/M
+Merritt/M
+Merthiolate/M
+Merton/M
+Mervin/M
+Mesa/M
+Mesabi/M
+Mesmer/M
+Mesolithic/M
+Mesopotamia/M
+Mesopotamian
+Mesozoic/M
+Messerschmidt/M
+Messiaen/M
+Messiah/M
+Messiahs
+Messianic
+Messieurs
+Metallica/M
+Metamucil/M
+Methodism/SM
+Methodist/SM
+Methuselah/M
+Metternich/M
+Meuse/M
+Mex
+Mexicali/M
+Mexican/MS
+Mexico/M
+Meyer/MS
+Meyerbeer/M
+Meyers/M
+Mfume/M
+Mg/M
+Mgr
+MiG/M
+Mia/M
+Miami/MS
+Miaplacidus/M
+Micah/M
+Micawber/M
+Mich/M
+Michael/M
+Michaelmas/MS
+Micheal/M
+Michel/M
+Michelangelo/M
+Michele/M
+Michelin/M
+Michelle/M
+Michelob/M
+Michelson/M
+Michigan/M
+Michigander/MS
+Michiganite
+Mick/M
+Mickey/M
+Mickie/M
+Micky/M
+Micmac/SM
+Micronesia/M
+Micronesian/M
+Microsoft/M
+Midas/M
+Middleton/M
+Mideast
+Mideastern
+Midland/MS
+Midway/M
+Midwest/M
+Midwestern/MR
+Miguel/M
+Mike/M
+Mikhail/M
+Mikoyan/M
+Milagros/M
+Milan/M
+Milanese
+Mildred/M
+Mildura/M
+Miles/M
+Milford/M
+Milken/M
+Mill/SMR
+Millard/M
+Millay/M
+Miller/M
+Millet/M
+Millicent/M
+Millie/M
+Millikan/M
+Mills/M
+Milne/M
+Milo/M
+Milosevic/M
+Milquetoast/M
+Miltiades/M
+Milton/M
+Miltonian
+Miltonic/M
+Miltown/M
+Milwaukee/M
+Mimi/M
+Mimosa/M
+Min/M
+Minamoto/M
+Mindanao/M
+Mindoro/M
+Mindy/M
+Minerva/M
+Ming/M
+Mingus/M
+Minn
+Minneapolis/M
+Minnelli/M
+Minnesota/M
+Minnesotan/SM
+Minnie/M
+Minoan/MS
+Minolta/M
+Minos/M
+Minot/M
+Minotaur/M
+Minsk/M
+Minsky/M
+Mintaka/M
+Minuit/M
+Minuteman/M
+Miocene/M
+Mir/M
+Mira/M
+Mirabeau/M
+Mirach/M
+Miranda/M
+Mirfak/M
+Miriam/M
+Miro/M
+Mirzam/M
+Miskito/M
+Miss
+Mississauga/M
+Mississippi/M
+Mississippian/SM
+Missouri/M
+Missourian/MS
+Missy/M
+Mistassini/M
+Mister
+Mistress
+Misty/M
+Mitch/M
+Mitchel/M
+Mitchell/M
+Mitford/M
+Mithra/M
+Mithridates/M
+Mitsubishi/M
+Mittagong/M
+Mitterrand/M
+Mitty/M
+Mitzi/M
+Mixtec/M
+Mizar/M
+Mk
+Mlle
+Mme/S
+Mn/M
+Mnemosyne/M
+Mo/M
+Moama/M
+Mobil/M
+Mobile/M
+Mobutu/M
+Modesto/M
+Modigliani/M
+Moe/M
+Moet/M
+Mogadishu/M
+Mogul/MS
+Mohacs/M
+Mohamed/M
+Mohammad/M
+Mohammedan/SM
+Mohammedanism/SM
+Mohave/SM
+Mohawk/SM
+Mohegan
+Moho/M
+Mohorovicic/M
+Moira/M
+Moises/M
+Moiseyev/M
+Mojave/SM
+Moldavia/M
+Moldavian
+Moldova/M
+Moldovan
+Moliere/M
+Molina/M
+Moll/M
+Mollie/M
+Molly/M
+Molnar/M
+Moloch/M
+Molokai/M
+Molotov/M
+Moluccas/M
+Mombasa/M
+Mon/SM
+Mona/M
+Monacan
+Monaco/M
+Mondale/M
+Monday/SM
+Mondrian/M
+Monegasque/SM
+Monera/M
+Monet/M
+MongoDB/M
+Mongol/SM
+Mongolia/M
+Mongolian/SM
+Mongolic/M
+Mongoloid
+Monica/M
+Monique/M
+Monk/M
+Monmouth/M
+Monongahela/M
+Monroe/M
+Monrovia/M
+Monsanto/M
+Monsieur/M
+Monsignor/SM
+Mont/M
+Montague/M
+Montaigne/M
+Montana/M
+Montanan/SM
+Montcalm/M
+Monte/M
+Montenegrin/M
+Montenegro/M
+Monterrey/M
+Montesquieu/M
+Montessori/M
+Monteverdi/M
+Montevideo/M
+Montezuma/M
+Montgolfier/M
+Montgomery/M
+Monticello/M
+Montoya/M
+Montpelier/M
+Montrachet/M
+Montreal/M
+Montserrat/M
+Monty/M
+Moody/M
+Moog/M
+Moon/M
+Mooney/M
+Moor/SM
+Moore/M
+Moorish/M
+Mooroopna/M
+Morales/M
+Moran/M
+Moravia/M
+Moravian/M
+Mordred/M
+More/M
+Moreno/M
+Morgan/SM
+Moriarty/M
+Morin/M
+Morison/M
+Morisset/M
+Morita/M
+Morley/M
+Mormon/SM
+Mormonism/SM
+Moro/M
+Moroccan/SM
+Morocco/M
+Moroni/M
+Morpheus/M
+Morphy/M
+Morris/M
+Morrison/M
+Morrow/M
+Morse/M
+Mort/M
+Mortimer/M
+Morton/M
+Morwell/M
+Mosaic/M
+Moscow/M
+Moseley/M
+Moselle/M
+Moses/M
+Mosley/M
+Moss/M
+Mosul/M
+Motorola/M
+Motown/M
+Motrin/M
+Mott/M
+Moulton/M
+Mount/M
+Mountbatten/M
+Mountie/MS
+Moussorgsky/M
+Mouthe/M
+Mouton/M
+Mowgli/M
+Mozambican/SM
+Mozambique/M
+Mozart/M
+Mozilla/M
+Mr/SM
+Ms/S
+Msgr
+Mt
+Muawiya/M
+Mubarak/M
+Mudgee/M
+Mueller/M
+Muenster/MS
+Mugabe/M
+Muhammad/M
+Muhammadan/MS
+Muhammadanism/SM
+Muir/M
+Mujib/M
+Mulder/M
+Mullen/M
+Muller/M
+Mulligan/M
+Mullikan/M
+Mullins/M
+Mulroney/M
+Multan/M
+Multics
+Mumbai/M
+Mumford/M
+Munch/M
+Munchhausen/M
+Munich/M
+Munoz/M
+Munro/M
+Munster/M
+Muppet/M
+Murasaki/M
+Murat/M
+Murchison/M
+Murcia
+Murdoch/M
+Muriel/M
+Murillo/M
+Murine/M
+Murmansk/M
+Murphy/M
+Murray/M
+Murrow/M
+Murrumbidgee/M
+Muscat/M
+Muscovite/M
+Muscovy/M
+Muse/M
+Musharraf/M
+Musial/M
+Muskogee/M
+Muslim/MS
+Mussolini/M
+Mussorgsky/M
+Muswellbrook/M
+Mutsuhito/M
+Muzak/M
+MySQL/M
+MySpace/M
+Myanmar/M
+Mycenae/M
+Mycenaean/M
+Myers/M
+Mylar/MS
+Myles/M
+Myra/M
+Myrdal/M
+Myrna/M
+Myron/M
+Myrtle/M
+Mysore/M
+Myst/M
+N'Djamena
+N/MD
+NAACP/M
+NAFTA/M
+NASA/M
+NASCAR/M
+NASDAQ/M
+NATO/M
+NB
+NBA/M
+NBC/M
+NBS
+NC
+NCAA/M
+NCO
+ND
+NE/M
+NEH
+NF
+NFC
+NFL/M
+NH
+NHL/M
+NIH
+NIMBY
+NJ
+NLRB
+NM
+NORAD/M
+NOW
+NP
+NPR/M
+NR
+NRA
+NRC
+NS
+NSA/M
+NSC
+NSF
+NSFW
+NT
+NV
+NVIDIA/M
+NW/M
+NWT
+NY
+NYC
+NYSE
+NZ
+Na/M
+Nabisco/M
+Nabokov/M
+Nader/M
+Nadia/M
+Nadine/M
+Nagasaki/M
+Nagoya/M
+Nagpur/M
+Nagy/M
+Nahuatl/MS
+Nahum/M
+Naipaul/M
+Nair/M
+Nairobi/M
+Naismith/M
+Nam/M
+Namath/M
+Namibia/M
+Namibian/MS
+Nan/M
+Nanak/M
+Nanchang/M
+Nancy/M
+Nanette/M
+Nanjing/M
+Nannie/M
+Nanook/M
+Nansen/M
+Nantes/M
+Nantucket/M
+Naomi/M
+Naphtali/M
+Napier/M
+Naples/M
+Napoleon/MS
+Napoleonic/M
+Napster/M
+Narcissus/M
+Narmada/M
+Narnia/M
+Narraganset
+Narragansett/M
+Nash/M
+Nashua/M
+Nashville/M
+Nassau/M
+Nasser/M
+Nat/M
+Natalia/M
+Natalie/M
+Natasha/M
+Natchez/M
+Nate/MN
+Nathan/SM
+Nathaniel/M
+Nathans/M
+Nation/M
+Nationwide/M
+Nativity/M
+Naugahyde/M
+Nauru/M
+Nautilus/M
+Navajo/SM
+Navajoes
+Navarre/M
+Navarro/M
+Navratilova/M
+Navy
+Nazarene/M
+Nazareth/M
+Nazca/M
+Nazi/SM
+Nazism/MS
+Nb/M
+Nd/M
+Ndjamena/M
+Ne/M
+NeWS
+NeWSes
+Neal/M
+Neanderthal/SM
+Neapolitan/M
+Neb
+Nebr
+Nebraska/M
+Nebraskan/MS
+Nebuchadnezzar/M
+Ned/M
+Nefertiti/M
+Negev/M
+Negress/MS
+Negritude
+Negro/MS
+Negroes
+Negroid/SM
+Negros/M
+Nehemiah/M
+Nehru/M
+Neil/M
+Nelda/M
+Nell/M
+Nellie/M
+Nelly/M
+Nelsen/M
+Nelson/M
+Nembutal/M
+Nemesis/M
+Neo/M
+Neogene/M
+Neolithic
+Nepal/M
+Nepalese/M
+Nepali/MS
+Neptune/M
+Nereid/M
+Nerf/M
+Nero/M
+Neruda/M
+Nescafe/M
+Nesselrode/M
+Nestle/M
+Nestor/M
+Nestorius/M
+Netflix/M
+Netherlander/SM
+Netherlands/M
+Netscape/M
+Nettie/M
+Netzahualcoyotl/M
+Nev/M
+Neva/M
+Nevada/M
+Nevadan/SM
+Nevadian
+Nevis/M
+Nevsky/M
+Newark/M
+Newborough/M
+Newcastle/M
+Newfoundland/MRS
+Newman/M
+Newport/M
+Newsweek/M
+Newton/M
+Newtonian/M
+Nexis/M
+Ngaliema/M
+Nguyen/M
+Ni/M
+Niagara/M
+Niamey/M
+Nibelung/M
+Nicaea/M
+Nicaragua/M
+Nicaraguan/SM
+Niccolo/M
+Nice/M
+Nicene/M
+Nichiren/M
+Nicholas/M
+Nichole/M
+Nichols/M
+Nicholson/M
+Nick/M
+Nickelodeon/M
+Nicklaus/M
+Nickolas/M
+Nicobar/M
+Nicodemus/M
+Nicola/SM
+Nicolas/M
+Nicole/M
+Nicosia/M
+Niebuhr/M
+Nielsen/M
+Nietzsche/M
+Nieves/M
+Nigel/M
+Niger/M
+Nigeria/M
+Nigerian/MS
+Nigerien/M
+Nightingale/M
+Nijinsky/M
+Nike/M
+Nikita/M
+Nikkei/M
+Nikki/M
+Nikolai/M
+Nikon/M
+Nile/M
+Nimitz/M
+Nimrod/M
+Nina/M
+Nineveh/M
+Nintendo/M
+Niobe/M
+Nippon/M
+Nipponese/M
+Nirenberg/M
+Nirvana/M
+Nisan/M
+Nisei/M
+Nissan/M
+Nita/M
+Nivea/M
+Nixon/M
+Nkrumah/M
+No/SM
+NoDoz/M
+Noah/M
+Nobel/M
+Nobelist/MS
+Noble/M
+Noe/M
+Noel/SM
+Noelle/M
+Noemi/M
+Nokia/M
+Nola/M
+Nolan/M
+Nome/M
+Nona/M
+Nootka/M
+Nora/M
+Norbert/M
+Norberto/M
+Nordic/MS
+Noreen/M
+Norfolk/M
+Noriega/M
+Norma/M
+Norman/MS
+Normand/M
+Normandy/M
+Norplant/M
+Norris/M
+Norse/M
+Norseman/M
+Norsemen/M
+North/M
+Northampton/M
+Northeast/MS
+Northerner/M
+Northrop/M
+Northrup/M
+Norths
+Northwest/SM
+Norton/M
+Norw
+Norway/M
+Norwegian/SM
+Norwich/M
+Nosferatu/M
+Nostradamus/M
+Nottingham/M
+Nouakchott/M
+Noumea/M
+Nov/M
+Nova/M
+Novartis/M
+November/MS
+Novgorod/M
+Novocain/MS
+Novocaine
+Novokuznetsk/M
+Novosibirsk/M
+Nowra/M
+Noxzema/M
+Noyce/M
+Noyes/M
+Np/M
+Nubia/M
+Nubian/M
+Nukualofa/M
+Numbers/M
+Nunavut/M
+Nunez/M
+Nunki/M
+Nuremberg/M
+Nureyev/M
+NutraSweet/M
+NyQuil/M
+Nyasa/M
+Nyerere/M
+O'Brien/M
+O'Casey/M
+O'Connell/M
+O'Connor/M
+O'Donnell/M
+O'Hara/M
+O'Higgins/M
+O'Keeffe/M
+O'Neil/M
+O'Neill/M
+O'Rourke/M
+O'Toole/M
+O/SM
+OAS/M
+OB
+OCR
+OD/SM
+OE
+OED
+OH
+OHSA/M
+OJ
+OK/SMDG
+OMB/M
+ON
+OPEC/M
+OR
+OS/M
+OSHA/M
+OSes
+OT
+OTB
+OTC
+OTOH
+Oahu/M
+Oakland/M
+Oakley/M
+Oates/M
+Oaxaca/M
+Ob/M
+Obadiah/M
+Obama/M
+Obamacare
+Oberlin/M
+Oberon/M
+Ocaml/M
+Occam/M
+Occident
+Occidental/MS
+Oceania/M
+Oceanside
+Oceanus/M
+Ochoa/M
+Oct/M
+Octavia/M
+Octavian/M
+Octavio/M
+October/SM
+Odell/M
+Oder/M
+Odessa/M
+Odets/M
+Odin/M
+Odis/M
+Odom/M
+Odysseus/M
+Odyssey/M
+Oedipal/M
+Oedipus/M
+Oersted/M
+Ofelia/M
+Offenbach/M
+OfficeMax/M
+Ogbomosho/M
+Ogden/M
+Ogilvy/M
+Oglethorpe/M
+Ohio/M
+Ohioan/SM
+Oise/M
+Ojibwa/SM
+Okayama
+Okeechobee/M
+Okefenokee/M
+Okhotsk/M
+Okinawa/M
+Okinawan
+Okla
+Oklahoma/M
+Oklahoman/M
+Oktoberfest/M
+Ola/M
+Olaf/M
+Olajuwon/M
+Olav/M
+Oldenburg/M
+Oldfield/M
+Oldsmobile/M
+Olduvai/M
+Olen/M
+Olenek/M
+Olga/M
+Oligocene/M
+Olin/M
+Olive/MR
+Oliver/M
+Olivetti/M
+Olivia/M
+Olivier/M
+Ollie/M
+Olmec/M
+Olmsted/M
+Olsen/M
+Olson/M
+Olympia/SM
+Olympiad/MS
+Olympian/MS
+Olympic/SM
+Olympics/M
+Olympus/M
+Omaha/MS
+Oman/M
+Omani/MS
+Omar/M
+Omayyad/M
+Omdurman/M
+Omnipotent
+Omsk/M
+Onassis/M
+Oneal/M
+Onega/M
+Onegin/M
+Oneida/MS
+Onion/M
+Ono/M
+Onondaga/MS
+Onsager/M
+Ont
+Ontarian
+Ontario/M
+Oort/M
+Opal/M
+Opel/M
+OpenOffice/M
+Ophelia/M
+Ophiuchus/M
+Oppenheimer/M
+Opposition
+Oprah/M
+Ora/M
+Oracle/M
+Oran/M
+Orange/M
+Oranjestad/M
+Orbison/M
+Ordovician/M
+Ore/N
+Oreg
+Oregon/M
+Oregonian/SM
+Oreo/M
+Orestes/M
+Orient/M
+Oriental/MS
+Orientalism
+Orin/M
+Orinoco/M
+Orion/M
+Oriya/M
+Orizaba/M
+Orkney/M
+Orlando/M
+Orleans/M
+Orlon/MS
+Orly/M
+Orpheus/M
+Orphic/M
+Orr/M
+Orstralia
+Orstralian
+Orstrylia
+Orstrylian
+Ortega/M
+Orthodox
+Ortiz/M
+Orval/M
+Orville/M
+Orwell/M
+Orwellian/M
+Os/M
+Osage/MS
+Osaka/M
+Osbert/M
+Osborn/M
+Osborne/M
+Oscar/MS
+Osceola/M
+Osgood/M
+Oshawa/M
+Oshkosh/M
+Osiris/M
+Oslo/M
+Osman/M
+Ostrogoth/M
+Ostwald/M
+Osvaldo/M
+Oswald/M
+Othello/M
+Otis/M
+Ottawa/SM
+Otto/M
+Ottoman/M
+Ouagadougou/M
+Ouija/MS
+Ovid/M
+Owen/SM
+Owens/M
+Oxford/SM
+Oxnard/M
+Oxonian/M
+Oxus/M
+Oxycontin/M
+Oz/M
+Ozark/MS
+Ozarks/M
+Ozymandias/M
+Ozzie/M
+P/MN
+PA/M
+PAC/M
+PARC/S
+PASCAL
+PBS/M
+PBX
+PC/SM
+PCB
+PCMCIA
+PCP/M
+PD
+PDF
+PDQ
+PDT
+PE
+PET/M
+PFC
+PG
+PGP
+PHP/M
+PIN
+PJ's
+PLO/M
+PM/SMDG
+PMS/M
+PO
+POW/M
+PP
+PPS
+PR
+PRC/M
+PRO
+PS/M
+PST/M
+PT
+PTA/M
+PTO
+PVC/M
+PW
+PX
+Pa/M
+Paar/M
+Pablo/M
+Pablum/M
+Pabst/M
+Pace/M
+Pacheco/M
+Pacific/M
+Pacino/M
+Packard/M
+Padang
+Paderewski/M
+Padilla/M
+Paganini/M
+Page/M
+Paglia/M
+Pahlavi/M
+Paige/M
+Paine/M
+Paiute/SM
+Pakistan/M
+Pakistani/SM
+Palaeolithic
+Palembang/M
+Paleocene/M
+Paleogene/M
+Paleolithic's
+Paleozoic/M
+Palermo/M
+Palestine/M
+Palestinian/SM
+Palestrina/M
+Paley/M
+Palikir/M
+Palisades/M
+Palladio/M
+Palmer/M
+Palmerston/M
+Palmolive/M
+Palmyra/M
+Palomar/M
+Pam/M
+Pamela/M
+Pamirs/M
+Pampers/M
+Pan/M
+Panama/SM
+Panamanian/MS
+Panasonic/M
+Pandora/M
+Pangaea/M
+Pankhurst/M
+Panmunjom/M
+Pansy/M
+Pantagruel/M
+Pantaloon/M
+Pantheon/M
+Panza/M
+Paracelsus/M
+Paraclete/M
+Paradise
+Paraguay/M
+Paraguayan/MS
+Paralympic/S
+Paramaribo/M
+Paramount/M
+Parana/M
+Parcheesi/M
+Pareto/M
+Paris/M
+Parisian/MS
+Park/SMR
+Parker/M
+Parkes/M
+Parkinson/M
+Parkinsonism
+Parkman/M
+Parks/M
+Parliament/M
+Parmenides
+Parmesan/MS
+Parnassus/MS
+Parnell/M
+Parr/M
+Parrish/M
+Parsifal/M
+Parsons/M
+Parthenon/M
+Parthia/M
+Pasadena/M
+Pascal/SM
+Pasquale/M
+Passion/SM
+Passover/MS
+Pasternak/M
+Pasteur/M
+Pat/M
+Patagonia/M
+Patagonian/M
+Pate/M
+Patel/M
+Paterson/M
+Patna/M
+Patrica/M
+Patrice/M
+Patricia/M
+Patrick/M
+Patsy/M
+Patterson/M
+Patti/M
+Patton/M
+Patty/M
+Paul/GM
+Paula/M
+Paulette/M
+Pauli/M
+Pauline/M
+Pauling/M
+Pavarotti/M
+Pavlov/M
+Pavlova/M
+Pavlovian/M
+Pawnee/SM
+PayPal/M
+Payne/M
+Pb/M
+Pd/M
+Peabody/M
+Peace/M
+Peale/M
+Pearl/M
+Pearlie/M
+Pearson/M
+Peary/M
+Pechora/M
+Peck/M
+Peckinpah/M
+Pecos/M
+Pedro/M
+Peel/M
+Peg/M
+Pegasus/MS
+Peggy/M
+Pei/M
+Peiping/M
+Peking/SM
+Pekingese/SM
+Pele/M
+Pelee/M
+Peloponnese/M
+Pembroke/M
+Pen/M
+Pena/M
+Penderecki/M
+Penelope/M
+Penn/M
+Penna
+Penney/M
+Pennington/M
+Pennsylvania/M
+Pennsylvanian/MS
+Penny/M
+Pennzoil/M
+Pensacola/M
+Pentagon/M
+Pentateuch/M
+Pentax/M
+Pentecost/SM
+Pentecostal/MS
+Pentecostalism
+Pentium/SM
+Peoria/M
+Pepin/M
+Pepsi/M
+Pepys/M
+Pequot/M
+Percheron/M
+Percival/M
+Percy/M
+Perelman/M
+Perez/M
+Periclean/M
+Pericles/M
+Perkins/M
+Perl/SM
+Perm/M
+Permalloy/M
+Permian/M
+Pernod/M
+Peron/M
+Perot/M
+Perrier/M
+Perry/RM
+Perseid/M
+Persephone/M
+Persepolis/M
+Perseus/M
+Pershing/M
+Persia/M
+Persian/SM
+Perth/M
+Peru/M
+Peruvian/MS
+Peshawar/M
+Petain/M
+Pete/RMZ
+Peter/M
+Peters/MN
+Petersen/M
+Peterson/M
+Petra/M
+Petrarch/M
+Petty/M
+Peugeot/M
+Pfc
+Pfizer/M
+PhD/M
+Phaedra/M
+Phaethon/M
+Phanerozoic/M
+Pharaoh/M
+Pharaohs
+Pharisaic
+Pharisaical
+Pharisee/MS
+Phekda/M
+Phelps/M
+Phidias/M
+Phil/MY
+Philadelphia/M
+Philby/M
+Philemon/M
+Philip/MS
+Philippe/M
+Philippians/M
+Philippine/SM
+Philippines/M
+Philips/M
+Philistine/M
+Phillip/SM
+Phillipa/M
+Phillips/M
+Philly/M
+Phipps/M
+Phobos/M
+Phoebe/M
+Phoenicia/M
+Phoenician/SM
+Phoenix/M
+Photostat/MS
+Photostatted
+Photostatting
+Phrygia/M
+Phyllis/M
+Piaf/M
+Piaget/M
+Pianola/M
+Picasso/M
+Piccadilly/M
+Pickering/M
+Pickett/M
+Pickford/M
+Pickwick/M
+Pict/M
+Piedmont/M
+Pierce/M
+Pierre/M
+Pierrot/M
+Pike/M
+Pilate/MS
+Pilates/M
+Pilcomayo/M
+Pilgrim/SM
+Pillsbury/M
+Pinatubo/M
+Pincus/M
+Pindar/M
+Pinkerton/M
+Pinocchio/M
+Pinochet/M
+Pinter/M
+Pinyin
+Pippin/M
+Piraeus/M
+Pirandello/M
+Pisa/M
+Pisces/M
+Pisistratus/M
+Pissaro/M
+Pitcairn/M
+Pitt/SM
+Pittman/M
+Pitts/M
+Pittsburgh/M
+Pius/M
+Pizarro/M
+Pkwy
+Pl
+Planck/M
+Plano
+Plantagenet/M
+Plasticine/M
+Plataea/M
+Plath/M
+Plato/M
+Platonic
+Platonism/M
+Platonist/M
+Platte/M
+Plautus/M
+PlayStation/M
+Playboy/M
+Playtex/M
+Pleiades/M
+Pleistocene/M
+Plexiglas/MS
+Pliny/M
+Pliocene/SM
+Plutarch/M
+Pluto/M
+Plymouth/M
+Pm/M
+Po/M
+Pocahontas/M
+Pocono/SM
+Poconos/M
+Podgorica/M
+Podhoretz/M
+Podunk/M
+Poe/M
+Pogo/M
+Poincare/M
+Poiret/M
+Poirot/M
+Poisson/M
+Poitier/M
+Pokemon/M
+Pol/MY
+Poland/M
+Polanski/M
+Polaris/M
+Polaroid/MS
+Pole/SM
+Polish/M
+Politburo/M
+Polk/M
+Pollard/M
+Pollock/M
+Pollux/M
+Polly/M
+Pollyanna/M
+Polo/M
+Poltava/M
+Polyhymnia/M
+Polynesia/M
+Polynesian/MS
+Polyphemus/M
+Pomerania/M
+Pomeranian/M
+Pomona/M
+Pompadour/M
+Pompeian
+Pompeii/M
+Pompey/M
+Ponce/M
+Pontchartrain/M
+Pontiac/M
+Pontianak/M
+Pooh/M
+Poole/M
+Poona/M
+Pope/M
+Popeye/M
+Popocatepetl/M
+Popper/M
+Poppins/M
+Popsicle/M
+Porfirio/M
+Porrima/M
+Porsche/M
+Port/MR
+Porter/M
+Portia/M
+Portland/M
+Porto/M
+Portsmouth/M
+Portugal/M
+Portuguese/M
+Poseidon/M
+Post/M
+PostgreSQL/M
+Potemkin/M
+Potomac/M
+Potsdam/M
+Pottawatomie/M
+Potter/M
+Potts/M
+Pound/M
+Poussin/M
+Powell/M
+PowerPC/M
+PowerPoint/M
+Powers/M
+Powhatan/M
+Poznan/M
+Pr/M
+Prada/M
+Prado/M
+Praetorian/M
+Prague/M
+Praia/M
+Prakrit/M
+Pratchett/M
+Pratt/M
+Pravda/M
+Praxiteles/M
+Preakness/M
+Precambrian/M
+Preminger/M
+Premyslid/M
+Prensa/M
+Prentice/M
+Pres
+Presbyterian/SM
+Presbyterianism/MS
+Prescott/M
+Presley/M
+Preston/M
+Pretoria/M
+Priam/M
+Pribilof/M
+Price/M
+Priceline/M
+Priestley/M
+Prince/M
+Princeton/M
+Principe/M
+Priscilla/M
+Prius/M
+Private
+Procrustean/M
+Procrustes/M
+Procter/M
+Procyon/M
+Prof
+Prohibition
+Prokofiev/M
+Promethean/M
+Prometheus/M
+Prophets
+Proserpina/M
+Proserpine/M
+Protagoras/M
+Proterozoic/M
+Protestant/MS
+Protestantism/SM
+Proteus/M
+Proudhon/M
+Proust/M
+Provencal/MS
+Provence/M
+Proverbs
+Providence/SM
+Provo/M
+Prozac/MS
+Prudence/M
+Prudential/M
+Pruitt/M
+Prussia/M
+Prussian/MS
+Prut/M
+Pryor/M
+Psalms/M
+Psalter/MS
+Psyche/M
+Pt/M
+Ptah/M
+Ptolemaic/M
+Ptolemy/SM
+Pu/M
+Puccini/M
+Puck/M
+Puckett/M
+Puebla/M
+Pueblo/M
+Puerto
+Puget/M
+Pugh/M
+Pulaski/M
+Pulitzer/M
+Pullman/MS
+Punch/M
+Punic/M
+Punjab/M
+Punjabi/M
+Purana/M
+Purcell/M
+Purdue/M
+Purim/MS
+Purina/M
+Puritan/M
+Puritanism/MS
+Purus/M
+Pusan/M
+Pusey/M
+Pushkin/M
+Pushtu/M
+Putin/M
+Putnam/M
+Puzo/M
+Pvt
+PyTorch/M
+Pygmalion/M
+Pygmy/SM
+Pyle/M
+Pym/M
+Pynchon/M
+Pyongyang/M
+Pyotr/M
+Pyrenees/M
+Pyrex/MS
+Pyrrhic/M
+Pythagoras/M
+Pythagorean/M
+Pythias/M
+Python/M
+Q
+QA
+QB
+QC
+QED
+QM
+QWERTY
+Qaddafi/M
+Qantas/M
+Qatar/M
+Qatari/MS
+Qingdao/M
+Qinghai/M
+Qiqihar/M
+Qom/M
+Quaalude/M
+Quaker/MS
+Quakerism/SM
+Qualcomm/M
+Quaoar/M
+Quasimodo/M
+Quaternary/M
+Quayle/M
+Que
+Queanbeyan/M
+Quebec/M
+Quebecois/M
+Quechua/M
+Queen/MS
+Queens/M
+Queensland/M
+Quentin/M
+Quetzalcoatl/M
+Quezon/M
+Quincy/M
+Quinn/M
+Quintilian/M
+Quinton/M
+Quirinal/M
+Quisling/M
+Quito/M
+Quixote/M
+Quixotism/M
+Qumran/M
+Quonset/M
+Quran
+Quranic
+R/M
+RAF/M
+RAM/SM
+RBI
+RC
+RCA/M
+RCMP
+RD
+RDA
+RDS/M
+REIT
+REM/SM
+RF
+RFC/S
+RFD
+RI
+RIF
+RIP
+RISC
+RN/M
+RNA/M
+ROFL
+ROM/M
+ROTC/M
+RP
+RR
+RSFSR
+RSI
+RSV
+RSVP
+RTFM
+RV/SM
+Ra/M
+Rabat/M
+Rabelais/M
+Rabelaisian/M
+Rabin/M
+Rachael/M
+Rachel/M
+Rachelle/M
+Rachmaninoff/M
+Racine/M
+Radcliffe/M
+Rae/M
+Rafael/M
+Raffles/M
+Ragnarok/M
+Rainier/M
+Raleigh/M
+Ralph/M
+Rama/M
+Ramada/M
+Ramadan/MS
+Ramakrishna/M
+Ramanujan/M
+Ramayana/M
+Rambo/M
+Ramirez/M
+Ramiro/M
+Ramon/M
+Ramona/M
+Ramos/M
+Ramsay/M
+Ramses/M
+Ramsey/M
+Rand/M
+Randal/M
+Randall/M
+Randell/M
+Randi/M
+Randolph/M
+Randy/M
+Rangoon/M
+Rankin/M
+Rankine/M
+Raoul/M
+Raphael/M
+Rappaport/M
+Rapunzel/M
+Raquel/M
+Rasalgethi/M
+Rasalhague/M
+Rasmussen/M
+Rasputin/M
+Rasta
+Rastaban/M
+Rastafarian/MS
+Rastafarianism
+Rather/M
+Ratliff/M
+Raul/M
+Ravel/M
+Rawalpindi/M
+Ray/M
+RayBan/M
+Rayburn/M
+Rayleigh/M
+Raymond/M
+Raymundo/M
+Rb/M
+Rd
+Re/M
+Reading/M
+Reagan/M
+Reaganomics/M
+Realtor/M
+Reasoner/M
+Reba/M
+Rebekah/M
+Recife/M
+Reconstruction/M
+Redback/SM
+Redeemer/M
+Redford/M
+Redgrave/M
+Redis/M
+Redmond/M
+Redshift/M
+Reebok/M
+Reed/M
+Reese/M
+Reeves/M
+Reformation/MS
+Refugio/M
+Reggie/M
+Regina/M
+Reginae/M
+Reginald/M
+Regor/M
+Regulus/M
+Rehnquist/M
+Reich/M
+Reichstag's
+Reid/M
+Reilly/M
+Reinaldo/M
+Reinhardt/M
+Reinhold/M
+Remarque/M
+Rembrandt/M
+Remington/M
+Remus/M
+Rena/M
+Renaissance/SM
+Renascence
+Renault/M
+Rene/M
+Renee/M
+Reno/M
+Renoir/M
+Rep
+Representative
+Republican/SM
+Republicanism
+Requiem/MS
+Resistance
+Restoration/M
+Resurrection
+Reuben/M
+Reunion/M
+Reuters/M
+Reuther/M
+Rev
+Reva/M
+Revelation/SM
+Revelations/M
+Revere/M
+Reverend/M
+Revlon/M
+Rex/M
+Reyes/M
+Reykjavik/M
+Reyna/M
+Reynaldo/M
+Reynolds/M
+Rf/M
+Rh/M
+Rhea/M
+Rhee/M
+Rheingau/M
+Rhenish/M
+Rhiannon/M
+Rhine/M
+Rhineland/M
+Rhoda/M
+Rhode/S
+Rhodes/M
+Rhodesia/M
+Rhodesian
+Rhonda/M
+Rhone/M
+Ribbentrop/M
+Ricardo/M
+Rice/M
+Rich/M
+Richard/MS
+Richards/M
+Richardson/M
+Richelieu/M
+Richie/M
+Richmond/M
+Richter/M
+Richthofen/M
+Rick/M
+Rickenbacker/M
+Rickey/M
+Rickie/M
+Rickover/M
+Ricky/M
+Rico/M
+Riddle/M
+Ride/M
+Riefenstahl/M
+Riel/M
+Riemann/M
+Riesling/MS
+Riga/M
+Rigel/M
+Riggs/M
+Right
+Rigoberto/M
+Rigoletto/M
+Riley/M
+Rilke/M
+Rimbaud/M
+Ringling/M
+Ringo/M
+Rio/SM
+Rios/M
+Ripley/M
+Risorgimento/M
+Rita/M
+Ritalin/M
+Ritz/M
+Rivas/M
+Rivera/M
+Rivers/M
+Riverside
+Riviera/MS
+Riyadh/M
+Rizal/M
+Rn/M
+Roach/M
+Roanoke/M
+Rob/M
+Robbie/M
+Robbin/MS
+Robbins/M
+Robby/M
+Roberson/M
+Robert/MS
+Roberta/M
+Roberto/M
+Roberts/M
+Robertson/M
+Robeson/M
+Robespierre/M
+Robin/M
+Robinson/M
+Robitussin/M
+Robles/M
+Robson/M
+Robt/M
+Robyn/M
+Rocco/M
+Rocha/M
+Rochambeau/M
+Roche/M
+Rochelle/M
+Rochester/M
+Rock/M
+Rockefeller/M
+Rockford/M
+Rockhampton/M
+Rockies/M
+Rockne/M
+Rockwell/M
+Rocky/SM
+Rod/M
+Roddenberry/M
+Roderick/M
+Rodger/MS
+Rodgers/M
+Rodin/M
+Rodney/M
+Rodolfo/M
+Rodrick/M
+Rodrigo/M
+Rodriguez/M
+Rodriquez/M
+Roeg/M
+Roentgen
+Rogelio/M
+Roger/MS
+Rogers/M
+Roget/M
+Rojas/M
+Roku/M
+Rolaids/M
+Roland/M
+Rolando/M
+Rolex/M
+Rolland/M
+Rollerblade/M
+Rollins/M
+Rolodex/M
+Rolvaag/M
+Rom
+Roman/MS
+Romanesque/MS
+Romanian/MS
+Romano/M
+Romanov/M
+Romans/M
+Romansh/M
+Romanticism
+Romany/SM
+Rome/SM
+Romeo/M
+Romero/M
+Rommel/M
+Romney/M
+Romulus/M
+Ron/M
+Ronald/M
+Ronda/M
+Ronnie/M
+Ronny/M
+Ronstadt/M
+Rontgen
+Rooney/M
+Roosevelt/M
+Root/M
+Roquefort/SM
+Rorschach/M
+Rory/M
+Rosa/M
+Rosales/M
+Rosalie/M
+Rosalind/M
+Rosalinda/M
+Rosalyn/M
+Rosanna/M
+Rosanne/M
+Rosario/M
+Roscoe/M
+Rose/M
+Roseann/M
+Roseau/M
+Rosecrans/M
+Rosella/M
+Rosemarie/M
+Rosemary/M
+Rosenberg/M
+Rosendo/M
+Rosenzweig/M
+Rosetta/M
+Rosicrucian/M
+Rosie/M
+Roslyn/M
+Ross/M
+Rossetti/M
+Rossini/M
+Rostand/M
+Rostov/M
+Rostropovich/M
+Roswell/M
+Rotarian/M
+Roth/M
+Rothko/M
+Rothschild/M
+Rotterdam/M
+Rottweiler/M
+Rouault/M
+Roumania/M
+Rourke/M
+Rousseau/M
+Rove/RM
+Rover/M
+Rowe/M
+Rowena/M
+Rowland/M
+Rowling/M
+Roxanne/M
+Roxie/M
+Roxy/M
+Roy/M
+Royal/M
+Royce/M
+Rozelle/M
+Rte
+Ru/MH
+Rubaiyat/M
+Rubbermaid/M
+Ruben/SM
+Rubens/M
+Rubicon/MS
+Rubik/M
+Rubin/M
+Rubinstein/M
+Ruby/M
+Ruchbah/M
+Rudolf/M
+Rudolph/M
+Rudy/M
+Rudyard/M
+Rufus/M
+Ruhr/M
+Ruiz/M
+Rukeyser/M
+Rumpelstiltskin/M
+Rumsfeld/M
+Runnymede/M
+Runyon/M
+Rupert/M
+Rush/M
+Rushdie/M
+Rushmore/M
+Ruskin/M
+Russ/M
+Russel/M
+Russell/M
+Russia/M
+Russian/SM
+Russo/M
+Rustbelt/M
+Rusty/M
+Rutan/M
+Rutgers/M
+Ruth/M
+Rutherford/M
+Ruthie/M
+Rutledge/M
+Rwanda/MS
+Rwandan/SM
+Rwy
+Rx
+Ry
+Ryan/M
+Rydberg/M
+Ryder/M
+Ryukyu/M
+S/MN
+SA
+SAC
+SALT/M
+SAM/M
+SAP/M
+SARS/M
+SASE
+SAT
+SBA
+SC/M
+SCSI/M
+SD
+SDI
+SE/M
+SEATO
+SEC/M
+SF
+SGML/M
+SIDS/M
+SJ
+SJW
+SK
+SLR
+SO/S
+SOB/M
+SOP/M
+SOS/M
+SOSes
+SPCA
+SPF
+SQL
+SQLite/M
+SRO
+SS
+SSA
+SSE/M
+SSS
+SST
+SSW/M
+ST
+STD
+STOL
+SUSE/M
+SUV
+SVN/M
+SW/M
+SWAK
+SWAT
+Saab/M
+Saar/M
+Saarinen/M
+Saatchi/M
+Sabbath/M
+Sabbaths
+Sabik/M
+Sabin/M
+Sabina/M
+Sabine/M
+Sabre/M
+Sabrina/M
+Sacajawea/M
+Sacco/M
+Sachs/M
+Sacramento/M
+Sadat/M
+Saddam/M
+Sadducee/M
+Sade/M
+Sadie/M
+Sadr/M
+Safavid/M
+Safeway/M
+Sagan/M
+Saginaw/M
+Sagittarius/MS
+Sahara/M
+Saharan/M
+Sahel/M
+Saigon/M
+Saiph/M
+Sakai/M
+Sakha/M
+Sakhalin/M
+Sakharov/M
+Saki/M
+Saks/M
+Sal/MY
+Saladin/M
+Salado/M
+Salamis/M
+Salas/M
+Salazar/M
+Sale/M
+Salem/M
+Salerno/M
+Salesforce/M
+Salinas/M
+Salinger/M
+Salisbury/M
+Salish/M
+Salk/M
+Sallie/M
+Sallust/M
+Sally/M
+Salome/M
+Salonika/M
+Salton/M
+Salvador/M
+Salvadoran/SM
+Salvadorean/MS
+Salvadorian/MS
+Salvatore/M
+Salween/M
+Salyut/M
+Sam/M
+Samantha/M
+Samar/M
+Samara/M
+Samaritan/MS
+Samarkand/M
+Sammie/M
+Sammy/M
+Samoa/M
+Samoan/SM
+Samoset/M
+Samoyed/M
+Sampson/M
+Samson/M
+Samsonite/M
+Samsung/M
+Samuel/M
+Samuelson/M
+San'a
+San/M
+Sana/M
+Sanchez/M
+Sancho/M
+Sand/ZM
+Sandburg/M
+Sanders/M
+Sandinista/M
+Sandoval/M
+Sandra/M
+Sandy/M
+Sanford/M
+Sanforized/M
+Sang/MR
+Sanger/M
+Sanhedrin/M
+Sanka/M
+Sankara/M
+Sanskrit/M
+Santa/M
+Santana/M
+Santayana/M
+Santeria/M
+Santiago/M
+Santos/M
+Sappho/M
+Sapporo/M
+Sara/M
+Saracen/MS
+Saragossa/M
+Sarah/M
+Sarajevo/M
+Saran/M
+Sarasota/M
+Saratov/M
+Sarawak/M
+Sardinia/M
+Sargasso/M
+Sargent/M
+Sargon/M
+Sarnoff/M
+Saroyan/M
+Sarto/M
+Sartre/M
+Sasha/M
+Sask
+Saskatchewan/M
+Saskatoon/M
+Sasquatch/MS
+Sassanian/M
+Sassoon/M
+Sat/M
+Satan/M
+Satanism/M
+Satanist/M
+Saturday/MS
+Saturn/M
+Saturnalia/M
+Saudi/MS
+Saul/M
+Saunders/M
+Saundra/M
+Saussure/M
+Sauternes
+Savage/M
+Savannah/M
+Savior/M
+Savonarola/M
+Savoy/M
+Savoyard/M
+Sawyer/M
+Saxon/MS
+Saxony/M
+Sayers/M
+Sb/M
+Sc/M
+Scala/M
+Scan
+Scandinavia/M
+Scandinavian/MS
+Scaramouch/M
+Scarborough/M
+Scarlatti/M
+Scheat/M
+Schedar/M
+Scheherazade/M
+Schelling/M
+Schenectady/M
+Schiaparelli/M
+Schick/M
+Schiller/M
+Schindler/M
+Schlesinger/M
+Schliemann/M
+Schlitz/M
+Schloss/M
+Schmidt/M
+Schnabel/M
+Schnauzer/M
+Schneider/M
+Schoenberg/M
+Schopenhauer/M
+Schrieffer/M
+Schrodinger/M
+Schroeder/M
+Schubert/M
+Schultz/M
+Schulz/M
+Schumann/M
+Schumpeter/M
+Schuyler/M
+Schuylkill/M
+Schwartz/M
+Schwarzenegger/M
+Schwarzkopf/M
+Schweitzer/M
+Schweppes/M
+Schwinger/M
+Schwinn/M
+Scientologist/SM
+Scientology/M
+Scipio/M
+Scopes/M
+Scorpio/SM
+Scorpius/M
+Scorsese/M
+Scot/SM
+Scotch/MS
+Scotchman/M
+Scotchmen/M
+Scotchwoman/M
+Scotchwomen/M
+Scotia/M
+Scotland/M
+Scotsman/M
+Scotsmen/M
+Scotswoman/M
+Scotswomen/M
+Scott/M
+Scottie/SM
+Scottish/M
+Scottsdale/M
+Scrabble/MS
+Scranton/M
+Scriabin/M
+Scribner/M
+Scripture/SM
+Scrooge/M
+Scruggs/M
+Scud/M
+Sculley/M
+Scylla/M
+Scythia/M
+Scythian/M
+Se/MH
+Seaborg/M
+Seagram/M
+Sean/M
+Sears/M
+Seattle/M
+Sebastian/M
+Sec
+Seconal/M
+Secretariat/M
+Secretary
+Seder/MS
+Sedna/M
+Seebeck/M
+Seeger/M
+Sega/M
+Segovia/M
+Segre/M
+Segundo/M
+Segway/S
+Seiko/M
+Seine/M
+Seinfeld/M
+Sejong/M
+Selassie/M
+Selectric/M
+Selena/M
+Seleucid/M
+Seleucus/M
+Selim/M
+Seljuk/M
+Selkirk/M
+Sellers/M
+Selma/M
+Selznick/M
+Semarang/M
+Seminole/MS
+Semiramis/M
+Semite/MS
+Semitic/SM
+Semtex/M
+Senate/MS
+Sendai/M
+Seneca/MS
+Senegal/M
+Senegalese/M
+Senghor/M
+Senior/M
+Sennacherib/M
+Sennett/M
+Sensurround/M
+Seoul/M
+Sep
+Sephardi/M
+Sepoy/M
+Sept/M
+September/MS
+Septuagint/MS
+Sequoya/M
+Serb/SM
+Serbia/M
+Serbian/MS
+Serena/M
+Serengeti/M
+Sergei/M
+Sergio/M
+Serpens/M
+Serra/M
+Serrano/M
+Set/M
+Seth/M
+Seton/M
+Seurat/M
+Seuss/M
+Sevastopol/M
+Severn/M
+Severus/M
+Seville/M
+Sevres/M
+Seward/M
+Sextans/M
+Sexton/M
+Seychelles/M
+Seyfert/M
+Seymour/M
+Sgt
+Shaanxi/M
+Shackleton/M
+Shaffer/M
+Shah/M
+Shaka/M
+Shaker
+Shakespeare/M
+Shakespearean/M
+Shana/M
+Shandong/M
+Shane/M
+Shanghai/M
+Shankara/M
+Shanna/M
+Shannon/M
+Shantung/M
+Shanxi/M
+Shapiro/M
+SharePoint/M
+Shari'a/M
+Shari/M
+Sharif/M
+Sharlene/M
+Sharon/M
+Sharp/M
+Sharpe/M
+Sharron/M
+Shasta/M
+Shaula/M
+Shaun/M
+Shauna/M
+Shavian/M
+Shavuot/M
+Shaw/M
+Shawn/M
+Shawna/M
+Shawnee/SM
+Shcharansky/M
+Shea/M
+Sheba/M
+Shebeli/M
+Sheena/M
+Sheetrock/M
+Sheffield/M
+Sheila/M
+Shelby/M
+Sheldon/M
+Shelia/M
+Shell/M
+Shelley/M
+Shelly/M
+Shelton/M
+Shenandoah/M
+Shenyang/M
+Sheol/M
+Shepard/M
+Shepherd/M
+Sheppard/M
+Shepparton/M
+Sheratan/M
+Sheraton/M
+Sheree/M
+Sheri/M
+Sheridan/M
+Sherlock/M
+Sherman/M
+Sherpa/M
+Sherri/M
+Sherrie/M
+Sherry/M
+Sherwood/M
+Sheryl/M
+Shetland/SM
+Shetlands/M
+Shevardnadze/M
+Shevat/M
+Shi'ite/M
+Shields/M
+Shiite/MS
+Shijiazhuang/M
+Shikoku/M
+Shillong/M
+Shiloh/M
+Shinto/MS
+Shintoism/MS
+Shintoist/MS
+Shiraz/M
+Shirley/M
+Shiva/M
+Shockley/M
+Short/M
+Shorthorn/M
+Shoshone/SM
+Shostakovitch/M
+Shrek/M
+Shreveport/M
+Shriner/M
+Shropshire/M
+Shula/M
+Shylock/M
+Shylockian/M
+Si/M
+Siam/M
+Siamese/M
+Sibelius/M
+Siberia/M
+Siberian/MS
+Sibyl/M
+Sichuan/M
+Sicilian/SM
+Sicily/M
+Sid/M
+Siddhartha/M
+Sidney/M
+Siegfried/M
+Siemens/M
+Sierpinski/M
+Sierras
+Sigismund/M
+Sigmund/M
+Sigurd/M
+Sihanouk/M
+Sikh/M
+Sikhism
+Sikhs
+Sikkim/M
+Sikkimese/M
+Sikorsky/M
+Silas/M
+Silesia/M
+Silurian/SM
+Silva/M
+Silvia/M
+Simenon/M
+Simmental/M
+Simmons/M
+Simon/M
+Simone/M
+Simpson/SM
+Simpsons/M
+Sims/M
+Sinai/M
+Sinatra/M
+Sinbad/M
+Sinclair/M
+Sindbad/M
+Sindhi/M
+Singapore/M
+Singaporean/SM
+Singer/M
+Singh/M
+Singleton/M
+Sinhalese/M
+Sinkiang/M
+Sioux/M
+Sir/SM
+Sirius/M
+Sistine/M
+Sisyphean/M
+Sisyphus/M
+Siva/M
+Sivan/M
+Sjaelland/M
+Skinner/M
+Skippy/M
+Skopje/M
+Skye/M
+Skylab/M
+Skype/M
+Slackware/M
+Slashdot/M
+Slater/M
+Slav/SM
+Slavic/M
+Slavonic/M
+Slinky/M
+Sloan/M
+Sloane/M
+Slocum/M
+Slovak/SM
+Slovakia/M
+Slovakian
+Slovene/SM
+Slovenia/M
+Slovenian/MS
+Slurpee/M
+Sm/M
+Small/M
+Smetana/M
+Smirnoff/M
+Smith/M
+Smithson/M
+Smithsonian/M
+Smokey/M
+Smolensk/M
+Smollett/M
+Smuts/M
+Smyrna
+Sn/M
+Snake/M
+Snapple/M
+Snead/M
+Snell/M
+Snickers/M
+Snider/M
+Snoopy/M
+Snow/M
+Snowbelt/M
+Snyder/M
+Soave/M
+Soc
+Socorro/M
+Socrates/M
+Socratic/M
+Soddy/M
+Sodom/M
+Sofia/M
+Soho/M
+Sol/M
+Solis/M
+Solomon/M
+Solon/M
+Solzhenitsyn/M
+Somali/SM
+Somalia/M
+Somalian/MS
+Somme/M
+Somoza/M
+Son/M
+Sondheim/M
+Sondra/M
+Songhai/M
+Songhua/M
+Sonia/M
+Sonja/M
+Sonny/M
+Sonora/M
+Sontag/M
+Sony/M
+Sonya/M
+Sophia/M
+Sophie/M
+Sophoclean/M
+Sophocles/M
+Sopwith/M
+Sorbonne/M
+Sosa/M
+Soto/M
+Souphanouvong/M
+Sourceforge/M
+Sousa/M
+South/M
+Southampton/M
+Southeast/MS
+Southerner/SM
+Southey/M
+Souths
+Southwest/MS
+Soviet/M
+Soweto/M
+Soyinka/M
+Soyuz/M
+Sp
+Spaatz/M
+Spackle/M
+Spahn/M
+Spain/M
+Spam/M
+Span
+Spanglish
+Spaniard/SM
+Spanish/M
+Sparks/M
+Sparta/M
+Spartacus/M
+Spartan/MS
+Spears/M
+Speer/M
+Spence/RM
+Spencer/M
+Spencerian/M
+Spengler/M
+Spenglerian/M
+Spenser/M
+Spenserian/M
+Sperry/M
+Sphinx/M
+Spica/M
+Spielberg/M
+Spillane/M
+Spinoza/M
+Spinx/M
+Spiro/M
+Spirograph/M
+Spitsbergen/M
+Spitz/M
+Spock/M
+Spokane/M
+Springfield/M
+Springsteen/M
+Sprint/M
+Sprite/M
+Sputnik/M
+Sq
+Squanto/M
+Squibb/M
+Sr/M
+Srinagar/M
+Srivijaya/M
+St
+Sta
+Stacey/M
+Staci/M
+Stacie/M
+Stacy/M
+Stael/M
+Stafford/M
+StairMaster/M
+Stalin/M
+Stalingrad/M
+Stalinist/M
+Stallone/M
+Stamford/M
+Stan/M
+Standish/M
+Stanford/M
+Stanislavsky/M
+Stanley/M
+Stanton/M
+Staples/M
+Starbucks/M
+Stark/M
+Starkey/M
+Starr/M
+Staten/M
+States
+Staubach/M
+Ste
+Steadicam/M
+Steele/M
+Stefan/M
+Stefanie/M
+Stein/MR
+Steinbeck/M
+Steinem/M
+Steiner/M
+Steinmetz/M
+Steinway/M
+Stella/M
+Stendhal/M
+Stengel/M
+Stephan/M
+Stephanie/M
+Stephen/MS
+Stephens/M
+Stephenson/M
+Sterling/M
+Stern/M
+Sterne/M
+Sterno/M
+Stetson/M
+Steuben/M
+Steve/M
+Steven/MS
+Stevens/M
+Stevenson/M
+Stevie/M
+Stewart/M
+Stieglitz/M
+Stilton/SM
+Stimson/M
+Stine/M
+Stirling/M
+Stockhausen/M
+Stockholm/M
+Stockton/M
+Stoic/SM
+Stoicism/MS
+Stokes/M
+Stolichnaya/M
+Stolypin/M
+Stone/M
+Stonehenge/M
+Stoppard/M
+Stout/M
+Stowe/M
+Strabo/M
+Stradivari
+Stradivarius/M
+Strasbourg/M
+Strauss/M
+Stravinsky/M
+Straya
+Streisand/M
+Strickland/M
+Strindberg/M
+Strine
+Stromboli/M
+Strong/M
+Stu/M
+Stuart/MS
+Studebaker/M
+Stuttgart/M
+Stuyvesant/M
+Stygian/M
+Styrofoam/SM
+Styron/M
+Styx/M
+Suarez/M
+Subaru/M
+Sucre/M
+Sucrets/M
+Sudan/M
+Sudanese/M
+Sudetenland/M
+Sudoku/M
+Sudra/M
+Sue/M
+Suetonius/M
+Suez/M
+Suffolk/M
+Sufi/M
+Sufism/M
+Suharto/M
+Sui/M
+Sukarno/M
+Sukkot
+Sulawesi/M
+Suleiman/M
+Sulla/M
+Sullivan/M
+Sumatra/M
+Sumatran/SM
+Sumeria/M
+Sumerian/SM
+Summer/MS
+Summers/M
+Sumner/M
+Sumter/M
+Sun/SM
+Sunbeam/M
+Sunbelt/M
+Sundanese/M
+Sundas/M
+Sunday/MS
+Sung/M
+Sunkist/M
+Sunni/SM
+Sunnite/MS
+Sunnyvale/M
+Superbowl/M
+Superfund/M
+Superglue/M
+Superior/M
+Superman/M
+Supt
+Surabaya/M
+Surat/M
+Suriname/M
+Surinamese
+Surya/M
+Susan/M
+Susana/M
+Susanna/M
+Susanne/M
+Susie/M
+Susquehanna/M
+Sussex/M
+Sutherland/M
+Sutton/M
+Suva/M
+Suwanee/M
+Suzanne/M
+Suzette/M
+Suzhou/M
+Suzuki/M
+Suzy/M
+Svalbard/M
+Sven/M
+Svengali/M
+Sverdlovsk
+Swahili/SM
+Swammerdam/M
+Swanee/M
+Swansea/M
+Swanson/M
+Swazi/SM
+Swaziland/M
+Swed/N
+Swede/SM
+Sweden/M
+Swedenborg/M
+Swedish/M
+Sweeney/M
+Sweet/M
+Swift/M
+Swinburne/M
+Swiss/MS
+Swissair/M
+Switz
+Switzerland/M
+Sybil/M
+Sydney/M
+Sykes/M
+Sylvester/M
+Sylvia/M
+Sylvie/M
+Synge/M
+Syracuse/M
+Syria/M
+Syriac/M
+Syrian/MS
+Szilard/M
+Szymborska/M
+T'ang/M
+T/MDG
+TA
+TARP
+TB/M
+TBA
+TD
+TDD
+TEFL
+TELNET/S
+TELNETTed
+TELNETTing
+TESL
+TESOL
+TGIF
+THC
+TKO/M
+TLC/M
+TM
+TN
+TNT/M
+TOEFL
+TQM
+TV/SM
+TVA
+TWA/M
+TWX
+TX
+Ta/M
+Tabasco/SM
+Tabatha/M
+Tabernacle/MS
+Tabitha/M
+Tabriz/MS
+Tacitus/M
+Tacoma/M
+Tad/M
+Tadzhik/M
+Taegu/M
+Taejon/M
+Taft/M
+Tagalog/SM
+Tagore/M
+Tagus/M
+Tahiti/M
+Tahitian/MS
+Tahoe/M
+Taichung/M
+Tainan
+Taine/M
+Taipei/M
+Taiping/M
+Taiwan/M
+Taiwanese/M
+Taiyuan/M
+Tajikistan/M
+Taklamakan/M
+Talbot/M
+Taliban/M
+Taliesin/M
+Tallahassee/M
+Tallchief/M
+Talley/M
+Talleyrand/M
+Tallinn/M
+Talmud/MS
+Talmudic
+Talmudist
+Tamara/M
+Tameka/M
+Tamera/M
+Tamerlane/M
+Tami/M
+Tamika/M
+Tamil/MS
+Tammany/M
+Tammi/M
+Tammie/M
+Tammuz/M
+Tammy/M
+Tampa/M
+Tampax/M
+Tamra/M
+Tamworth/M
+Tancred/M
+Taney/M
+Tanganyika/M
+Tangier/MS
+Tangshan/M
+Tania/M
+Tanisha/M
+Tanner/M
+Tannhauser/M
+Tantalus/M
+Tanya/M
+Tanzania/M
+Tanzanian/SM
+Tao/M
+Taoism/MS
+Taoist/MS
+Tara/M
+Tarantino/M
+Tarawa/M
+Tarazed/M
+Tarbell/M
+Taree/M
+Target/M
+Tarim/M
+Tarkenton/M
+Tarkington/M
+Tartary/M
+Tartuffe/M
+Tarzan/M
+Tasha/M
+Tashkent/M
+Tasman/M
+Tasmania/M
+Tasmanian/M
+Tass/M
+Tassie/MS
+Taswegian/SM
+Tatar/MS
+Tate/M
+Tatum/M
+Taurus/MS
+Tawney/M
+Taylor/M
+Tb/M
+Tbilisi/M
+Tc/M
+Tchaikovsky/M
+Te/M
+TeX
+TeXes
+Teasdale/M
+Technicolor/M
+Tecumseh/M
+Ted/M
+Teddy/M
+Teflon/MS
+Tegucigalpa/M
+Tehran
+TelePrompTer
+TelePrompter/M
+Telemachus/M
+Telemann/M
+Teletype
+Tell/MR
+Teller/M
+Telugu/M
+Tempe
+Templar/M
+Tenn/M
+Tennessean/SM
+Tennessee/M
+Tennyson/M
+Tennysonian
+Tenochtitlan/M
+TensorFlow/M
+Teotihuacan/M
+Terence/M
+Teresa/M
+Tereshkova/M
+Teri/M
+Terkel/M
+Terpsichore/M
+Terr/M
+Terra/M
+Terran/M
+Terrance/M
+Terrell/M
+Terrence/M
+Terri/M
+Terrie/M
+Terry/M
+Tertiary/M
+Tesla/M
+Tess/M
+Tessa/M
+Tessie/M
+Tet/M
+Tethys/M
+Tetons/M
+Teuton/MS
+Teutonic/M
+Tevet/M
+Tex/M
+Texaco/M
+Texan/MS
+Texas/M
+Th/M
+Thackeray/M
+Thad/M
+Thaddeus/M
+Thai/SM
+Thailand/M
+Thales/M
+Thalia/M
+Thames/M
+Thanh/M
+Thanksgiving/MS
+Thant/M
+Thar/M
+Tharp/M
+Thatcher/M
+Thea/M
+Thebes/M
+Theiler/M
+Thelma/M
+Themistocles/M
+Theocritus/M
+Theodora/M
+Theodore/M
+Theodoric/M
+Theodosius/M
+Theosophy/M
+Theravada/M
+Theresa/M
+Therese/M
+Thermopylae/M
+Thermos
+Theron/M
+Theseus/M
+Thespian/M
+Thespis/M
+Thessalonian/SM
+Thessaloniki/M
+Thessaly/M
+Thieu/M
+Thimbu/M
+Thimphu
+Thomas/M
+Thomism/M
+Thomistic/M
+Thompson/M
+Thomson/M
+Thor/M
+Thorazine/M
+Thoreau/M
+Thornton/M
+Thoroughbred/M
+Thorpe/M
+Thoth/M
+Thrace/M
+Thracian/M
+Thu
+Thucydides/M
+Thule/M
+Thunderbird/M
+Thur/S
+Thurber/M
+Thurman/M
+Thurmond/M
+Thursday/SM
+Thutmose/M
+Ti/M
+Tia/M
+Tianjin/M
+Tiber/M
+Tiberius/M
+Tibet/M
+Tibetan/MS
+Ticketmaster/M
+Ticonderoga/M
+Tide/M
+Tienanmen/M
+Tiffany/M
+Tigris/M
+Tijuana/M
+Tillich/M
+Tillman/M
+Tilsit/M
+Tim/M
+Timbuktu/M
+Timex/M
+Timmy/M
+Timon/M
+Timothy/M
+Timour/M
+Timur/M
+Timurid/M
+Tina/M
+Ting/M
+Tinkerbell/M
+Tinkertoy/M
+Tinseltown/M
+Tintoretto/M
+Tippecanoe/M
+Tipperary/M
+Tirane
+Tiresias/M
+Tirol/M
+Tirolean
+Tisha/M
+Tishri/M
+Titan/SM
+Titania/M
+Titanic/M
+Titian/M
+Titicaca/M
+Tito/M
+Titus/M
+Tl/M
+Tlaloc/M
+Tlingit/M
+Tm/M
+Tobago/M
+Tobit/M
+Toby/M
+Tocantins/M
+Tocqueville/M
+Tod/M
+Todd/M
+Togo/M
+Togolese/M
+Tojo/M
+Tokay/M
+Tokugawa/M
+Tokyo/M
+Tokyoite
+Toledo/MS
+Tolkien/M
+Tolstoy/M
+Toltec/M
+Tolyatti/M
+Tom/M
+Tomas/M
+Tombaugh/M
+Tomlin/M
+Tommie/M
+Tommy/M
+Tompkins/M
+Tomsk/M
+Tonga/M
+Tongan/MS
+Toni/M
+Tonia/M
+Tonto/M
+Tony/M
+Tonya/M
+Toowoomba/M
+Topeka/M
+Topsy/M
+Torah/M
+Torahs
+Toronto/M
+Torquemada/M
+Torrance/M
+Torrens/M
+Torres/M
+Torricelli/M
+Tortola/M
+Tortuga/M
+Torvalds/M
+Tory/SM
+Tosca/M
+Toscanini/M
+Toshiba/M
+Toto/M
+Toulouse/M
+Townes/M
+Townsend/M
+Townsville/M
+Toynbee/M
+Toyoda/M
+Toyota/M
+Tracey/M
+Traci/M
+Tracie/M
+Tracy/M
+Trafalgar/M
+Trailways/M
+Trajan/M
+Tran/M
+Transcaucasia/M
+Transvaal/M
+Transylvania/M
+Transylvanian/M
+Trappist/SM
+Traralgon/M
+Travis/M
+Travolta/M
+Treasury/SM
+Treblinka/M
+Trekkie/M
+Trent/M
+Trenton/M
+Trevelyan/M
+Trevino/M
+Trevor/M
+Trey/M
+Triangulum/M
+Triassic/M
+Tricia/M
+Trident/M
+Trieste/M
+Trimurti/M
+Trina/M
+Trinidad/M
+Trinidadian/MS
+Trinity/SM
+Tripitaka/M
+Tripoli/M
+Trippe/M
+Trisha/M
+Tristan/M
+Triton/M
+Trobriand/M
+Troilus/M
+Trojan/MS
+Trollope/M
+Trondheim/M
+Tropicana/M
+Trotsky/M
+Troy/M
+Troyes
+Truckee/M
+Trudeau/M
+Trudy/M
+Truffaut/M
+Trujillo/M
+Truman/M
+Trumbull/M
+Trump/M
+Truth/M
+Tsimshian/M
+Tsiolkovsky/M
+Tsitsihar/M
+Tsongkhapa/M
+Tswana/M
+Tu/M
+Tuamotu/M
+Tuareg/M
+Tubman/M
+Tucker/M
+Tucson/M
+Tucuman/M
+Tudor/SM
+Tue/S
+Tues/M
+Tuesday/MS
+Tulane/M
+Tull/M
+Tulsa/M
+Tulsidas/M
+Tums/M
+Tuncurry/M
+Tungus/M
+Tunguska/M
+Tunis/M
+Tunisia/M
+Tunisian/MS
+Tunney/M
+Tupi/M
+Tupperware/M
+Tupungato/M
+Turgenev/M
+Turin/M
+Turing/M
+Turk/SM
+Turkestan/M
+Turkey/M
+Turkic/MS
+Turkish/M
+Turkmenistan/M
+Turner/M
+Turpin/M
+Tuscaloosa/M
+Tuscan/M
+Tuscany/M
+Tuscarora/MS
+Tuscon/M
+Tuskegee/M
+Tussaud/M
+Tut/M
+Tutankhamen/M
+Tutsi/M
+Tutu/M
+Tuvalu/M
+Tuvaluan
+Twain/M
+Tweed/M
+Tweedledee/M
+Tweedledum/M
+Twila/M
+Twinkies/M
+Twitter/M
+Twizzlers/M
+Twp
+Ty/M
+Tycho/M
+Tylenol/M
+Tyler/M
+Tyndale/M
+Tyndall/M
+Tyre/M
+Tyree/M
+Tyrolean
+Tyrone/M
+Tyson/M
+U/M
+UAR
+UAW
+UBS/M
+UCLA/M
+UFO/SM
+UHF/M
+UK/M
+UL
+UN/M
+UNESCO/M
+UNICEF/M
+UNIX/M
+UPC
+UPI/M
+UPS/M
+URL/S
+US/M
+USA/M
+USAF
+USB
+USCG
+USDA/M
+USIA
+USMC
+USN
+USO
+USP
+USPS
+USS
+USSR/M
+UT/M
+UTC
+UV/M
+Ubangi/M
+Ubuntu/M
+Ucayali/M
+Uccello/M
+Udall/M
+Ufa/M
+Uganda/M
+Ugandan/MS
+Uighur/M
+Ujungpandang/M
+Ukraine/M
+Ukrainian/SM
+Ulladulla/M
+Ulster/M
+Ultrasuede/M
+Ulverstone/M
+Ulyanovsk/M
+Ulysses/M
+Umbriel/M
+Underwood/M
+Ungava/M
+Unicode/M
+Unilever/M
+Union/SM
+Unionist
+Uniroyal/M
+Unitarian/MS
+Unitarianism/MS
+Unitas/M
+Unix/S
+Unukalhai/M
+Upanishads/M
+Updike/M
+Upjohn/M
+Upton/M
+Ur/M
+Ural/SM
+Urals/M
+Urania/M
+Uranus/M
+Urban/M
+Urdu/M
+Urey/M
+Uriah/M
+Uriel/M
+Uris/M
+Urquhart/M
+Ursa/M
+Ursula/M
+Ursuline/M
+Uruguay/M
+Uruguayan/MS
+Urumqi/M
+Usenet/MS
+Ustinov/M
+Ut
+Utah/M
+Utahan/MS
+Ute/SM
+Utopia/SM
+Utopian/SM
+Utrecht/M
+Utrillo/M
+Uzbek/M
+Uzbekistan/M
+Uzi/SM
+V/M
+VA
+VAT/M
+VAX
+VAXes
+VBA/M
+VCR/M
+VD/M
+VDT
+VDU
+VF
+VFW/M
+VG
+VGA
+VHF/M
+VHS
+VI/M
+VIP/SM
+VISTA
+VJ
+VLF/M
+VOA
+VP
+VT
+VTOL
+Va/M
+Vader/M
+Vaduz/M
+Val/M
+Valarie/M
+Valdez/M
+Valencia/SM
+Valenti/M
+Valentin/M
+Valentine/M
+Valentino/M
+Valenzuela/M
+Valeria/M
+Valerian/M
+Valerie/M
+Valery/M
+Valhalla/M
+Valium/MS
+Valkyrie/SM
+Vallejo
+Valletta/M
+Valois/M
+Valparaiso/M
+Valvoline/M
+Van/M
+Vance/M
+Vancouver/M
+Vandal/MS
+Vanderbilt/M
+Vandyke/M
+Vanessa/M
+Vang/M
+Vanuatu/M
+Vanzetti/M
+Varanasi/M
+Varese/M
+Vargas/M
+Vaseline/SM
+Vasquez/M
+Vassar/M
+Vatican/M
+Vauban/M
+Vaughan/M
+Vaughn/M
+Vazquez/M
+Veblen/M
+Veda/SM
+Vedanta/M
+Vega/SM
+Vegas/M
+Vegemite/M
+Vela/M
+Velasquez/M
+Velazquez/M
+Velcro/MS
+Velez/M
+Velma/M
+Velveeta/M
+Venetian/SM
+Venezuela/M
+Venezuelan/SM
+Venice/M
+Venn/M
+Ventolin/M
+Venus/MS
+Venusian/M
+Vera/M
+Veracruz/M
+Verde/M
+Verdi/M
+Verdun/M
+Verizon/M
+Verlaine/M
+Vermeer/M
+Vermont/ZMR
+Vermonter/M
+Vern/M
+Verna/M
+Verne/M
+Vernon/M
+Verona/M
+Veronese/M
+Veronica/M
+Versailles/M
+Vesalius/M
+Vespasian/M
+Vespucci/M
+Vesta/M
+Vesuvius/M
+Viacom/M
+Viagra/M
+Vic/M
+Vicente/M
+Vichy/M
+Vicki/M
+Vickie/M
+Vicksburg/M
+Vicky/M
+Victor/M
+Victoria/M
+Victorian/MS
+Victorianism
+Victrola/M
+Vidal/M
+Vienna/M
+Viennese/M
+Vientiane/M
+Vietcong/M
+Vietminh/M
+Vietnam/M
+Vietnamese/M
+Vijayanagar/M
+Vijayawada/M
+Viking/MS
+Vila/M
+Villa/M
+Villarreal/M
+Villon/M
+Vilma/M
+Vilnius/M
+Vilyui/M
+Vince/M
+Vincent/M
+Vindemiatrix/M
+Vinson/M
+Viola/M
+Violet/M
+Virgie/M
+Virgil/M
+Virginia/M
+Virginian/SM
+Virgo/SM
+Visa/M
+Visayans/M
+Vishnu/M
+Visigoth/M
+Visigoths
+Vistula/M
+Vitim/M
+Vito/M
+Vitus/M
+Vivaldi/M
+Vivekananda/M
+Vivian/M
+Vivienne/M
+Vlad/M
+Vladimir/M
+Vladivostok/M
+Vlaminck/M
+Vlasic/M
+VoIP
+Vogue/M
+Volcker/M
+Voldemort/M
+Volga/M
+Volgograd/M
+Volkswagen/M
+Volstead/M
+Volta/M
+Voltaire/M
+Volvo/M
+Vonda/M
+Vonnegut/M
+Voronezh/M
+Vorster/M
+Voyager/M
+Vt
+Vuitton/M
+Vulcan/M
+Vulg
+Vulgate/SM
+W/MDT
+WA
+WAC
+WASP/M
+WATS/M
+WC
+WHO/M
+WI
+WMD
+WNW/M
+WP
+WSW/M
+WTO
+WV
+WW
+WWI
+WWII
+WWW/M
+WY
+WYSIWYG
+Wabash/M
+Wac
+Waco/M
+Wade/M
+Wagga/M
+Wagner/M
+Wagnerian/M
+Wahhabi/M
+Waikiki/M
+Waite/M
+Wake/M
+Waksman/M
+Wald/MN
+Waldemar/M
+Walden/M
+Waldensian/M
+Waldheim/M
+Waldo/M
+Waldorf/M
+Wales/M
+Walesa/M
+Walgreen/SM
+Walgreens/M
+Walker/M
+Walkman/M
+Wall/SMR
+Wallace/M
+Wallenstein/M
+Waller/M
+Wallis/M
+Walloon/M
+Walls/M
+Walmart/M
+Walpole/M
+Walpurgisnacht/M
+Walsh/M
+Walt/MRZ
+Walter/M
+Walters/M
+Walton/M
+Wanamaker/M
+Wanda/M
+Wang/M
+Wangaratta/M
+Wankel/M
+Ward/M
+Ware/MG
+Warhol/M
+Waring/M
+Warner/M
+Warragul/M
+Warren/M
+Warrnambool/M
+Warsaw/M
+Warwick/M
+Wasatch/M
+Wash/M
+Washington/M
+Washingtonian/MS
+Wassermann/M
+Waterbury/M
+Waterford/M
+Watergate/M
+Waterloo/MS
+Waters/M
+Watkins/M
+Watson/M
+Watt/SM
+Watteau/M
+Watts/M
+Watusi/M
+Waugh/M
+Wave
+Wayne/M
+Weaver/M
+Web/MR
+Webb/M
+Weber/M
+Webern/M
+Webster/MS
+Wed/M
+Weddell/M
+Wedgwood/M
+Wednesday/MS
+Weeks/M
+Wehrmacht/M
+Wei/M
+Weierstrass/M
+Weill/M
+Weinberg/M
+Weiss/M
+Weissmuller/M
+Weizmann/M
+Weldon/M
+Welland/M
+Weller/M
+Welles/M
+Wellington/SM
+Wells/M
+Welsh/M
+Welshman/M
+Welshmen/M
+Welshwoman
+Wendell/M
+Wendi/M
+Wendy/M
+Wentworth/M
+Wesak/M
+Wesley/M
+Wesleyan/M
+Wessex/M
+Wesson/M
+West/SM
+Western/MRS
+Westinghouse/M
+Westminster/M
+Weston/M
+Westphalia/M
+Westralian/SM
+Weyden/M
+Wezen/M
+Wharton/M
+Wheaties/M
+Wheatstone/M
+Wheeler/M
+Wheeling/M
+Whig/SM
+Whipple/M
+Whirlpool/M
+Whistler/M
+Whitaker/M
+White/SM
+Whitefield/M
+Whitehall/M
+Whitehead/M
+Whitehorse/M
+Whiteley/M
+Whitfield/M
+Whitley/M
+Whitman/M
+Whitney/M
+Whitsunday/MS
+Whittier/M
+Whyalla/M
+WiFi
+Wicca/M
+Wichita/M
+Wiemar/M
+Wiesel/M
+Wiesenthal/M
+Wiggins/M
+Wigner/M
+Wii/M
+Wikileaks
+Wikipedia/M
+Wilberforce/M
+Wilbert/M
+Wilbur/M
+Wilburn/M
+Wilcox/M
+Wilda/M
+Wilde/MR
+Wilder/M
+Wiles/M
+Wiley/M
+Wilford/M
+Wilfred/M
+Wilfredo/M
+Wilhelm/M
+Wilhelmina/M
+Wilkerson/M
+Wilkes/M
+Wilkins/M
+Wilkinson/M
+Will/M
+Willa/M
+Willamette/M
+Willard/M
+Willemstad/M
+William/SM
+Williams/M
+Williamson/M
+Willie/M
+Willis/M
+Willy/M
+Wilma/M
+Wilmer/M
+Wilmington/M
+Wilson/M
+Wilsonian/M
+Wilton/M
+Wimbledon/M
+Wimsey/M
+Winchell/M
+Winchester/MS
+Windbreaker/M
+Windex/M
+Windhoek/M
+Windows/M
+Windsor/SM
+Windward/M
+Winesap/M
+Winfred/M
+Winfrey/M
+Winifred/M
+Winkle/M
+Winnebago/M
+Winnie/M
+Winnipeg/M
+Winston/M
+Winters/M
+Winthrop/M
+Wis
+Wisc
+Wisconsin/M
+Wisconsinite/MS
+Wise/M
+Witt/M
+Wittgenstein/M
+Witwatersrand/M
+Wm/M
+Wobegon/M
+Wodehouse/M
+Wodonga/M
+Wolf/M
+Wolfe/M
+Wolff/M
+Wolfgang/M
+Wollongong/M
+Wollstonecraft/M
+Wolsey/M
+Wolverhampton
+Wonder/M
+Wonderbra/M
+Wong/M
+Wood/SM
+Woodard/M
+Woodhull/M
+Woodrow/M
+Woods/M
+Woodstock/M
+Woodward/M
+Woolf/M
+Woolite/M
+Woolongong/M
+Woolworth/M
+Woop
+Wooster/M
+Wooten/M
+Worcester/SM
+Worcestershire/M
+WordPress/M
+Wordsworth/M
+Workman/M
+Worms/M
+Wotan/M
+Wovoka/M
+Wozniak/M
+Wozzeck/M
+Wrangell/M
+Wren/M
+Wright/M
+Wrigley/M
+Wroclaw/M
+Wu/M
+Wuhan/M
+Wurlitzer/M
+Wyatt/M
+Wycherley/M
+Wycliffe/M
+Wyeth/M
+Wylie/M
+Wynn/M
+Wynyard/M
+Wyo
+Wyoming/M
+Wyomingite/SM
+X/M
+XEmacs/M
+XL/M
+XML
+XS
+XXL
+Xamarin/M
+Xanadu/M
+Xanthippe/M
+Xavier/M
+Xe/SM
+Xenakis/M
+Xenia/M
+Xenophon/M
+Xerox/MS
+Xerxes/M
+Xhosa/M
+Xi'an/M
+Xian/SM
+Xiaoping/M
+Ximenes/M
+Xingu/M
+Xinjiang/M
+Xiongnu/M
+Xizang/M
+Xmas/MS
+Xochipilli/M
+Xuzhou/M
+Y/M
+YMCA/M
+YMHA
+YMMV
+YT
+YWCA/M
+YWHA
+Yacc/M
+Yahoo/M
+Yahtzee/M
+Yahweh/M
+Yakima/M
+Yakut/M
+Yakutsk/M
+Yale/M
+Yalow/M
+Yalta/M
+Yalu/M
+Yamagata/M
+Yamaha/M
+Yamoussoukro/M
+Yang/M
+Yangon/M
+Yangtze/M
+Yank/SM
+Yankee/SM
+Yaobang/M
+Yaounde/M
+Yaqui/M
+Yaren
+Yaroslavl/M
+Yataro/M
+Yates/M
+Yb/M
+Yeager/M
+Yeats/M
+Yekaterinburg/M
+Yellowknife/M
+Yellowstone/M
+Yeltsin/M
+Yemen/M
+Yemeni/SM
+Yemenite
+Yenisei/M
+Yeppoon/M
+Yerevan/M
+Yerkes/M
+Yesenia/M
+Yevtushenko/M
+Yggdrasil/M
+Yiddish/M
+Ymir/M
+Yoda/M
+Yoknapatawpha/M
+Yoko/M
+Yokohama/M
+Yolanda/M
+Yong/M
+Yonkers/M
+York/M
+Yorkie/M
+Yorkshire/MS
+Yorktown/M
+Yoruba/M
+Yosemite/M
+Yossarian/M
+YouTube/M
+Young/M
+Youngstown/M
+Ypres/M
+Ypsilanti/M
+Yuan/M
+Yucatan/M
+Yugo/M
+Yugoslav/MS
+Yugoslavia/M
+Yugoslavian/SM
+Yukon/M
+Yule/SM
+Yuletide/MS
+Yuma/SM
+Yunnan/M
+Yuri/M
+Yves/M
+Yvette/M
+Yvonne/M
+Z/SMNXT
+Zachariah/M
+Zachary/M
+Zachery/M
+Zagreb/M
+Zaire/M
+Zairian
+Zambezi/M
+Zambia/M
+Zambian/SM
+Zamboni/M
+Zamenhof/M
+Zamora/M
+Zane/M
+Zanuck/M
+Zanzibar/M
+Zapata/M
+Zaporozhye/M
+Zapotec/M
+Zappa/M
+Zara/M
+Zarathustra/M
+Zealand/M
+Zebedee/M
+Zechariah/M
+Zedekiah/M
+Zedong/M
+Zeffirelli/M
+Zeke/M
+Zelig/M
+Zelma/M
+Zen/M
+Zenger/M
+Zeno/M
+Zephaniah/M
+Zephyrus/M
+Zest/M
+Zeus/M
+Zhdanov
+Zhejiang/M
+Zhengzhou/M
+Zhivago/M
+Zhukov/M
+Zibo/M
+Ziegfeld/M
+Ziegler/M
+Ziggy/M
+Zika
+Zimbabwe/M
+Zimbabwean/SM
+Zimmerman/M
+Zinfandel/M
+Zion/SM
+Zionism/SM
+Zionist/SM
+Ziploc/M
+Zn/M
+Zoe/M
+Zola/M
+Zollverein/M
+Zoloft/M
+Zomba/M
+Zorn/M
+Zoroaster/M
+Zoroastrian/MS
+Zoroastrianism/SM
+Zorro/M
+Zosma/M
+Zr/M
+Zsigmondy/M
+Zubenelgenubi/M
+Zubeneschamali/M
+Zukor/M
+Zulu/SM
+Zululand
+Zuni/M
+Zurich/M
+Zwingli/M
+Zworykin/M
+Zyrtec/M
+Zyuganov/M
+Zzz
+a/S
+aah
+aardvark/SM
+ab/SDY
+aback
+abacus/MS
+abaft
+abalone/SM
+abandon/LSDG
+abandonment/M
+abase/LGDS
+abasement/M
+abash/GLDS
+abashed/UY
+abashment/M
+abate/LGDS
+abated/U
+abatement/M
+abattoir/MS
+abbe/SM
+abbess/MS
+abbey/MS
+abbot/MS
+abbr
+abbrev/S
+abbreviate/DSGNX
+abbreviation/M
+abdicate/GNDSX
+abdication/M
+abdomen/SM
+abdominal
+abduct/DSG
+abductee/MS
+abduction/SM
+abductor/MS
+abeam
+aberrant
+aberration/MS
+aberrational
+abet/S
+abetted
+abetter/SM
+abetting
+abeyance/M
+abhor/S
+abhorred
+abhorrence/M
+abhorrent/Y
+abhorring
+abidance/M
+abide/GS
+abiding/Y
+ability/IEMS
+abject/YP
+abjection/M
+abjectness/M
+abjuration/SM
+abjuratory
+abjure/ZGDRS
+abjurer/M
+ablate/XGNVDS
+ablation/M
+ablative/MS
+ablaze
+able/UT
+abler
+abloom
+ablution/SM
+abnegate/GNDS
+abnegation/M
+abnormal/Y
+abnormality/SM
+aboard
+abode/MS
+abolish/GDS
+abolition/M
+abolitionism/M
+abolitionist/SM
+abominable
+abominably
+abominate/DSGNX
+abomination/M
+aboriginal/MS
+aborigine/SM
+aborning
+abort/GVDS
+abortion/MS
+abortionist/MS
+abortive/Y
+abound/DSG
+about
+above/M
+aboveboard
+abracadabra/M
+abrade/GDS
+abrasion/MS
+abrasive/MYPS
+abrasiveness/M
+abreast
+abridge/DSLG
+abridgement/MS
+abroad
+abrogate/XGNDS
+abrogation/M
+abrogator/MS
+abrupt/TPRY
+abruptness/M
+abs/M
+abscess/MDSG
+abscissa/SM
+abscission/M
+abscond/ZGSDR
+absconder/M
+abseil/MDSG
+absence/SM
+absent/DYSG
+absentee/MS
+absenteeism/M
+absentminded/YP
+absentmindedness/M
+absinth/M
+absinthe/M
+absolute/PMYTNS
+absoluteness/M
+absolution/M
+absolutism/M
+absolutist/MS
+absolve/DSG
+absorb/AGDS
+absorbance
+absorbency/M
+absorbent/SM
+absorbing/Y
+absorption/M
+absorptive
+abstain/DRZGS
+abstainer/M
+abstemious/PY
+abstemiousness/M
+abstention/MS
+abstinence/M
+abstinent
+abstract/GSPMDY
+abstracted/YP
+abstractedness/M
+abstraction/SM
+abstractness/MS
+abstruse/YP
+abstruseness/M
+absurd/TPRY
+absurdist/MS
+absurdity/SM
+absurdness/M
+abundance/SM
+abundant/Y
+abuse's
+abuse/EGVDS
+abuser/MS
+abusive/YP
+abusiveness/M
+abut/SL
+abutment/MS
+abutted
+abutting
+abuzz
+abysmal/Y
+abyss/MS
+abyssal
+ac
+acacia/MS
+academe/M
+academia/M
+academic/SM
+academical/Y
+academician/MS
+academy/SM
+acanthus/MS
+accede/GDS
+accelerate/GNXDS
+acceleration/M
+accelerator/SM
+accent/MDSG
+accented/U
+accentual
+accentuate/GNDS
+accentuation/M
+accept/DSBG
+acceptability/M
+acceptableness/M
+acceptably/U
+acceptance/SM
+acceptation/MS
+accepted/U
+access/MDSG
+accessibility/IM
+accessible/I
+accessibly/I
+accession/MDGS
+accessorise/DSG
+accessory/SM
+accident/MS
+accidental/SMY
+acclaim/MDGS
+acclamation/M
+acclimate/DSGN
+acclimation/M
+acclimatisation/M
+acclimatise/DSG
+acclivity/SM
+accolade/SM
+accommodate/XGNDS
+accommodating/Y
+accommodation/M
+accompanied/U
+accompaniment/MS
+accompanist/SM
+accompany/DSG
+accomplice/SM
+accomplish/DSLG
+accomplished/U
+accomplishment/MS
+accord/GMDS
+accordance/M
+accordant
+according/Y
+accordion/MS
+accordionist/MS
+accost/GMDS
+account/MDSBG
+accountability/M
+accountable/U
+accountancy/M
+accountant/MS
+accounted/U
+accounting/M
+accouterments's
+accoutre/DSG
+accoutrements
+accredit/SGD
+accreditation/M
+accredited/U
+accretion/MS
+accrual/MS
+accrue/GDS
+acct
+acculturate/DSGN
+acculturation/M
+accumulate/XGNVDS
+accumulation/M
+accumulator/MS
+accuracy/IM
+accurate/IY
+accurateness/M
+accursed/P
+accursedness/M
+accusation/MS
+accusative/MS
+accusatory
+accuse/ZGDRS
+accuser/M
+accusing/Y
+accustom/DSG
+accustomed/U
+ace/DSMG
+acerbate/DSG
+acerbic
+acerbically
+acerbity/M
+acetaminophen/M
+acetate/MS
+acetic
+acetone/M
+acetonic
+acetyl
+acetylene/M
+ache/DSMG
+achene/MS
+achievable/U
+achieve/BLZGDRS
+achievement/SM
+achiever/M
+aching/Y
+achoo/M
+achromatic
+achy/TR
+acid/SMY
+acidic
+acidify/GDS
+acidity/M
+acidosis/M
+acidulous
+acknowledge/DSGL
+acknowledged/U
+acknowledgement/MS
+acme/SM
+acne/M
+acolyte/MS
+aconite/MS
+acorn/MS
+acoustic/S
+acoustical/Y
+acoustics/M
+acquaint/AGSD
+acquaintance/SM
+acquaintanceship/M
+acquainted/U
+acquiesce/DSG
+acquiescence/M
+acquiescent/Y
+acquire/ZGBDRSL
+acquirement/M
+acquisition/MS
+acquisitive/YP
+acquisitiveness/M
+acquit/S
+acquittal/MS
+acquitted
+acquitting
+acre/SM
+acreage/MS
+acrid/PTRY
+acridity/M
+acridness/M
+acrimonious/YP
+acrimoniousness/M
+acrimony/M
+acrobat/MS
+acrobatic/S
+acrobatically
+acrobatics/M
+acronym/MS
+acrophobia/M
+acropolis/MS
+across
+acrostic/SM
+acrylamide
+acrylic/MS
+act's
+act/ASDGV
+acting/M
+actinium/M
+action/ASM
+actionable
+activate/ICANGSD
+activation/ICAM
+activator/MS
+active's
+active/IKY
+activeness/M
+actives
+activism/M
+activist/MS
+activities
+activity/IM
+actor/AMS
+actress/MS
+actual/Y
+actualisation/M
+actualise/GDS
+actuality/SM
+actuarial
+actuary/SM
+actuate/GNDS
+actuation/M
+actuator/SM
+acuity/M
+acumen/M
+acupressure/M
+acupuncture/M
+acupuncturist/SM
+acute/PMYTRS
+acuteness/M
+acyclovir/M
+acyl
+ad/SM
+adage/MS
+adagio/MS
+adamant/MY
+adapt/BGVDS
+adaptability/M
+adaptation/MS
+adaption/S
+adaptor/MS
+add/SDRBZG
+addend/MS
+addenda
+addendum/M
+adder/M
+addict/GVMDS
+addiction/SM
+addition/SM
+additional/Y
+additive/SM
+addle/GDS
+address's
+address/AGDS
+addressable
+addressed/U
+addressee/SM
+adduce/GDS
+adenine/M
+adenocarcinoma
+adenoid/SM
+adenoidal
+adept/MYPS
+adeptness/M
+adequacy/IM
+adequate/IY
+adequateness/M
+adhere/GDS
+adherence/M
+adherent/SM
+adhesion/M
+adhesive/PSM
+adhesiveness/M
+adiabatic
+adieu/MS
+adios
+adipose
+adj
+adjacency/M
+adjacent/Y
+adjectival/Y
+adjective/MS
+adjoin/GDS
+adjourn/DGLS
+adjournment/SM
+adjudge/GDS
+adjudicate/GNVXDS
+adjudication/M
+adjudicator/SM
+adjudicatory
+adjunct/MS
+adjuration/MS
+adjure/GDS
+adjust/AGDSL
+adjustable
+adjuster/SM
+adjustment/AMS
+adjutant/SM
+adman/M
+admen
+admin/S
+administer/DGS
+administrate/XDSGNV
+administration/M
+administrative/Y
+administrator/MS
+admirably
+admiral/MS
+admiralty/M
+admiration/M
+admire/BZGDRS
+admirer/M
+admiring/Y
+admissibility/IM
+admissible/I
+admissibly
+admission/AM
+admissions
+admit/AS
+admittance/M
+admitted/Y
+admitting/A
+admix/GDS
+admixture/SM
+admonish/LDSG
+admonishment/MS
+admonition/MS
+admonitory
+ado/M
+adobe/MS
+adolescence/SM
+adolescent/SM
+adopt/AGVDS
+adoptable
+adopter/MS
+adoption/SM
+adorableness/M
+adorably
+adoration/M
+adore/BZGDRS
+adorer/M
+adoring/Y
+adorn/LGDS
+adorned/U
+adornment/MS
+adrenal/MS
+adrenalin's
+adrenaline/M
+adrenergic
+adrift
+adroit/PY
+adroitness/M
+adsorb/SDG
+adsorbent/MS
+adsorption/SM
+adulate/DSGN
+adulation/M
+adulator/MS
+adulatory
+adult/MS
+adulterant/MS
+adulterate/GNDS
+adulterated/U
+adulteration/M
+adulterer/SM
+adulteress/MS
+adulterous
+adultery/SM
+adulthood/M
+adumbrate/GNDS
+adumbration/M
+adv
+advance/LDSMG
+advancement/SM
+advantage/EDSMG
+advantageous/EY
+advent/SM
+adventitious/Y
+adventure/DRSMZG
+adventurer/M
+adventuresome
+adventuress/MS
+adventurism
+adventurist/S
+adventurous/YP
+adventurousness/M
+adverb/SM
+adverbial/SMY
+adversarial
+adversary/SM
+adverse/PRYT
+adverseness/M
+adversity/SM
+advert/SMDG
+advertise/LZGDRS
+advertised/U
+advertisement/MS
+advertiser/M
+advertising/M
+advertorial/SM
+advice/M
+advisability/IM
+advisable/I
+advisably
+advise/LDRSZGB
+advised/UY
+advisement/M
+adviser/M
+advisory/SM
+advocacy/M
+advocate/MGDS
+advt
+adware
+adze/SM
+aegis/M
+aeon/SM
+aerate/DSGN
+aeration/M
+aerator/SM
+aerial/SMY
+aerialist/MS
+aerie/MS
+aerobatic/S
+aerobatics/M
+aerobic/S
+aerobically
+aerobics/M
+aerodrome/MS
+aerodynamic/S
+aerodynamically
+aerodynamics/M
+aerofoil/SM
+aerogram/S
+aeronautic/S
+aeronautical
+aeronautics/M
+aeroplane/SM
+aerosol/MS
+aerospace/M
+aery
+aesthete/MS
+aesthetic/S
+aesthetically
+aestheticism/M
+aesthetics/M
+aetiology/M
+afar
+affability/M
+affable
+affably
+affair/MS
+affect's
+affect/EGDS
+affectation/SM
+affected/UY
+affecting/Y
+affection/EM
+affectionate/Y
+affections
+afferent
+affiance/GDS
+affidavit/SM
+affiliate's
+affiliate/EGNDS
+affiliated/U
+affiliation/EM
+affiliations
+affine
+affinity/SM
+affirm/AGDS
+affirmation/AMS
+affirmative/MYS
+affix/GMDS
+afflatus/M
+afflict/GDS
+affliction/SM
+affluence/M
+affluent/Y
+afford/GDSB
+affordability
+affordably
+afforest/EGSD
+afforestation/M
+affray/MS
+affront/GMDS
+afghan/MS
+aficionado/MS
+afield
+afire
+aflame
+afloat
+aflutter
+afoot
+aforementioned
+aforesaid
+aforethought
+afoul
+afraid/U
+afresh
+aft/RZ
+afterbirth/M
+afterbirths
+afterburner/MS
+aftercare/M
+aftereffect/MS
+afterglow/SM
+afterimage/MS
+afterlife/M
+afterlives
+aftermarket/MS
+aftermath/M
+aftermaths
+afternoon/MS
+aftershave/SM
+aftershock/SM
+aftertaste/SM
+afterthought/SM
+afterwards
+afterword/MS
+aftie/MS
+afto/SM
+again
+against
+agape/M
+agar/M
+agate/MS
+agave/M
+age/DSM
+ageing/SM
+ageism/M
+ageist/SM
+ageless/YP
+agelessness/M
+agency/SM
+agenda/SM
+agenesis
+agent/AMS
+ageratum/M
+agglomerate/DSMGNX
+agglomeration/M
+agglutinate/DSXGN
+agglutination/M
+aggrandise/GLDS
+aggrandisement/M
+aggravate/GNXDS
+aggravating/Y
+aggravation/M
+aggregate/MGNDSX
+aggregation/M
+aggregator/SM
+aggression/M
+aggressive/PY
+aggressiveness/M
+aggressor/SM
+aggrieve/DSG
+aggro
+aghast
+agile/Y
+agility/M
+agitate/XGNDS
+agitation/M
+agitator/MS
+agitprop/M
+agleam
+aglitter
+aglow
+agnostic/MS
+agnosticism/M
+ago
+agog
+agonise/GDS
+agonising/Y
+agonist/S
+agony/SM
+agoraphobia/M
+agoraphobic/MS
+agrarian/MS
+agrarianism/M
+agree/EBLDS
+agreeableness/EM
+agreeably/E
+agreeing/E
+agreement/ESM
+agribusiness/MS
+agricultural/Y
+agriculturalist/MS
+agriculture/M
+agriculturist/MS
+agronomic
+agronomist/MS
+agronomy/M
+aground
+ague/M
+ah
+aha
+ahchoo
+ahead
+ahem
+ahoy
+aid/SMDG
+aide/SM
+aided/U
+aigrette/MS
+ail/SDLG
+aileron/SM
+ailment/SM
+aim/SMDG
+aimless/YP
+aimlessness/M
+ain't
+air/SMDJG
+airbag/MS
+airbase/SM
+airbed/S
+airborne
+airbrush/MDSG
+airbus/MS
+aircraft/M
+aircraftman
+aircraftmen
+aircrew/S
+airdrome/S
+airdrop/SM
+airdropped
+airdropping
+airfare/SM
+airfield/SM
+airflow/M
+airfreight/M
+airguns
+airhead/SM
+airily
+airiness/M
+airing/M
+airless/P
+airlessness/M
+airletters
+airlift/SGMD
+airline/RSMZ
+airliner/M
+airlock/SM
+airmail/GSMD
+airman/M
+airmen
+airplay/M
+airport/SM
+airship/SM
+airshow/S
+airsick/P
+airsickness/M
+airspace/M
+airspeed
+airstrike/MS
+airstrip/SM
+airtight
+airtime/M
+airwaves/M
+airway/MS
+airwoman
+airwomen
+airworthiness/M
+airworthy/P
+airy/PTR
+aisle/MS
+aitch/MS
+ajar
+aka
+akimbo
+akin
+alabaster/M
+alack
+alacrity/M
+alarm/GMDS
+alarming/Y
+alarmist/SM
+alas
+alb/SM
+albacore/SM
+albatross/MS
+albeit
+albinism/M
+albino/MS
+album/MNS
+albumen/M
+albumin/M
+albuminous
+alchemist/SM
+alchemy/M
+alcohol/SM
+alcoholic/MS
+alcoholically
+alcoholism/M
+alcove/MS
+alder/MS
+alderman/M
+aldermen
+alderwoman/M
+alderwomen
+ale/SMV
+aleatory
+alehouse/SM
+alembic/SM
+alert/GMDYPS
+alertness/M
+alewife/M
+alewives
+alfalfa/M
+alfresco
+alga/M
+algae
+algal
+algebra/SM
+algebraic
+algebraically
+algorithm/SM
+algorithmic
+alias/GMDS
+alibi/GMDS
+alien/BGMDS
+alienable/IU
+alienate/DSGN
+alienation/M
+alienist/SM
+alight/GDS
+align/ALGDS
+aligned/U
+aligner/MS
+alignment/AMS
+alike/U
+aliment/MDSG
+alimentary
+alimony/M
+aliveness/M
+aliyah/M
+aliyahs
+alkali/M
+alkalies
+alkaline
+alkalinity/M
+alkalise/DSG
+alkaloid/SM
+alkyd/MS
+all/M
+allay/GDS
+allegation/MS
+allege/GDS
+alleged/Y
+allegiance/MS
+allegoric
+allegorical/Y
+allegorist/MS
+allegory/SM
+allegretto/MS
+allegro/MS
+allele/MS
+alleluia/SM
+allergen/SM
+allergenic
+allergic
+allergically
+allergist/SM
+allergy/SM
+alleviate/DSGN
+alleviation/M
+alley/MS
+alleyway/SM
+alliance/SM
+alligator/MS
+alliterate/DSXGNV
+alliteration/M
+alliterative/Y
+allocate/ADSGN
+allocation/AM
+allocations
+allot/LS
+allotment/SM
+allotted
+allotting
+allover
+allow/EGDS
+allowable/U
+allowably
+allowance/SM
+alloy/GMDS
+alloyed/U
+allspice/M
+allude/GDS
+allure/MGLDS
+allurement/MS
+alluring/Y
+allusion/SM
+allusive/PY
+allusiveness/M
+alluvial/M
+alluvium/SM
+ally/GDSM
+almanac/SM
+almighty
+almond/MS
+almoner/SM
+almost
+alms/M
+almshouse/MS
+aloe/SM
+aloft
+aloha/MS
+alone
+along
+alongshore
+alongside
+aloof/PY
+aloofness/M
+aloud
+alp/SM
+alpaca/MS
+alpha/MS
+alphabet/SM
+alphabetic
+alphabetical/Y
+alphabetisation/SM
+alphabetise/ZGDRS
+alphabetiser/M
+alphanumeric
+alphanumerical/Y
+alpine/S
+already
+alright
+also
+alt/S
+altar/MS
+altarpiece/SM
+alter/GDBS
+alterable/U
+alteration/MS
+altercation/SM
+altered/U
+alternate/DSMYGNVX
+alternation/M
+alternative/MYS
+alternator/SM
+although
+altimeter/MS
+altitude/MS
+alto/SM
+altogether
+altruism/M
+altruist/SM
+altruistic
+altruistically
+alum/SM
+alumina/M
+aluminium/M
+alumna/M
+alumnae
+alumni
+alumnus/M
+alveolar/S
+always
+am/N
+amalgam/SM
+amalgamate/XGNDS
+amalgamation/M
+amanuenses
+amanuensis/M
+amaranth/M
+amaranths
+amaretto/M
+amaryllis/MS
+amass/GDS
+amateur/SM
+amateurish/YP
+amateurishness/M
+amateurism/M
+amatory
+amaze/LMGDS
+amazement/M
+amazing/Y
+amazon/MS
+amazonian
+ambassador/SM
+ambassadorial
+ambassadorship/MS
+ambassadress/MS
+amber/M
+ambergris/M
+ambidexterity/M
+ambidextrous/Y
+ambience/MS
+ambient
+ambiguity/SM
+ambiguous/UY
+ambit
+ambition/MS
+ambitious/YP
+ambitiousness/M
+ambivalence/M
+ambivalent/Y
+amble/MZGDRS
+ambler/M
+ambo/SM
+ambrosia/M
+ambrosial
+ambulance/MS
+ambulanceman
+ambulancemen
+ambulancewoman
+ambulancewomen
+ambulant
+ambulate/DSXGN
+ambulation/M
+ambulatory/SM
+ambuscade/MGDS
+ambush/GMDS
+ameliorate/GNVDS
+amelioration/M
+amen/B
+amenability/M
+amenably
+amend/BLGDS
+amendment/SM
+amenity/SM
+amerce/GLDS
+amercement/SM
+americium/M
+amethyst/SM
+amiability/M
+amiable
+amiably
+amicability/M
+amicable
+amicably
+amid
+amide/MS
+amidship/S
+amidst
+amigo/MS
+amine/S
+amino
+amiss
+amitriptyline
+amity/M
+ammeter/SM
+ammo/M
+ammonia/M
+ammonium
+ammunition/M
+amnesia/M
+amnesiac/MS
+amnesic/SM
+amnesty/GDSM
+amniocenteses
+amniocentesis/M
+amnion/MS
+amniotic
+amoeba/MS
+amoebae
+amoebic
+amok
+among
+amongst
+amontillado/SM
+amoral/Y
+amorality/M
+amorous/YP
+amorousness/M
+amorphous/PY
+amorphousness/M
+amortisation/MS
+amortise/DSGB
+amount/GMDS
+amour/MS
+amoxicillin
+amp/SMY
+amperage/M
+ampere/MS
+ampersand/MS
+amphetamine/SM
+amphibian/MS
+amphibious/Y
+amphitheatre/SM
+amphora/M
+amphorae
+ampicillin
+ample/TR
+amplification/M
+amplifier/M
+amplify/NDRSXZG
+amplitude/SM
+ampule/MS
+amputate/GNDSX
+amputation/M
+amputee/MS
+amt
+amulet/MS
+amuse/LGDS
+amusement/MS
+amusing/Y
+amygdala
+amylase/M
+amyloid
+an/CS
+anabolism/M
+anachronism/SM
+anachronistic
+anachronistically
+anaconda/SM
+anaemia/M
+anaemic
+anaemically
+anaerobe/SM
+anaerobic
+anaerobically
+anaesthesia/M
+anaesthesiologist/SM
+anaesthesiology/M
+anaesthetic/MS
+anaesthetisation/M
+anaesthetise/GDS
+anaesthetist/MS
+anagram/MS
+anal/Y
+analgesia/M
+analgesic/SM
+analog/MS
+analogical/Y
+analogise/GDS
+analogous/YP
+analogousness/M
+analogue/SM
+analogy/SM
+analysable
+analysand/MS
+analyse/ADSG
+analyser/SM
+analysis/AM
+analyst/SM
+analytic/S
+analytical/Y
+anapest/SM
+anapestic/MS
+anarchic
+anarchically
+anarchism/M
+anarchist/MS
+anarchistic
+anarchy/M
+anathema/SM
+anathematise/DSG
+anatomic
+anatomical/Y
+anatomise/DSG
+anatomist/SM
+anatomy/SM
+ancestor/SM
+ancestral/Y
+ancestress/MS
+ancestry/SM
+anchor/MDGS
+anchorage/MS
+anchorite/MS
+anchorman/M
+anchormen
+anchorpeople
+anchorperson/SM
+anchorwoman/M
+anchorwomen
+anchovy/SM
+ancient/SPMRYT
+ancientness/M
+ancillary/SM
+and
+andante/SM
+andiron/SM
+androgen/M
+androgenic
+androgynous
+androgyny/M
+android/SM
+anecdotal/Y
+anecdote/MS
+anemometer/SM
+anemone/SM
+anent
+aneurysm/SM
+anew
+angel/MS
+angelfish/MS
+angelic
+angelica/M
+angelical/Y
+anger/GMDS
+angina/M
+angioplasty/SM
+angiosperm/SM
+angle/MZGDRS
+angler/M
+angleworm/MS
+anglicise/GDS
+anglicism/S
+angling/M
+anglophile/S
+anglophone/S
+angora/MS
+angostura
+angrily
+angry/TR
+angst/M
+angstrom/MS
+anguish/GMDS
+angular
+angularity/SM
+angulation
+anhydrous
+aniline/M
+anilingus
+animadversion/MS
+animadvert/GSD
+animal/MS
+animalcule/SM
+animate/ADSGN
+animated/Y
+animation/AM
+animations
+animator/MS
+anime/M
+animism/M
+animist/SM
+animistic
+animosity/SM
+animus/M
+anion/MS
+anionic
+anise/M
+aniseed/M
+anisette/M
+ankh/M
+ankhs
+ankle/MS
+anklebone/MS
+anklet/MS
+annalist/SM
+annals/M
+anneal/GDS
+annelid/MS
+annex/GMDS
+annexation/MS
+annihilate/DSGN
+annihilation/M
+annihilator/SM
+anniversary/SM
+annotate/DSXGNV
+annotation/M
+annotator/MS
+announce/DRSLZG
+announced/U
+announcement/MS
+announcer/M
+annoy/GDS
+annoyance/MS
+annoying/Y
+annual/MYS
+annualised
+annuitant/SM
+annuity/SM
+annul/LS
+annular
+annulled
+annulling
+annulment/SM
+annulus
+annunciation/SM
+anode/MS
+anodise/GDS
+anodyne/MS
+anoint/GDLS
+anointment/M
+anomalous/Y
+anomaly/SM
+anon/S
+anonymity/M
+anonymous/Y
+anopheles/M
+anorak/MS
+anorectic/SM
+anorexia/M
+anorexic/MS
+another
+answer/BMDGS
+answerable/U
+answered/U
+answerphone/S
+ant/SMD
+antacid/SM
+antagonise/DSG
+antagonism/SM
+antagonist/SM
+antagonistic
+antagonistically
+antarctic
+ante/SM
+anteater/MS
+antebellum
+antecedence/M
+antecedent/SM
+antechamber/SM
+antedate/GDS
+antediluvian
+anteing
+antelope/MS
+antenatal
+antenna/SM
+antennae
+anterior
+anteroom/MS
+anthem/MS
+anther/MS
+anthill/SM
+anthologise/DSG
+anthologist/SM
+anthology/SM
+anthracite/M
+anthrax/M
+anthropocentric
+anthropoid/MS
+anthropological/Y
+anthropologist/SM
+anthropology/M
+anthropomorphic
+anthropomorphically
+anthropomorphise
+anthropomorphism/M
+anthropomorphous
+anti/SM
+antiabortion
+antiabortionist/MS
+antiaircraft
+antibacterial/MS
+antibiotic/MS
+antibody/SM
+antic/MS
+anticancer
+anticipate/GNXDS
+anticipated/U
+anticipation/M
+anticipatory
+anticked
+anticking
+anticlerical
+anticlimactic
+anticlimactically
+anticlimax/MS
+anticline/SM
+anticlockwise
+anticoagulant/MS
+anticommunism/M
+anticommunist/SM
+anticyclone/SM
+anticyclonic
+antidemocratic
+antidepressant/MS
+antidote/MS
+antifascist/MS
+antiferromagnetic
+antifreeze/M
+antigen/SM
+antigenic
+antigenicity/M
+antihero/M
+antiheroes
+antihistamine/SM
+antiknock/M
+antilabour
+antilogarithm/SM
+antimacassar/MS
+antimalarial
+antimatter/M
+antimicrobial
+antimissile
+antimony/M
+antineutrino/SM
+antineutron/MS
+antinuclear
+antioxidant/MS
+antiparticle/SM
+antipasti
+antipasto/MS
+antipathetic
+antipathy/SM
+antipersonnel
+antiperspirant/SM
+antiphon/SM
+antiphonal/MYS
+antipodal/S
+antipodean/MS
+antipodes/M
+antipollution
+antipoverty
+antiproton/MS
+antiquarian/SM
+antiquarianism/M
+antiquary/SM
+antiquate/GDS
+antique/DSMG
+antiquity/SM
+antirrhinum/S
+antiscience
+antisemitic
+antisemitism/M
+antisepsis/M
+antiseptic/SM
+antiseptically
+antiserum/MS
+antislavery
+antisocial/Y
+antispasmodic/MS
+antisubmarine
+antitank
+antitheses
+antithesis/M
+antithetic
+antithetical/Y
+antitoxin/MS
+antitrust
+antivenin/MS
+antivenom
+antiviral/MS
+antivirus
+antivivisectionist/MS
+antiwar
+antler/MDS
+antonym/SM
+antonymous
+antrum
+antsy/TR
+anus/MS
+anvil/MS
+anxiety/SM
+anxious/YP
+anxiousness/M
+any
+anybody/SM
+anyhow
+anymore
+anyone/M
+anyplace
+anything/SM
+anytime
+anyway/S
+anywhere
+anywise
+aorta/MS
+aortic
+apace
+apart
+apartheid/M
+apartment/MS
+apathetic
+apathetically
+apathy/M
+apatite/M
+ape/DSMG
+apelike
+aperitif/MS
+aperture/SM
+apex/MS
+aphasia/M
+aphasic/MS
+aphelia
+aphelion/SM
+aphid/MS
+aphorism/MS
+aphoristic
+aphoristically
+aphrodisiac/SM
+apiarist/SM
+apiary/SM
+apical/Y
+apiece
+apish/Y
+aplenty
+aplomb/M
+apocalypse/SM
+apocalyptic
+apocrypha/M
+apocryphal/Y
+apogee/MS
+apolitical/Y
+apologetic/U
+apologetically
+apologia/SM
+apologise/GDS
+apologist/MS
+apology/SM
+apoplectic
+apoplexy/SM
+apoptosis
+apoptotic
+apostasy/SM
+apostate/SM
+apostatise/GDS
+apostle/MS
+apostleship/M
+apostolic
+apostrophe/MS
+apothecary/SM
+apothegm/SM
+apotheoses
+apotheosis/M
+app/SM
+appal/S
+appalled
+appalling/Y
+appaloosa/MS
+apparatchik/S
+apparatus/MS
+apparel/MS
+apparelled
+apparelling
+apparent/Y
+apparition/SM
+appeal/GMDS
+appealing/UY
+appear/AESDG
+appearance/EAMS
+appease/LZGDRS
+appeasement/SM
+appeaser/M
+appellant/SM
+appellate/XN
+appellation/M
+append/GDS
+appendage/SM
+appendectomy/SM
+appendices
+appendicitis/M
+appendix/MS
+appertain/GDS
+appetiser/MS
+appetising/Y
+appetite/SM
+applaud/ZGDRS
+applauder/M
+applause/M
+apple/MS
+applejack/M
+applesauce/M
+applet/MS
+appliance/SM
+applicability/M
+applicable/I
+applicably
+applicant/SM
+application/AM
+applicator/SM
+applier/MS
+applique/DSM
+appliqueing
+apply/ANXGDS
+appoint/AELSVGD
+appointee/SM
+appointment's/A
+appointment/ESM
+apportion/AGDLS
+apportionment/AM
+appose/GDS
+apposite/YNVP
+appositeness/M
+apposition/M
+appositive/SM
+appraisal/AMS
+appraise/ADSG
+appraiser/MS
+appreciable/I
+appreciably/I
+appreciate/DSXGNV
+appreciated/U
+appreciation/M
+appreciative/Y
+appreciator/MS
+appreciatory
+apprehend/GDS
+apprehension/MS
+apprehensive/YP
+apprehensiveness/M
+apprentice/DSMG
+apprenticeship/MS
+apprise/GDS
+approach/GBMDS
+approachable/UI
+approbation/EM
+approbations
+appropriate/PYGNXDS
+appropriated/U
+appropriateness/IM
+appropriation/M
+appropriator/SM
+approval/EM
+approvals
+approve/EGDS
+approved/U
+approving/EY
+approx
+approximate/DSXYGN
+approximation/M
+appurtenance/SM
+appurtenant
+apricot/MS
+apron/MS
+apropos
+apse/SM
+apt/IYPT
+apter
+aptitude/SM
+aptness/IM
+aqua/SM
+aquaculture/M
+aqualung/MS
+aquamarine/SM
+aquanaut/MS
+aquaplane/MGDS
+aquarium/MS
+aquatic/SM
+aquatically
+aquatics/M
+aquatint/S
+aquavit/M
+aqueduct/MS
+aqueous
+aquifer/SM
+aquiline
+arabesque/MS
+arability/M
+arachnid/MS
+arachnophobia
+arbiter/SM
+arbitrage/MZGDRS
+arbitrager/M
+arbitrageur/SM
+arbitrament/SM
+arbitrarily
+arbitrariness/M
+arbitrary/P
+arbitrate/GNDS
+arbitration/M
+arbitrator/MS
+arboreal
+arboretum/SM
+arborvitae/SM
+arbour/MS
+arbutus/MS
+arc/SMDG
+arcade/MS
+arcane
+arch/PZTGVMDRSY
+archaeological/Y
+archaeologist/SM
+archaeology/M
+archaic
+archaically
+archaism/MS
+archaist/MS
+archangel/MS
+archbishop/SM
+archbishopric/SM
+archdeacon/SM
+archdiocesan
+archdiocese/MS
+archduchess/MS
+archduke/MS
+archenemy/SM
+archer/M
+archery/M
+archetypal
+archetype/MS
+archfiend/MS
+archiepiscopal
+archipelago/MS
+architect/SM
+architectonic/S
+architectonics/M
+architectural/Y
+architecture/MS
+architrave/SM
+archival
+archive/DSMG
+archivist/MS
+archness/M
+archway/SM
+arctic/MS
+ardent/Y
+ardour/MS
+arduous/YP
+arduousness/M
+are/SMB
+area/SM
+areal
+aren't
+arena/MS
+argent/M
+arginine
+argon/M
+argosy/SM
+argot/MS
+arguable/IU
+arguably/U
+argue/ZGDRS
+arguer/M
+argument/MS
+argumentation/M
+argumentative/PY
+argumentativeness/M
+argyle/MS
+aria/SM
+arid/Y
+aridity/M
+aright
+arise/GS
+arisen
+aristocracy/SM
+aristocrat/SM
+aristocratic
+aristocratically
+arithmetic/M
+arithmetical/Y
+arithmetician/MS
+ark/SM
+arm's
+arm/EAGDS
+armada/MS
+armadillo/SM
+armament/AEM
+armaments
+armature/MS
+armband/MS
+armchair/MS
+armed/U
+armful/MS
+armhole/SM
+armistice/SM
+armlet/MS
+armload/S
+armorial
+armour/MDRZGS
+armoured/U
+armourer/M
+armoury/SM
+armpit/MS
+armrest/SM
+army/SM
+aroma/MS
+aromatherapist/MS
+aromatherapy/M
+aromatic/MS
+aromatically
+arose
+around
+arousal/M
+arouse/GDS
+arpeggio/MS
+arr
+arraign/DGSL
+arraignment/SM
+arrange/AESDLG
+arrangement's/E
+arrangement/ASM
+arranger/SM
+arrant
+arras/MS
+array/EGMDS
+arrears/M
+arrest/AGMDS
+arrhythmia/M
+arrhythmic
+arrhythmical
+arrival/MS
+arrive/GDS
+arrogance/M
+arrogant/Y
+arrogate/GNDS
+arrogation/M
+arrow/MS
+arrowhead/MS
+arrowroot/M
+arroyo/MS
+arse/DSMG
+arsehole/SM!
+arsenal/MS
+arsenic/M
+arson/M
+arsonist/SM
+art/SM
+artefact/MS
+arterial
+arteriole/MS
+arteriosclerosis/M
+artery/SM
+artful/PY
+artfulness/M
+arthritic/MS
+arthritis/M
+arthropod/MS
+arthroscope/SM
+arthroscopic
+arthroscopy
+artichoke/SM
+article/MDS
+articulacy/I
+articular
+articulate/YGNPDSX
+articulateness/IM
+articulation/M
+artifice/RSMZ
+artificer/M
+artificial/Y
+artificiality/M
+artillery/M
+artilleryman/M
+artillerymen
+artiness/M
+artisan/MS
+artist/MS
+artiste/MS
+artistic/I
+artistically
+artistry/M
+artless/PY
+artlessness/M
+artsy/TR
+artwork/MS
+arty/PTR
+arugula
+arum/SM
+arvo/SM
+asap
+asbestos/M
+ascend/AGDS
+ascendance/M
+ascendancy/M
+ascendant/SM
+ascension/MS
+ascent/MS
+ascertain/GDSBL
+ascertainment/M
+ascetic/MS
+ascetically
+asceticism/M
+ascot/MS
+ascribe/GBDS
+ascription/M
+aseptic
+aseptically
+asexual/Y
+asexuality/M
+ash/MDNSG
+ashamed/UY
+ashcan/MS
+ashlar/MS
+ashore
+ashram/MS
+ashtray/SM
+ashy/TR
+aside/MS
+asinine/Y
+asininity/SM
+ask/SDG
+askance
+asked/U
+askew
+aslant
+asleep
+asocial
+asp/SMNX
+asparagus/M
+aspartame/M
+aspect/MS
+aspen/M
+asperity/SM
+aspersion/MS
+asphalt/MDGS
+asphodel/SM
+asphyxia/M
+asphyxiate/DSXGN
+asphyxiation/M
+aspic/MS
+aspidistra/MS
+aspirant/MS
+aspirate/MGNDSX
+aspiration/M
+aspirator/SM
+aspire/GDS
+aspirin/MS
+ass/MS
+assail/GBDS
+assailable/U
+assailant/SM
+assassin/SM
+assassinate/GNXDS
+assassination/M
+assault/MDRGS
+assay/ZGMDRS
+assayer/M
+assemblage/SM
+assemble/AEGSD
+assembler/MS
+assemblies
+assembly/AM
+assemblyman/M
+assemblymen
+assemblywoman/M
+assemblywomen
+assent/GMDS
+assert/AGVDS
+assertion/AM
+assertions
+assertive/YP
+assertiveness/M
+assess/ALGDS
+assessment/ASM
+assessor/MS
+asset/MS
+asseverate/DSGN
+asseveration/M
+assiduity/M
+assiduous/PY
+assiduousness/M
+assign's
+assign/ALGDS
+assignable
+assignation/MS
+assigned/U
+assignee/M
+assigner/MS
+assignment/AMS
+assignor/MS
+assimilate/DSGN
+assimilated/U
+assimilation/M
+assist/GVMDS
+assistance/M
+assistant/SM
+assisted/U
+assize/MS
+assn
+assoc
+associate's
+associate/EDSGNV
+association/EM
+associations
+associativity
+assonance/M
+assonant/MS
+assort/GLDS
+assortative
+assortment/MS
+asst
+assuage/GDS
+assume/BGDS
+assumption/SM
+assumptive
+assurance/ASM
+assure/AGDS
+assured/MYS
+astatine/M
+aster/EMS
+asterisk/GMDS
+astern
+asteroid/MS
+asthma/M
+asthmatic/SM
+asthmatically
+astigmatic
+astigmatism/SM
+astir
+astonish/DSLG
+astonishing/Y
+astonishment/M
+astound/GDS
+astounding/Y
+astraddle
+astrakhan/M
+astral
+astray
+astride
+astringency/M
+astringent/SMY
+astrolabe/SM
+astrologer/SM
+astrological/Y
+astrologist/MS
+astrology/M
+astronaut/MS
+astronautic/S
+astronautical
+astronautics/M
+astronomer/SM
+astronomic
+astronomical/Y
+astronomy/M
+astrophysical
+astrophysicist/MS
+astrophysics/M
+astute/PYTR
+astuteness/M
+asunder
+asylum/SM
+asymmetric
+asymmetrical/Y
+asymmetry/SM
+asymptomatic
+asymptotic
+asymptotically
+asynchronous/Y
+at
+atavism/M
+atavist/SM
+atavistic
+ataxia/M
+ataxic/MS
+ate
+atelier/SM
+atheism/M
+atheist/MS
+atheistic
+atherosclerosis/M
+atherosclerotic
+athirst
+athlete/MS
+athletic/S
+athletically
+athleticism
+athletics/M
+athwart
+atilt
+atishoo
+atlas/MS
+atmosphere/MS
+atmospheric/S
+atmospherically
+atmospherics/M
+atoll/MS
+atom/SM
+atomic
+atomically
+atomise/ZGDRS
+atomiser/M
+atonal/Y
+atonality/M
+atone/LGDS
+atonement/M
+atop
+atria
+atrial
+atrioventricular
+atrium/M
+atrocious/PY
+atrociousness/M
+atrocity/SM
+atrophy/DSMG
+atropine/M
+attach/ALGDS
+attache/BM
+attached/U
+attachment/AM
+attachments
+attack/ZGMDRS
+attacker/M
+attain/AGDS
+attainability/M
+attainable/U
+attainder/M
+attainment/SM
+attar/M
+attempt's
+attempt/ASDG
+attend/SDRZG
+attendance/SM
+attendant/SM
+attended/U
+attendee/SM
+attention/IM
+attentions
+attentive/IPY
+attentiveness/IM
+attenuate/DSGN
+attenuation/M
+attest/SDG
+attestation/SM
+attested/U
+attic/SM
+attire/DSMG
+attitude/SM
+attitudinal
+attitudinise/GDS
+attn
+attorney/MS
+attract/SGVDB
+attractant/MS
+attraction/MS
+attractive/UY
+attractiveness/M
+attribute/DSMGNVBX
+attributed/U
+attribution/M
+attributive/MYS
+attrition/M
+attune/DSG
+atty
+atwitter
+atypical/Y
+aubergine/S
+auburn/M
+auction/MDGS
+auctioneer/SM
+audacious/YP
+audaciousness/M
+audacity/M
+audibility/IM
+audible/MS
+audibly/I
+audience/MS
+audio/MS
+audiological
+audiologist/SM
+audiology/M
+audiometer/SM
+audiophile/SM
+audiotape/SM
+audiovisual/S
+audiovisuals/M
+audit/GMDS
+audition/SMDG
+auditor/MS
+auditorium/SM
+auditory
+auger/MS
+aught/MS
+augment/DRZGS
+augmentation/MS
+augmentative
+augmenter/M
+augur/GMDS
+augury/SM
+august/PTRY
+augustness/M
+auk/SM
+aunt/SM
+auntie/SM
+aura/MS
+aural/Y
+aureole/SM
+aureus
+auricle/SM
+auricular
+aurora/SM
+auscultate/GNDSX
+auscultation/M
+auspice/SM
+auspicious/IY
+auspiciousness/M
+austere/RYT
+austerity/SM
+austral
+authentic/IU
+authentically
+authenticate/XGNDS
+authenticated/U
+authentication/M
+authenticity/M
+author/SMDG
+authoress/MS
+authorial
+authorisation/SM
+authorise/GDS
+authorised/U
+authoritarian/MS
+authoritarianism/M
+authoritative/YP
+authoritativeness/M
+authority/SM
+authorship/M
+autism/M
+autistic
+auto/MS
+autobahn/SM
+autobiographer/SM
+autobiographic
+autobiographical/Y
+autobiography/SM
+autoclave/MS
+autocracy/SM
+autocrat/SM
+autocratic
+autocratically
+autocross
+autodidact/SM
+autograph/MDG
+autographs
+autoimmune
+autoimmunity/M
+automaker/SM
+automate/GNDS
+automatic/SM
+automatically
+automation/M
+automatise/GDS
+automatism/M
+automaton/SM
+automobile/DSMG
+automotive
+autonomic
+autonomous/Y
+autonomy/M
+autopilot/SM
+autopsy/GDSM
+autosuggestion
+autoworker/MS
+autumn/SM
+autumnal
+aux
+auxiliary/SM
+auxin/M
+av/RZ
+avail/BGMDS
+availability/UM
+available/U
+avalanche/SM
+avarice/M
+avaricious/Y
+avast
+avatar/MS
+avaunt
+avdp
+ave
+avenge/ZGDRS
+avenger/M
+avenue/MS
+average/MYGDS
+averred
+averring
+averse/XN
+aversion/M
+avert/GDS
+avg
+avian
+aviary/SM
+aviation/M
+aviator/MS
+aviatrices
+aviatrix/MS
+avid/Y
+avidity/M
+avionic/S
+avionics/M
+avitaminosis/M
+avo/SM
+avocado/SM
+avocation/MS
+avocational
+avoid/SDGB
+avoidable/U
+avoidably/U
+avoidance/M
+avoidant
+avoirdupois/M
+avouch/DSG
+avow/EDGS
+avowal/ESM
+avowed/Y
+avuncular/Y
+aw
+await/GDS
+awake/GS
+awaken/AGDS
+awakening/SM
+award/GMDS
+awardee/S
+aware/UP
+awareness/UM
+awash
+away
+awe/DSMG
+aweigh
+awesome/YP
+awesomeness/M
+awestruck
+awful/YP
+awfuller
+awfullest
+awfulness/M
+awhile
+awkward/RYPT
+awkwardness/M
+awl/SM
+awn/GJSM
+awning/M
+awoke
+awoken
+awry
+axe/DSMG
+axial/Y
+axiom/SM
+axiomatic
+axiomatically
+axis/M
+axle/MS
+axletree/SM
+axolotl/SM
+axon/MS
+ayah/M
+ayahs
+ayatollah/M
+ayatollahs
+aye/SM
+azalea/SM
+azimuth/M
+azimuths
+azure/SM
+b/KDT
+baa/SMDG
+babble/MZGDRS
+babbler/M
+babe/SM
+babel/MS
+baboon/MS
+babushka/SM
+baby/TGDRSM
+babyhood/M
+babyish
+babysat
+babysit/S
+babysitter/MS
+babysitting/M
+baccalaureate/SM
+baccarat/M
+bacchanal/MS
+bacchanalia/M
+bacchanalian/MS
+baccy
+bachelor/SM
+bachelorhood/M
+bacillary
+bacilli
+bacillus/M
+back/SJZGMDR
+backache/MS
+backbench/S
+backbit
+backbite/ZGRS
+backbiter/M
+backbitten
+backboard/SM
+backbone/MS
+backbreaking
+backchat
+backcloth
+backcloths
+backcomb/DSG
+backdate/GDS
+backdoor
+backdrop/MS
+backer/M
+backfield/SM
+backfire/MGDS
+backgammon/M
+background/MRZS
+backgrounder/M
+backhand/MDRSZG
+backhanded/Y
+backhander/M
+backhoe/MS
+backing/M
+backlash/MS
+backless
+backlog/MS
+backlogged
+backlogging
+backpack/ZGMDRS
+backpacker/M
+backpacking/M
+backpedal/S
+backpedalled
+backpedalling
+backrest/SM
+backroom/S
+backscratching/M
+backseat/SM
+backside/SM
+backslapper/SM
+backslapping/M
+backslash/MS
+backslid
+backslide/RSZG
+backslider/M
+backspace/DSMG
+backspin/M
+backstabber/MS
+backstabbing
+backstage/M
+backstair/S
+backstop/SM
+backstopped
+backstopping
+backstory/S
+backstreet/S
+backstretch/MS
+backstroke/MGDS
+backtalk/M
+backtrack/SDG
+backup/MS
+backward/PSY
+backwardness/M
+backwash/M
+backwater/SM
+backwoods/M
+backwoodsman/M
+backwoodsmen
+backyard/SM
+bacon/M
+bacteria/M
+bacterial
+bactericidal
+bactericide/SM
+bacteriologic
+bacteriological
+bacteriologist/SM
+bacteriology/M
+bacterium/M
+bad/MYP
+badder
+baddest
+baddie/MS
+bade
+badge/MZRS
+badger/GMD
+badinage/M
+badlands/M
+badman/M
+badmen
+badminton/M
+badmouth/GD
+badmouths
+badness/M
+baffle/MZGDRSL
+bafflement/M
+baffler/M
+bag/SM
+bagatelle/SM
+bagel/MS
+bagful/MS
+baggage/M
+bagged
+baggie/M
+baggily
+bagginess/M
+bagging
+baggy/PTRS
+bagpipe/MZRS
+bagpiper/M
+baguette/MS
+bah
+baht/SM
+bail/SBGMD
+bailey/S
+bailiff/S
+bailiwick/MS
+bailout/SM
+bailsman/M
+bailsmen
+bairn/MS
+bait/SGMD
+baize/M
+bake/DRSMZG
+baked/U
+baker/M
+bakery/SM
+bakeshop/MS
+baklava/M
+baksheesh/M
+balaclava/MS
+balalaika/MS
+balance's
+balance/UDSG
+balboa/SM
+balcony/SM
+bald/STGPDRY
+balderdash/M
+baldfaced
+baldness/M
+baldric/SM
+baldy/S
+bale/DRSMZG
+baleen/M
+baleful/PY
+balefulness/M
+baler/M
+balky/RT
+ball/SGMD
+ballad/SM
+balladeer/MS
+balladry/M
+ballast/GSMD
+ballcock/MS
+ballerina/SM
+ballet/SM
+balletic
+ballgame/MS
+ballgirl/S
+ballgown/S
+ballistic/S
+ballistics/M
+balloon/SGMD
+balloonist/MS
+ballot/SMDG
+ballpark/MS
+ballplayer/MS
+ballpoint/MS
+ballroom/MS
+balls/DSG
+ballsy/RT
+bally
+ballyhoo/SMDG
+balm/SM
+balminess/M
+balmy/RTP
+baloney/M
+balsa/MS
+balsam/SM
+balsamic
+baluster/SM
+balustrade/MS
+bamboo/SM
+bamboozle/DSG
+ban/SM
+banal/Y
+banality/SM
+banana/SM
+band's
+band/ESGD
+bandage/DSMG
+bandanna/MS
+bandbox/MS
+bandeau/M
+bandeaux
+bandit/SM
+banditry/M
+bandleader/S
+bandmaster/SM
+bandoleer/SM
+bandsman/M
+bandsmen
+bandstand/SM
+bandwagon/SM
+bandwidth
+bandwidths
+bandy/DRSTG
+bane/SM
+baneful
+bang/SGMDR
+bangle/SM
+bani
+banish/GLDS
+banishment/M
+banister/SM
+banjo/MS
+banjoist/SM
+bank/SZGBMDR
+bankbook/SM
+bankcard/SM
+banker/M
+banking/M
+banknote/SM
+bankroll/SGMD
+bankrupt/SGMD
+bankruptcy/SM
+banned
+banner/SM
+banning
+bannock/MS
+banns/M
+banquet/ZGMDRS
+banqueter/M
+banquette/SM
+banshee/MS
+bantam/SM
+bantamweight/SM
+banter/GSMD
+bantering/Y
+banyan/SM
+banzai/SM
+baobab/SM
+bap/S
+baptise/ZGDRS
+baptised/U
+baptiser/M
+baptism/MS
+baptismal
+baptist/S
+baptistery/SM
+bar's
+bar/ECUTS
+barb/SZGMDR
+barbacoa
+barbarian/SM
+barbarianism/MS
+barbaric
+barbarically
+barbarise/DSG
+barbarism/SM
+barbarity/SM
+barbarous/Y
+barbecue/DSMG
+barbel/SM
+barbell/MS
+barbeque/SM
+barber/GMD
+barberry/SM
+barbershop/MS
+barbie/S
+barbiturate/SM
+barbwire/M
+barcarole/SM
+bard/SM
+bardic
+bare/DRSPYG
+bareback/D
+barefaced/Y
+barefoot/D
+barehanded
+bareheaded
+barelegged
+bareness/M
+barf/SGMDY
+barfly/SM
+bargain/MDRZGS
+bargainer/M
+barge/MGDS
+bargeman/M
+bargemen
+barhop/S
+barhopped
+barhopping
+barista/MS
+baritone/MS
+barium/M
+bark's
+bark/CSGD
+barkeep/ZMRS
+barkeeper/M
+barker/SM
+barley/M
+barmaid/MS
+barman/M
+barmen
+barmy/RT
+barn/SM
+barnacle/MDS
+barney/S
+barnstorm/SDRZG
+barnstormer/M
+barnyard/SM
+barometer/MS
+barometric
+barometrically
+baron/MS
+baronage/MS
+baroness/MS
+baronet/MS
+baronetcy/SM
+baronial
+barony/SM
+baroque/M
+barque/SM
+barrack/MDGS
+barracuda/SM
+barrage/MGDS
+barramundi/MS
+barre/MGJDS
+barred/UEC
+barrel/SM
+barrelled
+barrelling
+barren/TPSMR
+barrenness/M
+barrette/SM
+barricade/MGDS
+barrier/MS
+barring/ECU
+barrio/SM
+barrister/MS
+barroom/MS
+barrow/SM
+bartender/SM
+barter/ZGSMDR
+barterer/M
+baryon/SM
+basal/Y
+basalt/M
+basaltic
+base's
+base/CDSLTG
+baseball/SM
+baseboard/MS
+baseless
+baseline/MS
+basely
+baseman/M
+basemen
+basement/CMS
+baseness/M
+baser
+bash/GMDS
+bashful/PY
+bashfulness/M
+bashing/M
+basic/MS
+basically
+basil/M
+basilica/MS
+basilisk/MS
+basin/MS
+basinful/MS
+basis/M
+bask/SGD
+basket/SM
+basketball/MS
+basketry/M
+basketwork/M
+basque/S
+bass/MS
+basset/SM
+bassinet/MS
+bassist/MS
+basso/MS
+bassoon/MS
+bassoonist/SM
+basswood/MS
+bast/M
+bastard/MS
+bastardisation/MS
+bastardise/GDS
+bastardy/M
+baste/ZGNXDRS
+baster/M
+bastion/M
+bat/SM
+batch/MDSG
+bate/KACGSD
+bath/ZGMDRS
+bathe/M
+bather/M
+bathetic
+bathhouse/MS
+bathing/M
+bathmat/MS
+bathos/M
+bathrobe/SM
+bathroom/SM
+baths
+bathtub/MS
+bathwater
+bathyscaphe/SM
+bathysphere/MS
+batik/MS
+batiste/M
+batman/M
+batmen
+baton/MS
+batsman/M
+batsmen
+battalion/SM
+batted
+batten/GSMD
+batter/JZGSMDR
+batterer/M
+battery/SM
+batting/M
+battle/LDRSMZG
+battleaxe/MS
+battledore/SM
+battledress
+battlefield/MS
+battlefront/MS
+battleground/MS
+battlement/SM
+battler/M
+battleship/SM
+batty/RT
+bauble/SM
+baud/SM
+baulk/MDGS
+bauxite/M
+bawd/SM
+bawdily
+bawdiness/M
+bawdy/PRT
+bawl/SGMD
+bay/SMDG
+bayberry/SM
+bayonet/SMDG
+bayou/MS
+bazaar/SM
+bazillion/S
+bazooka/SM
+bbl
+bdrm
+be
+beach/MDSG
+beachcomber/SM
+beachfront
+beachhead/MS
+beachwear/M
+beacon/SM
+bead/SGMD
+beading/M
+beadle/SM
+beady/RT
+beagle/SM
+beak/SZMDR
+beaker/M
+beam/SGMD
+bean/SGMD
+beanbag/MS
+beanfeast/S
+beanie/SM
+beanpole/MS
+beansprout/S
+beanstalk/MS
+bear/SZGBJMR
+bearable/U
+bearably/U
+beard/MDGS
+beardless
+bearer/M
+bearing/M
+bearish/PY
+bearishness/M
+bearlike
+bearskin/MS
+beast/MS
+beastliness/M
+beastly/TPRM
+beat/SZGBMNRJ
+beatable/U
+beaten/U
+beater/M
+beatific
+beatifically
+beatification/M
+beatify/GXNDS
+beating/M
+beatitude/SM
+beatnik/MS
+beau/SM
+beaut/MS
+beauteous/Y
+beautician/SM
+beautification/M
+beautifier/M
+beautiful/Y
+beautify/NDRSZG
+beauty/SM
+beaver/SGMD
+bebop/MS
+becalm/GSD
+became
+because
+beck/SM
+beckon/SGD
+becloud/GDS
+become/S
+becoming/UY
+becquerel/S
+bed/SM
+bedaub/GSD
+bedazzle/GDSL
+bedazzlement/M
+bedbug/SM
+bedchamber/S
+bedclothes/M
+bedded
+bedder
+bedding/M
+bedeck/GSD
+bedevil/LS
+bedevilled
+bedevilling
+bedevilment/M
+bedfellow/SM
+bedhead/S
+bedim/S
+bedimmed
+bedimming
+bedizen/GDS
+bedlam/SM
+bedpan/SM
+bedpost/SM
+bedraggle/GDS
+bedridden
+bedrock/SM
+bedroll/SM
+bedroom/SM
+bedside/SM
+bedsit/S
+bedsitter/S
+bedsore/SM
+bedspread/SM
+bedstead/SM
+bedtime/SM
+bee/RSMZGJ
+beebread/M
+beech/MS
+beechnut/MS
+beef/SGMD
+beefburger/SM
+beefcake/MS
+beefiness/M
+beefsteak/MS
+beefy/RPT
+beehive/MS
+beekeeper/MS
+beekeeping/M
+beeline/MS
+been
+beep/SZGMDR
+beeper/M
+beer/M
+beery/TR
+beeswax/M
+beet/SM
+beetle/MGDS
+beetroot/S
+beeves
+befall/SGN
+befell
+befit/S
+befitted
+befitting/Y
+befog/S
+befogged
+befogging
+before
+beforehand
+befoul/DGS
+befriend/SGD
+befuddle/GLDS
+befuddlement/M
+beg/S
+began
+begat
+beget/S
+begetter/S
+begetting
+beggar/MDYGS
+beggary/M
+begged
+begging
+begin/S
+beginner/SM
+beginning/MS
+begone
+begonia/SM
+begot
+begotten
+begrime/DSG
+begrudge/DSG
+begrudging/Y
+beguile/DRSZGL
+beguilement/M
+beguiler/M
+beguiling/Y
+beguine/SM
+begum/MS
+begun
+behalf/M
+behalves
+behave/GDS
+behaviour/SM
+behavioural/Y
+behaviourism/M
+behaviourist/SM
+behead/DGS
+beheld
+behemoth/M
+behemoths
+behest/MS
+behind/MS
+behindhand
+behold/NRZGS
+beholder/M
+behove/GDS
+beige/M
+being/M
+bejewel/S
+bejewelled
+bejewelling
+belabour/GSD
+belated/Y
+belay/GDS
+belch/GMDS
+beleaguer/GSD
+belfry/SM
+belie/DS
+belief/EUM
+beliefs
+believable/U
+believably/U
+believe/EDRSZG
+believer/EUMS
+believing/U
+belittle/LDSG
+belittlement/M
+bell/SGMD
+belladonna/M
+bellboy/SM
+belle/MS
+belled/A
+belletrist/MS
+belletristic
+bellhop/SM
+bellicose
+bellicosity/M
+belligerence/M
+belligerency/M
+belligerent/MYS
+belling/A
+bellman/M
+bellmen
+bellow/MDGS
+bellwether/MS
+belly/GDSM
+bellyache/MGDS
+bellybutton/SM
+bellyful/MS
+belong/JDGS
+belonging/M
+beloved/SM
+below
+belt/SGMD
+beltway/SM
+beluga/MS
+belying
+bemire/GDS
+bemoan/DGS
+bemuse/LGDS
+bemused/Y
+bemusement/M
+bench/GMDS
+benchmark/MS
+bend/BSZGMR
+bender/M
+bendy/TR
+beneath
+benedictine
+benediction/SM
+benedictory
+benefaction/SM
+benefactor/MS
+benefactress/MS
+benefice/SM
+beneficence/M
+beneficent/Y
+beneficial/Y
+beneficiary/SM
+benefit/SMDG
+benevolence/SM
+benevolent/Y
+benighted/Y
+benign/Y
+benignant
+benignity/M
+bent/SM
+bentonite
+bentwood/M
+benumb/DSG
+benzene/M
+benzine/M
+benzyl
+bequeath/DG
+bequeaths
+bequest/MS
+berate/GDS
+bereave/DSLG
+bereavement/MS
+bereft
+beret/MS
+berg/SM
+beriberi/M
+berk/S
+berkelium/M
+berm/SM
+berry/GDSM
+berrylike
+berserk
+berth/GMD
+berths
+beryl/MS
+beryllium/M
+beseech/ZGRS
+beseecher/M
+beseeching/Y
+beseem/DSG
+beset/S
+besetting
+beside/S
+besiege/ZGDRS
+besieger/M
+besmear/DSG
+besmirch/GDS
+besom/MS
+besot/S
+besotted
+besotting
+besought
+bespangle/DSG
+bespatter/GSD
+bespeak/SG
+bespectacled
+bespoke
+bespoken
+best/SGMD
+bestial/Y
+bestiality/M
+bestiary/SM
+bestir/S
+bestirred
+bestirring
+bestow/DGS
+bestowal/SM
+bestrew/SDG
+bestrewn
+bestridden
+bestride/SG
+bestrode
+bestseller/MS
+bestselling
+bet/SM
+beta/SM
+betake/GS
+betaken
+betcha
+betel/M
+bethink/SG
+bethought
+betide/GDS
+betimes
+betoken/GDS
+betook
+betray/DRZGS
+betrayal/SM
+betrayer/M
+betroth/DG
+betrothal/SM
+betrothed/M
+betroths
+better/MDGLS
+betterment/M
+betting
+bettor/MS
+between
+betwixt
+bevel/MS
+bevelled
+bevelling/S
+beverage/SM
+bevvy/S
+bevy/SM
+bewail/DGS
+beware/GDS
+bewhiskered
+bewigged
+bewilder/LSGD
+bewildering/Y
+bewilderment/M
+bewitch/GLDS
+bewitching/Y
+bewitchment/M
+bey/SM
+beyond
+bezel/MS
+bf
+bhaji
+bi/SMRZ
+biannual/Y
+bias/GMDS
+biased/U
+biathlon/SM
+bib/SM
+bible/MS
+biblical
+bibliographer/MS
+bibliographic
+bibliographical/Y
+bibliography/SM
+bibliophile/SM
+bibulous
+bicameral
+bicameralism/M
+bicarb/MS
+bicarbonate/MS
+bicentenary/SM
+bicentennial/SM
+bicep/MS
+biceps/M
+bicker/MDRZGS
+bickerer/M
+bickie/MS
+biconcave
+biconvex
+bicuspid/MS
+bicycle/DRSMZG
+bicycler/M
+bicyclist/SM
+bid/SMG
+biddable
+bidden/U
+bidder/MS
+bidding/M
+biddy/SM
+bide/S
+bidet/MS
+bidirectional/Y
+biennial/MYS
+biennium/MS
+bier/M
+biff/SGD
+biffo/MS
+bifocal/S
+bifocals/M
+bifurcate/XDSGN
+bifurcation/M
+big/P
+bigamist/SM
+bigamous
+bigamy/M
+bigger
+biggest
+biggie/MS
+biggish
+bighead/SM
+bighearted/P
+bigheartedness/M
+bighorn/SM
+bight/MS
+bigmouth/M
+bigmouths
+bigness/M
+bigot/MDS
+bigotry/SM
+bigwig/MS
+bijou/M
+bijoux
+bike/DRSMZG
+biker/M
+bikini/MS
+bikkie/MS
+bilabial/MS
+bilateral/Y
+bilberry/S
+bile/M
+bilge/MS
+bilingual/SMY
+bilingualism/M
+bilious/P
+biliousness/M
+bilirubin
+bilk/SZGDR
+bilker/M
+bill/SBJGMD
+billabong/SM
+billboard/MS
+billet/GMDS
+billfold/SM
+billhook/S
+billiard/S
+billiards/M
+billing/M
+billingsgate/M
+billion/MHS
+billionaire/SM
+billionth/M
+billionths
+billow/GMDS
+billowy
+billy/SM
+billycan/S
+bimbo/MS
+bimetallic/SM
+bimetallism/M
+bimodal
+bimonthly/SM
+bin/SM
+binary/SM
+binaural
+bind's
+bind/AUGS
+binder/MS
+bindery/SM
+binding/MS
+bindweed/M
+binge/MDS
+bingle/MGDS
+bingo/M
+binman
+binmen
+binnacle/SM
+binned
+binning
+binocular/MS
+binomial/SM
+bio/SM
+biochemical/SMY
+biochemist/MS
+biochemistry/M
+biodegradability/M
+biodegrade/DSGB
+biodiversity/M
+bioethics/M
+biofeedback/M
+biofilm/MS
+biog
+biographer/SM
+biographic
+biographical/Y
+biography/SM
+biol
+biologic
+biological/Y
+biologist/MS
+biology/M
+biomarker/MS
+biomass/M
+biomedical
+bionic/S
+bionically
+bionics/M
+biophysical
+biophysicist/MS
+biophysics/M
+biopic/MS
+biopsy/GDSM
+bioreactor/S
+biorhythm/MS
+biosensor/S
+biosphere/SM
+biosynthesis
+biotech
+biotechnological
+biotechnology/M
+biotin/M
+bipartisan
+bipartisanship/M
+bipartite
+biped/MS
+bipedal
+biplane/MS
+bipolar
+bipolarity/M
+biracial
+birch/GMDS
+bird/SZGMDR
+birdbath/M
+birdbaths
+birdbrain/SMD
+birdcage/S
+birder/M
+birdhouse/MS
+birdie/MDS
+birdieing
+birdlike
+birdlime/M
+birdseed/M
+birdsong
+birdwatcher/SM
+birdying
+biretta/SM
+birth/ZGMDR
+birthday/MS
+birther/M
+birthmark/MS
+birthplace/MS
+birthrate/MS
+birthright/MS
+births/A
+birthstone/SM
+biscuit/SM
+bisect/DGS
+bisection/MS
+bisector/SM
+bisexual/MYS
+bisexuality/M
+bishop/MS
+bishopric/SM
+bismuth/M
+bison/M
+bisque/M
+bistro/MS
+bit/CSMG
+bitch/GMDS
+bitchily
+bitchiness/M
+bitchy/PRT
+bitcoin/SM
+bite/RSMZ
+biter/M
+biting/Y
+bitmap/S
+bitten
+bitter/PMRYTS
+bittern/SM
+bitterness/M
+bitters/M
+bittersweet/MS
+bitty/TR
+bitumen/M
+bituminous
+bivalent
+bivalve/SM
+bivouac/MS
+bivouacked
+bivouacking
+biweekly/SM
+biyearly
+biz/M
+bizarre/Y
+bk
+bl/DG
+blab/SM
+blabbed
+blabber/DGS
+blabbermouth/M
+blabbermouths
+blabbing
+black/PXTGMDNRYS
+blackamoor/MS
+blackball/SGMD
+blackberry/GSM
+blackbird/SM
+blackboard/MS
+blackcurrant/S
+blacken/DG
+blackface
+blackguard/SM
+blackhead/MS
+blacking/M
+blackish
+blackjack/MDGS
+blackleg/S
+blacklist/MDSG
+blackmail/MDRSZG
+blackmailer/M
+blackness/M
+blackout/SM
+blacksmith/M
+blacksmiths
+blacksnake/SM
+blackthorn/SM
+blacktop/SM
+blacktopped
+blacktopping
+bladder/MS
+blade/MDS
+blag/S
+blagged
+blagging
+blah/M
+blahs/M
+blame/MGDRS
+blameable
+blameless/YP
+blamelessness/M
+blameworthiness/M
+blameworthy/P
+blammo
+blanch/GDS
+blancmange/MS
+bland/PTRY
+blandish/DSLG
+blandishment/SM
+blandness/M
+blank/TGPMDRYS
+blanket/GMDS
+blankness/M
+blare/MGDS
+blarney/SMDG
+blase
+blaspheme/ZGDRS
+blasphemer/M
+blasphemous/Y
+blasphemy/SM
+blast/ZGMDRS
+blaster/M
+blastoff/MS
+blat/S
+blatancy/SM
+blatant/Y
+blather/SMDG
+blaze/MZGDRS
+blazer/M
+blazon/MDGS
+bldg
+bleach/MDRSZG
+bleached/U
+bleacher/M
+bleak/TPRY
+bleakness/M
+blear
+blearily
+bleariness/M
+bleary/PRT
+bleat/GMDS
+bleed/ZGRS
+bleeder/M
+bleeding/M
+bleep/ZGMDRS
+bleeper/M
+blemish/GMDS
+blemished/U
+blench/DSG
+blend/ZGMDRS
+blender/M
+bless/GDSJ
+blessed/YP
+blessedness/M
+blessing/M
+bletch
+blew
+blight/ZGMDRS
+blimey
+blimp/MS
+blimpish
+blind/PZTGMDRYS
+blinder/M
+blindfold/SMDG
+blinding/Y
+blindness/M
+blindside/DSG
+blini/MS
+blink/ZGMDRS
+blinker/MDG
+blintz/MS
+blintze/M
+blip/SM
+bliss/M
+blissful/YP
+blissfulness/M
+blister/GMDS
+blistering/Y
+blistery
+blithe/PYTR
+blitheness/M
+blither/G
+blithesome
+blitz/GMDS
+blitzkrieg/MS
+blivet/S
+blizzard/SM
+bloat/ZGDRS
+bloatware
+blob/SM
+blobbed
+blobbing
+bloc/SM
+block's
+block/UGDS
+blockade/MZGDRS
+blockader/M
+blockage/MS
+blockbuster/SM
+blockbusting/M
+blockchain/MS
+blocker/MS
+blockhead/SM
+blockhouse/MS
+blog/SM
+blogged
+blogger/MS
+blogging
+bloke/MS
+blokish
+blond/PTMRS
+blonde/MS
+blondish
+blondness/M
+blood/GMDS
+bloodbath/M
+bloodbaths
+bloodcurdling
+bloodhound/SM
+bloodily
+bloodiness/M
+bloodless/YP
+bloodlessness/M
+bloodletting/M
+bloodline/SM
+bloodmobile/MS
+bloodshed/M
+bloodshot
+bloodstain/SMD
+bloodstock/M
+bloodstream/SM
+bloodsucker/SM
+bloodsucking
+bloodthirstily
+bloodthirstiness/M
+bloodthirsty/RPT
+bloody/PTGDRS
+bloom/ZGMDRS
+bloomer/M
+bloop/ZGMDRS
+blooper/M
+blossom/GMDS
+blossomy
+blot/SM
+blotch/GMDS
+blotchy/TR
+blotted
+blotter/MS
+blotting
+blotto
+blouse/MGDS
+blow/SZGMR
+blower/M
+blowfly/SM
+blowgun/MS
+blowhard/MS
+blowhole/S
+blowie/M
+blowjob/SM
+blowlamp/S
+blown
+blowout/SM
+blowpipe/SM
+blowsy/RT
+blowtorch/MS
+blowup/MS
+blowy/TRSM
+blubber/GSMD
+blubbery
+bludgeon/MDGS
+bludger/SM
+blue/DRSPMTG
+bluebell/MS
+blueberry/SM
+bluebird/MS
+bluebonnet/SM
+bluebottle/SM
+bluefish/MS
+bluegill/MS
+bluegrass/M
+blueish
+bluejacket/SM
+bluejeans/M
+blueness/M
+bluenose/MS
+bluepoint/MS
+blueprint/MDGS
+bluestocking/SM
+bluesy/RT
+bluet/MS
+bluey/MS
+bluff/ZTGPMDRYS
+bluffer/M
+bluffness/M
+bluing/M
+bluish
+blunder/MDRZGS
+blunderbuss/MS
+blunderer/M
+blunt/PTGDRYS
+bluntness/M
+blur/SM
+blurb/MS
+blurred
+blurriness/M
+blurring
+blurry/TRP
+blurt/GDS
+blush/ZGMDRS
+blusher/M
+bluster/MDRSZG
+blusterer/M
+blusterous
+blustery
+blvd
+boa/SM
+boar/SM
+board/ZGMDRS
+boarder/M
+boarding/M
+boardinghouse/MS
+boardroom/MS
+boardwalk/MS
+boast/ZGMDRS
+boaster/M
+boastful/PY
+boastfulness/M
+boat/SZGMDR
+boater/M
+boathouse/MS
+boating/M
+boatload/S
+boatman/M
+boatmen
+boatswain/SM
+boatyard/S
+bob/SM
+bobbed
+bobbin/MS
+bobbing
+bobble/MGDS
+bobby/SM
+bobbysoxer/SM
+bobcat/MS
+bobolink/SM
+bobsled/SM
+bobsledded
+bobsledder/MS
+bobsledding
+bobsleigh/M
+bobsleighs
+bobtail/SM
+bobwhite/MS
+boccie/M
+bock/M
+bod/SMDG
+bodacious
+bode/S
+bodega/MS
+bodge/GDS
+bodice/MS
+bodily
+bodkin/MS
+body/DSM
+bodybuilder/SM
+bodybuilding/M
+bodyguard/MS
+bodysuit/SM
+bodywork/M
+boffin/S
+boffo
+bog/SM
+boga
+bogan/MS
+bogey/GMDS
+bogeyman/M
+bogeymen
+bogged
+bogging
+boggle/GDS
+boggy/TR
+bogie/MS
+bogon
+bogosity
+bogus
+bogyman/M
+bogymen
+bohemian/SM
+bohemianism/M
+boil/SJZGMDR
+boiler/M
+boilermaker/SM
+boilerplate/M
+boink/GDS
+boisterous/YP
+boisterousness/M
+bola/SM
+bold/PTRY
+boldface/DM
+boldness/M
+bole/SM
+bolero/MS
+bolivar/MS
+bolivares
+boll/SM
+bollard/S
+bollix/GMDS
+bollocking/S
+bollocks
+bologna/M
+bolshie
+bolster/GMDS
+bolt's
+bolt/USGD
+bolthole/S
+bolus/MS
+bomb/SJZGMDR
+bombard/GDLS
+bombardier/MS
+bombardment/SM
+bombast/M
+bombastic
+bombastically
+bomber/M
+bombproof
+bombshell/SM
+bombsite/S
+bonanza/MS
+bonbon/MS
+bonce/S
+bond/SGMD
+bondage/M
+bondholder/MS
+bonding/M
+bondman/M
+bondmen
+bondsman/M
+bondsmen
+bondwoman/M
+bondwomen
+bone/DRSMZG
+bonehead/SMD
+boneless
+boner/M
+boneshaker/S
+boneyard
+bonfire/MS
+bong/SGMD
+bongo/MS
+bonhomie/M
+boniness/M
+bonito/MS
+bonk/SZGD
+bonnet/MS
+bonny/TR
+bonobo/MS
+bonsai/M
+bonus/MS
+bony/PTR
+bonz/R
+bonza
+bonze
+boo/SMDHG
+boob/SGMD
+booby/SM
+boodle/MS
+booger/S
+boogeyman/M
+boogeymen
+boogie/MDS
+boogieing
+boogieman/M
+boohoo/GMDS
+book/SBJGMD
+bookbinder/SM
+bookbindery/SM
+bookbinding/M
+bookcase/MS
+bookend/MS
+bookie/MS
+booking/M
+bookish
+bookkeeper/MS
+bookkeeping/M
+booklet/MS
+bookmaker/SM
+bookmaking/M
+bookmark/SMDG
+bookmobile/SM
+bookplate/MS
+bookseller/MS
+bookshelf/M
+bookshelves
+bookshop/SM
+bookstall/S
+bookstore/MS
+bookworm/SM
+boolean
+boom/SZGMDR
+boombox/MS
+boomerang/MDGS
+boon/SM
+boondocks/M
+boondoggle/MZGDRS
+boondoggler/M
+boonies/M
+boor/SM
+boorish/PY
+boorishness/MS
+boost/ZGMDRS
+booster/M
+boot's
+boot/ASGD
+bootblack/SM
+bootee/MS
+booth/M
+booths
+bootlace/S
+bootleg/MS
+bootlegged
+bootlegger/MS
+bootlegging/M
+bootless
+bootstrap/MS
+bootstrapped
+bootstrapping
+booty/SM
+booze/MZGDRS
+boozer/M
+boozy/TR
+bop/SM
+bopped
+bopping
+borax/M
+bordello/MS
+border/GMDS
+borderland/MS
+borderline/MS
+bore/DRSMZG
+boredom/M
+borehole/S
+borer/M
+boring/Y
+born/IAU
+borne
+boron/M
+borough/M
+boroughs
+borrow/SDRZGJ
+borrower/M
+borrowing/M
+borscht/M
+borstal/S
+borzoi/SM
+bosh/M
+boshter
+bosker
+bosom's
+bosom/US
+bosomy
+boss/DSGM
+bossily
+bossiness/M
+bossism/M
+bossy/RTP
+bot/S
+botanic
+botanical/Y
+botanist/SM
+botany/M
+botch/DRSZGM
+botcher/M
+both
+bother/SMDG
+botheration
+bothered/U
+bothersome
+botnet/SM
+bottle/DRSMZG
+bottleneck/MS
+bottler/M
+bottom/SMDG
+bottomless
+botulinum
+botulism/M
+boudoir/SM
+bouffant/SM
+bougainvillea/MS
+bough/M
+boughs
+bought
+bouillabaisse/SM
+bouillon/MS
+boulder/SM
+boules
+boulevard/SM
+bounce/DRSMZG
+bouncer/M
+bouncily
+bounciness/M
+bouncy/RTP
+bound/ASMGD
+boundary/SM
+bounden
+bounder/SM
+boundless/PY
+boundlessness/M
+bounteous/YP
+bounteousness/M
+bountiful/YP
+bountifulness/M
+bounty/SM
+bouquet/SM
+bourbon/SM
+bourgeois/M
+bourgeoisie/M
+boustrophedon
+bout/MS
+boutique/SM
+boutonniere/MS
+bouzouki/MS
+bovine/SM
+bovver
+bow/ZGSMDR
+bowdlerisation/MS
+bowdlerise/DSG
+bowed/U
+bowel/SM
+bower/M
+bowl/MDRZGS
+bowleg/SM
+bowlegged
+bowler/M
+bowlful/SM
+bowline/SM
+bowling/M
+bowman/M
+bowmen
+bowsprit/SM
+bowstring/SM
+bowwow/SM
+box/ZGMDNRS
+boxcar/SM
+boxer/M
+boxing/M
+boxlike
+boxroom/S
+boxwood/M
+boxy/RT
+boy/SM
+boycott/SGMD
+boyfriend/MS
+boyhood/SM
+boyish/YP
+boyishness/M
+boysenberry/SM
+bozo/MS
+bpm
+bps
+bra/SM
+brace/MZGDRS
+bracelet/MS
+bracer/M
+bracero/MS
+bracken/M
+bracket/GMDS
+brackish/P
+brackishness/M
+bract/MS
+brad/SM
+bradawl/S
+bradycardia
+brae/SM
+brag/SM
+braggadocio/SM
+braggart/SM
+bragged
+bragger/MS
+bragging
+braid/GMDS
+braiding/M
+braille/M
+brain/GMDS
+brainchild/M
+brainchildren/M
+braininess/M
+brainless/Y
+brainpower
+brainstorm/SMDG
+brainstorming/M
+brainteaser/SM
+brainwash/DSG
+brainwashing/M
+brainwave/S
+brainy/PTR
+braise/GDS
+brake/MGDS
+brakeman/M
+brakemen
+bramble/MS
+brambly
+bran/M
+branch/GMDS
+branchlike
+brand/ZGMDRS
+branded/U
+brander/M
+brandish/DSG
+brandy/GDSM
+brash/PTRY
+brashness/M
+brass/MS
+brasserie/MS
+brassiere/MS
+brassily
+brassiness/M
+brassy/PTR
+brat/SM
+bratty/RT
+bratwurst/SM
+bravado/M
+brave/GPMYDTRS
+braveness/M
+bravery/M
+bravo/SM
+bravura/SM
+brawl/SDRZGM
+brawler/M
+brawn/M
+brawniness/M
+brawny/RTP
+bray/DGSM
+braze/DRSZG
+brazen/SDYGP
+brazenness/M
+brazer/M
+brazier/SM
+breach/GMDS
+bread/GMDHS
+breadbasket/SM
+breadboard/SM
+breadbox/MS
+breadcrumb/MS
+breadfruit/SM
+breadline/MS
+breadth/M
+breadths
+breadwinner/SM
+break/BMZGRS
+breakable/MS
+breakage/MS
+breakaway/MS
+breakdown/MS
+breaker/M
+breakfast/MDGS
+breakfront/MS
+breakneck
+breakout/MS
+breakpoints
+breakthrough/M
+breakthroughs
+breakup/SM
+breakwater/SM
+bream/MS
+breast/SMDG
+breastbone/MS
+breastfed
+breastfeed/GS
+breastplate/SM
+breaststroke/SM
+breastwork/MS
+breath/MDRSZGB
+breathalyse/ZGDRS
+breathe
+breather/M
+breathing/M
+breathless/PY
+breathlessness/M
+breaths
+breathtaking/Y
+breathy/RT
+bred/I
+breech/MS
+breed/SRZGM
+breeder/M
+breeding/IM
+breeze/DSMG
+breezeway/SM
+breezily
+breeziness/M
+breezy/RTP
+brekkie/M
+brekky/SM
+brethren
+breve/SM
+brevet/SM
+brevetted
+brevetting
+breviary/SM
+brevity/M
+brew/MDRZGS
+brewer/M
+brewery/SM
+brewpub/SM
+briar/SM
+bribe/DRSMZG
+briber/M
+bribery/M
+brick/SMDG
+brickbat/SM
+brickie/S
+bricklayer/MS
+bricklaying/M
+brickwork/M
+brickyard/S
+bridal/SM
+bride/SM
+bridegroom/SM
+bridesmaid/MS
+bridge/DSMG
+bridgeable/U
+bridgehead/SM
+bridgework/M
+bridle/DSMG
+bridled/U
+bridleway/S
+brie/M
+brief's
+brief/CSDTGJ
+briefcase/SM
+briefer
+briefing/CM
+briefly
+briefness/M
+brig/MS
+brigade/SM
+brigadier/MS
+brigand/SM
+brigandage/M
+brigantine/MS
+bright/SPNRYXT
+brighten/DRZG
+brightener/M
+brightness/M
+brights/M
+brill
+brilliance/M
+brilliancy/M
+brilliant/MYS
+brilliantine/M
+brim/MS
+brimful
+brimless
+brimmed
+brimming
+brimstone/M
+brindle/DM
+brine/M
+bring/SRZG
+bringer/M
+brininess/M
+brink/SM
+brinkmanship/M
+briny/RTP
+brioche/SM
+briquette/MS
+brisk/SDRYTGP
+brisket/SM
+briskness/M
+bristle/DSMG
+bristly/TR
+britches/M
+brittle/PRMT
+brittleness/M
+bro/SMH
+broach/MDSG
+broad/SMNRYXTP
+broadband/M
+broadcast/AMGS
+broadcaster/MS
+broadcasting/M
+broadcloth/M
+broaden/DG
+broadloom/M
+broadminded
+broadness/M
+broadsheet/SM
+broadside/MGDS
+broadsword/SM
+brocade/DSMG
+broccoli/M
+brochette/SM
+brochure/MS
+brogan/SM
+brogue/SM
+broil/SMDRZG
+broiler/M
+broke
+broken/YP
+brokenhearted/Y
+brokenness/M
+broker/SMDG
+brokerage/MS
+brolly/S
+bromide/SM
+bromidic
+bromine/M
+bronc/SM
+bronchi
+bronchial
+bronchitic
+bronchitis/M
+bronchus/M
+bronco/SM
+broncobuster/SM
+brontosaur/MS
+brontosaurus/MS
+bronze/DSMG
+brooch/MS
+brood/SMDRZG
+brooder/M
+broodily
+brooding/MY
+broodmare/MS
+broody/RMPT
+brook/SMDG
+brooklet/SM
+broom/SM
+broomstick/MS
+broth/MRZ
+brothel/MS
+brother/MY
+brotherhood/MS
+brotherliness/M
+broths
+brougham/SM
+brought
+brouhaha/SM
+brow/MS
+browbeat/SNG
+brown/SMDRPTG
+brownfield
+brownie/MS
+brownish
+brownness/M
+brownout/SM
+brownstone/MS
+browse/DRSMZG
+browser/M
+brr
+bruin/SM
+bruise/DRSMZG
+bruiser/M
+bruising/M
+bruit/SDG
+brumby/SM
+brunch/MDSG
+brunet/SM
+brunette/MS
+brunt/M
+brush/MDSG
+brushoff/SM
+brushstroke/S
+brushwood/M
+brushwork/M
+brusque/RPYT
+brusqueness/M
+brutal/Y
+brutalisation/M
+brutalise/GDS
+brutality/SM
+brute/SM
+brutish/PY
+brutishness/M
+bu
+bub/SM
+bubble/DSMG
+bubblegum/M
+bubbly/RMT
+bubo/M
+buboes
+buccaneer/SGMD
+buck/MDGS
+buckaroo/SM
+buckboard/MS
+bucket/SGMD
+bucketful/MS
+buckeye/MS
+buckle's
+buckle/UDSG
+buckler/MS
+buckram/M
+bucksaw/MS
+buckshot/M
+buckskin/MS
+buckteeth
+bucktooth/MD
+buckwheat/M
+buckyball/SM
+bucolic/MS
+bucolically
+bud/SM
+budded
+budding/S
+buddy/SM
+budge/DSG
+budgerigar/MS
+budget/SGMD
+budgetary
+budgie/SM
+buff/AMDGS
+buffalo/MDG
+buffaloes
+buffer/SMDG
+buffet/SMDGJ
+buffoon/SM
+buffoonery/M
+buffoonish
+bug's
+bug/CS
+bugaboo/SM
+bugbear/SM
+bugged/C
+bugger/SMDG
+buggery
+bugging/C
+buggy/RSMT
+bugle/DRSMZG
+bugler/M
+build/SMRZGJ
+builder/M
+building/M
+buildup/SM
+built/AI
+builtin
+bulb/MS
+bulbous
+bulge/DSMG
+bulgy/RT
+bulimarexia/M
+bulimia/M
+bulimic/SM
+bulk/MDGS
+bulkhead/MS
+bulkiness/M
+bulky/RTP
+bull/MDGS
+bulldog/SM
+bulldogged
+bulldogging
+bulldoze/ZGDRS
+bulldozer/M
+bullet/SMD
+bulletin/MDGS
+bulletproof/SDG
+bullfight/SMRZG
+bullfighter/M
+bullfighting/M
+bullfinch/MS
+bullfrog/MS
+bullhead/MDS
+bullheaded/PY
+bullheadedness/M
+bullhorn/MS
+bullion/M
+bullish/YP
+bullishness/M
+bullock/SM
+bullpen/SM
+bullring/MS
+bullseye
+bullshit/MS!
+bullshitted/!
+bullshitter/SM!
+bullshitting/!
+bullwhip/S
+bully/DSMG
+bulrush/MS
+bulwark/MS
+bum/SM
+bumbag/S
+bumble/DRSZG
+bumblebee/SM
+bumbler/M
+bumf
+bummed
+bummer/SM
+bummest
+bumming
+bump/MDRZGS
+bumper/M
+bumph
+bumpiness/M
+bumpkin/MS
+bumptious/PY
+bumptiousness/M
+bumpy/PRT
+bun/SM
+bunch/MDSG
+bunchy/RT
+bunco/SMDG
+bundle/DSMG
+bundy/DSMG
+bung/MDGS
+bungalow/MS
+bungee/SM
+bunghole/MS
+bungle/DRSMZG
+bungler/M
+bunion/SM
+bunk's
+bunk/CDGS
+bunker/SM
+bunkhouse/SM
+bunkum/M
+bunny/SM
+bunt/MDGSJ
+bunting/M
+bunyip/SM
+buoy/MDGS
+buoyancy/M
+buoyant/Y
+bur/SMY
+burble/DSMG
+burbs/M
+burden's
+burden/USGD
+burdensome
+burdock/M
+bureau/SM
+bureaucracy/SM
+bureaucrat/MS
+bureaucratic
+bureaucratically
+bureaucratisation/M
+bureaucratise/GDS
+burg/MRZS
+burgeon/DSG
+burger/M
+burgh/MRZ
+burgher/M
+burghs
+burglar/MS
+burglarise/GDS
+burglarproof
+burglary/SM
+burgle/DSG
+burgomaster/SM
+burgundy/SM
+burial/ASM
+burl/MDS
+burlap/M
+burlesque/MGDS
+burliness/M
+burly/RPT
+burn/MDRZGSB
+burnable/SM
+burner/M
+burnish/ZGMDRS
+burnisher/M
+burnoose/MS
+burnout/MS
+burnt
+burp/MDGS
+burqa/SM
+burr/MDGS
+burrito/MS
+burro/SM
+burrow/SMDRZG
+burrower/M
+bursa/M
+bursae
+bursar/SM
+bursary/SM
+bursitis/M
+burst/SMG
+bury/ADSG
+bus/AMS
+busboy/SM
+busby/SM
+busgirl/MS
+bush/MDSGJ
+bushel/SM
+bushelled
+bushelling/S
+bushfire/SM
+bushie/M
+bushiness/M
+bushing/M
+bushman/M
+bushmaster/SM
+bushmen
+bushranger/MS
+bushwhack/DRSZG
+bushwhacker/M
+bushy/RSMPT
+busily
+business/MS
+businesslike
+businessman/M
+businessmen
+businessperson/SM
+businesswoman/M
+businesswomen
+busk/DRZGS
+buskin/SM
+busload/S
+buss/MDSG
+bussing/M
+bust/MDRZGS
+buster/M
+bustle/DSMG
+busty/RZT
+busy/DRSTGP
+busybody/SM
+busyness/M
+busywork/M
+but/ACS
+butane/M
+butch/MRSZ
+butcher/MDG
+butchery/SM
+butler/SM
+butt/MDRZGS
+butte/SM
+butted/A
+butter/MDG
+butterball/MS
+buttercream
+buttercup/SM
+butterfat/M
+butterfingered
+butterfingers/M
+butterfly/GDSM
+buttermilk/M
+butternut/SM
+butterscotch/M
+buttery/TRSM
+butting/A
+buttock/SM
+button's
+button/USDG
+buttonhole/DSMG
+buttonwood/MS
+buttress/MDSG
+butty/S
+buxom
+buy/ZGSMR
+buyback/SM
+buyer/M
+buyout/SM
+buzz/MDRSZG
+buzzard/MS
+buzzer/M
+buzzkill/SM
+buzzword/SM
+bx
+bxs
+by/M
+bye/SM
+bygone/SM
+bylaw/SM
+byline/SM
+bypass/GMDS
+bypath/M
+bypaths
+byplay/M
+byproduct/MS
+byre/S
+byroad/SM
+bystander/MS
+byte/MS
+byway/SM
+byword/SM
+byzantine
+c/IES
+ca
+cab/SMRZ
+cabal/MS
+cabala's
+caballero/MS
+cabana/SM
+cabaret/SM
+cabbage/MS
+cabbed
+cabbing
+cabby/SM
+cabdriver/SM
+cabin/MS
+cabinet/SM
+cabinetmaker/MS
+cabinetmaking/M
+cabinetry/M
+cabinetwork/M
+cable/MGDS
+cablecast/GMS
+cablegram/MS
+cabochon/SM
+caboodle/M
+caboose/SM
+cabriolet/SM
+cabstand/SM
+cacao/MS
+cache/MGDS
+cachepot/SM
+cachet/MS
+cackle/MZGDRS
+cackler/M
+cacophonous
+cacophony/SM
+cacti
+cactus/M
+cad/SM
+cadaver/SM
+cadaverous
+caddie/MDS
+caddish/YP
+caddishness/M
+caddying
+cadence/DSM
+cadenza/SM
+cadet/MS
+cadge/ZGDRS
+cadger/M
+cadmium/M
+cadre/MS
+caducei
+caduceus/M
+caesium/M
+caesura/SM
+cafe/SM
+cafeteria/MS
+cafetiere/S
+caff/CS
+caffeinated
+caffeine/M
+cage/DSMG
+cagey
+cagier
+cagiest
+cagily
+caginess/M
+cagoule/S
+cahoot/MS
+caiman/MS
+cairn/MS
+caisson/SM
+caitiff/SM
+cajole/ZGLDRS
+cajolement/M
+cajoler/M
+cajolery/M
+cake/DSMG
+cakewalk/SM
+cal
+calabash/MS
+calaboose/SM
+calamari/SM
+calamine/M
+calamitous/Y
+calamity/SM
+calcareous
+calciferous
+calcification/M
+calcify/GNDS
+calcimine/DSMG
+calcine/DSG
+calcite/M
+calcium/M
+calculable/I
+calculate/AGNVDSX
+calculated/Y
+calculating/Y
+calculation/AM
+calculator/SM
+calculi
+calculus/M
+caldera/SM
+calendar/MDGS
+calf/M
+calfskin/M
+calibrate/GNDSX
+calibration/M
+calibrator/SM
+calibre/SM
+calico/M
+calicoes
+californium/M
+caliper/SGMD
+caliph/M
+caliphate/MS
+caliphs
+calisthenics's
+call/ASGMD
+calla/MS
+callable
+callback/MS
+called/U
+caller/MS
+calligrapher/SM
+calligraphic
+calligraphist/MS
+calligraphy/M
+calling/SM
+calliope/MS
+callisthenic/S
+callosity/SM
+callous/PGDSY
+callousness/M
+callow/RPT
+callowness/M
+callus/MDSG
+calm/PSTGMDRY
+calmness/M
+caloric
+calorie/MS
+calorific
+calumet/MS
+calumniate/GNDS
+calumniation/M
+calumniator/MS
+calumnious
+calumny/SM
+calve/GDS
+calypso/MS
+calyx/MS
+cam/SM
+camaraderie/M
+camber/MDSG
+cambial
+cambium/SM
+cambric/M
+camcorder/SM
+came
+camel/MS
+camelhair
+camellia/MS
+cameo/MS
+camera/MS
+cameraman/M
+cameramen
+camerapeople
+cameraperson
+camerawoman/M
+camerawomen
+camerawork
+camiknickers
+camisole/SM
+camouflage/MZGDRS
+camouflager/M
+camp's
+camp/CSGD
+campaign/SMDRZG
+campaigner/M
+campanile/SM
+campanologist/MS
+campanology/M
+camper/MS
+campfire/SM
+campground/SM
+camphor/M
+camping/M
+campsite/SM
+campus/MS
+campy/TR
+camshaft/SM
+can't
+can/SMDRZG
+canal/MS
+canalisation/M
+canalise/GDS
+canape/MS
+canard/MS
+canary/SM
+canasta/M
+cancan/MS
+cancel/S
+cancellation/SM
+cancelled
+canceller/SM
+cancelling
+cancellous
+cancer/MS
+cancerous
+candelabra/SM
+candelabrum/M
+candid/YP
+candida
+candidacy/SM
+candidate/MS
+candidature/SM
+candidness/M
+candle/MZGDRS
+candlelight/M
+candlelit
+candlepower/M
+candler/M
+candlestick/MS
+candlewick/SM
+candour/M
+candy/GDSM
+candyfloss
+cane/SM
+canebrake/MS
+caner/M
+canine/MS
+canister/SM
+canker/GMDS
+cankerous
+cannabis/MS
+canned
+cannelloni/M
+cannery/SM
+cannibal/SM
+cannibalisation/M
+cannibalise/GDS
+cannibalism/M
+cannibalistic
+cannily/U
+canniness/M
+canning
+cannon/GMDS
+cannonade/MGDS
+cannonball/SM
+cannot
+canny/UTR
+canoe/MDS
+canoeing
+canoeist/SM
+canola/M
+canon/MS
+canonical/Y
+canonisation/MS
+canonise/DSG
+canoodle/DSG
+canopy/GDSM
+canst
+cant's
+cant/CZRDGS
+cantabile
+cantaloupe/SM
+cantankerous/PY
+cantankerousness/M
+cantata/MS
+canteen/MS
+canter/CM
+cantered
+cantering
+canticle/MS
+cantilever/MDGS
+canto/MS
+canton/MLS
+cantonal
+cantonment/MS
+cantor/MS
+canvas/MGDS
+canvasback/SM
+canvass/MDRSZG
+canvasser/M
+canyon/MGS
+cap/SMDRBZ
+capabilities
+capability/IM
+capable/I
+capably/I
+capacious/PY
+capaciousness/M
+capacitance/M
+capacities
+capacitor/SM
+capacity/IM
+caparison/MDGS
+cape/SM
+caper/GMD
+capeskin/M
+capillarity/M
+capillary/SM
+capital/MSY
+capitalisation/M
+capitalise/ADSG
+capitalism/M
+capitalist/SM
+capitalistic
+capitalistically
+capitation/CSM
+capitol/SM
+capitulate/ADSXGN
+capitulation/AM
+caplet/MS
+capo/SM
+capon/MS
+capped/UA
+capping/UA
+cappuccino/SM
+caprice/SM
+capricious/PY
+capriciousness/M
+capsicum/SM
+capsize/DSG
+capstan/SM
+capstone/MS
+capsular
+capsule/DSMG
+capsulise/DSG
+capt
+captain/SMDG
+captaincy/SM
+caption/SMDG
+captious/YP
+captiousness/M
+captivate/DSGN
+captivation/M
+captivator/SM
+captive/SM
+captivity/SM
+captor/MS
+capture/ADSMG
+car/SMDRZG
+carafe/MS
+caramel/SM
+caramelise/DSG
+carapace/SM
+carat/MS
+caravan/SM
+caravansary/SM
+caravel/SM
+caraway/SM
+carbide/SM
+carbine/SM
+carbohydrate/SM
+carbolic
+carbon/MS
+carbonaceous
+carbonate/MGNDS
+carbonation/M
+carboniferous
+carbonise/GDS
+carborundum/M
+carboy/MS
+carbs
+carbuncle/SM
+carbuncular
+carburettor/MS
+carcass/MS
+carcinogen/SM
+carcinogenic/MS
+carcinogenicity/M
+carcinoma/MS
+card/ESGMD
+cardamom/SM
+cardamon/S
+cardboard/M
+carder/MS
+cardholder/S
+cardiac
+cardiae
+cardies
+cardigan/SM
+cardinal/SMY
+cardio
+cardiogram/SM
+cardiograph/M
+cardiographs
+cardiologist/MS
+cardiology/M
+cardiomyopathy
+cardiopulmonary
+cardiovascular
+cardsharp/MRZS
+cardsharper/M
+care/SM
+careen/DGS
+career/MDGS
+careerism
+careerist/SM
+carefree
+careful/YP
+carefuller
+carefullest
+carefulness/M
+caregiver/SM
+careless/PY
+carelessness/M
+carer/M
+caress/MDSG
+caret/MS
+caretaker/MS
+careworn
+carfare/M
+cargo/M
+cargoes
+carhop/MS
+caribou/SM
+caricature/MGDS
+caricaturist/SM
+caries/M
+carillon/SM
+caring/M
+carious
+carjack/JSDRZG
+carjacker/M
+carjacking/M
+cark/SGD
+carload/SM
+carmaker/S
+carmine/SM
+carnage/M
+carnal/Y
+carnality/M
+carnation/IMS
+carnelian/MS
+carnival/MS
+carnivora
+carnivore/SM
+carnivorous/PY
+carnivorousness/M
+carny/SM
+carob/MS
+carol/MS
+carolled
+caroller/MS
+carolling
+carom/GMDS
+carotene/M
+carotid/SM
+carousal/SM
+carouse/DRSMZG
+carousel/SM
+carouser/M
+carp/SZGMDR
+carpal/MS
+carpel/MS
+carpenter/MDGS
+carpentry/M
+carper/M
+carpet/MDGS
+carpetbag/MS
+carpetbagged
+carpetbagger/MS
+carpetbagging
+carpeting/M
+carpi
+carpool/SMDG
+carport/SM
+carpus/M
+carrel/MS
+carriage/SM
+carriageway/S
+carrier/M
+carrion/M
+carrot/MS
+carroty
+carry/ZGDRSM
+carryall/SM
+carrycot/S
+carryout
+carryover/MS
+carsick/P
+carsickness/M
+cart/SZGMDR
+cartage/M
+cartel/MS
+carter/M
+carthorse/SM
+cartilage/SM
+cartilaginous
+cartload/SM
+cartographer/SM
+cartographic
+cartography/M
+carton/MS
+cartoon/SMDG
+cartoonist/MS
+cartridge/MS
+cartwheel/GMDS
+carve/JZGDRS
+carver/M
+carvery/S
+carving/M
+caryatid/MS
+casaba/MS
+cascade/DSMG
+cascara/SM
+case/LDSJMG
+casebook/S
+cased/U
+caseharden/DGS
+casein/M
+caseload/MS
+casement/MS
+casework/ZMR
+caseworker/M
+cash/GMDS
+cashback/M
+cashbook/MS
+cashew/MS
+cashier/GSMD
+cashless
+cashmere/M
+casing/M
+casino/MS
+cask/SM
+casket/MS
+cassava/SM
+casserole/DSMG
+cassette/MS
+cassia/MS
+cassock/SM
+cassowary/SM
+cast/ASGM
+castanet/MS
+castaway/MS
+caste/JMZRS
+castellated
+caster/M
+castigate/DSGN
+castigation/M
+castigator/SM
+casting/AM
+castle/MGDS
+castoff/SM
+castor/MS
+castrate/GNXDS
+castration/M
+casual/PMYS
+casualness/M
+casualty/SM
+casuist/SM
+casuistic
+casuistry/M
+cat/SM
+cataclysm/MS
+cataclysmal
+cataclysmic
+catacomb/SM
+catafalque/MS
+catalepsy/M
+cataleptic/MS
+catalogue/DRSMZG
+catalogued/U
+cataloguer/M
+catalpa/SM
+catalyse/GDS
+catalysis/M
+catalyst/MS
+catalytic/M
+catamaran/SM
+catapult/GMDS
+cataract/MS
+catarrh/M
+catastrophe/MS
+catastrophic
+catastrophically
+catatonia/M
+catatonic/SM
+catbird/SM
+catboat/SM
+catcall/GSMD
+catch/ZGJLMRS
+catchall/MS
+catcher/M
+catchment/MS
+catchpenny
+catchphrase/SM
+catchword/MS
+catchy/RT
+catechise/DSG
+catechism/SM
+catechist/SM
+categorical/Y
+categorisation/SM
+categorise/GDS
+category/SM
+cater/ZGJDRS
+catercorner
+caterer/M
+caterpillar/MS
+caterwaul/SMDG
+catfish/MS
+catgut/M
+catharses
+catharsis/M
+cathartic/SM
+cathedral/SM
+catheter/SM
+catheterise/DSG
+cathode/SM
+cathodic
+catholic
+catholicity/M
+cation/MS
+catkin/MS
+catlike
+catnap/MS
+catnapped
+catnapping
+catnip/M
+catsuit/S
+cattail/SM
+catted
+cattery/S
+cattily
+cattiness/M
+catting
+cattle/M
+cattleman/M
+cattlemen
+catty/TPR
+catwalk/SM
+caucus/MDSG
+caudal/Y
+caught/U
+cauldron/MS
+cauliflower/SM
+caulk/ZGMDRS
+caulker/M
+causal/Y
+causality/SM
+causation/M
+causative
+cause/MZGDRS
+causeless
+causer/M
+causerie/SM
+causeway/SM
+caustic/SM
+caustically
+causticity/M
+cauterisation/M
+cauterise/GDS
+caution/SMDG
+cautionary
+cautious/IY
+cautiousness/M
+cavalcade/MS
+cavalier/SMY
+cavalry/SM
+cavalryman/M
+cavalrymen
+cave/DRSMZG
+caveat/MS
+caveman/M
+cavemen
+cavern/MS
+cavernous/Y
+caviar/M
+cavil/MS
+cavilled
+caviller/MS
+cavilling/S
+caving/M
+cavitation
+cavity/FSM
+cavort/DGS
+caw/SMDG
+cay/CSM
+cayenne/M
+cayuse/MS
+cc
+cease/CMGDS
+ceasefire/MS
+ceaseless/YP
+ceaselessness/M
+ceca
+cecal
+cecum/M
+cedar/MS
+cede/FAGSD
+ceder/MS
+cedilla/SM
+ceilidh
+ceilidhs
+ceiling/MS
+celandine/M
+celeb/S
+celebrant/SM
+celebrate/DSGNX
+celebration/M
+celebrator/SM
+celebratory
+celebrity/SM
+celeriac
+celerity/M
+celery/M
+celesta/MS
+celestial/Y
+celibacy/M
+celibate/MS
+cell/SMD
+cellar/MS
+cellist/SM
+cellmate/SM
+cello/MS
+cellophane/M
+cellphone/MS
+cellular/SM
+cellulite/M
+cellulitis
+celluloid/M
+cellulose/M
+cement/MDRZGS
+cementer/M
+cementum/M
+cemetery/SM
+cenotaph/M
+cenotaphs
+censer/MS
+censor/MDGS
+censored/U
+censorial
+censorious/PY
+censoriousness/M
+censorship/M
+censure/BDRSMZG
+censurer/M
+census/MDSG
+cent/SM
+centaur/SM
+centavo/SM
+centenarian/MS
+centenary/SM
+centennial/MYS
+centigrade
+centigram/SM
+centilitre/MS
+centime/SM
+centimetre/MS
+centipede/SM
+central/SMY
+centralisation/CM
+centralise/CGDS
+centraliser/MS
+centralism
+centralist
+centrality/M
+centre/MGDS
+centreboard/SM
+centrefold/SM
+centrepiece/SM
+centrifugal/Y
+centrifuge/DSMG
+centripetal/Y
+centrism/M
+centrist/MS
+centurion/SM
+century/SM
+cephalic
+ceramic/SM
+ceramicist/SM
+ceramics/M
+ceramist/MS
+cereal/MS
+cerebellar
+cerebellum/SM
+cerebra
+cerebral
+cerebrate/GNDS
+cerebration/M
+cerebrovascular
+cerebrum/MS
+cerement/MS
+ceremonial/SMY
+ceremonious/UY
+ceremoniousness/M
+ceremony/SM
+cerise/M
+cerium/M
+cermet/M
+cert/S
+certain/UY
+certainty/USM
+certifiable
+certifiably
+certificate/MGNXDS
+certification/M
+certify/DSG
+certitude/IM
+certitudes
+cerulean/M
+cervical
+cervices
+cervix/M
+cesarean/MS
+cessation/MS
+cession/KAFSM
+cesspit/S
+cesspool/MS
+cetacean/MS
+ceteris
+cf
+cg
+ch/IFVT
+chad/S
+chafe/GDS
+chaff/GMDS
+chaffinch/MS
+chagrin/GSMD
+chain's
+chain/UGDS
+chainsaw/MDGS
+chair/GMDS
+chairlift/MS
+chairman/M
+chairmanship/SM
+chairmen
+chairperson/SM
+chairwoman/M
+chairwomen
+chaise/MS
+chalcedony/M
+chalet/MS
+chalice/SM
+chalk/GMDS
+chalkboard/SM
+chalkiness/M
+chalky/PRT
+challenge/DRSMZG
+challenged/U
+challenger/M
+challis/M
+chamber/SMD
+chamberlain/MS
+chambermaid/MS
+chambray/M
+chameleon/SM
+chamois/M
+chamomile/MS
+champ/ZGMDS
+champagne/MS
+champion/GMDS
+championship/MS
+chance/MGDS
+chancel/SM
+chancellery/SM
+chancellor/MS
+chancellorship/M
+chancery/SM
+chanciness/M
+chancre/SM
+chancy/PRT
+chandelier/SM
+chandler/MS
+change/MZGDRS
+changeability/M
+changeable/P
+changeableness/M
+changeably
+changed/U
+changeless/Y
+changeling/SM
+changeover/SM
+changer/M
+changing/U
+channel/SM
+channelisation/M
+channelise/DSG
+channelled
+channelling
+chanson/SM
+chant/ZGMDRS
+chanter/M
+chanteuse/MS
+chantey/SM
+chanticleer/MS
+chaos/M
+chaotic
+chaotically
+chap/SM
+chaparral/SM
+chapati/S
+chapatti/S
+chapbook/MS
+chapeau/SM
+chapel/MS
+chaperonage/M
+chaperone/DSMG
+chaperoned/U
+chaplain/MS
+chaplaincy/SM
+chaplet/SM
+chapped
+chapping
+chappy/S
+chapter/SM
+char/SM
+charabanc/MS
+character/MS
+characterful
+characterisation/SM
+characterise/DSG
+characteristic/SM
+characteristically/U
+characterless
+charade/SM
+charbroil/GDS
+charcoal/MS
+chard/M
+chardonnay/SM
+charge/AESDGM
+chargeable/A
+charged/U
+charger/SM
+charily
+chariness/M
+chariot/SM
+charioteer/MS
+charisma/M
+charismatic/MS
+charitable/P
+charitableness/M
+charitably/U
+charity/SM
+charlady/S
+charlatan/SM
+charlatanism/M
+charlatanry/M
+charlie/S
+charm/ZGMDRS
+charmer/M
+charming/Y
+charmless
+charred
+charring
+chart/GMDS
+charted/U
+charter's
+charter/ASGD
+charterer/MS
+chartreuse/M
+charwoman/M
+charwomen
+chary/TRP
+chase/MZGDRS
+chaser/M
+chasm/MS
+chassis/M
+chaste/PYTR
+chasten/DGS
+chasteness/M
+chastise/DRSZGL
+chastisement/SM
+chastiser/M
+chastity/M
+chasuble/SM
+chat/SM
+chateau/SM
+chateaux
+chatelaine/SM
+chatline/S
+chatroom/M
+chatted
+chattel/MS
+chatter/MDRZGS
+chatterbox/MS
+chatterer/M
+chattily
+chattiness/M
+chatting
+chatty/TPR
+chauffeur/GMDS
+chauvinism/M
+chauvinist/SM
+chauvinistic
+chauvinistically
+cheap/PXTNRY
+cheapen/DG
+cheapness/M
+cheapo
+cheapskate/MS
+cheat/ZGMDRS
+cheater/M
+check/AGMDS
+checkbox
+checked/U
+checker/MS
+checkers/M
+checklist/MS
+checkmate/MGDS
+checkoff/SM
+checkout/SM
+checkpoint/SM
+checkroom/MS
+checksum
+checkup/MS
+cheddar/M
+cheek/GMDS
+cheekbone/SM
+cheekily
+cheekiness/M
+cheeky/TPR
+cheep/GMDS
+cheer/ZGMDRS
+cheerer/M
+cheerful/YP
+cheerfuller
+cheerfullest
+cheerfulness/M
+cheerily
+cheeriness/M
+cheerio/MS
+cheerleader/SM
+cheerless/PY
+cheerlessness/M
+cheery/TPR
+cheese/MGDS
+cheeseboard/S
+cheeseburger/SM
+cheesecake/SM
+cheesecloth/M
+cheeseparing/M
+cheesiness/M
+cheesy/TPR
+cheetah/M
+cheetahs
+chef/SM
+chem
+chemical/SMY
+chemise/MS
+chemist/MS
+chemistry/M
+chemo/M
+chemotherapeutic
+chemotherapy/M
+chemurgy/M
+chenille/M
+cheque/MZGDRS
+chequebook/MS
+chequer/MDG
+chequerboard/MS
+chequers/M
+cherish/DSG
+cheroot/MS
+cherry/SM
+chert/M
+cherub/MS
+cherubic
+cherubim
+chervil/M
+chess/M
+chessboard/MS
+chessman/M
+chessmen
+chest/MDS
+chesterfield/SM
+chestful/SM
+chestnut/SM
+chesty/TR
+chevalier/SM
+cheviot/M
+chevron/MS
+chew/SZGMDR
+chewer/M
+chewiness/M
+chewy/PTR
+chg
+chge
+chi/SM
+chiaroscuro/M
+chic/PTMR
+chicane/MS
+chicanery/SM
+chichi/MS
+chick/XMNS
+chickadee/SM
+chicken/MDG
+chickenfeed/M
+chickenhearted
+chickenpox/M
+chickenshit/S!
+chickpea/SM
+chickweed/M
+chicle/M
+chicness/M
+chicory/SM
+chide/GDS
+chiding/Y
+chief/TMRYS
+chiefdom/M
+chieftain/MS
+chieftainship/SM
+chiffon/M
+chiffonier/MS
+chigger/MS
+chignon/MS
+chihuahua/SM
+chilblain/SM
+child/M
+childbearing/M
+childbirth/M
+childbirths
+childcare/M
+childhood/SM
+childish/YP
+childishness/M
+childless/P
+childlessness/M
+childlike
+childminder/S
+childminding
+childproof/GSD
+children/M
+chill/JPZTGMDRS
+chiller/M
+chilli/TPMR
+chilliness/M
+chilling/Y
+chillness/M
+chilly/S
+chime/MZGDRS
+chimer/M
+chimera/MS
+chimeric
+chimerical
+chimney/MS
+chimp/MS
+chimpanzee/SM
+chin/SM
+china/M
+chinaware/M
+chinchilla/MS
+chine/MS
+chink/GMDS
+chinless
+chinned
+chinning
+chino/MS
+chinstrap/MS
+chintz/M
+chintzy/RT
+chinwag/S
+chip/SM
+chipboard
+chipmunk/SM
+chipolata/S
+chipped
+chipper/MS
+chippie
+chipping/S
+chippy/S
+chirography/M
+chiropodist/MS
+chiropody/M
+chiropractic/SM
+chiropractor/SM
+chirp/GMDS
+chirpily
+chirpy/PTR
+chirrup/GMDS
+chisel/MS
+chiselled
+chiseller/MS
+chiselling
+chit/SM
+chitchat/SM
+chitchatted
+chitchatting
+chitin/M
+chitinous
+chitosan
+chitterlings/M
+chivalrous/PY
+chivalrousness/M
+chivalry/M
+chive/MS
+chivy/GDS
+chlamydia/MS
+chlamydiae
+chloral/M
+chlordane/M
+chloride/MS
+chlorinate/GNDS
+chlorination/M
+chlorine/M
+chlorofluorocarbon/SM
+chloroform/SGMD
+chlorophyll/M
+chloroplast/MS
+chm
+choc/S
+chock/GMDS
+chockablock
+chocoholic/SM
+chocolate/MS
+chocolatey
+choice/MTRS
+choir/MS
+choirboy/MS
+choirmaster/SM
+choke/MZGDRS
+chokecherry/SM
+choker/M
+cholecystectomy
+cholecystitis
+choler/M
+cholera/M
+choleric
+cholesterol/M
+chomp/ZGMDRS
+chook/MS
+choose/ZGRS
+chooser/M
+choosiness/M
+choosy/TPR
+chop/SM
+chophouse/SM
+chopped
+chopper/MDGS
+choppily
+choppiness/M
+chopping
+choppy/TPR
+chopstick/SM
+choral/MYS
+chorale/MS
+chord/MS
+chordal
+chordate/SM
+chore/MS
+chorea/M
+choreograph/DRZG
+choreographer/M
+choreographic
+choreographically
+choreographs
+choreography/M
+chorister/SM
+choroid/MS
+chortle/MZGDRS
+chortler/M
+chorus/GMDS
+chose
+chosen
+chow/SGMD
+chowder/MS
+chrism/M
+christen/ASGD
+christening/MS
+christian/U
+christology
+chromatic
+chromatically
+chromatin/M
+chromatography
+chrome/MGDS
+chromium/M
+chromosomal
+chromosome/MS
+chronic
+chronically
+chronicle/DRSMZG
+chronicler/M
+chronograph/M
+chronographs
+chronological/Y
+chronologist/MS
+chronology/SM
+chronometer/SM
+chrysalis/MS
+chrysanthemum/MS
+chub/SM
+chubbiness/M
+chubby/TPR
+chuck/GMDS
+chuckhole/SM
+chuckle/MGDS
+chuffed
+chug/SM
+chugged
+chugging
+chukka/MS
+chum/SM
+chummed
+chummily
+chumminess/M
+chumming
+chummy/PTR
+chump/MS
+chunder/GDS
+chunk/GMDS
+chunkiness/M
+chunky/PTR
+chunter/DGS
+church/MS
+churchgoer/SM
+churchgoing/M
+churchman/M
+churchmen
+churchwarden/MS
+churchwoman
+churchwomen
+churchyard/SM
+churl/MS
+churlish/PY
+churlishness/M
+churn/ZGMDRS
+churner/M
+chute/MS
+chutney/MS
+chutzpah/M
+chyme/M
+chyron/MS
+ciabatta/SM
+ciao/S
+cicada/MS
+cicatrices
+cicatrix/M
+cicerone/SM
+ciceroni
+cider's
+cider/S
+cigar/MS
+cigarette/MS
+cigarillo/MS
+cilantro/M
+cilia
+cilium/M
+cinch/GMDS
+cinchona/SM
+cincture/SM
+cinder/GMDS
+cine
+cinema/MS
+cinematic
+cinematographer/MS
+cinematographic
+cinematography/M
+cinnabar/M
+cinnamon/M
+cipher's
+cipher/CGDS
+cir
+circa
+circadian
+circle/MGDS
+circlet/MS
+circuit/MDGS
+circuital
+circuitous/YP
+circuitousness/M
+circuitry/M
+circuity/M
+circular/SMY
+circularise/DSG
+circularity/M
+circulate/ADSG
+circulation/SM
+circulatory
+circumcise/XDSGN
+circumcised/U
+circumcision/M
+circumference/MS
+circumferential
+circumflex/MS
+circumlocution/MS
+circumlocutory
+circumnavigate/XGNDS
+circumnavigation/M
+circumpolar
+circumscribe/GDS
+circumscription/MS
+circumspect/Y
+circumspection/M
+circumstance/MGDS
+circumstantial/Y
+circumvent/DSG
+circumvention/M
+circus/MS
+cirque/MS
+cirrhosis/M
+cirrhotic/SM
+cirri
+cirrus/M
+cis
+cisgender
+cistern/MS
+cit
+citadel/MS
+citation/AMS
+cite's
+cite/IAGSD
+citified
+citizen/MS
+citizenry/M
+citizenship/M
+citric
+citron/MS
+citronella/M
+citrus/MS
+city/SM
+citywide
+civet/MS
+civic/S
+civically
+civics/M
+civil/UY
+civilian/MS
+civilisation/SM
+civilise/GDS
+civilised/U
+civility/ISM
+civvies/M
+ck
+cl
+clack/GMDS
+clad/U
+cladding/M
+clade
+claim's
+claim/CKEAGDS
+claimable/A
+claimant/MS
+claimed/U
+claimer/ECSM
+clairvoyance/M
+clairvoyant/MS
+clam/SM
+clambake/MS
+clamber/ZGMDRS
+clamberer/M
+clammed
+clammily
+clamminess/M
+clamming
+clammy/PTR
+clamorous
+clamour/GMDS
+clamp/GMDS
+clampdown/MS
+clan/SM
+clandestine/Y
+clang/ZGMDRS
+clangorous/Y
+clangour/M
+clank/GMDS
+clannish/P
+clannishness/M
+clansman/M
+clansmen
+clanswoman
+clanswomen
+clap/SM
+clapboard/MDGS
+clapped
+clapper/MS
+clapperboard/S
+clapping/M
+claptrap/M
+claque/MS
+claret/MS
+clarification/M
+clarify/XDSNG
+clarinet/SM
+clarinettist/MS
+clarion/MDGS
+clarity/M
+clash/GMDS
+clasp's
+clasp/UGDS
+class/GMDS
+classic/MS
+classical/MY
+classicism/M
+classicist/MS
+classifiable
+classification/CAM
+classifications
+classified's
+classified/U
+classifieds
+classifier/MS
+classify/ACSDGN
+classiness/M
+classism
+classless/P
+classmate/MS
+classroom/MS
+classwork/M
+classy/TRP
+clatter/GMDS
+clausal
+clause/MS
+claustrophobia/M
+claustrophobic
+clavichord/SM
+clavicle/MS
+clavier/MS
+claw's
+claw/CSGD
+clay/M
+clayey
+clayier
+clayiest
+clean/BJPZTGDRYS
+cleaner/M
+cleaning/M
+cleanliness/UM
+cleanly/UTPR
+cleanness/UM
+cleanse/ZGDRS
+cleanser/M
+cleanup/MS
+clear/JPTGMDRYS
+clearance/SM
+clearheaded
+clearing/M
+clearinghouse/SM
+clearness/M
+clearway/S
+cleat/MS
+cleavage/MS
+cleave/ZGDRS
+cleaver/M
+clef/SM
+cleft/MS
+clematis/MS
+clemency/IM
+clement/Y
+clementine/S
+clench/GMDS
+clerestory/SM
+clergy/SM
+clergyman/M
+clergymen
+clergywoman/M
+clergywomen
+cleric/MS
+clerical/Y
+clericalism/M
+clerk/GMDS
+clerkship/M
+clever/PTRY
+cleverness/M
+clevis/MS
+clew/SGMD
+cliche/MDS
+click/BZGMDRS
+clickbait
+clicker/M
+client/MS
+clientele/MS
+cliff/MS
+cliffhanger/SM
+cliffhanging
+clifftop/S
+clii
+climacteric/M
+climactic
+climate/SM
+climatic
+climatically
+climatologist/SM
+climatology/M
+climax/MDSG
+climb/SMDRZGB
+climber/M
+climbing/M
+clime/SM
+clinch/MDRSZG
+clincher/M
+cling/SMRZG
+clinger/M
+clingfilm
+clingy/RT
+clinic/SM
+clinical/Y
+clinician/SM
+clink/SMDRZG
+clinker/M
+cliometric/S
+cliometrician/MS
+cliometrics/M
+clip/SM
+clipboard/MS
+clipped
+clipper/SM
+clipping/SM
+clique/SM
+cliquey
+cliquish/YP
+cliquishness/M
+clit/SM
+clitoral
+clitorides
+clitoris/MS
+clix
+cloaca/M
+cloacae
+cloak's
+cloak/USDG
+cloakroom/MS
+clobber/SMDG
+cloche/SM
+clock/SMDG
+clockwise
+clockwork/SM
+clod/MS
+cloddish
+clodhopper/MS
+clog's
+clog/US
+clogged/U
+clogging/U
+cloisonne/M
+cloister/SMDG
+cloistral
+clomp/SDG
+clonal
+clone/DSMG
+clonidine
+clonk/SMDG
+clop/MS
+clopped
+clopping
+close/DRSMYTGJP
+closefisted
+closemouthed
+closeness/M
+closeout/MS
+closet/SMDG
+closeup/SM
+closing/M
+closure/ESM
+clot/MS
+cloth/M
+clothe/UDSG
+clotheshorse/MS
+clothesline/SM
+clothespin/SM
+clothier/MS
+clothing/M
+cloths
+clotted
+clotting
+cloture/SM
+cloud/SMDG
+cloudburst/SM
+clouded/U
+cloudiness/M
+cloudless
+cloudy/RPT
+clout/SMDG
+clove/RSMZ
+cloven
+clover/M
+cloverleaf/SM
+cloverleaves
+clown/SMDG
+clownish/YP
+clownishness/M
+cloy/DGS
+cloying/Y
+club/MS
+clubbable
+clubbed
+clubber/S
+clubbing
+clubfeet
+clubfoot/MD
+clubhouse/SM
+clubland
+cluck/SMDG
+clue/MGDS
+clueless
+clump/SMDG
+clumpy/TR
+clumsily
+clumsiness/M
+clumsy/TRP
+clung
+clunk/SMDRZG
+clunker/M
+clunky/TR
+cluster/MDSG
+clutch/GMDS
+clutter's
+clutter/UDSG
+clvi
+clvii
+clxi
+clxii
+clxiv
+clxix
+clxvi
+clxvii
+cm
+cnidarian/MS
+co/ESD
+coach/MDSG
+coachload/S
+coachman/M
+coachmen
+coachwork
+coadjutor/MS
+coagulant/MS
+coagulate/GNDS
+coagulation/M
+coagulator/MS
+coal/MDGS
+coalesce/GDS
+coalescence/M
+coalescent
+coalface/MS
+coalfield/S
+coalition/MS
+coalitionist/MS
+coalmine/S
+coarse/RYTP
+coarsen/SDG
+coarseness/M
+coast/SMDRZG
+coastal
+coaster/M
+coastguard/S
+coastline/MS
+coat/MDGJS
+coathanger/MS
+coating/M
+coatroom/S
+coattail/SM
+coauthor/MDGS
+coax/DRSZG
+coaxer/M
+coaxial
+coaxing/Y
+cob/SM
+cobalt/M
+cobber/SMDG
+cobble/DRSMZG
+cobbler/M
+cobblestone/SM
+cobnut/S
+cobra/SM
+cobweb/SM
+cobwebbed
+cobwebby/RT
+coca/M
+cocaine/M
+cocci/S
+coccus/M
+coccyges
+coccyx/M
+cochineal/M
+cochlea/SM
+cochleae
+cochlear
+cock/MDGS
+cockade/SM
+cockamamie
+cockatiel/MS
+cockatoo/SM
+cockatrice/SM
+cockchafer/S
+cockcrow/SM
+cockerel/SM
+cockeyed
+cockfight/MGS
+cockfighting/M
+cockily
+cockiness/M
+cockle/SM
+cockleshell/SM
+cockney/SM
+cockpit/SM
+cockroach/MS
+cockscomb/SM
+cocksucker/MS!
+cocksure
+cocktail/MS
+cocky/RTP
+coco/MS
+cocoa/SM
+coconut/SM
+cocoon/SMDG
+cod/SM
+coda/MS
+codded
+codding
+coddle/DSG
+code's
+code/CZGDRS
+codeine/M
+codependency/M
+codependent/SM
+coder/CM
+codex/M
+codfish/MS
+codger/SM
+codices
+codicil/SM
+codification/M
+codifier/M
+codify/XDRSNZG
+codon/S
+codpiece/MS
+codswallop
+coed/MS
+coeducation/M
+coeducational
+coefficient/MS
+coelenterate/MS
+coenobite/SM
+coenobitic
+coenzyme
+coequal/MYS
+coerce/DRSZGNV
+coercer/M
+coercion/M
+coeval/SMY
+coexist/DSG
+coexistence/M
+coexistent
+coextensive
+coffee/SM
+coffeecake/SM
+coffeehouse/MS
+coffeemaker/SM
+coffeepot/MS
+coffer/SM
+cofferdam/MS
+coffin/SMDG
+cog/SM
+cogency/M
+cogent/Y
+cogitate/DSXGNV
+cogitation/M
+cogitator/MS
+cognac/SM
+cognate/MS
+cognisable
+cognisance/AM
+cognisant
+cognition/AM
+cognitional
+cognitive/Y
+cognomen/SM
+cognoscente/M
+cognoscenti
+cogwheel/SM
+cohabit/SGD
+cohabitant/MS
+cohabitation/M
+coheir/SM
+cohere/DSG
+coherence/IM
+coherency/M
+coherent/IY
+cohesion/M
+cohesive/YP
+cohesiveness/M
+coho/MS
+cohort/SM
+coif/MS
+coiffed
+coiffing
+coiffure/DSMG
+coil's/A
+coil/UADGS
+coin/MDRZGS
+coinage/SM
+coincide/DSG
+coincidence/MS
+coincident
+coincidental/Y
+coiner/M
+coinsurance/M
+coir
+coital
+coitus/M
+coke/MGDS
+col/S
+cola/MS
+colander/SM
+cold/MRYTPS
+coldblooded
+coldness/M
+coleslaw/M
+coleus/MS
+coley/S
+colic/M
+colicky
+coliseum/MS
+colitis/M
+coll
+collaborate/DSXGNV
+collaboration/M
+collaborationist
+collaborative/Y
+collaborator/MS
+collage/SM
+collagen
+collapse/MGDS
+collapsible
+collar/SMDG
+collarbone/SM
+collard/SM
+collarless
+collate/DSXGN
+collateral/MY
+collateralise
+collation/M
+collator/MS
+colleague/MS
+collect's
+collect/ASGVD
+collectable/MS
+collected/U
+collectedly
+collection/AMS
+collective/MYS
+collectivisation/M
+collectivise/DSG
+collectivism/M
+collectivist/SM
+collector/MS
+colleen/SM
+college/SM
+collegiality/M
+collegian/MS
+collegiate
+collide/DRSZG
+collie/RSMZ
+collier/M
+colliery/SM
+collision/SM
+collocate/MGNDSX
+collocation/M
+colloid/SM
+colloidal
+colloq
+colloquial/Y
+colloquialism/SM
+colloquies
+colloquium/MS
+colloquy/M
+collude/DSG
+collusion/M
+collusive
+cologne/SM
+colon/SM
+colonel/SM
+colonelcy/M
+colones
+colonial/SMY
+colonialism/M
+colonialist/MS
+colonisation/ACM
+colonise/CAGSD
+coloniser/MS
+colonist/SM
+colonnade/MDS
+colonoscopy/SM
+colony/SM
+colophon/SM
+coloration/EM
+coloratura/MS
+colossal/Y
+colossi
+colossus/M
+colostomy/SM
+colostrum/M
+colour's
+colour/AEGDS
+colourant/SM
+colouration/EM
+colourblind/P
+colourblindness/M
+coloured's
+coloured/U
+coloureds
+colourfast/P
+colourfastness/M
+colourful/YP
+colourfulness/M
+colouring's
+colourisation/M
+colourise/DSG
+colourist/S
+colourless/PY
+colourlessness/M
+colourway/S
+colt/MS
+coltish
+columbine/SM
+column/SMD
+columnar
+columnist/SM
+com/JL
+coma/MS
+comaker/SM
+comatose
+comb/MDRZGJS
+combat/SMDGV
+combatant/SM
+combativeness/M
+combed/U
+comber/M
+combination/SM
+combine's
+combine/ADSG
+combined/U
+combiner/MS
+combings/M
+combo/SM
+combust/SGVD
+combustibility/M
+combustible/MS
+combustion/M
+come/IMZGRS
+comeback/MS
+comedian/MS
+comedic
+comedienne/MS
+comedown/MS
+comedy/SM
+comeliness/M
+comely/RPT
+comer's
+comestible/SM
+comet/SM
+comeuppance/SM
+comfit's
+comfit/ES
+comfort/ESMDG
+comfortable/P
+comfortableness/M
+comfortably/U
+comforter/MS
+comforting/Y
+comfortless
+comfy/RT
+comic/SM
+comical/Y
+comicality/M
+coming/M
+comity/M
+comm
+comma/SM
+command/SMDRLZG
+commandant/MS
+commandeer/GDS
+commander/M
+commandment/MS
+commando/SM
+commemorate/XGNVDS
+commemoration/M
+commemorator/MS
+commence/ADSLG
+commencement/AM
+commencements
+commend/ASDBG
+commendably
+commendation/AMS
+commendatory
+commensurable
+commensurate/IY
+comment/GSMD
+commentary/SM
+commentate/DSG
+commentator/SM
+commerce/M
+commercial/SMY
+commercialisation/M
+commercialise/GDS
+commercialism/M
+commie/SM
+commingle/DSG
+commiserate/GNVDSX
+commiseration/M
+commissar/SM
+commissariat/SM
+commissary/SM
+commission's
+commission/ACSGD
+commissionaire/S
+commissioner/SM
+commit/AS
+commitment/MS
+committal/SM
+committed/AU
+committee/SM
+committeeman/M
+committeemen
+committeewoman/M
+committeewomen
+committer/S
+committing/A
+commode's
+commode/EIS
+commodification
+commodious/Y
+commodity/SM
+commodore/SM
+common's
+common/UPRYT
+commonality/S
+commonalty/M
+commoner/MS
+commonness/UM
+commonplace/MS
+commons
+commonsense
+commonweal/MH
+commonwealth/M
+commonwealths
+commotion/SM
+communal/Y
+commune/XDSMGN
+communicability/M
+communicable/I
+communicably
+communicant/MS
+communicate/GNVDSX
+communication/M
+communicative/U
+communicator/SM
+communion/M
+communique/SM
+communism/M
+communist/SM
+communistic
+community/SM
+commutation/MS
+commutative
+commutativity
+commutator/SM
+commute/BDRSMZG
+commuter/M
+comorbidity
+comp/MDYGS
+compact/TGSMDRYP
+compaction
+compactness/M
+compactor/SM
+companion/SBM
+companionably
+companionship/M
+companionway/MS
+company/SM
+comparability/M
+comparable/I
+comparably/I
+comparative/MYS
+compare/BDSG
+comparison/MS
+compartment/SM
+compartmental
+compartmentalisation/M
+compartmentalise/DSG
+compass/GMDS
+compassion/M
+compassionate/Y
+compatibility/IM
+compatible/IMS
+compatibly/I
+compatriot/MS
+compeer/SM
+compel/S
+compelled
+compelling/Y
+compendious
+compendium/SM
+compensate/DSXGN
+compensated/U
+compensation/M
+compensatory
+compere/DSG
+compete/DSG
+competence/IM
+competences
+competencies
+competency/IM
+competent/IY
+competition/SM
+competitive/PY
+competitiveness/M
+competitor/SM
+compilation/SM
+compile/DRSZG
+compiler/M
+complacence/M
+complacency/M
+complacent/Y
+complain/DRZGS
+complainant/MS
+complainer/M
+complaint/SM
+complaisance/M
+complaisant/Y
+complected
+complement/SGMD
+complementary
+complete/PYTGNXDRS
+completed/U
+completeness/IM
+completion/M
+complex/MSY
+complexion/MDS
+complexional
+complexity/SM
+compliance/M
+compliant/Y
+complicate/GDS
+complicated/Y
+complication/M
+complicit
+complicity/M
+compliment/MDGS
+complimentary/U
+comply/NDSXG
+compo/S
+component/SM
+comport/LSGD
+comportment/M
+compose/AECGSD
+composedly
+composer/MS
+composite/MYGNXDS
+composition/CM
+compositional
+compositor/SM
+compost/SGMD
+composure/EM
+compote/SM
+compound/GMDBS
+compounded/U
+comprehend/SDG
+comprehensibility/IM
+comprehensible/I
+comprehensibly/I
+comprehension/IM
+comprehensions
+comprehensive/PMYS
+comprehensiveness/M
+compress's
+compress/CGVDS
+compressed/U
+compressible
+compression/CM
+compressor/SM
+comprise/GDS
+compromise/MGDS
+comptroller/MS
+compulsion/MS
+compulsive/YP
+compulsiveness/M
+compulsorily
+compulsory/SM
+compunction/SM
+computation/SM
+computational/Y
+compute/ADSG
+computer/MS
+computerate
+computerisation/M
+computerise/GDS
+computing/M
+comrade/SMY
+comradeship/M
+con/GSM
+concatenate/XDSGN
+concatenation/M
+concave/YP
+concaveness/M
+conceal/SDRZGBL
+concealed/U
+concealer/M
+concealment/M
+conceit/SMD
+conceited/PY
+conceitedness/M
+conceivable/I
+conceivably/I
+conceive/DSGB
+concentrate/DSMGNX
+concentration/M
+concentric
+concentrically
+concept/SM
+conception/SM
+conceptional
+conceptual/Y
+conceptualisation/SM
+conceptualise/DSG
+concern/UMD
+concerned/UY
+concerning
+concerns
+concert's
+concert/ESDG
+concerted/Y
+concertgoer/S
+concertina/SGMD
+concertise/DSG
+concertmaster/MS
+concerto/SM
+concessionaire/MS
+concessional
+concessionary
+conch/M
+conchie/S
+conchs
+concierge/MS
+conciliate/DSGN
+conciliation/AM
+conciliator/SM
+conciliatory
+concise/RPYTN
+conciseness/M
+concision/M
+conclave/SM
+conclude/DSG
+conclusion/MS
+conclusive/IYP
+conclusiveness/IM
+concoct/SDG
+concoction/MS
+concomitant/MYS
+concord/M
+concordance/SM
+concordant
+concordat/SM
+concourse/SM
+concrete/DSPMYGNX
+concreteness/M
+concretion/M
+concubinage/M
+concubine/MS
+concupiscence/M
+concupiscent
+concur/S
+concurred
+concurrence/SM
+concurrency
+concurring
+concuss/V
+concussion/SM
+condemn/SDRZG
+condemnation/MS
+condemnatory
+condemner/M
+condensate/MNXS
+condensation/M
+condense/DRSZG
+condenser/M
+condescending/Y
+condescension/M
+condign
+condiment/MS
+condition's
+condition/AGSD
+conditional/SMY
+conditionality
+conditioned/U
+conditioner/SM
+conditioning/M
+condo/SM
+condolence/SM
+condom/SM
+condominium/MS
+condone/DSG
+condor/SM
+conduce/DSGV
+conduct/MDGV
+conductance/M
+conductibility/M
+conductible
+conduction/M
+conductivity/M
+conductor/MS
+conductress/MS
+conduit/SM
+cone/M
+coneys
+confab/SM
+confabbed
+confabbing
+confabulate/XDSGN
+confabulation/M
+confection/SZMR
+confectioner/M
+confectionery/SM
+confederacy/SM
+confederate/M
+confer/S
+conferee/SM
+conference/MGS
+conferrable
+conferral/M
+conferred
+conferrer/MS
+conferring
+confessed/Y
+confession/SM
+confessional/SM
+confessor/MS
+confetti/M
+confidant/MS
+confidante/SM
+confide/DRSZG
+confidence/SM
+confident/Y
+confidential/Y
+confidentiality/M
+confider/M
+confiding/Y
+configuration/S
+configure/B
+confined/U
+confinement/MS
+confirm/ASDG
+confirmation/ASM
+confirmatory
+confirmed/U
+confiscate/DSGNX
+confiscation/M
+confiscator/SM
+confiscatory
+conflagration/MS
+conflate/XDSGN
+conflation/M
+conflict/SGMD
+confluence/MS
+confluent
+conform/ZB
+conformable/U
+conformal
+conformance/M
+conformism/M
+conformist/SM
+conformity/M
+confrere/MS
+confrontation/SM
+confrontational
+confuse/RZ
+confused/Y
+confusing/Y
+confutation/M
+confute/DSG
+conga/SMDG
+congeal/SLDG
+congealment/M
+conger/SM
+congeries/M
+congest/SDGV
+congestion/M
+conglomerate/DSXMGN
+conglomeration/M
+congrats/M
+congratulate/XGNDS
+congratulation/M
+congratulatory
+congregant/MS
+congregate/GNDSX
+congregation/M
+congregational
+congregationalism/M
+congregationalist/MS
+congress/MS
+congressional
+congressman/M
+congressmen
+congresspeople
+congressperson/MS
+congresswoman/M
+congresswomen
+congruence/M
+congruent/Y
+congruity/ISM
+congruous
+conic/SM
+conical/Y
+conifer/SM
+coniferous
+conjectural
+conjecture/MGDS
+conjoint
+conjugal/Y
+conjugate/DSXGN
+conjugation/M
+conjunct/VMS
+conjunctiva/SM
+conjunctive/SM
+conjunctivitis/M
+conjuration/MS
+conjure/DRSZG
+conjurer/M
+conk/MDRZ
+conman
+connect/AEDVGS
+connectable
+connected/U
+connection/EMS
+connective/MS
+connectivity/M
+connector/MS
+conned
+conning
+conniption/MS
+connivance/M
+connive/DRSZG
+conniver/M
+connoisseur/SM
+connotative
+connubial
+conquer/ASDG
+conquerable/U
+conquered/U
+conqueror/MS
+conquest/AM
+conquistador/SM
+cons/DSG
+consanguineous
+consanguinity/M
+conscienceless
+conscientious/PY
+conscientiousness/M
+conscious/UYP
+consciousness/UM
+consciousnesses
+conscription/M
+consecrate/ADSGN
+consecrated/U
+consecration/AM
+consecrations
+consecutive/Y
+consensual
+consensus/MS
+consent/SMDG
+consequence/SM
+consequent/Y
+consequential/IY
+conservancy/SM
+conservation/M
+conservationism/M
+conservationist/SM
+conservatism/M
+conservative/MYS
+conservatoire/S
+conservator/SM
+conservatory/SM
+consider/AGSD
+considerable/I
+considerably
+considerate/IPYN
+considerateness/IM
+consideration/AIM
+considerations
+considered/U
+consign/ASDG
+consignee/MS
+consignment/MS
+consist/SDG
+consistence/MS
+consistency/ISM
+consistent/IY
+consistory/SM
+consolable/I
+consolation/MS
+consolatory
+consolidate/XDSGN
+consolidated/U
+consolidation/M
+consolidator/MS
+consoling/Y
+consomme/M
+consonance/SM
+consonant/SMY
+consortia
+consortium/M
+conspectus/MS
+conspicuous/IPY
+conspicuousness/IM
+conspiracy/SM
+conspirator/MS
+conspiratorial/Y
+conspire/GD
+constable/SM
+constabulary/SM
+constancy/IM
+constant/MYS
+constellation/SM
+consternation/M
+constipate/GNDS
+constipation/M
+constituency/SM
+constituent/SM
+constitute/ADSGNV
+constitution/AM
+constitutional/MYS
+constitutionalism
+constitutionality/UM
+constitutions
+constrained/U
+constraint/SM
+constrict/GVSD
+constriction/SM
+constrictor/SM
+construable
+construct's
+construct/CADVGS
+construction/CAMS
+constructional
+constructionist's
+constructionist/CS
+constructive/YP
+constructiveness/M
+constructor/MS
+construe/GDS
+consul/KSM
+consular/K
+consulate/SM
+consulship/M
+consult/GSD
+consultancy/SM
+consultant/MS
+consultation/MS
+consultative
+consumable/SM
+consume/BDRSZG
+consumed/U
+consumer/M
+consumerism/M
+consumerist/MS
+consummate/YGNXDS
+consummated/U
+consumption/M
+consumptive/SM
+cont
+contact/ASDG
+contactable
+contactless
+contagion/MS
+contagious/PY
+contagiousness/M
+contain/SBLDRZG
+container/M
+containerisation/M
+containerise/DSG
+containment/M
+contaminant/SM
+contaminate/ACDSG
+contaminated/U
+contamination/CM
+contaminator/SM
+contd
+contemn/SDG
+contemplate/DSGNV
+contemplation/M
+contemplative/SMY
+contemporaneity/M
+contemporaneous/Y
+contempt/M
+contemptible
+contemptibly
+contemptuous/YP
+contemptuousness/M
+contender/MS
+content/ESLMDG
+contented/EY
+contentedness/M
+contention/SM
+contentious/YP
+contentiousness/M
+contently
+contentment/EM
+conterminous/Y
+contestable/I
+contestant/MS
+contested/U
+contextualisation
+contextualise/DSG
+contiguity/M
+contiguous/Y
+continence/IM
+continent/SM
+continental/SM
+contingency/SM
+contingent/SMY
+continua
+continual/Y
+continuance/EMS
+continuation/EMS
+continue/EGDS
+continuity/ESM
+continuous/EY
+continuum/M
+contort/GD
+contortion/MS
+contortionist/SM
+contra
+contraband/M
+contrabassoon/S
+contraception/M
+contraceptive/SM
+contract/MDG
+contractible
+contractile
+contractility
+contraction/S
+contractual/Y
+contradict/SDG
+contradiction/SM
+contradictory
+contradistinction/MS
+contraflow/S
+contrail/MS
+contraindicate/GNXDS
+contraindication/M
+contralto/SM
+contraption/SM
+contrapuntal/Y
+contrarian/SM
+contrarianism
+contrariety/M
+contrarily
+contrariness/M
+contrariwise
+contrary/PSM
+contrast/MDGS
+contravene/GDS
+contravention/SM
+contretemps/M
+contribute/XGND
+contribution/M
+contributor/MS
+contributory
+contrition/M
+contrivance/MS
+contrive/ZGDRS
+contriver/M
+control's
+control/CS
+controllable/U
+controlled/UC
+controller/MS
+controlling/C
+controversial/Y
+controversy/SM
+controvert/DSG
+controvertible/I
+contumacious/Y
+contumacy/M
+contumelious
+contumely/SM
+contuse/XDSGN
+contusion/M
+conundrum/SM
+conurbation/MS
+convalesce/DSG
+convalescence/MS
+convalescent/SM
+convection/M
+convectional
+convective
+convector/S
+convene/ADSG
+convener/MS
+convenience/IMS
+convenient/IY
+convent/SM
+conventicle/MS
+convention/SM
+conventional/UY
+conventionalise/GDS
+conventionality/UM
+conventioneer/S
+convergence/MS
+convergent
+conversant
+conversation/MS
+conversational/Y
+conversationalist/SM
+converse/Y
+convert's
+convert/AGSD
+converted/U
+converter/SM
+convertibility/M
+convertible/SM
+convex/Y
+convexity/M
+convey/SBDG
+conveyance/MGS
+conveyor/MS
+convict/GSMD
+conviction/MS
+convince/GDS
+convinced/U
+convincing/UY
+convivial/Y
+conviviality/M
+convoke/DSG
+convoluted
+convolution/MS
+convoy/SMDG
+convulse/GNVXDS
+convulsion/M
+convulsive/Y
+cony/M
+coo/GSMD
+cooee/DSM
+cooeeing
+cook's
+cook/ADGS
+cookbook/MS
+cooked/U
+cooker/SM
+cookery/SM
+cookhouse/S
+cookie/SM
+cooking/M
+cookout/SM
+cookware/SM
+cool/MDRYZTGPS
+coolabah/M
+coolabahs
+coolant/SM
+cooler/M
+coolibah/M
+coolibahs
+coolie/SM
+coolness/M
+coon/MS!
+coonskin/MS
+coop/MDRZGS
+cooper/MDG
+cooperage/M
+cooperate/DSGNV
+cooperation/M
+cooperative/PMYS
+cooperativeness/M
+cooperator/SM
+coordinate/DSMYGN
+coordinated/U
+coordination/M
+coordinator/MS
+coot/MS
+cootie/SM
+cop/GJSMD
+copacetic
+copay/M
+cope/MS
+copier/SM
+copilot/SM
+coping/M
+copious/PY
+copiousness/M
+copped
+copper/SM
+copperhead/SM
+copperplate/M
+coppery
+copping
+copra/M
+copse/SM
+copter/SM
+copula/SM
+copulate/GNVDS
+copulation/M
+copulative/SM
+copy's
+copy/ADSG
+copybook/SM
+copycat/MS
+copycatted
+copycatting
+copyist/MS
+copyleft
+copyright/GSMD
+copywriter/MS
+coquetry/SM
+coquette/DSMG
+coquettish/Y
+cor
+coracle/SM
+coral/SM
+corbel/SM
+cord/EASGDM
+cordage/M
+cordial/SMY
+cordiality/M
+cordillera/MS
+cordite/M
+cordless
+cordon/SMDG
+cordovan/M
+corduroy/MS
+corduroys/M
+core/MZGDRS
+coreligionist/S
+corer/M
+corespondent/MS
+corgi/SM
+coriander/M
+cork's
+cork/UDGS
+corkage
+corker/SM
+corkscrew/SMDG
+corm/MS
+cormorant/SM
+corn/MDRZGS
+cornball/MS
+cornbread/M
+corncob/MS
+corncrake/S
+cornea/SM
+corneal
+corner/GMD
+cornerstone/SM
+cornet/SM
+cornfield/S
+cornflakes/M
+cornflour
+cornflower/SM
+cornice/MS
+cornily
+corniness/M
+cornmeal/M
+cornrow/MDGS
+cornstalk/SM
+cornstarch/M
+cornucopia/MS
+corny/PRT
+corolla/MS
+corollary/SM
+corona/SM
+coronal/MS
+coronary/SM
+coronation/SM
+coronavirus/MS
+coroner/MS
+coronet/MS
+corp
+corpora
+corporal/SM
+corporate/XYN
+corporation/IM
+corporatism
+corporeal/Y
+corporeality/M
+corps/MS
+corpse/M
+corpsman/M
+corpsmen
+corpulence/M
+corpulent
+corpus/M
+corpuscle/MS
+corpuscular
+corr
+corral/SM
+corralled
+corralling
+correct/DRYTGVSBP
+corrected/U
+correction/SM
+correctional
+corrective/SM
+correctness/IM
+corrector
+correlate/XDSMGNV
+correlated/U
+correlation/M
+correlational
+correlative/MS
+correspond/SDG
+correspondence/SM
+correspondent/SM
+corresponding/Y
+corridor/SM
+corrie/S
+corroborate/GNVDSX
+corroborated/U
+corroboration/M
+corroborator/SM
+corroboratory
+corroboree/DSM
+corroboreeing
+corrode/GDS
+corrosion/M
+corrosive/SMY
+corrugate/GNXDS
+corrugation/M
+corrupt/DRYPSTG
+corruptibility/IM
+corruptible/I
+corruption/MS
+corruptness/M
+corsage/MS
+corsair/MS
+corset/SGMD
+cortege/MS
+cortex/M
+cortical
+cortices
+cortisol
+cortisone/M
+corundum/M
+coruscate/GNDS
+coruscation/M
+corvette/SM
+cos/M
+cosh/DSG
+cosign/ZGSDR
+cosignatory/SM
+cosigner/M
+cosily
+cosine/SM
+cosiness/M
+cosmetic/SM
+cosmetically
+cosmetician/MS
+cosmetologist/MS
+cosmetology/M
+cosmic
+cosmically
+cosmogonist/SM
+cosmogony/SM
+cosmological
+cosmologist/SM
+cosmology/SM
+cosmonaut/SM
+cosmopolitan/MS
+cosmopolitanism/M
+cosmos/MS
+cosplay
+cosponsor/GSMD
+cosset/SGD
+cossetted
+cossetting
+cossie/SM
+cost/MDYGSJ
+costar/SM
+costarred
+costarring
+costliness/M
+costly/PTR
+costume/MZGDRS
+costumer/M
+costumiers
+costumire
+cosy/RSMTP
+cot/SM
+cotangent/MS
+cote/MS
+coterie/MS
+coterminous
+cotillion/SM
+cottage/MZGRS
+cottager/M
+cottar/SM
+cotter/SM
+cotton/SGMD
+cottonmouth/M
+cottonmouths
+cottonseed/MS
+cottontail/MS
+cottonwood/SM
+cottony
+cotyledon/MS
+couch/MDSG
+couchette/S
+cougar/SM
+cough/MDG
+coughs
+could
+could've
+couldn't
+coulee/SM
+coulis
+coulomb/MS
+council/MS
+councillor/SM
+councilman/M
+councilmen
+councilperson/SM
+councilwoman/M
+councilwomen
+counsel/JMS
+counselled
+counselling
+counsellor/SM
+count/EASMDG
+countable/U
+countably
+countdown/MS
+counted/U
+countenance's
+countenance/EGDS
+counter/EMS
+counteract/SGVD
+counteraction/MS
+counterargument/S
+counterattack/GMDS
+counterbalance/MGDS
+counterblast/S
+counterclaim/GSMD
+counterclockwise
+counterculture/SM
+countered
+counterespionage/M
+counterexample/S
+counterfactual
+counterfeit/ZGMDRS
+counterfeiter/M
+counterfoil/MS
+countering
+counterinsurgency/SM
+counterintelligence/M
+counterman/M
+countermand/GMDS
+countermeasure/SM
+countermelody/S
+countermen
+countermove/S
+counteroffensive/SM
+counteroffer/SM
+counterpane/SM
+counterpart/SM
+counterpetition
+counterpoint/MDGS
+counterpoise/MGDS
+counterproductive
+counterrevolution/SM
+counterrevolutionary/SM
+countersign/GSMD
+countersignature/MS
+countersink/GSM
+counterspy/SM
+counterstroke/SM
+countersunk
+countertenor/MS
+countervail/GSD
+counterweight/MS
+countess/MS
+countless
+countrified
+country/SM
+countryman/M
+countrymen
+countryside/MS
+countrywide
+countrywoman/M
+countrywomen
+county/SM
+countywide
+coup's
+coup/AS
+coupe/SM
+couple's
+couple/UCGSD
+couplet/MS
+coupling/SM
+coupon/SM
+courage/M
+courageous/YP
+courageousness/M
+courgette/S
+courier/MDSG
+course/EDGMS
+coursebook/S
+courser/MS
+coursework
+court/SMDYG
+courteous/EY
+courteousness/M
+courtesan/SM
+courtesy/ESM
+courthouse/MS
+courtier/SM
+courtliness/M
+courtly/PRT
+courtroom/MS
+courtship/MS
+courtyard/MS
+couscous/M
+cousin/SM
+couture/M
+couturier/MS
+covalent
+covariance
+covariant
+cove/MS
+coven/SM
+covenant/MDSG
+cover's
+cover/AEUGDS
+coverage/M
+coverall/MS
+covering's
+coverings
+coverlet/MS
+covert/SPMY
+covertness/M
+covet/SDG
+covetous/YP
+covetousness/M
+covey/SM
+cow/ZGSMDR
+coward/SMY
+cowardice/M
+cowardliness/M
+cowbell/MS
+cowbird/MS
+cowboy/SM
+cowcatcher/MS
+cower/DG
+cowgirl/MS
+cowhand/MS
+cowherd/MS
+cowhide/MS
+cowl/MGSJ
+cowlick/MS
+cowling/M
+cowman/M
+cowmen
+coworker/MS
+cowpat/S
+cowpoke/MS
+cowpox/M
+cowpuncher/SM
+cowrie/SM
+cowshed/S
+cowslip/SM
+cox/GDS
+coxcomb/MS
+coxswain/MS
+coy/TPRY
+coyness/M
+coyote/SM
+coypu/SM
+cozen/SDG
+cozenage/M
+cozzie/SM
+cpd
+cpl
+cps
+crab/MS
+crabbed
+crabber/SM
+crabbily
+crabbiness/M
+crabbing
+crabby/PRT
+crabgrass/M
+crablike
+crabwise
+crack/SMDRYZGJ
+crackdown/MS
+cracker/M
+crackerjack/MS
+crackhead/MS
+crackle/DSJMG
+crackling/M
+crackpot/MS
+crackup/SM
+cradle/DSMG
+craft/SMDG
+craftily
+craftiness/M
+craftsman/M
+craftsmanship/M
+craftsmen
+craftspeople
+craftswoman/M
+craftswomen
+crafty/RTP
+crag/MS
+cragginess/M
+craggy/RPT
+cram/S
+crammed
+crammer/S
+cramming
+cramp/SMDG
+cramping/M
+crampon/SM
+cranberry/SM
+crane/DSMG
+cranial
+cranium/SM
+crank/SMDG
+crankcase/SM
+crankily
+crankiness/M
+crankshaft/MS
+cranky/PRT
+cranny/DSM
+crap/MS
+crape/SM
+crapped
+crapper/S
+crappie/RSMT
+crapping
+crappy
+craps/M
+crapshooter/MS
+crash/MDSG
+crass/RYTP
+crassness/M
+crate/DRSMZG
+crater/MDG
+cravat/SM
+crave/DSGJ
+craven/SMYP
+cravenness/M
+craving/M
+craw/MS
+crawdad/SM
+crawl/SMDRZG
+crawler/M
+crawlspace/SM
+crawly/TRSM
+cray/S
+crayfish/MS
+crayola/S
+crayon/GSMD
+craze/DSMG
+crazily
+craziness/M
+crazy/PRSMT
+creak/SMDG
+creakily
+creakiness/M
+creaky/RPT
+cream/SMDRZG
+creamer/M
+creamery/SM
+creamily
+creaminess/M
+creamy/RPT
+crease/ICGMSD
+create/KADSGNV
+creation's/K
+creation/ASM
+creationism/SM
+creationist/SM
+creative/SMYP
+creativeness/M
+creativity/M
+creator/MS
+creature/SM
+creche/SM
+cred
+credence/M
+credential/SGMD
+credenza/SM
+credibility/IM
+credible/I
+credibly/I
+credit/EGSBMD
+creditably/E
+creditor/SM
+creditworthy/P
+credo/SM
+credulity/IM
+credulous/IY
+credulousness/M
+creed/SM
+creek/SM
+creel/SM
+creep/SMRZG
+creeper/M
+creepily
+creepiness/M
+creepy/TPR
+cremains/M
+cremate/GNDSX
+cremation/M
+crematoria
+crematorium/MS
+crematory/SM
+creme/SM
+crenellate/DSGNX
+crenellation/M
+creole/SM
+creosote/MGDS
+crepe/SM
+crept
+crepuscular
+crescendo/CSM
+crescent/MS
+cress/M
+crest/SMDG
+crestfallen
+crestless
+cretaceous
+cretin/SM
+cretinism/M
+cretinous
+cretonne/M
+crevasse/SM
+crevice/MS
+crew/MDGS
+crewel/M
+crewelwork/M
+crewman/M
+crewmen
+crib/MS
+cribbage/M
+cribbed
+cribber/MS
+cribbing
+crick/SMDG
+cricket/MRSZG
+cricketer/M
+crier/M
+crikey
+crime/SM
+criminal/MYS
+criminalise/CGDS
+criminality/M
+criminologist/MS
+criminology/M
+crimp/SMDG
+crimson/SMDG
+cringe/DSMG
+crinkle/DSMG
+crinkly/RT
+crinoline/SM
+cripes
+cripple/DRSMZG
+crippler/M
+crippleware
+crippling/Y
+crises
+crisis/M
+crisp/SMDRYTGP
+crispbread/S
+crispiness/M
+crispness/M
+crispy/PRT
+crisscross/GMDS
+criteria
+criterion/M
+critic/SM
+critical/UY
+criticality
+criticise/ZGDRS
+criticiser/M
+criticism/MS
+critique/MGDS
+critter/SM
+croak/SMDG
+croaky/RT
+croc/MS
+crochet/SMDRZG
+crocheter/M
+crocheting/M
+crock/SMD
+crockery/M
+crocodile/SM
+crocus/MS
+croft/SRZG
+croissant/MS
+crone/SM
+crony/SM
+cronyism/M
+crook/SMDG
+crooked/PTRY
+crookedness/M
+crookneck/SM
+croon/SMDRZG
+crooner/M
+crop/MS
+cropland/SM
+cropped
+cropper/MS
+cropping
+croquet/M
+croquette/SM
+cross's
+cross/AUGTSD
+crossbar/SM
+crossbeam/MS
+crossbones/M
+crossbow/SM
+crossbowman/M
+crossbowmen
+crossbred
+crossbreed/SGM
+crosscheck/SMDG
+crosscurrent/MS
+crosscut/SM
+crosscutting
+crosser
+crossfire/MS
+crosshatch/GDS
+crossing/SM
+crossly
+crossness/M
+crossover/MS
+crosspatch/MS
+crosspiece/SM
+crossroad/MS
+crossroads/M
+crosstown
+crosswalk/MS
+crosswind/MS
+crosswise
+crossword/MS
+crotch/MS
+crotchet/SM
+crotchety
+crouch/GMDS
+croup/M
+croupier/M
+croupy/ZTR
+crouton/MS
+crow/MDGS
+crowbar/MS
+crowd/SMDG
+crowded/U
+crowdfund/SDG
+crowfeet
+crowfoot/SM
+crown/SMDG
+crowned/U
+crozier/MS
+crucial/Y
+crucible/SM
+crucifix/MS
+crucifixion/SM
+cruciform/SM
+crucify/DSG
+crud/M
+cruddy/TR
+crude/RMYTP
+crudeness/M
+crudites/M
+crudity/SM
+cruel/YP
+crueller
+cruellest
+cruelness/M
+cruelty/SM
+cruet/SM
+cruft/SD
+crufty
+cruise/DRSMZG
+cruiser/M
+cruller/MS
+crumb/SMDYG
+crumble/MGDS
+crumbliness/M
+crumbly/TPR
+crumby/TR
+crumminess/M
+crummy/PTR
+crumpet/MS
+crumple/MGDS
+crunch/GMDRS
+crunchiness/M
+crunchy/TRP
+crupper/MS
+crusade/MZGDRS
+crusader/M
+cruse/SM
+crush/MDRSZG
+crusher/M
+crushing/Y
+crust/SMDG
+crustacean/SM
+crustal
+crustily
+crustiness/M
+crusty/TRP
+crutch/MS
+crux/MS
+cry/ZGJDRSM
+crybaby/SM
+cryogenic/S
+cryogenics/M
+cryonics
+cryosurgery/M
+crypt/SM
+cryptanalysis
+cryptic
+cryptically
+cryptocurrency/SM
+cryptogram/SM
+cryptographer/SM
+cryptography/M
+crystal/SM
+crystalline
+crystallisation/M
+crystallise/ADSG
+crystallographic
+crystallography
+ct
+ctn
+ctr
+cu
+cub/ZGSMDR
+cubbyhole/MS
+cube/MS
+cuber/M
+cubic
+cubical
+cubicle/MS
+cubism/M
+cubist/SM
+cubit/SM
+cuboid/S
+cuckold/MDSG
+cuckoldry/M
+cuckoo/SM
+cucumber/SM
+cud/SM
+cuddle/DSMG
+cuddly/TR
+cudgel/SM
+cudgelled
+cudgelling/S
+cue/DSMG
+cuff/MDGS
+cuisine/SM
+culinary
+cull/MDGS
+culminate/XDSGN
+culmination/M
+culotte/SM
+culpability/M
+culpable/I
+culpably
+culprit/SM
+cult/MS
+cultism/M
+cultist/MS
+cultivable
+cultivar/SM
+cultivate/BDSGN
+cultivated/U
+cultivation/M
+cultivator/MS
+cultural/Y
+culture/MGDS
+cultured/U
+culvert/MS
+cum/SM
+cumber/SDG
+cumbersome/P
+cumbersomeness/M
+cumbrous
+cumin/M
+cummerbund/MS
+cumming
+cumulative/Y
+cumuli
+cumulonimbi
+cumulonimbus/M
+cumulus/M
+cuneiform/M
+cunnilingus/M
+cunning/MRYT
+cunt/MS!
+cup/SM
+cupboard/SM
+cupcake/MS
+cupful/SM
+cupid/SM
+cupidity/M
+cupola/SMD
+cuppa/S
+cupped
+cupping
+cupric
+cur/SMY
+curability/M
+curacao
+curacy/SM
+curare/M
+curate/DSMGV
+curative/MS
+curator/KMS
+curatorial
+curb/MDGS
+curbing/M
+curbside
+curbstone/SM
+curd/MS
+curdle/DSG
+cure's
+cure/KZGBDRS
+cured/U
+curer/KM
+curettage/M
+curfew/SM
+curia/M
+curiae
+curie/SM
+curio/SM
+curiosity/SM
+curious/YP
+curiousness/M
+curium/M
+curl's
+curl/UDGS
+curler/SM
+curlew/SM
+curlicue/DSMG
+curliness/M
+curling/M
+curly/RPT
+curmudgeon/MYS
+currant/MS
+currency/SM
+current's
+current/FAY
+currents
+curricula
+curricular
+curriculum/M
+curry/DSMG
+currycomb/SGMD
+curse/DSMGV
+cursed/Y
+cursive's
+cursive/EAY
+cursor/SM
+cursorily
+cursoriness/M
+cursory/P
+curt/RYTP
+curtail/GDSL
+curtailment/SM
+curtain/GMDS
+curtness/M
+curtsy/GDSM
+curvaceous/P
+curvaceousness/M
+curvature/SM
+curve/DSMG
+curvy/RT
+cushion/MDSG
+cushy/RT
+cusp/MS
+cuspid/SM
+cuspidor/SM
+cuss's
+cuss/FEGSD
+cussed/PY
+custard/MS
+custodial
+custodian/MS
+custodianship/M
+custody/M
+custom/SZMR
+customarily
+customary/U
+customer/M
+customhouse/SM
+customisation/M
+customise/DSG
+cut/TSMR
+cutaneous
+cutaway/MS
+cutback/MS
+cute/YP
+cuteness/M
+cutesy/TR
+cutey/S
+cuticle/MS
+cutie/SM
+cutlass/MS
+cutler/SM
+cutlery/M
+cutlet/SM
+cutoff/SM
+cutout/SM
+cutter/SM
+cutthroat/SM
+cutting/MYS
+cuttlefish/MS
+cutup/SM
+cutworm/MS
+cw
+cwt
+cyan/M
+cyanide/M
+cyanobacteria
+cyberbully/SM
+cybercafe/S
+cybernetic/S
+cybernetics/M
+cyberpunk/SM
+cybersex
+cyberspace/MS
+cyborg/SM
+cyclamen/MS
+cycle/ADSMG
+cyclic
+cyclical/Y
+cyclist/MS
+cyclometer/MS
+cyclone/MS
+cyclonic
+cyclopedia/MS
+cyclopes
+cyclops/M
+cyclotron/MS
+cygnet/MS
+cylinder/MS
+cylindrical
+cymbal/MS
+cymbalist/MS
+cynic/SM
+cynical/Y
+cynicism/M
+cynosure/MS
+cypress/MS
+cyst/MS
+cystic
+cystitis
+cytokines
+cytologist/SM
+cytology/M
+cytoplasm/M
+cytoplasmic
+cytosine/M
+czarina/SM
+czarism
+czarist/SM
+d'Arezzo/M
+d'Estaing/M
+d/NXGJ
+dB
+dab/SM
+dabbed
+dabber/MS
+dabbing
+dabble/ZGDRS
+dabbler/M
+dace/SM
+dacha/MS
+dachshund/MS
+dactyl/MS
+dactylic/MS
+dad/SM
+dadaism/M
+dadaist/MS
+daddy/SM
+dado/M
+dadoes
+daemon/MS
+daemonic
+daffiness/M
+daffodil/SM
+daffy/PTR
+daft/PTRY
+daftness/M
+dag/S
+dagger/MS
+dago/S
+dagoes
+daguerreotype/DSMG
+dahlia/MS
+dailiness/M
+daily/PSM
+daintily
+daintiness/M
+dainty/RSMTP
+daiquiri/MS
+dairy/GSM
+dairying/M
+dairymaid/MS
+dairyman/M
+dairymen
+dairywoman/M
+dairywomen
+dais/MS
+daisy/SM
+dale/SM
+dalliance/MS
+dallier/M
+dally/ZGDRS
+dalmatian/MS
+dam/SM
+damage/MGDS
+damageable
+damaged/U
+damages/M
+damask/MDGS
+dame/SM
+dammed
+damming
+dammit
+damn/SBGMD
+damnably
+damnation/M
+damned/T
+damp/SPXZTGMDNRY
+dampen/ZGDR
+dampener/M
+damper/M
+dampness/M
+damsel/MS
+damselfly/SM
+damson/MS
+dance/MZGDRS
+dancer/M
+dancing/M
+dandelion/SM
+dander/M
+dandify/GDS
+dandle/GDS
+dandruff/M
+dandy/TRSM
+dang/SZGDR
+danger/M
+dangerous/Y
+dangle/ZGDRS
+dangler/M
+danish/MS
+dank/PTRY
+dankness/M
+danseuse/MS
+dapper/TR
+dapple/MGDS
+dare/DRSMZG
+daredevil/MS
+daredevilry/M
+darer/M
+daresay
+daring/MY
+dark/PXTMNRY
+darken/ZGDR
+darkener/M
+darkie/S
+darkness/M
+darkroom/MS
+darling/MS
+darn/SZGMDR
+darned/TR
+darner/M
+dart/SZGMDR
+dartboard/MS
+darter/M
+dash/ZGMDRS
+dashboard/SM
+dasher/M
+dashiki/MS
+dashing/Y
+dastard/MYS
+dastardliness/M
+data
+database/SM
+dataset/MS
+datatype
+date/DRSMZGV
+datebook/S
+dated/U
+dateless
+dateline/MGDS
+dater/M
+dateset
+dative/MS
+datum/M
+daub/SZGMDR
+dauber/M
+daughter/SMY
+daunt/GDS
+daunting/Y
+dauntless/YP
+dauntlessness/M
+dauphin/MS
+davenport/MS
+davit/MS
+dawdle/ZGDRS
+dawdler/M
+dawn/SGMD
+day/SM
+daybed/MS
+daybreak/M
+daycare/M
+daydream/MDRZGS
+daydreamer/M
+daylight/MS
+daylights/M
+daylong
+daytime/M
+daze/DSMG
+dazed/Y
+dazzle/MZGDRS
+dazzler/M
+dazzling/Y
+db
+dbl
+dc
+dd/SDG
+dded/K
+dding/K
+deacon/MS
+deaconess/MS
+dead/XTMNRY
+deadbeat/MS
+deadbolt/SM
+deaden/GD
+deadhead/SDG
+deadline/SM
+deadliness/M
+deadlock/GSMD
+deadly/TPR
+deadpan/MS
+deadpanned
+deadpanning
+deadset
+deadwood/M
+deaf/PXTNR
+deafen/GD
+deafening/Y
+deafness/M
+deal/SJZGMR
+dealer/M
+dealership/SM
+dealing/M
+dealt
+dean/M
+deanery/SM
+deanship/M
+dear/SPTMRYH
+dearest/S
+dearness/M
+dearth/M
+dearths
+deary/SM
+death/MY
+deathbed/SM
+deathblow/MS
+deathless/Y
+deathlike
+deaths
+deathtrap/MS
+deathwatch/MS
+deaves
+deb/SM
+debacle/MS
+debarkation/M
+debarment/M
+debate/BMZR
+debater/M
+debating/M
+debauch/MDSG
+debauchee/MS
+debauchery/SM
+debenture/MS
+debilitate/DSGN
+debilitation/M
+debility/SM
+debit/D
+debonair/PY
+debonairness/M
+debouch/GDS
+debridement
+debris/M
+debt/SM
+debtor/MS
+debugger/S
+debut/GMD
+debutante/SM
+decade/MS
+decadence/M
+decadency/M
+decadent/MYS
+decaf/MS
+decaffeinate/DSG
+decagon/MS
+decal/MS
+decampment/M
+decapitate/XGNDS
+decapitator/MS
+decathlete/S
+decathlon/SM
+decay/GD
+deceased/M
+decedent/MS
+deceit/MS
+deceitful/YP
+deceitfulness/M
+deceive/UGDS
+deceiver/MS
+deceiving/Y
+decelerate/GNDS
+deceleration/M
+decelerator/SM
+decency/ISM
+decennial/SM
+decent/IY
+deception/MS
+deceptive/YP
+deceptiveness/M
+decibel/MS
+decidable/U
+decide/BZGDRS
+decided/Y
+deciduous
+decilitre/MS
+decimal/SM
+decimalisation
+decimate/DSGN
+decimation/M
+decimetre/MS
+decipherable/UI
+decision/IM
+decisions
+decisive/IPY
+decisiveness/IM
+deck/SGMD
+deckchair/S
+deckhand/SM
+deckle/S
+declamation/MS
+declamatory
+declaration/MS
+declarative
+declaratory
+declare/DRSZGB
+declared/U
+declarer/M
+declension/SM
+declination/M
+decline/DRSMZG
+decliner/M
+declivity/SM
+decoherence
+decolletage/SM
+decollete
+decongestant/MS
+deconstructionism
+decor/MS
+decorate/AGNVDS
+decorating/M
+decoration/AM
+decorations
+decorative/Y
+decorator/MS
+decorous/IY
+decorousness/M
+decorum/M
+decoupage/DSMG
+decoy/GMDS
+decreasing/Y
+decree/MDS
+decreeing
+decrement/GDS
+decrepit
+decrepitude/M
+decriminalisation/M
+decry/GDS
+decryption
+dedicate/AGDS
+dedication/SM
+dedicator/SM
+dedicatory
+deduce/GDS
+deducible
+deduct/GVD
+deductible/SM
+deduction/SM
+deductive/Y
+deed/GD
+deejay/MS
+deem/ASGD
+deep/SPXTMNRY
+deepen/GD
+deepfake/SM
+deepness/M
+deer/M
+deerskin/M
+deerstalker/S
+def/Z
+defacement/M
+defacer/SM
+defalcate/DSXGN
+defalcation/M
+defamation/M
+defamatory
+defame/ZGDRS
+defamer/M
+defaulter/SM
+defeat/MDRZGS
+defeated/U
+defeater/M
+defeatism/M
+defeatist/MS
+defecate/GNDS
+defecation/M
+defect/MDGVS
+defection/MS
+defective/MPYS
+defectiveness/M
+defector/MS
+defenceless/YP
+defencelessness/M
+defendant/SM
+defended/U
+defenestration/S
+defensible/I
+defensibly/I
+defensive/MYP
+defensiveness/M
+deference/M
+deferential/Y
+deferral/MS
+deferred
+deferring
+deffer
+deffest
+defiant/Y
+defibrillation
+defibrillator/S
+deficiency/SM
+deficient
+deficit/SM
+defilement/M
+definable/IU
+define/AGDS
+defined/U
+definer/MS
+definite/IYVP
+definiteness/IM
+definition/AM
+definitions
+definitive/Y
+deflate/GNDS
+deflation/M
+deflationary
+deflect/DGVS
+deflection/MS
+deflector/SM
+defogger/SM
+defoliant/SM
+defoliate/DSGN
+defoliation/M
+defoliator/MS
+deformity/SM
+defraud/DRZGS
+defrauder/M
+defrayal/M
+defrock/DG
+defroster/MS
+deft/PTRY
+deftness/M
+defunct
+defy/GDS
+deg
+degeneracy/M
+degenerate/MV
+degrade/B
+degree/MS
+dehydrator/SM
+dehydrogenase
+deicer/MS
+deification/M
+deify/NGDS
+deign/GDS
+deist/MS
+deistic
+deity/SM
+deject/GDS
+dejected/Y
+dejection/M
+delay/ZDR
+delectable
+delectably
+delectation/M
+delegate/GD
+delete/XGNDS
+deleterious
+deletion/M
+delft/M
+delftware/M
+deli/SM
+deliberate/XYVP
+deliberateness/M
+delicacy/ISM
+delicate/IY
+delicateness/M
+delicatessen/SM
+delicious/PY
+deliciousness/M
+delighted/Y
+delightful/Y
+deliminator
+delineate/GNXDS
+delineation/M
+delinquency/SM
+delinquent/SMY
+deliquesce/DSG
+deliquescent
+delirious/YP
+deliriousness/M
+delirium/SM
+deliver/ADGS
+deliverable/S
+deliverance/M
+delivered/U
+deliverer/SM
+dell/SM
+delphinium/MS
+delta/MS
+delude/GDS
+deluge/MGDS
+delusion/MS
+delusional
+delusive/Y
+deluxe
+delve/ZGDRS
+delver/M
+demagogic
+demagogically
+demagogue/SM
+demagoguery/M
+demagogy/M
+demand/GMDS
+demanding/U
+demarcate/DSGNX
+demarcation/M
+demean/GDS
+demeanour/M
+demented/Y
+dementia/M
+demesne/MS
+demigod/MS
+demigoddess/MS
+demijohn/SM
+demimondaine/SM
+demimonde/M
+demise/MGDS
+demitasse/MS
+demo/GMD
+democracy/SM
+democrat/MS
+democratic/U
+democratically
+democratisation/M
+democratise/GDS
+demode
+demographer/SM
+demographic/SM
+demographically
+demographics/M
+demography/M
+demolish/DSG
+demolition/MS
+demon/MS
+demonetisation/M
+demoniac
+demoniacal/Y
+demonic
+demonically
+demonise/GDS
+demonology/SM
+demonstrability
+demonstrable/I
+demonstrably
+demonstrate/XGNVDS
+demonstration/M
+demonstrative/MYSP
+demonstrativeness/M
+demonstrator/MS
+demote/GD
+demotic
+demount
+demulcent/SM
+demur/TMRS
+demure/PY
+demureness/M
+demurral/SM
+demurred
+demurrer/SM
+demurring
+den/M
+denationalisation
+denaturation
+denature/DG
+dendrite/SM
+dengue/M
+deniability
+deniable/U
+denial/MS
+denier/M
+denigrate/DSGN
+denigration/M
+denim/MS
+denitrification
+denizen/MS
+denominational
+denotative
+denouement/MS
+denounce/LDSG
+denouncement/SM
+dense/PYTR
+denseness/M
+density/SM
+dent/ISGMD
+dental/Y
+dentifrice/SM
+dentine/M
+dentist/MS
+dentistry/M
+dentition/M
+denture/IMS
+denuclearise/GDS
+denudation/M
+denude/GDS
+denunciation/SM
+deny/ZGDRS
+deodorant/SM
+deodorisation/M
+deodorise/DRSZG
+deodoriser/M
+departed/M
+department/MS
+departmental/Y
+departmentalisation/M
+departmentalise/GDS
+departure/SM
+dependability/M
+dependable/U
+dependably
+dependence/IM
+dependency/SM
+dependent/IY
+depict/GDS
+depiction/MS
+depilatory/SM
+deplete/GNDS
+depletion/M
+deplorably
+deplore/BGDS
+deploy/ALGDS
+deployment/AM
+deployments
+deponent/MS
+deportation/MS
+deportee/MS
+deportment/M
+deposit/AGMDS
+depositor/MS
+depository/SM
+deprave/GDS
+depravity/SM
+deprecate/GNDS
+deprecating/Y
+deprecation/M
+deprecatory
+depreciate/DSGN
+depreciation/M
+depredation/SM
+depressant/SM
+depressing/Y
+depression/SM
+depressive/SM
+depressor/MS
+depressurisation
+deprive/GDS
+deprogramming
+depth/M
+depths
+deputation/MS
+depute/DSG
+deputise/DSG
+deputy/SM
+derailleur/SM
+derailment/SM
+derangement/M
+derby/SM
+derelict/MS
+dereliction/M
+deride/GDS
+derision/M
+derisive/PY
+derisiveness/M
+derisory
+derivation/MS
+derivative/MS
+derive/B
+dermal
+dermatitis/M
+dermatological
+dermatologist/SM
+dermatology/M
+dermis/M
+derogate/DSGN
+derogation/M
+derogatorily
+derogatory
+derrick/SM
+derriere/SM
+derringer/SM
+derv
+dervish/MS
+desalinate/GNDS
+desalination/M
+desalinisation/M
+desalinise/GDS
+descant/M
+descend/FGDS
+descendant/MS
+descendent
+descender
+describable/I
+describe/BZGDR
+describer/M
+description/SM
+descriptive/PY
+descriptiveness/M
+descriptor/S
+descry/GDS
+desecrate/DSGN
+desecration/M
+deselection
+desert/SDRZGM
+deserter/M
+desertification
+desertion/SM
+deserved/UY
+deserving/U
+desiccant/SM
+desiccate/DSGN
+desiccation/M
+desiccator/SM
+desiderata
+desideratum/M
+design/ASDG
+designate/DSGNX
+designation/M
+desirability/UM
+desirableness/M
+desirably/U
+desire/B
+desired/U
+desirous
+desist/SDG
+desk/SM
+deskill/G
+desktop/SM
+desolate/PDSYGN
+desolateness/M
+desolation/M
+despair/SMDG
+despairing/Y
+desperado/M
+desperadoes
+desperate/YNP
+desperateness/M
+desperation/M
+despicable
+despicably
+despise/DSG
+despite
+despoilment/M
+despondence/M
+despondency/M
+despondent/Y
+despotic
+despotically
+despotism/M
+dessert/SM
+dessertspoon/S
+dessertspoonful/S
+destabilisation
+destabilization's
+destination/SM
+destine/DSG
+destiny/SM
+destitute/N
+destitution/M
+destroy/SZGDR
+destroyer/M
+destruct/GVMDS
+destructibility/IM
+destructible/I
+destruction/M
+destructive/PY
+destructiveness/M
+desuetude/M
+desultorily
+desultory
+detach/BLGDS
+detachment/MS
+detain/LGDS
+detainee/MS
+detainment/M
+detect/SDGVB
+detectable/U
+detected/U
+detection/M
+detective/SM
+detector/SM
+detente/SMNX
+detention/M
+deter/SL
+detergent/SM
+deteriorate/DSGN
+deterioration/M
+determent/M
+determinable/I
+determinant/SM
+determinate
+determine/AGDS
+determined/U
+determinedly
+determiner/SM
+determinism/M
+deterministic
+deterministically
+deterred/U
+deterrence/M
+deterrent/MS
+deterring
+detestably
+detestation/M
+dethrone/DSLG
+dethronement/M
+detonate/GNDSX
+detonation/M
+detonator/SM
+detox/MDSG
+detoxification/M
+detoxify/DSGN
+detract/GD
+detriment/SM
+detrimental/Y
+detritus/M
+deuce/SM
+deuterium/M
+devastate/GNDS
+devastating/Y
+devastation/M
+devastator/MS
+develop/ASGDL
+developed/U
+developer/SM
+development/ASM
+developmental/Y
+deviance/M
+deviancy/M
+deviant/SM
+deviate/DSMGNX
+deviating/U
+deviation/M
+devil/SML
+devilish/YP
+devilishness/M
+devilled
+devilling
+devilment/M
+devilry/SM
+deviltry/SM
+devious/YP
+deviousness/M
+devo
+devoid
+devolution/M
+devolve/DSG
+devoted/Y
+devotee/SM
+devotion/MS
+devotional/SM
+devour/SDG
+devout/PRYT
+devoutness/M
+dew/M
+dewberry/SM
+dewclaw/SM
+dewdrop/SM
+dewiness/M
+dewlap/SM
+dewy/RTP
+dexterity/M
+dexterous/YP
+dexterousness/M
+dextrose/M
+dharma
+dhoti/SM
+dhow/MS
+diabetes/M
+diabetic/SM
+diabolic
+diabolical/Y
+diacritic/MS
+diacritical
+diadem/SM
+diaereses
+diaeresis/M
+diagnose/DSG
+diagnosis/M
+diagnostic/S
+diagnostically
+diagnostician/SM
+diagnostics/M
+diagonal/SMY
+diagram/SM
+diagrammatic
+diagrammatically
+diagrammed
+diagramming
+dial/AMS
+dialect/SM
+dialectal
+dialectic/SM
+dialectical
+dialectics/M
+dialled/A
+dialling/S
+dialogue/SM
+dialyses
+dialysis/M
+diam
+diamagnetic
+diamagnetism
+diamante
+diameter/SM
+diametric
+diametrical/Y
+diamond/SM
+diamondback/MS
+diapason/SM
+diaper/SMDG
+diaphanous
+diaphragm/SM
+diaphragmatic
+diarist/SM
+diarrhoea/M
+diary/SM
+diaspora/SM
+diastase/M
+diastole/M
+diastolic
+diathermy/M
+diatom/SM
+diatomic
+diatonic
+diatribe/SM
+diazepam
+dibble/DSMG
+dibs/M
+dice/GDS
+dices/I
+dicey
+dichotomous
+dichotomy/SM
+dicier
+diciest
+dick/MRXZS
+dicker/DG
+dickey/SM
+dickhead/S
+dickybird/S
+dicotyledon/MS
+dicotyledonous
+dict
+dicta
+dictate/DSMGNX
+dictation/M
+dictator/SM
+dictatorial/Y
+dictatorship/SM
+diction/M
+dictionary/SM
+dictum/M
+did/AU
+didactic
+didactically
+diddle/DRSZG
+diddler/M
+diddly
+diddlysquat
+diddums
+didgeridoo/S
+didn't
+dido/M
+didoes
+didst
+die/DSM
+dielectric/MS
+diereses
+dieresis/M
+diesel/SMDG
+diet/MDRZGS
+dietary/SM
+dieter/M
+dietetic/S
+dietetics/M
+dietitian/MS
+diff/DRZGS
+differ/DG
+difference/IM
+differences
+different/IY
+differentiable
+differential/SM
+differentiate/DSGN
+differentiated/U
+differentiation/M
+difficult/Y
+difficulty/SM
+diffidence/M
+diffident/Y
+diffract/GSD
+diffraction/M
+diffuse/DSYGNVP
+diffuseness/M
+diffusion/M
+diffusivity
+dig/SM
+digerati/M
+digest/SMDGV
+digested/U
+digestibility/M
+digestible/I
+digestion/IM
+digestions
+digestive/S
+digger/SM
+digging/S
+diggings/M
+digicam/S
+digit/SM
+digital/Y
+digitalis/M
+digitisation
+digitise/GDS
+dignified/U
+dignify/DSG
+dignitary/SM
+dignity/ISM
+digraph/M
+digraphs
+digress/GVDS
+digression/MS
+dike/GDS
+diktat/S
+dilapidated
+dilapidation/M
+dilatation/M
+dilate/DSGN
+dilation/M
+dilator/SM
+dilatory
+dildo/S
+dilemma/MS
+dilettante/SM
+dilettantish
+dilettantism/M
+diligence/M
+diligent/Y
+dill/MS
+dilly/SM
+dillybag/SM
+dillydally/DSG
+diluent
+dilute/DSGNX
+diluted/U
+dilution/M
+dim/PSRY
+dime/MS
+dimension/SM
+dimensional
+dimensionless
+diminish/GDS
+diminished/U
+diminuendo/SM
+diminution/SM
+diminutive/SM
+dimity/M
+dimmed/U
+dimmer/SM
+dimmest
+dimming
+dimness/M
+dimple/DSMG
+dimply
+dimwit/SM
+dimwitted
+din/ZGSMDR
+dinar/SM
+dine/S
+diner/M
+dinette/MS
+ding/MDG
+dingbat/MS
+dinghy/SM
+dingily
+dinginess/M
+dingle/SM
+dingo/M
+dingoes
+dingus/MS
+dingy/RPT
+dink/R
+dinkum
+dinky/RSMT
+dinned
+dinner/SMDG
+dinnertime/M
+dinnerware/M
+dinning
+dinosaur/SM
+dint/M
+diocesan/MS
+diocese/MS
+diode/SM
+diorama/SM
+dioxide/SM
+dioxin/SM
+dip/SM
+diphtheria/M
+diphthong/SM
+diploid/SM
+diploma/SM
+diplomacy/M
+diplomat/MS
+diplomata
+diplomatic/U
+diplomatically
+diplomatist/MS
+diplopia
+dipole/SM
+dipped
+dipper/SM
+dipping
+dippy/RT
+dipso/S
+dipsomania/M
+dipsomaniac/MS
+dipstick/SM
+dipterous
+diptych/M
+diptychs
+dire/YTR
+direct/ASDGVT
+directer
+direction/IM
+directional
+directionless
+directions
+directive/SM
+directly
+directness/IM
+director/MS
+directorate/SM
+directorial
+directorship/SM
+directory/SM
+direful
+dirge/SM
+dirigible/MS
+dirk/MS
+dirndl/SM
+dirt/M
+dirtball/S
+dirtily
+dirtiness/M
+dirty/DRSTGP
+dis/M
+disable/DSGL
+disablement/M
+disambiguate/N
+disappointing/Y
+disarming/Y
+disassembly
+disastrous/Y
+disbandment/M
+disbarment/M
+disbelieving/Y
+disbursal/M
+disburse/DSGL
+disbursement/MS
+disc/M
+discern/LSDG
+discernible/I
+discernibly
+discerning/Y
+discernment/M
+discharged/U
+disciple/SM
+discipleship/M
+disciplinarian/SM
+disciplinary
+discipline/DSMG
+disciplined/U
+disclose/DSG
+disclosed/U
+disco/MG
+discography/SM
+discoloration/S
+discolouration/S
+discombobulate/DSGN
+discombobulation/M
+discomfit/DG
+discomfiture/M
+discommode/DG
+disconcerting/Y
+disconnected/PY
+disconnectedness/M
+disconsolate/Y
+discordance/M
+discordant/Y
+discotheque/SM
+discourage/LGDS
+discouragement/SM
+discouraging/Y
+discover/ASDG
+discovered/U
+discoverer/MS
+discovery/ASM
+discreet/PRYT
+discreetness/M
+discrepancy/SM
+discrepant
+discrete/PYN
+discreteness/M
+discretion/IM
+discretionary
+discriminant
+discriminate/GNDS
+discriminating/U
+discrimination/M
+discriminator/MS
+discriminatory
+discursiveness/M
+discus/MS
+discussant/SM
+discussion/SM
+disdain/SMDG
+disdainful/Y
+disembowel/SL
+disembowelled
+disembowelling
+disembowelment/M
+disfigurement/SM
+disfranchisement/M
+disgorgement/M
+disgruntle/LGDS
+disgruntlement/M
+disguise/GD
+disguised/U
+disgusted/Y
+disgusting/Y
+dish/MDSG
+dishabille/M
+disharmonious
+dishcloth/M
+dishcloths
+disheartening/Y
+dishevel/LS
+dishevelled
+dishevelling
+dishevelment/M
+dishpan/SM
+dishrag/SM
+dishtowel/MS
+dishware/M
+dishwasher/MS
+dishwater/M
+dishy
+disillusion/GLD
+disillusionment/M
+disinfectant/MS
+disinfection/M
+disinterested/PY
+disinterestedness/M
+disjointed/YP
+disjointedness/M
+disjunctive
+disjuncture
+disk/MS
+diskette/MS
+dislodge/GDS
+dismal/Y
+dismantlement/M
+dismay/SMDG
+dismayed/U
+dismember/LGD
+dismemberment/M
+dismissive/Y
+disorder/Y
+disorganisation/M
+disparage/DSGL
+disparagement/M
+disparaging/Y
+disparate/Y
+dispatcher/MS
+dispel/S
+dispelled
+dispelling
+dispensary/SM
+dispensation/MS
+dispense/BZGDRS
+dispenser/M
+dispersal/M
+disperse/GNDS
+dispersion/M
+dispirit/GDS
+displeasure/M
+disposable/SM
+disposal/SM
+disposed/I
+disposition/ISM
+dispossession/M
+disproof/SM
+disproportional
+disprove/B
+disputable/I
+disputably/I
+disputant/MS
+disputation/SM
+disputatious/Y
+dispute/DRSMZGB
+disputed/U
+disputer/M
+disquiet/GSMD
+disquisition/MS
+disregardful
+disrepair/M
+disrepute/MB
+disrupt/GVSD
+disruption/SM
+disruptive/Y
+dissect/SDG
+dissed
+dissemblance/M
+dissemble/ZGDRS
+dissembler/M
+disseminate/GNDS
+dissemination/M
+dissension/SM
+dissent/SMDRZG
+dissenter/M
+dissertation/SM
+disses
+dissidence/M
+dissident/MS
+dissimilar
+dissimilitude/S
+dissing
+dissipate/GNDS
+dissipation/M
+dissociate/GNVDS
+dissociation/M
+dissoluble/I
+dissolute/YNP
+dissoluteness/M
+dissolve/AGDS
+dissolved/U
+dissonance/SM
+dissonant
+dissuade/GDS
+dissuasive
+dist
+distaff/SM
+distal/Y
+distance/DSMG
+distant/Y
+distaste/SM
+distemper/M
+distention/SM
+distil/S
+distillate/SMNX
+distillation/M
+distillery/SM
+distinct/IYTVP
+distincter
+distinction/SM
+distinctive/YP
+distinctiveness/M
+distinctness/IM
+distinguish/GDSB
+distinguishable/I
+distinguished/U
+distort/GDR
+distortion/MS
+distract/DG
+distracted/Y
+distraction/S
+distrait
+distraught
+distress/DG
+distressful
+distressing/Y
+distribute/AGNVDS
+distributed/U
+distribution/AM
+distributional
+distributions
+distributive/Y
+distributor's
+distributor/AS
+distributorship/S
+district's
+district/AS
+disturb/ZGSDR
+disturbance/SM
+disturbed/U
+disturber/M
+disturbing/Y
+disunion/M
+disyllabic
+ditch/MDSG
+dither/SMDRZG
+ditherer/M
+ditransitive
+ditsy
+ditto/SMDG
+ditty/SM
+ditz/MS
+diuretic/MS
+diurnal/Y
+div
+diva/MS
+divalent
+divan/SM
+dive/MZTGDRS
+diver/M
+diverge/DSG
+divergence/MS
+divergent
+diverse/XYNP
+diverseness/M
+diversification/M
+diversify/GNDS
+diversion/M
+diversionary
+diversity/SM
+divert/SDG
+diverticulitis/M
+divest/SLDG
+divestiture/MS
+divestment/M
+divide/DRSMZGB
+divided/U
+dividend/MS
+divider/M
+divination/M
+divine/DRSMYZTG
+diviner/M
+diving/M
+divinity/SM
+divisibility/IM
+divisible/I
+division/MS
+divisional
+divisive/PY
+divisiveness/M
+divisor/SM
+divorce/DSLMG
+divorcee/MS
+divorcement/MS
+divot/SM
+divulge/GDS
+divvy/DSMG
+dixieland/M
+dizzily
+dizziness/M
+dizzy/DRSPTG
+djellaba/MS
+do/SJMRHZG
+doable
+dob/S
+dobbed
+dobber/SM
+dobbin/SM
+dobbing
+doberman/MS
+dobro
+doc/SM
+docent/SM
+docile/Y
+docility/M
+dock/MDRZGS
+docket/SMDG
+dockland/S
+dockside
+dockworker/MS
+dockyard/MS
+doctor/SMDG
+doctoral
+doctorate/MS
+doctrinaire/MS
+doctrinal
+doctrine/MS
+docudrama/SM
+document/GMDS
+documentary/SM
+documentation/SM
+documented/U
+dodder/SMDG
+doddery
+doddle
+dodge/DRSMZG
+dodgem/S
+dodger/M
+dodgy/RT
+dodo/MS
+doe/SM
+doer/M
+does/AU
+doeskin/MS
+doesn't
+doff/DGS
+dog/SM
+dogcart/SM
+dogcatcher/SM
+doge/MS
+dogeared
+dogfight/SM
+dogfish/MS
+dogged/PY
+doggedness/M
+doggerel/M
+dogging
+doggone/TGRS
+doggy/RSMT
+doghouse/SM
+dogie/SM
+dogleg/SM
+doglegged
+doglegging
+doglike
+dogma/SM
+dogmatic
+dogmatically
+dogmatism/M
+dogmatist/SM
+dognapper
+dogsbody/S
+dogsled/S
+dogtrot/MS
+dogtrotted
+dogtrotting
+dogwood/MS
+doily/SM
+doing/USM
+doldrums/M
+dole's
+dole/FGDS
+doleful/YP
+dolefulness/M
+doll/MDGS
+dollar/SM
+dollhouse/SM
+dollop/SGMD
+dolly/SM
+dolmen/SM
+dolomite/M
+dolorous/Y
+dolour/M
+dolphin/MS
+dolt/MS
+doltish/YP
+doltishness/M
+domain/SM
+dome/MGDS
+domestic/SM
+domestically
+domesticate/DSGN
+domesticated/U
+domestication/M
+domesticity/M
+domicile/DSMG
+domiciliary
+dominance/M
+dominant/SMY
+dominate/DSGN
+domination/M
+dominatrices
+dominatrix/M
+domineer/SGD
+domineering/Y
+dominion/SM
+domino/M
+dominoes
+don't
+don/SM
+dona/MS
+donate/DSXGN
+donation/M
+done/FAU
+dong/MDGS
+dongle/SM
+donkey/SM
+donned
+donning
+donnish
+donnybrook/MS
+donor/SM
+donuts
+doodad/SM
+doodah
+doodahs
+doodle/DRSMZG
+doodlebug/SM
+doodler/M
+doohickey/SM
+doolally
+doom/MDGS
+doomsayer/MS
+doomsday/M
+doomster/S
+doona/SM
+door's
+door/IS
+doorbell/MS
+doorjamb/S
+doorkeeper/MS
+doorknob/MS
+doorknocker/S
+doorman/M
+doormat/SM
+doormen
+doorplate/SM
+doorpost/S
+doorstep/MS
+doorstepped
+doorstepping
+doorstop/MS
+doorway/SM
+dooryard/MS
+dopa/M
+dopamine
+dope/MZGDRS
+doper/M
+dopey
+dopier
+dopiest
+dopiness/M
+doping/M
+doppelganger/S
+dork/MS
+dorky/RT
+dorm/MRZS
+dormancy/M
+dormant
+dormer/M
+dormice
+dormitory/SM
+dormouse/M
+dorsal/Y
+dory/SM
+dosage/SM
+dose/MGDS
+dosh
+dosimeter/SM
+doss/DRSZG
+dosshouse/S
+dossier/MS
+dost
+dot/ZGSMDR
+dotage/M
+dotard/SM
+dotcom/SM
+dote/S
+doter/M
+doting/Y
+dotted
+dotting
+dotty/RT
+double's
+double/ADSG
+doubleheader/MS
+doublespeak/M
+doublet/MS
+doubloon/SM
+doubly
+doubt/SMDRZG
+doubter/M
+doubtful/PY
+doubtfulness/M
+doubting/Y
+doubtless/Y
+douche/DSMG
+dough/M
+doughnut/SM
+doughty/RT
+doughy/TR
+dour/RYTP
+dourness/M
+douse/DSG
+dove/MS
+dovecot/S
+dovecote/SM
+dovetail/MDSG
+dovish
+dowager/MS
+dowdily
+dowdiness/M
+dowdy/RSPT
+dowel/SM
+dowelled
+dowelling
+dower/SMDG
+down/MDRZGS
+downbeat/SM
+downcast
+downdrafts
+downdraught/M
+downer/M
+downfall/SMN
+downfield
+downgrade/DSMG
+downhearted/PY
+downheartedness/M
+downhill/MS
+download/MDBSG
+downmarket
+downplay/DSG
+downpour/MS
+downrange
+downright
+downriver
+downscale
+downshift/SGD
+downside/MS
+downsize/GDS
+downsizing/M
+downspout/MS
+downstage
+downstairs/M
+downstate/M
+downstream
+downswing/MS
+downtempo
+downtime/M
+downtown/M
+downtrend/MS
+downtrodden
+downturn/MS
+downward/S
+downwind
+downy/RT
+dowry/SM
+dowse/DRSZG
+dowser/M
+doxology/SM
+doyen/SM
+doyenne/MS
+doz/XGDNS
+doze/M
+dozen/MH
+dozily
+dozy/RTP
+dpi
+dpt
+drab/MYSP
+drabber
+drabbest
+drabness/M
+drachma/MS
+draconian
+draft's
+draft/ASDG
+draftee/SM
+drafter/SM
+drafting/M
+drag/MS
+dragged
+dragging
+draggy/TR
+dragnet/SM
+dragon/SM
+dragonfly/SM
+dragoon/SMDG
+dragster/S
+drain/SMDRZG
+drainage/M
+drainboard/SM
+drainer/M
+drainpipe/MS
+drake/SM
+dram/MS
+drama/SM
+dramatic/S
+dramatically
+dramatics/M
+dramatisation/MS
+dramatise/DSG
+dramatist/SM
+drank
+drape/DRSMZG
+draper/M
+drapery/SM
+drastic
+drastically
+drat
+dratted
+draught/SM
+draughtboard/S
+draughtily
+draughtiness/M
+draughtsman/M
+draughtsmanship/M
+draughtsmen
+draughtswoman/M
+draughtswomen
+draughty/PRT
+draw/MRZGSJ
+drawback/MS
+drawbridge/MS
+drawer/M
+drawing/M
+drawl/SMDG
+drawn/A
+drawstring/MS
+dray/MS
+dread/SMDG
+dreadful/PY
+dreadfulness/M
+dreadlocks/M
+dreadnought/MS
+dream/SMDRZG
+dreamboat/MS
+dreamed/U
+dreamer/M
+dreamily
+dreaminess/M
+dreamland/M
+dreamless
+dreamlike
+dreamt
+dreamworld/SM
+dreamy/RPT
+drear
+drearily
+dreariness/M
+dreary/RPT
+dredge/DRSMZG
+dredger/M
+dregs/M
+drench/GDS
+dress/AUGSDM
+dressage/M
+dresser/MS
+dressiness/M
+dressing/SM
+dressmaker/SM
+dressmaking/M
+dressy/TPR
+drew/A
+dribble/MZGDRS
+dribbler/M
+driblet/MS
+drier/M
+drift/SMDRZG
+drifter/M
+driftnet/S
+driftwood/M
+drill/SMDRZG
+driller/M
+drillmaster/SM
+drily
+drink/SMRBJZG
+drinkable/U
+drinker/M
+drip/MS
+dripped
+dripping/SM
+drippy/TR
+drive/RSMZGJ
+drivel/SM
+drivelled
+driveller/SM
+drivelling
+driven
+driver/M
+driveshaft/SM
+driveway/MS
+drizzle/MGDS
+drizzly
+drogue/SM
+droid/S
+droll/RPT
+drollery/SM
+drollness/M
+drolly
+dromedary/SM
+drone/DSMG
+drongo/SM
+drool/SMDG
+droop/GSMD
+droopiness/M
+droopy/TPR
+drop/MS
+dropkick/MS
+droplet/SM
+dropout/SM
+dropped
+dropper/SM
+dropping/S
+droppings/M
+dropsical
+dropsy/M
+dross/M
+drought/SM
+drove/RSMZ
+drover/M
+drown/GSJD
+drowning/M
+drowse/MGDS
+drowsily
+drowsiness/M
+drowsy/RTP
+drub/S
+drubbed
+drubber/SM
+drubbing/MS
+drudge/MGDS
+drudgery/M
+drug/MS
+drugged
+druggie/SM
+drugging
+druggist/SM
+druggy
+drugstore/MS
+druid/SM
+druidism/M
+drum/MS
+drumbeat/SM
+drumlin/SM
+drummed
+drummer/SM
+drumming
+drumstick/SM
+drunk/STMNR
+drunkard/MS
+drunken/PY
+drunkenness/M
+drupe/SM
+druthers/M
+dry/ZTGDRSM
+dryad/SM
+dryer/SM
+dryness/M
+drys
+drywall/M
+dual
+dualism/M
+duality/M
+dub/SM
+dubbed
+dubber/SM
+dubbin/M
+dubbing
+dubiety/M
+dubious/YP
+dubiousness/M
+ducal
+ducat/SM
+duchess/MS
+duchy/SM
+duck/MDGS
+duckbill/SM
+duckboards
+duckling/SM
+duckpins/M
+duckweed/M
+ducky/TRSM
+duct's/K
+duct/CKIFS
+ductile
+ductility/M
+ducting
+ductless
+dud/GSMD
+dude/MS
+dudgeon/M
+due/SM
+duel/MS
+duelled
+dueller/SM
+duelling/S
+duellist/SM
+duenna/MS
+duet/MS
+duff/MDRZGS
+duffer/M
+dug
+dugout/MS
+duh
+duke/MS
+dukedom/SM
+dulcet
+dulcimer/MS
+dull/DRPTGS
+dullard/SM
+dullness/M
+dully
+duly/U
+dumb/RYPT
+dumbbell/SM
+dumbfound/SDG
+dumbness/M
+dumbo/S
+dumbstruck
+dumbwaiter/SM
+dumdum/MS
+dummy/SM
+dump/MDRZGS
+dumpiness/M
+dumpling/SM
+dumpsite/S
+dumpster/SM
+dumpy/PTR
+dun/SM
+dunce/SM
+dunderhead/MS
+dune/MS
+dung/MDGS
+dungaree/MS
+dungeon/SM
+dunghill/MS
+dunk/MDGS
+dunned
+dunner
+dunnest
+dunning
+dunno
+dunny/SM
+duo/SM
+duodecimal
+duodena
+duodenal
+duodenum/M
+duopoly/S
+dupe/MZGDRS
+duper/M
+duple
+duplex/MS
+duplicate's
+duplicate/AGNDS
+duplication/AM
+duplicator/MS
+duplicitous
+duplicity/M
+durability/M
+durable
+durably
+durance/M
+duration/M
+duress/M
+during
+durst
+durum/M
+dusk/M
+duskiness/M
+dusky/RTP
+dust/MDRZGS
+dustbin/SM
+dustcart/S
+duster/M
+dustiness/M
+dustless
+dustman
+dustmen
+dustpan/SM
+dustsheet/S
+dusty/RTP
+dutch
+duteous/Y
+dutiable
+dutiful/YP
+dutifulness/M
+duty/SM
+duvet/SM
+dwarf/SGMD
+dwarfish
+dwarfism/M
+dweeb/SM
+dwell/SJZGR
+dweller/M
+dwelling/M
+dwelt/I
+dwindle/DSG
+dyadic
+dybbuk/SM
+dybbukim
+dye/DRSMZG
+dyeing/A
+dyer/M
+dyestuff/M
+dying/M
+dyke/MGDS
+dynamic/MS
+dynamical/Y
+dynamics/M
+dynamism/M
+dynamite/MZGDRS
+dynamiter/M
+dynamo/SM
+dynastic
+dynasty/SM
+dysentery/M
+dysfunction/MS
+dysfunctional
+dyslectic/SM
+dyslexia/M
+dyslexic/SM
+dyspepsia/M
+dyspeptic/MS
+dysphagia
+dysphoria
+dysphoric
+dysprosium/M
+dystonia
+dystopi
+dystopia
+dystopian
+dz
+e'en
+e'er
+e/FDST
+eBay/M
+eMusic/M
+ea
+each
+eager/PTRY
+eagerness/M
+eagle/MS
+eaglet/MS
+ear/SMDY
+earache/SM
+earbash/ZGDRS
+earbasher/M
+earbud/SM
+eardrum/SM
+earful/SM
+earl/MS
+earldom/SM
+earliness/M
+earlobe/SM
+early/RTP
+earmark/SMDG
+earmuff/SM
+earn/DRZTGJS
+earned/U
+earner/M
+earnest/SMYP
+earnestness/M
+earnings/M
+earphone/MS
+earpiece/S
+earplug/SM
+earring/SM
+earshot/M
+earsplitting
+earth's
+earth/UDYG
+earthbound
+earthen
+earthenware/M
+earthiness/M
+earthling/MS
+earthly/RT
+earthquake/SM
+earths/U
+earthshaking
+earthward/S
+earthwork/MS
+earthworm/MS
+earthy/RTP
+earwax/M
+earwig/SM
+ease/EDSM
+easel/SM
+easement/SM
+easily/U
+easiness/UM
+easing
+east/M
+eastbound
+easterly/SM
+eastern/ZR
+easterner/M
+easternmost
+eastward/S
+easy/URTP
+easygoing
+eat/ZGBSNR
+eatable/SM
+eaten/U
+eater/M
+eatery/SM
+eave/MS
+eavesdrop/S
+eavesdropped
+eavesdropper/SM
+eavesdropping
+ebb/SMDG
+ebony/SM
+ebullience/M
+ebullient/Y
+ebullition/M
+eccentric/SM
+eccentrically
+eccentricity/SM
+eccl
+ecclesial
+ecclesiastic/SM
+ecclesiastical/Y
+echelon/SM
+echidna
+echinoderm/SM
+echo's
+echo/ADG
+echoes/A
+echoic
+echolocation/M
+echos
+eclair/SM
+eclat/M
+eclectic/SM
+eclectically
+eclecticism/M
+eclipse/DSMG
+ecliptic/M
+eclogue/SM
+ecocide/M
+ecol
+ecologic
+ecological/Y
+ecologist/MS
+ecology/M
+econ
+econometric/S
+economic/S
+economical/UY
+economics/M
+economise/DRSZG
+economiser/M
+economist/SM
+economy/SM
+ecosystem/MS
+ecotourism/M
+ecotourist/MS
+ecru/M
+ecstasy/SM
+ecstatic
+ecstatically
+ecu
+ecumenical/Y
+ecumenicism/M
+ecumenism/M
+eczema/M
+ed/ACSM
+edamame
+eddy/DSMG
+edelweiss/M
+edge/MZGJDRS
+edger/M
+edgewise
+edgily
+edginess/M
+edging/M
+edgy/RTP
+edibility/M
+edible/SMP
+edibleness/M
+edict/SM
+edification/M
+edifice/SM
+edifier/M
+edify/DRSZGN
+edifying/U
+edit's
+edit/ADGS
+editable
+edited/U
+edition/MS
+editor/SM
+editorial/SMY
+editorialise/DSG
+editorship/M
+educ
+educability/M
+educable/I
+educate/ADSGNV
+educated/U
+education/AM
+educational/Y
+educationalist/S
+educationist/S
+educations
+educator/MS
+educe/DSGB
+edutainment/M
+eek
+eel/SM
+eerie/RT
+eerily
+eeriness/M
+eff/GSD
+efface/DSLG
+effacement/M
+effect/SMDGV
+effective/IPY
+effectiveness/IM
+effectual/IY
+effectuate/DSG
+effeminacy/M
+effeminate/Y
+effendi/SM
+efferent
+effervesce/GDS
+effervescence/M
+effervescent/Y
+effete/YP
+effeteness/M
+efficacious/Y
+efficacy/IM
+efficiency/ISM
+efficient/IY
+effigy/SM
+efflorescence/M
+efflorescent
+effluence/M
+effluent/MS
+effluvia
+effluvium/M
+efflux
+effort/SM
+effortful
+effortless/YP
+effortlessness/M
+effrontery/M
+effulgence/M
+effulgent
+effuse/DSGNVX
+effusion/M
+effusive/YP
+effusiveness/M
+egad
+egalitarian/SM
+egalitarianism/M
+egg/GSMD
+eggbeater/MS
+eggcup/SM
+egghead/SM
+eggnog/M
+eggplant/MS
+eggshell/SM
+eglantine/SM
+ego/SM
+egocentric/MS
+egocentrically
+egocentricity/M
+egoism/M
+egoist/SM
+egoistic
+egoistical/Y
+egomania/M
+egomaniac/MS
+egotism/M
+egotist/SM
+egotistic
+egotistical/Y
+egregious/PY
+egregiousness/M
+egress/MS
+egret/SM
+eh
+eider/SM
+eiderdown/MS
+eigenvalue/S
+eigenvector/S
+eight/SM
+eighteen/MHS
+eighteenth/M
+eighteenths
+eighth/M
+eighths
+eightieth/M
+eightieths
+eighty/SMH
+einsteinium/M
+eisteddfod/S
+either
+ejaculate/GNXDS
+ejaculation/M
+ejaculatory
+eject/SDG
+ejection/MS
+ejector/SM
+eke/DSG
+elaborate/YGNDSPX
+elaborateness/M
+elaboration/M
+elan/M
+eland/SM
+elapse/DSG
+elastic/MS
+elastically
+elasticated
+elasticise/DSG
+elasticity/M
+elate/DSGN
+elated/Y
+elation/M
+elbow/SMDG
+elbowroom/M
+elder/SMY
+elderberry/SM
+eldercare/M
+eldest
+eldritch
+elect's
+elect/ASDGV
+electable
+election/AMS
+electioneer/DGS
+elective/MS
+elector/MS
+electoral/Y
+electorate/MS
+electric/S
+electrical/Y
+electrician/MS
+electricity/M
+electrification/M
+electrifier/M
+electrify/ZGNDRS
+electrocardiogram/MS
+electrocardiograph/M
+electrocardiographs
+electrocardiography/M
+electrocute/DSXGN
+electrocution/M
+electrode/SM
+electrodynamics
+electroencephalogram/MS
+electroencephalograph/M
+electroencephalographic
+electroencephalographs
+electroencephalography/M
+electrologist/SM
+electrolysis/M
+electrolyte/MS
+electrolytic
+electromagnet/MS
+electromagnetic
+electromagnetically
+electromagnetism/M
+electromotive
+electron/MS
+electronic/S
+electronica/M
+electronically
+electronics/M
+electroplate/DSG
+electroscope/SM
+electroscopic
+electroshock/M
+electrostatic/S
+electrostatics/M
+electrotype/MS
+electroweak
+eleemosynary
+elegance/IM
+elegant/IY
+elegiac/MS
+elegiacal
+elegy/SM
+elem
+element/MS
+elemental/Y
+elementary
+elephant/SM
+elephantiasis/M
+elephantine
+elev
+elevate/XDSGN
+elevation/M
+elevator/MS
+eleven/SMH
+elevens/S
+eleventh/M
+elevenths
+elf/M
+elfin
+elfish
+elicit/SDG
+elicitation/M
+elide/DSG
+eligibility/IM
+eligible
+eliminate/XDSGN
+elimination/M
+eliminator/S
+elision/MS
+elite/SM
+elitism/M
+elitist/MS
+elixir/SM
+elk/SM
+ell/SM
+ellipse/MS
+ellipsis/M
+ellipsoid/SM
+ellipsoidal
+elliptic
+elliptical/Y
+elm/SM
+elocution/M
+elocutionary
+elocutionist/SM
+elodea/SM
+elongate/DSGNX
+elongation/M
+elope/DSGL
+elopement/MS
+eloquence/M
+eloquent/Y
+else
+elsewhere
+elucidate/DSGNX
+elucidation/M
+elude/DSG
+elusive/YP
+elusiveness/M
+elver/SM
+elves
+elvish
+em's
+em/S
+emaciate/GNDS
+emaciation/M
+email/SMDG
+emanate/XDSGN
+emanation/M
+emancipate/DSGN
+emancipation/M
+emancipator/MS
+emasculate/GNDS
+emasculation/M
+embalm/SZGDR
+embalmer/M
+embank/SLGD
+embankment/SM
+embargo/MDG
+embargoes
+embark/AEGDS
+embarkation/EM
+embarkations
+embarrass/GLDS
+embarrassed/U
+embarrassing/Y
+embarrassment/SM
+embassy/SM
+embattled
+embed/S
+embedded
+embedding
+embellish/LGDS
+embellishment/SM
+ember/SM
+embezzle/ZGLDRS
+embezzlement/M
+embezzler/M
+embitter/GLDS
+embitterment/M
+emblazon/GDLS
+emblazonment/M
+emblem/SM
+emblematic
+emblematically
+embodiment/EM
+embody/AEGSD
+embolden/DGS
+embolisation
+embolism/MS
+emboss/DRSZG
+embosser/M
+embouchure/M
+embower/SGD
+embrace/DSMG
+embraceable
+embrasure/MS
+embrocation/MS
+embroider/SDRZG
+embroiderer/M
+embroidery/SM
+embroil/DGLS
+embroilment/M
+embryo/SM
+embryological
+embryologist/MS
+embryology/M
+embryonic
+emcee/DSM
+emceeing
+emend/SDG
+emendation/MS
+emerald/MS
+emerge/ADSG
+emergence/AM
+emergency/SM
+emergent
+emerita
+emeritus
+emery/M
+emetic/SM
+emf/S
+emigrant/SM
+emigrate/DSXGN
+emigration/M
+emigre/SM
+eminence/MS
+eminent/Y
+emir/MS
+emirate/MS
+emissary/SM
+emission/SM
+emit/S
+emitted
+emitter/MS
+emitting
+emo/SM
+emoji/SM
+emollient/MS
+emolument/MS
+emote/XDSGNV
+emoticon/SM
+emotion/M
+emotional/UY
+emotionalise/GDS
+emotionalism/M
+emotionless
+emotive/Y
+empathetic
+empathically
+empathise/DSG
+empathy/M
+emperor/MS
+emphases
+emphasis/M
+emphasise/AGDS
+emphatic/U
+emphatically
+emphysema/M
+empire/SM
+empiric
+empirical/Y
+empiricism/M
+empiricist/SM
+emplacement/SM
+employ's
+employ/ADGLS
+employable/U
+employee/SM
+employer/SM
+employment/UAM
+employments
+emporium/SM
+empower/SDGL
+empowerment/M
+empress/MS
+emptily
+emptiness/M
+empty/TGPDRSM
+empyrean/M
+emu/SM
+emulate/DSGNVX
+emulation/M
+emulator/SM
+emulsification/M
+emulsifier/M
+emulsify/NDRSZG
+emulsion/MS
+en/SM
+enable/DRSZG
+enabler/M
+enact/ASLDG
+enactment/ASM
+enamel/SM
+enamelled
+enameller/SM
+enamelling/S
+enamelware/M
+enamour/DGS
+enc
+encamp/LSGD
+encampment/MS
+encapsulate/XGNDS
+encapsulation/M
+encase/LDSG
+encasement/M
+encephalitic
+encephalitis/M
+enchain/DGS
+enchant/ELDGS
+enchanter/MS
+enchanting/Y
+enchantment/EM
+enchantments
+enchantress/MS
+enchilada/SM
+encipher/SGD
+encircle/DSGL
+encirclement/M
+encl
+enclave/MS
+enclose/GDS
+enclosed/U
+enclosure/SM
+encode/DRSZG
+encoder/M
+encomium/MS
+encompass/GDS
+encore/DSMG
+encounter/GSMD
+encourage/DSLG
+encouragement/SM
+encouraging/Y
+encroach/GLDS
+encroachment/SM
+encrust/DGS
+encrustation/SM
+encrypt/DGS
+encryption
+encumber/EGSD
+encumbered/U
+encumbrance/MS
+ency
+encyclical/SM
+encyclopedia/MS
+encyclopedic
+encyst/LSGD
+encystment/M
+end/GVSJMD
+endanger/SGDL
+endangerment/M
+endear/SGLD
+endearing/Y
+endearment/SM
+endeavour/MDSG
+endemic/MS
+endemically
+endgame/S
+ending/M
+endive/SM
+endless/PY
+endlessness/M
+endmost
+endocarditis
+endocrine/MS
+endocrinologist/MS
+endocrinology/M
+endogenous/Y
+endometrial
+endometriosis
+endometrium
+endorphin/MS
+endorse/LZGDRS
+endorsement/MS
+endorser/M
+endoscope/MS
+endoscopic
+endoscopy/M
+endothelial
+endothermic
+endotracheal
+endow/SDLG
+endowment/MS
+endpoint/SM
+endue/DSG
+endurable/U
+endurance/M
+endure/DSBG
+endways
+enema/SM
+enemy/SM
+energetic
+energetically
+energise/ZGDRS
+energiser/M
+energy/SM
+enervate/GNDS
+enervation/M
+enfeeble/GDSL
+enfeeblement/M
+enfilade/DSMG
+enfold/SGD
+enforce/LZGDRS
+enforceable/U
+enforced/U
+enforcement/M
+enforcer/M
+enfranchise/EGDSL
+enfranchisement/EM
+engage/EADSG
+engagement/EMS
+engagingly
+engender/SGD
+engine/SM
+engineer/MDGS
+engineering/M
+engorge/LGDS
+engorgement/M
+engram/SM
+engrave/ZGJDRS
+engraver/M
+engraving/M
+engross/GLDS
+engrossment/M
+engulf/SLGD
+engulfment/M
+enhance/LZGDRS
+enhancement/SM
+enigma/SM
+enigmatic
+enigmatically
+enjambment/SM
+enjoin/SGD
+enjoy/GBLSD
+enjoyably
+enjoyment/SM
+enlarge/LZGDRS
+enlargeable
+enlargement/MS
+enlarger/M
+enlighten/SGLD
+enlightened/U
+enlightenment/M
+enlist/ADGSL
+enlistee/SM
+enlistment/AM
+enlistments
+enliven/SLDG
+enlivenment/M
+enmesh/DSGL
+enmeshment/M
+enmity/SM
+ennoble/DSGL
+ennoblement/M
+ennui/M
+enormity/SM
+enormous/PY
+enormousness/M
+enough/M
+enplane/DSG
+enqueue/DS
+enquire/DRSZG
+enquiring/Y
+enquiry/SM
+enrage/GDS
+enrapture/DSG
+enrich/DSLG
+enrichment/M
+enrol/SL
+enrolled
+enrolling
+enrolment/SM
+ensconce/DSG
+ensemble/SM
+enshrine/GLDS
+enshrinement/M
+enshroud/DGS
+ensign/MS
+ensilage/M
+enslave/DSGL
+enslavement/M
+ensnare/DSLG
+ensnarement/M
+ensue/DSG
+ensure/ZGDRS
+ensurer/M
+entail/DSGL
+entailment/M
+entangle/EDSLG
+entanglement/EM
+entanglements
+entente/SM
+enter/ASGD
+enteral
+enteric
+enteritis/M
+enterprise/MGS
+enterprising/Y
+entertain/ZGDRSL
+entertainer/M
+entertaining/MY
+entertainment/MS
+enthral/SL
+enthralled
+enthralling
+enthralment/M
+enthrone/GDSL
+enthronement/SM
+enthuse/DSG
+enthusiasm/MS
+enthusiast/MS
+enthusiastic/U
+enthusiastically
+entice/GDSL
+enticement/MS
+enticing/Y
+entire/Y
+entirety/M
+entitle/DSGL
+entitlement/SM
+entity/SM
+entomb/DSGL
+entombment/M
+entomological
+entomologist/MS
+entomology/M
+entourage/SM
+entr'acte
+entrails/M
+entrained
+entrance/LDSMG
+entrancement/M
+entrancing/Y
+entrant/SM
+entrap/LS
+entrapment/M
+entrapped
+entrapping
+entreat/GSD
+entreating/Y
+entreaty/SM
+entree/MS
+entrench/DSGL
+entrenchment/MS
+entrepreneur/SM
+entrepreneurial
+entrepreneurship
+entropy/M
+entrust/SGD
+entry/ASM
+entryphone/S
+entryway/MS
+entwine/DSG
+enumerable
+enumerate/DSGNX
+enumeration/M
+enumerator/SM
+enunciate/DSGN
+enunciation/M
+enuresis/M
+envelop/SLDRZG
+envelope/SM
+enveloper/M
+envelopment/M
+envenom/SDG
+enviable/U
+enviably
+envious/PY
+enviousness/M
+environment/MS
+environmental/Y
+environmentalism/M
+environmentalist/SM
+environs/M
+envisage/GDS
+envision/DGS
+envoy/SM
+envy/DSMG
+envying/Y
+enzed
+enzedder/SM
+enzymatic
+enzyme/SM
+eolian
+eosinophil/S
+eosinophilic
+epaulette/MS
+epee/MS
+ephedrine/M
+ephemera/M
+ephemeral/Y
+epic/MS
+epicentre/MS
+epicure/SM
+epicurean/MS
+epidemic/SM
+epidemically
+epidemiological
+epidemiologist/SM
+epidemiology/M
+epidermal
+epidermic
+epidermis/MS
+epidural/S
+epiglottis/MS
+epigram/SM
+epigrammatic
+epigraph/M
+epigraphs
+epigraphy/M
+epilepsy/M
+epileptic/SM
+epilogue/MS
+epinephrine/M
+epiphany/SM
+episcopacy/M
+episcopal
+episcopate/M
+episode/SM
+episodic
+episodically
+epistemic
+epistemological
+epistemology
+epistle/SM
+epistolary
+epitaph/M
+epitaphs
+epithelial
+epithelium/M
+epithet/SM
+epitome/SM
+epitomise/GDS
+epoch/M
+epochal
+epochs
+eponymous
+epoxy/DSMG
+epsilon/SM
+equability/M
+equable
+equably
+equal/SMY
+equalisation/M
+equalise/ZGDRS
+equaliser/M
+equality/IM
+equalled/U
+equalling
+equanimity/M
+equate/DSGNBX
+equation/M
+equator/SM
+equatorial
+equerry/SM
+equestrian/SM
+equestrianism/M
+equestrienne/SM
+equidistant/Y
+equilateral/SM
+equilibrium/EM
+equine/SM
+equinoctial
+equinox/MS
+equip/AS
+equipage/MS
+equipment/M
+equipoise/M
+equipped/UA
+equipping/A
+equitable/I
+equitably/I
+equitation/M
+equity/ISM
+equiv
+equivalence/MS
+equivalency/SM
+equivalent/MYS
+equivocal/UY
+equivocalness/M
+equivocate/GNXDS
+equivocation/M
+equivocator/SM
+er/C
+era/SM
+eradicable/I
+eradicate/DSGN
+eradication/M
+eradicator/MS
+erase/DRSBZG
+eraser/M
+erasure/SM
+erbium/M
+ere
+erect/PSGDY
+erectile
+erection/SM
+erectness/M
+erector/MS
+erelong
+eremite/MS
+erg/SM
+ergo
+ergonomic/S
+ergonomically
+ergonomics/M
+ergosterol/M
+ergot/M
+ermine/SM
+erode/DSG
+erodible
+erogenous
+erosion/M
+erosive
+erotic/S
+erotica/M
+erotically
+eroticism/M
+err/GSD
+errand/SM
+errant/I
+errata/SM
+erratic
+erratically
+erratum/M
+erroneous/Y
+error/SM
+ersatz/MS
+erst
+erstwhile
+eruct/SDG
+eructation/SM
+erudite/YN
+erudition/M
+erupt/SDGV
+eruption/MS
+erysipelas/M
+erythrocyte/SM
+erythromycin
+escalate/CDSGN
+escalation/CM
+escalations
+escalator/MS
+escallop/SGMD
+escalope/S
+escapade/MS
+escape/LMGDS
+escapee/MS
+escapement/SM
+escapism/M
+escapist/MS
+escapologist/S
+escapology
+escargot/MS
+escarole/MS
+escarpment/MS
+eschatological
+eschatology
+eschew/SDG
+escort/SMDG
+escritoire/MS
+escrow/SM
+escudo/SM
+escutcheon/SM
+esky/SM
+esophageal
+esophagus's
+esoteric
+esoterically
+esp
+espadrille/MS
+espalier/MDSG
+especial/Y
+espionage/M
+esplanade/MS
+espousal/M
+espouse/GDS
+espresso/MS
+esprit/M
+espy/DSG
+esquire/SM
+essay/SMDRZG
+essayer/M
+essayist/SM
+essence/SM
+essential/IMS
+essentially
+establish/AESDGL
+establishment/AEM
+establishments
+estate/SM
+esteem/ESMDG
+ester/SM
+estimable/I
+estimate/MGNDSX
+estimation/M
+estimator/SM
+estoppel
+estrange/LDSG
+estrangement/MS
+estuary/SM
+eta/SM
+etc
+etch/DRSZGJ
+etcher/M
+etching/M
+eternal/YP
+eternalness/M
+eternity/SM
+ethane/M
+ethanol/M
+ether/M
+ethereal/Y
+ethic/SM
+ethical/UY
+ethics/M
+ethmoid
+ethnic/SM
+ethnically
+ethnicity/M
+ethnocentric
+ethnocentrism/M
+ethnographer/S
+ethnographic
+ethnographically
+ethnography
+ethnological/Y
+ethnologist/SM
+ethnology/M
+ethological
+ethologist/MS
+ethology/M
+ethos/M
+ethyl/M
+ethylene/M
+etiolated
+etiologic
+etiological
+etiologies
+etiquette/M
+etude/SM
+etymological/Y
+etymologist/SM
+etymology/SM
+eucalypti
+eucalyptus/MS
+euchre/DSMG
+euclidean
+eugenic/S
+eugenically
+eugenicist/MS
+eugenics/M
+eukaryote/SM
+eukaryotic
+eulogise/ZGDRS
+eulogiser/M
+eulogist/MS
+eulogistic
+eulogy/SM
+eunuch/M
+eunuchs
+euphemism/SM
+euphemistic
+euphemistically
+euphonious/Y
+euphony/M
+euphoria/M
+euphoric
+euphorically
+eureka
+euro/MS
+europium/M
+eutectic
+euthanasia/M
+euthanize/DSG
+euthenics/M
+eutrophication
+evacuate/XDSGN
+evacuation/M
+evacuee/MS
+evade/DRSZG
+evader/M
+evaluate/AGNVDSX
+evaluation/AM
+evaluator/S
+evanescence/M
+evanescent
+evangelic
+evangelical/SMY
+evangelicalism/M
+evangelise/GDS
+evangelism/M
+evangelist/MS
+evangelistic
+evaporate/GNDS
+evaporation/M
+evaporator/SM
+evasion/SM
+evasive/YP
+evasiveness/M
+eve/ASM
+even/MDRYTGSJP
+evenhanded/Y
+evening/M
+evenness/UM
+evensong/M
+event/SM
+eventful/UY
+eventfulness/M
+eventide/M
+eventual/Y
+eventuality/SM
+eventuate/GDS
+ever
+everglade/SM
+evergreen/SM
+everlasting/MYS
+evermore
+every
+everybody/M
+everyday
+everyone/M
+everyplace
+everything/M
+everywhere
+evict/SDG
+eviction/MS
+evidence/MGDS
+evident/Y
+evil/MRYTSP
+evildoer/SM
+evildoing/M
+eviller
+evillest
+evilness/M
+evince/DSG
+eviscerate/DSGN
+evisceration/M
+evocation/MS
+evocative/Y
+evoke/DSG
+evolution/M
+evolutionary
+evolutionist/SM
+evolve/DSG
+ewe/RSMZ
+ewer/M
+ex/MS
+exabyte/MS
+exacerbate/GNDS
+exacerbation/M
+exact/SPDRYTG
+exacting/Y
+exaction/M
+exactitude/M
+exactness/IM
+exaggerate/XDSGN
+exaggerated/Y
+exaggeration/M
+exaggerator/MS
+exajoule/S
+exalt/SDG
+exaltation/M
+exam/MS
+examination/AMS
+examine/AGDS
+examiner/MS
+example/MGDS
+exampled/U
+exasperate/DSGN
+exasperated/Y
+exasperating/Y
+exasperation/M
+excavate/GNDSX
+excavation/M
+excavator/SM
+exceed/GSD
+exceeding/Y
+excel/S
+excelled
+excellence/M
+excellency/SM
+excellent/Y
+excelling
+excelsior/M
+except/GSD
+exception/BSM
+exceptionable/U
+exceptional/UY
+exceptionalism
+excerpt/MDGS
+excess/VMS
+excessive/Y
+exchange/DSMG
+exchangeable
+exchequer/SM
+excise/XDSMGN
+excision/M
+excitability/M
+excitably
+excitation/M
+excite/BDRSLZG
+excited/Y
+excitement/SM
+exciter/M
+exciting/Y
+exciton
+excl
+exclaim/DGS
+exclamation/SM
+exclamatory
+exclude/GDS
+exclusion/MS
+exclusionary
+exclusive/PMYS
+exclusiveness/M
+exclusivity/M
+excommunicate/GNDSX
+excommunication/M
+excoriate/DSGNX
+excoriation/M
+excrement/M
+excremental
+excrescence/MS
+excrescent
+excreta/M
+excrete/XGNDS
+excretion/M
+excretory
+excruciating/Y
+exculpate/DSGN
+exculpation/M
+exculpatory
+excursion/MS
+excursionist/MS
+excursive/YP
+excursiveness/M
+excusable/I
+excusably/I
+excuse/DSBMG
+excused/U
+exec/MS
+execrable
+execrably
+execrate/DSGN
+execration/M
+execute/BXGNVDS
+execution/ZMR
+executioner/M
+executive/SM
+executor/MS
+executrices
+executrix/M
+exegeses
+exegesis/M
+exegetic
+exegetical
+exemplar/SM
+exemplary
+exemplification/M
+exemplify/GDSXN
+exempt/SGD
+exemption/SM
+exercise/DRSMZG
+exerciser/M
+exert/SDG
+exertion/MS
+exeunt
+exfoliate/GNDS
+exhalation/MS
+exhale/DSG
+exhaust/GVMDS
+exhaustible/I
+exhaustion/M
+exhaustive/YP
+exhaustiveness/M
+exhibit/GMDS
+exhibition/MS
+exhibitionism/M
+exhibitionist/MS
+exhibitor/SM
+exhilarate/DSGN
+exhilaration/M
+exhort/SDG
+exhortation/MS
+exhumation/MS
+exhume/DSG
+exigence/MS
+exigency/SM
+exigent
+exiguity/M
+exiguous
+exile/DSMG
+exilic
+exist/SDG
+existence/MS
+existent
+existential/Y
+existentialism/M
+existentialist/MS
+exit/MDGS
+exobiology/M
+exodus/MS
+exogenous
+exon/MS
+exonerate/GNDS
+exoneration/M
+exoplanet/MS
+exorbitance/M
+exorbitant/Y
+exorcise/DSG
+exorcism/SM
+exorcist/SM
+exoskeleton/SM
+exosphere/SM
+exothermic
+exotic/SM
+exotica
+exotically
+exoticism/M
+exp
+expand/BGSD
+expanse/XMNVS
+expansible
+expansion/M
+expansionary
+expansionism/M
+expansionist/MS
+expansive/YP
+expansiveness/M
+expat/S
+expatiate/GNDS
+expatiation/M
+expatriate/DSMGN
+expatriation/M
+expect/GSD
+expectancy/M
+expectant/Y
+expectation/SM
+expectorant/SM
+expectorate/DSGN
+expectoration/M
+expedience/IM
+expediences
+expediencies
+expediency/IM
+expedient/SMY
+expedite/DRSZGNX
+expediter/M
+expedition/M
+expeditionary
+expeditious/PY
+expeditiousness/M
+expel/S
+expelled
+expelling
+expend/GSBD
+expendable/SM
+expenditure/SM
+expense/MS
+expensive/IYP
+expensiveness/IM
+experience/IMD
+experiences
+experiencing
+experiential
+experiment/MDRSZG
+experimental/Y
+experimentation/M
+experimenter/M
+expert/SPMY
+expertise/M
+expertness/M
+expiate/GNDS
+expiation/M
+expiatory
+expiration/M
+expire/DSG
+expired/U
+expiry/M
+explain/ADGS
+explainable
+explained/U
+explanation/MS
+explanatory
+expletive/MS
+explicable/I
+explicate/XGNDS
+explication/M
+explicit/PY
+explicitness/M
+explode/GDS
+exploit/ZGBMDRS
+exploitation/M
+exploitative
+exploited/U
+exploiter/M
+exploration/MS
+exploratory
+explore/ZGDRS
+explored/U
+explorer/M
+explosion/SM
+explosive/SPMY
+explosiveness/M
+expo/MS
+exponent/MS
+exponential/Y
+exponentiation
+export/BSZGMDR
+exportation/M
+exporter/M
+expose/DSMG
+exposed/U
+exposition/SM
+expositor/SM
+expository
+expostulate/GNXDS
+expostulation/M
+exposure/MS
+expound/ZGDRS
+expounder/M
+express/GVMDSY
+expressed/U
+expressible/I
+expression/SM
+expressionism/M
+expressionist/SM
+expressionistic
+expressionless/Y
+expressive/PY
+expressiveness/M
+expressway/SM
+expropriate/GNXDS
+expropriation/M
+expropriator/SM
+expulsion/MS
+expunge/GDS
+expurgate/DSGNX
+expurgated/U
+expurgation/M
+exquisite/YP
+exquisiteness/M
+ext
+extant
+extemporaneous/PY
+extemporaneousness/M
+extempore
+extemporisation/M
+extemporise/GDS
+extend/SZGDRB
+extender/M
+extensibility
+extensible
+extension/SM
+extensional
+extensive/YP
+extensiveness/M
+extent/SM
+extenuate/DSGN
+extenuation/M
+exterior/MS
+exterminate/DSXGN
+extermination/M
+exterminator/MS
+external/MYS
+externalisation/MS
+externalise/DSG
+extinct/GDS
+extinction/MS
+extinguish/ZGBDRS
+extinguishable/I
+extinguisher/M
+extirpate/GNDS
+extirpation/M
+extol/S
+extolled
+extolling
+extort/SGD
+extortion/MRZ
+extortionate/Y
+extortioner/M
+extortionist/MS
+extra/SM
+extracellular
+extract/MDGVS
+extraction/SM
+extractor/MS
+extracurricular
+extradite/GNBXDS
+extradition/M
+extrajudicial
+extralegal
+extramarital
+extramural
+extraneous/Y
+extraordinaire
+extraordinarily
+extraordinary
+extrapolate/XGNDS
+extrapolation/M
+extrasensory
+extraterrestrial/MS
+extraterritorial
+extraterritoriality/M
+extravagance/MS
+extravagant/Y
+extravaganza/MS
+extravehicular
+extreme/PMYTRS
+extremeness/M
+extremism/M
+extremist/MS
+extremity/SM
+extricable/I
+extricate/GNDS
+extrication/M
+extrinsic
+extrinsically
+extroversion/M
+extrovert/SMD
+extrude/GDS
+extrusion/SM
+extrusive
+exuberance/M
+exuberant/Y
+exudation/M
+exude/DSG
+exult/SDG
+exultant/Y
+exultation/M
+exurb/SM
+exurban
+exurbanite/SM
+exurbia/M
+eye/DSM
+eyeball/GMDS
+eyebrow/SM
+eyedropper/SM
+eyeful/SM
+eyeglass/MS
+eyeing
+eyelash/MS
+eyeless
+eyelet/SM
+eyelid/SM
+eyeliner/MS
+eyeopener/MS
+eyeopening
+eyepiece/MS
+eyesight/M
+eyesore/MS
+eyestrain/M
+eyeteeth
+eyetooth/M
+eyewash/M
+eyewitness/MS
+f/CIAVTR
+fMRI
+fa/M
+fab
+fable/DSM
+fabric/SM
+fabricate/DSGNX
+fabrication/M
+fabricator/SM
+fabulous/Y
+facade/SM
+face's
+face/ACSDG
+facecloth/M
+facecloths
+faceless
+facepalm/SDG
+facet/SMDG
+facetious/YP
+facetiousness/M
+facial/SMY
+facile/Y
+facilitate/GNDS
+facilitation/M
+facilitator/MS
+facility/SM
+facing/SM
+facsimile/DSM
+facsimileing
+fact/MS
+faction/SM
+factional
+factionalism/M
+factious
+factitious
+factoid/SM
+factor's
+factor/ASDG
+factorial/MS
+factorisation
+factorise/GDS
+factory/SM
+factotum/SM
+factual/Y
+faculty/SM
+fad/GSMD
+faddish/P
+faddist/MS
+faddy/P
+fade/MS
+fading/U
+faecal
+faeces/M
+faerie/SM
+faff/DGS
+fag/SM
+fagged
+fagging
+faggot/SMG
+faience/M
+fail/DGJS
+failing/M
+faille/M
+failure/SM
+fain/RT
+faint/SMDRYTGP
+fainthearted
+faintness/M
+fair/MRYTGJPS
+fairground/MS
+fairing/M
+fairness/UM
+fairway/SM
+fairy/SM
+fairyland/SM
+faith/M
+faithful's
+faithful/UPY
+faithfulness/UM
+faithfuls
+faithless/PY
+faithlessness/M
+faiths
+fajita/SM
+fajitas/M
+fake/MZGDRS
+faker/M
+fakir/SM
+falcon/SMRZ
+falconer/M
+falconry/M
+fall/MNGS
+fallacious/Y
+fallacy/SM
+fallback
+fallibility/IM
+fallible/P
+fallibleness/M
+fallibly/I
+falloff/SM
+fallout/M
+fallow/SMDG
+false/PRYT
+falsehood/SM
+falseness/M
+falsetto/SM
+falsie/SM
+falsifiable
+falsification/M
+falsifier/M
+falsify/DRSZGNX
+falsity/SM
+falter/GSJMD
+faltering/Y
+fame's
+fame/D
+familial
+familiar/MYS
+familiarisation/M
+familiarise/GDS
+familiarity/UM
+family/SM
+famine/SM
+famish/DSG
+famous/IY
+fan/SM
+fanatic/SM
+fanatical/Y
+fanaticism/M
+fanboy/SM
+fanciable
+fancier/M
+fanciful/YP
+fancifulness/M
+fancily
+fanciness/M
+fancy/DRSMZTGP
+fancywork/M
+fandango/MS
+fandom
+fanfare/SM
+fang/MDS
+fanlight/SM
+fanned
+fanning
+fanny/SM
+fantail/MS
+fantasia/SM
+fantasise/GDS
+fantasist/S
+fantastic
+fantastical/Y
+fantasy/DSMG
+fanzine/MS
+far
+farad/SM
+faradize/DG
+faraway
+farce/SM
+farcical/Y
+fare/MGDS
+farewell/SM
+farina/M
+farinaceous
+farm/MDRZGSJ
+farmer/M
+farmhand/SM
+farmhouse/SM
+farming/M
+farmland/MS
+farmstead/MS
+farmyard/MS
+faro/M
+farrago/M
+farragoes
+farrier/MS
+farrow/SMDG
+farseeing
+farsighted/P
+farsightedness/M
+fart/MDGS
+farther
+farthermost
+farthest
+farthing/SM
+fascia/SM
+fascicle/SM
+fascinate/GNDSX
+fascinating/Y
+fascination/M
+fascism/M
+fascist/MS
+fascistic
+fashion/ZGBMDRS
+fashionable/U
+fashionably/U
+fashioner/M
+fashionista/MS
+fast/MDRTGSP
+fastback/SM
+fastball/SM
+fasten/UAGDS
+fastener/SM
+fastening/MS
+fastidious/PY
+fastidiousness/M
+fastness/MS
+fat/GSPMD
+fatal/Y
+fatalism/M
+fatalist/SM
+fatalistic
+fatalistically
+fatality/SM
+fatback/M
+fate/MS
+fateful/YP
+fatefulness/M
+fathead/MDS
+father/SGMDY
+fatherhood/M
+fatherland/MS
+fatherless
+fathom/SMDGB
+fathomable/U
+fathomless
+fatigue/MDSG
+fatigues/M
+fatness/M
+fatso/S
+fatten/SDG
+fatter
+fattest
+fattiness/M
+fatty/RSMTP
+fatuity/M
+fatuous/YP
+fatuousness/M
+fatwa/SM
+faucet/SM
+fault/CSMDG
+faultfinder/SM
+faultfinding/M
+faultily
+faultiness/M
+faultless/PY
+faultlessness/M
+faulty/PRT
+faun/MS
+fauna/SM
+fauvism/M
+fauvist/SM
+faux
+fave/S
+favour/ESMDG
+favourable/U
+favourably/U
+favourite/MS
+favouritism/M
+fawn/MDRZGS
+fawner/M
+fax/GMDS
+fay/TSM
+fayre
+faze/GDS
+fazed/U
+fealty/M
+fear/MDGS
+fearful/YP
+fearfulness/M
+fearless/PY
+fearlessness/M
+fearsome
+feasibility/M
+feasible/IU
+feasibly
+feast/SMDRZG
+feaster/M
+feat/MS
+feather/SGMD
+featherbedding/M
+featherbrained
+featherless
+featherweight/MS
+feathery/TR
+feature/DSMG
+featureless
+febrile
+feckless/PY
+fecund
+fecundate/GNDS
+fecundation/M
+fecundity/M
+fed/SM
+federal/SMY
+federalisation/M
+federalise/GDS
+federalism/M
+federalist/MS
+federate/FXDSGN
+federation/FM
+fedora/SM
+fee/SM
+feeble/RTP
+feebleness/M
+feebly
+feed/MRZGSJ
+feedback/M
+feedbag/SM
+feeder/M
+feeding/M
+feedlot/SM
+feel/MRZGSJ
+feeler/M
+feelgood
+feeling/MY
+feet
+feign/SDG
+feigned/U
+feint/SMDG
+feisty/TR
+feldspar/M
+felicitate/GNXDS
+felicitation/M
+felicitous/Y
+felicity/ISM
+feline/SM
+fell/MDRZTGS
+fella/S
+fellatio/M
+fellow/SM
+fellowman/M
+fellowmen
+fellowship/MS
+felon/SM
+felonious
+felony/SM
+felt/MDGS
+fem
+female/PSM
+femaleness/M
+feminine/SMY
+femininity/M
+feminise/DSG
+feminism/M
+feminist/SM
+femoral
+femur/SM
+fen/SM
+fence/CDSMG
+fencer/SM
+fencing/M
+fend/CDRZGS
+fender/CM
+fenestration/M
+fennel/M
+fentanyl/M
+feral
+ferment/FCMS
+fermentation/M
+fermented
+fermenting
+fermium/M
+fern/MS
+ferny/RT
+ferocious/PY
+ferociousness/M
+ferocity/M
+ferret/GSMD
+ferric
+ferromagnetic
+ferromagnetism
+ferrous
+ferrule/MS
+ferry/DSMG
+ferryboat/SM
+ferryman/M
+ferrymen
+fertile/I
+fertilisation/M
+fertilise/DRSZG
+fertilised/U
+fertiliser/M
+fertility/IM
+ferule/SM
+fervency/M
+fervent/Y
+fervid/Y
+fervour/M
+fess/FKGSD
+fest/MRZVS
+festal
+fester/GMD
+festival/SM
+festive/YP
+festiveness/M
+festivity/SM
+festoon/GMDS
+feta/M
+fetal
+fetch/DRSZG
+fetcher/M
+fetching/Y
+fete/MGDS
+fetid/P
+fetidness/M
+fetish/MS
+fetishism/M
+fetishist/SM
+fetishistic
+fetlock/MS
+fetter's
+fetter/USGD
+fettle/M
+fettuccine/M
+fetus/MS
+feud/MDGS
+feudal
+feudalism/M
+feudalistic
+fever/SMD
+feverish/YP
+feverishness/M
+few/TPMR
+fewness/M
+fey
+fez/M
+fezzes
+ff
+fiance/CM
+fiancee/MS
+fiances
+fiasco/M
+fiascoes
+fiat/MS
+fib/SM
+fibbed
+fibber/SM
+fibbing
+fibre/SM
+fibreboard/M
+fibrefill/M
+fibreglass/M
+fibril/SM
+fibrillate/GNDS
+fibrillation/M
+fibrin/M
+fibroid
+fibrosis/M
+fibrous
+fibula/M
+fibulae
+fibular
+fiche/SM
+fichu/SM
+fickle/RPT
+fickleness/M
+fiction/MS
+fictional/Y
+fictionalisation/SM
+fictionalise/DSG
+fictitious/Y
+fictive
+ficus/M
+fiddle/DRSMZG
+fiddler/M
+fiddlesticks
+fiddly/TR
+fidelity/IM
+fidget/SGMD
+fidgety
+fiduciary/SM
+fie
+fief/MS
+fiefdom/MS
+field/ISMRZ
+fielded
+fielder/IM
+fielding
+fieldsman
+fieldsmen
+fieldwork/MRZ
+fieldworker/M
+fiend/SM
+fiendish/Y
+fierce/PRYT
+fierceness/M
+fieriness/M
+fiery/RPT
+fiesta/SM
+fife/MZRS
+fifer/M
+fifteen/MHS
+fifteenth/M
+fifteenths
+fifth/MY
+fifths
+fiftieth/M
+fiftieths
+fifty/SMH
+fig/SLM
+fight/SMRZG
+fightback
+fighter/IMS
+fighting/IM
+figment/MS
+figuration/FM
+figurative/Y
+figure's
+figure/FEGSD
+figurehead/SM
+figurine/MS
+filament/MS
+filamentous
+filbert/MS
+filch/DSG
+file's/KC
+file/CAKGDS
+filename/S
+filer/CSM
+filet
+filial
+filibuster/MDRSZG
+filibusterer/M
+filigree/DSM
+filigreeing
+filing's
+filings
+fill's
+fill/AIDGS
+filled/U
+filler/MS
+fillet/MDGS
+filling/SM
+fillip/MDGS
+filly/SM
+film/MDGS
+filminess/M
+filmmaker/SM
+filmstrip/MS
+filmy/TPR
+filo
+filter/MDRBSZG
+filtered/U
+filterer/M
+filth/M
+filthily
+filthiness/M
+filthy/RPT
+filtrate's
+filtrate/IGNDS
+filtration/IM
+fin/SMR
+finagle/DRSZG
+finagler/M
+final/SMY
+finale/MS
+finalisation/M
+finalise/DSG
+finalist/SM
+finality/M
+finance's
+finance/ADSG
+financial/Y
+financier/MS
+financing/M
+finch/MS
+find/JMRZGS
+finder/M
+finding/M
+findings/M
+fine's/F
+fine/CAFTGDS
+finely
+fineness/M
+finery/AM
+finespun
+finesse/DSMG
+finger/MDGSJ
+fingerboard/SM
+fingering/M
+fingerling/SM
+fingermark/S
+fingernail/SM
+fingerprint/SGMD
+fingertip/MS
+finial/MS
+finical
+finickiness/M
+finicky/RPT
+finis/MS
+finish's
+finish/ADSG
+finished/U
+finisher/MS
+finite/IY
+fink/MDGS
+finned
+finny
+fir/ZGSJMDRH
+fire/MS
+firearm/SM
+fireball/MS
+firebomb/MDSJG
+firebox/MS
+firebrand/SM
+firebreak/SM
+firebrick/SM
+firebug/SM
+firecracker/SM
+firedamp/M
+firefight/MRSZG
+firefighter/M
+firefighting/M
+firefly/SM
+fireguard/S
+firehouse/SM
+firelight/ZMR
+fireman/M
+firemen
+fireplace/SM
+fireplug/MS
+firepower/M
+fireproof/DSG
+firer/M
+firescreen/S
+fireside/MS
+firestorm/MS
+firetrap/MS
+firetruck/MS
+firewall/MS
+firewater/M
+firewood/M
+firework/SM
+firm/MDRYPTGS
+firmament/SM
+firmness/M
+firmware/M
+first/SMY
+firstborn/SM
+firsthand
+firth/M
+firths
+fiscal/MYS
+fish/MDRSZG
+fishbowl/SM
+fishcake/SM
+fisher/M
+fisherman/M
+fishermen
+fishery/SM
+fishhook/SM
+fishily
+fishiness/M
+fishing/M
+fishmonger/MS
+fishnet/SM
+fishpond/MS
+fishtail/DGS
+fishwife/M
+fishwives
+fishy/TRP
+fissile
+fission/BM
+fissure/SM
+fist/MS
+fistfight/MS
+fistful/SM
+fisticuffs/M
+fistula/SM
+fistulous/M
+fit/KAMS
+fitful/YP
+fitfulness/M
+fitly
+fitment/S
+fitness/UM
+fitted/UA
+fitter/MS
+fittest
+fitting/SMY
+five/MZRS
+fix/ZGBJMDRS
+fixate/GNVDSX
+fixation/M
+fixative/MS
+fixed/Y
+fixer/M
+fixings/M
+fixity/M
+fixture/MS
+fizz/MDSG
+fizzle/DSMG
+fizzy/RT
+fjord/SM
+fl/JDG
+flab/M
+flabbergast/SGD
+flabbily
+flabbiness/M
+flabby/RPT
+flaccid/Y
+flaccidity/M
+flack/SM
+flag/MS
+flagella
+flagellant/S
+flagellate/GNDS
+flagellation/M
+flagellum/M
+flagged
+flagging/U
+flagman/M
+flagmen
+flagon/MS
+flagpole/SM
+flagrance/M
+flagrancy/M
+flagrant/Y
+flagship/SM
+flagstaff/MS
+flagstone/MS
+flail/SGMD
+flair/SM
+flak/M
+flake/DSMG
+flakiness/M
+flaky/TRP
+flamage
+flambe/MS
+flambeed
+flambeing
+flamboyance/M
+flamboyancy/M
+flamboyant/Y
+flame/DRSJMZG
+flamenco/MS
+flameproof/DGS
+flamethrower/SM
+flamingo/MS
+flammability/IM
+flammable/SM
+flan/MS
+flange/MS
+flank/SZGMDR
+flanker/M
+flannel/SM
+flannelette/M
+flannelled
+flannelling
+flap/MS
+flapjack/MS
+flapped
+flapper/SM
+flapping
+flare/DSMG
+flareup/SM
+flash/ZTGMDRS
+flashback/SM
+flashbulb/SM
+flashcard/SM
+flashcube/SM
+flasher/M
+flashgun/SM
+flashily
+flashiness/M
+flashing/M
+flashlight/MS
+flashy/RTP
+flask/SM
+flat/MYPS
+flatbed/SM
+flatboat/SM
+flatbread
+flatcar/SM
+flatfeet
+flatfish/MS
+flatfoot/SMD
+flatiron/SM
+flatland/M
+flatlet/S
+flatmate/S
+flatness/M
+flatted
+flatten/SDG
+flatter/SDRZG
+flatterer/M
+flattering/Y
+flattery/M
+flattest
+flatting
+flattish
+flattop/SM
+flatulence/M
+flatulent
+flatus/M
+flatware/M
+flatworm/SM
+flaunt/MDSG
+flaunting/Y
+flautist/SM
+flavour/SMDJG
+flavoured/U
+flavourful
+flavouring/M
+flavourless
+flavoursome
+flaw/MDGS
+flawless/PY
+flawlessness/M
+flax/MN
+flay/DGS
+flea/MS
+fleabag/SM
+fleabite/S
+fleapit/S
+fleck/SGMD
+fledged/U
+fledgling/MS
+flee/S
+fleece/MZGDRS
+fleecer/M
+fleeciness/M
+fleecy/RTP
+fleeing
+fleet/STGMDRYP
+fleetingly/M
+fleetingness/M
+fleetness/M
+flesh/GMDSY
+fleshly/TR
+fleshpot/MS
+fleshy/RT
+flew
+flex/AMS
+flexed
+flexibility/IM
+flexible/I
+flexibly/I
+flexing
+flexion
+flextime/M
+flibbertigibbet/SM
+flick/SZGMDR
+flicker/GMD
+flight/MS
+flightiness/M
+flightless
+flighty/PTR
+flimflam/SM
+flimflammed
+flimflamming
+flimsily
+flimsiness/M
+flimsy/TRP
+flinch/GMDS
+fling/GM
+flint/SM
+flintlock/SM
+flinty/TR
+flip/MS
+flippancy/M
+flippant/Y
+flipped
+flipper/MS
+flippest
+flipping
+flippy/S
+flirt/SGMD
+flirtation/MS
+flirtatious/YP
+flirtatiousness/M
+flirty
+flit/MS
+flitted
+flitting
+float/SMDRZG
+floater/M
+flock/SMDG
+flocking/M
+floe/MS
+flog/S
+flogged
+flogger/SM
+flogging/MS
+flood/SMDRG
+floodgate/MS
+floodlight/MDSG
+floodlit
+floodplain/MS
+floodwater/MS
+floor/SMDG
+floorboard/MS
+flooring/M
+floorwalker/SM
+floozy/SM
+flop/MS
+flophouse/MS
+flopped
+floppily
+floppiness/M
+flopping
+floppy/PRSMT
+flora/SM
+floral
+florescence/IM
+florescent/I
+floret/SM
+florid/PY
+floridness/M
+florin/SM
+florist/SM
+floss/MDSG
+flossy/RT
+flotation/SM
+flotilla/MS
+flotsam/M
+flounce/DSMG
+flouncy
+flounder/MDSG
+flour/SMDG
+flourish/GMDS
+floury
+flout/SMDRZG
+flouter/M
+flow/MDGS
+flowchart/SM
+flower's
+flower/CSDG
+flowerbed/MS
+floweriness/M
+flowering/S
+flowerless
+flowerpot/MS
+flowery/PTR
+flown
+flt
+flu/M
+flub/MS
+flubbed
+flubbing
+fluctuate/GNDSX
+fluctuation/M
+flue/MS
+fluency/M
+fluent/Y
+fluff/SMDG
+fluffiness/M
+fluffy/RPT
+fluid/SMY
+fluidity/M
+fluke/SM
+fluky/RT
+flume/SM
+flummox/DSG
+flung
+flunk/SMDG
+flunky/SM
+fluoresce/DSG
+fluorescence/M
+fluorescent
+fluoridate/GNDS
+fluoridation/M
+fluoride/SM
+fluorine/M
+fluorite/M
+fluorocarbon/MS
+fluoroscope/SM
+fluoroscopic
+fluoxetine
+flurry/GDSM
+flush/MDRSTG
+fluster/MDSG
+flute/DSMG
+fluting/M
+flutter/MDSG
+fluttery
+fluvial
+flux/IMS
+fluxed
+fluxing
+fly/TGBDSM
+flyaway
+flyblown
+flyby/M
+flybys
+flycatcher/MS
+flyer/SM
+flying/M
+flyleaf/M
+flyleaves
+flyover/MS
+flypaper/SM
+flypast/S
+flysheet/S
+flyspeck/GMDS
+flyswatter/MS
+flytrap/S
+flyway/SM
+flyweight/SM
+flywheel/MS
+foal/MDGS
+foam/MDGS
+foaminess/M
+foamy/RTP
+fob/SM
+fobbed
+fobbing
+focal/Y
+focus's
+focus/ADSG
+focused/U
+fodder/SM
+foe/SM
+fog's
+fog/CS
+fogbound
+fogey/SM
+fogged/C
+foggily
+fogginess/M
+fogging/C
+foggy/RTP
+foghorn/MS
+fogyish
+foible/SM
+foil/MDGS
+foist/SDG
+fol
+fold's
+fold/AUSGD
+foldaway
+folder/SM
+foldout/MS
+foliage/M
+folic
+folio/SM
+folk/MS
+folklore/M
+folkloric
+folklorist/MS
+folksiness/M
+folksinger/SM
+folksinging/M
+folksy/PTR
+folktale/MS
+folkway/MS
+foll
+follicle/MS
+follow/SDRZGJ
+follower/M
+following/M
+followup/S
+folly/SM
+foment/SGD
+fomentation/M
+fond/RYTP
+fondant/MS
+fondle/DSG
+fondness/M
+fondue/SM
+font/MS
+fontanelle/MS
+foo
+foobar
+food/MS
+foodie/SM
+foodstuff/SM
+fool/MDGS
+foolery/SM
+foolhardily
+foolhardiness/M
+foolhardy/TPR
+foolish/YP
+foolishness/M
+foolproof
+foolscap/M
+foot/MDRZGSJ
+footage/M
+football/MRZGS
+footballer/M
+footbridge/SM
+footfall/MS
+foothill/MS
+foothold/MS
+footie
+footing/M
+footless
+footlights/M
+footling/MS
+footlocker/SM
+footloose
+footman/M
+footmen
+footnote/MGDS
+footpath/M
+footpaths
+footplate/S
+footprint/SM
+footrace/MS
+footrest/MS
+footsie/SM
+footslogging
+footsore
+footstep/MS
+footstool/SM
+footwear/M
+footwork/M
+footy
+fop/SM
+foppery/M
+foppish/P
+foppishness/M
+for/H
+fora
+forage/DRSMZG
+forager/M
+foray/SMDG
+forbade
+forbear/SMG
+forbearance/M
+forbid/S
+forbidden
+forbidding/YS
+forbore
+forborne
+force/DSMG
+forced/U
+forceful/PY
+forcefulness/M
+forceps/M
+forcible
+forcibly
+ford/MDGSB
+fore/MS
+forearm/GSMD
+forebear/MS
+forebode/GJDS
+foreboding/M
+forecast/MRZGS
+forecaster/M
+forecastle/MS
+foreclose/DSG
+foreclosure/MS
+forecourt/SM
+foredoom/DGS
+forefather/MS
+forefeet
+forefinger/SM
+forefoot/M
+forefront/SM
+foregather/GDS
+forego/G
+foregoes
+foregone
+foreground/GMDS
+forehand/MS
+forehead/MS
+foreign/ZRP
+foreigner/M
+foreignness/M
+foreknew
+foreknow/GS
+foreknowledge/M
+foreknown
+foreleg/SM
+forelimb/MS
+forelock/MS
+foreman/M
+foremast/MS
+foremen
+foremost
+forename/MDS
+forenoon/MS
+forensic/MS
+forensically
+forensics/M
+foreordain/GSD
+forepart/MS
+foreperson/SM
+foreplay/M
+forequarter/MS
+forerunner/MS
+foresail/MS
+foresaw
+foresee/RSBZ
+foreseeable/U
+foreseeing
+foreseen/U
+foreseer/M
+foreshadow/GDS
+foreshore/S
+foreshorten/DSG
+foresight/MD
+foresightedness/M
+foreskin/MS
+forest's
+forest/ACGDS
+forestall/SGD
+forestation/ACM
+forester/MS
+forestland/M
+forestry/M
+foretaste/DSMG
+foretell/GS
+forethought/M
+foretold
+forever/M
+forevermore
+forewarn/DSG
+forewent
+forewoman/M
+forewomen
+foreword/MS
+forfeit/GSMD
+forfeiture/SM
+forgave
+forge/DRSMZGVJ
+forger/M
+forgery/SM
+forget/S
+forgetful/YP
+forgetfulness/M
+forgettable/U
+forgetting
+forging/M
+forgivable/U
+forgive/BRSZGP
+forgiven
+forgiveness/M
+forgiver/M
+forgiving/U
+forgo/RZG
+forgoer/M
+forgoes
+forgone
+forgot
+forgotten/U
+fork/MDGS
+forkful/SM
+forklift/MS
+forlorn/Y
+form's
+form/CAIFDGS
+formal/SMY
+formaldehyde/M
+formalin
+formalisation/M
+formalise/GDS
+formalism/M
+formalist/MS
+formalities
+formality/IM
+format/SMV
+formation/CFASM
+formatted/A
+formatting/M
+formed/U
+former/FIAM
+formerly
+formfitting
+formic
+formidable
+formidably
+formless/PY
+formlessness/M
+formula/MS
+formulae
+formulaic
+formulate/ADSGNX
+formulated/U
+formulation/AM
+formulator/SM
+fornicate/GNDS
+fornication/M
+fornicator/MS
+forsake/GS
+forsaken
+forsook
+forsooth
+forswear/SG
+forswore
+forsworn
+forsythia/SM
+fort/MS
+forte/SM
+forthcoming/M
+forthright/YP
+forthrightness/M
+forthwith
+fortieth/M
+fortieths
+fortification/M
+fortified/U
+fortifier/M
+fortify/DRSNZGX
+fortissimo
+fortitude/M
+fortnight/MYS
+fortress/MS
+fortuitous/YP
+fortuitousness/M
+fortuity/M
+fortunate/UY
+fortune/MS
+fortuneteller/SM
+fortunetelling/M
+forty/SMH
+forum/SM
+forward/MDRYZTGSP
+forwarder/M
+forwardness/M
+forwent
+fossa
+fossick/DRSZG
+fossicker/M
+fossil/SM
+fossilisation/M
+fossilise/GDS
+foster/GSD
+fought
+foul/MDRYTGSP
+foulard/M
+foulmouthed
+foulness/M
+found/FSDG
+foundation/SM
+foundational
+founded/U
+founder/GMDS
+foundling/SM
+foundry/SM
+fount/SM
+fountain/SM
+fountainhead/MS
+four/MHS
+fourfold
+fourposter/SM
+fourscore/M
+foursome/SM
+foursquare
+fourteen/SMH
+fourteenth/M
+fourteenths
+fourth/MY
+fourths
+fowl/MDGS
+fox/GMDS
+foxfire/M
+foxglove/SM
+foxhole/MS
+foxhound/SM
+foxhunt/GS
+foxily
+foxiness/M
+foxtrot/MS
+foxtrotted
+foxtrotting
+foxy/RTP
+foyer/SM
+fps
+fr
+fracas/MS
+frack/SDG
+fractal/SM
+fraction/ISM
+fractional/Y
+fractious/YP
+fractiousness/M
+fracture/MGDS
+frag/S
+fragile/RT
+fragility/M
+fragment/GMDS
+fragmentary/M
+fragmentation/M
+fragrance/MS
+fragrant/Y
+frail/RYTP
+frailness/M
+frailty/SM
+frame/DRSMZG
+framed/U
+framer/M
+framework/SM
+franc/SM
+franchise's
+franchise/EDSG
+franchisee/SM
+franchiser/SM
+francium/M
+francophone
+frangibility/M
+frangible
+frank/SMDRYTGP
+frankfurter/MS
+frankincense/M
+frankness/M
+frantic
+frantically
+frappe/SM
+frat/MS
+fraternal/Y
+fraternisation/M
+fraternise/ZGDRS
+fraterniser/M
+fraternity/FSM
+fratricidal
+fratricide/MS
+fraud's
+fraud/S
+fraudster/S
+fraudulence/M
+fraudulent/Y
+fraught
+fray's
+fray/CDGS
+frazzle/MGDS
+freak/SMDG
+freakish/YP
+freakishness/M
+freaky/RT
+freckle/DSMG
+freckly
+free/YTDRS
+freebase/MGDS
+freebie/SM
+freebooter/SM
+freeborn
+freedman/M
+freedmen
+freedom/SM
+freehand
+freehold/ZMRS
+freeholder/M
+freeing
+freelance/DRSMZG
+freelancer/M
+freeload/SDRZG
+freeloader/M
+freeman/M
+freemasonry
+freemen
+freephone
+freesia/S
+freestanding
+freestone/SM
+freestyle/SM
+freethinker/SM
+freethinking/M
+freeware/M
+freeway/MS
+freewheel/DGS
+freewill
+freezable
+freeze's
+freeze/UAGS
+freezer/MS
+freezing's
+freight/MDRZGS
+freighter/M
+french
+frenemy/S
+frenetic
+frenetically
+frenzied/Y
+frenzy/DSM
+freq
+frequencies
+frequency/IM
+frequent/DRYSZTG
+frequented/U
+frequenter/M
+fresco/M
+frescoes
+fresh/PNRYXZT
+freshen/ZGDR
+freshener/M
+freshet/MS
+freshman/M
+freshmen
+freshness/M
+freshwater/M
+fret/MS
+fretful/YP
+fretfulness/M
+fretsaw/MS
+fretted
+fretting
+fretwork/M
+friable
+friar/SM
+friary/SM
+fricassee/DSM
+fricasseeing
+fricative/SM
+friction/SM
+frictional
+fridge/SM
+friedcake/MS
+friend's
+friend/UGSDY
+friendless
+friendlies
+friendliness/UM
+friendly's
+friendly/UPTR
+friendship/MS
+frieze/SM
+frig/S
+frigate/MS
+frigged
+frigging
+fright/SXGMDN
+frighten/DG
+frightening/Y
+frightful/PY
+frightfulness/M
+frigid/YP
+frigidity/M
+frigidness/M
+frill/SMD
+frilly/TR
+fringe's
+fringe/IDSG
+frippery/SM
+frisk/SDG
+friskily
+friskiness/M
+frisky/TRP
+frisson/S
+fritter/MDSG
+fritz/M
+frivolity/SM
+frivolous/PY
+frivolousness/M
+frizz/MDSYG
+frizzle/MGDS
+frizzy/TR
+fro
+frock's
+frock/CUS
+frog/MS
+frogging/S
+frogman/M
+frogmarch/GDS
+frogmen
+frogspawn
+frolic/SM
+frolicked
+frolicker/SM
+frolicking
+frolicsome
+from
+frond/SM
+front's
+front/FSDG
+frontage/MS
+frontal/Y
+frontbench/ZRS
+frontier/MS
+frontiersman/M
+frontiersmen
+frontierswoman
+frontierswomen
+frontispiece/MS
+frontward/S
+frosh/M
+frost's
+frost/CSDG
+frostbit
+frostbite/MGS
+frostbitten
+frostily
+frostiness/M
+frosting/SM
+frosty/TPR
+froth/MDG
+frothiness/M
+froths
+frothy/TPR
+froufrou/M
+frown/SMDG
+frowzily
+frowziness/M
+frowzy/TPR
+froze/AU
+frozen/UA
+fructify/DSG
+fructose/M
+frugal/Y
+frugality/M
+fruit/SMDG
+fruitcake/MS
+fruiterer/S
+fruitful/YP
+fruitfulness/M
+fruitiness/M
+fruition/M
+fruitless/PY
+fruitlessness/M
+fruity/TPR
+frump/SM
+frumpish
+frumpy/TR
+frustrate/GNXDS
+frustrating/Y
+frustration/M
+frustum/MS
+fry/GDSM
+fryer/SM
+ft
+ftp/ZGS
+fuchsia/MS
+fuck/SMGDRZ!
+fucker/M!
+fuckhead/S!
+fuddle/DSMG
+fudge/DSMG
+fuehrer/MS
+fuel's
+fuel/AS
+fuelled/A
+fuelling/A
+fug
+fugal
+fuggy
+fugitive/MS
+fugue/SM
+fuhrer/SM
+fulcrum/MS
+fulfil/SL
+fulfilled/U
+fulfilling/U
+fulfilment/M
+full/MDRZTGSP
+fullback/MS
+fuller/M
+fullness/M
+fully
+fulminate/DSXGN
+fulmination/M
+fulsome/PY
+fulsomeness/M
+fum/S
+fumble/DRSMZG
+fumbler/M
+fumbling/Y
+fume/MGDS
+fumigant/MS
+fumigate/GNDS
+fumigation/M
+fumigator/SM
+fumy/RT
+fun/M
+function/MDGS
+functional/Y
+functionalism
+functionalist/S
+functionality/S
+functionary/SM
+functor
+fund/AMDGS
+fundamental/SMY
+fundamentalism/M
+fundamentalist/SM
+funded/U
+funding/M
+fundraiser/MS
+fundraising
+funeral/MS
+funerary
+funereal/Y
+funfair/S
+fungal
+fungi
+fungible/MS
+fungicidal
+fungicide/MS
+fungoid
+fungous
+fungus/M
+funicular/SM
+funk/MDGS
+funkiness/M
+funky/PRT
+funnel/MS
+funnelled
+funnelling
+funner
+funnest
+funnily
+funniness/M
+funny/TPRSM
+funnyman/M
+funnymen
+fur/SM
+furbelow/M
+furbish/ADSG
+furious/Y
+furl's
+furl/UDGS
+furlong/SM
+furlough/GMD
+furloughs
+furn
+furnace/SM
+furnish/ADSG
+furnished/U
+furnishings/M
+furniture/M
+furore/MS
+furosemide
+furphy/SM
+furred
+furrier/M
+furriness/M
+furring/M
+furrow/MDSG
+furry/ZTRP
+further/SGD
+furtherance/M
+furthermore
+furthermost
+furthest
+furtive/YP
+furtiveness/M
+fury/SM
+furze/M
+fuse's/A
+fuse/CAIFGDS
+fusee/SM
+fuselage/SM
+fusibility/M
+fusible
+fusilier/SM
+fusillade/MS
+fusion/IFKSM
+fuss/MDSG
+fussbudget/MS
+fussily
+fussiness/M
+fusspot/SM
+fussy/TRP
+fustian/M
+fustiness/M
+fusty/TRP
+fut
+futile/Y
+futility/M
+futon/SM
+future/MS
+futurism/M
+futurist/MS
+futuristic
+futurity/SM
+futurologist/MS
+futurology/M
+futz/DSG
+fuzz/MDSG
+fuzzball/S
+fuzzily
+fuzziness/M
+fuzzy/PTR
+fwd
+fwy
+g'day
+g/SNXVB
+gab/SM
+gabardine/SM
+gabbed
+gabbiness/M
+gabbing
+gabble/DSMG
+gabby/RTP
+gaberdine/SM
+gabfest/MS
+gable/DSM
+gad/S
+gadabout/SM
+gadded
+gadder/SM
+gadding
+gadfly/SM
+gadget/SM
+gadgetry/M
+gadolinium/M
+gaff/MDRZGS
+gaffe/SM
+gaffer/M
+gag/SM
+gaga
+gagged
+gagging
+gaggle/SM
+gaiety/M
+gaily
+gain's
+gain/ADGS
+gainer/SM
+gainful/Y
+gainsaid
+gainsay/ZGRS
+gainsayer/M
+gait/MRZS
+gaiter/M
+gal/SM
+gala/MS
+galactic
+galah/M
+galahs
+galaxy/SM
+gale's
+gale/AS
+galena/M
+gall/MDGS
+gallant/SMY
+gallantry/M
+gallbladder/MS
+galleon/SM
+galleria/MS
+gallery/SM
+galley/SM
+gallimaufry/SM
+gallium/M
+gallivant/GSD
+gallon/SM
+gallop/SMDG
+gallows/M
+gallstone/MS
+galoot/SM
+galore
+galosh/MS
+galumph/DG
+galumphs
+galvanic
+galvanisation/M
+galvanise/DSG
+galvanism/M
+galvanometer/MS
+gambit/SM
+gamble/DRSMZG
+gambler/M
+gambling/M
+gambol/SM
+gambolled
+gambolling
+game/MYTGDRSP
+gamecock/MS
+gamekeeper/MS
+gameness/M
+gamesmanship/M
+gamester/MS
+gamete/SM
+gametic
+gamin/SM
+gamine/SM
+gaminess/M
+gaming/M
+gamma/SM
+gammon/M
+gammy
+gamut/SM
+gamy/RTP
+gander/SM
+gang/MDGS
+gangbusters/M
+gangland/M
+ganglia
+gangling
+ganglion/M
+ganglionic
+gangplank/SM
+gangrene/DSMG
+gangrenous
+gangsta/S
+gangster/SM
+gangway/MS
+ganja
+gannet/SM
+gantlet/MS
+gantry/SM
+gap/GSMD
+gape/MS
+gar/SLM
+garage/DSMG
+garb/MDGS
+garbage/M
+garbageman
+garbanzo/SM
+garble/DSG
+garbo/SM
+garcon/SM
+garden/SZGMDR
+gardener/M
+gardenia/MS
+gardening/M
+garfish/MS
+gargantuan
+gargle/DSMG
+gargoyle/SM
+garish/PY
+garishness/M
+garland/MDGS
+garlic/M
+garlicky
+garment/MS
+garner/SGD
+garnet/SM
+garnish/GLMDS
+garnishee/DSM
+garnisheeing
+garnishment/SM
+garret/SM
+garrison/MDSG
+garrote/MZGDRS
+garroter/M
+garrulity/M
+garrulous/PY
+garrulousness/M
+garter/SM
+gas's
+gas/CS
+gasbag/SM
+gaseous
+gash/MDSG
+gasholder/S
+gasket/SM
+gaslight/MS
+gasman
+gasmen
+gasohol/M
+gasoline/M
+gasometer/S
+gasp/MDGS
+gassed/C
+gasses
+gassing/C
+gassy/RT
+gastric
+gastritis/M
+gastroenteritis/M
+gastrointestinal
+gastronome/S
+gastronomic
+gastronomical/Y
+gastronomy/M
+gastropod/SM
+gasworks/M
+gate/MGDS
+gateau
+gateaux
+gatecrash/DRSZG
+gatecrasher/M
+gatehouse/SM
+gatekeeper/MS
+gatepost/MS
+gateway/MS
+gather/SJZGMDR
+gatherer/M
+gathering/M
+gator/SM
+gauche/RPYT
+gaucheness/M
+gaucherie/M
+gaucho/SM
+gaudily
+gaudiness/M
+gaudy/RPT
+gauge/DSMG
+gaunt/RPT
+gauntlet/MS
+gauntness/M
+gauze/M
+gauziness/M
+gauzy/RPT
+gave
+gavel/SM
+gavotte/MS
+gawd
+gawk/DGS
+gawkily
+gawkiness/M
+gawky/RPT
+gawp/DGS
+gay/TSPMR
+gayness/M
+gaze/MZGDRS
+gazebo/SM
+gazelle/MS
+gazer/M
+gazette/MGDS
+gazetteer/MS
+gazillion/S
+gazpacho/M
+gazump/DGS
+gear/MDGS
+gearbox/MS
+gearing/M
+gearshift/MS
+gearwheel/SM
+gecko/SM
+geddit
+gee/DS
+geeing
+geek/MS
+geeky/RT
+geese
+geezer/MS
+geisha/M
+gel/SM
+gelatin/M
+gelatinous
+gelcap/M
+geld/DJGS
+gelding/M
+gelid
+gelignite/M
+gelled
+gelling
+gem/SM
+gemmology/M
+gemological
+gemologist/MS
+gemstone/MS
+gendarme/MS
+gender/MDS
+gene/MS
+genealogical/Y
+genealogist/MS
+genealogy/SM
+genera
+general/SMY
+generalisation/MS
+generalise/GDS
+generalissimo/MS
+generalist/MS
+generality/SM
+generalship/M
+generate/CAVNGSD
+generation/ACM
+generational
+generations
+generator/SM
+generic/SM
+generically
+generosity/SM
+generous/PY
+generousness/M
+genes/S
+genesis/M
+genetic/S
+genetically
+geneticist/MS
+genetics/M
+genial/FY
+geniality/FM
+geniculate
+genie/SM
+genii
+genital/FY
+genitalia/M
+genitals/M
+genitive/MS
+genitourinary
+genius/MS
+genned
+genning
+genocidal
+genocide/MS
+genome/MS
+genomics
+genre/SM
+gent/AMS
+genteel/YP
+genteelness/M
+gentian/SM
+gentile/SM
+gentility/M
+gentle/TGDRSP
+gentlefolk/MS
+gentlefolks/M
+gentleman/MY
+gentlemanly/U
+gentlemen
+gentleness/M
+gentlewoman/M
+gentlewomen
+gently
+gentrification/M
+gentrify/DSGN
+gentry/SM
+genuflect/DGS
+genuflection/MS
+genuine/PY
+genuineness/M
+genus/M
+geocache/DSG
+geocentric
+geocentrically
+geochemistry/M
+geode/SM
+geodesic/SM
+geodesy/M
+geodetic
+geoengineering
+geog
+geographer/SM
+geographic
+geographical/Y
+geography/SM
+geologic
+geological/Y
+geologist/MS
+geology/SM
+geom
+geomagnetic
+geomagnetism/M
+geometer
+geometric
+geometrical/Y
+geometry/SM
+geophysical
+geophysicist/SM
+geophysics/M
+geopolitical
+geopolitics/M
+geostationary
+geosynchronous
+geosyncline/MS
+geothermal
+geothermic
+geranium/MS
+gerbil/MS
+geriatric/S
+geriatrician/S
+geriatrics/M
+germ/MS
+germane
+germanium/M
+germicidal
+germicide/MS
+germinal/M
+germinate/GNDS
+germination/M
+gerontological
+gerontologist/MS
+gerontology/M
+gerrymander/GMDS
+gerrymandering/M
+gerund/MS
+gestalt/S
+gestapo/MS
+gestate/GNDS
+gestation/M
+gestational
+gesticulate/DSGNX
+gesticulation/M
+gestural
+gesture/MGDS
+gesundheit
+get/S
+getaway/SM
+getting
+getup/M
+gewgaw/SM
+geyser/SM
+ghastliness/M
+ghastly/TPR
+ghat/MS
+ghee
+gherkin/MS
+ghetto/SM
+ghettoise/GDS
+ghost/SMDYG
+ghostliness/M
+ghostly/RTP
+ghostwrite/ZGRS
+ghostwriter/M
+ghostwritten
+ghostwrote
+ghoul/SM
+ghoulish/YP
+ghoulishness/M
+giant/SM
+giantess/MS
+gibber/GDS
+gibberish/M
+gibbet/GMDS
+gibbon/MS
+gibbous
+giblet/SM
+giddily
+giddiness/M
+giddy/RTP
+gift/MDGS
+gig/SM
+gigabit/SM
+gigabyte/MS
+gigagram/S
+gigahertz/M
+gigajoule/S
+gigametre/S
+gigantic
+gigantically
+gigapascal/S
+gigapixel/MS
+gigawatt/SM
+gigged
+gigging
+giggle/DRSMZG
+giggler/M
+giggly/RT
+gigolo/SM
+gild/MDRZGS
+gilder/M
+gilding/M
+gill/MS
+gillie/S
+gillion/S
+gilt/MS
+gimbals/M
+gimcrack/SM
+gimcrackery/M
+gimlet/GSMD
+gimme/SM
+gimmick/MS
+gimmickry/M
+gimmicky
+gimp/MDGS
+gimpy
+gin/SM
+ginger/GSMDY
+gingerbread/M
+gingersnap/SM
+gingery
+gingham/M
+gingivitis/M
+ginkgo/M
+ginkgoes
+ginned
+ginning
+ginormous
+ginseng/M
+giraffe/MS
+gird/DRZGS
+girder/M
+girdle/DSMG
+girl/MS
+girlfriend/MS
+girlhood/SM
+girlish/YP
+girlishness/M
+girly
+giro/S
+girt/MDGS
+girth/M
+girths
+gist/M
+git/S
+gite/S
+give/ZGJRS
+giveaway/MS
+giveback/MS
+given/SM
+giver/M
+gizmo/SM
+gizzard/MS
+glace/S
+glaceed
+glaceing
+glacial/Y
+glaciate/XGNDS
+glaciation/M
+glacier/MS
+glad/MYSP
+gladden/GDS
+gladder
+gladdest
+glade/SM
+gladiator/SM
+gladiatorial
+gladiola/SM
+gladioli
+gladiolus/M
+gladness/M
+gladsome
+glam
+glamorisation/M
+glamorise/DSG
+glamorous/Y
+glamour/GMDS
+glance/DSMG
+gland/SM
+glandes
+glandular
+glans/M
+glare/DSMG
+glaring/Y
+glasnost/M
+glass/MDSG
+glassblower/MS
+glassblowing/M
+glassful/SM
+glasshouse/S
+glassily
+glassiness/M
+glassware/M
+glassy/RTP
+glaucoma/M
+glaze/DSMG
+glazier/SM
+glazing/M
+gleam/SMDGJ
+glean/SDRZGJ
+gleaner/M
+gleanings/M
+glee/M
+gleeful/YP
+gleefulness/M
+glen/MS
+glenohumeral
+glenoid
+glib/YP
+glibber
+glibbest
+glibness/M
+glide/DRSMZG
+glider/M
+gliding/M
+glimmer/MDGJS
+glimmering/M
+glimpse/MGDS
+glint/SMDG
+glissandi
+glissando/M
+glisten/MDSG
+glister/DSG
+glitch/GMDS
+glitter/MDSG
+glitterati
+glittery
+glitz/M
+glitzy/TR
+gloaming/SM
+gloat/SMDG
+gloating/Y
+glob/MDGS
+global/Y
+globalisation/M
+globalise/GDS
+globalism/M
+globalist/MS
+globe/SM
+globetrotter/MS
+globetrotting
+globular
+globule/MS
+globulin/M
+glockenspiel/SM
+gloom/M
+gloomily
+gloominess/M
+gloomy/TRP
+glop/M
+gloppy
+glorification/M
+glorify/GDSN
+glorious/IY
+glory/DSMG
+gloss/MDSG
+glossary/SM
+glossily
+glossiness/M
+glossolalia/M
+glossy/PTRSM
+glottal
+glottis/MS
+glove/DSMG
+glow/MDRZGS
+glower/GMD
+glowing/Y
+glowworm/MS
+glucagon
+glucose/M
+glue/MGDS
+glued/U
+gluey
+gluier
+gluiest
+glum/YP
+glummer
+glummest
+glumness/M
+gluon/S
+glut/MNS
+gluten/M
+glutenous
+glutinous/Y
+glutted
+glutting
+glutton/MS
+gluttonous/Y
+gluttony/M
+glycerine/M
+glycerol/M
+glycogen/M
+glycol
+glyph
+gm
+gnarl/SMDG
+gnarly/TR
+gnash/MDSG
+gnat/MS
+gnaw/DGS
+gneiss/M
+gnocchi
+gnome/SM
+gnomic
+gnomish
+gnu/SM
+go/JMRHZG
+goad/MDGS
+goal/MS
+goalie/SM
+goalkeeper/MS
+goalkeeping/M
+goalless
+goalmouth
+goalmouths
+goalpost/MS
+goalscorer/S
+goaltender/MS
+goat/MS
+goatee/SM
+goatherd/MS
+goatskin/MS
+gob/SM
+gobbed
+gobbet/SM
+gobbing
+gobble/DRSMZG
+gobbledegook/M
+gobbler/M
+goblet/SM
+goblin/SM
+gobsmacked
+gobstopper/S
+god/SM
+godawful
+godchild/M
+godchildren/M
+goddammit
+goddamn/D
+goddaughter/MS
+goddess/MS
+godfather/SM
+godforsaken
+godhead/M
+godhood/M
+godless/PY
+godlessness/M
+godlike
+godliness/UM
+godly/URTP
+godmother/SM
+godparent/SM
+godsend/SM
+godson/SM
+godspeed
+goer/M
+goes
+gofer/SM
+goggle/DSMG
+goggles/M
+going/M
+goitre/SM
+gold/MNS
+goldbrick/ZGSMDR
+goldbricker/M
+golden/TR
+goldenrod/M
+goldfield/S
+goldfinch/MS
+goldfish/MS
+goldmine/SM
+goldsmith/M
+goldsmiths
+golf/MDRZGS
+golfer/M
+golliwog/S
+golly/SM
+gonad/SM
+gonadal
+gondola/MS
+gondolier/SM
+gone/ZR
+goner/M
+gong/MDGS
+gonk/S
+gonna
+gonorrhoea/M
+gonorrhoeal
+gonzo
+goo/M
+goober/SM
+good/MYSP
+goodbye/MS
+goodhearted
+goodish
+goodly/TR
+goodness/M
+goodnight
+goodo
+goods/M
+goodwill/M
+goody/SM
+gooey
+goof/MDGS
+goofball/SM
+goofiness/M
+goofy/RPT
+google/DSMG
+googly/S
+gooier
+gooiest
+gook/MS
+goon/MS
+goop/M
+goose/DSMG
+gooseberry/SM
+goosebumps/M
+goosestep/S
+goosestepped
+goosestepping
+gopher/SM
+gore/MGDS
+gorge's
+gorge/EDSG
+gorgeous/YP
+gorgeousness/M
+gorgon/SM
+gorilla/MS
+gorily
+goriness/M
+gormandise/DRSZG
+gormandiser/M
+gormless
+gorp/MS
+gorse/M
+gory/RTP
+gosh
+goshawk/MS
+gosling/SM
+gospel/MS
+gossamer/M
+gossip/MDRZGS
+gossiper/M
+gossipy
+got
+gotcha/S
+goths
+gotta
+gotten
+gouache/S
+gouge/DRSMZG
+gouger/M
+goulash/MS
+gourd/SM
+gourde/MS
+gourmand/SM
+gourmet/SM
+gout/M
+gouty/TR
+gov
+govern/DGSBL
+governable/U
+governance/M
+governed/U
+governess/MS
+government/MS
+governmental
+governor/SM
+governorship/M
+govt
+gown/MDGS
+gr
+grab/MS
+grabbed
+grabber/MS
+grabbing
+grabby/TR
+grace/EDSMG
+graceful/EPY
+gracefulness/EM
+graceless/PY
+gracelessness/M
+gracious/UY
+graciousness/M
+grackle/MS
+grad/MRZSB
+gradate/XGNDS
+gradation/CM
+grade's
+grade/CADSG
+graded/U
+grader/M
+gradient/MS
+gradual/PY
+gradualism/M
+gradualness/M
+graduate/XMGNDS
+graduation/M
+graffiti
+graffito/M
+graft/SMDRZG
+grafter/M
+graham/S
+grail
+grain/ISMD
+graininess/M
+grainy/PTR
+gram/KMS
+grammar/MS
+grammarian/SM
+grammatical/UY
+gramophone/MS
+grampus/MS
+gran/S
+granary/SM
+grand/SMRYPT
+grandam/MS
+grandaunt/MS
+grandchild/M
+grandchildren/M
+granddad/SM
+granddaddy/SM
+granddaughter/SM
+grandee/MS
+grandeur/M
+grandfather/GMDYS
+grandiloquence/M
+grandiloquent
+grandiose/Y
+grandiosity/M
+grandma/MS
+grandmother/MYS
+grandnephew/MS
+grandness/M
+grandniece/MS
+grandpa/MS
+grandparent/MS
+grandson/MS
+grandstand/SGMD
+granduncle/SM
+grange/SM
+granite/M
+granitic
+granny/SM
+granola/M
+grant/SMDRZG
+grantee/MS
+granter/M
+grantsmanship/M
+granular
+granularity/M
+granulate/GNDS
+granulation/M
+granule/MS
+grape/SM
+grapefruit/MS
+grapeshot/M
+grapevine/SM
+graph/MDG
+graphic/MS
+graphical/Y
+graphite/M
+graphologist/MS
+graphology/M
+graphs
+grapnel/MS
+grapple/MGDS
+grasp/SMDBG
+grass/MDSG
+grasshopper/MS
+grassland/MS
+grassroots
+grassy/TR
+grate/DRSMZGJ
+grateful/UYP
+gratefulness/UM
+grater/M
+gratification/M
+gratify/GNXDS
+gratifying/Y
+gratin/S
+grating/MY
+gratis
+gratitude/IM
+gratuitous/YP
+gratuitousness/M
+gratuity/SM
+gravamen/MS
+grave/DRSMYTGP
+gravedigger/SM
+gravel/SMY
+gravelled
+gravelling
+graven
+graveness/M
+graveside/MS
+gravestone/SM
+graveyard/MS
+gravid
+gravimeter/MS
+gravitas
+gravitate/GNDS
+gravitation/M
+gravitational
+gravity/M
+gravy/SM
+graybeard/SM
+graze/DRSMZG
+grazer/M
+grease/DRSMZG
+greasepaint/M
+greasily
+greasiness/M
+greasy/PTR
+great/SMRYPT
+greatcoat/SM
+greathearted
+greatness/M
+grebe/SM
+greed/M
+greedily
+greediness/M
+greedy/PTR
+green/GPSMDRYT
+greenback/MS
+greenbelt/MS
+greenery/M
+greenfield
+greenfly/S
+greengage/MS
+greengrocer/SM
+greenhorn/SM
+greenhouse/SM
+greenie/MS
+greenish
+greenmail/M
+greenness/M
+greenroom/SM
+greenstone
+greensward/M
+greenwood/M
+greet/ZGJSDR
+greeter/M
+greeting/M
+gregarious/PY
+gregariousness/M
+gremlin/SM
+grenade/SM
+grenadier/MS
+grenadine/M
+grep/S
+grepped
+grepping
+grew/A
+grey/PMDRTGS
+greyhound/SM
+greyish
+greyness/M
+gribble/S
+grid/MS
+griddle/SM
+griddlecake/SM
+gridiron/SM
+gridlock/SMD
+grief/SM
+grievance/MS
+grieve/ZGDRS
+griever/M
+grievous/PY
+grievousness/M
+griffin/SM
+griffon/SM
+grill/SGMDJ
+grille/MS
+grim/DYPG
+grimace/DSMG
+grime/SM
+griminess/M
+grimmer
+grimmest
+grimness/M
+grimy/TRP
+grin/MS
+grind/SZGMRJ
+grinder/M
+grindstone/MS
+gringo/MS
+grinned
+grinning
+grip/MDRSZG
+gripe/SM
+griper/M
+grippe/MZGDR
+gripper/M
+grisliness/M
+grisly/RTP
+grist/MY
+gristle/M
+gristmill/MS
+grit/MS
+grits/M
+gritted
+gritter/SM
+grittiness/M
+gritting
+gritty/RTP
+grizzle/DSG
+grizzly/TRSM
+groan/SGMD
+groat/SM
+grocer/MS
+grocery/SM
+grog/M
+groggily
+grogginess/M
+groggy/PRT
+groin/SM
+grok/S
+grokked
+grokking
+grommet/SM
+groom/SZGMDR
+groomer/M
+grooming/M
+groomsman/M
+groomsmen
+groove/MGDS
+groovy/RT
+grope/DRSMZG
+groper/M
+grosbeak/MS
+grosgrain/M
+gross/PTGMDRSY
+grossness/M
+grotesque/SPMY
+grotesqueness/M
+grotto/M
+grottoes
+grotty/TR
+grouch/GMDS
+grouchily
+grouchiness/M
+grouchy/RTP
+ground/ZGMDRJS
+groundbreaking/MS
+groundcloth
+groundcloths
+grounder/M
+groundhog/MS
+grounding/M
+groundless/Y
+groundnut/MS
+groundsheet/S
+groundskeeper/S
+groundsman
+groundsmen
+groundswell/SM
+groundwater/M
+groundwork/M
+group/JSZGMDR
+grouper/M
+groupie/MS
+grouping/M
+groupware/M
+grouse/MZGDRS
+grouser/M
+grout/SGMD
+grove/SM
+grovel/GDS
+grovelled
+groveller/SM
+grovelling
+grow/AHSG
+grower/MS
+growing/I
+growl/SZGMDR
+growler/M
+grown/AI
+grownup/MS
+growth/AM
+growths
+groyne/MS
+grub/MS
+grubbed
+grubber/MS
+grubbily
+grubbiness/M
+grubbing
+grubby/TRP
+grubstake/M
+grudge/MGDS
+grudging/Y
+grue/S
+gruel/M
+gruelling/SY
+gruesome/RYTP
+gruesomeness/M
+gruff/TPRY
+gruffness/M
+grumble/DRSMZGJ
+grumbler/M
+grump/SM
+grumpily
+grumpiness/M
+grumpy/PRT
+grunge/MS
+grungy/RT
+grunion/SM
+grunt/SGMD
+gt
+guacamole/M
+guanine/M
+guano/M
+guarani/MS
+guarantee/MDS
+guaranteeing
+guarantor/MS
+guaranty/GDSM
+guard/SZGMDR
+guarded/Y
+guarder/M
+guardhouse/SM
+guardian/SM
+guardianship/M
+guardrail/SM
+guardroom/SM
+guardsman/M
+guardsmen
+guava/SM
+gubernatorial
+guerilla/SM
+guess/ZGBMDRS
+guesser/M
+guesstimate/DSMG
+guesswork/M
+guest/SGMD
+guestbook/SM
+guesthouse/S
+guestroom/S
+guff/M
+guffaw/MDGS
+guidance/M
+guide/DRSMZG
+guidebook/SM
+guided/U
+guideline/SM
+guidepost/SM
+guider/M
+guild/SZMR
+guilder/M
+guildhall/MS
+guile/M
+guileful
+guileless/YP
+guilelessness/M
+guillemot/S
+guillotine/DSMG
+guilt/M
+guiltily
+guiltiness/M
+guiltless
+guilty/PRT
+guinea/MS
+guise/ESM
+guitar/MS
+guitarist/SM
+gulag/SM
+gulch/MS
+gulden/MS
+gulf/MS
+gull/MDSG
+gullet/MS
+gullibility/M
+gullible
+gully/SM
+gulp/MDRSZG
+gulper/M
+gum/SM
+gumball/S
+gumbo/SM
+gumboil/SM
+gumboot/S
+gumdrop/SM
+gummed
+gumming
+gummy/TR
+gumption/M
+gumshoe/MDS
+gumshoeing
+gun/SM
+gunboat/SM
+gunfight/MRZS
+gunfighter/M
+gunfire/M
+gunge
+gungy
+gunk/M
+gunky
+gunman/M
+gunmen
+gunmetal/M
+gunned
+gunnel/MS
+gunner/MS
+gunnery/M
+gunning
+gunny/M
+gunnysack/MS
+gunpoint/M
+gunpowder/M
+gunrunner/MS
+gunrunning/M
+gunship/MS
+gunshot/MS
+gunslinger/SM
+gunsmith/M
+gunsmiths
+gunwale/MS
+guppy/SM
+gurgle/MGDS
+gurney/MS
+guru/MS
+gush/MDRSZG
+gusher/M
+gushing/Y
+gushy/TR
+gusset/MSDG
+gussy/DSG
+gust/EMDSG
+gustatory
+gustily
+gusto/M
+gusty/RT
+gut/SM
+gutful/MS
+gutless/P
+gutlessness/M
+gutsy/RT
+gutted
+gutter/SMDG
+guttersnipe/MS
+gutting
+guttural/MS
+gutty/RT
+guv/S
+guvnor/S
+guy/SGMD
+guzzle/DRSZG
+guzzler/M
+gybe/MGDS
+gym/SM
+gymkhana/MS
+gymnasium/MS
+gymnast/MS
+gymnastic/S
+gymnastically
+gymnastics/M
+gymnosperm/SM
+gymslip/S
+gynaecologic
+gynaecological
+gynaecologist/SM
+gynaecology/M
+gyp/SM
+gypped
+gypper/SM
+gypping
+gypster/SM
+gypsum/M
+gypsy/SM
+gyrate/DSGNX
+gyration/M
+gyrator/SM
+gyrfalcon/MS
+gyro/MS
+gyroscope/MS
+gyroscopic
+gyve/MGDS
+h'm
+h/NRSXZGVJ
+ha/SH
+haberdasher/SM
+haberdashery/SM
+habiliment/SM
+habit's
+habit/ISB
+habitability/M
+habitat/SM
+habitation/MS
+habitual/YP
+habitualness/M
+habituate/GNDS
+habituation/M
+habitue/SM
+hacienda/SM
+hack/MDRZGS
+hacker/M
+hacking/M
+hackish
+hackle/MS
+hackney/SMDG
+hacksaw/SM
+hacktivist/MS
+hackwork/M
+had
+haddock/SM
+hadith
+hadn't
+hadst
+haem
+haematite/M
+haematologic
+haematological
+haematologist/MS
+haematology/M
+haemoglobin/M
+haemophilia/M
+haemophiliac/MS
+haemorrhage/MGDS
+haemorrhoid/S
+hafnium/M
+haft/MS
+hag/SM
+haggard/YP
+haggardness/M
+haggis/MS
+haggish
+haggle/MZGDRS
+haggler/M
+hagiographer/SM
+hagiography/SM
+hahnium/M
+haiku/M
+hail/MDGS
+hailstone/MS
+hailstorm/MS
+hair/MDS
+hairball/MS
+hairband/S
+hairbreadth/M
+hairbreadths
+hairbrush/MS
+haircloth/M
+haircut/SM
+hairdo/MS
+hairdresser/SM
+hairdressing/M
+hairdryer/MS
+hairgrip/S
+hairiness/M
+hairless
+hairlike
+hairline/SM
+hairnet/SM
+hairpiece/MS
+hairpin/SM
+hairsbreadth/M
+hairsbreadths
+hairsplitter/SM
+hairsplitting/M
+hairspray/S
+hairspring/MS
+hairstyle/MS
+hairstylist/SM
+hairy/TRP
+haj
+hajj/M
+hajjes
+hajji/SM
+hake/MS
+halal/M
+halberd/SM
+halcyon
+hale/ITGDRS
+half/M
+halfback/SM
+halfhearted/PY
+halfheartedness/M
+halfpence
+halfpenny/SM
+halftime/MS
+halftone/MS
+halfway
+halfwit/SM
+halibut/SM
+halite/M
+halitosis/M
+hall/MS
+hallelujah/M
+hallelujahs
+hallmark/GMDS
+halloo/MSG
+hallow/DSG
+hallowed/U
+hallucinate/GNXDS
+hallucination/M
+hallucinatory
+hallucinogen/SM
+hallucinogenic/SM
+hallway/SM
+halo/MDGS
+halogen/SM
+halon
+halt/MDRZGS
+halter/GMD
+halterneck/S
+halting/Y
+halve/DSG
+halyard/MS
+ham/SM
+hamburg/SZMR
+hamburger/M
+hamlet/MS
+hammed
+hammer/MDRSJZG
+hammerer/M
+hammerhead/SM
+hammerlock/SM
+hammertoe/MS
+hamming
+hammock/SM
+hammy/TR
+hamper/GMDS
+hampered/U
+hamster/MS
+hamstring/GSM
+hamstrung
+hand's
+hand/UDGS
+handbag/SM
+handball/MS
+handbarrow/SM
+handbill/MS
+handbook/MS
+handbrake/S
+handcar/SM
+handcart/MS
+handclasp/MS
+handcraft/SMDG
+handcuff/MDGS
+handed/P
+handful/SM
+handgun/SM
+handheld/MS
+handhold/MS
+handicap/MS
+handicapped
+handicapper/MS
+handicapping
+handicraft/MS
+handily
+handiness/M
+handiwork/M
+handkerchief/MS
+handle/MZGDRS
+handlebar/MS
+handler/M
+handmade
+handmaid/XMNS
+handmaiden/M
+handout/SM
+handover/S
+handpick/GDS
+handrail/MS
+handsaw/SM
+handset/SM
+handshake/JMGS
+handsome/PYTR
+handsomeness/M
+handspring/MS
+handstand/SM
+handwork/M
+handwoven
+handwriting/M
+handwritten
+handy/UTR
+handyman/M
+handymen
+hang/MDRJZGS
+hangar/MS
+hangdog
+hanger/M
+hanging/M
+hangman/M
+hangmen
+hangnail/MS
+hangout/SM
+hangover/MS
+hangup/MS
+hank/MRZS
+hanker/GJD
+hankering/M
+hanky/SM
+hansom/MS
+hap/MY
+haphazard/YP
+haphazardness/M
+hapless/YP
+haplessness/M
+haploid/MS
+happen/SDGJ
+happening/M
+happenstance/SM
+happily/U
+happiness/UM
+happy/URTP
+haptic
+harangue/MGDS
+harass/LZGDRS
+harasser/M
+harassment/M
+harbinger/SM
+harbormaster/S
+harbour/GMDS
+hard/NRYXTP
+hardback/MS
+hardball/M
+hardboard/M
+hardbound
+hardcore
+hardcover/SM
+harden/ZGDR
+hardened/U
+hardener/M
+hardhat/MS
+hardheaded/PY
+hardheadedness/M
+hardhearted/PY
+hardheartedness/M
+hardihood/M
+hardily
+hardiness/M
+hardliner/MS
+hardness/M
+hardscrabble
+hardship/SM
+hardstand/SM
+hardtack/M
+hardtop/SM
+hardware/M
+hardwired
+hardwood/SM
+hardworking
+hardy/PTR
+hare/MGDS
+harebell/MS
+harebrained
+harelip/SM
+harelipped
+harem/SM
+haricot/S
+hark/DGS
+harlequin/SM
+harlot/SM
+harlotry/M
+harm/MDGS
+harmed/U
+harmful/YP
+harmfulness/M
+harmless/PY
+harmlessness/M
+harmonic/SM
+harmonica/MS
+harmonically
+harmonies
+harmonious/PY
+harmoniousness/M
+harmonisation/M
+harmonise/ZGDRS
+harmoniser/M
+harmonium/MS
+harmony/EM
+harness's
+harness/UDSG
+harp/MDGS
+harpist/SM
+harpoon/ZGSMDR
+harpooner/M
+harpsichord/MS
+harpsichordist/SM
+harpy/SM
+harridan/MS
+harrier/M
+harrow/SMDG
+harrumph/GD
+harrumphs
+harry/DRSZG
+harsh/RYTP
+harshness/M
+hart/MS
+harvest/SMDRZG
+harvested/U
+harvester/M
+hash/AMDSG
+hashish/M
+hashtag/SM
+hasn't
+hasp/MS
+hassle/DSMG
+hassock/SM
+hast/DNXG
+haste/SM
+hasten/DG
+hastily
+hastiness/M
+hasty/RTP
+hat/ZGSMDR
+hatband/S
+hatbox/MS
+hatch/MDSG
+hatchback/MS
+hatcheck/SM
+hatched/U
+hatchery/SM
+hatchet/SM
+hatching/M
+hatchway/SM
+hate/MS
+hateful/PY
+hatefulness/M
+hatemonger/MS
+hater/M
+hatpin/S
+hatred/SM
+hatstand/S
+hatted
+hatter/SM
+hatting
+hauberk/SM
+haughtily
+haughtiness/M
+haughty/PRT
+haul/MDRZGS
+haulage/M
+hauler/M
+haulier/S
+haunch/MS
+haunt/SMDRZG
+haunter/M
+haunting/Y
+hauteur/M
+have/MGS
+haven't
+haven/SM
+haversack/SM
+havoc/M
+haw/GSMD
+hawk/MDRZGS
+hawker/M
+hawkish/P
+hawkishness/M
+hawser/SM
+hawthorn/MS
+hay/GSMD
+haycock/SM
+hayloft/SM
+haymaker/S
+haymaking
+haymow/SM
+hayrick/MS
+hayride/MS
+hayseed/MS
+haystack/SM
+haywire
+hazard/SMDG
+hazardous/Y
+haze/MZGJDRS
+hazel/SM
+hazelnut/MS
+hazer/M
+hazily
+haziness/M
+hazing/M
+hazmat
+hazy/RTP
+hdqrs
+he'd
+he'll
+he/M
+head/MDRZGJS
+headache/MS
+headband/MS
+headbanger/S
+headbanging
+headboard/SM
+headbutt/DSG
+headcase/S
+headcheese
+headcount/S
+headdress/MS
+header/M
+headfirst
+headgear/M
+headhunt/DRSZG
+headhunter/M
+headhunting/M
+headily
+headiness/M
+heading/M
+headlamp/MS
+headland/MS
+headless
+headlight/MS
+headline/MZGDRS
+headliner/M
+headlock/MS
+headlong
+headman/M
+headmaster/SM
+headmen
+headmistress/MS
+headphone/MS
+headpiece/MS
+headpin/SM
+headquarter/SDG
+headquarters/M
+headrest/MS
+headroom/M
+headscarf
+headscarves
+headset/SM
+headship/SM
+headshrinker/SM
+headsman/M
+headsmen
+headstall/SM
+headstand/SM
+headstone/SM
+headstrong
+headteacher/S
+headwaiter/SM
+headwaters/M
+headway/M
+headwind/SM
+headword/SM
+heady/RTP
+heal/DRHZGS
+healed/U
+healer/M
+health/M
+healthcare
+healthful/PY
+healthfulness/M
+healthily/U
+healthiness/UM
+healthy/UTRP
+heap/MDGS
+hear/AHGJS
+heard/AU
+hearer/SM
+hearing/AM
+hearken/SGD
+hearsay/M
+hearse's
+hearse/AS
+heart/SM
+heartache/MS
+heartbeat/MS
+heartbreak/SMG
+heartbroken
+heartburn/M
+hearten/ESGD
+heartfelt
+hearth/M
+hearthrug/S
+hearths
+hearthstone/SM
+heartily
+heartiness/M
+heartland/MS
+heartless/PY
+heartlessness/M
+heartrending/Y
+heartsick/P
+heartsickness/M
+heartstrings/M
+heartthrob/MS
+heartwarming
+heartwood/M
+hearty/RSMPT
+heat's
+heat/ADGS
+heated/U
+heatedly
+heater/SM
+heath/MNRX
+heathen/M
+heathendom/M
+heathenish
+heathenism/M
+heather/M
+heaths
+heating/M
+heatproof
+heatstroke/M
+heatwave/S
+heave/DRSMZG
+heaven/SMY
+heavenly/TR
+heavens/M
+heavenward/S
+heaver/M
+heavily
+heaviness/M
+heavy/RSMTP
+heavyhearted
+heavyset
+heavyweight/MS
+heck/M
+heckle/DRSMZG
+heckler/M
+heckling/M
+hectare/SM
+hectic
+hectically
+hectogram/SM
+hectometre/MS
+hector/SMDG
+hedge/DRSMZG
+hedgehog/MS
+hedgehop/S
+hedgehopped
+hedgehopping
+hedger/M
+hedgerow/SM
+hedonism/M
+hedonist/MS
+hedonistic
+heed/MDGS
+heeded/U
+heedful/Y
+heedless/PY
+heedlessness/M
+heehaw/SMDG
+heel/MDGS
+heelless
+heft/MDGS
+heftily
+heftiness/M
+hefty/PRT
+hegemonic
+hegemony/M
+hegira/SM
+heifer/SM
+height/XSMN
+heighten/DG
+heinous/YP
+heinousness/M
+heir/MS
+heiress/MS
+heirloom/SM
+heist/SMDG
+held
+helical
+helices
+helicopter/SGMD
+heliocentric
+heliotrope/SM
+helipad/S
+heliport/MS
+helium/M
+helix/M
+hell/M
+hellbent
+hellcat/MS
+hellebore/M
+hellfire
+hellhole/MS
+hellion/MS
+hellish/YP
+hellishness/M
+hello/SM
+helluva
+helm/MS
+helmet/SMD
+helmsman/M
+helmsmen
+helot/SM
+help/MDRZGSJ
+helper/M
+helpful/UY
+helpfulness/M
+helping/M
+helpless/PY
+helplessness/M
+helpline/SM
+helpmate/SM
+helve/SM
+hem/SM
+heme's
+hemiplegia
+hemisphere/SM
+hemispheric
+hemispherical
+hemline/SM
+hemlock/SM
+hemmed
+hemmer/SM
+hemming
+hemorrhagic
+hemorrhoid's
+hemostat/MS
+hemp/MN
+hemstitch/MDSG
+hen/M
+hence
+henceforth
+henceforward
+henchman/M
+henchmen
+henna/SMDG
+henpeck/GSD
+hep
+heparin/M
+hepatic
+hepatitis/M
+hepatocyte/S
+hepper
+heppest
+heptagon/MS
+heptagonal
+heptathlon/SM
+herald/SMDG
+heralded/U
+heraldic
+heraldry/M
+herb/MS
+herbaceous
+herbage/M
+herbal/S
+herbalist/MS
+herbicidal
+herbicide/MS
+herbivore/SM
+herbivorous
+herculean
+herd/MDRZGS
+herder/M
+herdsman/M
+herdsmen
+here/M
+hereabout/S
+hereafter/SM
+hereby
+hereditary
+heredity/M
+herein
+hereinafter
+hereof
+hereon
+heresy/SM
+heretic/SM
+heretical
+hereto
+heretofore
+hereunder
+hereunto
+hereupon
+herewith
+heritable/I
+heritage/MS
+hermaphrodite/SM
+hermaphroditic
+hermetic
+hermetical/Y
+hermit/SM
+hermitage/MS
+hermitian
+hernia/SM
+hernial
+herniate/GNDS
+herniation/M
+hero/M
+heroes
+heroic/S
+heroically
+heroics/M
+heroin/SM
+heroine/SM
+heroism/M
+heron/SM
+herpes/M
+herpetologist/SM
+herpetology/M
+herring/MS
+herringbone/M
+herself
+hertz/M
+hesitance/M
+hesitancy/M
+hesitant/Y
+hesitate/DSGNX
+hesitating/UY
+hesitation/M
+hessian
+hetero/SM
+heterodox
+heterodoxy/M
+heterogeneity/M
+heterogeneous/Y
+heterosexual/MYS
+heterosexuality/M
+heuristic/MS
+heuristically
+heuristics/M
+hew/ZGSDR
+hewer/M
+hex/GMDS
+hexadecimal/S
+hexagon/MS
+hexagonal
+hexagram/SM
+hexameter/SM
+hey
+heyday/SM
+hf
+hgt
+hgwy
+hi/SD
+hiatus/MS
+hibachi/MS
+hibernate/GNDS
+hibernation/M
+hibernator/MS
+hibiscus/MS
+hiccough/DG
+hiccoughs
+hiccup/GSMD
+hick/MS
+hickey/SM
+hickory/SM
+hid
+hidden
+hide/MZGJDRS
+hideaway/SM
+hidebound
+hideous/YP
+hideousness/M
+hideout/MS
+hider/M
+hiding/M
+hie/S
+hieing
+hierarchic
+hierarchical/Y
+hierarchy/SM
+hieroglyph/M
+hieroglyphic/MS
+hieroglyphs
+high/MRYZTP
+highball/SM
+highborn
+highboy/MS
+highbrow/SM
+highchair/MS
+highfalutin
+highhanded/PY
+highhandedness/M
+highland/MRZS
+highlander/M
+highlight/SMDRZG
+highlighter/M
+highness/M
+highroad/MS
+highs
+hightail/DSG
+highway/MS
+highwayman/M
+highwaymen
+hijab/SM
+hijack/SJZGMDR
+hijacker/M
+hijacking/M
+hike/MZGDRS
+hiker/M
+hiking/M
+hilarious/PY
+hilariousness/M
+hilarity/M
+hill/MS
+hillbilly/SM
+hilliness/M
+hillock/MS
+hillside/SM
+hilltop/MS
+hilly/PRT
+hilt/MS
+him/S
+himself
+hind/MRZS
+hinder/GD
+hindered/U
+hindmost
+hindquarter/MS
+hindrance/SM
+hindsight/M
+hinge's
+hinge/UDSG
+hint/MDRZGS
+hinter/M
+hinterland/SM
+hip/SPM
+hipbath
+hipbaths
+hipbone/MS
+hiphuggers
+hipness/M
+hipped
+hipper
+hippest
+hipping
+hippo/SM
+hippocampus
+hippodrome/SM
+hippopotamus/MS
+hippy/SM
+hipster/MS
+hiragana
+hire's
+hire/AGDS
+hireling/MS
+hirsute/P
+hirsuteness/M
+hiss/MDSG
+hist
+histamine/MS
+histogram/MS
+histologist/SM
+histology/M
+histopathology
+historian/MS
+historic
+historical/Y
+historicity/M
+historiographer/MS
+historiography/M
+history/SM
+histrionic/S
+histrionically
+histrionics/M
+hit/SM
+hitch's
+hitch/UDSG
+hitcher/MS
+hitchhike/DRSMZG
+hitchhiker/M
+hither
+hitherto
+hitter/SM
+hitting
+hive/MGDS
+hivemind/SM
+hiya
+hmm
+ho/SMDRYZ
+hoagie/MS
+hoard/SZGMDRJ
+hoarder/M
+hoarding/M
+hoarfrost/M
+hoariness/M
+hoarse/YTRP
+hoarseness/M
+hoary/TRP
+hoax/MDRSZG
+hoaxer/M
+hob/SM
+hobbit/S
+hobble/MZGDRS
+hobbler/M
+hobby/SM
+hobbyhorse/MS
+hobbyist/SM
+hobgoblin/MS
+hobnail/SGMD
+hobnob/S
+hobnobbed
+hobnobbing
+hobo/MS
+hoc
+hock/MDSG
+hockey/M
+hockshop/MS
+hod/SM
+hodgepodge/SM
+hoe/SM
+hoecake/SM
+hoedown/SM
+hoeing
+hoer/M
+hog/SM
+hogan/SM
+hogback/SM
+hogged
+hogging
+hoggish/Y
+hogshead/SM
+hogtie/DS
+hogtying
+hogwash/M
+hoick/SGD
+hoist/SGMD
+hoke/GDS
+hokey
+hokier
+hokiest
+hokum/M
+hold/MRJSZG
+holdall/S
+holder/M
+holding/M
+holdout/SM
+holdover/SM
+holdup/MS
+hole/MGDS
+holey
+holiday/SMDG
+holidaymaker/S
+holiness/UM
+holism
+holistic
+holistically
+holler/MDGS
+hollow/MDRYPSTG
+hollowness/M
+holly/SM
+hollyhock/MS
+holmium/M
+holocaust/SM
+hologram/MS
+holograph/M
+holographic
+holographs
+holography/M
+hols
+holster/SMDG
+holy/URPT
+homage/MS
+hombre/MS
+homburg/SM
+home/MYZGDRS
+homebody/SM
+homeboy/SM
+homecoming/SM
+homegrown
+homeland/MS
+homeless/MP
+homelessness/M
+homelike
+homeliness/M
+homely/PRT
+homemade
+homemaker/SM
+homemaking/M
+homeopath/M
+homeopathic
+homeopaths
+homeopathy/M
+homeostasis/M
+homeostatic
+homeowner/MS
+homepage/MS
+homer/GMD
+homeroom/MS
+homeschooling/M
+homesick/P
+homesickness/M
+homespun/M
+homestead/SMDRZG
+homesteader/M
+homestretch/MS
+hometown/MS
+homeward/S
+homework/MRZG
+homewrecker/SM
+homey/SMP
+homeyness/M
+homicidal
+homicide/MS
+homier
+homiest
+homiletic
+homily/SM
+hominid/SM
+hominoid/S
+hominy/M
+homo/MS
+homoerotic
+homogeneity/M
+homogeneous/Y
+homogenisation/M
+homogenise/DSG
+homograph/M
+homographs
+homologous
+homology
+homonym/SM
+homophobia/M
+homophobic
+homophone/MS
+homosexual/SM
+homosexuality/M
+hon/SZTGMDR
+honcho/MS
+hone/MS
+honer/M
+honest/EYT
+honester
+honesty/EM
+honey/SGMD
+honeybee/SM
+honeycomb/MDSG
+honeydew/SM
+honeylocust/M
+honeymoon/ZGMDRS
+honeymooner/M
+honeypot/S
+honeysuckle/SM
+honk/MDRSZG
+honker/M
+honky/SM
+honorarily
+honorarium/MS
+honorary
+honorific/MS
+honour/EMDSBG
+honourableness/M
+honourably/E
+honouree/MS
+honourer/MS
+hooch/M
+hood/MDSG
+hoodie/MS
+hoodlum/SM
+hoodoo/MDSG
+hoodwink/DGS
+hooey/M
+hoof/MDRSZG
+hook's
+hook/UDSG
+hookah/M
+hookahs
+hooker/MS
+hookup/MS
+hookworm/MS
+hooky/M
+hooligan/MS
+hooliganism/M
+hoon/MDRSZG
+hooner/M
+hoop/MDSG
+hoopla/M
+hooray
+hoosegow/SM
+hoot/MDRSZG
+hootenanny/SM
+hooter/M
+hoover/DSG
+hooves
+hop/SGMD
+hope/MS
+hopeful/PSMY
+hopefulness/M
+hopeless/YP
+hopelessness/M
+hopped
+hopper/MS
+hopping
+hopscotch/MDSG
+hora/MS
+horde/DSMG
+horehound/SM
+horizon/SM
+horizontal/SMY
+hormonal
+hormone/SM
+horn/MDS
+hornbeam
+hornblende/M
+hornet/MS
+hornless
+hornlike
+hornpipe/MS
+horny/TR
+horologic
+horological
+horologist/MS
+horology/M
+horoscope/SM
+horrendous/Y
+horrible/P
+horribleness/M
+horribly
+horrid/Y
+horrific
+horrifically
+horrify/DSG
+horrifying/Y
+horror/MS
+horse's
+horse/UDSG
+horseback/M
+horsebox/S
+horseflesh/M
+horsefly/SM
+horsehair/M
+horsehide/M
+horselaugh/M
+horselaughs
+horseless
+horseman/M
+horsemanship/M
+horsemen
+horseplay/M
+horsepower/M
+horseradish/MS
+horseshit/!
+horseshoe/DSM
+horseshoeing
+horsetail/SM
+horsetrading
+horsewhip/SM
+horsewhipped
+horsewhipping
+horsewoman/M
+horsewomen
+horsey
+horsier
+horsiest
+hortatory
+horticultural
+horticulturalist/S
+horticulture/M
+horticulturist/MS
+hosanna/SM
+hose/MGDS
+hosepipe/S
+hosier/MS
+hosiery/M
+hosp
+hospholipase
+hospice/MS
+hospitable/I
+hospitably/I
+hospital/SM
+hospitalisation/SM
+hospitalise/DSG
+hospitality/M
+host/MDSG
+hostage/MS
+hostel/ZGMDRS
+hosteler/M
+hostelry/SM
+hostess/MDSG
+hostile/MYS
+hostilities/M
+hostility/SM
+hostler/MS
+hot/SYP
+hotbed/MS
+hotblooded
+hotbox/MS
+hotcake/SM
+hotel/SM
+hotelier/MS
+hotfoot/MDGS
+hothead/DSM
+hotheaded/YP
+hotheadedness/M
+hothouse/SM
+hotkey/S
+hotlink/S
+hotness/M
+hotplate/SM
+hotpot/S
+hots/M
+hotshot/MS
+hotted
+hotter
+hottest
+hottie/S
+hotting
+hound/SGMD
+hour/MYS
+hourglass/MS
+houri/SM
+house's
+house/ADSG
+houseboat/SM
+housebound
+houseboy/SM
+housebreak/RSZG
+housebreaker/M
+housebreaking/M
+housebroke
+housebroken
+houseclean/DSG
+housecleaning/M
+housecoat/SM
+housefly/SM
+houseful/SM
+household/SMRZ
+householder/M
+househusband/SM
+housekeeper/MS
+housekeeping/M
+houselights/M
+housemaid/SM
+houseman/M
+housemaster/S
+housemate/S
+housemen
+housemistress/S
+housemother/SM
+houseparent/SM
+houseplant/MS
+houseproud
+houseroom
+housetop/SM
+housewares/M
+housewarming/SM
+housewife/MY
+housewives
+housework/M
+housing/MS
+hove
+hovel/SM
+hover/SGD
+hoverboard/MS
+hovercraft/MS
+how'd
+how're
+how/SM
+howbeit
+howdah/M
+howdahs
+howdy
+however
+howitzer/SM
+howl/MDRSZG
+howler/M
+howsoever
+howzat
+hoyden/MS
+hoydenish
+hp
+hr/S
+ht
+huarache/SM
+hub/SM
+hubbub/SM
+hubby/SM
+hubcap/SM
+hubris/M
+huckleberry/SM
+huckster/SGMD
+hucksterism/M
+huddle/DSMG
+hue/DSM
+huff/MDSG
+huffily
+huffiness/M
+huffy/PRT
+hug/STMR
+huge/YP
+hugeness/M
+hugged
+hugging
+huh
+hula/MS
+hulk/MSG
+hull/MDRSZG
+hullabaloo/SM
+huller/M
+hum/SM
+human/SMRYTP
+humane/PY
+humaneness/M
+humanisation/CM
+humanise/CDSG
+humaniser/SM
+humanism/M
+humanist/SM
+humanistic
+humanitarian/MS
+humanitarianism/M
+humanities/M
+humanity/ISM
+humankind/M
+humanness/M
+humanoid/SM
+humble/DRSZTGJP
+humbleness/M
+humbler/M
+humbly
+humbug/SM
+humbugged
+humbugging
+humdinger/MS
+humdrum/M
+humeral
+humeri
+humerus/M
+humid/Y
+humidification/M
+humidifier/CM
+humidify/CZGDRS
+humidity/M
+humidor/SM
+humiliate/DSGNX
+humiliating/Y
+humiliation/M
+humility/M
+hummed
+hummer/SM
+humming
+hummingbird/SM
+hummock/SM
+hummocky
+hummus/M
+humongous
+humoresque
+humorist/MS
+humorlessly
+humorous/PY
+humorousness/M
+humour/GSMD
+humourless/P
+humourlessness/M
+hump/MDSG
+humpback/MDS
+humph/DG
+humphs
+humus/M
+hunch/MDSG
+hunchback/SMD
+hundred/SMH
+hundredfold
+hundredth/M
+hundredths
+hundredweight/SM
+hung
+hunger/SMDG
+hungover
+hungrily
+hungriness/M
+hungry/PRT
+hunk/MRSZ
+hunker/DG
+hunky/RT
+hunt/MDRSZG
+hunter/M
+hunting/M
+huntress/MS
+huntsman/M
+huntsmen
+hurdle/DRSMZG
+hurdler/M
+hurdling/M
+hurl/MDRSZG
+hurler/M
+hurling/M
+hurrah/GMD
+hurrahs
+hurricane/MS
+hurried/UY
+hurry/DSMG
+hurt/MSG
+hurtful/YP
+hurtfulness/M
+hurtle/DSG
+husband/GMDS
+husbandman/M
+husbandmen
+husbandry/M
+hush/MDSG
+husk/MDRSZG
+husker/M
+huskily
+huskiness/M
+husky/PRSMT
+hussar/SM
+hussy/SM
+hustings/M
+hustle/DRSMZG
+hustler/M
+hut/SM
+hutch/MS
+huzzah/MDG
+huzzahs
+hwy
+hyacinth/M
+hyacinths
+hybrid/SM
+hybridisation/M
+hybridise/DSG
+hybridism/M
+hydra/SM
+hydrangea/SM
+hydrant/MS
+hydrate's
+hydrate/CGNDS
+hydration/CM
+hydraulic/S
+hydraulically
+hydraulics/M
+hydro/M
+hydrocarbon/MS
+hydrocephalus/M
+hydrochloride
+hydrocortisone
+hydrodynamic/S
+hydrodynamics/M
+hydroelectric
+hydroelectrically
+hydroelectricity/M
+hydrofoil/MS
+hydrogen/M
+hydrogenate/CGDS
+hydrogenation/M
+hydrogenous
+hydrologist/MS
+hydrology/M
+hydrolyse/DSG
+hydrolysis/M
+hydrometer/SM
+hydrometry/M
+hydrophilic
+hydrophobia/M
+hydrophobic
+hydrophone/SM
+hydroplane/GDSM
+hydroponic/S
+hydroponically
+hydroponics/M
+hydrosphere/M
+hydrotherapy/M
+hydrothermal
+hydrous
+hydroxide/SM
+hyena/SM
+hygiene/M
+hygienic/U
+hygienically
+hygienist/MS
+hygrometer/SM
+hying
+hymen/SM
+hymeneal
+hymn/MDSG
+hymnal/MS
+hymnbook/SM
+hype/MGDRS
+hyperactive
+hyperactivity/M
+hyperbola/SM
+hyperbole/M
+hyperbolic
+hypercritical/Y
+hypercube
+hyperglycemia/M
+hyperinflation
+hyperlink/GSMD
+hypermarket/S
+hypermedia/M
+hyperparathyroidism
+hyperplane
+hypersensitive/P
+hypersensitiveness/M
+hypersensitivity/SM
+hyperspace/S
+hypertension/M
+hypertensive/SM
+hypertext/M
+hyperthyroid/M
+hyperthyroidism/M
+hypertrophy/DSMG
+hyperventilate/GNDS
+hyperventilation/M
+hypervisor/MS
+hyphen/MDSG
+hyphenate/XDSMGN
+hyphenation/M
+hypnoses
+hypnosis/M
+hypnotherapist/S
+hypnotherapy/M
+hypnotic/SM
+hypnotically
+hypnotise/GDS
+hypnotism/M
+hypnotist/MS
+hypo/MS
+hypoallergenic
+hypochondria/M
+hypochondriac/SM
+hypocrisy/SM
+hypocrite/MS
+hypocritical/Y
+hypodermic/MS
+hypoglycemia/M
+hypoglycemic/SM
+hypotenuse/MS
+hypothalami
+hypothalamus/M
+hypothermia/M
+hypotheses
+hypothesis/MDSG
+hypothesise
+hypothetical/Y
+hypothyroid/M
+hypothyroidism/M
+hyssop/M
+hysterectomy/SM
+hysteresis
+hysteria/M
+hysteric/SM
+hysterical/Y
+hysterics/M
+i/US
+iOS/M
+iPad/M
+iPhone/M
+iPod/M
+iTunes/M
+iamb/MS
+iambi
+iambic/SM
+iambus/MS
+ibex/MS
+ibid
+ibidem
+ibis/MS
+ibuprofen/M
+ice's
+ice/CDSG
+iceberg/SM
+iceboat/SM
+icebound
+icebox/MS
+icebreaker/SM
+icecap/SM
+iceman/M
+icemen
+ichthyologist/MS
+ichthyology/M
+icicle/SM
+icily
+iciness/M
+icing/SM
+icky/RT
+icon/MS
+iconic
+iconoclasm/M
+iconoclast/SM
+iconoclastic
+iconography/M
+ictus/M
+icy/TPR
+id/SMY
+idea/MS
+ideal/SMY
+idealisation/SM
+idealise/DSG
+idealism/M
+idealist/SM
+idealistic
+idealistically
+idem
+idempotent
+identical/Y
+identifiable/U
+identification/M
+identified/U
+identify/ZGNDRSX
+identikit/S
+identity/SM
+ideogram/SM
+ideograph/M
+ideographs
+ideological/Y
+ideologist/SM
+ideologue/MS
+ideology/SM
+ides/M
+idiocy/SM
+idiom/SM
+idiomatic/U
+idiomatically
+idiopathic
+idiosyncrasy/SM
+idiosyncratic
+idiosyncratically
+idiot/SM
+idiotic
+idiotically
+idle/MZTGDRSP
+idleness/M
+idler/M
+idol/MS
+idolater/SM
+idolatress/MS
+idolatrous
+idolatry/M
+idolisation/M
+idolise/GDS
+idyll/SM
+idyllic
+idyllically
+if/SM
+iffiness/M
+iffy/RTP
+igloo/SM
+igneous
+ignitable
+ignite/AGDS
+ignition/MS
+ignoble
+ignobly
+ignominious/Y
+ignominy/SM
+ignoramus/MS
+ignorance/M
+ignorant/Y
+ignore/GDS
+iguana/MS
+ii
+iii
+ilea
+ileitis/M
+ileum/M
+ilia
+ilium/M
+ilk/SM
+ill/SMP
+illegal/MYS
+illegality/SM
+illegibility/M
+illegible
+illegibly
+illegitimacy/M
+illegitimate/Y
+illiberal/Y
+illiberality/M
+illicit/YP
+illicitness/M
+illimitable
+illiteracy/M
+illiterate/MYS
+illness/MS
+illogical/Y
+illogicality/M
+illuminate/GNXDS
+illuminating/Y
+illumination/M
+illumine/DSBG
+illus/V
+illusion/EMS
+illusionist/SM
+illusory
+illustrate/GNVXDS
+illustration/M
+illustrative/Y
+illustrator/SM
+illustrious/PY
+illustriousness/M
+image/DSMG
+imagery/M
+imaginable/U
+imaginably/U
+imaginal
+imaginary
+imagination/MS
+imaginative/UY
+imagine/DSBJG
+imago/M
+imagoes
+imam/MS
+imbalance/DSM
+imbecile/MS
+imbecilic
+imbecility/SM
+imbibe/ZGDRS
+imbiber/M
+imbrication/M
+imbroglio/SM
+imbue/DSG
+imitable/I
+imitate/DSGNVX
+imitation/M
+imitative/PY
+imitativeness/M
+imitator/SM
+immaculate/PY
+immaculateness/M
+immanence/M
+immanency/M
+immanent/Y
+immaterial/YP
+immateriality/M
+immaterialness/M
+immature/Y
+immaturity/M
+immeasurable
+immeasurably
+immediacies/M
+immediacy/SM
+immediate/PY
+immediateness/M
+immemorial/Y
+immense/Y
+immensity/SM
+immerse/XDSGNV
+immersible
+immersion/M
+immigrant/SM
+immigrate/DSGN
+immigration/M
+imminence/M
+imminent/Y
+immobile
+immobilisation/M
+immobilise/ZGDRS
+immobility/M
+immoderate/Y
+immodest/Y
+immodesty/M
+immolate/DSGN
+immolation/M
+immoral/Y
+immorality/SM
+immortal/MYS
+immortalise/DSG
+immortality/M
+immovability/M
+immovable
+immovably
+immune
+immunisation/MS
+immunise/GDS
+immunity/M
+immunodeficiency/M
+immunodeficient
+immunoglobulin/S
+immunologic
+immunological
+immunologist/MS
+immunology/M
+immure/DSG
+immutability/M
+immutable
+immutably
+imp/SMR
+impact/SMDG
+impair/SDGL
+impaired/U
+impairment/MS
+impala/SM
+impale/DSGL
+impalement/M
+impalpable
+impalpably
+impanel/S
+impanelled
+impanelling
+impart/SDG
+impartial/Y
+impartiality/M
+impassably
+impasse/BSMV
+impassibility/M
+impassible
+impassibly
+impassioned
+impassive/YP
+impassiveness/M
+impassivity/M
+impasto/M
+impatience/MS
+impatiens/M
+impatient/Y
+impeach/ZGBLDRS
+impeachable/U
+impeacher/M
+impeachment/SM
+impeccability/M
+impeccable
+impeccably
+impecunious/PY
+impecuniousness/M
+impedance/M
+impede/DSG
+impeded/U
+impediment/SM
+impedimenta/M
+impel/S
+impelled
+impeller/MS
+impelling
+impend/SDG
+impenetrability/M
+impenetrable
+impenetrably
+impenitence/M
+impenitent/Y
+imperative/SMY
+imperceptibility/M
+imperceptible
+imperceptibly
+imperceptive
+imperf
+imperfect/SMYP
+imperfection/MS
+imperfectness/M
+imperial/MYS
+imperialism/M
+imperialist/SM
+imperialistic
+imperialistically
+imperil/SL
+imperilled
+imperilling
+imperilment/M
+imperious/PY
+imperiousness/M
+imperishable
+imperishably
+impermanence/M
+impermanent/Y
+impermeability/M
+impermeable
+impermeably
+impermissible
+impersonal/Y
+impersonate/GNXDS
+impersonation/M
+impersonator/SM
+impertinence/MS
+impertinent/Y
+imperturbability/M
+imperturbable
+imperturbably
+impervious/Y
+impetigo/M
+impetuosity/M
+impetuous/YP
+impetuousness/M
+impetus/MS
+impiety/SM
+impinge/LDSG
+impingement/M
+impious/PY
+impiousness/M
+impish/YP
+impishness/M
+implacability/M
+implacable
+implacably
+implant/BSGMD
+implantation/M
+implausibility/SM
+implausible
+implausibly
+implement/GBMDRS
+implementable/U
+implementation/SM
+implemented/U
+implicate/DSG
+implication/M
+implicit/PY
+implicitness/M
+implode/DSG
+implore/DSG
+imploring/Y
+implosion/MS
+implosive
+imply/XDSGN
+impolite/YP
+impoliteness/MS
+impolitic
+imponderable/MS
+import/ZGBSMDR
+importance/M
+important/Y
+importation/MS
+importer/M
+importunate/Y
+importune/GDS
+importunity/M
+impose/ADSG
+imposer/MS
+imposing/U
+imposingly
+imposition/MS
+impossibility/SM
+impossible/S
+impossibly
+impost/SM
+impostor/SM
+imposture/MS
+impotence/M
+impotency/M
+impotent/Y
+impound/DGS
+impoverish/DSLG
+impoverishment/M
+impracticability
+impracticable
+impracticably
+impractical/Y
+impracticality/M
+imprecate/DSXGN
+imprecation/M
+imprecise/PYN
+impreciseness/M
+imprecision/M
+impregnability/M
+impregnable
+impregnably
+impregnate/GNDS
+impregnation/M
+impresario/SM
+impress/MDSGV
+impressed/U
+impressibility/M
+impressible
+impression/BSM
+impressionability/M
+impressionism/M
+impressionist/SM
+impressionistic
+impressive/PY
+impressiveness/M
+imprimatur/SM
+imprint/MDRZGS
+imprinter/M
+imprison/SDLG
+imprisonment/SM
+improbability/SM
+improbable
+improbably
+impromptu/SM
+improper/Y
+impropriety/SM
+improve/GBDSL
+improved/U
+improvement/MS
+improvidence/M
+improvident/Y
+improvisation/SM
+improvisational
+improvise/ZGDRS
+improviser/M
+imprudence/M
+imprudent/Y
+impudence/M
+impudent/Y
+impugn/ZGSDR
+impugner/M
+impulse/MGNVDS
+impulsion/M
+impulsive/PY
+impulsiveness/M
+impulsivity
+impunity/M
+impure/RYT
+impurity/SM
+imputation/SM
+impute/BDSG
+in/ASM
+inaccuracy/S
+inaction/M
+inadequacy/S
+inadvertence/M
+inadvertent/Y
+inalienability/M
+inalienably
+inamorata/SM
+inane/RYT
+inanimate/PY
+inanimateness/M
+inanity/SM
+inappropriate/Y
+inarticulate/Y
+inasmuch
+inaudible
+inaugural/SM
+inaugurate/XGNDS
+inauguration/M
+inboard/MS
+inbound
+inbox/MS
+inbreed/S
+inc/TGD
+incalculably
+incandescence/M
+incandescent/Y
+incantation/SM
+incapacitate/GNDS
+incarcerate/XDSGN
+incarceration/M
+incarnadine/DSG
+incarnate/AXGNDS
+incarnation/AM
+incendiary/SM
+incense/MGDS
+incentive's
+incentive/ES
+inception/SM
+incessant/Y
+incest/M
+incestuous/PY
+incestuousness/M
+inch/MDSG
+inchoate
+inchworm/SM
+incidence/SM
+incident/SM
+incidental/MYS
+incinerate/DSGN
+incineration/M
+incinerator/MS
+incipience/M
+incipient/Y
+incise/XGNVDS
+incision/M
+incisive/PY
+incisiveness/M
+incisor/MS
+incitement/MS
+inciter/MS
+incl
+inclement
+inclination/EM
+inclinations
+incline's
+incline/EGDS
+include/GDS
+inclusion/MS
+inclusive/YP
+inclusiveness/M
+incognito/MS
+incombustible
+incommode/GD
+incommodious
+incommunicado
+incompatibility/S
+incompetent/MS
+incomplete/Y
+inconceivability/M
+incongruous/PY
+incongruousness/M
+inconsolably
+inconstant/Y
+incontestability/M
+incontestably
+incontinent
+incontrovertibly
+inconvenience/GD
+incorporate/ADSGN
+incorporated/U
+incorporation/AM
+incorporeal
+incorrect/Y
+incorrigibility/M
+incorrigible
+incorrigibly
+incorruptibly
+increasing/Y
+increment/SMDG
+incremental/Y
+incrementalism
+incrementalist/SM
+incriminate/GNDS
+incrimination/M
+incriminatory
+incrustation/SM
+incubate/GNDS
+incubation/M
+incubator/SM
+incubus/MS
+inculcate/DSGN
+inculcation/M
+inculpate/DSG
+incumbency/SM
+incumbent/SM
+incunabula
+incunabulum/M
+incur/SB
+incurable/MS
+incurably
+incurious
+incurred
+incurring
+incursion/MS
+ind
+indebted/P
+indebtedness/M
+indeed
+indefatigable
+indefatigably
+indefeasible
+indefeasibly
+indefinably
+indelible
+indelibly
+indemnification/M
+indemnify/GDSXN
+indemnity/SM
+indentation/MS
+indention/M
+indenture/DG
+independent/MS
+indescribably
+indestructibly
+indeterminably
+indeterminacy/M
+indeterminate/Y
+index/ZGMDRS
+indexation/SM
+indexer/M
+indicate/XDSGNV
+indication/M
+indicative/SMY
+indicator/MS
+indict/GDSBL
+indictment/SM
+indie/S
+indigence/M
+indigenous
+indigent/SMY
+indignant/Y
+indignation/M
+indigo/M
+indirect/Y
+indiscipline
+indiscreet/Y
+indiscretion/S
+indiscriminate/Y
+indispensability/M
+indispensable/MS
+indispensably
+indissolubility
+indissolubly
+indistinguishably
+indite/GDS
+indium/M
+individual/MYS
+individualisation/M
+individualise/GDS
+individualism/M
+individualist/MS
+individualistic
+individualistically
+individuality/M
+individuate/DSGN
+individuation/M
+indivisibly
+indoctrinate/GNDS
+indoctrination/M
+indolence/M
+indolent/Y
+indomitable
+indomitably
+indubitable
+indubitably
+induce/DRSZGL
+inducement/SM
+inducer/M
+induct/DGV
+inductance/M
+inductee/SM
+induction/MS
+inductive/Y
+indulge/DSG
+indulgence/SM
+indulgent/Y
+industrial/Y
+industrialisation/M
+industrialise/DSG
+industrialism/M
+industrialist/SM
+industrious/YP
+industriousness/M
+industry/SM
+indwell/SG
+inebriate/MGNDS
+inebriation/M
+inedible
+ineffability/M
+ineffable
+ineffably
+inelastic
+ineligible/MS
+ineligibly
+ineluctable
+ineluctably
+inept/YP
+ineptitude/M
+ineptness/M
+inequality/S
+inert/YP
+inertia/M
+inertial
+inertness/M
+inescapable
+inescapably
+inestimably
+inevitability/M
+inevitable/M
+inevitably
+inexact/Y
+inexhaustibly
+inexorability
+inexorable
+inexorably
+inexpedient
+inexpert/Y
+inexpiable
+inexplicably
+inexpressibly
+inexpressive
+inextricably
+inf/ZT
+infallible
+infamy/SM
+infancy/M
+infant/MS
+infanticide/MS
+infantile
+infantry/SM
+infantryman/M
+infantrymen
+infarct/MS
+infarction/M
+infatuate/DSXGN
+infatuation/M
+infect/AESDG
+infected/U
+infection/ASM
+infectious/PY
+infectiousness/M
+infelicitous
+inference/SM
+inferential
+inferior/MS
+inferiority/M
+infernal/Y
+inferno/MS
+inferred
+inferring
+infest/GDS
+infestation/MS
+infidel/MS
+infidelity/S
+infiltrator/SM
+infinite/MV
+infinitesimal/SMY
+infinitival
+infinitive/MS
+infinitude/M
+infinity/SM
+infirm
+infirmary/SM
+infirmity/SM
+infix
+inflame/DSG
+inflammable
+inflammation/SM
+inflammatory
+inflatable/SM
+inflate/ADSG
+inflation/EM
+inflationary
+inflect/SDG
+inflection/MS
+inflectional
+inflexion/SM
+inflict/SDGV
+infliction/M
+inflow/SM
+influence/MGDS
+influenced/U
+influential/Y
+influenza/M
+info/M
+infomercial/SM
+inform/Z
+informal/Y
+informant/SM
+informatics
+information/EM
+informational
+informative/PY
+informativeness/M
+informed/U
+infotainment/M
+infra
+infrared/M
+infrasonic
+infrastructural
+infrastructure/SM
+infrequence/M
+infrequent/Y
+infringement/MS
+infuriate/GDS
+infuriating/Y
+infuser/SM
+ingenious/PY
+ingeniousness/M
+ingenue/SM
+ingenuity/M
+ingenuous/EY
+ingenuousness/M
+ingest/SDG
+ingestion/M
+inglenook/SM
+ingot/SM
+ingrain/G
+ingrate/SM
+ingratiate/GNDS
+ingratiating/Y
+ingratiation/M
+ingredient/MS
+ingress/MS
+inguinal
+inhabit/DG
+inhabitable/U
+inhabitant/SM
+inhabited/U
+inhalant/SM
+inhalation/MS
+inhalator/MS
+inhaler/SM
+inharmonious
+inhere/DSG
+inherent/Y
+inherit/EGSD
+inheritance/EM
+inheritances
+inheritor/SM
+inhibit/GSD
+inhibition/SM
+inhibitor/SM
+inhibitory
+inhuman/Y
+inhumane/Y
+inimical/Y
+inimitably
+iniquitous/Y
+iniquity/SM
+initial/SMY
+initialisation
+initialise/DSG
+initialised/AU
+initialism
+initialled
+initialling
+initiate/XMGNVDS
+initiated/U
+initiation/M
+initiative/SM
+initiator/MS
+initiatory
+initio
+inject/SDG
+injection/SM
+injector/SM
+injunctive
+injure/DRSZG
+injured/U
+injurer/M
+injurious
+ink/MD
+inkblot/SM
+inkiness/M
+inkling/SM
+inkstand/SM
+inkwell/MS
+inky/RTP
+inland/M
+inline
+inmate/SM
+inmost
+inn/SGMRJ
+innards/M
+innate/PY
+innateness/M
+innermost
+innersole/SM
+innerspring
+innervate/GNDS
+innervation/M
+inning/M
+innit
+innkeeper/MS
+innocence/M
+innocent/MYS
+innocuous/PY
+innocuousness/M
+innovate/XDSGNV
+innovation/M
+innovator/MS
+innovatory
+innuendo/SM
+innumerably
+innumerate
+inoculate/AGDS
+inoculation/MS
+inoperative
+inordinate/Y
+inorganic
+inositol
+inquire/ZGDR
+inquirer/M
+inquiring/Y
+inquiry/SM
+inquisition/MS
+inquisitional
+inquisitive/YP
+inquisitiveness/M
+inquisitor/SM
+inquisitorial
+inrush/MS
+insane/T
+insatiability/M
+insatiably
+inscribe/ZGDR
+inscriber/M
+inscription/MS
+inscrutability/M
+inscrutable/P
+inscrutableness/M
+inscrutably
+inseam/SM
+insecticidal
+insecticide/MS
+insectivore/MS
+insectivorous
+insecure/Y
+inseminate/DSGN
+insemination/M
+insensate
+insensible
+insensitive/Y
+inseparable/MS
+insert's
+insert/AGSD
+insertion/AM
+insertions
+insetting
+inshore
+inside/RSMZ
+insider/M
+insidious/YP
+insidiousness/M
+insight/MS
+insightful
+insignia/M
+insinuate/GNVDSX
+insinuation/M
+insinuator/SM
+insipid/PY
+insipidity/M
+insist/SGD
+insistence/M
+insistent/Y
+insisting/Y
+insofar
+insole/SM
+insolence/M
+insolent/Y
+insoluble
+insolubly
+insolvency/S
+insomnia/M
+insomniac/SM
+insomuch
+insouciance/M
+insouciant
+inspect/AGDS
+inspection/SM
+inspector/MS
+inspectorate/MS
+inspiration/MS
+inspirational
+inspiratory
+inspired/U
+inspiring/U
+inst
+instability/S
+install/UBZRSDG
+installation/MS
+installer/UM
+instalment/MS
+instance/GD
+instant/MRYS
+instantaneous/Y
+instantiate/DSG
+instar
+instate/AGDS
+instead
+instigate/DSGN
+instigation/M
+instigator/MS
+instil/S
+instillation/M
+instinct/VMS
+instinctive/Y
+instinctual
+institute/XMZGNDRS
+instituter/M
+institution/M
+institutional/Y
+institutionalisation/M
+institutionalise/DSG
+instr
+instruct/SDGV
+instructed/U
+instruction/MS
+instructional
+instructive/Y
+instructor/MS
+instrument/MDSG
+instrumental/MYS
+instrumentalist/SM
+instrumentality/M
+instrumentation/M
+insubordinate
+insufferable
+insufferably
+insula
+insular
+insularity/M
+insulate/GNDS
+insulation/M
+insulator/MS
+insulin/M
+insult/SMDG
+insulting/Y
+insuperable
+insuperably
+insurance/SM
+insure/DRSZGB
+insured/SM
+insurer/M
+insurgence/SM
+insurgency/SM
+insurgent/MS
+insurmountably
+insurrection/SM
+insurrectionist/SM
+int
+intact
+intaglio/MS
+integer/MS
+integral/SMY
+integrate/AEVNGSD
+integration/EAM
+integrator
+integrity/M
+integument/SM
+intel/M
+intellect/MS
+intellectual/MYS
+intellectualise/GDS
+intellectualism/M
+intelligence/M
+intelligent/Y
+intelligentsia/M
+intelligibility/M
+intelligible/U
+intelligibly/U
+intended/SM
+intense/YTVR
+intensification/M
+intensifier/M
+intensify/DRSZGN
+intensity/S
+intensive/MYPS
+intensiveness/M
+intent/SMYP
+intention/MS
+intentional/UY
+intentness/M
+inter/ESL
+interact/SGVD
+interaction/SM
+interactive/Y
+interactivity
+interbred
+interbreed/GS
+intercede/GDS
+intercept/GMDS
+interception/MS
+interceptor/SM
+intercession/SM
+intercessor/MS
+intercessory
+interchange/DSMG
+interchangeability
+interchangeable
+interchangeably
+intercity
+intercollegiate
+intercom/SM
+intercommunicate/DSGN
+intercommunication/M
+interconnect/GDS
+interconnection/SM
+intercontinental
+intercourse/M
+intercultural
+interdenominational
+interdepartmental
+interdependence/M
+interdependent/Y
+interdict/GMDS
+interdiction/M
+interdisciplinary
+interest/ESMD
+interested/U
+interesting/Y
+interface/MGDS
+interfaith
+interfere/GDS
+interference/M
+interferon/M
+interfile/GDS
+intergalactic
+intergovernmental
+interim/M
+interior/SM
+interj
+interject/GDS
+interjection/SM
+interlace/GDS
+interlard/DGS
+interleave/DSG
+interleukin/M
+interline/GDSJ
+interlinear
+interlining/M
+interlink/DSG
+interlock/GMDS
+interlocutor/SM
+interlocutory
+interlope/ZGDRS
+interloper/M
+interlude/MGDS
+intermarriage/SM
+intermarry/GDS
+intermediary/SM
+intermediate/MYS
+interment/EM
+interments
+intermezzi
+intermezzo/MS
+interminably
+intermingle/DSG
+intermission/SM
+intermittence
+intermittency
+intermittent/Y
+intermix/GDS
+intern/GDL
+internal/SY
+internalisation/M
+internalise/GDS
+international/SMY
+internationalisation
+internationalise/DSG
+internationalism/M
+internationalist/SM
+internecine
+internee/SM
+internet
+internist/MS
+internment/M
+internship/MS
+interoffice
+interoperability
+interoperable
+interoperate/S
+interpenetrate/DSGN
+interpersonal
+interplanetary
+interplay/M
+interpolate/XDSGN
+interpolation/M
+interpose/GDS
+interposition/M
+interpret/AGVDS
+interpretation/AMS
+interpretative
+interpreted/U
+interpreter/MS
+interracial
+interred/E
+interregnum/SM
+interrelate/XDSGN
+interrelation/M
+interrelationship/MS
+interring/E
+interrogate/DSGNVX
+interrogation/M
+interrogative/MYS
+interrogator/SM
+interrogatory/SM
+interrupt/ZGMDRS
+interrupter/M
+interruption/MS
+interscholastic
+intersect/GDS
+intersection/SM
+intersectional
+intersectionality
+intersession/SM
+intersex
+intersperse/GNDS
+interspersion/M
+interstate/MS
+interstellar
+interstice/MS
+interstitial
+intertwine/GDS
+interurban
+interval/SM
+intervene/GDS
+intervention/SM
+interventionism/M
+interventionist/SM
+interview/ZGMDRS
+interviewee/MS
+interviewer/M
+intervocalic
+interwar
+interweave/GS
+interwove
+interwoven
+intestacy/M
+intestate
+intestinal
+intestine/MS
+intifada
+intimacy/SM
+intimate/MYGNDSX
+intimation/M
+intimidate/GNDS
+intimidating/Y
+intimidation/M
+intonation/SM
+intoxicant/SM
+intoxicate/DSGN
+intoxication/M
+intracranial
+intramural
+intramuscular
+intranet/MS
+intransigence/M
+intransigent/MYS
+intrastate
+intrauterine
+intravenous/MSY
+intrepid/Y
+intrepidity/M
+intricacy/SM
+intricate/Y
+intrigue/DRSMZG
+intriguer/M
+intriguing/Y
+intrinsic
+intrinsically
+intro/SM
+introduce/AGDS
+introduction/AM
+introductions
+introductory
+introit/SM
+introspect/GVDS
+introspection/M
+introspective/Y
+introversion/M
+introvert/MDS
+intrude/DRSZG
+intruder/M
+intrusion/SM
+intrusive/YP
+intrusiveness/M
+intuit/SDGV
+intuition/S
+intuitive/PY
+intuitiveness/M
+inundate/XDSGN
+inundation/M
+inure/DSG
+invade/DRSZG
+invader/M
+invalid/GMDYS
+invalidism/M
+invaluable
+invaluably
+invariant
+invasion/MS
+invasive
+invective/M
+inveigh/GD
+inveighs
+inveigle/ZGDRS
+inveigler/M
+invent/ASGVD
+invention/AMS
+inventive/PY
+inventiveness/M
+inventor/MS
+inventory/DSMG
+inverse/SMY
+invert/SMDRZG
+inverter/M
+invest/ASDGL
+investigate/GNVDSX
+investigation/M
+investigator/SM
+investigatory
+investiture/MS
+investment/AEM
+investor/SM
+inveteracy/M
+inveterate
+invidious/YP
+invidiousness/M
+invigilate/GNDS
+invigilator/S
+invigorate/ADSG
+invigorating/Y
+invigoration/M
+invincibility/M
+invincibly
+inviolability/M
+inviolably
+inviolate
+invitation/SM
+invitational/SM
+invite/DSMG
+invited/U
+invitee/SM
+inviting/Y
+invoke/DSG
+involuntariness/M
+involuntary/P
+involution/M
+involve/LDSG
+involved/U
+involvement/SM
+inward/SY
+ioctl
+iodide/SM
+iodine/M
+iodise/DSG
+ion/USM
+ionic
+ionisation/UM
+ionise/UDSG
+ionizer/MS
+ionosphere/MS
+ionospheric
+iota/MS
+ipecac/SM
+irascibility/M
+irascible
+irascibly
+irate/YP
+irateness/M
+ire/M
+ireful
+irenic
+irides
+iridescence/M
+iridescent/Y
+iridium/M
+iris/MS
+irk/SGD
+irksome/YP
+irksomeness/M
+iron/MDSG
+ironclad/MS
+ironic
+ironical/Y
+ironing/M
+ironmonger/S
+ironmongery
+ironstone/M
+ironware/M
+ironwood/MS
+ironwork/M
+irony/SM
+irradiate/DSGN
+irradiation/M
+irrational/SMY
+irrationality/M
+irreclaimable
+irreconcilability/M
+irreconcilable
+irreconcilably
+irrecoverable
+irrecoverably
+irredeemable
+irredeemably
+irreducible
+irreducibly
+irrefutable
+irrefutably
+irregular/MYS
+irregularity/SM
+irrelevance/MS
+irrelevancy/MS
+irrelevant/Y
+irreligion
+irreligious
+irremediable
+irremediably
+irremovable
+irreparable
+irreparably
+irreplaceable
+irrepressible
+irrepressibly
+irreproachable
+irreproachably
+irresistible
+irresistibly
+irresolute/PYN
+irresoluteness/M
+irresolution/M
+irrespective
+irresponsibility/M
+irresponsible
+irresponsibly
+irretrievable
+irretrievably
+irreverence/M
+irreverent/Y
+irreversible
+irreversibly
+irrevocable
+irrevocably
+irrigable
+irrigate/DSGN
+irrigation/M
+irritability/M
+irritable
+irritably
+irritant/SM
+irritate/DSXGN
+irritating/Y
+irritation/M
+irrupt/DGVS
+irruption/SM
+ischaemia
+ischaemic
+isinglass/M
+isl
+island/SZMR
+islander/M
+isle/MS
+islet/SM
+ism/CM
+isms
+isn't
+isobar/MS
+isobaric
+isolate/DSMGN
+isolation/M
+isolationism/M
+isolationist/SM
+isomer/MS
+isomeric
+isomerism/M
+isometric/S
+isometrically
+isometrics/M
+isomorphic
+isomorphism
+isosceles
+isotherm/SM
+isotope/SM
+isotopic
+isotropic
+issuance/M
+issue/ADSMG
+issuer/MS
+isthmian
+isthmus/MS
+it'd
+it'll
+it/USM
+ital
+italic/SM
+italicisation/M
+italicise/GDS
+italics/M
+itch/MDSG
+itchiness/M
+itchy/RPT
+item/MS
+itemisation/M
+itemise/GDS
+iterate/AXGNVDS
+iteration/AM
+iterator/S
+itinerant/SM
+itinerary/SM
+itself
+iv/U
+ivory/SM
+ivy/DSM
+ix
+j/F
+jab/SM
+jabbed
+jabber/SMDRZG
+jabberer/M
+jabbing
+jabot/SM
+jacaranda/MS
+jack/MDGS
+jackal/SM
+jackaroo/SMDG
+jackass/MS
+jackboot/SMD
+jackdaw/MS
+jacket/SMD
+jackhammer/MS
+jackknife/MGDS
+jackknives
+jackpot/MS
+jackrabbit/MS
+jackstraw/MS
+jacquard/M
+jade/MGDS
+jaded/PY
+jadedness/M
+jadeite/M
+jag/SM
+jagged/TPRY
+jaggedness/M
+jaggies
+jaguar/SM
+jail/MDRZGS
+jailbird/SM
+jailbreak/SM
+jailer/M
+jailhouse/S
+jalapeno/MS
+jalopy/SM
+jalousie/MS
+jam/SM
+jamb/MS
+jambalaya/M
+jamboree/MS
+jammed
+jamming
+jammy/RT
+jangle/DRSMZG
+jangler/M
+janitor/SM
+janitorial
+japan/SM
+japanned
+japanning
+jape/MGDS
+jar/SM
+jardiniere/SM
+jarful/MS
+jargon/M
+jarred
+jarring/Y
+jasmine/SM
+jasper/M
+jato/MS
+jaundice/DSMG
+jaunt/SGMD
+jauntily
+jauntiness/M
+jaunty/RPT
+java/M
+javelin/SM
+jaw/SGMD
+jawbone/DSMG
+jawbreaker/MS
+jawline/S
+jay/SM
+jaybird/SM
+jaywalk/DRSZG
+jaywalker/M
+jaywalking/M
+jazz/MDSG
+jazzy/TR
+jct
+jealous/Y
+jealousy/SM
+jean/MS
+jeans/M
+jeep/MS
+jeer/MDSG
+jeering/MY
+jeez
+jejuna
+jejune
+jejunum/M
+jell/DSG
+jello/S
+jelly/GDSM
+jellybean/MS
+jellyfish/MS
+jellylike
+jellyroll/SM
+jemmy/GDS
+jennet/MS
+jenny/SM
+jeopardise/GDS
+jeopardy/M
+jeremiad/MS
+jerk/MDSG
+jerkily
+jerkin/MS
+jerkiness/M
+jerkwater
+jerky/TRMP
+jeroboam/S
+jerrybuilt
+jerrycan/S
+jersey/MS
+jest/MDRSZG
+jester/M
+jesting/Y
+jet/SM
+jetliner/SM
+jetport/MS
+jetsam/M
+jetted
+jetting
+jettison/MDSG
+jetty/SM
+jewel/SM
+jewelled
+jeweller/MS
+jewellery/M
+jewelling
+jewelries
+jg
+jib/SGMD
+jibbed
+jibbing
+jibe/MS
+jiff/MS
+jiffy/SM
+jig's
+jig/AS
+jigged/A
+jigger's
+jigger/ASDG
+jigging/A
+jiggle/DSMG
+jiggly
+jigsaw/SMDG
+jihad/SM
+jihadist/SM
+jillaroo/SMDG
+jilt/MDSG
+jimmy/DSMG
+jimsonweed/M
+jingle/DSMG
+jingly
+jingoism/M
+jingoist/SM
+jingoistic
+jink/DSG
+jinn
+jinni/M
+jinrikisha/SM
+jinx/MDSG
+jitney/SM
+jitterbug/MS
+jitterbugged
+jitterbugger/M
+jitterbugging
+jitters/M
+jittery/RT
+jive/MGDS
+job/SM
+jobbed
+jobber/SM
+jobbing
+jobholder/MS
+jobless/P
+joblessness/M
+jobshare/S
+jobsworth
+jobsworths
+jock/MS
+jockey/SGMD
+jockstrap/MS
+jocose/PY
+jocoseness/M
+jocosity/M
+jocular/Y
+jocularity/M
+jocund/Y
+jocundity/M
+jodhpurs/M
+joey/S
+jog/SM
+jogged
+jogger/SM
+jogging/M
+joggle/DSMG
+john/MS
+johnny/SM
+johnnycake/MS
+join's
+join/AFDSG
+joiner/FMS
+joinery/M
+joint's
+joint/EGSD
+jointly/F
+joist/SM
+jojoba
+joke/MZGDRS
+joker/M
+jokey
+jokier
+jokiest
+joking/Y
+jollification/SM
+jollily
+jolliness/M
+jollity/M
+jolly/TGPDRSM
+jolt/MDRSZG
+jolter/M
+jonquil/SM
+josh/MDRSZG
+josher/M
+jostle/MGDS
+jot/SM
+jotted
+jotter/MS
+jotting/MS
+joule/SM
+jounce/MGDS
+jouncy
+journal/MS
+journalese/M
+journalism/M
+journalist/SM
+journalistic
+journey/ZGMDRS
+journeyer/M
+journeyman/M
+journeymen
+journo/S
+joust/SZGMDR
+jouster/M
+jousting/M
+jovial/Y
+joviality/M
+jowl/MS
+jowly/TR
+joy/SGMD
+joyful/YP
+joyfuller
+joyfullest
+joyfulness/M
+joyless/PY
+joylessness/M
+joyous/YP
+joyousness/M
+joyridden
+joyride/RSMZG
+joyrider/M
+joyriding/M
+joyrode
+joystick/SM
+jr
+jubilant/Y
+jubilation/M
+jubilee/SM
+judder/GDS
+judge's
+judge/ADSG
+judgement/SM
+judgemental
+judgeship/M
+judgmentally
+judicatory/SM
+judicature/M
+judicial/Y
+judiciary/SM
+judicious/IYP
+judiciousness/IM
+judo/M
+jug/SM
+jugful/MS
+jugged
+juggernaut/SM
+jugging
+juggle/MZGDRS
+juggler/M
+jugglery/M
+jugular/SM
+juice/DRSMZG
+juicer/M
+juicily
+juiciness/M
+juicy/PTR
+jujitsu/M
+jujube/MS
+jukebox/MS
+julep/SM
+julienne
+jumble/MGDS
+jumbo/SM
+jumbuck/SM
+jump/MDRSZG
+jumper/M
+jumpily
+jumpiness/M
+jumpsuit/MS
+jumpy/TRP
+jun
+junco/SM
+junction/FISM
+juncture/FMS
+jungle/MS
+junior/MS
+juniper/SM
+junk/MDRSZG
+junker/M
+junket/MDSG
+junketeer/MS
+junkie/MTRS
+junkyard/MS
+junta/SM
+juridic
+juridical/Y
+jurisdiction/SM
+jurisdictional
+jurisprudence/M
+jurist/MS
+juristic
+juror/SM
+jury/ISM
+juryman/M
+jurymen
+jurywoman/M
+jurywomen
+just/RYPT
+justice/IMS
+justifiable/U
+justifiably/U
+justification/M
+justified/U
+justify/XGDSN
+justness/M
+jut/SM
+jute/M
+jutted
+jutting
+juvenile/SM
+juxtapose/DSG
+juxtaposition/SM
+k/IFGS
+kHz
+kW
+kWh
+kabbalah
+kaboom
+kabuki/M
+kaddish/MS
+kaffeeklatch/MS
+kaffeeklatsch/MS
+kaftan/MS
+kahuna/S
+kaiser/MS
+kale/M
+kaleidoscope/MS
+kaleidoscopic
+kaleidoscopically
+kamikaze/MS
+kana
+kanga/SM
+kangaroo/MS
+kanji
+kaolin/M
+kapok/M
+kappa/SM
+kaput
+karakul/M
+karaoke/MS
+karat/SM
+karate/M
+karma/M
+karmic
+kart/MS
+katakana
+katydid/SM
+kayak/SMDG
+kayaking/M
+kayo/MDSG
+kazoo/SM
+kc
+kebab/SM
+kedgeree
+keel/MDSG
+keelhaul/DGS
+keen/MDRYSTGP
+keenness/M
+keep/MRSZG
+keeper/M
+keeping/M
+keepsake/MS
+keg/SM
+kelp/M
+kelpie/SM
+kelvin/SM
+ken/SM
+kenned
+kennel/SM
+kennelled
+kennelling
+kenning
+keno/M
+kepi/MS
+kept
+keratin/M
+keratitis
+kerb/MDSG
+kerbside
+kerchief/SM
+kerfuffle/S
+kernel/SM
+kerosene/M
+kestrel/MS
+ketch/MS
+ketchup/M
+keto
+ketogenic
+ketone/S
+kettle/SM
+kettledrum/SM
+key/SGMD
+keybinding/S
+keyboard/ZGSMDR
+keyboarder/M
+keyboardist/SM
+keyhole/MS
+keynote/MZGDRS
+keynoter/M
+keypad/SM
+keypunch/ZGMDRS
+keypuncher/M
+keystone/MS
+keystroke/SM
+keyword/MS
+kg
+khaki/SM
+khan/MS
+kibble/DSMG
+kibbutz/MS
+kibbutzim
+kibitz/ZGDRS
+kibitzer/M
+kibosh/M
+kick/MDRSZG
+kickback/SM
+kickball/M
+kickboxing
+kicker/M
+kickoff/MS
+kickstand/MS
+kicky/RT
+kid/SM
+kidded
+kidder/SM
+kiddie/SM
+kidding
+kiddish
+kiddo/SM
+kidnap/S
+kidnapped
+kidnapper/MS
+kidnapping/MS
+kidney/SM
+kidskin/M
+kielbasa/MS
+kielbasi
+kike/S
+kill/JMDRSZG
+killdeer/SM
+killer/M
+killing/M
+killjoy/SM
+kiln/MDSG
+kilo/MS
+kilobyte/SM
+kilocoulomb/S
+kilocycle/SM
+kilogram/SM
+kilohertz/M
+kilojoule/S
+kilolitre/MS
+kilometre/MS
+kilonewton/S
+kilopascal/S
+kiloton/SM
+kilovolt/S
+kilowatt/SM
+kilt/MDRS
+kilter/M
+kimono/MS
+kin/M
+kinase
+kind's
+kind/UPRYT
+kinda
+kindergarten/MRZS
+kindergartener/M
+kindhearted/PY
+kindheartedness/M
+kindle/AGDS
+kindliness/M
+kindling/M
+kindly/URT
+kindness/UM
+kindnesses
+kindred/M
+kinds
+kine/S
+kinematic/S
+kinematics/M
+kinetic/S
+kinetically
+kinetics/M
+kinfolk/SM
+kinfolks/M
+king/MYS
+kingdom/SM
+kingfisher/SM
+kingly/RT
+kingmaker/S
+kingpin/SM
+kingship/M
+kink/MDSG
+kinkily
+kinkiness/M
+kinky/TPR
+kinsfolk/M
+kinship/M
+kinsman/M
+kinsmen
+kinswoman/M
+kinswomen
+kiosk/SM
+kip/SM
+kipped
+kipper/MDGS
+kipping
+kirsch/MS
+kismet/M
+kiss/MDRSBZG
+kisser/M
+kissoff/SM
+kissogram/S
+kit/SGMD
+kitchen/SM
+kitchenette/MS
+kitchenware/M
+kite/MS
+kith/M
+kitsch/M
+kitschy
+kitted
+kitten/MS
+kittenish
+kitting
+kitty/SM
+kiwi/MS
+kiwifruit/MS
+kl
+klaxon/S
+kleptocracy
+kleptomania/M
+kleptomaniac/SM
+kludge/GDS
+kluge/DS
+klutz/MS
+klutziness/M
+klutzy/TRP
+km
+kn
+knack/SZMR
+knacker/GD
+knapsack/MS
+knave/SM
+knavery/M
+knavish/Y
+knead/SZGDR
+kneader/M
+knee/MDS
+kneecap/SM
+kneecapped
+kneecapping
+kneeing
+kneel/SG
+knell/SGMD
+knelt
+knew
+knicker/S
+knickerbockers/M
+knickers/M
+knickknack/MS
+knife/DSMG
+knight/MDYSG
+knighthood/MS
+knightliness/M
+knish/MS
+knit/MS
+knitted
+knitter/SM
+knitting/M
+knitwear/M
+knives
+knob/MS
+knobbly
+knobby/TR
+knock/SZGMDR
+knockabout
+knockdown/SM
+knocker/M
+knockoff/SM
+knockout/SM
+knockwurst/SM
+knoll/SM
+knot/MS
+knothole/SM
+knotted
+knotting
+knotty/TR
+know/SB
+knowing/UYS
+knowledge/M
+knowledgeable
+knowledgeably
+known
+knuckle/DSMG
+knuckleduster/S
+knucklehead/MS
+knurl/SGMD
+koala/SM
+koan/S
+kohl
+kohlrabi/M
+kohlrabies
+kola/MS
+kook/MS
+kookaburra/SM
+kookiness/M
+kooky/TPR
+kopeck/MS
+korma
+kosher/DSG
+kowtow/GMDS
+kph
+kraal/SM
+kraut/SM!
+krill/M
+krona/M
+krone/RM
+kronor
+kronur
+krypton/M
+kt
+kuchen/SM
+kudos/M
+kudzu/SM
+kumquat/MS
+kvetch/ZGMDRS
+kvetcher/M
+kw
+kylie/SM
+l/SDXTGJ
+la/M
+lab/SM
+label's
+label/AS
+labelled/UA
+labelling/A
+labia
+labial/SM
+labile
+labium/M
+laboratory/SM
+laborious/PY
+laboriousness/M
+labour/ZGSMDR
+labourer/M
+laboursaving
+laburnum/MS
+labyrinth/M
+labyrinthine
+labyrinths
+lac/M
+lace's
+lace/UGDS
+lacerate/DSGNX
+laceration/M
+lacewing/SM
+lacework/M
+lachrymal
+lachrymose
+lack/MDSG
+lackadaisical/Y
+lackey/SM
+lacklustre
+laconic
+laconically
+lacquer/GMDS
+lacrosse/M
+lactate/GNDS
+lactation/M
+lacteal
+lactic
+lactose/M
+lacuna/M
+lacunae
+lacy/RT
+lad/SGMDNJ
+ladder/GSMD
+laddie/SM
+laddish/P
+lade/S
+laden/U
+lading/M
+ladle/DSMG
+lady/SM
+ladybird/SM
+ladybug/MS
+ladyfinger/MS
+ladylike/U
+ladylove/MS
+ladyship/MS
+laetrile/M
+lag/SZMR
+lager/M
+laggard/MYS
+lagged
+lagging/M
+lagniappe/SM
+lagoon/SM
+laid/IA
+lain
+lair/MS
+laird/SM
+laity/M
+lake/MS
+lakefront/S
+lakeside
+lam/SM
+lama/MS
+lamasery/SM
+lamb/MDSG
+lambada/MS
+lambaste/GDS
+lambda/SM
+lambency/M
+lambent/Y
+lambkin/SM
+lambskin/SM
+lambswool
+lame/MYZTGDRSP
+lamebrain/MDS
+lameness/M
+lament/BSMDG
+lamentably
+lamentation/MS
+lamina/M
+laminae
+laminar
+laminate/MGNDS
+lamination/M
+lamington/SM
+lammed
+lamming
+lamp/MS
+lampblack/M
+lamplight/MRZ
+lamplighter/M
+lampoon/SGMD
+lamppost/SM
+lamprey/MS
+lampshade/SM
+lanai/SM
+lance/DRSMZG
+lancer/M
+lancet/SM
+land/MDRSGJ
+landau/SM
+landfall/MS
+landfill/MS
+landholder/SM
+landholding/MS
+landing/M
+landlady/SM
+landless/M
+landline/MS
+landlocked
+landlord/MS
+landlubber/MS
+landmark/MS
+landmass/MS
+landmine/S
+landowner/MS
+landownership
+landowning/SM
+landscape/MZGDRS
+landscaper/M
+landslid
+landslide/MGS
+landslip/S
+landsman/M
+landsmen
+landward/S
+lane/MS
+language/MS
+languid/PY
+languidness/M
+languish/DSG
+languor/SM
+languorous/Y
+lank/RYTP
+lankiness/M
+lankness/M
+lanky/RTP
+lanolin/M
+lantern/MS
+lanthanum/M
+lanyard/MS
+lap/SM
+laparoscopic
+laparoscopy
+laparotomy
+lapboard/SM
+lapdog/SM
+lapel/SM
+lapidary/SM
+lapin/SM
+lapped
+lappet/SM
+lapping
+lapse/AKGMSD
+laptop/SM
+lapwing/MS
+larboard/SM
+larcenist/SM
+larcenous
+larceny/SM
+larch/MS
+lard/MDRSZG
+larder/M
+lardy/RT
+large/RSPMYT
+largehearted
+largeness/M
+largess/M
+largish
+largo/SM
+lariat/SM
+lark/MDSG
+larkspur/SM
+larrikin/MS
+larrikinism/MS
+larva/M
+larvae
+larval
+laryngeal
+larynges
+laryngitis/M
+larynx/M
+lasagne/MS
+lascivious/YP
+lasciviousness/M
+lase/ZGDRS
+laser/M
+lash/MDSGJ
+lashing/M
+lass/MS
+lassie/SM
+lassitude/M
+lasso/SMDG
+last/MDYSG
+lasting/Y
+lat/S
+latch's
+latch/UDSG
+latchkey/SM
+late/YTRP
+latecomer/MS
+latency/M
+lateness/M
+latent
+lateral/MDYSG
+latest/M
+latex/M
+lath/MDRSZG
+lathe/M
+lather/GMD
+lathery
+laths
+latices
+latish
+latitude/MS
+latitudinal
+latitudinarian/MS
+latrine/MS
+latte/RSM
+latter/MY
+lattice/MDS
+latticework/SM
+laud/MDSGB
+laudably
+laudanum/M
+laudatory
+laugh/BMDG
+laughably
+laughing/MY
+laughingstock/SM
+laughs
+laughter/M
+launch/AGMDS
+launcher/SM
+launchpad/SM
+launder/DRZGS
+launderer/M
+launderette/SM
+laundress/MS
+laundromat/MS
+laundry/SM
+laundryman/M
+laundrymen
+laundrywoman/M
+laundrywomen
+laureate/MS
+laureateship/M
+laurel/SM
+lav/SGD
+lava/M
+lavage/M
+lavaliere/SM
+lavatorial
+lavatory/SM
+lave/S
+lavender/SM
+lavish/PTGDRSY
+lavishness/M
+law/SM
+lawbreaker/SM
+lawbreaking/M
+lawful/UPY
+lawfulness/UM
+lawgiver/MS
+lawless/PY
+lawlessness/M
+lawmaker/MS
+lawmaking/M
+lawman/M
+lawmen
+lawn/MS
+lawnmower/SM
+lawrencium/M
+lawsuit/MS
+lawyer/SM
+lax/TRYP
+laxative/MS
+laxity/M
+laxness/M
+lay/AICSGM
+layabout/S
+layaway/M
+layer/CSM
+layered
+layering/M
+layette/MS
+layman/M
+laymen
+layoff/SM
+layout/SM
+layover/MS
+laypeople
+layperson/MS
+layup/SM
+laywoman/M
+laywomen
+laze/MGDS
+lazily
+laziness/M
+lazy/DRSTGP
+lazybones/M
+lb/S
+lbw
+lea/SM
+leach/DSG
+lead/MDNRSZG
+leader/M
+leaderless
+leadership/SM
+leading/M
+leaf/MDSG
+leafage/M
+leafless
+leaflet/GMDS
+leafstalk/MS
+leafy/RT
+league/DSMG
+leak/MDSG
+leakage/MS
+leakiness/M
+leaky/PRT
+lean/MDRSTGJP
+leaning/M
+leanness/M
+leap/MDRSZG
+leaper/M
+leapfrog/MS
+leapfrogged
+leapfrogging
+leapt
+learn/AUGDS
+learnability
+learnable
+learnedly
+learner/MS
+learning's
+learnt/U
+lease/ADSMG
+leaseback/SM
+leasehold/MRSZ
+leaseholder/M
+leaser/SM
+leash's
+leash/UDSG
+least/M
+leastwise
+leather/MS
+leatherette/M
+leatherneck/MS
+leathery
+leave/DRSMZGJ
+leaven/SGMD
+leavened/U
+leavening/M
+leaver/M
+leavings/M
+lech/MDRSZG
+lecher/M
+lecherous/PY
+lecherousness/M
+lechery/M
+lecithin/M
+lectern/MS
+lecture/MZGDRS
+lecturer/M
+lectureship/SM
+ledge/RSMZ
+ledger/M
+lee/RSMZ
+leech/MDSG
+leek/MS
+leer/MDG
+leeriness/M
+leery/RPT
+leeward/SM
+leeway/M
+left/MRST
+leftism/M
+leftist/SM
+leftmost
+leftover/SM
+leftward/S
+lefty/SM
+leg/SM
+legacy/SM
+legal/SMY
+legalese/M
+legalisation/M
+legalise/GDS
+legalism/MS
+legalistic
+legalistically
+legality/SM
+legate/CXMNS
+legatee/MS
+legation's/AC
+legato/SM
+legend/SM
+legendarily
+legendary
+legerdemain/M
+legged
+legginess/M
+legging/MS
+leggy/RPT
+leghorn/MS
+legibility/M
+legible
+legibly
+legion/SM
+legionary/SM
+legionnaire/SM
+legislate/DSGNV
+legislation/M
+legislative/Y
+legislator/MS
+legislature/SM
+legit
+legitimacy/M
+legitimate/DSYG
+legitimatise/GDS
+legitimisation/M
+legitimise/DSG
+legless
+legman/M
+legmen
+legroom/SM
+legume/MS
+leguminous
+legwarmer/S
+legwork/M
+lei/SM
+leisure/DMY
+leisureliness/M
+leisurewear/M
+leitmotif/MS
+leitmotiv/MS
+lemma/S
+lemme/JG
+lemming/M
+lemon/SM
+lemonade/SM
+lemongrass
+lemony
+lemur/SM
+lend/RSZG
+lender/M
+length/MNX
+lengthen/GD
+lengthily
+lengthiness/M
+lengths
+lengthwise
+lengthy/PRT
+lenience/M
+leniency/M
+lenient/Y
+lenitive
+lens/MS
+lent
+lentil/MS
+lento
+leonine
+leopard/SM
+leopardess/MS
+leotard/SM
+leper/SM
+leprechaun/MS
+leprosy/M
+leprous
+lepta
+lepton/MS
+lesbian/SM
+lesbianism/M
+lesion/MS
+less/MNRX
+lessee/MS
+lessen/GD
+lesson/MS
+lessor/MS
+let/ISM
+letdown/SM
+lethal/Y
+lethargic
+lethargically
+lethargy/M
+letter/ZGMDRS
+letterbomb/S
+letterbox/S
+lettered/U
+letterer/M
+letterhead/MS
+lettering/M
+letterpress/M
+letting/S
+lettuce/MS
+letup/SM
+leucine
+leucotomy/S
+leukaemia/M
+leukemic/SM
+leukocyte/MS
+levee/SM
+level/PSMY
+levelheaded/P
+levelheadedness/M
+levelled
+leveller/SM
+levelling
+levelness/M
+lever/SGMD
+leverage's
+leverage/CDSG
+leviathan/MS
+levier/M
+levitate/DSGN
+levitation/M
+levity/M
+levy/DRSMZG
+lewd/RYPT
+lewdness/M
+lexer/S
+lexical
+lexicographer/MS
+lexicographic
+lexicographical
+lexicography/M
+lexicon/SM
+lexis
+lg
+liabilities
+liability/AM
+liable/A
+liaise/GDS
+liaison/MS
+liar/MS
+lib/M
+libation/SM
+libber/MS
+libel/SM
+libelled
+libeller/SM
+libelling
+libellous
+liberal/MYPS
+liberalisation/MS
+liberalise/GDS
+liberalism/M
+liberality/M
+liberalness/M
+liberate/CDSGN
+liberation/CM
+liberator/MS
+libertarian/SM
+libertine/MS
+liberty/SM
+libidinal
+libidinous
+libido/MS
+librarian/MS
+librarianship
+library/SM
+librettist/MS
+libretto/SM
+lice
+licence/MS
+license/GDS
+licensed/U
+licensee/MS
+licentiate/SM
+licentious/YP
+licentiousness/M
+lichen/MS
+licit/Y
+lick/MDJSG
+licking/M
+licorice/SM
+lid/SM
+lidded
+lidless
+lido/MS
+lie/DSM
+lied/MR
+lief/RT
+liege/SM
+lien/MS
+lieu/M
+lieutenancy/M
+lieutenant/MS
+life/MZR
+lifebelt/S
+lifeblood/M
+lifeboat/MS
+lifebuoy/MS
+lifeforms
+lifeguard/SM
+lifeless/YP
+lifelessness/M
+lifelike
+lifeline/MS
+lifelong
+lifer/M
+lifesaver/SM
+lifesaving/M
+lifespan/S
+lifestyle/SM
+lifetime/MS
+lifework/MS
+lift/MDRSZG
+lifter/M
+liftoff/SM
+ligament/MS
+ligate/GNDS
+ligation/M
+ligature/MGDS
+light's/C
+light/CASTGD
+lighted/U
+lighten/SDRZG
+lightener/M
+lighter/SM
+lightface/MD
+lightheaded
+lighthearted/YP
+lightheartedness/M
+lighthouse/MS
+lighting's
+lightly
+lightness/M
+lightning/MDS
+lightproof
+lightship/MS
+lightweight/SM
+ligneous
+lignin
+lignite/M
+lii
+like/EMGDST
+likeability/M
+likeable/P
+likeableness/M
+likelihood/UM
+likelihoods
+likeliness/UM
+likely/UPRT
+liken/SGD
+likeness/UM
+likenesses
+liker
+likewise
+liking/M
+lilac/SM
+lilliputian
+lilly
+lilo/S
+lilt/MDSG
+lily/SM
+limb/MS
+limber/UDSG
+limberness/M
+limbless
+limbo/SM
+lime/MGDS
+limeade/SM
+limelight/M
+limerick/SM
+limescale
+limestone/M
+limey/S
+limit's
+limit/CSZGDR
+limitation/CM
+limitations
+limited/U
+limiter's
+limiting/S
+limitless/P
+limitlessness/M
+limn/DSG
+limo/MS
+limousine/MS
+limp/MDRYSPTG
+limpet/MS
+limpid/YP
+limpidity/M
+limpidness/M
+limpness/M
+limy/RT
+linage/M
+linchpin/SM
+linden/MS
+line/MZGDRSJ
+lineage/MS
+lineal/Y
+lineament/SM
+linear/Y
+linearity/M
+linebacker/MS
+lined/U
+linefeed
+lineman/M
+linemen
+linen/SM
+linens/M
+liner/M
+linesman/M
+linesmen
+lineup/MS
+ling/M
+linger/ZGJDRS
+lingerer/M
+lingerie/M
+lingering/Y
+lingo/M
+lingoes
+lingual
+linguine/M
+linguist/SM
+linguistic/S
+linguistically
+linguistics/M
+liniment/SM
+lining/M
+link/MDRSG
+linkage/MS
+linkman
+linkmen
+linkup/MS
+linnet/MS
+lino
+linoleum/M
+linseed/M
+lint's
+lint/CDG
+lintel/MS
+lints
+linty/TR
+lion/MS
+lioness/MS
+lionhearted
+lionisation/M
+lionise/GDS
+lip/SM
+lipid/SM
+liposuction/M
+lipped
+lippy
+lipread/GRS
+lipreader/M
+lipreading/M
+lipstick/MDSG
+liq
+liquefaction/M
+liquefy/DSG
+liqueur/SM
+liquid/MS
+liquidate/XGNDS
+liquidation/M
+liquidator/MS
+liquidise/ZGDRS
+liquidiser/M
+liquidity/M
+liquor/MDGS
+lira/M
+lire
+lisle/M
+lisp/MDRSZG
+lisper/M
+lissom
+list/MDNSJXG
+listed/U
+listen/BMDRZG
+listener/M
+listeria
+listing/M
+listless/YP
+listlessness/M
+lit/U
+litany/SM
+litchi/MS
+lite
+literacy/M
+literal/SMYP
+literalness/M
+literariness/M
+literary/P
+literate/SMY
+literati/M
+literature/M
+lithe/RPYT
+litheness/M
+lithesome
+lithium/M
+lithograph/MDRZG
+lithographer/M
+lithographic
+lithographically
+lithographs
+lithography/M
+lithosphere/SM
+litigant/SM
+litigate/DSGN
+litigation/M
+litigator/MS
+litigious/P
+litigiousness/M
+litmus/M
+litotes/M
+litre/SM
+litter/MDRSZG
+litterateur/MS
+litterbug/MS
+litterer/M
+little/MTRP
+littleness/M
+littoral/SM
+liturgical/Y
+liturgist/SM
+liturgy/SM
+livability/M
+livable/U
+live/ATGDSB
+livelihood/SM
+liveliness/M
+livelong/S
+lively/PRT
+liven/SGD
+liver's
+liver/S
+liveried
+liverish
+liverwort/MS
+liverwurst/M
+livery/CSM
+liveryman/CM
+liverymen/C
+livestock/M
+liveware
+livid/Y
+living/MS
+lix/K
+lizard/MS
+ll
+llama/SM
+llano/SM
+lo
+load's
+load/AUGSD
+loadable
+loader/MS
+loading's
+loaf/MDRSZG
+loafer/M
+loam/M
+loamy/TR
+loan/MDRSZG
+loaner/M
+loansharking/M
+loanword/MS
+loath/JZGDRS
+loathe
+loather/M
+loathing/M
+loathsome/PY
+loathsomeness/M
+loaves
+lob/SMD
+lobar
+lobbed
+lobber/MS
+lobbing
+lobby/GDSM
+lobbyist/MS
+lobe/MS
+lobotomise/DSG
+lobotomy/SM
+lobster/MS
+local/SMY
+locale/MS
+localisation/M
+localise/DSG
+locality/SM
+locate/EAGNDS
+location's/A
+location/ESM
+locator/MS
+locavore/SM
+loci
+lock/MDRSBZG
+locker/M
+locket/MS
+lockjaw/M
+lockout/MS
+locksmith/M
+locksmiths
+lockstep/M
+lockup/MS
+loco/S
+locomotion/M
+locomotive/MS
+locoweed/SM
+locum/S
+locus/M
+locust/SM
+locution/MS
+lode/MS
+lodestar/MS
+lodestone/MS
+lodge/DRSJMZG
+lodger/M
+lodging/M
+lodgings/M
+loft/MDSG
+loftily
+loftiness/M
+lofty/PRT
+log/SM
+loganberry/SM
+logarithm/SM
+logarithmic
+logbook/SM
+loge/MS
+logged
+logger/SM
+loggerhead/SM
+loggia/SM
+logging/M
+logic/M
+logical/Y
+logicality/M
+logician/MS
+login/SM
+logistic/S
+logistical/Y
+logistics/M
+logjam/SM
+logo/MS
+logoff/SM
+logon/SM
+logotype/SM
+logout/SM
+logrolling/M
+logy/RT
+loin/MS
+loincloth/M
+loincloths
+loiter/ZGSDR
+loiterer/M
+loitering/M
+lolcat/SM
+loll/DSG
+lollipop/SM
+lollop/GSD
+lolly/S
+lollygag/S
+lollygagged
+lollygagging
+lone/YZR
+loneliness/M
+lonely/PTR
+loner/M
+lonesome/YP
+lonesomeness/M
+long's
+long/KDSTG
+longboat/MS
+longbow/MS
+longer
+longevity/M
+longhair/MS
+longhand/M
+longhorn/MS
+longhouse/S
+longing/MYS
+longish
+longitude/MS
+longitudinal/Y
+longshoreman/M
+longshoremen
+longsighted
+longstanding
+longtime
+longueur/SM
+longways
+loo
+loofah/M
+loofahs
+look/MDRSZG
+lookalike/MS
+looker/M
+lookout/MS
+lookup
+loom/MDSG
+loon/MS
+loonie/M
+loony/RSMT
+loop/MDSG
+loophole/MS
+loopy/RT
+loos/NRX
+loose/UDSTG
+loosely
+loosen/UGSD
+looseness/M
+loot/MDRSZG
+looter/M
+looting/M
+lop/S
+lope/MGDS
+lopped
+lopping
+lopsided/YP
+lopsidedness/M
+loquacious/PY
+loquaciousness/M
+loquacity/M
+lord/MDYSG
+lordliness/M
+lordly/TPR
+lordship/SM
+lore/M
+lorgnette/SM
+loris/MS
+lorn
+lorry/SM
+lose/ZGRSJ
+loser/M
+losing/M
+loss/MS
+lossless
+lost
+lot/SM
+lotion/SM
+lottery/SM
+lotto/M
+lotus/MS
+louche
+loud/RYTP
+loudhailer/SM
+loudmouth/MD
+loudmouths
+loudness/M
+loudspeaker/MS
+lough
+loughs
+lounge/MZGDRS
+lounger/M
+lour/DSG
+louse's
+louse/CDSG
+lousily
+lousiness/M
+lousy/TPR
+lout/MS
+loutish/PY
+louvre/MDS
+lovableness/M
+lovably
+love/MYZGDRSB
+lovebird/SM
+lovechild/M
+loved/U
+loveless
+loveliness/M
+lovelorn
+lovely/RSMTP
+lovemaking/M
+lover/M
+lovesick
+lovey/S
+loving/Y
+low/SZTGMDRYP
+lowborn
+lowboy/MS
+lowbrow/SM
+lowdown/M
+lower/GD
+lowercase/M
+lowermost
+lowish
+lowland/SZMR
+lowlander/M
+lowlife/SM
+lowliness/M
+lowly/TPR
+lowness/M
+lox/M
+loyal/ETY
+loyaler
+loyalism/M
+loyalist/SM
+loyalties
+loyalty/EM
+lozenge/SM
+ltd
+luau/MS
+lubber/MYS
+lube/MGDS
+lubricant/SM
+lubricate/DSGN
+lubrication/M
+lubricator/MS
+lubricious/Y
+lubricity/M
+lucid/PY
+lucidity/M
+lucidness/M
+luck/MDSG
+luckily/U
+luckiness/UM
+luckless
+lucky/UPTR
+lucrative/YP
+lucrativeness/M
+lucre/M
+lucubrate/GNDS
+lucubration/M
+ludicrous/YP
+ludicrousness/M
+ludo
+luff/DSG
+lug/SM
+luge/S
+luggage/M
+lugged
+lugger/MS
+lugging
+lughole/S
+lugsail/SM
+lugubrious/YP
+lugubriousness/M
+lukewarm/YP
+lukewarmness/M
+lull/MDSG
+lullaby/SM
+lulu/S
+lumbago/M
+lumbar
+lumber/MDRZGS
+lumberer/M
+lumbering/M
+lumberjack/SM
+lumberman/M
+lumbermen
+lumberyard/SM
+lumen
+luminary/SM
+luminescence/M
+luminescent
+luminosity/M
+luminous/Y
+lummox/MS
+lump/MDNSG
+lumpectomy/S
+lumpenproletariat
+lumpiness/M
+lumpish
+lumpy/TRP
+lunacy/SM
+lunar
+lunatic/SM
+lunch/GMDS
+lunchbox/S
+luncheon/SM
+luncheonette/SM
+lunchroom/MS
+lunchtime/MS
+lung/MDSG
+lunge/SM
+lungfish/MS
+lungful/S
+lunkhead/MS
+lupin/SM
+lupine
+lupus/M
+lurch/GMDS
+lure/MGDS
+lurgy
+lurid/PY
+luridness/M
+lurk/DRSZG
+luscious/PY
+lusciousness/M
+lush/MRSYPT
+lushness/M
+lust/MDSG
+lustful/Y
+lustily
+lustiness/M
+lustre/M
+lustreless
+lustrous/Y
+lusty/PTR
+lutanist/SM
+lute/MS
+lutenist/SM
+lutetium/M
+lux
+luxuriance/M
+luxuriant/Y
+luxuriate/DSGN
+luxuriation/M
+luxurious/PY
+luxuriousness/M
+luxury/SM
+lvi
+lvii
+lxi
+lxii
+lxiv
+lxix
+lxvi
+lxvii
+lyceum/MS
+lychgate/S
+lye/MG
+lying/M
+lymph/M
+lymphatic/SM
+lymphocyte/SM
+lymphoid
+lymphoma/SM
+lynch/JZGDRS
+lyncher/M
+lynching/M
+lynx/MS
+lyre/MS
+lyrebird/MS
+lyric/SM
+lyrical/Y
+lyricism/M
+lyricist/SM
+lysosomal
+lysosomes
+m/KAS
+ma'am
+ma/SM
+mac/SGMD
+macabre
+macadam/M
+macadamia/SM
+macadamise/GDS
+macaque/MS
+macaroni/MS
+macaroon/MS
+macaw/SM
+mace/MS
+macerate/DSGN
+maceration/M
+mach/M
+machete/SM
+machinate/GNDSX
+machination/M
+machine/DSMGB
+machinery/M
+machinist/MS
+machismo/M
+macho/M
+mackerel/SM
+mackinaw/SM
+mackintosh/MS
+macrame/M
+macro/SM
+macrobiotic/S
+macrobiotics/M
+macrocosm/SM
+macroeconomic/S
+macroeconomics/M
+macrology/S
+macron/MS
+macrophages
+macroscopic
+mad/SMYP
+madam/SM
+madame/M
+madcap/MS
+madden/DGS
+maddening/Y
+madder/MS
+maddest
+madding
+made/AU
+mademoiselle/MS
+madhouse/SM
+madman/M
+madmen
+madness/M
+madras/MS
+madrasa/SM
+madrasah/M
+madrasahs
+madrassa/SM
+madrigal/SM
+madwoman/M
+madwomen
+maelstrom/SM
+maestro/SM
+mafia/SM
+mafiosi
+mafioso/M
+mag/SM
+magazine/SM
+mage/MS
+magenta/M
+maggot/MS
+maggoty
+magi/M
+magic/SM
+magical/Y
+magician/SM
+magicked
+magicking
+magisterial/Y
+magistracy/M
+magistrate/SM
+magma/M
+magnanimity/M
+magnanimous/Y
+magnate/SM
+magnesia/M
+magnesium/M
+magnet/MS
+magnetic
+magnetically
+magnetisable
+magnetisation/CM
+magnetise/CGDS
+magnetism/M
+magnetite/M
+magneto/SM
+magnetometer/SM
+magnetosphere
+magnification/M
+magnificence/M
+magnificent/Y
+magnifier/M
+magnify/ZGXDRSN
+magniloquence/M
+magniloquent
+magnitude/SM
+magnolia/MS
+magnon
+magnum/MS
+magpie/MS
+magus/M
+maharajah/M
+maharajahs
+maharani/SM
+maharishi/SM
+mahatma/SM
+mahogany/SM
+mahout/MS
+maid/MNSX
+maiden/MY
+maidenhair/M
+maidenhead/SM
+maidenhood/M
+maidservant/SM
+mail/JMDRSZG
+mailbag/SM
+mailbomb/GSD
+mailbox/MS
+mailer/M
+mailing/M
+maillot/SM
+mailman/M
+mailmen
+mailshot/S
+maim/DSG
+main/MYS
+mainframe/SM
+mainland/MS
+mainline/MGDS
+mainmast/MS
+mainsail/MS
+mainspring/MS
+mainstay/MS
+mainstream/SMDG
+maintain/ZGBDRS
+maintainability
+maintainable/U
+maintained/U
+maintenance/M
+maintop/SM
+maisonette/MS
+maize/SM
+majestic
+majestically
+majesty/SM
+majolica/M
+major/SGMDY
+majordomo/MS
+majorette/MS
+majoritarian/SM
+majoritarianism
+majority/SM
+make's/A
+make/UAGS
+makeover/MS
+maker/SM
+makeshift/SM
+makeup/MS
+makeweight/S
+making/MS
+makings/M
+malachite/M
+maladjusted
+maladjustment/M
+maladministration
+maladroit/PY
+maladroitness/M
+malady/SM
+malaise/M
+malamute/MS
+malapropism/SM
+malaria/M
+malarial
+malarkey/M
+malathion/M
+malcontent/MS
+male/MPS
+malediction/SM
+malefaction/M
+malefactor/SM
+malefic
+maleficence/M
+maleficent
+maleness/M
+malevolence/M
+malevolent/Y
+malfeasance/M
+malformation/SM
+malformed
+malfunction/MDSG
+malice/M
+malicious/PY
+maliciousness/M
+malign/DSG
+malignancy/SM
+malignant/Y
+malignity/M
+malinger/ZGSDR
+malingerer/M
+mall/MS
+mallard/SM
+malleability/M
+malleable
+mallet/MS
+mallow/MS
+malnourished
+malnutrition/M
+malocclusion/M
+malodorous
+malpractice/SM
+malt/MDSG
+malted/MS
+maltose/M
+maltreat/GLDS
+maltreatment/M
+malty/TR
+malware/M
+mam/S
+mama/MS
+mamba/SM
+mambo/SGMD
+mamma/M
+mammal/MS
+mammalian/MS
+mammary
+mammogram/MS
+mammography/M
+mammon/M
+mammoth/M
+mammoths
+mammy/SM
+man's/F
+man/USY
+manacle/DSMG
+manage/ZGDRSL
+manageability/M
+manageable/U
+management/MS
+manager/M
+manageress/S
+managerial
+manana/MS
+manatee/SM
+mandala/SM
+mandamus/MS
+mandarin/MS
+mandate/DSMG
+mandatory
+mandible/MS
+mandibular
+mandolin/MS
+mandrake/MS
+mandrel/SM
+mandrill/MS
+mane/MDS
+manege/M
+manful/Y
+manga/M
+manganese/M
+mange/DRMZ
+manger/M
+mangetout/S
+manginess/M
+mangle/MZGDRS
+mango/M
+mangoes
+mangrove/MS
+mangy/TRP
+manhandle/GDS
+manhole/SM
+manhood/M
+manhunt/SM
+mania/SM
+maniac/MS
+maniacal/Y
+manic/SM
+manically
+manicure/MGDS
+manicurist/MS
+manifest/MDYSG
+manifestation/SM
+manifesto/SM
+manifold/GMDS
+manikin/SM
+manilla/M
+manioc/MS
+manipulable
+manipulate/XGNVDS
+manipulation/M
+manipulative/Y
+manipulator/MS
+mankind/M
+manky
+manlike
+manliness/M
+manly/UTR
+manna/M
+manned/U
+mannequin/SM
+manner/MDYS
+mannerism/SM
+mannerly/U
+manning/U
+mannish/YP
+mannishness/M
+manoeuvrability/M
+manoeuvre/DSMGBJ
+manometer/SM
+manor/SM
+manorial
+manpower/M
+manque
+mansard/MS
+manse/SXMN
+manservant/M
+mansion/M
+manslaughter/M
+manta/SM
+mantel/MS
+mantelpiece/SM
+mantelshelf
+mantelshelves
+mantilla/SM
+mantis/MS
+mantissa/SM
+mantle's
+mantle/EGDS
+mantoes
+mantra/MS
+manual/MYS
+manufacture/DRSMZG
+manufacturer/M
+manufacturing/M
+manumission/SM
+manumit/S
+manumitted
+manumitting
+manure/MGDS
+manuscript/MS
+many/M
+map's
+map/AS
+maple/SM
+mapmaker/SM
+mapped/A
+mapper/MS
+mapping/S
+mar/S
+marabou/MS
+marabout/SM
+maraca/MS
+maraschino/MS
+marathon/SMRZ
+marathoner/M
+maraud/ZGDRS
+marauder/M
+marble/MGDS
+marbleise/GDS
+marbling/M
+march/ZGMDRS
+marcher/M
+marchioness/MS
+mare/MS
+margarine/M
+margarita/MS
+marge
+margin/MS
+marginal/YS
+marginalia/M
+marginalisation
+marginalise/GDS
+marginalization's
+maria/M
+mariachi/MS
+marigold/MS
+marijuana/M
+marimba/SM
+marina/MS
+marinade/DSMG
+marinara/M
+marinate/DSGN
+marination/M
+marine/MZRS
+mariner/M
+marionette/MS
+marital/Y
+maritime
+marjoram/M
+mark/AMDSG
+markdown/SM
+marked/U
+markedly
+marker/MS
+market/MDRZGBS
+marketability/M
+marketable/U
+marketeer/SM
+marketer/M
+marketing/M
+marketplace/SM
+marking/SM
+markka/M
+markkaa
+marksman/M
+marksmanship/M
+marksmen
+markup/MS
+marl/M
+marlin/MS
+marlinespike/SM
+marmalade/M
+marmoreal
+marmoset/SM
+marmot/MS
+maroon/MDGS
+marque/MS
+marquee/SM
+marquess/MS
+marquetry/M
+marquis/MS
+marquise/M
+marquisette/M
+marred/U
+marriage/ASM
+marriageability/M
+marriageable
+married/SM
+marring
+marrow/MS
+marry/AGDS
+marsh/MS
+marshal/SM
+marshalled
+marshalling
+marshland/SM
+marshmallow/SM
+marshy/RT
+marsupial/MS
+mart/MNSX
+marten/M
+martensite
+martial/Y
+martian/S
+martin/MS
+martinet/MS
+martingale/MS
+martini/SM
+martyr/MDGS
+martyrdom/M
+marvel/MS
+marvelled
+marvelling
+marvellous/Y
+marzipan/M
+masc
+mascara/GMDS
+mascot/MS
+masculine/SM
+masculinity/M
+maser/SM
+mash/MDRSZG
+masher/M
+mashup/MS
+mask's
+mask/UDSG
+masker/MS
+masochism/M
+masochist/SM
+masochistic
+masochistically
+mason/SM
+masonic
+masonry/M
+masque/MS
+masquerade/DRSMZG
+masquerader/M
+mass/MDSGV
+massacre/MGDS
+massage/DSMG
+masseur/SM
+masseuse/MS
+massif/MS
+massive/PY
+massiveness/M
+mast/MDS
+mastectomy/SM
+master's
+master/ADGS
+masterclass/S
+masterful/Y
+masterly
+mastermind/SGMD
+masterpiece/MS
+masterstroke/SM
+masterwork/MS
+mastery/M
+masthead/MS
+mastic/M
+masticate/GNDS
+mastication/M
+mastiff/SM
+mastitis
+mastodon/SM
+mastoid/SM
+masturbate/GNDS
+masturbation/M
+masturbatory
+mat/SGMDR
+matador/SM
+match/AMS
+matchbook/SM
+matchbox/MS
+matched/U
+matching
+matchless
+matchlock/SM
+matchmaker/MS
+matchmaking/M
+matchstick/MS
+matchwood/M
+mate/MS
+material/SMY
+materialisation/M
+materialise/DSG
+materialism/M
+materialist/SM
+materialistic
+materialistically
+materiel/M
+maternal/Y
+maternity/M
+matey/S
+mathematical/Y
+mathematician/SM
+mathematics/M
+maths
+matinee/SM
+mating/M
+matins/M
+matres
+matriarch/M
+matriarchal
+matriarchs
+matriarchy/SM
+matrices
+matricidal
+matricide/MS
+matriculate/DSGN
+matriculation/M
+matrimonial
+matrimony/M
+matrix/M
+matron/MYS
+matt/S
+matte/DRSMZG
+matter/MDG
+matting/M
+mattock/SM
+mattress/MS
+maturate/GNDS
+maturation/M
+mature/YTGDRS
+maturity/SM
+matzo/SMH
+matzoh/M
+matzohs
+matzot
+maudlin
+maul/MDRSZG
+mauler/M
+maunder/SDG
+mausoleum/SM
+mauve/M
+maven/SM
+maverick/SM
+maw/SM
+mawkish/PY
+mawkishness/M
+max/GMDS
+maxi/MS
+maxilla/M
+maxillae
+maxillary
+maxim/SM
+maxima
+maximal/Y
+maximisation/M
+maximise/GDS
+maximum/SM
+may/M
+maybe/SM
+mayday/MS
+mayflower/MS
+mayfly/SM
+mayhem/M
+mayn't
+mayo/M
+mayonnaise/M
+mayor/SM
+mayoral
+mayoralty/M
+mayoress/MS
+maypole/SM
+mayst
+maze/MS
+mazurka/MS
+mdse
+me/DSH
+mead/M
+meadow/MS
+meadowlark/MS
+meagre/YP
+meagreness/M
+meal/MS
+mealiness/M
+mealtime/SM
+mealy/TPR
+mealybug/SM
+mealymouthed
+mean/MRYJPSTG
+meander/SMDJG
+meanderings/M
+meanie/M
+meaning/M
+meaningful/PY
+meaningfulness/M
+meaningless/YP
+meaninglessness/M
+meanness/M
+meant/U
+meantime/M
+meanwhile/M
+meany/SM
+meas
+measles/M
+measly/RT
+measurable
+measurably
+measure's
+measure/ADSG
+measured/U
+measureless
+measurement/MS
+meat/MS
+meatball/MS
+meathead/MS
+meatiness/M
+meatless
+meatloaf/M
+meatloaves
+meatpacking/M
+meaty/TPR
+mecca/SM
+mechanic/MS
+mechanical/Y
+mechanics/M
+mechanisation/M
+mechanise/DSG
+mechanism/SM
+mechanistic
+mechanistically
+medal/SM
+medallion/SM
+medallist/SM
+meddle/ZGDRS
+meddler/M
+meddlesome
+media/SM
+medial/AY
+median/MS
+mediate/ADSGN
+mediated/U
+mediation/AM
+mediator/MS
+medic/SM
+medicaid/M
+medical/SMY
+medicament/M
+medicare/M
+medicate/GNXDS
+medication/M
+medicinal/Y
+medicine/MS
+medico/MS
+medieval
+medievalist/MS
+mediocre
+mediocrity/SM
+meditate/DSGNVX
+meditation/M
+meditative/Y
+medium/MS
+medley/MS
+medulla/SM
+medusa
+medusae
+meed/M
+meek/RYPT
+meekness/M
+meerschaum/SM
+meet/MJSG
+meeting/M
+meetinghouse/SM
+meetup/MS
+meg/S
+mega
+megabit/SM
+megabucks/M
+megabyte/MS
+megachurch/MS
+megacycle/SM
+megadeath/M
+megadeaths
+megagram/S
+megahertz/M
+megajoule/S
+megalith/M
+megalithic
+megaliths
+megalomania/M
+megalomaniac/SM
+megalopolis/MS
+megametre/S
+megapascal/S
+megaphone/DSMG
+megapixel/SM
+megastar/S
+megaton/SM
+megawatt/MS
+meh
+meiosis/M
+meiotic
+melamine/M
+melancholia/M
+melancholic/S
+melancholy/M
+melange/MS
+melanin/M
+melanoma/SM
+meld/MDSG
+melee/SM
+meliorate/GNVDS
+melioration/M
+mellifluous/PY
+mellifluousness/M
+mellow/PTGDRYS
+mellowness/M
+melodic
+melodically
+melodious/YP
+melodiousness/M
+melodrama/MS
+melodramatic/S
+melodramatically
+melodramatics/M
+melody/SM
+melon/SM
+melt's
+melt/ADSG
+meltdown/SM
+member's
+member/EAS
+membership/SM
+membrane/SM
+membranous
+meme/MS
+memento/MS
+memo/MS
+memoir/MS
+memorabilia/M
+memorability/M
+memorable/U
+memorably
+memorandum/MS
+memorial/SM
+memorialise/DSG
+memorisation/M
+memorise/DSG
+memory/SM
+memsahib/S
+men/M
+menace/MGDS
+menacing/Y
+menage/MS
+menagerie/MS
+mend/MDRSZG
+mendacious/Y
+mendacity/M
+mendelevium/M
+mender/M
+mendicancy/M
+mendicant/SM
+mending/M
+menfolk/MS
+menfolks/M
+menhaden/M
+menial/MYS
+meningeal
+meninges
+meningitis/M
+meninx/M
+menisci
+meniscus/M
+menopausal
+menopause/M
+menorah/M
+menorahs
+mensch/MS
+menservants
+menses/M
+menstrual
+menstruate/GNDS
+menstruation/M
+mensurable
+mensuration/M
+menswear/M
+mental/Y
+mentalist/SM
+mentality/SM
+menthol/M
+mentholated
+mention/GSMD
+mentioned/U
+mentor/MDSG
+mentorship
+menu/MS
+mercantile
+mercantilism/M
+mercenary/SM
+mercer/MS
+mercerise/GDS
+merchandise/MZGDRS
+merchandiser/M
+merchandising/M
+merchant/MBS
+merchantman/M
+merchantmen
+merciful/UY
+merciless/PY
+mercilessness/M
+mercurial/Y
+mercuric
+mercury/M
+mercy/SM
+mere/MYTS
+meretricious/YP
+meretriciousness/M
+merganser/MS
+merge/DRSZG
+merger/M
+meridian/MS
+meringue/MS
+merino/MS
+merit/CSM
+merited/U
+meriting
+meritless
+meritocracy/SM
+meritocratic
+meritorious/PY
+meritoriousness/M
+mermaid/SM
+merman/M
+mermen
+merrily
+merriment/M
+merriness/M
+merry/TRP
+merrymaker/MS
+merrymaking/M
+mesa/MS
+mescal/MS
+mescalin
+mescaline/M
+mesdames
+mesdemoiselles
+mesh/MDSG
+mesmeric
+mesmerise/ZGDRS
+mesmeriser/M
+mesmerism/M
+mesomorph/M
+mesomorphs
+meson/SM
+mesosphere/SM
+mesquite/SM
+mess/MDSG
+message/MGDS
+messeigneurs
+messenger/SM
+messiah/M
+messiahs
+messianic
+messieurs
+messily
+messiness/M
+messmate/SM
+messy/PTR
+mestizo/MS
+met
+meta
+metabolic
+metabolically
+metabolise/DSG
+metabolism/SM
+metabolite/SM
+metacarpal/SM
+metacarpi
+metacarpus/M
+metadata
+metal/SM
+metalanguage/MS
+metalled
+metallic
+metallurgic
+metallurgical
+metallurgist/MS
+metallurgy/M
+metalwork/MRZG
+metalworker/M
+metalworking/M
+metamorphic
+metamorphism/M
+metamorphose/GDS
+metamorphosis/M
+metaphor/MS
+metaphoric
+metaphorical/Y
+metaphysical/Y
+metaphysics/M
+metastases
+metastasis/MDSG
+metastasise
+metastatic
+metatarsal/MS
+metatarsi
+metatarsus/M
+metatheses
+metathesis/M
+mete/MZGDRS
+metempsychoses
+metempsychosis/M
+meteor/MS
+meteoric
+meteorically
+meteorite/SM
+meteoroid/SM
+meteorologic
+meteorological
+meteorologist/SM
+meteorology/M
+meter/GMD
+metformin
+methadone/M
+methamphetamine/M
+methane/M
+methanol/M
+methinks
+method/MS
+methodical/YP
+methodicalness/M
+methodological/Y
+methodology/SM
+methotrexate
+methought
+meths
+methyl/M
+meticulous/YP
+meticulousness/M
+metier/MS
+metre/SM
+metric/S
+metrical/Y
+metricate/GNDS
+metrication/M
+metricise/GDS
+metro/SM
+metronome/MS
+metropolis/MS
+metropolitan
+mettle/M
+mettlesome
+mew/SGMD
+mewl/DSG
+mews/M
+mezzanine/MS
+mezzo/SM
+mfg
+mfr/S
+mg
+mgr
+mi/MNX
+miaow/SGMD
+miasma/MS
+mic/S
+mica/M
+mice
+mick/S
+mickey/MS
+micro/SM
+microaggression/SM
+microbe/MS
+microbial
+microbiological
+microbiologist/MS
+microbiology/M
+microbrewery/SM
+microchip/MS
+microcircuit/SM
+microcode
+microcomputer/MS
+microcosm/MS
+microcosmic
+microdot/SM
+microeconomics/M
+microelectronic/S
+microelectronics/M
+microfiber/MS
+microfiche/M
+microfilm/GMDS
+microfinance
+microfloppies
+microgroove/SM
+microlight/MS
+microloan/MS
+micromanage/ZGDRSL
+micromanagement/M
+micromanager/M
+micrometeorite/SM
+micrometer/MS
+micrometre/MS
+micron/MS
+microorganism/MS
+microphone/SM
+microplastics
+microprocessor/MS
+microscope/SM
+microscopic
+microscopical/Y
+microscopy/M
+microsecond/MS
+microsurgery/M
+microwave/DSMGB
+microwaveable
+mid
+midair/M
+midday/M
+midden/MS
+middle/MGS
+middlebrow/SM
+middleman/M
+middlemen
+middlemost
+middleweight/MS
+middy/SM
+midfield/RZ
+midge/SM
+midget/MS
+midi/MS
+midland/MS
+midlife/M
+midmost
+midnight/M
+midpoint/MS
+midrib/MS
+midriff/MS
+midsection/MS
+midshipman/M
+midshipmen
+midships
+midsize
+midst/M
+midstream/M
+midsummer/M
+midterm/MS
+midtown/M
+midway/MS
+midweek/MS
+midwife/MGDS
+midwifery/SM
+midwinter/M
+midwives
+midyear/MS
+mien/M
+miff/DSG
+might've
+might/M
+mightily
+mightiness/M
+mightn't
+mighty/TRP
+mignonette/SM
+migraine/MS
+migrant/MS
+migrate/AGDS
+migration/SM
+migratory
+mikado/MS
+mike/MGDS
+mil/SZMR
+milady/SM
+milch
+mild/MRYTP
+mildew/SMDG
+mildness/M
+mile/MS
+mileage/SM
+milepost/MS
+miler/M
+milestone/MS
+milf/MS
+milieu/SM
+militancy/M
+militant/MYS
+militarily
+militarisation/CM
+militarise/CDSG
+militarism/M
+militarist/SM
+militaristic
+military/M
+militate/GDS
+militia/SM
+militiaman/M
+militiamen
+milk/MDRSZG
+milker/M
+milkiness/M
+milkmaid/MS
+milkman/M
+milkmen
+milkshake/SM
+milksop/MS
+milkweed/SM
+milky/RTP
+mill/MDRSZGJ
+millage/M
+millennia
+millennial/M
+millennium/MS
+miller/M
+millet/M
+milliard/MS
+millibar/MS
+milligram/MS
+millilitre/MS
+millimetre/MS
+milliner/MS
+millinery/M
+milling/M
+million/HSM
+millionaire/SM
+millionairess/S
+millionth/M
+millionths
+millipede/SM
+millisecond/SM
+millpond/SM
+millrace/SM
+millstone/SM
+millstream/MS
+millwright/SM
+milometer/S
+milquetoast/SM
+milt/MDSG
+mime/MGDS
+mimeograph/GMD
+mimeographs
+mimetic
+mimic/SM
+mimicked
+mimicker/SM
+mimicking
+mimicry/SM
+mimosa/SM
+min
+minaret/MS
+minatory
+mince/DRSMZG
+mincemeat/M
+mincer/M
+mind's
+mind/ADRSZG
+mindbogglingly
+minded/P
+mindful/YP
+mindfulness/M
+mindless/YP
+mindlessness/M
+mindset/MS
+mine/MZGNDRSX
+minefield/SM
+miner/M
+mineral/MS
+mineralogical
+mineralogist/MS
+mineralogy/M
+minestrone/M
+minesweeper/SM
+mingle/DSG
+mingy
+mini/MS
+miniature/MS
+miniaturisation/M
+miniaturise/GDS
+miniaturist/MS
+minibar/S
+minibike/SM
+minibus/MS
+minicab/S
+minicam/MS
+minicomputer/SM
+minifloppies
+minim/SM
+minima
+minimal/Y
+minimalism/M
+minimalist/MS
+minimisation/M
+minimise/DSG
+minimum/MS
+mining/M
+minion/M
+miniseries/M
+miniskirt/MS
+minister/SGMD
+ministerial
+ministrant/MS
+ministration/MS
+ministry/SM
+minivan/MS
+mink/MS
+minnesinger/MS
+minnow/SM
+minor/SMDG
+minority/SM
+minoxidil/M
+minster/MS
+minstrel/SM
+minstrelsy/M
+mint/MDRSZG
+mintage/M
+minter/M
+minty/RT
+minuend/MS
+minuet/SM
+minus/MS
+minuscule/MS
+minute/PDRSMYTG
+minuteman/M
+minutemen
+minuteness/M
+minutia/M
+minutiae
+minx/MS
+miracle/MS
+miraculous/Y
+mirage/SM
+mire/MGDS
+mirror/GSMD
+mirth/M
+mirthful/PY
+mirthfulness/M
+mirthless/Y
+miry/RT
+misaddress/DSG
+misadventure/MS
+misaligned
+misalignment/M
+misalliance/MS
+misanthrope/SM
+misanthropic
+misanthropically
+misanthropist/MS
+misanthropy/M
+misapplication/M
+misapply/DSGNX
+misapprehend/GSD
+misapprehension/MS
+misappropriate/XDSGN
+misappropriation/M
+misbegotten
+misbehave/GDS
+misbehaviour/M
+misc
+miscalculate/DSXGN
+miscalculation/M
+miscall/DSG
+miscarriage/MS
+miscarry/GDS
+miscast/SG
+miscegenation/M
+miscellaneous/Y
+miscellany/SM
+mischance/SM
+mischief/M
+mischievous/YP
+mischievousness/M
+miscibility/M
+miscible
+misclassified
+miscommunication/S
+misconceive/GDS
+misconception/SM
+misconduct/MDGS
+misconstruction/MS
+misconstrue/GDS
+miscount/MDSG
+miscreant/SM
+miscue/DSMG
+misdeal/GMS
+misdealt
+misdeed/MS
+misdemeanour/MS
+misdiagnose/GDS
+misdiagnosis/M
+misdid
+misdirect/SDG
+misdirection/M
+misdo/JG
+misdoes
+misdoing/M
+misdone
+miser/SBMY
+miserableness/M
+miserably
+miserliness/M
+misery/SM
+misfeasance/M
+misfeature/S
+misfile/GDS
+misfire/MGDS
+misfit/SM
+misfitted
+misfitting
+misfortune/SM
+misgiving/MS
+misgovern/SDGL
+misgovernment/M
+misguidance/M
+misguide/DSG
+misguided/Y
+mishandle/DSG
+mishap/SM
+mishear/GS
+misheard
+mishit/S
+mishitting
+mishmash/MS
+misidentify/GDS
+misinform/DGS
+misinformation/M
+misinterpret/SGD
+misinterpretation/SM
+misjudge/LDSG
+misjudgement/SM
+mislabel/S
+mislabelled
+mislabelling
+mislaid
+mislay/GS
+mislead/GS
+misleading/Y
+misled
+mismanage/LGDS
+mismanagement/M
+mismatch/GMDS
+misname/GDS
+misnomer/MS
+misogamist/MS
+misogamy/M
+misogynist/SM
+misogynistic
+misogynous
+misogyny/M
+misplace/GLDS
+misplacement/M
+misplay/GMDS
+misprint/GMDS
+misprision/M
+mispronounce/DSG
+mispronunciation/SM
+misquotation/MS
+misquote/MGDS
+misread/GJS
+misreading/M
+misremember/GDS
+misreport/MDGS
+misrepresent/GDS
+misrepresentation/MS
+misrule/MGDS
+miss's
+miss/EDSGV
+missal/ESM
+missed/U
+misshape/GDS
+misshapen
+missile/MS
+missilery/M
+mission/AMS
+missionary/SM
+missioner/SM
+missive/MS
+misspeak/GS
+misspell/GDJS
+misspelling/M
+misspend/GS
+misspent
+misspoke
+misspoken
+misstate/GDSL
+misstatement/SM
+misstep/MS
+missus/MS
+mist's
+mist/CDRSZG
+mistakable/U
+mistake/BMGS
+mistaken/Y
+mister's
+mistily
+mistime/GDS
+mistiness/M
+mistletoe/M
+mistook
+mistral/MS
+mistranslated
+mistreat/LDGS
+mistreatment/M
+mistress/MS
+mistrial/MS
+mistrust/MDSG
+mistrustful/Y
+misty/PRT
+mistype/GS
+misunderstand/SGJ
+misunderstanding/M
+misunderstood
+misuse/DSMG
+mite/MS
+mitigate/DSGN
+mitigated/U
+mitigation/M
+mitochondria
+mitochondrial
+mitochondrion
+mitoses
+mitosis/M
+mitotic
+mitral
+mitre/DSMG
+mitt/MNSX
+mitten/M
+mitzvah
+mix/ZGMDRSB
+mixed/U
+mixer/M
+mixture/SM
+mizzen/MS
+mizzenmast/SM
+mkay
+mks
+ml
+mm
+mnemonic/MS
+mnemonically
+mo/CKHS
+moan/MDRSZG
+moaner/M
+moat/MDS
+mob's
+mob/CS
+mobbed/C
+mobbing/C
+mobile/MS
+mobilisation/CM
+mobilisations
+mobilise/CDSG
+mobiliser/MS
+mobility/M
+mobster/SM
+moccasin/SM
+mocha/SM
+mock/DRSZG
+mocker/M
+mockery/SM
+mocking/Y
+mockingbird/SM
+mod/STM
+modal/SM
+modality/S
+modded
+modding
+mode/MS
+model's
+model/AS
+modelled/A
+modeller/MS
+modelling/MS
+modem/SM
+moderate/MYGNPDS
+moderateness/M
+moderation/M
+moderator/SM
+modern/MYPS
+modernisation/M
+modernise/DRSZG
+moderniser/M
+modernism/M
+modernist/SM
+modernistic
+modernity/M
+modernness/M
+modest/Y
+modesty/M
+modicum/SM
+modifiable
+modification/M
+modified/U
+modifier/M
+modify/DRSXZGN
+modish/YP
+modishness/M
+modular
+modularisation
+modulate/CGNDS
+modulation/CM
+modulations
+modulator/MS
+module/MS
+modulo
+modulus
+moggie
+mogul/SM
+mohair/M
+moi
+moiety/SM
+moil/MDSG
+moire/SM
+moist/XTPNRY
+moisten/DRZG
+moistener/M
+moistness/M
+moisture/M
+moisturise/ZGDRS
+moisturiser/M
+molar/SM
+molasses/M
+moldboard/SM
+moldiness/M
+mole/MS
+molecular
+molecularity/M
+molecule/SM
+molehill/SM
+moleskin/M
+molest/DRZGS
+molestation/M
+molested/U
+molester/M
+moll/MS
+mollification/M
+mollify/DSNG
+mollusc/SM
+molluscan
+molly/SM
+mollycoddle/DSMG
+molten
+molter/MS
+molybdenum/M
+moment/MS
+momenta
+momentarily
+momentariness/M
+momentary/P
+momentous/PY
+momentousness/M
+momentum/M
+mommy/SM
+monad
+monarch/M
+monarchic
+monarchical
+monarchism/M
+monarchist/MS
+monarchistic
+monarchs
+monarchy/SM
+monastery/SM
+monastic/MS
+monastical/Y
+monasticism/M
+monaural
+monetarily
+monetarism/M
+monetarist/MS
+monetary
+monetisation/C
+monetise/CGDS
+money/SMD
+moneybag/MS
+moneybox/S
+moneylender/SM
+moneymaker/SM
+moneymaking/M
+monger/MDGS
+mongol/S
+mongolism/M
+mongoloid/MS
+mongoose/MS
+mongrel/SM
+monies
+moniker/SM
+monism/M
+monist/MS
+monition/SM
+monitor/SMDG
+monitory
+monk/MS
+monkey/MDGS
+monkeyshine/SM
+monkish
+monkshood/SM
+mono/M
+monochromatic
+monochrome/MS
+monocle/DSM
+monoclonal
+monocotyledon/SM
+monocotyledonous
+monocular
+monodic
+monodist/SM
+monody/SM
+monogamist/MS
+monogamous/Y
+monogamy/M
+monogram/SM
+monogrammed
+monogramming
+monograph/M
+monographs
+monolingual/MS
+monolith/M
+monolithic
+monoliths
+monologist/SM
+monologue/SM
+monomania/M
+monomaniac/MS
+monomaniacal
+monomer/SM
+mononucleosis/M
+monophonic
+monoplane/SM
+monopolisation/M
+monopolise/DRSZG
+monopoliser/M
+monopolist/SM
+monopolistic
+monopoly/SM
+monorail/MS
+monosyllabic
+monosyllable/MS
+monotheism/M
+monotheist/SM
+monotheistic
+monotone/MS
+monotonic
+monotonically
+monotonous/PY
+monotonousness/M
+monotony/M
+monounsaturated
+monoxide/MS
+monseigneur/M
+monsieur/M
+monsignor/SM
+monsoon/SM
+monsoonal
+monster/SM
+monstrance/ASM
+monstrosity/SM
+monstrous/Y
+montage/SM
+month/MY
+monthly/SM
+months
+monument/MS
+monumental/Y
+moo/SGMD
+mooch/ZGMDRS
+moocher/M
+mood/MS
+moodily
+moodiness/M
+moody/TPR
+moon/MDSG
+moonbeam/MS
+moonless
+moonlight/SMDRZG
+moonlighter/M
+moonlighting/M
+moonlit
+moonscape/SM
+moonshine/MZRS
+moonshiner/M
+moonshot/MS
+moonstone/MS
+moonstruck
+moonwalk/MS
+moor/MDJSG
+moorhen/S
+mooring/M
+moorland/MS
+moose/M
+moot/DSG
+mop/SZGMDR
+mope/MS
+moped/SM
+moper/M
+mopey
+mopier
+mopiest
+mopish
+mopped
+moppet/MS
+mopping
+moraine/SM
+moral/SMY
+morale/M
+moralisation/CM
+moralise/CGDS
+moraliser/MS
+moralism
+moralist/MS
+moralistic
+moralistically
+moralities
+morality/UM
+morass/MS
+moratorium/SM
+moray/SM
+morbid/YP
+morbidity/M
+morbidness/M
+mordancy/M
+mordant/SMY
+more/MS
+moreish
+morel/SM
+moreover
+mores/M
+morgue/MS
+moribund
+morn/MJSG
+morning/M
+morocco/M
+moron/SM
+moronic
+moronically
+morose/YP
+moroseness/M
+morph/GD
+morpheme/MS
+morphemic
+morphia/M
+morphine/M
+morphing/M
+morphological
+morphology/M
+morphs
+morrow/MS
+morsel/MS
+mortal/MYS
+mortality/M
+mortar/MDSG
+mortarboard/SM
+mortgage's
+mortgage/AGDS
+mortgagee/MS
+mortgagor/MS
+mortician/MS
+mortification/M
+mortify/NGDS
+mortise/DSMG
+mortuary/SM
+mosaic/MS
+mosey/SGD
+mosh/DSG
+mosque/MS
+mosquito/M
+mosquitoes
+moss/MS
+mossback/SM
+mossie/MTRS
+mossy
+most/MY
+mot/SM
+mote's
+mote/KCXSVN
+motel/SM
+motet/SM
+moth/M
+mothball/GMDS
+mother/MDYSG
+motherboard/SM
+motherfucker/MS!
+motherfucking/!
+motherhood/M
+motherland/MS
+motherless
+motherliness/M
+moths
+motif/SM
+motile/S
+motility/M
+motion/KCM
+motioned
+motioning
+motionless/YP
+motionlessness/M
+motivate/CDSG
+motivated/U
+motivation/SM
+motivational
+motivator/SM
+motive/MS
+motiveless
+motley/MS
+motlier
+motliest
+motocross/MS
+motor/SGMD
+motorbike/MGDS
+motorboat/MS
+motorcade/MS
+motorcar/SM
+motorcycle/DSMG
+motorcyclist/MS
+motorisation/M
+motorise/DSG
+motorist/SM
+motorman/M
+motormen
+motormouth/M
+motormouths
+motorway/SM
+mottle/GDS
+motto/M
+mottoes
+moue/MS
+mould/JSZGMDR
+moulder/MDG
+moulding/M
+mouldy/TR
+moult/SGMD
+mound/SGMD
+mount/EASGMD
+mountable
+mountain/SM
+mountaineer/SMDG
+mountaineering/M
+mountainous
+mountainside/SM
+mountaintop/SM
+mountebank/MS
+mounted/U
+mounter/MS
+mounting/SM
+mourn/SZGDR
+mourned/U
+mourner/M
+mournful/YP
+mournfulness/M
+mourning/M
+mouse/DRSMZG
+mouser/M
+mousetrap/SM
+mousetrapped
+mousetrapping
+mousiness/M
+moussaka/S
+mousse/MGDS
+moustache/DSM
+mousy/PTR
+mouth/GMD
+mouthfeel
+mouthful/MS
+mouthiness/M
+mouthpiece/MS
+mouths
+mouthwash/MS
+mouthwatering
+mouthy/PTR
+mouton/M
+movable/SM
+move/AMZGDRSB
+moved/U
+movement/SM
+mover/AM
+movie/SM
+moviegoer/SM
+moving/Y
+mow/SZGMDR
+mower/M
+moxie/M
+mozzarella/M
+mozzie/MS
+mp
+mpg
+mph
+mt
+mtg
+mtge
+mu/SM
+much/M
+mucilage/M
+mucilaginous
+muck/MDSG
+muckrake/DRSZG
+muckraker/M
+mucky/TR
+mucous
+mucus/M
+mud/M
+muddie/M
+muddily
+muddiness/M
+muddle/MGDS
+muddleheaded
+muddy/PTGDRS
+mudflap/S
+mudflat/MS
+mudguard/SM
+mudpack/S
+mudroom/MS
+mudslide/MS
+mudslinger/SM
+mudslinging/M
+muenster/M
+muesli
+muezzin/MS
+muff/MDSG
+muffin/MS
+muffle/ZGDRS
+muffler/M
+mufti/SM
+mug/SM
+mugful/MS
+mugged
+mugger/MS
+mugginess/M
+mugging/MS
+muggins
+muggle/MS
+muggy/PTR
+mugshot/MS
+mugwump/MS
+mujaheddin
+mukluk/MS
+mulatto/M
+mulattoes
+mulberry/SM
+mulch/GMDS
+mulct/SGMD
+mule/MS
+muleskinner/MS
+muleteer/MS
+mulish/PY
+mulishness/M
+mull/DSG
+mullah/M
+mullahs
+mullein/M
+mullet/MS
+mulligan/SM
+mulligatawny/M
+mullion/SMD
+multi
+multicellular
+multichannel
+multicoloured
+multicultural
+multiculturalism/M
+multidimensional
+multidisciplinary
+multifaceted
+multifamily
+multifarious/PY
+multifariousness/M
+multiform
+multigrain
+multilateral/Y
+multilayered
+multilevel
+multilingual
+multilingualism/M
+multimedia/M
+multimillionaire/SM
+multinational/SM
+multipart
+multiparty
+multiplayer/M
+multiple/MS
+multiplex/ZGMDRS
+multiplexer/M
+multiplicand/MS
+multiplication/M
+multiplicative
+multiplicity/SM
+multiplier/M
+multiply/NZGDRSX
+multiprocessing
+multiprocessor/SM
+multipurpose
+multiracial
+multistage
+multistory
+multitask/GS
+multitasking/M
+multitude/SM
+multitudinous
+multivariate
+multiverse/SM
+multivitamin/MS
+multiyear
+mum/SM
+mumble/MZGDRS
+mumbler/M
+mumbletypeg/M
+mummer/MS
+mummery/M
+mummification/M
+mummify/GNDS
+mummy/SM
+mumps/M
+mun
+munch/GDS
+munchie/S
+munchies/M
+munchkin/SM
+mundane/SY
+mung/DSG
+municipal/SMY
+municipality/SM
+munificence/M
+munificent/Y
+munition/MDGS
+mural/SM
+muralist/SM
+murder/ZGMDRS
+murderer/M
+murderess/MS
+murderous/Y
+murk/MS
+murkily
+murkiness/M
+murky/PTR
+murmur/ZGJMDRS
+murmurer/M
+murmuring/M
+murmurous
+murrain/M
+muscat/MS
+muscatel/SM
+muscle/MGDS
+musclebound
+muscleman
+musclemen
+muscly
+muscular/Y
+muscularity/M
+musculature/M
+musculoskeletal
+muse/MGDSJ
+musette/MS
+museum/MS
+mush/MDRSZG
+mushiness/M
+mushroom/GSMD
+mushy/PTR
+music/SM
+musical/MYS
+musicale/MS
+musicality/M
+musician/SMY
+musicianship/M
+musicological
+musicologist/MS
+musicology/M
+musing/MY
+musk/M
+muskeg/MS
+muskellunge/MS
+musket/MS
+musketeer/MS
+musketry/M
+muskie/M
+muskiness/M
+muskmelon/SM
+muskox/MN
+muskrat/MS
+musky/PTRS
+muslin/M
+muss/MDSG
+mussel/MS
+mussy/TR
+must've
+must/MRSZ
+mustachio/SMD
+mustang/MS
+mustard/M
+muster/GMD
+mustily
+mustiness/M
+mustn't
+musty/PTR
+mutability/M
+mutably
+mutagen/MS
+mutagenic
+mutant/MS
+mutate/XGNVDS
+mutation/M
+mutational
+mute/MYTGDRSPB
+muteness/M
+mutilate/DSGNX
+mutilation/M
+mutilator/SM
+mutineer/SM
+mutinous/Y
+mutiny/GDSM
+mutt/MS
+mutter/ZGJMDRS
+mutterer/M
+muttering/M
+mutton/M
+muttonchops/M
+muttony
+mutual/Y
+mutuality/M
+muumuu/MS
+muzak
+muzzily
+muzzle/DSMG
+muzzy/P
+my
+mycologist/SM
+mycology/M
+myelitis/M
+mynah/MS
+myocardial
+myocardium
+myopia/M
+myopic
+myopically
+myriad/SM
+myrmidon/MS
+myrrh/M
+myrtle/SM
+mys
+myself
+mysterious/PY
+mysteriousness/M
+mystery/SM
+mystic/SM
+mystical/Y
+mysticism/M
+mystification/CM
+mystify/CDSGN
+mystique/M
+myth/M
+mythic
+mythical
+mythological
+mythologise/DSG
+mythologist/SM
+mythology/SM
+myths
+myxomatosis
+n/IKTH
+naan/S
+nab/S
+nabbed
+nabbing
+nabob/SM
+nacelle/SM
+nacho/SM
+nacre/M
+nacreous
+nadir/SM
+nae
+naff/RT
+nag/SM
+nagged
+nagger/MS
+nagging
+nagware
+nah
+naiad/SM
+naif/MS
+nail/MDSG
+nailbrush/MS
+naive/RYT
+naivete/M
+naivety/M
+naked/PY
+nakedness/M
+name's
+name/AGDS
+nameable/U
+named/U
+nameless/Y
+namely
+nameplate/MS
+namesake/SM
+nana/MS
+nanny/SM
+nanobot/S
+nanometre/S
+nanosecond/SM
+nanotechnology/SM
+nanotube
+nap/SM
+napalm/MDSG
+nape/MS
+naphtha/M
+naphthalene/M
+napkin/MS
+napless
+napoleon/SM
+napped
+napper/MS
+napping
+nappy/TRSM
+narc/MS
+narcissism/M
+narcissist/MS
+narcissistic
+narcissus/M
+narcolepsy/M
+narcoleptic
+narcoses
+narcosis/M
+narcotic/SM
+narcotisation/M
+narcotise/GDS
+nark
+narky
+narrate/GNVDSX
+narration/M
+narrative/SM
+narrator/SM
+narrow/PTGMDRYS
+narrowness/M
+narwhal/MS
+nary
+nasal/SMY
+nasalisation/M
+nasalise/DSG
+nasality/M
+nascence/AM
+nascent/A
+nastily
+nastiness/M
+nasturtium/SM
+nasty/PTR
+natal
+natch
+nation/MS
+national/MYS
+nationalisation/SM
+nationalise/CDSG
+nationalism/M
+nationalist/SM
+nationalistic
+nationalistically
+nationality/SM
+nationhood/M
+nationwide
+native/MS
+nativity/SM
+natl
+natter/GMDS
+nattily
+nattiness/M
+natty/PTR
+natural's
+natural/UPY
+naturalisation/M
+naturalise/DSG
+naturalism/M
+naturalist/SM
+naturalistic
+naturalness/UM
+naturals
+nature's
+nature/CS
+naturism
+naturist/S
+naughtily
+naughtiness/M
+naughty/PTR
+nausea/M
+nauseam
+nauseate/GDS
+nauseating/Y
+nauseous/PY
+nauseousness/M
+nautical/Y
+nautilus/MS
+naval
+nave/MS
+navel/SM
+navigability/M
+navigable
+navigate/DSGN
+navigation/M
+navigational
+navigator/MS
+navvy/S
+navy/SM
+nay/SM
+naysayer/MS
+ne'er
+neanderthal/MS
+neap/MS
+near/DRYSPTG
+nearby
+nearness/M
+nearshore
+nearside
+nearsighted/YP
+nearsightedness/M
+neat/NRYPXT
+neaten/GD
+neath
+neatness/M
+nebula/M
+nebulae
+nebular
+nebulous/PY
+nebulousness/M
+necessarily/U
+necessary/SM
+necessitate/DSG
+necessitous
+necessity/SM
+neck/MDSG
+neckband/S
+neckerchief/MS
+necking/M
+necklace/MGDSJ
+neckline/MS
+necktie/MS
+necrology/M
+necromancer/SM
+necromancy/M
+necrophilia
+necrophiliac/S
+necropolis/MS
+necroses
+necrosis/M
+necrotic
+nectar/M
+nectarine/MS
+nee
+need/MDSG
+needed/U
+needful/Y
+neediness/M
+needle/MGDS
+needlepoint/M
+needless/YP
+needlessness/M
+needlewoman/M
+needlewomen
+needlework/M
+needn't
+needy/PTR
+nefarious/YP
+nefariousness/M
+neg
+negate/DSGNVX
+negation/M
+negative/MYGPDS
+negativeness/M
+negativism/M
+negativity/M
+neglect/SGMD
+neglectful/YP
+neglectfulness/M
+negligee/MS
+negligence/M
+negligent/Y
+negligible
+negligibly
+negotiability/M
+negotiable/A
+negotiate/ADSGN
+negotiation/AM
+negotiations
+negotiator/MS
+negritude/M
+negro
+negroid
+neigh/MDG
+neighbour/SGMDY
+neighbourhood/MS
+neighbourliness/M
+neighs
+neither
+nelson/SM
+nematode/SM
+nemeses
+nemesis/M
+neoclassic
+neoclassical
+neoclassicism/M
+neocolonialism/M
+neocolonialist/MS
+neocon/SM
+neoconservative/SM
+neocortex
+neodymium/M
+neolithic
+neologism/SM
+neon/M
+neonatal
+neonate/MS
+neophilia
+neophyte/MS
+neoplasm/MS
+neoplastic
+neoprene/M
+nepenthe/M
+nephew/SM
+nephrite/M
+nephritic
+nephritis/M
+nephropathy
+nepotism/M
+nepotist/SM
+nepotistic
+neptunium/M
+nerd/MS
+nerdy/RT
+nerve's
+nerve/UDSG
+nerveless/YP
+nervelessness/M
+nerviness/M
+nervous/YP
+nervousness/M
+nervy/TPR
+nest/MDSG
+nestle/GJDS
+nestling/M
+net/SM
+netball
+netbook/MS
+nether
+nethermost
+netherworld/M
+netiquette/S
+netted
+netter/S
+netting/M
+nettle/MGDS
+nettlesome
+network/SGMD
+networking/M
+neural/Y
+neuralgia/M
+neuralgic
+neurasthenia/M
+neurasthenic/MS
+neuritic/MS
+neuritis/M
+neurological/Y
+neurologist/SM
+neurology/M
+neuron/MS
+neuronal
+neuroscience
+neuroses
+neurosis/M
+neurosurgeon/MS
+neurosurgery/M
+neurosurgical
+neurotic/MS
+neurotically
+neuroticism
+neurotransmitter/SM
+neut
+neuter/MDGS
+neutral/SMY
+neutralisation/M
+neutralise/DRSZG
+neutraliser/M
+neutralism/M
+neutralist/SM
+neutrality/M
+neutrino/SM
+neutron/SM
+never
+nevermore
+nevertheless
+nevi
+nevus/M
+new/STMRYP
+newbie/MS
+newborn/SM
+newcomer/SM
+newel/SM
+newfangled
+newfound
+newline/S
+newlywed/SM
+newness/M
+news/M
+newsagency/SM
+newsagent/S
+newsboy/SM
+newscast/SMRZ
+newscaster/M
+newsdealer/SM
+newsflash/S
+newsgirl/SM
+newsgroup/MS
+newshound/S
+newsletter/MS
+newsman/M
+newsmen
+newspaper/MS
+newspaperman/M
+newspapermen
+newspaperwoman/M
+newspaperwomen
+newspeak
+newsprint/M
+newsreader/S
+newsreel/MS
+newsroom/MS
+newsstand/SM
+newsweekly/SM
+newswoman/M
+newswomen
+newsworthiness/M
+newsworthy/P
+newsy/TR
+newt/MS
+newton/MS
+next/M
+nexus/MS
+niacin/M
+nib/SM
+nibble/MZGDRS
+nibbler/M
+nice/PYTR
+niceness/M
+nicety/SM
+niche/SM
+nick/MDRSZG
+nickel/MS
+nickelodeon/SM
+nicker/MDG
+nickle/S
+nickname/DSMG
+nicotine/M
+niece/SM
+nifedipine
+niff
+niffy
+nifty/TR
+nigga/MS!
+niggard/SMY
+niggardliness/M
+niggaz/!
+nigger/SM!
+niggle/MZGDRS
+niggler/M
+nigh/RT
+night/SMY
+nightcap/SM
+nightclothes/M
+nightclub/SM
+nightclubbed
+nightclubbing
+nightdress/MS
+nightfall/M
+nightgown/SM
+nighthawk/SM
+nightie/SM
+nightingale/SM
+nightlife/M
+nightlight/S
+nightlong
+nightmare/SM
+nightmarish
+nightshade/SM
+nightshirt/SM
+nightspot/MS
+nightstand/SM
+nightstick/SM
+nighttime/M
+nightwatchman
+nightwatchmen
+nightwear/M
+nihilism/M
+nihilist/MS
+nihilistic
+nil/M
+nimbi
+nimble/TPR
+nimbleness/M
+nimbly
+nimbus/M
+nimby
+nimrod/MS
+nincompoop/SM
+nine/MS
+ninepin/MS
+ninepins/M
+nineteen/SMH
+nineteenth/M
+nineteenths
+ninetieth/M
+ninetieths
+ninety/HSM
+ninja/SM
+ninny/SM
+ninth/M
+ninths
+niobium/M
+nip/SM
+nipped
+nipper/MS
+nippiness/M
+nipping
+nipple/MS
+nippy/TPR
+nirvana/M
+nisei/M
+nit/SM
+nitpick/SZGDR
+nitpicker/M
+nitpicking/M
+nitrate/DSMGN
+nitration/M
+nitre/M
+nitric
+nitrification/M
+nitrite/SM
+nitro
+nitrocellulose/M
+nitrogen/M
+nitrogenous
+nitroglycerine/M
+nitwit/MS
+nix/GMDS
+no/SM
+nob/SY
+nobble/GDS
+nobelium/M
+nobility/M
+noble/RSPMT
+nobleman/M
+noblemen
+nobleness/M
+noblewoman/M
+noblewomen
+nobody/SM
+nocturnal/Y
+nocturne/MS
+nod/SM
+nodal
+nodded
+nodding
+noddle/MS
+noddy
+node/MS
+nodular
+nodule/MS
+noel/MS
+noes
+noggin/MS
+nohow
+noise/DSMG
+noiseless/PY
+noiselessness/M
+noisemaker/MS
+noisily
+noisiness/M
+noisome
+noisy/PTR
+nomad/SM
+nomadic
+nomenclature/MS
+nominal/Y
+nominate/ACGNVDS
+nomination's/A
+nomination/CSM
+nominative/SM
+nominator/CSM
+nominee/MS
+non
+nonabrasive
+nonabsorbent/SM
+nonacademic
+nonacceptance/M
+nonacid
+nonactive/MS
+nonaddictive
+nonadhesive
+nonadjacent
+nonadjustable
+nonadministrative
+nonage/MS
+nonagenarian/MS
+nonaggression/M
+nonalcoholic
+nonaligned
+nonalignment/M
+nonallergic
+nonappearance/MS
+nonassignable
+nonathletic
+nonattendance/M
+nonautomotive
+nonavailability/M
+nonbasic
+nonbeliever/MS
+nonbelligerent/MS
+nonbinding
+nonbreakable
+nonburnable
+noncaloric
+noncancerous
+nonce/M
+nonchalance/M
+nonchalant/Y
+nonchargeable
+nonclerical/MS
+nonclinical
+noncollectable
+noncom/MS
+noncombat
+noncombatant/MS
+noncombustible
+noncommercial/MS
+noncommittal/Y
+noncommunicable
+noncompeting
+noncompetitive
+noncompliance/M
+noncomplying
+noncomprehending
+nonconducting
+nonconductor/MS
+nonconforming
+nonconformism
+nonconformist/MS
+nonconformity/M
+nonconsecutive
+nonconstructive
+noncontagious
+noncontinuous
+noncontributing
+noncontributory
+noncontroversial
+nonconvertible
+noncooperation/M
+noncorroding
+noncorrosive
+noncredit
+noncriminal/SM
+noncritical
+noncrystalline
+noncumulative
+noncustodial
+nondairy
+nondeductible/M
+nondelivery/SM
+nondemocratic
+nondenominational
+nondepartmental
+nondepreciating
+nondescript
+nondestructive
+nondetachable
+nondeterminism
+nondeterministic
+nondisciplinary
+nondisclosure/M
+nondiscrimination/M
+nondiscriminatory
+nondramatic
+nondrinker/MS
+nondrying
+none
+noneducational
+noneffective
+nonelastic
+nonelectric
+nonelectrical
+nonempty
+nonenforceable
+nonentity/SM
+nonequivalent/MS
+nonessential
+nonesuch/MS
+nonetheless
+nonevent/MS
+nonexchangeable
+nonexclusive
+nonexempt/M
+nonexistence/M
+nonexistent
+nonexplosive/MS
+nonfactual
+nonfading
+nonfat
+nonfatal
+nonfattening
+nonferrous
+nonfiction/M
+nonfictional
+nonflammable
+nonflowering
+nonfluctuating
+nonflying
+nonfood/M
+nonfreezing
+nonfunctional
+nong/MS
+nongovernmental
+nongranular
+nonhazardous
+nonhereditary
+nonhuman
+nonidentical
+noninclusive
+nonindependent
+nonindustrial
+noninfectious
+noninflammatory
+noninflationary
+noninflected
+nonintellectual/MS
+noninterchangeable
+noninterference/M
+nonintervention/M
+nonintoxicating
+noninvasive
+nonirritating
+nonissue
+nonjudgmental
+nonjudicial
+nonlegal
+nonlethal
+nonlinear
+nonliterary
+nonliving/M
+nonmagnetic
+nonmalignant
+nonmember/MS
+nonmetal/SM
+nonmetallic
+nonmigratory
+nonmilitant
+nonmilitary
+nonnarcotic/SM
+nonnative/MS
+nonnegotiable
+nonnuclear
+nonnumerical
+nonobjective
+nonobligatory
+nonobservance/M
+nonobservant
+nonoccupational
+nonoccurence
+nonofficial
+nonoperational
+nonoperative
+nonparallel/MS
+nonpareil/MS
+nonparticipant/MS
+nonparticipating
+nonpartisan/SM
+nonpaying
+nonpayment/SM
+nonperformance/M
+nonperforming
+nonperishable
+nonperson/MS
+nonphysical/Y
+nonplus/S
+nonplussed
+nonplussing
+nonpoisonous
+nonpolitical
+nonpolluting
+nonporous
+nonpracticing
+nonprejudicial
+nonprescription
+nonproductive
+nonprofessional/SM
+nonprofit/SMB
+nonproliferation/M
+nonpublic
+nonpunishable
+nonracial
+nonradioactive
+nonrandom
+nonreactive
+nonreciprocal/SM
+nonreciprocating
+nonrecognition/M
+nonrecoverable
+nonrecurring
+nonredeemable
+nonrefillable
+nonrefundable
+nonreligious
+nonrenewable
+nonrepresentational
+nonresident/MS
+nonresidential
+nonresidual/M
+nonresistance/M
+nonresistant
+nonrestrictive
+nonreturnable/MS
+nonrhythmic
+nonrigid
+nonsalaried
+nonscheduled
+nonscientific
+nonscoring
+nonseasonal
+nonsectarian
+nonsecular
+nonsegregated
+nonsense/M
+nonsensical/Y
+nonsensitive
+nonsexist
+nonsexual
+nonskid
+nonslip
+nonsmoker/SM
+nonsmoking
+nonsocial
+nonspeaking
+nonspecialist/MS
+nonspecializing
+nonspecific
+nonspiritual/SM
+nonstaining
+nonstandard
+nonstarter/MS
+nonstick
+nonstop
+nonstrategic
+nonstriking
+nonstructural
+nonsuccessive
+nonsupport/GM
+nonsurgical
+nonsustaining
+nonsympathiser/M
+nontarnishable
+nontaxable
+nontechnical
+nontenured
+nontheatrical
+nonthinking
+nonthreatening
+nontoxic
+nontraditional
+nontransferable
+nontransparent
+nontrivial
+nontropical
+nonuniform
+nonunion
+nonuser/MS
+nonvenomous
+nonverbal
+nonviable
+nonviolence/M
+nonviolent/Y
+nonvirulent
+nonvocal
+nonvocational
+nonvolatile
+nonvoter/MS
+nonvoting
+nonwhite/MS
+nonworking
+nonyielding
+nonzero
+noodle/MGDS
+nook/MS
+nookie
+nooky
+noon/M
+noonday/M
+noontide/M
+noontime/M
+noose/SM
+nope
+nor
+nor'easter
+norm/MS
+normal/MY
+normalcy/M
+normalisation/M
+normalise/DSG
+normality/M
+normative
+north/ZMR
+northbound
+northeast/MRZ
+northeaster/MY
+northeastern
+northeastward/S
+norther/MY
+northerly/SM
+northern/ZR
+northerner/M
+northernmost
+northward/S
+northwest/ZMR
+northwester/MY
+northwestern
+northwestward/S
+nose/MGDS
+nosebag/S
+nosebleed/MS
+nosecone/SM
+nosedive/DSMG
+nosegay/SM
+nosh/MDRSZG
+nosher/M
+nosily
+nosiness/M
+nostalgia/M
+nostalgic
+nostalgically
+nostril/MS
+nostrum/MS
+nosy/RPT
+not/B
+notability/SM
+notable/SM
+notably
+notarial
+notarisation
+notarise/GDS
+notarization's
+notary/SM
+notate/GDS
+notation/FCSM
+notch/GMDS
+note's
+note/FCSDG
+notebook/MS
+notelet/S
+notepad/S
+notepaper/M
+noteworthiness/M
+noteworthy/P
+nothing/PSM
+nothingness/M
+notice/MGDS
+noticeable/U
+noticeably
+noticeboard/S
+noticed/U
+notifiable
+notification/M
+notifier/M
+notify/NDRSXZG
+notion/MS
+notional/Y
+notoriety/M
+notorious/Y
+notwithstanding
+notwork/S
+nougat/MS
+nought/MS
+noun/KMS
+nourish/DSLG
+nourishment/M
+nous
+nova/MS
+novae
+novel/SM
+novelette/SM
+novelisation/MS
+novelise/DSG
+novelist/SM
+novella/MS
+novelty/SM
+novena/MS
+novenae
+novice/MS
+novitiate/MS
+now/M
+nowadays/M
+noway/S
+nowhere/M
+nowise
+nowt
+noxious
+nozzle/MS
+nu/SM
+nuance/MDS
+nub/SM
+nubbin/MS
+nubby/TR
+nubile
+nuclear/K
+nucleate/DSGN
+nucleation/M
+nuclei
+nucleic
+nucleoli
+nucleolus/M
+nucleon/SM
+nucleoside
+nucleotide
+nucleus/M
+nude/MTRS
+nudge/GDSM
+nudism/M
+nudist/SM
+nudity/M
+nugatory
+nugget/SM
+nuggety
+nuisance/MS
+nuke/MGDS
+null/S
+nulla
+nullification/M
+nullify/NDSG
+nullity/M
+numb/ZTGPDRYS
+number's
+number/ASDG
+numbered/U
+numberless
+numbness/M
+numbskull/SM
+numerable/I
+numeracy/IM
+numeral/SM
+numerate/XGNDS
+numeration/M
+numerator/MS
+numeric
+numerical/Y
+numerologist/MS
+numerology/M
+numerous/Y
+numinous
+numismatic/S
+numismatics/M
+numismatist/SM
+nun/SM
+nuncio/SM
+nunnery/SM
+nuptial/MS
+nurse/MZGDRS
+nurselings
+nursemaid/MS
+nurser/M
+nursery/SM
+nurseryman/M
+nurserymen
+nursing/M
+nursling/SM
+nurture/DRSMZG
+nurturer/M
+nut/SM
+nutcase/S
+nutcracker/MS
+nuthatch/MS
+nuthouse/S
+nutmeat/SM
+nutmeg/SM
+nutpick/SM
+nutria/SM
+nutrient/MS
+nutriment/MS
+nutrition/M
+nutritional/Y
+nutritionist/SM
+nutritious/YP
+nutritiousness/M
+nutritive
+nutshell/MS
+nutted
+nutter/S
+nuttiness/M
+nutting
+nutty/RTP
+nuzzle/DRSMZG
+nuzzler/M
+nybble/S
+nylon/MS
+nylons/M
+nymph/M
+nymphet/MS
+nympho/S
+nymphomania/M
+nymphomaniac/SM
+nymphs
+o
+o'clock
+o'er
+oaf/SM
+oafish/PY
+oafishness/M
+oak/SMN
+oakum/M
+oar/SGMD
+oarlock/SM
+oarsman/M
+oarsmen
+oarswoman/M
+oarswomen
+oases
+oasis/M
+oat/SMN
+oatcake/SM
+oath/M
+oaths
+oatmeal/M
+oats/M
+ob/S
+obbligato/MS
+obduracy/M
+obdurate/PY
+obdurateness/M
+obedience/EM
+obedient/EY
+obeisance/SM
+obeisant
+obelisk/MS
+obese
+obesity/M
+obey/EDSG
+obfuscate/GNXDS
+obfuscation/M
+obi/SM
+obit/MS
+obituary/SM
+obj
+object/SGVMD
+objectify/NGDS
+objection/SMB
+objectionable/U
+objectionably
+objective/SMYP
+objectiveness/M
+objectivity/M
+objector/MS
+objurgate/XGNDS
+objurgation/M
+oblate/NX
+oblation/M
+obligate/DSXGN
+obligation/M
+obligatorily
+obligatory
+oblige/EGDS
+obliging/Y
+oblique/SMYP
+obliqueness/M
+obliquity/M
+obliterate/DSGN
+obliteration/M
+oblivion/M
+oblivious/YP
+obliviousness/M
+oblong/MS
+obloquy/M
+obnoxious/YP
+obnoxiousness/M
+oboe/MS
+oboist/MS
+obscene/RYT
+obscenity/SM
+obscurantism/M
+obscurantist/SM
+obscure/DRSYTG
+obscurity/SM
+obsequies
+obsequious/PY
+obsequiousness/M
+obsequy/M
+observably
+observance/MS
+observant/Y
+observation/SM
+observational
+observatory/SM
+observe/DRSBZG
+observed/U
+observer/M
+obsess/DSGV
+obsession/SM
+obsessional/Y
+obsessive/PSMY
+obsessiveness/M
+obsidian/M
+obsolesce/DSG
+obsolescence/M
+obsolescent
+obsolete/GDS
+obstacle/MS
+obstetric/S
+obstetrical
+obstetrician/SM
+obstetrics/M
+obstinacy/M
+obstinate/Y
+obstreperous/YP
+obstreperousness/M
+obstruct/DGVS
+obstructed/U
+obstruction/SM
+obstructionism/M
+obstructionist/MS
+obstructive/YP
+obstructiveness/M
+obtain/DBLGS
+obtainable/U
+obtainment/M
+obtrude/DSG
+obtrusion/M
+obtrusive/UPY
+obtrusiveness/UM
+obtuse/YTRP
+obtuseness/M
+obverse/SM
+obviate/DSGN
+obviation/M
+obvious/PY
+obviousness/M
+ocarina/MS
+occasion/GMDS
+occasional/Y
+occidental/SM
+occlude/GDS
+occlusion/SM
+occlusive
+occult/M
+occultism/M
+occultist/SM
+occupancy/M
+occupant/SM
+occupation/AM
+occupational/Y
+occupations
+occupied/U
+occupier/SM
+occupy/ADSG
+occur/AS
+occurred/A
+occurrence/SM
+occurring/A
+ocean/SM
+oceanfront/SM
+oceangoing
+oceanic/M
+oceanographer/SM
+oceanographic
+oceanography/M
+oceanology/M
+ocelot/MS
+och
+ochre/M
+ocker/S
+octagon/MS
+octagonal
+octal
+octane/MS
+octave/MS
+octavo/MS
+octet/SM
+octogenarian/SM
+octopus/MS
+ocular/MS
+oculist/SM
+oculomotor
+odalisque/SM
+odd/STRYLP
+oddball/SM
+oddity/SM
+oddment/SM
+oddness/M
+odds/M
+ode/SM
+odious/YP
+odiousness/M
+odium/M
+odometer/MS
+odoriferous
+odorous
+odour/SMD
+odourless
+odyssey/MS
+oecus
+oedema/MS
+oedipal
+oenology/M
+oenophile/SM
+oesophagi
+oesophagus
+oestradiol
+oestrogen/MS
+oestrous
+oestrus/MS
+oeuvre/MS
+of
+off/SZGDRJ
+offal/M
+offbeat/MS
+offence/MS
+offend/ZGDRS
+offender/M
+offensive's
+offensive/IPY
+offensiveness/IM
+offensives
+offer/JGMD
+offering/M
+offertory/SM
+offhand
+offhanded/PY
+offhandedness/M
+office/MZRS
+officeholder/SM
+officer/M
+official/MYS
+officialdom/M
+officialese
+officialism/M
+officiant/SM
+officiate/DSG
+officiator/MS
+officious/PY
+officiousness/M
+offing/M
+offish
+offline
+offload/SDG
+offprint/SM
+offset/MS
+offsetting
+offshoot/MS
+offshore/G
+offside
+offsite
+offspring/M
+offstage/S
+offtrack
+oft
+often/TR
+oftentimes
+ofttimes
+ogle/MZGDRS
+ogler/M
+ogre/MS
+ogreish
+ogress/MS
+oh/M
+ohm/SM
+ohmmeter/MS
+oho
+ohs
+oi
+oik/S
+oil/SGMD
+oilcan/S
+oilcloth/M
+oilcloths
+oilfield/S
+oiliness/M
+oilman
+oilmen
+oilskin/MS
+oilskins/M
+oily/RPT
+oink/MDSG
+ointment/SM
+okapi/SM
+okay/MDSG
+okra/MS
+old/TMNRP
+oldie/SM
+oldish
+oldness/M
+oldster/MS
+ole/SMV
+oleaginous
+oleander/MS
+oleo/M
+oleomargarine/M
+olfactory/SM
+oligarch/M
+oligarchic
+oligarchical
+oligarchs
+oligarchy/SM
+oligonucleotide/S
+oligopoly/SM
+olive/SM
+om/SMNX
+ombudsman/M
+ombudsmen
+omega/SM
+omelette/MS
+omen/M
+omicron/MS
+ominous/YP
+ominousness/M
+omission/MS
+omit/S
+omitted
+omitting
+omnibus/MS
+omnipotence/M
+omnipotent
+omnipresence/M
+omnipresent
+omniscience/M
+omniscient
+omnivore/MS
+omnivorous/PY
+omnivorousness/M
+on/Y
+onboard
+once/M
+oncogene/SM
+oncologist/SM
+oncology/M
+oncoming
+one/SXMNP
+oneness/M
+onerous/PY
+onerousness/M
+oneself
+onetime
+ongoing
+onion/M
+onionskin/M
+online
+onlooker/SM
+onlooking
+onomatopoeia/M
+onomatopoeic
+onomatopoetic
+onrush/MSG
+onscreen
+onset/MS
+onshore
+onside
+onsite
+onslaught/MS
+onstage
+onto
+ontogeny/M
+ontological
+ontology/M
+onus/MS
+onward/S
+onya/S
+onyx/MS
+oodles/M
+ooh/GD
+oohs
+oomph
+oops
+ooze/MGDS
+oozy/TR
+op/SMDG
+opacity/M
+opal/MS
+opalescence/M
+opalescent
+opaque/PYTGDRS
+opaqueness/M
+opcode/S
+ope/S
+open/ZTGJPMDRYS
+opencast
+opened/U
+opener/M
+openhanded/P
+openhandedness/M
+openhearted
+opening/M
+openness/M
+openwork/M
+opera/MS
+operable/I
+operand/S
+operate/DSGNVX
+operatic
+operatically
+operation/M
+operational/Y
+operative/SM
+operator/SM
+operetta/SM
+ophthalmic
+ophthalmologist/SM
+ophthalmology/M
+opiate/SM
+opine/GNXDS
+opinion/M
+opinionated
+opioid/SM
+opium/M
+opossum/MS
+opp
+opponent/SM
+opportune/IY
+opportunism/M
+opportunist/SM
+opportunistic
+opportunistically
+opportunity/SM
+oppose/DSG
+opposed/U
+opposite/SMYNX
+opposition/M
+oppress/DSGV
+oppression/M
+oppressive/YP
+oppressiveness/M
+oppressor/MS
+opprobrious/Y
+opprobrium/M
+opt/SGD
+optic/MS
+optical/Y
+optician/SM
+optics/M
+optima
+optimal/Y
+optimisation/SM
+optimise/DRSG
+optimism/SM
+optimist/SM
+optimistic
+optimistically
+optimum/SM
+option/SMDG
+optional/Y
+optometrist/MS
+optometry/M
+opulence/M
+opulent/Y
+opus/MS
+or
+oracle/SM
+oracular
+oral/MYS
+orality
+orange/SMP
+orangeade/MS
+orangery/SM
+orangutan/SM
+orate/GNXDS
+oration/M
+orator/SM
+oratorical/Y
+oratorio/MS
+oratory/SM
+orb/SM
+orbicular
+orbit/MDRZGS
+orbital/SM
+orbiter/M
+orc/SM
+orchard/SM
+orchestra/MS
+orchestral
+orchestrate/DSXGN
+orchestration/M
+orchid/SM
+ordain/SDLG
+ordainment/M
+ordeal/SM
+order/EAMDGS
+ordered/U
+orderings
+orderliness/EM
+orderly/PSM
+ordinal/SM
+ordinance/SM
+ordinarily
+ordinariness/M
+ordinary/SMP
+ordinate/MNSX
+ordination/M
+ordnance/M
+ordure/M
+ore/SM
+oregano/M
+org
+organ/MS
+organdie/M
+organelle/MS
+organic/SM
+organically/I
+organisation/ASM
+organisational/Y
+organise/AESDG
+organised/U
+organiser/MS
+organism/MS
+organismic
+organist/MS
+organza/M
+orgasm/SM
+orgasmic
+orgiastic
+orgy/SM
+oriel/MS
+orient's
+orient/AEDGS
+oriental/MS
+orientalist/S
+orientate/EDSGN
+orientation/AEM
+orientations
+orienteering
+orifice/MS
+orig
+origami/M
+origin/SM
+original/MYS
+originality/M
+originate/DSGN
+origination/M
+originator/SM
+oriole/SM
+orison/SM
+ormolu/M
+ornament/SGMD
+ornamental
+ornamentation/M
+ornate/YP
+ornateness/M
+orneriness/M
+ornery/PRT
+ornithological
+ornithologist/MS
+ornithology/M
+orotund
+orotundity/SM
+orphan/SMDG
+orphanage/MS
+orris/MS
+orthodontia/M
+orthodontic/S
+orthodontics/M
+orthodontist/SM
+orthodox/U
+orthodoxy/SM
+orthogonal
+orthogonality
+orthographic
+orthographically
+orthography/SM
+orthopaedic/S
+orthopaedics/M
+orthopaedist/MS
+orzo/M
+oscillate/GNDSX
+oscillation/M
+oscillator/SM
+oscillatory
+oscilloscope/MS
+osculate/DSXGN
+osculation/M
+osier/MS
+osmium/M
+osmosis/M
+osmotic
+osprey/SM
+ossicles
+ossification/M
+ossify/NGDS
+ostensible
+ostensibly
+ostentation/M
+ostentatious/Y
+osteoarthritis/M
+osteopath/M
+osteopathic
+osteopaths
+osteopathy/M
+osteoporosis/M
+ostler/S
+ostracise/GDS
+ostracism/M
+ostrich/MS
+other/MSP
+otherwise
+otherworldly
+otiose
+otter/MS
+ottoman/MS
+oubliette/MS
+ouch
+ought
+oughtn't
+ounce/MS
+our/S
+ourselves
+oust/ZGDRS
+ouster/M
+out/SJGMDR
+outage/SM
+outargue/GDS
+outback/MS
+outbalance/DSG
+outbid/S
+outbidding
+outboard/MS
+outboast/DSG
+outbound
+outbox/MS
+outbreak/MS
+outbuilding/MS
+outburst/SM
+outcast/MS
+outclass/DSG
+outcome/MS
+outcrop/MS
+outcropped
+outcropping/SM
+outcry/SM
+outdated
+outdid
+outdistance/GDS
+outdo/G
+outdoes
+outdone
+outdoor/S
+outdoors/M
+outdoorsy
+outdraw/GS
+outdrawn
+outdrew
+outercourse
+outermost
+outerwear/M
+outface/GDS
+outfall/S
+outfield/SMRZ
+outfielder/M
+outfight/SG
+outfit/SM
+outfitted
+outfitter/MS
+outfitting
+outflank/GSD
+outflow/MS
+outfought
+outfox/GDS
+outgo/MJG
+outgoes
+outgrew
+outgrow/HGS
+outgrown
+outgrowth/M
+outgrowths
+outguess/GDS
+outgun/S
+outgunned
+outgunning
+outhit/S
+outhitting
+outhouse/SM
+outing/M
+outlaid
+outlandish/PY
+outlandishness/M
+outlast/DSG
+outlaw/SGMD
+outlay/SGM
+outlet/SM
+outlier/S
+outline/MGDS
+outlive/GDS
+outlook/MS
+outlying
+outmanoeuvre/DSG
+outmatch/GDS
+outmoded
+outnumber/DSG
+outpace/GDS
+outpatient/MS
+outperform/GSD
+outplace/L
+outplacement/M
+outplay/GDS
+outpoint/DGS
+outpost/MS
+outpouring/MS
+outproduce/DSG
+output/SM
+outputted
+outputting
+outrace/GDS
+outrage/MGDS
+outrageous/Y
+outran
+outrank/GDS
+outre
+outreach/MDSG
+outrider/MS
+outrigger/SM
+outright
+outrun/S
+outrunning
+outscore/GDS
+outsell/GS
+outset/SM
+outshine/GS
+outshone
+outshout/GDS
+outside/MZRS
+outsider/M
+outsize/MS
+outskirt/MS
+outsmart/GDS
+outsold
+outsource/DSG
+outsourcing/M
+outspend/SG
+outspent
+outspoken/YP
+outspokenness/M
+outspread/GS
+outstanding/Y
+outstation/MS
+outstay/DGS
+outstretch/DSG
+outstrip/S
+outstripped
+outstripping
+outta
+outtake/MS
+outvote/GDS
+outward/YS
+outwear/GS
+outweigh/GD
+outweighs
+outwit/S
+outwith
+outwitted
+outwitting
+outwore
+outwork/MDRSZG
+outworn
+ouzo/MS
+ova
+oval/MS
+ovarian
+ovary/SM
+ovate/NX
+ovation/M
+oven/MS
+ovenbird/SM
+ovenproof
+ovenware
+over/MYS
+overabundance/M
+overabundant
+overachieve/ZGDRS
+overachiever/M
+overact/GVSD
+overage/SM
+overaggressive
+overall/SM
+overalls/M
+overambitious
+overanxious
+overarching
+overarm/GSD
+overate
+overattentive
+overawe/DSG
+overbalance/MGDS
+overbear/GS
+overbearing/Y
+overbid/SM
+overbidding
+overbite/MS
+overblown
+overboard
+overbold
+overbook/DGS
+overbore
+overborne
+overbought
+overbuild/SG
+overbuilt
+overburden/GSD
+overbuy/GS
+overcame
+overcapacity/M
+overcapitalise/DSG
+overcareful
+overcast/MGS
+overcautious
+overcharge/DSMG
+overclock/GD
+overcloud/SGD
+overcoat/MS
+overcome/GS
+overcompensate/DSGN
+overcompensation/M
+overconfidence/M
+overconfident
+overconscientious
+overcook/DGS
+overcritical
+overcrowd/SDG
+overcrowding/M
+overdecorate/DSG
+overdependent
+overdevelop/SDG
+overdid
+overdo/G
+overdoes
+overdone
+overdose/MGDS
+overdraft/SM
+overdraw/GS
+overdrawn
+overdress/GMDS
+overdrew
+overdrive/SM
+overdub/SM
+overdubbed
+overdubbing
+overdue
+overeager
+overeat/GSN
+overemotional
+overemphasis/GMDS
+overemphasise
+overenthusiastic
+overestimate/MGNDS
+overestimation/M
+overexcite/DSG
+overexercise/GDS
+overexert/SDG
+overexertion/M
+overexpose/GDS
+overexposure/M
+overextend/DGS
+overfed
+overfeed/GS
+overfill/DGS
+overflew
+overflight/MS
+overflow/MDSG
+overflown
+overfly/GS
+overfond
+overfull
+overgeneralise/DSG
+overgenerous
+overgraze/DSG
+overgrew
+overground
+overgrow/HSG
+overgrown
+overgrowth/M
+overhand/MDS
+overhang/MSG
+overhasty
+overhaul/MDSG
+overhead/MS
+overhear/SG
+overheard
+overheat/DSG
+overhung
+overindulge/GDS
+overindulgence/M
+overindulgent
+overinflated
+overjoy/GSD
+overkill/M
+overladen
+overlaid
+overlain
+overland
+overlap/SM
+overlapped
+overlapping
+overlarge
+overlay/GSM
+overleaf
+overlie
+overload/GMDS
+overlong
+overlook/GMDS
+overlord/MS
+overly/SG
+overmanned
+overmanning
+overmaster/SDG
+overmodest
+overmuch/S
+overnice
+overnight/MS
+overoptimism/M
+overoptimistic
+overpaid
+overparticular
+overpass/MS
+overpay/GS
+overplay/GDS
+overpopulate/GNDS
+overpopulation/M
+overpower/SDG
+overpowering/Y
+overpraise/DSG
+overprecise
+overprice/DSG
+overprint/SMDG
+overproduce/GDS
+overproduction/M
+overprotect/SDGV
+overqualified
+overran
+overrate/GDS
+overreach/GDS
+overreact/SDG
+overreaction/SM
+overrefined
+overridden
+override/MGS
+overripe/M
+overrode
+overrule/GDS
+overrun/SM
+overrunning
+oversampling
+oversaw
+oversea/S
+oversee/RSZ
+overseeing
+overseen
+overseer/M
+oversell/GS
+oversensitive/P
+oversensitiveness/M
+oversexed
+overshadow/DSG
+overshare/DSG
+overshoe/MS
+overshoot/GS
+overshot
+oversight/SM
+oversimple
+oversimplification/M
+oversimplify/DSNGX
+oversized
+oversleep/GS
+overslept
+oversold
+overspecialisation/M
+overspecialise/GDS
+overspend/SG
+overspent
+overspread/GS
+overstaffed
+overstate/DSLG
+overstatement/MS
+overstay/DSG
+overstep/S
+overstepped
+overstepping
+overstimulate/DSG
+overstock/GSD
+overstretch/GDS
+overstrict
+overstrung
+overstuffed
+oversubscribe/DSG
+oversubtle
+oversupply/GDS
+oversuspicious
+overt/Y
+overtake/GS
+overtaken
+overtax/GDS
+overthink/SG
+overthought
+overthrew
+overthrow/SMG
+overthrown
+overtime/MS
+overtire/GDS
+overtone/MS
+overtook
+overture/MS
+overturn/DSG
+overuse/DSMG
+overvaluation/S
+overvalue/DSG
+overview/MS
+overweening/Y
+overweight/M
+overwhelm/SGD
+overwhelming/Y
+overwinter/SDG
+overwork/GMDS
+overwrite/GS
+overwritten
+overwrote
+overwrought
+overzealous
+oviduct/SM
+oviparous
+ovoid/MS
+ovular
+ovulate/DSGN
+ovulation/M
+ovule/MS
+ovum/M
+ow
+owe/DSG
+owl/SM
+owlet/MS
+owlish/Y
+own/ESGD
+owner/MS
+ownership/M
+ox/MN
+oxalate
+oxblood/M
+oxbow/MS
+oxcart/SM
+oxford/SM
+oxidant/MS
+oxidase
+oxidation/M
+oxidative
+oxide/MS
+oxidisation/M
+oxidise/ZGDRS
+oxidiser/M
+oxtail/S
+oxyacetylene/M
+oxygen/M
+oxygenate/DSGN
+oxygenation/M
+oxymora
+oxymoron/M
+oyster/SM
+oz
+ozone/M
+p/NRXTGJ
+pH
+pa/SMH
+pablum/M
+pabulum/M
+pace/MZGDRS
+pacemaker/SM
+pacer/M
+pacesetter/SM
+pacey
+pachyderm/MS
+pachysandra/MS
+pacific
+pacifically
+pacification/M
+pacifier/M
+pacifism/M
+pacifist/SM
+pacifistic
+pacify/ZGDRSN
+pack's
+pack/AUGSD
+package's
+package/AGDS
+packager/SM
+packaging/M
+packer/MS
+packet/MS
+packing's
+packinghouse/SM
+packsaddle/MS
+pact/MS
+pacy/RT
+pad/SM
+padded
+padding/M
+paddle/MZGDRS
+paddler/M
+paddock/MDGS
+paddy/SM
+padlock/MDSG
+padre/SM
+paean/SM
+paediatric/S
+paediatrician/MS
+paedophile/S
+paedophilia
+paella/MS
+pagan/SM
+paganism/M
+page/MZGDRS
+pageant/MS
+pageantry/M
+pageboy/SM
+pager/M
+paginate/DSGN
+pagination/M
+pagoda/MS
+pah
+paid/AU
+pail/MS
+pailful/SM
+pain/MDSG
+painful/PY
+painfuller
+painfullest
+painfulness/M
+painkiller/MS
+painkilling
+painless/PY
+painlessness/M
+painstaking/MY
+paint/SZGJMDR
+paintball
+paintbox/MS
+paintbrush/MS
+painted/U
+painter/MY
+painting/M
+paintwork
+pair/AMDSG
+paired/U
+pairing/S
+pairwise
+paisley/SM
+pal/SMY
+palace/MS
+paladin/SM
+palaeolithic
+palaeontologist/MS
+palaeontology/M
+palanquin/SM
+palatable/U
+palatal/SM
+palatalisation/M
+palatalise/GDS
+palate/MBS
+palatial/Y
+palatinate/MS
+palatine/MS
+palaver/GSMD
+palazzi
+palazzo
+pale/MYTGPDRSJ
+paleface/MS
+paleness/M
+paleo
+paleographer/MS
+paleography/M
+palette/SM
+palfrey/SM
+palimony/M
+palimpsest/MS
+palindrome/MS
+palindromic
+paling/M
+palisade/SM
+palish
+pall/MDSG
+palladium/M
+pallbearer/MS
+pallet/MS
+palliate/DSGNV
+palliation/M
+palliative/SM
+pallid/YP
+pallidness/M
+pallor/M
+palm/MDSG
+palmate
+palmetto/SM
+palmist/SM
+palmistry/M
+palmtop/SM
+palmy/TR
+palomino/MS
+palpable
+palpably
+palpate/DSGN
+palpation/M
+palpitate/XGNDS
+palpitation/M
+palsy/GDSM
+paltriness/M
+paltry/RPT
+pampas/M
+pamper/DSG
+pamphlet/MS
+pamphleteer/MS
+pan/SM
+panacea/SM
+panache/M
+panama/MS
+panatella/S
+pancake/DSMG
+panchromatic
+pancreas/MS
+pancreatic
+pancreatitis
+panda/SM
+pandemic/SM
+pandemonium/M
+pander/MDRZGS
+panderer/M
+pane/KM
+panegyric/SM
+panel/SM
+panelled
+panelling/SM
+panellist/SM
+panes
+pang/MS
+panhandle/DRSMZG
+panhandler/M
+panic/SM
+panicked
+panicking
+panicky
+panned
+pannier/SM
+panning
+panoply/SM
+panorama/SM
+panoramic
+panpipes/M
+pansy/SM
+pant/MDSG
+pantaloons/M
+pantechnicon/S
+pantheism/M
+pantheist/SM
+pantheistic
+pantheon/SM
+panther/MS
+pantie/MS
+panto/S
+pantomime/MGDS
+pantomimic
+pantomimist/SM
+pantry/SM
+pantsuit/SM
+pantyhose/M
+pantyliner/M
+pantywaist/SM
+pap/SM
+papa/MS
+papacy/SM
+papal
+paparazzi/M
+paparazzo
+papaya/MS
+paper/SZGMDR
+paperback/SM
+paperbark/S
+paperboard/M
+paperboy/SM
+paperclip/S
+paperer/M
+papergirl/SM
+paperhanger/SM
+paperhanging/M
+paperless
+paperweight/MS
+paperwork/M
+papery
+papilla/M
+papillae
+papillary
+papist/MS
+papoose/MS
+pappy/SM
+paprika/M
+papyri
+papyrus/M
+par/SZGMDRBJ
+para/MS
+parable/MS
+parabola/SM
+parabolic
+paracetamol/S
+parachute/DSMG
+parachutist/MS
+parade/MZGDRS
+parader/M
+paradigm/SM
+paradigmatic
+paradisaical
+paradise/SM
+paradox/MS
+paradoxical/Y
+paraffin/M
+paragliding
+paragon/MS
+paragraph/GMD
+paragraphs
+parakeet/SM
+paralegal/MS
+parallax/MS
+parallel/SGMD
+paralleled/U
+parallelisation
+parallelised
+parallelism/MS
+parallelogram/SM
+paralyse/DSG
+paralysing/Y
+paralysis/M
+paralytic/SM
+paramagnetic
+paramecia
+paramecium/M
+paramedic/MS
+paramedical/MS
+parameter/MS
+parameterise/D
+parametric
+paramilitary/SM
+paramount
+paramountcy
+paramour/SM
+paranoia/M
+paranoiac/MS
+paranoid/SM
+paranormal
+parapet/MS
+paraphernalia/M
+paraphrase/DSMG
+paraplegia/M
+paraplegic/SM
+paraprofessional/MS
+parapsychologist/MS
+parapsychology/M
+paraquat/M
+parasailing
+parascending
+parasite/SM
+parasitic
+parasitical/Y
+parasitism/M
+parasol/MS
+parasympathetic/S
+parathion/M
+parathyroid/MS
+paratroop/RZS
+paratrooper/M
+paratroops/M
+paratyphoid/M
+parboil/DSG
+parcel/MS
+parcelled
+parcelling
+parch/LGDS
+parchment/SM
+pardner/S
+pardon/ZGMDRBS
+pardonable/U
+pardonably/U
+pardoner/M
+pare/S
+paregoric/M
+parent/GMDS
+parentage/M
+parental
+parentheses
+parenthesis/MDSG
+parenthesise
+parenthetic
+parenthetical/Y
+parenthood/M
+parenting/M
+parer/M
+pares/S
+paresis/M
+parfait/MS
+pariah/M
+pariahs
+paribus
+parietal
+parimutuel/MS
+paring/M
+parish/MS
+parishioner/MS
+parity/ESM
+park/MDSG
+parka/SM
+parking/M
+parkland
+parkour
+parkway/MS
+parky
+parlance/M
+parlay/GMDS
+parley/GMDS
+parliament/SM
+parliamentarian/SM
+parliamentary
+parlour/MS
+parlous
+parmigiana
+parochial/Y
+parochialism/M
+parodist/SM
+parody/GDSM
+parole/MGDS
+parolee/MS
+parotid
+paroxysm/SM
+paroxysmal
+parquet/MDSG
+parquetry/M
+parred
+parricidal
+parricide/MS
+parring
+parrot/GMDS
+parry/GDSM
+parse/DRSG
+parsec/MS
+parsimonious/Y
+parsimony/M
+parsley/M
+parsnip/MS
+parson/MS
+parsonage/MS
+part's
+part/CDSG
+partake/ZGRS
+partaken
+partaker/M
+parterre/SM
+parthenogenesis/M
+partial/MYS
+partiality/M
+participant/SM
+participate/DSGN
+participation/M
+participator/MS
+participatory
+participial/M
+participle/MS
+particle/SM
+particleboard/M
+particular/SMY
+particularisation/M
+particularise/DSG
+particularity/SM
+particulate/SM
+parting/MS
+partisan/SM
+partisanship/M
+partition/GMDS
+partitive/MS
+partly
+partner/MDSG
+partnership/MS
+partook
+partridge/SM
+parturition/M
+partway
+party/GDSM
+parvenu/MS
+pascal/MS
+paschal
+pasha/SM
+pass/M
+passably
+passage/MS
+passageway/MS
+passbook/MS
+passe/DRSBXZGNV
+passel/MS
+passenger/SM
+passer/M
+passerby/M
+passersby
+passim
+passing/MY
+passion/EM
+passionate/EY
+passionflower/SM
+passionless
+passive/PMYS
+passiveness/M
+passivisation
+passivity/M
+passivize/DSG
+passkey/MS
+passphrase/S
+passport/MS
+password/MS
+past/AMS
+pasta/SM
+paste/DSMG
+pasteboard/M
+pastel/MS
+pastern/MS
+pasteurisation/M
+pasteurise/ZGDRS
+pasteurised/U
+pasteuriser/M
+pastiche/MS
+pastie
+pastille/MS
+pastime/MS
+pastiness/M
+pastor/MS
+pastoral/MS
+pastorate/MS
+pastrami/M
+pastry/SM
+pasturage/M
+pasture/DSMG
+pastureland/M
+pasty/PTRSM
+pat/SM
+patch/EGMDS
+patchily
+patchiness/M
+patchouli
+patchwork/SM
+patchy/TPR
+pate/MS
+patella/MS
+patellae
+patent/GMDYS
+paterfamilias/MS
+paternal/Y
+paternalism/M
+paternalist/S
+paternalistic
+paternity/M
+paternoster/MS
+path/M
+pathetic
+pathetically
+pathfinder/SM
+pathless
+pathogen/SM
+pathogenic
+pathological/Y
+pathologist/SM
+pathology/M
+pathos/M
+paths
+pathway/MS
+patience/M
+patient/IMST
+patienter
+patiently
+patina/MS
+patinae
+patio/SM
+patisserie/S
+patois/M
+patresfamilias
+patriarch/M
+patriarchal
+patriarchate/MS
+patriarchs
+patriarchy/SM
+patrician/SM
+patricidal
+patricide/SM
+patrimonial
+patrimony/SM
+patriot/SM
+patriotic/U
+patriotically
+patriotism/M
+patrol/MS
+patrolled
+patrolling
+patrolman/M
+patrolmen
+patrolwoman/M
+patrolwomen
+patron/MS
+patronage/MS
+patroness/MS
+patronise/ZGDRS
+patroniser/M
+patronising/Y
+patronymic/SM
+patronymically
+patroon/SM
+patsy/SM
+patted
+patter/MDGS
+pattern/SMDG
+patting
+patty/SM
+paucity/M
+paunch/MS
+paunchy/RT
+pauper/MS
+pauperise/DSG
+pauperism/M
+pause/DSMG
+pave/AGDS
+paved/U
+pavement/MS
+pavilion/SM
+paving/MS
+pavlova/S
+paw/SGMD
+pawl/MS
+pawn/MDSG
+pawnbroker/MS
+pawnbroking/M
+pawnshop/MS
+pawpaw/MS
+pay's
+pay/ASGBL
+payback/SM
+paycheck/MS
+payday/MS
+payed
+payee/SM
+payer/SM
+payload/SM
+paymaster/SM
+payment/ASM
+payoff/MS
+payola/M
+payout/MS
+payphone/S
+payroll/SM
+payslip/SM
+paywall/SM
+payware
+pct
+pd
+pea/SM
+peace/SM
+peaceable
+peaceably
+peaceful/PY
+peacefulness/M
+peacekeeper/SM
+peacekeeping/M
+peacemaker/MS
+peacemaking/M
+peacetime/M
+peach/MS
+peachy/TR
+peacock/MS
+peafowl/MS
+peahen/MS
+peak/MDSG
+peaky
+peal/AMDSG
+peanut/MS
+pear/MYS
+pearl/SGMD
+pearly/RT
+peasant/SM
+peasantry/M
+peashooter/SM
+peat/M
+peaty/TR
+pebble/MGDS
+pebbly
+pecan/SM
+peccadillo/M
+peccadilloes
+peccary/SM
+peck/MDRSZG
+peckish
+pecs
+pectic
+pectin/M
+pectoral/MS
+pectoralis
+peculate/GNDS
+peculation/M
+peculator/SM
+peculiar/Y
+peculiarity/SM
+pecuniary
+pedagogic
+pedagogical/Y
+pedagogue/SM
+pedagogy/M
+pedal/SM
+pedalled
+pedalling
+pedalo/S
+pedant/MS
+pedantic
+pedantically
+pedantry/M
+peddle/GDS
+pederast/MS
+pederasty/M
+pedestal/MS
+pedestrian/SM
+pedestrianisation
+pedestrianise/GDS
+pediatrics's
+pedicab/SM
+pedicure/MGDS
+pedicurist/MS
+pedigree/MDS
+pediment/MS
+pedlar/MS
+pedometer/MS
+peduncle/MS
+pee/DRSMZ
+peeing
+peek/MDSG
+peekaboo/M
+peel/MDRSJZG
+peeled/U
+peeler/M
+peeling/M
+peen/MS
+peep/MDRSZG
+peepbo
+peeper/M
+peephole/MS
+peepshow/MS
+peer/MDG
+peerage/SM
+peeress/MS
+peerless
+peeve/DSMG
+peevish/PY
+peevishness/M
+peewee/MS
+peewit/S
+peg/SM
+pegboard/MS
+pegged
+pegging
+peignoir/SM
+pejoration/M
+pejorative/SMY
+peke/MS
+pekineses
+pekingese/SM
+pekoe/M
+pelagic
+pelf/M
+pelican/MS
+pellagra/M
+pellet/GMDS
+pellucid
+pelmet/S
+pelt/MDSG
+pelvic
+pelvis/MS
+pemmican/M
+pen/M
+penal
+penalisation/M
+penalise/DSG
+penalty/SM
+penance/MS
+pence
+penchant/SM
+pencil/MS
+pencilled
+pencilling/S
+pend/CDSG
+pendant/CMS
+pendent/MS
+pendulous
+pendulum/MS
+penetrability/M
+penetrable
+penetrate/DSGNVX
+penetrating/Y
+penetration/M
+penfriend/S
+penguin/MS
+penicillin/M
+penile
+peninsula/SM
+peninsular
+penis/MS
+penitence/M
+penitent/SMY
+penitential
+penitentiary/SM
+penknife/M
+penknives
+penlight/SM
+penman/M
+penmanship/M
+penmen
+pennant/MS
+penned
+penniless
+penning
+pennon/MS
+penny/SM
+pennyweight/MS
+pennyworth
+penologist/MS
+penology/M
+pension/BZGMDRS
+pensioner/M
+pensive/PY
+pensiveness/M
+pent
+pentacle/MS
+pentagon/MS
+pentagonal
+pentagram/SM
+pentameter/SM
+pentathlete/MS
+pentathlon/MS
+penthouse/SM
+penuche/M
+penultimate/SM
+penumbra/MS
+penumbrae
+penurious/PY
+penuriousness/M
+penury/M
+peon/MS
+peonage/M
+peony/SM
+people/MGDS
+pep/SM
+pepped
+pepper/GMDS
+peppercorn/SM
+peppermint/SM
+pepperoni/MS
+peppery
+peppiness/M
+pepping
+peppy/TPR
+pepsin/M
+peptic/MS
+peptide/S
+peradventure/M
+perambulate/XGNDS
+perambulation/M
+perambulator/MS
+percale/MS
+perceive/BGDS
+perceived/U
+percent/MS
+percentage/SM
+percentile/SM
+perceptible
+perceptibly
+perception/SM
+perceptional
+perceptive/PY
+perceptiveness/M
+perceptual/Y
+perch/GMDS
+perchance
+percipience/M
+percipient
+percolate/GNDS
+percolation/M
+percolator/SM
+percussion/AM
+percussionist/MS
+percussive
+perdition/M
+perdurable
+peregrinate/DSXGN
+peregrination/M
+peregrine/MS
+peremptorily
+peremptory
+perennial/SMY
+perestroika/M
+perfect/PTGMDRYS
+perfecta/MS
+perfectibility/M
+perfectible
+perfection/SM
+perfectionism/M
+perfectionist/SM
+perfectness/M
+perfidious/Y
+perfidy/SM
+perforate/GNXDS
+perforation/M
+perforce
+perform/SDRZG
+performance/SM
+performed/U
+performer/M
+perfume/DRSMZG
+perfumer/M
+perfumery/SM
+perfunctorily
+perfunctory
+perfusion
+pergola/SM
+perhaps
+pericardia
+pericardial
+pericarditis
+pericardium/M
+perigee/SM
+perihelia
+perihelion/M
+peril/SM
+perilled
+perilling
+perilous/Y
+perimeter/SM
+perinatal
+perinea
+perineum/M
+period/MS
+periodic
+periodical/SMY
+periodicity/M
+periodontal
+periodontics/M
+periodontist/SM
+peripatetic/MS
+peripheral/MYS
+periphery/SM
+periphrases
+periphrasis/M
+periphrastic
+periscope/SM
+perish/BDRSZG
+perishable/MS
+peristalses
+peristalsis/M
+peristaltic
+peristyle/SM
+peritoneal
+peritoneum/MS
+peritonitis/M
+periwig/SM
+periwinkle/SM
+perjure/DRSZG
+perjurer/M
+perjury/SM
+perk/MDSG
+perkily
+perkiness/M
+perky/TPR
+perm/MDSG
+permafrost/M
+permanence/M
+permanency/M
+permanent/SMY
+permeability/M
+permeable
+permeate/GNDS
+permeation/M
+permissible
+permissibly
+permission/MS
+permissive/PY
+permissiveness/M
+permit/MS
+permitted
+permitting
+permittivity
+permutation/SM
+permute/DSG
+pernicious/YP
+perniciousness/M
+peroration/MS
+peroxide/MGDS
+perpendicular/SMY
+perpendicularity/M
+perpetrate/DSGN
+perpetration/M
+perpetrator/MS
+perpetual/SMY
+perpetuate/DSGN
+perpetuation/M
+perpetuity/M
+perplex/GDS
+perplexed/Y
+perplexing/Y
+perplexity/SM
+perquisite/SM
+persecute/GNXDS
+persecution/M
+persecutor/SM
+perseverance/M
+persevere/DSG
+persiflage/M
+persimmon/SM
+persist/SGD
+persistence/M
+persistent/Y
+persnickety
+person/UMS
+persona/SM
+personable
+personae
+personage/MS
+personal/MYS
+personalise/CDSG
+personality/SM
+personalty/M
+personification/M
+personify/GDSNX
+personnel/M
+perspective/MS
+perspex
+perspicacious/Y
+perspicacity/M
+perspicuity/M
+perspicuous
+perspiration/M
+perspire/GDS
+persuade/BZGDRS
+persuaded/U
+persuader/M
+persuasion/SM
+persuasive/PY
+persuasiveness/M
+pert/RYPT
+pertain/GSD
+pertinacious/Y
+pertinacity/M
+pertinence/M
+pertinent/Y
+pertness/M
+perturb/DGS
+perturbation/SM
+perturbed/U
+pertussis/M
+peruke/MS
+perusal/MS
+peruse/GDS
+pervade/DSG
+pervasive/PY
+pervasiveness/M
+perverse/PXYN
+perverseness/M
+perversion/M
+perversity/M
+pervert/SGMD
+pervs
+peseta/MS
+peskily
+peskiness/M
+pesky/TPR
+peso/MS
+pessary/S
+pessimal
+pessimism/M
+pessimist/SM
+pessimistic
+pessimistically
+pest/MRSZ
+pester/GD
+pesticide/MS
+pestiferous
+pestilence/SM
+pestilent
+pestilential
+pestle/MGDS
+pesto/M
+pet/SZMR
+petabyte/MS
+petajoule/S
+petal/SM
+petalled
+petard/MS
+petawatt/S
+petcock/SM
+peter/GMD
+petiole/SM
+petite/MS
+petition/ZGMDRS
+petitionary
+petitioner/M
+petrel/MS
+petrifaction/M
+petrify/DSG
+petrochemical/SM
+petrodollar/MS
+petrol/M
+petrolatum/M
+petroleum/M
+petrologist/SM
+petrology/M
+petted
+petticoat/MS
+pettifog/S
+pettifogged
+pettifogger/SM
+pettifoggery/M
+pettifogging
+pettily
+pettiness/M
+petting/M
+pettish/Y
+petty/PTR
+petulance/M
+petulant/Y
+petunia/MS
+pew/SM
+pewee/SM
+pewit/SM
+pewter/MS
+peyote/M
+pf
+pfennig/MS
+pg
+phaeton/MS
+phage/S
+phagocyte/SM
+phalanger/SM
+phalanges
+phalanx/MS
+phalli
+phallic
+phallocentric
+phallocentrism
+phallus/M
+phantasm/MS
+phantasmagoria/MS
+phantasmagorical
+phantasmal
+phantom/SM
+pharaoh/M
+pharaohs
+pharisaic
+pharisee/SM
+pharmaceutic/MS
+pharmaceutical/SM
+pharmaceutics/M
+pharmacist/MS
+pharmacologic
+pharmacological
+pharmacologist/SM
+pharmacology/M
+pharmacopoeia/MS
+pharmacotherapy
+pharmacy/SM
+pharyngeal
+pharynges
+pharyngitis/M
+pharynx/M
+phase/DSMG
+phaseout/SM
+phat
+pheasant/MS
+phenacetin/M
+phenobarbital/M
+phenol/M
+phenom/MS
+phenomena
+phenomenal/Y
+phenomenological
+phenomenology
+phenomenon/MS
+phenotype
+phenytoin
+pheromone/MS
+phew
+phi/SM
+phial/SM
+philander/ZGDRS
+philanderer/M
+philandering/M
+philanthropic
+philanthropically
+philanthropist/MS
+philanthropy/SM
+philatelic
+philatelist/MS
+philately/M
+philharmonic/SM
+philippic/MS
+philistine/MS
+philistinism/M
+philodendron/SM
+philological
+philologist/MS
+philology/M
+philosopher/MS
+philosophic
+philosophical/Y
+philosophise/DRSZG
+philosophiser/M
+philosophy/SM
+philtre/MS
+phish/ZGDR
+phisher/M
+phlebitis/M
+phlegm/M
+phlegmatic
+phlegmatically
+phloem/M
+phlox/M
+phobia/MS
+phobic/MS
+phoebe/MS
+phoenix/MS
+phone/DSMG
+phonecard/S
+phoneme/MS
+phonemic
+phonemically
+phonetic/S
+phonetically
+phonetician/SM
+phonetics/M
+phoney/GMDS
+phonic/S
+phonically
+phonics/M
+phonied
+phonier
+phoniest
+phoniness/M
+phonograph/M
+phonographic
+phonographs
+phonological/Y
+phonologist/MS
+phonology/M
+phonon
+phonying
+phooey
+phosphate/MS
+phosphodiesterase
+phosphor/MS
+phosphorescence/M
+phosphorescent/Y
+phosphoric
+phosphorous
+phosphorus/M
+phosphorylation
+photo/SGMD
+photocell/MS
+photocopier/M
+photocopy/DRSMZG
+photoelectric
+photoelectrically
+photoengrave/DRSJZG
+photoengraver/M
+photoengraving/M
+photofinishing/M
+photogenic
+photogenically
+photograph/MDRZG
+photographer/M
+photographic
+photographically
+photographs/A
+photography/M
+photojournalism/M
+photojournalist/SM
+photometer/MS
+photon/MS
+photosensitive
+photostat/SM
+photostatic
+photostatted
+photostatting
+photosynthesis/GMDS
+photosynthesise
+photosynthetic
+phototropic
+phototropism
+phototypesetter
+phototypesetting
+photovoltaic
+phrasal
+phrase's
+phrase/AGDS
+phrasebook/S
+phraseology/M
+phrasing/MS
+phreaking
+phrenologist/SM
+phrenology/M
+phyla
+phylactery/SM
+phylogeny/M
+phylum/M
+phys
+physic/SM
+physical/MYS
+physicality
+physician/SM
+physicist/SM
+physicked
+physicking
+physics/M
+physio/S
+physiognomy/SM
+physiography/M
+physiologic
+physiological/Y
+physiologist/MS
+physiology/M
+physiotherapist/MS
+physiotherapy/M
+physique/MS
+phytoplankton
+pi/SMDRHZG
+pianissimo/SM
+pianist/MS
+piano/SM
+pianoforte/SM
+pianola/S
+piastre/MS
+piazza/MS
+pibroch/M
+pibrochs
+pic/SM
+pica/M
+picador/MS
+picante
+picaresque
+picayune
+piccalilli/M
+piccolo/MS
+pick/MDRSJZG
+pickax/GMDS
+picker/M
+pickerel/MS
+picket/ZGMDRS
+pickings/M
+pickle/MGDS
+pickpocket/SM
+pickup/MS
+picky/PTR
+picnic/MS
+picnicked
+picnicker/SM
+picnicking
+picot/SM
+pictogram/S
+pictograph/M
+pictographs
+pictorial/MYS
+picture/MGDS
+picturesque/PY
+picturesqueness/M
+piddle/MGDS
+piddly
+pidgin/MS
+pie/SM
+piebald/MS
+piece/DSMG
+piecemeal
+piecework/MRZ
+pieceworker/M
+piecrust/SM
+pieing
+pier/M
+pierce/JGDS
+piercing/MY
+piety/M
+piezoelectric
+piffle/MG
+pig/SML
+pigeon/MS
+pigeonhole/DSMG
+pigged
+piggery/S
+pigging
+piggish/PY
+piggishness/M
+piggy/TRSM
+piggyback/MDSG
+pigheaded/PY
+pigheadedness/M
+piglet/MS
+pigment/MDS
+pigmentation/M
+pigpen/MS
+pigskin/MS
+pigsty/SM
+pigswill
+pigtail/MS
+pike/MZGDRS
+piker/M
+pikestaff/SM
+pilaf/SM
+pilaster/MS
+pilchard/MS
+pile/MGDSJ
+pileup/MS
+pilfer/ZGDRS
+pilferage/M
+pilferer/M
+pilgrim/MS
+pilgrimage/MS
+piling/M
+pill/MDSG
+pillage/MZGDRS
+pillager/M
+pillar/MDS
+pillbox/MS
+pillion/MS
+pillock/S
+pillory/GDSM
+pillow/GMDS
+pillowcase/MS
+pillowslip/MS
+pilly/S
+pilot/DGSM
+pilothouse/SM
+pimento/MS
+pimiento/MS
+pimp/GMDYS
+pimpernel/MS
+pimple/DSM
+pimply/RT
+pin/SM
+pinafore/MS
+pinata/MS
+pinball/M
+pincer/MS
+pinch/GMDS
+pincushion/MS
+pine's
+pine/AGDS
+pineapple/MS
+pinewood/S
+piney
+pinfeather/SM
+ping/GMD
+pinhead/SM
+pinhole/SM
+pinier
+piniest
+pinion/SMDG
+pink/TGPMDRS
+pinkeye/M
+pinkie/SM
+pinkish
+pinkness/M
+pinko/MS
+pinnacle/SM
+pinnate
+pinned/U
+pinning/U
+pinny/S
+pinochle/M
+pinon/MS
+pinpoint/SGMD
+pinprick/MS
+pinsetter/SM
+pinstripe/DSM
+pint/MS
+pinto/MS
+pinup/MS
+pinwheel/GSMD
+pinyin/M
+pinyon/SM
+pioneer/SGMD
+pious/YP
+piousness/M
+pip/SZGMDR
+pipe/MS
+pipeline/SM
+piper/M
+pipette/SM
+pipework
+piping/M
+pipit/MS
+pipped
+pippin/SM
+pipping
+pipsqueak/SM
+piquancy/M
+piquant/Y
+pique/MGDS
+piracy/M
+piranha/SM
+pirate/DSMG
+piratical/Y
+pirogi/M
+piroshki/M
+pirouette/DSMG
+piscatorial
+pismire/SM
+piss/ZGMDRS
+pissoir/S
+pistachio/SM
+piste/S
+pistil/SM
+pistillate
+pistol/SM
+piston/SM
+pit/SM
+pita/MS
+pitapat/SM
+pitch/MDRSZG
+pitchblende/M
+pitcher/M
+pitchfork/MDSG
+pitchman/M
+pitchmen
+piteous/YP
+piteousness/M
+pitfall/SM
+pith/M
+pithead/S
+pithily
+pithiness/M
+pithy/RTP
+pitiable
+pitiably
+pitiful/Y
+pitiless/PY
+pitilessness/M
+piton/MS
+pitta/S
+pittance/MS
+pitted
+pitting
+pituitary/SM
+pity/GDSM
+pitying/Y
+pivot/MDGS
+pivotal
+pix/M
+pixel/MS
+pixie/MS
+pizza/MS
+pizzazz/M
+pizzeria/SM
+pizzicati
+pizzicato/M
+pj's
+pk
+pkg
+pkt
+pkwy
+pl
+placard/SMDG
+placate/DSGN
+placation/M
+placatory
+place's
+place/AESDLG
+placebo/SM
+placed/U
+placeholder/MS
+placekick/MDRZGS
+placekicker/M
+placement/EASM
+placenta/SM
+placental/S
+placer/SM
+placid/Y
+placidity/M
+placings
+placket/SM
+plagiarise/DRSZG
+plagiariser/M
+plagiarism/SM
+plagiarist/SM
+plagiary/M
+plague/DSMG
+plaice
+plaid/MS
+plain/MRYTSP
+plainchant
+plainclothes
+plainclothesman/M
+plainclothesmen
+plainness/M
+plainsman/M
+plainsmen
+plainsong/M
+plainspoken
+plaint/SMV
+plaintiff/SM
+plaintive/Y
+plait/MDGS
+plan/ZMRS
+planar
+plane's
+plane/CGDS
+planeload/MS
+planer/M
+planet/SM
+planetarium/SM
+planetary
+plangency/M
+plangent
+plank/MDGS
+planking/M
+plankton/M
+planned/U
+planner/SM
+planning/S
+plant/MDRZGSJ
+plantain/SM
+plantar
+plantation/MS
+planter/M
+planting/M
+plantlike
+plaque/SM
+plash/MDSG
+plasma/M
+plasmon
+plaster/SZGMDR
+plasterboard/M
+plasterer/M
+plastic/SM
+plasticise/DSG
+plasticity/M
+plastique
+plat/XGMDNS
+plate/MS
+plateau/SMDG
+plateful/SM
+platelet/SM
+platen/M
+platform/SGMD
+plating/M
+platinum/M
+platitude/SM
+platitudinous
+platonic
+platoon/SGMD
+platted
+platter/SM
+platting
+platy/M
+platypus/MS
+platys
+plaudit/SM
+plausibility/M
+plausible
+plausibly
+play/AEGMDS
+playable/EU
+playact/SGD
+playacting/M
+playback/MS
+playbill/MS
+playbook/MS
+playboy/SM
+player/SM
+playfellow/SM
+playful/PY
+playfulness/M
+playgirl/MS
+playgoer/MS
+playground/SM
+playgroup/S
+playhouse/MS
+playlist/MS
+playmate/MS
+playoff/SM
+playpen/SM
+playroom/SM
+playschool/S
+plaything/SM
+playtime/M
+playwright/SM
+plaza/MS
+plea/MS
+plead/DRZGSJ
+pleader/M
+pleading/MY
+pleasant/UTYP
+pleasanter
+pleasantness/UM
+pleasantry/SM
+please/EDSG
+pleasing/YS
+pleasurably
+pleasure/MGDSB
+pleasureful
+pleat/MDGS
+pleb/S
+plebby
+plebe/MS
+plebeian/MS
+plebiscite/MS
+plectra
+plectrum/MS
+pledge/DSMG
+plenary/SM
+plenipotentiary/SM
+plenitude/SM
+plenteous
+plentiful/Y
+plenty/M
+plenum/S
+pleonasm/MS
+plethora/M
+pleura/M
+pleurae
+pleurisy/M
+plexus/MS
+pliability/M
+pliable
+pliancy/M
+pliant/Y
+pliers/M
+plight/SMDG
+plimsoll/S
+plinth/M
+plinths
+plod/S
+plodded
+plodder/MS
+plodding/S
+plonk/DRSZG
+plop/MS
+plopped
+plopping
+plosive/S
+plot/MS
+plotted
+plotter/SM
+plotting
+plough/MDG
+ploughman/M
+ploughmen
+ploughs
+ploughshare/MS
+plover/SM
+ploy's
+ploy/S
+pluck/MDSG
+pluckily
+pluckiness/M
+plucky/RPT
+plug's
+plug/US
+plugged/U
+plugging/U
+plughole/S
+plugin/SM
+plum/GMDS
+plumage/M
+plumb/MDRSZGJ
+plumbed/U
+plumber/M
+plumbing/M
+plume/MS
+plummet/SGMD
+plummy
+plump/MDRYSTGP
+plumpness/M
+plumy/RT
+plunder/SZGMDR
+plunderer/M
+plunge/DRSMZG
+plunger/M
+plunk/MDSG
+pluperfect/SM
+plural/SM
+pluralisation/M
+pluralise/GDS
+pluralism/M
+pluralist/MS
+pluralistic
+plurality/SM
+plus/MS
+plush/MRYTP
+plushness/M
+plushy/RT
+plutocracy/SM
+plutocrat/SM
+plutocratic
+plutonium/M
+pluvial
+ply/AGDSM
+plywood/M
+pm
+pneumatic
+pneumatically
+pneumococcal
+pneumococci
+pneumococcus
+pneumonia/M
+poach/DRSZG
+poacher/M
+poaching/M
+pock/GMDS
+pocket/SMDG
+pocketbook/SM
+pocketful/SM
+pocketknife/M
+pocketknives
+pockmark/MDGS
+pod/SM
+podcast/SMG
+podded
+podding
+podiatrist/SM
+podiatry/M
+podium/SM
+poem/MS
+poesy/M
+poet/MS
+poetaster/MS
+poetess/MS
+poetic/S
+poetical/Y
+poetry/M
+pogrom/SM
+poi/M
+poignancy/M
+poignant/Y
+poinciana/SM
+poinsettia/SM
+point/MDRSZG
+pointblank
+pointed/Y
+pointer/M
+pointillism/M
+pointillist/SM
+pointless/PY
+pointlessness/M
+pointy/TR
+poise/MGDS
+poison/SJZGMDR
+poisoner/M
+poisoning/M
+poisonous/Y
+poke/MZGDRS
+poker/M
+pokey/MS
+pokie/MTRS
+poky
+pol/SGMD
+polar
+polarisation/CM
+polarise/CDSG
+polarity/SM
+pole/MS
+poleaxe/GDS
+polecat/MS
+polemic/MS
+polemical/Y
+polemicist/SM
+polemics/M
+polestar/SM
+police/DSMG
+policeman/M
+policemen
+policewoman/M
+policewomen
+policy/SM
+policyholder/MS
+policymaker/S
+polio/MS
+poliomyelitis/M
+polish/ZGMDRS
+polished/U
+polisher/M
+politburo/MS
+polite/RYTP
+politeness/M
+politesse/M
+politic/S
+political/Y
+politician/SM
+politicisation/M
+politicise/CDSG
+politicking/M
+politico/SM
+politics/M
+polity/SM
+polka/MDSG
+poll/GMDNS
+pollack/MS
+pollard/S
+pollen/M
+pollie/SM
+pollinate/GNDS
+pollination/M
+pollinator/SM
+polling/M
+polliwog/SM
+pollster/SM
+pollutant/MS
+pollute/ZGNDRS
+polluted/U
+polluter/M
+pollution/M
+polo/M
+polonaise/SM
+polonium/M
+poltergeist/MS
+poltroon/SM
+poly
+polyacrylamide
+polyamory/S
+polyandrous
+polyandry/M
+polyclinic/SM
+polyester/MS
+polyethylene/M
+polygamist/MS
+polygamous
+polygamy/M
+polyglot/SM
+polygon/SM
+polygonal
+polygraph/GMD
+polygraphs
+polyhedral
+polyhedron/SM
+polymath/M
+polymaths
+polymer/SM
+polymeric
+polymerisation/M
+polymerise/GDS
+polymorphic
+polymorphous
+polynomial/MS
+polyp/MS
+polyphonic
+polyphony/M
+polypropylene/M
+polys
+polysemous
+polystyrene/M
+polysyllabic
+polysyllable/MS
+polytechnic/MS
+polytheism/M
+polytheist/SM
+polytheistic
+polythene
+polyunsaturate/DS
+polyurethane/MS
+polyvinyl
+pom/S
+pomade/DSMG
+pomander/SM
+pomegranate/MS
+pommel/SM
+pommelled
+pommelling
+pommy/S
+pomp/M
+pompadour/SMD
+pompano/MS
+pompom/SM
+pomposity/M
+pompous/YP
+pompousness/M
+ponce/GDS
+poncho/SM
+poncy
+pond/MS
+ponder/SZGDR
+ponderer/M
+ponderous/YP
+ponderousness/M
+pone/MS
+pong/GDS
+pongee/M
+poniard/MS
+pontiff/SM
+pontifical/Y
+pontificate/DSMG
+pontoon/SM
+pony/GDSM
+ponytail/MS
+poo/SGD
+pooch/MDSG
+poodle/SM
+poof/MS
+poofter/S
+pooh/GMD
+poohs
+pool/GMDS
+poolroom/MS
+poolside/S
+poop/GMDS
+poor/TRYP
+poorboy/M
+poorhouse/SM
+poorness/M
+pop/SM
+popcorn/M
+pope/MS
+popgun/SM
+popinjay/MS
+poplar/SM
+poplin/M
+popover/SM
+poppa/MS
+poppadom/S
+popped
+popper/SM
+poppet/S
+popping
+poppy/SM
+poppycock/M
+populace/MS
+popular/Y
+popularisation/M
+popularise/DSG
+popularity/UM
+populate/ACGDS
+populated/U
+population/CM
+populations
+populism/M
+populist/MS
+populous/P
+populousness/M
+popup/MS
+porcelain/SM
+porch/MS
+porcine
+porcupine/SM
+pore/MGDS
+porgy/SM
+pork/ZMR
+porker/M
+porky/RSMT
+porn/M
+porno/M
+pornographer/MS
+pornographic
+pornographically
+pornography/M
+porosity/M
+porous/P
+porousness/M
+porphyritic
+porphyry/M
+porpoise/MGDS
+porridge/M
+porringer/SM
+port's/A
+port/CAEGDS
+portability/M
+portable/MS
+portage/DSMG
+portal/SM
+portcullis/MS
+portend/SGD
+portent/SM
+portentous/YP
+porter/ASM
+porterhouse/SM
+portfolio/MS
+porthole/MS
+portico/M
+porticoes
+portiere/MS
+portion/KSGMD
+portliness/M
+portly/RPT
+portmanteau/MS
+portrait/MS
+portraitist/SM
+portraiture/M
+portray/SGD
+portrayal/MS
+portulaca/M
+pose's/A
+pose/CAKEGDS
+poser/EKSM
+poseur/SM
+posh/TR
+posit/DSGV
+position/CKEMS
+positional/KE
+positioned/K
+positioning/AK
+positive/MYPS
+positiveness/M
+positivism
+positivist/S
+positron/MS
+poss
+posse/MS
+possess/AEVGSD
+possession/ASM
+possessive/SMYP
+possessiveness/M
+possessor/SM
+possibility/SM
+possible/SM
+possibly
+possum/SM
+post/ZGMDRSJ
+postage/M
+postal
+postbag/S
+postbox/S
+postcard/SM
+postcode/S
+postcolonial
+postconsonantal
+postdate/DSG
+postdoc/MS
+postdoctoral
+poster/M
+posterior/SM
+posterity/M
+postgraduate/SM
+posthaste
+posthumous/Y
+posthypnotic
+postie/S
+postilion/SM
+postindustrial
+posting/M
+postlude/SM
+postman/M
+postmark/SMDG
+postmaster/MS
+postmen
+postmenopausal
+postmeridian
+postmistress/MS
+postmodern
+postmodernism/M
+postmodernist/MS
+postmortem/SM
+postnasal
+postnatal
+postoperative
+postpaid
+postpartum
+postpone/DSGL
+postponement/SM
+postprandial
+postscript/SM
+postseason/SM
+postsynaptic
+postulate/XDSMGN
+postulation/M
+postural
+posture/MGJDS
+posturing/M
+postwar
+postwoman
+postwomen
+posy/SM
+pot/CSM
+potability/M
+potable/SM
+potash/M
+potassium/M
+potato/M
+potatoes
+potbelly/DSM
+potboiler/SM
+potency/M
+potent/Y
+potentate/MS
+potential/MYS
+potentiality/SM
+potentiate/GDS
+potful/SM
+pothead/SM
+pother/SMDG
+potherb/SM
+potholder/MS
+pothole/DRSMZG
+pothook/SM
+potion/SM
+potluck/MS
+potpie/SM
+potpourri/SM
+potsherd/SM
+potshot/MS
+pottage/M
+potted
+potter/GSMD
+pottery/SM
+potting
+potty/PRSMT
+pouch/MDSG
+pouf/S
+pouffe/S
+poulterer/MS
+poultice/DSMG
+poultry/M
+pounce/DSMG
+pound's
+pound/KDSG
+poundage/M
+pounding/SM
+pour/GDSJ
+pout/ZGMDRS
+pouter/M
+poverty/M
+pow
+powder/GSMD
+powdery
+power/MDSG
+powerboat/MS
+powerful/Y
+powerhouse/SM
+powerless/PY
+powerlessness/M
+powwow/SGMD
+pox/MS
+pp
+ppm
+ppr
+pr
+practicability/M
+practicably
+practical/SMY
+practicality/SM
+practice/SMB
+practicum/SM
+practise/DSG
+practised/U
+practitioner/SM
+praetor/SM
+praetorian
+pragmatic/MS
+pragmatical/Y
+pragmatism/M
+pragmatist/MS
+prairie/SM
+praise/EDSMG
+praiseworthiness/M
+praiseworthy/P
+praline/SM
+pram/MS
+prance/DRSMZG
+prancer/M
+prancing/Y
+prang/DSG
+prank/MS
+prankster/SM
+praseodymium/M
+prat/S
+prate/MZGDRS
+prater/M
+pratfall/SM
+prattle/DRSMZG
+prattler/M
+prawn/MDSG
+pray/ZGDRS
+prayer/M
+prayerful/Y
+preach/DRSZGL
+preacher/M
+preachment/M
+preachy/RT
+preadolescence/SM
+preadolescent
+preamble/MGDS
+prearrange/LGDS
+prearrangement/M
+preassigned
+precancel/SMDG
+precancerous
+precarious/PY
+precariousness/M
+precast
+precaution/MS
+precautionary
+precede/DSG
+precedence/M
+precedent/SM
+precept/SM
+preceptor/SM
+precinct/MS
+preciosity/M
+precious/YP
+preciousness/M
+precipice/SM
+precipitant/MS
+precipitate/XMYGNDS
+precipitation/M
+precipitous/Y
+precis/M
+precise/DRSYTGNP
+preciseness/M
+precision/M
+preclude/GDS
+preclusion/M
+precocious/YP
+precociousness/M
+precocity/M
+precognition/M
+precognitive
+precolonial
+preconceive/GDS
+preconception/SM
+precondition/MDGS
+precook/GSD
+precursor/SM
+precursory
+predate/DSG
+predator/MS
+predatory
+predawn
+predecease/GDS
+predecessor/SM
+predefined
+predesignate/GDS
+predestination/M
+predestine/DSG
+predetermination/M
+predetermine/ZGDRS
+predeterminer/M
+predicable
+predicament/MS
+predicate/MGNVDS
+predication/M
+predicative/Y
+predict/BGVSD
+predictability/UM
+predictable/U
+predictably/U
+prediction/SM
+predictor/MS
+predigest/GDS
+predilection/SM
+predispose/GDS
+predisposition/MS
+prednisone
+predominance/M
+predominant/Y
+predominate/YGDS
+preemie/SM
+preeminence/M
+preeminent/Y
+preempt/GVSD
+preemption/M
+preemptive/Y
+preen/DSG
+preexist/DGS
+preexistence/M
+pref
+prefab/SM
+prefabbed
+prefabbing
+prefabricate/DSGN
+prefabrication/M
+preface/DSMG
+prefatory
+prefect/SM
+prefecture/MS
+prefer/SBL
+preferably
+preference/MS
+preferential/Y
+preferment/M
+preferred
+preferring
+prefigure/GDS
+prefix/MDSG
+preform/GSD
+preformative
+prefrontal
+pregame/SM
+pregnancy/SM
+pregnant
+preheat/GSD
+prehensile
+prehistorian/S
+prehistoric
+prehistorical/Y
+prehistory/M
+prehuman
+preinstalled
+prejudge/LGDS
+prejudgement/MS
+prejudice/MGDS
+prejudiced/U
+prejudicial
+prekindergarten/SM
+prelacy/M
+prelate/SM
+prelim/SM
+preliminary/SM
+preliterate
+prelude/MS
+premarital
+premature/Y
+premed/SM
+premedical
+premeditate/DSGN
+premeditated/U
+premeditation/M
+premenstrual
+premier/SGMD
+premiere/MS
+premiership/MS
+premise/DSMG
+premium/SM
+premix/GDS
+premolar/SM
+premonition/MS
+premonitory
+prenatal/Y
+prenup/SM
+prenuptial
+preoccupation/SM
+preoccupy/DSG
+preoperative
+preordain/GDS
+preowned
+prep/MS
+prepackage/DSG
+prepacked
+prepaid
+preparation/SM
+preparatory
+prepare/GDS
+prepared/UP
+preparedness/UM
+prepay/GSL
+prepayment/MS
+prepend
+preponderance/SM
+preponderant/Y
+preponderate/GDS
+preposition/SM
+prepositional/Y
+prepossess/GDS
+prepossessing/U
+prepossession/SM
+preposterous/Y
+prepped
+prepping
+preppy/TRSM
+prepubescence/M
+prepubescent/SM
+prepuce/MS
+prequel/MS
+prerecord/GSD
+preregister/SGD
+preregistration/M
+prerequisite/MS
+prerogative/SM
+pres
+presage/MGDS
+presbyopia/M
+presbyter/SM
+presbytery/SM
+preschool/SZMR
+preschooler/M
+prescience/M
+prescient/Y
+prescribe/DSG
+prescript/SVM
+prescription/SM
+prescriptive/Y
+preseason/SM
+presence/SM
+present/LMDRYZGSB
+presentably
+presentation/ASM
+presenter/M
+presentiment/SM
+presentment/SM
+preservation/M
+preservationist/SM
+preservative/SM
+preserve/BDRSMZG
+preserver/M
+preset/S
+presetting
+preshrank
+preshrink/GS
+preshrunk
+preside/GDS
+presidency/SM
+president/MS
+presidential
+presidium/M
+presort/DGS
+press's
+press/ACGSD
+pressed/U
+presser/MS
+pressie/S
+pressing/SMY
+pressman/M
+pressmen
+pressure/DSMG
+pressurisation/M
+pressurise/CGDS
+pressuriser/S
+pressurizer's
+prestidigitation/M
+prestige/M
+prestigious
+presto/SM
+presumably
+presume/GDSB
+presumption/SM
+presumptive
+presumptuous/YP
+presumptuousness/M
+presuppose/DSG
+presupposition/MS
+pretax
+preteen/MS
+pretence/SM
+pretend/DRZGS
+pretender/M
+pretension/SM
+pretentious/UY
+pretentiousness/M
+preterite/MS
+preterm
+preternatural/Y
+pretest/DGS
+pretext/MS
+pretrial/S
+prettify/GDS
+prettily
+prettiness/M
+pretty/TGDRSMP
+pretzel/MS
+prev
+prevail/DGS
+prevalence/M
+prevalent
+prevaricate/DSGNX
+prevarication/M
+prevaricator/SM
+prevent/DBSGV
+preventable/U
+preventative/MS
+prevention/M
+preventive/SM
+preview/MDRSZG
+previous/Y
+prevision/MS
+prewar
+prey/GMDS
+prezzie/S
+priapic
+price's
+price/AGDS
+priceless
+pricey
+pricier
+priciest
+prick/MDRYSZG
+pricker/M
+prickle/MGDS
+prickliness/M
+prickly/PRT
+pride/MGDS
+prideful/Y
+prier/M
+priest/SMY
+priestess/MS
+priesthood/SM
+priestliness/M
+priestly/RTP
+prig/MS
+priggish/P
+priggishness/M
+prim/ZGDRYP
+primacy/M
+primal
+primarily
+primary/SM
+primate/MS
+prime/MS
+primer/M
+primeval
+priming/M
+primitive/SPMY
+primitiveness/M
+primmer
+primmest
+primness/M
+primogenitor/SM
+primogeniture/M
+primordial/Y
+primp/DSG
+primrose/SM
+primula/S
+prince/SMY
+princedom/SM
+princeliness/M
+princely/PRT
+princess/MS
+principal/SMY
+principality/SM
+principle/DSM
+principled/U
+print/AMDSG
+printable/U
+printer/MS
+printing/SM
+printmaking
+printout/SM
+prion/S
+prior/MS
+prioress/MS
+prioritisation
+prioritise/DSG
+priority/SM
+priory/SM
+prise/AGDS
+prism/MS
+prismatic
+prison/SZMR
+prisoner/M
+prissily
+prissiness/M
+prissy/PTR
+pristine
+prithee
+privacy/M
+private/XMYTNRS
+privateer/SM
+privation/CSM
+privatisation/SM
+privatise/DSG
+privet/SM
+privilege/DSMG
+privileged/U
+privily
+privy/RSMT
+prize/MS
+prizefight/ZGSMR
+prizefighter/M
+prizefighting/M
+prizewinner/MS
+prizewinning
+pro/SM
+probabilistic
+probability/SM
+probable/SM
+probably
+probate/MN
+probation/ZMR
+probational
+probationary
+probationer/M
+probe/MGDSBJ
+probity/M
+problem/MS
+problematic/U
+problematical/Y
+probosces
+proboscis/MS
+procaine/M
+procedural
+procedure/SM
+proceed/GJDS
+proceeding/M
+proceeds/M
+process's
+process/AGDS
+processable
+processed/U
+procession/GD
+processional/MS
+processor/SM
+proclamation/MS
+proclivity/SM
+procrastinate/DSGN
+procrastination/M
+procrastinator/MS
+procreate/V
+proctor/GMDS
+procurement/M
+prod/MS
+prodigal/MYS
+prodigality/M
+prodigious/Y
+prodigy/SM
+produce's
+produce/AZGDRS
+producer/AM
+producible/A
+production/ASM
+productive/UY
+productiveness/M
+productivity/M
+prof/MS
+profanation/MS
+profane/PYGDS
+profaneness/M
+profanity/SM
+professed/Y
+profession/SM
+professional/MYS
+professionalisation
+professionalise/DSG
+professionalism/M
+professor/SM
+professorial/Y
+professorship/SM
+proffer/GMDS
+proficiency/M
+proficient/MYS
+profit/BGD
+profitability/M
+profitable/U
+profitably/U
+profiteer/MDGS
+profiteering/M
+profiterole/SM
+profitless
+profligacy/M
+profligate/SMY
+proforma
+profound/RYTP
+profoundness/M
+profundity/SM
+profuse/PY
+profuseness/M
+progenitor/SM
+progeny/M
+progesterone/M
+progestin/S
+prognathous
+prognoses
+prognosis/M
+prognostic/MS
+prognosticate/XGNDS
+prognostication/M
+prognosticator/MS
+program/CAS
+programmable/MS
+programmatic
+programmed/AC
+programmer/MS
+programming/SM
+progress/MDSGV
+progression/MS
+progressive/PMYS
+progressiveness/M
+prohibit/DGVS
+prohibition/SM
+prohibitionist/MS
+prohibitive/Y
+prohibitory
+project/GMDS
+projectile/SM
+projection/SM
+projectionist/SM
+projector/MS
+prokaryote/MS
+prokaryotic
+prole/S
+proletarian/MS
+proletariat/M
+proliferate/DSGN
+proliferation/M
+prolific
+prolifically
+prolix/Y
+prolixity/M
+prologue/SM
+prolongation/SM
+prom/M
+promenade/MGDS
+promethium/M
+prominence/M
+prominent/Y
+promiscuity/M
+promiscuous/Y
+promise/DSMG
+promising/Y
+promissory
+promo/M
+promontory/SM
+promote/DRZG
+promoter/M
+promotional
+prompt/JPSMDRYZTG
+prompted/U
+prompter/M
+prompting/M
+promptitude/M
+promptness/M
+promulgate/GNDS
+promulgation/M
+promulgator/MS
+prone/P
+proneness/M
+prong/MDS
+pronghorn/MS
+pronominal/M
+pronounce/DSLG
+pronounceable/U
+pronouncement/SM
+pronto
+pronunciation/MS
+proof/ADGSM
+proofread/SRZG
+proofreader/M
+prop/MS
+propaganda/M
+propagandise/GDS
+propagandist/MS
+propagate/DSGN
+propagation/M
+propagator/SM
+propel/S
+propellant/MS
+propelled
+propeller/SM
+propelling
+propensity/SM
+proper/MRYT
+property/DSM
+prophecy/SM
+prophesier/M
+prophesy/DRSMZG
+prophet/SM
+prophetess/MS
+prophetic
+prophetical/Y
+prophylactic/SM
+prophylaxes
+prophylaxis/M
+propinquity/M
+propitiate/DSGN
+propitiation/M
+propitiatory
+propitious/Y
+proponent/SM
+proportion/ESM
+proportional/YS
+proportionality
+proportionate/EY
+proposal/MS
+propped
+propping
+propranolol
+proprietary/SM
+proprieties/M
+proprietor/SM
+proprietorial/Y
+proprietorship/M
+proprietress/MS
+propriety/SM
+propulsion/M
+propulsive
+prorate/DSG
+prorogation/M
+prorogue/GD
+prosaic
+prosaically
+proscenium/SM
+prosciutto/M
+proscribe/DG
+proscription/MS
+prose/M
+prosecute/DSXGN
+prosecution/M
+prosecutor/MS
+proselyte/DSMG
+proselytise/DRSZG
+proselytiser/M
+proselytism/M
+prosocial
+prosody/SM
+prospect/MDGVS
+prospective/Y
+prospector/SM
+prospectus/MS
+prosper/GSD
+prosperity/M
+prosperous/Y
+prostate/MS
+prostheses
+prosthesis/M
+prosthetic
+prostitute/MGNDS
+prostitution/M
+prostrate/GNXDS
+prostration/M
+prosy/RT
+protactinium/M
+protagonist/SM
+protean
+protect/GVSD
+protected/U
+protection/SM
+protectionism/M
+protectionist/MS
+protective/PY
+protectiveness/M
+protector/MS
+protectorate/MS
+protege/SM
+protegee/S
+protein/SM
+protestant/S
+protestation/MS
+protocol/MS
+proton/SM
+protoplasm/M
+protoplasmic
+prototype/MGS
+prototypical
+protozoa
+protozoan/MS
+protozoic
+protract/GD
+protrude/GDS
+protrusile
+protrusion/MS
+protuberance/MS
+protuberant
+proud/RYT
+prov/NB
+provability/M
+provably
+prove/EAGDS
+proved/U
+proven/U
+provenance/SM
+provender/M
+provenience/M
+proverbial/Y
+provide/DRSZG
+provided/U
+providence/M
+provident/Y
+providential/Y
+provider/M
+province/MS
+provincial/SMY
+provincialism/M
+provisional/Y
+proviso/SM
+provocateur/S
+provocative/PY
+provocativeness/M
+provoke/DRSZG
+provoked/U
+provoker/M
+provoking/Y
+provolone/M
+provost/SM
+prow/MS
+prowess/M
+prowl/MDRSZG
+prowler/M
+proximal
+proximate
+proximity/M
+proxy/SM
+prude/MS
+prudence/M
+prudent/Y
+prudential/Y
+prudery/M
+prudish/YP
+prudishness/M
+prune/MZGDRS
+pruner/M
+prurience/M
+prurient/Y
+pry/ZTGDRSM
+psalm/MS
+psalmist/SM
+psaltery/SM
+psephologist/S
+psephology
+pseud/S
+pseudo/S
+pseudonym/SM
+pseudonymous
+pseudoscience/MS
+pseudy
+pshaw/MS
+psi/SM
+psittacosis/M
+psoriasis/M
+psst
+psych/MDSG
+psyche/M
+psychedelia
+psychedelic/SM
+psychedelically
+psychiatric
+psychiatrist/SM
+psychiatry/M
+psychic/MS
+psychical/Y
+psycho/SM
+psychoactive
+psychoanalyse/DSG
+psychoanalysis/M
+psychoanalyst/SM
+psychoanalytic
+psychoanalytical/Y
+psychobabble/M
+psychodrama/MS
+psychogenic
+psychokinesis
+psychokinetic
+psychological/Y
+psychologist/MS
+psychology/SM
+psychometric
+psychoneuroses
+psychoneurosis/M
+psychopath/M
+psychopathic
+psychopathology
+psychopaths
+psychopathy/M
+psychopharmacology
+psychophysiology
+psychos/S
+psychosis/M
+psychosomatic
+psychotherapist/MS
+psychotherapy/SM
+psychotic/SM
+psychotically
+psychotropic/MS
+psychs
+pt/C
+ptarmigan/MS
+pterodactyl/MS
+ptomaine/SM
+pub/SM
+pubertal
+puberty/M
+pubes/M
+pubescence/M
+pubescent
+pubic
+pubis/M
+public/AM
+publican/AMS
+publication/ASM
+publicise/GDS
+publicist/MS
+publicity/M
+publicly
+publish/AGDS
+publishable
+published/U
+publisher/MS
+publishing/M
+puce/M
+puck/ZMRS
+pucker/MDG
+puckish/YP
+puckishness/M
+pud/S
+pudding/SM
+puddle/DSMG
+puddling/M
+pudenda
+pudendum/M
+pudginess/M
+pudgy/PRT
+pueblo/SM
+puerile
+puerility/M
+puerperal
+puff/ZGMDRS
+puffball/SM
+puffer/M
+puffin/SM
+puffiness/M
+puffy/PRT
+pug/SM
+pugilism/M
+pugilist/SM
+pugilistic
+pugnacious/YP
+pugnaciousness/M
+pugnacity/M
+puke/MGDS
+pukka
+pulchritude/M
+pulchritudinous
+pule/GDS
+pull/ZGMDRS
+pullback/MS
+puller/M
+pullet/SM
+pulley/SM
+pullout/MS
+pullover/SM
+pulmonary
+pulp/GMDS
+pulpiness/M
+pulpit/SM
+pulpwood/M
+pulpy/RPT
+pulsar/SM
+pulsate/XGNDS
+pulsation/M
+pulse/AMGDS
+pulverisation/M
+pulverise/DSG
+puma/MS
+pumice/SM
+pummel/S
+pummelled
+pummelling
+pump/ZGMDRS
+pumper/M
+pumpernickel/M
+pumpkin/MS
+pun/SM
+punch/MDRSZG
+punchbag/S
+puncheon/MS
+puncher/M
+punchline/S
+punchy/TR
+punctilio/M
+punctilious/PY
+punctiliousness/M
+punctual/Y
+punctuality/M
+punctuate/GNDS
+punctuation/M
+puncture/DSMG
+pundit/SM
+punditry/M
+pungency/M
+pungent/Y
+puniness/M
+punish/BLGDS
+punished/U
+punishing/Y
+punishment/MS
+punitive/Y
+punk/TMRS
+punned
+punnet/S
+punning
+punster/SM
+punt/ZGMDRS
+punter/M
+puny/TRP
+pup/SM
+pupa/M
+pupae
+pupal
+pupate/DSG
+pupil/MS
+pupped
+puppet/MS
+puppeteer/SM
+puppetry/M
+pupping
+puppy/SM
+purblind
+purchase/DRSMZGB
+purchaser/M
+purdah/M
+pure/PYTR
+purebred/SM
+puree/MDS
+pureeing
+pureness/M
+purgative/SM
+purgatorial
+purgatory/SM
+purge/MZGDRS
+purger/M
+purification/M
+purifier/M
+purify/NDRSZG
+purine/MS
+purism/M
+purist/MS
+puristic
+puritan/SM
+puritanical/Y
+puritanism/M
+purity/M
+purl/GMDS
+purlieu/SM
+purloin/SGD
+purple/MTRS
+purplish
+purport/SMDG
+purported/Y
+purpose/DSMYG
+purposed/A
+purposeful/YP
+purposefulness/M
+purposeless/PY
+purr/GMDS
+purse/MZGDRS
+purser/M
+pursuance/M
+pursuant
+pursue/ZGDRS
+pursuer/M
+pursuit/SM
+purulence/M
+purulent
+purvey/DSG
+purveyance/M
+purveyor/SM
+purview/M
+pus/M
+push/ZGMDRS
+pushbike/S
+pushcart/SM
+pushchair/S
+pusher/M
+pushily
+pushiness/M
+pushover/MS
+pushpin/S
+pushy/TRP
+pusillanimity/M
+pusillanimous/Y
+puss/MS
+pussy/TRSM
+pussycat/MS
+pussyfoot/DSG
+pustular
+pustule/SM
+put/ISM
+putative
+putout/MS
+putrefaction/M
+putrefactive
+putrefy/GDS
+putrescence/M
+putrescent
+putrid
+putsch/MS
+putt/ZGMDRS
+putted/I
+puttee/MS
+putter/MDRZG
+putterer/M
+putting/I
+putty/GDSM
+putz/S
+puzzle/MZGDRSL
+puzzlement/M
+puzzler/M
+pvt
+pwn/SGD
+pyelonephritis
+pygmy/SM
+pyjama/S
+pyjamas/M
+pylon/SM
+pylori
+pyloric
+pylorus/M
+pyorrhoea/M
+pyramid/GSMD
+pyramidal
+pyre/MS
+pyrimidine/MS
+pyrite/SM
+pyrites/M
+pyromania/M
+pyromaniac/SM
+pyrotechnic/S
+pyrotechnical
+pyrotechnics/M
+pyruvate
+python/SM
+pyx/MS
+pzazz
+q
+qr
+qt/S
+qty
+qua
+quack/GMDS
+quackery/M
+quad/MS
+quadrangle/SM
+quadrangular
+quadrant/MS
+quadraphonic
+quadratic/MS
+quadrature
+quadrennial
+quadrennium/MS
+quadriceps/MS
+quadrilateral/SM
+quadrille/XMNS
+quadrillion/M
+quadriplegia/M
+quadriplegic/SM
+quadrivium/M
+quadruped/MS
+quadrupedal
+quadruple/MGDS
+quadruplet/MS
+quadruplicate/MGNDS
+quadruplication/M
+quaff/GMDS
+quagmire/SM
+quahog/MS
+quail/GMDS
+quaint/PRYT
+quaintness/M
+quake/MGDS
+quaky
+qualification/EM
+qualified/U
+qualifier/SM
+qualify/EGXNDS
+qualitative/Y
+quality/SM
+qualm/MS
+qualmish
+quandary/SM
+quango/S
+quanta
+quantifiable
+quantification/M
+quantifier/M
+quantify/NDRSZG
+quantisation
+quantise
+quantitation
+quantitative/Y
+quantity/SM
+quantum/M
+quarantine/MGDS
+quark/MS
+quarrel/SM
+quarrelled
+quarreller/MS
+quarrelling
+quarrelsome/P
+quarrelsomeness/M
+quarry/DSMG
+quart/MS
+quarter/SGMDY
+quarterback/GMDS
+quarterdeck/MS
+quarterfinal/SM
+quarterly/SM
+quartermaster/MS
+quarterstaff/M
+quarterstaves
+quartet/SM
+quarto/MS
+quartz/M
+quasar/MS
+quash/GDS
+quasi
+quatrain/MS
+quaver/MDSG
+quavery
+quay/MS
+quayside/S
+queasily
+queasiness/M
+queasy/TPR
+queen/GMDYS
+queenly/RT
+queer/PTGMDRYS
+queerness/M
+quell/GDS
+quench/ZGDRSB
+quenchable/U
+quencher/M
+quenchless
+querulous/YP
+querulousness/M
+query/DSMG
+ques
+quesadilla/MS
+quest/IFAMS
+quested
+questing
+question/SMDRZGBJ
+questionable/U
+questionably/U
+questioned/U
+questioner/M
+questioning/MY
+questionnaire/SM
+queue's
+queue/CDS
+queuing
+quibble/DRSMZG
+quibbler/M
+quiche/SM
+quick/MNRYXTP
+quicken/DG
+quickfire
+quickie/SM
+quicklime/M
+quickness/M
+quicksand/MS
+quicksilver/M
+quickstep/MS
+quid/MS
+quiescence/M
+quiescent/Y
+quiet/SMDNRYXTGP
+quieten/DG
+quietism
+quietness/M
+quietude/IEM
+quietus/MS
+quiff/S
+quill/SM
+quilt/SMDRZG
+quilter/M
+quilting/M
+quin/S
+quince/SM
+quine/S
+quinidine
+quinine/M
+quinoa
+quinsy/M
+quint/SM
+quintessence/SM
+quintessential/Y
+quintet/SM
+quintuple/MGDS
+quintuplet/MS
+quip/MS
+quipped
+quipping
+quipster/SM
+quire's
+quire/IAS
+quirk/SMDG
+quirkiness/M
+quirky/RTP
+quirt/SM
+quisling/SM
+quit/S
+quitclaim/MS
+quite
+quittance/M
+quitter/SM
+quitting
+quiver/SMDG
+quivery
+quixotic
+quixotically
+quiz/M
+quizzed
+quizzer/SM
+quizzes
+quizzical/Y
+quizzing
+quo/H
+quoin/SM
+quoit/SMDG
+quondam
+quorate/I
+quorum/SM
+quot/B
+quota/SM
+quotability/M
+quotation/SM
+quote's
+quote/UDSG
+quotidian
+quotient/SM
+qwerty
+r/S
+rabbet/GMDS
+rabbi/SM
+rabbinate/M
+rabbinic
+rabbinical
+rabbit/GMDS
+rabble/MS
+rabid/PY
+rabidness/M
+rabies/M
+raccoon/MS
+race/MZGDRS
+racecourse/SM
+racegoer/S
+racehorse/MS
+raceme/MS
+racer/M
+racetrack/MS
+raceway/MS
+racial/Y
+racialism/M
+racialist/MS
+racily
+raciness/M
+racing/M
+racism/M
+racist/SM
+rack/GMDS
+racket/SMDG
+racketeer/SMDG
+racketeering/M
+raconteur/SM
+racquet/SM
+racquetball/SM
+racy/PRT
+rad/SM
+radar/SM
+radarscope/SM
+raddled
+radial/SMY
+radian/S
+radiance/M
+radiant/Y
+radiate/DSGNX
+radiation/M
+radiator/SM
+radical/SMY
+radicalisation/M
+radicalise/DSG
+radicalism/M
+radicchio/M
+radii
+radio/MDGS
+radioactive/Y
+radioactivity/M
+radiocarbon/M
+radiogram/MS
+radiographer/SM
+radiography/M
+radioisotope/MS
+radiologist/SM
+radiology/M
+radioman/M
+radiomen
+radiometer/MS
+radiometric
+radiometry/M
+radiophone/SM
+radioscopy/M
+radiosonde/SM
+radiosurgery
+radiotelegraph/M
+radiotelegraphs
+radiotelegraphy/M
+radiotelephone/MS
+radiotherapist/MS
+radiotherapy/M
+radish/MS
+radium/M
+radius/M
+radon/M
+raffia/M
+raffish/YP
+raffishness/M
+raffle/DSMG
+raft/ZGMDRS
+rafter/M
+rafting/M
+rag/SZGMDR
+raga/MS
+ragamuffin/MS
+ragbag/M
+rage/MS
+rager/M
+ragga
+ragged/RYTP
+raggedness/M
+raggedy/RT
+ragging
+raging/Y
+raglan/SM
+ragout/SM
+ragtag/S
+ragtime/M
+ragweed/M
+ragwort
+rah
+raid/ZGMDRS
+raider/M
+rail's
+rail/CGDS
+railcard/S
+railing/SM
+raillery/SM
+railroad/SZGMDR
+railroader/M
+railroading/M
+railway/SM
+railwayman
+railwaymen
+raiment/M
+rain/GMDS
+rainbow/SM
+raincoat/SM
+raindrop/SM
+rainfall/SM
+rainmaker/SM
+rainmaking/M
+rainproof
+rainstorm/MS
+rainwater/M
+rainy/RT
+raise/MZGDRS
+raiser/M
+raisin/SM
+rajah/M
+rajahs
+rake/MGDS
+rakish/YP
+rakishness/M
+rally/DSMG
+ram/SM
+ramble/DRSMZGJ
+rambler/M
+rambunctious/PY
+rambunctiousness/M
+ramekin/SM
+ramie/M
+ramification/M
+ramify/DSXNG
+ramjet/SM
+rammed
+ramming
+ramp/GMS
+rampage/DSMG
+rampancy/M
+rampant/Y
+rampart/SM
+ramrod/SM
+ramrodded
+ramrodding
+ramshackle
+ran/A
+ranch/MDRSZG
+rancher/M
+ranching/M
+rancid/P
+rancidity/M
+rancidness/M
+rancorous/Y
+rancour/M
+rand/M
+randiness/M
+random/PSY
+randomisation/M
+randomise/DSG
+randomness/MS
+randy/RTP
+ranee/MS
+rang/ZR
+range's
+range/CGDS
+rangefinder/S
+ranger/M
+ranginess/M
+rangy/RTP
+rank/TGJPMDRYS
+ranking/M
+rankle/DSG
+rankness/M
+ransack/SGD
+ransom/SZGMDR
+ransomer/M
+ransomware
+rant/ZGMDJRS
+ranter/M
+rap/SZGMDR
+rapacious/PY
+rapaciousness/M
+rapacity/M
+rape/MS
+raper/M
+rapeseed/M
+rapid/PMRYTS
+rapidity/M
+rapidness/M
+rapier/SM
+rapine/M
+rapist/SM
+rapped
+rappel/SM
+rappelled
+rappelling
+rapper/SM
+rapping
+rapport/MS
+rapporteur/S
+rapprochement/SM
+rapscallion/MS
+rapt/YP
+raptness/M
+raptor/S
+rapture/MS
+rapturous/Y
+rare/YTGPDRS
+rarebit/MS
+rarefaction/M
+rarefy/GDS
+rareness/M
+rarity/SM
+rascal/SMY
+rash/ZTMRSYP
+rasher/M
+rashness/M
+rasp/GMDS
+raspberry/SM
+raspy/RT
+raster
+rat/SM
+ratatouille/M
+ratbag/S
+ratchet/GMDS
+rate/JXMZGNDRS
+rated/U
+ratepayer/S
+rater/M
+rather
+rathskeller/SM
+ratification/M
+ratifier/M
+ratify/NDRSZG
+rating/M
+ratio/MS
+ratiocinate/GNDS
+ratiocination/M
+ration/MDG
+rational/SMY
+rationale/MS
+rationalisation/SM
+rationalise/DSG
+rationalism/M
+rationalist/SM
+rationalistic
+rationality/M
+ratlike
+ratline/SM
+rattan/SM
+ratted
+ratter/SM
+ratting
+rattle/DRSMZGJ
+rattlebrain/SMD
+rattler/M
+rattlesnake/SM
+rattletrap/SM
+rattly
+rattrap/SM
+ratty/RT
+raucous/YP
+raucousness/M
+raunchily
+raunchiness/M
+raunchy/TRP
+ravage/DRSMZG
+ravager/M
+ravages/M
+rave/JMZGDRS
+ravel's
+ravel/US
+ravelled/U
+ravelling/S
+raven/MDSG
+ravenous/Y
+ravine/SM
+raving/M
+ravioli/SM
+ravish/DRSZGL
+ravisher/M
+ravishing/Y
+ravishment/M
+raw/PTMR
+rawboned
+rawhide/M
+rawness/M
+ray/SM
+rayon/M
+raze/GDS
+razoo/MS
+razor/MS
+razorback/MS
+razz/GMDS
+razzmatazz/M
+rcpt
+rd
+re/DSMYTGVJ
+reach/MDSGB
+reachable/U
+reacquire/DSG
+react/V
+reactance
+reactant/SM
+reactionary/SM
+reactivity
+read/ZGMRBJS
+readability/SM
+reader/M
+readership/SM
+readily
+readiness/M
+reading/M
+readmitted
+readout/SM
+ready/DRSTGP
+reafforestation
+real/TMRYPS
+realisation/SM
+realise/DSBG
+realised/U
+realism/M
+realist/SM
+realistic/U
+realistically/U
+realities
+reality/UM
+realm/MS
+realness/M
+realpolitik/M
+realty/M
+ream/ZGMDRS
+reamer/M
+reap/ZGDRS
+reaper/M
+rear/GMDS
+rearguard/MS
+rearmost
+rearward/S
+reason/SMDRZGB
+reasonable/UP
+reasonableness/UM
+reasonably/U
+reasoner/M
+reasoning/M
+reassuring/Y
+reauthorise/S
+reauthorized
+reauthorizing
+rebate/M
+rebel/MS
+rebellion/MS
+rebellious/YP
+rebelliousness/M
+rebid/S
+rebidding
+rebirth/M
+reboil/SDG
+rebuild/SG
+rebuke/DSMG
+rebuking/Y
+rebuttal/MS
+rec'd
+rec/M
+recalcitrance/M
+recalcitrant
+recant/SDG
+recantation/SM
+recap/MS
+recapitalisation
+recce/S
+recd
+receipt/SMDG
+receivables/M
+receive/DRSZGB
+receiver/M
+receivership/M
+recent/RYTP
+recentness/M
+receptacle/SM
+reception/MS
+receptionist/SM
+receptive/PY
+receptiveness/M
+receptivity/M
+receptor/SM
+recess/MDSGV
+recessional/SM
+recessionary
+recessive/SM
+recherche
+recidivism/M
+recidivist/SM
+recipe/SM
+recipient/SM
+reciprocal/SMY
+reciprocate/GNDS
+reciprocation/M
+reciprocity/M
+recital/SM
+recitalist/MS
+recitative/MS
+reciter/SM
+reckless/YP
+recklessness/M
+reckon/SJDG
+reckoning/M
+reclamation/M
+recline/DRSZG
+recliner/M
+recluse/SMV
+recognisable/U
+recognisably/U
+recognise/DRSGB
+recognised/U
+recombination
+recompense/DSMG
+recompilation
+recompile/GD
+recon/S
+reconcile/GDSB
+reconciliation/S
+recondite
+reconfiguration
+reconfigure/D
+reconnaissance/MS
+reconnoitre/GDS
+reconstruct/V
+reconstructed/U
+recorded/U
+recorder/MS
+recording/MS
+recoup/DG
+recourse/M
+recoverable/U
+recovery/SM
+recreant/MS
+recreational
+recriminate/DSGNX
+recrimination/M
+recriminatory
+recrudesce/GDS
+recrudescence/M
+recrudescent
+recruit/LSMDRZG
+recruiter/M
+recruitment/M
+rectal/Y
+rectangle/MS
+rectangular
+rectifiable
+rectification/M
+rectifier/M
+rectify/XNDRSZG
+rectilinear
+rectitude/M
+recto/MS
+rector/SM
+rectory/SM
+rectum/SM
+recumbent
+recuperate/GNVDS
+recuperation/M
+recur/S
+recurred
+recurrence/SM
+recurring
+recursion/S
+recuse/DSG
+recyclable/SM
+recycling/M
+red/PSM
+redact/SDG
+redaction/M
+redactor/SM
+redbird/SM
+redbreast/MS
+redbrick
+redcap/SM
+redcoat/SM
+redcurrant/S
+redden/SDG
+redder
+reddest
+reddish
+redeem/RZB
+redeemer/M
+redemption/M
+redemptive
+redhead/SMD
+redialling
+redirection
+redistrict/GD
+redivide/GDS
+redlining/M
+redneck/SM
+redness/M
+redo/G
+redolence/M
+redolent
+redoubt/SBM
+redoubtably
+redound/SDG
+redraw/SG
+redskin/SM
+reduce/DRSZG
+reducer/M
+reducible
+reductase/M
+reduction/SM
+reductionist
+reductive
+redundancy/SM
+redundant/Y
+redwood/SM
+redye/DS
+reediness/M
+reedy/RTP
+reef/ZGMDRS
+reefer/M
+reek/GMDS
+reel's
+reel/UGDS
+reeve/G
+reexport/SDG
+ref/SZM
+refashion/DGS
+refection/M
+refectory/SM
+refer/B
+referee/DSM
+refereeing
+reference/MGDS
+referendum/MS
+referent/SM
+referential
+referral/SM
+referred
+referrer/SM
+referring
+reffed
+reffing
+refill/BM
+refined/U
+refinement/SM
+refiner/SM
+refinery/S
+refitting
+reflate/XDSGN
+reflationary
+reflect/GVSD
+reflection/MS
+reflective/Y
+reflectivity
+reflector/MS
+reflexive/SMY
+reflexivity
+reflexology
+reforge/DSG
+reform/MZ
+reformat/V
+reformatory/SM
+reformatting
+reformed/U
+reformist/S
+refortify/GDS
+refract/SGVD
+refraction/M
+refractory/SM
+refrain/SGMD
+refresh/ZGLDRS
+refresher/M
+refreshing/Y
+refreshment/SM
+refreshments/M
+refrigerant/SM
+refrigerate/DSGN
+refrigeration/M
+refrigerator/MS
+refuge/SM
+refugee/SM
+refulgence/M
+refulgent
+refund/B
+refurbishment/MS
+refusal/MS
+refutation/MS
+refute/BDRSZG
+refuter/M
+reg
+regal/DYG
+regalement/M
+regalia/M
+regard/ESMDG
+regardless
+regards/M
+regather/DGS
+regatta/SM
+regency/SM
+regeneracy/M
+regenerate/V
+regex/M
+regexp/S
+reggae/M
+regicidal
+regicide/MS
+regime/SM
+regimen/SM
+regiment/MDGS
+regimental
+regimentation/M
+region/SM
+regional/Y
+regionalism/MS
+register/GMDS
+registered/U
+registrant/MS
+registrar/MS
+registration/SM
+registry/SM
+regnant
+rego/MS
+regress/MDSGV
+regression/MS
+regret/SM
+regretful/Y
+regrettable
+regrettably
+regretted
+regretting
+regrind/GS
+reground
+regroup/DGS
+regular/MYS
+regularisation/M
+regularise/DSG
+regularity/SM
+regulate/CDSGNV
+regulated/U
+regulation/CM
+regulations
+regulator/MS
+regulatory
+regurgitate/DSGN
+regurgitation/M
+rehab/MS
+rehabbed
+rehabbing
+rehabilitate/GNVDS
+rehabilitation/M
+rehang/SDG
+rehears/GD
+rehearsal/MS
+rehearsed/U
+rehi
+rehung
+reify/NDSG
+reign/MDSG
+reimburse/BDSGL
+reimbursement/MS
+rein/GD
+reindeer/M
+reinforce/LGDS
+reinforcement/SM
+reinitialise
+reinstall/DG
+reinstatement/M
+reinsurance
+reiterate/V
+reject/GSMD
+rejection/SM
+rejoice/JGDS
+rejoicing/M
+rejoinder/SM
+rejuvenate/DSGN
+rejuvenation/M
+rel
+relate/DRSBXZGNV
+relatedness/M
+relater/M
+relation/M
+relational
+relationship/MS
+relative/MYS
+relativism/M
+relativist/S
+relativistic
+relativity/M
+relax/DRSZG
+relaxant/MS
+relaxation/SM
+relaxer/M
+relay/D
+release/B
+released/U
+relegate/GNDS
+relent/SGD
+relentless/PY
+relentlessness/M
+relevance/M
+relevancy/M
+relevant/Y
+reliability/UM
+reliable/U
+reliably/U
+reliance/M
+reliant
+relic/MS
+relief/SM
+relieve/ZGDRS
+reliever/M
+religion/SM
+religiosity
+religious/MYP
+religiousness/M
+reline/DSG
+relinquish/LDSG
+relinquishment/M
+reliquary/SM
+relish/GMDS
+relist/SGD
+relocate/B
+reluctance/M
+reluctant/Y
+rely/GDS
+rem/M
+remain/SGD
+remainder/GMDS
+remand/SGD
+remapping
+remark/B
+remarkableness/M
+remarkably
+remarked/U
+remediable
+remedy/GDSM
+remember/DG
+remembered/U
+remembrance/MS
+reminder/M
+reminisce/GDS
+reminiscence/MS
+reminiscent/Y
+remiss/PY
+remissness/M
+remit/S
+remittance/SM
+remitted
+remitting/U
+remix/DSG
+remnant/MS
+remodelling
+remonstrant/SM
+remonstrate/DSG
+remorse/M
+remorseful/Y
+remorseless/PY
+remorselessness/M
+remote/RSMYTP
+remoteness/M
+remould/SDG
+removal/SM
+remunerate/GNVXDS
+remuneration/M
+renaissance/MS
+renal
+renascence/S
+rend/GS
+render/SGMDJ
+rendering/M
+rendezvous/GMDS
+rendition/MS
+renegade/DSMG
+renege/DRSZG
+reneger/M
+renew/DSBG
+renewal/MS
+rennet/M
+rennin/M
+renounce/LDSG
+renouncement/M
+renovate/DSXGN
+renovation/M
+renovator/MS
+renown/MD
+rent/ZGMDRS
+rental/SM
+renter/M
+renunciation/SM
+reopen/SDG
+reorg/MDSG
+rep/SM
+repaint/GDS
+repair/BZR
+repairer/M
+repairman/M
+repairmen
+reparable
+reparation/MS
+reparations/M
+repartee/M
+repatriate/XDSMGN
+repatriation/M
+repeat/SMDRZGB
+repeatability
+repeatable/U
+repeatably
+repeated/Y
+repeater/M
+repeating/M
+repel/S
+repelled
+repellent/SM
+repelling
+repent/SDG
+repentance/M
+repentant/Y
+repercussion/S
+repertoire/MS
+repertory/SM
+repetition/MS
+repetitious/YP
+repetitiousness/M
+repetitive/YP
+repetitiveness/M
+rephotograph/DG
+replaceable
+replant/GSD
+replenish/LGDS
+replenishment/M
+replete/PDSGN
+repleteness/M
+repletion/M
+replica/SM
+replicate/DSGNX
+replication/M
+replicator/S
+reportage/M
+reported/Y
+reportorial
+reposeful
+reposition
+repository/SM
+reprehend/DGS
+reprehensibility/M
+reprehensible
+reprehensibly
+reprehension/M
+represent/GDS
+representational
+representative/MS
+represented/U
+repression/MS
+repressive/PY
+reprieve/DSMG
+reprimand/GSMD
+reprisal/SM
+reprise/M
+reproach/GMDSB
+reproachful/Y
+reprobate/MS
+reproductive
+reprogramming
+reproving/Y
+reptile/SM
+reptilian/MS
+republic/S
+republicanism/M
+repudiate/XGNDS
+repudiation/M
+repudiator/MS
+repugnance/M
+repugnant
+repulsion/M
+repulsive/YP
+repulsiveness/M
+repurchase/GDS
+reputability/M
+reputably/E
+reputation/MS
+repute/DSMGB
+reputed/Y
+request/GDR
+requiem/SM
+require/LDG
+requirement/MS
+requisite/XMNS
+requisition/GMD
+requital/M
+requite/DRSZG
+requited/U
+requiter/M
+reread/SG
+rerecord/GDS
+rerunning
+resale/B
+resample/GDS
+resat
+rescind/SDG
+rescission/M
+rescue/DRSMZG
+rescuer/M
+reseal/B
+resemble/DSG
+resend
+resent/LSDG
+resentful/YP
+resentfulness/M
+resentment/MS
+reserpine/M
+reservation/MS
+reserved/UY
+reservedness/M
+reservist/SM
+reservoir/SM
+resetting
+reshipping
+residence/SM
+residency/SM
+resident/MS
+residential
+residua
+residual/MS
+residue/SM
+residuum/M
+resignation/SM
+resigned/Y
+resilience/M
+resiliency/M
+resilient/Y
+resinous
+resist/SMDRZG
+resistance/SM
+resistant/U
+resistible
+resistivity
+resistless
+resistor/MS
+resit/S
+resitting
+resold
+resole/DSG
+resolute/PY
+resoluteness/M
+resolve/RBM
+resolved/U
+resonance/SM
+resonant/Y
+resonate/GDS
+resonator/SM
+resorption/M
+resound/SGD
+resounding/Y
+resourceful/YP
+resourcefulness/M
+resp
+respect/ESGVMD
+respectability/M
+respectable
+respectably
+respecter/MS
+respectful/EY
+respectfulness/M
+respective/Y
+respell/SGD
+respiration/M
+respirator/SM
+respiratory
+respire/DG
+resplendence/M
+resplendent/Y
+respond/SGD
+respondent/SM
+response/MS
+responsibility/SM
+responsible
+responsibly
+responsive/UYP
+responsiveness/UM
+rest/GVMDS
+restate/GDS
+restaurant/SM
+restaurateur/MS
+restful/YP
+restfuller
+restfullest
+restfulness/M
+restitution/M
+restive/YP
+restiveness/M
+restless/PY
+restlessness/M
+restoration/SM
+restorative/SM
+restorer/SM
+restrained/U
+restraint/MS
+restrict/SDGV
+restricted/U
+restriction/MS
+restrictive/YP
+restrictiveness/M
+restring/SG
+restroom/SM
+restructuring/SM
+result/GSMD
+resultant/SM
+resume/DSMG
+resumption/MS
+resupply/DSG
+resurgence/MS
+resurgent
+resurrect/GSD
+resurrection/MS
+resuscitate/GNDS
+resuscitation/M
+resuscitator/SM
+retailer/MS
+retain/SDRZG
+retainer/M
+retake/G
+retaliate/DSGNVX
+retaliation/M
+retaliatory
+retard/SMDRZG
+retardant/SM
+retardation/M
+retarder/M
+retch/DSG
+reteach/GS
+retention/M
+retentive/YP
+retentiveness/M
+rethink/SGM
+rethought
+reticence/M
+reticent/Y
+reticulated
+reticulation/MS
+reticulum
+retina/SM
+retinal
+retinoblastoma
+retinue/SM
+retiree/SM
+retirement/MS
+retort/GMD
+retrace/GDS
+retract/DBG
+retractile
+retraction/S
+retrain/DGS
+retread/D
+retrenchment/MS
+retribution/MS
+retributive
+retrieval/SM
+retrieve/DRSMZGB
+retriever/M
+retro/MS
+retroactive/Y
+retrofire/GDS
+retrofit/SM
+retrofitted
+retrofitting
+retrograde/DSG
+retrogress/GVDS
+retrogression/M
+retrorocket/MS
+retrospect/MDSGV
+retrospection/M
+retrospective/MYS
+retrovirus/MS
+retsina/M
+returnable/SM
+returnee/SM
+rev/ZVM
+revamping/M
+reveal/GJSD
+revealed/U
+revealing/Y
+reveille/M
+revel/MS
+revelation/SM
+revelatory
+revelled
+reveller/SM
+revelling/S
+revelry/SM
+revenge/MGDS
+revenuer/SM
+reverb
+reverberate/DSGNX
+reverberation/M
+revere/DSG
+reverence/DSMG
+reverend/SM
+reverent/Y
+reverential/Y
+reverie/MS
+revers/M
+reversal/SM
+reverse/Y
+reversibility
+reversible
+reversibly
+revert/GSD
+revertible
+revetment/SM
+revile/DRSLZG
+revilement/M
+reviler/M
+reviser/MS
+revision/SM
+revisionism/M
+revisionist/SM
+revival/MS
+revivalism/M
+revivalist/SM
+revive/DSG
+revivification/M
+revocable
+revoke/DSG
+revolt/GD
+revolting/Y
+revolution/SM
+revolutionary/SM
+revolutionise/DSG
+revolutionist/SM
+revolve/BZGDRS
+revolver/M
+revue/MS
+revulsion/M
+revved
+revving
+rewarded/U
+rewarding/U
+rewarm/GSD
+rewash/GDS
+reweave/GS
+rewedding
+rewind/MB
+rewound
+rewrite/MGS
+rhapsodic
+rhapsodical
+rhapsodise/GDS
+rhapsody/SM
+rhea/MS
+rhenium/M
+rheostat/SM
+rhesus/MS
+rhetoric/M
+rhetorical/Y
+rhetorician/SM
+rheum/M
+rheumatic/MS
+rheumatically
+rheumatism/M
+rheumatoid
+rheumy
+rhinestone/SM
+rhinitis/M
+rhino/MS
+rhinoceros/MS
+rhinoplasty
+rhinovirus/MS
+rhizome/MS
+rho/SM
+rhodium/M
+rhododendron/SM
+rhomboid/SM
+rhomboidal
+rhombus/MS
+rhubarb/MS
+rhyme/MZGDRS
+rhymer/M
+rhymester/MS
+rhythm/SM
+rhythmic
+rhythmical/Y
+rial/MS
+rib/SM
+ribald
+ribaldry/M
+ribbed
+ribber/SM
+ribbing
+ribbon/SM
+riboflavin/M
+rice/MZGDRS
+ricer/M
+rich/TMRSYP
+richness/M
+rick/GMDS
+rickets/M
+rickety/RT
+rickrack/M
+rickshaw/MS
+ricochet/GMDS
+ricotta/M
+rid/S
+riddance/M
+ridden
+ridding
+riddle/DSMG
+ride/MZGRS
+rider/M
+riderless
+ridership/M
+ridge/MGDS
+ridgepole/SM
+ridgy
+ridicule/MGDS
+ridiculous/YP
+ridiculousness/M
+riding/M
+rife/TR
+riff/GMDS
+riffle/DSMG
+riffraff/M
+rifle/MZGDRS
+rifleman/M
+riflemen
+rifler/M
+rifling/M
+rift/GMDS
+rig/SM
+rigatoni/M
+rigged
+rigger/SM
+rigging/M
+right/MDRYSPTG
+righteous/UP
+righteously
+righteousness/UM
+rightful/PY
+rightfulness/M
+rightism/M
+rightist/SM
+rightmost
+rightness/M
+righto
+rightsize/DSG
+rightward/S
+rigid/YP
+rigidity/M
+rigidness/M
+rigmarole/MS
+rigorous/YP
+rigorousness/M
+rigour/SM
+rile/GDS
+rill/MS
+rim/SGMD
+rime/MS
+rimless
+rimmed
+rimming
+rind/MS
+ring/ZGMDRJ
+ringer/M
+ringgit/MS
+ringleader/MS
+ringlet/MS
+ringlike
+ringmaster/MS
+ringside/M
+ringtone/SM
+ringworm/M
+rink/MS
+rinse/MGDS
+riot/ZGMDRS
+rioter/M
+rioting/M
+riotous/PY
+rip/SXTMNR
+riparian
+ripcord/MS
+ripe/YP
+ripen/DG
+ripened/U
+ripeness/M
+ripoff/SM
+riposte/MGDS
+ripped
+ripper/SM
+ripping
+ripple/DSMG
+ripply
+ripsaw/SM
+riptide/MS
+rise/JMZGRS
+risen
+riser/M
+risibility/M
+risible
+rising/M
+risk/GMDS
+riskily
+riskiness/M
+risky/RPT
+risotto/MS
+risque
+rissole/S
+rite/MS
+ritual/SMY
+ritualised
+ritualism/M
+ritualistic
+ritualistically
+ritzy/RT
+riv/ZNR
+rival/MS
+rivalled/U
+rivalling
+rivalry/SM
+rive/CGDS
+river/M
+riverbank/SM
+riverbed/MS
+riverboat/SM
+riverfront
+riverside/MS
+rivet/MDRSZG
+riveter/M
+riviera/S
+rivulet/MS
+riyal/MS
+rm
+roach/GMDS
+road/IMS
+roadbed/SM
+roadblock/MDSG
+roadhouse/SM
+roadie/MS
+roadkill/M
+roadrunner/SM
+roadshow/SM
+roadside/SM
+roadster/SM
+roadway/SM
+roadwork/SM
+roadworthy
+roam/ZGDRS
+roamer/M
+roaming/M
+roan/MS
+roar/ZGMDRS
+roarer/M
+roaring/M
+roast/ZGMDRSJ
+roaster/M
+roasting/M
+rob/S
+robbed
+robber/MS
+robbery/SM
+robbing
+robe's
+robe/EGDS
+robin/MS
+robocall/SGMD
+robot/MS
+robotic/S
+robotics/M
+robotise/GDS
+robust/RYPT
+robustness/M
+rock/ZGMDRS
+rockabilly/M
+rockbound
+rocker/M
+rockery/S
+rocket/MDSG
+rocketry/M
+rockfall/SM
+rockiness/M
+rocky/TRP
+rococo/M
+rod/SM
+rode
+rodent/MS
+rodeo/MS
+roe/SM
+roebuck/SM
+roentgen/MS
+roger/GDS
+rogue's
+rogue/KS
+roguery/M
+roguish/YP
+roguishness/M
+roil/GDS
+roister/ZGDRS
+roisterer/M
+role/MS
+roll/MDRZGJS
+rollback/SM
+roller/M
+rollerblading
+rollerskating/M
+rollick/SDG
+rollicking/M
+rollmop/S
+rollover/SM
+romaine/MS
+roman/M
+romance/MZGDRS
+romancer/M
+romantic/MS
+romantically
+romanticise/DSG
+romanticism/M
+romanticist/SM
+romeo/MS
+romp/MDRZGS
+romper/M
+rondo/SM
+rood/MS
+roof/MDRZGS
+roofer/M
+roofing/M
+roofless
+rooftop/SM
+rook/MDGS
+rookery/SM
+rookie/SM
+room/MDRZGS
+roomer/M
+roomette/SM
+roomful/SM
+roominess/M
+roommate/SM
+roomy/RTP
+roost/SMDRZG
+rooster/M
+root/MDRZGS
+rooter/M
+rootkit/SM
+rootless/P
+rootlet/SM
+rope/MZGDRS
+ropeable
+roper/M
+ropy/RT
+rort/MDGS
+rosary/SM
+rose/MS
+roseate
+rosebud/SM
+rosebush/MS
+rosemary/M
+rosette/SM
+rosewater/M
+rosewood/MS
+rosily
+rosin/SMDG
+rosiness/M
+roster/SM
+rostrum/MS
+rosy/RTP
+rot/SM
+rota/S
+rotary/SM
+rotate/DSGNX
+rotation/M
+rotational
+rotatory
+rote/M
+rotgut/M
+rotisserie/SM
+rotogravure/MS
+rotor/SM
+rototiller/MS
+rotted
+rotten/TPRY
+rottenness/M
+rotter/S
+rotting
+rottweiler/S
+rotund/P
+rotunda/MS
+rotundity/M
+rotundness/M
+rouble/SM
+roue/MS
+rouge/DSMG
+rough/MDNRYXTGP
+roughage/M
+roughcast
+roughen/GD
+roughhouse/MGDS
+roughie/M
+roughneck/GMDS
+roughness/M
+roughs
+roughshod
+roughy/SM
+roulette/M
+round/PSMDRYZTG
+roundabout/SM
+roundel/S
+roundelay/MS
+roundhouse/SM
+roundish
+roundness/M
+roundup/MS
+roundworm/SM
+rouse/DSG
+roust/SDG
+roustabout/SM
+rout/MRZS
+route's
+route/ADSG
+routeing
+router/M
+routine/MYS
+routinise/GDS
+roux
+rove/ZGDRS
+rover/M
+row/SZGMDR
+rowan/S
+rowboat/MS
+rowdily
+rowdiness/M
+rowdy/PRSMT
+rowdyism/M
+rowel/SM
+rowelled
+rowelling
+rower/M
+rowing/M
+rowlock/S
+royal/SMY
+royalist/SM
+royalties/M
+royalty/SM
+rpm
+rps
+rt
+rte
+rub/SM
+rubato/SM
+rubbed
+rubber/SM
+rubberise/GDS
+rubberneck/MDRSZG
+rubbernecker/M
+rubbery
+rubbing/S
+rubbish/MDSG
+rubbishy
+rubble/M
+rubdown/SM
+rube/MS
+rubella/M
+rubicund
+rubidium/M
+rubric/SM
+ruby/RSMT
+ruched
+ruck/DGS
+rucksack/MS
+ruckus/MS
+ructions
+rudder/SM
+rudderless
+ruddiness/M
+ruddy/RTP
+rude/YTRP
+rudeness/M
+rudiment/SM
+rudimentary
+rue/DSMG
+rueful/PY
+ruefulness/M
+ruff/MDYGS
+ruffian/MYS
+ruffle/DSMG
+ruffled/U
+rug/SM
+rugby/M
+rugged/PTRY
+ruggedness/M
+rugger
+rugrat/SM
+ruin/MDGS
+ruination/M
+ruinous/Y
+rule/MZGJDRS
+ruler/M
+ruling/M
+rum/SM
+rumba/SMDG
+rumble/DSJMG
+rumbling/M
+rumbustious
+ruminant/MS
+ruminate/XGNVDS
+rumination/M
+ruminative/Y
+rummage/DSMG
+rummer
+rummest
+rummy/M
+rumour/SMDG
+rumourmonger/SM
+rump/MYS
+rumple/DSMG
+rumpus/MS
+run/ASM
+runabout/MS
+runaround/SM
+runaway/MS
+rundown/SM
+rune/MS
+rung/MS
+runic
+runlet/SM
+runnel/SM
+runner/SM
+running/M
+runny/RT
+runoff/SM
+runt/MS
+runtime
+runty/RT
+runway/SM
+rupee/SM
+rupiah/M
+rupiahs
+rupture/MGDS
+rural
+ruse/MS
+rush/MDRSZG
+rusher/M
+rushy
+rusk/MS
+russet/SM
+rust/MDGS
+rustic/SM
+rustically
+rusticate/GDS
+rustication/M
+rusticity/M
+rustiness/M
+rustle/DRSJMZG
+rustler/M
+rustproof/SDG
+rusty/RPNT
+rut/SM
+rutabaga/SM
+ruthenium/M
+rutherfordium/M
+ruthless/YP
+ruthlessness/M
+rutted
+rutting
+rutty/RT
+rye/M
+s/NYXB
+sabbath/M
+sabbaths
+sabbatical/SM
+sable/MS
+sabot/MS
+sabotage/DSMG
+saboteur/SM
+sabra/MS
+sabre/MS
+sac/SM
+saccharin/M
+saccharine
+sacerdotal
+sachem/SM
+sachet/SM
+sack/ZGMDRJS
+sackcloth/M
+sacker/M
+sackful/MS
+sacking/M
+sacra
+sacrament/MS
+sacramental
+sacred/YP
+sacredness/M
+sacrifice/DSMG
+sacrificial/Y
+sacrilege/MS
+sacrilegious/Y
+sacristan/MS
+sacristy/SM
+sacroiliac/MS
+sacrosanct/P
+sacrosanctness/M
+sacrum/M
+sad/PY
+sadden/SDG
+sadder
+saddest
+saddle's
+saddle/UDSG
+saddlebag/MS
+saddler/S
+saddlery
+sades
+sadhu/S
+sadism/M
+sadist/SM
+sadistic
+sadistically
+sadness/M
+sadomasochism/M
+sadomasochist/MS
+sadomasochistic
+safari/SGMD
+safe/MYTPRS
+safeguard/SMDG
+safekeeping/M
+safeness/M
+safety/SM
+safflower/MS
+saffron/MS
+sag/SM
+saga/MS
+sagacious/Y
+sagacity/M
+sage/MYTRS
+sagebrush/M
+sagged
+sagging
+saggy/RT
+sago/M
+saguaro/MS
+sahib/MS
+said/U
+sail/GMDSJ
+sailboard/MRZGS
+sailboarder/M
+sailboarding/M
+sailboat/MS
+sailcloth/M
+sailfish/MS
+sailing/M
+sailor/SM
+sailplane/MS
+saint/MDYS
+sainthood/M
+saintlike
+saintliness/M
+saintly/PRT
+saith
+sake/M
+saki/M
+salaam/SMDG
+salacious/PY
+salaciousness/M
+salacity/M
+salad/MS
+salamander/SM
+salami/SM
+salary/DSM
+sale/AMS
+saleable/U
+saleroom/S
+salesclerk/SM
+salesgirl/SM
+saleslady/SM
+salesman/M
+salesmanship/M
+salesmen
+salespeople/M
+salesperson/MS
+salesroom/S
+saleswoman/M
+saleswomen
+salience/M
+salient/SMY
+saline/SM
+salinity/M
+saliva/M
+salivary
+salivate/GNDS
+salivation/M
+sallow/RTP
+sallowness/M
+sally/DSMG
+salmon/SM
+salmonella/M
+salmonellae
+salon/MS
+saloon/SM
+salsa/MS
+salt's
+salt/CTGDS
+saltbox/MS
+saltcellar/SM
+salted/U
+salter
+saltine/SM
+saltiness/M
+saltpetre/M
+saltshaker/SM
+saltwater/M
+salty/RTP
+salubrious/I
+salutary
+salutation/MS
+salutatorian/MS
+salutatory
+salute/DSMG
+salvage/DSMG
+salvageable
+salvation/M
+salve/MZGDRS
+salver/M
+salvo/MS
+samarium/M
+samba/MDSG
+same/SP
+sameness/M
+samey
+samizdat/S
+samosa/S
+samovar/SM
+sampan/SM
+sample/DRSMZGJ
+sampler/M
+sampling/M
+samurai/SM
+sanatorium/SM
+sanctification/M
+sanctify/GDSN
+sanctimonious/YP
+sanctimoniousness/M
+sanctimony/M
+sanction/GSMD
+sanctioned/U
+sanctity/M
+sanctuary/SM
+sanctum/SM
+sand/ZGMDRS
+sandal/SM
+sandalwood/M
+sandbag/SM
+sandbagged
+sandbagger/SM
+sandbagging
+sandbank/MS
+sandbar/SM
+sandblast/ZGMDRS
+sandblaster/M
+sandbox/MS
+sandcastle/MS
+sander/M
+sandgroper/SM
+sandhog/SM
+sandiness/M
+sandlot/SM
+sandlotter/MS
+sandman/M
+sandmen
+sandpaper/GMDS
+sandpiper/MS
+sandpit/S
+sandshoe/MS
+sandstone/M
+sandstorm/SM
+sandwich/MDSG
+sandy/RTP
+sane/IYTR
+saneness/M
+sang/ZRS
+sanger/M
+sangfroid/M
+sangria/M
+sanguinary
+sanguine/Y
+sanitarian/SM
+sanitarium/SM
+sanitary/IU
+sanitation/M
+sanitise/ZGDRS
+sanity/IM
+sank
+sans
+sanserif
+sap/SM
+sapience/M
+sapiens
+sapient
+sapless
+sapling/MS
+sapped
+sapper/S
+sapphire/SM
+sappiness/M
+sapping
+sappy/PRT
+saprophyte/SM
+saprophytic
+sapsucker/SM
+sapwood/M
+saran/M
+sarcasm/MS
+sarcastic
+sarcastically
+sarcoma/MS
+sarcophagi
+sarcophagus/M
+sardine/MS
+sardonic
+sardonically
+sarge/MS
+sari/MS
+sarky
+sarnie/S
+sarong/SM
+sarsaparilla/MS
+sartorial/Y
+sash/MS
+sashay/SGMD
+sass/GMDS
+sassafras/MS
+sassy/RT
+sat
+satanic
+satanical/Y
+satanism/M
+satanist/MS
+satay
+satchel/MS
+sate/GDS
+sateen/M
+satellite/DSMG
+satiable/I
+satiate/GNDS
+satiation/M
+satiety/M
+satin/M
+satinwood/SM
+satiny
+satire/SM
+satiric
+satirical/Y
+satirise/DSG
+satirist/SM
+satisfaction/EM
+satisfactions
+satisfactorily/U
+satisfactory/U
+satisfied/U
+satisfy/EDSG
+satisfying/U
+satisfyingly
+satori/M
+satrap/SM
+satsuma/S
+saturate/DSGN
+saturated/U
+saturation/M
+saturnine
+satyr/MS
+satyriasis/M
+satyric
+sauce/MZGDRS
+saucepan/SM
+saucer/M
+saucily
+sauciness/M
+saucy/RPT
+sauerkraut/M
+sauna/MDSG
+saunter/MDGS
+saurian
+sauropod/SM
+sausage/MS
+saute/MS
+sauteed
+sauteing
+savage/DRSMYTGP
+savageness/M
+savagery/SM
+savanna/MS
+savant/SM
+save/BJMZGDRS
+saved/U
+saver/M
+saving/M
+savings/M
+saviour/MS
+savour/SGMD
+savouriness/M
+savoury/TRSMP
+savoy/MS
+savvy/DRSMTG
+saw/SGMD
+sawbones/M
+sawbuck/MS
+sawdust/M
+sawfly/SM
+sawhorse/SM
+sawmill/MS
+sawyer/SM
+sax/MS
+saxifrage/SM
+saxophone/MS
+saxophonist/SM
+say's
+say/USG
+saying/SM
+scab/MS
+scabbard/MS
+scabbed
+scabbiness/M
+scabbing
+scabby/PTR
+scabies/M
+scabrous
+scad/MS
+scaffold/SMG
+scaffolding/M
+scag/S
+scagged
+scalability
+scalar/S
+scalawag/MS
+scald/MDSG
+scale's
+scale/CGDS
+scaleless
+scalene
+scaliness/M
+scallion/MS
+scallop/GSMD
+scalp/MDRSZG
+scalpel/SM
+scalper/M
+scaly/RTP
+scam/MS
+scammed
+scammer/S
+scamming
+scamp/MRSZ
+scamper/GMD
+scampi/M
+scan/MS
+scandal/SM
+scandalise/DSG
+scandalmonger/SM
+scandalous/Y
+scandium/M
+scanned
+scanner/SM
+scanning
+scansion/M
+scant/CDSTG
+scanter
+scantily
+scantiness/M
+scantly
+scantness/M
+scanty/RSPT
+scapegoat/SGMD
+scapegrace/MS
+scapula/M
+scapulae
+scapular/SM
+scar/GMDS
+scarab/SM
+scarce/RYTP
+scarceness/M
+scarcity/SM
+scare/MS
+scarecrow/MS
+scaremonger/SMG
+scarf/MDSG
+scarification/M
+scarify/NDSG
+scarily
+scariness/M
+scarlatina/M
+scarlet/M
+scarp/MDRSZG
+scarper/DG
+scarred
+scarring
+scarves
+scary/RTP
+scat/MS
+scathing/Y
+scatological
+scatology/M
+scatted
+scatter/GJSMD
+scatterbrain/SMD
+scattering/M
+scattershot
+scatting
+scatty
+scavenge/ZGDRS
+scavenger/M
+scenario/MS
+scenarist/MS
+scene/MS
+scenery/M
+scenic
+scenically
+scent/CMS
+scented/U
+scenting
+scentless
+sceptic/MS
+sceptical/Y
+scepticism/M
+sceptre/MS
+sch
+schadenfreude
+schedule's
+schedule/ADSG
+scheduled/U
+scheduler/S
+schema
+schemata
+schematic/SM
+schematically
+schematise/GDS
+scheme/DRSMZG
+schemer/M
+scherzo/MS
+schilling/MS
+schism/SM
+schismatic/SM
+schist/M
+schistosomiasis
+schizo/SM
+schizoid/MS
+schizophrenia/M
+schizophrenic/SM
+schlemiel/SM
+schlep/SM
+schlepped
+schlepping
+schlock/M
+schmaltz/M
+schmaltzy/TR
+schmo/M
+schmoes
+schmooze/DRSZG
+schmuck/MS
+schnapps/M
+schnauzer/SM
+schnitzel/SM
+schnook/MS
+schnoz/MS
+schnozzle/SM
+scholar/MYS
+scholarship/MS
+scholastic
+scholastically
+scholasticism
+school/SGMD
+schoolbag/MS
+schoolbook/SM
+schoolboy/MS
+schoolchild/M
+schoolchildren/M
+schooldays
+schooled/U
+schoolfellow/SM
+schoolgirl/SM
+schoolhouse/SM
+schooling/M
+schoolkid/S
+schoolmarm/SM
+schoolmarmish
+schoolmaster/MS
+schoolmate/SM
+schoolmistress/MS
+schoolroom/SM
+schoolteacher/MS
+schoolwork/M
+schoolyard/SM
+schooner/SM
+schuss/GMDS
+schussboomer/MS
+schwa/MS
+sci
+sciatic
+sciatica/M
+science/FMS
+scientific/U
+scientifically/U
+scientist/SM
+scimitar/SM
+scintilla/MS
+scintillate/DSGN
+scintillation/M
+scion/MS
+scissor/GDS
+scleroses
+sclerosis/M
+sclerotic
+scoff/MDRSZG
+scoffer/M
+scofflaw/MS
+scold/MDSGJ
+scolding/M
+scoliosis/M
+sconce/SM
+scone/MS
+scoop/MDSG
+scoopful/MS
+scoot/DRSZG
+scooter/M
+scope/MGDS
+scorbutic
+scorch/MDRSZG
+scorcher/M
+score/MZGDRS
+scoreboard/SM
+scorecard/MS
+scorekeeper/MS
+scoreless
+scoreline/S
+scorer/M
+scorn/MDRSZG
+scorner/M
+scornful/Y
+scorpion/MS
+scotch/MDSG
+scotchs
+scoundrel/MS
+scour/DRSZG
+scourer/M
+scourge/DSMG
+scout/MDRSZG
+scouting/M
+scoutmaster/MS
+scow/MS
+scowl/MDSG
+scrabble/MZGDRS
+scrabbler/M
+scrag/MS
+scraggly/RT
+scraggy/TR
+scram/S
+scramble's
+scramble/UGDS
+scrambler/MS
+scrammed
+scramming
+scrap/MDRSZGJ
+scrapbook/SM
+scrape/SM
+scraper/M
+scrapheap/SM
+scrapie
+scrapped
+scrapper/MS
+scrapping
+scrappy/TR
+scrapyard/SM
+scratch/GMDS
+scratchcard/S
+scratched/U
+scratchily
+scratchiness/M
+scratchpad/S
+scratchy/PRT
+scrawl/SMDG
+scrawly
+scrawniness/M
+scrawny/PTR
+scream/SMDRZG
+screamer/M
+screaming/Y
+scree/MDS
+screech/GMDS
+screechy/TR
+screed/S
+screen/SJMDG
+screening/M
+screenplay/SM
+screensaver/SM
+screenshot/S
+screenwriter/SM
+screenwriting/M
+screw's
+screw/UDSG
+screwball/MS
+screwdriver/MS
+screwiness/M
+screwworm/SM
+screwy/PRT
+scribal
+scribble/MZGDRS
+scribbler/M
+scribe's
+scribe/CKIS
+scrim/MS
+scrimmage/MGDS
+scrimp/SDG
+scrimshaw/MDGS
+scrip/MS
+script/FSMDG
+scripted/U
+scriptural
+scripture/MS
+scriptwriter/SM
+scrivener/SM
+scrod/M
+scrofula/M
+scrofulous
+scrog/S
+scroll/GSMD
+scrooge/MS
+scrota
+scrotal
+scrotum/M
+scrounge/DRSZG
+scrounger/M
+scroungy/TR
+scrub/MS
+scrubbed
+scrubber/SM
+scrubbing
+scrubby/RT
+scruff/SM
+scruffily
+scruffiness/M
+scruffy/RPT
+scrum/S
+scrumhalf
+scrumhalves
+scrummage/S
+scrummed
+scrumming
+scrump/SGD
+scrumptious/Y
+scrumpy
+scrunch/MDSG
+scrunchy/SM
+scruple/MGDS
+scrupulosity/M
+scrupulous/UPY
+scrupulousness/UM
+scrutineer/S
+scrutinise/GDS
+scrutiny/M
+scuba/MDSG
+scud/MS
+scudded
+scudding
+scuff/MDSG
+scuffle/MGDS
+scull/MDRSZG
+sculler/M
+scullery/SM
+scullion/SM
+sculpt/SGD
+sculptor/SM
+sculptress/MS
+sculptural
+sculpture/DSMG
+scum/MS
+scumbag/MS
+scummed
+scumming
+scummy/TR
+scupper/MDGS
+scurf/M
+scurfy
+scurrility/M
+scurrilous/PY
+scurrilousness/M
+scurry/GDSM
+scurvily
+scurvy/TRM
+scutcheon/SM
+scuttle/MGDS
+scuttlebutt/M
+scuzzy/TR
+scythe/DSMG
+sea/SM
+seabed/SM
+seabird/MS
+seaboard/SM
+seaborne
+seacoast/SM
+seafarer/SM
+seafaring/M
+seafloor/SM
+seafood/M
+seafront/SM
+seagoing
+seagull/MS
+seahorse/MS
+seal's
+seal/AUSDG
+sealant/MS
+sealer/SM
+sealskin/M
+seam/GMDNS
+seaman/M
+seamanship/M
+seamless/Y
+seamount/MS
+seamstress/MS
+seamy/RT
+seance/SM
+seaplane/SM
+seaport/MS
+sear/GMDS
+search/AZGMDRS
+searchable/U
+searcher/AM
+searching/Y
+searchlight/MS
+searing/Y
+seascape/SM
+seashell/SM
+seashore/SM
+seasick/P
+seasickness/M
+seaside/MS
+season/SGMDBJ
+seasonable/U
+seasonably/U
+seasonal/Y
+seasonality
+seasoned/U
+seasoning/M
+seat's
+seat/UGDS
+seating/M
+seatmate/SM
+seawall/MS
+seaward/MS
+seawater/M
+seaway/SM
+seaweed/MS
+seaworthiness/M
+seaworthy/P
+sebaceous
+seborrhoea/M
+sebum
+sec'y
+sec/SM
+secant/SM
+secateurs
+secede/DSG
+secession/M
+secessionist/MS
+seclude/GDS
+seclusion/M
+seclusive
+second/SLZGMDRY
+secondarily
+secondary/SM
+seconder/M
+secondhand
+secondment/S
+secrecy/M
+secret/SGVMDY
+secretarial
+secretariat/MS
+secretary/SM
+secretaryship/M
+secrete/XNS
+secretion/M
+secretive/PY
+secretiveness/M
+secretory
+sect/IMS
+sectarian/MS
+sectarianism/M
+sectary/SM
+section/AESM
+sectional/MS
+sectionalism/M
+sectioned
+sectioning
+sector/ESM
+secular
+secularisation/M
+secularise/DSG
+secularism/M
+secularist/SM
+secure/DRSYTG
+secured/U
+security/ISM
+secy
+sedan/MS
+sedate/DRSYTGNVP
+sedateness/M
+sedation/M
+sedative/SM
+sedentary
+sedge/M
+sedgy
+sediment/MS
+sedimentary
+sedimentation/M
+sedition/M
+seditious
+seduce/DRSZG
+seducer/M
+seduction/SM
+seductive/YP
+seductiveness/M
+seductress/MS
+sedulous/Y
+see/RSMZ
+seed's
+seed/AGDS
+seedbed/MS
+seedcase/MS
+seeded/U
+seeder/SM
+seediness/M
+seedless
+seedling/MS
+seedpod/MS
+seedy/RPT
+seeing/S
+seek/ZGRS
+seeker/M
+seem/GDS
+seeming/Y
+seemliness/UM
+seemly/URTP
+seen/U
+seep/GDS
+seepage/M
+seer/M
+seersucker/M
+seesaw/SMDG
+seethe/DSG
+segfault/S
+segment/GSMD
+segmentation/M
+segmented/U
+segregate/CDSGN
+segregated/U
+segregation/CM
+segregationist/MS
+segue/MGDS
+segueing
+seigneur/SM
+seignior/SM
+seine/MZGDRS
+seiner/M
+seismic
+seismically
+seismograph/ZMR
+seismographer/M
+seismographic
+seismographs
+seismography/M
+seismologic
+seismological
+seismologist/MS
+seismology/M
+seize/GDS
+seizure/MS
+seldom
+select/CSGVD
+selection/SM
+selective/Y
+selectivity/M
+selectman/M
+selectmen
+selectness/M
+selector/MS
+selenium/M
+selenographer/MS
+selenography/M
+self/M
+selfie/SM
+selfish/UYP
+selfishness/UM
+selfless/PY
+selflessness/M
+selfsame
+sell's
+sell/AZGRS
+seller's
+selloff/MS
+sellotape/DSG
+sellout/MS
+seltzer/MS
+selvage/MS
+selves
+semantic/S
+semantically
+semanticist/MS
+semantics/M
+semaphore/DSMG
+semblance/ASM
+semen/M
+semester/SM
+semi/MS
+semiannual/Y
+semiarid
+semiautomatic/MS
+semibreve/S
+semicircle/SM
+semicircular
+semicolon/MS
+semiconducting
+semiconductor/MS
+semiconscious
+semidarkness/M
+semidetached
+semifinal/SM
+semifinalist/MS
+semigloss/S
+semimonthly/SM
+seminal
+seminar/MS
+seminarian/SM
+seminary/SM
+semiofficial
+semiotic/S
+semiotics/M
+semipermeable
+semiprecious
+semiprivate
+semipro/S
+semiprofessional/SM
+semiquaver/S
+semiretired
+semiskilled
+semisolid
+semisweet
+semitone/SM
+semitrailer/MS
+semitransparent
+semitropical
+semivowel/SM
+semiweekly/SM
+semiyearly
+semolina/M
+sempstress/MS
+senate/SM
+senator/MS
+senatorial
+send/ZGRS
+sender/M
+sendoff/MS
+senescence/M
+senescent
+senile
+senility/M
+senior/SM
+seniority/M
+senna/M
+senor/MS
+senora/SM
+senorita/SM
+sensation/MS
+sensational/Y
+sensationalise/GDS
+sensationalism/M
+sensationalist/MS
+sense/MGDS
+senseless/PY
+senselessness/M
+sensibilities
+sensibility/IM
+sensible/P
+sensibleness/M
+sensibly/I
+sensitisation/CM
+sensitise/CDSG
+sensitive/SMYP
+sensitiveness/M
+sensitivities
+sensitivity/IM
+sensor/SM
+sensory
+sensual/Y
+sensualist/SM
+sensuality/M
+sensuous/YP
+sensuousness/M
+sent/FAU
+sentence/MGDS
+sententious/Y
+sentience/IM
+sentient/I
+sentiment/SM
+sentimental/Y
+sentimentalisation/M
+sentimentalise/GDS
+sentimentalism/M
+sentimentalist/MS
+sentimentality/M
+sentinel/MS
+sentry/SM
+sepal/MS
+separability/IM
+separable
+separably/I
+separate/XMYGNVDSP
+separateness/M
+separation/M
+separatism/M
+separatist/MS
+separator/MS
+sepia/M
+sepsis/M
+septa
+septal
+septet/SM
+septic
+septicaemia/M
+septicaemic
+septuagenarian/MS
+septum/M
+sepulchral
+sepulchre/MGDS
+seq
+sequel/SM
+sequence/MZGDRS
+sequencing/M
+sequential/FY
+sequester/SDG
+sequestrate/XGNDS
+sequestration/M
+sequin/SMD
+sequinned
+sequitur
+sequoia/MS
+seraglio/MS
+serape/SM
+seraph/M
+seraphic
+seraphs
+sere/TR
+serenade/MGDS
+serendipitous
+serendipity/M
+serene/RPYT
+sereneness/M
+serenity/M
+serf/MS
+serfdom/M
+serge/M
+sergeant/MS
+serial/SMY
+serialisation/SM
+serialise/GDSB
+series/M
+serif/MS
+serigraph/M
+serigraphs
+serine
+serious/PY
+seriousness/M
+sermon/SM
+sermonise/GDS
+serology/M
+serotonin
+serous
+serpent/MS
+serpentine/M
+serrate/XND
+serration/M
+serried
+serum/MS
+servant/MS
+serve's/AF
+serve/FACGDS
+server/SM
+servery/S
+service/EMS
+serviceability/M
+serviceable
+serviced
+serviceman/M
+servicemen
+servicewoman/M
+servicewomen
+servicing
+serviette/MS
+servile
+servility/M
+serving's
+servings
+servitor/MS
+servitude/M
+servo/MS
+servomechanism/SM
+servomotor/MS
+sesame/SM
+sesquicentennial/MS
+session/MS
+set/AISM
+setback/MS
+setscrew/SM
+setsquare/S
+sett/BJZGRS
+settee/MS
+setter/M
+setting/M
+settle's
+settle/AUGDS
+settlement/AM
+settlements
+settler/SM
+setup/MS
+seven/MHS
+seventeen/SMH
+seventeenth/M
+seventeenths
+seventh/M
+sevenths
+seventieth/M
+seventieths
+seventy/SMH
+sever/ETGDS
+several/MY
+severance/SM
+severe/YPR
+severeness/M
+severity/M
+sew/ASGD
+sewage/M
+sewer/MS
+sewerage/M
+sewing/M
+sewn/A
+sex/GMDS
+sexagenarian/SM
+sexily
+sexiness/M
+sexism/M
+sexist/MS
+sexless
+sexologist/SM
+sexology/M
+sexpot/MS
+sextant/SM
+sextet/MS
+sexting
+sexton/MS
+sextuplet/SM
+sexual/Y
+sexuality/M
+sexy/PTR
+sf
+sh
+shabbily
+shabbiness/M
+shabby/PTR
+shack/MDSG
+shackle's
+shackle/UGDS
+shad/GMDSJ
+shade/MS
+shadily
+shadiness/M
+shading/M
+shadow/SGMD
+shadowbox/GDS
+shadowy/RT
+shady/RPT
+shaft/MDSG
+shag/MS
+shagged
+shagginess/M
+shagging
+shaggy/TPR
+shah/M
+shahs
+shake/MZGRS
+shakedown/SM
+shaken/U
+shakeout/MS
+shaker/M
+shakeup/MS
+shakily
+shakiness/M
+shaky/RPT
+shale/M
+shall
+shallot/MS
+shallow/TPMRYS
+shallowness/M
+shalom
+shalt
+sham/GMDS
+shaman/SM
+shamanic
+shamanism
+shamanistic
+shamble/MGDS
+shambles/M
+shambolic
+shame/MS
+shamefaced/Y
+shameful/PY
+shamefulness/M
+shameless/YP
+shamelessness/M
+shammed
+shamming
+shampoo/ZGMDRS
+shampooer/M
+shamrock/MS
+shan't
+shandy/S
+shanghai/DSG
+shank/MS
+shantung/M
+shanty/SM
+shantytown/SM
+shape's
+shape/AGDS
+shaped/U
+shapeless/YP
+shapelessness/M
+shapeliness/M
+shapely/PTR
+shard/MS
+share/MZGDRS
+shareable
+sharecrop/S
+sharecropped
+sharecropper/MS
+sharecropping
+shareholder/SM
+shareholding/S
+sharer/M
+shareware/M
+sharia/M
+shariah
+shark/MDSG
+sharkskin/M
+sharp/MDNRYSPXZTG
+sharpen/ADGS
+sharpener/MS
+sharper/M
+sharpie/MS
+sharpish
+sharpness/M
+sharpshooter/SM
+sharpshooting/M
+shatter/GMDS
+shatterproof
+shave/MZGDRSJ
+shaven/U
+shaver/M
+shaving/M
+shawl/MS
+shay/MS
+she'd
+she'll
+she/DSM
+sheaf/M
+shear/MDRSZG
+shearer/M
+sheath/JM
+sheathe/UGDS
+sheathing/M
+sheaths
+sheave/DSMG
+shebang/MS
+shebeen/S
+shed/MS
+shedding
+sheen/M
+sheeny/TR
+sheep/M
+sheepdog/MS
+sheepfold/SM
+sheepherder/MS
+sheepish/YP
+sheepishness/M
+sheepskin/MS
+sheer/MDRSPTG
+sheerness/M
+sheet/MSG
+sheeting/M
+sheetlike
+sheikdom/MS
+sheikh/M
+sheikhs
+sheila/S
+shekel/SM
+shelf/M
+shell/MDRSG
+shellac/MS
+shellacked
+shellacking/MS
+shellfire/M
+shellfish/MS
+shelter/GMDS
+shelve/GDS
+shelving/M
+shenanigan/SM
+shepherd/SMDG
+shepherdess/MS
+sherbet/SM
+sheriff/SM
+sherry/SM
+shew/GDS
+shewn
+shh
+shiatsu/M
+shibboleth/M
+shibboleths
+shield/MDGS
+shift/GMDS
+shiftily
+shiftiness/M
+shiftless/PY
+shiftlessness/M
+shifty/RPT
+shiitake/SM
+shill/GMDSJ
+shillelagh/M
+shillelaghs
+shilling/M
+shim/MS
+shimmed
+shimmer/SMDG
+shimmery
+shimming
+shimmy/DSMG
+shin/ZGMDRS
+shinbone/SM
+shindig/SM
+shine/MS
+shiner/M
+shingle/DSMG
+shinguard/M
+shininess/M
+shinned
+shinning
+shinny/DSG
+shinsplints/M
+shiny/TRP
+ship's
+ship/ALS
+shipboard/MS
+shipbuilder/SM
+shipbuilding/M
+shipload/SM
+shipmate/SM
+shipment/AM
+shipments
+shipowner/MS
+shipped/A
+shipper/SM
+shipping/M
+shipshape
+shipwreck/GMDS
+shipwright/MS
+shipyard/SM
+shire/MS
+shirk/ZGDRS
+shirker/M
+shirr/GMDSJ
+shirring/M
+shirt/GMDS
+shirtfront/SM
+shirting/M
+shirtless
+shirtsleeve/SM
+shirttail/SM
+shirtwaist/MS
+shirty
+shit/SM!
+shitfaced/!
+shithead/S!
+shitload/!
+shitted/!
+shitting/!
+shitty/RT!
+shiv/ZMRS
+shiver/MDG
+shivery
+shoal/GMDS
+shoat/MS
+shock/ZGMDRS
+shocker/M
+shocking/Y
+shockproof
+shod/U
+shoddily
+shoddiness/M
+shoddy/PRMT
+shoe/MS
+shoehorn/GMDS
+shoeing
+shoelace/MS
+shoemaker/SM
+shoeshine/SM
+shoestring/SM
+shoetree/MS
+shogun/MS
+shogunate/M
+shone
+shonk/MS
+shonky/SM
+shoo/GDS
+shook
+shoot/ZGMRSJ
+shooter/M
+shooting/M
+shootout/MS
+shop/MS
+shopaholic/MS
+shopfitter/S
+shopfitting
+shopfront/S
+shopkeeper/MS
+shoplift/DRZGS
+shoplifter/M
+shoplifting/M
+shoppe/MZGDRS
+shopper/M
+shopping/M
+shoptalk/M
+shopworn
+shore/MGDS
+shorebird/SM
+shoreline/MS
+shoring/M
+short/XTGMDNRYSP
+shortage/MS
+shortbread/M
+shortcake/MS
+shortchange/DSG
+shortcoming/MS
+shortcrust
+shortcut/MS
+shorten/JGD
+shortening/M
+shortfall/MS
+shorthand/MD
+shorthorn/MS
+shortish
+shortlist/DGS
+shortness/M
+shortsighted/PY
+shortsightedness/M
+shortstop/MS
+shortwave/MS
+shorty/SM
+shot/MS
+shotgun/SM
+shotgunned
+shotgunning
+should
+should've
+shoulder/MDGS
+shouldn't
+shout/ZGMDRS
+shouter/M
+shove/MGDS
+shovel/MS
+shovelful/SM
+shovelled
+shovelling
+show/JZGMDRS
+showbiz/M
+showboat/MDGS
+showcase/MGDS
+showdown/MS
+shower/MDG
+showerproof
+showery
+showgirl/MS
+showground/S
+showily
+showiness/M
+showing/M
+showjumping
+showman/M
+showmanship/M
+showmen
+shown
+showoff/SM
+showpiece/SM
+showplace/SM
+showroom/MS
+showstopper/MS
+showstopping
+showtime
+showy/TRP
+shpt
+shrank
+shrapnel/M
+shred/MS
+shredded
+shredder/MS
+shredding
+shrew/MS
+shrewd/RYPT
+shrewdness/M
+shrewish
+shriek/MDSG
+shrift/M
+shrike/MS
+shrill/DRSPTG
+shrillness/M
+shrilly
+shrimp/MDRSZG
+shrine/MS
+shrink/MSBG
+shrinkage/M
+shrive/GDS
+shrivel/S
+shrivelled
+shrivelling
+shriven
+shroud/GMDS
+shrub/MS
+shrubbery/SM
+shrubby/RT
+shrug/MS
+shrugged
+shrugging
+shrunk/N
+shtick/MS
+shuck/GMDS
+shucks/S
+shudder/MDSG
+shuffle/AMGDS
+shuffleboard/SM
+shuffler/SM
+shun/S
+shunned
+shunning
+shunt/MSDG
+shush/DSG
+shut/S
+shutdown/SM
+shuteye/M
+shutoff/SM
+shutout/SM
+shutter/SMDG
+shutterbug/MS
+shutting
+shuttle/DSMG
+shuttlecock/GMDS
+shy/TGDRSMY
+shyer
+shyest
+shyness/M
+shyster/SM
+sibilant/SM
+sibling/SM
+sibyl/MS
+sibylline
+sic/S
+sicced
+siccing
+sick/PXTGDNRYS
+sickbay/S
+sickbed/SM
+sicken/DG
+sickening/Y
+sickie/MS
+sickish
+sickle/MS
+sickly/RT
+sickness/MS
+sicko/MS
+sickout/SM
+sickroom/MS
+side's
+side/AGDS
+sidearm/SM
+sidebar/SM
+sideboard/SM
+sideburns/M
+sidecar/SM
+sidekick/SM
+sidelight/MS
+sideline/DSMG
+sidelong
+sideman/M
+sidemen
+sidepiece/MS
+sidereal
+sidesaddle/MS
+sideshow/MS
+sidesplitting
+sidestep/MS
+sidestepped
+sidestepping
+sidestroke/DSMG
+sideswipe/DSMG
+sidetrack/SMDG
+sidewalk/MS
+sidewall/MS
+sideways
+sidewinder/SM
+siding/MS
+sidle/MGDS
+siege/MS
+sienna/M
+sierra/MS
+siesta/MS
+sieve/MGDS
+sift/ZGDRS
+sifted/U
+sifter/M
+sigh/GMD
+sighs
+sight/GMDYSJ
+sighting/M
+sightless
+sightly/UTR
+sightread
+sightseeing/M
+sightseer/MS
+sigma/MS
+sign's/C
+sign/AFCGDS
+signage/M
+signal/MYS
+signalisation
+signalise/GDS
+signalization's
+signalled
+signaller/MS
+signalling
+signalman/M
+signalmen
+signatory/SM
+signature/MS
+signboard/MS
+signed/U
+signer/CMS
+signet/MS
+significance/IM
+significant/IY
+signification/M
+signify/XDSNG
+signing's/C
+signings
+signor/FMS
+signora/SM
+signore
+signori
+signorina/MS
+signorine
+signpost/GSMD
+silage/M
+silence/DRSMZG
+silencer/M
+silent/MRYST
+silhouette/DSMG
+silica/M
+silicate/MS
+siliceous
+silicon/SM
+silicone/M
+silicosis/M
+silk/MNS
+silkily
+silkiness/M
+silkscreen/SM
+silkworm/MS
+silky/TRP
+sill/MS
+silliness/M
+silly/TRSMP
+silo/MS
+silt/GMDS
+silty/TR
+silver/GMDS
+silverfish/MS
+silversmith/M
+silversmiths
+silvertail/SMD
+silverware/M
+silvery
+sim/SM
+simian/MS
+similar/Y
+similarity/ESM
+simile/MS
+similitude/EM
+simmer/GMDS
+simonise
+simonized
+simonizes
+simonizing
+simony/M
+simpatico
+simper/GMDS
+simpering/Y
+simple/TRP
+simpleminded
+simpleness/M
+simpleton/SM
+simplex
+simplicity/M
+simplification/M
+simplify/DSXNG
+simplistic
+simplistically
+simply
+simulacra
+simulacrum/S
+simulate/EDSGN
+simulation/EM
+simulations
+simulator/EMS
+simulcast/GMDS
+simultaneity/M
+simultaneous/Y
+sin/ASM
+since
+sincere/IYT
+sincerer
+sincerity/IM
+sine/MS
+sinecure/MS
+sinew/MS
+sinewy
+sinful/PY
+sinfulness/M
+sing/BZGMDRYS
+singalong/S
+singe/MS
+singeing
+singer/M
+singing/M
+single/PMGDS
+singleness/M
+singles/M
+singlet/S
+singleton/SM
+singletree/SM
+singsong/SMDG
+singular/SMY
+singularity/SM
+sinister
+sink/BZGMRS
+sinkable/U
+sinker/M
+sinkhole/SM
+sinless
+sinned
+sinner/MS
+sinning
+sinology
+sinuosity/M
+sinuous/Y
+sinus/MS
+sinusitis/M
+sinusoidal
+sip/SM
+siphon/GMDS
+sipped
+sipper/SM
+sipping
+sir/SXMN
+sire/CMGDS
+siren/M
+sirloin/SM
+sirocco/SM
+sirrah
+sirree/M
+sis/MS
+sisal/M
+sissified
+sissy/RSMT
+sister/ASM
+sisterhood/MS
+sisterliness/M
+sisterly/P
+sit/S
+sitar/SM
+sitarist/MS
+sitcom/SM
+site/MGDS
+sitemap/SM
+sitter/SM
+sitting/SM
+situ
+situate/DSXGN
+situation/M
+situational
+six/MSH
+sixfold
+sixpence/MS
+sixshooter/M
+sixteen/SMH
+sixteenth/M
+sixteenths
+sixth/M
+sixths
+sixtieth/M
+sixtieths
+sixty/SMH
+size's
+size/AGDS
+sizeable
+sizer
+sizing/M
+sizzle/DRSMZG
+ska/M
+skate/MZGDRS
+skateboard/MDRSZG
+skateboarder/M
+skateboarding/M
+skater/M
+skating/M
+skedaddle/MGDS
+skeet/ZMR
+skein/MS
+skeletal
+skeleton/SM
+skerrick/SM
+sketch/MDRSZG
+sketchbook/S
+sketcher/M
+sketchily
+sketchiness/M
+sketchpad/S
+sketchy/RTP
+skew/MDRZGS
+skewbald/S
+skewer/MDG
+ski/SZGMDR
+skibob/S
+skid/MS
+skidded
+skidding
+skidpan/S
+skier/M
+skiff/SM
+skiffle
+skiing/M
+skilful/YP
+skilfulness/M
+skill's
+skill/CSD
+skilled/U
+skillet/SM
+skim/MS
+skimmed
+skimmer/SM
+skimming
+skimp/SDG
+skimpily
+skimpiness/M
+skimpy/RTP
+skin/MS
+skincare/M
+skinflint/MS
+skinful
+skinhead/MS
+skinless
+skinned
+skinniness/M
+skinning
+skinny/RMTP
+skint
+skintight
+skip/MS
+skipped
+skipper/SMDG
+skipping
+skirmish/ZGMDRS
+skirt/SMDG
+skit/MDRZGS
+skite
+skiter/M
+skitter/GSD
+skittish/YP
+skittishness/M
+skittle/S
+skive/DRSZG
+skivvy/DSMG
+skoal/SM
+skua/S
+skulduggery/M
+skulk/SDRZG
+skulker/M
+skull/SM
+skullcap/MS
+skunk/SMDG
+sky/GSM
+skycap/SM
+skydive/DRSZG
+skydiver/M
+skydiving/M
+skyjack/JZGSDR
+skyjacker/M
+skyjacking/M
+skylark/SGMD
+skylight/MS
+skyline/SM
+skyrocket/GSMD
+skyscraper/SM
+skyward/S
+skywriter/SM
+skywriting/M
+slab/MS
+slabbed
+slabbing
+slack/PXZTGMDNRYS
+slacken/DG
+slacker/M
+slackness/M
+slacks/M
+slag/MS
+slagged
+slagging
+slagheap/S
+slain
+slake/GDS
+slalom/MSDG
+slam/MS
+slammed
+slammer/SM
+slamming
+slander/MZGDRS
+slanderer/M
+slanderous
+slang/M
+slangy/RT
+slant/MSDG
+slanting/Y
+slantwise
+slap/MS
+slapdash
+slaphappy
+slapped
+slapper/S
+slapping
+slapstick/M
+slash/MDRSZG
+slasher/M
+slat/MDGS
+slate/SM
+slather/SDG
+slatted
+slattern/SMY
+slaughter/MDRZGS
+slaughterer/M
+slaughterhouse/MS
+slave/DRSMZG
+slaveholder/MS
+slaver/MDG
+slavery/M
+slavish/PY
+slavishness/M
+slaw/M
+slay/DRZGJS
+slayer/M
+slaying/M
+sleaze/SM
+sleazebag/S
+sleazeball/S
+sleazily
+sleaziness/M
+sleazy/PRT
+sled/MS
+sledded
+sledder/SM
+sledding
+sledge/DSMG
+sledgehammer/GSMD
+sleek/SDRYTGP
+sleekness/M
+sleep/SMRZG
+sleeper/M
+sleepily
+sleepiness/M
+sleepless/PY
+sleeplessness/M
+sleepover/SM
+sleepwalk/ZGSDR
+sleepwalker/M
+sleepwalking/M
+sleepwear/M
+sleepy/RPT
+sleepyhead/MS
+sleet/SMDG
+sleety
+sleeve/DSM
+sleeveless
+sleigh/MDG
+sleighs
+sleight/SM
+slender/PRT
+slenderise/DSG
+slenderness/M
+slept
+sleuth/MG
+sleuths
+slew/MDGS
+slice/DRSMZG
+slicer/M
+slick/SMDRYZTGP
+slicker/M
+slickness/M
+slid
+slide/RSMZG
+slider/M
+slideshow/MS
+slight/SMDRYTGP
+slightness/M
+slim/PS
+slime/M
+sliminess/M
+slimline
+slimmed
+slimmer/S
+slimmest
+slimming/M
+slimness/M
+slimy/RTP
+sling/SMG
+slingback/S
+slingshot/SM
+slink/SG
+slinky/RT
+slip/MS
+slipcase/MS
+slipcover/MS
+slipknot/MS
+slippage/MS
+slipped
+slipper/SM
+slipperiness/M
+slippery/PRT
+slipping
+slippy
+slipshod
+slipstream/SM
+slipway/SM
+slit/MS
+slither/SGMD
+slithery
+slitter
+slitting
+sliver/GSMD
+slob/MS
+slobbed
+slobber/MDSG
+slobbery
+slobbing
+sloe/MS
+slog/MS
+slogan/SM
+sloganeering
+slogged
+slogging
+sloop/SM
+slop/MDGS
+slope/SM
+slopped
+sloppily
+sloppiness/M
+slopping
+sloppy/PTR
+slops/M
+slosh/DSG
+slot/MS
+sloth/M
+slothful/YP
+slothfulness/M
+sloths
+slotted
+slotting
+slouch/ZGMDRS
+sloucher/M
+slouchy/TR
+slough/GMD
+sloughs
+sloven/SMY
+slovenliness/M
+slovenly/PTR
+slow/DRYTGSP
+slowcoach/S
+slowdown/SM
+slowness/M
+slowpoke/SM
+sludge/M
+sludgy/RT
+slue/MGDS
+slug/MS
+sluggard/MS
+slugged
+slugger/SM
+slugging
+sluggish/PY
+sluggishness/M
+sluice/DSMG
+slum/MS
+slumber/GSMD
+slumberous
+slumdog/SM
+slumlord/MS
+slummed
+slummer
+slumming
+slummy/RT
+slump/SMDG
+slung
+slunk
+slur/MS
+slurp/SMDG
+slurred
+slurring
+slurry/M
+slush/M
+slushiness/M
+slushy/RPT
+slut/MS
+sluttish
+slutty/RT
+sly/Y
+slyer
+slyest
+slyness/M
+smack/SMDRZG
+smacker/M
+small/SMRTP
+smallholder/S
+smallholding/S
+smallish
+smallness/M
+smallpox/M
+smarmy/RT
+smart/SMDNRYXTGP
+smarten/DG
+smartness/M
+smartphone/SM
+smarts/M
+smartwatch/MS
+smarty/SM
+smartypants/M
+smash/MDRSZG
+smasher/M
+smashup/SM
+smattering/MS
+smear/SMDG
+smeary/RT
+smell/SMDG
+smelliness/M
+smelly/RPT
+smelt/SMDRZG
+smelter/M
+smidgen/MS
+smilax/M
+smile/DSMG
+smiley/SM
+smiling/Y
+smirch/GMDS
+smirk/SMDG
+smite/SG
+smith/M
+smithereens/M
+smiths
+smithy/SM
+smitten
+smock/SMDG
+smocking/M
+smog/MS
+smoggy/RT
+smoke/DRSMZG
+smokehouse/MS
+smokeless
+smoker/M
+smokescreen/SM
+smokestack/SM
+smokey
+smokiness/M
+smoking/M
+smoko/SM
+smoky/RTP
+smooch/MDSG
+smoochy
+smooth/PDRYTG
+smoothie/MS
+smoothness/M
+smooths
+smorgasbord/SM
+smote
+smother/GSMD
+smoulder/GMDS
+smudge/DSMG
+smudgy/TR
+smug/YP
+smugger
+smuggest
+smuggle/ZGDRS
+smuggler/M
+smuggling/M
+smugness/M
+smurf/S
+smut/MS
+smuttiness/M
+smutty/TRP
+snack/SMDG
+snaffle/DSMG
+snafu/SM
+snag/MS
+snagged
+snagging
+snail/SMDG
+snake/DSMG
+snakebite/MS
+snakelike
+snakeskin
+snaky/RT
+snap's
+snap/US
+snapdragon/SM
+snapped/U
+snapper/MS
+snappily
+snappiness/M
+snapping/U
+snappish/YP
+snappishness/M
+snappy/TRP
+snapshot/SM
+snare/DSMG
+snarf/SDG
+snark/S
+snarky/TR
+snarl's
+snarl/USDG
+snarling/Y
+snarly/TR
+snatch/ZGMDRS
+snatcher/M
+snazzily
+snazzy/TR
+sneak/SMDRZG
+sneaker/M
+sneakily
+sneakiness/M
+sneaking/Y
+sneaky/TRP
+sneer/SJMDG
+sneering/Y
+sneeze/DSMG
+snick/SDRZG
+snicker/MDG
+snide/RYT
+sniff/SMDRZG
+sniffer/M
+sniffle/DSMG
+sniffy/RT
+snifter/SM
+snip/MDRZGS
+snipe/SM
+sniper/M
+snipped
+snippet/SM
+snipping
+snippy/RT
+snips/M
+snit/MS
+snitch/MDSG
+snivel/SM
+snivelled
+sniveller/SM
+snivelling
+snob/MS
+snobbery/M
+snobbish/PY
+snobbishness/M
+snobby/RT
+snog/S
+snogged
+snogging
+snood/SM
+snooker/MDSG
+snoop/SMDRZG
+snooper/M
+snoopy/TR
+snoot/SM
+snootily
+snootiness/M
+snooty/PTR
+snooze/DSMG
+snore/DRSMZG
+snorer/M
+snorkel/ZMRS
+snorkeler/M
+snorkeling's
+snorkelled
+snorkelling
+snort/SMDRZG
+snorter/M
+snot/MS
+snottily
+snottiness/M
+snotty/TPR
+snout/SM
+snow/MDGS
+snowball/GSMD
+snowbank/SM
+snowbird/SM
+snowblower/MS
+snowboard/ZGMDRS
+snowboarder/M
+snowboarding/M
+snowbound
+snowdrift/SM
+snowdrop/SM
+snowfall/SM
+snowfield/SM
+snowflake/SM
+snowiness/M
+snowline
+snowman/M
+snowmen
+snowmobile/DSMG
+snowplough/M
+snowploughs
+snowplowed
+snowplowing
+snowshoe/DSM
+snowshoeing
+snowstorm/SM
+snowsuit/SM
+snowy/PRT
+snub/MS
+snubbed
+snubbing
+snuff/SMDRYZG
+snuffbox/MS
+snuffer/M
+snuffle/MGDS
+snug/MYSP
+snugged
+snugger
+snuggest
+snugging
+snuggle/MGDS
+snugness/M
+so
+soak/MDGSJ
+soaking/M
+soap/MDGS
+soapbox/MS
+soapiness/M
+soapstone/M
+soapsuds/M
+soapy/RPT
+soar/MDGS
+sob/SM
+sobbed
+sobbing/Y
+sober/SDRYPTG
+soberness/M
+sobriety/IM
+sobriquet/SM
+soc
+soccer/M
+sociability/M
+sociable/SM
+sociably
+social/SMY
+socialisation/M
+socialise/DSG
+socialism/M
+socialist/SM
+socialistic
+socialite/SM
+societal
+society/SM
+socioeconomic
+socioeconomically
+sociological/Y
+sociologist/SM
+sociology/M
+sociopath/M
+sociopaths
+sociopolitical
+sock/MDGS
+socket/SM
+sockeye/SM
+sod/SM
+soda/MS
+sodded
+sodden/Y
+sodding
+sodium/M
+sodomise/GDS
+sodomite/MS
+sodomy/M
+soever
+sofa/MS
+soft/NRYXTP
+softback
+softball/MS
+softbound
+softcover
+soften/DRZG
+softener/M
+softhearted
+softness/M
+software/M
+softwood/SM
+softy/SM
+soggily
+sogginess/M
+soggy/RTP
+soigne
+soignee
+soil/MDGS
+soiled/U
+soiree/SM
+sojourn/ZGMDRS
+sojourner/M
+sol/SM
+solace/DSMG
+solar
+solaria
+solarium/M
+sold
+solder/ZGSMDR
+solderer/M
+soldier/MDYSG
+soldiery/M
+sole/FSDGM
+solecism/SM
+solely
+solemn/PTRY
+solemness/M
+solemnify/DSG
+solemnisation/M
+solemnise/DSG
+solemnity/SM
+solemnness/M
+solenoid/MS
+solicit/GDS
+solicitation/SM
+solicited/U
+solicitor/SM
+solicitous/PY
+solicitousness/M
+solicitude/M
+solid/PSMRYT
+solidarity/M
+solidi
+solidification/M
+solidify/DSNG
+solidity/M
+solidness/M
+solidus/M
+soliloquies
+soliloquise/DSG
+soliloquy/M
+solipsism/M
+solipsistic
+solitaire/MS
+solitariness/M
+solitary/SMP
+solitude/M
+solo/MDGS
+soloist/MS
+solstice/MS
+solubility/IM
+soluble/MS
+solute's
+solute/AXN
+solutes
+solution's/AE
+solvable/IU
+solve/EADSG
+solved/U
+solvency/IM
+solvent/IMS
+solver/SM
+somatic
+somatosensory
+sombre/PY
+sombreness/M
+sombrero/MS
+some
+somebody/SM
+someday
+somehow
+someone/MS
+someplace
+somersault/MDGS
+somerset/SM
+somersetted
+somersetting
+something/SM
+sometime/S
+someway/S
+somewhat/S
+somewhere
+somnambulism/M
+somnambulist/SM
+somnolence/M
+somnolent
+son/SM
+sonar/SM
+sonata/SM
+sonatina/SM
+song/MS
+songbird/SM
+songbook/SM
+songfest/SM
+songster/MS
+songstress/MS
+songwriter/SM
+songwriting
+sonic
+sonnet/SM
+sonny/SM
+sonogram/SM
+sonority/M
+sonorous/YP
+sonorousness/M
+sonsofbitches
+sook/MS
+sooky
+soon/RT
+soot/M
+sooth/MDRSZG
+soothe
+soother/M
+soothing/Y
+soothsayer/MS
+soothsaying/M
+sooty/RT
+sop/SM
+soph
+sophism/M
+sophist/MS
+sophistic
+sophistical
+sophisticate/DSMGN
+sophisticated/U
+sophistication/M
+sophistry/SM
+sophomore/MS
+sophomoric
+soporific/MS
+soporifically
+sopped
+sopping
+soppy/RT
+soprano/MS
+sorbet/SM
+sorcerer/MS
+sorceress/MS
+sorcery/M
+sordid/PY
+sordidness/M
+sore/MYTRSP
+sorehead/MS
+soreness/M
+sorghum/M
+sorority/SM
+sorrel/SM
+sorrily
+sorriness/M
+sorrow/SMDG
+sorrowful/YP
+sorrowfulness/M
+sorry/RTP
+sort/FASGDM
+sorta
+sorted/U
+sorter/SM
+sortie/DSM
+sortieing
+sot/SM
+sottish
+sou'wester
+sou/SMH
+souffle/SM
+sough/MDG
+soughs
+sought/U
+souk/S
+soul/MS
+soulful/YP
+soulfulness/M
+soulless/YP
+soulmate/SM
+sound/JPSMDRYZTG
+soundalike/S
+soundbar/S
+soundbite/S
+soundboard/MS
+soundcheck/S
+sounder/M
+sounding/M
+soundless/Y
+soundness/UM
+soundproof/GDS
+soundproofing/M
+soundscape/S
+soundtrack/SM
+soup/MDGS
+soupcon/MS
+soupy/RT
+sour/MDRYTGSP
+source/ADSMG
+sourdough/M
+sourdoughs
+sourish
+sourness/M
+sourpuss/MS
+sousaphone/MS
+souse/DSMG
+south/M
+southbound
+southeast/ZMR
+southeaster/MY
+southeastern
+southeastward/S
+southerly/SM
+southern/SZMR
+southerner/M
+southernmost
+southpaw/SM
+southward/MS
+southwest/ZMR
+southwester/MY
+southwestern
+southwestward/S
+souvenir/SM
+sovereign/SM
+sovereignty/M
+soviet/SM
+sow's
+sow/ASGD
+sower/SM
+sown/A
+soy/M
+soybean/MS
+sozzled
+spa/SM
+space/DRSMZG
+spacecraft/MS
+spaceflight/MS
+spaceman/M
+spacemen
+spaceport/SM
+spacer/M
+spaceship/SM
+spacesuit/SM
+spacetime
+spacewalk/SGMD
+spacewoman/M
+spacewomen
+spacey
+spacial
+spacier
+spaciest
+spaciness/M
+spacing/M
+spacious/YP
+spaciousness/M
+spade/DSMG
+spadeful/MS
+spadework/M
+spadices
+spadix/M
+spaghetti/M
+spake
+spam/MS
+spammed
+spammer/SM
+spamming
+span/MS
+spandex/M
+spangle/DSMG
+spangly
+spaniel/SM
+spank/SMDGJ
+spanking/M
+spanned
+spanner/SM
+spanning
+spar/MS
+spare/DRSMYTGP
+spareness/M
+spareribs/M
+sparing/UY
+spark/SMDYG
+sparkie/M
+sparkle/DRSMZG
+sparkler/M
+sparky/RSMT
+sparred
+sparring
+sparrow/SM
+sparrowhawk/S
+sparse/RYTP
+sparseness/M
+sparsity/M
+spartan
+spasm/SM
+spasmodic
+spasmodically
+spastic/SM
+spat/MS
+spate/SM
+spathe/SM
+spatial/Y
+spatted
+spatter/SGMD
+spatting
+spatula/SM
+spavin/MD
+spawn/SMDG
+spay/DGS
+speak/SRZGJ
+speakeasy/SM
+speaker/M
+speakerphone/S
+spear/SMDG
+spearfish/GMDS
+speargun
+spearhead/GMDS
+spearmint/M
+spec/MS
+special/SMY
+specialisation/MS
+specialise/GDS
+specialism/S
+specialist/MS
+speciality/SM
+specie/SM
+species/M
+specif
+specifiable
+specific/MS
+specifically
+specification/M
+specificity/M
+specified/U
+specify/XNZDRSG
+specimen/SM
+specious/YP
+speciousness/M
+speck/SMDG
+speckle/MGDS
+specs/M
+spectacle/SM
+spectacles/M
+spectacular/MYS
+spectate/DSG
+spectator/SM
+spectra
+spectral
+spectre/MS
+spectrometer/MS
+spectroscope/MS
+spectroscopic
+spectroscopy/M
+spectrum/M
+speculate/DSXGNV
+speculation/M
+speculative/Y
+speculator/MS
+sped
+speech/MS
+speechify/DSG
+speechless/YP
+speechlessness/M
+speechwriter/S
+speed/SMRZG
+speedboat/SM
+speeder/M
+speedily
+speediness/M
+speeding/M
+speedometer/MS
+speedster/SM
+speedup/MS
+speedway/SM
+speedwell/M
+speedy/TPR
+speleological
+speleologist/MS
+speleology/M
+spell/JSMDRZG
+spellbind/ZGRS
+spellbinder/M
+spellbound
+spellcheck/MDRZGS
+spellchecker/M
+spelldown/SM
+speller/M
+spelling/M
+spelt
+spelunker/MS
+spelunking/M
+spend/BSRZG
+spender/M
+spending/M
+spendthrift/MS
+spent/U
+sperm/SM
+spermatozoa
+spermatozoon/M
+spermicidal
+spermicide/MS
+spew/MDRZGS
+spewer/M
+sphagnum/MS
+sphere/SM
+spherical/Y
+spheroid/SM
+spheroidal
+sphincter/MS
+sphinx/MS
+spic/S
+spice/DSMG
+spicily
+spiciness/M
+spicule/MS
+spicy/PRT
+spider/SM
+spiderweb/MS
+spidery
+spiel/SMDG
+spiff/SDG
+spiffy/TR
+spigot/SM
+spike/DSMG
+spikiness/M
+spiky/RPT
+spill/SMDG
+spillage/MS
+spillover/SM
+spillway/MS
+spilt
+spin/MS
+spinach/M
+spinal/SMY
+spindle/MGDS
+spindly/TR
+spine/SM
+spineless/YP
+spinet/SM
+spinless
+spinnaker/SM
+spinner/MS
+spinneret/SM
+spinney/S
+spinning/M
+spinster/SM
+spinsterhood/M
+spinsterish
+spiny/RT
+spiracle/SM
+spiraea/MS
+spiral/SMY
+spiralled
+spiralling
+spire's
+spire/IFAS
+spirit's
+spirit/ISGD
+spirited/Y
+spiritless
+spiritual/MYS
+spiritualism/M
+spiritualist/MS
+spiritualistic
+spirituality/M
+spirituous
+spirochaete/SM
+spiry
+spit/MDGS
+spitball/SM
+spite/ASM
+spiteful/PY
+spitefuller
+spitefullest
+spitefulness/M
+spitfire/SM
+spitted
+spitting
+spittle/M
+spittoon/MS
+spiv/S
+splanchnic
+splash/GMDS
+splashdown/MS
+splashily
+splashiness/M
+splashy/RTP
+splat/SM
+splatted
+splatter/GSMD
+splatting
+splay/SMDG
+splayfeet
+splayfoot/MD
+spleen/SM
+splendid/RYT
+splendorous
+splendour/SM
+splenectomy
+splenetic
+splice/DRSMZG
+splicer/M
+spliff/S
+spline/S
+splint/SZGMDR
+splinter/MDG
+splintery
+split/SM
+splitting/MS
+splodge/S
+splosh/DSG
+splotch/MDSG
+splotchy/TR
+splurge/DSMG
+splutter/GMDS
+spoil's
+spoil/CSDRZG
+spoilage/M
+spoiled/U
+spoiler/CM
+spoilsport/MS
+spoilt
+spoke/SM
+spoken/U
+spokesman/M
+spokesmen
+spokespeople
+spokesperson/MS
+spokeswoman/M
+spokeswomen
+spoliation/CM
+sponge/DRSMZG
+sponger/M
+sponginess/M
+spongy/RPT
+sponsor/MDGS
+sponsorship/M
+spontaneity/M
+spontaneous/Y
+spoof/SMDG
+spook/SMDG
+spookiness/M
+spooky/RPT
+spool/SMDG
+spoon/SMDG
+spoonbill/MS
+spoonerism/MS
+spoonful/SM
+spoor/SMDG
+sporadic
+sporadically
+spore/DSMG
+sporran/S
+sport/SMDGV
+sportiness/M
+sporting/Y
+sportive/Y
+sportscast/MRZGS
+sportscaster/M
+sportsman/M
+sportsmanlike/U
+sportsmanship/M
+sportsmen
+sportspeople
+sportsperson
+sportswear/M
+sportswoman/M
+sportswomen
+sportswriter/SM
+sporty/TPR
+spot/CMS
+spotless/PY
+spotlessness/M
+spotlight/GSMD
+spotlit
+spotted
+spotter/MS
+spottily
+spottiness/M
+spotting
+spotty/TPR
+spousal/MS
+spouse/SM
+spout/SMDG
+sprain/GSMD
+sprang
+sprat/SM
+sprawl/GSMD
+spray's
+spray/ASDG
+sprayer/MS
+spread/ZGBSMR
+spreadeagled
+spreader/M
+spreadsheet/MS
+spree/DSM
+spreeing
+sprig/SM
+sprigged
+sprightliness/M
+sprightly/RTP
+spring/GSM
+springboard/MS
+springbok/MS
+springily
+springiness/M
+springlike
+springtime/M
+springy/RPT
+sprinkle/DRSJMZG
+sprinkler/M
+sprinkling/M
+sprint/ZGSMDR
+sprinter/M
+sprite/SM
+spritz/ZGMDRS
+spritzer/M
+sprocket/MS
+sprog/S
+sprout/GSMD
+spruce/DRSPMYTG
+spruceness/M
+sprung
+spry/RYT
+spryness/M
+spud/MS
+spume/DSMG
+spumoni/M
+spumy
+spun
+spunk/SM
+spunky/TR
+spur/MS
+spurge/M
+spurious/PY
+spuriousness/M
+spurn/SDG
+spurred
+spurring
+spurt/SMDG
+sputa
+sputnik/MS
+sputter/MDGS
+sputum/M
+spy/GDSM
+spyglass/MS
+spymaster/S
+spyware/M
+sq
+sqq
+squab/SM
+squabble/MZGDRS
+squabbler/M
+squad/SM
+squadron/MS
+squalid/PTRY
+squalidness/M
+squall/SGMD
+squally
+squalor/M
+squamous
+squander/GDS
+square/PDRSMYTG
+squareness/M
+squarish
+squash/GMDS
+squashy/TR
+squat/SMP
+squatness/M
+squatocracy/SM
+squatted
+squatter/MS
+squattest
+squatting
+squaw/SM
+squawk/SZGMDR
+squawker/M
+squeak/SZGMDR
+squeaker/M
+squeakily
+squeakiness/M
+squeaky/TRP
+squeal/SZGMDR
+squealer/M
+squeamish/PY
+squeamishness/M
+squeegee/MDS
+squeegeeing
+squeeze/BMZGDRS
+squeezebox/S
+squeezer/M
+squelch/GMDS
+squelchy
+squib/SM
+squid/SM
+squidgy
+squiffy
+squiggle/DSMG
+squiggly
+squint/STGMDR
+squire/DSMG
+squirm/SGMD
+squirmy/RT
+squirrel/SM
+squirrelled
+squirrelling
+squirt/SGMD
+squish/GMDS
+squishy/RT
+sriracha
+ssh
+st
+stab/MYS
+stabbed
+stabber/MS
+stabbing/MS
+stabilisation/M
+stabilise/CDSG
+stabiliser/MS
+stability/IM
+stable/DRSMTG
+stableman/M
+stablemate/S
+stablemen
+stably/U
+staccato/MS
+stack/SMDG
+stadium/MS
+staff's
+staff/ASDG
+staffer/MS
+staffing/M
+stag/MDGSJ
+stage/SM
+stagecoach/MS
+stagecraft/M
+stagehand/MS
+stagestruck
+stagflation/M
+stagger/MDGS
+staggering/Y
+staging/M
+stagnancy/M
+stagnant/Y
+stagnate/DSGN
+stagnation/M
+stagy/RT
+staid/PRYT
+staidness/M
+stain/SMDG
+stained/U
+stainless/M
+stair/SM
+staircase/MS
+stairway/MS
+stairwell/SM
+stake/DSMG
+stakeholder/MS
+stakeout/SM
+stalactite/MS
+stalagmite/MS
+stale/DRSTGP
+stalemate/DSMG
+staleness/M
+stalk/SMDRJZG
+stalker/M
+stalking/M
+stall's
+stall/SDG
+stallholder/S
+stallion/MS
+stalwart/MYS
+stamen/SM
+stamina/M
+stammer/ZGMDRS
+stammerer/M
+stammering/Y
+stamp/SMDRZG
+stampede/MGDS
+stamper/M
+stance/ISM
+stanch/TGDRS
+stanchion/SM
+stand/SMRJZG
+standalone
+standard/MS
+standardisation/M
+standardise/DSG
+standby/M
+standbys
+standee/MS
+stander/M
+standing/M
+standoff/MS
+standoffish
+standout/MS
+standpipe/SM
+standpoint/MS
+standstill/MS
+stank
+stanza/SM
+staph/M
+staphylococcal
+staphylococci
+staphylococcus/M
+staple/DRSMZG
+stapler/M
+star/MDRZGS
+starboard/M
+starburst/S
+starch/GMDS
+starchily
+starchiness/M
+starchy/PTR
+stardom/M
+stardust/M
+stare/SM
+starer/M
+starfish/MS
+starfruit
+stargaze/DRSZG
+stargazer/M
+stark/RYPZT
+starkness/M
+starless
+starlet/MS
+starlight/M
+starling/SM
+starlit
+starred
+starring
+starry/TR
+starstruck
+start/ASMDG
+starter/MS
+startle/GDS
+startling/Y
+startup/MS
+starvation/M
+starve/DSJG
+starveling/MS
+stash/MDSG
+stasis
+stat/MS
+state/DRSMYGNLX
+statecraft/M
+stated/U
+statehood/M
+statehouse/MS
+stateless/P
+statelessness/M
+stateliness/M
+stately/PRT
+statement/AMS
+statemented
+statementing
+stateroom/MS
+stateside
+statesman/M
+statesmanlike
+statesmanship/M
+statesmen
+stateswoman/M
+stateswomen
+statewide
+static/SM
+statically
+station/MDRZG
+stationary
+stationer/M
+stationery/M
+stationmaster/S
+statistic/MS
+statistical/Y
+statistician/SM
+statuary/M
+statue/SM
+statuesque
+statuette/MS
+stature/MS
+status/MS
+statute/MS
+statutorily
+statutory
+staunch/PDRSYTG
+staunchness/M
+stave/DSMG
+stay/MDRZGS
+std
+stdio
+stead/SM
+steadfast/YP
+steadfastness/M
+steadily/U
+steadiness/UM
+steady/TGPDRSM
+steak/SM
+steakhouse/SM
+steal/SMHG
+stealth/M
+stealthily
+stealthiness/M
+stealthy/TPR
+steam/SMDRZG
+steamboat/MS
+steamer/M
+steamfitter/SM
+steamfitting/M
+steaminess/M
+steampunk
+steamroll/ZGDRS
+steamroller/MDG
+steamship/MS
+steamy/TPR
+steed/SM
+steel/SMDG
+steeliness/M
+steelmaker/S
+steelworker/SM
+steelworks/M
+steely/PTR
+steelyard/SM
+steep/SMDNRYPXTG
+steepen/GD
+steeple/MS
+steeplechase/MS
+steeplejack/SM
+steepness/M
+steer/SMDBG
+steerage/M
+steering/M
+steersman/M
+steersmen
+stegosauri
+stegosaurus/MS
+stein/SM
+stellar
+stem/MS
+stemless
+stemmed
+stemming
+stemware/M
+stench/MS
+stencil/MS
+stencilled
+stencilling
+steno/SM
+stenographer/SM
+stenographic
+stenography/M
+stenosis
+stent/SM
+stentorian
+step/IMS
+stepbrother/SM
+stepchild/M
+stepchildren/M
+stepdad/MS
+stepdaughter/SM
+stepfather/SM
+stepladder/MS
+stepmom/MS
+stepmother/SM
+stepparent/SM
+steppe/DRSMZG
+stepper/M
+steppingstone/SM
+stepsister/MS
+stepson/MS
+stereo/SM
+stereophonic
+stereoscope/MS
+stereoscopic
+stereotype/DSMG
+stereotypical
+sterile
+sterilisation/MS
+sterilise/DRSZG
+steriliser/M
+sterility/M
+sterling/M
+stern/SMRYPT
+sternness/M
+sternum/MS
+steroid/MS
+steroidal
+stertorous
+stet/S
+stethoscope/MS
+stetson/MS
+stetted
+stetting
+stevedore/SM
+stew/MDGS
+steward/GMDS
+stewardess/MS
+stewardship/M
+stick/SMRZG
+sticker/M
+stickily
+stickiness/M
+stickleback/SM
+stickler/MS
+stickpin/MS
+stickup/MS
+sticky/PTRSM
+stickybeak/SMDG
+stiff/SMDNRYPXTG
+stiffen/ZGDR
+stiffener/M
+stiffening/M
+stiffness/M
+stifle/DSJG
+stifling/Y
+stigma/SM
+stigmata
+stigmatic
+stigmatisation/M
+stigmatise/GDS
+stile/SM
+stiletto/SM
+still/TGPSMDR
+stillbirth/M
+stillbirths
+stillborn
+stilled/I
+stilling/I
+stillness/M
+stilt/SMD
+stilted/Y
+stimulant/SM
+stimulate/DSGNV
+stimulation/M
+stimuli
+stimulus/M
+sting/ZGSMR
+stinger/M
+stingily
+stinginess/M
+stingray/SM
+stingy/RTP
+stink/ZGSMR
+stinkbug/SM
+stinker/M
+stinky/RT
+stint/GSMD
+stipend/SM
+stipendiary/S
+stipple/DSMG
+stippling/M
+stipulate/XDSGN
+stipulation/M
+stir/MS
+stirred
+stirrer/SM
+stirring/SY
+stirrup/SM
+stitch's
+stitch/ADSG
+stitchery/M
+stitching/M
+stoat/SM
+stochastic
+stock's
+stock/AGSD
+stockade/DSMG
+stockbreeder/MS
+stockbroker/SM
+stockbroking/M
+stockholder/SM
+stockily
+stockiness/M
+stockinette/M
+stocking/SM
+stockist/S
+stockpile/MGDS
+stockpot/SM
+stockroom/MS
+stocktaking/M
+stocky/RTP
+stockyard/MS
+stodge
+stodgily
+stodginess/M
+stodgy/RTP
+stogie/MS
+stoic/SM
+stoical/Y
+stoicism/M
+stoke/DRSZG
+stoker/M
+stole/SM
+stolen
+stolid/RYTP
+stolidity/M
+stolidness/M
+stolon/MS
+stomach/MDRZG
+stomachache/SM
+stomacher/M
+stomachs
+stomp/GSMD
+stone/DRSMZG
+stonemason/MS
+stoner/M
+stonewall/GSD
+stoneware/M
+stonewashed
+stonework/M
+stonily
+stoniness/M
+stonkered
+stonking
+stony/TRP
+stood
+stooge/MS
+stool/SM
+stoop/GSMD
+stop's
+stop/US
+stopcock/SM
+stopgap/SM
+stoplight/MS
+stopover/MS
+stoppable/U
+stoppage/MS
+stopped/U
+stopper/GSMD
+stopping/U
+stopple/DSMG
+stopwatch/MS
+storage/M
+store's
+store/ADSG
+storefront/MS
+storehouse/MS
+storekeeper/SM
+storeroom/SM
+storey/MS
+stork/SM
+storm/GSMD
+stormily
+storminess/M
+stormy/RPT
+story/DSM
+storyboard/MS
+storybook/SM
+storyteller/MS
+storytelling/M
+stoup/SM
+stout/TSMRYP
+stouthearted
+stoutness/M
+stove/SM
+stovepipe/SM
+stow/DGS
+stowage/M
+stowaway/MS
+straddle/DRSMZG
+straddler/M
+strafe/MGDS
+straggle/DRSZG
+straggler/M
+straggly/TR
+straight/SPXTMNRY
+straightaway/SM
+straightedge/SM
+straighten/ZGDR
+straightener/M
+straightforward/YPS
+straightforwardness/M
+straightness/M
+straightway
+strain's
+strain/FADSG
+strainer/ASM
+strait/MNSX
+straiten/GD
+straitjacket/SGMD
+straitlaced
+strand/MDSG
+strange/PRYZT
+strangeness/M
+stranger/M
+strangle/ZGDRS
+stranglehold/SM
+strangler/M
+strangulate/GNDS
+strangulation/M
+strap's
+strap/US
+strapless/MS
+strapped/U
+strapping/M
+strata
+stratagem/SM
+strategic/S
+strategical/Y
+strategics/M
+strategist/SM
+strategy/SM
+strati
+stratification/M
+stratify/DSGN
+stratosphere/SM
+stratospheric
+stratum/M
+stratus/M
+straw/GSMD
+strawberry/SM
+stray/GSMD
+streak/MDRSZG
+streaker/M
+streaky/TR
+stream/MDRSZG
+streamer/M
+streamline/DSG
+street/MS
+streetcar/MS
+streetlamp/S
+streetlight/SM
+streetwalker/SM
+streetwise
+strength/M
+strengthen/AGDS
+strengthener/MS
+strengths
+strenuous/PY
+strenuousness/M
+strep/M
+streptococcal
+streptococci
+streptococcus/M
+streptomycin/M
+stress/MDSG
+stressed/U
+stressful
+stressors
+stretch/BZGMDRS
+stretcher/MDG
+stretchmarks
+stretchy/TR
+strew/GSDH
+strewn
+stria/M
+striae
+striated
+striation/MS
+stricken
+strict/RYPT
+strictness/M
+stricture/SM
+stridden
+stride/MGS
+stridency/M
+strident/Y
+strife/M
+strike/MZGRSJ
+strikebound
+strikebreaker/SM
+strikebreaking
+strikeout/MS
+striker/M
+striking/Y
+strine
+string/MDRSZG
+stringency/M
+stringent/Y
+stringer/M
+stringiness/M
+stringy/PTR
+strip/GSMD
+stripe/MS
+stripey
+stripling/MS
+stripped
+stripper/MS
+stripping
+striptease/MZGDRS
+stripteaser/M
+stripy
+strive/GS
+striven
+strobe/MS
+stroboscope/MS
+stroboscopic
+strode
+stroke/MGDS
+stroll/MDRSZG
+stroller/M
+strong/RYT
+strongbox/MS
+stronghold/MS
+strongman/M
+strongmen
+strongroom/S
+strontium/M
+strop/SM
+strophe/SM
+strophic
+stropped
+stroppily
+stropping
+stroppy/TRP
+strove
+struck
+structural/Y
+structuralism
+structuralist/S
+structure's
+structure/AGDS
+structured/U
+strudel/SM
+struggle/MGDS
+strum/SM
+strummed
+strumming
+strumpet/MS
+strung/UA
+strut/SM
+strutted
+strutting
+strychnine/M
+stub/MS
+stubbed
+stubbing
+stubble/M
+stubbly
+stubborn/RYPT
+stubbornness/M
+stubby/RT
+stucco/MDG
+stuccoes
+stuck/U
+stud/MYS
+studbook/MS
+studded
+studding/M
+student/SM
+studentship/S
+studied/U
+studiedly
+studio/MS
+studious/PY
+studiousness/M
+studly/RT
+study's
+study/AGDS
+stuff/GSMDJ
+stuffily
+stuffiness/M
+stuffing/M
+stuffy/RPT
+stultification/M
+stultify/DSNG
+stumble/DRSMZG
+stumbler/M
+stump/GSMD
+stumpy/TR
+stun/S
+stung
+stunk
+stunned
+stunner/S
+stunning/Y
+stunt/GSMD
+stuntman
+stuntmen
+stupefaction/M
+stupefy/DSG
+stupendous/Y
+stupid/TMRYS
+stupidity/SM
+stupor/MS
+sturdily
+sturdiness/M
+sturdy/TRP
+sturgeon/SM
+stutter/MDRSZG
+stutterer/M
+sty/SM
+style's
+style/ADSG
+styli
+stylise/DSG
+stylish/PY
+stylishness/M
+stylist/SM
+stylistic/S
+stylistically
+stylus/MS
+stymie/MDS
+stymieing
+styptic/SM
+suasion/EM
+suave/RYTP
+suaveness/M
+suavity/M
+sub/SM
+subaltern/MS
+subaqua
+subarctic
+subarea/MS
+subatomic
+subbasement/SM
+subbed
+subbing
+subbranch/MS
+subcategory/SM
+subclass
+subcommittee/SM
+subcompact/SM
+subconscious/PMY
+subconsciousness/M
+subcontinent/SM
+subcontinental
+subcontract/MDSG
+subcontractor/MS
+subculture/MS
+subcutaneous/Y
+subdivide/GDS
+subdivision/SM
+subdomain/MS
+subdominant
+subdue/DSG
+subeditor/S
+subfamily/SM
+subfreezing
+subgroup/MS
+subhead/GJMS
+subheading/M
+subhuman/MS
+subj
+subject/GVMDS
+subjection/M
+subjective/Y
+subjectivity/M
+subjoin/GDS
+subjugate/GNDS
+subjugation/M
+subjunctive/SM
+sublease/MGDS
+sublet/SM
+subletting
+sublieutenant/S
+sublimate/GNDS
+sublimation/M
+sublime/YTGDRS
+subliminal/Y
+sublimity/M
+sublingual
+submarginal
+submarine/MZRS
+submariner/M
+submerge/GDS
+submergence/M
+submerse/GNDS
+submersible/MS
+submersion/M
+submicroscopic
+submission/MS
+submissive/PY
+submissiveness/M
+submit/AS
+submitted/A
+submitter
+submitting/A
+subnormal
+suborbital
+suborder/MS
+subordinate/DSMGN
+subordination/IM
+suborn/SGD
+subornation/M
+subpar
+subparagraph
+subpart
+subplot/MS
+subpoena/GMDS
+subprime
+subprofessional/SM
+subprogram/S
+subroutine/SM
+subscribe/UASDG
+subscriber/MS
+subscript/MS
+subscription/MS
+subsection/MS
+subsequent/Y
+subservience/M
+subservient/Y
+subset/SM
+subside/GDS
+subsidence/M
+subsidiarity
+subsidiary/SM
+subsidisation/M
+subsidise/ZGDRS
+subsidiser/M
+subsidy/SM
+subsist/SDG
+subsistence/M
+subsoil/M
+subsonic
+subspace
+subspecies/M
+substance/SM
+substandard
+substantial/IY
+substantiate/GNDSX
+substantiated/U
+substantiation/FM
+substantive/SMY
+substation/MS
+substituent
+substitute/XMGNDS
+substitution/M
+substrata
+substrate/MS
+substratum/M
+substructure/SM
+subsume/DSG
+subsumption
+subsurface/M
+subsystem/SM
+subteen/SM
+subtenancy/M
+subtenant/SM
+subtend/SDG
+subterfuge/SM
+subterranean
+subtext/SM
+subtitle/DSMG
+subtle/TR
+subtlety/SM
+subtly
+subtopic/SM
+subtotal/SM
+subtotalled
+subtotalling
+subtract/GSD
+subtraction/SM
+subtrahend/SM
+subtropic/S
+subtropical
+subtropics/M
+suburb/MS
+suburban/SM
+suburbanite/SM
+suburbia/M
+subvention/SM
+subversion/M
+subversive/SPMY
+subversiveness/M
+subvert/SDG
+subway/MS
+subzero
+succeed/GDS
+success/VMS
+successful/UY
+succession/SM
+successive/Y
+successor/SM
+succinct/RYTP
+succinctness/M
+succotash/M
+succour/GMDS
+succubi
+succubus
+succulence/M
+succulency/M
+succulent/SM
+succumb/GDS
+such
+suchlike
+suck/MDRZGS
+sucker/GMD
+suckle/DSJG
+suckling/M
+sucrose/M
+suction/SMDG
+sudden/PY
+suddenness/M
+suds/M
+sudsy/TR
+sue/DSG
+suede/M
+suet/M
+suety
+suffer/DRZGSJ
+sufferance/M
+sufferer/M
+suffering/M
+suffice/DSG
+sufficiency/IM
+sufficient/IY
+suffix/MDSG
+suffixation/M
+suffocate/GNDS
+suffocation/M
+suffragan/MS
+suffrage/M
+suffragette/SM
+suffragist/MS
+suffuse/DSGN
+suffusion/M
+sugar/GSMD
+sugarcane/M
+sugarcoat/GDS
+sugarless
+sugarplum/MS
+sugary/RT
+suggest/GVSDR
+suggestibility/M
+suggestible
+suggestion/SM
+suggestive/YP
+suggestiveness/M
+suicidal
+suicide/SM
+suit/BMDGS
+suitability/UM
+suitableness/M
+suitably/U
+suitcase/SM
+suite/SM
+suited/U
+suiting/M
+suitor/MS
+sukiyaki/M
+sulfa/M
+sulfonamides
+sulk/MDGS
+sulkily
+sulkiness/M
+sulky/TRSMP
+sullen/RYPT
+sullenness/M
+sullied/U
+sully/GDS
+sulphate/MS
+sulphide/MS
+sulphur/SMDG
+sulphuric
+sulphurous
+sultan/MS
+sultana/SM
+sultanate/MS
+sultrily
+sultriness/M
+sultry/RPT
+sum/SM
+sumac/M
+summarily
+summarise/GDS
+summary/SM
+summat
+summation/FMS
+summed
+summer/MDSG
+summerhouse/SM
+summertime/M
+summery
+summing
+summit/MS
+summitry/M
+summon/DRSZG
+summoner/M
+summons/GMDS
+sumo/M
+sump/MS
+sumptuous/PY
+sumptuousness/M
+sun/SM
+sunbake/DRSZG
+sunbaker/M
+sunbath/ZGMDRS
+sunbathe
+sunbather/M
+sunbathing/M
+sunbaths
+sunbeam/SM
+sunbed/S
+sunbelt/SM
+sunblock/MS
+sunbonnet/SM
+sunburn/SGMD
+sunburst/MS
+sundae/MS
+sundeck/S
+sunder/DSG
+sundial/SM
+sundown/SZMR
+sundowner/M
+sundress/S
+sundries/M
+sundry/S
+sunfish/MS
+sunflower/MS
+sung/U
+sunglasses/M
+sunhat/S
+sunk/N
+sunlamp/SM
+sunless
+sunlight/M
+sunlit
+sunned
+sunniness/M
+sunning
+sunny/TRP
+sunrise/SM
+sunroof/SM
+sunscreen/MS
+sunset/MS
+sunshade/MS
+sunshine/M
+sunshiny
+sunspot/SM
+sunstroke/M
+suntan/MS
+suntanned
+suntanning
+suntrap/S
+sunup/M
+sup/SZMR
+super/M
+superabundance/MS
+superabundant
+superannuate/GNDS
+superannuation/M
+superb/RYT
+supercargo/M
+supercargoes
+supercharge/ZGDRS
+supercharger/M
+supercilious/PY
+superciliousness/M
+supercity/SM
+supercomputer/MS
+superconducting
+superconductive
+superconductivity/M
+superconductor/SM
+supercritical
+superego/MS
+supererogation/M
+supererogatory
+superficial/Y
+superficiality/M
+superfine
+superfluity/M
+superfluous/YP
+superfluousness/M
+superglue
+supergrass/S
+superhero/MS
+superheroes
+superhighway/SM
+superhuman
+superimpose/GDS
+superimposition/M
+superintend/DSG
+superintendence/M
+superintendency/M
+superintendent/SM
+superior/MS
+superiority/M
+superlative/SMY
+superman/M
+supermarket/SM
+supermassive
+supermen
+supermodel/SM
+supermom/MS
+supernal
+supernatural/SY
+supernova/MS
+supernovae
+supernumerary/SM
+superpose/GDS
+superposition/M
+superpower/SM
+supersaturate/GNDS
+supersaturation/M
+superscribe/GDS
+superscript/MS
+superscription/M
+supersede/GDS
+supersize/GDS
+supersonic
+superspreader/SM
+superstar/MS
+superstardom
+superstate/S
+superstition/MS
+superstitious/Y
+superstore/MS
+superstructure/MS
+supertanker/MS
+superuser/S
+supervene/GDS
+supervention/M
+supervise/XGNDS
+supervised/U
+supervision/M
+supervisor/MS
+supervisory
+superwoman/M
+superwomen
+supine/Y
+supp/DRZG
+supper/M
+suppertime
+suppl
+supplant/SDG
+supple/TLPR
+supplement/MDGS
+supplemental
+supplementary
+supplementation/M
+suppleness/M
+suppliant/SM
+supplicant/MS
+supplicate/GDS
+supplication/M
+supplier/M
+supply/ZGDRSMXN
+support/MDRSBZGV
+supportable/UI
+supported/U
+supporter/M
+suppose/GDS
+supposed/Y
+supposition/MS
+suppository/SM
+suppress/GVDS
+suppressant/MS
+suppressible
+suppression/M
+suppressor/SM
+suppurate/DSGN
+suppuration/M
+supra
+supranational
+supremacist/MS
+supremacy/M
+supreme/Y
+supremo/S
+supt
+surcease/DSMG
+surcharge/DSMG
+surcingle/SM
+sure/PYTR
+surefire
+surefooted
+sureness/M
+surety/SM
+surf/MDRZGS
+surface's
+surface/AGDS
+surfboard/MDSG
+surfeit/MDSG
+surfer/M
+surfing/M
+surge/DSMG
+surgeon/MS
+surgery/SM
+surgical/Y
+surliness/M
+surly/PTR
+surmise/MGDS
+surmount/DGSB
+surmountable/I
+surname/MS
+surpass/GDS
+surpassed/U
+surplice/MS
+surplus/MS
+surplussed
+surplussing
+surprise/DSMGJ
+surprising/UY
+surreal
+surrealism/M
+surrealist/SM
+surrealistic
+surrealistically
+surrender/MDSG
+surreptitious/PY
+surreptitiousness/M
+surrey/MS
+surrogacy/M
+surrogate/SM
+surround/GSDJ
+surrounding/M
+surroundings/M
+surtax/MDSG
+surtitle/S
+surveillance/M
+survey's
+survey/ADGS
+surveying/M
+surveyor/SM
+survival/SM
+survivalist/SM
+survive/DSGB
+survivor/SM
+susceptibility/SM
+susceptible/I
+sushi/M
+suspect/SMDG
+suspected/U
+suspend/SDRZG
+suspender/M
+suspense/XMN
+suspenseful
+suspension/M
+suspicion/SM
+suspicious/Y
+suss/DSG
+sustain/SDBG
+sustainability
+sustainable/U
+sustainably
+sustenance/M
+sutler/MS
+suttee
+suture/MGDS
+suzerain/MS
+suzerainty/M
+svelte/TR
+swab/MS
+swabbed
+swabbing
+swaddle/DSG
+swag/MS
+swagged
+swagger/SMDRG
+swagging
+swagman/M
+swagmen
+swain/SM
+swallow/GSMD
+swallowtail/MS
+swam
+swami/SM
+swamp/GSMD
+swampland/M
+swampy/RT
+swan/MS
+swank/TGSMDR
+swankily
+swankiness/M
+swanky/RPT
+swanned
+swanning
+swansong/S
+swap/MS
+swapped
+swapping
+sward/SM
+swarm/GSMD
+swarthy/TR
+swash/GMDS
+swashbuckler/SM
+swashbuckling/M
+swastika/SM
+swat/MS
+swatch/MS
+swath/GMDS
+swathe/M
+swaths
+swatted
+swatter/SMDG
+swatting
+sway/MDGS
+swayback/MD
+swayed/U
+swear/ZGSR
+swearer/M
+swearword/MS
+sweat/ZGSMDR
+sweatband/MS
+sweater/M
+sweatpants/M
+sweats/M
+sweatshirt/SM
+sweatshop/MS
+sweatsuit/S
+sweaty/RT
+swede/SM
+sweep/ZGSMRJ
+sweeper/M
+sweeping/MY
+sweepings/M
+sweepstake/M
+sweet/XTSMNRYP
+sweetbread/SM
+sweetbrier/SM
+sweetcorn
+sweetened/U
+sweetener/MS
+sweetening/M
+sweetheart/SM
+sweetie/SM
+sweetish
+sweetmeat/MS
+sweetness/M
+swell/TGSMDRJ
+swellhead/MDS
+swelling/M
+swelter/SGMD
+swept
+sweptback
+swerve/MGDS
+swerving/U
+swift/PTSMRY
+swiftness/M
+swig/MS
+swigged
+swigging
+swill/GSMD
+swim/MS
+swimmer/SM
+swimming/MY
+swimsuit/SM
+swimwear
+swindle/DRSMZG
+swindler/M
+swine/SM
+swineherd/SM
+swing/ZGSMR
+swingeing
+swinger/M
+swinish
+swipe/DSMG
+swirl/GSMD
+swirly
+swish/TGMDRS
+switch/MDRSZGB
+switchback/MS
+switchblade/SM
+switchboard/SM
+switcher/M
+switchover
+swivel/MS
+swivelled
+swivelling
+swiz
+swizz
+swizzle/DSG
+swollen
+swoon/SGMD
+swoop/SGMD
+swoosh/MDSG
+sword/SM
+swordfish/MS
+swordplay/M
+swordsman/M
+swordsmanship/M
+swordsmen
+swore
+sworn
+swot/S
+swotted
+swotting
+swum
+swung
+sybarite/SM
+sybaritic
+sycamore/MS
+sycophancy/M
+sycophant/SM
+sycophantic
+syllabic
+syllabicate/GNDS
+syllabication/M
+syllabification/M
+syllabify/DSNG
+syllable/MS
+syllabub/S
+syllabus/MS
+syllogism/MS
+syllogistic
+sylph/M
+sylphic
+sylphlike
+sylphs
+sylvan
+symbioses
+symbiosis/M
+symbiotic
+symbiotically
+symbol/MS
+symbolic
+symbolical/Y
+symbolisation/M
+symbolise/DSG
+symbolism/M
+symbology
+symmetric
+symmetrical/Y
+symmetry/SM
+sympathetic/U
+sympathetically/U
+sympathies/M
+sympathise/ZGDRS
+sympathiser/M
+sympathy/SM
+symphonic
+symphony/SM
+symposium/MS
+symptom/MS
+symptomatic
+symptomatically
+syn/H
+synagogal
+synagogue/SM
+synapse/MS
+synaptic
+sync/MDSG
+synchronicity
+synchronisation/MS
+synchronise/GDS
+synchronous/Y
+synchrony
+syncopate/DSGN
+syncopation/M
+syncope/M
+syndicalism
+syndicalist/S
+syndicate/DSMGN
+syndication/M
+syndrome/SM
+synergism/M
+synergistic
+synergy/SM
+synfuel/MS
+synod/SM
+synonym/SM
+synonymous
+synonymy/M
+synopses
+synopsis/M
+synoptic
+synovial
+syntactic
+syntactical/Y
+syntax/M
+syntheses
+synthesis/GMDS
+synthesise
+synthesizer/MS
+synthetic/SM
+synthetically
+synths
+syphilis/M
+syphilitic/SM
+syringe/DSMG
+syrup/SM
+syrupy
+sysadmin/S
+sysop/S
+system/SM
+systematic/U
+systematical/Y
+systematisation/M
+systematise/GDS
+systemic/MS
+systemically
+systole/SM
+systolic
+t/SDNXGBJ
+ta
+tab/SM
+tabbed
+tabbing
+tabbouleh/M
+tabby/SM
+tabernacle/SM
+tabla/MS
+table/MGDS
+tableau/M
+tableaux
+tablecloth/M
+tablecloths
+tableland/SM
+tablespoon/SM
+tablespoonful/SM
+tablet/SM
+tabletop/MS
+tableware/M
+tabloid/SM
+taboo/MDSG
+tabor/MS
+tabular
+tabulate/DSGNX
+tabulation/M
+tabulator/SM
+tachograph
+tachographs
+tachometer/SM
+tachycardia/M
+tachyon
+tacit/PY
+tacitness/M
+taciturn/Y
+taciturnity/M
+tack/ZGMDRS
+tacker/M
+tackiness/M
+tackle/DRSMZG
+tackler/M
+tacky/RTP
+taco/MS
+tact/FM
+tactful/YP
+tactfulness/M
+tactic/SM
+tactical/Y
+tactician/MS
+tactile
+tactility/M
+tactless/PY
+tactlessness/M
+tad/SM
+tadpole/MS
+taffeta/M
+taffrail/SM
+taffy/SM
+tag/SM
+tagged
+tagger/SM
+tagging
+tagliatelle
+tagline/MS
+taiga/MS
+tail/ACSDMG
+tailback/MS
+tailboard/S
+tailbone/S
+tailcoat/MS
+tailgate/MZGDRS
+tailgater/M
+tailless
+taillight/MS
+tailor/SGMD
+tailoring/M
+tailpiece/S
+tailpipe/SM
+tailspin/SM
+tailwind/SM
+taint/MDSG
+tainted/U
+take/AIMS
+takeaway/S
+taken/A
+takeoff/MS
+takeout/MS
+takeover/SM
+taker/MS
+taking/SM
+takings/M
+talc/M
+talcum/M
+tale/MS
+talebearer/MS
+talent/SMD
+talented/U
+tali
+talisman/MS
+talk/ZGMDRS
+talkative/PY
+talkativeness/M
+talker/M
+talkie/RSMT
+talky
+tall/TRP
+tallboy/MS
+tallier/M
+tallish
+tallness/M
+tallow/M
+tallowy
+tally/DRSMZG
+tallyho/MDGS
+talon/MS
+talus/MS
+tam/SM
+tamale/SM
+tamarack/MS
+tamarind/MS
+tambourine/MS
+tame/BYZTGDRSP
+tamed/U
+tameness/M
+tamer/M
+tamoxifen
+tamp/ZGDRS
+tamper/ZGDR
+tamperer/M
+tampon/SM
+tan/SM
+tanager/MS
+tanbark/M
+tandem/SM
+tandoori/M
+tang/MS
+tangelo/MS
+tangent/MS
+tangential/Y
+tangerine/MS
+tangibility/IM
+tangible/IMS
+tangibleness/M
+tangibly/I
+tangle's
+tangle/UDSG
+tango/MDSG
+tangy/RT
+tank/ZGMDRS
+tankard/MS
+tanker/M
+tankful/MS
+tanned/U
+tanner/SM
+tannery/SM
+tannest
+tannin/M
+tanning/M
+tansy/M
+tantalisation/M
+tantalise/ZGDRS
+tantaliser/M
+tantalising/Y
+tantalum/M
+tantamount
+tantra/M
+tantrum/SM
+tap/SZGMDR
+tapas
+tape/MS
+tapeline/MS
+taper/MDG
+tapestry/SM
+tapeworm/MS
+tapioca/M
+tapir/MS
+tapped/U
+tapper/MS
+tappet/MS
+tapping
+taproom/SM
+taproot/SM
+tar/SGMD
+taramasalata
+tarantella/MS
+tarantula/SM
+tarball/S
+tardily
+tardiness/M
+tardy/TPR
+tare/MS
+target/MDGS
+tariff/MS
+tarmac/MS
+tarmacadam
+tarmacked
+tarmacking
+tarn/MS
+tarnish/GMDS
+tarnished/U
+taro/MS
+tarot/MS
+tarp/MS
+tarpaulin/MS
+tarpon/MS
+tarragon/SM
+tarred
+tarring
+tarry/TGDRS
+tarsal/MS
+tarsi
+tarsus/M
+tart/PTGMDRYS
+tartan/MS
+tartar/MS
+tartaric
+tartness/M
+tarty/T
+taser/GMDS
+task/GMDS
+taskbar
+taskmaster/MS
+taskmistress/MS
+tassel/MS
+tasselled
+tasselling
+taste/JMZGDRS
+tasted/U
+tasteful/EPY
+tastefulness/EM
+tasteless/PY
+tastelessness/M
+taster/M
+tastily
+tastiness/M
+tasting/M
+tasty/TRP
+tat/SZR
+tatami/MS
+tater/M
+tatted
+tatter/MDSG
+tatterdemalion/MS
+tattie
+tatting/M
+tattle/MZGDRS
+tattler/M
+tattletale/MS
+tattoo/MDRSZG
+tattooer/M
+tattooist/SM
+tatty/TRS
+tau/SM
+taught/UA
+taunt/ZGMDRS
+taunter/M
+taunting/Y
+taupe/M
+taut/PXTNRY
+tauten/DG
+tautness/M
+tautological/Y
+tautologous
+tautology/SM
+tavern/MS
+tawdrily
+tawdriness/M
+tawdry/RTP
+tawny/TRM
+tax/BZGMDRS
+taxa
+taxation/M
+taxer/M
+taxi/GMDS
+taxicab/SM
+taxidermist/SM
+taxidermy/M
+taximeter/MS
+taxiway/S
+taxman
+taxmen
+taxon
+taxonomic
+taxonomist/MS
+taxonomy/SM
+taxpayer/MS
+taxpaying
+tb/S
+tbsp
+tea/SM
+teabag/S
+teacake/SM
+teach/ZGRSBJ
+teachable/U
+teacher/M
+teaching/M
+teacup/MS
+teacupful/MS
+teak/MS
+teakettle/SM
+teal/MS
+tealight/MS
+team/GMDS
+teammate/MS
+teamster/MS
+teamwork/M
+teapot/MS
+tear/GMDS
+tearaway/S
+teardrop/SM
+tearful/Y
+teargas/MS
+teargassed
+teargassing
+tearjerker/MS
+tearoom/SM
+teary/TR
+tease/MZGDRS
+teasel/MS
+teaser/M
+teasing/Y
+teaspoon/SM
+teaspoonful/SM
+teat/MS
+teatime/S
+tech/M
+techie/S
+technetium/M
+technical/Y
+technicality/SM
+technician/SM
+technicolor
+technique/SM
+techno
+technobabble
+technocracy/SM
+technocrat/MS
+technocratic
+technological/Y
+technologist/MS
+technology/SM
+technophobe/S
+techs
+tectonic/S
+tectonics/M
+ted/S
+teddy/S
+tedious/PY
+tediousness/M
+tedium/M
+tee/DSMH
+teeing
+teem/GDS
+teen/MS
+teenage/RZ
+teenager/M
+teeny/TR
+teenybopper/MS
+teeter/MDSG
+teethe/GDS
+teething/M
+teetotal
+teetotalism/M
+teetotaller/MS
+tektite/SM
+tel
+telecast/SZGMR
+telecaster/M
+telecommunication/MS
+telecommunications/M
+telecommute/ZGDRS
+telecommuter/M
+telecommuting/M
+teleconference/MGDS
+teleconferencing/M
+telegenic
+telegram/MS
+telegraph/MDRZG
+telegrapher/M
+telegraphese
+telegraphic
+telegraphically
+telegraphist/SM
+telegraphs
+telegraphy/M
+telekinesis/M
+telekinetic
+telemarketer/SM
+telemarketing/M
+telemeter/SM
+telemetry/SM
+teleological
+teleology
+telepathic
+telepathically
+telepathy/M
+telephone/DRSMZG
+telephoner/M
+telephonic
+telephonist/S
+telephony/M
+telephoto/SM
+telephotography/M
+teleplay/MS
+teleport
+teleportation
+teleprinter/MS
+teleprocessing/M
+teleprompter/SM
+telesales
+telescope/DSMG
+telescopic
+telescopically
+teletext/MS
+telethon/MS
+teletype/S
+teletypewriter/MS
+televangelism/M
+televangelist/MS
+televise/XGNDS
+television/M
+teleworker/S
+teleworking
+telex/MDSG
+tell/AGS
+teller/SM
+telling/Y
+telltale/SM
+tellurium/M
+telly/SM
+telnet
+temblor/MS
+temerity/M
+temp/MDRZTGS
+temper/MDG
+tempera/LSM
+temperament/MS
+temperamental/Y
+temperance/IM
+temperate/IY
+temperateness/M
+temperature/SM
+tempest/SM
+tempestuous/YP
+tempestuousness/M
+template's
+template/S
+temple/SM
+tempo/SM
+temporal/Y
+temporarily
+temporariness/M
+temporary/FSM
+temporise/ZGDRS
+temporiser/M
+tempt/SDRZG
+temptation/MS
+tempter/M
+tempting/Y
+temptress/MS
+tempura/M
+ten/BMH
+tenability/M
+tenable/U
+tenably
+tenacious/YP
+tenaciousness/M
+tenacity/M
+tenancy/SM
+tenant/SMDG
+tenanted/U
+tenantry/M
+tench
+tend/IEFDGS
+tended/U
+tendency/SM
+tendentious/YP
+tendentiousness/M
+tender/SMDRYTGP
+tenderfoot/MS
+tenderhearted/P
+tenderheartedness/M
+tenderise/ZGDRS
+tenderiser/M
+tenderloin/SM
+tenderness/M
+tendinitis/M
+tendon/SM
+tendril/SM
+tenement/SM
+tenet/SM
+tenfold
+tenner/S
+tennis/M
+tenon/SMDG
+tenor/SM
+tenpin/SM
+tenpins/M
+tense/DRSMYTGNXP
+tenseness/M
+tensile
+tension/ESM
+tensity/IM
+tensor/S
+tent/DGSM
+tentacle/DSM
+tentative/PY
+tentativeness/M
+tenterhook/MS
+tenth/MY
+tenths
+tenuity/M
+tenuous/PY
+tenuousness/M
+tenure/DSMG
+tepee/SM
+tepid/YP
+tepidity/M
+tepidness/M
+tequila/SM
+terabit/SM
+terabyte/MS
+terahertz/M
+terajoule/S
+terapixel/MS
+terawatt/S
+terbium/M
+tercentenary/SM
+tercentennial/SM
+teriyaki
+term/MDYGS
+termagant/MS
+terminable/IC
+terminal/MYS
+terminate/DSGNX
+termination/CSM
+terminator/S
+termini
+terminological/Y
+terminology/SM
+terminus/M
+termite/SM
+tern/IMS
+ternary/SM
+terr
+terrace/DSMG
+terracotta/M
+terrain/SM
+terrapin/MS
+terrarium/SM
+terrazzo/MS
+terrestrial/SMY
+terrible/P
+terribleness/M
+terribly
+terrier/M
+terrific
+terrifically
+terrify/GDS
+terrifying/Y
+terrine/S
+territorial/MS
+territoriality
+territory/SM
+terror/SM
+terrorise/DSG
+terrorism/M
+terrorist/SM
+terry/RMZ
+terrycloth/M
+terse/RYTP
+terseness/M
+tertiary
+tessellate/DSXGN
+tessellation/M
+test's/AFK
+test/AKFCDGS
+testable/CF
+testament/MS
+testamentary
+testate/S
+testator/MS
+testatrices
+testatrix/M
+tested/U
+tester/KSM
+testes
+testicle/MS
+testicular
+testifier/M
+testify/ZGDRS
+testily
+testimonial/MS
+testimony/SM
+testiness/M
+testings
+testis/M
+testosterone/M
+testy/PRT
+tetanus/M
+tetchily
+tetchy/PRT
+tether/SMDG
+tetra/SM
+tetracycline/M
+tetrahedral
+tetrahedron/MS
+tetrameter/SM
+text/FMS
+textbook/SM
+texted
+textile/MS
+texting
+textual/FY
+textural
+texture/MGDS
+thalami
+thalamus/M
+thalidomide/M
+thallium/M
+than
+thane/SM
+thank/SDG
+thankful/YP
+thankfulness/M
+thankless/PY
+thanklessness/M
+thanksgiving/SM
+that'd
+that'll
+that/M
+thatch/MDRSZG
+thatcher/M
+thatching/M
+thaw/MDGS
+the/JG
+theatre/SM
+theatregoer/MS
+theatrical/YS
+theatricality/M
+theatricals/M
+theatrics/M
+thee/S
+theft/SM
+their/S
+theism/M
+theist/SM
+theistic
+them
+thematic
+thematically
+theme/DSM
+themselves
+then/M
+thence
+thenceforth
+thenceforward
+theocracy/SM
+theocratic
+theodolite/S
+theologian/SM
+theological/Y
+theology/SM
+theorem/MS
+theoretic
+theoretical/Y
+theoretician/SM
+theorise/DSG
+theorist/SM
+theory/SM
+theosophic
+theosophical
+theosophist/SM
+theosophy/M
+therapeutic/S
+therapeutically
+therapeutics/M
+therapist/SM
+therapy/SM
+there/M
+thereabout/S
+thereafter
+thereat
+thereby
+therefor
+therefore
+therefrom
+therein
+theremin/SM
+thereof
+thereon
+thereto
+theretofore
+thereunder
+thereunto
+thereupon
+therewith
+therm/SM
+thermal/MYS
+thermionic
+thermodynamic/S
+thermodynamics/M
+thermometer/MS
+thermometric
+thermonuclear
+thermoplastic/SM
+thermos/MS
+thermostat/MS
+thermostatic
+thermostatically
+thesauri
+thesaurus/MS
+these/S
+thesis/M
+thespian/SM
+theta/SM
+thew/MS
+they
+they'd
+they'll
+they're
+they've
+thiamine/M
+thick/PMNRYXT
+thicken/DRJZG
+thickener/M
+thickening/M
+thicket/MS
+thickheaded/M
+thickness/MS
+thicko/S
+thickset
+thief/M
+thieve/DSG
+thievery/M
+thieving/M
+thievish
+thigh/M
+thighbone/MS
+thighs
+thimble/MS
+thimbleful/SM
+thin/YSP
+thine
+thing/M
+thingamabob/SM
+thingamajig/SM
+thingumabob/S
+thingummy/S
+thingy/S
+think/SRBZG
+thinkable/U
+thinker/M
+thinking's
+thinned
+thinner/MS
+thinness/M
+thinnest
+thinning
+third/SMY
+thirst/SGMD
+thirstily
+thirstiness/M
+thirsty/TPR
+thirteen/SMH
+thirteenth/M
+thirteenths
+thirtieth/M
+thirtieths
+thirty/HSM
+this
+thistle/MS
+thistledown/M
+thither
+tho
+thole/SM
+thong/SM
+thoracic
+thorax/MS
+thorium/M
+thorn/SM
+thorniness/M
+thorny/PRT
+thorough/RYPT
+thoroughbred/MS
+thoroughfare/MS
+thoroughgoing
+thoroughness/M
+those
+thou/MS
+though
+thought/SM
+thoughtful/YP
+thoughtfulness/M
+thoughtless/PY
+thoughtlessness/M
+thousand/MHS
+thousandfold
+thousandth/M
+thousandths
+thraldom/M
+thrall/SMDG
+thrash/JMDRSZG
+thrasher/M
+thrashing/M
+thread/SMDRZG
+threadbare
+threader/M
+threadlike
+thready/TR
+threat/SMNX
+threaten/DG
+threatening/Y
+three/SM
+threefold
+threepence/M
+threescore/MS
+threesome/SM
+threnody/SM
+thresh/MDRSZG
+thresher/M
+threshold/SM
+threw
+thrice
+thrift/SM
+thriftily
+thriftiness/M
+thriftless
+thrifty/PTR
+thrill/SMDRZG
+thriller/M
+thrilling/Y
+thrive/DSG
+throat/SM
+throatily
+throatiness/M
+throaty/RTP
+throb/SM
+throbbed
+throbbing
+throe/SM
+thrombi
+thrombolytic
+thromboses
+thrombosis/M
+thrombotic
+thrombus/M
+throne's
+throne/S
+throng/GSMD
+throttle/DRSMZG
+throttler/M
+through
+throughout
+throughput/M
+throughway/MS
+throw/SMRZG
+throwaway/SM
+throwback/SM
+thrower/M
+thrown
+thru
+thrum/SM
+thrummed
+thrumming
+thrush/MS
+thrust/GSM
+thud/MS
+thudded
+thudding
+thug/MS
+thuggery/M
+thuggish
+thulium/M
+thumb/SMDG
+thumbnail/SM
+thumbprint/SM
+thumbscrew/SM
+thumbtack/SM
+thump/SMDG
+thumping/M
+thunder/ZGMDRS
+thunderbolt/SM
+thunderclap/SM
+thundercloud/MS
+thunderer/M
+thunderhead/SM
+thunderous/Y
+thundershower/SM
+thunderstorm/SM
+thunderstruck
+thundery
+thunk/S
+thus
+thwack/ZGSMDR
+thwacker/M
+thwart/GSMD
+thy
+thyme/M
+thymine/M
+thymus/MS
+thyroid/MS
+thyroidal
+thyself
+ti/MRZ
+tiara/SM
+tibia/M
+tibiae
+tibial
+tic/SM
+tick/MDRZGS
+ticker/M
+ticket/GSMD
+ticking/M
+tickle/DRSMZG
+tickler/M
+ticklish/YP
+ticklishness/M
+ticktacktoe/M
+ticktock/MS
+tidal/Y
+tiddler/S
+tiddly
+tiddlywink/S
+tiddlywinks/M
+tide/MGJDS
+tideland/SM
+tidemark/S
+tidewater/MS
+tideway/MS
+tidily/U
+tidiness/UM
+tidings/M
+tidy/DRSMTGP
+tie's
+tie/AUSD
+tieback/MS
+tiebreak/RSZ
+tiebreaker/M
+tiepin/S
+tier/MD
+tiff/MDGS
+tiger/SM
+tigerish
+tight/SNRYPXT
+tighten/ZGDR
+tightener/M
+tightfisted
+tightness/M
+tightrope/MS
+tights/M
+tightwad/MS
+tigress/MS
+til
+tilapia
+tilde/SM
+tile/MZGDRS
+tiler/M
+tiling/M
+till/MDRZGSB
+tillage/M
+tilled/E
+tiller/ESM
+tilling/E
+tilt/MDGS
+timber/SMDG
+timberland/M
+timberline/MS
+timbre/SM
+timbrel/SM
+time/MYZGJDRS
+timekeeper/MS
+timekeeping/M
+timeless/PY
+timelessness/M
+timeline/MS
+timeliness/UM
+timely/UPRT
+timeout/SM
+timepiece/MS
+timer/M
+timescale/S
+timeserver/SM
+timeserving/M
+timeshare/S
+timestamp/SMD
+timetable/DSMG
+timeworn
+timezone
+timid/RYTP
+timidity/M
+timidness/M
+timing/M
+timorous/PY
+timorousness/M
+timothy/M
+timpani/M
+timpanist/SM
+tin/SM
+tincture/MGDS
+tinder/M
+tinderbox/MS
+tine/MS
+tinfoil/M
+ting/MDYG
+tinge/SM
+tingeing
+tingle/DSMGJ
+tingling/M
+tininess/M
+tinker/ZGSMDR
+tinkerer/M
+tinkle/DSMG
+tinned
+tinnie/M
+tinniness/M
+tinning
+tinnitus/M
+tinny/PRSMT
+tinplate/M
+tinpot
+tinsel/SM
+tinselled
+tinselling
+tinsmith/M
+tinsmiths
+tint/MDGS
+tintinnabulation/MS
+tintype/MS
+tinware/M
+tiny/RTP
+tip/SM
+tipped
+tipper/SM
+tippet/SM
+tippex/GDS
+tipping
+tipple/DRSMZG
+tippler/M
+tipsily
+tipsiness/M
+tipster/MS
+tipsy/RPT
+tiptoe/DSM
+tiptoeing
+tiptop/SM
+tirade/SM
+tiramisu/MS
+tire's
+tire/AGDS
+tired/PRYT
+tiredness/M
+tireless/YP
+tirelessness/M
+tiresome/PY
+tiresomeness/M
+tissue/SM
+tit/SM
+titan/SM
+titanic
+titanium/M
+titbit/SM
+titch/S
+titchy
+tithe/DRSMZG
+tither/M
+titian/M
+titillate/DSGN
+titillating/Y
+titillation/M
+titivate/DSGN
+titivation/M
+title/DSMG
+titled/U
+titleholder/MS
+titlist/MS
+titmice
+titmouse/M
+titter/SGMD
+tittle/SM
+titty/S
+titular
+tizz
+tizzy/SM
+tn
+tnpk
+to/IU
+toad/MS
+toadstool/MS
+toady/DSMG
+toadyism/M
+toast/SMDRZG
+toaster/M
+toastmaster/SM
+toastmistress/MS
+toasty/TRS
+tobacco/MS
+tobacconist/SM
+toboggan/ZGSMDR
+tobogganer/M
+tobogganing/M
+toccata/S
+tocopherol
+tocsin/SM
+today/M
+toddle/DRSMZG
+toddler/M
+toddy/SM
+toe/DSM
+toecap/SM
+toehold/MS
+toeing
+toenail/MS
+toerag/S
+toff/S
+toffee/SM
+tofu/M
+tog/SM
+toga/MDS
+together/P
+togetherness/M
+togged
+togging
+toggle/DSMG
+togs/M
+toil/MDRZGS
+toiler/M
+toilet/MDGS
+toiletry/SM
+toilette/M
+toilsome
+toke/MGDS
+token/SM
+tokenism/M
+told/AU
+tole/M
+tolerable/I
+tolerably/I
+tolerance/IM
+tolerances
+tolerant/IY
+tolerate/GNDS
+toleration/M
+toll/MDGS
+tollbooth/M
+tollbooths
+tollgate/SM
+tollway/SM
+toluene/M
+tom/SM
+tomahawk/SGMD
+tomato/M
+tomatoes
+tomb/MDGS
+tombola/S
+tomboy/MS
+tomboyish
+tombstone/MS
+tomcat/MS
+tome/MS
+tomfoolery/SM
+tomographic
+tomography/M
+tomorrow/MS
+tomtit/MS
+ton/SM
+tonal/Y
+tonality/SM
+tone's
+tone/IZGDRS
+tonearm/SM
+toneless/Y
+toner/IM
+tong/MDGS
+tongue/MGDS
+tongueless
+tonic/SM
+tonight/M
+tonnage/SM
+tonne/SM
+tonsil/MS
+tonsillectomy/SM
+tonsillitis/M
+tonsorial
+tonsure/DSMG
+tony/RT
+too
+took/A
+tool's
+tool/ADGS
+toolbar/SM
+toolbox/MS
+toolkit
+toolmaker/MS
+toot/MDRZGS
+tooter/M
+tooth/MD
+toothache/MS
+toothbrush/MS
+toothily
+toothless
+toothpaste/SM
+toothpick/SM
+toothsome
+toothy/RT
+tootle/GDS
+tootsie/S
+top/SM
+topaz/MS
+topcoat/SM
+topdressing/SM
+topee/S
+topflight
+topi
+topiary/M
+topic/SM
+topical/Y
+topicality/M
+topknot/SM
+topless
+topmast/SM
+topmost
+topnotch
+topographer/SM
+topographic
+topographical/Y
+topography/SM
+topological/Y
+topology
+topped
+topper/MS
+topping/SM
+topple/GDS
+topsail/SM
+topside/SM
+topsoil/M
+topspin/M
+toque/SM
+tor/SM
+torch/GMDS
+torchbearer/MS
+torchlight/M
+tore
+toreador/MS
+torment/SMDG
+tormenting/Y
+tormentor/MS
+torn
+tornado/M
+tornadoes
+torpedo/GMD
+torpedoes
+torpid/Y
+torpidity/M
+torpor/M
+torque/MGDS
+torrent/SM
+torrential
+torrid/YP
+torridity/M
+torridness/M
+torsion/M
+torsional
+torso/SM
+tort's
+tort/FEAS
+torte/SM
+tortellini/M
+tortilla/MS
+tortoise/MS
+tortoiseshell/SM
+tortoni/M
+tortuous/PY
+tortuousness/M
+torture/DRSMZG
+torturer/M
+torturous
+torus
+tosh
+toss/MDRSZG
+tossup/MS
+tot/SGMD
+total/SMY
+totalisator/MS
+totalitarian/SM
+totalitarianism/M
+totality/SM
+totalled
+totalling
+tote/MS
+totem/SM
+totemic
+totted
+totter/ZGMDRS
+totterer/M
+totting
+toucan/MS
+touch/AGMDS
+touchdown/SM
+touche/BJ
+touched/U
+touchily
+touchiness/M
+touching/Y
+touchline/S
+touchpaper/S
+touchscreen/MS
+touchstone/MS
+touchy/RPT
+tough/XTGMDNRYP
+toughen/ZGDR
+toughener/M
+toughie/SM
+toughness/M
+toughs
+toupee/MS
+tour/CFSGDM
+tourism/M
+tourist/MS
+touristic
+touristy
+tourmaline/M
+tournament/SM
+tourney/MS
+tourniquet/MS
+tousle/GDS
+tout/MDGS
+tow/SZGMDR
+toward/S
+towboat/MS
+towel/SM
+towelette/SM
+towelled
+towelling/SM
+tower/GMD
+towhead/MDS
+towhee/MS
+towline/MS
+town/MS
+townee/S
+townhouse/MS
+townie/MS
+townsfolk/M
+township/MS
+townsman/M
+townsmen
+townspeople/M
+townswoman/M
+townswomen
+towpath/M
+towpaths
+towrope/SM
+toxaemia/M
+toxic
+toxicity/SM
+toxicological
+toxicologist/SM
+toxicology/M
+toxin/SM
+toy/SGMD
+toyboy/S
+tr
+trabecula
+trabeculae
+trabecular
+trace/JDRSMZG
+traceability
+traceable/U
+tracer/M
+tracery/SM
+trachea/M
+tracheae
+tracheal
+tracheotomy/SM
+tracing/M
+track/ZGSMDR
+trackball/SM
+tracker/M
+trackless
+tracksuit/S
+tract's
+tract/CEKFAS
+tractability/IM
+tractable/I
+tractably/I
+traction/EFACKM
+tractor/FCKMS
+trad
+trade/JDRSMZG
+trademark/SGMD
+trader/M
+tradesman/M
+tradesmen
+tradespeople/M
+tradeswoman/M
+tradeswomen
+trading/M
+tradition/MS
+traditional/Y
+traditionalism/M
+traditionalist/SM
+traduce/DRSZG
+traducer/M
+traffic/SM
+trafficked
+trafficker/SM
+trafficking/M
+tragedian/SM
+tragedienne/MS
+tragedy/SM
+tragic
+tragically
+tragicomedy/SM
+tragicomic
+trail/ZGSMDR
+trailblazer/MS
+trailblazing/M
+trailer/M
+train/ZGSMDRB
+trained/U
+trainee/SM
+trainer/M
+training/M
+trainload/MS
+trainman/M
+trainmen
+trainspotter/S
+trainspotting
+traipse/DSMG
+trait/SM
+traitor/SM
+traitorous/Y
+trajectory/SM
+tram/MS
+tramcar/S
+tramlines
+trammed
+trammel/SM
+trammelled/U
+trammelling
+tramming
+tramp/ZGSMDR
+tramper/M
+trample/DRSMZG
+trampler/M
+trampoline/MGDS
+tramway/S
+trance/MS
+tranche/S
+tranquil/RYT
+tranquillise/DRSZG
+tranquilliser/M
+tranquillity/M
+trans/I
+transact/DGS
+transaction/SM
+transactional
+transactor/MS
+transatlantic
+transceiver/SM
+transcend/GSD
+transcendence/M
+transcendent
+transcendental/Y
+transcendentalism/M
+transcendentalist/SM
+transcontinental
+transcribe/ZGDRS
+transcriber/M
+transcript/MS
+transcription/SM
+transducer/MS
+transduction
+transect/DSG
+transept/MS
+transfer/MBS
+transferal/MS
+transference/M
+transferred
+transferring
+transfiguration/M
+transfigure/GDS
+transfinite
+transfix/DSG
+transform/BSZGMDR
+transformation/SM
+transformational
+transformer/M
+transfuse/DSXGN
+transfusion/M
+transgender/S
+transgenic
+transgress/GDS
+transgression/SM
+transgressor/SM
+transience/M
+transiency/M
+transient/SMY
+transistor/SM
+transistorise/DSG
+transit/SGMD
+transition/GSMD
+transitional/Y
+transitive/ISMY
+transitiveness/M
+transitivity/M
+transitory
+transl
+translatable/U
+translate/DSGNBX
+translated/U
+translation/M
+translator/SM
+transliterate/DSGNX
+transliteration/M
+translocation
+translucence/M
+translucency/M
+translucent/Y
+transmigrate/GNDS
+transmigration/M
+transmissible
+transmission/MS
+transmit/S
+transmittable
+transmittal/M
+transmittance/M
+transmitted
+transmitter/SM
+transmitting
+transmogrification/M
+transmogrify/DSNG
+transmutation/SM
+transmute/BDSG
+transnational/MS
+transoceanic
+transom/SM
+transpacific
+transparency/SM
+transparent/Y
+transphobia/M
+transphobic
+transpiration/M
+transpire/DSG
+transplant/MDGS
+transplantation/M
+transpolar
+transponder/SM
+transport/BSZGMDR
+transportation/M
+transporter/M
+transpose/DSG
+transposition/MS
+transsexual/SM
+transsexualism/M
+transship/SL
+transshipment/M
+transshipped
+transshipping
+transubstantiation/M
+transversal
+transverse/MYS
+transvestism/M
+transvestite/MS
+trap/MS
+trapdoor/MS
+trapeze/SM
+trapezium/SM
+trapezoid/SM
+trapezoidal
+trappable
+trapped
+trapper/SM
+trapping/S
+trappings/M
+trapshooting/M
+trash/GMDS
+trashcan/MS
+trashiness/M
+trashy/RPT
+trauma/MS
+traumatic
+traumatically
+traumatise/GDS
+travail/SGMD
+travel/MS
+travelled
+traveller/SM
+travelling/MS
+travelogue/MS
+traversal/SM
+traverse/DSMG
+travesty/GDSM
+trawl/ZGSMDR
+trawler/M
+tray/MS
+treacherous/PY
+treacherousness/M
+treachery/SM
+treacle/M
+treacly
+tread/AGSM
+treadle/DSMG
+treadmill/MS
+treas
+treason/BM
+treasonous
+treasure/DRSMZG
+treasurer/M
+treasury/SM
+treat/AGSMD
+treatable
+treated/U
+treatise/SM
+treatment/MS
+treaty/SM
+treble/MGDS
+tree/MDS
+treeing
+treeless
+treelike
+treeline
+treetop/SM
+trefoil/SM
+trek/MS
+trekked
+trekker/SM
+trekking
+trellis/GMDS
+trematode/MS
+tremble/DSMG
+tremendous/Y
+tremolo/SM
+tremor/MS
+tremulous/PY
+tremulousness/M
+trench's
+trench/ADSG
+trenchancy/M
+trenchant/Y
+trencher/MS
+trencherman/M
+trenchermen
+trend/GSMD
+trendily
+trendiness/M
+trendsetter/S
+trendsetting
+trendy/RSMPT
+trepidation/M
+trespass/MDRSZG
+trespasser/M
+tress/EMS
+trestle/MS
+trews
+trey/MS
+triad/SM
+triage/MD
+trial/ASM
+trialled
+trialling
+triangle/SM
+triangular/Y
+triangulate/GNDS
+triangulation/M
+triathlete/S
+triathlon/SM
+tribal
+tribalism/M
+tribe/SM
+tribesman/M
+tribesmen
+tribeswoman/M
+tribeswomen
+tribulation/SM
+tribunal/SM
+tribune/MS
+tributary/SM
+tribute's
+tribute/FS
+trice/M
+tricentennial/MS
+triceps/MS
+triceratops/M
+trichina/M
+trichinae
+trichinosis/M
+trick/GSMD
+trickery/M
+trickily
+trickiness/M
+trickle/MGDS
+trickster/SM
+tricky/TRP
+tricolour/MS
+tricycle/SM
+trident/MS
+tried/U
+triennial/MYS
+trier/SM
+trifecta/SM
+trifle/MZGDRS
+trifler/M
+trifocals/M
+trig/M
+trigger/MDSG
+triglyceride/MS
+trigonometric
+trigonometrical
+trigonometry/M
+trike/SM
+trilateral/S
+trilby/SM
+trill/GSMD
+trillion/SMH
+trillionth/M
+trillionths
+trillium/M
+trilobite/SM
+trilogy/SM
+trim/PMYS
+trimaran/MS
+trimester/SM
+trimmed/U
+trimmer/SM
+trimmest
+trimming/SM
+trimmings/M
+trimness/M
+trimonthly
+trinitrotoluene/M
+trinity/SM
+trinket/SM
+trio/MS
+trip/MYS
+tripartite
+tripe/M
+triple/MGDS
+triplet/SM
+triplex/MS
+triplicate/MGDS
+tripod/MS
+tripodal
+tripos
+tripped
+tripper/SM
+tripping
+triptych/M
+triptychs
+tripwire/S
+trireme/SM
+trisect/SDG
+trisection/M
+trite/FPYT
+triteness/FM
+triter
+tritium/M
+triumph/GMD
+triumphal
+triumphalism
+triumphalist
+triumphant/Y
+triumphs
+triumvir/MS
+triumvirate/SM
+trivalent
+trivet/MS
+trivia/M
+trivial/Y
+trivialisation/M
+trivialise/GDS
+triviality/SM
+trivium/M
+trochaic
+trochee/SM
+trod/AU
+trodden/A
+troglodyte/SM
+troika/MS
+troll/SGMD
+trolley/SM
+trolleybus/MS
+trollop/SM
+trombone/MS
+trombonist/MS
+tromp/SGD
+tron/S
+troop/SZGMDR
+trooper/M
+troopship/MS
+trope/SM
+trophy/SM
+tropic/MS
+tropical/Y
+tropics/M
+tropism/SM
+troposphere/SM
+troppo
+trot/MS
+troth/M
+trotted
+trotter/SM
+trotting
+troubadour/MS
+trouble/DSMG
+troubled/U
+troublemaker/MS
+troubleshoot/DRZGS
+troubleshooter/M
+troubleshooting/M
+troubleshot
+troublesome/Y
+trough/M
+troughs
+trounce/DRSZG
+trouncer/M
+troupe/MZGDRS
+trouper/M
+trouser/SM
+trousers/M
+trousseau/M
+trousseaux
+trout/SM
+trove/SM
+trow/DSG
+trowel/MS
+trowelled
+trowelling
+troy/S
+truancy/M
+truant/GMDS
+truce/SM
+truck/SZGMDR
+trucker/M
+truckie/MS
+trucking/M
+truckle/MGDS
+truckload/SM
+truculence/M
+truculent/Y
+trudge/MGDS
+true/MTGDRS
+truelove/SM
+truffle/MS
+trug/S
+truism/MS
+truly/U
+trump/SGMD
+trumpery/M
+trumpet/ZGMDRS
+trumpeter/M
+truncate/GNDS
+truncation/M
+truncheon/SM
+trundle/MZGDRS
+trundler/M
+trunk/SGM
+truss/GMDS
+trust/ESGMD
+trustee/MS
+trusteeship/SM
+trustful/EY
+trustfulness/M
+trusting/Y
+trustworthiness/M
+trustworthy/TPR
+trusty/TRSM
+truth/ZMR
+truther/M
+truthful/UYP
+truthfulness/UM
+truthiness
+truths/U
+try's
+try/AGDS
+trying/Y
+tryout/SM
+tryptophan
+tryst/SMDG
+tsar/MS
+tsarists
+tsetse/MS
+tsp
+tsunami/SM
+ttys
+tub/SZGMDR
+tuba/MS
+tubal
+tubby/TR
+tube/MS
+tubeless/M
+tuber/M
+tubercle/SM
+tubercular
+tuberculin/M
+tuberculosis/M
+tuberculous
+tuberose/M
+tuberous
+tubful/MS
+tubing/M
+tubular
+tubule/MS
+tuck/MDRSZG
+tucker/MDG
+tuft/MDRSZG
+tufter/M
+tug/SM
+tugboat/MS
+tugged
+tugging
+tuition/IM
+tularaemia
+tularemia's
+tulip/SM
+tulle/M
+tum/S
+tumble/DRSMZG
+tumbledown
+tumbler/M
+tumbleweed/SM
+tumbling/M
+tumbril/SM
+tumescence/M
+tumescent
+tumid
+tumidity/M
+tummy/SM
+tumorous
+tumour/SM
+tumult/SM
+tumultuous/Y
+tun/SZGMDR
+tuna/MS
+tundra/SM
+tune/MS
+tuneful/YP
+tunefulness/M
+tuneless/Y
+tuner/M
+tuneup/SM
+tungsten/M
+tunic/SM
+tunnel/SM
+tunnelled
+tunneller/SM
+tunnelling/S
+tunny/SM
+tuple/S
+tuppence
+tuppenny
+tuque/SM
+turban/SMD
+turbid
+turbidity/M
+turbine/SM
+turbo/SM
+turbocharge/ZGDRS
+turbocharger/M
+turbofan/SM
+turbojet/SM
+turboprop/SM
+turbot/SM
+turbulence/M
+turbulent/Y
+turd/MS
+turducken/SM
+tureen/SM
+turf/MDSG
+turfy
+turgid/Y
+turgidity/M
+turkey/SM
+turmeric/SM
+turmoil/MS
+turn/AMDRSZG
+turnabout/SM
+turnaround/SM
+turnbuckle/SM
+turncoat/SM
+turner/AM
+turning/MS
+turnip/SM
+turnkey/MS
+turnoff/MS
+turnout/MS
+turnover/MS
+turnpike/MS
+turnstile/SM
+turntable/SM
+turpentine/M
+turpitude/M
+turps
+turquoise/SM
+turret/SMD
+turtle/SM
+turtledove/SM
+turtleneck/SMD
+tush/MS
+tusk/MDS
+tussle/DSMG
+tussock/MS
+tussocky
+tut/SM
+tutelage/M
+tutelary
+tutor/SMDG
+tutored/U
+tutorial/SM
+tutorship/M
+tutted
+tutti/SM
+tutting
+tutu/MS
+tux/MS
+tuxedo/SM
+twaddle/MZGDRS
+twaddler/M
+twain/M
+twang/SMDG
+twangy/RT
+twas
+twat/S
+tweak/SMDG
+twee
+tweed/SM
+tweeds/M
+tweedy/RT
+tween
+tweet's
+tweet/ASDG
+tweeter/SM
+tweezers/M
+twelfth/M
+twelfths
+twelve/SM
+twelvemonth/M
+twelvemonths
+twentieth/M
+twentieths
+twenty/SMH
+twerk/SDG
+twerp/SM
+twice
+twiddle/MGDS
+twiddly
+twig/MS
+twigged
+twigging
+twiggy/TR
+twilight/M
+twilit
+twill/MD
+twin/MDRSZG
+twine/SM
+twiner/M
+twinge/DSMG
+twink/SY
+twinkle/MGJDS
+twinkling/M
+twinned
+twinning
+twinset/S
+twirl/SMDRZG
+twirler/M
+twirly
+twist's
+twist/USDG
+twister/MS
+twisty/TR
+twit/MS
+twitch/GMDS
+twitchy/RT
+twitted
+twitter/MDSG
+twittery
+twitting
+twixt
+two/SM
+twofer/SM
+twofold
+twopence/SM
+twopenny
+twosome/SM
+twp
+tycoon/SM
+tying/AU
+tyke/MS
+tympani/M
+tympanic
+tympanist/MS
+tympanum/SM
+type's
+type/AGDS
+typecast/GS
+typeface/MS
+typescript/MS
+typeset/S
+typesetter/MS
+typesetting/M
+typewrite/RSZG
+typewriter/M
+typewriting/M
+typewritten
+typewrote
+typhoid/M
+typhoon/MS
+typhus/M
+typical/UY
+typicality/M
+typification/M
+typify/NGDS
+typing/M
+typist/SM
+typo/MS
+typographer/SM
+typographic
+typographical/Y
+typography/M
+typology/SM
+tyrannic
+tyrannical/Y
+tyrannicidal
+tyrannicide/S
+tyrannise/GDS
+tyrannosaur/MS
+tyrannosaurus/MS
+tyrannous
+tyranny/SM
+tyrant/SM
+tyre/MS
+tyro/MS
+tzatziki
+u/S
+ubiquitous/Y
+ubiquity/M
+udder/SM
+ufologist/SM
+ufology/M
+ugh
+ugliness/M
+ugly/RTP
+uh
+uhf
+ukase/SM
+ukulele/SM
+ulcer/SM
+ulcerate/XDSGN
+ulceration/M
+ulcerous
+ulna/M
+ulnae
+ulnar
+ulster/MS
+ult
+ulterior
+ultimate/MY
+ultimatum/MS
+ultimo
+ultra/SM
+ultraconservative/SM
+ultrahigh
+ultralight/SM
+ultramarine/M
+ultramodern
+ultrasensitive
+ultrashort
+ultrasonic
+ultrasonically
+ultrasound/MS
+ultraviolet/M
+ululate/DSGNX
+ululation/M
+um
+umbel/SM
+umber/M
+umbilical
+umbilici
+umbilicus/M
+umbra/SM
+umbrage/M
+umbrella/SM
+umiak/SM
+umlaut/MS
+ump/SGMD
+umpire/MGDS
+umpteen/H
+unabridged/MS
+unacceptability
+unacceptable
+unaccommodating
+unaccountably
+unadventurous
+unaesthetic
+unalterably
+unambitious
+unanimity/M
+unanimous/Y
+unapparent
+unappetising
+unappreciative
+unary
+unassertive
+unassimilable
+unassuming/Y
+unavailing/Y
+unaware/S
+unbeknown
+unbend/SG
+unbent
+unbid
+unblinking/Y
+unblushing/Y
+unbosom/DG
+unbound/D
+unbox/GDS
+unbreakable
+unbroken
+uncanny/T
+uncap/S
+uncaring
+unceasing/Y
+unchangeable
+uncharacteristic
+uncharitable
+unchaste/RT
+uncial/M
+uncle/SM
+unclean/DRPT
+uncleanly/T
+unclear/DRT
+uncomfortable
+uncommon/T
+uncompelling
+uncomplaining/Y
+uncomplicated
+uncomprehending/Y
+uncompromising/Y
+unconditional/Y
+uncongenial
+unconscionable
+unconscionably
+unconscious/M
+unconstitutional/Y
+uncontrollably
+uncontroversial
+uncool
+uncooperative
+uncouth/Y
+uncrushable
+unction/SM
+unctuous/YP
+unctuousness/M
+uncut
+undaunted/Y
+undecided/SM
+undemonstrative/Y
+undeniably
+under
+underachieve/LZGDRS
+underachiever/M
+underact/SDG
+underage
+underappreciated
+underarm/SM
+underbelly/SM
+underbid/S
+underbidding
+underbrush/M
+undercarriage/MS
+undercharge/MGDS
+underclass/MS
+underclassman/M
+underclassmen
+underclothes/M
+underclothing/M
+undercoat/GJSMD
+undercoating/M
+undercover
+undercurrent/SM
+undercut/SM
+undercutting
+underdeveloped
+underdevelopment/M
+underdog/SM
+underdone
+underemployed
+underemployment/M
+underestimate/DSMGNX
+underestimation/M
+underexpose/GDS
+underexposure/MS
+underfed
+underfeed/GS
+underfloor
+underflow
+underfoot
+underfunded
+underfur/M
+undergarment/SM
+undergo/G
+undergoes
+undergone
+undergrad/S
+undergraduate/SM
+underground/MS
+undergrowth/M
+underhand
+underhanded/PY
+underhandedness/M
+underinflated
+underlain
+underlay/SM
+underlie/S
+underline/MGDS
+underling/MS
+underlip/SM
+underlying
+undermanned
+undermentioned
+undermine/GDS
+undermost
+underneath/M
+underneaths
+undernourished
+undernourishment/M
+underpaid
+underpants/M
+underpart/MS
+underpass/MS
+underpay/GSL
+underpayment/SM
+underpin/S
+underpinned
+underpinning/MS
+underplay/DGS
+underpopulated
+underprivileged
+underproduction/M
+underrate/GDS
+underrepresented
+underscore/DSMG
+undersea/S
+undersecretary/SM
+undersell/GS
+undersexed
+undershirt/SM
+undershoot/SG
+undershorts/M
+undershot
+underside/MS
+undersign/DGS
+undersigned/M
+undersized
+underskirt/SM
+undersold
+understaffed
+understand/SGBJ
+understandably
+understanding/MY
+understate/DSLG
+understatement/SM
+understood
+understudy/GDSM
+undertake/ZGJRS
+undertaken
+undertaker/M
+undertaking/M
+underthings/M
+undertone/MS
+undertook
+undertow/SM
+underused
+underutilised
+undervaluation/M
+undervalue/DSG
+underwater
+underway
+underwear/M
+underweight/M
+underwent
+underwhelm/DGS
+underwire/DS
+underworld/MS
+underwrite/ZGRS
+underwriter/M
+underwritten
+underwrote
+undesirable/MS
+undies/M
+undo
+undoubted/Y
+undramatic
+undue
+undulant
+undulate/DSXGN
+undulation/M
+undying
+unearthliness/M
+unease/M
+uneasy/T
+uneatable
+uneconomic
+unemployed/M
+unending
+unenterprising
+unequal/Y
+unerring/Y
+unessential
+uneven/Y
+unexceptionably
+unexcited
+unexciting
+unexpected/YP
+unexpectedness/M
+unfailing/Y
+unfair/PTRY
+unfaltering
+unfamiliar
+unfathomably
+unfed
+unfeeling/Y
+unfeminine
+unfit/S
+unfitting
+unfix/GDS
+unflagging/Y
+unflappability/M
+unflappable
+unflappably
+unflattering
+unflinching/Y
+unforgettably
+unforgivably
+unfortunate/MS
+unfriendly/T
+unfrock/DG
+unfruitful
+unfunny
+ungainliness/M
+ungainly/RPT
+ungenerous
+ungentle
+ungodly/T
+ungraceful/Y
+ungrudging
+unguarded
+unguent/SM
+ungulate/MS
+unhandy/T
+unhappy/T
+unhealthful
+unhealthy/T
+unhistorical
+unholy/T
+unhurt
+unicameral
+unicellular
+unicorn/SM
+unicycle/SM
+unidirectional
+unification/AM
+uniform/SMDYG
+uniformity/M
+unify/AGDSN
+unilateral/Y
+unilateralism
+unimportant
+unimpressive
+uninformative
+uninhibited/Y
+uninsured
+unintelligent
+unintended
+uninteresting
+uninterrupted/Y
+uninterruptible
+uninviting
+union/ASM
+unionism/M
+unionist/MS
+unique/YTRP
+uniqueness/M
+unisex/M
+unison/M
+unitary
+unite/AEGSD
+unitedly
+unities
+unitise/DSG
+unity/EM
+univalent
+univalve/SM
+universal/MYS
+universalise/DSG
+universalism
+universalist
+universality/M
+universe/SM
+university/SM
+univocal
+unjust/Y
+unkempt
+unkind/T
+unkindly/T
+unknowable/M
+unknown/SM
+unleaded/M
+unless
+unlike/PB
+unlikely/T
+unlock/DSG
+unlovable
+unlovely/TR
+unloving
+unlucky/T
+unmanly/T
+unmarried
+unmeaning
+unmentionable/MS
+unmentionables/M
+unmet
+unmindful
+unmissable
+unmistakably
+unmoral
+unmovable
+unmusical
+unnecessary
+unnerving/Y
+unobservant
+unoffensive
+unofficial/Y
+unoriginal
+unpeople
+unperceptive
+unpersuasive
+unpick/GDS
+unpin/S
+unpleasing
+unpolitical
+unpopular
+unpractical
+unprecedented/Y
+unprofessional/Y
+unpromising
+unpropitious
+unquestioning/Y
+unquiet/TR
+unravelling
+unread/B
+unready
+unreal
+unreasoning
+unregenerate
+unrelated
+unrelenting/Y
+unrelieved/Y
+unremarkable
+unremitting/Y
+unrepentant
+unreported
+unrepresentative
+unrest/M
+unrevealing
+unripe/TR
+unroll/GDS
+unromantic
+unruliness/M
+unruly/RTP
+unsafe/YTR
+unsalable
+unsavoury
+unscathed
+unseeing/Y
+unseemly/T
+unseen/M
+unsentimental
+unset
+unshakably
+unshakeable
+unshapely
+unshockable
+unshorn
+unsightliness/M
+unsightly/PT
+unskillful/Y
+unsmiling
+unsociable
+unsocial
+unsold
+unsound/PRYT
+unspeakable
+unspeakably
+unspecific
+unspectacular
+unsporting
+unstable
+unsteady/TRP
+unstinting/Y
+unstrapping
+unsubstantial
+unsubtle
+unsuitable
+unsure
+unsuspecting/Y
+unsymmetrical
+untactful
+unthinkably
+unthinking/Y
+untidy/PTR
+until
+untimely/T
+untiring/Y
+untouchable/MS
+untoward
+untraveled
+untrue/RT
+untrustworthy
+untruth/M
+unutterable
+unutterably
+unwarrantable
+unwary/T
+unwavering
+unwed
+unwelcome/G
+unwell
+unwieldiness/M
+unwieldy/TRP
+unwise/RYT
+unworried
+unworthy/T
+unwound
+unwrapping
+unyielding
+up/S
+upbeat/MS
+upbraid/SGD
+upbringing/MS
+upchuck/SGD
+upcoming
+upcountry/M
+update/MGDRS
+updraught/SM
+upend/SGD
+upfront
+upgrade/MGDS
+upheaval/MS
+upheld
+uphill/MS
+uphold/ZGRS
+upholder/M
+upholster/ASGD
+upholsterer/MS
+upholstery/M
+upkeep/M
+upland/MS
+uplift/JSMDG
+upload/SDG
+upmarket
+upmost
+upon
+upped
+upper/SM
+uppercase/M
+upperclassman/M
+upperclassmen
+upperclasswoman
+upperclasswomen
+uppercut/MS
+uppercutting
+uppermost
+upping
+uppish
+uppity
+upraise/DSG
+uprear/GSD
+upright/MYPS
+uprightness/M
+uprising/SM
+upriver
+uproar/SM
+uproarious/Y
+uproot/GSD
+upscale
+upset/SM
+upsetting
+upshot/SM
+upside/SM
+upsilon/MS
+upstage/GDS
+upstairs
+upstanding
+upstart/MDSG
+upstate/M
+upstream
+upstroke/SM
+upsurge/MGDS
+upswing/MS
+uptake/SM
+uptempo
+upthrust/GSM
+uptick/SM
+uptight
+uptown/M
+uptrend
+upturn/GSMD
+upward/SY
+upwind
+uracil/M
+uraemia/M
+uraemic
+uranium/M
+urban
+urbane/RYT
+urbanisation/M
+urbanise/DSG
+urbanity/M
+urbanologist/MS
+urbanology/M
+urchin/SM
+urea/M
+ureter/SM
+urethane/M
+urethra/M
+urethrae
+urethral
+urge/MGDS
+urgency/M
+urgent/Y
+uric
+urinal/SM
+urinalyses
+urinalysis/M
+urinary
+urinate/GNDS
+urination/M
+urine/M
+urn/SM
+urogenital
+urological
+urologist/MS
+urology/M
+ursine
+urticaria/M
+usability/M
+usable/UA
+usage/SM
+use/AEDSMG
+used/U
+useful/PY
+usefulness/M
+useless/YP
+uselessness/M
+user/MS
+username/MS
+usher/SMDG
+usherette/SM
+usu
+usual's
+usual/UY
+usurer/SM
+usurious
+usurp/SDRZG
+usurpation/M
+usurper/M
+usury/M
+ute/SM
+utensil/SM
+uteri
+uterine
+uterus/M
+utilisation/M
+utilise/GBDS
+utilitarian/MS
+utilitarianism/M
+utility/SM
+utmost/M
+utopia/SM
+utter/SDYG
+utterance/SM
+uttermost/M
+uveitis
+uvula/SM
+uvular/MS
+uxorious
+v/AS
+vac/S
+vacancy/SM
+vacant/Y
+vacate/DSG
+vacation/ZGMDRS
+vacationer/M
+vacationist/SM
+vaccinate/GNDSX
+vaccination/M
+vaccine/SM
+vacillate/XGNDS
+vacillation/M
+vacuity/M
+vacuole/MS
+vacuous/YP
+vacuousness/M
+vacuum/GSMD
+vagabond/SMDG
+vagabondage/M
+vagarious
+vagary/SM
+vagina/SM
+vaginae
+vaginal/Y
+vaginitis
+vagrancy/M
+vagrant/MS
+vague/RYTP
+vagueness/M
+vagus
+vain/RYT
+vainglorious/Y
+vainglory/M
+val
+valance/MS
+vale/MS
+valediction/MS
+valedictorian/SM
+valedictory/SM
+valence/MS
+valency/SM
+valentine/SM
+valet/SMDG
+valetudinarian/MS
+valetudinarianism/M
+valiance/M
+valiant/Y
+valid/Y
+validate/IGNDS
+validation/IM
+validations
+validity/IM
+validness/M
+valise/SM
+valley/SM
+valorous/Y
+valour/M
+valuable/MS
+valuate/DSG
+valuation/CAMS
+value's
+value/CAGSD
+valueless
+valuer/SM
+valve/DSMG
+valveless
+valvular
+vamoose/DSG
+vamp/AMDGS
+vampire/SM
+van/SM
+vanadium/M
+vandal/SM
+vandalise/DSG
+vandalism/M
+vane/MS
+vanguard/MS
+vanilla/SM
+vanish/JDSG
+vanity/SM
+vanned
+vanning
+vanquish/ZGDRS
+vanquisher/M
+vantage/SM
+vape/GDS
+vapid/YP
+vapidity/M
+vapidness/M
+vaporisation/M
+vaporise/DRSZG
+vaporiser/M
+vaporous
+vaporware
+vapour/SM
+vapoury
+vaquero/MS
+var/S
+variability/IM
+variable/ISM
+variably/I
+variance/SM
+variant/MS
+variate/NX
+variation/M
+varicoloured
+varicose
+varied/U
+variegate/DSGN
+variegation/M
+varietal/SM
+variety/SM
+various/Y
+varlet/SM
+varmint/MS
+varnish/GMDS
+varnished/U
+varsity/SM
+vary/DSG
+varying/U
+vascular
+vase/MS
+vasectomy/SM
+vasoconstriction
+vasomotor
+vassal/SM
+vassalage/M
+vast/MRYTSP
+vastness/M
+vat/SM
+vatted
+vatting
+vaudeville/M
+vaudevillian/MS
+vault/SMDRZG
+vaulter/M
+vaulting/M
+vaunt/SMDG
+vb
+veal/M
+vector/SGMD
+veejay/SM
+veep/MS
+veer/MDGS
+veg/M
+vegan/SM
+veganism
+vegeburger/S
+veges
+vegetable/SM
+vegetarian/SM
+vegetarianism/M
+vegetate/GNVDS
+vegetation/M
+vegged
+vegges
+veggie/SM
+veggieburger/S
+vegging
+vehemence/M
+vehemency/M
+vehement/Y
+vehicle/MS
+vehicular
+veil's
+veil/UDGS
+vein/MDGS
+vela
+velar/SM
+veld/MS
+vellum/M
+velocipede/MS
+velocity/SM
+velodrome/S
+velour/MS
+velum/M
+velvet/M
+velveteen/M
+velvety
+venal/Y
+venality/M
+venation/M
+vend/DGS
+vendetta/SM
+vendible
+vendor/MS
+veneer/MDGS
+venerability/M
+venerable
+venerate/DSGN
+veneration/M
+venereal
+vengeance/M
+vengeful/AY
+venial
+venireman/M
+veniremen
+venison/M
+venom/M
+venomous/Y
+venous
+vent's
+vent/DGS
+ventilate/GNDS
+ventilation/M
+ventilator/SM
+ventilatory
+ventral
+ventricle/SM
+ventricular
+ventriloquism/M
+ventriloquist/SM
+ventriloquy/M
+venture/DSMG
+venturesome/PY
+venturesomeness/M
+venturous/PY
+venturousness/M
+venue/ASM
+veracious/Y
+veracity/M
+verandah/M
+verandahs
+verapamil
+verb/KMS
+verbal/MYS
+verbalisation/M
+verbalise/GDS
+verbatim
+verbena/SM
+verbiage/MS
+verbose/Y
+verbosity/M
+verboten
+verdant/Y
+verdict/SM
+verdigris/GMDS
+verdure/M
+verge's
+verge/FDSG
+verger/MS
+verifiable/U
+verification/M
+verified/U
+verify/DSNG
+verily
+verisimilitude/M
+veritable
+veritably
+verity/SM
+vermicelli/M
+vermiculite/M
+vermiform
+vermilion/M
+vermin/M
+verminous
+vermouth/M
+vernacular/MS
+vernal
+vernier/SM
+veronica/M
+verruca/SM
+verrucae
+versa
+versatile
+versatility/M
+verse/AFNGMSDX
+versed/U
+versification/M
+versifier/M
+versify/ZGNDRS
+version/AFIMS
+versioned
+versioning
+verso/SM
+versus
+vert/A
+vertebra/M
+vertebrae
+vertebral
+vertebrate/IMS
+vertex/MS
+vertical/MYS
+vertices
+vertiginous
+vertigo/M
+verve/M
+very/RT
+vesicle/SM
+vesicular
+vesiculate
+vesper/MS
+vessel/MS
+vest's
+vest/ILDGS
+vestal/MS
+vestibule/MS
+vestige/SM
+vestigial/Y
+vesting/M
+vestment/IMS
+vestry/SM
+vestryman/M
+vestrymen
+vet/SM
+vetch/MS
+veteran/SM
+veterinarian/MS
+veterinary/SM
+veto/MDG
+vetoes
+vetted
+vetting
+vex/GDS
+vexation/SM
+vexatious/Y
+vhf
+vi
+via
+viability/M
+viable
+viably
+viaduct/SM
+vial/MS
+viand/SM
+vibe/MS
+vibes/M
+vibraharp/SM
+vibrancy/M
+vibrant/Y
+vibraphone/MS
+vibraphonist/MS
+vibrate/GNDSX
+vibration/M
+vibrato/MS
+vibrator/SM
+vibratory
+viburnum/SM
+vicar/SM
+vicarage/SM
+vicarious/YP
+vicariousness/M
+vice/CMS
+viced
+vicegerent/SM
+vicennial
+viceregal
+viceroy/MS
+vichyssoise/M
+vicing
+vicinity/M
+vicious/YP
+viciousness/M
+vicissitude/SM
+victim/MS
+victimisation/M
+victimise/GDS
+victimless
+victor/MS
+victorious/Y
+victory/SM
+victual/SM
+victualled
+victualling
+vicuna/MS
+videlicet
+video/GSMD
+videocassette/SM
+videoconferencing
+videodisc/MS
+videophone/MS
+videotape/DSMG
+videotex
+vie/DS
+view/AMDRSZG
+viewable
+viewer/AM
+viewership/M
+viewfinder/SM
+viewing/SM
+viewpoint/MS
+vigesimal
+vigil/SM
+vigilance/M
+vigilant/Y
+vigilante/SM
+vigilantism/M
+vigilantist/M
+vignette/DSMG
+vignettist/MS
+vigorous/Y
+vigour/M
+vii
+viii
+viking/MS
+vile/YTPR
+vileness/M
+vilification/M
+vilify/DSNG
+villa/SM
+village/RSMZ
+villager/M
+villain/SM
+villainous
+villainy/SM
+villein/SM
+villeinage/M
+villi
+villus/M
+vim/M
+vinaigrette/M
+vincible/I
+vindicate/XDSGN
+vindication/M
+vindicator/MS
+vindictive/PY
+vindictiveness/M
+vine/MS
+vinegar/M
+vinegary
+vineyard/MS
+vino/M
+vinous
+vintage/MS
+vintner/MS
+vinyl/SM
+viol/MBS
+viola/SM
+violable/I
+violate/GNDSX
+violation/M
+violator/SM
+violence/M
+violent/Y
+violet/MS
+violin/MS
+violincello/S
+violinist/SM
+violist/MS
+violoncellist/SM
+violoncello/MS
+viper/SM
+viperous
+virago/M
+viragoes
+viral
+vireo/SM
+virgin/MS
+virginal/SM
+virginity/M
+virgule/MS
+virile
+virility/M
+virologist/SM
+virology/M
+virtual/Y
+virtualisation
+virtue/SM
+virtuosity/M
+virtuoso/M
+virtuous/YP
+virtuousness/M
+virulence/M
+virulent/Y
+virus/MS
+visa/MDSG
+visage/MS
+viscera
+visceral/Y
+viscid
+viscose/M
+viscosity/M
+viscount/SM
+viscountcy/SM
+viscountess/MS
+viscous
+viscus/M
+vise/ACMGDS
+visibility/IM
+visible/I
+visibly/I
+vision/KGDSM
+visionary/SM
+visit's
+visit/ASGD
+visitant/MS
+visitation/MS
+visitor/MS
+visor/SM
+vista/SM
+visual/SMY
+visualisation/SM
+visualise/DRSZG
+visualiser/M
+vita/M
+vitae
+vital/SY
+vitalisation/AM
+vitalise/CAGSD
+vitality/M
+vitals/M
+vitamin/MS
+vitiate/GNDS
+vitiation/M
+viticulture/M
+viticulturist/MS
+vitreous
+vitrifaction/M
+vitrification/M
+vitrify/GNDS
+vitrine/SM
+vitriol/M
+vitriolic
+vitriolically
+vittles/M
+vituperate/GNVDS
+vituperation/M
+viva/MS
+vivace
+vivacious/PY
+vivaciousness/M
+vivacity/M
+vivaria
+vivarium/SM
+vivid/RYTP
+vividness/M
+vivify/ADSG
+viviparous
+vivisect/DGS
+vivisection/M
+vivisectional
+vivisectionist/SM
+vixen/SM
+vixenish/Y
+viz
+vizier/SM
+vlf
+vocab
+vocable/MS
+vocabulary/SM
+vocal/SMY
+vocalic
+vocalisation/SM
+vocalise/DSG
+vocalist/SM
+vocation/FIKASM
+vocational/Y
+vocative/MS
+vociferate/DSGN
+vociferation/M
+vociferous/YP
+vociferousness/M
+vodka/SM
+vogue/SM
+voguish
+voice/IDSMG
+voiced/U
+voiceless/PY
+voicelessness/M
+voicemail/SM
+void/MDSGB
+voila
+voile/M
+vol/S
+volatile
+volatilise/DSG
+volatility/M
+volcanic
+volcanism
+volcano/M
+volcanoes
+vole/MS
+volition/M
+volitional
+volley/GSMD
+volleyball/MS
+volt/AMS
+voltage/MS
+voltaic
+voltmeter/SM
+volubility/M
+voluble
+volubly
+volume/SM
+volumetric
+voluminous/YP
+voluminousness/M
+voluntarily/I
+voluntarism/M
+voluntary/SM
+volunteer/SGMD
+volunteerism/M
+voluptuary/SM
+voluptuous/PY
+voluptuousness/M
+volute/SM
+vomit/SMDG
+voodoo/GSMD
+voodooism/M
+voracious/PY
+voraciousness/M
+voracity/M
+vortex/MS
+votary/SM
+vote's
+vote/CGVDS
+voter/SM
+vouch/DRSZG
+voucher/M
+vouchsafe/DSG
+vow/SGMD
+vowel/SM
+voyage/MZGDRS
+voyager/M
+voyageur/SM
+voyeur/MS
+voyeurism/M
+voyeuristic
+vulcanisation/M
+vulcanise/GDS
+vulgar/RYT
+vulgarian/MS
+vulgarisation/M
+vulgarise/ZGDRS
+vulgariser/M
+vulgarism/MS
+vulgarity/SM
+vulnerabilities
+vulnerability/IM
+vulnerable/I
+vulnerably/I
+vulpine
+vulture/SM
+vulturous
+vulva/M
+vulvae
+vuvuzela/MS
+vying
+w/DNXTGVJ
+wabbit/S
+wack/MRTS
+wackiness/M
+wacko/SM
+wacky/RPT
+wad/SZGMDR
+wadded
+wadding/M
+waddle/DSMG
+wade/MS
+wader/M
+waders/M
+wadge/S
+wadi/MS
+wafer/SM
+waffle/MZGDRS
+waffler/M
+waft/MDGS
+wag/SZGMDR
+wage/MS
+waged/U
+wager/ZGMDR
+wagerer/M
+wagged
+waggery/SM
+wagging
+waggish/YP
+waggishness/M
+waggle/MGDS
+wagon/ZSMR
+wagoner/M
+wagtail/SM
+waif/MS
+wail/MDRZGS
+wailer/M
+wailing/M
+wain/MS
+wainscot/SJMDG
+wainscoting/M
+wainwright/MS
+waist/SM
+waistband/MS
+waistcoat/MS
+waistline/MS
+wait/MDRZGS
+waiter/M
+waiting/M
+waitperson/MS
+waitress/MS
+waitstaff/M
+waive/DRSZG
+waiver/M
+wake/MGJDS
+wakeful/PY
+wakefulness/M
+waken/GSD
+waldo/S
+waldoes
+wale/MGDS
+walk/MDRZGS
+walkabout/S
+walkaway/MS
+walker/M
+walkies
+walking/M
+walkout/SM
+walkover/MS
+walkway/SM
+wall/MDGS
+wallaby/SM
+wallah
+wallahs
+wallboard/M
+wallet/MS
+walleye/DSM
+wallflower/MS
+wallop/MDSJG
+walloping/M
+wallow/MDSG
+wallpaper/SMDG
+wally/S
+walnut/MS
+walrus/MS
+waltz/ZGMDRS
+waltzer/M
+wampum/M
+wan/GPDY
+wand/MS
+wander/DRSJZG
+wanderer/M
+wanderings/M
+wanderlust/SM
+wane/MS
+wangle/MZGDRS
+wangler/M
+wank/DRZGS
+wanna
+wannabe/SM
+wannabee/S
+wanner
+wanness/M
+wannest
+want/MDGS
+wanted/U
+wanton/MDYSPG
+wantonness/M
+wapiti/MS
+war/SM
+warble/MZGDRS
+warbler/M
+warbonnet/SM
+ward/AMDGS
+warden/MS
+warder/MS
+wardress/S
+wardrobe/SM
+wardroom/SM
+ware/MS
+warehouse/DSMG
+warez
+warfare/M
+warfarin
+warhead/MS
+warhorse/SM
+warily/U
+wariness/UM
+warlike
+warlock/MS
+warlord/MS
+warm/PDRYHZTGS
+warmblooded
+warmer/M
+warmhearted/P
+warmheartedness/M
+warmish
+warmness/M
+warmonger/SMG
+warmongering/M
+warmth/M
+warn/JDGS
+warning/M
+warp/MDGS
+warpaint
+warpath/M
+warpaths
+warplane/MS
+warrant/GMDS
+warranted/U
+warranty/DSMG
+warred
+warren/MS
+warring
+warrior/SM
+warship/SM
+wart/MS
+warthog/SM
+wartime/M
+warty/TR
+wary/UPRT
+was
+wasabi
+wash/BJMDRSZG
+washable/SM
+washbasin/SM
+washboard/SM
+washbowl/SM
+washcloth/M
+washcloths
+washed/U
+washer/M
+washerwoman/M
+washerwomen
+washing/M
+washout/MS
+washrag/MS
+washroom/MS
+washstand/SM
+washtub/MS
+washy/TR
+wasn't
+wasp/MS
+waspish/YP
+waspishness/M
+wassail/SMDG
+wast
+wastage/M
+waste/DRSMZG
+wastebasket/MS
+wasteful/PY
+wastefulness/M
+wasteland/SM
+wastepaper/M
+waster/M
+wastewater
+wastrel/SM
+watch/BZGMDRS
+watchable/U
+watchband/MS
+watchdog/SM
+watcher/M
+watchful/YP
+watchfulness/M
+watchmaker/MS
+watchmaking/M
+watchman/M
+watchmen
+watchstrap/S
+watchtower/SM
+watchword/MS
+water/GSMD
+waterbed/MS
+waterbird/SM
+waterboard/MDJSG
+waterboarding/M
+waterborne
+watercolour/MS
+watercourse/SM
+watercraft/M
+watercress/M
+waterfall/SM
+waterfowl/SM
+waterfront/MS
+waterhole/SM
+wateriness/M
+waterlily/SM
+waterline/MS
+waterlogged
+watermark/MDGS
+watermelon/SM
+watermill/MS
+waterproof/SMDG
+waterproofing/M
+waters/M
+watershed/MS
+waterside/MS
+waterspout/SM
+watertight
+waterway/MS
+waterwheel/SM
+waterworks/M
+watery/PTR
+watt/MS
+wattage/M
+wattle/MGDS
+wave/MZGDRS
+waveband/S
+waveform
+wavefront
+wavelength/M
+wavelengths
+wavelet/SM
+wavelike
+waver/ZGMDR
+waverer/M
+wavering/Y
+waviness/M
+wavy/PRT
+wax/GMDNS
+waxiness/M
+waxwing/SM
+waxwork/SM
+waxy/RPT
+way/SM
+waybill/SM
+wayfarer/MS
+wayfaring/SM
+waylaid
+waylay/RSZG
+waylayer/M
+wayside/SM
+wayward/PY
+waywardness/M
+wazoo/S
+we
+we'd
+we'll
+we're
+we've
+weak/PNRYXT
+weaken/DRZG
+weakener/M
+weakfish/MS
+weakish
+weakling/SM
+weakness/MS
+weal/MHS
+wealth/M
+wealthiness/M
+wealthy/TRP
+wean/DGS
+weapon/MS
+weaponize/GDS
+weaponless
+weaponry/M
+wear/MRBJSZG
+wearable/U
+wearer/M
+wearied/U
+wearily
+weariness/M
+wearisome/Y
+weary/TGDRSP
+weasel/MYS
+weaselled
+weaselling
+weather/SMDG
+weatherboard/SG
+weathercock/MS
+weathering/M
+weatherise/DSG
+weatherization/M
+weatherman/M
+weathermen
+weatherperson/MS
+weatherproof/GSD
+weatherstrip/S
+weatherstripped
+weatherstripping/M
+weave/DRSMZG
+weaver/M
+weaving/M
+web/SM
+webbed
+webbing/M
+webcam/MS
+webcast/SMG
+webfeet
+webfoot/M
+webinar/SM
+webisode/MS
+weblog/MS
+webmaster/SM
+webmistress/MS
+website/SM
+wed/AS
+wedded/A
+wedder
+wedding/SM
+wedge/DSMG
+wedgie/MS
+wedlock/M
+wee/RSMT
+weed/MDRSZG
+weeder/M
+weedkiller/S
+weedless
+weedy/TR
+weeing
+week/MYS
+weekday/SM
+weekend/SZGMDR
+weekly/SM
+weeknight/SM
+ween/DSG
+weenie/MTRS
+weensy/RT
+weeny
+weep/MRJSZG
+weeper/M
+weepie
+weepy/TRSM
+weevil/MS
+weft/MS
+weigh's
+weigh/AGD
+weighbridge/S
+weighs/A
+weight/MDSJG
+weighted/U
+weightily
+weightiness/M
+weightless/YP
+weightlessness/M
+weightlifter/MS
+weightlifting/M
+weighty/PTR
+weir/MS
+weird/PTRY
+weirdie/MS
+weirdness/M
+weirdo/MS
+welcome/MGDS
+weld/MDRBSZG
+welder/M
+welfare/M
+welkin/M
+well/MDPSG
+wellhead/SM
+wellie
+wellington/MS
+wellness/M
+wellspring/MS
+welly/S
+welsh/ZGDRS
+welsher/M
+welt/MDRSZG
+welter/GMD
+welterweight/SM
+wen/M
+wench/MS
+wend/DSG
+went
+wept
+were
+weren't
+werewolf/M
+werewolves
+west/M
+westbound
+westerly/SM
+western/SZMR
+westerner/M
+westernisation/M
+westernise/GDS
+westernmost
+westie/SM
+westward/S
+wet/SMYP
+wetback/SM
+wetland/SM
+wetness/M
+wetter/SM
+wettest
+wetting
+wetware/S
+whack/SJZGMDR
+whacker/M
+whacko
+whale/DRSMZG
+whaleboat/MS
+whalebone/M
+whaler/M
+whaling/M
+wham/MS
+whammed
+whamming
+whammy/SM
+wharf/M
+wharves
+what/MS
+whatchamacallit/MS
+whatever
+whatnot/M
+whatshername
+whatshisname
+whatsit/S
+whatsoever
+wheal/SM
+wheat/MN
+wheatgerm
+wheatmeal
+whee
+wheedle/DRSZG
+wheedler/M
+wheel/SMDRG
+wheelbarrow/SM
+wheelbase/SM
+wheelchair/SM
+wheelhouse/MS
+wheelie/SM
+wheelwright/MS
+wheeze/DSMG
+wheezily
+wheeziness/M
+wheezy/PRT
+whelk/SMD
+whelm/SDG
+whelp/SMDG
+when/MS
+whence
+whenever
+whensoever
+where/SM
+whereabouts/M
+whereas
+whereat
+whereby
+wherefore/MS
+wherein
+whereof
+whereon
+wheresoever
+whereto
+whereupon
+wherever
+wherewith
+wherewithal/M
+wherry/SM
+whet/S
+whether
+whetstone/SM
+whetted
+whetting
+whew
+whey/M
+which
+whichever
+whiff/SMDG
+whiffletree/MS
+while/DSMG
+whilom
+whilst
+whim/MS
+whimper/MDGS
+whimsical/Y
+whimsicality/M
+whimsy/SM
+whine/DRSMZG
+whiner/M
+whinge/DRSZG
+whingeing
+whinny/GDSM
+whiny/RT
+whip/MS
+whipcord/M
+whiplash/MS
+whipped
+whipper/MS
+whippersnapper/MS
+whippet/MS
+whipping/SM
+whippletree/SM
+whippoorwill/MS
+whipsaw/MDGS
+whirl/SMDG
+whirligig/MS
+whirlpool/MS
+whirlwind/MS
+whirlybird/SM
+whirr/SMDG
+whisk/SMDRZG
+whisker/MD
+whiskery
+whisky/SM
+whiskys
+whisper/MDRSZG
+whisperer/M
+whist/M
+whistle/MZGDRS
+whistler/M
+whit/MDNRSXTGJ
+white/SPM
+whitebait
+whiteboard/S
+whitecap/SM
+whitefish/MS
+whitehead/MS
+whitelist/GDS
+whiten/ZGDRJ
+whitener/M
+whiteness/M
+whitening/M
+whiteout/SM
+whitetail/MS
+whitewall/SM
+whitewash/MDSG
+whitewater/M
+whitey/SM
+whither
+whiting/M
+whitish
+whittle/ZGDRS
+whittler/M
+whizkid/M
+whizz/MDSG
+whizzbang/MS
+who'd
+who'll
+who're
+who've
+who/M
+whoa
+whodunit/MS
+whoever
+whole/SMP
+wholefood/S
+wholegrain
+wholehearted/YP
+wholeheartedness/M
+wholemeal
+wholeness/M
+wholesale/MZGDRS
+wholesaler/M
+wholesome/UP
+wholesomely
+wholesomeness/UM
+wholewheat
+wholly
+whom
+whomever
+whomsoever
+whoop/SMDRZG
+whoopee/S
+whooper/M
+whoosh/MDSG
+whop/S
+whopped
+whopper/SM
+whopping
+whore/SMG
+whorehouse/MS
+whoreish
+whorish
+whorl/SMD
+whose
+whoso
+whosoever
+whup/S
+whupped
+whupping
+why'd
+why/M
+whys
+wick/MDRSZ
+wicked/TPRY
+wickedness/M
+wicker/M
+wickerwork/M
+wicket/SM
+wide/YTRP
+widemouthed
+widen/SDRZG
+widener/M
+wideness/M
+widescreen/MS
+widespread
+widget/S
+widow/SMDRZG
+widower/M
+widowhood/M
+width/M
+widths
+wield/SDRZG
+wielder/M
+wiener/SM
+wienie/SM
+wife/MY
+wifeless
+wig/SM
+wigeon/M
+wigged
+wigging
+wiggle/DRSMZG
+wiggler/M
+wiggly/TR
+wight/SM
+wiglet/SM
+wigwag/SM
+wigwagged
+wigwagging
+wigwam/SM
+wiki/MS
+wild/MRYSTP
+wildcard/MS
+wildcat/MS
+wildcatted
+wildcatter/MS
+wildcatting
+wildebeest/MS
+wilderness/MS
+wildfire/MS
+wildflower/SM
+wildfowl/M
+wildlife/M
+wildness/M
+wilds/M
+wile/MGDS
+wilful/PY
+wilfulness/M
+wiliness/M
+will/MDS
+willies/M
+willing/UPY
+willingness/UM
+williwaw/MS
+willow/SM
+willowy
+willpower/M
+willy/S
+wilt/MDSG
+wily/RTP
+wimp/MDSG
+wimpish
+wimple/DSMG
+wimpy/RT
+win/SGMD
+wince/DSMG
+winch/MDSG
+wind's
+wind/UASG
+windbag/SM
+windblown
+windbreak/SZMR
+windbreaker/M
+windburn/MD
+windcheater/S
+windchill/M
+winded
+winder/SM
+windfall/MS
+windflower/MS
+windily
+windiness/M
+winding's
+windjammer/SM
+windlass/MS
+windless
+windmill/MDGS
+window/SMDG
+windowless
+windowpane/SM
+windowsill/SM
+windpipe/MS
+windproof
+windrow/SM
+windscreen/SM
+windshield/SM
+windsock/MS
+windstorm/MS
+windsurf/ZGDRS
+windsurfer/M
+windsurfing/M
+windswept
+windup/SM
+windward/M
+windy/RTP
+wine/MS
+wineglass/MS
+winegrower/MS
+winemaker/MS
+winery/SM
+wing/MDRZG
+wingding/MS
+wingless
+winglike
+wingnut/SM
+wingspan/MS
+wingspread/SM
+wingtip/SM
+wink/MDRSZG
+winker/M
+winkle/DSMG
+winnable/U
+winner/SM
+winning/MYS
+winnow/ZGSDR
+winnower/M
+wino/MS
+winsome/YTRP
+winsomeness/M
+winter/GSMD
+wintergreen/M
+winterise/GDS
+wintertime/M
+wintry/TR
+winy/RT
+wipe/MZGDRS
+wiper/M
+wire's
+wire/AGDS
+wired/S
+wirehair/MS
+wireless/MS
+wiretap/MS
+wiretapped
+wiretapper/SM
+wiretapping/M
+wiriness/M
+wiring/M
+wiry/RTP
+wisdom/M
+wise/MYTGDRS
+wiseacre/SM
+wisecrack/MDSG
+wiseguy/S
+wish/MDRSZG
+wishbone/SM
+wisher/M
+wishful/Y
+wishlist's
+wisp/MS
+wispy/RT
+wist
+wisteria/SM
+wistful/YP
+wistfulness/M
+wit/SM
+witch/MDSG
+witchcraft/M
+witchery/M
+witchetty
+with
+withal
+withdraw/SG
+withdrawal/MS
+withdrawn
+withdrew
+withe/DRSMZG
+wither/JGD
+withering/Y
+withers/M
+withheld
+withhold/SG
+withholding/M
+within/M
+without
+withstand/GS
+withstood
+witless/PY
+witlessness/M
+witness/MDSG
+wits/M
+witted
+witter/SGD
+witticism/SM
+wittily
+wittiness/M
+witting/UY
+witty/RPT
+wive/GDS
+wiz
+wizard/SMY
+wizardry/M
+wizened
+wk/Y
+woad/M
+wobbegong/MS
+wobble/MGDS
+wobbliness/M
+wobbly/RTP
+wodge/S
+woe/SM
+woebegone
+woeful/YP
+woefuller
+woefullest
+woefulness/M
+wog/S
+wok/SMN
+woke
+wold/MS
+wolf/MDSG
+wolfhound/SM
+wolfish
+wolfram/M
+wolverine/SM
+wolves
+woman/M
+womanhood/M
+womanise/DRSZG
+womaniser/M
+womanish
+womankind/M
+womanlike/M
+womanliness/M
+womanly/RPT
+womb/MS
+wombat/MS
+womble/S
+women/M
+womenfolk/SM
+womenfolks/M
+won't
+won/M
+wonder/MDGLS
+wonderful/YP
+wonderfulness/M
+wondering/Y
+wonderland/MS
+wonderment/M
+wondrous/Y
+wonk/MS
+wonky/TR
+wont/MD
+wonted/U
+woo/SZGDR
+wood/MDNSG
+woodbine/M
+woodblock/MS
+woodcarver/MS
+woodcarving/SM
+woodchuck/MS
+woodcock/SM
+woodcraft/M
+woodcut/SM
+woodcutter/SM
+woodcutting/M
+wooden/RYTP
+woodenness/M
+woodiness/M
+woodland/SM
+woodlice
+woodlot/SM
+woodlouse
+woodman/M
+woodmen
+woodpecker/MS
+woodpile/SM
+woods/M
+woodshed/SM
+woodsiness/M
+woodsman/M
+woodsmen
+woodsy/RTP
+woodwind/MS
+woodwork/MRZG
+woodworker/M
+woodworking/M
+woodworm/S
+woody/TPRSM
+wooer/M
+woof/MDRSZG
+woofer/M
+wool/M
+woolgathering/M
+wooliness
+woollen/SM
+woolliness/M
+woolly/RSMPT
+woomera/SM
+woop
+woozily
+wooziness/M
+woozy/TRP
+wop/S!
+word's
+word/ADSG
+wordage/M
+wordbook/SM
+wordily
+wordiness/M
+wording/SM
+wordless/Y
+wordplay/M
+wordsmith
+wordsmiths
+wordy/TPR
+wore
+work's
+work/ADJSG
+workable/U
+workaday
+workaholic/SM
+workaround/S
+workbasket/S
+workbench/MS
+workbook/MS
+workday/SM
+worker/MS
+workfare/M
+workflow/MS
+workforce/M
+workhorse/SM
+workhouse/SM
+working's
+workingman/M
+workingmen
+workings/M
+workingwoman/M
+workingwomen
+workload/MS
+workman/M
+workmanlike
+workmanship/M
+workmate/S
+workmen
+workout/SM
+workplace/MS
+workroom/MS
+works/M
+worksheet/MS
+workshop/MS
+workshy
+worksite/S
+workspace
+workstation/MS
+worktable/MS
+worktop/S
+workup/MS
+workweek/SM
+world/SM
+worldlier
+worldliness/UM
+worldly/UTP
+worldview/SM
+worldwide
+worm/MDSG
+wormhole/MS
+wormwood/M
+wormy/TR
+worn/U
+worried/Y
+worrier/M
+worriment/M
+worrisome
+worry/ZGDRSMJ
+worrying/Y
+worrywart/SM
+worse/M
+worsen/DSG
+worship/SM
+worshipful
+worshipped
+worshipper/MS
+worshipping
+worst/SGMD
+worsted/M
+wort/M
+worth/M
+worthies
+worthily/U
+worthiness/UM
+worthless/PY
+worthlessness/M
+worthwhile
+worthy's
+worthy/UPRT
+wot
+wotcha
+would've
+would/S
+wouldn't
+wouldst
+wound/SGMDR
+wove/A
+woven/AU
+wow/SGMD
+wowser/MS
+wowserism
+wowseristic
+wowsery
+wpm
+wrack/GSMD
+wraith/M
+wraiths
+wrangle/DRSMZGJ
+wrangler/M
+wrap's
+wrap/US
+wraparound/SM
+wrapped/U
+wrapper/SM
+wrapping/MS
+wrasse/MS
+wrath/M
+wrathful/Y
+wreak/SGD
+wreath/MDSG
+wreathe
+wreaths
+wreck/SZGMDR
+wreckage/M
+wrecker/M
+wren/MS
+wrench/MDSG
+wrest/SGMD
+wrestle/MZGDRS
+wrestler/M
+wrestling/M
+wretch/MS
+wretched/TPRY
+wretchedness/M
+wriggle/MZGDRS
+wriggler/M
+wriggly
+wright/MS
+wring/SZGMR
+wringer/M
+wrinkle/MGDS
+wrinkled/U
+wrinkly/TRSM
+wrist/SM
+wristband/MS
+wristwatch/MS
+writ/MRBJSZG
+write/S
+writer/M
+writhe/MGDS
+writing/M
+written/AU
+wrong/STGMPDRY
+wrongdoer/SM
+wrongdoing/SM
+wrongful/PY
+wrongfulness/M
+wrongheaded/YP
+wrongheadedness/M
+wrongness/M
+wrote/A
+wroth
+wrought
+wrung
+wry/Y
+wryer
+wryest
+wryness/M
+wt
+wunderkind/S
+wurst/SM
+wuss/MS
+wussy/RSMT
+x
+xci
+xcii
+xciv
+xcix
+xcvi
+xcvii
+xenon/M
+xenophobe/MS
+xenophobia/M
+xenophobic
+xerographic
+xerography/M
+xerox/MDSG
+xi/SM
+xii
+xiii
+xiv
+xix
+xor
+xref/S
+xterm/M
+xv
+xvi
+xvii
+xviii
+xx
+xxi
+xxii
+xxiii
+xxiv
+xxix
+xxv
+xxvi
+xxvii
+xxviii
+xxx
+xxxi
+xxxii
+xxxiii
+xxxiv
+xxxix
+xxxv
+xxxvi
+xxxvii
+xxxviii
+xylem/M
+xylene
+xylophone/SM
+xylophonist/MS
+y'all
+y/F
+ya
+yabber/SGMD
+yabbie/M
+yabby/DSMG
+yacht/SMDG
+yachting/M
+yachtsman/M
+yachtsmen
+yachtswoman/M
+yachtswomen
+yahoo/SM
+yak/SM
+yakka/M
+yakked
+yakking
+yam/SM
+yammer/SZGMDR
+yammerer/M
+yang/M
+yank/MDSG
+yap/SM
+yapped
+yapping
+yard/MS
+yardage/MS
+yardarm/MS
+yardman/M
+yardmaster/MS
+yardmen
+yardstick/MS
+yarmulke/SM
+yarn/MS
+yarrow/M
+yashmak/S
+yaw/SGMD
+yawl/MS
+yawn/MDRSZG
+yawner/M
+yaws/M
+yd
+ye/RST
+yea/SM
+yeah/M
+yeahs
+year/MYS
+yearbook/MS
+yearling/MS
+yearlong
+yearly/SM
+yearn/GSJD
+yearning/M
+yeast/SM
+yeasty/RT
+yegg/MS
+yell/MDSG
+yellow/MDRTGPS
+yellowhammer/S
+yellowish
+yellowness/M
+yellowy
+yelp/MDSG
+yen/SM
+yeoman/M
+yeomanry/M
+yeomen
+yep/SM
+yes/MS
+yeshiva/SM
+yessed
+yessing
+yesterday/MS
+yesteryear/M
+yet
+yeti/MS
+yew/SM
+yid/S
+yield/JSGMD
+yikes
+yin/M
+yip/SM
+yipe
+yipped
+yippee
+yipping
+yo
+yob/S
+yobbo/S
+yodel/SM
+yodelled
+yodeller/MS
+yodelling
+yoga/M
+yoghurt/MS
+yogi/MS
+yogic
+yoke's
+yoke/UGDS
+yokel/SM
+yolk/MDS
+yon
+yonder
+yonks
+yore/M
+you'd
+you'll
+you're
+you've
+you/SMH
+young/TMR
+youngish
+youngster/MS
+your/S
+yourself
+yourselves
+youse
+youth/M
+youthful/YP
+youthfulness/M
+youths
+yow
+yowl/MDSG
+yr/S
+ytterbium/M
+yttrium/M
+yuan/M
+yucca/SM
+yuck
+yucky/TR
+yuk/SM
+yukked
+yukking
+yukky
+yule/M
+yuletide/M
+yum
+yummy/TR
+yup/SM
+yuppie/MS
+yuppify/GDS
+yurt/MS
+z/DNXTGJ
+zac/SM
+zack/MS
+zaniness/M
+zany/RSMPT
+zap/SM
+zapped
+zapper/MS
+zapping
+zappy
+zeal/M
+zealot/MS
+zealotry/M
+zealous/YP
+zealousness/M
+zebra/SM
+zebu/MS
+zed/SM
+zeitgeist/SM
+zenith/M
+zeniths
+zenned
+zeolite/S
+zephyr/MS
+zeppelin/MS
+zero/MDHSG
+zeroes
+zest/MS
+zestful/YP
+zestfulness/M
+zesty/RT
+zeta/MS
+zigzag/SM
+zigzagged
+zigzagging
+zilch/M
+zillion/MS
+zinc/MS
+zincked
+zincking
+zine/S
+zinfandel/M
+zing/MDRZG
+zinger/M
+zingy/RT
+zinnia/MS
+zip's
+zip/US
+zipped/U
+zipper/MDGS
+zipping/U
+zippy/TR
+zircon/MS
+zirconium/M
+zit/SM
+zither/MS
+zloty/SM
+zlotys
+zodiac/MS
+zodiacal
+zombie/MS
+zonal/Y
+zone's
+zone/AGDS
+zoning/M
+zonked
+zoo/SM
+zookeeper/SM
+zoological/Y
+zoologist/SM
+zoology/M
+zoom/MDSG
+zoophyte/SM
+zoophytic
+zooplankton
+zorch
+zoster
+zounds
+zucchini/MS
+zwieback/M
+zydeco/M
+zygote/SM
+zygotic
+zymurgy/M
diff --git a/dictionaries/en/en_CA.aff b/dictionaries/en/en_CA.aff
new file mode 100644
index 0000000..d0cccb3
--- /dev/null
+++ b/dictionaries/en/en_CA.aff
@@ -0,0 +1,205 @@
+SET UTF-8
+TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ'
+ICONV 1
+ICONV ’ '
+NOSUGGEST !
+
+# ordinal numbers
+COMPOUNDMIN 1
+# only in compounds: 1th, 2th, 3th
+ONLYINCOMPOUND c
+# compound rules:
+# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.)
+# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.)
+COMPOUNDRULE 2
+COMPOUNDRULE n*1t
+COMPOUNDRULE n*mp
+WORDCHARS 0123456789
+
+PFX A Y 1
+PFX A 0 re .
+
+PFX I Y 1
+PFX I 0 in .
+
+PFX U Y 1
+PFX U 0 un .
+
+PFX C Y 1
+PFX C 0 de .
+
+PFX E Y 1
+PFX E 0 dis .
+
+PFX F Y 1
+PFX F 0 con .
+
+PFX K Y 1
+PFX K 0 pro .
+
+SFX V N 2
+SFX V e ive e
+SFX V 0 ive [^e]
+
+SFX N Y 3
+SFX N e ion e
+SFX N y ication y
+SFX N 0 en [^ey]
+
+SFX X Y 3
+SFX X e ions e
+SFX X y ications y
+SFX X 0 ens [^ey]
+
+SFX H N 2
+SFX H y ieth y
+SFX H 0 th [^y]
+
+SFX Y Y 1
+SFX Y 0 ly .
+
+SFX G Y 2
+SFX G e ing e
+SFX G 0 ing [^e]
+
+SFX J Y 2
+SFX J e ings e
+SFX J 0 ings [^e]
+
+SFX D Y 4
+SFX D 0 d e
+SFX D y ied [^aeiou]y
+SFX D 0 ed [^ey]
+SFX D 0 ed [aeiou]y
+
+SFX T N 4
+SFX T 0 st e
+SFX T y iest [^aeiou]y
+SFX T 0 est [aeiou]y
+SFX T 0 est [^ey]
+
+SFX R Y 4
+SFX R 0 r e
+SFX R y ier [^aeiou]y
+SFX R 0 er [aeiou]y
+SFX R 0 er [^ey]
+
+SFX Z Y 4
+SFX Z 0 rs e
+SFX Z y iers [^aeiou]y
+SFX Z 0 ers [aeiou]y
+SFX Z 0 ers [^ey]
+
+SFX S Y 4
+SFX S y ies [^aeiou]y
+SFX S 0 s [aeiou]y
+SFX S 0 es [sxzh]
+SFX S 0 s [^sxzhy]
+
+SFX P Y 3
+SFX P y iness [^aeiou]y
+SFX P 0 ness [aeiou]y
+SFX P 0 ness [^y]
+
+SFX M Y 1
+SFX M 0 's .
+
+SFX B Y 3
+SFX B 0 able [^aeiou]
+SFX B 0 able ee
+SFX B e able [^aeiou]e
+
+SFX L Y 1
+SFX L 0 ment .
+
+REP 90
+REP a ei
+REP ei a
+REP a ey
+REP ey a
+REP ai ie
+REP ie ai
+REP alot a_lot
+REP are air
+REP are ear
+REP are eir
+REP air are
+REP air ere
+REP ere air
+REP ere ear
+REP ere eir
+REP ear are
+REP ear air
+REP ear ere
+REP eir are
+REP eir ere
+REP ch te
+REP te ch
+REP ch ti
+REP ti ch
+REP ch tu
+REP tu ch
+REP ch s
+REP s ch
+REP ch k
+REP k ch
+REP f ph
+REP ph f
+REP gh f
+REP f gh
+REP i igh
+REP igh i
+REP i uy
+REP uy i
+REP i ee
+REP ee i
+REP j di
+REP di j
+REP j gg
+REP gg j
+REP j ge
+REP ge j
+REP s ti
+REP ti s
+REP s ci
+REP ci s
+REP k cc
+REP cc k
+REP k qu
+REP qu k
+REP kw qu
+REP o eau
+REP eau o
+REP o ew
+REP ew o
+REP oo ew
+REP ew oo
+REP ew ui
+REP ui ew
+REP oo ui
+REP ui oo
+REP ew u
+REP u ew
+REP oo u
+REP u oo
+REP u oe
+REP oe u
+REP u ieu
+REP ieu u
+REP ue ew
+REP ew ue
+REP uff ough
+REP oo ieu
+REP ieu oo
+REP ier ear
+REP ear ier
+REP ear air
+REP air ear
+REP w qu
+REP qu w
+REP z ss
+REP ss z
+REP shun tion
+REP shun sion
+REP shun cion
+REP size cise
diff --git a/dictionaries/en/en_CA.dic b/dictionaries/en/en_CA.dic
new file mode 100644
index 0000000..8399e7c
--- /dev/null
+++ b/dictionaries/en/en_CA.dic
@@ -0,0 +1,49564 @@
+49563
+0/nm
+0th/pt
+1/n1
+1st/p
+1th/tc
+2/nm
+2nd/p
+2th/tc
+3/nm
+3rd/p
+3th/tc
+4/nm
+4th/pt
+5/nm
+5th/pt
+6/nm
+6th/pt
+7/nm
+7th/pt
+8/nm
+8th/pt
+9/nm
+9th/pt
+A/SM
+AA/M
+AAA
+AB/M
+ABA
+ABC/SM
+ABM/SM
+ABS
+AC/M
+ACLU/M
+ACT
+ACTH/M
+AD/M
+ADC
+ADD
+ADM
+ADP/M
+AF
+AFAIK
+AFB
+AFC/M
+AFDC
+AFN
+AFT
+AI/SM
+AIDS/M
+AK
+AL
+AM/M
+AMA
+AMD/M
+ANSI/S
+ANZUS/M
+AOL/M
+AP/M
+APB
+APC
+API
+APO
+APR
+AR
+ARC
+ASAP
+ASCII/SM
+ASL/M
+ASPCA
+ATM/M
+ATP/M
+ATV
+AV
+AVI
+AWACS/M
+AWOL/M
+AWS/M
+AZ/M
+AZT/M
+Aachen/M
+Aaliyah/M
+Aaron/M
+Abbas/M
+Abbasid/M
+Abbott/M
+Abby/M
+Abdul/M
+Abe/M
+Abel/M
+Abelard/M
+Abelson/M
+Aberdeen/M
+Abernathy/M
+Abidjan/M
+Abigail/M
+Abilene/M
+Abner/M
+Aborigine/MS
+Abraham/M
+Abram/MS
+Abrams/M
+Absalom/M
+Abuja/M
+Abyssinia/M
+Abyssinian/M
+Ac/M
+Acadia/M
+Acapulco/M
+Accenture/M
+Accra/M
+Acevedo/M
+Achaean/M
+Achebe/M
+Achernar/M
+Acheson/M
+Achilles/M
+Aconcagua/M
+Acosta/M
+Acropolis
+Acrux/M
+Actaeon/M
+Acton/M
+Acts/M
+Acuff/M
+Ada/SM
+Adam/SM
+Adams/M
+Adan/M
+Adana/M
+Adar/M
+Addams/M
+Adderley/M
+Addie/M
+Addison/M
+Adela/M
+Adelaide/M
+Adele/M
+Adeline/M
+Aden/M
+Adenauer/M
+Adhara/M
+Adidas/M
+Adirondack/SM
+Adirondacks/M
+Adkins/M
+Adler/M
+Adm
+Admiralty
+Adolf/M
+Adolfo/M
+Adolph/M
+Adonis/MS
+Adrenalin/MS
+Adrian/M
+Adriana/M
+Adriatic/M
+Adrienne/M
+Advent/MS
+Adventist/MS
+Advil/M
+Aegean/M
+Aelfric/M
+Aeneas/M
+Aeneid/M
+Aeolus/M
+Aeroflot/M
+Aeschylus/M
+Aesculapius/M
+Aesop/M
+Afghan/SM
+Afghani/M
+Afghanistan/M
+Afr
+Africa/M
+African/SM
+Afrikaans/M
+Afrikaner/SM
+Afro/SM
+Afrocentric
+Afrocentrism/M
+Ag/M
+Agamemnon/M
+Agana
+Agassi/M
+Agassiz/M
+Agatha/M
+Aggie/M
+Aglaia/M
+Agnes/M
+Agnew/M
+Agni/M
+Agra/M
+Agricola/M
+Agrippa/M
+Agrippina/M
+Aguascalientes
+Aguilar/M
+Aguinaldo/M
+Aguirre/M
+Agustin/M
+Ahab/M
+Ahmad/M
+Ahmadabad/M
+Ahmadinejad/M
+Ahmed/M
+Ahriman/M
+Aida/M
+Aiken/M
+Aileen/M
+Aimee/M
+Ainu/M
+Airedale/MS
+Aires/M
+Aisha/M
+Ajax/M
+Akbar/M
+Akhmatova/M
+Akihito/M
+Akita/M
+Akiva/M
+Akkad/M
+Akron/M
+Al/M
+Ala/S
+Alabama/M
+Alabaman/MS
+Alabamian/SM
+Aladdin/M
+Alamo/M
+Alamogordo/M
+Alan/M
+Alana/M
+Alar/M
+Alaric/M
+Alaska/M
+Alaskan/MS
+Alba/M
+Albania/M
+Albanian/MS
+Albany/M
+Albee/M
+Alberio/M
+Albert/M
+Alberta/M
+Albertan
+Alberto/M
+Albigensian/M
+Albion/M
+Albireo/M
+Albuquerque/M
+Alcatraz/M
+Alcestis/M
+Alcibiades/M
+Alcindor/M
+Alcmena/M
+Alcoa/M
+Alcott/M
+Alcuin/M
+Alcyone/M
+Aldan/M
+Aldebaran/M
+Alden/M
+Alderamin/M
+Aldo/M
+Aldrin/M
+Alec/M
+Aleichem/M
+Alejandra/M
+Alejandro/M
+Alembert/M
+Aleppo/M
+Aleut/MS
+Aleutian/SM
+Alex/M
+Alexander/MS
+Alexandra/M
+Alexandria/M
+Alexandrian
+Alexei/M
+Alexis/M
+Alfonso/M
+Alfonzo/M
+Alford/M
+Alfred/M
+Alfreda/M
+Alfredo/M
+Algenib/M
+Alger/M
+Algeria/M
+Algerian/SM
+Algieba/M
+Algiers/M
+Algol/M
+Algonquian/SM
+Algonquin/MS
+Alhambra/M
+Alhena/M
+Ali/M
+Alice/M
+Alicia/M
+Alighieri/M
+Aline/M
+Alioth/M
+Alisa/M
+Alisha/M
+Alison/M
+Alissa/M
+Alistair/M
+Alkaid/M
+Allah/M
+Allahabad/M
+Allan/M
+Alleghenies/M
+Allegheny/SM
+Allegra/M
+Allen/M
+Allende/M
+Allentown/M
+Allhallows/M
+Allie/MS
+Allison/M
+Allstate/M
+Allyson/M
+Alma/M
+Almach/M
+Almaty/M
+Almighty/M
+Almohad/M
+Almoravid/M
+Alnilam/M
+Alnitak/M
+Alonzo/M
+Alpert/M
+Alphard/M
+Alphecca/M
+Alpheratz/M
+Alphonse/M
+Alphonso/M
+Alpine/M
+Alpo/M
+Alps/M
+Alsace/M
+Alsatian/SM
+Alsop/M
+Alston/M
+Alta/M
+Altaba/M
+Altai/M
+Altaic/M
+Altair/M
+Altamira/M
+Althea/M
+Altiplano/M
+Altman/M
+Altoids/M
+Alton/M
+Aludra/M
+Alva/M
+Alvarado/M
+Alvarez/M
+Alvaro/M
+Alvin/M
+Alyce/M
+Alyson/M
+Alyssa/M
+Alzheimer/M
+Am/MNR
+Amadeus/M
+Amado/M
+Amalia/M
+Amanda/M
+Amarillo/M
+Amaru/M
+Amaterasu/M
+Amati/M
+Amazon/SM
+Amazonian
+Amber/M
+Amelia/M
+Amen/M
+Amenhotep/M
+Amerasian/M
+America/SM
+American/MS
+Americana/M
+Americanism/MS
+Americanization/MS
+Americanize/GDS
+Amerind/SM
+Amerindian/MS
+Ameslan/M
+Amgen/M
+Amharic/M
+Amherst/M
+Amie/M
+Amiga/M
+Amish/M
+Amman/M
+Amoco/M
+Amos/M
+Amparo/M
+Ampere/M
+Amritsar/M
+Amsterdam/M
+Amtrak/M
+Amundsen/M
+Amur/M
+Amway/M
+Amy/M
+Ana/M
+Anabaptist/M
+Anabel/M
+Anacin/M
+Anacreon/M
+Anaheim/M
+Analects/M
+Ananias/M
+Anasazi/M
+Anastasia/M
+Anatole/M
+Anatolia/M
+Anatolian/M
+Anaxagoras/M
+Anchorage/M
+Andalusia/M
+Andalusian/M
+Andaman/M
+Andean/M
+Andersen/M
+Anderson/M
+Andes/M
+Andorra/M
+Andorran/SM
+Andre/MS
+Andrea/M
+Andrei/M
+Andres/M
+Andretti/M
+Andrew/SM
+Andrews/M
+Andrianampoinimerina/M
+Android/M
+Andromache/M
+Andromeda/M
+Andropov/M
+Andy/M
+Angara/M
+Angel/M
+Angela/M
+Angeles/M
+Angelia/M
+Angelica/M
+Angelico/M
+Angelina/M
+Angeline/M
+Angelique/M
+Angelita/M
+Angelo/M
+Angelou/M
+Angevin/M
+Angie/M
+Angkor/M
+Angle/MS
+Anglia/M
+Anglican/SM
+Anglicanism/MS
+Anglicism/MS
+Anglicization
+Anglicize
+Anglo/M
+Anglophile/M
+Anglophobe
+Angola/M
+Angolan/MS
+Angora/SM
+Angstrom/M
+Anguilla/M
+Angus/M
+Anhui/M
+Aniakchak/M
+Anibal/M
+Anita/M
+Ankara/M
+Ann/M
+Anna/M
+Annabel/M
+Annabelle/M
+Annam/M
+Annapolis/M
+Annapurna/M
+Anne/M
+Annette/M
+Annie/M
+Annmarie/M
+Annunciation/SM
+Anouilh/M
+Anselm/M
+Anselmo/M
+Anshan/M
+Antaeus/M
+Antananarivo/M
+Antarctic/M
+Antarctica/M
+Antares/M
+Anthony/M
+Anthropocene
+Antichrist/SM
+Antietam/M
+Antifa/M
+Antigone/M
+Antigua/M
+Antillean
+Antilles/M
+Antioch/M
+Antipas/M
+Antipodes
+Antofagasta/M
+Antoine/M
+Antoinette/M
+Anton/M
+Antone/M
+Antonia/M
+Antoninus/M
+Antonio/M
+Antonius/M
+Antony/M
+Antwan/M
+Antwerp/M
+Anubis/M
+Anzac/M
+Apache/SM
+Apalachicola/M
+Apatosaurus
+Apennines/M
+Aphrodite/M
+Apia/M
+Apocalypse/M
+Apocrypha/M
+Apollinaire/M
+Apollo/SM
+Apollonian/M
+Apostle/M
+Appalachia/M
+Appalachian/SM
+Appalachians/M
+Appaloosa/SM
+Apple/M
+Appleseed/M
+Appleton/M
+Appomattox/M
+Apr/M
+April/MS
+Apuleius/M
+Aquafresh/M
+Aquarian
+Aquarius/MS
+Aquila/M
+Aquinas/M
+Aquino/M
+Aquitaine/M
+Ar/M
+Ara/M
+Arab/SM
+Arabia/M
+Arabian/MS
+Arabic/M
+Arabist/MS
+Araby/M
+Araceli/M
+Arafat/M
+Aragon
+Araguaya/M
+Aral/M
+Aramaic/M
+Aramco/M
+Arapaho/MS
+Arapahoes
+Ararat/M
+Araucanian/M
+Arawak/M
+Arawakan/M
+Arbitron/M
+Arcadia/M
+Arcadian/M
+Archean/M
+Archibald/M
+Archie/M
+Archimedes/M
+Arctic/M
+Arcturus/M
+Ardabil
+Arden/M
+Arduino/M
+Arequipa/M
+Ares/M
+Argentina/M
+Argentine/M
+Argentinean
+Argentinian/MS
+Argo/SM
+Argonaut/MS
+Argonne/M
+Argos/M
+Argus/M
+Ariadne/M
+Arianism/M
+Ariel/M
+Aries/MS
+Ariosto/M
+Aristarchus/M
+Aristides/M
+Aristophanes/M
+Aristotelian/M
+Aristotle/M
+Arius/M
+Ariz
+Arizona/M
+Arizonan/SM
+Arizonian/MS
+Arjuna/M
+Ark/M
+Arkansan/MS
+Arkansas/M
+Arkhangelsk/M
+Arkwright/M
+Arlene/M
+Arline/M
+Arlington/M
+Armageddon/SM
+Armagnac/M
+Armand/M
+Armando/M
+Armani/M
+Armenia/M
+Armenian/SM
+Arminius/M
+Armonk/M
+Armour/M
+Armstrong/M
+Arneb/M
+Arnhem/M
+Arno/M
+Arnold/M
+Arnulfo/M
+Aron/M
+Arrhenius/M
+Arron/M
+Art/M
+Artaxerxes/M
+Artemis/M
+Arthur/M
+Arthurian/M
+Artie/M
+Arturo/M
+Aruba/M
+Aryan/MS
+As/M
+Asama/M
+Ascella/M
+Ascension/M
+Asgard/M
+Ashanti/M
+Ashcroft/M
+Ashe/M
+Ashgabat
+Ashikaga/M
+Ashkenazim/M
+Ashkhabad/M
+Ashlee/M
+Ashley/M
+Ashmolean/M
+Ashurbanipal/M
+Asia/M
+Asiago
+Asian/MS
+Asiatic/SM
+Asimov/M
+Asmara/M
+Asoka/M
+Aspell/M
+Aspen/M
+Asperger/M
+Aspidiske/M
+Asquith/M
+Assad/M
+Assam/M
+Assamese/M
+Assembly
+Assisi/M
+Assyria/M
+Assyrian/SM
+Astaire/M
+Astana/M
+Astarte/M
+Aston/M
+Astor/M
+Astoria/M
+Astrakhan/M
+AstroTurf/M
+Asturias/M
+Asuncion/M
+Aswan/M
+At/SM
+Atacama/M
+Atahualpa/M
+Atalanta/M
+Atari/M
+Ataturk/M
+Athabasca/M
+Athabaskan/SM
+Athanasius
+Athena/M
+Athene/M
+Athenian/SM
+Athens/M
+Atkins/M
+Atkinson/M
+Atlanta/M
+Atlantes
+Atlantic/M
+Atlantis/M
+Atlas/MS
+Atman/M
+Atonement
+Atreus/M
+Atria/M
+Atropos/M
+Attic/M
+Attica/M
+Attila/M
+Attlee/M
+Attn
+Attucks/M
+Atwood/M
+Au/M
+Aubrey/M
+Auckland/M
+Auden/M
+Audi/M
+Audion/M
+Audra/M
+Audrey/M
+Audubon/M
+Aug/M
+Augean/M
+Augsburg/M
+August/MS
+Augusta/M
+Augustan/M
+Augustine/M
+Augustinian/MS
+Augustus/M
+Aurangzeb/M
+Aurelia/M
+Aurelio/M
+Aurelius/M
+Aureomycin/M
+Auriga/M
+Aurora/M
+Auschwitz/M
+Aussie/MS
+Austen/M
+Austerlitz/M
+Austin/MS
+Australasia/M
+Australasian
+Australia/M
+Australian/SM
+Australoid/M
+Australopithecus/M
+Austria/M
+Austrian/SM
+Austronesian/M
+Autumn/M
+Av/M
+Ava/M
+Avalon/M
+Ave/M
+Aventine/M
+Avernus/M
+Averroes/M
+Avery/M
+Avesta/M
+Avicenna/M
+Avignon/M
+Avila/M
+Avior/M
+Avis/M
+Avogadro/M
+Avon/M
+Axis
+Axum/M
+Ayala/M
+Ayers/M
+Aymara/M
+Ayrshire/M
+Ayurveda/M
+Ayyubid/M
+Azana/M
+Azania/M
+Azazel/M
+Azerbaijan/M
+Azerbaijani/MS
+Azores/M
+Azov/M
+Aztec/SM
+Aztecan/M
+Aztlan/M
+B/MNT
+BA/M
+BASIC/SM
+BB/M
+BBB/M
+BBC/M
+BBQ
+BBS
+BBSes
+BC/M
+BFF
+BIA
+BIOS
+BITNET
+BLT/SM
+BM/M
+BMW/M
+BO
+BP/M
+BPOE
+BR
+BS/M
+BSA
+BSD/SM
+BTU
+BTW
+BYOB
+Ba/M
+Baal/SM
+Baath/M
+Baathist/M
+Babbage/M
+Babbitt/M
+Babel/MS
+Babylon/MS
+Babylonia/M
+Babylonian/SM
+Bacall/M
+Bacardi/M
+Bacchanalia/M
+Bacchic
+Bacchus/M
+Bach/M
+Backus/M
+Bacon/M
+Bactria/M
+Baden/M
+Badlands/M
+Baedeker/MS
+Baeria/M
+Baeyer/M
+Baez/M
+Baffin/M
+Baggies/M
+Baghdad/M
+Baguio/M
+Baha'i/M
+Baha'ullah/M
+Bahama/SM
+Bahamanian
+Bahamas/M
+Bahamian/MS
+Bahia/M
+Bahrain/M
+Baidu/M
+Baikal/M
+Bailey/M
+Baird/M
+Bakelite/M
+Baker/M
+Bakersfield/M
+Baku/M
+Bakunin/M
+Balanchine/M
+Balaton/M
+Balboa/M
+Balder/M
+Baldwin/SM
+Balearic/M
+Balfour/M
+Bali/M
+Balinese/M
+Balkan/MS
+Balkans/M
+Balkhash/M
+Ball/M
+Ballard/M
+Balthazar/M
+Baltic/M
+Baltimore/M
+Baluchistan/M
+Balzac/M
+Bamako/M
+Bambi/M
+Banach/M
+Bancroft/M
+Bandung/M
+Bangalore/M
+Bangkok/M
+Bangladesh/M
+Bangladeshi/SM
+Bangor/M
+Bangui/M
+Banjarmasin/M
+Banjul/M
+Banks/M
+Banneker/M
+Bannister/M
+Banting/M
+Bantu/MS
+Baotou/M
+Baptist/SM
+Baptiste/M
+Barabbas/M
+Barack/M
+Barbadian/SM
+Barbados/M
+Barbara/M
+Barbarella/M
+Barbarossa/M
+Barbary/M
+Barber/M
+Barbie/M
+Barbour/M
+Barbra/M
+Barbuda/M
+Barcelona/M
+Barclay/SM
+Barclays/M
+Bardeen/M
+Barents/M
+Barker/M
+Barkley/M
+Barlow/M
+Barnabas/M
+Barnaby/M
+Barnard/M
+Barnaul/M
+Barnes/M
+Barnett/M
+Barney/M
+Barnum/M
+Baroda/M
+Barquisimeto/M
+Barr/M
+Barranquilla/M
+Barrera/M
+Barrett/M
+Barrie/M
+Barron/M
+Barry/M
+Barrymore/M
+Bart/M
+Barth/MS
+Bartholdi/M
+Bartholomew/M
+Bartlett/M
+Bartok/M
+Barton/M
+Baruch/M
+Baryshnikov/M
+Basel/M
+Basho/M
+Basie/M
+Basil/M
+Basque/MS
+Basra/M
+Bass/M
+Basseterre/M
+Bastille/M
+Basutoland/M
+Bataan/M
+Bates/M
+Bathsheba/M
+Batista/M
+Batman/M
+Battle/M
+Batu/M
+Baudelaire/M
+Baudouin/M
+Baudrillard/M
+Bauer/M
+Bauhaus/M
+Baum/M
+Bavaria/M
+Bavarian/M
+Baxter/M
+Bayamon
+Bayer/M
+Bayes/M
+Bayesian/M
+Bayeux/M
+Baylor/M
+Bayonne/M
+Bayreuth/M
+Baywatch/M
+Be/MH
+Beach/M
+Beadle/M
+Bean/M
+Beard/M
+Beardmore/M
+Beardsley/M
+Bearnaise/M
+Beasley/M
+Beatlemania/M
+Beatles/M
+Beatrice/M
+Beatrix/M
+Beatriz/M
+Beatty/M
+Beau/M
+Beaufort/M
+Beaujolais/M
+Beaumarchais/M
+Beaumont/M
+Beauregard/M
+Beauvoir/M
+Bechtel/M
+Beck/MR
+Becker/M
+Becket/M
+Beckett/M
+Beckman
+Becky/M
+Becquerel/M
+Bede/M
+Bedouin/SM
+Beebe/M
+Beecher/M
+Beefaroni/M
+Beelzebub/M
+Beerbohm/M
+Beethoven/M
+Beeton/M
+Begin/M
+Behan/M
+Behring/M
+Beiderbecke/M
+Beijing/M
+Beirut/M
+Bekesy/M
+Bela/M
+Belarus/M
+Belarusian
+Belau/M
+Belem/M
+Belfast/M
+Belg
+Belgian/SM
+Belgium/M
+Belgrade/M
+Belinda/M
+Belize/M
+Bell/M
+Bella/M
+Bellamy/M
+Bellatrix/M
+Belleek/M
+Bellini/M
+Bellow/M
+Belmont/M
+Belmopan/M
+Belorussian/MS
+Belshazzar/M
+Beltane/M
+Belushi/M
+Ben/M
+Benacerraf/M
+Benchley/M
+Bender/M
+Bendictus
+Bendix/M
+Benedict/M
+Benedictine/MS
+Benelux/M
+Benet/M
+Benetton/M
+Bengal/SM
+Bengali/M
+Benghazi/M
+Benin/M
+Beninese/M
+Benita/M
+Benito/M
+Benjamin/M
+Bennett/M
+Bennie/M
+Benny/M
+Benson/M
+Bentham/M
+Bentley/M
+Benton/M
+Benz/M
+Benzedrine/M
+Beowulf/M
+Berber/SM
+Berenice/M
+Beretta/M
+Berg/MNR
+Bergen/M
+Berger/M
+Bergerac/M
+Bergman/M
+Bergson/M
+Bering/M
+Berkeley/M
+Berkshire/SM
+Berkshires/M
+Berle/M
+Berlin/SZMR
+Berliner/M
+Berlioz/M
+Berlitz/M
+Bermuda/SM
+Bermudan/SM
+Bermudian/SM
+Bern/M
+Bernadette/M
+Bernadine/M
+Bernanke/M
+Bernard/M
+Bernardo/M
+Bernays/M
+Bernbach/M
+Bernese
+Bernhardt/M
+Bernice/M
+Bernie/M
+Bernini/M
+Bernoulli/M
+Bernstein/M
+Berra/M
+Berry/M
+Bert/M
+Berta/M
+Bertelsmann/M
+Bertha/M
+Bertie/M
+Bertillon/M
+Bertram/M
+Bertrand/M
+Beryl/M
+Berzelius/M
+Bess/M
+Bessel/M
+Bessemer/M
+Bessie/M
+Best/M
+Betelgeuse/M
+Beth/M
+Bethany/M
+Bethe/M
+Bethesda/M
+Bethlehem/M
+Bethune/M
+Betsy/M
+Bette/M
+Bettie/M
+Betty/M
+Bettye/M
+Beulah/M
+Beveridge
+Beverley/M
+Beverly/M
+Bharat/M
+Bhopal/M
+Bhutan/M
+Bhutanese/M
+Bhutto/M
+Bi/M
+Bialystok/M
+Bianca/M
+Bib
+Bible/MS
+Bic/M
+Biddle/M
+Biden/M
+Bierce/M
+BigQuery/M
+Bigfoot/M
+Biggles/M
+Biko/M
+Bilbao/M
+Bilbo/M
+Bill/MJ
+Billie/M
+Billings/M
+Billy/M
+Bimini/M
+Biogen/M
+Bioko/M
+Bird/M
+Birdseye/M
+Birkenstock/M
+Birmingham/M
+Biro/M
+Biscay/M
+Biscayne/M
+Bishkek/M
+Bishop/M
+Bismarck/M
+Bismark/M
+Bisquick/M
+Bissau/M
+BitTorrent/M
+Bizet/M
+Bjerknes/M
+Bjork/M
+Bk/M
+BlackBerry/M
+Blackbeard/M
+Blackburn/M
+Blackfeet/M
+Blackfoot/M
+Blackpool/M
+Blackshirt/M
+Blackstone/M
+Blackwell/M
+Blaine/M
+Blair/M
+Blake/M
+Blanca/M
+Blanchard/M
+Blanche/M
+Blankenship/M
+Blantyre/M
+Blatz/M
+Blavatsky/M
+Blenheim/M
+Blevins/M
+Bligh/M
+Bloch/M
+Blockbuster/M
+Bloemfontein/M
+Blondel/M
+Blondie/M
+Bloom/MR
+Bloomer/M
+Bloomfield/M
+Bloomingdale/M
+Bloomsbury/M
+Blu
+Blucher/M
+Bluebeard/M
+Bluetooth/M
+Blvd
+Blythe/M
+Boadicea
+Boas/M
+Bob/M
+Bobbi/M
+Bobbie/M
+Bobbitt/M
+Bobby/M
+Boccaccio/M
+Bodhidharma/M
+Bodhisattva/M
+Bodleian
+Boeing/M
+Boeotia/M
+Boeotian/M
+Boer/SM
+Boethius/M
+Bogart/M
+Bogota/M
+Bohemia/M
+Bohemian/SM
+Bohr/M
+Boise/M
+Bojangles/M
+Boleyn/M
+Bolivar/M
+Bolivia/M
+Bolivian/MS
+Bollywood/M
+Bologna/M
+Bolshevik/SM
+Bolsheviki
+Bolshevism/M
+Bolshevist/M
+Bolshoi/M
+Bolton/M
+Boltzmann/M
+Bombay/M
+Bonaparte/M
+Bonaventure/M
+Bond/M
+Bonhoeffer/M
+Boniface/M
+Bonita/M
+Bonn/MR
+Bonner/M
+Bonneville/M
+Bonnie/M
+Bono/M
+Booker/M
+Boole/M
+Boolean/M
+Boone/M
+Bootes/M
+Booth/M
+Bordeaux/M
+Borden/M
+Bordon/M
+Boreas/M
+Borg/SM
+Borges/M
+Borgia/M
+Borglum/M
+Boris/M
+Bork/M
+Borlaug/M
+Born/M
+Borneo/M
+Borobudur/M
+Borodin/M
+Boru/M
+Bosch/M
+Bose/M
+Bosnia/M
+Bosnian
+Bosporus/M
+Boston/MS
+Bostonian/M
+Boswell/M
+Botha
+Botox
+Botswana/M
+Botticelli/M
+Boulder/M
+Boulez/M
+Bourbaki/M
+Bourbon/SM
+Bournemouth/M
+Bovary/M
+Bowditch/M
+Bowell/M
+Bowen/M
+Bowers/M
+Bowery/M
+Bowie/M
+Bowman/M
+Boyd/M
+Boyer/M
+Boyle/M
+Br/MT
+Brad/MY
+Bradbury/M
+Braddock/M
+Bradford/M
+Bradley/M
+Bradly/M
+Bradshaw/M
+Bradstreet/M
+Brady/M
+Bragg/M
+Brahe/M
+Brahma/MS
+Brahmagupta/M
+Brahman/MS
+Brahmani
+Brahmanism/SM
+Brahmaputra/M
+Brahms/M
+Braille/MS
+Brain/M
+Brampton/M
+Bran/M
+Branch/M
+Brandeis/M
+Branden/M
+Brandenburg/M
+Brandi/M
+Brandie/M
+Brando/M
+Brandon/M
+Brandt/M
+Brandy/M
+Brant/M
+Braque/M
+Brasilia/M
+Bratislava/M
+Brattain/M
+Bray/M
+Brazil/M
+Brazilian/MS
+Brazos/M
+Brazzaville/M
+Breakspear/M
+Breathalyzer
+Brecht/M
+Breckenridge/M
+Bremen/M
+Brenda/M
+Brendan/M
+Brennan/M
+Brenner/M
+Brent/M
+Brenton/M
+Brest/M
+Bret/M
+Breton/M
+Brett/M
+Brewer/M
+Brewster/M
+Brexit
+Brezhnev/M
+Brian/M
+Briana/M
+Brianna/M
+Brice/M
+Bridalveil/M
+Bridgeport/M
+Bridger/M
+Bridges/M
+Bridget/M
+Bridgetown/M
+Bridgett/M
+Bridgette/M
+Bridgman/M
+Brie/SM
+Brigadoon/M
+Briggs/M
+Brigham/M
+Bright/M
+Brighton/M
+Brigid/M
+Brigitte/M
+Brillo/M
+Brillouin
+Brinkley/M
+Brisbane/M
+Bristol/M
+Brit/SM
+Britain/M
+Britannia/M
+Britannic/M
+Britannica/M
+Briticism/SM
+British/MRZ
+Britisher/M
+Britney/M
+Briton/MS
+Britt/MN
+Brittany/SM
+Britten/M
+Brittney/M
+Brno/M
+Broadway/SM
+Brobdingnag/M
+Brobdingnagian/M
+Brock/M
+Brokaw/M
+Bronson/M
+Bronte/M
+Brontosaurus
+Bronx/M
+Brooke/MS
+Brooklyn/M
+Brooks/M
+Bros
+Brown/MG
+Browne/M
+Brownian/M
+Brownie/S
+Browning/M
+Brownshirt/M
+Brownsville/M
+Brubeck/M
+Bruce/M
+Bruckner/M
+Bruegel
+Brummel/M
+Brunei/M
+Bruneian/MS
+Brunelleschi/M
+Brunhilde/M
+Bruno/M
+Brunswick/M
+Brussels/M
+Brut/M
+Brutus/M
+Bryan/M
+Bryant/M
+Bryce/M
+Brynner/M
+Bryon/M
+Brzezinski/M
+Btu/M
+Buber/M
+Buchanan/M
+Bucharest/M
+Buchenwald/M
+Buchwald/M
+Buck/M
+Buckingham/M
+Buckley/M
+Buckner/M
+Bud/M
+Budapest/M
+Buddha/SM
+Buddhism/SM
+Buddhist/SM
+Buddy/M
+Budweiser/M
+Buffalo/M
+Buffy/M
+Buford/M
+Bugatti/M
+Bugzilla/M
+Buick/M
+Bujumbura/M
+Bukhara/M
+Bukharin/M
+Bulawayo/M
+Bulfinch/M
+Bulganin/M
+Bulgar/M
+Bulgari/M
+Bulgaria/M
+Bulgarian/SM
+Bullock/M
+Bullwinkle/M
+Bultmann/M
+Bumppo/M
+Bunche/M
+Bundesbank/M
+Bundestag/M
+Bunin/M
+Bunker/M
+Bunsen/M
+Bunuel/M
+Bunyan/M
+Burbank/M
+Burberry/M
+Burch/M
+Burger/M
+Burgess/M
+Burgoyne/M
+Burgundian/M
+Burgundy/SM
+Burke/M
+Burks/M
+Burl/M
+Burlington/M
+Burma/M
+Burmese/M
+Burnett/M
+Burns/M
+Burnside/M
+Burr/M
+Burris/M
+Burroughs/M
+Bursa/M
+Burt/M
+Burton/M
+Burundi/M
+Burundian/MS
+Busch/M
+Bush/M
+Bushido/M
+Bushnell/M
+Butler/M
+Butterfingers/M
+Buxtehude/M
+Byblos/M
+Byers/M
+Byrd/M
+Byron/M
+Byronic/M
+Byzantine/MS
+Byzantium/M
+C/SM
+CA
+CAD/M
+CAI
+CAM
+CAP
+CARE
+CATV
+CB
+CBC/M
+CBS/M
+CCTV
+CCU
+CD/SM
+CDC
+CDT
+CEO/M
+CF
+CFC/M
+CFO
+CGI
+CIA/M
+CID
+CNN/M
+CNS/M
+CO/M
+COBOL/SM
+COD
+COL
+COLA
+COVID
+CPA/M
+CPI/M
+CPO
+CPR/M
+CPU/M
+CRT/SM
+CSS/M
+CST/M
+CT/M
+CV
+CVS/M
+CZ
+Ca/M
+Cabernet/M
+Cabot/M
+Cabral/M
+Cabrera/M
+Cabrini/M
+Cadette
+Cadillac/M
+Cadiz/M
+Caedmon/M
+Caerphilly/M
+Caesar/SM
+Cage/M
+Cagney/M
+Cahokia/M
+Caiaphas/M
+Cain/SM
+Cairo/M
+Caitlin/M
+Cajun/MS
+Cal/M
+Calais/M
+Calcutta/M
+Calder/M
+Calderon/M
+Caldwell/M
+Caleb/M
+Caledonia/M
+Calgary/M
+Calhoun/M
+Cali/M
+Caliban/M
+Calif
+California/M
+Californian/SM
+Caligula/M
+Callaghan/M
+Callahan/M
+Callao/M
+Callas/M
+Callie/M
+Calliope/M
+Callisto/M
+Caloocan/M
+Calvary/M
+Calvert/M
+Calvin/M
+Calvinism/MS
+Calvinist/MS
+Calvinistic
+Camacho/M
+Cambodia/M
+Cambodian/SM
+Cambrian/SM
+Cambridge/M
+Camden/M
+Camel/M
+Camelopardalis/M
+Camelot/MS
+Camembert/MS
+Cameron/M
+Cameroon/SM
+Cameroonian/MS
+Camilla/M
+Camille/M
+Camoens/M
+Campanella/M
+Campbell/M
+Campinas/M
+Campos/M
+Camry/M
+Camus/M
+Can/M
+Canaan/M
+Canaanite/MS
+Canad
+Canada/M
+Canadian/SM
+Canadianism
+Canaletto/M
+Canaries/M
+Canaveral/M
+Canberra/M
+Cancer/SM
+Cancun/M
+Candace/M
+Candice/M
+Candide/M
+Candy/M
+Cannes/M
+Cannon/M
+Canon/M
+Canopus/M
+Cantabrigian/M
+Canterbury/M
+Canton/M
+Cantonese/M
+Cantor/M
+Cantrell/M
+Cantu/M
+Canute/M
+Capablanca/M
+Capek/M
+Capella/M
+Capet/M
+Capetian/M
+Capetown/M
+Caph/M
+Capistrano/M
+Capitol/SM
+Capitoline/M
+Capone/M
+Capote/M
+Capra/M
+Capri/M
+Capricorn/MS
+Capt
+Capuchin/M
+Capulet/M
+Cara/M
+Caracalla/M
+Caracas/M
+Caravaggio/M
+Carboloy/M
+Carboniferous/M
+Carborundum/M
+Cardenas/M
+Cardiff/M
+Cardin/M
+Cardozo/M
+Carey/M
+Carib/MS
+Caribbean/MS
+Carina/M
+Carissa/M
+Carl/M
+Carla/M
+Carlene/M
+Carlin/M
+Carlo/MS
+Carlos/M
+Carlsbad/M
+Carlson/M
+Carlton/M
+Carly/M
+Carlyle/M
+Carmela/M
+Carmella/M
+Carmelo/M
+Carmen/M
+Carmichael/M
+Carmine/M
+Carnap/M
+Carnation/M
+Carnegie/M
+Carney/M
+Carnot/M
+Carol/M
+Carole/M
+Carolina/M
+Caroline/M
+Carolingian/M
+Carolinian/M
+Carolyn/M
+Carpathian/SM
+Carpathians/M
+Carpenter/M
+Carr/M
+Carranza/M
+Carrie/RM
+Carrier/M
+Carrillo/M
+Carroll/M
+Carson/M
+Carter/M
+Cartesian/M
+Carthage/M
+Carthaginian/MS
+Cartier/M
+Cartwright/M
+Caruso/M
+Carver/M
+Cary/M
+Casablanca/M
+Casals/M
+Casandra/M
+Casanova/SM
+Cascades/M
+Case/M
+Casey/M
+Cash/M
+Casio/M
+Caspar/M
+Caspian/M
+Cassandra/SM
+Cassatt/M
+Cassidy/M
+Cassie/M
+Cassiopeia/M
+Cassius/M
+Castaneda/M
+Castilian
+Castillo/M
+Castlereagh/M
+Castor/M
+Castries/M
+Castro/M
+Catalan/SM
+Catalina/M
+Catalonia/M
+Catawba/M
+Caterpillar/M
+Cathay/M
+Cather/M
+Catherine/M
+Cathleen/M
+Catholic/MS
+Catholicism/MS
+Cathryn/M
+Cathy/M
+Catiline/M
+Cato/M
+Catskill/SM
+Catskills/M
+Catt/M
+Catullus/M
+Caucasian/MS
+Caucasoid
+Caucasus/M
+Cauchy/M
+Cavendish/M
+Cavour/M
+Caxton/M
+Cayenne/M
+Cayman/M
+Cayuga/SM
+Cayuse
+Cb
+Cd/M
+Ce/M
+Ceausescu/M
+Cebu/M
+Cebuano/M
+Cecelia/M
+Cecil/M
+Cecile/M
+Cecilia/M
+Cecily/M
+Cedric/M
+Celeste/M
+Celgene/M
+Celia/M
+Celina/M
+Cellini/M
+Celsius/M
+Celt/SM
+Celtic/SM
+Cenozoic/M
+Centaurus/M
+Centigrade
+Central
+Cepheid/M
+Cepheus/M
+Cerberus/M
+Cerenkov/M
+Ceres/M
+Cerf/M
+Cervantes/M
+Cesar/M
+Cesarean/M
+Cessna/M
+Cetus/M
+Ceylon/M
+Ceylonese
+Cezanne/M
+Cf/M
+Ch'in/M
+Ch/N
+Chablis/M
+Chad/M
+Chadian/MS
+Chadwick/M
+Chagall/M
+Chaitanya/M
+Chaitin/M
+Chaldea
+Chaldean/M
+Challenger/M
+Chalmers
+Chamberlain/M
+Chambers/M
+Champlain/M
+Champollion/M
+Chan/M
+Chance/M
+Chancellorsville/M
+Chandigarh/M
+Chandler/M
+Chandon/M
+Chandra/M
+Chandragupta/M
+Chandrasekhar/M
+Chanel/M
+Chaney/M
+Chang/M
+Changchun/M
+Changsha/M
+Chantilly/M
+Chaplin/M
+Chaplinesque
+Chapman/M
+Chappaquiddick/M
+Chapultepec/M
+Charbray/M
+Chardonnay/M
+Charity/M
+Charlemagne/M
+Charlene/M
+Charles/M
+Charleston/MS
+Charley/M
+Charlie/M
+Charlotte/M
+Charlottetown/M
+Charmaine/M
+Charmin/M
+Charolais/M
+Charon/M
+Chartism/M
+Chartres/M
+Charybdis/M
+Chase/M
+Chasity/M
+Chateaubriand/M
+Chattahoochee/M
+Chattanooga/M
+Chatterley/M
+Chatterton/M
+Chaucer/M
+Chauncey/M
+Chautauqua/M
+Chavez/M
+Chayefsky/M
+Che/M
+Chechen/M
+Chechnya/M
+Cheddar/M
+Cheer/M
+Cheerios/M
+Cheetos/M
+Cheever/M
+Chekhov/M
+Chekhovian
+Chelsea/M
+Chelyabinsk/M
+Chen/M
+Cheney/M
+Chengdu/M
+Chennai/M
+Cheops/M
+Cheri/M
+Cherie/M
+Chernenko/M
+Chernobyl/M
+Chernomyrdin/M
+Cherokee/MS
+Cherry/M
+Cheryl/M
+Chesapeake/M
+Cheshire/M
+Chester/M
+Chesterfield/M
+Chesterton/M
+Chevalier/M
+Cheviot/M
+Chevrolet/M
+Chevron/M
+Chevy/M
+Cheyenne/SM
+Chi/M
+Chianti/MS
+Chiba/M
+Chibcha/M
+Chicago/M
+Chicagoan/M
+Chicana/M
+Chicano/M
+Chickasaw/MS
+Chiclets/M
+Chihuahua/MS
+Chile/M
+Chilean/MS
+Chimborazo/M
+Chimera/MS
+Chimu/M
+Chin/M
+China/M
+Chinatown/M
+Chinese/M
+Chinook/MS
+Chipewyan/M
+Chippendale/M
+Chippewa/SM
+Chiquita/M
+Chirico/M
+Chisholm/M
+Chisinau/M
+Chittagong/M
+Chivas/M
+Chloe/M
+Choctaw/SM
+Chomsky/M
+Chongqing/M
+Chopin/M
+Chopra/M
+Chou/M
+Chretien/M
+Chris/M
+Christ/MS
+Christa/M
+Christchurch/M
+Christendom/MS
+Christensen/M
+Christi/M
+Christian/SM
+Christianity/SM
+Christianize
+Christie/M
+Christina/M
+Christine/M
+Christlike
+Christmas/MS
+Christmastide/MS
+Christmastime/MS
+Christoper/M
+Christopher/M
+Chromebook/MS
+Chronicles
+Chrysler/M
+Chrysostom/M
+Chrystal/M
+Chuck/M
+Chukchi/M
+Chumash/M
+Chung/M
+Church/M
+Churchill/M
+Churriguera/M
+Chuvash/M
+Ci/M
+Cicero/M
+Cid/M
+Cimabue/M
+Cincinnati/M
+Cinderella/MS
+Cindy/M
+CinemaScope/M
+Cinerama/M
+Cipro/M
+Circe/M
+Cisco/M
+Citibank/M
+Citigroup/M
+Citroen/M
+Cl/MV
+Claiborne/M
+Clair/M
+Claire/M
+Clairol/M
+Clancy/M
+Clapeyron/M
+Clapton/M
+Clara/M
+Clare/M
+Clarence/M
+Clarendon/M
+Clarice/M
+Clarissa/M
+Clark/M
+Clarke/M
+Claude/M
+Claudette/M
+Claudia/M
+Claudine/M
+Claudio/M
+Claudius/M
+Claus/M
+Clausewitz/M
+Clausius/M
+Clay/M
+Clayton/M
+Clearasil/M
+Clem/XM
+Clemenceau/M
+Clemens/M
+Clement/MS
+Clementine/M
+Clements/M
+Clemons/M
+Clemson/M
+Cleo/M
+Cleopatra/M
+Cleveland/M
+Cliburn/M
+Cliff/M
+Clifford/M
+Clifton/M
+Cline/M
+Clint/M
+Clinton/M
+Clio/M
+Clive/M
+Clojure/M
+Clorets/M
+Clorox/M
+Closure/M
+Clotho/M
+Clouseau/M
+Clovis/M
+Clyde/M
+Clydesdale/M
+Clytemnestra/M
+Cm/M
+Cmdr
+Co/M
+Cobain/M
+Cobb/M
+Cochabamba/M
+Cochin/M
+Cochise/M
+Cochran/M
+Cockney/M
+Cocteau/M
+Cod
+Cody/M
+Coffey/M
+Cognac/M
+Cohan/M
+Cohen/M
+Coimbatore/M
+Cointreau/M
+Coke/SM
+Col/M
+Colbert/M
+Colby/M
+Cole/M
+Coleen/M
+Coleman/M
+Coleridge/M
+Colette/M
+Colfax/M
+Colgate/M
+Colin/M
+Colleen/M
+Collier/M
+Collin/SM
+Collins/M
+Colo
+Cologne/M
+Colombia/M
+Colombian/MS
+Colombo/M
+Colon/M
+Coloradan/SM
+Colorado/M
+Coloradoan
+Colosseum/M
+Colt/M
+Coltrane/M
+Columbia/M
+Columbine/M
+Columbus/M
+Com
+Comanche/MS
+Combs/M
+Comdr
+Comintern/M
+Commandment
+Commons/M
+Commonwealth
+Communion/SM
+Communism
+Communist/SM
+Como/M
+Comoran
+Comoros/M
+Compaq/M
+Compton/M
+CompuServe/M
+Comte/M
+Conakry/M
+Conan/M
+Concepcion/M
+Concetta/M
+Concord/SM
+Concorde/M
+Condillac/M
+Condorcet/M
+Conestoga/M
+Confederacy/M
+Confederate/MS
+Confucian/SM
+Confucianism/MS
+Confucius/M
+Cong/M
+Congo/M
+Congolese/M
+Congregational
+Congregationalist/MS
+Congress/MS
+Congressional
+Congreve/M
+Conley/M
+Conn/MR
+Connecticut/M
+Connemara/M
+Conner/M
+Connery/M
+Connie/M
+Connolly/M
+Connors/M
+Conrad/M
+Conrail/M
+Conservative
+Constable/M
+Constance/M
+Constantine/M
+Constantinople/M
+Constitution
+Consuelo/M
+Continent/M
+Continental/M
+Contreras/M
+Conway/M
+Cook/M
+Cooke/M
+Cooley/M
+Coolidge/M
+Cooper/M
+Cooperstown/M
+Coors/M
+Copacabana/M
+Copeland/M
+Copenhagen/M
+Copernican/M
+Copernicus/M
+Copland/M
+Copley/M
+Copperfield/M
+Coppertone/M
+Coppola/M
+Coptic/M
+Cora/M
+Cordelia/M
+Cordilleras/M
+Cordoba/M
+Corey/M
+Corfu/M
+Corina/M
+Corine/M
+Corinne/M
+Corinth/M
+Corinthian/MS
+Corinthians/M
+Coriolanus/M
+Coriolis/M
+Cork
+Corleone/M
+Cormack/M
+Corneille/M
+Cornelia/M
+Cornelius/M
+Cornell/M
+Corning/M
+Cornish/MS
+Cornwall/M
+Cornwallis/M
+Coronado/M
+Corot/M
+Corp
+Correggio/M
+Corrine/M
+Corsica/M
+Corsican/M
+Cortes/MS
+Cortland/M
+Corvallis/M
+Corvette/M
+Corvus/M
+Cory/M
+Cosby/M
+CosmosDB/M
+Cossack/M
+Costco/M
+Costello/M
+Costner/M
+Cote/M
+Cotonou/M
+Cotopaxi/M
+Cotswold/M
+Cotton/M
+Coulomb/M
+Coulter/M
+Couperin/M
+Courbet/M
+Courtney/M
+Cousteau/M
+Coventry/SM
+Coward/M
+Cowell/M
+Cowley/M
+Cowper/M
+Cox/M
+Coy/M
+Coyle/M
+Cozumel/M
+Cpl
+Cr/MT
+Crabbe/M
+Craft/M
+Craig/M
+Cranach/M
+Crane/M
+Cranmer/M
+Crater/M
+Crawford/M
+Cray/M
+Crayola/M
+Creation/M
+Creator/M
+Crecy/M
+Cree/DSM
+Creek/SM
+Creighton/M
+Creole/SM
+Creon/M
+Cressida/M
+Crest/M
+Cretaceous/M
+Cretan/SM
+Crete/M
+Crichton/M
+Crick/M
+Crimea/M
+Crimean/M
+Criollo/M
+Crisco/M
+Cristina/M
+Croat/SM
+Croatia/M
+Croatian/MS
+Croce/M
+Crockett/M
+Croesus/M
+Cromwell/M
+Cromwellian/M
+Cronin/M
+Cronkite/M
+Cronus/M
+Crookes/M
+Crosby/M
+Cross/M
+Crow/SM
+Crowley/M
+Crucifixion/MS
+Cruikshank/M
+Cruise/M
+Crusades's
+Crusoe/M
+Crux/M
+Cruz/M
+Cryptozoic/M
+Crystal/M
+Csonka/M
+Ct
+Ctesiphon/M
+Cthulhu/M
+Cu/M
+Cuba/M
+Cuban/SM
+Cuchulain/M
+Cuisinart/M
+Culbertson/M
+Cullen/M
+Cumberland/M
+Cummings/M
+Cunard/M
+Cunningham/M
+Cupid/M
+Curacao/M
+Curie/M
+Curitiba/M
+Currier/M
+Curry/RM
+Curt/M
+Curtis/M
+Custer/M
+Cuvier/M
+Cuzco/M
+Cybele/M
+Cyclades/M
+Cyclopes/M
+Cyclops/M
+Cygnus/M
+Cymbeline/M
+Cynthia/M
+Cyprian/M
+Cypriot/MS
+Cyprus/M
+Cyrano/M
+Cyril/M
+Cyrillic/M
+Cyrus/M
+Czech/M
+Czechia/M
+Czechoslovak
+Czechoslovakia/M
+Czechoslovakian/SM
+Czechs
+Czerny/M
+D/M
+DA/M
+DAR
+DAT/M
+DBMS/M
+DC/M
+DD/M
+DDS/M
+DDT/S
+DE
+DEA
+DEC/SD
+DH
+DHS
+DI
+DJ
+DMCA
+DMD/M
+DMZ
+DNA/M
+DOA
+DOB
+DOD
+DOE
+DOS/M
+DOT
+DP/SM
+DPT
+DST
+DTP
+DUI
+DVD/S
+DVR/SM
+DWI
+Dachau/M
+Dacron/SM
+Dada/M
+Dadaism/M
+Daedalus/M
+Daguerre/M
+Dagwood/M
+Dahomey/M
+Daimler/M
+Daisy/M
+Dakar/M
+Dakota/SM
+Dakotan/M
+Dalai
+Dale/M
+Daley/M
+Dali/M
+Dalian/M
+Dallas/M
+Dalmatia/M
+Dalmatian/SM
+Dalton/M
+Damascus/M
+Dame/MN
+Damian/M
+Damien/M
+Damion/M
+Damocles/M
+Damon/M
+Dan/M
+Dana/M
+Danae/M
+Dane/SM
+Danelaw/M
+Dangerfield/M
+Danial/M
+Daniel/SM
+Danielle/M
+Daniels/M
+Danish/M
+Dannie/M
+Danny/M
+Danone/M
+Dante/M
+Danton/M
+Danube/M
+Danubian/M
+Daphne/M
+Darby/M
+Darcy/M
+Dardanelles/M
+Dare/M
+Daren/M
+Darfur/M
+Darin/M
+Dario/M
+Darius/M
+Darjeeling/M
+Darla/M
+Darlene/M
+Darling/M
+Darnell/M
+Darrel/M
+Darrell/M
+Darren/M
+Darrin/M
+Darrow/M
+Darryl/M
+Darth/M
+Dartmoor/M
+Dartmouth/M
+Darvon/M
+Darwin/M
+Darwinian/M
+Darwinism/SM
+Darwinist
+Daryl/M
+Datamation
+Daugherty/M
+Daumier/M
+Davao/M
+Dave/M
+Davenport/M
+David/MS
+Davidson/M
+Davies/M
+Davis/M
+Davy/SM
+Dawes/M
+Dawkins
+Dawn/M
+Dawson/M
+Day/M
+Dayan
+Dayton/M
+DeGeneres/M
+Deadhead/M
+Dean/M
+Deana/M
+Deandre/M
+Deann/M
+Deanna/M
+Deanne/M
+Death/M
+Debbie/M
+Debby/M
+Debian/M
+Debora/M
+Deborah/M
+Debouillet/M
+Debra/M
+Debs/M
+Debussy/M
+Dec/M
+Decalogue/M
+Decatur/M
+Decca/M
+Deccan/M
+December/SM
+Decker/M
+Dedekind/M
+Dee/M
+Deena/M
+Deere/M
+Defoe/M
+Degas/M
+Deidre/M
+Deimos/M
+Deirdre/M
+Deity
+Dejesus/M
+Del/M
+Delacroix/M
+Delacruz/M
+Delaney/M
+Delano/M
+Delaware/MS
+Delawarean/SM
+Delbert/M
+Deleon/M
+Delgado/M
+Delhi/M
+Delia/M
+Delibes/M
+Delicious/M
+Delilah/M
+Delilahs
+Delius/M
+Dell/M
+Della/M
+Delmar/M
+Delmarva/M
+Delmer/M
+Delmonico/M
+Delores/M
+Deloris/M
+Delphi/M
+Delphic/M
+Delphinus/M
+Delta/M
+Dem/G
+Demavend/M
+Demerol/M
+Demeter/M
+Demetrius/M
+Deming/M
+Democrat/SM
+Democratic
+Democritus/M
+Demosthenes/M
+Dempsey/M
+Dena/M
+Denali
+Deneb/M
+Denebola/M
+Deng/M
+Denis/M
+Denise/M
+Denmark/M
+Dennis/M
+Denny/M
+Denver/M
+Deon/M
+Depp/M
+Derby/M
+Derek/M
+Derick/M
+Dermot/M
+Derrick/M
+Derrida/M
+Descartes/M
+Desdemona/M
+Desiree/M
+Desmond/M
+Detroit/M
+Deuteronomy/M
+Devanagari/M
+Devi/M
+Devin/M
+Devon/M
+Devonian/M
+Dewar/M
+Dewayne/M
+Dewey/M
+Dewitt/M
+Dexedrine/M
+Dexter/M
+Dhaka/M
+Dhaulagiri/M
+Di/SM
+DiCaprio/M
+DiMaggio/M
+Diaghilev/M
+Dial/M
+Diana/M
+Diane/M
+Diann/M
+Dianna/M
+Dianne/M
+Dias
+Diaspora/MS
+Dick/XM
+Dickens/M
+Dickensian
+Dickerson/M
+Dickinson/M
+Dickson/M
+Dictaphone/SM
+Diderot/M
+Dido/M
+Didrikson/M
+Diefenbaker/M
+Diego/M
+Diem/M
+Dietrich/M
+Dijkstra/M
+Dijon/M
+Dilbert/MS
+Dillard/M
+Dillinger/M
+Dillon/M
+Dina/M
+Dinah/M
+Dino/M
+Diocletian/M
+Diogenes/M
+Dion/M
+Dionne/M
+Dionysian/M
+Dionysus/M
+Diophantine/M
+Dior/M
+Dipper/M
+Dir
+Dirac/M
+Dirichlet/M
+Dirk/M
+Dis/M
+Disney/M
+Disneyland/M
+Disraeli/M
+Divine/M
+Diwali/M
+Dix/M
+Dixie/M
+Dixiecrat/M
+Dixieland/SM
+Dixon/M
+Django/M
+Djibouti/M
+Dmitri/M
+Dnepropetrovsk/M
+Dniester/M
+Dobbin/M
+Doberman/M
+Dobro/M
+Doctor
+Doctorow/M
+Dodge/M
+Dodgson/M
+Dodoma/M
+Dodson/M
+Doe/M
+Doha/M
+Dolby/M
+Dole/M
+Dollie/M
+Dolly/M
+Dolores/M
+Domesday/M
+Domingo/M
+Dominguez/M
+Dominic/M
+Dominica/M
+Dominican/MS
+Dominick/M
+Dominion
+Dominique/M
+Domitian/M
+Don/SM
+Dona/M
+Donahue/M
+Donald/M
+Donaldson/M
+Donatello/M
+Donetsk/M
+Donizetti/M
+Donn/MR
+Donna/M
+Donne/M
+Donnell/M
+Donner/M
+Donnie/M
+Donny/M
+Donovan/M
+Dooley/M
+Doolittle/M
+Doonesbury/M
+Doppler/M
+Dora/M
+Dorcas/M
+Doreen/M
+Dorian/M
+Doric/M
+Doris/M
+Doritos/M
+Dorothea/M
+Dorothy/M
+Dorset/M
+Dorsey/M
+Dorthy/M
+Dortmund/M
+Dostoevsky/M
+Dot/M
+Dotson/M
+Douala/M
+Douay/M
+Doubleday/M
+Doug/M
+Douglas/M
+Douglass/M
+Douro/M
+Dover/M
+Dow/M
+Downs/M
+Downy/M
+Doyle/M
+Dr
+Draco/M
+Draconian/M
+Dracula/M
+Drake/M
+Dramamine/SM
+Drambuie/M
+Drano/M
+Dravidian/M
+Dreiser/M
+Dresden/M
+Drew/M
+Dreyfus/M
+Dristan/M
+Dropbox/M
+Drudge/M
+Drupal/M
+Dryden/M
+Dschubba/M
+Du
+DuPont/M
+Duane/M
+Dubai/M
+Dubcek/M
+Dubhe/M
+Dublin/M
+Dubrovnik/M
+Duchamp/M
+Dudley/M
+Duffy/M
+Duisburg/M
+Duke/M
+Dulles/M
+Duluth/M
+Dumas/M
+Dumbledore/M
+Dumbo/M
+Dunant/M
+Dunbar/M
+Duncan/M
+Dundee
+Dunedin/M
+Dunkirk/M
+Dunlap/M
+Dunn/M
+Dunne/M
+Duracell/M
+Duran/M
+Durant/M
+Durante/M
+Durban/M
+Durer/M
+Durex/M
+Durham/MS
+Durkheim/M
+Duroc/M
+Durocher/M
+Duse/M
+Dushanbe/M
+Dusseldorf/M
+Dustbuster/M
+Dustin/M
+Dusty/M
+Dutch/M
+Dutchman/M
+Dutchmen/M
+Dutchwoman
+Duvalier/M
+Dvina/M
+Dvorak/M
+Dwayne/M
+Dwight/M
+Dy/M
+Dyer/M
+Dylan/M
+DynamoDB/M
+Dyson/M
+Dzerzhinsky/M
+Dzungaria/M
+E/SM
+EC
+ECG/M
+ECMAScript/M
+EDP/M
+EDT
+EEC/M
+EEG/M
+EEO
+EEOC
+EFL
+EFT
+EKG/M
+ELF/M
+EM
+EMT
+ENE/M
+EOE
+EPA/M
+ER
+ERA
+ESE/M
+ESL
+ESP/M
+ESPN/M
+ESR
+EST/M
+ET
+ETA
+ETD
+EU
+EULA/S
+Eakins/M
+Earhart/M
+Earl/M
+Earle/M
+Earlene/M
+Earline/M
+Earnest/M
+Earnestine/M
+Earnhardt/M
+Earp/M
+East/SZMR
+Easter/M
+Eastern/R
+Eastman/M
+Eastwood/M
+Eaton/M
+Eben/M
+Ebeneezer/M
+Ebert/M
+Ebola/M
+Ebonics/M
+Ebony/M
+Ebro/M
+Ecclesiastes/M
+Eco/M
+Ecstasy
+Ecuador/M
+Ecuadoran/SM
+Ecuadorean
+Ecuadorian/SM
+Ed/MNX
+Edam/SM
+Edda/M
+Eddie/M
+Eddington/M
+Eddy/M
+Eden/M
+Edgar/M
+Edgardo/M
+Edinburgh/M
+Edison/M
+Edith/M
+Edmond/M
+Edmonton/M
+Edmund/M
+Edna/M
+Edsel/M
+Eduardo/M
+Edward/SM
+Edwardian/M
+Edwardo/M
+Edwards/M
+Edwin/M
+Edwina/M
+Eeyore/M
+Effie/M
+Efrain/M
+Efren/M
+Eggo/M
+Egypt/M
+Egyptian/MS
+Egyptology/M
+Ehrenberg/M
+Ehrlich/M
+Eichmann/M
+Eiffel/M
+Eileen/M
+Einstein/MS
+Eire/M
+Eisenhower/M
+Eisenstein/M
+Eisner/M
+Elaine/M
+Elam/M
+Elanor/M
+Elasticsearch/M
+Elastoplast/M
+Elba/M
+Elbe/M
+Elbert/M
+Elbrus/M
+Eldon/M
+Eleanor/M
+Eleazar/M
+Electra/M
+Elena/M
+Elgar/M
+Eli/M
+Elias/M
+Elijah/M
+Elinor/M
+Eliot/M
+Elisa/M
+Elisabeth/M
+Elise/M
+Eliseo/M
+Elisha/M
+Eliza/M
+Elizabeth/M
+Elizabethan/SM
+Ella/M
+Ellen/M
+Ellesmere/M
+Ellie/M
+Ellington/M
+Elliot/M
+Elliott/M
+Ellis/M
+Ellison/M
+Elma/M
+Elmer/M
+Elmo/M
+Elnath/M
+Elnora/M
+Elohim/M
+Eloise/M
+Eloy/M
+Elroy/M
+Elsa/M
+Elsie/M
+Elsinore/M
+Eltanin/M
+Elton/M
+Elul/M
+Elva/M
+Elvia/M
+Elvin/M
+Elvira/M
+Elvis/M
+Elway/M
+Elwood/M
+Elysee/M
+Elysian/M
+Elysium/SM
+Emacs/M
+Emanuel/M
+Emerson/M
+Emery/M
+Emil/M
+Emile/M
+Emilia/M
+Emilio/M
+Emily/M
+Eminem/M
+Eminence
+Emma/M
+Emmanuel/M
+Emmett/M
+Emmy/M
+Emory/M
+Encarta/M
+Endymion/M
+Eng/M
+Engels/M
+England/M
+English/MRS
+Englishman/M
+Englishmen/M
+Englishwoman/M
+Englishwomen/M
+Enid/M
+Enif/M
+Eniwetok/M
+Enkidu/M
+Enoch/M
+Enos/M
+Enrico/M
+Enrique/M
+Enron/M
+Enterprise/M
+Eocene/M
+Epcot/M
+Ephesian/MS
+Ephesus/M
+Ephraim/M
+Epictetus/M
+Epicurean/M
+Epicurus/M
+Epimethius/M
+Epiphany/SM
+Episcopal
+Episcopalian/MS
+Epistle
+Epsom/M
+Epson/M
+Epstein/M
+Equuleus/M
+Er/M
+Erasmus/M
+Erato/M
+Eratosthenes/M
+Erebus/M
+Erector/M
+Erewhon/M
+Erhard/M
+Eric/M
+Erica/M
+Erich/M
+Erick/M
+Ericka/M
+Erickson/M
+Eridanus/M
+Erie/M
+Erik/M
+Erika/M
+Erin/M
+Eris/MS
+Eritrea/M
+Eritrean/SM
+Erlang/M
+Erlenmeyer/M
+Erma/M
+Erna/M
+Ernest/M
+Ernestine/M
+Ernesto/M
+Ernie/M
+Ernst/M
+Eros/MS
+Errol/M
+Erse/M
+ErvIn/M
+Erwin/M
+Esau/M
+Escher/M
+Escherichia/M
+Escondido
+Eskimo/MS
+Esmeralda/M
+Esperanto/M
+Esperanza/M
+Espinoza/M
+Esq/M
+Esquire/MS
+Essen/M
+Essene/M
+Essequibo/M
+Essex/M
+Essie/M
+Establishment
+Esteban/M
+Estela/M
+Estella/M
+Estelle/M
+Ester/M
+Esterhazy/M
+Estes/M
+Esther/M
+Estonia/M
+Estonian/SM
+Estrada/M
+Ethan/M
+Ethel/M
+Ethelred/M
+Ethernet/M
+Ethiopia/M
+Ethiopian/SM
+Etna/M
+Eton/M
+Etruria/M
+Etruscan/M
+Etta/M
+Eu/M
+Eucharist/MS
+Eucharistic
+Euclid/M
+Eugene/M
+Eugenia/M
+Eugenie/M
+Eugenio/M
+Eula/M
+Euler/M
+Eumenides/M
+Eunice/M
+Euphrates/M
+Eur
+Eurasia/M
+Eurasian/MS
+Euripides/M
+Eurodollar/SM
+Europa/M
+Europe/M
+European/MS
+Eurydice/M
+Eustachian/M
+Euterpe/M
+Eva/M
+Evan/SM
+Evangelical
+Evangelina/M
+Evangeline/M
+Evangelist/M
+Evans/M
+Evansville/M
+Eve/M
+Evelyn/M
+Evenki/M
+EverReady/M
+Everest/M
+Everett/M
+Everette/M
+Everglades/M
+Evert/M
+Evian/M
+Evita/M
+Ewing/M
+Excalibur/M
+Excedrin/M
+Excellency/SM
+Exchequer
+Exercycle/M
+Exocet/M
+Exodus/M
+Exxon/M
+Eyck/M
+Eyre/M
+Eysenck/M
+Ezekiel/M
+Ezra/M
+F/MD
+FAA
+FAQ/SM
+FBI/M
+FCC
+FD
+FDA
+FDIC/M
+FDR/M
+FHA/M
+FICA/M
+FIFO
+FL
+FM/SM
+FNMA/M
+FOFL
+FORTRAN/M
+FPO
+FSF/M
+FSLIC
+FTC
+FUD/S
+FWD
+FWIW
+FY
+FYI
+Faberge/M
+Fabian/MS
+Facebook/M
+Faeroe/M
+Fafnir/M
+Fagin/M
+Fahd/M
+Fahrenheit/M
+Fairbanks/M
+Faisal/M
+Faisalabad/M
+Faith/M
+Falasha/M
+Falkland/SM
+Falklands/M
+Fallopian/M
+Falstaff/M
+Falwell/M
+Fannie/M
+Fanny/M
+Faraday/M
+Fargo/M
+Farley/M
+Farmer/M
+Farragut/M
+Farrakhan/M
+Farrell/M
+Farrow/M
+Farsi/M
+Fassbinder/M
+Fatah/M
+Fates/M
+Father/SM
+Fatima/M
+Fatimid/M
+Faulkner/M
+Faulknerian/M
+Fauntleroy/M
+Faust/M
+Faustian/M
+Faustino/M
+Faustus/M
+Fawkes/M
+Fay/M
+Faye/M
+Fe/M
+Feb/M
+February/SM
+Fed/SM
+FedEx/M
+Federal/MS
+Federalist/M
+Federico/M
+Feds/M
+Felecia/M
+Felice/M
+Felicia/M
+Felicity/M
+Felipe/M
+Felix/M
+Fellini/M
+Fenian/M
+Ferber/M
+Ferdinand/M
+Fergus/M
+Ferguson/M
+Ferlinghetti/M
+Fermat/M
+Fermi/M
+Fern/M
+Fernandez/M
+Fernando/M
+Ferrari/M
+Ferraro/M
+Ferrell/M
+Ferris/M
+Feynman/M
+Fez/M
+Fiat/M
+Fiberglas/M
+Fibonacci/M
+Fichte/M
+Fidel/M
+Fido/M
+Fielding/M
+Fields/M
+Figaro/M
+Figueroa/M
+Fiji/M
+Fijian/MS
+Filipino/MS
+Fillmore/M
+Filofax/M
+Finch/M
+Finland/M
+Finlay/M
+Finley/M
+Finn/SM
+Finnbogadottir/M
+Finnegan/M
+Finnish/M
+Fiona/M
+Firebase/M
+Firefox/M
+Firestone/M
+Fischer/M
+Fisher/M
+Fisk/M
+Fitch/M
+Fitzgerald/M
+Fitzpatrick/M
+Fitzroy/M
+Fizeau/M
+Fla
+Flanagan/M
+Flanders/M
+Flathead
+Flatt/M
+Flaubert/M
+Fleischer/M
+Fleming/M
+Flemish/M
+Fletcher/M
+Flint/M
+Flintstones/M
+Flo/M
+Flora/M
+Florence/M
+Florentine/M
+Flores/M
+Florida/M
+Floridan/M
+Floridian/SM
+Florine/M
+Florsheim/M
+Flory/M
+Flossie/M
+Flowers/M
+Floyd/M
+Flynn/M
+Fm/M
+Foch/M
+Fokker/M
+Foley/M
+Folgers/M
+Folsom/M
+Fomalhaut/M
+Fonda/M
+Foosball/M
+Forbes/M
+Ford/M
+Foreman/M
+Forest/MR
+Forester/M
+Formica/MS
+Formosa/M
+Formosan/M
+Forrest/M
+Forster/M
+Fortaleza/M
+Fosse/M
+Foster/M
+Fotomat/M
+Foucault/M
+Fourier/M
+Fourneyron/M
+Fourth
+Fowler/M
+Fox/MS
+Fr/MD
+Fragonard/M
+Fran/M
+France/SM
+Frances/M
+Francesca/M
+Francine/M
+Francis/M
+Francisca/M
+Franciscan/MS
+Francisco/M
+Franck/M
+Franco/M
+Francois/M
+Francoise/M
+Francophile
+Franglais/M
+Frank/SM
+Frankel/M
+Frankenstein/M
+Frankfort/M
+Frankfurt/MR
+Frankfurter/M
+Frankie/M
+Frankish
+Franklin/M
+Franks/M
+Franny/M
+Franz/M
+Fraser/M
+Frau/MN
+Fraulein
+Frazier/M
+Fred/M
+Freda/M
+Freddie/M
+Freddy/M
+Frederic/M
+Frederick/M
+Fredericton/M
+Fredric/M
+Fredrick/M
+Freeman/M
+Freemason/SM
+Freemasonry/SM
+Freetown/M
+Freida/M
+Fremont/M
+French/MS
+Frenchman/M
+Frenchmen/M
+Frenchwoman/M
+Frenchwomen/M
+Freon/M
+Fresnel/M
+Fresno/M
+Freud/M
+Freudian/M
+Frey/M
+Freya/M
+Fri/M
+Friday/SM
+Frieda/M
+Friedan/M
+Friedman/M
+Friedmann/M
+Friend/SM
+Frigga/M
+Frigidaire/M
+Frisbee/M
+Frisco/M
+Frisian/MS
+Frito/M
+Fritz/M
+Frobisher/M
+Frodo/M
+Froissart/M
+Fromm/M
+Fronde/M
+Frontenac/M
+Frost/M
+Frostbelt/M
+Frunze/M
+Fry/M
+Frye/M
+Fuchs/M
+Fuentes/M
+Fugger/M
+Fuji/M
+Fujian/M
+Fujitsu/M
+Fujiwara/M
+Fujiyama/M
+Fukuoka/M
+Fukuyama/M
+Fulani/M
+Fulbright/M
+Fuller/M
+Fullerton/M
+Fulton/M
+Funafuti/M
+Fundy/M
+Furies/M
+Furman/M
+Furtwangler/M
+Fushun/M
+Fuzhou/M
+Fuzzbuster/M
+G/MNRB
+GA
+GAO
+GATT/M
+GB/M
+GCC/M
+GDP/M
+GE/M
+GED
+GHQ/M
+GHz
+GI
+GIF
+GIGO
+GM/M
+GMAT
+GMO
+GMT/M
+GNP/M
+GNU/M
+GOP/M
+GP/M
+GPA
+GPO
+GPS
+GPU
+GSA
+GTE/M
+GU
+GUI/M
+Ga/M
+Gable/M
+Gabon/M
+Gabonese/M
+Gaborone/M
+Gabriel/M
+Gabriela/M
+Gabrielle/M
+Gacrux/M
+Gadsden/M
+Gaea/M
+Gael/SM
+Gaelic/M
+Gagarin/M
+Gage/M
+Gaia/M
+Gail/M
+Gaiman/M
+Gaines/M
+Gainsborough/M
+Galahad/SM
+Galapagos/M
+Galatea/M
+Galatia/M
+Galatians/M
+Galaxy
+Galbraith/M
+Gale/M
+Galen/M
+Galibi/M
+Galilean/SM
+Galilee/M
+Galileo/M
+Gall/M
+Gallagher/M
+Gallegos/M
+Gallic/M
+Gallicism/SM
+Gallo/M
+Galloway/M
+Gallup/M
+Galois/M
+Galsworthy/M
+Galvani/M
+Galveston/M
+Gama
+Gamay/M
+Gambia/M
+Gambian/SM
+Gamble/M
+Gamow/M
+Gandalf/M
+Gandhi/M
+Gandhian/M
+Ganesha/M
+Ganges/M
+Gangtok/M
+Gansu/M
+Gantry/M
+Ganymede/M
+Gap/M
+Garbo/M
+Garcia/M
+Gardner/M
+Gareth/M
+Garfield/M
+Garfunkel/M
+Gargantua/M
+Garibaldi/M
+Garland/M
+Garner/M
+Garrett/M
+Garrick/M
+Garrison/M
+Garry/M
+Garth/M
+Garvey/M
+Gary/M
+Garza/M
+Gascony/M
+Gasser/M
+Gastroenterology
+Gates/M
+Gatling/M
+Gatorade/M
+Gatsby/M
+Gatun/M
+Gauguin/M
+Gaul/SM
+Gaulish
+Gauss/M
+Gaussian/M
+Gautama/M
+Gautier/M
+Gavin/M
+Gawain/M
+Gay/M
+Gayle/M
+Gaza/M
+Gaziantep/M
+Gd/M
+Gdansk/M
+Ge/M
+Geffen/M
+Gehenna/M
+Gehrig/M
+Geiger/M
+Gelbvieh/M
+Geller/M
+Gemini/MS
+Gen/M
+Gena/M
+Genaro/M
+Gene/M
+Genesis/M
+Genet/M
+Geneva/M
+Genevieve/M
+Genghis/M
+Genoa/SM
+Gentoo/M
+Gentry/M
+Geo/M
+Geoffrey/M
+George/MS
+Georgetown/M
+Georgette/M
+Georgia/M
+Georgian/MS
+Georgina/M
+Ger/M
+Gerald/M
+Geraldine/M
+Gerard/M
+Gerardo/M
+Gerber/M
+Gere/M
+Geritol/M
+German/MS
+Germanic/M
+Germany/M
+Geronimo/M
+Gerry/M
+Gershwin/M
+Gertrude/M
+Gestapo/SM
+Gethsemane/M
+Getty/M
+Gettysburg/M
+Gewurztraminer/M
+Ghana/M
+Ghanaian
+Ghats/M
+Ghazvanid/M
+Ghent/M
+Ghibelline/M
+Giacometti/M
+Giannini/M
+Giauque/M
+Gibbon/M
+Gibbs/M
+Gibraltar/MS
+Gibson/M
+Gide/M
+Gideon/M
+Gielgud/M
+Gienah/M
+Gil/M
+Gila/M
+Gilbert/M
+Gilberto/M
+Gilchrist/M
+Gilda/M
+Gilead/M
+Giles/M
+Gilgamesh/M
+Gill/M
+Gillespie/M
+Gillette/M
+Gilliam/M
+Gillian/M
+Gilligan/M
+Gilman
+Gilmore/M
+Gina/M
+Ginger/M
+Gingrich/M
+Ginny/M
+Gino/M
+Ginsberg/M
+Ginsburg/M
+Ginsu/M
+Giorgione/M
+Giotto/M
+Giovanni/M
+Giraudoux/M
+Giselle/M
+Gish/M
+GitHub/M
+Giuliani/M
+Giuseppe/M
+Giza/M
+Gk
+Gladstone/MS
+Gladys/M
+Glaser/M
+Glasgow/M
+Glass/M
+Glastonbury/M
+Glaswegian/SM
+Glaxo/M
+Gleason/M
+Glen/M
+Glenda/M
+Glendale
+Glenlivet/M
+Glenn/M
+Glenna/M
+Gloria/M
+Gloucester/M
+Glover/M
+Gnostic/M
+Gnosticism/M
+GnuPG
+Goa/M
+Gobi/M
+God/M
+Godard/M
+Goddard/M
+Godel/M
+Godhead/M
+Godiva/M
+Godot/M
+Godspeed/SM
+Godthaab/M
+Godunov/M
+Godzilla/M
+Goebbels/M
+Goering/M
+Goethals/M
+Goethe/M
+Goff/M
+Gog/M
+Gogol/M
+Goiania/M
+Golan/M
+Golconda/M
+Golda/M
+Goldberg/M
+Golden/M
+Goldie/M
+Goldilocks/M
+Golding/M
+Goldman/M
+Goldsmith/M
+Goldwater/M
+Goldwyn/M
+Golgi/M
+Golgotha/M
+Goliath/M
+Gomez/M
+Gomorrah/M
+Gompers/M
+Gomulka/M
+Gondwanaland/M
+Gonzales/M
+Gonzalez/M
+Gonzalo/M
+Good/M
+Goodall/M
+Goode/M
+Goodman/M
+Goodrich/M
+Goodwill/M
+Goodwin/M
+Goodyear/M
+Google/M
+Goolagong/M
+Gopher
+Gorbachev/M
+Gordian/M
+Gordimer/M
+Gordon/M
+Gore/M
+Goren/M
+Gorey/M
+Gorgas/M
+Gorgon/M
+Gorgonzola/M
+Gorky/M
+Gospel/MS
+Goteborg/M
+Goth/M
+Gotham/M
+Gothic/MS
+Goths
+Gouda/SM
+Gould/M
+Gounod/M
+Governor
+Goya/M
+Gr/B
+Grable/M
+Gracchus/M
+Grace/M
+Graceland/M
+Gracie/M
+Graciela/M
+Grady/M
+Graffias/M
+Grafton/M
+Graham/M
+Grahame/M
+Grail/M
+Grammy/M
+Grampians/M
+Granada/M
+Grant/M
+Grass/M
+Graves/M
+Gray/M
+Grecian/M
+Greece/M
+Greek/SM
+Greeley/M
+Green/SM
+Greene/M
+Greenland/M
+Greenlandic
+Greenpeace/M
+Greensboro/M
+Greensleeves/M
+Greenspan/M
+Greenwich/M
+Greer/M
+Greg/M
+Gregg/M
+Gregorian/M
+Gregorio/M
+Gregory/M
+Grenada/M
+Grenadian/MS
+Grenadines/M
+Grendel/M
+Grenoble/M
+Gresham/M
+Greta/M
+Gretchen/M
+Gretel/M
+Gretzky/M
+Grey/M
+Grieg/M
+Griffin/M
+Griffith/M
+Grimes/M
+Grimm/M
+Grinch/M
+Gris/M
+Gromyko/M
+Gropius/M
+Gross/M
+Grosz/M
+Grotius/M
+Grover/M
+Grozny
+Grumman/M
+Grundy/M
+Grunewald/M
+Grus/M
+Gruyere/SM
+Guadalajara/M
+Guadalcanal/M
+Guadalquivir/M
+Guadalupe/M
+Guadeloupe/M
+Guallatiri/M
+Guam/M
+Guamanian
+Guangdong/M
+Guangzhou/M
+Guantanamo/M
+Guarani/M
+Guarnieri/M
+Guatemala/M
+Guatemalan/MS
+Guayaquil/M
+Gucci/M
+Guelph/M
+Guernsey/MS
+Guerra/M
+Guerrero/M
+Guevara/M
+Guggenheim/M
+Guiana/M
+Guido
+Guillermo/M
+Guinea/M
+Guinean/MS
+Guinevere/M
+Guinness/M
+Guiyang/M
+Guizhou/M
+Guizot/M
+Gujarat/M
+Gujarati/M
+Gujranwala/M
+Gullah/M
+Gulliver/M
+Gumbel/M
+Gunther/M
+Guofeng/M
+Gupta/M
+Gurkha/M
+Gus/M
+Gustav/M
+Gustavo/M
+Gustavus/M
+Gutenberg/M
+Guthrie/M
+Gutierrez/M
+Guy/M
+Guyana/M
+Guyanese/M
+Guzman/M
+Gwalior/M
+Gwen/M
+Gwendoline/M
+Gwendolyn/M
+Gwyn/M
+Gypsy/SM
+H/M
+HBO/M
+HBase/M
+HDD
+HDMI
+HDTV
+HF/M
+HHS
+HI
+HIV/M
+HM
+HMO/M
+HMS
+HOV
+HP/M
+HPV
+HQ/M
+HR
+HRH
+HS
+HSBC/M
+HST
+HT
+HTML/M
+HTTP
+HUD/M
+Ha/M
+Haas/M
+Habakkuk/M
+Haber/M
+Hadar/M
+Hades/M
+Hadoop/M
+Hadrian/M
+Hafiz/M
+Hagar/M
+Haggai/M
+Hagiographa/M
+Hague/M
+Hahn/M
+Haida/SM
+Haifa/M
+Hainan/M
+Haiphong/M
+Haiti/M
+Haitian/MS
+Hakka/M
+Hakluyt/M
+Hal/SM
+Haldane/M
+Hale/M
+Haleakala/M
+Haley/M
+Halifax/M
+Hall/M
+Halley/M
+Halliburton/M
+Hallie/M
+Hallmark/M
+Halloween/MS
+Hallstatt/M
+Halon/M
+Hals/M
+Halsey/M
+Ham/M
+Haman/M
+Hamburg/MS
+Hamhung/M
+Hamilcar/M
+Hamill/M
+Hamilton/M
+Hamiltonian/M
+Hamitic/M
+Hamlet/M
+Hamlin/M
+Hammarskjold/M
+Hammerstein/M
+Hammett/M
+Hammond/M
+Hammurabi/M
+Hampshire/M
+Hampton/M
+Hamsun/M
+Han/SM
+Hancock/M
+Handel/M
+Handy/M
+Haney/M
+Hangul/M
+Hangzhou/M
+Hank/M
+Hanna/M
+Hannah/M
+Hannibal/M
+Hanoi/M
+Hanover/M
+Hanoverian/M
+Hans/MN
+Hansel/M
+Hansen/M
+Hanson/M
+Hanuka
+Hanukkah/M
+Hanukkahs
+Hapsburg/M
+Harare/M
+Harbin/M
+Hardin/M
+Harding/M
+Hardy/M
+Hargreaves/M
+Harlan/M
+Harlem/M
+Harlequin/M
+Harley/M
+Harlow/M
+Harmon/M
+Harold/M
+Harper/M
+Harpy/SM
+Harrell/M
+Harriet/M
+Harriett/M
+Harrington/M
+Harris/M
+Harrisburg/M
+Harrison/M
+Harrods/M
+Harry/M
+Hart/M
+Harte/M
+Hartford/M
+Hartline/M
+Hartman/M
+Harvard/M
+Harvey/M
+Hasbro/M
+Hasidim/M
+Haskell/M
+Hastings/M
+Hatfield/M
+Hathaway/M
+Hatsheput/M
+Hatteras/M
+Hattie/M
+Hauptmann/M
+Hausa/M
+Hausdorff/M
+Havana/MS
+Havarti/M
+Havel/M
+Havoline/M
+Haw
+Hawaii/M
+Hawaiian/SM
+Hawking/M
+Hawkins/M
+Hawks
+Hawthorne/M
+Hay/SM
+Hayden/M
+Haydn/M
+Hayek/M
+Hayes/M
+Haynes/M
+Hays/M
+Hayward/M
+Haywood/M
+Hayworth/M
+Hazel/M
+Hazlitt/M
+He/M
+Head/M
+Hearst/M
+Heath/MR
+Heather/M
+Heaviside/M
+Heb
+Hebe/M
+Hebei/M
+Hebert/M
+Hebraic/M
+Hebraism/SM
+Hebrew/MS
+Hebrews/M
+Hebrides/M
+Hecate/M
+Hector/M
+Hecuba/M
+Heep/M
+Hefner/M
+Hegel/M
+Hegelian/M
+Hegira/M
+Heidegger/M
+Heidelberg/M
+Heidi/M
+Heifetz/M
+Heilongjiang/M
+Heimlich/M
+Heine/M
+Heineken/M
+Heinlein/M
+Heinrich/M
+Heinz/M
+Heisenberg/M
+Heisman/M
+Helen/M
+Helena/M
+Helene/M
+Helga/M
+Helicobacter
+Helicon/M
+Heliopolis/M
+Helios/M
+Hellene/SM
+Hellenic/M
+Hellenism/MS
+Hellenist
+Hellenistic/M
+Hellenization/M
+Hellenize/M
+Heller/M
+Hellespont/M
+Hellman/M
+Helmholtz/M
+Heloise/M
+Helsinki/M
+Helvetian
+Helvetius/M
+Hemingway/M
+Henan/M
+Hench/M
+Henderson/M
+Hendrick/MS
+Hendricks/M
+Hendrix/M
+Henley/M
+Hennessy/M
+Henri/M
+Henrietta/M
+Henrik/M
+Henry/M
+Hensley/M
+Henson/M
+Hepburn/M
+Hephaestus/M
+Hepplewhite/M
+Hera/M
+Heracles/M
+Heraclitus/M
+Herakles/M
+Herbart/M
+Herbert/M
+Herculaneum/M
+Herculean
+Hercules/M
+Herder/M
+Hereford/SM
+Herero/M
+Heriberto/M
+Herman/M
+Hermaphroditus/M
+Hermes/M
+Herminia/M
+Hermitage/M
+Hermite/M
+Hermosillo/M
+Hernandez/M
+Herod/M
+Herodotus/M
+Heroku/M
+Herr/MG
+Herrera/M
+Herrick/M
+Herring/M
+Herschel/M
+Hersey/M
+Hershel/M
+Hershey/M
+Hertz/M
+Hertzsprung/M
+Herzegovina/M
+Herzl/M
+Heshvan/M
+Hesiod/M
+Hesperus/M
+Hess/M
+Hesse/M
+Hessian/M
+Hester/M
+Heston/M
+Hettie/M
+Hewitt/M
+Hewlett/M
+Heyerdahl/M
+Heywood/M
+Hezbollah/M
+Hezekiah/M
+Hf/M
+Hg/M
+Hialeah/M
+Hiawatha/M
+Hibernia/M
+Hibernian
+Hickman/M
+Hickok/M
+Hicks/M
+Hieronymus/M
+Higashiosaka
+Higgins/M
+Highlander/SM
+Highlands
+Highness/M
+Hilario/M
+Hilary/M
+Hilbert/M
+Hilda/M
+Hildebrand/M
+Hilfiger/M
+Hill/M
+Hillary/M
+Hillel/M
+Hilton/M
+Himalaya/SM
+Himalayan
+Himalayas/M
+Himmler/M
+Hinayana/M
+Hindemith/M
+Hindenburg/M
+Hindi/M
+Hindu/SM
+Hinduism/SM
+Hindustan/M
+Hindustani/SM
+Hines/M
+Hinton/M
+Hipparchus/M
+Hippocrates/M
+Hippocratic/M
+Hiram/M
+Hirobumi/M
+Hirohito/M
+Hiroshima/M
+Hispanic/SM
+Hispaniola/M
+Hiss/M
+Hitachi/M
+Hitchcock/M
+Hitler/MS
+Hittite/SM
+Hmong/M
+Ho/M
+Hobart/M
+Hobbes/M
+Hobbs/M
+Hockney/M
+Hodge/SM
+Hodges/M
+Hodgkin/M
+Hoff/M
+Hoffa/M
+Hoffman/M
+Hofstadter/M
+Hogan/M
+Hogarth/M
+Hogwarts/M
+Hohenlohe/M
+Hohenstaufen/M
+Hohenzollern/M
+Hohhot/M
+Hohokam/M
+Hokkaido/M
+Hokusai/M
+Holbein/M
+Holcomb/M
+Holden/M
+Holder/M
+Holiday/M
+Holiness
+Holland/ZSMR
+Hollander/M
+Hollerith/M
+Holley/M
+Hollie/M
+Hollis/M
+Holloway/M
+Holly/M
+Hollywood/M
+Holman/M
+Holmes/M
+Holocaust/M
+Holocene/M
+Holst/M
+Holstein/SM
+Holt/M
+Homer/M
+Homeric/M
+Hon
+Honda/M
+Honduran/MS
+Honduras/M
+Honecker/M
+Honeywell/M
+Hong
+Honiara/M
+Honolulu/M
+Honorable
+Honshu/M
+Hood/M
+Hooke/RM
+Hooker/M
+Hooper/M
+Hoosier/MS
+Hooters/M
+Hoover/MS
+Hope/M
+Hopewell/M
+Hopi/SM
+Hopkins/M
+Hopper/M
+Horace/M
+Horacio/M
+Horatio/M
+Hormel/M
+Hormuz/M
+Horn/M
+Hornblower/M
+Horne/M
+Horowitz/M
+Horthy/M
+Horton/M
+Horus/M
+Hosea/M
+Host/SM
+Hotpoint/M
+Hottentot/SM
+Houdini/M
+House/M
+Housman/M
+Houston/M
+Houyhnhnm/M
+Hovhaness/M
+Howard/M
+Howe/M
+Howell/MS
+Howells/M
+Howrah
+Hoyle/M
+Hrothgar/M
+Hts
+Huang/M
+Hubbard/M
+Hubble/M
+Hubei/M
+Huber/M
+Hubert/M
+Huck/M
+Huddersfield
+Hudson/M
+Huerta/M
+Huey/M
+Huff/M
+Huffman/M
+Huggins/M
+Hugh/MS
+Hughes/M
+Hugo/M
+Huguenot/MS
+Hui/M
+Huitzilopotchli/M
+Hull/M
+Humberto/M
+Humboldt/M
+Hume/M
+Hummel/M
+Hummer/M
+Humphrey/SM
+Humvee/M
+Hun/SM
+Hunan/M
+Hung/M
+Hungarian/SM
+Hungary/M
+Hunspell/M
+Hunt/MR
+Hunter/M
+Huntington/M
+Huntley/M
+Huntsville/M
+Hurd/M
+Hurley/M
+Huron/M
+Hurst/M
+Hus/M
+Hussein/M
+Husserl/M
+Hussite/M
+Huston/M
+Hutchinson/M
+Hutton/M
+Hutu/M
+Huxley/M
+Huygens/M
+Hyades/M
+Hyde/M
+Hyderabad/M
+Hydra/M
+Hymen/M
+Hyperion/M
+Hyundai/M
+Hz/M
+I'd
+I'll
+I'm
+I've
+I/M
+IA
+IBM/M
+ICBM/SM
+ICC
+ICU
+ID/SM
+IDE
+IE
+IED
+IEEE
+IKEA/M
+IL
+IMF/M
+IMHO
+IMNSHO
+IMO
+IN
+ING/M
+INRI
+INS
+IOU/M
+IP
+IPA
+IPO
+IQ/M
+IRA/SM
+IRC
+IRS/M
+ISBN
+ISIS
+ISO/M
+ISP
+ISS
+IT
+IUD
+IV/SM
+IVF
+Ia
+Iaccoca/M
+Iago/M
+Ian/M
+Iapetus/M
+Ibadan/M
+Iberia/M
+Iberian/M
+Ibiza/M
+Iblis/M
+Ibo/M
+Ibsen/M
+Icahn/M
+Icarus/M
+Ice
+Iceland/MRZ
+Icelander/M
+Icelandic/M
+Ida/M
+Idaho/SM
+Idahoan/MS
+Idahoes
+Ieyasu/M
+Ignacio/M
+Ignatius/M
+Igor/M
+Iguassu/M
+Ijsselmeer/M
+Ike/M
+Ikhnaton/M
+Ila/M
+Ilene/M
+Iliad/SM
+Ill
+Illinois/M
+Illinoisan/MS
+Illuminati/M
+Ilyushin/M
+Imelda/M
+Imhotep/M
+Imodium/M
+Imogene/M
+Imus/M
+In/M
+Ina/M
+Inc
+Inca/SM
+Inchon/M
+Incorporated
+Ind
+Independence/M
+India/M
+Indian/MS
+Indiana/M
+Indianan/SM
+Indianapolis/M
+Indianian
+Indies/M
+Indira/M
+Indochina/M
+Indochinese/M
+Indonesia/M
+Indonesian/SM
+Indore/M
+Indra/M
+Indus/M
+Indy/SM
+Ines/M
+Inez/M
+Inge/M
+Inglewood
+Ingram/M
+Ingres/M
+Ingrid/M
+Innocent/M
+Innsbruck
+Inonu/M
+Inquisition/M
+Inst
+Instagram/M
+Instamatic/M
+Intel/M
+Intelsat/M
+Internationale/M
+Internet/SM
+Interpol/M
+Inuit/MS
+Inuktitut/M
+Invar/M
+Io/M
+Ionesco/M
+Ionian/MS
+Ionic/SM
+Iowa/SM
+Iowan/MS
+Iphigenia/M
+Ipswich
+Iqaluit/M
+Iqbal/M
+Iquitos/M
+Ir/M
+Ira/M
+Iran/M
+Iranian/SM
+Iraq/M
+Iraqi/MS
+Ireland/M
+Irene/M
+Iris/M
+Irish/MR
+Irishman/M
+Irishmen/M
+Irishwoman/M
+Irishwomen/M
+Irkutsk/M
+Irma/M
+Iroquoian/SM
+Iroquois/M
+Irrawaddy/M
+Irtish/M
+Irvin/M
+Irvine/M
+Irving/M
+Irwin/M
+Isaac/M
+Isabel/M
+Isabella/M
+Isabelle/M
+Isaiah/M
+Iscariot/M
+Isfahan/M
+Isherwood/M
+Ishim/M
+Ishmael/M
+Ishtar/M
+Isiah/M
+Isidro/M
+Isis/M
+Islam/MS
+Islamabad/M
+Islamic/M
+Islamism/M
+Islamist/M
+Islamophobia
+Islamophobic
+Ismael/M
+Ismail/M
+Isolde/M
+Ispell/M
+Israel/SM
+Israeli/SM
+Israelite/M
+Issac/M
+Issachar/M
+Istanbul/M
+Isuzu/M
+It
+Itaipu/M
+Ital
+Italian/SM
+Italianate
+Italy/M
+Itasca/M
+Ithaca/M
+Ithacan/M
+Ito/M
+Iva/M
+Ivan/M
+Ivanhoe/M
+Ives/M
+Ivorian
+Ivory/M
+Ivy/M
+Iyar/M
+Izaak/M
+Izanagi/M
+Izanami/M
+Izhevsk/M
+Izmir/M
+Izod/M
+Izvestia/M
+J/MD
+JCS
+JD
+JFK/M
+JP
+JPEG
+JV
+Jack/M
+Jackie/M
+Jacklyn/M
+Jackson/M
+Jacksonian/M
+Jacksonville/M
+Jacky/M
+Jaclyn/M
+Jacob/SM
+Jacobean/M
+Jacobi/M
+Jacobin/M
+Jacobite/M
+Jacobs/M
+Jacobson/M
+Jacquard/M
+Jacqueline/M
+Jacquelyn/M
+Jacques/M
+Jacuzzi/M
+Jagger/M
+Jagiellon/M
+Jaguar/M
+Jahangir/M
+Jaime/M
+Jain/M
+Jainism/M
+Jaipur/M
+Jakarta/M
+Jake/M
+Jamaal/M
+Jamaica/M
+Jamaican/SM
+Jamal/M
+Jamar/M
+Jame/SM
+Jamel/M
+James/M
+Jamestown/M
+Jami/M
+Jamie/M
+Jan/M
+Jana/M
+Janacek/M
+Jane/M
+Janell/M
+Janelle/M
+Janet/M
+Janette/M
+Janice/M
+Janie/M
+Janine/M
+Janis/M
+Janissary/M
+Janjaweed/M
+Janna/M
+Jannie/M
+Jansen/M
+Jansenist/M
+January/SM
+Janus/M
+Jap/SM
+Japan/M
+Japanese/MS
+Japura/M
+Jared/M
+Jarlsberg/M
+Jarred/M
+Jarrett/M
+Jarrod/M
+Jarvis/M
+Jasmine/M
+Jason/M
+Jasper/M
+Jataka/M
+Java/SM
+JavaScript/M
+Javanese/M
+Javier/M
+Jaxartes/M
+Jay/M
+Jayapura/M
+Jayawardene/M
+Jaycee/MS
+Jaycees/M
+Jayne/M
+Jayson/M
+Jean/M
+Jeanette/M
+Jeanie/M
+Jeanine/M
+Jeanne/M
+Jeannette/M
+Jeannie/M
+Jeannine/M
+Jed/M
+Jedi/M
+Jeep/M
+Jeeves/M
+Jeff/M
+Jefferey/M
+Jefferson/M
+Jeffersonian/M
+Jeffery/M
+Jeffrey/M
+Jeffry/M
+Jehoshaphat/M
+Jehovah/M
+Jekyll/M
+Jenifer/M
+Jenkins/M
+Jenna/M
+Jenner/M
+Jennie/M
+Jennifer/M
+Jennings/M
+Jenny/M
+Jensen/M
+Jephthah/M
+Jerald/M
+Jeremiah/M
+Jeremiahs
+Jeremy/M
+Jeri/M
+Jericho/M
+Jermaine/M
+Jeroboam/M
+Jerold/M
+Jerome/M
+Jerri/M
+Jerrod/M
+Jerrold/M
+Jerry/M
+Jersey/MS
+Jerusalem/M
+Jess/M
+Jesse/M
+Jessica/M
+Jessie/M
+Jesuit/MS
+Jesus/M
+Jetway/M
+Jew/SM
+Jewel/M
+Jewell/M
+Jewess/MS
+Jewish/PM
+Jewry/M
+Jezebel/SM
+Jiangsu/M
+Jiangxi/M
+Jidda/M
+Jilin/M
+Jill/M
+Jillian/M
+Jim/M
+Jimenez/M
+Jimmie/M
+Jimmy/M
+Jinan/M
+Jinnah/M
+Jinny/M
+Jivaro/M
+Jo/M
+Joan/M
+Joann/M
+Joanna/M
+Joanne/M
+Joaquin/M
+Job/SM
+Jobs/M
+Jocasta/M
+Jocelyn/M
+Jock/M
+Jockey/M
+Jodi/M
+Jodie/M
+Jody/M
+Joe/M
+Joel/M
+Joey/M
+Jogjakarta/M
+Johann/M
+Johanna/M
+Johannes/M
+Johannesburg/M
+John/SM
+Johnathan/M
+Johnathon/M
+Johnie/M
+Johnnie/M
+Johnny/M
+Johns/M
+Johnson/M
+Johnston/M
+Jolene/M
+Jolson/M
+Jon/M
+Jonah/M
+Jonahs
+Jonas/M
+Jonathan/M
+Jonathon/M
+Jones/M
+Joni/M
+Jonson/M
+Joplin/M
+Jordan/M
+Jordanian/MS
+Jorge/M
+Jose/M
+Josef/M
+Josefa/M
+Josefina/M
+Joseph/M
+Josephine/M
+Josephs
+Josephson/M
+Josephus/M
+Josh/M
+Joshua/M
+Josiah/M
+Josie/M
+Josue/M
+Joule/M
+Jove/M
+Jovian/M
+Joy/M
+Joyce/M
+Joycean/M
+Joyner/M
+Jpn
+Jr/M
+Juan/M
+Juana/M
+Juanita/M
+Juarez/M
+Jubal/M
+Judaeo
+Judah/M
+Judaic
+Judaical
+Judaism/MS
+Judas/MS
+Judd/M
+Jude/M
+Judea/M
+Judges
+Judith/M
+Judson/M
+Judy/M
+Juggernaut/M
+Jul
+Jules/M
+Julia/M
+Julian/M
+Juliana/M
+Julianne/M
+Julie/M
+Juliet/M
+Juliette/M
+Julio/M
+Julius/M
+Julliard/M
+July/SM
+Jun/M
+June/SM
+Juneau/M
+Jung/M
+Jungfrau/M
+Jungian/M
+Junior/SM
+Junker/SM
+Juno/M
+Jupiter/M
+Jurassic/M
+Jurua/M
+Justice/M
+Justin/M
+Justine/M
+Justinian/M
+Jutland/M
+Juvenal/M
+K/SMNGJ
+KB/M
+KC
+KFC/M
+KGB/M
+KIA
+KKK/M
+KO/M
+KP
+KS
+KY
+Kaaba/M
+Kabul/M
+Kafka/M
+Kafkaesque/M
+Kagoshima/M
+Kahlua/M
+Kaifeng/M
+Kaiser/MS
+Kaitlin/M
+Kalahari/M
+Kalamazoo/M
+Kalashnikov/M
+Kalb/M
+Kalevala/M
+Kalgoorlie/M
+Kali/M
+Kalmyk/M
+Kama/M
+Kamchatka/M
+Kamehameha/M
+Kampala/M
+Kampuchea/M
+Kan/SM
+Kanchenjunga/M
+Kandahar/M
+Kandinsky/M
+Kane/M
+Kannada/M
+Kano/M
+Kanpur/M
+Kansan/MS
+Kansas/M
+Kant/M
+Kantian/M
+Kaohsiung/M
+Kaposi/M
+Kara/M
+Karachi/M
+Karaganda/M
+Karakorum/M
+Karamazov/M
+Kareem/M
+Karen/M
+Karenina/M
+Kari/M
+Karin/M
+Karina/M
+Karl/M
+Karla/M
+Karloff/M
+Karo/M
+Karol/M
+Karroo/M
+Karyn/M
+Kasai/M
+Kasey/M
+Kashmir/SM
+Kasparov/M
+Kate/M
+Katelyn/M
+Katharine/M
+Katherine/M
+Katheryn/M
+Kathiawar/M
+Kathie/M
+Kathleen/M
+Kathmandu/M
+Kathrine/M
+Kathryn/M
+Kathy/M
+Katie/M
+Katina/M
+Katmai/M
+Katowice/M
+Katrina/M
+Katy/M
+Kauai/M
+Kaufman/M
+Kaunas/M
+Kaunda/M
+Kawabata/M
+Kawasaki/M
+Kay/M
+Kaye/M
+Kayla/M
+Kazakh/M
+Kazakhs
+Kazakhstan/M
+Kazan/M
+Kazantzakis/M
+Kb/M
+Keaton/M
+Keats/M
+Keck/M
+Keenan/M
+Keewatin/M
+Keillor/M
+Keisha/M
+Keith/M
+Keller/M
+Kelley/M
+Kelli/M
+Kellie/M
+Kellogg/M
+Kelly/M
+Kelsey/M
+Kelvin/M
+Kemerovo/M
+Kemp/M
+Kempis/M
+Ken/M
+Kendall/M
+Kendra/M
+Kendrick/M
+Kenmore/M
+Kennan/M
+Kennedy/M
+Kenneth/M
+Kennith/M
+Kenny/M
+Kent/M
+Kenton/M
+Kentuckian/MS
+Kentucky/M
+Kenya/M
+Kenyan/SM
+Kenyatta/M
+Kenyon/M
+Keogh/M
+Keokuk/M
+Kepler/M
+Kerensky/M
+Keri/M
+Kermit/M
+Kern/M
+Kerouac/M
+Kerr/M
+Kerri/M
+Kerry/M
+Kettering/M
+Keven/M
+Kevin/M
+Kevlar/M
+Kevorkian/M
+Kewpie/M
+Key/M
+Keynes/M
+Keynesian/M
+Khabarovsk/M
+Khachaturian/M
+Khalid/M
+Khan/M
+Kharkov/M
+Khartoum/M
+Khayyam/M
+Khazar/M
+Khmer/M
+Khoikhoi/M
+Khoisan/M
+Khomeini/M
+Khorana/M
+Khrushchev/M
+Khufu/M
+Khulna/M
+Khwarizmi/M
+Khyber/M
+Kickapoo/M
+Kidd/M
+Kiel/M
+Kierkegaard/M
+Kieth/M
+Kiev/M
+Kigali/M
+Kikuyu/M
+Kilauea/M
+Kilimanjaro/M
+Kilroy/M
+Kim/M
+Kimberley/M
+Kimberly/M
+King/M
+Kingston/M
+Kingstown/M
+Kinko's
+Kinney/M
+Kinsey/M
+Kinshasa/M
+Kiowa/MS
+Kip/M
+Kipling/M
+Kirby/M
+Kirchhoff/M
+Kirchner/M
+Kirghistan/M
+Kirghiz/M
+Kirghizia/M
+Kiribati/M
+Kirinyaga/M
+Kirk/M
+Kirkland/M
+Kirkpatrick/M
+Kirov/M
+Kirsten/M
+Kisangani/M
+Kishinev/M
+Kislev/M
+Kissinger/M
+Kit/M
+Kitakyushu/M
+Kitchener/M
+Kitty/M
+Kiwanis/M
+Klan/M
+Klansman/M
+Klaus/M
+Klee/M
+Kleenex/MS
+Klein/M
+Klimt/M
+Kline/M
+Klingon/M
+Klondike/MS
+Kmart/M
+Knapp/M
+Knesset/M
+Kngwarreye/M
+Knickerbocker/M
+Knievel/M
+Knight/M
+Knopf/M
+Knossos/M
+Knowles/M
+Knox/M
+Knoxville/M
+Knudsen/M
+Knuth/M
+Knuths
+Kobe/M
+Koch/M
+Kochab/M
+Kodachrome/M
+Kodak/M
+Kodaly/M
+Kodiak/M
+Koestler/M
+Kohinoor/M
+Kohl/M
+Koizumi/M
+Kojak/M
+Kolyma/M
+Kommunizma/M
+Kong/M
+Kongo/M
+Konrad/M
+Koontz/M
+Koppel/M
+Koran/MS
+Koranic
+Korea/M
+Korean/SM
+Kornberg/M
+Kory/M
+Korzybski/M
+Kosciusko/M
+Kossuth/M
+Kosygin/M
+Kotlin/M
+Koufax/M
+Kowloon/M
+Kr/M
+Kraft/M
+Krakatoa/M
+Krakow/M
+Kramer/M
+Krasnodar/M
+Krasnoyarsk/M
+Krebs/M
+Kremlin/M
+Kremlinologist
+Kremlinology
+Kresge/M
+Kringle/M
+Kris/M
+Krishna/M
+Krishnamurti/M
+Krista/M
+Kristen/M
+Kristi/M
+Kristie/M
+Kristin/M
+Kristina/M
+Kristine/M
+Kristopher/M
+Kristy/M
+Kroc/M
+Kroger/M
+Kronecker/M
+Kropotkin/M
+Kruger/M
+Krugerrand/M
+Krupp/M
+Krystal/M
+Kshatriya/M
+Kublai/M
+Kubrick/M
+Kuhn/M
+Kuibyshev/M
+Kulthumm/M
+Kunming/M
+Kuomintang/M
+Kurd/M
+Kurdish/M
+Kurdistan/M
+Kurosawa/M
+Kurt/M
+Kurtis/M
+Kusch/M
+Kutuzov/M
+Kuwait/M
+Kuwaiti/SM
+Kuznets/M
+Kuznetsk/M
+Kwakiutl/M
+Kwan/M
+Kwangju/M
+Kwanzaa/MS
+Ky/MH
+Kyle/M
+Kyoto/M
+Kyrgyzstan/M
+Kyushu/M
+L'Amour/M
+L'Enfant
+L'Oreal/M
+L'Ouverture/M
+L/MN
+LA
+LAN/M
+LBJ/M
+LC
+LCD/M
+LCM
+LDC
+LED/M
+LG/M
+LGBT
+LIFO
+LL
+LLB/M
+LLD/M
+LNG
+LOGO
+LP/M
+LPG
+LPN/SM
+LSAT
+LSD/M
+LVN
+La/SM
+Lab
+Laban/M
+Labrador/SM
+Labradorean
+Lacey/M
+Lachesis/M
+Lactobacillus
+Lacy/M
+Ladoga/M
+Ladonna/M
+Lady/M
+Ladyship/MS
+Lafayette/M
+Lafitte/M
+Lagos/M
+Lagrange/M
+Lagrangian/M
+Lahore/M
+Laius/M
+Lajos/M
+Lakeisha/M
+Lakewood
+Lakisha/M
+Lakota/M
+Lakshmi/M
+Lamaism/SM
+Lamar/M
+Lamarck/M
+Lamaze/M
+Lamb/M
+Lambert/M
+Lamborghini/M
+Lambrusco/M
+Lamentations
+Lamont/M
+Lana/M
+Lanai/M
+Lancashire/M
+Lancaster/M
+Lance/M
+Lancelot/M
+Land/M
+Landon/M
+Landry/M
+Landsat/M
+Landsteiner/M
+Lane/M
+Lang/M
+Langerhans/M
+Langland/M
+Langley/M
+Langmuir/M
+Lanka/M
+Lankan/M
+Lanny/M
+Lansing/M
+Lanzhou/M
+Lao/SM
+Laocoon/M
+Laos/M
+Laotian/SM
+Laplace/M
+Laplacian
+Lapland/MR
+Lapp/SM
+Lara/M
+Laramie/M
+Lardner/M
+Laredo/M
+Larousse/M
+Larry/M
+Lars/MN
+Larsen/M
+Larson/M
+Lascaux/M
+Lassa/M
+Lassen/M
+Lassie/M
+Lat/M
+Latasha/M
+Lateran/M
+Latham/M
+Latin/MRS
+Latina
+Latino/SM
+Latinx
+Latisha/M
+Latonya/M
+Latoya/M
+Latrobe/M
+Latvia/M
+Latvian/MS
+Laud/MR
+Lauder/M
+Laue/M
+Laundromat/M
+Laura/M
+Laurasia/M
+Laurel/M
+Lauren/M
+Laurence/M
+Laurent/M
+Lauri/M
+Laurie/M
+Laval/M
+Lavern/M
+Laverne/M
+Lavoisier/M
+Lavonne/M
+Lawanda/M
+Lawrence/M
+Lawson/M
+Layamon/M
+Layla/M
+Lazaro/M
+Lazarus/M
+Le/SM
+Lea/M
+Leach/M
+Leadbelly/M
+Leah/M
+Leakey/M
+Lean/M
+Leander/M
+Leann/M
+Leanna/M
+Leanne/M
+Lear/M
+Learjet/M
+Leary/M
+Leavenworth/M
+Lebanese/M
+Lebanon/M
+Lebesgue/M
+Leblanc/M
+Leda/M
+Lederberg/M
+Lee/M
+Leeds/M
+Leeuwenhoek/M
+Leeward/M
+Left
+Legendre/M
+Leger/M
+Leghorn/M
+Lego/M
+Legree/M
+Lehman/M
+Leibniz/M
+Leicester/SM
+Leiden/M
+Leif/M
+Leigh/M
+Leila/M
+Leipzig/M
+Lela/M
+Leland/M
+Lelia/M
+Lemaitre/M
+Lemuel/M
+Lemuria/M
+Len/M
+Lena/M
+Lenard/M
+Lenin/M
+Leningrad/M
+Leninism/M
+Leninist/M
+Lennon/M
+Lenny/M
+Leno/M
+Lenoir/M
+Lenora/M
+Lenore/M
+Lent/SMN
+Lenten/M
+Leo/SM
+Leola/M
+Leon/M
+Leona/M
+Leonard/M
+Leonardo/M
+Leoncavallo/M
+Leonel/M
+Leonid/M
+Leonidas/M
+Leonor/M
+Leopold/M
+Leopoldo/M
+Lepidus/M
+Lepke/M
+Lepus/M
+Lerner/M
+Leroy/M
+Les/M
+Lesa/M
+Lesley/M
+Leslie/M
+Lesotho/M
+Lesseps/M
+Lessie/M
+Lester/M
+Lestrade/M
+Leta/M
+Letha/M
+Lethe/M
+Leticia/M
+Letitia/M
+Letterman/M
+Levant/M
+Levesque/M
+Levi/SM
+Leviathan/M
+Levine/M
+Leviticus/M
+Levitt/M
+Levy/M
+Lew/M
+Lewinsky/M
+Lewis/M
+Lexington/M
+Lexus/M
+Lhasa/MS
+Lhotse/M
+Li/MY
+Liaoning/M
+Libby/M
+Liberace/M
+Liberal
+Liberia/M
+Liberian/SM
+Libra/MS
+LibreOffice/M
+Libreville/M
+Librium/M
+Libya/M
+Libyan/SM
+Lichtenstein/M
+Lidia/M
+Lie/M
+Lieberman/M
+Liebfraumilch/M
+Liechtenstein/ZMR
+Liechtensteiner/M
+Liege/M
+Lieut
+Lila/M
+Lilia/M
+Lilian/M
+Liliana/M
+Lilith/M
+Liliuokalani/M
+Lille/M
+Lillian/M
+Lillie/M
+Lilliput/M
+Lilliputian/MS
+Lilly/M
+Lilongwe/M
+Lily/M
+Lima/M
+Limbaugh/M
+Limbo
+Limburger/M
+Limoges/M
+Limousin/M
+Limpopo/M
+Lin/M
+Lina/M
+Lincoln/MS
+Lind/M
+Linda/M
+Lindbergh/M
+Lindsay/M
+Lindsey/M
+Lindy/M
+Linnaeus/M
+Linotype/M
+Linton/M
+Linus/M
+Linux/MS
+Linwood/M
+Lionel/M
+Lipizzaner/M
+Lippi/M
+Lippmann/M
+Lipscomb/M
+Lipton/M
+Lisa/M
+Lisbon/M
+Lissajous/M
+Lister/M
+Listerine/M
+Liston/M
+Liszt/M
+Lithuania/M
+Lithuanian/MS
+Little/M
+Litton/M
+Liverpool/M
+Liverpudlian/SM
+Livia/M
+Livingston/M
+Livingstone/M
+Livonia/M
+Livy/M
+Liz/M
+Liza/M
+Lizzie/M
+Lizzy/M
+Ljubljana/M
+Llewellyn/M
+Lloyd/M
+Ln
+Loafer/SM
+Lobachevsky/M
+Lochinvar/M
+Locke/M
+Lockean/M
+Lockheed/M
+Lockwood/M
+Lodge/M
+Lodz/M
+Loewe/M
+Loewi/M
+Loews/M
+Logan/M
+Lohengrin/M
+Loire/M
+Lois/M
+Loki/M
+Lola/M
+Lolita/M
+Lollard/M
+Lollobrigida/M
+Lombard/M
+Lombardi/M
+Lombardy/M
+Lome/M
+Lon/M
+London/MRZ
+Londoner/M
+Long/M
+Longfellow/M
+Longstreet/M
+Longueuil
+Lonnie/M
+Lopez/M
+Lora/M
+Loraine/M
+Lord/SM
+Lordship/SM
+Lorelei/M
+Loren/M
+Lorena/M
+Lorene/M
+Lorentz/M
+Lorentzian
+Lorenz/M
+Lorenzo/M
+Loretta/M
+Lori/M
+Lorie/M
+Lorna/M
+Lorraine/M
+Lorre/M
+Lorrie/M
+Los
+Lot/M
+Lothario/SM
+Lott/M
+Lottie/M
+Lou/M
+Louella/M
+Louie/M
+Louis/M
+Louisa/M
+Louise/M
+Louisiana/M
+Louisianan/MS
+Louisianian/MS
+Louisville/M
+Lourdes/M
+Louvre/M
+Love/M
+Lovecraft/M
+Lovelace/M
+Lowe/M
+Lowell/M
+Lowenbrau/M
+Lowery/M
+Lowlands
+Loyang/M
+Loyd/M
+Loyola/M
+Lr
+Lt
+Ltd
+Lu/M
+Luanda/M
+Luann/M
+Lubavitcher/M
+Lubbock/M
+Lubumbashi/M
+Lucas/M
+Luce/M
+Lucia/M
+Lucian/M
+Luciano/M
+Lucien/M
+Lucifer/M
+Lucile/M
+Lucille/M
+Lucinda/M
+Lucio/M
+Lucite/SM
+Lucius/M
+Lucknow/M
+Lucretia/M
+Lucretius/M
+Lucy/M
+Luddite/MS
+Ludhiana/M
+Ludwig/M
+Luella/M
+Lufthansa/M
+Luftwaffe/M
+Luger/M
+Lugosi/M
+Luigi/M
+Luis/M
+Luisa/M
+Luke/M
+Lula/M
+Lully/M
+Lulu/M
+Lumiere/M
+Luna/M
+Lupe/M
+Lupercalia/M
+Lupus/M
+Luria/M
+Lusaka/M
+Lusitania/M
+Luther/M
+Lutheran/SM
+Lutheranism/MS
+Luvs/M
+Luxembourg/ZMR
+Luxembourger/M
+Luxembourgian
+Luz/M
+Luzon/M
+Lvov/M
+LyX/M
+Lyallpur
+Lycra/M
+Lycurgus/M
+Lydia/M
+Lydian/SM
+Lyell/M
+Lyle/M
+Lyly/M
+Lyman/M
+Lyme/M
+Lynch/M
+Lynda/M
+Lyndon/M
+Lynette/M
+Lynn/M
+Lynne/M
+Lynnette/M
+Lyon/SM
+Lyons/M
+Lyra/M
+Lysenko/M
+Lysistrata/M
+Lysol/M
+M/SMGB
+MA/M
+MASH
+MB/M
+MBA/M
+MC
+MCI/M
+MD/M
+MDT
+ME
+MEGO/S
+MFA/M
+MGM/M
+MHz
+MI/M
+MIA
+MIDI/M
+MIPS
+MIRV
+MIT/M
+MM
+MN
+MO
+MOOC
+MP/M
+MPEG
+MRI/M
+MS/M
+MSG/M
+MST/M
+MSW
+MT/M
+MTV/M
+MVP/M
+MW
+Maalox/M
+Mabel/M
+Mable/M
+Mac/M
+MacArthur/M
+MacBride/M
+MacDonald/M
+MacLeish/M
+Macao/M
+Macaulay/M
+Macbeth/M
+Maccabees
+Maccabeus/M
+Mace/M
+Macedon/M
+Macedonia/M
+Macedonian/SM
+Mach/M
+Machiavelli/M
+Machiavellian/M
+Macias/M
+Macintosh/M
+Mack/M
+Mackenzie/M
+Mackinac/M
+Mackinaw/M
+Macmillan/M
+Macon/M
+Macumba/M
+Macy/M
+Madagascan/SM
+Madagascar/M
+Madam
+Madden/M
+Maddox/M
+Madeira/SM
+Madeleine/M
+Madeline/M
+Madelyn/M
+Madge/M
+Madison/M
+Madonna/SM
+Madras/M
+Madrid/M
+Madurai/M
+Mae/M
+Maeterlinck/M
+Mafia/MS
+Mafioso/M
+Magdalena/M
+Magdalene/M
+Magellan/M
+Magellanic/M
+Maggie/M
+Maghreb/M
+Magi
+Maginot/M
+Magnificat
+Magnitogorsk/M
+Magog/M
+Magoo/M
+Magritte/M
+Magsaysay/M
+Magus
+Magyar/SM
+Mahabharata/M
+Maharashtra/M
+Mahavira/M
+Mahayana/M
+Mahayanist/M
+Mahdi/M
+Mahfouz/M
+Mahican/SM
+Mahler/M
+Mai/M
+Maidenform/M
+Maigret/M
+Mailer/M
+Maillol/M
+Maiman/M
+Maimonides/M
+Maine/MZR
+Mainer/M
+Maisie/M
+Maitreya/M
+Maj
+Majesty
+Major/M
+Majorca/M
+Majuro/M
+Makarios/M
+Maker/M
+Malabar/M
+Malabo/M
+Malacca/M
+Malachi/M
+Malagasy/M
+Malamud/M
+Malaprop/M
+Malawi/M
+Malawian/SM
+Malay/MS
+Malaya/M
+Malayalam/M
+Malayan/MS
+Malaysia/M
+Malaysian/MS
+Malcolm/M
+Maldive/MS
+Maldives/M
+Maldivian/MS
+Maldonado/M
+Male/M
+Mali/M
+Malian/SM
+Malibu/M
+Malinda/M
+Malinowski/M
+Mallarme/M
+Mallomars/M
+Mallory/M
+Malone/M
+Malory/M
+Malplaquet/M
+Malraux/M
+Malta/M
+Maltese/M
+Malthus/M
+Malthusian/SM
+Mameluke/M
+Mamet/M
+Mamie/M
+Mamore/M
+Man/M
+Managua/M
+Manama/M
+Manasseh/M
+Manchester/M
+Manchu/SM
+Manchuria/M
+Manchurian/M
+Mancini/M
+Mancunian/MS
+Mandalay/M
+Mandarin/M
+Mandela/M
+Mandelbrot/M
+Mandingo/M
+Mandrell/M
+Mandy/M
+Manet/M
+Manfred/M
+Manhattan/SM
+Mani/M
+Manichean/M
+Manila/SM
+Manitoba/M
+Manitoulin/M
+Manley/M
+Mann/GM
+Mannheim/M
+Manning/M
+Mansfield/M
+Manson/M
+Mantegna/M
+Mantle/M
+Manuel/M
+Manuela/M
+Manx/M
+Mao/M
+Maoism/SM
+Maoist/SM
+Maori/MS
+Mapplethorpe/M
+Maputo/M
+Mar/SM
+Mara/M
+Maracaibo/M
+Marat/M
+Maratha/M
+Marathi/M
+Marathon/M
+Marc/M
+Marceau/M
+Marcel/M
+Marcelino/M
+Marcella/M
+Marcelo/M
+March/MS
+Marci/M
+Marcia/M
+Marciano/M
+Marcie/M
+Marco/MS
+Marconi/M
+Marcos/M
+Marcus/M
+Marcuse
+Marcy/M
+Marduk/M
+Margaret/M
+Margarita/M
+Margarito/M
+Marge/M
+Margery/M
+Margie/M
+Margo/M
+Margot
+Margret/M
+Margrethe/M
+Marguerite/M
+Mari/SM
+Maria/M
+MariaDB/M
+Marian/M
+Mariana/SM
+Marianas/M
+Marianne/M
+Mariano/M
+Maribel/M
+Maricela/M
+Marie/M
+Marietta/M
+Marilyn/M
+Marin/M
+Marina/M
+Marine/SM
+Mario/M
+Marion/M
+Maris/M
+Marisa/M
+Marisol/M
+Marissa/M
+Maritain/M
+Maritza/M
+Mariupol
+Marius/M
+Marjorie/M
+Marjory/M
+Mark/SM
+Markab/M
+Markham/M
+Markov/M
+Marks/M
+Marla/M
+Marlboro/M
+Marlborough/M
+Marlene/M
+Marley/M
+Marlin/M
+Marlon/M
+Marlowe/M
+Marmara/M
+Marne/M
+Maronite/M
+Marple/M
+Marquesas/M
+Marquette/M
+Marquez/M
+Marquis/M
+Marquita/M
+Marrakesh/M
+Marriott/M
+Mars/MS
+Marsala/M
+Marseillaise/MS
+Marseilles/M
+Marsh/M
+Marsha/M
+Marshall/M
+Marta/M
+Martel/M
+Martha/M
+Martial/M
+Martian/SM
+Martin/M
+Martina/M
+Martinez/M
+Martinique/M
+Marty/M
+Marva/M
+Marvell/M
+Marvin/M
+Marx/M
+Marxian
+Marxism/SM
+Marxist/SM
+Mary/M
+Maryann/M
+Maryanne/M
+Maryellen/M
+Maryland/MR
+Marylander/M
+Marylou/M
+Masada/M
+Masai/M
+Masaryk/M
+Mascagni/M
+Masefield/M
+Maserati/M
+Maseru/M
+Mashhad/M
+Mason/MS
+Masonic/M
+Masonite/M
+Mass/MS
+Massachusetts/M
+Massasoit/M
+Massenet/M
+Massey/M
+Master/S
+MasterCard/M
+Masters/M
+Mather/M
+Matheson/M
+Mathew/SM
+Mathews/M
+Mathewson/M
+Mathias/M
+Mathis/M
+Matilda/M
+Matisse/M
+Matlab/M
+Matt/M
+Mattel/M
+Matterhorn/M
+Matthew/SM
+Matthews/M
+Matthias/M
+Mattie/M
+Maud/M
+Maude/M
+Maugham/M
+Maui/M
+Maupassant/M
+Maura/M
+Maureen/M
+Mauriac/M
+Maurice/M
+Mauricio/M
+Maurine/M
+Mauritania/M
+Mauritanian/SM
+Mauritian/SM
+Mauritius/M
+Mauro/M
+Maurois/M
+Mauryan/M
+Mauser/M
+Mavis/M
+Max/M
+Maximilian/M
+Maxine/M
+Maxwell/M
+May/SMR
+Maya/SM
+Mayan/MS
+Mayer/M
+Mayfair/M
+Mayflower/M
+Maynard/M
+Mayo/M
+Maypole
+Mayra/M
+Mays/M
+Maytag/M
+Mazama/M
+Mazarin/M
+Mazatlan/M
+Mazda/M
+Mazola/M
+Mazzini/M
+Mb/M
+Mbabane/M
+Mbini/M
+McAdam/M
+McBride/M
+McCain/M
+McCall/M
+McCarthy/M
+McCarthyism/M
+McCartney/M
+McCarty/M
+McClain/M
+McClellan/M
+McClure/M
+McConnell/M
+McCormick/M
+McCoy/M
+McCray/M
+McCullough/M
+McDaniel/M
+McDonald/M
+McDonnell/M
+McDowell/M
+McEnroe/M
+McFadden/M
+McFarland/M
+McGee/M
+McGovern/M
+McGowan/M
+McGuffey/M
+McGuire/M
+McIntosh/M
+McIntyre/M
+McJob
+McKay/M
+McKee/M
+McKenzie/M
+McKinley/M
+McKinney/M
+McKnight/M
+McLaughlin/M
+McLean/M
+McLeod/M
+McLuhan/M
+McMahon/M
+McMillan/M
+McNamara/M
+McNaughton/M
+McNeil/M
+McPherson/M
+McQueen/M
+McVeigh/M
+Md/M
+Me
+Mead/M
+Meade/M
+Meadows/M
+Meagan/M
+Meany/M
+Mecca/MS
+Medan/M
+Medea/M
+Medellin/M
+Media/M
+Medicaid/SM
+Medicare/SM
+Medici/M
+Medina/M
+Mediterranean/MS
+Medusa/M
+Meg/M
+Megan/M
+Meghan/M
+Meier/M
+Meighen/M
+Meiji/M
+Meir/M
+Mejia/M
+Mekong/M
+Mel/M
+Melanesia/M
+Melanesian/M
+Melanie/M
+Melba/M
+Melbourne/M
+Melchior/M
+Melchizedek/M
+Melendez/M
+Melinda/M
+Melisa/M
+Melisande/M
+Melissa/M
+Mellon/M
+Melody/M
+Melpomene/M
+Melton/M
+Melva/M
+Melville/M
+Melvin/M
+Memcached/M
+Memling/M
+Memphis/M
+Menander/M
+Mencius/M
+Mencken/M
+Mendel/M
+Mendeleev/M
+Mendelian/M
+Mendelssohn/M
+Mendez/M
+Mendocino/M
+Mendoza/M
+Menelaus/M
+Menelik/M
+Menes/M
+Mengzi
+Menkalinan/M
+Menkar/M
+Menkent/M
+Mennen/M
+Mennonite/MS
+Menominee/M
+Menotti/M
+Mensa/M
+Mentholatum/M
+Menuhin/M
+Menzies/M
+Mephisto
+Mephistopheles/M
+Merak/M
+Mercado/M
+Mercator/M
+Mercedes/M
+Mercer/M
+Mercia/M
+Merck/M
+Mercurochrome/M
+Mercury/SM
+Meredith/M
+Merino/M
+Merle/M
+Merlin/M
+Merlot/M
+Merovingian/M
+Merriam/M
+Merrick/M
+Merrill/M
+Merrimack/M
+Merritt/M
+Merthiolate/M
+Merton/M
+Mervin/M
+Mesa/M
+Mesabi/M
+Mesmer/M
+Mesolithic/M
+Mesopotamia/M
+Mesopotamian
+Mesozoic/M
+Messerschmidt/M
+Messiaen/M
+Messiah/M
+Messiahs
+Messianic
+Messieurs
+Metallica/M
+Metamucil/M
+Methodism/SM
+Methodist/SM
+Methuselah/M
+Metternich/M
+Meuse/M
+Mex
+Mexicali/M
+Mexican/MS
+Mexico/M
+Meyer/MS
+Meyerbeer/M
+Meyers/M
+Mfume/M
+Mg/M
+Mgr
+MiG/M
+Mia/M
+Miami/MS
+Miaplacidus/M
+Micah/M
+Micawber/M
+Mich/M
+Michael/M
+Michaelmas/MS
+Micheal/M
+Michel/M
+Michelangelo/M
+Michele/M
+Michelin/M
+Michelle/M
+Michelob/M
+Michelson/M
+Michigan/M
+Michigander/MS
+Michiganite
+Mick/M
+Mickey/M
+Mickie/M
+Micky/M
+Micmac/SM
+Micronesia/M
+Micronesian/M
+Microsoft/M
+Midas/M
+Middleton/M
+Mideast
+Mideastern
+Midland/MS
+Midway/M
+Midwest/M
+Midwestern/MR
+Miguel/M
+Mike/M
+Mikhail/M
+Mikoyan/M
+Milagros/M
+Milan/M
+Milanese
+Mildred/M
+Miles/M
+Milford/M
+Milken/M
+Mill/SMR
+Millard/M
+Millay/M
+Miller/M
+Millet/M
+Millicent/M
+Millie/M
+Millikan/M
+Mills/M
+Milne/M
+Milo/M
+Milosevic/M
+Milquetoast/M
+Miltiades/M
+Milton/M
+Miltonian
+Miltonic/M
+Miltown/M
+Milwaukee/M
+Mimi/M
+Mimosa/M
+Min/M
+Minamoto/M
+Mindanao/M
+Mindoro/M
+Mindy/M
+Minerva/M
+Ming/M
+Mingus/M
+Minn
+Minneapolis/M
+Minnelli/M
+Minnesota/M
+Minnesotan/SM
+Minnie/M
+Minoan/MS
+Minolta/M
+Minos/M
+Minot/M
+Minotaur/M
+Minsk/M
+Minsky/M
+Mintaka/M
+Minuit/M
+Minuteman/M
+Miocene/M
+Mir/M
+Mira/M
+Mirabeau/M
+Mirach/M
+Miranda/M
+Mirfak/M
+Miriam/M
+Miro/M
+Mirzam/M
+Miskito/M
+Miss
+Mississauga/M
+Mississippi/M
+Mississippian/SM
+Missouri/M
+Missourian/MS
+Missy/M
+Mistassini/M
+Mister
+Mistress
+Misty/M
+Mitch/M
+Mitchel/M
+Mitchell/M
+Mitford/M
+Mithra/M
+Mithridates/M
+Mitsubishi/M
+Mitterrand/M
+Mitty/M
+Mitzi/M
+Mixtec/M
+Mizar/M
+Mk
+Mlle
+Mme/S
+Mn/M
+Mnemosyne/M
+Mo/M
+Mobil/M
+Mobile/M
+Mobutu/M
+Modesto/M
+Modigliani/M
+Moe/M
+Moet/M
+Mogadishu/M
+Mogul/MS
+Mohacs/M
+Mohamed/M
+Mohammad/M
+Mohammedan/SM
+Mohammedanism/SM
+Mohave/SM
+Mohawk/SM
+Mohegan
+Moho/M
+Mohorovicic/M
+Moira/M
+Moises/M
+Moiseyev/M
+Mojave/SM
+Moldavia/M
+Moldavian
+Moldova/M
+Moldovan
+Moliere/M
+Molina/M
+Moll/M
+Mollie/M
+Molly/M
+Molnar/M
+Moloch/M
+Molokai/M
+Molotov/M
+Moluccas/M
+Mombasa/M
+Mon/SM
+Mona/M
+Monacan
+Monaco/M
+Mondale/M
+Monday/SM
+Mondrian/M
+Monegasque/SM
+Monera/M
+Monet/M
+MongoDB/M
+Mongol/SM
+Mongolia/M
+Mongolian/SM
+Mongolic/M
+Mongoloid
+Monica/M
+Monique/M
+Monk/M
+Monmouth/M
+Monongahela/M
+Monroe/M
+Monrovia/M
+Monsanto/M
+Monsieur/M
+Monsignor/SM
+Mont/M
+Montague/M
+Montaigne/M
+Montana/M
+Montanan/SM
+Montcalm/M
+Monte/M
+Montenegrin/M
+Montenegro/M
+Monterrey/M
+Montesquieu/M
+Montessori/M
+Monteverdi/M
+Montevideo/M
+Montezuma/M
+Montgolfier/M
+Montgomery/M
+Monticello/M
+Montoya/M
+Montpelier/M
+Montrachet/M
+Montreal/M
+Montserrat/M
+Monty/M
+Moody/M
+Moog/M
+Moon/M
+Mooney/M
+Moor/SM
+Moore/M
+Moorish/M
+Morales/M
+Moran/M
+Moravia/M
+Moravian/M
+Mordred/M
+More/M
+Moreno/M
+Morgan/SM
+Moriarty/M
+Morin/M
+Morison/M
+Morita/M
+Morley/M
+Mormon/SM
+Mormonism/SM
+Moro/M
+Moroccan/SM
+Morocco/M
+Moroni/M
+Morpheus/M
+Morphy/M
+Morris/M
+Morrison/M
+Morrow/M
+Morse/M
+Mort/M
+Mortimer/M
+Morton/M
+Mosaic/M
+Moscow/M
+Moseley/M
+Moselle/M
+Moses/M
+Mosley/M
+Moss/M
+Mosul/M
+Motorola/M
+Motown/M
+Motrin/M
+Mott/M
+Moulton/M
+Mount/M
+Mountbatten/M
+Mountie/MS
+Moussorgsky/M
+Mouthe/M
+Mouton/M
+Mowgli/M
+Mozambican/SM
+Mozambique/M
+Mozart/M
+Mozilla/M
+Mr/SM
+Ms/S
+Msgr
+Mt
+Muawiya/M
+Mubarak/M
+Mueller/M
+Muenster/MS
+Mugabe/M
+Muhammad/M
+Muhammadan/MS
+Muhammadanism/SM
+Muir/M
+Mujib/M
+Mulder/M
+Mullen/M
+Muller/M
+Mulligan/M
+Mullikan/M
+Mullins/M
+Mulroney/M
+Multan/M
+Multics
+Mumbai/M
+Mumford/M
+Munch/M
+Munchhausen/M
+Munich/M
+Munoz/M
+Munro/M
+Munster/M
+Muppet/M
+Murasaki/M
+Murat/M
+Murchison/M
+Murcia
+Murdoch/M
+Muriel/M
+Murillo/M
+Murine/M
+Murmansk/M
+Murphy/M
+Murray/M
+Murrow/M
+Murrumbidgee/M
+Muscat/M
+Muscovite/M
+Muscovy/M
+Muse/M
+Musharraf/M
+Musial/M
+Muskogee/M
+Muslim/MS
+Mussolini/M
+Mussorgsky/M
+Mutsuhito/M
+Muzak/M
+MySQL/M
+MySpace/M
+Myanmar/M
+Mycenae/M
+Mycenaean/M
+Myers/M
+Mylar/MS
+Myles/M
+Myra/M
+Myrdal/M
+Myrna/M
+Myron/M
+Myrtle/M
+Mysore/M
+Myst/M
+N'Djamena
+N/MD
+NAACP/M
+NAFTA/M
+NASA/M
+NASCAR/M
+NASDAQ/M
+NATO/M
+NB
+NBA/M
+NBC/M
+NBS
+NC
+NCAA/M
+NCO
+ND
+NE/M
+NEH
+NF
+NFC
+NFL/M
+NH
+NHL/M
+NIH
+NIMBY
+NJ
+NLRB
+NM
+NORAD/M
+NOW
+NP
+NPR/M
+NR
+NRA
+NRC
+NS
+NSA/M
+NSC
+NSF
+NSFW
+NT
+NV
+NVIDIA/M
+NW/M
+NWT
+NY
+NYC
+NYSE
+NZ
+Na/M
+Nabisco/M
+Nabokov/M
+Nader/M
+Nadia/M
+Nadine/M
+Nagasaki/M
+Nagoya/M
+Nagpur/M
+Nagy/M
+Nahuatl/MS
+Nahum/M
+Naipaul/M
+Nair/M
+Nairobi/M
+Naismith/M
+Nam/M
+Namath/M
+Namibia/M
+Namibian/MS
+Nan/M
+Nanak/M
+Nanchang/M
+Nancy/M
+Nanette/M
+Nanjing/M
+Nannie/M
+Nanook/M
+Nansen/M
+Nantes/M
+Nantucket/M
+Naomi/M
+Naphtali/M
+Napier/M
+Naples/M
+Napoleon/MS
+Napoleonic/M
+Napster/M
+Narcissus/M
+Narmada/M
+Narnia/M
+Narraganset
+Narragansett/M
+Nash/M
+Nashua/M
+Nashville/M
+Nassau/M
+Nasser/M
+Nat/M
+Natalia/M
+Natalie/M
+Natasha/M
+Natchez/M
+Nate/MN
+Nathan/SM
+Nathaniel/M
+Nathans/M
+Nation/M
+Nationwide/M
+Nativity/M
+Naugahyde/M
+Nauru/M
+Nautilus/M
+Navajo/SM
+Navajoes
+Navarre/M
+Navarro/M
+Navratilova/M
+Navy
+Nazarene/M
+Nazareth/M
+Nazca/M
+Nazi/SM
+Nazism/MS
+Nb/M
+Nd/M
+Ndjamena/M
+Ne/M
+NeWS
+NeWSes
+Neal/M
+Neanderthal/SM
+Neapolitan/M
+Neb
+Nebr
+Nebraska/M
+Nebraskan/MS
+Nebuchadnezzar/M
+Ned/M
+Nefertiti/M
+Negev/M
+Negress/MS
+Negritude
+Negro/MS
+Negroes
+Negroid/SM
+Negros/M
+Nehemiah/M
+Nehru/M
+Neil/M
+Nelda/M
+Nell/M
+Nellie/M
+Nelly/M
+Nelsen/M
+Nelson/M
+Nembutal/M
+Nemesis/M
+Neo/M
+Neogene/M
+Neolithic
+Nepal/M
+Nepalese/M
+Nepali/MS
+Neptune/M
+Nereid/M
+Nerf/M
+Nero/M
+Neruda/M
+Nescafe/M
+Nesselrode/M
+Nestle/M
+Nestor/M
+Nestorius/M
+Netflix/M
+Netherlander/SM
+Netherlands/M
+Netscape/M
+Nettie/M
+Netzahualcoyotl/M
+Nev/M
+Neva/M
+Nevada/M
+Nevadan/SM
+Nevadian
+Nevis/M
+Nevsky/M
+Newark/M
+Newcastle/M
+Newfoundland/MRS
+Newman/M
+Newport/M
+Newsweek/M
+Newton/M
+Newtonian/M
+Nexis/M
+Ngaliema/M
+Nguyen/M
+Ni/M
+Niagara/M
+Niamey/M
+Nibelung/M
+Nicaea/M
+Nicaragua/M
+Nicaraguan/SM
+Niccolo/M
+Nice/M
+Nicene/M
+Nichiren/M
+Nicholas/M
+Nichole/M
+Nichols/M
+Nicholson/M
+Nick/M
+Nickelodeon/M
+Nicklaus/M
+Nickolas/M
+Nicobar/M
+Nicodemus/M
+Nicola/SM
+Nicolas/M
+Nicole/M
+Nicosia/M
+Niebuhr/M
+Nielsen/M
+Nietzsche/M
+Nieves/M
+Nigel/M
+Niger/M
+Nigeria/M
+Nigerian/MS
+Nigerien/M
+Nightingale/M
+Nijinsky/M
+Nike/M
+Nikita/M
+Nikkei/M
+Nikki/M
+Nikolai/M
+Nikon/M
+Nile/M
+Nimitz/M
+Nimrod/M
+Nina/M
+Nineveh/M
+Nintendo/M
+Niobe/M
+Nippon/M
+Nipponese/M
+Nirenberg/M
+Nirvana/M
+Nisan/M
+Nisei/M
+Nissan/M
+Nita/M
+Nivea/M
+Nixon/M
+Nkrumah/M
+No/SM
+NoDoz/M
+Noah/M
+Nobel/M
+Nobelist/MS
+Noble/M
+Noe/M
+Noel/SM
+Noelle/M
+Noemi/M
+Nokia/M
+Nola/M
+Nolan/M
+Nome/M
+Nona/M
+Nootka/M
+Nora/M
+Norbert/M
+Norberto/M
+Nordic/MS
+Noreen/M
+Norfolk/M
+Noriega/M
+Norma/M
+Norman/MS
+Normand/M
+Normandy/M
+Norplant/M
+Norris/M
+Norse/M
+Norseman/M
+Norsemen/M
+North/M
+Northampton/M
+Northeast/MS
+Northerner/M
+Northrop/M
+Northrup/M
+Norths
+Northwest/SM
+Norton/M
+Norw
+Norway/M
+Norwegian/SM
+Norwich/M
+Nosferatu/M
+Nostradamus/M
+Nottingham/M
+Nouakchott/M
+Noumea/M
+Nov/M
+Nova/M
+Novartis/M
+November/MS
+Novgorod/M
+Novocain/MS
+Novocaine
+Novokuznetsk/M
+Novosibirsk/M
+Noxzema/M
+Noyce/M
+Noyes/M
+Np/M
+Nubia/M
+Nubian/M
+Nukualofa/M
+Numbers/M
+Nunavut/M
+Nunez/M
+Nunki/M
+Nuremberg/M
+Nureyev/M
+NutraSweet/M
+NyQuil/M
+Nyasa/M
+Nyerere/M
+O'Brien/M
+O'Casey/M
+O'Connell/M
+O'Connor/M
+O'Donnell/M
+O'Hara/M
+O'Higgins/M
+O'Keeffe/M
+O'Neil/M
+O'Neill/M
+O'Rourke/M
+O'Toole/M
+O/SM
+OAS/M
+OB
+OCR
+OD/SM
+OE
+OED
+OH
+OHSA/M
+OJ
+OK/SMDG
+OMB/M
+ON
+OPEC/M
+OR
+OS/M
+OSHA/M
+OSes
+OT
+OTB
+OTC
+OTOH
+Oahu/M
+Oakland/M
+Oakley/M
+Oates/M
+Oaxaca/M
+Ob/M
+Obadiah/M
+Obama/M
+Obamacare
+Oberlin/M
+Oberon/M
+Ocaml/M
+Occam/M
+Occident
+Occidental/MS
+Oceania/M
+Oceanside
+Oceanus/M
+Ochoa/M
+Oct/M
+Octavia/M
+Octavian/M
+Octavio/M
+October/SM
+Odell/M
+Oder/M
+Odessa/M
+Odets/M
+Odin/M
+Odis/M
+Odom/M
+Odysseus/M
+Odyssey/M
+Oedipal/M
+Oedipus/M
+Oersted/M
+Ofelia/M
+Offenbach/M
+OfficeMax/M
+Ogbomosho/M
+Ogden/M
+Ogilvy/M
+Oglethorpe/M
+Ohio/M
+Ohioan/SM
+Oise/M
+Ojibwa/SM
+Okayama
+Okeechobee/M
+Okefenokee/M
+Okhotsk/M
+Okinawa/M
+Okinawan
+Okla
+Oklahoma/M
+Oklahoman/M
+Oktoberfest/M
+Ola/M
+Olaf/M
+Olajuwon/M
+Olav/M
+Oldenburg/M
+Oldfield/M
+Oldsmobile/M
+Olduvai/M
+Olen/M
+Olenek/M
+Olga/M
+Oligocene/M
+Olin/M
+Olive/MR
+Oliver/M
+Olivetti/M
+Olivia/M
+Olivier/M
+Ollie/M
+Olmec/M
+Olmsted/M
+Olsen/M
+Olson/M
+Olympia/SM
+Olympiad/MS
+Olympian/MS
+Olympic/SM
+Olympics/M
+Olympus/M
+Omaha/MS
+Oman/M
+Omani/MS
+Omar/M
+Omayyad/M
+Omdurman/M
+Omnipotent
+Omsk/M
+Onassis/M
+Oneal/M
+Onega/M
+Onegin/M
+Oneida/MS
+Onion/M
+Ono/M
+Onondaga/MS
+Onsager/M
+Ont
+Ontarian
+Ontario/M
+Oort/M
+Opal/M
+Opel/M
+OpenOffice/M
+Ophelia/M
+Ophiuchus/M
+Oppenheimer/M
+Opposition
+Oprah/M
+Ora/M
+Oracle/M
+Oran/M
+Orange/M
+Oranjestad/M
+Orbison/M
+Ordovician/M
+Ore/N
+Oreg
+Oregon/M
+Oregonian/SM
+Oreo/M
+Orestes/M
+Orient/M
+Oriental/MS
+Orientalism
+Orin/M
+Orinoco/M
+Orion/M
+Oriya/M
+Orizaba/M
+Orkney/M
+Orlando/M
+Orleans/M
+Orlon/MS
+Orly/M
+Orpheus/M
+Orphic/M
+Orr/M
+Ortega/M
+Orthodox
+Ortiz/M
+Orval/M
+Orville/M
+Orwell/M
+Orwellian/M
+Os/M
+Osage/MS
+Osaka/M
+Osbert/M
+Osborn/M
+Osborne/M
+Oscar/MS
+Osceola/M
+Osgood/M
+Oshawa/M
+Oshkosh/M
+Osiris/M
+Oslo/M
+Osman/M
+Ostrogoth/M
+Ostwald/M
+Osvaldo/M
+Oswald/M
+Othello/M
+Otis/M
+Ottawa/SM
+Otto/M
+Ottoman/M
+Ouagadougou/M
+Ouija/MS
+Ovid/M
+Owen/SM
+Owens/M
+Oxford/SM
+Oxnard/M
+Oxonian/M
+Oxus/M
+Oxycontin/M
+Oz/M
+Ozark/MS
+Ozarks/M
+Ozymandias/M
+Ozzie/M
+P/MN
+PA/M
+PAC/M
+PARC/S
+PASCAL
+PBS/M
+PBX
+PC/SM
+PCB
+PCMCIA
+PCP/M
+PD
+PDF
+PDQ
+PDT
+PE
+PET/M
+PFC
+PG
+PGP
+PHP/M
+PIN
+PJ's
+PLO/M
+PM/SMDG
+PMS/M
+PO
+POW/M
+PP
+PPS
+PR
+PRC/M
+PRO
+PS/M
+PST/M
+PT
+PTA/M
+PTO
+PVC/M
+PW
+PX
+Pa/M
+Paar/M
+Pablo/M
+Pablum/M
+Pabst/M
+Pace/M
+Pacheco/M
+Pacific/M
+Pacino/M
+Packard/M
+Padang
+Paderewski/M
+Padilla/M
+Paganini/M
+Page/M
+Paglia/M
+Pahlavi/M
+Paige/M
+Paine/M
+Paiute/SM
+Pakistan/M
+Pakistani/SM
+Palembang/M
+Paleocene/M
+Paleogene/M
+Paleolithic/M
+Paleozoic/M
+Palermo/M
+Palestine/M
+Palestinian/SM
+Palestrina/M
+Paley/M
+Palikir/M
+Palisades/M
+Palladio/M
+Palmer/M
+Palmerston/M
+Palmolive/M
+Palmyra/M
+Palomar/M
+Pam/M
+Pamela/M
+Pamirs/M
+Pampers/M
+Pan/M
+Panama/SM
+Panamanian/MS
+Panasonic/M
+Pandora/M
+Pangaea/M
+Pankhurst/M
+Panmunjom/M
+Pansy/M
+Pantagruel/M
+Pantaloon/M
+Pantheon/M
+Panza/M
+Paracelsus/M
+Paraclete/M
+Paradise
+Paraguay/M
+Paraguayan/MS
+Paralympic/S
+Paramaribo/M
+Paramount/M
+Parana/M
+Parcheesi/M
+Pareto/M
+Paris/M
+Parisian/MS
+Park/SMR
+Parker/M
+Parkinson/M
+Parkinsonism
+Parkman/M
+Parks/M
+Parliament/M
+Parmenides
+Parmesan/MS
+Parnassus/MS
+Parnell/M
+Parr/M
+Parrish/M
+Parsifal/M
+Parsons/M
+Parthenon/M
+Parthia/M
+Pasadena/M
+Pascal/SM
+Pasquale/M
+Passion/SM
+Passover/MS
+Pasternak/M
+Pasteur/M
+Pat/M
+Patagonia/M
+Patagonian/M
+Pate/M
+Patel/M
+Paterson/M
+Patna/M
+Patrica/M
+Patrice/M
+Patricia/M
+Patrick/M
+Patsy/M
+Patterson/M
+Patti/M
+Patton/M
+Patty/M
+Paul/GM
+Paula/M
+Paulette/M
+Pauli/M
+Pauline/M
+Pauling/M
+Pavarotti/M
+Pavlov/M
+Pavlova/M
+Pavlovian/M
+Pawnee/SM
+PayPal/M
+Payne/M
+Pb/M
+Pd/M
+Peabody/M
+Peace/M
+Peale/M
+Pearl/M
+Pearlie/M
+Pearson/M
+Peary/M
+Pechora/M
+Peck/M
+Peckinpah/M
+Pecos/M
+Pedro/M
+Peel/M
+Peg/M
+Pegasus/MS
+Peggy/M
+Pei/M
+Peiping/M
+Peking/SM
+Pekingese/SM
+Pele/M
+Pelee/M
+Peloponnese/M
+Pembroke/M
+Pen/M
+Pena/M
+Penderecki/M
+Penelope/M
+Penn/M
+Penna
+Penney/M
+Pennington/M
+Pennsylvania/M
+Pennsylvanian/MS
+Penny/M
+Pennzoil/M
+Pensacola/M
+Pentagon/M
+Pentateuch/M
+Pentax/M
+Pentecost/SM
+Pentecostal/MS
+Pentecostalism
+Pentium/SM
+Peoria/M
+Pepin/M
+Pepsi/M
+Pepys/M
+Pequot/M
+Percheron/M
+Percival/M
+Percy/M
+Perelman/M
+Perez/M
+Periclean/M
+Pericles/M
+Perkins/M
+Perl/SM
+Perm/M
+Permalloy/M
+Permian/M
+Pernod/M
+Peron/M
+Perot/M
+Perrier/M
+Perry/RM
+Perseid/M
+Persephone/M
+Persepolis/M
+Perseus/M
+Pershing/M
+Persia/M
+Persian/SM
+Perth/M
+Peru/M
+Peruvian/MS
+Peshawar/M
+Petain/M
+Pete/RMZ
+Peter/M
+Peters/MN
+Petersen/M
+Peterson/M
+Petra/M
+Petrarch/M
+Petty/M
+Peugeot/M
+Pfc
+Pfizer/M
+PhD/M
+Phaedra/M
+Phaethon/M
+Phanerozoic/M
+Pharaoh/M
+Pharaohs
+Pharisaic
+Pharisaical
+Pharisee/MS
+Phekda/M
+Phelps/M
+Phidias/M
+Phil/MY
+Philadelphia/M
+Philby/M
+Philemon/M
+Philip/MS
+Philippe/M
+Philippians/M
+Philippine/SM
+Philippines/M
+Philips/M
+Philistine/M
+Phillip/SM
+Phillipa/M
+Phillips/M
+Philly/M
+Phipps/M
+Phobos/M
+Phoebe/M
+Phoenicia/M
+Phoenician/SM
+Phoenix/M
+Photostat/MS
+Photostatted
+Photostatting
+Phrygia/M
+Phyllis/M
+Piaf/M
+Piaget/M
+Pianola/M
+Picasso/M
+Piccadilly/M
+Pickering/M
+Pickett/M
+Pickford/M
+Pickwick/M
+Pict/M
+Piedmont/M
+Pierce/M
+Pierre/M
+Pierrot/M
+Pike/M
+Pilate/MS
+Pilates/M
+Pilcomayo/M
+Pilgrim/SM
+Pillsbury/M
+Pinatubo/M
+Pincus/M
+Pindar/M
+Pinkerton/M
+Pinocchio/M
+Pinochet/M
+Pinter/M
+Pinyin
+Pippin/M
+Piraeus/M
+Pirandello/M
+Pisa/M
+Pisces/M
+Pisistratus/M
+Pissaro/M
+Pitcairn/M
+Pitt/SM
+Pittman/M
+Pitts/M
+Pittsburgh/M
+Pius/M
+Pizarro/M
+Pkwy
+Pl
+Planck/M
+Plano
+Plantagenet/M
+Plasticine/M
+Plataea/M
+Plath/M
+Plato/M
+Platonic
+Platonism/M
+Platonist/M
+Platte/M
+Plautus/M
+PlayStation/M
+Playboy/M
+Playtex/M
+Pleiades/M
+Pleistocene/M
+Plexiglas/MS
+Pliny/M
+Pliocene/SM
+Plutarch/M
+Pluto/M
+Plymouth/M
+Pm/M
+Po/M
+Pocahontas/M
+Pocono/SM
+Poconos/M
+Podgorica/M
+Podhoretz/M
+Podunk/M
+Poe/M
+Pogo/M
+Poincare/M
+Poiret/M
+Poirot/M
+Poisson/M
+Poitier/M
+Pokemon/M
+Pol/MY
+Poland/M
+Polanski/M
+Polaris/M
+Polaroid/MS
+Pole/SM
+Polish/M
+Politburo/M
+Polk/M
+Pollard/M
+Pollock/M
+Pollux/M
+Polly/M
+Pollyanna/M
+Polo/M
+Poltava/M
+Polyhymnia/M
+Polynesia/M
+Polynesian/MS
+Polyphemus/M
+Pomerania/M
+Pomeranian/M
+Pomona/M
+Pompadour/M
+Pompeian
+Pompeii/M
+Pompey/M
+Ponce/M
+Pontchartrain/M
+Pontiac/M
+Pontianak/M
+Pooh/M
+Poole/M
+Poona/M
+Pope/M
+Popeye/M
+Popocatepetl/M
+Popper/M
+Poppins/M
+Popsicle/M
+Porfirio/M
+Porrima/M
+Porsche/M
+Port/MR
+Porter/M
+Portia/M
+Portland/M
+Porto/M
+Portsmouth/M
+Portugal/M
+Portuguese/M
+Poseidon/M
+Post/M
+PostgreSQL/M
+Potemkin/M
+Potomac/M
+Potsdam/M
+Pottawatomie/M
+Potter/M
+Potts/M
+Pound/M
+Poussin/M
+Powell/M
+PowerPC/M
+PowerPoint/M
+Powers/M
+Powhatan/M
+Poznan/M
+Pr/M
+Prada/M
+Prado/M
+Praetorian/M
+Prague/M
+Praia/M
+Prakrit/M
+Pratchett/M
+Pratt/M
+Pravda/M
+Praxiteles/M
+Preakness/M
+Precambrian/M
+Preminger/M
+Premyslid/M
+Prensa/M
+Prentice/M
+Pres
+Presbyterian/SM
+Presbyterianism/MS
+Prescott/M
+Presley/M
+Preston/M
+Pretoria/M
+Priam/M
+Pribilof/M
+Price/M
+Priceline/M
+Priestley/M
+Prince/M
+Princeton/M
+Principe/M
+Priscilla/M
+Prius/M
+Private
+Procrustean/M
+Procrustes/M
+Procter/M
+Procyon/M
+Prof
+Prohibition
+Prokofiev/M
+Promethean/M
+Prometheus/M
+Prophets
+Proserpina/M
+Proserpine/M
+Protagoras/M
+Proterozoic/M
+Protestant/MS
+Protestantism/SM
+Proteus/M
+Proudhon/M
+Proust/M
+Provencal/MS
+Provence/M
+Proverbs
+Providence/SM
+Provo/M
+Prozac/MS
+Prudence/M
+Prudential/M
+Pruitt/M
+Prussia/M
+Prussian/MS
+Prut/M
+Pryor/M
+Psalms/M
+Psalter/MS
+Psyche/M
+Pt/M
+Ptah/M
+Ptolemaic/M
+Ptolemy/SM
+Pu/M
+Puccini/M
+Puck/M
+Puckett/M
+Puebla/M
+Pueblo/M
+Puerto
+Puget/M
+Pugh/M
+Pulaski/M
+Pulitzer/M
+Pullman/MS
+Punch/M
+Punic/M
+Punjab/M
+Punjabi/M
+Purana/M
+Purcell/M
+Purdue/M
+Purim/MS
+Purina/M
+Puritan/M
+Puritanism/MS
+Purus/M
+Pusan/M
+Pusey/M
+Pushkin/M
+Pushtu/M
+Putin/M
+Putnam/M
+Puzo/M
+Pvt
+PyTorch/M
+Pygmalion/M
+Pygmy/SM
+Pyle/M
+Pym/M
+Pynchon/M
+Pyongyang/M
+Pyotr/M
+Pyrenees/M
+Pyrex/MS
+Pyrrhic/M
+Pythagoras/M
+Pythagorean/M
+Pythias/M
+Python/M
+Q
+QA
+QB
+QC
+QED
+QM
+QWERTY
+Qaddafi/M
+Qantas/M
+Qatar/M
+Qatari/MS
+Qingdao/M
+Qinghai/M
+Qiqihar/M
+Qom/M
+Quaalude/M
+Quaker/MS
+Quakerism/SM
+Qualcomm/M
+Quaoar/M
+Quasimodo/M
+Quaternary/M
+Quayle/M
+Que
+Quebec/M
+Quebecois/M
+Quechua/M
+Queen/MS
+Queens/M
+Queensland/M
+Quentin/M
+Quetzalcoatl/M
+Quezon/M
+Quincy/M
+Quinn/M
+Quintilian/M
+Quinton/M
+Quirinal/M
+Quisling/M
+Quito/M
+Quixote/M
+Quixotism/M
+Qumran/M
+Quonset/M
+Quran
+Quranic
+R/M
+RAF/M
+RAM/SM
+RBI
+RC
+RCA/M
+RCMP
+RD
+RDA
+RDS/M
+REIT
+REM/SM
+RF
+RFC/S
+RFD
+RI
+RIF
+RIP
+RISC
+RN/M
+RNA/M
+ROFL
+ROM/M
+ROTC/M
+RP
+RR
+RSFSR
+RSI
+RSV
+RSVP
+RTFM
+RV/SM
+Ra/M
+Rabat/M
+Rabelais/M
+Rabelaisian/M
+Rabin/M
+Rachael/M
+Rachel/M
+Rachelle/M
+Rachmaninoff/M
+Racine/M
+Radcliffe/M
+Rae/M
+Rafael/M
+Raffles/M
+Ragnarok/M
+Rainier/M
+Raleigh/M
+Ralph/M
+Rama/M
+Ramada/M
+Ramadan/MS
+Ramakrishna/M
+Ramanujan/M
+Ramayana/M
+Rambo/M
+Ramirez/M
+Ramiro/M
+Ramon/M
+Ramona/M
+Ramos/M
+Ramsay/M
+Ramses/M
+Ramsey/M
+Rand/M
+Randal/M
+Randall/M
+Randell/M
+Randi/M
+Randolph/M
+Randy/M
+Rangoon/M
+Rankin/M
+Rankine/M
+Raoul/M
+Raphael/M
+Rappaport/M
+Rapunzel/M
+Raquel/M
+Rasalgethi/M
+Rasalhague/M
+Rasmussen/M
+Rasputin/M
+Rasta
+Rastaban/M
+Rastafarian/MS
+Rastafarianism
+Rather/M
+Ratliff/M
+Raul/M
+Ravel/M
+Rawalpindi/M
+Ray/M
+RayBan/M
+Rayburn/M
+Rayleigh/M
+Raymond/M
+Raymundo/M
+Rb/M
+Rd
+Re/M
+Reading/M
+Reagan/M
+Reaganomics/M
+Realtor/M
+Reasoner/M
+Reba/M
+Rebekah/M
+Recife/M
+Reconstruction/M
+Redeemer/M
+Redford/M
+Redgrave/M
+Redis/M
+Redmond/M
+Redshift/M
+Reebok/M
+Reed/M
+Reese/M
+Reeves/M
+Reformation/MS
+Refugio/M
+Reggie/M
+Regina/M
+Reginae/M
+Reginald/M
+Regor/M
+Regulus/M
+Rehnquist/M
+Reich/M
+Reichstag's
+Reid/M
+Reilly/M
+Reinaldo/M
+Reinhardt/M
+Reinhold/M
+Remarque/M
+Rembrandt/M
+Remington/M
+Remus/M
+Rena/M
+Renaissance/SM
+Renascence
+Renault/M
+Rene/M
+Renee/M
+Reno/M
+Renoir/M
+Rep
+Representative
+Republican/SM
+Republicanism
+Requiem/MS
+Resistance
+Restoration/M
+Resurrection
+Reuben/M
+Reunion/M
+Reuters/M
+Reuther/M
+Rev
+Reva/M
+Revelation/SM
+Revelations/M
+Revere/M
+Reverend/M
+Revlon/M
+Rex/M
+Reyes/M
+Reykjavik/M
+Reyna/M
+Reynaldo/M
+Reynolds/M
+Rf/M
+Rh/M
+Rhea/M
+Rhee/M
+Rheingau/M
+Rhenish/M
+Rhiannon/M
+Rhine/M
+Rhineland/M
+Rhoda/M
+Rhode/S
+Rhodes/M
+Rhodesia/M
+Rhodesian
+Rhonda/M
+Rhone/M
+Ribbentrop/M
+Ricardo/M
+Rice/M
+Rich/M
+Richard/MS
+Richards/M
+Richardson/M
+Richelieu/M
+Richie/M
+Richmond/M
+Richter/M
+Richthofen/M
+Rick/M
+Rickenbacker/M
+Rickey/M
+Rickie/M
+Rickover/M
+Ricky/M
+Rico/M
+Riddle/M
+Ride/M
+Riefenstahl/M
+Riel/M
+Riemann/M
+Riesling/MS
+Riga/M
+Rigel/M
+Riggs/M
+Right
+Rigoberto/M
+Rigoletto/M
+Riley/M
+Rilke/M
+Rimbaud/M
+Ringling/M
+Ringo/M
+Rio/SM
+Rios/M
+Ripley/M
+Risorgimento/M
+Rita/M
+Ritalin/M
+Ritz/M
+Rivas/M
+Rivera/M
+Rivers/M
+Riverside
+Riviera/MS
+Riyadh/M
+Rizal/M
+Rn/M
+Roach/M
+Roanoke/M
+Rob/M
+Robbie/M
+Robbin/MS
+Robbins/M
+Robby/M
+Roberson/M
+Robert/MS
+Roberta/M
+Roberto/M
+Roberts/M
+Robertson/M
+Robeson/M
+Robespierre/M
+Robin/M
+Robinson/M
+Robitussin/M
+Robles/M
+Robson/M
+Robt/M
+Robyn/M
+Rocco/M
+Rocha/M
+Rochambeau/M
+Roche/M
+Rochelle/M
+Rochester/M
+Rock/M
+Rockefeller/M
+Rockford/M
+Rockies/M
+Rockne/M
+Rockwell/M
+Rocky/SM
+Rod/M
+Roddenberry/M
+Roderick/M
+Rodger/MS
+Rodgers/M
+Rodin/M
+Rodney/M
+Rodolfo/M
+Rodrick/M
+Rodrigo/M
+Rodriguez/M
+Rodriquez/M
+Roeg/M
+Roentgen
+Rogelio/M
+Roger/MS
+Rogers/M
+Roget/M
+Rojas/M
+Roku/M
+Rolaids/M
+Roland/M
+Rolando/M
+Rolex/M
+Rolland/M
+Rollerblade/M
+Rollins/M
+Rolodex/M
+Rolvaag/M
+Rom
+Roman/MS
+Romanesque/MS
+Romanian/MS
+Romano/M
+Romanov/M
+Romans/M
+Romansh/M
+Romanticism
+Romany/SM
+Rome/SM
+Romeo/M
+Romero/M
+Rommel/M
+Romney/M
+Romulus/M
+Ron/M
+Ronald/M
+Ronda/M
+Ronnie/M
+Ronny/M
+Ronstadt/M
+Rontgen
+Rooney/M
+Roosevelt/M
+Root/M
+Roquefort/SM
+Rorschach/M
+Rory/M
+Rosa/M
+Rosales/M
+Rosalie/M
+Rosalind/M
+Rosalinda/M
+Rosalyn/M
+Rosanna/M
+Rosanne/M
+Rosario/M
+Roscoe/M
+Rose/M
+Roseann/M
+Roseau/M
+Rosecrans/M
+Rosella/M
+Rosemarie/M
+Rosemary/M
+Rosenberg/M
+Rosendo/M
+Rosenzweig/M
+Rosetta/M
+Rosicrucian/M
+Rosie/M
+Roslyn/M
+Ross/M
+Rossetti/M
+Rossini/M
+Rostand/M
+Rostov/M
+Rostropovich/M
+Roswell/M
+Rotarian/M
+Roth/M
+Rothko/M
+Rothschild/M
+Rotterdam/M
+Rottweiler/M
+Rouault/M
+Roumania/M
+Rourke/M
+Rousseau/M
+Rove/RM
+Rover/M
+Rowe/M
+Rowena/M
+Rowland/M
+Rowling/M
+Roxanne/M
+Roxie/M
+Roxy/M
+Roy/M
+Royal/M
+Royce/M
+Rozelle/M
+Rte
+Ru/MH
+Rubaiyat/M
+Rubbermaid/M
+Ruben/SM
+Rubens/M
+Rubicon/MS
+Rubik/M
+Rubin/M
+Rubinstein/M
+Ruby/M
+Ruchbah/M
+Rudolf/M
+Rudolph/M
+Rudy/M
+Rudyard/M
+Rufus/M
+Ruhr/M
+Ruiz/M
+Rukeyser/M
+Rumpelstiltskin/M
+Rumsfeld/M
+Runnymede/M
+Runyon/M
+Rupert/M
+Rush/M
+Rushdie/M
+Rushmore/M
+Ruskin/M
+Russ/M
+Russel/M
+Russell/M
+Russia/M
+Russian/SM
+Russo/M
+Rustbelt/M
+Rusty/M
+Rutan/M
+Rutgers/M
+Ruth/M
+Rutherford/M
+Ruthie/M
+Rutledge/M
+Rwanda/MS
+Rwandan/SM
+Rwy
+Rx
+Ry
+Ryan/M
+Rydberg/M
+Ryder/M
+Ryukyu/M
+S/MN
+SA
+SAC
+SALT/M
+SAM/M
+SAP/M
+SARS/M
+SASE
+SAT
+SBA
+SC/M
+SCSI/M
+SD
+SDI
+SE/M
+SEATO
+SEC/M
+SF
+SGML/M
+SIDS/M
+SJ
+SJW
+SK
+SLR
+SO/S
+SOB/M
+SOP/M
+SOS/M
+SOSes
+SPCA
+SPF
+SQL
+SQLite/M
+SRO
+SS
+SSA
+SSE/M
+SSS
+SST
+SSW/M
+ST
+STD
+STOL
+SUSE/M
+SUV
+SVN/M
+SW/M
+SWAK
+SWAT
+Saab/M
+Saar/M
+Saarinen/M
+Saatchi/M
+Sabbath/M
+Sabbaths
+Sabik/M
+Sabin/M
+Sabina/M
+Sabine/M
+Sabre/M
+Sabrina/M
+Sacajawea/M
+Sacco/M
+Sachs/M
+Sacramento/M
+Sadat/M
+Saddam/M
+Sadducee/M
+Sade/M
+Sadie/M
+Sadr/M
+Safavid/M
+Safeway/M
+Sagan/M
+Saginaw/M
+Sagittarius/MS
+Sahara/M
+Saharan/M
+Sahel/M
+Saigon/M
+Saiph/M
+Sakai/M
+Sakha/M
+Sakhalin/M
+Sakharov/M
+Saki/M
+Saks/M
+Sal/MY
+Saladin/M
+Salado/M
+Salamis/M
+Salas/M
+Salazar/M
+Salem/M
+Salerno/M
+Salesforce/M
+Salinas/M
+Salinger/M
+Salisbury/M
+Salish/M
+Salk/M
+Sallie/M
+Sallust/M
+Sally/M
+Salome/M
+Salonika/M
+Salton/M
+Salvador/M
+Salvadoran/SM
+Salvadorean/MS
+Salvadorian/MS
+Salvatore/M
+Salween/M
+Salyut/M
+Sam/M
+Samantha/M
+Samar/M
+Samara/M
+Samaritan/MS
+Samarkand/M
+Sammie/M
+Sammy/M
+Samoa/M
+Samoan/SM
+Samoset/M
+Samoyed/M
+Sampson/M
+Samson/M
+Samsonite/M
+Samsung/M
+Samuel/M
+Samuelson/M
+San'a
+San/M
+Sana/M
+Sanchez/M
+Sancho/M
+Sand/ZM
+Sandburg/M
+Sanders/M
+Sandinista/M
+Sandoval/M
+Sandra/M
+Sandy/M
+Sanford/M
+Sanforized/M
+Sang/MR
+Sanger/M
+Sanhedrin/M
+Sanka/M
+Sankara/M
+Sanskrit/M
+Santa/M
+Santana/M
+Santayana/M
+Santeria/M
+Santiago/M
+Santos/M
+Sappho/M
+Sapporo/M
+Sara/M
+Saracen/MS
+Saragossa/M
+Sarah/M
+Sarajevo/M
+Saran/M
+Sarasota/M
+Saratov/M
+Sarawak/M
+Sardinia/M
+Sargasso/M
+Sargent/M
+Sargon/M
+Sarnoff/M
+Saroyan/M
+Sarto/M
+Sartre/M
+Sasha/M
+Sask
+Saskatchewan/M
+Saskatoon/M
+Sasquatch/MS
+Sassanian/M
+Sassoon/M
+Sat/M
+Satan/M
+Satanism/M
+Satanist/M
+Saturday/MS
+Saturn/M
+Saturnalia/M
+Saudi/MS
+Saul/M
+Saunders/M
+Saundra/M
+Saussure/M
+Sauternes
+Savage/M
+Savannah/M
+Savior/M
+Savonarola/M
+Savoy/M
+Savoyard/M
+Sawyer/M
+Saxon/MS
+Saxony/M
+Sayers/M
+Sb/M
+Sc/M
+Scala/M
+Scan
+Scandinavia/M
+Scandinavian/MS
+Scaramouch/M
+Scarborough/M
+Scarlatti/M
+Scheat/M
+Schedar/M
+Scheherazade/M
+Schelling/M
+Schenectady/M
+Schiaparelli/M
+Schick/M
+Schiller/M
+Schindler/M
+Schlesinger/M
+Schliemann/M
+Schlitz/M
+Schloss/M
+Schmidt/M
+Schnabel/M
+Schnauzer/M
+Schneider/M
+Schoenberg/M
+Schopenhauer/M
+Schrieffer/M
+Schrodinger/M
+Schroeder/M
+Schubert/M
+Schultz/M
+Schulz/M
+Schumann/M
+Schumpeter/M
+Schuyler/M
+Schuylkill/M
+Schwartz/M
+Schwarzenegger/M
+Schwarzkopf/M
+Schweitzer/M
+Schweppes/M
+Schwinger/M
+Schwinn/M
+Scientologist/SM
+Scientology/M
+Scipio/M
+Scopes/M
+Scorpio/SM
+Scorpius/M
+Scorsese/M
+Scot/SM
+Scotch/MS
+Scotchman/M
+Scotchmen/M
+Scotchwoman/M
+Scotchwomen/M
+Scotia/M
+Scotland/M
+Scotsman/M
+Scotsmen/M
+Scotswoman/M
+Scotswomen/M
+Scott/M
+Scottie/SM
+Scottish/M
+Scottsdale/M
+Scrabble/MS
+Scranton/M
+Scriabin/M
+Scribner/M
+Scripture/SM
+Scrooge/M
+Scruggs/M
+Scud/M
+Sculley/M
+Scylla/M
+Scythia/M
+Scythian/M
+Se/MH
+Seaborg/M
+Seagram/M
+Sean/M
+Sears/M
+Seattle/M
+Sebastian/M
+Sec
+Seconal/M
+Secretariat/M
+Secretary
+Seder/MS
+Sedna/M
+Seebeck/M
+Seeger/M
+Sega/M
+Segovia/M
+Segre/M
+Segundo/M
+Segway/S
+Seiko/M
+Seine/M
+Seinfeld/M
+Sejong/M
+Selassie/M
+Selectric/M
+Selena/M
+Seleucid/M
+Seleucus/M
+Selim/M
+Seljuk/M
+Selkirk/M
+Sellers/M
+Selma/M
+Selznick/M
+Semarang/M
+Seminole/MS
+Semiramis/M
+Semite/MS
+Semitic/SM
+Semtex/M
+Senate/MS
+Sendai/M
+Seneca/MS
+Senegal/M
+Senegalese/M
+Senghor/M
+Senior/M
+Sennacherib/M
+Sennett/M
+Sensurround/M
+Seoul/M
+Sep
+Sephardi/M
+Sepoy/M
+Sept/M
+September/MS
+Septuagint/MS
+Sequoya/M
+Serb/SM
+Serbia/M
+Serbian/MS
+Serena/M
+Serengeti/M
+Sergei/M
+Sergio/M
+Serpens/M
+Serra/M
+Serrano/M
+Set/M
+Seth/M
+Seton/M
+Seurat/M
+Seuss/M
+Sevastopol/M
+Severn/M
+Severus/M
+Seville/M
+Sevres/M
+Seward/M
+Sextans/M
+Sexton/M
+Seychelles/M
+Seyfert/M
+Seymour/M
+Sgt
+Shaanxi/M
+Shackleton/M
+Shaffer/M
+Shah/M
+Shaka/M
+Shaker
+Shakespeare/M
+Shakespearean/M
+Shana/M
+Shandong/M
+Shane/M
+Shanghai/M
+Shankara/M
+Shanna/M
+Shannon/M
+Shantung/M
+Shanxi/M
+Shapiro/M
+SharePoint/M
+Shari'a/M
+Shari/M
+Sharif/M
+Sharlene/M
+Sharon/M
+Sharp/M
+Sharpe/M
+Sharron/M
+Shasta/M
+Shaula/M
+Shaun/M
+Shauna/M
+Shavian/M
+Shavuot/M
+Shaw/M
+Shawn/M
+Shawna/M
+Shawnee/SM
+Shcharansky/M
+Shea/M
+Sheba/M
+Shebeli/M
+Sheena/M
+Sheetrock/M
+Sheffield/M
+Sheila/M
+Shelby/M
+Sheldon/M
+Shelia/M
+Shell/M
+Shelley/M
+Shelly/M
+Shelton/M
+Shenandoah/M
+Shenyang/M
+Sheol/M
+Shepard/M
+Shepherd/M
+Sheppard/M
+Sheratan/M
+Sheraton/M
+Sheree/M
+Sheri/M
+Sheridan/M
+Sherlock/M
+Sherman/M
+Sherpa/M
+Sherri/M
+Sherrie/M
+Sherry/M
+Sherwood/M
+Sheryl/M
+Shetland/SM
+Shetlands/M
+Shevardnadze/M
+Shevat/M
+Shi'ite/M
+Shields/M
+Shiite/MS
+Shijiazhuang/M
+Shikoku/M
+Shillong/M
+Shiloh/M
+Shinto/MS
+Shintoism/MS
+Shintoist/MS
+Shiraz/M
+Shirley/M
+Shiva/M
+Shockley/M
+Short/M
+Shorthorn/M
+Shoshone/SM
+Shostakovitch/M
+Shrek/M
+Shreveport/M
+Shriner/M
+Shropshire/M
+Shula/M
+Shylock/M
+Shylockian/M
+Si/M
+Siam/M
+Siamese/M
+Sibelius/M
+Siberia/M
+Siberian/MS
+Sibyl/M
+Sichuan/M
+Sicilian/SM
+Sicily/M
+Sid/M
+Siddhartha/M
+Sidney/M
+Siegfried/M
+Siemens/M
+Sierpinski/M
+Sierras
+Sigismund/M
+Sigmund/M
+Sigurd/M
+Sihanouk/M
+Sikh/M
+Sikhism
+Sikhs
+Sikkim/M
+Sikkimese/M
+Sikorsky/M
+Silas/M
+Silesia/M
+Silurian/SM
+Silva/M
+Silvia/M
+Simenon/M
+Simmental/M
+Simmons/M
+Simon/M
+Simone/M
+Simpson/SM
+Simpsons/M
+Sims/M
+Sinai/M
+Sinatra/M
+Sinbad/M
+Sinclair/M
+Sindbad/M
+Sindhi/M
+Singapore/M
+Singaporean/SM
+Singer/M
+Singh/M
+Singleton/M
+Sinhalese/M
+Sinkiang/M
+Sioux/M
+Sir/SM
+Sirius/M
+Sistine/M
+Sisyphean/M
+Sisyphus/M
+Siva/M
+Sivan/M
+Sjaelland/M
+Skinner/M
+Skippy/M
+Skopje/M
+Skye/M
+Skylab/M
+Skype/M
+Slackware/M
+Slashdot/M
+Slater/M
+Slav/SM
+Slavic/M
+Slavonic/M
+Slinky/M
+Sloan/M
+Sloane/M
+Slocum/M
+Slovak/SM
+Slovakia/M
+Slovakian
+Slovene/SM
+Slovenia/M
+Slovenian/MS
+Slurpee/M
+Sm/M
+Small/M
+Smetana/M
+Smirnoff/M
+Smith/M
+Smithson/M
+Smithsonian/M
+Smokey/M
+Smolensk/M
+Smollett/M
+Smuts/M
+Smyrna
+Sn/M
+Snake/M
+Snapple/M
+Snead/M
+Snell/M
+Snickers/M
+Snider/M
+Snoopy/M
+Snow/M
+Snowbelt/M
+Snyder/M
+Soave/M
+Soc
+Socorro/M
+Socrates/M
+Socratic/M
+Soddy/M
+Sodom/M
+Sofia/M
+Soho/M
+Sol/M
+Solis/M
+Solomon/M
+Solon/M
+Solzhenitsyn/M
+Somali/SM
+Somalia/M
+Somalian/MS
+Somme/M
+Somoza/M
+Son/M
+Sondheim/M
+Sondra/M
+Songhai/M
+Songhua/M
+Sonia/M
+Sonja/M
+Sonny/M
+Sonora/M
+Sontag/M
+Sony/M
+Sonya/M
+Sophia/M
+Sophie/M
+Sophoclean/M
+Sophocles/M
+Sopwith/M
+Sorbonne/M
+Sosa/M
+Soto/M
+Souphanouvong/M
+Sourceforge/M
+Sousa/M
+South/M
+Southampton/M
+Southeast/MS
+Southerner/SM
+Southey/M
+Souths
+Southwest/MS
+Soviet/M
+Soweto/M
+Soyinka/M
+Soyuz/M
+Sp
+Spaatz/M
+Spackle/M
+Spahn/M
+Spain/M
+Spam/M
+Span
+Spanglish
+Spaniard/SM
+Spanish/M
+Sparks/M
+Sparta/M
+Spartacus/M
+Spartan/MS
+Spears/M
+Speer/M
+Spence/RM
+Spencer/M
+Spencerian/M
+Spengler/M
+Spenglerian/M
+Spenser/M
+Spenserian/M
+Sperry/M
+Sphinx/M
+Spica/M
+Spielberg/M
+Spillane/M
+Spinoza/M
+Spinx/M
+Spiro/M
+Spirograph/M
+Spitsbergen/M
+Spitz/M
+Spock/M
+Spokane/M
+Springfield/M
+Springsteen/M
+Sprint/M
+Sprite/M
+Sputnik/M
+Sq
+Squanto/M
+Squibb/M
+Sr/M
+Srinagar/M
+Srivijaya/M
+St
+Sta
+Stacey/M
+Staci/M
+Stacie/M
+Stacy/M
+Stael/M
+Stafford/M
+StairMaster/M
+Stalin/M
+Stalingrad/M
+Stalinist/M
+Stallone/M
+Stamford/M
+Stan/M
+Standish/M
+Stanford/M
+Stanislavsky/M
+Stanley/M
+Stanton/M
+Staples/M
+Starbucks/M
+Stark/M
+Starkey/M
+Starr/M
+Staten/M
+States
+Staubach/M
+Ste
+Steadicam/M
+Steele/M
+Stefan/M
+Stefanie/M
+Stein/MR
+Steinbeck/M
+Steinem/M
+Steiner/M
+Steinmetz/M
+Steinway/M
+Stella/M
+Stendhal/M
+Stengel/M
+Stephan/M
+Stephanie/M
+Stephen/MS
+Stephens/M
+Stephenson/M
+Sterling/M
+Stern/M
+Sterne/M
+Sterno/M
+Stetson/M
+Steuben/M
+Steve/M
+Steven/MS
+Stevens/M
+Stevenson/M
+Stevie/M
+Stewart/M
+Stieglitz/M
+Stilton/SM
+Stimson/M
+Stine/M
+Stirling/M
+Stockhausen/M
+Stockholm/M
+Stockton/M
+Stoic/SM
+Stoicism/MS
+Stokes/M
+Stolichnaya/M
+Stolypin/M
+Stone/M
+Stonehenge/M
+Stoppard/M
+Stout/M
+Stowe/M
+Strabo/M
+Stradivari
+Stradivarius/M
+Strasbourg/M
+Strauss/M
+Stravinsky/M
+Streisand/M
+Strickland/M
+Strindberg/M
+Stromboli/M
+Strong/M
+Stu/M
+Stuart/MS
+Studebaker/M
+Stuttgart/M
+Stuyvesant/M
+Stygian/M
+Styrofoam/SM
+Styron/M
+Styx/M
+Suarez/M
+Subaru/M
+Sucre/M
+Sucrets/M
+Sudan/M
+Sudanese/M
+Sudetenland/M
+Sudoku/M
+Sudra/M
+Sue/M
+Suetonius/M
+Suez/M
+Suffolk/M
+Sufi/M
+Sufism/M
+Suharto/M
+Sui/M
+Sukarno/M
+Sukkot
+Sulawesi/M
+Suleiman/M
+Sulla/M
+Sullivan/M
+Sumatra/M
+Sumatran/SM
+Sumeria/M
+Sumerian/SM
+Summer/MS
+Summers/M
+Sumner/M
+Sumter/M
+Sun/SM
+Sunbeam/M
+Sunbelt/M
+Sundanese/M
+Sundas/M
+Sunday/MS
+Sung/M
+Sunkist/M
+Sunni/SM
+Sunnite/MS
+Sunnyvale/M
+Superbowl/M
+Superfund/M
+Superglue/M
+Superior/M
+Superman/M
+Supt
+Surabaya/M
+Surat/M
+Suriname/M
+Surinamese
+Surya/M
+Susan/M
+Susana/M
+Susanna/M
+Susanne/M
+Susie/M
+Susquehanna/M
+Sussex/M
+Sutherland/M
+Sutton/M
+Suva/M
+Suwanee/M
+Suzanne/M
+Suzette/M
+Suzhou/M
+Suzuki/M
+Suzy/M
+Svalbard/M
+Sven/M
+Svengali/M
+Sverdlovsk
+Swahili/SM
+Swammerdam/M
+Swanee/M
+Swansea/M
+Swanson/M
+Swazi/SM
+Swaziland/M
+Swed/N
+Swede/SM
+Sweden/M
+Swedenborg/M
+Swedish/M
+Sweeney/M
+Sweet/M
+Swift/M
+Swinburne/M
+Swiss/MS
+Swissair/M
+Switz
+Switzerland/M
+Sybil/M
+Sydney/M
+Sykes/M
+Sylvester/M
+Sylvia/M
+Sylvie/M
+Synge/M
+Syracuse/M
+Syria/M
+Syriac/M
+Syrian/MS
+Szilard/M
+Szymborska/M
+T'ang/M
+T/MDG
+TA
+TARP
+TB/M
+TBA
+TD
+TDD
+TEFL
+TELNET/S
+TELNETTed
+TELNETTing
+TESL
+TESOL
+TGIF
+THC
+TKO/M
+TLC/M
+TM
+TN
+TNT/M
+TOEFL
+TQM
+TV/SM
+TVA
+TWA/M
+TWX
+TX
+Ta/M
+Tabasco/SM
+Tabatha/M
+Tabernacle/MS
+Tabitha/M
+Tabriz/MS
+Tacitus/M
+Tacoma/M
+Tad/M
+Tadzhik/M
+Taegu/M
+Taejon/M
+Taft/M
+Tagalog/SM
+Tagore/M
+Tagus/M
+Tahiti/M
+Tahitian/MS
+Tahoe/M
+Taichung/M
+Tainan
+Taine/M
+Taipei/M
+Taiping/M
+Taiwan/M
+Taiwanese/M
+Taiyuan/M
+Tajikistan/M
+Taklamakan/M
+Talbot/M
+Taliban/M
+Taliesin/M
+Tallahassee/M
+Tallchief/M
+Talley/M
+Talleyrand/M
+Tallinn/M
+Talmud/MS
+Talmudic
+Talmudist
+Tamara/M
+Tameka/M
+Tamera/M
+Tamerlane/M
+Tami/M
+Tamika/M
+Tamil/MS
+Tammany/M
+Tammi/M
+Tammie/M
+Tammuz/M
+Tammy/M
+Tampa/M
+Tampax/M
+Tamra/M
+Tamworth/M
+Tancred/M
+Taney/M
+Tanganyika/M
+Tangier/MS
+Tangshan/M
+Tania/M
+Tanisha/M
+Tanner/M
+Tannhauser/M
+Tantalus/M
+Tanya/M
+Tanzania/M
+Tanzanian/SM
+Tao/M
+Taoism/MS
+Taoist/MS
+Tara/M
+Tarantino/M
+Tarawa/M
+Tarazed/M
+Tarbell/M
+Target/M
+Tarim/M
+Tarkenton/M
+Tarkington/M
+Tartary/M
+Tartuffe/M
+Tarzan/M
+Tasha/M
+Tashkent/M
+Tasman/M
+Tasmania/M
+Tasmanian/M
+Tass/M
+Tatar/MS
+Tate/M
+Tatum/M
+Taurus/MS
+Tawney/M
+Taylor/M
+Tb/M
+Tbilisi/M
+Tc/M
+Tchaikovsky/M
+Te/M
+TeX
+TeXes
+Teasdale/M
+Technicolor/M
+Tecumseh/M
+Ted/M
+Teddy/M
+Teflon/MS
+Tegucigalpa/M
+Tehran
+TelePrompTer
+TelePrompter/M
+Telemachus/M
+Telemann/M
+Teletype
+Tell/MR
+Teller/M
+Telugu/M
+Tempe
+Templar/M
+Tenn/M
+Tennessean/SM
+Tennessee/M
+Tennyson/M
+Tennysonian
+Tenochtitlan/M
+TensorFlow/M
+Teotihuacan/M
+Terence/M
+Teresa/M
+Tereshkova/M
+Teri/M
+Terkel/M
+Terpsichore/M
+Terr/M
+Terra/M
+Terran/M
+Terrance/M
+Terrell/M
+Terrence/M
+Terri/M
+Terrie/M
+Terry/M
+Tertiary/M
+Tesla/M
+Tess/M
+Tessa/M
+Tessie/M
+Tet/M
+Tethys/M
+Tetons/M
+Teuton/MS
+Teutonic/M
+Tevet/M
+Tex/M
+Texaco/M
+Texan/MS
+Texas/M
+Th/M
+Thackeray/M
+Thad/M
+Thaddeus/M
+Thai/SM
+Thailand/M
+Thales/M
+Thalia/M
+Thames/M
+Thanh/M
+Thanksgiving/MS
+Thant/M
+Thar/M
+Tharp/M
+Thatcher/M
+Thea/M
+Thebes/M
+Theiler/M
+Thelma/M
+Themistocles/M
+Theocritus/M
+Theodora/M
+Theodore/M
+Theodoric/M
+Theodosius/M
+Theosophy/M
+Theravada/M
+Theresa/M
+Therese/M
+Thermopylae/M
+Thermos
+Theron/M
+Theseus/M
+Thespian/M
+Thespis/M
+Thessalonian/SM
+Thessaloniki/M
+Thessaly/M
+Thieu/M
+Thimbu/M
+Thimphu
+Thomas/M
+Thomism/M
+Thomistic/M
+Thompson/M
+Thomson/M
+Thor/M
+Thorazine/M
+Thoreau/M
+Thornton/M
+Thoroughbred/M
+Thorpe/M
+Thoth/M
+Thrace/M
+Thracian/M
+Thu
+Thucydides/M
+Thule/M
+Thunderbird/M
+Thur/S
+Thurber/M
+Thurman/M
+Thurmond/M
+Thursday/SM
+Thutmose/M
+Ti/M
+Tia/M
+Tianjin/M
+Tiber/M
+Tiberius/M
+Tibet/M
+Tibetan/MS
+Ticketmaster/M
+Ticonderoga/M
+Tide/M
+Tienanmen/M
+Tiffany/M
+Tigris/M
+Tijuana/M
+Tillich/M
+Tillman/M
+Tilsit/M
+Tim/M
+Timbuktu/M
+Timex/M
+Timmy/M
+Timon/M
+Timothy/M
+Timour/M
+Timur/M
+Timurid/M
+Tina/M
+Ting/M
+Tinkerbell/M
+Tinkertoy/M
+Tinseltown/M
+Tintoretto/M
+Tippecanoe/M
+Tipperary/M
+Tirane
+Tiresias/M
+Tirol/M
+Tirolean
+Tisha/M
+Tishri/M
+Titan/SM
+Titania/M
+Titanic/M
+Titian/M
+Titicaca/M
+Tito/M
+Titus/M
+Tl/M
+Tlaloc/M
+Tlingit/M
+Tm/M
+Tobago/M
+Tobit/M
+Toby/M
+Tocantins/M
+Tocqueville/M
+Tod/M
+Todd/M
+Togo/M
+Togolese/M
+Tojo/M
+Tokay/M
+Tokugawa/M
+Tokyo/M
+Tokyoite
+Toledo/MS
+Tolkien/M
+Tolstoy/M
+Toltec/M
+Tolyatti/M
+Tom/M
+Tomas/M
+Tombaugh/M
+Tomlin/M
+Tommie/M
+Tommy/M
+Tompkins/M
+Tomsk/M
+Tonga/M
+Tongan/MS
+Toni/M
+Tonia/M
+Tonto/M
+Tony/M
+Tonya/M
+Topeka/M
+Topsy/M
+Torah/M
+Torahs
+Toronto/M
+Torquemada/M
+Torrance/M
+Torrens/M
+Torres/M
+Torricelli/M
+Tortola/M
+Tortuga/M
+Torvalds/M
+Tory/SM
+Tosca/M
+Toscanini/M
+Toshiba/M
+Toto/M
+Toulouse/M
+Townes/M
+Townsend/M
+Toynbee/M
+Toyoda/M
+Toyota/M
+Tracey/M
+Traci/M
+Tracie/M
+Tracy/M
+Trafalgar/M
+Trailways/M
+Trajan/M
+Tran/M
+Transcaucasia/M
+Transvaal/M
+Transylvania/M
+Transylvanian/M
+Trappist/SM
+Travis/M
+Travolta/M
+Treasury/SM
+Treblinka/M
+Trekkie/M
+Trent/M
+Trenton/M
+Trevelyan/M
+Trevino/M
+Trevor/M
+Trey/M
+Triangulum/M
+Triassic/M
+Tricia/M
+Trident/M
+Trieste/M
+Trimurti/M
+Trina/M
+Trinidad/M
+Trinidadian/MS
+Trinity/SM
+Tripitaka/M
+Tripoli/M
+Trippe/M
+Trisha/M
+Tristan/M
+Triton/M
+Trobriand/M
+Troilus/M
+Trojan/MS
+Trollope/M
+Trondheim/M
+Tropicana/M
+Trotsky/M
+Troy/M
+Troyes
+Truckee/M
+Trudeau/M
+Trudy/M
+Truffaut/M
+Trujillo/M
+Truman/M
+Trumbull/M
+Trump/M
+Truth/M
+Tsimshian/M
+Tsiolkovsky/M
+Tsitsihar/M
+Tsongkhapa/M
+Tswana/M
+Tu/M
+Tuamotu/M
+Tuareg/M
+Tubman/M
+Tucker/M
+Tucson/M
+Tucuman/M
+Tudor/SM
+Tue/S
+Tues/M
+Tuesday/MS
+Tulane/M
+Tull/M
+Tulsa/M
+Tulsidas/M
+Tums/M
+Tungus/M
+Tunguska/M
+Tunis/M
+Tunisia/M
+Tunisian/MS
+Tunney/M
+Tupi/M
+Tupperware/M
+Tupungato/M
+Turgenev/M
+Turin/M
+Turing/M
+Turk/SM
+Turkestan/M
+Turkey/M
+Turkic/MS
+Turkish/M
+Turkmenistan/M
+Turner/M
+Turpin/M
+Tuscaloosa/M
+Tuscan/M
+Tuscany/M
+Tuscarora/MS
+Tuscon/M
+Tuskegee/M
+Tussaud/M
+Tut/M
+Tutankhamen/M
+Tutsi/M
+Tutu/M
+Tuvalu/M
+Tuvaluan
+Twain/M
+Tweed/M
+Tweedledee/M
+Tweedledum/M
+Twila/M
+Twinkies/M
+Twitter/M
+Twizzlers/M
+Twp
+Ty/M
+Tycho/M
+Tylenol/M
+Tyler/M
+Tyndale/M
+Tyndall/M
+Tyre/M
+Tyree/M
+Tyrolean
+Tyrone/M
+Tyson/M
+U/M
+UAR
+UAW
+UBS/M
+UCLA/M
+UFO/SM
+UHF/M
+UK/M
+UL
+UN/M
+UNESCO/M
+UNICEF/M
+UNIX/M
+UPC
+UPI/M
+UPS/M
+URL/S
+US/M
+USA/M
+USAF
+USB
+USCG
+USDA/M
+USIA
+USMC
+USN
+USO
+USP
+USPS
+USS
+USSR/M
+UT/M
+UTC
+UV/M
+Ubangi/M
+Ubuntu/M
+Ucayali/M
+Uccello/M
+Udall/M
+Ufa/M
+Uganda/M
+Ugandan/MS
+Uighur/M
+Ujungpandang/M
+Ukraine/M
+Ukrainian/SM
+Ulster/M
+Ultrasuede/M
+Ulyanovsk/M
+Ulysses/M
+Umbriel/M
+Underwood/M
+Ungava/M
+Unicode/M
+Unilever/M
+Union/SM
+Unionist
+Uniroyal/M
+Unitarian/MS
+Unitarianism/MS
+Unitas/M
+Unix/S
+Unukalhai/M
+Upanishads/M
+Updike/M
+Upjohn/M
+Upton/M
+Ur/M
+Ural/SM
+Urals/M
+Urania/M
+Uranus/M
+Urban/M
+Urdu/M
+Urey/M
+Uriah/M
+Uriel/M
+Uris/M
+Urquhart/M
+Ursa/M
+Ursula/M
+Ursuline/M
+Uruguay/M
+Uruguayan/MS
+Urumqi/M
+Usenet/MS
+Ustinov/M
+Ut
+Utah/M
+Utahan/MS
+Ute/SM
+Utopia/SM
+Utopian/SM
+Utrecht/M
+Utrillo/M
+Uzbek/M
+Uzbekistan/M
+Uzi/SM
+V/M
+VA
+VAT/M
+VAX
+VAXes
+VBA/M
+VCR/M
+VD/M
+VDT
+VDU
+VF
+VFW/M
+VG
+VGA
+VHF/M
+VHS
+VI/M
+VIP/SM
+VISTA
+VJ
+VLF/M
+VOA
+VP
+VT
+VTOL
+Va/M
+Vader/M
+Vaduz/M
+Val/M
+Valarie/M
+Valdez/M
+Valencia/SM
+Valenti/M
+Valentin/M
+Valentine/M
+Valentino/M
+Valenzuela/M
+Valeria/M
+Valerian/M
+Valerie/M
+Valery/M
+Valhalla/M
+Valium/MS
+Valkyrie/SM
+Vallejo
+Valletta/M
+Valois/M
+Valparaiso/M
+Valvoline/M
+Van/M
+Vance/M
+Vancouver/M
+Vandal/MS
+Vanderbilt/M
+Vandyke/M
+Vanessa/M
+Vang/M
+Vanuatu/M
+Vanzetti/M
+Varanasi/M
+Varese/M
+Vargas/M
+Vaseline/SM
+Vasquez/M
+Vassar/M
+Vatican/M
+Vauban/M
+Vaughan/M
+Vaughn/M
+Vazquez/M
+Veblen/M
+Veda/SM
+Vedanta/M
+Vega/SM
+Vegas/M
+Vegemite/M
+Vela/M
+Velasquez/M
+Velazquez/M
+Velcro/MS
+Velez/M
+Velma/M
+Velveeta/M
+Venetian/SM
+Venezuela/M
+Venezuelan/SM
+Venice/M
+Venn/M
+Ventolin/M
+Venus/MS
+Venusian/M
+Vera/M
+Veracruz/M
+Verde/M
+Verdi/M
+Verdun/M
+Verizon/M
+Verlaine/M
+Vermeer/M
+Vermont/ZMR
+Vermonter/M
+Vern/M
+Verna/M
+Verne/M
+Vernon/M
+Verona/M
+Veronese/M
+Veronica/M
+Versailles/M
+Vesalius/M
+Vespasian/M
+Vespucci/M
+Vesta/M
+Vesuvius/M
+Viacom/M
+Viagra/M
+Vic/M
+Vicente/M
+Vichy/M
+Vicki/M
+Vickie/M
+Vicksburg/M
+Vicky/M
+Victor/M
+Victoria/M
+Victorian/MS
+Victorianism
+Victrola/M
+Vidal/M
+Vienna/M
+Viennese/M
+Vientiane/M
+Vietcong/M
+Vietminh/M
+Vietnam/M
+Vietnamese/M
+Vijayanagar/M
+Vijayawada/M
+Viking/MS
+Vila/M
+Villa/M
+Villarreal/M
+Villon/M
+Vilma/M
+Vilnius/M
+Vilyui/M
+Vince/M
+Vincent/M
+Vindemiatrix/M
+Vinson/M
+Viola/M
+Violet/M
+Virgie/M
+Virgil/M
+Virginia/M
+Virginian/SM
+Virgo/SM
+Visa/M
+Visayans/M
+Vishnu/M
+Visigoth/M
+Visigoths
+Vistula/M
+Vitim/M
+Vito/M
+Vitus/M
+Vivaldi/M
+Vivekananda/M
+Vivian/M
+Vivienne/M
+Vlad/M
+Vladimir/M
+Vladivostok/M
+Vlaminck/M
+Vlasic/M
+VoIP
+Vogue/M
+Volcker/M
+Voldemort/M
+Volga/M
+Volgograd/M
+Volkswagen/M
+Volstead/M
+Volta/M
+Voltaire/M
+Volvo/M
+Vonda/M
+Vonnegut/M
+Voronezh/M
+Vorster/M
+Voyager/M
+Vt
+Vuitton/M
+Vulcan/M
+Vulg
+Vulgate/SM
+W/MDT
+WA
+WAC
+WASP/M
+WATS/M
+WC
+WHO/M
+WI
+WMD
+WNW/M
+WP
+WSW/M
+WTO
+WV
+WW
+WWI
+WWII
+WWW/M
+WY
+WYSIWYG
+Wabash/M
+Wac
+Waco/M
+Wade/M
+Wagner/M
+Wagnerian/M
+Wahhabi/M
+Waikiki/M
+Waite/M
+Wake/M
+Waksman/M
+Wald/MN
+Waldemar/M
+Walden/M
+Waldensian/M
+Waldheim/M
+Waldo/M
+Waldorf/M
+Wales/M
+Walesa/M
+Walgreen/SM
+Walgreens/M
+Walker/M
+Walkman/M
+Wall/SMR
+Wallace/M
+Wallenstein/M
+Waller/M
+Wallis/M
+Walloon/M
+Walls/M
+Walmart/M
+Walpole/M
+Walpurgisnacht/M
+Walsh/M
+Walt/MRZ
+Walter/M
+Walters/M
+Walton/M
+Wanamaker/M
+Wanda/M
+Wang/M
+Wankel/M
+Ward/M
+Ware/MG
+Warhol/M
+Waring/M
+Warner/M
+Warren/M
+Warsaw/M
+Warwick/M
+Wasatch/M
+Wash/M
+Washington/M
+Washingtonian/MS
+Wassermann/M
+Waterbury/M
+Waterford/M
+Watergate/M
+Waterloo/MS
+Waters/M
+Watkins/M
+Watson/M
+Watt/SM
+Watteau/M
+Watts/M
+Watusi/M
+Waugh/M
+Wave
+Wayne/M
+Weaver/M
+Web/MR
+Webb/M
+Weber/M
+Webern/M
+Webster/MS
+Wed/M
+Weddell/M
+Wedgwood/M
+Wednesday/MS
+Weeks/M
+Wehrmacht/M
+Wei/M
+Weierstrass/M
+Weill/M
+Weinberg/M
+Weiss/M
+Weissmuller/M
+Weizmann/M
+Weldon/M
+Welland/M
+Weller/M
+Welles/M
+Wellington/SM
+Wells/M
+Welsh/M
+Welshman/M
+Welshmen/M
+Welshwoman
+Wendell/M
+Wendi/M
+Wendy/M
+Wesak/M
+Wesley/M
+Wesleyan/M
+Wessex/M
+Wesson/M
+West/SM
+Western/MRS
+Westinghouse/M
+Westminster/M
+Weston/M
+Westphalia/M
+Weyden/M
+Wezen/M
+Wharton/M
+Wheaties/M
+Wheatstone/M
+Wheeler/M
+Wheeling/M
+Whig/SM
+Whipple/M
+Whirlpool/M
+Whistler/M
+Whitaker/M
+White/SM
+Whitefield/M
+Whitehall/M
+Whitehead/M
+Whitehorse/M
+Whiteley/M
+Whitfield/M
+Whitley/M
+Whitman/M
+Whitney/M
+Whitsunday/MS
+Whittier/M
+WiFi
+Wicca/M
+Wichita/M
+Wiemar/M
+Wiesel/M
+Wiesenthal/M
+Wiggins/M
+Wigner/M
+Wii/M
+Wikileaks
+Wikipedia/M
+Wilberforce/M
+Wilbert/M
+Wilbur/M
+Wilburn/M
+Wilcox/M
+Wilda/M
+Wilde/MR
+Wilder/M
+Wiles/M
+Wiley/M
+Wilford/M
+Wilfred/M
+Wilfredo/M
+Wilhelm/M
+Wilhelmina/M
+Wilkerson/M
+Wilkes/M
+Wilkins/M
+Wilkinson/M
+Will/M
+Willa/M
+Willamette/M
+Willard/M
+Willemstad/M
+William/SM
+Williams/M
+Williamson/M
+Willie/M
+Willis/M
+Willy/M
+Wilma/M
+Wilmer/M
+Wilmington/M
+Wilson/M
+Wilsonian/M
+Wilton/M
+Wimbledon/M
+Wimsey/M
+Winchell/M
+Winchester/MS
+Windbreaker/M
+Windex/M
+Windhoek/M
+Windows/M
+Windsor/SM
+Windward/M
+Winesap/M
+Winfred/M
+Winfrey/M
+Winifred/M
+Winkle/M
+Winnebago/M
+Winnie/M
+Winnipeg/M
+Winston/M
+Winters/M
+Winthrop/M
+Wis
+Wisc
+Wisconsin/M
+Wisconsinite/MS
+Wise/M
+Witt/M
+Wittgenstein/M
+Witwatersrand/M
+Wm/M
+Wobegon/M
+Wodehouse/M
+Wolf/M
+Wolfe/M
+Wolff/M
+Wolfgang/M
+Wollongong/M
+Wollstonecraft/M
+Wolsey/M
+Wolverhampton
+Wonder/M
+Wonderbra/M
+Wong/M
+Wood/SM
+Woodard/M
+Woodhull/M
+Woodrow/M
+Woods/M
+Woodstock/M
+Woodward/M
+Woolf/M
+Woolite/M
+Woolongong/M
+Woolworth/M
+Wooster/M
+Wooten/M
+Worcester/SM
+Worcestershire/M
+WordPress/M
+Wordsworth/M
+Workman/M
+Worms/M
+Wotan/M
+Wovoka/M
+Wozniak/M
+Wozzeck/M
+Wrangell/M
+Wren/M
+Wright/M
+Wrigley/M
+Wroclaw/M
+Wu/M
+Wuhan/M
+Wurlitzer/M
+Wyatt/M
+Wycherley/M
+Wycliffe/M
+Wyeth/M
+Wylie/M
+Wynn/M
+Wyo
+Wyoming/M
+Wyomingite/SM
+X/M
+XEmacs/M
+XL/M
+XML
+XS
+XXL
+Xamarin/M
+Xanadu/M
+Xanthippe/M
+Xavier/M
+Xe/SM
+Xenakis/M
+Xenia/M
+Xenophon/M
+Xerox/MS
+Xerxes/M
+Xhosa/M
+Xi'an/M
+Xian/SM
+Xiaoping/M
+Ximenes/M
+Xingu/M
+Xinjiang/M
+Xiongnu/M
+Xizang/M
+Xmas/MS
+Xochipilli/M
+Xuzhou/M
+Y/M
+YMCA/M
+YMHA
+YMMV
+YT
+YWCA/M
+YWHA
+Yacc/M
+Yahoo/M
+Yahtzee/M
+Yahweh/M
+Yakima/M
+Yakut/M
+Yakutsk/M
+Yale/M
+Yalow/M
+Yalta/M
+Yalu/M
+Yamagata/M
+Yamaha/M
+Yamoussoukro/M
+Yang/M
+Yangon/M
+Yangtze/M
+Yank/SM
+Yankee/SM
+Yaobang/M
+Yaounde/M
+Yaqui/M
+Yaren
+Yaroslavl/M
+Yataro/M
+Yates/M
+Yb/M
+Yeager/M
+Yeats/M
+Yekaterinburg/M
+Yellowknife/M
+Yellowstone/M
+Yeltsin/M
+Yemen/M
+Yemeni/SM
+Yemenite
+Yenisei/M
+Yerevan/M
+Yerkes/M
+Yesenia/M
+Yevtushenko/M
+Yggdrasil/M
+Yiddish/M
+Ymir/M
+Yoda/M
+Yoknapatawpha/M
+Yoko/M
+Yokohama/M
+Yolanda/M
+Yong/M
+Yonkers/M
+York/M
+Yorkie/M
+Yorkshire/MS
+Yorktown/M
+Yoruba/M
+Yosemite/M
+Yossarian/M
+YouTube/M
+Young/M
+Youngstown/M
+Ypres/M
+Ypsilanti/M
+Yuan/M
+Yucatan/M
+Yugo/M
+Yugoslav/MS
+Yugoslavia/M
+Yugoslavian/SM
+Yukon/M
+Yule/SM
+Yuletide/MS
+Yuma/SM
+Yunnan/M
+Yuri/M
+Yves/M
+Yvette/M
+Yvonne/M
+Z/SMNXT
+Zachariah/M
+Zachary/M
+Zachery/M
+Zagreb/M
+Zaire/M
+Zairian
+Zambezi/M
+Zambia/M
+Zambian/SM
+Zamboni/M
+Zamenhof/M
+Zamora/M
+Zane/M
+Zanuck/M
+Zanzibar/M
+Zapata/M
+Zaporozhye/M
+Zapotec/M
+Zappa/M
+Zara/M
+Zarathustra/M
+Zealand/M
+Zebedee/M
+Zechariah/M
+Zedekiah/M
+Zedong/M
+Zeffirelli/M
+Zeke/M
+Zelig/M
+Zelma/M
+Zen/M
+Zenger/M
+Zeno/M
+Zephaniah/M
+Zephyrus/M
+Zest/M
+Zeus/M
+Zhdanov
+Zhejiang/M
+Zhengzhou/M
+Zhivago/M
+Zhukov/M
+Zibo/M
+Ziegfeld/M
+Ziegler/M
+Ziggy/M
+Zika
+Zimbabwe/M
+Zimbabwean/SM
+Zimmerman/M
+Zinfandel/M
+Zion/SM
+Zionism/SM
+Zionist/SM
+Ziploc/M
+Zn/M
+Zoe/M
+Zola/M
+Zollverein/M
+Zoloft/M
+Zomba/M
+Zorn/M
+Zoroaster/M
+Zoroastrian/MS
+Zoroastrianism/SM
+Zorro/M
+Zosma/M
+Zr/M
+Zsigmondy/M
+Zubenelgenubi/M
+Zubeneschamali/M
+Zukor/M
+Zulu/SM
+Zululand
+Zuni/M
+Zurich/M
+Zwingli/M
+Zworykin/M
+Zyrtec/M
+Zyuganov/M
+Zzz
+a/S
+aah
+aardvark/SM
+ab/SDY
+aback
+abacus/MS
+abaft
+abalone/SM
+abandon/LSDG
+abandonment/M
+abase/LGDS
+abasement/M
+abash/GLDS
+abashed/UY
+abashment/M
+abate/LGDS
+abated/U
+abatement/M
+abattoir/MS
+abbe/SM
+abbess/MS
+abbey/MS
+abbot/MS
+abbr
+abbrev/S
+abbreviate/DSGNX
+abbreviation/M
+abdicate/GNDSX
+abdication/M
+abdomen/SM
+abdominal
+abduct/DSG
+abductee/MS
+abduction/SM
+abductor/MS
+abeam
+aberrant
+aberration/MS
+aberrational
+abet/S
+abetted
+abetting
+abettor/SM
+abeyance/M
+abhor/S
+abhorred
+abhorrence/M
+abhorrent/Y
+abhorring
+abidance/M
+abide/GS
+abiding/Y
+ability/IEMS
+abject/YP
+abjection/M
+abjectness/M
+abjuration/SM
+abjuratory
+abjure/ZGDRS
+abjurer/M
+ablate/XGNVDS
+ablation/M
+ablative/MS
+ablaze
+able/UT
+abler
+abloom
+ablution/SM
+abnegate/GNDS
+abnegation/M
+abnormal/Y
+abnormality/SM
+aboard
+abode/MS
+abolish/GDS
+abolition/M
+abolitionism/M
+abolitionist/SM
+abominable
+abominably
+abominate/DSGNX
+abomination/M
+aboriginal/MS
+aborigine/SM
+aborning
+abort/GVDS
+abortion/MS
+abortionist/MS
+abortive/Y
+abound/DSG
+about
+above/M
+aboveboard
+abracadabra/M
+abrade/GDS
+abrasion/MS
+abrasive/MYPS
+abrasiveness/M
+abreast
+abridge/DSLG
+abridgement/MS
+abroad
+abrogate/XGNDS
+abrogation/M
+abrogator/MS
+abrupt/TPRY
+abruptness/M
+abs/M
+abscess/MDSG
+abscissa/SM
+abscission/M
+abscond/ZGSDR
+absconder/M
+abseil/MDSG
+absence/SM
+absent/DYSG
+absentee/MS
+absenteeism/M
+absentminded/YP
+absentmindedness/M
+absinth/M
+absinthe/M
+absolute/PMYTNS
+absoluteness/M
+absolution/M
+absolutism/M
+absolutist/MS
+absolve/DSG
+absorb/AGDS
+absorbance
+absorbency/M
+absorbent/SM
+absorbing/Y
+absorption/M
+absorptive
+abstain/DRZGS
+abstainer/M
+abstemious/PY
+abstemiousness/M
+abstention/MS
+abstinence/M
+abstinent
+abstract/GSPMDY
+abstracted/YP
+abstractedness/M
+abstraction/SM
+abstractness/MS
+abstruse/YP
+abstruseness/M
+absurd/TPRY
+absurdist/MS
+absurdity/SM
+absurdness/M
+abundance/SM
+abundant/Y
+abuse's
+abuse/EGVDS
+abuser/MS
+abusive/YP
+abusiveness/M
+abut/SL
+abutment/MS
+abutted
+abutting
+abuzz
+abysmal/Y
+abyss/MS
+abyssal
+ac
+acacia/MS
+academe/M
+academia/M
+academic/SM
+academical/Y
+academician/MS
+academy/SM
+acanthus/MS
+accede/GDS
+accelerate/GNXDS
+acceleration/M
+accelerator/SM
+accent/MDSG
+accented/U
+accentual
+accentuate/GNDS
+accentuation/M
+accept/DSBG
+acceptability/M
+acceptableness/M
+acceptably/U
+acceptance/SM
+acceptation/MS
+accepted/U
+access/MDSG
+accessibility/IM
+accessible/I
+accessibly/I
+accession/MDGS
+accessorize/DSG
+accessory/SM
+accident/MS
+accidental/SMY
+acclaim/MDGS
+acclamation/M
+acclimate/DSGN
+acclimation/M
+acclimatization/M
+acclimatize/DSG
+acclivity/SM
+accolade/SM
+accommodate/XGNDS
+accommodating/Y
+accommodation/M
+accompanied/U
+accompaniment/MS
+accompanist/SM
+accompany/DSG
+accomplice/SM
+accomplish/DSLG
+accomplished/U
+accomplishment/MS
+accord/GMDS
+accordance/M
+accordant
+according/Y
+accordion/MS
+accordionist/MS
+accost/GMDS
+account/MDSBG
+accountability/M
+accountable/U
+accountancy/M
+accountant/MS
+accounted/U
+accounting/M
+accouterments's
+accoutre/DSG
+accoutrements
+accredit/SGD
+accreditation/M
+accredited/U
+accretion/MS
+accrual/MS
+accrue/GDS
+acct
+acculturate/DSGN
+acculturation/M
+accumulate/XGNVDS
+accumulation/M
+accumulator/MS
+accuracy/IM
+accurate/IY
+accurateness/M
+accursed/P
+accursedness/M
+accusation/MS
+accusative/MS
+accusatory
+accuse/ZGDRS
+accuser/M
+accusing/Y
+accustom/DSG
+accustomed/U
+ace/DSMG
+acerbate/DSG
+acerbic
+acerbically
+acerbity/M
+acetaminophen/M
+acetate/MS
+acetic
+acetone/M
+acetonic
+acetyl
+acetylene/M
+ache/DSMG
+achene/MS
+achievable/U
+achieve/BLZGDRS
+achievement/SM
+achiever/M
+aching/Y
+achoo/M
+achromatic
+achy/TR
+acid/SMY
+acidic
+acidify/GDS
+acidity/M
+acidosis/M
+acidulous
+acknowledge/DSGL
+acknowledged/U
+acknowledgement/MS
+acme/SM
+acne/M
+acolyte/MS
+aconite/MS
+acorn/MS
+acoustic/S
+acoustical/Y
+acoustics/M
+acquaint/AGSD
+acquaintance/SM
+acquaintanceship/M
+acquainted/U
+acquiesce/DSG
+acquiescence/M
+acquiescent/Y
+acquire/ZGBDRSL
+acquirement/M
+acquisition/MS
+acquisitive/YP
+acquisitiveness/M
+acquit/S
+acquittal/MS
+acquitted
+acquitting
+acre/SM
+acreage/MS
+acrid/PTRY
+acridity/M
+acridness/M
+acrimonious/YP
+acrimoniousness/M
+acrimony/M
+acrobat/MS
+acrobatic/S
+acrobatically
+acrobatics/M
+acronym/MS
+acrophobia/M
+acropolis/MS
+across
+acrostic/SM
+acrylamide
+acrylic/MS
+act's
+act/ASDGV
+acting/M
+actinium/M
+action/ASM
+actionable
+activate/ICANGSD
+activation/ICAM
+activator/MS
+active's
+active/IKY
+activeness/M
+actives
+activism/M
+activist/MS
+activities
+activity/IM
+actor/AMS
+actress/MS
+actual/Y
+actuality/SM
+actualization/M
+actualize/GDS
+actuarial
+actuary/SM
+actuate/GNDS
+actuation/M
+actuator/SM
+acuity/M
+acumen/M
+acupressure/M
+acupuncture/M
+acupuncturist/SM
+acute/PMYTRS
+acuteness/M
+acyclovir/M
+acyl
+ad/SM
+adage/MS
+adagio/MS
+adamant/MY
+adapt/BZGVDRS
+adaptability/M
+adaptation/MS
+adapter/M
+adaption/S
+add/SDRBZG
+addend/MS
+addenda
+addendum/M
+adder/M
+addict/GVMDS
+addiction/SM
+addition/SM
+additional/Y
+additive/SM
+addle/GDS
+address's
+address/AGDS
+addressable
+addressed/U
+addressee/SM
+adduce/GDS
+adenine/M
+adenocarcinoma
+adenoid/SM
+adenoidal
+adept/MYPS
+adeptness/M
+adequacy/IM
+adequate/IY
+adequateness/M
+adhere/GDS
+adherence/M
+adherent/SM
+adhesion/M
+adhesive/PSM
+adhesiveness/M
+adiabatic
+adieu/MS
+adios
+adipose
+adj
+adjacency/M
+adjacent/Y
+adjectival/Y
+adjective/MS
+adjoin/GDS
+adjourn/DGLS
+adjournment/SM
+adjudge/GDS
+adjudicate/GNVXDS
+adjudication/M
+adjudicator/SM
+adjudicatory
+adjunct/MS
+adjuration/MS
+adjure/GDS
+adjust/AGDSL
+adjustable
+adjuster/SM
+adjustment/AMS
+adjutant/SM
+adman/M
+admen
+admin/S
+administer/DGS
+administrate/XDSGNV
+administration/M
+administrative/Y
+administrator/MS
+admirably
+admiral/MS
+admiralty/M
+admiration/M
+admire/BZGDRS
+admirer/M
+admiring/Y
+admissibility/IM
+admissible/I
+admissibly
+admission/AM
+admissions
+admit/AS
+admittance/M
+admitted/Y
+admitting/A
+admix/GDS
+admixture/SM
+admonish/LDSG
+admonishment/MS
+admonition/MS
+admonitory
+ado/M
+adobe/MS
+adolescence/SM
+adolescent/SM
+adopt/AGVDS
+adoptable
+adopter/MS
+adoption/SM
+adorableness/M
+adorably
+adoration/M
+adore/BZGDRS
+adorer/M
+adoring/Y
+adorn/LGDS
+adorned/U
+adornment/MS
+adrenal/MS
+adrenalin's
+adrenaline/M
+adrenergic
+adrift
+adroit/PY
+adroitness/M
+adsorb/SDG
+adsorbent/MS
+adsorption/SM
+adulate/DSGN
+adulation/M
+adulator/MS
+adulatory
+adult/MS
+adulterant/MS
+adulterate/GNDS
+adulterated/U
+adulteration/M
+adulterer/SM
+adulteress/MS
+adulterous
+adultery/SM
+adulthood/M
+adumbrate/GNDS
+adumbration/M
+adv
+advance/LDSMG
+advancement/SM
+advantage/EDSMG
+advantageous/EY
+advent/SM
+adventitious/Y
+adventure/DRSMZG
+adventurer/M
+adventuresome
+adventuress/MS
+adventurism
+adventurist/S
+adventurous/YP
+adventurousness/M
+adverb/SM
+adverbial/SMY
+adversarial
+adversary/SM
+adverse/PRYT
+adverseness/M
+adversity/SM
+advert/SMDG
+advertise/LZGDRS
+advertised/U
+advertisement/MS
+advertiser/M
+advertising/M
+advertorial/SM
+advice/M
+advisability/IM
+advisable/I
+advisably
+advise/LDRSZGB
+advised/UY
+advisement/M
+adviser/M
+advisor/SM
+advisory/SM
+advocacy/M
+advocate/MGDS
+advt
+adware
+adze/SM
+aegis/M
+aerate/DSGN
+aeration/M
+aerator/SM
+aerial/SMY
+aerialist/MS
+aerie/MS
+aerobatic/S
+aerobatics/M
+aerobic/S
+aerobically
+aerobics/M
+aerodrome/MS
+aerodynamic/S
+aerodynamically
+aerodynamics/M
+aerogram/S
+aeronautic/S
+aeronautical
+aeronautics/M
+aerosol/MS
+aerospace/M
+aery
+aesthete/MS
+aesthetic/S
+aesthetically
+aestheticism/M
+aesthetics/M
+afar
+affability/M
+affable
+affably
+affair/MS
+affect's
+affect/EGDS
+affectation/SM
+affected/UY
+affecting/Y
+affection/EM
+affectionate/Y
+affections
+afferent
+affiance/GDS
+affidavit/SM
+affiliate's
+affiliate/EGNDS
+affiliated/U
+affiliation/EM
+affiliations
+affine
+affinity/SM
+affirm/AGDS
+affirmation/AMS
+affirmative/MYS
+affix/GMDS
+afflatus/M
+afflict/GDS
+affliction/SM
+affluence/M
+affluent/Y
+afford/GDSB
+affordability
+affordably
+afforest/EGSD
+afforestation/M
+affray/MS
+affront/GMDS
+afghan/MS
+aficionado/MS
+afield
+afire
+aflame
+afloat
+aflutter
+afoot
+aforementioned
+aforesaid
+aforethought
+afoul
+afraid/U
+afresh
+aft/RZ
+afterbirth/M
+afterbirths
+afterburner/MS
+aftercare/M
+aftereffect/MS
+afterglow/SM
+afterimage/MS
+afterlife/M
+afterlives
+aftermarket/MS
+aftermath/M
+aftermaths
+afternoon/MS
+aftershave/SM
+aftershock/SM
+aftertaste/SM
+afterthought/SM
+afterwards
+afterword/MS
+again
+against
+agape/M
+agar/M
+agate/MS
+agave/M
+age/DSMGJ
+ageism/M
+ageist/SM
+ageless/YP
+agelessness/M
+agency/SM
+agenda/SM
+agenesis
+agent/AMS
+ageratum/M
+agglomerate/DSMGNX
+agglomeration/M
+agglutinate/DSXGN
+agglutination/M
+aggrandize/GLDS
+aggrandizement/M
+aggravate/GNXDS
+aggravating/Y
+aggravation/M
+aggregate/MGNDSX
+aggregation/M
+aggregator/SM
+aggression/M
+aggressive/PY
+aggressiveness/M
+aggressor/SM
+aggrieve/DSG
+aggro
+aghast
+agile/Y
+agility/M
+aging/M
+agitate/XGNDS
+agitation/M
+agitator/MS
+agitprop/M
+agleam
+aglitter
+aglow
+agnostic/MS
+agnosticism/M
+ago
+agog
+agonist/S
+agonize/GDS
+agonizing/Y
+agony/SM
+agoraphobia/M
+agoraphobic/MS
+agrarian/MS
+agrarianism/M
+agree/EBLDS
+agreeableness/EM
+agreeably/E
+agreeing/E
+agreement/ESM
+agribusiness/MS
+agricultural/Y
+agriculturalist/MS
+agriculture/M
+agriculturist/MS
+agronomic
+agronomist/MS
+agronomy/M
+aground
+ague/M
+ah
+aha
+ahchoo
+ahead
+ahem
+ahoy
+aid/SMDG
+aide/SM
+aided/U
+aigrette/MS
+ail/SDLG
+aileron/SM
+ailment/SM
+aim/SMDG
+aimless/YP
+aimlessness/M
+ain't
+air/SMDJG
+airbag/MS
+airbase/SM
+airbed/S
+airborne
+airbrush/MDSG
+airbus/MS
+aircraft/M
+aircraftman
+aircraftmen
+aircrew/S
+airdrome/S
+airdrop/SM
+airdropped
+airdropping
+airfare/SM
+airfield/SM
+airflow/M
+airfoil/SM
+airfreight/M
+airguns
+airhead/SM
+airily
+airiness/M
+airing/M
+airless/P
+airlessness/M
+airletters
+airlift/SGMD
+airline/RSMZ
+airliner/M
+airlock/SM
+airmail/GSMD
+airman/M
+airmen
+airplane/MS
+airplay/M
+airport/SM
+airship/SM
+airshow/S
+airsick/P
+airsickness/M
+airspace/M
+airspeed
+airstrike/MS
+airstrip/SM
+airtight
+airtime/M
+airwaves/M
+airway/MS
+airwoman
+airwomen
+airworthiness/M
+airworthy/P
+airy/PTR
+aisle/MS
+aitch/MS
+ajar
+aka
+akimbo
+akin
+alabaster/M
+alack
+alacrity/M
+alarm/GMDS
+alarming/Y
+alarmist/SM
+alas
+alb/SM
+albacore/SM
+albatross/MS
+albeit
+albinism/M
+albino/MS
+album/MNS
+albumen/M
+albumin/M
+albuminous
+alchemist/SM
+alchemy/M
+alcohol/SM
+alcoholic/MS
+alcoholically
+alcoholism/M
+alcove/MS
+alder/MS
+alderman/M
+aldermen
+alderwoman/M
+alderwomen
+ale/SMV
+aleatory
+alehouse/SM
+alembic/SM
+alert/GMDYPS
+alertness/M
+alewife/M
+alewives
+alfalfa/M
+alfresco
+alga/M
+algae
+algal
+algebra/SM
+algebraic
+algebraically
+algorithm/SM
+algorithmic
+alias/GMDS
+alibi/GMDS
+alien/BGMDS
+alienable/IU
+alienate/DSGN
+alienation/M
+alienist/SM
+alight/GDS
+align/ALGDS
+aligned/U
+aligner/MS
+alignment/AMS
+alike/U
+aliment/MDSG
+alimentary
+alimony/M
+aliveness/M
+aliyah/M
+aliyahs
+alkali/M
+alkalies
+alkaline
+alkalinity/M
+alkalize/DSG
+alkaloid/SM
+alkyd/MS
+all/M
+allay/GDS
+allegation/MS
+allege/GDS
+alleged/Y
+allegiance/MS
+allegoric
+allegorical/Y
+allegorist/MS
+allegory/SM
+allegretto/MS
+allegro/MS
+allele/MS
+alleluia/SM
+allergen/SM
+allergenic
+allergic
+allergically
+allergist/SM
+allergy/SM
+alleviate/DSGN
+alleviation/M
+alley/MS
+alleyway/SM
+alliance/SM
+alligator/MS
+alliterate/DSXGNV
+alliteration/M
+alliterative/Y
+allocate/ADSGN
+allocation/AM
+allocations
+allot/LS
+allotment/SM
+allotted
+allotting
+allover
+allow/EGDS
+allowable/U
+allowably
+allowance/SM
+alloy/GMDS
+alloyed/U
+allspice/M
+allude/GDS
+allure/MGLDS
+allurement/MS
+alluring/Y
+allusion/SM
+allusive/PY
+allusiveness/M
+alluvial/M
+alluvium/SM
+ally/GDSM
+almanac/SM
+almighty
+almond/MS
+almoner/SM
+almost
+alms/M
+almshouse/MS
+aloe/SM
+aloft
+aloha/MS
+alone
+along
+alongshore
+alongside
+aloof/PY
+aloofness/M
+aloud
+alp/SM
+alpaca/MS
+alpha/MS
+alphabet/SM
+alphabetic
+alphabetical/Y
+alphabetization/SM
+alphabetize/ZGDRS
+alphabetizer/M
+alphanumeric
+alphanumerical/Y
+alpine/S
+already
+alright
+also
+alt/S
+altar/MS
+altarpiece/SM
+alter/GDBS
+alterable/U
+alteration/MS
+altercation/SM
+altered/U
+alternate/DSMYGNVX
+alternation/M
+alternative/MYS
+alternator/SM
+although
+altimeter/MS
+altitude/MS
+alto/SM
+altogether
+altruism/M
+altruist/SM
+altruistic
+altruistically
+alum/SM
+alumina/M
+aluminum/M
+alumna/M
+alumnae
+alumni
+alumnus/M
+alveolar/S
+always
+am/N
+amalgam/SM
+amalgamate/XGNDS
+amalgamation/M
+amanuenses
+amanuensis/M
+amaranth/M
+amaranths
+amaretto/M
+amaryllis/MS
+amass/GDS
+amateur/SM
+amateurish/YP
+amateurishness/M
+amateurism/M
+amatory
+amaze/LMGDS
+amazement/M
+amazing/Y
+amazon/MS
+amazonian
+ambassador/SM
+ambassadorial
+ambassadorship/MS
+ambassadress/MS
+amber/M
+ambergris/M
+ambidexterity/M
+ambidextrous/Y
+ambience/MS
+ambient
+ambiguity/SM
+ambiguous/UY
+ambit
+ambition/MS
+ambitious/YP
+ambitiousness/M
+ambivalence/M
+ambivalent/Y
+amble/MZGDRS
+ambler/M
+ambrosia/M
+ambrosial
+ambulance/MS
+ambulanceman
+ambulancemen
+ambulancewoman
+ambulancewomen
+ambulant
+ambulate/DSXGN
+ambulation/M
+ambulatory/SM
+ambuscade/MGDS
+ambush/GMDS
+ameliorate/GNVDS
+amelioration/M
+amen/B
+amenability/M
+amenably
+amend/BLGDS
+amendment/SM
+amenity/SM
+amerce/GLDS
+amercement/SM
+americium/M
+amethyst/SM
+amiability/M
+amiable
+amiably
+amicability/M
+amicable
+amicably
+amid
+amide/MS
+amidship/S
+amidst
+amigo/MS
+amine/S
+amino
+amiss
+amitriptyline
+amity/M
+ammeter/SM
+ammo/M
+ammonia/M
+ammonium
+ammunition/M
+amnesia/M
+amnesiac/MS
+amnesic/SM
+amnesty/GDSM
+amniocenteses
+amniocentesis/M
+amnion/MS
+amniotic
+amoeba/MS
+amoebae
+amoebic
+amok
+among
+amontillado/SM
+amoral/Y
+amorality/M
+amorous/YP
+amorousness/M
+amorphous/PY
+amorphousness/M
+amortization/SM
+amortize/DSGB
+amount/GMDS
+amour/MS
+amoxicillin
+amp/SMY
+amperage/M
+ampere/MS
+ampersand/MS
+amphetamine/SM
+amphibian/MS
+amphibious/Y
+amphitheatre/SM
+amphora/M
+amphorae
+ampicillin
+ample/TR
+amplification/M
+amplifier/M
+amplify/NDRSXZG
+amplitude/SM
+ampule/MS
+amputate/GNDSX
+amputation/M
+amputee/MS
+amt
+amulet/MS
+amuse/LGDS
+amusement/MS
+amusing/Y
+amygdala
+amylase/M
+amyloid
+an/CS
+anabolism/M
+anachronism/SM
+anachronistic
+anachronistically
+anaconda/SM
+anaerobe/SM
+anaerobic
+anaerobically
+anaesthesia/M
+anaesthetic/MS
+anaesthetist/MS
+anaesthetization/M
+anaesthetize/GDS
+anagram/MS
+anal/Y
+analgesia/M
+analgesic/SM
+analog/MS
+analogical/Y
+analogize/GDS
+analogous/YP
+analogousness/M
+analogue/SM
+analogy/SM
+analysand/MS
+analyses/A
+analysis/AM
+analyst/SM
+analytic/S
+analytical/Y
+analyzable
+analyze/ADSG
+analyzer/SM
+anapest/SM
+anapestic/MS
+anarchic
+anarchically
+anarchism/M
+anarchist/MS
+anarchistic
+anarchy/M
+anathema/SM
+anathematize/DSG
+anatomic
+anatomical/Y
+anatomist/SM
+anatomize/DSG
+anatomy/SM
+ancestor/SM
+ancestral/Y
+ancestress/MS
+ancestry/SM
+anchor/MDGS
+anchorage/MS
+anchorite/MS
+anchorman/M
+anchormen
+anchorpeople
+anchorperson/SM
+anchorwoman/M
+anchorwomen
+anchovy/SM
+ancient/SPMRYT
+ancientness/M
+ancillary/SM
+and
+andante/SM
+andiron/SM
+androgen/M
+androgenic
+androgynous
+androgyny/M
+android/SM
+anecdotal/Y
+anecdote/MS
+anemia/M
+anemic
+anemically
+anemometer/SM
+anemone/SM
+anent
+anesthesiologist/SM
+anesthesiology/M
+aneurysm/SM
+anew
+angel/MS
+angelfish/MS
+angelic
+angelica/M
+angelical/Y
+anger/GMDS
+angina/M
+angioplasty/SM
+angiosperm/SM
+angle/MZGDRS
+angler/M
+angleworm/MS
+anglicism/S
+anglicize/GDS
+angling/M
+anglophile/S
+anglophone/S
+angora/MS
+angostura
+angrily
+angry/TR
+angst/M
+angstrom/MS
+anguish/GMDS
+angular
+angularity/SM
+angulation
+anhydrous
+aniline/M
+anilingus
+animadversion/MS
+animadvert/GSD
+animal/MS
+animalcule/SM
+animate/ADSGN
+animated/Y
+animation/AM
+animations
+animator/MS
+anime/M
+animism/M
+animist/SM
+animistic
+animosity/SM
+animus/M
+anion/MS
+anionic
+anise/M
+aniseed/M
+anisette/M
+ankh/M
+ankhs
+ankle/MS
+anklebone/MS
+anklet/MS
+annalist/SM
+annals/M
+anneal/GDS
+annelid/MS
+annex/GMDS
+annexation/MS
+annihilate/DSGN
+annihilation/M
+annihilator/SM
+anniversary/SM
+annotate/DSXGNV
+annotation/M
+annotator/MS
+announce/DRSLZG
+announced/U
+announcement/MS
+announcer/M
+annoy/GDS
+annoyance/MS
+annoying/Y
+annual/MYS
+annualized
+annuitant/SM
+annuity/SM
+annul/LS
+annular
+annulled
+annulling
+annulment/SM
+annulus
+annunciation/SM
+anode/MS
+anodize/GDS
+anodyne/MS
+anoint/GDLS
+anointment/M
+anomalous/Y
+anomaly/SM
+anon/S
+anonymity/M
+anonymous/Y
+anopheles/M
+anorak/MS
+anorectic/SM
+anorexia/M
+anorexic/MS
+another
+answer/BMDGS
+answerable/U
+answered/U
+answerphone/S
+ant/SMD
+antacid/SM
+antagonism/SM
+antagonist/SM
+antagonistic
+antagonistically
+antagonize/DSG
+antarctic
+ante/SM
+anteater/MS
+antebellum
+antecedence/M
+antecedent/SM
+antechamber/SM
+antedate/GDS
+antediluvian
+anteing
+antelope/MS
+antenatal
+antenna/SM
+antennae
+anterior
+anteroom/MS
+anthem/MS
+anther/MS
+anthill/SM
+anthologist/SM
+anthologize/DSG
+anthology/SM
+anthracite/M
+anthrax/M
+anthropocentric
+anthropoid/MS
+anthropological/Y
+anthropologist/SM
+anthropology/M
+anthropomorphic
+anthropomorphically
+anthropomorphism/M
+anthropomorphize
+anthropomorphous
+anti/SM
+antiabortion
+antiabortionist/MS
+antiaircraft
+antibacterial/MS
+antibiotic/MS
+antibody/SM
+antic/MS
+anticancer
+anticipate/GNXDS
+anticipated/U
+anticipation/M
+anticipatory
+anticked
+anticking
+anticlerical
+anticlimactic
+anticlimactically
+anticlimax/MS
+anticline/SM
+anticlockwise
+anticoagulant/MS
+anticommunism/M
+anticommunist/SM
+anticyclone/SM
+anticyclonic
+antidemocratic
+antidepressant/MS
+antidote/MS
+antifascist/MS
+antiferromagnetic
+antifreeze/M
+antigen/SM
+antigenic
+antigenicity/M
+antihero/M
+antiheroes
+antihistamine/SM
+antiknock/M
+antilabour
+antilogarithm/SM
+antimacassar/MS
+antimalarial
+antimatter/M
+antimicrobial
+antimissile
+antimony/M
+antineutrino/SM
+antineutron/MS
+antinuclear
+antioxidant/MS
+antiparticle/SM
+antipasti
+antipasto/MS
+antipathetic
+antipathy/SM
+antipersonnel
+antiperspirant/SM
+antiphon/SM
+antiphonal/MYS
+antipodal/S
+antipodean/MS
+antipodes/M
+antipollution
+antipoverty
+antiproton/MS
+antiquarian/SM
+antiquarianism/M
+antiquary/SM
+antiquate/GDS
+antique/DSMG
+antiquity/SM
+antirrhinum/S
+antiscience
+antisemitic
+antisemitism/M
+antisepsis/M
+antiseptic/SM
+antiseptically
+antiserum/MS
+antislavery
+antisocial/Y
+antispasmodic/MS
+antisubmarine
+antitank
+antitheses
+antithesis/M
+antithetic
+antithetical/Y
+antitoxin/MS
+antitrust
+antivenin/MS
+antivenom
+antiviral/MS
+antivirus
+antivivisectionist/MS
+antiwar
+antler/MDS
+antonym/SM
+antonymous
+antrum
+antsy/TR
+anus/MS
+anvil/MS
+anxiety/SM
+anxious/YP
+anxiousness/M
+any
+anybody/SM
+anyhow
+anymore
+anyone/M
+anyplace
+anything/SM
+anytime
+anyway/S
+anywhere
+anywise
+aorta/MS
+aortic
+apace
+apart
+apartheid/M
+apartment/MS
+apathetic
+apathetically
+apathy/M
+apatite/M
+ape/DSMG
+apelike
+aperitif/MS
+aperture/SM
+apex/MS
+aphasia/M
+aphasic/MS
+aphelia
+aphelion/SM
+aphid/MS
+aphorism/MS
+aphoristic
+aphoristically
+aphrodisiac/SM
+apiarist/SM
+apiary/SM
+apical/Y
+apiece
+apish/Y
+aplenty
+aplomb/M
+apocalypse/SM
+apocalyptic
+apocrypha/M
+apocryphal/Y
+apogee/MS
+apolitical/Y
+apologetic/U
+apologetically
+apologia/SM
+apologist/MS
+apologize/GDS
+apology/SM
+apoplectic
+apoplexy/SM
+apoptosis
+apoptotic
+apostasy/SM
+apostate/SM
+apostatize/GDS
+apostle/MS
+apostleship/M
+apostolic
+apostrophe/MS
+apothecary/SM
+apothegm/SM
+apotheoses
+apotheosis/M
+app/SM
+appall/GDS
+appalling/Y
+appaloosa/MS
+apparatchik/S
+apparatus/MS
+apparel/MS
+apparelled
+apparelling
+apparent/Y
+apparition/SM
+appeal/GMDS
+appealing/UY
+appear/AESDG
+appearance/EAMS
+appease/LZGDRS
+appeasement/SM
+appeaser/M
+appellant/SM
+appellate/XN
+appellation/M
+append/GDS
+appendage/SM
+appendectomy/SM
+appendices
+appendicitis/M
+appendix/MS
+appertain/GDS
+appetite/SM
+appetizer/MS
+appetizing/Y
+applaud/ZGDRS
+applauder/M
+applause/M
+apple/MS
+applejack/M
+applesauce/M
+applet/MS
+appliance/SM
+applicability/M
+applicable/I
+applicably
+applicant/SM
+application/AM
+applicator/SM
+applier/MS
+applique/DSM
+appliqueing
+apply/ANXGDS
+appoint/AELSVGD
+appointee/SM
+appointment's/A
+appointment/ESM
+apportion/AGDLS
+apportionment/AM
+appose/GDS
+apposite/YNVP
+appositeness/M
+apposition/M
+appositive/SM
+appraisal/AMS
+appraise/ADSG
+appraiser/MS
+appreciable/I
+appreciably/I
+appreciate/DSXGNV
+appreciated/U
+appreciation/M
+appreciative/Y
+appreciator/MS
+appreciatory
+apprehend/GDS
+apprehension/MS
+apprehensive/YP
+apprehensiveness/M
+apprentice/DSMG
+apprenticeship/MS
+apprise/GDS
+apprize/GDS
+approach/GBMDS
+approachable/UI
+approbation/EM
+approbations
+appropriate/PYGNXDS
+appropriated/U
+appropriateness/IM
+appropriation/M
+appropriator/SM
+approval/EM
+approvals
+approve/EGDS
+approved/U
+approving/EY
+approx
+approximate/DSXYGN
+approximation/M
+appurtenance/SM
+appurtenant
+apricot/MS
+apron/MS
+apropos
+apse/SM
+apt/IYPT
+apter
+aptitude/SM
+aptness/IM
+aqua/SM
+aquaculture/M
+aqualung/MS
+aquamarine/SM
+aquanaut/MS
+aquaplane/MGDS
+aquarium/MS
+aquatic/SM
+aquatically
+aquatics/M
+aquatint/S
+aquavit/M
+aqueduct/MS
+aqueous
+aquifer/SM
+aquiline
+arabesque/MS
+arability/M
+arachnid/MS
+arachnophobia
+arbiter/SM
+arbitrage/MZGDRS
+arbitrager/M
+arbitrageur/SM
+arbitrament/SM
+arbitrarily
+arbitrariness/M
+arbitrary/P
+arbitrate/GNDS
+arbitration/M
+arbitrator/MS
+arboreal
+arboretum/SM
+arborvitae/SM
+arbour/MS
+arbutus/MS
+arc/SMDG
+arcade/MS
+arcane
+arch/PZTGVMDRSY
+archaeological/Y
+archaeologist/SM
+archaeology/M
+archaic
+archaically
+archaism/MS
+archaist/MS
+archangel/MS
+archbishop/SM
+archbishopric/SM
+archdeacon/SM
+archdiocesan
+archdiocese/MS
+archduchess/MS
+archduke/MS
+archenemy/SM
+archer/M
+archery/M
+archetypal
+archetype/MS
+archfiend/MS
+archiepiscopal
+archipelago/MS
+architect/SM
+architectonic/S
+architectonics/M
+architectural/Y
+architecture/MS
+architrave/SM
+archival
+archive/DSMG
+archivist/MS
+archness/M
+archway/SM
+arctic/MS
+ardent/Y
+ardour/MS
+arduous/YP
+arduousness/M
+are/SMB
+area/SM
+areal
+aren't
+arena/MS
+argent/M
+arginine
+argon/M
+argosy/SM
+argot/MS
+arguable/IU
+arguably/U
+argue/ZGDRS
+arguer/M
+argument/MS
+argumentation/M
+argumentative/PY
+argumentativeness/M
+argyle/MS
+aria/SM
+arid/Y
+aridity/M
+aright
+arise/GS
+arisen
+aristocracy/SM
+aristocrat/SM
+aristocratic
+aristocratically
+arithmetic/M
+arithmetical/Y
+arithmetician/MS
+ark/SM
+arm's
+arm/EAGDS
+armada/MS
+armadillo/SM
+armament/AEM
+armaments
+armature/MS
+armband/MS
+armchair/MS
+armed/U
+armful/MS
+armhole/SM
+armistice/SM
+armlet/MS
+armload/S
+armorial
+armour/MDRZGS
+armoured/U
+armourer/M
+armoury/SM
+armpit/MS
+armrest/SM
+army/SM
+aroma/MS
+aromatherapist/MS
+aromatherapy/M
+aromatic/MS
+aromatically
+arose
+around
+arousal/M
+arouse/GDS
+arpeggio/MS
+arr
+arraign/DGSL
+arraignment/SM
+arrange/AESDLG
+arrangement's/E
+arrangement/ASM
+arranger/SM
+arrant
+arras/MS
+array/EGMDS
+arrears/M
+arrest/AGMDS
+arrhythmia/M
+arrhythmic
+arrhythmical
+arrival/MS
+arrive/GDS
+arrogance/M
+arrogant/Y
+arrogate/GNDS
+arrogation/M
+arrow/MS
+arrowhead/MS
+arrowroot/M
+arroyo/MS
+arse/DSMG
+arsehole/SM!
+arsenal/MS
+arsenic/M
+arson/M
+arsonist/SM
+art/SM
+arterial
+arteriole/MS
+arteriosclerosis/M
+artery/SM
+artful/PY
+artfulness/M
+arthritic/MS
+arthritis/M
+arthropod/MS
+arthroscope/SM
+arthroscopic
+arthroscopy
+artichoke/SM
+article/MDS
+articulacy/I
+articular
+articulate/YGNPDSX
+articulateness/IM
+articulation/M
+artifact/SM
+artifice/RSMZ
+artificer/M
+artificial/Y
+artificiality/M
+artillery/M
+artilleryman/M
+artillerymen
+artiness/M
+artisan/MS
+artist/MS
+artiste/MS
+artistic/I
+artistically
+artistry/M
+artless/PY
+artlessness/M
+artsy/TR
+artwork/MS
+arty/PTR
+arugula
+arum/SM
+asap
+asbestos/M
+ascend/AGDS
+ascendance/M
+ascendancy/M
+ascendant/SM
+ascension/MS
+ascent/MS
+ascertain/GDSBL
+ascertainment/M
+ascetic/MS
+ascetically
+asceticism/M
+ascot/MS
+ascribe/GBDS
+ascription/M
+aseptic
+aseptically
+asexual/Y
+asexuality/M
+ash/MDNSG
+ashamed/UY
+ashcan/MS
+ashlar/MS
+ashore
+ashram/MS
+ashtray/SM
+ashy/TR
+aside/MS
+asinine/Y
+asininity/SM
+ask/SDG
+askance
+asked/U
+askew
+aslant
+asleep
+asocial
+asp/SMNX
+asparagus/M
+aspartame/M
+aspect/MS
+aspen/M
+asperity/SM
+aspersion/MS
+asphalt/MDGS
+asphodel/SM
+asphyxia/M
+asphyxiate/DSXGN
+asphyxiation/M
+aspic/MS
+aspidistra/MS
+aspirant/MS
+aspirate/MGNDSX
+aspiration/M
+aspirator/SM
+aspire/GDS
+aspirin/MS
+ass/MS
+assail/GBDS
+assailable/U
+assailant/SM
+assassin/SM
+assassinate/GNXDS
+assassination/M
+assault/MDRGS
+assay/ZGMDRS
+assayer/M
+assemblage/SM
+assemble/AEGSD
+assembler/MS
+assemblies
+assembly/AM
+assemblyman/M
+assemblymen
+assemblywoman/M
+assemblywomen
+assent/GMDS
+assert/AGVDS
+assertion/AM
+assertions
+assertive/YP
+assertiveness/M
+assess/ALGDS
+assessment/ASM
+assessor/MS
+asset/MS
+asseverate/DSGN
+asseveration/M
+assiduity/M
+assiduous/PY
+assiduousness/M
+assign's
+assign/ALGDS
+assignable
+assignation/MS
+assigned/U
+assignee/M
+assigner/MS
+assignment/AMS
+assignor/MS
+assimilate/DSGN
+assimilated/U
+assimilation/M
+assist/GVMDS
+assistance/M
+assistant/SM
+assisted/U
+assize/MS
+assn
+assoc
+associate's
+associate/EDSGNV
+association/EM
+associations
+associativity
+assonance/M
+assonant/MS
+assort/GLDS
+assortative
+assortment/MS
+asst
+assuage/GDS
+assume/BGDS
+assumption/SM
+assumptive
+assurance/ASM
+assure/AGDS
+assured/MYS
+astatine/M
+aster/EMS
+asterisk/GMDS
+astern
+asteroid/MS
+asthma/M
+asthmatic/SM
+asthmatically
+astigmatic
+astigmatism/SM
+astir
+astonish/DSLG
+astonishing/Y
+astonishment/M
+astound/GDS
+astounding/Y
+astraddle
+astrakhan/M
+astral
+astray
+astride
+astringency/M
+astringent/SMY
+astrolabe/SM
+astrologer/SM
+astrological/Y
+astrologist/MS
+astrology/M
+astronaut/MS
+astronautic/S
+astronautical
+astronautics/M
+astronomer/SM
+astronomic
+astronomical/Y
+astronomy/M
+astrophysical
+astrophysicist/MS
+astrophysics/M
+astute/PYTR
+astuteness/M
+asunder
+asylum/SM
+asymmetric
+asymmetrical/Y
+asymmetry/SM
+asymptomatic
+asymptotic
+asymptotically
+asynchronous/Y
+at
+atavism/M
+atavist/SM
+atavistic
+ataxia/M
+ataxic/MS
+ate
+atelier/SM
+atheism/M
+atheist/MS
+atheistic
+atherosclerosis/M
+atherosclerotic
+athirst
+athlete/MS
+athletic/S
+athletically
+athleticism
+athletics/M
+athwart
+atilt
+atishoo
+atlas/MS
+atmosphere/MS
+atmospheric/S
+atmospherically
+atmospherics/M
+atoll/MS
+atom/SM
+atomic
+atomically
+atomize/ZGDRS
+atomizer/M
+atonal/Y
+atonality/M
+atone/LGDS
+atonement/M
+atop
+atria
+atrial
+atrioventricular
+atrium/M
+atrocious/PY
+atrociousness/M
+atrocity/SM
+atrophy/DSMG
+atropine/M
+attach/ALGDS
+attache/BM
+attached/U
+attachment/AM
+attachments
+attack/ZGMDRS
+attacker/M
+attain/AGDS
+attainability/M
+attainable/U
+attainder/M
+attainment/SM
+attar/M
+attempt's
+attempt/ASDG
+attend/SDRZG
+attendance/SM
+attendant/SM
+attended/U
+attendee/SM
+attention/IM
+attentions
+attentive/IPY
+attentiveness/IM
+attenuate/DSGN
+attenuation/M
+attest/SDG
+attestation/SM
+attested/U
+attic/SM
+attire/DSMG
+attitude/SM
+attitudinal
+attitudinize/GDS
+attn
+attorney/MS
+attract/SGVDB
+attractant/MS
+attraction/MS
+attractive/UY
+attractiveness/M
+attribute/DSMGNVBX
+attributed/U
+attribution/M
+attributive/MYS
+attrition/M
+attune/DSG
+atty
+atwitter
+atypical/Y
+aubergine/S
+auburn/M
+auction/MDGS
+auctioneer/SM
+audacious/YP
+audaciousness/M
+audacity/M
+audibility/IM
+audible/MS
+audibly/I
+audience/MS
+audio/MS
+audiological
+audiologist/SM
+audiology/M
+audiometer/SM
+audiophile/SM
+audiotape/SM
+audiovisual/S
+audiovisuals/M
+audit/GMDS
+audition/SMDG
+auditor/MS
+auditorium/SM
+auditory
+auger/MS
+aught/MS
+augment/DRZGS
+augmentation/MS
+augmentative
+augmenter/M
+augur/GMDS
+augury/SM
+august/PTRY
+augustness/M
+auk/SM
+aunt/SM
+auntie/SM
+aura/MS
+aural/Y
+aureole/SM
+aureus
+auricle/SM
+auricular
+aurora/SM
+auscultate/GNDSX
+auscultation/M
+auspice/SM
+auspicious/IY
+auspiciousness/M
+austere/RYT
+austerity/SM
+austral
+authentic/IU
+authentically
+authenticate/XGNDS
+authenticated/U
+authentication/M
+authenticity/M
+author/SMDG
+authoress/MS
+authorial
+authoritarian/MS
+authoritarianism/M
+authoritative/YP
+authoritativeness/M
+authority/SM
+authorization/MS
+authorize/AGDS
+authorized/U
+authorship/M
+autism/M
+autistic
+auto/MS
+autobahn/SM
+autobiographer/SM
+autobiographic
+autobiographical/Y
+autobiography/SM
+autoclave/MS
+autocracy/SM
+autocrat/SM
+autocratic
+autocratically
+autocross
+autodidact/SM
+autograph/MDG
+autographs
+autoimmune
+autoimmunity/M
+automaker/SM
+automate/GNDS
+automatic/SM
+automatically
+automation/M
+automatism/M
+automatize/GDS
+automaton/SM
+automobile/DSMG
+automotive
+autonomic
+autonomous/Y
+autonomy/M
+autopilot/SM
+autopsy/GDSM
+autosuggestion
+autoworker/MS
+autumn/SM
+autumnal
+aux
+auxiliary/SM
+auxin/M
+av/RZ
+avail/BGMDS
+availability/UM
+available/U
+avalanche/SM
+avarice/M
+avaricious/Y
+avast
+avatar/MS
+avaunt
+avdp
+ave
+avenge/ZGDRS
+avenger/M
+avenue/MS
+average/MYGDS
+averred
+averring
+averse/XN
+aversion/M
+avert/GDS
+avg
+avian
+aviary/SM
+aviation/M
+aviator/MS
+aviatrices
+aviatrix/MS
+avid/Y
+avidity/M
+avionic/S
+avionics/M
+avitaminosis/M
+avocado/SM
+avocation/MS
+avocational
+avoid/SDGB
+avoidable/U
+avoidably/U
+avoidance/M
+avoidant
+avoirdupois/M
+avouch/DSG
+avow/EDGS
+avowal/ESM
+avowed/Y
+avuncular/Y
+aw
+await/GDS
+awake/GS
+awaken/AGDS
+awakening/SM
+award/GMDS
+awardee/S
+aware/UP
+awareness/UM
+awash
+away
+awe/DSMG
+aweigh
+awesome/YP
+awesomeness/M
+awestruck
+awful/YP
+awfuller
+awfullest
+awfulness/M
+awhile
+awkward/RYPT
+awkwardness/M
+awl/SM
+awn/GJSM
+awning/M
+awoke
+awoken
+awry
+axe/DSMG
+axial/Y
+axiom/SM
+axiomatic
+axiomatically
+axis/M
+axle/MS
+axletree/SM
+axolotl/SM
+axon/MS
+ayah/M
+ayahs
+ayatollah/M
+ayatollahs
+aye/SM
+azalea/SM
+azimuth/M
+azimuths
+azure/SM
+b/KDT
+baa/SMDG
+babble/MZGDRS
+babbler/M
+babe/SM
+babel/MS
+baboon/MS
+babushka/SM
+baby/TGDRSM
+babyhood/M
+babyish
+babysat
+babysit/S
+babysitter/MS
+babysitting/M
+baccalaureate/SM
+baccarat/M
+bacchanal/MS
+bacchanalia/M
+bacchanalian/MS
+baccy
+bachelor/SM
+bachelorhood/M
+bacillary
+bacilli
+bacillus/M
+back/SJZGMDR
+backache/MS
+backbench/S
+backbit
+backbite/ZGRS
+backbiter/M
+backbitten
+backboard/SM
+backbone/MS
+backbreaking
+backchat
+backcloth
+backcloths
+backcomb/DSG
+backdate/GDS
+backdoor
+backdrop/MS
+backer/M
+backfield/SM
+backfire/MGDS
+backgammon/M
+background/MRZS
+backgrounder/M
+backhand/MDRSZG
+backhanded/Y
+backhander/M
+backhoe/MS
+backing/M
+backlash/MS
+backless
+backlog/MS
+backlogged
+backlogging
+backpack/ZGMDRS
+backpacker/M
+backpacking/M
+backpedal/S
+backpedalled
+backpedalling
+backrest/SM
+backroom/S
+backscratching/M
+backseat/SM
+backside/SM
+backslapper/SM
+backslapping/M
+backslash/MS
+backslid
+backslide/RSZG
+backslider/M
+backspace/DSMG
+backspin/M
+backstabber/MS
+backstabbing
+backstage/M
+backstair/S
+backstop/SM
+backstopped
+backstopping
+backstory/S
+backstreet/S
+backstretch/MS
+backstroke/MGDS
+backtalk/M
+backtrack/SDG
+backup/MS
+backward/PSY
+backwardness/M
+backwash/M
+backwater/SM
+backwoods/M
+backwoodsman/M
+backwoodsmen
+backyard/SM
+bacon/M
+bacteria/M
+bacterial
+bactericidal
+bactericide/SM
+bacteriologic
+bacteriological
+bacteriologist/SM
+bacteriology/M
+bacterium/M
+bad/MYP
+badder
+baddest
+baddie/MS
+bade
+badge/MZRS
+badger/GMD
+badinage/M
+badlands/M
+badman/M
+badmen
+badminton/M
+badmouth/GD
+badmouths
+badness/M
+baffle/MZGDRSL
+bafflement/M
+baffler/M
+bag/SM
+bagatelle/SM
+bagel/MS
+bagful/MS
+baggage/M
+bagged
+baggie/M
+baggily
+bagginess/M
+bagging
+baggy/PTRS
+bagpipe/MZRS
+bagpiper/M
+baguette/MS
+bah
+baht/SM
+bail/SBGMD
+bailey/S
+bailiff/S
+bailiwick/MS
+bailout/SM
+bailsman/M
+bailsmen
+bairn/MS
+bait/SGMD
+baize/M
+bake/DRSMZG
+baked/U
+baker/M
+bakery/SM
+bakeshop/MS
+baklava/M
+baksheesh/M
+balaclava/MS
+balalaika/MS
+balance's
+balance/UDSG
+balboa/SM
+balcony/SM
+bald/STGPDRY
+balderdash/M
+baldfaced
+baldness/M
+baldric/SM
+baldy/S
+bale/DRSMZG
+baleen/M
+baleful/PY
+balefulness/M
+baler/M
+balk/SGMD
+balky/RT
+ball/SGMD
+ballad/SM
+balladeer/MS
+balladry/M
+ballast/GSMD
+ballcock/MS
+ballerina/SM
+ballet/SM
+balletic
+ballgame/MS
+ballgirl/S
+ballgown/S
+ballistic/S
+ballistics/M
+balloon/SGMD
+balloonist/MS
+ballot/SMDG
+ballpark/MS
+ballplayer/MS
+ballpoint/MS
+ballroom/MS
+balls/DSG
+ballsy/RT
+bally
+ballyhoo/SMDG
+balm/SM
+balminess/M
+balmy/RTP
+baloney/M
+balsa/MS
+balsam/SM
+balsamic
+baluster/SM
+balustrade/MS
+bamboo/SM
+bamboozle/DSG
+ban/SM
+banal/Y
+banality/SM
+banana/SM
+band's
+band/ESGD
+bandage/DSMG
+bandana/SM
+bandbox/MS
+bandeau/M
+bandeaux
+bandit/SM
+banditry/M
+bandleader/S
+bandmaster/SM
+bandoleer/SM
+bandsman/M
+bandsmen
+bandstand/SM
+bandwagon/SM
+bandwidth
+bandwidths
+bandy/DRSTG
+bane/SM
+baneful
+bang/SGMDR
+bangle/SM
+bani
+banish/GLDS
+banishment/M
+banister/SM
+banjo/MS
+banjoist/SM
+bank/SZGBMDR
+bankbook/SM
+bankcard/SM
+banker/M
+banking/M
+banknote/SM
+bankroll/SGMD
+bankrupt/SGMD
+bankruptcy/SM
+banned
+banner/SM
+banning
+bannock/MS
+banns/M
+banquet/ZGMDRS
+banqueter/M
+banquette/SM
+banshee/MS
+bantam/SM
+bantamweight/SM
+banter/GSMD
+bantering/Y
+banyan/SM
+banzai/SM
+baobab/SM
+bap/S
+baptism/MS
+baptismal
+baptist/S
+baptistery/SM
+baptize/ZGDRS
+baptized/U
+baptizer/M
+bar's
+bar/ECUTS
+barb/SZGMDR
+barbacoa
+barbarian/SM
+barbarianism/MS
+barbaric
+barbarically
+barbarism/SM
+barbarity/SM
+barbarize/DSG
+barbarous/Y
+barbecue/DSMG
+barbel/SM
+barbell/MS
+barber/GMD
+barberry/SM
+barbershop/MS
+barbie/S
+barbiturate/SM
+barbwire/M
+barcarole/SM
+bard/SM
+bardic
+bare/DRSPYG
+bareback/D
+barefaced/Y
+barefoot/D
+barehanded
+bareheaded
+barelegged
+bareness/M
+barf/SGMDY
+barfly/SM
+bargain/MDRZGS
+bargainer/M
+barge/MGDS
+bargeman/M
+bargemen
+barhop/S
+barhopped
+barhopping
+barista/MS
+baritone/MS
+barium/M
+bark's
+bark/CSGD
+barkeep/ZMRS
+barkeeper/M
+barker/SM
+barley/M
+barmaid/MS
+barman/M
+barmen
+barmy/RT
+barn/SM
+barnacle/MDS
+barney/S
+barnstorm/SDRZG
+barnstormer/M
+barnyard/SM
+barometer/MS
+barometric
+barometrically
+baron/MS
+baronage/MS
+baroness/MS
+baronet/MS
+baronetcy/SM
+baronial
+barony/SM
+baroque/M
+barque/SM
+barrack/MDGS
+barracuda/SM
+barrage/MGDS
+barre/MGJDS
+barred/UEC
+barrel/SM
+barrelled
+barrelling
+barren/TPSMR
+barrenness/M
+barrette/SM
+barricade/MGDS
+barrier/MS
+barring/ECU
+barrio/SM
+barrister/MS
+barroom/MS
+barrow/SM
+bartender/SM
+barter/ZGSMDR
+barterer/M
+baryon/SM
+basal/Y
+basalt/M
+basaltic
+base's
+base/CDSLTG
+baseball/SM
+baseboard/MS
+baseless
+baseline/MS
+basely
+baseman/M
+basemen
+basement/CMS
+baseness/M
+baser
+bash/GMDS
+bashful/PY
+bashfulness/M
+bashing/M
+basic/MS
+basically
+basil/M
+basilica/MS
+basilisk/MS
+basin/MS
+basinful/MS
+basis/M
+bask/SGD
+basket/SM
+basketball/MS
+basketry/M
+basketwork/M
+basque/S
+bass/MS
+basset/SM
+bassinet/MS
+bassist/MS
+basso/MS
+bassoon/MS
+bassoonist/SM
+basswood/MS
+bast/M
+bastard/MS
+bastardization/MS
+bastardize/GDS
+bastardy/M
+baste/ZGNXDRS
+baster/M
+bastion/M
+bat/SM
+batch/MDSG
+bate/KACGSD
+bath/ZGMDRS
+bathe/M
+bather/M
+bathetic
+bathhouse/MS
+bathing/M
+bathmat/MS
+bathos/M
+bathrobe/SM
+bathroom/SM
+baths
+bathtub/MS
+bathwater
+bathyscaphe/SM
+bathysphere/MS
+batik/MS
+batiste/M
+batman/M
+batmen
+baton/MS
+batsman/M
+batsmen
+battalion/SM
+batted
+batten/GSMD
+batter/JZGSMDR
+batterer/M
+battery/SM
+batting/M
+battle/LDRSMZG
+battleaxe/MS
+battledore/SM
+battledress
+battlefield/MS
+battlefront/MS
+battleground/MS
+battlement/SM
+battler/M
+battleship/SM
+batty/RT
+bauble/SM
+baud/SM
+bauxite/M
+bawd/SM
+bawdily
+bawdiness/M
+bawdy/PRT
+bawl/SGMD
+bay/SMDG
+bayberry/SM
+bayonet/SMDG
+bayou/MS
+bazaar/SM
+bazillion/S
+bazooka/SM
+bbl
+bdrm
+be
+beach/MDSG
+beachcomber/SM
+beachfront
+beachhead/MS
+beachwear/M
+beacon/SM
+bead/SGMD
+beading/M
+beadle/SM
+beady/RT
+beagle/SM
+beak/SZMDR
+beaker/M
+beam/SGMD
+bean/SGMD
+beanbag/MS
+beanfeast/S
+beanie/SM
+beanpole/MS
+beansprout/S
+beanstalk/MS
+bear/SZGBJMR
+bearable/U
+bearably/U
+beard/MDGS
+beardless
+bearer/M
+bearing/M
+bearish/PY
+bearishness/M
+bearlike
+bearskin/MS
+beast/MS
+beastliness/M
+beastly/TPRM
+beat/SZGBMNRJ
+beatable/U
+beaten/U
+beater/M
+beatific
+beatifically
+beatification/M
+beatify/GXNDS
+beating/M
+beatitude/SM
+beatnik/MS
+beau/SM
+beaut/MS
+beauteous/Y
+beautician/SM
+beautification/M
+beautifier/M
+beautiful/Y
+beautify/NDRSZG
+beauty/SM
+beaver/SGMD
+bebop/MS
+becalm/GSD
+became
+because
+beck/SM
+beckon/SGD
+becloud/GDS
+become/S
+becoming/UY
+becquerel/S
+bed/SM
+bedaub/GSD
+bedazzle/GDSL
+bedazzlement/M
+bedbug/SM
+bedchamber/S
+bedclothes/M
+bedded
+bedder
+bedding/M
+bedeck/GSD
+bedevil/LS
+bedevilled
+bedevilling
+bedevilment/M
+bedfellow/SM
+bedhead/S
+bedim/S
+bedimmed
+bedimming
+bedizen/GDS
+bedlam/SM
+bedpan/SM
+bedpost/SM
+bedraggle/GDS
+bedridden
+bedrock/SM
+bedroll/SM
+bedroom/SM
+bedside/SM
+bedsit/S
+bedsitter/S
+bedsore/SM
+bedspread/SM
+bedstead/SM
+bedtime/SM
+bee/RSMZGJ
+beebread/M
+beech/MS
+beechnut/MS
+beef/SGMD
+beefburger/SM
+beefcake/MS
+beefiness/M
+beefsteak/MS
+beefy/RPT
+beehive/MS
+beekeeper/MS
+beekeeping/M
+beeline/MS
+been
+beep/SZGMDR
+beeper/M
+beer/M
+beery/TR
+beeswax/M
+beet/SM
+beetle/MGDS
+beetroot/S
+beeves
+befall/SGN
+befell
+befit/S
+befitted
+befitting/Y
+befog/S
+befogged
+befogging
+before
+beforehand
+befoul/DGS
+befriend/SGD
+befuddle/GLDS
+befuddlement/M
+beg/S
+began
+begat
+beget/S
+begetter/S
+begetting
+beggar/MDYGS
+beggary/M
+begged
+begging
+begin/S
+beginner/SM
+beginning/MS
+begone
+begonia/SM
+begot
+begotten
+begrime/DSG
+begrudge/DSG
+begrudging/Y
+beguile/DRSZGL
+beguilement/M
+beguiler/M
+beguiling/Y
+beguine/SM
+begum/MS
+begun
+behalf/M
+behalves
+behave/GDS
+behaviour/SM
+behavioural/Y
+behaviourism/M
+behaviourist/SM
+behead/DGS
+beheld
+behemoth/M
+behemoths
+behest/MS
+behind/MS
+behindhand
+behold/NRZGS
+beholder/M
+behoove/DSG
+beige/M
+being/M
+bejewel/S
+bejewelled
+bejewelling
+belabour/GSD
+belated/Y
+belay/GDS
+belch/GMDS
+beleaguer/GSD
+belfry/SM
+belie/DS
+belief/EUM
+beliefs
+believable/U
+believably/U
+believe/EDRSZG
+believer/EUMS
+believing/U
+belittle/LDSG
+belittlement/M
+bell/SGMD
+belladonna/M
+bellboy/SM
+belle/MS
+belled/A
+belletrist/MS
+belletristic
+bellhop/SM
+bellicose
+bellicosity/M
+belligerence/M
+belligerency/M
+belligerent/MYS
+belling/A
+bellman/M
+bellmen
+bellow/MDGS
+bellwether/MS
+belly/GDSM
+bellyache/MGDS
+bellybutton/SM
+bellyful/MS
+belong/JDGS
+belonging/M
+beloved/SM
+below
+belt/SGMD
+beltway/SM
+beluga/MS
+belying
+bemire/GDS
+bemoan/DGS
+bemuse/LGDS
+bemused/Y
+bemusement/M
+bench/GMDS
+benchmark/MS
+bend/BSZGMR
+bender/M
+bendy/TR
+beneath
+benedictine
+benediction/SM
+benedictory
+benefaction/SM
+benefactor/MS
+benefactress/MS
+benefice/SM
+beneficence/M
+beneficent/Y
+beneficial/Y
+beneficiary/SM
+benefit/SMDG
+benevolence/SM
+benevolent/Y
+benighted/Y
+benign/Y
+benignant
+benignity/M
+bent/SM
+bentonite
+bentwood/M
+benumb/DSG
+benzene/M
+benzine/M
+benzyl
+bequeath/DG
+bequeaths
+bequest/MS
+berate/GDS
+bereave/DSLG
+bereavement/MS
+bereft
+beret/MS
+berg/SM
+beriberi/M
+berk/S
+berkelium/M
+berm/SM
+berry/GDSM
+berrylike
+berserk
+berth/GMD
+berths
+beryl/MS
+beryllium/M
+beseech/ZGRS
+beseecher/M
+beseeching/Y
+beseem/DSG
+beset/S
+besetting
+beside/S
+besiege/ZGDRS
+besieger/M
+besmear/DSG
+besmirch/GDS
+besom/MS
+besot/S
+besotted
+besotting
+besought
+bespangle/DSG
+bespatter/GSD
+bespeak/SG
+bespectacled
+bespoke
+bespoken
+best/SGMD
+bestial/Y
+bestiality/M
+bestiary/SM
+bestir/S
+bestirred
+bestirring
+bestow/DGS
+bestowal/SM
+bestrew/SDG
+bestrewn
+bestridden
+bestride/SG
+bestrode
+bestseller/MS
+bestselling
+bet/SM
+beta/SM
+betake/GS
+betaken
+betcha
+betel/M
+bethink/SG
+bethought
+betide/GDS
+betimes
+betoken/GDS
+betook
+betray/DRZGS
+betrayal/SM
+betrayer/M
+betroth/DG
+betrothal/SM
+betrothed/M
+betroths
+better/MDGLS
+betterment/M
+betting
+bettor/MS
+between
+betwixt
+bevel/MS
+bevelled
+bevelling/S
+beverage/SM
+bevvy/S
+bevy/SM
+bewail/DGS
+beware/GDS
+bewhiskered
+bewigged
+bewilder/LSGD
+bewildering/Y
+bewilderment/M
+bewitch/GLDS
+bewitching/Y
+bewitchment/M
+bey/SM
+beyond
+bezel/MS
+bf
+bhaji
+bi/SMRZ
+biannual/Y
+bias/GMDS
+biased/U
+biathlon/SM
+bib/SM
+bible/MS
+biblical
+bibliographer/MS
+bibliographic
+bibliographical/Y
+bibliography/SM
+bibliophile/SM
+bibulous
+bicameral
+bicameralism/M
+bicarb/MS
+bicarbonate/MS
+bicentenary/SM
+bicentennial/SM
+bicep/MS
+biceps/M
+bicker/MDRZGS
+bickerer/M
+biconcave
+biconvex
+bicuspid/MS
+bicycle/DRSMZG
+bicycler/M
+bicyclist/SM
+bid/SMG
+biddable
+bidden/U
+bidder/MS
+bidding/M
+biddy/SM
+bide/S
+bidet/MS
+bidirectional/Y
+biennial/MYS
+biennium/MS
+bier/M
+biff/SGD
+bifocal/S
+bifocals/M
+bifurcate/XDSGN
+bifurcation/M
+big/P
+bigamist/SM
+bigamous
+bigamy/M
+bigger
+biggest
+biggie/MS
+biggish
+bighead/SM
+bighearted/P
+bigheartedness/M
+bighorn/SM
+bight/MS
+bigmouth/M
+bigmouths
+bigness/M
+bigot/MDS
+bigotry/SM
+bigwig/MS
+bijou/M
+bijoux
+bike/DRSMZG
+biker/M
+bikini/MS
+bilabial/MS
+bilateral/Y
+bilberry/S
+bile/M
+bilge/MS
+bilingual/SMY
+bilingualism/M
+bilious/P
+biliousness/M
+bilirubin
+bilk/SZGDR
+bilker/M
+bill/SBJGMD
+billboard/MS
+billet/GMDS
+billfold/SM
+billhook/S
+billiard/S
+billiards/M
+billing/M
+billingsgate/M
+billion/MHS
+billionaire/SM
+billionth/M
+billionths
+billow/GMDS
+billowy
+billy/SM
+billycan/S
+bimbo/MS
+bimetallic/SM
+bimetallism/M
+bimodal
+bimonthly/SM
+bin/SM
+binary/SM
+binaural
+bind's
+bind/AUGS
+binder/MS
+bindery/SM
+binding/MS
+bindweed/M
+binge/MDS
+bingo/M
+binman
+binmen
+binnacle/SM
+binned
+binning
+binocular/MS
+binomial/SM
+bio/SM
+biochemical/SMY
+biochemist/MS
+biochemistry/M
+biodegradability/M
+biodegrade/DSGB
+biodiversity/M
+bioethics/M
+biofeedback/M
+biofilm/MS
+biog
+biographer/SM
+biographic
+biographical/Y
+biography/SM
+biol
+biologic
+biological/Y
+biologist/MS
+biology/M
+biomarker/MS
+biomass/M
+biomedical
+bionic/S
+bionically
+bionics/M
+biophysical
+biophysicist/MS
+biophysics/M
+biopic/MS
+biopsy/GDSM
+bioreactor/S
+biorhythm/MS
+biosensor/S
+biosphere/SM
+biosynthesis
+biotech
+biotechnological
+biotechnology/M
+biotin/M
+bipartisan
+bipartisanship/M
+bipartite
+biped/MS
+bipedal
+biplane/MS
+bipolar
+bipolarity/M
+biracial
+birch/GMDS
+bird/SZGMDR
+birdbath/M
+birdbaths
+birdbrain/SMD
+birdcage/S
+birder/M
+birdhouse/MS
+birdie/MDS
+birdieing
+birdlike
+birdlime/M
+birdseed/M
+birdsong
+birdwatcher/SM
+birdying
+biretta/SM
+birth/ZGMDR
+birthday/MS
+birther/M
+birthmark/MS
+birthplace/MS
+birthrate/MS
+birthright/MS
+births/A
+birthstone/SM
+biscuit/SM
+bisect/DGS
+bisection/MS
+bisector/SM
+bisexual/MYS
+bisexuality/M
+bishop/MS
+bishopric/SM
+bismuth/M
+bison/M
+bisque/M
+bistro/MS
+bit/CSMG
+bitch/GMDS
+bitchily
+bitchiness/M
+bitchy/PRT
+bitcoin/SM
+bite/RSMZ
+biter/M
+biting/Y
+bitmap/S
+bitten
+bitter/PMRYTS
+bittern/SM
+bitterness/M
+bitters/M
+bittersweet/MS
+bitty/TR
+bitumen/M
+bituminous
+bivalent
+bivalve/SM
+bivouac/MS
+bivouacked
+bivouacking
+biweekly/SM
+biyearly
+biz/M
+bizarre/Y
+bk
+bl/DG
+blab/SM
+blabbed
+blabber/DGS
+blabbermouth/M
+blabbermouths
+blabbing
+black/PXTGMDNRYS
+blackamoor/MS
+blackball/SGMD
+blackberry/GSM
+blackbird/SM
+blackboard/MS
+blackcurrant/S
+blacken/DG
+blackface
+blackguard/SM
+blackhead/MS
+blacking/M
+blackish
+blackjack/MDGS
+blackleg/S
+blacklist/MDSG
+blackmail/MDRSZG
+blackmailer/M
+blackness/M
+blackout/SM
+blacksmith/M
+blacksmiths
+blacksnake/SM
+blackthorn/SM
+blacktop/SM
+blacktopped
+blacktopping
+bladder/MS
+blade/MDS
+blag/S
+blagged
+blagging
+blah/M
+blahs/M
+blame/MGDRS
+blameable
+blameless/YP
+blamelessness/M
+blameworthiness/M
+blameworthy/P
+blammo
+blanch/GDS
+blancmange/MS
+bland/PTRY
+blandish/DSLG
+blandishment/SM
+blandness/M
+blank/TGPMDRYS
+blanket/GMDS
+blankness/M
+blare/MGDS
+blarney/SMDG
+blase
+blaspheme/ZGDRS
+blasphemer/M
+blasphemous/Y
+blasphemy/SM
+blast/ZGMDRS
+blaster/M
+blastoff/MS
+blat/S
+blatancy/SM
+blatant/Y
+blather/SMDG
+blaze/MZGDRS
+blazer/M
+blazon/MDGS
+bldg
+bleach/MDRSZG
+bleached/U
+bleacher/M
+bleak/TPRY
+bleakness/M
+blear
+blearily
+bleariness/M
+bleary/PRT
+bleat/GMDS
+bleed/ZGRS
+bleeder/M
+bleeding/M
+bleep/ZGMDRS
+bleeper/M
+blemish/GMDS
+blemished/U
+blench/DSG
+blend/ZGMDRS
+blender/M
+bless/GDSJ
+blessed/YP
+blessedness/M
+blessing/M
+bletch
+blew
+blight/ZGMDRS
+blimey
+blimp/MS
+blimpish
+blind/PZTGMDRYS
+blinder/M
+blindfold/SMDG
+blinding/Y
+blindness/M
+blindside/DSG
+blini/MS
+blink/ZGMDRS
+blinker/MDG
+blintz/MS
+blintze/M
+blip/SM
+bliss/M
+blissful/YP
+blissfulness/M
+blister/GMDS
+blistering/Y
+blistery
+blithe/PYTR
+blitheness/M
+blither/G
+blithesome
+blitz/GMDS
+blitzkrieg/MS
+blivet/S
+blizzard/SM
+bloat/ZGDRS
+bloatware
+blob/SM
+blobbed
+blobbing
+bloc/SM
+block's
+block/UGDS
+blockade/MZGDRS
+blockader/M
+blockage/MS
+blockbuster/SM
+blockbusting/M
+blockchain/MS
+blocker/MS
+blockhead/SM
+blockhouse/MS
+blog/SM
+blogged
+blogger/MS
+blogging
+bloke/MS
+blokish
+blond/PTMRS
+blonde/MS
+blondish
+blondness/M
+blood/GMDS
+bloodbath/M
+bloodbaths
+bloodcurdling
+bloodhound/SM
+bloodily
+bloodiness/M
+bloodless/YP
+bloodlessness/M
+bloodletting/M
+bloodline/SM
+bloodmobile/MS
+bloodshed/M
+bloodshot
+bloodstain/SMD
+bloodstock/M
+bloodstream/SM
+bloodsucker/SM
+bloodsucking
+bloodthirstily
+bloodthirstiness/M
+bloodthirsty/RPT
+bloody/PTGDRS
+bloom/ZGMDRS
+bloomer/M
+bloop/ZGMDRS
+blooper/M
+blossom/GMDS
+blossomy
+blot/SM
+blotch/GMDS
+blotchy/TR
+blotted
+blotter/MS
+blotting
+blotto
+blouse/MGDS
+blow/SZGMR
+blower/M
+blowfly/SM
+blowgun/MS
+blowhard/MS
+blowhole/S
+blowjob/SM
+blowlamp/S
+blown
+blowout/SM
+blowpipe/SM
+blowsy/RT
+blowtorch/MS
+blowup/MS
+blowy/TR
+blubber/GSMD
+blubbery
+bludgeon/MDGS
+blue/DRSPMTG
+bluebell/MS
+blueberry/SM
+bluebird/MS
+bluebonnet/SM
+bluebottle/SM
+bluefish/MS
+bluegill/MS
+bluegrass/M
+blueish
+bluejacket/SM
+bluejeans/M
+blueness/M
+bluenose/MS
+bluepoint/MS
+blueprint/MDGS
+bluestocking/SM
+bluesy/RT
+bluet/MS
+bluff/ZTGPMDRYS
+bluffer/M
+bluffness/M
+bluing/M
+bluish
+blunder/MDRZGS
+blunderbuss/MS
+blunderer/M
+blunt/PTGDRYS
+bluntness/M
+blur/SM
+blurb/MS
+blurred
+blurriness/M
+blurring
+blurry/TRP
+blurt/GDS
+blush/ZGMDRS
+blusher/M
+bluster/MDRSZG
+blusterer/M
+blusterous
+blustery
+blvd
+boa/SM
+boar/SM
+board/ZGMDRS
+boarder/M
+boarding/M
+boardinghouse/MS
+boardroom/MS
+boardwalk/MS
+boast/ZGMDRS
+boaster/M
+boastful/PY
+boastfulness/M
+boat/SZGMDR
+boater/M
+boathouse/MS
+boating/M
+boatload/S
+boatman/M
+boatmen
+boatswain/SM
+boatyard/S
+bob/SM
+bobbed
+bobbin/MS
+bobbing
+bobble/MGDS
+bobby/SM
+bobbysoxer/SM
+bobcat/MS
+bobolink/SM
+bobsled/SM
+bobsledded
+bobsledder/MS
+bobsledding
+bobsleigh/M
+bobsleighs
+bobtail/SM
+bobwhite/MS
+boccie/M
+bock/M
+bod/SMDG
+bodacious
+bode/S
+bodega/MS
+bodge/GDS
+bodice/MS
+bodily
+bodkin/MS
+body/DSM
+bodybuilder/SM
+bodybuilding/M
+bodyguard/MS
+bodysuit/SM
+bodywork/M
+boffin/S
+boffo
+bog/SM
+boga
+bogey/GMDS
+bogeyman/M
+bogeymen
+bogged
+bogging
+boggle/GDS
+boggy/TR
+bogie/MS
+bogon
+bogosity
+bogus
+bogyman/M
+bogymen
+bohemian/SM
+bohemianism/M
+boil/SJZGMDR
+boiler/M
+boilermaker/SM
+boilerplate/M
+boink/GDS
+boisterous/YP
+boisterousness/M
+bola/SM
+bold/PTRY
+boldface/DM
+boldness/M
+bole/SM
+bolero/MS
+bolivar/MS
+bolivares
+boll/SM
+bollard/S
+bollix/GMDS
+bollocking/S
+bollocks
+bologna/M
+bolshie
+bolster/GMDS
+bolt's
+bolt/USGD
+bolthole/S
+bolus/MS
+bomb/SJZGMDR
+bombard/GDLS
+bombardier/MS
+bombardment/SM
+bombast/M
+bombastic
+bombastically
+bomber/M
+bombproof
+bombshell/SM
+bombsite/S
+bonanza/MS
+bonbon/MS
+bonce/S
+bond/SGMD
+bondage/M
+bondholder/MS
+bonding/M
+bondman/M
+bondmen
+bondsman/M
+bondsmen
+bondwoman/M
+bondwomen
+bone/DRSMZG
+bonehead/SMD
+boneless
+boner/M
+boneshaker/S
+boneyard
+bonfire/MS
+bong/SGMD
+bongo/MS
+bonhomie/M
+boniness/M
+bonito/MS
+bonk/SZGD
+bonnet/MS
+bonny/TR
+bonobo/MS
+bonsai/M
+bonus/MS
+bony/PTR
+boo/SMDHG
+boob/SGMD
+booby/SM
+boodle/MS
+booger/S
+boogeyman/M
+boogeymen
+boogie/MDS
+boogieing
+boogieman/M
+boohoo/GMDS
+book/SBJGMD
+bookbinder/SM
+bookbindery/SM
+bookbinding/M
+bookcase/MS
+bookend/MS
+bookie/MS
+booking/M
+bookish
+bookkeeper/MS
+bookkeeping/M
+booklet/MS
+bookmaker/SM
+bookmaking/M
+bookmark/SMDG
+bookmobile/SM
+bookplate/MS
+bookseller/MS
+bookshelf/M
+bookshelves
+bookshop/SM
+bookstall/S
+bookstore/MS
+bookworm/SM
+boolean
+boom/SZGMDR
+boombox/MS
+boomerang/MDGS
+boon/SM
+boondocks/M
+boondoggle/MZGDRS
+boondoggler/M
+boonies/M
+boor/SM
+boorish/PY
+boorishness/MS
+boost/ZGMDRS
+booster/M
+boot's
+boot/ASGD
+bootblack/SM
+bootee/MS
+booth/M
+booths
+bootlace/S
+bootleg/MS
+bootlegged
+bootlegger/MS
+bootlegging/M
+bootless
+bootstrap/MS
+bootstrapped
+bootstrapping
+booty/SM
+booze/MZGDRS
+boozer/M
+boozy/TR
+bop/SM
+bopped
+bopping
+borax/M
+bordello/MS
+border/GMDS
+borderland/MS
+borderline/MS
+bore/DRSMZG
+boredom/M
+borehole/S
+borer/M
+boring/Y
+born/IAU
+borne
+boron/M
+borough/M
+boroughs
+borrow/SDRZGJ
+borrower/M
+borrowing/M
+borscht/M
+borstal/S
+borzoi/SM
+bosh/M
+bosom's
+bosom/US
+bosomy
+boss/DSGM
+bossily
+bossiness/M
+bossism/M
+bossy/RTP
+bot/S
+botanic
+botanical/Y
+botanist/SM
+botany/M
+botch/DRSZGM
+botcher/M
+both
+bother/SMDG
+botheration
+bothered/U
+bothersome
+botnet/SM
+bottle/DRSMZG
+bottleneck/MS
+bottler/M
+bottom/SMDG
+bottomless
+botulinum
+botulism/M
+boudoir/SM
+bouffant/SM
+bougainvillea/MS
+bough/M
+boughs
+bought
+bouillabaisse/SM
+bouillon/MS
+boulder/SM
+boules
+boulevard/SM
+bounce/DRSMZG
+bouncer/M
+bouncily
+bounciness/M
+bouncy/RTP
+bound/ASMGD
+boundary/SM
+bounden
+bounder/SM
+boundless/PY
+boundlessness/M
+bounteous/YP
+bounteousness/M
+bountiful/YP
+bountifulness/M
+bounty/SM
+bouquet/SM
+bourbon/SM
+bourgeois/M
+bourgeoisie/M
+boustrophedon
+bout/MS
+boutique/SM
+boutonniere/MS
+bouzouki/MS
+bovine/SM
+bovver
+bow/ZGSMDR
+bowdlerization/MS
+bowdlerize/DSG
+bowed/U
+bowel/SM
+bower/M
+bowl/MDRZGS
+bowleg/SM
+bowlegged
+bowler/M
+bowlful/SM
+bowline/SM
+bowling/M
+bowman/M
+bowmen
+bowsprit/SM
+bowstring/SM
+bowwow/SM
+box/ZGMDNRS
+boxcar/SM
+boxer/M
+boxing/M
+boxlike
+boxroom/S
+boxwood/M
+boxy/RT
+boy/SM
+boycott/SGMD
+boyfriend/MS
+boyhood/SM
+boyish/YP
+boyishness/M
+boysenberry/SM
+bozo/MS
+bpm
+bps
+bra/SM
+brace/MZGDRS
+bracelet/MS
+bracer/M
+bracero/MS
+bracken/M
+bracket/GMDS
+brackish/P
+brackishness/M
+bract/MS
+brad/SM
+bradawl/S
+bradycardia
+brae/SM
+brag/SM
+braggadocio/SM
+braggart/SM
+bragged
+bragger/MS
+bragging
+braid/GMDS
+braiding/M
+braille/M
+brain/GMDS
+brainchild/M
+brainchildren/M
+braininess/M
+brainless/Y
+brainpower
+brainstorm/SMDG
+brainstorming/M
+brainteaser/SM
+brainwash/DSG
+brainwashing/M
+brainwave/S
+brainy/PTR
+braise/GDS
+brake/MGDS
+brakeman/M
+brakemen
+bramble/MS
+brambly
+bran/M
+branch/GMDS
+branchlike
+brand/ZGMDRS
+branded/U
+brander/M
+brandish/DSG
+brandy/GDSM
+brash/PTRY
+brashness/M
+brass/MS
+brasserie/MS
+brassiere/MS
+brassily
+brassiness/M
+brassy/PTR
+brat/SM
+bratty/RT
+bratwurst/SM
+bravado/M
+brave/GPMYDTRS
+braveness/M
+bravery/M
+bravo/SM
+bravura/SM
+brawl/SDRZGM
+brawler/M
+brawn/M
+brawniness/M
+brawny/RTP
+bray/DGSM
+braze/DRSZG
+brazen/SDYGP
+brazenness/M
+brazer/M
+brazier/SM
+breach/GMDS
+bread/GMDHS
+breadbasket/SM
+breadboard/SM
+breadbox/MS
+breadcrumb/MS
+breadfruit/SM
+breadline/MS
+breadth/M
+breadths
+breadwinner/SM
+break/BMZGRS
+breakable/MS
+breakage/MS
+breakaway/MS
+breakdown/MS
+breaker/M
+breakfast/MDGS
+breakfront/MS
+breakneck
+breakout/MS
+breakpoints
+breakthrough/M
+breakthroughs
+breakup/SM
+breakwater/SM
+bream/MS
+breast/SMDG
+breastbone/MS
+breastfed
+breastfeed/GS
+breastplate/SM
+breaststroke/SM
+breastwork/MS
+breath/MDRSZGB
+breathalyser/S
+breathalyze/GDS
+breathe
+breather/M
+breathing/M
+breathless/PY
+breathlessness/M
+breaths
+breathtaking/Y
+breathy/RT
+bred/I
+breech/MS
+breed/SRZGM
+breeder/M
+breeding/IM
+breeze/DSMG
+breezeway/SM
+breezily
+breeziness/M
+breezy/RTP
+brethren
+breve/SM
+brevet/SM
+brevetted
+brevetting
+breviary/SM
+brevity/M
+brew/MDRZGS
+brewer/M
+brewery/SM
+brewpub/SM
+bribe/DRSMZG
+briber/M
+bribery/M
+brick/SMDG
+brickbat/SM
+brickie/S
+bricklayer/MS
+bricklaying/M
+brickwork/M
+brickyard/S
+bridal/SM
+bride/SM
+bridegroom/SM
+bridesmaid/MS
+bridge/DSMG
+bridgeable/U
+bridgehead/SM
+bridgework/M
+bridle/DSMG
+bridled/U
+bridleway/S
+brie/MZR
+brief's
+brief/CSDTGJ
+briefcase/SM
+briefer
+briefing/CM
+briefly
+briefness/M
+brier/M
+brig/MS
+brigade/SM
+brigadier/MS
+brigand/SM
+brigandage/M
+brigantine/MS
+bright/SPNRYXT
+brighten/DRZG
+brightener/M
+brightness/M
+brights/M
+brill
+brilliance/M
+brilliancy/M
+brilliant/MYS
+brilliantine/M
+brim/MS
+brimful
+brimless
+brimmed
+brimming
+brimstone/M
+brindle/DM
+brine/M
+bring/SRZG
+bringer/M
+brininess/M
+brink/SM
+brinkmanship/M
+briny/RTP
+brioche/SM
+briquette/MS
+brisk/SDRYTGP
+brisket/SM
+briskness/M
+bristle/DSMG
+bristly/TR
+britches/M
+brittle/PRMT
+brittleness/M
+bro/SMH
+broach/MDSG
+broad/SMNRYXTP
+broadband/M
+broadcast/AMGS
+broadcaster/MS
+broadcasting/M
+broadcloth/M
+broaden/DG
+broadloom/M
+broadminded
+broadness/M
+broadsheet/SM
+broadside/MGDS
+broadsword/SM
+brocade/DSMG
+broccoli/M
+brochette/SM
+brochure/MS
+brogan/SM
+brogue/SM
+broil/SMDRZG
+broiler/M
+broke
+broken/YP
+brokenhearted/Y
+brokenness/M
+broker/SMDG
+brokerage/MS
+brolly/S
+bromide/SM
+bromidic
+bromine/M
+bronc/SM
+bronchi
+bronchial
+bronchitic
+bronchitis/M
+bronchus/M
+bronco/SM
+broncobuster/SM
+brontosaur/MS
+brontosaurus/MS
+bronze/DSMG
+brooch/MS
+brood/SMDRZG
+brooder/M
+broodily
+brooding/MY
+broodmare/MS
+broody/RMPT
+brook/SMDG
+brooklet/SM
+broom/SM
+broomstick/MS
+broth/MRZ
+brothel/MS
+brother/MY
+brotherhood/MS
+brotherliness/M
+broths
+brougham/SM
+brought
+brouhaha/SM
+brow/MS
+browbeat/SNG
+brown/SMDRPTG
+brownfield
+brownie/MS
+brownish
+brownness/M
+brownout/SM
+brownstone/MS
+browse/DRSMZG
+browser/M
+brr
+bruin/SM
+bruise/DRSMZG
+bruiser/M
+bruising/M
+bruit/SDG
+brunch/MDSG
+brunet/SM
+brunette/MS
+brunt/M
+brush/MDSG
+brushoff/SM
+brushstroke/S
+brushwood/M
+brushwork/M
+brusque/RPYT
+brusqueness/M
+brutal/Y
+brutality/SM
+brutalization/M
+brutalize/GDS
+brute/SM
+brutish/PY
+brutishness/M
+bu
+bub/SM
+bubble/DSMG
+bubblegum/M
+bubbly/RMT
+bubo/M
+buboes
+buccaneer/SGMD
+buck/MDGS
+buckaroo/SM
+buckboard/MS
+bucket/SGMD
+bucketful/MS
+buckeye/MS
+buckle's
+buckle/UDSG
+buckler/MS
+buckram/M
+bucksaw/MS
+buckshot/M
+buckskin/MS
+buckteeth
+bucktooth/MD
+buckwheat/M
+buckyball/SM
+bucolic/MS
+bucolically
+bud/SM
+budded
+budding/S
+buddy/SM
+budge/DSG
+budgerigar/MS
+budget/SGMD
+budgetary
+budgie/SM
+buff/AMDGS
+buffalo/MDG
+buffaloes
+buffer/SMDG
+buffet/SMDGJ
+buffoon/SM
+buffoonery/M
+buffoonish
+bug's
+bug/CS
+bugaboo/SM
+bugbear/SM
+bugged/C
+bugger/SMDG
+buggery
+bugging/C
+buggy/RSMT
+bugle/DRSMZG
+bugler/M
+build/SMRZGJ
+builder/M
+building/M
+buildup/SM
+built/AI
+builtin
+bulb/MS
+bulbous
+bulge/DSMG
+bulgy/RT
+bulimarexia/M
+bulimia/M
+bulimic/SM
+bulk/MDGS
+bulkhead/MS
+bulkiness/M
+bulky/RTP
+bull/MDGS
+bulldog/SM
+bulldogged
+bulldogging
+bulldoze/ZGDRS
+bulldozer/M
+bullet/SMD
+bulletin/MDGS
+bulletproof/SDG
+bullfight/SMRZG
+bullfighter/M
+bullfighting/M
+bullfinch/MS
+bullfrog/MS
+bullhead/MDS
+bullheaded/PY
+bullheadedness/M
+bullhorn/MS
+bullion/M
+bullish/YP
+bullishness/M
+bullock/SM
+bullpen/SM
+bullring/MS
+bullseye
+bullshit/MS!
+bullshitted/!
+bullshitter/SM!
+bullshitting/!
+bullwhip/S
+bully/DSMG
+bulrush/MS
+bulwark/MS
+bum/SM
+bumbag/S
+bumble/DRSZG
+bumblebee/SM
+bumbler/M
+bumf
+bummed
+bummer/SM
+bummest
+bumming
+bump/MDRZGS
+bumper/M
+bumph
+bumpiness/M
+bumpkin/MS
+bumptious/PY
+bumptiousness/M
+bumpy/PRT
+bun/SM
+bunch/MDSG
+bunchy/RT
+bunco/SMDG
+bundle/DSMG
+bung/MDGS
+bungalow/MS
+bungee/SM
+bunghole/MS
+bungle/DRSMZG
+bungler/M
+bunion/SM
+bunk's
+bunk/CDGS
+bunker/SM
+bunkhouse/SM
+bunkum/M
+bunny/SM
+bunt/MDGSJ
+bunting/M
+buoy/MDGS
+buoyancy/M
+buoyant/Y
+bur/SMY
+burble/DSMG
+burbs/M
+burden's
+burden/USGD
+burdensome
+burdock/M
+bureau/SM
+bureaucracy/SM
+bureaucrat/MS
+bureaucratic
+bureaucratically
+bureaucratization/M
+bureaucratize/GDS
+burg/MRZS
+burgeon/DSG
+burger/M
+burgh/MRZ
+burgher/M
+burghs
+burglar/MS
+burglarize/GDS
+burglarproof
+burglary/SM
+burgle/DSG
+burgomaster/SM
+burgundy/SM
+burial/ASM
+burka/SM
+burl/MDS
+burlap/M
+burlesque/MGDS
+burliness/M
+burly/RPT
+burn/MDRZGSB
+burnable/SM
+burner/M
+burnish/ZGMDRS
+burnisher/M
+burnoose/MS
+burnout/MS
+burnt
+burp/MDGS
+burqa/SM
+burr/MDGS
+burrito/MS
+burro/SM
+burrow/SMDRZG
+burrower/M
+bursa/M
+bursae
+bursar/SM
+bursary/SM
+bursitis/M
+burst/SMG
+bury/ADSG
+bus/AMS
+busboy/SM
+busby/SM
+bused
+busgirl/MS
+bush/MDSGJ
+bushel/SM
+bushelled
+bushelling/S
+bushiness/M
+bushing/M
+bushman/M
+bushmaster/SM
+bushmen
+bushwhack/DRSZG
+bushwhacker/M
+bushy/RPT
+busily
+business/MS
+businesslike
+businessman/M
+businessmen
+businessperson/SM
+businesswoman/M
+businesswomen
+busing/M
+busk/DRZGS
+buskin/SM
+busload/S
+buss/MDSG
+bust/MDRZGS
+buster/M
+bustle/DSMG
+busty/RZT
+busy/DRSTGP
+busybody/SM
+busyness/M
+busywork/M
+but/ACS
+butane/M
+butch/MRSZ
+butcher/MDG
+butchery/SM
+butler/SM
+butt/MDRZGS
+butte/SM
+butted/A
+butter/MDG
+butterball/MS
+buttercream
+buttercup/SM
+butterfat/M
+butterfingered
+butterfingers/M
+butterfly/GDSM
+buttermilk/M
+butternut/SM
+butterscotch/M
+buttery/TRSM
+butting/A
+buttock/SM
+button's
+button/USDG
+buttonhole/DSMG
+buttonwood/MS
+buttress/MDSG
+butty/S
+buxom
+buy/ZGSMR
+buyback/SM
+buyer/M
+buyout/SM
+buzz/MDRSZG
+buzzard/MS
+buzzer/M
+buzzkill/SM
+buzzword/SM
+bx
+bxs
+by/M
+bye/SM
+bygone/SM
+bylaw/SM
+byline/SM
+bypass/GMDS
+bypath/M
+bypaths
+byplay/M
+byproduct/MS
+byre/S
+byroad/SM
+bystander/MS
+byte/MS
+byway/SM
+byword/SM
+byzantine
+c/IES
+ca
+cab/SMRZ
+cabal/MS
+cabala's
+caballero/MS
+cabana/SM
+cabaret/SM
+cabbage/MS
+cabbed
+cabbing
+cabby/SM
+cabdriver/SM
+cabin/MS
+cabinet/SM
+cabinetmaker/MS
+cabinetmaking/M
+cabinetry/M
+cabinetwork/M
+cable/MGDS
+cablecast/GMS
+cablegram/MS
+cabochon/SM
+caboodle/M
+caboose/SM
+cabriolet/SM
+cabstand/SM
+cacao/MS
+cache/MGDS
+cachepot/SM
+cachet/MS
+cackle/MZGDRS
+cackler/M
+cacophonous
+cacophony/SM
+cacti
+cactus/M
+cad/SM
+cadaver/SM
+cadaverous
+caddie/MDS
+caddish/YP
+caddishness/M
+caddying
+cadence/DSM
+cadenza/SM
+cadet/MS
+cadge/ZGDRS
+cadger/M
+cadmium/M
+cadre/MS
+caducei
+caduceus/M
+caesura/SM
+cafe/SM
+cafeteria/MS
+cafetiere/S
+caff/CS
+caffeinated
+caffeine/M
+caftan/MS
+cage/DSMG
+cagey
+cagier
+cagiest
+cagily
+caginess/M
+cagoule/S
+cahoot/MS
+caiman/MS
+cairn/MS
+caisson/SM
+caitiff/SM
+cajole/ZGLDRS
+cajolement/M
+cajoler/M
+cajolery/M
+cake/DSMG
+cakewalk/SM
+cal
+calabash/MS
+calaboose/SM
+calamari/SM
+calamine/M
+calamitous/Y
+calamity/SM
+calcareous
+calciferous
+calcification/M
+calcify/GNDS
+calcimine/DSMG
+calcine/DSG
+calcite/M
+calcium/M
+calculable/I
+calculate/AGNVDSX
+calculated/Y
+calculating/Y
+calculation/AM
+calculator/SM
+calculi
+calculus/M
+caldera/SM
+calendar/MDGS
+calf/M
+calfskin/M
+calibrate/GNDSX
+calibration/M
+calibrator/SM
+calibre/SM
+calico/M
+calicoes
+californium/M
+caliper/SGMD
+caliph/M
+caliphate/MS
+caliphs
+calisthenic/S
+calisthenics/M
+call/ASGMD
+calla/MS
+callable
+callback/MS
+called/U
+caller/MS
+calligrapher/SM
+calligraphic
+calligraphist/MS
+calligraphy/M
+calling/SM
+calliope/MS
+callosity/SM
+callous/PGDSY
+callousness/M
+callow/RPT
+callowness/M
+callus/MDSG
+calm/PSTGMDRY
+calmness/M
+caloric
+calorie/MS
+calorific
+calumet/MS
+calumniate/GNDS
+calumniation/M
+calumniator/MS
+calumnious
+calumny/SM
+calve/GDS
+calypso/MS
+calyx/MS
+cam/SM
+camaraderie/M
+camber/MDSG
+cambial
+cambium/SM
+cambric/M
+camcorder/SM
+came
+camel/MS
+camelhair
+camellia/MS
+cameo/MS
+camera/MS
+cameraman/M
+cameramen
+camerapeople
+cameraperson
+camerawoman/M
+camerawomen
+camerawork
+camiknickers
+camisole/SM
+camouflage/MZGDRS
+camouflager/M
+camp's
+camp/CSGD
+campaign/SMDRZG
+campaigner/M
+campanile/SM
+campanologist/MS
+campanology/M
+camper/MS
+campfire/SM
+campground/SM
+camphor/M
+camping/M
+campsite/SM
+campus/MS
+campy/TR
+camshaft/SM
+can't
+can/SMDRZG
+canal/MS
+canalization/M
+canalize/GDS
+canape/MS
+canard/MS
+canary/SM
+canasta/M
+cancan/MS
+cancel/S
+cancellation/SM
+cancelled
+canceller/SM
+cancelling
+cancellous
+cancer/MS
+cancerous
+candelabra/SM
+candelabrum/M
+candid/YP
+candida
+candidacy/SM
+candidate/MS
+candidature/SM
+candidness/M
+candle/MZGDRS
+candlelight/M
+candlelit
+candlepower/M
+candler/M
+candlestick/MS
+candlewick/SM
+candour/M
+candy/GDSM
+candyfloss
+cane/SM
+canebrake/MS
+caner/M
+canine/MS
+canister/SM
+canker/GMDS
+cankerous
+cannabis/MS
+canned
+cannelloni/M
+cannery/SM
+cannibal/SM
+cannibalism/M
+cannibalistic
+cannibalization/M
+cannibalize/GDS
+cannily/U
+canniness/M
+canning
+cannon/GMDS
+cannonade/MGDS
+cannonball/SM
+cannot
+canny/UTR
+canoe/MDS
+canoeing
+canoeist/SM
+canola/M
+canon/MS
+canonical/Y
+canonization/SM
+canonize/DSG
+canoodle/DSG
+canopy/GDSM
+canst
+cant's
+cant/CZRDGS
+cantabile
+cantaloupe/SM
+cantankerous/PY
+cantankerousness/M
+cantata/MS
+canteen/MS
+canter/CM
+cantered
+cantering
+canticle/MS
+cantilever/MDGS
+canto/MS
+canton/MLS
+cantonal
+cantonment/MS
+cantor/MS
+canvas/MGDS
+canvasback/SM
+canvass/MDRSZG
+canvasser/M
+canyon/MGS
+cap/SMDRBZ
+capabilities
+capability/IM
+capable/I
+capably/I
+capacious/PY
+capaciousness/M
+capacitance/M
+capacities
+capacitor/SM
+capacity/IM
+caparison/MDGS
+cape/SM
+caper/GMD
+capeskin/M
+capillarity/M
+capillary/SM
+capital/MSY
+capitalism/M
+capitalist/SM
+capitalistic
+capitalistically
+capitalization/M
+capitalize/ADSG
+capitation/CSM
+capitol/SM
+capitulate/ADSXGN
+capitulation/AM
+caplet/MS
+capo/SM
+capon/MS
+capped/UA
+capping/UA
+cappuccino/SM
+caprice/SM
+capricious/PY
+capriciousness/M
+capsicum/SM
+capsize/DSG
+capstan/SM
+capstone/MS
+capsular
+capsule/DSMG
+capsulize/DSG
+capt
+captain/SMDG
+captaincy/SM
+caption/SMDG
+captious/YP
+captiousness/M
+captivate/DSGN
+captivation/M
+captivator/SM
+captive/SM
+captivity/SM
+captor/MS
+capture/ADSMG
+car/SMDRZG
+carafe/MS
+caramel/SM
+caramelize/DSG
+carapace/SM
+carat/MS
+caravan/SM
+caravansary/SM
+caravel/SM
+caraway/SM
+carbide/SM
+carbine/SM
+carbohydrate/SM
+carbolic
+carbon/MS
+carbonaceous
+carbonate/MGNDS
+carbonation/M
+carboniferous
+carbonize/GDS
+carborundum/M
+carboy/MS
+carbs
+carbuncle/SM
+carbuncular
+carburettor/MS
+carcass/MS
+carcinogen/SM
+carcinogenic/MS
+carcinogenicity/M
+carcinoma/MS
+card/ESGMD
+cardamom/SM
+cardamon/S
+cardboard/M
+carder/MS
+cardholder/S
+cardiac
+cardiae
+cardies
+cardigan/SM
+cardinal/SMY
+cardio
+cardiogram/SM
+cardiograph/M
+cardiographs
+cardiologist/MS
+cardiology/M
+cardiomyopathy
+cardiopulmonary
+cardiovascular
+cardsharp/MRZS
+cardsharper/M
+care/SM
+careen/DGS
+career/MDGS
+careerism
+careerist/SM
+carefree
+careful/YP
+carefuller
+carefullest
+carefulness/M
+caregiver/SM
+careless/PY
+carelessness/M
+carer/M
+caress/MDSG
+caret/MS
+caretaker/MS
+careworn
+carfare/M
+cargo/M
+cargoes
+carhop/MS
+caribou/SM
+caricature/MGDS
+caricaturist/SM
+caries/M
+carillon/SM
+caring/M
+carious
+carjack/JSDRZG
+carjacker/M
+carjacking/M
+carload/SM
+carmaker/S
+carmine/SM
+carnage/M
+carnal/Y
+carnality/M
+carnation/IMS
+carnelian/MS
+carnival/MS
+carnivora
+carnivore/SM
+carnivorous/PY
+carnivorousness/M
+carny/SM
+carob/MS
+carol/MS
+carolled
+caroller/MS
+carolling
+carom/GMDS
+carotene/M
+carotid/SM
+carousal/SM
+carouse/DRSMZG
+carousel/SM
+carouser/M
+carp/SZGMDR
+carpal/MS
+carpel/MS
+carpenter/MDGS
+carpentry/M
+carper/M
+carpet/MDGS
+carpetbag/MS
+carpetbagged
+carpetbagger/MS
+carpetbagging
+carpeting/M
+carpi
+carpool/SMDG
+carport/SM
+carpus/M
+carrel/MS
+carriage/SM
+carriageway/S
+carrier/M
+carrion/M
+carrot/MS
+carroty
+carry/ZGDRSM
+carryall/SM
+carrycot/S
+carryout
+carryover/MS
+carsick/P
+carsickness/M
+cart/SZGMDR
+cartage/M
+cartel/MS
+carter/M
+carthorse/SM
+cartilage/SM
+cartilaginous
+cartload/SM
+cartographer/SM
+cartographic
+cartography/M
+carton/MS
+cartoon/SMDG
+cartoonist/MS
+cartridge/MS
+cartwheel/GMDS
+carve/JZGDRS
+carver/M
+carvery/S
+carving/M
+caryatid/MS
+casaba/MS
+cascade/DSMG
+cascara/SM
+case/LDSJMG
+casebook/S
+cased/U
+caseharden/DGS
+casein/M
+caseload/MS
+casement/MS
+casework/ZMR
+caseworker/M
+cash/GMDS
+cashback/M
+cashbook/MS
+cashew/MS
+cashier/GSMD
+cashless
+cashmere/M
+casing/M
+casino/MS
+cask/SM
+casket/MS
+cassava/SM
+casserole/DSMG
+cassette/MS
+cassia/MS
+cassock/SM
+cassowary/SM
+cast/ASGM
+castanet/MS
+castaway/MS
+caste/JMZRS
+castellated
+caster/M
+castigate/DSGN
+castigation/M
+castigator/SM
+casting/AM
+castle/MGDS
+castoff/SM
+castor/MS
+castrate/GNXDS
+castration/M
+casual/PMYS
+casualness/M
+casualty/SM
+casuist/SM
+casuistic
+casuistry/M
+cat/SM
+cataclysm/MS
+cataclysmal
+cataclysmic
+catacomb/SM
+catafalque/MS
+catalepsy/M
+cataleptic/MS
+catalogue/DRSMZG
+catalogued/U
+cataloguer/M
+catalpa/SM
+catalyses
+catalysis/M
+catalyst/MS
+catalytic/M
+catalyze/GDS
+catamaran/SM
+catapult/GMDS
+cataract/MS
+catarrh/M
+catastrophe/MS
+catastrophic
+catastrophically
+catatonia/M
+catatonic/SM
+catbird/SM
+catboat/SM
+catcall/GSMD
+catch/ZGJLMRS
+catchall/MS
+catcher/M
+catchment/MS
+catchpenny
+catchphrase/SM
+catchword/MS
+catchy/RT
+catechism/SM
+catechist/SM
+catechize/DSG
+categorical/Y
+categorization/MS
+categorize/GDS
+category/SM
+cater/ZGJDRS
+catercorner
+caterer/M
+caterpillar/MS
+caterwaul/SMDG
+catfish/MS
+catgut/M
+catharses
+catharsis/M
+cathartic/SM
+cathedral/SM
+catheter/SM
+catheterize/DSG
+cathode/SM
+cathodic
+catholic
+catholicity/M
+cation/MS
+catkin/MS
+catlike
+catnap/MS
+catnapped
+catnapping
+catnip/M
+catsuit/S
+cattail/SM
+catted
+cattery/S
+cattily
+cattiness/M
+catting
+cattle/M
+cattleman/M
+cattlemen
+catty/TPR
+catwalk/SM
+caucus/MDSG
+caudal/Y
+caught/U
+cauldron/MS
+cauliflower/SM
+caulk/ZGMDRS
+caulker/M
+causal/Y
+causality/SM
+causation/M
+causative
+cause/MZGDRS
+causeless
+causer/M
+causerie/SM
+causeway/SM
+caustic/SM
+caustically
+causticity/M
+cauterization/M
+cauterize/GDS
+caution/SMDG
+cautionary
+cautious/IY
+cautiousness/M
+cavalcade/MS
+cavalier/SMY
+cavalry/SM
+cavalryman/M
+cavalrymen
+cave/DRSMZG
+caveat/MS
+caveman/M
+cavemen
+cavern/MS
+cavernous/Y
+caviar/M
+cavil/MS
+cavilled
+caviller/MS
+cavilling/S
+caving/M
+cavitation
+cavity/FSM
+cavort/DGS
+caw/SMDG
+cay/CSM
+cayenne/M
+cayuse/MS
+cc
+cease/CMGDS
+ceasefire/MS
+ceaseless/YP
+ceaselessness/M
+ceca
+cecal
+cecum/M
+cedar/MS
+cede/FAGSD
+ceder/MS
+cedilla/SM
+ceilidh
+ceilidhs
+ceiling/MS
+celandine/M
+celeb/S
+celebrant/SM
+celebrate/DSGNX
+celebration/M
+celebrator/SM
+celebratory
+celebrity/SM
+celeriac
+celerity/M
+celery/M
+celesta/MS
+celestial/Y
+celibacy/M
+celibate/MS
+cell/SMD
+cellar/MS
+cellist/SM
+cellmate/SM
+cello/MS
+cellophane/M
+cellphone/MS
+cellular/SM
+cellulite/M
+cellulitis
+celluloid/M
+cellulose/M
+cement/MDRZGS
+cementer/M
+cementum/M
+cemetery/SM
+cenobite/MS
+cenobitic
+cenotaph/M
+cenotaphs
+censer/MS
+censor/MDGS
+censored/U
+censorial
+censorious/PY
+censoriousness/M
+censorship/M
+censure/BDRSMZG
+censurer/M
+census/MDSG
+cent/SM
+centaur/SM
+centavo/SM
+centenarian/MS
+centenary/SM
+centennial/MYS
+centigrade
+centigram/SM
+centilitre/MS
+centime/SM
+centimetre/MS
+centipede/SM
+central/SMY
+centralism
+centralist
+centrality/M
+centralization/CM
+centralize/CGDS
+centralizer/MS
+centre/MGDS
+centreboard/SM
+centrefold/SM
+centrepiece/SM
+centrifugal/Y
+centrifuge/DSMG
+centripetal/Y
+centrism/M
+centrist/MS
+centurion/SM
+century/SM
+cephalic
+ceramic/SM
+ceramicist/SM
+ceramics/M
+ceramist/MS
+cereal/MS
+cerebellar
+cerebellum/SM
+cerebra
+cerebral
+cerebrate/GNDS
+cerebration/M
+cerebrovascular
+cerebrum/MS
+cerement/MS
+ceremonial/SMY
+ceremonious/UY
+ceremoniousness/M
+ceremony/SM
+cerise/M
+cerium/M
+cermet/M
+cert/S
+certain/UY
+certainty/USM
+certifiable
+certifiably
+certificate/MGNXDS
+certification/M
+certify/DSG
+certitude/IM
+certitudes
+cerulean/M
+cervical
+cervices
+cervix/M
+cesarean/MS
+cesium/M
+cessation/MS
+cession/KAFSM
+cesspit/S
+cesspool/MS
+cetacean/MS
+ceteris
+cf
+cg
+ch/IFVT
+chad/S
+chafe/GDS
+chaff/GMDS
+chaffinch/MS
+chagrin/GSMD
+chain's
+chain/UGDS
+chainsaw/MDGS
+chair/GMDS
+chairlift/MS
+chairman/M
+chairmanship/SM
+chairmen
+chairperson/SM
+chairwoman/M
+chairwomen
+chaise/MS
+chalcedony/M
+chalet/MS
+chalice/SM
+chalk/GMDS
+chalkboard/SM
+chalkiness/M
+chalky/PRT
+challenge/DRSMZG
+challenged/U
+challenger/M
+challis/M
+chamber/SMD
+chamberlain/MS
+chambermaid/MS
+chambray/M
+chameleon/SM
+chamois/M
+chamomile/MS
+champ/ZGMDS
+champagne/MS
+champion/GMDS
+championship/MS
+chance/MGDS
+chancel/SM
+chancellery/SM
+chancellor/MS
+chancellorship/M
+chancery/SM
+chanciness/M
+chancre/SM
+chancy/PRT
+chandelier/SM
+chandler/MS
+change/MZGDRS
+changeability/M
+changeable/P
+changeableness/M
+changeably
+changed/U
+changeless/Y
+changeling/SM
+changeover/SM
+changer/M
+changing/U
+channel/SM
+channelization/M
+channelize/DSG
+channelled
+channelling
+chanson/SM
+chant/ZGMDRS
+chanter/M
+chanteuse/MS
+chantey/SM
+chanticleer/MS
+chaos/M
+chaotic
+chaotically
+chap/SM
+chaparral/SM
+chapati/S
+chapatti/S
+chapbook/MS
+chapeau/SM
+chapel/MS
+chaperonage/M
+chaperone/DSMG
+chaperoned/U
+chaplain/MS
+chaplaincy/SM
+chaplet/SM
+chapped
+chapping
+chappy/S
+chapter/SM
+char/SM
+charabanc/MS
+character/MS
+characterful
+characteristic/SM
+characteristically/U
+characterization/MS
+characterize/DSG
+characterless
+charade/SM
+charbroil/GDS
+charcoal/MS
+chard/M
+chardonnay/SM
+charge/AESDGM
+chargeable/A
+charged/U
+charger/SM
+charily
+chariness/M
+chariot/SM
+charioteer/MS
+charisma/M
+charismatic/MS
+charitable/P
+charitableness/M
+charitably/U
+charity/SM
+charlady/S
+charlatan/SM
+charlatanism/M
+charlatanry/M
+charlie/S
+charm/ZGMDRS
+charmer/M
+charming/Y
+charmless
+charred
+charring
+chart/GMDS
+charted/U
+charter's
+charter/ASGD
+charterer/MS
+chartreuse/M
+charwoman/M
+charwomen
+chary/TRP
+chase/MZGDRS
+chaser/M
+chasm/MS
+chassis/M
+chaste/PYTR
+chasten/DGS
+chasteness/M
+chastise/DRSZGL
+chastisement/SM
+chastiser/M
+chastity/M
+chasuble/SM
+chat/SM
+chateau/SM
+chateaux
+chatelaine/SM
+chatline/S
+chatroom/M
+chatted
+chattel/MS
+chatter/MDRZGS
+chatterbox/MS
+chatterer/M
+chattily
+chattiness/M
+chatting
+chatty/TPR
+chauffeur/GMDS
+chauvinism/M
+chauvinist/SM
+chauvinistic
+chauvinistically
+cheap/PXTNRY
+cheapen/DG
+cheapness/M
+cheapo
+cheapskate/MS
+cheat/ZGMDRS
+cheater/M
+check/AGMDS
+checkbox
+checked/U
+checker/MDGS
+checkers/M
+checklist/MS
+checkmate/MGDS
+checkoff/SM
+checkout/SM
+checkpoint/SM
+checkroom/MS
+checksum
+checkup/MS
+cheddar/M
+cheek/GMDS
+cheekbone/SM
+cheekily
+cheekiness/M
+cheeky/TPR
+cheep/GMDS
+cheer/ZGMDRS
+cheerer/M
+cheerful/YP
+cheerfuller
+cheerfullest
+cheerfulness/M
+cheerily
+cheeriness/M
+cheerio/MS
+cheerleader/SM
+cheerless/PY
+cheerlessness/M
+cheery/TPR
+cheese/MGDS
+cheeseboard/S
+cheeseburger/SM
+cheesecake/SM
+cheesecloth/M
+cheeseparing/M
+cheesiness/M
+cheesy/TPR
+cheetah/M
+cheetahs
+chef/SM
+chem
+chemical/SMY
+chemise/MS
+chemist/MS
+chemistry/M
+chemo/M
+chemotherapeutic
+chemotherapy/M
+chemurgy/M
+chenille/M
+cheque/MGDS
+chequebook/MS
+chequerboard/MS
+cherish/DSG
+cheroot/MS
+cherry/SM
+chert/M
+cherub/MS
+cherubic
+cherubim
+chervil/M
+chess/M
+chessboard/MS
+chessman/M
+chessmen
+chest/MDS
+chesterfield/SM
+chestful/SM
+chestnut/SM
+chesty/TR
+chevalier/SM
+cheviot/M
+chevron/MS
+chew/SZGMDR
+chewer/M
+chewiness/M
+chewy/PTR
+chg
+chge
+chi/SM
+chiaroscuro/M
+chic/PTMR
+chicane/MS
+chicanery/SM
+chichi/MS
+chick/XMNS
+chickadee/SM
+chicken/MDG
+chickenfeed/M
+chickenhearted
+chickenpox/M
+chickenshit/S!
+chickpea/SM
+chickweed/M
+chicle/M
+chicness/M
+chicory/SM
+chide/GDS
+chiding/Y
+chief/TMRYS
+chiefdom/M
+chieftain/MS
+chieftainship/SM
+chiffon/M
+chiffonier/MS
+chigger/MS
+chignon/MS
+chihuahua/SM
+chilblain/SM
+child/M
+childbearing/M
+childbirth/M
+childbirths
+childcare/M
+childhood/SM
+childish/YP
+childishness/M
+childless/P
+childlessness/M
+childlike
+childminder/S
+childminding
+childproof/GSD
+children/M
+chili/M
+chilies
+chill/JPZTGMDRS
+chiller/M
+chilliness/M
+chilling/Y
+chillness/M
+chilly/TPR
+chime/MZGDRS
+chimer/M
+chimera/MS
+chimeric
+chimerical
+chimney/MS
+chimp/MS
+chimpanzee/SM
+chin/SM
+china/M
+chinaware/M
+chinchilla/MS
+chine/MS
+chink/GMDS
+chinless
+chinned
+chinning
+chino/MS
+chinstrap/MS
+chintz/M
+chintzy/RT
+chinwag/S
+chip/SM
+chipboard
+chipmunk/SM
+chipolata/S
+chipped
+chipper/MS
+chippie
+chipping/S
+chippy/S
+chirography/M
+chiropodist/MS
+chiropody/M
+chiropractic/SM
+chiropractor/SM
+chirp/GMDS
+chirpily
+chirpy/PTR
+chirrup/GMDS
+chisel/MS
+chiselled
+chiseller/MS
+chiselling
+chit/SM
+chitchat/SM
+chitchatted
+chitchatting
+chitin/M
+chitinous
+chitosan
+chitterlings/M
+chivalrous/PY
+chivalrousness/M
+chivalry/M
+chive/MS
+chivy/GDS
+chlamydia/MS
+chlamydiae
+chloral/M
+chlordane/M
+chloride/MS
+chlorinate/GNDS
+chlorination/M
+chlorine/M
+chlorofluorocarbon/SM
+chloroform/SGMD
+chlorophyll/M
+chloroplast/MS
+chm
+choc/S
+chock/GMDS
+chockablock
+chocoholic/SM
+chocolate/MS
+chocolatey
+choice/MTRS
+choir/MS
+choirboy/MS
+choirmaster/SM
+choke/MZGDRS
+chokecherry/SM
+choker/M
+cholecystectomy
+cholecystitis
+choler/M
+cholera/M
+choleric
+cholesterol/M
+chomp/ZGMDRS
+choose/ZGRS
+chooser/M
+choosiness/M
+choosy/TPR
+chop/SM
+chophouse/SM
+chopped
+chopper/MDGS
+choppily
+choppiness/M
+chopping
+choppy/TPR
+chopstick/SM
+choral/MYS
+chorale/MS
+chord/MS
+chordal
+chordate/SM
+chore/MS
+chorea/M
+choreograph/DRZG
+choreographer/M
+choreographic
+choreographically
+choreographs
+choreography/M
+chorister/SM
+choroid/MS
+chortle/MZGDRS
+chortler/M
+chorus/GMDS
+chose
+chosen
+chow/SGMD
+chowder/MS
+chrism/M
+christen/ASGD
+christening/MS
+christian/U
+christology
+chromatic
+chromatically
+chromatin/M
+chromatography
+chrome/MGDS
+chromium/M
+chromosomal
+chromosome/MS
+chronic
+chronically
+chronicle/DRSMZG
+chronicler/M
+chronograph/M
+chronographs
+chronological/Y
+chronologist/MS
+chronology/SM
+chronometer/SM
+chrysalis/MS
+chrysanthemum/MS
+chub/SM
+chubbiness/M
+chubby/TPR
+chuck/GMDS
+chuckhole/SM
+chuckle/MGDS
+chuffed
+chug/SM
+chugged
+chugging
+chukka/MS
+chum/SM
+chummed
+chummily
+chumminess/M
+chumming
+chummy/PTR
+chump/MS
+chunder/GDS
+chunk/GMDS
+chunkiness/M
+chunky/PTR
+chunter/DGS
+church/MS
+churchgoer/SM
+churchgoing/M
+churchman/M
+churchmen
+churchwarden/MS
+churchwoman
+churchwomen
+churchyard/SM
+churl/MS
+churlish/PY
+churlishness/M
+churn/ZGMDRS
+churner/M
+chute/MS
+chutney/MS
+chutzpah/M
+chyme/M
+chyron/MS
+ciabatta/SM
+ciao/S
+cicada/MS
+cicatrice/SM
+cicerone/SM
+ciceroni
+cider's
+cider/S
+cigar/MS
+cigarette/MS
+cigarillo/MS
+cilantro/M
+cilia
+cilium/M
+cinch/GMDS
+cinchona/SM
+cincture/SM
+cinder/GMDS
+cine
+cinema/MS
+cinematic
+cinematographer/MS
+cinematographic
+cinematography/M
+cinnabar/M
+cinnamon/M
+cipher's
+cipher/CGDS
+cir
+circa
+circadian
+circle/MGDS
+circlet/MS
+circuit/MDGS
+circuital
+circuitous/YP
+circuitousness/M
+circuitry/M
+circuity/M
+circular/SMY
+circularity/M
+circularize/DSG
+circulate/ADSG
+circulation/SM
+circulatory
+circumcise/XDSGN
+circumcised/U
+circumcision/M
+circumference/MS
+circumferential
+circumflex/MS
+circumlocution/MS
+circumlocutory
+circumnavigate/XGNDS
+circumnavigation/M
+circumpolar
+circumscribe/GDS
+circumscription/MS
+circumspect/Y
+circumspection/M
+circumstance/MGDS
+circumstantial/Y
+circumvent/DSG
+circumvention/M
+circus/MS
+cirque/MS
+cirrhosis/M
+cirrhotic/SM
+cirri
+cirrus/M
+cis
+cisgender
+cistern/MS
+cit
+citadel/MS
+citation/AMS
+cite's
+cite/IAGSD
+citified
+citizen/MS
+citizenry/M
+citizenship/M
+citric
+citron/MS
+citronella/M
+citrus/MS
+city/SM
+citywide
+civet/MS
+civic/S
+civically
+civics/M
+civil/UY
+civilian/MS
+civility/ISM
+civilization/MS
+civilize/GDS
+civilized/U
+civvies/M
+ck
+cl
+clack/GMDS
+clad/U
+cladding/M
+clade
+claim's
+claim/CKEAGDS
+claimable/A
+claimant/MS
+claimed/U
+claimer/ECSM
+clairvoyance/M
+clairvoyant/MS
+clam/SM
+clambake/MS
+clamber/ZGMDRS
+clamberer/M
+clammed
+clammily
+clamminess/M
+clamming
+clammy/PTR
+clamorous
+clamour/GMDS
+clamp/GMDS
+clampdown/MS
+clan/SM
+clandestine/Y
+clang/ZGMDRS
+clangorous/Y
+clangour/M
+clank/GMDS
+clannish/P
+clannishness/M
+clansman/M
+clansmen
+clanswoman
+clanswomen
+clap/SM
+clapboard/MDGS
+clapped
+clapper/MS
+clapperboard/S
+clapping/M
+claptrap/M
+claque/MS
+claret/MS
+clarification/M
+clarify/XDSNG
+clarinet/SM
+clarinetist/SM
+clarion/MDGS
+clarity/M
+clash/GMDS
+clasp's
+clasp/UGDS
+class/GMDS
+classic/MS
+classical/MY
+classicism/M
+classicist/MS
+classifiable
+classification/CAM
+classifications
+classified's
+classified/U
+classifieds
+classifier/MS
+classify/ACSDGN
+classiness/M
+classism
+classless/P
+classmate/MS
+classroom/MS
+classwork/M
+classy/TRP
+clatter/GMDS
+clausal
+clause/MS
+claustrophobia/M
+claustrophobic
+clavichord/SM
+clavicle/MS
+clavier/MS
+claw's
+claw/CSGD
+clay/M
+clayey
+clayier
+clayiest
+clean/BJPZTGDRYS
+cleaner/M
+cleaning/M
+cleanliness/UM
+cleanly/UTPR
+cleanness/UM
+cleanse/ZGDRS
+cleanser/M
+cleanup/MS
+clear/JPTGMDRYS
+clearance/SM
+clearheaded
+clearing/M
+clearinghouse/SM
+clearness/M
+clearway/S
+cleat/MS
+cleavage/MS
+cleave/ZGDRS
+cleaver/M
+clef/SM
+cleft/MS
+clematis/MS
+clemency/IM
+clement/Y
+clementine/S
+clench/GMDS
+clerestory/SM
+clergy/SM
+clergyman/M
+clergymen
+clergywoman/M
+clergywomen
+cleric/MS
+clerical/Y
+clericalism/M
+clerk/GMDS
+clerkship/M
+clever/PTRY
+cleverness/M
+clevis/MS
+clew/SGMD
+cliche/MDS
+click/BZGMDRS
+clickbait
+clicker/M
+client/MS
+clientele/MS
+cliff/MS
+cliffhanger/SM
+cliffhanging
+clifftop/S
+clii
+climacteric/M
+climactic
+climate/SM
+climatic
+climatically
+climatologist/SM
+climatology/M
+climax/MDSG
+climb/SMDRZGB
+climber/M
+climbing/M
+clime/SM
+clinch/MDRSZG
+clincher/M
+cling/SMRZG
+clinger/M
+clingfilm
+clingy/RT
+clinic/SM
+clinical/Y
+clinician/SM
+clink/SMDRZG
+clinker/M
+cliometric/S
+cliometrician/MS
+cliometrics/M
+clip/SM
+clipboard/MS
+clipped
+clipper/SM
+clipping/SM
+clique/SM
+cliquey
+cliquish/YP
+cliquishness/M
+clit/SM
+clitoral
+clitorides
+clitoris/MS
+clix
+cloaca/M
+cloacae
+cloak's
+cloak/USDG
+cloakroom/MS
+clobber/SMDG
+cloche/SM
+clock/SMDG
+clockwise
+clockwork/SM
+clod/MS
+cloddish
+clodhopper/MS
+clog's
+clog/US
+clogged/U
+clogging/U
+cloisonne/M
+cloister/SMDG
+cloistral
+clomp/SDG
+clonal
+clone/DSMG
+clonidine
+clonk/SMDG
+clop/MS
+clopped
+clopping
+close/DRSMYTGJP
+closefisted
+closemouthed
+closeness/M
+closeout/MS
+closet/SMDG
+closeup/SM
+closing/M
+closure/ESM
+clot/MS
+cloth/M
+clothe/UDSG
+clotheshorse/MS
+clothesline/SM
+clothespin/SM
+clothier/MS
+clothing/M
+cloths
+clotted
+clotting
+cloture/SM
+cloud/SMDG
+cloudburst/SM
+clouded/U
+cloudiness/M
+cloudless
+cloudy/RPT
+clout/SMDG
+clove/RSMZ
+cloven
+clover/M
+cloverleaf/SM
+cloverleaves
+clown/SMDG
+clownish/YP
+clownishness/M
+cloy/DGS
+cloying/Y
+club/MS
+clubbable
+clubbed
+clubber/S
+clubbing
+clubfeet
+clubfoot/MD
+clubhouse/SM
+clubland
+cluck/SMDG
+clue/MGDS
+clueless
+clump/SMDG
+clumpy/TR
+clumsily
+clumsiness/M
+clumsy/TRP
+clung
+clunk/SMDRZG
+clunker/M
+clunky/TR
+cluster/MDSG
+clutch/GMDS
+clutter's
+clutter/UDSG
+clvi
+clvii
+clxi
+clxii
+clxiv
+clxix
+clxvi
+clxvii
+cm
+cnidarian/MS
+co/ESD
+coach/MDSG
+coachload/S
+coachman/M
+coachmen
+coachwork
+coadjutor/MS
+coagulant/MS
+coagulate/GNDS
+coagulation/M
+coagulator/MS
+coal/MDGS
+coalesce/GDS
+coalescence/M
+coalescent
+coalface/MS
+coalfield/S
+coalition/MS
+coalitionist/MS
+coalmine/S
+coarse/RYTP
+coarsen/SDG
+coarseness/M
+coast/SMDRZG
+coastal
+coaster/M
+coastguard/S
+coastline/MS
+coat/MDGJS
+coating/M
+coatroom/S
+coattail/SM
+coauthor/MDGS
+coax/DRSZG
+coaxer/M
+coaxial
+coaxing/Y
+cob/SM
+cobalt/M
+cobber/S
+cobble/DRSMZG
+cobbler/M
+cobblestone/SM
+cobnut/S
+cobra/SM
+cobweb/SM
+cobwebbed
+cobwebby/RT
+coca/M
+cocaine/M
+cocci/S
+coccus/M
+coccyges
+coccyx/M
+cochineal/M
+cochlea/SM
+cochleae
+cochlear
+cock/MDGS
+cockade/SM
+cockamamie
+cockatiel/MS
+cockatoo/SM
+cockatrice/SM
+cockchafer/S
+cockcrow/SM
+cockerel/SM
+cockeyed
+cockfight/MGS
+cockfighting/M
+cockily
+cockiness/M
+cockle/SM
+cockleshell/SM
+cockney/SM
+cockpit/SM
+cockroach/MS
+cockscomb/SM
+cocksucker/MS!
+cocksure
+cocktail/MS
+cocky/RTP
+coco/MS
+cocoa/SM
+coconut/SM
+cocoon/SMDG
+cod/SM
+coda/MS
+codded
+codding
+coddle/DSG
+code's
+code/CZGDRS
+codeine/M
+codependency/M
+codependent/SM
+coder/CM
+codex/M
+codfish/MS
+codger/SM
+codices
+codicil/SM
+codification/M
+codifier/M
+codify/XDRSNZG
+codon/S
+codpiece/MS
+codswallop
+coed/MS
+coeducation/M
+coeducational
+coefficient/MS
+coelenterate/MS
+coenzyme
+coequal/MYS
+coerce/DRSZGNV
+coercer/M
+coercion/M
+coeval/SMY
+coexist/DSG
+coexistence/M
+coexistent
+coextensive
+coffee/SM
+coffeecake/SM
+coffeehouse/MS
+coffeemaker/SM
+coffeepot/MS
+coffer/SM
+cofferdam/MS
+coffin/SMDG
+cog/SM
+cogency/M
+cogent/Y
+cogitate/DSXGNV
+cogitation/M
+cogitator/MS
+cognac/SM
+cognate/MS
+cognition/AM
+cognitional
+cognitive/Y
+cognizable
+cognizance/AM
+cognizant
+cognomen/SM
+cognoscente/M
+cognoscenti
+cogwheel/SM
+cohabit/SGD
+cohabitant/MS
+cohabitation/M
+coheir/SM
+cohere/DSG
+coherence/IM
+coherency/M
+coherent/IY
+cohesion/M
+cohesive/YP
+cohesiveness/M
+coho/MS
+cohort/SM
+coif/MS
+coiffed
+coiffing
+coiffure/DSMG
+coil's/A
+coil/UADGS
+coin/MDRZGS
+coinage/SM
+coincide/DSG
+coincidence/MS
+coincident
+coincidental/Y
+coiner/M
+coinsurance/M
+coir
+coital
+coitus/M
+coke/MGDS
+col/S
+cola/MS
+colander/SM
+cold/MRYTPS
+coldblooded
+coldness/M
+coleslaw/M
+coleus/MS
+coley/S
+colic/M
+colicky
+coliseum/MS
+colitis/M
+coll
+collaborate/DSXGNV
+collaboration/M
+collaborationist
+collaborative/Y
+collaborator/MS
+collage/SM
+collagen
+collapse/MGDS
+collapsible
+collar/SMDG
+collarbone/SM
+collard/SM
+collarless
+collate/DSXGN
+collateral/MY
+collateralize
+collation/M
+collator/MS
+colleague/MS
+collect's
+collect/ASGVD
+collected/U
+collectedly
+collectible/SM
+collection/AMS
+collective/MYS
+collectivism/M
+collectivist/SM
+collectivization/M
+collectivize/DSG
+collector/MS
+colleen/SM
+college/SM
+collegiality/M
+collegian/MS
+collegiate
+collide/DRSZG
+collie/RSMZ
+collier/M
+colliery/SM
+collision/SM
+collocate/MGNDSX
+collocation/M
+colloid/SM
+colloidal
+colloq
+colloquial/Y
+colloquialism/SM
+colloquies
+colloquium/MS
+colloquy/M
+collude/DSG
+collusion/M
+collusive
+cologne/SM
+colon/SM
+colonel/SM
+colonelcy/M
+colones
+colonial/SMY
+colonialism/M
+colonialist/MS
+colonist/SM
+colonization/ACM
+colonize/CAGSD
+colonizer/MS
+colonnade/MDS
+colonoscopy/SM
+colony/SM
+colophon/SM
+coloration/EM
+coloratura/MS
+colossal/Y
+colossi
+colossus/M
+colostomy/SM
+colostrum/M
+colour's
+colour/AEGDS
+colourant/SM
+colourblind/P
+colourblindness/M
+coloured's
+coloured/U
+coloureds
+colourfast/P
+colourfastness/M
+colourful/YP
+colourfulness/M
+colouring's
+colourist/S
+colourization/M
+colourize/DSG
+colourless/PY
+colourlessness/M
+colourway/S
+colt/MS
+coltish
+columbine/SM
+column/SMD
+columnar
+columnist/SM
+com/JL
+coma/MS
+comaker/SM
+comatose
+comb/MDRZGJS
+combat/SMDGV
+combatant/SM
+combativeness/M
+combed/U
+comber/M
+combination/SM
+combine's
+combine/ADSG
+combined/U
+combiner/MS
+combings/M
+combo/SM
+combust/SGVD
+combustibility/M
+combustible/MS
+combustion/M
+come/IMZGRS
+comeback/MS
+comedian/MS
+comedic
+comedienne/MS
+comedown/MS
+comedy/SM
+comeliness/M
+comely/RPT
+comer's
+comestible/SM
+comet/SM
+comeuppance/SM
+comfit's
+comfit/ES
+comfort/ESMDG
+comfortable/P
+comfortableness/M
+comfortably/U
+comforter/MS
+comforting/Y
+comfortless
+comfy/RT
+comic/SM
+comical/Y
+comicality/M
+coming/M
+comity/M
+comm
+comma/SM
+command/SMDRLZG
+commandant/MS
+commandeer/GDS
+commander/M
+commandment/MS
+commando/SM
+commemorate/XGNVDS
+commemoration/M
+commemorator/MS
+commence/ADSLG
+commencement/AM
+commencements
+commend/ASDBG
+commendably
+commendation/AMS
+commendatory
+commensurable
+commensurate/IY
+comment/GSMD
+commentary/SM
+commentate/DSG
+commentator/SM
+commerce/M
+commercial/SMY
+commercialism/M
+commercialization/M
+commercialize/GDS
+commie/SM
+commingle/DSG
+commiserate/GNVDSX
+commiseration/M
+commissar/SM
+commissariat/SM
+commissary/SM
+commission's
+commission/ACSGD
+commissionaire/S
+commissioner/SM
+commit/AS
+commitment/MS
+committal/SM
+committed/AU
+committee/SM
+committeeman/M
+committeemen
+committeewoman/M
+committeewomen
+committer/S
+committing/A
+commode's
+commode/EIS
+commodification
+commodious/Y
+commodity/SM
+commodore/SM
+common's
+common/UPRYT
+commonality/S
+commonalty/M
+commoner/MS
+commonness/UM
+commonplace/MS
+commons
+commonsense
+commonweal/MH
+commonwealth/M
+commonwealths
+commotion/SM
+communal/Y
+commune/XDSMGN
+communicability/M
+communicable/I
+communicably
+communicant/MS
+communicate/GNVDSX
+communication/M
+communicative/U
+communicator/SM
+communion/M
+communique/SM
+communism/M
+communist/SM
+communistic
+community/SM
+commutation/MS
+commutative
+commutativity
+commutator/SM
+commute/BDRSMZG
+commuter/M
+comorbidity
+comp/MDYGS
+compact/TGSMDRYP
+compaction
+compactness/M
+compactor/SM
+companion/SBM
+companionably
+companionship/M
+companionway/MS
+company/SM
+comparability/M
+comparable/I
+comparably/I
+comparative/MYS
+compare/BDSG
+comparison/MS
+compartment/SM
+compartmental
+compartmentalization/M
+compartmentalize/DSG
+compass/GMDS
+compassion/M
+compassionate/Y
+compatibility/IM
+compatible/IMS
+compatibly/I
+compatriot/MS
+compeer/SM
+compel/S
+compelled
+compelling/Y
+compendious
+compendium/SM
+compensate/DSXGN
+compensated/U
+compensation/M
+compensatory
+compere/DSG
+compete/DSG
+competence/IM
+competences
+competencies
+competency/IM
+competent/IY
+competition/SM
+competitive/PY
+competitiveness/M
+competitor/SM
+compilation/SM
+compile/DRSZG
+compiler/M
+complacence/M
+complacency/M
+complacent/Y
+complain/DRZGS
+complainant/MS
+complainer/M
+complaint/SM
+complaisance/M
+complaisant/Y
+complected
+complement/SGMD
+complementary
+complete/PYTGNXDRS
+completed/U
+completeness/IM
+completion/M
+complex/MSY
+complexion/MDS
+complexional
+complexity/SM
+compliance/M
+compliant/Y
+complicate/GDS
+complicated/Y
+complication/M
+complicit
+complicity/M
+compliment/MDGS
+complimentary/U
+comply/NDSXG
+compo/S
+component/SM
+comport/LSGD
+comportment/M
+compose/AECGSD
+composedly
+composer/MS
+composite/MYGNXDS
+composition/CM
+compositional
+compositor/SM
+compost/SGMD
+composure/EM
+compote/SM
+compound/GMDBS
+compounded/U
+comprehend/SDG
+comprehensibility/IM
+comprehensible/I
+comprehensibly/I
+comprehension/IM
+comprehensions
+comprehensive/PMYS
+comprehensiveness/M
+compress's
+compress/CGVDS
+compressed/U
+compressible
+compression/CM
+compressor/SM
+comprise/GDS
+compromise/MGDS
+comptroller/MS
+compulsion/MS
+compulsive/YP
+compulsiveness/M
+compulsorily
+compulsory/SM
+compunction/SM
+computation/SM
+computational/Y
+compute/ADSG
+computer/MS
+computerate
+computerization/M
+computerize/GDS
+computing/M
+comrade/SMY
+comradeship/M
+con/GSM
+concatenate/XDSGN
+concatenation/M
+concave/YP
+concaveness/M
+conceal/SDRZGBL
+concealed/U
+concealer/M
+concealment/M
+conceit/SMD
+conceited/PY
+conceitedness/M
+conceivable/I
+conceivably/I
+conceive/DSGB
+concentrate/DSMGNX
+concentration/M
+concentric
+concentrically
+concept/SM
+conception/SM
+conceptional
+conceptual/Y
+conceptualization/MS
+conceptualize/DSG
+concern/UMD
+concerned/UY
+concerning
+concerns
+concert's
+concert/ESDG
+concerted/Y
+concertgoer/S
+concertina/SGMD
+concertize/DSG
+concertmaster/MS
+concerto/SM
+concessionaire/MS
+concessional
+concessionary
+conch/M
+conchie/S
+conchs
+concierge/MS
+conciliate/DSGN
+conciliation/AM
+conciliator/SM
+conciliatory
+concise/RPYTN
+conciseness/M
+concision/M
+conclave/SM
+conclude/DSG
+conclusion/MS
+conclusive/IYP
+conclusiveness/IM
+concoct/SDG
+concoction/MS
+concomitant/MYS
+concord/M
+concordance/SM
+concordant
+concordat/SM
+concourse/SM
+concrete/DSPMYGNX
+concreteness/M
+concretion/M
+concubinage/M
+concubine/MS
+concupiscence/M
+concupiscent
+concur/S
+concurred
+concurrence/SM
+concurrency
+concurring
+concuss/V
+concussion/SM
+condemn/SDRZG
+condemnation/MS
+condemnatory
+condemner/M
+condensate/MNXS
+condensation/M
+condense/DRSZG
+condenser/M
+condescending/Y
+condescension/M
+condign
+condiment/MS
+condition's
+condition/AGSD
+conditional/SMY
+conditionality
+conditioned/U
+conditioner/SM
+conditioning/M
+condo/SM
+condolence/SM
+condom/SM
+condominium/MS
+condone/DSG
+condor/SM
+conduce/DSGV
+conduct/MDGV
+conductance/M
+conductibility/M
+conductible
+conduction/M
+conductivity/M
+conductor/MS
+conductress/MS
+conduit/SM
+cone/M
+coneys
+confab/SM
+confabbed
+confabbing
+confabulate/XDSGN
+confabulation/M
+confection/SZMR
+confectioner/M
+confectionery/SM
+confederacy/SM
+confederate/M
+confer/S
+conferee/SM
+conference/MGS
+conferrable
+conferral/M
+conferred
+conferrer/MS
+conferring
+confessed/Y
+confession/SM
+confessional/SM
+confessor/MS
+confetti/M
+confidant/MS
+confidante/SM
+confide/DRSZG
+confidence/SM
+confident/Y
+confidential/Y
+confidentiality/M
+confider/M
+confiding/Y
+configuration/S
+configure/B
+confined/U
+confinement/MS
+confirm/ASDG
+confirmation/ASM
+confirmatory
+confirmed/U
+confiscate/DSGNX
+confiscation/M
+confiscator/SM
+confiscatory
+conflagration/MS
+conflate/XDSGN
+conflation/M
+conflict/SGMD
+confluence/MS
+confluent
+conform/ZB
+conformable/U
+conformal
+conformance/M
+conformism/M
+conformist/SM
+conformity/M
+confrere/MS
+confrontation/SM
+confrontational
+confuse/RZ
+confused/Y
+confusing/Y
+confutation/M
+confute/DSG
+conga/SMDG
+congeal/SLDG
+congealment/M
+conger/SM
+congeries/M
+congest/SDGV
+congestion/M
+conglomerate/DSXMGN
+conglomeration/M
+congrats/M
+congratulate/XGNDS
+congratulation/M
+congratulatory
+congregant/MS
+congregate/GNDSX
+congregation/M
+congregational
+congregationalism/M
+congregationalist/MS
+congress/MS
+congressional
+congressman/M
+congressmen
+congresspeople
+congressperson/MS
+congresswoman/M
+congresswomen
+congruence/M
+congruent/Y
+congruity/ISM
+congruous
+conic/SM
+conical/Y
+conifer/SM
+coniferous
+conjectural
+conjecture/MGDS
+conjoint
+conjugal/Y
+conjugate/DSXGN
+conjugation/M
+conjunct/VMS
+conjunctiva/SM
+conjunctive/SM
+conjunctivitis/M
+conjuration/MS
+conjure/DRSZG
+conjurer/M
+conk/MDRZ
+conman
+connect/AEDVGS
+connectable
+connected/U
+connection/EMS
+connective/MS
+connectivity/M
+connector/MS
+conned
+conning
+conniption/MS
+connivance/M
+connive/DRSZG
+conniver/M
+connoisseur/SM
+connotative
+connubial
+conquer/ASDG
+conquerable/U
+conquered/U
+conqueror/MS
+conquest/AM
+conquistador/SM
+cons/DSG
+consanguineous
+consanguinity/M
+conscienceless
+conscientious/PY
+conscientiousness/M
+conscious/UYP
+consciousness/UM
+consciousnesses
+conscription/M
+consecrate/ADSGN
+consecrated/U
+consecration/AM
+consecrations
+consecutive/Y
+consensual
+consensus/MS
+consent/SMDG
+consequence/SM
+consequent/Y
+consequential/IY
+conservancy/SM
+conservation/M
+conservationism/M
+conservationist/SM
+conservatism/M
+conservative/MYS
+conservatoire/S
+conservator/SM
+conservatory/SM
+consider/AGSD
+considerable/I
+considerably
+considerate/IPYN
+considerateness/IM
+consideration/AIM
+considerations
+considered/U
+consign/ASDG
+consignee/MS
+consignment/MS
+consist/SDG
+consistence/MS
+consistency/ISM
+consistent/IY
+consistory/SM
+consolable/I
+consolation/MS
+consolatory
+consolidate/XDSGN
+consolidated/U
+consolidation/M
+consolidator/MS
+consoling/Y
+consomme/M
+consonance/SM
+consonant/SMY
+consortia
+consortium/M
+conspectus/MS
+conspicuous/IPY
+conspicuousness/IM
+conspiracy/SM
+conspirator/MS
+conspiratorial/Y
+conspire/GD
+constable/SM
+constabulary/SM
+constancy/IM
+constant/MYS
+constellation/SM
+consternation/M
+constipate/GNDS
+constipation/M
+constituency/SM
+constituent/SM
+constitute/ADSGNV
+constitution/AM
+constitutional/MYS
+constitutionalism
+constitutionality/UM
+constitutions
+constrained/U
+constraint/SM
+constrict/GVSD
+constriction/SM
+constrictor/SM
+construable
+construct's
+construct/CADVGS
+construction/CAMS
+constructional
+constructionist's
+constructionist/CS
+constructive/YP
+constructiveness/M
+constructor/MS
+construe/GDS
+consul/KSM
+consular/K
+consulate/SM
+consulship/M
+consult/GSD
+consultancy/SM
+consultant/MS
+consultation/MS
+consultative
+consumable/SM
+consume/BDRSZG
+consumed/U
+consumer/M
+consumerism/M
+consumerist/MS
+consummate/YGNXDS
+consummated/U
+consumption/M
+consumptive/SM
+cont
+contact/ASDG
+contactable
+contactless
+contagion/MS
+contagious/PY
+contagiousness/M
+contain/SBLDRZG
+container/M
+containerization/M
+containerize/DSG
+containment/M
+contaminant/SM
+contaminate/ACDSG
+contaminated/U
+contamination/CM
+contaminator/SM
+contd
+contemn/SDG
+contemplate/DSGNV
+contemplation/M
+contemplative/SMY
+contemporaneity/M
+contemporaneous/Y
+contempt/M
+contemptible
+contemptibly
+contemptuous/YP
+contemptuousness/M
+contender/MS
+content/ESLMDG
+contented/EY
+contentedness/M
+contention/SM
+contentious/YP
+contentiousness/M
+contently
+contentment/EM
+conterminous/Y
+contestable/I
+contestant/MS
+contested/U
+contextualization
+contextualize/DSG
+contiguity/M
+contiguous/Y
+continence/IM
+continent/SM
+continental/SM
+contingency/SM
+contingent/SMY
+continua
+continual/Y
+continuance/EMS
+continuation/EMS
+continue/EGDS
+continuity/ESM
+continuous/EY
+continuum/M
+contort/GD
+contortion/MS
+contortionist/SM
+contra
+contraband/M
+contrabassoon/S
+contraception/M
+contraceptive/SM
+contract/MDG
+contractible
+contractile
+contractility
+contraction/S
+contractual/Y
+contradict/SDG
+contradiction/SM
+contradictory
+contradistinction/MS
+contraflow/S
+contrail/MS
+contraindicate/GNXDS
+contraindication/M
+contralto/SM
+contraption/SM
+contrapuntal/Y
+contrarian/SM
+contrarianism
+contrariety/M
+contrarily
+contrariness/M
+contrariwise
+contrary/PSM
+contrast/MDGS
+contravene/GDS
+contravention/SM
+contretemps/M
+contribute/XGND
+contribution/M
+contributor/MS
+contributory
+contrition/M
+contrivance/MS
+contrive/ZGDRS
+contriver/M
+control's
+control/CS
+controllable/U
+controlled/UC
+controller/MS
+controlling/C
+controversial/Y
+controversy/SM
+controvert/DSG
+controvertible/I
+contumacious/Y
+contumacy/M
+contumelious
+contumely/SM
+contuse/XDSGN
+contusion/M
+conundrum/SM
+conurbation/MS
+convalesce/DSG
+convalescence/MS
+convalescent/SM
+convection/M
+convectional
+convective
+convector/S
+convene/ADSG
+convener/MS
+convenience/IMS
+convenient/IY
+convent/SM
+conventicle/MS
+convention/SM
+conventional/UY
+conventionality/UM
+conventionalize/GDS
+conventioneer/S
+convergence/MS
+convergent
+conversant
+conversation/MS
+conversational/Y
+conversationalist/SM
+converse/Y
+convert's
+convert/AGSD
+converted/U
+converter/SM
+convertibility/M
+convertible/SM
+convex/Y
+convexity/M
+convey/SBDG
+conveyance/MGS
+conveyor/MS
+convict/GSMD
+conviction/MS
+convince/GDS
+convinced/U
+convincing/UY
+convivial/Y
+conviviality/M
+convoke/DSG
+convoluted
+convolution/MS
+convoy/SMDG
+convulse/GNVXDS
+convulsion/M
+convulsive/Y
+cony/M
+coo/GSMD
+cook's
+cook/ADGS
+cookbook/MS
+cooked/U
+cooker/SM
+cookery/SM
+cookhouse/S
+cookie/SM
+cooking/M
+cookout/SM
+cookware/SM
+cool/MDRYZTGPS
+coolant/SM
+cooler/M
+coolie/SM
+coolness/M
+coon/MS!
+coonskin/MS
+coop/MDRZGS
+cooper/MDG
+cooperage/M
+cooperate/DSGNV
+cooperation/M
+cooperative/PMYS
+cooperativeness/M
+cooperator/SM
+coordinate/DSMYGN
+coordinated/U
+coordination/M
+coordinator/MS
+coot/MS
+cootie/SM
+cop/GJSMD
+copacetic
+copay/M
+cope/MS
+copier/SM
+copilot/SM
+coping/M
+copious/PY
+copiousness/M
+copped
+copper/SM
+copperhead/SM
+copperplate/M
+coppery
+copping
+copra/M
+copse/SM
+copter/SM
+copula/SM
+copulate/GNVDS
+copulation/M
+copulative/SM
+copy's
+copy/ADSG
+copybook/SM
+copycat/MS
+copycatted
+copycatting
+copyist/MS
+copyleft
+copyright/GSMD
+copywriter/MS
+coquetry/SM
+coquette/DSMG
+coquettish/Y
+cor
+coracle/SM
+coral/SM
+corbel/SM
+cord/EASGDM
+cordage/M
+cordial/SMY
+cordiality/M
+cordillera/MS
+cordite/M
+cordless
+cordon/SMDG
+cordovan/M
+corduroy/MS
+corduroys/M
+core/MZGDRS
+coreligionist/S
+corer/M
+corespondent/MS
+corgi/SM
+coriander/M
+cork's
+cork/UDGS
+corkage
+corker/SM
+corkscrew/SMDG
+corm/MS
+cormorant/SM
+corn/MDRZGS
+cornball/MS
+cornbread/M
+corncob/MS
+corncrake/S
+cornea/SM
+corneal
+corner/GMD
+cornerstone/SM
+cornet/SM
+cornfield/S
+cornflakes/M
+cornflour
+cornflower/SM
+cornice/MS
+cornily
+corniness/M
+cornmeal/M
+cornrow/MDGS
+cornstalk/SM
+cornstarch/M
+cornucopia/MS
+corny/PRT
+corolla/MS
+corollary/SM
+corona/SM
+coronal/MS
+coronary/SM
+coronation/SM
+coronavirus/MS
+coroner/MS
+coronet/MS
+corp
+corpora
+corporal/SM
+corporate/XYN
+corporation/IM
+corporatism
+corporeal/Y
+corporeality/M
+corps/MS
+corpse/M
+corpsman/M
+corpsmen
+corpulence/M
+corpulent
+corpus/M
+corpuscle/MS
+corpuscular
+corr
+corral/SM
+corralled
+corralling
+correct/DRYTGVSBP
+corrected/U
+correction/SM
+correctional
+corrective/SM
+correctness/IM
+corrector
+correlate/XDSMGNV
+correlated/U
+correlation/M
+correlational
+correlative/MS
+correspond/SDG
+correspondence/SM
+correspondent/SM
+corresponding/Y
+corridor/SM
+corrie/S
+corroborate/GNVDSX
+corroborated/U
+corroboration/M
+corroborator/SM
+corroboratory
+corrode/GDS
+corrosion/M
+corrosive/SMY
+corrugate/GNXDS
+corrugation/M
+corrupt/DRYPSTG
+corruptibility/IM
+corruptible/I
+corruption/MS
+corruptness/M
+corsage/MS
+corsair/MS
+corset/SGMD
+cortege/MS
+cortex/M
+cortical
+cortices
+cortisol
+cortisone/M
+corundum/M
+coruscate/GNDS
+coruscation/M
+corvette/SM
+cos/M
+cosh/DSG
+cosign/ZGSDR
+cosignatory/SM
+cosigner/M
+cosine/SM
+cosmetic/SM
+cosmetically
+cosmetician/MS
+cosmetologist/MS
+cosmetology/M
+cosmic
+cosmically
+cosmogonist/SM
+cosmogony/SM
+cosmological
+cosmologist/SM
+cosmology/SM
+cosmonaut/SM
+cosmopolitan/MS
+cosmopolitanism/M
+cosmos/MS
+cosplay
+cosponsor/GSMD
+cosset/SGD
+cossetted
+cossetting
+cost/MDYGSJ
+costar/SM
+costarred
+costarring
+costliness/M
+costly/PTR
+costume/MZGDRS
+costumer/M
+costumiers
+costumire
+cot/SM
+cotangent/MS
+cote/MS
+coterie/MS
+coterminous
+cotillion/SM
+cottage/MZGRS
+cottager/M
+cottar/SM
+cotter/SM
+cotton/SGMD
+cottonmouth/M
+cottonmouths
+cottonseed/MS
+cottontail/MS
+cottonwood/SM
+cottony
+cotyledon/MS
+couch/MDSG
+couchette/S
+cougar/SM
+cough/MDG
+coughs
+could
+could've
+couldn't
+coulee/SM
+coulis
+coulomb/MS
+council/MS
+councillor/SM
+councilman/M
+councilmen
+councilperson/SM
+councilwoman/M
+councilwomen
+counsel/JMS
+counselled
+counselling
+counsellor/SM
+count/EASMDG
+countable/U
+countably
+countdown/MS
+counted/U
+countenance's
+countenance/EGDS
+counter/EMS
+counteract/SGVD
+counteraction/MS
+counterargument/S
+counterattack/GMDS
+counterbalance/MGDS
+counterblast/S
+counterclaim/GSMD
+counterclockwise
+counterculture/SM
+countered
+counterespionage/M
+counterexample/S
+counterfactual
+counterfeit/ZGMDRS
+counterfeiter/M
+counterfoil/MS
+countering
+counterinsurgency/SM
+counterintelligence/M
+counterman/M
+countermand/GMDS
+countermeasure/SM
+countermelody/S
+countermen
+countermove/S
+counteroffensive/SM
+counteroffer/SM
+counterpane/SM
+counterpart/SM
+counterpetition
+counterpoint/MDGS
+counterpoise/MGDS
+counterproductive
+counterrevolution/SM
+counterrevolutionary/SM
+countersign/GSMD
+countersignature/MS
+countersink/GSM
+counterspy/SM
+counterstroke/SM
+countersunk
+countertenor/MS
+countervail/GSD
+counterweight/MS
+countess/MS
+countless
+countrified
+country/SM
+countryman/M
+countrymen
+countryside/MS
+countrywide
+countrywoman/M
+countrywomen
+county/SM
+countywide
+coup's
+coup/AS
+coupe/SM
+couple's
+couple/UCGSD
+couplet/MS
+coupling/SM
+coupon/SM
+courage/M
+courageous/YP
+courageousness/M
+courgette/S
+courier/MDSG
+course/EDGMS
+coursebook/S
+courser/MS
+coursework
+court/SMDYG
+courteous/EY
+courteousness/M
+courtesan/SM
+courtesy/ESM
+courthouse/MS
+courtier/SM
+courtliness/M
+courtly/PRT
+courtroom/MS
+courtship/MS
+courtyard/MS
+couscous/M
+cousin/SM
+couture/M
+couturier/MS
+covalent
+covariance
+covariant
+cove/MS
+coven/SM
+covenant/MDSG
+cover's
+cover/AEUGDS
+coverage/M
+coverall/MS
+covering's
+coverings
+coverlet/MS
+covert/SPMY
+covertness/M
+covet/SDG
+covetous/YP
+covetousness/M
+covey/SM
+cow/ZGSMDR
+coward/SMY
+cowardice/M
+cowardliness/M
+cowbell/MS
+cowbird/MS
+cowboy/SM
+cowcatcher/MS
+cower/DG
+cowgirl/MS
+cowhand/MS
+cowherd/MS
+cowhide/MS
+cowl/MGSJ
+cowlick/MS
+cowling/M
+cowman/M
+cowmen
+coworker/MS
+cowpat/S
+cowpoke/MS
+cowpox/M
+cowpuncher/SM
+cowrie/SM
+cowshed/S
+cowslip/SM
+cox/GDS
+coxcomb/MS
+coxswain/MS
+coy/TPRY
+coyness/M
+coyote/SM
+coypu/SM
+cozen/SDG
+cozenage/M
+cozily
+coziness/M
+cozy/RSMTP
+cpd
+cpl
+cps
+crab/MS
+crabbed
+crabber/SM
+crabbily
+crabbiness/M
+crabbing
+crabby/PRT
+crabgrass/M
+crablike
+crabwise
+crack/SMDRYZGJ
+crackdown/MS
+cracker/M
+crackerjack/MS
+crackhead/MS
+crackle/DSJMG
+crackling/M
+crackpot/MS
+crackup/SM
+cradle/DSMG
+craft/SMDG
+craftily
+craftiness/M
+craftsman/M
+craftsmanship/M
+craftsmen
+craftspeople
+craftswoman/M
+craftswomen
+crafty/RTP
+crag/MS
+cragginess/M
+craggy/RPT
+cram/S
+crammed
+crammer/S
+cramming
+cramp/SMDG
+cramping/M
+crampon/SM
+cranberry/SM
+crane/DSMG
+cranial
+cranium/SM
+crank/SMDG
+crankcase/SM
+crankily
+crankiness/M
+crankshaft/MS
+cranky/PRT
+cranny/DSM
+crap/MS
+crape/SM
+crapped
+crapper/S
+crappie/RSMT
+crapping
+crappy
+craps/M
+crapshooter/MS
+crash/MDSG
+crass/RYTP
+crassness/M
+crate/DRSMZG
+crater/MDG
+cravat/SM
+crave/DSGJ
+craven/SMYP
+cravenness/M
+craving/M
+craw/MS
+crawdad/SM
+crawl/SMDRZG
+crawler/M
+crawlspace/SM
+crawly/TRSM
+cray/S
+crayfish/MS
+crayola/S
+crayon/GSMD
+craze/DSMG
+crazily
+craziness/M
+crazy/PRSMT
+creak/SMDG
+creakily
+creakiness/M
+creaky/RPT
+cream/SMDRZG
+creamer/M
+creamery/SM
+creamily
+creaminess/M
+creamy/RPT
+crease/ICGMSD
+create/KADSGNV
+creation's/K
+creation/ASM
+creationism/SM
+creationist/SM
+creative/SMYP
+creativeness/M
+creativity/M
+creator/MS
+creature/SM
+creche/SM
+cred
+credence/M
+credential/SGMD
+credenza/SM
+credibility/IM
+credible/I
+credibly/I
+credit/EGSBMD
+creditably/E
+creditor/SM
+creditworthy/P
+credo/SM
+credulity/IM
+credulous/IY
+credulousness/M
+creed/SM
+creek/SM
+creel/SM
+creep/SMRZG
+creeper/M
+creepily
+creepiness/M
+creepy/TPR
+cremains/M
+cremate/GNDSX
+cremation/M
+crematoria
+crematorium/MS
+crematory/SM
+creme/SM
+crenellate/DSGNX
+crenellation/M
+creole/SM
+creosote/MGDS
+crepe/SM
+crept
+crepuscular
+crescendo/CSM
+crescent/MS
+cress/M
+crest/SMDG
+crestfallen
+crestless
+cretaceous
+cretin/SM
+cretinism/M
+cretinous
+cretonne/M
+crevasse/SM
+crevice/MS
+crew/MDGS
+crewel/M
+crewelwork/M
+crewman/M
+crewmen
+crib/MS
+cribbage/M
+cribbed
+cribber/MS
+cribbing
+crick/SMDG
+cricket/MRSZG
+cricketer/M
+crier/M
+crikey
+crime/SM
+criminal/MYS
+criminality/M
+criminalize/CGDS
+criminologist/MS
+criminology/M
+crimp/SMDG
+crimson/SMDG
+cringe/DSMG
+crinkle/DSMG
+crinkly/RT
+crinoline/SM
+cripes
+cripple/DRSMZG
+crippler/M
+crippleware
+crippling/Y
+crises
+crisis/M
+crisp/SMDRYTGP
+crispbread/S
+crispiness/M
+crispness/M
+crispy/PRT
+crisscross/GMDS
+criteria
+criterion/M
+critic/SM
+critical/UY
+criticality
+criticism/MS
+criticize/ZGDRS
+criticizer/M
+critique/MGDS
+critter/SM
+croak/SMDG
+croaky/RT
+crochet/SMDRZG
+crocheter/M
+crocheting/M
+crock/SMD
+crockery/M
+crocodile/SM
+crocus/MS
+croft/SRZG
+croissant/MS
+crone/SM
+crony/SM
+cronyism/M
+crook/SMDG
+crooked/PTRY
+crookedness/M
+crookneck/SM
+croon/SMDRZG
+crooner/M
+crop/MS
+cropland/SM
+cropped
+cropper/MS
+cropping
+croquet/M
+croquette/SM
+cross's
+cross/AUGTSD
+crossbar/SM
+crossbeam/MS
+crossbones/M
+crossbow/SM
+crossbowman/M
+crossbowmen
+crossbred
+crossbreed/SGM
+crosscheck/SMDG
+crosscurrent/MS
+crosscut/SM
+crosscutting
+crosser
+crossfire/MS
+crosshatch/GDS
+crossing/SM
+crossly
+crossness/M
+crossover/MS
+crosspatch/MS
+crosspiece/SM
+crossroad/MS
+crossroads/M
+crosstown
+crosswalk/MS
+crosswind/MS
+crosswise
+crossword/MS
+crotch/MS
+crotchet/SM
+crotchety
+crouch/GMDS
+croup/M
+croupier/M
+croupy/ZTR
+crouton/MS
+crow/MDGS
+crowbar/MS
+crowd/SMDG
+crowded/U
+crowdfund/SDG
+crowfeet
+crowfoot/SM
+crown/SMDG
+crowned/U
+crozier/MS
+crucial/Y
+crucible/SM
+crucifix/MS
+crucifixion/SM
+cruciform/SM
+crucify/DSG
+crud/M
+cruddy/TR
+crude/RMYTP
+crudeness/M
+crudites/M
+crudity/SM
+cruel/YP
+crueller
+cruellest
+cruelness/M
+cruelty/SM
+cruet/SM
+cruft/SD
+crufty
+cruise/DRSMZG
+cruiser/M
+cruller/MS
+crumb/SMDYG
+crumble/MGDS
+crumbliness/M
+crumbly/TPR
+crumby/TR
+crumminess/M
+crummy/PTR
+crumpet/MS
+crumple/MGDS
+crunch/GMDRS
+crunchiness/M
+crunchy/TRP
+crupper/MS
+crusade/MZGDRS
+crusader/M
+cruse/SM
+crush/MDRSZG
+crusher/M
+crushing/Y
+crust/SMDG
+crustacean/SM
+crustal
+crustily
+crustiness/M
+crusty/TRP
+crutch/MS
+crux/MS
+cry/ZGJDRSM
+crybaby/SM
+cryogenic/S
+cryogenics/M
+cryonics
+cryosurgery/M
+crypt/SM
+cryptanalysis
+cryptic
+cryptically
+cryptocurrency/SM
+cryptogram/SM
+cryptographer/SM
+cryptography/M
+crystal/SM
+crystalline
+crystallization/M
+crystallize/ADSG
+crystallographic
+crystallography
+ct
+ctn
+ctr
+cu
+cub/ZGSMDR
+cubbyhole/MS
+cube/MS
+cuber/M
+cubic
+cubical
+cubicle/MS
+cubism/M
+cubist/SM
+cubit/SM
+cuboid/S
+cuckold/MDSG
+cuckoldry/M
+cuckoo/SM
+cucumber/SM
+cud/SM
+cuddle/DSMG
+cuddly/TR
+cudgel/SM
+cudgelled
+cudgelling/S
+cue/DSMG
+cuff/MDGS
+cuisine/SM
+culinary
+cull/MDGS
+culminate/XDSGN
+culmination/M
+culotte/SM
+culpability/M
+culpable/I
+culpably
+culprit/SM
+cult/MS
+cultism/M
+cultist/MS
+cultivable
+cultivar/SM
+cultivate/BDSGN
+cultivated/U
+cultivation/M
+cultivator/MS
+cultural/Y
+culture/MGDS
+cultured/U
+culvert/MS
+cum/SM
+cumber/SDG
+cumbersome/P
+cumbersomeness/M
+cumbrous
+cumin/M
+cummerbund/MS
+cumming
+cumulative/Y
+cumuli
+cumulonimbi
+cumulonimbus/M
+cumulus/M
+cuneiform/M
+cunnilingus/M
+cunning/MRYT
+cunt/MS!
+cup/SM
+cupboard/SM
+cupcake/MS
+cupful/SM
+cupid/SM
+cupidity/M
+cupola/SMD
+cuppa/S
+cupped
+cupping
+cupric
+cur/SMY
+curability/M
+curacao
+curacy/SM
+curare/M
+curate/DSMGV
+curative/MS
+curator/KMS
+curatorial
+curb/MDGS
+curbing/M
+curbside
+curbstone/SM
+curd/MS
+curdle/DSG
+cure's
+cure/KZGBDRS
+cured/U
+curer/KM
+curettage/M
+curfew/SM
+curia/M
+curiae
+curie/SM
+curio/SM
+curiosity/SM
+curious/YP
+curiousness/M
+curium/M
+curl's
+curl/UDGS
+curler/SM
+curlew/SM
+curlicue/DSMG
+curliness/M
+curling/M
+curly/RPT
+curmudgeon/MYS
+currant/MS
+currency/SM
+current's
+current/FAY
+currents
+curricula
+curricular
+curriculum/M
+curry/DSMG
+currycomb/SGMD
+curse/DSMGV
+cursed/Y
+cursive's
+cursive/EAY
+cursor/SM
+cursorily
+cursoriness/M
+cursory/P
+curt/RYTP
+curtail/GDSL
+curtailment/SM
+curtain/GMDS
+curtness/M
+curtsy/GDSM
+curvaceous/P
+curvaceousness/M
+curvature/SM
+curve/DSMG
+curvy/RT
+cushion/MDSG
+cushy/RT
+cusp/MS
+cuspid/SM
+cuspidor/SM
+cuss's
+cuss/FEGSD
+cussed/PY
+custard/MS
+custodial
+custodian/MS
+custodianship/M
+custody/M
+custom/SZMR
+customarily
+customary/U
+customer/M
+customhouse/SM
+customization/M
+customize/DSG
+cut/TSMR
+cutaneous
+cutaway/MS
+cutback/MS
+cute/YP
+cuteness/M
+cutesy/TR
+cutey/S
+cuticle/MS
+cutie/SM
+cutlass/MS
+cutler/SM
+cutlery/M
+cutlet/SM
+cutoff/SM
+cutout/SM
+cutter/SM
+cutthroat/SM
+cutting/MYS
+cuttlefish/MS
+cutup/SM
+cutworm/MS
+cw
+cwt
+cyan/M
+cyanide/M
+cyanobacteria
+cyberbully/SM
+cybercafe/S
+cybernetic/S
+cybernetics/M
+cyberpunk/SM
+cybersex
+cyberspace/MS
+cyborg/SM
+cyclamen/MS
+cycle/ADSMG
+cyclic
+cyclical/Y
+cyclist/MS
+cyclometer/MS
+cyclone/MS
+cyclonic
+cyclopedia/MS
+cyclopes
+cyclops/M
+cyclotron/MS
+cygnet/MS
+cylinder/MS
+cylindrical
+cymbal/MS
+cymbalist/MS
+cynic/SM
+cynical/Y
+cynicism/M
+cynosure/MS
+cypress/MS
+cyst/MS
+cystic
+cystitis
+cytokines
+cytologist/SM
+cytology/M
+cytoplasm/M
+cytoplasmic
+cytosine/M
+czar/MS
+czarina/SM
+czarism
+czarist/SM
+d'Arezzo/M
+d'Estaing/M
+d/NXGJ
+dB
+dab/SM
+dabbed
+dabber/MS
+dabbing
+dabble/ZGDRS
+dabbler/M
+dace/SM
+dacha/MS
+dachshund/MS
+dactyl/MS
+dactylic/MS
+dad/SM
+dadaism/M
+dadaist/MS
+daddy/SM
+dado/M
+dadoes
+daemon/MS
+daemonic
+daffiness/M
+daffodil/SM
+daffy/PTR
+daft/PTRY
+daftness/M
+dag/S
+dagger/MS
+dago/S
+dagoes
+daguerreotype/DSMG
+dahlia/MS
+dailiness/M
+daily/PSM
+daintily
+daintiness/M
+dainty/RSMTP
+daiquiri/MS
+dairy/GSM
+dairying/M
+dairymaid/MS
+dairyman/M
+dairymen
+dairywoman/M
+dairywomen
+dais/MS
+daisy/SM
+dale/SM
+dalliance/MS
+dallier/M
+dally/ZGDRS
+dalmatian/MS
+dam/SM
+damage/MGDS
+damageable
+damaged/U
+damages/M
+damask/MDGS
+dame/SM
+dammed
+damming
+dammit
+damn/SBGMD
+damnably
+damnation/M
+damned/T
+damp/SPXZTGMDNRY
+dampen/ZGDR
+dampener/M
+damper/M
+dampness/M
+damsel/MS
+damselfly/SM
+damson/MS
+dance/MZGDRS
+dancer/M
+dancing/M
+dandelion/SM
+dander/M
+dandify/GDS
+dandle/GDS
+dandruff/M
+dandy/TRSM
+dang/SZGDR
+danger/M
+dangerous/Y
+dangle/ZGDRS
+dangler/M
+danish/MS
+dank/PTRY
+dankness/M
+danseuse/MS
+dapper/TR
+dapple/MGDS
+dare/DRSMZG
+daredevil/MS
+daredevilry/M
+darer/M
+daresay
+daring/MY
+dark/PXTMNRY
+darken/ZGDR
+darkener/M
+darkie/S
+darkness/M
+darkroom/MS
+darling/MS
+darn/SZGMDR
+darned/TR
+darner/M
+dart/SZGMDR
+dartboard/MS
+darter/M
+dash/ZGMDRS
+dashboard/SM
+dasher/M
+dashiki/MS
+dashing/Y
+dastard/MYS
+dastardliness/M
+data
+database/SM
+dataset/MS
+datatype
+date/DRSMZGV
+datebook/S
+dated/U
+dateless
+dateline/MGDS
+dater/M
+dateset
+dative/MS
+datum/M
+daub/SZGMDR
+dauber/M
+daughter/SMY
+daunt/GDS
+daunting/Y
+dauntless/YP
+dauntlessness/M
+dauphin/MS
+davenport/MS
+davit/MS
+dawdle/ZGDRS
+dawdler/M
+dawn/SGMD
+day/SM
+daybed/MS
+daybreak/M
+daycare/M
+daydream/MDRZGS
+daydreamer/M
+daylight/MS
+daylights/M
+daylong
+daytime/M
+daze/DSMG
+dazed/Y
+dazzle/MZGDRS
+dazzler/M
+dazzling/Y
+db
+dbl
+dc
+dd/SDG
+dded/K
+dding/K
+deacon/MS
+deaconess/MS
+dead/XTMNRY
+deadbeat/MS
+deadbolt/SM
+deaden/GD
+deadhead/SDG
+deadline/SM
+deadliness/M
+deadlock/GSMD
+deadly/TPR
+deadpan/MS
+deadpanned
+deadpanning
+deadwood/M
+deaf/PXTNR
+deafen/GD
+deafening/Y
+deafness/M
+deal/SJZGMR
+dealer/M
+dealership/SM
+dealing/M
+dealt
+dean/M
+deanery/SM
+deanship/M
+dear/SPTMRYH
+dearest/S
+dearness/M
+dearth/M
+dearths
+deary/SM
+death/MY
+deathbed/SM
+deathblow/MS
+deathless/Y
+deathlike
+deaths
+deathtrap/MS
+deathwatch/MS
+deaves
+deb/SM
+debacle/MS
+debarkation/M
+debarment/M
+debate/BMZR
+debater/M
+debating/M
+debauch/MDSG
+debauchee/MS
+debauchery/SM
+debenture/MS
+debilitate/DSGN
+debilitation/M
+debility/SM
+debit/D
+debonair/PY
+debonairness/M
+debouch/GDS
+debridement
+debris/M
+debt/SM
+debtor/MS
+debugger/S
+debut/GMD
+debutante/SM
+decade/MS
+decadence/M
+decadency/M
+decadent/MYS
+decaf/MS
+decaffeinate/DSG
+decagon/MS
+decal/MS
+decampment/M
+decapitate/XGNDS
+decapitator/MS
+decathlete/S
+decathlon/SM
+decay/GD
+deceased/M
+decedent/MS
+deceit/MS
+deceitful/YP
+deceitfulness/M
+deceive/UGDS
+deceiver/MS
+deceiving/Y
+decelerate/GNDS
+deceleration/M
+decelerator/SM
+decency/ISM
+decennial/SM
+decent/IY
+deception/MS
+deceptive/YP
+deceptiveness/M
+decibel/MS
+decidable/U
+decide/BZGDRS
+decided/Y
+deciduous
+decilitre/MS
+decimal/SM
+decimalization
+decimate/DSGN
+decimation/M
+decimetre/MS
+decipherable/UI
+decision/IM
+decisions
+decisive/IPY
+decisiveness/IM
+deck/SGMD
+deckchair/S
+deckhand/SM
+deckle/S
+declamation/MS
+declamatory
+declaration/MS
+declarative
+declaratory
+declare/DRSZGB
+declared/U
+declarer/M
+declension/SM
+declination/M
+decline/DRSMZG
+decliner/M
+declivity/SM
+decoherence
+decolletage/SM
+decollete
+decongestant/MS
+deconstructionism
+decor/MS
+decorate/AGNVDS
+decorating/M
+decoration/AM
+decorations
+decorative/Y
+decorator/MS
+decorous/IY
+decorousness/M
+decorum/M
+decoupage/DSMG
+decoy/GMDS
+decreasing/Y
+decree/MDS
+decreeing
+decrement/GDS
+decrepit
+decrepitude/M
+decriminalization/M
+decry/GDS
+decryption
+dedicate/AGDS
+dedication/SM
+dedicator/SM
+dedicatory
+deduce/GDS
+deducible
+deduct/GVD
+deductible/SM
+deduction/SM
+deductive/Y
+deed/GD
+deejay/MS
+deem/ASGD
+deep/SPXTMNRY
+deepen/GD
+deepfake/SM
+deepness/M
+deer/M
+deerskin/M
+deerstalker/S
+def/Z
+defacement/M
+defacer/SM
+defalcate/DSXGN
+defalcation/M
+defamation/M
+defamatory
+defame/ZGDRS
+defamer/M
+defaulter/SM
+defeat/MDRZGS
+defeated/U
+defeater/M
+defeatism/M
+defeatist/MS
+defecate/GNDS
+defecation/M
+defect/MDGVS
+defection/MS
+defective/MPYS
+defectiveness/M
+defector/MS
+defenceless/YP
+defencelessness/M
+defendant/SM
+defended/U
+defenestration/S
+defensible/I
+defensibly/I
+defensive/MYP
+defensiveness/M
+deference/M
+deferential/Y
+deferral/MS
+deferred
+deferring
+deffer
+deffest
+defiant/Y
+defibrillation
+defibrillator/S
+deficiency/SM
+deficient
+deficit/SM
+defilement/M
+definable/IU
+define/AGDS
+defined/U
+definer/MS
+definite/IYVP
+definiteness/IM
+definition/AM
+definitions
+definitive/Y
+deflate/GNDS
+deflation/M
+deflationary
+deflect/DGVS
+deflection/MS
+deflector/SM
+defogger/SM
+defoliant/SM
+defoliate/DSGN
+defoliation/M
+defoliator/MS
+deformity/SM
+defraud/DRZGS
+defrauder/M
+defrayal/M
+defrock/DG
+defroster/MS
+deft/PTRY
+deftness/M
+defunct
+defy/GDS
+deg
+degeneracy/M
+degenerate/MV
+degrade/B
+degree/MS
+dehydrator/SM
+dehydrogenase
+deicer/MS
+deification/M
+deify/NGDS
+deign/GDS
+deist/MS
+deistic
+deity/SM
+deject/GDS
+dejected/Y
+dejection/M
+delay/ZDR
+delectable
+delectably
+delectation/M
+delegate/GD
+delete/XGNDS
+deleterious
+deletion/M
+delft/M
+delftware/M
+deli/SM
+deliberate/XYVP
+deliberateness/M
+delicacy/ISM
+delicate/IY
+delicateness/M
+delicatessen/SM
+delicious/PY
+deliciousness/M
+delighted/Y
+delightful/Y
+deliminator
+delineate/GNXDS
+delineation/M
+delinquency/SM
+delinquent/SMY
+deliquesce/DSG
+deliquescent
+delirious/YP
+deliriousness/M
+delirium/SM
+deliver/ADGS
+deliverable/S
+deliverance/M
+delivered/U
+deliverer/SM
+dell/SM
+delphinium/MS
+delta/MS
+delude/GDS
+deluge/MGDS
+delusion/MS
+delusional
+delusive/Y
+deluxe
+delve/ZGDRS
+delver/M
+demagogic
+demagogically
+demagogue/SM
+demagoguery/M
+demagogy/M
+demand/GMDS
+demanding/U
+demarcate/DSGNX
+demarcation/M
+demean/GDS
+demeanour/M
+demented/Y
+dementia/M
+demesne/MS
+demigod/MS
+demigoddess/MS
+demijohn/SM
+demimondaine/SM
+demimonde/M
+demise/MGDS
+demitasse/MS
+demo/GMD
+democracy/SM
+democrat/MS
+democratic/U
+democratically
+democratization/M
+democratize/GDS
+demode
+demographer/SM
+demographic/SM
+demographically
+demographics/M
+demography/M
+demolish/DSG
+demolition/MS
+demon/MS
+demonetization/M
+demoniac
+demoniacal/Y
+demonic
+demonically
+demonize/GDS
+demonology/SM
+demonstrability
+demonstrable/I
+demonstrably
+demonstrate/XGNVDS
+demonstration/M
+demonstrative/MYSP
+demonstrativeness/M
+demonstrator/MS
+demote/GD
+demotic
+demount
+demulcent/SM
+demur/TMRS
+demure/PY
+demureness/M
+demurral/SM
+demurred
+demurrer/SM
+demurring
+den/M
+denationalization
+denaturation
+denature/DG
+dendrite/SM
+dengue/M
+deniability
+deniable/U
+denial/MS
+denier/M
+denigrate/DSGN
+denigration/M
+denim/MS
+denitrification
+denizen/MS
+denominational
+denotative
+denouement/MS
+denounce/LDSG
+denouncement/SM
+dense/PYTR
+denseness/M
+density/SM
+dent/ISGMD
+dental/Y
+dentifrice/SM
+dentine/M
+dentist/MS
+dentistry/M
+dentition/M
+denture/IMS
+denuclearize/GDS
+denudation/M
+denude/GDS
+denunciation/SM
+deny/ZGDRS
+deodorant/SM
+deodorization/M
+deodorize/DRSZG
+deodorizer/M
+departed/M
+department/MS
+departmental/Y
+departmentalization/M
+departmentalize/GDS
+departure/SM
+dependability/M
+dependable/U
+dependably
+dependence/IM
+dependency/SM
+dependent/IY
+depict/GDS
+depiction/MS
+depilatory/SM
+deplete/GNDS
+depletion/M
+deplorably
+deplore/BGDS
+deploy/ALGDS
+deployment/AM
+deployments
+deponent/MS
+deportation/MS
+deportee/MS
+deportment/M
+deposit/AGMDS
+depositor/MS
+depository/SM
+deprave/GDS
+depravity/SM
+deprecate/GNDS
+deprecating/Y
+deprecation/M
+deprecatory
+depreciate/DSGN
+depreciation/M
+depredation/SM
+depressant/SM
+depressing/Y
+depression/SM
+depressive/SM
+depressor/MS
+depressurization
+deprive/GDS
+deprogramming
+depth/M
+depths
+deputation/MS
+depute/DSG
+deputize/DSG
+deputy/SM
+derailleur/SM
+derailment/SM
+derangement/M
+derby/SM
+derelict/MS
+dereliction/M
+deride/GDS
+derision/M
+derisive/PY
+derisiveness/M
+derisory
+derivation/MS
+derivative/MS
+derive/B
+dermal
+dermatitis/M
+dermatological
+dermatologist/SM
+dermatology/M
+dermis/M
+derogate/DSGN
+derogation/M
+derogatorily
+derogatory
+derrick/SM
+derriere/SM
+derringer/SM
+derv
+dervish/MS
+desalinate/GNDS
+desalination/M
+desalinization/M
+desalinize/GDS
+descant/M
+descend/FGDS
+descendant/MS
+descendent
+descender
+describable/I
+describe/BZGDR
+describer/M
+description/SM
+descriptive/PY
+descriptiveness/M
+descriptor/S
+descry/GDS
+desecrate/DSGN
+desecration/M
+deselection
+desert/SDRZGM
+deserter/M
+desertification
+desertion/SM
+deserved/UY
+deserving/U
+desiccant/SM
+desiccate/DSGN
+desiccation/M
+desiccator/SM
+desiderata
+desideratum/M
+design/ASDG
+designate/DSGNX
+designation/M
+desirability/UM
+desirableness/M
+desirably/U
+desire/B
+desired/U
+desirous
+desist/SDG
+desk/SM
+deskill/G
+desktop/SM
+desolate/PDSYGN
+desolateness/M
+desolation/M
+despair/SMDG
+despairing/Y
+desperado/M
+desperadoes
+desperate/YNP
+desperateness/M
+desperation/M
+despicable
+despicably
+despise/DSG
+despite
+despoilment/M
+despondence/M
+despondency/M
+despondent/Y
+despotic
+despotically
+despotism/M
+dessert/SM
+dessertspoon/S
+dessertspoonful/S
+destination/SM
+destine/DSG
+destiny/SM
+destitute/N
+destitution/M
+destroy/SZGDR
+destroyer/M
+destruct/GVMDS
+destructibility/IM
+destructible/I
+destruction/M
+destructive/PY
+destructiveness/M
+desuetude/M
+desultorily
+desultory
+detach/BLGDS
+detachment/MS
+detain/LGDS
+detainee/MS
+detainment/M
+detect/SDGVB
+detectable/U
+detected/U
+detection/M
+detective/SM
+detector/SM
+detente/SMNX
+detention/M
+deter/SL
+detergent/SM
+deteriorate/DSGN
+deterioration/M
+determent/M
+determinable/I
+determinant/SM
+determinate
+determine/AGDS
+determined/U
+determinedly
+determiner/SM
+determinism/M
+deterministic
+deterministically
+deterred/U
+deterrence/M
+deterrent/MS
+deterring
+detestably
+detestation/M
+dethrone/DSLG
+dethronement/M
+detonate/GNDSX
+detonation/M
+detonator/SM
+detox/MDSG
+detoxification/M
+detoxify/DSGN
+detract/GD
+detriment/SM
+detrimental/Y
+detritus/M
+deuce/SM
+deuterium/M
+devastate/GNDS
+devastating/Y
+devastation/M
+devastator/MS
+develop/ASGDL
+developed/U
+developer/SM
+development/ASM
+developmental/Y
+deviance/M
+deviancy/M
+deviant/SM
+deviate/DSMGNX
+deviating/U
+deviation/M
+devil/SML
+devilish/YP
+devilishness/M
+devilled
+devilling
+devilment/M
+devilry/SM
+deviltry/SM
+devious/YP
+deviousness/M
+devoid
+devolution/M
+devolve/DSG
+devoted/Y
+devotee/SM
+devotion/MS
+devotional/SM
+devour/SDG
+devout/PRYT
+devoutness/M
+dew/M
+dewberry/SM
+dewclaw/SM
+dewdrop/SM
+dewiness/M
+dewlap/SM
+dewy/RTP
+dexterity/M
+dexterous/YP
+dexterousness/M
+dextrose/M
+dharma
+dhoti/SM
+dhow/MS
+diabetes/M
+diabetic/SM
+diabolic
+diabolical/Y
+diacritic/MS
+diacritical
+diadem/SM
+diaereses
+diaeresis/M
+diagnose/DSG
+diagnosis/M
+diagnostic/S
+diagnostically
+diagnostician/SM
+diagnostics/M
+diagonal/SMY
+diagram/SM
+diagrammatic
+diagrammatically
+diagrammed
+diagramming
+dial/AMDGS
+dialect/SM
+dialectal
+dialectic/SM
+dialectical
+dialectics/M
+dialing/S
+dialog
+dialogue/SM
+dialyses
+dialysis/M
+dialyzes
+diam
+diamagnetic
+diamagnetism
+diamante
+diameter/SM
+diametric
+diametrical/Y
+diamond/SM
+diamondback/MS
+diapason/SM
+diaper/SMDG
+diaphanous
+diaphragm/SM
+diaphragmatic
+diarist/SM
+diarrhea/M
+diary/SM
+diaspora/SM
+diastase/M
+diastole/M
+diastolic
+diathermy/M
+diatom/SM
+diatomic
+diatonic
+diatribe/SM
+diazepam
+dibble/DSMG
+dibs/M
+dice/GDS
+dices/I
+dicey
+dichotomous
+dichotomy/SM
+dicier
+diciest
+dick/MRXZS
+dicker/DG
+dickey/SM
+dickhead/S
+dickybird/S
+dicotyledon/MS
+dicotyledonous
+dict
+dicta
+dictate/DSMGNX
+dictation/M
+dictator/SM
+dictatorial/Y
+dictatorship/SM
+diction/M
+dictionary/SM
+dictum/M
+did/AU
+didactic
+didactically
+diddle/DRSZG
+diddler/M
+diddly
+diddlysquat
+diddums
+didgeridoo/S
+didn't
+dido/M
+didoes
+didst
+die/DSM
+dielectric/MS
+diereses
+dieresis/M
+diesel/SMDG
+diet/MDRZGS
+dietary/SM
+dieter/M
+dietetic/S
+dietetics/M
+dietitian/MS
+diff/DRZGS
+differ/DG
+difference/IM
+differences
+different/IY
+differentiable
+differential/SM
+differentiate/DSGN
+differentiated/U
+differentiation/M
+difficult/Y
+difficulty/SM
+diffidence/M
+diffident/Y
+diffract/GSD
+diffraction/M
+diffuse/DSYGNVP
+diffuseness/M
+diffusion/M
+diffusivity
+dig/SM
+digerati/M
+digest/SMDGV
+digested/U
+digestibility/M
+digestible/I
+digestion/IM
+digestions
+digestive/S
+digger/SM
+digging/S
+diggings/M
+digicam/S
+digit/SM
+digital/Y
+digitalis/M
+digitization
+digitize/GDS
+dignified/U
+dignify/DSG
+dignitary/SM
+dignity/ISM
+digraph/M
+digraphs
+digress/GVDS
+digression/MS
+dike/MGDS
+diktat/S
+dilapidated
+dilapidation/M
+dilatation/M
+dilate/DSGN
+dilation/M
+dilator/SM
+dilatory
+dildo/S
+dilemma/MS
+dilettante/SM
+dilettantish
+dilettantism/M
+diligence/M
+diligent/Y
+dill/MS
+dilly/SM
+dillydally/DSG
+diluent
+dilute/DSGNX
+diluted/U
+dilution/M
+dim/PSRY
+dime/MS
+dimension/SM
+dimensional
+dimensionless
+diminish/GDS
+diminished/U
+diminuendo/SM
+diminution/SM
+diminutive/SM
+dimity/M
+dimmed/U
+dimmer/SM
+dimmest
+dimming
+dimness/M
+dimple/DSMG
+dimply
+dimwit/SM
+dimwitted
+din/ZGSMDR
+dinar/SM
+dine/S
+diner/M
+dinette/MS
+ding/MDG
+dingbat/MS
+dinghy/SM
+dingily
+dinginess/M
+dingle/SM
+dingo/M
+dingoes
+dingus/MS
+dingy/RPT
+dink/R
+dinky/RSMT
+dinned
+dinner/SMDG
+dinnertime/M
+dinnerware/M
+dinning
+dinosaur/SM
+dint/M
+diocesan/MS
+diocese/MS
+diode/SM
+diorama/SM
+dioxide/SM
+dioxin/SM
+dip/SM
+diphtheria/M
+diphthong/SM
+diploid/SM
+diploma/SM
+diplomacy/M
+diplomat/MS
+diplomata
+diplomatic/U
+diplomatically
+diplomatist/MS
+diplopia
+dipole/SM
+dipped
+dipper/SM
+dipping
+dippy/RT
+dipso/S
+dipsomania/M
+dipsomaniac/MS
+dipstick/SM
+dipterous
+diptych/M
+diptychs
+dire/YTR
+direct/ASDGVT
+directer
+direction/IM
+directional
+directionless
+directions
+directive/SM
+directly
+directness/IM
+director/MS
+directorate/SM
+directorial
+directorship/SM
+directory/SM
+direful
+dirge/SM
+dirigible/MS
+dirk/MS
+dirndl/SM
+dirt/M
+dirtball/S
+dirtily
+dirtiness/M
+dirty/DRSTGP
+dis/M
+disable/DSGL
+disablement/M
+disambiguate/N
+disappointing/Y
+disarming/Y
+disassembly
+disastrous/Y
+disbandment/M
+disbarment/M
+disbelieving/Y
+disbursal/M
+disburse/DSGL
+disbursement/MS
+disc/M
+discern/LSDG
+discernible/I
+discernibly
+discerning/Y
+discernment/M
+discharged/U
+disciple/SM
+discipleship/M
+disciplinarian/SM
+disciplinary
+discipline/DSMG
+disciplined/U
+disclose/DSG
+disclosed/U
+disco/MG
+discography/SM
+discoloration/S
+discombobulate/DSGN
+discombobulation/M
+discomfit/DG
+discomfiture/M
+discommode/DG
+disconcerting/Y
+disconnected/PY
+disconnectedness/M
+disconsolate/Y
+discordance/M
+discordant/Y
+discotheque/SM
+discourage/LGDS
+discouragement/SM
+discouraging/Y
+discover/ASDG
+discovered/U
+discoverer/MS
+discovery/ASM
+discreet/PRYT
+discreetness/M
+discrepancy/SM
+discrepant
+discrete/PYN
+discreteness/M
+discretion/IM
+discretionary
+discriminant
+discriminate/GNDS
+discriminating/U
+discrimination/M
+discriminator/MS
+discriminatory
+discursiveness/M
+discus/MS
+discussant/SM
+discussion/SM
+disdain/SMDG
+disdainful/Y
+disembowel/SL
+disembowelled
+disembowelling
+disembowelment/M
+disfigurement/SM
+disfranchisement/M
+disgorgement/M
+disgruntle/LGDS
+disgruntlement/M
+disguise/GD
+disguised/U
+disgusted/Y
+disgusting/Y
+dish/MDSG
+dishabille/M
+disharmonious
+dishcloth/M
+dishcloths
+disheartening/Y
+dishevel/LS
+dishevelled
+dishevelling
+dishevelment/M
+dishpan/SM
+dishrag/SM
+dishtowel/MS
+dishware/M
+dishwasher/MS
+dishwater/M
+dishy
+disillusion/GLD
+disillusionment/M
+disinfectant/MS
+disinfection/M
+disinterested/PY
+disinterestedness/M
+disjointed/YP
+disjointedness/M
+disjunctive
+disjuncture
+disk/MS
+diskette/MS
+dislodge/GDS
+dismal/Y
+dismantlement/M
+dismay/SMDG
+dismayed/U
+dismember/LGD
+dismemberment/M
+dismissive/Y
+disorder/Y
+disorganization/M
+disparage/DSGL
+disparagement/M
+disparaging/Y
+disparate/Y
+dispatcher/MS
+dispel/S
+dispelled
+dispelling
+dispensary/SM
+dispensation/MS
+dispense/BZGDRS
+dispenser/M
+dispersal/M
+disperse/GNDS
+dispersion/M
+dispirit/GDS
+displeasure/M
+disposable/SM
+disposal/SM
+disposed/I
+disposition/ISM
+dispossession/M
+disproof/SM
+disproportional
+disprove/B
+disputable/I
+disputably/I
+disputant/MS
+disputation/SM
+disputatious/Y
+dispute/DRSMZGB
+disputed/U
+disputer/M
+disquiet/GSMD
+disquisition/MS
+disregardful
+disrepair/M
+disrepute/MB
+disrupt/GVSD
+disruption/SM
+disruptive/Y
+dissect/SDG
+dissed
+dissemblance/M
+dissemble/ZGDRS
+dissembler/M
+disseminate/GNDS
+dissemination/M
+dissension/SM
+dissent/SMDRZG
+dissenter/M
+dissertation/SM
+disses
+dissidence/M
+dissident/MS
+dissimilar
+dissimilitude/S
+dissing
+dissipate/GNDS
+dissipation/M
+dissociate/GNVDS
+dissociation/M
+dissoluble/I
+dissolute/YNP
+dissoluteness/M
+dissolve/AGDS
+dissolved/U
+dissonance/SM
+dissonant
+dissuade/GDS
+dissuasive
+dist
+distaff/SM
+distal/Y
+distance/DSMG
+distant/Y
+distaste/SM
+distemper/M
+distention/SM
+distillate/SMNX
+distillation/M
+distillery/SM
+distinct/IYTVP
+distincter
+distinction/SM
+distinctive/YP
+distinctiveness/M
+distinctness/IM
+distinguish/GDSB
+distinguishable/I
+distinguished/U
+distort/GDR
+distortion/MS
+distract/DG
+distracted/Y
+distraction/S
+distrait
+distraught
+distress/DG
+distressful
+distressing/Y
+distribute/AGNVDS
+distributed/U
+distribution/AM
+distributional
+distributions
+distributive/Y
+distributor's
+distributor/AS
+distributorship/S
+district's
+district/AS
+disturb/ZGSDR
+disturbance/SM
+disturbed/U
+disturber/M
+disturbing/Y
+disunion/M
+disyllabic
+ditch/MDSG
+dither/SMDRZG
+ditherer/M
+ditransitive
+ditsy
+ditto/SMDG
+ditty/SM
+ditz/MS
+diuretic/MS
+diurnal/Y
+div
+diva/MS
+divalent
+divan/SM
+dive/MZTGDRS
+diver/M
+diverge/DSG
+divergence/MS
+divergent
+diverse/XYNP
+diverseness/M
+diversification/M
+diversify/GNDS
+diversion/M
+diversionary
+diversity/SM
+divert/SDG
+diverticulitis/M
+divest/SLDG
+divestiture/MS
+divestment/M
+divide/DRSMZGB
+divided/U
+dividend/MS
+divider/M
+divination/M
+divine/DRSMYZTG
+diviner/M
+diving/M
+divinity/SM
+divisibility/IM
+divisible/I
+division/MS
+divisional
+divisive/PY
+divisiveness/M
+divisor/SM
+divorce/DSLMG
+divorcee/MS
+divorcement/MS
+divot/SM
+divulge/GDS
+divvy/DSMG
+dixieland/M
+dizzily
+dizziness/M
+dizzy/DRSPTG
+djellaba/MS
+do/SJMRHZG
+doable
+dob/S
+dobbed
+dobbin/SM
+dobbing
+doberman/MS
+dobro
+doc/SM
+docent/SM
+docile/Y
+docility/M
+dock/MDRZGS
+docket/SMDG
+dockland/S
+dockside
+dockworker/MS
+dockyard/MS
+doctor/SMDG
+doctoral
+doctorate/MS
+doctrinaire/MS
+doctrinal
+doctrine/MS
+docudrama/SM
+document/GMDS
+documentary/SM
+documentation/SM
+documented/U
+dodder/SMDG
+doddery
+doddle
+dodge/DRSMZG
+dodgem/S
+dodger/M
+dodgy/RT
+dodo/MS
+doe/SM
+doer/M
+does/AU
+doeskin/MS
+doesn't
+doff/DGS
+dog/SM
+dogcart/SM
+dogcatcher/SM
+doge/MS
+dogeared
+dogfight/SM
+dogfish/MS
+dogged/PY
+doggedness/M
+doggerel/M
+dogging
+doggone/TGRS
+doggy/RSMT
+doghouse/SM
+dogie/SM
+dogleg/SM
+doglegged
+doglegging
+doglike
+dogma/SM
+dogmatic
+dogmatically
+dogmatism/M
+dogmatist/SM
+dognapper
+dogsbody/S
+dogsled/S
+dogtrot/MS
+dogtrotted
+dogtrotting
+dogwood/MS
+doily/SM
+doing/USM
+doldrums/M
+dole's
+dole/FGDS
+doleful/YP
+dolefulness/M
+doll/MDGS
+dollar/SM
+dollhouse/SM
+dollop/SGMD
+dolly/SM
+dolmen/SM
+dolomite/M
+dolorous/Y
+dolour/M
+dolphin/MS
+dolt/MS
+doltish/YP
+doltishness/M
+domain/SM
+dome/MGDS
+domestic/SM
+domestically
+domesticate/DSGN
+domesticated/U
+domestication/M
+domesticity/M
+domicile/DSMG
+domiciliary
+dominance/M
+dominant/SMY
+dominate/DSGN
+domination/M
+dominatrices
+dominatrix/M
+domineer/SGD
+domineering/Y
+dominion/SM
+domino/M
+dominoes
+don't
+don/SM
+dona/MS
+donate/DSXGN
+donation/M
+done/FAU
+dong/MDGS
+dongle/SM
+donkey/SM
+donned
+donning
+donnish
+donnybrook/MS
+donor/SM
+donuts
+doodad/SM
+doodah
+doodahs
+doodle/DRSMZG
+doodlebug/SM
+doodler/M
+doohickey/SM
+doolally
+doom/MDGS
+doomsayer/MS
+doomsday/M
+doomster/S
+door's
+door/IS
+doorbell/MS
+doorjamb/S
+doorkeeper/MS
+doorknob/MS
+doorknocker/S
+doorman/M
+doormat/SM
+doormen
+doorplate/SM
+doorpost/S
+doorstep/MS
+doorstepped
+doorstepping
+doorstop/MS
+doorway/SM
+dooryard/MS
+dopa/M
+dopamine
+dope/MZGDRS
+doper/M
+dopey
+dopier
+dopiest
+dopiness/M
+doping/M
+doppelganger/S
+dork/MS
+dorky/RT
+dorm/MRZS
+dormancy/M
+dormant
+dormer/M
+dormice
+dormitory/SM
+dormouse/M
+dorsal/Y
+dory/SM
+dosage/SM
+dose/MGDS
+dosh
+dosimeter/SM
+doss/DRSZG
+dosshouse/S
+dossier/MS
+dost
+dot/ZGSMDR
+dotage/M
+dotard/SM
+dotcom/SM
+dote/S
+doter/M
+doting/Y
+dotted
+dotting
+dotty/RT
+double's
+double/ADSG
+doubleheader/MS
+doublespeak/M
+doublet/MS
+doubloon/SM
+doubly
+doubt/SMDRZG
+doubter/M
+doubtful/PY
+doubtfulness/M
+doubting/Y
+doubtless/Y
+douche/DSMG
+dough/M
+doughnut/SM
+doughty/RT
+doughy/TR
+dour/RYTP
+dourness/M
+douse/DSG
+dove/MS
+dovecot/S
+dovecote/SM
+dovetail/MDSG
+dovish
+dowager/MS
+dowdily
+dowdiness/M
+dowdy/RSPT
+dowel/SM
+dowelled
+dowelling
+dower/SMDG
+down/MDRZGS
+downbeat/SM
+downcast
+downdraft/MS
+downer/M
+downfall/SMN
+downfield
+downgrade/DSMG
+downhearted/PY
+downheartedness/M
+downhill/MS
+download/MDBSG
+downmarket
+downplay/DSG
+downpour/MS
+downrange
+downright
+downriver
+downscale
+downshift/SGD
+downside/MS
+downsize/GDS
+downsizing/M
+downspout/MS
+downstage
+downstairs/M
+downstate/M
+downstream
+downswing/MS
+downtempo
+downtime/M
+downtown/M
+downtrend/MS
+downtrodden
+downturn/MS
+downward/S
+downwind
+downy/RT
+dowry/SM
+dowse/DRSZG
+dowser/M
+doxology/SM
+doyen/SM
+doyenne/MS
+doz/XGDNS
+doze/M
+dozen/MH
+dozily
+dozy/RTP
+dpi
+dpt
+drab/MYSP
+drabber
+drabbest
+drabness/M
+drachma/MS
+draconian
+draft's
+draft/ASDG
+draftee/SM
+drafter/SM
+draftily
+draftiness/M
+drafting/M
+draftsman/M
+draftsmanship/M
+draftsmen
+draftswoman/M
+draftswomen
+drafty/RTP
+drag/MS
+dragged
+dragging
+draggy/TR
+dragnet/SM
+dragon/SM
+dragonfly/SM
+dragoon/SMDG
+dragster/S
+drain/SMDRZG
+drainage/M
+drainboard/SM
+drainer/M
+drainpipe/MS
+drake/SM
+dram/MS
+drama/SM
+dramatic/S
+dramatically
+dramatics/M
+dramatist/SM
+dramatization/SM
+dramatize/DSG
+drank
+drape/DRSMZG
+draper/M
+drapery/SM
+drastic
+drastically
+drat
+dratted
+draughtboard/S
+draw/MRZGSJ
+drawback/MS
+drawbridge/MS
+drawer/M
+drawing/M
+drawl/SMDG
+drawn/A
+drawstring/MS
+dray/MS
+dread/SMDG
+dreadful/PY
+dreadfulness/M
+dreadlocks/M
+dreadnought/MS
+dream/SMDRZG
+dreamboat/MS
+dreamed/U
+dreamer/M
+dreamily
+dreaminess/M
+dreamland/M
+dreamless
+dreamlike
+dreamt
+dreamworld/SM
+dreamy/RPT
+drear
+drearily
+dreariness/M
+dreary/RPT
+dredge/DRSMZG
+dredger/M
+dregs/M
+drench/GDS
+dress/AUGSDM
+dressage/M
+dresser/MS
+dressiness/M
+dressing/SM
+dressmaker/SM
+dressmaking/M
+dressy/TPR
+drew/A
+dribble/MZGDRS
+dribbler/M
+driblet/MS
+drier/M
+drift/SMDRZG
+drifter/M
+driftnet/S
+driftwood/M
+drill/SMDRZG
+driller/M
+drillmaster/SM
+drink/SMRBJZG
+drinkable/U
+drinker/M
+drip/MS
+dripped
+dripping/SM
+drippy/TR
+drive/RSMZGJ
+drivel/SM
+drivelled
+driveller/SM
+drivelling
+driven
+driver/M
+driveshaft/SM
+driveway/MS
+drizzle/MGDS
+drizzly
+drogue/SM
+droid/S
+droll/RPT
+drollery/SM
+drollness/M
+drolly
+dromedary/SM
+drone/DSMG
+drool/SMDG
+droop/GSMD
+droopiness/M
+droopy/TPR
+drop/MS
+dropkick/MS
+droplet/SM
+dropout/SM
+dropped
+dropper/SM
+dropping/S
+droppings/M
+dropsical
+dropsy/M
+dross/M
+drought/SM
+drove/RSMZ
+drover/M
+drown/GSJD
+drowning/M
+drowse/MGDS
+drowsily
+drowsiness/M
+drowsy/RTP
+drub/S
+drubbed
+drubber/SM
+drubbing/MS
+drudge/MGDS
+drudgery/M
+drug/MS
+drugged
+druggie/SM
+drugging
+druggist/SM
+druggy
+drugstore/MS
+druid/SM
+druidism/M
+drum/MS
+drumbeat/SM
+drumlin/SM
+drummed
+drummer/SM
+drumming
+drumstick/SM
+drunk/STMNR
+drunkard/MS
+drunken/PY
+drunkenness/M
+drupe/SM
+druthers/M
+dry/ZTGDRSMY
+dryad/SM
+dryer/SM
+dryness/M
+drys
+drywall/M
+dual
+dualism/M
+duality/M
+dub/SM
+dubbed
+dubber/SM
+dubbin/M
+dubbing
+dubiety/M
+dubious/YP
+dubiousness/M
+ducal
+ducat/SM
+duchess/MS
+duchy/SM
+duck/MDGS
+duckbill/SM
+duckboards
+duckling/SM
+duckpins/M
+duckweed/M
+ducky/TRSM
+duct's/K
+duct/CKIFS
+ductile
+ductility/M
+ducting
+ductless
+dud/GSMD
+dude/MS
+dudgeon/M
+due/SM
+duel/MS
+duelled
+dueller/SM
+duelling/S
+duellist/SM
+duenna/MS
+duet/MS
+duff/MDRZGS
+duffer/M
+dug
+dugout/MS
+duh
+duke/MS
+dukedom/SM
+dulcet
+dulcimer/MS
+dull/DRPTGS
+dullard/SM
+dullness/M
+dully
+duly/U
+dumb/RYPT
+dumbbell/SM
+dumbfound/SDG
+dumbness/M
+dumbo/S
+dumbstruck
+dumbwaiter/SM
+dumdum/MS
+dummy/SM
+dump/MDRZGS
+dumpiness/M
+dumpling/SM
+dumpsite/S
+dumpster/SM
+dumpy/PTR
+dun/SM
+dunce/SM
+dunderhead/MS
+dune/MS
+dung/MDGS
+dungaree/MS
+dungeon/SM
+dunghill/MS
+dunk/MDGS
+dunned
+dunner
+dunnest
+dunning
+dunno
+duo/SM
+duodecimal
+duodena
+duodenal
+duodenum/M
+duopoly/S
+dupe/MZGDRS
+duper/M
+duple
+duplex/MS
+duplicate's
+duplicate/AGNDS
+duplication/AM
+duplicator/MS
+duplicitous
+duplicity/M
+durability/M
+durable
+durably
+durance/M
+duration/M
+duress/M
+during
+durst
+durum/M
+dusk/M
+duskiness/M
+dusky/RTP
+dust/MDRZGS
+dustbin/SM
+dustcart/S
+duster/M
+dustiness/M
+dustless
+dustman
+dustmen
+dustpan/SM
+dustsheet/S
+dusty/RTP
+dutch
+duteous/Y
+dutiable
+dutiful/YP
+dutifulness/M
+duty/SM
+duvet/SM
+dwarf/SGMD
+dwarfish
+dwarfism/M
+dweeb/SM
+dwell/SJZGR
+dweller/M
+dwelling/M
+dwelt/I
+dwindle/DSG
+dyadic
+dybbuk/SM
+dybbukim
+dye/DRSMZG
+dyeing/A
+dyer/M
+dyestuff/M
+dying/M
+dyke/MS
+dynamic/MS
+dynamical/Y
+dynamics/M
+dynamism/M
+dynamite/MZGDRS
+dynamiter/M
+dynamo/SM
+dynastic
+dynasty/SM
+dysentery/M
+dysfunction/MS
+dysfunctional
+dyslectic/SM
+dyslexia/M
+dyslexic/SM
+dyspepsia/M
+dyspeptic/MS
+dysphagia
+dysphoria
+dysphoric
+dysprosium/M
+dystonia
+dystopi
+dystopia
+dystopian
+dz
+e'en
+e'er
+e/FDST
+eBay/M
+eMusic/M
+ea
+each
+eager/PTRY
+eagerness/M
+eagle/MS
+eaglet/MS
+ear/SMDY
+earache/SM
+earbud/SM
+eardrum/SM
+earful/SM
+earl/MS
+earldom/SM
+earliness/M
+earlobe/SM
+early/RTP
+earmark/SMDG
+earmuff/SM
+earn/DRZTGJS
+earned/U
+earner/M
+earnest/SMYP
+earnestness/M
+earnings/M
+earphone/MS
+earpiece/S
+earplug/SM
+earring/SM
+earshot/M
+earsplitting
+earth's
+earth/UDYG
+earthbound
+earthen
+earthenware/M
+earthiness/M
+earthling/MS
+earthly/RT
+earthquake/SM
+earths/U
+earthshaking
+earthward/S
+earthwork/MS
+earthworm/MS
+earthy/RTP
+earwax/M
+earwig/SM
+ease/EDSM
+easel/SM
+easement/SM
+easily/U
+easiness/UM
+easing
+east/M
+eastbound
+easterly/SM
+eastern/ZR
+easterner/M
+easternmost
+eastward/S
+easy/URTP
+easygoing
+eat/ZGBSNR
+eatable/SM
+eaten/U
+eater/M
+eatery/SM
+eave/MS
+eavesdrop/S
+eavesdropped
+eavesdropper/SM
+eavesdropping
+ebb/SMDG
+ebony/SM
+ebullience/M
+ebullient/Y
+ebullition/M
+eccentric/SM
+eccentrically
+eccentricity/SM
+eccl
+ecclesial
+ecclesiastic/SM
+ecclesiastical/Y
+echelon/SM
+echidna
+echinoderm/SM
+echo's
+echo/ADG
+echoes/A
+echoic
+echolocation/M
+echos
+eclair/SM
+eclat/M
+eclectic/SM
+eclectically
+eclecticism/M
+eclipse/DSMG
+ecliptic/M
+eclogue/SM
+ecocide/M
+ecol
+ecologic
+ecological/Y
+ecologist/MS
+ecology/M
+econ
+econometric/S
+economic/S
+economical/UY
+economics/M
+economist/SM
+economize/DRSZG
+economizer/M
+economy/SM
+ecosystem/MS
+ecotourism/M
+ecotourist/MS
+ecru/M
+ecstasy/SM
+ecstatic
+ecstatically
+ecu
+ecumenical/Y
+ecumenicism/M
+ecumenism/M
+eczema/M
+ed/ACSM
+edamame
+eddy/DSMG
+edelweiss/M
+edema/SM
+edge/MZGJDRS
+edger/M
+edgewise
+edgily
+edginess/M
+edging/M
+edgy/RTP
+edibility/M
+edible/SMP
+edibleness/M
+edict/SM
+edification/M
+edifice/SM
+edifier/M
+edify/DRSZGN
+edifying/U
+edit's
+edit/ADGS
+editable
+edited/U
+edition/MS
+editor/SM
+editorial/SMY
+editorialize/DSG
+editorship/M
+educ
+educability/M
+educable/I
+educate/ADSGNV
+educated/U
+education/AM
+educational/Y
+educationalist/S
+educationist/S
+educations
+educator/MS
+educe/DSGB
+edutainment/M
+eek
+eel/SM
+eerie/RT
+eerily
+eeriness/M
+eff/GSD
+efface/DSLG
+effacement/M
+effect/SMDGV
+effective/IPY
+effectiveness/IM
+effectual/IY
+effectuate/DSG
+effeminacy/M
+effeminate/Y
+effendi/SM
+efferent
+effervesce/GDS
+effervescence/M
+effervescent/Y
+effete/YP
+effeteness/M
+efficacious/Y
+efficacy/IM
+efficiency/ISM
+efficient/IY
+effigy/SM
+efflorescence/M
+efflorescent
+effluence/M
+effluent/MS
+effluvia
+effluvium/M
+efflux
+effort/SM
+effortful
+effortless/YP
+effortlessness/M
+effrontery/M
+effulgence/M
+effulgent
+effuse/DSGNVX
+effusion/M
+effusive/YP
+effusiveness/M
+egad
+egalitarian/SM
+egalitarianism/M
+egg/GSMD
+eggbeater/MS
+eggcup/SM
+egghead/SM
+eggnog/M
+eggplant/MS
+eggshell/SM
+eglantine/SM
+ego/SM
+egocentric/MS
+egocentrically
+egocentricity/M
+egoism/M
+egoist/SM
+egoistic
+egoistical/Y
+egomania/M
+egomaniac/MS
+egotism/M
+egotist/SM
+egotistic
+egotistical/Y
+egregious/PY
+egregiousness/M
+egress/MS
+egret/SM
+eh
+eider/SM
+eiderdown/MS
+eigenvalue/S
+eigenvector/S
+eight/SM
+eighteen/MHS
+eighteenth/M
+eighteenths
+eighth/M
+eighths
+eightieth/M
+eightieths
+eighty/SMH
+einsteinium/M
+eisteddfod/S
+either
+ejaculate/GNXDS
+ejaculation/M
+ejaculatory
+eject/SDG
+ejection/MS
+ejector/SM
+eke/DSG
+elaborate/YGNDSPX
+elaborateness/M
+elaboration/M
+elan/M
+eland/SM
+elapse/DSG
+elastic/MS
+elastically
+elasticated
+elasticity/M
+elasticize/DSG
+elate/DSGN
+elated/Y
+elation/M
+elbow/SMDG
+elbowroom/M
+elder/SMY
+elderberry/SM
+eldercare/M
+eldest
+eldritch
+elect's
+elect/ASDGV
+electable
+election/AMS
+electioneer/DGS
+elective/MS
+elector/MS
+electoral/Y
+electorate/MS
+electric/S
+electrical/Y
+electrician/MS
+electricity/M
+electrification/M
+electrifier/M
+electrify/ZGNDRS
+electrocardiogram/MS
+electrocardiograph/M
+electrocardiographs
+electrocardiography/M
+electrocute/DSXGN
+electrocution/M
+electrode/SM
+electrodynamics
+electroencephalogram/MS
+electroencephalograph/M
+electroencephalographic
+electroencephalographs
+electroencephalography/M
+electrologist/SM
+electrolysis/M
+electrolyte/MS
+electrolytic
+electromagnet/MS
+electromagnetic
+electromagnetically
+electromagnetism/M
+electromotive
+electron/MS
+electronic/S
+electronica/M
+electronically
+electronics/M
+electroplate/DSG
+electroscope/SM
+electroscopic
+electroshock/M
+electrostatic/S
+electrostatics/M
+electrotype/MS
+electroweak
+eleemosynary
+elegance/IM
+elegant/IY
+elegiac/MS
+elegiacal
+elegy/SM
+elem
+element/MS
+elemental/Y
+elementary
+elephant/SM
+elephantiasis/M
+elephantine
+elev
+elevate/XDSGN
+elevation/M
+elevator/MS
+eleven/SMH
+elevens/S
+eleventh/M
+elevenths
+elf/M
+elfin
+elfish
+elicit/SDG
+elicitation/M
+elide/DSG
+eligibility/IM
+eligible
+eliminate/XDSGN
+elimination/M
+eliminator/S
+elision/MS
+elite/SM
+elitism/M
+elitist/MS
+elixir/SM
+elk/SM
+ell/SM
+ellipse/MS
+ellipsis/M
+ellipsoid/SM
+ellipsoidal
+elliptic
+elliptical/Y
+elm/SM
+elocution/M
+elocutionary
+elocutionist/SM
+elodea/SM
+elongate/DSGNX
+elongation/M
+elope/DSGL
+elopement/MS
+eloquence/M
+eloquent/Y
+else
+elsewhere
+elucidate/DSGNX
+elucidation/M
+elude/DSG
+elusive/YP
+elusiveness/M
+elver/SM
+elves
+elvish
+em's
+em/S
+emaciate/GNDS
+emaciation/M
+email/SMDG
+emanate/XDSGN
+emanation/M
+emancipate/DSGN
+emancipation/M
+emancipator/MS
+emasculate/GNDS
+emasculation/M
+embalm/SZGDR
+embalmer/M
+embank/SLGD
+embankment/SM
+embargo/MDG
+embargoes
+embark/AEGDS
+embarkation/EM
+embarkations
+embarrass/GLDS
+embarrassed/U
+embarrassing/Y
+embarrassment/SM
+embassy/SM
+embattled
+embed/S
+embedded
+embedding
+embellish/LGDS
+embellishment/SM
+ember/SM
+embezzle/ZGLDRS
+embezzlement/M
+embezzler/M
+embitter/GLDS
+embitterment/M
+emblazon/GDLS
+emblazonment/M
+emblem/SM
+emblematic
+emblematically
+embodiment/EM
+embody/AEGSD
+embolden/DGS
+embolism/MS
+embolization
+emboss/DRSZG
+embosser/M
+embouchure/M
+embower/SGD
+embrace/DSMG
+embraceable
+embrasure/MS
+embrocation/MS
+embroider/SDRZG
+embroiderer/M
+embroidery/SM
+embroil/DGLS
+embroilment/M
+embryo/SM
+embryological
+embryologist/MS
+embryology/M
+embryonic
+emcee/DSM
+emceeing
+emend/SDG
+emendation/MS
+emerald/MS
+emerge/ADSG
+emergence/AM
+emergency/SM
+emergent
+emerita
+emeritus
+emery/M
+emetic/SM
+emf/S
+emigrant/SM
+emigrate/DSXGN
+emigration/M
+emigre/SM
+eminence/MS
+eminent/Y
+emir/MS
+emirate/MS
+emissary/SM
+emission/SM
+emit/S
+emitted
+emitter/MS
+emitting
+emo/SM
+emoji/SM
+emollient/MS
+emolument/MS
+emote/XDSGNV
+emoticon/SM
+emotion/M
+emotional/UY
+emotionalism/M
+emotionalize/GDS
+emotionless
+emotive/Y
+empanel/S
+empanelled
+empanelling
+empathetic
+empathically
+empathize/DSG
+empathy/M
+emperor/MS
+emphases
+emphasis/M
+emphasize/AGDS
+emphatic/U
+emphatically
+emphysema/M
+empire/SM
+empiric
+empirical/Y
+empiricism/M
+empiricist/SM
+emplacement/SM
+employ's
+employ/ADGLS
+employable/U
+employee/SM
+employer/SM
+employment/UAM
+employments
+emporium/SM
+empower/SDGL
+empowerment/M
+empress/MS
+emptily
+emptiness/M
+empty/TGPDRSM
+empyrean/M
+emu/SM
+emulate/DSGNVX
+emulation/M
+emulator/SM
+emulsification/M
+emulsifier/M
+emulsify/NDRSZG
+emulsion/MS
+en/SM
+enable/DRSZG
+enabler/M
+enact/ASLDG
+enactment/ASM
+enamel/SM
+enamelled
+enameller/SM
+enamelling/S
+enamelware/M
+enamour/DGS
+enc
+encamp/LSGD
+encampment/MS
+encapsulate/XGNDS
+encapsulation/M
+encase/LDSG
+encasement/M
+encephalitic
+encephalitis/M
+enchain/DGS
+enchant/ELDGS
+enchanter/MS
+enchanting/Y
+enchantment/EM
+enchantments
+enchantress/MS
+enchilada/SM
+encipher/SGD
+encircle/DSGL
+encirclement/M
+encl
+enclave/MS
+enclose/GDS
+enclosed/U
+enclosure/SM
+encode/DRSZG
+encoder/M
+encomium/MS
+encompass/GDS
+encore/DSMG
+encounter/GSMD
+encourage/DSLG
+encouragement/SM
+encouraging/Y
+encroach/GLDS
+encroachment/SM
+encrust/DGS
+encrustation/SM
+encrypt/DGS
+encryption
+encumber/EGSD
+encumbered/U
+encumbrance/MS
+ency
+encyclical/SM
+encyclopedia/MS
+encyclopedic
+encyst/LSGD
+encystment/M
+end/GVSJMD
+endanger/SGDL
+endangerment/M
+endear/SGLD
+endearing/Y
+endearment/SM
+endeavour/MDSG
+endemic/MS
+endemically
+endgame/S
+ending/M
+endive/SM
+endless/PY
+endlessness/M
+endmost
+endocarditis
+endocrine/MS
+endocrinologist/MS
+endocrinology/M
+endogenous/Y
+endometrial
+endometriosis
+endometrium
+endorphin/MS
+endorse/LZGDRS
+endorsement/MS
+endorser/M
+endoscope/MS
+endoscopic
+endoscopy/M
+endothelial
+endothermic
+endotracheal
+endow/SDLG
+endowment/MS
+endpoint/SM
+endue/DSG
+endurable/U
+endurance/M
+endure/DSBG
+endways
+enema/SM
+enemy/SM
+energetic
+energetically
+energize/ZGDRS
+energizer/M
+energy/SM
+enervate/GNDS
+enervation/M
+enfeeble/GDSL
+enfeeblement/M
+enfilade/DSMG
+enfold/SGD
+enforce/LZGDRS
+enforceable/U
+enforced/U
+enforcement/M
+enforcer/M
+enfranchise/EGDSL
+enfranchisement/EM
+engage/EADSG
+engagement/EMS
+engagingly
+engender/SGD
+engine/SM
+engineer/MDGS
+engineering/M
+engorge/LGDS
+engorgement/M
+engram/SM
+engrave/ZGJDRS
+engraver/M
+engraving/M
+engross/GLDS
+engrossment/M
+engulf/SLGD
+engulfment/M
+enhance/LZGDRS
+enhancement/SM
+enigma/SM
+enigmatic
+enigmatically
+enjambment/SM
+enjoin/SGD
+enjoy/GBLSD
+enjoyably
+enjoyment/SM
+enlarge/LZGDRS
+enlargeable
+enlargement/MS
+enlarger/M
+enlighten/SGLD
+enlightened/U
+enlightenment/M
+enlist/ADGSL
+enlistee/SM
+enlistment/AM
+enlistments
+enliven/SLDG
+enlivenment/M
+enmesh/DSGL
+enmeshment/M
+enmity/SM
+ennoble/DSGL
+ennoblement/M
+ennui/M
+enormity/SM
+enormous/PY
+enormousness/M
+enough/M
+enplane/DSG
+enqueue/DS
+enquirer/S
+enquiringly
+enrage/GDS
+enrapture/DSG
+enrich/DSLG
+enrichment/M
+enrol/SL
+enrolled
+enrolling
+enrolment/SM
+ensconce/DSG
+ensemble/SM
+enshrine/GLDS
+enshrinement/M
+enshroud/DGS
+ensign/MS
+ensilage/M
+enslave/DSGL
+enslavement/M
+ensnare/DSLG
+ensnarement/M
+ensue/DSG
+ensure/ZGDRS
+ensurer/M
+entail/DSGL
+entailment/M
+entangle/EDSLG
+entanglement/EM
+entanglements
+entente/SM
+enter/ASGD
+enteral
+enteric
+enteritis/M
+enterprise/MGS
+enterprising/Y
+entertain/ZGDRSL
+entertainer/M
+entertaining/MY
+entertainment/MS
+enthrall/GDSL
+enthrallment/M
+enthrone/GDSL
+enthronement/SM
+enthuse/DSG
+enthusiasm/MS
+enthusiast/MS
+enthusiastic/U
+enthusiastically
+entice/GDSL
+enticement/MS
+enticing/Y
+entire/Y
+entirety/M
+entitle/DSGL
+entitlement/SM
+entity/SM
+entomb/DSGL
+entombment/M
+entomological
+entomologist/MS
+entomology/M
+entourage/SM
+entr'acte
+entrails/M
+entrained
+entrance/LDSMG
+entrancement/M
+entrancing/Y
+entrant/SM
+entrap/LS
+entrapment/M
+entrapped
+entrapping
+entreat/GSD
+entreating/Y
+entreaty/SM
+entree/MS
+entrench/DSGL
+entrenchment/MS
+entrepreneur/SM
+entrepreneurial
+entrepreneurship
+entropy/M
+entrust/SGD
+entry/ASM
+entryphone/S
+entryway/MS
+entwine/DSG
+enumerable
+enumerate/DSGNX
+enumeration/M
+enumerator/SM
+enunciate/DSGN
+enunciation/M
+enuresis/M
+envelop/SLDRZG
+envelope/SM
+enveloper/M
+envelopment/M
+envenom/SDG
+enviable/U
+enviably
+envious/PY
+enviousness/M
+environment/MS
+environmental/Y
+environmentalism/M
+environmentalist/SM
+environs/M
+envisage/GDS
+envision/DGS
+envoy/SM
+envy/DSMG
+envying/Y
+enzymatic
+enzyme/SM
+eolian
+eon/SM
+eosinophil/S
+eosinophilic
+epaulette/MS
+epee/MS
+ephedrine/M
+ephemera/M
+ephemeral/Y
+epic/MS
+epicentre/MS
+epicure/SM
+epicurean/MS
+epidemic/SM
+epidemically
+epidemiological
+epidemiologist/SM
+epidemiology/M
+epidermal
+epidermic
+epidermis/MS
+epidural/S
+epiglottis/MS
+epigram/SM
+epigrammatic
+epigraph/M
+epigraphs
+epigraphy/M
+epilepsy/M
+epileptic/SM
+epilogue/MS
+epinephrine/M
+epiphany/SM
+episcopacy/M
+episcopal
+episcopate/M
+episode/SM
+episodic
+episodically
+epistemic
+epistemological
+epistemology
+epistle/SM
+epistolary
+epitaph/M
+epitaphs
+epithelial
+epithelium/M
+epithet/SM
+epitome/SM
+epitomize/GDS
+epoch/M
+epochal
+epochs
+eponymous
+epoxy/DSMG
+epsilon/SM
+equability/M
+equable
+equably
+equal/SMY
+equality/IM
+equalization/M
+equalize/ZGDRS
+equalizer/M
+equalled/U
+equalling
+equanimity/M
+equate/DSGNBX
+equation/M
+equator/SM
+equatorial
+equerry/SM
+equestrian/SM
+equestrianism/M
+equestrienne/SM
+equidistant/Y
+equilateral/SM
+equilibrium/EM
+equine/SM
+equinoctial
+equinox/MS
+equip/AS
+equipage/MS
+equipment/M
+equipoise/M
+equipped/UA
+equipping/A
+equitable/I
+equitably/I
+equitation/M
+equity/ISM
+equiv
+equivalence/MS
+equivalency/SM
+equivalent/MYS
+equivocal/UY
+equivocalness/M
+equivocate/GNXDS
+equivocation/M
+equivocator/SM
+er/C
+era/SM
+eradicable/I
+eradicate/DSGN
+eradication/M
+eradicator/MS
+erase/DRSBZG
+eraser/M
+erasure/SM
+erbium/M
+ere
+erect/PSGDY
+erectile
+erection/SM
+erectness/M
+erector/MS
+erelong
+eremite/MS
+erg/SM
+ergo
+ergonomic/S
+ergonomically
+ergonomics/M
+ergosterol/M
+ergot/M
+ermine/SM
+erode/DSG
+erodible
+erogenous
+erosion/M
+erosive
+erotic/S
+erotica/M
+erotically
+eroticism/M
+err/GSD
+errand/SM
+errant/I
+errata/SM
+erratic
+erratically
+erratum/M
+erroneous/Y
+error/SM
+ersatz/MS
+erst
+erstwhile
+eruct/SDG
+eructation/SM
+erudite/YN
+erudition/M
+erupt/SDGV
+eruption/MS
+erysipelas/M
+erythrocyte/SM
+erythromycin
+escalate/CDSGN
+escalation/CM
+escalations
+escalator/MS
+escallop/SGMD
+escalope/S
+escapade/MS
+escape/LMGDS
+escapee/MS
+escapement/SM
+escapism/M
+escapist/MS
+escapologist/S
+escapology
+escargot/MS
+escarole/MS
+escarpment/MS
+eschatological
+eschatology
+eschew/SDG
+escort/SMDG
+escritoire/MS
+escrow/SM
+escudo/SM
+escutcheon/SM
+esophageal
+esophagi
+esophagus's
+esoteric
+esoterically
+esp
+espadrille/MS
+espalier/MDSG
+especial/Y
+espionage/M
+esplanade/MS
+espousal/M
+espouse/GDS
+espresso/MS
+esprit/M
+espy/DSG
+esquire/SM
+essay/SMDRZG
+essayer/M
+essayist/SM
+essence/SM
+essential/IMS
+essentially
+establish/AESDGL
+establishment/AEM
+establishments
+estate/SM
+esteem/ESMDG
+ester/SM
+estimable/I
+estimate/MGNDSX
+estimation/M
+estimator/SM
+estoppel
+estrange/LDSG
+estrangement/MS
+estrogen/MS
+estrous
+estrus/MS
+estuary/SM
+eta/SM
+etc
+etch/DRSZGJ
+etcher/M
+etching/M
+eternal/YP
+eternalness/M
+eternity/SM
+ethane/M
+ethanol/M
+ether/M
+ethereal/Y
+ethic/SM
+ethical/UY
+ethics/M
+ethmoid
+ethnic/SM
+ethnically
+ethnicity/M
+ethnocentric
+ethnocentrism/M
+ethnographer/S
+ethnographic
+ethnographically
+ethnography
+ethnological/Y
+ethnologist/SM
+ethnology/M
+ethological
+ethologist/MS
+ethology/M
+ethos/M
+ethyl/M
+ethylene/M
+etiolated
+etiologic
+etiological
+etiology/SM
+etiquette/M
+etude/SM
+etymological/Y
+etymologist/SM
+etymology/SM
+eucalypti
+eucalyptus/MS
+euchre/DSMG
+euclidean
+eugenic/S
+eugenically
+eugenicist/MS
+eugenics/M
+eukaryote/SM
+eukaryotic
+eulogist/MS
+eulogistic
+eulogize/ZGDRS
+eulogizer/M
+eulogy/SM
+eunuch/M
+eunuchs
+euphemism/SM
+euphemistic
+euphemistically
+euphonious/Y
+euphony/M
+euphoria/M
+euphoric
+euphorically
+eureka
+euro/MS
+europium/M
+eutectic
+euthanasia/M
+euthanize/DSG
+euthenics/M
+eutrophication
+evacuate/XDSGN
+evacuation/M
+evacuee/MS
+evade/DRSZG
+evader/M
+evaluate/AGNVDSX
+evaluation/AM
+evaluator/S
+evanescence/M
+evanescent
+evangelic
+evangelical/SMY
+evangelicalism/M
+evangelism/M
+evangelist/MS
+evangelistic
+evangelize/GDS
+evaporate/GNDS
+evaporation/M
+evaporator/SM
+evasion/SM
+evasive/YP
+evasiveness/M
+eve/ASM
+even/MDRYTGSJP
+evenhanded/Y
+evening/M
+evenness/UM
+evensong/M
+event/SM
+eventful/UY
+eventfulness/M
+eventide/M
+eventual/Y
+eventuality/SM
+eventuate/GDS
+ever
+everglade/SM
+evergreen/SM
+everlasting/MYS
+evermore
+every
+everybody/M
+everyday
+everyone/M
+everyplace
+everything/M
+everywhere
+evict/SDG
+eviction/MS
+evidence/MGDS
+evident/Y
+evil/MRYTSP
+evildoer/SM
+evildoing/M
+eviller
+evillest
+evilness/M
+evince/DSG
+eviscerate/DSGN
+evisceration/M
+evocation/MS
+evocative/Y
+evoke/DSG
+evolution/M
+evolutionary
+evolutionist/SM
+evolve/DSG
+ewe/RSMZ
+ewer/M
+ex/MS
+exabyte/MS
+exacerbate/GNDS
+exacerbation/M
+exact/SPDRYTG
+exacting/Y
+exaction/M
+exactitude/M
+exactness/IM
+exaggerate/XDSGN
+exaggerated/Y
+exaggeration/M
+exaggerator/MS
+exajoule/S
+exalt/SDG
+exaltation/M
+exam/MS
+examination/AMS
+examine/AGDS
+examiner/MS
+example/MGDS
+exampled/U
+exasperate/DSGN
+exasperated/Y
+exasperating/Y
+exasperation/M
+excavate/GNDSX
+excavation/M
+excavator/SM
+exceed/GSD
+exceeding/Y
+excel/S
+excelled
+excellence/M
+excellency/SM
+excellent/Y
+excelling
+excelsior/M
+except/GSD
+exception/BSM
+exceptionable/U
+exceptional/UY
+exceptionalism
+excerpt/MDGS
+excess/VMS
+excessive/Y
+exchange/DSMG
+exchangeable
+exchequer/SM
+excise/XDSMGN
+excision/M
+excitability/M
+excitably
+excitation/M
+excite/BDRSLZG
+excited/Y
+excitement/SM
+exciter/M
+exciting/Y
+exciton
+excl
+exclaim/DGS
+exclamation/SM
+exclamatory
+exclude/GDS
+exclusion/MS
+exclusionary
+exclusive/PMYS
+exclusiveness/M
+exclusivity/M
+excommunicate/GNDSX
+excommunication/M
+excoriate/DSGNX
+excoriation/M
+excrement/M
+excremental
+excrescence/MS
+excrescent
+excreta/M
+excrete/XGNDS
+excretion/M
+excretory
+excruciating/Y
+exculpate/DSGN
+exculpation/M
+exculpatory
+excursion/MS
+excursionist/MS
+excursive/YP
+excursiveness/M
+excusable/I
+excusably/I
+excuse/DSBMG
+excused/U
+exec/MS
+execrable
+execrably
+execrate/DSGN
+execration/M
+execute/BXGNVDS
+execution/ZMR
+executioner/M
+executive/SM
+executor/MS
+executrices
+executrix/M
+exegeses
+exegesis/M
+exegetic
+exegetical
+exemplar/SM
+exemplary
+exemplification/M
+exemplify/GDSXN
+exempt/SGD
+exemption/SM
+exercise/DRSMZG
+exerciser/M
+exert/SDG
+exertion/MS
+exeunt
+exfoliate/GNDS
+exhalation/MS
+exhale/DSG
+exhaust/GVMDS
+exhaustible/I
+exhaustion/M
+exhaustive/YP
+exhaustiveness/M
+exhibit/GMDS
+exhibition/MS
+exhibitionism/M
+exhibitionist/MS
+exhibitor/SM
+exhilarate/DSGN
+exhilaration/M
+exhort/SDG
+exhortation/MS
+exhumation/MS
+exhume/DSG
+exigence/MS
+exigency/SM
+exigent
+exiguity/M
+exiguous
+exile/DSMG
+exilic
+exist/SDG
+existence/MS
+existent
+existential/Y
+existentialism/M
+existentialist/MS
+exit/MDGS
+exobiology/M
+exodus/MS
+exogenous
+exon/MS
+exonerate/GNDS
+exoneration/M
+exoplanet/MS
+exorbitance/M
+exorbitant/Y
+exorcise/DSG
+exorcism/SM
+exorcist/SM
+exoskeleton/SM
+exosphere/SM
+exothermic
+exotic/SM
+exotica
+exotically
+exoticism/M
+exp
+expand/BGSD
+expanse/XMNVS
+expansible
+expansion/M
+expansionary
+expansionism/M
+expansionist/MS
+expansive/YP
+expansiveness/M
+expat/S
+expatiate/GNDS
+expatiation/M
+expatriate/DSMGN
+expatriation/M
+expect/GSD
+expectancy/M
+expectant/Y
+expectation/SM
+expectorant/SM
+expectorate/DSGN
+expectoration/M
+expedience/IM
+expediences
+expediencies
+expediency/IM
+expedient/SMY
+expedite/DRSZGNX
+expediter/M
+expedition/M
+expeditionary
+expeditious/PY
+expeditiousness/M
+expel/S
+expelled
+expelling
+expend/GSBD
+expendable/SM
+expenditure/SM
+expense/MS
+expensive/IYP
+expensiveness/IM
+experience/IMD
+experiences
+experiencing
+experiential
+experiment/MDRSZG
+experimental/Y
+experimentation/M
+experimenter/M
+expert/SPMY
+expertise/M
+expertness/M
+expiate/GNDS
+expiation/M
+expiatory
+expiration/M
+expire/DSG
+expired/U
+expiry/M
+explain/ADGS
+explainable
+explained/U
+explanation/MS
+explanatory
+expletive/MS
+explicable/I
+explicate/XGNDS
+explication/M
+explicit/PY
+explicitness/M
+explode/GDS
+exploit/ZGBMDRS
+exploitation/M
+exploitative
+exploited/U
+exploiter/M
+exploration/MS
+exploratory
+explore/ZGDRS
+explored/U
+explorer/M
+explosion/SM
+explosive/SPMY
+explosiveness/M
+expo/MS
+exponent/MS
+exponential/Y
+exponentiation
+export/BSZGMDR
+exportation/M
+exporter/M
+expose/DSMG
+exposed/U
+exposition/SM
+expositor/SM
+expository
+expostulate/GNXDS
+expostulation/M
+exposure/MS
+expound/ZGDRS
+expounder/M
+express/GVMDSY
+expressed/U
+expressible/I
+expression/SM
+expressionism/M
+expressionist/SM
+expressionistic
+expressionless/Y
+expressive/PY
+expressiveness/M
+expressway/SM
+expropriate/GNXDS
+expropriation/M
+expropriator/SM
+expulsion/MS
+expunge/GDS
+expurgate/DSGNX
+expurgated/U
+expurgation/M
+exquisite/YP
+exquisiteness/M
+ext
+extant
+extemporaneous/PY
+extemporaneousness/M
+extempore
+extemporization/M
+extemporize/GDS
+extend/SZGDRB
+extender/M
+extensibility
+extensible
+extension/SM
+extensional
+extensive/YP
+extensiveness/M
+extent/SM
+extenuate/DSGN
+extenuation/M
+exterior/MS
+exterminate/DSXGN
+extermination/M
+exterminator/MS
+external/MYS
+externalization/SM
+externalize/DSG
+extinct/GDS
+extinction/MS
+extinguish/ZGBDRS
+extinguishable/I
+extinguisher/M
+extirpate/GNDS
+extirpation/M
+extol/S
+extolled
+extolling
+extort/SGD
+extortion/MRZ
+extortionate/Y
+extortioner/M
+extortionist/MS
+extra/SM
+extracellular
+extract/MDGVS
+extraction/SM
+extractor/MS
+extracurricular
+extradite/GNBXDS
+extradition/M
+extrajudicial
+extralegal
+extramarital
+extramural
+extraneous/Y
+extraordinaire
+extraordinarily
+extraordinary
+extrapolate/XGNDS
+extrapolation/M
+extrasensory
+extraterrestrial/MS
+extraterritorial
+extraterritoriality/M
+extravagance/MS
+extravagant/Y
+extravaganza/MS
+extravehicular
+extreme/PMYTRS
+extremeness/M
+extremism/M
+extremist/MS
+extremity/SM
+extricable/I
+extricate/GNDS
+extrication/M
+extrinsic
+extrinsically
+extroversion/M
+extrovert/SMD
+extrude/GDS
+extrusion/SM
+extrusive
+exuberance/M
+exuberant/Y
+exudation/M
+exude/DSG
+exult/SDG
+exultant/Y
+exultation/M
+exurb/SM
+exurban
+exurbanite/SM
+exurbia/M
+eye/DSM
+eyeball/GMDS
+eyebrow/SM
+eyedropper/SM
+eyeful/SM
+eyeglass/MS
+eyeing
+eyelash/MS
+eyeless
+eyelet/SM
+eyelid/SM
+eyeliner/MS
+eyeopener/MS
+eyeopening
+eyepiece/MS
+eyesight/M
+eyesore/MS
+eyestrain/M
+eyeteeth
+eyetooth/M
+eyewash/M
+eyewitness/MS
+f/CIAVTR
+fMRI
+fa/M
+fab
+fable/DSM
+fabric/SM
+fabricate/DSGNX
+fabrication/M
+fabricator/SM
+fabulous/Y
+facade/SM
+face's
+face/ACSDG
+facecloth/M
+facecloths
+faceless
+facepalm/SDG
+facet/SMDG
+facetious/YP
+facetiousness/M
+facial/SMY
+facile/Y
+facilitate/GNDS
+facilitation/M
+facilitator/MS
+facility/SM
+facing/SM
+facsimile/DSM
+facsimileing
+fact/MS
+faction/SM
+factional
+factionalism/M
+factious
+factitious
+factoid/SM
+factor's
+factor/ASDG
+factorial/MS
+factorization
+factorize/GDS
+factory/SM
+factotum/SM
+factual/Y
+faculty/SM
+fad/GSMD
+faddish/P
+faddist/MS
+faddy/P
+fade/MS
+fading/U
+faerie/SM
+faff/DGS
+fag/SM
+fagged
+fagging
+faggot/SMG
+faience/M
+fail/DGJS
+failing/M
+faille/M
+failure/SM
+fain/RT
+faint/SMDRYTGP
+fainthearted
+faintness/M
+fair/MRYTGJPS
+fairground/MS
+fairing/M
+fairness/UM
+fairway/SM
+fairy/SM
+fairyland/SM
+faith/M
+faithful's
+faithful/UPY
+faithfulness/UM
+faithfuls
+faithless/PY
+faithlessness/M
+faiths
+fajita/SM
+fajitas/M
+fake/MZGDRS
+faker/M
+fakir/SM
+falcon/SMRZ
+falconer/M
+falconry/M
+fall/MNGS
+fallacious/Y
+fallacy/SM
+fallback
+fallibility/IM
+fallible/P
+fallibleness/M
+fallibly/I
+falloff/SM
+fallout/M
+fallow/SMDG
+false/PRYT
+falsehood/SM
+falseness/M
+falsetto/SM
+falsie/SM
+falsifiable
+falsification/M
+falsifier/M
+falsify/DRSZGNX
+falsity/SM
+falter/GSJMD
+faltering/Y
+fame's
+fame/D
+familial
+familiar/MYS
+familiarity/UM
+familiarization/M
+familiarize/GDS
+family/SM
+famine/SM
+famish/DSG
+famous/IY
+fan/SM
+fanatic/SM
+fanatical/Y
+fanaticism/M
+fanboy/SM
+fanciable
+fancier/M
+fanciful/YP
+fancifulness/M
+fancily
+fanciness/M
+fancy/DRSMZTGP
+fancywork/M
+fandango/MS
+fandom
+fanfare/SM
+fang/MDS
+fanlight/SM
+fanned
+fanning
+fanny/SM
+fantail/MS
+fantasia/SM
+fantasist/S
+fantasize/GDS
+fantastic
+fantastical/Y
+fantasy/DSMG
+fanzine/MS
+far
+farad/SM
+faradize/DG
+faraway
+farce/SM
+farcical/Y
+fare/MGDS
+farewell/SM
+farina/M
+farinaceous
+farm/MDRZGSJ
+farmer/M
+farmhand/SM
+farmhouse/SM
+farming/M
+farmland/MS
+farmstead/MS
+farmyard/MS
+faro/M
+farrago/M
+farragoes
+farrier/MS
+farrow/SMDG
+farseeing
+farsighted/P
+farsightedness/M
+fart/MDGS
+farther
+farthermost
+farthest
+farthing/SM
+fascia/SM
+fascicle/SM
+fascinate/GNDSX
+fascinating/Y
+fascination/M
+fascism/M
+fascist/MS
+fascistic
+fashion/ZGBMDRS
+fashionable/U
+fashionably/U
+fashioner/M
+fashionista/MS
+fast/MDRTGSP
+fastback/SM
+fastball/SM
+fasten/UAGDS
+fastener/SM
+fastening/MS
+fastidious/PY
+fastidiousness/M
+fastness/MS
+fat/GSPMD
+fatal/Y
+fatalism/M
+fatalist/SM
+fatalistic
+fatalistically
+fatality/SM
+fatback/M
+fate/MS
+fateful/YP
+fatefulness/M
+fathead/MDS
+father/SGMDY
+fatherhood/M
+fatherland/MS
+fatherless
+fathom/SMDGB
+fathomable/U
+fathomless
+fatigue/MDSG
+fatigues/M
+fatness/M
+fatso/S
+fatten/SDG
+fatter
+fattest
+fattiness/M
+fatty/RSMTP
+fatuity/M
+fatuous/YP
+fatuousness/M
+fatwa/SM
+faucet/SM
+fault/CSMDG
+faultfinder/SM
+faultfinding/M
+faultily
+faultiness/M
+faultless/PY
+faultlessness/M
+faulty/PRT
+faun/MS
+fauna/SM
+fauvism/M
+fauvist/SM
+faux
+fave/S
+favour/ESMDG
+favourable/U
+favourably/U
+favourite/MS
+favouritism/M
+fawn/MDRZGS
+fawner/M
+fax/GMDS
+fay/TSM
+fayre
+faze/GDS
+fazed/U
+fealty/M
+fear/MDGS
+fearful/YP
+fearfulness/M
+fearless/PY
+fearlessness/M
+fearsome
+feasibility/M
+feasible/IU
+feasibly
+feast/SMDRZG
+feaster/M
+feat/MS
+feather/SGMD
+featherbedding/M
+featherbrained
+featherless
+featherweight/MS
+feathery/TR
+feature/DSMG
+featureless
+febrile
+fecal
+feces/M
+feckless/PY
+fecund
+fecundate/GNDS
+fecundation/M
+fecundity/M
+fed/SM
+federal/SMY
+federalism/M
+federalist/MS
+federalization/M
+federalize/GDS
+federate/FXDSGN
+federation/FM
+fedora/SM
+fee/SM
+feeble/RTP
+feebleness/M
+feebly
+feed/MRZGSJ
+feedback/M
+feedbag/SM
+feeder/M
+feeding/M
+feedlot/SM
+feel/MRZGSJ
+feeler/M
+feelgood
+feeling/MY
+feet
+feign/SDG
+feigned/U
+feint/SMDG
+feisty/TR
+feldspar/M
+felicitate/GNXDS
+felicitation/M
+felicitous/Y
+felicity/ISM
+feline/SM
+fell/MDRZTGS
+fella/S
+fellatio/M
+fellow/SM
+fellowman/M
+fellowmen
+fellowship/MS
+felon/SM
+felonious
+felony/SM
+felt/MDGS
+fem
+female/PSM
+femaleness/M
+feminine/SMY
+femininity/M
+feminism/M
+feminist/SM
+feminize/DSG
+femoral
+femur/SM
+fen/SM
+fence/CDSMG
+fencer/SM
+fencing/M
+fend/CDRZGS
+fender/CM
+fenestration/M
+fennel/M
+fentanyl/M
+feral
+ferment/FCMS
+fermentation/M
+fermented
+fermenting
+fermium/M
+fern/MS
+ferny/RT
+ferocious/PY
+ferociousness/M
+ferocity/M
+ferret/GSMD
+ferric
+ferromagnetic
+ferromagnetism
+ferrous
+ferrule/MS
+ferry/DSMG
+ferryboat/SM
+ferryman/M
+ferrymen
+fertile/I
+fertility/IM
+fertilization/M
+fertilize/DRSZG
+fertilized/U
+fertilizer/M
+ferule/SM
+fervency/M
+fervent/Y
+fervid/Y
+fervour/M
+fess/FKGSD
+fest/MRZVS
+festal
+fester/GMD
+festival/SM
+festive/YP
+festiveness/M
+festivity/SM
+festoon/GMDS
+feta/M
+fetal
+fetch/DRSZG
+fetcher/M
+fetching/Y
+fete/MGDS
+fetid/P
+fetidness/M
+fetish/MS
+fetishism/M
+fetishist/SM
+fetishistic
+fetlock/MS
+fetter's
+fetter/USGD
+fettle/M
+fettuccine/M
+fetus/MS
+feud/MDGS
+feudal
+feudalism/M
+feudalistic
+fever/SMD
+feverish/YP
+feverishness/M
+few/TPMR
+fewness/M
+fey
+fez/M
+fezzes
+ff
+fiance/CM
+fiancee/MS
+fiances
+fiasco/M
+fiascoes
+fiat/MS
+fib/SM
+fibbed
+fibber/SM
+fibbing
+fibre/SM
+fibreboard/M
+fibrefill/M
+fibreglass/M
+fibril/SM
+fibrillate/GNDS
+fibrillation/M
+fibrin/M
+fibroid
+fibrosis/M
+fibrous
+fibula/M
+fibulae
+fibular
+fiche/SM
+fichu/SM
+fickle/RPT
+fickleness/M
+fiction/MS
+fictional/Y
+fictionalization/SM
+fictionalize/DSG
+fictitious/Y
+fictive
+ficus/M
+fiddle/DRSMZG
+fiddler/M
+fiddlesticks
+fiddly/TR
+fidelity/IM
+fidget/SGMD
+fidgety
+fiduciary/SM
+fie
+fief/MS
+fiefdom/MS
+field/ISMRZ
+fielded
+fielder/IM
+fielding
+fieldsman
+fieldsmen
+fieldwork/MRZ
+fieldworker/M
+fiend/SM
+fiendish/Y
+fierce/PRYT
+fierceness/M
+fieriness/M
+fiery/RPT
+fiesta/SM
+fife/MZRS
+fifer/M
+fifteen/MHS
+fifteenth/M
+fifteenths
+fifth/MY
+fifths
+fiftieth/M
+fiftieths
+fifty/SMH
+fig/SLM
+fight/SMRZG
+fightback
+fighter/IMS
+fighting/IM
+figment/MS
+figuration/FM
+figurative/Y
+figure's
+figure/FEGSD
+figurehead/SM
+figurine/MS
+filament/MS
+filamentous
+filbert/MS
+filch/DSG
+file's/KC
+file/CAKGDS
+filename/S
+filer/CSM
+filet
+filial
+filibuster/MDRSZG
+filibusterer/M
+filigree/DSM
+filigreeing
+filing's
+filings
+fill's
+fill/AIDGS
+filled/U
+filler/MS
+fillet/MDGS
+filling/SM
+fillip/MDGS
+filly/SM
+film/MDGS
+filminess/M
+filmmaker/SM
+filmstrip/MS
+filmy/TPR
+filo
+filter/MDRBSZG
+filtered/U
+filterer/M
+filth/M
+filthily
+filthiness/M
+filthy/RPT
+filtrate's
+filtrate/IGNDS
+filtration/IM
+fin/SMR
+finagle/DRSZG
+finagler/M
+final/SMY
+finale/MS
+finalist/SM
+finality/M
+finalization/M
+finalize/DSG
+finance's
+finance/ADSG
+financial/Y
+financier/MS
+financing/M
+finch/MS
+find/JMRZGS
+finder/M
+finding/M
+findings/M
+fine's/F
+fine/CAFTGDS
+finely
+fineness/M
+finery/AM
+finespun
+finesse/DSMG
+finger/MDGSJ
+fingerboard/SM
+fingering/M
+fingerling/SM
+fingermark/S
+fingernail/SM
+fingerprint/SGMD
+fingertip/MS
+finial/MS
+finical
+finickiness/M
+finicky/RPT
+finis/MS
+finish's
+finish/ADSG
+finished/U
+finisher/MS
+finite/IY
+fink/MDGS
+finned
+finny
+fir/ZGSJMDRH
+fire/MS
+firearm/SM
+fireball/MS
+firebomb/MDSJG
+firebox/MS
+firebrand/SM
+firebreak/SM
+firebrick/SM
+firebug/SM
+firecracker/SM
+firedamp/M
+firefight/MRSZG
+firefighter/M
+firefighting/M
+firefly/SM
+fireguard/S
+firehouse/SM
+firelight/ZMR
+fireman/M
+firemen
+fireplace/SM
+fireplug/MS
+firepower/M
+fireproof/DSG
+firer/M
+firescreen/S
+fireside/MS
+firestorm/MS
+firetrap/MS
+firetruck/MS
+firewall/MS
+firewater/M
+firewood/M
+firework/SM
+firm/MDRYPTGS
+firmament/SM
+firmness/M
+firmware/M
+first/SMY
+firstborn/SM
+firsthand
+firth/M
+firths
+fiscal/MYS
+fish/MDRSZG
+fishbowl/SM
+fishcake/SM
+fisher/M
+fisherman/M
+fishermen
+fishery/SM
+fishhook/SM
+fishily
+fishiness/M
+fishing/M
+fishmonger/MS
+fishnet/SM
+fishpond/MS
+fishtail/DGS
+fishwife/M
+fishwives
+fishy/TRP
+fissile
+fission/BM
+fissure/SM
+fist/MS
+fistfight/MS
+fistful/SM
+fisticuffs/M
+fistula/SM
+fistulous/M
+fit/KAMS
+fitful/YP
+fitfulness/M
+fitly
+fitment/S
+fitness/UM
+fitted/UA
+fitter/MS
+fittest
+fitting/SMY
+five/MZRS
+fix/ZGBJMDRS
+fixate/GNVDSX
+fixation/M
+fixative/MS
+fixed/Y
+fixer/M
+fixings/M
+fixity/M
+fixture/MS
+fizz/MDSG
+fizzle/DSMG
+fizzy/RT
+fjord/SM
+fl/JDG
+flab/M
+flabbergast/SGD
+flabbily
+flabbiness/M
+flabby/RPT
+flaccid/Y
+flaccidity/M
+flack/SM
+flag/MS
+flagella
+flagellant/S
+flagellate/GNDS
+flagellation/M
+flagellum/M
+flagged
+flagging/U
+flagman/M
+flagmen
+flagon/MS
+flagpole/SM
+flagrance/M
+flagrancy/M
+flagrant/Y
+flagship/SM
+flagstaff/MS
+flagstone/MS
+flail/SGMD
+flair/SM
+flak/M
+flake/DSMG
+flakiness/M
+flaky/TRP
+flamage
+flambe/MS
+flambeed
+flambeing
+flamboyance/M
+flamboyancy/M
+flamboyant/Y
+flame/DRSJMZG
+flamenco/MS
+flameproof/DGS
+flamethrower/SM
+flamingo/MS
+flammability/IM
+flammable/SM
+flan/MS
+flange/MS
+flank/SZGMDR
+flanker/M
+flannel/SM
+flannelette/M
+flannelled
+flannelling
+flap/MS
+flapjack/MS
+flapped
+flapper/SM
+flapping
+flare/DSMG
+flareup/SM
+flash/ZTGMDRS
+flashback/SM
+flashbulb/SM
+flashcard/SM
+flashcube/SM
+flasher/M
+flashgun/SM
+flashily
+flashiness/M
+flashing/M
+flashlight/MS
+flashy/RTP
+flask/SM
+flat/MYPS
+flatbed/SM
+flatboat/SM
+flatbread
+flatcar/SM
+flatfeet
+flatfish/MS
+flatfoot/SMD
+flatiron/SM
+flatland/M
+flatlet/S
+flatmate/S
+flatness/M
+flatted
+flatten/SDG
+flatter/SDRZG
+flatterer/M
+flattering/Y
+flattery/M
+flattest
+flatting
+flattish
+flattop/SM
+flatulence/M
+flatulent
+flatus/M
+flatware/M
+flatworm/SM
+flaunt/MDSG
+flaunting/Y
+flautist/SM
+flavour/SMDJG
+flavoured/U
+flavourful
+flavouring/M
+flavourless
+flavoursome
+flaw/MDGS
+flawless/PY
+flawlessness/M
+flax/MN
+flay/DGS
+flea/MS
+fleabag/SM
+fleabite/S
+fleapit/S
+fleck/SGMD
+fledged/U
+fledgling/MS
+flee/S
+fleece/MZGDRS
+fleecer/M
+fleeciness/M
+fleecy/RTP
+fleeing
+fleet/STGMDRYP
+fleetingly/M
+fleetingness/M
+fleetness/M
+flesh/GMDSY
+fleshly/TR
+fleshpot/MS
+fleshy/RT
+flew
+flex/AMS
+flexed
+flexibility/IM
+flexible/I
+flexibly/I
+flexing
+flexion
+flextime/M
+flibbertigibbet/SM
+flick/SZGMDR
+flicker/GMD
+flight/MS
+flightiness/M
+flightless
+flighty/PTR
+flimflam/SM
+flimflammed
+flimflamming
+flimsily
+flimsiness/M
+flimsy/TRP
+flinch/GMDS
+fling/GM
+flint/SM
+flintlock/SM
+flinty/TR
+flip/MS
+flippancy/M
+flippant/Y
+flipped
+flipper/MS
+flippest
+flipping
+flippy/S
+flirt/SGMD
+flirtation/MS
+flirtatious/YP
+flirtatiousness/M
+flirty
+flit/MS
+flitted
+flitting
+float/SMDRZG
+floater/M
+flock/SMDG
+flocking/M
+floe/MS
+flog/S
+flogged
+flogger/SM
+flogging/MS
+flood/SMDRG
+floodgate/MS
+floodlight/MDSG
+floodlit
+floodplain/MS
+floodwater/MS
+floor/SMDG
+floorboard/MS
+flooring/M
+floorwalker/SM
+floozy/SM
+flop/MS
+flophouse/MS
+flopped
+floppily
+floppiness/M
+flopping
+floppy/PRSMT
+flora/SM
+floral
+florescence/IM
+florescent/I
+floret/SM
+florid/PY
+floridness/M
+florin/SM
+florist/SM
+floss/MDSG
+flossy/RT
+flotation/SM
+flotilla/MS
+flotsam/M
+flounce/DSMG
+flouncy
+flounder/MDSG
+flour/SMDG
+flourish/GMDS
+floury
+flout/SMDRZG
+flouter/M
+flow/MDGS
+flowchart/SM
+flower's
+flower/CSDG
+flowerbed/MS
+floweriness/M
+flowering/S
+flowerless
+flowerpot/MS
+flowery/PTR
+flown
+flt
+flu/M
+flub/MS
+flubbed
+flubbing
+fluctuate/GNDSX
+fluctuation/M
+flue/MS
+fluency/M
+fluent/Y
+fluff/SMDG
+fluffiness/M
+fluffy/RPT
+fluid/SMY
+fluidity/M
+fluke/SM
+fluky/RT
+flume/SM
+flummox/DSG
+flung
+flunk/SMDG
+flunky/SM
+fluoresce/DSG
+fluorescence/M
+fluorescent
+fluoridate/GNDS
+fluoridation/M
+fluoride/SM
+fluorine/M
+fluorite/M
+fluorocarbon/MS
+fluoroscope/SM
+fluoroscopic
+fluoxetine
+flurry/GDSM
+flush/MDRSTG
+fluster/MDSG
+flute/DSMG
+fluting/M
+flutist/MS
+flutter/MDSG
+fluttery
+fluvial
+flux/IMS
+fluxed
+fluxing
+fly/TGBDSM
+flyaway
+flyblown
+flyby/M
+flybys
+flycatcher/MS
+flyer/SM
+flying/M
+flyleaf/M
+flyleaves
+flyover/MS
+flypaper/SM
+flypast/S
+flysheet/S
+flyspeck/GMDS
+flyswatter/MS
+flytrap/S
+flyway/SM
+flyweight/SM
+flywheel/MS
+foal/MDGS
+foam/MDGS
+foaminess/M
+foamy/RTP
+fob/SM
+fobbed
+fobbing
+focal/Y
+focus's
+focus/ADSG
+focused/U
+fodder/SM
+foe/SM
+fog's
+fog/CS
+fogbound
+fogey/SM
+fogged/C
+foggily
+fogginess/M
+fogging/C
+foggy/RTP
+foghorn/MS
+fogyish
+foible/SM
+foil/MDGS
+foist/SDG
+fol
+fold's
+fold/AUSGD
+foldaway
+folder/SM
+foldout/MS
+foliage/M
+folic
+folio/SM
+folk/MS
+folklore/M
+folkloric
+folklorist/MS
+folksiness/M
+folksinger/SM
+folksinging/M
+folksy/PTR
+folktale/MS
+folkway/MS
+foll
+follicle/MS
+follow/SDRZGJ
+follower/M
+following/M
+followup/S
+folly/SM
+foment/SGD
+fomentation/M
+fond/RYTP
+fondant/MS
+fondle/DSG
+fondness/M
+fondue/SM
+font/MS
+fontanelle/MS
+foo
+foobar
+food/MS
+foodie/SM
+foodstuff/SM
+fool/MDGS
+foolery/SM
+foolhardily
+foolhardiness/M
+foolhardy/TPR
+foolish/YP
+foolishness/M
+foolproof
+foolscap/M
+foot/MDRZGSJ
+footage/M
+football/MRZGS
+footballer/M
+footbridge/SM
+footfall/MS
+foothill/MS
+foothold/MS
+footie
+footing/M
+footless
+footlights/M
+footling/MS
+footlocker/SM
+footloose
+footman/M
+footmen
+footnote/MGDS
+footpath/M
+footpaths
+footplate/S
+footprint/SM
+footrace/MS
+footrest/MS
+footsie/SM
+footslogging
+footsore
+footstep/MS
+footstool/SM
+footwear/M
+footwork/M
+footy
+fop/SM
+foppery/M
+foppish/P
+foppishness/M
+for/H
+fora
+forage/DRSMZG
+forager/M
+foray/SMDG
+forbade
+forbear/SMG
+forbearance/M
+forbid/S
+forbidden
+forbidding/YS
+forbore
+forborne
+force/DSMG
+forced/U
+forceful/PY
+forcefulness/M
+forceps/M
+forcible
+forcibly
+ford/MDGSB
+fore/MS
+forearm/GSMD
+forebear/MS
+forebode/GJDS
+foreboding/M
+forecast/MRZGS
+forecaster/M
+forecastle/MS
+foreclose/DSG
+foreclosure/MS
+forecourt/SM
+foredoom/DGS
+forefather/MS
+forefeet
+forefinger/SM
+forefoot/M
+forefront/SM
+foregather/GDS
+forego/G
+foregoes
+foregone
+foreground/GMDS
+forehand/MS
+forehead/MS
+foreign/ZRP
+foreigner/M
+foreignness/M
+foreknew
+foreknow/GS
+foreknowledge/M
+foreknown
+foreleg/SM
+forelimb/MS
+forelock/MS
+foreman/M
+foremast/MS
+foremen
+foremost
+forename/MDS
+forenoon/MS
+forensic/MS
+forensically
+forensics/M
+foreordain/GSD
+forepart/MS
+foreperson/SM
+foreplay/M
+forequarter/MS
+forerunner/MS
+foresail/MS
+foresaw
+foresee/RSBZ
+foreseeable/U
+foreseeing
+foreseen/U
+foreseer/M
+foreshadow/GDS
+foreshore/S
+foreshorten/DSG
+foresight/MD
+foresightedness/M
+foreskin/MS
+forest's
+forest/ACGDS
+forestall/SGD
+forestation/ACM
+forester/MS
+forestland/M
+forestry/M
+foretaste/DSMG
+foretell/GS
+forethought/M
+foretold
+forever/M
+forevermore
+forewarn/DSG
+forewent
+forewoman/M
+forewomen
+foreword/MS
+forfeit/GSMD
+forfeiture/SM
+forgave
+forge/DRSMZGVJ
+forger/M
+forgery/SM
+forget/S
+forgetful/YP
+forgetfulness/M
+forgettable/U
+forgetting
+forging/M
+forgivable/U
+forgive/BRSZGP
+forgiven
+forgiveness/M
+forgiver/M
+forgiving/U
+forgo/RZG
+forgoer/M
+forgoes
+forgone
+forgot
+forgotten/U
+fork/MDGS
+forkful/SM
+forklift/MS
+forlorn/Y
+form's
+form/CAIFDGS
+formal/SMY
+formaldehyde/M
+formalin
+formalism/M
+formalist/MS
+formalities
+formality/IM
+formalization/M
+formalize/GDS
+format/SMV
+formation/CFASM
+formatted/A
+formatting/M
+formed/U
+former/FIAM
+formerly
+formfitting
+formic
+formidable
+formidably
+formless/PY
+formlessness/M
+formula/MS
+formulae
+formulaic
+formulate/ADSGNX
+formulated/U
+formulation/AM
+formulator/SM
+fornicate/GNDS
+fornication/M
+fornicator/MS
+forsake/GS
+forsaken
+forsook
+forsooth
+forswear/SG
+forswore
+forsworn
+forsythia/SM
+fort/MS
+forte/SM
+forthcoming/M
+forthright/YP
+forthrightness/M
+forthwith
+fortieth/M
+fortieths
+fortification/M
+fortified/U
+fortifier/M
+fortify/DRSNZGX
+fortissimo
+fortitude/M
+fortnight/MYS
+fortress/MS
+fortuitous/YP
+fortuitousness/M
+fortuity/M
+fortunate/UY
+fortune/MS
+fortuneteller/SM
+fortunetelling/M
+forty/SMH
+forum/SM
+forward/MDRYZTGSP
+forwarder/M
+forwardness/M
+forwent
+fossa
+fossil/SM
+fossilization/M
+fossilize/GDS
+foster/GSD
+fought
+foul/MDRYTGSP
+foulard/M
+foulmouthed
+foulness/M
+found/FSDG
+foundation/SM
+foundational
+founded/U
+founder/GMDS
+foundling/SM
+foundry/SM
+fount/SM
+fountain/SM
+fountainhead/MS
+four/MHS
+fourfold
+fourposter/SM
+fourscore/M
+foursome/SM
+foursquare
+fourteen/SMH
+fourteenth/M
+fourteenths
+fourth/MY
+fourths
+fowl/MDGS
+fox/GMDS
+foxfire/M
+foxglove/SM
+foxhole/MS
+foxhound/SM
+foxhunt/GS
+foxily
+foxiness/M
+foxtrot/MS
+foxtrotted
+foxtrotting
+foxy/RTP
+foyer/SM
+fps
+fr
+fracas/MS
+frack/SDG
+fractal/SM
+fraction/ISM
+fractional/Y
+fractious/YP
+fractiousness/M
+fracture/MGDS
+frag/S
+fragile/RT
+fragility/M
+fragment/GMDS
+fragmentary/M
+fragmentation/M
+fragrance/MS
+fragrant/Y
+frail/RYTP
+frailness/M
+frailty/SM
+frame/DRSMZG
+framed/U
+framer/M
+framework/SM
+franc/SM
+franchise's
+franchise/EDSG
+franchisee/SM
+franchiser/SM
+francium/M
+francophone
+frangibility/M
+frangible
+frank/SMDRYTGP
+frankfurter/MS
+frankincense/M
+frankness/M
+frantic
+frantically
+frappe/SM
+frat/MS
+fraternal/Y
+fraternity/FSM
+fraternization/M
+fraternize/ZGDRS
+fraternizer/M
+fratricidal
+fratricide/MS
+fraud's
+fraud/S
+fraudster/S
+fraudulence/M
+fraudulent/Y
+fraught
+fray's
+fray/CDGS
+frazzle/MGDS
+freak/SMDG
+freakish/YP
+freakishness/M
+freaky/RT
+freckle/DSMG
+freckly
+free/YTDRS
+freebase/MGDS
+freebie/SM
+freebooter/SM
+freeborn
+freedman/M
+freedmen
+freedom/SM
+freehand
+freehold/ZMRS
+freeholder/M
+freeing
+freelance/DRSMZG
+freelancer/M
+freeload/SDRZG
+freeloader/M
+freeman/M
+freemasonry
+freemen
+freephone
+freesia/S
+freestanding
+freestone/SM
+freestyle/SM
+freethinker/SM
+freethinking/M
+freeware/M
+freeway/MS
+freewheel/DGS
+freewill
+freezable
+freeze's
+freeze/UAGS
+freezer/MS
+freezing's
+freight/MDRZGS
+freighter/M
+french
+frenemy/S
+frenetic
+frenetically
+frenzied/Y
+frenzy/DSM
+freq
+frequencies
+frequency/IM
+frequent/DRYSZTG
+frequented/U
+frequenter/M
+fresco/M
+frescoes
+fresh/PNRYXZT
+freshen/ZGDR
+freshener/M
+freshet/MS
+freshman/M
+freshmen
+freshness/M
+freshwater/M
+fret/MS
+fretful/YP
+fretfulness/M
+fretsaw/MS
+fretted
+fretting
+fretwork/M
+friable
+friar/SM
+friary/SM
+fricassee/DSM
+fricasseeing
+fricative/SM
+friction/SM
+frictional
+fridge/SM
+friedcake/MS
+friend's
+friend/UGSDY
+friendless
+friendlies
+friendliness/UM
+friendly's
+friendly/UPTR
+friendship/MS
+frieze/SM
+frig/S
+frigate/MS
+frigged
+frigging
+fright/SXGMDN
+frighten/DG
+frightening/Y
+frightful/PY
+frightfulness/M
+frigid/YP
+frigidity/M
+frigidness/M
+frill/SMD
+frilly/TR
+fringe's
+fringe/IDSG
+frippery/SM
+frisk/SDG
+friskily
+friskiness/M
+frisky/TRP
+frisson/S
+fritter/MDSG
+fritz/M
+frivolity/SM
+frivolous/PY
+frivolousness/M
+frizz/MDSYG
+frizzle/MGDS
+frizzy/TR
+fro
+frock's
+frock/CUS
+frog/MS
+frogging/S
+frogman/M
+frogmarch/GDS
+frogmen
+frogspawn
+frolic/SM
+frolicked
+frolicker/SM
+frolicking
+frolicsome
+from
+frond/SM
+front's
+front/FSDG
+frontage/MS
+frontal/Y
+frontbench/ZRS
+frontier/MS
+frontiersman/M
+frontiersmen
+frontierswoman
+frontierswomen
+frontispiece/MS
+frontward/S
+frosh/M
+frost's
+frost/CSDG
+frostbit
+frostbite/MGS
+frostbitten
+frostily
+frostiness/M
+frosting/SM
+frosty/TPR
+froth/MDG
+frothiness/M
+froths
+frothy/TPR
+froufrou/M
+frown/SMDG
+frowzily
+frowziness/M
+frowzy/TPR
+froze/AU
+frozen/UA
+fructify/DSG
+fructose/M
+frugal/Y
+frugality/M
+fruit/SMDG
+fruitcake/MS
+fruiterer/S
+fruitful/YP
+fruitfulness/M
+fruitiness/M
+fruition/M
+fruitless/PY
+fruitlessness/M
+fruity/TPR
+frump/SM
+frumpish
+frumpy/TR
+frustrate/GNXDS
+frustrating/Y
+frustration/M
+frustum/MS
+fry/GDSM
+fryer/SM
+ft
+ftp/ZGS
+fuchsia/MS
+fuck/SMGDRZ!
+fucker/M!
+fuckhead/S!
+fuddle/DSMG
+fudge/DSMG
+fuehrer/MS
+fuel's
+fuel/AS
+fuelled/A
+fuelling/A
+fug
+fugal
+fuggy
+fugitive/MS
+fugue/SM
+fuhrer/SM
+fulcrum/MS
+fulfill/LDGS
+fulfilled/U
+fulfilling/U
+fulfillment/M
+full/MDRZTGSP
+fullback/MS
+fuller/M
+fullness/M
+fully
+fulminate/DSXGN
+fulmination/M
+fulsome/PY
+fulsomeness/M
+fum/S
+fumble/DRSMZG
+fumbler/M
+fumbling/Y
+fume/MGDS
+fumigant/MS
+fumigate/GNDS
+fumigation/M
+fumigator/SM
+fumy/RT
+fun/M
+function/MDGS
+functional/Y
+functionalism
+functionalist/S
+functionality/S
+functionary/SM
+functor
+fund/AMDGS
+fundamental/SMY
+fundamentalism/M
+fundamentalist/SM
+funded/U
+funding/M
+fundraiser/MS
+fundraising
+funeral/MS
+funerary
+funereal/Y
+funfair/S
+fungal
+fungi
+fungible/MS
+fungicidal
+fungicide/MS
+fungoid
+fungous
+fungus/M
+funicular/SM
+funk/MDGS
+funkiness/M
+funky/PRT
+funnel/MS
+funnelled
+funnelling
+funner
+funnest
+funnily
+funniness/M
+funny/TPRSM
+funnyman/M
+funnymen
+fur/SM
+furbelow/M
+furbish/ADSG
+furious/Y
+furl's
+furl/UDGS
+furlong/SM
+furlough/GMD
+furloughs
+furn
+furnace/SM
+furnish/ADSG
+furnished/U
+furnishings/M
+furniture/M
+furor/SM
+furosemide
+furred
+furrier/M
+furriness/M
+furring/M
+furrow/MDSG
+furry/ZTRP
+further/SGD
+furtherance/M
+furthermore
+furthermost
+furthest
+furtive/YP
+furtiveness/M
+fury/SM
+furze/M
+fuse's/A
+fuse/CAIFGDS
+fusee/SM
+fuselage/SM
+fusibility/M
+fusible
+fusilier/SM
+fusillade/MS
+fusion/IFKSM
+fuss/MDSG
+fussbudget/MS
+fussily
+fussiness/M
+fusspot/SM
+fussy/TRP
+fustian/M
+fustiness/M
+fusty/TRP
+fut
+futile/Y
+futility/M
+futon/SM
+future/MS
+futurism/M
+futurist/MS
+futuristic
+futurity/SM
+futurologist/MS
+futurology/M
+futz/DSG
+fuzz/MDSG
+fuzzball/S
+fuzzily
+fuzziness/M
+fuzzy/PTR
+fwd
+fwy
+g/SNXVB
+gab/SM
+gabardine/SM
+gabbed
+gabbiness/M
+gabbing
+gabble/DSMG
+gabby/RTP
+gaberdine/SM
+gabfest/MS
+gable/DSM
+gad/S
+gadabout/SM
+gadded
+gadder/SM
+gadding
+gadfly/SM
+gadget/SM
+gadgetry/M
+gadolinium/M
+gaff/MDRZGS
+gaffe/SM
+gaffer/M
+gag/SM
+gaga
+gagged
+gagging
+gaggle/SM
+gaiety/M
+gaily
+gain's
+gain/ADGS
+gainer/SM
+gainful/Y
+gainsaid
+gainsay/ZGRS
+gainsayer/M
+gait/MRZS
+gaiter/M
+gal/SM
+gala/MS
+galactic
+galaxy/SM
+gale's
+gale/AS
+galena/M
+gall/MDGS
+gallant/SMY
+gallantry/M
+gallbladder/MS
+galleon/SM
+galleria/MS
+gallery/SM
+galley/SM
+gallimaufry/SM
+gallium/M
+gallivant/GSD
+gallon/SM
+gallop/SMDG
+gallows/M
+gallstone/MS
+galoot/SM
+galore
+galosh/MS
+galumph/DG
+galumphs
+galvanic
+galvanism/M
+galvanization/M
+galvanize/DSG
+galvanometer/MS
+gambit/SM
+gamble/DRSMZG
+gambler/M
+gambling/M
+gambol/SM
+gambolled
+gambolling
+game/MYTGDRSP
+gamecock/MS
+gamekeeper/MS
+gameness/M
+gamesmanship/M
+gamester/MS
+gamete/SM
+gametic
+gamin/SM
+gamine/SM
+gaminess/M
+gaming/M
+gamma/SM
+gammon/M
+gammy
+gamut/SM
+gamy/RTP
+gander/SM
+gang/MDGS
+gangbusters/M
+gangland/M
+ganglia
+gangling
+ganglion/M
+ganglionic
+gangplank/SM
+gangrene/DSMG
+gangrenous
+gangsta/S
+gangster/SM
+gangway/MS
+ganja
+gannet/SM
+gantlet/MS
+gantry/SM
+gap/GSMD
+gape/MS
+gar/SLM
+garage/DSMG
+garb/MDGS
+garbage/M
+garbageman
+garbanzo/SM
+garble/DSG
+garcon/SM
+garden/SZGMDR
+gardener/M
+gardenia/MS
+gardening/M
+garfish/MS
+gargantuan
+gargle/DSMG
+gargoyle/SM
+garish/PY
+garishness/M
+garland/MDGS
+garlic/M
+garlicky
+garment/MS
+garner/SGD
+garnet/SM
+garnish/GLMDS
+garnishee/DSM
+garnisheeing
+garnishment/SM
+garret/SM
+garrison/MDSG
+garrote/MZGDRS
+garroter/M
+garrulity/M
+garrulous/PY
+garrulousness/M
+garter/SM
+gas's
+gas/CS
+gasbag/SM
+gaseous
+gash/MDSG
+gasholder/S
+gasket/SM
+gaslight/MS
+gasman
+gasmen
+gasohol/M
+gasoline/M
+gasometer/S
+gasp/MDGS
+gassed/C
+gasses
+gassing/C
+gassy/RT
+gastric
+gastritis/M
+gastroenteritis/M
+gastrointestinal
+gastronome/S
+gastronomic
+gastronomical/Y
+gastronomy/M
+gastropod/SM
+gasworks/M
+gate/MGDS
+gateau
+gateaux
+gatecrash/DRSZG
+gatecrasher/M
+gatehouse/SM
+gatekeeper/MS
+gatepost/MS
+gateway/MS
+gather/SJZGMDR
+gatherer/M
+gathering/M
+gator/SM
+gauche/RPYT
+gaucheness/M
+gaucherie/M
+gaucho/SM
+gaudily
+gaudiness/M
+gaudy/RPT
+gauge/DSMG
+gaunt/RPT
+gauntlet/MS
+gauntness/M
+gauze/M
+gauziness/M
+gauzy/RPT
+gave
+gavel/SM
+gavotte/MS
+gawd
+gawk/DGS
+gawkily
+gawkiness/M
+gawky/RPT
+gawp/DGS
+gay/TSPMR
+gayness/M
+gaze/MZGDRS
+gazebo/SM
+gazelle/MS
+gazer/M
+gazette/MGDS
+gazetteer/MS
+gazillion/S
+gazpacho/M
+gazump/DGS
+gear/MDGS
+gearbox/MS
+gearing/M
+gearshift/MS
+gearwheel/SM
+gecko/SM
+geddit
+gee/DS
+geeing
+geek/MS
+geeky/RT
+geese
+geezer/MS
+geisha/M
+gel/SM
+gelatin/M
+gelatinous
+gelcap/M
+geld/DJGS
+gelding/M
+gelid
+gelignite/M
+gelled
+gelling
+gem/SM
+gemological
+gemologist/MS
+gemology/M
+gemstone/MS
+gendarme/MS
+gender/MDS
+gene/MS
+genealogical/Y
+genealogist/MS
+genealogy/SM
+genera
+general/SMY
+generalissimo/MS
+generalist/MS
+generality/SM
+generalization/MS
+generalize/GDS
+generalship/M
+generate/CAVNGSD
+generation/ACM
+generational
+generations
+generator/SM
+generic/SM
+generically
+generosity/SM
+generous/PY
+generousness/M
+genes/S
+genesis/M
+genetic/S
+genetically
+geneticist/MS
+genetics/M
+genial/FY
+geniality/FM
+geniculate
+genie/SM
+genii
+genital/FY
+genitalia/M
+genitals/M
+genitive/MS
+genitourinary
+genius/MS
+genned
+genning
+genocidal
+genocide/MS
+genome/MS
+genomics
+genre/SM
+gent/AMS
+genteel/YP
+genteelness/M
+gentian/SM
+gentile/SM
+gentility/M
+gentle/TGDRSP
+gentlefolk/MS
+gentlefolks/M
+gentleman/MY
+gentlemanly/U
+gentlemen
+gentleness/M
+gentlewoman/M
+gentlewomen
+gently
+gentrification/M
+gentrify/DSGN
+gentry/SM
+genuflect/DGS
+genuflection/MS
+genuine/PY
+genuineness/M
+genus/M
+geocache/DSG
+geocentric
+geocentrically
+geochemistry/M
+geode/SM
+geodesic/SM
+geodesy/M
+geodetic
+geoengineering
+geog
+geographer/SM
+geographic
+geographical/Y
+geography/SM
+geologic
+geological/Y
+geologist/MS
+geology/SM
+geom
+geomagnetic
+geomagnetism/M
+geometer
+geometric
+geometrical/Y
+geometry/SM
+geophysical
+geophysicist/SM
+geophysics/M
+geopolitical
+geopolitics/M
+geostationary
+geosynchronous
+geosyncline/MS
+geothermal
+geothermic
+geranium/MS
+gerbil/MS
+geriatric/S
+geriatrician/S
+geriatrics/M
+germ/MS
+germane
+germanium/M
+germicidal
+germicide/MS
+germinal/M
+germinate/GNDS
+germination/M
+gerontological
+gerontologist/MS
+gerontology/M
+gerrymander/GMDS
+gerrymandering/M
+gerund/MS
+gestalt/S
+gestapo/MS
+gestate/GNDS
+gestation/M
+gestational
+gesticulate/DSGNX
+gesticulation/M
+gestural
+gesture/MGDS
+gesundheit
+get/S
+getaway/SM
+getting
+getup/M
+gewgaw/SM
+geyser/SM
+ghastliness/M
+ghastly/TPR
+ghat/MS
+ghee
+gherkin/MS
+ghetto/SM
+ghettoize/GDS
+ghost/SMDYG
+ghostliness/M
+ghostly/RTP
+ghostwrite/ZGRS
+ghostwriter/M
+ghostwritten
+ghostwrote
+ghoul/SM
+ghoulish/YP
+ghoulishness/M
+giant/SM
+giantess/MS
+gibber/GDS
+gibberish/M
+gibbet/GMDS
+gibbon/MS
+gibbous
+giblet/SM
+giddily
+giddiness/M
+giddy/RTP
+gift/MDGS
+gig/SM
+gigabit/SM
+gigabyte/MS
+gigagram/S
+gigahertz/M
+gigajoule/S
+gigametre/S
+gigantic
+gigantically
+gigapascal/S
+gigapixel/MS
+gigawatt/SM
+gigged
+gigging
+giggle/DRSMZG
+giggler/M
+giggly/RT
+gigolo/SM
+gild/MDRZGS
+gilder/M
+gilding/M
+gill/MS
+gillie/S
+gillion/S
+gilt/MS
+gimbals/M
+gimcrack/SM
+gimcrackery/M
+gimlet/GSMD
+gimme/SM
+gimmick/MS
+gimmickry/M
+gimmicky
+gimp/MDGS
+gimpy
+gin/SM
+ginger/GSMDY
+gingerbread/M
+gingersnap/SM
+gingery
+gingham/M
+gingivitis/M
+ginkgo/M
+ginkgoes
+ginned
+ginning
+ginormous
+ginseng/M
+giraffe/MS
+gird/DRZGS
+girder/M
+girdle/DSMG
+girl/MS
+girlfriend/MS
+girlhood/SM
+girlish/YP
+girlishness/M
+girly
+giro/S
+girt/MDGS
+girth/M
+girths
+gist/M
+git/S
+gite/S
+give/ZGJRS
+giveaway/MS
+giveback/MS
+given/SM
+giver/M
+gizmo/SM
+gizzard/MS
+glace/S
+glaceed
+glaceing
+glacial/Y
+glaciate/XGNDS
+glaciation/M
+glacier/MS
+glad/MYSP
+gladden/GDS
+gladder
+gladdest
+glade/SM
+gladiator/SM
+gladiatorial
+gladiola/SM
+gladioli
+gladiolus/M
+gladness/M
+gladsome
+glam
+glamorization/M
+glamorize/DSG
+glamorous/Y
+glamour/GMDS
+glance/DSMG
+gland/SM
+glandes
+glandular
+glans/M
+glare/DSMG
+glaring/Y
+glasnost/M
+glass/MDSG
+glassblower/MS
+glassblowing/M
+glassful/SM
+glasshouse/S
+glassily
+glassiness/M
+glassware/M
+glassy/RTP
+glaucoma/M
+glaze/DSMG
+glazier/SM
+glazing/M
+gleam/SMDGJ
+glean/SDRZGJ
+gleaner/M
+gleanings/M
+glee/M
+gleeful/YP
+gleefulness/M
+glen/MS
+glenohumeral
+glenoid
+glib/YP
+glibber
+glibbest
+glibness/M
+glide/DRSMZG
+glider/M
+gliding/M
+glimmer/MDGJS
+glimmering/M
+glimpse/MGDS
+glint/SMDG
+glissandi
+glissando/M
+glisten/MDSG
+glister/DSG
+glitch/GMDS
+glitter/MDSG
+glitterati
+glittery
+glitz/M
+glitzy/TR
+gloaming/SM
+gloat/SMDG
+gloating/Y
+glob/MDGS
+global/Y
+globalism/M
+globalist/MS
+globalization/M
+globalize/GDS
+globe/SM
+globetrotter/MS
+globetrotting
+globular
+globule/MS
+globulin/M
+glockenspiel/SM
+gloom/M
+gloomily
+gloominess/M
+gloomy/TRP
+glop/M
+gloppy
+glorification/M
+glorify/GDSN
+glorious/IY
+glory/DSMG
+gloss/MDSG
+glossary/SM
+glossily
+glossiness/M
+glossolalia/M
+glossy/PTRSM
+glottal
+glottis/MS
+glove/DSMG
+glow/MDRZGS
+glower/GMD
+glowing/Y
+glowworm/MS
+glucagon
+glucose/M
+glue/MGDS
+glued/U
+gluey
+gluier
+gluiest
+glum/YP
+glummer
+glummest
+glumness/M
+gluon/S
+glut/MNS
+gluten/M
+glutenous
+glutinous/Y
+glutted
+glutting
+glutton/MS
+gluttonous/Y
+gluttony/M
+glycerine/M
+glycerol/M
+glycogen/M
+glycol
+glyph
+gm
+gnarl/SMDG
+gnarly/TR
+gnash/MDSG
+gnat/MS
+gnaw/DGS
+gneiss/M
+gnocchi
+gnome/SM
+gnomic
+gnomish
+gnu/SM
+go/JMRHZG
+goad/MDGS
+goal/MS
+goalie/SM
+goalkeeper/MS
+goalkeeping/M
+goalless
+goalmouth
+goalmouths
+goalpost/MS
+goalscorer/S
+goaltender/MS
+goat/MS
+goatee/SM
+goatherd/MS
+goatskin/MS
+gob/SM
+gobbed
+gobbet/SM
+gobbing
+gobble/DRSMZG
+gobbledygook/M
+gobbler/M
+goblet/SM
+goblin/SM
+gobsmacked
+gobstopper/S
+god/SM
+godawful
+godchild/M
+godchildren/M
+goddammit
+goddamn/D
+goddaughter/MS
+goddess/MS
+godfather/SM
+godforsaken
+godhead/M
+godhood/M
+godless/PY
+godlessness/M
+godlike
+godliness/UM
+godly/URTP
+godmother/SM
+godparent/SM
+godsend/SM
+godson/SM
+godspeed
+goer/M
+goes
+gofer/SM
+goggle/DSMG
+goggles/M
+going/M
+goitre/SM
+gold/MNS
+goldbrick/ZGSMDR
+goldbricker/M
+golden/TR
+goldenrod/M
+goldfield/S
+goldfinch/MS
+goldfish/MS
+goldmine/SM
+goldsmith/M
+goldsmiths
+golf/MDRZGS
+golfer/M
+golliwog/S
+golly/SM
+gonad/SM
+gonadal
+gondola/MS
+gondolier/SM
+gone/ZR
+goner/M
+gong/MDGS
+gonk/S
+gonna
+gonorrhea/M
+gonorrheal
+gonzo
+goo/M
+goober/SM
+good/MYSP
+goodbye/MS
+goodhearted
+goodish
+goodly/TR
+goodness/M
+goodnight
+goods/M
+goodwill/M
+goody/SM
+gooey
+goof/MDGS
+goofball/SM
+goofiness/M
+goofy/RPT
+google/DSMG
+googly/S
+gooier
+gooiest
+gook/MS
+goon/MS
+goop/M
+goose/DSMG
+gooseberry/SM
+goosebumps/M
+goosestep/S
+goosestepped
+goosestepping
+gopher/SM
+gore/MGDS
+gorge's
+gorge/EDSG
+gorgeous/YP
+gorgeousness/M
+gorgon/SM
+gorilla/MS
+gorily
+goriness/M
+gormandize/DRSZG
+gormandizer/M
+gormless
+gorp/MS
+gorse/M
+gory/RTP
+gosh
+goshawk/MS
+gosling/SM
+gospel/MS
+gossamer/M
+gossip/MDRZGS
+gossiper/M
+gossipy
+got
+gotcha/S
+goths
+gotta
+gotten
+gouache/S
+gouge/DRSMZG
+gouger/M
+goulash/MS
+gourd/SM
+gourde/MS
+gourmand/SM
+gourmet/SM
+gout/M
+gouty/TR
+gov
+govern/DGSBL
+governable/U
+governance/M
+governed/U
+governess/MS
+government/MS
+governmental
+governor/SM
+governorship/M
+govt
+gown/MDGS
+gr
+grab/MS
+grabbed
+grabber/MS
+grabbing
+grabby/TR
+grace/EDSMG
+graceful/EPY
+gracefulness/EM
+graceless/PY
+gracelessness/M
+gracious/UY
+graciousness/M
+grackle/MS
+grad/MRZSB
+gradate/XGNDS
+gradation/CM
+grade's
+grade/CADSG
+graded/U
+grader/M
+gradient/MS
+gradual/PY
+gradualism/M
+gradualness/M
+graduate/XMGNDS
+graduation/M
+graffiti
+graffito/M
+graft/SMDRZG
+grafter/M
+graham/S
+grail
+grain/ISMD
+graininess/M
+grainy/PTR
+gram/KMS
+grammar/MS
+grammarian/SM
+grammatical/UY
+gramophone/MS
+grampus/MS
+gran/S
+granary/SM
+grand/SMRYPT
+grandam/MS
+grandaunt/MS
+grandchild/M
+grandchildren/M
+granddad/SM
+granddaddy/SM
+granddaughter/SM
+grandee/MS
+grandeur/M
+grandfather/GMDYS
+grandiloquence/M
+grandiloquent
+grandiose/Y
+grandiosity/M
+grandma/MS
+grandmother/MYS
+grandnephew/MS
+grandness/M
+grandniece/MS
+grandpa/MS
+grandparent/MS
+grandson/MS
+grandstand/SGMD
+granduncle/SM
+grange/SM
+granite/M
+granitic
+granny/SM
+granola/M
+grant/SMDRZG
+grantee/MS
+granter/M
+grantsmanship/M
+granular
+granularity/M
+granulate/GNDS
+granulation/M
+granule/MS
+grape/SM
+grapefruit/MS
+grapeshot/M
+grapevine/SM
+graph/MDG
+graphic/MS
+graphical/Y
+graphite/M
+graphologist/MS
+graphology/M
+graphs
+grapnel/MS
+grapple/MGDS
+grasp/SMDBG
+grass/MDSG
+grasshopper/MS
+grassland/MS
+grassroots
+grassy/TR
+grate/DRSMZGJ
+grateful/UYP
+gratefulness/UM
+grater/M
+gratification/M
+gratify/GNXDS
+gratifying/Y
+gratin/S
+grating/MY
+gratis
+gratitude/IM
+gratuitous/YP
+gratuitousness/M
+gratuity/SM
+gravamen/MS
+grave/DRSMYTGP
+gravedigger/SM
+gravel/SMY
+gravelled
+gravelling
+graven
+graveness/M
+graveside/MS
+gravestone/SM
+graveyard/MS
+gravid
+gravimeter/MS
+gravitas
+gravitate/GNDS
+gravitation/M
+gravitational
+gravity/M
+gravy/SM
+graybeard/SM
+graze/DRSMZG
+grazer/M
+grease/DRSMZG
+greasepaint/M
+greasily
+greasiness/M
+greasy/PTR
+great/SMRYPT
+greatcoat/SM
+greathearted
+greatness/M
+grebe/SM
+greed/M
+greedily
+greediness/M
+greedy/PTR
+green/GPSMDRYT
+greenback/MS
+greenbelt/MS
+greenery/M
+greenfield
+greenfly/S
+greengage/MS
+greengrocer/SM
+greenhorn/SM
+greenhouse/SM
+greenish
+greenmail/M
+greenness/M
+greenroom/SM
+greenstone
+greensward/M
+greenwood/M
+greet/ZGJSDR
+greeter/M
+greeting/M
+gregarious/PY
+gregariousness/M
+gremlin/SM
+grenade/SM
+grenadier/MS
+grenadine/M
+grep/S
+grepped
+grepping
+grew/A
+grey/PMDRTGS
+greyhound/SM
+greyish
+greyness/M
+gribble/S
+grid/MS
+griddle/SM
+griddlecake/SM
+gridiron/SM
+gridlock/SMD
+grief/SM
+grievance/MS
+grieve/ZGDRS
+griever/M
+grievous/PY
+grievousness/M
+griffin/SM
+griffon/SM
+grill/SGMDJ
+grille/MS
+grim/DYPG
+grimace/DSMG
+grime/SM
+griminess/M
+grimmer
+grimmest
+grimness/M
+grimy/TRP
+grin/MS
+grind/SZGMRJ
+grinder/M
+grindstone/MS
+gringo/MS
+grinned
+grinning
+grip/MDRSZG
+gripe/SM
+griper/M
+grippe/MZGDR
+gripper/M
+grisliness/M
+grisly/RTP
+grist/MY
+gristle/M
+gristmill/MS
+grit/MS
+grits/M
+gritted
+gritter/SM
+grittiness/M
+gritting
+gritty/RTP
+grizzle/DSG
+grizzly/TRSM
+groan/SGMD
+groat/SM
+grocer/MS
+grocery/SM
+grog/M
+groggily
+grogginess/M
+groggy/PRT
+groin/SM
+grok/S
+grokked
+grokking
+grommet/SM
+groom/SZGMDR
+groomer/M
+grooming/M
+groomsman/M
+groomsmen
+groove/MGDS
+groovy/RT
+grope/DRSMZG
+groper/M
+grosbeak/MS
+grosgrain/M
+gross/PTGMDRSY
+grossness/M
+grotesque/SPMY
+grotesqueness/M
+grotto/M
+grottoes
+grotty/TR
+grouch/GMDS
+grouchily
+grouchiness/M
+grouchy/RTP
+ground/ZGMDRJS
+groundbreaking/MS
+groundcloth
+groundcloths
+grounder/M
+groundhog/MS
+grounding/M
+groundless/Y
+groundnut/MS
+groundsheet/S
+groundskeeper/S
+groundsman
+groundsmen
+groundswell/SM
+groundwater/M
+groundwork/M
+group/JSZGMDR
+grouper/M
+groupie/MS
+grouping/M
+groupware/M
+grouse/MZGDRS
+grouser/M
+grout/SGMD
+grove/SM
+grovel/GDS
+grovelled
+groveller/SM
+grovelling
+grow/AHSG
+grower/MS
+growing/I
+growl/SZGMDR
+growler/M
+grown/AI
+grownup/MS
+growth/AM
+growths
+groyne/MS
+grub/MS
+grubbed
+grubber/MS
+grubbily
+grubbiness/M
+grubbing
+grubby/TRP
+grubstake/M
+grudge/MGDS
+grudging/Y
+grue/S
+gruel/M
+gruelling/SY
+gruesome/RYTP
+gruesomeness/M
+gruff/TPRY
+gruffness/M
+grumble/DRSMZGJ
+grumbler/M
+grump/SM
+grumpily
+grumpiness/M
+grumpy/PRT
+grunge/MS
+grungy/RT
+grunion/SM
+grunt/SGMD
+gt
+guacamole/M
+guanine/M
+guano/M
+guarani/MS
+guarantee/MDS
+guaranteeing
+guarantor/MS
+guaranty/GDSM
+guard/SZGMDR
+guarded/Y
+guarder/M
+guardhouse/SM
+guardian/SM
+guardianship/M
+guardrail/SM
+guardroom/SM
+guardsman/M
+guardsmen
+guava/SM
+gubernatorial
+guerrilla/SM
+guess/ZGBMDRS
+guesser/M
+guesstimate/DSMG
+guesswork/M
+guest/SGMD
+guestbook/SM
+guesthouse/S
+guestroom/S
+guff/M
+guffaw/MDGS
+guidance/M
+guide/DRSMZG
+guidebook/SM
+guided/U
+guideline/SM
+guidepost/SM
+guider/M
+guild/SZMR
+guilder/M
+guildhall/MS
+guile/M
+guileful
+guileless/YP
+guilelessness/M
+guillemot/S
+guillotine/DSMG
+guilt/M
+guiltily
+guiltiness/M
+guiltless
+guilty/PRT
+guinea/MS
+guise/ESM
+guitar/MS
+guitarist/SM
+gulag/SM
+gulch/MS
+gulden/MS
+gulf/MS
+gull/MDSG
+gullet/MS
+gullibility/M
+gullible
+gully/SM
+gulp/MDRSZG
+gulper/M
+gum/SM
+gumball/S
+gumbo/SM
+gumboil/SM
+gumboot/S
+gumdrop/SM
+gummed
+gumming
+gummy/TR
+gumption/M
+gumshoe/MDS
+gumshoeing
+gun/SM
+gunboat/SM
+gunfight/MRZS
+gunfighter/M
+gunfire/M
+gunge
+gungy
+gunk/M
+gunky
+gunman/M
+gunmen
+gunmetal/M
+gunned
+gunnel/MS
+gunner/MS
+gunnery/M
+gunning
+gunny/M
+gunnysack/MS
+gunpoint/M
+gunpowder/M
+gunrunner/MS
+gunrunning/M
+gunship/MS
+gunshot/MS
+gunslinger/SM
+gunsmith/M
+gunsmiths
+gunwale/MS
+guppy/SM
+gurgle/MGDS
+gurney/MS
+guru/MS
+gush/MDRSZG
+gusher/M
+gushing/Y
+gushy/TR
+gusset/MSDG
+gussy/DSG
+gust/EMDSG
+gustatory
+gustily
+gusto/M
+gusty/RT
+gut/SM
+gutless/P
+gutlessness/M
+gutsy/RT
+gutted
+gutter/SMDG
+guttersnipe/MS
+gutting
+guttural/MS
+gutty/RT
+guv/S
+guvnor/S
+guy/SGMD
+guzzle/DRSZG
+guzzler/M
+gybe/MGDS
+gym/SM
+gymkhana/MS
+gymnasium/MS
+gymnast/MS
+gymnastic/S
+gymnastically
+gymnastics/M
+gymnosperm/SM
+gymslip/S
+gynaecologic
+gynecological
+gynecologist/SM
+gynecology/M
+gyp/SM
+gypped
+gypper/SM
+gypping
+gypster/SM
+gypsum/M
+gypsy/SM
+gyrate/DSGNX
+gyration/M
+gyrator/SM
+gyrfalcon/MS
+gyro/MS
+gyroscope/MS
+gyroscopic
+gyve/MGDS
+h'm
+h/NRSXZGVJ
+ha/SH
+haberdasher/SM
+haberdashery/SM
+habiliment/SM
+habit's
+habit/ISB
+habitability/M
+habitat/SM
+habitation/MS
+habitual/YP
+habitualness/M
+habituate/GNDS
+habituation/M
+habitue/SM
+hacienda/SM
+hack/MDRZGS
+hacker/M
+hacking/M
+hackish
+hackle/MS
+hackney/SMDG
+hacksaw/SM
+hacktivist/MS
+hackwork/M
+had
+haddock/SM
+hadith
+hadn't
+hadst
+haem
+hafnium/M
+haft/MS
+hag/SM
+haggard/YP
+haggardness/M
+haggis/MS
+haggish
+haggle/MZGDRS
+haggler/M
+hagiographer/SM
+hagiography/SM
+hahnium/M
+haiku/M
+hail/MDGS
+hailstone/MS
+hailstorm/MS
+hair/MDS
+hairball/MS
+hairband/S
+hairbreadth/M
+hairbreadths
+hairbrush/MS
+haircloth/M
+haircut/SM
+hairdo/MS
+hairdresser/SM
+hairdressing/M
+hairdryer/MS
+hairgrip/S
+hairiness/M
+hairless
+hairlike
+hairline/SM
+hairnet/SM
+hairpiece/MS
+hairpin/SM
+hairsbreadth/M
+hairsbreadths
+hairsplitter/SM
+hairsplitting/M
+hairspray/S
+hairspring/MS
+hairstyle/MS
+hairstylist/SM
+hairy/TRP
+haj
+hajj/M
+hajjes
+hajji/SM
+hake/MS
+halal/M
+halberd/SM
+halcyon
+hale/ITGDRS
+half/M
+halfback/SM
+halfhearted/PY
+halfheartedness/M
+halfpence
+halfpenny/SM
+halftime/MS
+halftone/MS
+halfway
+halfwit/SM
+halibut/SM
+halite/M
+halitosis/M
+hall/MS
+hallelujah/M
+hallelujahs
+hallmark/GMDS
+halloo/MSG
+hallow/DSG
+hallowed/U
+hallucinate/GNXDS
+hallucination/M
+hallucinatory
+hallucinogen/SM
+hallucinogenic/SM
+hallway/SM
+halo/MDGS
+halogen/SM
+halon
+halt/MDRZGS
+halter/GMD
+halterneck/S
+halting/Y
+halve/DSG
+halyard/MS
+ham/SM
+hamburg/SZMR
+hamburger/M
+hamlet/MS
+hammed
+hammer/MDRSJZG
+hammerer/M
+hammerhead/SM
+hammerlock/SM
+hammertoe/MS
+hamming
+hammock/SM
+hammy/TR
+hamper/GMDS
+hampered/U
+hamster/MS
+hamstring/GSM
+hamstrung
+hand's
+hand/UDGS
+handbag/SM
+handball/MS
+handbarrow/SM
+handbill/MS
+handbook/MS
+handbrake/S
+handcar/SM
+handcart/MS
+handclasp/MS
+handcraft/SMDG
+handcuff/MDGS
+handed/P
+handful/SM
+handgun/SM
+handheld/MS
+handhold/MS
+handicap/MS
+handicapped
+handicapper/MS
+handicapping
+handicraft/MS
+handily
+handiness/M
+handiwork/M
+handkerchief/MS
+handle/MZGDRS
+handlebar/MS
+handler/M
+handmade
+handmaid/XMNS
+handmaiden/M
+handout/SM
+handover/S
+handpick/GDS
+handrail/MS
+handsaw/SM
+handset/SM
+handshake/JMGS
+handsome/PYTR
+handsomeness/M
+handspring/MS
+handstand/SM
+handwork/M
+handwoven
+handwriting/M
+handwritten
+handy/UTR
+handyman/M
+handymen
+hang/MDRJZGS
+hangar/MS
+hangdog
+hanger/M
+hanging/M
+hangman/M
+hangmen
+hangnail/MS
+hangout/SM
+hangover/MS
+hangup/MS
+hank/MRZS
+hanker/GJD
+hankering/M
+hanky/SM
+hansom/MS
+hap/MY
+haphazard/YP
+haphazardness/M
+hapless/YP
+haplessness/M
+haploid/MS
+happen/SDGJ
+happening/M
+happenstance/SM
+happily/U
+happiness/UM
+happy/URTP
+haptic
+harangue/MGDS
+harass/LZGDRS
+harasser/M
+harassment/M
+harbinger/SM
+harbormaster/S
+harbour/GMDS
+hard/NRYXTP
+hardback/MS
+hardball/M
+hardboard/M
+hardbound
+hardcore
+hardcover/SM
+harden/ZGDR
+hardened/U
+hardener/M
+hardhat/MS
+hardheaded/PY
+hardheadedness/M
+hardhearted/PY
+hardheartedness/M
+hardihood/M
+hardily
+hardiness/M
+hardliner/MS
+hardness/M
+hardscrabble
+hardship/SM
+hardstand/SM
+hardtack/M
+hardtop/SM
+hardware/M
+hardwired
+hardwood/SM
+hardworking
+hardy/PTR
+hare/MGDS
+harebell/MS
+harebrained
+harelip/SM
+harelipped
+harem/SM
+haricot/S
+hark/DGS
+harlequin/SM
+harlot/SM
+harlotry/M
+harm/MDGS
+harmed/U
+harmful/YP
+harmfulness/M
+harmless/PY
+harmlessness/M
+harmonic/SM
+harmonica/MS
+harmonically
+harmonies
+harmonious/PY
+harmoniousness/M
+harmonium/MS
+harmonization/M
+harmonize/ZGDRS
+harmonizer/M
+harmony/EM
+harness's
+harness/UDSG
+harp/MDGS
+harpist/SM
+harpoon/ZGSMDR
+harpooner/M
+harpsichord/MS
+harpsichordist/SM
+harpy/SM
+harridan/MS
+harrier/M
+harrow/SMDG
+harrumph/GD
+harrumphs
+harry/DRSZG
+harsh/RYTP
+harshness/M
+hart/MS
+harvest/SMDRZG
+harvested/U
+harvester/M
+hash/AMDSG
+hashish/M
+hashtag/SM
+hasn't
+hasp/MS
+hassle/DSMG
+hassock/SM
+hast/DNXG
+haste/SM
+hasten/DG
+hastily
+hastiness/M
+hasty/RTP
+hat/ZGSMDR
+hatband/S
+hatbox/MS
+hatch/MDSG
+hatchback/MS
+hatcheck/SM
+hatched/U
+hatchery/SM
+hatchet/SM
+hatching/M
+hatchway/SM
+hate/MS
+hateful/PY
+hatefulness/M
+hatemonger/MS
+hater/M
+hatpin/S
+hatred/SM
+hatstand/S
+hatted
+hatter/SM
+hatting
+hauberk/SM
+haughtily
+haughtiness/M
+haughty/PRT
+haul/MDRZGS
+haulage/M
+hauler/M
+haulier/S
+haunch/MS
+haunt/SMDRZG
+haunter/M
+haunting/Y
+hauteur/M
+have/MGS
+haven't
+haven/SM
+haversack/SM
+havoc/M
+haw/GSMD
+hawk/MDRZGS
+hawker/M
+hawkish/P
+hawkishness/M
+hawser/SM
+hawthorn/MS
+hay/GSMD
+haycock/SM
+hayloft/SM
+haymaker/S
+haymaking
+haymow/SM
+hayrick/MS
+hayride/MS
+hayseed/MS
+haystack/SM
+haywire
+hazard/SMDG
+hazardous/Y
+haze/MZGJDRS
+hazel/SM
+hazelnut/MS
+hazer/M
+hazily
+haziness/M
+hazing/M
+hazmat
+hazy/RTP
+hdqrs
+he'd
+he'll
+he/M
+head/MDRZGJS
+headache/MS
+headband/MS
+headbanger/S
+headbanging
+headboard/SM
+headbutt/DSG
+headcase/S
+headcheese
+headcount/S
+headdress/MS
+header/M
+headfirst
+headgear/M
+headhunt/DRSZG
+headhunter/M
+headhunting/M
+headily
+headiness/M
+heading/M
+headlamp/MS
+headland/MS
+headless
+headlight/MS
+headline/MZGDRS
+headliner/M
+headlock/MS
+headlong
+headman/M
+headmaster/SM
+headmen
+headmistress/MS
+headphone/MS
+headpiece/MS
+headpin/SM
+headquarter/SDG
+headquarters/M
+headrest/MS
+headroom/M
+headscarf
+headscarves
+headset/SM
+headship/SM
+headshrinker/SM
+headsman/M
+headsmen
+headstall/SM
+headstand/SM
+headstone/SM
+headstrong
+headteacher/S
+headwaiter/SM
+headwaters/M
+headway/M
+headwind/SM
+headword/SM
+heady/RTP
+heal/DRHZGS
+healed/U
+healer/M
+health/M
+healthcare
+healthful/PY
+healthfulness/M
+healthily/U
+healthiness/UM
+healthy/UTRP
+heap/MDGS
+hear/AHGJS
+heard/AU
+hearer/SM
+hearing/AM
+hearken/SGD
+hearsay/M
+hearse's
+hearse/AS
+heart/SM
+heartache/MS
+heartbeat/MS
+heartbreak/SMG
+heartbroken
+heartburn/M
+hearten/ESGD
+heartfelt
+hearth/M
+hearthrug/S
+hearths
+hearthstone/SM
+heartily
+heartiness/M
+heartland/MS
+heartless/PY
+heartlessness/M
+heartrending/Y
+heartsick/P
+heartsickness/M
+heartstrings/M
+heartthrob/MS
+heartwarming
+heartwood/M
+hearty/RSMPT
+heat's
+heat/ADGS
+heated/U
+heatedly
+heater/SM
+heath/MNRX
+heathen/M
+heathendom/M
+heathenish
+heathenism/M
+heather/M
+heaths
+heating/M
+heatproof
+heatstroke/M
+heatwave/S
+heave/DRSMZG
+heaven/SMY
+heavenly/TR
+heavens/M
+heavenward/S
+heaver/M
+heavily
+heaviness/M
+heavy/RSMTP
+heavyhearted
+heavyset
+heavyweight/MS
+heck/M
+heckle/DRSMZG
+heckler/M
+heckling/M
+hectare/SM
+hectic
+hectically
+hectogram/SM
+hectometre/MS
+hector/SMDG
+hedge/DRSMZG
+hedgehog/MS
+hedgehop/S
+hedgehopped
+hedgehopping
+hedger/M
+hedgerow/SM
+hedonism/M
+hedonist/MS
+hedonistic
+heed/MDGS
+heeded/U
+heedful/Y
+heedless/PY
+heedlessness/M
+heehaw/SMDG
+heel/MDGS
+heelless
+heft/MDGS
+heftily
+heftiness/M
+hefty/PRT
+hegemonic
+hegemony/M
+hegira/SM
+heifer/SM
+height/XSMN
+heighten/DG
+heinous/YP
+heinousness/M
+heir/MS
+heiress/MS
+heirloom/SM
+heist/SMDG
+held
+helical
+helices
+helicopter/SGMD
+heliocentric
+heliotrope/SM
+helipad/S
+heliport/MS
+helium/M
+helix/M
+hell/M
+hellbent
+hellcat/MS
+hellebore/M
+hellfire
+hellhole/MS
+hellion/MS
+hellish/YP
+hellishness/M
+hello/SM
+helluva
+helm/MS
+helmet/SMD
+helmsman/M
+helmsmen
+helot/SM
+help/MDRZGSJ
+helper/M
+helpful/UY
+helpfulness/M
+helping/M
+helpless/PY
+helplessness/M
+helpline/SM
+helpmate/SM
+helve/SM
+hem/SM
+hematite/M
+hematologic
+hematological
+hematologist/MS
+hematology/M
+heme's
+hemiplegia
+hemisphere/SM
+hemispheric
+hemispherical
+hemline/SM
+hemlock/SM
+hemmed
+hemmer/SM
+hemming
+hemoglobin/M
+hemophilia/M
+hemophiliac/MS
+hemorrhage/MGDS
+hemorrhagic
+hemorrhoid/MS
+hemostat/MS
+hemp/MN
+hemstitch/MDSG
+hen/M
+hence
+henceforth
+henceforward
+henchman/M
+henchmen
+henna/SMDG
+henpeck/GSD
+hep
+heparin/M
+hepatic
+hepatitis/M
+hepatocyte/S
+hepper
+heppest
+heptagon/MS
+heptagonal
+heptathlon/SM
+herald/SMDG
+heralded/U
+heraldic
+heraldry/M
+herb/MS
+herbaceous
+herbage/M
+herbal/S
+herbalist/MS
+herbicidal
+herbicide/MS
+herbivore/SM
+herbivorous
+herculean
+herd/MDRZGS
+herder/M
+herdsman/M
+herdsmen
+here/M
+hereabout/S
+hereafter/SM
+hereby
+hereditary
+heredity/M
+herein
+hereinafter
+hereof
+hereon
+heresy/SM
+heretic/SM
+heretical
+hereto
+heretofore
+hereunder
+hereunto
+hereupon
+herewith
+heritable/I
+heritage/MS
+hermaphrodite/SM
+hermaphroditic
+hermetic
+hermetical/Y
+hermit/SM
+hermitage/MS
+hermitian
+hernia/SM
+hernial
+herniate/GNDS
+herniation/M
+hero/M
+heroes
+heroic/S
+heroically
+heroics/M
+heroin/SM
+heroine/SM
+heroism/M
+heron/SM
+herpes/M
+herpetologist/SM
+herpetology/M
+herring/MS
+herringbone/M
+herself
+hertz/M
+hesitance/M
+hesitancy/M
+hesitant/Y
+hesitate/DSGNX
+hesitating/UY
+hesitation/M
+hessian
+hetero/SM
+heterodox
+heterodoxy/M
+heterogeneity/M
+heterogeneous/Y
+heterosexual/MYS
+heterosexuality/M
+heuristic/MS
+heuristically
+heuristics/M
+hew/ZGSDR
+hewer/M
+hex/GMDS
+hexadecimal/S
+hexagon/MS
+hexagonal
+hexagram/SM
+hexameter/SM
+hey
+heyday/SM
+hf
+hgt
+hgwy
+hi/SD
+hiatus/MS
+hibachi/MS
+hibernate/GNDS
+hibernation/M
+hibernator/MS
+hibiscus/MS
+hiccough/DG
+hiccoughs
+hiccup/GSMD
+hick/MS
+hickey/SM
+hickory/SM
+hid
+hidden
+hide/MZGJDRS
+hideaway/SM
+hidebound
+hideous/YP
+hideousness/M
+hideout/MS
+hider/M
+hiding/M
+hie/S
+hieing
+hierarchic
+hierarchical/Y
+hierarchy/SM
+hieroglyph/M
+hieroglyphic/MS
+hieroglyphs
+high/MRYZTP
+highball/SM
+highborn
+highboy/MS
+highbrow/SM
+highchair/MS
+highfalutin
+highhanded/PY
+highhandedness/M
+highland/MRZS
+highlander/M
+highlight/SMDRZG
+highlighter/M
+highness/M
+highroad/MS
+highs
+hightail/DSG
+highway/MS
+highwayman/M
+highwaymen
+hijab/SM
+hijack/SJZGMDR
+hijacker/M
+hijacking/M
+hike/MZGDRS
+hiker/M
+hiking/M
+hilarious/PY
+hilariousness/M
+hilarity/M
+hill/MS
+hillbilly/SM
+hilliness/M
+hillock/MS
+hillside/SM
+hilltop/MS
+hilly/PRT
+hilt/MS
+him/S
+himself
+hind/MRZS
+hinder/GD
+hindered/U
+hindmost
+hindquarter/MS
+hindrance/SM
+hindsight/M
+hinge's
+hinge/UDSG
+hint/MDRZGS
+hinter/M
+hinterland/SM
+hip/SPM
+hipbath
+hipbaths
+hipbone/MS
+hiphuggers
+hipness/M
+hipped
+hipper
+hippest
+hippie/SM
+hipping
+hippo/SM
+hippocampus
+hippodrome/SM
+hippopotamus/MS
+hippy
+hipster/MS
+hiragana
+hire's
+hire/AGDS
+hireling/MS
+hirsute/P
+hirsuteness/M
+hiss/MDSG
+hist
+histamine/MS
+histogram/MS
+histologist/SM
+histology/M
+histopathology
+historian/MS
+historic
+historical/Y
+historicity/M
+historiographer/MS
+historiography/M
+history/SM
+histrionic/S
+histrionically
+histrionics/M
+hit/SM
+hitch's
+hitch/UDSG
+hitcher/MS
+hitchhike/DRSMZG
+hitchhiker/M
+hither
+hitherto
+hitter/SM
+hitting
+hive/MGDS
+hivemind/SM
+hiya
+hmm
+ho/SMDRYZ
+hoagie/MS
+hoard/SZGMDRJ
+hoarder/M
+hoarding/M
+hoarfrost/M
+hoariness/M
+hoarse/YTRP
+hoarseness/M
+hoary/TRP
+hoax/MDRSZG
+hoaxer/M
+hob/SM
+hobbit/S
+hobble/MZGDRS
+hobbler/M
+hobby/SM
+hobbyhorse/MS
+hobbyist/SM
+hobgoblin/MS
+hobnail/SGMD
+hobnob/S
+hobnobbed
+hobnobbing
+hobo/MS
+hoc
+hock/MDSG
+hockey/M
+hockshop/MS
+hod/SM
+hodgepodge/SM
+hoe/SM
+hoecake/SM
+hoedown/SM
+hoeing
+hoer/M
+hog/SM
+hogan/SM
+hogback/SM
+hogged
+hogging
+hoggish/Y
+hogshead/SM
+hogtie/DS
+hogtying
+hogwash/M
+hoick/SGD
+hoist/SGMD
+hoke/GDS
+hokey
+hokier
+hokiest
+hokum/M
+hold/MRJSZG
+holdall/S
+holder/M
+holding/M
+holdout/SM
+holdover/SM
+holdup/MS
+hole/MGDS
+holey
+holiday/SMDG
+holidaymaker/S
+holiness/UM
+holism
+holistic
+holistically
+holler/MDGS
+hollow/MDRYPSTG
+hollowness/M
+holly/SM
+hollyhock/MS
+holmium/M
+holocaust/SM
+hologram/MS
+holograph/M
+holographic
+holographs
+holography/M
+hols
+holster/SMDG
+holy/URPT
+homage/MS
+hombre/MS
+homburg/SM
+home/MYZGDRS
+homebody/SM
+homeboy/SM
+homecoming/SM
+homegrown
+homeland/MS
+homeless/MP
+homelessness/M
+homelike
+homeliness/M
+homely/PRT
+homemade
+homemaker/SM
+homemaking/M
+homeopath/M
+homeopathic
+homeopaths
+homeopathy/M
+homeostasis/M
+homeostatic
+homeowner/MS
+homepage/MS
+homer/GMD
+homeroom/MS
+homeschooling/M
+homesick/P
+homesickness/M
+homespun/M
+homestead/SMDRZG
+homesteader/M
+homestretch/MS
+hometown/MS
+homeward/S
+homework/MRZG
+homewrecker/SM
+homey/SMP
+homeyness/M
+homicidal
+homicide/MS
+homier
+homiest
+homiletic
+homily/SM
+hominid/SM
+hominoid/S
+hominy/M
+homo/MS
+homoerotic
+homogeneity/M
+homogeneous/Y
+homogenization/M
+homogenize/DSG
+homograph/M
+homographs
+homologous
+homology
+homonym/SM
+homophobia/M
+homophobic
+homophone/MS
+homosexual/SM
+homosexuality/M
+hon/SZTGMDR
+honcho/MS
+hone/MS
+honer/M
+honest/EYT
+honester
+honesty/EM
+honey/SGMD
+honeybee/SM
+honeycomb/MDSG
+honeydew/SM
+honeylocust/M
+honeymoon/ZGMDRS
+honeymooner/M
+honeypot/S
+honeysuckle/SM
+honk/MDRSZG
+honker/M
+honky/SM
+honorarily
+honorarium/MS
+honorary
+honorific/MS
+honour/EMDSBG
+honourableness/M
+honourably/E
+honouree/MS
+honourer/MS
+hooch/M
+hood/MDSG
+hoodie/MS
+hoodlum/SM
+hoodoo/MDSG
+hoodwink/DGS
+hooey/M
+hoof/MDRSZG
+hook's
+hook/UDSG
+hookah/M
+hookahs
+hooker/MS
+hookup/MS
+hookworm/MS
+hooky/M
+hooligan/MS
+hooliganism/M
+hoop/MDSG
+hoopla/M
+hooray
+hoosegow/SM
+hoot/MDRSZG
+hootenanny/SM
+hooter/M
+hoover/DSG
+hooves
+hop/SGMD
+hope/MS
+hopeful/PSMY
+hopefulness/M
+hopeless/YP
+hopelessness/M
+hopped
+hopper/MS
+hopping
+hopscotch/MDSG
+hora/MS
+horde/DSMG
+horehound/SM
+horizon/SM
+horizontal/SMY
+hormonal
+hormone/SM
+horn/MDS
+hornbeam
+hornblende/M
+hornet/MS
+hornless
+hornlike
+hornpipe/MS
+horny/TR
+horologic
+horological
+horologist/MS
+horology/M
+horoscope/SM
+horrendous/Y
+horrible/P
+horribleness/M
+horribly
+horrid/Y
+horrific
+horrifically
+horrify/DSG
+horrifying/Y
+horror/MS
+horse's
+horse/UDSG
+horseback/M
+horsebox/S
+horseflesh/M
+horsefly/SM
+horsehair/M
+horsehide/M
+horselaugh/M
+horselaughs
+horseless
+horseman/M
+horsemanship/M
+horsemen
+horseplay/M
+horsepower/M
+horseradish/MS
+horseshit/!
+horseshoe/DSM
+horseshoeing
+horsetail/SM
+horsetrading
+horsewhip/SM
+horsewhipped
+horsewhipping
+horsewoman/M
+horsewomen
+horsey
+horsier
+horsiest
+hortatory
+horticultural
+horticulturalist/S
+horticulture/M
+horticulturist/MS
+hosanna/SM
+hose/MGDS
+hosepipe/S
+hosier/MS
+hosiery/M
+hosp
+hospholipase
+hospice/MS
+hospitable/I
+hospitably/I
+hospital/SM
+hospitality/M
+hospitalization/SM
+hospitalize/DSG
+host/MDSG
+hostage/MS
+hostel/ZGMDRS
+hosteler/M
+hostelry/SM
+hostess/MDSG
+hostile/MYS
+hostilities/M
+hostility/SM
+hostler/MS
+hot/SYP
+hotbed/MS
+hotblooded
+hotbox/MS
+hotcake/SM
+hotel/SM
+hotelier/MS
+hotfoot/MDGS
+hothead/DSM
+hotheaded/YP
+hotheadedness/M
+hothouse/SM
+hotkey/S
+hotlink/S
+hotness/M
+hotplate/SM
+hotpot/S
+hots/M
+hotshot/MS
+hotted
+hotter
+hottest
+hottie/S
+hotting
+hound/SGMD
+hour/MYS
+hourglass/MS
+houri/SM
+house's
+house/ADSG
+houseboat/SM
+housebound
+houseboy/SM
+housebreak/RSZG
+housebreaker/M
+housebreaking/M
+housebroke
+housebroken
+houseclean/DSG
+housecleaning/M
+housecoat/SM
+housefly/SM
+houseful/SM
+household/SMRZ
+householder/M
+househusband/SM
+housekeeper/MS
+housekeeping/M
+houselights/M
+housemaid/SM
+houseman/M
+housemaster/S
+housemate/S
+housemen
+housemistress/S
+housemother/SM
+houseparent/SM
+houseplant/MS
+houseproud
+houseroom
+housetop/SM
+housewares/M
+housewarming/SM
+housewife/MY
+housewives
+housework/M
+housing/MS
+hove
+hovel/SM
+hover/SGD
+hoverboard/MS
+hovercraft/MS
+how'd
+how're
+how/SM
+howbeit
+howdah/M
+howdahs
+howdy
+however
+howitzer/SM
+howl/MDRSZG
+howler/M
+howsoever
+hoyden/MS
+hoydenish
+hp
+hr/S
+ht
+huarache/SM
+hub/SM
+hubbub/SM
+hubby/SM
+hubcap/SM
+hubris/M
+huckleberry/SM
+huckster/SGMD
+hucksterism/M
+huddle/DSMG
+hue/DSM
+huff/MDSG
+huffily
+huffiness/M
+huffy/PRT
+hug/STMR
+huge/YP
+hugeness/M
+hugged
+hugging
+huh
+hula/MS
+hulk/MSG
+hull/MDRSZG
+hullabaloo/SM
+huller/M
+hum/SM
+human/SMRYTP
+humane/PY
+humaneness/M
+humanism/M
+humanist/SM
+humanistic
+humanitarian/MS
+humanitarianism/M
+humanities/M
+humanity/ISM
+humanization/CM
+humanize/CDSG
+humanizer/SM
+humankind/M
+humanness/M
+humanoid/SM
+humble/DRSZTGJP
+humbleness/M
+humbler/M
+humbly
+humbug/SM
+humbugged
+humbugging
+humdinger/MS
+humdrum/M
+humeral
+humeri
+humerus/M
+humid/Y
+humidification/M
+humidifier/CM
+humidify/CZGDRS
+humidity/M
+humidor/SM
+humiliate/DSGNX
+humiliating/Y
+humiliation/M
+humility/M
+hummed
+hummer/SM
+humming
+hummingbird/SM
+hummock/SM
+hummocky
+hummus/M
+humongous
+humoresque
+humorist/MS
+humorlessly
+humorous/PY
+humorousness/M
+humour/GSMD
+humourless/P
+humourlessness/M
+hump/MDSG
+humpback/MDS
+humph/DG
+humphs
+humus/M
+hunch/MDSG
+hunchback/SMD
+hundred/SMH
+hundredfold
+hundredth/M
+hundredths
+hundredweight/SM
+hung
+hunger/SMDG
+hungover
+hungrily
+hungriness/M
+hungry/PRT
+hunk/MRSZ
+hunker/DG
+hunky/RT
+hunt/MDRSZG
+hunter/M
+hunting/M
+huntress/MS
+huntsman/M
+huntsmen
+hurdle/DRSMZG
+hurdler/M
+hurdling/M
+hurl/MDRSZG
+hurler/M
+hurling/M
+hurrah/GMD
+hurrahs
+hurricane/MS
+hurried/UY
+hurry/DSMG
+hurt/MSG
+hurtful/YP
+hurtfulness/M
+hurtle/DSG
+husband/GMDS
+husbandman/M
+husbandmen
+husbandry/M
+hush/MDSG
+husk/MDRSZG
+husker/M
+huskily
+huskiness/M
+husky/PRSMT
+hussar/SM
+hussy/SM
+hustings/M
+hustle/DRSMZG
+hustler/M
+hut/SM
+hutch/MS
+huzzah/MDG
+huzzahs
+hwy
+hyacinth/M
+hyacinths
+hybrid/SM
+hybridism/M
+hybridization/M
+hybridize/DSG
+hydra/SM
+hydrangea/SM
+hydrant/MS
+hydrate's
+hydrate/CGNDS
+hydration/CM
+hydraulic/S
+hydraulically
+hydraulics/M
+hydro/M
+hydrocarbon/MS
+hydrocephalus/M
+hydrochloride
+hydrocortisone
+hydrodynamic/S
+hydrodynamics/M
+hydroelectric
+hydroelectrically
+hydroelectricity/M
+hydrofoil/MS
+hydrogen/M
+hydrogenate/CGDS
+hydrogenation/M
+hydrogenous
+hydrologist/MS
+hydrology/M
+hydrolyses
+hydrolysis/M
+hydrolyze/DSG
+hydrometer/SM
+hydrometry/M
+hydrophilic
+hydrophobia/M
+hydrophobic
+hydrophone/SM
+hydroplane/GDSM
+hydroponic/S
+hydroponically
+hydroponics/M
+hydrosphere/M
+hydrotherapy/M
+hydrothermal
+hydrous
+hydroxide/SM
+hyena/SM
+hygiene/M
+hygienic/U
+hygienically
+hygienist/MS
+hygrometer/SM
+hying
+hymen/SM
+hymeneal
+hymn/MDSG
+hymnal/MS
+hymnbook/SM
+hype/MGDRS
+hyperactive
+hyperactivity/M
+hyperbola/SM
+hyperbole/M
+hyperbolic
+hypercritical/Y
+hypercube
+hyperglycemia/M
+hyperinflation
+hyperlink/GSMD
+hypermarket/S
+hypermedia/M
+hyperparathyroidism
+hyperplane
+hypersensitive/P
+hypersensitiveness/M
+hypersensitivity/SM
+hyperspace/S
+hypertension/M
+hypertensive/SM
+hypertext/M
+hyperthyroid/M
+hyperthyroidism/M
+hypertrophy/DSMG
+hyperventilate/GNDS
+hyperventilation/M
+hypervisor/MS
+hyphen/MDSG
+hyphenate/XDSMGN
+hyphenation/M
+hypnoses
+hypnosis/M
+hypnotherapist/S
+hypnotherapy/M
+hypnotic/SM
+hypnotically
+hypnotism/M
+hypnotist/MS
+hypnotize/GDS
+hypo/MS
+hypoallergenic
+hypochondria/M
+hypochondriac/SM
+hypocrisy/SM
+hypocrite/MS
+hypocritical/Y
+hypodermic/MS
+hypoglycemia/M
+hypoglycemic/SM
+hypotenuse/MS
+hypothalami
+hypothalamus/M
+hypothermia/M
+hypotheses
+hypothesis/M
+hypothesize/DSG
+hypothetical/Y
+hypothyroid/M
+hypothyroidism/M
+hyssop/M
+hysterectomy/SM
+hysteresis
+hysteria/M
+hysteric/SM
+hysterical/Y
+hysterics/M
+i/US
+iOS/M
+iPad/M
+iPhone/M
+iPod/M
+iTunes/M
+iamb/MS
+iambi
+iambic/SM
+iambus/MS
+ibex/MS
+ibid
+ibidem
+ibis/MS
+ibuprofen/M
+ice's
+ice/CDSG
+iceberg/SM
+iceboat/SM
+icebound
+icebox/MS
+icebreaker/SM
+icecap/SM
+iceman/M
+icemen
+ichthyologist/MS
+ichthyology/M
+icicle/SM
+icily
+iciness/M
+icing/SM
+icky/RT
+icon/MS
+iconic
+iconoclasm/M
+iconoclast/SM
+iconoclastic
+iconography/M
+ictus/M
+icy/TPR
+id/SMY
+idea/MS
+ideal/SMY
+idealism/M
+idealist/SM
+idealistic
+idealistically
+idealization/MS
+idealize/DSG
+idem
+idempotent
+identical/Y
+identifiable/U
+identification/M
+identified/U
+identify/ZGNDRSX
+identikit/S
+identity/SM
+ideogram/SM
+ideograph/M
+ideographs
+ideological/Y
+ideologist/SM
+ideologue/MS
+ideology/SM
+ides/M
+idiocy/SM
+idiom/SM
+idiomatic/U
+idiomatically
+idiopathic
+idiosyncrasy/SM
+idiosyncratic
+idiosyncratically
+idiot/SM
+idiotic
+idiotically
+idle/MZTGDRSP
+idleness/M
+idler/M
+idol/MS
+idolater/SM
+idolatress/MS
+idolatrous
+idolatry/M
+idolization/M
+idolize/GDS
+idyll/SM
+idyllic
+idyllically
+if/SM
+iffiness/M
+iffy/RTP
+igloo/SM
+igneous
+ignitable
+ignite/AGDS
+ignition/MS
+ignoble
+ignobly
+ignominious/Y
+ignominy/SM
+ignoramus/MS
+ignorance/M
+ignorant/Y
+ignore/GDS
+iguana/MS
+ii
+iii
+ilea
+ileitis/M
+ileum/M
+ilia
+ilium/M
+ilk/SM
+ill/SMP
+illegal/MYS
+illegality/SM
+illegibility/M
+illegible
+illegibly
+illegitimacy/M
+illegitimate/Y
+illiberal/Y
+illiberality/M
+illicit/YP
+illicitness/M
+illimitable
+illiteracy/M
+illiterate/MYS
+illness/MS
+illogical/Y
+illogicality/M
+illuminate/GNXDS
+illuminating/Y
+illumination/M
+illumine/DSBG
+illus/V
+illusion/EMS
+illusionist/SM
+illusory
+illustrate/GNVXDS
+illustration/M
+illustrative/Y
+illustrator/SM
+illustrious/PY
+illustriousness/M
+image/DSMG
+imagery/M
+imaginable/U
+imaginably/U
+imaginal
+imaginary
+imagination/MS
+imaginative/UY
+imagine/DSBJG
+imago/M
+imagoes
+imam/MS
+imbalance/DSM
+imbecile/MS
+imbecilic
+imbecility/SM
+imbibe/ZGDRS
+imbiber/M
+imbrication/M
+imbroglio/SM
+imbue/DSG
+imitable/I
+imitate/DSGNVX
+imitation/M
+imitative/PY
+imitativeness/M
+imitator/SM
+immaculate/PY
+immaculateness/M
+immanence/M
+immanency/M
+immanent/Y
+immaterial/YP
+immateriality/M
+immaterialness/M
+immature/Y
+immaturity/M
+immeasurable
+immeasurably
+immediacies/M
+immediacy/SM
+immediate/PY
+immediateness/M
+immemorial/Y
+immense/Y
+immensity/SM
+immerse/XDSGNV
+immersible
+immersion/M
+immigrant/SM
+immigrate/DSGN
+immigration/M
+imminence/M
+imminent/Y
+immobile
+immobility/M
+immobilization/M
+immobilize/ZGDRS
+immoderate/Y
+immodest/Y
+immodesty/M
+immolate/DSGN
+immolation/M
+immoral/Y
+immorality/SM
+immortal/MYS
+immortality/M
+immortalize/DSG
+immovability/M
+immovable
+immovably
+immune
+immunity/M
+immunization/SM
+immunize/GDS
+immunodeficiency/M
+immunodeficient
+immunoglobulin/S
+immunologic
+immunological
+immunologist/MS
+immunology/M
+immure/DSG
+immutability/M
+immutable
+immutably
+imp/SMR
+impact/SMDG
+impair/SDGL
+impaired/U
+impairment/MS
+impala/SM
+impale/DSGL
+impalement/M
+impalpable
+impalpably
+impart/SDG
+impartial/Y
+impartiality/M
+impassably
+impasse/BSMV
+impassibility/M
+impassible
+impassibly
+impassioned
+impassive/YP
+impassiveness/M
+impassivity/M
+impasto/M
+impatience/MS
+impatiens/M
+impatient/Y
+impeach/ZGBLDRS
+impeachable/U
+impeacher/M
+impeachment/SM
+impeccability/M
+impeccable
+impeccably
+impecunious/PY
+impecuniousness/M
+impedance/M
+impede/DSG
+impeded/U
+impediment/SM
+impedimenta/M
+impel/S
+impelled
+impeller/MS
+impelling
+impend/SDG
+impenetrability/M
+impenetrable
+impenetrably
+impenitence/M
+impenitent/Y
+imperative/SMY
+imperceptibility/M
+imperceptible
+imperceptibly
+imperceptive
+imperf
+imperfect/SMYP
+imperfection/MS
+imperfectness/M
+imperial/MYS
+imperialism/M
+imperialist/SM
+imperialistic
+imperialistically
+imperil/SL
+imperilled
+imperilling
+imperilment/M
+imperious/PY
+imperiousness/M
+imperishable
+imperishably
+impermanence/M
+impermanent/Y
+impermeability/M
+impermeable
+impermeably
+impermissible
+impersonal/Y
+impersonate/GNXDS
+impersonation/M
+impersonator/SM
+impertinence/MS
+impertinent/Y
+imperturbability/M
+imperturbable
+imperturbably
+impervious/Y
+impetigo/M
+impetuosity/M
+impetuous/YP
+impetuousness/M
+impetus/MS
+impiety/SM
+impinge/LDSG
+impingement/M
+impious/PY
+impiousness/M
+impish/YP
+impishness/M
+implacability/M
+implacable
+implacably
+implant/BSGMD
+implantation/M
+implausibility/SM
+implausible
+implausibly
+implement/GBMDRS
+implementable/U
+implementation/SM
+implemented/U
+implicate/DSG
+implication/M
+implicit/PY
+implicitness/M
+implode/DSG
+implore/DSG
+imploring/Y
+implosion/MS
+implosive
+imply/XDSGN
+impolite/YP
+impoliteness/MS
+impolitic
+imponderable/MS
+import/ZGBSMDR
+importance/M
+important/Y
+importation/MS
+importer/M
+importunate/Y
+importune/GDS
+importunity/M
+impose/ADSG
+imposer/MS
+imposing/U
+imposingly
+imposition/MS
+impossibility/SM
+impossible/S
+impossibly
+impost/ZSMR
+imposter/M
+imposture/MS
+impotence/M
+impotency/M
+impotent/Y
+impound/DGS
+impoverish/DSLG
+impoverishment/M
+impracticability
+impracticable
+impracticably
+impractical/Y
+impracticality/M
+imprecate/DSXGN
+imprecation/M
+imprecise/PYN
+impreciseness/M
+imprecision/M
+impregnability/M
+impregnable
+impregnably
+impregnate/GNDS
+impregnation/M
+impresario/SM
+impress/MDSGV
+impressed/U
+impressibility/M
+impressible
+impression/BSM
+impressionability/M
+impressionism/M
+impressionist/SM
+impressionistic
+impressive/PY
+impressiveness/M
+imprimatur/SM
+imprint/MDRZGS
+imprinter/M
+imprison/SDLG
+imprisonment/SM
+improbability/SM
+improbable
+improbably
+impromptu/SM
+improper/Y
+impropriety/SM
+improve/GBDSL
+improved/U
+improvement/MS
+improvidence/M
+improvident/Y
+improvisation/SM
+improvisational
+improvise/ZGDRS
+improviser/M
+imprudence/M
+imprudent/Y
+impudence/M
+impudent/Y
+impugn/ZGSDR
+impugner/M
+impulse/MGNVDS
+impulsion/M
+impulsive/PY
+impulsiveness/M
+impulsivity
+impunity/M
+impure/RYT
+impurity/SM
+imputation/SM
+impute/BDSG
+in/ASM
+inaccuracy/S
+inaction/M
+inadequacy/S
+inadvertence/M
+inadvertent/Y
+inalienability/M
+inalienably
+inamorata/SM
+inane/RYT
+inanimate/PY
+inanimateness/M
+inanity/SM
+inappropriate/Y
+inarticulate/Y
+inasmuch
+inaudible
+inaugural/SM
+inaugurate/XGNDS
+inauguration/M
+inboard/MS
+inbound
+inbox/MS
+inbreed/S
+inc/TGD
+incalculably
+incandescence/M
+incandescent/Y
+incantation/SM
+incapacitate/GNDS
+incarcerate/XDSGN
+incarceration/M
+incarnadine/DSG
+incarnate/AXGNDS
+incarnation/AM
+incendiary/SM
+incense/MGDS
+incentive's
+incentive/ES
+inception/SM
+incessant/Y
+incest/M
+incestuous/PY
+incestuousness/M
+inch/MDSG
+inchoate
+inchworm/SM
+incidence/SM
+incident/SM
+incidental/MYS
+incinerate/DSGN
+incineration/M
+incinerator/MS
+incipience/M
+incipient/Y
+incise/XGNVDS
+incision/M
+incisive/PY
+incisiveness/M
+incisor/MS
+incitement/MS
+inciter/MS
+incl
+inclement
+inclination/EM
+inclinations
+incline's
+incline/EGDS
+include/GDS
+inclusion/MS
+inclusive/YP
+inclusiveness/M
+incognito/MS
+incombustible
+incommode/GD
+incommodious
+incommunicado
+incompatibility/S
+incompetent/MS
+incomplete/Y
+inconceivability/M
+incongruous/PY
+incongruousness/M
+inconsolably
+inconstant/Y
+incontestability/M
+incontestably
+incontinent
+incontrovertibly
+inconvenience/GD
+incorporate/ADSGN
+incorporated/U
+incorporation/AM
+incorporeal
+incorrect/Y
+incorrigibility/M
+incorrigible
+incorrigibly
+incorruptibly
+increasing/Y
+increment/SMDG
+incremental/Y
+incrementalism
+incrementalist/SM
+incriminate/GNDS
+incrimination/M
+incriminatory
+incrustation/SM
+incubate/GNDS
+incubation/M
+incubator/SM
+incubus/MS
+inculcate/DSGN
+inculcation/M
+inculpate/DSG
+incumbency/SM
+incumbent/SM
+incunabula
+incunabulum/M
+incur/SB
+incurable/MS
+incurably
+incurious
+incurred
+incurring
+incursion/MS
+ind
+indebted/P
+indebtedness/M
+indeed
+indefatigable
+indefatigably
+indefeasible
+indefeasibly
+indefinably
+indelible
+indelibly
+indemnification/M
+indemnify/GDSXN
+indemnity/SM
+indentation/MS
+indention/M
+indenture/DG
+independent/MS
+indescribably
+indestructibly
+indeterminably
+indeterminacy/M
+indeterminate/Y
+index/ZGMDRS
+indexation/SM
+indexer/M
+indicate/XDSGNV
+indication/M
+indicative/SMY
+indicator/MS
+indict/GDSBL
+indictment/SM
+indie/S
+indigence/M
+indigenous
+indigent/SMY
+indignant/Y
+indignation/M
+indigo/M
+indirect/Y
+indiscipline
+indiscreet/Y
+indiscretion/S
+indiscriminate/Y
+indispensability/M
+indispensable/MS
+indispensably
+indissolubility
+indissolubly
+indistinguishably
+indite/GDS
+indium/M
+individual/MYS
+individualism/M
+individualist/MS
+individualistic
+individualistically
+individuality/M
+individualization/M
+individualize/GDS
+individuate/DSGN
+individuation/M
+indivisibly
+indoctrinate/GNDS
+indoctrination/M
+indolence/M
+indolent/Y
+indomitable
+indomitably
+indubitable
+indubitably
+induce/DRSZGL
+inducement/SM
+inducer/M
+induct/DGV
+inductance/M
+inductee/SM
+induction/MS
+inductive/Y
+indulge/DSG
+indulgence/SM
+indulgent/Y
+industrial/Y
+industrialism/M
+industrialist/SM
+industrialization/M
+industrialize/DSG
+industrious/YP
+industriousness/M
+industry/SM
+indwell/SG
+inebriate/MGNDS
+inebriation/M
+inedible
+ineffability/M
+ineffable
+ineffably
+inelastic
+ineligible/MS
+ineligibly
+ineluctable
+ineluctably
+inept/YP
+ineptitude/M
+ineptness/M
+inequality/S
+inert/YP
+inertia/M
+inertial
+inertness/M
+inescapable
+inescapably
+inestimably
+inevitability/M
+inevitable/M
+inevitably
+inexact/Y
+inexhaustibly
+inexorability
+inexorable
+inexorably
+inexpedient
+inexpert/Y
+inexpiable
+inexplicably
+inexpressibly
+inexpressive
+inextricably
+inf/ZT
+infallible
+infamy/SM
+infancy/M
+infant/MS
+infanticide/MS
+infantile
+infantry/SM
+infantryman/M
+infantrymen
+infarct/MS
+infarction/M
+infatuate/DSXGN
+infatuation/M
+infect/AESDG
+infected/U
+infection/ASM
+infectious/PY
+infectiousness/M
+infelicitous
+inference/SM
+inferential
+inferior/MS
+inferiority/M
+infernal/Y
+inferno/MS
+inferred
+inferring
+infest/GDS
+infestation/MS
+infidel/MS
+infidelity/S
+infiltrator/SM
+infinite/MV
+infinitesimal/SMY
+infinitival
+infinitive/MS
+infinitude/M
+infinity/SM
+infirm
+infirmary/SM
+infirmity/SM
+infix
+inflame/DSG
+inflammable
+inflammation/SM
+inflammatory
+inflatable/SM
+inflate/ADSG
+inflation/EM
+inflationary
+inflect/SDG
+inflection/MS
+inflectional
+inflict/SDGV
+infliction/M
+inflow/SM
+influence/MGDS
+influenced/U
+influential/Y
+influenza/M
+info/M
+infomercial/SM
+inform/Z
+informal/Y
+informant/SM
+informatics
+information/EM
+informational
+informative/PY
+informativeness/M
+informed/U
+infotainment/M
+infra
+infrared/M
+infrasonic
+infrastructural
+infrastructure/SM
+infrequence/M
+infrequent/Y
+infringement/MS
+infuriate/GDS
+infuriating/Y
+infuser/SM
+ingenious/PY
+ingeniousness/M
+ingenue/SM
+ingenuity/M
+ingenuous/EY
+ingenuousness/M
+ingest/SDG
+ingestion/M
+inglenook/SM
+ingot/SM
+ingrain/G
+ingrate/SM
+ingratiate/GNDS
+ingratiating/Y
+ingratiation/M
+ingredient/MS
+ingress/MS
+inguinal
+inhabit/DG
+inhabitable/U
+inhabitant/SM
+inhabited/U
+inhalant/SM
+inhalation/MS
+inhalator/MS
+inhaler/SM
+inharmonious
+inhere/DSG
+inherent/Y
+inherit/EGSD
+inheritance/EM
+inheritances
+inheritor/SM
+inhibit/GSD
+inhibition/SM
+inhibitor/SM
+inhibitory
+inhuman/Y
+inhumane/Y
+inimical/Y
+inimitably
+iniquitous/Y
+iniquity/SM
+initial/SMY
+initialism
+initialization
+initialize/DSG
+initialized/AU
+initialled
+initialling
+initiate/XMGNVDS
+initiated/U
+initiation/M
+initiative/SM
+initiator/MS
+initiatory
+initio
+inject/SDG
+injection/SM
+injector/SM
+injunctive
+injure/DRSZG
+injured/U
+injurer/M
+injurious
+ink/MD
+inkblot/SM
+inkiness/M
+inkling/SM
+inkstand/SM
+inkwell/MS
+inky/RTP
+inland/M
+inline
+inmate/SM
+inmost
+inn/SGMRJ
+innards/M
+innate/PY
+innateness/M
+innermost
+innersole/SM
+innerspring
+innervate/GNDS
+innervation/M
+inning/M
+innit
+innkeeper/MS
+innocence/M
+innocent/MYS
+innocuous/PY
+innocuousness/M
+innovate/XDSGNV
+innovation/M
+innovator/MS
+innovatory
+innuendo/SM
+innumerably
+innumerate
+inoculate/AGDS
+inoculation/MS
+inoperative
+inordinate/Y
+inorganic
+inositol
+inquire/ZGDR
+inquirer/M
+inquiring/Y
+inquiry/SM
+inquisition/MS
+inquisitional
+inquisitive/YP
+inquisitiveness/M
+inquisitor/SM
+inquisitorial
+inrush/MS
+insane/T
+insatiability/M
+insatiably
+inscribe/ZGDR
+inscriber/M
+inscription/MS
+inscrutability/M
+inscrutable/P
+inscrutableness/M
+inscrutably
+inseam/SM
+insecticidal
+insecticide/MS
+insectivore/MS
+insectivorous
+insecure/Y
+inseminate/DSGN
+insemination/M
+insensate
+insensible
+insensitive/Y
+inseparable/MS
+insert's
+insert/AGSD
+insertion/AM
+insertions
+insetting
+inshore
+inside/RSMZ
+insider/M
+insidious/YP
+insidiousness/M
+insight/MS
+insightful
+insignia/M
+insinuate/GNVDSX
+insinuation/M
+insinuator/SM
+insipid/PY
+insipidity/M
+insist/SGD
+insistence/M
+insistent/Y
+insisting/Y
+insofar
+insole/SM
+insolence/M
+insolent/Y
+insoluble
+insolubly
+insolvency/S
+insomnia/M
+insomniac/SM
+insomuch
+insouciance/M
+insouciant
+inspect/AGDS
+inspection/SM
+inspector/MS
+inspectorate/MS
+inspiration/MS
+inspirational
+inspiratory
+inspired/U
+inspiring/U
+inst
+instability/S
+install/UBZRSDG
+installation/MS
+installer/UM
+instalment/MS
+instance/GD
+instant/MRYS
+instantaneous/Y
+instantiate/DSG
+instar
+instate/AGDS
+instead
+instigate/DSGN
+instigation/M
+instigator/MS
+instillation/M
+instinct/VMS
+instinctive/Y
+instinctual
+institute/XMZGNDRS
+instituter/M
+institution/M
+institutional/Y
+institutionalization/M
+institutionalize/DSG
+instr
+instruct/SDGV
+instructed/U
+instruction/MS
+instructional
+instructive/Y
+instructor/MS
+instrument/MDSG
+instrumental/MYS
+instrumentalist/SM
+instrumentality/M
+instrumentation/M
+insubordinate
+insufferable
+insufferably
+insula
+insular
+insularity/M
+insulate/GNDS
+insulation/M
+insulator/MS
+insulin/M
+insult/SMDG
+insulting/Y
+insuperable
+insuperably
+insurance/SM
+insure/DRSZGB
+insured/SM
+insurer/M
+insurgence/SM
+insurgency/SM
+insurgent/MS
+insurmountably
+insurrection/SM
+insurrectionist/SM
+int
+intact
+intaglio/MS
+integer/MS
+integral/SMY
+integrate/AEVNGSD
+integration/EAM
+integrator
+integrity/M
+integument/SM
+intel/M
+intellect/MS
+intellectual/MYS
+intellectualism/M
+intellectualize/GDS
+intelligence/M
+intelligent/Y
+intelligentsia/M
+intelligibility/M
+intelligible/U
+intelligibly/U
+intended/SM
+intense/YTVR
+intensification/M
+intensifier/M
+intensify/DRSZGN
+intensity/S
+intensive/MYPS
+intensiveness/M
+intent/SMYP
+intention/MS
+intentional/UY
+intentness/M
+inter/ESL
+interact/SGVD
+interaction/SM
+interactive/Y
+interactivity
+interbred
+interbreed/GS
+intercede/GDS
+intercept/GMDS
+interception/MS
+interceptor/SM
+intercession/SM
+intercessor/MS
+intercessory
+interchange/DSMG
+interchangeability
+interchangeable
+interchangeably
+intercity
+intercollegiate
+intercom/SM
+intercommunicate/DSGN
+intercommunication/M
+interconnect/GDS
+interconnection/SM
+intercontinental
+intercourse/M
+intercultural
+interdenominational
+interdepartmental
+interdependence/M
+interdependent/Y
+interdict/GMDS
+interdiction/M
+interdisciplinary
+interest/ESMD
+interested/U
+interesting/Y
+interface/MGDS
+interfaith
+interfere/GDS
+interference/M
+interferon/M
+interfile/GDS
+intergalactic
+intergovernmental
+interim/M
+interior/SM
+interj
+interject/GDS
+interjection/SM
+interlace/GDS
+interlard/DGS
+interleave/DSG
+interleukin/M
+interline/GDSJ
+interlinear
+interlining/M
+interlink/DSG
+interlock/GMDS
+interlocutor/SM
+interlocutory
+interlope/ZGDRS
+interloper/M
+interlude/MGDS
+intermarriage/SM
+intermarry/GDS
+intermediary/SM
+intermediate/MYS
+interment/EM
+interments
+intermezzi
+intermezzo/MS
+interminably
+intermingle/DSG
+intermission/SM
+intermittence
+intermittency
+intermittent/Y
+intermix/GDS
+intern/GDL
+internal/SY
+internalization/M
+internalize/GDS
+international/SMY
+internationalism/M
+internationalist/SM
+internationalization
+internationalize/DSG
+internecine
+internee/SM
+internet
+internist/MS
+internment/M
+internship/MS
+interoffice
+interoperability
+interoperable
+interoperate/S
+interpenetrate/DSGN
+interpersonal
+interplanetary
+interplay/M
+interpolate/XDSGN
+interpolation/M
+interpose/GDS
+interposition/M
+interpret/AGVDS
+interpretation/AMS
+interpretative
+interpreted/U
+interpreter/MS
+interracial
+interred/E
+interregnum/SM
+interrelate/XDSGN
+interrelation/M
+interrelationship/MS
+interring/E
+interrogate/DSGNVX
+interrogation/M
+interrogative/MYS
+interrogator/SM
+interrogatory/SM
+interrupt/ZGMDRS
+interrupter/M
+interruption/MS
+interscholastic
+intersect/GDS
+intersection/SM
+intersectional
+intersectionality
+intersession/SM
+intersex
+intersperse/GNDS
+interspersion/M
+interstate/MS
+interstellar
+interstice/MS
+interstitial
+intertwine/GDS
+interurban
+interval/SM
+intervene/GDS
+intervention/SM
+interventionism/M
+interventionist/SM
+interview/ZGMDRS
+interviewee/MS
+interviewer/M
+intervocalic
+interwar
+interweave/GS
+interwove
+interwoven
+intestacy/M
+intestate
+intestinal
+intestine/MS
+intifada
+intimacy/SM
+intimate/MYGNDSX
+intimation/M
+intimidate/GNDS
+intimidating/Y
+intimidation/M
+intonation/SM
+intoxicant/SM
+intoxicate/DSGN
+intoxication/M
+intracranial
+intramural
+intramuscular
+intranet/MS
+intransigence/M
+intransigent/MYS
+intrastate
+intrauterine
+intravenous/MSY
+intrepid/Y
+intrepidity/M
+intricacy/SM
+intricate/Y
+intrigue/DRSMZG
+intriguer/M
+intriguing/Y
+intrinsic
+intrinsically
+intro/SM
+introduce/AGDS
+introduction/AM
+introductions
+introductory
+introit/SM
+introspect/GVDS
+introspection/M
+introspective/Y
+introversion/M
+introvert/MDS
+intrude/DRSZG
+intruder/M
+intrusion/SM
+intrusive/YP
+intrusiveness/M
+intuit/SDGV
+intuition/S
+intuitive/PY
+intuitiveness/M
+inundate/XDSGN
+inundation/M
+inure/DSG
+invade/DRSZG
+invader/M
+invalid/GMDYS
+invalidism/M
+invaluable
+invaluably
+invariant
+invasion/MS
+invasive
+invective/M
+inveigh/GD
+inveighs
+inveigle/ZGDRS
+inveigler/M
+invent/ASGVD
+invention/AMS
+inventive/PY
+inventiveness/M
+inventor/MS
+inventory/DSMG
+inverse/SMY
+invert/SMDRZG
+inverter/M
+invest/ASDGL
+investigate/GNVDSX
+investigation/M
+investigator/SM
+investigatory
+investiture/MS
+investment/AEM
+investor/SM
+inveteracy/M
+inveterate
+invidious/YP
+invidiousness/M
+invigilate/GNDS
+invigilator/S
+invigorate/ADSG
+invigorating/Y
+invigoration/M
+invincibility/M
+invincibly
+inviolability/M
+inviolably
+inviolate
+invitation/SM
+invitational/SM
+invite/DSMG
+invited/U
+invitee/SM
+inviting/Y
+invoke/DSG
+involuntariness/M
+involuntary/P
+involution/M
+involve/LDSG
+involved/U
+involvement/SM
+inward/SY
+ioctl
+iodide/SM
+iodine/M
+iodize/DSG
+ion/USM
+ionic
+ionization/UM
+ionize/UDSG
+ionizer/MS
+ionosphere/MS
+ionospheric
+iota/MS
+ipecac/SM
+irascibility/M
+irascible
+irascibly
+irate/YP
+irateness/M
+ire/M
+ireful
+irenic
+irides
+iridescence/M
+iridescent/Y
+iridium/M
+iris/MS
+irk/SGD
+irksome/YP
+irksomeness/M
+iron/MDSG
+ironclad/MS
+ironic
+ironical/Y
+ironing/M
+ironmonger/S
+ironmongery
+ironstone/M
+ironware/M
+ironwood/MS
+ironwork/M
+irony/SM
+irradiate/DSGN
+irradiation/M
+irrational/SMY
+irrationality/M
+irreclaimable
+irreconcilability/M
+irreconcilable
+irreconcilably
+irrecoverable
+irrecoverably
+irredeemable
+irredeemably
+irreducible
+irreducibly
+irrefutable
+irrefutably
+irregular/MYS
+irregularity/SM
+irrelevance/MS
+irrelevancy/MS
+irrelevant/Y
+irreligion
+irreligious
+irremediable
+irremediably
+irremovable
+irreparable
+irreparably
+irreplaceable
+irrepressible
+irrepressibly
+irreproachable
+irreproachably
+irresistible
+irresistibly
+irresolute/PYN
+irresoluteness/M
+irresolution/M
+irrespective
+irresponsibility/M
+irresponsible
+irresponsibly
+irretrievable
+irretrievably
+irreverence/M
+irreverent/Y
+irreversible
+irreversibly
+irrevocable
+irrevocably
+irrigable
+irrigate/DSGN
+irrigation/M
+irritability/M
+irritable
+irritably
+irritant/SM
+irritate/DSXGN
+irritating/Y
+irritation/M
+irrupt/DGVS
+irruption/SM
+ischemia
+ischemic
+isinglass/M
+isl
+island/SZMR
+islander/M
+isle/MS
+islet/SM
+ism/CM
+isms
+isn't
+isobar/MS
+isobaric
+isolate/DSMGN
+isolation/M
+isolationism/M
+isolationist/SM
+isomer/MS
+isomeric
+isomerism/M
+isometric/S
+isometrically
+isometrics/M
+isomorphic
+isomorphism
+isosceles
+isotherm/SM
+isotope/SM
+isotopic
+isotropic
+issuance/M
+issue/ADSMG
+issuer/MS
+isthmian
+isthmus/MS
+it'd
+it'll
+it/USM
+ital
+italic/SM
+italicization/M
+italicize/GDS
+italics/M
+itch/MDSG
+itchiness/M
+itchy/RPT
+item/MS
+itemization/M
+itemize/GDS
+iterate/AXGNVDS
+iteration/AM
+iterator/S
+itinerant/SM
+itinerary/SM
+itself
+iv/U
+ivory/SM
+ivy/DSM
+ix
+j/F
+jab/SM
+jabbed
+jabber/SMDRZG
+jabberer/M
+jabbing
+jabot/SM
+jacaranda/MS
+jack/MDGS
+jackal/SM
+jackass/MS
+jackboot/SMD
+jackdaw/MS
+jacket/SMD
+jackhammer/MS
+jackknife/MGDS
+jackknives
+jackpot/MS
+jackrabbit/MS
+jackstraw/MS
+jacquard/M
+jade/MGDS
+jaded/PY
+jadedness/M
+jadeite/M
+jag/SM
+jagged/TPRY
+jaggedness/M
+jaggies
+jaguar/SM
+jail/MDRZGS
+jailbird/SM
+jailbreak/SM
+jailer/M
+jailhouse/S
+jalapeno/MS
+jalopy/SM
+jalousie/MS
+jam/SM
+jamb/MS
+jambalaya/M
+jamboree/MS
+jammed
+jamming
+jammy/RT
+jangle/DRSMZG
+jangler/M
+janitor/SM
+janitorial
+japan/SM
+japanned
+japanning
+jape/MGDS
+jar/SM
+jardiniere/SM
+jarful/MS
+jargon/M
+jarred
+jarring/Y
+jasmine/SM
+jasper/M
+jato/MS
+jaundice/DSMG
+jaunt/SGMD
+jauntily
+jauntiness/M
+jaunty/RPT
+java/M
+javelin/SM
+jaw/SGMD
+jawbone/DSMG
+jawbreaker/MS
+jawline/S
+jay/SM
+jaybird/SM
+jaywalk/DRSZG
+jaywalker/M
+jaywalking/M
+jazz/MDSG
+jazzy/TR
+jct
+jealous/Y
+jealousy/SM
+jean/MS
+jeans/M
+jeep/MS
+jeer/MDSG
+jeering/MY
+jeez
+jejuna
+jejune
+jejunum/M
+jell/DSG
+jello/S
+jelly/GDSM
+jellybean/MS
+jellyfish/MS
+jellylike
+jellyroll/SM
+jemmy/GDS
+jennet/MS
+jenny/SM
+jeopardize/GDS
+jeopardy/M
+jeremiad/MS
+jerk/MDSG
+jerkily
+jerkin/MS
+jerkiness/M
+jerkwater
+jerky/TRMP
+jeroboam/S
+jerrybuilt
+jerrycan/S
+jersey/MS
+jest/MDRSZG
+jester/M
+jesting/Y
+jet/SM
+jetliner/SM
+jetport/MS
+jetsam/M
+jetted
+jetting
+jettison/MDSG
+jetty/SM
+jewel/SM
+jewelled
+jeweller/MS
+jewellery/M
+jewelling
+jewelries
+jg
+jib/SGMD
+jibbed
+jibbing
+jibe/MS
+jiff/MS
+jiffy/SM
+jig's
+jig/AS
+jigged/A
+jigger's
+jigger/ASDG
+jigging/A
+jiggle/DSMG
+jiggly
+jigsaw/SMDG
+jihad/SM
+jihadist/SM
+jilt/MDSG
+jimmy/DSMG
+jimsonweed/M
+jingle/DSMG
+jingly
+jingoism/M
+jingoist/SM
+jingoistic
+jink/DSG
+jinn
+jinni/M
+jinrikisha/SM
+jinx/MDSG
+jitney/SM
+jitterbug/MS
+jitterbugged
+jitterbugger/M
+jitterbugging
+jitters/M
+jittery/RT
+jive/MGDS
+job/SM
+jobbed
+jobber/SM
+jobbing
+jobholder/MS
+jobless/P
+joblessness/M
+jobshare/S
+jobsworth
+jobsworths
+jock/MS
+jockey/SGMD
+jockstrap/MS
+jocose/PY
+jocoseness/M
+jocosity/M
+jocular/Y
+jocularity/M
+jocund/Y
+jocundity/M
+jodhpurs/M
+joey/S
+jog/SM
+jogged
+jogger/SM
+jogging/M
+joggle/DSMG
+john/MS
+johnny/SM
+johnnycake/MS
+join's
+join/AFDSG
+joiner/FMS
+joinery/M
+joint's
+joint/EGSD
+jointly/F
+joist/SM
+jojoba
+joke/MZGDRS
+joker/M
+jokey
+jokier
+jokiest
+joking/Y
+jollification/SM
+jollily
+jolliness/M
+jollity/M
+jolly/TGPDRSM
+jolt/MDRSZG
+jolter/M
+jonquil/SM
+josh/MDRSZG
+josher/M
+jostle/MGDS
+jot/SM
+jotted
+jotter/MS
+jotting/MS
+joule/SM
+jounce/MGDS
+jouncy
+journal/MS
+journalese/M
+journalism/M
+journalist/SM
+journalistic
+journey/ZGMDRS
+journeyer/M
+journeyman/M
+journeymen
+journo/S
+joust/SZGMDR
+jouster/M
+jousting/M
+jovial/Y
+joviality/M
+jowl/MS
+jowly/TR
+joy/SGMD
+joyful/YP
+joyfuller
+joyfullest
+joyfulness/M
+joyless/PY
+joylessness/M
+joyous/YP
+joyousness/M
+joyridden
+joyride/RSMZG
+joyrider/M
+joyriding/M
+joyrode
+joystick/SM
+jr
+jubilant/Y
+jubilation/M
+jubilee/SM
+judder/GDS
+judge's
+judge/ADSG
+judgeship/M
+judgment/SM
+judgmental/Y
+judicatory/SM
+judicature/M
+judicial/Y
+judiciary/SM
+judicious/IYP
+judiciousness/IM
+judo/M
+jug/SM
+jugful/MS
+jugged
+juggernaut/SM
+jugging
+juggle/MZGDRS
+juggler/M
+jugglery/M
+jugular/SM
+juice/DRSMZG
+juicer/M
+juicily
+juiciness/M
+juicy/PTR
+jujitsu/M
+jujube/MS
+jukebox/MS
+julep/SM
+julienne
+jumble/MGDS
+jumbo/SM
+jump/MDRSZG
+jumper/M
+jumpily
+jumpiness/M
+jumpsuit/MS
+jumpy/TRP
+jun
+junco/SM
+junction/FISM
+juncture/FMS
+jungle/MS
+junior/MS
+juniper/SM
+junk/MDRSZG
+junker/M
+junket/MDSG
+junketeer/MS
+junkie/MTRS
+junkyard/MS
+junta/SM
+juridic
+juridical/Y
+jurisdiction/SM
+jurisdictional
+jurisprudence/M
+jurist/MS
+juristic
+juror/SM
+jury/ISM
+juryman/M
+jurymen
+jurywoman/M
+jurywomen
+just/RYPT
+justice/IMS
+justifiable/U
+justifiably/U
+justification/M
+justified/U
+justify/XGDSN
+justness/M
+jut/SM
+jute/M
+jutted
+jutting
+juvenile/SM
+juxtapose/DSG
+juxtaposition/SM
+k/IFGS
+kHz
+kW
+kWh
+kabbalah
+kaboom
+kabuki/M
+kaddish/MS
+kaffeeklatch/MS
+kaffeeklatsch/MS
+kahuna/S
+kaiser/MS
+kale/M
+kaleidoscope/MS
+kaleidoscopic
+kaleidoscopically
+kamikaze/MS
+kana
+kangaroo/MS
+kanji
+kaolin/M
+kapok/M
+kappa/SM
+kaput
+karakul/M
+karaoke/MS
+karat/SM
+karate/M
+karma/M
+karmic
+kart/MS
+katakana
+katydid/SM
+kayak/SMDG
+kayaking/M
+kayo/MDSG
+kazoo/SM
+kc
+kebab/SM
+kedgeree
+keel/MDSG
+keelhaul/DGS
+keen/MDRYSTGP
+keenness/M
+keep/MRSZG
+keeper/M
+keeping/M
+keepsake/MS
+keg/SM
+kelp/M
+kelvin/SM
+ken/SM
+kenned
+kennel/SM
+kennelled
+kennelling
+kenning
+keno/M
+kepi/MS
+kept
+keratin/M
+keratitis
+kerbside
+kerchief/SM
+kerfuffle/S
+kernel/SM
+kerosene/M
+kestrel/MS
+ketch/MS
+ketchup/M
+keto
+ketogenic
+ketone/S
+kettle/SM
+kettledrum/SM
+key/SGMD
+keybinding/S
+keyboard/ZGSMDR
+keyboarder/M
+keyboardist/SM
+keyhole/MS
+keynote/MZGDRS
+keynoter/M
+keypad/SM
+keypunch/ZGMDRS
+keypuncher/M
+keystone/MS
+keystroke/SM
+keyword/MS
+kg
+khaki/SM
+khan/MS
+kibble/DSMG
+kibbutz/MS
+kibbutzim
+kibitz/ZGDRS
+kibitzer/M
+kibosh/M
+kick/MDRSZG
+kickback/SM
+kickball/M
+kickboxing
+kicker/M
+kickoff/MS
+kickstand/MS
+kicky/RT
+kid/SM
+kidded
+kidder/SM
+kiddie/SM
+kidding
+kiddish
+kiddo/SM
+kidnap/S
+kidnapped
+kidnapper/MS
+kidnapping/MS
+kidney/SM
+kidskin/M
+kielbasa/MS
+kielbasi
+kike/S
+kill/JMDRSZG
+killdeer/SM
+killer/M
+killing/M
+killjoy/SM
+kiln/MDSG
+kilo/MS
+kilobyte/SM
+kilocoulomb/S
+kilocycle/SM
+kilogram/SM
+kilohertz/M
+kilojoule/S
+kilolitre/MS
+kilometre/MS
+kilonewton/S
+kilopascal/S
+kiloton/SM
+kilovolt/S
+kilowatt/SM
+kilt/MDRS
+kilter/M
+kimono/MS
+kin/M
+kinase
+kind's
+kind/UPRYT
+kinda
+kindergarten/MS
+kindergartner/SM
+kindhearted/PY
+kindheartedness/M
+kindle/AGDS
+kindliness/M
+kindling/M
+kindly/URT
+kindness/UM
+kindnesses
+kindred/M
+kinds
+kine/S
+kinematic/S
+kinematics/M
+kinetic/S
+kinetically
+kinetics/M
+kinfolk/SM
+kinfolks/M
+king/MYS
+kingdom/SM
+kingfisher/SM
+kingly/RT
+kingmaker/S
+kingpin/SM
+kingship/M
+kink/MDSG
+kinkily
+kinkiness/M
+kinky/TPR
+kinsfolk/M
+kinship/M
+kinsman/M
+kinsmen
+kinswoman/M
+kinswomen
+kiosk/SM
+kip/SM
+kipped
+kipper/MDGS
+kipping
+kirsch/MS
+kismet/M
+kiss/MDRSBZG
+kisser/M
+kissoff/SM
+kissogram/S
+kit/SGMD
+kitchen/SM
+kitchenette/MS
+kitchenware/M
+kite/MS
+kith/M
+kitsch/M
+kitschy
+kitted
+kitten/MS
+kittenish
+kitting
+kitty/SM
+kiwi/MS
+kiwifruit/MS
+kl
+klaxon/S
+kleptocracy
+kleptomania/M
+kleptomaniac/SM
+kludge/GDS
+kluge/DS
+klutz/MS
+klutziness/M
+klutzy/TRP
+km
+kn
+knack/SZMR
+knacker/GD
+knapsack/MS
+knave/SM
+knavery/M
+knavish/Y
+knead/SZGDR
+kneader/M
+knee/MDS
+kneecap/SM
+kneecapped
+kneecapping
+kneeing
+kneel/SG
+knell/SGMD
+knelt
+knew
+knicker/S
+knickerbockers/M
+knickers/M
+knickknack/MS
+knife/DSMG
+knight/MDYSG
+knighthood/MS
+knightliness/M
+knish/MS
+knit/MS
+knitted
+knitter/SM
+knitting/M
+knitwear/M
+knives
+knob/MS
+knobbly
+knobby/TR
+knock/SZGMDR
+knockabout
+knockdown/SM
+knocker/M
+knockoff/SM
+knockout/SM
+knockwurst/SM
+knoll/SM
+knot/MS
+knothole/SM
+knotted
+knotting
+knotty/TR
+know/SB
+knowing/UYS
+knowledge/M
+knowledgeable
+knowledgeably
+known
+knuckle/DSMG
+knuckleduster/S
+knucklehead/MS
+knurl/SGMD
+koala/SM
+koan/S
+kohl
+kohlrabi/M
+kohlrabies
+kola/MS
+kook/MS
+kookaburra/SM
+kookiness/M
+kooky/TPR
+kopeck/MS
+korma
+kosher/DSG
+kowtow/GMDS
+kph
+kraal/SM
+kraut/SM!
+krill/M
+krona/M
+krone/RM
+kronor
+kronur
+krypton/M
+kt
+kuchen/SM
+kudos/M
+kudzu/SM
+kumquat/MS
+kvetch/ZGMDRS
+kvetcher/M
+kw
+l/SDXTGJ
+la/M
+lab/SM
+label's
+label/AS
+labelled/UA
+labelling/A
+labia
+labial/SM
+labile
+labium/M
+laboratory/SM
+laborious/PY
+laboriousness/M
+labour/ZGSMDR
+labourer/M
+laboursaving
+laburnum/MS
+labyrinth/M
+labyrinthine
+labyrinths
+lac/M
+lace's
+lace/UGDS
+lacerate/DSGNX
+laceration/M
+lacewing/SM
+lacework/M
+lachrymal
+lachrymose
+lack/MDSG
+lackadaisical/Y
+lackey/SM
+lacklustre
+laconic
+laconically
+lacquer/GMDS
+lacrosse/M
+lactate/GNDS
+lactation/M
+lacteal
+lactic
+lactose/M
+lacuna/M
+lacunae
+lacy/RT
+lad/SGMDNJ
+ladder/GSMD
+laddie/SM
+laddish/P
+lade/S
+laden/U
+lading/M
+ladle/DSMG
+lady/SM
+ladybird/SM
+ladybug/MS
+ladyfinger/MS
+ladylike/U
+ladylove/MS
+ladyship/MS
+laetrile/M
+lag/SZMR
+lager/M
+laggard/MYS
+lagged
+lagging/M
+lagniappe/SM
+lagoon/SM
+laid/IA
+lain
+lair/MS
+laird/SM
+laity/M
+lake/MS
+lakefront/S
+lakeside
+lam/SM
+lama/MS
+lamasery/SM
+lamb/MDSG
+lambada/MS
+lambaste/GDS
+lambda/SM
+lambency/M
+lambent/Y
+lambkin/SM
+lambskin/SM
+lambswool
+lame/MYZTGDRSP
+lamebrain/MDS
+lameness/M
+lament/BSMDG
+lamentably
+lamentation/MS
+lamina/M
+laminae
+laminar
+laminate/MGNDS
+lamination/M
+lammed
+lamming
+lamp/MS
+lampblack/M
+lamplight/MRZ
+lamplighter/M
+lampoon/SGMD
+lamppost/SM
+lamprey/MS
+lampshade/SM
+lanai/SM
+lance/DRSMZG
+lancer/M
+lancet/SM
+land/MDRSGJ
+landau/SM
+landfall/MS
+landfill/MS
+landholder/SM
+landholding/MS
+landing/M
+landlady/SM
+landless/M
+landline/MS
+landlocked
+landlord/MS
+landlubber/MS
+landmark/MS
+landmass/MS
+landmine/S
+landowner/MS
+landownership
+landowning/SM
+landscape/MZGDRS
+landscaper/M
+landslid
+landslide/MGS
+landslip/S
+landsman/M
+landsmen
+landward/S
+lane/MS
+language/MS
+languid/PY
+languidness/M
+languish/DSG
+languor/SM
+languorous/Y
+lank/RYTP
+lankiness/M
+lankness/M
+lanky/RTP
+lanolin/M
+lantern/MS
+lanthanum/M
+lanyard/MS
+lap/SM
+laparoscopic
+laparoscopy
+laparotomy
+lapboard/SM
+lapdog/SM
+lapel/SM
+lapidary/SM
+lapin/SM
+lapped
+lappet/SM
+lapping
+lapse/AKGMSD
+laptop/SM
+lapwing/MS
+larboard/SM
+larcenist/SM
+larcenous
+larceny/SM
+larch/MS
+lard/MDRSZG
+larder/M
+lardy/RT
+large/RSPMYT
+largehearted
+largeness/M
+largess/M
+largish
+largo/SM
+lariat/SM
+lark/MDSG
+larkspur/SM
+larva/M
+larvae
+larval
+laryngeal
+larynges
+laryngitis/M
+larynx/M
+lasagne/MS
+lascivious/YP
+lasciviousness/M
+lase/ZGDRS
+laser/M
+lash/MDSGJ
+lashing/M
+lass/MS
+lassie/SM
+lassitude/M
+lasso/SMDG
+last/MDYSG
+lasting/Y
+lat/S
+latch's
+latch/UDSG
+latchkey/SM
+late/YTRP
+latecomer/MS
+latency/M
+lateness/M
+latent
+lateral/MDYSG
+latest/M
+latex/M
+lath/MDRSZG
+lathe/M
+lather/GMD
+lathery
+laths
+latices
+latish
+latitude/MS
+latitudinal
+latitudinarian/MS
+latrine/MS
+latte/RSM
+latter/MY
+lattice/MDS
+latticework/SM
+laud/MDSGB
+laudably
+laudanum/M
+laudatory
+laugh/BMDG
+laughably
+laughing/MY
+laughingstock/SM
+laughs
+laughter/M
+launch/AGMDS
+launcher/SM
+launchpad/SM
+launder/DRZGS
+launderer/M
+launderette/SM
+laundress/MS
+laundromat/MS
+laundry/SM
+laundryman/M
+laundrymen
+laundrywoman/M
+laundrywomen
+laureate/MS
+laureateship/M
+laurel/SM
+lav/SGD
+lava/M
+lavage/M
+lavaliere/SM
+lavatorial
+lavatory/SM
+lave/S
+lavender/SM
+lavish/PTGDRSY
+lavishness/M
+law/SM
+lawbreaker/SM
+lawbreaking/M
+lawful/UPY
+lawfulness/UM
+lawgiver/MS
+lawless/PY
+lawlessness/M
+lawmaker/MS
+lawmaking/M
+lawman/M
+lawmen
+lawn/MS
+lawnmower/SM
+lawrencium/M
+lawsuit/MS
+lawyer/SM
+lax/TRYP
+laxative/MS
+laxity/M
+laxness/M
+lay/AICSGM
+layabout/S
+layaway/M
+layer/CSM
+layered
+layering/M
+layette/MS
+layman/M
+laymen
+layoff/SM
+layout/SM
+layover/MS
+laypeople
+layperson/MS
+layup/SM
+laywoman/M
+laywomen
+laze/MGDS
+lazily
+laziness/M
+lazy/DRSTGP
+lazybones/M
+lb/S
+lbw
+lea/SM
+leach/DSG
+lead/MDNRSZG
+leader/M
+leaderless
+leadership/SM
+leading/M
+leaf/MDSG
+leafage/M
+leafless
+leaflet/GMDS
+leafstalk/MS
+leafy/RT
+league/DSMG
+leak/MDSG
+leakage/MS
+leakiness/M
+leaky/PRT
+lean/MDRSTGJP
+leaning/M
+leanness/M
+leap/MDRSZG
+leaper/M
+leapfrog/MS
+leapfrogged
+leapfrogging
+leapt
+learn/AUGDS
+learnability
+learnable
+learnedly
+learner/MS
+learning's
+lease/ADSMG
+leaseback/SM
+leasehold/MRSZ
+leaseholder/M
+leaser/SM
+leash's
+leash/UDSG
+least/M
+leastwise
+leather/MS
+leatherette/M
+leatherneck/MS
+leathery
+leave/DRSMZGJ
+leaven/SGMD
+leavened/U
+leavening/M
+leaver/M
+leavings/M
+lech/MDRSZG
+lecher/M
+lecherous/PY
+lecherousness/M
+lechery/M
+lecithin/M
+lectern/MS
+lecture/MZGDRS
+lecturer/M
+lectureship/SM
+ledge/RSMZ
+ledger/M
+lee/RSMZ
+leech/MDSG
+leek/MS
+leer/MDG
+leeriness/M
+leery/RPT
+leeward/SM
+leeway/M
+left/MRST
+leftism/M
+leftist/SM
+leftmost
+leftover/SM
+leftward/S
+lefty/SM
+leg/SM
+legacy/SM
+legal/SMY
+legalese/M
+legalism/MS
+legalistic
+legalistically
+legality/SM
+legalization/M
+legalize/GDS
+legate/CXMNS
+legatee/MS
+legation's/AC
+legato/SM
+legend/SM
+legendarily
+legendary
+legerdemain/M
+legged
+legginess/M
+legging/MS
+leggy/RPT
+leghorn/MS
+legibility/M
+legible
+legibly
+legion/SM
+legionary/SM
+legionnaire/SM
+legislate/DSGNV
+legislation/M
+legislative/Y
+legislator/MS
+legislature/SM
+legit
+legitimacy/M
+legitimate/DSYG
+legitimatize/GDS
+legitimization/M
+legitimize/DSG
+legless
+legman/M
+legmen
+legroom/SM
+legume/MS
+leguminous
+legwarmer/S
+legwork/M
+lei/SM
+leisure/DMY
+leisureliness/M
+leisurewear/M
+leitmotif/MS
+leitmotiv/MS
+lemma/S
+lemme/JG
+lemming/M
+lemon/SM
+lemonade/SM
+lemongrass
+lemony
+lemur/SM
+lend/RSZG
+lender/M
+length/MNX
+lengthen/GD
+lengthily
+lengthiness/M
+lengths
+lengthwise
+lengthy/PRT
+lenience/M
+leniency/M
+lenient/Y
+lenitive
+lens/MS
+lent
+lentil/MS
+lento
+leonine
+leopard/SM
+leopardess/MS
+leotard/SM
+leper/SM
+leprechaun/MS
+leprosy/M
+leprous
+lepta
+lepton/MS
+lesbian/SM
+lesbianism/M
+lesion/MS
+less/MNRX
+lessee/MS
+lessen/GD
+lesson/MS
+lessor/MS
+let/ISM
+letdown/SM
+lethal/Y
+lethargic
+lethargically
+lethargy/M
+letter/ZGMDRS
+letterbomb/S
+letterbox/S
+lettered/U
+letterer/M
+letterhead/MS
+lettering/M
+letterpress/M
+letting/S
+lettuce/MS
+letup/SM
+leucine
+leucotomy/S
+leukemia/M
+leukemic/SM
+leukocyte/MS
+levee/SM
+level/PSMY
+levelheaded/P
+levelheadedness/M
+levelled
+leveller/SM
+levelling
+levelness/M
+lever/SGMD
+leverage's
+leverage/CDSG
+leviathan/MS
+levier/M
+levitate/DSGN
+levitation/M
+levity/M
+levy/DRSMZG
+lewd/RYPT
+lewdness/M
+lexer/S
+lexical
+lexicographer/MS
+lexicographic
+lexicographical
+lexicography/M
+lexicon/SM
+lexis
+lg
+liabilities
+liability/AM
+liable/A
+liaise/GDS
+liaison/MS
+liar/MS
+lib/M
+libation/SM
+libber/MS
+libel/SM
+libelled
+libeller/SM
+libelling
+libellous
+liberal/MYPS
+liberalism/M
+liberality/M
+liberalization/SM
+liberalize/GDS
+liberalness/M
+liberate/CDSGN
+liberation/CM
+liberator/MS
+libertarian/SM
+libertine/MS
+liberty/SM
+libidinal
+libidinous
+libido/MS
+librarian/MS
+librarianship
+library/SM
+librettist/MS
+libretto/SM
+lice
+licence/MS
+license/GDS
+licensed/U
+licensee/MS
+licentiate/SM
+licentious/YP
+licentiousness/M
+lichen/MS
+licit/Y
+lick/MDJSG
+licking/M
+licorice/SM
+lid/SM
+lidded
+lidless
+lido/MS
+lie/DSM
+lied/MR
+lief/RT
+liege/SM
+lien/MS
+lieu/M
+lieutenancy/M
+lieutenant/MS
+life/MZR
+lifebelt/S
+lifeblood/M
+lifeboat/MS
+lifebuoy/MS
+lifeforms
+lifeguard/SM
+lifeless/YP
+lifelessness/M
+lifelike
+lifeline/MS
+lifelong
+lifer/M
+lifesaver/SM
+lifesaving/M
+lifespan/S
+lifestyle/SM
+lifetime/MS
+lifework/MS
+lift/MDRSZG
+lifter/M
+liftoff/SM
+ligament/MS
+ligate/GNDS
+ligation/M
+ligature/MGDS
+light's/C
+light/CASTGD
+lighted/U
+lighten/SDRZG
+lightener/M
+lighter/SM
+lightface/MD
+lightheaded
+lighthearted/YP
+lightheartedness/M
+lighthouse/MS
+lighting's
+lightly
+lightness/M
+lightning/MDS
+lightproof
+lightship/MS
+lightweight/SM
+ligneous
+lignin
+lignite/M
+lii
+like/EMGDST
+likeability/M
+likeable/P
+likeableness/M
+likelihood/UM
+likelihoods
+likeliness/UM
+likely/UPRT
+liken/SGD
+likeness/UM
+likenesses
+liker
+likewise
+liking/M
+lilac/SM
+lilliputian
+lilo/S
+lilt/MDSG
+lily/SM
+limb/MS
+limber/UDSG
+limberness/M
+limbless
+limbo/SM
+lime/MGDS
+limeade/SM
+limelight/M
+limerick/SM
+limescale
+limestone/M
+limey/S
+limit's
+limit/CSZGDR
+limitation/CM
+limitations
+limited/U
+limiter's
+limiting/S
+limitless/P
+limitlessness/M
+limn/DSG
+limo/MS
+limousine/MS
+limp/MDRYSPTG
+limpet/MS
+limpid/YP
+limpidity/M
+limpidness/M
+limpness/M
+limy/RT
+linage/M
+linchpin/SM
+linden/MS
+line/MZGDRSJ
+lineage/MS
+lineal/Y
+lineament/SM
+linear/Y
+linearity/M
+linebacker/MS
+lined/U
+linefeed
+lineman/M
+linemen
+linen/SM
+linens/M
+liner/M
+linesman/M
+linesmen
+lineup/MS
+ling/M
+linger/ZGJDRS
+lingerer/M
+lingerie/M
+lingering/Y
+lingo/M
+lingoes
+lingual
+linguine/M
+linguist/SM
+linguistic/S
+linguistically
+linguistics/M
+liniment/SM
+lining/M
+link/MDRSG
+linkage/MS
+linkman
+linkmen
+linkup/MS
+linnet/MS
+lino
+linoleum/M
+linseed/M
+lint's
+lint/CDG
+lintel/MS
+lints
+linty/TR
+lion/MS
+lioness/MS
+lionhearted
+lionization/M
+lionize/GDS
+lip/SM
+lipid/SM
+liposuction/M
+lipped
+lippy
+lipread/GRS
+lipreader/M
+lipreading/M
+lipstick/MDSG
+liq
+liquefaction/M
+liquefy/DSG
+liqueur/SM
+liquid/MS
+liquidate/XGNDS
+liquidation/M
+liquidator/MS
+liquidity/M
+liquidize/ZGDRS
+liquidizer/M
+liquor/MDGS
+lira/M
+lire
+lisle/M
+lisp/MDRSZG
+lisper/M
+lissome
+list/MDNSJXG
+listed/U
+listen/BMDRZG
+listener/M
+listeria
+listing/M
+listless/YP
+listlessness/M
+lit/U
+litany/SM
+litchi/MS
+lite
+literacy/M
+literal/SMYP
+literalness/M
+literariness/M
+literary/P
+literate/SMY
+literati/M
+literature/M
+lithe/RPYT
+litheness/M
+lithesome
+lithium/M
+lithograph/MDRZG
+lithographer/M
+lithographic
+lithographically
+lithographs
+lithography/M
+lithosphere/SM
+litigant/SM
+litigate/DSGN
+litigation/M
+litigator/MS
+litigious/P
+litigiousness/M
+litmus/M
+litotes/M
+litre/SM
+litter/MDRSZG
+litterateur/MS
+litterbug/MS
+litterer/M
+little/MTRP
+littleness/M
+littoral/SM
+liturgical/Y
+liturgist/SM
+liturgy/SM
+livability/M
+livable/U
+live/ATGDSB
+livelihood/SM
+liveliness/M
+livelong/S
+lively/PRT
+liven/SGD
+liver's
+liver/S
+liveried
+liverish
+liverwort/MS
+liverwurst/M
+livery/CSM
+liveryman/CM
+liverymen/C
+livestock/M
+liveware
+livid/Y
+living/MS
+lix/K
+lizard/MS
+ll
+llama/SM
+llano/SM
+lo
+load's
+load/AUGSD
+loadable
+loader/MS
+loading's
+loaf/MDRSZG
+loafer/M
+loam/M
+loamy/TR
+loan/MDRSZG
+loaner/M
+loansharking/M
+loanword/MS
+loath/JZGDRS
+loathe
+loather/M
+loathing/M
+loathsome/PY
+loathsomeness/M
+loaves
+lob/SMD
+lobar
+lobbed
+lobber/MS
+lobbing
+lobby/GDSM
+lobbyist/MS
+lobe/MS
+lobotomize/DSG
+lobotomy/SM
+lobster/MS
+local/SMY
+locale/MS
+locality/SM
+localization/M
+localize/DSG
+locate/EAGNDS
+location's/A
+location/ESM
+locator/MS
+locavore/SM
+loci
+lock/MDRSBZG
+locker/M
+locket/MS
+lockjaw/M
+lockout/MS
+locksmith/M
+locksmiths
+lockstep/M
+lockup/MS
+loco/S
+locomotion/M
+locomotive/MS
+locoweed/SM
+locum/S
+locus/M
+locust/SM
+locution/MS
+lode/MS
+lodestar/MS
+lodestone/MS
+lodge/DRSJMZG
+lodger/M
+lodging/M
+lodgings/M
+loft/MDSG
+loftily
+loftiness/M
+lofty/PRT
+log/SM
+loganberry/SM
+logarithm/SM
+logarithmic
+logbook/SM
+loge/MS
+logged
+logger/SM
+loggerhead/SM
+loggia/SM
+logging/M
+logic/M
+logical/Y
+logicality/M
+logician/MS
+login/SM
+logistic/S
+logistical/Y
+logistics/M
+logjam/SM
+logo/MS
+logoff/SM
+logon/SM
+logotype/SM
+logout/SM
+logrolling/M
+logy/RT
+loin/MS
+loincloth/M
+loincloths
+loiter/ZGSDR
+loiterer/M
+loitering/M
+lolcat/SM
+loll/DSG
+lollipop/SM
+lollop/GSD
+lolly/S
+lollygag/S
+lollygagged
+lollygagging
+lone/YZR
+loneliness/M
+lonely/PTR
+loner/M
+lonesome/YP
+lonesomeness/M
+long's
+long/KDSTG
+longboat/MS
+longbow/MS
+longer
+longevity/M
+longhair/MS
+longhand/M
+longhorn/MS
+longhouse/S
+longing/MYS
+longish
+longitude/MS
+longitudinal/Y
+longshoreman/M
+longshoremen
+longsighted
+longstanding
+longtime
+longueur/SM
+longways
+loo
+loofah/M
+loofahs
+look/MDRSZG
+lookalike/MS
+looker/M
+lookout/MS
+lookup
+loom/MDSG
+loon/MS
+loonie/M
+loony/RSMT
+loop/MDSG
+loophole/MS
+loopy/RT
+loos/NRX
+loose/UDSTG
+loosely
+loosen/UGSD
+looseness/M
+loot/MDRSZG
+looter/M
+looting/M
+lop/S
+lope/MGDS
+lopped
+lopping
+lopsided/YP
+lopsidedness/M
+loquacious/PY
+loquaciousness/M
+loquacity/M
+lord/MDYSG
+lordliness/M
+lordly/TPR
+lordship/SM
+lore/M
+lorgnette/SM
+loris/MS
+lorn
+lorry/SM
+lose/ZGRSJ
+loser/M
+losing/M
+loss/MS
+lossless
+lost
+lot/SM
+lotion/SM
+lottery/SM
+lotto/M
+lotus/MS
+louche
+loud/RYTP
+loudhailer/SM
+loudmouth/MD
+loudmouths
+loudness/M
+loudspeaker/MS
+lough
+loughs
+lounge/MZGDRS
+lounger/M
+lour/DSG
+louse's
+louse/CDSG
+lousily
+lousiness/M
+lousy/TPR
+lout/MS
+loutish/PY
+louvre/MDS
+lovableness/M
+lovably
+love/MYZGDRSB
+lovebird/SM
+lovechild/M
+loved/U
+loveless
+loveliness/M
+lovelorn
+lovely/RSMTP
+lovemaking/M
+lover/M
+lovesick
+lovey/S
+loving/Y
+low/SZTGMDRYP
+lowborn
+lowboy/MS
+lowbrow/SM
+lowdown/M
+lower/GD
+lowercase/M
+lowermost
+lowish
+lowland/SZMR
+lowlander/M
+lowlife/SM
+lowliness/M
+lowly/TPR
+lowness/M
+lox/M
+loyal/ETY
+loyaler
+loyalism/M
+loyalist/SM
+loyalties
+loyalty/EM
+lozenge/SM
+ltd
+luau/MS
+lubber/MYS
+lube/MGDS
+lubricant/SM
+lubricate/DSGN
+lubrication/M
+lubricator/MS
+lubricious/Y
+lubricity/M
+lucid/PY
+lucidity/M
+lucidness/M
+luck/MDSG
+luckily/U
+luckiness/UM
+luckless
+lucky/UPTR
+lucrative/YP
+lucrativeness/M
+lucre/M
+lucubrate/GNDS
+lucubration/M
+ludicrous/YP
+ludicrousness/M
+ludo
+luff/DSG
+lug/SM
+luge/S
+luggage/M
+lugged
+lugger/MS
+lugging
+lughole/S
+lugsail/SM
+lugubrious/YP
+lugubriousness/M
+lukewarm/YP
+lukewarmness/M
+lull/MDSG
+lullaby/SM
+lulu/S
+lumbago/M
+lumbar
+lumber/MDRZGS
+lumberer/M
+lumbering/M
+lumberjack/SM
+lumberman/M
+lumbermen
+lumberyard/SM
+lumen
+luminary/SM
+luminescence/M
+luminescent
+luminosity/M
+luminous/Y
+lummox/MS
+lump/MDNSG
+lumpectomy/S
+lumpenproletariat
+lumpiness/M
+lumpish
+lumpy/TRP
+lunacy/SM
+lunar
+lunatic/SM
+lunch/GMDS
+lunchbox/S
+luncheon/SM
+luncheonette/SM
+lunchroom/MS
+lunchtime/MS
+lung/MDSG
+lunge/SM
+lungfish/MS
+lungful/S
+lunkhead/MS
+lupine/MS
+lupus/M
+lurch/GMDS
+lure/MGDS
+lurgy
+lurid/PY
+luridness/M
+lurk/DRSZG
+luscious/PY
+lusciousness/M
+lush/MRSYPT
+lushness/M
+lust/MDSG
+lustful/Y
+lustily
+lustiness/M
+lustre/M
+lustreless
+lustrous/Y
+lusty/PTR
+lutanist/SM
+lute/MS
+lutenist/SM
+lutetium/M
+lux
+luxuriance/M
+luxuriant/Y
+luxuriate/DSGN
+luxuriation/M
+luxurious/PY
+luxuriousness/M
+luxury/SM
+lvi
+lvii
+lxi
+lxii
+lxiv
+lxix
+lxvi
+lxvii
+lyceum/MS
+lychgate/S
+lye/MG
+lying/M
+lymph/M
+lymphatic/SM
+lymphocyte/SM
+lymphoid
+lymphoma/SM
+lynch/JZGDRS
+lyncher/M
+lynching/M
+lynx/MS
+lyre/MS
+lyrebird/MS
+lyric/SM
+lyrical/Y
+lyricism/M
+lyricist/SM
+lysosomal
+lysosomes
+m/KAS
+ma'am
+ma/SMH
+mac/SGMD
+macabre
+macadam/M
+macadamia/SM
+macadamize/GDS
+macaque/MS
+macaroni/MS
+macaroon/MS
+macaw/SM
+mace/MS
+macerate/DSGN
+maceration/M
+mach/M
+machete/SM
+machinate/GNDSX
+machination/M
+machine/DSMGB
+machinery/M
+machinist/MS
+machismo/M
+macho/M
+mackerel/SM
+mackinaw/SM
+mackintosh/MS
+macrame/M
+macro/SM
+macrobiotic/S
+macrobiotics/M
+macrocosm/SM
+macroeconomic/S
+macroeconomics/M
+macrology/S
+macron/MS
+macrophages
+macroscopic
+mad/SMYP
+madam/SM
+madame/M
+madcap/MS
+madden/DGS
+maddening/Y
+madder/MS
+maddest
+madding
+made/AU
+mademoiselle/MS
+madhouse/SM
+madman/M
+madmen
+madness/M
+madras/MS
+madrasa/SM
+madrasah/M
+madrasahs
+madrassa/SM
+madrigal/SM
+madwoman/M
+madwomen
+maelstrom/SM
+maestro/SM
+mafia/SM
+mafiosi
+mafioso/M
+mag/SM
+magazine/SM
+mage/MS
+magenta/M
+maggot/MS
+maggoty
+magi/M
+magic/SM
+magical/Y
+magician/SM
+magicked
+magicking
+magisterial/Y
+magistracy/M
+magistrate/SM
+magma/M
+magnanimity/M
+magnanimous/Y
+magnate/SM
+magnesia/M
+magnesium/M
+magnet/MS
+magnetic
+magnetically
+magnetism/M
+magnetite/M
+magnetizable
+magnetization/CM
+magnetize/CGDS
+magneto/SM
+magnetometer/SM
+magnetosphere
+magnification/M
+magnificence/M
+magnificent/Y
+magnifier/M
+magnify/ZGXDRSN
+magniloquence/M
+magniloquent
+magnitude/SM
+magnolia/MS
+magnon
+magnum/MS
+magpie/MS
+magus/M
+maharajah/M
+maharajahs
+maharani/SM
+maharishi/SM
+mahatma/SM
+mahogany/SM
+mahout/MS
+maid/MNSX
+maiden/MY
+maidenhair/M
+maidenhead/SM
+maidenhood/M
+maidservant/SM
+mail/JMDRSZG
+mailbag/SM
+mailbomb/GSD
+mailbox/MS
+mailer/M
+mailing/M
+maillot/SM
+mailman/M
+mailmen
+mailshot/S
+maim/DSG
+main/MYS
+mainframe/SM
+mainland/MS
+mainline/MGDS
+mainmast/MS
+mainsail/MS
+mainspring/MS
+mainstay/MS
+mainstream/SMDG
+maintain/ZGBDRS
+maintainability
+maintainable/U
+maintained/U
+maintenance/M
+maintop/SM
+maisonette/MS
+maize/SM
+majestic
+majestically
+majesty/SM
+majolica/M
+major/SGMDY
+majordomo/MS
+majorette/MS
+majoritarian/SM
+majoritarianism
+majority/SM
+make's/A
+make/UAGS
+makeover/MS
+maker/SM
+makeshift/SM
+makeup/MS
+makeweight/S
+making/MS
+makings/M
+malachite/M
+maladjusted
+maladjustment/M
+maladministration
+maladroit/PY
+maladroitness/M
+malady/SM
+malaise/M
+malamute/MS
+malapropism/SM
+malaria/M
+malarial
+malarkey/M
+malathion/M
+malcontent/MS
+male/MPS
+malediction/SM
+malefaction/M
+malefactor/SM
+malefic
+maleficence/M
+maleficent
+maleness/M
+malevolence/M
+malevolent/Y
+malfeasance/M
+malformation/SM
+malformed
+malfunction/MDSG
+malice/M
+malicious/PY
+maliciousness/M
+malign/DSG
+malignancy/SM
+malignant/Y
+malignity/M
+malinger/ZGSDR
+malingerer/M
+mall/MS
+mallard/SM
+malleability/M
+malleable
+mallet/MS
+mallow/MS
+malnourished
+malnutrition/M
+malocclusion/M
+malodorous
+malpractice/SM
+malt/MDSG
+malted/MS
+maltose/M
+maltreat/GLDS
+maltreatment/M
+malty/TR
+malware/M
+mam/S
+mama/MS
+mamba/SM
+mambo/SGMD
+mamma/M
+mammal/MS
+mammalian/MS
+mammary
+mammogram/MS
+mammography/M
+mammon/M
+mammoth/M
+mammoths
+mammy/SM
+man's/F
+man/USY
+manacle/DSMG
+manage/ZGDRSL
+manageability/M
+manageable/U
+management/MS
+manager/M
+manageress/S
+managerial
+manana/MS
+manatee/SM
+mandala/SM
+mandamus/MS
+mandarin/MS
+mandate/DSMG
+mandatory
+mandible/MS
+mandibular
+mandolin/MS
+mandrake/MS
+mandrel/SM
+mandrill/MS
+mane/MDS
+manege/M
+manful/Y
+manga/M
+manganese/M
+mange/DRMZ
+manger/M
+mangetout/S
+manginess/M
+mangle/MZGDRS
+mango/M
+mangoes
+mangrove/MS
+mangy/TRP
+manhandle/GDS
+manhole/SM
+manhood/M
+manhunt/SM
+mania/SM
+maniac/MS
+maniacal/Y
+manic/SM
+manically
+manicure/MGDS
+manicurist/MS
+manifest/MDYSG
+manifestation/SM
+manifesto/SM
+manifold/GMDS
+manikin/SM
+manila/M
+manioc/MS
+manipulable
+manipulate/XGNVDS
+manipulation/M
+manipulative/Y
+manipulator/MS
+mankind/M
+manky
+manlike
+manliness/M
+manly/UTR
+manna/M
+manned/U
+mannequin/SM
+manner/MDYS
+mannerism/SM
+mannerly/U
+manning/U
+mannish/YP
+mannishness/M
+manoeuvrability/M
+manoeuvre/DSMGBJ
+manometer/SM
+manor/SM
+manorial
+manpower/M
+manque
+mansard/MS
+manse/SXMN
+manservant/M
+mansion/M
+manslaughter/M
+manta/SM
+mantel/MS
+mantelpiece/SM
+mantelshelf
+mantelshelves
+mantilla/SM
+mantis/MS
+mantissa/SM
+mantle's
+mantle/EGDS
+mantoes
+mantra/MS
+manual/MYS
+manufacture/DRSMZG
+manufacturer/M
+manufacturing/M
+manumission/SM
+manumit/S
+manumitted
+manumitting
+manure/MGDS
+manuscript/MS
+many/M
+map's
+map/AS
+maple/SM
+mapmaker/SM
+mapped/A
+mapper/MS
+mapping/S
+mar/S
+marabou/MS
+marabout/SM
+maraca/MS
+maraschino/MS
+marathon/SMRZ
+marathoner/M
+maraud/ZGDRS
+marauder/M
+marble/MGDS
+marbleize/GDS
+marbling/M
+march/ZGMDRS
+marcher/M
+marchioness/MS
+mare/MS
+margarine/M
+margarita/MS
+marge
+margin/MS
+marginal/YS
+marginalia/M
+marginalization/M
+marginalize/GDS
+maria/M
+mariachi/MS
+marigold/MS
+marijuana/M
+marimba/SM
+marina/MS
+marinade/DSMG
+marinara/M
+marinate/DSGN
+marination/M
+marine/MZRS
+mariner/M
+marionette/MS
+marital/Y
+maritime
+marjoram/M
+mark/AMDSG
+markdown/SM
+marked/U
+markedly
+marker/MS
+market/MDRZGBS
+marketability/M
+marketable/U
+marketeer/SM
+marketer/M
+marketing/M
+marketplace/SM
+marking/SM
+markka/M
+markkaa
+marksman/M
+marksmanship/M
+marksmen
+markup/MS
+marl/M
+marlin/MS
+marlinespike/SM
+marmalade/M
+marmoreal
+marmoset/SM
+marmot/MS
+maroon/MDGS
+marque/MS
+marquee/SM
+marquess/MS
+marquetry/M
+marquis/MS
+marquise/M
+marquisette/M
+marred/U
+marriage/ASM
+marriageability/M
+marriageable
+married/SM
+marring
+marrow/MS
+marry/AGDS
+marsh/MS
+marshal/SM
+marshalled
+marshalling
+marshland/SM
+marshmallow/SM
+marshy/RT
+marsupial/MS
+mart/MNSX
+marten/M
+martensite
+martial/Y
+martian/S
+martin/MS
+martinet/MS
+martingale/MS
+martini/SM
+martyr/MDGS
+martyrdom/M
+marvel/MS
+marvelled
+marvelling
+marvellous/Y
+marzipan/M
+masc
+mascara/GMDS
+mascot/MS
+masculine/SM
+masculinity/M
+maser/SM
+mash/MDRSZG
+masher/M
+mashup/MS
+mask's
+mask/UDSG
+masker/MS
+masochism/M
+masochist/SM
+masochistic
+masochistically
+mason/SM
+masonic
+masonry/M
+masque/MS
+masquerade/DRSMZG
+masquerader/M
+mass/MDSGV
+massacre/MGDS
+massage/DSMG
+masseur/SM
+masseuse/MS
+massif/MS
+massive/PY
+massiveness/M
+mast/MDS
+mastectomy/SM
+master's
+master/ADGS
+masterclass/S
+masterful/Y
+masterly
+mastermind/SGMD
+masterpiece/MS
+masterstroke/SM
+masterwork/MS
+mastery/M
+masthead/MS
+mastic/M
+masticate/GNDS
+mastication/M
+mastiff/SM
+mastitis
+mastodon/SM
+mastoid/SM
+masturbate/GNDS
+masturbation/M
+masturbatory
+mat/SGMDR
+matador/SM
+match/AMS
+matchbook/SM
+matchbox/MS
+matched/U
+matching
+matchless
+matchlock/SM
+matchmaker/MS
+matchmaking/M
+matchstick/MS
+matchwood/M
+mate/MS
+material/SMY
+materialism/M
+materialist/SM
+materialistic
+materialistically
+materialization/M
+materialize/DSG
+materiel/M
+maternal/Y
+maternity/M
+matey/S
+mathematical/Y
+mathematician/SM
+mathematics/M
+matinee/SM
+mating/M
+matins/M
+matres
+matriarch/M
+matriarchal
+matriarchs
+matriarchy/SM
+matrices
+matricidal
+matricide/MS
+matriculate/DSGN
+matriculation/M
+matrimonial
+matrimony/M
+matrix/M
+matron/MYS
+matte/DRSMZG
+matter/MDG
+matting/M
+mattock/SM
+mattress/MS
+maturate/GNDS
+maturation/M
+mature/YTGDRS
+maturity/SM
+matzo/SMH
+matzoh/M
+matzohs
+matzot
+maudlin
+maul/MDRSZG
+mauler/M
+maunder/SDG
+mausoleum/SM
+mauve/M
+maven/SM
+maverick/SM
+maw/SM
+mawkish/PY
+mawkishness/M
+max/GMDS
+maxi/MS
+maxilla/M
+maxillae
+maxillary
+maxim/SM
+maxima
+maximal/Y
+maximization/M
+maximize/GDS
+maximum/SM
+may/M
+maybe/SM
+mayday/MS
+mayflower/MS
+mayfly/SM
+mayhem/M
+mayn't
+mayo/M
+mayonnaise/M
+mayor/SM
+mayoral
+mayoralty/M
+mayoress/MS
+maypole/SM
+mayst
+maze/MS
+mazurka/MS
+mdse
+me/DSH
+mead/M
+meadow/MS
+meadowlark/MS
+meagre/YP
+meagreness/M
+meal/MS
+mealiness/M
+mealtime/SM
+mealy/TPR
+mealybug/SM
+mealymouthed
+mean/MRYJPSTG
+meander/SMDJG
+meanderings/M
+meanie/M
+meaning/M
+meaningful/PY
+meaningfulness/M
+meaningless/YP
+meaninglessness/M
+meanness/M
+meant/U
+meantime/M
+meanwhile/M
+meany/SM
+meas
+measles/M
+measly/RT
+measurable
+measurably
+measure's
+measure/ADSG
+measured/U
+measureless
+measurement/MS
+meat/MS
+meatball/MS
+meathead/MS
+meatiness/M
+meatless
+meatloaf/M
+meatloaves
+meatpacking/M
+meaty/TPR
+mecca/SM
+mechanic/MS
+mechanical/Y
+mechanics/M
+mechanism/SM
+mechanistic
+mechanistically
+mechanization/M
+mechanize/DSG
+medal/SM
+medallion/SM
+medallist/SM
+meddle/ZGDRS
+meddler/M
+meddlesome
+media/SM
+medial/AY
+median/MS
+mediate/ADSGN
+mediated/U
+mediation/AM
+mediator/MS
+medic/SM
+medicaid/M
+medical/SMY
+medicament/M
+medicare/M
+medicate/GNXDS
+medication/M
+medicinal/Y
+medicine/MS
+medico/MS
+medieval
+medievalist/MS
+mediocre
+mediocrity/SM
+meditate/DSGNVX
+meditation/M
+meditative/Y
+medium/MS
+medley/MS
+medulla/SM
+medusa
+medusae
+meed/M
+meek/RYPT
+meekness/M
+meerschaum/SM
+meet/MJSG
+meeting/M
+meetinghouse/SM
+meetup/MS
+meg/S
+mega
+megabit/SM
+megabucks/M
+megabyte/MS
+megachurch/MS
+megacycle/SM
+megadeath/M
+megadeaths
+megagram/S
+megahertz/M
+megajoule/S
+megalith/M
+megalithic
+megaliths
+megalomania/M
+megalomaniac/SM
+megalopolis/MS
+megametre/S
+megapascal/S
+megaphone/DSMG
+megapixel/SM
+megastar/S
+megaton/SM
+megawatt/MS
+meh
+meiosis/M
+meiotic
+melamine/M
+melancholia/M
+melancholic/S
+melancholy/M
+melange/MS
+melanin/M
+melanoma/SM
+meld/MDSG
+melee/SM
+meliorate/GNVDS
+melioration/M
+mellifluous/PY
+mellifluousness/M
+mellow/PTGDRYS
+mellowness/M
+melodic
+melodically
+melodious/YP
+melodiousness/M
+melodrama/MS
+melodramatic/S
+melodramatically
+melodramatics/M
+melody/SM
+melon/SM
+melt's
+melt/ADSG
+meltdown/SM
+member's
+member/EAS
+membership/SM
+membrane/SM
+membranous
+meme/MS
+memento/MS
+memo/MS
+memoir/MS
+memorabilia/M
+memorability/M
+memorable/U
+memorably
+memorandum/MS
+memorial/SM
+memorialize/DSG
+memorization/M
+memorize/DSG
+memory/SM
+memsahib/S
+men/M
+menace/MGDS
+menacing/Y
+menage/MS
+menagerie/MS
+mend/MDRSZG
+mendacious/Y
+mendacity/M
+mendelevium/M
+mender/M
+mendicancy/M
+mendicant/SM
+mending/M
+menfolk/MS
+menfolks/M
+menhaden/M
+menial/MYS
+meningeal
+meninges
+meningitis/M
+meninx/M
+menisci
+meniscus/M
+menopausal
+menopause/M
+menorah/M
+menorahs
+mensch/MS
+menservants
+menses/M
+menstrual
+menstruate/GNDS
+menstruation/M
+mensurable
+mensuration/M
+menswear/M
+mental/Y
+mentalist/SM
+mentality/SM
+menthol/M
+mentholated
+mention/GSMD
+mentioned/U
+mentor/MDSG
+mentorship
+menu/MS
+meow/MDSG
+mercantile
+mercantilism/M
+mercenary/SM
+mercer/MS
+mercerize/GDS
+merchandise/MZGDRS
+merchandiser/M
+merchandising/M
+merchant/MBS
+merchantman/M
+merchantmen
+merciful/UY
+merciless/PY
+mercilessness/M
+mercurial/Y
+mercuric
+mercury/M
+mercy/SM
+mere/MYTS
+meretricious/YP
+meretriciousness/M
+merganser/MS
+merge/DRSZG
+merger/M
+meridian/MS
+meringue/MS
+merino/MS
+merit/CSM
+merited/U
+meriting
+meritless
+meritocracy/SM
+meritocratic
+meritorious/PY
+meritoriousness/M
+mermaid/SM
+merman/M
+mermen
+merrily
+merriment/M
+merriness/M
+merry/TRP
+merrymaker/MS
+merrymaking/M
+mesa/MS
+mescal/MS
+mescalin
+mescaline/M
+mesdames
+mesdemoiselles
+mesh/MDSG
+mesmeric
+mesmerism/M
+mesmerize/ZGDRS
+mesmerizer/M
+mesomorph/M
+mesomorphs
+meson/SM
+mesosphere/SM
+mesquite/SM
+mess/MDSG
+message/MGDS
+messeigneurs
+messenger/SM
+messiah/M
+messiahs
+messianic
+messieurs
+messily
+messiness/M
+messmate/SM
+messy/PTR
+mestizo/MS
+met
+meta
+metabolic
+metabolically
+metabolism/SM
+metabolite/SM
+metabolize/DSG
+metacarpal/SM
+metacarpi
+metacarpus/M
+metadata
+metal/SM
+metalanguage/MS
+metalled
+metallic
+metallurgic
+metallurgical
+metallurgist/MS
+metallurgy/M
+metalwork/MRZG
+metalworker/M
+metalworking/M
+metamorphic
+metamorphism/M
+metamorphose/GDS
+metamorphosis/M
+metaphor/MS
+metaphoric
+metaphorical/Y
+metaphysical/Y
+metaphysics/M
+metastases
+metastasis/M
+metastasize/DSG
+metastatic
+metatarsal/MS
+metatarsi
+metatarsus/M
+metatheses
+metathesis/M
+mete/MZGDRS
+metempsychoses
+metempsychosis/M
+meteor/MS
+meteoric
+meteorically
+meteorite/SM
+meteoroid/SM
+meteorologic
+meteorological
+meteorologist/SM
+meteorology/M
+meter/GMD
+metformin
+methadone/M
+methamphetamine/M
+methane/M
+methanol/M
+methinks
+method/MS
+methodical/YP
+methodicalness/M
+methodological/Y
+methodology/SM
+methotrexate
+methought
+meths
+methyl/M
+meticulous/YP
+meticulousness/M
+metier/MS
+metre/SM
+metric/S
+metrical/Y
+metricate/GNDS
+metrication/M
+metricize/GDS
+metro/SM
+metronome/MS
+metropolis/MS
+metropolitan
+mettle/M
+mettlesome
+mew/SGMD
+mewl/DSG
+mews/M
+mezzanine/MS
+mezzo/SM
+mfg
+mfr/S
+mg
+mgr
+mi/MNX
+miasma/MS
+mic/S
+mica/M
+mice
+mick/S
+mickey/MS
+micro/SM
+microaggression/SM
+microbe/MS
+microbial
+microbiological
+microbiologist/MS
+microbiology/M
+microbrewery/SM
+microchip/MS
+microcircuit/SM
+microcode
+microcomputer/MS
+microcosm/MS
+microcosmic
+microdot/SM
+microeconomics/M
+microelectronic/S
+microelectronics/M
+microfiber/MS
+microfiche/M
+microfilm/GMDS
+microfinance
+microfloppies
+microgroove/SM
+microlight/MS
+microloan/MS
+micromanage/ZGDRSL
+micromanagement/M
+micromanager/M
+micrometeorite/SM
+micrometer/MS
+micrometre/MS
+micron/MS
+microorganism/MS
+microphone/SM
+microplastics
+microprocessor/MS
+microscope/SM
+microscopic
+microscopical/Y
+microscopy/M
+microsecond/MS
+microsurgery/M
+microwave/DSMGB
+microwaveable
+mid
+midair/M
+midday/M
+midden/MS
+middle/MGS
+middlebrow/SM
+middleman/M
+middlemen
+middlemost
+middleweight/MS
+middy/SM
+midfield/RZ
+midge/SM
+midget/MS
+midi/MS
+midland/MS
+midlife/M
+midmost
+midnight/M
+midpoint/MS
+midrib/MS
+midriff/MS
+midsection/MS
+midshipman/M
+midshipmen
+midships
+midsize
+midst/M
+midstream/M
+midsummer/M
+midterm/MS
+midtown/M
+midway/MS
+midweek/MS
+midwife/MGDS
+midwifery/SM
+midwinter/M
+midwives
+midyear/MS
+mien/M
+miff/DSG
+might've
+might/M
+mightily
+mightiness/M
+mightn't
+mighty/TRP
+mignonette/SM
+migraine/MS
+migrant/MS
+migrate/AGDS
+migration/SM
+migratory
+mikado/MS
+mike/MGDS
+mil/SZMR
+milady/SM
+milch
+mild/MRYTP
+mildew/SMDG
+mildness/M
+mile/MS
+mileage/SM
+milepost/MS
+miler/M
+milestone/MS
+milf/MS
+milieu/SM
+militancy/M
+militant/MYS
+militarily
+militarism/M
+militarist/SM
+militaristic
+militarization/CM
+militarize/CDSG
+military/M
+militate/GDS
+militia/SM
+militiaman/M
+militiamen
+milk/MDRSZG
+milker/M
+milkiness/M
+milkmaid/MS
+milkman/M
+milkmen
+milkshake/SM
+milksop/MS
+milkweed/SM
+milky/RTP
+mill/MDRSZGJ
+millage/M
+millennia
+millennial/M
+millennium/MS
+miller/M
+millet/M
+milliard/MS
+millibar/MS
+milligram/MS
+millilitre/MS
+millimetre/MS
+milliner/MS
+millinery/M
+milling/M
+million/HSM
+millionaire/SM
+millionairess/S
+millionth/M
+millionths
+millipede/SM
+millisecond/SM
+millpond/SM
+millrace/SM
+millstone/SM
+millstream/MS
+millwright/SM
+milometer/S
+milquetoast/SM
+milt/MDSG
+mime/MGDS
+mimeograph/GMD
+mimeographs
+mimetic
+mimic/SM
+mimicked
+mimicker/SM
+mimicking
+mimicry/SM
+mimosa/SM
+min
+minaret/MS
+minatory
+mince/DRSMZG
+mincemeat/M
+mincer/M
+mind's
+mind/ADRSZG
+mindbogglingly
+minded/P
+mindful/YP
+mindfulness/M
+mindless/YP
+mindlessness/M
+mindset/MS
+mine/MZGNDRSX
+minefield/SM
+miner/M
+mineral/MS
+mineralogical
+mineralogist/MS
+mineralogy/M
+minestrone/M
+minesweeper/SM
+mingle/DSG
+mingy
+mini/MS
+miniature/MS
+miniaturist/MS
+miniaturization/M
+miniaturize/GDS
+minibar/S
+minibike/SM
+minibus/MS
+minicab/S
+minicam/MS
+minicomputer/SM
+minifloppies
+minim/SM
+minima
+minimal/Y
+minimalism/M
+minimalist/MS
+minimization/M
+minimize/DSG
+minimum/MS
+mining/M
+minion/M
+miniseries/M
+miniskirt/MS
+minister/SGMD
+ministerial
+ministrant/MS
+ministration/MS
+ministry/SM
+minivan/MS
+mink/MS
+minnesinger/MS
+minnow/SM
+minor/SMDG
+minority/SM
+minoxidil/M
+minster/MS
+minstrel/SM
+minstrelsy/M
+mint/MDRSZG
+mintage/M
+minter/M
+minty/RT
+minuend/MS
+minuet/SM
+minus/MS
+minuscule/MS
+minute/PDRSMYTG
+minuteman/M
+minutemen
+minuteness/M
+minutia/M
+minutiae
+minx/MS
+miracle/MS
+miraculous/Y
+mirage/SM
+mire/MGDS
+mirror/GSMD
+mirth/M
+mirthful/PY
+mirthfulness/M
+mirthless/Y
+miry/RT
+misaddress/DSG
+misadventure/MS
+misaligned
+misalignment/M
+misalliance/MS
+misanthrope/SM
+misanthropic
+misanthropically
+misanthropist/MS
+misanthropy/M
+misapplication/M
+misapply/DSGNX
+misapprehend/GSD
+misapprehension/MS
+misappropriate/XDSGN
+misappropriation/M
+misbegotten
+misbehave/GDS
+misbehaviour/M
+misc
+miscalculate/DSXGN
+miscalculation/M
+miscall/DSG
+miscarriage/MS
+miscarry/GDS
+miscast/SG
+miscegenation/M
+miscellaneous/Y
+miscellany/SM
+mischance/SM
+mischief/M
+mischievous/YP
+mischievousness/M
+miscibility/M
+miscible
+misclassified
+miscommunication/S
+misconceive/GDS
+misconception/SM
+misconduct/MDGS
+misconstruction/MS
+misconstrue/GDS
+miscount/MDSG
+miscreant/SM
+miscue/DSMG
+misdeal/GMS
+misdealt
+misdeed/MS
+misdemeanour/MS
+misdiagnose/GDS
+misdiagnosis/M
+misdid
+misdirect/SDG
+misdirection/M
+misdo/JG
+misdoes
+misdoing/M
+misdone
+miser/SBMY
+miserableness/M
+miserably
+miserliness/M
+misery/SM
+misfeasance/M
+misfeature/S
+misfile/GDS
+misfire/MGDS
+misfit/SM
+misfitted
+misfitting
+misfortune/SM
+misgiving/MS
+misgovern/SDGL
+misgovernment/M
+misguidance/M
+misguide/DSG
+misguided/Y
+mishandle/DSG
+mishap/SM
+mishear/GS
+misheard
+mishit/S
+mishitting
+mishmash/MS
+misidentify/GDS
+misinform/DGS
+misinformation/M
+misinterpret/SGD
+misinterpretation/SM
+misjudge/DSG
+misjudgment/SM
+mislabel/S
+mislabelled
+mislabelling
+mislaid
+mislay/GS
+mislead/GS
+misleading/Y
+misled
+mismanage/LGDS
+mismanagement/M
+mismatch/GMDS
+misname/GDS
+misnomer/MS
+misogamist/MS
+misogamy/M
+misogynist/SM
+misogynistic
+misogynous
+misogyny/M
+misplace/GLDS
+misplacement/M
+misplay/GMDS
+misprint/GMDS
+misprision/M
+mispronounce/DSG
+mispronunciation/SM
+misquotation/MS
+misquote/MGDS
+misread/GJS
+misreading/M
+misremember/GDS
+misreport/MDGS
+misrepresent/GDS
+misrepresentation/MS
+misrule/MGDS
+miss's
+miss/EDSGV
+missal/ESM
+missed/U
+misshape/GDS
+misshapen
+missile/MS
+missilery/M
+mission/AMS
+missionary/SM
+missioner/SM
+missive/MS
+misspeak/GS
+misspell/GDJS
+misspelling/M
+misspend/GS
+misspent
+misspoke
+misspoken
+misstate/GDSL
+misstatement/SM
+misstep/MS
+missus/MS
+mist's
+mist/CDRSZG
+mistakable/U
+mistake/BMGS
+mistaken/Y
+mister's
+mistily
+mistime/GDS
+mistiness/M
+mistletoe/M
+mistook
+mistral/MS
+mistranslated
+mistreat/LDGS
+mistreatment/M
+mistress/MS
+mistrial/MS
+mistrust/MDSG
+mistrustful/Y
+misty/PRT
+mistype/GS
+misunderstand/SGJ
+misunderstanding/M
+misunderstood
+misuse/DSMG
+mite/MS
+mitigate/DSGN
+mitigated/U
+mitigation/M
+mitochondria
+mitochondrial
+mitochondrion
+mitoses
+mitosis/M
+mitotic
+mitral
+mitre/DSMG
+mitt/MNSX
+mitten/M
+mitzvah
+mix/ZGMDRSB
+mixed/U
+mixer/M
+mixture/SM
+mizzen/MS
+mizzenmast/SM
+mkay
+mks
+ml
+mm
+mnemonic/MS
+mnemonically
+mo/CKHS
+moan/MDRSZG
+moaner/M
+moat/MDS
+mob's
+mob/CS
+mobbed/C
+mobbing/C
+mobile/MS
+mobility/M
+mobilization/CM
+mobilizations
+mobilize/CDSG
+mobilizer/SM
+mobster/SM
+moccasin/SM
+mocha/SM
+mock/DRSZG
+mocker/M
+mockery/SM
+mocking/Y
+mockingbird/SM
+mod/STM
+modal/SM
+modality/S
+modded
+modding
+mode/MS
+model's
+model/AS
+modelled/A
+modeller/MS
+modelling/MS
+modem/SM
+moderate/MYGNPDS
+moderateness/M
+moderation/M
+moderator/SM
+modern/MYPS
+modernism/M
+modernist/SM
+modernistic
+modernity/M
+modernization/M
+modernize/DRSZG
+modernizer/M
+modernness/M
+modest/Y
+modesty/M
+modicum/SM
+modifiable
+modification/M
+modified/U
+modifier/M
+modify/DRSXZGN
+modish/YP
+modishness/M
+modular
+modularization
+modulate/CGNDS
+modulation/CM
+modulations
+modulator/MS
+module/MS
+modulo
+modulus
+moggie
+mogul/SM
+mohair/M
+moi
+moiety/SM
+moil/MDSG
+moire/SM
+moist/XTPNRY
+moisten/DRZG
+moistener/M
+moistness/M
+moisture/M
+moisturize/ZGDRS
+moisturizer/M
+molar/SM
+molasses/M
+moldboard/SM
+moldiness/M
+mole/MS
+molecular
+molecularity/M
+molecule/SM
+molehill/SM
+moleskin/M
+molest/DRZGS
+molestation/M
+molested/U
+molester/M
+moll/MS
+mollification/M
+mollify/DSNG
+mollusc/SM
+molluscan
+molly/SM
+mollycoddle/DSMG
+molten
+molter/MS
+molybdenum/M
+mom/SM
+moment/MS
+momenta
+momentarily
+momentariness/M
+momentary/P
+momentous/PY
+momentousness/M
+momentum/M
+mommy/SM
+monad
+monarch/M
+monarchic
+monarchical
+monarchism/M
+monarchist/MS
+monarchistic
+monarchs
+monarchy/SM
+monastery/SM
+monastic/MS
+monastical/Y
+monasticism/M
+monaural
+monetarily
+monetarism/M
+monetarist/MS
+monetary
+monetization/C
+monetize/CGDS
+money/SMD
+moneybag/MS
+moneybox/S
+moneylender/SM
+moneymaker/SM
+moneymaking/M
+monger/MDGS
+mongol/S
+mongolism/M
+mongoloid/MS
+mongoose/MS
+mongrel/SM
+monies
+moniker/SM
+monism/M
+monist/MS
+monition/SM
+monitor/SMDG
+monitory
+monk/MS
+monkey/MDGS
+monkeyshine/SM
+monkish
+monkshood/SM
+mono/M
+monochromatic
+monochrome/MS
+monocle/DSM
+monoclonal
+monocotyledon/SM
+monocotyledonous
+monocular
+monodic
+monodist/SM
+monody/SM
+monogamist/MS
+monogamous/Y
+monogamy/M
+monogram/SM
+monogrammed
+monogramming
+monograph/M
+monographs
+monolingual/MS
+monolith/M
+monolithic
+monoliths
+monologist/SM
+monologue/SM
+monomania/M
+monomaniac/MS
+monomaniacal
+monomer/SM
+mononucleosis/M
+monophonic
+monoplane/SM
+monopolist/SM
+monopolistic
+monopolization/M
+monopolize/DRSZG
+monopolizer/M
+monopoly/SM
+monorail/MS
+monosyllabic
+monosyllable/MS
+monotheism/M
+monotheist/SM
+monotheistic
+monotone/MS
+monotonic
+monotonically
+monotonous/PY
+monotonousness/M
+monotony/M
+monounsaturated
+monoxide/MS
+monseigneur/M
+monsieur/M
+monsignor/SM
+monsoon/SM
+monsoonal
+monster/SM
+monstrance/ASM
+monstrosity/SM
+monstrous/Y
+montage/SM
+month/MY
+monthly/SM
+months
+monument/MS
+monumental/Y
+moo/SGMD
+mooch/ZGMDRS
+moocher/M
+mood/MS
+moodily
+moodiness/M
+moody/TPR
+moon/MDSG
+moonbeam/MS
+moonless
+moonlight/SMDRZG
+moonlighter/M
+moonlighting/M
+moonlit
+moonscape/SM
+moonshine/MZRS
+moonshiner/M
+moonshot/MS
+moonstone/MS
+moonstruck
+moonwalk/MS
+moor/MDJSG
+moorhen/S
+mooring/M
+moorland/MS
+moose/M
+moot/DSG
+mop/SZGMDR
+mope/MS
+moped/SM
+moper/M
+mopey
+mopier
+mopiest
+mopish
+mopped
+moppet/MS
+mopping
+moraine/SM
+moral/SMY
+morale/M
+moralism
+moralist/MS
+moralistic
+moralistically
+moralities
+morality/UM
+moralization/CM
+moralize/CGDS
+moralizer/MS
+morass/MS
+moratorium/SM
+moray/SM
+morbid/YP
+morbidity/M
+morbidness/M
+mordancy/M
+mordant/SMY
+more/MS
+moreish
+morel/SM
+moreover
+mores/M
+morgue/MS
+moribund
+morn/MJSG
+morning/M
+morocco/M
+moron/SM
+moronic
+moronically
+morose/YP
+moroseness/M
+morph/GD
+morpheme/MS
+morphemic
+morphia/M
+morphine/M
+morphing/M
+morphological
+morphology/M
+morphs
+morrow/MS
+morsel/MS
+mortal/MYS
+mortality/M
+mortar/MDSG
+mortarboard/SM
+mortgage's
+mortgage/AGDS
+mortgagee/MS
+mortgagor/MS
+mortician/MS
+mortification/M
+mortify/NGDS
+mortise/DSMG
+mortuary/SM
+mosaic/MS
+mosey/SGD
+mosh/DSG
+mosque/MS
+mosquito/M
+mosquitoes
+moss/MS
+mossback/SM
+mossy/TR
+most/MY
+mot/SM
+mote's
+mote/KCXSVN
+motel/SM
+motet/SM
+moth/M
+mothball/GMDS
+mother/MDYSG
+motherboard/SM
+motherfucker/MS!
+motherfucking/!
+motherhood/M
+motherland/MS
+motherless
+motherliness/M
+moths
+motif/SM
+motile/S
+motility/M
+motion/KCM
+motioned
+motioning
+motionless/YP
+motionlessness/M
+motivate/CDSG
+motivated/U
+motivation/SM
+motivational
+motivator/SM
+motive/MS
+motiveless
+motley/MS
+motlier
+motliest
+motocross/MS
+motor/SGMD
+motorbike/MGDS
+motorboat/MS
+motorcade/MS
+motorcar/SM
+motorcycle/DSMG
+motorcyclist/MS
+motorist/SM
+motorization/M
+motorize/DSG
+motorman/M
+motormen
+motormouth/M
+motormouths
+motorway/SM
+mottle/GDS
+motto/M
+mottoes
+moue/MS
+mould/JSZGMDR
+moulder/MDG
+moulding/M
+mouldy/TR
+moult/SGMD
+mound/SGMD
+mount/EASGMD
+mountable
+mountain/SM
+mountaineer/SMDG
+mountaineering/M
+mountainous
+mountainside/SM
+mountaintop/SM
+mountebank/MS
+mounted/U
+mounter/MS
+mounting/SM
+mourn/SZGDR
+mourned/U
+mourner/M
+mournful/YP
+mournfulness/M
+mourning/M
+mouse/DRSMZG
+mouser/M
+mousetrap/SM
+mousetrapped
+mousetrapping
+mousiness/M
+moussaka/S
+mousse/MGDS
+moustache/DSM
+mousy/PTR
+mouth/GMD
+mouthfeel
+mouthful/MS
+mouthiness/M
+mouthpiece/MS
+mouths
+mouthwash/MS
+mouthwatering
+mouthy/PTR
+mouton/M
+movable/SM
+move/AMZGDRSB
+moved/U
+movement/SM
+mover/AM
+movie/SM
+moviegoer/SM
+moving/Y
+mow/SZGMDR
+mower/M
+moxie/M
+mozzarella/M
+mp
+mpg
+mph
+mt
+mtg
+mtge
+mu/SM
+much/M
+mucilage/M
+mucilaginous
+muck/MDSG
+muckrake/DRSZG
+muckraker/M
+mucky/TR
+mucous
+mucus/M
+mud/M
+muddily
+muddiness/M
+muddle/MGDS
+muddleheaded
+muddy/PTGDRS
+mudflap/S
+mudflat/MS
+mudguard/SM
+mudpack/S
+mudroom/MS
+mudslide/MS
+mudslinger/SM
+mudslinging/M
+muenster/M
+muesli
+muezzin/MS
+muff/MDSG
+muffin/MS
+muffle/ZGDRS
+muffler/M
+mufti/SM
+mug/SM
+mugful/MS
+mugged
+mugger/MS
+mugginess/M
+mugging/MS
+muggins
+muggle/MS
+muggy/PTR
+mugshot/MS
+mugwump/MS
+mujaheddin
+mukluk/MS
+mulatto/M
+mulattoes
+mulberry/SM
+mulch/GMDS
+mulct/SGMD
+mule/MS
+muleskinner/MS
+muleteer/MS
+mulish/PY
+mulishness/M
+mull/DSG
+mullah/M
+mullahs
+mullein/M
+mullet/MS
+mulligan/SM
+mulligatawny/M
+mullion/SMD
+multi
+multicellular
+multichannel
+multicoloured
+multicultural
+multiculturalism/M
+multidimensional
+multidisciplinary
+multifaceted
+multifamily
+multifarious/PY
+multifariousness/M
+multiform
+multigrain
+multilateral/Y
+multilayered
+multilevel
+multilingual
+multilingualism/M
+multimedia/M
+multimillionaire/SM
+multinational/SM
+multipart
+multiparty
+multiplayer/M
+multiple/MS
+multiplex/ZGMDRS
+multiplexer/M
+multiplicand/MS
+multiplication/M
+multiplicative
+multiplicity/SM
+multiplier/M
+multiply/NZGDRSX
+multiprocessing
+multiprocessor/SM
+multipurpose
+multiracial
+multistage
+multistory
+multitask/GS
+multitasking/M
+multitude/SM
+multitudinous
+multivariate
+multiverse/SM
+multivitamin/MS
+multiyear
+mum
+mumble/MZGDRS
+mumbler/M
+mumbletypeg/M
+mummer/MS
+mummery/M
+mummification/M
+mummify/GNDS
+mummy/SM
+mumps/M
+mun
+munch/GDS
+munchie/S
+munchies/M
+munchkin/SM
+mundane/SY
+mung/DSG
+municipal/SMY
+municipality/SM
+munificence/M
+munificent/Y
+munition/MDGS
+mural/SM
+muralist/SM
+murder/ZGMDRS
+murderer/M
+murderess/MS
+murderous/Y
+murk/MS
+murkily
+murkiness/M
+murky/PTR
+murmur/ZGJMDRS
+murmurer/M
+murmuring/M
+murmurous
+murrain/M
+muscat/MS
+muscatel/SM
+muscle/MGDS
+musclebound
+muscleman
+musclemen
+muscly
+muscular/Y
+muscularity/M
+musculature/M
+musculoskeletal
+muse/MGDSJ
+musette/MS
+museum/MS
+mush/MDRSZG
+mushiness/M
+mushroom/GSMD
+mushy/PTR
+music/SM
+musical/MYS
+musicale/MS
+musicality/M
+musician/SMY
+musicianship/M
+musicological
+musicologist/MS
+musicology/M
+musing/MY
+musk/M
+muskeg/MS
+muskellunge/MS
+musket/MS
+musketeer/MS
+musketry/M
+muskie/M
+muskiness/M
+muskmelon/SM
+muskox/MN
+muskrat/MS
+musky/PTRS
+muslin/M
+muss/MDSG
+mussel/MS
+mussy/TR
+must've
+must/MRSZ
+mustachio/SMD
+mustang/MS
+mustard/M
+muster/GMD
+mustily
+mustiness/M
+mustn't
+musty/PTR
+mutability/M
+mutably
+mutagen/MS
+mutagenic
+mutant/MS
+mutate/XGNVDS
+mutation/M
+mutational
+mute/MYTGDRSPB
+muteness/M
+mutilate/DSGNX
+mutilation/M
+mutilator/SM
+mutineer/SM
+mutinous/Y
+mutiny/GDSM
+mutt/MS
+mutter/ZGJMDRS
+mutterer/M
+muttering/M
+mutton/M
+muttonchops/M
+muttony
+mutual/Y
+mutuality/M
+muumuu/MS
+muzak
+muzzily
+muzzle/DSMG
+muzzy/P
+my
+mycologist/SM
+mycology/M
+myelitis/M
+myna/MS
+myocardial
+myocardium
+myopia/M
+myopic
+myopically
+myriad/SM
+myrmidon/MS
+myrrh/M
+myrtle/SM
+mys
+myself
+mysterious/PY
+mysteriousness/M
+mystery/SM
+mystic/SM
+mystical/Y
+mysticism/M
+mystification/CM
+mystify/CDSGN
+mystique/M
+myth/M
+mythic
+mythical
+mythological
+mythologist/SM
+mythologize/DSG
+mythology/SM
+myths
+myxomatosis
+n/IKTH
+naan/S
+nab/S
+nabbed
+nabbing
+nabob/SM
+nacelle/SM
+nacho/SM
+nacre/M
+nacreous
+nadir/SM
+nae
+naff/RT
+nag/SM
+nagged
+nagger/MS
+nagging
+nagware
+nah
+naiad/SM
+naif/MS
+nail/MDSG
+nailbrush/MS
+naive/RYT
+naivete/M
+naivety/M
+naked/PY
+nakedness/M
+name's
+name/AGDS
+nameable/U
+named/U
+nameless/Y
+namely
+nameplate/MS
+namesake/SM
+nanny/SM
+nanobot/S
+nanometre/S
+nanosecond/SM
+nanotechnology/SM
+nanotube
+nap/SM
+napalm/MDSG
+nape/MS
+naphtha/M
+naphthalene/M
+napkin/MS
+napless
+napoleon/SM
+napped
+napper/MS
+napping
+nappy/TRSM
+narc/MS
+narcissism/M
+narcissist/MS
+narcissistic
+narcissus/M
+narcolepsy/M
+narcoleptic
+narcoses
+narcosis/M
+narcotic/SM
+narcotization/M
+narcotize/GDS
+nark
+narky
+narrate/GNVDSX
+narration/M
+narrative/SM
+narrator/SM
+narrow/PTGMDRYS
+narrowness/M
+narwhal/MS
+nary
+nasal/SMY
+nasality/M
+nasalization/M
+nasalize/DSG
+nascence/AM
+nascent/A
+nastily
+nastiness/M
+nasturtium/SM
+nasty/PTR
+natal
+natch
+nation/MS
+national/MYS
+nationalism/M
+nationalist/SM
+nationalistic
+nationalistically
+nationality/SM
+nationalization/MS
+nationalize/CDSG
+nationhood/M
+nationwide
+native/MS
+nativity/SM
+natl
+natter/GMDS
+nattily
+nattiness/M
+natty/PTR
+natural's
+natural/UPY
+naturalism/M
+naturalist/SM
+naturalistic
+naturalization/M
+naturalize/DSG
+naturalness/UM
+naturals
+nature's
+nature/CS
+naturism
+naturist/S
+naught
+naughtily
+naughtiness/M
+naughty/PTR
+nausea/M
+nauseam
+nauseate/GDS
+nauseating/Y
+nauseous/PY
+nauseousness/M
+nautical/Y
+nautilus/MS
+naval
+nave/MS
+navel/SM
+navigability/M
+navigable
+navigate/DSGN
+navigation/M
+navigational
+navigator/MS
+navvy/S
+navy/SM
+nay/SM
+naysayer/MS
+ne'er
+neanderthal/MS
+neap/MS
+near/DRYSPTG
+nearby
+nearness/M
+nearshore
+nearside
+nearsighted/YP
+nearsightedness/M
+neat/NRYPXT
+neaten/GD
+neath
+neatness/M
+nebula/M
+nebulae
+nebular
+nebulous/PY
+nebulousness/M
+necessarily/U
+necessary/SM
+necessitate/DSG
+necessitous
+necessity/SM
+neck/MDSG
+neckband/S
+neckerchief/MS
+necking/M
+necklace/MGDSJ
+neckline/MS
+necktie/MS
+necrology/M
+necromancer/SM
+necromancy/M
+necrophilia
+necrophiliac/S
+necropolis/MS
+necroses
+necrosis/M
+necrotic
+nectar/M
+nectarine/MS
+nee
+need/MDSG
+needed/U
+needful/Y
+neediness/M
+needle/MGDS
+needlepoint/M
+needless/YP
+needlessness/M
+needlewoman/M
+needlewomen
+needlework/M
+needn't
+needy/PTR
+nefarious/YP
+nefariousness/M
+neg
+negate/DSGNVX
+negation/M
+negative/MYGPDS
+negativeness/M
+negativism/M
+negativity/M
+neglect/SGMD
+neglectful/YP
+neglectfulness/M
+negligee/MS
+negligence/M
+negligent/Y
+negligible
+negligibly
+negotiability/M
+negotiable/A
+negotiate/ADSGN
+negotiation/AM
+negotiations
+negotiator/MS
+negritude/M
+negro
+negroid
+neigh/MDG
+neighbour/SGMDY
+neighbourhood/MS
+neighbourliness/M
+neighs
+neither
+nelson/SM
+nematode/SM
+nemeses
+nemesis/M
+neoclassic
+neoclassical
+neoclassicism/M
+neocolonialism/M
+neocolonialist/MS
+neocon/SM
+neoconservative/SM
+neocortex
+neodymium/M
+neolithic
+neologism/SM
+neon/M
+neonatal
+neonate/MS
+neophilia
+neophyte/MS
+neoplasm/MS
+neoplastic
+neoprene/M
+nepenthe/M
+nephew/SM
+nephrite/M
+nephritic
+nephritis/M
+nephropathy
+nepotism/M
+nepotist/SM
+nepotistic
+neptunium/M
+nerd/MS
+nerdy/RT
+nerve's
+nerve/UDSG
+nerveless/YP
+nervelessness/M
+nerviness/M
+nervous/YP
+nervousness/M
+nervy/TPR
+nest/MDSG
+nestle/GJDS
+nestling/M
+net/SM
+netball
+netbook/MS
+nether
+nethermost
+netherworld/M
+netiquette/S
+netted
+netter/S
+netting/M
+nettle/MGDS
+nettlesome
+network/SGMD
+networking/M
+neural/Y
+neuralgia/M
+neuralgic
+neurasthenia/M
+neurasthenic/MS
+neuritic/MS
+neuritis/M
+neurological/Y
+neurologist/SM
+neurology/M
+neuron/MS
+neuronal
+neuroscience
+neuroses
+neurosis/M
+neurosurgeon/MS
+neurosurgery/M
+neurosurgical
+neurotic/MS
+neurotically
+neuroticism
+neurotransmitter/SM
+neut
+neuter/MDGS
+neutral/SMY
+neutralism/M
+neutralist/SM
+neutrality/M
+neutralization/M
+neutralize/DRSZG
+neutralizer/M
+neutrino/SM
+neutron/SM
+never
+nevermore
+nevertheless
+nevi
+nevus/M
+new/STMRYP
+newbie/MS
+newborn/SM
+newcomer/SM
+newel/SM
+newfangled
+newfound
+newline/S
+newlywed/SM
+newness/M
+news/M
+newsagent/S
+newsboy/SM
+newscast/SMRZ
+newscaster/M
+newsdealer/SM
+newsflash/S
+newsgirl/SM
+newsgroup/MS
+newshound/S
+newsletter/MS
+newsman/M
+newsmen
+newspaper/MS
+newspaperman/M
+newspapermen
+newspaperwoman/M
+newspaperwomen
+newspeak
+newsprint/M
+newsreader/S
+newsreel/MS
+newsroom/MS
+newsstand/SM
+newsweekly/SM
+newswoman/M
+newswomen
+newsworthiness/M
+newsworthy/P
+newsy/TR
+newt/MS
+newton/MS
+next/M
+nexus/MS
+niacin/M
+nib/SM
+nibble/MZGDRS
+nibbler/M
+nice/PYTR
+niceness/M
+nicety/SM
+niche/SM
+nick/MDRSZG
+nickel/MS
+nickelodeon/SM
+nicker/MDG
+nickle/S
+nickname/DSMG
+nicotine/M
+niece/SM
+nifedipine
+niff
+niffy
+nifty/TR
+nigga/MS!
+niggard/SMY
+niggardliness/M
+niggaz/!
+nigger/SM!
+niggle/MZGDRS
+niggler/M
+nigh/RT
+night/SMY
+nightcap/SM
+nightclothes/M
+nightclub/SM
+nightclubbed
+nightclubbing
+nightdress/MS
+nightfall/M
+nightgown/SM
+nighthawk/SM
+nightie/SM
+nightingale/SM
+nightlife/M
+nightlight/S
+nightlong
+nightmare/SM
+nightmarish
+nightshade/SM
+nightshirt/SM
+nightspot/MS
+nightstand/SM
+nightstick/SM
+nighttime/M
+nightwatchman
+nightwatchmen
+nightwear/M
+nihilism/M
+nihilist/MS
+nihilistic
+nil/M
+nimbi
+nimble/TPR
+nimbleness/M
+nimbly
+nimbus/M
+nimby
+nimrod/MS
+nincompoop/SM
+nine/MS
+ninepin/MS
+ninepins/M
+nineteen/SMH
+nineteenth/M
+nineteenths
+ninetieth/M
+ninetieths
+ninety/HSM
+ninja/SM
+ninny/SM
+ninth/M
+ninths
+niobium/M
+nip/SM
+nipped
+nipper/MS
+nippiness/M
+nipping
+nipple/MS
+nippy/TPR
+nirvana/M
+nisei/M
+nit/SM
+nitpick/SZGDR
+nitpicker/M
+nitpicking/M
+nitrate/DSMGN
+nitration/M
+nitre/M
+nitric
+nitrification/M
+nitrite/SM
+nitro
+nitrocellulose/M
+nitrogen/M
+nitrogenous
+nitroglycerine/M
+nitwit/MS
+nix/GMDS
+no/SM
+nob/SY
+nobble/GDS
+nobelium/M
+nobility/M
+noble/RSPMT
+nobleman/M
+noblemen
+nobleness/M
+noblewoman/M
+noblewomen
+nobody/SM
+nocturnal/Y
+nocturne/MS
+nod/SM
+nodal
+nodded
+nodding
+noddle/MS
+noddy
+node/MS
+nodular
+nodule/MS
+noel/MS
+noes
+noggin/MS
+nohow
+noise/DSMG
+noiseless/PY
+noiselessness/M
+noisemaker/MS
+noisily
+noisiness/M
+noisome
+noisy/PTR
+nomad/SM
+nomadic
+nomenclature/MS
+nominal/Y
+nominate/ACGNVDS
+nomination's/A
+nomination/CSM
+nominative/SM
+nominator/CSM
+nominee/MS
+non
+nonabrasive
+nonabsorbent/SM
+nonacademic
+nonacceptance/M
+nonacid
+nonactive/MS
+nonaddictive
+nonadhesive
+nonadjacent
+nonadjustable
+nonadministrative
+nonage/MS
+nonagenarian/MS
+nonaggression/M
+nonalcoholic
+nonaligned
+nonalignment/M
+nonallergic
+nonappearance/MS
+nonassignable
+nonathletic
+nonattendance/M
+nonautomotive
+nonavailability/M
+nonbasic
+nonbeliever/MS
+nonbelligerent/MS
+nonbinding
+nonbreakable
+nonburnable
+noncaloric
+noncancerous
+nonce/M
+nonchalance/M
+nonchalant/Y
+nonchargeable
+nonclerical/MS
+nonclinical
+noncollectable
+noncom/MS
+noncombat
+noncombatant/MS
+noncombustible
+noncommercial/MS
+noncommittal/Y
+noncommunicable
+noncompeting
+noncompetitive
+noncompliance/M
+noncomplying
+noncomprehending
+nonconducting
+nonconductor/MS
+nonconforming
+nonconformism
+nonconformist/MS
+nonconformity/M
+nonconsecutive
+nonconstructive
+noncontagious
+noncontinuous
+noncontributing
+noncontributory
+noncontroversial
+nonconvertible
+noncooperation/M
+noncorroding
+noncorrosive
+noncredit
+noncriminal/SM
+noncritical
+noncrystalline
+noncumulative
+noncustodial
+nondairy
+nondeductible/M
+nondelivery/SM
+nondemocratic
+nondenominational
+nondepartmental
+nondepreciating
+nondescript
+nondestructive
+nondetachable
+nondeterminism
+nondeterministic
+nondisciplinary
+nondisclosure/M
+nondiscrimination/M
+nondiscriminatory
+nondramatic
+nondrinker/MS
+nondrying
+none
+noneducational
+noneffective
+nonelastic
+nonelectric
+nonelectrical
+nonempty
+nonenforceable
+nonentity/SM
+nonequivalent/MS
+nonessential
+nonesuch/MS
+nonetheless
+nonevent/MS
+nonexchangeable
+nonexclusive
+nonexempt/M
+nonexistence/M
+nonexistent
+nonexplosive/MS
+nonfactual
+nonfading
+nonfat
+nonfatal
+nonfattening
+nonferrous
+nonfiction/M
+nonfictional
+nonflammable
+nonflowering
+nonfluctuating
+nonflying
+nonfood/M
+nonfreezing
+nonfunctional
+nongovernmental
+nongranular
+nonhazardous
+nonhereditary
+nonhuman
+nonidentical
+noninclusive
+nonindependent
+nonindustrial
+noninfectious
+noninflammatory
+noninflationary
+noninflected
+nonintellectual/MS
+noninterchangeable
+noninterference/M
+nonintervention/M
+nonintoxicating
+noninvasive
+nonirritating
+nonissue
+nonjudgmental
+nonjudicial
+nonlegal
+nonlethal
+nonlinear
+nonliterary
+nonliving/M
+nonmagnetic
+nonmalignant
+nonmember/MS
+nonmetal/SM
+nonmetallic
+nonmigratory
+nonmilitant
+nonmilitary
+nonnarcotic/SM
+nonnative/MS
+nonnegotiable
+nonnuclear
+nonnumerical
+nonobjective
+nonobligatory
+nonobservance/M
+nonobservant
+nonoccupational
+nonoccurence
+nonofficial
+nonoperational
+nonoperative
+nonparallel/MS
+nonpareil/MS
+nonparticipant/MS
+nonparticipating
+nonpartisan/SM
+nonpaying
+nonpayment/SM
+nonperformance/M
+nonperforming
+nonperishable
+nonperson/MS
+nonphysical/Y
+nonplus/S
+nonplussed
+nonplussing
+nonpoisonous
+nonpolitical
+nonpolluting
+nonporous
+nonpracticing
+nonprejudicial
+nonprescription
+nonproductive
+nonprofessional/SM
+nonprofit/SMB
+nonproliferation/M
+nonpublic
+nonpunishable
+nonracial
+nonradioactive
+nonrandom
+nonreactive
+nonreciprocal/SM
+nonreciprocating
+nonrecognition/M
+nonrecoverable
+nonrecurring
+nonredeemable
+nonrefillable
+nonrefundable
+nonreligious
+nonrenewable
+nonrepresentational
+nonresident/MS
+nonresidential
+nonresidual/M
+nonresistance/M
+nonresistant
+nonrestrictive
+nonreturnable/MS
+nonrhythmic
+nonrigid
+nonsalaried
+nonscheduled
+nonscientific
+nonscoring
+nonseasonal
+nonsectarian
+nonsecular
+nonsegregated
+nonsense/M
+nonsensical/Y
+nonsensitive
+nonsexist
+nonsexual
+nonskid
+nonslip
+nonsmoker/SM
+nonsmoking
+nonsocial
+nonspeaking
+nonspecialist/MS
+nonspecializing
+nonspecific
+nonspiritual/SM
+nonstaining
+nonstandard
+nonstarter/MS
+nonstick
+nonstop
+nonstrategic
+nonstriking
+nonstructural
+nonsuccessive
+nonsupport/GM
+nonsurgical
+nonsustaining
+nonsympathizer/M
+nontarnishable
+nontaxable
+nontechnical
+nontenured
+nontheatrical
+nonthinking
+nonthreatening
+nontoxic
+nontraditional
+nontransferable
+nontransparent
+nontrivial
+nontropical
+nonuniform
+nonunion
+nonuser/MS
+nonvenomous
+nonverbal
+nonviable
+nonviolence/M
+nonviolent/Y
+nonvirulent
+nonvocal
+nonvocational
+nonvolatile
+nonvoter/MS
+nonvoting
+nonwhite/MS
+nonworking
+nonyielding
+nonzero
+noodle/MGDS
+nook/MS
+nookie
+nooky
+noon/M
+noonday/M
+noontide/M
+noontime/M
+noose/SM
+nope
+nor
+nor'easter
+norm/MS
+normal/MY
+normalcy/M
+normality/M
+normalization/M
+normalize/DSG
+normative
+north/ZMR
+northbound
+northeast/MRZ
+northeaster/MY
+northeastern
+northeastward/S
+norther/MY
+northerly/SM
+northern/ZR
+northerner/M
+northernmost
+northward/S
+northwest/ZMR
+northwester/MY
+northwestern
+northwestward/S
+nose/MGDS
+nosebag/S
+nosebleed/MS
+nosecone/SM
+nosedive/DSMG
+nosegay/SM
+nosh/MDRSZG
+nosher/M
+nosily
+nosiness/M
+nostalgia/M
+nostalgic
+nostalgically
+nostril/MS
+nostrum/MS
+nosy/RPT
+not/B
+notability/SM
+notable/SM
+notably
+notarial
+notarization/M
+notarize/GDS
+notary/SM
+notate/GDS
+notation/FCSM
+notch/GMDS
+note's
+note/FCSDG
+notebook/MS
+notelet/S
+notepad/S
+notepaper/M
+noteworthiness/M
+noteworthy/P
+nothing/PSM
+nothingness/M
+notice/MGDS
+noticeable/U
+noticeably
+noticeboard/S
+noticed/U
+notifiable
+notification/M
+notifier/M
+notify/NDRSXZG
+notion/MS
+notional/Y
+notoriety/M
+notorious/Y
+notwithstanding
+notwork/S
+nougat/MS
+nought/MS
+noun/KMS
+nourish/DSLG
+nourishment/M
+nous
+nova/MS
+novae
+novel/SM
+novelette/SM
+novelist/SM
+novelization/MS
+novelize/DSG
+novella/MS
+novelty/SM
+novena/MS
+novenae
+novice/MS
+novitiate/MS
+now/M
+nowadays/M
+noway/S
+nowhere/M
+nowise
+nowt
+noxious
+nozzle/MS
+nu/SM
+nuance/MDS
+nub/SM
+nubbin/MS
+nubby/TR
+nubile
+nuclear/K
+nucleate/DSGN
+nucleation/M
+nuclei
+nucleic
+nucleoli
+nucleolus/M
+nucleon/SM
+nucleoside
+nucleotide
+nucleus/M
+nude/MTRS
+nudge/GDSM
+nudism/M
+nudist/SM
+nudity/M
+nugatory
+nugget/SM
+nuisance/MS
+nuke/MGDS
+null/S
+nullification/M
+nullify/NDSG
+nullity/M
+numb/ZTGPDRYS
+number's
+number/ASDG
+numbered/U
+numberless
+numbness/M
+numbskull/SM
+numerable/I
+numeracy/IM
+numeral/SM
+numerate/XGNDS
+numeration/M
+numerator/MS
+numeric
+numerical/Y
+numerologist/MS
+numerology/M
+numerous/Y
+numinous
+numismatic/S
+numismatics/M
+numismatist/SM
+nun/SM
+nuncio/SM
+nunnery/SM
+nuptial/MS
+nurse/MZGDRS
+nurselings
+nursemaid/MS
+nurser/M
+nursery/SM
+nurseryman/M
+nurserymen
+nursing/M
+nursling/SM
+nurture/DRSMZG
+nurturer/M
+nut/SM
+nutcase/S
+nutcracker/MS
+nuthatch/MS
+nuthouse/S
+nutmeat/SM
+nutmeg/SM
+nutpick/SM
+nutria/SM
+nutrient/MS
+nutriment/MS
+nutrition/M
+nutritional/Y
+nutritionist/SM
+nutritious/YP
+nutritiousness/M
+nutritive
+nutshell/MS
+nutted
+nutter/S
+nuttiness/M
+nutting
+nutty/RTP
+nuzzle/DRSMZG
+nuzzler/M
+nybble/S
+nylon/MS
+nylons/M
+nymph/M
+nymphet/MS
+nympho/S
+nymphomania/M
+nymphomaniac/SM
+nymphs
+o
+o'clock
+o'er
+oaf/SM
+oafish/PY
+oafishness/M
+oak/SMN
+oakum/M
+oar/SGMD
+oarlock/SM
+oarsman/M
+oarsmen
+oarswoman/M
+oarswomen
+oases
+oasis/M
+oat/SMN
+oatcake/SM
+oath/M
+oaths
+oatmeal/M
+oats/M
+ob/S
+obbligato/MS
+obduracy/M
+obdurate/PY
+obdurateness/M
+obedience/EM
+obedient/EY
+obeisance/SM
+obeisant
+obelisk/MS
+obese
+obesity/M
+obey/EDSG
+obfuscate/GNXDS
+obfuscation/M
+obi/SM
+obit/MS
+obituary/SM
+obj
+object/SGVMD
+objectify/NGDS
+objection/SMB
+objectionable/U
+objectionably
+objective/SMYP
+objectiveness/M
+objectivity/M
+objector/MS
+objurgate/XGNDS
+objurgation/M
+oblate/NX
+oblation/M
+obligate/DSXGN
+obligation/M
+obligatorily
+obligatory
+oblige/EGDS
+obliging/Y
+oblique/SMYP
+obliqueness/M
+obliquity/M
+obliterate/DSGN
+obliteration/M
+oblivion/M
+oblivious/YP
+obliviousness/M
+oblong/MS
+obloquy/M
+obnoxious/YP
+obnoxiousness/M
+oboe/MS
+oboist/MS
+obscene/RYT
+obscenity/SM
+obscurantism/M
+obscurantist/SM
+obscure/DRSYTG
+obscurity/SM
+obsequies
+obsequious/PY
+obsequiousness/M
+obsequy/M
+observably
+observance/MS
+observant/Y
+observation/SM
+observational
+observatory/SM
+observe/DRSBZG
+observed/U
+observer/M
+obsess/DSGV
+obsession/SM
+obsessional/Y
+obsessive/PSMY
+obsessiveness/M
+obsidian/M
+obsolesce/DSG
+obsolescence/M
+obsolescent
+obsolete/GDS
+obstacle/MS
+obstetric/S
+obstetrical
+obstetrician/SM
+obstetrics/M
+obstinacy/M
+obstinate/Y
+obstreperous/YP
+obstreperousness/M
+obstruct/DGVS
+obstructed/U
+obstruction/SM
+obstructionism/M
+obstructionist/MS
+obstructive/YP
+obstructiveness/M
+obtain/DBLGS
+obtainable/U
+obtainment/M
+obtrude/DSG
+obtrusion/M
+obtrusive/UPY
+obtrusiveness/UM
+obtuse/YTRP
+obtuseness/M
+obverse/SM
+obviate/DSGN
+obviation/M
+obvious/PY
+obviousness/M
+ocarina/MS
+occasion/GMDS
+occasional/Y
+occidental/SM
+occlude/GDS
+occlusion/SM
+occlusive
+occult/M
+occultism/M
+occultist/SM
+occupancy/M
+occupant/SM
+occupation/AM
+occupational/Y
+occupations
+occupied/U
+occupier/SM
+occupy/ADSG
+occur/AS
+occurred/A
+occurrence/SM
+occurring/A
+ocean/SM
+oceanfront/SM
+oceangoing
+oceanic/M
+oceanographer/SM
+oceanographic
+oceanography/M
+oceanology/M
+ocelot/MS
+och
+ochre/M
+ocker/S
+octagon/MS
+octagonal
+octal
+octane/MS
+octave/MS
+octavo/MS
+octet/SM
+octogenarian/SM
+octopus/MS
+ocular/MS
+oculist/SM
+oculomotor
+odalisque/SM
+odd/STRYLP
+oddball/SM
+oddity/SM
+oddment/SM
+oddness/M
+odds/M
+ode/SM
+odious/YP
+odiousness/M
+odium/M
+odometer/MS
+odoriferous
+odorous
+odour/SMD
+odourless
+odyssey/MS
+oecus
+oedipal
+oenology/M
+oenophile/SM
+oesophagus
+oestradiol
+oeuvre/MS
+of
+off/SZGDRJ
+offal/M
+offbeat/MS
+offence/MS
+offend/ZGDRS
+offender/M
+offensive's
+offensive/IPY
+offensiveness/IM
+offensives
+offer/JGMD
+offering/M
+offertory/SM
+offhand
+offhanded/PY
+offhandedness/M
+office/MZRS
+officeholder/SM
+officer/M
+official/MYS
+officialdom/M
+officialese
+officialism/M
+officiant/SM
+officiate/DSG
+officiator/MS
+officious/PY
+officiousness/M
+offing/M
+offish
+offline
+offload/SDG
+offprint/SM
+offset/MS
+offsetting
+offshoot/MS
+offshore/G
+offside
+offsite
+offspring/M
+offstage/S
+offtrack
+oft
+often/TR
+oftentimes
+ofttimes
+ogle/MZGDRS
+ogler/M
+ogre/MS
+ogreish
+ogress/MS
+oh/M
+ohm/SM
+ohmmeter/MS
+oho
+ohs
+oi
+oik/S
+oil/SGMD
+oilcan/S
+oilcloth/M
+oilcloths
+oilfield/S
+oiliness/M
+oilman
+oilmen
+oilskin/MS
+oilskins/M
+oily/RPT
+oink/MDSG
+ointment/SM
+okapi/SM
+okay/MDSG
+okra/MS
+old/TMNRP
+oldie/SM
+oldish
+oldness/M
+oldster/MS
+ole/SMV
+oleaginous
+oleander/MS
+oleo/M
+oleomargarine/M
+olfactory/SM
+oligarch/M
+oligarchic
+oligarchical
+oligarchs
+oligarchy/SM
+oligonucleotide/S
+oligopoly/SM
+olive/SM
+om/SMNX
+ombudsman/M
+ombudsmen
+omega/SM
+omelette/MS
+omen/M
+omicron/MS
+ominous/YP
+ominousness/M
+omission/MS
+omit/S
+omitted
+omitting
+omnibus/MS
+omnipotence/M
+omnipotent
+omnipresence/M
+omnipresent
+omniscience/M
+omniscient
+omnivore/MS
+omnivorous/PY
+omnivorousness/M
+on/Y
+onboard
+once/M
+oncogene/SM
+oncologist/SM
+oncology/M
+oncoming
+one/SXMNP
+oneness/M
+onerous/PY
+onerousness/M
+oneself
+onetime
+ongoing
+onion/M
+onionskin/M
+online
+onlooker/SM
+onlooking
+onomatopoeia/M
+onomatopoeic
+onomatopoetic
+onrush/MSG
+onscreen
+onset/MS
+onshore
+onside
+onsite
+onslaught/MS
+onstage
+onto
+ontogeny/M
+ontological
+ontology/M
+onus/MS
+onward
+onyx/MS
+oodles/M
+ooh/GD
+oohs
+oomph
+oops
+ooze/MGDS
+oozy/TR
+op/SMDG
+opacity/M
+opal/MS
+opalescence/M
+opalescent
+opaque/PYTGDRS
+opaqueness/M
+opcode/S
+ope/S
+open/ZTGJPMDRYS
+opencast
+opened/U
+opener/M
+openhanded/P
+openhandedness/M
+openhearted
+opening/M
+openness/M
+openwork/M
+opera/MS
+operable/I
+operand/S
+operate/DSGNVX
+operatic
+operatically
+operation/M
+operational/Y
+operative/SM
+operator/SM
+operetta/SM
+ophthalmic
+ophthalmologist/SM
+ophthalmology/M
+opiate/SM
+opine/GNXDS
+opinion/M
+opinionated
+opioid/SM
+opium/M
+opossum/MS
+opp
+opponent/SM
+opportune/IY
+opportunism/M
+opportunist/SM
+opportunistic
+opportunistically
+opportunity/SM
+oppose/DSG
+opposed/U
+opposite/SMYNX
+opposition/M
+oppress/DSGV
+oppression/M
+oppressive/YP
+oppressiveness/M
+oppressor/MS
+opprobrious/Y
+opprobrium/M
+opt/SGD
+optic/MS
+optical/Y
+optician/SM
+optics/M
+optima
+optimal/Y
+optimism/SM
+optimist/SM
+optimistic
+optimistically
+optimization/MS
+optimize/DRSG
+optimum/SM
+option/SMDG
+optional/Y
+optometrist/MS
+optometry/M
+opulence/M
+opulent/Y
+opus/MS
+or
+oracle/SM
+oracular
+oral/MYS
+orality
+orange/SMP
+orangeade/MS
+orangery/SM
+orangutan/SM
+orate/GNXDS
+oration/M
+orator/SM
+oratorical/Y
+oratorio/MS
+oratory/SM
+orb/SM
+orbicular
+orbit/MDRZGS
+orbital/SM
+orbiter/M
+orc/SM
+orchard/SM
+orchestra/MS
+orchestral
+orchestrate/DSXGN
+orchestration/M
+orchid/SM
+ordain/SDLG
+ordainment/M
+ordeal/SM
+order/EAMDGS
+ordered/U
+orderings
+orderliness/EM
+orderly/PSM
+ordinal/SM
+ordinance/SM
+ordinarily
+ordinariness/M
+ordinary/SMP
+ordinate/MNSX
+ordination/M
+ordnance/M
+ordure/M
+ore/SM
+oregano/M
+org
+organ/MS
+organdy/M
+organelle/MS
+organic/SM
+organically/I
+organism/MS
+organismic
+organist/MS
+organization/ASM
+organizational/Y
+organize/AESDG
+organized/U
+organizer/MS
+organza/M
+orgasm/SM
+orgasmic
+orgiastic
+orgy/SM
+oriel/MS
+orient's
+orient/AEDGS
+oriental/MS
+orientalist/S
+orientate/EDSGN
+orientation/AEM
+orientations
+orienteering
+orifice/MS
+orig
+origami/M
+origin/SM
+original/MYS
+originality/M
+originate/DSGN
+origination/M
+originator/SM
+oriole/SM
+orison/SM
+ormolu/M
+ornament/SGMD
+ornamental
+ornamentation/M
+ornate/YP
+ornateness/M
+orneriness/M
+ornery/PRT
+ornithological
+ornithologist/MS
+ornithology/M
+orotund
+orotundity/SM
+orphan/SMDG
+orphanage/MS
+orris/MS
+orthodontia/M
+orthodontic/S
+orthodontics/M
+orthodontist/SM
+orthodox/U
+orthodoxy/SM
+orthogonal
+orthogonality
+orthographic
+orthographically
+orthography/SM
+orthopaedic/S
+orthopaedics/M
+orthopaedist/MS
+orzo/M
+oscillate/GNDSX
+oscillation/M
+oscillator/SM
+oscillatory
+oscilloscope/MS
+osculate/DSXGN
+osculation/M
+osier/MS
+osmium/M
+osmosis/M
+osmotic
+osprey/SM
+ossicles
+ossification/M
+ossify/NGDS
+ostensible
+ostensibly
+ostentation/M
+ostentatious/Y
+osteoarthritis/M
+osteopath/M
+osteopathic
+osteopaths
+osteopathy/M
+osteoporosis/M
+ostler/S
+ostracism/M
+ostracize/GDS
+ostrich/MS
+other/MSP
+otherwise
+otherworldly
+otiose
+otter/MS
+ottoman/MS
+oubliette/MS
+ouch
+ought
+oughtn't
+ounce/MS
+our/S
+ourselves
+oust/ZGDRS
+ouster/M
+out/SJGMDR
+outage/SM
+outargue/GDS
+outback/MS
+outbalance/DSG
+outbid/S
+outbidding
+outboard/MS
+outboast/DSG
+outbound
+outbox/MS
+outbreak/MS
+outbuilding/MS
+outburst/SM
+outcast/MS
+outclass/DSG
+outcome/MS
+outcrop/MS
+outcropped
+outcropping/SM
+outcry/SM
+outdated
+outdid
+outdistance/GDS
+outdo/G
+outdoes
+outdone
+outdoor/S
+outdoors/M
+outdoorsy
+outdraw/GS
+outdrawn
+outdrew
+outercourse
+outermost
+outerwear/M
+outface/GDS
+outfall/S
+outfield/SMRZ
+outfielder/M
+outfight/SG
+outfit/SM
+outfitted
+outfitter/MS
+outfitting
+outflank/GSD
+outflow/MS
+outfought
+outfox/GDS
+outgo/MJG
+outgoes
+outgrew
+outgrow/HGS
+outgrown
+outgrowth/M
+outgrowths
+outguess/GDS
+outgun/S
+outgunned
+outgunning
+outhit/S
+outhitting
+outhouse/SM
+outing/M
+outlaid
+outlandish/PY
+outlandishness/M
+outlast/DSG
+outlaw/SGMD
+outlay/SGM
+outlet/SM
+outlier/S
+outline/MGDS
+outlive/GDS
+outlook/MS
+outlying
+outmanoeuvre/DSG
+outmatch/GDS
+outmoded
+outnumber/DSG
+outpace/GDS
+outpatient/MS
+outperform/GSD
+outplace/L
+outplacement/M
+outplay/GDS
+outpoint/DGS
+outpost/MS
+outpouring/MS
+outproduce/DSG
+output/SM
+outputted
+outputting
+outrace/GDS
+outrage/MGDS
+outrageous/Y
+outran
+outrank/GDS
+outre
+outreach/MDSG
+outrider/MS
+outrigger/SM
+outright
+outrun/S
+outrunning
+outscore/GDS
+outsell/GS
+outset/SM
+outshine/GS
+outshone
+outshout/GDS
+outside/MZRS
+outsider/M
+outsize/MS
+outskirt/MS
+outsmart/GDS
+outsold
+outsource/DSG
+outsourcing/M
+outspend/SG
+outspent
+outspoken/YP
+outspokenness/M
+outspread/GS
+outstanding/Y
+outstation/MS
+outstay/DGS
+outstretch/DSG
+outstrip/S
+outstripped
+outstripping
+outta
+outtake/MS
+outvote/GDS
+outward/YS
+outwear/GS
+outweigh/GD
+outweighs
+outwit/S
+outwith
+outwitted
+outwitting
+outwore
+outwork/MDRSZG
+outworn
+ouzo/MS
+ova
+oval/MS
+ovarian
+ovary/SM
+ovate/NX
+ovation/M
+oven/MS
+ovenbird/SM
+ovenproof
+ovenware
+over/MYS
+overabundance/M
+overabundant
+overachieve/ZGDRS
+overachiever/M
+overact/GVSD
+overage/SM
+overaggressive
+overall/SM
+overalls/M
+overambitious
+overanxious
+overarching
+overarm/GSD
+overate
+overattentive
+overawe/DSG
+overbalance/MGDS
+overbear/GS
+overbearing/Y
+overbid/SM
+overbidding
+overbite/MS
+overblown
+overboard
+overbold
+overbook/DGS
+overbore
+overborne
+overbought
+overbuild/SG
+overbuilt
+overburden/GSD
+overbuy/GS
+overcame
+overcapacity/M
+overcapitalize/DSG
+overcareful
+overcast/MGS
+overcautious
+overcharge/DSMG
+overclock/GD
+overcloud/SGD
+overcoat/MS
+overcome/GS
+overcompensate/DSGN
+overcompensation/M
+overconfidence/M
+overconfident
+overconscientious
+overcook/DGS
+overcritical
+overcrowd/SDG
+overcrowding/M
+overdecorate/DSG
+overdependent
+overdevelop/SDG
+overdid
+overdo/G
+overdoes
+overdone
+overdose/MGDS
+overdraft/SM
+overdraw/GS
+overdrawn
+overdress/GMDS
+overdrew
+overdrive/SM
+overdub/SM
+overdubbed
+overdubbing
+overdue
+overeager
+overeat/GSN
+overemotional
+overemphasis/M
+overemphasize/GDS
+overenthusiastic
+overestimate/MGNDS
+overestimation/M
+overexcite/DSG
+overexercise/GDS
+overexert/SDG
+overexertion/M
+overexpose/GDS
+overexposure/M
+overextend/DGS
+overfed
+overfeed/GS
+overfill/DGS
+overflew
+overflight/MS
+overflow/MDSG
+overflown
+overfly/GS
+overfond
+overfull
+overgeneralize/DSG
+overgenerous
+overgraze/DSG
+overgrew
+overground
+overgrow/HSG
+overgrown
+overgrowth/M
+overhand/MDS
+overhang/MSG
+overhasty
+overhaul/MDSG
+overhead/MS
+overhear/SG
+overheard
+overheat/DSG
+overhung
+overindulge/GDS
+overindulgence/M
+overindulgent
+overinflated
+overjoy/GSD
+overkill/M
+overladen
+overlaid
+overlain
+overland
+overlap/SM
+overlapped
+overlapping
+overlarge
+overlay/GSM
+overleaf
+overlie
+overload/GMDS
+overlong
+overlook/GMDS
+overlord/MS
+overly/SG
+overmanned
+overmanning
+overmaster/SDG
+overmodest
+overmuch/S
+overnice
+overnight/MS
+overoptimism/M
+overoptimistic
+overpaid
+overparticular
+overpass/MS
+overpay/GS
+overplay/GDS
+overpopulate/GNDS
+overpopulation/M
+overpower/SDG
+overpowering/Y
+overpraise/DSG
+overprecise
+overprice/DSG
+overprint/SMDG
+overproduce/GDS
+overproduction/M
+overprotect/SDGV
+overqualified
+overran
+overrate/GDS
+overreach/GDS
+overreact/SDG
+overreaction/SM
+overrefined
+overridden
+override/MGS
+overripe/M
+overrode
+overrule/GDS
+overrun/SM
+overrunning
+oversampling
+oversaw
+oversea/S
+oversee/RSZ
+overseeing
+overseen
+overseer/M
+oversell/GS
+oversensitive/P
+oversensitiveness/M
+oversexed
+overshadow/DSG
+overshare/DSG
+overshoe/MS
+overshoot/GS
+overshot
+oversight/SM
+oversimple
+oversimplification/M
+oversimplify/DSNGX
+oversized
+oversleep/GS
+overslept
+oversold
+overspecialization/M
+overspecialize/GDS
+overspend/SG
+overspent
+overspread/GS
+overstaffed
+overstate/DSLG
+overstatement/MS
+overstay/DSG
+overstep/S
+overstepped
+overstepping
+overstimulate/DSG
+overstock/GSD
+overstretch/GDS
+overstrict
+overstrung
+overstuffed
+oversubscribe/DSG
+oversubtle
+oversupply/GDS
+oversuspicious
+overt/Y
+overtake/GS
+overtaken
+overtax/GDS
+overthink/SG
+overthought
+overthrew
+overthrow/SMG
+overthrown
+overtime/MS
+overtire/GDS
+overtone/MS
+overtook
+overture/MS
+overturn/DSG
+overuse/DSMG
+overvaluation/S
+overvalue/DSG
+overview/MS
+overweening/Y
+overweight/M
+overwhelm/SGD
+overwhelming/Y
+overwinter/SDG
+overwork/GMDS
+overwrite/GS
+overwritten
+overwrote
+overwrought
+overzealous
+oviduct/SM
+oviparous
+ovoid/MS
+ovular
+ovulate/DSGN
+ovulation/M
+ovule/MS
+ovum/M
+ow
+owe/DSG
+owl/SM
+owlet/MS
+owlish/Y
+own/ESGD
+owner/MS
+ownership/M
+ox/MN
+oxalate
+oxblood/M
+oxbow/MS
+oxcart/SM
+oxford/SM
+oxidant/MS
+oxidase
+oxidation/M
+oxidative
+oxide/MS
+oxidization/M
+oxidize/ZGDRS
+oxidizer/M
+oxtail/S
+oxyacetylene/M
+oxygen/M
+oxygenate/DSGN
+oxygenation/M
+oxymora
+oxymoron/M
+oyster/SM
+oz
+ozone/M
+p/NRXTGJ
+pH
+pa/SMH
+pablum/M
+pabulum/M
+pace/MZGDRS
+pacemaker/SM
+pacer/M
+pacesetter/SM
+pacey
+pachyderm/MS
+pachysandra/MS
+pacific
+pacifically
+pacification/M
+pacifier/M
+pacifism/M
+pacifist/SM
+pacifistic
+pacify/ZGDRSN
+pack's
+pack/AUGSD
+package's
+package/AGDS
+packager/SM
+packaging/M
+packer/MS
+packet/MS
+packing's
+packinghouse/SM
+packsaddle/MS
+pact/MS
+pacy/RT
+pad/SM
+padded
+padding/M
+paddle/MZGDRS
+paddler/M
+paddock/MDGS
+paddy/SM
+padlock/MDSG
+padre/SM
+paean/SM
+paedophilia
+paella/MS
+pagan/SM
+paganism/M
+page/MZGDRS
+pageant/MS
+pageantry/M
+pageboy/SM
+pager/M
+paginate/DSGN
+pagination/M
+pagoda/MS
+pah
+paid/AU
+pail/MS
+pailful/SM
+pain/MDSG
+painful/PY
+painfuller
+painfullest
+painfulness/M
+painkiller/MS
+painkilling
+painless/PY
+painlessness/M
+painstaking/MY
+paint/SZGJMDR
+paintball
+paintbox/MS
+paintbrush/MS
+painted/U
+painter/MY
+painting/M
+paintwork
+pair/AMDSG
+paired/U
+pairing/S
+pairwise
+paisley/SM
+pal/SMY
+palace/MS
+paladin/SM
+palanquin/SM
+palatable/U
+palatal/SM
+palatalization/M
+palatalize/GDS
+palate/MBS
+palatial/Y
+palatinate/MS
+palatine/MS
+palaver/GSMD
+palazzi
+palazzo
+pale/MYTGPDRSJ
+paleface/MS
+paleness/M
+paleo
+paleographer/MS
+paleography/M
+paleolithic
+paleontologist/SM
+paleontology/M
+palette/SM
+palfrey/SM
+palimony/M
+palimpsest/MS
+palindrome/MS
+palindromic
+paling/M
+palisade/SM
+palish
+pall/MDSG
+palladium/M
+pallbearer/MS
+pallet/MS
+palliate/DSGNV
+palliation/M
+palliative/SM
+pallid/YP
+pallidness/M
+pallor/M
+palm/MDSG
+palmate
+palmetto/SM
+palmist/SM
+palmistry/M
+palmtop/SM
+palmy/TR
+palomino/MS
+palpable
+palpably
+palpate/DSGN
+palpation/M
+palpitate/XGNDS
+palpitation/M
+palsy/GDSM
+paltriness/M
+paltry/RPT
+pampas/M
+pamper/DSG
+pamphlet/MS
+pamphleteer/MS
+pan/SM
+panacea/SM
+panache/M
+panama/MS
+panatella/S
+pancake/DSMG
+panchromatic
+pancreas/MS
+pancreatic
+pancreatitis
+panda/SM
+pandemic/SM
+pandemonium/M
+pander/MDRZGS
+panderer/M
+pane/KM
+panegyric/SM
+panel/SM
+panelled
+panelling/SM
+panellist/SM
+panes
+pang/MS
+panhandle/DRSMZG
+panhandler/M
+panic/SM
+panicked
+panicking
+panicky
+panned
+pannier/SM
+panning
+panoply/SM
+panorama/SM
+panoramic
+panpipes/M
+pansy/SM
+pant/MDSG
+pantaloons/M
+pantechnicon/S
+pantheism/M
+pantheist/SM
+pantheistic
+pantheon/SM
+panther/MS
+pantie/MS
+panto/S
+pantomime/MGDS
+pantomimic
+pantomimist/SM
+pantry/SM
+pantsuit/SM
+pantyhose/M
+pantyliner/M
+pantywaist/SM
+pap/SM
+papa/MS
+papacy/SM
+papal
+paparazzi/M
+paparazzo
+papaya/MS
+paper/SZGMDR
+paperback/SM
+paperbark/S
+paperboard/M
+paperboy/SM
+paperclip/S
+paperer/M
+papergirl/SM
+paperhanger/SM
+paperhanging/M
+paperless
+paperweight/MS
+paperwork/M
+papery
+papilla/M
+papillae
+papillary
+papist/MS
+papoose/MS
+pappy/SM
+paprika/M
+papyri
+papyrus/M
+par/SZGMDRBJ
+para/MS
+parable/MS
+parabola/SM
+parabolic
+paracetamol/S
+parachute/DSMG
+parachutist/MS
+parade/MZGDRS
+parader/M
+paradigm/SM
+paradigmatic
+paradisaical
+paradise/SM
+paradox/MS
+paradoxical/Y
+paraffin/M
+paragliding
+paragon/MS
+paragraph/GMD
+paragraphs
+parakeet/SM
+paralegal/MS
+parallax/MS
+parallel/SGMD
+paralleled/U
+parallelism/MS
+parallelization
+parallelized
+parallelogram/SM
+paralyses
+paralysingly
+paralysis/M
+paralytic/SM
+paralyze/DSG
+paramagnetic
+paramecia
+paramecium/M
+paramedic/MS
+paramedical/MS
+parameter/MS
+parameterize/D
+parametric
+paramilitary/SM
+paramount
+paramountcy
+paramour/SM
+paranoia/M
+paranoiac/MS
+paranoid/SM
+paranormal
+parapet/MS
+paraphernalia/M
+paraphrase/DSMG
+paraplegia/M
+paraplegic/SM
+paraprofessional/MS
+parapsychologist/MS
+parapsychology/M
+paraquat/M
+parasailing
+parascending
+parasite/SM
+parasitic
+parasitical/Y
+parasitism/M
+parasol/MS
+parasympathetic/S
+parathion/M
+parathyroid/MS
+paratroop/RZS
+paratrooper/M
+paratroops/M
+paratyphoid/M
+parboil/DSG
+parcel/MS
+parcelled
+parcelling
+parch/LGDS
+parchment/SM
+pardner/S
+pardon/ZGMDRBS
+pardonable/U
+pardonably/U
+pardoner/M
+pare/S
+paregoric/M
+parent/GMDS
+parentage/M
+parental
+parentheses
+parenthesis/M
+parenthesize/DSG
+parenthetic
+parenthetical/Y
+parenthood/M
+parenting/M
+parer/M
+pares/S
+paresis/M
+parfait/MS
+pariah/M
+pariahs
+paribus
+parietal
+parimutuel/MS
+paring/M
+parish/MS
+parishioner/MS
+parity/ESM
+park/MDSG
+parka/SM
+parking/M
+parkland
+parkour
+parkway/MS
+parky
+parlance/M
+parlay/GMDS
+parley/GMDS
+parliament/SM
+parliamentarian/SM
+parliamentary
+parlour/MS
+parlous
+parmigiana
+parochial/Y
+parochialism/M
+parodist/SM
+parody/GDSM
+parole/MGDS
+parolee/MS
+parotid
+paroxysm/SM
+paroxysmal
+parquet/MDSG
+parquetry/M
+parred
+parricidal
+parricide/MS
+parring
+parrot/GMDS
+parry/GDSM
+parse/DRSG
+parsec/MS
+parsimonious/Y
+parsimony/M
+parsley/M
+parsnip/MS
+parson/MS
+parsonage/MS
+part's
+part/CDSG
+partake/ZGRS
+partaken
+partaker/M
+parterre/SM
+parthenogenesis/M
+partial/MYS
+partiality/M
+participant/SM
+participate/DSGN
+participation/M
+participator/MS
+participatory
+participial/M
+participle/MS
+particle/SM
+particleboard/M
+particular/SMY
+particularity/SM
+particularization/M
+particularize/DSG
+particulate/SM
+parting/MS
+partisan/SM
+partisanship/M
+partition/GMDS
+partitive/MS
+partly
+partner/MDSG
+partnership/MS
+partook
+partridge/SM
+parturition/M
+partway
+party/GDSM
+parvenu/MS
+pascal/MS
+paschal
+pasha/SM
+pass/M
+passably
+passage/MS
+passageway/MS
+passbook/MS
+passe/DRSBXZGNV
+passel/MS
+passenger/SM
+passer/M
+passerby/M
+passersby
+passim
+passing/MY
+passion/EM
+passionate/EY
+passionflower/SM
+passionless
+passive/PMYS
+passiveness/M
+passivity/M
+passivization
+passivize/DSG
+passkey/MS
+passphrase/S
+passport/MS
+password/MS
+past/AMS
+pasta/SM
+paste/DSMG
+pasteboard/M
+pastel/MS
+pastern/MS
+pasteurization/M
+pasteurize/ZGDRS
+pasteurized/U
+pasteurizer/M
+pastiche/MS
+pastie
+pastille/MS
+pastime/MS
+pastiness/M
+pastor/MS
+pastoral/MS
+pastorate/MS
+pastrami/M
+pastry/SM
+pasturage/M
+pasture/DSMG
+pastureland/M
+pasty/PTRSM
+pat/SM
+patch/EGMDS
+patchily
+patchiness/M
+patchouli
+patchwork/SM
+patchy/TPR
+pate/MS
+patella/MS
+patellae
+patent/GMDYS
+paterfamilias/MS
+paternal/Y
+paternalism/M
+paternalist/S
+paternalistic
+paternity/M
+paternoster/MS
+path/M
+pathetic
+pathetically
+pathfinder/SM
+pathless
+pathogen/SM
+pathogenic
+pathological/Y
+pathologist/SM
+pathology/M
+pathos/M
+paths
+pathway/MS
+patience/M
+patient/IMST
+patienter
+patiently
+patina/MS
+patinae
+patio/SM
+patisserie/S
+patois/M
+patresfamilias
+patriarch/M
+patriarchal
+patriarchate/MS
+patriarchs
+patriarchy/SM
+patrician/SM
+patricidal
+patricide/SM
+patrimonial
+patrimony/SM
+patriot/SM
+patriotic/U
+patriotically
+patriotism/M
+patrol/MS
+patrolled
+patrolling
+patrolman/M
+patrolmen
+patrolwoman/M
+patrolwomen
+patron/MS
+patronage/MS
+patroness/MS
+patronize/ZGDRS
+patronizer/M
+patronizing/Y
+patronymic/SM
+patronymically
+patroon/SM
+patsy/SM
+patted
+patter/MDGS
+pattern/SMDG
+patting
+patty/SM
+paucity/M
+paunch/MS
+paunchy/RT
+pauper/MS
+pauperism/M
+pauperize/DSG
+pause/DSMG
+pave/AGDS
+paved/U
+pavement/MS
+pavilion/SM
+paving/MS
+pavlova/S
+paw/SGMD
+pawl/MS
+pawn/MDSG
+pawnbroker/MS
+pawnbroking/M
+pawnshop/MS
+pawpaw/MS
+pay's
+pay/ASGBL
+payback/SM
+paycheck/MS
+payday/MS
+payed
+payee/SM
+payer/SM
+payload/SM
+paymaster/SM
+payment/ASM
+payoff/MS
+payola/M
+payout/MS
+payphone/S
+payroll/SM
+payslip/SM
+paywall/SM
+payware
+pct
+pd
+pea/SM
+peace/SM
+peaceable
+peaceably
+peaceful/PY
+peacefulness/M
+peacekeeper/SM
+peacekeeping/M
+peacemaker/MS
+peacemaking/M
+peacetime/M
+peach/MS
+peachy/TR
+peacock/MS
+peafowl/MS
+peahen/MS
+peak/MDSG
+peaky
+peal/AMDSG
+peanut/MS
+pear/MYS
+pearl/SGMD
+pearly/RT
+peasant/SM
+peasantry/M
+peashooter/SM
+peat/M
+peaty/TR
+pebble/MGDS
+pebbly
+pecan/SM
+peccadillo/M
+peccadilloes
+peccary/SM
+peck/MDRSZG
+peckish
+pecs
+pectic
+pectin/M
+pectoral/MS
+pectoralis
+peculate/GNDS
+peculation/M
+peculator/SM
+peculiar/Y
+peculiarity/SM
+pecuniary
+pedagogic
+pedagogical/Y
+pedagogue/SM
+pedagogy/M
+pedal/SM
+pedalled
+pedalling
+pedalo/S
+pedant/MS
+pedantic
+pedantically
+pedantry/M
+peddle/ZGDRS
+peddler/M
+pederast/MS
+pederasty/M
+pedestal/MS
+pedestrian/SM
+pedestrianization
+pedestrianize/GDS
+pediatric/S
+pediatrician/MS
+pediatrics/M
+pedicab/SM
+pedicure/MGDS
+pedicurist/MS
+pedigree/MDS
+pediment/MS
+pedometer/MS
+pedophile/S
+peduncle/MS
+pee/DRSMZ
+peeing
+peek/MDSG
+peekaboo/M
+peel/MDRSJZG
+peeled/U
+peeler/M
+peeling/M
+peen/MS
+peep/MDRSZG
+peepbo
+peeper/M
+peephole/MS
+peepshow/MS
+peer/MDG
+peerage/SM
+peeress/MS
+peerless
+peeve/DSMG
+peevish/PY
+peevishness/M
+peewee/MS
+peewit/S
+peg/SM
+pegboard/MS
+pegged
+pegging
+peignoir/SM
+pejoration/M
+pejorative/SMY
+peke/MS
+pekineses
+pekingese/SM
+pekoe/M
+pelagic
+pelf/M
+pelican/MS
+pellagra/M
+pellet/GMDS
+pellucid
+pelmet/S
+pelt/MDSG
+pelvic
+pelvis/MS
+pemmican/M
+pen/M
+penal
+penalization/M
+penalize/DSG
+penalty/SM
+penance/MS
+pence
+penchant/SM
+pencil/MS
+pencilled
+pencilling/S
+pend/CDSG
+pendant/CMS
+pendent/MS
+pendulous
+pendulum/MS
+penetrability/M
+penetrable
+penetrate/DSGNVX
+penetrating/Y
+penetration/M
+penfriend/S
+penguin/MS
+penicillin/M
+penile
+peninsula/SM
+peninsular
+penis/MS
+penitence/M
+penitent/SMY
+penitential
+penitentiary/SM
+penknife/M
+penknives
+penlight/SM
+penman/M
+penmanship/M
+penmen
+pennant/MS
+penned
+penniless
+penning
+pennon/MS
+penny/SM
+pennyweight/MS
+pennyworth
+penologist/MS
+penology/M
+pension/BZGMDRS
+pensioner/M
+pensive/PY
+pensiveness/M
+pent
+pentacle/MS
+pentagon/MS
+pentagonal
+pentagram/SM
+pentameter/SM
+pentathlete/MS
+pentathlon/MS
+penthouse/SM
+penuche/M
+penultimate/SM
+penumbra/MS
+penumbrae
+penurious/PY
+penuriousness/M
+penury/M
+peon/MS
+peonage/M
+peony/SM
+people/MGDS
+pep/SM
+pepped
+pepper/GMDS
+peppercorn/SM
+peppermint/SM
+pepperoni/MS
+peppery
+peppiness/M
+pepping
+peppy/TPR
+pepsin/M
+peptic/MS
+peptide/S
+peradventure/M
+perambulate/XGNDS
+perambulation/M
+perambulator/MS
+percale/MS
+perceive/BGDS
+perceived/U
+percent/MS
+percentage/SM
+percentile/SM
+perceptible
+perceptibly
+perception/SM
+perceptional
+perceptive/PY
+perceptiveness/M
+perceptual/Y
+perch/GMDS
+perchance
+percipience/M
+percipient
+percolate/GNDS
+percolation/M
+percolator/SM
+percussion/AM
+percussionist/MS
+percussive
+perdition/M
+perdurable
+peregrinate/DSXGN
+peregrination/M
+peregrine/MS
+peremptorily
+peremptory
+perennial/SMY
+perestroika/M
+perfect/PTGMDRYS
+perfecta/MS
+perfectibility/M
+perfectible
+perfection/SM
+perfectionism/M
+perfectionist/SM
+perfectness/M
+perfidious/Y
+perfidy/SM
+perforate/GNXDS
+perforation/M
+perforce
+perform/SDRZG
+performance/SM
+performed/U
+performer/M
+perfume/DRSMZG
+perfumer/M
+perfumery/SM
+perfunctorily
+perfunctory
+perfusion
+pergola/SM
+perhaps
+pericardia
+pericardial
+pericarditis
+pericardium/M
+perigee/SM
+perihelia
+perihelion/M
+peril/SM
+perilled
+perilling
+perilous/Y
+perimeter/SM
+perinatal
+perinea
+perineum/M
+period/MS
+periodic
+periodical/SMY
+periodicity/M
+periodontal
+periodontics/M
+periodontist/SM
+peripatetic/MS
+peripheral/MYS
+periphery/SM
+periphrases
+periphrasis/M
+periphrastic
+periscope/SM
+perish/BDRSZG
+perishable/MS
+peristalses
+peristalsis/M
+peristaltic
+peristyle/SM
+peritoneal
+peritoneum/MS
+peritonitis/M
+periwig/SM
+periwinkle/SM
+perjure/DRSZG
+perjurer/M
+perjury/SM
+perk/MDSG
+perkily
+perkiness/M
+perky/TPR
+perm/MDSG
+permafrost/M
+permanence/M
+permanency/M
+permanent/SMY
+permeability/M
+permeable
+permeate/GNDS
+permeation/M
+permissible
+permissibly
+permission/MS
+permissive/PY
+permissiveness/M
+permit/MS
+permitted
+permitting
+permittivity
+permutation/SM
+permute/DSG
+pernicious/YP
+perniciousness/M
+peroration/MS
+peroxide/MGDS
+perpendicular/SMY
+perpendicularity/M
+perpetrate/DSGN
+perpetration/M
+perpetrator/MS
+perpetual/SMY
+perpetuate/DSGN
+perpetuation/M
+perpetuity/M
+perplex/GDS
+perplexed/Y
+perplexing/Y
+perplexity/SM
+perquisite/SM
+persecute/GNXDS
+persecution/M
+persecutor/SM
+perseverance/M
+persevere/DSG
+persiflage/M
+persimmon/SM
+persist/SGD
+persistence/M
+persistent/Y
+persnickety
+person/UMS
+persona/SM
+personable
+personae
+personage/MS
+personal/MYS
+personality/SM
+personalize/CDSG
+personalty/M
+personification/M
+personify/GDSNX
+personnel/M
+perspective/MS
+perspex
+perspicacious/Y
+perspicacity/M
+perspicuity/M
+perspicuous
+perspiration/M
+perspire/GDS
+persuade/BZGDRS
+persuaded/U
+persuader/M
+persuasion/SM
+persuasive/PY
+persuasiveness/M
+pert/RYPT
+pertain/GSD
+pertinacious/Y
+pertinacity/M
+pertinence/M
+pertinent/Y
+pertness/M
+perturb/DGS
+perturbation/SM
+perturbed/U
+pertussis/M
+peruke/MS
+perusal/MS
+peruse/GDS
+pervade/DSG
+pervasive/PY
+pervasiveness/M
+perverse/PXYN
+perverseness/M
+perversion/M
+perversity/M
+pervert/SGMD
+pervs
+peseta/MS
+peskily
+peskiness/M
+pesky/TPR
+peso/MS
+pessary/S
+pessimal
+pessimism/M
+pessimist/SM
+pessimistic
+pessimistically
+pest/MRSZ
+pester/GD
+pesticide/MS
+pestiferous
+pestilence/SM
+pestilent
+pestilential
+pestle/MGDS
+pesto/M
+pet/SZMR
+petabyte/MS
+petajoule/S
+petal/SM
+petalled
+petard/MS
+petawatt/S
+petcock/SM
+peter/GMD
+petiole/SM
+petite/MS
+petition/ZGMDRS
+petitionary
+petitioner/M
+petrel/MS
+petrifaction/M
+petrify/DSG
+petrochemical/SM
+petrodollar/MS
+petrol/M
+petrolatum/M
+petroleum/M
+petrologist/SM
+petrology/M
+petted
+petticoat/MS
+pettifog/S
+pettifogged
+pettifogger/SM
+pettifoggery/M
+pettifogging
+pettily
+pettiness/M
+petting/M
+pettish/Y
+petty/PTR
+petulance/M
+petulant/Y
+petunia/MS
+pew/SM
+pewee/SM
+pewit/SM
+pewter/MS
+peyote/M
+pf
+pfennig/MS
+pg
+phaeton/MS
+phage/S
+phagocyte/SM
+phalanger/SM
+phalanges
+phalanx/MS
+phalli
+phallic
+phallocentric
+phallocentrism
+phallus/M
+phantasm/MS
+phantasmagoria/MS
+phantasmagorical
+phantasmal
+phantom/SM
+pharaoh/M
+pharaohs
+pharisaic
+pharisee/SM
+pharmaceutic/MS
+pharmaceutical/SM
+pharmaceutics/M
+pharmacist/MS
+pharmacologic
+pharmacological
+pharmacologist/SM
+pharmacology/M
+pharmacopoeia/MS
+pharmacotherapy
+pharmacy/SM
+pharyngeal
+pharynges
+pharyngitis/M
+pharynx/M
+phase/DSMG
+phaseout/SM
+phat
+pheasant/MS
+phenacetin/M
+phenobarbital/M
+phenol/M
+phenom/MS
+phenomena
+phenomenal/Y
+phenomenological
+phenomenology
+phenomenon/MS
+phenotype
+phenytoin
+pheromone/MS
+phew
+phi/SM
+phial/SM
+philander/ZGDRS
+philanderer/M
+philandering/M
+philanthropic
+philanthropically
+philanthropist/MS
+philanthropy/SM
+philatelic
+philatelist/MS
+philately/M
+philharmonic/SM
+philippic/MS
+philistine/MS
+philistinism/M
+philodendron/SM
+philological
+philologist/MS
+philology/M
+philosopher/MS
+philosophic
+philosophical/Y
+philosophize/DRSZG
+philosophizer/M
+philosophy/SM
+philtre/MS
+phish/ZGDR
+phisher/M
+phlebitis/M
+phlegm/M
+phlegmatic
+phlegmatically
+phloem/M
+phlox/M
+phobia/MS
+phobic/MS
+phoebe/MS
+phoenix/MS
+phone/DSMG
+phonecard/S
+phoneme/MS
+phonemic
+phonemically
+phonetic/S
+phonetically
+phonetician/SM
+phonetics/M
+phoneyed
+phoneying
+phonic/S
+phonically
+phonics/M
+phoniness/M
+phonograph/M
+phonographic
+phonographs
+phonological/Y
+phonologist/MS
+phonology/M
+phonon
+phony/PTGDRSM
+phooey
+phosphate/MS
+phosphodiesterase
+phosphor/MS
+phosphorescence/M
+phosphorescent/Y
+phosphoric
+phosphorous
+phosphorus/M
+phosphorylation
+photo/SGMD
+photocell/MS
+photocopier/M
+photocopy/DRSMZG
+photoelectric
+photoelectrically
+photoengrave/DRSJZG
+photoengraver/M
+photoengraving/M
+photofinishing/M
+photogenic
+photogenically
+photograph/MDRZG
+photographer/M
+photographic
+photographically
+photographs/A
+photography/M
+photojournalism/M
+photojournalist/SM
+photometer/MS
+photon/MS
+photosensitive
+photostat/SM
+photostatic
+photostatted
+photostatting
+photosynthesis/M
+photosynthesize/GDS
+photosynthetic
+phototropic
+phototropism
+phototypesetter
+phototypesetting
+photovoltaic
+phrasal
+phrase's
+phrase/AGDS
+phrasebook/S
+phraseology/M
+phrasing/MS
+phreaking
+phrenologist/SM
+phrenology/M
+phyla
+phylactery/SM
+phylogeny/M
+phylum/M
+phys
+physic/SM
+physical/MYS
+physicality
+physician/SM
+physicist/SM
+physicked
+physicking
+physics/M
+physio/S
+physiognomy/SM
+physiography/M
+physiologic
+physiological/Y
+physiologist/MS
+physiology/M
+physiotherapist/MS
+physiotherapy/M
+physique/MS
+phytoplankton
+pi/SMDRHZG
+pianissimo/SM
+pianist/MS
+piano/SM
+pianoforte/SM
+pianola/S
+piastre/MS
+piazza/MS
+pibroch/M
+pibrochs
+pic/SM
+pica/M
+picador/MS
+picante
+picaresque
+picayune
+piccalilli/M
+piccolo/MS
+pick/MDRSJZG
+pickax/GMDS
+picker/M
+pickerel/MS
+picket/ZGMDRS
+pickings/M
+pickle/MGDS
+pickpocket/SM
+pickup/MS
+picky/PTR
+picnic/MS
+picnicked
+picnicker/SM
+picnicking
+picot/SM
+pictogram/S
+pictograph/M
+pictographs
+pictorial/MYS
+picture/MGDS
+picturesque/PY
+picturesqueness/M
+piddle/MGDS
+piddly
+pidgin/MS
+pie/SM
+piebald/MS
+piece/DSMG
+piecemeal
+piecework/MRZ
+pieceworker/M
+piecrust/SM
+pieing
+pier/M
+pierce/JGDS
+piercing/MY
+piety/M
+piezoelectric
+piffle/MG
+pig/SML
+pigeon/MS
+pigeonhole/DSMG
+pigged
+piggery/S
+pigging
+piggish/PY
+piggishness/M
+piggy/TRSM
+piggyback/MDSG
+pigheaded/PY
+pigheadedness/M
+piglet/MS
+pigment/MDS
+pigmentation/M
+pigpen/MS
+pigskin/MS
+pigsty/SM
+pigswill
+pigtail/MS
+pike/MZGDRS
+piker/M
+pikestaff/SM
+pilaf/SM
+pilaster/MS
+pilchard/MS
+pile/MGDSJ
+pileup/MS
+pilfer/ZGDRS
+pilferage/M
+pilferer/M
+pilgrim/MS
+pilgrimage/MS
+piling/M
+pill/MDSG
+pillage/MZGDRS
+pillager/M
+pillar/MDS
+pillbox/MS
+pillion/MS
+pillock/S
+pillory/GDSM
+pillow/GMDS
+pillowcase/MS
+pillowslip/MS
+pilot/DGSM
+pilothouse/SM
+pimento/MS
+pimiento/MS
+pimp/GMDYS
+pimpernel/MS
+pimple/DSM
+pimply/RT
+pin/SM
+pinafore/MS
+pinata/MS
+pinball/M
+pincer/MS
+pinch/GMDS
+pincushion/MS
+pine's
+pine/AGDS
+pineapple/MS
+pinewood/S
+piney
+pinfeather/SM
+ping/GMD
+pinhead/SM
+pinhole/SM
+pinier
+piniest
+pinion/SMDG
+pink/TGPMDRS
+pinkeye/M
+pinkie/SM
+pinkish
+pinkness/M
+pinko/MS
+pinnacle/SM
+pinnate
+pinned/U
+pinning/U
+pinny/S
+pinochle/M
+pinon/MS
+pinpoint/SGMD
+pinprick/MS
+pinsetter/SM
+pinstripe/DSM
+pint/MS
+pinto/MS
+pinup/MS
+pinwheel/GSMD
+pinyin/M
+pinyon/SM
+pioneer/SGMD
+pious/YP
+piousness/M
+pip/SZGMDR
+pipe/MS
+pipeline/SM
+piper/M
+pipette/SM
+pipework
+piping/M
+pipit/MS
+pipped
+pippin/SM
+pipping
+pipsqueak/SM
+piquancy/M
+piquant/Y
+pique/MGDS
+piracy/M
+piranha/SM
+pirate/DSMG
+piratical/Y
+pirogi/M
+piroshki/M
+pirouette/DSMG
+piscatorial
+pismire/SM
+piss/ZGMDRS
+pissoir/S
+pistachio/SM
+piste/S
+pistil/SM
+pistillate
+pistol/SM
+piston/SM
+pit/SM
+pita/MS
+pitapat/SM
+pitch/MDRSZG
+pitchblende/M
+pitcher/M
+pitchfork/MDSG
+pitchman/M
+pitchmen
+piteous/YP
+piteousness/M
+pitfall/SM
+pith/M
+pithead/S
+pithily
+pithiness/M
+pithy/RTP
+pitiable
+pitiably
+pitiful/Y
+pitiless/PY
+pitilessness/M
+piton/MS
+pitta/S
+pittance/MS
+pitted
+pitting
+pituitary/SM
+pity/GDSM
+pitying/Y
+pivot/MDGS
+pivotal
+pix/M
+pixel/MS
+pixie/MS
+pizza/MS
+pizzazz/M
+pizzeria/SM
+pizzicati
+pizzicato/M
+pj's
+pk
+pkg
+pkt
+pkwy
+pl
+placard/SMDG
+placate/DSGN
+placation/M
+placatory
+place's
+place/AESDLG
+placebo/SM
+placed/U
+placeholder/MS
+placekick/MDRZGS
+placekicker/M
+placement/EASM
+placenta/SM
+placental/S
+placer/SM
+placid/Y
+placidity/M
+placings
+placket/SM
+plagiarism/SM
+plagiarist/SM
+plagiarize/DRSZG
+plagiarizer/M
+plagiary/M
+plague/DSMG
+plaice
+plaid/MS
+plain/MRYTSP
+plainchant
+plainclothes
+plainclothesman/M
+plainclothesmen
+plainness/M
+plainsman/M
+plainsmen
+plainsong/M
+plainspoken
+plaint/SMV
+plaintiff/SM
+plaintive/Y
+plait/MDGS
+plan/ZMRS
+planar
+plane's
+plane/CGDS
+planeload/MS
+planer/M
+planet/SM
+planetarium/SM
+planetary
+plangency/M
+plangent
+plank/MDGS
+planking/M
+plankton/M
+planned/U
+planner/SM
+planning/S
+plant/MDRZGSJ
+plantain/SM
+plantar
+plantation/MS
+planter/M
+planting/M
+plantlike
+plaque/SM
+plash/MDSG
+plasma/M
+plasmon
+plaster/SZGMDR
+plasterboard/M
+plasterer/M
+plastic/SM
+plasticity/M
+plasticize/DSG
+plastique
+plat/XGMDNS
+plate/MS
+plateau/SMDG
+plateful/SM
+platelet/SM
+platen/M
+platform/SGMD
+plating/M
+platinum/M
+platitude/SM
+platitudinous
+platonic
+platoon/SGMD
+platted
+platter/SM
+platting
+platy/M
+platypus/MS
+platys
+plaudit/SM
+plausibility/M
+plausible
+plausibly
+play/AEGMDS
+playable/EU
+playact/SGD
+playacting/M
+playback/MS
+playbill/MS
+playbook/MS
+playboy/SM
+player/SM
+playfellow/SM
+playful/PY
+playfulness/M
+playgirl/MS
+playgoer/MS
+playground/SM
+playgroup/S
+playhouse/MS
+playlist/MS
+playmate/MS
+playoff/SM
+playpen/SM
+playroom/SM
+playschool/S
+plaything/SM
+playtime/M
+playwright/SM
+plaza/MS
+plea/MS
+plead/DRZGSJ
+pleader/M
+pleading/MY
+pleasant/UTYP
+pleasanter
+pleasantness/UM
+pleasantry/SM
+please/EDSG
+pleasing/YS
+pleasurably
+pleasure/MGDSB
+pleasureful
+pleat/MDGS
+pleb/S
+plebby
+plebe/MS
+plebeian/MS
+plebiscite/MS
+plectra
+plectrum/MS
+pledge/DSMG
+plenary/SM
+plenipotentiary/SM
+plenitude/SM
+plenteous
+plentiful/Y
+plenty/M
+plenum/S
+pleonasm/MS
+plethora/M
+pleura/M
+pleurae
+pleurisy/M
+plexus/MS
+pliability/M
+pliable
+pliancy/M
+pliant/Y
+pliers/M
+plight/SMDG
+plimsoll/S
+plinth/M
+plinths
+plod/S
+plodded
+plodder/MS
+plodding/S
+plonk/DRSZG
+plop/MS
+plopped
+plopping
+plosive/S
+plot/MS
+plotted
+plotter/SM
+plotting
+ploughman/M
+ploughmen
+ploughshare/MS
+plover/SM
+plow/GMDS
+ploy's
+ploy/S
+pluck/MDSG
+pluckily
+pluckiness/M
+plucky/RPT
+plug's
+plug/US
+plugged/U
+plugging/U
+plughole/S
+plugin/SM
+plum/GMDS
+plumage/M
+plumb/MDRSZGJ
+plumbed/U
+plumber/M
+plumbing/M
+plume/MS
+plummet/SGMD
+plummy
+plump/MDRYSTGP
+plumpness/M
+plumy/RT
+plunder/SZGMDR
+plunderer/M
+plunge/DRSMZG
+plunger/M
+plunk/MDSG
+pluperfect/SM
+plural/SM
+pluralism/M
+pluralist/MS
+pluralistic
+plurality/SM
+pluralization/M
+pluralize/GDS
+plus/MS
+plush/MRYTP
+plushness/M
+plushy/RT
+plutocracy/SM
+plutocrat/SM
+plutocratic
+plutonium/M
+pluvial
+ply/AGDSM
+plywood/M
+pm
+pneumatic
+pneumatically
+pneumococcal
+pneumococci
+pneumococcus
+pneumonia/M
+poach/DRSZG
+poacher/M
+poaching/M
+pock/GMDS
+pocket/SMDG
+pocketbook/SM
+pocketful/SM
+pocketknife/M
+pocketknives
+pockmark/MDGS
+pod/SM
+podcast/SMG
+podded
+podding
+podiatrist/SM
+podiatry/M
+podium/SM
+poem/MS
+poesy/M
+poet/MS
+poetaster/MS
+poetess/MS
+poetic/S
+poetical/Y
+poetry/M
+pogrom/SM
+poi/M
+poignancy/M
+poignant/Y
+poinciana/SM
+poinsettia/SM
+point/MDRSZG
+pointblank
+pointed/Y
+pointer/M
+pointillism/M
+pointillist/SM
+pointless/PY
+pointlessness/M
+pointy/TR
+poise/MGDS
+poison/SJZGMDR
+poisoner/M
+poisoning/M
+poisonous/Y
+poke/MZGDRS
+poker/M
+pokey/MS
+poky/TR
+pol/SGMD
+polar
+polarity/SM
+polarization/CM
+polarize/CDSG
+pole/MS
+poleaxe/GDS
+polecat/MS
+polemic/MS
+polemical/Y
+polemicist/SM
+polemics/M
+polestar/SM
+police/DSMG
+policeman/M
+policemen
+policewoman/M
+policewomen
+policy/SM
+policyholder/MS
+policymaker/S
+polio/MS
+poliomyelitis/M
+polish/ZGMDRS
+polished/U
+polisher/M
+politburo/MS
+polite/RYTP
+politeness/M
+politesse/M
+politic/S
+political/Y
+politician/SM
+politicization/M
+politicize/CDSG
+politicking/M
+politico/SM
+politics/M
+polity/SM
+polka/MDSG
+poll/GMDNS
+pollack/MS
+pollard/S
+pollen/M
+pollinate/GNDS
+pollination/M
+pollinator/SM
+polling/M
+polliwog/SM
+pollster/SM
+pollutant/MS
+pollute/ZGNDRS
+polluted/U
+polluter/M
+pollution/M
+polo/M
+polonaise/SM
+polonium/M
+poltergeist/MS
+poltroon/SM
+poly
+polyacrylamide
+polyamory/S
+polyandrous
+polyandry/M
+polyclinic/SM
+polyester/MS
+polyethylene/M
+polygamist/MS
+polygamous
+polygamy/M
+polyglot/SM
+polygon/SM
+polygonal
+polygraph/GMD
+polygraphs
+polyhedral
+polyhedron/SM
+polymath/M
+polymaths
+polymer/SM
+polymeric
+polymerization/M
+polymerize/GDS
+polymorphic
+polymorphous
+polynomial/MS
+polyp/MS
+polyphonic
+polyphony/M
+polypropylene/M
+polys
+polysemous
+polystyrene/M
+polysyllabic
+polysyllable/MS
+polytechnic/MS
+polytheism/M
+polytheist/SM
+polytheistic
+polythene
+polyunsaturate/DS
+polyurethane/MS
+polyvinyl
+pom/S
+pomade/DSMG
+pomander/SM
+pomegranate/MS
+pommel/SM
+pommelled
+pommelling
+pommy/S
+pomp/M
+pompadour/SMD
+pompano/MS
+pompom/SM
+pomposity/M
+pompous/YP
+pompousness/M
+ponce/GDS
+poncho/SM
+poncy
+pond/MS
+ponder/SZGDR
+ponderer/M
+ponderous/YP
+ponderousness/M
+pone/MS
+pong/GDS
+pongee/M
+poniard/MS
+pontiff/SM
+pontifical/Y
+pontificate/DSMG
+pontoon/SM
+pony/GDSM
+ponytail/MS
+poo/SGD
+pooch/MDSG
+poodle/SM
+poof/MS
+poofter/S
+pooh/GMD
+poohs
+pool/GMDS
+poolroom/MS
+poolside/S
+poop/GMDS
+poor/TRYP
+poorboy/M
+poorhouse/SM
+poorness/M
+pop/SM
+popcorn/M
+pope/MS
+popgun/SM
+popinjay/MS
+poplar/SM
+poplin/M
+popover/SM
+poppa/MS
+poppadom/S
+popped
+popper/SM
+poppet/S
+popping
+poppy/SM
+poppycock/M
+populace/MS
+popular/Y
+popularity/UM
+popularization/M
+popularize/DSG
+populate/ACGDS
+populated/U
+population/CM
+populations
+populism/M
+populist/MS
+populous/P
+populousness/M
+popup/MS
+porcelain/SM
+porch/MS
+porcine
+porcupine/SM
+pore/MGDS
+porgy/SM
+pork/ZMR
+porker/M
+porky/RSMT
+porn/M
+porno/M
+pornographer/MS
+pornographic
+pornographically
+pornography/M
+porosity/M
+porous/P
+porousness/M
+porphyritic
+porphyry/M
+porpoise/MGDS
+porridge/M
+porringer/SM
+port's/A
+port/CAEGDS
+portability/M
+portable/MS
+portage/DSMG
+portal/SM
+portcullis/MS
+portend/SGD
+portent/SM
+portentous/YP
+porter/ASM
+porterhouse/SM
+portfolio/MS
+porthole/MS
+portico/M
+porticoes
+portiere/MS
+portion/KSGMD
+portliness/M
+portly/RPT
+portmanteau/MS
+portrait/MS
+portraitist/SM
+portraiture/M
+portray/SGD
+portrayal/MS
+portulaca/M
+pose's/A
+pose/CAKEGDS
+poser/EKSM
+poseur/SM
+posh/TR
+posit/DSGV
+position/CKEMS
+positional/KE
+positioned/K
+positioning/AK
+positive/MYPS
+positiveness/M
+positivism
+positivist/S
+positron/MS
+poss
+posse/MS
+possess/AEVGSD
+possession/ASM
+possessive/SMYP
+possessiveness/M
+possessor/SM
+possibility/SM
+possible/SM
+possibly
+possum/SM
+post/ZGMDRSJ
+postage/M
+postal
+postbag/S
+postbox/S
+postcard/SM
+postcode/S
+postcolonial
+postconsonantal
+postdate/DSG
+postdoc/MS
+postdoctoral
+poster/M
+posterior/SM
+posterity/M
+postgraduate/SM
+posthaste
+posthumous/Y
+posthypnotic
+postie/S
+postilion/SM
+postindustrial
+posting/M
+postlude/SM
+postman/M
+postmark/SMDG
+postmaster/MS
+postmen
+postmenopausal
+postmeridian
+postmistress/MS
+postmodern
+postmodernism/M
+postmodernist/MS
+postmortem/SM
+postnasal
+postnatal
+postoperative
+postpaid
+postpartum
+postpone/DSGL
+postponement/SM
+postprandial
+postscript/SM
+postseason/SM
+postsynaptic
+postulate/XDSMGN
+postulation/M
+postural
+posture/MGJDS
+posturing/M
+postwar
+postwoman
+postwomen
+posy/SM
+pot/CSM
+potability/M
+potable/SM
+potash/M
+potassium/M
+potato/M
+potatoes
+potbelly/DSM
+potboiler/SM
+potency/M
+potent/Y
+potentate/MS
+potential/MYS
+potentiality/SM
+potentiate/GDS
+potful/SM
+pothead/SM
+pother/SMDG
+potherb/SM
+potholder/MS
+pothole/DRSMZG
+pothook/SM
+potion/SM
+potluck/MS
+potpie/SM
+potpourri/SM
+potsherd/SM
+potshot/MS
+pottage/M
+potted
+potter/GSMD
+pottery/SM
+potting
+potty/PRSMT
+pouch/MDSG
+pouf/S
+pouffe/S
+poulterer/MS
+poultice/DSMG
+poultry/M
+pounce/DSMG
+pound's
+pound/KDSG
+poundage/M
+pounding/SM
+pour/GDSJ
+pout/ZGMDRS
+pouter/M
+poverty/M
+pow
+powder/GSMD
+powdery
+power/MDSG
+powerboat/MS
+powerful/Y
+powerhouse/SM
+powerless/PY
+powerlessness/M
+powwow/SGMD
+pox/MS
+pp
+ppm
+ppr
+pr
+practicability/M
+practicably
+practical/SMY
+practicality/SM
+practice/SMB
+practicum/SM
+practise/DSG
+practised/U
+practitioner/SM
+praetor/SM
+praetorian
+pragmatic/MS
+pragmatical/Y
+pragmatism/M
+pragmatist/MS
+prairie/SM
+praise/EDSMG
+praiseworthiness/M
+praiseworthy/P
+praline/SM
+pram/MS
+prance/DRSMZG
+prancer/M
+prancing/Y
+prang/DSG
+prank/MS
+prankster/SM
+praseodymium/M
+prat/S
+prate/MZGDRS
+prater/M
+pratfall/SM
+prattle/DRSMZG
+prattler/M
+prawn/MDSG
+pray/ZGDRS
+prayer/M
+prayerful/Y
+preach/DRSZGL
+preacher/M
+preachment/M
+preachy/RT
+preadolescence/SM
+preadolescent
+preamble/MGDS
+prearrange/LGDS
+prearrangement/M
+preassigned
+precancel/SMDG
+precancerous
+precarious/PY
+precariousness/M
+precast
+precaution/MS
+precautionary
+precede/DSG
+precedence/M
+precedent/SM
+precept/SM
+preceptor/SM
+precinct/MS
+preciosity/M
+precious/YP
+preciousness/M
+precipice/SM
+precipitant/MS
+precipitate/XMYGNDS
+precipitation/M
+precipitous/Y
+precis/M
+precise/DRSYTGNP
+preciseness/M
+precision/M
+preclude/GDS
+preclusion/M
+precocious/YP
+precociousness/M
+precocity/M
+precognition/M
+precognitive
+precolonial
+preconceive/GDS
+preconception/SM
+precondition/MDGS
+precook/GSD
+precursor/SM
+precursory
+predate/DSG
+predator/MS
+predatory
+predawn
+predecease/GDS
+predecessor/SM
+predefined
+predesignate/GDS
+predestination/M
+predestine/DSG
+predetermination/M
+predetermine/ZGDRS
+predeterminer/M
+predicable
+predicament/MS
+predicate/MGNVDS
+predication/M
+predicative/Y
+predict/BGVSD
+predictability/UM
+predictable/U
+predictably/U
+prediction/SM
+predictor/MS
+predigest/GDS
+predilection/SM
+predispose/GDS
+predisposition/MS
+prednisone
+predominance/M
+predominant/Y
+predominate/YGDS
+preemie/SM
+preeminence/M
+preeminent/Y
+preempt/GVSD
+preemption/M
+preemptive/Y
+preen/DSG
+preexist/DGS
+preexistence/M
+pref
+prefab/SM
+prefabbed
+prefabbing
+prefabricate/DSGN
+prefabrication/M
+preface/DSMG
+prefatory
+prefect/SM
+prefecture/MS
+prefer/SBL
+preferably
+preference/MS
+preferential/Y
+preferment/M
+preferred
+preferring
+prefigure/GDS
+prefix/MDSG
+preform/GSD
+preformative
+prefrontal
+pregame/SM
+pregnancy/SM
+pregnant
+preheat/GSD
+prehensile
+prehistorian/S
+prehistoric
+prehistorical/Y
+prehistory/M
+prehuman
+preinstalled
+prejudge/GDS
+prejudgment/SM
+prejudice/MGDS
+prejudiced/U
+prejudicial
+prekindergarten/SM
+prelacy/M
+prelate/SM
+prelim/SM
+preliminary/SM
+preliterate
+prelude/MS
+premarital
+premature/Y
+premed/SM
+premedical
+premeditate/DSGN
+premeditated/U
+premeditation/M
+premenstrual
+premier/SGMD
+premiere/MS
+premiership/MS
+premise/DSMG
+premium/SM
+premix/GDS
+premolar/SM
+premonition/MS
+premonitory
+prenatal/Y
+prenup/SM
+prenuptial
+preoccupation/SM
+preoccupy/DSG
+preoperative
+preordain/GDS
+preowned
+prep/MS
+prepackage/DSG
+prepacked
+prepaid
+preparation/SM
+preparatory
+prepare/GDS
+prepared/UP
+preparedness/UM
+prepay/GSL
+prepayment/MS
+prepend
+preponderance/SM
+preponderant/Y
+preponderate/GDS
+preposition/SM
+prepositional/Y
+prepossess/GDS
+prepossessing/U
+prepossession/SM
+preposterous/Y
+prepped
+prepping
+preppy/TRSM
+prepubescence/M
+prepubescent/SM
+prepuce/MS
+prequel/MS
+prerecord/GSD
+preregister/SGD
+preregistration/M
+prerequisite/MS
+prerogative/SM
+pres
+presage/MGDS
+presbyopia/M
+presbyter/SM
+presbytery/SM
+preschool/SZMR
+preschooler/M
+prescience/M
+prescient/Y
+prescribe/DSG
+prescript/SVM
+prescription/SM
+prescriptive/Y
+preseason/SM
+presence/SM
+present/LMDRYZGSB
+presentably
+presentation/ASM
+presenter/M
+presentiment/SM
+presentment/SM
+preservation/M
+preservationist/SM
+preservative/SM
+preserve/BDRSMZG
+preserver/M
+preset/S
+presetting
+preshrank
+preshrink/GS
+preshrunk
+preside/GDS
+presidency/SM
+president/MS
+presidential
+presidium/M
+presort/DGS
+press's
+press/ACGSD
+pressed/U
+presser/MS
+pressie/S
+pressing/SMY
+pressman/M
+pressmen
+pressure/DSMG
+pressurization/M
+pressurize/CGDS
+pressurizer/SM
+prestidigitation/M
+prestige/M
+prestigious
+presto/SM
+presumably
+presume/GDSB
+presumption/SM
+presumptive
+presumptuous/YP
+presumptuousness/M
+presuppose/DSG
+presupposition/MS
+pretax
+preteen/MS
+pretend/DRZGS
+pretender/M
+pretense/SXMN
+pretension/M
+pretentious/UY
+pretentiousness/M
+preterite/MS
+preterm
+preternatural/Y
+pretest/DGS
+pretext/MS
+pretrial/S
+prettify/GDS
+prettily
+prettiness/M
+pretty/TGDRSMP
+pretzel/MS
+prev
+prevail/DGS
+prevalence/M
+prevalent
+prevaricate/DSGNX
+prevarication/M
+prevaricator/SM
+prevent/DBSGV
+preventable/U
+preventative/MS
+prevention/M
+preventive/SM
+preview/MDRSZG
+previous/Y
+prevision/MS
+prewar
+prey/GMDS
+prezzie/S
+priapic
+price's
+price/AGDS
+priceless
+pricey
+pricier
+priciest
+prick/MDRYSZG
+pricker/M
+prickle/MGDS
+prickliness/M
+prickly/PRT
+pride/MGDS
+prideful/Y
+prier/M
+priest/SMY
+priestess/MS
+priesthood/SM
+priestliness/M
+priestly/RTP
+prig/MS
+priggish/P
+priggishness/M
+prim/ZGDRYP
+primacy/M
+primal
+primarily
+primary/SM
+primate/MS
+prime/MS
+primer/M
+primeval
+priming/M
+primitive/SPMY
+primitiveness/M
+primmer
+primmest
+primness/M
+primogenitor/SM
+primogeniture/M
+primordial/Y
+primp/DSG
+primrose/SM
+primula/S
+prince/SMY
+princedom/SM
+princeliness/M
+princely/PRT
+princess/MS
+principal/SMY
+principality/SM
+principle/DSM
+principled/U
+print/AMDSG
+printable/U
+printer/MS
+printing/SM
+printmaking
+printout/SM
+prion/S
+prior/MS
+prioress/MS
+prioritization
+prioritize/DSG
+priority/SM
+priory/SM
+prism/MS
+prismatic
+prison/SZMR
+prisoner/M
+prissily
+prissiness/M
+prissy/PTR
+pristine
+prithee
+privacy/M
+private/XMYTNRS
+privateer/SM
+privation/CSM
+privatization/SM
+privatize/DSG
+privet/SM
+privilege/DSMG
+privileged/U
+privily
+privy/RSMT
+prize/MGDS
+prized/A
+prizefight/ZGSMR
+prizefighter/M
+prizefighting/M
+prizewinner/MS
+prizewinning
+pro/SM
+probabilistic
+probability/SM
+probable/SM
+probably
+probate/MN
+probation/ZMR
+probational
+probationary
+probationer/M
+probe/MGDSBJ
+probity/M
+problem/MS
+problematic/U
+problematical/Y
+probosces
+proboscis/MS
+procaine/M
+procedural
+procedure/SM
+proceed/GJDS
+proceeding/M
+proceeds/M
+process's
+process/AGDS
+processable
+processed/U
+procession/GD
+processional/MS
+processor/SM
+proclamation/MS
+proclivity/SM
+procrastinate/DSGN
+procrastination/M
+procrastinator/MS
+procreate/V
+proctor/GMDS
+procurement/M
+prod/MS
+prodigal/MYS
+prodigality/M
+prodigious/Y
+prodigy/SM
+produce's
+produce/AZGDRS
+producer/AM
+producible/A
+production/ASM
+productive/UY
+productiveness/M
+productivity/M
+prof/MS
+profanation/MS
+profane/PYGDS
+profaneness/M
+profanity/SM
+professed/Y
+profession/SM
+professional/MYS
+professionalism/M
+professionalization
+professionalize/DSG
+professor/SM
+professorial/Y
+professorship/SM
+proffer/GMDS
+proficiency/M
+proficient/MYS
+profit/BGD
+profitability/M
+profitable/U
+profitably/U
+profiteer/MDGS
+profiteering/M
+profiterole/SM
+profitless
+profligacy/M
+profligate/SMY
+proforma
+profound/RYTP
+profoundness/M
+profundity/SM
+profuse/PY
+profuseness/M
+progenitor/SM
+progeny/M
+progesterone/M
+progestin/S
+prognathous
+prognoses
+prognosis/M
+prognostic/MS
+prognosticate/XGNDS
+prognostication/M
+prognosticator/MS
+program/CAS
+programmable/MS
+programmatic
+programmed/AC
+programmer/MS
+programming/SM
+progress/MDSGV
+progression/MS
+progressive/PMYS
+progressiveness/M
+prohibit/DGVS
+prohibition/SM
+prohibitionist/MS
+prohibitive/Y
+prohibitory
+project/GMDS
+projectile/SM
+projection/SM
+projectionist/SM
+projector/MS
+prokaryote/MS
+prokaryotic
+prole/S
+proletarian/MS
+proletariat/M
+proliferate/DSGN
+proliferation/M
+prolific
+prolifically
+prolix/Y
+prolixity/M
+prologue/SM
+prolongation/SM
+prom/M
+promenade/MGDS
+promethium/M
+prominence/M
+prominent/Y
+promiscuity/M
+promiscuous/Y
+promise/DSMG
+promising/Y
+promissory
+promo/M
+promontory/SM
+promote/DRZG
+promoter/M
+promotional
+prompt/JPSMDRYZTG
+prompted/U
+prompter/M
+prompting/M
+promptitude/M
+promptness/M
+promulgate/GNDS
+promulgation/M
+promulgator/MS
+prone/P
+proneness/M
+prong/MDS
+pronghorn/MS
+pronominal/M
+pronounce/DSLG
+pronounceable/U
+pronouncement/SM
+pronto
+pronunciation/MS
+proof/ADGSM
+proofread/SRZG
+proofreader/M
+prop/MS
+propaganda/M
+propagandist/MS
+propagandize/GDS
+propagate/DSGN
+propagation/M
+propagator/SM
+propel/S
+propellant/MS
+propelled
+propeller/SM
+propelling
+propensity/SM
+proper/MRYT
+property/DSM
+prophecy/SM
+prophesier/M
+prophesy/DRSMZG
+prophet/SM
+prophetess/MS
+prophetic
+prophetical/Y
+prophylactic/SM
+prophylaxes
+prophylaxis/M
+propinquity/M
+propitiate/DSGN
+propitiation/M
+propitiatory
+propitious/Y
+proponent/SM
+proportion/ESM
+proportional/YS
+proportionality
+proportionate/EY
+proposal/MS
+propped
+propping
+propranolol
+proprietary/SM
+proprieties/M
+proprietor/SM
+proprietorial/Y
+proprietorship/M
+proprietress/MS
+propriety/SM
+propulsion/M
+propulsive
+prorate/DSG
+prorogation/M
+prorogue/GD
+prosaic
+prosaically
+proscenium/SM
+prosciutto/M
+proscribe/DG
+proscription/MS
+prose/M
+prosecute/DSXGN
+prosecution/M
+prosecutor/MS
+proselyte/DSMG
+proselytism/M
+proselytize/DRSZG
+proselytizer/M
+prosocial
+prosody/SM
+prospect/MDGVS
+prospective/Y
+prospector/SM
+prospectus/MS
+prosper/GSD
+prosperity/M
+prosperous/Y
+prostate/MS
+prostheses
+prosthesis/M
+prosthetic
+prostitute/MGNDS
+prostitution/M
+prostrate/GNXDS
+prostration/M
+prosy/RT
+protactinium/M
+protagonist/SM
+protean
+protect/GVSD
+protected/U
+protection/SM
+protectionism/M
+protectionist/MS
+protective/PY
+protectiveness/M
+protector/MS
+protectorate/MS
+protege/SM
+protegee/S
+protein/SM
+protestant/S
+protestation/MS
+protocol/MS
+proton/SM
+protoplasm/M
+protoplasmic
+prototype/MGS
+prototypical
+protozoa
+protozoan/MS
+protozoic
+protract/GD
+protrude/GDS
+protrusile
+protrusion/MS
+protuberance/MS
+protuberant
+proud/RYT
+prov/NB
+provability/M
+provably
+prove/EAGDS
+proved/U
+proven/U
+provenance/SM
+provender/M
+provenience/M
+proverbial/Y
+provide/DRSZG
+provided/U
+providence/M
+provident/Y
+providential/Y
+provider/M
+province/MS
+provincial/SMY
+provincialism/M
+provisional/Y
+proviso/SM
+provocateur/S
+provocative/PY
+provocativeness/M
+provoke/DRSZG
+provoked/U
+provoker/M
+provoking/Y
+provolone/M
+provost/SM
+prow/MS
+prowess/M
+prowl/MDRSZG
+prowler/M
+proximal
+proximate
+proximity/M
+proxy/SM
+prude/MS
+prudence/M
+prudent/Y
+prudential/Y
+prudery/M
+prudish/YP
+prudishness/M
+prune/MZGDRS
+pruner/M
+prurience/M
+prurient/Y
+pry/ZTGDRSM
+psalm/MS
+psalmist/SM
+psaltery/SM
+psephologist/S
+psephology
+pseud/S
+pseudo/S
+pseudonym/SM
+pseudonymous
+pseudoscience/MS
+pseudy
+pshaw/MS
+psi/SM
+psittacosis/M
+psoriasis/M
+psst
+psych/MDSG
+psyche/M
+psychedelia
+psychedelic/SM
+psychedelically
+psychiatric
+psychiatrist/SM
+psychiatry/M
+psychic/MS
+psychical/Y
+psycho/SM
+psychoactive
+psychoanalyses
+psychoanalysis/M
+psychoanalyst/SM
+psychoanalytic
+psychoanalytical/Y
+psychoanalyze/DSG
+psychobabble/M
+psychodrama/MS
+psychogenic
+psychokinesis
+psychokinetic
+psychological/Y
+psychologist/MS
+psychology/SM
+psychometric
+psychoneuroses
+psychoneurosis/M
+psychopath/M
+psychopathic
+psychopathology
+psychopaths
+psychopathy/M
+psychopharmacology
+psychophysiology
+psychos/S
+psychosis/M
+psychosomatic
+psychotherapist/MS
+psychotherapy/SM
+psychotic/SM
+psychotically
+psychotropic/MS
+psychs
+pt/C
+ptarmigan/MS
+pterodactyl/MS
+ptomaine/SM
+pub/SM
+pubertal
+puberty/M
+pubes/M
+pubescence/M
+pubescent
+pubic
+pubis/M
+public/AM
+publican/AMS
+publication/ASM
+publicist/MS
+publicity/M
+publicize/GDS
+publicly
+publish/AGDS
+publishable
+published/U
+publisher/MS
+publishing/M
+puce/M
+puck/ZMRS
+pucker/MDG
+puckish/YP
+puckishness/M
+pud/S
+pudding/SM
+puddle/DSMG
+puddling/M
+pudenda
+pudendum/M
+pudginess/M
+pudgy/PRT
+pueblo/SM
+puerile
+puerility/M
+puerperal
+puff/ZGMDRS
+puffball/SM
+puffer/M
+puffin/SM
+puffiness/M
+puffy/PRT
+pug/SM
+pugilism/M
+pugilist/SM
+pugilistic
+pugnacious/YP
+pugnaciousness/M
+pugnacity/M
+puke/MGDS
+pukka
+pulchritude/M
+pulchritudinous
+pule/GDS
+pull/ZGMDRS
+pullback/MS
+puller/M
+pullet/SM
+pulley/SM
+pullout/MS
+pullover/SM
+pulmonary
+pulp/GMDS
+pulpiness/M
+pulpit/SM
+pulpwood/M
+pulpy/RPT
+pulsar/SM
+pulsate/XGNDS
+pulsation/M
+pulse/AMGDS
+pulverization/M
+pulverize/DSG
+puma/MS
+pumice/SM
+pummel/S
+pummelled
+pummelling
+pump/ZGMDRS
+pumper/M
+pumpernickel/M
+pumpkin/MS
+pun/SM
+punch/MDRSZG
+punchbag/S
+puncheon/MS
+puncher/M
+punchline/S
+punchy/TR
+punctilio/M
+punctilious/PY
+punctiliousness/M
+punctual/Y
+punctuality/M
+punctuate/GNDS
+punctuation/M
+puncture/DSMG
+pundit/SM
+punditry/M
+pungency/M
+pungent/Y
+puniness/M
+punish/BLGDS
+punished/U
+punishing/Y
+punishment/MS
+punitive/Y
+punk/TMRS
+punned
+punnet/S
+punning
+punster/SM
+punt/ZGMDRS
+punter/M
+puny/TRP
+pup/SM
+pupa/M
+pupae
+pupal
+pupate/DSG
+pupil/MS
+pupped
+puppet/MS
+puppeteer/SM
+puppetry/M
+pupping
+puppy/SM
+purblind
+purchase/DRSMZGB
+purchaser/M
+purdah/M
+pure/PYTR
+purebred/SM
+puree/MDS
+pureeing
+pureness/M
+purgative/SM
+purgatorial
+purgatory/SM
+purge/MZGDRS
+purger/M
+purification/M
+purifier/M
+purify/NDRSZG
+purine/MS
+purism/M
+purist/MS
+puristic
+puritan/SM
+puritanical/Y
+puritanism/M
+purity/M
+purl/GMDS
+purlieu/SM
+purloin/SGD
+purple/MTRS
+purplish
+purport/SMDG
+purported/Y
+purpose/DSMYG
+purposed/A
+purposeful/YP
+purposefulness/M
+purposeless/PY
+purr/GMDS
+purse/MZGDRS
+purser/M
+pursuance/M
+pursuant
+pursue/ZGDRS
+pursuer/M
+pursuit/SM
+purulence/M
+purulent
+purvey/DSG
+purveyance/M
+purveyor/SM
+purview/M
+pus/M
+push/ZGMDRS
+pushbike/S
+pushcart/SM
+pushchair/S
+pusher/M
+pushily
+pushiness/M
+pushover/MS
+pushpin/S
+pushy/TRP
+pusillanimity/M
+pusillanimous/Y
+puss/MS
+pussy/TRSM
+pussycat/MS
+pussyfoot/DSG
+pustular
+pustule/SM
+put/ISM
+putative
+putout/MS
+putrefaction/M
+putrefactive
+putrefy/GDS
+putrescence/M
+putrescent
+putrid
+putsch/MS
+putt/ZGMDRS
+putted/I
+puttee/MS
+putter/MDRZG
+putterer/M
+putting/I
+putty/GDSM
+putz/S
+puzzle/MZGDRSL
+puzzlement/M
+puzzler/M
+pvt
+pwn/SGD
+pyelonephritis
+pygmy/SM
+pyjama/S
+pyjamas/M
+pylon/SM
+pylori
+pyloric
+pylorus/M
+pyorrhea/M
+pyramid/GSMD
+pyramidal
+pyre/MS
+pyrimidine/MS
+pyrite/SM
+pyrites/M
+pyromania/M
+pyromaniac/SM
+pyrotechnic/S
+pyrotechnical
+pyrotechnics/M
+pyruvate
+python/SM
+pyx/MS
+pzazz
+q
+qr
+qt/S
+qty
+qua
+quack/GMDS
+quackery/M
+quad/MS
+quadrangle/SM
+quadrangular
+quadrant/MS
+quadraphonic
+quadratic/MS
+quadrature
+quadrennial
+quadrennium/MS
+quadriceps/MS
+quadrilateral/SM
+quadrille/XMNS
+quadrillion/M
+quadriplegia/M
+quadriplegic/SM
+quadrivium/M
+quadruped/MS
+quadrupedal
+quadruple/MGDS
+quadruplet/MS
+quadruplicate/MGNDS
+quadruplication/M
+quaff/GMDS
+quagmire/SM
+quahog/MS
+quail/GMDS
+quaint/PRYT
+quaintness/M
+quake/MGDS
+quaky
+qualification/EM
+qualified/U
+qualifier/SM
+qualify/EGXNDS
+qualitative/Y
+quality/SM
+qualm/MS
+qualmish
+quandary/SM
+quango/S
+quanta
+quantifiable
+quantification/M
+quantifier/M
+quantify/NDRSZG
+quantitation
+quantitative/Y
+quantity/SM
+quantization
+quantize
+quantum/M
+quarantine/MGDS
+quark/MS
+quarrel/SM
+quarrelled
+quarreller/MS
+quarrelling
+quarrelsome/P
+quarrelsomeness/M
+quarry/DSMG
+quart/MS
+quarter/SGMDY
+quarterback/GMDS
+quarterdeck/MS
+quarterfinal/SM
+quarterly/SM
+quartermaster/MS
+quarterstaff/M
+quarterstaves
+quartet/SM
+quarto/MS
+quartz/M
+quasar/MS
+quash/GDS
+quasi
+quatrain/MS
+quaver/MDSG
+quavery
+quay/MS
+quayside/S
+queasily
+queasiness/M
+queasy/TPR
+queen/GMDYS
+queenly/RT
+queer/PTGMDRYS
+queerness/M
+quell/GDS
+quench/ZGDRSB
+quenchable/U
+quencher/M
+quenchless
+querulous/YP
+querulousness/M
+query/DSMG
+ques
+quesadilla/MS
+quest/IFAMS
+quested
+questing
+question/SMDRZGBJ
+questionable/U
+questionably/U
+questioned/U
+questioner/M
+questioning/MY
+questionnaire/SM
+queue's
+queue/CDS
+queuing
+quibble/DRSMZG
+quibbler/M
+quiche/SM
+quick/MNRYXTP
+quicken/DG
+quickfire
+quickie/SM
+quicklime/M
+quickness/M
+quicksand/MS
+quicksilver/M
+quickstep/MS
+quid/MS
+quiescence/M
+quiescent/Y
+quiet/SMDNRYXTGP
+quieten/DG
+quietism
+quietness/M
+quietude/IEM
+quietus/MS
+quiff/S
+quill/SM
+quilt/SMDRZG
+quilter/M
+quilting/M
+quin/S
+quince/SM
+quine/S
+quinidine
+quinine/M
+quinoa
+quinsy/M
+quint/SM
+quintessence/SM
+quintessential/Y
+quintet/SM
+quintuple/MGDS
+quintuplet/MS
+quip/MS
+quipped
+quipping
+quipster/SM
+quire's
+quire/IAS
+quirk/SMDG
+quirkiness/M
+quirky/RTP
+quirt/SM
+quisling/SM
+quit/S
+quitclaim/MS
+quite
+quittance/M
+quitter/SM
+quitting
+quiver/SMDG
+quivery
+quixotic
+quixotically
+quiz/M
+quizzed
+quizzer/SM
+quizzes
+quizzical/Y
+quizzing
+quo/H
+quoin/SM
+quoit/SMDG
+quondam
+quorate/I
+quorum/SM
+quot/B
+quota/SM
+quotability/M
+quotation/SM
+quote's
+quote/UDSG
+quotidian
+quotient/SM
+qwerty
+r/S
+rabbet/GMDS
+rabbi/SM
+rabbinate/M
+rabbinic
+rabbinical
+rabbit/GMDS
+rabble/MS
+rabid/PY
+rabidness/M
+rabies/M
+raccoon/MS
+race/MZGDRS
+racecourse/SM
+racegoer/S
+racehorse/MS
+raceme/MS
+racer/M
+racetrack/MS
+raceway/MS
+racial/Y
+racialism/M
+racialist/MS
+racily
+raciness/M
+racing/M
+racism/M
+racist/SM
+rack/GMDS
+racket/SMDG
+racketeer/SMDG
+racketeering/M
+raconteur/SM
+racquet/SM
+racquetball/SM
+racy/PRT
+rad/SM
+radar/SM
+radarscope/SM
+raddled
+radial/SMY
+radian/S
+radiance/M
+radiant/Y
+radiate/DSGNX
+radiation/M
+radiator/SM
+radical/SMY
+radicalism/M
+radicalization/M
+radicalize/DSG
+radicchio/M
+radii
+radio/MDGS
+radioactive/Y
+radioactivity/M
+radiocarbon/M
+radiogram/MS
+radiographer/SM
+radiography/M
+radioisotope/MS
+radiologist/SM
+radiology/M
+radioman/M
+radiomen
+radiometer/MS
+radiometric
+radiometry/M
+radiophone/SM
+radioscopy/M
+radiosonde/SM
+radiosurgery
+radiotelegraph/M
+radiotelegraphs
+radiotelegraphy/M
+radiotelephone/MS
+radiotherapist/MS
+radiotherapy/M
+radish/MS
+radium/M
+radius/M
+radon/M
+raffia/M
+raffish/YP
+raffishness/M
+raffle/DSMG
+raft/ZGMDRS
+rafter/M
+rafting/M
+rag/SGMD
+raga/MS
+ragamuffin/MS
+ragbag/M
+rage/MS
+ragga
+ragged/RYTP
+raggedness/M
+raggedy/RT
+ragging
+raging/Y
+raglan/SM
+ragout/SM
+ragtag/S
+ragtime/M
+ragweed/M
+ragwort
+rah
+raid/ZGMDRS
+raider/M
+rail's
+rail/CGDS
+railcard/S
+railing/SM
+raillery/SM
+railroad/SZGMDR
+railroader/M
+railroading/M
+railway/SM
+railwayman
+railwaymen
+raiment/M
+rain/GMDS
+rainbow/SM
+raincoat/SM
+raindrop/SM
+rainfall/SM
+rainmaker/SM
+rainmaking/M
+rainproof
+rainstorm/MS
+rainwater/M
+rainy/RT
+raise/MZGDRS
+raiser/M
+raisin/SM
+rajah/M
+rajahs
+rake/MGDS
+rakish/YP
+rakishness/M
+rally/DSMG
+ram/SM
+ramble/DRSMZGJ
+rambler/M
+rambunctious/PY
+rambunctiousness/M
+ramekin/SM
+ramie/M
+ramification/M
+ramify/DSXNG
+ramjet/SM
+rammed
+ramming
+ramp/GMS
+rampage/DSMG
+rampancy/M
+rampant/Y
+rampart/SM
+ramrod/SM
+ramrodded
+ramrodding
+ramshackle
+ran/A
+ranch/MDRSZG
+rancher/M
+ranching/M
+rancid/P
+rancidity/M
+rancidness/M
+rancorous/Y
+rancour/M
+rand/M
+randiness/M
+random/PSY
+randomization/M
+randomize/DSG
+randomness/MS
+randy/RTP
+ranee/MS
+rang/ZR
+range's
+range/CGDS
+rangefinder/S
+ranger/M
+ranginess/M
+rangy/RTP
+rank/TGJPMDRYS
+ranking/M
+rankle/DSG
+rankness/M
+ransack/SGD
+ransom/SZGMDR
+ransomer/M
+ransomware
+rant/ZGMDJRS
+ranter/M
+rap/SZGMDR
+rapacious/PY
+rapaciousness/M
+rapacity/M
+rape/MS
+raper/M
+rapeseed/M
+rapid/PMRYTS
+rapidity/M
+rapidness/M
+rapier/SM
+rapine/M
+rapist/SM
+rapped
+rappel/SM
+rappelled
+rappelling
+rapper/SM
+rapping
+rapport/MS
+rapporteur/S
+rapprochement/SM
+rapscallion/MS
+rapt/YP
+raptness/M
+raptor/S
+rapture/MS
+rapturous/Y
+rare/YTGPDRS
+rarebit/MS
+rarefaction/M
+rarefy/GDS
+rareness/M
+rarity/SM
+rascal/SMY
+rash/ZTMRSYP
+rasher/M
+rashness/M
+rasp/GMDS
+raspberry/SM
+raspy/RT
+raster
+rat/SM
+ratatouille/M
+ratbag/S
+ratchet/GMDS
+rate/JXMZGNDRS
+rated/U
+ratepayer/S
+rater/M
+rather
+rathskeller/SM
+ratification/M
+ratifier/M
+ratify/NDRSZG
+rating/M
+ratio/MS
+ratiocinate/GNDS
+ratiocination/M
+ration/MDG
+rational/SMY
+rationale/MS
+rationalism/M
+rationalist/SM
+rationalistic
+rationality/M
+rationalization/MS
+rationalize/DSG
+ratlike
+ratline/SM
+rattan/SM
+ratted
+ratter/SM
+ratting
+rattle/DRSMZGJ
+rattlebrain/SMD
+rattler/M
+rattlesnake/SM
+rattletrap/SM
+rattly
+rattrap/SM
+ratty/RT
+raucous/YP
+raucousness/M
+raunchily
+raunchiness/M
+raunchy/TRP
+ravage/DRSMZG
+ravager/M
+ravages/M
+rave/JMZGDRS
+ravel's
+ravel/US
+ravelled/U
+ravelling/S
+raven/MDSG
+ravenous/Y
+ravine/SM
+raving/M
+ravioli/SM
+ravish/DRSZGL
+ravisher/M
+ravishing/Y
+ravishment/M
+raw/PTMR
+rawboned
+rawhide/M
+rawness/M
+ray/SM
+rayon/M
+raze/GDS
+razor/MS
+razorback/MS
+razz/GMDS
+razzmatazz/M
+rcpt
+rd
+re/DSMYTGVJ
+reach/MDSGB
+reachable/U
+reacquire/DSG
+react/V
+reactance
+reactant/SM
+reactionary/SM
+reactivity
+read/ZGMRBJS
+readability/SM
+reader/M
+readership/SM
+readily
+readiness/M
+reading/M
+readmitted
+readout/SM
+ready/DRSTGP
+reafforestation
+real/TMRYPS
+realism/M
+realist/SM
+realistic/U
+realistically/U
+realities
+reality/UM
+realization/MS
+realize/DSBG
+realized/U
+realm/MS
+realness/M
+realpolitik/M
+realty/M
+ream/ZGMDRS
+reamer/M
+reap/ZGDRS
+reaper/M
+rear/GMDS
+rearguard/MS
+rearmost
+rearward/S
+reason/SMDRZGB
+reasonable/UP
+reasonableness/UM
+reasonably/U
+reasoner/M
+reasoning/M
+reassuring/Y
+rebate/M
+rebel/MS
+rebellion/MS
+rebellious/YP
+rebelliousness/M
+rebid/S
+rebidding
+rebirth/M
+reboil/SDG
+rebuild/SG
+rebuke/DSMG
+rebuking/Y
+rebuttal/MS
+rec'd
+rec/M
+recalcitrance/M
+recalcitrant
+recant/SDG
+recantation/SM
+recap/MS
+recapitalization
+recce/S
+recd
+receipt/SMDG
+receivables/M
+receive/DRSZGB
+receiver/M
+receivership/M
+recent/RYTP
+recentness/M
+receptacle/SM
+reception/MS
+receptionist/SM
+receptive/PY
+receptiveness/M
+receptivity/M
+receptor/SM
+recess/MDSGV
+recessional/SM
+recessionary
+recessive/SM
+recherche
+recidivism/M
+recidivist/SM
+recipe/SM
+recipient/SM
+reciprocal/SMY
+reciprocate/GNDS
+reciprocation/M
+reciprocity/M
+recital/SM
+recitalist/MS
+recitative/MS
+reciter/SM
+reckless/YP
+recklessness/M
+reckon/SJDG
+reckoning/M
+reclamation/M
+recline/DRSZG
+recliner/M
+recluse/SMV
+recognizable/U
+recognizably/U
+recognize/DRSGB
+recognized/U
+recombination
+recompense/DSMG
+recompilation
+recompile/GD
+recon/S
+reconcile/GDSB
+reconciliation/S
+recondite
+reconfiguration
+reconfigure/D
+reconnaissance/MS
+reconnoitre/GDS
+reconstruct/V
+reconstructed/U
+recorded/U
+recorder/MS
+recording/MS
+recoup/DG
+recourse/M
+recoverable/U
+recovery/SM
+recreant/MS
+recreational
+recriminate/DSGNX
+recrimination/M
+recriminatory
+recrudesce/GDS
+recrudescence/M
+recrudescent
+recruit/LSMDRZG
+recruiter/M
+recruitment/M
+rectal/Y
+rectangle/MS
+rectangular
+rectifiable
+rectification/M
+rectifier/M
+rectify/XNDRSZG
+rectilinear
+rectitude/M
+recto/MS
+rector/SM
+rectory/SM
+rectum/SM
+recumbent
+recuperate/GNVDS
+recuperation/M
+recur/S
+recurred
+recurrence/SM
+recurring
+recursion/S
+recuse/DSG
+recyclable/SM
+recycling/M
+red/PSM
+redact/SDG
+redaction/M
+redactor/SM
+redbird/SM
+redbreast/MS
+redbrick
+redcap/SM
+redcoat/SM
+redcurrant/S
+redden/SDG
+redder
+reddest
+reddish
+redeem/RZB
+redeemer/M
+redemption/M
+redemptive
+redhead/SMD
+redirection
+redistrict/GD
+redivide/GDS
+redlining/M
+redneck/SM
+redness/M
+redo/G
+redolence/M
+redolent
+redoubt/SBM
+redoubtably
+redound/SDG
+redraw/SG
+redskin/SM
+reduce/DRSZG
+reducer/M
+reducible
+reductase/M
+reduction/SM
+reductionist
+reductive
+redundancy/SM
+redundant/Y
+redwood/SM
+redye/DS
+reediness/M
+reedy/RTP
+reef/ZGMDRS
+reefer/M
+reek/GMDS
+reel's
+reel/UGDS
+reeve/G
+reexport/SDG
+ref/SZM
+refashion/DGS
+refection/M
+refectory/SM
+refer/B
+referee/DSM
+refereeing
+reference/MGDS
+referendum/MS
+referent/SM
+referential
+referral/SM
+referred
+referrer/SM
+referring
+reffed
+reffing
+refill/BM
+refined/U
+refinement/SM
+refiner/SM
+refinery/S
+refitting
+reflate/XDSGN
+reflationary
+reflect/GVSD
+reflection/MS
+reflective/Y
+reflectivity
+reflector/MS
+reflexive/SMY
+reflexivity
+reflexology
+reforge/DSG
+reform/MZ
+reformat/V
+reformatory/SM
+reformatting
+reformed/U
+reformist/S
+refortify/GDS
+refract/SGVD
+refraction/M
+refractory/SM
+refrain/SGMD
+refresh/ZGLDRS
+refresher/M
+refreshing/Y
+refreshment/SM
+refreshments/M
+refrigerant/SM
+refrigerate/DSGN
+refrigeration/M
+refrigerator/MS
+refuge/SM
+refugee/SM
+refulgence/M
+refulgent
+refund/B
+refurbishment/MS
+refusal/MS
+refutation/MS
+refute/BDRSZG
+refuter/M
+reg
+regal/DYG
+regalement/M
+regalia/M
+regard/ESMDG
+regardless
+regards/M
+regather/DGS
+regatta/SM
+regency/SM
+regeneracy/M
+regenerate/V
+regex/M
+regexp/S
+reggae/M
+regicidal
+regicide/MS
+regime/SM
+regimen/SM
+regiment/MDGS
+regimental
+regimentation/M
+region/SM
+regional/Y
+regionalism/MS
+register/GMDS
+registered/U
+registrant/MS
+registrar/MS
+registration/SM
+registry/SM
+regnant
+regress/MDSGV
+regression/MS
+regret/SM
+regretful/Y
+regrettable
+regrettably
+regretted
+regretting
+regrind/GS
+reground
+regroup/DGS
+regular/MYS
+regularity/SM
+regularization/M
+regularize/DSG
+regulate/CDSGNV
+regulated/U
+regulation/CM
+regulations
+regulator/MS
+regulatory
+regurgitate/DSGN
+regurgitation/M
+rehab/MS
+rehabbed
+rehabbing
+rehabilitate/GNVDS
+rehabilitation/M
+rehang/SDG
+rehears/GD
+rehearsal/MS
+rehearsed/U
+rehi
+rehung
+reify/NDSG
+reign/MDSG
+reimburse/BDSGL
+reimbursement/MS
+rein/GD
+reindeer/M
+reinforce/LGDS
+reinforcement/SM
+reinitialize
+reinstall/DG
+reinstatement/M
+reinsurance
+reiterate/V
+reject/GSMD
+rejection/SM
+rejoice/JGDS
+rejoicing/M
+rejoinder/SM
+rejuvenate/DSGN
+rejuvenation/M
+rel
+relate/DRSBXZGNV
+relatedness/M
+relater/M
+relation/M
+relational
+relationship/MS
+relative/MYS
+relativism/M
+relativist/S
+relativistic
+relativity/M
+relax/DRSZG
+relaxant/MS
+relaxation/SM
+relaxer/M
+relay/D
+release/B
+released/U
+relegate/GNDS
+relent/SGD
+relentless/PY
+relentlessness/M
+relevance/M
+relevancy/M
+relevant/Y
+reliability/UM
+reliable/U
+reliably/U
+reliance/M
+reliant
+relic/MS
+relief/SM
+relieve/ZGDRS
+reliever/M
+religion/SM
+religiosity
+religious/MYP
+religiousness/M
+reline/DSG
+relinquish/LDSG
+relinquishment/M
+reliquary/SM
+relish/GMDS
+relist/SGD
+relocate/B
+reluctance/M
+reluctant/Y
+rely/GDS
+rem/M
+remain/SGD
+remainder/GMDS
+remand/SGD
+remapping
+remark/B
+remarkableness/M
+remarkably
+remarked/U
+remediable
+remedy/GDSM
+remember/DG
+remembered/U
+remembrance/MS
+reminder/M
+reminisce/GDS
+reminiscence/MS
+reminiscent/Y
+remiss/PY
+remissness/M
+remit/S
+remittance/SM
+remitted
+remitting/U
+remix/DSG
+remnant/MS
+remodelling
+remonstrant/SM
+remonstrate/DSG
+remorse/M
+remorseful/Y
+remorseless/PY
+remorselessness/M
+remote/RSMYTP
+remoteness/M
+remould/SDG
+removal/SM
+remunerate/GNVXDS
+remuneration/M
+renaissance/MS
+renal
+renascence/S
+rend/GS
+render/SGMDJ
+rendering/M
+rendezvous/GMDS
+rendition/MS
+renegade/DSMG
+renege/DRSZG
+reneger/M
+renew/DSBG
+renewal/MS
+rennet/M
+rennin/M
+renounce/LDSG
+renouncement/M
+renovate/DSXGN
+renovation/M
+renovator/MS
+renown/MD
+rent/ZGMDRS
+rental/SM
+renter/M
+renunciation/SM
+reopen/SDG
+reorg/MDSG
+rep/SM
+repaint/GDS
+repair/BZR
+repairer/M
+repairman/M
+repairmen
+reparable
+reparation/MS
+reparations/M
+repartee/M
+repatriate/XDSMGN
+repatriation/M
+repeat/SMDRZGB
+repeatability
+repeatable/U
+repeatably
+repeated/Y
+repeater/M
+repeating/M
+repel/S
+repelled
+repellent/SM
+repelling
+repent/SDG
+repentance/M
+repentant/Y
+repercussion/S
+repertoire/MS
+repertory/SM
+repetition/MS
+repetitious/YP
+repetitiousness/M
+repetitive/YP
+repetitiveness/M
+rephotograph/DG
+replaceable
+replant/GSD
+replenish/LGDS
+replenishment/M
+replete/PDSGN
+repleteness/M
+repletion/M
+replica/SM
+replicate/DSGNX
+replication/M
+replicator/S
+reportage/M
+reported/Y
+reportorial
+reposeful
+reposition
+repository/SM
+reprehend/DGS
+reprehensibility/M
+reprehensible
+reprehensibly
+reprehension/M
+represent/GDS
+representational
+representative/MS
+represented/U
+repression/MS
+repressive/PY
+reprieve/DSMG
+reprimand/GSMD
+reprisal/SM
+reprise/SMG
+reproach/GMDSB
+reproachful/Y
+reprobate/MS
+reproductive
+reprogramming
+reproving/Y
+reptile/SM
+reptilian/MS
+republic/S
+republicanism/M
+repudiate/XGNDS
+repudiation/M
+repudiator/MS
+repugnance/M
+repugnant
+repulsion/M
+repulsive/YP
+repulsiveness/M
+repurchase/GDS
+reputability/M
+reputably/E
+reputation/MS
+repute/DSMGB
+reputed/Y
+request/GDR
+requiem/SM
+require/LDG
+requirement/MS
+requisite/XMNS
+requisition/GMD
+requital/M
+requite/DRSZG
+requited/U
+requiter/M
+reread/SG
+rerecord/GDS
+rerunning
+resale/B
+resample/GDS
+resat
+rescind/SDG
+rescission/M
+rescue/DRSMZG
+rescuer/M
+reseal/B
+resemble/DSG
+resend
+resent/LSDG
+resentful/YP
+resentfulness/M
+resentment/MS
+reserpine/M
+reservation/MS
+reserved/UY
+reservedness/M
+reservist/SM
+reservoir/SM
+resetting
+reshipping
+residence/SM
+residency/SM
+resident/MS
+residential
+residua
+residual/MS
+residue/SM
+residuum/M
+resignation/SM
+resigned/Y
+resilience/M
+resiliency/M
+resilient/Y
+resinous
+resist/SMDRZG
+resistance/SM
+resistant/U
+resistible
+resistivity
+resistless
+resistor/MS
+resit/S
+resitting
+resold
+resole/DSG
+resolute/PY
+resoluteness/M
+resolve/RBM
+resolved/U
+resonance/SM
+resonant/Y
+resonate/GDS
+resonator/SM
+resorption/M
+resound/SGD
+resounding/Y
+resourceful/YP
+resourcefulness/M
+resp
+respect/ESGVMD
+respectability/M
+respectable
+respectably
+respecter/MS
+respectful/EY
+respectfulness/M
+respective/Y
+respell/SGD
+respiration/M
+respirator/SM
+respiratory
+respire/DG
+resplendence/M
+resplendent/Y
+respond/SGD
+respondent/SM
+response/MS
+responsibility/SM
+responsible
+responsibly
+responsive/UYP
+responsiveness/UM
+rest/GVMDS
+restate/GDS
+restaurant/SM
+restaurateur/MS
+restful/YP
+restfuller
+restfullest
+restfulness/M
+restitution/M
+restive/YP
+restiveness/M
+restless/PY
+restlessness/M
+restoration/SM
+restorative/SM
+restorer/SM
+restrained/U
+restraint/MS
+restrict/SDGV
+restricted/U
+restriction/MS
+restrictive/YP
+restrictiveness/M
+restring/SG
+restroom/SM
+restructuring/SM
+result/GSMD
+resultant/SM
+resume/DSMG
+resumption/MS
+resupply/DSG
+resurgence/MS
+resurgent
+resurrect/GSD
+resurrection/MS
+resuscitate/GNDS
+resuscitation/M
+resuscitator/SM
+retailer/MS
+retain/SDRZG
+retainer/M
+retake/G
+retaliate/DSGNVX
+retaliation/M
+retaliatory
+retard/SMDRZG
+retardant/SM
+retardation/M
+retarder/M
+retch/DSG
+reteach/GS
+retention/M
+retentive/YP
+retentiveness/M
+rethink/SGM
+rethought
+reticence/M
+reticent/Y
+reticulated
+reticulation/MS
+reticulum
+retina/SM
+retinal
+retinoblastoma
+retinue/SM
+retiree/SM
+retirement/MS
+retort/GMD
+retrace/GDS
+retract/DBG
+retractile
+retraction/S
+retrain/DGS
+retread/D
+retrenchment/MS
+retribution/MS
+retributive
+retrieval/SM
+retrieve/DRSMZGB
+retriever/M
+retro/MS
+retroactive/Y
+retrofire/GDS
+retrofit/SM
+retrofitted
+retrofitting
+retrograde/DSG
+retrogress/GVDS
+retrogression/M
+retrorocket/MS
+retrospect/MDSGV
+retrospection/M
+retrospective/MYS
+retrovirus/MS
+retsina/M
+returnable/SM
+returnee/SM
+rev/ZVM
+revamping/M
+reveal/GJSD
+revealed/U
+revealing/Y
+reveille/M
+revel/MS
+revelation/SM
+revelatory
+revelled
+reveller/SM
+revelling/S
+revelry/SM
+revenge/MGDS
+revenuer/SM
+reverb
+reverberate/DSGNX
+reverberation/M
+revere/DSG
+reverence/DSMG
+reverend/SM
+reverent/Y
+reverential/Y
+reverie/MS
+revers/M
+reversal/SM
+reverse/Y
+reversibility
+reversible
+reversibly
+revert/GSD
+revertible
+revetment/SM
+revile/DRSLZG
+revilement/M
+reviler/M
+reviser/MS
+revision/SM
+revisionism/M
+revisionist/SM
+revival/MS
+revivalism/M
+revivalist/SM
+revive/DSG
+revivification/M
+revocable
+revoke/DSG
+revolt/GD
+revolting/Y
+revolution/SM
+revolutionary/SM
+revolutionist/SM
+revolutionize/DSG
+revolve/BZGDRS
+revolver/M
+revue/MS
+revulsion/M
+revved
+revving
+rewarded/U
+rewarding/U
+rewarm/GSD
+rewash/GDS
+reweave/GS
+rewedding
+rewind/MB
+rewound
+rewrite/MGS
+rhapsodic
+rhapsodical
+rhapsodize/GDS
+rhapsody/SM
+rhea/MS
+rhenium/M
+rheostat/SM
+rhesus/MS
+rhetoric/M
+rhetorical/Y
+rhetorician/SM
+rheum/M
+rheumatic/MS
+rheumatically
+rheumatism/M
+rheumatoid
+rheumy
+rhinestone/SM
+rhinitis/M
+rhino/MS
+rhinoceros/MS
+rhinoplasty
+rhinovirus/MS
+rhizome/MS
+rho/SM
+rhodium/M
+rhododendron/SM
+rhomboid/SM
+rhomboidal
+rhombus/MS
+rhubarb/MS
+rhyme/MZGDRS
+rhymer/M
+rhymester/MS
+rhythm/SM
+rhythmic
+rhythmical/Y
+rial/MS
+rib/SM
+ribald
+ribaldry/M
+ribbed
+ribber/SM
+ribbing
+ribbon/SM
+riboflavin/M
+rice/MZGDRS
+ricer/M
+rich/TMRSYP
+richness/M
+rick/GMDS
+rickets/M
+rickety/RT
+rickrack/M
+rickshaw/MS
+ricochet/GMDS
+ricotta/M
+rid/S
+riddance/M
+ridden
+ridding
+riddle/DSMG
+ride/MZGRS
+rider/M
+riderless
+ridership/M
+ridge/MGDS
+ridgepole/SM
+ridgy
+ridicule/MGDS
+ridiculous/YP
+ridiculousness/M
+riding/M
+rife/TR
+riff/GMDS
+riffle/DSMG
+riffraff/M
+rifle/MZGDRS
+rifleman/M
+riflemen
+rifler/M
+rifling/M
+rift/GMDS
+rig/SM
+rigatoni/M
+rigged
+rigger/SM
+rigging/M
+right/MDRYSPTG
+righteous/UP
+righteously
+righteousness/UM
+rightful/PY
+rightfulness/M
+rightism/M
+rightist/SM
+rightmost
+rightness/M
+righto
+rightsize/DSG
+rightward/S
+rigid/YP
+rigidity/M
+rigidness/M
+rigmarole/MS
+rigorous/YP
+rigorousness/M
+rigour/SM
+rile/GDS
+rill/MS
+rim/SGMD
+rime/MS
+rimless
+rimmed
+rimming
+rind/MS
+ring/ZGMDRJ
+ringer/M
+ringgit/MS
+ringleader/MS
+ringlet/MS
+ringlike
+ringmaster/MS
+ringside/M
+ringtone/SM
+ringworm/M
+rink/MS
+rinse/MGDS
+riot/ZGMDRS
+rioter/M
+rioting/M
+riotous/PY
+rip/SXTMNR
+riparian
+ripcord/MS
+ripe/YP
+ripen/DG
+ripened/U
+ripeness/M
+ripoff/SM
+riposte/MGDS
+ripped
+ripper/SM
+ripping
+ripple/DSMG
+ripply
+ripsaw/SM
+riptide/MS
+rise/JMZGRS
+risen
+riser/M
+risibility/M
+risible
+rising/M
+risk/GMDS
+riskily
+riskiness/M
+risky/RPT
+risotto/MS
+risque
+rissole/S
+rite/MS
+ritual/SMY
+ritualism/M
+ritualistic
+ritualistically
+ritualized
+ritzy/RT
+riv/ZNR
+rival/MS
+rivalled/U
+rivalling
+rivalry/SM
+rive/CGDS
+river/M
+riverbank/SM
+riverbed/MS
+riverboat/SM
+riverfront
+riverside/MS
+rivet/MDRSZG
+riveter/M
+riviera/S
+rivulet/MS
+riyal/MS
+rm
+roach/GMDS
+road/IMS
+roadbed/SM
+roadblock/MDSG
+roadhouse/SM
+roadie/MS
+roadkill/M
+roadrunner/SM
+roadshow/SM
+roadside/SM
+roadster/SM
+roadway/SM
+roadwork/SM
+roadworthy
+roam/ZGDRS
+roamer/M
+roaming/M
+roan/MS
+roar/ZGMDRS
+roarer/M
+roaring/M
+roast/ZGMDRSJ
+roaster/M
+roasting/M
+rob/S
+robbed
+robber/MS
+robbery/SM
+robbing
+robe's
+robe/EGDS
+robin/MS
+robocall/SGMD
+robot/MS
+robotic/S
+robotics/M
+robotize/GDS
+robust/RYPT
+robustness/M
+rock/ZGMDRS
+rockabilly/M
+rockbound
+rocker/M
+rockery/S
+rocket/MDSG
+rocketry/M
+rockfall/SM
+rockiness/M
+rocky/TRP
+rococo/M
+rod/SM
+rode
+rodent/MS
+rodeo/MS
+roe/SM
+roebuck/SM
+roentgen/MS
+roger/GDS
+rogue's
+rogue/KS
+roguery/M
+roguish/YP
+roguishness/M
+roil/GDS
+roister/ZGDRS
+roisterer/M
+role/MS
+roll/MDRZGJS
+rollback/SM
+roller/M
+rollerblading
+rollerskating/M
+rollick/SDG
+rollicking/M
+rollmop/S
+rollover/SM
+romaine/MS
+roman/M
+romance/MZGDRS
+romancer/M
+romantic/MS
+romantically
+romanticism/M
+romanticist/SM
+romanticize/DSG
+romeo/MS
+romp/MDRZGS
+romper/M
+rondo/SM
+rood/MS
+roof/MDRZGS
+roofer/M
+roofing/M
+roofless
+rooftop/SM
+rook/MDGS
+rookery/SM
+rookie/SM
+room/MDRZGS
+roomer/M
+roomette/SM
+roomful/SM
+roominess/M
+roommate/SM
+roomy/RTP
+roost/SMDRZG
+rooster/M
+root/MDRZGS
+rooter/M
+rootkit/SM
+rootless/P
+rootlet/SM
+rope/MZGDRS
+roper/M
+ropy/RT
+rosary/SM
+rose/MS
+roseate
+rosebud/SM
+rosebush/MS
+rosemary/M
+rosette/SM
+rosewater/M
+rosewood/MS
+rosily
+rosin/SMDG
+rosiness/M
+roster/SM
+rostrum/MS
+rosy/RTP
+rot/SM
+rota/S
+rotary/SM
+rotate/DSGNX
+rotation/M
+rotational
+rotatory
+rote/M
+rotgut/M
+rotisserie/SM
+rotogravure/MS
+rotor/SM
+rototiller/MS
+rotted
+rotten/TPRY
+rottenness/M
+rotter/S
+rotting
+rottweiler/S
+rotund/P
+rotunda/MS
+rotundity/M
+rotundness/M
+rouble/SM
+roue/MS
+rouge/DSMG
+rough/MDNRYXTGP
+roughage/M
+roughcast
+roughen/GD
+roughhouse/MGDS
+roughneck/GMDS
+roughness/M
+roughs
+roughshod
+roulette/M
+round/PSMDRYZTG
+roundabout/SM
+roundel/S
+roundelay/MS
+roundhouse/SM
+roundish
+roundness/M
+roundup/MS
+roundworm/SM
+rouse/DSG
+roust/SDG
+roustabout/SM
+rout/MRZS
+route's
+route/ADSG
+routeing
+router/M
+routine/MYS
+routinize/GDS
+roux
+rove/ZGDRS
+rover/M
+row/SZGMDR
+rowan/S
+rowboat/MS
+rowdily
+rowdiness/M
+rowdy/PRSMT
+rowdyism/M
+rowel/SM
+rowelled
+rowelling
+rower/M
+rowing/M
+rowlock/S
+royal/SMY
+royalist/SM
+royalties/M
+royalty/SM
+rpm
+rps
+rt
+rte
+rub/SM
+rubato/SM
+rubbed
+rubber/SM
+rubberize/GDS
+rubberneck/MDRSZG
+rubbernecker/M
+rubbery
+rubbing/S
+rubbish/MDSG
+rubbishy
+rubble/M
+rubdown/SM
+rube/MS
+rubella/M
+rubicund
+rubidium/M
+rubric/SM
+ruby/RSMT
+ruched
+ruck/DGS
+rucksack/MS
+ruckus/MS
+ructions
+rudder/SM
+rudderless
+ruddiness/M
+ruddy/RTP
+rude/YTRP
+rudeness/M
+rudiment/SM
+rudimentary
+rue/DSMG
+rueful/PY
+ruefulness/M
+ruff/MDYGS
+ruffian/MYS
+ruffle/DSMG
+ruffled/U
+rug/SM
+rugby/M
+rugged/PTRY
+ruggedness/M
+rugger
+rugrat/SM
+ruin/MDGS
+ruination/M
+ruinous/Y
+rule/MZGJDRS
+ruler/M
+ruling/M
+rum/SM
+rumba/SMDG
+rumble/DSJMG
+rumbling/M
+rumbustious
+ruminant/MS
+ruminate/XGNVDS
+rumination/M
+ruminative/Y
+rummage/DSMG
+rummer
+rummest
+rummy/M
+rumour/SMDG
+rumourmonger/SM
+rump/MYS
+rumple/DSMG
+rumpus/MS
+run/ASM
+runabout/MS
+runaround/SM
+runaway/MS
+rundown/SM
+rune/MS
+rung/MS
+runic
+runlet/SM
+runnel/SM
+runner/SM
+running/M
+runny/RT
+runoff/SM
+runt/MS
+runtime
+runty/RT
+runway/SM
+rupee/SM
+rupiah/M
+rupiahs
+rupture/MGDS
+rural
+ruse/MS
+rush/MDRSZG
+rusher/M
+rushy
+rusk/MS
+russet/SM
+rust/MDGS
+rustic/SM
+rustically
+rusticate/GDS
+rustication/M
+rusticity/M
+rustiness/M
+rustle/DRSJMZG
+rustler/M
+rustproof/SDG
+rusty/RPNT
+rut/SM
+rutabaga/SM
+ruthenium/M
+rutherfordium/M
+ruthless/YP
+ruthlessness/M
+rutted
+rutting
+rutty/RT
+rye/M
+s/NYXB
+sabbath/M
+sabbaths
+sabbatical/SM
+sable/MS
+sabot/MS
+sabotage/DSMG
+saboteur/SM
+sabra/MS
+sabre/MS
+sac/SM
+saccharin/M
+saccharine
+sacerdotal
+sachem/SM
+sachet/SM
+sack/ZGMDRJS
+sackcloth/M
+sacker/M
+sackful/MS
+sacking/M
+sacra
+sacrament/MS
+sacramental
+sacred/YP
+sacredness/M
+sacrifice/DSMG
+sacrificial/Y
+sacrilege/MS
+sacrilegious/Y
+sacristan/MS
+sacristy/SM
+sacroiliac/MS
+sacrosanct/P
+sacrosanctness/M
+sacrum/M
+sad/PY
+sadden/SDG
+sadder
+saddest
+saddle's
+saddle/UDSG
+saddlebag/MS
+saddler/S
+saddlery
+sades
+sadhu/S
+sadism/M
+sadist/SM
+sadistic
+sadistically
+sadness/M
+sadomasochism/M
+sadomasochist/MS
+sadomasochistic
+safari/SGMD
+safe/MYTPRS
+safeguard/SMDG
+safekeeping/M
+safeness/M
+safety/SM
+safflower/MS
+saffron/MS
+sag/SM
+saga/MS
+sagacious/Y
+sagacity/M
+sage/MYTRS
+sagebrush/M
+sagged
+sagging
+saggy/RT
+sago/M
+saguaro/MS
+sahib/MS
+said/U
+sail/GMDSJ
+sailboard/MRZGS
+sailboarder/M
+sailboarding/M
+sailboat/MS
+sailcloth/M
+sailfish/MS
+sailing/M
+sailor/SM
+sailplane/MS
+saint/MDYS
+sainthood/M
+saintlike
+saintliness/M
+saintly/PRT
+saith
+sake/M
+salaam/SMDG
+salacious/PY
+salaciousness/M
+salacity/M
+salad/MS
+salamander/SM
+salami/SM
+salary/DSM
+sale/AMS
+saleable/U
+saleroom/S
+salesclerk/SM
+salesgirl/SM
+saleslady/SM
+salesman/M
+salesmanship/M
+salesmen
+salespeople/M
+salesperson/MS
+salesroom/S
+saleswoman/M
+saleswomen
+salience/M
+salient/SMY
+saline/SM
+salinity/M
+saliva/M
+salivary
+salivate/GNDS
+salivation/M
+sallow/RTP
+sallowness/M
+sally/DSMG
+salmon/SM
+salmonella/M
+salmonellae
+salon/MS
+saloon/SM
+salsa/MS
+salt's
+salt/CTGDS
+saltbox/MS
+saltcellar/SM
+salted/U
+salter
+saltine/SM
+saltiness/M
+saltpetre/M
+saltshaker/SM
+saltwater/M
+salty/RTP
+salubrious/I
+salutary
+salutation/MS
+salutatorian/MS
+salutatory
+salute/DSMG
+salvage/DSMG
+salvageable
+salvation/M
+salve/MZGDRS
+salver/M
+salvo/MS
+samarium/M
+samba/MDSG
+same/SP
+sameness/M
+samey
+samizdat/S
+samosa/S
+samovar/SM
+sampan/SM
+sample/DRSMZGJ
+sampler/M
+sampling/M
+samurai/SM
+sanatorium/SM
+sanctification/M
+sanctify/GDSN
+sanctimonious/YP
+sanctimoniousness/M
+sanctimony/M
+sanction/GSMD
+sanctioned/U
+sanctity/M
+sanctuary/SM
+sanctum/SM
+sand/ZGMDRS
+sandal/SM
+sandalwood/M
+sandbag/SM
+sandbagged
+sandbagger/SM
+sandbagging
+sandbank/MS
+sandbar/SM
+sandblast/ZGMDRS
+sandblaster/M
+sandbox/MS
+sandcastle/MS
+sander/M
+sandhog/SM
+sandiness/M
+sandlot/SM
+sandlotter/MS
+sandman/M
+sandmen
+sandpaper/GMDS
+sandpiper/MS
+sandpit/S
+sandstone/M
+sandstorm/SM
+sandwich/MDSG
+sandy/RTP
+sane/IYTR
+saneness/M
+sang/S
+sangfroid/M
+sangria/M
+sanguinary
+sanguine/Y
+sanitarian/SM
+sanitarium/SM
+sanitary/IU
+sanitation/M
+sanitize/ZGDRS
+sanity/IM
+sank
+sans
+sanserif
+sap/SM
+sapience/M
+sapiens
+sapient
+sapless
+sapling/MS
+sapped
+sapper/S
+sapphire/SM
+sappiness/M
+sapping
+sappy/PRT
+saprophyte/SM
+saprophytic
+sapsucker/SM
+sapwood/M
+saran/M
+sarcasm/MS
+sarcastic
+sarcastically
+sarcoma/MS
+sarcophagi
+sarcophagus/M
+sardine/MS
+sardonic
+sardonically
+sarge/MS
+sari/MS
+sarky
+sarnie/S
+sarong/SM
+sarsaparilla/MS
+sartorial/Y
+sash/MS
+sashay/SGMD
+sass/GMDS
+sassafras/MS
+sassy/RT
+sat
+satanic
+satanical/Y
+satanism/M
+satanist/MS
+satay
+satchel/MS
+sate/GDS
+sateen/M
+satellite/DSMG
+satiable/I
+satiate/GNDS
+satiation/M
+satiety/M
+satin/M
+satinwood/SM
+satiny
+satire/SM
+satiric
+satirical/Y
+satirist/SM
+satirize/DSG
+satisfaction/EM
+satisfactions
+satisfactorily/U
+satisfactory/U
+satisfied/U
+satisfy/EDSG
+satisfying/U
+satisfyingly
+satori/M
+satrap/SM
+satsuma/S
+saturate/DSGN
+saturated/U
+saturation/M
+saturnine
+satyr/MS
+satyriasis/M
+satyric
+sauce/MZGDRS
+saucepan/SM
+saucer/M
+saucily
+sauciness/M
+saucy/RPT
+sauerkraut/M
+sauna/MDSG
+saunter/MDGS
+saurian
+sauropod/SM
+sausage/MS
+saute/MS
+sauteed
+sauteing
+savage/DRSMYTGP
+savageness/M
+savagery/SM
+savanna/MS
+savant/SM
+save/BJMZGDRS
+saved/U
+saver/M
+saving/M
+savings/M
+saviour/MS
+savour/SGMD
+savouriness/M
+savoury/TRSMP
+savoy/MS
+savvy/DRSMTG
+saw/SGMD
+sawbones/M
+sawbuck/MS
+sawdust/M
+sawfly/SM
+sawhorse/SM
+sawmill/MS
+sawyer/SM
+sax/MS
+saxifrage/SM
+saxophone/MS
+saxophonist/SM
+say's
+say/USG
+saying/SM
+scab/MS
+scabbard/MS
+scabbed
+scabbiness/M
+scabbing
+scabby/PTR
+scabies/M
+scabrous
+scad/MS
+scaffold/SMG
+scaffolding/M
+scag/S
+scagged
+scalability
+scalar/S
+scalawag/MS
+scald/MDSG
+scale's
+scale/CGDS
+scaleless
+scalene
+scaliness/M
+scallion/MS
+scallop/GSMD
+scalp/MDRSZG
+scalpel/SM
+scalper/M
+scaly/RTP
+scam/MS
+scammed
+scammer/S
+scamming
+scamp/MRSZ
+scamper/GMD
+scampi/M
+scan/MS
+scandal/SM
+scandalize/DSG
+scandalmonger/SM
+scandalous/Y
+scandium/M
+scanned
+scanner/SM
+scanning
+scansion/M
+scant/CDSTG
+scanter
+scantily
+scantiness/M
+scantly
+scantness/M
+scanty/RSPT
+scapegoat/SGMD
+scapegrace/MS
+scapula/M
+scapulae
+scapular/SM
+scar/GMDS
+scarab/SM
+scarce/RYTP
+scarceness/M
+scarcity/SM
+scare/MS
+scarecrow/MS
+scaremonger/SMG
+scarf/MDSG
+scarification/M
+scarify/NDSG
+scarily
+scariness/M
+scarlatina/M
+scarlet/M
+scarp/MDRSZG
+scarper/DG
+scarred
+scarring
+scarves
+scary/RTP
+scat/MS
+scathing/Y
+scatological
+scatology/M
+scatted
+scatter/GJSMD
+scatterbrain/SMD
+scattering/M
+scattershot
+scatting
+scatty
+scavenge/ZGDRS
+scavenger/M
+scenario/MS
+scenarist/MS
+scene/MS
+scenery/M
+scenic
+scenically
+scent/CMS
+scented/U
+scenting
+scentless
+sceptre/MS
+sch
+schadenfreude
+schedule's
+schedule/ADSG
+scheduled/U
+scheduler/S
+schema
+schemata
+schematic/SM
+schematically
+schematize/GDS
+scheme/DRSMZG
+schemer/M
+scherzo/MS
+schilling/MS
+schism/SM
+schismatic/SM
+schist/M
+schistosomiasis
+schizo/SM
+schizoid/MS
+schizophrenia/M
+schizophrenic/SM
+schlemiel/SM
+schlep/SM
+schlepped
+schlepping
+schlock/M
+schmaltz/M
+schmaltzy/TR
+schmo/M
+schmoes
+schmooze/DRSZG
+schmuck/MS
+schnapps/M
+schnauzer/SM
+schnitzel/SM
+schnook/MS
+schnoz/MS
+schnozzle/SM
+scholar/MYS
+scholarship/MS
+scholastic
+scholastically
+scholasticism
+school/SGMD
+schoolbag/MS
+schoolbook/SM
+schoolboy/MS
+schoolchild/M
+schoolchildren/M
+schooldays
+schooled/U
+schoolfellow/SM
+schoolgirl/SM
+schoolhouse/SM
+schooling/M
+schoolkid/S
+schoolmarm/SM
+schoolmarmish
+schoolmaster/MS
+schoolmate/SM
+schoolmistress/MS
+schoolroom/SM
+schoolteacher/MS
+schoolwork/M
+schoolyard/SM
+schooner/SM
+schuss/GMDS
+schussboomer/MS
+schwa/MS
+sci
+sciatic
+sciatica/M
+science/FMS
+scientific/U
+scientifically/U
+scientist/SM
+scimitar/SM
+scintilla/MS
+scintillate/DSGN
+scintillation/M
+scion/MS
+scissor/GDS
+scleroses
+sclerosis/M
+sclerotic
+scoff/MDRSZG
+scoffer/M
+scofflaw/MS
+scold/MDSGJ
+scolding/M
+scoliosis/M
+sconce/SM
+scone/MS
+scoop/MDSG
+scoopful/MS
+scoot/DRSZG
+scooter/M
+scope/MGDS
+scorbutic
+scorch/MDRSZG
+scorcher/M
+score/MZGDRS
+scoreboard/SM
+scorecard/MS
+scorekeeper/MS
+scoreless
+scoreline/S
+scorer/M
+scorn/MDRSZG
+scorner/M
+scornful/Y
+scorpion/MS
+scotch/MDSG
+scotchs
+scoundrel/MS
+scour/DRSZG
+scourer/M
+scourge/DSMG
+scout/MDRSZG
+scouting/M
+scoutmaster/MS
+scow/MS
+scowl/MDSG
+scrabble/MZGDRS
+scrabbler/M
+scrag/MS
+scraggly/RT
+scraggy/TR
+scram/S
+scramble's
+scramble/UGDS
+scrambler/MS
+scrammed
+scramming
+scrap/MDRSZGJ
+scrapbook/SM
+scrape/SM
+scraper/M
+scrapheap/SM
+scrapie
+scrapped
+scrapper/MS
+scrapping
+scrappy/TR
+scrapyard/SM
+scratch/GMDS
+scratchcard/S
+scratched/U
+scratchily
+scratchiness/M
+scratchpad/S
+scratchy/PRT
+scrawl/SMDG
+scrawly
+scrawniness/M
+scrawny/PTR
+scream/SMDRZG
+screamer/M
+screaming/Y
+scree/MDS
+screech/GMDS
+screechy/TR
+screed/S
+screen/SJMDG
+screening/M
+screenplay/SM
+screensaver/SM
+screenshot/S
+screenwriter/SM
+screenwriting/M
+screw's
+screw/UDSG
+screwball/MS
+screwdriver/MS
+screwiness/M
+screwworm/SM
+screwy/PRT
+scribal
+scribble/MZGDRS
+scribbler/M
+scribe's
+scribe/CKIS
+scrim/MS
+scrimmage/MGDS
+scrimp/SDG
+scrimshaw/MDGS
+scrip/MS
+script/FSMDG
+scripted/U
+scriptural
+scripture/MS
+scriptwriter/SM
+scrivener/SM
+scrod/M
+scrofula/M
+scrofulous
+scrog/S
+scroll/GSMD
+scrooge/MS
+scrota
+scrotal
+scrotum/M
+scrounge/DRSZG
+scrounger/M
+scroungy/TR
+scrub/MS
+scrubbed
+scrubber/SM
+scrubbing
+scrubby/RT
+scruff/SM
+scruffily
+scruffiness/M
+scruffy/RPT
+scrum/S
+scrumhalf
+scrumhalves
+scrummage/S
+scrummed
+scrumming
+scrump/SGD
+scrumptious/Y
+scrumpy
+scrunch/MDSG
+scrunchy/SM
+scruple/MGDS
+scrupulosity/M
+scrupulous/UPY
+scrupulousness/UM
+scrutineer/S
+scrutinize/GDS
+scrutiny/M
+scuba/MDSG
+scud/MS
+scudded
+scudding
+scuff/MDSG
+scuffle/MGDS
+scull/MDRSZG
+sculler/M
+scullery/SM
+scullion/SM
+sculpt/SGD
+sculptor/SM
+sculptress/MS
+sculptural
+sculpture/DSMG
+scum/MS
+scumbag/MS
+scummed
+scumming
+scummy/TR
+scupper/MDGS
+scurf/M
+scurfy
+scurrility/M
+scurrilous/PY
+scurrilousness/M
+scurry/GDSM
+scurvily
+scurvy/TRM
+scutcheon/SM
+scuttle/MGDS
+scuttlebutt/M
+scuzzy/TR
+scythe/DSMG
+sea/SM
+seabed/SM
+seabird/MS
+seaboard/SM
+seaborne
+seacoast/SM
+seafarer/SM
+seafaring/M
+seafloor/SM
+seafood/M
+seafront/SM
+seagoing
+seagull/MS
+seahorse/MS
+seal's
+seal/AUSDG
+sealant/MS
+sealer/SM
+sealskin/M
+seam/GMDNS
+seaman/M
+seamanship/M
+seamless/Y
+seamount/MS
+seamstress/MS
+seamy/RT
+seance/SM
+seaplane/SM
+seaport/MS
+sear/GMDS
+search/AZGMDRS
+searchable/U
+searcher/AM
+searching/Y
+searchlight/MS
+searing/Y
+seascape/SM
+seashell/SM
+seashore/SM
+seasick/P
+seasickness/M
+seaside/MS
+season/SGMDBJ
+seasonable/U
+seasonably/U
+seasonal/Y
+seasonality
+seasoned/U
+seasoning/M
+seat's
+seat/UGDS
+seating/M
+seatmate/SM
+seawall/MS
+seaward/MS
+seawater/M
+seaway/SM
+seaweed/MS
+seaworthiness/M
+seaworthy/P
+sebaceous
+seborrhea/M
+sebum
+sec'y
+sec/SM
+secant/SM
+secateurs
+secede/DSG
+secession/M
+secessionist/MS
+seclude/GDS
+seclusion/M
+seclusive
+second/SLZGMDRY
+secondarily
+secondary/SM
+seconder/M
+secondhand
+secondment/S
+secrecy/M
+secret/SGVMDY
+secretarial
+secretariat/MS
+secretary/SM
+secretaryship/M
+secrete/XNS
+secretion/M
+secretive/PY
+secretiveness/M
+secretory
+sect/IMS
+sectarian/MS
+sectarianism/M
+sectary/SM
+section/AESM
+sectional/MS
+sectionalism/M
+sectioned
+sectioning
+sector/ESM
+secular
+secularism/M
+secularist/SM
+secularization/M
+secularize/DSG
+secure/DRSYTG
+secured/U
+security/ISM
+secy
+sedan/MS
+sedate/DRSYTGNVP
+sedateness/M
+sedation/M
+sedative/SM
+sedentary
+sedge/M
+sedgy
+sediment/MS
+sedimentary
+sedimentation/M
+sedition/M
+seditious
+seduce/DRSZG
+seducer/M
+seduction/SM
+seductive/YP
+seductiveness/M
+seductress/MS
+sedulous/Y
+see/RSMZ
+seed's
+seed/AGDS
+seedbed/MS
+seedcase/MS
+seeded/U
+seeder/SM
+seediness/M
+seedless
+seedling/MS
+seedpod/MS
+seedy/RPT
+seeing/S
+seek/ZGRS
+seeker/M
+seem/GDS
+seeming/Y
+seemliness/UM
+seemly/URTP
+seen/U
+seep/GDS
+seepage/M
+seer/M
+seersucker/M
+seesaw/SMDG
+seethe/DSG
+segfault/S
+segment/GSMD
+segmentation/M
+segmented/U
+segregate/CDSGN
+segregated/U
+segregation/CM
+segregationist/MS
+segue/MGDS
+segueing
+seigneur/SM
+seignior/SM
+seine/MZGDRS
+seiner/M
+seismic
+seismically
+seismograph/ZMR
+seismographer/M
+seismographic
+seismographs
+seismography/M
+seismologic
+seismological
+seismologist/MS
+seismology/M
+seize/GDS
+seizure/MS
+seldom
+select/CSGVD
+selection/SM
+selective/Y
+selectivity/M
+selectman/M
+selectmen
+selectness/M
+selector/MS
+selenium/M
+selenographer/MS
+selenography/M
+self/M
+selfie/SM
+selfish/UYP
+selfishness/UM
+selfless/PY
+selflessness/M
+selfsame
+sell's
+sell/AZGRS
+seller's
+selloff/MS
+sellotape/DSG
+sellout/MS
+seltzer/MS
+selvage/MS
+selves
+semantic/S
+semantically
+semanticist/MS
+semantics/M
+semaphore/DSMG
+semblance/ASM
+semen/M
+semester/SM
+semi/MS
+semiannual/Y
+semiarid
+semiautomatic/MS
+semibreve/S
+semicircle/SM
+semicircular
+semicolon/MS
+semiconducting
+semiconductor/MS
+semiconscious
+semidarkness/M
+semidetached
+semifinal/SM
+semifinalist/MS
+semigloss/S
+semimonthly/SM
+seminal
+seminar/MS
+seminarian/SM
+seminary/SM
+semiofficial
+semiotic/S
+semiotics/M
+semipermeable
+semiprecious
+semiprivate
+semipro/S
+semiprofessional/SM
+semiquaver/S
+semiretired
+semiskilled
+semisolid
+semisweet
+semitone/SM
+semitrailer/MS
+semitransparent
+semitropical
+semivowel/SM
+semiweekly/SM
+semiyearly
+semolina/M
+sempstress/MS
+senate/SM
+senator/MS
+senatorial
+send/ZGRS
+sender/M
+sendoff/MS
+senescence/M
+senescent
+senile
+senility/M
+senior/SM
+seniority/M
+senna/M
+senor/MS
+senora/SM
+senorita/SM
+sensation/MS
+sensational/Y
+sensationalism/M
+sensationalist/MS
+sensationalize/GDS
+sense/MGDS
+senseless/PY
+senselessness/M
+sensibilities
+sensibility/IM
+sensible/P
+sensibleness/M
+sensibly/I
+sensitive/SMYP
+sensitiveness/M
+sensitivities
+sensitivity/IM
+sensitization/CM
+sensitize/CDSG
+sensor/SM
+sensory
+sensual/Y
+sensualist/SM
+sensuality/M
+sensuous/YP
+sensuousness/M
+sent/FAU
+sentence/MGDS
+sententious/Y
+sentience/IM
+sentient/I
+sentiment/SM
+sentimental/Y
+sentimentalism/M
+sentimentalist/MS
+sentimentality/M
+sentimentalization/M
+sentimentalize/GDS
+sentinel/MS
+sentry/SM
+sepal/MS
+separability/IM
+separable
+separably/I
+separate/XMYGNVDSP
+separateness/M
+separation/M
+separatism/M
+separatist/MS
+separator/MS
+sepia/M
+sepsis/M
+septa
+septal
+septet/SM
+septic
+septicemia/M
+septicemic
+septuagenarian/MS
+septum/M
+sepulchral
+sepulchre/MGDS
+seq
+sequel/SM
+sequence/MZGDRS
+sequencing/M
+sequential/FY
+sequester/SDG
+sequestrate/XGNDS
+sequestration/M
+sequin/SMD
+sequinned
+sequitur
+sequoia/MS
+seraglio/MS
+serape/SM
+seraph/M
+seraphic
+seraphs
+sere/TR
+serenade/MGDS
+serendipitous
+serendipity/M
+serene/RPYT
+sereneness/M
+serenity/M
+serf/MS
+serfdom/M
+serge/M
+sergeant/MS
+serial/SMY
+serialization/SM
+serialize/GDSB
+series/M
+serif/MS
+serigraph/M
+serigraphs
+serine
+serious/PY
+seriousness/M
+sermon/SM
+sermonize/GDS
+serology/M
+serotonin
+serous
+serpent/MS
+serpentine/M
+serrate/XND
+serration/M
+serried
+serum/MS
+servant/MS
+serve's/AF
+serve/FACGDS
+server/SM
+servery/S
+service/EMS
+serviceability/M
+serviceable
+serviced
+serviceman/M
+servicemen
+servicewoman/M
+servicewomen
+servicing
+serviette/MS
+servile
+servility/M
+serving's
+servings
+servitor/MS
+servitude/M
+servo/MS
+servomechanism/SM
+servomotor/MS
+sesame/SM
+sesquicentennial/MS
+session/MS
+set/AISM
+setback/MS
+setscrew/SM
+setsquare/S
+sett/BJZGRS
+settee/MS
+setter/M
+setting/M
+settle's
+settle/AUGDS
+settlement/AM
+settlements
+settler/SM
+setup/MS
+seven/MHS
+seventeen/SMH
+seventeenth/M
+seventeenths
+seventh/M
+sevenths
+seventieth/M
+seventieths
+seventy/SMH
+sever/ETGDS
+several/MY
+severance/SM
+severe/YPR
+severeness/M
+severity/M
+sew/ASGD
+sewage/M
+sewer/MS
+sewerage/M
+sewing/M
+sewn/A
+sex/GMDS
+sexagenarian/SM
+sexily
+sexiness/M
+sexism/M
+sexist/MS
+sexless
+sexologist/SM
+sexology/M
+sexpot/MS
+sextant/SM
+sextet/MS
+sexting
+sexton/MS
+sextuplet/SM
+sexual/Y
+sexuality/M
+sexy/PTR
+sf
+sh
+shabbily
+shabbiness/M
+shabby/PTR
+shack/MDSG
+shackle's
+shackle/UGDS
+shad/GMDSJ
+shade/MS
+shadily
+shadiness/M
+shading/M
+shadow/SGMD
+shadowbox/GDS
+shadowy/RT
+shady/RPT
+shaft/MDSG
+shag/MS
+shagged
+shagginess/M
+shagging
+shaggy/TPR
+shah/M
+shahs
+shake/MZGRS
+shakedown/SM
+shaken/U
+shakeout/MS
+shaker/M
+shakeup/MS
+shakily
+shakiness/M
+shaky/RPT
+shale/M
+shall
+shallot/MS
+shallow/TPMRYS
+shallowness/M
+shalom
+shalt
+sham/GMDS
+shaman/SM
+shamanic
+shamanism
+shamanistic
+shamble/MGDS
+shambles/M
+shambolic
+shame/MS
+shamefaced/Y
+shameful/PY
+shamefulness/M
+shameless/YP
+shamelessness/M
+shammed
+shamming
+shampoo/ZGMDRS
+shampooer/M
+shamrock/MS
+shan't
+shandy/S
+shanghai/DSG
+shank/MS
+shantung/M
+shanty/SM
+shantytown/SM
+shape's
+shape/AGDS
+shaped/U
+shapeless/YP
+shapelessness/M
+shapeliness/M
+shapely/PTR
+shard/MS
+share/MZGDRS
+shareable
+sharecrop/S
+sharecropped
+sharecropper/MS
+sharecropping
+shareholder/SM
+shareholding/S
+sharer/M
+shareware/M
+sharia/M
+shariah
+shark/MDSG
+sharkskin/M
+sharp/MDNRYSPXZTG
+sharpen/ADGS
+sharpener/MS
+sharper/M
+sharpie/MS
+sharpish
+sharpness/M
+sharpshooter/SM
+sharpshooting/M
+shatter/GMDS
+shatterproof
+shave/MZGDRSJ
+shaven/U
+shaver/M
+shaving/M
+shawl/MS
+shay/MS
+she'd
+she'll
+she/DSM
+sheaf/M
+shear/MDRSZG
+shearer/M
+sheath/JM
+sheathe/UGDS
+sheathing/M
+sheaths
+sheave/DSMG
+shebang/MS
+shebeen/S
+shed/MS
+shedding
+sheen/M
+sheeny/TR
+sheep/M
+sheepdog/MS
+sheepfold/SM
+sheepherder/MS
+sheepish/YP
+sheepishness/M
+sheepskin/MS
+sheer/MDRSPTG
+sheerness/M
+sheet/MSG
+sheeting/M
+sheetlike
+sheik/MS
+sheikdom/MS
+sheila/S
+shekel/SM
+shelf/M
+shell/MDRSG
+shellac/MS
+shellacked
+shellacking/MS
+shellfire/M
+shellfish/MS
+shelter/GMDS
+shelve/GDS
+shelving/M
+shenanigan/SM
+shepherd/SMDG
+shepherdess/MS
+sherbet/SM
+sheriff/SM
+sherry/SM
+shew/GDS
+shewn
+shh
+shiatsu/M
+shibboleth/M
+shibboleths
+shield/MDGS
+shift/GMDS
+shiftily
+shiftiness/M
+shiftless/PY
+shiftlessness/M
+shifty/RPT
+shiitake/SM
+shill/GMDSJ
+shillelagh/M
+shillelaghs
+shilling/M
+shim/MS
+shimmed
+shimmer/SMDG
+shimmery
+shimming
+shimmy/DSMG
+shin/ZGMDRS
+shinbone/SM
+shindig/SM
+shine/MS
+shiner/M
+shingle/DSMG
+shinguard/M
+shininess/M
+shinned
+shinning
+shinny/DSG
+shinsplints/M
+shiny/TRP
+ship's
+ship/ALS
+shipboard/MS
+shipbuilder/SM
+shipbuilding/M
+shipload/SM
+shipmate/SM
+shipment/AM
+shipments
+shipowner/MS
+shipped/A
+shipper/SM
+shipping/M
+shipshape
+shipwreck/GMDS
+shipwright/MS
+shipyard/SM
+shire/MS
+shirk/ZGDRS
+shirker/M
+shirr/GMDSJ
+shirring/M
+shirt/GMDS
+shirtfront/SM
+shirting/M
+shirtless
+shirtsleeve/SM
+shirttail/SM
+shirtwaist/MS
+shirty
+shit/SM!
+shitfaced/!
+shithead/S!
+shitload/!
+shitted/!
+shitting/!
+shitty/RT!
+shiv/ZMRS
+shiver/MDG
+shivery
+shoal/GMDS
+shoat/MS
+shock/ZGMDRS
+shocker/M
+shocking/Y
+shockproof
+shod/U
+shoddily
+shoddiness/M
+shoddy/PRMT
+shoe/MS
+shoehorn/GMDS
+shoeing
+shoelace/MS
+shoemaker/SM
+shoeshine/SM
+shoestring/SM
+shoetree/MS
+shogun/MS
+shogunate/M
+shone
+shoo/GDS
+shook
+shoot/ZGMRSJ
+shooter/M
+shooting/M
+shootout/MS
+shop/MS
+shopaholic/MS
+shopfitter/S
+shopfitting
+shopfront/S
+shopkeeper/MS
+shoplift/DRZGS
+shoplifter/M
+shoplifting/M
+shoppe/MZGDRS
+shopper/M
+shopping/M
+shoptalk/M
+shopworn
+shore/MGDS
+shorebird/SM
+shoreline/MS
+shoring/M
+short/XTGMDNRYSP
+shortage/MS
+shortbread/M
+shortcake/MS
+shortchange/DSG
+shortcoming/MS
+shortcrust
+shortcut/MS
+shorten/JGD
+shortening/M
+shortfall/MS
+shorthand/MD
+shorthorn/MS
+shortish
+shortlist/DGS
+shortness/M
+shortsighted/PY
+shortsightedness/M
+shortstop/MS
+shortwave/MS
+shorty/SM
+shot/MS
+shotgun/SM
+shotgunned
+shotgunning
+should
+should've
+shoulder/MDGS
+shouldn't
+shout/ZGMDRS
+shouter/M
+shove/MGDS
+shovel/MS
+shovelful/SM
+shovelled
+shovelling
+show/JZGMDRS
+showbiz/M
+showboat/MDGS
+showcase/MGDS
+showdown/MS
+shower/MDG
+showerproof
+showery
+showgirl/MS
+showground/S
+showily
+showiness/M
+showing/M
+showjumping
+showman/M
+showmanship/M
+showmen
+shown
+showoff/SM
+showpiece/SM
+showplace/SM
+showroom/MS
+showstopper/MS
+showstopping
+showtime
+showy/TRP
+shpt
+shrank
+shrapnel/M
+shred/MS
+shredded
+shredder/MS
+shredding
+shrew/MS
+shrewd/RYPT
+shrewdness/M
+shrewish
+shriek/MDSG
+shrift/M
+shrike/MS
+shrill/DRSPTG
+shrillness/M
+shrilly
+shrimp/MDRSZG
+shrine/MS
+shrink/MSBG
+shrinkage/M
+shrive/GDS
+shrivel/S
+shrivelled
+shrivelling
+shriven
+shroud/GMDS
+shrub/MS
+shrubbery/SM
+shrubby/RT
+shrug/MS
+shrugged
+shrugging
+shrunk/N
+shtick/MS
+shuck/GMDS
+shucks/S
+shudder/MDSG
+shuffle/AMGDS
+shuffleboard/SM
+shuffler/SM
+shun/S
+shunned
+shunning
+shunt/MSDG
+shush/DSG
+shut/S
+shutdown/SM
+shuteye/M
+shutoff/SM
+shutout/SM
+shutter/SMDG
+shutterbug/MS
+shutting
+shuttle/DSMG
+shuttlecock/GMDS
+shy/TGDRSMY
+shyer
+shyest
+shyness/M
+shyster/SM
+sibilant/SM
+sibling/SM
+sibyl/MS
+sibylline
+sic/S
+sicced
+siccing
+sick/PXTGDNRYS
+sickbay/S
+sickbed/SM
+sicken/DG
+sickening/Y
+sickie/MS
+sickish
+sickle/MS
+sickly/RT
+sickness/MS
+sicko/MS
+sickout/SM
+sickroom/MS
+side's
+side/AGDS
+sidearm/SM
+sidebar/SM
+sideboard/SM
+sideburns/M
+sidecar/SM
+sidekick/SM
+sidelight/MS
+sideline/DSMG
+sidelong
+sideman/M
+sidemen
+sidepiece/MS
+sidereal
+sidesaddle/MS
+sideshow/MS
+sidesplitting
+sidestep/MS
+sidestepped
+sidestepping
+sidestroke/DSMG
+sideswipe/DSMG
+sidetrack/SMDG
+sidewalk/MS
+sidewall/MS
+sideways
+sidewinder/SM
+siding/MS
+sidle/MGDS
+siege/MS
+sienna/M
+sierra/MS
+siesta/MS
+sieve/MGDS
+sift/ZGDRS
+sifted/U
+sifter/M
+sigh/GMD
+sighs
+sight/GMDYSJ
+sighting/M
+sightless
+sightly/UTR
+sightread
+sightseeing/M
+sightseer/MS
+sigma/MS
+sign's/C
+sign/AFCGDS
+signage/M
+signal/MYS
+signalization/M
+signalize/GDS
+signalled
+signaller/MS
+signalling
+signalman/M
+signalmen
+signatory/SM
+signature/MS
+signboard/MS
+signed/U
+signer/CMS
+signet/MS
+significance/IM
+significant/IY
+signification/M
+signify/XDSNG
+signing's/C
+signings
+signor/FMS
+signora/SM
+signore
+signori
+signorina/MS
+signorine
+signpost/GSMD
+silage/M
+silence/DRSMZG
+silencer/M
+silent/MRYST
+silhouette/DSMG
+silica/M
+silicate/MS
+siliceous
+silicon/SM
+silicone/M
+silicosis/M
+silk/MNS
+silkily
+silkiness/M
+silkscreen/SM
+silkworm/MS
+silky/TRP
+sill/MS
+silliness/M
+silly/TRSMP
+silo/MS
+silt/GMDS
+silty/TR
+silver/GMDS
+silverfish/MS
+silversmith/M
+silversmiths
+silverware/M
+silvery
+sim/SM
+simian/MS
+similar/Y
+similarity/ESM
+simile/MS
+similitude/EM
+simmer/GMDS
+simonize/DSG
+simony/M
+simpatico
+simper/GMDS
+simpering/Y
+simple/TRP
+simpleminded
+simpleness/M
+simpleton/SM
+simplex
+simplicity/M
+simplification/M
+simplify/DSXNG
+simplistic
+simplistically
+simply
+simulacra
+simulacrum/S
+simulate/EDSGN
+simulation/EM
+simulations
+simulator/EMS
+simulcast/GMDS
+simultaneity/M
+simultaneous/Y
+sin/ASM
+since
+sincere/IYT
+sincerer
+sincerity/IM
+sine/MS
+sinecure/MS
+sinew/MS
+sinewy
+sinful/PY
+sinfulness/M
+sing/BZGMDRYS
+singalong/S
+singe/MS
+singeing
+singer/M
+singing/M
+single/PMGDS
+singleness/M
+singles/M
+singlet/S
+singleton/SM
+singletree/SM
+singsong/SMDG
+singular/SMY
+singularity/SM
+sinister
+sink/BZGMRS
+sinkable/U
+sinker/M
+sinkhole/SM
+sinless
+sinned
+sinner/MS
+sinning
+sinology
+sinuosity/M
+sinuous/Y
+sinus/MS
+sinusitis/M
+sinusoidal
+sip/SM
+siphon/GMDS
+sipped
+sipper/SM
+sipping
+sir/SXMN
+sire/CMGDS
+siren/M
+sirloin/SM
+sirocco/SM
+sirrah
+sirree/M
+sis/MS
+sisal/M
+sissified
+sissy/RSMT
+sister/ASM
+sisterhood/MS
+sisterliness/M
+sisterly/P
+sit/S
+sitar/SM
+sitarist/MS
+sitcom/SM
+site/MGDS
+sitemap/SM
+sitter/SM
+sitting/SM
+situ
+situate/DSXGN
+situation/M
+situational
+six/MSH
+sixfold
+sixpence/MS
+sixshooter/M
+sixteen/SMH
+sixteenth/M
+sixteenths
+sixth/M
+sixths
+sixtieth/M
+sixtieths
+sixty/SMH
+sizable
+size's
+size/AGDS
+sizer
+sizing/M
+sizzle/DRSMZG
+ska/M
+skate/MZGDRS
+skateboard/MDRSZG
+skateboarder/M
+skateboarding/M
+skater/M
+skating/M
+skedaddle/MGDS
+skeet/ZMR
+skein/MS
+skeletal
+skeleton/SM
+skeptic/SM
+skeptical/Y
+skepticism/M
+sketch/MDRSZG
+sketchbook/S
+sketcher/M
+sketchily
+sketchiness/M
+sketchpad/S
+sketchy/RTP
+skew/MDRZGS
+skewbald/S
+skewer/MDG
+ski/SZGMDR
+skibob/S
+skid/MS
+skidded
+skidding
+skidpan/S
+skier/M
+skiff/SM
+skiffle
+skiing/M
+skilful/YP
+skilfulness/M
+skill's
+skill/CSD
+skilled/U
+skillet/SM
+skim/MS
+skimmed
+skimmer/SM
+skimming
+skimp/SDG
+skimpily
+skimpiness/M
+skimpy/RTP
+skin/MS
+skincare/M
+skinflint/MS
+skinful
+skinhead/MS
+skinless
+skinned
+skinniness/M
+skinning
+skinny/RMTP
+skint
+skintight
+skip/MS
+skipped
+skipper/SMDG
+skipping
+skirmish/ZGMDRS
+skirt/SMDG
+skit/MS
+skitter/GSD
+skittish/YP
+skittishness/M
+skittle/S
+skive/DRSZG
+skivvy/DSMG
+skoal/SM
+skua/S
+skulduggery/M
+skulk/SDRZG
+skulker/M
+skull/SM
+skullcap/MS
+skunk/SMDG
+sky/GSM
+skycap/SM
+skydive/DRSZG
+skydiver/M
+skydiving/M
+skyjack/JZGSDR
+skyjacker/M
+skyjacking/M
+skylark/SGMD
+skylight/MS
+skyline/SM
+skyrocket/GSMD
+skyscraper/SM
+skyward/S
+skywriter/SM
+skywriting/M
+slab/MS
+slabbed
+slabbing
+slack/PXZTGMDNRYS
+slacken/DG
+slacker/M
+slackness/M
+slacks/M
+slag/MS
+slagged
+slagging
+slagheap/S
+slain
+slake/GDS
+slalom/MSDG
+slam/MS
+slammed
+slammer/SM
+slamming
+slander/MZGDRS
+slanderer/M
+slanderous
+slang/M
+slangy/RT
+slant/MSDG
+slanting/Y
+slantwise
+slap/MS
+slapdash
+slaphappy
+slapped
+slapper/S
+slapping
+slapstick/M
+slash/MDRSZG
+slasher/M
+slat/MDGS
+slate/SM
+slather/SDG
+slatted
+slattern/SMY
+slaughter/MDRZGS
+slaughterer/M
+slaughterhouse/MS
+slave/DRSMZG
+slaveholder/MS
+slaver/MDG
+slavery/M
+slavish/PY
+slavishness/M
+slaw/M
+slay/DRZGJS
+slayer/M
+slaying/M
+sleaze/SM
+sleazebag/S
+sleazeball/S
+sleazily
+sleaziness/M
+sleazy/PRT
+sled/MS
+sledded
+sledder/SM
+sledding
+sledge/DSMG
+sledgehammer/GSMD
+sleek/SDRYTGP
+sleekness/M
+sleep/SMRZG
+sleeper/M
+sleepily
+sleepiness/M
+sleepless/PY
+sleeplessness/M
+sleepover/SM
+sleepwalk/ZGSDR
+sleepwalker/M
+sleepwalking/M
+sleepwear/M
+sleepy/RPT
+sleepyhead/MS
+sleet/SMDG
+sleety
+sleeve/DSM
+sleeveless
+sleigh/MDG
+sleighs
+sleight/SM
+slender/PRT
+slenderize/DSG
+slenderness/M
+slept
+sleuth/MG
+sleuths
+slew/MDGS
+slice/DRSMZG
+slicer/M
+slick/SMDRYZTGP
+slicker/M
+slickness/M
+slid
+slide/RSMZG
+slider/M
+slideshow/MS
+slight/SMDRYTGP
+slightness/M
+slim/PS
+slime/M
+sliminess/M
+slimline
+slimmed
+slimmer/S
+slimmest
+slimming/M
+slimness/M
+slimy/RTP
+sling/SMG
+slingback/S
+slingshot/SM
+slink/SG
+slinky/RT
+slip/MS
+slipcase/MS
+slipcover/MS
+slipknot/MS
+slippage/MS
+slipped
+slipper/SM
+slipperiness/M
+slippery/PRT
+slipping
+slippy
+slipshod
+slipstream/SM
+slipway/SM
+slit/MS
+slither/SGMD
+slithery
+slitter
+slitting
+sliver/GSMD
+slob/MS
+slobbed
+slobber/MDSG
+slobbery
+slobbing
+sloe/MS
+slog/MS
+slogan/SM
+sloganeering
+slogged
+slogging
+sloop/SM
+slop/MDGS
+slope/SM
+slopped
+sloppily
+sloppiness/M
+slopping
+sloppy/PTR
+slops/M
+slosh/DSG
+slot/MS
+sloth/M
+slothful/YP
+slothfulness/M
+sloths
+slotted
+slotting
+slouch/ZGMDRS
+sloucher/M
+slouchy/TR
+slough/GMD
+sloughs
+sloven/SMY
+slovenliness/M
+slovenly/PTR
+slow/DRYTGSP
+slowcoach/S
+slowdown/SM
+slowness/M
+slowpoke/SM
+sludge/M
+sludgy/RT
+slue/MGDS
+slug/MS
+sluggard/MS
+slugged
+slugger/SM
+slugging
+sluggish/PY
+sluggishness/M
+sluice/DSMG
+slum/MS
+slumber/GSMD
+slumberous
+slumdog/SM
+slumlord/MS
+slummed
+slummer
+slumming
+slummy/RT
+slump/SMDG
+slung
+slunk
+slur/MS
+slurp/SMDG
+slurred
+slurring
+slurry/M
+slush/M
+slushiness/M
+slushy/RPT
+slut/MS
+sluttish
+slutty/RT
+sly/Y
+slyer
+slyest
+slyness/M
+smack/SMDRZG
+smacker/M
+small/SMRTP
+smallholder/S
+smallholding/S
+smallish
+smallness/M
+smallpox/M
+smarmy/RT
+smart/SMDNRYXTGP
+smarten/DG
+smartness/M
+smartphone/SM
+smarts/M
+smartwatch/MS
+smarty/SM
+smartypants/M
+smash/MDRSZG
+smasher/M
+smashup/SM
+smattering/MS
+smear/SMDG
+smeary/RT
+smell/SMDG
+smelliness/M
+smelly/RPT
+smelt/SMDRZG
+smelter/M
+smidgen/MS
+smilax/M
+smile/DSMG
+smiley/SM
+smiling/Y
+smirch/GMDS
+smirk/SMDG
+smite/SG
+smith/M
+smithereens/M
+smiths
+smithy/SM
+smitten
+smock/SMDG
+smocking/M
+smog/MS
+smoggy/RT
+smoke/DRSMZG
+smokehouse/MS
+smokeless
+smoker/M
+smokescreen/SM
+smokestack/SM
+smokey
+smokiness/M
+smoking/M
+smoky/RTP
+smooch/MDSG
+smoochy
+smooth/PDRYTG
+smoothie/MS
+smoothness/M
+smooths
+smorgasbord/SM
+smote
+smother/GSMD
+smoulder/GMDS
+smudge/DSMG
+smudgy/TR
+smug/YP
+smugger
+smuggest
+smuggle/ZGDRS
+smuggler/M
+smuggling/M
+smugness/M
+smurf/S
+smut/MS
+smuttiness/M
+smutty/TRP
+snack/SMDG
+snaffle/DSMG
+snafu/SM
+snag/MS
+snagged
+snagging
+snail/SMDG
+snake/DSMG
+snakebite/MS
+snakelike
+snakeskin
+snaky/RT
+snap's
+snap/US
+snapdragon/SM
+snapped/U
+snapper/MS
+snappily
+snappiness/M
+snapping/U
+snappish/YP
+snappishness/M
+snappy/TRP
+snapshot/SM
+snare/DSMG
+snarf/SDG
+snark/S
+snarky/TR
+snarl's
+snarl/USDG
+snarling/Y
+snarly/TR
+snatch/ZGMDRS
+snatcher/M
+snazzily
+snazzy/TR
+sneak/SMDRZG
+sneaker/M
+sneakily
+sneakiness/M
+sneaking/Y
+sneaky/TRP
+sneer/SJMDG
+sneering/Y
+sneeze/DSMG
+snick/SDRZG
+snicker/MDG
+snide/RYT
+sniff/SMDRZG
+sniffer/M
+sniffle/DSMG
+sniffy/RT
+snifter/SM
+snip/MDRZGS
+snipe/SM
+sniper/M
+snipped
+snippet/SM
+snipping
+snippy/RT
+snips/M
+snit/MS
+snitch/MDSG
+snivel/SM
+snivelled
+sniveller/SM
+snivelling
+snob/MS
+snobbery/M
+snobbish/PY
+snobbishness/M
+snobby/RT
+snog/S
+snogged
+snogging
+snood/SM
+snooker/MDSG
+snoop/SMDRZG
+snooper/M
+snoopy/TR
+snoot/SM
+snootily
+snootiness/M
+snooty/PTR
+snooze/DSMG
+snore/DRSMZG
+snorer/M
+snorkel/ZMRS
+snorkeler/M
+snorkeling's
+snorkelled
+snorkelling
+snort/SMDRZG
+snorter/M
+snot/MS
+snottily
+snottiness/M
+snotty/TPR
+snout/SM
+snow/MDGS
+snowball/GSMD
+snowbank/SM
+snowbird/SM
+snowblower/MS
+snowboard/ZGMDRS
+snowboarder/M
+snowboarding/M
+snowbound
+snowdrift/SM
+snowdrop/SM
+snowfall/SM
+snowfield/SM
+snowflake/SM
+snowiness/M
+snowline
+snowman/M
+snowmen
+snowmobile/DSMG
+snowplow/SGMD
+snowshoe/DSM
+snowshoeing
+snowstorm/SM
+snowsuit/SM
+snowy/PRT
+snub/MS
+snubbed
+snubbing
+snuff/SMDRYZG
+snuffbox/MS
+snuffer/M
+snuffle/MGDS
+snug/MYSP
+snugged
+snugger
+snuggest
+snugging
+snuggle/MGDS
+snugness/M
+so
+soak/MDGSJ
+soaking/M
+soap/MDGS
+soapbox/MS
+soapiness/M
+soapstone/M
+soapsuds/M
+soapy/RPT
+soar/MDGS
+sob/SM
+sobbed
+sobbing/Y
+sober/SDRYPTG
+soberness/M
+sobriety/IM
+sobriquet/SM
+soc
+soccer/M
+sociability/M
+sociable/SM
+sociably
+social/SMY
+socialism/M
+socialist/SM
+socialistic
+socialite/SM
+socialization/M
+socialize/DSG
+societal
+society/SM
+socioeconomic
+socioeconomically
+sociological/Y
+sociologist/SM
+sociology/M
+sociopath/M
+sociopaths
+sociopolitical
+sock/MDGS
+socket/SM
+sockeye/SM
+sod/SM
+soda/MS
+sodded
+sodden/Y
+sodding
+sodium/M
+sodomite/MS
+sodomize/GDS
+sodomy/M
+soever
+sofa/MS
+soft/NRYXTP
+softback
+softball/MS
+softbound
+softcover
+soften/DRZG
+softener/M
+softhearted
+softness/M
+software/M
+softwood/SM
+softy/SM
+soggily
+sogginess/M
+soggy/RTP
+soigne
+soignee
+soil/MDGS
+soiled/U
+soiree/SM
+sojourn/ZGMDRS
+sojourner/M
+sol/SM
+solace/DSMG
+solar
+solaria
+solarium/M
+sold
+solder/ZGSMDR
+solderer/M
+soldier/MDYSG
+soldiery/M
+sole/FSDGM
+solecism/SM
+solely
+solemn/PTRY
+solemness/M
+solemnify/DSG
+solemnity/SM
+solemnization/M
+solemnize/DSG
+solemnness/M
+solenoid/MS
+solicit/GDS
+solicitation/SM
+solicited/U
+solicitor/SM
+solicitous/PY
+solicitousness/M
+solicitude/M
+solid/PSMRYT
+solidarity/M
+solidi
+solidification/M
+solidify/DSNG
+solidity/M
+solidness/M
+solidus/M
+soliloquies
+soliloquize/DSG
+soliloquy/M
+solipsism/M
+solipsistic
+solitaire/MS
+solitariness/M
+solitary/SMP
+solitude/M
+solo/MDGS
+soloist/MS
+solstice/MS
+solubility/IM
+soluble/MS
+solute's
+solute/AXN
+solutes
+solution's/AE
+solvable/IU
+solve/EADSG
+solved/U
+solvency/IM
+solvent/IMS
+solver/SM
+somatic
+somatosensory
+sombre/PY
+sombreness/M
+sombrero/MS
+some
+somebody/SM
+someday
+somehow
+someone/MS
+someplace
+somersault/MDGS
+somerset/SM
+somersetted
+somersetting
+something/SM
+sometime/S
+someway/S
+somewhat/S
+somewhere
+somnambulism/M
+somnambulist/SM
+somnolence/M
+somnolent
+son/SM
+sonar/SM
+sonata/SM
+sonatina/SM
+song/MS
+songbird/SM
+songbook/SM
+songfest/SM
+songster/MS
+songstress/MS
+songwriter/SM
+songwriting
+sonic
+sonnet/SM
+sonny/SM
+sonogram/SM
+sonority/M
+sonorous/YP
+sonorousness/M
+sonsofbitches
+soon/RT
+soot/M
+sooth/MDRSZG
+soothe
+soother/M
+soothing/Y
+soothsayer/MS
+soothsaying/M
+sooty/RT
+sop/SM
+soph
+sophism/M
+sophist/MS
+sophistic
+sophistical
+sophisticate/DSMGN
+sophisticated/U
+sophistication/M
+sophistry/SM
+sophomore/MS
+sophomoric
+soporific/MS
+soporifically
+sopped
+sopping
+soppy/RT
+soprano/MS
+sorbet/SM
+sorcerer/MS
+sorceress/MS
+sorcery/M
+sordid/PY
+sordidness/M
+sore/MYTRSP
+sorehead/MS
+soreness/M
+sorghum/M
+sorority/SM
+sorrel/SM
+sorrily
+sorriness/M
+sorrow/SMDG
+sorrowful/YP
+sorrowfulness/M
+sorry/RTP
+sort/FASGDM
+sorta
+sorted/U
+sorter/SM
+sortie/DSM
+sortieing
+sot/SM
+sottish
+sou'wester
+sou/SMH
+souffle/SM
+sough/MDG
+soughs
+sought/U
+souk/S
+soul/MS
+soulful/YP
+soulfulness/M
+soulless/YP
+soulmate/SM
+sound/JPSMDRYZTG
+soundalike/S
+soundbar/S
+soundbite/S
+soundboard/MS
+soundcheck/S
+sounder/M
+sounding/M
+soundless/Y
+soundness/UM
+soundproof/GDS
+soundproofing/M
+soundscape/S
+soundtrack/SM
+soup/MDGS
+soupcon/MS
+soupy/RT
+sour/MDRYTGSP
+source/ADSMG
+sourdough/M
+sourdoughs
+sourish
+sourness/M
+sourpuss/MS
+sousaphone/MS
+souse/DSMG
+south/M
+southbound
+southeast/ZMR
+southeaster/MY
+southeastern
+southeastward/S
+southerly/SM
+southern/SZMR
+southerner/M
+southernmost
+southpaw/SM
+southward/MS
+southwest/ZMR
+southwester/MY
+southwestern
+southwestward/S
+souvenir/SM
+sovereign/SM
+sovereignty/M
+soviet/SM
+sow's
+sow/ASGD
+sower/SM
+sown/A
+soy/M
+soybean/MS
+sozzled
+spa/SM
+space/DRSMZG
+spacecraft/MS
+spaceflight/MS
+spaceman/M
+spacemen
+spaceport/SM
+spacer/M
+spaceship/SM
+spacesuit/SM
+spacetime
+spacewalk/SGMD
+spacewoman/M
+spacewomen
+spacey
+spacial
+spacier
+spaciest
+spaciness/M
+spacing/M
+spacious/YP
+spaciousness/M
+spade/DSMG
+spadeful/MS
+spadework/M
+spadices
+spadix/M
+spaghetti/M
+spake
+spam/MS
+spammed
+spammer/SM
+spamming
+span/MS
+spandex/M
+spangle/DSMG
+spangly
+spaniel/SM
+spank/SMDGJ
+spanking/M
+spanned
+spanner/SM
+spanning
+spar/MS
+spare/DRSMYTGP
+spareness/M
+spareribs/M
+sparing/UY
+spark/SMDYG
+sparkle/DRSMZG
+sparkler/M
+sparky/RT
+sparred
+sparring
+sparrow/SM
+sparrowhawk/S
+sparse/RYTP
+sparseness/M
+sparsity/M
+spartan
+spasm/SM
+spasmodic
+spasmodically
+spastic/SM
+spat/MS
+spate/SM
+spathe/SM
+spatial/Y
+spatted
+spatter/SGMD
+spatting
+spatula/SM
+spavin/MD
+spawn/SMDG
+spay/DGS
+speak/SRZGJ
+speakeasy/SM
+speaker/M
+speakerphone/S
+spear/SMDG
+spearfish/GMDS
+speargun
+spearhead/GMDS
+spearmint/M
+spec/MS
+special/SMY
+specialism/S
+specialist/MS
+specialization/MS
+specialize/GDS
+specialty/SM
+specie/SM
+species/M
+specif
+specifiable
+specific/MS
+specifically
+specification/M
+specificity/M
+specified/U
+specify/XNZDRSG
+specimen/SM
+specious/YP
+speciousness/M
+speck/SMDG
+speckle/MGDS
+specs/M
+spectacle/SM
+spectacles/M
+spectacular/MYS
+spectate/DSG
+spectator/SM
+spectra
+spectral
+spectre/MS
+spectrometer/MS
+spectroscope/MS
+spectroscopic
+spectroscopy/M
+spectrum/M
+speculate/DSXGNV
+speculation/M
+speculative/Y
+speculator/MS
+sped
+speech/MS
+speechify/DSG
+speechless/YP
+speechlessness/M
+speechwriter/S
+speed/SMRZG
+speedboat/SM
+speeder/M
+speedily
+speediness/M
+speeding/M
+speedometer/MS
+speedster/SM
+speedup/MS
+speedway/SM
+speedwell/M
+speedy/TPR
+speleological
+speleologist/MS
+speleology/M
+spell/JSMDRZG
+spellbind/ZGRS
+spellbinder/M
+spellbound
+spellcheck/MDRZGS
+spellchecker/M
+spelldown/SM
+speller/M
+spelling/M
+spelunker/MS
+spelunking/M
+spend/BSRZG
+spender/M
+spending/M
+spendthrift/MS
+spent/U
+sperm/SM
+spermatozoa
+spermatozoon/M
+spermicidal
+spermicide/MS
+spew/MDRZGS
+spewer/M
+sphagnum/MS
+sphere/SM
+spherical/Y
+spheroid/SM
+spheroidal
+sphincter/MS
+sphinx/MS
+spic/S
+spice/DSMG
+spicily
+spiciness/M
+spicule/MS
+spicy/PRT
+spider/SM
+spiderweb/MS
+spidery
+spiel/SMDG
+spiff/SDG
+spiffy/TR
+spigot/SM
+spike/DSMG
+spikiness/M
+spiky/RPT
+spill/SMDG
+spillage/MS
+spillover/SM
+spillway/MS
+spin/MS
+spinach/M
+spinal/SMY
+spindle/MGDS
+spindly/TR
+spine/SM
+spineless/YP
+spinet/SM
+spinless
+spinnaker/SM
+spinner/MS
+spinneret/SM
+spinney/S
+spinning/M
+spinster/SM
+spinsterhood/M
+spinsterish
+spiny/RT
+spiracle/SM
+spiral/SMY
+spiralled
+spiralling
+spire's
+spire/IFAS
+spirea/SM
+spirit's
+spirit/ISGD
+spirited/Y
+spiritless
+spiritual/MYS
+spiritualism/M
+spiritualist/MS
+spiritualistic
+spirituality/M
+spirituous
+spirochete/SM
+spiry
+spit/MDGS
+spitball/SM
+spite/ASM
+spiteful/PY
+spitefuller
+spitefullest
+spitefulness/M
+spitfire/SM
+spitted
+spitting
+spittle/M
+spittoon/MS
+spiv/S
+splanchnic
+splash/GMDS
+splashdown/MS
+splashily
+splashiness/M
+splashy/RTP
+splat/SM
+splatted
+splatter/GSMD
+splatting
+splay/SMDG
+splayfeet
+splayfoot/MD
+spleen/SM
+splendid/RYT
+splendorous
+splendour/SM
+splenectomy
+splenetic
+splice/DRSMZG
+splicer/M
+spliff/S
+spline/S
+splint/SZGMDR
+splinter/MDG
+splintery
+split/SM
+splitting/MS
+splodge/S
+splosh/DSG
+splotch/MDSG
+splotchy/TR
+splurge/DSMG
+splutter/GMDS
+spoil's
+spoil/CSDRZG
+spoilage/M
+spoiled/U
+spoiler/CM
+spoilsport/MS
+spoke/SM
+spoken/U
+spokesman/M
+spokesmen
+spokespeople
+spokesperson/MS
+spokeswoman/M
+spokeswomen
+spoliation/CM
+sponge/DRSMZG
+sponger/M
+sponginess/M
+spongy/RPT
+sponsor/MDGS
+sponsorship/M
+spontaneity/M
+spontaneous/Y
+spoof/SMDG
+spook/SMDG
+spookiness/M
+spooky/RPT
+spool/SMDG
+spoon/SMDG
+spoonbill/MS
+spoonerism/MS
+spoonful/SM
+spoor/SMDG
+sporadic
+sporadically
+spore/DSMG
+sporran/S
+sport/SMDGV
+sportiness/M
+sporting/Y
+sportive/Y
+sportscast/MRZGS
+sportscaster/M
+sportsman/M
+sportsmanlike/U
+sportsmanship/M
+sportsmen
+sportspeople
+sportsperson
+sportswear/M
+sportswoman/M
+sportswomen
+sportswriter/SM
+sporty/TPR
+spot/CMS
+spotless/PY
+spotlessness/M
+spotlight/GSMD
+spotlit
+spotted
+spotter/MS
+spottily
+spottiness/M
+spotting
+spotty/TPR
+spousal/MS
+spouse/SM
+spout/SMDG
+sprain/GSMD
+sprang
+sprat/SM
+sprawl/GSMD
+spray's
+spray/ASDG
+sprayer/MS
+spread/ZGBSMR
+spreadeagled
+spreader/M
+spreadsheet/MS
+spree/DSM
+spreeing
+sprig/SM
+sprigged
+sprightliness/M
+sprightly/RTP
+spring/GSM
+springboard/MS
+springbok/MS
+springily
+springiness/M
+springlike
+springtime/M
+springy/RPT
+sprinkle/DRSJMZG
+sprinkler/M
+sprinkling/M
+sprint/ZGSMDR
+sprinter/M
+sprite/SM
+spritz/ZGMDRS
+spritzer/M
+sprocket/MS
+sprog/S
+sprout/GSMD
+spruce/DRSPMYTG
+spruceness/M
+sprung
+spry/RYT
+spryness/M
+spud/MS
+spume/DSMG
+spumoni/M
+spumy
+spun
+spunk/SM
+spunky/TR
+spur/MS
+spurge/M
+spurious/PY
+spuriousness/M
+spurn/SDG
+spurred
+spurring
+spurt/SMDG
+sputa
+sputnik/MS
+sputter/MDGS
+sputum/M
+spy/GDSM
+spyglass/MS
+spymaster/S
+spyware/M
+sq
+sqq
+squab/SM
+squabble/MZGDRS
+squabbler/M
+squad/SM
+squadron/MS
+squalid/PTRY
+squalidness/M
+squall/SGMD
+squally
+squalor/M
+squamous
+squander/GDS
+square/PDRSMYTG
+squareness/M
+squarish
+squash/GMDS
+squashy/TR
+squat/SMP
+squatness/M
+squatted
+squatter/MS
+squattest
+squatting
+squaw/SM
+squawk/SZGMDR
+squawker/M
+squeak/SZGMDR
+squeaker/M
+squeakily
+squeakiness/M
+squeaky/TRP
+squeal/SZGMDR
+squealer/M
+squeamish/PY
+squeamishness/M
+squeegee/MDS
+squeegeeing
+squeeze/BMZGDRS
+squeezebox/S
+squeezer/M
+squelch/GMDS
+squelchy
+squib/SM
+squid/SM
+squidgy
+squiffy
+squiggle/DSMG
+squiggly
+squint/STGMDR
+squire/DSMG
+squirm/SGMD
+squirmy/RT
+squirrel/SM
+squirrelled
+squirrelling
+squirt/SGMD
+squish/GMDS
+squishy/RT
+sriracha
+ssh
+st
+stab/MYS
+stabbed
+stabber/MS
+stabbing/MS
+stability/IM
+stabilization/CM
+stabilize/CDSG
+stabilizer/MS
+stable/DRSMTG
+stableman/M
+stablemate/S
+stablemen
+stably/U
+staccato/MS
+stack/SMDG
+stadium/MS
+staff's
+staff/ASDG
+staffer/MS
+staffing/M
+stag/MDGSJ
+stage/SM
+stagecoach/MS
+stagecraft/M
+stagehand/MS
+stagestruck
+stagflation/M
+stagger/MDGS
+staggering/Y
+staging/M
+stagnancy/M
+stagnant/Y
+stagnate/DSGN
+stagnation/M
+stagy/RT
+staid/PRYT
+staidness/M
+stain/SMDG
+stained/U
+stainless/M
+stair/SM
+staircase/MS
+stairway/MS
+stairwell/SM
+stake/DSMG
+stakeholder/MS
+stakeout/SM
+stalactite/MS
+stalagmite/MS
+stale/DRSTGP
+stalemate/DSMG
+staleness/M
+stalk/SMDRJZG
+stalker/M
+stalking/M
+stall's
+stall/SDG
+stallholder/S
+stallion/MS
+stalwart/MYS
+stamen/SM
+stamina/M
+stammer/ZGMDRS
+stammerer/M
+stammering/Y
+stamp/SMDRZG
+stampede/MGDS
+stamper/M
+stance/ISM
+stanch/TGDRS
+stanchion/SM
+stand/SMRJZG
+standalone
+standard/MS
+standardization/M
+standardize/DSG
+standby/M
+standbys
+standee/MS
+stander/M
+standing/M
+standoff/MS
+standoffish
+standout/MS
+standpipe/SM
+standpoint/MS
+standstill/MS
+stank
+stanza/SM
+staph/M
+staphylococcal
+staphylococci
+staphylococcus/M
+staple/DRSMZG
+stapler/M
+star/MDRZGS
+starboard/M
+starburst/S
+starch/GMDS
+starchily
+starchiness/M
+starchy/PTR
+stardom/M
+stardust/M
+stare/SM
+starer/M
+starfish/MS
+starfruit
+stargaze/DRSZG
+stargazer/M
+stark/RYPZT
+starkness/M
+starless
+starlet/MS
+starlight/M
+starling/SM
+starlit
+starred
+starring
+starry/TR
+starstruck
+start/ASMDG
+starter/MS
+startle/GDS
+startling/Y
+startup/MS
+starvation/M
+starve/DSJG
+starveling/MS
+stash/MDSG
+stasis
+stat/MS
+state/DRSMYGNLX
+statecraft/M
+stated/U
+statehood/M
+statehouse/MS
+stateless/P
+statelessness/M
+stateliness/M
+stately/PRT
+statement/AMS
+statemented
+statementing
+stateroom/MS
+stateside
+statesman/M
+statesmanlike
+statesmanship/M
+statesmen
+stateswoman/M
+stateswomen
+statewide
+static/SM
+statically
+station/MDRZG
+stationary
+stationer/M
+stationery/M
+stationmaster/S
+statistic/MS
+statistical/Y
+statistician/SM
+statuary/M
+statue/SM
+statuesque
+statuette/MS
+stature/MS
+status/MS
+statute/MS
+statutorily
+statutory
+staunch/PDRSYTG
+staunchness/M
+stave/DSMG
+stay/MDRZGS
+std
+stdio
+stead/SM
+steadfast/YP
+steadfastness/M
+steadily/U
+steadiness/UM
+steady/TGPDRSM
+steak/SM
+steakhouse/SM
+steal/SMHG
+stealth/M
+stealthily
+stealthiness/M
+stealthy/TPR
+steam/SMDRZG
+steamboat/MS
+steamer/M
+steamfitter/SM
+steamfitting/M
+steaminess/M
+steampunk
+steamroll/ZGDRS
+steamroller/MDG
+steamship/MS
+steamy/TPR
+steed/SM
+steel/SMDG
+steeliness/M
+steelmaker/S
+steelworker/SM
+steelworks/M
+steely/PTR
+steelyard/SM
+steep/SMDNRYPXTG
+steepen/GD
+steeple/MS
+steeplechase/MS
+steeplejack/SM
+steepness/M
+steer/SMDBG
+steerage/M
+steering/M
+steersman/M
+steersmen
+stegosauri
+stegosaurus/MS
+stein/SM
+stellar
+stem/MS
+stemless
+stemmed
+stemming
+stemware/M
+stench/MS
+stencil/MS
+stencilled
+stencilling
+steno/SM
+stenographer/SM
+stenographic
+stenography/M
+stenosis
+stent/SM
+stentorian
+step/IMS
+stepbrother/SM
+stepchild/M
+stepchildren/M
+stepdad/MS
+stepdaughter/SM
+stepfather/SM
+stepladder/MS
+stepmom/MS
+stepmother/SM
+stepparent/SM
+steppe/DRSMZG
+stepper/M
+steppingstone/SM
+stepsister/MS
+stepson/MS
+stereo/SM
+stereophonic
+stereoscope/MS
+stereoscopic
+stereotype/DSMG
+stereotypical
+sterile
+sterility/M
+sterilization/SM
+sterilize/DRSZG
+sterilizer/M
+sterling/M
+stern/SMRYPT
+sternness/M
+sternum/MS
+steroid/MS
+steroidal
+stertorous
+stet/S
+stethoscope/MS
+stetson/MS
+stetted
+stetting
+stevedore/SM
+stew/MDGS
+steward/GMDS
+stewardess/MS
+stewardship/M
+stick/SMRZG
+sticker/M
+stickily
+stickiness/M
+stickleback/SM
+stickler/MS
+stickpin/MS
+stickup/MS
+sticky/PTRSM
+stiff/SMDNRYPXTG
+stiffen/ZGDR
+stiffener/M
+stiffening/M
+stiffness/M
+stifle/DSJG
+stifling/Y
+stigma/SM
+stigmata
+stigmatic
+stigmatization/M
+stigmatize/GDS
+stile/SM
+stiletto/SM
+still's
+still/ITGSD
+stillbirth/M
+stillbirths
+stillborn
+stiller
+stillness/M
+stilt/SMD
+stilted/Y
+stimulant/SM
+stimulate/DSGNV
+stimulation/M
+stimuli
+stimulus/M
+sting/ZGSMR
+stinger/M
+stingily
+stinginess/M
+stingray/SM
+stingy/RTP
+stink/ZGSMR
+stinkbug/SM
+stinker/M
+stinky/RT
+stint/GSMD
+stipend/SM
+stipendiary/S
+stipple/DSMG
+stippling/M
+stipulate/XDSGN
+stipulation/M
+stir/MS
+stirred
+stirrer/SM
+stirring/SY
+stirrup/SM
+stitch's
+stitch/ADSG
+stitchery/M
+stitching/M
+stoat/SM
+stochastic
+stock's
+stock/AGSD
+stockade/DSMG
+stockbreeder/MS
+stockbroker/SM
+stockbroking/M
+stockholder/SM
+stockily
+stockiness/M
+stockinette/M
+stocking/SM
+stockist/S
+stockpile/MGDS
+stockpot/SM
+stockroom/MS
+stocktaking/M
+stocky/RTP
+stockyard/MS
+stodge
+stodgily
+stodginess/M
+stodgy/RTP
+stogie/MS
+stoic/SM
+stoical/Y
+stoicism/M
+stoke/DRSZG
+stoker/M
+stole/SM
+stolen
+stolid/RYTP
+stolidity/M
+stolidness/M
+stolon/MS
+stomach/MDRZG
+stomachache/SM
+stomacher/M
+stomachs
+stomp/GSMD
+stone/DRSMZG
+stonemason/MS
+stoner/M
+stonewall/GSD
+stoneware/M
+stonewashed
+stonework/M
+stonily
+stoniness/M
+stonkered
+stonking
+stony/TRP
+stood
+stooge/MS
+stool/SM
+stoop/GSMD
+stop's
+stop/US
+stopcock/SM
+stopgap/SM
+stoplight/MS
+stopover/MS
+stoppable/U
+stoppage/MS
+stopped/U
+stopper/GSMD
+stopping/U
+stopple/DSMG
+stopwatch/MS
+storage/M
+store's
+store/ADSG
+storefront/MS
+storehouse/MS
+storekeeper/SM
+storeroom/SM
+storey/MS
+stork/SM
+storm/GSMD
+stormily
+storminess/M
+stormy/RPT
+story/DSM
+storyboard/MS
+storybook/SM
+storyteller/MS
+storytelling/M
+stoup/SM
+stout/TSMRYP
+stouthearted
+stoutness/M
+stove/SM
+stovepipe/SM
+stow/DGS
+stowage/M
+stowaway/MS
+straddle/DRSMZG
+straddler/M
+strafe/MGDS
+straggle/DRSZG
+straggler/M
+straggly/TR
+straight/SPXTMNRY
+straightaway/SM
+straightedge/SM
+straighten/ZGDR
+straightener/M
+straightforward/YPS
+straightforwardness/M
+straightness/M
+straightway
+strain's
+strain/FADSG
+strainer/ASM
+strait/MNSX
+straiten/GD
+straitjacket/SGMD
+straitlaced
+strand/MDSG
+strange/PRYZT
+strangeness/M
+stranger/M
+strangle/ZGDRS
+stranglehold/SM
+strangler/M
+strangulate/GNDS
+strangulation/M
+strap's
+strap/US
+strapless/MS
+strapped/U
+strapping/M
+strata
+stratagem/SM
+strategic/S
+strategical/Y
+strategics/M
+strategist/SM
+strategy/SM
+strati
+stratification/M
+stratify/DSGN
+stratosphere/SM
+stratospheric
+stratum/M
+stratus/M
+straw/GSMD
+strawberry/SM
+stray/GSMD
+streak/MDRSZG
+streaker/M
+streaky/TR
+stream/MDRSZG
+streamer/M
+streamline/DSG
+street/MS
+streetcar/MS
+streetlamp/S
+streetlight/SM
+streetwalker/SM
+streetwise
+strength/M
+strengthen/AGDS
+strengthener/MS
+strengths
+strenuous/PY
+strenuousness/M
+strep/M
+streptococcal
+streptococci
+streptococcus/M
+streptomycin/M
+stress/MDSG
+stressed/U
+stressful
+stressors
+stretch/BZGMDRS
+stretcher/MDG
+stretchmarks
+stretchy/TR
+strew/GSDH
+strewn
+stria/M
+striae
+striated
+striation/MS
+stricken
+strict/RYPT
+strictness/M
+stricture/SM
+stridden
+stride/MGS
+stridency/M
+strident/Y
+strife/M
+strike/MZGRSJ
+strikebound
+strikebreaker/SM
+strikebreaking
+strikeout/MS
+striker/M
+striking/Y
+string/MDRSZG
+stringency/M
+stringent/Y
+stringer/M
+stringiness/M
+stringy/PTR
+strip/GSMD
+stripe/MS
+stripey
+stripling/MS
+stripped
+stripper/MS
+stripping
+striptease/MZGDRS
+stripteaser/M
+stripy
+strive/GS
+striven
+strobe/MS
+stroboscope/MS
+stroboscopic
+strode
+stroke/MGDS
+stroll/MDRSZG
+stroller/M
+strong/RYT
+strongbox/MS
+stronghold/MS
+strongman/M
+strongmen
+strongroom/S
+strontium/M
+strop/SM
+strophe/SM
+strophic
+stropped
+stroppily
+stropping
+stroppy/TRP
+strove
+struck
+structural/Y
+structuralism
+structuralist/S
+structure's
+structure/AGDS
+structured/U
+strudel/SM
+struggle/MGDS
+strum/SM
+strummed
+strumming
+strumpet/MS
+strung/UA
+strut/SM
+strutted
+strutting
+strychnine/M
+stub/MS
+stubbed
+stubbing
+stubble/M
+stubbly
+stubborn/RYPT
+stubbornness/M
+stubby/RT
+stucco/MDG
+stuccoes
+stuck/U
+stud/MYS
+studbook/MS
+studded
+studding/M
+student/SM
+studentship/S
+studied/U
+studiedly
+studio/MS
+studious/PY
+studiousness/M
+studly/RT
+study's
+study/AGDS
+stuff/GSMDJ
+stuffily
+stuffiness/M
+stuffing/M
+stuffy/RPT
+stultification/M
+stultify/DSNG
+stumble/DRSMZG
+stumbler/M
+stump/GSMD
+stumpy/TR
+stun/S
+stung
+stunk
+stunned
+stunner/S
+stunning/Y
+stunt/GSMD
+stuntman
+stuntmen
+stupefaction/M
+stupefy/DSG
+stupendous/Y
+stupid/TMRYS
+stupidity/SM
+stupor/MS
+sturdily
+sturdiness/M
+sturdy/TRP
+sturgeon/SM
+stutter/MDRSZG
+stutterer/M
+sty/SM
+style's
+style/ADSG
+styli
+stylish/PY
+stylishness/M
+stylist/SM
+stylistic/S
+stylistically
+stylize/DSG
+stylus/MS
+stymie/MDS
+stymieing
+styptic/SM
+suasion/EM
+suave/RYTP
+suaveness/M
+suavity/M
+sub/SM
+subaltern/MS
+subaqua
+subarctic
+subarea/MS
+subatomic
+subbasement/SM
+subbed
+subbing
+subbranch/MS
+subcategory/SM
+subclass
+subcommittee/SM
+subcompact/SM
+subconscious/PMY
+subconsciousness/M
+subcontinent/SM
+subcontinental
+subcontract/MDSG
+subcontractor/MS
+subculture/MS
+subcutaneous/Y
+subdivide/GDS
+subdivision/SM
+subdomain/MS
+subdominant
+subdue/DSG
+subeditor/S
+subfamily/SM
+subfreezing
+subgroup/MS
+subhead/GJMS
+subheading/M
+subhuman/MS
+subj
+subject/GVMDS
+subjection/M
+subjective/Y
+subjectivity/M
+subjoin/GDS
+subjugate/GNDS
+subjugation/M
+subjunctive/SM
+sublease/MGDS
+sublet/SM
+subletting
+sublieutenant/S
+sublimate/GNDS
+sublimation/M
+sublime/YTGDRS
+subliminal/Y
+sublimity/M
+sublingual
+submarginal
+submarine/MZRS
+submariner/M
+submerge/GDS
+submergence/M
+submerse/GNDS
+submersible/MS
+submersion/M
+submicroscopic
+submission/MS
+submissive/PY
+submissiveness/M
+submit/AS
+submitted/A
+submitter
+submitting/A
+subnormal
+suborbital
+suborder/MS
+subordinate/DSMGN
+subordination/IM
+suborn/SGD
+subornation/M
+subpar
+subparagraph
+subpart
+subplot/MS
+subpoena/GMDS
+subprime
+subprofessional/SM
+subprogram/S
+subroutine/SM
+subscribe/UASDG
+subscriber/MS
+subscript/MS
+subscription/MS
+subsection/MS
+subsequent/Y
+subservience/M
+subservient/Y
+subset/SM
+subside/GDS
+subsidence/M
+subsidiarity
+subsidiary/SM
+subsidization/M
+subsidize/ZGDRS
+subsidizer/M
+subsidy/SM
+subsist/SDG
+subsistence/M
+subsoil/M
+subsonic
+subspace
+subspecies/M
+substance/SM
+substandard
+substantial/IY
+substantiate/GNDSX
+substantiated/U
+substantiation/FM
+substantive/SMY
+substation/MS
+substituent
+substitute/XMGNDS
+substitution/M
+substrata
+substrate/MS
+substratum/M
+substructure/SM
+subsume/DSG
+subsumption
+subsurface/M
+subsystem/SM
+subteen/SM
+subtenancy/M
+subtenant/SM
+subtend/SDG
+subterfuge/SM
+subterranean
+subtext/SM
+subtitle/DSMG
+subtle/TR
+subtlety/SM
+subtly
+subtopic/SM
+subtotal/SM
+subtotalled
+subtotalling
+subtract/GSD
+subtraction/SM
+subtrahend/SM
+subtropic/S
+subtropical
+subtropics/M
+suburb/MS
+suburban/SM
+suburbanite/SM
+suburbia/M
+subvention/SM
+subversion/M
+subversive/SPMY
+subversiveness/M
+subvert/SDG
+subway/MS
+subzero
+succeed/GDS
+success/VMS
+successful/UY
+succession/SM
+successive/Y
+successor/SM
+succinct/RYTP
+succinctness/M
+succotash/M
+succour/GMDS
+succubi
+succubus
+succulence/M
+succulency/M
+succulent/SM
+succumb/GDS
+such
+suchlike
+suck/MDRZGS
+sucker/GMD
+suckle/DSJG
+suckling/M
+sucrose/M
+suction/SMDG
+sudden/PY
+suddenness/M
+suds/M
+sudsy/TR
+sue/DSG
+suede/M
+suet/M
+suety
+suffer/DRZGSJ
+sufferance/M
+sufferer/M
+suffering/M
+suffice/DSG
+sufficiency/IM
+sufficient/IY
+suffix/MDSG
+suffixation/M
+suffocate/GNDS
+suffocation/M
+suffragan/MS
+suffrage/M
+suffragette/SM
+suffragist/MS
+suffuse/DSGN
+suffusion/M
+sugar/GSMD
+sugarcane/M
+sugarcoat/GDS
+sugarless
+sugarplum/MS
+sugary/RT
+suggest/GVSDR
+suggestibility/M
+suggestible
+suggestion/SM
+suggestive/YP
+suggestiveness/M
+suicidal
+suicide/SM
+suit/BMDGS
+suitability/UM
+suitableness/M
+suitably/U
+suitcase/SM
+suite/SM
+suited/U
+suiting/M
+suitor/MS
+sukiyaki/M
+sulfa/M
+sulfonamides
+sulk/MDGS
+sulkily
+sulkiness/M
+sulky/TRSMP
+sullen/RYPT
+sullenness/M
+sullied/U
+sully/GDS
+sulphate/MS
+sulphide/MS
+sulphur/SMDG
+sulphuric
+sulphurous
+sultan/MS
+sultana/SM
+sultanate/MS
+sultrily
+sultriness/M
+sultry/RPT
+sum/SM
+sumac/M
+summarily
+summarize/GDS
+summary/SM
+summat
+summation/FMS
+summed
+summer/MDSG
+summerhouse/SM
+summertime/M
+summery
+summing
+summit/MS
+summitry/M
+summon/DRSZG
+summoner/M
+summons/GMDS
+sumo/M
+sump/MS
+sumptuous/PY
+sumptuousness/M
+sun/SM
+sunbath/ZGMDRS
+sunbathe
+sunbather/M
+sunbathing/M
+sunbaths
+sunbeam/SM
+sunbed/S
+sunbelt/SM
+sunblock/MS
+sunbonnet/SM
+sunburn/SGMD
+sunburst/MS
+sundae/MS
+sundeck/S
+sunder/DSG
+sundial/SM
+sundown/SM
+sundress/S
+sundries/M
+sundry/S
+sunfish/MS
+sunflower/MS
+sung/U
+sunglasses/M
+sunhat/S
+sunk/N
+sunlamp/SM
+sunless
+sunlight/M
+sunlit
+sunned
+sunniness/M
+sunning
+sunny/TRP
+sunrise/SM
+sunroof/SM
+sunscreen/MS
+sunset/MS
+sunshade/MS
+sunshine/M
+sunshiny
+sunspot/SM
+sunstroke/M
+suntan/MS
+suntanned
+suntanning
+suntrap/S
+sunup/M
+sup/SZMR
+super/M
+superabundance/MS
+superabundant
+superannuate/GNDS
+superannuation/M
+superb/RYT
+supercargo/M
+supercargoes
+supercharge/ZGDRS
+supercharger/M
+supercilious/PY
+superciliousness/M
+supercity/SM
+supercomputer/MS
+superconducting
+superconductive
+superconductivity/M
+superconductor/SM
+supercritical
+superego/MS
+supererogation/M
+supererogatory
+superficial/Y
+superficiality/M
+superfine
+superfluity/M
+superfluous/YP
+superfluousness/M
+superglue
+supergrass/S
+superhero/MS
+superheroes
+superhighway/SM
+superhuman
+superimpose/GDS
+superimposition/M
+superintend/DSG
+superintendence/M
+superintendency/M
+superintendent/SM
+superior/MS
+superiority/M
+superlative/SMY
+superman/M
+supermarket/SM
+supermassive
+supermen
+supermodel/SM
+supermom/MS
+supernal
+supernatural/SY
+supernova/MS
+supernovae
+supernumerary/SM
+superpose/GDS
+superposition/M
+superpower/SM
+supersaturate/GNDS
+supersaturation/M
+superscribe/GDS
+superscript/MS
+superscription/M
+supersede/GDS
+supersize/GDS
+supersonic
+superspreader/SM
+superstar/MS
+superstardom
+superstate/S
+superstition/MS
+superstitious/Y
+superstore/MS
+superstructure/MS
+supertanker/MS
+superuser/S
+supervene/GDS
+supervention/M
+supervise/XGNDS
+supervised/U
+supervision/M
+supervisor/MS
+supervisory
+superwoman/M
+superwomen
+supine/Y
+supp/DRZG
+supper/M
+suppertime
+suppl
+supplant/SDG
+supple/TLPR
+supplement/MDGS
+supplemental
+supplementary
+supplementation/M
+suppleness/M
+suppliant/SM
+supplicant/MS
+supplicate/GDS
+supplication/M
+supplier/M
+supply/ZGDRSMXN
+support/MDRSBZGV
+supportable/UI
+supported/U
+supporter/M
+suppose/GDS
+supposed/Y
+supposition/MS
+suppository/SM
+suppress/GVDS
+suppressant/MS
+suppressible
+suppression/M
+suppressor/SM
+suppurate/DSGN
+suppuration/M
+supra
+supranational
+supremacist/MS
+supremacy/M
+supreme/Y
+supremo/S
+supt
+surcease/DSMG
+surcharge/DSMG
+surcingle/SM
+sure/PYTR
+surefire
+surefooted
+sureness/M
+surety/SM
+surf/MDRZGS
+surface's
+surface/AGDS
+surfboard/MDSG
+surfeit/MDSG
+surfer/M
+surfing/M
+surge/DSMG
+surgeon/MS
+surgery/SM
+surgical/Y
+surliness/M
+surly/PTR
+surmise/MGDS
+surmount/DGSB
+surmountable/I
+surname/MS
+surpass/GDS
+surpassed/U
+surplice/MS
+surplus/MS
+surplussed
+surplussing
+surprise/DSMGJ
+surprising/UY
+surreal
+surrealism/M
+surrealist/SM
+surrealistic
+surrealistically
+surrender/MDSG
+surreptitious/PY
+surreptitiousness/M
+surrey/MS
+surrogacy/M
+surrogate/SM
+surround/GSDJ
+surrounding/M
+surroundings/M
+surtax/MDSG
+surtitle/S
+surveillance/M
+survey's
+survey/ADGS
+surveying/M
+surveyor/SM
+survival/SM
+survivalist/SM
+survive/DSGB
+survivor/SM
+susceptibility/SM
+susceptible/I
+sushi/M
+suspect/SMDG
+suspected/U
+suspend/SDRZG
+suspender/M
+suspense/XMN
+suspenseful
+suspension/M
+suspicion/SM
+suspicious/Y
+suss/DSG
+sustain/SDBG
+sustainability
+sustainable/U
+sustainably
+sustenance/M
+sutler/MS
+suttee
+suture/MGDS
+suzerain/MS
+suzerainty/M
+svelte/TR
+swab/MS
+swabbed
+swabbing
+swaddle/DSG
+swag/MS
+swagged
+swagger/SMDRG
+swagging
+swain/SM
+swallow/GSMD
+swallowtail/MS
+swam
+swami/SM
+swamp/GSMD
+swampland/M
+swampy/RT
+swan/MS
+swank/TGSMDR
+swankily
+swankiness/M
+swanky/RPT
+swanned
+swanning
+swansong/S
+swap/MS
+swapped
+swapping
+sward/SM
+swarm/GSMD
+swarthy/TR
+swash/GMDS
+swashbuckler/SM
+swashbuckling/M
+swastika/SM
+swat/MS
+swatch/MS
+swath/GMDS
+swathe/M
+swaths
+swatted
+swatter/SMDG
+swatting
+sway/MDGS
+swayback/MD
+swayed/U
+swear/ZGSR
+swearer/M
+swearword/MS
+sweat/ZGSMDR
+sweatband/MS
+sweater/M
+sweatpants/M
+sweats/M
+sweatshirt/SM
+sweatshop/MS
+sweatsuit/S
+sweaty/RT
+swede/SM
+sweep/ZGSMRJ
+sweeper/M
+sweeping/MY
+sweepings/M
+sweepstakes/M
+sweet/XTSMNRYP
+sweetbread/SM
+sweetbrier/SM
+sweetcorn
+sweetened/U
+sweetener/MS
+sweetening/M
+sweetheart/SM
+sweetie/SM
+sweetish
+sweetmeat/MS
+sweetness/M
+swell/TGSMDRJ
+swellhead/MDS
+swelling/M
+swelter/SGMD
+swept
+sweptback
+swerve/MGDS
+swerving/U
+swift/PTSMRY
+swiftness/M
+swig/MS
+swigged
+swigging
+swill/GSMD
+swim/MS
+swimmer/SM
+swimming/MY
+swimsuit/SM
+swimwear
+swindle/DRSMZG
+swindler/M
+swine/SM
+swineherd/SM
+swing/ZGSMR
+swingeing
+swinger/M
+swinish
+swipe/DSMG
+swirl/GSMD
+swirly
+swish/TGMDRS
+switch/MDRSZGB
+switchback/MS
+switchblade/SM
+switchboard/SM
+switcher/M
+switchover
+swivel/MS
+swivelled
+swivelling
+swiz
+swizz
+swizzle/DSG
+swollen
+swoon/SGMD
+swoop/SGMD
+swoosh/MDSG
+sword/SM
+swordfish/MS
+swordplay/M
+swordsman/M
+swordsmanship/M
+swordsmen
+swore
+sworn
+swot/S
+swotted
+swotting
+swum
+swung
+sybarite/SM
+sybaritic
+sycamore/MS
+sycophancy/M
+sycophant/SM
+sycophantic
+syllabic
+syllabicate/GNDS
+syllabication/M
+syllabification/M
+syllabify/DSNG
+syllable/MS
+syllabub/S
+syllabus/MS
+syllogism/MS
+syllogistic
+sylph/M
+sylphic
+sylphlike
+sylphs
+sylvan
+symbioses
+symbiosis/M
+symbiotic
+symbiotically
+symbol/MS
+symbolic
+symbolical/Y
+symbolism/M
+symbolization/M
+symbolize/DSG
+symbology
+symmetric
+symmetrical/Y
+symmetry/SM
+sympathetic/U
+sympathetically/U
+sympathies/M
+sympathize/ZGDRS
+sympathizer/M
+sympathy/SM
+symphonic
+symphony/SM
+symposium/MS
+symptom/MS
+symptomatic
+symptomatically
+syn/H
+synagogal
+synagogue/SM
+synapse/MS
+synaptic
+sync/MDSG
+synchronicity
+synchronization/SM
+synchronize/GDS
+synchronous/Y
+synchrony
+syncopate/DSGN
+syncopation/M
+syncope/M
+syndicalism
+syndicalist/S
+syndicate/DSMGN
+syndication/M
+syndrome/SM
+synergism/M
+synergistic
+synergy/SM
+synfuel/MS
+synod/SM
+synonym/SM
+synonymous
+synonymy/M
+synopses
+synopsis/M
+synoptic
+synovial
+syntactic
+syntactical/Y
+syntax/M
+syntheses
+synthesis/M
+synthesize/ZGDRS
+synthesizer/M
+synthetic/SM
+synthetically
+synths
+syphilis/M
+syphilitic/SM
+syringe/DSMG
+syrup/SM
+syrupy
+sysadmin/S
+sysop/S
+system/SM
+systematic/U
+systematical/Y
+systematization/M
+systematize/GDS
+systemic/MS
+systemically
+systole/SM
+systolic
+t/SDNXGBJ
+ta
+tab/SM
+tabbed
+tabbing
+tabbouleh/M
+tabby/SM
+tabernacle/SM
+tabla/MS
+table/MGDS
+tableau/M
+tableaux
+tablecloth/M
+tablecloths
+tableland/SM
+tablespoon/SM
+tablespoonful/SM
+tablet/SM
+tabletop/MS
+tableware/M
+tabloid/SM
+taboo/MDSG
+tabor/MS
+tabular
+tabulate/DSGNX
+tabulation/M
+tabulator/SM
+tachograph
+tachographs
+tachometer/SM
+tachycardia/M
+tachyon
+tacit/PY
+tacitness/M
+taciturn/Y
+taciturnity/M
+tack/ZGMDRS
+tacker/M
+tackiness/M
+tackle/DRSMZG
+tackler/M
+tacky/RTP
+taco/MS
+tact/FM
+tactful/YP
+tactfulness/M
+tactic/SM
+tactical/Y
+tactician/MS
+tactile
+tactility/M
+tactless/PY
+tactlessness/M
+tad/SM
+tadpole/MS
+taffeta/M
+taffrail/SM
+taffy/SM
+tag/SM
+tagged
+tagger/SM
+tagging
+tagliatelle
+tagline/MS
+taiga/MS
+tail/ACSDMG
+tailback/MS
+tailboard/S
+tailbone/S
+tailcoat/MS
+tailgate/MZGDRS
+tailgater/M
+tailless
+taillight/MS
+tailor/SGMD
+tailoring/M
+tailpiece/S
+tailpipe/SM
+tailspin/SM
+tailwind/SM
+taint/MDSG
+tainted/U
+take/AIMS
+takeaway/S
+taken/A
+takeoff/MS
+takeout/MS
+takeover/SM
+taker/MS
+taking/SM
+takings/M
+talc/M
+talcum/M
+tale/MS
+talebearer/MS
+talent/SMD
+talented/U
+tali
+talisman/MS
+talk/ZGMDRS
+talkative/PY
+talkativeness/M
+talker/M
+talkie/RSMT
+talky
+tall/TRP
+tallboy/MS
+tallier/M
+tallish
+tallness/M
+tallow/M
+tallowy
+tally/DRSMZG
+tallyho/MDGS
+talon/MS
+talus/MS
+tam/SM
+tamale/SM
+tamarack/MS
+tamarind/MS
+tambourine/MS
+tame/BYZTGDRSP
+tamed/U
+tameness/M
+tamer/M
+tamoxifen
+tamp/ZGDRS
+tamper/ZGDR
+tamperer/M
+tampon/SM
+tan/SM
+tanager/MS
+tanbark/M
+tandem/SM
+tandoori/M
+tang/MS
+tangelo/MS
+tangent/MS
+tangential/Y
+tangerine/MS
+tangibility/IM
+tangible/IMS
+tangibleness/M
+tangibly/I
+tangle's
+tangle/UDSG
+tango/MDSG
+tangy/RT
+tank/ZGMDRS
+tankard/MS
+tanker/M
+tankful/MS
+tanned/U
+tanner/SM
+tannery/SM
+tannest
+tannin/M
+tanning/M
+tansy/M
+tantalization/M
+tantalize/ZGDRS
+tantalizer/M
+tantalizing/Y
+tantalum/M
+tantamount
+tantra/M
+tantrum/SM
+tap/SZGMDR
+tapas
+tape/MS
+tapeline/MS
+taper/MDG
+tapestry/SM
+tapeworm/MS
+tapioca/M
+tapir/MS
+tapped/U
+tapper/MS
+tappet/MS
+tapping
+taproom/SM
+taproot/SM
+tar/SGMD
+taramasalata
+tarantella/MS
+tarantula/SM
+tarball/S
+tardily
+tardiness/M
+tardy/TPR
+tare/MS
+target/MDGS
+tariff/MS
+tarmac/MS
+tarmacadam
+tarmacked
+tarmacking
+tarn/MS
+tarnish/GMDS
+tarnished/U
+taro/MS
+tarot/MS
+tarp/MS
+tarpaulin/MS
+tarpon/MS
+tarragon/SM
+tarred
+tarring
+tarry/TGDRS
+tarsal/MS
+tarsi
+tarsus/M
+tart/PTGMDRYS
+tartan/MS
+tartar/MS
+tartaric
+tartness/M
+tarty/T
+taser/GMDS
+task/GMDS
+taskbar
+taskmaster/MS
+taskmistress/MS
+tassel/MS
+tasselled
+tasselling
+taste/JMZGDRS
+tasted/U
+tasteful/EPY
+tastefulness/EM
+tasteless/PY
+tastelessness/M
+taster/M
+tastily
+tastiness/M
+tasting/M
+tasty/TRP
+tat/SZR
+tatami/MS
+tater/M
+tatted
+tatter/MDSG
+tatterdemalion/MS
+tattie
+tatting/M
+tattle/MZGDRS
+tattler/M
+tattletale/MS
+tattoo/MDRSZG
+tattooer/M
+tattooist/SM
+tatty/TRS
+tau/SM
+taught/UA
+taunt/ZGMDRS
+taunter/M
+taunting/Y
+taupe/M
+taut/PXTNRY
+tauten/DG
+tautness/M
+tautological/Y
+tautologous
+tautology/SM
+tavern/MS
+tawdrily
+tawdriness/M
+tawdry/RTP
+tawny/TRM
+tax/BZGMDRS
+taxa
+taxation/M
+taxer/M
+taxi/GMDS
+taxicab/SM
+taxidermist/SM
+taxidermy/M
+taximeter/MS
+taxiway/S
+taxman
+taxmen
+taxon
+taxonomic
+taxonomist/MS
+taxonomy/SM
+taxpayer/MS
+taxpaying
+tb/S
+tbsp
+tea/SM
+teabag/S
+teacake/SM
+teach/ZGRSBJ
+teachable/U
+teacher/M
+teaching/M
+teacup/MS
+teacupful/MS
+teak/MS
+teakettle/SM
+teal/MS
+tealight/MS
+team/GMDS
+teammate/MS
+teamster/MS
+teamwork/M
+teapot/MS
+tear/GMDS
+tearaway/S
+teardrop/SM
+tearful/Y
+teargas/MS
+teargassed
+teargassing
+tearjerker/MS
+tearoom/SM
+teary/TR
+tease/MZGDRS
+teasel/MS
+teaser/M
+teasing/Y
+teaspoon/SM
+teaspoonful/SM
+teat/MS
+teatime/S
+tech/M
+techie/S
+technetium/M
+technical/Y
+technicality/SM
+technician/SM
+technicolor
+technique/SM
+techno
+technobabble
+technocracy/SM
+technocrat/MS
+technocratic
+technological/Y
+technologist/MS
+technology/SM
+technophobe/S
+techs
+tectonic/S
+tectonics/M
+ted/S
+teddy/S
+tedious/PY
+tediousness/M
+tedium/M
+tee/DSMH
+teeing
+teem/GDS
+teen/MS
+teenage/RZ
+teenager/M
+teeny/TR
+teenybopper/MS
+teeter/MDSG
+teethe/GDS
+teething/M
+teetotal
+teetotalism/M
+teetotaller/MS
+tektite/SM
+tel
+telecast/SZGMR
+telecaster/M
+telecommunication/MS
+telecommunications/M
+telecommute/ZGDRS
+telecommuter/M
+telecommuting/M
+teleconference/MGDS
+teleconferencing/M
+telegenic
+telegram/MS
+telegraph/MDRZG
+telegrapher/M
+telegraphese
+telegraphic
+telegraphically
+telegraphist/SM
+telegraphs
+telegraphy/M
+telekinesis/M
+telekinetic
+telemarketer/SM
+telemarketing/M
+telemeter/SM
+telemetry/SM
+teleological
+teleology
+telepathic
+telepathically
+telepathy/M
+telephone/DRSMZG
+telephoner/M
+telephonic
+telephonist/S
+telephony/M
+telephoto/SM
+telephotography/M
+teleplay/MS
+teleport
+teleportation
+teleprinter/MS
+teleprocessing/M
+teleprompter/SM
+telesales
+telescope/DSMG
+telescopic
+telescopically
+teletext/MS
+telethon/MS
+teletype/S
+teletypewriter/MS
+televangelism/M
+televangelist/MS
+televise/XGNDS
+television/M
+teleworker/S
+teleworking
+telex/MDSG
+tell/AGS
+teller/SM
+telling/Y
+telltale/SM
+tellurium/M
+telly/SM
+telnet
+temblor/MS
+temerity/M
+temp/MDRZTGS
+temper/MDG
+tempera/LSM
+temperament/MS
+temperamental/Y
+temperance/IM
+temperate/IY
+temperateness/M
+temperature/SM
+tempest/SM
+tempestuous/YP
+tempestuousness/M
+template's
+template/S
+temple/SM
+tempo/SM
+temporal/Y
+temporarily
+temporariness/M
+temporary/FSM
+temporize/ZGDRS
+temporizer/M
+tempt/SDRZG
+temptation/MS
+tempter/M
+tempting/Y
+temptress/MS
+tempura/M
+ten/BMH
+tenability/M
+tenable/U
+tenably
+tenacious/YP
+tenaciousness/M
+tenacity/M
+tenancy/SM
+tenant/SMDG
+tenanted/U
+tenantry/M
+tench
+tend/IEFDGS
+tended/U
+tendency/SM
+tendentious/YP
+tendentiousness/M
+tender/SMDRYTGP
+tenderfoot/MS
+tenderhearted/P
+tenderheartedness/M
+tenderize/ZGDRS
+tenderizer/M
+tenderloin/SM
+tenderness/M
+tendinitis/M
+tendon/SM
+tendril/SM
+tenement/SM
+tenet/SM
+tenfold
+tenner/S
+tennis/M
+tenon/SMDG
+tenor/SM
+tenpin/SM
+tenpins/M
+tense/DRSMYTGNXP
+tenseness/M
+tensile
+tension/ESM
+tensity/IM
+tensor/S
+tent/DGSM
+tentacle/DSM
+tentative/PY
+tentativeness/M
+tenterhook/MS
+tenth/MY
+tenths
+tenuity/M
+tenuous/PY
+tenuousness/M
+tenure/DSMG
+tepee/SM
+tepid/YP
+tepidity/M
+tepidness/M
+tequila/SM
+terabit/SM
+terabyte/MS
+terahertz/M
+terajoule/S
+terapixel/MS
+terawatt/S
+terbium/M
+tercentenary/SM
+tercentennial/SM
+teriyaki
+term/MDYGS
+termagant/MS
+terminable/IC
+terminal/MYS
+terminate/DSGNX
+termination/CSM
+terminator/S
+termini
+terminological/Y
+terminology/SM
+terminus/M
+termite/SM
+tern/IMS
+ternary/SM
+terr
+terrace/DSMG
+terracotta/M
+terrain/SM
+terrapin/MS
+terrarium/SM
+terrazzo/MS
+terrestrial/SMY
+terrible/P
+terribleness/M
+terribly
+terrier/M
+terrific
+terrifically
+terrify/GDS
+terrifying/Y
+terrine/S
+territorial/MS
+territoriality
+territory/SM
+terror/SM
+terrorism/M
+terrorist/SM
+terrorize/DSG
+terry/RMZ
+terrycloth/M
+terse/RYTP
+terseness/M
+tertiary
+tessellate/DSXGN
+tessellation/M
+test's/AFK
+test/AKFCDGS
+testable/CF
+testament/MS
+testamentary
+testate/S
+testator/MS
+testatrices
+testatrix/M
+tested/U
+tester/KSM
+testes
+testicle/MS
+testicular
+testifier/M
+testify/ZGDRS
+testily
+testimonial/MS
+testimony/SM
+testiness/M
+testings
+testis/M
+testosterone/M
+testy/PRT
+tetanus/M
+tetchily
+tetchy/PRT
+tether/SMDG
+tetra/SM
+tetracycline/M
+tetrahedral
+tetrahedron/MS
+tetrameter/SM
+text/FMS
+textbook/SM
+texted
+textile/MS
+texting
+textual/FY
+textural
+texture/MGDS
+thalami
+thalamus/M
+thalidomide/M
+thallium/M
+than
+thane/SM
+thank/SDG
+thankful/YP
+thankfulness/M
+thankless/PY
+thanklessness/M
+thanksgiving/SM
+that'd
+that'll
+that/M
+thatch/MDRSZG
+thatcher/M
+thatching/M
+thaw/MDGS
+the/JG
+theatre/SM
+theatregoer/MS
+theatrical/YS
+theatricality/M
+theatricals/M
+theatrics/M
+thee/S
+theft/SM
+their/S
+theism/M
+theist/SM
+theistic
+them
+thematic
+thematically
+theme/DSM
+themselves
+then/M
+thence
+thenceforth
+thenceforward
+theocracy/SM
+theocratic
+theodolite/S
+theologian/SM
+theological/Y
+theology/SM
+theorem/MS
+theoretic
+theoretical/Y
+theoretician/SM
+theorist/SM
+theorize/DSG
+theory/SM
+theosophic
+theosophical
+theosophist/SM
+theosophy/M
+therapeutic/S
+therapeutically
+therapeutics/M
+therapist/SM
+therapy/SM
+there/M
+thereabout/S
+thereafter
+thereat
+thereby
+therefor
+therefore
+therefrom
+therein
+theremin/SM
+thereof
+thereon
+thereto
+theretofore
+thereunder
+thereunto
+thereupon
+therewith
+therm/SM
+thermal/MYS
+thermionic
+thermodynamic/S
+thermodynamics/M
+thermometer/MS
+thermometric
+thermonuclear
+thermoplastic/SM
+thermos/MS
+thermostat/MS
+thermostatic
+thermostatically
+thesauri
+thesaurus/MS
+these/S
+thesis/M
+thespian/SM
+theta/SM
+thew/MS
+they
+they'd
+they'll
+they're
+they've
+thiamine/M
+thick/PMNRYXT
+thicken/DRJZG
+thickener/M
+thickening/M
+thicket/MS
+thickheaded/M
+thickness/MS
+thicko/S
+thickset
+thief/M
+thieve/DSG
+thievery/M
+thieving/M
+thievish
+thigh/M
+thighbone/MS
+thighs
+thimble/MS
+thimbleful/SM
+thin/YSP
+thine
+thing/M
+thingamabob/SM
+thingamajig/SM
+thingumabob/S
+thingummy/S
+thingy/S
+think/SRBZG
+thinkable/U
+thinker/M
+thinking's
+thinned
+thinner/MS
+thinness/M
+thinnest
+thinning
+third/SMY
+thirst/SGMD
+thirstily
+thirstiness/M
+thirsty/TPR
+thirteen/SMH
+thirteenth/M
+thirteenths
+thirtieth/M
+thirtieths
+thirty/HSM
+this
+thistle/MS
+thistledown/M
+thither
+tho
+thole/SM
+thong/SM
+thoracic
+thorax/MS
+thorium/M
+thorn/SM
+thorniness/M
+thorny/PRT
+thorough/RYPT
+thoroughbred/MS
+thoroughfare/MS
+thoroughgoing
+thoroughness/M
+those
+thou/MS
+though
+thought/SM
+thoughtful/YP
+thoughtfulness/M
+thoughtless/PY
+thoughtlessness/M
+thousand/MHS
+thousandfold
+thousandth/M
+thousandths
+thrall/SMDG
+thralldom/M
+thrash/JMDRSZG
+thrasher/M
+thrashing/M
+thread/SMDRZG
+threadbare
+threader/M
+threadlike
+thready/TR
+threat/SMNX
+threaten/DG
+threatening/Y
+three/SM
+threefold
+threepence/M
+threescore/MS
+threesome/SM
+threnody/SM
+thresh/MDRSZG
+thresher/M
+threshold/SM
+threw
+thrice
+thrift/SM
+thriftily
+thriftiness/M
+thriftless
+thrifty/PTR
+thrill/SMDRZG
+thriller/M
+thrilling/Y
+thrive/DSG
+throat/SM
+throatily
+throatiness/M
+throaty/RTP
+throb/SM
+throbbed
+throbbing
+throe/SM
+thrombi
+thrombolytic
+thromboses
+thrombosis/M
+thrombotic
+thrombus/M
+throne's
+throne/S
+throng/GSMD
+throttle/DRSMZG
+throttler/M
+through
+throughout
+throughput/M
+throughway/MS
+throw/SMRZG
+throwaway/SM
+throwback/SM
+thrower/M
+thrown
+thru
+thrum/SM
+thrummed
+thrumming
+thrush/MS
+thrust/GSM
+thud/MS
+thudded
+thudding
+thug/MS
+thuggery/M
+thuggish
+thulium/M
+thumb/SMDG
+thumbnail/SM
+thumbprint/SM
+thumbscrew/SM
+thumbtack/SM
+thump/SMDG
+thumping/M
+thunder/ZGMDRS
+thunderbolt/SM
+thunderclap/SM
+thundercloud/MS
+thunderer/M
+thunderhead/SM
+thunderous/Y
+thundershower/SM
+thunderstorm/SM
+thunderstruck
+thundery
+thunk/S
+thus
+thwack/ZGSMDR
+thwacker/M
+thwart/GSMD
+thy
+thyme/M
+thymine/M
+thymus/MS
+thyroid/MS
+thyroidal
+thyself
+ti/MRZ
+tiara/SM
+tibia/M
+tibiae
+tibial
+tic/SM
+tick/MDRZGS
+ticker/M
+ticket/GSMD
+ticking/M
+tickle/DRSMZG
+tickler/M
+ticklish/YP
+ticklishness/M
+ticktacktoe/M
+ticktock/MS
+tidal/Y
+tidbit/SM
+tiddler/S
+tiddly
+tiddlywink/S
+tiddlywinks/M
+tide/MGJDS
+tideland/SM
+tidemark/S
+tidewater/MS
+tideway/MS
+tidily/U
+tidiness/UM
+tidings/M
+tidy/DRSMTGP
+tie's
+tie/AUSD
+tieback/MS
+tiebreak/RSZ
+tiebreaker/M
+tiepin/S
+tier/MD
+tiff/MDGS
+tiger/SM
+tigerish
+tight/SNRYPXT
+tighten/ZGDR
+tightener/M
+tightfisted
+tightness/M
+tightrope/MS
+tights/M
+tightwad/MS
+tigress/MS
+til
+tilapia
+tilde/SM
+tile/MZGDRS
+tiler/M
+tiling/M
+till's
+till/EDRZGS
+tillable
+tillage/M
+tiller/EM
+tilt/MDGS
+timber/SMDG
+timberland/M
+timberline/MS
+timbre/SM
+timbrel/SM
+time/MYZGJDRS
+timekeeper/MS
+timekeeping/M
+timeless/PY
+timelessness/M
+timeline/MS
+timeliness/UM
+timely/UPRT
+timeout/SM
+timepiece/MS
+timer/M
+timescale/S
+timeserver/SM
+timeserving/M
+timeshare/S
+timestamp/SMD
+timetable/DSMG
+timeworn
+timezone
+timid/RYTP
+timidity/M
+timidness/M
+timing/M
+timorous/PY
+timorousness/M
+timothy/M
+timpani/M
+timpanist/SM
+tin/SM
+tincture/MGDS
+tinder/M
+tinderbox/MS
+tine/MS
+tinfoil/M
+ting/MDYG
+tinge/SM
+tingeing
+tingle/DSMGJ
+tingling/M
+tininess/M
+tinker/ZGSMDR
+tinkerer/M
+tinkle/DSMG
+tinned
+tinniness/M
+tinning
+tinnitus/M
+tinny/PRT
+tinplate/M
+tinpot
+tinsel/SM
+tinselled
+tinselling
+tinsmith/M
+tinsmiths
+tint/MDGS
+tintinnabulation/MS
+tintype/MS
+tinware/M
+tiny/RTP
+tip/SM
+tipped
+tipper/SM
+tippet/SM
+tippex/GDS
+tipping
+tipple/DRSMZG
+tippler/M
+tipsily
+tipsiness/M
+tipster/MS
+tipsy/RPT
+tiptoe/DSM
+tiptoeing
+tiptop/SM
+tirade/SM
+tiramisu/MS
+tire's
+tire/AGDS
+tired/PRYT
+tiredness/M
+tireless/YP
+tirelessness/M
+tiresome/PY
+tiresomeness/M
+tissue/SM
+tit/SM
+titan/SM
+titanic
+titanium/M
+titch/S
+titchy
+tithe/DRSMZG
+tither/M
+titian/M
+titillate/DSGN
+titillating/Y
+titillation/M
+titivate/DSGN
+titivation/M
+title/DSMG
+titled/U
+titleholder/MS
+titlist/MS
+titmice
+titmouse/M
+titter/SGMD
+tittle/SM
+titty/S
+titular
+tizz
+tizzy/SM
+tn
+tnpk
+to/IU
+toad/MS
+toadstool/MS
+toady/DSMG
+toadyism/M
+toast/SMDRZG
+toaster/M
+toastmaster/SM
+toastmistress/MS
+toasty/TRS
+tobacco/MS
+tobacconist/SM
+toboggan/ZGSMDR
+tobogganer/M
+tobogganing/M
+toccata/S
+tocopherol
+tocsin/SM
+today/M
+toddle/DRSMZG
+toddler/M
+toddy/SM
+toe/DSM
+toecap/SM
+toehold/MS
+toeing
+toenail/MS
+toerag/S
+toff/S
+toffee/SM
+tofu/M
+tog/SM
+toga/MDS
+together/P
+togetherness/M
+togged
+togging
+toggle/DSMG
+togs/M
+toil/MDRZGS
+toiler/M
+toilet/MDGS
+toiletry/SM
+toilette/M
+toilsome
+toke/MGDS
+token/SM
+tokenism/M
+told/AU
+tole/M
+tolerable/I
+tolerably/I
+tolerance/IM
+tolerances
+tolerant/IY
+tolerate/GNDS
+toleration/M
+toll/MDGS
+tollbooth/M
+tollbooths
+tollgate/SM
+tollway/SM
+toluene/M
+tom/SM
+tomahawk/SGMD
+tomato/M
+tomatoes
+tomb/MDGS
+tombola/S
+tomboy/MS
+tomboyish
+tombstone/MS
+tomcat/MS
+tome/MS
+tomfoolery/SM
+tomographic
+tomography/M
+tomorrow/MS
+tomtit/MS
+ton/SM
+tonal/Y
+tonality/SM
+tone's
+tone/IZGDRS
+tonearm/SM
+toneless/Y
+toner/IM
+tong/MDGS
+tongue/MGDS
+tongueless
+tonic/SM
+tonight/M
+tonnage/SM
+tonne/SM
+tonsil/MS
+tonsillectomy/SM
+tonsillitis/M
+tonsorial
+tonsure/DSMG
+tony/RT
+too
+took/A
+tool's
+tool/ADGS
+toolbar/SM
+toolbox/MS
+toolkit
+toolmaker/MS
+toot/MDRZGS
+tooter/M
+tooth/MD
+toothache/MS
+toothbrush/MS
+toothily
+toothless
+toothpaste/SM
+toothpick/SM
+toothsome
+toothy/RT
+tootle/GDS
+tootsie/S
+top/SM
+topaz/MS
+topcoat/SM
+topdressing/SM
+topee/S
+topflight
+topi
+topiary/M
+topic/SM
+topical/Y
+topicality/M
+topknot/SM
+topless
+topmast/SM
+topmost
+topnotch
+topographer/SM
+topographic
+topographical/Y
+topography/SM
+topological/Y
+topology
+topped
+topper/MS
+topping/SM
+topple/GDS
+topsail/SM
+topside/SM
+topsoil/M
+topspin/M
+toque/SM
+tor/SM
+torch/GMDS
+torchbearer/MS
+torchlight/M
+tore
+toreador/MS
+torment/SMDG
+tormenting/Y
+tormentor/MS
+torn
+tornado/M
+tornadoes
+torpedo/GMD
+torpedoes
+torpid/Y
+torpidity/M
+torpor/M
+torque/MGDS
+torrent/SM
+torrential
+torrid/YP
+torridity/M
+torridness/M
+torsion/M
+torsional
+torso/SM
+tort's
+tort/FEAS
+torte/SM
+tortellini/M
+tortilla/MS
+tortoise/MS
+tortoiseshell/SM
+tortoni/M
+tortuous/PY
+tortuousness/M
+torture/DRSMZG
+torturer/M
+torturous
+torus
+tosh
+toss/MDRSZG
+tossup/MS
+tot/SGMD
+total/SMY
+totalisator/MS
+totalitarian/SM
+totalitarianism/M
+totality/SM
+totalled
+totalling
+tote/MS
+totem/SM
+totemic
+totted
+totter/ZGMDRS
+totterer/M
+totting
+toucan/MS
+touch/AGMDS
+touchdown/SM
+touche/BJ
+touched/U
+touchily
+touchiness/M
+touching/Y
+touchline/S
+touchpaper/S
+touchscreen/MS
+touchstone/MS
+touchy/RPT
+tough/XTGMDNRYP
+toughen/ZGDR
+toughener/M
+toughie/SM
+toughness/M
+toughs
+toupee/MS
+tour/CFSGDM
+tourism/M
+tourist/MS
+touristic
+touristy
+tourmaline/M
+tournament/SM
+tourney/MS
+tourniquet/MS
+tousle/GDS
+tout/MDGS
+tow/SZGMDR
+toward/S
+towboat/MS
+towel/SM
+towelette/SM
+towelled
+towelling/SM
+tower/GMD
+towhead/MDS
+towhee/MS
+towline/MS
+town/MS
+townee/S
+townhouse/MS
+townie/MS
+townsfolk/M
+township/MS
+townsman/M
+townsmen
+townspeople/M
+townswoman/M
+townswomen
+towpath/M
+towpaths
+towrope/SM
+toxemia/M
+toxic
+toxicity/SM
+toxicological
+toxicologist/SM
+toxicology/M
+toxin/SM
+toy/SGMD
+toyboy/S
+tr
+trabecula
+trabeculae
+trabecular
+trace/JDRSMZG
+traceability
+traceable/U
+tracer/M
+tracery/SM
+trachea/M
+tracheae
+tracheal
+tracheotomy/SM
+tracing/M
+track/ZGSMDR
+trackball/SM
+tracker/M
+trackless
+tracksuit/S
+tract's
+tract/CEKFAS
+tractability/IM
+tractable/I
+tractably/I
+traction/EFACKM
+tractor/FCKMS
+trad
+trade/JDRSMZG
+trademark/SGMD
+trader/M
+tradesman/M
+tradesmen
+tradespeople/M
+tradeswoman/M
+tradeswomen
+trading/M
+tradition/MS
+traditional/Y
+traditionalism/M
+traditionalist/SM
+traduce/DRSZG
+traducer/M
+traffic/SM
+trafficked
+trafficker/SM
+trafficking/M
+tragedian/SM
+tragedienne/MS
+tragedy/SM
+tragic
+tragically
+tragicomedy/SM
+tragicomic
+trail/ZGSMDR
+trailblazer/MS
+trailblazing/M
+trailer/M
+train/ZGSMDRB
+trained/U
+trainee/SM
+trainer/M
+training/M
+trainload/MS
+trainman/M
+trainmen
+trainspotter/S
+trainspotting
+traipse/DSMG
+trait/SM
+traitor/SM
+traitorous/Y
+trajectory/SM
+tram/MS
+tramcar/S
+tramlines
+trammed
+trammel/SM
+trammelled/U
+trammelling
+tramming
+tramp/ZGSMDR
+tramper/M
+trample/DRSMZG
+trampler/M
+trampoline/MGDS
+tramway/S
+trance/MS
+tranche/S
+tranquil/RYT
+tranquility/M
+tranquilize/ZGDRS
+tranquilizer/M
+trans/I
+transact/DGS
+transaction/SM
+transactional
+transactor/MS
+transatlantic
+transceiver/SM
+transcend/GSD
+transcendence/M
+transcendent
+transcendental/Y
+transcendentalism/M
+transcendentalist/SM
+transcontinental
+transcribe/ZGDRS
+transcriber/M
+transcript/MS
+transcription/SM
+transducer/MS
+transduction
+transect/DSG
+transept/MS
+transfer/MBS
+transferal/MS
+transference/M
+transferred
+transferring
+transfiguration/M
+transfigure/GDS
+transfinite
+transfix/DSG
+transform/BSZGMDR
+transformation/SM
+transformational
+transformer/M
+transfuse/DSXGN
+transfusion/M
+transgender/S
+transgenic
+transgress/GDS
+transgression/SM
+transgressor/SM
+transience/M
+transiency/M
+transient/SMY
+transistor/SM
+transistorize/DSG
+transit/SGMD
+transition/GSMD
+transitional/Y
+transitive/ISMY
+transitiveness/M
+transitivity/M
+transitory
+transl
+translatable/U
+translate/DSGNBX
+translated/U
+translation/M
+translator/SM
+transliterate/DSGNX
+transliteration/M
+translocation
+translucence/M
+translucency/M
+translucent/Y
+transmigrate/GNDS
+transmigration/M
+transmissible
+transmission/MS
+transmit/S
+transmittable
+transmittal/M
+transmittance/M
+transmitted
+transmitter/SM
+transmitting
+transmogrification/M
+transmogrify/DSNG
+transmutation/SM
+transmute/BDSG
+transnational/MS
+transoceanic
+transom/SM
+transpacific
+transparency/SM
+transparent/Y
+transphobia/M
+transphobic
+transpiration/M
+transpire/DSG
+transplant/MDGS
+transplantation/M
+transpolar
+transponder/SM
+transport/BSZGMDR
+transportation/M
+transporter/M
+transpose/DSG
+transposition/MS
+transsexual/SM
+transsexualism/M
+transship/SL
+transshipment/M
+transshipped
+transshipping
+transubstantiation/M
+transversal
+transverse/MYS
+transvestism/M
+transvestite/MS
+trap/MS
+trapdoor/MS
+trapeze/SM
+trapezium/SM
+trapezoid/SM
+trapezoidal
+trappable
+trapped
+trapper/SM
+trapping/S
+trappings/M
+trapshooting/M
+trash/GMDS
+trashcan/MS
+trashiness/M
+trashy/RPT
+trauma/MS
+traumatic
+traumatically
+traumatize/GDS
+travail/SGMD
+travel/MS
+travelled
+traveller/SM
+travelling/MS
+travelogue/MS
+traversal/SM
+traverse/DSMG
+travesty/GDSM
+trawl/ZGSMDR
+trawler/M
+tray/MS
+treacherous/PY
+treacherousness/M
+treachery/SM
+treacle/M
+treacly
+tread/AGSM
+treadle/DSMG
+treadmill/MS
+treas
+treason/BM
+treasonous
+treasure/DRSMZG
+treasurer/M
+treasury/SM
+treat/AGSMD
+treatable
+treated/U
+treatise/SM
+treatment/MS
+treaty/SM
+treble/MGDS
+tree/MDS
+treeing
+treeless
+treelike
+treeline
+treetop/SM
+trefoil/SM
+trek/MS
+trekked
+trekker/SM
+trekking
+trellis/GMDS
+trematode/MS
+tremble/DSMG
+tremendous/Y
+tremolo/SM
+tremor/MS
+tremulous/PY
+tremulousness/M
+trench's
+trench/ADSG
+trenchancy/M
+trenchant/Y
+trencher/MS
+trencherman/M
+trenchermen
+trend/GSMD
+trendily
+trendiness/M
+trendsetter/S
+trendsetting
+trendy/RSMPT
+trepidation/M
+trespass/MDRSZG
+trespasser/M
+tress/EMS
+trestle/MS
+trews
+trey/MS
+triad/SM
+triage/MD
+trial/ASM
+trialled
+trialling
+triangle/SM
+triangular/Y
+triangulate/GNDS
+triangulation/M
+triathlete/S
+triathlon/SM
+tribal
+tribalism/M
+tribe/SM
+tribesman/M
+tribesmen
+tribeswoman/M
+tribeswomen
+tribulation/SM
+tribunal/SM
+tribune/MS
+tributary/SM
+tribute's
+tribute/FS
+trice/M
+tricentennial/MS
+triceps/MS
+triceratops/M
+trichina/M
+trichinae
+trichinosis/M
+trick/GSMD
+trickery/M
+trickily
+trickiness/M
+trickle/MGDS
+trickster/SM
+tricky/TRP
+tricolour/MS
+tricycle/SM
+trident/MS
+tried/U
+triennial/MYS
+trier/SM
+trifecta/SM
+trifle/MZGDRS
+trifler/M
+trifocals/M
+trig/M
+trigger/MDSG
+triglyceride/MS
+trigonometric
+trigonometrical
+trigonometry/M
+trike/SM
+trilateral/S
+trilby/SM
+trill/GSMD
+trillion/SMH
+trillionth/M
+trillionths
+trillium/M
+trilobite/SM
+trilogy/SM
+trim/PMYS
+trimaran/MS
+trimester/SM
+trimmed/U
+trimmer/SM
+trimmest
+trimming/SM
+trimmings/M
+trimness/M
+trimonthly
+trinitrotoluene/M
+trinity/SM
+trinket/SM
+trio/MS
+trip/MYS
+tripartite
+tripe/M
+triple/MGDS
+triplet/SM
+triplex/MS
+triplicate/MGDS
+tripod/MS
+tripodal
+tripos
+tripped
+tripper/SM
+tripping
+triptych/M
+triptychs
+tripwire/S
+trireme/SM
+trisect/SDG
+trisection/M
+trite/FPYT
+triteness/FM
+triter
+tritium/M
+triumph/GMD
+triumphal
+triumphalism
+triumphalist
+triumphant/Y
+triumphs
+triumvir/MS
+triumvirate/SM
+trivalent
+trivet/MS
+trivia/M
+trivial/Y
+triviality/SM
+trivialization/M
+trivialize/GDS
+trivium/M
+trochaic
+trochee/SM
+trod/AU
+trodden/A
+troglodyte/SM
+troika/MS
+troll/SGMD
+trolley/SM
+trolleybus/MS
+trollop/SM
+trombone/MS
+trombonist/MS
+tromp/SGD
+tron/S
+troop/SZGMDR
+trooper/M
+troopship/MS
+trope/SM
+trophy/SM
+tropic/MS
+tropical/Y
+tropics/M
+tropism/SM
+troposphere/SM
+trot/MS
+troth/M
+trotted
+trotter/SM
+trotting
+troubadour/MS
+trouble/DSMG
+troubled/U
+troublemaker/MS
+troubleshoot/DRZGS
+troubleshooter/M
+troubleshooting/M
+troubleshot
+troublesome/Y
+trough/M
+troughs
+trounce/DRSZG
+trouncer/M
+troupe/MZGDRS
+trouper/M
+trouser/SM
+trousers/M
+trousseau/M
+trousseaux
+trout/SM
+trove/SM
+trow/DSG
+trowel/MS
+trowelled
+trowelling
+troy/S
+truancy/M
+truant/GMDS
+truce/SM
+truck/SZGMDR
+trucker/M
+trucking/M
+truckle/MGDS
+truckload/SM
+truculence/M
+truculent/Y
+trudge/MGDS
+true/MTGDRS
+truelove/SM
+truffle/MS
+trug/S
+truism/MS
+truly/U
+trump/SGMD
+trumpery/M
+trumpet/ZGMDRS
+trumpeter/M
+truncate/GNDS
+truncation/M
+truncheon/SM
+trundle/MZGDRS
+trundler/M
+trunk/SGM
+truss/GMDS
+trust/ESGMD
+trustee/MS
+trusteeship/SM
+trustful/EY
+trustfulness/M
+trusting/Y
+trustworthiness/M
+trustworthy/TPR
+trusty/TRSM
+truth/ZMR
+truther/M
+truthful/UYP
+truthfulness/UM
+truthiness
+truths/U
+try's
+try/AGDS
+trying/Y
+tryout/SM
+tryptophan
+tryst/SMDG
+tsarists
+tsetse/MS
+tsp
+tsunami/SM
+ttys
+tub/SZGMDR
+tuba/MS
+tubal
+tubby/TR
+tube/MS
+tubeless/M
+tuber/M
+tubercle/SM
+tubercular
+tuberculin/M
+tuberculosis/M
+tuberculous
+tuberose/M
+tuberous
+tubful/MS
+tubing/M
+tubular
+tubule/MS
+tuck/MDRSZG
+tucker/MDG
+tuft/MDRSZG
+tufter/M
+tug/SM
+tugboat/MS
+tugged
+tugging
+tuition/IM
+tularemia/M
+tulip/SM
+tulle/M
+tum/S
+tumble/DRSMZG
+tumbledown
+tumbler/M
+tumbleweed/SM
+tumbling/M
+tumbrel/SM
+tumescence/M
+tumescent
+tumid
+tumidity/M
+tummy/SM
+tumorous
+tumour/SM
+tumult/SM
+tumultuous/Y
+tun/SZGMDR
+tuna/MS
+tundra/SM
+tune/MS
+tuneful/YP
+tunefulness/M
+tuneless/Y
+tuner/M
+tuneup/SM
+tungsten/M
+tunic/SM
+tunnel/SM
+tunnelled
+tunneller/SM
+tunnelling/S
+tunny/SM
+tuple/S
+tuppence
+tuppenny
+tuque/SM
+turban/SMD
+turbid
+turbidity/M
+turbine/SM
+turbo/SM
+turbocharge/ZGDRS
+turbocharger/M
+turbofan/SM
+turbojet/SM
+turboprop/SM
+turbot/SM
+turbulence/M
+turbulent/Y
+turd/MS
+turducken/SM
+tureen/SM
+turf/MDSG
+turfy
+turgid/Y
+turgidity/M
+turkey/SM
+turmeric/SM
+turmoil/MS
+turn/AMDRSZG
+turnabout/SM
+turnaround/SM
+turnbuckle/SM
+turncoat/SM
+turner/AM
+turning/MS
+turnip/SM
+turnkey/MS
+turnoff/MS
+turnout/MS
+turnover/MS
+turnpike/MS
+turnstile/SM
+turntable/SM
+turpentine/M
+turpitude/M
+turps
+turquoise/SM
+turret/SMD
+turtle/SM
+turtledove/SM
+turtleneck/SMD
+tush/MS
+tusk/MDS
+tussle/DSMG
+tussock/MS
+tussocky
+tut/SM
+tutelage/M
+tutelary
+tutor/SMDG
+tutored/U
+tutorial/SM
+tutorship/M
+tutted
+tutti/SM
+tutting
+tutu/MS
+tux/MS
+tuxedo/SM
+twaddle/MZGDRS
+twaddler/M
+twain/M
+twang/SMDG
+twangy/RT
+twas
+twat/S
+tweak/SMDG
+twee
+tweed/SM
+tweeds/M
+tweedy/RT
+tween
+tweet's
+tweet/ASDG
+tweeter/SM
+tweezers/M
+twelfth/M
+twelfths
+twelve/SM
+twelvemonth/M
+twelvemonths
+twentieth/M
+twentieths
+twenty/SMH
+twerk/SDG
+twerp/SM
+twice
+twiddle/MGDS
+twiddly
+twig/MS
+twigged
+twigging
+twiggy/TR
+twilight/M
+twilit
+twill/MD
+twin/MDRSZG
+twine/SM
+twiner/M
+twinge/DSMG
+twink/SY
+twinkle/MGJDS
+twinkling/M
+twinned
+twinning
+twinset/S
+twirl/SMDRZG
+twirler/M
+twirly
+twist's
+twist/USDG
+twister/MS
+twisty/TR
+twit/MS
+twitch/GMDS
+twitchy/RT
+twitted
+twitter/MDSG
+twittery
+twitting
+twixt
+two/SM
+twofer/SM
+twofold
+twopence/SM
+twopenny
+twosome/SM
+twp
+tycoon/SM
+tying/AU
+tyke/MS
+tympani/M
+tympanic
+tympanist/MS
+tympanum/SM
+type's
+type/AGDS
+typecast/GS
+typeface/MS
+typescript/MS
+typeset/S
+typesetter/MS
+typesetting/M
+typewrite/RSZG
+typewriter/M
+typewriting/M
+typewritten
+typewrote
+typhoid/M
+typhoon/MS
+typhus/M
+typical/UY
+typicality/M
+typification/M
+typify/NGDS
+typing/M
+typist/SM
+typo/MS
+typographer/SM
+typographic
+typographical/Y
+typography/M
+typology/SM
+tyrannic
+tyrannical/Y
+tyrannicidal
+tyrannicide/S
+tyrannize/GDS
+tyrannosaur/MS
+tyrannosaurus/MS
+tyrannous
+tyranny/SM
+tyrant/SM
+tyro/MS
+tzatziki
+u/S
+ubiquitous/Y
+ubiquity/M
+udder/SM
+ufologist/SM
+ufology/M
+ugh
+ugliness/M
+ugly/RTP
+uh
+uhf
+ukase/SM
+ukulele/SM
+ulcer/SM
+ulcerate/XDSGN
+ulceration/M
+ulcerous
+ulna/M
+ulnae
+ulnar
+ulster/MS
+ult
+ulterior
+ultimate/MY
+ultimatum/MS
+ultimo
+ultra/SM
+ultraconservative/SM
+ultrahigh
+ultralight/SM
+ultramarine/M
+ultramodern
+ultrasensitive
+ultrashort
+ultrasonic
+ultrasonically
+ultrasound/MS
+ultraviolet/M
+ululate/DSGNX
+ululation/M
+um
+umbel/SM
+umber/M
+umbilical
+umbilici
+umbilicus/M
+umbra/SM
+umbrage/M
+umbrella/SM
+umiak/SM
+umlaut/MS
+ump/SGMD
+umpire/MGDS
+umpteen/H
+unabridged/MS
+unacceptability
+unacceptable
+unaccommodating
+unaccountably
+unadventurous
+unaesthetic
+unalterably
+unambitious
+unanimity/M
+unanimous/Y
+unapparent
+unappetizing
+unappreciative
+unary
+unassertive
+unassimilable
+unassuming/Y
+unavailing/Y
+unaware/S
+unbeknownst
+unbend/SG
+unbent
+unbid
+unblinking/Y
+unblushing/Y
+unbosom/DG
+unbound/D
+unbox/GDS
+unbreakable
+unbroken
+uncanny/T
+uncap/S
+uncaring
+unceasing/Y
+unchangeable
+uncharacteristic
+uncharitable
+unchaste/RT
+uncial/M
+uncle/SM
+unclean/DRPT
+uncleanly/T
+unclear/DRT
+uncomfortable
+uncommon/T
+uncompelling
+uncomplaining/Y
+uncomplicated
+uncomprehending/Y
+uncompromising/Y
+unconditional/Y
+uncongenial
+unconscionable
+unconscionably
+unconscious/M
+unconstitutional/Y
+uncontrollably
+uncontroversial
+uncool
+uncooperative
+uncouth/Y
+uncrushable
+unction/SM
+unctuous/YP
+unctuousness/M
+uncut
+undaunted/Y
+undecided/SM
+undemonstrative/Y
+undeniably
+under
+underachieve/LZGDRS
+underachiever/M
+underact/SDG
+underage
+underappreciated
+underarm/SM
+underbelly/SM
+underbid/S
+underbidding
+underbrush/M
+undercarriage/MS
+undercharge/MGDS
+underclass/MS
+underclassman/M
+underclassmen
+underclothes/M
+underclothing/M
+undercoat/GJSMD
+undercoating/M
+undercover
+undercurrent/SM
+undercut/SM
+undercutting
+underdeveloped
+underdevelopment/M
+underdog/SM
+underdone
+underemployed
+underemployment/M
+underestimate/DSMGNX
+underestimation/M
+underexpose/GDS
+underexposure/MS
+underfed
+underfeed/GS
+underfloor
+underflow
+underfoot
+underfunded
+underfur/M
+undergarment/SM
+undergo/G
+undergoes
+undergone
+undergrad/S
+undergraduate/SM
+underground/MS
+undergrowth/M
+underhand
+underhanded/PY
+underhandedness/M
+underinflated
+underlain
+underlay/SM
+underlie/S
+underline/MGDS
+underling/MS
+underlip/SM
+underlying
+undermanned
+undermentioned
+undermine/GDS
+undermost
+underneath/M
+underneaths
+undernourished
+undernourishment/M
+underpaid
+underpants/M
+underpart/MS
+underpass/MS
+underpay/GSL
+underpayment/SM
+underpin/S
+underpinned
+underpinning/MS
+underplay/DGS
+underpopulated
+underprivileged
+underproduction/M
+underrate/GDS
+underrepresented
+underscore/DSMG
+undersea/S
+undersecretary/SM
+undersell/GS
+undersexed
+undershirt/SM
+undershoot/SG
+undershorts/M
+undershot
+underside/MS
+undersign/DGS
+undersigned/M
+undersized
+underskirt/SM
+undersold
+understaffed
+understand/SGBJ
+understandably
+understanding/MY
+understate/DSLG
+understatement/SM
+understood
+understudy/GDSM
+undertake/ZGJRS
+undertaken
+undertaker/M
+undertaking/M
+underthings/M
+undertone/MS
+undertook
+undertow/SM
+underused
+underutilized
+undervaluation/M
+undervalue/DSG
+underwater
+underway
+underwear/M
+underweight/M
+underwent
+underwhelm/DGS
+underwire/DS
+underworld/MS
+underwrite/ZGRS
+underwriter/M
+underwritten
+underwrote
+undesirable/MS
+undies/M
+undo
+undoubted/Y
+undramatic
+undue
+undulant
+undulate/DSXGN
+undulation/M
+undying
+unearthliness/M
+unease/M
+uneasy/T
+uneatable
+uneconomic
+unemployed/M
+unending
+unenterprising
+unequal/Y
+unerring/Y
+unessential
+uneven/Y
+unexceptionably
+unexcited
+unexciting
+unexpected/YP
+unexpectedness/M
+unfailing/Y
+unfair/PTRY
+unfaltering
+unfamiliar
+unfathomably
+unfed
+unfeeling/Y
+unfeminine
+unfit/S
+unfitting
+unfix/GDS
+unflagging/Y
+unflappability/M
+unflappable
+unflappably
+unflattering
+unflinching/Y
+unforgettably
+unforgivably
+unfortunate/MS
+unfriendly/T
+unfrock/DG
+unfruitful
+unfunny
+ungainliness/M
+ungainly/RPT
+ungenerous
+ungentle
+ungodly/T
+ungraceful/Y
+ungrudging
+unguarded
+unguent/SM
+ungulate/MS
+unhandy/T
+unhappy/T
+unhealthful
+unhealthy/T
+unhistorical
+unholy/T
+unhurt
+unicameral
+unicellular
+unicorn/SM
+unicycle/SM
+unidirectional
+unification/AM
+uniform/SMDYG
+uniformity/M
+unify/AGDSN
+unilateral/Y
+unilateralism
+unimportant
+unimpressive
+uninformative
+uninhibited/Y
+uninsured
+unintelligent
+unintended
+uninteresting
+uninterrupted/Y
+uninterruptible
+uninviting
+union/ASM
+unionism/M
+unionist/MS
+unique/YTRP
+uniqueness/M
+unisex/M
+unison/M
+unitary
+unite/AEGSD
+unitedly
+unities
+unitize/DSG
+unity/EM
+univalent
+univalve/SM
+universal/MYS
+universalism
+universalist
+universality/M
+universalize/DSG
+universe/SM
+university/SM
+univocal
+unjust/Y
+unkempt
+unkind/T
+unkindly/T
+unknowable/M
+unknown/SM
+unleaded/M
+unless
+unlike/PB
+unlikely/T
+unlock/DSG
+unlovable
+unlovely/TR
+unloving
+unlucky/T
+unmanly/T
+unmarried
+unmeaning
+unmentionable/MS
+unmentionables/M
+unmet
+unmindful
+unmissable
+unmistakably
+unmoral
+unmovable
+unmusical
+unnecessary
+unnerving/Y
+unobservant
+unoffensive
+unofficial/Y
+unoriginal
+unpeople
+unperceptive
+unpersuasive
+unpick/GDS
+unpin/S
+unpleasing
+unpolitical
+unpopular
+unpractical
+unprecedented/Y
+unprofessional/Y
+unpromising
+unpropitious
+unquestioning/Y
+unquiet/TR
+unravelling
+unread/B
+unready
+unreal
+unreasoning
+unregenerate
+unrelated
+unrelenting/Y
+unrelieved/Y
+unremarkable
+unremitting/Y
+unrepentant
+unreported
+unrepresentative
+unrest/M
+unrevealing
+unripe/TR
+unroll/GDS
+unromantic
+unruliness/M
+unruly/RTP
+unsafe/YTR
+unsalable
+unsavoury
+unscathed
+unseeing/Y
+unseemly/T
+unseen/M
+unsentimental
+unset
+unshakable
+unshakably
+unshapely
+unshockable
+unshorn
+unsightliness/M
+unsightly/PT
+unskillful/Y
+unsmiling
+unsociable
+unsocial
+unsold
+unsound/PRYT
+unspeakable
+unspeakably
+unspecific
+unspectacular
+unsporting
+unstable
+unsteady/TRP
+unstinting/Y
+unstrapping
+unsubstantial
+unsubtle
+unsuitable
+unsure
+unsuspecting/Y
+unsymmetrical
+untactful
+unthinkably
+unthinking/Y
+untidy/PTR
+until
+untimely/T
+untiring/Y
+untouchable/MS
+untoward
+untraveled
+untrue/RT
+untrustworthy
+untruth/M
+unutterable
+unutterably
+unwarrantable
+unwary/T
+unwavering
+unwed
+unwelcome/G
+unwell
+unwieldiness/M
+unwieldy/TRP
+unwise/RYT
+unworried
+unworthy/T
+unwound
+unwrapping
+unyielding
+up/S
+upbeat/MS
+upbraid/SGD
+upbringing/MS
+upchuck/SGD
+upcoming
+upcountry/M
+update/MGDRS
+updraft/MS
+upend/SGD
+upfront
+upgrade/MGDS
+upheaval/MS
+upheld
+uphill/MS
+uphold/ZGRS
+upholder/M
+upholster/ASGD
+upholsterer/MS
+upholstery/M
+upkeep/M
+upland/MS
+uplift/JSMDG
+upload/SDG
+upmarket
+upmost
+upon
+upped
+upper/SM
+uppercase/M
+upperclassman/M
+upperclassmen
+upperclasswoman
+upperclasswomen
+uppercut/MS
+uppercutting
+uppermost
+upping
+uppish
+uppity
+upraise/DSG
+uprear/GSD
+upright/MYPS
+uprightness/M
+uprising/SM
+upriver
+uproar/SM
+uproarious/Y
+uproot/GSD
+upscale
+upset/SM
+upsetting
+upshot/SM
+upside/SM
+upsilon/MS
+upstage/GDS
+upstairs
+upstanding
+upstart/MDSG
+upstate/M
+upstream
+upstroke/SM
+upsurge/MGDS
+upswing/MS
+uptake/SM
+uptempo
+upthrust/GSM
+uptick/SM
+uptight
+uptown/M
+uptrend
+upturn/GSMD
+upward/SY
+upwind
+uracil/M
+uranium/M
+urban
+urbane/RYT
+urbanity/M
+urbanization/M
+urbanize/DSG
+urbanologist/MS
+urbanology/M
+urchin/SM
+urea/M
+uremia/M
+uremic
+ureter/SM
+urethane/M
+urethra/M
+urethrae
+urethral
+urge/MGDS
+urgency/M
+urgent/Y
+uric
+urinal/SM
+urinalyses
+urinalysis/M
+urinary
+urinate/GNDS
+urination/M
+urine/M
+urn/SM
+urogenital
+urological
+urologist/MS
+urology/M
+ursine
+urticaria/M
+usability/M
+usable/UA
+usage/SM
+use/AEDSMG
+used/U
+useful/PY
+usefulness/M
+useless/YP
+uselessness/M
+user/MS
+username/MS
+usher/SMDG
+usherette/SM
+usu
+usual's
+usual/UY
+usurer/SM
+usurious
+usurp/SDRZG
+usurpation/M
+usurper/M
+usury/M
+utensil/SM
+uteri
+uterine
+uterus/M
+utilitarian/MS
+utilitarianism/M
+utility/SM
+utilization/M
+utilize/GBDS
+utmost/M
+utopia/SM
+utter/SDYG
+utterance/SM
+uttermost/M
+uveitis
+uvula/SM
+uvular/MS
+uxorious
+v/AS
+vac/S
+vacancy/SM
+vacant/Y
+vacate/DSG
+vacation/ZGMDRS
+vacationer/M
+vacationist/SM
+vaccinate/GNDSX
+vaccination/M
+vaccine/SM
+vacillate/XGNDS
+vacillation/M
+vacuity/M
+vacuole/MS
+vacuous/YP
+vacuousness/M
+vacuum/GSMD
+vagabond/SMDG
+vagabondage/M
+vagarious
+vagary/SM
+vagina/SM
+vaginae
+vaginal/Y
+vaginitis
+vagrancy/M
+vagrant/MS
+vague/RYTP
+vagueness/M
+vagus
+vain/RYT
+vainglorious/Y
+vainglory/M
+val
+valance/MS
+vale/MS
+valediction/MS
+valedictorian/SM
+valedictory/SM
+valence/MS
+valency/SM
+valentine/SM
+valet/SMDG
+valetudinarian/MS
+valetudinarianism/M
+valiance/M
+valiant/Y
+valid/Y
+validate/IGNDS
+validation/IM
+validations
+validity/IM
+validness/M
+valise/SM
+valley/SM
+valorous/Y
+valour/M
+valuable/MS
+valuate/DSG
+valuation/CAMS
+value's
+value/CAGSD
+valueless
+valuer/SM
+valve/DSMG
+valveless
+valvular
+vamoose/DSG
+vamp/AMDGS
+vampire/SM
+van/SM
+vanadium/M
+vandal/SM
+vandalism/M
+vandalize/DSG
+vane/MS
+vanguard/MS
+vanilla/SM
+vanish/JDSG
+vanity/SM
+vanned
+vanning
+vanquish/ZGDRS
+vanquisher/M
+vantage/SM
+vape/GDS
+vapid/YP
+vapidity/M
+vapidness/M
+vaporization/M
+vaporize/DRSZG
+vaporizer/M
+vaporous
+vaporware
+vapour/SM
+vapoury
+vaquero/MS
+var/S
+variability/IM
+variable/ISM
+variably/I
+variance/SM
+variant/MS
+variate/NX
+variation/M
+varicoloured
+varicose
+varied/U
+variegate/DSGN
+variegation/M
+varietal/SM
+variety/SM
+various/Y
+varlet/SM
+varmint/MS
+varnish/GMDS
+varnished/U
+varsity/SM
+vary/DSG
+varying/U
+vascular
+vase/MS
+vasectomy/SM
+vasoconstriction
+vasomotor
+vassal/SM
+vassalage/M
+vast/MRYTSP
+vastness/M
+vat/SM
+vatted
+vatting
+vaudeville/M
+vaudevillian/MS
+vault/SMDRZG
+vaulter/M
+vaulting/M
+vaunt/SMDG
+vb
+veal/M
+vector/SGMD
+veejay/SM
+veep/MS
+veer/MDGS
+veg/M
+vegan/SM
+veganism
+vegeburger/S
+veges
+vegetable/SM
+vegetarian/SM
+vegetarianism/M
+vegetate/GNVDS
+vegetation/M
+vegged
+vegges
+veggie/SM
+veggieburger/S
+vegging
+vehemence/M
+vehemency/M
+vehement/Y
+vehicle/MS
+vehicular
+veil's
+veil/UDGS
+vein/MDGS
+vela
+velar/SM
+veld/MS
+vellum/M
+velocipede/MS
+velocity/SM
+velodrome/S
+velour/MS
+velum/M
+velvet/M
+velveteen/M
+velvety
+venal/Y
+venality/M
+venation/M
+vend/DGS
+vendetta/SM
+vendible
+vendor/MS
+veneer/MDGS
+venerability/M
+venerable
+venerate/DSGN
+veneration/M
+venereal
+vengeance/M
+vengeful/AY
+venial
+venireman/M
+veniremen
+venison/M
+venom/M
+venomous/Y
+venous
+vent's
+vent/DGS
+ventilate/GNDS
+ventilation/M
+ventilator/SM
+ventilatory
+ventral
+ventricle/SM
+ventricular
+ventriloquism/M
+ventriloquist/SM
+ventriloquy/M
+venture/DSMG
+venturesome/PY
+venturesomeness/M
+venturous/PY
+venturousness/M
+venue/ASM
+veracious/Y
+veracity/M
+veranda/SM
+verapamil
+verb/KMS
+verbal/MYS
+verbalization/M
+verbalize/GDS
+verbatim
+verbena/SM
+verbiage/MS
+verbose/Y
+verbosity/M
+verboten
+verdant/Y
+verdict/SM
+verdigris/GMDS
+verdure/M
+verge's
+verge/FDSG
+verger/MS
+verifiable/U
+verification/M
+verified/U
+verify/DSNG
+verily
+verisimilitude/M
+veritable
+veritably
+verity/SM
+vermicelli/M
+vermiculite/M
+vermiform
+vermilion/M
+vermin/M
+verminous
+vermouth/M
+vernacular/MS
+vernal
+vernier/SM
+veronica/M
+verruca/SM
+verrucae
+versa
+versatile
+versatility/M
+verse/AFNGMSDX
+versed/U
+versification/M
+versifier/M
+versify/ZGNDRS
+version/AFIMS
+versioned
+versioning
+verso/SM
+versus
+vert/A
+vertebra/M
+vertebrae
+vertebral
+vertebrate/IMS
+vertex/MS
+vertical/MYS
+vertices
+vertiginous
+vertigo/M
+verve/M
+very/RT
+vesicle/SM
+vesicular
+vesiculate
+vesper/MS
+vessel/MS
+vest's
+vest/ILDGS
+vestal/MS
+vestibule/MS
+vestige/SM
+vestigial/Y
+vesting/M
+vestment/IMS
+vestry/SM
+vestryman/M
+vestrymen
+vet/SM
+vetch/MS
+veteran/SM
+veterinarian/MS
+veterinary/SM
+veto/MDG
+vetoes
+vetted
+vetting
+vex/GDS
+vexation/SM
+vexatious/Y
+vhf
+vi
+via
+viability/M
+viable
+viably
+viaduct/SM
+vial/MS
+viand/SM
+vibe/MS
+vibes/M
+vibraharp/SM
+vibrancy/M
+vibrant/Y
+vibraphone/MS
+vibraphonist/MS
+vibrate/GNDSX
+vibration/M
+vibrato/MS
+vibrator/SM
+vibratory
+viburnum/SM
+vicar/SM
+vicarage/SM
+vicarious/YP
+vicariousness/M
+vice/CMS
+viced
+vicegerent/SM
+vicennial
+viceregal
+viceroy/MS
+vichyssoise/M
+vicing
+vicinity/M
+vicious/YP
+viciousness/M
+vicissitude/SM
+victim/MS
+victimization/M
+victimize/GDS
+victimless
+victor/MS
+victorious/Y
+victory/SM
+victual/SM
+victualled
+victualling
+vicuna/MS
+videlicet
+video/GSMD
+videocassette/SM
+videoconferencing
+videodisc/MS
+videophone/MS
+videotape/DSMG
+videotex
+vie/DS
+view/AMDRSZG
+viewable
+viewer/AM
+viewership/M
+viewfinder/SM
+viewing/SM
+viewpoint/MS
+vigesimal
+vigil/SM
+vigilance/M
+vigilant/Y
+vigilante/SM
+vigilantism/M
+vigilantist/M
+vignette/DSMG
+vignettist/MS
+vigorous/Y
+vigour/M
+vii
+viii
+viking/MS
+vile/YTPR
+vileness/M
+vilification/M
+vilify/DSNG
+villa/SM
+village/RSMZ
+villager/M
+villain/SM
+villainous
+villainy/SM
+villein/SM
+villeinage/M
+villi
+villus/M
+vim/M
+vinaigrette/M
+vincible/I
+vindicate/XDSGN
+vindication/M
+vindicator/MS
+vindictive/PY
+vindictiveness/M
+vine/MS
+vinegar/M
+vinegary
+vineyard/MS
+vino/M
+vinous
+vintage/MS
+vintner/MS
+vinyl/SM
+viol/MBS
+viola/SM
+violable/I
+violate/GNDSX
+violation/M
+violator/SM
+violence/M
+violent/Y
+violet/MS
+violin/MS
+violincello/S
+violinist/SM
+violist/MS
+violoncellist/SM
+violoncello/MS
+viper/SM
+viperous
+virago/M
+viragoes
+viral
+vireo/SM
+virgin/MS
+virginal/SM
+virginity/M
+virgule/MS
+virile
+virility/M
+virologist/SM
+virology/M
+virtual/Y
+virtualisation
+virtue/SM
+virtuosity/M
+virtuoso/M
+virtuous/YP
+virtuousness/M
+virulence/M
+virulent/Y
+virus/MS
+visa/MDSG
+visage/MS
+viscera
+visceral/Y
+viscid
+viscose/M
+viscosity/M
+viscount/SM
+viscountcy/SM
+viscountess/MS
+viscous
+viscus/M
+vise/ACMGDS
+visibility/IM
+visible/I
+visibly/I
+vision/KGDSM
+visionary/SM
+visit's
+visit/ASGD
+visitant/MS
+visitation/MS
+visitor/MS
+visor/SM
+vista/SM
+visual/SMY
+visualization/SM
+visualize/DRSZG
+visualizer/M
+vita/M
+vitae
+vital/SY
+vitality/M
+vitalization/AM
+vitalize/CAGSD
+vitals/M
+vitamin/MS
+vitiate/GNDS
+vitiation/M
+viticulture/M
+viticulturist/MS
+vitreous
+vitrifaction/M
+vitrification/M
+vitrify/GNDS
+vitrine/SM
+vitriol/M
+vitriolic
+vitriolically
+vittles/M
+vituperate/GNVDS
+vituperation/M
+viva/MS
+vivace
+vivacious/PY
+vivaciousness/M
+vivacity/M
+vivaria
+vivarium/SM
+vivid/RYTP
+vividness/M
+vivify/ADSG
+viviparous
+vivisect/DGS
+vivisection/M
+vivisectional
+vivisectionist/SM
+vixen/SM
+vixenish/Y
+viz
+vizier/SM
+vlf
+vocab
+vocable/MS
+vocabulary/SM
+vocal/SMY
+vocalic
+vocalist/SM
+vocalization/MS
+vocalize/DSG
+vocation/FIKASM
+vocational/Y
+vocative/MS
+vociferate/DSGN
+vociferation/M
+vociferous/YP
+vociferousness/M
+vodka/SM
+vogue/SM
+voguish
+voice/IDSMG
+voiced/U
+voiceless/PY
+voicelessness/M
+voicemail/SM
+void/MDSGB
+voila
+voile/M
+vol/S
+volatile
+volatility/M
+volatilize/DSG
+volcanic
+volcanism
+volcano/M
+volcanoes
+vole/MS
+volition/M
+volitional
+volley/GSMD
+volleyball/MS
+volt/AMS
+voltage/MS
+voltaic
+voltmeter/SM
+volubility/M
+voluble
+volubly
+volume/SM
+volumetric
+voluminous/YP
+voluminousness/M
+voluntarily/I
+voluntarism/M
+voluntary/SM
+volunteer/SGMD
+volunteerism/M
+voluptuary/SM
+voluptuous/PY
+voluptuousness/M
+volute/SM
+vomit/SMDG
+voodoo/GSMD
+voodooism/M
+voracious/PY
+voraciousness/M
+voracity/M
+vortex/MS
+votary/SM
+vote's
+vote/CGVDS
+voter/SM
+vouch/DRSZG
+voucher/M
+vouchsafe/DSG
+vow/SGMD
+vowel/SM
+voyage/MZGDRS
+voyager/M
+voyageur/SM
+voyeur/MS
+voyeurism/M
+voyeuristic
+vulcanization/M
+vulcanize/GDS
+vulgar/RYT
+vulgarian/MS
+vulgarism/MS
+vulgarity/SM
+vulgarization/M
+vulgarize/ZGDRS
+vulgarizer/M
+vulnerabilities
+vulnerability/IM
+vulnerable/I
+vulnerably/I
+vulpine
+vulture/SM
+vulturous
+vulva/M
+vulvae
+vuvuzela/MS
+vying
+w/DNXTGVJ
+wabbit/S
+wack/MRTS
+wackiness/M
+wacko/SM
+wacky/RPT
+wad/SZGMDR
+wadded
+wadding/M
+waddle/DSMG
+wade/MS
+wader/M
+waders/M
+wadge/S
+wadi/MS
+wafer/SM
+waffle/MZGDRS
+waffler/M
+waft/MDGS
+wag/SZGMDR
+wage/MS
+waged/U
+wager/ZGMDR
+wagerer/M
+wagged
+waggery/SM
+wagging
+waggish/YP
+waggishness/M
+waggle/MGDS
+wagon/ZSMR
+wagoner/M
+wagtail/SM
+waif/MS
+wail/MDRZGS
+wailer/M
+wailing/M
+wain/MS
+wainscot/SM
+wainscotted
+wainscotting/MS
+wainwright/MS
+waist/SM
+waistband/MS
+waistcoat/MS
+waistline/MS
+wait/MDRZGS
+waiter/M
+waiting/M
+waitperson/MS
+waitress/MS
+waitstaff/M
+waive/DRSZG
+waiver/M
+wake/MGJDS
+wakeful/PY
+wakefulness/M
+waken/GSD
+waldo/S
+waldoes
+wale/MGDS
+walk/MDRZGS
+walkabout/S
+walkaway/MS
+walker/M
+walkies
+walking/M
+walkout/SM
+walkover/MS
+walkway/SM
+wall/MDGS
+wallaby/SM
+wallah
+wallahs
+wallboard/M
+wallet/MS
+walleye/DSM
+wallflower/MS
+wallop/MDSJG
+walloping/M
+wallow/MDSG
+wallpaper/SMDG
+wally/S
+walnut/MS
+walrus/MS
+waltz/ZGMDRS
+waltzer/M
+wampum/M
+wan/GPDY
+wand/MS
+wander/DRSJZG
+wanderer/M
+wanderings/M
+wanderlust/SM
+wane/MS
+wangle/MZGDRS
+wangler/M
+wank/DRZGS
+wanna
+wannabe/SM
+wannabee/S
+wanner
+wanness/M
+wannest
+want/MDGS
+wanted/U
+wanton/MDYSPG
+wantonness/M
+wapiti/MS
+war/SM
+warble/MZGDRS
+warbler/M
+warbonnet/SM
+ward/AMDGS
+warden/MS
+warder/MS
+wardress/S
+wardrobe/SM
+wardroom/SM
+ware/MS
+warehouse/DSMG
+warez
+warfare/M
+warfarin
+warhead/MS
+warhorse/SM
+warily/U
+wariness/UM
+warlike
+warlock/MS
+warlord/MS
+warm/PDRYHZTGS
+warmblooded
+warmer/M
+warmhearted/P
+warmheartedness/M
+warmish
+warmness/M
+warmonger/SMG
+warmongering/M
+warmth/M
+warn/JDGS
+warning/M
+warp/MDGS
+warpaint
+warpath/M
+warpaths
+warplane/MS
+warrant/GMDS
+warranted/U
+warranty/DSMG
+warred
+warren/MS
+warring
+warrior/SM
+warship/SM
+wart/MS
+warthog/SM
+wartime/M
+warty/TR
+wary/UPRT
+was
+wasabi
+wash/BJMDRSZG
+washable/SM
+washbasin/SM
+washboard/SM
+washbowl/SM
+washcloth/M
+washcloths
+washed/U
+washer/M
+washerwoman/M
+washerwomen
+washing/M
+washout/MS
+washrag/MS
+washroom/MS
+washstand/SM
+washtub/MS
+washy/TR
+wasn't
+wasp/MS
+waspish/YP
+waspishness/M
+wassail/SMDG
+wast
+wastage/M
+waste/DRSMZG
+wastebasket/MS
+wasteful/PY
+wastefulness/M
+wasteland/SM
+wastepaper/M
+waster/M
+wastewater
+wastrel/SM
+watch/BZGMDRS
+watchable/U
+watchband/MS
+watchdog/SM
+watcher/M
+watchful/YP
+watchfulness/M
+watchmaker/MS
+watchmaking/M
+watchman/M
+watchmen
+watchstrap/S
+watchtower/SM
+watchword/MS
+water/GSMD
+waterbed/MS
+waterbird/SM
+waterboard/MDJSG
+waterboarding/M
+waterborne
+watercolour/MS
+watercourse/SM
+watercraft/M
+watercress/M
+waterfall/SM
+waterfowl/SM
+waterfront/MS
+waterhole/SM
+wateriness/M
+waterlily/SM
+waterline/MS
+waterlogged
+watermark/MDGS
+watermelon/SM
+watermill/MS
+waterproof/SMDG
+waterproofing/M
+waters/M
+watershed/MS
+waterside/MS
+waterspout/SM
+watertight
+waterway/MS
+waterwheel/SM
+waterworks/M
+watery/PTR
+watt/MS
+wattage/M
+wattle/MGDS
+wave/MZGDRS
+waveband/S
+waveform
+wavefront
+wavelength/M
+wavelengths
+wavelet/SM
+wavelike
+waver/ZGMDR
+waverer/M
+wavering/Y
+waviness/M
+wavy/PRT
+wax/GMDNS
+waxiness/M
+waxwing/SM
+waxwork/SM
+waxy/RPT
+way/SM
+waybill/SM
+wayfarer/MS
+wayfaring/SM
+waylaid
+waylay/RSZG
+waylayer/M
+wayside/SM
+wayward/PY
+waywardness/M
+wazoo/S
+we
+we'd
+we'll
+we're
+we've
+weak/PNRYXT
+weaken/DRZG
+weakener/M
+weakfish/MS
+weakish
+weakling/SM
+weakness/MS
+weal/MHS
+wealth/M
+wealthiness/M
+wealthy/TRP
+wean/DGS
+weapon/MS
+weaponize/GDS
+weaponless
+weaponry/M
+wear/MRBJSZG
+wearable/U
+wearer/M
+wearied/U
+wearily
+weariness/M
+wearisome/Y
+weary/TGDRSP
+weasel/MDYSG
+weather/SMDG
+weatherboard/SG
+weathercock/MS
+weathering/M
+weatherization/M
+weatherize/DSG
+weatherman/M
+weathermen
+weatherperson/MS
+weatherproof/GSD
+weatherstrip/S
+weatherstripped
+weatherstripping/M
+weave/DRSMZG
+weaver/M
+weaving/M
+web/SM
+webbed
+webbing/M
+webcam/MS
+webcast/SMG
+webfeet
+webfoot/M
+webinar/SM
+webisode/MS
+weblog/MS
+webmaster/SM
+webmistress/MS
+website/SM
+wed/AS
+wedded/A
+wedder
+wedding/SM
+wedge/DSMG
+wedgie/MS
+wedlock/M
+wee/RSMT
+weed/MDRSZG
+weeder/M
+weedkiller/S
+weedless
+weedy/TR
+weeing
+week/MYS
+weekday/SM
+weekend/SZGMDR
+weekly/SM
+weeknight/SM
+ween/DSG
+weenie/MTRS
+weensy/RT
+weeny
+weep/MRJSZG
+weeper/M
+weepie
+weepy/TRSM
+weevil/MS
+weft/MS
+weigh's
+weigh/AGD
+weighbridge/S
+weighs/A
+weight/MDSJG
+weighted/U
+weightily
+weightiness/M
+weightless/YP
+weightlessness/M
+weightlifter/MS
+weightlifting/M
+weighty/PTR
+weir/MS
+weird/PTRY
+weirdie/MS
+weirdness/M
+weirdo/MS
+welcome/MGDS
+weld/MDRBSZG
+welder/M
+welfare/M
+welkin/M
+well/MDPSG
+wellhead/SM
+wellie
+wellington/MS
+wellness/M
+wellspring/MS
+welly/S
+welsh/ZGDRS
+welsher/M
+welt/MDRSZG
+welter/GMD
+welterweight/SM
+wen/M
+wench/MS
+wend/DSG
+went
+wept
+were
+weren't
+werewolf/M
+werewolves
+west/M
+westbound
+westerly/SM
+western/SZMR
+westerner/M
+westernization/M
+westernize/GDS
+westernmost
+westward/S
+wet/SMYP
+wetback/SM
+wetland/SM
+wetness/M
+wetter/SM
+wettest
+wetting
+wetware/S
+whack/SJZGMDR
+whacker/M
+whale/DRSMZG
+whaleboat/MS
+whalebone/M
+whaler/M
+whaling/M
+wham/MS
+whammed
+whamming
+whammy/SM
+wharf/M
+wharves
+what/MS
+whatchamacallit/MS
+whatever
+whatnot/M
+whatshername
+whatshisname
+whatsit/S
+whatsoever
+wheal/SM
+wheat/MN
+wheatgerm
+wheatmeal
+whee
+wheedle/DRSZG
+wheedler/M
+wheel/SMDRG
+wheelbarrow/SM
+wheelbase/SM
+wheelchair/SM
+wheelhouse/MS
+wheelie/SM
+wheelwright/MS
+wheeze/DSMG
+wheezily
+wheeziness/M
+wheezy/PRT
+whelk/SMD
+whelm/SDG
+whelp/SMDG
+when/MS
+whence
+whenever
+whensoever
+where/SM
+whereabouts/M
+whereas
+whereat
+whereby
+wherefore/MS
+wherein
+whereof
+whereon
+wheresoever
+whereto
+whereupon
+wherever
+wherewith
+wherewithal/M
+wherry/SM
+whet/S
+whether
+whetstone/SM
+whetted
+whetting
+whew
+whey/M
+which
+whichever
+whiff/SMDG
+whiffletree/MS
+while/DSMG
+whilom
+whilst
+whim/MS
+whimper/MDGS
+whimsical/Y
+whimsicality/M
+whimsy/SM
+whine/DRSMZG
+whiner/M
+whinge/DRSZG
+whingeing
+whinny/GDSM
+whiny/RT
+whip/MS
+whipcord/M
+whiplash/MS
+whipped
+whipper/MS
+whippersnapper/MS
+whippet/MS
+whipping/SM
+whippletree/SM
+whippoorwill/MS
+whipsaw/MDGS
+whir/MS
+whirl/SMDG
+whirligig/MS
+whirlpool/MS
+whirlwind/MS
+whirlybird/SM
+whirred
+whirring
+whisk/SMDRZG
+whisker/MD
+whiskery
+whisky/SM
+whiskys
+whisper/MDRSZG
+whisperer/M
+whist/M
+whistle/MZGDRS
+whistler/M
+whit/MDNRSXTGJ
+white/SPM
+whitebait
+whiteboard/S
+whitecap/SM
+whitefish/MS
+whitehead/MS
+whitelist/GDS
+whiten/ZGDRJ
+whitener/M
+whiteness/M
+whitening/M
+whiteout/SM
+whitetail/MS
+whitewall/SM
+whitewash/MDSG
+whitewater/M
+whitey/SM
+whither
+whiting/M
+whitish
+whittle/ZGDRS
+whittler/M
+whiz/M
+whizkid/M
+whizzbang/MS
+whizzed
+whizzes
+whizzing
+who'd
+who'll
+who're
+who've
+who/M
+whoa
+whodunit/MS
+whoever
+whole/SMP
+wholefood/S
+wholegrain
+wholehearted/YP
+wholeheartedness/M
+wholemeal
+wholeness/M
+wholesale/MZGDRS
+wholesaler/M
+wholesome/UP
+wholesomely
+wholesomeness/UM
+wholewheat
+wholly
+whom
+whomever
+whomsoever
+whoop/SMDRZG
+whoopee/S
+whooper/M
+whoosh/MDSG
+whop/S
+whopped
+whopper/SM
+whopping
+whore/SMG
+whorehouse/MS
+whoreish
+whorish
+whorl/SMD
+whose
+whoso
+whosoever
+whup/S
+whupped
+whupping
+why'd
+why/M
+whys
+wick/MDRSZ
+wicked/TPRY
+wickedness/M
+wicker/M
+wickerwork/M
+wicket/SM
+wide/YTRP
+widemouthed
+widen/SDRZG
+widener/M
+wideness/M
+widescreen/MS
+widespread
+widget/S
+widow/SMDRZG
+widower/M
+widowhood/M
+width/M
+widths
+wield/SDRZG
+wielder/M
+wiener/SM
+wienie/SM
+wife/MY
+wifeless
+wig/SM
+wigeon/M
+wigged
+wigging
+wiggle/DRSMZG
+wiggler/M
+wiggly/TR
+wight/SM
+wiglet/SM
+wigwag/SM
+wigwagged
+wigwagging
+wigwam/SM
+wiki/MS
+wild/MRYSTP
+wildcard/MS
+wildcat/MS
+wildcatted
+wildcatter/MS
+wildcatting
+wildebeest/MS
+wilderness/MS
+wildfire/MS
+wildflower/SM
+wildfowl/M
+wildlife/M
+wildness/M
+wilds/M
+wile/MGDS
+wilful/PY
+wilfulness/M
+wiliness/M
+will/MDS
+willies/M
+willing/UPY
+willingness/UM
+williwaw/MS
+willow/SM
+willowy
+willpower/M
+willy/S
+wilt/MDSG
+wily/RTP
+wimp/MDSG
+wimpish
+wimple/DSMG
+wimpy/RT
+win/SGMD
+wince/DSMG
+winch/MDSG
+wind's
+wind/UASG
+windbag/SM
+windblown
+windbreak/SZMR
+windbreaker/M
+windburn/MD
+windcheater/S
+windchill/M
+winded
+winder/SM
+windfall/MS
+windflower/MS
+windily
+windiness/M
+winding's
+windjammer/SM
+windlass/MS
+windless
+windmill/MDGS
+window/SMDG
+windowless
+windowpane/SM
+windowsill/SM
+windpipe/MS
+windproof
+windrow/SM
+windscreen/SM
+windshield/SM
+windsock/MS
+windstorm/MS
+windsurf/ZGDRS
+windsurfer/M
+windsurfing/M
+windswept
+windup/SM
+windward/M
+windy/RTP
+wine/MS
+wineglass/MS
+winegrower/MS
+winemaker/MS
+winery/SM
+wing/MDRZG
+wingding/MS
+wingless
+winglike
+wingnut/SM
+wingspan/MS
+wingspread/SM
+wingtip/SM
+wink/MDRSZG
+winker/M
+winkle/DSMG
+winnable/U
+winner/SM
+winning/MYS
+winnow/ZGSDR
+winnower/M
+wino/MS
+winsome/YTRP
+winsomeness/M
+winter/GSMD
+wintergreen/M
+winterize/GDS
+wintertime/M
+wintry/TR
+winy/RT
+wipe/MZGDRS
+wiper/M
+wire's
+wire/AGDS
+wired/S
+wirehair/MS
+wireless/MS
+wiretap/MS
+wiretapped
+wiretapper/SM
+wiretapping/M
+wiriness/M
+wiring/M
+wiry/RTP
+wisdom/M
+wise/MYTGDRS
+wiseacre/SM
+wisecrack/MDSG
+wiseguy/S
+wish/MDRSZG
+wishbone/SM
+wisher/M
+wishful/Y
+wishlist's
+wisp/MS
+wispy/RT
+wist
+wisteria/SM
+wistful/YP
+wistfulness/M
+wit/SM
+witch/MDSG
+witchcraft/M
+witchery/M
+with
+withal
+withdraw/SG
+withdrawal/MS
+withdrawn
+withdrew
+withe/DRSMZG
+wither/JGD
+withering/Y
+withers/M
+withheld
+withhold/SG
+withholding/M
+within/M
+without
+withstand/GS
+withstood
+witless/PY
+witlessness/M
+witness/MDSG
+wits/M
+witted
+witter/SGD
+witticism/SM
+wittily
+wittiness/M
+witting/UY
+witty/RPT
+wive/GDS
+wiz
+wizard/SMY
+wizardry/M
+wizened
+wk/Y
+woad/M
+wobble/MGDS
+wobbliness/M
+wobbly/RTP
+wodge/S
+woe/SM
+woebegone
+woeful/YP
+woefuller
+woefullest
+woefulness/M
+wog/S
+wok/SMN
+woke
+wold/MS
+wolf/MDSG
+wolfhound/SM
+wolfish
+wolfram/M
+wolverine/SM
+wolves
+woman/M
+womanhood/M
+womanish
+womanize/DRSZG
+womanizer/M
+womankind/M
+womanlike/M
+womanliness/M
+womanly/RPT
+womb/MS
+wombat/MS
+womble/S
+women/M
+womenfolk/SM
+womenfolks/M
+won't
+won/M
+wonder/MDGLS
+wonderful/YP
+wonderfulness/M
+wondering/Y
+wonderland/MS
+wonderment/M
+wondrous/Y
+wonk/MS
+wonky/TR
+wont/MD
+wonted/U
+woo/SZGDR
+wood/MDNSG
+woodbine/M
+woodblock/MS
+woodcarver/MS
+woodcarving/SM
+woodchuck/MS
+woodcock/SM
+woodcraft/M
+woodcut/SM
+woodcutter/SM
+woodcutting/M
+wooden/RYTP
+woodenness/M
+woodiness/M
+woodland/SM
+woodlice
+woodlot/SM
+woodlouse
+woodman/M
+woodmen
+woodpecker/MS
+woodpile/SM
+woods/M
+woodshed/SM
+woodsiness/M
+woodsman/M
+woodsmen
+woodsy/RTP
+woodwind/MS
+woodwork/MRZG
+woodworker/M
+woodworking/M
+woodworm/S
+woody/TPRSM
+wooer/M
+woof/MDRSZG
+woofer/M
+wool/M
+woolgathering/M
+wooliness
+woollen/SM
+woolliness/M
+woolly/RSMPT
+woozily
+wooziness/M
+woozy/TRP
+wop/S!
+word's
+word/ADSG
+wordage/M
+wordbook/SM
+wordily
+wordiness/M
+wording/SM
+wordless/Y
+wordplay/M
+wordsmith
+wordsmiths
+wordy/TPR
+wore
+work's
+work/ADJSG
+workable/U
+workaday
+workaholic/SM
+workaround/S
+workbasket/S
+workbench/MS
+workbook/MS
+workday/SM
+worker/MS
+workfare/M
+workflow/MS
+workforce/M
+workhorse/SM
+workhouse/SM
+working's
+workingman/M
+workingmen
+workings/M
+workingwoman/M
+workingwomen
+workload/MS
+workman/M
+workmanlike
+workmanship/M
+workmate/S
+workmen
+workout/SM
+workplace/MS
+workroom/MS
+works/M
+worksheet/MS
+workshop/MS
+workshy
+worksite/S
+workspace
+workstation/MS
+worktable/MS
+worktop/S
+workup/MS
+workweek/SM
+world/SM
+worldlier
+worldliness/UM
+worldly/UTP
+worldview/SM
+worldwide
+worm/MDSG
+wormhole/MS
+wormwood/M
+wormy/TR
+worn/U
+worried/Y
+worrier/M
+worriment/M
+worrisome
+worry/ZGDRSMJ
+worrying/Y
+worrywart/SM
+worse/M
+worsen/DSG
+worship/SM
+worshipful
+worshipped
+worshipper/MS
+worshipping
+worst/SGMD
+worsted/M
+wort/M
+worth/M
+worthies
+worthily/U
+worthiness/UM
+worthless/PY
+worthlessness/M
+worthwhile
+worthy's
+worthy/UPRT
+wot
+wotcha
+would've
+would/S
+wouldn't
+wouldst
+wound/SGMDR
+wove/A
+woven/AU
+wow/SGMD
+wpm
+wrack/GSMD
+wraith/M
+wraiths
+wrangle/DRSMZGJ
+wrangler/M
+wrap's
+wrap/US
+wraparound/SM
+wrapped/U
+wrapper/SM
+wrapping/MS
+wrasse/MS
+wrath/M
+wrathful/Y
+wreak/SGD
+wreath/MDSG
+wreathe
+wreaths
+wreck/SZGMDR
+wreckage/M
+wrecker/M
+wren/MS
+wrench/MDSG
+wrest/SGMD
+wrestle/MZGDRS
+wrestler/M
+wrestling/M
+wretch/MS
+wretched/TPRY
+wretchedness/M
+wriggle/MZGDRS
+wriggler/M
+wriggly
+wright/MS
+wring/SZGMR
+wringer/M
+wrinkle/MGDS
+wrinkled/U
+wrinkly/TRSM
+wrist/SM
+wristband/MS
+wristwatch/MS
+writ/MRBJSZG
+write/S
+writer/M
+writhe/MGDS
+writing/M
+written/AU
+wrong/STGMPDRY
+wrongdoer/SM
+wrongdoing/SM
+wrongful/PY
+wrongfulness/M
+wrongheaded/YP
+wrongheadedness/M
+wrongness/M
+wrote/A
+wroth
+wrought
+wrung
+wry/Y
+wryer
+wryest
+wryness/M
+wt
+wunderkind/S
+wurst/SM
+wuss/MS
+wussy/RSMT
+x
+xci
+xcii
+xciv
+xcix
+xcvi
+xcvii
+xenon/M
+xenophobe/MS
+xenophobia/M
+xenophobic
+xerographic
+xerography/M
+xerox/MDSG
+xi/SM
+xii
+xiii
+xiv
+xix
+xor
+xref/S
+xterm/M
+xv
+xvi
+xvii
+xviii
+xx
+xxi
+xxii
+xxiii
+xxiv
+xxix
+xxv
+xxvi
+xxvii
+xxviii
+xxx
+xxxi
+xxxii
+xxxiii
+xxxiv
+xxxix
+xxxv
+xxxvi
+xxxvii
+xxxviii
+xylem/M
+xylene
+xylophone/SM
+xylophonist/MS
+y'all
+y/F
+ya
+yacht/SMDG
+yachting/M
+yachtsman/M
+yachtsmen
+yachtswoman/M
+yachtswomen
+yahoo/SM
+yak/SM
+yakked
+yakking
+yam/SM
+yammer/SZGMDR
+yammerer/M
+yang/M
+yank/MDSG
+yap/SM
+yapped
+yapping
+yard/MS
+yardage/MS
+yardarm/MS
+yardman/M
+yardmaster/MS
+yardmen
+yardstick/MS
+yarmulke/SM
+yarn/MS
+yarrow/M
+yashmak/S
+yaw/SGMD
+yawl/MS
+yawn/MDRSZG
+yawner/M
+yaws/M
+yd
+ye/RST
+yea/SM
+yeah/M
+yeahs
+year/MYS
+yearbook/MS
+yearling/MS
+yearlong
+yearly/SM
+yearn/GSJD
+yearning/M
+yeast/SM
+yeasty/RT
+yegg/MS
+yell/MDSG
+yellow/MDRTGPS
+yellowhammer/S
+yellowish
+yellowness/M
+yellowy
+yelp/MDSG
+yen/SM
+yeoman/M
+yeomanry/M
+yeomen
+yep/SM
+yes/MS
+yeshiva/SM
+yessed
+yessing
+yesterday/MS
+yesteryear/M
+yet
+yeti/MS
+yew/SM
+yid/S
+yield/JSGMD
+yikes
+yin/M
+yip/SM
+yipe
+yipped
+yippee
+yipping
+yo
+yob/S
+yobbo/S
+yodel/SM
+yodelled
+yodeller/MS
+yodelling
+yoga/M
+yogi/MS
+yogic
+yogourt/MS
+yoke's
+yoke/UGDS
+yokel/SM
+yolk/MDS
+yon
+yonder
+yonks
+yore/M
+you'd
+you'll
+you're
+you've
+you/SMH
+young/TMR
+youngish
+youngster/MS
+your/S
+yourself
+yourselves
+youth/M
+youthful/YP
+youthfulness/M
+youths
+yow
+yowl/MDSG
+yr/S
+ytterbium/M
+yttrium/M
+yuan/M
+yucca/SM
+yuck
+yucky/TR
+yuk/SM
+yukked
+yukking
+yukky
+yule/M
+yuletide/M
+yum
+yummy/TR
+yup/SM
+yuppie/MS
+yuppify/GDS
+yurt/MS
+z/DNXTGJ
+zaniness/M
+zany/RSMPT
+zap/SM
+zapped
+zapper/MS
+zapping
+zappy
+zeal/M
+zealot/MS
+zealotry/M
+zealous/YP
+zealousness/M
+zebra/SM
+zebu/MS
+zed/SM
+zeitgeist/SM
+zenith/M
+zeniths
+zenned
+zeolite/S
+zephyr/MS
+zeppelin/MS
+zero/MDHSG
+zeroes
+zest/MS
+zestful/YP
+zestfulness/M
+zesty/RT
+zeta/MS
+zigzag/SM
+zigzagged
+zigzagging
+zilch/M
+zillion/MS
+zinc/MS
+zincked
+zincking
+zine/S
+zinfandel/M
+zing/MDRZG
+zinger/M
+zingy/RT
+zinnia/MS
+zip's
+zip/US
+zipped/U
+zipper/MDGS
+zipping/U
+zippy/TR
+zircon/MS
+zirconium/M
+zit/SM
+zither/MS
+zloty/SM
+zlotys
+zodiac/MS
+zodiacal
+zombie/MS
+zonal/Y
+zone's
+zone/AGDS
+zoning/M
+zonked
+zoo/SM
+zookeeper/SM
+zoological/Y
+zoologist/SM
+zoology/M
+zoom/MDSG
+zoophyte/SM
+zoophytic
+zooplankton
+zorch
+zoster
+zounds
+zucchini/MS
+zwieback/M
+zydeco/M
+zygote/SM
+zygotic
+zymurgy/M
diff --git a/dictionaries/en/en_GB.aff b/dictionaries/en/en_GB.aff
new file mode 100644
index 0000000..a2c88f3
--- /dev/null
+++ b/dictionaries/en/en_GB.aff
@@ -0,0 +1,1430 @@
+# Affix file for British English Hunspell dictionary.
+# Furthermore, suitable as a basis for Commonwealth and European English.
+# Built from scratch for MySpell. Released under LGPL.
+#
+# Sources used to verify the spelling of the words included in the dictionary by Marco:
+# 1) Oxford Dictionaries; 5) Merriam-Webster Dictionary (used with caution ⚠);
+# 2) Collins Dictionary; 6) Wiktionary (used with caution ⚠);
+# 3) Macmillan Dictionary; 7) Wikipedia (used with caution ⚠);
+# 4) Cambridge Dictionary; 8) Physical dictionaries.
+#
+# Main difficulties developing this dictionary:
+# 1) Proper names;
+# 2) Possessive forms;
+# 3) Plurals.
+#
+# David Bartlett, Andrew Brown, Marco A.G.Pinto.
+# V 3.2.6, 2023-11-01
+
+SET UTF-8
+
+TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîêàïüäñ
+
+ICONV 1
+ICONV ’ '
+
+NOSUGGEST !
+
+# ordinal numbers
+COMPOUNDMIN 1
+# only in compounds: 1th, 2th, 3th
+ONLYINCOMPOUND _
+# compound rules:
+# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.)
+# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.)
+COMPOUNDRULE 2
+COMPOUNDRULE #*0{
+COMPOUNDRULE #*@}
+WORDCHARS 0123456789’
+
+REP 27
+REP f ph
+REP ph f
+REP f gh
+REP f ugh
+REP gh f
+REP ff ugh
+REP uf ough
+REP uff ough
+REP k ch
+REP ch k
+REP dg j
+REP j dg
+REP w ugh
+REP ness ity
+REP leness ility
+REP ness ivity
+REP eness ity
+REP og ogue
+REP ck qu
+REP ck que
+REP eg e.g.
+REP ie i.e.
+REP t ght
+REP ght t
+REP ok OK
+REP ts ce
+REP ce ts
+
+PFX A Y 2
+PFX A 0 re [^e]
+PFX A 0 re- e
+PFX a Y 1
+PFX a 0 mis .
+PFX I Y 4
+PFX I 0 il l
+PFX I 0 im [bmp]
+PFX I 0 in [^blmpr]
+PFX I 0 ir r
+PFX c Y 1
+PFX c 0 over .
+PFX U Y 1
+PFX U 0 un .
+PFX C Y 2
+PFX C 0 de [^e]
+PFX C 0 de- e
+PFX E Y 1
+PFX E 0 dis .
+PFX F Y 5
+PFX F 0 co [aeiouh]
+PFX F 0 col l
+PFX F 0 com [bmp]
+PFX F 0 con [^abehilmopru].
+PFX F 0 cor r
+PFX K Y 1
+PFX K 0 pre .
+PFX e Y 1
+PFX e 0 out .
+PFX f Y 2
+PFX f 0 under [^r]
+PFX f 0 under- r
+PFX ^ Y 1
+PFX ^ 0 non- .
+PFX 4 Y 1
+PFX 4 0 trans .
+
+SFX V Y 15
+SFX V 0 ative [^abdeilosty]
+SFX V 0 ative [^aeiou]l
+SFX V e ative [^bcdkmst]e
+SFX V ke cative ke
+SFX V y icative y
+SFX V 0 ive [st]
+SFX V e ive [st]e
+SFX V 0 lative [aeiou]l
+SFX V b ptive b
+SFX V be ptive be
+SFX V e ptive me
+SFX V d sive d
+SFX V de sive de
+SFX V 0 tive [aio]
+SFX V e tive ce
+SFX v Y 15
+SFX v 0 atively [^abdeilosty]
+SFX v 0 atively [^aeiou]l
+SFX v e atively [^bcdkmst]e
+SFX v ke catively ke
+SFX v y icatively y
+SFX v 0 ively [st]
+SFX v e ively [st]e
+SFX v 0 latively [aeiou]l
+SFX v b ptively b
+SFX v be ptively be
+SFX v e ptively me
+SFX v d sively d
+SFX v de sively de
+SFX v 0 tively [aio]
+SFX v e tively ce
+SFX u Y 15
+SFX u 0 ativeness [^abdeilosty]
+SFX u 0 ativeness [^aeiou]l
+SFX u e ativeness [^bcdkmst]e
+SFX u ke cativeness ke
+SFX u y icativeness y
+SFX u 0 iveness [st]
+SFX u e iveness [st]e
+SFX u 0 lativeness [aeiou]l
+SFX u b ptiveness b
+SFX u be ptiveness be
+SFX u e ptiveness me
+SFX u d siveness d
+SFX u de siveness de
+SFX u 0 tiveness [aio]
+SFX u e tiveness ce
+SFX N Y 68
+SFX N 0 ation [^aeiou]l
+SFX N 0 ation [^aeiou]m
+SFX N e ation [^bcdkmst]e
+SFX N 0 ation [^bdelmrstxy]
+SFX N e ation [^crbv][mi][^bcdkmztrlvgun]e
+SFX N 0 ation [^e]r
+SFX N e ation [^emnx][rc]ise
+SFX N 0 ation [^i]t
+SFX N e ation [^uriolsna][^bcdkmztrlvgu]e
+SFX N e ation [btv][e][rc]ise
+SFX N e ation [iou]te
+SFX N 0 ation's [^aeiou]l
+SFX N 0 ation's [^aeiou]m
+SFX N e ation's [^bcdkmst]e
+SFX N 0 ation's [^bdelmrstxy]
+SFX N e ation's [^crbv][mi][^bcdkmztrlvgun]e
+SFX N 0 ation's [^e]r
+SFX N e ation's [^emnx][rc]ise
+SFX N 0 ation's [^i]t
+SFX N e ation's [^uriolsna][^bcdkmztrlvgu]e
+SFX N e ation's [btv][e][rc]ise
+SFX N e ation's [iou]te
+SFX N ke cation ke
+SFX N ke cation's ke
+SFX N y ication y
+SFX N y ication's y
+SFX N e ion [^i]cise
+SFX N e ion [^iou]te
+SFX N 0 ion [^m]it
+SFX N e ion [rsn]se
+SFX N 0 ion [sx]
+SFX N e ion [tfl]use
+SFX N e ion [v]ise
+SFX N e ion ulse
+SFX N e ion's [^i]cise
+SFX N e ion's [^iou]te
+SFX N 0 ion's [^m]it
+SFX N e ion's [rsn]se
+SFX N 0 ion's [sx]
+SFX N e ion's [tfl]use
+SFX N e ion's [v]ise
+SFX N e ion's ulse
+SFX N e ition ose
+SFX N e ition's ose
+SFX N 0 lation [aiou]l
+SFX N 0 lation's [aiou]l
+SFX N e mation [^u]me
+SFX N 0 mation [aeiou]m
+SFX N e mation's [^u]me
+SFX N 0 mation's [aeiou]m
+SFX N b ption b
+SFX N be ption be
+SFX N e ption ume
+SFX N b ption's b
+SFX N be ption's be
+SFX N e ption's ume
+SFX N er ration er
+SFX N er ration's er
+SFX N d sion d
+SFX N de sion de
+SFX N d sion's d
+SFX N de sion's de
+SFX N t ssion mit
+SFX N t ssion's mit
+SFX N e tion ce
+SFX N e tion's ce
+SFX N el ulsion el
+SFX N el ulsion's el
+SFX n Y 42
+SFX n 0 ation [^aeiou]l
+SFX n 0 ation [^aelry]
+SFX n e ation [^ckt]e
+SFX n 0 ation [^e]r
+SFX n e ation [iou]te
+SFX n y ation py
+SFX n 0 ation's [^aeiou]l
+SFX n 0 ation's [^aelry]
+SFX n e ation's [^ckt]e
+SFX n 0 ation's [^e]r
+SFX n e ation's [iou]te
+SFX n y ation's py
+SFX n 0 ations [^aeiou]l
+SFX n 0 ations [^aelry]
+SFX n e ations [^ckt]e
+SFX n 0 ations [^e]r
+SFX n e ations [iou]te
+SFX n y ations py
+SFX n ke cation ke
+SFX n ke cation's ke
+SFX n ke cations ke
+SFX n y ication [^p]y
+SFX n y ication's [^p]y
+SFX n y ications [^p]y
+SFX n e ion [^iou]te
+SFX n e ion's [^iou]te
+SFX n e ions [^iou]te
+SFX n 0 lation [aiou]l
+SFX n 0 lation's [aiou]l
+SFX n 0 lations [aiou]l
+SFX n er ration er
+SFX n er ration's er
+SFX n er rations er
+SFX n 0 tion a
+SFX n e tion ce
+SFX n 0 tion's a
+SFX n e tion's ce
+SFX n 0 tions a
+SFX n e tions ce
+SFX n el ulsion el
+SFX n el ulsion's el
+SFX n el ulsions el
+SFX X Y 26
+SFX X 0 ations [^aeiou]l
+SFX X 0 ations [^aeiou]m
+SFX X e ations [^bcdkmst]e
+SFX X 0 ations [^bdelmrstxy]
+SFX X 0 ations [^e]r
+SFX X 0 ations [^i]t
+SFX X e ations [iou]te
+SFX X ke cations ke
+SFX X y ications y
+SFX X e ions [^iou]te
+SFX X 0 ions [^m]it
+SFX X e ions [^o]se
+SFX X 0 ions [sx]
+SFX X e itions ose
+SFX X 0 lations [aiou]l
+SFX X e mations [^u]me
+SFX X 0 mations [aeiou]m
+SFX X b ptions b
+SFX X be ptions be
+SFX X e ptions ume
+SFX X er rations er
+SFX X d sions d
+SFX X de sions de
+SFX X t ssions mit
+SFX X e tions ce
+SFX X el ulsions el
+SFX x Y 40
+SFX x 0 ational [^aeiou]l
+SFX x e ational [^bcdkst]e
+SFX x 0 ational [^bdelrstxy]
+SFX x 0 ational [^e]r
+SFX x 0 ational nt
+SFX x 0 ationally [^aeiou]l
+SFX x e ationally [^bcdkst]e
+SFX x 0 ationally [^bdelrstxy]
+SFX x 0 ationally [^e]r
+SFX x 0 ationally nt
+SFX x ke cational ke
+SFX x ke cationally ke
+SFX x y icational y
+SFX x y icationally y
+SFX x 0 ional [^n]t
+SFX x e ional [^o]se
+SFX x 0 ional [sx]
+SFX x e ional te
+SFX x 0 ionally [^n]t
+SFX x e ionally [^o]se
+SFX x 0 ionally [sx]
+SFX x e ionally te
+SFX x e itional ose
+SFX x e itionally ose
+SFX x 0 lational [aiou]l
+SFX x 0 lationally [aiou]l
+SFX x b ptional b
+SFX x be ptional be
+SFX x b ptionally b
+SFX x be ptionally be
+SFX x er rational er
+SFX x er rationally er
+SFX x d sional d
+SFX x de sional de
+SFX x d sionally d
+SFX x de sionally de
+SFX x e tional ce
+SFX x e tionally ce
+SFX x el ulsional el
+SFX x el ulsionally el
+SFX H N 13
+SFX H 0 fold .
+SFX H ve fth ve
+SFX H ve fths ve
+SFX H 0 h t
+SFX H 0 hs t
+SFX H y ieth y
+SFX H y ieths y
+SFX H ree ird ree
+SFX H ree irds ree
+SFX H 0 th [^ety]
+SFX H e th [^ev]e
+SFX H 0 ths [^ety]
+SFX H e ths [^ev]e
+SFX Y Y 9
+SFX Y 0 ally ic
+SFX Y y ily [^aeiou]y
+SFX Y 0 ly [^cely]
+SFX Y 0 ly [^i]c
+SFX Y 0 ly [^l]e
+SFX Y 0 ly [aeiou][ly]
+SFX Y 0 ly [aeiou]le
+SFX Y 0 y [^aeiou]l
+SFX Y e y [^aeiou]le
+SFX G Y 24
+SFX G 0 bing [^aeio][aeiou]b
+SFX G 0 ding [^aeio][aeiou]d
+SFX G 0 fing [^aeio][aeiou]f
+SFX G 0 ging [^aeio][aeiou]g
+SFX G 0 ing [^aeiou][bcdfgklmnprstvz]
+SFX G 0 ing [^ebcdfgklmnprstvz]
+SFX G e ing [^eioy]e
+SFX G 0 ing [aeio][aeiou][bcdfgkmnprstvz]
+SFX G 0 ing [aeio][eiou]l
+SFX G 0 ing [aeo]al
+SFX G 0 ing [eoy]e
+SFX G 0 king [^aeio][aeiou]c
+SFX G 0 king [^aeio][aeiou]k
+SFX G 0 ling [^aeio][eiou]l
+SFX G 0 ling [^aeo]al
+SFX G 0 ming [^aeio][aeiou]m
+SFX G 0 ning [^aeio][aeiou]n
+SFX G 0 ping [^aeio][aeiou]p
+SFX G 0 ring [^aeio][aeiou]r
+SFX G 0 sing [^aeio][aeiou]s
+SFX G 0 ting [^aeio][aeiou]t
+SFX G 0 ving [^aeio][aeiou]v
+SFX G ie ying ie
+SFX G 0 zing [^aeio][aeiou]z
+SFX J Y 50
+SFX J 0 bing's [^aeio][aeiou]b
+SFX J 0 bings [^aeio][aeiou]b
+SFX J 0 ding's [^aeio][aeiou]d
+SFX J 0 dings [^aeio][aeiou]d
+SFX J 0 fing's [^aeio][aeiou]f
+SFX J 0 fings [^aeio][aeiou]f
+SFX J 0 ging's [^aeio][aeiou]g
+SFX J 0 gings [^aeio][aeiou]g
+SFX J 0 ing's [^aeio]e[nrt]
+SFX J 0 ing's [^aeiou][bcdfgklmnprstvz]
+SFX J 0 ing's [^ebcdfgklmnprstvz]
+SFX J e ing's [^eioy]e
+SFX J 0 ing's [aeio][aeiou][bcdfgkmnprstvz]
+SFX J 0 ing's [aeio][eiou]l
+SFX J 0 ing's [aeo]al
+SFX J 0 ing's [eoy]e
+SFX J 0 ings [^aeio]e[nrt]
+SFX J 0 ings [^aeiou][bcdfgklmnprstvz]
+SFX J 0 ings [^ebcdfgklmnprstvz]
+SFX J e ings [^eioy]e
+SFX J 0 ings [aeio][aeiou][bcdfgkmnprstvz]
+SFX J 0 ings [aeio][eiou]l
+SFX J 0 ings [aeo]al
+SFX J 0 ings [eoy]e
+SFX J 0 king's [^aeio][aeiou]c
+SFX J 0 king's [^aeio][aeiou]k
+SFX J 0 kings [^aeio][aeiou]c
+SFX J 0 kings [^aeio][aeiou]k
+SFX J 0 ling's [^aeio][eiou]l
+SFX J 0 ling's [^aeo]al
+SFX J 0 lings [^aeio][eiou]l
+SFX J 0 lings [^aeo]al
+SFX J 0 ming's [^aeio][aeiou]m
+SFX J 0 mings [^aeio][aeiou]m
+SFX J 0 ning's [^aeio][aiou]n
+SFX J 0 nings [^aeio][aiou]n
+SFX J 0 ping's [^aeio][aeiou]p
+SFX J 0 pings [^aeio][aeiou]p
+SFX J 0 ring's [^aeio][aiou]r
+SFX J 0 rings [^aeio][aiou]r
+SFX J 0 sing's [^aeio][aeiou]s
+SFX J 0 sings [^aeio][aeiou]s
+SFX J 0 ting's [^aeio][aiou]t
+SFX J 0 tings [^aeio][aiou]t
+SFX J 0 ving's [^aeio][aeiou]v
+SFX J 0 vings [^aeio][aeiou]v
+SFX J ie ying's ie
+SFX J ie yings ie
+SFX J 0 zing's [^aeio][aeiou]z
+SFX J 0 zings [^aeio][aeiou]z
+SFX k Y 8
+SFX k 0 ingly [^aeiou][cl]
+SFX k 0 ingly [^ecl]
+SFX k e ingly [^eioy]e
+SFX k 0 ingly [aeio][aeiou][cl]
+SFX k 0 ingly [eoy]e
+SFX k 0 kingly [^aeio][aeiou]c
+SFX k 0 lingly [^aeio][aeiou]l
+SFX k ie yingly ie
+SFX D Y 25
+SFX D 0 bed [^aeio][aeiou]b
+SFX D 0 d [^e]e
+SFX D e d ee
+SFX D 0 ded [^aeio][aeiou]d
+SFX D 0 ed [^aeiou][bcdfgklmnprstvz]
+SFX D 0 ed [^ebcdfgklmnprstvyz]
+SFX D 0 ed [aeio][aeiou][bcdfgkmnprstvz]
+SFX D 0 ed [aeio][eiou]l
+SFX D 0 ed [aeiou]y
+SFX D 0 ed [aeo]al
+SFX D 0 fed [^aeio][aeiou]f
+SFX D 0 ged [^aeio][aeiou]g
+SFX D y ied [^aeiou]y
+SFX D 0 ked [^aeio][aeiou]c
+SFX D 0 ked [^aeio][aeiou]k
+SFX D 0 led [^aeio][eiou]l
+SFX D 0 led [^aeo]al
+SFX D 0 med [^aeio][aeiou]m
+SFX D 0 ned [^aeio][aeiou]n
+SFX D 0 ped [^aeio][aeiou]p
+SFX D 0 red [^aeio][aeiou]r
+SFX D 0 sed [^aeio][aeiou]s
+SFX D 0 ted [^aeio][aeiou]t
+SFX D 0 ved [^aeio][aeiou]v
+SFX D 0 zed [^aeio][aeiou]z
+SFX d Y 16
+SFX d 0 d e
+SFX d 0 ed [^aeiou][cl]
+SFX d 0 ed [^ecly]
+SFX d 0 ed [aeio][aeiou][cl]
+SFX d 0 ed [aeiou]y
+SFX d y ied [^aeiou]y
+SFX d 0 ing [^aeiou][cl]
+SFX d 0 ing [^ecl]
+SFX d e ing [^eioy]e
+SFX d 0 ing [aeio][aeiou][cl]
+SFX d 0 ing [eoy]e
+SFX d 0 ked [^aeio][aeiou]c
+SFX d 0 king [^aeio][aeiou]c
+SFX d 0 led [^aeio][aeiou]l
+SFX d 0 ling [^aeio][aeiou]l
+SFX d ie ying ie
+SFX h Y 22
+SFX h 0 bedly [^aeio][aeiou]b
+SFX h 0 dedly [^aeio][aeiou]d
+SFX h 0 dly e
+SFX h 0 edly [^aeio]e[nrt]
+SFX h 0 edly [^aeiou][bcdfgklmnprstvz]
+SFX h 0 edly [^ebcdfgklmnprstvyz]
+SFX h 0 edly [aeio][aeiou][bcdfgklmnprstvz]
+SFX h 0 edly [aeiou]y
+SFX h 0 fedly [^aeio][aeiou]f
+SFX h 0 gedly [^aeio][aeiou]g
+SFX h y iedly [^aeiou]y
+SFX h 0 kedly [^aeio][aeiou]c
+SFX h 0 kedly [^aeio][aeiou]k
+SFX h 0 ledly [^aeio][aeiou]l
+SFX h 0 medly [^aeio][aeiou]m
+SFX h 0 nedly [^aeio][aiou]n
+SFX h 0 pedly [^aeio][aeiou]p
+SFX h 0 redly [^aeio][aiou]r
+SFX h 0 sedly [^aeio][aeiou]s
+SFX h 0 tedly [^aeio][aiou]t
+SFX h 0 vedly [^aeio][aeiou]v
+SFX h 0 zedly [^aeio][aeiou]z
+SFX i Y 66
+SFX i 0 bedness [^aeio][aeiou]b
+SFX i 0 bedness's [^aeio][aeiou]b
+SFX i 0 bednesses [^aeio][aeiou]b
+SFX i 0 dedness [^aeio][aeiou]d
+SFX i 0 dedness's [^aeio][aeiou]d
+SFX i 0 dednesses [^aeio][aeiou]d
+SFX i 0 dness e
+SFX i 0 dness's e
+SFX i 0 dnesses e
+SFX i 0 edness [^aeio]e[nrt]
+SFX i 0 edness [^aeiou][bcdfgklmnprstvz]
+SFX i 0 edness [^ebcdfgklmnprstvyz]
+SFX i 0 edness [aeio][aeiou][bcdfgklmnprstvz]
+SFX i 0 edness [aeiou]y
+SFX i 0 edness's [^aeio]e[nrt]
+SFX i 0 edness's [^aeiou][bcdfgklmnprstvz]
+SFX i 0 edness's [^ebcdfgklmnprstvyz]
+SFX i 0 edness's [aeio][aeiou][bcdfgklmnprstvz]
+SFX i 0 edness's [aeiou]y
+SFX i 0 ednesses [^aeio]e[nrt]
+SFX i 0 ednesses [^aeiou][bcdfgklmnprstvz]
+SFX i 0 ednesses [^ebcdfgklmnprstvyz]
+SFX i 0 ednesses [aeio][aeiou][bcdfgklmnprstvz]
+SFX i 0 ednesses [aeiou]y
+SFX i 0 fedness [^aeio][aeiou]f
+SFX i 0 fedness's [^aeio][aeiou]f
+SFX i 0 fednesses [^aeio][aeiou]f
+SFX i 0 gedness [^aeio][aeiou]g
+SFX i 0 gedness's [^aeio][aeiou]g
+SFX i 0 gednesses [^aeio][aeiou]g
+SFX i y iedness [^aeiou]y
+SFX i y iedness's [^aeiou]y
+SFX i y iednesses [^aeiou]y
+SFX i 0 kedness [^aeio][aeiou]c
+SFX i 0 kedness [^aeio][aeiou]k
+SFX i 0 kedness's [^aeio][aeiou]c
+SFX i 0 kedness's [^aeio][aeiou]k
+SFX i 0 kednesses [^aeio][aeiou]c
+SFX i 0 kednesses [^aeio][aeiou]k
+SFX i 0 ledness [^aeio][aeiou]l
+SFX i 0 ledness's [^aeio][aeiou]l
+SFX i 0 lednesses [^aeio][aeiou]l
+SFX i 0 medness [^aeio][aeiou]m
+SFX i 0 medness's [^aeio][aeiou]m
+SFX i 0 mednesses [^aeio][aeiou]m
+SFX i 0 nedness [^aeio][aiou]n
+SFX i 0 nedness's [^aeio][aiou]n
+SFX i 0 nednesses [^aeio][aiou]n
+SFX i 0 pedness [^aeio][aeiou]p
+SFX i 0 pedness's [^aeio][aeiou]p
+SFX i 0 pednesses [^aeio][aeiou]p
+SFX i 0 redness [^aeio][aiou]r
+SFX i 0 redness's [^aeio][aiou]r
+SFX i 0 rednesses [^aeio][aiou]r
+SFX i 0 sedness [^aeio][aeiou]s
+SFX i 0 sedness's [^aeio][aeiou]s
+SFX i 0 sednesses [^aeio][aeiou]s
+SFX i 0 tedness [^aeio][aiou]t
+SFX i 0 tedness's [^aeio][aiou]t
+SFX i 0 tednesses [^aeio][aiou]t
+SFX i 0 vedness [^aeio][aeiou]v
+SFX i 0 vedness's [^aeio][aeiou]v
+SFX i 0 vednesses [^aeio][aeiou]v
+SFX i 0 zedness [^aeio][aeiou]z
+SFX i 0 zedness's [^aeio][aeiou]z
+SFX i 0 zednesses [^aeio][aeiou]z
+SFX T Y 42
+SFX T 0 ber [^aeio][aeiou]b
+SFX T 0 best [^aeio][aeiou]b
+SFX T 0 der [^aeio][aeiou]d
+SFX T 0 dest [^aeio][aeiou]d
+SFX T 0 er [^aeiou][bcdfgklmnprstvz]
+SFX T 0 er [^ebcdfgklmnprstvyz]
+SFX T 0 er [aeio][aeiou][bcdfgklmnprstvz]
+SFX T 0 er [aeiou]y
+SFX T 0 est [^aeiou][bcdfgklmnprstvz]
+SFX T 0 est [^ebcdfgklmnprstvyz]
+SFX T 0 est [aeio][aeiou][bcdfgklmnprstvz]
+SFX T 0 est [aeiou]y
+SFX T 0 fer [^aeio][aeiou]f
+SFX T 0 fest [^aeio][aeiou]f
+SFX T 0 ger [^aeio][aeiou]g
+SFX T 0 gest [^aeio][aeiou]g
+SFX T y ier [^aeiou]y
+SFX T y iest [^aeiou]y
+SFX T 0 ker [^aeio][aeiou]c
+SFX T 0 ker [^aeio][aeiou]k
+SFX T 0 kest [^aeio][aeiou]c
+SFX T 0 kest [^aeio][aeiou]k
+SFX T 0 ler [^aeio][aeiou]l
+SFX T 0 lest [^aeio][aeiou]l
+SFX T 0 mer [^aeio][aeiou]m
+SFX T 0 mest [^aeio][aeiou]m
+SFX T 0 ner [^aeio][aeiou]n
+SFX T 0 nest [^aeio][aeiou]n
+SFX T 0 per [^aeio][aeiou]p
+SFX T 0 pest [^aeio][aeiou]p
+SFX T 0 r e
+SFX T 0 rer [^aeio][aeiou]r
+SFX T 0 rest [^aeio][aeiou]r
+SFX T 0 ser [^aeio][aeiou]s
+SFX T 0 sest [^aeio][aeiou]s
+SFX T 0 st e
+SFX T 0 ter [^aeio][aeiou]t
+SFX T 0 test [^aeio][aeiou]t
+SFX T 0 ver [^aeio][aeiou]v
+SFX T 0 vest [^aeio][aeiou]v
+SFX T 0 zer [^aeio][aeiou]z
+SFX T 0 zest [^aeio][aeiou]z
+SFX R Y 72
+SFX R 0 ber [^aeio][aeiou]b
+SFX R 0 ber's [^aeio][aeiou]b
+SFX R 0 bers [^aeio][aeiou]b
+SFX R 0 der [^aeio][aeiou]d
+SFX R 0 der's [^aeio][aeiou]d
+SFX R 0 ders [^aeio][aeiou]d
+SFX R 0 er [^aeiou][bcdfgklmnprstvz]
+SFX R 0 er [^ebcdfgklmnprstvyz]
+SFX R 0 er [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 er [aeio][eiou]l
+SFX R 0 er [aeiou]y
+SFX R 0 er [aeo]al
+SFX R 0 er's [^aeiou][bcdfgklmnprstvz]
+SFX R 0 er's [^ebcdfgklmnprstvyz]
+SFX R 0 er's [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 er's [aeio][eiou]l
+SFX R 0 er's [aeiou]y
+SFX R 0 er's [aeo]al
+SFX R 0 ers [^aeiou][bcdfgklmnprstvz]
+SFX R 0 ers [^ebcdfgklmnprstvyz]
+SFX R 0 ers [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 ers [aeio][eiou]l
+SFX R 0 ers [aeiou]y
+SFX R 0 ers [aeo]al
+SFX R 0 fer [^aeio][aeiou]f
+SFX R 0 fer's [^aeio][aeiou]f
+SFX R 0 fers [^aeio][aeiou]f
+SFX R 0 ger [^aeio][aeiou]g
+SFX R 0 ger's [^aeio][aeiou]g
+SFX R 0 gers [^aeio][aeiou]g
+SFX R y ier [^aeiou]y
+SFX R y ier's [^aeiou]y
+SFX R y iers [^aeiou]y
+SFX R 0 ker [^aeio][aeiou]c
+SFX R 0 ker [^aeio][aeiou]k
+SFX R 0 ker's [^aeio][aeiou]c
+SFX R 0 ker's [^aeio][aeiou]k
+SFX R 0 kers [^aeio][aeiou]c
+SFX R 0 kers [^aeio][aeiou]k
+SFX R 0 ler [^aeio][eiou]l
+SFX R 0 ler [^aeo]al
+SFX R 0 ler's [^aeio][eiou]l
+SFX R 0 ler's [^aeo]al
+SFX R 0 lers [^aeio][eiou]l
+SFX R 0 lers [^aeo]al
+SFX R 0 mer [^aeio][aeiou]m
+SFX R 0 mer's [^aeio][aeiou]m
+SFX R 0 mers [^aeio][aeiou]m
+SFX R 0 ner [^aeio][aeiou]n
+SFX R 0 ner's [^aeio][aeiou]n
+SFX R 0 ners [^aeio][aeiou]n
+SFX R 0 per [^aeio][aeiou]p
+SFX R 0 per's [^aeio][aeiou]p
+SFX R 0 pers [^aeio][aeiou]p
+SFX R 0 r e
+SFX R 0 r's e
+SFX R 0 rer [^aeio][aeiou]r
+SFX R 0 rer's [^aeio][aeiou]r
+SFX R 0 rers [^aeio][aeiou]r
+SFX R 0 rs e
+SFX R 0 ser [^aeio][aeiou]s
+SFX R 0 ser's [^aeio][aeiou]s
+SFX R 0 sers [^aeio][aeiou]s
+SFX R 0 ter [^aeio][aeiou]t
+SFX R 0 ter's [^aeio][aeiou]t
+SFX R 0 ters [^aeio][aeiou]t
+SFX R 0 ver [^aeio][aeiou]v
+SFX R 0 ver's [^aeio][aeiou]v
+SFX R 0 vers [^aeio][aeiou]v
+SFX R 0 zer [^aeio][aeiou]z
+SFX R 0 zer's [^aeio][aeiou]z
+SFX R 0 zers [^aeio][aeiou]z
+SFX r Y 24
+SFX r 0 er [^aeiou][cl]
+SFX r 0 er [^ecly]
+SFX r 0 er [aeio][aeiou][cl]
+SFX r 0 er [aeiou]y
+SFX r 0 er's [^aeiou][cl]
+SFX r 0 er's [^ecly]
+SFX r 0 er's [aeio][aeiou][cl]
+SFX r 0 er's [aeiou]y
+SFX r 0 ers [^aeiou][cl]
+SFX r 0 ers [^ecly]
+SFX r 0 ers [aeio][aeiou][cl]
+SFX r 0 ers [aeiou]y
+SFX r y ier [^aeiou]y
+SFX r y ier's [^aeiou]y
+SFX r y iers [^aeiou]y
+SFX r 0 ker [^aeio][aeiou]c
+SFX r 0 ker's [^aeio][aeiou]c
+SFX r 0 kers [^aeio][aeiou]c
+SFX r 0 ler [^aeio][aeiou]l
+SFX r 0 ler's [^aeio][aeiou]l
+SFX r 0 lers [^aeio][aeiou]l
+SFX r 0 r e
+SFX r 0 r's e
+SFX r 0 rs e
+SFX S Y 9
+SFX S 0 es [cs]h
+SFX S 0 es [sxz]
+SFX S y ies [^aeiou]y
+SFX S 0 s [^ae]u
+SFX S 0 s [^cs]h
+SFX S 0 s [^hsuxyz]
+SFX S 0 s [ae]u
+SFX S 0 s [aeiou]y
+SFX S 0 x [ae]u
+SFX P Y 9
+SFX P y iness [^aeiou]y
+SFX P y iness's [^aeiou]y
+SFX P y inesses [^aeiou]y
+SFX P 0 ness [^y]
+SFX P 0 ness [aeiou]y
+SFX P 0 ness's [^y]
+SFX P 0 ness's [aeiou]y
+SFX P 0 nesses [^y]
+SFX P 0 nesses [aeiou]y
+SFX m Y 20
+SFX m 0 man [^aeiou][bdklmnt]e
+SFX m 0 man [^bdeknmt]
+SFX m 0 man [^bdklmnt]e
+SFX m 0 man's [^aeiou][bdklmnt]e
+SFX m 0 man's [^bdeknmt]
+SFX m 0 man's [^bdklmnt]e
+SFX m 0 men [^aeiou][bdklmnt]e
+SFX m 0 men [^bdeknmt]
+SFX m 0 men [^bdklmnt]e
+SFX m 0 men's [^aeiou][bdklmnt]e
+SFX m 0 men's [^bdeknmt]
+SFX m 0 men's [^bdklmnt]e
+SFX m 0 sman [aeiou][bdklmnt]e
+SFX m 0 sman [bdknmt]
+SFX m 0 sman's [aeiou][bdklmnt]e
+SFX m 0 sman's [bdknmt]
+SFX m 0 smen [aeiou][bdklmnt]e
+SFX m 0 smen [bdknmt]
+SFX m 0 smen's [aeiou][bdklmnt]e
+SFX m 0 smen's [bdknmt]
+SFX 5 Y 20
+SFX 5 0 swoman [aeiou][bdklmnt]e
+SFX 5 0 swoman [bdknmt]
+SFX 5 0 swoman's [aeiou][bdklmnt]e
+SFX 5 0 swoman's [bdknmt]
+SFX 5 0 swomen [aeiou][bdklmnt]e
+SFX 5 0 swomen [bdknmt]
+SFX 5 0 swomen's [aeiou][bdklmnt]e
+SFX 5 0 swomen's [bdknmt]
+SFX 5 0 woman [^aeiou][bdklmnt]e
+SFX 5 0 woman [^bdeknmt]
+SFX 5 0 woman [^bdklmnt]e
+SFX 5 0 woman's [^aeiou][bdklmnt]e
+SFX 5 0 woman's [^bdeknmt]
+SFX 5 0 woman's [^bdklmnt]e
+SFX 5 0 women [^aeiou][bdklmnt]e
+SFX 5 0 women [^bdeknmt]
+SFX 5 0 women [^bdklmnt]e
+SFX 5 0 women's [^aeiou][bdklmnt]e
+SFX 5 0 women's [^bdeknmt]
+SFX 5 0 women's [^bdklmnt]e
+SFX 6 Y 3
+SFX 6 0 ful [^y]
+SFX 6 0 ful [aeiou]y
+SFX 6 y iful [^aeiou]y
+SFX j Y 3
+SFX j 0 fully [^y]
+SFX j 0 fully [aeiou]y
+SFX j y ifully [^aeiou]y
+SFX p Y 5
+SFX p 0 ess ll
+SFX p y iless [^aeiou]y
+SFX p 0 less [^l]l
+SFX p 0 less [^ly]
+SFX p 0 less [aeiou]y
+SFX Q Y 44
+SFX Q le ilise [^aeiou]le
+SFX Q le ilised [^aeiou]le
+SFX Q le ilises [^aeiou]le
+SFX Q le ilising [^aeiou]le
+SFX Q y ise [^aeiou]y
+SFX Q 0 ise [^aemsy]
+SFX Q 0 ise [^i]s
+SFX Q e ise [^l]e
+SFX Q 0 ise [^u]m
+SFX Q e ise [aeiou]le
+SFX Q 0 ise [aeiou]y
+SFX Q um ise um
+SFX Q y ised [^aeiou]y
+SFX Q 0 ised [^aemsy]
+SFX Q 0 ised [^i]s
+SFX Q e ised [^l]e
+SFX Q 0 ised [^u]m
+SFX Q e ised [aeiou]le
+SFX Q 0 ised [aeiou]y
+SFX Q um ised um
+SFX Q y ises [^aeiou]y
+SFX Q 0 ises [^aemsy]
+SFX Q 0 ises [^i]s
+SFX Q e ises [^l]e
+SFX Q 0 ises [^u]m
+SFX Q e ises [aeiou]le
+SFX Q 0 ises [aeiou]y
+SFX Q um ises um
+SFX Q y ising [^aeiou]y
+SFX Q 0 ising [^aemsy]
+SFX Q 0 ising [^i]s
+SFX Q e ising [^l]e
+SFX Q 0 ising [^u]m
+SFX Q e ising [aeiou]le
+SFX Q 0 ising [aeiou]y
+SFX Q um ising um
+SFX Q s se is
+SFX Q s sed is
+SFX Q s ses is
+SFX Q s sing is
+SFX Q 0 tise a
+SFX Q 0 tised a
+SFX Q 0 tises a
+SFX Q 0 tising a
+SFX 8 Y 44
+SFX 8 le ilize [^aeiou]le
+SFX 8 le ilized [^aeiou]le
+SFX 8 le ilizes [^aeiou]le
+SFX 8 le ilizing [^aeiou]le
+SFX 8 y ize [^aeiou]y
+SFX 8 0 ize [^aemsy]
+SFX 8 0 ize [^i]s
+SFX 8 e ize [^l]e
+SFX 8 0 ize [^u]m
+SFX 8 e ize [aeiou]le
+SFX 8 0 ize [aeiou]y
+SFX 8 um ize um
+SFX 8 y ized [^aeiou]y
+SFX 8 0 ized [^aemsy]
+SFX 8 0 ized [^i]s
+SFX 8 e ized [^l]e
+SFX 8 0 ized [^u]m
+SFX 8 e ized [aeiou]le
+SFX 8 0 ized [aeiou]y
+SFX 8 um ized um
+SFX 8 y izes [^aeiou]y
+SFX 8 0 izes [^aemsy]
+SFX 8 0 izes [^i]s
+SFX 8 e izes [^l]e
+SFX 8 0 izes [^u]m
+SFX 8 e izes [aeiou]le
+SFX 8 0 izes [aeiou]y
+SFX 8 um izes um
+SFX 8 y izing [^aeiou]y
+SFX 8 0 izing [^aemsy]
+SFX 8 0 izing [^i]s
+SFX 8 e izing [^l]e
+SFX 8 0 izing [^u]m
+SFX 8 e izing [aeiou]le
+SFX 8 0 izing [aeiou]y
+SFX 8 um izing um
+SFX 8 0 tize a
+SFX 8 0 tized a
+SFX 8 0 tizes a
+SFX 8 0 tizing a
+SFX 8 s ze is
+SFX 8 s zed is
+SFX 8 s zes is
+SFX 8 s zing is
+SFX q Y 33
+SFX q le ilisation [^aeiou]le
+SFX q le ilisation's [^aeiou]le
+SFX q le ilisations [^aeiou]le
+SFX q y isation [^aeiou]y
+SFX q 0 isation [^aemsy]
+SFX q 0 isation [^i]s
+SFX q e isation [^l]e
+SFX q 0 isation [^u]m
+SFX q e isation [aeiou]le
+SFX q 0 isation [aeiou]y
+SFX q um isation um
+SFX q y isation's [^aeiou]y
+SFX q 0 isation's [^aemsy]
+SFX q 0 isation's [^i]s
+SFX q e isation's [^l]e
+SFX q 0 isation's [^u]m
+SFX q e isation's [aeiou]le
+SFX q 0 isation's [aeiou]y
+SFX q um isation's um
+SFX q y isations [^aeiou]y
+SFX q 0 isations [^aemsy]
+SFX q 0 isations [^i]s
+SFX q e isations [^l]e
+SFX q 0 isations [^u]m
+SFX q e isations [aeiou]le
+SFX q 0 isations [aeiou]y
+SFX q um isations um
+SFX q s sation is
+SFX q s sation's is
+SFX q s sations is
+SFX q 0 tisation a
+SFX q 0 tisation's a
+SFX q 0 tisations a
+SFX - Y 33
+SFX - le ilization [^aeiou]le
+SFX - le ilization's [^aeiou]le
+SFX - le ilizations [^aeiou]le
+SFX - y ization [^aeiou]y
+SFX - 0 ization [^aemsy]
+SFX - 0 ization [^i]s
+SFX - e ization [^l]e
+SFX - 0 ization [^u]m
+SFX - e ization [aeiou]le
+SFX - 0 ization [aeiou]y
+SFX - um ization um
+SFX - y ization's [^aeiou]y
+SFX - 0 ization's [^aemsy]
+SFX - 0 ization's [^i]s
+SFX - e ization's [^l]e
+SFX - 0 ization's [^u]m
+SFX - e ization's [aeiou]le
+SFX - 0 ization's [aeiou]y
+SFX - um ization's um
+SFX - y izations [^aeiou]y
+SFX - 0 izations [^aemsy]
+SFX - 0 izations [^i]s
+SFX - e izations [^l]e
+SFX - 0 izations [^u]m
+SFX - e izations [aeiou]le
+SFX - 0 izations [aeiou]y
+SFX - um izations um
+SFX - 0 tization a
+SFX - 0 tization's a
+SFX - 0 tizations a
+SFX - s zation is
+SFX - s zation's is
+SFX - s zations is
+SFX s Y 33
+SFX s le iliser [^aeiou]le
+SFX s le iliser's [^aeiou]le
+SFX s le ilisers [^aeiou]le
+SFX s y iser [^aeiou]y
+SFX s 0 iser [^aemsy]
+SFX s 0 iser [^i]s
+SFX s e iser [^l]e
+SFX s 0 iser [^u]m
+SFX s e iser [aeiou]le
+SFX s 0 iser [aeiou]y
+SFX s um iser um
+SFX s y iser's [^aeiou]y
+SFX s 0 iser's [^aemsy]
+SFX s 0 iser's [^i]s
+SFX s e iser's [^l]e
+SFX s 0 iser's [^u]m
+SFX s e iser's [aeiou]le
+SFX s 0 iser's [aeiou]y
+SFX s um iser's um
+SFX s y isers [^aeiou]y
+SFX s 0 isers [^aemsy]
+SFX s 0 isers [^i]s
+SFX s e isers [^l]e
+SFX s 0 isers [^u]m
+SFX s e isers [aeiou]le
+SFX s 0 isers [aeiou]y
+SFX s um isers um
+SFX s s ser is
+SFX s s ser's is
+SFX s s sers is
+SFX s 0 tiser a
+SFX s 0 tiser's a
+SFX s 0 tisers a
+SFX 9 Y 33
+SFX 9 le ilizer [^aeiou]le
+SFX 9 le ilizer's [^aeiou]le
+SFX 9 le ilizers [^aeiou]le
+SFX 9 y izer [^aeiou]y
+SFX 9 0 izer [^aemsy]
+SFX 9 0 izer [^i]s
+SFX 9 e izer [^l]e
+SFX 9 0 izer [^u]m
+SFX 9 e izer [aeiou]le
+SFX 9 0 izer [aeiou]y
+SFX 9 um izer um
+SFX 9 y izer's [^aeiou]y
+SFX 9 0 izer's [^aemsy]
+SFX 9 0 izer's [^i]s
+SFX 9 e izer's [^l]e
+SFX 9 0 izer's [^u]m
+SFX 9 e izer's [aeiou]le
+SFX 9 0 izer's [aeiou]y
+SFX 9 um izer's um
+SFX 9 y izers [^aeiou]y
+SFX 9 0 izers [^aemsy]
+SFX 9 0 izers [^i]s
+SFX 9 e izers [^l]e
+SFX 9 0 izers [^u]m
+SFX 9 e izers [aeiou]le
+SFX 9 0 izers [aeiou]y
+SFX 9 um izers um
+SFX 9 0 tizer a
+SFX 9 0 tizer's a
+SFX 9 0 tizers a
+SFX 9 s zer is
+SFX 9 s zer's is
+SFX 9 s zers is
+SFX t Y 22
+SFX t le ilisability [^aeiou]le
+SFX t le ilisable [^aeiou]le
+SFX t y isability [^aeiou]y
+SFX t 0 isability [^aemsy]
+SFX t 0 isability [^i]s
+SFX t e isability [^l]e
+SFX t 0 isability [^u]m
+SFX t e isability [aeiou]le
+SFX t 0 isability [aeiou]y
+SFX t um isability um
+SFX t y isable [^aeiou]y
+SFX t 0 isable [^aemsy]
+SFX t 0 isable [^i]s
+SFX t e isable [^l]e
+SFX t 0 isable [^u]m
+SFX t e isable [aeiou]le
+SFX t 0 isable [aeiou]y
+SFX t um isable um
+SFX t s sability is
+SFX t s sable is
+SFX t 0 tisability a
+SFX t 0 tisable a
+SFX + Y 22
+SFX + le ilizability [^aeiou]le
+SFX + le ilizable [^aeiou]le
+SFX + y izability [^aeiou]y
+SFX + 0 izability [^aemsy]
+SFX + 0 izability [^i]s
+SFX + e izability [^l]e
+SFX + 0 izability [^u]m
+SFX + e izability [aeiou]le
+SFX + 0 izability [aeiou]y
+SFX + um izability um
+SFX + y izable [^aeiou]y
+SFX + 0 izable [^aemsy]
+SFX + 0 izable [^i]s
+SFX + e izable [^l]e
+SFX + 0 izable [^u]m
+SFX + e izable [aeiou]le
+SFX + 0 izable [aeiou]y
+SFX + um izable um
+SFX + 0 tizability a
+SFX + 0 tizable a
+SFX + s zability is
+SFX + s zable is
+SFX M Y 1
+SFX M 0 's .
+SFX B Y 48
+SFX B e ability [^a]te
+SFX B e ability [^acegilotu]e
+SFX B 0 ability [^aeiou][bcdfgklmnprstvz]
+SFX B 0 ability [^ebcdfgklmnprstvzy]
+SFX B 0 ability [acegilou]e
+SFX B 0 ability [aeio][aeiou][bcdfgklmnprstvz]
+SFX B 0 ability [aeiou]y
+SFX B e able [^a]te
+SFX B e able [^acegilotu]e
+SFX B 0 able [^aeiou][bcdfgklmnprstvz]
+SFX B 0 able [^ebcdfgklmnprstvzy]
+SFX B 0 able [acegilou]e
+SFX B 0 able [aeio][aeiou][bcdfgklmnprstvz]
+SFX B 0 able [aeiou]y
+SFX B 0 bability [^aeio][aeiou]b
+SFX B 0 bable [^aeio][aeiou]b
+SFX B te bility ate
+SFX B te ble ate
+SFX B 0 dability [^aeio][aeiou]d
+SFX B 0 dable [^aeio][aeiou]d
+SFX B 0 fability [^aeio][aeiou]f
+SFX B 0 fable [^aeio][aeiou]f
+SFX B 0 gability [^aeio][aeiou]g
+SFX B 0 gable [^aeio][aeiou]g
+SFX B y iability [^aeiou]y
+SFX B y iable [^aeiou]y
+SFX B 0 kability [^aeio][aeiou]c
+SFX B 0 kability [^aeio][aeiou]k
+SFX B 0 kable [^aeio][aeiou]c
+SFX B 0 kable [^aeio][aeiou]k
+SFX B 0 lability [^aeio][aeiou]l
+SFX B 0 lable [^aeio][aeiou]l
+SFX B 0 mability [^aeio][aeiou]m
+SFX B 0 mable [^aeio][aeiou]m
+SFX B 0 nability [^aeio][aeiou]n
+SFX B 0 nable [^aeio][aeiou]n
+SFX B 0 pability [^aeio][aeiou]p
+SFX B 0 pable [^aeio][aeiou]p
+SFX B 0 rability [^aeio][aeiou]r
+SFX B 0 rable [^aeio][aeiou]r
+SFX B 0 sability [^aeio][aeiou]s
+SFX B 0 sable [^aeio][aeiou]s
+SFX B 0 tability [^aeio][aeiou]t
+SFX B 0 table [^aeio][aeiou]t
+SFX B 0 vability [^aeio][aeiou]v
+SFX B 0 vable [^aeio][aeiou]v
+SFX B 0 zability [^aeio][aeiou]z
+SFX B 0 zable [^aeio][aeiou]z
+SFX 7 Y 9
+SFX 7 0 able [^acegilou]e
+SFX 7 0 able [^aeiou][cl]
+SFX 7 0 able [^cely]
+SFX 7 e able [acegilou]e
+SFX 7 0 able [aeio][aeiou][cl]
+SFX 7 0 able [aeiou]y
+SFX 7 y iable [^aeiou]y
+SFX 7 0 kable [^aeio][aeiou]c
+SFX 7 0 lable [^aeio][aeiou]l
+SFX g Y 9
+SFX g e ability [^acegilou]e
+SFX g 0 ability [^aeiou][cl]
+SFX g 0 ability [^cely]
+SFX g 0 ability [acegilou]e
+SFX g 0 ability [aeio][aeiou][cl]
+SFX g 0 ability [aeiou]y
+SFX g y iability [^aeiou]y
+SFX g 0 kability [^aeio][aeiou]c
+SFX g 0 lability [^aeio][aeiou]l
+SFX l Y 9
+SFX l e ably [^acegilou]e
+SFX l 0 ably [^aeiou][cl]
+SFX l 0 ably [^cely]
+SFX l 0 ably [acegilou]e
+SFX l 0 ably [aeio][aeiou][cl]
+SFX l 0 ably [aeiou]y
+SFX l y iably [^aeiou]y
+SFX l 0 kably [^aeio][aeiou]c
+SFX l 0 lably [^aeio][aeiou]l
+SFX b Y 3
+SFX b e ible [^aeiou]e
+SFX b 0 ible [^e]
+SFX b 0 ible [aeiou]e
+SFX L Y 12
+SFX L 0 ament m
+SFX L 0 ament's m
+SFX L 0 aments m
+SFX L y iment [^aeiou]y
+SFX L y iment's [^aeiou]y
+SFX L y iments [^aeiou]y
+SFX L 0 ment [^my]
+SFX L 0 ment [aeiou]y
+SFX L 0 ment's [^my]
+SFX L 0 ment's [aeiou]y
+SFX L 0 ments [^my]
+SFX L 0 ments [aeiou]y
+SFX Z Y 30
+SFX Z 0 by [^aeio][aeiou]b
+SFX Z 0 dy [^aegio][aeiou]d
+SFX Z 0 ey [aiouy]
+SFX Z 0 fy [^aeio][aeiou]f
+SFX Z 0 gy [^aeio][aeiou]g
+SFX Z 0 ity ous
+SFX Z 0 ky [^adeio][aeiou]c
+SFX Z 0 ky [^aeio][aeiou]k
+SFX Z 0 ly [^aeio][aeiou]l
+SFX Z 0 my [^aeio][aeiou]m
+SFX Z 0 ny [^aeio][aiou]n
+SFX Z 0 py [^aeio][aeiou]p
+SFX Z 0 ry [^aegilost][aiou]r
+SFX Z 0 ry lur
+SFX Z 0 ry tar
+SFX Z 0 sy [^aeio][aeiou]s
+SFX Z 0 ty [^aeio][aiou]t
+SFX Z 0 vy [^aeio][aeiou]v
+SFX Z 0 y [^aceiglmopt][a]r
+SFX Z 0 y [^aebcdfgiklmnoprstuvyz]
+SFX Z 0 y [^aeio]e[nrt]
+SFX Z 0 y [^aeiou][bcdfgklmnprstvz]
+SFX Z e y [^aeiouy]e
+SFX Z 0 y [aeio][aeiou][bcdfgklmnprtvz]
+SFX Z 0 y [aeiouy]e
+SFX Z 0 y [gl][a]r
+SFX Z 0 y [st]or
+SFX Z ic y dic
+SFX Z 0 y ged
+SFX Z 0 zy [^aeio][aeiou]z
+SFX 2 Y 63
+SFX 2 0 biness [^aeio][aeiou]b
+SFX 2 0 biness's [^aeio][aeiou]b
+SFX 2 0 binesses [^aeio][aeiou]b
+SFX 2 0 diness [^aeio][aeiou]d
+SFX 2 0 diness's [^aeio][aeiou]d
+SFX 2 0 dinesses [^aeio][aeiou]d
+SFX 2 0 finess [^aeio][aeiou]f
+SFX 2 0 finess's [^aeio][aeiou]f
+SFX 2 0 finesses [^aeio][aeiou]f
+SFX 2 0 giness [^aeio][aeiou]g
+SFX 2 0 giness's [^aeio][aeiou]g
+SFX 2 0 ginesses [^aeio][aeiou]g
+SFX 2 0 iness [^aeio]e[nrt]
+SFX 2 0 iness [^aeiou][bcdfgklmnprstvz]
+SFX 2 e iness [^aeiouy]e
+SFX 2 0 iness [^ebcdfgklmnprstvz]
+SFX 2 0 iness [aeio][aeiou][bcdfgklmnprstvz]
+SFX 2 0 iness [aeiouy]e
+SFX 2 0 iness's [^aeio]e[nrt]
+SFX 2 0 iness's [^aeiou][bcdfgklmnprstvz]
+SFX 2 e iness's [^aeiouy]e
+SFX 2 0 iness's [^ebcdfgklmnprstvz]
+SFX 2 0 iness's [aeio][aeiou][bcdfgklmnprstvz]
+SFX 2 0 iness's [aeiouy]e
+SFX 2 0 inesses [^aeio]e[nrt]
+SFX 2 0 inesses [^aeiou][bcdfgklmnprstvz]
+SFX 2 e inesses [^aeiouy]e
+SFX 2 0 inesses [^ebcdfgklmnprstvz]
+SFX 2 0 inesses [aeio][aeiou][bcdfgklmnprstvz]
+SFX 2 0 inesses [aeiouy]e
+SFX 2 0 kiness [^aeio][aeiou]c
+SFX 2 0 kiness [^aeio][aeiou]k
+SFX 2 0 kiness's [^aeio][aeiou]c
+SFX 2 0 kiness's [^aeio][aeiou]k
+SFX 2 0 kinesses [^aeio][aeiou]c
+SFX 2 0 kinesses [^aeio][aeiou]k
+SFX 2 0 liness [^aeio][aeiou]l
+SFX 2 0 liness's [^aeio][aeiou]l
+SFX 2 0 linesses [^aeio][aeiou]l
+SFX 2 0 miness [^aeio][aeiou]m
+SFX 2 0 miness's [^aeio][aeiou]m
+SFX 2 0 minesses [^aeio][aeiou]m
+SFX 2 0 niness [^aeio][aiou]n
+SFX 2 0 niness's [^aeio][aiou]n
+SFX 2 0 ninesses [^aeio][aiou]n
+SFX 2 0 piness [^aeio][aeiou]p
+SFX 2 0 piness's [^aeio][aeiou]p
+SFX 2 0 pinesses [^aeio][aeiou]p
+SFX 2 0 riness [^aeio][aiou]r
+SFX 2 0 riness's [^aeio][aiou]r
+SFX 2 0 rinesses [^aeio][aiou]r
+SFX 2 0 siness [^aeio][aeiou]s
+SFX 2 0 siness's [^aeio][aeiou]s
+SFX 2 0 sinesses [^aeio][aeiou]s
+SFX 2 0 tiness [^aeio][aiou]t
+SFX 2 0 tiness's [^aeio][aiou]t
+SFX 2 0 tinesses [^aeio][aiou]t
+SFX 2 0 viness [^aeio][aeiou]v
+SFX 2 0 viness's [^aeio][aeiou]v
+SFX 2 0 vinesses [^aeio][aeiou]v
+SFX 2 0 ziness [^aeio][aeiou]z
+SFX 2 0 ziness's [^aeio][aeiou]z
+SFX 2 0 zinesses [^aeio][aeiou]z
+SFX z Y 24
+SFX z 0 bily [^aeio][aeiou]b
+SFX z 0 dily [^aeio][aeiou]d
+SFX z 0 fily [^aeio][aeiou]f
+SFX z 0 gily [^aeio][aeiou]g
+SFX z 0 ily [^aeio]e[nrt]
+SFX z 0 ily [^aeiou][bcdfgklmnprstvz]
+SFX z y ily [^aeiou]y
+SFX z e ily [^aeiouy]e
+SFX z 0 ily [^ebcdfgklmnprstvyz]
+SFX z 0 ily [aeio][aeiou][bcdfgklmnprstvyz]
+SFX z 0 ily [aeiouy]e
+SFX z 0 ily [aiou]y
+SFX z ey ily ey
+SFX z 0 kily [^aeio][aeiou]c
+SFX z 0 kily [^aeio][aeiou]k
+SFX z 0 lily [^aeio][aeiou]l
+SFX z 0 mily [^aeio][aeiou]m
+SFX z 0 nily [^aeio][aiou]n
+SFX z 0 pily [^aeio][aeiou]p
+SFX z 0 rily [^aeio][aiou]r
+SFX z 0 sily [^aeio][aeiou]s
+SFX z 0 tily [^aeio][aiou]t
+SFX z 0 vily [^aeio][aeiou]v
+SFX z 0 zily [^aeio][aeiou]z
+SFX y Y 15
+SFX y 0 ary ion
+SFX y e ary se
+SFX y 0 atory [^i]m
+SFX y e atory [mr]e
+SFX y 0 ery h
+SFX y im matory im
+SFX y 0 nery [aiu]n
+SFX y 0 ory [^aeous]t
+SFX y 0 ory s
+SFX y e ory te
+SFX y 0 ry [^aiou]n
+SFX y 0 ry [^ehmstn]
+SFX y 0 ry [^i]on
+SFX y 0 ry [^mrst]e
+SFX y 0 ry [aeous]t
+SFX O Y 23
+SFX O 0 al [^f][nu][gt]e
+SFX O 0 al [ai]t
+SFX O e al [aioy][dp]e
+SFX O 0 al [cdghmpwx]
+SFX O 0 al [ceos]t
+SFX O 0 al [eimru][bfn]
+SFX O 0 al [eo]nt
+SFX O 0 al [ghiorstx][ao]n
+SFX O e al [mnrsv]e
+SFX O 0 al [nt]ant
+SFX O 0 al a[ks]
+SFX O 0 al ch[ei]
+SFX O i al ci
+SFX O 0 al ss
+SFX O e al uge
+SFX O e ial [aei]ge
+SFX O e ial [ai]ce
+SFX O 0 ial eon
+SFX O 0 ial r
+SFX O y ial y
+SFX O e inal ude
+SFX O 0 l a
+SFX O 0 tal ut
+SFX o Y 12
+SFX o 0 ally [^aebcrtxmy]
+SFX o e ally [^bcgv]e
+SFX o 0 ally [^ipux]t
+SFX o 0 ally [^u]m
+SFX o y ally ty
+SFX o um ally um
+SFX o y ially [^t]y
+SFX o e ially [bcgv]e
+SFX o 0 ially [bcrx]
+SFX o 0 lly a
+SFX o 0 tally [iu]t
+SFX o 0 ually [px]t
+SFX W Y 27
+SFX W e atic [^cx][aeioumy]me
+SFX W 0 atic [aeiou]m
+SFX W 0 c [dghlmnsz]i
+SFX W a c [i]a
+SFX W e c [o][l][i]e
+SFX W y etic thy
+SFX W 0 ic [^aeilmrsy]
+SFX W 0 ic [^aeiou]m
+SFX W 0 ic [^ay]l
+SFX W e ic [^b]le
+SFX W e ic [^cilms]e
+SFX W 0 ic [^e]r
+SFX W e ic [^hn][e]me
+SFX W y ic [^hs]y
+SFX W a ic [^im]a
+SFX W y ic [^t]hy
+SFX W 0 ic [hmv]er
+SFX W 0 ic [nx][ay]l
+SFX W le ic ble
+SFX W us ic us
+SFX W 0 lic [^nx][ay]l
+SFX W er ric [^hmv]er
+SFX W 0 tic [^u]s
+SFX W 0 tic ma
+SFX W se tic se
+SFX W y tic sy
+SFX W ce tific ce
+SFX w Y 9
+SFX w 0 atical [aeiou]m
+SFX w 0 ical [^aeiou]m
+SFX w 0 ical [^aemry]
+SFX w 0 ical [^e]r
+SFX w a ical [^m]a
+SFX w e ical e
+SFX w y ical y
+SFX w er rical er
+SFX w 0 tical ma
+SFX 1 Y 10
+SFX 1 0 atically [aeiou]m
+SFX 1 0 cally [i]
+SFX 1 0 ically [^aeimry]
+SFX 1 0 ically [^aeiou]m
+SFX 1 0 ically [^e]r
+SFX 1 a ically [^m]a
+SFX 1 e ically e
+SFX 1 y ically y
+SFX 1 er rically er
+SFX 1 0 tically ma
+SFX 3 Y 27
+SFX 3 e ist [^aceiou]e
+SFX 3 y ist [^aeioubp]y
+SFX 3 0 ist [^eoy]
+SFX 3 0 ist [^r][^a][aeioubp]y
+SFX 3 0 ist [aeiou]e
+SFX 3 y ist apy
+SFX 3 o ist o
+SFX 3 y ist ropy
+SFX 3 e ist's [^aceiou]e
+SFX 3 y ist's [^aeioubp]y
+SFX 3 0 ist's [^eoy]
+SFX 3 0 ist's [^r][^a][aeioubp]y
+SFX 3 0 ist's [aeiou]e
+SFX 3 y ist's apy
+SFX 3 o ist's o
+SFX 3 y ist's ropy
+SFX 3 e ists [^aceiou]e
+SFX 3 y ists [^aeioubp]y
+SFX 3 0 ists [^eoy]
+SFX 3 0 ists [^r][^a][aeioubp]y
+SFX 3 0 ists [aeiou]e
+SFX 3 y ists apy
+SFX 3 o ists o
+SFX 3 y ists ropy
+SFX 3 ce tist ce
+SFX 3 ce tist's ce
+SFX 3 ce tists ce
+SFX = Y 15
+SFX = 0 essness ll
+SFX = 0 essness's ll
+SFX = 0 essnesses ll
+SFX = y ilessness [^aeiou]y
+SFX = y ilessness's [^aeiou]y
+SFX = y ilessnesses [^aeiou]y
+SFX = 0 lessness [^l]l
+SFX = 0 lessness [^ly]
+SFX = 0 lessness [aeiou]y
+SFX = 0 lessness's [^l]l
+SFX = 0 lessness's [^ly]
+SFX = 0 lessness's [aeiou]y
+SFX = 0 lessnesses [^l]l
+SFX = 0 lessnesses [^ly]
+SFX = 0 lessnesses [aeiou]y
+SFX ~ Y 1
+SFX ~ 0 ish .
diff --git a/dictionaries/en/en_GB.dic b/dictionaries/en/en_GB.dic
new file mode 100644
index 0000000..587428b
--- /dev/null
+++ b/dictionaries/en/en_GB.dic
@@ -0,0 +1,96406 @@
+96405
+'gainst
+'mongst
+'neath
+'strewth
+'struth
+'tis
+'twas
+'tween-decks
+'twixt
+0/#@
+0th/}{
+1/#0
+1024x768
+1080i
+1080p
+128-bit
+1280x720
+1280x720p
+128K
+1366x768
+16-bit
+16K
+1920x1080
+1920x1080i
+1920x1080p
+1D
+1st/}
+1th/{_
+2/#@
+24-bit
+256-bit
+2D
+2nd/}
+2th/{_
+3/#@
+32-bit
+320x240
+3D
+3DES/M
+3GPP/M
+3rd/}
+3th/{_
+4/#@
+48K
+4D
+4th/}{
+4x4/S
+5/#@
+512-bit
+5th/}{
+6/#@
+64-bit
+640x480
+64K
+6th/}{
+7/#@
+720p
+7th/}{
+8-bit
+8/#@
+800x600
+8th/}{
+9/#@
+9th/}{
+A
+A'Chleit/M
+A-bomb/S
+A-levels
+A-line
+a.m.
+a/o
+A1
+A2
+A3
+A4
+A5
+AA
+AAA
+AAC
+Aachen/M
+AACS/M
+Aalborg/M
+aardvark/MS
+aardwolf/M
+aardwolves
+aargh
+Aarhus/M
+Aaron/M
+Aaronvitch/M
+aasvogel/MS
+ab
+Ab/M
+AB/S
+Ababa/M
+abac/MS
+abaca/MS
+abaci/M
+abacist/SM
+aback/SM
+abacus/SM
+Abaddon/M
+Abadie/M
+abaft
+abalone/MS
+abamectin/SM
+abandon/7LdSr
+abandonedly
+abandonware/M Noun: uncountable
+abaptation
+abaptive
+abase/SGLDr
+abash/LGS
+abashed/UY
+abasic
+abask
+abatable
+abate/LGSDr
+abatis/SM
+abattoir/SM
+abaxial
+abaya/MS
+Abba/M
+abba/MS
+abbacy/MS
+Abbas/M
+Abbasid/MS
+abbatial
+Abbe/M
+abbé/SM
+Abberley/M
+Abberton/M
+Abbess/M
+abbess/SM
+Abbeville/M
+Abbevillian
+Abbey/M
+abbey/SM
+Abbeygreen/M
+Abbot/MS
+abbot/SM
+Abbotsbury/M
+Abbotsford/M
+Abbotsgrange/M
+Abbotshall/M
+Abbotsham/M
+Abbotside/M
+Abbotsinch/M
+Abbotskerswell/M
+Abbotsley/M
+Abbotstone/M
+Abbott/MS
+abbreviate/nSGD
+abbreviatory Adjective
+Abbs/M
+Abby/M
+ABC/SM
+Abcam/M
+Abchurch/M
+Abdale/M
+abdicable
+abdicant/MS
+abdicate/DGSn
+Abdie/M
+abdomen/MS
+abdominal/YSM
+abdominiser/SM
+abdominizer/SM
+abdominoplasty/SM
+abdominoscopy/M Noun: uncountable
+abdominous Adjective
+Abdon/M
+abducens/M
+abducible Adjective
+abduct/SDG
+abductee/SM
+abduction/SM
+abductive/Y
+abductor/MS
+Abdul/M
+Abdullah/M
+Abe/M
+abeam
+abecedarian
+abed
+Abegg/M
+Abel/M
+Abelard/M
+abele/MS
+Abelson/M
+Abenbury/M
+Abenhall/M
+Aber-Arth/M
+Aber-erch/M
+Aber-porth/M
+Aber/M
+Aberaeron/M
+Aberaman/M
+Aberavon/M
+Aberbythych/M
+Abercarn/M
+Aberchirder/M
+Aberconwy/M
+Abercorn/M
+Abercrombie/M
+Abercromby/M
+Abercynon/M
+Abercywyn/M
+Aberdalgie/M
+Aberdare/M
+Aberdaron/M
+Aberdeen/M
+Aberdeenshire/M
+aberdevine/M
+Aberdonian/SM
+Aberdour/M
+Aberdyfi/M
+Aberedw/M
+aberemurder/M
+Aberfeldie/M
+Aberfeldy/M
+Aberffraw/M
+Aberford/M
+Aberfoyle/M
+Abergavenny/M
+Abergele/M
+Abergorlech/M
+Abergwesyn/M
+Abergwili/M
+Abergwyngregyn/M
+Aberhafesp/M
+Aberlady/M
+Aberlemno/M
+Aberlour/M
+Aberluthnott/M
+Abermule/M
+Abernant/M
+Abernathy/M
+Abernethy/MS
+Abernyte/M
+Aberpergwm/M
+Aberporth/M
+aberrance/MS
+aberrancy/MS
+aberrant/Y
+aberration/MSO^
+Abersychan/M
+Abertarff/M
+Abertillery/M
+Aberwheeler/M
+Aberyscir/M
+Aberystruth/M
+Aberystwyth/M
+abet/GSD
+abetment/M
+abetter/MS
+abettor/SM
+abeyance/SM
+abeyant
+abhor/SGD
+abhorrence/SM
+abhorrent/Y
+abhorrer/MS
+abidance/MS
+abide/kGDSr
+Abidjan/M
+Abigail/M
+abigail/MS
+Abijah/M
+Abilene/M
+Abilify/M
+ability/ESIM
+Abimelech/M
+Abingdon/M
+Abinger/M
+Abington/M
+abiogenesis
+abiogenetic/Y
+abiogenic
+abiogenist/MS
+abiotic/Y
+Abitibi-Ouest/M
+Abitibi-Témiscamingue/M
+Abitibi/M
+abject/PY
+abjection/MS
+abjure/nyRSDG
+Abkhazia/M
+ablate/SDGn
+ablatival
+ablaut/M
+ablaze
+able-bodied
+able/nVvYTDP
+ablegate/n
+ableism/M Noun: uncountable
+ableist/SM
+ablepsy/M Noun: uncountable
+Ableton/M
+ablism
+abloom
+ablush
+ablution/SM
+ablutionary
+ABM/S
+abnegate/GnDS
+abnegator/MS
+Abney/M
+abnormal/Y
+abnormality/SM
+abnormity/MS
+Abo/MS
+aboard
+abode/MS
+Aboite/M
+abolish/DGLRS
+abolishable
+abolition/SM3O
+abolitionary
+abolitionism/SM
+abomasa/M
+abomasum/SM
+Abominable
+abominable/Y
+abominableness/M
+abominate/DnSG
+abominator/MS
+Aboriginal/MS
+aboriginal/SM
+Aboriginality/M
+aborigine/oSM
+abort/DVGvSur
+abortee/SM
+aborticide/SM
+abortifacient/SM
+abortion/3SMO
+abortive/P
+abortoria/M
+abortorium/M
+aboulia/MW
+abound/GDS
+about
+above
+aboveboard
+aboveground
+Aboyne/M
+abracadabra/SM
+abrade/DGVXvuNSR
+Abraham/M
+Abrahamic/O
+Abrahamsen/M
+Abram/MS
+Abramovich/M
+Abrantes/M
+abrasion/SM
+abrasive/MSP
+abreact/SGD
+abreaction/MS
+abreactive
+abreast
+abrenunciation/SM
+Abreu/M
+abricotine/SM
+Abridge/M
+abridge/RDGSLh
+abrin/M Noun: uncountable
+abroad
+abrogate/DnGS
+abrogative
+abrogator/MS
+Abronhill/M
+Abrunhosa/M
+abrupt/YPTh
+abruption/SM
+abs/M
+abscess/DSGM
+abscissa/MS
+abscissae/M
+abscission/SM
+abscond/DRSG
+absconsion/MS
+abseil/SDG
+abseiler/SM
+absence/SM
+absent-minded/YP
+absent/YDGr
+absentee/MS
+absenteeism/SM
+absentia/M
+absentminded
+absentmindedness/M Noun: uncountable
+absentness/M
+absinth/SM
+absinthe/MS
+absinthiated
+absinthism/M Noun: uncountable
+absit
+absolute/PTY3S
+absolution/MS
+absolutism/SM
+absolve/GSDr
+Abson/M
+absorb/kVNXRDGSh
+absorbability/M
+absorbable
+absorbance/SM
+absorbancy/SM
+absorbency/SM
+absorbent/MS
+absorptance/SM
+absorptiometer/SM
+absorptiometry/MW1
+absorption/SM
+absorptiveness/M
+absorptivity/SM
+abstain/RGSD
+abstemious/YP
+abstention/MS3
+abstergent/MS
+abstersion/M
+abstersive
+abstinence/MS
+abstinency/M
+abstinent/SMY
+abstract/ShTVPGYr
+abstracted/P
+abstractify/SGD
+abstraction/3SM
+abstractionism/SM
+abstractor/SM
+abstruse/TYP
+absurd/PYT3
+absurdism/M Noun: usually uncountable
+absurdity/MS
+absurdum
+Abthorpe/M
+Abu/M
+abubble
+abugida/SM
+Abuja/M
+abulia/MW
+abundance/MS
+abundant/Y
+abusable
+abuse/GSDr
+abusive/YP
+abut/GRSLD
+abutilon/SM
+abuzz
+Aby/M
+abye/DS
+abysm/MS
+abysmal/Y
+abyss/SMO
+Abyssinia/M
+Abyssinian/SM
+abyssopelagic
+AC
+Ac
+acacia/SM
+academe/1SMZw
+academia/MS
+academic/SM
+academicals
+academician/SM
+academicianship
+academicism/SM
+academism/SM
+academy/MS
+Acadia/M
+Acadian/SM
+acanthite/M Noun: uncountable
+acanthus/SM
+acapnia/M Noun: uncountable
+acapsular
+Acapulco/M
+acara/SM
+acarid/MS
+acarpous
+ACAS
+Acaster/M
+acatalectic/MS
+acc.
+accede/SDG
+accelerandi
+accelerando/MS
+accelerant/SM
+accelerate/kGnSDVh
+accelerator/SMZ
+accelerogram/SM
+accelerograph/SM
+accelerometer/MS
+accension/SM
+accent/GMDS
+accentor/SM
+accentual/Y
+accentualist/M
+accentuality/M
+accentuate/DSnG
+accept/DBSRVGkhl
+acceptability/MS
+acceptable/P
+acceptance/SM
+acceptant/SM
+acceptation/SM
+acceptee/SM
+acceptilation/SM
+acceptingness
+acceptor/MS
+access/NSXDyMbG
+accessary/MS
+accessibility/ISM
+accessible/IY
+accessibly/I
+accession/MDG
+accessit/M
+accessor/SM
+accessorize/DGS
+accessory/MSO
+acciaccatura/MS
+accidence/M
+accident-prone
+accident/DoMS
+accidental/SP3
+accidentalism/M Noun: uncountable
+accidentality
+accidie/M
+acclaim/DSGr
+acclamation/MS
+acclimatation/MS
+acclimate/Ss9Q8DnG
+acclimatise/ADSGN
+acclimatization
+acclimatize/ADSG
+acclivitous
+acclivity/SM
+accolade/MGDS
+Accomack/M
+accommodate/DGnkSVu
+accommodative/P
+accompany/3SLDGr
+accompli/M
+accomplice/SM
+accomplicity
+accomplish/RLSGD
+accord/SMDkRG
+accordance/SM
+accordant/Y
+Accordia/M
+accordion/MS3
+accost/DSG
+accouchement/M
+accoucheur/MS
+accoucheuse/MS
+account/DMBlSGp
+accountability/SM
+accountable/P
+accountably/U
+accountancy/SM
+accountant/SM
+accounting/M
+accoutre/LDSG
+Accra/M
+accredit/Snd
+accrementition/SM
+accrementitious
+accrescence/SM
+accreta
+accrete/SGDn
+accretional
+accretionary
+accretive
+Accrington/M
+accrual/MS
+accrue/SGD
+acct
+acculturate/VDSGn
+accumbens
+accumulate/DSGVnvu
+accumulative/P
+accumulator/SM
+accuracy/ISM
+accurate/YP
+accurately/I
+accursed/YP
+accurst
+accusable
+accusal/SM
+accusative/YSMO
+accusatory/O
+accuse/DnRkSG
+accustom/dS
+accustomedness/M
+ace/vSMnuVr
+acedia/M
+Aceldama/MS
+acellular
+acentric
+acephalous/Y
+acephaly/W
+acepromazine/M Noun: uncountable
+acerbate/GDS
+acerbic/Y
+acerbity/SM
+acescence/M
+acescent
+acetabula
+acetabular
+acetabulum
+acetaldehyde/SM
+acetaminophen/SM
+acetanilide/SM
+acetate/SM
+acetazolamide/M Noun: usually uncountable
+acetazoleamide
+acetic
+acetobacter/SM
+acetogenic
+acetone/SM
+acetous
+acetyl/SM
+acetylcholine/SM
+acetylcholinesterase/SM
+acetylene/MS
+acetylsalicylic
+Achaea/M
+Achaean/MS
+Achaemenid/SM
+achaetous
+Achahoish/M
+Acharacle/M
+acharnement/M
+Acharya/M
+acharya/SM
+Achates/M
+ache/DGkZSM
+ached/FKA
+achene/SM
+Acheron/M
+aches/KFA
+Acheulean
+Acheulian/M
+achievable/U
+achieve/GS
+achieve/RSfDG
+achieved/Uc
+achievement/SM
+Achill/M
+achillea/SM
+Achilles/M
+Achillobator Taxonomic genus
+achimenes
+aching/KY
+Achnacarry/M
+achondroplasia/SM
+achondroplasiac
+achondroplasic/SM
+achondroplastic
+Achonry/M
+achromatic/Y
+achromaticity/M
+achromatism/M
+Achtemeier/M
+Achurch/M
+achy/TK
+acicular
+acid/YPWSM
+acidanthera/SM
+acidify/SGDn
+acidimeter/MS
+acidimetry/Ww1
+acidity/SM
+acidophil/SMW
+acidophile/SM
+acidoses
+acidosis/M
+acidotic/Y
+acidulate/DGS
+acidulous/Y
+acini
+acinus/M
+Aciphex/M
+ack
+ackee/MS
+Ackerman/M
+Acklam/M
+Ackman/M
+acknowledge/LRGShD
+acknowledgeable
+acknowledgment/SM
+Ackworth/M
+Acle/M
+aclinic
+ACM
+acme/MS
+acne/SMD
+acoelomate/SM
+Acol/M
+acolyte/MS
+Acomb/M
+Aconbury/M
+aconine/M Noun: uncountable
+aconite/MSW
+aconitine/SM
+aconitum/SM
+Acons/M
+acorn/MS
+acotyledon/MS
+acotyledonous
+acoustic/YOS
+acoustician/MS
+ACPI
+acquaint/ASDG
+acquaintance/SM
+acquaintanceship/S
+acquest/M
+acquiesce/DSGk
+acquiescence/SM
+acquiescent/Y
+acquihire/SGDM
+acquirable
+acquire/DASG
+acquiree/SM
+acquirement/SM
+acquirer/SM
+acquisition/MA
+acquisition/S
+acquisitive/PY
+acquit/DGSR
+Acquitanian/M
+acquittal/SM
+acquittance/SM
+acre/DSM
+Acre/MS
+acreage/MS
+acrid/PY
+acridine/SM
+acridity/SM
+acriflavine/M
+acrimonious/PY
+acrimony/SM
+Acrise/M
+acroamatic/S
+acrobacy/SM
+acrobat/M1SW
+acrobatic/S
+acroblast/SM
+acrocentric
+acrodont/MS
+acrogenous
+acrolect/M
+acrolect/SO^
+acromegaly/W
+acromion
+acronym/SM
+acropetal/Y
+acrophobia/MS
+Acropolis
+acropolis/MS
+acroscopic
+acrosin/M Noun: uncountable
+acrosome/SMO
+across
+acrostic/MS
+acrostichal
+acrylamide/SM
+acrylate/SM
+acrylic/SM
+acrylonitrile/SM
+act/cS4GAD
+act/M
+acta/M
+actant/SM
+actin/OSMW
+actinia/M
+actinide/MS
+actinism/M
+actinium/M Noun: uncountable
+actinocene/SM
+actinometer/MS
+actinomorphic
+Actinomycetales
+actinomycete/MS
+actinopterygian/SM
+action/DG
+action/IMS4A
+actionability/M Noun: usually uncountable
+actionable/Z
+actioner/SM
+activate/SInDCG
+activation/IMCA
+activator/SM
+active/3SnP
+actively/IA
+activewear/M Noun: uncountable
+ActiveX/M
+activin/SM
+activism/MS
+activistic
+activity/SMI
+Acton/M
+Actonel/M
+actor/S4MA
+actress/MS
+actressy
+actual/YS
+actualise/SGDn
+actuality/SM
+actualize/SGDn
+actuary/SMoO
+actuate/SGnD
+actuator/SM
+acuity/MS
+aculeate
+acultural
+acumen/SM
+acumentin
+acuminate/SGDN
+acuminose
+acuminous
+acuminulate
+acupoint/SM
+acupressure/SM
+acupunctuate/SGDN
+acupuncture/MS3O
+acushla/MS
+Acushnet/M
+acute/PTY
+ACW
+Acworth/M
+acyclic/Y
+acyclovir/M Noun: usually uncountable
+acyl/SM
+acylate/SGDN
+ad/AC
+ad/M
+Ada/M
+adage/SM
+adagio/SM
+Adair/M
+Adam/M
+adamant/SMY
+adamantine
+adamantium/M
+Adami/M
+Adamite/MS
+Adams/M
+Adamsdown/M
+adamsite/M Noun: uncountable
+Adamski/M
+Adamson/M
+Adamstown/M
+Adana/M
+adapt/RvuBinSVG
+adaptability/MS
+adaptably
+adaptationalism/M
+adaptationism/M Noun: uncountable
+adaptationist/SM
+adaptative/P
+adapted/P
+adaption/SMO
+adaptive/P
+adaptivity/M Noun: usually uncountable
+adaptogen/SMW
+adaptor/SM
+adaxial
+Adbaston/M
+Adbolton/M
+adbot/SM
+ADC/SM
+add-on/SM
+add/RDGS7
+addax/MS
+Addenbrooke/M
+addend/SM
+addenda/M
+addendum/M
+Adderbury/M
+Adderley/M
+addict/MDSGVu
+addiction/MS
+addictively
+Addiebrownhill/M
+Addingham/M
+Addington/M
+Addis/M
+Addison/M
+addition/oMSO
+additive/YSM
+additivity/SM
+addle/DSG
+addlement/M
+Addlethorpe/M
+addorsed
+address/RMBGS
+addressed/Aa
+addressee/MS
+addresses/aA
+Addressograph/MS
+adduce/bGVNSDr
+adduct/GDS
+adduction/SM
+adductor/MS
+Ade/M
+Adel/M
+Adelaide/M
+Adelanto/M
+Adele/M
+Adeline/M
+Adelson/M
+Aden/M
+Adenauer/M
+adenine/M
+adenocarcinoma/SM
+adenocarcinomata/M
+adenohypophyses
+adenohypophysis/M
+adenoid/OMSo
+adenoma/SM
+adenomata/M
+adenomatous
+adenopathy/SM
+adenosine/SM
+adenosis/M
+adenoviral
+adenovirus/SM
+adept/MTPYS
+adequacy/ISM
+adequate/IYP
+adequateness/SI
+Adforton/M
+Adhanom/M
+Adhara/M
+ADHD/M Initialism of attention deficit hyperactivity disorder
+adhere/DGRS
+adherence/MS
+adherent/YSM
+adhesion/MS
+adhesive/PMSY
+adhibit/S
+adhibited
+adhibiting/S
+adhibition/MS
+Adi/M
+adiabatic/Y
+adiabaticity/SM
+adiantum/MS
+adiaphanous
+adiaphorism/M Noun: uncountable
+Adidas/M
+Adie/M
+adieu/S
+AdiIRC/M
+adios
+adiós
+adipic
+adipoceration/M Noun: uncountable
+adipocere/SM
+adipocyte/SM
+adipocytokine/SM
+adipokine/SM
+adiponectin/SM
+adipose/M Noun: uncountable
+adiposity/SM
+Adirondack/SM
+Adisham/M
+adit/MS
+Adivasi/SM
+adj.
+adjacency/MS
+adjacent/SMY
+adjectival/SMY
+adjective/SM
+adjoin/SDG
+adjoint/SM
+adjourn/SLDGO
+adjudge/DSG
+adjudgement/MS
+adjudicate/DGnSVy
+adjudicator/MS
+adjugate/SGDM
+adjunct/SYMV
+adjunction/M
+adjunctively
+adjure/GSDn
+adjust/RLDlGS7V
+adjusted/UA
+adjustor/SM
+adjutage/MS
+adjutancy/MS
+adjutant/MS
+adjuvant/SM
+Adkins/M
+Adkinson/M
+adland/M Noun: uncountable
+Adleman/M
+Adler/M
+Adlerian/SM
+Adlestrop/M
+Adlingfleet/M
+Adlington/M
+Adm.
+adman/M
+Admarsh/M
+admass/M Noun: uncountable
+admaxillary
+admeasure/SGDJ
+admeasurement/MS
+admen/M
+admin/SM
+Admington/M
+adminicle/SM
+adminicular/Z
+administer/dSn
+administrable
+administrate/DGSvV
+administrator/MS
+administratorship/MS
+administratrix/M
+admirable/P
+Admiral/MS
+admiral/SM
+admiralship/MS
+Admiralty/MS
+admiralty/SM
+admire/RGSDkln
+admissibility/MSI
+admissible/Y
+admission/AM
+admissive
+admit/SANDGX
+admittable
+admittance/SM
+admitted/Y
+admix/SGD
+admixture/MS
+admonish/SkGLDR
+admonition/SM
+admonitor/MS
+admonitory
+Adnams/M
+adnate
+adnominal
+ado/M Noun: uncountable
+adobe/NvVSMX
+adolescence/SM
+adolescent/MYS
+Adolf/M
+Adolfo/M
+Adolph/M
+Adonai/M
+Adonis/M
+adopt/SDR7G
+adopted/AU
+adoptee/SM
+adoption/MO
+Adoptionism
+Adoptionist/SM
+adorable/P
+adoral/Y
+adorant/M
+adorative
+adoratory/SM
+adorb/S
+adore/lRSnGkD
+adorn/DLSG
+Adorno/M
+adown
+adposition/SM
+adpressed
+Adrastea/M
+adrenal/YSM
+adrenalin/M Noun: uncountable
+adrenaline/MS
+adrenergic/SM
+adrenic
+adrenocorticotrophic
+adrenocorticotrophin/M
+adrenocorticotropic
+adrenocorticotropin/M
+Adrian/M
+Adriana/M
+Adriano/M
+Adrianople/M
+Adriatic/M
+Adrien/M
+Adrienne/M
+adrift
+adroit/TYP
+ads/A
+adscititious
+ADSL/SM Initialism of Asymmetric Digital Subscriber Line
+adsorb/XvDVGS
+adsorbate/SM
+adsorbent/SM
+adsorption/SM
+Adstock/M
+Adstone/M
+adsum
+ADte
+adulate/SDnGy
+adulator/SM
+Adullamite/MS
+adult/YPSM
+adulterant/MS
+adulterate/GDnS
+adulterator/MS
+adulterer/SM
+adulteress/MS
+adulterine
+adulterous/Y
+adultery/SM
+adulthood/SM
+adumbrate/VSGnvD
+Adur/M
+adust
+adv.
+Advair/M
+advance/LGSDR
+advantage/MEDGS
+advantageous/EY
+advantageousness/E
+advantageousness/M
+advect/SGD
+advection/SM
+advective/Y
+advent/SvM3
+Adventism
+Adventist/MS
+adventitia/MO Noun: uncountable
+adventitious/PY
+adventure/RMSGD3
+adventuresome/Y
+adventuress/SM
+adventurism/SM
+adventurous/U
+adventurous/Y
+adventurousness/SM
+adverb/SoM
+adverbial/MS
+adversarial/Y
+adversary/MS
+adversation
+adversative/Y
+adverse/yTDYGP
+adversity/SM
+advert/GDQsS
+advertence/M
+advertency/M
+advertent
+advertise/DLJ
+advertising/M
+advice/MS
+Advie/M
+advisability/I
+advisability/MS
+advisable/I
+advisableness/M
+advise/BLRSGDlh
+advisedly/I
+advisedness/M
+advisee/SM
+advisor/MS
+advisory/SM
+advocaat/SM
+advocacy/MS
+advocate/GSVDN
+advocateship
+advocator/SMZ
+adware/M Noun: uncountable
+Adwell/M
+Adwick-upon-Dearne/M
+Adwick/M
+AdWords
+adyta/M
+adytum/M
+adze/DMSG
+Aeacus/M
+aecidia/M
+aecidium/M
+aeciospore/SM
+aecium
+aedeagus
+aedile/MS
+aedileship/MS
+Aegaeon/M
+Aegean/M
+Aegina/M
+aegirine/M
+aegirite/SM
+aegis/SM
+Aegon/M
+aegrotat/SM
+Aelia/M
+Aeneas/M
+Aeneid/M
+Aeolian
+aeolian/SM
+Aeolic/M
+Aeolis/M
+aeolotropy/MS
+Aeolus/M
+aeon/SMWO
+aeonian
+aepyornis/M
+aerate/SnDG
+aerator/SM
+aerial/M3S
+aeriality/M
+aerie/oSM
+aeriform
+aero-engine/MS
+aero/SM
+aeroacoustic
+aerobatic/S
+aerobe/MS
+aerobic/SY3
+aerobiologist
+aerobiology/M Noun: uncountable
+aerobiont/MS
+aerobioses
+aerobiosis/M
+aerobiotic/Y
+aerobot/SM
+aerobrake/SGD
+aerobus/SM
+aerocar
+aerocurve/SM
+aerocycle/SM
+aerodrome/SM
+aerodromic/S
+aerodynamic/SY
+aerodynamicist/MS
+aeroelastic/S
+aeroelastician
+aeroelasticity/M Noun: usually uncountable
+aeroembolism/SM
+aerofoil/MS
+aerogel/SM
+aerogramme/SM
+aerolite/SM
+aerologist/MS
+aerology/Mw
+aeromagnetic
+aeromedical
+aerometeorograph/SM
+aerometry/MW
+aeromodeller/SM
+aeromodelling
+aeromotive
+Aeron/M
+aeronautic/SY
+aeronautica/O
+aeronef/SM
+aeronomer/SM
+aeronomic/O
+aeronomy/M3
+aerophagy/M Noun: uncountable
+aerophone/SM
+aeroplane/MS
+aeroponic/SY
+aeroshell/SM
+Aerosmith/M
+aerosol/SM
+aerosolise/SGD
+aerosolize/SGD
+aerospace/M Noun: usually uncountable
+aerosphere/SM
+aerostat/SM
+aerostatics
+aerotrain/SM
+aerotropism/M Noun: uncountable
+aerovane/SM
+Aertex/M
+aeruginous
+AES/M
+Aeschylus/M
+Aesculapian
+Aesculapius/M
+Aesop/M
+aesthete/1WSM
+aesthetic/OS
+aesthetician/SM
+aestheticism/SM
+aestheticist/MS
+aestival
+aestivate/SNGDJ
+aetatis
+aether/MS
+aetiology/SW1wM
+Aetna/M
+AFAIK
+afar
+AFC
+afebrile
+affability/SM
+affable/TY
+affair/SM
+affaire/MS
+affect/rp=hVvnkDiSG
+affected/EPY
+affection/EMS
+affection/O
+affectionate/U
+affectionate/Y
+affectionateness/M
+affective/M
+affectivity/SM
+Affenpinscher/MS
+afferent/YSM
+Affero/M
+affiance/SDG
+affiche/MS
+affidavit/SM
+affiliate/nESGD
+affinage/M Noun: uncountable
+affinal/Y
+affine/DSM
+affineur/SM
+affinis Latin
+affinitative
+affinition/M Noun: uncountable
+affinitive/M
+affinity/MS
+affirm/SvnVGDk
+affirmable
+affirmation/MA
+affirmatory
+affirmer/MS
+affix/DSGn
+affixture/MS
+afflatus/SM
+Affleck/M
+afflict/VvGDS
+affliction/SM
+affluence/SM
+affluent/Y
+afflux/MS
+afforce/DGS
+afforcement/MS
+afford/SGBD
+affordably
+affordance/SM
+afforest/GnDS
+Affpuddle/M
+affranchise/DGS
+affray/MSDG
+affreightment/MS
+affricate/VSMn
+affricative/SM
+affright/SMGDJ
+affront/SMDGk
+affrontive
+affusion/SM
+afghan/MS
+Afghan/SM
+Afghani/SM
+afghani/SM
+Afghanistan/M
+aficionado/MS
+afield
+Afinitor/M
+afire
+AFK
+aflagellar
+aflagellate/SM
+aflame
+aflank
+aflap
+aflatoxin/SM
+afloat
+Afluria/M
+aflutter
+Afonso/M
+afoot
+afore
+aforementioned
+aforesaid
+aforethought
+afoul
+afraid/U
+afreet/MS
+afresh
+Afric/M
+Africa/M
+African-American/SM
+African/SMP
+Africana
+Africanews/M
+Africanise/SDGN
+Africanism/SM
+Africanist/SM
+Africanity/M Noun: uncountable
+Africanize/SDGN
+Africanoid/SM
+Africanthropus
+Africo-American
+Afrikaans
+Afrikaner/SM
+Afrikanerdom/M Noun: uncountable
+afrit/MS
+Afro-American/S
+Afro-Asian/S
+Afro-Asiatic
+Afro-Indian/S
+Afro/MS
+afro/SM
+Afrocentric
+Afrocentrism/M Noun: uncountable
+Afrocentrist/SM
+Afrofuturism/M Noun: uncountable
+Afrofuturist/SM
+afrormosia/SM
+Afrotropical
+afrown
+aft
+after-effect/SM
+after-hours
+after-image/MS
+after-party
+after-school
+after/S
+afterbirth/SM
+afterburner/MS
+aftercare/MS
+aftercast/SM
+aftercool/SGDr
+afterdamp/M Noun: usually uncountable
+afterdeath
+afterdeck/SM
+afterdischarge/SM
+afterfeed
+afterglow/SM
+aftergrass/M Noun: usually uncountable
+aftergrowth
+afterhand
+afterheat
+afterknowledge
+afterlife/M
+afterlight
+afterling/SM
+afterlives
+afterload/SGD
+aftermath/MS
+aftermost
+afterness
+afternoon/SM
+afterpains
+aftersales
+aftershave/SM
+aftershock/MS
+aftershow/SM
+aftersight
+aftersound/SM
+aftersun
+aftertaste/SM
+afterthought/MS
+aftertime/SM
+aftertouch/SM
+afterview/SM
+afterward/S
+afterword/SM
+afterworld/SM
+Ag
+Aga/M
+aga/MS
+Agaa/M
+again
+against
+agama/MS
+Agamemnon/M
+agamic
+agammaglobulinaemia/SM
+agammaglobulinemia/SM
+agamogenesis/M
+agamogenetic
+agamospermous
+agamospermy/M Noun: uncountable
+agamous
+agapae/M
+agapanthus/SM
+agape/MS
+Agapemone/M
+agar-agar/SM
+Ågar/M
+agar/MS
+agaric/M
+Agaricaceae
+Agaricales Taxonomic order
+Agaricomycetes Taxonomic class
+Agaricomycetidae Taxonomic subclass
+Agaricomycotina Taxonomic subphylum
+agarose/SM
+Agartala/M
+agate/SM
+Agatha/M
+Agathe/M
+Agave
+agave/SM
+Agawam/M
+agaze
+agba/M
+Agden/M
+age-long
+age-old
+age/MihpSD
+aged/P
+ageing
+ageism/SM
+ageist/MS
+ageless/YP
+agency/SM
+agenda/MS
+agender
+ageneses
+agenesia/M
+agenesis/M
+agent/MSGD
+agential
+agentive/SM
+agentspace/SM
+Ager/SM
+ageratum/M
+ageworthy
+Agey/M
+agflation/M Noun: uncountable
+Aggarwal/M
+Aggie/M
+aggiornamento/M
+Agglethorpe/M
+agglomerate/nVDSG
+agglutinability
+agglutinable
+agglutinant/SM
+agglutinate/nVGDS
+agglutinator/SM
+agglutinin/SM
+agglutinogen/SM
+aggrandise/DSLGR
+aggrandize/GLDSR
+aggravate/GkDSn
+aggregant/SM
+aggregate/BvnVDYSG
+aggregator/SMZ
+aggregometer/SM
+Aggrenox/M
+aggress/SGD
+aggressee
+aggression/MS
+aggressive/YP
+aggressivity/M Noun: usually uncountable
+aggressor/MS
+aggrieve/DhSGi
+aggrievement/SM
+aggro/M Noun: uncountable
+aggroupment/SM
+aggry
+Aghacommon/M
+Aghadowey/M
+Aghadrumsee/M
+Aghagallon/M
+Aghalee/M
+Aghamore/M
+aghast/P
+agile/TY
+agility/MS
+agio/MS
+agist/DGS
+agistment/MS
+agitate/DVGSnh
+agitato
+agitator/MS
+agitprop/SM
+agleam
+aglet/MS
+agley
+aglitter
+aglow
+aglycon/MS
+aglycone/MS
+agmatine/M Noun: uncountable
+agnail/S
+agnate/1WMSw
+Agnatha
+agnation/SM
+Agnes/M
+Agnew/M
+Agni/M
+agnolotti/M Noun: uncountable
+agnomen/MS
+agnosia/SM
+agnostic/MS
+agnosticism/SM
+Agnus/M
+ago
+agog
+agonise/RDGSkh
+agonism/SM
+agonist/SMW1
+agonize/RDGShk
+agony/MSW
+agora/MS
+agorae/M
+agoraphobe/SM
+agoraphobia/SM
+agoraphobic/SM
+Agostinho/M
+Agostini/M
+Agostino/M
+Agoura/M
+agouti/SM
+AGP/M
+AGPL/M
+Agra/M
+agrammatic/O
+agrammatism/SM
+agranulocyte/SM
+agranulocytosis
+agrapha/M
+agrarian/SM
+agrarianism/MS
+agree/dESLlG
+agreeable/PE
+agreer/SM
+agrestic
+agri-industry/O
+agri-monetary
+agribusiness/SM
+agribusinessman/M
+agribusinessmen/M
+agrichemical/SM
+agricultor/SM
+agricultural/SM3
+agriculture/M3oS
+agrimony/SM
+Agrippa/M
+Agrippina/M
+agriproduct/SM
+agriscience/SM3
+agritech/M Noun: uncountable
+agritourism/M Noun: uncountable
+agro-industry/SO^
+Agrobacterium Taxonomic genus
+agrobacterium/M
+agrobiology/w3M
+agrocenosis/M
+agrochemical/SMY
+agrochemistry/M Noun: uncountable
+agroclimatic
+agrodespotic
+agroecology/SM3w
+agroecosystem/SM
+agroforester/SM
+agroforestry/M Noun: usually uncountable
+agronomic/SOY
+agronomy/3SMW
+agrostology/M Noun: uncountable
+agrotech/M Noun: uncountable
+agrotechnology/SMw
+agroterrorism/M Noun: uncountable
+agroterrorist/SM
+aground
+agroupment/SM
+Aguadilla/M
+aguardiente/SM
+ague/DMS
+Aguila/M
+Aguilera/M
+aguish
+Agulhas
+ah
+aha/S
+Ahab/M
+Ahaura/M
+Ahaz/M
+Ahaziah/M
+AHCI/M
+ahead
+ahem/SM
+Ahern/M
+ahimsa/M Noun: uncountable
+Ahipara/M
+ahistoric
+Ahititi/M
+Ahlberg/M
+Ahmadabad/M
+Ahmari/M
+Ahmed/M
+Ahmedabad/M
+Ahnen/M
+Ahoghill/M
+aholehole/SM
+ahoy/SM
+Ahrens/M
+Ahriman/M
+Ahuroa/M
+AI/SM
+AID
+aid/6RGDS
+Aida/M
+Aidan/M
+Aidanfield/M
+aide-de-camp
+aide-memoire
+aide-mémoire
+aide/MSD
+Aiden/M
+aides-de-camp
+aides-memoire/S
+aidos
+AIDS
+AIDS-related
+Aighton/M
+aigrette/SM
+aiguille/MS
+aiguillette/MS
+Aiken/M
+Aikhenvald/M
+aikido/SM
+Aikman/M
+Aikton/M
+ail/LSDG
+Ailby/M
+Aileen/M
+aileron/MS
+Ailsa/M
+Ailsworth/M
+ailuranthrope/1MW
+ailuranthropy/M
+ailurophile/SM
+ailurophobe/SM
+ailurophobia/MW
+aim/RGDpSy
+aimless/YP
+ain't
+Ainderby/M
+ainhum/M Noun: uncountable
+Ainsley/M
+Ainstable/M
+Ainsworth/M
+Aintree/M
+Ainu/M
+aioli/SM
+aionian
+air-conditioned
+air-conditioner/SM
+air-conditioning
+air-cooled
+air-to-air
+air-to-ground
+Air/M
+air/mzGTp2ZRMDJS
+AirAsia/M
+airbag/SM
+airball/SM
+airband/SM
+airbase/SM
+airbed/SM
+airboat/SM
+airborne
+airbrick/SM
+airbrush/MGDS
+airburst/S
+airbus/MS
+Airbus/SM
+aircraft-carrier/SM
+aircraft/M
+aircraftman/M
+aircraftmen/M
+aircraftwoman/M
+aircraftwomen/M
+aircrew/MS
+Aird/M
+Airdrie/M
+airdrop/SDG
+Airedale/MS
+Aires/M
+airfare/SM
+airfield/SM
+airflow/MS
+airframe/MS
+airfreight/DSG
+airglow/M Noun: usually uncountable
+airgraph/SM
+airgun/SM
+airhead/SMD
+airing/M
+airlessness/S
+Airlie/M
+airlift/GDMS
+airline/RMS
+airling
+airlock/MS
+airmail/DMG
+airmanship
+airmass/SM
+airmobile
+Airmyn/M
+airplay/S
+airport/MS
+airscrew/SM
+airship/MS
+airsick/P
+airside
+airspace/MS
+airspeed/SM
+airstream/SM
+airstrike/SM
+airstrip/SM
+Airth/M
+airtight/P
+airtime
+Airton/M
+airwall/SM
+airwaves
+airway/MS
+airwoman/M
+airwomen/M
+airworthy/TP
+Airy/M
+airy/TP
+Aisholt/M
+Aiskew/M
+Aislaby/M
+aisle/DGSMp
+Aisthorpe/M
+ait
+aitch/MSp
+aitchbone/SM
+Aithsting/M
+Aitken/M
+Aitkin/M
+Aizawl/M
+Ajaccio/M
+ajar
+Ajax/M
+Ajman/M
+ajutage/S
+AK-47/SM
+AK/SM
+aka
+Akaike/M
+Akaroa/M
+akasha/W
+akathisia
+Akbar/M
+Akebar/M
+akee/S
+Akehurst/M
+Akeley/M
+Akenham/M
+Akerley/M
+Akerlof/M
+Akhenaton/M
+Akhmatova/M
+Akihito/M
+akimbo
+akin
+akinesia
+akinetic
+Akira/M
+Akita/SM
+Akitio/M
+Akiva/M
+Akkad/M
+Akkadian/SM
+Akkineni/M
+Akmal/M
+Akron/M
+Akrotiri/M
+Akshaya/M
+akvavit/M
+Al-Anon/M
+al-Fatah/M
+al-Haili
+Al-Haili/M
+al-Jazeera
+Al-Jazeera/M
+al-Qa'ida/M
+Al-Qa'ida/M
+Al-Qaeda/M
+al-Qaeda/M
+al-Sharif
+Al-Sharif/M
+al-Shimali/M
+al-Zawahiri
+Al-Zawahiri/M
+al/AFC
+Al/M
+Alabama/M
+Alabaman/SM
+Alabamian/M
+Alabaster/M
+alabaster/SM
+alabastrine
+Alachua/M
+alack
+alacrity/SM
+Aladdin/M
+Alain/M
+Alamance/M
+Alameda/M
+Alamein/M
+Alamitos/M
+Alamo/SM
+Alamogordo/M
+Alamosa/M
+Alan/M
+alanine/SM
+Alaric/M
+alarm/SkGD3Mh
+alarmism
+alarum/MS
+alas/S
+Alasdair/M
+Alaska/M
+Alaskan/S
+Alastair/M
+Alastor/M
+alate
+Álava/M
+Alaw/M
+Alazraki/M
+alb/S
+alba/M
+albacore/SM
+Alban/MS
+Albania/M
+Albanian/MS
+Albany/M
+albatross/MS
+albedo/MS
+Albee/M
+albeit
+Albemarle/M
+Alberbury/M
+Albergati/M
+Alberni-Clayoquot/M
+Alberni/M
+Albert/M
+albert/MS
+Alberta/M
+Albertina/M
+Alberto/M
+Alberts/M
+Albertville/M
+albescent
+Albian/SM
+Albigenses
+Albigensian
+albinism/SM
+albino/SM
+albinotic
+Albinus/M
+Albion/M
+Albiorix/M
+albite/W
+Albourne/M
+Albrecht/M
+Albright/M
+Albrighton/M
+albuginean
+Albukamal/M
+album/MS
+albumen/SM
+albumin/MS
+albuminoid/S
+albuminous
+albuminuria
+Albuquerque/M
+Alburgh/M
+alburnum/MS
+Albury-Wodonga/M
+Albury/M
+albuterol/M Noun: uncountable
+Alby/M
+alcahest/S
+alcaic/S
+alcalde/S
+Alcatraz/M
+alcea
+Alcester/M
+Alcestis/M
+alchemise/SDG
+alchemize/SDG
+alchemy/W3SMw
+Alcibiades/M
+Alcinda/M
+Alciston/M
+Alcoa/M
+Alcock/M
+alcohol/MW1S
+alcoholic/SM
+Alcoholics
+alcoholism/MS
+alcoholometer/MS
+alcoholometric/O
+alcoholometry/M Noun: uncountable
+Alcona/M
+Alconbury/M
+Alcoran/M
+Alcorn/M
+alcove/DSM
+Alcumlow/M
+Alcyone/M
+Aldate/M
+Aldborough/M
+Aldbourne/M
+Aldbrough/M
+Aldbury/M
+Aldcliffe-with-Stodday/M
+Aldebaran/M
+Aldeburgh/M
+Aldeby/M
+aldehyde/SMW
+Alden/M
+Aldenham/M
+alder/mM5S
+Alderamin/M
+Alderbury/M
+Aldercar/M
+Alderford/M
+Aldergrove/M
+Alderholt/M
+Alderley/M
+Aldermanbury/M
+aldermancy/SM
+aldermanic/O
+aldermanry/MS
+aldermanship/SM
+Aldermary/M
+Aldermaston/M
+Alderminster/M
+Alderney/M
+Aldersey/M
+Aldersgate/M
+Aldershot/M
+Alderson/M
+Alderton/M
+Alderwasley/M
+Aldfield/M
+Aldford/M
+Aldgate/M
+Aldham/M
+Aldine/M
+Aldingbourne/M
+Aldingham/M
+Aldington/M
+Aldis
+Aldiss/M
+aldohexose/SM
+aldolase/SM
+aldopentose/SM
+aldose/SM
+aldosterone/SM
+aldosteronism/SM
+Aldrich/M
+Aldridge/M
+aldrin/M Noun: uncountable
+Aldringham/M
+Aldrington/M
+Aldsworth/M
+Aldus/M
+Aldwark/M
+Aldwick/M
+Aldwincle/M
+Aldworth/M
+Aldwyn/MS
+Ale/M
+ale/SM
+aleatory/W
+Alec/M
+Aleck/M
+alecost/MS
+Alectrosaurus Taxonomic genus
+alee
+alegar/M
+Alegre/M
+alehouse/SM
+Aleisa/M
+Aleister/M
+Alejandra/M
+Alejandro/M
+Aleksei/M
+alembic/MS
+Alen/M
+alendronate/SM
+Alentejo/M
+aleph/SM
+Aleppo/M
+alert/MPhSDRTYG
+Alessandro/M
+aleurone/SM
+Aleut/M
+Aleutian/SM
+alewife/M
+alewives
+Alex/M
+Alexa/M
+Alexander/M
+Alexandra/M
+Alexandre/M
+Alexandria/M
+Alexandrian/SM
+Alexandrina/M
+alexandrine/MS
+Alexandrinus/M
+alexandrite/M
+Alexandro/M
+Alexia/M
+alexin/MS
+Alexios/M
+alexipharmic/MS
+Alexis/M
+Alexton/M
+Alf/M
+Alfa/M
+alfalfa/SM
+alféreces
+alfereces
+alferes/M
+alferez/M
+alférez/M
+Alfie/M
+Alfold/M
+Alfons/M
+Alfonso/M
+Alford/M
+Alfragide/M
+Alfred/M
+Alfredo/M
+alfresco
+Alfreton/M
+Alfrick/M
+Alfriston/M
+Alfvén/M
+alga/MO
+algae
+algaecide
+Algarkirk/M
+Algarve/M
+algebra/3SM
+algebraic/OY
+algebroid/SM
+Algeo/M
+Alger/M
+Algeria/M
+Algerian/SM
+algicide/SM
+algid
+algidity/M Noun: usually uncountable
+Algiers/M
+alginate/SM
+alginic
+algoid
+ALGOL
+Algol/M
+algolagnia/W
+algology/3w
+Algoma/M
+algometer/SM
+Algonkian/SM
+Algonquian/SM
+Algonquin/MS
+algophobia/M Noun: uncountable
+algorism/W
+algorist/SMW
+algorithm/SWM1
+algorithmics
+algose
+algous
+algraphy/M Noun: uncountable
+alguazil/SM
+Alhambra/M
+Alhambresque
+Alhazen/M
+Ali/M
+alias/GSD
+alibi/GSMD
+Alicante/M
+Alice/M
+Alicetown/M
+Alicia/M
+alicyclic/SM
+alidade/MS
+alien/GDMn3S7
+alienability/SM
+alienable/IU
+alienage
+alienate/SGD
+alienator/MS
+alienee/SM
+aliener
+alienism/M Noun: usually uncountable
+Aliff/M
+aliform
+Aligarh/M
+aligation
+alight/SGD
+align/SaDGLA
+aligner/MS
+alike/P
+aliment/SMGDO
+alimentary
+alimentation/SM
+alimony/SM
+Alimta/M
+alinement's
+Alington/M
+aliphatic
+aliquot/SM
+Alisa/M
+Aliso/M
+Alison/M
+alisphenoid/SM
+Alistair/M
+Alito/M
+alive/P
+alizarin/SM
+alkahest/MS
+alkali/MS
+alkalify/DGS
+alkalimetallocene/SM
+alkalimeter/MS
+alkalimetry/M Noun: usually uncountable
+alkaline
+alkalinity/MS
+alkalis/QdS
+alkaloid/SM
+alkalosis
+alkane/SM
+alkanet
+alkanoic
+alkanol/SM
+Alkborough/M
+alkene/SM
+Alkerton/M
+Alkham/M
+Alkington/M
+Alkire/M
+Alkmonton/M
+Alkmund/M
+alkoxid
+alkoxide/SM
+alkoxy
+alkoxyl
+alkyd/SM
+alkyl/M
+alkylamine/SM
+alkylammonium
+alkylating
+Alkyonides
+All
+all-clear
+all-day
+all-embracing
+all-female
+all-important
+all-in
+all-in-one
+all-inclusive/P
+all-independent
+all-instrumental
+all-knowing
+all-male
+all-night
+all-out
+all-pervading
+all-powerful
+all-purpose
+all-round
+all-rounder
+all-star
+all-time
+all/MSc
+Allagash/M
+Allah/M
+Allahabad/M
+Allain/M
+Allamakee/M
+allamanda/SM
+Allan/M
+allantoic
+allantoid
+allantoides
+allantois
+Allanton/M
+Allavena/M
+allay/GSD
+Allbrook/M
+Allbutt/M
+Allcock/M
+Allee/M
+allée/S
+Allegan/M
+Allegany/M
+allege/ShnDG
+Alleghany/M
+Allegheny/SM
+allegiance/SM
+allegiant
+allegoricalness/M Noun: uncountable
+allegorise/SGDN
+allegorize/SGDN
+allegory/1MWS3w
+allegretto/MS
+allegri
+allegro/MS
+allele/SMW
+allelomorph/SMW
+allelomorphism/SM
+alleluia/S
+allemande/SM
+Allen/M
+Allendale/M
+Allende/M
+Allensmore/M
+Allenton/M
+Allentown/M
+Aller/M
+Allerby/M
+Allerdale/M
+allergen/MSW
+allergy/3W1SM
+Allerston/M
+Allerthorpe/M
+Allerton/M
+Allesley/M
+Allestree/M
+alleviate/SVDnG
+alleviator/SM
+alleviatory
+Allexton/M
+alley-oop
+alley/MS
+Alleyne/M
+alleyway/MS
+Allhallows/M
+alliaceous
+alliance/aMS
+Alliance/M
+Allianz/M
+allier
+alligate/SGDN
+alligator/MS
+Allingham/M
+Allington/M
+Allis/M
+Allison/M
+alliterate/nVSvDG
+Allithwaite/M
+Allium
+allium/S
+Alloa/M
+allocable
+allocatable/C
+allocate/CDnAGSK
+allocated/U
+allocation's/CKA
+allocation/c
+allocative
+allocator's/C
+allocator/KSC
+allochore/1SMW
+allochorous
+allochory/M
+allocute/SGD
+allocution/SM
+allocutus
+allocyclic
+allodial
+allodium/M
+allodynia/M Noun: uncountable
+allogamous
+allogamy
+allogeneic
+allogenic
+allograft/S
+allometry/W
+allomorph/SMW
+Allonby/M
+allopath/WZ
+allopathist/S
+allopatry/W
+allophone/1MSW
+allophyle
+alloplasty/W
+allopolyploid/Z
+allopurinol/M
+allosaurus/S
+allose/M Noun: uncountable
+allosteric/Y
+Allostock/M
+allot/SLGD
+allotriophagy
+allotrope/MWSw
+allotropism/MS
+allotropy/M
+allottee/S
+allotter/M
+Allouez/M
+allow/7DSGhl
+allowable/P
+allowance/MS
+Alloway/M
+alloxan
+alloy/SGMD
+allozyme
+Allred/M
+allseed
+allspice/M
+Allstate/M
+Allt-yr-yn/M
+Alltmawr/M
+allude/vDGVuXSN
+allure/LDkGS
+allusion/M
+allusive/P
+alluvia/O
+alluvions
+alluvium/SM
+ally/SGD
+Allyn/M
+Alma/M
+Almada/M
+almagest
+almanac/MS
+almanack/MS
+almandine
+Almar/M
+Almásy/M
+Almeida/M
+Almeley/M
+Almer/M
+Almere/M
+almighty/PM
+almirah/MS
+Almodington/M
+almond/SM
+Almondbank/M
+Almondbury/M
+Almondell/M
+Almondsbury/M
+Almondvale/M
+almoner/MS
+almonry/MS
+almost
+alms/m
+almsfolk/M
+almshouse/MS
+almucantar/MS
+Alne/M
+Alness/M
+Alnham/M
+alnico
+Alnwick/M
+aloe/SM
+Alofi/M
+aloft
+alogical/Y
+alogicalness/M Noun: uncountable
+Aloha
+aloha/MS
+alone/P
+along
+alongshore
+alongside
+aloof/PY
+alopecia/SM
+alopecian/SM
+alopecist/SM
+alopecoid
+alopecy/M Noun: uncountable
+aloud
+Aloysius/M
+alp/SM
+alpaca/SM
+alpargata/S
+Alpena/M
+alpenhorn/S
+alpenstock/S
+Alpert/M
+Alpha
+alpha/SM
+alphabet/sQ-SW89q1Mw
+alphabetarian/S
+Alphacoronavirus
+alphacoronavirus/SM
+alphafetoprotein/M Noun: uncountable
+Alphagan/M
+Alphage/M
+alphameric
+Alphamstone/M
+alphanumeric/OYS
+Alpharetta/M
+alphasyllabary/SM
+Alphatetraviridae Taxonomic family
+alphavoltaic/S
+Alphege/M
+Alpheton/M
+Alphin/M
+Alphington/M
+Alphonse/M
+Alpine
+alpine/SM
+Alpington/M
+Alpinist/MS
+Alpraham/M
+alprazolam/M Noun: uncountable
+Alps/M
+already
+Alresford/M
+Alrewas/M
+alright
+Alsace/M
+Alsager/M
+Alsatia/M
+Alsatian/SM
+Alsip/M
+also
+also-ran/S
+Alsop/M
+Alstom/M
+Alston/M
+Alstone/M
+Alstonefield/M
+Alstonfield/M
+alstroemeria/SM
+Alt
+alt-rock
+alt-weekly/SM
+Altaba/M
+Altai/M
+Altaic/M
+Altair/M
+Altamira/M
+Altamonte/M
+Altamuskin/M
+altar/SM
+Altarnon/M
+Altarnun/M
+altarpiece/SM
+altazimuth/SM
+Altcar/M
+altcoin/SM
+alter/dS7
+alterability/MS
+alterable/UI
+alterant/M
+alteration/SM
+alterative
+altercate/n
+alterer/SM
+alternant/SM
+alternate/VvuSDGYn
+alternative/PMS
+alternator/SM
+Altham/M
+Althea/M
+althorn/S
+Althorne/M
+Althorp/M
+Althorpe/M
+although
+altimeter/MS
+altimetry/SMW
+Altishane/M
+altitude/SMO
+altitudinarian/SM
+altitudinous
+altivolant
+Altman/M
+Altmann/M
+Altmore/M
+Altnaharra/M
+Alto/M
+alto/SM
+altocumuli/M
+altocumulus/M
+altogether
+Alton/M
+Altoona/M
+Altos/M
+altostratus
+altricial
+Altrincham/M
+altrose/SM
+altruism/SM
+altruist/1MSW
+Altus/M
+ALU
+alum/SM
+alumina/SM
+aluminate/DS
+alumine/W
+aluming
+aluminian
+aluminide/SM
+aluminiferous
+aluminisation/MS
+aluminise/SGDJ
+aluminium/SM
+aluminization/MS
+aluminize/SGDJ
+aluminocene
+aluminosilicate/SM
+alumna/M
+alumnae/M
+alumni/M
+alumnus/MS
+Alun/M
+alundum/M
+Aluph/M
+Alva/M
+Alvah/M
+Alvanley/M
+Álvarez/M
+Alvarez/M
+Álvaro/M
+Alvaston/M
+Alvechurch/M
+Alvediston/M
+Alveley/M
+alveolar/YSM
+alveolate/SM
+alveole/MS
+alveoli/M
+alveolus/M
+Alverdiscott/M
+Alvernaviridae Taxonomic family
+Alvernia/M
+Alverstoke/M
+Alverthorpe/M
+Alverton/M
+Alves/M
+Alvescot/M
+Alveston/M
+Alvie/M
+Alvin/M
+Alvingham/M
+Alvington/M
+Alwalton/M
+Alway/M
+always
+Alwington/M
+Alwinton/M
+Alwoodley/M
+Alxasaurus Taxonomic genus
+Alypius/M
+Alyssa/M
+Alyssum
+alyssum/SM
+Alyth/M
+Alzheimer/M
+am/A
+AMA
+amadavat/MS
+Amadeus/M
+Amador/M
+Amadora/M
+Amalfi/M
+amalgam/nVSM
+amalgamate/SDG
+Amalie/M
+Amalthea/M
+Amanda/M
+Amanita Taxonomic genus
+Amanitaceae Taxonomic family
+amanuenses
+amanuensis/M
+Amaral/M
+amaranth/SM
+Amaravati/M
+amaretto/SM
+Amarillo/M
+Amaro/M
+amaryllis/SM
+amass/GDSr
+amassment/S
+amateur/MS
+amateurish/PY
+amateurism/SM
+Amati/MS
+Amato/M
+amatriciana/M Noun: uncountable
+amaurosis/M
+amaurotic
+amaze/LDhkGS
+Amaziah/M
+Amazon/MS
+amazon/SM
+Amazonas/M
+Amazonia/M
+Amazonian/SM
+ambassador/SMO
+ambassadorship/MS
+ambassadress/SM
+Ambaston/M
+amber/MS
+ambergris/MS
+amberjack/M
+Amberley/M
+Ambert/M
+ambiance/SM
+ambidexterity/SM
+ambidextrous/Y
+ambience/SM
+ambient/SM
+ambifix/SM
+ambiguity/SM
+ambiguous/UY
+ambiguousness/M Noun: usually uncountable
+ambisexual/Y
+ambisonic/S
+ambit/SM
+ambition/MSp
+ambitious/UY
+ambitiousness/SM
+ambivalence/SM
+ambivalency/MS
+ambivalent/Y
+ambiversion/M Noun: uncountable
+ambivert/SM
+Ambivulus/M
+amble/DG
+amble/KS
+Amblecote/M
+ambler/MS
+Ambleside/M
+Ambleston/M
+amblyopia/MW
+Amblyrhynchus Taxonomic genus
+Ambo/M
+Amboina/M
+Ambondro/M
+Amboy/M
+amboyna/SM
+Ambrosden/M
+ambrose
+ambrosia/MSOo
+Ambrosian
+Ambrosiaster/M
+ambrotype/SM
+ambry/MS
+ambulacra/M
+ambulacral/SM
+ambulacrum/M
+ambulance/MS
+ambulanceman/M
+ambulancemen/M
+ambulant/S
+ambulate/SyDGn
+ambulatory/SM
+ambuscade/SMDGr
+ambush/RSGDM
+Amcotts/M
+AMD/M
+Amdahl/M
+Amélia/M
+Amelia/M
+ameliorate/DGnVS
+amen/dgl7S
+amenability/SM
+amend/r7GDLS
+amener
+amenity/SM
+amenorrhoea/M
+Amer/M
+Amerada/M
+amerce/SGLD
+America/MSP
+American/MS
+Americana
+Americanese
+Americanesque
+Americanise/SGDn
+Americanism/SM
+Americanist/SM
+Americanize/SGDn
+americium/SM
+Américo/M
+Americus/M
+Amerind/MS
+Amerindian/MS
+Amersham/M
+Ames/M
+Amesbury/M
+amethyst/SM
+amethystine
+Amfreville/M
+Amgen/M
+Amgoed/M
+Amgueddfa/M
+Amharic/M
+Amherst/M
+Ami/M
+amiability/SM
+amiable/YTP
+amianthus
+amicability/MS
+amicable/PY
+amid
+amide/MS
+amidship/S
+amidst
+Amiens/M
+Amiga/SM
+AmigaDOS/M
+AmigaOne/M
+AmigaOS/M
+amigo/MS
+Amihai/M
+amikacin
+amine/S
+Aminet/M
+amino/M
+aminobenzoic
+aminoglycoside/S
+aminohydrolase
+aminopeptidase/SM
+aminophylline
+amiodarone/M
+Amir/M
+amir/SM
+Amirani/M
+Amis/M
+Amish/M
+amiss
+Amit/M
+Amite/M
+Amitiza/M
+amitosis
+amitotic/Y
+amitriptyline/M
+Amity/M
+amity/MS
+amlodipine/M
+Amlwch/M
+Amma/M
+Amman/M
+Ammanford/M
+ammeter/SM
+ammo/SM
+Ammon/M
+ammonia/SM
+ammoniac/O
+ammoniated
+ammonite/S
+ammonium/M
+ammonoid/SM
+ammunition/SM
+amnesia/SMW
+amnesiac/SM
+amnesty/DSGM
+amnia/M Plural of amnion
+amnio/SM
+amniocenteses
+amniocentesis/M
+amnion/MS
+amniote/SW
+Amoco/M
+amoeba/MSW
+amoebae
+amoebiasis
+amoeboid
+amok
+AMOLED/M
+Amon/M
+among
+amongst
+amontillado/SM
+amoral
+amorality/SM
+amorallym
+Amorim/M
+amorous/PY
+Amorphis/M
+amorphism/SM
+amorphous/PY
+amortise/nSGD
+amortised/U
+amortize/nSGD
+Amos/M
+Amotherby/M
+Amotz/M
+amount/MSGD
+amour/MS
+amoxicillin/SM
+amoxycillin/SM
+amp/SYGMD
+amperage/SM
+ampere/MS
+Amperian
+amperometry/MW
+ampersand/SM
+Ampfield/M
+amphetamine/MS
+Amphibia Taxonomic class
+amphibian/MS
+amphibious/PY
+amphibole/SM
+amphibolite/SM
+amphibology/MS
+amphibrach/W
+amphioxus
+amphipod/SM
+Amphipoda Taxonomic order
+amphiprostyle/SM
+amphisbaena/SM
+Amphisbaenia
+amphisbaenian/SM
+amphitheatre/SM
+amphora/SM
+amphorae
+amphoteric
+amphotericin/SM
+amphoterism/M Noun: uncountable
+ampicillin/SM
+ample/PT
+Ampleforth/M
+amplification/M
+amplify/DRGSn
+amplitude/SM
+Ampner/M
+Ampney/M
+Amport/M
+ampoule/MS
+Ampthill/M
+Ampton/M
+ampulla/SM
+ampullae/M Plural of ampulla
+amputate/DSGn
+amputation/M
+amputee/SM
+Amqui/M
+Amritchandra/M
+Amritsar/M
+Amroth/M
+Amsterdam/M
+Amstrad/M
+amt.
+Amtrak/M
+amu
+amuck
+amulet/MS
+Amulree/M
+Amundsen/M
+Amur/M
+amuse/RSkLVhDG
+amusing/P
+Amwell/M
+Amy/M
+amygdala
+amygdalae
+amygdaloid
+amyl/M
+amylase/MS
+amyloid
+amyloidosis
+amylopectin
+amylose
+amyotrophy/W
+Amytal/M
+an/CS
+Ana/M
+Anabaptism
+Anabaptist/MS
+Anabela/M
+anabiosis
+anabiotic
+anabolic
+anabolism/MS
+anabranch/S
+anachronic
+anachronism/SM
+anachronistic/Y
+anachronous/Y
+anaclitic
+anaconda/SM
+Anacortes/M
+Anacreon/M
+anacreontic/S
+anadromous
+anaemia/SM
+anaemic/Y
+anaerobe/MW1S
+anaerobiont/M
+anaerobioses
+anaerobiosis/M
+anaerobiotic
+anaesthesia/MS
+anaesthesiology/M3S
+anaesthetic/YMS
+anaesthetise/RnSGD
+anaesthetist/MS
+anaesthetize/RDSGn
+anagen
+anagenesis
+anagenetic
+anaglyph/SMW
+anagoge
+anagogy/W1
+anagram/GMDS
+anagrammatic/Y
+Anaheim/M
+Anahuac/M
+Anakin/M
+Anakiwa/M
+anal-sadism
+anal-sadistic
+anal/Y
+analcime
+analecta
+analects
+analeptic/S
+analgesia/MS
+analgesic/S
+analogous/PY
+analogue/SM
+analogy/SQ8M1w
+analphabetic
+analysand/MS
+analysandum
+analyse/GWSRNB
+analysed/aU
+analysis/M
+analyst/SM
+analyte/SM
+analytic/YSO
+analyticity/S
+anamorphic
+anamorphoses
+anamorphosis
+Anand/M
+Ananelus/M
+Ananias/M
+Ananke/M
+anapaest/WSM
+anaphase
+anaphora/1WM
+anaphrodisiac/S
+anaphylactic
+anaphylaxis
+anaplasmosis/M
+anaplastic
+anarchism/SM
+anarchistic
+anarcho-primitivism
+anarchy/3Ww1SM
+Anastasia/M
+anastigmatic
+anastomose/DGSW
+anastomosis/M
+anastrophe/S
+anastrozole/M
+anathema/MS
+anathematic/O
+anathematisation/SM
+anathematise/SGD
+anathematization/SM
+anathematize/SGD
+Anatolia/M
+Anatolian/S
+anatomy/Q813wSWM
+anatta/M Noun: uncountable
+Anau/M
+Anaxagoras/M
+Ancaster/M
+ancestor/MS
+ancestral/Y
+ancestress/SM
+ancestry/SM
+ancho/SM
+Ancholme/M
+anchor/m5dSM
+Anchorage/M
+anchorage/MS
+anchoress/SM
+anchoret/WSM
+anchoretical/Y
+anchorite/SWM
+anchoritism/M Noun: uncountable
+anchorpeople/M
+anchorperson/SM
+Anchorsholme/M
+anchovy/MS
+Anchusa Taxonomic genus
+anchylose/SGDJ
+ancient/TPYS
+ancillary/SM
+Ancoats/M
+Ancroft/M
+Ancrum/M
+Ancyra/M
+and/DG
+Andalusia/M
+Andalusian/SM
+Andaman/M
+andante/SM
+andantino/SM
+Andean/M
+Anderby/M
+anders
+Andersen/M
+Anderson/MS
+Andersson/M
+Anderston/M
+Anderton/M
+Andes/M
+andesite/WSM
+Andhra/M
+Andie/M
+andiron/MS
+Andorra/M
+Andorran/SM
+Andover/M
+Andoversford/M
+Andrade/M
+andradite/SM
+András/M
+André/M
+Andre/M
+Andrea/M
+Andreas/M
+Andrei/M
+Andreu/M
+Andrew/M
+Andrews-Lhanbryd/M
+Andrews/M
+Andreyevich/M
+Andriy/M
+androcentric/Y
+androcentrism/M Noun: uncountable
+androcracy/SM
+androcratic
+androecia/OM
+androecium/M
+androgen/MSW
+androgenetic
+androgyne/SM
+androgynous/Y
+androgyny/MS
+android/SM
+andrology/3M
+Andromache/M
+Andromeda/M
+Andromedae
+andropause/O^
+androphilia/M Noun: uncountable
+Androscoggin/M
+androstanediol/SM
+androsterone/SM
+Andrzej/M
+Andy/M
+Äneas/M
+anecdotal/3
+anecdote/SMo3
+anechogenic
+anechoic/Y
+Aneirin/M
+anele/SGDJ
+anemochore/1SMW
+anemochorous
+anemochory/M Noun: uncountable
+anemometer/SM
+anemometry/MW
+anemone/MS
+anemophilous
+anemophily
+anencephalia/W
+anencephalous
+anencephaly/SM
+aneroid
+aneuploid/Z
+aneurysm/OSM^
+anew
+Anfield/M
+Ang/M
+angel/S1wMW
+Ângela/M
+Angela/MW
+Angeles/M
+angelfish/SM
+angelica/MS
+Angelico/M
+Angelicus/M
+Angelika/M
+Angelina/M
+Angelman/M
+Angelo/M
+angelology
+Angelou/M
+Angels/M
+angelus
+Angelus/M
+Anger/M
+anger/MdS
+Angersleigh/M
+Angerton/M
+Anges/M
+Angevin/SM
+Angie/M
+angina/MS
+angiocardiographic
+angiogenesis
+angiogram/SM
+angiographer/SM
+angiography/W1
+angioid
+angioneurotic
+angioplasty/SM
+angiosperm/SM
+angiospermous
+angiotensin
+Angkor/M
+anglais vice anglais
+angle/MRSJGD
+Angle/MS
+anglepoise
+anglerfish/SM
+Anglesey/M
+anglesite
+Angleton/M
+anglewise
+angleworm/MS
+Anglezarke/M
+Anglia/M
+Anglian/MS
+Anglican/MS
+Anglicanism/M
+anglicise/nSGD
+Anglicism/S
+Anglicist
+Anglicity
+anglicize/nSGDr
+angling/M
+Anglist/MS
+Anglistics
+Anglo-American/S
+Anglo-Boer
+Anglo-Catholic/S
+Anglo-Catholicism
+Anglo-French
+Anglo-German/S
+Anglo-Indian/S
+Anglo-Irish
+Anglo-Irishman
+Anglo-Israelism
+Anglo-Israelitism
+Anglo-Jewish
+Anglo-Jewry
+Anglo-Judaic
+Anglo-Latin
+Anglo-Norman
+Anglo-Russian
+Anglo-Saxon/S
+Anglo-Saxonism/S
+Anglo/SM
+Anglocentric
+Anglomania
+Anglomaniac/MS
+Anglophile/SM
+Anglophilia/M Noun: uncountable
+Anglophobe/MSW
+Anglophobia/M
+anglophone/MS
+Anglophonie
+Anglophony
+Anglosphere
+Angmering/M
+Angola/M
+Angolan/SM
+Angora/M
+angora/MS
+Angostura/M
+Angram/M
+angry/PTY
+angst/MS
+angstrom/SM
+Anguiano/M
+Anguilla/M
+anguish/MDSG
+angular/Y
+angularity/MS
+angulate/SGDn
+Angus/MS
+Anhalt/M
+anharmonic
+anhedonia/WM Noun: usually uncountable
+Anheuser/M
+Anhui/M
+anhydride/SM
+anhydrite/SM
+anhydrous/Y
+Anichi/M
+aniconic
+aniconism
+aniline/MS
+anilingus
+anima
+animacy/M Noun: usually uncountable
+animadversion/SM
+animadvert/GDS
+animal/PMq-S8QY~
+animalcular
+animalcule/SM
+Animalia Taxonomic kingdom
+animaliculture/M
+animalism/SM
+animalist/SM
+animalistic/Y
+animality/SM
+Animas/M
+animatable
+animate/DnASG
+animated/Y
+animately/I
+animateness/I
+animateness/M
+animatic/S
+animation/AM
+animator/SM
+animatronic/S
+animé
+anime
+animism/MS
+animist/WSM
+animosity/MS
+animus/SM
+anion/SWM
+anise/MS
+aniseed/SM
+aniseikonic
+anisette/SM
+Anisimov/M
+anisogamous
+anisogamy/M Noun: uncountable
+anisotropy/MWS1
+Aniston/M
+Anita/M
+Anjeanette/M
+Ankara/M
+Ankeny/M
+ankh/SM
+ankle/GDMS
+anklebone/MS
+anklet/MS
+ankylosaur/SM
+ankylose/SGDJ
+Anlaby/M
+anlace/S
+Anmer/M
+Ann/M
+Anna/MS
+Annabel/M
+Annabelle/M
+Annabi/M
+Annaclone/M
+Annaghmore/M
+Annahilt/M
+Annahugh/M
+annal/3SM
+Annalee/M
+annalen
+annalistic/Y
+Annalong/M
+Annan/M
+Annandale/M
+Annapolis/M
+Annapurna/M
+Annbank/M
+Anne/MS
+anneal/DRGS
+Annefrank/M
+annelid/MS
+Annelida Taxonomic phylum
+Annesbrook/M
+Annesley/M
+Annette/M
+annex/nDSG
+annexationist/SMW
+annexe/M
+annicut/SM
+Annie/M
+Anniesland/M
+annihilate/SnVDG
+annihilationism/M Noun: uncountable
+annihilationist/SM
+annihilator/SM
+Annika/M
+Anning/M
+Anniston/M
+Annius/M
+anniversary/SM
+Anno Latin: Anno Domini
+annock
+Annonaceae Taxonomic family
+annotate/GnVDS
+annotator/SM
+announce/RDSLG
+annoy/DkRSG
+annoyance/MS
+annoybot/SM
+annoyingness/M Noun: uncountable
+annoyware/M Noun: uncountable
+Annsborough/M
+annual/YS
+annualise/SGD
+annualize/SGD
+annuitant/SM
+annuitise/SGDN
+annuitize/SGDN
+annuity/SM
+annul/GLDS
+annular/Y
+annulate/Dn
+annulet/SM
+annuli/M
+annulus/M
+annum/SM
+annunciate/DnSG
+annunciator/MS
+anode/8MQSW
+anodyne/SM
+anoint/SDGLr
+Anoka/M
+anomalistic
+anomalous/PY
+anomaly/SM
+anomer/MS
+anomic Adjective
+anomie/SM
+anon/SM
+anonym/SM
+anonymise/SGDNR
+anonymity/SM
+anonymize/SGDN
+anonymous/Y
+Anopheles Taxonomic genus
+anopheles/M
+anopheline/SM
+anorak/SM
+anorectal
+anorectic
+anorexia/MS
+anorexic/SMY
+anorgasmia/M Noun: uncountable
+anorgasmic Adjective
+anorthosite/SM
+anosognosia/SM
+anosognostic
+another/M
+anovulant/SM
+anovulation/M Noun: uncountable
+anoxia/M Noun: uncountable
+anoxic/Y
+ans/M
+ansation/M
+ansatz/M
+Ansell/M
+Anselm/M
+Anselmo/M
+Ansford/M
+Anshan/M
+ANSI/M
+Ansley/M
+Anslow/M
+Anson/M
+Ansonia/M
+Anstey/M
+Anston/M
+Anstruther/M
+Ansty/M
+answer/7drSM
+answerphone/SM
+ant/E
+ant/MS
+antacid/SM
+antagonise/RSGD
+antagonism/SM
+antagonist/WSM1
+antagonize/RSDG
+Antalya/M
+Antananarivo/M
+Antarctic/M
+Antarctica/M
+Antares/M
+antasthmatic/SM
+antbird/SM
+ante-mortem
+ante/SMW
+anteater/SM
+antebellum Adjective
+antecedence/SM
+antecedent/YMS
+antechamber/MS
+antechapel/SM
+antedate/GSD
+antediluvian/SM
+antelope/MS
+antenatal/Y
+antenna/SM
+antennae/M
+antennule/SM
+antepartum Adjective
+antepenult/SM
+anterior/SYP
+anteriormost
+antero-frontal
+antero-parietal
+antero-posteriorly
+antero-septal
+Antero/M
+anterograde/Y
+anterolateral
+anteroloph/SM
+anterolophid/SM
+anteroom/MS
+anteroposterior
+anteroventral
+Antetokounmpo/M
+anteversion/SM
+anteverted
+Anthe/M
+anthecology/Mw
+anthelmintic/SM
+anthem/MdS
+anther/MS
+antheridia/MO
+antheridium/M
+antherozoid/SM
+anthesis/M
+anthill/SM
+anthocyan/SM
+anthocyanin/SM
+Antholin/M
+anthologise/SGD
+anthologize/SGD
+anthology/SM3
+Anthony-in-Meneage/M
+Anthony/M
+anthophilous
+Anthozoa Taxonomic class + Taxonomic subphylum
+anthozoan/SM
+anthracene/SM
+anthraces
+anthracite/MSW
+anthracnose/SM
+anthracosis/M Noun: uncountable
+anthrax/M Noun: usually uncountable
+anthropic/a
+Anthropocene
+anthropocentric/Y
+anthropocentrism/SM
+anthropogenic/Y
+anthropoid/SM
+anthropology/31wMS
+anthropomancy/M Noun: uncountable
+anthropometric/SOY
+anthropometry/WSM
+anthropomorphic/Y
+anthropomorphisation/SM
+anthropomorphise/SGD
+anthropomorphism/SM
+anthropomorphize/SGD
+anthropomorphous/Y
+anthroponym/SM
+anthropophagi/M
+anthropophagous/Y
+anthropophagus/M
+anthropophagy/M Noun: usually uncountable
+anthropophilic Adjective
+anthroposophy/Mw
+anthroposphere/SMW
+anthurium/SM
+anti-abortion/3
+anti-ageing
+anti-aggression
+anti-aircraft
+anti-American
+anti-Americanism
+anti-androgen/SM
+anti-apartheid
+anti-British
+anti-capitalism
+anti-capitalist
+anti-Christian
+anti-collision
+anti-constitutional
+anti-corrosion
+anti-corruption
+anti-democratic
+anti-depression
+anti-emetic/S
+anti-establishment
+anti-feminism
+anti-feminist
+anti-fraud
+anti-gay
+anti-government
+anti-gravity
+anti-hero/M
+anti-heroes
+anti-hunt/G
+anti-infective
+anti-inflammatory
+anti-intellectual/S
+anti-lock
+anti-magnetic
+anti-nuclear
+anti-personnel
+anti-piracy
+anti-racism
+anti-racist/S
+anti-recession
+anti-Semitic
+anti-Semitism/M
+anti-slavery
+anti-subversion
+anti-tank
+anti-tetanus
+anti-vax/r
+anti-vaxxer/SM
+anti-war
+anti-Western
+anti/S
+antialiasing
+antiandrogenic
+antianxiety/SM
+antiasthmatic
+antibacterial/SMY
+antiballistic
+antibiosis
+antibiotic/MS
+antiblack
+antiblackism/M Noun: uncountable
+antibody/MS
+antibubble
+antic/GMDS
+anticancer
+anticathode/SM
+anticellulite
+anticholinergic/SM
+anticholinesterase/SM
+Antichrist/SM
+anticipate/nySvVGD
+anticipated/U
+anticipator/SM
+anticlerical/SM3
+anticlericalism/M Noun: uncountable
+anticlimactic/Y
+anticlimax/MS
+anticline/MS
+anticlockwise
+anticoagulant/SMY
+anticoagulation/M
+anticommunism/SM
+anticommunist/MS
+anticompetitive
+anticonvulsant/SM
+anticyclone/SMW
+antidemocratic/OY
+antidepressant/SM
+antidepressive/SM
+antiderivative/SM
+antidevelopment
+antidiabetic
+antidiarrhoeal
+antidisestablishmentarian/SM
+antidisestablishmentarianism/M Noun: usually uncountable
+antidiuretic
+antidote/SDMG
+antidromic/OY
+antielectron/SM
+antiepileptic/SM
+Antietam/M
+Antifa
+antifascist/SM
+antifeedant/SM
+antiferromagnetic
+antiferromagnetism/M Noun: uncountable
+antifog/G
+antiformant
+antifouling
+antifreeze/MS
+antifundamentalist/SM
+antifungal/SM
+antigen/MSW
+antigenicity/SM
+antiglobalisation
+antiglobalization
+Antigone/M
+Antigonus/M
+antigravity/M Noun: uncountable
+Antigua/M
+Antiguan/SM
+antihistamine/MSW
+antihistorical
+antihydrogen/M Noun: usually uncountable
+antihypertensive/SM
+antiknock/SM
+Antilegomena/M
+Antilles/M
+antilog/SM
+antilogarithm/MS
+antilogy/SM
+antimacassar/MS
+antimalarial/SM
+antimatter/MS
+antimetabolite/SM
+antimicrobial/SM
+antimilitarism/SM
+antimilitarist/SM
+antimissile/SM
+antimonide/SM
+antimony/SM
+antimycotic/SM
+Antin/M
+antineoplastic
+antineutrino/SM
+antineutron/SM
+Antingham/M
+antinomian/SM
+antinomianism/SM
+antinomy/SM
+Antinous/M
+antinovel/SM
+Antioch/M
+Antiochus/M
+antioestrogenic
+antioxidant/MS
+antiparallel
+antiparasitic
+antiparticle/SM
+Antipas/M
+antipasti/M
+antipasto/MS
+antipathy/SMW
+antipattern/SM
+antiperspirant/SM
+antiphon/MSo
+antiphonal/SM
+antiphonary/S
+antipodal/SM
+antipode/SM
+antipodean/SM
+antipope/SM
+antipornography/W
+antiproton/SM
+antipruritic/SM
+antipsychotic/SM
+antipyretic/SM
+antiquarian/MS
+antiquarianism/MS
+antiquark/SM
+antiquary/SM
+antiquate/GSD
+antiquation/M Noun: usually uncountable
+antique/MSDNG
+antiquity/SM
+Antiquus/M
+antiredeposition
+antireligion
+antireligious
+antiresonance/SM
+antiresonator
+antiretroviral/SM
+antirrhinum/SM
+antiscience/SM
+antiscorbutic/SM
+antisemitic
+antisemitism/M Noun: uncountable
+antisense/SM
+antisepses
+antisepsis/M
+antiseptic/SMY
+antisera/M
+antiserum/M
+antislavery
+antisocial/SMY
+antisociality/M Noun: uncountable
+antisolar
+antispam
+antispasmodic/SM
+antistatic/SM
+Antisthenes/M
+antistrophe/SM
+antisubmarine
+antisymmetry/SMW
+antitank
+antiterror/3
+antiterrorism/M Noun: uncountable
+antitheses
+antithesis/M
+antithet/SM
+antithetic/YO
+antithrombin/SM
+antithyroid
+antitoxic
+antitoxin/SM
+antitrinitarian/SM
+antitrust/Mr
+antitrypsin/SM
+antitubercular
+antituberculous
+antitumour
+antitumoural
+antitussive/SM
+antitype/SM
+antitypical/Y
+antiulcer Adjective
+antivenene/SM
+antivenin/SM
+antivenom/SM
+antiviral/SM
+antivirus/SM
+antivivisection/3
+antivivisectionism/M Noun: uncountable
+antiworm Adjective
+Antje/M
+antler/MS
+antlered
+Antlia/M
+Antoine-Labelle/M
+Antoine/M
+Antoinette/M
+Anton/M
+Antonella/M
+Antoni/M
+Antonia/M
+Antonine/M
+Antonio/M
+António/M
+Antonius/M
+antonomasia/SM
+Antony/M
+antonym/SM
+antonymous/Y
+antra/MO
+Antrim/M
+Antrobus/M
+antrum/M
+antsier
+antsiest
+Antunes/M
+Antwerp/M
+Anubis/M
+Anuket/M
+Anunnaki/M
+Anunnakian Adjective
+anuran/SM
+anuria/SMW
+anus/MS
+anvil/DGSM
+Anwick/M
+Anwoth/M
+anxiety-free Adjective
+anxiety-ridden Adjective
+anxiety/SM
+anxiogenic/SM
+anxiolytic/SM
+anxious/PY
+any
+anybody/SM
+anyhow
+anyone/M
+anything/M
+anytime
+anyway
+anywhere
+anywise
+Anzac/MS
+Aokautere/M
+AOL/M
+Aomori/M
+aorist/SM
+aorta/WSM
+Aotea/M
+Aoyama/M
+ap
+APA/SM
+apace Adverb
+Apache/SM
+Apalachicola/M
+apart/PL
+apartheid/M
+apathetic/Y
+apathy/MSW
+apatite/SM
+apatosaurus/SM
+APC/SM
+ape/M1GwSDR
+apelike
+apelin/M Noun: uncountable
+Apelles/M
+apeman/M
+apemen/M
+Apennines
+aperiodic/Y
+aperiodicity/M
+aperitif/SM
+aperture/DMSO
+Apesthorpe/M
+apetalous
+Apethorpe/M
+Apex/M
+apex/SM
+aphasia/SM
+aphasic/SM
+aphelia/SM
+aphelion/SM
+aphereses
+apheresis/M
+aphid/MS
+aphonic/SM
+aphorism/MS
+aphoristic/OY
+aphorize/SGDJ
+aphotic
+aphrodisiac/SMO
+Aphrodite/M
+API/SM
+Apia/M
+apiary/S3M
+apices
+apiculture/OM3
+apiece Adverb
+apiology/M Noun: uncountable
+Apion/M
+apiose/SM
+apish/YP
+apixaban/M Noun: uncountable
+aplenty
+Apley/M
+aplomb/SM
+apnoea/M Noun: usually uncountable
+APO/M
+apoapsis/M
+Apocalypse/SM
+apocalypse/WMS
+apocalyptical/Y
+apocalypticism/M Noun: uncountable
+Apocrypha/M
+apocrypha/oSM
+apocryphal/P
+apocryphon
+apodeictic/OY
+apodictic/OY
+apodoses
+apodosis/M
+apogean Adjective
+apogee/SM
+apolar/Y
+apolitical/Y
+Apollinaris/M
+Apollo/M
+apollo/SM
+Apollodorus/M
+Apollonia/M
+Apollonian/SM
+Apollonius/M
+Apollyon/M
+apologetic/SY
+apologia/SM
+apologue/SM
+apology/SQ8s9M3
+apolune/SM
+apomictic/Y
+apomixes
+apomixis/M
+aponeuroses
+aponeurosis/M
+aponeurotic/Y
+apophases
+apophasis/M
+apophatic/Y
+apophthegm/SM
+apophyllite/SM
+Apopka/M
+apoplast/SMW
+apoplectic/SM
+apoplexy/SM
+apoprotein/SM
+apoptoses
+apoptosis/M
+apoptotic/Y
+aposematic/Y
+aposematism/SM
+aposporous Adjective
+apospory/M Noun: uncountable
+apostasy/SM
+apostate/MS
+apostatic/OY
+apostatise/SGD
+apostatism
+apostatize/SGD
+Apostille
+apostle/MS
+Apostle/SM
+apostlebird/SM
+apostleship/MS
+apostolate/SM
+Apostolic/O
+apostolic/OY
+apostrophe/SM
+apostrophise/SGD
+apostrophize/SGD
+Apotgan/M
+apothecary/MS
+apothem/SM
+apotheoses
+apotheosis/M
+apotheosise/SGD
+apotheosize/SGD
+apotropaia/M
+apotropaic/SMY
+apotropaion/M
+apozem/SM
+app/MS
+appal/DSGk
+Appalachia/M
+Appalachian/MS
+Appaloosa/MS
+appaloosa/SM
+appanage/SM
+Appanoose/M
+apparat/SM
+apparatchik/SM
+apparatchiki/M
+apparatus/SM
+apparel/DGMS
+apparent/PY
+apparition/SM
+appeal/GDSkMr7
+appear/GADSE
+appearance/AMES
+appearer/SM
+appease/SDRLG
+appellant/SM
+appellate/Vvn
+appellative/SM
+append/SGRD
+appendage/SM
+appendant/SM
+appendectomy/SM
+appendicectomy/SM
+appendices
+appendicitis/MS
+appendicular
+appendix/MS
+apperception/SM
+apperceptive
+appertain/SDG
+appetiser/SM
+appetising/UY
+appetite/VSM
+appetizer/SM
+appetizing/UY
+Apphia/M
+Appiah/M
+Appian/M
+AppImage/SM
+Appin/M
+applaud/RSDG
+applause/MS
+apple-cart/SM
+apple-pie/SM
+Apple/M
+apple/YSM
+Appleby/M
+Applecross/M
+Appledore/M
+Appledram/M
+Appleford-on-Thames/M
+Appleford/M
+Applegarth/M
+AppleScript/SM
+Appleshaw/M
+applet/MS
+Appleton/M
+Appletreewick/M
+Applewhite/M
+appliance/SM
+applicability/MI
+applicability/S
+applicable/Y
+applicant/SM
+application/AM
+applicator/SM
+applied/Aa
+applier/aM
+applies/Aa
+Appling/M
+appliqué/SMG
+appliquéd
+applistructure/SM
+applotment/SM
+apply/vnRGDSV
+applying/a
+appoggiatura/SM
+appoggiature/M
+appoint/RLSVDG
+appointed/EA
+appointee/SM
+appointing/E
+appoints/EA
+Appomattox/M
+apportion/LADSG
+apposite/Yx
+appositeness/M Noun: usually uncountable
+apposition/SM
+appositional/SMY
+appositive/SM
+appraisable
+appraisal/AMS
+appraise/AGSD
+appraise/k
+appraisee/SM
+appraisement/SM
+appraiser/MS
+appraisive
+appreciable/YI
+appreciably/I
+appreciate/vyGVDnuS
+appreciated/U
+appreciative/IYP
+appreciator/MS
+apprehend/DvNVSGuXr
+apprehended/a
+apprehending/a
+apprehends/a
+apprehensible
+apprehension/aMS
+apprehension/O
+apprehensive/P
+apprentice/DSGM
+apprenticeship/SM
+apprise/kSGD
+approach/BRGDS
+approachability/M Noun: usually uncountable
+approachable/U
+approbate/n
+approbation/MES
+appropriable
+appropriacy/SM
+appropriate/GnaDS
+appropriately/I
+appropriateness/ISM
+appropriative
+appropriator/SM
+approval/MES
+approve/D
+approve/RkEGSD
+approx
+approximant/SM
+approximate/GVSvDYn
+appurtenance/MS
+appurtenant/SM
+Apr
+après-ski/G
+apricot/MS
+April/MS
+apriorism/SM
+apriorist/MS
+aprioristic/Y
+apron/SM
+aproned
+apronful/MS
+apropos
+apse/SM
+apsis/M
+apt/TPY
+apterygote/SM
+apterygotous
+Aptian A subdivision of the Early (Lower) Cretaceous epoch
+aptitude/SM
+aptly/I
+aptness/IS
+Apton/M
+aptonym/SMW
+aptronym/SMW
+APU/SM
+Apuldram/M
+Apulia/M
+aqua/MS
+aquaculture/MS
+aqualung/MS
+aquamarine/SM
+aquanaut/SM
+aquaplane/MDGS
+aquarelle/SM
+aquaria/M
+Aquarian/SM
+aquarist/SM
+aquarium/SM
+Aquarius/MS
+aquarobics
+aquatic/YS
+aquatint/MS
+aquavit/SM
+aqueduct/SM
+aqueous/Y
+aquiculture/SM
+aquifer/MS
+Aquila/M
+aquilegia/SM
+aquiline Adjective
+Aquinas/M
+Aquino/M
+Aquitaine/M
+Aquitainian/SM
+Aquitania/M
+Aquitanian/SM
+aquittal
+Ar
+Ara/M
+Arab/MS
+arabesque/MS
+Arabia/M
+Arabian/SM
+Arabic/MY
+Arabicism/SM
+Arabidopsis
+arability/MS
+arabin/M Noun: uncountable
+arabine/M Noun: uncountable
+arabinogalactan/SM
+arabinogalactane/SM
+arabinose/SM
+arabinoside/SM
+arabinotransferase/SM
+Arabis Taxonomic genus
+arabis/M
+Arabism/SM
+Arabist/SM
+arable/SM
+Araby/M
+arachidic Adjective
+arachidonic Adjective
+arachnid/SM
+Arachnida Taxonomic class
+arachnoid/SM
+arachnology/w3M
+arachnophobe/SM
+arachnophobia/M Noun: usually uncountable
+Arafat/M
+Arago/M
+Aragon/M
+Aragonese/M
+aragonite/SMW
+Arai/M
+Arakura/M
+Aral/M
+araldite
+Araldite/M
+aralia/SM
+Aramaic/SM
+arame/M Noun: uncountable
+aramid/SM
+Aramoana/M
+Aran/M
+araneid/SM
+araneous Adjective
+Aranesp/M
+Aranga/M
+Aransas/M
+Aranui/M
+Arapaho/M
+Arapahoe/M
+arapaima/SM
+Arapohue/M
+Ararat/M
+Ararimu/M
+Arash/M
+Araucanian/SM
+araucaria/MS
+Araújo/M
+arbalest/SM
+Arber/M
+arbidol/M Noun: uncountable
+Arbirlot/M
+arbiter/MnS
+arbitrage/DGRSM
+arbitrageur/SM
+arbitral
+arbitrament/MS
+arbitrary/PY
+arbitrate/VSGDn
+arbitrator/MS
+arblast/SM
+Arbor/M
+arboreal/SMY
+arboreality/M Noun: uncountable
+arborescence/SM
+arborescent Adjective
+arboreta/M
+arboretum/SM
+Arborfield/M
+arboriculture/O3^
+arborise/SGDn
+arborist/SM
+arborize/SGDn
+arborvirus/SM
+arborvitae/SM
+Arbory/M
+arbour/MDS
+arbovirus/SM
+Arbroath/M
+Arbury/M
+Arbuthnot/M
+Arbuthnott/M
+arbutus/MS
+arc/SMDG
+arcade/SDGM
+Arcadia/M
+Arcadian/SM
+Arcadianism/M
+Arcady/M
+arcana/M
+arcane/YP
+arcanum/M
+Arcata/M
+arccos/SM
+arccosine/SM
+arch-enemy/SM
+arch-rival/SM
+Arch/M
+arch/yTDRYSPGM
+archaea/M
+Archaean
+archaean/SM
+archaebacteria/MO
+archaebacterium/M
+archaeoastronomer/SM
+archaeoastronomy/Mw
+archaeobotanist/MS
+archaeobotany/M Noun: uncountable
+archaeologize/SGDJ
+archaeology/w3SM1W
+archaeomagnetic
+archaeomagnetism/M Noun: uncountable
+archaeometry/MW
+archaeopteryx/SM
+archaeozoological/Y
+archaic/YP
+archaise/RDSG
+archaism/MS
+archaist/MS
+archaize/SGD
+Archangel/M
+archangel/MSW
+archbishop/MS
+archbishopric/SM
+archboard/SM
+Archdale/M
+archdeacon/MS
+archdeaconry/SM
+archdevil/SM
+archdiocesan Adjective
+archdiocese/MS
+archducal Adjective
+archduchess/SM
+archduchy/SM
+archduke/MS
+archdukedom/SM
+Archean/M
+archegonia/MO
+archegonium/M
+Archelaus/M
+archentera/M
+archenteron/SM
+archery/SM
+Arches/M
+archetypal/Y
+archetype/wMS
+archfiend/MS
+archfool/SM
+Archibald/M
+archicerebellum/M
+archicortical
+archidiaconal
+Archie/M
+archiepiscopacy/SM
+archiepiscopal
+archiepiscopate/SM
+Archiestown/M
+archimandrite/SM
+Archimedean Adjective
+Archimedes/M
+arching/SM
+archipelago/SM
+archipelagoes
+Archippus/M
+architect/SMGD
+architectonic/SY
+architecture/oSMO
+architrave/SM
+archive/ODRS3MG
+archivolt/SM
+archlute/SM
+archon/SM
+archonship/MS
+archontes
+archosaur/SM
+archpriest/SM
+archrival/SM
+Archuleta/M
+Archway/M
+archway/SM
+Archytas/M
+Arcilla/M
+Arclid/M
+arclike
+arcminute/SM
+ARCO
+arco/S
+arcology/SM
+arcsecond/SM
+arcsin/SM
+arcsine/SM
+arctan/SM
+arctangent/SM
+Arctic/M
+arctic/SM
+arctophile/SM3
+arctophilia/M Noun: uncountable
+arctophily/M Noun: uncountable
+Arcturus/M
+arcuate/Y
+Ardboe/M
+Ardchattan/M
+Ardclach/M
+Ardeer/M
+Ardeley/M
+Arden/M
+ardency/SM
+Ardennes/M
+ardent/Y
+Ardentinny/M
+Ardeonaig/M
+Ardern/M
+Ardersier/M
+Ardfern/M
+Ardfert/M
+Ardgarvan/M
+Ardgay/M
+Ardglass/M
+Ardgour/M
+Ardingly/M
+Ardington/M
+Ardleigh/M
+Ardler/M
+Ardley/M
+Ardminish/M
+Ardmore/M
+Ardnamurchan/M
+Ardoch/M
+ardour/SM
+Ardrishaig/M
+Ardrossan/M
+Ards/M
+Ardsley/M
+Ardstraw/M
+Ardudwy/M
+arduous/YP
+Ardwick/M
+are/B
+Area/M
+area/MSO
+Arean
+areata
+areawide
+areca/MS
+Arecibo/M
+Areeiro/M
+Areley/M
+aren't
+arena/MS
+Arenac/M
+arenaceous
+arenavirus/SM
+arenite/MS
+arenosol/SM
+areographer/SM
+areoid/SM
+areola/M
+areolae/M
+areolar
+areolate
+areole/SM
+areology/M3w
+Arequipa/M
+Ares/M
+arête/MS
+Aretha/M
+Argand/M
+argent/SM
+Argenteuil/M
+argentiferous
+Argentina/M
+Argentine/SM
+Argentinean/SM
+Argentinian/SM
+argentocene
+argillaceous
+arginine/SM
+Arginusae/M
+Argive/MS
+Argo
+Argoed/M
+argon/SM
+argonaut/S
+Argonaut/SM
+Argonautica/M
+Argos/M
+argosy/MS
+argot/SM
+Argote/M
+arguable/YIU
+arguably/IU
+argue/7DRSG
+argufy/SGDJ
+argument/SnMp
+argumenta/M
+argumentative/PY
+argumentum/M
+Argus/M
+argus/SM
+argute
+argy
+argy-bargy/SMD
+Argyle/M
+Argyll/M
+argyll/SM
+Argyllshire/M
+argyrophilic
+Århus/M
+aria/SM
+Ariadne/M
+Arial/M
+Arian/SM
+Ariana/M
+Arianism/M
+arid/PY
+aridity/SM
+Ariel/M
+ariel/S
+Aries/M
+aright
+aril/SM
+arillate
+Arimathea/M
+Ariminum/M
+aripiprazole/M Noun: uncountable
+Arisaig/M
+arise/SGJ
+arisen
+ariser
+Aristaeus/M
+Aristarchus/M
+Aristides/M
+Aristippus/M
+aristo/SM
+Aristobulus/M
+aristocracy/SM
+aristocrat/WM1S
+Aristophanes/M
+Aristotelian/SM
+Aristotelianism/M
+Aristotle/M
+arithmetic/OYM
+arithmetician/MS
+arithmetise/SGD
+arithmetize/SGD
+Arius/M
+Arizona/M
+Ark
+ark/MS
+Arkadelphia/M
+Arkansan/SM
+Arkansas/M
+Arkendale/M
+Arkengarthdale/M
+Arkesden/M
+Arkholme-with-Cawood/M
+Arkholme/M
+Arksey/M
+Arkwright/M
+Arlecdon/M
+Arlen/M
+Arlene/M
+Arles/M
+Arlesey/M
+Arlette/M
+Arley/M
+Arlingham/M
+Arlington/M
+Arliss/M
+arm-wrestle/G
+arm/Mp
+Arm/MS
+arm/RELGDS
+Armada
+armada/SM
+Armadale/M
+armadillo/SM
+Armageddon/M
+Armagh/M
+Armagnac/M
+armamentaria/M
+armamentarium/M
+Armand/M
+Armanda/M
+Armani/M
+Armathwaite/M
+armature/DMGS
+armband/MS
+armchair/SM
+Armco/M
+armed/UA
+Armenia/M
+Armenian/MS
+Armenta/M
+Armero/M
+Armes/M
+Armfield/M
+armful/SM
+armhole/SM
+Armidale/M
+armiger/MS
+armigerous
+armillary
+Armin/M
+arming/M
+Arminghall/M
+Arminian/SM
+Arminianism/M Noun: uncountable
+Arminius/M
+armipotence/M Noun: uncountable
+armipotent/SM
+Armistice
+armistice/MS
+Armitage/M
+armlet/SM
+Armley/M
+armload/MS
+armlock/SM
+armoire/SM
+Armonk/M
+armorial/SM
+armour-plate/D
+armour/SRDGMZ
+armoury/SMD
+Armoy/M
+armpit/MS
+armrest/SM
+arms/Afc
+Armstrong/M
+Armthorpe/M
+army/MS
+Arnall/M
+Arnaud/M
+Arncliffe/M
+Arncliiffe/M
+Arncott/M
+Arndale/M
+Arndt/M
+Arne/M
+Arnesby/M
+Arney/M
+Arnfield/M
+Arngask/M
+Arnhold/M
+Arnisort/M
+Arno/M
+Arnobius/M
+Arnold/M
+Arnolfini/M
+Arnside/M
+Aro/M
+Aroha/M
+aroma/WSM1
+aromantic/SM
+aromanticism/M Noun: uncountable
+aromatase/SM
+aromatherapeutic
+aromatherapy/SM3
+aromatic/PSM
+aromaticity/SM
+Áron/M
+Aroostook/M
+AROS/M
+arose
+around
+arousal/SM
+arouse/SDG
+ARPA/M
+Arpanet/M
+arpeggio/SM
+arquebus/SM
+arquebusier/MS
+arr/SM
+arrack/SM
+arraign/LGDSM
+Arran/M
+arrange/LRSDGB
+arranged/EKA
+arranges/AEK
+arranging/AEK
+arrant/Y
+Arras/M
+arras/SM
+Arrathorne/M
+array/EGMSD
+arrayer/SM
+arraylike
+arrear/SM
+arrearage/SM
+arrest/Rk7DGS
+arrested/A
+arrestee/SM
+arrestment/SM
+arrestor/SM
+arrests/A
+Arreton/M
+arrhythmia/SM
+arrhythmic/OY
+Arriaga/M
+Arriba/M
+Arrington/M
+Arriva/M
+arrival/MS
+arrive/GSDR
+arrivisme/M Noun: uncountable
+arriviste/SM
+Arrochar/M
+arrogance/SM
+arrogancy/SM
+arrogant/Y
+arrogate/DGnS
+Arrokoth/M
+arrondissement/SM
+Arrow/M
+arrow/MGSD
+arrowgrass/SM
+arrowhead/SM
+arrowroot/MS
+Arrowtown/M
+Arroyo/M
+arroyo/MS
+Arscott/M
+arse-licker/SM
+arse-licking/M Noun: uncountable
+arse/SGDM
+arsehole/SMD
+arsenal/SM
+arsenate/MS
+Arsenault/M
+arsenic/SMO
+arsenide/SM
+arsenious Adjective
+arsenopyrite/SM
+arsewipe/SM
+arsey
+arsier
+arsiest
+arsine/MS
+arson/3SM
+arsphenamine/SM
+arsy-versy
+art/6MjZ32pS
+Artaud/M
+Arte/M
+artefact/SM
+artefactual/Y
+Artemis/M
+artemisia/SM
+artemisinin/SM
+arterial/SM
+arterialise/DGSn
+arterialization/S
+arterialize/DGS
+arteriogram/SM
+arteriography/SMW
+arteriolar
+arteriole/SM
+arteriology/M Noun: uncountable
+arterioscleroses
+arteriosclerosis/M
+arteriosclerotic/SM
+arteriovenous
+arteritis
+arterivirus/SM
+artery/MSo
+Artesia/M
+artesian Adjective
+artesunate/SM
+artful/P
+Arth/M
+Arthabaska/M
+Arthashastra/M
+Arthington/M
+Arthingworth/M
+Arthog/M
+arthralgia/SM
+arthritic/SM
+arthritides
+arthritis/M
+arthrogram/MS
+arthroplasty/SM
+arthropod/MS
+Arthropoda Taxonomic phylum
+arthroscope/SWZ
+Arthur/MS
+Arthuret/M
+Arthurian Adjective
+Arthurianism/M Noun: uncountable
+Arthurlie/M
+artichoke/SM
+Articlave/M
+article/MSDG
+articulable/I
+articulacy/I
+articular
+articulate/nPSGyYDV
+articulated/EU
+articulately/I
+articulator/MS
+Artie/M
+artifact/SM
+artifice/oMRS
+artificial/P
+artificiality/SM
+artificialize/SGDJ
+Artigarvan/M
+Artikelly/M
+artillery/3mSM
+Artington/M
+artiodactyl/SM
+Artiodactyla Taxonomic order
+artisan/MSO
+artisanate/SM
+artist/W1y
+artiste/MS
+artistic/IY
+artistry/MS
+artless/YP
+Arturo/M
+artwork/MS
+arty/3TP
+Aruba/M
+Arum Taxonomic genus
+arum/MS
+Arun/M
+Aruna/M
+Arunachal/M
+Arundel/M
+Arvada/M
+Arvan/MS
+Arvin/M
+Aryabhata/M
+Aryan/SM
+Aryeh/M
+aryl/SM
+arytenoid/SM
+Arzoumanian/M
+as
+Asa/M
+asana/SM
+Asante/M
+asap
+Asaph/M
+Asbestos/M
+asbestos/SM
+asbestosis/M
+ASBO/SM
+Asbury/M
+Asby/M
+ascarid/SM
+ascaris
+ascend/RXDGSN
+ascendancy/MS
+ascendant/Y
+ascendency/SM
+ascends/A
+Ascension/M
+ascension/SMO
+Ascensiontide/MS
+ascent/MS
+ascertain/L7SDG
+ascetic/MYS
+asceticism/SM
+Ascham/M
+Ascher/M
+Ascidiacea Taxonomic class
+ascidian/SM
+ASCII/M Initialism of American Standard Code for Information Interchange
+Asclepius/M
+ascocarp/SM
+ascorbate/SM
+ascorbic
+Ascot/M
+Ascote/M
+Ascott-under-Wychwood/M
+ascribable
+ascribe/DGXSV
+ascription/M Noun: usually uncountable
+Asenby/M
+asepsis/M Noun: uncountable
+aseptic/Y
+asexual/YSM
+asexuality/SM
+Asfordby/M
+Asgarby/M
+Asgard/M
+Ash/MS
+ash/SMDGZR
+ashamed/UY
+Ashampstead/M
+Ashanti/M
+Ashbee/M
+Ashbocking/M
+Ashbourne/M
+Ashbrittle/M
+Ashbrook/M
+Ashburnham/M
+Ashburton/M
+Ashbury/M
+Ashby-de-la-Zouch/M
+Ashby/M
+Ashchurch/M
+Ashcombe/M
+Ashcott/M
+Ashcroft/M
+Ashdon/M
+Ashe/M
+Asheboro/M
+Asheldham/M
+Ashen/M
+ashen/Sd
+Ashendon/M
+Asheville/M
+Ashey/M
+ashfall/SM
+Ashfield/M
+Ashford/M
+Ashgabat/M
+Ashgate/M
+Ashgill/M
+Ashhurst/M
+Ashill/M
+Ashingdon/M
+Ashington/M
+Ashkenazi/MW
+Ashkenazim/M
+Ashkhabad/M
+Ashkirk/M
+Ashland/M
+ashlar/dSM
+Ashlee/M
+Ashleigh/SM
+Ashleworth/M
+Ashley-Farrand/M
+Ashley/M
+Ashleyhay/M
+Ashmanhaugh/M
+Ashmansworth/M
+Ashmolean/M
+Ashmore/M
+Ashoka/M
+ashore
+Ashover/M
+Ashow/M
+Ashperton/M
+ashplant/SM
+Ashprington/M
+ashram/SM
+Ashreigney/M
+Ashtabula/M
+ashtanga/SM
+Ashtar/M
+Ashtarian/SM
+Ashtaroth/M
+Ashtead/M
+Ashton-under-Lyne/M
+Ashton/M
+ashtray/SM
+Ashurst/M
+Ashwater/M
+Ashwaubenon/M
+Ashwell/M
+Ashwellthorpe/M
+Ashwick/M
+Ashwicken/M
+Ashworth/M
+ashy/T
+Asia/M
+Asian/SM
+Asiatech/M
+Asiatic/MS
+aside/S
+Asif/M
+asimilar
+Asimov/M
+ASIN/SM
+asinine/Y
+asininity/SM
+Asir
+ask/DRSG
+Askam/M
+askance
+askari/SM
+Aske/M
+Askern/M
+Askerswell/M
+askew/P
+Askham/M
+Askrigg/M
+Askwith/M
+ASL
+Aslackby/M
+Aslacton/M
+aslant
+asleep
+Aslockton/M
+Asmanex/M
+Asmara/M
+asocial/SM
+Asotin/M
+asp/MWS
+Aspal/M
+Aspall/M
+asparagine/M Noun: uncountable
+Asparagus Taxonomic genus
+asparagus/SM
+aspart/M Noun: uncountable
+aspartame/SM
+aspartate/SM
+aspartic Adjective
+Aspatria/M
+aspect/MSGD
+AspectJ/M
+aspectual/Y
+Aspell/M
+aspen/MS
+Aspenden/M
+Asperger/M
+aspergilloses
+aspergillosis/M
+asperity/SM
+asperse/SGDJ
+aspersion/SM
+asphalt/SGDMR
+aspheric/OY
+asphodel/SM
+asphyxia/MSnO
+asphyxiant/SM
+asphyxiate/SDGn
+aspic/MS
+aspidistra/SM
+Aspinall/M
+aspirant/SM
+aspirate/SGDn
+aspirator/SM
+aspire/xSDnGr
+aspirin/SM
+asplenia/M Noun: uncountable
+asplenium/SM
+Aspley/M
+Asprey/M
+Asquith/M
+ass/SM
+Assad/M
+assagai/SM
+assail/7DSG
+assailant/MS
+Assam/M
+Assamese/M
+Assan/M
+assassin/SM
+assassinate/SGDn
+assassinator/MS
+assault/GSVuMvDR
+assay/GDRSM
+assegai/MS
+Asselby/M
+assemblage/SM
+assemblance/SM
+assemble/SGREDY
+assembled/AU
+assembles/A
+assemblies/A
+assembling/A
+assembly's/AE
+assembly/m5SM
+Assembly/MS
+assen
+Assendon/M
+assent/GMSDR
+assentor/SM
+Asser/M
+assert/xvuRSDVG
+asserted/A
+assertion/MAS
+assertive/P
+assertor/MS
+asserts/A
+asses/GD
+assess/7LS
+assessed/A
+assesses/A
+assessor/SM
+asset/SM
+asseverate/SGnD
+asshole/SM
+assibilate/JSNDG
+assibilations
+assiduity/SM
+assiduous/PY
+assign/RL7DSGn
+assigned/KACU
+assignee/MS
+assigning/K
+assignor/SM
+assigns/KCA
+assimilable
+assimilate/DSVGn
+assimilationist/SM
+assimilator/SMZ
+Assington/M
+Assiniboine/M
+Assisi/M
+assist/SGDr
+assistance/MS
+assistant/MS
+assistantship/SM
+assistive Adjective
+Assiter/M
+assize/MSGD
+assn
+associability/SM
+associable
+associate/EDSGn
+associateship/SM
+association's/E
+association/OoM3
+associationism/SM
+associative/Y
+associativity/SM
+associator/MS
+assonance/SM
+assonant Adjective
+assonate/SGD
+assort/GDLSR
+assortative/Y
+asst
+assuage/LDSG
+assume/RVDSBGh
+Assumption/M
+assumption/SM
+assurance/SAM
+assure/GASkD
+assured/PY
+assurer/MS
+Assynt/M
+Assyria/M
+Assyrian/MS
+Assyriology/w3M
+astable
+Astana/M
+astanga/M Type of yoga
+Astara/M
+astatine/SM
+Astbury/M
+aster/FSEM
+Asterby/M
+asterisk/SDGM
+asterism/MS
+Asterleigh/M
+astern
+asteroid/SMO
+Asteroidea Taxonomic class
+Asthall/M
+Asthana/SM
+asthenia/SMW
+asthenosphere/SMW
+asthma/WSM
+asthmatic/SMY
+Asti/M
+astigmatic/SM
+astigmatism/MS
+Astilbe Taxonomic genus
+astilbe/SM
+astir Adjective
+Astley/M
+Aston/M
+astonish/SLkDG
+Astor/M
+Astoria/M
+astound/kGSD
+Astra/M
+astraddle
+Astraeus/M
+astragal/SM
+astragali/M
+Astragalus Taxonomic genus
+astragalus/M
+Astrakhan/M
+astrakhan/SM
+astral/Y
+astray Adverb
+AstraZeneca/M
+Astrid/M
+astride
+Astride/M
+astringency/SM
+astringent/YSM
+astro-archaeology/M
+astrobiology/M3w
+astrobleme/SM
+astrobotany/M Noun: uncountable
+Astrobotic
+astrochemical/Y
+astrochemist/SM
+astrochemistry/M Noun: uncountable
+astrocompass/SM
+astrodome/MS
+astrodynamics
+astroengineering/M Noun: uncountable
+astrogeology/M Noun: uncountable
+astrolabe/SM
+astrologer/MS
+astrology/w1MS3
+astrometry/MW
+astronaut/WwSM
+astronautic/S
+astronomer/SM
+astronomy/1MWSw
+astroparticle/MS
+astrophotographer/SM
+astrophotography/WM
+astrophysical
+astrophysicist/SM
+astrophysics
+astrostatistics/M Noun: uncountable
+astroturfing/M Noun: uncountable
+Astroviridae Taxonomic family
+astrovirus/SM
+Asturian/SM
+Asturias/M
+astute/TPY
+Astwick/M
+Astwood/M
+Asunción/M
+asunder
+ASUS/M
+Aswan/M
+Aswarby/M
+Aswardby/M
+asylee/SM
+asylum/MS
+asymmetry/WwS1M
+asymptomatic/Y
+asymptote/1MSW
+async
+asynchronicity/SM
+asynchronism/SM
+asynchronous/Y
+asynchrony/SM
+asystole/SM
+At
+at/F
+ATA/M Noun: uncountable
+Atacama/M
+Atanasov/M
+ATAPI/M
+ataractic/SM
+ataraxia/WM
+ataraxy/M Noun: uncountable
+Atari/M
+Atascadero/M
+Atascosa/M
+Atatū/M
+Atatu/M
+atavism/MS
+atavist/SMW1
+Atawhai/M
+ataxia/MSW
+atbash/M Noun: uncountable
+ATC/M Noun: uncountable
+Atcham/M
+Atchison/M
+ate/S
+atelectases
+atelectasis/M
+atelier/SM
+atemporal/Y
+atenolol/M Noun: uncountable
+Athabasca/M
+Athaliah/M
+Athan/M
+Athanasian
+Athanasios/M
+Athanasius/M
+Atharva Atharva Veda
+atheism/MS
+atheist/M1SW
+Athelhampton/M
+Atheling/M
+Athelington/M
+Athelstaneford/M
+athematic
+Athena/M
+Athenaeum/M
+Athenaeus/M
+Athenian/SM
+Athens-Clarke/M
+Athens/M
+Atherington/M
+Athernase/M
+atherogenesis/M Noun: uncountable
+atherogenic
+atheroma/M
+atheromata/M
+atheromatous
+atheroscleroses
+atherosclerosis/M
+atherosclerotic/Y
+Atherstone/M
+Atherton/M
+athetoid Adjective
+athetoses
+athetosis/M
+athetotic
+athirst
+athlete/1SMW
+athletic/S
+athleticism/SM
+Athlon/M
+Athlone/M
+Athol/M
+Atholl/M
+athwart
+ATI/M
+atilt
+Atkin/MS
+Atkinson/M
+ATL/M
+Atlanta/M
+Atlantean/SM
+atlantes/M
+Atlantic/M
+Atlantis/M
+Atlas/M
+atlas/MS
+Atlee/M
+Atlow/M
+atm
+ATM/MS
+Atman/M
+atmophile/SM
+Atmore/M
+atmosphere/MS1DW
+atmospheric/SO
+Atoka/M
+atoll/MS
+atom/Qs-98MqS
+atomic/SYO
+atomicity/MS
+atomism/SM
+atomist/SMW
+atompunk/M Noun: uncountable
+Atomus/M
+atomy/MS
+atonal/3
+atonalism/M Noun: usually uncountable
+atonality/SM
+atone/SoLDG
+Atonement/M
+atony/WM
+atop
+atopy/SMW
+atorvastatin/M Noun: uncountable
+atrabilious/YP
+atraumatic
+atrazine/M Noun: uncountable
+atresia/SM
+atria/OM
+atrioventricular
+Atripla/M
+atrium/MS
+atrocious/PY
+atrocity/SM
+atrophy/MDWGS
+atropine/SM
+attaboy/SM
+attach/SDRL7GM
+attaché/SM
+attached/AU
+attaches/A
+attack/RSDG7M
+attain/lDRBGLS
+attainability/MS
+attainable/P
+attainably/U
+attainder/MS
+attained/AU
+attainment/A
+attains/A
+attaint/SGDJ
+Attala/M
+attapulgite/SM
+attar/MS
+attempt/DRGS
+Attenborough/M
+attend/SRGD
+attendance/MS
+attendant/MS
+attendee/SM
+attention/ISM
+attentional/Y
+attentionality
+attentive/PIY
+attentiveness/IS
+attenuate/GnSD
+attenuator/SM
+Atterbury/M
+Atterby/M
+Attercliffe/M
+attest/DnGSRB
+attestor/SM
+attic/MS
+Attica/M
+Atticall/M
+Atticus/M
+Attila/M
+attire/DGS
+Attis/M
+attitude/MS
+attitudinal/Y
+attitudinise/GDSR
+attitudinize/SGDR
+Attleboro/M
+Attleborough/M
+Attlebridge/M
+Attlee/M
+attorney/MS
+attornment/SM
+attosecond/SM
+attract/VuS7DGv
+attractant/SM
+attraction/MS
+attractive/UY
+attractiveness/SM
+attractor/SM
+attributable/U
+attribute/MxGVvDSR
+attribution/SM
+attrition/SMO^
+attune/DSG
+attunement/SM
+Atwater/M
+Atwick/M
+atwitter
+Atwood/M
+Atworth/M
+ATX/M
+atypical/Y
+au
+Au
+aubergine/MS
+Aubourn/M
+aubretia/SM
+Aubrey/M
+aubrietia/SM
+Auburn/M
+auburn/SM
+Auburndale/M
+Auchaber/M
+Auchan/M
+Auchencairn/M
+Auchindoir/M
+Auchinleck/M
+Auchinloch/M
+Auchterarder/M
+Auchterderran/M
+Auchtergaven/M
+Auchterhouse/M
+Auchterless/M
+Auchtermuchty/M
+Auchtertool/M
+Auckland/M
+Auckley/M
+auction/DMGS
+auctioneer/DSMG
+AUD
+audacious/PY
+audacity/SM
+audax/SM
+Auden/M
+Audi/M
+audibility/MIS
+audible/YI
+audibly/I
+audience/SM
+audio/M Noun: usually uncountable
+audioboard/SM
+audiobook/SM
+audiogram/SM
+audiology/S3Mw
+audiometer/SWM
+audiometry/SM
+audiophile/MS
+audiospectrogram/SM
+audiospectrograph/M
+audiospectrometer/M
+audiotape/SGDM
+audiovisual/SY
+audit/dXyMVSN7
+auditability/M Noun: uncountable
+audited/U
+audition/DMG
+auditor/MSO
+auditorium/SM
+Audlem/M
+Audley/M
+Audlin/M
+Audoen/M
+Audra/M
+Audrain/M
+Audrey/M
+Audries/M
+Audubon/M
+Auerbach/M
+Auffermann/M
+Aug
+Augean
+Augeas/M
+auger/MS
+Aughafatten/M
+Augher/M
+Aughnacloy/M
+aught
+Aughton/M
+augite/SM
+Auglaize/M
+augment/nDRGS
+augmentative/SMY
+augmentive/SM
+Augsburg/M
+augur/dMS
+augury/SM
+August/MS
+august/YPT
+Augusta-Richmond/M
+Augusta/M
+Augustan/MS
+Augustin/M
+Augustine/MS
+Augustinian/SM
+Augusto/M
+Augustulus/M
+Augustus/M
+auk/SM
+auklet/SM
+Auld/M
+Auldcathie/M
+Auldearn/M
+Ault/M
+Aultbea/M
+Auman/M
+Aumann/M
+aumbry/MS
+Aunby/M
+Aunsby/M
+aunt/ZSM
+auntie/M
+aunty/MS
+aura/WSMOo
+aurei/M
+Aurelian/M
+Aurélio/M
+Aurelius/M
+aureola/MS
+aureole/MDSG
+aureomycin/M Noun: uncountable
+aureus/M
+auricle/SM
+auricula/SM
+auricular
+auriculate
+auriculotherapy/M Noun: uncountable
+auriferous
+aurify/SGD
+Auriga/M
+aurigation/M Noun: uncountable
+Aurignacian/M
+Auroa/M
+aurocene
+aurochs
+Aurora/M
+aurora/SMO
+aurorae/M
+Auschwitz/M
+auscultate/DGSn
+auscultatory
+Auskerry/M
+auspice/SM
+auspicious/IY
+auspiciousness/MS
+Aussie/MS
+Aust/M
+Austell/M
+Austen/M
+austenite/SMW
+austere/YPT
+Austerfield/M
+austerity/MS
+Austerlitz/M
+Austerson/M
+Austhorpe/M
+Austin/M
+Austintown/M
+Austral
+austral/SM
+Australasia/M
+Australasian/SM
+Australe/M
+australes
+Australia/M
+Australian/SM
+Australianism/SM
+Australis/M
+australite/SM
+australopithecine/SM
+Australopithecus Taxonomic genus
+Australosphenida Taxonomic clade
+australosphenidan/SM
+Austrey/M
+Austria/M
+Austrian/MS
+Austrinus/M
+Austro-Hungarian/SM
+Austronesian
+Austwick/M
+autarchy/WSwM
+autarky/3WSw
+Autauga/M
+autecology/wM
+auteur/SM3
+auteurism/M Noun: uncountable
+auth/SGD
+authentic/nYO
+authenticate/DSG
+authenticated/U
+authenticator/MS
+authenticity/MS
+authigenic
+author/OQs-9d8qSMp
+authorable
+authoress/SM
+authorise/KA
+authorised/AU
+authorises/A
+authorising/A
+authoritarian/SM
+authoritarianism/MS
+authoritative/YP
+authority/SM
+authorization/SM
+authorize/KA
+authorized/AU
+authorizes/A
+authorizing/A
+Authorpe/M
+authorship/MS
+autism/MS
+autistic
+auto-erotic
+auto-eroticism/M
+auto/M
+autoaggressive
+autoallergy/WSM
+autoanalyser/SM
+autoanalyses
+autoanalysis/M
+autoanalyst/SM
+autoantibody/SM
+autoantigen/SM
+autobahn/MS
+autobahnen/M Plural of autobahn
+autobasidia/M
+autobasidiomycete/M
+autobasidium/M
+autobio/SM
+autobiographer/SM
+autobiography/M1SwW
+AutoCAD/M
+autocar/SM
+autocatalysis/M Noun: uncountable
+autocatalyst/SM
+autocatalytic
+autocephalous
+autochange/MR
+autochore/MS
+autochoric/Y
+autochorous
+autochory/M Noun: uncountable
+autochrome/SM
+autochthon/OMSW
+autochthones
+autochthonous/Y
+autoclave/MDSG
+autocode/MS
+autocollimator/SM
+autocomplete/SDN
+autoconfigure/SGDN
+autoconfirm/SGDN
+autocorrect/SDG
+autocorrelate/GSnD
+autocracy/SM
+autocrat/MWS1
+autocrime/SM
+autocrine
+autocross/M Noun: uncountable
+autocue/SM
+autocycle/MS
+autodetect/SGD
+autodetection/M Noun: uncountable
+autodial/DGRSM
+autodidact/SMW
+autodigestion/M Noun: uncountable
+autodiscovery/M Noun: uncountable
+autoecology/M Noun: uncountable
+autoerotic/Y
+autoeroticism/M Noun: usually uncountable
+autofill/M Noun: uncountable
+autofit/SGD
+autofluorescence/M Noun: usually uncountable
+autofocus/dM
+autoformat/SGD
+autogamous
+autogamy/M Noun: uncountable
+autogenesis/M Noun: uncountable
+autogenetic
+autogenic/S
+autogenocide/M Noun: uncountable
+autogenous
+autogeny/M Noun: uncountable
+autogiro/MS
+autograft/SM
+autograph/ZWGMSD
+autogynephilia/M Noun: uncountable
+autogyro/MS
+autoharp/SM
+autohypnosis/M Noun: usually uncountable
+autohypnotic
+autoignition/SM
+autoimmune
+autoimmunity/SM
+autoincrement/SGDM
+autointoxication/M Noun: uncountable
+autokey
+autokinesis/M Noun: uncountable
+autokinesy/M Noun: uncountable
+autokinetic/O
+autoland/SGDM
+autolaryngoscope/SMZ
+autolatry/M Noun: uncountable
+autoload/SGDR
+autologous
+autolysin/SM
+autolysis/M Noun: uncountable
+autolytic
+automagically
+automat/SM
+automata/M
+automate/3D8QWGSn1
+automatic/SM
+automaticity/SM
+automatisation/SM
+automatism/SM
+automatization/SM
+automaton/SM
+automatonism/SM
+automatous
+autometamorphism/M
+autometry/WSM
+automixis/M Noun: uncountable
+automorphism/SM
+automotive/SM
+autonomic/S
+autonomous/Y
+autonomy/SMW3
+autonym/SM
+autopathography/SM
+autopathy/M Noun: uncountable
+autopatrol/D
+autopen/SM
+autophagosome/SMO
+autophagous
+autophagy/WM
+autophon/SM
+autophone/SM
+autophotograph/SM
+autopilot/MSd
+autopisty/M Noun: uncountable
+autoplasty/WSM
+autoplay/SGDM
+autopoiesis/M Noun: uncountable
+autopsy/SMDG
+autoradiograph/ZWDSM
+autoreactive
+autorecover/Z
+autoregression/SM
+autoregressive
+autoregulate/SGDNy
+autorenew/SGD
+autorenewal/SM
+autorepeat/GSM
+autoresponder/SM
+autoreverse/M Noun: uncountable
+autorickshaw/SM
+autorotate/SGDn
+autorotative
+autoroute/SM
+autosampler/SM
+autosave/SGD
+autoscopy/SM
+autoshaping/M Noun: uncountable
+autosome/SMO
+autostereoscopy/WM
+autosuggestibility/M Noun: uncountable
+autosuggestible
+autosuggestion/SM3
+autosuggestive
+autoswitch/SGDM
+autotelic/SM
+autotest/SM
+autotoxic
+autotoxin/SM
+autotransformer/MS
+autotransfuse/SGDN
+autotransplant/NDSM
+autotroph/SMW1Z
+autotropism/M Noun: uncountable
+autotune/SGDMR
+autotype/SMWZ
+autowind/SGR
+autowound
+autoxidation/M Noun: usually uncountable
+autoxidise/SGD
+autoxidize/SGDN
+autozooid/SMO
+autozoom/M Noun: uncountable
+autumn/MoOS
+autunite/SM
+Auvergne/M
+Aux/M
+auxiliary/SM
+auxin/MS
+auxotroph/SMW
+AV
+Ava/M
+avail/BlSDG
+availability/S
+availability/UM
+available/P
+avalanche/GSMD
+Avalokiteshvara/M
+Avalon/M
+avant
+avant-garde/SM3
+avant-gardism/M Noun: uncountable
+avarice/MS
+avaricious/YP
+Avarua/M
+avast/S
+Avastin/M
+avatar/SM
+avaunt/SM
+AVCHD/M
+ave/SM
+Avebury/M
+Aveiro/M
+Aveley/M
+Avenal/M
+Avenbury/M
+Avendale/M
+avenge/DGRS
+Avening/M
+avens/M
+Aventura/M
+avenue/SM
+aver/SGD
+average/GMDSY
+averageness/M Noun: uncountable
+Averham/M
+averment/SM
+Avernus/M
+averse/PVY
+aversion/SM
+avert/GbSD
+Avery/M
+Aves/M
+Avesta/M
+Avestan/M
+Avestic/MS
+Aveton/M
+avgas/M
+AVI/M
+avian/SM
+aviary/SM
+aviate/SDGn
+aviator/MS
+aviatrices
+aviatrix/SM
+avicularia/M
+avicularium/M
+avicultural/3
+aviculture/M3
+avid/Y
+avidity/MS
+avidness/M Noun: uncountable
+Aviemore/M
+avifauna/MO
+Avignon/M
+Avington/M
+avionic/S
+Aviram/M
+Avis/M
+Avise/M
+avitaminoses
+avitaminosis/M
+Aviv/M
+Aviva/M
+avocado/MS
+avocation/MOoS
+avocet/SM
+Avoch/M
+Avodart/M
+Avogadro/M
+avoid/RSDGl7
+avoidance/MS
+avoidant/SM
+avoirdupois/M
+avoision/M Noun: uncountable
+Avon/M
+Avonbridge/M
+Avondale/M
+Avonex/M
+Avonhead/M
+Avonmouth/M
+Avonside/M
+avoparcin/M Noun: uncountable
+avouch/DSGM
+avouchment/MS
+avow/GSED
+avowal/SEM
+avowed/Y
+avower/SM
+Avoyelles/M
+Avram/M
+Avril/M
+avulse/SGDN
+avuncular
+avunculate/SM
+AWACS/M Initialism of airborne warning and control system
+await/SDG
+awake/SG
+awaken/dJSr
+awakened/AU
+awakens/A
+Awamutu/M
+Awanga/M
+Awanui/M
+Awapuni/M
+award-winning
+award/DRGSM
+awardee/SM
+aware/P
+awash
+Awatoto/M
+away
+awayday/SM
+awayness/M Noun: uncountable
+Awbridge/M
+awe-inspiring/Y
+awe/SMDG
+aweigh
+awesome/YP
+awestricken
+awestruck
+awful/TPY
+awhile
+awk/S
+awkward/YPT
+awl/SM
+Awliscombe/M
+awn/SMDJG
+awning/MD
+awoke
+awoken
+AWOL
+Awre/M
+awry/T
+Awsworth/M
+Axbridge/M
+axe/DmMGS
+Axe/M
+axehead/SM
+Axel/M
+axel/SM
+Axelrad/M
+Axelrod/M
+Axford/M
+axial/FY
+axil/SM
+axilla/M
+axillae/M
+axillary/SM
+axinite/SM
+axiology/SM1w
+axiom/SWM1
+axiomatise/SGDN
+axiomatize/SGDN
+Axis/M
+axis/M
+axisymmetric
+axle/SM
+Axminster/MS
+Axmouth/M
+axolotl/MS
+axon/MSO^
+axoneme/SO^
+axonometric
+axoplasm/SMW
+Axtell/M
+ayah/SM
+ayahuasca/M Noun: uncountable
+ayatollah/SM
+Ayckbourn/M
+Aycliffe/M
+Aydin/M
+aye/MS
+Ayer/MS
+Aylburton/M
+Aylesbeare/M
+Aylesbury/M
+Aylesburys
+Aylesby/M
+Aylesford/M
+Aylesham/M
+Aylestone/M
+Aylett/M
+Aylmer/M
+Aylmerton/M
+Aylsham/M
+Aylton/M
+Aylward/M
+Aymara/SM
+Aymestrey/M
+Aynho/M
+Aynhoe/M
+Aynsley/M
+Ayot/M
+Ayr/M
+Ayrshire/MS
+Aysgarth/M
+Ayston/M
+Aythorpe/M
+Ayton/M
+Ayurveda/MW
+Azad/M
+Azadi/M
+azalea/MS
+Azam/M
+Azania/M
+Azanian/SM
+Azar/M
+azarole/SM
+Azazel/M
+azeotrope/SMW
+Azerbaijan/M
+Azerbaijani/SM
+Azeri/M
+Azerley/M
+AZERTY
+azidothymidine/M Noun: usually uncountable
+Azikiwe/M
+Azilian
+azimuth/SMOo
+azithromycin/SM
+Aziz/M
+Azizur/M
+Azle/M
+Azor/M
+Azores/M
+Azov/M
+Azrael/M
+AZT/M Abbreviation of azidothymidine
+Aztec/SM
+Aztecan/SM
+Aztlan
+azulejo/SM
+azure/SM
+azurite/SM
+Azusa/M
+azygos/M
+b'day/M
+B-film/SM
+B-movie/SM
+b.c.c.
+B.Sc.
+b/pb
+B1
+B12
+B2
+BA
+ba
+Ba
+Ba'al/M
+Ba'ath/M3
+baa/GSD
+Baal/M
+Baalbek/M
+Baars/M
+Baasha/M
+Baath/M3
+Baathism/M Noun: uncountable
+Baba
+baba/SM
+babacoote/MS
+Babbage/M
+Babbitry/M
+Babbitt/M
+babble/JRGDSM
+Babcary/M
+Babcock/M
+babe/SZM
+Babel/M
+babel/SM
+Babergh/M
+babesiases
+babesiasis/M
+babesioses
+babesiosis/M
+Babette/M
+Babi/MS
+Babingley/M
+Babington/M
+Babism/M Noun: uncountable
+Babist/MS
+baboon/MS~
+baboonery/SM
+babouche/SM
+Babraham/M
+Babs/M
+babushka/MS
+Babworth/M
+baby-doll
+baby-faced
+baby/DTMSG
+babyccino/SM
+babycino/SM
+babyfather/SM
+Babygro/SM
+babyhood/MS
+babyish/YP
+Babylon/M
+Babylonia/M
+Babylonian/MS
+babymoon/SM
+babymother/SM
+babysat
+babysit/RSG
+baccalaureate/SM
+baccarat/MS
+bacchanal/SM
+Bacchanalia/M
+bacchanalia/SM
+Bacchanalian/SM
+bacchanalian/SM
+bacchante/SM
+Bacchus/MW
+baccy/M Noun: usually uncountable
+bach/DGMS
+Bach/M
+Bachallaeth/M
+Bacharach/M
+Bache/M
+Bachelet/M
+Bachelor
+bachelor/MS
+bachelorette/SM
+bachelorhood/SM
+Bachet/M
+Bachman/M
+Bachmann/M
+bacillary
+bacilli/M
+bacilliform/SM
+bacillus/MS
+back-door
+back-pedal/SGD
+back-to-back
+back/DSrp
+back/eM
+backache/MS
+backarrow
+backbeat/SM
+backbench/SMR
+backbend/SM
+backbite/GRSM
+backblocks
+backboard/SM
+backbone/MS
+backbreaking
+backcast/SG
+backchaining
+backchannel/SM
+backchat/SM
+Backchurch/M
+backcloth/SM
+backcomb/SGDM
+backcourt/SM
+backcrawl/M Noun: uncountable
+backcross/SDGM
+backdate/DSGM
+backdoor/SGDM
+backdraught/SM
+backdrop/DSMG
+backfield/MS
+backfill/SGD
+backfire/GDSM
+backflip/SM
+backflow/SM
+Backford/M
+backgammon/MS
+background/DRGSM
+backhand/hRMSGD
+backhoe/SM
+backing/SM
+backlash/SDGMr
+backlift/SM
+backlight/SDGM
+backline/SM
+backlink/SM
+backlist/SGDM
+backlit
+backload/SGDM
+backlog/DGMS
+backlot/SM
+backmarker/SM
+backmost
+backne/M Noun: uncountable
+backorder/SM
+backpack/SRDGM
+backplane/MS
+backplate/MS
+backport/SGDM
+backrest/SM
+backronym/SM
+backroom/SM
+backscatter/dMS
+backscratcher/SM
+backscroll/M Noun: uncountable
+backseat/SM
+backshift/SM
+backside/MS
+backsight/SM
+backslapper/SM
+backslapping/SM
+backslash/GSDM
+backslid/r
+backslide/GSM
+backspace/DGSM
+backspin/SM
+backstab/SGDR
+backstabbing/SM
+backstage/SM
+backstairs
+backstamp/SM
+backstay/SM
+backstitch/MSGD
+backstop/MSGD
+backstory/SM
+backstreet/MS
+backstretch/MS
+backstroke/DGMSr
+backswing/SM
+backsword/SM
+backtalk/SM
+backtick/SM
+backtrace/SMGD
+backtrack/RGSD
+backup/MS
+Backus/M
+backveld/SM
+backward-compatible
+backward/PSY
+backwards-compatible
+backwash/DGMS
+backwater/MS
+Backwell/M
+backwind/SMGD
+backwood/mS
+backyard/SM
+baclofen/M Noun: uncountable
+bacne/SM
+Bacon/M
+bacon/SMr
+Baconian/SM
+Baconsthorpe/M
+bacronym/SM
+bacteraemia/SMW
+bacteria/MOo
+bactericide/MSO
+bacteriocin/SM
+bacteriology/MwW3S1
+bacteriolysis/M
+bacteriolytic
+bacteriophage/SM
+bacteriophobia/M Noun: uncountable
+bacteriophora
+bacterioplankton/SMW
+bacteriostasis/M
+bacteriostat/SM
+bacteriostatic/Y
+bacterium/M
+bacteriuria/M Noun: usually uncountable
+bacteroid/SM
+Bacton/M
+Bactria/M
+Bactrian/SM
+bacula/M
+baculovirus/SM
+baculum/M
+Bacup/M
+bad-tempered
+bad/Y
+badass/SM
+Badby/M
+Badcaul/M
+Baddesley/M
+baddie/MS
+Baddiley/M
+Baddington/M
+baddish
+Baddow/M
+baddy/SM
+bade
+Baden/M
+Bader/M
+badge/SRGMD
+badger-baiting
+badger/d
+Badger/M
+Badgeworth/M
+Badgworth/M
+badinage/SDMG
+Badingham/M
+badland/SM
+Badlesmere/M
+Badley/M
+badman/M
+badmash/SM
+badmen/M
+Badminton/M
+badminton/M Noun: uncountable
+badmouth/DGS
+badness/SM
+Badoglio/M
+Badoo/M
+Badsey/M
+Badsworth/M
+badware/M Noun: uncountable
+Badwell/M
+BAE
+BAe/M Initialism of British Aerospace
+Baedeker/MS
+Baez/M
+Baffin/M
+baffle/RDLGkSM
+Bag/M
+bag/SGM6RzZ2D
+bagarre/SM
+bagatelle/SM
+Bagborough/M
+Bagby/M
+Bagehot/M
+bagel/SM
+Bagendon/M
+bagful/SM
+baggage/mSM
+bagging/M
+baggy/TSM
+baggywrinkle/SM
+Bagh/M
+Baghdad/M
+baghouse/SM
+Bagillt/M
+Baginton/M
+Baglan/M
+bagman/M
+bagmen/M
+Bagnall/M
+bagnio/MS
+Bagot/M
+Bagpath/M
+bagpipe/MRS
+Bagpuize/M
+Bagthorpe/M
+baguette/MS
+bagwash/M Noun: uncountable
+bagworm/SM
+Bagworth/M
+bah/SM
+Baha'i/SM
+Baha'ism/M
+Bahadur
+Bahai/SM
+Bahamas/M
+Bahamian/SM
+Bahnson/M
+Bahrain/M
+baht/M
+Baidu/M
+Baie-Comeau/M
+Baie-D'Urfé/M
+Baie-Saint-Paul/M
+Baikal/M
+bail/7MDGr
+Bail/M
+Baildon/M
+bailee/MS
+Bailey/M
+bailey/SM
+Bailgate/M
+bailiff/MS
+bailiwick/SM
+Baillieston/M
+bailment/SM
+bailor/SM
+bailout/MS
+bails/m
+bain-marie/SM
+Bain/M
+Bainbridge/M
+Bainsford/M
+Bainton/M
+Bairam/MS
+Baird/M
+Bairiki/M
+bairn/SM
+Bairnsdale/M
+bait/SMGDr
+baitcaster/SM
+baitcasting/M Noun: uncountable
+baitfish/SM
+baize/SM
+Baja/M
+bajada/SM
+Bajan/SM
+bake/RGSDyM
+bakehouse/SM
+Bakelite/M
+Baker/M
+Bakersfield/M
+bakery/MS
+bakeware/M Noun: usually uncountable
+Bakewell/M
+Bakhshali/M
+baking/M
+Bakker/M
+baklava/SM
+Bakley/M
+baksheesh/MS
+Baku/M
+Bakula/M
+Bala/M
+Balaam/M
+Balaban/M
+Balaclava/M
+balaclava/MS
+Balaj/M
+balalaika/MS
+balance/DMIS
+balanced/cAe
+balancedness
+balancer/SM
+balances/cAe
+Balanchine/M
+balancing/Ace
+balanitis/M Noun: uncountable
+balata/SM
+balboa/MS
+Balch/M
+Balclutha/M
+Balcombe-Horley/M
+Balcombe/M
+balcony/DSM
+bald/PGYTDZSM
+Balda/M
+baldachin/SM
+baldaquin/SM
+balder/W
+balderdash/SM
+Baldernock/M
+Baldersby/M
+Balderstone/M
+Balderton/M
+baldhead/SM
+baldie/SM
+Baldinger/M
+baldmoney/M Noun: uncountable
+Baldock/MS
+Baldon/M
+baldpate/SM
+baldric/SM
+Baldry/M
+Baldwin/M
+Bale/M
+bale/R6GjSMD
+Balearic/M
+baleen/SM
+baleful/TP
+Balerno/M
+Baleshare/M
+Balestrero/M
+Balfour/M
+Balfron/M
+Balgay/M
+Balgonie/M
+Balgown/M
+Balharry/M
+Bali/M
+balibuntal/SM
+Balihar/M
+Balinese/M
+Balintore/M
+Balivanich/M
+Baljaffray/M
+balk/SGDM
+Balkan/SM
+balkanise/GSnD
+balkanize/GSnD
+Balkanize/SGDJ
+ball-breaker/SM
+ball-breaking
+ball-buster/SM
+ball/DRGSM
+Ball/M
+Balla/M
+Ballachulish/M
+ballad/MyS
+ballade/MS
+balladeer/MS
+balladry/SM
+Ballagh/M
+Ballance/M
+Ballantine/M
+Ballantrae/M
+Ballarat/M
+Ballard/M
+ballast/SMGDp
+Ballater/M
+Ballaugh/M
+ballboy/SM
+ballcock/SM
+Ballela/M
+Ballencrieff/M
+Ballerin/M
+ballerina/MS
+ballet/MWS
+ballfield/SM
+ballgame/SM
+ballgirl/SM
+ballgown/SM
+Ballidon/M
+Ballieston/M
+Ballina/M
+Ballinamallard/M
+Ballinderry/M
+Ballingdon/M
+Ballingham/M
+Ballingry/M
+Ballintoy/M
+Balliol/M
+ballista/SM
+ballistae/M
+ballistic/SY
+Ballmer/M
+Balloch/M
+Balloo/M
+balloon/GDMSR36
+balloonfish/SM
+ballot/dMSr
+ballotine/SM
+ballpark/MS
+ballplayer/SM
+ballpoint/MS
+ballroom/SM
+balls/Z
+ballsy/T
+Ballwin/M
+Ballybogy/M
+Ballycarry/M
+Ballycassidy/M
+Ballycastle/M
+Ballyclare/M
+Ballyeaston/M
+Ballyfin/M
+Ballygalley/M
+Ballygawley/M
+Ballygowan/M
+Ballygrant/M
+Ballyhalbert/M
+ballyhoo/MDGS
+Ballyhornan/M
+Ballykelly/M
+Ballykinler/M
+Ballylesson/M
+Ballylinney/M
+Ballymacmaine/M
+Ballymacnab/M
+Ballymagorry/M
+Ballymaguigan/M
+Ballymartin/M
+Ballymena/M
+Ballymoney/M
+Ballynahinch/M
+Ballynure/M
+Ballyrashane/M
+Ballyrobert/M
+Ballyronan/M
+Ballyrory/M
+Ballyscullion/M
+Ballyskeagh/M
+Ballystrudder/M
+Ballyvoy/M
+Ballywalter/M
+balm/M2ZS
+Balmaclellan/M
+Balmaghie/M
+Balmedie/M
+Balmerino/M
+Balmoral/M
+balmoral/SM
+Balmullo/M
+balmy/T
+Balnamore/M
+Balne/M
+balneology/3wSM
+balneotherapy/M Noun: usually uncountable
+Balog/M
+baloney/SM
+Balornock/M
+Balquhidder/M
+Balrog/M
+balsa/SM
+Balsall/M
+balsam/dMS
+balsamic
+Balscote/M
+Balshagray/M
+Balsham/M
+Balshaw/M
+Baltazar/M
+Balterley/M
+balti/SM
+Baltic/M
+Baltimore/M
+Baltistan/M
+Baltonsborough/M
+Baluchistan/M
+balun/SM
+baluster/MS
+balustrade/MSD
+Balzac/M
+Balzarotti/M
+Bamako/M
+Bamber/M
+Bamberg/M
+Bambi/M
+bamboo/SM
+bamboozle/GDS
+Bamburgh/M
+Bamford/M
+Bampfylde/M
+Bampton/M
+ban/SoRMDG
+Banach/M
+Banagher/M
+banality/SM
+banana/MS
+bananaquit/SM
+banausic
+Banbridge/M
+Banbury/M
+bancassurance/M Noun: uncountable
+bancassurer/SM
+Banchory-Devenick/M
+Banchory-Ternan/M
+Banchory/M
+Bancroft/M
+band/rMZmDGS
+Banda/M
+bandage/SDMGr
+bandana/SM
+bandanna/SM
+Bandar/M
+bandbox/SM
+bandeau/M
+bandeaux/M
+Bandera/M
+bandfish/SM
+bandgap/SM
+bandicoot/SM
+banding/SM
+bandit/MS
+banditry/SM
+banditti/M
+bandleader/SM
+bandmaster/MS
+bandmate/SM
+bandoleer/SM
+bandolero/SM
+bandolier/SM
+bandoneon/SM
+bandpass/SM
+bandstand/SM
+bandstop
+Bandung/M
+bandwagon/SM
+bandwidth/SM
+bandy-bandy/M
+bandy-bandys
+bandy-legged
+bandy/DTSGM
+Bandyopadhyay/M
+bane/OSM6j
+baneful/T
+Banff/M
+Banffshire/M
+Banfield/M
+bang/RMDGS
+Bangala/M
+Bangalore/M
+Bangkok/M
+Bangladesh/M
+Bangladeshi/M
+bangle/SM
+Bangor/M
+Bangour/M
+Bangui/M
+Banhaglog/M
+Banham/M
+banish/GSLDr
+banister/SM
+banjo/SM
+banjoist/MS
+Banjul/M
+Bank/M
+bank/S7RGJMD
+bankassurance/M Noun: uncountable
+bankbook/MS
+bankcard/SM
+Bankfoot/M
+Banknock-Haggs/M
+Banknock/M
+banknote/SM
+bankroll/GSDM
+bankrupt/GSDM
+bankruptcy/SM
+Banks/M
+Banksia Taxonomic genus
+banksia/SM
+bankside/SM
+Bannatyne/M
+banner/d
+banneret/SM
+Bannerman/M
+Bannfoot/M
+Banning/M
+Banningham/M
+Bannister/M
+bannister/SM
+Bannock/M
+bannock/MS
+Bannockburn/M
+Bannon/M
+banns
+Banos/M
+banquet/rdSM
+banquette/MS
+banshee/SM
+Banstead/M
+bantam/SM
+bantamweight/MS
+banter/kdSr
+Banton/M
+Bantu/M
+Bantustan/MS
+Banwell/M
+Banwy/M
+banyan/SM
+banzai/SM
+baobab/MS
+BaOmer/M
+bap/SM
+Bapchild/M
+Baphomet/M
+baphometic
+baptise/DRSG
+baptism/OoSM
+Baptist/MS
+baptist/SM
+Baptista/M
+Baptiste/M
+baptistery/SM
+baptistry/SM
+baptize/SGD
+bar-room/MS
+bar/CDESUG
+Bar/M
+bar/M
+Bara/M
+Barabbas/M
+Baraboo/M
+Barack/M
+Barash/M
+barb/SRGMDi
+Barbadian/SM
+Barbados/M
+Barbara/M
+barbarian/SM
+barbarianism/MS
+barbaric/Y
+barbarise/GDS
+barbarism/SM
+barbarity/MS
+barbarize/DSG
+barbarous/YP
+Barbary/M
+barbecue/DSMGr
+barbedwire/MS
+barbel/SM
+barbell/MS
+barber/dy
+barberry/SM
+barbershop/SM
+Barberton/M
+barbet/SM
+Barbette/M
+barbette/SM
+barbican/SM
+Barbie/SM
+barbital/SM
+barbiturate/SM
+barbituric
+Barbizon Barbizon School
+Barbon/M
+Barbour/M
+Barbuda/M
+barbule/SM
+Barby/M
+BarcaLounger/SM
+barcarole/SM
+barcarolle/SM
+Barcelona/M
+Barceloneta/M
+barchan/SM
+Barcheston/M
+Barclay/M
+Barclaycard/MS
+Barclays/M
+barcode/SGDM
+Barcombe/M
+Bard/M
+bard/MSDGW
+bardash/SM
+Barden/M
+Bardfield/M
+Bardi/M
+Bardney/M
+bardolater/SM
+bardolator/SM
+bardolatry/SM
+Bardolph/M
+Bardon/M
+Bardot/M
+Bardrainney/M
+Bardsey/M
+Bardstown/M
+Bardwell/M
+bardy/SM
+bare/YPDTSG
+bareback/GR
+bareboat/G
+barefaced/YP
+barefoot/D
+barehanded
+bareheaded
+Bareilly/M
+Bareket/M
+barelegged
+Barends/M
+Barents/M
+barf/SYGDM
+barfly/SM
+Barford/M
+Barfreystone/M
+bargain-basement
+bargain/DGRSM
+barge/DmMSZG
+Bargeddie/M
+bargee/SM
+bargepole/SM
+Bargoed/M
+bargy/DS
+Barham/M
+Barholm/M
+Barholme/M
+barhop/GSD
+Bari/M
+bariatric/S
+bariocene
+barite/SM
+baritone/MS
+barium/M
+bark/GRDMS
+Barkan/M
+Barkby/M
+barkeep/RSM
+Barkestone/M
+Barkham/M
+Barking/M
+Barkley/M
+Barkmere/M
+Barkston/M
+Barkway/M
+Barkwith/M
+Barlanark/M
+Barlaston/M
+Barlavington/M
+Barlborough/M
+Barlby/M
+Barlestone/M
+Barley/M
+barley/MS
+barleycorn/SM
+Barleythorpe/M
+Barling/MS
+Barlow/M
+barmaid/SM
+barman/M
+barmbrack/SM
+Barmby/M
+Barmecide/S
+barmen/M
+Barmer/M
+Barming/M
+Barmouth/M
+Barmpton/M
+Barmston/M
+Barmulloch/M
+barmy/PYRT
+Barn/M
+barn/MDS6G
+Barnabas/M
+Barnabus/M
+Barnack/M
+barnacle/DMS
+Barnacle/M
+Barnacre-with-Bonds/M
+Barnard/M
+Barnardiston/M
+Barnaviridae Taxonomic family
+Barnbrough/M
+Barnburgh/M
+Barnby/M
+Barnegat/M
+Barnes/M
+Barnet/M
+Barnetby/M
+Barnett/M
+Barnette/M
+Barney/M
+barney/SM
+Barnham/M
+Barnhill/M
+Barningham/M
+Barnoldby/M
+Barnoldswick/M
+barns/6
+Barnsley/M
+Barnstable/M
+Barnstaple/M
+Barnston/M
+Barnstone/M
+barnstorm/GRDS
+Barnt/M
+Barnton/M
+Barnum/M
+Barnwell/M
+Barnwood/M
+barnyard/SM
+barocene
+barochore/MS
+barochoric/Y
+barochorous
+barochory/M Noun: uncountable
+Baroda/M
+barograph/SM
+barometer/W1SMw
+barometry/M Noun: usually uncountable
+Baron/M
+baron/MS
+baronage/MS
+Barone/M
+baroness/SM
+baronet/SM
+baronetcy/SM
+Barony/M
+barony/MSO
+baroque/SYMP
+barotrauma/SM
+barotropic
+barouche/SM
+barque/MS
+Barr/M
+Barra/M
+barrack/SGDr
+barracouta/SM
+barracuda/SM
+barracudina/SM
+Barradell/M
+barrage/SMDG
+barramundi/SM
+Barranquilla/M
+barrator/SM
+barratrous
+barratry/SM
+Barratt/M
+barre/SMJ
+barrel-bombing/M
+barrel-chested
+barrel-roofed
+barrel-vaulted
+barrel/GMDS6
+barrelfish/SM
+barrelhead/SM
+Barrell/M
+Barren/M
+barren/PY
+barrenwort/SM
+Barreto/M
+Barrett/M
+barrette/MS
+Barrhead/M
+Barrhill/M
+Barri/M
+barricade/GDSM
+Barrichello/M
+Barrie/M
+Barrientos/M
+barrier/MS
+Barrington/M
+barrio/MS
+barrique/SM
+barrister-at-law/M
+barrister/MS
+Barron/M
+Barros/M
+Barroso/M
+Barrow-in-Furness/M
+Barrow/M
+barrow/SM
+Barrowby/M
+Barrowclough/M
+Barrowden/M
+Barrowford/M
+Barrowman/M
+Barry/M
+Barrymore/M
+Barrytown/M
+Barsac/M
+Barsbold/M
+Barsham/M
+Barsky/M
+Barsotti/M
+Barston/M
+barstool/SM
+Barstow/M
+Bart/MS
+bartend/SGDr
+barter/rdSM
+Bartestree/M
+Barth/M
+Barthélemy/M
+Barthes/M
+Barthol/M
+Bartholemew/M
+Bartholin/M
+bartholinitis/M Noun: uncountable
+Bartholomay/M
+Bartholomew/M
+Barthomley/M
+Bartlesville/M
+Bartlett/M
+Bartley/M
+Bartlow/M
+Bartók/M
+Barton-le-Clay/M
+Barton-le-Cley/M
+Barton-le-Street/M
+Barton-le-Willows/M
+Barton-under-Needwood/M
+Barton-upon-Humber/M
+Barton/M
+Bartow/M
+Barty/M
+Baruch/M
+Barugh/M
+Barvas/M
+Barway/M
+Barwell/M
+Barwick/M
+barwing/SM
+Barwood/M
+barycentre/SMW
+baryon/MS
+baryonia/W
+baryonium/SM
+barysphere/MSW
+Barzillai/M
+Barzman/M
+bas-relief/SM
+Bas-Saint-Laurent/M
+bas/Sd1Oo
+Basaleg/M
+Basalla/M
+basalmost
+basalt/WSM
+Baschenis/M
+Baschurch/M
+base/DmYPpLMT
+baseball/SM
+baseband/SM
+baseboard/MS
+baseborn
+Basel/M
+baselessly
+baselessness/M Noun: uncountable
+baseline/SM
+baseload/SM
+baseplate/SM
+baser
+baserunner/SM
+basetting
+Basford/M
+bash/SMj6DGr
+Bashall/M
+Bashar/M
+bashful/P
+bashism/SM
+Bashkir/M
+Bashkiria/M
+bashment/SM
+Basic/M
+BASIC/M
+basic/SM
+basicity/SM
+basidia/M
+basidiocarp/SM
+Basidiomycota Taxonomic phylum
+basidium/M
+basify/SGD
+basil/SM
+basilar
+Basildon/M
+basilect/MSO
+basilica/SM
+basilican
+basilisk/SM
+basilosaurus/SM
+Basin-Sanctuary/M
+basin/6MSO
+basined
+basinful/SM
+basing/C
+Basing/M
+Basingstoke/M
+basioccipital/SM
+basipetal/Y
+basis/M
+bask/GSD
+Baskerville/M
+basket/6SMy
+basketball/MS
+basketmaker/SM
+basketmaking/M Noun: uncountable
+basketry/SM
+basketwork/SM
+Basle/M
+Baslow/M
+basmati/SM
+basophil/SMW
+basophilia/SM
+Basotho/M
+Basque/MS
+Basra/M
+bass/S3M
+Basse-Terre/M
+Bassenthwaite/M
+basset/MS
+Basseterre/M
+Bassetlaw/M
+Bassett/M
+Bassey/M
+bassinet/MS
+Bassingbourn-cum-Kneesworth/M
+Bassingbourn/M
+Bassingham/M
+Bassingthorpe/M
+Bassishaw/M
+bassline/SM
+basso/S3M
+bassoon/3MS
+Bassus/M
+basswood/SM
+bassy/T
+bast/DRGM
+bastard/Q8q-MSYZ
+bastardy/SM
+baste/nSGD
+Basten/M
+Basterfield/M
+Bastien/M
+Bastille/M
+Bastin/M
+basting/SM
+bastion/SMD
+Bastogne/M
+Baston/M
+Bastrop/M
+Bastwick/M
+Basu/M
+bat/D
+bat/FdMS
+Bataan/M
+Batavia/M
+Batavian/SM
+batboy/SM
+batch/DSGMr
+Batchworth/M
+Batcombe/M
+bate/CDASG
+bateau/M
+bateaux/M
+Bateman/MS
+bater/C
+Bates/M
+Batesian
+Batesville/M
+batfish/SM
+Bath/M
+bath/SRGMD
+Bathampton/M
+Bathans/M
+bathe/SGDM
+Bathealton/M
+Batheaston/M
+Batherton/M
+bathetic
+Bathford/M
+Bathgate/M
+bathhouse/MS
+Bathley/M
+bathmat/SM
+Bathonian/SM
+bathos/MS
+bathrobe/MS
+bathroom/DMS
+Bathsheba/M
+bathtub/SM
+Bathurst/M
+bathwater/SM
+Bathwick/M
+bathyal
+bathymeter/SMW
+bathymetry/SM
+bathypelagic
+bathyscaphe/SM
+bathysphere/MS
+batik/SM
+Batista/M
+batiste/SM
+Batley/M
+batman/M
+batmen/M
+Baton/M
+baton/SM
+Bator/M
+Batrachia
+batrachian/SM
+bats/m
+Batsford/M
+batsmanship/M Noun: uncountable
+battalion/MS
+batten/MdS
+batter/dZMSr
+Battersea/M
+Battery/M
+battery/MS
+Battilana/M
+Battin/M
+batting/SM
+Battisford/M
+Battle/M
+battle/RDLMSG
+battleaxe/SM
+battlebus/SM
+battlecruiser/SM
+battledore/SM
+battledress/SM
+Battlefield/M
+battlefield/MS
+Battleflat/M
+Battleford/M
+battlefront/MS
+battleground/SM
+battleline/SM
+battlement/DSM
+Battlesden/M
+battleship/SM
+battlespace/SM
+battue/SM
+batty/TSM
+batwing/SM
+batwoman/M
+batwomen/M
+bauble/MS
+baud/SM
+Baudelaire/M
+Baudot/M
+Baudrillard/M
+Bauer/M
+Baughurst/M
+Bauhaus/M
+baulk/GZSMD2r
+baulky/T
+Baumber/M
+Baunton/M
+Baur/M
+Bausch/M
+Bausley/M
+bauxite/SMW
+Bavant/M
+Bavaria/M
+Bavarian/SM
+Baveants/M
+Bavents/M
+Baverstock/M
+bawbee/SM
+Bawburgh/M
+bawd/2ZSMz
+Bawdeswell/M
+Bawdrip/M
+Bawdsey/M
+bawdy/T
+bawl/DGSrM
+Bawsey/M
+Bawtry/M
+Baxter/M
+Baxterley/M
+bay/GMDS
+Bay/M
+Bayamón/M
+Bayard/M
+bayberry/MS
+Baydon/M
+Bayer/M
+Bayern/M
+Bayes/M
+Bayesian/SM
+Bayesianism/M Noun: uncountable
+Bayfield/M
+Bayford/M
+Baykal/M
+Baylham/M
+Baylin/M
+Baylor/M
+Baynard/M
+bayonet/dMS
+Bayonne/M
+bayou/SM
+Bayreuth/M
+Bayros/M
+bayside
+Bayston/M
+Bayswater/M
+Bayton/M
+Baytown/M
+Bayview/M
+Bayvill/M
+bazaar/MS
+Bazargan/M
+bazillion/SM
+bazooka/SM
+BBC/M
+bbl
+BBQ
+BBS/M
+BBSes
+bc
+BC
+bcc
+BCD/SM
+BCE
+BCG/SM
+BD-R/SM
+BD-RE/SM
+BD-ROM/SM
+BD-XL/M
+bdellium/SM
+Bdr
+bdrm
+BDSM
+BDXL
+be/SY
+Bea/M
+beach/GSDM
+Beach/M
+Beachampton/M
+Beachamwell/M
+beachcomber/SM
+Beachcroft/M
+Beaches/M
+beachhead/MS
+Beachlands/M
+beachside/SM
+Beachville/M
+beachwear/M Noun: uncountable
+Beachwood/M
+beachy/TP
+beacon/dSM
+Beacon/M
+beaconfish/SM
+Beaconsfield/M
+bead/ZSMDmJG
+beading/SM
+Beadlam/M
+Beadle/M
+beadle/MS
+Beadnell/M
+beadwork/SMr
+beady/T
+Beaford/M
+Beag/M
+beagle/DGSMr
+beak/MDRS
+Beaker
+beakhead/SM
+Beal/M
+Beale/M
+Bealings/M
+beam/SRGMD
+Beaminster/M
+Beamsley/M
+beamwidth/SM
+beamy/T
+bean/DRGSM
+beanbag/SM
+beanburger/SM
+Beane/M
+beanfeast/SM
+beanie/SM
+beano/SM
+beanpole/MS
+beanstalk/MS
+bear-baiting/M
+Bear/M
+bear/M7GRlJS
+beard/pSGiDM
+beardfish/SM
+beardie/MS
+Beardsley/M
+Beare/M
+beargrass/SM
+bearing/SM
+bearish/YP
+Bearley/M
+bearlike
+Beàrnaraigh/M
+Bearsden/M
+bearskin/SM
+Bearstead/M
+Bearsted/M
+Bearwardcote/M
+beast/YSMJ
+beasties
+beastings
+beastliness/S
+beastly/TP
+beat/SlRG7J
+beatbox/GSr
+beaten
+Beath/M
+beatify/WDGnS1
+beating/SM
+beatitude/MS
+Beatles/M
+beatnik/MS
+Beaton/M
+Beatrice/M
+Beatriz/M
+Beatson/M
+Beattie/M
+Beatty/M
+beau/SM
+Beauce-Sartigan/M
+Beauceville/M
+Beauchamp/MS
+Beaudesert/M
+Beaufort/M
+Beauharnois-Salaberry/M
+Beauharnois/M
+Beaujolais/M
+Beaulieu/M
+Beauly/M
+Beauman/M
+Beaumaris/M
+Beaumont-cum-Moze/M
+Beaumont/M
+Beaune/M
+Beaupré/M
+Beauregard/M
+Beausale/M
+Beaussier/M
+beaut/MZS
+beauteous/PY
+beautician/MS
+beautify/WRSDnG
+beauty/jSM6
+Beauworth/M
+beaux/M
+beaver/dSM
+Beaver/M
+Beaverbrook/M
+Beavercreek/M
+Beaverton/M
+Beaworthy/M
+Beazley/M
+Bebbington/M
+Bebhionn/M
+Bebington/M
+bebop/SM
+bebopper/MS
+Bec/M
+becalm/DGS
+became
+Bécancour/M
+becaplermin/M Noun: uncountable
+because
+beccafico/MS
+Beccles/M
+bêche
+Beck/M
+beck/SMDG
+Beckbury/M
+Beckenham/M
+Becker/M
+Beckering/M
+Beckermet/M
+Becket/M
+becket/SM
+Beckett/M
+Beckford/M
+Beckham/M
+Beckingham/M
+Beckington/M
+Beckinsale/M
+Beckley/M
+Beckman/M
+Beckmann/M
+beckon/Sd
+Beckton/M
+Beckwithshaw/M
+Becky/M
+beclomethasone/M Noun: uncountable
+becloud/SDG
+become/SGk
+becoming/UY
+Becquerel/M
+becquerel/SM
+Becquet/M
+BECTa
+BEd Bachelor of Education
+bed-wetting/M Noun: usually uncountable
+bed/DMSR
+bed/F
+bedabble/SGDJ
+Bedale/M
+bedaub/DSG
+bedazzle/DLSG
+bedbug/SM
+bedchamber/SM
+bedclothes
+beddable
+Beddgelert/M
+bedding/SM
+Beddingham/M
+Beddington/M
+Bede/M
+bedeck/DGS
+bedeguar/SM
+Bedell/M
+bedevil/LDGS
+bedew/SGD
+bedfast
+bedfellow/SM
+Bedfield/M
+Bedfont/M
+Bedford/M
+Bedfordshire/M
+Bedggood/M
+Bedhampton/M
+bedhead/SM
+Bedi/M
+bedight
+bedim/GSD
+Bedingfield/M
+Bedingham/M
+bedizen/Sd
+bedjacket/SM
+bedlam/SM
+bedlamp/SM
+bedlinen/SM
+Bedlington/M
+Bedlinog/M
+bedload/SM
+bedmaker/SM
+bedmate/SM
+Bedminster/M
+Bednall/M
+Bedon/M
+Bedouin/M
+bedpan/MS
+bedplate/SM
+bedpost/SM
+bedraggle/DSG
+bedridden
+bedrock/SM
+bedroll/MS
+bedroom/SDM
+Bedrule/M
+Bedser/M
+bedsheet/SM
+bedside/MS
+bedsit/SMR
+bedsock/SM
+bedsore/SM
+bedspread/MS
+bedspring/SM
+bedstead/MS
+Bedstone/M
+bedstraw/MS
+bedtime/SM
+Bedu/M
+Bedwardine/M
+Bedwas/M
+Bedwellte/M
+bedwetter/SM
+Bedworth/M
+Bedwyn/M
+bee-eater/SM
+bee-stung
+Bee/M
+bee/RSyM
+Beeb/M
+Beebe/M
+beebread/MS
+Beeby/M
+Beech/M
+beech/SM
+beechen
+beecher
+Beechingstoke/M
+beechmast/M Noun: uncountable
+beechnut/MS
+beechwood/SM
+Beecraigs/M
+Beeding/M
+Beedon/M
+beef/MD2GZS
+beefburger/SM
+beefcake/SM
+beefeater/SM
+Beeford/M
+beefsteak/SM
+beefwood/SM
+beefy/PT
+beehive/DSM
+beekeeper/SM
+beekeeping/M Noun: uncountable
+Beekman/M
+Beeley/M
+beeline/GSDM
+Beelsby/M
+Beelzebub/M
+been
+Beenham/M
+beep/DRSGM
+Beer/M
+Beerbohm/M
+Beercrocombe/M
+Beerescourt/M
+beerhouse/MS
+Beerman/M
+beermat/SM
+Beersheba/M
+beery/T
+Bees/M
+Beesands/M
+Beesby/M
+beestings
+Beeston/M
+beeswax/MDG
+beeswing/M Noun: usually uncountable
+beet/MS
+Beetham/M
+Beethoven/M
+Beethovenian/S
+beetle/DMSGR
+Beetley/M
+beetroot/SM
+beeves
+Beeville/M
+beezer/SM
+befall/GS
+befallen
+befell
+befit/SGDM
+befitting/Y
+befog/DGS
+befool/SGDJ
+before
+beforehand
+befoul/DSG
+befriend/DGS
+befuddle/LSDG
+beg/SGD
+began
+Begawan/M
+Begbroke/M
+Begelly/M
+beget/SGT
+beggar-my-neighbour
+beggar/dMSY
+Beggard/M
+beggarly/P
+beggary/SM
+begin/RJGS
+beginning/SMp
+begird/GS
+Begley/M
+begone
+begonia/SM
+begorra
+begot
+begotten/a
+begrime/SDG
+begrudge/GDSkR
+Beguildy/M
+beguile/DRLSGk
+beguine/SM
+begum/SM
+begun
+behalf/M
+behalves
+Behar/M
+behave/SaGDR
+behaviour/aSM
+behaviour/D
+behavioural/Y3
+behaviouralism/M Noun: uncountable
+behaviourism/SM
+behaviourist/WMS
+Behe/M
+behead/DSG
+beheld
+behemoth/SM
+behenic
+behest/MS
+behind/S
+behindhand
+behold/GSR
+beholden
+beholdenness/M Noun: uncountable
+behove/DS
+Behrens/M
+beige
+Beighton/M
+Beijing/M
+Beim/M
+being/SMP
+Beipiaosaurus Taxonomic genus
+Beirdd/M
+Beirut/M
+Beith/M
+bejewel/DGS
+Bekesbourne-with-Patrixbourne/M
+Bekesbourne/M
+Bekker/M
+Bel/M
+belabour/DGSM
+Belarus/M
+Belarusian/SM
+Belarusy My Belarusy
+belate/Dih
+belated/P
+Belaugh/M
+belay/DSG
+Belbroughton/M
+belch/SGD
+Belchalwell/M
+Belchamp/M
+Belchertown/M
+Belchford/M
+Belcoo/M
+beleaguer/Sd
+beleaguerment/SM
+Belém/M
+belemnite/SM
+Belfast/M
+Belford/M
+Belfort/M
+Belfrey/M
+belfry/SM
+Belgian/MS
+Belgic
+Belgium/M
+Belgrade/M
+Belgrano/M
+Belgrave/M
+Belgravia/M
+Belhaven/M
+Belhelvie/M
+Belial/M
+Belichick/M
+belie/RSGD
+belief/Mp
+belief/SME
+beliefful/P
+believability/M Noun: uncountable
+believable/Y
+believable/YU
+believe/GERDS
+believe/Gk
+Believer/MS
+believer/UMS
+believeth
+Belisha
+belittle/GLDSr
+Belitung/M
+Belize/M
+Belkin/M
+Belknap/M
+bell-bottom/S
+bell-bottomed
+bell-ringer/SM
+bell-shaped
+Bell/M
+bell/SGmMDY
+Bella/M
+belladonna/SM
+Bellaghy/M
+Bellaire/M
+Bellamy/M
+Bellanaleck/M
+Bellanoch/M
+Bellarena/M
+Bellars/M
+bellbird/SM
+bellboy/SM
+Belle/M
+belle/SM
+Belleau/M
+Belleek/MS
+Bellefontaine/M
+Bellerby/M
+belles-lettres
+Belleterre/M
+belletrism/M Noun: uncountable
+belletrist/SMW
+Belleville/M
+Bellevue/M
+Bellfield/M
+Bellflower/M
+bellflower/MS
+bellhop/MS
+Bellhouse/M
+bellicose/YP
+bellicosity/SM
+Bellie/M
+belligerence/ZSM
+belligerency/SM
+belligerent/YSM
+Bellinger/M
+Bellingham/M
+Bellini/SM
+Bellmawr/M
+bellow/SDG
+Bellsbank/M
+Bellshill/M
+Bellsquarry/M
+bellwether/MS
+Bellwood/M
+belly/DG
+belly/SfM
+bellyache/MSGDR
+bellyband/SM
+bellyboard/SMRG
+bellybutton/SM
+bellyflop/SDG
+bellyful/SM
+Belmarsh/M
+Belmont/M
+Belmopan/M
+Belo
+Beloeil/M
+Beloit/M
+belong/GSDJ
+belonging/MP
+Belorussia/M
+Belorussian/SM
+beloved/SMY
+below
+belowground
+Belper/M
+Belph/M
+Belstead/M
+Belstone/M
+belt-fed
+belt/DGSM
+Beltane/MS
+belting/SM
+Beltingham/M
+beltline/SM
+Belton-in-Rutland/M
+Belton/M
+Beltrami/M
+Beltsville/M
+beltway/SM
+beluga/SM
+Belushi/M
+Belvedere/M
+belvedere/MS
+Belvidere/M
+Belview/M
+Belvoir/M
+bely/SDG
+bema/MS
+beman
+Bemba/M
+Bembridge/M
+Bemerton/M
+Bemidji/M
+bemire/SDG
+bemoan/SGD
+Bempton/M
+Bemrose/M
+bemuse/DLhSG
+Ben/M
+ben/SM
+Benacre/M
+Bénard/M
+Benares/M
+Benarty/M
+Benavides/M
+benazepril/M Noun: uncountable
+Benbecula/M
+Benbrook/M
+Benburb/M
+bench/GSDMR
+benchmark/DSGM
+benchwork/M Noun: uncountable
+bend/D
+Bend/M
+bend/SUG
+bendable
+bender/SM
+Benderloch/M
+Bendigo/M
+Bendish/M
+Bendochy/M
+Bendooragh/M
+bendy/TP
+Bene't/M
+beneath
+Benecke/M
+Benedetti/M
+benedicite/MS
+Benedicite/SM
+Benedict/M
+Benedictine/SM
+benediction/SM
+benedictory
+Benedictus/M
+benefaction/SM
+benefactive/SM
+benefactor/SM
+benefactress/SM
+benefic
+benefice/MGoDS
+beneficence/MS
+beneficent/Y
+beneficial/P
+beneficiary/SM
+Benefield/M
+benefit/DGrMdS
+Benelux/M
+Benenden/M
+Benet/M
+benevolence/SM
+benevolent/YP
+Benfleet/M
+Benford/M
+BEng Bachelor of Engineering
+benga/M Noun: uncountable
+Bengal/M
+Bengali/MS
+Bengaluru/M
+Bengeo/M
+Benger/M
+Bengeworth/M
+Benghazi/M
+Benguela/M
+Benhall/M
+Benhar/M
+Benholm/M
+Benicar/M
+Benicia/M
+Benidorm/M
+benighted/PY
+benign/Y
+benignancy/M Noun: usually uncountable
+benignant/Y
+benignity/SM
+Benin/M
+Beningbrough/M
+Benington/M
+Benioff/M
+Benisch/M
+benison/MS
+Benito/M
+Benjamin/M
+Benji/M
+Bennet/M
+bennet/MS
+Bennett/MS
+Bennewitz/M
+Benneydale/M
+Bennie/M
+Bennington/M
+Bennison/M
+Benniworth/M
+Bennochy/M
+Benny/M
+Benoni/M
+BenQ/M
+Bensalem/M
+Bensen/M
+Bensenville/M
+Benson/M
+Benstock/M
+bent
+Benthall/M
+Bentham/M
+Benthamism/M
+Benthamite/SM
+benthic
+benthopelagic/SM
+benthos
+Bentley/MS
+bento/SM
+Benton/M
+bentonite/SM
+Bentonville/M
+bentwood/SM
+Bentworth/M
+benumb/SDG
+Benvie/M
+Benwick/M
+Benyviridae Taxonomic family
+Benz/M
+benzalkonium/SM
+benzedrine/M Noun: uncountable
+Benzedrine/S
+benzene/SM
+benzenoid/SM
+Benzie/M
+benzilate/SM
+benzine/SM
+benzoate/SM
+benzocaine/SM
+benzodiazepine/SM
+benzohydroxamic
+benzoic
+benzoin/SM
+benzonatate/M Noun: uncountable
+benzoquinone/SM
+benzoyl/SM
+benzoylmethylecgonine/M Noun: uncountable
+benztropine/SM
+benzyl/SM
+Beoley/M
+Beowulf/M
+BepiColombo/M
+Bepler/M
+Bepton/M
+bequeath/GDS
+bequeathment/SM
+bequest/SM
+Beragh/M
+Beral/M
+berate/SDG
+Berber/M
+Berberich/M
+Bercow/M
+Berden/M
+Bere/M
+Berea/M
+bereave/LGDS
+Berechurch/M
+bereft
+bereftness/M Noun: uncountable
+Berenice/MS
+Beresford/M
+beret/MS
+berg/SM
+Bergamo/M
+bergamot/SM
+Bergen/M
+Bergenfield/M
+bergenia/SM
+Berger/M
+Bergerac/M
+Bergeron/M
+Bergh/M
+Bergholt/M
+Bergman/M
+Bergmann/M
+Bergoglio/M
+bergschrund/MS
+Bergström/M
+Bergstrom/M
+Berhampore/M
+Beriah/M
+beribbon
+beribboned
+beriberi/MS
+Bering/M
+Berinsfield/M
+Berk/MS
+berk/SM
+Berkeleian/MS
+Berkeley/M
+berkelium/M Noun: uncountable
+Berkhampstead/M
+Berkhamsted/M
+Berkley/M
+Berkowitz/M
+Berkshire/M
+Berkswell/M
+Berkswich/M
+Berl/M
+Berlaymont/M
+Berlekamp/M
+Berlin/Mr
+Berlinguer/M
+Berlinski/M
+Berlioz/M
+Berlitz/M
+Berlusconi/M
+berm/MS
+Berman/M
+Bermondsey/M
+Bermuda/MS
+Bermudian/SM
+Bern/MS
+Berna/M
+Bernadette/M
+Bernadine/M
+Bernadotte/M
+Bernalillo/M
+Bernard/MS
+Bernardino/M
+Bernardo/M
+Bernaville/M
+Bernd/M
+Berne/M
+Bernera/M
+Berneray/M
+Berners/M
+Bernese/M
+Bernhard/M
+Bernhardt/M
+Bernice/M
+Bernie/M
+Bernini/M
+Bernoulli/M
+Bernstein/M
+Berretta/M
+Berrick/M
+Berriedale/M
+Berrien/M
+Berriew/M
+Berrigan/M
+Berrington/M
+Berrow/M
+berry/SDGM
+Berryfields/M
+berrylike
+Berrynarbor/M
+bersaglieri/M
+Berse/M
+berserk/SMr
+Bersham/M
+Bersted/M
+Bert/M
+Bertello/M
+Bertelsen/M
+berth/GSDM
+Bertha/M
+Berthierville/M
+Bertie/M
+Bertolucci/M
+Bertone/M
+Bertout/M
+Bertram/M
+Bertrand/M
+Bervie/M
+Berwick-upon-Tweed/M
+Berwick/M
+Berwickshire/M
+Berwyn/M
+beryl/MS
+beryllium/SM
+beryllocene
+Besançon/M
+Besant/M
+beseech/RDkSGJ
+beseem/DGS
+beset/SG
+Besford/M
+beshrew/DGS
+Besicovitch/M
+beside/S
+besiege/SRDG
+besmear/DGS
+besmirch/DGS
+besom/SdM
+besot/SDG
+besought
+bespangle/DSG
+bespatter/dS
+bespeak/GS
+bespectacled
+bespoke
+bespoken
+besprinkle/SGDJ
+Bessacarr/M
+Bessarabia/M
+Bessbrook/M
+Bessel/M
+Besselsleigh/M
+Bessemer/M
+Bessent/M
+Besses/M
+Bessey/M
+Bessie/M
+Bessingby/M
+Bessingham/M
+best-known
+best-seller/SM
+best-selling
+best/SGD
+Besthorpe/M
+bestial/Y
+bestiality/SM
+bestialize/DGS
+bestiary/SM
+bestir/SDG
+bestow/DSG
+bestowal/SM
+bestrew/DGS
+bestrewn
+bestridden
+bestride/SG
+bestrode
+bestseller/SM
+bestsellerdom/M Noun: uncountable
+bestsellerism/M
+bestsellership/M
+bestselling
+bestubble/D
+Bestwood/M
+besuited
+Beswick/M
+besylate/SM
+bet/MRGSD
+Beta Taxonomic genus
+beta/MS
+Betacam/M
+Betacoronavirus Taxonomic genus
+betacoronavirus/SM
+betaine/SM
+betake/SG
+betaken
+Betamax/M
+betamethasone/M Noun: uncountable
+Betaseron/M
+betatron/MS
+betavoltaic/S
+betcha
+Betchton/M
+Betchworth/M
+bête/S
+betel/SM
+Betelgeuse/M
+Beth/M
+Bethany/M
+Bethe/M
+Bethel/M
+bethel/SM
+Bethersden/M
+Bethesda/M
+bethink/SG
+Bethlehem/M
+Bethnal/M
+bethought
+betide/DGS
+betimes
+bêtise/SM
+Betjeman/M
+Betley/M
+betoken/dS
+betony/MS
+betook
+betray/GRSD
+betrayal/SM
+betroth/DGS
+betrothal/SM
+Betsey/M
+Betsy/M
+bettable
+Bette/M
+Bettencourt/M
+Bettendorf/M
+better-off
+better/dL
+Betterbird/M
+Betteshanger/M
+Bettiscombe/M
+Bettman/M
+bettong/SM
+Bettws-y-Crwyn/M
+Bettws/M
+Betty/MS
+Bettyhill/M
+Bettys
+between/PS
+betwixt
+Betws-y-coed/M
+Betws/M
+Beulah/M
+BeV/M Initialism of billion electron volt
+bevacizumab/M Noun: uncountable
+Bevan/M
+bevatron/SM
+bevel/RSDMG
+beverage/SM
+Bevercotes/M
+Beveridge/M
+Beverley/M
+Beverly/M
+Beverston/M
+bevvy/SGDM
+bevy/MS
+bewail/DSG
+beware/GSD
+Bewbush/M
+Bewcastle/M
+Bewdley/M
+Bewerley/M
+bewhisker/Sd
+Bewholme/M
+Bewick/M
+bewigged
+bewilder/idLhSk
+bewitch/LDSkG
+Bewkes/M
+Bewley/M
+Bexar/M
+Bexhill-on-Sea/M
+Bexhill/M
+Bexley/M
+Bexton/M
+Bexwell/M
+Beyer/M
+Beyoncé/M
+beyond
+Beyton/M
+bezant/MS
+bezel/MS
+bezique/SM
+bezoar/SM
+Bézout/M
+Bezzi/M
+bf/SM
+BFI/M Initialism of British Film Institute.
+Bhagat/M
+bhajan/SM
+bhaji/SM
+bhajia/SM
+bhakti/SM
+Bharat/M
+Bharata/M
+Bharatanatyam/M
+Bharati/M
+Bhasin/M
+Bhaskaran/M
+Bhavani/M
+Bhavnagar/M
+Bhojpuri/M
+Bhopal/M
+bhp/M Initialism of brake horsepower
+Bhubaneswar/M
+bhuna/SM
+Bhushan/M
+Bhutan/M
+Bhutani/M
+bi-endian
+bi-gender
+bi-gendered
+bi-level/SM
+bi/MS
+Biaggi/M
+Bianca/M
+biannual/Y
+bias/MDSG
+biassed
+biasses
+biassing
+biathlete/SM
+biathlon/MS
+biaxial/Y
+bib/DMGS
+Bibb/M
+Bibby/M
+bibcode/SM
+bibelot/SM
+bible/1wMS
+Biblicae sortes Biblicae
+biblicist/SM
+bibliographer/SM
+bibliographize/SGDJ
+bibliography/Ww1MS
+bibliolater/SM
+bibliomancy/M Noun: usually uncountable
+bibliomane/SM
+bibliomania/M Noun: usually uncountable
+bibliomaniac/SM
+bibliometric/S
+bibliophile/SM
+bibliophily/WM
+bibliopole/SM
+bibliotherapy/SM
+Biblo/M
+bibulous/Y
+Bibury/M
+BIC/SM
+bicameral
+bicameralism/MS
+bicarb/SM
+bicarbonate/MS
+bicarbonyl/MW
+bicarboxyl/MW
+Bicchieri/M
+bicentenary/SM
+bicentennial/SM
+bicep/SM
+bicephalous
+Bicester/M
+Bichette/M
+bichromate/MS
+Bickenhall/M
+Bickenhill/M
+bicker/drSM
+Bicker/M
+bickering/SM
+Bickerstaffe/M
+Bickerton/M
+Bickington/M
+Bickleigh/M
+Bickmarsh/M
+Bicknacre/M
+Bicknoller/M
+Bicknor/M
+biclique/SM
+bicolour/SMD
+biconcave
+biconnected
+biconvex
+Bicton/M
+bicultural
+biculturalism/SM
+bicuspid/SM
+bicycle/WRG3SMD
+bid/RMZdGJS
+Bidborough/M
+biddable
+Biddeford/M
+bidden
+Biddenden/M
+Biddenham/M
+Biddestone/M
+bidding/SM
+Biddisham/M
+Biddle/M
+Biddlesden/M
+Biddulph/M
+biddy/SM
+bide/Sr
+Bideford/M
+bidentate
+bidentative
+bidet/SM
+Bidford/M
+bidiagonal
+bidialectal
+bidialectalism/M Noun: uncountable
+bidimensional
+bidirectional/Y
+bidomain
+bidonville/MS
+bids/fcAe
+Bidston/M
+Bieber/M
+Biedermeier
+Biel/M
+Bielby/M
+Bielefeld/M
+biennale/SM
+biennial/SMY
+biennium/SM
+Bienville/M
+bier/SM
+Bierce/M
+bierkeller/SM
+Bierley/M
+Bierlow/M
+Bierton/M
+biface/OSM
+biferrocene/SM
+biff/SGDM
+bifid
+bifocal/S
+bifold
+bifunctional
+bifurcate/YSGnD
+big-boned
+big-endian
+big-name
+Big/M
+big/TGDP
+bigamous
+bigamy/3MS
+Bigbury/M
+Bigby/M
+Bigelow/M
+bigender
+bigeneric
+bigeye/SM
+Bigfeet/M
+Bigfoot/M
+Biggar/M
+biggie/MS
+Biggin/M
+biggish
+Biggleswade/M
+Biggs/M
+bigha/SM
+bighead/MS
+bighearted/P
+bighorn/SM
+bight/MGDS
+Bighton/M
+bigmouth/MS
+Bignor/M
+Bigot/M
+bigot/ydSM
+bigoted/Y
+bigotry/SM
+bigram/SM
+biguanide/SM
+bigwig/SM
+Biham/M
+Bihar/M
+Bihari/MS
+biharmonic
+bijection/SM
+bijective/Y
+bijou/M
+bijouterie/M Noun: usually uncountable
+bijoux/M
+bikable
+bike/RMSGD
+bikeable
+bikeshed/SG
+bikini/SMD
+bilabial
+Bilaspur/M
+bilateral/YP
+bilayer/SM
+Bilbao/M
+bilberry/SM
+Bilbie/M
+bilbo/MS
+bilboes
+Bilborough/M
+Bilbrook/M
+Bilbrough/M
+bilby/SM
+Bildeston/M
+Bildungsroman/SM
+Bildungsromane/M
+bile/MS
+bilge/DGMS
+bilharzia/SM
+biliary
+bilinear/SM
+bilingual/YSM
+bilingualism/MS
+bilious/PY
+Biliphyta Taxonomic subkingdom
+bilirubin/SM
+bilk/DRGSM
+Bill/M
+bill/RM7YDJSG
+billabong/MS
+billboard/SGDM
+Billerica/M
+Billericay/M
+Billesdon/M
+Billesley/M
+billet-doux/M
+billet/SdM
+billetee/MS
+billets-doux/M
+billfish/SM
+billhook/SM
+Billian/M
+billiard/MS
+Billie/M
+billing/M
+Billing/M
+Billingborough/M
+Billinge/M
+Billingford/M
+Billingham/M
+Billinghay/M
+Billingley/M
+Billings/M
+Billingsgate/M
+Billingshurst/M
+Billingsley/M
+Billington/M
+billion/MHS
+billionaire/SM
+Billockby/M
+billow/DGMZS
+billowy/T
+billposter/SM
+billsticker/MS
+billy-goat/SM
+billy/MS
+billycan/MS
+billycock/MS
+Bilney/M
+bilobate/SM
+bilobed
+bilocation/SM
+Biloxi/M
+Bilsborrow/M
+Bilsby/M
+Bilsdale/M
+Bilsington/M
+Bilsthorpe/M
+Bilston/M
+Bilton-in-Ainsty/M
+Bilton/M
+biltong/SM
+Bim/MS
+bimbo/MS
+bimetallic
+bimetallism/SM
+bimetallist/MS
+bimetallocene/SM
+bimillenary/SM
+bimodal
+bimolecular/Y
+bimonthly/SM
+bin/DGSM
+BINAC/M
+binary/SM
+binate/SGD
+bination/M Noun: uncountable
+binational
+binaural/Y
+Binbrook/M
+Bincombe/M
+bind/kRJSGM
+binder/SMZ
+Binderton/M
+bindery/SM
+bindi/SM
+binding/PM
+bindle/SM
+Bindoff/M
+binds/AU
+bindweed/SM
+bine/MS
+Binegar/M
+Binet/M
+Binfield/M
+Binford/M
+Bing/M
+bing/SM
+binge/DGMS
+bingeable
+bingen
+Bingfield/M
+Bingham/M
+Binghamton/M
+Bingle/M
+Bingley/M
+bingo/SM
+Binham/M
+Binley/M
+binman/M
+binmen/M
+binnacle/SM
+Binns/M
+binocular/SMY
+binodal
+binomial/SYM
+binominal/SM
+Binsey/M
+Binstead/M
+Binsted/M
+bint/MS
+Bintcliffe/M
+Bintley/M
+Binton/M
+Bintree/M
+binturong/MS
+binuclear
+binucleate/DSM
+bio/SM
+bioabsorbable
+bioaccumulate/SGDN
+bioaccumulations/SM
+bioacoustics
+bioactive
+bioactivity/SM
+bioadhesive/SM
+bioaerosol/SM
+bioarchaeologist/SM
+bioarchaeology/Mw
+bioassay/SM7
+bioavailability/SM
+bioavailable
+biobank/SM
+biobibliography/SM
+bioblast/SM
+bioburden/SM
+biocapacity/SM
+biocatalysis/M Noun: usually uncountable
+biocatalyst/SM
+biocatalytic/OY
+biocellate
+biocenoses
+biocenosis/M
+biocentric/Y
+biocentrism/M Noun: uncountable
+biocentrist/SM
+bioceramic/SM
+biochar/SM
+biochem/M Noun: uncountable
+biochemic
+biochemical/SMY
+biochemist/SyM
+biochemistry/SM
+biochip/SM
+biochore/SM
+biocide/SO^
+biocircuit/SM
+bioclast/SMW
+bioclimate/SM
+bioclimatic/S
+biocoenoses
+biocoenosis/M
+biocolloid/SM
+biocompatibility/M Noun: usually uncountable
+biocompatible
+biocomplexity/M Noun: uncountable
+biocomposite/SM
+biocomputation/M Noun: uncountable
+biocomputer/SM
+biocomputing/M Noun: uncountable
+biocontrol/SM
+bioconversion/SM
+biocultural/Y
+biocybernetic/S
+biodata/SM
+biodefence/SM
+biodegradability/SM
+biodegradable
+biodegrade/nSGD
+biodeterioration/SM
+biodiesel/SM
+biodigester/SM
+biodiverse/Y
+biodiversity/SM
+biodome/SM
+biodynamic/S
+biodynamical/Y
+bioecology/SMw
+bioeconomic/S
+bioeffluent/SM
+bioelectric/O
+bioelectricity/M Noun: uncountable
+bioelectrochemistry/M Noun: uncountable
+bioelectromagnetic/S
+bioelectronic/SY
+bioelement/SM
+bioenergetic/S
+bioenergy/SM
+bioengineer/SMD
+bioengineering/M Noun: uncountable
+bioenvironmental
+bioequivalence/SM
+bioequivalency/SM
+bioequivalent/SM
+bioerosion/M Noun: uncountable
+bioethanol/SM
+bioethical/Y
+bioethicist/SM
+bioethics
+biofacies
+biofeedback/SM
+biofilm/SM
+biofilter/SM
+biofiltration/M Noun: uncountable
+bioflavonoid/SM
+biofuel/SM
+biog/SM
+biogas/M
+Biogen/M
+biogeneric/SM
+biogenesis/M Noun: usually uncountable
+biogenetic
+biogenic
+biogeochemical/SMY
+biogeochemist/SM
+biogeochemistry/M Noun: uncountable
+biogeographer/SM
+biogeography/SMW1w
+biogerontology/M Noun: uncountable
+biograph/SMWZRw1
+biographee/SM
+biography/SM
+biohacker/SM
+biohacking/M Noun: uncountable
+biohazard/SM
+biohazardous
+bioindication/SM
+bioindicator/SM
+bioinformatic/S3
+bioinformatician/SM
+bioirrigation/M Noun: uncountable
+biol/M Noun: uncountable
+biolistics
+biologics
+biology/w3MW1S
+bioluminescence/SM
+bioluminescent
+biolytic/O
+biomacromolecule/SM
+biomagnetic
+biomagnetism/M Noun: uncountable
+biomagnify/SGDN
+biomarker/SM
+biomass/MS
+biomaterial/SM
+biomathematics
+biome/SM
+biomechanical/Y
+biomechanics
+biomechanism/SM
+biomechanist/SM
+biomechanoid/SM
+biomechatronics
+biomedical
+biomedicine/SM
+biometeorology/M
+biometric/SO
+biometrician/SM
+biometry/WM
+biomimetic/S
+biomineral/SM
+biomineralisation/M
+biomineralised
+biomineralization/M
+biomineralized
+biomining/M Noun: uncountable
+biomolecular
+biomolecule/SM
+biomorph/SMW
+biomorphism/M Noun: uncountable
+bion/SM
+bionic/YS
+bionomic/S
+BioNTech/M
+biopesticide/SM
+biopharma/SM
+biopharmaceutical/SM
+biopharmaceutics
+biopharming/M Noun: uncountable
+biophilia/M Noun: uncountable
+biophilosophy/M Noun: uncountable
+biophobia/M Noun: uncountable
+biophoton/SM
+biophotonics
+biophysic/S3OY
+biophysicist/SM
+biophysics/M Noun: uncountable
+biophysiologist/SM
+biophysiology/M Noun: uncountable
+biopic/SM
+biopiracy/M Noun: uncountable
+biopirate/SM
+bioplasm/SMW
+bioplast/WSM
+bioplay
+biopoesis/M Noun: uncountable
+biopolitical
+biopolitics
+biopolymer/SMW
+biopotential/SM
+biopower/M Noun: uncountable
+biopreservation/M Noun: uncountable
+bioprinter/SM
+bioprinting/M Noun: uncountable
+bioprivacy/M
+bioprocess/SMG
+bioproduct/SM
+bioprospecting/M Noun: uncountable
+bioprospector/SM
+biopsy/DGMS
+biopsychology/Mw
+biopsychosocial
+biopunk/SM
+biorational/SM
+biordinal/SM
+bioreactor/SM
+biorefinery/SM
+bioregion/SMO
+bioregionalism/M Noun: uncountable
+bioregionalist/SM
+bioremediation/SM
+bioreserve/SM
+biorheology/M Noun: uncountable
+biorhythm/SMW
+biorhythmicist/M
+BIOS/M
+biosafety/M Noun: uncountable
+bioscan/SM
+bioscience/SM3
+bioscope/MS
+biose/SM
+biosecure
+biosecurity/M Noun: uncountable
+biosemiotic
+biosemiotics/M Noun: uncountable
+biosensing/M Noun: uncountable
+biosensor/SM
+BIOSes
+biosignature/SM
+biosimilar/SM
+biosocial
+biosolid/SM
+biosphere/SMW
+biostatistic/SO
+biostatistician/SM
+biostratigrapher/SM
+biostratigraphic/OY
+biostratigraphy/M Noun: uncountable
+biostrome/OSM
+biosurgery/M Noun: uncountable
+biosynthesis/M
+biosynthesise/SGD
+biosynthesize/SGD
+biosynthetic/Y
+biosystem/SMW
+biosystematics
+biosystematy/M3
+biota/1WSM
+biotech/SM
+biotechnology/w3SM
+biotecture/SM
+bioterrorism/M
+bioterrorist/SM
+biotherapy/SM
+biotin/MS
+biotite/SM
+biotope/SM
+biotoxin/SM
+biotransformation/SM
+biotreatment/SM
+biotrophy/WM
+bioturbated
+bioturbation/SM
+biotype/SM
+biotypology/M Noun: uncountable
+biovolume/SM
+biowar/M
+biowarfare/M Noun: uncountable
+biowaste/SM
+bioweapon/SM
+bioyogurt/SM
+biozone/SM
+bipartisan
+bipartisanship/SM
+bipartite/Y
+bipartition/SM
+biped/OMSo
+bipedalism/M Noun: uncountable
+bipedality/M Noun: uncountable
+biphasic/Y
+biphenyl/SM
+biplane/SM
+bipolar
+bipolarity/SM
+bipyramid/SM
+biracial
+biradial
+Birch/M
+birch/SGDM
+Bircham/M
+Birchanger/M
+birchen
+Bircher/M
+Birchgrove/M
+Birchington/M
+Bircholt/M
+Birchover/M
+Birchville/M
+Birchwood/M
+birchwood/SM
+Bircotes/M
+bird's-foot/SM
+bird/DRGSM
+birdbath/MS
+birdbrain/SMD
+Birdbrook/M
+birdcage/MS
+Birdforth/M
+Birdham/M
+birdhouse/SM
+birdie/MDS
+birdieing
+Birdingbury/M
+birdlife/M Noun: uncountable
+birdlike
+birdlime/SMGD
+birdling/SM
+Birdman/M
+Birdsall/M
+birdseed/SM
+birdshot/SM
+birdsong/SM
+birdtable/SM
+birdwatch/RG
+birdwing/SM
+birefringence/SM
+birefringent/Y
+bireme/MS
+biretta/MS
+Birger/M
+Birgit/M
+biriani/SM
+biriyani/SM
+Birk/M
+Birkbeck/M
+Birkby/M
+Birkdale/M
+Birkeland/M
+Birkenhead/M
+Birkenshaw/M
+Birkhill-Muirhead/M
+Birkin/M
+Birley/M
+Birling/M
+Birlingham/M
+Birman/M
+Birmingham/M
+Birnie/M
+Biro/M
+biromantic/SM
+Birsay/M
+Birse/M
+Birstall/M
+Birstwith/M
+birth/SMd
+birthdate/SM
+birthday/SM
+birthmark/SM
+Birthorpe/M
+birthplace/SM
+birthrate/MS
+birthright/SM
+birthstone/SM
+birthweight/SM
+birthwort/SM
+Birtley/M
+Birtsmorton/M
+biruthenocene
+biryani/SM
+Bisbrooke/M
+Biscathorpe/M
+Biscay/M
+Biscayan/SM
+Biscayne/M
+biscotti/M
+biscotto/M
+biscuit/MS
+biscuity
+bisect/GSD
+bisection/SM
+bisectional/Y
+bisector/SM
+biserial
+bisexual/MSY
+bisexuality/MS
+Bisham/M
+Bishampton/M
+Bishkek/M
+bishop/dSM
+Bishop/MS
+Bishopbriggs/M
+Bishopbrigs/M
+Bishopdale/M
+Bishopgate/M
+Bishophill/M
+bishopric/SM
+Bishopsbourne/M
+Bishopsgate/M
+Bishopside/M
+Bishopsnympton/M
+Bishopsteignton/M
+Bishopstoke/M
+Bishopston/M
+Bishopstone/M
+Bishopstrow/M
+Bishopthorpe/M
+Bishopton/M
+Bishopwearmouth/M
+Bishton/M
+Bisley-with-Lypiatt/M
+Bisley/M
+Bismarck/M
+Bismark/M
+bismillah
+bismuth/SM
+bison/M plural same
+bisoprolol/M
+Bispham/M
+bisphenol/SM
+bisque/MS
+Bissau/M
+Bisset/M
+Bissett/M
+bissextile/SM
+bistable/SM
+bistate/W
+bistoury/SM
+bistro/SM
+bisulfate/SM
+bisulphate/MS
+bisyllabic/Y
+bit/CS
+bit/M
+bitartrate/SM
+bitblt/S
+bitch/GZDSz2M
+Bitchfield/M
+bitchy/T
+bitcoin/SM
+bite/cS
+biter/SM
+Bithell/M
+biting/Y
+BitInstant/M
+bitmap/DGMS
+BITNET/M
+bitonal
+bitonality/M Noun: uncountable
+bitrate/SM
+Bitrex/M trademark
+bitrot/M Noun: uncountable
+bitser/SM
+Bitstream
+bitstream/SM
+Bittadon/M
+bitten
+bitter/YPSd
+bittercress/SM
+bitterer
+bitterest
+Bittering/M
+Bitterley/M
+bitterling/SM
+Bitterman/M
+bittern/MS
+bitternut/SM
+bitterroot/SM
+bittersweet/SMYP
+Bittesby/M
+Bitteswell/M
+Bittinger/M
+Bitton/M
+BitTorrent/M
+bitty/TP
+bitumen/MS
+bituminisation/MS
+bituminise/SGDJ
+bituminization/MS
+bituminize/SGDJ
+bituminous
+bitwise
+biungulate/SM
+bivalence/SMZ
+bivalent/SM
+bivalve/SMD
+bivariate/SM
+bivouac/GMDS
+bivvy/MS
+biweekly/SM
+Bix/M
+Bixby/M
+Bixley/M
+Bixton/M
+biyearly
+biz/M Noun: uncountable
+bizarre/PY
+bizarrerie/SM
+Bizet/M
+Bizna/M
+bizzes
+bizzies
+Bjoern/M
+Björn/M
+Bk
+bk
+blab/RSDG
+blabber/d
+blabbermouth/SM
+Blaby/M
+Blachon/M
+black-hearted
+black/DGYPSTM~
+Black/MS
+Blackadder/M
+blackamoor/MS
+Blackawton/M
+blackball/DGSM
+Blackbeard/M
+blackberry/DMSG
+Blackberry/M
+BlackBerry/SGD
+blackbird/GSMD
+blackboard/MS
+blackbody/SM
+Blackborough/M
+blackboy/SM
+Blackbraes/M
+blackbuck/SM
+Blackburn/M
+Blackburne/M
+blackbutt/SM
+blackcap/SM
+blackcock/M
+blackcurrant/SM
+Blackdown/M
+blacken/Sdr
+blackface/SM
+Blackfeet/M
+blackfellow/MS
+Blackfen/M
+blackfish/SM
+blackfly/SM
+Blackfoot/M
+Blackford/M
+Blackfriars/M
+blackguard/SDYGM
+Blackhall/M
+Blackhawk/M
+blackhead/SM
+Blackheath/M
+blacking/M
+blackjack/MSDG
+Blackland/M
+blacklead/SGDM
+blackleg/DGMS
+Blackler/M
+Blackley/M
+blacklist/SGDMR
+blackmail/RGMDS
+Blackman/M
+Blackmanstone/M
+Blackmore/M
+Blacko/M
+blackout/MS
+blackpoll/SM
+Blackpool/M
+Blackridge/M
+Blackrod/M
+Blacksburg/M
+Blackshaw/M
+blackshirt/SM
+Blackshirt/SM
+Blackskull/M
+blacksmith/GSM
+Blackstone/M
+blackthorn/SM
+Blackthorne/M
+Blacktoft/M
+Blacktown/M
+Blackwater/M
+Blackwatertown/M
+Blackwell/M
+Blackwood/M
+blacky/MS
+bladder/MSd
+bladdernut/SM
+bladderwort/SM
+blade/GDMSp
+Bladen/M
+Bladon/M
+Blaenafon/M
+Blaenau/M
+Blaenavon/M
+Blaengwrach/M
+Blaengwrath/M
+Blaenhonddan/M
+Blaenpennal/M
+Blaenporth/M
+Blaenrheidol/M
+blag/SGDR
+Blagdon/M
+Blagojevich/M
+Blagreaves/M
+blagueur/SM
+blah/MDSG
+Blaina/M
+Blaine/M
+Blainville/M
+Blair/M
+Blairdaff/M
+Blairgowrie/M
+Blairhall/M
+Blairhill/M
+Blairingone/M
+Blairism/M Noun: uncountable
+Blairite/SM
+Blaisdon/M
+Blaise/M
+Blake/M
+Blakedown/M
+Blakelaw/M
+Blakemere/M
+Blakemore/M
+Blakeney/M
+Blakenhall/M
+Blakenham/M
+Blakesley/M
+Blaketown/M
+Blalock/M
+blame/R7SGMpD
+blameless/PY
+blameworthy/P
+Blanc/M
+blanc/SM
+blanch/DSGR
+Blanchard/M
+Blanche/M
+Blanchland/M
+blancmange/MS
+Blanco/M
+bland/TPY
+Blandford/M
+blandish/DGLS
+Blandy/M
+Blane/M
+Blaney/M
+blank/PDGSTYM
+Blankenship/M
+blanket/dSM
+blanketer/S
+blanketing/M
+Blankney/M
+Blanton/M
+Blantyre/M
+blare/GDSM
+blarney/GSMD
+blasé
+Blase/M
+Blasio/M
+blaspheme/RDSZG
+blasphemous/YP
+blasphemy/MS
+blast/GRSMD
+blasting/M
+blastocyst/SM
+blastoderm/SMW
+blastodisc/SM
+blastodisk/SM
+blastoff/SM
+blastoma/SM
+blastomata/M
+blastomere/SM
+blastomycosis/M
+Blaston/M
+blastula/M
+blastulae/M
+blatancy/MS
+blatant/YP
+Blatchington/M
+blather/dSrM
+Blatherwycke/M
+Blatt/M
+blatting
+Blau/M
+Blavatsky/M
+Blawarthill/M
+Blawith/M
+Blaxhall/M
+blaxploitation/M Noun: uncountable
+Blaxton/M
+blazar/SM
+blaze/RkGDMS
+blazon/SMdr
+bldg/SM
+bleach/GRDSM
+Bleadon/M
+bleak/TPSYM
+Blean/M
+blear/SDGzZ
+bleary-eyed
+bleary/TP
+Bleasby/M
+Bleasdale/M
+bleat/DGSR
+bleb/SM
+Bleckley/M
+bled
+Bleddfa/M
+Bledington/M
+Bledlow-cum-Saunderton/M
+Bledlow/M
+Bledrws/M
+Bledsoe/M
+bleed/RSG
+bleeding-heart
+bleep/MDGSR
+Bleiler/M
+blemish/MDSG
+blench/DGS
+blend/RGSD
+Blendworth/M
+Blenheim/M
+blenny/SM
+bleomycin/SM
+blepharitis/M Noun: usually uncountable
+blepharoplasty/SM
+blepharospasm/SM
+bless/hGSDiJ
+blessedness/MS
+blessing/SM
+Bletchingdon/M
+Bletchingley/M
+Bletchley/M
+Bletherston/M
+Bletsoe/M
+Blevins/M
+blew
+Blewbury/M
+Blewett/M
+Blewitt/M
+Blickling/M
+Blidworth/M
+Bligh/M
+blight/DGMSR
+Blighty/M
+blimey
+blimp/MS
+Blimp/SM Colonel Blimp
+blimpery/M
+Blimpian
+blimpish/YP
+Blimpism/M
+blind/7SDRTPGkYM
+Blindbothel/M
+blindfold/DSG
+blinding/SM
+blindworm/MS
+bling-bling/M Noun: uncountable
+bling/M Noun: uncountable
+blingy/T
+blink/MDGRS
+blinker/d
+blip/DGMS
+blipvert/SM
+Blish/M
+Blisland/M
+bliss/D6jSM
+Bliss/M
+blissful/P
+blister/dMkSZ
+Blisworth/M
+blithe/YTP
+blithering/SM
+blithesome/Y
+Blithfield/M
+blitz/GSDM
+blitzkrieg/SM
+BlitzMax/M
+blizzard/SM
+Blo'
+bloat/SDRGM
+bloatware/M Noun: uncountable
+blob/SMDG
+blobby/T
+blobfish/SM
+bloc/GDMSR
+Bloch/M
+block/M~
+block/UGDS
+blockade/DMGRS
+blockage/MS
+blockboard/SM
+blockbuster/MS
+blockbusting/M Noun: uncountable
+blockchain/SM
+blockhead/SMD
+blockhouse/MS
+Blockley/M
+blocklist/SM
+blockquote/SM
+blockship/SM
+blockwork/M Noun: usually uncountable
+blocky/TP
+Blodwell/M
+Bloemfontein/M
+Blofeld/M
+Blofield/M
+blog/SBMGDR
+bloggy/T
+blogosphere/SM
+blogpost/SM
+blogroll/SM
+bloke/MS
+blokeish/P
+Blomberg/M
+Blomfield/M
+Blomquist/M
+blond/TSMP~
+blonde/SM
+blondie/SM
+blood-borne
+blood-curdling
+blood-red
+blood-wealth/M
+blood/SGZiDMphzR~
+bloodbath/SM
+bloodberry/SM
+bloodhot
+bloodhound/SM
+bloodless/PY
+bloodletter/SM
+bloodletting/SM
+bloodline/MS
+bloodlust
+bloodroot/MS
+bloodshed/GSMR
+bloodshot
+bloodsport/SM
+bloodstain/DMS
+bloodstock/SM
+bloodstone/SM
+bloodstream/SM
+bloodsucker/MS
+bloodsucking
+bloodthirsty/PTY
+bloodwood/SM
+bloodworm/SM
+bloodwort/M Noun: usually uncountable
+Bloodworth/M
+bloody/STPGD
+bloodymindedness/M Noun: uncountable
+Bloom/M
+bloom/RMDGS
+Bloomberg/M
+bloomery/MS
+Bloomfield/M
+Blooming/M
+Bloomingdale/M
+Bloomington/M
+Bloomquist/M
+Bloomsburg/M
+Bloomsbury/M
+bloop/SMDRG
+Blore/M
+blossom/dMS
+Blossomville/M
+blossomy
+blot/GMRSD
+blotch/SGMZD
+blotchy/T
+blotto
+Blount/M
+blouse/SMGD
+blouson/SM
+blousy/T
+blow-by-blow
+blow-dry/SGDM
+blow-dryer/SM
+blow-out/SM
+blow-up/SM
+blow/RGZSM
+blowback/SM
+blowfish/SM
+blowfly/SM
+blowgun/SM
+blowhole/SM
+blowing-up/M
+blowing/M
+blowjob/SM
+blowlamp/SM
+blown
+blown-up
+blowout/SM
+blowpipe/MS
+blowsy/TYP
+blowtorch/MS
+blowy/T
+blowzy/T
+Bloxham/M
+Bloxholm/M
+Bloxwich/M
+Bloxworth/M
+Blu-ray/SM
+blub/SGDJ
+blubber/JdSZrM
+Blubberhouses/M
+Blucher/M
+blucher/SM
+bludge/D
+bludgeon/MGSD
+blue-black
+blue-blooded
+blue-collar
+blue-eyed
+blue-green/M
+blue-pencil/SGD
+blue/JMDPYSGZT~
+Blue/MS
+blueback/SM
+Bluebeard/M
+bluebell/SM
+blueberry/MS
+bluebill/SM
+bluebird/MS
+bluebonnet/SM
+bluebook/SMZ
+bluebottle/SM
+Bluefield/MS
+bluefin/SM
+bluefish/SM
+bluegill/MS
+bluegrass/SM
+BlueGriffon/M
+bluegum/SM
+blueishness/M Noun: uncountable
+bluejacket/SM
+bluejeans
+blueliner/SM
+Bluemantle/M
+bluenose/MS
+bluepoint/SM
+blueprint/GSMD
+bluer
+blueschist/SM
+blueshift/SM
+bluesman/M
+bluesmen/M
+bluest
+bluestocking/SM
+bluesy/T
+bluethroat/SM
+bluetongue/M Noun: uncountable
+Bluetooth/DM
+blueward
+Bluff/MS
+bluff/PSDRGTYM
+Bluffton/M
+bluing/M
+bluish/P
+Blum/M
+Blundell/M
+blunder/dkrJMS
+blunderbuss/SM
+Blundeston/M
+Blundeville/M
+blunge/DGSr
+Blunham/M
+Blunkett/M
+Blunsden/M
+Blunsdon/M
+blunt/MYPGTSD~
+Bluntisham/M
+blur/hGDZSM
+blurb/GSDM
+blurring/Y
+blurry/TP
+blurt/SGDr
+Blurton/M
+blush/GDkRSM
+blushing/UY
+bluster/rSZdkM
+blusterous
+blvd
+Blyborough/M
+Blyford/M
+Blymhill/M
+Blystone/M
+Blyth/M
+Blythburgh/M
+Blythe/M
+Blytheville/M
+Blyton/M
+Blytt/M
+BMus Bachelor of Music
+BMW/MS
+BMX/M
+BNF/M
+BNFL/M
+Bo'ness/M
+Bo/M
+boa/SM
+Boadicea/M
+boar/MS
+board/RMGDSJ
+boardgame/SM
+boarding/M
+boardinghouse/MS
+Boardman/M
+boardroom/SM
+boardsail/GM
+boardsailor/SM
+boardslide/SM
+boardwalk/SM
+Boarhills/M
+Boarhunt/M
+Boarstall/M
+boast/DRG6jJSM
+boastful/P
+Boat/M
+boat/MDRGSp
+boatbuilder/SM
+boatbuilding/SM
+boatfly/M
+boathook/SM
+boathouse/SM
+boating/SM
+boatlift/SGDM
+boatlike
+boatload/MS
+boatman/M
+boatmen/M
+boatswain/MS
+boatyard/SM
+Bob/M
+bob/ZSGDM
+Bobbie/M
+bobbin/SM
+Bobbing/M
+bobbing/SMY
+Bobbington/M
+Bobbingworth/M
+bobbish
+bobble/SGMDY
+bobby/MS
+bobcat/SM
+bobolink/SM
+bobsleigh/RSDMG
+bobtail/SMGD
+bobwhite/SM
+Boca/M
+Boccaccio/M
+Boccherini/M
+boccie/SM
+Boche/MS
+Bochkov/M
+Bochum/M
+bock/SGDM
+Bockhorst/M
+Bocking/M
+Bockleton/M
+bockwurst/SM
+Boconnoc/M
+bod/SMd
+Boddam/M
+Boddington/M
+Bode/M
+bode/SGDZ
+Bodedern/M
+bodega/SM
+Bodelwyddan/M
+Bodenham/M
+Bodewryd/M
+Bodfari/M
+Bodffordd/M
+bodge/SGDR
+Bodham/M
+bodhisattva/SM
+Bodiam/M
+bodice/SM
+Bodicote/M
+boding/SM
+bodkin/MS
+Bodleian/M
+Bodley/M
+Bodmer/M
+Bodmin/M
+Bodney/M
+Bodoni/M
+Bodorgan/M
+Boduan/M
+Bodwrog/M
+body-blow/SM
+body-builder/SM
+body-building/M Noun: uncountable
+body-check/SGD
+body-piercing
+body/pDMSYG
+bodyboard/SMRG
+bodybuilder/SM
+bodybuilding/M Noun: uncountable
+bodyguard/MSG
+bodyhood/M Noun: uncountable
+bodyline/SM
+bodyshell/SM
+bodyside/SM
+bodysnatcher/SM
+bodysnatching/M Noun: uncountable
+bodysuit/SM
+bodysurf/SDrG
+bodyweight/SM
+bodywork/rMS
+Boeck/M
+Boedeker/M
+boehmite/SM
+Boehner/M
+Boeing/M
+Boellstorff/M
+Boeotia/M
+Boeotian/SM
+Boer/SM
+Boerne/M
+Boethius/M
+Boethus/M
+Boethusians/M
+boff/SM
+Boffetta/M
+boffin/SM
+Bofors/M
+bog/GDMZS
+Bogalusa/M
+Bogart/M
+bogbean/SM
+bogey/GmMDS
+boggle/DGSk
+boggy/T
+Boghall/M
+bogie/SM
+bogland/SM
+Bognor/M
+Bogomil/SM
+Bogomilism/M Noun: uncountable
+Bogotá/M
+bogus
+Boharm/M
+Bohemia/M
+Bohemian/SM
+bohemian/SM
+bohemianism/SM
+Boho/M
+Bohr/M
+bohrium/M Noun: uncountable
+boil/GSDMr
+Boileau/M
+Boileezers
+boilermaker/MS
+boilerplate/SM
+boing/SGDM
+Bois-des-Filion/M
+Bois/M
+Boisbriand/M
+Boise/M
+boisterous/YP
+bokeh/M Noun: uncountable
+Bokhara/M
+bokken/SM
+Bokmål/M
+bola/SM
+Bolam/M
+Bolas/M
+bold/PYTSGDM
+Bolden/M
+boldface/MGDS
+Boldini/M
+Boldon/M
+Boldre/M
+Bole/M
+bole/MS
+bolero/MS
+Boleskine/M
+Boletales Taxonomic order
+bolete/SM
+boletus/SM
+Boleyn/M
+Bolger/M
+Bolingbroke/M
+Bolingbrook/M
+Bolivar/M
+Bolivia/M
+Bolivian/SM
+boll/MS
+Bolland/M
+bollard/SM
+Bollinger/M
+Bollingham/M
+Bollington/M
+bollocking/SM
+bollocks
+bollworm/SM
+Bollywood/M
+Bolney/M
+Bolnhurst/M
+Bologna/M
+bolognaise/SM
+Bolognese/M
+bolognese/SM
+bolometer/WSM
+boloney/SM
+Bolshevik/SM
+Bolshevism/SM
+Bolshevist/WMS
+Bolshie/MS
+Bolshoi/M
+Bolsonaro/M
+Bolsover/M
+bolster/dSrM
+Bolsterstone/M
+Bolstone/M
+bolt-on/SM
+bolt/SM
+bolt/UGSD
+Boltby/M
+Bolte/M
+bolter/SM
+bolthole/SM
+Bolton-by-Bowland/M
+Bolton-le-Sands/M
+Bolton-on-Swale/M
+Bolton/M
+Boltzmann/M
+bolus/MS
+BOM/SM
+bomb/RSMDGJ
+bombard/GLDSM
+bombardier/SM
+bombardon/SM
+bombast/WMS1r
+Bombay/M
+bombazine/SM
+bombed-out
+Bombelli/M
+bombproof/SM
+bombshell/SM
+Bomford/M
+Bôn-y-maen/M
+bona
+Bona/M
+Bonanome/M
+bonanza/SM
+Bonaparte/M3
+Bonapartism/M Noun: uncountable
+Bonar/M
+Bonatti/M
+Bonaventura/M
+Bonaventure/M
+bonbon/SM
+Bonby/M
+Boncath/M
+Bonchurch/M
+Bond/M
+bond/MmDJRGS
+bondage/MS
+bondholder/SM
+Bondleigh/M
+bondservant/SM
+Bonduriansky/M
+bondwoman/M
+bondwomen/M
+bone/pRMSZGD
+bonehead/DMS
+Bonello/M
+bonemeal/SM
+boneset/SMR
+boneshaker/SM
+Bonetti/M
+boneyard/SM
+Bonfire
+bonfire/SM
+bong/SMDG
+bongo/MS
+Bonham/M
+Bonhill/M
+Bonhoeffer/M
+bonhomie/SM
+Bonhunt/M
+Boniface/M
+Bonilla/M
+Boningale/M
+Bonington/M
+Bonita/M
+bonito/MS
+bonk/drSM
+Bonkle/M
+Bonkyll/M
+Bonn/M
+Bonner/M
+bonnet/dSM
+bonnethead/SM
+Bonneville/M
+Bonney/M
+bonnie
+Bonnington/M
+bonny/TYP
+Bonnybridge/M
+Bonnyrigg/M
+bonobo/SM
+bonsai/SM
+Bonsall/M
+Bontnewydd/M
+bonus/MS
+Bonville/M
+Bonvilston/M
+bony/PT
+bonze/SM
+boo/DSGM
+boob/MDZGS
+boobook/SM
+booby-trap/SGDM
+booby/MS
+boodle/DMSG
+boogaloo/SGDM
+boogeyman/M
+boogie/SDM
+boogieing
+boohoo/SDG
+book/7GMDRJS
+bookaholic/SM
+bookbind/RGJ
+bookbindery/MS
+bookbinding/SM
+bookcase/SM
+booked/cA
+bookend/DSGM
+Bookham/M
+bookie/MS
+booking/SM
+bookish/YP
+bookkeep/RGJ
+bookkeeping/M Noun: usually uncountable
+bookland/SM
+booklet/SM
+booklice/M
+booklist/SM
+booklouse/M
+bookmaker/MS
+bookmaking/M Noun: usually uncountable
+bookman/M
+bookmark/GSDMR
+bookmarklet/SM
+bookmen/M
+bookplate/SM
+bookrest/SM
+books/cA
+bookseller/SM
+bookselling/M Noun: uncountable
+bookshelf/M
+bookshelves
+bookshop/MS
+bookslide/M
+bookstack/SM
+bookstall/SM
+bookstamp/M
+booksy
+bookwise
+bookwoman/M
+bookwork/M Noun: uncountable
+bookworm/MS
+bookwright/SM
+Boole/M
+boolean/SM
+Boolean/SM
+boom/SMGDR
+boomerang/GSDM
+boomy/PT
+Boon/M
+boon/SM
+Boone/M
+boonies
+boor/MS
+boorish/YP
+boost/RGSMD
+boosterism/SM
+boot/Mp
+boot/SAGD
+bootable
+bootblack/SM
+bootboy/SM
+bootee/SM
+Boötes/M
+Booth/MS
+booth/MS
+Bootham/M
+Boothby/M
+Boothroyd/M
+Boothtown/M
+bootie/SM
+bootkit/SM
+bootlace/SM
+Bootle/M
+bootleg/GSRD
+bootlick/SGDR
+bootloader/SM
+bootmaker/SM
+Booton/M
+bootprint/SM
+bootstrap/MDGS
+Bootton/M
+booty/SM
+booze/RZGDMS
+boozy/T
+bop/RGDS
+Bophuthatswana/M
+boracic
+borage/SM
+borane/SM
+Boraston/M
+borate/DMS
+borax/M Noun: uncountable
+Borazon/M
+Borchert/M
+Bordeaux/M
+Borden/M
+Bordentown/M
+border/dMSrp
+Border/M
+borderland/SM
+borderline/MS
+Bordon/M
+bore/RGSMkDW
+Boreal
+boreal
+borealis
+Borealis/M
+boredom/MS
+Boreham/M
+Borehamwood/M
+borehole/SM
+Borel/M
+Borelli/M
+borescope/SM
+Borg/M
+Borger/M
+Borges/M
+Borghini/M
+Borgnine/M
+Borgue/M
+boride/SM
+boring/MP
+Borio/M
+Boris/M
+Borjas/M
+bork/SGD
+Borko/M
+Borkowska/M
+Borland/M
+Borley/M
+Bormann/M
+born-again/SM
+born-free/SM
+born/AU
+born/p
+Borna/M
+borne
+Bornean/SM
+Borneo/M
+Bornholdt/M
+Bornholm/M
+bornite/SM
+Borobudur/M
+Borodin/M
+Borodino/M
+boron/M Noun: usually uncountable
+Boronia/M
+Boroondara/M
+borosilicate/SM
+borough/MS
+Boroughbridge/M
+Borrelli/M
+borrow/RGS7JD
+Borrowash/M
+Borrowby/M
+Borrowdale/M
+Borsalino/SM
+borscht/SM
+Borstal/M
+borstal/MS
+Borth/M
+Borthwick/M
+Bortz/M
+Borwick/M
+borzoi/MS
+Bosbury/M
+Bosch/M
+Boscobel/M
+Boscombe/M
+Bose/M
+bosh/SM
+Bosham/M
+Bosherton/M
+bosky
+Bosley/M
+Bosnia-Herzegovina/M
+Bosnia/M
+Bosniak/MS
+Bosnian/SM
+bosom/M
+bosom/UdS
+bosomy/T
+boson/SMW
+Bosphorus/M
+Bosporus/M
+Bosque/M
+boss/SzGMDZr
+Bossall/M
+Bossert/M
+Bossier/M
+Bossington/M
+bossism/SM
+bossy/TP
+bostin
+bosting
+Bostock/M
+Boston/M
+Bostonian/MS
+Bostwick/M
+bosun/SM
+Boswell/MS
+Boswellian
+Bosworth/M
+bot/SM
+botanical/SM
+botanise/SGD
+botanize/SGD
+botany/3WSMw1
+botch/SRGDM
+Botcherby/M
+Botesdale/M
+Botetourt/M
+botfly/SM
+both/Z
+Botha/M
+Bothal/M
+Botham/M
+Bothamsall/M
+Bothaw/M
+Bothell/M
+Bothenhampton/M
+bother/dS
+bothersome/Y
+Bothkennar/M
+Bothwell/M
+bothy/SM
+Botley/M
+Botnar/M
+botnet/SM
+Botolph-Lane/M
+Botolph/MS
+Botolphbridge/M
+Botox/D
+botriolite/M
+Botriphnie/M
+botryoid/SMO
+botryolite/M Noun: uncountable
+botryose
+botrytis/M
+botrytised
+botrytized
+Botswana/M
+Botswanan/SM
+Botswanian/SM
+Bott/M
+bottarga/M Noun: uncountable
+Botterell/M
+Bottesford/M
+Botticelli/M
+Bottisham/M
+bottle-fed
+bottle-feed/SG
+bottle-nosed
+bottle/RDGSM
+bottlebrush/SM
+bottleneck/MDGS
+bottlenose/SM
+bottlescrew/SM
+bottom-dweller/SM
+bottom-dwelling
+bottom-up
+bottom/dSMr
+Bottom/M
+bottomless/YP
+Bottomley/M
+bottommost
+Bottomore/M
+bottomry/SM
+bottomward/S
+Bottwnog/M
+botty/SM
+botuliform
+botulin/MO
+botulinum/M Noun: uncountable
+botulinus/M
+botulism/SM
+Botus/M
+Botusfleming/M
+Botwnnog/M
+Bouazizi/M
+Bouchaniche/M
+Bouchard/M
+Boucher/M
+Boucherville/M
+Bouckaert/M
+bouclé
+Boudica/M
+boudoir/MS
+bouffant/SM
+bougainvillea/SM
+bough/SM
+Boughrood/M
+bought
+Boughton/M
+bouillabaisse/SM
+bouillon/MS
+Boulcott/M
+boulder/dMS
+boulevard/MS
+Boulge/M
+boulle/M Noun: usually uncountable
+Boulogne/M
+Boulston/M
+Boulter/M
+Boultham/M
+Boulton/M
+Bouman/M
+bounce/kZSRG2DM
+bouncy/YT
+bound/ADSG
+Bound/M
+Boundary/M
+boundary/MS
+bounded/P
+bounden
+bounder/SM
+boundless/PY
+bounteous/YP
+Bountiful/M
+bountiful/P
+bounty/6DjSM
+bouquet/MS
+Bourbaki/M
+bourbon/MS
+Bourbon/MS
+Bourbonnais/M
+Bourdillon/M
+bourdon/SM
+bourée
+bourgeois/M Noun: usually uncountable
+bourgeoisie/MS
+Bourguiba/M
+Bourn/M
+bourn/SM
+Bourne/M
+bourne/SM
+Bournemouth/M
+Bournheath/M
+Bourock/M
+Bourret/M
+Bourse
+bourse/SM
+Bourtie/M
+Bourton-on-the-Hill/M
+Bourton-on-the-Water/M
+Bourton/M
+Bourtreehill/M
+boustrophedon/SM
+boustrophedonic/Y
+bout/MS
+boutique/SM
+boutiquey
+boutonnière/SM
+Bouvard/M
+Bouvet Bouvet Island
+Bouvier/M
+Bouyssou/M
+Bouzy/M
+Boveridge/M
+Bovey/M
+bovine/SMY
+Bovingdon/M
+bow-legged
+bow-saw/MS
+bow-tie/SM
+Bow/M
+bow/mRGDSM
+Bowden/M
+Bowdler/M
+bowdlerise/nDGS
+bowdlerize/nDSG
+Bowdon/M
+bowel/SGMD
+Bowells/M
+Bowels/M
+Bowen/M
+bower/d
+Bower/MS
+bowerbird/SM
+Bowerchalke/M
+Bowery/M
+Bowes/M
+bowfin/SM
+bowhead/SM
+Bowie/M
+bowie/SM
+bowing/M
+Bowker/M
+bowl/R6MSDG
+Bowland-with-Leagram/M
+Bowland/M
+bowleg/SM
+Bowles/M
+Bowley/M
+bowlful/SM
+bowline/SM
+Bowling/M
+bowling/M Noun: uncountable
+Bowmer/M
+Bowmore/M
+Bowness/M
+Bowral-Mittagong/M
+bowser/MS
+bowshot/SM
+bowsprit/MS
+bowstring/DMGS
+bowstrung
+Bowthorpe/M
+bowwow/SDMG
+bowyang/MS
+bowyer/SM
+box-office/SM
+box-shifter/SM
+box/DZ2RS6GM
+boxboard/M Noun: usually uncountable
+boxcar/MS
+boxfish/SM
+Boxford/M
+boxful/SM
+Boxgrove/M
+boxing/M Noun: uncountable
+Boxley/M
+boxlike
+Boxmoor/M
+Boxted/M
+boxthorn/SM
+boxtop/SM
+Boxwell/M
+boxwood/SM
+Boxworth/M
+boxy/T
+boy/MSr
+Boyatt/M
+Boyce/M
+boycott/SGDr
+Boyd/M
+Boydell/M
+Boyes/M
+boyfriend/SM
+boyhood/SM
+boyish/PY
+Boyle/M
+Boyleston/M
+Boylestone/M
+Boyndie/M
+Boynton/M
+boyo/SM
+boyscout/SM
+boysenberry/MS
+Boyton/M
+Bozeat/M
+Bozeman/M
+bozo/SM
+Bozon/M
+BP
+BPD/M Noun: uncountable
+BPhil Bachelor of Philosophy
+bpi bits per inch
+bpm beats per minute
+bps bits per second
+Bq
+Br
+BR/M
+bra/WpSM
+Brabant/M
+Brabham/M
+Brabourne/M
+Bracadale/M
+Brace/M
+brace/SkGDMr
+Braceborough/M
+Bracebridge/M
+Braceby/M
+bracelet/SM
+Bracewell/M
+brachia/OM
+brachiator/MS
+brachii
+brachiopod/SM
+Brachiopoda Taxonomic phylum
+brachiosaurid/SM
+Brachiosaurus Taxonomic genus
+brachiosaurus/SM
+brachistochrone/MS
+brachium/M
+brachycephaly/WSM
+Brachycera Taxonomic suborder
+brachydont/MS
+brachylogy/M Noun: uncountable
+brachypellic
+brachytherapy/SM
+brachyuran/SM
+braciola/M
+Brackaville/M
+bracken/SM
+Brackenborough/M
+Brackenfield/M
+bracket/dSM
+bracketing/M
+Brackett/M
+brackish/P
+Brackla/M
+Brackley/M
+Bracknell/M
+Braco/M
+Bracon/M
+braconid/SM
+bract/MS
+bracteal
+bracteate/SM
+brad/DSGM
+bradawl/SM
+Bradbourne/M
+Bradburn/M
+Bradbury/M
+Braddan/M
+Bradden/M
+Braddock/M
+Bradenham/M
+Bradenstoke/M
+Bradenton/M
+Bradfield/M
+Bradford-on-Avon/M
+Bradford-on-Tone/M
+Bradford/M
+Brading/M
+Bradley/M
+Bradleyfield/M
+Bradleys/M
+Bradman/M
+Bradmore/M
+Bradninch/M
+Bradnop/M
+Bradoc/M
+Bradon/M
+Bradpole/M
+Bradshaw/M
+Bradstock/M
+Bradstone/M
+Bradwall/M
+Bradwell-on-Sea/M
+Bradwell/M
+Bradworthy/M
+Brady/M
+bradycardia/SM
+bradykinin/SM
+bradyon/SM
+Brae/M
+brae/SMQ
+Braemar/M
+Braes/M
+Brafferton/M
+Brafield/M
+brag/TSDRG
+Braga/M
+Bragg/M
+braggadocio/MS
+braggart/MS
+Brahe/M
+Brahma/M
+Brahman/MS
+Brahmana/SM
+Brahmani/M
+Brahmanic/O
+Brahmanism/M
+Brahmaputra/M
+Brahmin/MS
+Brahms/M
+braid/DGSJrM
+braiding/M
+Braidwood/M
+brail/DGMS
+Brailes/M
+Braille/SMGDJ
+Brailsford/M
+brain-damaged
+brain-dead
+brain/GD2pMZS
+brainbox/SM
+braincase/SM
+braincell/SM
+brainchild/M
+brainchildren/M
+Brainerd/M
+brainless/PY
+brainpower/M Noun: usually uncountable
+brainstem/SM
+brainstorm/SMDGr
+brainstorming/SM
+brainteaser/SM
+brainteasing
+Braintree/M
+brainwash/SGDr
+brainwashing/M
+brainwave/SM
+brainwork/M Noun: uncountable
+brainy/PTY
+Braiseworth/M
+Braishfield/M
+Braithwaite/M
+Braithwell/M
+brake/SGDM
+brakeman/M
+brakemen/M
+brakesman/M
+brakesmen/M
+Bram/M
+Bramah/M
+Bramante/M
+Bramber/M
+bramble/GMYDS
+brambling/SM
+brambly/T
+Bramcote/M
+Bramdean/M
+Bramerton/M
+Bramfield/M
+Bramford/M
+Bramham/M
+Bramhope/M
+Bramley/MS
+Brampford/M
+Brampton/M
+Bramshall/M
+Bramshaw/M
+Bramshill/M
+Bramshott/M
+Bramwith/M
+Bran/M
+bran/SDGM
+Brancaster/M
+Brancepeth/M
+Branch/M
+branch/SMGDZ
+Branchburg/M
+branchia/OM
+branchiae/M
+branching/M
+branchiopod/SM
+branchlet/SM
+branchlike
+Branchville/M
+brand/MRGZSD
+brandade/SM
+Brandão/M
+branded/Ua
+Brandenburg/M
+brander/dSM
+Branderburgh/M
+Brandesburton/M
+Brandeston/M
+Brandi/M
+brandish/SGDr
+Brandiston/M
+Brando/M
+Brandon/M
+Brandreth/M
+Brandsby-cum-Stearsby/M
+Brandsby/M
+Brandt/M
+brandy/GMDS
+brandywine/SM
+Branford/M
+brank/SM
+Brannon/M
+Branquinho/M
+Branscombe/M
+Bransdale/M
+Bransford/M
+Bransgore/M
+Branson/M
+Branston/M
+Brant/M
+Brantford/M
+Brantham/M
+Brantingham/M
+Brantley/M
+Branton/M
+Branxton/M
+Braque/M
+bras/2GzZD
+Brash/M
+brash/YSPTM
+Brasilia/M
+Brasília/M
+Brașov/M
+brass-necked
+brass/MS
+brassard/SM
+brasserie/SM
+brassfounder/SM
+brassic
+brassica/MS
+brassiere/MS
+Brassington/M
+brassware/SM
+brassy/TSMP
+Brasted/M
+brat/MZS
+Bratislava/M
+Bratoft/M
+brattice/MS
+Brattleboro/M
+Brattleby/M
+Bratton/M
+bratty/T
+bratwurst/MS
+Braughing/M
+Braun/M
+Brauncewell/M
+Braunfels/M
+braunite/SM
+Braunston-in-Rutland/M
+Braunston/M
+Braunstone/M
+Braunton/M
+bravado/M
+brave/DYyTGPSM
+braveheart/SM
+bravery/SM
+bravest/M Noun: uncountable
+bravo/GDSM
+bravura/MS
+Brawby/M
+Brawdy/M
+Brawith/M
+brawl/MRGSD
+Brawley/M
+brawn/ZSM2
+Brawndo/M
+brawny/T
+Braxted/M
+Braxton/M
+Bray/M
+bray/SGDr
+Braybrooke/M
+Braydeston/M
+Braydon/M
+Brayfield/M
+Brayford/M
+Brayton/M
+braze/DSGM
+brazen/dYP
+brazier/SM
+Brazil/M
+Brazilian/SM
+Brazoria/M
+Brazos/M
+Brazzaville/M
+BrE British English
+Brea/M
+breach/DRSGM
+bread-and-butter
+bread/HDMSG
+Bread/M
+breadbasket/MS
+breadboard/DGMS
+breadbox/SM
+breadcrumb/SDM
+breadfruit/MS
+breadhead/SM
+breadline/MS
+Breadsall/M
+breadstick/SM
+breadth/SM
+breadthways
+breadthwise
+breadwinner/SM
+breadwinning/M Noun: uncountable
+Bready/M
+Breage/M
+break-bulk
+break-fall/SM
+break-in/SM
+break-off/SM
+break-up/SM
+break/eMS
+breakable/S
+breakage/MS
+breakaway/MS
+breakbeat/SM
+breakdance/GRDSM
+breakdown/SM
+breaker/SM
+breakfast/MRGDS
+breakfront/SM
+breaking/M
+breakneck/SM
+breakout/MS
+breakpoint/DGMS
+breakthrough/MS
+breaktime/SM
+breakup/SM
+breakwater/SM
+breakwind/MS
+bream/DSG
+Bream/M
+Breamore/M
+Brean/M
+Breane/M
+Breanne/M
+Brearton/M
+breast-beating/M
+breast/DGMSp=
+breastbone/SM
+breastfed
+breastfeed/GS
+breasthook/SM
+breasting/M
+Breaston/M
+breastpin/SM
+breastplate/MS
+breaststroke/SMr
+breastsummer/SM
+breastwork/MS
+breath/RpZDS7JGM
+breathability/SM
+breathalyse/SDr
+breathe/SGD
+breathing/M
+Breathitt/M
+breathless/YP
+breathtaking/Y
+breathy/T
+Brec/M
+breccia/SM
+brecciate/SGDN
+Brechfa/M
+Brechin/M
+Brecht/M
+Breckenbrough/M
+Breckenridge/M
+Breckinridge/M
+Breckland/M
+Breckles/M
+Brecknock/M
+Brecknockshire/M
+Brecksville/M
+Brecon/M
+bred
+Brede/M
+Bredenbury/M
+Bredfield/M
+Bredgar/M
+Bredhurst/M
+Bredicot/M
+Bredin/M
+Bredman/M
+Bredon/M
+Bredwardine/M
+Bredy/M
+Bree/MS
+breech-loaded
+breech-loader/SM
+breech-loading
+breech/SGMDJ
+breed/MRGJS
+Breedon/M
+breeze/MGSD
+breezy/TPY
+Brefi/M
+Bregas/M
+Bregman/M
+Breich/M
+Breightmet/M
+Breinton/M
+Breisgau/M
+Breitinger/M
+Brelade/M
+Bremen/M
+Bremer/M
+Bremerton/M
+Bremhill/M
+Bremilham/M
+Bremner/M
+bremsstrahlung/SM
+Bren/M
+Brenau/M
+Brenchley/M
+Brenda/M
+Brendan/M
+Brendon/M
+Brenham/M
+Brenna/M
+Brennan/M
+Brenner/M
+Brent/M
+brent/SM
+Brentford/M
+Brentor/M
+Brentwood/M
+Brenzett/M
+Breock/M
+Breoke/M
+Brereton/M
+Brescia/M
+Bresenham/M
+Breslau/M
+Breslin/M
+Bressay/M
+Bressingham/M
+Bresson/M
+bressummer/SM
+Brest/M
+Bretby/M
+Bretford/M
+Bretforton/M
+Bretherton/M
+brethren
+Brethren/M
+Breton/MS
+Brett/M
+Brettenham/M
+Brettler/M
+Bretton/M
+bretylium/M Noun: uncountable
+Breughel/M
+Breuss/M
+Brevard/M
+breve/MS
+brevet/dMGDS
+Brevett/M
+breviary/SM
+brevity/MS
+brew/RGMDS
+Breward/M
+Brewer/MS
+brewery/SM
+Brewham/M
+brewhouse/SM
+brewing/M
+Brewis/M
+Brewitt/M
+Brewood/M
+Brewster/M
+Brexit/Mr
+Brexiteer/SM
+Breydon/M
+Brezhnev/M
+Brian/M
+briar/SMZ
+Briavels/M
+bribe/BDRySGM
+bribery/SM
+bric-à-brac/M Noun: uncountable
+bric-a-brac/M Noun: uncountable
+bric/DG
+Brice/M
+Bricett/M
+brick-red
+brick/drSM
+Brick/M
+brickbat/MS
+Brickendon/M
+brickfielder/MS
+Brickhill/M
+brickie/SM
+bricklayer/SM
+bricklaying/SM
+Bricklehampton/M
+Brickley/M
+brickmason/SM
+brickwork/SM
+brickyard/MS
+bricolage/SM
+bricoleur/SM
+bridal/Y
+bride-to-be/M
+bride/SM
+bridegroom/MS
+Bridekirk/M
+Bridell/M
+Bridenstine/M
+brides-to-be/M
+bridesmaid/MS
+Bridestowe/M
+Bridewell/M
+Bridford/M
+Bridge/M
+bridge/MGSD
+bridgeable/U
+bridgehead/SM
+Bridgemere/M
+Bridgend/M
+Bridgenorth/M
+Bridgeport/M
+Bridger/M
+Bridgerule/M
+Bridgestone/M
+Bridget/M
+Bridgeton/M
+Bridgetown/M
+Bridgeview/M
+Bridgewater/M
+bridgework/MS
+Bridgford/M
+Bridgham/M
+bridging/SM
+Bridgman/M
+Bridgnorth/M
+Bridgtown/M
+Bridgwater/M
+bridle/MGSD
+bridleway/SM
+Bridlington/M
+bridoon/MS
+Bridport/M
+Bridstow/M
+Brie/M
+brief/pTJSYDPGrM
+briefcase/MS
+brier/SM
+Briercliffe/M
+Brierfield/M
+Brierley/M
+Brierly/M
+Brierton/M
+Briet/M
+Briffa/M
+brig/MS
+brigade/GDSM
+brigadier/SM
+Brigadoon/M
+brigalow/MS
+brigand/SM
+brigandage/SM
+brigandine/MS
+brigandry/M Noun: usually uncountable
+brigantine/SM
+Brigg/MS
+Brigham/M
+Brighouse/M
+Brighstone/M
+bright-eyed
+Bright/M
+bright/TPGY
+brighten/drS
+Brightling/M
+Brightlingsea/M
+Brighton/MS
+Brightside/M
+Brightstone/M
+Brightwalton/M
+Brightwater/M
+Brightwell-cum-Sotwell/M
+Brightwell/M
+brightwork/M Noun: usually uncountable
+Brigitte/M
+Brignall/M
+Brigsley/M
+Brigstock/M
+Brihaspati/M
+Brill/M
+brill/SM
+Brilley/M
+brilliance/SMZ
+brilliancy/SM
+brilliant/PSYM
+brilliantine/M
+Brillouin/M
+brim/DGMSp6
+Brimbank/M
+Brimfield/M
+Brimington/M
+Brimley/M
+brimonidine/M Noun: uncountable
+Brimpsfield/M
+Brimpton/M
+Brimscombe/M
+brimstone/SM
+Brinch/M
+Brindisi/M
+Brindle/M
+brindle/MDS
+Brindley/M
+brine/SGDZMr
+bring/RSG
+Bringhurst/M
+Brington/M
+Briningham/M
+brinjal/MS
+brink/MS
+Brinkburn/M
+Brinkhill/M
+Brinkley/M
+Brinklow/M
+Brinkman/M
+Brinkmann/M
+brinkmanship/MS
+Brinkworth/M
+Brinsley/M
+Brinsop/M
+Brinsworth/M
+Brinton/M
+briny/TPM
+brio/M Noun: uncountable
+brioche/SM
+Briot/M
+briquet/MS
+briquette/SM
+Brisbane/M
+brisk/TYPSGD
+brisket/SM
+Brisley/M
+Brislington/M
+Brisson/M
+bristle/SMYGD
+bristlebird/SM
+bristlecone/SM
+bristletail/MS
+bristly/T
+Bristo/M
+Bristol/M
+bristols
+Briston/M
+Brit.
+Brit/SM
+Britain/M
+Britannia/M
+Britannic/M
+Britannica/M
+britches
+Britford/M
+Brithdir/M
+Briticism/SM
+British/RYP
+Britishism/SM
+Britney/M
+Brito/M
+Briton/SM
+Britpop/RM
+Britt/M
+Brittany/M
+Britten/M
+brittle/DTGPSYM
+brittlely
+brittlestar/SM
+Britton/M
+Brittonic/M
+Britwell/M
+britzka/MS
+britzska/MS
+Brixham/M
+Brixit/M
+Brixton/M
+Brixworth/M
+Brize/M
+Brizlincote/M
+BRM
+Brno/M
+bro/SM
+broach/SGDrM
+broad-brush
+broad-minded/YP
+Broad/M
+broad/TYSMP
+broadband/M Noun: usually uncountable
+broadbill/SM
+Broadbridge/M
+broadcast/M
+broadcast/SdAR
+broadcasting/SM
+broadcloth/SM
+broaden/Srd
+Broadfield/M
+Broadford/M
+Broadgate/M
+Broadheath/M
+Broadhembury/M
+Broadhempston/M
+Broadholme/M
+Broadland/M
+broadleaf/M
+broadleaved
+broadleaves
+broadloom/MSD
+Broadman/M
+Broadmayne/M
+Broadmead/M
+Broadmoor/M
+Broadoak/M
+broadsheet/SM
+broadside/SMGD
+Broadstairs/M
+broadsword/MS
+broadtail/MS
+Broadview/M
+Broadwalk/M
+Broadwas/M
+Broadwater/M
+Broadway/M
+broadway/MS
+Broadwell/M
+Broadwindsor/M
+Broadwood/M
+Broadwoodkelly/M
+Broadwoodwidger/M
+Brobdingnagian/SM
+Brobury/M
+brocade/DMSG
+broccoli/MS
+brochette/SM
+brochure/SM
+Brock/M
+brock/MS
+Brockagh/M
+Brockbank/M
+Brockden/M
+Brockdish/M
+Brocken/M
+Brockenhurst/M
+brocket/MS
+Brockhall/M
+Brockham/M
+Brockhampton/M
+Brockholes/M
+Brockhurst/M
+Brocklesby/M
+Brockley/M
+Brockmeier/M
+Brockmoor/M
+Brockton/M
+Brockville/M
+Brockweir/M
+Brockworth/M
+Brocot/M
+Brocton/M
+Brod/M
+Brode/M
+Brodess/M
+Brodick/M
+Brodie/M
+Brodrick/M
+Brodsworth/M
+Broederbond/M
+Brogborough/M
+Brogdale/M
+Brogden/M
+brogue/SM
+broil/GRSDM
+broke/RG
+broken-down
+broken-hearted/YP
+Broken/M
+broken/UY
+Brokenborough/M
+brokenness/M
+broker/SdM
+brokerage/MS
+brolly/SM
+bromance/SM
+bromantic
+Bromberg/M
+Bromborough/M
+Brome-Missisquoi/M
+Brome/M
+bromeliad/SM
+Bromesberrow/M
+Bromeswell/M
+Bromfield/M
+Bromford/M
+Bromham/M
+bromide/SMW
+bromine/SM
+bromism/M Noun: usually uncountable
+Bromley/M
+bromoacetate/SM
+bromobutyl/M Noun: uncountable
+bromocriptine/M Noun: usually uncountable
+bromoform/M Noun: usually uncountable
+Bromont/M
+Bromoviridae Taxonomic family
+bromovirus/SM
+Brompton-on-Swale/M
+Brompton/M
+Bromsberrow/M
+Bromsgrove/M
+Bromswold/M
+Bromwich/M
+Bromyard/M
+Bron-gwyn/M
+bronchi/MO
+bronchiectasis/M
+bronchiolar
+bronchiole/MS
+bronchiolitis/M
+bronchitic/SM
+bronchitis/MS
+bronchocele/SM
+bronchodilation/SM
+bronchodilator/SM
+bronchogenic
+bronchopneumonia/SM
+bronchopulmonary
+bronchoscope/SMWZ
+bronchospasm/SM
+bronchospastic
+bronchus/M
+bronco/MS
+broncobuster/MS
+Bronington/M
+Bronllys/M
+Bronson/M
+brontosaur/SM
+brontosaurus/SM
+Bronwydd/M
+Bronx/M
+Bronze/SM
+bronze/SMGDRZ
+bronzing/M
+brooch/SM
+brood/GMZRSDk
+broodmare/SM
+broody/TP
+brook/DSMG
+Brook/MS
+Brookby/M
+Brooke/MS
+Brookeborough/M
+Brookenby/M
+Brookfield/MS
+Brookhaven/M
+Brookhouse/M
+Brookings/M
+Brookland/MS
+brooklet/SM
+brooklime/SM
+Brookline/M
+Brooklyn/M
+Brookman/M
+Brooksby/M
+brookside/SM
+Brookthorpe-with-Whaddon/M
+Brookthorpe/M
+brookweed/SM
+broom/GMSD
+Broom/M
+broomball/SM
+Broome/M
+Broomfield/M
+Broomfleet/M
+Broomhall/M
+Broomhill/M
+Broomhouse/M
+Broomknoll/M
+broomrape/SM
+Broomsthorpe/M
+broomstick/MS
+Brora/M
+Bros.
+brose/SM
+Broseley/M
+Brossard/M
+broth/RMS
+brothel/SM
+brother-in-law/M
+brother/dYSM
+Brotherhood
+brotherhood/MS
+brotherly/P
+brothers-in-law/M
+Brothertoft/M
+Brotherton/M
+Brotton/M
+Brough/M
+Brougham/M
+brougham/SM
+Broughshane/M
+brought
+Broughton/M
+Broughty/M
+brouhaha/MS
+Brouwer/M
+brow/SM
+Broward/M
+browbeat/GSr
+browbeaten
+Brown/M
+brown/YGPMSTD~
+Browne/M
+Brownell/M
+brownfield/SM
+Brownian
+Brownie/MS
+brownie/SMT
+browning/SM
+Brownlee/M
+Brownlow/M
+brownout/SM
+Brownsburg-Chatham/M
+Brownsburg/M
+Brownside/M
+brownstone/MS
+Brownstown/M
+Brownsville/M
+browntop/SM
+Brownwood/M
+browny
+brows/SDRBG
+browse
+Browston/M
+Broxa-cum-Troutsdale/M
+Broxbourne/M
+Broxburn/M
+Broxholme/M
+Broxted/M
+Broxton/M
+Broxtowe/M
+Brozman/M
+brr
+Bruan/M
+Bruant/M
+Brubeck/M
+Bruce/M
+brucelloses
+brucellosis/M
+Bruch/M
+Bruckner/M
+Brudenell/M
+Bruegel/M
+Brueghel/M
+Bruer/M
+Bruera/M
+Bruern/M
+Bruerne/M
+Bruges/M
+bruin/SM
+bruise/RGSDJM
+Bruisyard/M
+bruit/SdrM
+Brum/M
+brume/SM
+Brummagem
+Brummie/SM
+Brumstead/M
+brunch/SDGM
+Brundage/M
+Brundall/M
+Brundish/M
+Brundtland/M
+Brunei/M
+Brunel/M
+brunello/M
+brunet/SM
+brunette/MS
+Bruno/M
+Brunschwig/M
+Brunswick/M
+brunt/DMGS
+Bruntingthorpe/M
+Brunton/M
+bruschetta/SM
+brush-off/SM
+brush-turkey/SM
+brush-up/SM
+brush/ZGSDMrp
+brushback/SM
+Brushfield/M
+brushfire/SM
+Brushford/M
+brushier
+brushlike
+brushstroke/SM
+brushtail/SM
+brushwood/SM
+brushwork/SM
+brusque/PTY
+Brussels/M
+brut
+brutal/3qQ8-
+brutalism/SM
+brutality/MS
+brute/GSMoDr
+brutish/PY
+Bruton/M
+Brutus/M
+bruv/SM
+bruvver/SM
+bruxism/M Noun: usually uncountable
+Bryan/M
+Bryansford/M
+Bryanston/M
+Bryant/M
+Bryce/M
+Bryde/M
+Brydekirk/M
+Brydon/M
+Bryher/M
+Brylcreem/MD
+Brymbo/M
+Brympton/M
+Bryn-crug/M
+Bryn-Gwyn/M
+Bryn/M
+Bryncroes/M
+Bryndwr/M
+Bryne/M
+Bryneglwys/M
+Brynford/M
+Bryngwran/M
+Bryngwyn/M
+Bryning-with-Warton/M
+Brynmawr/M
+Brynpabuan/M
+bryology/w3M
+Bryon/M
+bryony/SM
+Bryophyta Taxonomic division + Taxonomic phylum
+bryophyte/SMW
+Bryozoa Taxonomic phylum
+bryozoan/SM
+bryozoology/M Noun: uncountable
+Bryson/M
+Brythonic
+Bs
+BSA/M
+BSc/SM
+BSD/M
+BSE/M
+BSkyB/M
+BSOD/SM
+BST/M
+BTC/M Noun: uncountable
+BTU/SM
+BTW
+bu.
+Buan/M
+Bubb/M
+Bubbenhall/M
+bubble/GYSMD
+bubblegum/SMZ
+bubbly/TM
+Bubnell/M
+bubo/M
+buboes
+bubonic
+bubonocele/MS
+Bubwith/M
+bucatini/M Noun: uncountable
+buccal
+buccaneer/GDSM
+buccinator/SM
+Buccleuch/M
+Bucephalus/SM
+Buch/M
+Buchan/M
+Buchanan/M
+Bucharest/M
+Buchenwald/M
+Buchlyvie/M
+buck-passing/M Noun: uncountable
+buck/SMDGr
+buckbean/SM
+Buckby/M
+Buckden/M
+Buckenham/M
+Buckerell/M
+bucket/Sd6M
+bucketful/SM
+bucketwheel/SM
+Buckeye/M
+buckeye/MS
+Buckfastleigh/M
+Buckhaven/M
+Buckholt/M
+Buckhorn/M
+buckhorn/SM
+buckhound/SM
+Buckhurst/M
+Buckie/M
+Buckingham/M
+Buckinghamshire/M
+Buckland/MS
+buckle/RGSMD
+Bucklebury/M
+Bucklesham/M
+Buckley/M
+buckling/SM
+Buckminster/M
+buckminsterfullerene/SM
+Buckna/M
+Bucknall/M
+Bucknell/M
+Buckner/M
+buckram/dMS
+Bucks/M
+bucksaw/MS
+Bucksburn/M
+Bucksch/M
+buckshee/SM
+buckshot/MS
+buckskin/DSM
+buckteeth/M
+buckthorn/SM
+Buckton/M
+bucktooth/DM
+buckwheat/SM
+Buckworth/M
+Bucky/M
+bucky/SM
+buckyball/SM
+buckytube/SM
+bucolic/YSM
+Bucyrus/M
+bud/SGDMZ
+Budapest/M
+Budbrooke/M
+Budby/M
+Budd/M
+Buddha/MSW
+Buddhahood/M Noun: uncountable
+Buddhaship/M
+Buddhism/M Noun: usually uncountable
+Buddhist/SMW
+Buddhistical/Y
+Buddhology/3wM
+buddleia/SM
+buddy/MSGD
+Bude-Stratton/M
+Budeaux/M
+budesonide/M Noun: uncountable
+budge/DGS
+budgerigar/MS
+budget/rSdM
+budgetary/Y
+budgie/MS
+Budleigh/M
+budo/M Noun: uncountable
+Budock/M
+Budokan/M
+budstick/SM
+budtender/SM
+Budville/M
+Budweiser/M
+budwood/M Noun: uncountable
+budworm/SM
+Budworth/M
+Buell/M
+Buena/M
+Buenaventura/M
+Buendia/M
+Buenos
+Bueren/M
+Buerton/M
+buff-tip/M
+buff/RSMDG
+Buffalo/M
+buffalo/M
+buffaloes
+buffer/rd
+buffet/SdJM
+Buffett/M
+bufflehead/SM
+buffo/SM
+buffoon/SM~
+buffoonery/MS
+Buford/M
+bug-eyed
+bug/CRGSD
+bug/Mp
+bugaboo/SM
+Bugatti/M
+bugbane/SM
+bugbear/MS
+Bugbrooke/M
+Bugeildy/M
+bugfix/SM
+bugger/SdM
+buggery/SM
+Buggins/M
+buggy/MTS
+bugle/RGDMS
+buglet/MS
+Bugthorpe/M
+Bugzilla/M
+Buhai/M
+Buick/M
+build-up/SM
+build/RGJS7M
+buildability/M Noun: uncountable
+building/MeS
+builds/Ac
+Buildwas/M
+built-in
+built-up
+built/Ac
+Builth/M
+Buittle/M
+Buj/M
+Bujold/M
+Bujumbura/M
+Bukhara/M
+bukkake/M Noun: uncountable
+Bukowski/M
+Bukrin/M
+Bulawayo/M
+bulb/DSGM
+bulbar
+Bulbeck/M
+bulbil/SM
+bulblet/SM
+bulbospongiosi/M
+bulbospongiosus/M
+bulbous/Y
+Bulbridge/M
+bulbul/SM
+Bulcote/M
+Bulford/M
+Bulgar/MS
+Bulgaria/M
+Bulgarian/MS
+bulge/ZGDMSk
+bulgy/T
+bulimarexia/SM
+bulimarexic/SM
+bulimia/SMW
+bulk/ZSMD2Gr
+Bulkeley/M
+bulkhead/DSM
+Bulkington/M
+Bulkworthy/M
+bulky/TPY
+bull's-eye/SM
+bull/GYSMD
+bulla/M
+bullace/MS
+bullae/M
+Bullard/M
+bulldog/MS
+bulldoze/RGDS
+Bullen/M
+Buller/M
+bullet/dSM
+bulletin/MdS
+bulletproof/SGD
+Bulley/M
+bullfight/RSMG
+bullfighting/M Noun: usually uncountable
+bullfinch/MS
+bullfrog/SM
+bullhead/hMDSi
+Bullhead/M
+bullheaded/PY
+bullhide
+bullhorn/SM
+Bulli Bulli soil
+Bullingham/M
+Bullinghope/M
+Bullington/M
+bullion/SM
+bullish/PY
+Bullitt/M
+Bulloch/M
+Bullock/M
+bullock/SM
+bullocky/SM
+Bullokar/M
+Bullough/M
+bullpen/SM
+bullring/SM
+bullroarer/MS
+bullseye/SM
+bullshit/RSDMG!
+bullshot/SM
+bullwhacker/SM
+bully/DGTMS
+bullyboy/SM
+bullying/SM
+bullyrag/SGDJ
+Bulmer/M
+Bulphan/M
+bulrush/SM
+bulwark/MGDS
+Bulwell/M
+Bulwick/M
+bum-bailiff/SM
+bum-sucker/SM
+bum-sucking/M Noun: uncountable
+bum/SDRGTM
+bumbag/SM
+bumble/DRkSG
+bumblebee/SM
+bumbledom/M
+bumboat/SM
+bumboy/SM
+bumf/M
+bumfluff/M
+bumhole/SM
+bump/DRGZS2
+bumper/dSM
+bumph/M
+bumpkin/MS
+Bumpstead/M
+bumptious/PY
+bumpy/TPY
+bumsters
+bun/MZS
+Bunbury/M
+bunce/M Noun: uncountable
+bunch/ZSDGM
+bunchflower/SM
+bunchy/T
+bunco/SM
+buncombe/M
+Buncombe/M
+Buncton/M
+Bundaberg/M
+Bundesliga/M
+Bundesrat/M
+Bundestag/M
+bundle/MS
+bundle/UDG
+bundler/SM
+Bundt
+Bundy/M
+Buneman/M
+Bunessan/M
+bunfight/SM
+bung/GMDS
+bungalow/SM
+bungarotoxin/SM
+Bungay/M
+bungee/SM
+bunghole/SM
+bungle/GkDRSM
+Bunhill/M
+bunion/SM
+bunk/M
+bunk/RCSDG
+bunker/dM
+bunkhouse/MS
+Bunkle/M
+bunkmate/MS
+bunko/SM
+bunkum/M
+Bunnell/M
+Bunny/M
+bunny/MS
+Bunnythorpe/M
+bunodont/MS
+Bunsen/M
+bunt/RSGDJM
+bunting/SM
+Buntingford/M
+buntline/SM
+Bunwell/M
+bunya/SM
+bunyip/SM
+buoy/SGMD
+buoyage/SM
+buoyancy/MS
+buoyant/Y
+bupropion/M Noun: uncountable
+bur/DGSYM
+burb/SM
+Burbage/M
+Burbank/M
+Burberry/M
+Burbidge/M
+burble/GSDrM
+burbot/SM
+Burca/M
+Burch/M
+Burchfield/M
+Burcombe/M
+burden/dMS
+burdened/Uc
+burdening/c
+burdens/cU
+burdensome/PY
+Burdett-Coutts/M
+Burdick/M
+burdock/MS
+Burdon/M
+Bureau/M
+bureau/MS
+bureaucracy/MS
+bureaucrat/1QWq8SM-
+Burel/M
+Buren/M
+Bures/M
+Burfict/M
+Burford/M
+burg/RSM
+Burgas/M
+Burgate/M
+burgee/SM
+burgeon/SDGM
+burgess/MS
+Burgh/M
+burgh/RMSO
+Burghclere/M
+Burghead/M
+Burghfield/M
+Burghill/M
+Burghley/M
+Burghwallis/M
+burglar/MS
+burglarious/Y
+burglarproof/SGD
+burglary/SM
+burgle/SDG
+burgomaster/SM
+burgonet/SM
+Burgos/M
+Burgoyne/M
+burgrave/SM
+Burgundian/SM
+Burgundy/M
+burgundy/SM
+Burham/M
+burial/SAM
+Buridan/M
+buried/U
+Burien/M
+burier/SM
+burin/SM
+Buriton/M
+Burk/M
+burka/SM
+Burkard/M
+Burkburnett/M
+Burke/M
+Burkey/M
+burkha/SM
+Burkhardt/M
+Burkina/M
+burl/2MDSr
+Burland/M
+burlap/MS
+Burleigh/M
+Burlescombe/M
+Burleson/M
+burlesque/DYRMSG
+Burleston/M
+Burley/M
+burley/SM
+Burleydam/M
+Burlingame/M
+Burlingham/M
+Burlington/M
+burly/T
+Burma/M
+Burman/MS
+Burmarsh/M
+Burmese/M
+Burmington/M
+burn/DR7kSGJM
+Burn/M
+burnable/SM
+Burnaby/M
+Burnage/M
+Burnaston/M
+Burnby/M
+Burnden/M
+Burne/M
+Burnell/M
+Burneside/M
+Burness/M
+Burneston/M
+Burnet/M
+Burnett/M
+Burney/M
+Burnfoot/M
+Burnham-on-Crouch/M
+Burnham-on-Sea/M
+Burnham/M
+Burnhead/M
+Burnie-Wynyard/M
+burnish/RSGD
+Burniston/M
+Burnley/M
+burnous/SM
+burnout/MS
+Burns/M
+Burnsall/M
+Burnside-Blairbeth/M
+Burnside/M
+Burnsville/M
+burnt/Y
+Burntisland/M
+burntness/M Noun: uncountable
+Burntwood/M
+burp/MDSG
+Burpham/M
+burqa/SM
+Burr/M
+burr/MS
+Burra/M
+burrawang/SM
+Burray/M
+Burrell/M
+Burrelton/M
+Burren/M
+burrfish/SM
+Burridge/M
+Burrill/M
+Burrillville/M
+Burringham/M
+Burrington/M
+burrito/SM
+Burrough/MS
+Burrow-with-Burrow/M
+burrow/DMGSR
+Burrowbridge/M
+Burry/M
+Bursa/M
+bursa/yM
+bursae/M
+bursar/MS
+bursary/MS
+Burscough/M
+bursitis/SM
+Bursledon/M
+Burslem/M
+burst/eS
+burst/Gr
+Burstall/M
+Burstead/M
+Burstein/M
+Burstock/M
+Burston/M
+Burstow/M
+Burstwick/M
+bursty Adjective
+Burstyn/M
+Burt/M
+Burtenshaw/M
+Burtle/M
+Burton-cum-Walden/M
+Burton-in-Kendal/M
+Burton-on-Yore/M
+Burton/M
+Burtonwood/M
+Burtt/M
+Burundi/M
+Burwardsley/M
+Burwarton/M
+Burwash/M
+Burwell/M
+Burwood/M
+bury/ADSG
+Bury/M
+Buryan/M
+Burythorpe/M
+bus/MAS
+busbar/SM
+Busbridge/M
+Busby/M
+busby/SM
+Buscel/M
+Buscell/M
+Busch/M
+Buscot/M
+Bush/M
+bush/S2mGMJZDr
+bushbuck/SM
+Bushbury/M
+Bushby/M
+bushel/MSDGJ
+bushelful/SM
+Bushell/M
+Bushey/M
+bushfire/SM
+bushido/M Noun: uncountable
+bushing/SM
+bushland/SM
+Bushley/M
+Bushman/M
+bushmaster/MS
+bushmeat/M Noun: usually uncountable
+Bushmen/M
+Bushmills/M
+Bushnell/M
+bushwhack/GRSD
+bushwhacking/SM
+Bushwood/M
+bushy/T
+business/m5SM
+businesslike
+businesspeople/M
+businessperson/SM
+Busk/M
+busk/MRSGD
+buskin/SM
+buskined
+Buslingthorpe/M
+busman/M
+busmen/M
+buspirone/M Noun: uncountable
+Buss/M
+Busse/M
+Busselton/M
+bust/RGZSMD
+bustard/MS
+bustian/SM
+bustier/SM
+bustle/kSGDM
+busty/T
+busway/SM
+busy/PSYTGDM
+busybody/SM
+busyness/M Noun: uncountable
+busywork/SM
+but/DAGS
+butadiene/MS
+butane/MS
+butanoic
+butanol/SM
+butch/RySM
+butcher-bird/SM
+butcher/dYr
+butchery/SM
+Butcombe/M
+Bute/M
+butene/MS
+Buteshire/M
+Butetown/M
+Butleigh/M
+butler/dSM
+Butler/MS
+Butley/M
+Butlins/M
+butt/SMZ
+Butte-Silver/M
+Butte/M
+butter/drZSp
+butterball/MS
+butterbur/MS
+Buttercrambe/M
+buttercream/SM
+buttercup/MS
+butterfat/MS
+Butterfield/M
+butterfingered
+butterfingers
+butterfish/SM
+butterfly/DGMS
+Butterleigh/M
+Buttermere/M
+buttermilk/SM
+butternut/SM
+butterscotch/M Noun: usually uncountable
+Butterstone/M
+Butterton/M
+Butterwick/M
+butterwort/SM
+Butterworth/M
+buttery/TSM
+butting/SM
+Buttington/M
+buttock/DSMG
+button-quail/SM
+button/Mpr
+button/UdS
+buttonbush/SM
+buttonhole/DMSGR
+buttonhook/SM
+buttonweed/SM
+buttonwood/SM
+buttress/SGDM
+Buttrick/M
+Butts/M
+Buttsbury/M
+butyl/SM
+butyrate/SM
+butyric
+Buxar/M
+Buxhall/M
+Buxlow/M
+buxom/YP
+Buxted/M
+Buxtehude/M
+Buxton/M
+Buxworth/M
+buy-back/SM
+buy/RSGM
+buyback/SM
+buyout/SM
+buzz/MDRSGZ
+Buzzard/M
+buzzard/SM
+buzzword/SM
+bx
+bxs
+by
+by-blow/SM
+by-election/SM
+by-law/MS
+by-product/SM
+By/M
+Byard/M
+Byblos/M
+bye-bye/SM
+bye-law/SM
+bye/MS
+Byelorussia/M
+Byelorussian/SM
+Byers/M
+Byfield/M
+Byfleet/M
+Byford/M
+bygone/SM
+Bygrave/M
+Byland/M
+Bylaugh/M
+Byley/M
+byline/GDSMR
+byname/SM
+Bynes/M
+Bynum/M
+bypass/MDSG
+bypath/SM
+byplay/SM
+Byram/M
+Byrd/M
+byre/SM
+Byrne/M
+Byrness/M
+byroad/MS
+Byron/WM
+Byronismyah/M
+bys
+Bysshe/M
+byssi/M
+byssinosis/M Noun: uncountable
+byssus/SM
+bystander/MS
+Bystolic/M
+byte/MS
+bytecode/SM
+Byth/M
+Bytham/M
+Bythorn/M
+Byton/M
+Byun/M
+Bywater/M
+byway/SM
+Bywell/M
+byword/SM
+byzantine/SM
+Byzantine/SM3
+Byzantinism/SM
+Byzantium/M Noun: uncountable
+c.elegans
+C.Lit.
+c/n
+CA
+Ca/O
+ca/O
+CAA Civil Aviation Authority
+Caaba/M
+caatinga/SM
+cab/GMDXVSNr
+cabal/GDSM
+cabala/MS
+cabaletta/SM
+cabalette/M
+Caballé/M
+caballero/SM
+cabana/SM
+cabaret/SM
+Cabarrus/M
+cabbage/DGSM
+Cabbala/M
+cabbalism/SM
+cabbalist/SMW
+cabbie/SM
+cabby/M
+cabdriver/MS
+Cabell/M
+Cabernet/M
+cabin/dMS
+cabinet/MyS
+cabinetmaker/SM
+cabinetmaking/SM
+cabinetry/SM
+cabinetwork/MS
+cable/DGSMp
+cablecast/SG
+cablegram/SM
+cabman/M
+cabmen/M
+Cabo/M
+cabochon/SM
+caboodle/SM
+caboose/MS
+Cabot/M
+cabotage/SM
+Cabourne/M
+Cabrach/M
+cabriolet/SM
+cabstand/SM
+Cabus/M
+cacao/SM
+cacciatora/M Noun: uncountable
+cacciatore/SM
+cachaca/SM
+cachalot/MS
+Cache/M
+cache/p7DGSMr
+cachectic
+cacheing
+cachepot/MS
+cachet/MdS
+cachexia/M
+Cacilda/M
+Cacioppo/M
+cacique/MS
+cackle/DRSYGM
+CACM
+cacodyl/SM
+cacographer/MS
+cacography/M archaic
+cacology/M Noun: usually uncountable
+cacomistle/MS
+cacophonous/Y
+cacophony/3SM
+cactaceous
+cacti/M
+cactus/MS
+cacuminal/SM
+CAD/M
+cad/MZS
+cadastral/SM
+cadaver/MSW
+cadaverous/YP
+Cadbury/M
+CADCAM/M Noun: uncountable
+Cadder/M
+Caddick/M
+caddie/M
+Caddington/M
+caddish/YP
+Caddo/M
+Caddonfoot/M
+caddy/MDSG
+Cadeby/M
+Cadeleigh/M
+Cadell/M
+cadence/CMS
+cadence/DG
+cadency/M
+cadent/C
+cadential
+cadenza/MS
+cadet/MS
+cadetship/MS
+Cadfarch/M
+cadge/DRSGM
+Cadillac/SM
+Cadman/M
+Cadmean
+cadmium/M
+cadmocene
+Cadnant/M
+Cadney/M
+Cadogan/M
+Cadoxton-juxta-Barry/M
+Cadoxton-juxta-Neath/M
+cadre/SM
+caducei/M
+caduceus/M
+caducity/M Noun: usually uncountable
+caducous Adjective
+Cadwalader/M
+Cadwell/M
+Cadzow/M
+caeca/OM
+caecilian/MS
+caecitis/M Noun: uncountable
+caecum/M
+Caelum/M
+caenagnathid/SM
+Caenby/M
+Caenorhabditis Taxonomic genus
+Caerau/M
+Caereinion/M
+Caerhays/M
+Caerhun/M
+Caerlaverock/M
+Caerleon/M
+Caernarfon/M
+Caernarfonshire/M
+Caernarvon/M
+Caernarvonshire/M
+Caerphilly/M
+Caersws/M
+Caerwent/M
+Caerwys/M
+Caesar/MS
+Caesarea/M
+Caesarean
+caesarean/SM
+Caesarian
+caesarian/SM
+caesium/M Noun: uncountable
+caesocene
+caesura/SM
+Caetano/M
+cafard/SM
+café/MS
+cafe/SM
+cafeteria/MS
+cafetière/SM
+caff/MS
+caffeinated
+caffeine/SM
+Cafferty/M
+Caffrey/M
+caftan/MS
+cage/GDzR2MS
+cagey/P
+cagier
+cagiest
+cagoule/SM
+cagy
+Caherdaniel/M
+Cahill/M
+Cahir/M
+Cahirciveen/M
+Cahokia/M
+cahoot/MS
+Caia/M
+Caiaphas/M
+Caicos/M
+Caidin/M
+Caillard/M
+caiman/SM
+Cain/M
+Caine/M
+Cainie/M
+Cainozoic
+Cainscross/M
+Caio/M
+caipirinha/SM
+caique/SM
+Caird/M
+cairn/DSM
+Cairnbulg/M
+Cairndow/M
+Cairneyhill/M
+cairngorm/MS
+Cairngyffe/M
+Cairnie/M
+Cairnlea/M
+Cairnpapple/M
+Cairns/M
+Cairo/M
+Cairoli/M
+Caisos/M
+caisson/SM
+Caister-on-Sea/M
+Caister/M
+Caistor/M
+Caithness/M
+Caithnessian
+caitiff/MS
+Caitlyn/M
+Caius/M
+cajole/RLyDSG
+cajolery/SM
+Cajon/M
+Cajun/SM
+cake/MDGS
+cakeage/M Noun: uncountable
+cakehole/SM
+cakewalk/SDGM
+Calabar/M
+Calabasas/M
+calabash/SM
+calaboose/SM
+calabrese/SM
+caladium/SM
+Calais/M
+calamander/SM
+calamari/SM
+calamine/MDGS
+calamint/MS
+calamite/SM
+calamitous/PY
+calamity/SM
+calash/MS
+calathea/SM
+Calaveras/M
+Calbourne/M
+Calc/M
+calcalkaline
+calcanea/OM
+calcanei/M
+calcaneum/M
+calcaneus/M
+calcar/SM
+calcarenite/SM
+calcareous/YP
+calcaria
+Calcasieu/M
+Calceby/M
+calceolaria/SM
+calces
+Calcethorpe/M
+Calchas/M
+calciferous
+calcify/WDSnG
+calcimine/DSMG
+calcine/NSDG
+calciocene
+calcite/SM
+calcium/M
+calcocene
+CALCOMP
+Calcraft/M
+calculability/IM
+calculable/I
+calculableness/M Noun: uncountable
+calculate/iVDSGkBhn
+calculated/aA
+calculates/Aa
+calculating/aA
+calculation/aSAM
+calculator/SM
+calculi/M
+calculus/MS
+Calcutta/M
+Calcuttan/SM
+caldaria/M
+caldarium/M
+Caldbeck/M
+Caldbergh/M
+Caldeby/M
+Caldecote/M
+Caldecott/M
+Caldeira/M
+Calder/M
+caldera/SM
+Calderbank/M
+Caldercruix/M
+Calderdale/M
+Calderhead/M
+Calderwood/M
+Caldicot/M
+caldron/SM
+Caldwell/M
+Caleb/M
+Caledon/M
+Caledonia/M
+Caledonian/SM
+calefacient/MS
+calendar/SdM
+calender/dMS
+calendic
+calendric/O
+calends
+calendula/SM
+calenture/SM
+Calera/M
+Calexico/M
+Caley/M
+calf-length
+calf/M
+calfskin/SM
+Calgary/M
+Calhoun/M
+calibrate/SAGDN
+calibrater/SM
+calibrator/MS
+calibre/MnS
+calicene/SM
+caliche/SM
+Caliciviridae Taxonomic family
+calico/M
+calicoes
+California/M
+Californian/SM
+californium/M
+Caligula/M
+caliper/SM
+caliph/SM
+caliphate/SM
+Calke/M
+Calkin/M
+Calkwell/M
+call-boy/SM
+call-girl/SM
+call-out/SM
+call-up/SM
+call/RSGDJ7M
+calla/SM
+Callaghan/M
+Callahan/M
+Callan/M
+Callander/M
+Callanish/M
+Callao/M
+Callaway/M
+callback/SM
+called-for
+called/AUa
+callee/SM
+calligrapher/SM
+calligraphy/S3MW
+Callington/M
+calliope/MS
+calliper/SM
+Callison/M
+callisthenic/S
+Callisto/M
+callop/SM
+callose/SM
+callosity/SM
+callous/PDYSG
+Callow/M
+callow/PTY
+Calloway/M
+calls/aA
+Callum/M
+callus/SdM
+Callwen/M
+calm/YTGPSkDM
+Calman/M
+calmative/SM
+Caln/M
+Calne/M
+Calopterygidae Taxonomic family
+Calor
+caloric/MY
+calorie/SM
+calorific/Y
+calorimeter/SMW
+calorimetry/SM
+calotype/SM
+Calouste/M
+Calow/M
+calque/SGDM
+Calrissian/M
+Calstock/M
+Calstone/M
+Caltech/M
+Calthorpe/M
+Calton/M
+caltrop/SM
+Calumet/M
+calumet/MS
+calumniate/nDSG
+calumniator/SM
+calumnious
+calumny/SM
+Calvados/M
+Calvary/M
+calvary/SMO
+calve/GDS
+Calveley/M
+Calver/M
+Calverhall/M
+Calverleigh/M
+Calverley/M
+Calvert/M
+Calverton/M
+Calvin/3M
+Calvinism/SM
+Calvinistic/O
+Calvino/M
+calx/M
+calyces
+Calymmian Calymmian period
+calypso/MS
+calypsonian/SM
+calyx/SM
+Calzaghe/M
+calzone/SM
+calzoni/M
+Cam/M
+cam/MSD
+camaraderie/SM
+Camargue/M
+camarilla/MS
+Camarillo/M
+Camas/M
+camber/dMWS
+Camberley/M
+Camberwell/M
+cambial
+cambium/MS
+Camblesforth/M
+Cambodia/M
+Cambodian/SM
+Camborne/M
+Cambourne/M
+Cambrensis/M
+Cambria/M
+Cambrian/SM
+cambric/MS
+Cambridge/M
+Cambridgeshire/M
+Cambusbarron/M
+Cambuskenneth/M
+Cambuslang/M
+Cambusnethan/M
+camcorder/SM
+Camden/M
+came/c
+Came/M
+camel-hair/SM
+Camel/M
+camel/SM
+camelback/SM
+cameleer/MS
+Cameley/M
+Camelford/M
+camelhair/SM
+camellia/SM
+Camelon/M
+camelopard/MS
+Camelopardalis
+Camelot/SM
+Camembert/M
+cameo/MSDG
+camera-ready
+camera/MmS5
+camerae
+cameralism/M Noun: uncountable
+cameralist/MSW
+cameralistics/M Noun: uncountable
+camerapeople/M
+cameraperson/SM
+camerata/M
+cameration/M
+camerawork/M
+Camerlengo/M
+camerlengo/MS
+camerlingo/MS
+Cameron/MS
+Cameronian/MS
+Cameroon/M
+Cameroonian/SM
+Camerton/M
+Camfield/M
+camgirl/SM
+camiknickers/M
+Camilla/M
+Camille/M
+Camillus/M
+Camino/M
+camion/SM
+camisole/MS
+Camithus/M
+Camlough/M
+Cammeringham/M
+camomile/SM
+camostat/M Noun: uncountable
+camouflage/GDRSM
+Camp/M
+camp/RGZSM2Dz
+Campagna/M
+campaign/MRDSG
+Campanian/SM
+campaniform
+campanile/SM
+campanology/3wSM
+campanula/SM
+campanulate
+Campanus/M
+Campbell/MS
+Campbellsport/M
+Campbellton/M
+Campbelltown/M
+Campbeltown/M
+Campden/M
+Campeche/M
+Camperdown/M
+Campfield/M
+campfire/MS
+camphor/SMW
+Campo/M
+Campos/M
+camps/C
+Camps/M
+Campsall/M
+Campsea/M
+Campsie/M
+campsite/SM
+Campton/M
+campus/MS
+Campville/M
+campy/T
+Camrose/M
+CamSemi/M
+camshaft/SM
+Camus/M
+Camusterrach/M
+camwood/SM
+can't
+can't've
+can-opener/SM
+can/dz2SDRZrGyM
+Cana/M
+Canaan/M
+Canaanite/SM
+Canada/M
+Cañada/M
+Canadian/MS
+canal/q-GSMQ8D
+Canandaigua/M
+canapé/SM
+canard/MS
+Canarese/M
+Canaries
+canary/MS
+canasta/SM
+canaster/MS
+Canaveral/M
+Canberra-Queanbeyan/M
+Canberra/M
+Canby/M
+cancan/MS
+cancel/7GDRSM
+cancelbot/SM
+cancellate/Dn
+cancellous
+cancer/SM
+canceration/M Noun: usually uncountable
+cancered
+Cancerian/SM
+cancericidal
+cancerocidal
+cancerogenic
+cancerology/3M
+cancerous/YP
+cancerwort/M Noun: uncountable
+cancroid/SM
+Cancún/M
+Candace/M
+candela/SM
+candelabra/SM
+candelabrum/M
+candelilla/SM
+candescence/MS
+candescent/Y
+Candiac/M
+candid/PYSM
+candida/OSM
+candidacy/MS
+candidate/MS
+candidature/SM
+candider
+candidiasis/M
+candidosis/M
+candle/RMDSG
+candleberry/SM
+candleholder/SM
+candlelight/SMr
+candlelit
+Candlemas/M
+candlenut/SM
+candlepower/MS
+Candler/M
+Candlesby/M
+candlestick/MS
+candlewick/SM
+candomblé/SM
+candour/SM
+Candover/MS
+candy-stripe/SMD
+candy/SGMD
+candyfloss/SM
+candytuft/SM
+Cane/M
+cane/SMJ
+canebrake/SM
+Canelhas/M
+Canes/M
+Canewdon/M
+Canfield/M
+Canford/M
+Cangeford/M
+Caniapiscau/M
+canine/SM
+caning/SM
+Canis/M
+Canisbay/M
+canister/dSM
+canker/dMS
+cankerous
+Cann/M
+Canna/M
+canna/SM
+cannabidiol/SM
+cannabinoid/SM
+cannabinol/SM
+cannabis/MS
+Cannadine/M
+cannae/S
+cannelloni/M
+cannelure/MS
+cannery/SM
+Cannes/M
+cannibal/MQ8Sq-
+cannibalism/SM
+cannibalistic/Y
+Cannich/M
+cannier
+canniest
+cannikin/MS
+Cannings/M
+Cannington/M
+cannister/SM
+Cannizzaro/M
+Cannock/M
+cannon/dSMy
+Cannon/M
+cannonade/MGDS
+cannonball/SDMG
+cannoneer/SM
+cannot
+cannula/SM
+cannulae/M
+cannulate/SGDN
+canny/UPY
+canoe/GD3SM
+Canoga/M
+canola/SM
+Cañon/M
+Canon/MS
+canon/wMW-1qQ8S3
+Canonbie/M
+canoness/SM
+Canongate/M
+Canonical/M Publisher of Ubuntu
+canonical/SQ8q-
+canonicity/SM
+Canonicorum/M
+canonry/SM
+canoodle/DGS
+canoodling/SM
+Canopus/MW
+canopy/DGMS
+canorous
+canst
+cant/DCRGS
+cant/MS
+cantabile/SM
+Cantabrigian/SM
+cantal/M Noun: usually uncountable
+cantaloup/SM
+cantaloupe/SM
+cantankerous/YP
+cantata/SM
+canted/AI
+Canteen/M
+canteen/MS
+Cantelo/M
+canter/SdM
+Canterbury-Bankstown/M
+Canterbury/M
+canterbury/SM
+Canticle/MS
+canticle/SM
+cantilena/SM
+cantilever/dSM
+cantina/MS
+cantle/MS
+Cantley/M
+Cantlow/M
+canto/MS
+canton/dMSLO
+Canton/M
+Cantonese/M
+cantor/SMO
+cantoris/M
+cantrail/MS
+Cantref/M
+cantrip/MS
+Cantsfield/M
+Cantwell/M
+Canuck/MS
+Canute/M
+canvas/MRGDSr
+canvasback/SM
+canvass/SGDM
+Canvastown/M
+Canvey/M
+Canwick/M
+Canyon/M
+canyon/SM
+canzonetta/MS
+Caol/M
+Caolán/M
+Cap-Chat/M
+Cap-Santé/M
+cap/M
+cap/SADG
+capability/ISM
+capable/IP
+capable/Y
+capabler
+capablest
+capacious/PY
+capacitance/SM
+capacitate/DGS
+capacitative/Y
+capacitive/Y
+capacitor/MS
+capacity/SMI
+caparison/SMd
+cape/BDRMlS
+Cape/MS
+Capecastle/M
+Capel-le-Ferne/M
+Capel-y-ffin/M
+Capel/M
+capelin/MS
+capellini/M Noun: uncountable
+Capenhurst/M
+caper/rMdSW
+Capernaum/M
+capeskin/SM
+Capesthorne/M
+Capetian/SM
+capful/MS
+capias/MS
+Capilano/M
+capillarity/MS
+capillary/SM
+Capistrano/M
+capita/onM
+capital/-qMQs893S
+Capital/M
+Capitale-Nationale/M
+capitalise/ADGnS
+capitalised/Uc
+capitalism/SM
+capitalist/1W
+capitalize/AGnSD
+Capitan/M
+capitate/SM
+capitation/CMS
+Capitol/M
+capitol/SM
+Capitolina/M
+capitula/M
+capitular
+capitulary/MS
+capitulate/ASDGn
+capitulum/M
+Caple/M
+caplin/MS
+capo/SM
+capoeira/SM 2. (countable) A practitioner of this martial art
+capon/SM
+caponata/SM
+Capone/M
+caponier/SM
+caponise/SGD
+caponize/SGD
+capot/SGDM
+Capote/M
+Cappadocia/M
+Cappadocian/SM
+Cappagh/M
+cappellacci/M
+Cappiello/M
+capping/M
+cappuccino/SM
+Capri/M
+capriccio/MS
+caprice/SM
+capricious/YP
+Capricorn/MS
+Capricornus/M
+caprine/SM
+caproic
+caprylic
+capsaicin/M Noun: usually uncountable
+Capshaw/M
+Capsian
+capsicum/MS
+capsid/SM
+Capsidae Taxonomic family
+capsize/SGDM
+capstan/SM
+capstone/SM
+capsular
+capsule/8SQMGD
+capsulotomy/SM
+Capt.
+captain/GDSM
+captainate/SM
+captaincy/MS
+CAPTCHA/SM
+captcha/SM
+caption/DGMpR
+captious/PY
+captivate/nGDSk
+captivator/MS
+captive/SM
+captivity/SM
+captor/SM
+capture/RDGS
+Capuchin/SM
+capuchin/SM
+Caputh/M
+Caputo/M
+capybara/MS
+car-jack/SDJRG
+car/krZdMS
+Car/M
+Cara/M
+carabineer/SM
+carabinier/SM
+carabiniere/M
+carabinieri/M
+caracal/MS
+caracara/SM
+Caracas/M
+caracole/DGMS
+caracul/MS
+carafe/SM
+caragana/SM
+caramba
+carambola/SM
+caramel/Q8SM
+caramelisation/M
+caramelization/M
+carapace/MS
+carapax/SM
+carat/MS
+Carathéodory/M
+Caravaggesque
+Caravaggio/M
+caravan/MSDGR
+caravanette/SM
+caravansary/SM
+caravanserai/SM
+caravel/MS
+caraway/SM
+carb/MS
+carballylate/M
+carballylic
+carbamate/SM
+carbamazepine/SM
+carbamylate/SGD
+carbamylation/SM
+carbapenem/SM
+carbide/SM
+carbine/SM
+carbo-load/SGD
+carbo/SM
+carbohydrase/SM
+carbohydrate/SM
+carbolic/M
+carbon-12/M Noun: uncountable
+carbon-13/M Noun: uncountable
+carbon-14/M Noun: uncountable
+carbon-neutral
+Carbon/M
+carbon/sQ9S8W-qMnp
+carbona/M
+carbonaceous
+carbonade/MS
+carbonado/SM
+carbonara/SM
+Carbonari/M
+carbonate/GDSMn
+carbonatite/SM
+Carbondale/M
+Carbonel/M
+Carbonell/M
+Carboniferous
+carboniferous
+carbonification/M
+carbonify/SGD
+carbonometer/SM
+carbonous
+carbonyl/SMN
+carborane/SM
+carborundum/M
+carbostyril/M Noun: uncountable
+carbowax/SM
+carboxy/M Noun: uncountable
+carboxyl/SMW
+carboxylase/SM
+carboxylate/SGDNM
+carboxypeptidase/SM
+carboy/MS
+Carbrooke/M
+carbuncle/DSM
+carbuncular
+carburation/SM
+carburettor/SM
+Carburton/M
+Carbury/M
+carcase/MS
+carcass/MS
+Carcassonne/M
+carceral/Y
+Carchemish/M
+carcinoembryonic
+carcinogen/WMS
+carcinogenesis/M
+carcinogenicity/MS
+carcinoid/SM
+carcinology/Mw
+carcinoma/SM
+card-carrying
+card-index/SGD
+card/DERGS
+card/M
+Cardale/M
+cardamom/SM
+Cardano/M
+cardboard/SM
+Carden/M
+Cardenden/M
+Cardeston/M
+cardholder/SM
+cardiac/SM
+Cardiff/M
+Cardigan/M
+cardigan/MS
+Cardiganshire/M
+Cardin/M
+cardinal/MYS
+cardinalate/MS
+cardinality/MS
+carding/SM
+Cardington/M
+Cardinham/M
+cardio/M
+cardiogram/SM
+cardiograph/ZRSM
+cardioid/SM
+cardiology/3MSw
+cardiomegaly/SM
+cardiomyopathy/SM
+cardiopathy/SM
+cardioprotection/M Noun: uncountable
+cardioprotective/SM
+cardiopulmonary
+cardiorespiratory
+cardiothoracic
+cardiovascular
+carditis/M Noun: usually uncountable
+Cardle/M
+cardmember/SM
+Cardonald/M
+cardoon/SM
+Cardoso/M
+Cardross/M
+cardsharp/RMS
+Carducci/M
+Cardus/M
+Cardynham/M
+care/6jSMpDG
+Careby/M
+careen/DGS
+career/G3MDS
+careerer
+careerism/M Noun: usually uncountable
+carefree/Y
+careful/TP
+caregiver/SM
+careless/YP
+careline/SM
+cares/DG
+caress/SvVMkR
+Careston/M
+caret/SM
+caretaker/MS
+Carew/M
+careworn
+Carey/M
+Carfin/M
+Cargan/M
+Cargenbridge/M
+Cargill/M
+cargo/SM countable and uncountable, plural cargos or cargoes
+cargoes
+Carham/M
+Carhampton/M
+Carharrack/M
+Carhays/M
+cariama/MS
+Carib/SMO
+Caribbean/SM
+Caribeaux/M
+Cariboo/M
+caribou/M
+Caribou/M
+caricature/3SGDMO
+caricaturisation/SM
+caricaturization/SM
+caries/M
+Carignan/M
+carillon/MS
+carillonneur/SM
+Carina/M
+carina/SMO
+carinae/M
+carinate/DN
+Carinish/M
+Carinthia/M
+cariogenic
+carious
+Carisbrooke/M
+carisoprodol/M Noun: uncountable
+cark/SGD
+Carkin/M
+Carl/MG
+carl/SM
+Carla/M
+Càrlabhagh/M
+Carlby/M
+Carleton-sur-Mer/M
+Carleton/M
+Carley/M
+Carlieu/M
+Carlin/M
+Carline/M
+carline/MS
+Carlisle/M
+Carlo/M
+carload/GMS
+Carlops/M
+Carlos/M
+Carlota/M
+Carlovingian/SM
+Carlow/M
+Carloway/M
+Carlsbad/M
+Carlsberg/M
+Carlson/M
+Carlton/M
+Carluke/M
+Carlyle/M
+Carlyon/M
+Carm/M
+carmaker/SM
+carman/M
+Carman/M
+Carmarthen/M
+Carmarthenshire/M
+Carme/M
+Carmel/M
+Carmelite/SM
+Carmen/M
+carmen/M
+Carmichael/M
+carminative/MS
+carmine/SM
+Carmona/M
+carmot/M Noun: uncountable
+Carmotetraviridae Taxonomic family
+carmovirus/SM
+Carmunnock/M
+Carmyle/M
+Carmyllie/M
+Carn/M
+Carnaby/M
+carnage/SM
+carnal/Y
+Carnalbanagh/M
+carnality/SM
+carnallite/SM
+carnassial/SM
+Carnatic
+carnation/MIS
+carnauba/MS
+Carnaxide/M
+Carnbee/M
+Carncastle/M
+Carnegie/M
+carnelian/MS
+Carnell/M
+carnet/SM
+Carney/M
+carney/SGDM
+Carnforth/M
+Carnguwch/M
+carnitine/SM
+carnival/SM
+carnivalesque
+Carnivora Taxonomic order
+carnivore/MS
+carnivorous/YP
+carnivory/M Noun: uncountable
+Carnlough/M
+Carno/M
+Carnock/M
+carnosaur/SM
+Carnot/M
+carnotite/SM
+Carnoustie/M
+Carnteel/M
+Carntyne/M
+Carnwadric/M
+Carnwath/M
+carny/SGDM
+Caro/M
+carob/MS
+carol-singing/M
+carol/DRGSM
+Carol/M
+Carole/M
+Carolean/SM
+Carolina/SM
+Caroline/M
+Carolingian/MS
+Carolinian/SM
+Carolyn/M
+carom/SdM
+carotene/SM
+carotenoid/SM
+carotid/SM
+carousal/SM
+carouse/RGDSM
+carousel/SM
+carp/GMDkRS
+Carpaccio/M
+carpaccio/SM
+carpal/SM
+Carpathian/S Carpathian Mountains
+carpe Latin: carpe diem
+carpel/SM
+Carpenders/M
+carpenter/dSM
+carpentering/M Noun: uncountable
+Carpentersville/M
+carpentry/SM
+Carperby-cum-Thoresby/M
+carpet/dJSM
+carpetbag/RMSDG
+carpeting/M Noun: usually uncountable
+carphology/M Noun: uncountable
+carpi/M
+Carpinteria/M
+carpology/M Noun: uncountable
+carpool/DSGM
+carpophore/SM
+carport/MS
+carpus/M
+Carr/M
+carrack/SM
+Carradale/M
+carrageen/SM
+carrageenan/M Noun: usually uncountable
+carragheen/SM
+Carrara/M
+Carrboro/M
+Carrbridge/M
+Carreghofa/M
+carrel/SM
+Carrell/M
+Carrera/M
+Carrey/M
+carriage/aSMf
+carriageway/MS
+Carrick/M
+carrick/SM
+Carrickaness/M
+Carrickfergus/M
+Carrickmore/M
+Carriden/M
+Carrie/M
+Carrigan/M
+Carrington/M
+carriole/MS
+carrion/SM
+Carrock/M
+Carroll/M
+Carrollton/M
+Carrolton/M
+Carron/M
+carronade/MS
+Carronshore/M
+carrot/MS
+carroty/T
+carrousel/MS
+Carrowclare/M
+Carrowdore/M
+Carruthers/M
+carry-on/SM
+carry/DRSGM
+Carrybridge/M
+carrycot/SM
+Carryduff/M
+carrying/a
+Carse/M
+Carshalton/M
+carsick/P
+Carsington/M
+Carson/M
+Carsphairn/M
+Carstairs/M
+Carsten/M
+Carswell/M
+cart/RMD6GS
+Carta/M
+cartage/MS
+Cartagena/M
+carte/SM
+cartel/SM
+cartelise/SGD
+cartelize/DGS
+Carter/M
+Carteret/M
+Cartersville/M
+Carterton/M
+Cartesian/SM
+Cartesianism/M Noun: uncountable
+cartful/SM
+Carthage/M
+Carthaginian/SM
+Carthorpe/M
+carthorse/MS
+Carthusian/SM
+Cartier/M
+cartilage/SM
+cartilaginoid/SM
+cartilaginous
+cartload/MS
+Cartmel/M
+Cartmell/M
+cartogram/MS
+cartographer/SM
+cartography/WSMw1
+cartomancer/SM
+cartomancy/M Noun: uncountable
+carton/dMS
+cartonnage/SM
+cartoon/ZSMD3G~
+cartophily/3M
+cartouche/SM
+cartridge/MS
+cartulary/SM
+cartwheel/RGMDS
+Cartwright/M
+caruncle/MS
+Caruso/M
+Carvalho/M
+carve/RSJGDy
+carvedilol/M Noun: uncountable
+carvel/MS
+Carver/M
+carving/SM
+Carwood/M
+Carwyn/M
+Cary/M
+caryatid/SM
+caryopses
+caryopsis/M
+Carys/M
+CAS/M
+Casa/M
+casaba/SM
+Casablanca/M
+Casale/M
+Casanova/MS
+casbah/SM
+cascade/GDSM
+Cascade/M
+Cascão/M
+cascara/SM
+case-harden/dS
+case-insensitive
+case-sensitive
+case/DMLJSGp
+casebook/MS
+casein/MS
+Casella/M
+caseload/SM
+casemate/SMD
+caseous
+CASes
+casework/RSM
+Casey/M
+Caseyville/M
+Casgob/M
+cash-book/MS
+cash/DGSpM
+cashback/M Noun: uncountable
+Cashel/M
+Cashell/M
+cashew/SM
+cashier/GMDS
+cashmere/SM
+Cashmore/M
+cashpoint/SM
+Casimiro/M
+casing/SM
+casino/SM
+Casio/M
+cask/SMGD
+casket/dSM
+Caslon/M
+Caspar/M
+Casparian
+Casper/M
+Caspian/SM
+casque/MS
+Cass/M
+Cassady/M
+Cassandra/MS
+Cassation/M
+cassava/SM
+Casselberry/M
+Casselman/M
+Cassels/M
+Cassen/M
+casserole/MGDS
+cassette/MS
+Cassia/M
+cassia/SM
+Cassian/M
+Cassibile/M
+Cassidy/M
+Cassie/M
+Cassileth/M
+cassingle/SM
+Cassington/M
+Cassini/M
+Cassino/M
+cassino/SM
+Cassiopeia/M
+Cassius/M
+cassock/SMD
+cassoulet/SM
+cassowary/MS
+cast-iron/M
+cast-off/SM
+cast/RSGJM
+Castalia/M
+Castalian/M
+castanet/SM
+Castanheira/M
+castaway/SM
+caste/MSp
+Castel/M
+Castell-Dwyran/M
+Castellaneta/M
+Castellano/M
+castellated
+castellation/SM
+caster/SMn
+Casterbridge/M
+Casterton/M
+casteth
+castigate/SnDG
+castigative
+castigator/MSZ
+Castile/M
+Castilian/SM
+Castillo/M
+casting/Mc
+casting/S
+castle/GMDS
+Castle/M
+Castleacre/M
+Castlebar/M
+Castlebythe/M
+Castlecaulfield/M
+Castledawson/M
+Castlederg/M
+Castleford/M
+Castlegar/M
+Castlegate/M
+Castlehill/M
+Castlelevington/M
+Castlemartin/M
+Castlemilk/M
+Castlemorton/M
+Castlereagh/M
+Castlerigg/M
+Castlerock/M
+Castlethorn/M
+Castlethorpe/M
+Castleton/M
+Castletown/M
+Castlewellan/M
+Castley/M
+Caston/M
+Castor/M
+castor/MS
+castrate/GDSnM
+castrati/M
+castrato/M
+Castries/M
+Castro/M
+Castroism/M
+Castroist/SM
+casts/aAe
+casual/SMPY
+casualise/SGDN
+casualize/SGDN
+casualty/SM
+casuarina/SM
+casuist/SMWy
+casuistical/Y
+casuistry/MS
+Caswell/M
+cat-and-dog
+cat-bear/SM
+cat-sat
+cat-sit/RSG
+cat/M2ZzDGS
+catabolic
+catabolise/SGD
+catabolism/M Noun: usually uncountable
+catabolite/SM
+catabolize/SGD
+catachreses
+catachresis/M
+catachrestic/OY
+cataclasis/M
+cataclastic
+cataclysm/WSMO1
+catacomb/MS
+catadioptric/O
+catadromous
+catafalque/SM
+Catahoula/M
+Catalan/SM
+catalase/SM
+catalepsy/MS
+cataleptic/SM
+Catalina/M
+catalogue/GRDSM
+Catalonia/M
+Catalonian/SM
+catalpa/SM
+catalufa/SM
+catalyse/SDWGR
+catalysis/M
+catalyst/SM
+catalytic/OY
+catamaran/MS
+Catania/M
+cataplectic
+cataplexy/SM
+catapult/GMDS
+cataract/MS
+Catarina/M
+Catarino/M
+catarrh/MSO
+catastrophe/SM1W3
+catastrophiser/SM
+catastrophism/SM
+catastrophizer/SM
+catatonia/MS
+catatonic/SY
+Catawba/M
+catbird/MS
+catboat/SM
+catcall/DGSM
+catch-all/SM
+catch/LRGZ7SM
+catchfly/SM
+catchlight/SM
+catchline/SM
+catchpenny/SM
+catchphrase/SM
+catchup/SM
+catchweight/SM
+catchword/MS
+catchy/PTY
+Catcliffe/M
+Catcott/M
+catechesis/M
+catechetical/Y
+catechetics/M Noun: uncountable
+catechin/SM
+catechise/SGD
+catechism/MS
+catechist/SM
+catechize/GSD
+catechol/SM
+catecholamine/SM
+catechumen/SM
+categoricity/M Noun: uncountable
+categorise/AGSD
+categorize/AGSD
+category/Owq8W9Qs-SM1
+catenary/SM
+catenate/Fn
+catenative/SM
+cater/drS
+Caterham-on-the-Hill/M
+Caterham/M
+catering/M
+caterpillar/SM
+caterwaul/GDSM
+Catesby/M
+Catfield/M
+catfight/SGM
+catfish/SGDM
+catgut/SM
+Cathar/SM3
+Catharine/MS
+Catharism/M
+catharses
+catharsis/M
+cathartic/SM
+Cathay/MS
+Cathcart/M
+cathead/SM
+Cathedine/M
+cathedra/SM
+cathedrae/M Plural of cathedra
+Cathedral/M
+cathedral/SM
+Catherine/M
+Catherington/M
+Catherston/M
+catheter/MS
+catheterise/SGDN
+catheterize/SGDN
+Cathkin/M
+cathode/SWMO
+cathodoluminescence/SM
+Catholic/SM
+catholic/Y
+Catholicism/M Noun: usually uncountable
+catholicity/MS
+catholicly
+Cathy/M
+Catiline/M
+cation/SMW
+catkin/SM
+Catley/M
+catlick/M
+catlike
+Catlin/M
+catlinite/SM
+catmint/SM
+Catmore/M
+catnap/DMSG
+catnip/SM
+Cato/M
+Caton-with-Littledale/M
+Caton/M
+Catoosa/M
+Catrine/M
+Catsfield/M
+Catshill/M
+Catskill/MS
+catsuit/MS
+cattail/SM
+Cattal/M
+Cattaraugus/M
+Catterall/M
+Catterick/M
+Catterlen/M
+Catterline/M
+Catterton/M
+cattery/MS
+Catthorpe/M
+Cattistock/M
+cattle/mM
+Catton/M
+catty/TP
+Catullus/M
+CATV/M Noun: uncountable
+catwalk/SM
+Catwick/M
+Catworth/M
+Caucasian/SM
+Caucasoid/SM
+Caucasus/M
+Cauchy/M
+caucus/SM
+cauda/M
+caudae/M
+caudal/Y
+caught/U
+Cauldon/M
+cauldron/SM
+Cauldwell/M
+Caulfield/M
+cauliflower/SM
+caulk/GDRJSM
+Caundle/M
+Caunton/M
+causa honoris causa
+causalgia/SM
+causality/MS
+Causapscal/M
+causate/vVSM
+causative/SM
+cause/OGnDMoRSp
+causerie/MS
+causeway/GMSD
+caustic/SMY
+causticity/SM
+cauterise/DnGS
+cauterize/SDGn
+caution/KSGyDM
+cautioner/SM
+cautious/IY
+cautiousness/MS
+CAV/M
+cavalcade/MS
+Cavalier/SM
+cavalier/YPSDGM
+Cavallaro/M
+cavalry/SmM
+Cavan/M
+Cavanagh/M
+cavatelli/M Noun: uncountable
+cavatina/SM
+cave-in/SM
+Cave/M
+cave/mRSMDG
+caveat/SM
+Cavendish/M
+Cavenham/M
+cavern/DSGM
+cavernous/Y
+cavernulous
+Caversfield/M
+Caversham/M
+Caverswall/M
+cavesson/SM
+cavewoman/M
+cavewomen/M
+caviar/SM
+caviare/MS
+cavil/SDRGJM
+caving/M
+cavitary
+cavitate/SGD
+cavitation/SM
+cavity/FMS
+cavort/DSG
+caw/GSMD
+Cawdor/M
+Cawdrey/M
+Cawood/M
+Cawston/M
+Cawthorne/M
+Cawthorpe/M
+Cawton/M
+Caxton/M
+cay/SCM
+Cayce/M
+Cayenne/M
+cayenne/MS
+Cayley/M
+Cayman/M
+cayman/SM
+Caynham/M
+Caythorpe/M
+Cayton/M
+Cayuga/M
+CB/SM
+CBD/M
+CBS/M
+CBT/SM
+cc'd
+cc'ing
+cc/M
+CCD/SM
+CCTV/SM
+Cd
+CD-R/SM
+CD-ROM/SM
+CD-RW/SM
+CD/SM
+CDC/M
+CDMA/M Noun: uncountable
+cDNA/SM
+CDP/M
+CDT/M
+CDTV/M
+Ce
+CE/SM
+Ceanothus Taxonomic genus
+ceanothus/SM
+cease/CDSG
+ceasefire/SM
+ceaseless/PY
+Cebuano/M
+Cecchetti/M
+Cecil/M
+Cecilia/M
+Cecily/M
+Cedar/M
+cedar/MS
+Cedarburg/M
+cedarwood/SM
+cedary
+cede/FKAGDS
+cedilla/MS
+Cédric/M
+Cedric/M
+Cefn-llys/M
+Cefn/M
+cefotaxime/SM
+Ceidio/M
+Ceil/M
+ceilidh/SM
+ceiling/MSD
+Ceirchiog/M
+Ceiriog/M
+celadonite/SM
+celandine/SM
+Celanese
+celatone/SM
+celeb/SM
+celebrant/SM
+celebrate/inSDyG
+celebrator/SM
+Celebrex/M
+celebrity/MS
+celebritydom/M Noun: uncountable
+celebrityhood/M Noun: uncountable
+celebutante/SM
+celecoxib/M Noun: uncountable
+celeriac/SM
+celerity/SM
+Celeron/M a brand name of different computer microprocessor models
+celery/SM
+celesta/SM
+Celeste/M
+celestial/SMY
+celestiality/SM
+Celgene/M
+Celia/M
+celibacy/SM
+celibate/SM
+Celina/M
+Celine/M
+cell/MDS3G
+Cellan/M
+cellar/dMSr
+Cellardyke/M
+cellblock/SM
+Celler/M
+cellmate/SM
+cello/S3M
+cellophane/SM
+cellphone/SM
+cellular/Y
+cellularity/SM
+cellulite/SM
+cellulitis/M
+celluloid/MS
+cellulose/MS
+cellulosic/SM
+Celsius/M
+Celt/SM
+Celtic/M3
+Celticism/SM
+cembalo/SM
+cement/RGDSM
+cementa
+cementation/SM
+cementite/SM
+cementum/MS
+cemetery/SM
+Cemmes/M
+Cena/M
+Cenarth/M
+Cennen/M
+cenobe/MW
+cenobia/M
+cenobian
+cenobite/SMW
+cenobium/MS
+cenoby/MS
+Cenomanian A subdivision of the Late (Upper) Cretaceous epoch
+Cenotaph/M
+cenotaph/SM
+cenote/SM
+Cenozoic Of or pertaining to the Cenozoic era
+cense/DGSr
+censor/dSMO
+censorious/PY
+censorship/SM
+censorware/M Noun: uncountable
+censurable
+censure/GRMSD
+Census/M
+census/SdM
+cent/SM
+centaur/MS
+Centauri/M
+Centaurus/M
+centavo/SM
+centenarian/SM
+centenary/SM
+Centennial/M
+centennial/Y
+Center/M
+Centerville/M
+centesimal/Y
+centigrade/SM
+centilitre/SM
+centime/SM
+centimetre/MSW
+centipede/SM
+centisecond/SM
+CentOS/M
+centra/1M
+central/3
+Central/M
+Centralia/M
+centralise/CDnSAG
+centralise/SGDnR
+centralism/SM
+centrality/SM
+centralize/CDSAnG
+centralize/SGDnR
+Centre-du-Québec/M
+centre/GDRMJ3WoSp
+Centre/M
+centreboard/SM
+centreboarder/M
+centrefire/SM
+centrefold/SM
+centreline/MS
+centrement/M
+centremost
+centrepiece/SM
+centrepin/SM
+Centreville/M
+Centrex/M
+centrifugal/SMY
+centrifugate/MSGD
+centrifuge/MGDSn
+centring/SM
+Centrino/M
+centriole/SM
+centripetal/Y
+centrism/SM
+Centro/M
+centroid/SM
+centromere/SMW
+centrosome/SM
+centrum/SM
+centuple/DGS
+centuriation/M Noun: uncountable
+centurion/SM
+century/SM
+CEO/SM
+cep/SM
+cephalexin/SM
+cephalic/S
+cephalin/SM
+cephalisation/SM
+cephalization/SM
+Cephalochordata Taxonomic subphylum
+cephalochordate/SM
+cephalometry/WM
+cephalon/SM
+Cephalonia/M
+Cephalonian/SM
+cephalopod/SM
+Cephalopoda Taxonomic class
+cephalosporin/SM
+cephalothoraces
+cephalothorax/SM
+cepharanthine/M Noun: uncountable
+Cephei/M
+Cepheid
+cepheid/SM
+Cepheus/M
+ceramic/3MS
+ceramide/SM
+ceramist/SM
+ceratobranchial/SM
+ceratopsian/SM
+Cerberus Taxonomic genus
+cercopithecoid/SM
+cereal/MS
+cerebellar
+cerebellum/MS
+cerebra/noMO
+cerebrate/SDGn
+cerebri crus cerebri
+cerebriform/Y
+cerebroside/SM
+cerebrospinal
+cerebrovascular/Y
+cerebrum/MS
+Ceredigion/M
+cerement/SM
+ceremonial/SMP3
+ceremonialism/SM
+ceremonious/UY
+ceremoniousness/SM
+ceremony/SMo
+Cerenkov/M
+Ceres/M
+Ceri/M
+Cerialis/M
+cerise/MS
+cerium/M Noun: usually uncountable
+cermet/SM
+CERN/M European Council for Nuclear Research
+Cernan/M
+Cerne/M
+Cerney/M
+cerocene
+ceroplastic
+cerotic
+Cerregceinwen/M
+Cerrig/M
+Cerrigydrudion/M
+Cerrito/MS
+Cerro/M
+cert/SM
+certain/UY
+certainer
+certainest
+certainty/USM
+certificate/SDM
+certification/MCA
+certified/UAC
+certifies/CA
+certify/Rl7DGnS
+certiorari/SM
+certitude/MIS
+cerulean/MS
+ceruloplasmin/SM
+cerumen/M Noun: uncountable
+cerussite/SM
+Cervantes/M
+Cervarix
+cervical/SM
+cervicitis/M Noun: usually uncountable
+Cervidae Taxonomic family
+cervix/M
+cervonic
+César/M
+Cesarewitch/M
+Cesário/M
+Cesarsky/M
+cespitose
+cess/SM
+cessation/SM3
+cessationism/M Noun: uncountable
+cession/FMAK
+cession/S
+Cessna/M
+cesspit/SM
+cesspool/MS
+Cestius/M
+cestode/SM
+CET/M
+Cetacea Taxonomic order
+cetacean/SM
+cetera
+ceteris
+Cetinje/M
+cetirizine/M Noun: uncountable
+cetology/3M
+Cetus Taxonomic genus
+Ceulanamaesmawr/M
+ceviche/SM
+Ceylon/M
+Cf
+cf.
+CFC/SM
+CfIT/M
+CFO/SM
+CGI/M
+Ch'ing/M
+cha-cha/SM
+cha/WyM
+Chablis/M
+Chaceley/M
+Chacewater/M
+chachalaca/SM
+Chaco/M
+Chacombe/M
+chaconne/SM
+Chacornac/M
+Chad/M
+chad/SM
+chaddar/SM
+Chaddesden/M
+Chaddesley/M
+Chaddleworth/M
+Chadha/M
+Chadian/SM
+Chadkirk/M
+Chadlington/M
+chador/SM
+Chadshunt/M
+Chadwell/M
+Chadwick/M
+Chaerephon/M
+chaeta/M
+chaetae/M
+chaetognath/SM
+Chaetognatha Taxonomic phylum
+chafe/SGDrM
+chaff/MGSD
+Chaffcombe/M
+Chaffee/M
+chaffer/rdM
+chaffinch/SM
+chaffweed/SM
+Chagall/M
+Chagas/M
+Chagford/M
+chagrin/MS
+chagrined
+Chaigley/M
+Chailey/M
+chain-smoke/SGD
+chain/M
+chain/UDGS
+chainlike
+chainsaw/DSGM
+chair/MGm5SD
+chairlady/SM
+chairlift/SM
+chairmanship/MS
+chairperson/SM
+chaise/MS
+Chakotay/M
+chakra/SM
+Chalan/M
+chalaza/OM
+chalazae/M
+Chalbury/M
+Chalcedon/M
+Chalcedonian/SM
+chalcedony/SMW
+chalcocite/SM
+chalcogen/MS
+Chalcolithic/M
+Chalcombe/M
+chalcophile/SM
+chalcopyrite/SM
+Chaldea/M
+Chaldean/SM
+Chaldee/MS
+Chaldon/M
+Chale/M
+chalet/SM
+Chalfield/M
+Chalfont/M
+Chalford/M
+Chalgrave/M
+Chalgrove/M
+chalice/MDS
+chalicothere/SM
+Chalk/M
+chalk/MGZSD
+chalkboard/MS
+Chalke/M
+chalky/TP
+Challacombe/M
+Challcombe/M
+challenge/RDGSkM
+challis/SM
+Challock/M
+Challow/M
+Chalmers/M
+Chalton/M
+Chalvey/M
+Chalvington/M
+chalybeate/SM
+chamade/SM
+chamaephyte/SM
+chamber/rdMS
+Chamberlain/M
+chamberlain/SM
+Chamberlayne/M
+Chamberlin/M
+chambermaid/MS
+chamberpot/SM
+Chambers/M
+Chambersburg/M
+Chambertin/M
+Chambly/M
+chambray/SM
+chameleon/MS
+chamfer/dSM
+chammy/SM
+chamois/MDSG
+chamomile/MS
+Chamonix/M
+champ/DGSM
+champagne/SM
+Champagne/SM
+Champaign/M
+champers/M (informal) Champagne (wine)
+Champflower/M
+champion/SGDM
+championship/SM
+Champlain/M
+Champlin/M
+Chamundi/M
+Chan/M
+chan/SM
+chance/RyGZ2SDM
+chancel/SM
+chancellery/SM
+chancellor/MS
+Chancellor/SM
+chancellorship/MS
+Chancery Chancery Standard
+chancery/SM
+chancily Adverb
+chancing/SM
+chancre/SM
+chancroid/SMO
+chancy/TP
+chandelier/MS
+Chandigarh/M
+Chandler/M
+chandler/MS
+chandlery/SM
+Chandraprabha/M
+Chandrayaan
+Chanel/M
+Chang'e
+Chang/M
+Changchun/M
+change-ringing/M Noun: uncountable
+change/RBlpGDSM
+changeability/MS
+changeableness/SM
+changelessly
+changelessness/M Noun: uncountable
+changeling/SM
+changelog/SM
+changeover/SM
+changeset/SM
+Changsha/M
+Changzhou/M
+Chanhassen/M
+Channahon/M
+channel/qs-9JSQ8RGDM
+Channelkirk/M
+channelling/SM
+Channing/M
+ChanServ/M
+chanson/SM
+chant/MRDGSJ
+Chantal/M
+chanterelle/SM
+chanteuse/SM
+Chanthaburi/M
+chanticleer/SM
+Chantilly/M
+Chantix/M
+chantry/SM
+chaology/3M
+chaos/M Noun: usually uncountable
+chaotic/YSMO
+chap/SDMG
+Chapais/M
+Chaparral/M
+chapbook/MS
+Chapdelaine/M
+chapeau/MS
+Chapel/M
+chapel/MyS
+Chapelfield/M
+Chapelhall/M
+chapelry/SM
+Chapelthorpe/M
+Chapelton/M
+Chapeltown/M
+chaperon/dSM
+chaperonage/MS
+chaperone/SM
+chaperonin/SM
+chaplain/MS
+Chaplaincy/M
+chaplaincy/MS
+chaplet/SM
+Chaplin/M
+Chaplinesque
+Chapman/M
+Chapmanslade/M
+Chapo/M
+Chappaqua/M
+Chappel/M
+chappie/SM
+chapstick/SM
+chaptalise/SGDN
+chaptalize/SGDN
+chapter/dSM
+char/5GDSM
+charabanc/SM
+characin/SM
+character/sQ98t+dpq6-MS
+characterised/U
+characteristic/SM
+characteristic/UY
+charade/SM
+charanga/SM
+charango/SM
+charas/M Noun: uncountable
+Charborough/M
+charbroil/SGD
+charcoal/GSMD
+charcuterie/SM
+Chard/M
+chard/MS
+Chardonnay/SM
+Chardstock/M
+Charest/M
+Charfield/M
+charge/cGEfDAS
+charge/M
+chargeable/AE
+chargeableness/M Noun: uncountable
+chargeback/SM
+chargee/SM
+chargehand/SM
+charger/ESM
+chargrill/SGDM
+Chariklo/M
+Charing/M
+chariot/SGMD
+charioteer/DSMG
+charism/SM
+charisma/M1W
+charismata/M
+charismatic/SM
+charitable/UY
+charitableness/MS
+Charity/M
+charity/SM
+charlady/SM
+charlatan/MS
+charlatanism/SM
+charlatanry/SM
+Charlbury/M
+Charlcombe/M
+Charlecote/M
+Charlemagne/M
+Charlemont/M
+Charlene/M
+Charles/M
+Charleston/MSd
+Charlestown/M
+Charlesworth/M
+Charleton/M
+Charlevoix-Est/M
+Charlevoix/M
+Charley/M
+Charlie/M
+Charlize/M
+Charlotte/M
+charlotte/SM
+Charlottesville/M
+Charlottetown/M
+Charlton-on-Otmoor/M
+Charlton/M
+Charlwood/M
+Charlynch/M
+charm/MRGkDpS
+Charman/M
+charmeuse/SM
+charming/TSM
+Charminster/M
+charmlessly
+charmlessness/M Noun: uncountable
+Charmouth/M
+Charndon/M
+Charney/M
+Charnock/M
+Charnwood/M
+Charolais/M
+Charon/M
+charpoy/SM
+charro/SM
+Charron/M
+charset/SM
+Charsfield/M
+Chart/M
+chart/RDG73MJS
+chartbuster/SM
+charter/dr
+Charter/SM A surname
+Charterhouse/M
+charterhouse/SM
+Chartham/M
+chartism/M Noun: uncountable
+Chartism/SM
+Chartist/MS
+chartreuse/SM
+Chartridge/M
+chartroom/SM
+chartulary/SM
+Chartwell/M
+charva/SM
+charver/SM
+Charvil/M
+Charwelton/M
+chary/TPY
+Charybdis/M
+chase/RDGSM
+Chasid/M
+Chasidic/M
+Chasidism/M
+chasing/SM
+Chaska/M
+chasm/SM
+chasmogamous
+chasmogamy/M Noun: uncountable
+Chasqueira/M
+Chassell/M
+Chassid/M
+Chassidic/M
+Chassidism/M
+chassis/M
+chaste/sQTYP
+chasten/Sd
+chastise/L
+chastity/SM
+Chastleton/M
+chasuble/SM
+chat/GS2MZDz
+chatbot/SM
+Chatburn/M
+Château-Richer/M
+château/SM
+chateaubriand/SM
+Châteauguay/M
+Chatelain/M
+châtelaine/MS
+chatelaine/MS
+Chatenet/M
+ChatGPT/M
+Chatham/M
+chatline/SM
+chatroom/SM
+Chatswood/M
+Chatsworth/M
+Chattahoochee/M
+Chattanooga/M
+chattel/SM
+chatter/dSrM
+chatterbot/SM
+chatterbox/SM
+Chatteris/M
+Chatterley/M
+Chattisham/M
+Chatton/M
+Chattooga/M
+chatty/PT
+ChatZilla/M
+Chaucer/M
+Chaucerian/SM
+Chaudière-Appalaches/M
+chauffeur/DSMG
+chauffeuse/SM
+chaulmoogra/SM
+Chaum/M
+Chautauqua/M
+chauvinism/MS
+chauvinist/MSW1
+chav/MS~
+chava/SM
+Chaves/M
+chavvy/T
+Chawleigh/M
+Chawston/M
+Chawton/M
+Chayka/M
+Chazen/M
+Che/M
+Cheadle/M
+Cheam/M
+Cheap/M
+cheap/PYT~
+cheapen/dS
+cheapjack/SM
+cheapo/SM
+Cheapside/M
+cheapskate/SM
+Chearsley/M
+cheat/RDSMG
+Cheatham/M
+Cheboygan/M
+Chebsey/M
+Chechen/SM
+check-in/SM
+check-up/MS
+check/ASGD
+checkable
+checkbox/SM
+Checkendon/M
+checker/SM
+checkerberry/SM
+Checkley/M
+checklist/SM
+checkmate/MDSG
+checkout/SM
+checkpoint/MS
+checksum/GMSD
+Chedburgh/M
+Cheddar/M
+cheddar/SM
+Cheddington/M
+Cheddleton/M
+Cheddon/M
+Chedgrave/M
+Chedington/M
+Chediston/M
+Chedworth/M
+Chedzoy/M
+Chee/M
+cheek/2GMzDZS
+cheekbone/SM
+cheekpiece/SM
+Cheektowaga/M
+cheeky/TP
+cheep/MGDS
+cheer/RDp6G2ZjSMz
+cheerful/TP
+cheerio/SM
+cheerleader/SM
+cheerleading/M Noun: uncountable
+cheerless/YP
+cheery/T
+cheese-cutter/SM
+cheese-paring/M
+cheese-skipper/M
+cheese/ZMDSG
+cheeseboard/SM
+cheeseburger/MS
+cheesecake/SM
+cheesecloth/MS
+cheesemaker/SM
+cheesemaking/M Noun: uncountable
+cheesemonger/SM
+cheesepare/SGD
+cheeseparing/SM
+cheesewood/SM
+cheesy/PTY
+cheetah/SM
+chef-d'oeuvre/M
+chef/GDSM
+chefs-d'oeuvre/M
+cheilocystidia/M
+cheilocystidium/M
+Chekhov/M
+Chekhovian Adjective
+Chekov/M
+Chelan/M
+chelant/M
+chelate/DnMG
+chelator/MS
+Chelborough/M
+Cheldon/M
+cheletropic
+Chelford/M
+chelicera/OM
+chelicerae/M
+Chelicerata Taxonomic subphylum
+chelicerate/SM
+Chellaston/M
+Chellean/M
+Chellington/M
+Chelmarsh/M
+Chelmondiston/M
+Chelmorton/M
+Chelmsford/M
+Chelmsley/M
+Chelmsleywood/M
+chelotropic
+Chelsea/M
+Chelsfield/M
+Chelsham/M
+Chelsworth/M
+Cheltenham/M
+Chelveston/M
+Chelvey/M
+Chelwood/M
+Chelyabinsk/M
+chem/M3
+chemautotrophically
+chemerin/M Noun: uncountable
+chemical/MSY
+chemigraphy/M Noun: uncountable
+chemiluminescence/M Noun: usually uncountable
+chemiluminescent/Y
+cheminformatics/M Noun: uncountable
+chemise/SM
+chemist/y
+chemistry/SM
+chemitype/SM
+Chemnitz/M
+chemo-statical
+chemo/SM
+chemoarchitecture/SM
+chemoattractant/SM
+chemoattraction/SM
+chemoattractive
+chemoautotroph/SMZ
+chemoautotrophic/Y
+chemoceptor/SM
+chemocline/SM
+chemoimmunotherapy/SM
+chemoinformatics/M Noun: uncountable
+chemokine/SM
+chemomechanical/Y
+chemometric/S
+chemophobia/M Noun: uncountable
+chemoprevention/SM
+chemopreventive/SM
+chemoprophylactic/SM
+chemoprophylaxis/M Noun: uncountable
+chemoradiotherapy/SM
+chemoreception/SM
+chemoreceptive
+chemoreceptor/SM
+chemoreflex/SM
+chemoselective/Y
+chemosensitive
+chemosensitivity/SM
+chemosensory Adjective
+chemosphere/SM
+chemostat/SM
+chemosurgery/M Noun: uncountable
+chemosynthesis/M Noun: usually uncountable
+chemosynthetic/Y
+chemotactic/OY
+chemotaxis/M
+chemotherapeutic/SM
+chemotherapy/SM3
+chemtrail/SM
+Chemung/M
+chemurgy/SM
+Chen/M
+Chenango/M
+Cheney/M
+Cheng/M
+Chengdu/M
+Chenies/M
+chenille/SM
+Chennai/M
+Cheong/M
+Cheops/M
+Chepping/M
+Chepstow/M
+cheque/RSM
+chequebook/MS
+chequer/dSM
+chequerboard/MS
+chequing/M Noun: uncountable
+Cher/M
+Cherbourg/M
+Cherenkov/M
+Cherhill/M
+Cherie/M
+Cherington/M
+cherish/GDSR
+Cheriton/M
+Cherkasy/M
+chermoula/M Noun: uncountable
+Chern/M
+Cherniawsky/M
+Chernihiv/M
+Chernivtsi/M
+Chernobyl/M
+Chernoff/M
+Cherokee/SM
+cheroot/MS
+Cherrington/M
+cherry-pick/SGD
+Cherry/M
+cherry/MS
+cherrywood/M Noun: uncountable
+chert/SM
+Chertsey/M
+cherub/SMW1
+cherubim/M
+chervil/SM
+Cherwell/M
+Cheryl/M
+Chesapeake/M
+Cheselbourne/M
+Chesham/M
+Cheshill/M
+Cheshire/M
+Cheshunt/M
+Chesil Chesil Beach
+Chesley/M
+Cheslyn/M
+Chesnutt/M
+chess/mSM
+chessboard/MS
+Chesser/M
+Chessington/M
+Chesson/M
+chest/6ZSDM2z
+Chester-le-Street/M
+Chester/M
+Chesterblade/M
+Chesterfield/M
+chesterfield/SM
+Chesterford/M
+Chestermere/M
+Chesterton/M
+Chestfield/M
+chestful/SM
+chestnut/MS
+Chestnuthill/M
+chesty/T
+Cheswardine/M
+Cheswick/M
+Chetham/M
+Chetnole/M
+chetrum/SM
+Chettisham/M
+Chettle/M
+Chetton/M
+Chetwode/M
+Chetwynd/M
+chevalier/MS
+Cheveley/M
+Chevening/M
+Cheverell/M
+Chevet/M
+chevet/SM
+Chevington/M
+Cheviot/SM
+Chevrolet/M
+chevron/SM
+chevroned
+Chevy/M
+chew/GRZ2SM7D
+Chew/M
+Chewbacca/M
+Chewton/M
+chewy/TM
+Cheyenne/SM
+Cheyne/M
+Cheysson/M
+chg/M
+chge
+Chhattisgarh/M
+Chi/M
+chi/SM
+chia/SM
+Chian/MS
+Chiang/M
+Chianti/MS
+chianti/SM
+Chiarello/M
+Chiariglione/M
+chiaroscuro/MS
+chiasma/M
+chiasmata/M
+Chiba/M
+Chibougamau/M
+chibouk/SM
+Chicago/M
+Chicagoan/SM
+Chicagoland/SM
+chicane/MDGS
+chicanery/SM
+Chicano/SM
+chicer
+chicest
+Chicheley/M
+Chichester/M
+Chichewa/M
+chichi/TSM
+Chichilnisky/M
+chick/MS
+chickadee/MS
+Chickamauga/M
+Chickasaw/MS
+Chickasha/M
+chicken-and-egg
+chicken-livered
+chicken/dSM
+chickenfeed/SM
+chickenhearted/Y
+chickenpox/SM
+Chickerell/M
+Chicklade/M
+Chickney/M
+chickpea/SM
+Chicksands/M
+chickweed/MS
+chicle/YMS
+chicness/M Noun: usually uncountable
+Chico/M
+Chicopee/M
+chicory/SM
+Chicot/M
+Chicxulub/M
+Chiddingfold/M
+Chiddingly/M
+Chiddingstone/M
+chide/DkSG
+Chideock/M
+Chidham/M
+Chidlow/M
+Chief/M
+chief/SMa
+chief/Y
+chiefdom/MS
+chieftain/SM
+chieftainship/SM
+Chieveley/M
+chiffchaff/SM
+chiffon/MS
+chiffonade/SM
+chiffonier/MS
+chigger/SM
+Chignall/M
+chignon/SM
+Chigwell/M
+chihuahua/SM
+chikungunya/M Noun: uncountable
+chilblain/SM
+Chilbolton/M
+Chilcomb/M
+Chilcombe/M
+Chilcompton/M
+Chilcote/M
+Child/M
+child/YpMD
+childage/M
+childbearing/M Noun: usually uncountable
+childbed/SM
+childbirth/SM
+childcare/SMR
+Childe/M
+childe/M
+Childerditch/M
+Childerley/M
+Childermas/MS
+childhood/SM
+childish/PY
+childless/P
+childlike/P
+childmind/SGDR
+childproof/SGD
+childrearing/M Noun: uncountable
+children/M
+Childrey/M
+Childswickham/M
+Childwall/M
+Chile/MS
+Chilean/SM
+Chilfrome/M
+Chilham/M
+Chili/M
+chiliad/SM
+chiliarch/M
+chiliarchs
+chiliastic
+chill/TDk2PRGMYS
+Chillenden/M
+Chillerton/M
+Chillesford/M
+chilli/SMP
+Chillicothe/M
+Chillingham/M
+Chillington/M
+Chilliwack/M
+chilly/TSM
+Chilmark/M
+Chilopoda Taxonomic class
+Chilson/M
+Chiltern/SM
+Chilthorne/M
+Chiltington/M
+Chilton/M
+Chilvers/M
+Chilworth/M
+chimaera/SMw
+Chimborazo/M
+chime/RMDSG
+chimera/SMwW
+chimichanga/SM
+chimichurri/SM
+chiminea/SM
+chimney/DMS
+chimp/MS
+chimpanzee/MS
+chin-strap/MS
+chin-wag/SMGD
+chin/pSMGD
+China/Mm
+china/SM
+chinaberry/SM
+Chinatown/M
+chinaware/SM
+chincherinchee/SM
+chinchilla/MS
+Chindit/MS
+chine/SM
+Chineham/M
+Chinese/M
+Chiney/M
+Ching/M
+ching/SM
+Chingford/M
+chink/DGMS
+Chink/MS
+Chinley/M
+Chinnock/M
+Chinnor/M
+Chino/M
+chino/SM
+chinoiserie/SM
+Chinook/M
+chinook/SM
+chinstrap/SM
+chintz/SMZ2z
+chintzy/T
+Chinyanja/M
+chionodoxa/SM
+Chios/M
+chip/GMJZDSR
+chipboard/SM
+chipmaker/SM
+chipmunk/MS
+chipolata/SM
+chipotle/SM
+Chippendale/M
+Chippenham/M
+Chipperfield/M
+Chippewa/M
+chippie/SM
+Chipping/M
+chipping/SM
+chippy/SPM
+chipset/SM
+Chipstable/M
+Chipstead/M
+Chirac/M
+chiral
+chirality/SM
+Chirbury/M
+Chirk/M
+Chirnside/M
+chirography/SM
+chiromancy/M Noun: usually uncountable
+Chiron/M
+chiropody/3SM
+chiropractic/MS
+chiropractor/SM
+Chiroptera Taxonomic order
+chiropteran/SM
+chiropterochore/MSW1
+chiropterochorous
+chiropterochory/M Noun: uncountable
+chirp/GDZSM
+chirpy/PYT
+chirr/GDSM
+chirrup/SdM
+Chirton/M
+chiru/SM
+Chisago/M
+chisel/RDSGJM
+Chiselborough/M
+Chiseldon/M
+Chishill/M
+Chisholm/M
+Chișinău/M
+Chisinau/M
+Chislehampton/M
+Chislehurst/M
+Chislet/M
+Chiswick/M
+Chisworth/M
+chit-chat/SGDM
+chit/SM
+chital/SM
+chitarrone/SM
+chitchat/DSMG
+Chithurst/M
+chitin/MS
+chitinous
+Chitonga
+chitosan/SM
+Chittagong/M
+Chittagonian/M
+Chittenden/M
+chitter/Sd
+chitterlings/M Noun: uncountable
+Chitterne/M
+Chittlehamholt/M
+Chittlehampton/M
+Chiu/M
+chivalrous/PY
+chivalry/WSM
+chive/SM
+Chivelstone/M
+Chivers/M
+Chivesfield/M
+chivvy/SGDM
+chlamydia/M
+chlamydia/OS^
+chlamydiae/M
+Chlamydomonas Taxonomic genus
+chlamydomonas/M
+Chloe/M
+chloral/M Noun: usually uncountable
+chloramphenicol/SM
+chlorate/SM
+chlordiazepoxide/M Noun: usually uncountable
+chlorella/M
+chlorhexidine/M Noun: uncountable
+chloride/SM
+chlorinate/CGSDN
+chlorinator/SM
+chlorine/nM
+chlorite/SMW
+chloroacetone/M Noun: uncountable
+chlorofluorocarbon/SM
+chloroform/MSDGW
+chloroformate/MS
+Chloromycetin/M
+chlorophyll/SM
+chlorophyte/SM
+chloropicrin/SM
+chloroplast/SMW
+chloroprene/M Noun: usually uncountable
+chloroquine/M Noun: usually uncountable
+chloroses
+chlorosis/M
+chlorosulfonate/SM
+chlorothiazide/M Noun: usually uncountable
+chlorotic
+chlorpicrin/SM
+chlorpromazine/M Noun: usually uncountable
+chlorthalidone/M Noun: uncountable
+chlorzoxazone/M Noun: uncountable
+chm
+choanocyte/SM
+Chobham/M
+choccy/SM
+chock-a-block
+chock-full
+chock/DGSM
+chocker
+chocoholic/SM
+chocolate/SMZ
+chocolatey
+Choctaw/SM
+Choe/M
+Choi/M
+choice/TSPYM
+choir/GSDM
+choirboy/MS
+choirgirl/MS
+choirman/M
+choirmaster/SM
+choirmen/M
+choisya/SM
+Chojun/M
+choke/RkDSMG
+chokeberry/SM
+chokecherry/SM
+Chol/M
+cholangiocarcinoma/M
+Cholderton/M
+cholecalciferol/SM
+cholecystectomy/SM
+cholecystitis/M Noun: usually uncountable
+cholecystokinin/SM
+cholelithiasis/M
+choler/SM
+cholera/MSW1
+Cholesbury/M
+cholesteric/SM
+cholesterol/SM
+choline/M Noun: usually uncountable
+cholinergic/SM
+cholinesterase/SM
+Chollerton/M
+Cholmondeley/M
+Cholmondeston/M
+Cholsey/M
+chomp/SMDG
+Chomsky/M
+Chondrichthyes/M
+chondrite/SMW
+chondrocranium/M
+chondrocyte/SM
+Chongqing/M
+choosable/SM
+choose/GR2SZ
+choosy/T
+chop/R2ZSMzGD
+chophouse/SM
+Chopin/M
+chopper/SdM
+choppy/T
+chopstick/SM
+Choptank/M
+choral/SM
+chorale/MS
+chord/GSDMO
+Chordata Taxonomic phylum
+chordate/SM
+chording/SM
+chordophone/SM
+chordotonal/SM
+chore/MoDSG
+chorea/SM
+choreiform Adjective
+choreograph/ZGRS1DW
+choreography/MS
+choreology/3M
+chorine/SM
+chorioallantoic
+choriocarcinoma/SM
+choriocarcinomata/M
+chorion/MW
+chorister/SM
+chorizo/SM
+Chorley/M
+Chorleywood/M
+Chorlton/M
+chorographer/SM
+chorography/SMW
+choroid/SMO
+chortle/RGDSM
+chorus/MdS
+chose/SM
+Choseley/M
+chosen
+Choti/M
+Chou/M
+choucroute/M Noun: usually uncountable
+chough/SM
+choux/M
+chow/GSMD
+Chowan/M
+Chowchilla/M
+chowder/SM
+Chowley/M
+Chris/M
+Chrishall/M
+chrism/MS
+Chrisman/M
+chrismation/SM
+Chrissie/M
+Christ/MpY
+Christadelphian/SM
+Christchurch/M
+christen/dAS
+Christendom/M
+christening/MS
+Christensen/M
+Christer/M
+Christhood/M
+Christi/M
+Christiaan/M
+Christian/MS
+Christiana/M
+Christiane/M
+Christiania/M
+Christianise/SGDn
+Christianity/M Noun: usually uncountable
+Christianize/SGDn
+Christiansburg/M
+Christiansen/M
+Christie/MS
+Christina/M
+Christine/M
+Christingle/SM
+Christleton/M
+Christlike
+Christmas/MSZ
+Christmastide/SM
+Christmastime/SM
+Christoffel/M
+Christolatry/MS
+Christological/Y
+Christology/SM
+Christon/M
+Christoph/M
+Christophany/MS
+Christopher/M
+Christow/M
+Christy/M
+chroma/SM1
+chromakey/SGDM
+chromate/SM
+chromatic/SP
+chromaticism/SM
+chromaticity/SM
+chromatid/SM
+chromatin/MS
+chromatogram/MS
+chromatograph/ZWSM
+chromatography/SM
+chromatopsia/SM
+chrome/MWGD
+chromebook/SM
+chromic
+chrominance/SM
+chromite/SM
+chromium/SM
+chromocene/SM
+chromodynamics/M Noun: uncountable
+chromogen/SMW
+chromoly/M Noun: uncountable
+chromophore/SMW
+chromoplast/SM
+chromosome/SMO
+chromosphere/WSM
+chromous
+chronic/YSM
+chronicity/SM
+chronicle/MSRGD
+chronoamperometry/SM
+chronobiology/3M
+chronograph/WZSM
+chronologer/SM
+chronology/13SMw
+chronometer/SMW
+chronometrical/Y
+chronometry/M Noun: usually uncountable
+chronoscope/SM
+chronostratigraphy/WM
+chronotherapy/SM
+chronotropic/Y
+chronozone/MS
+chrysalis/SM
+chrysanth/SM
+chrysanthemum/MS
+Chryse/M
+Chrysler/M
+chrysoberyl/SM
+chrysophyte/SM
+Chrysostom/M
+Chryston/M
+chthonic/Y
+chub/SMZ
+Chubb/MS
+Chubbuck/M
+chubby/TP
+chuck/SDGM
+Chuckie/M
+chuckle/DkGSM
+chucklehead/SMD
+chucklesome
+chuckwalla/SM
+chuddies/M
+Chudleigh/M
+chuff/SGDM
+chug/DSGMR
+chukka/SM
+Chula/M
+Chulmleigh/M
+chum/DzMZSG
+Chumleigh/M
+Chumley/M
+chummy/TPSM
+chump/MGDS
+chumping/M
+Chung/M
+chunk/ZSGMD
+chunky/TP
+Chunnel/M
+chunter/Sd
+Chunyun/M
+chupacabra/SM
+chuppa/M
+chuppah/M
+chuppot/M
+Church-of-England/M
+church/mMG5SDY
+Church/MS
+Churcham/M
+Churchdown/M
+churchgoer/MS
+churchgoing/SM
+churchianity/M
+Churchill/M
+Churchillian/SM
+Churchilliana/M
+Churchland/M
+churchly/P
+churchmanship/SM
+churchmice/M
+churchmouse/M
+Churchover/M
+Churchstanton/M
+Churchstoke/M
+Churchstow/M
+Churchtown/M
+churchwarden/SM
+churchy/TSM
+churchyard/MS
+churidar/SM
+Churig/M
+churl/MS
+churlish/YP
+churn/RDGSM
+churning/SMY
+churr/SGDM
+churrascaria/SM
+churrasco/M Noun: uncountable
+Churrigueresque
+Churt/M
+Churton/M
+Churyumov-Gerasimenko/M Jupiter-family comet
+Churyumov/M
+Chute/M
+chute/SGMD
+chutney/SM
+chutzpah/SM
+chyme/MS
+chymosin/SM
+chymotrypsinogen/SM
+Chytil/M
+chytrid/SM
+CI
+Ci
+CIA/M
+ciabatta/SM
+Cialis/M
+Ciampino/M
+ciao/SM
+Ciara/M
+Ciaran/M
+Cibola/M
+Cibolo/M
+ciboria/M
+ciborium/M
+cicada/SM
+cicatrice/MSO
+cicatrise/SDGn
+cicatrix/M
+cicatrize/SDGn
+cicchetti
+Cicciolina/M
+Cicely/M
+cicely/SM
+Cicero/M
+cicerone/SM
+ciceroni/M
+Ciceronian/SM
+Ciceronianism/SM
+cicheti
+cichlid/SM
+cicisbei/M
+cicisbeo/SM
+ciclesonide/M Noun: uncountable
+ciclopirox/M Noun: uncountable
+ciclosporin/SM
+CID/SM
+cider/CMS
+Cidre/M
+Ciecierski/M
+cig/SM
+cigar/SM
+cigarette/MS
+cigarillo/SM
+ciguatera/SM
+CIIWA/M Competitive Intelligence and Information Warfare Association
+Cil-y-Cwm/M
+cilantro/M Noun: usually uncountable
+Cilau/M
+Cilcain/M
+Cilcennin/M
+Cilfargen/M
+Cilgerran/M
+Cilgwyn/M
+cilia/My
+ciliate/DFYS
+Ciliau/M
+cilium/M
+Cille/M
+Cilley/M
+Cilmery/M
+Cilrheydyn/M
+Cilybebyll/M
+Cilycwm/M
+Cilymaenllwyd/M
+Cimarron/M
+cimbalom/SM
+Cimino/M
+Cimmerian/SM
+Cinavia/M
+cinch/DSGM
+cinchona/SM
+Cincinnati/M
+cincture/MGDS
+cinder/SdM
+Cinderella/M
+Cinderford/M
+Cindy/M
+cine/M Noun: uncountable
+cineast/SM
+cineaste/SM
+cinéma-vérité/M
+cinema/WMS1
+cinemagoer/SM
+cinemagoing/M
+cinematheque/SM
+cinematograph/SMR1
+cinematography/WSM
+cinephile/SM
+cinephilia/M Noun: uncountable
+Cinerama/M
+cineraria/SM
+cinerarium/SM
+cinerary
+cinereous
+cinereum/S tuber cinereum
+cineritious
+Cingalese/M
+cingula/M
+cingulate/SM
+cingulum/M
+cinnabar/MS
+cinnamic
+Cinnaminson/M
+cinnamon/SM
+cinnarizine/M Noun: uncountable
+Cinque/M
+cinquecentist/SM
+cinquecento/M Noun: uncountable
+cinquefoil/SM
+Cinzano/M
+cipher/MdS
+ciphertext/SM
+ciprofloxacin/M Noun: uncountable
+cir
+circa
+circadian Adjective
+Circassian/SM
+Circe/M
+Circinus/M
+circle/GDSMr
+circlet/MS
+Circleville/M
+circlip/SM
+circuit/MdSO
+circuitous/YP
+circuitry/MS
+circuity/SM
+circulant/SM
+circular/8qYQPMS
+circularity/MS
+circularization/SM
+circulate/GyDSnV
+circulation/MA
+circulator/SM
+circumambulate/SGDn
+circumambulatory Adjective
+circumcircle/SM
+circumcise/DSGR
+circumcision/SM
+circumesophageal Adjective
+circumference/SM
+circumferential/Y
+circumflex/DSGM
+circumfuse/DGS
+circumjacent Adjective
+circumlocution/SM
+circumlocutory Adjective
+circumlunar Adjective
+circumnavigate/DnSxG
+circumnavigator/SM
+circumplanetary Adjective
+circumpolar Adjective
+circumposition/SM
+circumscribe/SDG
+circumscription/SM
+circumsolar Adjective
+circumspect/Y
+circumspection/SM
+circumsphere/SM
+circumstance/GSDM
+circumstantial/Y
+circumstantiality/SM
+circumstellar Adjective
+circumterrestrial Adjective
+circumvallate/SGDn
+circumvent/DGS7
+circumvention/SM
+circumvolution/SM
+circus/SM
+Cirencester/M
+cirque/SM
+cirrhoses
+cirrhosis/M
+cirrhotic/SM
+cirri/M
+cirriped/SM
+cirripede/SM
+cirrostrati/M
+cirrostratus/M
+cirrus/M
+cis
+CISC/SM Initialism of complex instruction set computer
+Cisco/M
+cisgender/SM
+cisgendered
+cisplatin/M Noun: usually uncountable
+Cissbury/M
+cissy/SM
+Cistercian/SM
+cistern/SM
+cistron/SM
+cistus/M
+citable Adjective
+citadel/SM
+citalopram/M Noun: uncountable
+cite/nAGDS
+citify/SGD
+citizen/MYyS
+citizenhood/M Noun: uncountable
+citizenry/SM
+citizenship/SM
+citole/SM
+citrate/DSM
+citriculture/M Noun: usually uncountable
+citrination/SM
+citrine/SM
+citrinin/M Noun: usually uncountable
+Citrix/M
+Citroen/SM
+citron/MS
+citronella/SMOW
+citronyl/M Noun: uncountable
+citrous
+citrovorum/M
+Citrus/M
+citrus/ZSWM
+citrusy
+cittern/SM
+city/DMS
+CityFlyer/M
+CityPoint/M
+cityscape/SM
+citywide/SM
+civet/SM
+civic/SY
+civil/Y
+civilian/SM
+civilise/SGDnR
+civility/ISM
+Civilization/M
+civilizational/Y
+civilize/SGDnR
+Civvy Civvy Street
+civvy/SM
+CJD/M Initialism of Creutzfeldt-Jakob disease
+ck/C
+Cl
+cl/GJ
+Clabby/M
+Clachan/M
+clack/DGSrM
+Clackamas/M
+Clackmannan/M
+Clackmannanshire/M
+Clacton/M
+clad/JGSD
+cladding/M
+clade/SM
+cladism/M Noun: uncountable
+cladistic/SY
+cladoceran/SM
+cladode/SM
+cladogenesis/M
+cladogenetic/Y
+cladogram/SM
+Clady/M
+Cladymore/M
+Claffey/M
+Claiborne/M
+Claife/M
+claim/ERSGCAD
+claim/M
+claimable/SM
+claimant/SM
+Claines/M
+Clair/M
+clairaudience/SM
+clairaudient/SM
+Claire/M
+clairvoyance/MS
+clairvoyant/SMY
+Clallam/M
+clam/GMzZDS
+clamant/Y
+clamber/dSrM
+clamdigger/SM
+clammy/TP
+clamorous/YP
+clamour/GMDRS
+clamp/SGMDr
+clampdown/SM
+clamshell/SM
+clan/mSM
+Clanabogan/M
+Clancarty/M
+Clancy/M
+clandestine/YP
+clandestinity/M Noun: usually uncountable
+Clandon/M
+Clanfield/M
+clang/DRGSM
+clangorous/Y
+clangour/SGDM
+clank/DMkGSr
+Clannaborough/M
+clannish/YP
+Clanricarde/M
+clanship/SM
+clap/RGDSM
+Clapham/M
+Clapp/M
+clapperboard/SM
+Clapton-in-Gordano/M
+Clapton/M
+claptrap/MS
+claque/SM
+Clara/M
+clarabella/SM
+Clarbeston/M
+Clarborough/M
+Clare/MZ
+Claremont/M
+Claremore/M
+Clarence-Rockland/M
+Clarence/M
+Clarenceux/M
+Clarendon/M
+Clareson/M
+claret/dSM
+Clareton/M
+clarificatory Adjective
+clarify/DGSnr
+Clarinbridge/M
+clarinet/MS
+clarinettist/MS
+Clarion/M
+clarion/MDSG
+Clarissa/M
+Clarita/M
+clarity/SM
+Clark/MS
+Clarke/M
+Clarkia
+clarkia/SM
+Clarksburg/M
+Clarksdale/M
+Clarkson/M
+Clarkston/M
+Clarkstown/M
+Clarksville/M
+Clarkville/M
+Claromontanus
+clary/M Noun: uncountable
+clash/DGSMr
+clasp-knife/M
+clasp-knives
+clasp/SUGDM
+clasper/SM
+class-conscious Adjective
+class/=rGZDMwpS157m
+classful/SM
+classic/M3S
+classical/SM3
+classicality/SM
+classicise/SGD
+classicism/SM
+classicize/SGD
+classifiable
+classification/MaCA
+classificatory Adjective
+classified/SM
+classifies/CA
+classify/R7DSnG
+classism/M Noun: usually uncountable
+classmanship/M
+classmark/SM
+classmate/SM
+classroom/MS
+classwork/M Noun: uncountable
+classy/TP3Y
+clast/SMW
+Clatford/M
+clathrate/SM
+clathrin/SM
+Clatsop/M
+Clatt/M
+clatter/dSZkrM
+Clattercot/M
+Clatworthy/M
+Claude/M
+Claudelands/M
+Claudette/M
+Claudia/M
+Cláudia/M
+claudication/SM
+Claudine/M
+Cláudio/M
+Claudio/M
+Claudius/M
+Claudy/M
+Claughton/M
+Claus/M
+clause/SMO
+Clausen/M
+Clausewitz/M
+claustra/M
+claustrophobe/SM
+claustrophobia/M Noun: usually uncountable
+claustrophobic/SMY
+claustrum/M
+clavate
+clave/FM
+claver/SM
+Claverack/M
+Claverdon/M
+Clavering/M
+Claverley/M
+Claverton/M
+clavichord/SM
+clavicle/SM
+clavicular
+clavier/MS
+clavulanate/SM
+claw/DSGMpr
+clawback/SM
+Clawson/M
+Clawton/M
+Claxby/M
+Claxton/M
+clay/ZSMDG
+Clayborne/M
+Claybrooke/M
+Claydon/M
+Claygate/M
+Clayhanger/M
+Clayhidon/M
+clayier
+clayiest
+Claylands/M
+claymore/SM
+Claypole/M
+claystone/SM
+Claythorpe/M
+Clayton-le-Dale/M
+Clayton-le-Woods/M
+Clayton/M
+clayware/SM
+Clayworth/M
+clean-cut
+clean-living
+clean-shaven
+clean-up/MS
+clean/MSGYPTRDB~
+cleaning/SM
+cleanly/TP
+cleans/DRSG
+cleanse/SM
+cleanskin/SM
+clear-cut/SG
+clear-headed/PY
+clear-out/SM
+clear-sighted/Y
+clear-sightedness/M Noun: uncountable
+clear-up/SM
+Clear/M
+clear/TPSMYGJDr
+clearance/MS
+Clearfield/M
+clearing/SM
+Clearlake/M
+cleartext/SM
+Clearwater/M
+clearway/MS
+clearwing/SM
+Cleasby/M
+cleat/GMDS
+Cleator/M
+cleavage/SM
+cleave/RGSMD
+Cleburne/M
+Cleckheaton/M
+Cleckley/M
+Clee/M
+Cleer/M
+Cleethorpes/M
+Cleeve/M
+clef/SM
+cleft/DGSM
+Clegg/M
+Clehonger/M
+Cleish/M
+cleistogamous
+cleistogamy/M Noun: uncountable
+Cleland/M
+clematis/MS
+Clemence/M
+Clemenceau/M
+clemency/MIS
+Clemens/M
+clement/IY
+Clement/SM
+Clemente/M
+Clementine/M
+clementine/SM
+Clemmons/M
+Clemson/M
+clench/GUSD
+clench/M
+Clenchwarton/M
+Clendon/M
+Clenston/M
+Clenstone/M
+Clent/M
+Cleobury/M
+Cleopatra/M
+Cleophas/M
+Clepington/M
+clepsydra/SM
+clepsydrae/M
+cleptobioses
+cleptobiosis/M
+cleptobiotic
+clerestory/SM
+clergy/5mSM
+cleric/SYM
+clerical/SM
+clericalism/MS
+clerk/GSYDM
+Clerk/SM
+clerkdom/SM
+Clerke/M
+Clerkenwell/M
+clerkship/MS
+Clermont-Ferrand/M
+Clermont/M
+Clether/M
+Cleve/M
+Clevedon/M
+Cleveland/M
+Cleveleys/M
+clever/PY
+cleverer
+cleverest
+Cleverton/M
+clevis/SM
+clew/SMDG
+Clewer/M
+Cley/M
+CLI/SM
+Clianthus Taxonomic genus
+Cliburn/M
+cliché/MSGD clichéed is a rare form of clichéd
+cliche/SGDM
+clichéd
+click-through/SM
+click/RSGDM7
+clickbait/SM
+clicket/SM
+clickjacking/M Noun: uncountable
+clickstream/SM
+Cliddesden/M
+client-server
+client/MS
+clientele/SM
+clientèle/SM
+clientelism/SM
+clientship/SM
+Cliff/M
+cliff/SM
+Cliffe/M
+cliffhang/SGR
+cliffhung
+Clifford/M
+Cliffsend/M
+Cliffside/M
+clifftop/SM
+Clifon/M
+Clifton/M
+climacteric/MS
+climactic/OY
+climate/M1S
+climatology/S3Mw1
+climax/MGDS
+climb/7GRDSJM
+climbdown/SM
+clime/WSM
+Climping/M
+Climsland/M
+Clincarthill/M
+clinch/SRGkDM
+clindamycin/M Noun: uncountable
+Cline/M
+cling/RGZSM
+clingfish/SM
+clingstone/SM
+clingy/TP
+clinic/YSM
+clinical/K
+clinician/SM
+clink/DGSRM
+clinker/d
+clinometer/SIM
+clinoptilolite/SM
+clinopyroxene/SM
+Clint/M
+Clinton/SM
+Clintonian/SM
+Clio/M
+cliometric/S
+cliometrician/SM
+clip-clop/SGDM
+clip-on/SM
+clip/RGSDJM
+clipboard/SM
+Clippesby/M
+clippie/SM
+clipping/SM
+Clipsham/M
+Clipston/M
+Clipstone/M
+clique/DMGSZ
+cliquier
+cliquiest
+cliquish/YP
+clit/ZSM
+Clitheroe/M
+clitic/SM
+cliticise/SGDN
+cliticize/SGDN
+clitoral/Y
+clitoridectomy/SM
+clitorides
+clitoris/MS
+clitter/Sd
+Clive/M
+Cliveden/M
+clivia/SM
+Cliviger/M
+Clixby/M
+Clizbe/M
+cloaca/MO
+cloacae/M
+cloak-and-dagger
+cloak/DMGSC
+cloakroom/MS
+Cloanto/M
+clobber/SdM
+clobetasol/M Noun: uncountable
+Clocaenog/M
+cloche/SM
+clock-watch/SGDR
+clock/SDMRGJ
+clockmaker/MS
+clockmaking/M Noun: uncountable
+clockwatcher/SM
+clockwise/Y
+clockwork/SM
+clod/SMGD
+cloddish/P
+clodhopper/MS
+Clodock/M
+Cloford/M
+clog/MSGD
+Clogh/M
+Clogher/M
+Cloghy/M
+cloisonné/SM
+cloisonne/SM
+cloister/MdS
+cloistral
+Cloke/M
+clomp/SMDG
+Clonaid/M
+clonal/Y
+clonazepam/M Noun: uncountable
+clone/GDMRS
+Cloney/M
+Clonfert/M
+clonidine/M Noun: usually uncountable
+clonk/GSDM
+Clonmel/M
+Clonmore/M
+Clonoe/M
+Clooney/M
+clop/DSGM
+Clophill/M
+clopidogrel/M Noun: uncountable
+Clopton/M
+Cloquet/M
+closable
+close-cropped
+close-down/M
+close-fisted
+close-fitting
+close-hauled
+close-knit
+close-mouthed
+close-ratio
+close-set
+close-up/SM
+Close/M
+close/TRJPDYGSM
+Closeburn/M
+closed-circuit
+closed/UE
+closer/ESM
+closet/SdM
+closish
+Closteroviridae Taxonomic family
+clostridia/OM
+clostridium/M
+closure's/E
+closure/GDSM
+closures/E
+Closworth/M
+clot/GDMS
+cloth/DGJSM
+Clothall/M
+clothbound
+clothe/UGD
+clothes-peg/SM
+clothes/f
+clothesbrush/SM
+clotheshorse/SM
+clothesline/SGDM
+clothesman/M
+clothesmen/M
+clothier/SM
+clothing/Mf
+clotrimazole/M Noun: usually uncountable
+Clotton/M
+cloud-cuckoo-land/M Noun: uncountable
+Cloud/M
+cloud/pZSMDGz
+cloudberry/SM
+cloudburst/SM
+clouded/cU
+Cloudesley/M
+cloudless/PY
+cloudlet/SM
+cloudscape/SM
+cloudtop/SM
+cloudy/TP
+Clough/M
+Cloughmills/M
+Cloughton/M
+Clouston/M
+clout/SMDG
+Clova/M
+clove/RMS
+Clovelly/M
+cloven
+Cloverlea/M
+cloverleaf/SM
+Clovis/M
+clowder/SM
+clown/SDGM
+Clowne/M
+clownfish/SM
+clownish/PY
+cloy/DkSG
+Cloyne/M
+clozapine/M Noun: usually uncountable
+club-class
+club-foot/MD
+club/GSMDBR
+Club/M
+clubbing/SM
+clubfeet/M
+clubhouse/MS
+clubland/M Noun: usually uncountable
+clubman/M
+clubmate/SM
+clubmen/M
+clubmoss/SM
+clubroom/SM
+clubroot/SM
+cluck/DGMS
+cludgy/T
+clue/pMDGS
+clued-up
+cluelessness/M Noun: uncountable
+Clumber/M
+clump/MGSZD~
+clumpy/T
+clumsy/TYP
+Clun/M
+Clunbury/M
+clung
+Clungunford/M
+Cluniac/MS
+Clunie/M
+clunk/DRMGzZS
+clunky/TP
+Clunton/M
+Cluny/M
+clupanodonic
+cluster/MdSJ
+clutch/SDGM
+Clute/M
+Clutha/M
+clutter/dSM
+Clutton/M
+CLV/M Noun: uncountable
+Clwyd/M
+Clydach/M
+Clydau/M
+Clyde/M
+Clydebank/M
+Clydesdale/MS
+Clydey/M
+Clydogau/M
+Clyffe/M
+Clymping/M
+Clynderwen/M
+Clyne/M
+Clynnog/M
+clypeal
+clypei/M
+clypeus/M
+Clyro/M
+Clyst/M
+Clytemnestra/M
+cm
+Cm
+Cmd.
+Cmdr
+Cmdre
+CMG/SM
+Cmnd.
+CMOS/M Noun: uncountable
+CMS/SM
+CMYK/M Noun: uncountable
+CNAA/M Initialism of Council for National Academic Awards
+CNBC/M Initialism of Consumer News and Business Channel, an American television channel
+CNET/M
+Cnidaria Taxonomic phylum
+cnidarian/SM
+Cnidus/M
+CNN/SM
+CNS/SM Initialism of central nervous system
+CNY/M Noun: uncountable
+Co
+co-ally/SMD
+co-author/SMd
+co-belligerence/M
+co-belligerent/SM
+co-branded
+co-branding/SM
+co-chair/SGDM
+co-channel
+co-conspirator/SM
+co-counselling/M Noun: uncountable
+co-decision/M Noun: uncountable
+co-education/OM
+co-evolution/ySM
+co-evolve/SGD
+co-found/SDGr
+co-locate/SGD
+co-morbidity/SM
+co-occurrence/SM
+co-op/SM
+co-operant/SM
+co-operate/VSDGuNv
+co-operation/M Noun: uncountable
+co-operative/SMPY
+co-operator/MS
+co-opt/NVSGD
+co-option/SM
+co-ordinate/GDSNVM
+co-ordinator/SM
+co-owner/SM
+co-ownership/SM
+co-pilot/SdM
+co-produce/SGDr
+co-production/SM
+co-religionist/SM
+co-respondent/SM
+co-site
+co-star/GSDM
+co-trimoxazole/M Noun: uncountable
+co-worker/SM
+co-write/SGr
+co-written
+co-wrote
+co/EDS
+coach/SmGMr
+Coachella/M
+coachload/SM
+coachroof/SM
+coachwhip/SM
+coachwhipping/M Noun: uncountable
+coachwood/SM
+coachwork/SM
+coadjutor/SM
+Coagh/M
+coagulable
+coagulant/SM
+coagulase/SM
+coagulate/nGSD
+coagulative/Y
+coagulator/SMZ
+coagulopathy/SM
+Coahoma/M
+Coaker/M
+coal-black
+coal-fired
+coal-hole/SM
+Coal/M
+coal/SGMDr
+Coalburn/M
+coalesce/GDS
+coalescence/SM
+coalescent
+Coaley/M
+coalface/SM
+coalfield/MS
+coalfish/SM
+coalhouse/SM
+Coalinga/M
+Coalisland/M
+coalition/3SMO
+coalminer/SM
+Coalsnaughton/M
+Coalson/M
+Coaltown/M
+Coalville/M
+Coandă/M
+coarse/TPY
+coarsen/dS
+coarticulation/SM
+coast-to-coast
+Coast-Tweed/M
+Coast/M
+coast/SGMDO
+Coastal/M
+coasteering/M Noun: uncountable
+coastguard/SM
+coastland/SM
+coastline/MS
+coat-hanger/SM
+coat/cMSf
+Coatbridge/M
+coated/U
+coater/SM
+Coates/M
+Coatesville/M
+Coatham/M
+Coaticook/M
+coatigan/SM
+coating's/c
+coating/SM
+coattail/SM
+coattest/SGD
+coax/DGokRS
+cob/GMSDR
+Coba/M
+cobalamin/SM
+cobalt/MW
+cobaltocene/M Noun: uncountable
+cobaltous
+Cobb/M
+Cobbe/M
+cobble/GRDMS
+cobblestone/SDM
+Cobden/M
+Coberley/M
+Cobham/M
+coble/SM
+Cobley/M
+Cobol/M
+cobra/SM
+cobweb/MZSGD
+cobwebby/T
+Coca-Cola/MS
+coca/SM
+cocaine/SM
+Cocalico/M
+cocci/M
+coccidia/MO
+coccidian/SM
+coccidioidomycosis/M
+coccolith/SM
+coccolithophore/SM
+coccolithophorid/SM
+coccus/M
+coccygeal/Y
+coccyges
+coccyx/MS
+Cochin/M
+cochineal/SM
+Cochise/M
+cochlea/MS
+cochleae/M
+cochlear
+cochoa/SM
+Cochran/M
+Cochrane/M
+cock-a-doodle-doo/SM
+cock-a-hoop
+cock-a-leekie/SM
+cock-and-bull
+cock-eyed/YP
+cock-of-the-rock/M
+cock-up/SM
+cock/zGMDZSR
+cockade/MSD
+Cockaigne/M
+cockalorum/SM
+cockapoo/SM
+cockatiel/SM
+cockatoo/SM
+cockatrice/MS
+Cockayne/M
+cockboat/SM
+Cockburn/M
+Cockburnspath/M
+cockchafer/SM
+Cockcroft/M
+cockcrow/SM
+Cocke/M
+Cockell/M
+Cockenzie/M
+cockerel/SM
+Cockerham/M
+Cockerington/M
+Cockermouth/M
+Cockett/M
+Cockfield/M
+cockfight/RMJSG
+cockfighting/SM
+Cockfosters/M
+Cocking/M
+Cockington/M
+cockle/GDMSR
+cocklebur/SM
+Cockleroy/M
+cockleshell/MS
+Cockley/M
+cockloft/SM
+cockney/MS
+cockneyism/SM
+Cockpen/M
+cockpit/MS
+Cockrell/M
+cockroach/SM
+cocks-of-the-rock/M
+cockscomb/MS
+cocksfoot/SM
+Cockshutt/M
+cockshy/SM
+cockspur/SM
+cocksucker/SM!
+cocksure/Y
+cocktail/GDSM
+Cockthorpe/M
+cocky/TP
+coco/MS
+Cocoa/M
+cocoa/SM
+cocobolo/SM
+Coconino/M
+Coconut/M
+coconut/MS
+cocoon/MGSD
+Cocos/M
+cocotte/SM
+cocreate/SGDN
+cocreator/SM
+cocycle/SM
+cod/rMdSDG
+coda/SM
+Codd/M
+Coddenham/M
+Coddington/M
+coddle/SGDr
+code-switch/SGD
+code/CDaAGS
+code/Mp
+codebase/SM
+codebook/SM
+codebreak/R
+codebreaking/M Noun: uncountable
+codec/SM
+coded/K4
+codeine/MS
+codename/SGDM
+codependence/M Noun: usually uncountable
+codependency/SM
+codependent/SM
+coder/4SCM
+codetermine/SGD
+codevelop/Sdr
+codeword/SM
+Codex
+codex/SM
+codfish/MS
+Codford/M
+codger/SM
+codices
+codicil/SM
+Codicote/M
+codify/RDGSn
+codimension/SM
+coding/4
+coding/M
+Codington/M
+codling/SM
+Codnor/M
+codology/SM
+codomain/SM
+codon/SM
+codpiece/MS
+Codrington/M
+Codsall/M
+codswallop/M Noun: uncountable
+Cody/M
+Coe/M
+Coed/M
+coed/SM
+Coedana/M
+Coedcanlas/M
+Coedffranc/M
+coedit/dS
+Coedkernew/M
+Coedkernyw/M
+Coedpoeth/M
+coeducation/OM
+coefficient/SM
+coelacanth/SM
+Coelacanthidae Taxonomic family
+Coelbren/M
+Coelenterata Taxonomic phylum
+coelenterate/MS
+Coelhas/M
+coeliac/SM
+coelom/SM
+coelomata/M
+coelomate/SM
+coelomic Adjective
+coelurosaur/SM
+coelurosaurian/SM
+coenobe/MS
+coenobia/MW
+coenobian Adjective
+coenobioid Adjective
+coenobite/MSW
+coenobium/MS
+coenoby/MS
+coenocyte/SMW
+coenzyme/SM
+coequal/SM
+coequality/M Noun: usually uncountable
+coerce/RDbGS
+coercible/I
+coercion/SM
+coercive/PY
+coercivity/SM
+coetaneous
+coeternal/Y
+Coetzee/M
+Coeur/M
+coeval/SMY
+coevality/M Noun: uncountable
+coexistent/SM
+cofactor/MS
+coffee-cup/SM
+coffee-house/SM
+coffee-pot/MS
+coffee-table/MS
+Coffee/M
+coffee/SM
+coffer-dam/MS
+coffer/SdM
+cofferdam/SM
+Coffey/M
+Coffeyville/M
+coffin/dMS
+Coffin/M
+Coffinswell/M
+Coffman/M
+Coffs/M
+Cofton/M
+cog/DMGS
+Cogan/M
+cogency/SM
+cogenerator/SM
+Cogenhoe/M
+cogent/Y
+Coggan/M
+Cogges/M
+Coggeshall/M
+Coggins/M
+Coggles/M
+Cogglesford/M
+Coghill/M
+cogitate/SVnGD
+cogitator/SM
+cognac/MS
+cognate/YnSPM
+cognisable
+cognisance/SM
+cognisant/Y
+cognition/AMKS
+cognitional/Y
+cognitive/SY3M
+cognitivism/M Noun: uncountable
+cognizable
+cognizance/AMS
+cognizant/A
+cognomen/SM
+cognoscente/M
+cognoscenti/M
+Cogry-Kilbride/M
+Cogut/M
+cogwheel/SM
+cohabit/ndr
+cohabitate/SGD
+cohabitation/oOSM
+cohabitee/SM
+Cohen/M
+cohere/GDSR
+coherence/SIMZ
+coherency/SM
+coherent/IY
+cohesion/MS
+cohesive/YP
+Cohn-Bendit/M
+Cohn/M
+coho/SM
+Cohoes/M
+cohomology/SM
+cohort/SM
+cohosh/SM
+coif/SM
+coiffed
+coiffeur/SM
+coiffing
+coiffure/SDMG
+coil/USADG
+Coimbra/M
+coin/RMDGS
+coinage/MS
+coincide/SGD
+coincident/YOSM
+Cointreau/M
+coital/Y
+coition/M Noun: usually uncountable
+coitus/MS
+Coity/M
+Cojocaru/M
+Coke/SM
+coke/SMDG
+Coker/M
+cokey/SM
+col/SVnWM
+cola/SM
+Colac/M
+Colan/M
+colander/SM
+colatitude/SM
+Colaton/M
+Colbert/M
+Colborne/M
+Colburn/M
+Colbury/M
+Colby/M
+Colchester/M
+colchicine/SM
+colchicum/SM
+cold-blooded/YP
+cold-hearted/Y
+cold-shoulder/Sd
+Cold/M
+cold/MYSPT~
+Colden/M
+Coldfield/M
+Coldham/M
+Coldharbour/M
+Coldingham/M
+Coldplay/M
+Coldred/M
+Coldridge/M
+Coldstream/M
+Coldwaltham/M
+Coldwater/M
+Cole/MS
+Colebatch/M
+Colebrook/M
+Colebrooke/M
+Coleby/M
+Colechurch/M
+colectomy/SM
+Coleen/M
+Coleford/M
+Colegate/M
+Colehill/M
+Coleman/M
+Colemore/M
+Coleoptera Taxonomic order
+coleopteran/SM
+coleopterist/SM
+coleopterous Adjective
+coleoptile/SM
+coleorhiza/M
+coleorhizae/M
+Coleorton/M
+Colerain/M
+Coleraine/M
+Coleridge/M
+Colerne/M
+Colesbourne/M
+Colesden/M
+Coleshill/M
+coleslaw/SM
+Colette/M
+coleus/MS
+Coley/M
+Colfa/M
+Colfax/M
+Colgate/M
+coli/M
+colic/ZSM
+coliform/SM
+colimit/SdM
+Colin/M
+Colinsburgh/M
+Colinton/M
+Colintraive/M
+coliseum/MS
+colitis/SM
+Colkirk/M
+coll
+collaborate/VGDSvn
+collaboration/3M
+collaborative/SM
+collaborator/MS
+Collace/M
+collage/SDMG3
+collagen/SMW
+collagenase/SM
+collagenous
+collapse/bSGDM
+collapsibility/SM
+collar/pdMS
+collarbone/SM
+collate/GSDn
+collateral/SM
+collator/SM
+Collatz/M
+collect/bSivDV7hGM
+collectability/M Noun: uncountable
+collectable/SM
+collectanea/M
+collected/UA
+collectedness/M Noun: uncountable
+collectible/SM
+collection/AMS
+collective/3SM
+collectivise/SGDn
+collectivism/SM
+collectivistic/Y
+collectivity/SM
+collectivize/SGDn
+collector/MS
+collectorate/SM
+colleen/SM
+College/M
+college/MK
+college/SO
+Collegeland/M
+collegiality/SM
+collegian/MS
+Collegiate/M
+collegiate/Y
+collembolan/SM
+collenchyma/SM
+Colles/M
+Collessie/M
+collet/SM
+Colleton/M
+Colleyville/M
+collide/XDGxNSR
+collie/MRyD
+Collier/M
+Collierville/M
+colliery/SM
+collimate/SCNDG
+collimation/M
+collimator/SM
+Collin/M
+collinear
+Collingbourne/M
+Collingham/M
+Collingswood/M
+Collington/M
+Collingtree/M
+Collingwood/M
+Collins/M
+Collinson/M
+Collinsville/M
+collision/SM
+collocational
+collocutor/SM
+collogue/DSG
+colloid/MoSO
+colloquia/O
+colloquialism/MS
+colloquies
+colloquium/SM
+colloquy/Mo
+collotype/SM
+collude/DGNVSX
+collusion/M
+collusively
+colluvial
+colluvium/M
+Collyweston/M
+collywobbles
+Colman/M
+Colmar/M
+Colmer/M
+Colmon/M
+Colmonell/M
+Colmworth/M
+Coln/M
+Colnbrook/M
+Colne/M
+Colney/M
+colobus/M
+colocynth/SM
+Cologne/M
+cologne/SMD
+Coloma/M
+Colomb/M
+Colombia/M
+Colombian/SM
+Colombo/M
+colon/9MWQsq3-8S
+colonel/SM
+colonelcy/SM
+Colonial/M
+colonial/S3P
+colonialism/SM
+Colonie/M
+colonise/AGCDSn
+colonize/AGCDSn
+colonnade/DSM
+colonoscope/SM1
+colonoscopy/SM
+Colonsay/M
+Colony/M
+colony/oSM3
+colophon/SM
+Coloradan/SM
+Colorado/M
+coloratura/SM
+colorectal
+colorimeter/SMW
+colorimetry/SM
+Colossae/M
+colossal/Y
+Colosse/M
+Colosseum/M
+colosseum/SM
+colossi/M
+Colossian/SM
+colossus/MS
+colostomy/SM
+colostrum/SM
+colour-blind/P
+colour-code/D
+colour-fast/P
+colour-sergeant
+colour/qQ-8RNpGJSnD6jM37
+colourant/SM
+colouration/EM
+colourblock/GD
+coloured/ES
+colourful/P
+colouring/M
+colouristic/Y
+colourless/YP
+colourman/M
+colourpoint/SM
+colours/AE
+colourway/SM
+colposcope/SMZ
+Colquitt/M
+Colsterdale/M
+Colsterworth/M
+Colston/M
+Colt/MS
+colt/MSR
+coltish/PY
+Coltishall/M
+Coltness/M
+Colton/M
+Coltrane/M
+coltsfoot/SM
+colubrid/SM
+Columb/M
+Columba/M
+Columbae/M
+columbaria/M
+columbarium/M
+Columbia/M
+Columbian/SM
+Columbiana/M
+Columbine
+columbine/SM
+columbium/M Noun: usually uncountable
+Columbus/M
+column/D3SM
+columnar
+columnated
+columnise/SGD
+columnize/SGD
+Colusa/M
+Colvend/M
+Colveston/M
+Colville/M
+Colwall/M
+Colwich/M
+Colwick/M
+Colwinston/M
+Colwood/M
+Colwyn/M
+Colyton/M
+coma/SM
+comae/M
+comaker/MS
+Comal/M
+Comanche/MS
+comatose Adjective
+comb/RdMS
+combat/vVuDGSM
+combatant/MS
+combative/P
+Combe/M
+Comberbach/M
+Comberton/M
+combfish/SM
+Combigan/M
+combinable
+combination/oMO
+combinator/oWSMO
+combinatoric/S
+combine/DGAnS
+combiner/SM
+Combivent/M
+combo/MS
+Combpyne/M
+Combrook/M
+Combs/M
+Combust/M
+combust/SGDR
+combustibility/SM
+combustible/IS
+combustion/MS
+combustive
+combustor/SM
+Combwich/M
+Comcast/M
+Comdex/M
+come/RIGJS
+comeback/SM
+Comecon
+comedian/SM
+comedienne/MS
+comedown/MS
+comedy/WSM
+Comely/M
+comely/PT
+comer/cM
+comes/ce
+comes/M
+comestible/MS
+comet/MS
+cometary Adjective
+cometh
+comeuppance/SM
+Comey/M
+Comeytrowe/M
+comfit/SM
+comfort/pEGMSDk
+comfortability/SM
+comfortable/PY
+comforter/SM
+comfrey/SM
+comfy/T
+Comhairle/M
+comic/YMSO
+comicality/SM
+Comintern/M
+comity/SM
+comix/M
+comm/SM
+command/RkGDLMS
+commandant/SM
+commandeer/DGS
+Commander-in-Chief
+Commander/M
+commandership/SM
+Commandment/MS
+commando/SM
+commemorate/DvSVGn
+commemorative/SM
+commemorator/SMZ
+commence/DLAGS
+commencer/SM
+commend/AnS7DG
+commendable/Y
+commendation/AM
+Commendatore/M
+Commendatori
+commendatory/A
+commender/AM
+commensal/SY
+commensalism/SM
+commensalistic Adjective
+commensality/SM
+commensurability/SM
+commensurable/I
+commensurable/Y
+commensurate/YI
+commensurateness
+comment/G
+comment/MUSD
+commentariat/SM
+commentary/SM
+commentate/SGD
+commentator/SM
+commenter/MS
+commentor/SM
+commerce/GoSDM
+Commerce/M
+commercial/MP
+commercial/qQ8S-U
+commercialism/SM
+commerciality/SM
+Commerical/M
+commie/MS
+commination/SM
+comminatory Adjective
+comminuted
+commiserate/VnDGS
+commissar/MS
+commissariat/MS
+commissary/SMO
+commission's/A
+commission/CRDSG
+commissionaire/SM
+commissioned/A
+commissure/SO
+commit/NLSoXDGR
+commitment/cS
+commits/A
+committable
+committal/MS
+committed/cU
+committee/mSM5G
+committeeism/M Noun: uncountable
+committeeship/SM
+committent
+committing/c
+commixion
+commixtion
+commode/ESI
+commodify/SGDN
+commodious/PIY
+commoditise/SGDN
+commoditize/SGDN
+commodity/MS
+Commodore/M
+commodore/MS
+common-law
+common-room/M
+common-sense
+Common/M
+common/YPSr7
+commonage
+commonality/MS
+commonalty/SM
+commonance/M
+Commondale/M
+commonest
+commonhold
+commonness/U
+commonplace/SMP
+commons/M
+commonsensical/Y
+commonsensicality
+commonsensology
+Commonwealth/M
+commonwealth/SM
+commotion/SM
+commove/SGD
+communalism/SM
+communalist/SMW
+communality/SM
+communar/M
+communard/SM
+communautaire/SM
+commune/OoQ8S3DGR
+communicability/SM
+communicable/I
+communicable/Y
+communicableness
+communicant/SM
+communicate/BDxSVvGnNu
+communicated/a
+communicates/a
+communication/a
+communication/M
+communicative/P
+communicator/SM
+communion/MS
+communique/MS
+communiqué/MS
+Communism/M Noun: uncountable
+communism/MS
+Communist/SM
+communistic
+communitarian/SM
+Community/M
+community/SM
+commutable/I
+commutate/Vv
+commutativity/M Noun: usually uncountable
+commutator/SM
+commute/R
+Comoran/SM
+comorbid
+Comoros/M
+Comox/M
+comp/DGS
+compact/TRPDYGS
+compaction/SM
+compactor/SM
+compand/SRGD
+companion/DG7lMSp
+companionable/P
+companionship/SM
+companionway/MS
+company/SMDG
+Compaq/M
+comparability/MI
+comparability/S
+comparable/P
+comparably/I
+comparatist/SM
+comparative/PS
+comparativism/M Noun: uncountable
+comparator/MS
+compare/uVvGBlR
+comparison/SM
+compartment/DGNMS
+compartmental/-8qQ
+compass/M
+compassionate/P
+compatibility/SMI
+compatible/SIY
+compatibleness/M
+compatriot/SMW
+compeer/SMGD
+compel/7GSDnk
+compelling/M
+compendia/M
+compendious/YP
+compendium/MS
+compensable
+compensate/DcSnG
+compensative
+compensator/SMZ
+compère/MD
+compete/SDG
+competence/MSZI
+competency/IS
+competency/M
+competent/IY
+competitive/PY
+competitor/SM
+compilation/SAM
+compilatory Adjective
+compile/RCNS7DG
+complacence/Z
+complacency/SM
+complacent/Y
+complain/DkRS
+complainant/SM
+complaining/UY
+complaint/MS
+complaisance/SM
+complaisant/Y
+complement/DMGSRn
+complementarity/SM
+complementary/YPS
+complementiser/SM
+complementizer/SM
+Complera/M
+completable
+complete/DGS
+complete/IYP
+completeness/IS
+completer/SM
+completest
+completion/SM
+completist/SM
+completive
+complex/GxDYTPNXS
+complexion/DM
+complexity/cM
+complexity/S
+compliance/SM
+complicate/GcDS
+complicate/h
+complicatedness/M
+complicator/MS
+complicit Adjective
+complicity/MS
+compliers
+compliment/RGD
+complimentary/U
+compline/SM
+comply/GLRnJN
+compo/SM
+component/SM
+componentry/M Noun: uncountable
+comport/L
+compose/CRDSXGN
+composed/PY
+composes/AE
+composing/EA
+composite/GSYP
+composition/CM
+compositionality/M Noun: uncountable
+compositor/MS
+compossible Adjective
+compost/RGB
+composure/MES
+compote/SM
+compotus
+compound/M7
+comprehend/uSDvGV
+comprehensibility/IMS
+comprehensible/IPY
+comprehension/IMS
+comprehensive/PS
+compresence
+compresent
+compress/XvNVhxb
+compressed/UC
+compresses/C
+compressibility/MI
+compressible/I
+compression/MC
+compressor/MS
+compromise/M
+compromising/UY
+Compton/M
+comptroller/SM
+compulsion/SM
+compulsive/YSP
+compulsivity/SM
+compulsory/YSM
+compunction/SM
+compurgator/SM
+CompuServe/M
+computability/SM
+computation/oMO
+compute/DRGnlSB
+computed/AK
+computer-literate
+computeracy/M Noun: uncountable
+computerate
+computerdom/M Noun: uncountable
+computerese/M Noun: uncountable
+computeresque
+computerise/SGDn
+computerism/M Noun: uncountable
+computerist/SM
+computeritis
+computerizable
+computerize/SGDn
+computerland/M Noun: uncountable
+computerless
+computerology/M Noun: uncountable
+computerphile/SM
+computerphobe/SM
+computerphobia/M Noun: usually uncountable
+computery Adjective
+computistic/O
+computor/SM
+computus
+comrade/MSY
+comradeliness
+comradeship/SM
+Comrie/M
+Comstock/M
+Comte
+Comtism/M Noun: uncountable
+con/SwMW1DGN
+Conakry/M
+Conan/M
+concatenate/nDSG
+concave/Y
+concaver
+concavo-convex
+conceal/S7RDkLG
+concede/Rh
+Conceição/M
+conceit/GiMSDh
+conceited/P
+conceivability/I
+conceivable/IY
+conceive/KSDaG
+conceiver/SM
+concelebrant/S
+concentrate/SGnVD
+concentrator/MS
+concentric/Y
+Concepción/M
+concept/xSVoM
+conception/KSMa
+conceptual/-Q8q3
+conceptualism/SM
+conceptualistic/Y
+conceptuality/SM
+conceptus/SM
+concern/GS
+concern/hUD
+concernment/SM
+concert/DiGhSM
+concertgoer/SM
+concerti/M
+concertina/MDGS
+concertino/SM
+concertist/SM
+concertmaster/MS
+concerto/SM
+concession/SyoOr
+concessionaire/SM
+concessive
+conch/MDG
+concha/M
+conchae/M
+conchie/SM
+conchiolin/SM
+conchoid/SMO
+conchology/3wM
+conchs
+concierge/SM
+conciliar
+conciliate/nGVyN
+conciliation/MA
+conciliator/SM
+conciliatoriness
+conciliatory/A
+concise/TYPNX
+concision/M
+conclave/SM
+conclude/RGDSvVu
+conclusion/SM
+conclusive/IPY
+conclusiveness/IS
+concoct/SDGVr
+concoction/SM
+concomitant/Y
+Concord/M
+concord/SM
+concordance/MS
+concordant/Y
+concordat/SM
+Concorde/M
+Concordia/M
+concours
+concrescence
+concrescent
+concrete/rGPYDSnM
+concubinage/SM
+concubine/MS
+concupiscence/MS
+concupiscent
+concur/DG7S
+concurrence/SM
+concurrent
+concuss/VG
+concussion/SM
+condemn/n7RGDS
+condemnatory Adjective
+condensate/MS
+condense/DRSGbnP
+Conderton/M
+condescend/NXk
+condescension/M
+Condicote/M
+condign
+condiment/SM
+condition's/K
+condition/oMGRJDS
+conditional/SM
+conditionality/SM
+conditionally/U
+conditioned/AUK
+conditioning/M
+conditions/KA
+condo/SM
+condolence/MS
+condom/SMp
+condominium/SM
+Condon/M
+condonable
+condone/DGSNR
+condor/MS
+Condorrat/M
+condottiere/M
+condottieri/M
+Condover/M
+conduce/nvDGVS
+conducive/P
+conduct/aDGMS
+conductance/4
+conductance/MS
+conductant
+conductibility/MS
+conductible
+conduction/M
+conductivity/SM
+conductor/SM
+conductress/MS
+conduit/SM
+condylarth/SM
+condyle/SM
+condyloma/SM
+condylomata/M
+condylomatous
+cone/MZSD
+Conecuh/M
+coneflower/SM
+Conestoga/M
+Coney/M
+coney/SM
+Coneysthorpe/M
+Coneythorpe/M
+confab/DSMG
+confabulate/SnDG
+confect/SGD
+confection/R3SGDM
+confectionery/SM
+confederacy/SM
+confederal
+confederate/M
+confer/7DgGRS
+conferee/MS
+conference/GMDS
+conferral/MS
+confess/GxhD
+confessant/MS
+confession/SM
+confessional/SM
+confessionalism/SM
+confessionary/SM
+Confessor
+confessor/SM
+confetti/M
+confidant/SM
+confidante/SM
+confide/kDRGS
+confidence/cSM
+confident/cY
+confidential/PY
+confidentiality/SM
+confidingness
+configurability/M Noun: uncountable
+configurable/K
+configuration/OAM^
+configure/ADGSn
+confine/DLR
+confirm/DGS
+confirm/nAGSD
+confirmatory
+confirmed/PY
+confiscate/ynSGD
+confiscator/SM
+confit/SM
+conflab/SGD
+conflagration/SM
+conflate/GnDS
+conflict/kSMVDG
+conflictual
+confluence/MS
+conflux/S
+conform/7R3xO
+conformability
+conformably
+conformance/SM
+conformant
+conformism/SM
+conformity/IMU
+conformity/S
+confound/GSh
+confrere/S
+confrère/SM
+confront/Rnx
+confronter
+Confucian/SM3
+Confucianism/SM
+Confucius/M
+confusable
+confuse/kRhi
+confused/P
+confusticate/SGD
+confute/SnDGr
+Cong/M
+conga/MDGS
+congeal/DLGS
+congener/SM
+congeneric
+congenerous
+congenial/U
+conger/SM
+congeries/M
+Congerstone/M
+congest/DVSG
+congestion/SM
+Congham/M
+Congleton/M
+conglomerate/DMSGnV
+Congo/M
+Congolese/M
+congrats
+congratulate/DSGny
+congregant/SM
+congregate/GnSD
+Congregation/M
+congregation/MO
+Congregational/3Y
+congregationalise/SGD
+Congregationalism/MS
+congregationalize/SGD
+Congresbury/M
+congress/mxM5GSD
+congresspeople/M
+congressperson/SM
+congruence's/I
+congruence/ZMS
+congruency/MS
+congruent/Y
+congruential
+congruently/I
+congruity/MSI
+congruous/YPI
+Coniacian
+conic/SM
+conical/P
+conidia
+conidium
+conifer/MS
+coniferous
+Coningsby/M
+Conington/M
+Conisbrough/M
+Coniscliffe/M
+Conisford/M
+Conisholme/M
+Coniston/M
+Conistone/M
+conium/SM
+conjecture/GDoSMBRO
+conjugacy
+conjugal/Y
+conjugality
+conjugant/SM
+conjugate/DVGnSYP
+conjunct/VSvD
+conjunctional
+conjunctiva/MSO^
+conjunctivae/M Plural of conjunctiva
+conjunctive/SM
+conjunctivitis/SM
+conjurator/SM
+conjure/RGSnD
+conjuring/M
+conjuror/SM
+conk/RSGDM
+Conley/M
+Conlig/M
+Conlon/M
+conman/M
+conmen/M
+Connacht/M
+Connah/M
+connate
+connatural/Y
+Connaught/M
+Conneaut/M
+connect/viVbGhDS7
+connected/EPY
+Connecticut/M
+connection's/A
+connection/MES
+connection/p
+connective/MS
+connectivity/SM
+connector/SM
+connects/EA
+Connel/M
+Connell/M
+Connellsville/M
+Connelly/M
+conner/SM
+Connersville/M
+Connery/M
+connexion/SM
+Connick/M
+Connie/M
+connivance/MS
+connive/RSDG
+connoisseur/SM
+connoisseurship
+Connolly/M
+Connor/MS
+connotation's
+connotative/Y
+connubial/Y
+conodont/SM
+Conolly/M
+Conon/M
+Cononley/M
+Conor/M
+Conover/M
+conquer/AdS
+conquerable/U
+conqueror/MS
+conquest/ASM
+Conquest/M
+conquistador/SM
+conquistadores
+Conrad/M
+Conrail/M
+Conroe/M
+Consall/M
+consanguineous/Y
+consanguinity/MS
+conscience-stricken
+conscience/p
+conscientious/PY
+conscionable/U
+conscious/YU
+consciousness/SM
+conscription/SM
+consecrate/ADSnG
+consecration/MA
+consecrative
+consecrator/SMZ
+consecutive/PY
+consensus/SM
+consent/SRGkD
+consequence/SM
+consequent/YP
+consequential/IY
+consequentialism/SM
+consequentialist/SM
+consequentiality/SM
+consequentialness/M
+consequently/I
+conservancy/MS
+conservation/M3
+conservationism/M Noun: uncountable
+conservatism/SM
+Conservative/MS
+conservative/PSM
+conservativism/SM
+conservativity/M Noun: uncountable
+conservatoire/SM
+conservator/SM
+conservatorship
+conservatory/SM
+conserve/VnvuM
+consider/AdS
+considerable/YI
+considerably/I
+considerate/Yn
+considerately/I
+considerateness/I
+consideration/AS
+considerer/SM
+considering/S
+consigliere/M
+consiglieri/M
+consign/L
+consigned/A
+consignee/SM
+consignment/A
+consignor/SM
+consigns/A
+consilience
+consilient
+consiprationally
+consist/SGD
+consistence/ZS
+consistency/SMI
+consistent/IY
+consistory/MS
+consociational
+consociationalism/M Noun: uncountable
+consol's
+consolable/I
+consolation/EM
+consolatory/SM
+console/RNkn7M
+consolidate/DGnS
+consolidator/MS
+consommé/SM
+consonance/IM
+consonance/S
+consonant/YSMO
+consonous
+consortia/M
+consortium/MS
+conspecific/SM
+conspecificity/SM
+conspectus/MS
+conspicuous/PIY
+conspiracy/SM
+conspirational
+conspirator/SOoM
+conspire/GR
+Constable/M
+Constabulary
+constabulary/SM
+Constance/M
+constance/Z
+constancy/IMS
+constant/IY
+Constant/M
+constant/MS
+constantan/SM
+Constantia/M
+Constantijn/M
+Constantin/M
+Constantine/M
+Constantinian
+Constantinople/M
+constative/SM
+constellate/SGDn
+consternate/DnGS
+constipate/GDSn
+constituency/MS
+constituent/YSM
+constitute/DASG
+constitution/AMS
+constitutional/3YS
+constitutionalism/SM
+constitutionalities/U
+constitutionality/SM
+constitutionally/U
+constitutive/Y
+constrain/hG
+constrained/U
+constraint/SM
+constrict/SDVG
+constriction/SM
+constrictor/SM
+construal/SM
+construct/ASbDG
+constructable
+constructibility/M Noun: uncountable
+construction/CMAS
+constructional/Y
+constructionism/SM
+constructionist/SM
+constructive/YP3
+constructivism/SM
+constructor/SM
+construe/DS7G
+consubstantial
+consubstantiality/SM
+Consul/M
+consul/SM
+consular/S
+consulate/SM
+consulship/SM
+consult/nDGSr
+consultancy/SM
+consultant/SM
+consultative
+consultee/SM
+consumable/SM
+consume/RVSXvkNDhGJ
+consumer/3
+consumerism/MS
+consummate/DSGVY
+consumption/Mc
+consumptive/SM
+cont
+cont'd
+contact-breaker
+contact/G7DSMp
+contactee/SM
+contactor/SM
+contagion/SM
+contagious/YP
+contain/7RLDSG
+container/Q-8q
+contaminant/MS
+contaminate/VGDnS
+contaminated/UC
+contamination/MCS
+contaminator/SM
+contd
+Conte/M
+contemn/SGD
+contemner/S
+contemplate/VDvuGn
+contemplative/PSM
+contemporaneity/MS
+contemporaneous/PY
+contemporary/YP
+contempt/SbM
+contemptibility/SM
+contemptible/Y
+contemptuous/PY
+content/LEDhGMS
+content/Y
+contented/P
+contention/SM
+contentious/UY
+contentiousness/MS
+conterminous/Y
+contessa/SM
+contest/7
+contestability/M Noun: uncountable
+contestable/I
+contestable/Y
+contestant/SM
+contestation/SM
+contested/U
+contextual/3
+contextualise/SGDn
+contextualism/SM
+contextualize/SGDn
+contiguity/MS
+contiguous/PY
+Contin/M
+continence/IMS
+continent/oYSM
+continental/SM
+continently/I
+contingency/MS
+contingent/MYS
+continua/onOM
+continuance/ESM
+continuant/MS
+continuation/ME
+continuationism/M Noun: uncountable
+continuative/SM
+continue/7DSGNR
+continuity/ESM
+continuo/SM
+continuous/YE
+continuousness/E
+continuousness/M
+continuum/M
+contort/VDG
+contortion/M3S
+Contra/M
+contra/ySM
+contraband/M3
+contrabass/MS
+contrabassoon/SM
+contraception/MS
+contraceptive/SM
+contract/DbGM
+contractee/SM
+contractile
+contractility/SM
+contractionary
+contractive
+contractual/Y
+contracture/SM
+contradance/SM
+contradict/SGyD
+contradiction/SM
+contradictory/PY
+contradistinction/SM
+contrafactive
+contrafactual
+contraflow/SM
+contrail/SM
+contraindicate/VSnDG
+contralateral
+contralto/SM
+contraposition/SM
+contrapositive/SM
+contraption/MS
+contrapuntal/Y
+contrarian/SM
+contrarianism/SM
+contrariety/SM
+contrariwise
+contrary/PSMY
+contrast/GvZSMDkV
+contravariance/SM
+contravariant/SM
+contravene/SGDR
+contravention/MS
+Contrecoeur/M
+contretemps/M
+contribute/DvGVy
+contribution/SM
+contributor/MS
+contributory/SMY
+contrite/P
+contrition/SM
+contrivance/SM
+contrive/RDSG
+control/BRMSlGD
+controllability/SM
+controversial/UY
+controversialist/MS
+controversy/SMo
+controvert/DGSb
+controvertible/I
+contumacious/Y
+contumacy/MS
+contumelious
+contumely/MS
+contuse/SGD
+contusion/SM
+conule/SM
+conundrum/MS
+conurbation/SM
+convalesce/DSG
+convalescence/MS
+convalescent/SM
+convect/xGSDV
+convection/SM
+convene/GADS
+convener/SM
+convenience/ISM
+convenient/YI
+convenor/SM
+convent's
+conventicle/SM
+convention/SoM
+conventional/3
+conventionalise/SGD
+conventionalism/M Noun: usually uncountable
+conventionality/MUS
+conventionalize/SGD
+conventionally/U
+conventual
+convergence/SM
+convergent/SMY
+conversant/Y
+conversation/Mo
+conversational/3
+conversazione/SM
+conversazioni/M
+converse/GnYR
+Converse/M
+conversion's/A
+conversion/G
+convert/RSbDG
+converted/UA
+convertibility/IM
+convertibility/S
+convertible/PS
+convertor/SM
+convex/Y
+convexity/MS
+convey/D7SG
+conveyance/DRSGM
+conveyancing/M
+conveyor/MS
+convict/GVDSM
+conviction/MS
+convince/RGDSk
+convincing/UY
+convincingness/M
+Convinth/M
+convivial/Y
+conviviality/MS
+convocational
+convoke/GDnS
+convolute/SDGY
+convolution/CO^
+convolution/MS
+convolve/CSGD
+convolvulus/SM
+convoy/GDMS
+convulse/GDSVuv
+convulsion/SM
+convulsive/P
+Conway/M
+Conwil/M
+Conwy/M
+cony/MS
+Conyers/M
+coo/GSDM
+Cooch/M
+Coogan/M
+cook/KGADcS
+cook/M
+Cook/M
+cookbook/MS
+Cookbury/M
+Cooke/M
+cooked/fU
+cooker/SM
+cookery/SM
+Cookeville/M
+Cookham/M
+Cookhill/M
+cookhouse/SM
+cookie/MS
+cooking/M
+Cookley/M
+Cookshire-Eaton/M
+Cookstown/M
+cookware/SM
+cool-box/SM
+cool-headed
+cool/TYRSPDG~
+Coolaney/M
+coolant/SM
+Coolbaugh/M
+Coole/M
+Cooley/M
+coolhouse/SM
+Coolidge/M
+coolie/MS
+cooling-off
+Cooling/M
+CoolMax/M
+Coolspring/M
+coolth/M
+Coombe/MS
+Coombs/M
+Coon/M
+cooncan/M Noun: uncountable
+coonhound/SM
+coonskin/SM
+coop/DGSM
+Cooper/M
+cooper/SMdvuV
+cooperage/MS
+cooperant/SM
+cooperation's
+cooperative/U
+coopery/SM
+coopt/SGDn
+coordinate/DGVM
+coordination/M
+coordinatize/SGD
+coordinator/SM
+Coors/M
+Coos/M
+Coosa/M
+coot/MS
+cootie/MS
+cop-out/SM
+cop/GDRdMSr
+Copaxone/M
+copay/SM
+copayment/SM
+COPD/M Noun: usually uncountable
+Copdock/M
+cope/SMZ
+Copeland/M
+Copenhagen/M
+copepod/SM
+Copepoda
+Copernican/SM
+copernicium/M Noun: uncountable
+Copernicus/M
+Copford/M
+Copgrove/M
+Copiah/M
+copilot/SM
+coping/SM
+Copini/M
+copious/YP
+copita/SM
+coplanar
+coplanarity/SM
+Copland/M
+Cople/M
+Copley/M
+Copmanford/M
+Copmanthorpe/M
+copolymer/SM
+Coponius/M
+Copp/M
+Coppé/M
+Coppell/M
+Coppenhall/M
+copper/dZ
+copperas
+Copperas/M
+Copperfield/M
+copperhead/MS
+coppernob/SM
+copperplate/SM
+coppersmith/SM
+coppice/DMSG
+Coppin/M
+Coppingford/M
+Copplestone/M
+Coppola/M
+Coppull/M
+copra/SM
+coprime
+coprocessor/SM
+coprolite/MS
+coprophagous
+coprophilia/SM
+coprosma/SM
+cops/DSG
+copse/SM
+Copston/M
+Copt/MS
+copter/SM
+Copthorne/M
+Coptic/M
+copula/nMSV
+copulae/M
+copular
+copulate/GSyDn
+copulative/SY
+copy-edit/Sd
+copy-protected
+copy/3DRGMS
+copyability/M Noun: uncountable
+copyable
+copybook/SM
+copycat/SMDG
+copyeditor/SMO
+copyhold/SMR
+copyleft/MD
+copyread/SGR
+copyright/GRMDS7
+Copythorne/M
+copywriter/MS
+copywriting/M
+coquetry/SM
+coquette/SMGD
+coquettish/Y
+Coquitlam/M
+cor
+Cora/M
+coracle/SM
+coracoid/SM
+Coral/M
+coral/SM
+coralberry/SM
+coralline/SM
+coralroot/SM
+Coralville/M
+corbel/SJGMD
+Corbet/M
+Corbett/M
+Corbie/M
+Corbin/M
+Corbridge/M
+Corby/M
+Corbyn/M
+Corcoran/M
+cord/EGSAMD
+cord/p
+cordage/MS
+Cordeiro/M
+Cordele/M
+Cordelia/M
+Cordelier/SM
+Corden/M
+corder/AM
+cordgrass/SM
+cordial/PYS
+cordiality/MS
+cordillera/MS
+cording/AM
+cordite/MS
+Cordoba/M
+cordon/dSM
+Cordova/M
+cordovan/MS
+corduroy/DSMG
+cordwood/SM
+cordyline/SM
+core/MDRGS
+Coredius/M
+Corel/M
+Coreley/M
+corella/SM
+Coren/M
+coreopses
+coreopsis/M
+Coretta/M
+Corey/M
+corf/M
+Corfe/M
+Corff/M
+Corfu/M
+corgi/SM
+Corhampton/M
+coriaceous
+coriander/MS
+coring/M
+Corinth/M
+Corinthian/SM
+Coriolis/M
+cork/DRGMS
+Corkey/M
+corkscrew/DSMG
+corkwood/SM
+corky/T
+Corlear/M
+Corley/M
+Corliss/M
+corm/SM
+Corman/M
+Cormier/M
+cormorant/SM
+corn/R2ZSMzDG
+cornamuse/M
+Cornard/M
+cornball/MS
+cornbrash/SM
+cornbread/SM
+Cornbury/M
+corncob/SM
+corncockle/SM
+corncrake/SM
+cornea/SMO
+Cornelia/M
+Cornelis/M
+Cornelius/M
+Cornell/M
+Cornelly/M
+corner/d
+Corner/M
+cornerman/M
+cornermen/M
+cornerstone/SM
+cornerwise
+cornet/SM
+cornetfish/SM
+cornett/SM
+cornetti/M
+cornetto/SM
+corneum/M
+Corney/M
+cornfield/MS
+cornflake/SM
+cornflour/M Noun: usually uncountable
+cornflower/SM
+Cornhill/M
+cornice/DSMG
+corniculate
+cornification/SM
+Corning/M
+Cornish/M
+cornmeal/SM
+cornmill/SM
+cornrow/GSD
+cornstalk/MS
+cornstarch/MS
+Cornu/M
+cornucopia/SM
+Cornwall/M
+Cornwallis/M
+Cornwell/M
+Cornwood/M
+Cornworthy/M
+corny/TP
+Coroglen/M
+corolla/yMS
+corollary/SM
+coromandel/SM
+Corona/M
+corona/ySnM
+Coronado/M
+coronae/M
+coronagraph/SM
+coronal/MS
+coronary/SM
+coronate/SGDn
+Coronaviridae Taxonomic family
+coronavirus/SM
+coroner/MS
+coronet/dSM
+coronial
+coronoid/SM
+corotate/SGD
+coroutine/SM
+corp.
+Corpach/M
+corpora/MnVo
+corporal/MS
+corporate/3SMY
+Corporation/M
+corporation/MIS
+corporatise/SDGn
+corporatism/SM
+corporativism/M Noun: usually uncountable
+corporativist/SM
+corporatize/SDGN
+corporatocracy/S
+corporeal/IY
+corporeality/MS
+corporealness/M Noun: uncountable
+corporeity/SM
+Corps
+corps/SM
+corpse/MDG
+corpulence/SM
+corpulent/YP
+corpus/M
+Corpus/M
+corpuscle/MS
+corpuscular
+Corpusty/M
+corr
+corral/GDMS
+correct/V7GuDSPvxTY
+correction/SM
+correctitude
+corrective/SM
+Correia/M
+correlate/CSGDN
+correlational
+correlativity/M Noun: uncountable
+correlator/SM
+correspond/k
+correspondence/MS
+corridor/SM
+Corrie/M
+corrie/SM
+Corrigan/M
+corrigenda/M
+corrigendum/M
+corrigibility/M Noun: usually uncountable
+corrigible/I
+Corrimony/M
+Corringham/M
+Corrinshego/M
+Corris/M
+corroborate/DSnVvGy
+corroborator/SM
+corrode/DvbGuSV
+corrosion/SM
+corrosive/SP
+corrugate/DSnG
+corrugator/SM
+corrupt/VPTbvSDGYr
+corruptibility/MIS
+corruptible/I
+corruption's/I
+corruption/MS
+corsage/MS
+corsair/SM
+Corscombe/M
+Corse/M
+Corsenside/M
+corset/dSM
+Corsham/M
+Corsi/M
+Corsica/M
+Corsican/SM
+Corsicana/M
+Corsley/M
+Corso/M
+Corsock/M
+Corston/M
+Corstorphine/M
+Cortachy/M
+Cortana/M
+cortège/SM
+Cortes
+cortex/M
+Corti
+cortical/Y
+cortices
+corticifugal
+corticofugal
+corticosteroid/MS
+corticosterone/SM
+cortisol/SM
+cortisone/SM
+Cortland/M
+Cortlandt/M
+Corton/M
+corundum/M
+Corunna/M
+Coruscant/M
+coruscate/SnDG
+Corvallis/M
+corves
+corvette/MS
+Corvus/M
+Corwen/M
+Cory/M
+corydalis
+Coryell/M
+corymb/SM
+corymbose
+corynebacteria/M
+corynebacterium/M
+coryphée/SM
+Coryton/M
+cos/SM
+Cosa
+Cosby/M
+cosecant/SM
+Coseley/M
+coset/SM
+Cosford/M
+Cosgrove/M
+cosh/SM
+Cosheston/M
+Coshocton/M
+cosign/RSDG
+cosignatory/SM
+cosine/MS
+Coslany/M
+cosmeceutical/SM
+Cosmelli/M
+cosmetic/MSY
+cosmetician/SM
+cosmetology/3MS
+cosmic/YO
+Cosmo/M
+cosmochemistry/M Noun: uncountable
+cosmogony/3MS
+cosmographer/SM
+cosmographic/O
+cosmography/SM
+cosmology/1S3Mw
+cosmonaut/SM
+cosmopolis
+cosmopolitan/MS
+cosmopolitanise/SGD
+cosmopolitanism/SM
+cosmopolitanize/SGD
+cosmopolite/SM
+cosmos/MS
+cosmovision/SM
+Cosmus/M
+COSPAR Committee on Space Research
+cosplay/SGDR
+cosponsor/Sd
+Cossack/MS
+cossacks
+Cossall/M
+cosset/Sd
+cossie/SM
+Cossington/M
+cost-cutting
+cost-effective/P
+cost-efficient
+cost/YGvSMJuDpV
+costa/M
+Costa/M
+costae/M
+Costello/M
+costermonger/SM
+Costessey/M
+Costessy/M
+costive/P
+costlessly
+costly/TP
+Costner/M
+Costock/M
+Coston/M
+costume/DRMSG
+cosupervise/SGDN
+cosupervisor/SM
+cosy/SGDYTP
+cot/RMSD
+Cota-Robles/M
+cotangent/SM
+Cotcliffe/M
+Côte-de-Beaupré/M
+Côte-de-Gaspé/M
+Côte-Nord/M
+Côte/M
+cote/SM
+Coteau-du-Lac/M
+Cotebrook/M
+coterie/MS
+coterminous/Y
+Cotes/M
+Cotesbach/M
+Cotford/M
+Cotgrave/M
+Cotham/M
+Cothelstone/M
+Cotheridge/M
+cotillion/MS
+cotinga/SM
+Cotleigh/M
+Coton/M
+cotoneaster/SM
+Cotswold/MS
+cottage/DMRSG
+Cottage/M
+cottagey
+Cottam/M
+cottar/SM
+Cottenham/M
+cottered
+Cottered/M
+Cotterell/M
+Cotterill/M
+Cotterstock/M
+Cottesbrooke/M
+Cottesloe/M
+Cottesmore/M
+Cottingham/M
+Cottingwith/M
+Cottisford/M
+Cottle/M
+cotton/dMS
+Cotton/M
+cottonmouth/SM
+cottonseed/SM
+cottontail/MS
+cottonweed/SM
+Cottonwood/M
+cottonwood/SM
+cottony
+Cottrell/M
+cotyledon/MS
+couch/DGSM
+couchant
+couchette/SM
+couching/M
+coudé
+Coues/M
+cougar/SM
+cough/GDSR
+Coughlan/M
+Coughlin/M
+Coughton/M
+could
+could've
+couldn't
+couldn't've
+coulée/SM
+coulis/M Noun: usually uncountable
+Coull/M
+couloir/SM
+coulomb/SM
+Coulsdon/M
+Coulson/M
+Coulston/M
+Coulter/M
+Coulthard/M
+Coulton/M
+Council/M
+council/SmM5
+councillor/MS
+councilperson/SM
+Cound/M
+counsel/MDJGS
+counsellor/SM
+count/GSlDRBpZ
+countback/SM
+countdown/MS
+counted/AUEa
+countenance/M
+countenance/SDEG
+countenancer/SM
+counter-aggression
+counter-attack/SRMDG
+counter-claim/GSMD
+counter-clockwise
+counter-conditioning
+counter-espionage/SM
+counter-inflation/y
+counter-insurgency
+counter-intelligence/MS
+counter-intuitive/Y
+counter-jumper
+counter-offensive/MS
+counter-offer/SM
+counter-productive
+counter-revolution/ySM
+counter-revolutionary/MS
+counter-tenor/SM
+counter-terrorism/M Noun: uncountable
+counter/Smd
+counteract/DGVS
+counteraction/SM
+counteragent/SM
+counterargument/SM
+counterattack/SGDR
+counterbalance/MSDG
+counterblast/SM
+counterbore/SGD
+counterchange/DGS
+countercharge/SM
+countercheck/SM
+counterclaim/DSGM
+counterculture/SMO
+countercurrent/SY
+countercyclical
+counterdemonstration/SM
+countereffort/SM
+counterexample/SM
+counterfactual/SM
+counterfeit/GRSDM
+counterflow/SM
+counterfoil/MS
+counterforce/SM
+counterillumination/M Noun: uncountable
+counterinsurgency/MS
+counterion/SM
+counterirritant/SM
+counterirritation/SM
+countermand/SGD
+countermarch/SGD
+countermark/SGD
+countermeasure/SM
+countermelody/SM
+countermine/SGDM
+countermove/SM
+countermovement/SM
+counternarcotics
+counteroffensive/SM
+counteroffer/SM
+counterpane/SM
+counterpart/SM
+counterparty/SM
+counterpetition/SGDM
+counterplot/SGDM
+counterpoint/DSMG
+counterpoise/DMGS
+counterproductive
+counterproliferation/M Noun: uncountable
+counterproposal/SM
+counterpunch/GSDR
+counterreformer/SM
+counterrotate/SGDN
+counterscarp/SM
+countershaded
+countershading
+countershaft/SM
+countersign/DSGM
+countersignature/MS
+countersink/SG
+counterspy/SM
+counterstatement/SM
+counterstrike/SGM
+counterstroke/SM
+counterstruck
+counterstyle/SM
+countersubject/SM
+countersunk
+countertenor/SM
+counterterror/3M
+counterterrorism/M Noun: uncountable
+counterthreat/SM
+counterthrust/SM
+countertrade
+countertransference/SM
+countervail/SGD
+countervalue
+counterweigh/SGD
+counterweight/GMSD
+countess/SM
+Countesthorpe/M
+Counthorpe/M
+counting/Ea
+Countisbury/M
+countless/Y
+countrify/D
+country/5mMS
+Country/M
+countryfied
+countryfolk/M
+countryside/MS
+countrywide
+counts/AaEf
+County/M
+county/MS
+countywide
+coup/AS
+Coupar/M
+coupé/SM
+coupe/SM
+Coupee/M
+Couperin/M
+couple/DRCSGJ
+couple/M
+couplet/MS
+coupling/MC
+coupon/MS
+courage/ES
+courage/M
+courageous/U
+courageous/Y
+courageousness/SM
+Courcy/M
+courgette/SM
+courier/MGDS
+Cournot/M
+course/SMFE
+coursebook/SM
+coursed/E
+courser/ESM
+courseware/SM
+coursework/M Noun: uncountable
+coursing/M
+court-martial/SGD
+Court/M
+court/SRYMGD
+Courteenhall/M
+Courtenay/M
+Courteney/M
+courteous/YEP
+courteousness/SE
+courtesan/MS
+courtesy/DG
+courtesy/ESM
+courthouse/MS
+courtier/SM
+courtly/PT
+Courtney/M
+Courtrai/M
+courtroom/SM
+courtship/SM
+courtyard/MS
+couscous/MS
+cousin/MYS
+Cousteau/M
+Couto/M
+couture/MS
+couturier/SM
+covalent/Y
+covariance/MS
+covariant/SM
+covariate/SMN
+covary/SGD
+Cove/M
+cove/RDGMS
+covector/SM
+Covehithe/M
+Coveleski/M
+covellite/SM
+coven/SM
+Covenant
+covenant/DSGMOR
+Covenanter/SM
+covenantor/SM
+Coveney/M
+Covenham/M
+Covent/M
+Coventry/M
+cover-up/SM
+cover/7dJS
+coverable/E
+coverage/SM
+coverall/DSM
+Coverdale/M
+covered/EAU
+coverer/AME
+Coverham/M
+covering/E
+covering/M
+coverlet/SM
+Coverley/M
+covers/AEU
+coversheet/SM
+covert/PY
+covet/dSkr
+covetous/PY
+covey/MS
+Covid-19/M
+COVID-19/M
+COVID/M
+Covid/M
+Covina/M
+Covingham/M
+Covington/M
+cow-lick/SM
+cow-parsley/M
+cow-pat/SM
+Cow/M
+cow/ShGMDm
+Cowal/M
+Cowan/M
+Cowansville/M
+coward/SMY
+cowardice/SM
+cowardly/P
+Cowarne/M
+cowbane/SM
+cowbell/SM
+cowbird/SM
+Cowbit/M
+cowboy/SM
+Cowbridge/M
+Cowden/M
+Cowdenbeath/M
+Cowell/M
+Cowen/M
+cower/dkS
+Cowes/M
+Cowesby/M
+Coweta/M
+cowfish/SM
+Cowfold/M
+cowgirl/SM
+cowhand/SM
+cowherd/SM
+cowhide/SGDM
+Cowichan/M
+Cowick/M
+Cowie/M
+cowl/DGMS
+Cowlam/M
+Cowley/M
+Cowling/M
+cowling/SM
+Cowlinge/M
+Cowlitz/M
+coworker/SM
+Cowper/M
+cowpox/MS
+cowpunk/SM
+cowrie/SM
+cowshed/SM
+cowslip/SM
+Cowthorpe/M
+Cowton/M
+Cox/M
+cox/SGMD
+Coxall/M
+coxcomb/MS
+Coxe/M
+Coxheath/M
+Coxon/M
+Coxsackie/M
+coxswain/DMSGp
+Coxwell/M
+Coxwold/M
+coy/TPYSGDM
+Coychurch/M
+Coyle/M
+Coylton/M
+Coyne/M
+coyote/SM
+coypu/SM
+cozen/dS
+cozenage/SM
+cozzie/SM
+CPA
+cpd
+CPI
+cpl
+CPR
+cps
+CPU/SM
+Cr
+crab-apple/SM
+crab/GhDRzMiZS
+Crabbe/M
+crabbed/P
+crabbing/M Noun: usually uncountable
+crabby/TP
+crabgrass/SM
+crablike
+crabmeat/SM
+Crabtree/M
+crabwise
+crack/SRYDG7M
+crackdown/MS
+Crackenthorpe/M
+crackle/DSGJ
+crackling/M
+crackly/T
+cracknel/SM
+crackpot/MS
+cracksman/M
+cracksmen/M
+crackup/SM
+Cracoe/M
+Cracow/M
+Cracroft/M
+Craddock/M
+cradle/SDMGR
+Cradley/M
+cradling/SM
+Crafoord/M
+craft/rDm52MGzZS
+craftsmanship/SM
+craftspeople/M
+craftsperson/SM
+craftwork/R
+crafty/PT
+crag/MZS2
+craggy/TP
+cragsman/M
+cragsmen/M
+Craig/MS
+Craigarogan/M
+Craigavon/M
+Craigend/M
+Craigentinny/M
+Craighead/M
+Craighouse/M
+Craigie/M
+Craigiebank/M
+Craigiebuckler/M
+Craiglockhart/M
+Craigmailen/M
+Craigmillar/M
+Craigneuk/M
+Craignish/M
+Craignure/M
+Craigrownie/M
+Craigsbank/M
+Craigslist/M
+Craik/M
+Crail/M
+Crailing/M
+Craiova/M
+crake/SM
+Crakehall/M
+Crakehill/M
+cram/GSD
+Crambe/M
+crambo
+Cramer/M
+Cramér/M
+Cramlington/M
+crammer/SM
+Cramond/M
+cramp/DSMGr
+crampon/MS
+Crampsey/M
+Crampton/M
+Cranach/M
+Cranage/M
+Cranagh/M
+Cranberry/M
+cranberry/SM
+Cranborne/M
+Cranbrook/M
+Crandall/M
+crane-flies
+crane/MDSG
+cranelike
+cranesbill/SM
+Craney/M
+Cranfield/M
+Cranford/M
+Cranham/M
+Cranhill/M
+cranial
+craniate/SM
+craniofacial
+craniology/3wM
+craniometry/WM
+craniopagi/M
+craniopagus/M
+craniosynostoses
+craniosynostosis/M
+craniotomy/SM
+cranium/MS
+crank/zMGSZTD~
+crankcase/SM
+crankpin/SM
+crankshaft/SM
+cranky/TP
+Cranleigh/M
+Cranmer/M
+Cranmore/M
+cranny/DSGM
+Cranoe/M
+Cransford/M
+Cranshaws/M
+Cransley/M
+Cranston/M
+Cranstoun/M
+Cranswick/M
+Crantock/M
+Crantor/M
+Cranwell/M
+Cranwich/M
+Cranworth/M
+crap/GDMZSR
+crape/SM
+crappie/SM
+crappy/T
+crapulent
+crases
+crash-land/SGD
+crash/RSDGk
+Crashaw/M
+crashworthy/P
+crasis
+crass/TYP
+Crassus/M
+Crasswall/M
+Craswall/M
+Craswell/M
+crate/MDRSG
+crater/d
+Cratfield/M
+Crathie/M
+Crathorne/M
+craton/SMW
+cravat/SMGD
+crave/DJSGr
+craven/dPY
+Craven/MS
+craving/M
+craw/YSM
+crawdad/SM
+crawfish/SM
+Crawford/M
+Crawfordjohn/M
+Crawfordsburn/M
+Crawfordsville/M
+Crawfurd/M
+Crawfurdsdyke/M
+crawl/SRDGM
+crawlboard/M
+Crawley/M
+crawlspace/SM
+crawlway/SM
+crawly/ST
+Crawshaw/M
+Cray/MS
+crayfish/SGDM
+Crayford/M
+Crayke/M
+crayon/MdS
+craze/SZGDM
+crazy/YSMPT
+CRC/SM
+Creacombe/M
+Creagh/M
+creak/kzZSDG
+Creake/M
+creaky/PT
+cream-crackered
+cream/ZDRSzMG
+creamery/MS
+creamware/SM
+creamy/PT
+crease/GISCD
+crease/M
+creaser/I
+creatable
+create/uGnSDVv
+creatine/SM
+creatinine/SM
+creation/MASa
+creationism/SM
+creationist/MS
+creative/PSM
+creativity/SM
+Creaton/M
+Creator
+creator/SM
+creature/YSM
+creaturely/P
+Crébillon/M
+crèche/MS
+credence/MS
+Credenhill/M
+credential/MSd
+credentialism/M Noun: uncountable
+credenza/MS
+credibility/ISM
+credible/YI
+credit/dE7lS
+credit/M
+creditability/M Noun: usually uncountable
+creditable/P
+Crediton/M
+creditor/MS
+creditworthy/P
+credo/MS
+credulity/IMS
+credulous/PY
+credulously/I
+Cree/MS
+Creech/M
+Creed/M
+creed/SMO
+Creek/M
+creek/SM
+creekside/SM
+creel/DGMS
+creep/RZSGz
+creepy/PTS
+Creeting/M
+Creeton/M
+Creetown/M
+Creggan/M
+Cregrina/M
+Creich/M
+Creighton/M
+cremate/SyGnD
+crematoria/M
+crematorium/MS
+creme/SM
+crème/SM
+cremocarp/SM
+Crendon/M
+crenelate/SGDn
+crenellated
+crenellation/SM
+Crenshaw/M
+crenulate/Dn
+creole/MS
+Creole/MS
+creosote/SMGD
+crepe/GDMS
+crêpe/SM
+crêpey
+crept
+crepuscular
+crescendo/GDSM
+crescent/MS
+Creslow/M
+Crespi/M
+Crespo/M
+cress/SM
+Cressage/M
+Cressett/M
+Cressida/M
+Cressing/M
+Cressingham/M
+Cresson/M
+Cresswell/M
+crest/DMGpS
+Crest/M
+crestfallen/PY
+cresting/M
+Creston/M
+Crestor/M
+Crestview/M
+Crestwood/M
+Creswell/M
+Cretaceous/Y
+Cretan/SM
+Crete/M
+Creti/M
+cretin/MS
+Cretingham/M
+cretinism/SM
+cretinous
+cretonne/MS
+Creutzfeldt-Jakob/M
+Creutzfeldt/M
+crevasse/MGDS
+Creve/M
+crevice/MS
+crew/mMDGSp
+Crewe/M
+crewel/SM
+crewelwork/MS
+Crewkerne/M
+crewmember/SM
+Crewton/M
+Crex Taxonomic genus
+Crianlarich/M
+crib/DRGSM
+cribbage/SM
+cribbing/M
+cribella/M
+cribellate
+cribellum/M
+Cribwr/M
+Criccieth/M
+Cricetidae Taxonomic family
+Crich/M
+Crichel/M
+Crichton/M
+Cricieth/M
+crick/DSMG
+Crick/M
+Cricket/M
+cricket/rdMS
+cricketess
+cricketty
+crickety
+Crickhowell/M
+Cricklade/M
+crickle-crackle
+crickle/G
+Cricklewood/M
+Cricksea/M
+cricoarytaenoid
+cricoarytenoid/SM
+cricoid/SMO
+Cridling/M
+Crieff/M
+Criggion/M
+Crigglestone/M
+Crighton/M
+crikey
+Crim/M
+crime/DGSM
+Crimea/M
+Crimean/SM
+crimeware/M Noun: uncountable
+criminal/SMY
+criminalise/CnDSG
+criminalistics
+criminality/MS
+criminalize/CGnDS
+criminate/SGDty
+criminogenic
+criminology/3wMS
+criminous/PY
+Crimond/M
+crimp/SGDrM
+crimpage/M Noun: uncountable
+Crimplesham/M
+crimson/SMd
+cringe/GSDr
+Cringleford/M
+crinkle/DGSY
+crinkly/TS
+crinoid/SM
+crinoline/MSD
+Crinow/M
+criollo/SM
+cripes
+cripple/RGkDSM
+Cripplegate/M
+crises
+crisis/M
+Crisium/M
+crisp/GYPDTZ2SMr
+Crisp/M
+crispbread/SM
+Crispin/M
+crispy/T
+criss
+criss-cross/DGS
+Cristau/M
+Cristiane/M
+Cristiano/M
+Cristina/M
+Cristini/M
+Cristo
+Cristobal/M
+cristobalite/SM
+Criswell/M
+criteria/OM
+criterion/M
+criterium/SM
+Critias/M
+critic/YQ8Ss9M
+critical/UY
+criticality/SM
+criticise/k
+criticism/MS
+criticize/k
+critique/MGSD
+Crito/M
+Crittenden/M
+Crittendon/M
+critter/SM
+CRM/SM
+croak/RDZSGzM
+croaky/T
+Croat/SM
+Croatia/M
+Croatian/SM
+Croce/M
+crochet/dJSZrM
+crock/DGSMr
+Crockenhill/M
+Crockerton/M
+crockery/SM
+Crockett/M
+Crockford/M
+Crockpool/M
+crocodile/MS
+crocodilian/SM
+crocodyliform/SM
+Crocombe/M
+crocus/MS
+Croesus/M
+Croesyceiliog/M
+Croft-on-Tees/M
+Croft/M
+croft/MGSR
+Croftfoot/M
+Crofton/M
+Croglin/M
+Crohn/M
+Croick/M
+croissant/SM
+Croix/M
+Croke/M
+Cromar/M
+Cromarty/M
+Cromartyshire/M
+Crombie/M
+Cromdale/M
+Crome/M
+Cromer/M
+Cromford/M
+Cromhall/M
+Crommelin/M
+Crompton/M
+Cromwell/M
+Cromwellian/SM
+cron/M Noun: uncountable
+Cronbach/M
+Crondall/M
+crone/SZM
+croneyism/M
+Cronian
+Cronin/M
+Cronton/M
+Cronus/M
+crony/MS
+cronyism/SM
+crook/DSiMhG
+Crook/M
+Crooked/M
+crooked/P
+crookeder
+crookedest
+crookery/SM
+Crookes/M
+Crookham/M
+Croome/M
+croon/GSRDM
+crop/GSeMD
+cropland/SM
+cropper/MS
+Cropredy/M
+Cropston/M
+Cropthorne/M
+Cropton/M
+Cropwell/M
+croquembouche/SM
+croquet/SdM
+croqueta/SM
+croquette/MS
+Crosby/M
+Croscombe/M
+crosier/SM
+cross-assembler/SM
+cross-beam/SM
+cross-border
+cross-bred/S
+cross-breed/GS
+cross-check/DGS
+cross-colour
+cross-compiler/SM
+cross-connection/SM
+cross-contaminate/SDGN
+cross-correlate/D
+cross-correlation/SM
+cross-country
+cross-court
+cross-cultural
+cross-curricular
+cross-cut/SMG
+cross-disciplinary
+cross-dress/SGDR
+cross-examine/NDSG
+cross-eyed
+cross-fertilisation
+cross-fertilization
+cross-grained
+cross-hatch/DSG
+cross-legged
+cross-link/SGD
+cross-linkage
+cross-ply
+cross-point
+cross-polar
+cross-post/SGD
+cross-promote/D
+cross-promotion
+cross-question/GD
+cross-refer/S
+cross-reference/DGS
+cross-section/oSO
+cross/GASUD
+Cross/M
+cross/MY
+crossable
+Crossan/M
+crossarm/SM
+crossbar/MSDG
+crossbeam/MS
+crossbencher/SM
+crossbones
+crossbow/mSM
+Crossbush/M
+Crosscake/M
+Crosscanonby/M
+crosscurrent/MS
+Crosse/M
+Crossenny/M
+crosser/SM
+crossest
+crossfire/MS
+Crossford/M
+Crossgar/M
+Crossgates/M
+Crosshill/M
+Crosshouse/M
+crossing/MS
+Crosskeys/M
+Crossley/M
+Crossmaglen/M
+Crossman/M
+crossmatch/SGD
+Crossmichael/M
+crossness/MS
+crossopterygian/SM
+crossover/MS
+crosspatch/SM
+crosspiece/SM
+crosspoint/SM
+crossroad/SM
+crosstalk/SM
+crosstree/SM
+Crossville/M
+crossways
+Crossways/M
+crosswind/SM
+crosswise
+crossword/SM
+Crosthwaite/M
+crostini/M
+Croston/M
+Crostwick/M
+Crostwight/M
+Croswell/M
+crotch/DSpM
+crotchet/MSZ
+crotchety/P
+Crothers/M
+croton/SMW
+crottle/M
+crouch/SGD
+Croughton/M
+croup/DMGZS
+croupiere/MS
+croupy/RT
+crouton/SM
+croûton/SM
+Crow/M
+crow/MDSG
+Crowan/M
+crowbait/SM
+crowbar/SMGD
+crowberry/SM
+Crowborough/M
+Crowcombe/M
+crowd-pleaser/SM
+crowd/cSDG
+crowd/M
+crowded/P
+crowdfund/SGD
+crowdie/MS
+Crowdin/M
+crowdsource/SGD
+Crowe/M
+Crowell/M
+crowfeet/M
+Crowfield/M
+crowfoot/M
+Crowhurst/M
+Crowism
+Crowland/M
+Crowle/M
+Crowley/M
+Crowmarsh/M
+Crown/M
+crown/rDGSMp
+Crownthorpe/M
+Crowther/M
+Crowthorne/M
+Crowton/M
+Croxall/M
+Croxby/M
+Croxdale/M
+Croxden/M
+Croxley/M
+Croxton/M
+Croy/M
+Croydon/M
+crozier/SM
+CRT/SM
+Crucarden/M
+cruces
+Cruces/M
+crucial/Y
+cruciate
+crucible/SM
+crucifer/SM
+Cruciferae
+cruciferous
+crucifix/MS
+crucifixion/SM
+cruciform/SM
+crucify/DGRS7
+Crucis/M
+Crucorney/M
+crud/GDMZS
+cruddy/T
+crude/PTY
+Cruden/M
+crudités
+crudity/SM
+Crudwell/M
+cruel/DTYGP
+cruelty-free
+cruelty/SM
+cruet/MS
+cruft/ZM
+Cruickshank/M
+Cruikshank/M
+Cruise/M
+cruise/RSDG
+cruiserweight/SM
+Cruithne/M
+crumb/YDZSMG
+crumble/SJDGM
+crumbly/TP
+crumby/T
+crumhorn/SM
+Crumlin/M
+crummy/TP
+crump/SGDM
+crumpet/MS
+crumple/SDG
+Crumpsall/M
+crunch/RSDZG2
+crunchy/T
+Crundale/M
+crunk/M
+Crunwear/M
+crupper/MS
+crura/OM
+crus/M
+crusade/MRSDG
+Cruscan/MS
+cruse/SM
+crush/R7kSDGM
+crushproof
+Crusoe/M
+crust/MGZzSDpO
+Crustacea Taxonomic subphylum
+crustacean/MS
+crusty/TPSM
+crutch/SDGM
+Cruwys/M
+Crux/M
+crux/SM
+Cruz/M
+cruzado/SM
+cruzeiro/MS
+cry/CRSGD
+crybaby/MS
+Crymych/M
+Crynant/M
+cryobank/SM
+cryobiology/3wM
+cryobot/SM
+cryogen/SMW
+Cryogenian
+cryogenics
+cryoglobulin/SM
+cryohydrate/SM
+cryolabile
+cryomicroscopy/M Noun: uncountable
+cryonic/SY
+cryopreserve/ND
+cryopump/MS
+cryoresistance/SM
+cryoresistant Adjective
+cryosphere/SM
+cryostability/M Noun: uncountable
+cryostable
+cryostat/SM
+cryosurgery/SM
+cryotherapy/SM
+cryovolcanic Adjective
+cryovolcanism/M Noun: uncountable
+cryovolcano/SM
+cryovolcanoes
+crypsis/M Noun: uncountable
+Crypt/M
+crypt/S1WMw
+cryptanalysis/M
+cryptanalyst/MS
+cryptanalytic/OY
+cryptid/MS
+crypto/SM
+cryptobiosis/M Noun: uncountable
+cryptobiotic Adjective
+cryptococcal Adjective
+cryptococcoses
+cryptococcosis/M
+cryptocrystalline/SM
+cryptocurrency/SM
+cryptogam/SM
+cryptogamic Adjective
+cryptogamous Adjective
+cryptogenic Adjective
+cryptogram/MS
+cryptographer/SM
+cryptography/W1SM
+cryptojacking/M
+cryptology/M3Ww
+cryptomeria/SM
+cryptominer/SM
+cryptomining/M Noun: uncountable
+cryptonym/SM
+cryptonymous
+cryptorchid/SM
+cryptorchidism/SM
+cryptosporidia/M
+cryptosporidiosis/M Noun: uncountable
+cryptosporidium/M
+cryptosystem/SM
+cryptovirology/M Noun: uncountable
+Cryptozoic
+cryptozoic Adjective
+cryptozoology/3wM
+crystal-clear Adjective
+Crystal/M
+crystal/MS
+crystalline/SM
+crystallinity/SM
+crystallisable Adjective
+crystallise/AnDSG
+crystalliser/SM
+crystallite/SM
+crystallizable Adjective
+crystallize/RnDGS
+crystallographer/MS
+crystallography/WM1
+crystalloid/SM
+Cs
+CSA
+CSE
+CSEU
+Csikász/M
+Csikasz/M
+CSP
+CSPRNG/S
+CSR/M
+CSS/M
+CST
+CSU
+CSV
+CSYS
+CT/SM
+ctenoid/SM
+Ctenophora Taxonomic phylum
+ctenophore/MS
+Cthulhu/M
+CTOL
+Ctrl
+Cu
+cu.
+cub/dWw3SD1GMZ
+Cuba/M
+Cuban/SM
+cubane/SM
+cubanelle/SM
+Cubbington/M
+cubbyhole/SM
+cube/M3Sr
+cubeb/MS
+Cubert/M
+cubewano/SM
+cubic/SM
+Cubicin/M
+cubicle/SM
+Cubie/M
+cubism/SM
+cubit/SMO
+cubitus/M
+Cubley/M
+Cublington/M
+cuboid/SO^
+Cuby/M
+Cucamonga/M
+Cuckfield/M
+Cucklington/M
+Cuckmere/M
+Cuckney/M
+cuckold/MDGyS
+cuckoldry/SM
+cuckoo/MSGD
+cucumber/MS
+cud/SM
+Cudahy/M
+Cuddesdon/M
+Cuddington/M
+cuddle/D2GYS
+cuddlesome
+cuddly/T
+cudgel/DSGMJ
+Cudham/M
+Cudlow/M
+cudweed/MS
+Cudworth/M
+cue/DaMSG
+cueing
+Cuerdale/M
+Cuerden/M
+Cuerdley/M
+cuesta/MS
+cuff/DGMS
+Cuffley/M
+cufflink/SM
+Cufic/M
+cuirass/SM
+cuish/MS
+cuisine/MS
+cuisse/MS
+cul-de-sac/SM
+cul/DG
+Culbertson/M
+Culbone/M
+Culborne/M
+Culcheth/M
+culex/M
+Culey/M
+Culford/M
+Culgaith/M
+Culham/M
+culices
+culicine/SM
+culinary Adjective
+cull/SMr
+Cullaville/M
+Cullen/M
+cullet/SM
+Cullingworth/M
+Cullman/M
+Culloden/M
+Cullompton/M
+Cully/M
+cully/SM
+Cullybackey/M
+Cullyhanna/M
+culm/SM
+culmiferous Adjective
+culminant Adjective
+culminate/SGnD
+Culmington/M
+Culmore/M
+Culmstock/M
+Culnady/M
+culotte/SM
+culpa/SM
+culpability/MS
+culpable/YP
+Culpeper/M
+Culpho/M
+culprit/SM
+Culross/M
+Culsalmond/M
+cult/SM3W
+Culter/M
+cultigen/SM
+cultism/MS
+cultivable Adjective
+cultivar/SM
+cultivatable Adjective
+cultivate/GSnD
+cultivator/MS
+Cultram/M
+Cults/M
+cultural/4
+culture/SMoDG
+cultus/MS
+Culver/MS
+Culverden/M
+culverin/SM
+culvert/MSGD
+Culverthorpe/M
+Culworth/M
+cum/SGDM
+Cumanus/M
+cumber/Sd
+Cumberbatch/M
+Cumberland/M
+Cumbernauld/M
+cumbersome/PY
+Cumberworth/M
+Cumbrae/M
+Cumbria/M
+Cumbrian/SM
+cumbrous/Y
+cumbrousness/M
+cumin/SM
+Cuminestown/M
+Cumlodden/M
+cummerbund/SM
+Cummertrees/M
+Cummings/M
+Cummins/M
+Cumnock/M
+Cumnor/M
+cumquat/SM
+Cumrew/M
+Cumru/M
+cumulate/DvGnSV
+cumulativeness/M
+cumuli/M
+cumulonimbi/M
+cumulonimbus/M
+cumulous
+cumulus/M
+Cumwhitton/M
+Cundall/M
+cuneate
+cuneiform/SM
+Cunha/M
+cunjevoi/MS
+Cunliffe/M
+cunnilingus/M Noun: usually uncountable
+cunning/TYP
+Cunningham/M
+Cunnington/M
+cunny/SM!
+cunt/MSG!
+cunty/T!
+Cuoco/M
+Cuomo/M
+cup/DM6GS
+Cupar/M
+cupbearer/SM
+cupboard/MS
+cupcake/SM
+cupel/DGS
+cupellation/MS
+Cupertino/M
+cupful/MS
+cupholder/SM
+Cupich/M
+Cupid/M
+cupid/SM
+cupidinously Adverb
+cupidity/SM
+Cupillari/M
+cupola/DSGM
+cuppa/SM
+cupping/M
+cuprammonium/SM
+cupreous
+cupric Adjective
+cupriferous Adjective
+cuprite/SM
+cupro-nickel/M
+cuprocene
+cuprous Adjective
+cupule/SM
+cur/rYgvZl7dSMV
+curability/SM
+curable/PI
+curacao/SM
+curacy/SM
+curare/MS
+curassow/SM
+curate/NDGMS
+curative/SM
+curator/SMO
+curatorship/MS
+curb/MDSG
+Curbar/M
+curbing/M
+Curborough/M
+Curbridge/M
+curbside/SM
+curbstone/SM
+curcumin/SM
+curd/GvuMVSD
+curdle/GSD
+Curdridge/M
+Curdworth/M
+cure/SM
+curettage/SM
+curette/SGDM
+curfew/SM
+curia/MO
+Curia/MO
+curiae/M
+curie/MS
+Curig/M
+curio/SM
+curiosity/SM
+curious/TPY
+Curitiba/M
+curium/M Noun: uncountable
+curl/DGSR2M
+Curland/M
+curlew/SM
+curlicue/SDMG
+Curlieu/M
+curling/M
+curly/T
+curlycue/SM
+curmudgeon/MYS
+curocene
+Curragh/M
+curragh/MS
+currajong/SM
+Curran/M
+currant/MS
+currawong/SM
+currency/FSM
+current/PYSM
+currently/AF
+Currey/M
+curricle/SM
+curricula/M
+curricular Adjective
+curriculum/MS
+Currie/M
+Currier/M
+currish/Y
+currishness/M
+Currituck/M
+curry/DGMS
+Curry/M
+currycomb/SMDG
+curs/GyihSD
+curse/M
+cursed/P
+cursive/EY
+cursive/S
+cursiveness/E
+cursiveness/M
+cursor/dSMZO
+cursorily Adverb
+cursoriness/MS
+curt/YTP
+curtail/RLSDG
+curtain/DMGS
+curtilage/SM
+Curtis/M
+curtsey/DSMG
+curtsy/DGSM
+curvaceous/YP
+curvature/MS
+curve/SZGDM
+curveball/SMR
+curved's
+curvet/DGMS
+curveted
+curveting
+curvidentate
+curvifoliate/M
+curviform Adjective
+curvilinear/Y
+curvilinearity/SM
+curving/M
+curvirostral Adjective
+curvy/T
+Cury/M
+Curzon/M
+Cusack/M
+cuscus/MS
+cusec/MS
+cushat/MS
+Cushendall/M
+Cushendun/M
+Cushing/M
+cushion/ZSGMD
+Cushitic/M
+Cushman/M
+cushy/T
+cusk-eel/SM
+Cusop/M
+cusp/MDS
+cuspate Adjective
+cuspid/SMO
+cuspidate Adjective
+Cuspius/M
+cuspule/SM
+cuss/DhiSGM
+cussed/EF
+cussedness/M
+cusser/FE
+cusses/FE
+Cusseta-Chattahoochee/M
+Cust/M
+custard/SM
+Custer/M
+custode/SM
+custodee/SM
+custodial Adjective
+custodian/SM
+custodianship/MS
+custody/SM
+custom-built
+custom-made
+custom/sQ-9Mr8qSt+
+customary/YPSM
+customhouse/SM
+customised/C
+Cusworth/M
+cut-and-paste
+cut-down
+cut-off/SM
+cut-out/SM
+cut-price
+cut-throat/MS
+cut/RSGJM
+cutaneous/Y
+cutaway/SM
+cutback/SM
+cutch/M Noun: usually uncountable
+Cutcombe/M
+cute/TYP
+cutesy/T
+Cuthbert/M
+Cuthbertson/M
+Cuthill/M
+cuticle/SM
+cuticular Adjective
+cutie/SM
+cutlass/MS
+cutlassfish/SM
+Cutler/M
+cutler/ZSM
+cutlery/MS
+cutlet/MS
+cutout/SM
+cutover/SM
+cutpurse/SM
+cutscene/SM
+Cutsdean/M
+Cuttack/M
+cutting/MY
+cuttle/SM
+cuttlebone/MS
+cuttlefish/SM
+Cutts/M
+cutty/MS
+cutup/MS
+cutwater/MS
+cutworm/SM
+cuvette/SM
+Cuvier/M
+Cuxham/M
+Cuxton/M
+Cuxwold/M
+Cuyahoga/M
+cuz
+CV/SM
+CVA
+CVE
+CVT
+cw
+Cwm-hir/M
+Cwm/M
+Cwmafan/M
+Cwmamman/M
+Cwmbach/M
+Cwmbran/M
+Cwmbwrla/M
+Cwmcarvan/M
+Cwmdu/M
+Cwmhir/M
+Cwmllynfell/M
+Cwmteuddwr/M
+Cwmyoy/M
+CWO/SM
+cwt
+cyan/MWS
+Cyanamid
+cyanamide/SM
+cyanate/SM
+cyanide/SMGD
+cyanoacetylene/SM
+cyanoacrylate/SM
+Cyanobacteria Taxonomic phylum + Taxonomic class
+cyanobacteria/MO
+cyanocobalamin/M Noun: usually uncountable
+cyanogen/SM
+cyanophyte/SM
+cyanosis/M
+cyanotic Adjective
+cyanotype/SM
+cyathia/M
+cyathium/M
+Cybele/M
+cyber
+cyber-thriller/M
+cyberactivism/M Noun: uncountable
+cyberactivist/SM
+cyberactivity/SM
+cyberaddict/SM
+cyberaddiction/SM
+cyberaffair/SM
+cyberage/M
+cyberagent/SM
+cyberanarchist/SM
+cyberanonymity/M Noun: uncountable
+cyberart/SM3
+cyberassault/SM
+cyberathlete/SM
+cyberattack/SMR
+cyberauction/SM
+cyberaudience/SM
+cyberbabe/SM
+cyberbank/SMG
+cyberbarrier/SM
+cyberbattle/SM
+cyberbazaar/SM
+cyberbeggar/SM
+cyberbeing/SM
+cyberbook/SM
+cyberborder/SM
+cyberbreach/SM
+cyberbride/SM
+cyberbridge/SM
+cyberbuddy/SM
+cyberbully/GS
+cyberbusiness/SM
+cybercafé/SM
+cybercafe/SM
+cybercampaign/SM
+cybercapitalist/SM
+cybercash/M Noun: uncountable
+cybercasino/SM
+cybercast/SMGDR
+cybercelebrity/SM
+cyberchat/SM
+cyberchondria/M Noun: uncountable
+cyberchondriac/SM
+cyberchorus/SM
+cyberchurch/SM
+cybercide/SM
+cybercitizen/SM
+cybercity/SM
+cybercivilization/SM
+cyberclass/SM
+cyberclassroom/SM
+cybercloset/SM
+cybercolumn/SM3
+cybercommunication/SM
+cybercommunity/SM
+cybercommuter/SM
+cyberconference/SM
+cyberconflict/SM
+cybercongregation/SM
+cyberconspiracy/SM
+cyberconsumer/SM
+cybercontroversy/SM
+cyberconversation/SM
+cybercop/SM
+cybercorporation/SM
+cybercowboy/SM
+cybercreature/SM
+cybercrew/SM
+cybercrime/SM
+cybercriminal/SM
+cybercritic/SM
+cybercrook/SM
+cybercult/SM
+cyberculture/SMO
+cybercurrency/SM
+cybercycle/SM
+cyberczar/SM
+cyberdate/SMG
+cyberdeath/M Noun: uncountable
+cyberdeck/SM
+cyberdefence/SM
+cyberdetective/SM
+cyberdiary/SM
+cyberdiscourse/SM
+cyberdissident/SM
+cyberdrama/SM
+cybereconomy/SM
+cyberelite/SM
+cyberenvironment/SM
+cyberequivalent/SM
+cyberespionage/M Noun: uncountable
+cyberethnographer/SM
+cyberethnography/SM
+cyberfantasy/SM
+cyberfeminism/SM
+cyberfeminist/SM
+cyberfeud/SM
+cyberfiction/SM
+cyberflaneur/SM
+cyberflirt/SM
+cyberfootprint/SM
+cyberformance/SM
+cyberforum/SM
+cyberfraud/SM
+cyberfraudster/SM
+cyberfreak/SM
+cyberfreedom/SM
+cyberfriend/SM
+cyberfriendship/SM
+cyberfrontier/SM
+cyberfuneral/SM
+cyberfuture/SM
+cybergame/SM
+cybergang/SM
+cybergeek/SM
+cybergenre/SM
+cyberghetto/SM
+cybergirl/SM
+cybergirlfriend/SM
+cybergoth/SM
+cybergroup/SM
+cyberhacker/SM
+cyberheist/SM
+cyberhero/M
+cyberheroes
+cyberhole/SM
+cyberholic/SM
+cyberhug/SM
+cyberhusband/SM
+Cyberia/M
+Cyberian/M
+cyberian/SM
+cyberidentity/SM
+cyberimmortality/M Noun: uncountable
+cyberimperialism/M Noun: uncountable
+cyberindustry/SM
+cyberinformation/M Noun: uncountable
+cyberinfrastructure/SM
+cyberintelligence/M Noun: uncountable
+cyberinteraction/SM
+cyberintruder/SM
+cyberintrusion/SM
+cyberism/M Noun: uncountable
+cyberissues
+cyberjargon/M Noun: uncountable
+cyberjihadist/SM
+cyberjournal/SM3
+cyberjournalism/M Noun: uncountable
+cyberjunk/M Noun: uncountable
+cyberjunkie/SM
+cyberjustice/M Noun: uncountable
+cyberkid/SM
+cyberknife/M
+cyberknives
+cyberland/M Noun: uncountable
+cyberlanguage/M Noun: uncountable
+cyberlaundering/M Noun: uncountable
+cyberlaw/SM
+cyberlawyer/SM
+cyberlearning/M Noun: uncountable
+cyberlegal
+cyberlibertarian/SM
+cyberlibertarianism/M Noun: uncountable
+cyberliberty/SM
+cyberlibrary/SM
+cyberlife/M
+cyberlingo/M Noun: uncountable
+CyberLink/M
+cyberliteracy/SM
+cyberliterary
+cyberliterate
+cyberliterature/M Noun: uncountable
+cyberloafing/M Noun: uncountable
+cyberlocker/SM
+cyberloser/SM
+cyberlove/MR
+cybermall/SM
+cyberman/M
+cybermania/M Noun: uncountable
+cybermap/SM
+cybermarket/SM
+cybermarketing/M Noun: uncountable
+cybermarketplace/SM
+cybermarriage/SM
+cybermartyr/SM
+cybermedia/M Noun: uncountable
+cybermedicine/M Noun: uncountable
+cybermessage/SM
+cybermob/SM
+cybermoney/M Noun: uncountable
+cybermosque/SM
+cybermuseum/SM
+cybername/SM
+cybernarrative/SM
+cybernat/SM
+cybernate/SGDN
+cybernationalism/M Noun: uncountable
+cybernationalist/SM
+cybernaut/SM
+cybernavigation/M Noun: uncountable
+cybernerd/SM
+cybernetic/Y
+cybernetician/SM
+cyberneticist/SM
+cybernetics/M Noun: uncountable
+cybernetwork/SM
+cybernews/M Noun: uncountable
+cybernocracy/M
+cyberoperation/SM
+cyberoptimism/M Noun: uncountable
+cyberoptimist/SM
+cyberorganization/SM
+cyberpal/SM
+cyberpark/SM
+cyberpartner/SM
+cyberpath/SM
+cyberpatient/SM
+cyberpayment/SM
+cyberpeople/M
+cyberperformance/SM
+cyberperformer/SM
+cyberperson/SM
+cyberpessimism/M Noun: uncountable
+cyberpessimist/SM
+cyberpet/SM
+cyberphilosopher/SM
+cyberphilosophy/wM
+cyberphobe/SM
+cyberphobia/M Noun: uncountable
+cyberphobic/SM
+cyberphysical
+cyberpioneer/SM
+cyberpiracy/M Noun: uncountable
+cyberpirate/SM
+cyberplace/SM
+cyberplagiarism/M Noun: uncountable
+cyberpoem/SM
+cyberpoet/SM
+cyberpolice/M Noun: uncountable
+cyberpolitical
+cyberpolitics/M Noun: usually uncountable
+cyberpop/M Noun: uncountable
+cyberporn/M Noun: uncountable
+cyberpornography/M Noun: uncountable
+cyberpredator/SM
+cyberprivacy/M Noun: uncountable
+cyberprodigy/SM
+cyberproletariat/SM
+cyberpropaganda/M Noun: uncountable
+cyberprostitution/M Noun: uncountable
+cyberprotection/M Noun: uncountable
+cyberprotest/SMR
+cyberpsychology/Mw3
+cyberpunk/SM
+cyberpunter/SM
+cyberracism/M Noun: uncountable
+cyberreality/SM
+cyberrelationship/SM
+cyberrights
+cyberromance/SM
+cybersaboteur/SM
+cybersafe
+cybersafety/M Noun: uncountable
+cybersalon/SM
+cybersangha/SM
+cyberscam/SMR
+cyberscape/SM
+cyberscholarship/M Noun: uncountable
+cyberschool/SM
+cyberscience/MSW
+cyberscientist/SM
+cyberscum/M
+cybersecure
+cybersecurity/M Noun: uncountable
+cyberself/M
+cyberselves
+cyberservice/SM
+cybersex/MSGD
+cybersexism/M Noun: uncountable
+cybersexual
+cybersexuality/SM
+cybersexy Adjective
+cybershop/SGDR
+cybersickness/M Noun: uncountable
+cyberskills
+cyberslacker/SM
+cyberslacking/M Noun: uncountable
+cyberslang/M Noun: uncountable
+cybersleuth/SM
+cyberslut/SM
+cybersmut/M Noun: uncountable
+cybersocial
+cybersociety/SM
+cybersociology/M3
+cybersoul/SM
+cyberspace/MS
+cyberspatial
+cyberspatiality/SM
+cybersphere/SM
+cybersport/SM
+cyberspy/SM
+cyberspying/M Noun: uncountable
+cybersquatter/SM
+cybersquatting/M Noun: uncountable
+cyberstalker/SM
+cyberstalking/M Noun: uncountable
+cyberstore/SM
+cyberstranger/SM
+cyberstrategy/SM
+cyberstructure/SM
+cyberstud/SM
+cyberstudent/SM
+cyberstudies
+cybersucker/SM
+cybersuicide/SM
+cybersuit/SM
+cybersurf/SGDR
+cybersurgeon/SM
+cybersynagogue/SM
+cybersystem/SM
+cyberteacher/SM
+cyberteam/SM
+cybertechnique/SM
+cybertechnology/SM
+cyberterritory/SM
+cyberterrorism/M Noun: uncountable
+cyberterrorist/SM
+cybertext/SM
+cybertheft/SM
+cybertheory/SM3
+cybertherapy/SM3
+cyberthief/M
+cyberthieves
+cyberthreat/SM
+cyberthriller/SM
+cyberthug/SM
+cybertopia/SM
+cybertopian/SM
+cybertourist/SM
+cybertown/SM
+cybertrail/SM
+cybertraveller/SM
+cybertrooper/SM
+cybertutor/SM
+cybertype/SM
+cyberunit/SM
+cyberutopia/SM
+cyberutopian/SM
+cybervandal/SM
+cyberverse/SM
+cybervigilante/SM
+cybervillage/SM
+cybervoyeur/SM
+cybervulnerability/SM
+cyberwallet/SM
+cyberwar/SM
+cyberware/SM
+cyberwarfare/M Noun: uncountable
+cyberwarrior/SM
+cyberweapon/SM
+cyberwedding/SM
+cyberwhore/SM!
+cyberwife/M
+cyberwives
+cyberwizard/SM
+cyberworld/SM
+cyberwriter/SM
+cyberwriting/SM
+cyberzine/SM
+cyborg/SM
+cybrarian/SM
+cybrary/SM
+cybrid/SM
+cycad/SM
+Cyclades/M
+Cycladic/M
+cyclamate/SM
+cyclamen/SM
+cycle/JrD3SWGwM1
+cycleway/SM
+cyclicity/SM
+cyclin/SM
+cyclise/SGDN
+cyclize/SGDN
+cyclizine/M Noun: usually uncountable
+cycloaddition/SM
+cycloalkane/MS
+cycloalkene/MS
+cyclobenzaprine/M Noun: uncountable
+cyclogenesis/M
+cyclohexane/SM
+cyclohexanol/SM
+cyclohexene/MS
+cycloid/SMO
+cyclometer/MS
+cyclone/WSM
+cyclopaedia/MSW
+cycloparaffin/SM
+Cyclopean Adjective
+cyclopean Adjective
+cyclopentadiene/SM
+cyclopentane/SM
+Cyclopes
+cyclophosphamide/SM
+Cyclops/M
+cyclorama/SM
+cycloramic Adjective
+cyclosarin/M Noun: uncountable
+cyclosportive/SM
+cyclostome/SM
+cyclostyle/SGD
+cyclothymia/WSM
+cyclotomic Adjective
+cyclotron/MS
+cyder/SM
+Cydonia/M
+Cyfarthfa/M
+Cyffig/M
+Cyffylliog/M
+cygnet/SM
+Cygni/M
+Cygnus/M
+Cygwin/M
+Cylch/M
+cylinder/wS1M
+Cyllene/M
+cyma/SM
+cymbal/M3S
+Cymbalta/M
+cymbidium/SM
+cyme/SM
+Cymmer/M
+Cymmrodorion
+cymose/Y
+Cymraeg/M
+Cymric/M
+Cymru/M
+Cymyn/M
+cynanthrope/MS
+cynanthropic/Y
+cynanthropy/M Noun: uncountable
+Cyncoed/M
+Cyndi/M
+Cynewulf/M
+Cynic/MS
+cynic/SMYO
+cynicism/MS
+Cynog/M
+Cynon/M
+cynosure/MS
+Cynthia/SM
+Cynthian Adjective
+Cynthus/M
+Cynwyd/M
+Cynwyl/M
+cyphel/M
+cypher/dSM
+cypherpunk/SM
+cyphertext/SM
+Cypress/M
+cypress/SM
+Cyprian/SM
+cyprinoid/SM
+Cypriot/SM
+cypripedium/MS
+cyproterone/SM
+Cyprus/M
+cypsela/M
+cypselae/M
+Cyrano/M
+Cyrenaic/SM
+Cyrenaica/M
+Cyrene/M
+Cyres/M
+Cyriac/M
+Cyril/M
+Cyrillic/M
+Cyrix/M
+Cyrus/M
+cyst/SWM
+cystectomy/SM
+cysteine/SM
+cystidia/M
+cystidium/M
+cystitides
+cystitis/M
+cystocele/SM
+cystoscope/SMW
+cystoscopy/SM
+cystotomy/SM
+cytidine/SM
+cytoarchitectural/Y
+cytoarchitecture/SM
+cytochemistry/M Noun: usually uncountable
+cytochrome/SM
+cytogenesis/M
+cytogenetic/3YOS
+cytogenous Adjective
+cytogeny/M Noun: usually uncountable
+cytoid Adjective
+cytokeratin/SM
+cytokine/SM
+cytokinesis/M Noun: usually uncountable
+cytokinin/SM
+cytology/3wSM1
+cytolysis/M Noun: usually uncountable
+cytomegalic Adjective
+cytomegalovirus/SM
+cytometer/SM
+cytometry/MW
+cytopathic Adjective
+cytophotometer/SM
+cytophotometry/MW
+cytoplasm/SWM
+cytosine/SM
+cytoskeletal/Y
+cytoskeleton/SM
+cytosol/SMW
+cytosome/SM
+cytostome/SM
+cytotoxic/SM
+cytotoxicity/SM
+Czaczkes/M
+czar/3MS
+czarevitch/SM
+czarina/MS
+czarism/SM
+czarship/SM
+Czech/M
+Czechia/M
+Czechoslovak/SM
+Czechoslovakia/M
+Czechoslovakian/SM
+Czechs
+D'Abernon/M
+D'Abitot/M
+D'Arcy/M
+d'Arezzo
+d'art
+D'Autray/M
+d'Azur
+D'Eivile/M
+d'Estaing
+d'etat
+d'être
+d'etre
+d'oeuvre
+D'Orazio/M
+D'Orsay/M
+d's/A
+D-day/M
+D-Day/M
+D-notice
+D.C.
+D.F.A.
+d/to
+da
+dab/TGDSR
+dabble/DRSG
+Dabbs/M
+dabchick/SM
+dabigatran/M Noun: uncountable
+Dabo/M
+Daborn/M
+Dacca/M
+dace/M
+dacha/MS
+Dachau/M
+dachshund/SM
+dacite/SMW
+dacoit/MS
+dacoity/MS
+Dacorum/M
+Dacre/M
+Dacron/M
+dactyl/SM
+dactylic Adjective
+dad/MZS
+Dada/M
+Dadaism/M
+Dadaist/SMW
+Daddario/SM
+daddy-long-legs/M
+daddy/SM
+Dade/M
+dado/MS
+Dadra/M
+Daedalian Adjective
+Daedalus/M
+Daegu/M
+daemon/SWM
+daemonize/SGD
+Daesh/M
+daff/MS
+Daffern/M
+daffily Adverb
+daffodil/SM
+daffy/TP
+Dafoe/M
+daft/YTP
+Dafydd/M
+Dag/M
+Dagenham/M
+Dagestan/M
+Dagestani/SM
+Dagestanian/SM
+dagga/M
+dagger/dMS
+daggerboard/SM
+Daglingworth/M
+Dagnall/M
+dago/SM!
+dagoes/!
+Daguerre/M
+daguerreotype/SMDG
+daguerrotype/SM
+Dagworth/M
+dahabeeyah/SM
+Dahl/M
+Dahlen/M
+dahlia/SM
+Dahm/M
+Dahomey/M
+Dahua/M
+Dáil/M
+Dailly/M
+daily/SMP
+daimio/SM
+Daimler/M
+dainty/TSYP
+daiquiri/MS
+Dairsie/M
+dairy/m5MSG
+dairying/M
+dairyland/SM
+dairymaid/MS
+dais/SZM
+daisy-cutter/SM
+daisy/MS
+Dakar/M
+Dakin/M
+Dakota/MS
+Dalai/M
+Dalarossie/M
+Dalavich/M
+dalbavancin/M Noun: uncountable
+Dalbeattie/M
+Dalbury/M
+Dalby-cum-Skewsby/M
+Dalby/M
+Dalcross/M
+Dalderby/M
+Dale/M
+dale/MmS
+daleth/SM
+Daley/M
+Dalgety/M
+Dalham/M
+Dalhousie/M
+Dali/M
+Dalian/M
+Daliburgh/M
+Dalkeith/M
+Dallara/M
+Dallas/M
+Dalles/M
+Dallet/M
+dalliance/MS
+Dalling/M
+Dallinghoo/M
+Dallington/M
+Dalloway/M
+dally/RGDS
+Dalmally/M
+Dalmatia/M
+Dalmatian/SM
+dalmatic/SM
+Dalmellington-Burnton/M
+Dalmellington/M
+Dalmeny/M
+Dalmore/M
+Dalmuir/M
+Dalneigh/M
+DALnet/M
+Dalry/M
+Dalrymple/M
+Dalserf/M
+Dalston/M
+Dalton-on-Tees/M
+Dalton/M
+daltonism/M Noun: uncountable
+Dalwood/M
+Daly/M
+Dalyell/M
+Dalzell/M
+Dalziel/M
+Dam/M
+dam/MDGS
+damage/DRSkMG
+damageable
+Daman/M
+Damania/M
+Damaraland/M
+Damaris/M
+Damas/M
+Damascus/M
+Damasio/M
+damask/DMGS
+Dame/M
+dame/MS
+Damerel/M
+Damerham/M
+damfool/MS
+Damian/M
+Damien/M
+Damietta/M
+Damjan/M
+Damme/M
+dammit/S
+damn/lDGkS7nR
+damnatory Adjective
+damneder
+damnedest
+Damneus/M
+damnification/S
+damnify/SGDJ
+Damoclean Adjective
+Damocles/M
+Damon/M
+damp/SDTRPGY
+dampen/drS
+damsel/SM
+damselfish/SM
+damselfly/SM
+damson/SM
+Dan/M
+dan/SM
+Dana/M
+Danaë/M
+Danbury/M
+Danby/M
+dance-off/SM
+dance/SDRGM
+danceable
+dancehall/SM
+dancelike
+dancercise
+dancercize
+dandelion/MS
+Dandenong/M
+dander/SdM
+Danderhall/M
+Dandie/SM
+dandify/GDS
+dandle/DSG
+Dando/M
+dandruff/MS
+dandy/SMYT~
+dandyism/SM
+Dane/MS
+Danegeld/M
+Danehill/M
+Danelaw/M
+danewort/SM
+Danforth/M
+Dang/M
+danger/SdM
+Dangerfield/M
+dangerous/YP
+dangle/RGkDSZ
+Dania/M
+Daniel/SM
+Daniela/M
+Daniele/M
+Danielle/M
+Danielson/M
+Danish/M
+dank/YPT
+Dannemora/M
+Dannevirke/M
+Danni/M
+Danny/M
+dansant/S
+danse
+danseur/MS
+danseuse/SM
+Dante/M
+Dantean/MS
+Dantesque Adjective
+danthonia/SM
+Danube/M
+Danubian/SM
+Danvers/M
+Danville/M
+Danzig/M
+Daoism/SM
+dap/SMGDJ
+dapagliflozin/M
+Daphne/M
+daphne/MS
+Daphnis/M
+dapper/PY
+dapperer
+dapperest
+dapple/DSGM
+dapsone/SM
+Daqing/M
+Dara/M
+Darabont/M
+Darbishire/M
+Darboux/M
+Darby/M
+Darbyshire/M
+Darcy/M
+Dardenne/M
+Dare/M
+dare/RDkGSM
+Darebin/M
+daredevil/SyM
+daredevilry/SM
+Darell/M
+daren't
+Darenth/M
+daresay
+Daresbury/M
+Darfield/M
+Darfur/M
+Dargate/M
+Dargaville/M
+Darger/M
+Darien/M
+daring/P
+Dario/M
+dariole/SM
+Darius/M
+Darjeeling/M
+dark/PSDTGY
+Darke/M
+darken/rdS
+darkie/SM
+darkish Adjective
+Darkley/M
+darkling/SM
+darkly/T
+darknet/SM
+darkroom/SM
+darksome
+darky/M
+Darlaston/M
+Darlene/M
+Darley/M
+darling/PMS
+Darlington/M
+Darlton/M
+Darmsden/M
+darmstadtium/M Noun: uncountable
+darn/DRGS
+Darnall/M
+Darncombe-cum-Langdale/M
+darneder
+darnedest
+darnel/SM
+Darnhall/M
+darning/SM
+Darnley/M
+Darowen/M
+DARPA/M Defense Advanced Research Projects Agency
+Darran/M
+Darrell/M
+Darren/M
+Darrington/M
+Darryn/M
+Darsham/M
+darshan/MS
+Darshana/M
+dart/MGSRD
+dartboard/SM
+Dartford/M
+Darth/M
+Dartington/M
+Dartmoor/M
+Dartmouth/M
+Darton/M
+Darussalam/M
+Darvel/M
+Darwen/M
+Darwin/M
+Darwinian/SM
+Darwinism/SM
+Darwinist/SMW
+Daryl/M
+Dasent/M
+dash/GRSDk
+Dashamir/M
+dashboard/SM
+dasheen/SM
+dashiki/MS
+dashpot/SM
+Dashti/M
+Dashwood/M
+Dassett/M
+dassie/MS
+dastard/SM
+dastardly/P
+dasyure/MS
+DAT
+data/M
+databank/SM
+database/DMGS
+datable Adjective
+databus
+datacard
+datacomms
+datacoms
+datafile/SM
+dataflow/SM
+dataglove/SM
+datagram/SM
+datalogy/M Noun: uncountable
+Datamation/M
+datary/SM
+dataset/SM
+datasphere/M
+datastore/SM
+dataveillance/SM
+Datchet/M
+Datchworth/M
+date/7MGVRSiphD
+datedness/e
+datelessness/M
+dateline/SMDG
+dative/SMOY
+Datsun/M
+datum/MS
+Datura Taxonomic genus
+datura/MS
+daub/DRGS
+daube/MS
+Daugherty/M
+daughter-in-law/M
+daughter/YMS
+daughterboard/SM
+daughtercard/SM
+daughterhood/SM
+daughters-in-law/M
+Daughtry/M
+daunt/DGkpS
+dauntless/PY
+Dauntsey/M
+Dauphin/M
+dauphin/MS
+dauphinois
+dauphinoise/M Noun: uncountable
+Dauwe/M
+Dave/M
+Daveluyville/M
+Davenham/M
+Davenport/MS
+davenport/MS
+Daventry/M
+David/WMS
+Davidson/MS
+Davidstow/M
+Davie/M
+Daviess/M
+Davington/M
+Daviot/M
+Davis/M
+Davison/M
+davit/SM
+Davy/SM
+dawdle/DRSG
+Dawes/M
+Dawkins/M
+Dawley/M
+Dawlish/M
+dawn/GDSM
+Dawson/M
+day-long
+day-to-day
+Day/M
+day/SM
+Dayak/MS
+dayan/M
+dayanim/M
+daybed/SM
+dayboat/SM
+daybook/SM
+daybreak/SM
+daycare/SM
+daydream/SRMDG
+Daylesford/M
+daylight/GSDM
+Dayman/M
+daymare/SM
+daypack/SM
+Dayrell/M
+daysack/SM
+daysailor/SM
+dayside/SM
+daystar/SM
+daytime/SM
+Dayton/M
+Daytona/M
+daywear/M Noun: uncountable
+daywork/SMR
+daze/DiSGhM
+dazzle/SRGkDM
+dB/M
+DBE/M
+dBi
+dBm
+DBMS
+dBW
+DC
+DCB
+DCM
+DCMG
+DCVO
+DDoS
+DDR
+DDT
+de Part of Latin names
+de-anglicise/SGDN
+de-anglicize/SGDN
+de-brief
+de-Christianise/SGDN
+de-Christianize/SGDN
+de-emphasise/SGD
+de-emphasize/SGD
+de-ice/DRGS
+de/G
+De/M
+deacon/SdM
+deaconess/SM
+deaconship/MS
+deactivator/MS
+dead-end/SM
+dead-heat
+dead/PTY
+deadbeat/SM
+deadbolt/SM
+deaden/Sdkr
+deadening/M
+deadeye/SM
+deadhead/SM
+deadlight/SM
+deadline/MGSD
+deadlock/MGSD
+deadly/PT
+deadpan/SGD
+deadstock/M
+deadwood/SM
+Deaf/M
+deaf/PYT
+deafen/dkS
+deafening/M
+Deakins/M
+deal-breaker/SM
+deal/JRGSM
+Deal/M
+dealership/MS
+dealfish/SM
+dealign/DGL
+dealmaker/SM
+dealmaking/M Noun: uncountable
+dealt
+deaminase/SM
+deaminate/SGDN
+Dean/M
+dean/MGD
+Deane/M
+deanery/SM
+Deanna/M
+Deanshanger/M
+deanship/SM
+Deanwell/M
+dear/TPYZSM
+Dearborn/M
+Deardorff/M
+Dearham/M
+dearie/SM
+Dearing/M
+dearth/SM
+deary/SM
+deassign/G
+Deasy/M
+death-dealing
+death-knell
+death-obsessed
+death-or-glory
+death-rattle
+death-roll
+death-trap/MS
+death-warrant/MS
+death-watch/MS
+death-wish/SM
+death/pYMS
+deathbed/MS
+deathblow/MS
+deathless/YP
+deathlike
+deathly/T
+deathtrap/SM
+deattribute/D
+deattribution/SM
+deb/SM
+Debach/M
+débâcle/SM
+debacle/SM
+debag/SGDJ
+debar/L
+debark/SnGD
+DeBary/M
+debase/DLRS
+debatable/Z
+debate/SGDRM
+debauch/yGhSiDR
+debauched/P
+debauchee/MS
+debauchery/SM
+Debbie/M
+Debbonaire/M
+Debby/M
+Debden/M
+debeak/SGDJ
+Debenham/MS
+debenture/SM
+Debian/M
+debilitate/SGnD
+debility/SM
+debit/d
+debonair/PY
+debone/SGD
+Debono/M
+Deborah/M
+debouch/DGS
+debouchure/SM
+debounce/SGD
+Debra/M
+Debrecen/M
+Debrett/M
+debride/D
+debridement/SM
+debrief/JRSGD
+debris/M
+debt/MS
+debtor/SM
+debus/GDJ
+debusses
+Debussy/M
+debut/Sd
+début/SM
+debutant/SM
+débutante/MS
+debutante/SM
+Dec
+decade/SMO
+decadence/Z
+decadency/SM
+decadent/SMY
+decaf/SM
+decaff/SM
+decaffeinate/DGS
+decagon/MSO
+decal/SM
+decalcify/SGDNr
+decalcomania/SM
+decalitre/SM
+Decalogue/M
+Decameron/M
+decametre/SW
+decamp/DGL
+decanal/M Noun: uncountable
+decanoic Adjective
+decapitate/DSG
+decapitator/MS
+decapod/SM
+decapsulate/SGDN
+decarbonise/SGDNR
+decarbonize/SGDRN
+decarboxylase/SM
+decarboxylate/SGDN
+DeCaro/M
+decasecond/SM
+decastyle/SM
+decasyllabic Adjective
+decasyllable/MS
+decathlete/SM
+decathlon/SM
+Decatur/M
+decay/GDR
+Decca/M
+Deccan
+decease/KSGD
+decease/M
+decedent/S
+deceit/S6jM
+deceitful/P
+deceivable
+deceive/UGDS
+deceiver/MS
+deceiving/Y
+decelerate/nDSG
+decelerator/SM
+decelerometer/SM
+December/SM
+decenary/SM
+decency/SIM
+decennary/SM
+decennia/M
+decennial/YSM
+decennium/SM
+decenoic
+decent/YI
+deception/MS
+deceptive/PY
+decerebrate
+decertify/Gn
+Dechmont/M
+decibel/MS
+decic
+decide/DBGVivhNxXuS
+decidua/SMO
+deciduae/M
+decidualisation/M
+decidualization/M
+deciduous/YP
+decigram/SM
+decigramme/SM
+decile/MS
+decilitre/MS
+decimal/Q8Y-qSM
+decimate/DSnG
+decimetre/MSW
+decinary
+decipher/dL7rS
+decipherability/SM
+decipherable/IU
+decisecond/SM
+decision-making/M Noun: uncountable
+decision/DG
+decision/IMS
+decisive/PIY
+decisiveness/IS
+Decius/M
+deck/DRGSJM
+deckchair/SM
+Deckelmann/M
+deckhand/SM
+deckhouse/SM
+decking/SM
+deckle/MS
+decklid/SM
+declaim/y
+declamation/SM
+declamatorily
+Declan/M
+declarable
+declarant/SM
+declaration/AM
+declarative/SM
+declarator/SM
+declare/vnRDVGyS
+declared/KUA
+declared/Y
+declass/D
+déclassé
+déclassée
+declassify/DGn
+declaw/SGD
+declension/SM
+declinable Adjective
+declinational Adjective
+declinatory Adjective
+decline/3RGnSD
+declinism/M Noun: uncountable
+declivitous Adjective
+declivity/SM
+decloak/SGD
+declutch/SGD
+declutter/Sd
+DECNET
+Deco/M
+deco/SM
+decoct/GD
+decoction/MS
+decocture/SM
+decode/SMB
+decoherence/SM
+decoherent Adjective
+decoke/SGD
+decollate/nSGDJ
+décolletage/SM
+décolleté/SM
+décolletée/SM
+decolletes
+decolourisation/SM
+decolourise/SGDJ
+decolourization/S
+decolourize/SGDJ
+decompaction/SM
+decompensated
+decompensation
+decompilations
+decomposability/M
+decompose/B
+decompress/NXG
+decompressor/SM
+deconflict/SGD
+deconfliction/M Noun: uncountable
+decongest/SGD
+decongestant/SM
+decongestion/SM
+deconsecrate/DGSn
+deconstruct/SGDV
+deconstructionism/SM
+deconstructionist/SM
+decontaminant/SM
+decontaminate/SG
+decontextualise/SGDN
+decontextualize/SGDN
+decontrol/SGD
+décor/SM
+decor/SM
+decorate/VvGnDSu
+decorated/AcU
+decorates/cA
+decorating/Ac
+decoration/ASM
+decorative/P
+decorator/SM
+decorous/IPY
+decorticate/DGSn
+decorum/SM
+decoupage/DGSM
+découpage/SM
+decoy/GMSD
+decrease/k
+decree/SMdG
+decrement/SDGMO
+decrepit
+decrepitate/nSGDJ
+decrepitude/SM
+decrescendo/SM
+decrescent
+decretal/SM
+Decretum/M
+decry/J
+decrypt/SGD
+decryption/M Noun: usually uncountable
+decubitus/M
+Decuman/M
+decumbent
+decurrent
+decussate/SGDN
+dedans
+Deddington/M
+Dededo/M
+Dedekind/M
+dedendum/SM
+Dedham/M
+dedicate/ASnDG
+dedicate/h
+dedicatee/SM
+dedicative
+dedicator/MSZ
+dedifferentiate/SGD
+deduce/DGnbVvSR
+deduct/b
+deductibility/SM
+deductible/SM
+deductivism/M Noun: uncountable
+deductivist/SM
+deduplicate/SGDN
+dee/M
+deed/SGDM
+deejay/GDSM
+deem/SDAG
+Deems/M
+deemster/SM
+Deene/M
+Deenethorpe/M
+deep-discount
+deep-freeze/G
+deep-fried
+deep-frozen
+deep-laid
+deep-rooted
+deep-sea
+deep-seated
+deep/SYPT~
+Deepdale/M
+deepen/dS
+Deepika/M
+Deeping/M
+deer/M
+Deer/M
+Deere/M
+Deerfield/M
+deergrass/SM
+deerhound/SM
+Deerhurst/M
+deerlike
+Deerness/M
+deerskin/SM
+deerstalker/SM
+deerstalking/M Noun: uncountable
+Deerwester/M
+Dees/M
+Deeside/M
+def
+deface/RL
+defalcate/GDSn
+defalcator/SM
+defame/yRnSGD
+defat/SDG
+default/RM
+defaunation/SM
+defcon/M Activation and readiness level of the United States armed forces
+DEFCON/M Activation and readiness level of the United States armed forces
+defeasance/SM
+defeasibility/SM
+defeasible/Z
+defeat/RG3DM
+defeated/UY
+defeatism/SM
+defecate/SGnD
+defecator/MS
+defect/GuSDMVv
+defection/MS
+defective/PSM
+defector/SM
+defeminise/SDG
+defeminize/SDG
+defence/Sp
+defenceless/YP
+defenceman/M
+defencemen/M
+defend/VuvD
+defendant/MS
+defenestrate/DSG
+defensibility/M Noun: usually uncountable
+defensible/IY
+defensible/Y
+defensive
+defer/RGSD
+deference/SM
+deferent/SM
+deferentia
+deferential/Y
+deferrable
+deferral/SM
+defervesce/D
+defervescence/SM
+Defford/M
+Defiance/M
+defiance/SM
+defiant/Y
+defibrillate/ND
+defibrillator/SM
+deficiency/MS
+deficient/Y
+deficit/SM
+defilade/DGMS
+defile/DL
+definable/UI
+definable/Y
+define/KSDAG
+definer/MS
+definienda/M
+definiendum/M
+definiens/M
+definientia/M
+definite/YxVuv
+definiteness/IS
+definition/KAMS
+definitive/SP
+deflagrate/DGS
+deflagration/SM
+deflagrator/MS
+deflatable
+deflate/GnDSr
+deflationary
+deflationist/SM
+deflator/SM
+deflect/GSVD
+deflection/SM
+deflector/MS
+deflesh/D
+deflexed
+deflexion/M
+deflocculate/DN
+defloration/SM
+Defoe/M
+defog/R
+defoliant/MS
+defoliator/SM
+DeForest/M
+deforest/nG
+deform/xnR7G
+deformity/SM
+DEFRA Department for Environment, Food, and Rural Affairs
+defrag/SGD
+defragment/GNR
+defraud/RGD
+defrayable
+defrayal/MS
+defriend/SGD
+defrost/R
+deft/PTY
+defunct
+defuse
+defy/RSkDG
+Defynnog/M
+deg/SM
+degas/JDG
+degauss/SGD
+Dégelis/M
+degeneracy/MS
+degenerate/YP
+Degenhardt/M
+degradability/SM
+degradable
+degradative
+degrade/hki
+degraded/P
+degranulate/SGDN
+degree/SM
+degreed
+degressive
+Dehaene/M
+dehisce/SGD
+dehiscence/SM
+dehiscent
+dehorn/SGDJ
+Dehradun/M
+dehusk/SGD
+dehydrate/SGD
+dehydrator/MS
+dehydroascorbic
+dehydrocholesterol/SM
+dehydrogenase/SM
+dehydrogenate/SGDn
+Dei
+deicide/SMO
+deictic/SM
+deify/DGnS
+Deighton/M
+deign/DGS
+Deimos/M
+deindividuation/M Noun: uncountable
+deindustrialise/SGDN
+deindustrialize/SGDN
+Deiniol/M
+deinocheirid/SM
+deinonychosaur/SM
+Deinotherium
+deinstal/S
+deinstall/NXRSGD
+deinstitutionalise/SGDN
+deinstitutionalize/SGDN
+Deion/M
+Deiphobus/M
+deipnosophist/SM
+Deirdre/M
+deist/WMS
+deistical/Y
+Deitch/M
+deity/MS
+deixis
+déjà
+deja
+deject/GiDhS
+dejected/P
+dejection/SM
+DeKalb/M
+DeKastere/M
+deke/SGDM
+Dekker/M
+dekko/SM
+del
+Del/M
+Delamere/M
+delaminate/SGDN
+DeLand/M
+Delaney/M
+Delano/M
+delate/SGDn
+delator/SM
+Delaware/M
+delay/MDk
+Delbru/M
+dele/DMS
+delectable/PSY
+delectation/SM
+delegable
+delegacy/SM
+delegitimise/SGDN
+delegitimize/SGDN
+deleing/S
+delens
+delentia
+Delest/M
+deletable
+delete/DnSGr
+deleteable
+deleterious/PY
+deleverage/SDG
+delexical
+Delft/M
+delft/SM
+delftware/SM
+Delgado/M
+Delhi/M
+deli/SM
+Delia/M
+Delian/SM
+deliberate/nSGDPuvYV
+deliberative/P
+Delibes/M
+delicacy/IMS
+delicate/IPY
+delicate/S
+delicatessen/MS
+Delichon Taxonomic genus
+delicious/PY
+delict/SM
+delicti corpus delicti
+delicto
+delight/6jhGiM
+delighted/P
+delightful/P
+delightsome
+Delilah/MS
+delimit/nd
+delimitate/DGS
+delineate/SGDnV
+delineator/MS
+delink/SGD
+delinquency/MS
+delinquent/YSM
+deliquesce/GDS
+deliquescence/SM
+deliquescent
+deliration/SM
+deliriant/SM
+delirious/PY
+delirium/MS
+Delium/M
+Delius/M
+deliver/AdZS
+deliverability/M Noun: uncountable
+deliverable/SM
+deliverance/SM
+deliverer/SM
+delivery/m
+dell/SM
+Della/M
+Delmarva/M
+delocalise/SGD
+delocalize/SGD
+DeLonge/M
+Delors/M
+Delos/M
+Delphi/MW
+Delphian/SM
+Delphine/M
+Delphinium Taxonomic genus
+delphinium/SM
+Delphinus/M
+Delpierre/M
+Delpike/M
+Delport/M
+Delran/M
+Delray/M
+Delrina/M
+Delson/M
+Delta/M
+delta/SM
+Deltacoronavirus Taxonomic genus
+deltacoronavirus/SM
+deltaic
+DeltaRail/M
+Delting/M
+deltiologist/S
+deltiology/M
+deltoid/SM
+Deltona/M
+deltopectoral
+delude/vkxSGVDuR
+Deluge
+deluge/GSD
+delusion/SM
+delusive/P
+delusory
+deluxe
+delve/RSDG
+demagnetiser/SM
+demagnetizer/SM
+demagogue/DySMG
+demagoguery/SM
+demagogy/SMW
+demand/SGDkR
+demangle/SGDR
+demantoid/M
+Demarais/M
+demarcate/SGnD
+DeMars/M
+Demas/M
+demassify/SGDN
+dematerialise/SGDN
+dematerialize/SGDN
+Dembleby/M
+demean/D
+demeanour/SM
+dement/SM
+dementation/M Noun: uncountable
+demented/PY
+dementia/SM
+Demerara/M
+demerara/M Noun: uncountable
+demerge/SDGR
+demeritorious
+Demerol/M
+demersal/SM
+demesne/MS
+Demeter/M
+Demetrius/M
+demi-glace/SM
+demi-mondaine/SM
+demi-monde/SM
+demi-sec/SM
+demic
+demigod/SM
+demigoddess/MS
+demijohn/SM
+demilitarise/nSGD
+demilitarize/nSGD
+demilune/SM
+demine/SGDR
+demineralise/DGS
+demineralize/DGS
+Deming/M
+demise/DMGS
+demisemiquaver/SM
+demisexual/SM
+demisexuality/SM
+demist/DGS
+demit/DNSG
+demitasse/MS
+demiurge/SMWw
+demo/SGDM
+democracy/SM
+democrat/3qQ81-WSM
+democratic/UY
+democratism/M Noun: uncountable
+démodé
+demodectic
+demoded
+Demodex Taxonomic genus
+demographer/SM
+demographic/SM
+demography/1WwSM
+demoi/M
+demoiselle/S
+demolish/DSGR
+demolition/MS
+demon/1SWM
+demoness
+demoniac/SM
+demoniacal/Y
+demonise/SDGN
+demonism/M
+demonize/SDGN
+demonolatry/M Noun: usually uncountable
+demonology/MSw3
+demonstrable/IY
+demonstrable/Y
+demonstrableness/M Noun: uncountable
+demonstrate/uGnVSDv
+demonstrative/S
+demonstrative/UY
+demonstrativeness/MS
+demonstrator/SMZ
+demonstratorship
+demonym/WSM
+demophile/SM
+demophilism/M
+demoralise/n
+demoralize/R
+DeMorgan/M
+demoscene/SM
+demosponge/SM
+Demosthenes/M
+Demosthenic
+demote/DGW
+demotic/SM3
+demotion
+demotivate/GN
+demount/7
+Dempsey/M
+Dempster/M
+demulcent/SM
+demur/GDSR
+demure/YP
+demurrable
+demurral/MS
+demyelinating
+demythologize/nDGS
+den/ZDSGM
+Denaby/M
+denarii/M
+denarius/M
+denary/SM
+denaturalise/SGDN
+denaturalize/SGDN
+denaturant/SM
+denature/SGDN
+denazification
+Denbeath/M
+Denbigh/M
+Denbighshire/M
+Denbury/M
+Denby/M
+Denchworth/M
+dendrite/SM
+dendritic/Y
+dendrochronologist/MS
+dendrochronology/wM
+dendrogram/SM
+dendrology/3wM
+Dendron/M
+Deneb/M
+Deneio/M
+Denford/M
+Deng/M
+Dengie/M
+dengue/SM
+Denham/M
+Denholm/M
+Denholme/M
+deniability/SM
+deniable/UY
+denial/MS3
+denialism/M Noun: usually uncountable
+denigrate/nVGSD
+denigrator/SMZ
+denim/MS
+Denis/M
+Denise/M
+Denison/M
+denitrify/SGDN
+denizen/dSM
+denizenship/MS
+Denmark/M
+Denmead/M
+Denn/M
+Dennen/M
+Dennett/M
+Dennington/M
+Dennis/M
+Dennistoun/M
+Denny/M
+denominate/x
+denominationalism/M
+denotative
+denoter/SM
+dénouement/SM
+denouement/SM
+denounce/DLSGR
+Denpasar/M
+dens/T
+dense/FY
+denseness/SM
+denser/F
+densitometer/MWS
+densitometry/M
+density/SM
+Denston/M
+Denstone/M
+Dent/M
+dent/M
+dent/SIGD
+dental/SY
+dentalize/DGS
+dentary/SM
+dentate
+denticity/MS
+denticle/SM
+denticulate/Dn
+dentifrice/MS
+dentil/SM
+dentine/SM
+dentist/MSy
+dentistry/MS
+dentition/MS
+Denton/M
+denture/SM
+denuclearise/SDG
+denuclearize/SGD
+denude/DRnGS
+denunciate/DSGnV
+denunciator/MS
+denunciatory Adjective
+Denver/M
+Denville/M
+deny/DR7kGS
+Denys/M
+Denzel/M
+Denzin/M
+Denzler/M
+Deo
+deodorant/MS
+deodorise/nGRSD
+deodorize/nGRSD
+deontology/3wM
+Deopham/M
+deoxygenate/SGDN
+deoxynivalenol/SM
+deoxyribonuclease/SM
+deoxyribonucleic
+depaint/SGD
+depart/LG
+department/oO
+departmentalise/SGDn
+departmentalism/M Noun: uncountable
+departmentalize/SGDn
+departure/SM
+depasturage
+depasture/DGS
+dépaysé
+dépaysée
+Depden/M
+depend/lGDSBk
+dependability/MS
+dependable/P
+dependence/ISM
+dependency/MS
+dependent/cI
+dependent/SY
+Depew/M
+dephlogisticated
+depict/GSDR
+depiction/SM
+depigment/SGDN
+depilate/DGS
+depilation/S
+depilator/SM
+depilatory/SM
+deplete/DGSnV
+deplorable/P
+deplore/klDGSR
+deploy/LD7GS
+depolarize/R
+depoliticisation
+depoliticization
+depollute/SGD
+deponent/SM
+deport/nLG
+deportee/SM
+deposit/AdS
+deposit/MS
+depositary/MS
+depositor/SM
+depository/SM
+depot/SM
+deprave/rGiShDNk
+depraved/P
+depravity/MS
+deprecate/DSnGky
+depreciable
+depreciate/DnvGkSV
+depreciatory
+depredator/SMZ
+depress/bvkV
+depressant/SM
+depression/SM
+depressive/SM
+depressor/MS
+depressurise/SGDN
+depressurize/SGDN
+deprive/SGnD
+deprotonate/SGD
+deprotonation/SM
+Dept.
+Deptford/M
+depth/SM
+depthless/Y
+depurate/DN
+depurative/SM
+depurator/SM
+depute/SnQ8GDZ
+deputy/SM
+dequeueing
+der
+deracinate/Dn
+derail/L
+dérailleur/MS
+derailleur/SM
+derange/L
+Derby/M
+derby/MS
+Derbyshire/M
+dereference/R
+deregister/Sd
+Dereham/M
+Derek/M
+derelict/SM
+dereliction/MS
+derepression
+derestrict/SGD
+derestriction
+Derham/M
+DeRidder/M
+deride/vkVuD
+derision/SM
+derisive/P
+derisory
+derivable
+derivate/SM
+derivational
+derivative/MPS
+derive/VuvnSGD
+dermabrasion/SM
+dermal
+Dermaptera
+dermatitides
+dermatitis/MS
+dermatoglyphics
+dermatology/3SMw
+dermatome/SM
+dermatomyositis
+dermatopathology/M Noun: uncountable
+dermatophyte/SMW
+dermatophytoses
+dermatophytosis/M
+dermatoses
+dermatosis/M
+dermestid/SM
+dermis/SM
+Dermot/M
+derogate/VSGnyD
+derogative
+derogatory/Y
+Derrel/M
+derrick/SDGM
+Derrida/M
+derrière/SM
+derring-do
+derringer/SM
+Derris
+Derry/M
+Derrycrin/M
+Derrygonnelly/M
+Derryhale/M
+Derrykeighan/M
+Derrylin/M
+Derrymacash/M
+Derrymore/M
+Derrynaflaw/M
+Derrynoose/M
+Derrytrasna/M
+Derryvore/M
+Dersingham/M
+Dervaig/M
+Derveni/M
+dervish/SM
+Dervock/M
+Derwen/M
+Derwent/M
+DES/M
+Des/M Short form of the male given name Desmond
+Desai/M
+desalinate/SnGD
+Desbiens/M
+Desborough/M
+descale/GDSR
+descant/SM
+Descartes/M
+descend/FSGD
+descendant/SM
+descendent/OSM
+descendentalism/M Noun: uncountable
+descender/SM
+descendeur/SM
+descendibility/M Noun: uncountable
+descendible
+descension/OSM
+Deschanel/M
+Deschutes/M
+describable/I
+describe/VvuR
+description/SM
+descriptive/SP
+descriptivism/M Noun: usually uncountable
+descriptivist/SMW
+descriptor/SMZ
+descry/DGS
+Desdemona/M
+desecrate/SDnGR
+desecrator/SM
+deseed/SGDR
+desegregation's
+deselection/SM
+desensitise/SGDnr
+desensitize/SGDnr
+deserialise/SGDn
+Desert/M
+desert/RGMDS
+desertification/M Noun: uncountable
+desertion/MS
+Desertmartin/M
+desertscape/SM
+deserve/Gkih
+deserved/UY
+deservedness/M
+deservingness
+desex/SGD
+desexualise/DGS
+desexualize/DGS
+Desford/M
+Desha/M
+déshabillé/SM
+Deshaun/M
+desi/SM
+desiccant/SM
+desiccate/VDGSn
+desiccator/SM
+desiderata/M
+desiderate/SGDn
+desiderative/SM
+desideratum/M
+desideria/M
+Desidério/M
+desiderium/M
+design/DShJ7VxnM
+designate/DKGS
+designator/SM
+Desilu/M
+desipramine/M Noun: usually uncountable
+desirabilia
+desirability/SM
+desirability/UM
+desirable/PSMZ
+desire/BRlD
+Desiree/M
+desirous/PY
+desist/DGS
+desk-bound
+desk/MS
+Deskford/M
+deskill/SGD
+desktop/SM
+desman/SM
+Desmond/M
+desmosome/SMO
+Desna/M
+desogestrel/M Noun: uncountable
+desolate/YPkGnDSR
+desorb/SGD
+desorption/M Noun: usually uncountable
+DeSoto/M
+despair/SkDGR
+despatch/GDS
+despeckle/SGD
+desperado/M
+desperadoes
+desperate/YPn
+despicable/Y
+Despina/M
+despise/SRGD
+despite
+despoil/L
+despond/M Noun: uncountable
+despondence/SMZ
+despondency/SM
+despondent/Y
+despot/1WSM
+despotism/MS
+dessert/SMZ
+dessicate/ND
+destain/SGD
+destigmatization/M Noun: usually uncountable
+Destin/M
+destine/nKD
+destiny/SM
+destitute/P
+destitution/SM
+destock/SGD
+destroy/DR7GS
+destruct/bvVuGDS
+destructibility/SMI
+destructible/I
+destruction/MS
+destructive/P
+destructor/MS
+desuetude/MS
+desultory/YP
+desuperheater/SM
+desvenlafaxine/M Noun: uncountable
+desynchronize/SGD
+detach/GRSiLhD7
+detachability/M Noun: usually uncountable
+detain/DGSLR
+detainee/SM
+detect/DGSBVl
+detection/MS
+detective/MS
+detector/SM3
+detemir/M Noun: uncountable
+detent/MS
+detente/M
+détente/SM
+detention/MS
+detenu/MS
+deter/SGD
+deterers
+detergent/SM
+deteriorate/DSnGV
+determinability/SM
+determinable/IP
+determinacy/I
+determinant/MS
+determinate/IPYN
+determination/IMK
+determinative/P
+determine/uDRBvGVhiS
+determined/P
+determiner/KMS
+determines/KA
+determining/KA
+determinism/SM
+determinist/SMW1
+deterrence/SM
+deterrent/YSM
+detest/ln7
+detestable/P
+Dethick/M
+dethrone/LG
+detinue/M
+Detling/M
+detonable
+detonate/DVGSn
+detonator/SM
+detox/SGD
+detoxicate/DGSn
+detoxify/GnDS
+DETR/M
+detract/SDGVv
+detransition/SGD
+detribalisation/M Noun: uncountable
+detribalise/DSG
+detribalization/M Noun: uncountable
+detribalize/DSG
+detriment/SoMO
+detrital
+detritivore/SM
+detritivorous
+detritus/M
+Detroit/M
+Detrol/M
+Dettingen/M
+Dettmeyer/M
+detumescence/M
+detunable
+Deucalion/M
+deuce/DGhMS
+Deum/MS
+deus
+deuteragonist/SM
+deuteranopia/SM
+deuteride/SM
+deuterium/M
+Deutero-Isaiah/M
+deuterocanonical
+deuteron/MS
+Deuteronomy/MW3
+deuterostome/SM
+deutocerebra/M
+deutocerebrum/M
+Deutsch/M
+Deutschmark/MS
+Deutzia
+deutzia/SM
+deux
+Deux-Montagnes/M
+Deuxhill/M
+dev/SM
+devadasi/SM
+Devadatta/M
+devalorise/SGDN
+devalorize/SGDN
+Devan/M
+Devanagari/M
+devastate/DSnkVG
+devastator/SM
+Devauden/M
+DeVault/M
+devein/SGD
+develop/cdAS
+developable
+developed/Uf
+developer/SAM
+development/fMS
+developmental/Y
+deverbal/SM
+Devereaux/M
+Devereux/M
+Deverill/M
+Devgn/M
+Devi/M
+deviance/MSZ
+deviancy/SM
+deviant/MYS
+deviate/DSGn
+deviational
+deviationism/M Noun: usually uncountable
+deviationist/MS
+deviator/MS
+device/SM
+devil/DLyMGS
+Devil/M
+devildom/M
+devilfish/SM
+devilish/PY
+devilism/SM
+devilry/SM
+Devine/M
+Deviock/M
+devious/YP
+Devipuram/M
+devisable
+devise/DJRSG
+devisee/SM
+devisor/SM
+devitalise/SGDN
+devitalize/SGDN
+Devizes/M
+devkit/SM
+Devlin/M
+devoid
+devoir/MS
+devolution/SM
+devolutionary Adjective
+devolutionist/MS
+devolve/SGD
+Devon/M
+Devonian/SM
+Devonport/M
+Devonshire/M
+Devorah/M
+devote/ixh
+devotee/SM
+devotement/M
+devotion/SM
+devotional/SM
+devour/GSRDk
+devout/TYP
+dew/ZGSM
+dewan/SM
+dewar/SM
+dewater/Sd
+dewberry/SM
+Dewchurch/M
+dewclaw/SM
+dewdrop/SM
+Dewey/M
+Dewhirst/M
+Dewhurst/M
+DeWitt/M
+Dewitt/M
+dewlap/SM
+Dewlish/M
+Dewsall/M
+Dewsbury/M
+dewy-eyed
+dewy/PTY
+dexamethasone/SM
+Dexedrine/M
+dexes/I
+Dexilant/M
+dexmethylphenidate/M Noun: uncountable
+dexter/SM
+dexterity/MS
+dexterous/PY
+Dexthorpe/M
+dextral/Y
+dextrality/M Noun: uncountable
+dextran/SM
+dextrin/SM
+dextrorotation/SM
+dextrorotatory Adjective
+dextrose/SM
+dextrous/YP
+Deyo/M
+DFA/SM
+DfES
+Dhabi/M
+Dhaka/M
+dhamma/SM
+Dharamsala/M
+dharma/SM
+dharmic Adjective
+Dhaulagiri/M
+Dhekelia/M
+Dhiri/M
+DHL/M
+dhobi/MS
+Dholuo/M
+Dhoni/M
+dhoti/MS
+dhow/SM
+DHSS/M Initialism of Department of Health and Social Security
+Dhu/M
+dhurrie/SM
+diabase/SM
+diabasic Adjective
+diabesity/M Noun: uncountable
+diabetes/M Noun: uncountable
+diabetic/SM
+diablerie/SM
+diabolic/Y
+diabolical/P
+diabolise/SGDJ
+diabolism/SM
+diabolist/SM
+diabolize/SGDJ
+diabolo/MS
+diacetylene/SM
+diachroneity/M Noun: uncountable
+diachronic/YP
+diachronism/M
+diachronistic Adjective
+diachronous
+diachrony/SM
+diaconal
+diaconate/SM
+Diaconis/M
+diacritic/MSY
+diacritical/SM
+diadelphous
+diadem/SMd
+diadromous
+diaereses
+diaeresis/M
+diagnometer/SM
+diagnosable
+diagnose/DGaS
+diagnosis/M
+diagnostic/SYM
+diagnostician/MS
+diagonal/tQ+8SY
+diagonalization
+diagram/RDGMS
+diagrammable
+diagrammatic/Y
+diagrammaticality
+diagrid/MS
+diakineses
+diakinesis/M
+dial/RSMGD
+dialect/wWSo1MO
+dialectic/MS
+dialectician/MS
+dialectology/w3M
+dialogic/O
+dialogist/SM
+dialogue/SGDRM
+dialyse/DGSW
+dialysis/M
+diam/SM
+diamagnetic/SM
+diamagnetism/SM
+diamanté/SM
+Diamantino/M
+diameter/SMw1W
+diamine/SM
+Diamond/M
+diamond/MSDG
+diamondback/SM
+diamorphine/M Noun: uncountable
+Dian/M
+Diana/M
+Diane/M
+dianisidine/M Noun: uncountable
+Dianne/M
+Dianthus
+diapason/SM
+diapause/SGD
+diapedesis/M
+diaper/SM
+diaphanous/PY
+diaphone/SM
+diaphoresis/M
+diaphoretic/SM
+diaphragm/MS
+diaphragmatic Adjective
+diaphyses
+diaphysis/M
+diapir/SMW
+diapirism/SM
+diapsid/SM
+diarize/SGDJ
+Diarmaid/M
+Diarmid/M
+diarrhoea/SMWO
+diary/3MS
+Dias/M
+diaspora/WM
+diaspore/SM
+diastase/MS
+diastasic
+diastasis/M
+diastatic Adjective
+diastole/WSM
+Diatessaron/M
+diathermy/MS
+diatheses
+diathesis/M
+diatom/MS
+diatomaceous
+diatomic/SM
+diatomite/M
+diatonic Adjective
+diatreme/SM
+diatribe/MS
+Díaz/M
+Diaz/M
+diazepam/SM
+diazo/M
+dibaryon/SM
+dibasic Adjective
+dibber/MS
+dibble/MGDS
+Dibden/M
+Dibdin/M
+dibenzodioxin/SM
+Dibley/M
+diborane/M Noun: uncountable
+dibs/M
+DiCaprio/M
+dicarbonyl/SMW
+dicarboxyl/MW
+dice/DnSGR
+dicentric/SM
+dicey Adjective
+dichasia/M
+dichasium/M
+dichlamydeous
+dichlamydious
+dichloride/SM
+dichlorodifluoromethane/SM
+dichloromethane/SM
+dichlorvos/M
+dichotomise/SGDn
+dichotomize/SGDn
+dichotomous/YP
+dichotomy/MSW
+dichroic/SM
+dichroism/SM
+dichromatic Adjective
+dichromatism/SM
+dicier
+diciest
+dicing/SM
+dick/DGMS
+Dickens/M
+dickens/M
+Dickensian/SM
+Dickenson/M
+Dickerson/M
+dickey/SM
+dickhead/SM
+Dickinson/M
+Dickleburgh/M
+Dicks/M
+Dickson/M
+Dicky/M
+dicky/STM
+diclofenac/M Noun: uncountable
+dicot/SM
+dicotyledon/SM
+dicotyledonous
+dicrotic Adjective
+dicta/M
+Dictamnus
+Dictaphone/MS
+dictate/DGSn
+dictator/MoS
+dictatorial/P
+dictatorship/MS
+diction/KSM
+dictionary/MS
+dictu
+dictum/SM
+dicyclomine/M Noun: uncountable
+did/AecU
+didache/MS
+didactic/SY
+didacticism/SM
+Didbrook/M
+Didcot/M
+Diddington/M
+diddle/RDSG
+Diddlebury/M
+diddly/SM
+Didem/M
+didentate
+didentative
+Diderot/M
+didgeridoo/MS
+didicoi/MS
+Didling/M
+Didlington/M
+Didmarton/M
+didn't
+Dido/M
+Didsbury/M
+didst
+didymium/M Noun: uncountable
+die-cast
+die-stamping
+die/SDGM
+dieback/SM
+Diederich/M
+dieffenbachia/SM
+diegeses
+diegesis/M
+diegetic Adjective
+Diego/M
+diehard/SM
+dieldrin/SM
+dielectric/SM
+diem Latin: carpe diem
+Diemen/M
+diencephala/WM
+diencephalon/SM
+diene/MS
+Dieppe/M
+diesel-electric/SM
+diesel-hydraulic/SM
+diesel/SM
+dieselize/DGS
+dieselpunk/M Noun: uncountable
+diestock/SM
+diet/MGSRD
+dietary/SM
+dietetic/SY
+diethyl/SM
+diethylamide/SM
+diethylstilboestrol/M Noun: uncountable
+dietician/MS
+dietitian/SM
+Dietrich/M
+Dietz/M
+diff/DGSM
+diffeomorphic/Y
+diffeomorphism/SM
+differ/Sd
+difference/DG
+difference/IMS
+different/IY
+differentia/M
+differentiae/M
+differential/MSY
+differentiate/SGnBD
+differentiator/MS
+differentness/SM
+differer/S
+difficult/YZ
+difficulty/MS
+diffidence/MS
+diffident/Y
+Diffie-Hellman/M
+Diffie/M
+diffract/DGS
+diffraction/SM
+diffractive/Y
+diffractometer/MS
+diffuse/PSvYRDGubxV
+diffusion/SM
+diffusionist/MS
+diffusive/P
+diffusivity/MS
+dig/RSJG
+digamma/MS
+digastric
+Digby/M
+digerati/M
+digest/SKGD
+digester/SM
+digestibility/SM
+digestible/I
+digestif/SM
+digestion/MS
+digestive/YSP
+Diggory/M
+digibox
+Digibox/SM
+digicam/SM
+Digimon/M
+digipak/SM
+digit/q-s9SQ8M
+digital/Y
+digitalin/M
+digitalis/SM
+digitalise/SGDnR
+digitalize/SGDnR
+digitate/YN
+digitigrade/MS
+dignify/DSG
+dignitary/SM
+Dignitas/M
+dignity/ISM
+digoxin/SM
+digram/SM
+digraph/SM
+digress/uvDSGVR
+digression/SM
+digressive/P
+Digswell/M
+Digweed/M
+dihedral/SM
+Dihewyd/M
+dihydrate/SM
+dihydric
+dihydrochloride/SM
+Dijkstra/M
+Dijon/M
+dike/SMGDR
+dikkop/MS
+diktat/SM
+dilapidate/DGSn
+dilatable
+dilatancy/SM
+dilatation/SM
+dilate/hiVGnDSy
+dilator/MS
+dilatory/PY
+Dilbert/M
+dildo/SM
+Dilek/M
+dilemma/SM
+dilettante/MS
+dilettanti/M
+dilettantish
+dilettantism/MS
+Dilham/M
+Dilhorne/M
+diligence/SM
+diligent/YP
+dilithium/M Noun: uncountable
+dill/YM
+Dillard/M
+Dillashaw/M
+Dillinger/M
+Dillingham/M
+Dillon/M
+dilly-dally/GDS
+dillydally/SGD
+dilogarithm/SM
+dilophosaurus
+diltiazem/M Noun: uncountable
+Dilton/M
+diluent/SM
+dilutant/SM
+dilute/PYVGDSR
+dilution/SM
+diluvial
+Dilworth/M
+Dilwyn/M
+dim/rSRPYDTG
+DiMaggio/M
+Dimas/M
+dime/MS
+dimension/DGpMoSO
+dimensionality/SM
+dimercaprol/M Noun: uncountable
+dimeric
+dimerisation/SM
+dimerise/SGD
+dimerize/SGD
+dimerous
+dimesylate/SM
+dimeter/MS
+dimethyl/M Noun: uncountable
+dimethylglyoxime/SM
+dimidiate/SGD
+diminish/SDG7
+diminuendo/MS
+diminution/SM
+diminutive/PSMY
+dimissory Adjective
+dimity/MS
+dimmable
+dimmish
+dimorphic
+dimorphism/SM
+dimorphous
+dimple/YMGDS
+dimply/T
+dimwit/DMS
+Din/M
+din/rDRSMdG
+Dinah/M
+dinar/SM
+Dinas/M
+Dinckley/M
+Dinder/M
+dine/S
+Dinedor/M
+dinette/MS
+Ding
+ding-dong
+ding/zDGZ
+dingbat/MS
+Dingestow/M
+dinghy/MS
+dingle/SM
+Dingley/M
+Dingman/M
+dingo/MS
+dingoes
+Dings/M
+Dingwall/M
+dingy/TSP
+Dinham/M
+Dinis/M
+dinitrogen/M Noun: uncountable
+dinkum
+dinky/ST
+Dinmont/MS
+Dinmore/M
+dinnertime/SM
+dinnerware/SM
+Dinnet/M
+Dinnington/M
+dinoflagellate/SM
+Dinorwic/M
+dinosaur/SM
+Dinosauria Taxonomic superorder
+Dinsdale/M
+dint/MGSD
+Dinton-with-Ford/M
+Dinton/M
+Dinuba/M
+dinucleotide/SM
+Dinwiddie/M
+Dio/M
+diocesan/SM
+diocese/SM
+Diocletian/M
+diode/MS
+dioecious
+dioecy/M
+Diogenes/M
+Diognetus/M
+Diomedes/M
+Dione/M
+Dionis/M
+Dionisopoulos/M
+Dionysiac
+Dionysian/SM
+Dionysus/M
+Diophantine/M
+Diophantus/M
+diopside/SM
+dioptre/SM
+dioptric/SMOY
+diorama/SM
+dioramic
+diorite/SMW
+diose/SM
+diosgenin/SM
+Diovan/M
+dioxalate/M
+dioxide/SM
+dioxin/SM
+dioxygen/M Noun: uncountable
+dip/DRGSZ
+DipEd
+dipeptide/MS
+diphase/M
+diphasic
+diphenhydramine/SM
+diphenylamine/SM
+diphenylaminechlorarsine/M Noun: uncountable
+diphenylchloroarsine/M
+diphenylcyanoarsine/M Noun: uncountable
+diphosphate/SM
+diphtheria/OSM^
+diphtheria/W
+diphtheritic
+diphtheroid/SM
+diphthong/SMO
+diphthongization/MS
+diphthongize/DGS
+diphycercal
+diphyodont/SM
+diplexer/SM
+diplobiont/MS
+diplobiotic
+diplochore/MS
+diplochoric/Y
+diplochorous
+diplochory/M Noun: uncountable
+diplodocoid/SM
+diplodocus
+diplohaplont/M
+diploid/SZM
+diploma/SDM1W
+diplomacy/SM
+diplomat/3MS
+diplomata/M
+diplomatic/MS
+diplopia/SM
+diplotene/SM
+dipluran/SM
+dipolar
+dipole/SM
+dipositronium/SM
+dippy/T
+dipshit/SM!
+dipsomania/SM
+dipsomaniac/SMO
+dipstick/MS
+Diptera Taxonomic order
+dipteran/SM
+dipterocarp/SM
+dipterous
+Diptford/M
+Dipton/M
+diptych/M
+diptychs
+diquark/SM
+Dirac/M
+dire/PTj6Y
+direct/TxPDGySYV
+directed/aUIA
+direction/IMaS
+direction/p
+directional/S
+directionality/SM
+directive/SM
+directivity/M
+directly/I
+directness/IS
+Directoire
+director/MAS
+directorate/SM
+directorship/SM
+directory/MSO
+directrices
+directrix/M
+directs/aA
+DirectShow/M
+DirectX/M
+dirge/MSDG
+Dirichlet/M
+dirigible/SM
+dirigisme/SM
+dirigiste/SM
+dirk/MS
+Dirleton/M
+dirndl/SM
+dirt/zZSM
+dirtbag/SM
+dirty/TDSGP
+dis/M
+disable/LGSDR
+disabuse/SGD
+disaccharide/SM
+disadvantage/i
+disaffect/SG
+disaffirm/SGDN
+disafforest/SGDN
+disaggregate/SGDN
+disagreeable/SM
+disallow/DGS
+disallowance/SM
+disambiguate/SDGn
+disambiguator/SM
+disappoint/Lhk
+disarm/k
+disarrange/L
+disarticulate/N
+disastrous/Y
+disband/DGLS
+disbar/L
+disbelieve/k
+disbenefit/SM
+disbound
+disbud/SGD
+disburden
+disbursal/SM
+disburse/LSGDR
+disc/SM
+discarnate
+discectomy/SM
+discern/LbkSGDR
+discernable/P
+discernibility/M Noun: uncountable
+discernible/I
+discernible/Y
+discernibleness/M Noun: uncountable
+disciple/MGDSW
+discipleship/SM
+disciplinarian/SM
+disciplinary/SM
+discipline's/I
+discipline/GDSMR
+discipular
+disclaim/7
+disclose/SGD
+disclosure/SM
+Discman/SM
+disco/MG
+Discoed/M
+discographer/SM
+discography/MS
+discoid/O^
+discolith/SM
+discolorous
+discolour/DniGJ
+discolourment
+discomania/M Noun: uncountable
+discomaniac
+discombobulate/DN
+discomfit/dS
+discomfiture/SM
+discommendation
+discommode/GD
+discommodious
+discommodity/SM
+discompose/D
+disconcert/kSDG
+disconformity/SM
+disconnect/RiG
+disconnector/SM
+disconsolate/Y
+discontiguous
+discontinue/nSGD
+discordance/MS
+discordant/Y
+discorporate/D
+discothèque/MS
+discotheque/SM
+discount/RB
+discourage/LDGkR
+discourse/GO
+discover/AdZS
+discoverability/SM
+discoverer/SM
+discovery/MSA
+discreet/PIY
+discreeter
+discreetest
+discrepancy/MS
+discrepant/Y
+discrete/nYP
+discretion/IMS
+discretion/o
+discretionary/Y
+discretise/SGDN
+discretive/Y
+discretize/SGDN
+discriminable
+discriminant/SM
+discriminate/SnDVGky
+discriminating/IY
+discrimination/MI
+discriminator/MS
+discus/SMG
+discuss/7R
+discussant/SM
+discussion/SM
+disdain/jMDG6S
+disdainful/P
+diseconomy/SM
+disembark/n
+disembarrass/DGL
+disembody/L
+disembowel/LDSG
+disempower/LSd
+disenchantingly
+disendow/SGDL
+disenfranchise/DLSG
+disengage/L
+disentitle/SGD
+disentitlement/SM
+Diserth/M
+disestablishmentarianism/M Noun: uncountable
+Diseworth/M
+disfellowship/SGDM
+disfigure/Ln
+disfranchise/L
+disfrock/SGD
+Disgoed/M
+disgorge/SGDR
+disgorgement/SM
+disgrace/SGDMR
+disgruntle/LSDG
+disguise/GRDh
+disgust/Sk6jhGD
+dish/SDMG
+dishabille/MS
+disharmonious/PY
+dishcloth/MS
+dishevel/DGLS
+Dishforth/M
+Dishley/M
+dishumour/M Noun: uncountable
+dishwasher/SM
+dishwashing/SM
+dishwater/M Noun: usually uncountable
+dishy/T
+disillusion/LDG
+disincorporate/SGD
+disinfectant/SM
+disinfest/SGDN
+disingenuous
+disingenuousness/M Noun: uncountable
+disinhibit/SdN
+disintegrative
+disintegrator/SM
+disinterest/i
+disinterested/P
+disintermediate/SGDN
+disinvent/SGD
+disinvest/SGD
+disinvite/SGD
+disinvoltura
+disjoin/SGD
+disjointedness/S
+disjointness
+disjunct/SVv
+disjunctive/SM
+disjuncture/SM
+disk/MS
+diskette/SM
+Diskman/SM
+Diskus/M
+Disley/M
+dislikable
+disliker/SM
+dislodge/DGLS
+dislodgeable
+disloyal/3
+dismal/YP
+dismantle/LR
+dismast/SGD
+dismay/DSk
+dismember/dL
+dismiss/vR
+dismissible
+dismissiveness
+Disney/M
+Disneyland/M
+disodium/M
+disorder/hi
+disordered/P
+disorderly/P
+disowner/SM
+disownment/SM
+disparage/LRkDSG
+disparate/PSY
+dispassionate/P
+dispatch/R
+dispel/DGSR
+dispensable/I
+dispensary/SM
+dispensate
+dispensationalism/M Noun: uncountable
+dispensationalist/SM
+dispense/RyGnDS
+dispersal/SM
+dispersant/SM
+disperse/LVubvDhRGS
+dispersion/SM
+dispersive/P
+dispirit/Sdk
+dispirited/Y
+display/ADGSM
+displease/h
+displeasure/MS
+disport
+disposable/SM
+disposal/SM
+dispose/KGNISXD
+disposition/KMI
+disproportion/NO
+disproportionality
+disproportionate/DGP
+disproportionation/M
+disproven
+Dispur/M
+disputable/ZI
+disputant/MS
+disputatious/YP
+dispute/lnRDGS
+disquiet/DkM
+disquisition/OMS^
+Disraeli/M
+disrate/SGD
+disregard/6
+disrelish
+disrepair/MS
+disreputable/P
+disrepute/SM
+disrobe/SGD
+disrupt/uGVSDvR
+disruption/SM
+disruptor/MS
+Diss/M
+diss/SGD
+dissatisfy/S
+dissect/GD
+dissection
+dissemble/DSRG
+disseminate/DSnG
+dissension/SM
+dissensus
+dissent/RGDS
+Dissenter/MS
+dissentient/SM
+dissentious
+dissertation/MS
+Disserth/M
+disservice/S
+dissidence/MS
+dissident/MS
+dissimilar/S
+dissimilitude/SM
+dissipate/nVRDShiG
+dissipated/P
+dissociable/I
+dissocial
+dissociate/VvnSDG
+dissociative
+dissoluble/I
+dissolute/YPS
+dissolve/AGDS
+dissolvent/SM
+dissonance/SM
+dissonant/Y
+dissuade/VDGSR
+dissyllable/SM
+dissymmetry/SWw
+distaff/SM
+distal/Y
+distance/MGDS
+distant/PY
+distastefulness/S
+distend/SGXN
+distensibility/SM
+distensible
+distil/S7VnGD
+distillate/MS
+distiller/Z
+distillery/MS
+distinct/TvPVYu
+distinction/MS
+distinctive/P
+distinctly/I
+distinctness/IS
+Distington/M
+distinguish/S7DlG
+distinguishable/IU
+distinguishably/I
+distort/DRG7
+distortion/MSp
+distract/GhikD
+distractability/M Noun: uncountable
+distracted/P
+distractibility/M Noun: uncountable
+distractible
+distractor/SM
+distraint
+distrait
+distraught/Y
+distress/GkD6S
+distributable
+distributary/SM
+distribute/ASVGD
+distribution/ASM
+distribution/O
+distributive/YPS
+distributivity/SM
+distributor/MS
+distributorship/M
+District/M
+district/SM
+distro/SM
+disturb/DRkGS
+disturbance/SM
+disubstituted
+disulphide/SM
+disunion
+disuse/M
+disyllable/MW
+ditch/DSMGr
+Ditchampton/M
+Ditcheat/M
+Ditchingham/M
+Ditchling/M
+dither/SdrZ
+dithyramb/W
+dittany/S
+Ditteridge/M
+Dittisham/M
+ditto/DMGS
+dittography/S
+Ditton/M
+Dittrich/M
+ditty/MS
+ditz/SM
+Diu/M
+diuresis/M
+diuretic/SM
+diurnal/SY
+diva/SM
+divagate/SDN
+divalency/M Noun: uncountable
+divalent/S
+Divali/M
+divalproex/M Noun: uncountable
+divan/SM
+divaricate/SGDN
+dive-bomb/SGDR
+dive/RJDTGS
+divemaster/SM
+diverge/DGS
+divergence/MS
+divergent/Y
+divers/NX
+diverse/YP
+diversify/SGDnr
+diversion/My
+diversity/SM
+divert/SDG
+diverter/SM
+diverticula/M
+diverticular
+diverticulitis/M
+diverticulosis/M
+diverticulum/M
+divertimenti
+divertimento/SM
+divertissement/SM
+divest/SGD
+divestiture/SM
+divestment
+dividable
+divide/RuDSGxVXvN
+divided/AU
+dividend/MS
+divides/A
+dividing/A
+divinatory
+Divine
+divine/YTDSGnR
+divinity/SM
+divinize/SGDJ
+divisibility/IMS
+divisible/I
+division/A
+division/M
+divisionist/SM
+divisive/P
+divisor/MS
+divorce/GSMD
+divorcé/SM
+divorcée/SM
+divorcee/SM
+divorcement/SM
+divot/SM
+divulge/DGSn
+divulgement
+divulgence
+divvy/DSMG
+DivX/M
+divx/M
+Diwali/M
+diwan/SM
+Dixie/M
+dixie/SM
+Dixieland/M
+dixit/S
+Dixon/M
+Dixton/M
+dizygotic
+dizygous
+dizzy/PTYDSGk
+DJ'd
+DJ/MSGD
+Djakarta/M
+djellaba/SM
+djellabah/SM
+Djibouti/M
+djinn/SM
+Djokovic/M
+DLA/M
+DLL/SM
+DLR/M
+DMA/SM
+DMCA/M
+dmg
+Dmitri/M
+Dmitry/M
+DMZ/SM
+DNA/M
+DNase/SM
+Dnieper/M
+Dniester/M
+DNS/M
+DNSSEC/M
+do-gooder/SM
+do-it-yourself
+do-or-die
+do/7TGJRzy
+Doagh/M
+DOB/SM
+dobbin/MS
+Dobbs/M
+dobby/SM
+Dobcross/M
+Dobermann/SM
+dobra/SM
+Dobrev/M
+Dobson/M
+Dobwalls/M
+doc/RSMDG
+Docetism/M
+Docetist/MS
+docile/Y
+docility/SM
+dock/MS7
+dockage
+Dockenfield/M
+Docker/M
+Dockery/M
+docket/SdM
+Docking/M
+dockland/MS
+Docklow/M
+dockside/SM
+dockworker/SM
+dockyard/SM
+DoCoMo/M
+docosadienoic
+docosahexaenoic
+docosanoic
+docosapentaenoic
+docosatetraenoic
+doctor/dSM
+doctoral/K
+doctorate/SM
+Doctorow/M
+doctrinaire/SM
+doctrine/oMSO
+doctrinism/SM
+doctrinist/S
+docudrama/SM
+document/MRDGSnO
+documentalist/SM
+documentarian/SM
+documentarist/SM
+documentary/MS
+docusate/M Noun: uncountable
+docusoap/SM
+docx
+DOD/M
+Dodbrooke/M
+Dodcott/M
+Dodd/MS
+Doddenham/M
+dodder/dSZ
+Dodderhill/M
+Doddinghurst/M
+Doddington/M
+Doddiscombsleigh/M
+doddle/SM
+dodecagon/S
+dodecahedra/OM
+dodecahedron/SM
+Dodecanese/M
+dodecanoic
+dodecaphonic/Y
+dodecaphonics/M Noun: uncountable
+Dodford/M
+Dodge/M
+dodge/ZRSDG
+dodgem/SM
+Dodgson/M
+dodgy/T
+Dodington/M
+Dodleston/M
+dodo/MS
+Dodoma/M
+Dodson/M
+Dodwell/M
+Doe/M
+doe/SM
+doek/SM
+doeke/M Plural of doek
+Doel/M
+Doering/M
+does/ecUA
+doeskin/MS
+doesn't
+doff/SDG
+dog's-tail
+dog's/f
+dog-biscuit/MS
+dog-box
+dog-clutch
+dog-collar/SM
+dog-eared
+dog-eat-dog
+dog-end
+dog-leg/D
+dog-paddle/SM
+dog-star
+dog-tail
+dog-tired
+dog-tooth
+dog/DSMiGZhR
+dogate/SM
+dogberry/SM
+dogdom/M Noun: uncountable
+Dogdyke/M
+doge/MS
+dogfight/GSM
+dogfish/MS
+dogfood/SGD
+dogfought
+Dogg/M
+dogged/P
+Dogger
+doggerel/SM
+Doggerland/M
+Doggett/M
+doggie/SM
+doggish
+doggo/SM
+doggy-paddle/M Noun: uncountable
+doggy/MSTP
+doghouse/MS
+dogleg/SGDM
+doglike
+dogma/1MSW
+Dogmaels/M
+dogmatise/SGD
+dogmatism/SM
+dogmatist/MS
+dogmatize/SGD
+Dogmersfield/M
+dognap/SDGR
+dogology/M
+dogs/f
+dogsbody/SGM
+dogship
+dogshore/SM
+dogskin/SM
+dogsleep
+dogstail
+dogstones
+dogtooth/M
+dogtrot/GSDM
+dogwatch/SM
+Dogwell/M
+dogwood/SM
+dogy/SM
+doh/M
+Doha/M
+Doherty/M
+Dohme/M
+DOI/M
+doily/SM
+doing/MaS
+doit/M
+dojo/SM
+Doka/M
+Dolan/M
+Dolbeau-Mistassini/M
+Dolbenmaen/M
+Dolby/M
+doldrum/SM
+dole/FSGD
+dole/M
+doleful/PY
+dolerite/SM
+Dolgarrog/M
+Dolgellau/M
+dolichocephaly/W
+dolina/MS
+doline/MS
+doll/SDMGY
+dollar/SM
+Dollard-des-Ormeaux/M
+dollarise/SGDN
+dollarize/SGDN
+Dollery/M
+Dollie/M
+Dollingstown/M
+Dollis/M
+dollop/dSM
+dolly/DGMS
+Dolly/M
+dolman/SM
+dolmen/MS
+dolomite/SWM
+Dolores/M
+dolorous/Y
+dolour/MS
+dolphin/MS
+dolphinaria/M
+dolphinarium/SM
+Dolphinton/M
+Dolske/M
+dolt/SM
+doltish/PY
+Dolton/M
+Dolwyddelan/M
+Dom/M
+domain/MS
+Domaine-du-Roy/M
+dome/DGMSw
+Domenico/M
+Domer/M
+Domesday
+domestic/SnY
+domesticable
+domesticate/SGD
+domesticity/SM
+Domett/M
+domicile/GSDM
+domiciliary/SM
+dominance/KSM
+dominant/KY
+dominant/S
+dominate/KNDSG
+domination/KM
+domination/S
+dominative
+dominator/MS
+dominatrices
+dominatrix
+dominee/SM
+domineer/DkSG
+domineering/P
+Domingo/M
+Dominguez/M
+Domini Latin: Anno Domini
+Dominic/M
+Dominica/M
+dominical/Y
+Dominican/SM
+Dominick/M
+dominie/SM
+dominion/SM
+Dominique/M
+domino/M
+dominoes
+Domitilla/M
+don't
+Don/M
+don/SGnVD
+Doña/M
+dona/SM
+Donagh/M
+Donaghadee/M
+Donaghcloney/M
+Donaghey/M
+Donaghmore/M
+Donahue/M
+Donald/M
+Donaldson/M
+Donat/MS
+donate/DSGn
+Donati/M
+Donatism/M Noun: uncountable
+Donatist/SM
+donative/SM
+Donato/M
+donator/SM
+Doncaster/M
+done/fUeAcF
+donee/SM
+Donegal/M
+Donegore/M
+donepezil/M Noun: uncountable
+dong/MGSD
+dongle/SM
+Donhead/M
+Donington/M
+Donisthorpe/M
+Donizetti/M
+donkey/SM
+donkeyman/M
+donkeymen/M
+Donna/M
+Donnacona/M
+Donne/M
+Donnellan/M
+Donnelly/M
+Donnenberg/M
+Donnie/M
+Donnington/M
+donnish/YP
+Donny/M
+donor/SM
+Donovan/M
+Donyatt/M
+Donyland/M
+Doo
+doodah/SM
+Doodle
+doodle/SRGD
+doodlebug/MS
+doodly-squat/M Noun: uncountable
+doofer/SM
+Doohan/M
+Dooish/M
+doolally
+Dooley/M
+Doolittle/M
+Dooly/M
+doom-laden
+doom/SDGM
+doomsday/MS
+doomster/SM
+doomwatch/Sr
+doomy/RYPT
+Doonesbury/M
+dooper
+door-to-door
+door/DmGMS
+Door/M
+doorbell/SM
+doorhandle/SM
+doorkeep/R
+doorknob/SM
+doormaker/SM
+doormat/SM
+doornail/SM
+Doornik/M
+doorplate/SM
+doorpost/SM
+doors/eI
+doorstep/DSGM
+doorstop/SM
+doorway/SM
+dooryard/SM
+dopa/SM
+dopamine/SM
+dopaminergic
+dopant/SM
+dope/R2DMGS
+dopey Adjective
+dopiaza/SM
+doppelganger/MS
+doppelgänger/SM
+Dopper/MS
+Doppler/M
+dopy/TY
+Dora/MW
+Dorado/M
+dorado/MS
+Doral/M
+doramectin/M Noun: uncountable
+Dorchester/M
+Dordon/M
+Dordrecht/M
+Dore/M
+Doreen/M
+Dores/M
+Dorian/MS
+Doris/M
+dork/SM
+Dorking/MS
+dorky/TP
+Dorland/M
+Dorling/M
+dorm/RMS
+dormancy/SM
+Dormann/M
+Dormansland/M
+dormant
+dormice/M Plural of dormouse
+Dormington/M
+dormitory/SM
+dormouse/M
+Dormston/M
+dormy
+Dorn/M
+Dorney/M
+Dornoch/M
+Dornock/M
+doronicum/SM
+Dorothea/M
+Dorotheus/M
+Dorothy/M
+dorp/SM
+Dorr/M
+Dorrell/M
+Dorrington/M
+dorsa
+dorsal/Y
+dorsalis
+Dorset/M
+Dorsey/M
+dorsiflex/SGDN
+Dorsington/M
+dorsolateral/Y
+dorsoventral/Y
+Dorstone/M
+dorsum/M
+Dortmund/M
+Dorton/M
+Dorval/M
+dory/MS
+Dory/MS
+dos/dSDG
+dosage/MS
+dose/cSMDG
+dosh/M Noun: uncountable
+dosha/SM
+dosimeter/MS
+dosimetry/SM
+doss
+doss-house/SM
+dossal/SM
+dosser/SM
+dossier/MS
+dost
+Dostoevsky/M
+Dostoyevsky/M
+dot-bomb/SM
+dot-com/SMR
+dot-org/M
+dot/M2ZdDkrGS
+dotage/MS
+dotard/SM
+dote/SGDM
+doth
+Dothan/M
+dotriacontanoic
+dotterel/SM
+dotty/YT
+Douay
+double-barrelled
+double-blind
+double-breasted
+double-checked
+double-click/Sd
+double-cross/G
+double-dealing
+double-decker/SM
+double-edged
+double-ender
+double-glazed
+double-headed
+double-jointed
+double-parked
+double-sided
+double/SRDGYP
+Doubleday/M
+doubleheader/MS
+doublespeak/SM
+doublet/SM
+doubletalk
+doublethink
+doubleton/SM
+doubloon/MS
+doublure/SM
+doubt/MAS7
+doubted/U
+doubter/MS
+doubtful/YP
+doubting/Y
+doubtless/PY
+Doucette/M
+douche/GMSD
+douchebag/SM
+Doug/M
+dough/MZS
+doughboy/SM
+Dougherty/M
+doughnut/GMDS
+Doughton/M
+doughty/T
+doughy/T
+Dougie/M
+Douglas-Home/M
+Douglas/M
+Douglass/M
+Douglasville/M
+Doukhobor/MS
+doula/SM
+Doulting/M
+Dounby/M
+Doune/M
+dour/PTY
+Dourado/M
+Douro/M
+douse/SGDR
+doux
+Dove/M
+dove/MS~
+dovecot/SM
+dovecote/MS
+dovelike
+Dover/M
+Dovercourt/M
+Doverdale/M
+Doveridge/M
+dovetail/MGDS
+Dow/M
+dowager/MS
+Dowally/M
+Dowden/M
+Dowdeswell/M
+Dowding/M
+dowdy/PTY
+dowel/DSGM
+dower/MdSp
+dowitcher/SM
+Dowlais/M
+Dowland/M
+Dowles/M
+Dowling/M
+Dowlish/M
+Dowlishwake/M
+down-and-out/SM
+down-to-earth Adjective
+Down/M
+down/MGZRSD
+downbeat/SM
+downburst/SM
+downcase/SGD
+downcast/SM
+downchange/SGD
+downcode/SGD
+downcomer/SM
+downconversion/SM
+downconverter/SM
+downcourt Adverb
+downcurved
+downcut/SG
+downdraught/MS
+downdrift/SM
+Downe/M
+Downend/M
+Downers/M
+Downes/M
+Downey/M
+downfall/SM
+downfield
+Downfield/M
+downfold/SM
+downforce/SM
+downgrade/SGD
+Downham/M
+downhaul/SM
+Downhead/M
+downhearted/PY
+downhill/SR
+downhole Adjective
+Downholland/M
+Downholme/M
+downie/SM
+downily Adverb
+downland/SM
+Downley/M
+downlight/SMRG
+downlink/SGDM
+download/BGDSMr
+downmarket
+downmost
+Downpatrick/M
+downpipe/SM
+downplay/DGS Verb
+downpour/SM
+downrange
+downrate/SGD Verb
+downregulate/SGDN
+downright/YP
+downriver
+downs/8
+downsample/SGD
+downscale/DSG
+downshift/SGDM
+downside/SM
+downslope/SM
+downstage/S
+downstairs
+downstream
+downstroke
+downswing/MS
+Downswood/M
+downtempo/M
+downthrew
+downthrow/S
+downthrown
+downtime/SM
+Downton/M
+downtrend/SM
+downtrodden
+downturn/MSD
+downvote/SGD
+downward/PYS
+downwarp/SGDM
+downwash
+downwelling/SM
+downwind/r
+downy/TP
+dowry/MS
+Dowsby/M
+dowse/SDRG
+dox/SGD
+doxazosin/M Noun: uncountable
+Doxey/M
+doxology/SM
+doxx/SGD
+doxy/SM
+doxycycline/SM
+Doxygen/M
+doyen/SM
+doyenne/MS
+Doyle/M
+Doyleston/M
+Doylestown/M
+Doynton/M
+doze/SDGr
+dozen/SM
+dozenth
+dozy/TYP
+DPhil Doctor of Philosophy
+dpi
+Dr
+drab/SMYPT
+drabble/DGS
+dracaena/SM
+drachm/SM
+drachma/SM
+drachmae/M
+Draco/M
+dracone/SM
+draconian Adjective
+draconic Adjective
+Dracula/M
+Dracut/M
+draft/cSA
+draft/DGMr
+draftee/SMD
+draftsman/M
+draftsmen/M
+drag/DMZSGBR
+dragging/Y
+draggle/DGS
+draggy/T
+dragline/SM
+dragnet/SM
+dragon/MS
+dragonet/SM
+dragonfish/SM
+dragonfly/MS
+dragoon/MDSG
+drain/GRSMD
+drainage/SM
+draincock/SM
+Drainie/M
+draining-board/SM
+drainpipe/MS
+draisine/SM
+drake/MS
+Drakelow/M
+Drakensberg/M
+Drakes/M
+DRAM/SM
+dram/w1SMW
+drama/s9Q8q-SM
+Dramamine/M
+dramatics
+dramatist/SM
+dramaturg/SM3
+dramaturge/SM
+dramaturgic/OY
+dramaturgy/M Noun: usually uncountable
+Drambuie/MS
+Drang
+drank
+drape/RSDGy
+Draper/M
+Draperstown/M
+drapery/SM
+Drapier/M
+drastic/Y
+drat/SDG
+draught/zm52SZ
+draughtboard/SM
+Draughton/M
+draughtproof/SGD
+draughtsmanship/MS
+draughtspeople/M
+draughtsperson/M
+draughty/TP
+Dravidian/SM
+draw/J7GRSY
+drawback/SM
+drawbar/SM
+drawbridge/MS
+drawcard/SM
+drawcord/SM
+drawdown/SM
+drawee/MS
+drawing-room/SM
+drawing/M
+drawl/SGDkR
+drawn-out
+drawn/ceAI
+draws/ecA
+drawstring/SM
+Drax/M
+dray/MSDG
+Draycot/M
+Draycote/M
+Draycott/M
+drayman/M
+draymen/M
+Drayton/M
+dread/SM6GDjR
+dreadful/P
+dreadlocked
+dreadlocks
+dreadnought/SM
+dream/6SM2GpZDRzk
+dreamboat/MS
+dreamland/SM
+dreamless/YP
+dreamlike
+dreamscape/SM
+dreamt
+Dreamtime/M
+Dreamweaver/M
+dreamwork/M Noun: uncountable
+dreamworld/SM
+dreamy/TP
+drear/Zz
+dreary/TP
+dreck/Z~
+dredge/GRMSD
+dreg/SM
+Dreghorn/M
+Drelincourt/M
+drench/GDSR
+Drennan/M
+Drenthe/M
+Dresden/M
+Dreser/M
+Dresher/M
+dress/Z2RSDGJM
+dressage/MS
+dressed/cAU
+dresser/AM
+dresses/AUc
+dressing/M
+dressmaker/SM
+dressmaking/MS
+dressy/T
+drew/Ace
+Drew/MS
+Drewsteignton/M
+Drexel/M
+drey/MS
+Dreyfuss/M
+Drezner/M
+drib/SM
+dribble/RGDSZM
+driblet/SM
+Driby/M
+Driffield/M
+drift/DRGkSM
+driftwood/SM
+Drigg/M
+Drighlington/M
+drill/SGDRM
+drilling/M
+drillmaster/MS
+drink-driving
+drink/7SGRM
+drinkable/SM
+Drinkstone/M
+Drinns/M
+drip-dry
+drip/JSMDG
+drippy/T
+drivable
+drive-in/SM
+drive-through/SM
+drive/GJRMS
+drivel/RDGS
+driveline/SM
+driven/P
+driverless
+driveshaft/SM
+drivetrain/SM
+driveway/SM
+drizzle/GDSMkY
+drizzly/T
+DRM/M
+Drogheda/M
+drogue/MS
+droid/SM
+Droitwich/M
+droll/SYTPr
+drollery/MS
+dromaeosaur/SM
+dromaeosaurid/SM
+Dromara/M
+dromedary/SM
+Dromintee/M
+dromoi/M Plural of dromos
+dromond/SM
+Dromore/M
+dromos
+Dron/M
+drone/SGkDMR
+Dronfield/M
+Drongan/M
+drongo/SM
+drongoes
+drool/DRSG
+drooly
+droop/SGZDk
+droopy/TPY
+drop-dead
+drop-down
+drop-forging
+drop-head
+drop-in
+drop-kick/SGD Verb
+drop-out/SM
+drop-shot/MS
+drop-test/GSDM
+drop/DRMJGS
+Dropbox/M
+droplet/MS
+dropout/SM
+droppable
+dropping/M
+drops/Zw
+dropseed/SM
+dropside/SM
+dropsy/SM
+dropwort/SM
+drosera/SM
+droshky/SM
+Drosnin/M
+drosophila/SM
+Drosophilidae Taxonomic family
+drosophilist/SM
+drospirenone/M Noun: uncountable
+dross/MS
+Drostan/M
+Drosten/M
+Drottningholm/M
+drought/SM
+drove/GSDR
+Drove/M
+drown/GJDSR
+drowse/ZGSDM
+drowsy/PTY
+Droxford/M
+drub/RDJGS
+drubbing/M
+drudge/kyMSDGR
+drudgery/SM
+drug-free
+drug-related
+drug/DMGSp
+drugget/SM
+druggie/TSM
+druggish
+druggy/M
+drugster/SM
+Druid/M
+druid/SM
+Druidic/O
+Druidion/M
+Druidism/SM
+drum/RSDGM
+Drumaness/M
+drumbeat/MSG
+Drumbeg/M
+Drumblade/M
+Drumbo/M
+Drumchapel/M
+Drumclog/M
+Drumelzier/M
+Drumgoole/M
+drumhead/MS
+Drumlaghy/M
+drumlin/MS
+Drumlough/M
+Drummond/M
+Drummondville/M
+Drummullan/M
+Drumnacanvy/M
+Drumnadrochit/M
+Drumnakilly/M
+Drumoak/M
+Drumquin/M
+Drumraighland/M
+Drumshoreland/M
+drumstick/SM
+Drumsurn/M
+drunk/TMSY
+drunkard/MS
+drunken/PY
+Drupal/M
+drupe/MS
+drupel/SM
+drupelet/MS
+Drury/M
+druse/MS
+Drusilla/M
+dry-cleaned
+dry-cleaning
+dry-eyed
+Dry/M
+dry/YRDTGS~
+dryad/MS
+Drybrook/M
+Dryden/M
+drydown
+dryer/SM
+Dryfesdale/M
+Drylaw/M
+dryly
+Drymen/M
+dryness/SM
+Dryopithecus Taxonomic genus
+Drypool/M
+drystone/SM
+drysuit/SM
+drywall/GDS
+Ds
+DSA
+DSL/M
+DSLR/SM
+DSP
+dsRNA/SM
+DST
+DTP
+Du/M
+dual-purpose
+dual/SGD3
+dualise/SGDN
+dualism/MS
+dualistic/Y
+duality/MS
+dualize/SGDN
+Duane/M
+Duarte/M
+dub/cDGS
+Dubai/M
+Dubas/M
+dubber/MS
+dubbin/SM
+dubbing/M
+Dubbo/M
+Dubé/M
+Dubey/M
+dubiety/SM
+dubious/PY
+Dublin/M
+Dubliner/MS
+dubnium/M Noun: uncountable
+Dubois/M
+Dubrovnik/M
+dubstep/M Noun: uncountable
+Dubuque/M
+Dubzy/M
+ducal Adjective
+Ducasse/M
+ducat/SM
+Duchamp/M
+Duchesne/M
+duchess/SM
+duchesse/SM
+Duchouquet/M
+duchy/MS
+Ducis/M
+duck-billed
+duck/GDZSMJR
+duckbill/SM
+duckboard/SM
+Duckington/M
+duckling/SM
+Ducklington/M
+Duckmanton/M
+duckpin/SM
+duckpond/SM
+duckwalk/SGDM
+duckweed/MS
+Duckworth/M
+ducky/TSM
+duct's/F
+duct/CDISGF
+duct/Op
+ductile
+ductility/MS
+ductwork/SM
+dud/MS~
+Duddingston/M
+Duddington-with-Fineshade/M
+Duddington/M
+Duddon/M
+dude/MS
+dudeen/MS
+dudeism/M
+Duders/M
+dudgeon/SM
+Dudleston/M
+Dudley/M
+due/MoPS
+duel/RMDGJS
+duellist/SM
+duende/MS
+duenna/SM
+duet/SDMG
+duettist/MS
+Dufay/M
+duff/GRDSM
+duffel/SM
+Duffey/M
+Duffield/M
+duffle/SM
+Dufftown/M
+Duffus/M
+Duffy/M
+Dufresne/M
+Dufton/M
+dug/SM
+Dugald/M
+Dugan/M
+Dugdale/M
+Duggan/M
+dugong/SM
+dugout/SM
+duh
+Duhonw/M
+duiker/MS
+Duirinish/M
+Duisburg/M
+Duke/M
+duke/SM
+dukedom/MS
+Dukes/M
+Dukinfield/M
+Dulas/M
+Dulce/M
+dulcet/Y
+dulcify/DGSn
+dulcimer/SM
+Dulcinea/MS
+dulcitone/MS
+Dulera/M
+Dull/M
+dull/TDSGYP~
+dullard/MS
+Dulles/M
+Dullingham/M
+Dulnain/M
+Duloe/M
+duloxetine/M Noun: uncountable
+Duluth/M
+Dulverton/M
+Dulwich/M
+duly/U
+Dumas/M
+Dumat/M
+dumb/DTPGY
+Dumbarton/M
+dumbass/SM
+dumbbell/SM
+dumbfound/SGDir
+Dumbiedykes/M
+Dumbleton/M
+dumbo/SM
+dumbphone/SM
+dumbshow/SM
+dumbstruck
+dumdum/SM
+Dumfries/M
+Dumfriesshire/M
+Dummer/M
+dummy/SGDM
+Dumont/M
+dumortierite/SM
+dump/DRGZS
+dumpling/MS
+dumpsite/SM
+dumpster/SM
+Dumpty/M
+dumpy/PSTY
+dun/TDGS
+Dunadry/M
+Dunbar/M
+Dunbarney/M
+Dunbartonshire/M
+Dunbeath/M
+Dunbeg/M
+Dunblane/M
+Dunbog/M
+Duncan/M
+Duncansburgh/M
+Duncanville/M
+dunce/SM
+Dunchideock/M
+Dunchurch/M
+Duncton/M
+Dundalk/M
+Dundas/M
+Dundee/M
+dunderhead/SM
+Dundon/M
+Dundonald/M
+Dundonnell/M
+Dundreary/M
+Dundrod/M
+Dundrum/M
+Dundry/M
+Dundyvan/M
+dune/MS
+Dunedin/M
+Dunfermline/M
+Dunford/M
+dung/DGSM
+Dungan/M
+Dungannon/M
+dungaree/MS
+dungeon/GSMD
+Dungey/M
+dunghill/SM
+Dungiven/M
+Dunglison/M
+Dunham-on-the-Hill/M
+Dunham-on-Trent/M
+Dunham/M
+Dunholme/M
+Dunino/M
+Dunipace/M
+duniwassal/MS
+dunk/GDSRM
+Dunkeld-Birnam/M
+Dunkeld/M
+Dunkerton/M
+Dunkeswell/M
+Dunkirk/M
+Dunklin/M
+Dunlap/M
+Dunley/M
+Dunlichity/M
+dunlin/SM
+Dunlop/M
+Dunloy/M
+Dunmore/M
+Dunmow/M
+Dunmurry/M
+Dunn/M
+dunnage/M Noun: usually uncountable
+Dunnamanagh/M
+Dunnamore/M
+Dunnaval/M
+Dunne/M
+Dunnerdale-with-Seathwaite/M
+Dunnet/M
+Dunnichen/M
+Dunnigan/M
+Dunnington/M
+Dunningworth/M
+dunno/M
+dunnock/SM
+Dunnockshaw/M
+Dunnottar/M
+dunny/MS
+Dunoon/M
+Dunphy/M
+Dunrossness/M
+Duns/M
+Dunsby/M
+Dunscore/M
+Dunsden/M
+Dunseverick/M
+Dunsfold/M
+Dunsford/M
+Dunsforth/MS
+Dunsmore/M
+Dunstable/M
+Dunstall/M
+Dunstan/M
+Dunster/M
+Dunston/M
+Dunsyre/M
+Dunterton/M
+Duntisbourne/M
+Duntocher/M
+Dunton/M
+Duntroon/M
+Dunvant/M
+Dunwich/M
+Dunwoody/M
+duo/SM
+duodecimal/SY
+duodecimo/SM
+duodena/Oy
+duodenitis/M
+duodenum/M
+duologue/SM
+duology/SM
+duomo/SM
+duopolistic
+duopoly/S3M
+duotone/SM
+dupable
+DuPage/M
+Duparquet/M
+dupe/RSMGD
+dupery/SM
+dupion/SM
+duple
+duplet/SM
+duplex/SMDGr
+duplexity/SM
+duplicability/M Noun: uncountable
+duplicable
+duplicate/GAnDS
+duplicative
+duplicator/MS
+duplicitous
+duplicity/SM
+Duplin/M
+Dupont/M
+duppy/MS
+durability/SM
+durable/SPY
+Duracell/M
+Duralumin/M
+duralumin/SM
+durance/SM
+Durand/M
+Durango/M
+Durant/M
+duration/MS
+durative
+Durban/M
+durbar/MS
+Durbin/M
+durchkomponiert Adjective
+Durdle/M
+Dürer/M
+duress/MS
+Durex/M
+Durey/M
+Durga/M
+Durham/M
+durian/SM
+Durie/M
+during
+Durisdeer/M
+Durkheim/M
+Durleigh/M
+Durley/M
+Durness/M
+Durney/M
+Durnford/M
+Duroc/S
+Durocher/SM
+Duror/M
+Dürr/M
+durra/M Noun: uncountable
+Durrant/M
+Durrell/M
+Durrës/M
+durrie/SM
+Durrington-on-Sea/M
+Durrington/M
+Durris/M
+Dursley/M
+durst
+Durston/M
+durum/MS
+Durweston/M
+durzi/MS
+Duse/M
+Dusenberg/M
+Dushanbe/M
+dusk/GSDM
+dusky/PTY
+Düsseldorf/M
+dust-up
+dust/MZGSzRDp
+dustbin/SM
+dustcart/MS
+dustcoat/SM
+dustheap/SM
+Dustin/M
+dusting/SM
+dustman/M
+dustmen/M
+Duston/M
+dustpan/MS
+dustproof
+dusty/TP
+Dutch/5m
+Dutchess/M
+duteous/Y
+Duthil/M
+dutiful/U
+dutifulness/M Noun: usually uncountable
+Dutta/M
+Dutton/M
+duty-bound
+duty-free
+duty/6jMS7
+duumvir/MS
+duumvirate/MS
+Duursma/M
+Duval/M
+Duvalier/M
+Duvall/M
+Duvauchelle/M
+duvet/SM
+Duxbury/M
+duxes
+Duxford/M
+DVD+RW/SM Initialism of Digital Versatile Disc - read/writable
+DVD-audio/M
+DVD-R/SM Initialism of Digital Versatile Disc recordable
+DVD-RAM/SM
+DVD-ROM/SM
+DVD-RW/SM Initialism of Digital Versatile Disc - read/writable
+DVD-video/M
+DVD/SM
+Dvorak/M
+Dvorák/M
+DVR/SM Initialism of digital video recorder
+DVT/SM
+dwarf/PDMSG~
+dwarfism/MS
+dwarves
+Dwayne/M
+dwell/DJRGS
+dwelling/SM
+dwelt
+Dwight/M
+dwindle/SGD
+Dworkin/M
+DWP/M
+Dwyane/M
+Dwyer/M
+Dwygyfylchi/M
+Dwyriw/M
+Dy/M
+dyad/SMW
+Dyak/MS
+dyarchal
+dyarchy/MSW
+dybbuk/SM
+dybbukim/M
+Dyce/M
+Dyck/M
+dye/7GDRJMS
+dyeing/M
+Dyer/M
+Dyersburg/M
+dyestuff/MS
+Dyfan/M
+Dyfed-Powys/M
+Dyfed/M
+Dyffryn/M
+dying/U
+Dyke/M
+dyke/SM
+Dylan/M
+Dymchurch/M
+Dymock/M
+dynamic/YSO3
+dynamism/SM
+dynamist/MS
+dynamite/MGRDS
+dynamo/MS
+dynamometer/SM
+dynast/SM
+dynastical/Y
+dynasty/SMW
+Dyndor/M
+dyne/MS
+Dyneley/M
+Dynes/M
+dyno'd
+dyno/SGD
+dynode/SM
+dynorphin/SM
+Dyrdek/M
+Dyrham/M
+Dysart/M
+dysarthria/SM
+dysentery/MW
+Dyserth/M
+dysfunction/OoSM
+dysfunctionality/SM
+dysgenic
+dysgerminoma/SM
+dysgerminomata/M
+dysgraphia/W
+dyskinesia/SM
+dyslectic/SM
+dyslexia/SM
+dyslexic/SMY
+dysmorphia/SMW
+Dysnomia/M
+Dyson/M
+dyspareunia/M Noun: uncountable
+dyspepsia/SM
+dyspeptic/SM
+dysphagia/MSW
+dysphasia/SMW
+dysphemism/SM
+dysphemistic
+dysphonia/SM
+dysphoria/SMW
+dysplasia/SM
+dysplastic
+dyspnoea/SMW
+dyspraxia/SM
+dysprosium/M Noun: uncountable
+dysprosocene
+dysregulation/SM
+dysthymia/MW
+dystonia/SMW
+dystopia/MSW
+dystopian/SM
+dystrophy/SMW
+dysuria/SM
+DZ
+dzho/MS
+dzo/MS
+e
+e'en
+e'er
+e-billing/M Noun: uncountable
+e-book/SM
+e-business/SM
+e-card/SM
+e-cash/M Noun: uncountable
+e-cigarette/SM
+e-commerce/M Noun: uncountable
+e-crime/SM
+e-criminal/SM
+e-dating/M Noun: uncountable
+e-edition/SM
+e-fit/SM
+e-learning/M Noun: uncountable
+e-mail/MSGD
+e.g.
+e.m.f.
+ea/SM
+each
+Eagan/M
+eager/MYP
+eagerer
+eagerest
+eagerness/cM
+eagle-eyed
+Eagle/M
+eagle/MSGD
+Eaglesfield/M
+Eaglesham/M
+eaglet/SM
+Eakring/M
+Ealand/M
+Ealdorman/M
+Ealham/M
+Ealing/M
+Eamon/M
+Eamonn/M
+Eamont/M
+EAN/M Initialism of European Article Numbering
+eaning/M
+ear-piercing/SY
+ear-splitting/Y
+ear/6SYMDp
+earache/MS
+earbash/SGD
+earbud/SM
+Earby/M
+Eardington/M
+Eardisland/M
+Eardisley/M
+eardrum/MS
+earful/SM
+Earhart/M
+earhole/SM
+Earith/M
+earl/2MS
+Earl/MS
+earldom/SM
+Earles/M
+Earley/M
+Earlham/M
+earlobe/SM
+earlock/SM
+Earlsferry/M
+earlship/SM
+Earlston/M
+Early/M
+early/MST~
+Earlybird/M
+earmark/GDJSM
+earmuff/SM
+earn/GRSTDJ
+earnest/PY
+Earnley/M
+Earnshill/M
+earphone/MS
+earpiece/SM
+earplug/SM
+earring/SM
+Earsdon/M
+Earsham/M
+earshot/M Noun: usually uncountable
+Earswick/M
+earth-shattering
+earth-year/SM
+Earth/M
+earth/SMZY2DG
+Eartham/M
+earthboard/SM
+earthbound
+earthen
+earthenware/MS
+earthfall/SM
+earthlight/SM
+earthling/SM
+earthly/PT
+earthman/M
+earthmen/M
+earthmover/SM
+earthmoving Adjective
+earthnut/SM
+earthquake/MS
+earthrise/SM
+earthscape/SM
+earthshaking/Y
+earthshine/M Noun: uncountable
+earthslip/SM
+earthstar/SM
+earthward/SY
+earthwoman/M
+earthwomen/M
+earthwork/SM
+earthworm/SM
+earthy/PT
+earwax/M Noun: uncountable
+earwig/GSDM
+earworm/SM
+Easby/M
+ease/6
+ease/EDMSG
+Easebourne/M
+easefulness/M Noun: uncountable
+easel/SM
+easement/SM
+Easenhall/M
+easer/SM
+easier
+easiest
+easiness/SM
+easing/SM
+Easington/M
+Easingwold/M
+Easley/M
+Eassie/M
+east-north-east/M
+east/GM
+East/M
+Eastbank/M
+eastbound
+Eastbourne/M
+Eastbridge/M
+Eastburn/M
+Eastby/M
+Eastcheap/M
+Eastchester/M
+Eastchurch/M
+Eastcote/M
+Eastcotts/M
+EastEnders/M
+Easter/YSM
+Eastergate/M
+Easterhouse/M
+easterly/SM
+Eastern
+eastern/R
+easternmost
+Eastertide/M
+Easterton/M
+Eastfield/M
+Eastgarston/M
+Eastgate/M
+Eastham/MS
+Easthampstead/M
+Easthampton/M
+Easthope/M
+Easthorpe/M
+Eastin/M
+easting/SM
+Eastington/M
+Eastlake/M
+Eastland/M
+Eastleach/M
+Eastleigh/M
+Eastling/M
+Eastman/M
+Eastnor/M
+Eastoft/M
+Easton-Berry/M
+Easton-in-Gordano/M
+Easton/M
+Eastpointe/M
+Eastriggs/M
+Eastrington/M
+Eastrop/M
+Eastry/M
+Eastside/M
+Easttown/M
+Eastville/M
+eastward/SY
+Eastwell/M
+Eastwick/M
+Eastwood/M
+Eastyn/M
+easy/UY
+easygoing/P
+eat/ScG
+eatable/SM
+eaten/Uc
+eater/cM
+eater/SM
+eatery/SM
+Eathorpe/M
+eating/SM
+Eatington/M
+Eaton-under-Heywood/M
+Eaton/M
+Eatontown/M
+Eau/M
+eave/SM
+eavesdrop/RDSG
+Eavestone/M
+Eazy/M
+EB/SM
+eBay/SGDRM
+ebb/GDSM
+Ebbe/M
+Ebberston/M
+Ebbesborne/M
+Ebbesbourne/M
+Ebbinghaus/M
+Ebbw/M
+EBCDIC Initialism of Extended Binary-Coded-Decimal Interchange Code
+Ebchester/M
+Ebdentown/M
+Eben/M
+Ebenezer/M
+Ebenstein/M
+Eberhart/M
+Eberle/M
+Ebernoe/M
+Ebert/M
+Ebner/M
+Ebola/M
+ebonite/MS
+ebony/SM
+Ebrahim/M
+Ebright/M
+Ebrington/M
+ebullience/SM
+ebulliency/MS
+ebullient/Y
+EC/SM
+ecash/M Noun: uncountable
+ECB/M
+ECC/SM
+ecce
+eccentric/MSYO
+eccentricity/SM
+Ecchinswell/M
+Ecclefechan/M
+Eccles/M
+Ecclesall/M
+Ecclesfield/M
+Eccleshall/M
+Eccleshill/M
+ecclesial/Y
+Ecclesiastes/M
+ecclesiastic/SMYO
+ecclesiasticism/SM
+Ecclesiasticus/M
+ecclesiology/3w1SM
+Ecclesmachan/M
+Eccleston-with-Larbreck/M
+Eccleston/M
+ecdyses
+ecdysial
+ecdysis/M
+ecdysone/SMp
+ECG/SM Initialism of electrocardiogram
+echelon/dSM
+echeveria/MS
+echidna/SM
+Echinacea Taxonomic superorder
+echinacea/SM
+echini/M
+echinoderm/MS
+Echinodermata Taxonomic phylum
+echinoid/SM
+echinus/SM
+Echium Taxonomic genus
+echium/SM
+Echiura Taxonomic subclass
+echiuran/SM
+echiurid/SM
+echiuroid/SM
+echo/1dSM
+echo/WAGDRZpM
+echocardiogram/SM
+echocardiograph/ZWSM
+echocardiography/SM
+echoes/A
+echogenic
+echogenicity/SM
+echogram/SM
+echograph/SM
+echolalia/SM
+echolocate/SGDn
+echovirus/SM
+Echt/M
+Echuca-Moama/M
+Eckard/M
+Eckel/M
+Eckert/M
+Eckford/M
+Eckhart/M
+Eckington/M
+eclair/SM
+éclair/SM
+eclampsia/M Noun: usually uncountable
+éclat/SM
+eclectic/SMY
+eclecticism/MS
+eclipse/SGMDW
+eclipsis/M
+ecliptic/MSOY
+eclogite/SM
+eclogue/SM
+eclose/SGD
+eclosion/SM
+ECMAScript/M
+eco-friendly Adjective
+eco-tax/SM
+eco-warrior/SM
+ecocentric/O
+ecocentrism/M Noun: uncountable
+ecocentrist/SM
+ecocide/SM
+ecoclimate/MS
+ecofact/SM
+ecofeminism/SM
+ecofeminist/SM
+ecofreak/SM
+ecogeographic/OY
+Ecole/M
+ecolodge/SM
+ecology/wS3M1
+Econ.
+econometric/SOY
+econometrician/SM
+economic/UY
+economical/U
+economics/M Noun: uncountable
+economy/qQ8s39wWS-M1
+ecoregion/SM
+ecosphere/SM
+ecossaise/SM
+ecosystem/MS
+ecoterrorism/M Noun: uncountable
+ecoterrorist/SM
+ecotone/SMO
+ecotour/SGDM3
+ecotourism/M Noun: usually uncountable
+ecotown/SM
+ecotoxicology/w3M
+ecotropic
+ecotype/SM
+ecotypic/OY
+ecru/SM
+ecstasise/DGS
+ecstasize/DGS
+Ecstasy/M
+ecstasy/MS
+ecstatic/OYSM
+ECT/SM
+Ectasian
+ectoderm/O^
+ectogenesis/M Noun: uncountable
+ectogenetic/Y
+ectogenic
+ectogenous
+ectomorph/SMWZ
+ectomycorrhizal
+Ecton/M
+ectoparasite/SMW
+ectopic/SMOY
+ectoplasm/SMW
+Ectoprocta Taxonomic phylum
+Ector/M
+ectotherm/SMWZ
+ectropion/SM
+ECTS/M
+ECU/MS
+ecu/SM
+Ecuador/M
+Ecuadoran/SM
+Ecuadorean/SM
+Ecuadorian/SM
+ecumenic/OY
+ecumenicalism/M Noun: uncountable
+ecumenicality/M Noun: uncountable
+ecumenicism/SM
+ecumenicist/MS
+ecumenicity/M Noun: usually uncountable
+ecumenics/M Noun: uncountable
+ecumenism/SM
+ecumenist/MS
+eczema/SM
+eczematous
+ed.
+Ed/M
+edacious/Y
+edacity/M Noun: uncountable
+Edale/M
+Edam/M
+edaphic/Y
+edaphology/M Noun: uncountable
+edaphosaurus/SM
+Eday/M
+Edburton/M
+Edda/M
+Edderton/M
+Eddie/M
+Eddington/M
+Eddisbury/M
+Eddleston/M
+Eddrachillis/M
+eddy/DGMS
+Eddy/M
+Ede/M
+Edelman/M
+Edelstein/M
+edelweiss/M Noun: usually uncountable
+Eden/MW
+Edenaveys/M
+Edenbridge/M
+Edendale/M
+Edenderry/M
+Edenfield/M
+Edenhall/M
+Edenham/M
+Edensor/M
+Edentata Taxonomic order
+edentate/SM
+Edenthorpe/M
+Edern/M
+Ederney/M
+Edgar/M
+Edgbaston/M
+Edgcote/M
+Edgcott/M
+edge/DZMGRpSJ
+Edgecombe/M
+Edgecumbe/M
+Edgefield/M
+Edgerton/M
+Edgeware/M
+Edgewater/M
+edgeways
+Edgewood/M
+Edgeworth/M
+edging/SMY
+Edgmond/M
+Edgton/M
+Edgware/M
+edgy/TPY
+Ediacara/M
+Ediacaran/SM
+edibility/SM
+edible/PSM
+edict/OMSo
+edifice/SM
+edify/RSnDG
+Edina/M
+Edinburg/M
+Edinburgh/M
+Edinburghshire/M
+Edingale/M
+Edingley/M
+Edingthorpe/M
+Edington/M
+Edinkillie/M
+Edison/M
+edit/A7dNS
+edited/UF
+Edith/M
+edition/MS
+editor-at-large/M
+editor/FMS
+Editor/M
+editorial/s3Q89SY
+editors-at-large/M
+editorship/SM
+Edlaston/M
+Edlesborough/M
+Edleston/M
+Edlingham/M
+Edlington/M
+Edmond/M
+Edmondbyers/M
+Edmonds/M
+Edmondsham/M
+Edmondthorpe/M
+Edmonson/M
+Edmonton/M
+Edmund/MS
+Edmundo/M
+Edmundsbury/M
+Edmundson/M
+Edmundston/M
+Edna/M
+Ednam/M
+Edney/M
+Edo/M
+Edom/M
+Edouard/M
+EDP/SM
+Edrin/M
+Edrom/M
+eds/F
+Edstone/M
+EDT/SM
+Eduard/M
+Eduarda/M
+Eduardo/M
+Edubase/M
+educ/nxV
+educability/SM
+educable/SM
+educate/DGANS
+educated/cfU
+educated/Y
+educatedness/M Noun: uncountable
+education/FSMo
+educational/3
+educationist/SM
+educator/MS
+educe/DG7SnM
+edulcorate/DGSn
+edutainment/SM
+Edvin/M
+Edwalton/M
+Edward/MS
+Edwardian/MS
+Edwardstone/M
+Edwardsville/M
+Edwin/M
+Edwina/M
+Edwinstowe/M
+Edworth/M
+Edwy/M
+Edwyn/M
+Edzell/M
+EEA/M
+EEC/M
+EEG/SM
+eel-like
+Eel/M
+eel/MSZ
+eelgrass/SM
+eelworm/MS
+Eemian
+EEOC
+EEPROM/SM Electrically erasable programmable read-only memory
+Eerdmans/M
+eerie/T
+eeriness/SM
+eery/Y
+Efenechtyd/M
+efface/LDSGr
+effaceable/I
+effect/DuGvVSM
+effective/IPY
+effective/SM
+effectiveness/SI
+effector/SM
+effectual/PIY
+effectuate/DGSn
+effeminacy/MS
+effeminate/SMY
+effeminateness/M Noun: uncountable
+effendi/SM
+efferent/YSM
+effervesce/SGD
+effervescence/SM
+effervescent/Y
+effete/PY
+efficacious/YIP
+efficacy/ISM
+efficiency/MIS
+efficient/IF
+efficiently/I
+Effie/M
+Effient/M
+effigy/SM
+effigylike
+Effingham/M
+effloresce/SGD
+efflorescence/SM
+efflorescent
+effluence/MS
+effluent/SM
+effluvia/MO
+effluvium/M
+efflux/SMr
+effluxion/SM
+effort/SM=
+effortful/Y
+effortless/YP
+effrontery/MS
+effulgence/MS
+effulgent/Y
+effuse/DvuVSGr
+effusion/SM
+effusive/P
+EFI/M Noun: uncountable
+Efron/SM
+EFT/M
+EFTA/M Initialism of European Free Trade Association
+eftercast/SM
+EGA/M
+egad
+egalitarian/SM
+egalitarianism/SM
+Egan/M
+Egbert/M
+Egdean/M
+Egerton/M
+Egg/M
+egg/SGDMp
+eggbeater/SM
+Eggborough/M
+eggcorn/SM
+eggcup/SM
+egger/SM
+Eggesford/M
+eggfruit/SM
+egghead/MiDS
+Eggimann/M
+Eggington/M
+Egginton/M
+Egglescliffe/M
+Eggleston/M
+Eggleton/M
+eggnog/MS
+eggplant/SM
+eggshell/MS
+eggy/T
+Egham/M
+Egilsay/M
+egirine/SM
+egis/SM
+eglantine/MS
+Eglash/M
+Egleton/M
+Eglingham/M
+Eglinton/M
+Eglish/M
+Egloshayle/M
+Egloskerry/M
+Eglwys/M
+Eglwysbach/M
+Eglwyscummin/M
+Eglwysfach/M
+Eglwysilan/M
+Eglwyswrw/M
+Egmanton/M
+Egmere/M
+Egmont/M
+Egnew/M
+ego/SM
+egocentric/YSM
+egocentricity/MS
+egocentrism/SM
+egoism/MS
+egoist/SMWw1
+egomania/SM
+egomaniac/SMO
+egomaniacally
+egosurf/SDGR
+egosurfing/M Noun: uncountable
+egotism/MS
+egotist/WS1Mw
+egotize/DGS
+egregious/YP
+Egremont/M
+egress/DMSG
+egressive/SM
+egret/SM
+Egton/M
+Egypt/M
+Egyptian/SM
+Egyptianization/M Noun: uncountable
+Egyptianize/DGS
+Egyptology/3wSM
+eh
+Ehrenpreis/M
+Ehrenreich/M
+Ehresmann/M
+Ehrig/M
+Ehrlich/M
+ehrlichioses
+ehrlichiosis/M
+Ehrman/M
+Ehsan/M
+EiB Abbreviation of exbibyte
+EiC/M East India Company
+Eichmann/M
+eicosadienoic
+eicosanoic
+eicosanoid/SM
+eicosapentaenoic
+eicosatetraenoic
+eicosatrienoic
+eicosenoic
+Eid/SM
+eider/SM
+eiderdown/SM
+eidetic/Y
+eidetics/M Noun: uncountable
+eidoi/M
+eidola/M Plural of eidolon
+eidolon/SM
+eidos/M
+Eiffel/M
+eigenfrequency/SM
+eigenfunction/MS
+eigenspace/SM
+eigenstate/SM
+eigenvalue/MS
+eigenvector/MS
+Eigg/M
+eight/HMZS
+Eight/M
+eighteen/HMS
+eighteenmo/MS
+eighthly
+eightpence/SM
+eightsome/MS
+eighty-eight/H
+eighty-first/SM
+eighty-five/H
+eighty-four/H
+eighty-nine/H
+eighty-one
+eighty-onefold
+eighty-second/SM
+eighty-seven/H
+eighty-six/H
+eighty-three/H
+eighty-two
+eighty-twofold
+eighty/HMS
+eightysomething/SM
+Eike/M
+Eildon/M
+Eilean/M
+Eileanan/M
+Eileen/M
+Eilenberg/M
+Eindhoven/M
+einkorn/SM
+Einstein/M
+Einsteinian
+Einsteinianism/M Noun: uncountable
+einsteinium/M Noun: uncountable
+Eira/M
+Eire/M
+Éireann/M
+Eisele/M
+Eiseley/M
+Eisen/M
+Eisenhart/M
+Eisenhower/M
+Eisenstein/M
+Eisey/M
+Eisheth/M
+Eisner/M
+eisteddfod/WMS
+eisteddfodau/M
+Eithaf/M
+either
+ejaculate/nDGSy
+ejaculator/SM
+eject/VGSD
+ejecta/M
+ejectable/SM
+ejection/MS
+ejectment/SM
+ejector/MS
+eke/GSDM
+Eketahuna/M
+EKG/M
+ekka/MS
+Ekker/M
+Ektachrome/M
+El
+Ela/M
+elaborate/PDSGnYV
+elaborator/SM
+Elagabalus/M
+Elah/M
+elaidic
+Elaine/M
+elan/SM
+élan/SM
+eland/MS
+Elanor/M
+elapid/SMW
+elapse/SGD
+Elara/M
+elastase/SM
+elastic/SMOY
+elasticate/SGDn
+elasticise/SGD
+elasticity/SM
+elasticize/SGD
+elastin/SM
+elastodynamic/Y
+elastodynamics/M Noun: uncountable
+elastomer/MSW
+Elastoplast/SM
+elate/iSDGnhR
+elated/P
+Elba/M
+Elbe/M
+Elberfeld/M
+Elbert/M
+Elberton/M
+elbow/GSDM
+elbowroom/MS
+Elbridge/M
+Elchies/M
+Elcock/M
+eld/M Noun: uncountable
+Eldene/M
+Elder/M
+elder/SM
+elderberry/SM
+elderflower/SM
+elderly/SMP
+Eldersburg/M
+Eldersfield/M
+eldership/MS
+Elderslea/M
+Elderslie/M
+eldest
+Eldmire/M
+Eldon/M
+Eldorado/M
+Eldredge/M
+eldritch/Y
+eldritchness/M Noun: uncountable
+Elea/M
+Eleanor/M
+Eleatic/SM
+Eleazar/M
+elecampane/MS
+elect/DAGS7
+electability/SM
+election/SM
+electioneer/GSDM
+elective/PY
+elector/SM
+electoral/Y3
+electorate/SM
+electorship/MS
+Electra/M
+electress/SM
+electret/SM
+electric/SY
+electrical/SMP
+electrician/SM
+electricity/MS
+electrify/nRDGS
+electro-oculogram/SM
+electro-oculography/MW
+electro-optic/SOY
+electro/SM
+electroactive
+electroactivity/SM
+electrobiology/M Noun: uncountable
+electrocardiogram/SM
+electrocardiograph/MSZ
+electrocardiography/SMW1
+electrocatalysis/M Noun: uncountable
+electrocatalyst/SM
+electrocatalytic/Y
+electrocauterize/SGDN
+electrocautery/SM
+electroceramic/SM
+electrochemic/Y
+electrochemical/SM
+electrochemist/SM
+electrochemistry/M Noun: uncountable
+electroclash/M Noun: uncountable
+electrocoagulation/SM
+electroconductive
+electroconvulsive/Y
+electrocute/SDG
+electrocution/SM
+electrode/MS
+electrodeposition/SM
+electrodermal/Y
+electrodesiccation/M Noun: usually uncountable
+electrodiagnoses
+electrodiagnosis/M
+electrodiagnostic/SY
+electrodynamic/OY
+electrodynamics/M Noun: uncountable
+electroencephalogram/SM
+electroencephalograph/MS3r
+electroencephalographic/OY
+electroencephalography/MS
+electrofulguration/M Noun: uncountable
+electrogenerated
+electrogenesis/M Noun: usually uncountable
+electrolier/MS
+electrologic/O
+electrologist/SM
+electrology/M Noun: uncountable
+electroluminescence/M Noun: usually uncountable
+electroluminescent
+electrolyse/GSDr
+electrolysis/M
+electrolyte/1SMw
+electromagnet/W1MS
+electromagnetism/SM
+electromatic
+electromechanical/Y
+electromechanics/M Noun: uncountable
+electromedical
+electrometer/SM
+electrometric/OY
+electrometry/M Noun: uncountable
+electromigration/SM
+electromotive
+electromyogram/SM
+electromyograph/ZSMWw1
+electron/M1S
+electronegative/Y
+electronegativity/SM
+electronic/SO
+electronica/M Noun: uncountable
+electronvolt/SM
+electrophile/SMW
+electrophilicity/MS
+electrophonic/Y
+electrophorese/SGD
+electrophoresis/M
+electrophoretic/OY
+electrophori/M
+electrophorus/SM
+electrophotographic/Y
+electrophotography/M
+electrophysiologic/OY
+electrophysiology/M3
+electroplaque/SM
+electroplate/SGDMr
+electroplax/SM
+electroplexy/M
+electropolar
+electropolarity/M Noun: uncountable
+electropolish/SDG
+electropollution/M Noun: uncountable
+electropop/M Noun: uncountable
+electroporate/SGDn
+electropositive/SMY
+electroreception/M Noun: uncountable
+electroreceptor/SMZ
+electroretinography/MW
+electrorheological/Y
+electroscope/SMW
+electroshock/MGDS
+electroslag/M Noun: uncountable
+electrospinning/M Noun: uncountable
+electrospray/SM
+electrostatic/OY
+electrostatics/M Noun: uncountable
+electrostimulation/SM
+electrostriction/SM
+electrosurgery/M Noun: usually uncountable
+electrosurgical/Y
+electrosyntheses
+electrosynthesis/M
+electrotactic/Y
+electrotaxis/M Noun: uncountable
+electrotechnic/OY
+electrotechnician/SM
+electrotechnics/M Noun: uncountable
+electrotechnology/3MSw
+electrotherapeutic/O
+electrotherapeutics/M Noun: uncountable
+electrotherapy/SM3
+electrothermal/Y
+electrotype/SDGMRW
+electrotypy/M Noun: uncountable
+electrovalence/MS
+electrovalency/MS
+electrovalent
+electroweak
+electroweakino/SM
+electrum/SM
+electuary/SM
+eleemosynary/SM
+elegance/ISM
+elegant/IY
+elegiac/SMO
+elegiacally
+elegise/SGDJ
+elegize/SGDJ
+elegy/MS
+Eleigh/M
+element/SMo
+elemental/SM
+elementalism/M Noun: uncountable
+elementary/YP
+Elena/M
+elenchi/M Plural of elenchus
+elenchus/M
+Eleonora/M
+eleostearic
+elephant/SM
+elephantiases
+elephantiasis/M
+elephantine
+elephantoid/SMO
+Eleusinian
+Eleusis/M
+elevate/DSnG
+elevational/Y
+elevator/SMZ
+eleven/HMS
+Eleven/M
+elevens/S
+elf/M
+Elfed/M
+elfin/SM
+elfish/Y
+elfishness/M Noun: uncountable
+Elford/M
+Elgamal/M
+ElGamal/M
+Elgar/M
+Elgin/M
+Elginshire/M
+Elgol/M
+Elham/M
+Eli/M
+Elias/M
+Eliburn/M
+elicit/dSn
+elicitor/SM
+Elida/M
+elide/SDG
+Elidor/M
+Elie/M
+eligibility/IMS
+eligible/SYI
+Elijah/M
+eliminate/SVnDG
+eliminator/MS
+Eling/M
+Eliot/M
+Eliphas/M
+Éliphas/M
+Elis-Thomas/M
+Elisa/M
+Elisabeth/M
+Elise/M
+Eliseg/M
+Elisha/M
+elision/SMO
+elite/S3MP
+elitism/MS
+elixir/MS
+Eliza/M
+Elizabeth/M
+Elizabethan/SM
+Elizabethton/M
+Elizabethtown/M
+Elizondo/M
+Elk/M
+elk/MS
+Elkanah/M
+Elkesley/M
+Elkhart/M
+Elkhorn/M
+elkhound/SM
+Elkington/M
+Elkins/M
+Elkinsia Taxonomic genus
+Elko/M
+Elksley/M
+Elkstone/MS
+Elkton/M
+ell/SM
+Ella/M
+ellagic
+Elland/M
+Ellastone/M
+Elle/M
+Ellel/M
+Ellen/M
+Ellenhall/M
+Ellensburg/M
+Ellenthorpe/M
+Ellerbeck/M
+Ellerburne/M
+Ellerby/M
+Ellerker/M
+Ellerslie/M
+Ellerton-on-Swale/M
+Ellerton/M
+Ellesborough/M
+Ellesmere/M
+Ellice/M
+Ellicombe/M
+Ellicott/M
+Ellie/M
+Elliman/M
+Ellingham/M
+Ellingstring/M
+Ellington/M
+Elliot/M
+Elliott/M
+ellipse/SMW
+ellipsis/M
+ellipsoid/OMSo
+ellipsometer/MS
+ellipsometry/M Noun: uncountable
+elliptic/Y
+elliptical/SM
+ellipticity/SM
+Ellis/M
+Ellisfield/M
+Ellison/M
+Ellistown/M
+Ellon/M
+Ellough/M
+Elloughton-cum-Brough/M
+Elloughton/M
+Ellsworth/M
+Ellwood/M
+Ellyn/M
+Elm/MS
+elm/SM
+Elma/M
+Elman/M
+Elmbridge/M
+Elmdon/M
+Elmer/M
+Elmersthorpe/M
+Elmesthorpe/M
+Elmet/M
+Elmfield/M
+Elmham/M
+Elmhurst/M
+Elmira/M
+Elmley/M
+Elmo/M
+Elmore/M
+Elmsall/M
+Elmsett/M
+Elmsford/M
+Elmstead/M
+Elmsted/M
+Elmstone/M
+Elmswell/M
+Elmton/M
+Elmwood/M
+elocution/3SMy
+elodea/SM
+Eloff/M
+Elohim/M
+Elohist/MS
+Eloise/M
+elongate/YDSnGh
+elongatedness/M Noun: uncountable
+elope/LSDGR
+eloquence/SM
+eloquent/IY
+Eloy/M
+Elphin/M
+Elphinstone/M
+Elroy/M
+Elsa/M
+Elsan/MS
+Elsdon/M
+else/M
+Elsenham/M
+Elsevier/M
+elsewhere
+Elsey/M
+Elsfield/M
+Elsham/M
+Elsie/M
+Elsing/M
+Elsinore/M
+Elslack/M
+Elstead/M
+Elsted/M
+Elsternwick/M
+Elston/M
+Elstow/M
+Elstree/M
+Elstronwick/M
+Elswick/M
+Elsworth/M
+Eltham/M
+Eltisley/M
+Elton-on-the-Hill/M
+Elton/M
+eluate/SM
+elucidate/VDSGn
+elucidator/MS
+elucidatory Adjective
+elude/DuVGvS
+elusion/SM
+elusive/P
+elusory Adjective
+elute/SGD
+elution/SM
+elutriate/SGDn
+Elvaston/M
+Elveden/M
+elven/SM
+elver/MS
+elves Plural of elf
+Elvet/M
+Elvetham/M
+Elvington/M
+Elvira/M
+Elvis/M
+Elvish/M
+elvish/Y
+Elwick/M
+Elwood/M
+Elworthy/M
+Ely/M
+Elyria/M
+Elysée/M
+elysian
+Elysian/SM
+Elysium/M
+Elzevir/M
+em/DSM
+emaciate/SGnD
+Emacs/M
+email/MDGS
+emanate/DnVGS
+emancipate/DSnGy
+emancipator/SM
+emancipist/MS
+Emanuel/M
+Emanuella/M
+emasculate/DSGn
+emasculatory
+embalm/RGDS
+embalmment/SM
+embank/GLSDr
+embarcadero/SM
+embargo/MGD
+embargoes
+embargoist/SM
+embark/EGSAD
+embarkation/MSE
+embarrass/kLDhSG
+embassy/MS
+embattle/SGD
+embay/SGD
+embayment/SM
+embed/SMDGJR
+embeddable
+embeddedness/M Noun: usually uncountable
+embedding/SM
+embellish/JRLGSDk
+ember/SM
+Emberton/M
+embezzle/DLRSG
+embiggen/Sd
+Embiid/M
+embitter/LdS
+emblazon/LSd
+emblem/WSM
+emblematical/Y
+emblematise/SGD
+emblematist/SM
+emblematize/SGD
+emblement/SM
+Embleton/M
+embodier/SM
+embodiment/MS
+embody/AEGDS
+embolden/dS
+emboli/M Plural of embolus
+embolise/SGDN
+embolism/SM
+embolize/SGDn
+embolus/M
+Emborough/M
+embosom/Sd
+emboss/GDRSL
+embouchure/MS
+embower/Sd
+embrace/SGDkRM
+embraceable
+embracive
+embrasure/MS
+embrittle/SGD
+embrittlement/SM
+embrocation/MS
+embroider/rZdS
+embroidery/SM
+embroil/DLSG
+embryo/SM
+embryogenesis/M Noun: usually uncountable
+embryogeny/SMW1
+embryology/WS3wM1
+embryonated
+embryony/SMW1
+Embsay/M
+emcee/MGS
+Emelianenko/M
+emend/7nGDSR
+emerald-cut
+Emerald/M
+emerald/MS
+emerge/ASGD
+emergence/SMZ
+emergency/SM
+emergent/SMY
+emergentism/SM
+emergentness/M Noun: uncountable
+emerita/M
+emeritae/M
+emeriti/M
+emeritus/SM
+emerse/DN
+Emerson/MS
+Emery/M
+emery/MS
+Emeryville/M
+Emes/M
+emeses Plural of emesis
+emesis/M
+emetic/SM
+emetine/M Noun: uncountable
+emetophobe/SMW
+emetophobia/M Noun: uncountable
+emf/SM
+EMF/SM
+EMI/SM
+emigrant/SM
+emigrate/nSDG
+emigratory
+émigré/SM
+Emil/M
+Émile/M
+Emile/M
+Emilia/M
+Emiliano/M
+Emilio/M
+Emily/M
+Eminem/M
+eminence/SM
+eminent/Y
+emir/SM
+emirate/MS
+Emirates/M
+Emirati/SM
+emissary/SM
+emission/SM
+emissive
+emissivity/SM
+emit/RSDG
+emittance/SM
+Emlen/M
+Emley/M
+Emly/M
+Emlyn/M
+Emma/M
+Emmanuel/M
+Emmanuelle/M
+Emmaus/M
+Emme/M
+Emmeline/SM
+emmenagogue/SM
+Emmental/M
+Emmenthal/M
+Emmet/M
+emmet/SM
+Emmett/M
+Emmington/M
+Emmy/M
+Emmys
+Emneth/M
+emo/SM
+emoji/SM
+emolliate/SGD
+emollience/M Noun: usually uncountable
+emollient/SM
+emollition/SM
+emolument/SM
+Emory/M
+emote/SMvDxVG
+emoticon/SM
+emotion/pMSO
+emotionalise/SGDn
+emotionalism/SM
+emotionalist/SM
+emotionality/SM
+emotionalize/SGDn
+emotionally/Uc
+emotivity/M Noun: usually uncountable
+empanel/Sd
+empath/W1SM
+empathetic/YO
+empathy/QM8WS3
+Empedoclean
+Empedocles/M
+empennage/SM
+emperor/MS
+emphases/c
+emphasis's/Cc
+emphasis/cdACQS
+emphasise/CRSGD
+emphasize/CRGDS
+emphatic/SMY
+emphysema/SM
+emphysematous/Y
+Empingham/M
+empire/wS1MW
+empiric/SM3
+empiricism/MS
+emplace/LSGD
+emplane/GDS
+employ/DGLSRBM
+employability/M Noun: usually uncountable
+employable/US
+employed/fUA
+employee/SM
+employment/fMU
+employments/f
+empoison/SdJr
+Emporia/M
+emporia/M Plural of emporium
+emporium/MS
+empower/LSd
+empress/SM
+Empshott/M
+empt/zVZGSDv2
+emptier/SM
+emption/SM
+emptor/SM
+empty-handed/Y
+empty-handedness/M Noun: uncountable
+empty-headed
+empty-headedness/M Noun: uncountable
+empty/SGDTPM
+empyreal
+empyrean/SM
+Emrys/M
+Emshwiller/M
+Emsley/M
+Emsworth/M
+emtricitabine/M Noun: uncountable
+emu/MS
+emulate/nDVGSv
+emulator/SM
+emulsify/nRSGD
+emulsion/SM
+en/SM
+enable/RDGS
+enablement/SM
+enact/7DLGS
+enaction/M Noun: usually uncountable
+enactive/Y
+enactment/A
+enactor/SM
+enalapril/M Noun: uncountable
+enamel/GMRDJS
+enamelware/MS
+enamour/DGS
+enamouredness/M Noun: uncountable
+enamourment/SM
+enanthema/MS
+enanthic
+enantiomer/SM
+enantiomeric/OY
+enantiomericity/M Noun: uncountable
+enantiomorph/SMW1
+enantiomorphism/M Noun: usually uncountable
+enantiomorphous/Y
+enarthroses Plural of enarthrosis
+enarthrosis/M
+Enborne/M
+Enbrel/M
+enc/SM
+Encaenia/SM
+encage/SGD
+encamp/DLSG
+encapsidate/SGDN
+encapsulate/SDnG
+encase/GDLS
+encash/SGLDB
+encaustic/SMY
+Enceladus/M
+encephalic
+encephalin/SM
+encephalitic
+encephalitides Plural of encephalitis
+encephalitis/M
+encephalogram/SM
+encephalograph/SMW
+encephalography/SM
+encephalon/SM
+encephalopathic/O
+encephalopathy/MS
+enchain/LDGS
+enchant/EGLSD
+enchant/h
+enchanter/MS
+enchanting/SMY
+enchantingness/M Noun: uncountable
+enchantress/MS
+enchase/SGDJ
+enchilada/MS
+enchiridia/M Plural of enchiridion
+enchiridion/SM
+Encinitas/M
+encipher/Sdr
+encipherment/SM
+encircle/DGSLr
+Encke/M
+encl
+enclasp/DGS
+enclaspment/M Noun: uncountable
+enclave/MSGD
+enclose/DSGr
+enclosure/MS
+encode/JDRSBGL
+encomium/SM
+encompass/DGS
+encore/DSGM
+encounter/SdM
+encourage/LDSkGr
+encroach/rSDGLk
+encrust/nDGSrL
+encrypt/GSDr
+encryptable
+encryption/MS
+encumber/ESd
+encumbrance/SM
+encyclical/SM
+encyclopaedia/SMW
+encyclopaedist/SM
+encyclopedia/SMW
+encyclopedism/M Noun: uncountable
+encyclopedist/SM
+encyst/GLDSn
+end-user/SM
+End/SM
+end/SRpMDJG
+endanger/LSdr
+endangerable
+endangeredness/M Noun: uncountable
+endarterectomy/SM
+endear/LkDGSr
+endearedness/M Noun: usually uncountable
+endearingness/M Noun: uncountable
+endeavour/RGMDS
+endeavourment/M Noun: usually uncountable
+Endellion/M
+endemic/SMY
+endemicity/M Noun: usually uncountable
+endemism/M Noun: usually uncountable
+Enderby/M
+endergonic
+endergonicity/SM
+Enderlein/M
+Enderley/M
+endgame/MS
+endian/P
+Endicott/M
+endive/SM
+endless/PY
+endmost
+endnote/SM
+endobenthic
+endobenthos/M Noun: uncountable
+endoblast/SMW
+endocardia/OMo
+endocardiac
+endocarditic
+endocarditides
+endocarditis/SM
+endocardium/SM
+endocarp/MSO
+endocentric/SM
+endocranial
+endocrine/SM
+endocrinology/3SM
+endocytosis/M
+endocytotic/Y
+endoderm/O^
+endodontics
+endogamous
+endogamy/M Noun: usually uncountable
+endogenesis/M Noun: uncountable
+endogenous/Y
+endogeny/MSW
+endoglossic
+endolith/MSW
+endoluminal/Y
+endolymph/M Noun: usually uncountable
+endometria/MO
+endometriosis/M
+endometritis/M Noun: usually uncountable
+endometrium/M
+endomorph/SMW
+endomorphism/SM
+endomorphy/M Noun: uncountable
+Endon/M
+endonuclease/SM
+endoparasite/SMW
+endophora/SMW
+endoplasm/MW
+endorphin/SM
+endorse/LRDSG
+endorsee/SM
+endoscope/MSWZ31
+endoscopy/SM
+endoskeletal
+endoskeleton/SM
+endosome/SM
+endosperm/SM
+endospore/SM
+endostylar
+endostyle/SM
+endosulfan/SM
+endosymbiont/SM
+endosymbiosis/M
+endosymbiotic/Y
+endothelia/MO
+endotheliochorial
+endothelium/M
+endotherm/SMOW1
+endothermism/M
+endothermy/M Noun: uncountable
+endotoxin/SM
+endotracheal/Y
+endow/GLSD
+endozoochore/MS
+endozoochoric/Y
+endozoochorous/Y
+endozoochory/M Noun: uncountable
+endpaper/SM
+endplay/SGD
+endpoint/MS
+endue/GSD
+endungeoned
+endurable/Z
+endurance/SM
+endure/SGklDr
+enduring/P
+enduro/SM
+endways
+endwise
+Endymion/M
+enema/MS
+enemy/MS
+energetic/YS
+energised
+energized
+Energlyn/M
+energumen/MS
+energy/qSQMs8-9
+enervate/GDnVS
+enfant
+enfeeble/LSDG
+Enfield/M
+enfilade/SMGD
+enfold/DGS
+enforce/RbBLDGhS
+enforceability/M Noun: usually uncountable
+enforcible
+Enford/M
+enframe/SGD
+enfranchise/DLSGr
+enfranchize/LDGRS
+eng.
+engage/AGESD
+engagement/SM
+engaging/Y
+Engaine/M
+Engberg/M
+Engel/SM
+Engelbart/M
+Engelhard/M
+Engelmann/M
+engender/dS
+Engin/M
+engine/yDMSGJ
+engineer/SDGM
+engineering/M
+engineership/MS
+engirdle/SGDJ
+englacial
+England/Mr
+Englefield/M
+Englewood/M
+English-born
+English-speaker/S
+English-speaking
+English/m5MP
+Englishcombe/M
+engorge/LDSG
+engraft/SGDJ
+engrailed
+engrain/DGS
+engram/SM
+engrammatic
+engrave/GRDJS
+engraving/M
+engross/LDSGhkr
+engulf/LGDS
+Enham/M
+enhance/GRLDS
+enhanceable
+enharmonic/Y
+Enheduanna/M
+ENIAC/M
+Enid/M
+enigma/1MWSw
+Enigmail/M
+enigmatise/SGD
+enigmatist/SM
+enigmatize/SGD
+enigmatography/M Noun: uncountable
+enisle/DGS
+Eniwetok/M
+enjambement/M
+enjambment/MS
+enjoin/SDG
+enjoinder/SM
+enjoy/rGLBSDl
+enjoyable/P
+enkephalin/SM
+enkindle/DGS
+enlace/DGS
+enlacement/MS
+enlarge/RLDSG
+enlargeable
+enlighten/dSL
+enlist/AGDS
+enlistee/SM
+enlister/SM
+enlistment/SM
+enliven/LSd
+enmesh/LDSG
+enmity/SM
+Enmore/M
+ennead/MS
+Enner/M
+Ennerdale/M
+Ennis/M
+Enniskillen/M
+ennoble/LDSGr
+ennui/MS
+Enoch/M
+enochlophobia/M Noun: uncountable
+Enoder/M
+enormity/SM
+enormous/PY
+enosis/M
+enough
+enounce/DGS
+enplane/SGDJ
+enprint/SM
+enqueue/SGD
+enqueueing
+enquire/GZSDRk
+enquiry/SM
+enrage/DSG
+enrapture/GDS
+enrich/GSDLr
+Enrico/M
+enrobe/SGD
+enrol/LDRSG
+enrollee/MS
+Enron/M
+enroot/SGD
+Ensay/M
+Enschede/M
+ensconce/DSG
+ensemble/MS
+enshrine/GDLS
+enshroud/SDG
+ensiform
+ensign/SM
+ensigncy/MS
+ensilage/SMGD
+ensile/DGS
+enslave/RGLSD
+ensnare/SDLG
+Enson/M
+Ensor/M
+ensoul/SGD
+ensoulment/SM
+enstasy
+enstatic
+enstatite/SM
+Enstone/M
+ensue/SDG
+ensure/DRGS
+enswathe/DGS
+entablature/SM
+entablement/MS
+entail/DRLSG
+entangle/EDLSGr
+entases
+entasis/M
+entelechy/SM
+entellus/M
+entendre/MS
+entente/MS
+entepicondyle/SM
+enter/AdS
+enterable
+enteral/Y
+enterer/MS
+enteric
+enteritides
+enteritis/MS
+Enterobacterales Taxonomic order
+enterobacteria/M
+Enterobacteriaceae Taxonomic family
+enterobacterium/M
+enterocele/SM
+enterococci/M
+enterococcus/M
+enterocyte/SM
+enterohepatic/Y
+enterokinase/SM
+enteropneust/SM
+enterostomy/MS
+enterotomy/SM
+enteroviral
+enterovirus/SM
+Enterprise/M
+enterprise/RSGMk
+entertain/GRLSkD
+enthalpy/MS
+entheogen/SMW
+enthral/GDLS
+enthrone/DLGS
+enthronisation/MS
+enthronization/MS
+enthuse/SDG
+enthusiasm/SM
+enthusiast/SWM1
+enthusiastic/UY
+enthymeme/SM
+entice/SRLkJGD
+entire/Y
+entirety/SM
+entitative/Y
+entitle/SDLG
+entity/SM
+entoconid/SM
+entocristid/SM
+entoflexid/SM
+entomb/DLGS
+entomofauna/SM
+entomofaunae/M
+entomology/S3Mw
+entomophagous
+entomophagy/3M
+entomophilous
+entomophily/M Noun: uncountable
+entoparasite/S
+entoproct/SM
+Entoprocta Taxonomic phylum
+entourage/MS
+entr'acte/SM
+entrails
+entrain/DGLSr
+entrammel/DSG
+entrance/LMSGDk
+entranceway/M
+entrant/SM
+entrap/LGSD
+entre
+entreat/kSGZD
+entreaty/MS
+entrechat/SM
+entrecôte/SM
+entrée/SM
+entremets/M
+entrench/LDSG
+entrepôt/SM
+entrepreneur/MS
+entrepreneurial/Y
+entrepreneurialism/SM
+entrepreneurship/SM
+entresol/SM
+entropion/M
+entropy/WSM1
+entrust/LDGS
+entry/AS
+entry/M
+entryphone/SM
+entryway/SM
+entwine/SDG
+enucleate/SDGn
+enum/SM
+Enumclaw/M
+enumerable
+enumerate/VnGDS
+enumerator/SM
+enunciable
+enunciate/GSnD
+enunciative
+enunciator/MS
+enure/DS
+enureses
+enuresis/M
+enuretic/MS
+envelop/LrdS
+envelope/SM
+envenom/dS
+enviable/P
+Enville/M
+envious/PY
+environ/LdS
+environment/o
+environmental/3
+environmentalism/MS
+envisage/SGD
+envision/GSD
+envoi/MS
+envoy/MS
+envy/MRS7lDkG
+enwrap/SGD
+enwreathe/SGDJ
+Enzed/MS
+Enzedder/MS
+Enzie/M
+Enzler/M
+Enzo/M
+enzootic/SM
+enzymatic/Y
+enzyme/WSM
+enzymic
+enzymology/M Noun: usually uncountable
+Eoarchean
+Eocene/M
+eohippus/M
+EOL/SM
+eolith/SMW
+eonian
+eonothem/SM
+eosin/SM
+eosinophil/SMW
+eosinophilia/SM
+EP/SM
+EPA/SM
+epact/MS
+Epaphras/M
+Epaphroditus/M
+eparch/M
+eparchs
+eparchy/SM
+epaulette/MS
+epaxial/SM
+epeirogenesis/M Noun: uncountable
+epeirogeny/MW
+ependyma/SMO
+epentheses
+epenthesis/M
+epenthetic
+epergne/MS
+epexegeses
+epexegesis/M
+epexegetic/O
+ephebe/MS
+ephebophile/SM
+ephebophilia/M Noun: uncountable
+ephedra/MS
+ephedrine/SM
+ephemera/SMo
+ephemeral/SM
+ephemerality/M
+ephemerides
+ephemeris/M
+ephemeron/MS
+Ephesian/SM
+Ephesus/M
+ephod/MS
+ephor/MS
+ephorate/MS
+Ephraim/M
+Ephrata/M
+epibenthic
+epibenthos/M Noun: uncountable
+epibiont/SM
+epibiotic/Y
+epiblast/MS
+epic/YSMO
+epicardia/M
+epicardiac
+epicardial/Y
+epicardium/M
+epicarp/MS
+epicedia/M
+epicedian
+epicedium/M
+epicene/SM
+epicentre/MSO
+epicleses
+epiclesis/M
+epicondylar
+epicondyle/SM
+epicontinental
+epicotyl/SM
+Epictetus/M
+epicure/MS
+Epicurean/MS
+epicurean/SM
+Epicureanism/M Noun: usually uncountable
+epicurism/MS
+Epicurus/M
+epicycle/Ww1MS
+epicycloid/MOS^
+Epidaurus/M
+epideictic
+epidemic/MYS
+epidemiology/WSM31w
+epidermal
+epidermic
+epidermis/SM
+epidermoid/SM
+epidiascope/SM
+epididymides
+epididymis
+epidote/WSM
+epidural/SM
+epifauna/O^
+epifluorescence/SM
+epigastria/WM
+epigastrium/M
+epigeal
+epigene
+epigenetic/SY
+epiglottal
+epiglottic
+epiglottis/SM
+epigone/MS
+epigoni/M
+epigram/MS
+epigrammatic/Y
+epigrammatist/MS
+epigrammatize/DGS
+epigraph/wSMZr
+epigraphy/31WSM
+epilate/SGDN
+epilator/SM
+epilepsy/SM
+epileptic/SM
+epilithic
+epilithon/M
+epilogue/MGDS
+epimedium/SM
+epimer/SMW
+epimerism/M
+epimerize/DGS
+Epimetheus/M
+epimorphic
+epimorphism/SM
+epimutation/SMO
+epinephrine/SM
+epinician/SM
+epiotic/SM
+Epipalaeolithic
+epipelagic/Y
+Epiphany/M
+epiphany/MSW
+epiphenomena/MO
+epiphenomenon/M
+epiphyseal
+epiphyses
+epiphysis/M
+epiphytal
+epiphyte/SMW
+epiphyton/M Noun: uncountable
+Epirus/M
+episcopacy/SM
+Episcopal
+episcopal/Y
+episcopalian/SM
+Episcopalian/SM
+episcopalianism
+episcopalism/M
+episcopate/SM
+episcope/S
+Episcopi/M
+episematic
+episiotomy/SM
+Episkopi/M
+episode/MS1Ww
+epistasis/M
+epistates
+epistatic/SM
+epistaxis/M
+episteme
+epistemic/Y
+epistemology/1wM3
+Epistle/MS
+epistle/SM
+epistolary/SM
+epistoler/MS
+epistrophe/SM
+epistyle/SM
+epitaph/MS
+epitaxy/MoO
+epithelia/OM
+epitheliochorial
+epithelium/SM
+epithet/SWM
+epithetical/Y
+epitome/s-9qQ8MS
+epitomic
+epitomist/SM
+epitope/SM
+epizoa/MW
+epizoite/SM
+epizoochore/1SMW
+epizoochorous
+epizoochory/M
+epizoon/M
+epizootic/SM
+eplerenone/M
+EPLP/M
+Epney/M
+epoch/oMO
+epochs
+epode/SM
+Epogen/M
+eponym/SMW
+eponymous/Y
+epoxide/SM
+epoxy/DSG
+Epperstone/M
+Epping/M
+Eppleby/M
+eprinomectin/M
+EPROM/SM
+epsilon/MS
+Epsom/M
+Epstein/M
+Epuni/M
+Epwell/M
+Epworth/M
+epyllia/M
+epyllion/M
+EQ/SM
+equability/MS
+equable/YP
+equal/s9Q-DGYqS8
+equalise/DGJ
+equalitarian/SM
+equalitarianism/M Noun: usually uncountable
+equality/IMS
+equalized
+equally/UF
+equanimity/MS
+equanimous
+equatable
+equate/DGBSn
+equational
+equator/SM
+equatorial/SMY
+equerry/SM
+equestrian/SM
+equestrianism/SM
+equestrienne/MS
+equiangular
+equidistant/Y
+equilateral/SM
+equilibrate/DSGn
+equilibria/M
+equilibrious
+equilibrist/S
+equilibrium/ESM
+equine/SM
+equinoctial/SM
+equinox/MS
+equip/LDSG
+equipage/SM
+equipartition/MD
+equipoise/MSDG
+equipollence/S
+equipollency/S
+equipollent
+equipotent
+equipotential/SM
+equipped/UA
+equiprobability/SM
+equiprobable
+equiproportional/Y
+equiproportionality/M Noun: uncountable
+equiproportionate
+Equisetopsida Taxonomic class
+equispaced
+equitable/PY
+equitation/MS
+equity/MSI
+equiv
+equivalence/GDSMZ
+equivalency/MS
+equivalent/YSM
+equivocal/UY
+equivocality/MS
+equivocalness/MS
+equivocate/GDSn
+equivocator/SM
+equivoke/S
+equivoque/S
+Equuleus/M
+Equus Taxonomic genus
+er/ae
+era/MS
+eradicable
+eradicate/VSDGn
+eradicator/SM
+eras/7g
+erase/NDRLSG
+Erasmus/M
+Erastian/SM
+Erastianism/M
+Erastus/M
+erasure/SM
+erat
+Erath/M
+erathem
+Eratosthenes/M
+Eratosthenian
+Erbistock/M
+Erbitux/M
+erbium/SM
+erbocene
+Ercall/M
+Erchless/M
+Erck/M
+Erdmann/M
+ere
+Erebus/M
+erect/DA
+erect/GSYr
+erectile
+erection/SM
+erectness/SM
+erector/MS
+erectus
+eremite/WMSw
+eremurus
+erethism/M
+Erewash/M
+erewhile
+Erfurt/M
+erg/SM
+Erganagh/M
+Ergham/M
+ergo/SM
+ergocalciferol/SM
+ergodic
+ergodicity/SM
+ergonomic/SY
+ergonomist/MS
+ergophobia/M Noun: uncountable
+ergosphere/SM
+ergosterol/MS
+ergot/MS
+ergotism/M
+Erhard/M
+Eric/M
+Erica/M
+Erich/M
+Erickson/M
+Ericsson/M
+Eridanus/M
+Erie/M
+erigeron/SM
+Erik/M
+Erika/M
+Eriksson/M
+Erin/M
+Erinyes
+Erinys/M
+Eris/M
+Eriskay/M
+eristic/MS
+Eriswell/M
+Erith/M
+Eritrea/M
+Eritrean/SM
+erk/SM
+Erketu Taxonomic genus
+Erlang/M
+Erlangen/M
+Erlanger/M
+Erlenmeyer/M
+Erlestoke/M
+Erliansaurus Taxonomic genus
+Erlikosaurus Taxonomic genus
+erm
+ERM/SM
+Erme/M
+ermine/SDM
+Ermington/M
+Ernan/M
+erne/SM
+Ernest/M
+Ernestine/M
+Ernesto/M
+Erney/M
+Ernie/MS
+Ernle/M
+Ernst/M
+erode/VDuGxSb
+erogenous
+Eros/M
+erosible
+erosion/SM
+erosive/P
+erotic/YSM
+erotica/M Noun: uncountable
+eroticise/SGDN
+eroticism/SM
+eroticize/SGDN
+erotism/M
+erotogenic
+erotogenous
+erotology/M Noun: uncountable
+erotomania/M Noun: usually uncountable
+erotomaniac/SM
+Erpingham/M
+err/DkSG
+errancy/SM
+errand/SM
+errant/YSM
+errantry/M Noun: usually uncountable
+errata/SWM1
+erratic/SM
+erraticism/SM
+erratum/MS
+Erriapus/M A moon of Saturn
+erring/UY
+Erringden/M
+Errol/M
+erroneous/PY
+error/MSp
+ersatz/SM
+Erse/M
+Erskine/M
+Ersoy/M
+erst
+erstwhile
+Erth/M
+erubescent
+erucic
+eructation/MS
+erudite/SMY
+erudition/SM
+erupt/DVGSv
+eruption/MS
+Ervan/M
+Ervie/M
+Ervin/M
+Erving/M
+Erwarton/M
+Erwin/M
+Erwood/M
+Erxleben/M
+Eryholme/M
+eryngo/S
+erysipelas/SM
+erythema/O^
+erythema/W
+erythematosus
+erythematous
+erythrism/SM
+erythritol/SM
+erythroblast/S
+erythrocyte/SM
+erythromycin/SM
+Es/M
+ESA/M
+eSATA/M
+eSATAp/M
+Esau/M
+ESC/SM
+escabeche/SM
+escadrille/SM
+escalade/SM
+escalate/CDGnS
+escalator/MS
+Escallonia Taxonomic genus
+escallonia/SM
+escallop/SM
+escalope/MS
+Escambia/M
+Escamilla/M
+Escanaba/M
+escapable/I
+escapade/MS
+escape/3SMDLGr
+escapee/SM
+escapism/MS
+escapology/3M
+escargot/SM
+escarp/MS
+escarpment/SM
+Escaut/M
+eschatology/M3w
+eschaton/M Noun: uncountable
+escheat/SGD
+Escher/M
+Escherichia Taxonomic genus
+eschew/GDS
+eschewal/SM
+eschscholtzia/SM
+escitalopram/M Noun: uncountable
+Escley/M
+Esclusham/M
+Escomb/M
+Escondido/M
+Escorial/M
+escort/SGMD
+Escrick/M
+escritoire/MS
+escrow/SDMG
+escudo/MS
+esculent/MS
+escutcheon/DSM
+Esdras/M
+Esh/M
+Esher/M
+Eshton/M
+Esk/M
+Eskdale/M
+Eskdalemuir/M
+Eskdaleside/M
+esker/SM
+Eskimo/SM
+Eskisehir/M
+Eskley/M
+Eskra/M
+Eskridge/M
+Eslick/M
+Esmeralda/M
+Esmond/M
+esomeprazole/M Noun: uncountable
+esoteric/SMY
+esoterica/M
+esotericism/SM
+esotericist/SM
+esp/Z
+espadrille/MS
+Espagnol/M
+espalier/SDGM
+Española/M
+esparto/SM
+especial/Y
+Esperança/M
+Esperance/M
+Esperantist/SM
+Esperanto/M
+espial/SM
+espionage/SM
+esplanade/MS
+Espoo/M
+Esposito/M
+espousal/MS
+espouse/GDRS
+espresso/SM
+esprit/MS
+espy/DGS
+Esquimalt/M
+Esquimau/M
+Esquimaux/M
+Esquire/M
+esquire/SM
+ESR/M
+essay/DRMG3S
+essayistic
+esse
+Essen/M
+essence/MS
+Essendine/M
+Essendon/M
+Essene/MS
+essential/P3SMY
+essentialism/SM
+essentiality/SM
+Essex/M
+Essington/M
+est/R
+establish/ELDGSA
+establisher/SM
+establishmentarian/SM
+establishmentarianism/M Noun: uncountable
+Estaires/M
+estaminet/SM
+estate/SM
+Estates/M
+esteem/EDGS
+Estella/M
+Estelle/M
+Esteller/M
+esterase/SM
+Estérel/M
+Esterházy/M
+esterification/SM
+esterify/DGS
+Estes/M
+Estevan/M
+Esteves/M
+Estevez/M
+Esther/M
+Estill/M
+estimable/P
+estimate/cGfASND
+estimation/MSc
+estimative
+estimator/SM
+Eston/M
+Estonia/M
+Estonian/SM
+estop/DGS
+estoppage/MS
+estoppal
+estoppel/SM
+Estoril/M
+estovers
+estradiol/SM
+estral
+estrange/DGLSr
+estreat/DGMS
+Estremadura/M
+Estrie/M
+estuarine
+estuary/SMO
+Eswatini/M
+et
+ET/SM
+eta
+Eta/M
+ETA/SM
+etalon/SM
+etc.
+etcetera/MS
+etch/RGSDJ
+etchant/SM
+Etchilhampton/M
+etching/M
+Etchingham/M
+eternal/PY
+eternalise/SGD
+eternality/M Noun: uncountable
+eternalize/SGD
+eternity/SM
+eternize/DGS
+Etesian
+etexilate/M
+Ethan/M
+ethane/M Noun: usually uncountable
+ethanoic
+ethanol/SMW
+Ethel/M
+Ethelbert/M
+Ethelburga/M
+Etheldred/M
+Etheldreda/M
+Ethelred/M
+ethene/SM
+ether/OMSWo
+ethereal/PY
+ethereality/MS
+etherealize/DGS
+Ethereum/SM
+etheriality/MS
+Etherington/M
+etherisation/MS
+etherise/SGD
+etherization/MS
+etherize/SGD
+Etherley/M
+Ethernet/MS
+Etherpad/M
+ethic/3MSY
+ethical/UY
+ethicality/SM
+ethicalness/M
+ethicize/SGDJ
+ethidium/M Noun: uncountable
+ethinyl/SM
+Ethiopia/M
+Ethiopian/SM
+Ethiopic/MS
+ethmoid/SMO
+ethmoturbinal/SM
+ethnarch/M
+ethnarchs
+ethnarchy/MS
+ethnic/SMY
+ethnicity/SM
+ethnoarchaeology/3wM
+ethnobiology/Mw3 Noun: uncountable
+ethnobotanic/O
+ethnobotany/3M
+ethnocentric
+ethnocentricity/MS
+ethnocentrism/SM
+ethnocide/SM
+ethnoecology/Mw
+ethnogenesis/M
+ethnographer/SM
+ethnography/WMSw
+ethnohistorian/SM
+ethnohistory/WwSM
+ethnolinguist/SM
+ethnolinguistics
+ethnology/W3SwM1
+ethnomedicine/SM
+ethnomethodology/3wSM
+ethnomusicology/Ww3M
+ethnonationalism/SM
+ethnonationalist/SM
+ethnonym/SM
+ethnopharmacology/3Mw
+ethnophaulism/SM
+ethnopoetics
+ethnopsychology/wM
+ethnoscience/SM
+ethnosemantic/S
+ethnozoology/M Noun: uncountable
+ethogram/SM
+ethography/M Noun: uncountable
+ethology/3wMSW
+ethos/SM
+ethosuximide/M Noun: uncountable
+ethoxide/SM
+ethoxy/SM
+ethoxyde/SM
+ethoxyl/M
+ethoxylate/SMD
+ethoxys
+ethyl/MS
+ethylbenzene/SM
+ethylene/MSW
+ethylenediamine/M Noun: uncountable
+Étienne/M
+etiolate/DGS
+etiolation/MS
+etiquette/SM
+Etive/M
+Etna/M
+Eton/M
+Etonian/SM
+Etowah/M
+Etruria/M
+Etrurian/SM
+Etruscan/SM
+Etruscology/3M
+ETSI/M Initialism of European Telecommunication Standards Institute
+Ettinger/M
+Ettington/M
+Etton/M
+Ettore/M
+Ettrick/M
+Etwall/M
+etyma/M
+etymologer/MS
+etymologise/DGS
+etymologize/DGS
+etymology/wMS13W
+etymon/SMW
+Eu
+EU/M
+Euan/M
+Euarchontoglires Taxonomic superorder
+eubacteria/MO
+eubacterium/M
+Euboea/M
+Euboean/SM
+eucalypt/MS
+eucalypti/M
+eucalyptus/SM
+eucatastrophe/SM
+Eucharist/MWSw
+euchologion/SM
+euchology/SM
+euchre/MSGD
+euchromatic
+euchromatin/SM
+Euclid/M
+euclidean
+Euclidean
+eudicot/SM
+eudiometry/M Noun: uncountable
+Eudora/M
+Eudoxus/M
+Eufaula/M
+Eugene/M
+Eugenia/M
+eugenic/Y3S
+eugenist/SM
+eugeosyncline/SM
+euglenoid/SM
+euhedral
+eukaryote/SMW
+Eukelade/M
+Eula/M
+EULA/SM Acronym of end user license agreement
+Euler/M
+Euless/M
+eulogia/M
+eulogised/U
+eulogistic
+eulogium/MS
+eulogized/U
+eulogy/Q9s38SM
+Eumenides/M
+eundem
+Eunice/M
+eunuch/M
+eunuchoid/SM
+eunuchs
+euonymus/SM
+eupeptic/Y
+euphemism/SM
+euphemist/SW1M
+euphemize/SGDJ
+euphonious/Y
+euphonise/SGD
+euphonium/MS
+euphonize/SGD
+euphony/SMW
+euphorbia/SM
+euphoria/MS
+euphoriant/SM
+euphoric/SMY
+euphrasia/SM
+Euphrates/M
+euphuism/SM
+euphuist/MSW
+EUR
+EUR-Lex
+Euramerica/M
+Eurasia/M
+Eurasian/SM
+Euratom/M
+Eureka/M
+eureka/SM
+eurhythmic/S
+EURIBOR/M
+Euripides/M
+Euro
+Euro-MP/SM
+Euro-wasp/SM
+euro/SM
+Eurobabble/M Noun: uncountable
+Eurobank/SM
+Eurobeat/M Noun: uncountable
+Eurobond/SM
+Eurocard/SM
+Eurocentric
+Eurocentricity/M Noun: uncountable
+Eurocentrism/M Noun: uncountable
+Eurocentrist/SM
+Eurocheque/SM
+Euroclear
+Euroclydon/M
+Eurocommunism/M Noun: uncountable
+Eurocommunist/SM
+Euroconnector/SM
+Euroconvertible
+Eurocracy/M Noun: uncountable
+Eurocrat/SMW
+eurocredit/M
+eurocreep/M Noun: uncountable
+Eurocurrency/SM
+Eurodisco/M Noun: uncountable
+Eurodollar/SM
+Euroequity
+Eurofanatic/SM
+Eurogroup/SM
+Eurojust/M
+Euroland/M
+Euromarket/SM
+Euromart
+EuroMillions
+Euromissile/SM
+Euronet
+Euronews/M
+Euronote
+Europa/M
+Europarliamentarian
+Europarliamentary
+Europasian/SM
+Europass
+Europe-wide
+Europe/M
+European/3Q8Mq-S
+Europeanism/SM
+Europessimism/M Noun: uncountable
+Europhile/SM
+Europhobe/SM
+europium/M Noun: uncountable
+europocene
+Europol/M
+Europoort
+Europop/M Noun: uncountable
+Eurosceptic/SMO
+Euroscepticism/M Noun: uncountable
+Eurosclerosis/M Noun: uncountable
+Eurosklerosis
+Eurostar/SM
+Eurostat/M
+euroterminal
+Eurotrash/M Noun: uncountable
+Eurovision/M
+eurozone/M
+euryapsid/SM
+Eurybates/M
+Eurydice/M
+Eurythmics
+Eusebius/M
+eusocial
+eusociality/M Noun: uncountable
+Eustachian
+Eustachio/M
+eustacy/M Noun: usually uncountable
+eustasy/SM
+eustatic
+Eustis/M
+Euston/M
+eutectic/SM
+eutectoid/SM
+euthanasia/SM
+euthanise/SGDn
+Eutheria Taxonomic infraclass
+eutherian/SM
+Euthyphro/M
+eutopia/M Noun: uncountable
+Eutopia/SM
+eutopian
+eutrophicate/SGDN
+eutrophy/SMW
+Euxton/M
+eV
+EV/SM
+Eva/M
+evacuant/SM
+evacuate/VnDSG
+evacuee/SM
+evadable
+evade/SvRDVGu
+evaginate/SGDn
+Eval/M
+evaluable
+evaluate/xVDGSn
+evaluator/SM
+Evan/M
+Evandale/M
+evanesce/DGS
+evanescence/SM
+evanescent/Y
+evangel/MS
+evangelic/Y
+evangelical/SM
+evangelicalism/MS
+Evangelina/M
+Evangeline/M
+evangelise/DGSNR
+evangelism/SM
+Evangelist/SM
+evangelist/WSM
+evangelize/DGSNR
+evanish/DGS
+Evans-Pritchard/M
+Evans/M
+Evanston/M
+Evansville/M
+Evanton/M
+evaporable
+evaporate/vGnDSV
+evaporator/SM
+evaporite/SM
+evapotranspiration/SM
+evasion/SM
+evasive/P
+Eve/M
+eve/yMS
+evection/SMO
+Evedeon/M
+Evedon/M
+Eveline/M
+Evelyn/M
+even-handed/YP
+even/YdSPJ
+evener
+evenest
+eveningness/M Noun: uncountable
+Evenley/M
+Evenlode/M
+evensong/MS
+event/6SjGMRp
+eventful/PY
+eventide/MS
+eventual/Y
+eventuality/SM
+eventuate/DSG
+ever
+ever-changing
+ever-increasing
+Everard/M
+Evercreech/M
+Everdon/M
+Eveready/M
+Everest/M
+Everett/M
+everglade/MS
+Everglades/M
+Evergreen/M
+evergreen/SM
+Everhart/M
+Everingham/M
+everlasting/PY
+Everleigh/M
+everliving
+Everly/M
+Everman/M
+evermore
+Evers/M
+Eversden/M
+Eversheds/M
+Eversholt/M
+Evershot/M
+eversible
+eversion/SM
+Eversley/M
+evert/SGD
+Everton/M
+everybody/M
+everyday/P
+everyhow
+Everyman/M
+everyone/M
+everything/M
+everywhen
+everywhence
+everywhere/P
+Evesbatch/M
+Evesham/M
+Evette/M
+Evias/M
+evict/SGD
+evictee/SM
+eviction/SM
+evictor/MS
+evidence/DMGS
+evident/Y
+evidential/Y
+evidentiality/M Noun: uncountable
+Evie/M
+evil/YSMPT
+evildoer/MS
+evildoing/MS
+evince/SDG
+Evington/M
+eviscerate/GDSn
+Evista/M
+evocable
+evocative/P
+evoke/VGuvSnD
+evolute/SM
+evolution/3MyS
+evolutional/Y
+evolutionary/Y
+evolutionism/M Noun: usually uncountable
+evolutionistic
+evolutive
+evolvable
+evolve/RDGSh
+evolvement/SM
+evolvent/SM
+Évora/M
+Evra/M
+evulsion/SM
+evzone/MS
+Ewa/M
+Ewan/M
+Ewart/M
+Ewe/MS
+ewe/RSM
+Ewell/M
+Ewelme/M
+Ewen/MS
+Ewenny/M
+Ewerby/M
+Ewert/M
+Ewhurst/M
+Ewing/M
+Ewshot/M
+Ewshott/M
+eww
+Ewyas/M
+ex
+ex-communist/MS
+ex-con/SM
+ex-partner/SM
+ex-president/SM
+ex-students
+ex-wife/M
+ex-wives
+exabit/SM
+exabyte/SM
+exacerbate/nDSG
+exact/R7PSGYTDk
+exacting/P
+exaction/SM
+exactitude/ISM
+exactness/IS
+exactor/SM
+exaggerate/SnvhiGVD
+exaggerator/SM
+exalt/RnhSDG
+exam/SM
+examinable/A
+examinate/SGDn
+examinational
+examinatorial
+examine/ASGDN
+examinee/SM
+examiner/SM
+example/MDGS
+exanimate/SGD
+exanthema/WM
+exanthemata/M
+exanthematous
+exaptation/SM
+exarch/M
+exarchate/MS
+exarchs
+exascale
+exasecond/SM
+exasperate/DhGnSk
+exbibit/SM
+exbibyte/SM
+Exbourne/M
+Exbury/M
+Excalibur/M
+excavate/DSGn
+excavator/MS
+exceed/SDGkR
+excel/DGS
+Excel/M
+excellence/MS
+excellency/MS
+excellent/Y
+excelsa
+Excelsior/M
+excelsior/SM
+excentric/SM
+except/xDGS
+exception/7MS
+exceptional/UY
+exceptionalism/SM
+exceptionality/SM
+exceptionalness/M
+excerpt/MSDGR
+excerptible
+excerption/MS
+excess/DSuVvMG
+excessive/P
+Exchange/M
+exchange/RGDSB
+Exchequer
+exchequer/MS
+excimer/SM
+excipient/SM
+excise/GDSMNBX
+exciseman/M
+excisemen/M
+excision/MO
+excitability/SM
+excitable/P
+excitant/SM
+excitative
+excitatory Adjective
+excite/lknGLRDSBh
+excited/Uc
+exciting/Uc
+excitingness/M Noun: uncountable
+exciton/MS
+exclaim/yRSDG
+exclamation/MS
+exclave/SM
+exclosure/MS
+exclude/NDSGuXVvR
+exclusion/My
+exclusive/SMP
+exclusivism/SM
+exclusivist/SM
+exclusivity/SM
+excogitate/SGDN
+excommunicate/SnVDG
+excommunicator/SMZ
+excoriate/SGDn
+excrement/SMO
+excrescence/MS
+excrescent/SM
+excreta/M
+excrete/rVynDGS
+excretory/SM
+excruciate/DSnkG
+exculpate/SDnyG
+excurrent
+excursion/3MS
+excursive/PY
+excursus/MS
+excusable/IP
+excusably/I
+excusal/SM
+excusatory Adjective
+excuse/RlGDSM
+Exe/M
+exeat/SM
+exec/MS
+execrable/PY
+execrate/SGVnD
+execratory
+executable/SM
+executant/MS
+execute/SVRxGD
+execution/SMR
+executionary
+executive/MS
+executor/SMO
+executorship/MS
+executrices
+executrix/M
+exegeses
+exegesis/M
+exegete/SM
+exegetic/OY
+exegetics/M Noun: uncountable
+exegetist/MS
+Exelby/M
+Exelon/M
+exempla/M
+exemplar/SM
+exemplarity/SM
+exemplary/PY
+exempli exempli causa
+exemplify/SGRnD
+exemplum/M
+exempt/DGS
+exemption/MS
+exequatur/MS
+exequies
+exequy/M
+exercise/RSBGD
+exercycle/SM
+exergonic
+exergonicity/SM
+exergue/SM
+exert/cGDS
+exertion/SMc
+Exeter/M
+exeunt/Sd
+exFAT/M
+exfiltrate/SGDN
+exfoliant/SM
+exfoliate/SGDN
+exfoliative
+exfoliator/SM
+Exford/M
+Exforge/M
+exhalant/SM
+exhale/GDSn
+Exhall/M
+exhaust/rbkSVvDhuG
+exhaustibility/M Noun: uncountable
+exhaustible
+exhaustion/SM
+exhaustive/P
+exhibit/XVdS
+exhibition/SMR3
+exhibitionism/MS
+exhibitionistic
+exhibitor/SMZ
+exhilarant/MS
+exhilarate/DSVGkn
+exhort/nSDGr
+exhortative
+exhortatory
+exhume/GDSnr
+EXIF/SM Initialism of exchangeable image file format
+exigence/ZSM
+exigency/SM
+exigent/SYr
+exigible
+exiguity/MS
+exiguous
+exiguousness/M Noun: uncountable
+exile/GSDMW
+exilian
+exility/M Noun: uncountable
+eximious/P
+exindusiate
+exine/SM
+exintine/M
+exist/FGSD
+existence/SFM
+existent
+existential/Y3
+existentialism/MS
+existentialistic
+exit/dSM
+Exminster/M
+Exmoor/M
+Exmouth/M
+Exner/M
+Exning/M
+exoatmospheric/Y
+exobiology/MS3w
+exobiotic/MS
+exocentric/SM
+exocrine/SM
+exocytoses
+exocytosis/M
+exocytotic/Y
+Exodus
+exodus/SM
+exogamous
+exogamy/SM
+exogenic
+exogenous/Y
+exoglossic
+ExoMars ExoMars rover (Mars)
+exon/SMW
+exonerate/nSVDG
+exonuclease/SM
+exophora/SMW
+exophthalmia/SMW
+exophthalmos/M Noun: usually uncountable
+exophthalmus/M Noun: uncountable
+exoplanet/SM
+exoplanetary
+exoplanetology/M Noun: uncountable
+exopod/SM
+exopodite/SM
+exopolitics
+exorbitance/MS
+exorbitant/Y
+exorcise/GDS
+exorcism/MS
+exorcist/MS
+exorcize/SDG
+exordia/OM
+exordium/SM
+exoribonuclease/SM
+exoskeletal
+exoskeleton/MS
+exosolar
+exosphere/SMW
+exosporia/M
+exosporium/M
+exostoses
+exostosis/M
+exoteric/OY
+exothermal/Y
+exothermic/Y
+exothermicity/M Noun: usually uncountable
+exotic/PSMY
+exotica/M
+exoticism/SM
+exotoxin/SM
+exotropia/SM
+exp
+expand/BDRXVNvGSu
+expandability/SM
+expanse/SDMGb
+expansibility/MS
+expansion/y3M
+expansionism/MS
+expansiveness/S
+expat/SM
+expatiate/GDSn
+expatriate/DnSG
+expect/nShGDi7k
+expectancy/MS
+expectant/SMY
+expectation/MoO
+expected/UY
+expectedness/U
+expectorant/SM
+expectorate/SGDn
+expedience/SIZ
+expediency/IMS
+expedient/SMY
+expedite/RSDG
+expedition/SyM
+Expeditionary
+expeditionist/MS
+expeditious/PY
+expeditor/SM
+expel/DSn7Gr
+expellee/SM
+expend/Du7VSGvr
+expendability/SM
+expendable/SZ
+expenditure/MS
+expense/MGSD
+expensive/IPY
+expensiveness/IS
+experience/GS
+experience/IMDRB
+experiential/Y
+experientialism/M Noun: uncountable
+experiment/RSGMonD
+experimental/3
+experimentalism/M Noun: usually uncountable
+expert/DGMS
+expert/IPY
+expertise/SGDM
+expertize/SGD
+expiable/I
+expiate/GynSD
+expiator/MS
+expire/ynDSZG
+expiry/MS
+explain/AGDS
+explainable/U
+explainer/SM
+explananda/M
+explanandum/M
+explanans
+explanantia/M
+explanation/SM
+explanatory/Y
+explant/SDN
+expletive/SM
+explicable/I
+explicanda/M
+explicandum/M
+explicate/VSnvGD
+explicator/SMZ
+explicit/PY
+explode/SDRGuVv
+exploit/RVM7GnDS
+exploitative
+exploited/Uf
+explorable
+explorative
+explore/SnDRyG
+explosion/SM
+explosive/SMP
+expo/MS
+exponent/SM
+exponential/YSM
+exponentiate/GnDS
+exponible
+export/DRGBnMS
+expos/rdS
+expose/fDScG
+exposé/SM
+exposit/yXN
+exposited
+exposition/M
+expositor/SM
+expostulate/nDGS
+expostulatory
+exposure/cSMf
+expound/SRDG
+express/rSvbuDGYV
+expressibility/I
+expressible/IY
+expressibly/I
+expression/SMpO
+expressionism/SM
+expressionist/WSM1
+expressionless/YP
+expressive/IPY
+expressiveness/SI
+expressivism/M Noun: usually uncountable
+expressivist/SM
+expressivity/M Noun: usually uncountable
+expropriate/SGDn
+expropriator/MS
+expulsion/SM
+expulsive
+expunction/MS
+expunge/SGDr
+expurgate/SDGn
+expurgator/MSZ
+exquisite/MSYP
+exsanguinate/SGDN
+exsanguine
+exsert/DGS
+exsolution/SM
+exsolve/SGD
+exsufflation/SM
+ext
+extant
+extemporaneous/YP
+extemporary/YP
+extempore/Qs89q-S
+extend/iDRVvhGNSxubX
+extendability/SM
+extendable
+extended-play
+extendibility/M Noun: uncountable
+extendible/S
+extensibility/M Noun: usually uncountable
+extensible/I
+extensile
+extension/M3
+extensive/FY
+extensiveness/SM
+extenso
+extensometer/SM
+extensor/SM
+extent/SM
+extenuate/nGSD
+extenuatory Adjective
+exterior/MYS
+exteriorise/SGDn
+exteriority/MS
+exteriorize/SGDn
+exterminate/DnSG
+exterminator/SMZ
+external/3qQ-8Ys9SM
+externalism/SM
+externality/SM
+exteroceptive/Y
+exteroceptor/SM
+extinct/V
+extinction/SM
+extinguish/GR7SD
+extinguishable/I
+extinguishment/SM
+extirpate/GSnDV
+extirpator/SM
+extol/SDGr
+Exton/M
+extorsively
+extort/GDVSr
+extortion/MSR3y
+extortionate/Y
+extortionism
+extra-curricular
+Extra/M
+extra/SM
+extracellular/Y
+extrachromosomal/Y
+extracorporeal
+extract/G7VDSMv
+extraction/SM
+extractor/SM
+extracurricular/SY
+extradiegetic
+extraditable
+extradite/GDS
+extradition/SM
+extrados
+extrafamilial
+extrafloral
+extragalactic
+extrajudicial/Y
+extralegal/Y
+extralinguistic
+extramarital
+extrametrical
+extramundane
+extramural
+extramusical
+extraneous/PY
+extranet/SM
+extranuclear
+extraocular
+extraordinaire
+extraordinary/PYS
+extrapolate/SDnGV
+extraposition/SM
+extrapulmonary
+extrapyramidal
+extrasensory
+extrasolar
+extrasystole/SM
+extraterrestrial/SM
+extraterritorial
+extraterritoriality/SM
+extratropical
+extrauterine
+extravagance/SM
+extravagancy/SM
+extravagant/Y
+extravaganza/MS
+extravasate/SNDG
+extravasations
+extravascular
+extravehicular
+extraversion/SM
+extravert/DSM
+extrema/O
+Extremadura/M
+extreme/PTY3SM
+extremis
+extremism/MS
+extremity/SM
+extremophile/SM
+extremum/S
+extricable/I
+extricate/GnDS
+extrinsic/Y
+extropian/SM
+extropy/M
+extrorse
+extroversion/SM
+extrovert/DMSG
+extrude/GSDVr
+extrusile
+extrusion/SM
+exuberance/SM
+exuberant/Y
+exudate/MS
+exudative
+exude/SnDG
+exult/nkGDS
+exultancy/M
+exultant/Y
+exurb/MS
+exurban Adjective
+exurbanite/SM
+exurbia/SM
+exuvia/MO
+exuviae/M
+exuviate/DGS
+exuviation/MS
+Exxon/M
+Eyam/M
+Eyck/M
+Eydon/M
+eye-catching
+eye-level
+eye-liner/MS
+eye-opener/SM
+eye-opening
+eye-teeth
+eye-tooth/M
+eye/7RSpMD6iG
+Eye/M
+eyebags
+eyeball/DGSM
+eyeblack/M Noun: uncountable
+eyebright/SM
+eyebrow/SM
+eyedropper/MS
+eyeful/SM
+eyeglass/SM
+eyehole/SM
+eyelash/MS
+eyelet/MdS
+eyelid/SM
+eyeline/MSR
+Eyemouth/M
+eyepatch/SM
+eyepiece/MS
+eyeshadow/SM
+eyeshine/SM
+eyeshot/M Noun: usually uncountable
+eyesight/MS
+eyesore/SM
+eyespot/SM
+eyestalk
+eyestripe/SM
+Eyetie/MS
+eyewall/SM
+eyeward/S
+eyewash/SMr
+eyewater/M Noun: usually uncountable
+eyewear/M Noun: uncountable
+eyewitness/MS
+Eyeworth/M
+Eyke/M
+Eynesbury/M
+Eynon/M
+Eynsford/M
+Eynsham/M
+eyot/SM
+Eype/M
+eyra/MS
+Eyre/M
+eyre/MS
+Eyrewell/M
+eyrie/SM
+Eythorne/M
+Eyton/M
+Ezekiel/M
+ezetimibe/M Noun: uncountable
+Ezra/M
+Ezrin/M
+Ezron/M
+Ezzati/M
+f-stop/SM
+f/F7
+fa/MS
+FAA/M
+Fab/M
+fab/SGD
+Fabaceae Taxonomic family
+Fabales Taxonomic order
+Faber/M
+Fabergé/M
+Fabián/M
+Fabian/SM
+Fabianism/M Noun: uncountable
+Fabianist/MS
+Fábio/M
+Fabis/M
+Fabius/M
+fable/MSDGr
+fabliau/M
+fabliaux/M
+Faboideae Taxonomic subfamily
+fabric/SnM
+Fabricant/M
+fabricate/DSKnG
+fabricator/SM
+fabrosaur/SM
+fabrosaurid/SM
+fabulate/SGDn
+fabulator/SM
+fabulist/SM
+fabulosity/SM
+fabulous/PY
+Fabus/M
+Fabyan/M
+fac
+facade/SM
+façade/SM
+Faccombe/M
+face-saver
+face-saving
+face-to-face
+face/CGKDASe
+face/M
+faceache/SM
+Facebook/rDGM
+Faceby/M
+facecloth/SM
+faceless/P
+facelift/SM
+facemask/SM
+facepalm/SGD
+faceplate/MS
+facer/KMC
+facer/MS
+facet/SdM
+facetiae/M
+facetious/YP
+faceworker/SM
+Fach/M
+facia/SM
+facial/YS
+facie/S
+faciendum/M
+facile/YP
+facilitate/yDGSnV
+facilitator/SM
+facility/SM
+facing/MS
+facsimile/MDS
+facsimileing
+fact/SMyxYZ
+facta/M Plural of factum
+factice/M
+faction/MS
+factionalise/SGD
+factionalism/SM
+factionalize/SGD
+factious/YP
+factitious/Y
+factitiousness/M Noun: uncountable
+factitive/Y
+factive
+facto
+factoid/SM
+factor/Q8t+d-MqS
+factorage/SM
+factorial/SM
+factoring/MS
+Factortame/M
+factory/SM
+factotum/SM
+factotumship/M
+factrix/SM
+factsheet/SM
+factual/YP3
+factualism/M Noun: uncountable
+factuality/SM
+factum/MS
+facture/SM
+facula/M
+faculae/M
+facular
+facultative/Y
+faculty/SM
+fad/rSdM
+Faddiley/M
+faddish
+faddism/SM
+faddist/MS
+faddy/T
+fade-in/SM
+fade-out/SM
+fade-up
+fade/hSp
+fadeout/SM
+fading/M
+Fadmoor/M
+fado/SM
+Fadus/M
+faecal
+faeces
+Faenor/M
+faerie/SM
+Faeroe/M
+Faeroese/M
+faery/SM
+faff/GDS
+fag/SDGM
+Fagan/MS
+Fagatogo/M
+Fagen/M
+Fagerberg/M
+Faget/M
+faggot/dSM
+faggoting/M
+Fagin/MS
+fah
+Fahd/M
+Fahrenheit/M
+faïence/S
+Faifley/M
+fail-safe
+fail/SDGkJ
+Failand/M
+failing/SMY
+faille/SM
+failover/SM
+failure/MS
+fain
+faint-hearted/YP
+faint/RGSPYTD
+fair-minded
+fair-weather
+Fair/M
+fair/MYJpGSPZTD~
+Fairbairn/M
+Fairbanks/M
+Fairborn/M
+Fairburn/M
+Fairchild/M
+faire "savoir faire"
+Fairfax/M
+Fairfield/MS
+Fairford/M
+fairgoer/SM
+fairground/SM
+Fairhall/M
+Fairhaven/M
+Fairhope/M
+fairing/SM
+fairlead/SM
+Fairlie/M
+Fairlight/M
+Fairman/M
+Fairmilehead/M
+Fairmont/M
+Fairmuir/M
+Fairport/M
+Fairstead/M
+Fairview/M
+fairwater/SM
+fairway/MS
+fairy/MS
+fairyism/M Noun: usually uncountable
+fairyland/SM
+fairytale/SM
+Faisal/M
+Faison/M
+faith/6DjpMGS
+Faith/M
+faithful/UY
+faithfulness/SM
+faithless/PY
+Fajardo/M
+fajita/SM
+fake/RSDGyM
+Fakenham/M
+Faki/M
+fakie/SM
+fakir/SM
+Fala/M
+falafel/M
+Falagueira/M
+Falange
+Falangism/M Noun: uncountable
+Falangist/MS
+falcate/D
+falchion/MS
+falciform
+falciparum/M Noun: uncountable
+Falco/M
+Falcoff/M
+Falcon/M
+falcon/SryM
+falconet/MS
+falconry/SM
+falderal/SM
+Faldingworth/M
+faldstool/MS
+Falfield/M
+Falk/M
+Falkenham/M
+Falkirk/M
+Falkland/SM
+Falkner/M
+fall's/ce
+fall-back
+Fall/MS
+fall/RbMGS
+fallacious/PY
+fallacy/SM
+fallalery/M Noun: usually uncountable
+fallback/SM
+fallen
+fallfish/MS
+fallibility/ISM
+fallible/PY
+fallibly/I
+Fallin/M
+falloff/SM
+Fallon/M
+fallopian Adjective
+fallout/MS
+fallow/DPSG
+Fallows/M
+Fallsburg/M
+Falmer/M
+Falmouth/M
+false/TYP
+falsehood/SM
+falsetto/MS
+falsework/M Noun: usually uncountable
+falsi
+falsifiability/M Noun: usually uncountable
+falsificationism/M Noun: uncountable
+falsify/RBGnDS
+falsity/SM
+Falstaff/M
+Falstaffian Adjective
+Falstone/M
+falter/rJdSk
+faltering/UY
+Faludi/M
+falutin
+faluting
+Falwell/M
+Fambridge/M
+fame/MDSz
+familial/Y
+familiar/9Qsq8-SYP
+familiarise/k
+familiarity/MS
+familiarize/k
+famille/M
+family/MS
+famine/SM
+famish/DGS
+famotidine/M Noun: uncountable
+famous/YP
+famuli/M
+famulus/M
+fan/DSMGZp
+fanatic/MYS
+fanatical/P
+fanaticism/MS
+fanaticize/DGS
+fanbase/SM
+fanboy/SMGD
+fancast/SM
+fanciable
+fanciful/P
+fancy-free Adjective
+fancy/RTjPYDSM6G
+fancywork/SM
+fandabidozi Adjective
+fandangle/MS
+fandango/MS
+fandom/SM
+fane/MS
+fanfare/MS
+fanfaronade/MS
+fanfold/SGD It is noun only in US
+fang/SDMp
+Fangfang/M
+Fangfoss/M
+fangirl/SMGD
+fanlight/MS
+fanner/MS
+Fannin/M
+Fanning/M
+Fanny
+fanny/MSGD
+Fano/M
+fanout/SM
+fantabulous/Y
+fantail/SM
+fantasia/MS
+fantastic/YO
+fantasticality/SM
+fantasticate/DGS
+fantastication/MS
+fantasy/3Q8Ws9DSGM
+Fante/M
+Fanti/MS
+fanzine/SM
+FAQ/SM
+faquir/MS
+far-distant
+far-fetched
+far-flung
+far-off
+far-ranging
+far-reaching
+far-sighted/YP
+far/d
+farad/MSW
+Faraday/M
+faraday/SMW
+Farage/M
+Faragher/M
+farandole/MS
+faraway
+Farber/M
+farce/w1MS
+Farcet/M
+farceur/MS
+farcicality/SM
+farcy/SM
+fardel/MS
+Fardre/M
+fare/SMr
+Fareham/M
+Farewell/M
+farewell/MDGS
+Farey/M
+farfetchedness/M Noun: uncountable
+Farforth/M
+Fargo/M
+Farhad/M
+Faria/M
+Faribault/M
+farina/MS
+farinaceous/Y
+Faringdon/M
+Farington/M
+Farkas/M
+farl/MS
+Farlam/M
+Farleigh/M
+Farlesthorpe/M
+Farley/M
+Farlington/M
+Farlow/M
+Farm/M
+farm/SDRGM
+Farmborough/M
+Farmcote/M
+Farmers/M
+Farmersville/M
+farmhand/SM
+farmhouse/MS
+farming/SM
+Farmington/M
+farmland/MS
+farmstead/MS
+farmstock/M Noun: uncountable
+farmworker/SM
+farmyard/SM
+Farnborough/M
+Farndale/M
+Farndish/M
+Farndon/M
+Farne
+Farnell/M
+farness/M Noun: usually uncountable
+Farnham/M
+Farnhill/M
+Farningham/M
+Farnley/M
+Farnsfield/M
+Farnsworth/M
+Farnworth/M
+Faro/M
+faro/M
+Faroe/M
+Faroese/M
+farofa/SM
+farouche
+Farquhar/M
+Farquharson/M
+Farr/M
+farraginous
+farrago/MS
+Farragut/M
+Farrah/M
+Farrakhan/M
+Farrell/M
+farrier/SM
+farriery/MS
+Farringdon/M
+Farrington/M
+farrow/MDSG
+farruca/MS
+farseeing
+Farsi/M
+farsighted
+fart/SDGM
+farther
+farthermost
+farthest
+farthing/SM
+farthingale/MS
+Farthinghoe/M
+Farthingstone/M
+fartlek/M
+Farway/M
+Faryl/M
+Farzan/M
+fascia/MSO
+fasciated
+fasciation/MS
+fascicle/DSM
+fascicular
+fasciculate/Dn
+fascicule/SM
+fasciculi/M
+fasciculus
+fasciitis
+fascinate/DGSnk
+fascinator/MS
+fascine/SM
+fascism/SM
+fascist/WSM
+fash/SGDJ
+Fashanu/M
+fashion/RSMDl7G
+fashionable/PS
+Fashoda/M
+Faso/M
+Fass/M
+fast-forward
+fast/TGPSDM
+fastback/SM
+fastball/SM
+fasten/dASU
+fastener/SM
+fastening/MS
+fastidious/YP
+fastigiate/SM
+FAT/M
+fat/SoYPTMGZD2p
+FAT12/M
+FAT16/M
+FAT32/M
+FAT64/M
+Fatah/M
+fatal/3P
+fatale/S femme fatale
+fatalism/MS
+fatalist/W1
+fatality/SM
+fate/jS6DM
+fateful/P
+fathead/MSDi
+father-in-law/M
+father/dpSYM
+fatherhood/SM
+fatherland/SM
+fatherlessness/M Noun: uncountable
+fatherlike
+fatherly/P
+fathers-in-law/M
+fathership/M
+fathom/7dMpS
+Fathometer/MS
+fatidic Adjective
+fatigue/kDMSG
+Fatiha/MS
+Fatihah/MS
+Fátima/M
+Fatima/M
+Fatimid/MS
+Fatimite/MS
+fatling/SM
+fatso/MS
+fatstock/M
+fatten/drS
+fattish
+fattism/M Noun: uncountable
+fatty/TSMP3
+fatui/M
+fatuitous
+fatuitousness/M Noun: uncountable
+fatuity/SM
+fatuous/PY
+fatuus/M
+fatwa/MS
+faubourg/MS
+Fauldhouse/M
+Faulk/M
+Faulkbourne/M
+Faulkner/M
+fault-finder/SM
+fault-finding/M Noun: uncountable
+fault/CSDGM
+faultless/YP
+faulty/PTY
+faun/SM
+fauna/SMO
+faunistic
+Fauntleroy/M
+Fauquier/M
+Faurisson/M
+Faust/M
+Faustian/Y
+Faustus/M
+fauteuil/MS
+Fauve/MS
+fauvism/M Noun: uncountable
+Fauvist/SM
+faux
+fav
+fave/SM
+favela/MS
+Favell/M
+Faversham/M
+favicon/SM
+favipiravir/M Noun: uncountable
+Favona/M
+favour/ERSMDG
+favour/p
+favourable/SYMP
+favoured/SYMP
+favouring/SMY
+favourite/UMS
+favouritism/MS
+Favre/M
+Favreau/M
+Fawcett/M
+Fawddwy/M
+Fawdington/M
+Fawfieldhead/M
+Fawkes/M
+Fawkham/M
+Fawler/M
+Fawley/M
+Fawlty/M
+fawn/SRkDGM
+Fawr/M
+Fawsley/M
+fax/SGMD
+Faxton/M
+fay/SM
+Fayette/M
+Fayetteville/M
+Fazakas/M
+faze/DGS
+Fazeley/M
+Fazlollah/M
+FBI/M
+FCC/SM
+FDA/M
+Fe/M
+fealty/SM
+fear/6MpGDjS
+Fearby/M
+fearful/TP
+fearless/PY
+Fearn/M
+Fearnall/M
+Fearon/M
+fearsome/PY
+feasibility/MS
+feasible/PY
+feast/RDMGS
+feat/SCM
+feather-bed/GD
+feather-bedding/M
+feather-brain/MD
+feather-edge
+feather-head/D
+feather-light
+feather-stitch
+feather/drpSZM
+featherback/SM
+featheriness/M
+feathering/M
+Featherston/M
+Featherstone/M
+featherweight/SM
+feathery/T
+feature/DMGSp
+featurette/SM
+Feb
+febrifuge/SMO
+febrile/Y
+febrility/SM
+February/SM
+Fechan/M
+Fechin/M
+Feckenham/M
+feckless/YP
+feculence/SM
+feculent Adjective
+fecund/ng
+fecundate/SDG
+fecundity/SM
+fed/SM
+Fed/SM
+fed/Ufc
+fedayee/SM
+fedayeen/M Plural of fedayee
+Federal/M
+federal/SM3Y
+federalise/SGDn
+federalism/MS
+federalize/SGDn
+federate/FGnSD
+federationist/SM
+federative/Y
+Federer/M
+Federico/M
+Fedewa/M
+FedEx/M
+Fedor/M
+fedora/MS
+fee/GMYSd
+feeble-minded
+feeble/TPY
+feed/GRSM
+feedback/SM
+feeding/SM
+feedlot/SM
+feedstock/SM
+feedstuff/SM
+feel/GkRSJ
+feeling/PM
+feelthy Adjective
+Feeny/M
+Feering/M
+feet/M
+Feigin/M
+feign/RGSD
+feijoa/MS
+feijoada/SM
+Feilding/M
+Fein
+Féin/M
+Feiner/MS
+Feinman/M
+Feinstein/SM A surname​
+feint/SDMG
+feis/M
+feiseanna/M
+Feistel/M
+feistiness/M
+feisty/T
+felafel/M
+Felbridge/M
+Felbrigg/M
+felch/SGD
+Felder/M
+Feldman/M
+feldspar/SM
+feldspathic Adjective
+feldspathoid/MS
+Felice/M
+Felicia/M
+Feliciana/M
+felicific
+felicitate/DGSn
+felicitatis
+felicitous/YP
+felicity/ISM
+Felin-fach/M
+Felindre/M
+feline/SMY
+Felinheli/M
+felinity/M Noun: usually uncountable
+Felipe/M
+Felix/M
+Felixkirk/M
+Felixstowe/M
+Felkirk/M
+fell/GSTD
+Fell/MS
+fella/SM
+fellable
+fellage
+fellah/SM
+fellahin/M
+fellate/SGD
+fellatio/MS
+fellator/SM
+Felley/M
+Felliscliffe/M
+fellmonger/MS
+felloes
+fellow-traveller/MS
+fellow/MS
+fellowship/SM
+Felmersham/M
+Felmingham/M
+felon/SM
+felonious/PY
+felonry/SM
+felony/SM
+Felpham/M
+Felsham/M
+felsic/SM
+felspar/M
+Felsted/M
+felt-tip/SM
+felt/GSD
+Feltham/M
+Felthorpe/M
+felting/SM
+Felton/M
+Feltwell/M
+felty
+felucca/MS
+felwort/MS
+fem/SM
+female/PSM
+femalia/M
+femicide/SM
+Femidom/M
+feminacy/SM
+feminal
+feminality/SM
+feminate
+femineity/M
+feminine/PYSM
+femininity/SM
+feminise/nSGD
+feminism/MS
+feminist/SM
+feminity/SM
+feminize/nSGD
+femme/SM
+femora/MO
+femoris
+femtobarn/SM
+femtocell/SM
+femtochemistry/M Noun: uncountable
+femtosecond/SM
+femur/MS
+Fen/MS
+fen/MS
+Fenby/M
+fence/RSDMJGp
+fencepost/SM
+Fenchurch/M
+fencible/MS
+fencing/SM
+Fencote/M
+Fencott/M
+fend/CGDRS
+Fendalton/M
+fenestella/MS
+fenestra/M
+fenestrae/M
+fenestrate/D
+fenestration/CSM
+Feng/M
+Fenham/M
+Fenholt/M
+Fenian/SM
+Fenianism/SM
+Fenimore/M
+Feniton/M
+Fenix/M
+fenland/SM
+Fenn/M
+fennec/SM
+fennel/SM
+Fenner/M
+Fennoscandia/M
+fenny
+Fenny/M
+fenofibrate/SM
+Fenris/M
+Fensal
+Fenstanton/M
+fentanyl/SM
+Fentiman/M
+Fenton/M
+Fentress/M
+fenugreek/M
+fenugreek/M Noun: usually uncountable
+Fenwick/M
+Feock/M
+fer/KLFC
+feral/SM
+Ferber/M
+ferberite/SM
+Ferdinand/M
+feretory/SM
+Fergie/M
+Fergus/M
+Ferguslie/M
+Ferguson/M
+Fergusson/M
+Ferintosh/M
+Fermanagh/M
+Fermat/M
+ferment/nDGR7
+fermentative
+fermi/M
+Fermi/M
+fermion/MSW
+fermium/M Noun: uncountable
+Fermont/M
+fern/MZS
+Fernandes/M
+Fernandez/M
+Fernández/M
+Fernandina/M
+Fernando/M
+fernbird/SM
+fernbrake/SM
+Ferndale/M
+Ferndown/M
+fernery/MS
+Fernham/M
+Fernhill/M
+Fernhout/M
+Fernhurst/M
+Fernie/M
+Fernley/M
+fernlike
+Fernseed/M
+Fernside/M
+Fernwood/M
+ferny/T
+ferocious/YP
+ferocity/SM
+ferox
+Ferranti/M
+Ferrara/M
+Ferrari/MS
+Ferraro/M
+ferrate/MS
+Ferré/M
+Ferreira/M
+Ferrensby/M
+Ferrer/MS
+ferret/rdSM
+ferriage/M
+Ferriby/M
+ferricyanide/SM
+ferriferous
+ferrimagnet/SMW
+ferrimagnetism/M Noun: uncountable
+Ferring/M
+Ferris/M
+ferrite/MSW
+ferritin/SM
+ferro
+ferrocene/SM
+ferroconcrete/M Noun: uncountable
+ferrocyanide/SM
+ferroelectric/SMY
+ferroelectricity/M Noun: uncountable
+ferrofluid/SM
+ferrohydrodynamic/S
+ferromagnesian
+ferromagnet/SMW1
+ferromagnetism/SM
+ferromanganese/SM
+ferrometer/SM
+ferrous
+ferruginous
+ferrule/DMSG
+Ferry/M
+ferry/SGmWDM
+Ferrybank/M
+ferryboat/MS
+Ferryden/M
+Ferryhill/M
+Ferrymead/M
+Ferryside/M
+Fersfield/M
+fertile/Ps-Q89qY
+fertilisable
+fertility/ISM
+fertilizable
+ferula/MS
+ferule/SDGM
+fervency/SM
+fervent/Y
+fervid/PY
+fervour/MS
+Ferwig/M
+Fescennine
+fescue/SM
+fess/DGM
+fess/SF
+Fessler/M
+fest/SM
+festal/Y
+fester/IS
+festered
+festering
+festival/MS
+festive/YP
+festivity/SM
+festoon/SMGD
+Festschrift/MS
+Festschriften
+Festus/M
+feta/MSO
+fetch/DRkSG
+Fetcham/M
+fete/SGD
+fête/SM
+feticide/M
+fetid/SMYP
+fetish/M3S
+fetishise/SGDN
+fetishism/MS
+fetishistic
+fetishize/SGDN
+Fetlar/M
+fetlock/MS
+fetor/MS
+fetter/M
+fetter/USd
+Fetterangus/M
+Fettercairn/M
+Fetteresso/M
+fetterlock/MS
+fettle/SDG
+fettler/MS
+fettling/SM
+fettuccine/M Noun: usually uncountable
+fettucini/M Noun: usually uncountable
+fetus/SM
+feud/DMSoGO
+feudalism/SM
+feudalist/SMW
+feudality/SM
+feudalization/MS
+feudalize/DGS
+feudatory/SM
+Feughside/M
+feuilleton/MS
+fever/SdM
+feverfew/SM
+feverish/YP
+feverous
+few/TP
+Fewston/M
+fey/T
+feyness/SM
+Feynman/M
+fez/MD
+fezzes
+ff
+Ffestiniog/M
+Fflur/M
+Fforest/M
+Fi/S
+FIA/M Initialism of Fédération Internationale de l'Automobile
+fiacre/MS
+fiancé/SM
+fiance/SM
+fiancée/MS
+fiancee/SM
+fianchetto/DGM
+fianchettoes
+Fianna/M
+fiasco/SM
+fiat/MS
+fib/DRSG
+Fibonacci/M
+fibre/MSDp
+fibreboard/SM
+fibrefill/SM
+fibreglass/M Noun: usually uncountable
+fibrescope/SM
+fibril/MnS
+fibrillar/Z
+fibrillate/SGDn
+fibrin/SM
+fibrinogen/SMW
+fibrinoid/SM
+fibrinolysin/SM
+fibrinolytic/SM
+fibro/MS
+fibroblast/MS
+fibrocartilage/SM
+fibrocystic
+fibrogenesis/M Noun: uncountable
+fibroid/SM
+fibroin/SM
+fibrolamellar
+fibroma/SM
+fibromata/M
+fibromatous
+fibromuscular
+fibromyalgia/SM
+fibromyxoid/SM
+fibroses
+fibrosis/M
+fibrositic
+fibrositis/M
+fibrosus
+fibrotic
+fibrous/PY
+fibster/MS
+fibula/M
+fibulae/M
+fibular
+fiche/SM
+fichu/SM
+Ficicchia/M
+fickle/PTZ
+fictile
+fiction/MSOo^
+fictional/Q8q-
+fictionalism/SM
+fictionality/SM
+fictioneer/SM
+fictionist/SM
+fictitious/YP
+fictive/YP
+ficus/SM
+Fiddington/M
+fiddle/RGMJDS
+fiddleback/SM
+Fiddler's
+fiddlestick/SM
+fiddly/T
+fide bona fide
+FIDE/M Fédération Internationale des Échecs (“International Chess Federation”)
+fideism/SM
+fideist/SMW
+Fidel/M
+Fidelio/M
+fidelity/IMS
+fides bona fides
+Fidgen/M
+fidget/SdZ
+Fido/M
+fiducial/Y
+fiduciary/MS
+fidus
+fie/y
+fief/MS
+fiefdom/SM
+field/DG
+Field/M
+field/SeRIM
+fieldcraft/M Noun: uncountable
+fieldfare/SM
+Fielding/M
+Fields/M
+fieldsman/M
+fieldsmen/M
+fieldstone/SM
+fieldward
+fieldwork/SMR
+Fienberg/M
+fiend/MS
+fiendish/PY
+fiendlike
+fierce/TPY
+fiery/TYP
+fiesta/MS
+Fifa/M
+FIFA/M Fédération Internationale de Football Association (“International Federation of Association Football”)
+Fife/M
+fife/RSDMG
+Fifehead/M
+Fifield/M
+FIFO
+fifteen/SHM
+fifth-generation
+fifth/Y
+fifty-eight/H
+fifty-fifty
+fifty-first/S
+fifty-five/H
+fifty-four/H
+fifty-nine/H
+fifty-one
+fifty-onefold
+fifty-second/S
+fifty-seven/H
+fifty-six/H
+fifty-three/H
+fifty-two
+fifty-twofold
+fifty/HMS
+fiftysomething/SM
+fig/LMDGS
+Figaro/M
+figbird/SM
+figgy/T
+Figheldean/M
+fight/RSJGM
+fightback/SM
+fighter-bomber/SM
+fighter/IMS
+fighting/IS
+Figueiredo/M
+Figuerola/M
+figura/MO
+figurae/M
+figurant/MS
+figurante/MS
+figuration/MK4F
+figuration/O
+figurations/4
+figurative/PY
+figure/EG4KSFD
+figure/Mp
+figurehead/SM
+figurer/SMF
+figurine/MS
+figuring/S
+figwort/MS
+Fiji/M
+Fijian/SM
+filagree/M
+filagreed
+filament/DSM
+filamentary Adjective
+filamentous
+filaria/OM
+filariae/M
+filariasis/M
+filature/SM
+filbert/MS
+Filby/M
+filch/DSG
+file/CaSAGD
+file/M
+filename/SM
+filer/CSM
+filesize/SM
+filespace/M Noun: uncountable
+filesystem/SM
+filet/SM
+Filey/M
+filgrastim/M Noun: uncountable
+Filgrave/M
+filial/UY
+filiation/SM
+filibeg/MS
+filibuster/drSM
+Filiep/M
+filigree/GMS
+filing/SM
+Filioque/M
+Filipa/M
+Filipe/M
+Filipina/MS
+Filipino/SM
+filking
+Filkins/M
+fill/JDRYGS7
+Fillan/M
+filled/cAU
+Filleigh/M
+fillet/SdM
+filleting/M
+filling/M
+Fillingham/M
+fillip/MS
+Fillmore/M
+Fillongley/M
+fills/Ac
+filly/MS
+film-going
+film-maker/SM
+film-making/M
+film-strip/MS
+film/ZSDMGW
+filmdom/M Noun: uncountable
+filmgoer/SM
+filming/SM
+filmography/SM
+filmset/GR
+filmstrip/SM
+filmy/TP
+filo/SM
+Filofax/SM
+Filon/M
+Filoni/M
+filopodia/O^
+filopodium/M
+filovirus/SM
+filter-tipped
+filter/7SrndMN
+filth/2ZSMz
+filthy/GTDP
+Filton/M
+filtrable
+filtrate/IGDnS
+filtrate/M
+Fimber/M
+fimbria/MO
+fimbriae/M
+fin/1SdMwoGZD7p
+finagle/RSGD
+final/Q83q-S
+finale/SM
+finalism/SM
+finalistic
+finality/SM
+finance/ASGD
+finance/M
+financial/YS
+financier/SDGM
+financing/SM
+finasteride/M Noun: uncountable
+Finborough/M
+finch/SM
+Fincham/M
+Finchampstead/M
+Finchingfield/M
+Finchley/M
+Finck/M
+find/JRGS7
+Findern/M
+Findhorn/M
+finding/M
+Findlay/M
+Findlen/M
+Findo/M
+Findochty/M
+Findon/M
+fine-grained
+fine-tune/SDG
+fine/CFSDAG
+fine/MY
+Finedon/M
+fineness/SM
+finer/FCA
+finery/MSA
+finespun
+finesse/MS
+finest
+Finet/M
+Fingal/M
+Fingalian/M
+finger-plate
+finger/prdSMJ
+fingerboard/SM
+fingering/M
+fingerling/MS
+fingermark/SM
+fingernail/MS
+fingerpick/SGD
+fingerprint/DGSMr
+fingertip/MS
+Fingest/M
+Finghall/M
+Fingringhoe/M
+Finham/M
+finial/SM
+finicality/SM
+finicalness/M
+finicky/TP
+fining/M
+finis/SM
+finish/ASGD
+finisher/SM
+finishing/SM
+Finisterre/M
+finitary
+finite/CPYI
+finite/S
+finitism/M Noun: uncountable
+finitist/SM
+finitude/SM
+Fink/M
+Finland/M
+Finlay/M
+Finlayson/M
+Finley/M
+Finmere/M
+Finn/SMW
+finnan/M
+Finnegan/M
+finnesko/M
+Finney/M
+Finningham/M
+Finningley/M
+Finnish/M
+finny/T
+fino/MS
+Finsbury/M
+Finstall/M
+Finsthwaite/M
+Finstock/M
+Finstown/M
+fintech/M
+fintechs
+Fintona/M
+Fintray/M
+Fintry/M
+Finvoy/M
+Fiona/M
+Fionnan/M
+fiord/MS
+Fiore/M
+fioritura/M
+fioriture/M
+fipple/MS
+fir/rdS
+Firbank/M
+Firbeck/M
+Firby/M
+fire-break/SM
+fire-control
+fire-eater/SM
+fire-fighter/SM
+fire-hose/MS
+fire-setting/M
+fire-storm/MS
+fire-trap/SM
+fire-walker/SM
+fire-walking/M
+fire-water
+fire/aSGD
+fire/Mp
+firearm/SM
+fireback/SM
+fireball/SMGr
+firebase/SM
+fireblight/M Noun: uncountable
+firebomb/DMGS
+firebox/MS
+firebrand/SM
+firebrat/SM
+firebreak/SM
+firebrick/SM
+firebug/SM
+firecracker/MS
+firecrest/SM
+firedamp/SM
+firedog/SM
+firefight/SMGr
+firefish/SM
+firefly/SM
+Firefox/M
+fireguard/SM
+firelight/Mr
+firelit
+firelock/SM
+fireman/M
+firemen/M
+firepit/SM
+fireplace/MS
+firepower/SM
+fireproof/SGD
+fireroom/SM
+fireship/SM
+fireside/SM
+firesider/M
+Firestone/M
+firestop/SM
+firestorm/SM
+firethorn/SM
+firewall/SDGM
+fireweed/SM
+FireWire/M
+firewood/SM
+firework/MS
+firing/MS
+firkin/MS
+Firle/M
+firm/DGSMTY
+firmament/SMO
+firman/MS
+Firmilian/M
+firmness/SM
+Firmo/M
+firmware/SM
+firry
+Firsby/M
+Firsdown/M
+first-aid
+first-born
+first-class
+first-day
+first-floor
+first-hand
+first-name
+first-rate
+first-strike
+first/SY
+firstborn/SM
+Firth/M
+firth/MS
+fisc/MS
+fiscal/SMY
+fiscality/SM
+Fischer/M
+fish-bowl/MS
+fish-hook/SM
+fish-pond/SM
+fish/BDRZGM2zyS
+Fish/M
+Fishbourne/M
+fishbowl/SM
+fishcake/SM
+fisher/m5
+Fisher/MS
+fisherfolk/SM
+Fishergate/M
+Fisherton/M
+Fisherwick/M
+fishery/SM
+fisheye/SM
+Fishguard/M
+fishing/SM
+Fishkill/M
+Fishlake/M
+Fishley/M
+fishlike
+Fishman/M
+fishmeal/SM
+fishmonger/SM
+fishnet/SM
+fishplate/SM
+fishtail/DMSG
+fishtank/SM
+Fishtoft/M
+Fishwick/M
+fishwife/M
+fishwives
+fishy/PT
+Fisichella/M
+Fisk/M
+fisk/SGD
+Fiske/M
+Fiskerton/M
+fissile
+fissility/SM
+fission/SMDG
+fissionable/SM
+fissiparity/M
+fissiparous/Y
+fissiparousness/M Noun: uncountable
+fissure/GDSM
+Fissurella Taxonomic genus
+fissurella/SM
+fist/6SGMDW
+fistfight/MS
+fistful/MS
+fisticuff/SMG
+fistula/MS
+fistular
+fistulous
+fit's/Aea
+fit/RPTJSG6YDjM
+Fitch/M
+fitch/M
+Fitchard/M
+Fitchburg/M
+fitchew/MS
+fitful/P
+fitment/SM
+fits/Aae
+Fitt/M
+Fittelton/M
+Fittick/M
+fitting/PY
+Fittipaldi/M
+Fittleton/M
+Fittleworth/M
+Fitz/M
+Fitzedward/M
+FitzEustace/M
+Fitzgerald/M
+Fitzhead/M
+Fitzherbert/M
+Fitzpaine/M
+Fitzpatrick/M
+FitzRoy/M
+Fitzroy/M
+Fitzwarren/M
+Fitzwilliam/M
+five-a-side
+five-finger
+five-fold
+five-spice
+five-year
+Five/M
+five/SHMR
+Fivehead/M
+Fivemiletown/M
+fivesome/SM
+fivestones/M Noun: uncountable
+fix/KDS4G
+fixable
+fixate/DSnVG
+fixatif/SM
+fixative/SM
+Fixby/M
+fixed-wing
+fixed/PY
+fixer/SM
+fixigena/M
+fixigenae/M
+fixing/MS
+fixity/MS
+fixture/MS
+fizgig/MS
+Fizwarren/M
+fizz/ZGSDR
+fizzle/GDS
+fizzy/T
+fjord/SM
+fl.
+flab/ZSz2M
+flabbergast/GkSD
+flabby/TP
+flabella/M
+flabellum/M
+FLAC/M
+flaccid/Y
+flaccidity/SM
+Flacco/M
+flack/SDMG
+flacon/SM
+Fladbury/M
+flag-waving
+flag/mDGMJSR
+flagella/nM
+flagellant/MS
+flagellar
+flagellate/DSGn
+flagellator/MSZ
+flagelliform
+flagellum/M
+flageolet/SM
+Flagg/M
+flagging/M
+flagging/YU
+flagitious/YP
+Flagler/M
+flagon/SM
+flagpole/SM
+flagrancy/SM
+flagrant/Y
+flagrante
+flagship/SM
+Flagstaff/M
+flagstaff/SM
+flagstone/SMD
+flagtail/SM
+flail/GSMD
+flair/SM
+flak/dSM
+flake/Z2MSr
+flaky/T
+flambé/GSD
+Flamboro/M
+Flamborough/M
+flamboyance/MZS
+flamboyancy/SM
+flamboyant/Y
+flame-proof/GD
+flame-thrower/MS
+flame/pGZRSMDkJ
+flamelike
+flamen/SM
+flamenco/SM
+flameout/SM
+flameproof
+flamethrower/SM
+flamingo/SM
+flamingoes
+flammability/ISM
+flammable/IS
+Flammarion/M
+Flamstead/M
+Flamsteed/M
+Flamville/M
+flan/MS
+Flanagan/M
+flanchard/SM
+Flanders/M
+Flandrian/SM
+Flanery/M
+flange/DMGS
+flank/eSDG
+flank/Mr
+flannel/DGMS
+flannelboard/MS
+flannelette/MS
+flannelgraph/MS
+flap/SGDRM
+flapjack/MS
+flappy/T
+flare-up/S
+flare/DGkS
+flarepath/SM
+Flasby/M
+flash-pan
+flash/MDRZS2GzJ
+flashback/MS
+flashbulb/SM
+flashcard/SM
+flashcube/SM
+flashgun/SM
+flashing/M
+flashover/SM
+flashpoint/SM
+flashy/UTP
+flask/SM
+flasket/SM
+flat-earther/SM
+flat-footed/YP
+flat-head/M
+flat-screen
+flat-top/SM
+flat-weave
+flat-woven
+flat/PTSYGMD
+flatbed/SM
+flatboat/SM
+flatbread/SM
+flatbug
+flatcar/SM
+flatfeet/M
+flatfish/SM
+flatfoot/MS
+Flathead/SM
+flathead/SM
+flatland/SMR
+flatline/SGDR
+flatmate/SM
+flatpack/SM
+Flatpak/M
+flatten/Srd
+flatter/SdkZr
+flattering/UY
+flattery/SM
+flattest/M
+flattie/MS
+flattish
+flattop/SM
+Flattr/M
+Flatts/M
+flatty/SM
+flatulence/SM
+flatulency/M
+flatulent/Y
+flatus/SM
+flatware/MS
+flatworm/SM
+Flaubert/M
+flaunching
+Flaunden/M
+flaunt/DkGSRZ
+flautist/SM
+Flavell/M
+flavescent
+Flavia/M
+flavin/SM
+flavine/SM
+Flávio/M
+Flavius/M
+Flaviviridae Taxonomic family
+flavivirus/SM
+flavone/SM
+flavonoid/SM
+flavoprotein/SM
+flavour/pSJGD6MRj
+flavouring/SM
+flavoursome/Y
+flaw/DGMpS
+Flawborough/M
+Flawith/M
+flawless/PY
+Flax/M
+flax/MS
+Flaxby/M
+flaxen
+Flaxley/M
+Flaxmere/M
+flaxseed/SM
+Flaxton/M
+flay/DRGS
+flaysome Adjective
+flea/MS
+fleabag/SM
+fleabane/SM
+fleabite/SM
+fleapit/SM
+fleawort/SM
+fleck/GDSM
+flecker/Sd
+Fleckney/M
+flection/SM
+Fledborough/M
+Fledermaus/M
+fledge/DSG
+fledgeling
+fledgling/SM
+flee/DGS
+fleece/RDMGZS
+fleecy/PT
+fleer/SGDM
+fleet/DkGSTYPM
+Fleet/M
+Fleetham/M
+fleeting/P
+fleetingly/M
+Fleetwood/M
+Fleggburgh/M
+Fleishman/M
+Fleming/SM
+Flemingston/M
+Flemish/M
+Flempton/M
+flench/DGS
+flense/DGS
+flerovium/M Noun: uncountable
+flesh/pY2MDGZSR
+fleshly/T
+Fleshman/M
+fleshpot/SM
+fleshy/TP
+Fletch/M
+fletcher/MS
+Fletching/M
+Fletton/M
+fleur/SMZ
+fleuron/SM
+Fleury/M
+flew/c
+flew/S
+flex/SGDMb
+flexibility/MIS
+flexible/IY
+flexibly/I
+flexicuffs
+flexile
+flexility/M Noun: uncountable
+flexion/SM
+flexitarian/SM
+flexitime/M Noun: usually uncountable
+flexography/W
+flexor/SM
+Flexpen/M
+flexuosity/M
+flexuous/Y
+flexure/SMO
+flibbertigibbet/SM
+flick/DGS
+flicker/dSkZ
+Flickr/M
+flier/SM
+fliest
+flight's/cK
+flight/GSZpMD
+flightpath/SM
+flightworthy
+flighty/PTY
+Flimby/M
+flimflam/SDGMR
+flimflammery/SM
+flimsy/TPY
+Flin/M
+flinch/DSGR
+Flinders/M
+fling/GSMR
+Flint/M
+flint/ZSGMD2p
+Flintham/M
+flintlock/SM
+Flintoff/M
+Flintridge/M
+Flintshire/M
+Flintstones
+flinty/PTY
+flip-flop/SGD
+flip/RSTGD
+flipboard/SM
+flippable
+flippancy/SM
+flippant/Y
+flirt/DGZSnr
+flirtatious/PY
+Flisk/M
+flit/SDG
+Flitch/M
+flitch/M
+Flitcham/M
+Flitcroft/M
+flitter/Sd
+Flitton/M
+Flitwick/M
+Flixborough/M
+Flixton/M
+flixweed/M Noun: usually uncountable
+float/DGZSRN
+floating-point
+floc/SM
+floccinaucinihilipilification/M Noun: uncountable
+flocculant/SM
+flocculate/DSnG
+flocculence
+flocculent
+flock/DMJGSZ
+flockmaster/SM
+Flockton/M
+Flodden/M
+floe/SM
+flog/DSGJRM
+flogging/M
+Flon/M
+flood/SGMDR
+floodgate/MS
+floodlight/GSM
+floodlit
+floodplain/SM
+floodwater/SM
+Flookburgh/M
+floor/SGJDMrp
+floorboard/SM
+floorcloth/SM
+flooring/SM
+floorman/M
+floormen/M
+floorpan/SM
+floorspace/M Noun: usually uncountable
+floozie/MS
+floozy/SM
+flop/DGSzZR
+floppy/TSPM
+flora/MSo
+Floral/M
+floral/SM
+Flordon/M
+Flore/M
+Floréal/M
+Florence/M
+Florencecourt/M
+Florentine/MS
+Flores/M
+florescence/MIS
+florescent
+floret/SM
+Florey/M
+Florham/M
+Florian/M
+Floriana/M
+floribunda/MS
+floriculture/O3^
+florid/PY
+Florida/M
+Floridian/SM
+floridity/SM
+floriferous
+florilegia/M
+florilegium/SM
+florin/SM
+Florio/M
+Florissant/M
+florist/SM
+floristic/SY
+floristry/M Noun: uncountable
+floruit/SdM
+Florus/M
+flory
+floss/DGMZS
+flossy/TS
+flotation/SM
+Flotham/M
+flotilla/MS
+Flotman/M
+flotsam/SM
+Flotta/M
+Floud/M
+flounce/DGSZ
+flouncing/SM
+flouncy/T
+flounder/dS
+flour/DMGZS
+flourish/SDkGR
+floury/T
+flout/GRDS
+Flovent/M
+flow/kRGDS
+flowchart/GSM
+flower/CSd
+Flower/M
+flower/p
+flowerbed/MS
+flowerer/MS
+floweret/MS
+Flowerhill/M
+flowerpecker/SM
+flowerpot/MS
+flowery/PT
+flown/c
+flows/Ifec
+flowstone/SM
+Flowton/M
+Floyd/M
+flt
+flu/M Noun: usually uncountable
+flub/SMGDJ
+fluconazole/M Noun: uncountable
+fluctuant
+fluctuate/nGDS
+flue-cured
+flue/SM
+fluence/MS
+fluency/SM
+fluent/YF
+fluff/DMZSG2
+fluffy/T
+flugelhorn/MS
+fluid/Q8s9PSYM
+fluidic/S
+fluidify/DGS
+fluidisation/MS
+fluidity/SM
+fluidization/MS
+fluke/SGDMZ
+fluky/T
+flume/GMSD
+flummery/MS
+flummox/DSG
+flump/SGDJ
+flung
+flunk/DZGSR
+flunkey/SM
+flunkeyism/M Noun: uncountable
+flunky/SM
+flunkyism/M
+fluoborate/SM
+fluoboric
+fluocerite/SM
+fluohydric
+fluoresce/DGSr
+fluorescein/SM
+fluorescence/SM
+fluorescent/SY
+fluoridate/GSDn
+fluoridationist/MS
+fluoride/nMS
+fluorinate/DGS
+fluorination/SM
+fluorine/SM
+fluorite/MS
+fluorocarbon/MS
+fluorochrome/SM
+fluoroform/M Noun: uncountable
+fluorometer/SM
+fluorometry/W1M
+fluoropolymer/SM
+fluoroquinolone/SM
+fluoroscope/SGDMWZ
+fluorspar/M Noun: usually uncountable
+fluoxetine/M Noun: uncountable
+fluphenazine/SM
+flurry/GSDM
+flush/7DPTGS
+Flushing/M
+fluster/dS
+flute/GMSZDJ
+flutelike
+fluticasone/M Noun: uncountable
+fluting/M
+flutter/krSZd
+Fluvanna/M
+fluvial Adjective
+fluviatile Adjective
+fluvioglacial Adjective
+fluviometer/SM
+fluvoxamine/M Noun: uncountable
+flux's/I
+flux/DGAS
+fluxgate/SM
+fluxion/SMO
+FLV
+Flxpen/M
+fly-by
+fly-by-night
+fly-by-wire
+fly-bys
+fly-drive
+fly-fishing
+fly-paper/SM
+fly-tip/SGD
+fly/cGS
+flyable
+flyaway
+flyback/SM
+Flybe/M
+flyblow/SM
+flyblown
+flybridge/SM
+flyby/M
+flybys
+flycatcher/SM
+flyer/SM
+flyest
+Flyford/M
+flyhalf
+flyleaf/M
+flyleaves
+flyman/M
+flymen/M
+flyness/M Noun: uncountable
+Flynn/M
+Flynt/M
+flyover/MS
+flypaper/SM
+flypast/SM
+flysheet/SM
+flyspeck/SD
+flyswatter/MS
+flyway/SM
+flyweight/SM
+flywheel/MS
+Fm
+FM
+fMRI
+fo'c's'le
+fo'c'sle
+foal/MGSD
+Foale/M
+foam/DZSM2Grp
+foamy/T
+fob/DSMG
+Fobbing/M
+focaccia/SM
+focal/FY
+Focalin/M
+focalise/DGSn
+focalize/nSGDJ
+Fochabers/M
+foci/M Plural of focus
+Fockerby/M
+focus/CdGDAS
+focusable
+focused
+focuser/MS
+focusses/CA
+fodder/SdM
+Fodderty/M
+foe/SM
+foehn/MS
+Foelas/M
+foeman/M
+foemen/M
+foetal
+foeticide/SM
+foetid/YP
+foetus/MS
+fog/CGDS
+fog/M
+fogbound
+fogey/MS~
+fogeydom/M Noun: uncountable
+fogeyism/SM
+Fogg/M
+Foggathorpe/M
+foggy/TPY
+foghorn/SM
+fogle/MS
+Fogo/M
+fogy/SM~
+fogydom/M Noun: uncountable
+fogyism/SM
+föhn/SM
+foible/MS
+foie/M Noun: uncountable
+foil/SDG3
+foist/DSG
+Fokker/M
+fol/Y
+folate/SM
+fold-out/SM
+fold/BJGRSD
+foldaway/SM
+foldback/SM
+folded/UA
+folderol/SM
+folds/AU
+Foles/M
+Foleshill/M
+Foley/M
+foliaceous
+foliage/SMD
+foliar
+Foliat/M
+foliate/CGSnD
+folie/SW
+folio/SGMD
+foliole/SM
+Foliot/M
+folivore/SM
+folivorous
+folk-dance/MGS
+folk-way/SM
+folk/MS~
+Folke/M
+Folkestone/M
+folkie/SM
+Folkingham/M
+Folkington/M
+folklife
+folklike
+folklore/3WSM
+folkloristic
+folks/Z2
+folksinger/SM
+folksong/SM
+Folksworth/M
+folksy/TP
+folktale/SM
+Folkton/M
+folkweave/M
+folky/TP
+foll/1
+Follett/M
+follicle/SM
+follicular
+folliculitis/M
+Follifoot/M
+follow-on/SM
+follow-up/SM
+follow/DGJRS7
+followee/SM
+folly/MS
+Folsom/M
+Folstone/M
+Folville/M
+foment/RGSnD
+fomite/SM
+Fond/M
+fond/TPMY
+Fonda/M
+fondant/MS
+fondle/GDSR
+fondue/MS
+Fondulac/M
+Fonseca/M
+font/SMO
+Fontaine/M
+Fontainebleau/M
+Fontana/M
+fontanelle/SM
+Fontenoy/M
+Fonthill/M
+Fontmell/M
+foo/SM
+food/SMp
+foodbank/SM
+foodgrain/SM
+foodie/SM
+foodshed
+foodstuff/MS
+foodway/SM
+foodwise
+fool/GDMS
+foolery/SM
+foolhardy/TPY
+foolish/TPY
+Foolow/M
+foolproof
+foolscap/MS
+foot-drop/M
+foot/GSRDJhipMZ
+footage/SM
+football/RDSGM
+footbed/SM
+footboard/SM
+footbrake/SM
+footbridge/SM
+Foote/M
+footfall/SM
+footgear/M Noun: uncountable
+foothill/SM
+foothold/MS
+footie/SM
+footing/SM
+footle/SGDr
+footlight/SM
+footlocker/SM
+footloose
+footman/M
+footmark/SM
+footmen/M
+footnote/GDSM
+footpad/SM
+footpath/MS
+footplate/MS
+footprint/SM
+footrace/SM
+footrest/MS
+Foots/M
+footsie/MS
+footslog/SGDRM
+footsoldier/SM
+footsore
+footstalk/SM
+footstep/MS
+footstool/SM
+footsure Adjective
+footway/MS
+footwear/M Noun: usually uncountable
+footwell/SM
+footwork/MS
+foozle/SGDM
+fop/GSMD
+foppery/SM
+foppish/PY
+for
+fora
+forage/RDGSM
+foramen/M
+foramina/M
+foraminifer/SM
+foraminifera/MO
+foraminiferan/SM
+foraminiferous
+forasmuch
+foray/DSGMR
+forb/SM
+forbade
+forbear/MSGR
+forbearance/MS
+Forbes/M
+forbid/GS
+forbidden
+forbidding/PY
+forbore
+forborne
+Forby/M
+force-fed
+force-feed/SG
+force/Dh6jGbMSR
+forceable
+forcefield/SM
+forceful/P
+forcemeat/SM
+forceps/M
+Forcett/M
+forcible/YP
+ford/7MGDSp
+Ford/M
+Fordbridge/M
+Forden/M
+Fordham/M
+Fordingbridge/M
+Fordington/M
+Fordley/M
+Fordoun/M
+Fordwich/M
+Fordyce/M
+fore/5m
+forearm/GMDS
+forebear/SM
+forebode/DSGJk
+foreboding/PM
+forebrain/SM
+forecabin/SM
+forecast/SRGD
+forecastle/MS
+forecheck/SGDR
+foreclose/SGD
+foreclosure/MS
+forecourt/SM
+foredawn
+foredeck/SM
+foredoom/GSD
+foredune/SM
+forefather/SM
+forefeet/M
+forefinger/MS
+forefoot/M
+forefront/MS
+foregather/Sd
+Foreglen/M
+forego/GJR
+foregoes
+foregone
+foreground/GMSD
+foregut/SM
+forehand/SDM
+forehead/SM
+forehock/SM
+Forehoe/M
+Foreign/M
+foreign/PRY
+forejudge/SGD
+foreknew
+foreknow/SG
+foreknowledge/MS
+foreknown
+foreland/SM
+foreleg/SM
+forelimb/SM
+forelock/DGSM
+Foremark/M
+foremast/SM
+foremost
+forename/DSM
+forenoon/MS
+forensic/SY
+foreordain/GDS
+forepart/SM
+forepaw/SM
+forepeak/SM
+forepeople/M
+foreperson/SM
+foreplay/SM
+forequarter/SM
+foreran
+forerun/SGR
+foresail/SM
+foresaw
+forescript/SM
+foresee/BGRS
+foreseeability/M Noun: usually uncountable
+foreseeable/UY
+foreseen
+foreshadow/GSD
+foresheet/SM
+foreshock/SM
+foreshore/SM
+foreshorten/dS
+foreshow/SGJ
+foreshown
+foresight/SMiDh
+foresighted/P
+foreskin/MS
+forest/RMDSynG
+forestall/GRSD
+forestalment/MS
+forestation/CMA
+forestay/SM
+forested/AC
+forester/CMS
+Forester/MS
+Forestier/M
+forestland/SM
+forestry/SM
+forests/AC
+Forestville/M
+foretaste/MGSD
+foretell/GRS7
+forethought/MS
+foretoken/MS
+foretokened
+foretokening/S
+foretold
+foretop/SM
+foretriangle/SM
+forever
+foreverness
+forewarn/SDJGr
+forewent
+forewing/SM
+foreword/SM
+foreyard/MS
+Forfar/M
+Forfarshire/M
+forfeit/DRMSG
+forfeitable
+forfeiture/MS
+forfend/SGD
+Forgan/M
+Forgandenny/M
+forgather/dS
+forgave
+forge/M
+forge/SGAD
+forgeable
+forger/SZM
+forgery/SM
+forget-me-not/S
+forget/jGS6
+forgetful/P
+forgettable/YU
+forgettably/U
+forging/MS
+forgivable
+forgive/RPlSkG
+forgiven
+forgiving/P
+Forglen/M
+forgo/RG
+forgoes
+forgone
+forgot
+forgotten
+Forgue/M
+forint/SM
+forjudge/SGD
+fork/D6GSMR
+Fork/MS
+forkful/SM
+Forkill/M
+forklift/GDMS
+forktail/SM
+forlorn/TPY
+form/FoSIGnD
+form/MW
+forma/SM
+formability/M Noun: usually uncountable
+formae/M
+formal/qsQ89P3-
+formaldehyde/SM
+formalin/SM
+formalism/MS
+formalist/SMW
+formality/SMI
+Forman/M
+formant/MIS
+format/RMGuSDvV
+formate/MS
+formation/OMFIC4S^
+formative/PIY
+formative/S
+Formby/M
+formed/K4CAU
+former/MY
+former/SC4FAI
+formfitting
+Formica Taxonomic genus
+formicaria/M
+formicarium/M
+formication/SM
+formidable/PY
+forming/K4
+formless/PY
+Formosa/M
+Formosan/SM
+formoterol/M Noun: uncountable
+forms/AKC4
+formula/MSn
+formulae/WM
+formularise/SGD
+formularize/SGD
+formulary/SM
+formulate/DAGSn
+formulator/SM
+formwork/MS
+Fornax/M
+Forncett/M
+Forney/M
+Fornham/M
+fornicate/SDGn
+fornicator/SM
+fornices
+fornix/M
+Forrabury/M
+forrader
+Forres/M
+Forrest/M
+Forrester/M
+forsake/GS
+forsaken/P
+Forsberg/M
+Forsbrook/M
+Forsgren/M
+Forshaw/M
+forsook
+forsooth
+forspeak
+Forstall/M
+Förstemann/M
+Forster-Tuncurry/M
+Forster/M
+forsterite/SM
+forswear/GS
+forswore
+forsworn
+Forsyth/M
+forsythia/MS
+Fort-de-France/M
+Fort/M
+fort/MZS
+Fortaleza/M
+fortalice/MS
+forte/MS
+fortepiano/SM
+Forteviot/M
+forth
+Forth/M
+Forthampton/M
+forthcoming/U
+forthcomingness/M
+forthright/PY
+forthwith
+fortifiable
+fortification/MS
+fortifier/SM
+fortify/DAGS
+Fortingall/M
+fortiori a fortiori (Latin)
+fortis/M
+fortissimi/M
+fortissimo/SM
+fortitude/MS
+fortnight/MYS
+fortnightly/SM
+Forton/M
+Fortran/M
+fortress/DMGS
+Fortrose/M
+fortuitous/YP
+fortuity/SM
+Fortuna/M
+fortunate/UYS
+fortunateness/M
+Fortunato/M
+fortune-teller/SM
+fortune-telling/SM
+fortune/DG
+Fortune/M
+fortune/SaM
+forty-eight/H
+forty-first/S
+forty-five/H
+forty-four/H
+forty-nine/H
+forty-one
+forty-onefold
+forty-second/S
+forty-seven/H
+forty-six/H
+forty-three/H
+forty-two
+forty-twofold
+forty/HMS
+fortysomething/SM
+Forum/M
+forum/MS
+Forveille/M
+forward-looking
+forward/DYSTPRG
+forwarding/M
+forwardmost
+forwent
+Fosbury/M
+Foscott/M
+FOSDEM
+Fosdyke/M
+Foss/M
+FOSS/R
+fossa/SM
+fossae/M
+Fossambault-sur-le-Lac/M
+Fosse/M
+fosse/MS
+Fossett/M
+Fossey/M
+fossick/SGDJ
+fossil/Q-SMq8
+fossiliferous
+fossorial
+Fossoway/M
+foster/dSr
+Foster/M
+fosterage/SM
+Foston/M
+Fostoria/M
+Fothad/M
+Fotherby/M
+Fotheringhay/M
+Foucault/M
+fought/e
+foul-mouthed
+foul-up/SM
+foul/MYGPTDS
+foulard/SM
+Foulby/M
+Foulden/M
+Foulkes/M
+Foulness/M
+Foulridge/M
+Foulsham/M
+foumart/MS
+found/DRGynS
+foundation/MoO
+founded/FU
+founder/d
+foundling/SM
+foundress/MS
+foundry/SM
+fount/MS
+fountain-head/SM
+fountain-pen/MS
+Fountain/MS
+fountain/SDMG
+fountainhead/SM
+four-dimensional
+four-eyes
+four-in-hand
+four-leaved
+four-letter
+four-poster/MS
+four-square
+four-wheel
+four/HSM
+Four/M
+fourchette/SM
+Fourdrinier
+Fourier/M
+Fourierism/M
+fourpence/M
+fourpenny
+fourscore/SM
+foursome/MS
+foursquare/M
+fourteen/HSM
+fourth/Y
+Fovant/M
+fovea/MO
+foveae/M
+foveate
+Foveran/M
+Fowey/M
+Fowkes/M
+fowl-run/SM
+fowl/DMGSr
+Fowles/M
+fowling/M
+Fowlis/M
+Fowlmere/M
+Fownhope/M
+fox-hunting
+Fox/M
+fox/MDzZGS
+Foxbar/M
+Foxborough/M
+Foxcote/M
+Foxcott/M
+Foxe/M
+Foxearth/M
+foxglove/SM
+Foxhall/M
+Foxham/M
+foxhole/MS
+Foxholes/M
+foxhound/MS
+foxing/M
+Foxley/M
+Foxon/M
+foxtail/SM
+Foxton/M
+foxtrot/DMGS
+Foxx/M
+foxy/TP
+Foy/M
+foyer/MS
+fps
+FPU/SM
+fr
+Fr
+Fra/M
+frabjous/Y
+fracas/SM
+frack/SGDR
+fractal/SMY
+fractality/M Noun: uncountable
+fraction's/IA
+fraction/DNOoSGM
+fractionalize/DGS
+fractionate/SDGn
+fractious/PY
+fractographic/OY
+fractography/SM
+fracton/MS
+fracture/DSMG
+Fradley/M
+Fradswell/M
+Fraenkel/M
+fraenulum/M
+fragile/Y
+fragility/MS
+fragment/GMSnD
+fragmentary/PY
+fragrance/SMD
+fragrant/Y
+frail/PTY
+frailty/SM
+fraise/MS
+Fraisthorpe/M
+Frakes/M
+Fraktur/M
+frame/7pRMSDG
+frameshift/SM
+framework/SM
+Framfield/M
+framing/SM
+Framingham/M
+Framlingham/M
+Frampton/M
+Framsden/M
+Fran/MS
+franc/SM
+France/SM
+Francesca/M
+Franceschi/M
+Francesco/M
+franchise/ESDG
+franchise/M
+franchisee/MS
+franchiser/SM
+franchisor/SM
+Franchitti/M
+Francine/M
+Francis-in-the-East/M
+Francis/M
+Francisca/M
+Franciscan/SM
+Francisco/M
+francium/M Noun: usually uncountable
+Franck/M
+Franco-German
+Franco/M
+francocene
+François/M
+Francois/M
+Françoise/M
+Francoist/SM
+francolin/SM
+Francomania/M
+Franconia/M
+Franconian/SM
+Francophile/SM
+Francophilia/M Noun: uncountable
+Francophobe/MS
+Francophobia/M
+francophone/MS
+Francophonia/M
+Francophonie/M
+frangibility/SM
+frangible
+frangipane/MS
+frangipani/SM
+franglais
+frank/PYSDTGr
+Frank/~MS
+Frankel/M
+Frankenstein/M
+Frankford/M
+Frankfort/M
+Frankfurt/M
+frankfurter/MS
+Frankie/M
+frankincense/MS
+Frankleigh/M
+Frankley/M
+franklin/M
+Franklin/M
+Frankton/M
+Franky/M
+Fransham/M
+Frant/M
+frantic/YP
+franticly
+Franz/M
+frap/GSD
+frappé/SM
+Fraser-Fort/M
+Fraser/M
+Fraserburgh/M
+frater/SM
+fraternal/Y
+fraternalism/M Noun: usually uncountable
+fraternise/RnSGD
+fraternity/SMF
+fraternize/nSGDr
+Frating/M
+fratricide/SMO
+Fratrum/M
+Frau/M
+fraud/CS
+fraud/M
+fraudster/SM
+fraudulence/SM
+fraudulent/YP
+Frauen
+fraught
+Fräulein/M
+Fraumeni/M
+Fraunhofer/M
+fray/CDGS
+fray/M
+Frazer/M
+Frazier/M
+frazzle/GDS
+freak-out
+freak/GSMDZ2
+freakish/PY
+freaky/TY
+Fréchet/M
+Freckenham/M
+freckle/GMDSY
+Freckleton/M
+freckly/T
+Fred/M
+Freda/M
+Freddie/M
+Freddy/M
+Frédéric/M
+Frederic/M
+Frederica/M
+Frederick/SM
+Fredericksburg/M
+Frederickson/M
+Fredericton/M
+Frederik/M
+Frederiksen/M
+Fredholm/M
+Fredonia/M
+Fredrick/M
+Fredrickson/M
+Fredricton/M
+free-fall/G
+free-for-all
+free-form
+free-handed/Y
+free-handeness
+free-kick
+free-living
+free-market
+free-range
+free-standing
+free-up
+free-wheel/DGS
+Free/M
+free/mTSYPdG
+freebase/DSG
+freebie/SM
+freeboard/SM
+freeboot/RSGD
+freeborn
+Freeborn/SM
+FreeBSD/M
+Freeby/M
+freedman/M
+freedmen/M
+freedom/SM
+freegan/SM
+freehand/Dh
+Freehills/M
+Freehold/M
+freehold/RSM
+freelance/SDRGM
+Freeland/M
+Freeling/M
+freeload/SGDR
+Freemans/M
+freemartin/MS
+Freemason/SM
+Freemasonry/M
+freemasonry/SM
+freemium/SM
+Freeport/M
+freeridden
+freeride/SG
+freerode
+freesia/SM
+Freestone/M
+freestone/SM
+freestyle/SMGDR
+freetail/SM
+Freeth/M
+freethinker/MS
+freethinking/S
+Freethorpe/M
+Freetown/M
+freeware/M Noun: uncountable
+freewheel/SDGr
+freewill
+freezable
+freeze-dried
+freeze-frame
+freeze/RSG
+freezes/AU
+freezing/AU
+freezing/Y
+Frege/M
+Freiberger/M
+Freiburg/M
+freight/SMRDG
+freightage/SM
+Freire/M
+Freisthorpe/M
+Freiston/M
+Freitas/M
+Fremantle/M
+Fremington/M
+Fremont/M
+French-speaker/S
+French-speaking
+French/Ym5Mp
+Frencher/SM
+Frenchification/MS
+Frenchify/SGDN
+Frenchism/SM
+Frenchmoor/M
+Frenchness/M Noun: uncountable
+Frenchtown/M
+Frenchy/MS
+frenemy/SM
+frenetic/Y
+Frensham/M
+Frentzen/M
+frenulum/M
+Frenze/M
+frenzy/DMShG
+freon/SM
+freq/SM
+frequency/MSI
+frequent/3TDRYSGP
+frequentation/MS
+frequentative/SM
+frequently/I
+fresco/DGMS
+frescoes
+fresh-faced
+fresh/TPRmY
+freshen/dSr
+fresher/AMS
+freshet/SM
+Freshford/M
+Freshwater/M
+freshwater/MS
+Fresnel/M
+Fresno/M
+Fressingfield/M
+Freston/M
+fret/jD6SGp
+fretboard/SM
+fretful/P
+Fretherne/M
+fretsaw/SM
+Frettenham/M
+fretwork/SM
+Freuchie/M
+Freud/M
+Freudenberger/M
+Freudian/SM
+Freudianism/M Noun: usually uncountable
+Frew/M
+Frey/M
+Freya/M
+Freyberg/M
+Freystop/M
+Freystrop/M
+Frezza/M
+Fri
+friability/M
+friable/P
+Friar/MS
+friar/YZSM
+friarbird/SM
+Friargate/M
+Friarmere/M
+Friary/M
+friary/MS
+fricassee/dGSM
+frication/SM
+fricative/MS
+Frick/M
+fricking
+Frickley/M
+friction/OoMSp
+frictionless/Y
+Friday/SM
+Fridaythorpe/M
+fridge/SM
+Fridley/M
+Fridrich/M
+fried/A
+Friedel/M
+Friedemann/M
+Frieden/M
+Friedkin/M
+Friedländer/M
+Friedman/M
+Friedrich/M
+Friel/M
+friend/DGYMpS
+friendess
+friendism/M
+friendless/P
+friendlihood
+friendlike
+friendliness/SM
+friendly/SY
+friendly/TU
+friendship/MS
+Friendswood/M
+friendversary
+frier's
+Friermayne/M
+Friern/M
+Friesian/MS
+Friesland/M
+Friesoythe/M
+Friesthorpe/M
+frieze/MGSD
+frig/SJGD
+frigate/SM
+fright/DGMjS6
+frighten/Sdkr
+frightful/P
+frigid/PY
+Frigidaire/M
+frigidaria/M
+frigidarium/M
+frigidity/SM
+Frigoris Mare Frigoris
+Frilford/M
+frill/GSMDY
+frilly/TS
+Frilsham/M
+Frimley/M
+Frindsbury/M
+Fring/M
+fringe/IDGS
+fringe/Mp
+Fringford/M
+fringy
+Frink/M
+Frinsted/M
+Frinton/M
+Frio/M
+Friockheim/M
+frippery/SM
+frippet/M
+Frisbee/M
+Frisby/M
+Frisch/M
+Frisco/M
+Frisia/M
+Frisian/SM
+frisk/ZGSMDzr
+frisket/MS
+Friskney/M
+frisky/TP
+frisson/SM
+Friston/M
+frit/DGMS
+Frith/M
+Frithelstock/M
+Frithville/M
+fritillaria/SM
+fritillary/SM
+Frito/M
+frittata/SM
+Frittenden/M
+fritter/dSr
+Fritton/M
+Fritwell/M
+Fritz/M
+Fritzell/M
+Fritzon/M
+Fritzsche/M
+Friuli/M
+Friulian/SM
+frivolity/SM
+frivolous/PY
+Frizington/M
+frizz/GYSDZ
+Frizzell/M
+frizzle/DGS
+frizzly/T
+frizzy/T
+fro/SMDG
+Frobisher/M
+Frocester/M
+frock-coat/SM
+frock/CGSDU
+frock/M
+frocking/M
+Frodesley/M
+Frodingham/M
+Frodo/M
+Frodsham/M
+Froebel/M
+Froebelian/MS
+Froebelism/M
+frog/DGmSM
+frogbit/SM
+frogfish/SM
+Froggatt/M
+Froggy/MS
+froghopper/SM
+frogmarch/SGDM
+Frogmore/M
+frogspawn/M Noun: uncountable
+froid
+Frolesworth/M
+frolic/SRDMG
+frolicsome/Y
+from
+Frome/M
+frond/SM
+frondeur/SM
+front-line
+front-page
+front/FDGS
+Front/M
+front/Mpr
+frontage/SM
+frontager/MS
+frontal/YS
+frontbencher/SM
+Frontenac/M
+frontend/SM
+frontier/SMp
+frontiers/m
+frontierswoman/M
+frontierswomen/M
+frontispiece/MS
+frontlet/SM
+frontline/SM
+frontman/M
+frontmen/M
+frontmost
+fronton/MS
+frontotemporal
+frontrunner/MS
+frontrunning/M Noun: uncountable
+frontside
+frontward/S
+frontwoman/M
+frontwomen/M
+frost/CSGD
+frost/M
+frostbit
+frostbite/MGS
+frostbiting/M
+frostbitten
+Frostenden/M
+frosting/MS
+frosty/TPY
+froth/ZSD2MG
+frother/MS
+frothy/TP
+frottage/SM
+froufrou/SM
+frow/MS
+froward/PY
+frown/DGSkr
+frowst/DGMSZ
+frowstier
+frowstiest
+frowstiness/M Noun: uncountable
+frowzy/TPY
+Froxfield/M
+Froyd/M
+Froyle/M
+froze/AU
+frozen/PY
+fructification/MS
+fructify/DSG
+fructose/SM
+fructuous
+Fruehauf/M
+frugal/Y
+frugality/MS
+frugivore/SM
+frugivorous
+fruit/6jdpSM
+Fruita/M
+fruitage/M
+fruitarian/SM
+fruitarianism/M Noun: uncountable
+fruitcake/MS
+fruiter/MSr
+fruitful/TP
+fruition/SM
+fruitless/YP
+fruitlet/SM
+Fruitport/M
+fruity/PT
+frumenty/M Noun: usually uncountable
+frump/MSZ~
+frumpy/T
+Frunze/M
+frustrate/hDSknGr
+frustule/MS
+frustum/MS
+fruticose Adjective
+fruticulture/M Noun: uncountable
+fry/V7DNGS
+Frye/M
+fryer/SM
+Fryerning/M
+Fryston/M
+Fryton/M
+fs
+Fs
+FSA/M
+FSF/M
+ft/C
+FTC/M
+ftp
+FTP/M
+fu kung fu
+Fubini/M
+fubsy
+Fuchs/M
+Fuchsia
+fuchsia/SM
+fuchsin/SM
+fuchsine/SM
+fuck/DRSMGJB!
+fuckery/SM!
+fuckhead/SMD!
+fuckload/SM!
+fuckship/M!
+fuckwad/SM!
+fuckwit/SM!
+fucose/SM
+fucoxanthin/SM
+Fucus Taxonomic genus
+FUD/M Acronym of Fear, uncertainty, and doubt
+fuddle/GDS
+fudge/MSDG
+Fuego/M
+fuehrer/SM
+fuel/MRGDS
+fuelwood/SM
+Fuengirola/M
+fug/SMGD
+fugacious
+fugacity/SM
+fugal/Y
+Fugglestone/M
+fuggy/T
+fugitive/PSYM
+fugleman/M
+fuglemen/M
+fugue/GSDM
+fuguist/MS
+führer/MS
+fuhrer/SM
+Fujairah/M
+Fuji/M
+Fujian/M
+Fujifilm/M
+Fujimori/M
+Fujimoto/M
+Fujio/M
+Fujitsu/M
+Fujiyama/M
+Fukami/M
+Fukien/M
+Fukuoka/M
+Fukuyama/M
+Fulah/MS
+Fulani/M
+Fulbeck/M
+Fulbourn/M
+Fulbrook/M
+Fulcher/M
+fulcrum/SM
+fulfil/DLGSr
+Fulford/M
+fulgency/M
+fulgent Adjective
+Fulghum/M
+fulgurant Adjective
+fulgurate/SGDn
+fulgurite/M
+fulgurous
+Fulham/M
+fuliginous/Y
+Fulke/M
+Fulking/M
+full-blooded
+full-blown
+full-bodied
+full-dress
+full-frontal
+full-grown
+full-length
+full-page
+full-scale
+full-time/r
+full-wave
+full/c
+Full/M
+full/Y~
+Fullarton/M
+fullback/SMG
+fuller/dSM
+fullerene/SM
+fulleride/SM
+fullerite/SM
+Fullerton/M
+fullest
+Fulletby/M
+fulling/M
+fullness/SM
+fullstop/SM
+fullword/MS
+fully-fledged
+fulmar/SM
+Fulmer/M
+fulminant
+fulminate/SDGn
+fulminatory Adjective
+Fulmodeston/M
+fulness/M Noun: usually uncountable
+Fulnetby/M
+fulsome/YP
+Fulstow/M
+Fulton/M
+fulvalene/SM
+fulvescent
+fulvous
+fumage/M Noun: uncountable
+fumarate/SM
+fumarole/SMW
+fumble/GRkSMJD
+fume/GkDZSM
+fumigant/MS
+fumigate/SGDn
+fumigator/MS
+fumitory/SM
+fumy/T
+fun-loving
+fun/Mz2Z
+Funafuti/M
+funambulism/M Noun: usually uncountable
+funambulist/SM
+funboard/SM
+Funchal/M
+function/SMyGopDO
+functionalism/SM
+functionalist/SMW
+functionality/SM
+functionary/MS
+functionate/DGS
+functor/SM
+fund-raiser/SM
+fund-raising
+fund/ASDGM
+fundament/SM
+fundamental/SY3
+fundamentalism/MS
+fundamentality/M Noun: uncountable
+funded/fU
+Fundenhall/M
+funder/SM
+fundholder/SM
+fundholding/M Noun: uncountable
+fundi/M
+fundraise/SRGD
+fundus/M
+Fundy/M
+funebrial
+funeral/MS
+funerary
+funereal/Y
+funfair/MS
+fungal
+fungi/M
+fungibility/SM
+fungible/SM
+fungicide/SMO
+fungiform
+fungistatic/Y
+fungivorous
+fungoid/SMO
+fungous
+fungus/MS
+funicular/SM
+funk/S2DGMZ
+funkadelic
+funkia/MS
+funkster/SM
+funky/T
+funnel/MDGS
+funniment/MS
+funniosity/MS
+funny/TSP
+Funtington/M
+Fuquay-Varina/M
+fur/GM2JZSD
+furacious
+furan/SM
+furball/SM
+furbelow/DGMS
+furbish/ASGD
+furbisher/MS
+furcate/DGS
+furcation/MS
+furcula/M
+furculae/M
+furcular
+furfuraceous
+furious/YP
+furiouser
+Furkan/M
+furl/UGDS
+furlong/MS
+furlough/SM
+Furman/M
+furmety/M Noun: uncountable
+furnace/MS
+Furneaux/M
+Furness/M
+Furneux/M
+furnish/RSGDJ
+furnishing/M
+furniture/SM
+furore/MS
+furosemide/SM
+furphy/MS
+furriery/SM
+furring/M
+furrow/SDMG
+furrowy
+furry/TRP
+Fursley/M
+Furtado/M
+further/drS
+furtherance/SM
+furtherest
+furthermore
+furthermost
+furthest
+Furtho/M
+furtive/YP
+furuncle/MS
+furuncular
+furunculosis
+furunculous
+fury/MS
+furze/SM
+furzy
+fuscous
+fuse's/A
+fuse/SIX4NGFD
+fusebox/SM
+fused/CA
+fusee/MS
+fusel fusel oil
+fuselage/SM
+Fuseli/M
+fuses/CA
+fuseway/SM
+Fushimi/M
+fusibility/SM
+fusible/SM
+fusiform
+fusil/MS
+fusilier/SM
+fusillade/SMDG
+fusing/CA
+fusion/IM4F
+fusionism/M Noun: uncountable
+fusionist/SM
+fuss/SD2ZMGzr
+fusspot/SM
+fussy/T
+fustanella/MS
+fustian/MS
+fustic/M
+fusty/TPY
+fut
+futhorc/SM
+futile/PY
+futilitarian/MS
+futility/SM
+futon/SM
+futtock/MS
+Futuna/M
+futurama/SM
+futuramic
+future/M3Sp
+futurism/MS
+futuristic/SY
+futurity/SM
+futurology/3SM
+Futuyma/M
+Fuzhou/M
+fuzz/DZMGzS
+fuzzy-wuzzy/SM
+fuzzy/TP
+fwd
+FWIW
+FX
+FY
+Fyebridge/M
+Fyfield/M
+FYI
+Fylde/M
+fylfot/MS
+Fylingdales/M
+Fyne/M
+Fynydd/M
+fyrd/MS
+Fyvie/M
+G
+g
+g's
+G-string/SM
+G-suit/SM
+G2B Initialism of government-to-business
+G7/M
+G8/M
+Ga/SM
+gab/GZSD2M
+Gabalfa/M
+gabapentin/M Noun: uncountable
+gabardine/MS
+Gabarone/M
+Gabbiadini/M
+gabble/GDSM
+gabbro/SMW
+gabbroid
+Gabby/M
+gabby/TP
+gabelle/MS
+gaberdine/SM
+gabion/MS
+gabionade/MS
+gable/SDGM
+gabler
+Gables/M
+gablet/MS
+Gabon/M
+Gabor/M
+Gaborone/M
+Gabriel/M
+Gabriele/M
+Gabrielle/M
+gaby/MS
+gad/RSDGM
+gadabout/MS
+Gadarene
+Gaddafi/M
+Gaddesby/M
+Gaddesden/M
+gaddi/MS
+gadfly/MS
+gadget/SMyZ
+gadgeteer/SM
+gadgetry/SM
+Gadi/M
+gadoid/MS
+gadoleic
+gadolinite/SM
+gadolinium/SM
+gadolinocene
+gadroon/DMS
+Gadsden/M
+gadwall/MS
+Gaea/M
+Gael/SWM
+Gaeldom/M
+Gaelic-speaking
+Gaelic/M
+Gaeltacht/M
+Gaeo/M
+Gaer/M
+Gaerwen/M
+Gaeta/M
+Gaetano/M
+gaff/RMSGD
+gaffe/MS
+Gaffin/M
+Gaffney/M
+gag/RDGSM
+gaga/M Noun: uncountable
+Gagarin/M
+Gage/M
+gage/SM
+gaggle/SGDMr
+Gagnon/M
+gagwriter/SM
+Gahanna/M
+Gaia/M
+Gaian/SM
+gaiatri/M
+gaiety/SM
+gaijin/SM
+Gail/M
+Gaillard/M
+gaillardia/MS
+gaily
+gain/ASDG
+gain/YMr
+gainable
+Gaines/M
+Gainesville/M
+Gainford/M
+gainful/YP
+gainsaid
+gainsay/RGS
+Gainsborough/M
+Gair/M
+Gairbraid/M
+Gairloch/M
+Gairsain/M
+Gairy/M
+gait/SRM
+gaitered
+Gaithersburg/M
+Gaius/M
+Gakuin/M
+gal/GkDMS
+gala/SM
+galactagogue/SM
+galactic/OY
+Galactica/M
+galactose/SM
+galactosidase/SM
+galago/MS
+galah/MS
+Galahad/MS
+galangal/SM
+galantine/SM
+galanty
+Galapagos/M
+Galashiels/M
+Galatea/M
+Galatia/M
+Galatian/SM
+Galavis/M
+Galaxy/M
+galaxy/SM
+Galaţi/M
+Galbally/M
+galbanum/SM
+Galbraith/M
+gale/AS
+gale/M
+galea/M
+galeae/M Plural of galea
+Galen/M3
+galen/W
+Galena/M
+galena/M Noun: usually uncountable
+galenical/MS
+Galenism/M Noun: uncountable
+Galesburg/M
+galette/SM
+Galgula/M
+Galicia/M
+Galician/SM
+Galilean/SM
+Galilee/M
+galilee/MS
+Galilei/M
+Galileo/M
+galingale/MS
+Galion/M
+galiot/MS
+galipot/SM
+gall/SM
+Galla/M
+Gallacher/M
+Gallagher/M
+gallant/SGDYM
+gallantry/SM
+gallate/SM
+Gallatin/M
+gallberry/SM
+gallbladder/MS
+Galle/M
+galleon/SM
+galleria/SM
+gallery/DSM
+galley/MS
+Galleywood/M
+Gallia/M
+galliambic/MS
+galliard/MS
+Gallic/M
+Gallican/SM
+Gallicanism/SM
+Gallicism/SM
+Gallicize/SGDJ
+gallimaufry/MS
+gallinaceous
+Gallinat/M
+gallinule/SM
+galliot/MS
+Gallipoli/M
+gallipot/MS
+gallium/M Noun: uncountable
+gallivant/DGSr
+galliwasp/MS
+Gallo-Roman/SM
+Gallo/M
+gallocene
+gallon/SM
+gallonage/SM
+galloon/MS
+gallop/SMrd
+Gallovidian/MS
+Galloway/M
+Gallowgate/M
+gallows/M
+gallstone/MS
+Gallup/M
+Gallus/M
+Gallwey/M
+Galois/M
+galoot/SM
+galop/SM
+Galoppini/M
+galore
+galosh/SM
+Galston/M
+Galsworthy/M
+Galt/M
+Galton/M
+galumph/SGD
+galvanic/Y
+galvanise/nSDG
+galvanism/MS
+galvanize/nSDG
+galvanometer/MSW
+Galvão/M
+Galveston/M
+Galvin/M
+galvo/SM
+Galway/M
+Galwegian/MS
+Gamage/M
+Gamay/SM
+gamba/SM
+gambade/MS
+gambado/MS
+gambadoes
+Gambia/M
+Gambian/SM
+Gambier/M
+gambier/M Noun: uncountable
+gambit/MS
+gamble/RDSGM
+Gamblestown/M
+gamboge/SM
+gambol/SGDM
+gambrel/MS
+game/JYPTSMGRZD
+gamecock/SM
+gamefowl/SM
+gamekeeper/MS
+gamekeeping/M Noun: uncountable
+gamelan/SM
+gamepad/SM
+gameplay/M Noun: usually uncountable
+gamergate/SM
+gamesman/M
+gamesmanship/MS
+gamesmen/M
+gamest/R
+gamestress/SM
+gametangia/MO
+gametangium/M
+gamete/WMS
+gametocyte/SM
+gametogenesis/M Noun: uncountable
+gametogeny/W
+gametophyte/SMW
+gamgee/M Noun: uncountable
+gamify/SGDn
+gamin/SM
+gamine/SM
+gaming/SM
+Gamla/M
+Gamlingay/M
+gamma/MS
+Gammacoronavirus Taxonomic genus
+gammacoronavirus/SM
+Gammaproteobacteria Taxonomic class
+gammavoltaic/S
+gammon/dMS
+Gamrie/M
+Gamston/M
+gamut/SM
+gamy/TPY
+Ganapathi/M
+Ganapati/M
+Ganarew/M
+Gandalf/M
+gander/dMS
+Gandhi/M
+Gandhinagar/M
+Gandolfo/M
+Gandy/M
+Ganerew/M
+Ganesa/M
+Ganesh/M
+Ganesha/M
+gang/DMGSYr
+Ganga/M
+Gangamma/M
+gangboard/SM
+Ganges/M
+Gangetic
+gangland/MS
+ganglia/MO
+gangling/SMY
+ganglion/SMW
+ganglioside/SM
+ganglord/SM
+gangmaster/SM
+gangplank/SM
+gangrene/DSMG
+gangrenous/Y
+gangsta/SM
+gangster/SM
+gangsterism/SM
+Gangtok/M
+gangway/MS
+ganja/M Noun: uncountable
+Ganllwyd/M
+gannet/MS
+gannetry/MS
+ganoid/MS
+Gans/M
+Gansler/M
+Gansu/M
+Ganton/M
+gantry/MS
+Gantt/M
+Ganymede/M
+Ganymedian
+GAO/M Initialism of Government Accountability Office
+gaol/RDGMS
+gap-toothed
+gap/GdkSMDr
+gape/SM
+gapeworm/MS
+gaplessly
+gappy/T
+gappyness/M Noun: uncountable
+garage/GDSM
+garb/DMSG
+garbage/M Noun: uncountable
+Garbh/M
+garble/GDSrM
+Garbo/M
+garboard/MS
+Garboldisham/M
+Garby/M
+Garcia/M
+García/M
+garçon/SM
+Gard/M
+Garda/M
+Gardai/M
+Gardasil/M
+garden/dSrM
+Garden/MS
+Gardena/M
+Gardendale/M
+gardenesque/M
+gardenia/SM
+gardening/M Noun: usually uncountable
+Gardenstown/M
+Gardin/M
+Gardiner/M
+Gardner/M
+Garelochhead/M
+Gareth/M
+Garfield/M
+garfish/SM
+Garford/M
+Garforth/M
+Garfunkel/M
+garganey/SM
+gargantuan/Y
+gargantuanism/M Noun: uncountable
+gargantuanness/M Noun: uncountable
+garget/SM
+Gargilius/M
+gargle/DSMG
+gargoyle/DSM
+Gargrave/M
+Gargunnock/M
+Garibaldi/M
+garibaldi/SM
+Garioch/M
+garish/PY
+Garland/M
+garland/SDMG
+garlic/DSGZM
+Garlick/M
+Garlickhithe/M
+Garlington/M
+garment/DSMG
+Garmon/M
+Garn/M
+Garner/M
+garner/SdM
+garnet/SM
+Garnett/M
+Garnier/M
+garnierite/SM
+garnish/LSDGM
+garnishee/MSd
+garniture/SM
+Garnon/M
+garotte/SMDG
+Garpenberg/M
+garpike/MS
+Garrard/M
+garret/MS
+Garrett/M
+Garrick/M
+Garrido/M
+Garrigill/M
+garrison/dSM
+Garriston/M
+Garron/M
+garrotte/MRGSD
+garrulity/MS
+garrulous/PY
+Garry/M
+Garsdale/M
+Garsdon/M
+Garsington/M
+Garstang/M
+Garston/M
+Gartcosh/M
+Garten/M
+Garter Garter King of Arms
+garter/dSM
+Garth/M
+garth/SM
+Garthamlock/M
+Garthbeibio/M
+Garthbrengy/M
+Garthdee/M
+Gartheli/M
+Garthorpe/M
+Gartly/M
+Gartner/M
+Gartocharn/M
+Garton/M
+Garuda/M
+Garudimimus Taxonomic genus
+garum/SM
+Garvagh/M
+Garvaghey/M
+Garvald/M
+Garveston/M
+Garvestone/M
+Garvetagh/M
+Garvey/M
+Garvin/M
+Garvock/M
+Garw/M
+Garway/M
+Gary/M
+Garza/M
+Garzon/M
+gas-cooled
+gas-permeable
+gas/MSGD
+gasbag/SM
+Gascoigne/M
+Gascon/SM
+Gasconade/M
+gasconade/SM
+Gascony/M
+Gascoyne-Cecil/M
+gaseous/YP
+gash/DMGTS
+gasholder/SM
+gasify/SRnGD
+Gask/M
+gasket/SM
+gasketed
+gaskin/MS
+gaslight/GDMS
+gaslit
+gasman/M
+gasmen/M
+gasolene/MS
+gasoline/M Noun: usually uncountable
+gasometer/MS
+gasp/SRDGkM
+Gaspar/M
+Gasparri/M
+Gaspé/M
+Gasper/M
+Gaspésie-Îles-de-la-Madeleine/M
+Gaspra/M
+Gasque/M
+gasser/SM
+gassing/CMS
+gassy/PT
+gasteropod/MS
+Gasthorpe/M
+Gaston/M
+Gastonia/M
+gastrectomy/SM
+gastric
+gastricism/M Noun: uncountable
+gastrin/SM
+gastritides Plural of gastritis
+gastritis/M
+gastrocnemii/M Plural of gastrocnemius
+gastrocnemius/M
+gastrocolic
+gastroenterites
+gastroenteritides Plural of gastroenteritis
+gastroenteritis/M
+gastroenterology/3w1M
+gastrointestinal
+gastronome/Z1SwM
+gastronomy/MWS
+gastropod/SM
+Gastropoda Taxonomic class
+gastropodous
+gastropub/SM
+gastroscope/SMWZ
+gastrostomy/SM
+gastrotrich/M
+Gastrotricha Taxonomic phylum
+gastrotrichs
+gastrula/SMn
+gastrulae/M
+gasworks/M
+Gatcombe/M
+Gate/M
+gate/SMDG
+gateau/SM
+gatecrash/DRSG
+gatefold/SM
+Gateforth/M
+Gatehouse/M
+gatehouse/SM
+gatekeeper/MS
+gatekeeping/M
+gateleg/D
+Gateley/M
+gateman/M
+gatemen/M
+Gatenby/M
+gatepost/MS
+Gates/M
+Gateshead/M
+Gatesville/M
+Gateway/M
+gateway/MS
+gather/drSJ
+gathered/AI
+gatherum/M omnium gatherum
+Gatima/M
+Gatineau/M
+Gatlinburg/M
+Gatling/SM
+Gatooma/M
+Gatos/M
+Gatsby/M
+Gatton/M
+Gatwick/M
+gauche/TPY
+gaucherie/MS
+gaucho/MS
+Gauden/M
+gaudy/TYP
+gauge/GaSD
+gaugeable
+gauger/SM
+Gauguin/M
+Gaul/SM
+Gaulby/M
+Gauldry/M
+Gaulish/M
+Gaulle/M
+Gaullism/SM
+Gaullist/MS
+gault/SM
+Gaunt/M
+gaunt/PYT
+gauntlet/SdM
+gaur/SM
+Gaurav/M
+gauss/MS
+Gaussian/SM
+Gautama/M
+Gautby/M
+Gauthier/M
+Gautier/M
+gauze/DMZSG
+gauzy/TPY
+gave
+gavel/DSMG
+Gaventa/M
+gavial/MS
+Gavin/M
+gavotte/SMDG
+Gavron/M
+Gawber/M
+Gawcott/M
+Gawd/M
+gawd/Z
+gawk/DMzZSGr
+gawky/PTY
+Gawler/M
+Gawley/M
+gawp/SGDR
+Gawsworth/M
+Gawthorpe/M
+Gay/M
+gay/MSPT~
+gayatree/M
+gayatri/M
+gayatry/M
+gaybourhood/SM
+gaydom/M Noun: uncountable
+Gaydon/M
+Gaye/M
+gayfeather/SM
+Gayhurst/M
+Gaylard/M
+Gayle/MS
+Gaylord/M
+gaylord/SM
+gaylussite/M Noun: uncountable
+Gaysoc/SM
+gaysome
+gaysomeness/M Noun: uncountable
+Gayton/M
+Gaywood/M
+Gaza/M
+gazania/SM
+gaze/RGSDM
+gazebo/MS
+Gazeley/M
+gazelle/SM
+gazette/DGMS
+Gazette/M
+gazetteer/SM
+Gaziantep/M
+gazillion/SM
+gazillionaire/SM
+gazpacho/SM
+gazump/SGDr
+gazunder/Sd
+Gazza/M
+GB
+Gb
+Gbit/S
+GBP Currency code for the British pound sterling
+Gbps
+GCC/M
+gcd/SM Initialism of greatest common divisor
+GCD/SM Initialism of greatest common divisor
+GCE/SM
+GCSE/MS
+Gd
+GDP/M Noun: usually uncountable
+Ge/M
+gean/MS
+gear/DGSJM
+gearbox/MS
+gearhead/SM
+gearing/SM
+gearstick/SM
+gearwheel/MS
+Geary/M
+Geauga/M
+Geber/M
+Gebert/M
+gecko/MS
+geckoes
+Geddes/M
+Gedding/M
+Geddington/M
+geddit
+Gedgrave/M
+Gedling/M
+Gedney/M
+Gedye/M
+gee-gee/SM
+gee/dGMS
+geek/GDSM
+geekdom/M Noun: uncountable
+geekery/M Noun: usually uncountable
+geekish/Y
+geekishness/M Noun: uncountable
+geekspeak/M Noun: uncountable
+geeky/TPY
+Geelong/M
+Geertz/M
+geese/M Plural of goose
+geez/R
+Geffen/M
+GeForce/M
+Gehenna/M
+Gehrke/M
+Gehrts/M
+Geib/M
+Geiger/M
+geisha/MS
+Geisler/M
+Geisser/M
+Geissler Geissler tube
+geitonogamous
+geitonogamy/M Noun: uncountable
+gel/DMGS
+gelable
+gelati/M Plural of gelato
+gelatin/MS
+gelatine/SM
+gelatinise/SGDN
+gelatinize/SGDN
+gelatinous/PY
+gelato/SM
+gelcap/SM
+geld/SGJD
+Gelderland/M
+Geldeston/M
+Gelhorn/M
+gelid
+gelidity/M Noun: uncountable
+gelignite/MS
+Gellibrand/M
+Gelligaer/M
+Gelmini/M
+Gem/M
+gem/SZMDG2
+Gemalto/M
+Gemara/M
+gematria/SM
+gematriot/M
+Gemayel/M
+gemelli/M
+gemellus/SM
+gemfibrozil/M Noun: uncountable
+geminal/Y
+geminate/SGDN
+Geminga/M
+Gemini/SM
+Geminian/SM
+gemlike
+gemmology/3Mw
+gemology/3wM1
+gemstone/SM
+gen/DGWSM
+Genau'r-Glyn/M
+gendarme/SM
+gendarmerie/SM
+gender-fluid
+gender/MSp
+gendered
+genderfluid
+genderfluidity/M Noun: uncountable
+genderfuck/SGDMZ!
+genderism/SM
+genderqueer/SM
+gene/SM
+genealogize/DGS
+genealogy/w31MS
+genera/onWM1Vv
+general-purpose
+general/Ptq3+-SM
+generalisable/Y
+generalise/GSDlR
+generalissimo/SM
+generality/SM
+generalize/cDSG
+generalize/lR
+generalship/SM
+generate/AnVCGDS
+generational/Y
+generative/AY
+generator/AMS
+generic/SMP
+genericise/SGD
+genericize/SGD
+generis ejusdem generis
+generosity/SM
+generous/YP
+Genesee/M
+Geneseo/M
+geneses
+Genesis
+genesis/M
+Genet/M
+genet/SM
+genetic/OY3S
+geneticise/SGD
+geneticism/M Noun: uncountable
+geneticize/SGD
+genetively
+Geneu'r Geneu'r Glyn
+Geneva/M
+Genevese/SM
+Genevieve/M
+Geng/M
+Genghis/M
+genial/PU
+geniality/FSM
+genialize/DGS
+genially/F
+geniculate/DY
+genie/oSM
+genii/M Plural of genie
+genin/MS
+geniocracy/M Noun: uncountable
+genista/SM
+genistein/M Noun: uncountable
+genisteine/M
+genital/SMY
+genital/YF
+genitalia/WM
+genitival/YSM
+genitive/MSY
+genito-urinary
+genitocrural
+genitofemoral
+genitoplasty/MW
+genitor/SMO
+genitosexual
+genitourinary
+genius/MSD
+genizah/SM
+genlock/SGDM
+Gennys/M
+Genoa/M
+genocide/SMOr
+Genoese/M
+genome/SM
+genomic/3
+genomics/M Noun: uncountable
+genotoxic/Y
+genotoxicity/SM
+genotype/MS
+genotypic/OY
+genotypicity/M
+genre/MS
+gent/AMS
+gentamicin/SM
+genteel/PY
+genteelest
+genteelism/SM
+gentian/SM
+gentile/SM
+gentility/SM
+gentle/SM5PYmTGD
+gentlefolk/M
+gentleman-at-arms
+gentlemanliness/M Noun: uncountable
+gentlemanly/U
+gentlemen-at-arms
+gentoo/SM
+gentrify/nSDGr
+gentry/SM
+genu/M
+genua/M Plural of genu
+genuflect/DGS
+genuflection/SM
+genuflector/SM
+genuflexion/MS
+genuine/YP
+genus/M
+geo/SM
+geoarchaeologist/MS
+geoastrophysical
+geobiology/Mw
+geobiont/MS
+geobiotic
+geobotanic/OY
+geobotany/3M
+geocache/SMGDR
+geocentric/Y
+geocentricism/M Noun: uncountable
+geocentrism/M Noun: uncountable
+geochemical/Y
+geochemist/SM
+geochemistry/SM
+geochronology/w3MSW
+geocode/SGDM
+geocorona/SMO
+geocratic
+geocyclic
+geodata/M Noun: uncountable
+geode/MSW
+geodemographic/Y
+geodemographics/M Noun: uncountable
+geodesic/SM
+geodesist/MS
+geodesy/MS
+geodetic/OY
+geodetics/M Noun: uncountable
+geoduck/SM
+geodynamical/Y
+geodynamo/SM
+geoeconomics/M Noun: uncountable
+geoengineering/M Noun: uncountable
+geofencing/M Noun: uncountable
+Geoff/M
+Geoffrey/M
+geog/M Noun: uncountable
+geographer/MS
+geography/SM1Ww
+geoid/SMO
+geoinformation/M Noun: uncountable
+geolocate/SGDn
+geolocational
+geologize/DGS
+geology/w3WM1S
+geom
+geomagnetic/OY
+geomagnetism/MS
+geomancer/SM
+geomancy/M Noun: usually uncountable
+geomantic/OY
+geomatic/O3
+geomatics/M Noun: uncountable
+geomembrane/SM
+geometer/wS1MW
+geometric/OY
+geometrician/SM
+geometrics/M Noun: uncountable
+geometrid/SM
+geometrize/DGS
+geometry/SM
+geomorphic/Y
+geomorphology/3wSM
+geonavigation/M Noun: uncountable
+geonomy/WM
+geopark/SM
+geophagy/3M
+geophilic
+geophilosophical/Y
+geophilosophy/M Noun: usually uncountable
+geophilous
+geophone/SM
+geophyllous
+geophysical/Y
+geophysicist/SM
+geophysics/M Noun: uncountable
+geopolitic/YO
+geopolitics/M Noun: uncountable
+Geordi/M
+Geordie/MS
+georeference/SGD
+georeferencing/M Noun: uncountable
+George-super-Ely/M
+George/MS
+Georgeham/M
+Georgescu/M
+Georgetown/M
+Georgette/M
+georgette/SM
+Georgia/M
+Georgian/SM
+Georgie/M
+Georgina/M
+geoscience/MSW
+geoscientist/SM
+geospatial/Y
+geosphere/SM
+geostatic
+geostatics/M Noun: uncountable
+geostationary
+geostatistics/M Noun: uncountable
+geostrategic/OY
+geostrategy/SM
+geostrophic/Y
+geosynchronous/Y
+geosyncline/SM
+geotactic/Y
+geotag/SGDM
+geotaxis/M Noun: usually uncountable
+geotechnic/OY
+geotechnics/M Noun: uncountable
+geotechnology/SM
+geotectonics/M Noun: uncountable
+geotextile/SM
+geothermal/Y
+geotropic/Y
+geotropism/SM
+Geraint/M
+Gerald/M
+Geraldine/M
+Geraldton/M
+geraniol/SM
+geranium/SM
+Gerard/M
+Gérard/M
+Gerardine/M
+Gerardo/M
+Gerasimenko/M
+Gerber/M
+gerbera/SM
+Gerberding/M
+gerbil/MS
+Gerd/M
+gerenuk/MS
+Gerhard/M
+Gerhart/M
+geriatric/SM
+geriatrician/SM
+geriatrics/M Noun: uncountable
+germ/MSp
+germaaluminocene
+germaborocene
+Germain/M
+German-speaking
+Germán/M
+German/~M3S
+germander/SM
+germane/SMYP
+Germanic/SM
+Germanicism/MS
+Germanism/MS
+germanium/SM
+Germanize/DGSnr
+germanocene
+Germanomania/MS
+Germanophile/MS
+Germanophobe/MS
+Germanophobia/M
+Germansweek/M
+Germantown/M
+Germany/M
+germaphobe/SMW
+germaphobia/M Noun: uncountable
+Germer/M
+germicide/MSO
+germinability/SM
+germinable
+germinal/Y
+germinate/nDGVvS
+germinator/SM
+Germiston/M
+germling/SM
+Germoe/M
+germon/SM
+germophobe/SMW
+germophobia/M Noun: uncountable
+germy/T
+Gernsback/M
+Gerolamo/M
+Gerold/M
+Geronimo/M
+gerontic
+gerontocracy/SM
+gerontology/3SMw
+gerontophilia/M Noun: uncountable
+Gerovitch/M
+Gerrans/M
+Gerrards/M
+Gerrit/M
+Gerrold/M
+Gerry/M
+gerrymander/dSM
+Gers/M
+Gersh/M
+Gershenson/M
+Gershon/M
+Gershoni/M
+Gershuny/M
+Gershwin/M
+Gerstein/M
+Gertrude/M
+Gertrudes/M
+Gertz/M
+Gerull/M
+gerund/MS
+gerundive/SM
+Gervais/M
+Gervase/M
+Gesher/M
+Gessius/M
+Gessner/M
+gesso/M Noun: usually uncountable
+gessoes
+gestalt/SM3
+gestalten/M Plural of gestalt
+gestaltism/M Noun: uncountable
+Gestapo/M
+gestate/SxDGn
+gestative
+gesticulate/VDSGnv
+gesticulator/SMZ
+Gestingthorpe/M
+gesture/OGDMSo
+gesundheit
+get-out/SM
+get-rich-quick
+get/SGM
+getaway/SM
+Gethsemane/M
+gettable
+getter/SdM
+Getty/M
+Gettysburg/M
+getup/MS
+geum/SM
+Geurts/M
+GeV
+Gever/M
+gewgaw/SM
+Gewürztraminer/M
+geyser/dMS
+geyserite/SM
+Ghana/M
+Ghanaian/MS
+Gharaibeh/M
+gharial/SM
+ghastly/TP
+ghat/SM
+Ghats
+ghazal/SM
+Ghazi/SM
+Ghaznavid/SM
+Ghebreyesus/M
+ghee/M Noun: usually uncountable
+Ghent/M
+gherkin/MS
+ghetto/QSDGM
+ghettoes
+Ghibelline/MS
+ghillie/MS
+Ghirlandaio/M
+Ghizzoni/M
+ghost/DGMYS
+ghostbuster/SM
+ghostlike
+ghostly/PT
+Ghostscript/M
+ghostwrite/RGS
+ghostwritten
+ghostwrote
+ghoul/MS
+ghoulish/PY
+ghoulishness/M Noun: uncountable
+GHQ/SM
+ghyll/SM
+GHz
+Giacchino/M
+Giaccone/M
+Giacomo/M
+Gianfranco/M
+Gianluigi/M
+Giannis/M
+giant/MS
+giantess/MS
+giantism/SM
+giantkiller/SM
+giaour/SM
+giardiases
+giardiasis/M
+Giardino/M
+gib/SGDM
+GiB/SM
+Giba/M
+gibber/SdM
+gibberellin/MS
+gibberish/MS
+Gibbes/M
+gibbet/SMd
+Gibbins/M
+gibbon/MS
+gibbosity/SM
+gibbous/PY
+Gibbs/M
+gibbsite/SM
+gibe/GSMDr
+gibibit/SM
+gibibyte/SM
+giblet/SM
+Gibraltar/M
+Gibraltarian/SM
+Gibson/M
+GID/SM
+Gidding/M
+Giddings/M
+giddy/PGYTDS
+Gideon/MS
+Gidleigh/M
+Gidley/M
+GIF/SM
+Giffard/M
+Giffnock/M
+Gifford/MS
+Giffuni/M
+gift/hGDSMi
+gifted/PU
+giftware/SM
+gig/GMSD
+gigabit/SM
+gigabyte/SM
+gigacycle/MS
+gigaflop/SM
+gigahertz/M
+gigajoule/SM
+giganotosaurus/SM
+gigantesque
+gigantesquement
+gigantic/POY
+giganticness/M Noun: uncountable
+gigantism/SM
+gigapascal/SM
+gigapixel/SM
+gigasecond/SM
+gigaton/SM
+gigatonne/SM
+gigavolt/SM
+gigawatt/MS
+Gigerenzer/M
+giggle/RGDSYkM
+Giggleswick/M
+giggly/T
+Giggs/M
+Gigha/M
+Giglio/M
+gigolo/SM
+gigot/SM
+gigue/SM
+Gil/M
+Gila/M
+Gilbank/M
+Gilberdyke/M
+Gilbert/M
+Gilbertian
+Gilbertianism/M Noun: uncountable
+Gilberto/M
+Gilbertson/M
+Gilchrist/M
+Gilcrux/M
+gild/RJGDS
+Gilda/MS
+Gildernew/M
+Gildersome/M
+Gildingwells/M
+Gildredge/M
+Gilead/M
+Gilenya/M
+Giles/M
+Gileston/M
+gilet/SM
+Gilfach/M
+Gilford/M
+gilgai/SM
+Gilgamesh/M
+gill/MSGD
+Gillamoor/M
+Gillan/M
+Gillard/M
+gillaroo/SM
+Gilleland/M
+Gillespie/M
+Gillett/M
+Gillette/M
+Gillian/M
+Gillibrand/M
+gillie/SM
+Gilligan/M
+Gilling/M
+Gillingham/M
+gillion/SM
+Gillmor/M
+Gillon/M
+Gillray/M
+gillyflower/SM
+Gillygooly/M
+Gilma/M
+Gilman/M
+Gilmartin/M
+Gilmer/M
+Gilmerton/M
+Gilmore/M
+Gilmorton/M
+Gilmour/M
+Gilpin/M
+Gilroy/M
+Gilruth/M
+Gilston/M
+gilt-edged
+gilt/SM
+giltwood/M Noun: uncountable
+gimbal/SMD
+gimble/SGDM
+gimcrack/SM
+gimcrackery/SM
+Gimingham/M
+gimlet/MS
+gimme/r
+gimmick/SZMy
+gimmickry/SM
+gimp/DMGZS
+GIMP/M
+gimpy/T
+gin/MDSG
+Gina/M
+ginger/ZYSdM
+gingerade/SM
+gingerbread/SM
+gingerly/P
+gingerol/M Noun: usually uncountable
+gingerroot/SM
+gingham/MS
+gingiva/MO
+gingivae/M Plural of gingiva
+gingivitis/MS
+ginkgo/MS
+ginkgoes
+Ginnie/M
+Gino/M
+Ginsberg/M
+Ginsburg/M
+ginseng/MS
+Gioconda/M
+Giora/M
+Giordano/M
+Giorgi/M
+Giorgio/M
+Giotto/M
+Giovane/M
+Giovanni/M
+Giovannucci/M
+Gipping/M
+gippo/SM
+gipsy/SM
+Gipuzkoan/SM
+giraffe/SM
+Giraldo/M
+Giraldus/M
+girandole/SM
+Girardeau/M
+girasol/SM
+girasole/SM
+Giraud/M
+gird/RSMDG
+girdle/DSGMr
+Girdle/M
+girl/MSj
+girldom/M Noun: uncountable
+girlfriend/SM
+girlhood/SM
+girlie/M
+girlish/PY
+girly/SM
+giro/MS
+Giroir/M
+Gironde/M
+Giroux/M
+Girsby/M
+girt/SM
+girth/GDSM
+Girthon/M
+Girton/M
+Girvan/M
+Gisborne/M
+Gisburn/M
+Giscala/M
+Giselle/M
+Gisleham/M
+Gislingham/M
+gismo/SM
+Gissing/M
+gist/SM
+git/SM
+gitana/SM
+gitano/SM
+GitHub/M
+Gitmo/M
+Gittisham/M
+Gittoes/M
+Giudice/M
+Giulia/M
+Giuliani/M
+Giuseppe/M
+Giusto/M
+give-away/MS
+give/7RGSkM
+giveaway/SM
+giveback/SM
+given
+Givendale/M
+giveth
+giving/aY
+Giza/M
+gizmo/SM
+gizzard/SM
+glabella/SM
+glabellae/M
+glabellar
+glabrous/Y
+glabrousness/M Noun: uncountable
+glacé/DGS
+glacial/Y
+glaciate/DGSn
+Glacier/M
+glacier/SM
+glaciology/SM3w
+glaciomarine
+Glack/M
+glad/SDZPGTY
+gladden/dS
+glade/MS
+Glade/MS
+Gladestry/M
+gladiator/SMO
+gladiola/SM
+gladioli/M
+gladiolus/SM
+Gladman/M
+Gladney/M
+Gladsmuir/M
+gladsome/TY
+Gladstone-Tannum/M
+Gladstone/M
+Gladstonian/SM
+Gladwin/M
+Gladys/M
+Glagolitic/M
+glaikit/SM
+glair/ZSM
+Glaisdale/M
+Glaister/M
+glaive/SM
+glam/SGDM
+Glamis/M
+Glamorgan/M
+Glamorganshire/M
+glamorise/nDRSG
+glamorize/nDRSG
+glamorous/UY
+glamour/GMDSp
+glamourise/SGDN
+glamourize/SGDN
+glamourpuss/SM
+glamp/SGDR
+Glan/M
+glance/kDSGM
+gland/MSp
+glanders/M Noun: uncountable
+glandes
+Glandford/M
+glandular/YSM
+glans/M
+Glantwymyn/M
+Glanvill/M
+Glanville/MS
+Glapthorn/M
+Glapton/M
+Glapwell/M
+glare/kSDGMZ
+glargine/M Noun: uncountable
+glaring/PSM
+Glasbury/M
+Glascote/M
+Glascwm/M
+Glaser/M
+Glasford/M
+Glasgow/M
+Glasgwm/M
+glasnost/SM
+glass-blower/SM
+glass-blowing/M Noun: uncountable
+glass/D6MGZzSp
+Glass/M
+Glassary/M
+Glassboro/M
+Glasserton/M
+Glassey/M
+Glassford/M
+glassful/MS
+glasshouse/SM
+glasslike
+glassmaker/SM
+glassmaking/M Noun: uncountable
+Glassonby/M
+glasspaper/M Noun: uncountable
+glassware/MS
+glasswork/SM
+glasswort/SM
+glassy/PTSM
+Glaston/M
+Glastonbury/M
+Glaswegian/SM
+Glatton/M
+Glauber/M
+glaucoma/MS
+glauconite/SMW
+glaucous/Y
+glaucousness/M Noun: uncountable
+GlaxoSmithKline/M
+glaze/RSJDGZM
+Glazebrook/M
+Glazebury/M
+Glazeley/M
+glazier/SM
+glaziery/M Noun: usually uncountable
+Glazunov/M
+GLC/M
+gleam/GSMDZ
+glean/DRSGJ
+Gleason/M
+Glebe/M
+glebe/SM
+gled/MS
+glee/DjSM6
+gleeful/P
+gleeman/M
+gleemen/M
+gleesome/Y
+gleesomeness/M Noun: uncountable
+Gleevec/M
+Gleichschaltung/M
+Gleick/M
+Gleitsmann/M
+Glemham/M
+Glemsford/M
+glen/MS
+Glen/MS
+Glenaray/M
+Glenarm/M
+Glenavy/M
+Glenbervie/M
+Glenboig/M
+Glenbuchat/M
+Glenburn/M
+Glencairn/M
+Glencoe/M
+Glencorse/M
+Glenda/M
+Glendale/M
+Glendaruel/M
+Glendene/M
+Glendevon/M
+Glendon/M
+Glendora/M
+Glendowie/M
+Glenelg/M
+Glenfarg/M
+Glenfield/MS
+Glengairn/M
+Glengarry/M
+glengarry/SM
+Glengormley/M
+Glengorse/M
+Glenhead/M
+Glenholm/M
+Glenis/M
+Glenisla/M
+Glenlivet/M
+Glenluce/M
+Glenmavis/M
+Glenmoriston/M
+Glenmornan/M
+Glenmuick/M
+Glenn/M
+Glenny/M
+Glenoe/M
+glenohumeral
+glenoid/SM
+Glenone/M
+Glenorchy/M
+Glenpool/M
+Glenrothes/M
+Glenshee/M
+Glenshiel/M
+Glenside/M
+Glentham/M
+Glentui/M
+Glentworth/M
+Glenvar/M
+Glenview/M
+Glenville/M
+gley/SM
+glib/TPY
+Glidden/M
+glide/GSRDJM
+Gliese/M
+glim/SM
+glimepiride/M Noun: uncountable
+glimmer/dJSM
+glimpse/MGRDS
+Glims/M
+glint/DGSM
+Glinton/M
+glioblastoma/SM
+glioblastomata/M
+glioma/SM
+gliomata/M
+glioses
+gliosis/M
+glipizide/M Noun: uncountable
+glissade/DGSM
+glissandi/M Plural of glissando
+glissando/MS
+glissandoes
+glissé/SM
+glisten/SdM
+glister/SdM
+glitch/RDGMSp
+glitchy/T
+glitter/dSZkJM
+glitterati/M Noun: uncountable
+glitz/SDGZM
+glitziness/M Noun: uncountable
+glitzy/T
+gloaming/MS
+gloat/GkSDrM
+glob/SMGD
+global/3Y
+globalise/SGDnr
+globalism/SM
+globalize/SGDRn
+globe-like
+globe-trotting/M Noun: uncountable
+globe/SMDG
+globefish/SM
+globetrotter/MS
+globigerina/SM
+globigerinae/M
+globoid/SM
+globose/Y
+globoseness/M Noun: uncountable
+globular/YPSM
+globularity/M Noun: usually uncountable
+globularness/M Noun: uncountable
+globule/SM
+globulin/SM
+glocalisation/SM
+glocalization/SM
+glochid/SM
+glockenspiel/SM
+glomerular/Y
+glomeruli/M Plural of glomerulus
+glomerulonephrites
+glomerulonephritides
+glomerulonephritis/M
+glomerulus/M
+gloom/MDGZSz
+gloomy/TP
+gloop/SM
+gloopy/TP
+Glooston/M
+Gloria/MS
+gloriam ad majorem Dei gloriam
+glorify/RSGnD
+gloriole/MS
+glorious/PYI
+glory/MSGD
+gloss/zSGZMDO
+glossary/OSM3
+glossator/SMOZ
+glossitis/M Noun: uncountable
+glossographer/SM
+glossolalia/SMW
+Glossop/M
+glossopharyngeal/SM
+glossy/TSMP
+glottal/SM
+glottalization/SM
+glottic
+glottides
+glottis/SM
+Glotzer/M
+Gloucester/M
+Gloucestershire/M
+glove/SRGDMp
+glovebox/SM
+Gloversville/M
+glow-worm/SM
+glow/GRDkSM
+glower/d
+glowy/T
+Gloxin/M
+gloxinia/SM
+gloze/SGDJ
+glucagon/SM
+glucan/SM
+Glucksman/M
+glucocorticoid/SM
+gluconate/SM
+glucosamine/SM
+glucose/MS
+glucoside/SMW1
+glucuronate/SM
+glucuronide/SM
+glue-sniffer/SM
+glue-sniffing/M
+glue/SRMDGZ
+glueball/SM
+glueing
+glug/SGDM
+gluggable
+gluier
+gluiest
+glum/TYP
+glumaceous
+glume/SM
+glumose
+glunch/SGD
+gluon/SMW
+gluonia/M Plural of gluonium
+gluonics/M Noun: uncountable
+gluonium/SM
+Glusburn/M
+Gluss/M
+glut/SMGD
+glutamate/SM
+glutamic
+glutamine/SM
+glutaraldehyde/M Noun: uncountable
+glutathione/SM
+gluteal/SM
+glutei/M Plural of gluteus
+gluten/SM
+gluteus/M
+glutinous/PY
+glutton/SM
+gluttonize/SGDJ
+gluttonous/Y
+gluttonousness/M Noun: uncountable
+gluttony/SM
+Gluvias/M
+glyburide/M Noun: uncountable
+glycaemia/WM
+glycan/SM
+glycated
+glycation/SM
+glyceride/MS
+glycerin/SM
+glycerinate/SGD
+glycerine/SM
+glycerol/SM
+glycerolized/C
+glycine/SM
+glycogen/SMW
+glycogeneses
+glycogenesis/M
+glycol/MSW
+glycolaldehyde/SM
+glycolipid/SM
+glycollic
+glycolyses
+glycolysis
+glycolytic/Y
+glycoprotein/SM
+glycosaminoglycan/SM
+glycoside/SMW1
+glycosuria/SMW
+glycosyl/SM
+glycosylate/SGDn
+glycosyltransferase/SM
+Glympton/M
+Glyn/M
+Glyncollen/M
+Glyncorrwg/M
+Glynde/M
+Glyndebourne/M
+Glyndŵr/M
+Glynn/M
+Glynneath/M
+Glynrhondda/M
+Glyntraian/M
+glyph/SMW1
+glyptic/O
+glyptics/M Noun: uncountable
+glyptodon/SM
+glyptography/M Noun: uncountable
+gm/SM
+gmail/SGDM
+Gmail/SGDM
+Gmane/M
+GmbH/M
+GMO/SM Initialism of genetically modified organism
+GMT Initialism of Greenwich Mean Time
+Gnaeus/M
+gnarl/GSMD
+gnarly/T
+gnash/DGS
+gnat/MS
+gnathic
+gnaw/JSGDr
+gneiss/MS
+gneissose Adjective
+gnetophyte/SM
+Gnilka/M
+gnocchi/SM
+gnomae/M Plural of gnome
+gnomai/M Plural of gnome
+GNOME/M
+gnome/MS
+gnomelike
+gnomic/OY
+gnomish/Y
+gnomishness/M Noun: uncountable
+gnomon/WSM
+Gnosall/M
+gnoses
+gnosis/M
+Gnostic/MS
+gnostic/SM
+Gnosticism/SM
+gnosticism/SM
+GNP/SM Initialism of gross national product
+GNU/M
+gnu/MS
+GnuPG/M
+go-ahead/SM
+go-between/SM
+go-kart/SM
+go-karting/M Noun: uncountable
+go-slow/SM
+go/fGe
+go/M
+Goa/M
+goad/GDMS
+Goadby/M
+goadsman/M
+goadsmen/M
+goal-line/SM
+goal/pSGDM
+goalball/SMr
+goalhanger/SM
+goalie/MS
+goalkeeper/MS
+goalkeeping/M Noun: uncountable
+goalmouth/SM
+goalpost/SM
+goalscorer/SM
+goalscoring/M Noun: uncountable
+goaltending/M Noun: uncountable
+goalward/S
+Goan/SM
+Goanese/M
+goanna/SM
+goat/ZMS~
+goatee/SMd
+goatherd/SM
+Goathill/M
+Goathland/M
+Goathurst/M
+goatling/MS
+goatskin/SM
+goatsucker/SM
+gob/SGDM
+Gobalds/M
+gobbet/SM
+gobble/RDGSM
+gobbledegook/M Noun: usually uncountable
+gobbledygook/M Noun: usually uncountable
+gobby/SM
+Göbel/M
+Gobel/M
+Gobelin/MS
+gobemouche/SM
+Gobi/M
+Gobion/M
+goblet/SM
+goblin/SM
+Gobowen/M
+gobsmacked
+gobsmacking
+gobstopper/SM
+goby/SM
+Goch/M
+gochujang/M Noun: uncountable
+Goclenian
+god-daughter/MS
+God-fearer/SM
+God-fearing/Y
+God-forsaken
+God-given
+God-loving
+God-manhood/M
+God-shaped
+God/6M
+god/SMYp
+Godalming/M
+godawful/Y
+godawfulness/M Noun: uncountable
+godchild/M
+godchildren/M
+goddammit
+Goddard/M
+goddess/SM
+Gödel/M
+Goderich/M
+godet/SM
+godetia/SM
+godfather/SdMY
+godfatherhood/M Noun: uncountable
+godfathership/SM
+godforsaken/Y
+godforsakenness/M Noun: uncountable
+Godfrey/M
+Godfull
+Godhead/M
+godhead/SM
+godhood/SM
+Godington/M
+Godinho/M
+godless/PY
+godlike/P
+godly/PT
+Godmanchester/M
+Godmanstone/M
+Godmersham/M
+godmother/MS
+Godney/M
+Godolphin/M
+godown/MS
+godparent/MS
+godsend/MS
+Godshill/M
+godship/MS
+godson/MS
+Godspeed/SM
+Godstone/M
+Godwick/M
+Godwin/M
+Godwinson/M
+godwit/SM
+Godwottery/M
+Godzilla/M
+Goebbels/M
+Goebel/M
+Goeppert/M
+goer/SM
+Goering/M
+goes/ef
+goeth
+Goethe/M
+Goethean
+Goethian
+goethite/SM
+Goetre/M
+gofer/SM
+Goff/MS
+goffer/MSdr
+Goffinet/M
+Goffman/M
+Goffstown/M
+Gog/M
+Gogebic/M
+goggle-box/SM
+goggle-eyed
+goggle/SRDGM
+Gogh/M
+Goidel/MS
+Goidelic/M
+going/SM
+goings-on/M
+goitre/DMS
+goitrous
+Goju-ryu/M
+Goju-Ryu/M
+Golborne/M
+Golconda/M
+gold-plate/SGD Verb
+Gold/M
+gold/TSM
+Golda/M
+Goldbach/M
+Goldberg/M
+Goldbeter/M
+goldbrick/MDRSG
+Goldcliff/M
+goldcrest/SM
+Golden/M
+golden/PY
+goldendoodle/SM
+goldeneye/SM
+goldenrod/MS
+goldenseal/SM
+Golder/SM
+goldfield/SM
+goldfinch/SM
+goldfish/SM
+goldfishery/SM
+Goldhaber/M
+Goldhamer/M
+goldhammer/SM
+Goldhanger/M
+Goldie/M
+goldilocks
+Golding/M
+Goldington/M
+Goldman/M
+goldmine/SM
+Goldney/M
+Goldreich/M
+Goldsboro/M
+Goldsborough/M
+Goldschmidt/M
+Goldshaw/M
+Goldsman/M
+Goldsmith/M
+goldsmith/SM
+Goldstein/M
+Goldstone/M
+Goldwater/M
+Goldwyn/M
+golem/MS
+Goleta/M
+golf/MRSGD
+Golflands/M
+Golgi/M
+golgotha
+Golgotha/SM
+Goliath/M
+goliath/SM
+golliwog/SM
+gollop/MSd
+golly/SM
+gollywog/SM
+Golomb/M
+Golspie/M
+Goltho/M
+Golub/SM
+gombeen/SM
+Gomes/M
+Gomez/M
+Gómez/M
+Gomorrah/M
+gonad/OMSo
+gonadectomy/SM
+gonadotrophic
+gonadotrophin/SM
+gonadotropic
+gonadotropin/SM
+Gonalston/M
+Gonçalo/M
+Gonçalves/M
+gondoic
+gondola/MS
+gondolier/MS
+Gondwana/M
+Gondwanaland/M
+Gondwanan/SM
+gone/R
+Gonerby/M
+gonfalon/SM
+gonfalonier/SM
+gong/SDMG
+Gonggong/M
+goniometer/MSWw
+goniometry/SM
+gonna
+Gonne/M
+gonococci/MO
+gonococcus/M
+gonoduct/SM
+gonolek/SM
+gonorrhoea/SMO
+Gonubie/M
+Gonville/M
+Gonzales/M
+Gonzalez/M
+goo/ZM
+Goober/M
+Goochland/M
+good-for-nothing/SM
+good-for-nothingness/M Noun: uncountable
+good-humoured/Y
+good-humouredness/M Noun: uncountable
+good-looking
+good-lookingness/M Noun: uncountable
+good-natured/Y
+good-naturedness/M Noun: uncountable
+good-oh
+good-tempered
+good-temperedness/M Noun: uncountable
+Good/M
+good/rSZPY~M
+Goodall/M
+goodbye/MS
+Goode/M
+Gooden/M
+Gooderstone/M
+Goodfellow/M
+goodhearted/Y
+goodheartedness/M Noun: uncountable
+Goodhue/M
+goodie/M
+goodiness/M Noun: uncountable
+Gooding/M
+Goodleigh/M
+Goodlettsville/M
+goodly/TP
+goodman/M
+Goodman/M
+Goodmanham/M
+goodmen/M
+Goodnestone/M
+goodnight
+goodo
+Goodpasture/M
+Goodramgate/M
+Goodrich/M
+Goodsell/M
+Goodshaw/M
+Goodwick/M
+goodwife/M
+goodwill/SM
+Goodwin/M
+goodwives
+Goodwood/M
+Goodworth/M
+goody/MS
+Goodyear/M
+gooeyness/M Noun: uncountable
+goof/GDMZSR
+goofy/TP
+google/DSG7M
+Google/M
+googleable
+googly/SMT
+googol/S
+gooier
+gooiest
+gook/SMZ
+Goole/M
+Gooley/M
+goon/SM
+goop/M Noun: usually uncountable
+goopy/TP
+goosander/SM
+goose-step/SMGDR
+Goose/M
+goose/MSGD
+gooseberry/SM
+goosebump/SM
+goosefoot/SM
+goosegog/MS
+goosegrass/SM
+Goosey/M
+Goosnargh/M
+Goostrey/M
+GOP/SM
+Gopher An Internet protocol for document search and retrieval
+gopher/MS
+goral/SM
+Goran/M
+Göran/M
+Gorbach/M
+Gorbachev/M
+Gorbals/M
+gorbellied
+gorblimey
+gorcock/SM
+Gorda/M
+Gordano/M
+Gordian/M
+Gordius/M
+Gordo/M
+Gordon/M
+Gordonsburgh/M
+Gordonstoun/M
+gore/SMDGJZ
+Gorebridge/M
+Gorefield/M
+Goren/M
+Goresky/M
+Gorey/M
+Gorge/M
+gorge/MSDG
+gorgeous/YP
+gorger/EM
+gorget/SM
+Gorgie/M
+gorgon/SM
+gorgonian/SM
+Gorgonzola/M
+Gorham/M
+gorilla/SM
+Goring-on-Thames/M
+Goring/SM
+Gorkhali/M
+Gorky/M
+Gorleston/M
+gormandise/GSRD
+gormandize/GSRD
+gormless/Y
+gormlessness/M Noun: uncountable
+Gornal/M
+Gornik/M
+Gorran/M
+gorse/MSZ
+Gorsedd/MS
+Gorseinon/M
+Gorslas/M
+Gorsley/M
+Gorsuch/M
+Gortaclare/M
+Gortin/M
+Gortnahey/M
+Gorton/M
+gory/TYP
+Gosbeck/M
+Gosberton/M
+Goscombe/M
+Goscote/M
+Gosfield/M
+Gosford/M
+Gosforth/M
+gosh/S
+goshawk/SM
+Goshedan/M
+Goshen/M
+gosling/SM
+Gospel/MS
+gospel/SMR
+Gosport/M
+Goss/M
+gossamer/MSZ
+Gosse/M
+Gosset/M
+Gossett/M
+gossip/dSMr
+gossipy/T
+gossoon/SM
+Gossops/M
+gossypol/SM
+got
+gotcha
+gotcher
+Göteborg/M
+Goth/1SM
+goth/SMW
+Gotha/M
+Gotham/M
+Gothenburg/M
+Gotherington/M
+Gothic/SM
+Gothicise/SGD
+Gothicism/SM
+Gothicize/SGD
+Gothicness/M Noun: uncountable
+Gotland/M
+GOTO/SGDM
+gotta
+gotten
+Gottesman/M
+Gottfried/M
+Gotthard/M
+Gottlieb/M
+gouache/SM
+Gouda/M
+Goudhurst/M
+Goudie/M
+gouge/DRGSM
+Gough/M
+goulash/MS
+Goulburn/M
+Goulceby/M
+Gould/M
+Gounod/M
+gourami/SM
+gouramies
+gourd/MSZ
+gourdful/SM
+Gourdon/M
+gourdsful/M
+gourmand/SM
+gourmandise/SGDR
+gourmandism/M Noun: uncountable
+gourmandize/SGDR
+gourmet/SM
+Gourock/M
+Goussé/M
+gout/ZSM
+goutweed/M Noun: uncountable
+gouty/T
+gov.
+Govan/M
+Govanhill/M
+govern/GaSD
+governable/U
+governance/SM
+governess/MSZ
+government/aM
+government/SM
+governmental/Y3
+governmentalisation/M Noun: usually uncountable
+governmentalism/M Noun: uncountable
+governmentalization/M Noun: usually uncountable
+governmentese/M Noun: uncountable
+governmentwide
+governor/MS
+governorate/SM
+governorship/MS
+Govind/M
+Govt.
+gowan/MS
+Gowdall/M
+Gower/M
+Gowerton/M
+gowk/MS
+Gowkthrapple/M
+Gowland/M
+gown/SDMG
+Gowts/M
+Goxhill/M
+Goy/M
+goy/MS
+Goya/M
+goyem/M Plural of goy
+goyim/M Plural of goy
+GP/SM
+GPa
+GPG/M
+Gpg4win/M
+GPGTools/M
+gph
+GPL/M
+gpm
+GPMU Graphical, Paper, and Media Union
+GPO
+GPRS/M Noun: uncountable
+GPS/M
+GPSes
+GPSS
+GPU/SM
+gr
+Graaf/M
+Graafian
+grab/RSMJDG
+Graban/M
+grabble/DGS
+graben/SM
+Grabowski/M
+Graça/M
+grace/DpG6MjS
+Grace/MS
+grâce/S
+Gracechurch/M
+Gracefield/M
+graceful/EPY
+gracefuller
+gracefullest
+gracefulness/SE
+Gracehill/M
+graceless/YP
+Gracemount/M
+Gracenote/M
+Gracie/M
+Graciela/M
+gracile Adjective
+gracility/SM
+gracious/UY
+graciousness/MS
+grackle/SM
+grad/SM7
+gradability/M Noun: usually uncountable
+gradate/DSG
+gradation/CM
+gradation/Oo
+Grade-Ruan/M
+grade/JMY
+Grade/M
+grade/nRCSDG
+gradience/M Noun: usually uncountable
+gradient/SM
+gradin/MS
+gradine/MS
+gradiometer/SM
+Gradle/M
+gradual/SMYP3
+gradualism/SM
+gradualistic
+graduand/SM
+graduate/MGnDS
+gradus/MS
+Grady/M
+Graecise/SGD
+Graecism/MS
+Graecize/SGD
+Graeco-Roman
+Graeme/M
+Graemsay/M
+Graf/M
+Grafen/M
+Gräfenberg/M
+Graff/M
+Graffham/M
+graffiti/M
+graffito/M
+Graffoe/M
+Grafham/M
+graft/SMRGDJ
+Grafton/M
+Graham/M
+Grahame/M
+Grahamston/M
+Grahamstown/M
+Graig/M
+Grail
+grail/SM
+grain/DIGS
+Grain/M
+grain/Mpr
+Grainger/M
+graining/SM
+Grainne/M
+Grainsby/M
+Grainsthorpe/M
+Grainthorpe/M
+grainy/TP
+graip/MS
+Gralam/M
+gralloch/GDM
+grallochs
+Gram/M
+gram/MS
+graminaceous
+graminivorous
+grammalogue/SM
+Grammar/M
+grammar/SM
+grammarian/MS
+grammatical/PY
+grammaticalise/SGDn
+grammaticality/SM
+grammaticalize/SGDN
+gramme/SM
+Grammy/SM
+Grammys
+gramophone/MSW
+Grampian/MS
+Grampound/M
+grampus/MS
+Gramsci/M
+Gran/SM
+gran/SM
+Granada/M
+granadilla/MS
+granary/SM
+Granborough/M
+Granby/M
+Grand/M
+grand/TYSMP
+grandad/SM
+grandam/MS
+grandame/SM
+grandaunt/MS
+grandbabe/SM
+grandbaby/SM
+Grandborough/M
+grandchild/M
+grandchildren/M
+granddad/SMZ
+granddaddy/SM
+granddaughter/MS
+Grande-Rivière/M
+Grande/M
+grandee/SM
+grandeur/SM
+grandfather/MdSY
+grandiflora/MS
+grandiloquence/MS
+grandiloquent/Y
+Grandin/M
+grandiose/YP
+grandiosity/MS
+Grandison/M
+Grandisonian
+grandma/SM
+grandmaster/SM
+grandmother/MYS
+grandmotherhood/M Noun: uncountable
+grandnephew/SM
+grandniece/MS
+Grandon/M
+grandpa/MS
+grandparent/SMO
+grandparenthood/M Noun: uncountable
+grandsire/MS
+grandson/SM
+grandstand/SDGMR
+granduncle/SM
+Grandview/M
+Grandville/M
+Grange-Over-Sands/M
+Grange/M
+grange/SM
+Grangemouth/M
+Granger/M
+grangerise/DGSnr
+grangerize/DGSnr
+Grangetown/M
+graniferous
+graniform
+Granit/M
+Granite/M
+granite/MWS
+granitoid/SM
+Granity/M
+granivorous
+grannie/MS
+granny/MS
+granodiorite/SM
+granolithic/M
+Gransden/M
+Granston/M
+grant-maintained
+grant/DRMGS
+Grant/MS
+Granta/M
+grantable
+Grantchester/M
+grantee/SM
+Granth/M
+Grantham/M
+Grantley/M
+Granton/M
+grantor/SM
+Grantown-on-Spey/M
+Grantown/M
+grantsmanship/SM
+Grantully/M
+granular/Y
+granularity/MS
+granulate/SDGn
+granulator/MS
+granule/nMVS
+granulite/WSM
+granulocyte/SMW
+granuloma/SM
+granulomata/M
+granulomatous
+granulometric/Y
+Granville/M
+grape/MSZ
+grapefruit/SM
+grapeseed/SM
+grapeshot/M Noun: usually uncountable
+grapestone/SM
+Grapevine/M
+grapevine/MS
+grapey
+graph/MWGwD1S
+grapheme/MSW
+graphemic/Y
+graphemics/M Noun: uncountable
+graphene/SM
+graphic/MPS
+graphism/SM
+graphite/MSW
+graphitize/DGS
+graphology/SM3w
+grapnel/SM
+grappa/SM
+Grappenhall/M
+grapple/SGJDMR
+graptolite/SM
+Grasby/M
+Grasmere/M
+grasp/Gk7DSRM
+grasping/SMPY
+Grass/M
+grass/ZSDGMrp
+grasscloth/SM
+Grasse/M
+grasshopper/SM
+Grassington/M
+grassland/SM
+Grassmoor/M
+grassquit/SM
+Grassthorpe/M
+grassy/T
+grata persona grata
+gratae personae gratae
+grate/jRG6SMDkJ
+grateful/TP
+Grateley/M
+gratia gratia Dei
+Gratian/M
+graticule/SM
+gratify/RSGknD
+gratin/SM
+grating/SMY
+gratingness/M Noun: uncountable
+Gratiot/M
+gratis
+gratitude/SIM
+Gratton/M
+gratuitous/PY
+gratuity/MS
+Gratus/M
+Gratwich/M
+Grauman/M
+graunch/DGSM
+Graunt/M
+grav/SM
+gravadlax/M Noun: uncountable
+gravamen/MS
+gravamina/M
+gravatar/SM
+grave-stone/SM
+grave/RSMZPTDYG
+gravedigger/SM
+gravel/DYGMS
+Graveley/M
+graven
+Graveney/M
+Gravenhurst/M
+Graves/M
+Gravesen/M
+Gravesend/M
+Gravesham/M
+graveside/SM
+gravestone/MS
+Gravettian
+graveyard/MS
+gravid/YP
+gravimeter/1SWM
+gravimetry/M Noun: usually uncountable
+gravis myasthenia gravis
+gravitas/M Noun: uncountable
+gravitate/DGnVxS
+gravitino/SM
+graviton/MSW
+gravitropic/Y
+gravity/SM
+gravlax/M Noun: uncountable
+gravure/SM
+gravy/MS
+grawlix/SM
+Gray/MS
+gray/SM
+Grayingham/M
+Grayrigg/M
+Grayshott/M
+Grayslake/M
+Grayson/M
+Graz/M
+graze/JRSGD
+Graziani/M
+grazier/SM
+Greasborough/M
+grease/CDRGS
+grease/M
+greasepaint/SM
+greaseproof
+Greasley/M
+greasy/PTY
+great-aunt/SM
+great-grandchild/M
+great-grandchildren/M
+great-grandfather/SM
+great-grandmother/SM
+great-grandparent/SM
+great-nephew/SM
+great-niece/SM
+great-uncle/SM
+Great/M
+great/PYSMT
+greatcoat/SDMp
+greaten/Sd
+Greater/M
+Greatford/M
+Greatham/M
+greathearted/Y
+greatheartedness/M Noun: uncountable
+Greatworth/M
+greave/SM
+Greaves/M
+grebe/SM
+Grecian/SM
+Grecism/MS
+Greco-Roman
+Greece/M
+greed/SzM
+greedy/PT
+greegree/SM
+Greek/SM
+Greekness/M Noun: uncountable
+Greeley/M
+green-eyed
+Green/M
+green/TPMGYDSpr
+Greenacres/M
+Greenaway/M
+Greenback/M
+Greenbank/M
+Greenbaum/M
+Greenbelt/M
+greenbelt/SM
+Greenberg/M
+greenbottle/SM
+Greenbrier/M
+greenbrier/SM
+greenbul/SM
+Greenburgh/M
+Greenbush/M
+Greencastle/M
+Greendale/M
+Greendykes/M
+Greene/M
+greenery/SM
+Greeneville/M
+Greenfield/M
+greenfield/SM
+greenfinch/SM
+greenfly/MS
+Greenford/M
+greengage/MS
+Greengairs/M
+greengrocer/SZM
+greengrocery/SM
+Greenhalgh-with-Thistleton/M
+Greenhalgh/M
+Greenham/M
+Greenhead/M
+greenhead/SM
+greenheart/SM
+Greenhill/MS
+Greenhithe/M
+Greenholm/M
+greenhorn/MS
+greenhouse/MS
+Greenhow/M
+greenie/SM
+greening/SM
+greenish/YP
+Greenisland/M
+greenkeeper/SM
+Greenland/WRM~
+greenlandit/SM
+greenlandite/SM
+Greenlandman/M
+Greenlands/M
+Greenlane/M
+Greenlaw/M
+greenlet/SM
+Greenleys/M
+greenling/SM
+greenmail/SGDRM
+Greenmeadows/M
+Greenmount/M
+Greenock/M
+Greenpeace/M
+Greenrigg/M
+Greensand/M
+greensand/SM
+Greensboro/M
+Greensburg/M
+greenshank/SM
+greensick Adjective
+greensickness/M Noun: uncountable
+Greenside/M
+Greenstead/M
+greenstick/SM
+greenstone/SM
+greenstuff/SM
+Greensville/M
+greensward/SM
+greenth/M Noun: uncountable
+Greenup/M
+Greenville/M
+greenweed/SM
+Greenwich/M
+Greenwood/M
+greenwood/SM
+greeny/SM
+Greer/M
+Greerton/M
+greet/DRGSJ
+Greete/M
+Greetham/M
+Greetwell/M
+Greg/M
+gregarious/PY
+Gregg/M
+Gregor/M
+Gregorian/SM
+Gregorio/M
+Gregory/M
+Greig/M
+greige/SM
+Greinton/M
+gremlin/MS
+Grenada/M
+grenade/MS
+Grenadian/SM
+Grenadier/MS
+grenadier/SM
+grenadilla/MS
+grenadine/MS
+Grenadines/M
+Grendon/M
+Grene/M
+Grenoble/M
+Grenville/M
+Gresford/M
+Gresham/M
+Gresley/M
+Gressenhall/M
+Gressingham/M
+Gresty/M
+Greta/M
+Gretchen/M
+Gretel/M
+Gretna/M
+Gretton/M
+grevillea/SM
+grew/cAe
+Grewelthorpe/M
+Grexit/M
+Grey/MS
+grey/TMSDYGP~
+Greyabbey/M
+greybeard/SM
+Greyfriars/M
+greyhound/SM
+greylag/SM
+Greymouth/M
+greyscale/SM
+Greystead/M
+Greysteel/M
+Greystoke/M
+greystone/SM
+Greytown/M
+greywacke/SM
+Greywell/M
+Grice/M
+grid/SMGDJ
+griddle/DGSM
+Gridgeman/M
+gridiron/MS
+gridlock/DSGM
+grief/MSDGR
+Grieg/M
+Grier/M
+grievance/MS
+grieve/RkSDG
+grievous/PY
+griff/SM
+Griffey/M
+Griffin/M
+griffin/SM
+Griffith/MS
+griffon/SM
+grig/SM
+Grigori/M
+Grigson/M
+grill/GSDM
+grillage/MS
+grille/SMR
+Grilo/M
+grilse/SM
+grim/PYT
+grimace/RMDSG
+Grimaldi/M
+grimalkin/MS
+Grimble/M
+grime/ZMSGD
+Grimes/M
+Grimeston/M
+Grimley/M
+Grimm/M
+grimoire/SM
+Grimoldby/M
+Grimond/M
+Grimsargh/M
+Grimsay/M
+Grimsby/M
+Grimshaw/M
+Grimstead/M
+Grimston/M
+Grimstone/M
+Grimthorpe/M
+grimy/PTY
+grin/DGSMR
+grind/RGJSMk
+Grindale/M
+Grindalythe/M
+grindcore/M Noun: uncountable
+Grindleford/M
+Grindleton/M
+Grindlow/M
+Grindon/M
+grindstone/MS
+Gringley/M
+gringo/SM
+grinning/YSM
+Grinsdale/M
+Grinshill/M
+Grinstead/M
+Grinton/M
+griot/SM
+grip/rRdGMDS
+gripe/SM
+grippe/M Noun: uncountable
+gripping/YSM
+grippingness/M Noun: uncountable
+grippy/T
+grisaille/SM
+griseofulvin/SM
+grisette/SM
+griskin/SM
+grisly/PT
+grison/SM
+grissini/M Plural of grissino
+grissino/M
+grist/SMY
+Gristhorpe/M
+gristle/SM
+gristly/PT
+Griston/M
+Griswold/M
+grit/GSDRMZ
+Grittleton/M
+gritty/TP
+grizzle/SYGDMr
+grizzliness/M Noun: uncountable
+grizzling/SM
+grizzly/TSM
+groan/MGRDS
+groat/MS
+Grobler/M
+Groby/M
+grocer/SM
+grocery/SM
+Groff/M
+grog/ZzSGDM
+Groggan/M
+groggy/TP
+grogram/SM
+groin/SMGD
+grok/SDG
+grommet/dMS
+gromwell/SM
+Groningen/M
+Gronkowski/M
+groom/RSDGM
+Groombridge/M
+Groomsport/M
+Groot/M
+groove/GSDMZ
+groovy/TYP
+grope/RJSDGkM
+grosbeak/MS
+groschen/SM
+grosgrain/SM
+Grosmont/M
+gross/YSDTPGM
+Grosse/M
+Grosseteste/M
+Grossman/M
+grossular/SM
+Grosvenor/M
+Grosz/M
+grot/SM
+Grote/M
+grotesque/SMPY
+grotesquerie/SM
+Grothendieck/M
+Groton/M
+grotto/SMD
+grottoes
+grotty/TP
+grouch/2ZDSzGM
+Groucho/M
+grouchy/T
+ground-plan/SM
+ground-to-air
+Ground/M
+ground/mRMGJDpS
+groundbait/SMG
+groundbreaker/SM
+groundbreaking/SMY
+groundburst/SM
+groundkeeper/SM
+groundless/PY
+groundmass/SM
+groundnut/SM
+groundsel/SM
+groundshare/SGDM
+groundsheet/SM
+groundskeeper/SM
+groundswell/SM
+groundwater/SM
+groundwork/SMr
+group/SMRJGDZ3
+groupage/SM
+groupie/SM
+grouping/SM
+groupism/M Noun: uncountable
+Groupon/M
+groupset/SM
+groupware/M Noun: uncountable
+grouse/RGSDM
+grout/MGDSR
+Grouville/M
+Grove/MS
+grove/RSM
+grovel/DSGR
+Groveland/M
+Grover/M
+Grovesend/M
+Grovetown/M
+grovy Adjective
+grow/7RkGS
+growing/Iec
+growl/2GSkDRM
+grown-up/MS
+grown/ceIA
+grows/cAe
+growth/eSAIMcf
+groyne/MS
+Grozny/M
+grub/zRMZDGS
+grubby/TP
+grubstake/MGDS
+grubworm/SM
+Grude/M
+Grudem/M
+Gruden/M
+grudge/RSMkDG
+gruel/MGkS
+gruesome/YPT
+gruff/DTPGY
+Gruffudd/M
+grumble/GRJkSDM
+grume/SM
+Grumman/M
+grump/zSZM~
+grumpy/PTY
+Grundisburgh/M
+Grundy/M
+Grundyism/MS
+Grünewald/M
+grunge/MZr
+grungy/T
+grunion/SM
+grunt/DGSMR
+gruntled Adjective
+Grus/M
+Gruyère/M
+Gruyter/M
+Grwyney/M
+gryphon/SM
+grysbok/SM
+GSA/SM
+gsm Initialism of grams per square metre (unit for measuring the weight of paper)
+GSM/M
+GSoC/M Initialism of Google Summer of Code
+GT/SM
+GTA/SM
+GTIN/SM Global Trade Item Number
+GTK/M Initialism of GIMP Toolkit
+GTX/M
+GU/M Initialism of general user
+guacamole/SM
+guacharo/SM
+Guadalajara/M
+Guadalcanal/M
+Guadalupe/M
+Guadeloupe/M
+guaiac/SM
+guaiacum/MS
+guaifenesin/M Noun: uncountable
+Guam/M
+Guamanian/SM
+guanaco/MS
+Guanaja/M
+Guangdong/M
+Guangfa/M
+Guangxi/M
+Guangzhou/M
+guanidine/SM
+guanine/SM
+guano/MS
+guanosine/SM
+Guantánamo/M
+Guantanamo/M
+Guanyin/M
+guarana/SM
+Guarani/M
+guarani/SM
+guarantee/GdSM
+guarantor/SM
+guaranty/SM
+guard/RmGDhMiS
+Guarda/M
+guardant/SM
+Guardbridge/M
+guarded/P
+guardee/SM
+guardhouse/MS
+Guardi/M
+Guardia/M
+guardian/SM
+guardianship/SM
+guardrail/MS
+guardroom/SM
+guardship/SM
+Guarlford/M
+Guarnerius/MS
+Guatamala/M
+Guatemala/M
+Guatemalan/SM
+guava/MS
+Guayama/M
+Guayaquil/M
+guayavita
+guayule/MS
+gubbins
+gubernatorial/Y
+Gucci/M
+guddle/DGSr
+Guderian/M
+gudgeon/SM
+Guélat/M
+guelder guelder rose
+Guelph/SMW
+guenon/MS
+Guenther/SM
+guerdon/MSd
+guerilla/SM
+Guernica/M
+Guernsey/MS
+guernsey/SM
+Guerra/M
+guerre nom de guerre
+Guerre/M
+Guerreiro/M
+Guerrero/M
+guerrilla/SM
+guess/DRG7SM
+guesstimate/GDSM
+guesswork/SM
+guest/DGMS
+guestbook/SM
+guestimate/DSGM
+Guestling/M
+Guestwick/M
+Guevara/M
+guff/MS
+guffaw/GDSM
+Guggenheim/M
+guggle/SGDJM
+Guglielmo/M
+GUI/SM Initialism of graphical user interface
+Guiana/M
+guidable Adjective
+guidance/MaS
+guide/aDSG
+guidebook/MS
+guideline/SM
+guidepost/MS
+guider/aSM
+guideway/SM
+Guido/M
+guidon/SM
+Guignol/M
+guild/MSR
+guildable
+Guildable/M
+Guilden/M
+Guildenstern/M
+Guilderland/M
+Guildford/M
+Guildhall/M
+guildhall/SM
+guile/pSM6j
+guilefulness/M Noun: uncountable
+guileless/YP
+Guiley/M
+Guilford/M
+Guillaume/M
+guillemot/MS
+Guillermo/M
+guilloche/SM
+Guillotin/M
+guillotine/DSMG
+Guilsborough/M
+Guilsfield/M
+guilt/SzMp
+guiltless/PY
+guilty/TP
+Guimarães/M
+guimp/MS
+Guinan/SM
+Guinea-Bissau/M
+Guinea/M
+guinea/MS
+Guinean/SM
+Guinevere/M
+Guinness/SM
+guipure/SM
+Guisborough/M
+guise/EMS
+Guise/M
+Guiseley/M
+guiser/MS
+Guist/M
+guitar/3MS
+Guiting/M
+Guiyang/M
+Guizhen/M
+Guizhou/M
+Gujarat/M
+Gujarati/SM
+Gujerati/SM
+Gujrat/M
+Gulag/SM
+gulag/SM
+Gulati/M
+Gulbenkian/M A surname from Armenian: Calouste Gulbenkian
+Gulberwick/M
+Guldeford/M
+gulden/MS
+gulet/SM
+Gulf/M
+gulf/SM
+Gulfport/M
+gull/SDMbGY
+Gulladuff/M
+Gullah/M
+Gullane/M
+gullery/SM
+gullet/MS
+gulley/SM
+gullibility/SM
+gullibleness/M Noun: uncountable
+gullibly
+Gulliver/M
+gully/MSGD
+gulose/SM
+gulosity/M Noun: uncountable
+gulp/RGSDZM
+Gulval/M
+Gulworthy/M
+gum/G2DZMS
+Gumble/M
+Gumbo
+gumbo/SM
+gumboil/SM
+gumboot/SM
+gumdrop/SM
+Gumfreston/M
+Gumley/M
+gumma/MS
+gummata/M Plural of gumma
+gummatous Adjective
+Gummies/M
+gummy/TPYSM
+Gump/M
+gumption/SM
+gumshield/SM
+gumtree/MS
+gun/yGSZRMDp
+gunboat/MS
+Gunby/M
+guncotton/SM
+Gunderson/M
+gunfight/RMS
+gunfire/SM
+gung-ho Adjective
+Gungahlin/M
+gunge/SDM
+gungeing
+gungy/T
+gunite/SM
+gunk/MZS
+Gunkel/M
+gunky/T
+gunman/M
+gunmen/M
+gunmetal/SM
+Gunnar/M
+gunnel/SM
+Gunnell/M
+Gunner/M
+gunnera/MS
+Gunnerby/M
+Gunnersbury/M
+gunnery/SM
+Gunness/M
+gunning/SM
+Gunnison/M
+gunny/MS
+gunnysack/MS
+gunpoint/M Noun: uncountable
+Gunpowder Gunpowder Plot
+gunpowder/MS
+gunroom/MS
+gunrunner/MS
+gunrunning/MS
+gunship/SM
+gunshot/MS
+gunsight/SM
+gunslinger/SM
+gunslinging/M
+gunsmith/SM
+gunstock/SM
+gunter-rigged Adjective
+Gunter/M
+gunter/SM
+Günther/M
+Gunther/M
+Gunthorpe/M
+Gunthwaite/M
+Gunton/M
+Gunville/M
+gunwale/SM
+Gunwalloe/M
+gunyah/MS
+guppy/MS
+Gupta/M
+gurdwara/SM
+Gurevich/M
+gurgle/DGSM
+Gurinder/M
+gurk/SMGDJ
+Gurkha/MS
+Gurkhali/M
+Gurley/M
+Gurmukhi/M
+gurn/SGDr
+gurnard/SM
+Gurnee/M
+Gurney/M
+Gurnos/M
+guru/SM
+Gus/M
+gush/GZRSDM
+gushy/TY
+Gussage/M
+gusset/SMp
+gusseted
+gussy/SGDJ
+gust/SD2MGzZn
+Gustafson/M
+gustative Adjective
+gustatory Adjective
+Gustav/M
+Gustave/M
+Gustavia/M
+Gustavo/M
+gustiness/M Noun: uncountable
+gusto/M Noun: uncountable
+Guston/M
+gusty/TY
+gut/DpGRSM
+Gutenberg/M
+Guterres/M
+Gutfreund/M
+Guthrie/M
+Gutierrez/M
+gutlessness/M Noun: uncountable
+Gutman/M
+guts/Z2r
+gutsiness/M Noun: uncountable
+gutsy/TPY
+gutta-percha/SM
+gutta/SM
+guttae/M Plural of gutta
+guttate/n
+Guttenberg/M
+gutter/SdM
+guttering/M Noun: usually uncountable
+guttersnipe/SM
+Guttmacher/M
+guttural/PSMY
+gutturalize/SGDJ
+Guwahati/M
+Guy/M
+guy/RSMDG
+Guyana/M
+Guyanese/M
+Guyaneseness/M Noun: uncountable
+Guyhirne/M
+Guymon/M
+guyot/SM
+Guyot/SM
+Guysborough/M
+Guyton/M
+guzzle/DRGSM
+GW/SM
+Gwaenysgor/M
+Gwalior/M
+Gwangju/M
+Gwaun-Cae-Gurwen/M
+Gwaun/M
+Gwaunysgor/M
+Gweek/M
+Gwehelog/M
+Gwen/M
+Gwenddwr/M
+Gwendolen/M
+Gwendolyn/M
+Gwenllian/SM
+Gwennap/M
+Gwent/M
+Gwerfil/M
+Gwerfyl/M
+Gwernaffield/M
+Gwernesney/M
+Gwernyfed/M
+Gwernymynydd/M
+Gwersyllt/M
+Gwilt/M
+Gwinear-Gwithian/M
+Gwinear/M
+Gwinn/M
+Gwinnett/M
+Gwnnws/M
+Gwredog/M
+Gwyddelwern/M
+Gwyn/M
+Gwynedd/M
+Gwyneth/M
+Gwynfe/M
+Gwynfor/M
+gwyniad/MS
+Gwynn/M
+Gwytherin/M
+Gy
+Gyalwa/M
+gyan/M Noun: uncountable
+gybe/SGDM
+Gyffylliog/M
+Gyfin/M
+Gyges/M
+Gyllenhaal/M
+gym/MS
+gymkhana/SM
+gymnasia/MO
+gymnasium/SM
+gymnast/S1MW
+gymnastics/M Noun: uncountable
+gymnosophist/MS
+gymnosophy/M Noun: uncountable
+gymnosperm/SM
+gymnospermous Adjective
+Gympie/M
+gymslip/SM
+gynaecocracy/SM
+gynaecological/MSY
+gynaecology/S3wM
+gynaecomastia/M Noun: uncountable
+gynandromorph/MSW
+gynandromorphism/M Noun: usually uncountable
+gynandrous Adjective
+gynarchy/SM
+gynephilia/M Noun: uncountable
+gynocentric/Y
+gynoecia/MO
+gynoecium/M
+gynophobia/MW
+gyp/SM
+gypped
+gypping
+gyppo/SM
+gyppy/MS
+gypseous Adjective
+gypsiferous Adjective
+gypsite/SM
+Gypsophila Taxonomic genus
+gypsophila/SM
+gypster/SM
+gypsum/SM
+gypsy/SM~
+gypsydom/M Noun: uncountable
+gypsyhood/MS
+gypsyism/MS
+gyrate/GDSn
+gyrator/SM
+gyratory/SM
+gyre/SGDM
+gyrfalcon/MS
+gyri/M Plural of gyrus
+gyro/SM
+gyrocompass/SM
+gyrocopter/SM
+gyromagnetic
+gyromagnetics/M Noun: uncountable
+gyropilot/SM
+gyroplane/SM
+gyroscope/SMW1
+gyrotron/SM
+gyrus/SM
+gyttja/SM
+Gyumri/M
+Gyves/M
+gzip/SGD Verb
+H-bomb/SM
+h-Eileanan/M
+H-hour/SM
+H.264/M
+H.265/M
+h/E
+ha'p'orth/SM
+ha'pence/M Plural of ha'penny
+ha'penny/SM
+ha-ha/SM
+ha/S
+Haag/M
+Haak/M
+haar/MS
+Haarlem/M
+Haase/M
+Haast/M
+Habakkuk/M
+habanera/MS
+Habberley/M
+Habblesthorpe/M
+habeas/SM
+Habegger/M
+haberdasher/ZMS
+haberdashery/MS
+habergeon/MS
+Habergham/M
+Habersham/M
+Habib/M
+habile Adjective
+habiliment/MS
+habilis Homo habilis
+habilitate/DGSn
+habit-forming Adjective
+habit/7ndgSM
+habitability/MS
+habitable/P
+habitant/IFSM
+habitat/MS
+habitation/IMF
+habitation/O
+habited/IF
+habits/FI
+habitual/YP
+habituate/nSDG
+habitude/SM
+habitué/MS
+habitus/M
+haboob/SM
+Habra/M
+Habrough/M
+Habsburg/M
+Habton/M
+Haccombe/M
+Hacconby/M
+Haceby/M
+Hacheston/M
+Hachey/M
+hacienda/SM
+hack/zJSGD7RkM
+hackathon/SM
+hackberry/SM
+Hackensack/M
+hackerspace/SM
+hackery/M Noun: uncountable
+Hackett/M
+hackette/SM
+Hackford/M
+Hackforth/M
+Hackington/M
+hackish/Y
+hackle/DSMGRZ
+Hackleton/M
+hackmatack/SM
+Hackness/M
+Hackney/M
+hackney/SDM
+hacksaw/GSMD
+Hackthorn/M
+hacktivism/M Noun: uncountable
+hacktivist/SM
+Hackwood/M
+hackwork/SM
+hacky/T
+Haconby/M
+had/O
+Hadamard/M
+Haddad/M
+Hadden/M
+Haddenham/M
+Haddington/M
+Haddingtonshire/M
+Haddiscoe/M
+Haddlesey/M
+haddock/SM
+Haddon/M
+Haddonfield/M
+hade/SGDM
+Hadean
+Hades/M
+Hadesarchaea Taxonomic class
+Hadham/M
+Hadid/M
+Hadith/MS
+hadj/M
+hadjes
+hadji/SM
+Hadleigh/M
+Hadley/M
+Hadlow/M
+hadn't
+Hadnall/M
+Hadrian/M
+hadron/SM
+hadronic/Y
+hadronics/M Noun: uncountable
+hadrosaur/SM
+hadst
+Hadstock/M
+Hadzor/M
+Haeckel/M
+haem/SMOW
+haemagglutinate/SGDN
+haemagglutinin/SM
+haemangioma/SM
+haemangiomata/M
+haematemesis/M Noun: usually uncountable
+haematin/SM
+haematite/SM
+haematocele/SM
+haematocrit/SM
+haematogenous/Y
+haematology/W3SMw
+haematoma/MS
+haematomata/M Plural of haematoma
+haematophagous Adjective
+haematopoiesis/M Noun: uncountable
+haematopoietic/Y
+haematoporphyria/M Noun: uncountable
+haematoxylin/SM
+haematuria/SM
+haemochorial
+haemochromatosis/M Noun: usually uncountable
+haemocoel/SM
+haemocyanin/SM
+haemocyte/SM
+haemocytometer/SM
+haemodialyses Plural of haemodialysis
+haemodialysis/M
+haemodynamic/SYO
+haemoglobin/SM
+haemoglobinopathy/SM
+haemoglobinuria/SM
+haemolymph/SM
+haemolysin/SM
+haemolysis/M Noun: usually uncountable
+haemolytic Adjective
+haemophilia/MSW
+haemophiliac/SM
+haemophobia/M Noun: uncountable
+haemopneumothorax/M Noun: uncountable
+haemopoiesis/M Noun: uncountable
+haemopoietic/Y
+haemoptysis/M Noun: usually uncountable
+haemorrhage/SGDWM
+haemorrhoid/MSO
+haemostasis/M Noun: usually uncountable
+haemostat/SMW
+Haemus/M (Greek mythology) a king of Thrace, the son of Boreas
+Hafiz/M
+Hafner/M
+hafnium/M Noun: uncountable
+hafnocene/SM
+haft/MDGS
+Haftar/M
+hag/MS
+Hagar/M
+Hagbourne/M
+Hagelberg/M
+Hagelstein/M
+Hagen/M
+Hagendorf/M
+Hager/M
+Hagerstown/M
+Hagerty/M
+hagfish/SM
+Haggadah/M
+Haggai/M
+haggard/PYSM
+Haggerston/M
+Haggerty/M
+haggis/SM
+haggish
+haggle/DRSG
+Haggs/M
+Hagiographa/M (Judaism) The third division of the Hebrew scriptures; the Ketuvim
+hagiographer/SM
+hagiographic/OY
+hagiography/MS
+hagiolatry/M Noun: uncountable
+hagiology/SM3w
+hagioscope/SM
+Hagley/M
+Hagmann/M
+Hagnaby/M
+Hagon/M
+hagridden Adjective
+hagride/SGR
+hagrode Simple past tense of hagride
+Hague/M
+Hagushi/M
+Hagworthingham/M
+Hahn/M
+hahnium/M Noun: uncountable
+Haider/M
+Haifa/M
+Haigh/M
+Haighton/M
+Haikou/M
+haiku/SM
+hail/RMDSG
+Hail/SM A surname
+Haile/M
+Hailes/M
+Hailey/M
+Haili/M
+Hailsham/M
+hailstone/MS
+hailstorm/SM
+Hailwood/M
+Hainan/M
+Hainaut/M
+Haines/M
+Hainford/M
+Hainton/M
+Haiphong/M
+hair-raiser/SM
+hair-raising/Y
+hair-splitter/SM
+hair-splittery/M Noun: uncountable
+hair-splitting/SMY
+hair-trigger/SM
+hair/p2ZSMD
+hairball/SM
+hairband/SM
+hairbreadth/SM
+hairbrush/SM
+haircare/M Noun: uncountable
+haircloth/SM
+haircut/SMG
+hairdo/SM
+hairdresser/SM
+hairdressing/MS
+hairdrier/SM
+hairdryer/SM
+hairgrip/SM
+hairless/PY
+hairlike Adjective
+hairline/MS
+hairnet/SM
+hairpiece/SM
+hairpin/SM
+hairsbreadth/SM
+hairslide/SM
+hairspray/SM
+hairspring/SM
+hairstyle/3MSG
+hairy/PTY
+Haisch/M
+Haiti/M
+Haitian/SM
+Hajdu/M
+hajj/M
+hajjes Plural of hajj
+hajji/SM
+Håkan/M
+Hakataramea/M
+hake/SM
+Hakewill/M
+hakim/MS
+Hakka/MS
+Hakluyt/M
+Hal/M
+halal/SDG
+Halam/M
+Halama/M
+halbard
+halbardsman/M
+Halbeath-Crossgates/M
+Halbeath/M
+halberd/SM
+halberdier/MS
+halberdman/M
+halberdsman/M
+Halberstam/M
+Halbert/M
+halbert/MS
+Halberton/M
+Halcombe/M
+halcyon/SM
+Hald/M
+Halden/M
+Haldenby/M
+Halderman/M
+Haldimand/M
+Hale-Bopp/M
+hale/SIDG
+Halebank/M
+Halen/M
+haleness/M Noun: uncountable
+haler/MI
+Hales/M
+Halesowen/M
+halest
+Halesworth/M
+Halewood/M
+Haley/M
+half-and-half/SM
+half-arse/SGD
+half-back/SM
+half-baked Adjective
+half-blood/SMD
+half-blue/SM
+half-breed/SM
+half-brother/SM
+half-caste/SM
+half-century/SM
+half-crown/MS
+half-cut Adjective
+half-deck/SM
+half-duplex Adjective
+half-eaten
+half-finished Adjective
+half-hardy/SM
+half-hearted/YP
+half-hour/YSM
+half-inch/SGDM
+half-length/SM
+half-life/M
+half-light/M Noun: uncountable
+half-lives Plural of half-life
+half-marathon/MS
+half-mast/M Noun: uncountable
+half-moon/SM
+half-sister/SM
+half-step/SM
+half-term/SM
+half-timbered Adjective
+half-time/SM
+half-track/SM
+half-truth/SM
+half-year/SMY
+half/M
+Half/M
+halfbeak/SM
+halfbreed/SM
+halfdeck/SM
+Halfmoon/M
+halfness/M Noun: usually uncountable
+Halford/M
+halfpence/M Plural of halfpenny
+halfpenny/SM
+halfpennyworth/MS
+halfpipe/SM
+halftone/SM
+halfwave/SM
+halfway
+halfwit/hiSMD
+halfword/SM
+halibut/SM
+halide/SM
+halieutic/Y
+Halifax/M
+halite/MS
+halitoses Plural of halitosis
+halitosis/M
+Halkin/M
+Halkirk/M
+Halkyn/M
+Hall/M
+hall/SM
+Halladale/M
+Hallam/M
+Halland/M
+Hallandale/M
+Hallaton/M
+Halle/M
+hallelujah/SM
+Hallet/M
+Halley/M
+Hallglen/M
+Hallikeld/M
+Halling/M
+Hallingbury/M
+Hallington/M
+Halliwell/M
+hallmark/SMDG
+hallo/GSDM
+halloo/SGDM
+Hallot/M
+Halloughton/M
+hallow/DGSM
+Hallow/MS
+Halloween/M
+Hallside/M
+hallstand/SM
+Hallstatt/M
+Hallstein/M
+halluces Plural of hallux
+hallucinant/SM
+hallucinate/nyVGDS
+hallucinogen/SWM
+hallucinogenic/SM
+hallux/M
+hallway/SM
+halo/MDSG
+halobiont/MS
+halobiotic Adjective
+haloes Plural of halo
+haloesque
+halogen/SM
+halogenated
+halogenation/SM
+halogenous Adjective
+halon/SM
+haloperidol/SM
+halophile/SMW
+halophyte/SM
+halothane/SM
+Halsall/M
+Halsam/M
+Halse/M
+Halsey/M
+Halsham/M
+Halstead/M
+Halstock/M
+Halstow/M
+Halswell/M
+halt/RJGSMkD
+halter/d
+haltere/SM
+halterneck/SM
+Haltham/M
+Haltom/M
+Halton-with-Aughton/M
+Halton/M
+Haltwhistle/M
+halve/rGDS
+Halvergate/M
+Halwell/M
+Halwill/M
+halyard/MS
+ham-fisted/YP
+ham/DGSRZM
+Ham/M
+hamadryas/SM
+Hamal/M
+Hamamatsu/M
+Haman/M
+Hamas/M
+hamate/SM
+Hamble-le-Rice/M
+Hamble/M
+Hambleden/M
+Hambledon/M
+Hamblen/M
+Hambleton/M
+Hambridge/M
+Hambrook/M
+Hamburg/M
+hamburger/SM
+Hamden/M
+Hamdon/M
+hame/MS
+Hamelin/M
+Hameringham/M
+Hamerton/M
+Hamfallow/M
+Hamill/M
+Hamilton/M
+Hamiltonian/SM
+hamiltonian/SM
+Hamiltonsbawn/M
+Hamish/M
+Hamite/MSW
+hamlet/MS
+Hamlet/MS
+Hamlin/M
+Hamlyn/M
+Hamm/M
+Hammarskjöld/M
+hammer/dpr
+hammerhead/SM
+hammering/SMY
+hammerlock/SM
+Hammersmith/M
+hammertoe/SM
+Hammerton/M
+Hammerwich/M
+Hammett/M
+Hammill/M
+hammock/MS
+Hammond/M
+Hammonton/M
+Hammoon/M
+Hammurabi/M
+hammy/T
+Hamon/M
+Hampden/M
+hamper/dSM
+Hampnett/M
+Hampole/M
+Hampreston/M
+Hampshire/M
+Hampstead/M
+Hampsthwaite/M
+Hampton/M
+Hamsey/M
+Hamstall/M
+Hamstead/M
+hamster/MS
+Hamsterley/M
+hamstring/SGM
+hamstrung
+Hamtramck/M
+Han/M
+Hana/M
+Hanahan/M
+Hanborough/M
+Hanbury/M
+Hancock/M
+hand-axe/SM
+hand-held/SM
+hand-me-down/SM
+hand-painted Adjective
+hand-pick/GSD Verb
+hand-to-hand Adjective
+hand-to-mouth Adjective
+hand/h6RzZSipMGD2
+Handan/M
+handbag/SMDGZ
+handball/MS
+handbarrow/SM
+handbasin/SM
+handbasket/SM
+handbell/SM
+handbill/SM
+handbook/SM
+handbrake/SM
+handcart/MS
+handclap/SGMR
+handclasp/SM
+handcraft/SGDM
+handcuff/SGDM
+handed/fU
+handed/Y
+handedness/SM
+Handel/M
+Handforth/M
+handful/MS
+handglass/MS
+handgrip/SM
+handgun/MS
+handheld/SM
+handhold/MS
+handicap/GDRMS
+handicraft/SM
+handicraftsman/M
+handicraftsmen/M
+Handihaler/M
+handiwork/MS
+handjob/SM
+handkerchief/SM Plural handkerchiefs or handkerchieves
+handkerchieves Plural of handkerchief
+handle/RMGDS3
+handleable Adjective
+handlebar/MS
+Handley/M
+handline/SM
+handling/SM
+handmade Adjective
+handmaid/SM
+handmaiden/SM
+handout/MS
+handover/SM
+handpiece/SM
+handprint/SM
+handrail/MS
+hands/Uc
+Handsacre/M
+handsaw/SM
+handscrew/SM
+handservant/SM
+handset/SM
+handsfree/SM
+handshake/SMGrJ
+handsome/PTY
+handspike/MS
+handspring/SM
+handstand/SM
+Handsworth/M
+handwashing/SM
+handwork/SM
+handwoven
+handwrite/GJS
+handwritten
+handy/mPT
+Handyside/M
+Hanemesis/M
+Haney/M
+Hanford/M
+hang-glide/RSGD
+hang/SJDmR7GM
+hangar/SdM
+hangdog/SM
+hanger-on/M
+hangers-on/M Plural of hanger-on
+Hanging/M
+Hangleton/M
+hangnail/SM
+hangout/SM
+hangover/MS
+hangry/T
+hangs/cA
+Hangzhou/M
+Hanham/M
+Hanif/M
+Hank/M
+hank/RMZS
+Hankelow/M
+hanker/Jdr
+Hankerton/M
+hankie/SM
+Hankins/M
+hanky-panky/M Noun: uncountable
+hanky/MS
+Hanley/M
+Hanlith/M
+Hanmer/M
+Hann/M
+Hanna/M
+Hannah/M
+Hannay/M
+Hanney/M
+Hannibal/M
+Hanningfield/M
+Hannington/M
+Hannover/M
+Hannun/M
+Hanoi/M
+Hanover/M
+Hanoverian/SM
+Hans/MS
+Hansard/SM
+Hanse/M
+Hanseatic Adjective
+Hansel/M
+Hansen/M
+Hanslope/M
+hansom/SM
+Hanson/M
+hantavirus/SM
+Hanthorpe/M
+Hanukkah/MS
+Hanuman/M
+hanuman/MS
+Hanwell/M
+Hanwood/M
+Hanworth/M
+hap/aS
+hap/GD
+Hapara/M
+hapax/SM
+hapaxanthic Adjective
+haphazard/SMPYyr
+haphephobia/M Noun: uncountable
+hapless/PY
+haplobiont/SMW
+haplochromine/SM
+haplodiploid/SM
+haplodiploidy/M Noun: uncountable
+haplography/SM
+haploid/SMZ
+haplology/MS
+Haplorrhini Taxonomic suborder
+haplotype/SM
+happen/SJd7
+happenchance/SM
+happenstance/SM
+happiness/SM
+Happisburgh/M
+happy-go-lucky/SM
+Happy/M
+happy/p
+happy/TUY
+Hapsburg/M
+Hapsford/M
+haptic/SOY
+hapticity/MS
+hapticospatial
+hapto
+Hapton/M
+haptonomy/M Noun: uncountable
+Hapua/M
+hara
+hara-kiri/M Noun: uncountable
+Harald/M
+Haralick/M
+Haralson/M
+harambee/SM
+harangue/DGSMr
+Harare/M
+harass/GSDLRk
+Harbaugh/M
+Harberton/M
+Harbhajan/M
+Harbin/M
+harbinger/MS
+Harbledown/M
+Harbor-Goolwa/M
+Harbor/M
+Harborcreek/M
+Harborne/M
+Harborough/M
+Harbour/M
+harbour/pRGSDM
+harbourage/SM
+harbourmaster/SM
+harbourside/SM
+Harbridge/M
+Harbury/M
+Harby/M
+Harcourt/M
+hard-boil/SGD Verb
+hard-code/SGD Verb
+hard-core/M
+hard-earned
+hard-headed/YP
+hard-hearted/PY
+hard-hitting Adjective
+hard-line/R
+hard-nosed Adjective
+hard-on/SM
+hard-paste Adjective
+hard-pressed Adjective
+hard-wire/SDG
+hard-working Adjective
+hard/TzPY2ZMS~
+hardback/SM
+hardbake/SM
+hardbitten Adjective
+hardboard/SM
+hardbody/SMD
+hardbound Adjective
+hardcode/SGD
+hardcopy/SM
+hardcore/M Noun: uncountable
+Hardecanute/M
+Hardee/M
+Hardell/M
+Hardeman/M
+Harden/M
+harden/rdS
+hardenability/SM
+Hardenhuish/M
+hardening/SM
+harderian Adjective
+Hardesty/M
+Hardgate/M
+Hardham/M
+Hardie/M
+hardihood/SM
+Hardiman/M
+Hardin/M
+Harding/M
+Hardingham/M
+Hardingstone/M
+Hardington/M
+Hardley/M
+hardline/SMr
+Hardmead/M
+hardpan/SM
+Hardraw/M
+Hardres/M
+hardshell Adjective
+hardship/MS
+hardstanding/SM
+hardtop/SM
+hardware/M Noun: uncountable
+Hardwick-with-Yelford/M
+Hardwick/M
+Hardwicke/M
+hardwire/SGD
+hardwood/MS
+Hardwycke/M
+Hardy/M
+hardy/TPY
+hare/MDGS
+harebell/SM
+harebrained Adjective
+Hareby/M
+Haredi/M
+Haredim/M
+Harefield/M
+Harel/M
+harelip/MSD
+harem/MS
+Harescombe/M
+Haresfield/M
+Harestock/M
+Harewood/M
+harewood/M
+Harford/M
+Hargate/M
+Hargham/M
+Hargrave/M
+Hargreaves/SM A surname
+Hari/M
+haricot/SM
+Harijan/SM
+Harikumar/M
+Haringey/M
+Harington/M
+harissa/SM
+hark/GSD Verb
+Harkaway/M
+harken/Sd
+Harker/M
+Harkstead/M
+Harlan/M
+Harlaston/M
+Harlaxton/M
+Harlech/M
+Harlem/M
+Harlequin/M
+harlequin/SM
+harlequinade/MS
+Harleston/M
+Harlestone/M
+Harley-Davidson/M
+Harley/MS
+Harling/M
+Harlingen/M
+Harlington/M
+harlot/ySM
+harlotry/SM
+Harlow/M
+Harlowe/M
+Harlsey/M
+Harlton/M
+harm/GSjpM6Dr
+Harman/M
+harmattan/MS
+Harmby/M
+harmful/PU
+harmless/PY
+Harmon/M
+Harmondsworth/M
+harmonic/YSM
+harmonica/SM
+harmonious/IPY
+harmoniousness/IS
+harmonise/RnGSD
+harmonist/SM
+harmonium/MS
+harmonize/RDGnS
+harmony/ESM
+Harmston/M
+Harmsworth/M
+Harnack/M
+harness/SGDMr
+harness/SUDG
+Harnett/M
+Harnhill/M
+Harnick/M
+Harold/M
+Haroldston/M
+Harome/M
+Harow/M
+harp/RMDG3ZJS
+Harpenden/M
+Harper/MS
+Harpford/M
+Harpham/M
+Harpley/M
+Harpole/M
+harpoon/RSDGM
+Harpsden/M
+harpsichord/M3S
+Harpswell/M
+Harpton/M
+Harptree/M
+harpy/MS
+harquebus/MS
+harquebusier/MS
+Harray/M
+harridan/SM
+Harriet/M
+Harrietsham/M
+Harrigan/M
+Harriman/M
+Harring/M
+Harrington/M
+Harringworth/M
+Harriot/M
+Harris/M
+Harrisburg/M
+Harrison/M
+Harrisonburg/M
+Harrisonville/M
+harrogate/M
+Harrogate/M
+Harrold/M
+Harroldston/M
+Harrovian/MS
+Harrow-on-the-Hill/M
+Harrow/M
+harrow/MGDS
+Harrowby/M
+Harrowden/M
+harrower/SM
+Harrowfield/M
+Harrowgate/M
+harrumph/DGSM
+Harry/M
+harry/RDSG
+Harsanyi/M
+harsh/PTY
+harshen/d
+Harsin/M
+Harston/M
+Harswell/M
+Hart/M
+hart/SM
+hartal/MS
+Hartburn/M
+hartebeest/MS
+Hartest/M
+Hartfield/M
+Hartford/M
+Hartforth/M
+Harth/M
+Harthill/M
+Harting/M
+Hartington/M
+Hartland/M
+Hartlebury/M
+Hartlepool/M
+Hartley/M
+Hartlington/M
+Hartlip/M
+Hartman/M
+Hartmann/M
+Hartoft/M
+Harton/M
+Hartpury/M
+Hartselle/M
+Hartsfield/M
+Hartshead/M
+Hartshill/M
+Hartshorn/M
+hartshorn/M
+Hartshorne/M
+Hartwell/M
+Hartwill/M
+Hartwith/M
+Harty/M
+Harunobu/M
+haruspex/M
+haruspices Plural of haruspex
+Harvard/M
+harvest/7MRGDS
+harvestman/M
+harvestmen/M
+Harvey/M
+Harvie/M
+Harvin/M
+Harvington/M
+Harwell/M
+Harwich/M
+Harwood/M
+Harworth/M
+Haryana/M
+Harz/M
+Harzan/M
+Hasbro/M
+Hasbrouck/M
+Hascombe/M
+Hasee/M
+Hašek/M
+Haselbech/M
+Haselbury/M
+Haseley/M
+Haselhurst/M
+Haselor/M
+Haselton/M
+Hasfield/M
+Hasguard/M
+hash/ADGS
+hash/SMr
+Hashanah/MS
+Hashemite/MS
+hashing/M Noun: uncountable
+hashish/MS
+hashtag/SM
+Hasid/M
+Hasidic/SM
+Hasidim/M Plural of Hasid
+Hasidism/M
+Haskell/M
+Hasketon/M
+Haskins/M
+Haslam/M
+Hasland/M
+Haslebury/M
+Haslem/M
+Haslemere/M
+Hasler/M
+haslet/SM
+Haslett/M
+Haslingden/M
+Haslingfield/M
+Haslington/M
+Hasmonean/SM
+hasn't
+hasp/GSMD
+Hassall/M
+Hassan/M
+Hassell/M
+Hassett/M
+Hassid/MW
+Hassidism/M
+Hassingham/M
+hassium/M Noun: uncountable
+hassle/DMGSr
+hassock/MS
+Hassocks/M
+Hassop/M
+hast/zZ2D
+hasta hasta la vista
+hastate/YD
+haste/MS
+hasten/Sdr
+Hastert/M
+Hastingleigh/M
+Hastings/M
+hasty/TPY
+Haswell/M
+Hat/M
+hat/rGRSMdpD
+Hata/M
+hatable Adjective
+Hataitai/M
+hatband/SM
+hatbox/SM
+hatch/GyDSJrM
+Hatch/M
+hatchback/SM
+hatchery/SM
+hatchet/dMS
+hatching/SM
+hatchling/SM
+hatchment/SM
+hatchway/MS
+Hatcliffe/M
+hate/jSM6
+hateful/PY
+Hately/M
+hatemonger/SM
+Hatfield/M
+Hatford/M
+hatful/SMY
+hath
+hatha/M Noun: uncountable
+Hathaway/M
+Hatherleigh/M
+Hatherley/M
+Hathern/M
+Hatherop/M
+Hathersage/M
+Hatherton/M
+Hatlen/M
+Hatley/M
+hatred/SM
+Hatshepsut/M
+hatstand/SM
+Hattersley/M
+Hattie/M
+Hattiesburg/M
+Hatton/M
+Hattori/M
+hauberk/SM
+Haugen/M
+Haugh/M
+haugh/SM
+Haugham/M
+Haughley/M
+Haughton/M
+haughty/YPT
+haul/cDSG
+haulage/SM
+hauler/MS
+haulier/MS
+haulm/MS
+Haumea/M
+Haumoana/M
+haunch/DGSM
+haunt/kDRJGSM
+Haupiri/M
+Hauptmann/M
+Hauraki/M
+Hausa/MS
+Hauser/M
+hausfrau/M
+hausfrauen/M Plural of hausfrau
+hausfraus Plural of hausfrau
+haut de haut en bas
+Haut-Richelieu/M
+Haut-Saint-François/M
+Haut-Saint-Laurent/M
+Hautbois/M
+hautboy/MS
+haute Adjective
+Haute-Côte-Nord/M
+Haute-Gaspésie/M
+Haute-Yamaska/M
+Haute/M
+hauteur/SM
+Hauxton/M
+Hauxwell/M
+Havana/M
+Havant/M
+Havasu/M
+have-not/MS
+have/SG
+Haveli/M
+Havelock/M
+havelock/MS
+haven't
+Haven/M
+haven/SM
+Havenstreet/M
+haver/SdM
+Haverah/M
+Havercroft/M
+Haverford/M
+Haverfordwest/M
+Haverhill/M
+Havering-atte-Bower/M
+Haveringland/M
+haversack/SM
+Haversham-cum-Little/M
+Haversham/M
+haversin/MS
+haversine/MS
+Haverstock/M
+Haverstraw/M
+Haverthwaite/M
+havildar/MS
+Havisham/M
+Havlin/M
+havoc/SDMG
+Havre/M
+haw/GMDS
+Haw/M
+Hawaii/M
+Hawaiian/SM
+Hawarden/M
+Hāwea/M
+Hawera/M
+Hawerby/M
+Hawes/M
+hawfinch/MS
+Hawick/M
+Hawk/M
+hawk/RMDGS
+hawkbit/MS
+Hawkchurch/M
+Hawke/MS
+Hawkedon/M
+Hawkesbury/M
+Hawkesworth/M
+Hawkeye Hawkeye State
+Hawkhead/M
+Hawkhurst/M
+hawking/SM
+Hawkinge/M
+Hawkins/M
+hawkish/PY
+Hawkley/M
+hawklike Adjective
+Hawkridge/M
+Hawkshead/M
+Hawksmoor/M
+Hawkswick/M
+Hawksworth/M
+hawkweed/SM
+Hawkwell/M
+Hawkwood/M
+Hawley/M
+Hawling/M
+Hawnby/M
+Haworth/M
+Hawridge/M
+hawse/SMR
+Hawsker-cum-Stainsacre/M
+Hawstead/M
+Hawth/M
+hawthorn/SM
+Hawthorndale/M
+Hawthorne/M
+Hawton/M
+Haxby/M
+Haxey/M
+hay/GMSDr
+Hay/MS
+Hayabusa/M
+haybox/MS
+haycock/SM
+Hayden/M
+Haydn/M
+Haydon/M
+Hayek/M
+Hayes/M
+Hayfield/M
+hayfield/MS
+Hayle/M
+Hayles/M
+Hayley/M
+Hayling/M
+hayloft/MS
+haymaker/SM
+haymaking/SM
+Haymarket/M
+haymow/SM
+Hayne/M
+Haynes/M
+Haynford/M
+Haynie/M
+hayrick/SM
+Hayscastle/M
+hayseed/MS
+haystack/MS
+Haysville/M
+Hayter/M
+Hayton/M
+haywain/SM
+Hayward/MS
+haywire/SM
+Haywood/M
+Hayworth/M
+hazard/DGSM
+hazardous/YP
+haze/DMRSGZ
+Hazel/M
+hazel/SM
+Hazelbeech/M
+Hazelbury/M
+Hazeleigh/M
+Hazell/M
+hazelnut/SM
+Hazelwick/M
+Hazelwood/M
+Hazlebadge/M
+Hazlemere/M
+Hazlerigg/M
+Hazlet/M
+Hazleton/M
+Hazlewood/M
+Hazlitt/M
+hazmat/SM
+hazy/PYT
+Hb Symbol for hemoglobin
+HBA/SM Abbreviation of health-and-beauty aid
+HBM Her or His Britannic Majesty
+HCTZ/M Abbreviation of hydrochlorothiazide
+HD-DVD/SM
+HD/SM
+HDD/SM
+HDMI/M
+hdqrs
+HDR/SM
+HDSLR/SM
+HDTV/SM
+he'd
+he'll
+he/M
+Heacham/M
+head-hunt/DGSR
+head-on/SM
+head/DRzGm2pihMZJS
+Head/M
+headache/SMZ
+headage/SM
+headband/MS
+headbang/SGDr
+headbay/SM
+headboard/SM
+headborough/SM
+Headbourne/M
+headbutt/SDGM
+headcam/SM
+headcase/SM
+Headcorn/M
+headcount/SM
+headdress/SM
+headedness/M Noun: uncountable
+headend/SM
+headfast/MS
+headgear/MS
+headguard/SM
+headhunt/RSGD
+headiness/M Noun: usually uncountable
+Headingley/M
+Headington/M
+headlamp/SM
+Headland/M
+headland/SM
+headless/P
+Headley/M
+headlight/MS
+headline/RDSMG
+headlock/MS
+headlong/Y
+headman/M
+headmanship/SM
+headmaster/YMS
+headmastership/SM
+headmen/M
+headmistress/SM
+headmost
+headnote/SM
+Headon/M
+headphone/SM
+headpiece/SM
+headquarter/Sd Verb
+headrail/SM
+headrest/MS
+headroom/SM
+Heads/M
+headsail/SM
+headscarf/Mp
+headscarves Plural of headscarf
+headset/SM
+headship/SM
+headshrinker/MS
+headspring/MS
+headsquare/MS
+headstall/MS
+headstand/MS
+headstock/SM
+Headstone/M
+headstone/MS
+headstrong/Y
+headstrongness/M Noun: uncountable
+headteacher/SM
+headwall/SM
+headward/S
+headwater/SM
+headway/SM
+headwear/M Noun: uncountable
+headwind/SM
+headword/SM
+heady/TY
+Heage/M
+heal/DGRS
+healable
+Healaugh/M
+heald/MS
+Healdsburg/M
+Healey/M
+Healing/M
+health/M6jzSZ
+healthcare/M Noun: usually uncountable
+healthful/PY
+healthy/TUYP
+Healy/M
+Heanor/M
+Heanton/M
+heap/MDSG
+Heapey/M
+Heapham/M
+hear/GAaSc
+hearable
+Heard/M
+heard/UacA
+hearer/SM
+hearing/SM
+hearken/dS
+Hearn/M
+hears/SA
+hearsay/SM
+hearse/SM
+Hearst/M
+heart-leaf/M
+heart-leaves Plural of heart-leaf
+heart-rending/Y
+heart-searching/SM
+heart-to-heart/SM
+heart-warming Adjective
+heart/pS2zZMihDG
+heartache/SM
+heartbeat/MS
+heartbreak/SkGMr
+heartbroken
+heartburn/GSMJ
+hearted/P
+hearten/kEdS
+heartfelt/Y
+heartfeltness/M Noun: uncountable
+heartfulness/M Noun: uncountable
+hearth/MS
+hearthrug/SM
+hearthstone/MS
+heartland/MS
+heartless/PY
+heartsick/P
+heartsore Adjective
+heartstrings
+heartthrob/SM
+heartwood/SM
+heartworm/SM
+heartwort/M
+hearty/TSMP
+heat-resistant Adjective
+heat/pRJ7MGDSh
+heated/cKUA
+Heath/M
+heath/RSyMZ
+Heathcote/M
+heathen/SM
+heathendom/SM
+heathenish/Y
+heathenism/SM
+heathenry/SM
+Heather/M
+Heatherton/M
+Heatherycleugh/M
+Heathfield/M
+Heathkit/M
+heathland/SM
+Heathrow/M
+Heathylee/M
+heating/Kc
+Heaton-with-Oxcliffe/M
+Heaton/M
+heatproof
+heats/KcA
+heatstroke/MS
+heatwave/SM
+heave/MDZGRS
+heaven-sent Adjective
+heaven/MSY
+heavenly/PT
+heavenward/SY
+heavenwardness/M Noun: uncountable
+Heavey/M
+heavier-than-air Adjective
+Heaviside/M
+Heavitree/M
+heavy-duty Adjective
+heavy-handed/Y
+heavy-handedness/M Noun: uncountable
+heavy/YMSPT~
+heavyhearted/Y
+heavyset Adjective
+heavyweight/MS
+Hebden/M
+Hebdomadal Hebdomadal Council
+hebdomadal/Y
+hebe/SM
+Hebei/M
+Heber/M
+hebetude/M Noun: uncountable
+Hebraic/Y
+Hebraism/M Noun: uncountable
+Hebraist/MSW
+Hebraize/SGDJ
+Hebrew/SM
+Hebridean/SM
+Hebrides/M
+Hebron/M
+Hecate/M
+hecatomb/SM
+Hecht/M
+heck
+Heck/M
+heckelphone/MS
+Heckfield/M
+Heckingham/M
+Heckington/M
+heckle/RGSDM
+Heckman/M
+Heckmann/M
+hectarage/SM
+hectare/SM
+hectic/Y
+hectocotyli/M Plural of hectocotylus
+hectocotylus/M
+hectogram/SM
+hectograph/SM
+hectolitre/SM
+hectometre/SMW
+hector/dS Verb
+Hector/M
+hectosecond/SM
+Hecuba/M
+Hedberg/M
+Heddington/M
+heddle/MS
+Heddon/M
+Hedenham/M
+hedge/DRGSMk
+Hedge/M
+hedgehog/SM
+hedgehop/SDG Verb
+Hedgerley/M
+hedgerow/MS
+Hedingham/M
+Hedland/M
+Hedman/M
+Hednesford/M
+Hedon/M
+hedonic/Y
+hedonism/MS
+hedonist/WMS
+Hedsor/M
+heed/6MGDjpS
+heedful/P
+heedless/YP
+heehaw/DGSM
+heel/pRSGMDJ
+heelball/SM
+heelflip/SM
+heeltap/MS
+Heenan/M
+Heene/M
+Heezen/M
+Hefei/M
+Hefner/M
+heft/DzGZS
+hefty/TP
+Hegan/M
+Hegarty/M
+Hegel/M
+Hegelian/SM
+Hegelianism/SM
+hegemon/SM
+hegemonism/SM
+hegemonistic
+hegemony/SWM
+Hegira/M
+hegira/SM
+heh
+Hei/M
+Heide/M
+Heidegger/M
+Heidelberg/M
+Heidfeld/M
+Heidi/M
+Heidmann/M
+heifer/MS
+heigh
+heigh-ho
+Heigham/M
+Heighington/M
+height/MS3
+heighten/Sd
+heightism/M Noun: uncountable
+Heighton/M
+Heights/M
+Heiko/M
+Heil Sieg Heil
+heil/SGD
+Heilbronn/M
+Heilman/M
+Heilongjiang/M
+Hein/M
+Heine/M
+Heinecke/M
+Heinemann/M
+Heinlein/M
+heinous/PY
+Heinrich/M
+Heinz/M
+heir/p
+heir/SFM
+heirdom/MS
+heiress/MS
+heirloom/MS
+heirship/MS
+Heisenberg/M
+Heiss/M
+heist/SM
+Hejaz/M
+Hejira/M
+Hekla/M
+Hektor/M
+HeLa HeLa cells
+Helal/M
+Helbeck/M
+held
+Heldentenor/MS
+Helen/SM
+Helena-West/M
+Helena/M
+Helene/M
+Helensburgh/M
+Helensville/M
+Helhoughton/M
+heli-ski/SGDR
+heliacal Adjective
+helianthus/MS
+helical/Y
+helicase/SM
+helices
+Helichrysum
+helichrysum/SM
+helicity/SM
+Helicobacter Taxonomic genus
+helicobacter/SM
+helicoid/MS
+helicoid/O^
+Helicon/M
+helicon/SM
+heliconia/SM
+helicopter/dSM
+helictite/SM
+Helier/MS
+Heligoland/M
+heliocentric/Y
+heliocentricism/M Noun: uncountable
+heliocentricity/M Noun: uncountable
+heliogram/SM
+heliograph/SGDMW
+heliography/M Noun: uncountable
+heliogravure/SM
+heliometer/MS
+Helion/MS
+heliopause/SM
+Heliopolis/M
+Helios/M
+helioseismological/Y
+helioseismology/Mw
+heliosheath/SM
+heliosphere/SMW
+heliostat/SMW
+heliotherapy/SM
+heliotrope/MSW
+heliotropism/SM
+Heliotropium
+heliotype/MS
+helipad/SM
+heliport/MS
+helium/SM
+helix/SM
+hell-bent
+hell-cat/MS
+hell-hole/MS
+hell-raiser/SM
+hell/MS
+Hellaby/M
+Helladic
+Helland/M
+hellbender/MS
+hellebore/SM
+helleborine/MS
+Helleborus Taxonomic genus
+Hellene/MS
+Hellenic/M3Y
+Hellenise/DGnSr
+Hellenism/SM
+Hellenist/SMW
+Hellenize/DGSNR
+Heller/M
+Hellesdon/M
+Hellespont/M
+hellfire/SM
+hellhole/SM
+Hellidon/M
+Hellifield/M
+Hellinger/SM A surname
+Hellingly/M
+Hellington/M
+hellion/SM
+Hellions/M
+hellish/YP
+Hellman/M
+hello/DMGS
+Hells Hells Angels
+helluva
+hellward/S
+Hellyer/M
+helm/mSGMD
+Helmdon/M
+helmet/dMS
+Helmholtz/M
+Helmingham/M
+helminth/SMW
+helminthiases
+helminthiasis/M
+helminthoid Adjective
+helminthology/W3wM
+Helmont/M
+Helmsdale/M
+Helmsley/M
+helmsmanship/SM
+Helmut/M
+Helmuth/M
+Héloise/M
+helot/SM
+helotage/M Noun: uncountable
+helotism/M Noun: usually uncountable
+helotry/SM
+help/RSjpD6JGM
+Helperby/M
+Helperthorpe/M
+helpfile/SM
+helpful/PY
+helpless/PY
+helpline/SM
+helpmate/MS
+helpmeet/SM
+Helpringham/M
+Helpston/M
+Helsby/M
+Helsington/M
+Helsinki/M
+Helston/M
+helter-skelter/SM
+helter/SM
+helve/MS
+Helvetia/MW
+Helvetian/SM
+Helygen/M
+hem/GRSMD
+hematopathology/Mw3
+Hemblington/M
+Hemel/M
+Hemenway/M
+Hemet/M
+hemiacetal/SM
+hemiacetalic
+hemianopia/M Noun: usually uncountable
+hemianopsia/SM
+hemicellulose/SM
+Hemichordata Taxonomic phylum
+hemichordate/SM
+hemicrania/SM
+hemicycle/SM
+hemicylindrical
+hemidemisemiquaver/SM
+hemihedral/Y
+hemihydrate/SM
+hemiketal/SM
+hemimandible/SM
+hemimetabolic
+hemimetabolism/M Noun: uncountable
+hemimetabolous
+hemimorphite/SM
+Hemingbrough/M
+Hemingby/M
+Hemingford/M
+Hemingstone/M
+Hemington/M
+Hemingway/M
+hemiparasite/SM
+hemipareses
+hemiparesis/M
+hemipenes
+hemipenis/SM
+hemiplegia/WM
+hemipode/SM
+hemipterous
+hemisphere/SMWwD
+hemistich/SM
+hemistichs
+Hemley/M
+hemline/MS
+hemlock/SM
+Hemminger/M
+hemp/SM
+hempen
+Hempfield/M
+Hemphill/M
+Hempnall/M
+Hempriggs/M
+hempseed/SM
+Hempstead/M
+Hempsted/M
+Hempton/M
+Hemsby/M
+hemstitch/DSGM
+Hemswell/M
+Hemsworth/M
+Hemyock/M
+hen/yMS
+Henaghan/M
+Henan/M
+henbane/SM
+Henbury/M
+hence
+henceforth
+henceforward
+henchman/M
+henchmen/M
+hendecagon/MS
+hendecasyllable/SMW
+Henderskelfe/M
+Henderson/M
+Hendersonville/M
+hendiadys/SM
+Hendon/M
+Hendred/M
+Hendrick/M
+Hendricks/M
+Hendrickse/M
+Hendrickson/M
+Hendrik/M
+Hendrix/M
+Hendry/M
+Heneglwys/M
+heneicosanoic
+henequen/SM
+Henfield/M
+Henfynyw/M
+Heng/M
+henge/SM
+Hengrave/M
+Hengrove/M
+Henham/M
+Henhull/M
+Henig/M
+Henke/M
+Henley-in-Arden/M
+Henley-on-Thames/M
+Henley/M
+Henllan/M
+Henllanfallteg/M
+Henllys/M
+Henlow/M
+henna/DMGS
+Hennepin/M
+Hennessey/M
+Henning/M
+Hennock/M
+Henny/M
+henotheism/SM
+henotheist/SMW
+henpeck/DGS Verb
+Henri/M
+Henrico/M
+Henrietta/M
+Henriette/M
+Henrik/M
+Henrique/M
+Henriques/M
+Henry/M
+henry/MS
+Henryd/M
+henrys
+Hensall/M
+Henschel/M
+Hensel/M
+Hensen/M
+Henson/M
+Henstead/M
+Henstridge/M
+hentai/M
+Hentland/M
+hentriacontanoic
+Henty/M
+henwife/M
+henwives
+Henze/M
+hep/SM
+hepacivirus/SM
+heparin/MS
+heparinize/DGS
+hepatic/SM
+Hepatica Taxonomic genus
+hepatica/MS
+hepatitides
+hepatitis/SM
+hepatoblastoma/SM
+hepatoblastomata
+hepatocarcinoma/SM
+hepatocarcinomata
+hepatocellular
+hepatocyte/SM
+hepatologic/O
+hepatology/3M
+hepatoma/SM
+hepatomata/M Plural of hepatoma
+hepatomegaly/SM
+hepatopancreas/SM
+hepatopancreata/M
+hepatosplenomegaly/SM
+hepatotoxic
+hepatotoxicity/SM
+hepatotoxin/SM
+hepcat/SM
+Hepeviridae Taxonomic family
+Hepplewhite/M
+heptacosanoic
+heptad/MS
+heptadecanoic
+heptadentate
+heptadentative
+heptagon/MSO
+heptahedra/MO
+heptahedron/MS
+heptamer/SM
+heptamerous
+heptameter/SM
+heptane/SM
+heptanoic
+heptarchic/O
+heptarchy/SM
+Heptateuch/M
+heptathlon/SM
+heptatriacontanoic
+heptavalent
+Heptonstall/M
+heptose/SM
+Hepworth/M
+her/GS
+Hera/M
+Heracleides/M
+Heracles/M
+Heraclitus/M
+Herald/SM
+herald/WGSMDy3
+heraldry/SM
+herb/MSD
+herbaceous/Y
+herbaceousness/M Noun: uncountable
+herbage/SM
+herbal/3SM
+herbalism/SM
+herbaria/M
+herbarium/SM
+Herbenick/M
+Herbert/M
+herbes
+herbicide/SMO
+Herbick/M
+herbivore/SMZ
+herbivorous/Y
+Herbrandston/M
+Herbst/M
+Herby/M
+herby/T
+Hercegovina/M
+Herceptin/M
+Herculaneum/M
+Herculean
+herculean
+Hercules/M
+Hercus/M
+Hercynian
+herd/mRGSMD
+Herdman/M
+Herdwick/MS
+here/FI
+here/M
+hereabout/S
+hereafter/SM
+hereat
+hereby
+hereditable
+hereditament/SM
+hereditarian/SM
+hereditarianism/M Noun: uncountable
+hereditary/YP
+heredity/SM
+Hereford/M
+Herefordshire/M
+herein
+hereinafter
+hereinbefore
+Herekino/M
+hereof
+heresiarch/M
+heresiarchs
+heresy/SM
+Heretaunga/M
+heretic/SMO
+hereto
+heretofore
+hereunder
+hereunto
+hereupon
+herewith
+Hergenröther/M
+Hergest/M
+Heriot-Watt/M
+Heriot/M
+heriot/MS
+heritability/SM
+heritable/Y
+heritage/MS
+heritor/IM
+heritor/MS
+Herkimer/M
+herl/MS
+herm/MS
+Herman/M
+Hermann/M
+hermaphrodite/WMSw
+hermaphroditism/SM
+Hermaphroditus/M
+hermeneutic/SOY3
+Hermentidius/M
+Hermes/M
+hermetic/YSO
+Hermias/M
+Hermiston/M
+hermit/SM
+Hermitage/M
+hermitage/SM
+hermitian
+Hermosa/M
+Hermus/M
+Hernán/M
+Hernandez/M
+Hernando/M
+Herndon/M
+Herne/M
+Hernhill/M
+hernia/nSMO
+herniae/M
+herniate/GDS Verb
+Hernon/M
+hero/W1M
+Herod/M
+Herodes/M
+Herodian/SM
+Herodias/M
+Herodium/M
+Herodotus/M
+heroes
+heroic/SM
+heroin/MS
+heroine/MS
+heroise/SGDJ
+heroism/SM
+heroize/SGDJ
+heron/MS
+Herongate/M
+heronry/MS
+Herophilus/M
+herpes/M
+herpesvirus/SM
+herpetic
+herpetofauna/O^
+herpetology/S3Mw
+herptile/SM
+Herr/M
+Herren/M
+Herrenvolk/M
+Herriard/M
+Herrick/M
+Herriman/M
+Herrin/M
+Herring/M
+herring/SM
+herringbone/SMGD
+Herringby/M
+Herringfleet/M
+Herringston/M
+Herringswell/M
+Herrington/M
+Herrnhuter/MS
+Herschel/M
+herself
+Hersey/M
+Hersham/M
+Hershel/M
+Hershey/M
+Hershkowitz/M
+Herstein/M
+Herstmonceux/M
+Hertford/M
+Hertfordshire/M
+Hertingfordbury/M
+Hertsmere/M
+hertz/M
+Hertzian
+Hertzog/M
+Hertzsprung-Russell
+Hertzsprung/M
+Hervey/M
+Herzegovina/M
+Hesiod/M
+hesitance/ZSM
+hesitancy/SM
+hesitant/Y
+hesitate/nDkSGr
+hesitating/UY
+hesitative
+Hesket/M
+Hesketh-with-Becconsall/M
+Hesketh/M
+Heskin/M
+Hesleden/M
+Heslerton/M
+Heslington/M
+Hesperia/M
+Hesperian/SM
+Hesperides
+hesperidia/M
+hesperidium/M
+Hesperus/M
+Hess/M
+Hessay/M
+Hesse/M
+Hessenford/M
+Hessett/M
+hessian/SM
+Hessian/SM
+Hessle/M
+hessonite/SM
+Hester/M
+Heston/M
+Heswall/M
+hetero/SM
+heteroaromatic
+heteroatom/SM
+heterobimetallic
+heterocercal
+heterochromatic
+heterochromatin/SM
+heteroclite/SMW
+heterocyclic/SM
+heterodimer/SM
+heterodox
+heterodoxy/SM
+heterodyne/SMGD
+heteroerotic
+heteroeroticism/M Noun: uncountable
+heteroflexible/SM
+heterogametic
+heterogamous
+heterogamy/M Noun: usually uncountable
+heterogeneity/SM
+heterogeneous/YP
+heterogenous/Y
+heterograft/SM
+heterokaryotic
+heterologous/Y
+heterology/SMw
+heteromerous
+heteromorph/SMZW
+heteromorphism/SM
+heteronomous/Y
+heteronomy/M Noun: usually uncountable
+heteronormative/Y
+heteronormativity/SM
+heteronym/SMW
+heteronymous/Y
+heteropaternal
+heterophilic/Y
+heterophobe/SMW
+heterophobia/M Noun: uncountable
+heteroplasty/SMW
+heteropolar
+heteropteran/SM
+heteropterous
+heteroromantic
+heteroromanticism/M Noun: uncountable
+heteroscedastic/Y
+heteroscedasticity/SM
+heteroscorpionate
+heteroses
+heterosexism/SM
+heterosexist/SM
+heterosexual/MYS
+heterosexuality/SM
+heterosis/M
+heterosocial/Y
+heterosociality/M Noun: uncountable
+heterosporous
+heterostructure/SM
+heterotransplant/SM
+heterotroph/SMWZ
+heterozygote/SM
+heterozygous/Y
+heterozygousness/M Noun: uncountable
+Hethe/M
+Hethel/M
+Hethersett/M
+hetman/M
+hetmen/M
+Hetrick/M
+Hettie/M
+Hetton-cum-Bordley/M
+Hetton-le-Hole/M
+Hetton/M
+Heublein/M
+Heuchera Taxonomic genus
+heuchera/SM
+heulandite/SM
+heuristic/SMY
+Heuser/M
+HEVC/M
+hevea/MS
+Heveningham/M
+Hever/M
+Heversham/M
+Hevingham/M
+hew/RGSD
+Hewan/M
+Hewelsfield/M
+Hewerdine/M
+Hewett/M
+Hewick/M
+Hewitt/M
+Hewkin/M
+Hewlett/M
+hewn
+Heworth/M
+Hewson/M
+hex/DSGWrM
+hexa
+hexachloride/SM
+hexachord/SMO
+hexacosanoic
+hexad/SMW
+hexadecanoic
+hexadecimal/SMY
+hexadentate
+hexadentative
+hexafluoride/SM
+hexagon/oSMO
+hexagram/SM
+hexahedra/MO
+hexahedron/MS
+hexameral
+hexamerism/M Noun: uncountable
+hexamerous
+hexameter/MSW
+hexametrist/MS
+hexane/SM
+hexanoic
+hexapetalous
+hexapla/SM
+hexaploid/SMZ
+hexapod/MS
+Hexapoda Taxonomic subphylum
+hexaquark/SM
+hexastyle/SM
+Hexateuch/MO
+hexatriacontanoic
+hexavalent
+Hexham/M
+heximal
+hexokinase/SM
+hexose/SM
+Hextable/M
+Hexton/M
+hey
+Hey/SM A surname
+heya
+Heybridge/M
+heyday/MS
+Heydon/M
+Heydour/M
+Heyerdahl/M
+Heyford/M
+Heylin/M
+Heylipol/M
+Heyop/M
+Heysham/M
+Heyshott/M
+Heytesbury/M
+Heythrop/M
+Heywood/M
+Hezbollah/M
+Hezekiah/M
+Hf
+HF/SM
+HFC/SM
+Hg
+hgt
+HGV/SM
+hgwy/M Abbreviation of highway.
+hgwys
+hi
+hi-fi/M Noun: uncountable
+hi-res
+hi-tech/M Noun: uncountable
+Hi/M A male given name, a short form of Hiram
+Hialeah/M
+Hiatt/M
+hiatus/SM
+Hiawatha/M
+hibachi/SM
+Hibaldstow/M
+Hibbard/M
+Hibbert/M
+Hibbing/M
+hibernate/GSnD
+hibernator/SM
+Hibernia/M
+Hibernian/SM
+Hibernicism/MS
+hibiscus/MS
+hiccough/SM
+hiccoughy
+hiccup/dSM
+hiccupy
+Hick/M
+hick/SM
+Hickey/SM
+Hickleton/M
+Hicklin/M
+Hickling/M
+Hickman/M
+Hickory/M
+hickory/SM
+hid/r
+Hidalgo/M
+hidalgo/SM
+hidalgoes
+hidden/U
+Hiddleston/M
+hide-and-seek/M Noun: uncountable
+hide/GSJU
+Hide/M
+hideaway/MS
+hidebound
+hideous/PY
+hideout/MS
+hidey
+hiding/SMY
+hie/GSDM
+hieing
+Hiendley/M
+Hierapolis/M
+hierarch/M
+hierarchize/DGS
+hierarchs
+hierarchy/1WMSw
+hieratic/SMOY
+hierocracy/MS
+hierocratic/OY
+hieroglyph/SMW
+hieroglyphic/SMOY
+hierogram/MS
+hierolatry/M Noun: uncountable
+hierology/M Noun: usually uncountable
+hierophant/SMW
+Higaonna/M
+Higbee/M
+Higgins/M
+higgle/SGDJr
+higgledy
+higgledy-piggledy
+Higgs/M
+high-born
+high-cal Short for high-calorie
+high-carbon
+high-class
+high-energy
+high-flier/SM
+high-flown
+high-flyer/SM
+high-flying
+high-grade
+high-handed/PY
+high-hat/SM
+high-heeled
+high-income
+high-jump/M Noun: uncountable
+high-level
+high-minded/YP
+high-octane
+high-pass/SM
+high-pitched
+high-powered
+high-pressure
+high-profile
+high-quality
+high-ranking
+high-res
+high-resolution
+high-rise/SM
+high-risk
+high-security
+high-sounding
+high-speed
+high-spirited/P
+high-stepper/SM
+high-stepping
+high-street
+high-strung
+high-tech
+High/SM A surname
+high/YPTS~M
+Higham-with-West/M
+Higham/M
+Highampton/M
+highball/SMr
+Highbridge/M
+Highbrook/M
+highbrow/MS
+Highbury/M
+Highclere/M
+Highdale/M
+Highdown/M
+higher-level
+Higher/M
+highfalutin
+highfalutin/M Noun: uncountable
+highfaluting
+Highfield/M
+Highfurlong/M
+Highgate/M
+Highland/M
+highland/RSM
+highlandman/M
+highlandmen/M
+Highlands/M
+Highlane/M
+Highleadon/M
+Highley/M
+highlight/SGMDR
+Highlow/M
+Highmoor/M
+Highnam/M
+highpoint/SM
+highside/SGDM
+Hightae/M
+Hightown/M
+Hightstown/M
+Highway/M
+highway/mMS
+Highwood/M
+Highworth/M
+Higson/M
+Higton/M
+hijab/SM
+hijack/GRSDJM
+hijra/SM
+Hikaru/M
+hike/RSGDM
+Hikuai/M
+Hikurangi/M
+Hikutaia/M
+hila/M Plural of hilum
+hilarious/YP
+hilarity/SM
+Hilary/M
+Hilberg/M
+Hilbert/M
+Hilborough/M
+Hilburn/M
+Hilda/M
+Hildebrand/M
+Hildegard/M
+Hildenborough/M
+Hildersham/M
+Hilderstone/M
+Hilfield/M
+Hilgay/M
+Hiligaynon/SM
+Hilkevitch/M
+hill/DMGYS
+Hillam/M
+Hillard/M
+Hillary/M
+Hillbrow/M
+Hillcrest/M
+Hilldale/M
+Hillenkoetter/M
+Hillesden/M
+Hillesley/M
+Hillfarrance/M
+Hillfort/M
+Hillhall/M
+Hillhampton/M
+Hillhead/M
+Hillhouse/M
+Hillhousewood/M
+Hilliard/M
+Hillingdon/M
+Hillington/M
+Hillis/M
+hillman/M
+hillmen/M
+Hillmorton/M
+Hillner/M
+hillock/SMZD
+Hills/M
+Hillsboro/M
+Hillsborough/M
+Hillsdale/M
+Hillside/M
+hillside/MS
+hillstar/SM
+hillstream/SM
+hilltop/SM
+Hilltown/M
+hillwalker/SM
+hillwalking/M Noun: uncountable
+hilly/PT
+Hillyer/M
+Hilmarton/M
+Hilperton/M
+Hilston/M
+hilt/GMDS
+Hilton/M
+hilum/M
+him
+Himachal/M
+Himalayan/SM
+Himalayas/M
+Himalia/M
+himatia/M Plural of himation
+himation/SM
+Himbleton/M
+Himel/M
+Himley/M
+himself
+Himyarite/SM
+Hinayana/M
+Hincaster/M
+Hinckley/M
+Hincks/M
+hind/SMR
+hindbrain/SM
+Hindemith/M
+Hindenburg/M
+hinder/dr
+Hinderclay/M
+Hinderwell/M
+hindfeet/M
+hindfoot/M
+Hindi/M
+Hindley/M
+hindlimb/SM
+Hindlip/M
+hindmost
+Hindolveston/M
+Hindon/M
+Hindoo/MS
+hindquarter/SM
+hindrance/MS
+Hindringham/M
+Hinds/M
+hindsight/SM
+Hindu/MS
+Hinduism/SM
+Hinduize/DGS
+Hindustan/M
+Hindustani/SM
+hindward/S
+hindwing/SM
+Hine/MS
+Hinesville/M
+Hingaia/M
+hinge/Mpr
+hinge/USGD
+Hingham/M
+Hinkelmann/M
+Hinkle/M
+Hinkley/M
+Hinksey/M
+hinnie/SM
+hinny/M
+Hinode/M
+Hinsdale/M
+Hinstock/M
+hint/RSGMD
+hinterland/MS
+Hintlesham/M
+Hinton-in-the-Hedges/M
+Hinton/M
+Hints/M
+Hinuera/M
+Hinxhill/M
+Hinxton/M
+Hinxworth/M
+hip/TZMDSGP
+hipbone/SM
+Hipparchus/M
+Hippasus/M
+hippeastrum/SM
+hippiatrics/M Noun: uncountable
+hippiatry/M Noun: uncountable
+hippie/M
+hipping/M
+hippo/MS
+Hippocamp/M
+hippocampal/Y
+hippocampi/M Plural of hippocampus
+hippocampus/SM
+hippocentaur/SM
+hippocras/M Noun: uncountable
+Hippocrates/M
+Hippocratic
+Hippocrene/M
+Hippodrome/M Birmingham Hippodrome
+hippodrome/SM
+hippogriff/SM
+hippogryph/SM
+Hippolyta/M
+Hippolyte/M
+Hippolytus/M
+hippophagy/M Noun: uncountable
+hippophil/SM
+hippophile/SM
+hippophobia/M Noun: uncountable
+hippopotami/MW
+hippopotamus/MS
+Hipposideridae Taxonomic family
+hippy/TMS
+hipster/MS~
+hipsterism/SM
+Hipswell/M
+hiragana/SM
+Hiram/M
+Hirasawa/M
+Hirata/M
+Hirayama/M
+hircine/M
+hire-purchase
+hire/GADS
+hireable
+hireling/MS
+hirer/MS
+hiring/SM
+Hirnant/M
+Hiroki/M
+Hiroshi/M
+Hiroshima/M
+Hirsch/M
+Hirschfeld/M
+Hirschman/M
+Hirshleifer/M
+Hirst/M
+hirsute/PY
+hirsutism/M Noun: usually uncountable
+Hirwaun/M
+his/JDG
+Hispania/M
+Hispanic/SM
+Hispanicist/MS
+Hispanicize/DGS
+Hispaniola/M
+Hispaniolan/SM
+Hispanist/MS
+hispid
+hiss/SMr
+hissing/SMY
+hist/SM
+histamine/MSW
+histidine/SM
+histiocyte/SM
+histochemic/Y
+histochemical/SM
+histochemistry/M Noun: uncountable
+histocompatibility/SM
+histogeneses
+histogenesis/M
+histogenetic/Y
+histogeny/M Noun: uncountable
+histogram/MS
+histographer/MS
+histography/M Noun: uncountable
+histology/W3MSw1
+histolyses
+histolysis/M
+histolytic/Y
+histometabasis
+histomorphological/Y
+histomorphology/SM
+Histon/M
+histone/SM
+histonomy/M Noun: uncountable
+histopathologic/OY
+histopathology/SM3
+histoplasmin/M Noun: uncountable
+histoplasmoses
+histoplasmosis/M
+historian/SM
+historiate/SGD
+historical/PSMY
+historicise/SGDN
+historicism/SM
+historicist/MS
+historicity/MS
+historicize/SGDN
+historify/SGD
+historiograph/SMrW1
+historiography/wSM
+history/O
+history/SK1MW
+histrionic/SY
+histrionicism/MS
+histrionism/MS
+hit-and-miss
+hit-and-run/SM
+hit/pRMSG
+Hitachi/M
+hitch-hike/DRGS
+hitch/RDSGM
+Hitcham/M
+Hitchcock/M
+hitched/U
+hitches/U
+Hitchin/M
+Hitchman/SM A surname
+hither
+hitherto Adverb
+hitherto-unseen
+hitherward/S
+Hitler/MS
+Hitlerian/SM
+Hitlerism/M Noun: uncountable
+Hitlerite/SM
+hitmaker/SM
+hitman/M
+hitmen/M
+Hitt/M
+hittable
+Hittisleigh/M
+Hittite/SM
+HIV-negative
+HIV-positive
+HIV/M Noun: uncountable
+hive/MDGS
+Hix/M
+Hixon/M
+hiya
+Hiyya/M
+hm A shorter variant of hmm
+HMAS
+hmm
+HMRC/M
+HMS
+HMSO Her or His Majesty's Stationery Office
+ho's/F
+ho-hum
+ho/MRYD
+Hoag/M
+Hoagland/M
+Hoar/M
+hoar/MZ2
+hoard/MSRDJG
+hoarding/SMY
+hoarfrost/SM
+hoarhound/MS
+hoarse/PYT
+hoarsen/Sd
+hoarsening/S
+hoarstone/MS
+hoary/PTY
+Hoath/M
+Hoathly/M
+hoatzin/SM
+hoax/DRGSM
+hob/SZGMD
+Hobart/M
+Hobbes/M
+hobbit/SM
+hobbitry/M Noun: uncountable
+hobble/RGDSM
+hobbledehoy/MS
+Hobbs/M
+hobby-horse/SM
+hobby/3MS
+Hoberg/M
+Hoberman/M
+hobgoblin/SM
+Hobhouse/SM A surname
+Hobkirk/M
+hobnail/DMS
+hobnob/DGS
+hobo/MS
+hoboes
+Hoboken/M
+Hobson/M
+Hobsonville/M
+Hoby/M
+hoc
+Hochschild/M
+hock/MSDG
+Hockering/M
+Hockersmith/M
+Hockerton/M
+hockey/SM
+Hockham/M
+Hocking/M
+Hockley/M
+Hockliffe/M
+Hocktide/MS
+Hockwold/M
+Hockworthy/M
+hocus-pocus/Mr
+hod/SM
+Hoddam/M
+hodden/SM
+Hodder/M
+Hoddesdon/M
+Hoddom/M
+Hodge/MS
+hodge/SM
+hodgepodge/MS
+Hodgeston/M
+Hodgkin/M
+Hodgson/M
+hodiernal/Y
+hodman/M
+hodmen/M
+Hodnell/M
+Hodnet/M
+hodograph/MS
+Hodsock/M
+Hodthorpe/M
+hoe/GMSDr
+Hoe/M
+hoecake/MS
+hoes/F
+Hoest/M
+Hoff/M
+hoffens
+Hoffman/M
+hoftens
+hog/GSDMR
+hogan/MS
+Hogarth/M
+hogback/SM
+Hogg/M
+Hogganfield/M
+Hoggard/M
+hoggery/MS
+Hoggeston/M
+hogget/MS
+hoggish/Y
+hoggishness/M Noun: usually uncountable
+Hoghton/M
+hoglike
+Höglund/M
+Hogmanay/M
+Hognaston/M
+hognut/SM
+Hogshaw/M
+hogshead/MS
+Hogsthorpe/M
+Hogwarts/M
+hogwash/MS
+hogweed/SM
+Hohenzollern/M
+Hohhot/M
+Hohl/M
+Hohlbein/M
+Hohmann/M
+hoick/SGDM
+hoist/SDGrM
+hoity
+hoity-toitiness/M Noun: uncountable
+hoity-toity/T
+Hoke/M
+hokey
+hokey-cokey/M
+Hokitika/M
+Hokkaido/M
+hokku/SM
+Hokowhitu/M
+hokum/M Noun: usually uncountable
+Holbeach/M
+Holbeck/M
+Holberg/M
+Holberton/M
+Holbeton/M
+Holborn/M
+Holborne/M
+Holbrook/M
+Holburn/M
+Holcomb/M
+Holcombe/M
+Holcot/M
+hold-up/MS
+hold/RSGJ7M
+holdall/SM
+holdback/SM
+Holden/M
+Holdenby/M
+Holdenhurst/M
+Holderness/SM
+Holdfast/M
+holdfast/MS
+Holdgate/M
+holding/SM
+holdout/SM
+holdover/MS
+Holdsworth/M
+hole/GDSM
+holeable
+Holegate/M
+Holesovsky/M
+holey
+Holford/M
+Holick/M
+holiday/GSMDR
+holidaymaker/SM
+holier-than-thou
+Holiness/SM
+Holinshed/M
+holism/SM
+holist/SMW1
+Holker/M
+Holkham/M
+Hollacombe/M
+Holladay/M
+Holland/M
+hollandaise/M Noun: usually uncountable
+Hollander/SM
+holler/Sd
+Hollerith/M
+Hollesley/M
+Holley/M
+Hollinfare/M
+Hollingbourne/M
+Hollingham/M
+Hollington/M
+Hollins/M
+Hollinsclough/M
+Hollinswood/M
+Hollinwood/M
+Hollis/M
+Hollister/M
+Holliston/M
+Holloman/M
+hollow-eyed
+hollow/PDTGSYM
+Holloway/M
+Hollowell/M
+hollowware/SM
+Holly/M
+holly/MS
+hollyhock/SM
+Hollym/M
+Hollywood/M
+Holm/M
+Holman/M
+Holmdel/M
+Holme/MR
+Holmes/M
+Holmescales/M
+Holmesfield/M
+Holmesian/SM
+Holmewood/M
+Holmfirth/M
+Holmhead/M
+holmium/M Noun: usually uncountable
+Holmpton/M
+Holmwood/M
+Holne/M
+Holnest/M
+Holocaust/M Noun: usually uncountable
+holocaust/SM
+Holocene/M
+holodeck/SM
+holoenzyme/SM
+Holofernes/M
+hologram/SM
+holograph/DSZGWM1
+holography/SM
+holohedral
+holometabolous
+holomorphic/Y
+holophrase/SM
+holophrasis/M
+holophrastic/Y
+holothurian/SM
+holothuroid/SM
+holotype/SM
+holozoic
+Holroyd/M
+Holst/M
+Holstein/MS
+holster/MdS
+Holsworthy/M
+Holt/M
+Holtby/M
+Holton/M
+Holtzman/M
+Holverston/M
+Holwell/M
+Holy/M
+holy/TSPY
+Holybrook/M
+Holyhead/M
+Holymoorside/M
+Holyoake/M
+Holyoke/M
+Holyrood/M
+Holyroodhouse/M
+Holystone/M
+holystone/SMGD
+Holytown/M
+Holywell-cum-Needingworth/M
+Holywell/M
+Holywood/M
+Holzman/M
+homage/SMR
+Homai/M
+hombre/SM
+Homburg/M
+homburg/MS
+home-based
+home-born/SM
+home-brew/SDM
+home-cooked
+home-grown
+home-loving
+home-made
+home-maker/SM
+home-making/M Noun: uncountable
+home/RpYGzDMSP
+homebody/SM
+homebuilder/SM
+homebuilding/M Noun: uncountable
+homebuilt
+homebuyer/SM
+homecoming/SM
+Homedale/M
+homeland/MS
+homeless/PY
+homelike
+homelikeness/M Noun: uncountable
+homely/TP
+homeobox/SM
+homeodomain/SM
+homeomorphic/Y
+homeomorphism/SM
+homeopath/SM
+homeopathic/YSMO
+homeopathy/3SM
+homeostases
+homeostasis/M
+homeostatic/OY
+homeothermy/M Noun: uncountable
+homeowner/SM
+homeowning
+homepage/MS
+HomePod/M
+Homer/SMW
+Homero/M
+Homerology/3M
+Homersfield/M
+Homerton/M
+homeschool/SGDrM
+homeshoring/M Noun: uncountable
+homesick/PY
+homesourcing/M Noun: uncountable
+homespun/SM
+homestay/SM
+homestead/GMDSR
+Homestead/M
+homestretch/MS
+Homet/M
+homeward-bound/r
+homeward/SY
+homeware/SM
+Homewood/M
+homework/GRM
+homewrecker/SM
+homey/PSM
+homicide/SoMO
+homier
+homiest
+homiletic/SOY
+homiliary/MS
+homily/SM
+hominem ad hominem
+Homington/M
+hominid/SM
+Hominidae Taxonomic family
+Homininae Taxonomic subfamily
+Hominini Taxonomic tribe
+hominoid/SM
+homme/MS
+Homo Taxonomic genus
+homo/SM
+homocentric/O
+homocercal
+homocercality/M Noun: uncountable
+homocysteine/SM
+homodimer/SM
+homodont/SM
+homoeobox/SM
+homoeodomain/SM
+homoeopath/1WSZ3M
+homoeopathy/SM
+homoeostases
+homoeostasis/M
+homoeostatic
+homoeotherm/ZWOSM
+homoerotic/Y
+homoeroticism/SM
+homoerotics/M Noun: uncountable
+homogametic
+homogamous/Y
+homogamy/M Noun: uncountable
+homogenate/SM
+homogeneity/ISM
+homogeneous/YP
+homogenise/RGDSn
+homogenize/DRGSn
+homogenous/Y
+homogeny/M Noun: usually uncountable
+homograft/SM
+homograph/SM
+homography/SM
+homoiousian/MS
+homologate/DGSn
+homologise/SGD
+homologize/SGD
+homologous/Y
+homologue/MS
+homology/SMw
+homomorph/WZSM1
+homomorphism/SM
+homomorphous
+homonym/MSW
+homonymous/Y
+homonymy/SM
+homoousian/SM
+homophile/SM
+homophobe/SMW
+homophobia/SM
+homophone/MSZW1
+homophonous/Y
+homopolar
+homopolymer/SM
+Homoptera Taxonomic suborder
+homopteran/SM
+homopterous
+homorganic/SM
+homoromantic/SM
+homoromanticism/M Noun: uncountable
+Homosassa/M
+homoscorpionate
+homosex/M Noun: usually uncountable
+homosexual/SMY3
+homosexualise/SGDN
+homosexualism/M Noun: uncountable
+homosexuality/SM
+homosexualize/SGDN
+homosocial/Y
+homosociality/SM
+homotopy/WSM
+homotransplant/SM
+homousian/SM
+homozygosity/M Noun: usually uncountable
+homozygote/SM
+homozygous/Y
+homozygousness/M Noun: uncountable
+homuncular
+homuncule/MS
+homunculi/M Plural of homunculus
+homunculus/M
+Hon.
+Honda/M
+Honddu/M
+Hondo/M
+Honduras/M
+hone/STGDMr
+Honecker/M
+honest/EZY
+honester
+honestest
+honesty/SME
+Honey/M
+honey/SMD
+honeybee/SM
+Honeybourne/M
+Honeychurch/M
+honeycomb/GDSM
+honeycreeper/SM
+honeydew/SM
+honeyeater/SM
+honeyguide/SM
+honeylocust/SM
+honeymoon/RDGMS
+honeypot/SM
+honeysucker/SM
+honeysuckle/MS
+honeytrap/SM
+Honeywell/M
+honeywort/SM
+Hong/M
+Hongoeka/M
+Hongwang/M
+Honiara/M
+Honiley/M
+Honing/M
+Honingham/M
+Honington/M
+Honiton/M
+honk/RSMDG
+Honley/M
+Honolulu/M
+honorand/MS
+honoraria/M Plural of honorarium
+honorarium/MS
+honorary/SMY
+honorific/SMOY
+honorify/SGD
+honoris honoris causa
+Honorius/M
+honorous
+honour/E7MRlDGS
+honourability/M Noun: usually uncountable
+honourable/MSPY
+honourous
+honourworthy
+Honshu/M
+Honthorst/M
+Honwana/M
+hoo-ha/SM
+Hoo/M
+hood/DGMiS
+Hood/M
+hooded/P
+hoodie/SM
+hoodlum/SM
+hoodoo/MGDS
+hoodwink/SGDR
+hoody/SM
+Hooe/M
+hooey/MS
+hoof/MDGSR
+Hoofield/M
+hoofmark/SM
+Hooft/M
+Hooghly/M
+Hoohill/M
+hook-nosed
+Hook/M
+hook/RGSMDp
+hookah/SM
+Hooke/M
+hookey/M Noun: uncountable
+hooklet/MS
+Hooksett/M
+hookup/MS
+hookworm/SM
+hooky/M Noun: uncountable
+Hoole/M
+hooligan/SM
+hooliganism/SM
+Hoon/M
+Hoonacker/M
+hoop/GMDSr
+hoopla/MS
+hoopoe/SM
+hooray/S
+Hoorn/M
+Hoosier/M
+hoot/RMDGS
+hootch/SM
+Hooton/M
+Hoover/MS
+hoover/Sd
+hooves Plural of hoof
+hop/RDSGM
+Hopatcong/M
+hope/6MjSGDpr
+Hope/M
+hopeful/SMP
+hopeless/PY
+Hopeman/M
+Hopesay/M
+Hopetoun/M
+Hopewell/M
+Hopf/M
+hophead/MS
+Hopkins/M
+Hopkinsville/M
+Hopkinton/M
+hoplite/SM
+Hoppensteadt/M
+Hopperton/M
+Hoppit/M
+hopple/SGDM
+hopsack/MS
+hopscotch/M Noun: uncountable
+Hopson/M
+Hopton-on-Sea/M
+Hopton/M
+Hopwas/M
+Hopwell/M
+Hopwood/M
+Horace/M
+Horahora/M
+Horam/M
+horary/SM
+Horatian
+Horatio/M
+Horatius/M
+Horbling/M
+Horbury/M
+Horde
+horde/MS
+Hordle/M
+Hordley/M
+Horeb/M
+horehound/MS
+Horeke/M
+Horethorne/M
+Horfield/M
+Horgan/M
+Horham/M
+Horizon/M
+horizon/SM
+horizontal/SMY
+horizontality/SM
+Horizonte/M
+Horkesley/M
+Horkstow/M
+Horley/M
+Horlicks/M
+Hormead/M
+hormone/oMSO
+Hormuz/M
+horn/DGip2ZSMr3
+Horn/M
+hornbeam/MS
+hornbill/SM
+hornblende/MS
+Hornblotton/M
+Hornblower/M
+hornbook/SM
+Hornby-with-Farleton/M
+Hornby/M
+Horncastle/M
+Hornchurch/M
+Horndean/M
+Horndon/M
+Horne/M
+Horneber/M
+horned/P
+hornet/MS
+Hornig/M
+Horning/M
+Horninghold/M
+Horninglow/M
+Horningsea/M
+Horningsham/M
+Horningsheath/M
+Horningtoft/M
+hornlike
+hornpipe/SM
+Hornsby/M
+Hornsea/M
+Hornsey/M
+horntail/SM
+Hornton/M
+Hornung/M
+hornwort/MS
+horny/PT
+Horo/M
+Horokiwi/M
+Horologii Genitive of Horologium
+Horologium/M
+horology/W3wSM
+horoscope/SMZ
+horoscopic/O
+Horowhenua/M
+Horowitz/M
+Horrabridge/M
+horrendous/Y
+horrent
+horrible/PY
+horrid/PY
+horridity/M Noun: uncountable
+horrify/1SWGDkn
+Horringer/M
+horripilation/SM
+Horrisdale/M
+Horrocks/M
+horror-stricken
+horror-struck
+horror/SM
+Horry/M
+hors hors concours
+horse-drawn
+horse-race/SMG
+horse-trading/M Noun: uncountable
+horse/YmG5DMSpJ
+horseback/SM
+horsebean/SM
+horsebox/SM
+horsebreaker/SM
+horsecloth/SM
+horsedom/M Noun: uncountable
+horseflesh/M Noun: uncountable
+horsefly/SM
+horsehair/SM
+Horseheads/M
+Horseheath/M
+Horsehouse/M
+horseleech/MS
+horselike
+Horsell/M
+horsemanship/SM
+Horsenden/M
+horseplay/Mr
+horsepower/SM
+horseradish/SM
+horseshed
+horseshit/M! Noun: uncountable
+horseshoe/GDSM
+horsetail/SM
+horsewhip/GDSM
+Horsey/M
+horsey/SM
+Horsford/M
+Horsforth/M
+Horsham/M
+horsier
+horsiest
+horsiness/M Noun: uncountable
+Horsington/M
+Horsley/M
+Horsleydown/M
+Horsmonden/M
+Horspath/M
+Horst/M
+horst/SM
+Horstead/M
+Horsted/M
+horsy/YSM
+hortation/MS
+hortative/SMY
+hortatory/SM
+hortensia/MS
+horticulturalist/SM
+horticulture/3SMO
+Horton-cum-Studley/M
+Horton/M
+hortus hortus siccus
+Horus/M
+Horwich/M
+Horwood/M
+hos/Sd
+hosanna/SM
+hosannah/SM
+Hose/M
+hose/SMGD
+Hosea/M
+hosepipe/SM
+Hoshea/M
+hosier/SM
+hosiery/M Noun: usually uncountable
+Hosni/M
+Hosny/M
+Hosokawa/M
+hosp
+hospice/MS
+hospitable/YI
+hospitably/I
+Hospital/M
+hospital/Qq8SM-R
+hospitalism/M Noun: uncountable
+hospitality's/I
+hospitality/SM
+host/YSMGD
+Hosta Taxonomic genus
+hosta/SM
+hostage/MS
+hostel/DRMSyG
+hostelry/SM
+hostess/GMDS
+hostile/Y
+hostility/MS
+hostler/SM
+hostname/SM
+hot-air
+hot-blooded
+hot-swap/DGB
+hot-tempered
+hot-wire/SGD
+Hot/M
+hot/PDSYGTR
+hotbed/MS
+hotbox/SM
+hotcake/SM
+Hotchkiss/M
+hotchpot/SM
+hotchpotch/SM
+hotel/mSM
+hotelier/MS
+Hotelling/M
+hotfoot/DSG
+Hotham/M
+hothead/SDihM
+Hothersall/M
+Hothfield/M
+hothouse/MSGD
+hotkey/SM
+hotline/SM
+hotlink/SGDM
+hotlist/SM
+Hotmail/MR
+Hoton/M
+hotplate/MS
+hotplug/SDG
+hotpot/MS
+hotrod/SM
+hotshot/SM
+hotspot/SM
+hotspur/MS
+Hottentot/MS
+hottie/SM
+hottish
+hotty/SM
+Houdini/M
+Hough-on-the-Hill/M
+Hough/M
+hough/SM
+Hougham/M
+Houghton-le-Spring/M
+Houghton/M
+Houhora/M
+Houlden/M
+Houlihan/M
+Hoult/M
+Houma/M
+hound/GSMDr
+Hound/M
+houndfish/SM
+hounding/SM
+Houndsditch/M
+houndstooth/SM
+houngan/SM
+Hounslow/M
+hour/MYS
+hourglass/SM
+houri/SM
+hourly/SM
+house's/e
+house-hunting/M Noun: uncountable
+house-proud
+house-to-house
+house-train/Sd
+house-warming/SM
+House/M
+house/rGDmJS6Mp
+houseboat/MS
+housebound
+houseboundness/M Noun: uncountable
+houseboy/MS
+housebreak/SRJG
+housebroke
+housebroken
+housebuilder/SM
+housebuilding/M Noun: uncountable
+houseclean/JGDS
+housecoat/SM
+housecraft/SM
+housed/A
+housefather/SM
+housefly/SM
+houseful/SM
+household/RSM
+housekeep/GR
+houseleek/MS
+housemaid/SM
+housemaster/YMS
+housemastering/M
+housemastership/SM
+housemate/SM
+housemating/M
+housemistress/SM
+housemonger/SM
+housemother/SMY
+houseowner/SM
+housepainter/SM
+houseparent/SM
+houseplace/SM
+houseplant/SM
+houseroom/SM
+houses/eA
+houseshare/SM
+housesharer
+housesmith/SM
+housestead/SM
+housetop/SM
+houseware/M Noun: usually uncountable
+housewife/MY
+housewifely/P
+housewifery/M Noun: usually uncountable
+housewifeship/M Noun: uncountable
+housewifish
+housewives
+housework/RSM
+housey
+housie/M Noun: uncountable
+housing/A
+housing/SM
+Houston/M
+hove
+Hove/M
+hovel/SM
+hover/dSrM
+hovercraft/SM
+Hoveringam/M
+Hoveringham/M
+hoverport/MS
+hovertrain/MS
+Hoveton/M
+Hovingham/M
+how'd
+how're
+how've
+how-to/SM
+How/M
+how/MS
+Howard/M
+howay
+howbeit
+howdah/SM
+Howden/M
+howe/SM
+Howe/SM
+Howel/M
+Howell/M
+however
+Howgate/M
+Howgill/M
+Howgrave/M
+Howick/M
+Howie/M
+Howitt/M
+howitzer/SM
+howl/DSRGM
+Howland/M
+Howley/M
+Howman/M
+Howmore/M
+Hownam/M
+Howsham/M
+howsoever
+Howth/M
+Howwood/M
+Hoxha/M
+Hoxhaism/M Noun: uncountable
+Hoxne/M
+Hoxsey/M
+Hoxton/M
+Hoy/M
+hoy/SM
+Hoya Taxonomic genus
+hoya/SM
+hoyden/SMd~
+Hoyland/M
+Hoyle/M
+Hoyt/M
+HP/M
+HPV/SM
+HQ/SM
+hr.
+Hradec Hradec Králové
+HRH
+hrs.
+HRT/SM
+Hs
+Hsu/M
+HTML/M
+html/M
+HTPC/SM Initialism of home theater PC
+http/SM
+Huanan/M
+Huang/M
+Huapai/M
+Huawei/M
+hub-cap/SM
+hub/MZS
+Hubbard/M
+Hubberholme/M
+Hubberston/M
+hubble-bubble/SM
+Hubble/M
+hubbub/SM
+hubby/MS
+hubcap/SM
+Hubei/M
+Huber/M
+Hubert/M
+hubris/MSW
+hubristically
+Huby/M
+Hucclecote/M
+huchen/SM
+Huck/M
+huckaback/SM
+Huckabee/M
+Hucking/M
+huckleberry/MS
+Hucklow/M
+Hucknall/M
+huckster/MSd
+HUD/SM
+Huddersfield/M
+Huddington/M
+huddle/DSMGR
+Huddleston/M
+Huddlestone/M
+Hudgens/M
+Hudibrastic/Y
+Hudley/M
+Hudson/M
+Hudsonian/SM
+Hudswell/M
+hue/SMDp
+Hueneme/M
+Huey/M
+Hueytown/M
+huff/zSDZMG~
+Huffington/M
+Huffman/M
+huffy/TP
+hug/SDGRM
+huge/PTY
+Hügelschäfer/M
+huggable
+huggableness/M Noun: uncountable
+Huggate/M
+Huggins/M
+Hugglescote/M
+Hugh/MS
+Hughenden/M
+Hughes/M
+Hughie/M
+Hughley/M
+Hugill/M
+Hugo/M
+Huguenot/SM
+huh/S
+Hui/M
+hui/MS
+Huia/M
+Huiakama/M
+Huijun/M
+Huirangi/M
+huisache/SM
+Huish/M
+Huixia/M
+Hukerenui/M
+hula/MDGS
+Hulcote/M
+Hulcott/M
+hulk/GMDS
+Hull/M
+hull/SRGMD
+hullabaloo/MS
+Hulland/M
+Hullavington/M
+Hullbridge/M
+hullo/MSGD
+Hulme/M
+Hulver/M
+hum/RSDGM
+Humalog/M
+human-like
+human/MsQ8Y3-q9PS
+humana/M vox humana
+humane/P3Y
+humanely/I
+humaneness/I
+humaneness/M Noun: usually uncountable
+humaner
+humanise/CRDSnG
+humanism/MS
+humanistic/OY
+humanitarian/SM
+humanitarianism/SM
+humanity/SMI
+humanize/CRDnSG
+humankind/M Noun: usually uncountable
+humanly/I
+humanoid/SM
+Humber/M
+Humberside/M
+Humberston/M
+Humberstone/M
+Humbert/M
+Humberto/M
+Humberton/M
+Humbie/M
+Humble/M
+humble/PTGSDYM
+Humbleton/M
+Humboldt/M
+humbug/GDSM
+humbuggery/SM
+Humby/M
+humdinger/SM
+humdrum/SM
+Hume/M
+humectant/SM
+humeral/SM
+humeri/M Plural of humerus
+humerus/SM
+humid/Y
+humidification/CM
+humidify/CnGRDS
+humidistat/SM
+humidity/SM
+humidor/MS
+humify/SGDN
+humiliate/GSkDn
+humiliator/SM
+humility/SM
+humint/SM
+Humira/M
+humite/SM
+hummable
+Hummel/M
+hummel/SM
+hummingbird/SM
+hummock/DSMZG
+hummus/M Noun: usually uncountable
+humongous/Y
+humoral/3
+humoralism/M Noun: usually uncountable
+humoresque/SM
+humorist/WSM
+humorology/M Noun: uncountable
+humorous/PY
+humour/6DhMpSG
+humourer/S
+humourise/SGD
+humourize/SGD
+humourless/PY
+humoursome/Y
+humoursomeness/M Noun: uncountable
+hump/GSMDp
+humpback/DSM
+Humperdinck/M
+humph/S
+Humphrey/MS
+Humphry/MS
+Humpston/M
+Humpty/M
+humpy/TSM
+Humshaugh/M
+Humulin/M
+humus/MSW
+Hun/SM
+Hunan/M
+hunch/GSDM
+hunchback/SMD
+Huncote/M
+Hundersfield/M
+Hundleby/M
+Hundleton/M
+Hundon/M
+hundred/HMS
+hundredweight/MS
+hung/Ac
+Hungarian/SM
+Hungarton/M
+Hungary/M
+Hungate/M
+hunger/dMS
+Hungerford/M
+Hungerton/M
+hungover
+hungry/YPT
+hunk/MZS
+hunker/Sd
+hunky/T
+Hunmanby/M
+Hunnam/M
+Hunningham/M
+Hunnington/M
+Hunnish/M
+Hunnishness/M Noun: uncountable
+Hunsbury/M
+Hunsdon/M
+Hunshelf/M
+Hunsingore/M
+Hunslet/M
+Hunsley/M
+Hunsonby/M
+Hunspell/M
+Hunstanton/M
+Hunstanworth/M
+Hunsterson/M
+Hunston/M
+Hunsworth/M
+hunt/DmGRJSM
+Hunt/M
+hunter-gatherer/SM
+Hunterdon/M
+Huntersville/M
+Hunterville/M
+Huntingdon/M
+Huntingdonshire/M
+Huntingfield/M
+Huntington/M
+Huntley/M
+Huntly/M
+Hunton/M
+huntress/SM
+Huntsbury/M
+Huntsham/M
+Huntshaw/M
+Huntspill/M
+Huntsville/M
+Huntwick/M
+Hunua/M
+Hunworth/M
+Huoshenshan/M
+Huppert/M
+Huraira/M
+Hurd/M
+hurdle/RMGSD
+Hurdon/M
+Hurdsfield/M
+hurdy-gurdy/SM
+hurl/DYSGRMJ
+Hurlbert/M
+Hurleston/M
+Hurley/M
+hurley/SM
+Hurleyville/M
+Hurlford-Crookedholm/M
+Hurlford/M
+hurly-burly/M
+Hurn/M
+Hurney/M
+Huron/M
+hurrah/SGDM
+hurray/SGDM
+Hurricane/M
+hurricane/SM
+hurried/UY
+hurriedness/M Noun: uncountable
+hurry/iSGhDr
+Hursley/M
+Hurst/M
+hurst/MS
+Hurstbourne/M
+Hurston/M
+Hurstpierpoint/M
+hurt/kjG6SrM
+Hurtak/M
+hurtful/P
+hurtle/DGS Verb
+Hurunui/M
+Hurwicz/M
+Hurwitz/M
+Hurworth/M
+husband-to-be/M
+husband/DYyGSMr
+husbandhood/M Noun: uncountable
+husbandlike
+husbandliness/M Noun: uncountable
+husbandman/M
+husbandmen/M
+husbandry/MS
+husbands-to-be/M
+Husbands/M
+husbandship/SM
+Husborne/M
+Husbourne/M
+hush/DGSM
+husk/RzZSMDGJ
+Huskisson/M
+husky/TSMP
+Huss/M
+Hussain/M
+hussar/SM
+Hussein/M
+Hussey/M
+Hussin/M
+Hussingtree/M
+Hussite/SM
+Hussitism/M
+hussy/SM
+Husthwaite/M
+hustings
+hustle/RGSDM
+Huston/M
+hut/MDGS
+hutch/GSDM
+Hutcherson/M
+Hutchings/M
+Hutchins/M
+Hutchinson/M
+Hutchison/M
+hutment/MS
+Hutt/M
+Hutterite/SM
+Hutto/M
+Huttoft/M
+Hutton-le-Hole/M
+Hutton-Sessay/M
+Hutton/MS
+Hutu/M
+Huxham/M
+Huxley/M
+Huya/M
+Huyck/M
+Huygens/M
+Huyton-with-Roby/M
+Huyton/M
+huzza/SGD
+Hvatum/M
+Hwang/M
+hwyl/M Noun: uncountable
+hyacinth/MS
+hyacinthine Adjective
+Hyacinthus Taxonomic genus
+Hyades/M
+hyaena/SM
+hyaline/SM
+hyalite/SM
+hyaloclastite/SM
+hyaloid/SMO
+hyaluronic
+Hyatt/M
+Hyattsville/M
+hybrid/MS
+hybridisable
+hybridise/SGDn
+hybridism/MS
+hybridity/SM
+hybridizable
+hybridize/SGDn
+hybridoma/SM
+hydatid/MS
+hydatidiform Adjective
+Hyde/M
+Hyderabad/M
+Hydon/M
+hydra/WnSM
+hydralazine/SM
+Hydrangea Taxonomic genus
+hydrangea/MS
+hydrant/MS
+hydrate/MGDS
+hydrated/AC
+hydrates/CA
+hydrating/CA
+hydration/CMS
+hydraulic/Y
+hydraulics/M Noun: uncountable
+hydrazine/SM
+hydride/SM
+hydriodic
+hydro/MS
+hydrobiology/3M
+hydrobot/SM
+hydrobromic
+hydrobromide/SM
+hydrocarbon/SM
+hydrocele/MS
+hydrocephali/M
+hydrocephalic/SM
+hydrocephalus/MS
+hydrocephaly/SM
+hydrochemistry/M Noun: uncountable
+hydrochloric
+hydrochloride/SM
+hydrochlorothiazide/SM
+hydrochore/1SMW
+hydrochorous
+hydrochory/M Noun: uncountable
+hydrocodone/SM
+hydrocolloid/SM
+hydrocortisone/SM
+hydroculture/M Noun: uncountable
+hydrocyanic
+hydrodynamic/OY
+hydrodynamics/M Noun: uncountable
+hydroelectric/OY
+hydroelectricity/M Noun: uncountable
+hydrofluoric
+hydrofluorocarbon/SM
+hydrofoil/MS
+hydroforming/M Noun: uncountable
+hydrofracturing/M Noun: uncountable
+hydrogel/SM
+hydrogen/nSM
+hydrogenate/SMGD
+hydrogenated/C
+hydrogenates/C
+hydrogenating/C
+hydrogenation/CM
+hydrogenous/Y
+hydrogeology/w13M
+hydrographer/MS
+hydrographic/OY
+hydrography/SM
+hydroid/SM
+hydrolase/SM
+hydrology/M31Sw
+hydrolyse/GSDW
+hydrolysis/M
+hydromagnetic/Y
+hydromagnetics/M Noun: uncountable
+hydromassage/SM
+hydromechanics/M Noun: uncountable
+hydromedusa/M
+hydromedusae/M Plural of hydromedusa
+hydromel/SM
+hydrometer/SM
+hydrometry/MSW
+hydronium/SM
+hydropathic/SMOY
+hydropathy/SM3
+hydroperoxide/SM
+hydrophilicity/SM
+hydrophilous
+hydrophily/WM
+hydrophobia/SMW
+hydrophobicity/SM
+hydrophone/MS
+hydrophyte/WSM
+hydroplane/DMSG
+hydroponic/SOY3
+hydropower/M Noun: uncountable
+hydroquinone/SM
+hydrosphere/MS
+hydrostatic/SOY
+hydrosulphide/M Noun: uncountable
+hydrotherapy/MS
+hydrothermal/Y
+hydrothorax/M Noun: usually uncountable
+hydrotropism/M Noun: usually uncountable
+hydrous
+hydroxamate/MS
+hydroxide/SM
+hydroxonium/SM
+hydroxy/M Noun: uncountable
+hydroxyapatite/SM
+hydroxybutyrate/SM
+hydroxychloroquine/M Noun: uncountable
+hydroxyl/NSM
+hydroxylamine/MS
+hydroxylate/SGDn
+hydroxyproline/SM
+hydroxyzine/SM
+hydrozincite/SM
+Hydrozoa Taxonomic class
+hydrozoan/SM
+Hydrus/M
+hyena/SM
+hyerpolarised
+Hygiea/M
+hygiene/M13WS
+hygienics/M Noun: uncountable
+hygrometer/MSW
+hygrometry/M Noun: uncountable
+Hygrophila Taxonomic genus
+hygrophilous
+hygrophyte/SM
+hygroscope/SMW
+Hykeham/M
+Hyksos
+Hylda/M
+hylic/SM3
+hylomorphic/OY
+hylomorphism/SM
+hylozoism/SM
+Hylton/M
+Hyman/M
+hymen/SMO
+hymeneal/SM
+hymenia/MO
+hymenium/SM
+hymenophore/SM
+Hymenoptera Taxonomic order
+hymenoptera/M Plural of hymenopteron
+hymenopteran/SM
+hymenopteron/SM
+hymenopterous
+hymenorrhaphy/SM
+Hymes/M
+hymn-book/SM
+hymn/WSGMD
+hymnal/MS
+hymnary/SM
+hymnodist/MS
+hymnody/SM
+hymnographer/SM
+hymnography/M Noun: uncountable
+hymnology/3wM
+Hyndburn/M
+Hyndland/M
+Hynek/M
+Hyneman/M
+hyoid/SM
+hyoscine/SM
+hyoscyamine/SM
+hypaethral
+hypalgesia/M Noun: usually uncountable
+hypallage/MS
+Hypatia/M
+hypaxial/SM
+hype/DSMG
+hyper/SM
+hyperacidity/SM
+hyperactive/Y
+hyperactivity/SM
+hyperaemia/MW
+hyperaesthesia/SM
+hyperaesthetic
+hyperalgesia/WSM
+hyperalimentation/SM
+hyperbaric/Y
+hyperbaton/SM
+hyperbenthic
+hyperbenthos/M Noun: uncountable
+hyperbola/MS
+hyperbolae/M
+hyperbole/Mw1SW
+hyperbolise/SGD
+hyperbolism/SM
+hyperbolize/SGD
+hyperboloid/MSO
+Hyperborean/MS
+hyperborean/SM
+hypercalcaemia/SM
+hypercapnia/WM
+hypercellular
+hypercellularity/M Noun: uncountable
+hypercharge/SM
+hyperchloraemia/MW
+hypercholesterolaemia/SM
+hyperchromasia/SM
+hypercompetitive
+hypercompetitiveness/M Noun: uncountable
+hypercomplex/SM
+hyperconnected
+hyperconnectedness/M Noun: uncountable
+hyperconscious/P
+hypercorrect/Y
+hypercorrection/SM
+hypercorrectness/M Noun: uncountable
+hypercritical/Y
+hypercriticality/M Noun: uncountable
+hypercryophile
+hypercube/SM
+hyperdiamond/SM
+hyperdiploid
+hyperdiploidy/M Noun: usually uncountable
+hyperdrive/SM
+hyperechoic
+hyperemeses
+hyperemesis/M
+hyperextend/SGD
+hyperextension/SM
+hyperfine
+hyperflier/SM
+hyperfocal
+hyperfocus/M Noun: uncountable
+hypergamous/Y
+hypergamy/M Noun: usually uncountable
+hypergeometric/SMOY
+hyperglycaemia/WSM
+hypergolic Adjective
+hypergranulation/M Noun: uncountable
+hypergravity/M Noun: uncountable
+hypericum/MS
+hyperimmune Adjective
+hyperimmunized
+hyperinflammation/M Noun: uncountable
+hyperinflation/SM
+hyperinstrument/SM
+Hyperion/M
+Hyperionian
+hyperionic
+hyperionism/SM
+hyperkalaemia/MW
+hyperkeratoses
+hyperkeratosis/M
+hyperkineses
+hyperkinesis/M
+hyperkinetic/SMY
+hyperlink/SDGM
+hyperlipaemia/WSM
+hyperlipidaemia/SMW
+hyperlocal Adjective
+hyperloop/SM
+hypermagnesaemia/MW
+hypermarket/MS
+hypermedia/M Noun: uncountable
+hypermethylated
+hypermethylation/SM
+hypermetropia/WSM
+hypermnesia/SM
+hypermobility/M Noun: usually uncountable
+hypermutable
+hypermutation/SM
+hypernatraemia/SMW
+hypernuclear
+hypernuclei/M Plural of hypernucleus
+hypernucleus/M
+hypernym/SM
+hyperon/SMW
+hyperonym/SM
+hyperopia/SM
+hyperopic/Y
+hyperparasite/SMW
+hyperparasitism/SM
+hyperparathyroid Adjective
+hyperparathyroidism/SM
+hyperphagia/SM
+hyperpigmentation/M Noun: usually uncountable
+hyperplane/MS
+hyperplasia/SM
+hyperplastic
+hyperplasticity/M Noun: uncountable
+hyperpolarisation/MS
+hyperpolarise/GSD
+hyperprolactinaemia/M Noun: usually uncountable
+hyperproliferative/Y
+hyperreactivity/SM
+hyperreal/SM
+hyperrealism/SM
+hyperrealist/WSM
+hyperreality/SM
+hyperresponsiveness/M Noun: uncountable
+hypersaline Adjective
+hypersensitive/PY
+hypersensitivity/MS
+hypersexuality/M Noun: usually uncountable
+hypersomnia/SM
+hypersomnolence/M Noun: uncountable
+hypersonic/Y
+hypersonics/M Noun: uncountable
+hyperspace/SM
+hypersphere/SM
+hypersthene/SM
+hypertension/SM
+hypertensive/SM
+hypertext/MS
+hypertextuality
+hyperthermia/WSM
+hyperthermophile/SM
+hyperthyroid Adjective
+hyperthyroidism/SM
+hypertonia/WSM
+hypertonicity/SM
+hypertrophy/WDGSM
+hyperventilate/GSnD
+hypervisor/SM
+hypethral
+hypha/OM
+hyphae/M Plural of hypha
+hyphen/MdnS
+hyphenate/SGDM
+hyphenator/SM
+hyphy/MT
+hypnagogia/WM
+hypnobirth/GM
+hypnogogia/WM
+hypnopaedia/M Noun: uncountable
+hypnophobia/MW
+hypnopompic
+hypnoses
+hypnosis/M
+hypnotherapy/MS3
+hypnotic/SMOY
+hypnotisability/M Noun: uncountable
+hypnotisable
+hypnotise/SGDRn
+hypnotism/MS
+hypnotist/MS
+hypnotizability/M Noun: uncountable
+hypnotizable
+hypnotize/DSGRn
+hypo/MDGS
+hypoactive Adjective
+hypoallergenic
+hypoallergenicity/M Noun: uncountable
+hypoblast/MSW
+hypocalcaemia/SMW
+hypocaust/SM
+hypocellularity/M Noun: uncountable
+hypocentre/SM
+hypochloraemia/MW
+hypochlorite/SM
+hypochondria/SM
+hypochondriac/MSO
+hypoconid/SM
+hypoconulid/SM
+hypocorism/SM
+hypocoristic/SM
+hypocotyl/SM
+hypocrisy/SM
+hypocrite/1wMS
+hypocycloid/MS
+hypocycloid/O^
+hypoderm/MSo
+hypoderma/MO
+hypodermata/M Plural of hypoderma
+hypodermes
+hypodermic/SMOY
+hypodermis/SM
+hypodiegetic Adjective
+hypoechoic Adjective
+hypogastria/MW
+hypogastrian
+hypogastrium/M
+hypogea/MO
+hypogean Adjective
+hypogene Adjective
+hypogeum/SM
+hypoglossal/SM
+hypoglycaemia/SM
+hypoglycaemic/SM
+hypogonadal
+hypogonadic/SM
+hypogonadism/SM
+hypogonadotropic
+hypogonadotropism/M Noun: uncountable
+hypogynous
+hypogyny/M
+hypoid/MS
+hypokalaemia/WSM
+hypolimnia/MO
+hypolimnion/M
+hypomagnesaemia/WM
+hypomania/SMW
+hypomethylation/SM
+hyponatraemia/SMW
+hyponym/SMW1
+hypoparathyroidism/MS
+hypophyseal Adjective
+hypophyses
+hypophysial
+hypophysis/M
+hypopigmentation/SM
+hypopituitarism/M Noun: usually uncountable
+hypopituitary Adjective
+hypoplasia/SM
+hyposensitise/SGDn
+hyposensitivity/SM
+hyposensitize/SGDn
+hypospadias/SM
+hyposplenism/M Noun: uncountable
+hypospray/SM
+hypostases
+hypostasis/M
+hypostasize/SGDJn
+hypostatic/OY
+hypostatize/SGDJn
+hypostome/SM
+hypostyle/SM
+hypotactic/Y
+hypotaxis/M
+hypotension/SM
+hypotensive/SM
+hypotenuse/SM
+hypothalami/M Plural of hypothalamus
+hypothalamic/Y
+hypothalamus/SMW
+hypothec/MS
+hypothecary/SM
+hypothecate/DGSn
+hypothermal/Y
+hypothermia/MSW
+hypotheses
+hypothesi ex hypothesi
+hypothesis/d8rM9QS
+hypothetical/SMY
+hypotheticality/SM
+hypothetico-deductive
+hypothyroid/W
+hypothyroidism/SM
+hypothyroidy/M Noun: uncountable
+hypotonia/SMW
+hypotonicity/SM
+hypotrophy/SM
+hypotropia/SM
+hypoventilation/M Noun: usually uncountable
+hypovolaemia/WM Noun: usually uncountable
+hypoxaemia/SM
+hypoxia/SMWO
+hypsodont/MS
+hypsodonty/M Noun: uncountable
+hypsography/WwM
+hypsometer/SM
+hypsometric/OY
+Hyracoidea Taxonomic order
+hyrax/MS
+Hyrcanus/M
+Hyrrokkin/M
+Hyrum/M
+Hyskier/M
+hyson/SM
+Hyssington/M
+hyssop/SM
+Hyssopus Taxonomic genus
+hysterectomize/DGS
+hysterectomy/SM
+hysteresis/M
+hysteria/MS
+hysteric/MSYO
+hysteron/SM
+hysterosalpingo-oophorectomy/SM
+Hythe/M
+Hyundai/M
+Hywel/M
+Hz
+i
+I
+I'd
+I'll
+I'm
+i's
+I've
+I-beam/SM
+I-chun
+i-mode
+i.e.
+i18n
+i3/M
+i5/M
+i7/M
+i9/M
+IA
+IAEA
+Iain/M
+iamb/SMW
+iambi
+iambic/SM
+Iamblichus/M
+iambus/SM
+Ian/M
+Iapetus/M
+iatrogenic
+Iban/M
+IBAN/SM
+Ibberton/M
+Iberia/M
+Iberian/SM
+Ibero-American/S
+Iberville/M
+ibex/SM
+ibid
+ibidem
+ibis/SM
+Ibiza/M
+Ibizan/SM
+Ible/M
+IBM/M
+Ibo/MS
+iBook/SM
+Ibrahim/M
+Ibrahima/M
+Ibrox/M
+Ibsen/M
+Ibsley/M
+Ibstock/M
+Ibstone/M
+ibuprofen/SM
+IC
+ICANN/M
+Icarus/M
+ICC/M
+ice-cold
+ice-skate/G
+ice/mSMJGD
+iceberg/SM
+iceblink/MS
+iceboat/MS
+icebound
+icebox/SM
+icebreaker/SM
+icecap/MS
+icefall/SM
+icehouse/SM
+Iceland/MRW
+Iceni/M
+icepack/SM
+icepick/SM
+ichneumon/SM
+ichnography/SM
+ichor/SM
+ichorous
+ichthyofauna/SM
+ichthyofaunae/M
+ichthyoid/SM
+ichthyolite/SM
+ichthyology/M3Sw
+ichthyophagous
+ichthyophagy/M Noun: uncountable
+ichthyoplankton/M Noun: uncountable
+ichthyornis
+ichthyosaur/SM
+ichthyosaurian/SM
+ichthyosaurus
+ichthyosis
+ichthyotic
+ichthys
+icicle/SM
+icing/M
+Ickburgh/M
+Icke/M
+Ickenham/M
+Ickey/M
+Ickford/M
+Ickham/M
+Ickleford/M
+Icklesham/M
+Ickleton/M
+Icklingham/M
+Ickworth/M
+icky/T
+iCloud/M
+ICM
+Icomb/M
+icon/SWM
+iconise/SGD
+iconize/SGD
+iconoclasm/MS
+iconoclast/MWS1
+iconographer/SM
+iconography/WMS1w
+iconolatry/SM
+iconology/w
+iconoscope/SM
+icosahedra/O
+icosahedron/M
+ICQ/SMGD
+icterus/MW
+ictorianises
+ictus/SM
+ICU
+icy/TPY
+ID'd
+ID'ing
+id/DMY
+ID/SM
+Ida/M
+Idaho/M
+Idbury/M
+Iddesleigh/M
+iddingsite/SM
+IDE/M
+Ide/M
+idea/MoSp
+ideal/SqQ-8s93M
+idealism/SM
+idealist/W1
+ideality/SM
+idealization/SM
+idealogical
+ideate/SGDn
+ideational
+Ideford/M
+idem
+idempotence
+idempotency/M Noun: uncountable
+idempotent/SM
+Iden/M
+identical/PY
+identifiable/U
+identification/MaS
+identified/Ua
+identify/SlDnRBG
+identity/MS
+ideogram/SM
+ideograph/WMS
+ideography/M
+ideologue/SM
+ideology/M31wS
+ideophone/SM
+ideosphere/MS
+ides
+Idina/M
+idioblast/MSW
+idiocracy/SM
+idiocy/SM
+idiolect/MS
+idiom/WSM1
+idiomaticness/M Noun: uncountable
+idiopathic/OY
+idiopathy/MS
+idiosyncrasy/SM
+idiosyncratic/Y
+idiot/1SMW
+idiotype/SM
+idle/DRTPSG
+Idle/M
+Idlicote/M
+Idmiston/M
+Ido/M
+idocrase/SM
+idol-worshipping
+idol/QqSs-89M
+idolater/SM
+idolator/SM
+idolatress/S
+idolatrous/Y
+idolatry/MS
+idose/SM
+Idridgehay/M
+Idsworth/M
+Idumea/M
+idyll/SMW13
+IEC
+IEE
+IEEE/M Initialism of Institute of Electrical and Electronics Engineers
+Iestyn/M
+if/D
+if/FS
+Ifan/MS
+Iffley/M
+iffy/TP
+Ifield/M
+Iford/M
+iftar
+Ifton/M
+Ifugao/SM
+Igbo/MS
+Iggy/M
+Ightenhill/M
+Ightfield/M
+Ightham/M
+igloo/MS
+Ignatius/M
+Ignatz/M
+igneous
+ignitable
+ignite/DASG
+igniter/SM
+ignition/MS
+ignitron/MS
+ignoble/YP
+ignominious/Y
+ignominy/SM
+ignorable
+ignoramus/SM
+ignorance/SM
+ignorant/SYP
+ignoratio
+ignorationes
+ignore/GDSR
+ignosticism/M Noun: uncountable
+ignotius
+ignotum
+Igor/M
+iguana/SM
+iguanodon/SM
+iguanodont
+ii
+iii
+IIRC Initialism of if I recall/remember correctly
+IJssel/M
+IJsselmeer/M
+Ike/M
+Ikea/M
+ikebana/M
+Iken/M
+Il-sung/M
+Ilachinski/M
+Ilam/M
+ilang-ilang
+Ilchester/M
+Ilderton/M
+Ile/M
+ilea/M
+ileitides
+ileitis/M
+ileostomy/SM
+ileum/M
+ilex/MS
+Ilford/M
+Ilfracombe/M
+ilia/M
+iliac
+Iliad/MS
+Ilich/M
+Ilídio/M
+ilium/M
+Ilium/M
+ilk
+Ilkeston/M
+Ilketshall/M
+Ilkley/M
+ill-advised
+ill-assorted
+ill-behaved
+ill-bred
+ill-conceived
+ill-considered
+ill-defined
+ill-disposed
+ill-equipped
+ill-fated
+ill-favoured
+ill-fitting
+ill-founded
+ill-gotten
+ill-humoured
+ill-informed
+ill-judged
+ill-mannered
+ill-matched
+ill-omened
+ill-prepared
+ill-proportioned
+ill-shaped
+ill-smelling
+ill-starred
+ill-suited
+ill-tempered
+ill-treat/D
+ill-treatment
+ill/YP
+illegal
+illegibly Adverb
+illegitimate/SGMDY
+illiad/SM
+illicit/P
+illimitability/MS
+illimitable/PZ
+Illington/M
+Illingworth/M
+Illinois/M
+illiquid
+illiquidity/M
+illiterate/P
+illocution/Sy
+Illogan/M
+illogical
+Illowsky/M
+Illston/M
+illude/SGD
+illume/GD
+illuminable
+illuminance/SM
+illuminant
+illuminate/DSGk
+Illuminati/M
+illuminati/M
+illuminator/SM
+illumine/DSVGn3
+illuminism
+illusion/ES
+illusion/MO
+illusionary
+illusionism/M
+illusionist/MSW
+illusive/PY
+illusory/PY
+illustrate/nGDvSV
+illustrated/U
+illustration/MO
+illustrator/MS
+illustrious/YP
+Illyria/M
+Illyrian/MS
+ilmenite
+Ilmington/M
+Ilminster/M
+Iloko/M
+Ilona/M
+Ilsey/M
+Ilsington/M
+Ilsley/M
+Ilston/M
+Ilton-cum-Pott/M
+Ilton/M
+iMac/SM
+image-maker/SM
+image/rGDyMSp
+imageable
+Imagen/M
+imagery/SM
+imagesetter/SM
+imaginable/U
+imaginableness
+imaginably/U
+imaginary/SPY
+imaginative/UY
+imaginativeness/M
+imaginativeness/U
+imagine/OlnSVuJDvGr
+imagined/U
+imagineer/SGDM
+imagism
+imagist/SMW
+imago/MS
+imam/MS
+imamate/MS
+Iman/M
+IMAP
+imbecile/MWS
+imbecility/SM
+imbed/SGDJ
+imbeddedness
+Imber/M
+Imbéry/M
+imbibe/RSDG
+imbibition
+Imbrian
+imbricate/SGDn
+Imbrium/M
+imbroglio/MS
+imbrue/SGD
+imbue/SGD
+IMDb/M
+IMF/M
+IMHO
+imidazole/SM
+imide/M
+imine/SM
+imitable/I
+imitate/DVGvunS
+imitative/P
+imitator/SM
+immaculacy/M
+immaculate/YP
+immanence/ZS
+immanency/SM
+immanent/Y
+immanentism/M
+immanentist/MS
+Immanuel/M
+immaterial/3
+immaterialism
+immaterialize/DGS
+immature/P
+immeasurability/M
+immeasurable/PY
+immediacy/SM
+immediateness/S
+immedicable
+immemorial
+immense/YPT
+immensity/SM
+immerse/SNbDGXr
+immersion/M
+immersive
+imminence/SM
+imminent/PY
+Immingham/M
+immiscibility
+immiscibly
+immitigable/Y
+immixture/M
+immobilism/M
+immodest
+immolate/DGnS
+immolator/MS
+immoral/3
+immoralism
+immortal
+immortalise/SGD
+immortalize/SGD
+immortelle/MS
+immovability/MS
+immovably
+immoveable
+immune/q-Q8
+immunity/SM
+immunoassay/MS
+immunobiology/Ww
+immunoblot/SGD
+immunochemistry
+immunocompetence
+immunocompetent
+immunocompromised
+immunocytochemistry
+immunodeficiency/SM
+immunodeficient
+immunofluorescence
+immunofluorescent
+immunogenetic/SO
+immunogenic
+immunogenicity/SM
+immunoglobulin/SM
+immunohistochemical/SMY
+immunohistochemistry/SM
+immunolabelling/SM
+immunology/3w1WMS
+immunomodulation/SM
+immunomodulator/SMZ
+immunopathologic/OY
+immunopathologist/SM
+immunopathology/SM
+immunoperoxidase/M Noun: usually uncountable
+immunopharmacology/M Noun: uncountable
+immunoprophylaxes
+immunoprophylaxis/M
+immunoprotective
+immunoprotectivity/M Noun: uncountable
+immunoreactive/SMY
+immunosenescence
+immunosorbent/SM
+immunosuppressant/SM
+immunosuppressed
+immunosuppression/M Noun: usually uncountable
+immunosuppressive/SM
+immunotherapy/SM
+immunotoxic Adjective
+immure/GDS
+immurement/MS
+immutable/P
+IMO
+Imola/M
+imp/DSGM
+impact/6VDG
+impaction/SM
+impactor/SM
+impair/rGLS
+impaired/U
+impala/M
+impale/DrGLS
+impalpability/MS
+impanel/SGD
+impark/SGDJ
+impart/Gn
+impassability/M Noun: usually uncountable
+impassable/P
+impasse/MulXbN
+impassibility/SM
+impassible/Y
+impassion/DG
+impassive/P
+impassivity/M Noun: usually uncountable
+impasto/MS
+impatiens/M
+impatient
+impeach/LR7
+impeachable/U
+impeached/U
+impeccability/SM
+impeccable/Y
+impecuniosity/M
+impecunious/PY
+imped/d
+impedance/MS
+impede/SR
+impedimenta/O
+impedit/M
+impel/RSGnD
+impend/GSD
+impenetrable/PY
+impenitency/MS
+imperative/PYSO
+imperator/O^
+imperatrices
+imperatrix/M
+imperceivable
+imperceptibility/MS
+imperceptive
+impercipience/M
+imperfect/gVP
+imperforate
+imperia/M Plural of imperium
+imperial/3SY
+Imperial/M
+imperialism/SM
+imperialist/W1
+imperialize/DGS
+imperil/DGLS
+imperio
+imperious/YP
+imperishability/M Noun: uncountable
+imperishable/PY
+imperium/SM
+impermanence/MS
+impermanency/M Noun: usually uncountable
+impermanent
+impermeable/Y
+impermissible
+imperscriptible
+impersonal/MSY
+impersonalise/SGDN
+impersonality/M Noun: usually uncountable
+impersonalize/SGDN
+impersonate/SGDn
+impersonator/MS
+impersonify/DGS
+impertinence/M
+imperturbability/MS
+imperturbable/Y
+imperturbableness/M
+impervious/PY
+impetiginous
+impetigo/MS
+impetrate/DGSn
+impetuosity/SM
+impetuous/PY
+impetuousity
+impetus/SM
+Imphal/M
+impi/MS
+imping/G
+impinge/LSD
+Impington/M
+impish/PY
+implacability/MS
+implacable/YP
+implant/7nr
+implantology/M Noun: uncountable
+implausibility/M Noun: usually uncountable
+implausibly
+implead/SGDJ
+implement/ADGSn
+implement/M
+implementability
+implementable/U
+implemented/U
+implementer/MS
+implicant/MS
+implicate/SDG
+implicit/YP
+implode/SNDGX
+implore/SkDG
+implosion/SM
+implosive
+imply/VuGvnh
+impolitic/P
+impoliticly
+imponderability
+imponderable/SPY
+import/ARGSD
+importable
+importance/SM
+important/Y
+importation/SM
+importunate/PSY
+importune/GDRS
+importunity/MS
+imposable
+impose/ASDG
+imposing/Y
+imposition/SM
+impossible/P
+impost/G
+imposthume/MS
+impostor/SM
+impostume/MS
+impotence/MSZ
+impotencies
+impoundment/SM
+impoverish/GLSDr
+impracticability/SM
+impracticable/P
+imprecate/GDSn
+imprecatory Adjective
+impregnability/MS
+impregnable/PY
+impregnant/SM
+impregnate/DBSGn
+impresario/MS
+imprescriptible
+impress/DXVLbNvur
+impressibility/SM
+impression/MB3
+impressionability/SM
+impressionable/P
+impressionism/MS
+impressionistic
+impressive
+impressiveness/MS
+imprest/SM
+imprimatur/MS
+imprint/SM
+imprison/LSd
+improbable/P
+improbity/M Noun: usually uncountable
+impromptu/SM
+impropriate/DGS
+impropriation/MS
+impropriator/MS
+improvability/SM
+improvable
+improvableness/M Noun: uncountable
+improve/DqQ9Ls8r
+improvership
+improvidential
+improvisation/oMO
+improvisator/MS
+improvisatore/M
+improvisatory/O
+improvisatrice/MS
+improvvisatore/M
+improvvisatrice/M
+impudence/MS
+impudent/Y
+impudicity/SM
+impugn/RBGSLD
+impuissance/M
+impuissant
+impulse/MVuv
+impulsion/SM
+impulsive/P
+impulsivity/M Noun: usually uncountable
+impunity/SM
+impure/P
+imputable
+imputative
+impute/GDnS
+in-between
+in-car
+in-depth
+in-flight
+in-house
+in-joke/SM
+in-law/SM
+in-line
+in-phase
+in-service
+in-store
+in-tray/SM
+in/ASF
+in/D
+inaccurate
+inactive
+inadaptive
+inadmissible/Z
+inadvertence/SM
+inadvertency/MS
+inadvertent/Y
+inalienability/SM
+inalienable/Y
+inalterability/M Noun: uncountable
+inalterableness
+inalterably
+inamorata/SM
+inamorato/MS
+inane/TYP
+inanga/MS
+Inangahua/M
+inanimate/N
+inanition/M
+inanity/MS
+Inanna/M
+inapparent/Y
+inappeasable
+inappetence/SM
+inappetent
+inapplicable/Z
+inapposite/Y
+inappositeness/M
+inappreciation/MS
+inapproachable
+inappropriacy
+inappropriate/P
+inapt/P
+inaptitude/SM
+inarch/SGDJ
+inarticulate/P
+inasmuch
+inaugural/SM
+inaugurate/SDGn
+inaugurator/MSZ
+inauspiciousness
+inauthentic
+inauthenticity/M Noun: usually uncountable
+inband
+inboard
+inborn
+inbound
+inbox/SGDM
+inbreathe/DG
+inbred
+inbreed/SGJ
+inbreeding/M
+inbuilt
+Inc.
+inca/SM
+Inca/SM
+Incaic
+incalculable/PY
+incall/SM
+incandesce/SGD
+incandescence/SM
+incandescent/SY
+incant/nG
+incantatory Adjective
+incapably
+incapacitant/MS
+incapacitate/SDGn
+incarcerate/DnSG
+incarcerator/MS
+incarnadine/DSG
+incarnate/DGASn
+incarnational
+incasement/MS
+incautiousness
+Ince/M
+incendiarism/M
+incendiary/SM
+incensation/MS
+incense/GMDS
+incensory/MS
+incentive/ESM
+incentivise/D
+incentivize/D
+incept/DVSGv
+inception/MS
+inceptor/SM
+incertae incertae sedis
+incessancy/M
+incessant/Y
+incessantness/M
+incest/SM
+incestuous/PY
+Inch/M
+inch/SMGD
+Inchbald/M
+Inchcruin/M
+Incheon/M
+Inchinnan/M
+Inchlonaig/M
+inchoate/GDS
+inchoative/SM
+Inchon/M
+Inchture/M
+inchworm/MS
+incidence/MFS
+incident/Fo
+incident/SMY
+incidental/F
+incidental/S
+incinerate/SnDG
+incinerator/SM
+incipience/MSZ
+incipiency/M
+incipient/YM
+incipit/SM
+incircle/SM
+incise/XVGvDNSu
+incision/MO
+incisive/P
+incisor/MS
+incisurae/M
+incisure/SM
+incitation/M
+incite/DGXRLS
+inclinable
+incline/EDSnG
+incliner/SM
+inclining/M
+inclose/DGS
+inclosure/MS
+includable
+include/SGXNvVDu
+includeable
+inclusion/M
+inclusive/P
+inclusivity
+incog
+incognita/M
+incognito/SM
+incognizance/M
+incognizant
+incoherency/M Noun: usually uncountable
+incombustibility/M Noun: uncountable
+income/M
+incommensurability/MS
+incommensurables
+incommensurably
+incommensurateness/M
+incommode/GD
+incommunicability/M
+incommunicableness/M
+incommunicably
+incommunicado
+incommunicative/Y
+incommunicativeness/M
+incommutably
+incomparable
+incompatibly
+incompetent/SM
+incompletion/M
+incomprehensibly
+incomputable
+inconceivability/SM
+inconceivable/P
+incondensable
+incongruence/MS
+incongruousness/M Noun: usually uncountable
+inconsequent
+inconsequentiality/SM
+inconsequentialness/M Noun: uncountable
+inconsiderable/P
+inconsiderate/N
+inconsolable/PY
+inconsonant/Y
+incontestability/MS
+incontestable/Y
+incontinent
+incontrovertible/Y
+inconvenience/DG
+inconvertible/Z
+incoordination/SM
+incorporable
+incorporate/DANGS
+incorporate/S
+incorporated/EU
+incorporative
+incorporator/MS
+incorporeality
+incorporeity/SM
+incorrect/7PY
+incorrigibility/SM
+incorrigible/PSY
+incorrodible
+incorruptible/SY
+incorruption/M Noun: usually uncountable
+Incoterm/SM
+incoterm/SM
+incrassate
+increasable
+increase/Jkr
+incredible/P
+incredulous/c
+increment/NMSDGo
+incremental/3
+incrementalism/SM
+increta
+incriminate/SDnyG
+incrust/DGS
+incrustation/MS
+incrustment/MS
+incubate/DSGVn
+incubator/SMZ
+incubi/M
+incubus/M
+incudes
+inculcate/SDGn
+inculcator/MS
+inculpate/DGS
+inculpation/MS
+inculpatory Adjective
+incumbency/MS
+incumbent/SM
+incunable/MS
+incunabula/M
+incunabulum/M
+incur/GS7lD
+incurability/M Noun: uncountable
+incurable/SM
+incuriam
+incuriosity/M Noun: uncountable
+incurious/PY
+incurrable
+incurrent
+incursion/SM
+incursive
+incurvate/Dn
+incurve/DGS
+incus/S
+incuse/DGM
+Ind.
+indaba/MS
+indebted/P
+indeclinable
+indecomposable
+indecorum/M Noun: usually uncountable
+indeed
+indefatigability/SM
+indefatigable/PY
+indefeasibility/MS
+indefeasible/Y
+indefectible
+indefensibility/M Noun: uncountable
+indefensibly
+indefensive
+indefinable/SPY
+indefinite/PSY
+indehiscence
+indehiscent
+indelibility/M
+indelible/Y
+indemnify/DnSGr
+indemnity/MS
+indemonstrably
+indent/Dnr
+indention/SM
+indentor/MS
+indenture/SGDM
+Independence/M
+independency/SM
+Independent/M
+independent/SMY
+indescribability/SM
+indescribable/YPS
+indestructible/YP
+indeterminable/Y
+indeterminacy/SM
+indeterminism/SM
+indeterminist/SMW
+index-linked
+index-linking
+index/MnG7DRw
+India/M
+Indiaman/M
+Indiamen/M
+Indian/SM
+Indiana/M
+Indianapolis/M
+Indianize/DGS
+Indianola/M
+Indic/M
+indican/M Noun: usually uncountable
+indicant/SM
+indicate/VnSGvD
+indicative/SM
+indicator/MSZ
+indices
+indicia/M
+indict/LSD7Gr
+indiction/MS
+indie/SM
+indifferentism/M Noun: usually uncountable
+indifferentist/SM
+indigence/SM
+indigene/SM
+indigenous/YP
+indigent/YSM
+indigestibility
+indigestibly
+indigestion/M
+indigestive
+indignant/Y
+indignation/SM
+indigo/SM
+indinavir/M
+Indio/M
+Indira/M
+indirect/GP
+indiscernibility/SM
+indiscernibly
+indiscipline/D
+indiscrete/Y
+indiscriminate/PY
+indispensability/MS
+indispensable/PSY
+indisputability/M Noun: uncountable
+indisputable/P
+indissolubility/M Noun: uncountable
+indissoluble/YP
+indistinct/P
+indistinctive/YP
+indistinguishability/SM
+indistinguishable/P
+indite/SGD
+indium/M
+individual/sY38Q-9MqS
+individualise/k
+individualism/MS
+individualist/1W
+individuality/MS
+individualize/k
+individuate/GnDS
+indivisible/SPY
+Indo-Aryan/SM
+Indo-China/M
+Indo-Chinese Adjective
+Indo-European/SM
+Indo-Germanic/S
+Indo-Iranian
+Indo-Malayan
+Indo-Malaysian
+Indo-Pacific
+Indo-Portuguese
+indocene
+Indochina/M
+indochinite/SM
+indocile Adjective
+indocility/M Noun: usually uncountable
+indoctrinate/nGSD
+indoctrinator/SM
+indole/SM
+indolence/SM
+indolent/Y
+Indology/3w
+indomethacin/M
+indomitable/PY
+Indonesia/M
+Indonesian/SM
+indoor
+Indra/M
+Indrani/M
+indraught/M
+indri/MS
+indubitable/YP
+induce/nRuDLGVSbv
+inductance/SM
+inductee/MS
+inductive/P3
+inductivism/M Noun: usually uncountable
+inductivity/SM
+inductor/MS
+indue/SGD
+indulge/cGDS
+indulgence/cMS
+indulgent/c
+indulgent/Y
+indulger/SM
+indult/MS
+induna/MS
+indurate/DGSn
+indurative
+Indus/M
+indusia/MO
+indusium/M
+industrial-size/D
+industrial-strength
+industrial/8Q3-qSP
+industrialised
+industrialism/SM
+industrious/PY
+industry/oMSG
+indwell/GSr
+indwelt
+Indy/SM
+inebriate/nGDS
+inebriety/SM
+inedibility/M Noun: uncountable
+inedible
+ineducability/M Noun: uncountable
+ineducable
+ineffability/MS
+ineffable/PY
+ineffaceability/M Noun: uncountable
+ineffaceably
+ineffectuality/M Noun: uncountable
+inégales
+inegalitarian/SM
+inelastic/Y
+inelasticity/M Noun: usually uncountable
+ineligibly
+ineliminable
+ineluctability/M Noun: uncountable
+ineluctable/Y
+ineludible
+inept/PY
+ineptitude/MS
+inequable
+inequation/SM
+inequitable/Z
+inequivalent/Y
+inequivalve/SM
+ineradicable/Z
+inerrancy/M Noun: usually uncountable
+inerrant/3
+inert/PY
+inertia/OoMSp
+Inês/M
+inescapable/Y
+inescutcheon/MS
+inessential
+inestimable/Y
+inestimableness/M Noun: uncountable
+inevitability/MS
+inevitable/YP
+inexact/PY
+inexhaustibility/M Noun: uncountable
+inexhaustible/YP
+inexistence/M Noun: usually uncountable
+inexistency/M
+inexistent
+inexorability/M Noun: usually uncountable
+inexorable/YP
+inexpedience/M Noun: usually uncountable
+inexpedient/Y
+inexpense
+inexpiably
+inexplicability/M Noun: uncountable
+inexplicable/PY
+inexplicit/PY
+inexpressibility/M Noun: uncountable
+inexpressible/SP
+inexpugnable
+inextricable/Y
+infall/SMG
+infallen
+infallible
+infamous/Y
+infamy/SM
+infancy/SM
+infant/SM
+infanta/MS
+infante/MS
+infanticide/SMO
+infantile
+infantilise/SGDN
+infantilism/M Noun: usually uncountable
+infantility/SM
+infantilize/SGDN
+infantry/mMS
+infarct/SM
+infarction/SM
+infatuate/DSGn
+infauna/O
+infeasibility/SM
+infeasible/Z
+infect/EDGAS
+infectee/SM
+infecter/SM
+infection/EMSA
+infectious/YP
+infective
+infectivity/SM
+infector/SM
+infectress/SM
+infectum/M
+infectuous
+infecture/M
+infecund
+infecundity/SM
+infeed
+infelicitous/Y
+infell
+infer/DS7G
+inference/GSM
+inferencer
+inferential/Y
+Inferior/M
+inferior/MYS
+inferiority/SM
+infernal/Y
+inferno/MS
+inferrable
+infertile
+infest/nSDGR
+infeudation
+infibulate/SGDN
+infidel/MS
+infighting/M
+infill/GM
+infiltrate/V
+infiltrator/MS
+infinite/VZ
+infinitesimal/YS
+infinitive/MSO
+infinitude/SM
+infinitum
+infinity/MS
+infirm/SGDY
+infirmarer/SM
+infirmary/SM
+infirmity/SM
+infix/nGDMS
+inflame/SGDr
+inflammableness/M
+inflammation/SM
+inflammatory/SMY
+inflatable/SM
+inflate/DSGnr
+inflated/c
+inflation/EMyS
+inflationism/M Noun: uncountable
+inflationist/SM
+inflaton/SM
+inflator/SM
+inflect/7GxSVD
+inflection/SMp
+inflexed
+inflexion/SMp
+inflexional/Y
+inflict/DGSR7
+infliction/MS
+inflictor/MS
+infliximab/M Noun: uncountable
+inflorescent
+inflow/GM
+influence/RDGMS
+influent/MS
+influential/Y
+influenza/MSD
+influenzoid
+influx/SM
+info/SM
+infobox/SM
+infodemic/SM
+infographic/SM
+infolded
+infomania/M Noun: uncountable
+infomaniac/SM
+infomediary/SM
+infomercial/SM
+infonaut/SM
+inform/aNGDS
+inform/O
+informatics
+information/E
+informational/Y
+informative/UY
+informativeness/S
+informatory Adjective
+informer/SM
+infosec/M Noun: uncountable
+infotainment/MS
+infotech/M Noun: uncountable
+infowar/M Noun: uncountable
+infra-red/M
+infra/SM
+infraclass/SM
+infract/SGD
+infraction/SM
+infractor/SM
+infradian Adjective
+infralapsarian/MS
+infralegion/SM
+infrangible
+infraorder/SM
+infrared/SM
+infrarenal
+infrasonic
+infrasound/SM
+infrastructure/MSO
+infrequent
+infringe/Lr
+infructescence/SM
+infula/M
+infulae/M
+infundibula/M
+infundibular
+infundibulum/M
+infuriate/SGDkn
+infuse/Rb
+infusibility/M Noun: uncountable
+infusible/P
+infusoria/M
+Ingatestone/M
+ingather/Sd
+Ingbirchworth/M
+ingeminate/DGS
+ingenious/YP
+ingénue/SM
+ingenue/SM
+ingenuity/MS
+ingenuous/YP
+ingenuously/E
+Ingersoll/M
+ingest/DGbVS
+ingestion/SM
+Ingestre/M
+Ingham/M
+ingle/SM
+Ingleby/M
+inglenook/SM
+Inglesham/M
+Ingleton/M
+Inglewood/M
+Inglis/M
+Ingo/M
+ingoing
+Ingol/M
+Ingoldisthorpe/M
+Ingoldmells/M
+Ingoldsby/M
+ingot/SM
+ingraft/SGDJ
+ingrain/h
+Ingram/M
+ingrate/SM
+ingratiate/nGDSk
+Ingrave/M
+ingravescence/M
+ingravescent
+ingredient/MS
+ingress/SM
+ingression/SM
+ingressive/SM
+Ingrid/M
+Ingthorpe/M
+inguinal/Y
+ingurgitate/DGSn
+Ingworth/M
+inhabit/7d
+inhabitability/M Noun: uncountable
+inhabitable/U
+inhabitance
+inhabited/U
+inhalant/SM
+inhalation/MO
+inhalator/SM
+inhale/nR
+inhere/DSG
+inherence/M Noun: usually uncountable
+inherent/Y
+inherit/EdS
+inheritability/M Noun: uncountable
+inheritable/P
+inheritance/EMS
+inheritor/SM
+inheritress/SM
+inheritrix/MS
+inhesion/SM
+inhibin/SM
+inhibit/SVdyXNr
+inhibition/M
+inhibitor/MS
+inhold/JG
+inhomogeneous/Y
+inhospitability
+inhospitable/P
+inhospitality
+inhuman
+inhumane
+inhume/SGD
+inimical/Y
+inimitable/YP
+iniquitous/PY
+iniquity/SM
+Inishail/M
+Inishrush/M
+initial/GQs-89qDSY
+initialise/ASKDG
+initialism/SM
+initialize/ASnDG
+initialler/SM
+initialness/M Noun: uncountable
+initiand/SM
+initiate/DGSnVy
+initiative/SM
+initiator/SM
+initio ab initio
+inject/SGDV
+injectable/SM
+injection/MS
+injector/SM
+injunct/SGD
+injunctive/SM
+injure/RDGSZ
+injurious/PY
+ink/GRZMSD
+Inkberrow/M
+inkberry/SM
+inkblot/MS
+inkhorn/SM
+inkjet/SM
+inkling/SM
+Inkpen/M
+inkstand/SM
+Inkster/M
+Inktomi/M
+inkwell/SM
+inky/TP
+inlaid
+inland/r
+inlay/GS
+inlet/MS
+inlier/MS
+inline/SGD
+inly/G
+Inman/M
+inmate/SM
+inmost
+inn/GMJS
+Inn/M
+innards
+innate/PY
+innatism/M Noun: uncountable
+Innellan/M
+inner-city
+Inner/M
+inner/SM
+Innerleithen/M
+Innerleven/M
+innermost
+innersole/SM
+innerspring
+innervate/SGDn
+Innerwick/M
+Innes/M
+innie/SM
+inningses
+Innishael/M
+innit
+innkeeper/MS
+innocence/SM
+innocent/TYSM
+innocuous/PY
+innominate/SM
+innovate/VnGuDSyv
+innovation/OM^
+innovator/SM
+Innsbruck/M
+Innsworth/M
+innuendo/DGMS
+innuendoes
+innumerability/M
+innumerable/PY
+innumerate/B
+innutrition
+innutritious
+inobservance/SM
+inocula
+inoculable
+inoculant/SM
+inoculate/VGDSn
+inoculator/MS
+inoculum
+inodorous
+inoperable
+inoperative
+inoperativeness
+inopportune/P
+inordinate/YP
+inorganic/Y
+inosculate/SGDN
+inosine/SM
+inositol/SM
+inotropy/W
+Inoue/M
+Inouye/M
+inpatient/MS
+inpouring
+input/SGDMR
+inquest/SM
+inquiline/MS
+inquire/kRDGZ
+inquiry/SM
+Inquisition/M
+inquisition/SOoM
+inquisitive/PY
+inquisitor/OoMS
+inquorate
+inroad/SM
+inrush/GSM
+ins.
+insalubrious
+insalubrity/MS
+insane
+insatiability/MS
+insatiable/PY
+insatiate
+inscape/MS
+Insch/M
+inscribable
+inscribe/RNX
+inscription/SMO
+inscriptive
+inscrutability/SM
+inscrutable/YP
+Insecta Taxonomic class
+insectan
+insectarium/SM
+insectary/SM
+insecticide/MSO
+insectile
+Insectivora Taxonomic order
+insectivore/MS
+insectivorous
+insectoid/SM
+insecure/Y
+inseminate/nDSG
+insensate/YP
+insensitiveness/M
+insentience/SM
+inseparability/MS
+inseparable/PS
+insert/DGAS
+insertable
+inserter/MS
+insertion/O
+insertion/SMA
+inset/GDR
+Insh/MS
+inshallah
+inshore
+inside-out
+inside/SMR
+insidious/PY
+InSight InSight Lander (Mars)
+insight/6j
+insightfulness
+insigne's
+insignia/MS
+insignificancy/M
+insincere/Y
+insinuate/DGknSV
+insinuator/SM
+insipid/Y
+insipidity/SM
+insipidness/M Noun: uncountable
+insipidus
+insist/DSGk
+insistence/MS
+insistency/SM
+insistent/Y
+Inskip-with-Sowerby/M
+insofar
+insolation/M
+insole/MS
+insolence/SM
+insolent/SMY
+insolubility/SM
+insolubilize/DGS
+insoluble/PSMY
+insolvent/SMY
+insomnia/SM
+insomniac/SM
+insomuch
+insouciance/SM
+insouciant/Y
+inspan/DGS
+inspect/AGSD
+inspect/k
+inspection/SMO
+inspective
+inspector/SMO
+inspectorate/MS
+inspectorship/MS
+inspiratory Adjective
+inspire/MxnGkrD
+inspissate/DGSn
+inst/g
+Instagram/M
+instal/S
+install/ADGS
+installable
+installant
+installation/SMA
+installer/MS
+instalment/MS
+instance/SGDM
+instant/SYMP
+instantaneous/PY
+Instantbird/M
+instanter
+instantiate/SGDn
+instar/SM
+instate/ALSDG
+instauration/M
+instaurator/MS
+instead
+instep/SM
+instigate/SVnDG
+instigator/MS
+instil/SRnGD
+instilment/SM
+instinct/vVMS
+instinctual/Y
+institute/VGRxDMS
+institution/SM
+institutional/Q8-q3
+institutionalism/SM
+Instow/M
+instruct/VvuGxDS
+instruction/SM
+instructive/P
+instructor/SM
+instructorship/SM
+instrument/YGoSDnM3
+instrumental/3SP
+instrumentalise/SGD
+instrumentalism/SM
+instrumentality/SM
+instrumentalize/SGD
+instrumentarium/M
+instrumentary
+insubstantiality/SM
+insufferable/YP
+insufficiency/SM
+insufflate/SGDN
+insufflator/SM
+insula/M
+insulae/M
+insulant/SM
+insular/Y
+insularity/MS
+insulate/DSnG
+insulator/MS
+insulin/MS
+insult/DGkSr
+insuperability/SM
+insuperable/Y
+insupportable/PZ
+insurable/U
+insurance/FMSA
+insure/DRSG
+insurgence/ZSM
+insurgency/SM
+insurgent/SM
+insurmountable/Y
+insurrection/3MS
+insurrectionary/SM
+insusceptible
+inswing/GR
+intact/P
+intaglio/SMGD
+intake/SM
+intangible/M
+intarsia/SM
+integer/MSn
+integrability/M Noun: usually uncountable
+integrable
+integral/SMY
+integrality/SM
+integrand/SM
+integrant/MS
+integrase/SM
+integrate/EADSGN
+integration/AME
+integrationist/SM
+integrations/E
+integrative
+integrator/MS
+integrin/SM
+integrity/MS
+integument/SMO
+integumentary
+Intel/M
+intel/M Noun: uncountable
+intellect/SM
+intellectible
+intellection/SM
+intellective/Y
+intellectual/3Q8YPSM
+intellectualism/SM
+intellectualistic
+intellectuality/SM
+intelligence/MSr
+intelligent/UY
+intelligential
+intelligentsia/MS
+intelligibility/SM
+intelligible/UY
+intelligibleness/M Noun: uncountable
+Intelsat/M
+intemperance/SM
+intemperate/P
+intend/uhViv
+intendancy/MS
+intendant/MS
+intended/U
+intendedness/M Noun: uncountable
+intendment/SM
+intense/P
+intensify/RnDSG
+intension/Oo^
+intensity/MS
+intensive/PS
+intensivist/SM
+intent/YPS
+intention/DSoM
+intentional/UY
+intentionalism/M Noun: uncountable
+intentionality/SM
+intentive/Y
+inter-agency
+inter-allied
+inter-class
+inter-modal
+inter-personal
+inter-urban
+inter/ELDG
+inter/S
+interact/SVDGvu
+interactant/SM
+interaction/SMO3
+interactionism/M Noun: uncountable
+interactivity/M Noun: usually uncountable
+interactome/SM
+interactomic
+interactomics/M Noun: uncountable
+Interamnia/M
+interarticular
+interatomic
+interaxial
+interbank
+interbed/DS
+interbred
+interbreed/GS
+intercalary
+intercalate/DGVSn
+intercase
+intercaste
+intercede/GSDr
+intercellular
+intercensal
+intercept/GSD
+interception/MS
+interceptive
+interceptor/SM
+intercession/MSO
+intercessor/SMZ
+interchain
+interchange/SlGBDrM
+interchangeability/SM
+interchangeable/P
+InterCity/M
+intercity/SM
+interclass
+intercohort
+intercollegiate
+intercolonial
+intercolumnar
+intercolumniation/SM
+intercom/MS
+intercommunicate/DGnS
+intercommunion/SM
+intercommunity/M Noun: uncountable
+interconnect/GDiS
+interconnected/P
+interconnection/SM
+interconnectivity/M Noun: usually uncountable
+intercontinental/Y
+interconversion/SM
+interconvert/SGD
+interconvertible
+interconvertion/M
+intercool/DR
+intercorrelate/Dn
+intercostal/YSM
+intercountry
+intercourse/MS
+intercrater Adjective
+intercrop/SGD
+intercross/DSG
+intercrural
+intercultural
+interculturalism/SM
+intercurrent/SM
+intercut/SG
+interdealer/SM
+interdenominational/Y
+interdental/Y
+interdepartmental/Y
+interdepend/SGD
+interdependence/SMZ
+interdependency/MS
+interdependent/Y
+interdict/DGMVS
+interdiction/SM
+interdictory
+interdigital
+interdigitate/SGD
+interdimensional/SM
+interdisciplinarity/SM
+interdisciplinary
+interest/EDhSMG
+interested/UY
+interesting/UY
+interestingness/M Noun: usually uncountable
+interethnic
+interface/rDMSGOJ
+interfaith/p
+interfemoral
+interfere/kRSGD
+interference/MS
+interferential
+interferometer/WSM
+interferometry/M Noun: uncountable
+interferon/SM
+interfertile
+interfile/SDG
+interfix/SGD
+interflow/DGS
+interfuse/DGS
+interfusion/SM
+intergalactic
+intergeneration/OoM
+interglacial/SM
+intergovernmental
+intergradation/MS
+intergrade/DGS
+intergrew
+intergroup Adjective
+intergrow
+intergrown
+intergrowth/SM
+interim/SM
+interindex
+interindustry
+interior/YMS
+interiorize/DGS
+interject/xGSD
+interjection/SM
+interjectory Adjective
+interknit/GS
+interlace/DGS
+interlacement/MS
+interlaid
+interlaminate/SGD
+interlanguage/SM
+interlap/DGS
+interlard/DSG
+interlay/SGr
+interlayering
+interleaf
+interleave/CGDS
+interleaver/SM
+interleukin/SM
+interlibrary
+interline/SDGJ
+interlinear/SM
+interlineation/MS
+interlingua/SMO
+interlinguistics
+interlining/M
+interlink/DSG
+interlinkage
+interlobular
+interlock/GSDr
+interlocution/SM
+interlocutor/MSZ
+interlope/SDRG
+interlude/MS
+intermarriage/MS
+intermarry/SGD
+intermeddle/DGS
+intermedia
+intermediacy/SM
+intermediary/MS
+intermediate/YnMPGDS
+intermediator/SM
+intermedium
+intermembrane
+intermenstrual
+intermesh/SGD
+intermetallic
+intermetrics
+intermezzi/M
+intermezzo/SM
+interminable/PY
+intermingle/DSG
+intermission/SM
+intermit/SGD
+intermittence/SZ
+intermittent/Y
+intermix/GSD7r
+intermixture/SM
+intermodal
+intermodulate/SDn
+intermodule/n
+intermolecular/Y
+intermuscular
+intern/oxDLG3S
+internal/Ps9SQ8q-
+internality/S
+internarial
+internasal
+internation
+international/3Q8-qS
+Internationale
+internationalism/MS
+internationality/SM
+internecine
+internee/SM
+internegative/SM
+Internet/M
+internet/MD
+internetwork/SGD
+interneural
+interneuron/SMO
+interneurone/SM
+internity/M Noun: uncountable
+interno-medial
+interno-median
+internode/SO
+internodial
+internodium
+internonce
+internship/SM
+internuclear
+internuncial
+internuncio/MS
+interoceanic
+interoceptive
+interoceptor/SM
+interocular
+interoffice
+interop/M Noun: uncountable
+interoperate/BDNSG
+interorbital
+interosseous
+interparietal
+interpellate/SGDn
+interpellator/SM
+interpenetrate/SGDNV
+interpenetrations
+interpersonal/Y
+interphase
+interplanetary
+interplant/SGD
+interplay/MGDS
+interpleader/MS
+Interpol/M
+interpolar
+interpolatable
+interpolate/DnSVG
+interpolator/MS
+interpose/SDGR
+interposition/SM
+interpositive/SM
+interpret/daAnS
+interpretability
+interpretable
+interpretation/AMa
+interpretation/O
+interpretative/Y
+interpreted/U
+interpreter/aMS
+interpretership/MS
+interpretive/Y
+interprocess
+interprocessor
+interprovincial
+interquartile
+interracial
+interramal
+interregional/Y
+interregna
+interregnum/MS
+interrelate/SnGihD
+interrelated/P
+interrelationship/SM
+interreligious
+interrogate/SGyvDVn
+interrogative/SM
+interrogator/MS
+interrogatory/SM
+interrupt/DGSbRV
+interruptibility/M Noun: uncountable
+interruption/MS
+interruptor/S
+interruptus
+intersect/GSD
+intersection/SMO
+intersectionalism/M Noun: uncountable
+intersectionality/SM
+intersegmental/Y
+interseptal
+intersession/SM
+intersex/SMD
+intersexual/Y
+intersexualism/M
+intersexuality/M Noun: uncountable
+interspace/DMSGJ
+interspecies
+interspecific/Y
+intersperse/DSG
+interspersion/SM
+interspinal
+interspinous
+interstadial
+interstage
+interstate/SM
+interstellar
+interstice/SM
+interstitial/SMY
+intersubjective/Y
+intersubjectivity/SM
+intersurvey
+intertask
+intertextual/Y
+intertextuality/SM
+intertidal/SM
+intertrack
+intertribal
+intertrigo/M Noun: uncountable
+intertwine/DSG
+intertwinement/MS
+intertwist/DGS
+interurban/SM
+interval/MSW
+InterVarsity/M
+interveinal
+intervene/SDGr
+intervenient/SM
+intervenor/SM
+intervention/OSM^3
+interventionism/MS
+intervertebral
+interview's/K
+interview/ADGS
+interviewee/MS
+interviewer/MS
+intervocalic/Y
+interwar
+interweave/SG
+Interweb/M
+interwiki/SMGD
+interwind/MSGJ
+interwork/SGD
+interwound
+interwove
+interwoven
+intestacy/MS
+intestate/SM
+intestine/SOoM
+intifada/SM
+intimacy/MS
+intimal
+intimate/rDYPGSn
+intimidate/DSkGyn
+intimidator/MS
+intinction/M
+intitule/DGS
+intl
+intolerable/PZ
+intonate/SGDN
+intone/xn
+intorsion's
+intoxicant/SM
+intoxicate/GDhnS
+Intoxilyser/SM
+intra
+intracellular/Y
+intracity
+intraclass
+intracohort
+intracompany
+intracranial/Y
+intractability/SM
+intractableness
+intractably
+intradepartmental
+intradermal/Y
+intradiegetic
+intrados
+intrafamily
+intraformational
+intragenerational/Y
+intraindividual
+intraindustry
+intraline
+intrametropolitan
+intramolecular/Y
+intramural/Y
+intramuscular/Y
+intranasal
+intranet/SM
+intransigence/MS
+intransigent/SMY
+intransitive/SP
+intrant/MS
+intranuclear
+intraocular
+intraoffice
+intraoperative
+intrapartum
+intraperitoneal
+intrapersonal
+intrapetiolar
+intraplate
+intrapreneur/SMO
+intraprocess
+intrapsychic/Y
+intrapulmonary
+intraregional/Y
+intrasectoral
+intrasexual
+intraspecies
+intraspecific
+intrastate
+intrathecal/Y
+intrathoracic
+intratissue
+intrauterine
+intravaginal
+intravasation
+intravascular/Y
+intravenous/SY
+intraventricular
+intravital/Y
+intrazonal
+intrench/DGS
+intrenchment/M
+intrepid/PY
+intrepidity/MS
+intricacy/MS
+intricate/PY
+intrigant
+intrigue/RSkDG
+Intrinseca/M
+intrinsic/YS
+intro/SM
+introduce/DSAnG
+introducer/SM
+introductory
+introgression/SM
+introgressive
+introit/SM
+introject/SGD
+introjection/SM
+intromission/SM
+intromittent
+intron/SMW
+introrse/Y
+introspect
+introspection/SM
+introspective/PY
+introversion/SM
+introversive
+introvert/GSDM
+introvertive
+Introvigne/M
+intrude/RuSDGVv
+intrusion/SM
+intrusive/P
+Intu/M
+intubate/SDGn
+intuit/vSVXu7N
+intuited
+intuiting
+intuitional
+intuitionalism/M Noun: uncountable
+intuitionalist/MS
+intuitionism/SM
+intuitionist/SMW
+intuitive/P
+intumesce/DGS
+intumescence/M
+intumescent
+inturned
+intussusception/MS
+Intwood/M
+Inuit/MS
+inulin/M Noun: usually uncountable
+inunction/SM
+inundate/nSG
+inure/GDS
+inurement/MS
+inurn/DGS
+inutile
+inutility
+invade/RXVuDGSN
+invaginate/DGS
+invagination/SM
+invalid/MdS
+invalidism/MS
+invaluable/P
+Invar/M
+invariableness/M
+invariably
+invariant/MY
+invasion/M
+invected
+invective/YPMS
+Invega/M
+inveigh/GSDr
+inveigle/RSGD
+inveiglement
+invent/uVyv
+invented/A
+invention/AMS
+inventive/P
+inventor/SM
+inventory/MDSG
+inventress/MS
+invents/A
+inventus
+Inver/M
+inveracity/SM
+Inverallan/M
+Inverallochy/M
+Inveraray/M
+Inverarity/M
+Inveravon/M
+Inverbervie/M
+Invercargill/M
+Inverchaolain/M
+Inverclyde/M
+Inveresk/M
+Inverforth/M
+Invergarry/M
+Invergordon/M
+Invergowrie/M
+Inverkeilor/M
+Inverkeithing-Dalgety/M
+Inverkeithing/M
+Inverkeithny/M
+Inverkip/M
+Inverleith/M
+Inverlussa/M
+Invermay/M
+Inverness/M
+inverse/Y
+inversive
+invert/RGSDb
+Inverurie/M
+invest/bBALE
+invest/GDS
+investee/MS
+investigable
+investigate/AGDSN
+investigation/MSO
+investigative
+investigator/SMZ
+investiture/SM
+investment/f
+investor/SM
+inveteracy/SM
+inveterate/Y
+inviability
+inviable
+invidious/YP
+invigilate/DG
+invigilator/MS
+invigorate/AGDSn
+invigorating/Y
+invigoration/MA
+invigorative
+invigorator/MS
+invincibility/MS
+invincible/PY
+Invincibles
+inviolability/MS
+inviolable/Y
+inviolacy/M
+inviolate/PYB
+inviscid
+invisible/PSZ
+invitation/OoM
+invitatory
+invite/GSknDr
+invitee/SM
+invocatory
+invoice's
+invokable
+invoke/RnDGS
+involucre/MSO
+involuntary/PY
+involute/SD
+involution/SM
+involutive
+involve/LGhSDr
+invulnerability/SM
+invulnerable/P
+inwale
+inward/YP
+Inwardleigh/M
+inwrap/SGDJ
+Inyo/M
+Io/M Moon of Jupiter
+Ioan/M
+Ioannidis/M
+iodate/SM
+iodic
+iodide/MS
+iodinate/DGS
+iodination/MS
+iodine/M Noun: usually uncountable
+iodise/GDS
+iodize/GDS
+iodoacetate/SM
+iodoform/M
+iodometry/WM
+iodophor/SM
+IoE/SM Initialism of internet of everything
+iofendylate/M Noun: uncountable
+IOGKF/M
+Ioke/M
+Iolanthe/M
+Iomega/M
+ion/1s9MWqQ8-S
+Iona/M
+Ionia/M
+Ionian/SM
+Ionic/M
+ionisable
+ionise/CRSGD
+ionium/M Noun: uncountable
+ionize/BCRSGD
+ionosphere/SMW
+ionotropy/W
+iontophoresis/M
+iophendylate/M Noun: uncountable
+IOPS
+iOS/M
+Iosco/M
+IoT
+iota/SM
+IoTization
+IOU
+Iowa/M
+Iowan/SM
+IP/S
+IPA
+iPad/SM
+ipecac/SM
+ipecacuanha/M
+Iphigenia/M
+iPhone/SM
+Iping/M
+iPod/SM
+ipomoea/S
+Ipplepen/M
+Ippolyts/M
+ippon/SM
+IPR
+ipratropium/M
+IPS
+Ipsden/M
+ipse
+ipsilateral
+ipsissima
+Ipsley/M
+ipso
+Ipstones/M
+Ipswich/M
+IPTV/M
+IQ/SM
+Iqaluit/M
+Iqbal/M
+IR
+Ir
+Ira/M
+irade/S
+Iran/M
+Irani/M
+Iranian/SM
+Iraq/M
+Iraqi/MS
+irascibility/SM
+irascible/Y
+irate/TYP
+Irby/M
+IRC/M
+Irchester/M
+IRCop/SM
+ire/6SDMG
+Ireby/M
+Iredell/M
+Ireland/M
+Ireleth/M
+Irenaeus/M
+Irene/M
+irenic/SOY
+irenicism
+irenicon/S
+Ireton/M
+Irian
+iridaceous
+irides
+iridescence/MS
+iridescent/Y
+iridium/M
+iridocene
+iridology/3
+Irigaray/M
+Iris
+iris/MS
+Irish/m5
+Irisher/MS
+Irishism/MS
+Irishize/DGS
+Irishry/M
+iritis
+irk/DSG
+irksome/PY
+Irkutsk/M
+Irma/M
+Irmo/M
+Irnham/M
+iroko/SM
+Iron/M
+iron/rwMSd1WP3
+ironclad/SM
+Irondale/M
+Irondequoit/M
+Irongate/M
+Irongray/M
+ironical/P
+ironing/M
+ironise/SGD
+ironize/SGD
+ironmaster/SM
+ironmonger/SM
+ironmongery/SM
+Ironside/MS
+ironside/SM
+ironstone/SM
+Ironton/M
+Ironville/M
+ironware/SM
+ironwood/MS
+ironwork/MSGr
+irony/MS
+Iroquoian/SM
+Iroquois/M
+irradiance
+irradiant
+irrational/S3Y
+irrationalism/SM
+irrationalities
+irrationalize/DGS
+Irrawaddy/M
+irrebuttable
+irreclaimably
+irreconcilability/MS
+irreconcilable/PYS
+irrecoverable/YP
+irrecuperable
+irrecusable
+irredeemability/M Noun: uncountable
+irredeemable/YSM
+irredentism/M Noun: usually uncountable
+irredentist/MS
+irreducibly
+irreflexive
+irrefragable/Z
+irrefrangible
+irrefutability/M Noun: uncountable
+irrefutable/Y
+irregardless
+irregular/MSY
+irrelative/Y
+irrelevance/SM
+irreligion/3
+irreligious/PY
+irremediable/PY
+irremissible
+irremovability/M Noun: uncountable
+irremovable/Z
+irreparable/YP
+irreplaceable/Z
+irreplaceableness
+irrepressible/Y
+irreproachability/M Noun: uncountable
+irreproachable/PY
+irreproducibility/M Noun: uncountable
+irreproducible
+irresistibility/M
+irresistible/P
+irresolute/P
+irresponsible/S
+irresponsive/P
+irretrievability/M Noun: uncountable
+irretrievable/Y
+irreverential
+irrevocability/M Noun: usually uncountable
+irrevocable/YP
+irrigable
+irrigate/GDnS
+irrigative
+irrigator/SM
+irritability/SM
+irritable/PY
+irritancy/MS
+irritant/SM
+irritate/BnSkhVDG
+irrotational
+irrupt/DGVS
+irruption/MS
+IRS/M
+Irstead/M
+Irthington/M
+Irthlingborough/M
+Irton/M
+Irtysh/M
+Irvin/M
+Irvine/M
+Irvinestown/M
+Irving/M
+Irvingite/MS
+Irvington/M
+Irwell/M
+Irwin/M
+is
+Isa/M
+Isaac/M
+Isaacson/M
+Isabel/M
+Isabela/M
+Isabella/M
+Isabelle/M
+isabgul
+Isadora/M
+Isaf/M
+isagogic/S
+Isaiah/M
+Isaltina/M
+Isanti/M
+isatin/M
+ISBN/SM Initialism of International Standard Book Number
+Iscariot/M
+ischaemia/W
+ischia/MO
+ischium/M
+Iscoyd/M
+ise
+Isel/M
+Isenbarger/M
+Isentress/M
+isentropic
+isethionate/SM
+isethionic
+Isfahan/M
+Isfield/M
+ish
+Ish-bosheth/M
+Isham/M
+Ishiguro/M
+Ishikawa/M
+Ishmael/MS
+Ishmaelite/MS
+Ishpeming/M
+Ishtar/M
+Isidore/M
+isinglass/SM
+Isis/M
+ISIS/M
+isiZulu
+Isl.
+isl.
+Islam/M
+Islamabad/M
+Islamdom
+Islamic
+Islamification/M
+Islamise/SGDN
+Islamism/SM
+Islamist/SMW
+Islamite/SMW
+Islamitish
+Islamize/SGDN
+Islamofascism/M Noun: uncountable
+Islamofascist/SM
+Islamophobe/SMW
+Islamophobia/M Noun: usually uncountable
+Island/M
+island/RSM
+Islandmagee/M
+Islands/M
+Islay/M
+Isle/MS
+isle/SM
+Isleham/M
+Isleornsay/M
+Islesteps/M
+islet/MS
+Isleworth/M
+Isley/M
+Islington/M
+Islip/M
+ism/SMC
+Ismael/M
+Ismaili/MS
+isn't
+ISO/MS
+isobar/SWM
+isobutene/MS
+isobutyl/SM
+isobutylene/MS
+isocheim/MS
+isochoric
+isochromatic
+isochronal/Y
+isochronous/Y
+isocline/SMWO
+Isocrates/M
+isocratic
+isocyanate/SM
+isocyanic
+isodine
+isodynamic
+isoechoic
+isoelectronic
+isoflavone/SM
+isogamete/SM
+isogamous
+isogamy/M Noun: uncountable
+isogeotherm/MOS
+isogloss/SMO
+isogonic
+isohel/MS
+isohyet/MS
+isolable
+isolatable
+isolate/SnDG
+isolation/3M
+isolationism/SM
+isolationist/W
+isolator/SM
+Isolde/M
+isoleucine/SM
+isomer/MSW
+isomerase/SM
+isomerisation/MS
+isomerise/DGS
+isomerism/SM
+isomerize/DGS
+isomerous
+isometric/YS
+isometry/SM
+isomorph/SWM1
+isomorphism/MS
+isomorphous
+isoperimetrical
+isophote/MS
+isopleth/SM
+isopod/SM
+Isopoda Taxonomic order
+isoprene/SM
+isoprenoid/SM
+isopropanol/SM
+isopropyl/SM
+isosceles
+isoseismal
+isosorbide/SM
+isospin/SM
+isostasy/M Noun: usually uncountable
+isostatic
+isothere/MS
+isotherm/MSOo
+isothiocyanate/SM
+isotonic
+isotope/SMW1Z
+isotopy/MS
+isotropy/SW1M
+isotype/SM
+ISP/SM
+ispaghul/M Noun: uncountable
+ispaghula/M Noun: uncountable
+ispell/M
+Israel/M
+Israeli/SM
+Israelite/SM
+ISS/M
+Issaquah/M
+Issells/M
+Isserlis/M
+Issey/M
+ISSN/SM Initialism of International Standard Serial Number
+issuably
+issuance/SM
+issuant
+issue/RG7DMSp
+Istanbul/M
+Isthmian
+isthmian/SM
+Isthmus
+isthmus/MS
+istle/M
+Isycoed/M
+it'd
+it'll
+it/D
+it/M4SU
+Italian-speaker/S
+Italian-speaking
+Italian/SM
+Italianate
+Italianism/MS
+Italianize/DGS
+Italic/M
+italic/Q8q-S
+Italiot/MS
+Italy/M
+Itanagar/M
+Itanium/M
+Itasca/M
+Itawamba/M
+itch/GM2ZzDS
+Itchen/M
+Itchenor/M
+Itchingfield/M
+Itchington/M
+itchy/TP
+item/qsQ98-SM
+iterate/nAGDSV
+iterative/Y
+iterator/SM
+Ithaca/M
+Ithacan
+ithyphallic
+itineracy/M
+itinerancy/S
+itinerant/SMY
+itinerary/SM
+itinerate/DS
+itineration/SM
+Ito/M
+iTouch/SM
+itself
+ITT
+Itteringham/M
+Itton/M
+ittyon/SM
+ITU
+iTunes/M
+ITV
+Itzá/M
+IU
+IUD/S
+IUPAC/M
+iv/M
+Ivan/M
+Ivana/M
+Ivanchuk/M
+Ivanhoe/M
+Ivanka/M
+Ivanov/M
+Ivanovic/M
+Ive/M
+Ivegill/M
+Iver/M
+ivermectin/SM
+Iversen/M
+Iverson/M
+Ives/M
+IVF
+Ivinghoe/M
+Ivo/M
+Ivonbrook/M
+Ivor/M
+Ivorian/SM
+Ivory
+ivory/SM
+Ivy
+ivy/DMS
+Ivybridge/M
+Ivychurch/M
+Iwade/M
+Iwamura/M
+Iwate/M
+Iwerne/M
+Iwo
+ix
+ixia/SM
+Ixion/M
+Ixworth/M
+Iyengar/M
+Izard/M
+izard/MS
+ize
+Izmir/M
+iZombie/M
+Izumi/M
+Izzard/M
+izzat/M
+J
+j
+j'adoube
+jab/GMDS
+Jabalpur/M
+Jaban/M
+Jabba/M
+jabber/SdrJM
+jabberwocky/M Noun: usually uncountable
+jabiru/SM
+jaborandi/MS
+jabot/SM
+Jabotinsky/M
+jacamar/SM
+jacana/SM
+jaçana/SM
+jacaranda/MS
+Jacen/M
+jacet/M hic jacet
+Jacewicz/M
+Jacinda/M
+jacinth/SM
+Jacinto/M
+jack-in-the-box/SM
+jack-o'-lantern/SM
+Jack/M
+jack/MDRSJG
+jackal/SM
+jackanapes/SM
+jackaroo/DGSM
+jackass/SGDM
+jackboot/MSD
+jackdaw/MS
+Jacke/M
+Jackendoff/M
+jackeroo/DGSM
+jacket/dSM
+Jackfield/M
+jackfruit/SM
+jackhammer/MSd
+Jackie/M
+jackknife/DGMS
+jackknives
+Jacklyn/M
+Jackman/M
+jackpot/MS
+jackrabbit/SM
+jacksie/SM
+Jackson/MS
+Jacksonville/M
+jackstay/SM
+jackstone/SM
+jackstraw/SM
+jacksy/SM
+Jacky/M
+Jacob/SM
+Jacobean/SM
+Jacobi/M
+Jacobian/SM
+jacobin/MS
+Jacobin/MS
+Jacobinic/OY
+Jacobinism/SM
+Jacobite/SMw
+Jacobitism/M Noun: usually uncountable
+Jacobsen/M
+Jacobson/M
+Jacobstow/M
+Jacobstowe/M
+Jacobus/M
+Jacoby/M
+jaconet/SM
+Jacopo/M
+Jacquard/M
+jacquard/MS
+Jacqueline/M
+jacquerie/SM
+Jacques-Cartier/M
+Jacques/M
+jacuzzi/SM
+Jada/M
+jade/iDMhS
+jaded/P
+jadeite/MS
+Jaden/M
+Jae-in/M
+Jae-ryong/M
+Jaeger/M
+Jaenisch/M
+Jafar/M
+Jaffa/MS
+Jag/MS
+jag/ZDhGiSM
+Jagaddipendra/M
+Jagdamba/M
+Jagex/M
+jagged/P
+Jagger/M
+jaggery/SM
+jaggy/TS
+Jagielski/M
+jaguar/MS
+jaguarundi/SM
+Jah/M
+Jahoda/M
+jail/RMDGS
+jailbird/SM
+jailbreak/GRSM
+jailbroke
+jailbroken
+Jaime/M
+Jain/SM3
+Jaina/M
+Jainism/M
+Jaipur/M
+Jair/M
+Jairus/M
+Jakarta/M
+Jake/SM
+Jakob/M
+Jakosky/M
+Jalalabad/M
+jalapeño/SM
+jalapeno/SM
+Jallianwala/M
+jalopy/SM
+jalousie/SM
+jam/MSp
+jam/UDG
+Jamaal/M
+Jamaica/M
+Jamaican/SM
+jamb/GMDS
+jambalaya/SM
+jamboree/SM
+Jameis/M
+James/M
+Jameson/M
+Jamestown/M
+Jamie/M
+Jamieson/M
+Jamil/M
+jammer/SM
+Jammu/M
+jammy/TSM
+Jamnia/M
+Jan/M
+Jana/M
+Janacek/M
+Jane/MS
+Janeiro/M
+Janell/M
+Janesville/M
+Janet/M
+Janete/M
+Janeway/M
+Jang/M
+jangle/DRSGYM
+Janice/M
+Janick/M
+Janie/M
+Janine/M
+Janis/M
+janissary/SM
+janitor/SMO
+janizary/MS
+jankers/M Noun: uncountable
+Jannaeus/M
+Jannice/M
+Janos/M
+Jansen/M3
+Jansenism/M Noun: uncountable
+Jansky/M
+Janssen/M
+January/SM
+Janumet/M
+Janus/M
+Januvia/M
+Janvier/M
+Jap/SM
+Japan/M
+japan/SGDM
+Japanese/M
+jape/GSMD
+Japheth/M
+Japhetic
+Japlish/M
+japonica/SM
+jar/MG6JSD
+Jarausch/M
+Jardine/M
+jardinière/MS
+Jardins-de-Napierville/M
+Jared/M
+jarful/SM
+jargon/SMW
+jargonistic
+jargonize/SGDJ
+jarl/MS
+Jarnsaxa/M
+jarosite/SM
+Jaroslav/M
+jarrah/MS
+jarring/YSM
+Jarrow/M
+Jaruzelski/M
+Jarvis/M
+jasmine/SM
+Jason/M
+Jasper/M
+jasper/MS
+Jastrow/M
+Jat/MS
+jato/MS
+Jaume/M
+jaundice/SMGD
+jaunt/Mz2GZS
+jaunty/TSM
+Java/M
+Javadoc/M
+Javan/MS
+Javanese/M
+JavaScript/M
+javelin/MS
+Javi/M
+Javier/M
+Jaw/M
+jaw/pMDGS
+Jawaharlal/M
+jawbone/SDM
+jawbreaker/SM
+jawline/SM
+Jay/M
+jay/MS
+Jaya/M
+Jayakumar/M
+Jayasekara/M
+Jayasuriya/M
+Jayawardena/M
+Jayawardenepura/M
+jaybird/MS
+Jaycee/SM
+Jaycox/M
+Jayendra/M
+Jayme/M
+Jaynes/M
+Jayson/M
+jaywalk/GDSRJ
+Jazeera/M
+jazz/S2GMDZ
+jazzman/M
+jazzmen/M
+jazzy/TY
+JCR/SM
+jct
+JDK/M Initialism of Java Development Kit
+jealous/YP
+jealousy/SM
+Jean-Luc/M
+Jean/M
+jean/SM
+Jeana/M
+Jeananne/M
+Jeanette/M
+Jeanie/M
+Jeanne/M
+Jeannie/M
+Jebb/M
+Jeconiah/M
+Jedburgh/M
+Jedediah/M
+Jedi/SM
+Jediism/M
+Jeep/SM
+jeep/SM
+jeer/MDJSGkr
+Jeeves/M
+jeez
+jeeze
+Jeff/M
+Jeffcock/M
+Jefferson/M
+Jeffersonian/SM
+Jeffersontown/M
+Jeffersonville/M
+Jeffery/MS
+Jeffes/M
+Jeffords/M
+Jeffrey/MS
+Jeffreyston/M
+Jeffries/SM
+jeggings
+jehad/SM3
+jehadism/M Noun: uncountable
+Jehle/M
+Jehoahaz/M
+Jehoash/M
+Jehoiachin/M
+Jehoiakim/M
+Jehoram/M
+Jehoshaphat/M
+Jehovah/M
+Jehovist/MS
+Jehu/M
+jejuna/MO Plural of jejunum
+jejune/PY
+jejunum/M
+Jekyll/M
+jell/DYGS
+jellaba/SM
+Jellinek/M
+jelly/DGMS
+jellybean/SM
+jellyfish/MS
+jellylike
+Jemal/M
+Jembrana/M
+Jemima/SM
+Jemison/M
+jemmy/MSGD
+Jen/MS
+Jena/M
+Jencks/M
+Jenkin/M
+Jenkins/M
+Jenkinson/M
+Jenks/M
+Jenkyn/M
+Jenna/M
+Jenner/M
+jennet/SM
+Jennette/M
+Jennie/M
+Jennifer/M
+Jennings/M
+Jenny/M
+jenny/SM
+Jensen/M
+Jenson/M
+Jeong/M
+jeopardy/MQ8S
+jerboa/MS
+Jereboam/M
+jeremiad/SM
+Jeremiah/M
+Jeremy/M
+Jerez/M
+Jeri/M
+Jericho/M
+jerk/zGZSMD2r
+jerkin/MS
+jerky/TPSM
+jeroboam/SM
+Jeroen/M
+Jerome/M
+Jérôme/M
+Jerónimos/M
+Jerrettspass/M
+jerrican/SM
+jerry-builder/SM
+jerry-building/M Noun: uncountable
+jerry-built
+jerry/MS
+jerrycan/SM
+jerrymander/SMd
+Jersey/M
+jersey/MS
+Jerusalem/M
+Jervas/M
+Jervis/M
+Jervois/M
+Jerzy/M
+Jespersen/M
+jess/MSGD
+Jessamine/M
+Jesse/M
+Jessica/M
+Jessie/M
+Jessop/SM
+jest/kMDRGS
+Jesuit/SM
+Jesuitical/Y
+Jesup/M
+Jesus/M
+jet-black/M Noun: uncountable
+jet-lag/GDM
+jet-propelled Adjective
+jet-set/DGR
+jet/MDGS
+Jeter/M
+jetfoil/SM
+Jethro/M
+jetliner/SM
+jetpack/SM
+jetport/SM
+jetsam/MS
+Jetson/SM
+Jetsun/M
+jetting/SM
+jettison/dSM
+jettisonable
+jetty/MS
+jeux les jeux sont faits
+Jevington/M
+Jew/MS
+jewel/RGSMD
+jewellery/M Noun: usually uncountable
+Jewess/SM
+Jewish/M
+Jewishness/M Noun: usually uncountable
+Jewitt/M
+Jewry/M
+Jezebel/SM
+jg Abbreviation of juga.
+Jharkhand/M
+Jhelum/M
+Jiafu/M
+Jianchangosaurus Taxonomic genus
+Jiang/M
+Jianghan/M
+Jiangsu/M
+Jiangxi/M
+Jiangyin/M
+jib-boom/SM
+jib/DMGSR
+jibe/SGDM
+Jibuti/M
+jiff/ZSM
+jiffy/MS
+jig/DSGM
+jigger/SdMZ
+jiggery-pokery/M Noun: uncountable
+jigging/SM
+jiggle/DSYGM
+jiggly/T
+jigsaw/MS
+jihad/MS3
+jihadism/M Noun: usually uncountable
+Jilin/M
+Jill/M
+Jillie/M
+jilt/DGSrM
+Jim/ZM
+Jima/M
+Jimenez/M
+Jimi/M
+jimmy/DGMS
+Jinan/M
+jingle/YGDSrM
+jingly/T
+jingo/SM
+jingoes
+jingoism/SM
+jingoist/WSM
+jink/DSGM
+jinn/MS
+jinni/SM
+Jinping/M
+jinricksha/MS
+jinrikisha/MS
+jinx/SGMD
+JIT/SGDM
+jitsu
+jitter/SMZd
+jitterbug/RGSDM
+jittery/T Adjective
+jiu
+jiu-jitsu/M Noun: uncountable
+Jiushao/M
+jive/MDGS
+Jixian/M
+jnana/SM
+jnr.
+Jo'burg/M
+Jo/M
+Joachim/M
+Joan/M
+Joanna/M
+Joanne/M
+João/M
+Joaquim/M
+Joaquin/M
+Job/M
+job/RGSDM
+jobation/MS
+jobbernowl/MS
+jobbery/SM
+jobbing/SM
+jobcentre/SM
+jobholder/SM
+jobless/P
+jobmaster/SM
+jobmongering/M
+jobseeker/MS
+jobsmith/SM
+Jobson/M
+Jobst/M
+jobster/SM
+jobsworth/SM
+jobwork/M
+Jocelyn/M
+Jochen/M
+jock/MS
+Jock/MS
+Jockey Jockey Club
+jockey/SDGM
+jockeyship/M Noun: usually uncountable
+jockstrap/MS
+jocose/PY
+jocosity/SM
+jocular/Y
+jocularity/MS
+jocund/Y
+jocundity/MS
+Jodhpur/M
+jodhpurs
+Jodie/M
+Jody/M
+Joe/M
+Joel/M
+Joep/M
+Joerg/M
+Joestar/M
+joey/SM
+jog/RJDSGM
+joggle/DGSMr
+Jogjakarta/M
+jogtrot/MS
+Johan/M
+Johanan/M
+Johann/M
+Johanna/M
+Johannes/M
+Johannesburg/M
+Johannine/M
+Johannisberg/M
+Johannisberger/M
+Johansen/M
+Johansson/M
+John/MS
+john/SM
+Johnnie/M
+johnny-come-lately/SM
+Johnny/M
+johnny/SM
+Johnsen/M
+Johnshaven/M
+Johnson/M
+Johnsonese/M
+Johnsonian/SM
+Johnsonville/M
+Johnston/M
+Johnstone/M
+Johnstown/M
+Johor/M
+join/FRSDG
+joinder/SM
+joinery/SM
+joint-stock joint-stock company
+joint/FYE
+joint/SMrp
+jointed/EPY
+jointing/E
+jointress/MS
+joints/E
+jointure/MS
+joist/SMD
+jojoba/SM
+joke/ZDRMSGk
+jokesmith/SM
+jokester/SM
+jokey
+joky/YT
+Jolene/M
+Jolie/M
+jolie/S jolie laide
+Joliet/M
+Joliette/M
+Jolitta/M
+Jolla/M
+jollification/SM
+jollity/SM
+jolly/SPTYDGM
+jolt/DSRGZM
+Jon/M
+Jonah/M
+Jonas/M
+Jonathan/M
+Jonathon/M
+Jones/SM
+Jonesboro/M
+Jonesborough/M
+Jonestown/M
+Jonesy/M
+Jong-chul/M
+Jong-il/M
+Jong-nam/M
+Jong-un/M
+jong/SM
+jongleur/MS
+Jonny/M
+jonquil/SM
+Jonson/M
+Jönsson/M
+Joondalup/M
+Joplin/M
+Jöran/M
+Jordan/M
+Jordanhill/M
+Jordanian/SM
+Jordanston/M
+Jordi/M
+Jordy/M
+Jörg/M
+Jorge/M
+Jörgen/M
+Jorgensen/M
+Jorgenson/M
+Joris/M
+jorum/MS
+Jose/M
+José/M
+Josef/M
+Joseph/M
+Josephine/M
+Josephson/M
+Josephus/M
+Josh/M
+josh/MrSGDJ
+Joshi/M
+Joshua/M
+Josiah/M
+Josie/M
+Joskow/M
+joss/SM
+jostle/SGDM
+Josuttis/M
+jot/RJSDGM
+Jotham/M
+jotting/SM
+Joubert/M
+joule/SM
+jounce/SGD Verb
+journal/9Q83sSM
+journaled
+journalese/MS
+journaling
+journalism/SM
+journalistic/OY
+journalistics/M Noun: uncountable
+journey/RmSMDJG
+journo/SM
+joust/MRGSD
+Jouy/M
+Jovanović/M
+Jovanovich/M
+Jove/M
+jovial/Y
+joviality/SM
+Jovian/SM
+Jowell/M
+Jowett/M
+jowl/YSM
+jowly/T
+joy/MDG6jSc
+Joyce/M
+Joycean/MS
+joyful/PT
+joyless/PY
+Joynson-Hicks/M
+joyous/YP
+joypad/SM
+joyridden
+joyride/RGMS
+joyrode
+joystick/SM
+JP/SM
+JPEG/SM
+jpeg/SM
+jpg/SM
+JPG/SM
+JPL/M Initialism of Jet Propulsion Laboratory
+JPY ISO 4217 currency code for the Japanese yen.
+jQuery/M
+Jr
+JSON/M
+JSTOR/M
+ju-jitsu/M Noun: uncountable
+ju-ju/SM
+ju-jutsu/M
+ju/y
+Juab/M
+Juan/M
+Juana/M
+Juanita/M
+Juanjuan/M
+Juba/M
+jubbly/SM
+jubilance/SM
+jubilant/Y
+jubilate/GDnS
+Jubilate/MS
+jubilee/SM
+Judaea/M
+Judaean/SM
+Judaeo-Christian/M
+Judaeo-German/M
+Judaeophobe/MS
+Judaeophobia/M Noun: uncountable
+Judah/M
+Judaic Adjective
+Judaisation/M Noun: uncountable
+Judaise/SGDNR
+Judaism/M Noun: usually uncountable
+Judaist/MS
+Judaize/SGDNR
+Judas/M
+Judd/M
+judder/dSM
+Jude/M
+Judea/M
+Judean/SM
+judge/DKLaGS
+judge/Mr
+Judgeford/M
+judgematical
+judgement/Oo
+judgementalism/M Noun: uncountable
+judgeship/SM
+judgment/SM
+judgmental/Y
+judgmentalism/M Noun: uncountable
+Judicature Judicature Act
+judicature/SM
+judicial/KY
+judiciary/MS
+judicious/IYP
+Judith/M
+judo/M Noun: uncountable
+judoist/MS
+judoka/SM
+Judson/M
+Judy/M
+jug/6GDSMO
+jugate/D
+Jugendstil/M
+jugful/SM
+Juggernaut/M
+juggernaut/SM
+juggle/RySDGM
+jugglery/SM
+Jugoslav/MS
+Jugoslavia/M
+jugular/SM
+jugulate/DGS Verb
+juice/RZMDGSp
+juicy/YPT
+jujitsu/M Noun: uncountable
+jujitsu/MS
+jujube/MS
+jujutsu/M Noun: uncountable
+jukebox/MS
+Jul
+julep/SM
+Jules/M
+Julia/M
+Julian/MS
+Juliana/M
+Julianne/M
+Julianus/M
+Julie/M
+Julien/M
+julienne/SM
+Juliet/M
+Juliette/M
+Julio/M
+Juliot/M
+Julius/M
+Jullundur/M
+July/MS
+Julys
+jumble/GDSM
+jumbo/SM
+jumbuck/MS
+jump-off/SM
+jump-start/SGDM
+jump/zRZSDGM
+jumpable
+jumpsuit/SM
+jumpy/TP
+Jun
+Junade/M
+Junagadh/M
+Junagarh/M
+Juncker/M
+junco/MS
+junction/FSMIE
+Junction/M
+juncture/FMS
+June/MS
+Juneau/M
+juneberry/SM
+Jung/M
+Junger/M
+Jungfrau/M
+Jungian/SM
+jungle/SMZ
+junglefowl/SM
+junglier
+jungliest
+Jungner/M
+Juniata/M
+junior/MS
+juniority/SM
+Juniper/M
+juniper/SM
+junk/MDRZGS
+junket/SdM
+junkie/M
+Junko/M
+junky/TS
+Juno/M
+Junoesque Adjective
+Junr/M
+junta/MS
+junto/SM
+Jupiter/M
+Jura/M
+jural/Y
+Jurassic
+jurat/SM
+Jurby/M
+Jürgen/M
+Juri/MS
+juridical/Y
+juries/I
+juris juris doctor
+jurisconsult/SM
+jurisdiction/OoMS
+jurisprudence/MS
+jurisprudent/SM
+jurisprudential/Y
+juristic/OY
+juror/MS
+jury's/I
+jury/35DmMSG
+Jussi/M
+jussive/MY
+Just-in-Penwith/M
+Just-in-Roseland/M
+Just/M
+just/TPY
+justice/IMS
+Justice/M
+justice/SMYpr
+justiceable
+justicehood/M
+justicement/M Noun: uncountable
+justiceship/MS
+justiciability/M Noun: uncountable
+justiciable
+justicialism/M Noun: uncountable
+justiciar/SM
+justiciary/SM
+justifiability/SM
+justifiable/U
+justifiably/U
+justificatory Adjective
+justify/RlBDSGn
+Justin/M
+Justine/M
+Justinian/M
+Justinus/M
+justly/U
+justness/U
+Justus/M
+jut/SGDM
+Jute/MS
+jute/MS
+Jutish
+Jutland/M
+Juvenal/M
+juvenescence/M Noun: uncountable
+juvenescent Adjective
+juvenile/SMY
+juvenileness/M Noun: uncountable
+juvenilia/M
+juvenility/SM
+Juventus/M
+juvie/SM
+juxtapose/SDGr
+juxtaposition/SM
+JVC/M Initialism of Japan Victor Company
+JVM/SM Initialism of Java virtual machine
+K
+K-factor
+k-line/SM
+k/k
+ka
+Kaaba/M
+Kabbala/M
+Kabbalah/SM
+Kabbalism/M
+Kabbalist/SMW
+Kaber/M
+kaboom/SM
+kabuki/MS
+Kabul/M
+Kaby Kaby Lake
+Kabyle/M
+kachina/MS
+kachori/SM
+Kaczorowski/M
+kaddish/SM
+Kaddish/SM
+Kaddishim/M
+kadi/MS
+Kadlec/M
+Kaeo/M
+Kaepernick/M
+kaffeeklatsch/MS
+kaffir/MS
+Kaffir/MS
+kaffiyeh/MS
+Kafir/MS
+Kafka/M
+Kafkaesque/Y
+kaftan/SM
+Kaganski/M
+Kagawa/M
+Kagoshima/M
+kagoul/SM
+Kahan/M
+Kahn/M
+Kahneman/M
+Kahului/M
+Kai/M
+Kaiapoi/M
+Kaif/M
+Kaihu/M
+Kaikohe/M
+Kaikorai/M
+Kaikoura/M
+kail/SM
+Kailua/M
+Kaimata/M
+Kaimes/M
+Kaine/M
+Kaingaroa/M
+kainite/SM
+Kaipara/M
+Kairaki/M
+kaiser/SM
+Kaiser/SM
+kaisership/MS
+Kaitaia/M
+Kaitangata/M
+Kaiti/M
+Kaitlyn/M
+Kaiwaka/M
+Kaiwharawhara/M
+kaka/MS
+Kakanui/M
+kakapo/MS
+Kakaramea/M
+kakemono/MS
+Kakepuku/M
+Kalahari/M
+Kalamazoo/M
+Kalashnikov/M
+Kaldor/M
+kale/MS
+kaleidoscope/SWM1
+Kalendar/M
+kalends
+Kaley/M
+Kalgoorlie-Boulder/M
+Kalgoorlie/M
+Kali/M
+kalian/SM
+Kalimantan/M
+Kaliningrad/M
+Kalispell/M
+Kalkaska/M
+Kallang/M
+Kalliope/M
+Kálmán/M
+kalmia/MS
+Kalmuck/MS
+kalong/MS
+kalpa/SM
+Kalpage/M
+Kalthoff/M
+Kalu/M
+Kalypso/M
+Kama/M
+kamacite/SM
+Kamakshi/M
+Kamasutra/M
+Kamau/M
+Kamchatka/M
+kame/MS
+kameez/SM
+Kamen/M
+Kames/M
+kamikaze/SM
+Kamil/M
+Kamini/M
+Kamino/M
+Kamloops/M
+Kamo/M
+Kamouraska/M
+Kampala/M
+Kampf/M
+kampong/SM
+Kampuchea/M
+Kamran/M
+kana/SM
+Kanabec/M
+Kanak/M
+kanaka/SM
+Kanakadurga/M
+Kanarese/M
+Kanawha/M
+Kanchenjunga/M
+Kanchi/M
+Kandahar/M
+Kandel/M
+Kandil/M
+Kandiyohi/M
+Kandy/M
+Kane/M
+Kaneohe/M
+Kang/M
+kangaroo/SM
+Kaniere/M
+kanji/SM
+Kankakee/M
+Kannada/M
+Kannapolis/M
+Kano/M
+Kanoa/M
+Kanpur/M
+Kanryo/M
+Kansai/M
+Kansas/M
+Kant/M
+Kantian/SM
+Kantianism/M
+Kantor/M
+kanuka/M Noun: uncountable
+Kanwal/M
+Kanye/M
+Kao/M
+kaolin/WQ8SM
+kaolinite/SM
+kaon/SMW
+kaonium/M
+kapellmeister/SM
+Kapiti/M
+Kaplan/M
+kapok/SM
+Kaponga/M
+Kaposi/M
+Kappa/M
+kappa/SM
+Kapton/M Noun: uncountable
+kaput
+Kara/M
+karabiner/MS
+Karachi/M
+Karadima/M
+Karaite/MS
+Karaitiana/M
+Karajan/M
+karaka/SM
+Karakalpakstan/M
+Karakoram/M
+karakul/SM
+Karamea/M
+karaoke/SM
+karate-chop/SGD
+Karate-Do/M
+karate/M Noun: uncountable
+karategi/M
+karateka/SM
+Kardashian/SM
+Karehana/M
+Karekare/M
+Karen/M
+Karet/M
+Karetu/M
+Kargil/M
+Kari/M
+Karin/M
+Karitane/M
+Karl/M
+Karloff/M
+Karlovy Karlovy Vary
+Karlsruhe/M
+Karlstadt/M
+karma/SM
+Kármán/M
+Karmapa/M
+karmic/Y
+Karn/M
+Karnak/M
+Karnataka/M
+Karnes/M
+Karori/M
+Karoro/M
+kaross/MS
+Karp/M
+Karpinski/M
+Karras/M
+Karratha/M
+karri/MS
+karst/SW
+Karsten/M
+karstify/SGDN
+kart/MSG
+Kartikaya/M
+Kartvelian/SM
+karyokineses
+karyokinesis/M
+karyotype/SGDMW
+karzy/MS
+Kasai/M
+kasbah/MS
+Kasdan/M
+Kasey/M
+Kashefi/M
+Kashmir/M
+Kashyapa/M
+Kasnoff/M
+Kasparian/M
+Kasparov/M
+Kaspersky/M
+Kasprowicz/M
+Kassebaum/M
+Kassel/M
+Kassner/M
+Kastrup/M
+kata/SM
+katabatic/SMY
+katakana/SM
+katana/SM
+Katarina/M
+Katarn/M
+Kate/M
+Katechon
+Katelyn/M
+Katesbridge/M
+Kath/M
+Katharina/M
+Katharine/M
+Katherine/M
+Kathleen/M
+Kathmandu/M
+kathode/SM
+Kathryn/M
+Kathy/M
+Katie/M
+Katikati/M
+Katmai/M
+Kato/M
+Katowice/M
+Katrin/M
+Katrina/M
+katsura/SM
+Kattegat/M
+Katy/M
+katydid/MS
+Katyn/M
+Katz/M
+Kauai/M
+Kauffman/M
+Kauffmann/M
+Kaufman/M
+Kaufmann/M
+Kaukapakapa/M
+Kaukauna/M
+Kaunas/M
+Kaunda/M
+Kaur/M
+Kauri/M
+kauri/MS
+Kautilya/M
+Kauwhata/M
+Kavanagh/M
+Kavaratti/M
+Kavka/M
+Kawakawa/M
+Kawamura/M
+Kawartha/M
+Kawasaki/M
+Kawata/M
+Kawerau/M
+Kay/M
+Kaya/M
+kayak/MSdr
+Kayla/M
+Kaylee/M
+kayo/MSDG
+Kaysville/M
+Kazakh/M
+Kazakhstan/M
+Kazan/M
+Kazanjian/SM
+kazoo/SM
+Kazue/M
+Kazuhiro/M
+Kazutaka/M
+kb
+kB
+kbit/S
+KBO/SM Initialism of Kuiper Belt Object
+kbps
+kbyte/S
+kc/M
+kcal/SM
+KDE/M
+Kea/M
+kea/MS
+Keadby/M
+Keady/M
+Keal/M
+Keane/M
+Keansburg/M
+Keanu/M
+Kearby/M
+Kearn/MS
+Kearney/M
+Kearny/M
+Kearsley/M
+Kearwood/M
+Keary/M
+Keath/M
+Keating/M
+Keaton/M
+Keats/M
+kebab/SM
+Keble/M
+Keck/M
+keck/SGDJM
+Kecksburg/M
+Keddington/M
+kedge/SGDJM
+kedgeree/SM
+Kedington/M
+Kedleston/M
+Kee/M
+Keef/M
+Keegan/M
+keek/SGDJM
+keel/rSMGDp
+keelboat/SM
+Keelby/M
+Keele/M
+keelhaul/GDS
+keelson/MS
+keen/TSGDPYrJ
+Keenan/M
+Keene/M
+Keener/SM
+Keenor/M
+keep-fit/M
+keep/JSGR
+keepsake/MS
+keeshond/SM
+Keevil/M
+keffiyeh/MS
+keg/SGMD
+Kegan/M
+Kegel/M
+Kegerreis/M
+Kegidock/M
+Kegworth/M
+Keig/M
+Keighley/M
+Keijo/M
+Keillor/M
+Keily/M
+Keinton/M
+Keir/M
+Keira/M
+Keiran/M
+Keisby/M
+Keiss/M
+Keith/M
+Keithhall/M
+Keitt/M
+Keizer/M
+Kelbrook/M
+Kelburn/M
+Kelby/M
+Kelce/M
+Kelemen/M
+Kelfield/M
+Kelham/M
+Kelk/M
+Kellaways/M
+Keller/M
+Kellet/M
+Kelley/M
+Kellie/M
+Kelling/M
+Kellington/M
+Kelloe/M
+Kellogg/M
+Kells-Connor/M
+Kells/M
+Kellswater/M
+Kelly/M
+Kellyanne/M
+Kelmarsh/M
+Kelmscot/M
+Kelmscott/M
+Kelowna/M
+kelp/DGSMr
+kelpie/SM
+Kelsale/M
+Kelsall/M
+Kelsey/M
+Kelshall/M
+Kelso/M
+Kelson/M
+kelson/SM
+Kelstern/M
+Kelston/M
+kelt/MS
+Kelton/M
+Kelty/M
+Kelvedon/M
+Kelvin/M
+kelvin/SM
+Kelvingrove/M
+Kelvinside/M
+Kemback/M
+Kemberton/M
+Kemble/M
+Kemerton/M
+Kemeys/M
+Kemnay/M
+Kemp/M
+kemp/SMZ
+Kemper/M
+Kemperdick/M
+Kempley/M
+kempo/M Noun: uncountable
+Kempsey/M
+Kempsford/M
+Kempston/SM
+Kempstone/M
+Kempthorne/M
+Kempton/M
+kempy
+Kemsing/M
+ken/GSMD
+Ken/M
+Kenai/M
+Kenardington/M
+Kenchester/M
+Kencot/M
+Kendal/M
+Kendall/M
+Kenderchurch/M
+Kenderdine/M
+Kendhoo/M
+kendo/M Noun: uncountable
+kendoist/SM
+Kendra/M
+Kendrick/M
+Kenelm/M
+Kenepuru/M
+Kenfig/M
+Kenilworth/M
+Kenji/M
+Kenjiro/M
+Kenley/M
+Kenmore/M
+Kenmuir/M
+Kenmure/M
+Kenn/M
+Kenna/M
+Kennebec/M
+Kennebunk/M
+Kennedy/M
+Kennedys/M
+kennel/DSGM
+Kennell/M
+Kenner/M
+Kennerleigh/M
+Kennesaw/M
+Kennet/M
+Kenneth/M
+Kennethmont/M
+Kennett/M
+Kennewick/M
+Kenney/M
+Kenninghall/M
+Kennington/M
+Kennison/M
+Kennoway/M
+Kenny/M
+keno/M Noun: uncountable
+Kenobi/M
+kenophobia/M Noun: uncountable
+kenophobic/Y
+Kenora/M
+kenoses
+Kenosha/M
+kenosis/M
+kenotic/3
+kenoticism/M Noun: uncountable
+Kenoyer/M
+Kensal/M
+Kensaleyre/M
+Kensington/M
+kenspeckle
+Kenswick/M
+Kensworth/M
+Kent/MS
+Kentaro/M
+Kentchurch/M
+Kentford/M
+Kentigern/M
+Kentisbeare/M
+Kentisbury/M
+Kentish/M
+Kentmere/M
+Kenton/M
+Kentuckian/SM
+Kentucky/M
+Kentwood/M
+Kenwa/M
+Kenwyn/M
+Kenya/M
+Kenyan/SM
+Kenyatta/M
+Kenyon/M
+Keokuk/M
+Keough/M
+kepi/MS
+Kepler/M
+Keplerian
+kept
+Kepwick/M
+Kerala/M
+Kerama/M
+keratectomy/SM
+keratin/MS
+keratinise/SGDn
+keratinize/SGDn
+keratinocyte/SM
+keratitides
+keratitis/SM
+keratomileuses
+keratomileusis/M
+keratopathic
+keratopathy/MS
+keratoplasty/SM
+keratose/M Noun: uncountable
+keratoses
+keratosis/M
+keratotomy/SM
+kerb/SM
+Kerberos/M
+kerbside/SM
+kerbstone/MS
+Kerby/M
+Kerch/M
+kerchief/SDM
+Kerckhoffs/M
+Kerdiston/M
+Kerensa/M
+Keresley/M
+kerf/MS
+kerfuffle/SM
+Kerguelen/SM
+Keri/M
+Kerikeri/M
+Kerim/M
+Kerimov/M
+Kermadec/M
+Kerman/M
+kermes/M
+Kermit/M
+Kern/M
+kern/SGDM
+kerne/MS
+kernel/SM
+Kerner/M
+Kernersville/M
+Kernes/M
+Kernighan/M
+kerogen/MS
+kerosene/MS
+Kerr/M
+Kerrial/M
+Kerrian/M
+Kerrigan/M
+Kerrville/M
+Kerry/MS
+Kersall/M
+kersey/M
+Kersey/M
+kerseymere/SM
+Kershaw/M
+Kershner/M
+Kerth/M
+kerygma/SM
+kerygmata/M
+Kesgrave/M
+Kesh/M
+Kesha/M
+Keshbridge/M
+Keshet/M
+Kessingland/M
+Kessler/M
+Kessock/M
+Kesteren/M
+Kesteven/M
+Keston/M
+kestrel/SM
+Keswick/M
+ketamine/SM
+Ketch/M
+ketch/MS
+Ketchikan/M
+Ketchum/M
+ketchup/SM
+Ketel/M
+Ketley/M
+keto/SM
+ketogenesis/M Noun: uncountable
+ketogenic
+ketohexose/SM
+ketonaemia/M Noun: uncountable
+ketone/MSW
+ketoses
+ketosis/M
+Ketsby/M
+Kettering/M
+Ketteringham/M
+Kettins/M
+kettle/6SM
+Kettlebaston/M
+kettlebell/SM
+Kettleburgh/M
+Kettleby/M
+kettledrum/MS
+kettledrummer/MS
+Kettleshulme/M
+Kettlestone/M
+Kettlethorpe/M
+Kettlewell/M
+Ketton/M
+Ketuvim/M
+Kev/M
+keV/SM
+Keverne/M
+Kevin/M
+Kevorkian/M
+Kew/M
+Kewanee/M
+Kewaskum/M
+Kewaunee/M
+Kewell/M
+Kewisch/M
+Kewpie/M
+kewpie/MS
+Kewstoke/M
+Kexby/M
+Kexi/M
+key/DSGMpr
+keyboard/GMDRS3
+keyclick/MS
+Keyham/M
+Keyhoe/M
+keyholder/SM
+keyhole/SM
+Keyingham/M
+keylogger/SM
+keylogging/M Noun: uncountable
+Keymer/M
+Keyne/MS
+Keynell/M
+Keynesian/SM
+Keynesianism/SM
+Keyneston/M
+keynote/SRGMD
+Keynsham/M
+Keynston/M
+keypad/SM
+keypair/SM
+keypal/SM
+keyphrase/SM
+keypress/SM
+keypunch/GRDSM
+keyring/SM
+Keys/M
+keyseat/SGDM
+keyserver/SM
+Keysoe/M
+keyspace/SM
+Keyston/M
+Keystone/M
+keystone/SM
+keystream/SM
+keystroke/MDS
+Keythorpe/M
+keyway/SM
+keyword/SM
+Keyworth/M
+kg
+KGB/M
+Khabarovsk/M
+Khachaturian/SM
+khaddar/M Noun: usually uncountable
+khaki/MS
+Khaled/M
+Khalid/M
+Khalifa/SM
+Khalili/M
+khamsin/SM
+Khan/M
+khan/MS
+Khanal/M
+khanate/SM
+Khandallah/M
+Khandelwal/M
+Khartoum/M
+Khayat/M
+Khayyam/M
+khazi/SM
+Khedive/MSO
+Khedivial
+Khmer/MS
+Khoisan/M
+Khomeini/M
+Khorasani/M
+Khosravi/M
+Khrushchev/M
+Khyber/M Khyber Pakhtunkhwa (city Pakistan)
+kHz/M
+Ki-moon/M
+kiang/SM
+Kiangsi/M
+Kiaran/M
+KiB
+kibble/DSGM
+kibbutz/SM
+kibbutzim/M
+kibbutznik/SM
+kibe/MS
+kibibit/S
+kibibyte/S
+kibitka/SM
+kibitzer/SM
+kiblah/SM
+kibosh/SM
+Kibworth/M
+kick-boxer/SM
+kick-boxing/M Noun: uncountable
+kick-off/MS
+kick-start/SDGM
+kick-turn/SGD
+kick/ZRSDGM
+kickable
+kickabout/SM
+kickback/MS
+kickball/SM
+kickflip/SM
+kickshaw/MS
+kicksorter/SM
+kickstand/SM
+Kickstart/M
+kickstart/SGDM
+kicky/T
+kid-glove/M
+kid/RDMSGp
+Kidd/M
+Kidderminster/M
+kiddie/SM
+kidding/SMY
+Kiddington/M
+kiddish/SM
+kiddishim/M
+kiddle/SM
+kiddo/SM
+kiddoes
+kiddush/SM
+kiddushim/M
+kiddy/SM
+kideo/SM
+Kidlington/M
+Kidman/M
+Kidmore/M
+kidnap/DRGJSM
+kidney/MS
+kidology/3M
+Kidsgrove/M
+kidskin/SM
+kidult/SM
+kidvid/SM
+Kidwelly/M
+Kieffer/M
+Kiel/M
+Kielder/M
+kier/SM
+Kieran/M
+Kierkegaard/M
+kieselguhr/SM
+kieserite/SM
+Kiev/M
+kif/M Noun: uncountable
+Kiffin/M
+Kigali/M
+Kihikihi/M
+Kikuyu/M
+Kilarrow/M
+Kilauea/M
+Kilbarchan/M
+Kilberry/M
+Kilbirnie/M
+Kilbowie/M
+Kilbrandon/M
+Kilbride/M
+Kilbucho/M
+Kilburn/M
+Kilby/M
+Kilcalmonell/M
+Kilchattan/M
+Kilchenzie/M
+Kilchoan/M
+Kilchoman/M
+Kilchrenan/M
+Kilconquhar/M
+Kilcoo/M
+Kilcot/M
+Kilcreggan/M
+Kilda/M
+Kildale/M
+Kildalton/M
+Kildan/M
+Kildare/M
+Kildavin/M
+kilderkin/SM
+Kildonan/M
+Kildress/M
+Kildrum/M
+Kildrummy/M
+Kildwick/M
+Kilfenora/M
+Kilfinan/M
+Kilfinichen/M
+Kilgeddin/M
+Kilgetty/M
+Kilgore/M
+Kilgwrrwg/M
+Kilham/M
+Kilimanjaro/M
+Kilindini/M
+Kilkeel/M
+Kilkenny/M
+Kilkhampton/M
+kill/SRkJ7GDM
+Killadeas/M
+Killaloo/M
+Killamarsh/M
+Killarney/M
+Killarow/M
+Killay/M
+killdeer/SM
+Killead/M
+Killean/M
+Killearn/M
+Killearnan/M
+Killeen/M
+Killellan/M
+Killen/M
+Killerby/M
+Killermont/M
+Killeter/M
+killfile/SGD
+killick/SM
+Killiecrankie/M
+killifish/SM
+Killigrew/M
+Killin/M
+Killinchy/M
+Killinghall/M
+Killingholme/M
+Killingly/M
+Killington/M
+killjoy/SM
+Killough/M
+Killowen/M
+Killylea/M
+Killyleagh/M
+Killyman/M
+Killywool/M
+Kilmacduagh/M
+Kilmacolm/M
+Kilmadock/M
+Kilmallie/M
+Kilmany/M
+Kilmarnock/M
+Kilmaronock/M
+Kilmartin/M
+Kilmaurs/M
+Kilmelford/M
+Kilmelfort/M
+Kilmeny/M
+Kilmersdon/M
+Kilmichael/M
+Kilmington/M
+Kilmiston/M
+Kilmodan/M
+Kilmonivaig/M
+Kilmorack/M
+Kilmore/M
+Kilmorich/M
+Kilmory/M
+Kilmuir/M
+Kilmun/M
+kiln/SM
+Kilninian/M
+Kilninver/M
+Kilnsea/M
+Kilnsey/M
+Kilnwick/M
+Kilnwood/M
+kilo/MS
+kilobase/SM
+kilobaud/SM
+kilobit/SM
+kilobuck/SM
+kilobyte/SM
+kilocalorie/SM
+kilocycle/MS
+kiloelectronvolt/SM
+kilogauss/SM
+kilogram/SM
+kilogramme/SM
+kilohertz/SM
+kilohm/SM
+kilojoule/SM
+kilolitre/SM
+kilometre/SMW
+kiloparsec/SM
+kilosecond/SM
+kiloton/SM
+kilotonne/SM
+kilovolt/SM
+kilowatt-hour/SM
+kilowatt/SM
+kiloword/SM
+Kilpatrick/M
+Kilpeck/M
+Kilpin/M
+Kilrea/M
+Kilrenny/M
+Kilsby/M
+Kilskeery/M
+Kilspindie/M
+Kilsyth/M
+kilt/SMDr
+Kiltarlity/M
+Kiltearn/M
+kiltie/MS
+Kilton/M
+Kilve/M
+Kilverstone/M
+Kilvickeon/M
+Kilvington/M
+Kilwinning/M
+Kilworth/M
+Kim/M
+Kimball/M
+Kimberley/M
+kimberlite/SM
+Kimberly/M
+Kimble/M
+Kimblesworth/M
+Kimbolton/M
+Kimcote/M
+Kimmel/M
+Kimmeridge/M
+kimono/SM
+Kimpton/M
+kin/5SmMp
+kinaesthesia/SM
+kinaesthetic/Y
+kinaesthetics/M Noun: uncountable
+Kinallen/M
+kinase/SM
+Kinawley/M
+Kinberg/M
+Kincaid/M
+Kincardine/M
+Kincardineshire/M
+Kinchinjunga/M
+Kinclaven/M
+Kincorth/M
+Kincraig/M
+kind-hearted/YP
+kind/PSTYM
+kinda
+kindergarten/SMr
+kindergärtner/SM
+Kinderhook/M
+Kindersley/M
+kindest
+kindle/DSAG
+kindler/SM
+kindling/SM
+kindly/TPY
+kindred/SM
+kine/SM
+Kinellar/M
+kinematic/OY
+kinematics/M Noun: uncountable
+kinematograph/SM
+kineses
+kinesics/M Noun: uncountable
+kinesiology/3wSM
+kinesis/M
+kinetic/OY
+kineticism/M Noun: usually uncountable
+kinetics/M Noun: uncountable
+Kineton/M
+kinetoplast/SM
+kinetoscope/SM
+Kinfauns/M
+king-size/D
+King/M
+king/MDSGp
+Kingairloch/M
+Kingan/M
+Kingaroy/M
+Kingarth/M
+kingbird/SM
+kingbolt/SM
+Kingcase/M
+kingcraft/M Noun: usually uncountable
+kingcup/MS
+kingdom/SM
+kingdomed
+Kingerby/M
+kingfish/SMr
+Kingfisher/M
+Kingham/M
+kinghood/M Noun: usually uncountable
+Kinghorn/M
+Kinglassie/M
+kinglet/SM
+kinglike
+kingly/TP
+kingmaker/MS
+Kingmaker/SM
+Kingman/M
+Kingoldrum/M
+kingpin/MS
+Kings/M
+Kingsbarns/M
+Kingsbridge/M
+Kingsburg/M
+Kingsbury/M
+Kingsclere/M
+Kingscote/M
+Kingsdon/M
+Kingsdown/M
+Kingseat/M
+Kingsey/M
+Kingsford/M
+kingship/SM
+Kingshurst/M
+Kingskerswell/M
+Kingskettle/M
+Kingsland/M
+Kingsley/M
+Kingsmead/M
+Kingsmere/M
+Kingsnorth/M
+Kingsnympton/M
+Kingsport/M
+Kingsteignton/M
+Kingston/M
+Kingstone/M
+Kingstown/M
+Kingsville/M
+Kingsway/M
+Kingswear/M
+Kingswells/M
+Kingswinford/M
+Kingswood/M
+Kington/M
+Kingussie/M
+Kingweston/M
+Kingwood/M
+kinin/SM
+kininase/SM
+kink/MGDZSz
+kinkajou/MS
+Kinkell/M
+Kinkisharyo/M
+kinky/TP
+Kinlet/M
+Kinloch/M
+Kinlochbervie/M
+Kinlochewe/M
+Kinlochleven/M
+Kinlochspelve/M
+Kinloss/M
+Kinmel/M
+Kinmylies/M
+Kinnaird/M
+Kinnear/M
+Kinneff/M
+Kinnell/M
+Kinnelon/M
+Kinnerley/M
+Kinnersley/M
+Kinnerton/M
+Kinnettles/M
+Kinney/M
+Kinning/M
+Kinniside/M
+Kinnock/M
+Kinnoull/M
+kino/SM
+Kinoulton/M
+Kinross/M
+Kinsella/M
+Kinsey/M
+kinsfolk/SM
+Kinsham/M
+Kinshasa/M
+kinship/MS
+Kinsley/M
+Kinston/M
+Kintail/M
+Kintbury/M
+Kintore/M
+Kintyre/M
+Kinver/M
+Kinwarton/M
+Kinzler/SM
+kiosk/MS
+Kiowa/M
+kip/SDGMR
+Kiplin/M
+Kipling/SM
+Kiplingism/SM
+kippa/SM
+kippah/SM
+Kippax/M
+Kippen/M
+kipper/SdM
+kippot/M Plural of kippah
+kippoth/M
+Kippur/M
+Kiraly/M
+Kirby/M
+Kircaldy/M
+Kircher/SM
+Kirchhoff/M
+Kirchner/SM
+Kircubbin/M
+Kirdford/M
+Kirghiz/M
+Kirghizia/M
+kiri/SM
+Kiribati/M
+Kirillin/M
+Kirk/M
+kirk/SM
+Kirkandrews/M
+Kirkbampton/M
+Kirkbean/M
+Kirkbride/M
+Kirkburn/M
+Kirkburton/M
+Kirkby-in-Ashfield/M
+Kirkby/M
+Kirkbymoorside/M
+Kirkcaldy/M
+Kirkcambeck/M
+Kirkcolm/M
+Kirkconnel/M
+Kirkcowan/M
+Kirkcudbright/M
+Kirkcudbrightshire/M
+Kirkdale/M
+Kirkden/M
+Kirkfieldbank/M
+Kirkgunzeon/M
+Kirkham/M
+Kirkharle/M
+Kirkhaugh/M
+Kirkheaton/M
+Kirkhill/M
+Kirkhope/M
+Kirkinner/M
+Kirkintilloch-Lenzie/M
+Kirkintilloch/M
+Kirkland/M
+Kirkleatham/M
+Kirklees/M
+Kirklevington/M
+Kirkley/M
+Kirklington-cum-Upsland/M
+Kirklington/M
+Kirklinton/M
+Kirkliston/M
+Kirkmabreck/M
+Kirkmahoe/M
+Kirkmaiden/M
+kirkman/M
+kirkmen/M
+Kirkmichael/M
+Kirkmuirhill-Blackwood/M
+Kirkmuirhill/M
+Kirknewton/M
+Kirkoswald/M
+Kirkpatrick-Juxta/M
+Kirkpatrick/M
+Kirkstall/M
+Kirkstead/M
+Kirksville/M
+Kirkton/M
+Kirkurd/M
+Kirkwall/M
+Kirkwhelpington/M
+Kirkwood/M
+Kirmani/M
+Kirmington/M
+Kirmond-le-Mire/M
+Kirmond/M
+Kirn/M
+Kirov/M
+Kirrha/M
+Kirriemuir/M
+kirsch/M Noun: usually uncountable
+Kirschner/M
+kirschwasser/M Noun: usually uncountable
+Kirstead/M
+Kirsten/M
+Kirtle-Eaglesfield/M
+kirtle/MS
+Kirtling/M
+Kirtlington/M
+Kirton/M
+Kirwee/M
+Kiryas/M
+Kisangani/M
+Kisch/M
+Kisco/M
+Kishen/M
+Kisimul/M
+Kislingbury/M
+kismet/MS
+kiss/DGRSMJ7
+Kissimmee/M
+Kissner/M
+kist/MS
+Kiswahili/M
+kit/GMZrDS
+Kitagawa/M
+Kitakyushu/M
+Kitamura/M
+kitbag/SM
+kitchen/SMr
+Kitchener/M
+kitchenette/MS
+kitchenware/SM
+Kitchin/M
+kite-flying/M
+kite/MS
+kiteboard/SMGD
+Kitemark/MS
+kitenge/SM
+kitesurfer/SM
+kitesurfing/M Noun: uncountable
+kith/MS
+Kitimat-Stikine/M
+Kitsap/M
+kitsch/ZSM
+Kitt/MS
+Kittel/M
+kitten/MdS
+kittenish/YP
+Kittisford/M
+Kittitas/M
+kittiwake/SM
+kittle/SGD
+kitty/MS
+Kiwanis/M
+Kiwi/MS
+kiwi/SM
+kiwifruit/SM
+Kiyoko/M
+Kiyotsugu/M
+KKK/M Initialism of Ku Klux Klan
+kl
+Klamath/M
+Klan/M
+Klandasan/M
+Klansman/M
+Klaproth/M
+Klarer/M
+Klaus/M
+Klawe/M
+klaxon/MS
+Klay/M
+Kleberg/M
+klebsiella/SM
+Kleck/M
+Kleenex/M
+Klein/M
+Kleinsmith/M
+Kleopatra/M
+Klepfer/M
+klepht/MS
+kleptocracy/SM
+kleptocrat/SMW
+kleptomania/MS
+kleptomaniac/SM
+kleptoparasite/SMW
+kleptoparasitism/M Noun: uncountable
+Klerksdorp/M
+klick/SM
+Klickitat/M
+klieg/SM
+Kline/SM
+Klingler/M
+Klingon/SM
+klipspringer/MS
+Kloetzke/M
+Klondike/MS
+kloof/MS
+Klopfer/M
+kludge/RGSDM
+kludgey
+kludgy/T
+Kluwe/M
+Klux/MR
+klystron/SM
+km
+kn
+knack/MRS~
+knacker/MSZd
+knag/MS
+Knaith/M
+knap/SGDM
+Knapdale/M
+Knapp/M
+knapper/MS
+knapsack/MS
+Knaptoft/M
+Knapton/M
+knapweed/SM
+Knapwell/M
+knar/MS
+Knaresborough/M
+Knarsdale/M
+Knauer/M
+Knauth/M
+knave/MyS
+knavery/SM
+knavish/Y
+knavishness/M Noun: uncountable
+knawel/MS
+Knayton/M
+knead/RDGS
+kneadable
+Kneale/M
+Knebworth/M
+knee-deep
+knee-high/SM
+knee-jerk/SMZ
+knee-length
+knee/SMdp
+Kneebone/M
+kneecap/SGMD
+kneehole/SM
+kneel/DRGS
+knees-up/SM
+Kneesall/M
+Kneeton/M
+Kneighton/M
+knell/GMSD
+knelt
+Knesset/M
+Knettishall/M
+knew
+knick-knack/MS~
+knick-knackery/M Noun: uncountable
+knick/SGD
+knickerbocker/SM
+Knickerbocker/SM
+knickers
+knife-edge/SM
+knife/SGMD
+knifefish/SM
+knifepoint/SM
+knight-errantry/SM
+knight/GMDYSp
+knightage/MS
+Knightdale/M
+knighthood/SM
+Knightley/M
+knightlike
+knightly/P
+Knighton/M
+Knights/M
+Knightsbridge/M
+Knightswood/M
+Knightwick/M
+Knill/M
+Knipton/M
+knish/SM
+knit/RGSDJM
+knitbone/M Noun: uncountable
+knitting/M
+knitwear/M Noun: usually uncountable
+knives
+Kniveton/M
+knob/ZMSGD
+knobbiness/M Noun: uncountable
+knobble/SMZ
+knobby/T
+knobkerrie/MS
+Knobloch/M
+Knoblock/M
+knobstick/MS
+knock-down/SM
+knock-kneed
+knock-on/SM
+knock-out/SM
+knock-up/SM
+Knock/M
+knock/RDJSMG
+knockabout/SM
+Knockando/M
+Knockbain/M
+Knockcloghrim/M
+knockdown/SM
+Knockhill/M
+Knockholt/M
+Knockin/M
+knocking-shop/SM
+Knockmoyle/M
+Knocknacarry/M
+knockout/SM
+knockwurst/SM
+Knodishall/M
+knoll/DSGM
+Knoll/M
+Knolston/M
+Knook/M
+knop/MS
+Knorr/M
+Knossington/M
+Knossos/M
+knot/ZMSGDpR
+knothole/MS
+Knott/M
+Knotting/M
+knotting/SM
+Knottingley/M
+knotty/TPY
+knotwork/SM
+knout/SMGDJ
+know-how/M Noun: uncountable
+know-it-all/SM
+know/GJk7Sr
+Knowe/M
+knowe/SM
+knowing/TP
+Knowle/MS
+knowledgable
+knowledge/BSlM
+knowledgeable/P
+Knowlton/M
+known/US
+Knowsley/M
+Knowstone/M
+Knox/M
+Knoxville/M
+Knoyle/M
+knuckle/SDMG
+knucklebone/SM
+knuckleduster/SM
+knucklehead/SMD
+Knudsen/M
+Knudson/M
+knurl/SGDM
+Knuth/M
+Knutsen/M
+Knutsford/M
+Knutson/M
+KO'd
+KO'ing
+Ko/SM
+KO/SM
+koala/MS
+koan/MS
+Kobayashi/M
+Kobe/M
+Kober/M
+kobold/MS
+kobudo
+Koch/M
+Kochi/M
+Kodachrome/M
+Kodak/M
+Kodaly/M
+Kodiak/M
+koel/MS
+Koelmeyer/M
+Koenig/M
+Koenigsberg/M
+Koerner/M
+Koertzen/M
+Koester/M
+Koestler/M
+Kofi/M
+kofta/SM
+Koga/M
+Kogan/M
+Kohei/M
+Kohima/M
+Kohimarama/M
+Kohl/M
+Kohler/SM
+kohlrabi/SM
+kohlrabies
+Kohn/M
+Kohukohu/M
+koine/MS
+Koitiata/M
+Koivisto/M
+Koizumi/M
+Kojak/M
+Kokatahi/M
+Kokhba/M
+Kokoda/M
+Kokomo/M
+Kokopu/M
+kola/SM
+kolache/SM
+Kolata/M
+Kolbe/M
+Kolesar/M
+kolinsky/MS
+Kolkata/M
+kolkhoz/MS
+Kolmogorov/M
+Kolonia/M
+Kolyma/M
+komatiite/SMW
+kombu/M Noun: uncountable
+kombucha/SM
+Komodo/M
+kompromat/SM
+Komsomol/MS
+Kong/M
+König/M
+Konini/M
+Konishi/M
+Konrad/M
+Konstantin/M
+Konya/M
+Koocher/M
+Koochiching/M
+kookaburra/SM
+kooky/YTP
+Koopman/M
+Kootenai/M
+Kootenay/M
+kopeck/MS
+kopek/SM
+Kopelson/M
+Kopff/M
+kopje/MS
+Kopp/M
+Köppen/M
+koppie/MS
+Kopuru/M
+Koran/MW
+Kordell/M
+Korea/M
+Korean/SM
+Koresh/M
+korfball/SM
+korma/SM
+Korn/M
+Kornberg/M
+Kornbluth/M
+Korokoro/M
+Korolev/M
+Koromiko/M
+Koror/M
+Kors/M
+Kortrijk/M
+koruna/SM
+Korver/M
+Kosciusko/M
+kosher/Sd
+Koshland/M
+Kosovo/M
+Kossa/M
+Kossuth/M
+Kostova/M
+Kothari/M
+Kotler/SM
+koto/MS
+Kotte/M
+Kotz/M
+koumiss/M Noun: usually uncountable
+kouprey/SM
+kourbash/MS
+Kournikova/M
+Kourou/M
+Kourtney/M
+Kovacs/M
+Kowal/M
+Kowalski/M
+Kowanyama/M
+Kowhai/M
+kowhai/MS
+Kowloon/M
+kowtow/GDS
+kPa Symbol for kilopascal
+kph
+Kr
+kraal/MS
+Kraemer/M
+kraemeriid/SM
+Kraepelin/M
+kraft/M Noun: uncountable
+Kraftwerk/M
+krait/MS
+Krakatoa/M
+Krakatoan
+kraken/SM
+Krakow/M
+Kramer/SM
+Kramnik/M
+Krasinski/M
+Kraus/M
+Krause/M
+Kraut/SM
+Kravchenko/M
+Krayzelburg/M
+Krebs/M
+Krefeld/M
+Kreisky/M
+Kremlin/M
+Kremlinology/3M
+Kreps/M
+Kresge/M
+Kressel/M
+Kretzer/M
+Krieger/M
+Kriegsmarine/M
+kriegspiel/SM
+krill/MS
+krimmer/SM
+Kripalu/M
+Kris/M
+Krishna/M
+Krishnaism/M
+Krishnamurthy/M
+Krista/M
+Kristaps/M
+Kristen/M
+Kristensen/M
+Kristin/M
+Kristina/M
+Kristine/M
+Kristofferson/M
+Kristy/M
+kriya/SM
+Krizan/SM
+Kroger/SM
+Krohn/M
+kromesky/MS
+krona/M The official currency of Sweden
+krone/M
+Kronecker/M
+Kroneckerian/SM
+kronen/M
+Kronenberg/M
+kroner/M Plural of krone
+Kronmiller/M
+kronor/M Plural of krona
+Kronos/M
+kronur/SM
+Kropotkin/M
+Krouse/M
+Kru/M
+Krueger/SM
+Kruger/SM
+Krugman/M
+Krum/M
+krummhorn/SM
+Kruno/M
+Krupp/M
+Kruse/M
+Kruskal/M
+krypton/SM
+kryptonite/M Noun: uncountable
+Krzanich/M
+KS
+Ks
+Kshatriya/MS
+kt.
+Ku/SM
+Kuala/M
+Kuan/SM
+Kubiak/M
+Kublai/M
+Kubrick/M
+Kubuntu/M
+Kudlow/M
+kudos/M Noun: uncountable
+kudu/SM
+kudzu/SM
+Kuechly/M
+Kuenen/M
+Kuenning/M
+Kufic/M
+Kuhlthau/M
+Kuhn/M
+Kühn/M
+Kuiper/M
+kuiperoid/SM
+Kuiti/M
+Kuk-ryol/M
+Kukan/M
+kukri/MS
+Kukuk/M
+kulak/SM
+kulan/MS
+Kullback/M
+Kumagaya/M
+Kumakiri/M
+Kumar/M
+Kumara/M
+kumara/SM
+Kumari/M
+Kumaris/M
+Kumasi/M
+Kumble/M
+Kumeu/M
+Kümmel/M
+Kummer/M
+kumquat/SM
+Kuna/M
+Kundakunda/M
+kundalini/SM
+kung kung fu
+Kunis/M
+Kunkler/M
+Kunming/M
+Kunte/M
+Kuntze/M
+Kuomintang/M
+kurbash/MS
+Kurchatov/M
+kurchatovium/M Noun: uncountable
+Kurd/MS~
+Kurdi/M
+Kurdistan/M
+Kurile
+Kurmann/M
+Kuroda/M
+Kurosawa/M
+Kurose/M
+Kurow/M
+kurrajong/MS
+kursaal/MS
+Kurt/M
+kurta/SM
+Kurtis/M
+kurtoses
+kurtosis/SM
+Kurtz/M
+Kurtzman/M
+Kuru/M
+Kurzweil/M
+Kusch/M
+Kush/M
+Kushi/M
+Kuster/SM
+Kutaisi/M
+Kutch/M
+Kutcher/SM
+Kutchinsky/M
+Kutuzov/M
+Kuwait/M
+Kuwaiti/SM
+Kuzma/M
+kV
+kvass/SM
+kW
+Kwan/SM
+KwaNdebele/M
+kwanza/SM
+kwashiorkor/SM
+KwaZulu-Natal/M
+KwaZulu/M
+kWh
+Kwikpen/M
+kyanise/SGDJ
+kyanite/WSM
+kyanize/SGDJ
+kybosh/SGDM
+Kydland/M
+Kyffin/M
+Kyle/MS
+kyle/SM
+Kyleakin/M
+Kyleigh/M
+Kylie/M
+kylikes Plural of kylix
+kylin/MS
+kylix/SM
+Kylo/M
+Kyloe/M
+kyloe/MS
+Kyme/M
+kymograph/SMW
+kymography/M Noun: usually uncountable
+Kynnersley/M
+Kyoto/M
+kyphoses
+kyphosis/M
+kyphotic
+Kyre/M
+Kyrgyzstan/M
+Kyriakidou/M
+Kyrie/MS
+kyu/SM
+kyudo/M Noun: uncountable
+Kyushu/M
+L'Ancienne-Lorette/M
+L'Assomption/M
+L'Épiphanie/M
+L'Érable/M
+L'Île-Cadieux/M
+L'Île-Dorval/M
+L'Île-Perrot/M
+L'Islet/M
+L-plate/SM
+l/3
+l10n/M Abbreviation of localization
+La'youn/M
+la/M
+La/MS
+laager/MSd
+lab/oMS
+Lab/SM
+labarum/MS
+Labatt/M
+labdanum/M Noun: usually uncountable
+labefaction/M Noun: uncountable
+label/aGDSA
+label/DMr
+labella/M Plural of labellum
+labelling/SM
+labellum/M
+labelmate/SM
+Labette/M
+labia/M
+labial/SM
+labialism/M Noun: uncountable
+labialize/SGDJ
+labiaplasty/SM
+labiate/MS
+labile
+lability/SM
+labiodental/SM
+labium/M
+laborant/SM
+laboratory/SMO
+laborious/YP
+labour-intensive
+labour-saving
+labour/JShRikGDM
+Labourd/M
+laboured/MP
+Laboureur/M
+labouring/M
+labra/MO
+labradoodle/SM
+Labrador/SM
+labradorite/M Noun: usually uncountable
+labret/MS
+labroid/SM
+labrum/M
+Labrusca/M
+Labunski/M
+laburnum/MS
+labyrinth/SMO
+labyrinthial
+labyrinthian Adjective
+labyrinthic/O
+labyrinthine/Y
+labyrinthitis/M
+Lac-Delage/M
+Lac-Mégantic/M
+Lac-Saint-Jean-Est/M
+Lac-Saint-Joseph/M
+Lac-Sergent/M
+lac/DGSM
+Lac/M
+Lacaille/M
+Lacan/M
+Lacanian/SM
+Lacanianism/M Noun: uncountable
+Laccadive Laccadive Islands
+lacceroic
+laccolith/MS
+lace-ups
+lace/M
+lace/USGD
+Laceby/M
+Lacedaemonian/SM
+lacer/MV
+lacerable
+lacerate/GDnS
+lacertian/SM
+lacertiform Adjective
+lacertilian/SM
+lacertine/SM
+lacertoid/SM
+lacery/SM
+lacewing/MS
+lacewood/M Noun: uncountable
+lacework/M Noun: uncountable
+Lacey/M
+Lach/M
+Lachaud/M
+laches/M
+Lachman/M
+lachryma/M
+lachrymal/SM
+lachrymation/M Noun: usually uncountable
+lachrymator/MS
+lachrymatory/SM
+lachrymose/Y
+Lachute/M
+lacing/M
+laciniate/D
+lack/MS
+lackadaisical/YP
+Lackawanna/M
+lackey/MDGS
+Lackford/M
+Lackland/M
+lacklustre/SM
+Laclede/M
+Lacock/M
+Lacombe/M
+Laconia/M
+Laconian/SM
+laconic/Y
+laconicism/SM
+laconism/MS
+lacquer/SrdM
+lacquerware/SM
+lacquerwork/SM
+lacrimal/SM
+lacrimation/M Noun: usually uncountable
+lacrimator/MS
+lacrimatory/SM
+lacrosse/MS
+lacrymal/SM
+lacrymation/M
+Lacs/M
+lactam/SM
+Lactantius/M
+lactate/SMnDxG
+lacteal/SM
+lactescence/SM
+lactescent
+lactic
+lactiferous
+lactobacilli
+lactobacillus
+lactometer/MS
+lactone/SM
+lactoprotein/SM
+lactose/SM
+lacuna/SMO
+lacunae/M
+lacunar/SM
+lacunarity/MS
+lacunary
+lacunose Adjective
+Lacus Lacus Magni
+lacustrine Adjective
+Lacy/M
+lacy/T
+lad/MRDJSG
+Ladakh/M
+ladanum/M
+Ladbroke/MS
+Ladbrooke/M
+Ladd/M
+ladder/d
+laddie/MS
+laddish/P
+laddoo/SM
+laddu/SM
+lade/ZG
+Laden/M
+laden/Uc
+Ladies/M
+ladify/SGDJ
+Ladin/M
+lading/M
+Ladino/SM
+ladino/SM
+Ladislaus/M
+ladle/6GSMDr
+Ladock/M
+Ladoga/M
+ladoo/SM
+ladrone/SM
+lady-killer/SM
+Lady/M
+lady/MS
+Ladybank/M
+ladybird/SM
+ladybug/SM
+ladyfy/SGDJ
+ladyhood/M Noun: uncountable
+Ladykirk/M
+ladylike
+ladylove/MS
+Ladyship/MS
+ladyship/SM
+Ladysmith/M
+Ladywell/M
+Laerhoven/M
+Laetrile/M
+laetriles
+laevorotation/SM
+laevorotatory Adjective
+laevulose/SM
+Lafayette/M
+Laffont/M
+Lafourche/M
+lag/SMrDJGR
+lagena/M
+lagenae/M Plural of lagena
+Laggan/M
+laggard/PYMS
+lagging/M
+laggy/T
+lagomorph/MS
+Lagomorpha Taxonomic order
+lagoon/SMO
+Lagos/M
+Lagrange/M
+LaGrange/M
+Lagrangian/M
+Laguerre/M
+Laguna/M
+lah/MS
+lahar/MS
+Lahore/M
+laic/MSOY
+laicisation/MS
+laicise/SGDJ
+laicity/SM
+laicization/MS
+laicize/SGDJ
+laid/Aacf
+Laigh/M
+lain/fc
+Laindon/M
+Laing/M
+Laingholm/M
+Lainston/M
+lair/MGDS
+lairage/MS
+laird/SM
+Lairg/M
+lairy/T
+Lais/M
+laissez
+laissez-faire
+laity/MS
+Lajes/M
+Lakatos/M
+Lake/M
+lake/SM
+lakebed/SM
+lakefront/SM
+Lakehurst/M
+Lakeland/M
+lakelet/MS
+Lakenham/M
+Lakenheath/M
+Lakes/M
+lakeside/S
+Lakeville/M
+Lakeway/M
+Lakewood/M
+Lakoff/M
+Lakota/SM
+Lakshadweep/M
+Lakshmi/M
+Lalande/M
+Laleham/M
+Laleston/M
+Lalita/M
+Lallans
+Lalo/M
+lam/DSG~
+Lama
+lama/SM
+Lamaism/M Noun: uncountable
+Lamaist/MS
+Lamar/M
+Lamarck/M
+Lamarckian/MS
+Lamarckism/M Noun: uncountable
+Lamarsh/M
+lamasery/SM
+Lamaze/M
+Lamb/M
+lamb/MGDSr
+lambada/SM
+Lambarde/M
+lambast/S
+lambaste/GSD
+lambda/MS
+Lambdin/M
+Lambeg/M
+lambency/MS
+lambent/Y
+Lamberhurst/M
+Lambert/M
+lambert/MS
+Lambeth/M
+lambkin/SM
+Lambley/M
+lamblike
+Lamborghini/MS
+Lambourn/M
+Lambourne/M
+lambrequin/MS
+Lambrigg/M
+Lambrook/M
+lambskin/MS
+Lambston/M
+lambswool/SM
+Lambton/M
+lamé
+Lamé/M
+lame/YDPTr
+lamebrain/MS
+lamed/SM
+lamella/SM
+lamellae/M Plural of lamella
+lamellar
+lamellate
+lamellibranch/MS
+Lamellibranchia
+lamellibranchs
+lamellicorn/MS
+lamelliform
+lamellipodia/OM
+lamellipodium/M
+lamellose
+lament/SMnDlG7r
+lamentable/P
+Lamerton/M
+Lamesley/M
+Lamey/M
+lamina/Mn
+laminae/M
+laminar
+laminate/DGS
+lamination/SM
+Lamington/M
+laminose
+lamium/SM
+Lamlash/M
+Lammas/M
+lammergeier/SM
+lammergeyer/SM
+Lamoille/M
+Lamont/M
+Lamorran/M
+lamotrigine/M Noun: uncountable
+lamp-post/SM
+lamp/GDSMrp
+Lampasas/M
+lampblack/SM
+lampbrush/SM
+Lampeter/M
+Lamphey/M
+lamplight/RSM
+lamplit
+Lamplugh/M
+lampoon/SDGM3
+lampooner/SMZ
+Lamport/M
+lamppost/SM
+lamprey/SM
+lamprophyre/SM
+lampshade/MS
+lampstand/SM
+Lamyat/M
+Lamyatt/M
+LAN/SM
+Lana/M
+Lanai/M
+Lanark/M
+Lanarkshire/M
+Lanaudière/M
+Lanbadarn/M
+Lanbadog/M
+Lancashire/M
+Lancaster/M
+Lancastrian/SM
+Lancaut/M
+lance/DRGMS
+lancelet/SM
+Lancelot/M
+lanceolate/SM
+lancet/MS
+lancewood/M
+Lanchester/M
+Lancing/M
+land-use
+Land/M
+land/mJDRGSMp
+Landahaussy/M
+landau/M
+Landauer/M
+landaulet/MS
+landaus
+Landbeach/M
+Landcross/M
+lander/eMS
+Landewednack/M
+landfall/SM
+landfill/SD
+Landford/M
+landform/SM
+landgrave/MS
+landgraviate/MS
+landhold/RGJ
+landing/M
+Landis/M
+Landkey/M
+landlady/SM
+ländler/SM
+landlessness
+landline/SM
+landlocked
+landlord/SM
+landlordism/M Noun: usually uncountable
+landlubber/MS
+landmark/SDGM
+landmass/MS
+landmine/SM
+Landmoth-cum-Catto/M
+landnam/M
+Lando/M
+Landon/M
+Landore/M
+landowner/SM
+landownership/M
+landowning/SM
+landplane/SM
+landrace/SM
+landrail/SM
+Landrake/M
+Landry/M
+Landsburg/M
+landscape/GRMSD3
+landside/SM
+landslide/SM
+landsliding/SM
+landslip/SM
+Landulph/M
+landward/S
+Landwehr/M
+Landyrnog/M
+lane/SM
+Laneast/M
+Laneham/M
+Lanercost/M
+Laneshaw/M
+Laney/M
+Lanfeugan/M
+Lang/M
+Langar/M
+Langbank/M
+Langbar/M
+Langcliffe/M
+Langdon/M
+Lange/M
+Langenhoe/M
+Langer/M
+Langerhans/M
+Langford/M
+Langham/M
+Langhans/M
+Langho/M
+Langholm/M
+Langlade/M
+Langland/M
+Langley/M
+Langlois/M
+Langmack/M
+Langney/M
+langouste/SM
+langoustine/SM
+Langport/M
+Langridge/M
+Langrish/M
+Langriville/M
+Langsett/M
+Langshott/M
+Langside/M
+Langston/M
+Langstone/M
+Langthorne/M
+Langthorpe/M
+Langtoft/M
+Langton/M
+Langtree/M
+language/SM
+LanguageTool/M
+Languedoc/M
+languid/PY
+languish/SkDGr
+languishment/SM
+languor/SM
+languorous/Y
+langur/SM
+Langwathby/M
+Langwith/M
+Langworth/M
+Lanham/M
+Lanhydrock/M
+Lanier/M
+Lanihorne/M
+Lanilterne/M
+Lanivet/M
+lank/T2PYZ
+Lanka/M
+Lankan/SM
+Lankenau/M
+Lankester/M
+lanky/TPY
+Lanlivery/M
+Lanmartin/M
+Lanner/M
+lanner/MS
+lanneret/MS
+Lanning/M
+lanolin/SM
+Lanreath/M
+Lansallos/M
+Lansbury/M
+Lansdale/M
+Lansdowne/M
+Lansing/M
+Lansky/M
+Lansley/M
+lansoprazole/M Noun: uncountable
+lansquenet/SM
+Lantana/M
+Lantarnam/M
+Lanteglos/M
+Lanteglose/M
+lantern/MS
+lanthanide/SM
+lanthanocene/SM
+lanthanum/SM
+lanthorn/MS
+Lantus/M
+lanugo/M
+lanyard/SM
+Lanza/M
+Lanzhou/M
+Laodicea/M
+Laodicean/MS
+Laoghaire/M
+Laois/M
+Laos/M
+Laotian/SM
+Laoze/M
+lap/DScGM
+laparoscope/SM
+laparoscopic/Y
+laparoscopy/SM
+laparotomy/SM
+lapboard/MS
+lapdog/SM
+Lapeer/M
+lapel/DMS
+Lapford/M
+lapful/MS
+Laphroaig/M
+lapidary/SM
+lapidate/SGDN
+lapidify/SGD
+lapilli/M
+lapin/MS
+lapis
+Laplace/M
+Laplacian
+Lapland/RM
+Lapley/M
+LaPorte/M
+Lapp/MS
+lapper/MS
+lappet/MS
+Lappish/M
+laps/SGD
+lapse/FDAGS
+lapse/M
+lapser/AM
+lapstone/MS
+lapsus
+laptop/MS
+lapwing/SM
+Lapworth/M
+Lara/M
+Larabel/M
+Laramie/M
+Larbert/M
+larboard/SM
+larcener/MS
+larcenous
+larceny/SM3
+larch/MS
+lard/DGr
+lard/FMS
+lardon/MS
+lardoon/MS
+lardy/T
+Laredo/M
+large-scale
+Large/M
+large/TPY
+largehearted
+largemouth
+largen/S
+largened
+largening
+largess/SM
+largesse/SM
+larghetto/MS
+largish
+Largo/M
+largo/SM
+Largoward/M
+Largs/M
+Largy/M
+lariat/DSGM
+Larimer/M
+Larine/M
+Larissa/M
+lark/MGDSZr
+Larkfield/M
+Larkhall/M
+Larkin/M
+Larkspur/M
+larkspur/SM
+Larling/M
+Larne/M
+Larner/M
+Larousse/M
+larrikin/MS
+larrup/S
+larruped
+larruping/S
+Larry/M
+Lars/M
+Larsen/M
+Larson/M
+Larsson/M
+Larue/M
+larva/MO
+larvae/M Plural of larva
+larvicide/MS
+Larwood/M
+laryngeal/SY
+laryngealised
+laryngectomy/SM
+larynges
+laryngitides
+laryngitis/M
+laryngology/3M
+laryngoscope/SM
+laryngoscopy/SM
+laryngospasm/MS
+laryngotomy/SM
+larynx/M
+lasagna/M
+lasagne/M
+LaSalle/M
+Lasborough/M
+Lascaux/M
+Lascelles/M
+lascivious/YP
+lase/SRG
+laserdisc/SM
+LaserJet/M
+lash-up
+lash/rGJMDSp
+Lasham/M
+lashing/M
+Lashmer/M
+Laskin/M
+lasque/MS
+lass/MS
+Lassa
+Lassell/M
+Lassen/M
+Lasseter/M
+lassie/SM
+Lassington/M
+lassitude/MS
+lasso/MSDGr
+Lasswade/M
+last-ditch
+last-minute
+last/YDGSkJr
+lastage
+lasting/P
+Lastingham/M
+Laszlo/M
+László/M
+Latah/M
+Latakia/M
+latanoprost/M Noun: uncountable
+latch/GMDS
+latchet/MS
+Latchford/M
+latching/M
+Latchingdon/M
+latchkey/SM
+late/YTP~
+latecomer/MS
+lateen/SM
+laten/S
+latency/SM
+latened
+latening
+latent/Y
+later/A
+laterad Adverb
+lateral/FSY
+lateralise/SGDN
+laterality/SM
+lateralize/SGDN
+lateralizer
+lateralward
+Lateran/M
+laterigrade Adjective
+laterite/W
+latest/S
+LaTeX/M
+latex/SM
+Latgalian/MS
+lath/SDRyGM
+Latham/M
+Lathbury/M
+lathe/SM
+lather/dr
+Latheron/M
+Lathia/M
+lathing/M
+Lathom/M
+Lathrop/M
+latices
+laticifer/SM
+laticiferous
+Latifah/M
+latifundia/M Plural of latifundium
+Latimer/M
+Latin-American/S
+Latin/SM3
+Latina/SM
+Latinate
+Latinise/SGDNR
+Latinism/SM
+Latinity/SM
+Latinize/SGDNR
+Latino/SM
+Latinx/SM
+latish
+latitude/MS
+latitudinal/Y
+latitudinarian/SM
+latitudinarianism/M Noun: usually uncountable
+latitudinary
+Latium/M
+latria/M Noun: usually uncountable
+latrine/SM
+Latrobe/M
+latte/SM
+latten/M
+latter-day
+latter/YM
+lattermath/SM
+lattermost
+lattice/GSDM
+latticework/SM
+latticing/M
+Lattimer/M
+Latton/M
+Latuda/M
+Latvia/M
+Latvian/SM
+Lau/M
+laud/SMlDG7r
+Lauda/M
+laudability/M Noun: uncountable
+laudanum/MS
+laudation/SM
+laudative
+laudatory
+Lauder/M
+Lauderdale/M
+Lauderhill/M
+Laue/M
+Laufer/M
+laugh/7RSlGkDJ
+laughable/P
+Laugharne/M
+laughing/M
+laughingstock/SM
+laughter/SM
+Laughterton/M
+Laughton-en-le-Morthen/M
+Laughton/M
+Launce/M
+launce/MS
+Launcells/M
+Launceston/M
+launch/GADS
+launcher/SM
+launching/S
+Launchpad/M
+launchpad/SM
+Laund/M
+Launde/M
+launder/rdS
+launderette/MS
+laundress/SM
+laundrette/SM
+laundromat/SM
+laundry/5SmM
+Launton/M
+Lauper/M
+Laura/M
+Laurasia/M
+Laurasian
+Laureate
+laureate/SM
+laureateship/MS
+Laurel/M
+laurel/SMDG
+Laurelvale/M
+Lauren/MS
+Laurence/M
+Laurencekirk/M
+Laurent/M
+Laurentides/M
+Laureus Laureus World Sports Awards
+lauric
+Laurie/M
+Laurieston/M
+Laurinburg/M
+Lauriston/M
+Lauro/M
+laurustinus
+lauryl
+Lausanne/M
+Lautner/M
+lava/SM
+lavabo/SM
+Lavaca/M
+lavage/SM
+Laval/M
+lavalier/SM
+Lavaltrie/M
+Lavanify
+Lavant/M
+lavatera/SM
+lavatory/SMO
+lave/DSGnr
+lavender/dSM
+Lavendon/M
+Lavenham/M
+Laver/M
+Lavernock/M
+Laverstock/M
+Laverstoke/M
+Laverton/M
+Lavery/M
+LaVey/M
+LaVeyan/SM3
+LaVeyanism/M
+Lavin/M
+Lavington/M
+lavish/DPTSGY
+Lavrov/M
+law-abiding
+law/eSM
+Law/M
+lawbreaker/SM
+lawbreaking/SM
+Lawers/M
+lawfare/M Noun: uncountable
+Lawford/M
+lawful/UY
+lawfulness/MS
+lawgiver/SM
+lawgiving/M
+Lawhitton/M
+Lawkland/M
+lawks
+Lawler/M
+lawless/PY
+Lawley/M
+lawmaker/SM
+lawmaking/M
+lawman/M
+lawmen/M
+Lawn/M
+lawn/MSZD
+Lawndale/M
+lawnmower/SM
+Lawrence/M
+Lawrenceburg/M
+Lawrencetown/M
+Lawrenceville/M
+lawrencium/M
+Lawrenny/M
+Lawrentian/MS
+Lawrie/M
+Lawshall/M
+Lawson/M
+lawsuit/SM
+Lawton/M
+lawyer/YMdS
+lax/vuTYSPV
+laxative/SMP
+Laxay/M
+Laxdale/M
+Laxfield/M
+laxity/MS
+Laxton/M
+lay-by
+lay-bys
+lay-off/SM
+lay/CRGS
+layabout/MS
+Laycock/M
+Layer-de-la-Haye/M
+layer/dC
+Layer/M
+layering/SM
+Layerthorpe/M
+layette/SM
+Layham/M
+laying/ca
+Layla/M
+layman/M
+laymen/M
+Layne/M
+layout/SM
+layover/MS
+laypeople/M
+layperson/SM
+lays/faAec
+layshaft/SM
+Laysters/M
+Layston/M
+Laythorpe/M
+Layton/M
+layup/MS
+laywoman/M
+laywomen/M
+Layzell/M
+Lazar/3MS
+lazar/MS
+lazaret/MS
+lazaretto/MS
+Lazarus/M
+laze/GZDS
+Lazenby/M
+Lazio/M
+Lazo/M
+Lazonby/M
+lazuli/M
+lazy/GDTPY
+lazybones/M
+lb/S
+LBJ
+lbw
+LCCN/SM
+LCD/MS
+LCPs/M
+LDAP/M
+le/3zGDS
+Le/MS
+Lea-by-Backford/M
+Lea/M
+lea/SM
+leach/SDG
+lead-free
+lead/GSRD
+Lead/M
+leadable
+Leaden/M
+leaden/PY
+Leadenhall/M
+Leadenham/M
+leader/Mp
+leadership/MS
+leadwork/SM
+leadwort/M
+leaf-like
+leaf/pSD2GMZ
+leafage/SM
+leafbird/SM
+leafcutter/SM
+leafhopper/MS
+Leafield/M
+leaflessness/M Noun: uncountable
+leaflet/MdS
+leafstalk/MS
+leafy/T
+league/FMDGS
+League/M
+leaguer/SM
+Leah/M
+leak/DZSGMr
+leakage/SM
+Leake/M
+Leakey/M
+leaky/TP
+Leal/M
+Leamington/M
+lean-burn
+lean/JYGDTPSr
+Leander/M
+Leandro/M
+leaning/M
+Leanne/M
+leant
+Leão/M
+leap/DGSr
+Leap/M
+leapfrog/MSGD
+leapt
+Lear/ZM
+learn/UGSAD
+learnability/SM
+learnable
+learned/PY
+learner/SM
+learning/SM
+learnt
+leas/GRSD
+lease/ARGMSD
+leaseback/MS
+leasehold/RMS
+leash/GSUD
+leash/M
+leasing/M
+Leasingham/M
+least/S
+leastways
+leastwise
+leat/SM
+leather/SMZd2
+leatherback/SM
+leathercloth/SM
+Leatherdale/M
+leatherette/SM
+Leatherhead/M
+leathern
+leatherneck/SM
+Leathley/M
+leave-taking
+leave/RJMGS
+Leaveland/M
+Leavell/M
+leaven/dSMr
+Leavenheath/M
+Leavening/M
+leavening/M
+Leavenworth/M
+leaving/M
+Leawood/M
+Lebanese/M
+Lebanon/M
+Lebberston/M
+Lebel-sur-Quévillon/M
+Lebensform
+Lebenslust
+lebensraum/M
+lebensräume/M Plural of lebensraum
+lebensspur/M
+Lebenswelt
+Lebesgue/M
+lebkuchen/M
+Leblanc/M
+Lebowa/M
+Lebrun/M
+lecher/SMZ
+lecherous/YP
+lechery/SM
+Lechlade/M
+Lechner/M
+lecithin/SM
+lecithotrophic/Y
+Leck/M
+Leckby/M
+Leckford/M
+Leckhampstead/M
+Leckhampton/M
+Leckie/M
+Leckwith/M
+Leclanché/M
+Lecompton/M
+Leconfield/M
+Lecropt/M
+Lecter/M
+lectern/MS
+lectin/SM
+lection/MS
+lectionary/SM
+lector/SM
+lecture/RGDSM
+lectureship/SM
+lecythi/M
+lecythus/M
+LED/SM
+Leda/M
+Ledbury/M
+lederhosen/M
+ledge/DRMSZ
+Ledgers/M
+Ledru/M
+Ledsham/M
+Ledston/M
+Leduc/M
+Ledyard/M
+Lee-Enfield/M
+Lee-Metford/M
+Lee/M
+lee/SyM
+Leebotwood/M
+leech/GSMr
+leechcraft/M
+Leedham/M
+Leeds/M
+Leegomery/M
+Leek/M
+leek/MS
+Leekfrith/M
+Leelanau/M
+Leeming/M
+leer/DGkSM
+Leerssen/M
+leery/TP
+Lees/M
+Leesburg/M
+Leese/M
+Leeston/M
+Leeswood/M
+leet/MS
+Leete/M
+Leeuwenhoek/M
+leeward/SY
+leeway/SM
+Leflore/M
+left-click/SGD
+left-footed
+left-hand/DiRh
+left-wing/R
+left/T3SZ~
+leftie/M
+leftism/MS
+leftmost
+leftover/MS
+leftward/S
+lefty/S3M
+leg-bye
+leg-cutter
+leg-spinner/MS
+leg/omDSbM2pGJZn
+legacy/SM
+legal/3Q8q-S
+legalese/MS
+legalism/MS
+legalistic/Y
+legalitarian/SM
+legality/ISM
+legally/I
+legals/I
+Legaré/M
+legate's/C
+legate/CDASnG
+legatee/MS
+legateship/MS
+legatine
+legation/AMC
+legato/SM
+legator/MS
+Legba/M
+Legbourne/M
+legend/MS
+legendary/YS
+Legendre/M
+legendry/M Noun: usually uncountable
+Léger/M
+legerdemain/MS
+Legerwood/M
+legging/M
+leggy/TP
+Legh/M
+leghorn/MS
+Leghorn/MS
+legibility/MIS
+legible/IY
+legible/Y
+legion/DSMy
+legionary/SM
+legionella/M
+legionellae/M
+legionnaire/SM
+legislate/vVSGnD
+legislative/S
+legislator/MS
+legislature/MS
+legist/MS
+legit/SM
+legitimacy/ISM
+legitimate/SYGQND
+legitimateness/M Noun: uncountable
+legitimatise/SGDN
+legitimatize/SGDN
+legitimise/SGDNR
+legitimism/M Noun: usually uncountable
+legitimist/MS
+legitimize/DnG
+Lego/M
+legomena hapax legomena
+legomenon hapax legomenon
+legrandite/M
+legroom/SM
+Legsby/M
+legstraps
+leguleian/SM
+legume/SM
+legumen
+legumin/SM
+legumine/M Noun: uncountable
+leguminoid Adjective
+leguminous
+legwork/MS
+Leh/M
+Lehi/M
+Lehigh/M
+Lehman/M
+Lehmann/M
+Lehmer/M
+lehr/MS
+Lehrman/M
+lei/SM
+Leia/M
+Leiber/M
+Leibler/M
+Leibniz/M
+Leibnizian/MS
+Leica/M
+Leicester/M
+Leicestershire/M
+Leick/M
+Leiden/M
+Leif/M
+Leigh-on-Mendip/M
+Leigh-on-Sea/M
+Leigh/MS
+Leighfield/M
+Leighland/M
+Leighlin/M
+Leighterton/M
+Leighton-Linslade/M
+Leighton/M
+Leila/M
+Leinster/M
+Leinthall/M
+Leintwardine/M
+leiomyoma/SM
+leiomyomata
+leiomyomatous
+Leipzig/M
+Leire/M
+leishmaniasis/M
+leister/MS
+leistered
+leistering/M
+Leiston/M
+leisure/MSYD
+leisurely/P
+leisurewear/M Noun: uncountable
+Leitão/M
+Leith/M
+leitmotif/MS
+leitmotiv/SM
+Leitrim/M
+Leix/M
+Lejeune/M
+Leland/M
+Lelant/M
+leman/MS
+Lemann/M
+Lemberg/M
+Lemington/M
+Lemke/M
+lemma/MS
+lemmata/M
+lemmatise/SGDN
+lemmatize/SGDN
+lemme/JG
+lemming/SM
+lemniscate/SM
+lemnisci/M
+lemniscus/M
+Lemon/M
+lemon/MS
+lemonade/SM
+lemongrass/M Noun: usually uncountable
+Lemont/M
+lemonwood/SM
+lemony
+Lemoore/M
+Lempel/M
+Lemreway/M
+lemur/SM
+Len/M
+Lena/M
+Lenah/M
+Lenawee/M
+Lenborough/M
+Lench/M
+Lenchwick/M
+lend/SRG
+lendable
+Lenexa/M
+length/zSZ2M
+lengthen/Sdr
+lengthman/M
+lengthmen/M
+lengthsman/M
+lengthsmen/M
+lengthways
+lengthwise
+lengthy/T
+Lenham/M
+lenience/ZSM
+leniency/SM
+lenient/SMY
+Lenin/M
+Leninakan/M
+Leningrad/M
+Leninism/M Noun: uncountable
+Leninist/SM
+Leninite/SM
+lenite/SGD Verb
+lenition/SM
+lenitive/SM
+lenity/SM
+Lennie/M
+Lennon/M
+Lennox/M
+Lennoxtown/M
+Lenny/M
+Leno/M
+leno/MS
+Lenoir/M
+Lenore/M
+Lenovo/M
+Lenox/M
+lens/rMGDSp
+Lensfield/M
+Lenski/M
+Lenstra/M
+lent
+Lenten/M
+Lenthall/M
+lenticel/SM
+lenticular
+lentiform
+lentigines Plural of lentigo
+lentigo/M
+lentil/SM
+lentisk/SM
+lentissimo
+lentivirus/SM
+lento/SM
+lentogenic
+lentoid Adjective
+Lenton/M
+Lentz/M
+Lenzie/M
+Leo/M
+Leochel-Cushnie/M
+Leominster/M
+Leon/M
+Leona/M
+Leonard/M
+Leonardo/M
+Leonards/M
+Leone/M
+Leong/M
+Leonhard/M
+Leoni/M
+Leonid/MS
+Leonidas/M
+Leonine/MS
+leonine/SM
+Leonov/M
+leopard-skin
+leopard/SM
+leopardess/MS
+leopardskin/SM
+Leopold/M
+Leopoldville/M
+Leoš/M
+Léotard/M
+leotard/SM
+Lepe/M
+leper/SM
+lepidolite/SM
+Lepidoptera Taxonomic order
+lepidoptera/M
+lepidopteran/SM
+lepidopterist/SM
+lepidopterous
+leporine Adjective
+Leppard/M
+Lepperton/M
+leprechaun/SM
+lepromatous
+leprosarium/SM
+leprosity/SM
+leprosy/DSM
+leprous/Y
+lepta/M
+leptin/SM
+leptocephali/MW
+leptocephalous
+leptocephalus/M
+leptomeningeal
+leptomeninges
+lepton/SMW
+leptonium/SM
+leptospirosis
+leptotene/SM
+Lepus/M
+Lequeux/M
+LeRay/M
+Lermond/M
+Leroux/M
+Leroy/M
+Lerwick/M
+Léry/M
+Lesbian
+lesbian/MS
+lesbianism/MS
+lesbigay/SM
+lesbo/SM
+Lesbos/M
+Lesbury/M
+lesion/GDMS
+Lesley/M
+Leslie/M
+Lesmahagow/M
+Lesmoir/M
+Lesnar/M
+Lesnewth/M
+Lesotho/M
+less
+Less/M
+lessee/SM
+lesseeship/S
+lessen/dS
+lesser
+Lessingham/M
+Lessler/M
+lesson/dMS
+lessor/MS
+lest
+Lester/M
+lestobioses
+lestobiosis/M
+lestobiotic/Y
+Leswalt/M
+let-down/SM
+let-out
+let/URMGS
+Letcher/M
+Letchworth/M
+Letcombe/M
+lethal/Y
+lethality/SM
+Letham/M
+lethargica
+lethargy/1SMW
+Lethbridge/M
+Lethe/M
+Lethean
+Lethendy/M
+Letheringham/M
+Letheringsett/M
+Lethnot/M
+Letitia/M
+Leto/M
+Lett/SM~
+letter/drmJp
+letterbox/SM
+Letterbreen/M
+letterform/SM
+lettergram/SM
+letterhead/MSD
+lettering/M
+Letterkenny/M
+Lettermanesque
+lettermonger/SM
+letterpress/MS
+letterset/M
+Lettershendoney/M
+Letterston/M
+Lettic/M
+letting/SM
+Letton/M
+lettuce/MS
+letup/SM
+Letwell/M
+Leuchars/M
+leucine/SM
+leucocidin/SM
+leucocratic
+leucocyte/SMW
+leucoderma/M
+leucoma/MS
+leucorrhoea/SM
+leucotome/SM
+leucotomy/SM
+Leucu/M
+Leucus/M
+leukaemia/SMW
+leukaemogen/W
+leukaemogenesis/M Noun: uncountable
+leukocyte/MS
+leukodystrophy/SM
+leukoerythroblastic
+leukotriene/SM
+Leung/M
+Leupp/M
+Leuschner/M
+Leuven/M
+Lev/M
+Levada/M
+Levan/M
+Levant/M
+levant/SGDJ
+levanter/MS
+Levantine/MS
+LeVar/M
+levator/SM
+levee/SM
+level-headed/YP
+level/SMDTPRGY
+Levelland/M
+Leveller/MS
+Levemir/M
+Leven/MS
+lever/dMS
+Lever/M
+leverage/DMGS
+Leverburgh/M
+leveret/MS
+Leverhulme/M
+Leverington/M
+Levern/M
+Leverton/M
+levetiracetam/M
+Lévi/M
+Levi/SM
+leviable
+Leviathan/M
+leviathan/SM
+levigate/DGS
+levigation/MS
+levin/M
+Levin/M
+Levine/M
+Levington/M
+Levinson/M
+levirate/M
+leviratic/O
+Lévis/M
+Levisham/M
+Levison/M
+levitate/DGSn
+Levite/MSw
+Leviticus/M
+Levitra/M
+Levitt/M
+levity/SM
+Leviviridae Taxonomic family
+levivirus/SM
+levocetirizine/M Noun: uncountable
+levodopa/M Noun: uncountable
+levofloxacin/M Noun: uncountable
+levonorgestrel/M Noun: uncountable
+Levor/M
+levothyroxine/M Noun: uncountable
+Levrant/M
+Levy/M
+levy/SDRG
+Lew/M
+Lewanika/M
+Lewannick/M
+lewd/TPY
+Lewellys/M
+Lewes/M
+Leweston/M
+Lewin/M
+Lewinsky/M
+Lewis/M
+lewis/M
+Lewisboro/M
+Lewisburg/M
+Lewisham/M
+lewisite/M Noun: uncountable
+Lewisohn/M
+Lewiston/M
+Lewisville/M
+Lewknor/M
+Lewoniewski/M
+Lewrie/M
+Lewtrenchard/M
+lex
+Lexden/M
+Lexell/M
+lexeme/SMW
+Lexham/M
+lexical/Y
+lexicographer/SM
+lexicography/1WwMS
+lexicology/SM3w1
+lexicon/SM
+lexigram/SM
+Lexington-Fayette/M
+Lexington/M
+lexis
+Lexus/M
+Ley/M
+ley/MS
+Leybourne/M
+Leyburn/M
+Leyden/M
+Leyen/M
+Leyland/M
+Leys/M
+Leysdown/M
+Leysters/M
+Leyte/M
+Leyton/M
+lez/M!
+Lezant/M
+Lezayre/M
+Leziate/M
+lezzes/!
+lezzie/SM!
+lg
+LG/M
+LGA
+LGBT
+LGPL/M
+LHA/M Data compression format
+Lhanbryde/M
+Lhasa/M
+Lhuyd/M
+Li/M
+liability/SAM
+liable
+liableness/A
+liaise/DSG
+liaison/MS
+Liam/M
+Liana/M
+liana/SM
+liane/SM
+Liang/M
+Lianna/M
+Lianne/M
+Liao/M
+Liaoning/M
+Liaotung/M
+liar/SM
+Lias
+Lib-Lab/SM
+lib/DGSnM
+Lib/Z
+libber/MS
+Libberton/M
+Libbie/M
+Libby/M
+libel/DRSMG
+libellous/Y
+liber
+Libera
+Liberace/M
+liberal/IY
+Liberal/M
+liberal/SM
+liberalise/DGnSR
+liberalism/MS
+liberalist/SMW
+liberality/SIM
+liberalize/DGSRn
+liberalness/SM
+liberaloid
+liberate/SGDn
+liberation/CM
+liberationism/M
+liberationist/SM
+liberative
+liberator/MCS
+Liberia/M
+Liberian/SM
+Liberman/M
+libero/SM
+libertarian/SM
+libertarianism/SM
+liberticide/SMO
+libertinage/M
+libertine/SM
+libertinism/M
+Liberton/M
+Liberty/M
+liberty/SM
+libertyless
+Libertyville/M
+liberum
+libidinal/Y
+libidinous/YP
+libido/MS
+libitum
+LIBOR/M
+libra/M
+Libra/M
+librae/M
+Libran/SM
+librarian/MS
+librarianship/SM
+library/SM
+librate/SGDn
+librational
+librator/SM
+libre/MS
+LibreOffice/M
+libretti/M
+libretto/3MS
+Libreville/M
+Librium/M
+Libya/M
+Libyan/SM
+lice/M
+licence/SGDMr
+licensable
+license/SGDMr
+licensee/SM
+licensor/MS
+licentiate/SM
+licentious/PY
+lichee/SM
+lichen/SM
+lichened
+lichenology/M Noun: uncountable
+lichenous
+Lichfield/M
+Lichtenberg/M
+Lichtenstein/M
+Lichty/M
+Licinius/M
+licit/IY
+lick/JDSGr
+lickerish/Y
+Lickey/M
+Licking/M
+licking/M
+Lickorish/M
+lickspittle/MS
+licorice/M Noun: usually uncountable
+lictor/SM
+lid/MpGDS
+lidar/SM
+Liddell/M
+Liddesdale/M
+Liddington/M
+Liden/M
+Lidgate/M
+Lidlington/M
+lido/SM
+Lidsing/M
+lie-down/SM
+lie-in/SM
+lie/DSM
+lie/FGcSf
+Lieber/M
+Lieberman/M
+Liebeskind/M
+Liebfraumilch/M
+Liebmann/M
+Liechtenstein/RM
+lieder
+lief
+Liège/M
+liege/SM
+liegeman/M
+liegemen/M
+lien/MS
+lier's
+lierne/MS
+lieu/M
+lieut
+lieutenancy/SM
+lieutenant/SM
+lieux
+LiF
+life-and-death
+life-force
+life-giving
+life-preserver
+life-raft/SM
+life-size/D
+life-support
+life-threatening
+life/RpM
+lifebelt/MS
+lifeblood/SM
+lifeboat/MS
+lifeboatman/M
+lifeboatmen/M
+lifebuoy/SM
+lifecycle/SM
+lifeform/SM
+lifeguard/SGDM
+lifeless/PY
+lifelike/P
+lifeline/SM
+lifelong
+lifesaver/SM
+lifesaving
+lifespan/SM
+lifestyle/SM
+lifetaking
+lifetime/MS
+lifework/MS
+lifeworld/SM
+Liff/M
+Liffey/M
+Lifford/M
+LIFO
+lift-off/MS
+lift/RDSGM7
+Lifton/M
+liftout/SM
+ligament/MSO
+ligamentary
+ligamentous
+ligand/MS
+ligase/SM
+ligate/nDSG
+ligature/MDGS
+Ligeia Ligeia Mare
+liger/SM
+light-fingered
+light-headed/P
+light-hearted/PY
+light-pen/MS
+light/YGMPSRDTJp~
+lightbulb/SM
+Lightcliffe/M
+lighted/CU
+lighten/drS
+lightening/M
+lighterage/M
+lighterman/M
+lightermen/M
+Lightfoot/M
+Lighthorne/M
+Lighthouse/M
+lighthouse/SM
+lighting/M
+lightning/DMS
+lightproof
+lights/CA
+lightsaber/SM
+lightsabre/SM
+LightScribe/M
+lightship/SM
+lightsome/Y
+lightsomeness/M
+lightweight/SM
+lightwood/SM
+lightwork/R
+ligneous
+lignify/SGDN
+lignin/M Noun: usually uncountable
+lignite/SM
+lignocaine/M Noun: uncountable
+lignocellulosic/SM
+lignoceric
+lignum
+ligroin/M
+ligulate
+ligule/SM
+Liguria/M
+Ligurian/SM
+Lijian/M
+like-minded
+like/DGE7S
+likeability/SM
+likeable/UP
+likeable/Y
+likelihood/UMS
+likeliness
+likely/TU
+liken/dS
+likeness/MS
+liker/SM
+likest
+likewise
+liking/MS
+Lila/M
+lilac/MS
+Lilbourne/M
+Lilburn/M
+Lilburne/M
+Lilford-cum-Wigsthorpe/M
+Lilford/M
+Lili/M
+Liliaceae
+liliaceous
+Liliana/M
+Lilienfeld/M
+Lilienthal/M
+Lilith/M
+Lilius/M
+Lille/M
+Lillee/M
+Lilleshall/M
+Lilley/M
+Lillian/M
+Lillie/M
+Lilliesleaf/M
+Lillings/M
+Lillingstone/M
+Lillington/M
+Lilliput/M
+Lilliputian/SM
+Lillqvist/M
+lilly
+Lilongwe/M
+lilt/SGDMk
+liltingness
+lily-livered
+lily-white
+lily/SDM
+Lima/M
+Limavady/M
+limb/SDMWp
+Limbaugh/M
+limber/dUS
+Limber/M
+limbo/DSMG
+Limburg/M
+Limburger/M
+lime/SZDMGp
+limeade/MS
+Limehouse/M
+limekiln/M
+Limekilns/M
+limelight/GMS
+limen/SM
+limepit/SM
+Limerick/M
+limerick/SM
+limescale/M Noun: uncountable
+Limestone/M
+limestone/MS
+limewash/SGD
+limewater/SM
+Limewoods/M
+Limey/MS
+limey/SM
+liminal
+liminality/SM
+Limington/M
+limit/rndpMSgl
+limitary
+limitate
+limitation/MC
+limitative
+limited/UC
+limitedly/U
+limitedness/M
+limiter/CMS
+limitless/PY
+limitrophe/SM
+limitrophous
+limits/C
+limn/DSG
+limnology/w3
+limnophile/MW
+limnophilous
+limo/SM
+limonene/SM
+limonite/WSM
+limousine/SM
+limp/rYPDGTSk
+Limpenhoe/M
+limpet/MS
+limpid/YP
+limpidity/SM
+limpkin/SM
+Limpley/M
+Limpopo/M
+Limpsfield/M
+limuli/M
+limulus/M
+limy/T
+Lin/M
+linage/SM
+Linby/M
+Linch/M
+Linchmere/M
+linchpin/SM
+Lincoln/M
+Lincolnshire/M
+Lincolnton/M
+Lincolnwood/M
+Lincrusta/M
+linctus/SM
+Lind/M
+Linda/M
+Lindahl/M
+Lindal/M
+Lindale/M
+lindane/SM
+Lindbeck/M
+Lindberg/M
+Lindbergh/M
+Linde/M
+Linden/M
+linden/MS
+Lindenhurst/M
+Lindenwold/M
+Linder/M
+Lindfield/M
+Lindford/M
+Lindfors/M
+Lindhurst/M
+Lindisfarne/M
+Lindley/M
+Lindon/M
+Lindores/M
+Lindquist/M
+Lindrick/M
+Lindridge/M
+Lindsay/M
+Lindsell/M
+Lindsey/M
+Lindstrom/M
+Lindwall/M
+line-up/S
+line/SmJRGMD
+lineae/M
+lineage/MS
+lineal/Y
+lineality/M Noun: usually uncountable
+lineament/MS
+linear/tYQ
+linearisation
+linearise/SGDNr
+linearity/FM
+linearity/SM
+linearize/SGDNr
+lineation/MS
+linebacker/MS
+lined/fUAe
+linefeed/SM
+lineman/M
+linemen/M
+linen/SM
+linenfold/M
+lines/eAf
+lineside/SM
+Linford/M
+ling/f
+Linga/M
+linga/SM
+lingam/SM
+Lingayen/M
+Lingen/M
+linger/drkS
+lingerie/SM
+Lingfield/M
+Lingner/M
+lingo/M
+Lingoed/M
+lingoes
+Lings/M
+lingua/Mo
+linguae/M
+lingual/SM
+lingualize/SGDJ
+linguicide/M Noun: uncountable
+linguiform
+linguine/M Noun: usually uncountable
+linguini/M Noun: usually uncountable
+linguist/MWS1
+linguistic/SO
+linguistician/SM
+linguodental/MS
+Lingwood/M
+Linhares/M
+linhay/MS
+liniment/SM
+lining/feA
+lining/M
+link-up/SM
+link/7RSMJDG
+linkability/M Noun: uncountable
+linkage/SM
+linkbait/M Noun: uncountable
+LinkedIn/M
+Linkenholt/M
+linkify/SGDN
+Linkinhorne/M
+linkman/M
+linkmen/M
+Links/M
+Linktown/M
+Linkwater/M
+Linley/M
+Linlithgow/M
+Linlithgowshire/M
+Linn/M
+linn/MS
+Linnaean/SM
+Linnaeus/M
+Linnean/SM
+linnet/MS
+lino/M
+Lino/M
+linocut/SM
+linoleate/SM
+linoleic
+linolenate/SM
+linolenic
+linoleum/SMD
+Linotype/MS
+linsang/SM
+linseed/MS
+Linstead/M
+linstock/SM
+lint/ZSMGr
+lintel/SM
+Linthouse/M
+Linthwaite/M
+Linton-on-Ouse/M
+Linton/M
+Lintrathen/M
+linty/T
+Linus/M
+Linux/SM
+Linuxen/M
+Linwood/M
+liny/T
+Linz/M
+lion/SM-s
+Lionel/M
+lioness/MS
+Lionet/M
+lionfish/SM
+lionhead/SM
+lionheart/SMD
+lionise/SGDN
+lionize/SGDNR
+Liouville/M
+Liouvillian
+lip-read/GSJ
+lip-reader
+lip-service
+lip-sync
+lip-synch
+lip/pSDZGM
+lipase/SM
+Liphook/M
+lipid/MS
+Lipitor/M
+liplike
+lipline/SM
+lipogenesis/M
+lipogenic
+lipogram/SM
+lipogrammatic
+lipography/M
+lipoic
+lipoid/SM
+lipolysis
+lipolytic
+lipoma/SM
+lipomata/M
+lipomatous
+lipophilic
+lipopolysaccharide/SM
+lipoprotein/SM
+liposarcoma/SM
+liposarcomata/M
+liposculpture/M Noun: uncountable
+liposome/SMO
+liposuction/SM
+lipoteichoic
+Lippershey/M
+Lippincott/M
+Lippizaner/MS
+Lippmann/M
+lippy/T
+Lipschitz/M
+Lipscomb/M
+Lipsky/M
+lipslide/SM
+lipstick/MS
+Liptak/M
+Lipton/M
+liq
+liquate/DGS
+liquation/MS
+liquefacient/MS
+liquefaction/MS
+liquefactive
+liquefiable
+liquefy/DRSG
+liquescent
+liqueur/MS
+liquid/9n8YPQ-SMsq
+liquidambar/MS
+liquidate/DGS
+liquidation/SM
+liquidator/MS
+liquidi/M
+liquidity/SM
+liquidus/M
+liquor/SM~
+liquorice/SM
+liquorishness/M
+lira/M
+liraglutide/M Noun: uncountable
+lire/M
+Lisa/M
+Lisbellaw/M
+Lisbeth/M
+Lisboa/M
+Lisbon/M
+Lisburn/M
+Liscard/M
+lisdexamfetamine/M Noun: uncountable
+lisinopril/M Noun: uncountable
+Liskeard/M
+Lisle/M
+lisle/MS
+Lislea/M
+Lismore/M
+Lisnadill/M
+Lisnarick/M
+Lisnaskea/M
+lisp/DGSMRk
+lispro/M Noun: uncountable
+Liss/M
+Lissajous/M
+Lissett/M
+Lissington/M
+lissom/P
+lissome/P
+list/DGJp
+listen/rdS7
+listenability/M Noun: uncountable
+listenership/SM
+Lister/SM
+listeria/M
+listing/M
+listless/PY
+Liston/M
+Listooder/M
+Lisvane/M
+Liszt/M
+lit/R
+Litany
+litany/MS
+Litcham/M
+Litchborough/M
+Litchfield/M
+litchi/SM
+Litchurch/M
+Lite-On/M
+literacy/SMI
+literal-minded
+literal/YSP
+literalise/SGD
+literalism/M Noun: usually uncountable
+literalist/SMW
+literality/SM
+literalize/SGD
+literary/PY
+literate/4NS
+literately/I
+literateness
+literates/IK
+literati
+literatim
+literation/SM
+literator/MS
+literature/MS
+litharge/SM
+lithe/YPTW
+lithesome
+Lithgow/M
+lithia/M
+lithiasis/M
+lithification/MS
+lithium/SM
+lithocene
+lithograph/RMZW1SDG
+lithography/MS
+lithology/SMw1W
+lithopanspermia/M Noun: uncountable
+lithophile/SM
+lithophyte/MS
+lithopone/SM
+lithosphere/WSM
+lithostratigraphy/W
+lithotomist/MS
+lithotomize/SGDJ
+lithotomy/SM
+lithotripsy/SM
+lithotripter/SM
+lithotriptic/SM
+lithotriptor/SM
+lithotrity/SM
+Lithuania/M
+Lithuanian/MS
+litigable
+litigant/MS
+litigate/SnDG
+litigator/SM
+litigious/PY
+Litlington/M
+litmus/SM
+litotes/M
+litre/SM
+litreage/MS
+litter/dr
+littérateur/SM
+litterbug/MS
+littermate/SM
+little-endian
+little-minded/P
+little/TP
+Littleborough/M
+Littlebourne/M
+Littlebredy/M
+Littlebury/M
+Littledean/M
+Littlefield Rowman & Littlefield (Publisher)
+Littleham/M
+Littlehampton/M
+Littlehempston/M
+Littlemore/M
+littleneck/M
+Littleover/M
+Littleport/M
+Littlethorpe/M
+Littleton/M
+Littleworth/M
+Littman/M
+Litton/M
+littoral/SM
+liturgics's
+liturgiology/M Noun: uncountable
+liturgy/S3M1w
+Litvinov/M
+Litz/M
+Liu/M
+Liurbost/M
+Live/M
+live/yRGTDPJY7S
+liveability/SM
+liveable/YP
+lived-in
+lived/Ae
+livelihood/SM
+livelong/SM
+lively/TPY
+liven/dSr
+liver/CdSZ
+liver/p~
+liveries/C
+liverishness/M
+Livermere/M
+Livermore/M
+livermorium/M Noun: uncountable
+Liverpool/M
+Liverpudlian/SM
+Liversedge/M
+liverwort/MS
+liverwurst's
+livery/DmMS
+Livesey/M
+livestock/MS
+livestream/SGD
+livid/PY
+lividity/M
+living/eA
+Livingston/M
+Livingstone/M
+Livonia/M
+Livorno/M
+lixiviate/DGS
+lixiviation/SM
+Liz/MZ
+lizard/MS
+lizardfish/SM
+Lizzie/MS
+Ljubljana/M
+ll/C
+llama/MS
+Llan-ddew/M
+Llan-faes/M
+Llan-Gan/M
+Llan-Y-Cefn/M
+Llan-y-Crwys/M
+Llanaber/M
+Llanaelhaearn/M
+Llanafan/M
+Llanallgo/M
+Llananno/M
+Llanarmon-yn-Iâl/M
+Llanarmon/M
+Llanarth/M
+Llanarthney/M
+Llanasa/M
+Llanbabo/M
+Llanbadarn-y-Garreg/M
+Llanbadarn/M
+Llanbadoc/M
+Llanbadrig/M
+Llanbadrog/M
+Llanbeblig/M
+Llanbedr-Goch/M
+Llanbedr/M
+Llanbedrog/M
+Llanberis/M
+Llanbeulan/M
+Llanbister/M
+Llanbleddian/M
+Llanblethian/M
+Llanboidy/M
+Llanbradach/M
+Llanbrynmair/M
+Llancaiach/M
+Llancarfan/M
+Llancillo/M
+Llandaff/M
+Llandanwg/M
+Llandawke/M
+Llanddaniel/M
+Llanddarog/M
+Llanddeiniolen/M
+Llanddeinol/M
+Llandderfel/M
+Llanddeusant/M
+Llanddew/M
+Llanddewi'r-cwm/M
+Llanddewi/M
+Llanddewibrefi/M
+Llanddoged/M
+Llanddoget/M
+Llanddona/M
+Llanddowror/M
+Llanddulas/M
+Llanddwywe/M
+Llanddyfnan/M
+Llandecwyn/M
+Llandefaelog/M
+Llandefalle/M
+Llandegai/M
+Llandegfan/M
+Llandegla/M
+Llandegley/M
+Llandegveth/M
+Llandeilo'r-Fan/M
+Llandeilo/M
+Llandeloy/M
+Llandenny/M
+Llandetti/M
+Llandeussant/M
+Llandevaud/M
+Llandewi/M
+Llandilo/M
+Llandinabo/M
+Llandinam/M
+Llandingad/M
+Llandissilio/M
+Llandogo/M
+Llandona/M
+Llandough-juxta-Cowbridge/M
+Llandough/M
+Llandovery/M
+Llandow/M
+Llandrillo/M
+Llandrindod/M
+Llandrinio/M
+Llandrygarn/M
+Llandudno/M
+Llandudwen/M
+Llandwrog/M
+Llandybie/M
+Llandyfaelog/M
+Llandyfeisant/M
+Llandyfodwg/M
+Llandyfriog/M
+Llandyfrydog/M
+Llandygai/M
+Llandygwnning/M
+Llandygwydd/M
+Llandyrnog/M
+Llandyry/M
+Llandysilio/M
+Llandysiliogogo/M
+Llandyssil/M
+Llandysul/M
+Llanedarn/M
+Llanedeyrn/M
+Llanedi/M
+Llanedwen/M
+Llanegryn/M
+Llanegwad/M
+Llaneilian/M
+Llanelen/M
+Llaneleu/M
+Llanelian/M
+Llanelidan/M
+Llanelli/M
+Llanelltyd/M
+Llanelly/M
+Llanelwedd/M
+Llanenddwyn/M
+Llanengan/M
+Llanenghenedl/M
+Llanerful/M
+Llanerfyl/M
+llanero/SM
+Llaneugrad/M
+Llanfachraeth/M
+Llanfachreth/M
+Llanfaelog/M
+Llanfaelrhys/M
+Llanfaethlu/M
+Llanfair-ar-y-bryn/M
+Llanfair-Pwllgwyngill/M
+Llanfair-y-Cummwd/M
+Llanfair-ym-Muallt/M
+Llanfair-yn-neubwll/M
+Llanfair-yn-Neubwll/M
+Llanfair-yng-Nghornwy/M
+Llanfair/M
+Llanfairfechan/M
+Llanfairisgaer/M
+Llanfairnantygof/M
+Llanfairorllwyn/M
+Llanfairtalhaiarn/M
+Llanfallteg/M
+Llanfarian/M
+Llanfawr/M
+Llanfechain/M
+Llanfechan/M
+Llanfechell/M
+Llanferres/M
+Llanfeugan/M
+Llanffinan/M
+Llanfflewyn/M
+Llanfiangel/M
+Llanfigael/M
+Llanfihangel-ar-Arth/M
+Llanfihangel-ar-arth/M
+Llanfihangel-Glyn-Myfyr/M
+Llanfihangel-y-Creuddyn/M
+Llanfihangel-yn-Gwynfa/M
+Llanfihangel-yn-Nhowyn/M
+Llanfihangel/M
+Llanfilo/M
+Llanfinian/M
+Llanfoist/M
+Llanfrechfa/M
+Llanfrothen/M
+Llanfrynach/M
+Llanfwrog/M
+Llanfyllin/M
+Llanfynydd/M
+Llanfyrnach/M
+Llangadfan/M
+Llangadock/M
+Llangadog/M
+Llangadwaladar/M
+Llangadwalader/M
+Llangaffo/M
+Llangain/M
+Llangamarch/M
+Llangan/M
+Llanganten/M
+Llangar/M
+Llangarron/M
+Llangasty/M
+Llangathen/M
+Llangattock-Vibon-Avel/M
+Llangattock/M
+Llangatwg/M
+Llangedwin/M
+Llangedwyn/M
+Llangefni/M
+Llangeinor/M
+Llangeinwen/M
+Llangeitho/M
+Llangeler/M
+Llangelynin/M
+Llangelynnin/M
+Llangendeirne/M
+Llangennech/M
+Llangenni/M
+Llangennith/M
+Llangerniew/M
+Llangernyw/M
+Llangeview/M
+Llangian/M
+Llangiwg/M
+Llanglydwen/M
+Llangoed/M
+Llangoedmor/M
+Llangofen/M
+Llangollen/M
+Llangolman/M
+Llangonwyd/M
+Llangors/M
+Llangorse/M
+Llangower/M
+Llangrannog/M
+Llangristiolus/M
+Llangua/M
+Llangunllo/M
+Llangunnor/M
+Llangurig/M
+Llangwm/M
+Llangwnaddl/M
+Llangwstennin/M
+Llangwyfan/M
+Llangwyllog/M
+Llangwyryfon/M
+Llangybi/M
+Llangyfelach/M
+Llangyndeyrn/M
+Llangynfelyn/M
+Llangynhafal/M
+Llangynidr/M
+Llangyniew/M
+Llangynin/M
+Llangynllo/M
+Llangynog/M
+Llangynwyd/M
+Llangywer/M
+Llanhamlach/M
+Llanharan/M
+Llanharry/M
+Llanhennock/M
+Llanhilleth/M
+Llanhowel/M
+Llanidan/M
+Llanidloes/M
+Llaniestyn/M
+Llanigon/M
+Llanilar/M
+Llanilid/M
+Llanilltud/M
+Llanina/M
+Llanishen/M
+Llanllawddog/M
+Llanllawer/M
+Llanllechid/M
+Llanllibio/M
+Llanlligan/M
+Llanllowell/M
+Llanllwch/M
+Llanllwchaearn/M
+Llanllwchaiarn/M
+Llanllwni/M
+Llanllyfni/M
+Llanllywenfel/M
+Llanmadoc/M
+Llanmadog/M
+Llanmaes/M
+Llanmarewic/M
+Llanmihangel/M
+Llannefydd/M
+Llannerch-y-medd/M
+Llannerch/M
+Llannon/M
+Llannor/M
+Llano/M
+llano/MS
+Llanover/M
+Llanpumsaint/M
+Llanreithan/M
+Llanrhaeadr-ym-Mochnant/M
+Llanrhaeadr-yng-Nghinmeirch/M
+Llanrhaeadr/M
+Llanrhaiadr/M
+Llanrhian/M
+Llanrhidian/M
+Llanrhwydrys/M
+Llanrhydd/M
+Llanrhydlad/M
+Llanrhystud/M
+Llanrhystyd/M
+Llanrothal/M
+Llanrug/M
+Llanrumney/M
+Llanrwst/M
+Llanrychwyn/M
+Llansadwrn/M
+Llansadwrnen/M
+Llansaint/M
+Llansaintffraid-in-Elwell/M
+Llansamlet/M
+Llansanffraid/M
+Llansannan/M
+Llansannor/M
+Llansantffraed/M
+Llansantffraid/M
+Llansantfraed/M
+Llansawel/M
+Llansbyddyd/M
+Llansilin/M
+Llansoy/M
+Llanstadwell/M
+Llansteffan/M
+Llanstephan/M
+Llanstinan/M
+Llantarnam/M
+Llanthoisant/M
+Llanthony/M
+Llantilio/M
+Llantood/M
+Llantrisant/M
+Llantrissant/M
+Llantrissent/M
+Llantrithyd/M
+Llantwit-juxta-Neath/M
+Llantwit/M
+Llantysilio/M
+Llanufydd/M
+Llanuwchllyn/M
+Llanvabon/M
+Llanvaches/M
+Llanvagdalen/M
+Llanvair-ar-y-Bryn/M
+Llanvapley/M
+Llanvenair/M
+Llanvetherine/M
+Llanveyno/M
+Llanveynoe/M
+Llanwarne/M
+Llanwddyn/M
+Llanwenarth/M
+Llanwenllwyfo/M
+Llanwenog/M
+Llanwern/M
+Llanwinio/M
+Llanwnda/M
+Llanwnnen/M
+Llanwnnog/M
+Llanwonno/M
+Llanwrda/M
+Llanwrin/M
+Llanwrthwl/M
+Llanwrtyd/M
+Llanwyddelan/M
+Llany/M
+Llanyblodwel/M
+Llanybydder/M
+Llanychaearn/M
+Llanychaer/M
+Llanychan/M
+Llanychlwydog/M
+Llanycil/M
+Llanycrwys/M
+Llanymynech/M
+Llanynrwyd/M
+Llanynys/M
+Llanyrafon/M
+Llanyre/M
+Llanystumdwy/M
+Llanywern/M
+Llawhaden/M
+Llay/M
+LLB/SM Abbreviation of Bachelor of Laws
+LLC/SM
+LLD
+Llechgynfarwy/M
+Llechryd/M
+Llechwedd/M
+Llechylched/M
+Lledrod/M
+Llewellyn/M
+Llewelyn/M
+Llewern/M
+Lleyn/M
+Lliswerry/M
+Lllanerchymedd/M
+Llowes/M
+Lloyd/MS
+Lloydminster/M
+Llwchwr/M
+Llwydcoed/M
+Llwynon/M
+Llwynypïa/M
+Llyn/M
+Llysfaen/M
+Llyswen/M
+Llysworney/M
+Llysyfran/M
+Llywel/M
+Llywelyn/M
+ln natural logarithm
+lo
+lo-fi
+lo-res
+Loach/M
+loach/SM
+Load/M
+load/RSDGMJ7
+loaded/AKcU
+loading/M
+loads/AUc
+loadstar's
+loadstone/MS
+loaf/MRDGS
+Loain/M
+loam/ZSM
+loamy/T
+loan/RMS7GD
+loanee/SM
+Loanhead/M
+loanholder/SM
+loaning/M
+loansharkings
+loanword/SM
+loath/RPDGJY
+loathe/S
+loathing/M
+loathsome/PY
+loaves
+lob/MRDGSZ
+Lobachevsky/M
+Lobamba/M
+lobar
+lobate
+lobation/MS
+lobby/3DMGS
+lobe/MSDp
+lobectomy/SM
+lobelia/SM
+loblolly/SM
+lobopod/SM
+lobopodia/O
+lobopodium
+lobotomise/SGDN
+lobotomize/SGDN
+lobotomy/QSM3
+lobscouse/M Noun: usually uncountable
+lobster/dSM
+lobular/Y
+lobularity/M Noun: uncountable
+lobule/MS
+Loburn/M
+lobworm/SM
+local/qYQs8S9-
+locale/SM
+localhost/SM
+localisable
+localism/SM
+localist/SMW
+locality/SM
+localizable
+localization/M
+locatable/A
+locate/ASGFEnD
+locater/SM
+location/EMAF
+locational/Y
+locative/SM
+locator/SM
+Loch/M
+loch/M
+Lochaber/M
+Lochailort/M
+Lochalsh/M
+lochan/MS
+Locharbriggs/M
+Lochawe/M
+Lochbroom/M
+Lochcarron-Skye/M
+Lochcarron/M
+Lochee/M
+Lochend/M
+Lochery/M
+Lochfyneside/M
+Lochgair/M
+Lochgelly/M
+Lochgilphead/M
+Lochgoilhead/M
+lochia/OM
+Lochinver/M
+Lochlee/M
+Lochmaben/M
+Lochmaddy/M
+Lochranza/M
+Lochrutton/M
+lochs
+Lochs-Crossbost/M
+Lochs-in-Bernera/M
+Lochs-In-Bernera/M
+Lochwinnoch/M
+Lochwood/M
+loci/M
+lock-up/MS
+lock/7MGDSRp
+lockage/M
+lockdown/SM
+Locke/M
+Lockerbie/M
+Lockerley/M
+locket/SM
+lockfast
+Lockhart/M
+Lockheed/M
+Locking/M
+Lockinge/M
+Lockington-Hemington/M
+Lockington/M
+lockjaw/SM
+locknut/SM
+lockout/SM
+Lockport/M
+Locks/M
+Lockshin/M
+locksman/M
+locksmen/M
+locksmith/SMG
+locksmithing/M
+lockstep/M Noun: usually uncountable
+Lockton/M
+Lockwood/M
+Lockyer/M
+loco/GSM
+locomobile/SM
+locomobility/M Noun: uncountable
+locomote/SGD
+locomotion/MS
+locomotive/YMSP
+locomotivity/M Noun: uncountable
+locomotor/Z
+locoweed/SM
+locular
+loculi/M
+loculus/M
+locum/SM
+locus/M
+locust/SM
+locution/SM
+locutionary
+locutory/MS
+Loddington/M
+Loddiswell/M
+Loddon/M
+Lode/M
+lode/MS
+loden/M
+Loders/M
+lodestar/SM
+lodestone/SM
+lodge/LRSDGJM
+Lodge/M
+lodgepole/SM
+lodging/M
+Lodi/M
+Lodsworth/M
+Loe/M
+Loeb/M
+loess/M
+Loestrin/M
+Loewner/M
+Lofoten/M
+loft/SDzGMZr
+Lofts/M
+Loftus/M
+lofty/TP
+log-normal/Y
+log-normality
+log/JGMWRw1DS
+Logan/M
+loganberry/MS
+Logansport/M
+Loganville/M
+logarithm/W1SM
+logbook/MS
+loge/MS
+logfile/SM
+loggerhead/MS
+Loggerheads/M
+loggia/MS
+logging/M
+logia/M
+logic/1
+logic/IMSY
+logical/P
+logicality/MIS
+logician/MS
+logicism/SM
+logicist/SM
+Logie-Coldstone/M
+Logie/M
+Logiealmond/M
+Logierait/M
+login/SM
+logion/M
+logistic/MYSO
+logistician/SM
+Logitech/M
+logjam/SM
+logo/SM
+logoff/SM
+logogram/SM
+logographic
+logomachy/MS
+logon/SM
+logophile/SMW
+logophilous
+logorrhoea/M
+logosphere/MS
+logotype/SM
+logout/SM
+logroll/SGDMRJ
+logwood/M
+Lohan/M
+Lohengrin/M
+Lohmann/M
+Lohse/M
+loin/SM
+loincloth/MS
+Loire/M
+Lois/M
+Loisy/M
+loiter/dSr
+Loki/M
+LOL
+Lola/M
+lolcat/SM
+Lolita/SM
+loll/DGYSr
+Lollard/MS
+Lollardism/M Noun: uncountable
+lollipop/SM
+lollop/S
+lolloped
+lolloping/S
+lolly/MS
+Lolo/M
+Lolworth/M
+Loma/M
+Lomax/M
+Lomb/M
+Lombard/SMW
+Lombardi/M
+Lombardo/M
+Lombardy/M
+Lombe/M
+Lombrum/M
+Lomé/M
+loment/MS
+lomentaceous
+Lomita/M
+Lomond/M
+Lomonosov/M
+Lompoc/M
+Lonan/M
+Londesborough/M
+London/rM
+Londonderry/M
+Londonthorpe/M
+Lone/M
+lone/PRY
+lonely/TP
+Lonergan/M
+lonesome/PSY
+long-ago
+long-awaited
+long-distance
+long-drawn
+long-drawn-out
+long-faced
+long-lasting
+long-legged
+long-life
+long-lived
+long-lost
+long-playing
+long-range
+long-running
+long-sighted/YP
+long-standing
+long-stay
+long-suffering/Y
+long-tailed
+long-term
+long-termism
+long-time
+long-waisted
+long-winded/YP
+long/JkTDSPG~
+Long/M
+Longa/M
+longaeval
+longan/SM
+longanimity/M
+longboard/SM
+longboat/MS
+Longborough/M
+longbow/SM
+Longbridge/M
+Longburn/M
+Longburton/M
+Longcot/M
+Longden/M
+longdog/SM
+Longdon/M
+longe/SM
+longeing
+Longenbach/M
+Longendale/M
+longer-term
+longeron/SM
+longeval
+longevity/MS
+Longfellow/M
+Longfield/M
+Longford/M
+Longforgan/M
+Longformacus/M
+longhair/SM
+Longham/M
+longhand/SM
+Longhope/M
+longhorn/SM
+Longhorsley/M
+Longhoughton/M
+longhouse/SM
+Longhurst/M
+longicorn/SM
+longing/M
+Longinus/M
+longitude/MS
+longitudinal/Y
+Longlands/M
+Longley/M
+longline/SM
+longlist/SMGD
+Longman/M
+Longmeadow/M
+Longmire/M
+Longmont/M
+Longnewton/M
+Longney/M
+Longniddry/M
+Longnor/M
+Longobard/MS
+Longparish/M
+Longridge/M
+Longriggend/M
+Longsdon/M
+longship/SM
+longshore
+Longside/M
+Longsleddale/M
+longstanding
+Longstanton/M
+Longstock/M
+Longstone/M
+longstop/SM
+Longstowe/M
+Longstreet/M
+longsword/SM
+Longthorne/M
+Longton/M
+Longtown/M
+Longueuil/M
+longueur/SM
+Longueville/M
+Longview/M
+Longville/M
+longwall/SM
+longward/S
+longways
+Longwick-cum-Ilmer/M
+longwise
+Longwood/M
+longwool/SM
+Longworth/M
+Longyearbyen/M
+lonicera/MS
+Lonmay/M
+Lonoke/M
+Lonsdale/M
+loo/SM
+Looe/M
+loofa/SM
+loofah/SM
+look/eSc
+lookahead
+lookalike/SM
+lookaside
+looked/Uc
+looker-on
+looker/SM
+lookers-on
+lookie-likie
+looking-glass/SM
+looking/c
+lookism/M Noun: uncountable
+lookist/SM
+lookout/SM
+lookup/MS
+looky
+loom/SDGM
+looming/M
+Loomis/M
+loon/ZSMGD
+Looney/M
+looney/MS
+loony/TS
+loop/DMZSGr
+loopback/SM
+loophole/SMGD
+Loopwing
+loopy/T
+loose-leaf
+Loose/M
+loose/PYGSDT
+loosen/dSU
+loosener/SM
+loosestrife/SM
+loosing/M
+loot/RSDGM
+lop/dDRGS
+lope/SMr
+Lopen/M
+Lopez/M
+Lopham/M
+lophodont/MS
+lophophorate/SM
+lophophore/SM
+lopinavir/M Noun: uncountable
+Loppington/M
+loppy/MS
+lopsided/PY
+loquacious/PY
+loquacity/MS
+loquat/MS
+loquitur
+Lorain/M
+loranthus
+loratadine/M Noun: uncountable
+lorazepam/SM
+lord/DcSMGf
+lord/p
+Lorde/M
+lording/M
+Lordington/M
+lordly/TP
+lordosis
+lordotic
+Lordship/MS
+lordship/SM
+Lordy
+lore/SM
+Loren/M
+Lorentz/M
+Lorentzian
+Lorenz/M
+Lorenzen/M
+Lorenzo/M
+Loreto/M
+Loretta/M
+lorgnette/MS
+Lori/M
+loricate
+Loricifera
+lorikeet/SM
+Lorimer/M
+loris/M
+lorn
+Lorna/M
+Lorne/M
+Lorraine/M
+lorry/MS
+lorryload/SM
+Lorton/M
+lory/SM
+Los
+losable
+losartan/M
+Loscoe/M
+lose/RSG
+loss-leader/SM
+loss/SpMZ
+Lossiemouth/M
+losslessly
+lossy/T
+lost
+Lost/M
+Lostock/M
+Lostwithiel/M
+lot/DGMS
+Lotbiniere/M
+Lotemax/M
+Loth/M
+loth/SM
+Lothario/SM
+Lothbury/M
+Lothersdale/M
+Lotherton/M
+Lothian/SM
+loti/M
+lotion/MS
+Lotka/M
+lotophagous
+lotsa
+Lott/M
+lotta
+Lottbridge/M
+lottery/SM
+lotto/SM
+lotus/SM
+Lou/M
+louche/P
+loud-mouthed
+loud/PTY~
+louden/Sd
+loudhailer/SM
+loudmouth/MS
+Loudon/M
+Loudoun/M
+loudspeaker/SM
+loudspeaking
+Loudwater/M
+Loughborough/M
+Loughbrickland/M
+Loughgall/M
+Loughgilly/M
+Loughguile/M
+Loughhead/M
+Loughinisland/M
+Loughinsholin/M
+Loughlin/M
+Loughmacrory/M
+Loughor/M
+Loughton/M
+Louie/M
+Louis/M
+Louisa/M
+Louisbourg/M
+Louise/M
+Louiseville/M
+Louisiana/M
+Louisianan/SM
+Louisville/M
+Lound/M
+lounge/DRSG
+Loup/M
+loupe/MS
+lour/SDG
+Lourdes/M
+Lourencinho/M
+Lourenço/M
+louse/CDSG
+louse/M
+lousewort/M
+lousy/TPY
+lout/MS
+Louth/M
+loutish/YP
+Louvain/M
+louvre/MSD
+lovable/P
+Lovacott/M
+lovage
+lovastatin/SM
+Lovato/M
+love-child/M
+love/pMk7RSYlDG
+loveably
+lovebird/MS
+Lovecraft/M
+Lovejoy/M
+Lovelace/M
+Loveland/M
+loveless/PY
+Lovell/M
+lovelock/SM
+lovelorn/P
+lovely/PSTY
+lovemaking/SM
+loverless
+loverlike
+loverly
+Loversall/M
+Loves/M
+lovesick/Y
+lovesickness/SM
+lovesome
+Loveston/M
+lovestruck Adjective
+Lovett/M
+loveworthy
+lovey/MS
+loving-kindness
+lovingness/SM
+Lovington/M
+low-born
+low-cal
+low-carb
+Low-Churchism
+low-class
+low-cost
+low-cut
+low-down/SM
+low-emission
+low-fat
+low-fi
+low-grade
+low-income
+low-key
+low-level
+low-lying
+low-noise
+low-pass
+low-pitched
+low-profile
+low-res
+low-spirited
+Low/M
+low/PYTSGD~
+lowbrow/SM
+Lowca/M
+Lowdermilk/M
+Lowdham/M
+Lowe/My
+Lowell/M
+lower-case
+lower-class
+lower-level
+Lower/M
+lower/SdZ
+lowercase/SGD
+lowermost
+Lowesby/M
+Lowestoft/M
+Loweswater/M
+Lowfield/M
+Lowick/M
+lowland/MRS
+Lowland/MS
+lowlife/MS
+lowlight/MS
+lowly/PTY
+Lowman/M
+Lowndes/M
+Lowry/M
+Lowside/M
+lowside/SGD
+Lowther/M
+Lowthorpe/M
+Lowton/M
+lox
+Loxbeare/M
+Loxhore/M
+Loxley/M
+loxodont/MS
+loxodrome/SM
+loxodromic
+Loxton/M
+Loxwood/M
+Loy/M
+loyal/3Y
+loyalism/SM
+loyally/E
+Loyalsock/M
+loyalty/ESM
+Loyola/M
+Lozano/M
+lozenge/DSM
+LP/S
+LPA
+LPG
+ls/I
+LSD
+Lt
+Lt.
+Ltd
+LTR
+LTS
+Lu/M
+Luanda/M
+Luang
+luau/M
+luaus
+Lubben/M
+lubber/MSY
+lubberlike
+Lubbesthorpe/M
+Lubbock/M
+lube/SGMD
+Lubenham/M
+Lubianka/M
+Lubin/M
+Lubitz/M
+Luboš/M
+Lubow/M
+lubricant/MS
+lubricate/DSGnV
+lubricator/SM
+lubricious/Y
+lubricity/MS
+Lubumbashi/M
+Lubuntu/M
+Luby/M
+Lubyanka/M
+Lucan/M
+Lucas/M
+Lucasfilm/M
+Lucceius/M
+Luccombe/M
+Luce/M
+Luceno/M
+lucent/4Y
+Lucentis/M
+Lucerne/M
+Lucia/M
+Lucian/M
+Luciana/M
+Luciano/M
+lucid/YP
+lucidity/MS
+Lucie/M
+Lucien/M
+Lucifer/M
+Luciferian/SM
+Luciferianism/M
+lucifugous
+Lucila/M
+Lucilius/M
+Lucille/M
+Lucinda/M
+Lucio/M
+Lucite/M
+Lucius/M
+luck/zMZpS2DG
+Lucker/M
+Luckington/M
+lucklessly
+lucklessness/M Noun: uncountable
+Lucknow/M
+lucky/TUY
+Lucovsky/M
+lucrative/P
+lucre/vMVuS
+Lucretia/M
+Lucretius/M
+Lucton/M
+lucubrate/GnSD
+lucubrator/MS
+Lucullan
+Lucy/M
+Luda/M
+Ludborough/M
+Ludchurch/M
+Luddenden/M
+Luddenham/M
+Luddesdown/M
+Luddington/M
+Luddism/M Noun: uncountable
+Luddistic
+Luddite/MSw
+Ludditism/M Noun: uncountable
+luderick/SM
+Lüders/M
+Ludford/M
+Ludgate/M
+Ludgershall/M
+Ludgvan/M
+Ludham/M
+Ludhiana/M
+ludic
+ludicrous/PY
+Luding/M
+Ludlow/M
+Ludmilla/M
+ludo/SM
+Ludovic/M
+Ludwig/M
+Ludworth/M
+luff/MSDG
+Luffenham/M
+Luffield/M
+Luffincott/M
+Lufkin/M
+Lufthansa/M
+Lufton/M
+Luftwaffe/M
+lug/DRGSr
+Lugar/M
+luge/CM
+Luger/MS
+Lugg/M
+luggage/MS
+Luggate/M
+lughole/SM
+lugsail/MS
+lugubrious/PY
+Lugwardine/M
+lugworm/SM
+Luhansk/M
+Luhman/M
+Luigi/M
+Luik/M
+Luing/M
+Luis/M
+Luís/M
+Luisa/M
+Luke/M
+lukewarm/PY
+lull/GSD
+lullaby/DSGM
+Lullingstone/M
+Lullington/M
+Lulsgate/M
+Lulsley/M
+lulu/MS
+Lulworth/M
+lumbago/MS
+lumbar/SM
+lumber/rdSM
+lumbering/M
+lumberjack/MS
+lumbersome
+Lumberton/M
+lumbrical/SM
+lumbricalis
+lumen/MS
+Lumière/M
+Lumigan/M
+lumina/O
+luminaire/SM
+luminance/M
+luminary/MS
+luminescence/MS
+luminescent
+luminiferous
+luminosity/SM
+luminous/YP
+lummox/SM
+lump/GDZ2SMr
+lumpectomy/SM
+lumpen
+lumpenproletariat/SM
+lumpfish/SM
+Lumphanan/M
+lumpish/YP
+Lumpkin/M
+lumpsucker/SM
+Lumpur/M
+lumpy/T
+Lumsden/M
+Luna/M
+lunacy/SM
+Luňák/M
+Lunan/M
+lunar/SM
+Lunas/M
+lunate/SWYn
+lunatic/SM
+Luncarty/M
+lunch-time
+lunch/SDMGR
+luncheon/MS
+luncheonette/MS
+lunchpack
+lunchtime/MS
+Lund/MS
+Lundberg/M
+Lundie/M
+Lundin/M
+Lundquist/M
+Lundy/M
+lune/NM
+Lunenburg/M
+Lunesta/M
+lunette/SM
+lung/DMGS6pR
+Lunga/M
+lunge/SM
+lungfish/MS
+lungful/SM
+lungworm/SM
+lungwort/SM
+Lunine/M
+lunisolar
+Lunn/MS
+Lunokhod
+Lunt/M
+Luol/M
+Luoyang/M
+Lupe/M
+lupin/SM
+lupophone
+Luppitt/M
+Lupton/M
+lupus/MS
+lurch/GSDR
+lure/GDSR
+lurex/M Noun: uncountable
+Lurgan/M
+Lurganare/M
+Lurganure/M
+Lurganville/M
+Lurgashall/M
+lurgy/SM
+lurid/PY
+Lurie/M
+lurk/RGDS
+Lusaka/M
+Lusatian/SM
+Lusby/M
+luscious/YP
+lush/TPY
+Lushington/M
+Lusitania/M
+Lusitanian/MS
+Lusius/M
+Luss/M
+Lussac/M
+lust/GZSDjz62M
+lustful/P
+Lustleigh/M
+Luston/M
+lustra/MO
+lustrate/SGDN
+lustre/pSMGD
+lustreware/SM
+lustring/M
+lustrous/YP
+lustrum/MS
+lusty/TP
+lutanist/SM
+lute/SGMDO
+lutecium/M
+lutein/M Noun: usually uncountable
+lutenist/SM
+luteofulvous
+luteous
+Luteoviridae Taxonomic family
+lutestring/M
+Lutetia/M
+lutetium/M
+lutetocene
+Lüth/M
+Luth/M
+Luther/M
+Lutheran/MS
+Lutheranise/SGD
+Lutheranism/M Noun: uncountable
+Lutheranize/SGD
+Lutherism/M
+Lutherist/SM
+Lutine
+luting/M
+Luton/M
+Lutsk/M
+Lutterworth/M
+Lutton/MS
+Lutyens/M
+Lutz/M
+Luu/M
+lux/SM
+luxate/DGN
+Luxborough/M
+luxe/M Noun: uncountable
+Luxembourg/MR~
+Luxembourgian/SM
+Luxemburg/M
+Luxenbourg/M
+luxon/SM
+Luxor/M
+Luxulyan/M
+luxuriance/SM
+luxuriant/Y
+luxuriate/SGDn
+luxurious/YP
+luxury/SM
+Luyten/M
+Luzerne/M
+Luzius/M
+Luzon/M
+lv
+lvi
+lvii
+lviii
+Lviv/M
+Lvov/M
+lx
+LXDE/M
+lxi
+lxii
+lxiii
+lxiv
+lxix
+lxv
+lxvi
+lxvii
+lxviii
+lxx
+lxxi
+lxxii
+lxxiii
+lxxiv
+lxxix
+lxxv
+lxxvi
+lxxvii
+lxxviii
+lxxx
+lxxxi
+lxxxii
+lxxxiii
+lxxxiv
+lxxxix
+lxxxv
+lxxxvi
+lxxxvii
+lxxxviii
+Lyall/M
+Lyallpur/M
+Lyapunov/M
+lyase/SM
+Lybster/M
+lycaenid/SM
+lycanthrope/MS
+lycanthropy/W
+lycée/SM
+Lyceum/M
+lyceum/MS
+lychee/SM
+Lychpit/M
+Lycia/M
+Lycian/SM
+Lycoming/M
+lycophyte/SM
+lycopod/SM
+Lycopodium Taxonomic genus
+lycopodium/M
+Lycra/M
+Lydbrook/M
+Lydbury/M
+Lydd/M
+Lydden/M
+Lyddington/M
+Lyde/M
+Lydeard/M
+Lydford-on-Fosse/M
+Lydford/M
+Lydgate/M
+Lydham/M
+Lydia/M
+Lydian/SM
+Lydiard/M
+Lydiat/M
+Lydiate/M
+Lydlinch/M
+Lydney/M
+lye/M
+Lyell/M
+Lyford/M
+Lyft/M
+lying/Y
+Lyle/M
+Lylesland/M
+Lyman/M
+Lyme/M
+Lyminge/M
+Lymington/M
+Lyminster/M
+Lymm/M
+lymph/SM
+lymphadenopathy/SM
+lymphangitis
+lymphatic/SM
+lymphoblast/SMW
+lymphocyte/SMW
+lymphocytopenia/SM
+lymphoedema/SM
+lymphogranuloma
+lymphoid Adjective
+lymphokine/SM
+lymphoma/MS
+lymphoproliferative
+Lympne/M
+Lympsham/M
+Lympstone/M
+Lyn/M
+Lynbrook/M
+lynch/GRDSJ
+Lynch/M
+Lynchburg/M
+lynchet/MS
+lynching/SM
+Lynchmere/M
+lynchpin/SM
+Lyncombe/M
+Lynd/M
+Lynda/M
+Lynde/M
+Lynden/M
+Lyndhurst/M
+Lyndon/M
+Lyndsay/M
+Lyne/M
+Lyneal/M
+Lyneham/M
+Lynette/M
+Lynfield/M
+Lynford/M
+Lyng/M
+Lynmouth/M
+Lynn/M
+Lynne/M
+Lynnfield/M
+Lynnwood/M
+Lynstead/M
+Lynsted/M
+Lynton/M
+Lynwood/M
+lynx/SM
+Lyon/MS
+Lyonshall/M
+lyophilic
+lyophilise/SGDN
+lyophilize/SGDN
+lyophobic
+Lyotard/M
+Lyra/M
+lyrate
+lyre/MSwW13
+lyrebird/SM
+lyric/3S
+Lyrica/M
+lyrical/P
+lyricism/SM
+Lysander/M
+Lysenko/M
+lysergic
+lysine/M
+Lysithea/M One of the moons of Jupiter
+Lysol/M
+lysosome/SO
+lysozyme/SM
+lyssavirus/SM
+Lytchett/M
+Lyth/M
+Lytham/M
+Lythan/M
+Lythe/M
+lytic/Y
+Lyttelton/M
+Lyttleton/M
+m
+M-DISC/M
+M.Sc.
+mA
+MA
+ma'am
+ma/FMS
+Maastricht/M
+Maastrichtian/SM
+Maathuis/M
+Mabbe/M
+Mabe/M
+Mabel/M
+Mablethorpe/M
+Mabuni/M
+Mabyn/M
+Mac
+mac/SM
+macabre/Y
+Macaca Taxonomic genus
+macadam/QMS
+macadamia/SM
+macadamize/SGDJ
+Macalister/M
+Macamic/M
+Macandrew/M
+Macanese/M
+Macao/M
+macaque/MS
+Macarena/M
+macaron/SM
+macaroni/MW
+macaronies
+macaroon/MS
+MacArthur/M
+Macassar/M
+Macau/M
+Macaulay/M
+Macaulayan
+Macaulayesque
+macaw/MS
+MacBain/M
+Macbeth/M
+MacBook/SM
+Maccabean
+Maccabees/M
+Maccarinelli/M
+Macclesfield/M
+MacColl/M
+MacCormick/M
+MacCulloch/M
+MacDiarmid/M
+Macdonald/M
+MacDonald/MS
+MacDraw/M
+Macduff/M
+mace-bearer/SM
+mace/SMGDR
+Macedon/M
+Macedonia/M
+Macedonian/SM
+Macefen/M
+Macellis/M
+macerate/DGSn
+macerator/MS
+MacFadyen/M
+MacFarlane/M
+MacGibbon/M
+Macgillicuddy's
+MacGowan/M
+MacGregor/M
+MacGuffin/MS
+MacGyver/M
+Mach/M
+Machado/M
+Machan/M
+machan/MS
+Machanao/M
+Machar/M
+Machen/M
+Machesney/M
+machete/SM
+Machiavelli/M
+Machiavellian/SM
+Machiavellianism/SM
+Machiko/M
+machinate/GSDn
+machinator/MS
+machine-gun/DGS
+machine-readable
+machine/BDM3SGyn
+machinelike
+machinery/SM
+machismo/SM
+Machmeter/SM
+Machno/M
+macho/SM
+Machu
+Machulis/M
+Machynlleth/M
+Maciej/M
+MacInnis/M
+MacIntosh/M
+macintosh/SM
+MacIntyre/M
+mack/SM
+Mackay/M
+Macken/M
+Mackensie/M
+MacKenzie/M
+Mackenzie/M
+mackerel/SM
+Mackie/M
+Mackinac/M
+Mackinder/M
+MacKinnon/M
+mackintosh/SM
+Macklemore/M
+Macklin/M
+Mackrell/M
+Mackworth/M
+MacLachlan/M
+Maclean/M
+MacLeay/M
+Macleay/M
+MacLeod/M
+Macleod/M
+Macmerry/M
+MacMillan/M
+Macmillan/M
+Macnaughton/M
+MacNeice/M
+MacNeil/M
+MacNelly/M
+Macomb/M
+Macon/M
+macOS/M
+Macosquin/M
+Macoupin/M
+MacPherson/M
+Macquarie/M
+macramé/SM
+Macready/M
+macro/SM
+macrobiotic/S
+macrocephalous
+macrocephaly/W
+macrocopy/SM
+macrocosm/MSW
+macrocrystallinity/M Noun: uncountable
+macrocycle/SMW
+macrocyst/SM
+macrocyte/SM
+macrocytosis/M
+macrodiagonal/SM
+macrodome/SM
+macrodont Adjective
+macrodontia/M Noun: uncountable
+macrodynamic/S
+macroeconomics
+macroeconomy/3MSW
+macroemulsion/SM
+macroevolution/M Noun: usually uncountable
+macroevolutionary
+macrofauna/OM
+macrofossil/SM
+macrofungus
+macrogamete/SM
+macrogametocyte/SM
+Macroglossinae Taxonomic subfamily
+macrolanguage/SM
+macrolensing
+macrolide/SM
+macrolinguistics
+macromolecular
+macromolecule/SM
+macromutation/SM
+macron/SM
+macronuclear
+macronuclei/M
+macronucleus/M
+macronutrient/SM
+macropaedia/M
+macrophage/MS
+macrophagous
+macrophallic
+macrophotograph/ZSM
+macrophyte/SMW
+macropine Adjective
+macroplankton/WSM
+macropleural
+macropod/SM
+macropodid/SM
+macropodine/SM
+macropore/SM
+macroscopic/Y
+macroscopy/M Noun: uncountable
+macrosegment/SM
+macrosimulation/SM
+macrosmatic
+macrosocio-economic
+macrosociology/wM
+macrospore/SM
+macrostate/SM
+macrostructure/SMO
+macrosystem/SM
+MacSween/M
+macula/M
+maculae/M
+macular
+maculate/SGDN
+macumba/SM
+Macungie/M
+Macy/M
+Mad/M
+mad/RTYPGD
+Madagascan/MS
+Madagascar/M
+madam/SM
+Madame/M
+madame/SM
+Madan/M
+madcap/SM
+madden/dkS
+Maddermarket/M
+Madderty/M
+Maddie/M
+Maddin/M
+Maddington/M
+Maddock/M
+Maddox/M
+Maddy/M
+made-up
+made/AU
+Madehurst/M
+Madeira/M
+Madeiran/SM
+Madeleine/M
+madeleine/SM
+Madeley/M
+Madeline/M
+Madelyn/M
+Mademoiselle/M
+mademoiselle/SM
+Madera/M
+Maderno/M
+Madge/M
+madhouse/MS
+Madhya/M
+Madigan/M
+Madingley/M
+Madion/M
+Madison/M
+Madisonville/M
+Madjid/M
+Mädler/M
+Madley/M
+madman/M
+madmen/M
+Madoes-Glencarse/M
+Madoes/M
+Madonna/M
+Madras/M
+madras/SM
+Madre/M
+Madresfield/M
+Madrid/M
+madrigal/SM
+madrigalesque
+madrigalian
+madrigalist/MS
+Madron/M
+Madsen/M
+Madura/M
+Madurese/M
+Maduro/M
+madwoman/M
+madwomen/M
+Mae/M
+maeandrine/M
+Maecenas/M
+Maelor/M
+maelstrom/MS
+Maelzel/M
+maenad/SMW
+Maenan/M
+Maenclochog/M
+Maentwrog/M
+Maer/M
+Maerdy/M
+Maeroa/M
+Maescar/M
+Maesmynys/M
+Maesteg/M
+Maestlin/M
+maestri/M
+maestro/SM
+Maesycwmmer/M
+Mafeking/M
+Mafia/M
+mafia/SMW
+Mafiosi/M
+Mafioso/M
+MAG/SM
+mag/SM
+Magalhães/M
+magazine/MGDS
+Magdalen/M
+Magdalena/M
+Magdalene/M
+Magdalenian
+Magdeburg/M
+mage/SM
+Mageia/M
+Magellan/MW
+magenta/MS
+Maggie/M
+maggot/MS
+maggoty/T
+Maghaberry/M
+Maghera/M
+Magheraconluce/M
+Magherafelt/M
+Magheralin/M
+Magheramason/M
+Magheramorne/M
+Magheraveely/M
+Maghery/M
+Maghull/M
+Magi
+magi/M
+Magian/MS
+magic/MYGDO
+magician/SM
+Magill/M
+Maginot
+magisterial/Y
+magisterium/M
+magistracy/SM
+magistral
+magistrate/SM
+magistrateship
+magistrature/SM
+Maglemosian/MS
+Maglione/M
+magma/WMS
+magmatism/M Noun: uncountable
+Magna/M
+magnanimity/SM
+magnanimosity
+magnanimous/YP
+Magnanti/M
+magnate/MS
+magnesia/SM
+magnesian
+magnesite/SM
+magnesium/M Noun: uncountable
+magnesocene
+magnet/WqQ8-SMt+1
+magnetics
+magnetise/CBnSDG
+magnetism/SM
+magnetite/MS
+magnetize/CBnSDG
+magneto/SM
+magnetoconvection/M Noun: uncountable
+magnetodisk/SM
+magnetodynamics
+magnetohydrodynamic/OS
+magnetometer/MS
+magnetopause/SM
+magnetosheath/SM
+magnetosonic
+magnetosphere/SMW
+magnetostatics
+magnetotactic
+magnetotail/SM
+magnetron/SM
+Magnificat/M
+magnificence/SM
+magnificent/Y
+magnifico/M
+magnificoes
+magnify/CSGRDn
+magniloquence/SM
+magniloquent
+magnitude/SM
+Magnolia Taxonomic genus
+magnolia/SM
+Magnoliophyta Taxonomic division
+Magnoliopsida Taxonomic class
+magnon/SM
+magnum/MS
+Magnus/M
+Magnuson/M
+Magnya/M
+Magoffin/M
+Magog/M
+Magor/M
+magpie/SM
+Magrassi/M
+Maguire/MS
+Maguiresbridge/M
+magus/M
+Magyar/MS
+mah
+mah-jong/SM
+mah-jongg/M
+mah-jongs/SM
+Maha/M
+Mahabharata/M
+mahajanapada/SM
+Mahal/M
+Mahalakshmi/M
+Mahalanobis/M
+Mahalaxmi/M
+Mahan/M
+maharaja/SM
+maharajah/MS
+maharanee/SM
+maharani/SM
+Maharashtra/M
+maharishi/MS
+Mahasaraswati/M
+Mahaska/M
+Mahathir/M
+mahatma/MS
+Mahavidyalaya/M
+Mahayana/M
+Mahayanist/SM
+Mahdi/MS
+Mahdia/M
+Mahdism/M
+Mahdist/MS
+Maheshvari/M
+Maheswara/M
+Mahia/M
+Mahler/M
+Mahmud/M
+mahogany/SM
+Mahomet/M
+Mahoney/M
+Mahoning/M
+Mahony/M
+Mahora/M
+mahout/SM
+Mahratta/MS
+Mahwah/M
+Maia/M
+maid/MS
+maidan/SM
+Maiden/M
+maiden/YSM
+Maidenbower/M
+maidenhair/MS
+Maidenhead/M
+maidenhead/SM
+maidenhood/MS
+maidenliness
+Maidenwell/M
+Maidford/M
+Maids/M
+maidservant/MS
+Maidstone/M
+Maidwell/M
+Maier/M
+Maik/M
+mail-order/SM
+mail/RS7GDMJ
+Mailänder/M
+mailbag/SM
+mailboat/SM
+mailbox/MS
+MailChimp/M
+maillot/SM
+mailshot/SM
+maim/RGSDi
+Maimonides/M
+main/SA
+main/Y
+mainboard/SM
+mainbrace/SM
+maincrop/SM
+Maine/M
+mainframe/SM
+Mainland/M
+mainland/RMS
+mainline/RSGD
+mainmast/MS
+mains/M
+Mains/M
+mainsail/MS
+mainsheet/SM
+mainspring/MS
+mainstay/MS
+Mainstone/M
+mainstream/SMDR
+maintain/RBSDG
+maintenance/MS
+maintop/SM
+Mainz/M
+maiolica/M Noun: uncountable
+Mairangi/M
+Mairehau/M
+Maisemore/M
+Maisey/M
+Maiseyhampton/M
+maisonette/SM
+Maisy/M
+Maitai/M
+Maitlands/M
+Maitra/M
+maître
+maize/SM
+Maj.
+Majella/M
+majesty/WSM1
+majeure
+Majno/M
+majolica/MS
+Major/M
+major/MSdY
+majora
+Majorca/M
+majordomo/SM
+majorette/MS
+majoritarian/SM
+majoritarianism/SM
+majority/SM
+Majuro/M
+makable
+Makahu/M
+Makara/M
+Makaraka/M
+Makaurau/M
+make-believe
+make-up/SM
+make/GASU
+makebate/SM
+Makefield/M
+makefile/SM
+Makemake/M
+makeover/SM
+Maker-with-Rame/M
+Maker/M
+maker/SM
+Makerfield/M
+Makerstoun/M
+makeshift/SM
+makeup/M Noun: usually uncountable
+makeweight/SM
+Makhachkala/M
+Maki/M
+Makihara/M
+making/MS
+mako/SM
+Makoto/M
+Malabar
+Malabo/M
+malabsorption/SM
+Malacca/M
+Malachi/M
+Malachias/M
+malachite/SM
+malacofauna/M
+malacology/3wM
+malacopterygian/SM
+malacostracan/SM
+maladapt/VDn
+maladjust/LDV
+maladminister/Sd
+maladministration/SM
+maladministrator/SM
+maladroit/SMYP
+malady/MS
+malaeration
+malaëration
+Malaga/M
+Malagasy/SM
+malagueta/SM
+malaguetta/SM
+malaise/MS
+Malamud/M
+malamute/MS
+Malamuth/M
+Malanczuk/M
+malapert/SM
+Malaprop/M
+malapropism/MS
+malapropos
+malar/SM
+malaria/SMO
+malarious
+malarkey/SM
+Malartic/M
+malate/SM
+malathion/SM
+Malawi/M
+Malawian/SM
+Malay/MS
+Malaya/M
+Malayalam/M Noun: uncountable
+Malayan/MS
+Malaysia/M
+Malaysian/SM
+Malbaie/M
+Malbec/M
+Malbis/M
+Malborough/M
+Malchus/M
+Malcolm/M
+malcontent/MS
+malcontented/Y
+Malden/M
+maldevelopment/SM
+maldistributed
+maldistribution/SM
+Maldive
+Maldives/M
+Maldon/M
+Male/M
+Malé/M
+male/MSPW
+maleate/SM
+malediction/SM
+malefaction/SM
+malefactor/SM
+malefic/SM
+maleficence/SM
+maleficent
+maleficium/M
+malemute/SM
+malevolence/SM
+malevolencies
+malevolent/Y
+Malew/M
+Maley/M
+Malfatti/M
+malfeasance/MS
+malfeasant/SM
+Malford/M
+malformation/MS
+malformed
+malfunction/GSDM
+Malham/M
+Malherbe/M
+Malherbie/M
+Malheur/M
+Mali/M
+Malibu/M
+malice/SM
+malicious/PY
+Malick/M
+malign/YRSDG
+malignancy/SM
+malignant/YSM
+malignity/SM
+Malik/M
+Malines/M
+malinger/drS
+Malinowski/M
+Malinowskian
+malist/SM
+Malkin/M
+mall/SM
+Mallaig/M
+mallard/SM
+Mallarmé/M
+malleability/MS
+malleable/P
+mallee/SM
+malleefowl/M
+mallei/M
+malleiform
+mallein/M Noun: uncountable
+mallemaroking/M Noun: uncountable
+malleoincudal
+malleoli/M
+malleolus
+Mallerstang/M
+Mallet/M
+mallet/MS
+Mallett/M
+malleus/M
+Malling/M
+Mallory/M
+mallow/SM
+Mallusk/M
+Mallwyd/M
+Malmesbury/M
+Malmö/M
+Malmsteen/M
+malnourished
+malnourishment/SM
+malnutrition/SM
+malocclusion/MS
+malodorous/Y
+malodorousness/M Noun: uncountable
+malodour/SM
+malonate/SM
+Malone/M
+Maloney/M
+Malory/M
+maloti/M
+Malpas/M
+Malpass/M
+malperformance
+Malpighian
+malposed
+malpractice/MS
+Malreward/M
+Malsor/M
+malt/DGMZS
+Malta/M
+Maltby/M
+Malte/M
+Maltese/M
+Malthaner/M
+malthouse/SM
+Malthus/M
+Malthusian/SM
+Malthusianism/M
+malting/SM
+Malton/M
+Maltoni/M
+maltose/MS
+maltreat/LDSG
+maltster/MS
+malty/T
+Malva Taxonomic genus
+Malvaceae Taxonomic family + Taxonomic clade
+malvaceous
+Malvern/M
+malversation/SM
+malvertisement/SM
+malvertising
+Malvestiti/M
+malware/M Noun: usually uncountable
+Malzeard/M
+mama-san/SM
+mama/SM
+Mamadou/M
+Mamakating/M
+Mamane/M
+Mamaroneck/M
+mamba/SM
+Mamble/M
+mambo/MGSD
+mamelon/SM
+Mameluke/MS
+Mametz/M
+Mamhead/M
+Mamhilad/M
+mamma/M
+mammae/M
+mammal-like
+mammal/SM
+mammalia
+Mammalia Taxonomic class
+mammalian/MS
+mammaliferous
+mammalochore/1SMW
+mammalochorous
+mammalochory/M
+mammalogy/M3w
+mammaplasty/SM
+mammary/SM
+mammiform
+mammilla/M
+mammillary
+mammillate
+mammogram/SM
+mammography/SMW
+Mammon/M
+mammon/MS~
+Mammonism/M
+mammonism/SM
+Mammonist/MS
+mammonist/SMW
+Mammonite/MS
+mammoplasty/SM
+mammoth/SM
+mammy/SM
+Mamoutzu/M
+man-at-arms
+man-hour/SM
+man-made
+man-o'-war
+man-of-war
+man-sized
+man-year/SM
+man/G61YRDMjWp
+Man/M
+Mana/M
+Manaccan/M
+manacle/SDMG
+Manafon/M
+Managau/M
+manage/LaDGS
+manageability/SM
+manageable/U
+manageable/Y
+manageableness
+manager/OoSM
+manageress/SM
+managerialism/SM
+managerialist/SM
+managership/M
+Managua/M
+Manaia/M
+Manakau/M
+manakin/SM
+Manalapan/M
+Manali/M
+Manama/M
+mañana/M
+mananas
+Manapouri/M
+Manasa/M
+Manassas/M
+Manasseh/M
+Manatee/M
+manatee/SM
+Manaton/M
+Manaus/M
+Manawatu/M
+Manby/M
+Mancetter/M
+Manchester/M
+manchineel/SM
+Manchu/MS
+Manchuria/M
+Manchurian/SM
+manciple/SM
+Mancroft/M
+Mancunian/MS
+Mandaean/SM
+Mandaeism/M
+mandala/SM
+Mandalay/M
+mandamus/SdM
+Mandan/M
+Mandarin/M
+mandarin/SM
+mandarinate/SM
+mandarine/SM
+mandatary/SM
+mandate/SMGyD
+mandator/SM
+mandatorily
+Mandean/SM
+Mandel/M
+Mandela/M
+Mandelbrot/M
+Mandelson/M
+Mandeville/M
+mandible/SM
+mandibular
+mandibulate/D
+mandola/MS
+mandolin/MS
+mandoline/MS
+mandora/M
+mandorla/SM
+mandragora/SM
+mandrake/SM
+Mandrax/M
+mandrel/SM
+mandrill/MS
+manducate/DGS
+manducation/MS
+manducatory
+Mandurah/M
+Mandy/M
+mane/ZSMp
+Manea/M
+manège/SGDM
+Manet/M
+Manfield/M
+Manfred/M
+Manfredi/M
+manfulness
+manga/M
+mangabey/SM
+Mangakino/M
+mangalsutra/SM
+Mangalyaan
+Mangamuka/M
+manganese/SM
+manganocene/SM
+manganous Adjective
+Mangaohoi/M
+Mangapapa/M
+Mangapiko/M
+Mangaroa/M
+Mangatoki/M
+Mangawhai/M
+mange/MZRS2
+mangel/MS
+Mangere/M
+Māngere/M
+mangetout/SM
+mangle/GDSrM
+mango/MS
+mangoes
+mangold-wurzel/S
+mangold/SM
+Mangoldt/M
+mangonel/SM
+Mangorei/M
+mangosteen/SM
+Mangotsfield/M
+mangrove/MS
+Mangum/M
+mangy/TY
+manhandle/DGS
+Manhattan/M
+Manheim/M
+manhole/SM
+manhood/SM
+manhunt/SMr
+Mani/M
+mania/SM
+maniac/SM
+maniacal/Y
+manic/S
+Manichaean/SM
+Manichaeanism/M Noun: uncountable
+Manichaeism/M
+Manichean/SM
+Manichee/MS
+Manicheism/M
+manicotti/M
+Manicouagan/M
+manicule/SM
+manicure/3DSMG
+manifest/DYSGnMP
+manifestant
+manifestative
+manifesto/SM
+Manificat/M
+manifold/PSYM
+manifolder/M
+manikin/MS
+Manila/M
+Manilla/M
+manilla/SM
+manille/SM
+manioc/SM
+maniple/MS
+manipulatable
+manipulate/BSGnyDVu
+manipulative/SM
+manipulator/SM
+Manipur/M
+maniraptoran/SM
+Manish/M
+Manistee/M
+Manitoba/M
+Manitoban/SM
+Manitowoc/M
+Maniwaki/M
+Manjoo/M
+Mank/M
+Mankato/M
+mankind/M Noun: uncountable
+Mankiw/M
+manky/T
+manlessness/M Noun: uncountable
+Manley/M
+manlike
+Manlius/M
+manly/PT
+Mann/M
+manna/MS
+manned/fU
+mannequin/SM
+manner/3Yp
+mannered
+mannerism/SM
+manneristic/Y
+mannerliness/M Noun: uncountable
+mannerly/P
+Manney/M
+Mannheim/M
+Mannich/M
+mannikin/SM
+Manningford/M
+Mannington/M
+Manningtree/M
+mannish/PY
+mannitol/SM
+Mannofield/M
+mannose/SM
+Manny/M
+Mannyng/M
+manoeuvrability/SM
+manoeuvre/SBMGDJr
+Manolis/M
+manometer/MSW
+Manor/MS
+manor/SMO
+Manorbier/M
+Manordeifi/M
+Manordeilo/M
+Manorowen/M
+Manowar/M
+manpower/MS
+manqué Adjective
+mansard/MS
+Manse/M
+manse/XNMS
+Mansefield/M
+Mansel/M
+Mansell/M
+Mansergh/M
+manservant/M
+Mansfield/M
+Mansholt/M
+mansion/M
+manslaughter/MS
+Manson/M
+Mansour/M
+manspreading/M
+Mansriggs/M
+Manston/M
+mansuetude/SM
+manta/MSW
+Manteca/M
+mantel/SM
+mantelet/MS
+Mantell/M
+mantelpiece/SM
+mantelshelf/M
+Manteno/M
+Manthorpe/M
+manticore/SM
+mantid/SM
+mantilla/MS
+mantis/MS
+mantissa/MS
+Mantke/M
+mantle/ESDG
+mantle/M
+mantlet/MS
+mantling/M
+Manton/M
+Mantovani/M
+mantra/SM
+mantrap/SM
+Mantua/M
+mantua/MS
+Manu/M
+manual/MSY
+Manuden/M
+Manuel/M
+manufactory/MS
+manufacture/RBSGJDM
+manuka/SM
+Manukau/M
+Manulife/M
+manumission/SM
+manumit/XNSGD
+manure/RMGDS
+Manurewa/M
+manurial
+Manus/M
+manuscript/MS
+Manutahi/M
+Manutius/M
+Manville/M
+manward
+Manx/M
+Manxman/M
+Manxmen/M
+Manxwoman/M
+Manxwomen/M
+Manya/M
+manyplies/S
+manzanilla/SM
+manzanita/SM
+Manziel/M
+Mao/M
+MAOI/SM Initialism of monoamine oxidase inhibitor
+Maoisation/M Noun: uncountable
+Maoism/M Noun: usually uncountable
+Maoist/SM
+Maoization/M Noun: uncountable
+Maoized
+Māori/M
+Maori/MS
+Maoribank/M
+Maoriland/M
+map/JDMSRGp
+Maperton/M
+Maple/M
+maple/SM
+Maplebeck/M
+Mapledurham/M
+Mapledurwell/M
+Maplestead/M
+Mapleton/M
+Maplewood/M
+mapmaker/SM
+mappable
+Mapperley/M
+Mapperton/M
+mapping/M
+Mappiscombe/M
+Mappleborough/M
+Mappleton/M
+Mappowder/M
+Mapua/M
+Mapuche/SM
+Maputo/M
+maquette/SM
+maquila/SM
+maquiladora/SM
+maquillage/MD
+Maquis
+maquis/M Noun: uncountable
+maquisard/SM
+mar/MSZGDY
+Mara/M
+mara/SM
+marabou/SM
+marabout/SMW
+maraca/MS
+Maracaibo/M
+Maraenui/M
+Maraetai/M
+Marana/M
+maraschino/MS
+marasmus/MW
+Maratha/MS
+Marathi/M
+Marathon/M
+marathon/MrS
+maraud/SRDG
+maravedi/MS
+Marazion/M
+marble/DSMGJrZ
+Marblehead/M
+marbleised
+marbleized
+marbling/M
+Marburg/M
+Marbury/M
+marc/M
+Marc/MZ
+Marcan
+marcasine/SM
+marcasite/SM
+marcassin/SM
+marcato
+Marceau/M
+Marcel/M
+marcel/SGD
+marceline/SM
+Marcellian/M
+Marcello/M
+Marcellus/M
+Marcelo/M
+marcescence/M Noun: uncountable
+marcescent Adjective
+march/DRSGM
+March/M
+Marcham/M
+Marchant/M
+Marchesini/M
+Marchetti/M
+Marchington/M
+marchioness/MS
+Marchmont/M
+marchpane/MS
+Marchwiel/M
+Marchwood/M
+Marcia/M
+Marcie/M
+Marcin/M
+Marcinkiewicz/M
+Marcion/M3
+Marcionism/M Noun: uncountable
+Marcionite/SM
+Marcionitism/M Noun: uncountable
+Marcle/M
+Marco/M
+Marcon/M
+Marconi/M
+Marcos/M
+Marcross/M
+Marcum/M
+Marcus/M
+Mardale/M
+Marden/M
+Mardi/M
+Mardonius/M
+Marduk/M
+mare/SM
+Marefield/M
+Mareham/M
+Marek/M
+maremma/M
+maremme/M
+Marengo/M
+Maresfield/M
+Mareston/M
+Marfell/M
+Marfleet/M
+marga/SM
+Margalo/M
+Margam/M
+Margaret/MS
+Margarets-on-Thames/M
+Margaretting/M
+margaric
+margarine/SM
+Margarita/M
+margarita/SM
+margarodid/SM
+Margate/M
+margate/SM
+Margaux/M
+margay/SM
+Marge/M
+marge/SM
+margent/SM
+Margery/M
+margin/oMdS
+marginal/3Q8q-SM
+marginalia/M
+marginalism/SM
+marginality/SM
+Margo/M
+Margolin/M
+Margot/M
+margrave/SM
+margravine/SM
+Marguerite-D'Youville/M
+Marguerite/M
+marguerite/SM
+Marham/M
+Marhamchurch/M
+Marholm/M
+Maria-Chapdelaine/M
+maria/M
+Maria/M
+mariachi/SM
+Mariah/M
+Mariamman/M
+Mariamne/M
+Marian/M
+Mariana/MS
+Marianna/M
+Marianne/M
+Mariano/M
+Mariansleigh/M
+Maricopa/M
+Marie/MS
+Mariel/M
+Marietta/M
+Marieville/M
+marigold/SM
+Marigot/M
+marijuana/M Noun: usually uncountable
+Mariluz/M
+Marilyn/M
+marimba/MS
+Marin/M
+Marín/M
+Marina/M
+marina/nMS
+marinade/DMGS
+marinara/SM
+marinate/SGDn
+marine/RSN
+Marineris Valles Marineris (Mars)
+Marinette/M
+Marino/M
+Mario/M
+Mário/M
+Mariolatry/SM
+Mariology/3wSM
+Marion/M
+marionette/MS
+Mariota/M
+Mariposa/M
+Marishes/M
+Marisol/M
+Marissa/M
+Marist/MS
+marital/KY
+Maritima/M
+maritime
+maritimer
+Maritimes/M
+Marius/M
+marjoram/MS
+Marjorie/M
+Marjory/M
+mark-up/MS
+mark/iRmDJhGSM7
+Mark/MS
+Markby/M
+markdown/MS
+Markeaton/M
+Marken/M
+Markenfield/M
+market/g7rSMdJ
+Market/M
+Marketa/M
+marketability/MS
+marketeer/GSM
+Markethill/M
+marketing/M
+marketplace/MS
+marketspace/SM
+Markey/M
+Markfield/M
+Markham/M
+markhor/SM
+Markinch/M
+marking/M
+Markington/M
+markka/SM
+Markov/M
+Markovian Adjective
+Markovitz/M
+Marksbury/M
+Markshall/M
+marksmanship/SM
+markup/SM
+Markus/M
+Markyate/M
+marl/SGDM
+Marland/M
+Marlboro/M
+Marlborough/M
+Marlbrook/M
+Marlburian/MS
+Marldon/M
+Marlene/M
+Marlesford/M
+Marley/M
+marlin/SM
+Marline/M
+marline/SM
+marlinespike/SM
+Marlingford/M
+marlinspike/SM
+marlite/SM
+Marloes/M
+Marlon/M
+Marlow/M
+Marlowe/M
+Marmaduke/M
+marmalade/SM
+Marmara
+Marmite/M
+marmite/SM
+marmolite/M Noun: uncountable
+marmoreal
+marmoset/SM
+marmot/SM
+Marner/M
+Marney/M
+Marnham/M
+Marnhull/M
+Marnoch/M
+Marnock/M
+marocain/SM
+Maromaku/M
+Maronite/SM
+maroon/SDGRM
+Marown/M
+Marple/M
+marplot/SM
+Marquand/M
+Marquard/M
+Marque/M
+marque/MS
+marquee/SM
+Marquesas
+Marquess/M
+marquess/MS
+marquessate/SM
+marquetry/MS
+Marquette/M
+Márquez/M
+marquis/MS
+marquisate/MS
+marquise/SM
+marquisette/MS
+Marr/M
+Marrakesh/M
+Marrano/MS
+marriable
+marriage/MBS
+marriageability/SM
+Marrick/M
+married/S
+marrier/MS
+Marriott/M
+marron/MS
+Marros/M
+marrow/SMp
+marrowbone/MS
+marrowfat/SM
+marrowy Adjective
+marry/DGSA
+Marryat/M
+Mars/M
+Marsala/M
+Marsden/M
+Marseillaise/M
+Marseilles/M
+Marsh/M
+marsh/MZS2
+Marsha/M
+marshal/JRSGDM
+Marshall/M
+Marshalltown/M
+marshalship/SM
+Marsham/M
+Marshawn/M
+Marshchapel/M
+Marshfield/M
+marshland/MS
+marshmallow/MS
+Marshwood/M
+marshy/PT
+Marske/M
+marsquake/SM
+Marston/M
+Marstow/M
+marsupial/MS
+Marsworth/M
+mart/MGSD
+Marta/M
+martagon/SM
+Martel/M
+martellato
+Martello/SM
+martempered
+martempering
+marten/MS
+martensite/WSM
+Martensville/M
+Martha/M
+Marthall/M
+Martham/M
+martial/Y
+Martian/SM
+Martijn/M
+Martin-by-Looe/M
+Martin-in-Meneage/M
+Martín/M
+Martin/M
+martin/SM
+Martina/M
+Martinborough/M
+Martindale/M
+Martine/M
+Martineau/M
+martinet/SM~
+martinettish
+Martínez/M
+Martinez/M
+martingale/MS
+Martinho/M
+Martinhoe/M
+Martini/SM
+martinique
+Martinique/M
+Martinism/M Noun: uncountable
+Martinist/SM
+Martinmas/M
+Martinsburg/M
+Martinson/M
+Martinsthorpe/M
+Martinstown/M
+Martinsville/M
+Martlesham/M
+martlet/SM
+Martletwy/M
+Martley/M
+Martock/M
+Marton-cum-Moxby/M
+Marton/MS
+Martorell/M
+Marty/M
+Martyr/M
+martyr/MGDS
+martyrdom/MS
+martyrisation/MS
+martyrise/DGS
+martyrization/MS
+martyrize/DGS
+martyrology/SMw3
+Martyrs/M
+martyry/MS
+Marua/M
+Maruia/M
+Marullus/M
+marvel/MSDGk
+Marvell/M
+marvellous/Y
+marvellousness/M Noun: uncountable
+Marvin/M
+Marwood/M
+Marx/3M
+Marxian/SM
+Marxism-Leninism/M
+Marxism/SM
+Marxist-Leninist/SM
+Mary-le-Tower/M
+Mary/M
+Marybank/M
+Maryborough/M
+Marychurch/M
+Maryculter-Cookney/M
+Maryculter/M
+Marygate/M
+Maryhill/M
+Marykirk/M
+Maryland/M
+Marylanders/M
+Marylebone/M
+Maryport/M
+Marys/M
+Maryse/M
+Marystow/M
+Marystowe/M
+Marysville/M
+Maryton/M
+Maryville/M
+marzipan/SM
+mas/rGWD
+Masada/M
+Masai/M
+masala/SM
+Masanori/M
+Masayuki/M
+masc/SM
+Mascagni/M
+mascara/DGSM
+Mascheroni/M
+mascle/MS
+mascon/SM
+mascot/MS
+Mascouche/M
+masculine/YP3SM
+masculinise/SGDN
+masculinism/M Noun: usually uncountable
+masculinity/MS
+masculinize/SGDN
+masculist/SM
+Maseru/M
+mash-up/SM
+mash/RJSGDM
+Masham/M
+Mashbury/M
+mashie/MS
+Mashona/M
+Mashonaland/M
+Mashpee/M
+masjid/SM
+mask/JRDMSG
+Maskelyne/M
+Maskin/M
+Maskinongé/M
+maskinonge/MS
+Maskoutains/M
+Masnick/M
+masochism/SM
+masochist/SWM1
+mason/SdyWM
+Mason/SMW
+Masonite/M
+Masonry
+masonry/SM
+Masood/M
+Masorah/M
+Masorete/SMW
+masque/MSRGJ
+masquerade/MRSDG
+mass-market
+mass-produced
+mass-producing
+mass/pSVvu
+Massa/M
+Massac/M
+Massachusetts/M
+massacre/MGDSR
+massage/DMSGR
+Massao/M
+Massapequa/M
+Massart/M
+massasauga/MS
+masse
+Massena/M
+Massenet/M
+masseter/SM
+masseur/SM
+masseuse/SM
+Massey/M
+massicot/M
+massif/SM
+Massillon/M
+Massimo/M
+Massingham/M
+massive/P
+Massorah/M
+Massoretic
+massy
+mast/DRSMG
+mastaba/MS
+mastectomy/SM
+master-stroke/MS
+master/AdScp
+masterable
+MasterCard/M
+masterclass/SM
+masterdom/M Noun: uncountable
+masterful/PY
+masterhood
+mastering/S
+masterly/P
+mastermind/GDS
+masterpiece/MS
+mastership/M
+mastersinger/SM
+Masterton/M
+masterwork/SM
+mastery/MS
+masthead/GSDM
+mastic/SnM
+masticate/DGS
+masticator/SMZ
+mastiff/SM
+mastitis
+mastodon/SM
+mastodontic
+mastofauna/M Noun: uncountable
+mastoid/SM
+mastoiditis
+mastology/M Noun: uncountable
+Mastrick/M
+masturbate/GSnDy
+masturbator/SM
+Masuoka/M
+Masursky/M
+mat/dRMDJGS
+Mata-Utu/M
+Mata/M
+Matabele/SM
+Matabeleland/M
+matador/SM
+Matagami/M
+Matagorda/M
+Matakana/M
+Matakohe/M
+Matamata-Piako/M
+Matamata/M
+Matane/M
+Matangi/M
+Matanie/M
+Matanuska-Susitna/M
+Matapédia/M
+Matapu/M
+Matarangi/M
+Matarau/M
+Matata/M
+Mataura/M
+match/eGDaS
+match/M
+matchable
+Matcham/M
+matchboard/SMGJ
+matchbook's
+matchbox/SM
+matched/AU
+matcher/MS
+matchet/MS
+Matching/M
+matching/S
+matchless/Y
+matchlessness/M
+matchlock/MS
+matchmake/RJG
+matchmaking/M
+matchplay/M Noun: uncountable
+matchstick/SM
+matchwood/SM
+mate/SJzMp
+Matejovic/M
+Mateo/M
+Mateparae/M
+Mater
+mater/Mo
+material/qs39S-MPQ8
+materialism/MS
+materialist/W1
+materiality/IM
+materialization/M
+materially/I
+materialness/I
+materiel/SM
+matériel/SM
+maternal/Y
+maternity/SM
+Matese/M
+matey/PSM
+Matford/M
+Mathafarn/M
+Mathavarn/M
+Mathematica/M
+Mathematical/M
+mathematical/YP
+mathematicality
+mathematician/MS
+mathematicise/SGDN
+mathematicism/M Noun: uncountable
+mathematicize/SGDN
+mathematics
+mathematise/SGDN
+mathematize/SGDN
+Matheny/M
+Mather/M
+Mathern/M
+Matheson/M
+Mathetes/M
+Matheus/M
+Mathews/M
+Mathias/M
+Mathies/M
+Mathieu/M
+Mathilde/M
+Mathis/M
+Mathon/M
+Mathry/M
+maths
+MathWorks/M
+MathWorld/M
+matico/MS
+Matihetihe/M
+Matilda/M
+matinee/SM
+matinée/SM
+mating/M
+matins
+Matisse/M
+MATLAB/M
+Matlab/M
+Matlask/M
+Matlaske/M
+Matlock/M
+Matos/M
+Matra/M
+Matravers/M
+matriarch/MZO
+matriarchs
+matriarchy/MS
+matrices
+matricide/SMO
+matriculate/SGDn
+matrifocal
+matrika/SM
+matrilateral
+matriline/SM
+matrilineage/SM
+matrilineal/Y
+matrilocal
+matrilocality/M Noun: uncountable
+matrimony/OoMS
+matrix/MS
+matron/YSMO
+matronhood/M
+matronship/MS
+matronymic/SM
+Matroska/M
+Matrox/M
+Matson/M
+Matsui/M
+Matsumoto/M
+matsuri/M
+Matsushita/M
+Matsuyama/M
+matt/M
+mattamore/MS
+Mattathias/M
+matte/MS
+Mattel/M
+Matteo/M
+matter-of-fact/Y
+matter/d
+Matterdale/M
+Matterhorn/M
+Mattersey/M
+mattery
+Matteson/M
+Matthau/M
+Matthew/M
+Matthews/M
+Matthias/M
+Matthieu/M
+Mattias/M
+Mattie/M
+matting/M
+Mattingley/M
+Mattingly/M
+Mattishall/M
+mattock/SM
+mattoid/MS
+Mattoon/M
+mattress/MS
+Mattson/M
+mattucashlass
+Matty/M
+Maturana/M
+maturate/SGD
+mature/YDTVSxnPGr
+maturely/KI
+matureness/K
+Maturin/M
+maturities/I
+maturity/KMI
+Matúš/M
+matutinal
+maty/T
+matzo/MS
+matzoth/M
+Mau
+Mauchline/M
+Maud/M
+Maude/M
+Maudit/M
+Mauditt/M
+maudlin/YSM
+Maugersbury/M
+Maugham/M
+Maughan/M
+Maughold/M
+Maui/M
+maul/DRSGM
+Maulden/M
+Mauldin/M
+Mauleverer/M
+maulstick/MS
+Maumee/M
+Maumelle/M
+Mauna/M
+Maunby/M
+maunder/Sd
+maunderer/MS
+Maundy/M
+Maungakaramea/M
+Maunganui/M
+Maungaraki/M
+Maungatapere/M
+Maungatautari/M
+Maungaturoto/M
+Maunu/M
+Maupuia/M
+Maur/MS
+Maura/M
+Maureen/M
+Maurice/M
+Mauricie/M
+Mauricio/M
+Maurine/M
+Maurist/MS
+Mauritania/M
+Mauritanian/SM
+Mauritian/SM
+Mauritius/M
+Mauro/M
+Maury/M
+Maurya/M
+Mauryan/SM
+Mauser/M
+mausolea/M
+mausoleum/SM
+Mautby/M
+mauve/MS
+Maven/M
+Maverick/M
+maverick/MS
+Mavesyn/M
+Mavis/M
+mavis/MS
+mavourneen/M
+maw/DSGM
+Mawddwy/M
+Mawdesley/M
+Mawe/MS
+Mawgan-in-Meneage/M
+Mawgan-in-Pydar/M
+Mawgan/M
+Mawhinney/M
+mawkish/PY
+Mawlid/M
+Mawnan/M
+Mawr/M
+Mawsley/M
+Mawson/M
+Max/M
+max/SGDM
+Maxey/M
+maxi/SM
+maxilla/yM
+maxillae/M
+maxillary/SM
+maxillofacial
+Maxim/M
+maxim/qQs89Mo-S
+maxima/M
+maximal/S3
+maximalism/M Noun: usually uncountable
+maximality/M Noun: usually uncountable
+Maxime/M
+Maximilian/M
+Maximiliano/M
+maximization/SM
+maximum/YMS
+Maximus/M
+Maxine/M
+Maxstoke/M
+Maxthon/M
+Maxton/M
+Maxtor/M
+Maxwell-Hyslop/M
+Maxwell/M
+maxwell/SM
+Maxwellheugh/M
+Maxwellian/SM
+Maxwelltown/M
+may/EG
+May/M
+Maya/MS
+Mayagüez/M
+Mayan/SM3
+Mayanism/M
+Maybank/M
+maybe/S
+Maybelline/M
+Mayberry/M
+Maybole/M
+mayday/SM
+Maydown/M
+Mayen/M
+Mayer/M
+Mayes/M
+Mayfair/M
+Mayfield/M
+Mayflower/M
+mayflower/SM
+mayfly/MS
+mayhap
+mayhem/MS
+Mayhew/M
+Mayland/M
+Maymorn/M
+mayn't
+Maynard/M
+Mayne/M
+Mayo/M
+Mayobridge/M
+mayonnaise/MS
+mayor/SM
+mayoral
+mayoralty/MS
+mayoress/SM
+mayorship/SM
+Mayotte/M
+maypole/MS
+Mays/M
+mayst
+Mayweather/M
+mayweed/SM
+Maywood/M
+mazard/MS
+mazarine/SM
+Mazatec/SM
+Mazda/M
+Mazdaism/M Proper noun: The modern Zoroastrian religion
+Mazdaist/MS
+maze/SZMGDR
+mazel
+Mazetown/M
+maziness/M Noun: uncountable
+Mazomba/M
+Mazumdar/M
+mazurka/SM
+mazy/TY
+Mazza/M
+mazzard/SM
+MB
+Mb
+MBA/MS
+Mbabane/M
+mbar
+MBBS
+MBChB
+Mbit/S
+Mbps
+Mc
+MC'd
+MC'ing
+MC/M
+McAdams/M
+McAfee/M
+McAlester/M
+McAlister/M
+McAllen/M
+McAllister/M
+McAlpine/M
+McArthur/M
+McAvan/M
+McBrain/M
+McBride/M
+McCabe/M
+McCaffrey/M
+McCain/M
+McCall/M
+McCallum/M
+McCampbell/M
+McCandless/M
+McCann/M
+McCarrick/M
+McCarthy/M
+McCarthyism/M
+McCartney/M
+McCarty/M
+McCauley/M
+McCay/M
+McClain/M
+McClaren/M
+McClean/M
+McClellan/M
+McClintock/M
+McCloskey/M
+McCloy/M
+McClung/M
+McClure/M
+McCluskey/M
+McColl/M
+McComb/M
+McComiskey/M
+McConnell/M
+McCool/M
+McCord/M
+McCorkindale/M
+McCormack/M
+McCormick/M
+McCoy/M
+McCracken/M
+McCrea/M
+McCreary/M
+McCrory/M
+McCubbin/M
+McCullagh/M
+McCullers/M
+McCulley/M
+McCulloch/M
+McCullough/M
+McCune/M
+McCurtain/M
+McDaniel/M
+McDermott/M
+McDevitt/M
+McDiarmid/M
+McDonald/M
+McDonnell/M
+McDonough/M
+McDougall/M
+McDowell/M
+McDuck/M
+McDuffie/M
+McElroy/M
+McEnroe/M
+McEwen/M
+McFadden/M
+McFarland/M
+McGahern/M
+McGarry/M
+McGavin/M
+McGee/M
+McGeough/M
+McGill/M
+McGinlay/M
+McGinn/M
+McGlynn/M
+McGough/M
+McGovern/M
+McGowan/M
+McGrath/M
+McGraw/M
+McGregor/M
+McGuigan/M
+McGuinness/M
+McGuire/M
+McHale/M
+McHenry/M
+McHugh/M
+MCI
+McIlmoyle/M
+McIlroy/M
+McIndoe/M
+McIntosh/M
+McIntyre/M
+McIvor/M
+McJob/S
+McKay/M
+McKean/M
+McKechnie/M
+McKee/M
+McKeesport/M
+McKell/M
+McKenna/M
+McKenzie/M
+McKernan/M
+McKesson/M
+McKibben/M
+McKinlay/M
+McKinley/M
+McKinney/M
+McKinnon/M
+McKinsey/M
+McKnight/M
+McLachlan/M
+McLane/M
+McLaren/M
+McLauchlan/M
+McLaughlin/M
+McLean/M
+McLeish/M
+McLennan/M
+McLeod/M
+McLuhan/M
+McMahon/M
+McManus/M
+McMartin/M
+McMaster/M
+McMeel/M
+McMillan/M
+McMinn/M
+McMinnville/M
+McMorran/M
+McMullen/M
+McMullin/M
+McMurphy/M
+McMurray/M
+McMurtry/M
+McNab/M
+McNairy/M
+McNally/M
+McNamara/M
+McNaughton/M
+McNeer/M
+McNeil/M
+McNeish/M
+McNish/M
+McNiven/M
+McPherson/M
+McQuarrie/M
+McRae/M
+McRoberts/M
+MD
+mdse
+MDT
+me/3s
+mea
+Meaburn/M
+mead/MS
+Meade/M
+Meadow/MS
+meadow/SMpZ
+Meadowbank/M
+meadowland/MS
+Meadowlands/M
+meadowlark/SM
+Meadowood/M
+Meadowside/M
+meadowsweet/SM
+Meadville/M
+Meagan/M
+Meaghan/M
+meagre/YPSM
+meal/ZSM
+Mealo/M
+mealtime/MS
+mealworm/SM
+mealy-mouthed
+mealy/TPS
+mean/CSG
+mean/Y~
+meander/rdJSk
+Meandrina/M
+meandrine
+meaner
+meanest
+meanie/SM
+meaning/M6jpSY
+meaningful/P
+meaningless/PY
+meanness/S
+meant/U
+meantime
+meanwhile
+meany/SM
+Meara/M
+Meare/M
+Mearian/M
+Mearley/M
+Mearns/M
+Mears/M
+Measham/M
+measles
+measly/T
+Meason/M
+measurable/IU
+measure/rLSpMhlGD
+measurelessly
+measurement
+meat/ZSpM
+meataxe/SM
+meatball/SM
+Meath/M
+meathead/SM
+Meathop/M
+meatloaf/M
+meatloaves
+meatpacking/S
+meatpuppet/SM
+meatus/MS
+meaty/PTY
+Meavy/M
+Mebane/M
+mebibit/S
+mebibyte/S
+mecamylamine/M Noun: uncountable
+Mecca/M
+Meccan/SM
+Meccano/M
+mech/M
+mecha/SM
+mechameck/M
+mechanic/SMY
+mechanical/SP
+mechanicalism/M
+mechanician/SM
+mechanise/BnRSDG
+mechanism/MS
+mechanist/SMW1
+mechanize/SnBDGr
+mechanochemical/Y
+mechanochemistry/M Noun: uncountable
+mechanoreceptive
+mechanoreceptor/SM
+mechanosensory
+mechatronic/S
+Mechell/M
+Mechen/M
+Mechlin/M
+mechs
+Mecklenburg/M
+meclizine/SM
+meconium/SM
+Mecoptera Taxonomic order
+mecopteran/SM
+mecopterous
+Mecosta/M
+MEd/SM
+medal/DSMW
+medallion/MS
+medallist/SM
+Medbourne/M
+Meddan/M
+meddle/GDSRk
+meddlesome/YP
+Mede/SM
+Medea/M
+Medellín/M
+Medfield/M
+Medford/M
+media/oMn
+mediacracy/SM
+mediacrat/SM
+mediacy/SM
+mediad
+mediaeval/3MYS
+mediaevalism/SM
+medial/SM
+medialize/SGD
+Median
+median/YSM
+mediant/MS
+mediaocracy/M
+mediastina/OM
+mediastinoscopy/SM
+mediastinum/M
+mediate/DGSn
+mediate/IPY
+mediatisation/S
+mediatise/DGS
+mediatization/S
+mediatize/DGS
+mediator/SMZO
+mediatorship/SM
+mediatress/SM
+mediatrice/SM
+mediatrix/M
+MediaWiki/M
+medic/YVnMS
+medica/M
+medicable
+Medicaid/M
+medical/SM
+medicalise/SGDN
+medicalize/SGDN
+medicament/SMO
+Medicare/M
+medicate/SGDn
+Medicean
+Medich/M
+Medici/M
+Medician
+medicinal/SM
+Medicine/M
+medicine/MoS
+Medicis/M
+medick/MS
+medico-chirurgical
+medico-legal
+medico/SM
+medicus
+mediety/SM
+medieval/Y3
+medievalise/SGD
+medievalism/SM
+medievalize/SGD
+Medina/M
+mediocre/SM
+mediocrity/SM
+medipectus/M
+Medism/M Noun: uncountable
+meditate/VSGDvun
+meditation/KMS
+meditation/O3
+meditative/P
+meditator/SM
+Mediterranean/M
+medium-sized
+medium/SM
+mediumism/M Noun: uncountable
+mediumistic
+mediumship/SM
+Medlar-with-Wesham/M
+Medlar/M
+medlar/MS
+medley/MS
+Medlock/M
+Medmenham/M
+Médoc/MS
+Medomsley/M
+medoxomil/M Noun: uncountable
+Medrano/M
+medroxyprogesterone/M Noun: uncountable
+medspeak/M Noun: uncountable
+Medstead/M
+medulla/SMy
+Medusa/M
+medusa/SM
+medusae/M
+medusan/M
+medusoid/SM
+Medvedev/M
+Medway/M
+Medwin/M
+Mee/DM
+meed/SM
+meek/YPT
+Meeker/M
+Meeks/M
+Meenakshi/M
+Meerbrook/M
+Meering/M
+meerkat/SM
+meerschaum/MS
+Meerut/M
+Meesden/M
+Meese/M
+meet/GJSYr
+Meeth/M
+meetinghouse/SM
+meetness/M Noun: usually uncountable
+meetup/SM
+mefloquine/M Noun: uncountable
+Meg/M
+mega
+megabacterium/M
+megabasite/SM
+megabat/SM
+megabit/SM
+megabitch/SM
+megabook/SM
+megabuck/SM
+megabyte/SM
+megacarrier/SM
+megacentre/SM
+megacephalic
+megaceros/SM
+megachilid/SM
+Megachiroptera Taxonomic suborder
+megachiropteran/SM
+megacity/SM
+megacolon/SM
+megacorporate
+megacorporation/SM
+megacycle/MS
+megadeath/MS
+megadiverse
+megaelectronvolt/SM
+megafauna/OM
+megaflop/SM
+megagametophyte/SM
+megahertz/M
+megajoule/SM
+megalith/SWM
+megalitre/SM
+megaloblast/SMW
+megalocephaly/SMW
+megalocornea/SM
+megalocyte/SM
+megalomania/MSW
+megalomaniac/SMO
+megalopolis/SM
+megalopolitan/SM
+megalosaur/SM
+megalosaurian/SM
+megalosaurus/SM
+megalosphere/SM
+megamix/SM
+megamouth/SM
+Megan/M
+megaparsec/SM
+megaphone/WMDSG3
+megaphyll/SMY
+megaphyllous
+megapixel/SM
+megaplume/SM
+megapod/SM
+megapode/SM
+Megapodidae Taxonomic family
+megapolis/M
+megaregolith/SM
+megaripple/SM
+megasclere/SM
+megascopic/Y
+megasea/M
+megasecond/SM
+megaseller/SM
+megaspore/SM
+megastar/SM
+megastardom/M Noun: uncountable
+megastore/SM
+megastructure/SM
+megatheria/M
+megatherium/MS
+megaton/SM
+megatonne/SM
+megavolt/SM
+megawatt/SM
+megaword/SM
+Megger/MS
+Megget/M
+Meghalaya/M
+megilp/SM
+megohm/MS
+megrim/MS
+Megyn/M
+meh
+Mehigan/M
+Mehist/SM
+Mehmet/M
+Mehring/M
+Meidrim/M
+Meier/M
+Meifod/M
+Meigh/M
+Meigle/M
+Meigs/M
+mein/M
+meinie/MS
+meioses
+meiosis/M
+meiotic
+Meir/M
+Meiriadog/M
+Meissen/M
+Meissner/M
+Meister/M
+Meistersinger/M
+Meitinger/M
+Meitner/M
+meitnerium/M Noun: uncountable
+Mékinac/M
+Mekong/M
+Mel/M
+melamine/MS
+Melan/M
+melancholia/SM
+melancholiac/SM
+melancholic/SY
+melancholy/MSW
+Melanesia/M
+Melanesian/SM
+mélange/SM
+melange/SM
+Melania/M
+melanic
+Melanie/M
+melanin/MS
+melanisation/SM
+melanism/SM
+melanite/SM
+melanization/SM
+melanocyte/SM
+melanogen/SM
+melanogenesis/M Noun: uncountable
+melanoma/SM
+melanotic
+melanuria/SM
+melatonin/M Noun: usually uncountable
+Melba/MS
+Melbecks/M
+Melbourn/M
+Melbourne/M
+Melbury/M
+Melchbourne/M
+Melcher/M
+Melchet/M
+Melcombe/M
+meld/SDGMr
+Meldon/M
+Meldreth/M
+Meldrew/M
+Meldrum/M
+mêlée/MS
+melee/SM
+Melford/M
+Melfort/M
+melic
+Melick/M
+Meliden/M
+Melilla/M
+Melin/M
+Melincourt/M
+Melinda/M
+Melindwr/M
+Meline/M
+meliorate/nDGVS
+meliorator/MS
+meliorism/SM
+meliorist/MS
+melisma/SM
+melismata/WM
+melismatics
+Mélissa/M
+Melissa/M
+melissic
+Melksham/M
+melliferous
+mellifluence/M
+mellifluent
+mellifluous/PY
+Melling-with-Wrayton/M
+Melling/M
+Mellion/M
+Mellis/M
+mellitus
+Mellon/MS
+mellophone/SM
+Mellor/M
+mellow/GYTPSD
+Mells/M
+Melly/M
+Melmerby/M
+Melness/M
+Melo/M
+melodeon/SM
+melodic/SY
+melodicism/M Noun: uncountable
+melodion/SM
+melodious/Y
+melodiousness/M Noun: uncountable
+melodise/SGDJ
+melodize/SGDJ
+melodrama/WSM1
+melodramatic/SOY
+melodramatist/SM
+melodramatize/DGS
+melody/SWM13
+melon/SM
+Melos/M
+Melotte/M
+meloxicam/M Noun: uncountable
+melphalan/M Noun: uncountable
+melpomenish
+Melrose/M
+Melsonby/M
+melt/DkSG7RM
+meltdown/SM
+Meltham/M
+Melton/M
+melton/SM
+Meltonby/M
+meltwater/SM
+Melverley/M
+Melville/M
+Melvin/M
+Melvindale/M
+Melvyn/M
+memantine/M Noun: uncountable
+member/ASE
+member/Mp
+membered
+membership/SM
+membra disjecta membra
+membranaceous
+membrane/MSD
+membraneous
+membranous
+Membris/M
+membrum
+Membury/M
+meme/SM
+memento/SM
+mementoes
+memetic/S
+memetics's
+memo/SyM
+memoir/SM3
+mémoire/SM
+memorabilia/M
+memorability/MS
+memorable/PY
+memoranda/M
+memorandum/SM
+memoria/M Noun: uncountable
+Memorial/M
+memorial/QSM
+memorialist/MS
+memorialize/DGS
+memorially/I
+memoriam
+memorization/SM
+memory/s9Q8oq-SM
+memoryless
+Memphis/M
+Memphrémagog/M
+memsahib/S
+men-at-arms
+men-o'-war
+men-of-war
+men/M
+menace/kSGDM
+ménage/SM
+menagerie/SM
+Menahem/M
+Menai/M
+Menangle/M
+menarche/MS
+Menard/M
+Menasha/M
+Mencken/M
+mend/GFSD
+mendable
+mendacious/PY
+mendacity/MS
+Mendel/M
+mendelevium/M Noun: uncountable
+Mendelian/SM
+Mendelianism/M Noun: uncountable
+Mendelism/M Noun: uncountable
+Mendelssohn/M
+mender/FM
+mender/SM
+mendery/SM
+Mendes/M
+Méndez/M
+Mendham/M
+mendicancy/MS
+mendicant/SM
+mendicity/SM
+mending/SM
+Mendip/M
+Mendlesham/M
+Mendocino/M
+Mendota/M
+Mendoza/M
+Menefee/M
+Meneghetti/M
+meneghinite/SM
+menehune/SM
+Menelaus/M
+menfolk/M
+Meng/M
+Mengele/M
+menhaden/SM
+Menheniot/M
+menhir/MS
+menial/YSM
+Menifee/M
+Menindee/M
+meningeal
+meninges/M Noun: uncountable
+meningioma/SM
+meningiomata/M
+meningitic
+meningitides
+meningitis/M
+meningocele/MS
+meningococci/MO
+meningococcus/M
+meningoencephalitis/M
+meninx/M
+menisci/M
+meniscus/M
+Menlo/M
+Menmuir/M
+Mennonite/SM
+Menominee/M
+Menomonee/M
+Menomonie/M
+menopause/SMO
+menorah/SM
+Menorca/M
+menorrhagia/M
+menorrhoea/M Noun: uncountable
+Mensa/M
+mensal
+menservants
+menses/M
+Menshevik/MS
+Menston/M
+Menstrie/M
+menstrual/K
+menstruate/SGnD
+menstruous
+menstruousness/M Noun: uncountable
+mensurable/F
+mensurableness
+mensural
+mensuration/SM
+menswear/M Noun: uncountable
+mental/Y3
+mentalism/SM
+mentalistic
+mentality/MS
+mentation/M
+mentee/SM
+menteeship/M Noun: uncountable
+Menteith/M
+Menten/M
+menthol/MS
+mentholated
+mention/7SRDG
+Mentmore/M
+Mentor/M
+mentor/MSd
+mentorship/SM
+menu-driven
+menu/MS
+Menuhin/M
+Menwith/M
+Menzel/M
+Menzies/M
+Menzieshill/M
+Menzo/M
+Meole/M
+Meols/M
+Meon/M
+Meonstoke/M
+Meopham/M
+meow/DSGM
+MEP/SM
+mepacrine/M Noun: uncountable
+Mepal/M
+meperidine/SM
+mephedrone/M Noun: uncountable
+Mephisto/M
+Mephistophelean Adjective
+Mephistopheles/M
+Mephistophelian Adjective
+mephitic
+mephitis/M
+Meppershall/M
+Meqabyan/M
+Mequon/M
+mercantile
+mercantilism/SM
+mercantilist/SMW
+mercaptan/SM
+Mercaston/M
+Mercator/M
+Merced/M
+Mercedarian/SM
+Mercedes-Benz/M
+Mercedes/M
+mercenary/PMSY
+Mercer/M
+mercer/QMS
+mercerize/DGS
+mercery/SM
+merchandise/RSDGJM
+merchandize/SGD
+merchant/BSM
+Merchant/M
+merchantman/M
+merchantmen/M
+Mercia/M
+Mercian/SM
+Mercier/M
+merciful/P
+mercifully/U
+merciless/PY
+Merck/M
+mercurial/SP
+mercurialism/M Noun: uncountable
+mercuriality/SM
+mercurialize/DGS
+Mercurian/SM
+mercurocene
+Mercurochrome/M
+mercurous
+Mercury/MO
+mercury/oMW
+mercy/S6jpM
+Mere/M
+mere/TYSPM
+Meredith/M
+Meremere/M
+merenda/SM
+merengue/SM
+mereology/wSM
+Mereside/M
+meretricious/PY
+meretrix/M
+Merevale/M
+Mereworth/M
+merganser/MS
+merge/RGSD
+mergee/SM
+mergence/M Noun: uncountable
+mericarp/SM
+Meriden/M
+Meridian/M
+meridian/SM
+Meridiani Sinus Meridiani (Mars)
+meridional/SM
+meringue/MS
+merino/MS
+Merion/M
+Merioneth/M
+Merionethshire/M
+meristem/SMW
+merit-making
+merit/6pr3
+merit/CdMS
+meritable
+merithallus
+meritocracy/SM
+meritocrat/SMW
+meritorious/U
+meritorious/Y
+meritoriousness/MS
+Merivale/M
+Meriwether/M
+Merkel/M
+Merkle-Damgård/M
+Merle/M
+merle/SM
+merlin/SM
+Merlo/M
+merlon/SM
+Merlot/M Noun: usually uncountable
+mermaid/SM
+merman/M
+mermen/M
+meroblast/SM
+merohedral
+meromorphic
+meronym/SM
+Merovingian/MS
+Merriam/M
+Merrick/M
+Merrilands/M
+Merrill/M
+Merrillville/M
+Merrimac/M
+Merrimack/M
+Merrington/M
+Merriott/M
+Merris/M
+Merritt/M
+Merrow/M
+merrow/SM
+merry-go-round/SM
+merry/TLYP
+Merrybent/M
+Merrylea/M
+merrymaker/SM
+merrymaking/SM
+Merryn/M
+merrythought/MS
+MERS-CoV/M
+MERS/M Noun: uncountable
+Mersea/M
+Mersey/M
+Merseyside/M
+Mersham/M
+Mershon/M
+Merstham/M
+Merston/M
+Merther/M
+Merthyr/M
+Merton/M
+Mertoun/M
+Merv/M
+Mervyn/M
+Mery/M
+Meryl/M
+Merz/M
+mes/2DZzG
+Mesa/M
+mesa/SMW
+mesalamine/M Noun: uncountable
+mescal/SM
+mescaline/SM
+mesclun/SM
+mesdames
+Mesdames
+Mesdemoiselles
+mesdemoiselles
+mesencephalic
+mesencephalon/SM
+mesenchymatous
+mesenchyme/OSM
+mesentery/SMW
+Mesfin/M
+mesh/GMSD
+Meshaw/M
+meshwork/M Noun: usually uncountable
+mesial/Y
+mesmeric/Y
+mesmerise/RGSD
+mesmerism/MS
+mesmerist/MS
+mesmerize/RGSD
+mesne/SM
+Meso-America/M
+Mesoamerican/SM
+Mesoarchean
+mesoblast/MS
+mesocarp/MS
+mesocephalic
+mesocephaly/M Noun: uncountable
+mesocyclone/SM
+mesoderm/OW^
+mesogaster/SM
+mesogastria/M
+mesogastrium/M
+Mesolithic
+mesoloph/SM
+mesolophid/SM
+mesomorph/SMW
+mesomorphy/M Noun: uncountable
+meson/MS
+mesonic/S
+mesonium/SM
+mesonotum/M
+mesopelagic/SM
+mesophyll/SMW
+mesophyllous
+mesophyte/SMW
+mesoplanet/SM
+Mesopotamia/M
+Mesopotamian/SM
+Mesoproterozoic
+mesosalpinx/M
+mesoscopic
+mesosphere/MS
+mesothelia/M
+mesothelioma/SM
+mesothelium/M
+mesotherapy/M Noun: usually uncountable
+mesothoracic
+mesothorax/M
+mesotron/SM
+mesozoic
+Mesozoic
+Mesquita/M
+Mesquite/M
+mesquite/MS
+mess/SM
+message/SMDG
+messenger/dMS
+Messenia/M
+Messerschmidt/SM
+Messerschmitt/SM
+Messi/M
+Messiaen/M
+Messiah/M
+messiah/SM
+messiahship/SM
+messianic
+messianism/SM
+messieurs's
+Messina/M
+Messing-cum-Inworth/M
+Messing/M
+Messingham/M
+messmate/SM
+Messonnier/M
+Messrs/M
+messuage/MS
+messy/TP
+mestizo/SM
+mesylate/SM
+met/dr
+meta
+Meta-Wiki/M
+Métabetchouan-Lac-à-la-Croix/M
+metabolic/Y
+metabolisable
+metabolise/DSGR
+metabolism/SM
+metabolite/SM
+metabolizable
+metabolize/SGDR
+metacarpal/SM
+metacarpi/M
+metacarpus/M
+metacentre/SMW
+metacircular
+metacircularity/M Noun: uncountable
+metacone/SM
+metacromia/M
+metacromion/M
+metaculture/SMO
+metacyclic/SM
+metadata/M Noun: uncountable
+metadiegetic
+metadiscourse/SM
+metadyne/SM
+métadyne/SM
+metafiction/O3
+metafictive
+metafile/SM
+metafunction/SMO
+metagame/DGSM
+metage/SM
+metageneses
+metagenesis/M
+metagenetic
+metagenomic
+metagenomics/M Noun: uncountable
+metal/WSMGJD
+metalanguage/MS
+metalaw/M Noun: uncountable
+metalaxyl/M Noun: uncountable
+metalegal
+metalepsis/M
+metaleptic/OY
+metalevel/SM
+metalhead/SM
+metalinguistic/Y
+metallic/SMY
+Metallica/M
+metallicity/SM
+metalliferous
+metalline/M
+metallise/SnGD
+metallize/nDSG
+metallocene/SM
+metallogenic
+metallograph/SMr3
+metallographical/Y
+metallography/SMW
+metalloid/SM
+metallophone/SM
+metallurgy/1MSwW3
+metalsmith/MS
+metalwork/RGJMS
+metalworking/SM
+metamaterial/SM
+metamathematical
+metamathematician/SM
+metamathematics
+metamer/SM
+metamere/MS
+metameric/Y
+metamerism/M Noun: usually uncountable
+metamorphic/SM
+metamorphise/DGS
+metamorphism/SM
+metamorphose/DGS
+metamorphosis/M
+metaphase/SM
+metaphor/SWw1M3
+metaphosphate/SM
+metaphrase/DGMS
+metaphrastic
+metaphysic/SMOY
+metaphysician/SM
+metaphysicize/DGS
+metaplasia/SM
+metaplasm/M
+metaplastic
+metapolitical
+metapolitics
+metapopulation/SM
+metasedimentary/SM
+metasilicate/SM
+metasomatic
+metasomatise/SGD
+metasomatism/SM
+metasomatize/SGD
+metastability/SM
+metastable/SM
+metastases
+metastasis/dMSQ
+metastasize/SGD
+metastate/MS
+metastatement/SM
+metastatic/Y
+metasternal
+metasternum/M
+metastomial/M
+metastomium/M
+metasyntactic
+metatarsal/SM
+metatarsi/M
+metatarsus/M
+metatext/MS
+metatextual/Y
+metatheoretical
+metatheory/SM
+Metatheria Taxonomic infraclass
+metatherian/SM
+metatheses
+metathesis/M
+metathesise/SGD
+metathesize/SGD
+metathetic/O
+metathoracic
+metathorax/M
+metatracheal
+Metatron/M
+metatropy/M
+metatype/MW
+metavariable/SM
+metavariscite/M
+Metaverse/M
+metaverse/SM
+metavolcanic
+metayage/MS
+metayer/MS
+metazoan/SM
+Metcalfe/M
+mete/SM
+metempsychoses
+metempsychosis/M
+metempsychosist/MS
+metempsychotic
+meteor/WS1M
+meteorite/SMW
+meteoritic/S
+meteoritical/Y
+meteoriticist/SM
+meteorograph/SMW
+meteoroid/MSO
+meteorology/wMS13
+meter/dp
+metethereal Adjective
+metetherial Adjective
+Metfield/M
+Metford/M
+metformin/SM
+meth/SM
+methadone/SM
+methaemoglobin/M Noun: uncountable
+methaemoglobinaemia/M Noun: uncountable
+methamphetamine/SM
+methane/SMO
+methanogen/MSW
+methanogenesis/M Noun: uncountable
+methanoic
+methanol/SM
+metheglin/SM
+methenamine/SM
+Metheringham/M
+methicillin/M Noun: uncountable
+Methil/M
+Methilhill/M
+methinks
+methionine/SM
+Methley/M
+Methlick/M
+methocarbamol/M Noun: uncountable
+method/1SMwW
+methodical/P
+methodise/SGDN
+Methodism/M Noun: uncountable
+Methodist/MS
+methodize/SGDN
+methodology/Sw1M3
+Methone/M
+methotrexate/SM
+methought
+methoxy/M
+methoxyl/M Noun: uncountable
+methoxys
+Methuen/M
+Methuselah/M
+Methven/M
+Methwold/M
+methyl/SM
+methylacetylene/SM
+methylate/SGDn
+methylene/SM
+methylergonovine/M Noun: uncountable
+methylic
+methylphenidate/SM
+methylprednisolone/SM
+Methyr/M
+metic/MS
+meticulous/PY
+Metidian
+métier/SM
+metier/SM
+Métis-sur-Mer/M
+Metis/M
+metoidioplasty/SM
+metol/M
+Metonic Metonic cycle
+metonym/SM
+metonymic/OY
+metonymous
+metonymy/SM
+metope/SM
+metoprolol/M Noun: uncountable
+metre/S1Ww
+metreage/M
+metric/nNMS
+metricate/DSG
+metricize/DGS
+metrifonate/M Noun: uncountable
+metriphonate/M
+metrisability/M Noun: uncountable
+metrisable
+metrist/MS
+metritis
+metrizability/M Noun: uncountable
+metrizable
+Metro/M
+metro/MS
+Metrolink
+metrology/3wSM
+metronidazole/SM
+metronome/SM
+metronomic
+metronymic/S
+metropolis/SM
+Metropolitan
+metropolitan/SM
+metropolitanate/MS
+metropolitanization
+metropolitical/Y
+metrorrhagia/SM
+metrosexual/SM
+metrosexuality/M Noun: uncountable
+metrotome/SM
+Metrotown/M
+metrum/M
+metta/M Noun: uncountable
+Mettingham/M
+mettle/DSM
+mettlesome/Y
+mettlesomeness/M Noun: uncountable
+Metton/M
+Metuchen/M
+Metzger/M
+Metzler/M
+Meuse/M
+MeV
+Mevagissey/M
+mew/GSD
+Mewan/M
+mewl/DSG Verb
+mews/MS
+Mewsey/M
+Mexborough/M
+Mexican/SM
+Mexico/M
+Meyer/SM
+Meyerbeer/M
+Meyerson/M
+Meyerstein/M
+Meylltyrne/M
+Meyrick/M
+Meysey/M
+mezereon/MS
+mezuzah/SM
+mezuzoth/M
+mezza
+mezzanine/MS
+mezzo-soprano/SM
+mezzo/SM
+mezzotint/SGDR
+mfg
+mfr/S
+Mg
+mg
+MGM
+mgr
+Mhlanga/M
+MHz
+mi/C
+mi/M
+Miami-Dade/M
+Miami/M
+Miamisburg/M
+miaow/SGDJ
+Miaphysite
+miasma/MSO
+miasmatic/Y
+miasmic/Y
+miaul/SGDJ
+MiB
+mic/SM
+mica/MS
+micaceous
+Micah/M
+Micardis/M
+Micawber/M~
+Micawberism/M Noun: uncountable
+mice/M
+micellar
+micelle/SM
+Michael-le-Querne/M
+Michael/SM
+Michaelangelo/M
+Michaelchurch/M
+Michaelis/M
+Michaelmas/M
+Michaelsen/M
+Michaelson/M
+Michaelston-le-Pit/M
+Michaelston-super-Avon/M
+Michaelston-super-Ely/M
+Michaelston-y-Fedw/M
+Michaelstone-y-Fedw/M
+Michaelstow/M
+Micheaux/M
+Michel/M
+Michelangelo/M
+Micheldever/M
+Michele/M
+Michelin/M
+Michelle/M
+Michelmersh/M
+Michelson/M
+Michigan/M
+Mick/M
+mick/MS
+Mickelson/M
+Mickey/M
+mickey/SM
+Mickfield/M
+Mickle/M
+mickle/MS
+Mickleby/M
+Micklefield/M
+Micklegate/M
+Mickleham/M
+Mickleover/M
+Mickleton/M
+Mickley/M
+micky/M
+Micmac/SM
+miconazole/M Noun: uncountable
+micra's
+micrite/SMW
+micro-environment/SMO
+micro/SM
+microaerophile/SMW
+microamp/SM
+microampere/SM
+microanalyses
+microanalysis/M
+microanalytic
+microanatomy/SM
+microangiopathic
+microarchitecture/SM
+microarray/SM
+microbat/SM
+microbe/SMW
+microbial/Y
+microbialite/SM
+microbian
+microbicide/SMO
+microbiology/w3SMW1
+microbiome/SM
+microbiota/M
+microbitcoin/SM
+microbore/SM
+microbrewery/SM
+microbrowser/SM
+microburner/M
+microbus/M
+microbusiness/SM
+microcamera/SM
+microcanonical
+microcapillary
+microcapsule/SM
+microcar/SM
+microcard/SGDM
+microcassette/SM
+microcell/SM
+microcellular
+microcephalic/MS
+microcephalous
+microcephaly/WSM
+microchannel/SM
+microchemistry/M Noun: uncountable
+microchip/SGDM
+microchiropteran/SM
+microcircuit/SM
+microcircuitry/SM
+microclimate/SW1
+microcline/SM
+microcode/GDSM
+microcoleoptera/M
+microcolony/SM
+microcomputer/MS
+microcomputing/M Noun: uncountable
+microcontinent/SMO
+microcontroller/SM
+microcopy/SGDM
+microcosm/WSMO1
+microcosmography/SM
+microcosmopolitan/M
+microcrack/SGDM
+microcredit/SM
+microcrystal/SM
+microcrystalline
+microcyte/WSM
+microdeletion/SM
+microdensitometer/SM
+microdot/SM
+microdrive/SM
+microeconomics
+microeconomy/MSW
+microelectrode/SM
+microelectromechanical
+microelectronic/SY
+microenterprise/SM
+microevolution/SM
+microevolutionary
+microfarad/SM
+microfauna/MO
+microfibre/SM
+microfibril/SM
+microfiche/SGDM
+microfilament/SM
+microfilm/GDMSR
+microfinance/SM
+microfine Adjective
+microfloppy/SM
+microflora/M
+microflorae/M Plural of microflora
+microforge/SM
+microform/SM
+microformat/SM
+microfossil/SM
+microfracture/SMG
+microfungi/M
+microfungus
+microgame/SM
+microgamete/SM
+microgametocyte/M
+microgametophyte/SM
+microgenerate/N
+microgeographic/O
+microglia/O
+microglossary/M
+microgram/SM
+microgramme/SM
+microgranite/SM
+microgranitoid Adjective
+micrograph/SMZ
+micrographic/SY
+micrography/SM
+microgravity/M Noun: usually uncountable
+microgroove/MS
+microhabitat/SM
+microhydrodynamics
+microhylid/SM
+microinject/SDG
+microinjection/SM
+microinstruction/MS
+microjoule/SM
+microkernel/SM
+microlaminated
+microlevel/SM
+microlight/SM
+microlite/WSM
+microlith/SMW
+microlitre/SM
+microloan/SM
+micrologic/O
+micromachine/SMy
+micromanage/LDSGr
+micromania/M Noun: usually uncountable
+micromanipulation/SM
+micromanipulator/SM
+micromechanical
+micromechanics
+micromechatronic/S
+micrometeorite/SWM
+micrometeoroid/SM
+micrometer/SM
+micrometre/SM
+micrometry/M Noun: uncountable
+microminiature/SM
+microminiaturisation
+microminiaturization
+micromodel/GSM
+micromodeling
+micromodule/SM
+micromolar
+micromole/SM
+micromorph/SM
+micromorphology/wM
+micromotor/SM
+micromutation/SM
+micron/MSN
+microneedle/SM
+Micronesia/M
+Micronesian/SM
+microneutralisation/SM
+microneutralization/SM
+micronise/SGDNR
+micronize/SGDNR
+micronodular
+micronuclear
+micronuclei
+micronucleus
+micronutrient/SM
+microorganism/SM
+micropayment/SM
+microphagic
+microphagous
+microphallus
+microphone/SMGD
+microphotograph/SWZ
+microphyll/SM
+microphysical
+microphysics
+microphyte/MSW
+micropig/SM
+micropipette/SM
+microplastic/SM
+micropore/SM
+microporosity/SM
+microporous
+micropower/M Noun: uncountable
+microprint/G
+microprobe/SM
+microprocessing/M Noun: uncountable
+microprocessor/MS
+microprogram/MSGD
+micropropagation/SM
+micropterous
+micropyle/MS
+microreader/SM
+microRNA/SM
+microsatellite/SM
+microsaur/SM
+microsaurian Adjective
+microsclere/SM
+microscooter/SM
+microscope/SMWw1Z3
+Microscopium/M
+microscopy/MS
+microSD/M
+microsecond/SM
+microsegment/SM
+microseism/SMW
+microseismicity/M Noun: uncountable
+microseismogram/SM
+microseismology/M Noun: uncountable
+microseismometer/M
+microsequence/MG
+microsimulation/SM
+microsiphon/SM
+microsite/SM
+microsleep/SM
+microsmatic
+microsociety/SM
+microsociolinguistic/S
+microsociology/M Noun: uncountable
+Microsoft/M
+microsome/SMO
+microspectrophotometer/SM
+microsphere/SM
+microsporangia/MO
+microsporangium/M
+microspore/SM
+microsporogenesis
+microstate/SM
+microstimulation/SM
+microstome/M
+microstore
+microstratification/SM
+microstratigraphy/WM
+microstrip/SM
+microstructure/SO^
+microstudy/SM
+microstylous
+microsurgeon/SM
+microsurgery/MS
+microsurgical
+microswitch/SM
+microsystem/SM
+microtask/SM
+microteaching/M Noun: uncountable
+microtechnology/wSM
+microtesla/SM
+microtheory/SM
+microtherm/MOW
+microtine/SM
+microtome/SM3
+microtomy/W
+microtonal/Y
+microtonality/SM
+microtone/SM
+microtopography/WwSM
+microtubule/SM
+microvascular
+microvesicular
+microvilli
+microvillous
+microvillus/M
+microvolt/MS
+microwavable
+microwave/G7DSM
+microword/S
+microxea/M
+microzoan/SM
+microzoon/SM
+microzooplankton/M
+microzyme/SM
+micrurgy/w
+micturate/SGD
+micturition/SM
+mid-afternoon
+mid-age/D
+mid-air/SM
+Mid-America/M
+Mid-American
+mid-angle
+Mid-Atlantic/M
+mid-band/M
+mid-body
+mid-breast
+mid-brow
+mid-calf
+mid-career
+mid-century
+mid-channel
+mid-chest
+mid-circle
+mid-coast
+mid-continent/O
+mid-course
+mid-cycle
+mid-deck
+mid-deep
+mid-distance
+mid-earth
+mid-engined
+mid-European
+mid-evening
+mid-feather
+mid-fi
+mid-flight
+mid-kidney
+mid-layer
+mid-level
+mid-management
+mid-market
+mid-morning
+mid-ocean/W
+mid-off
+mid-on
+mid-watch
+mid-year
+Mid/M
+mid/Z
+Midas/M
+midazolam/M Noun: uncountable
+midbrain/MS
+Midcable/M
+midday/SM
+midden/SM
+middle-age/D
+middle-class
+middle-of-the-road
+middle-sized
+Middle/M
+middle/mDSGkJM
+Middlebie/M
+Middleborough/M
+middlebrow/SM
+Middleburg/M
+Middlebury/M
+Middlefield/M
+Middleham/M
+Middlehurst/M
+Middlemarch/M
+Middlemore/M
+Middlesborough/M
+Middlesbrough/M
+Middlesex/M
+Middlesmoor/M
+Middleton-on-Leven/M
+Middleton-on-Sea/M
+Middleton/M
+Middletown/M
+middleware/M Noun: usually uncountable
+middleweight/MS
+Middlewich/M
+Middlezoy/M
+middlingish
+middlingness
+Middop/M
+middy/SM
+midear
+midface/O
+midfield/MSR
+Midgard/M
+midge/SM
+midget/SM
+Midgham/M
+midgy/SM
+midheaven/SM
+Midhirst/M
+Midhope/M
+Midhurst/M
+midi/SM
+midinette/SM
+Midland/M
+midland/SMR
+Midlands/M
+Midleton/M
+Midley/M
+midlife/M
+midline/SM
+midlives
+Midloe/M
+Midlothian/M
+Midmar/M
+midmost/S
+midnight/SM
+midpiece/SM
+midpoint/MS
+midrange
+Midrash/M
+Midrashim/M
+midrib/MS
+midriff/SM
+midscale
+midsection/SM
+midship/mS
+midshipmanship
+midshire
+midshore
+midsole/SM
+Midsomer/M
+midspan
+midst/MS
+Midstocket/M
+midstream/M
+midsummer/SM
+midterm/MS
+Midvale/M
+Midville/M
+midway
+midweek/YSM
+Midwest/M
+Midwestern/R
+midwicket
+midwife/My
+midwifery/MS
+midwinter/MYS
+midwives
+midyear/SM
+Mielczarek/M
+mielie/MS
+mien/SM
+Miers/M
+Mierzwinski/M
+mieux
+Mieza/M
+mifepristone/M Noun: uncountable
+miff/DSG
+Mifflin/M
+Mifsud/M
+MiG/SM
+MIG/SM
+might've
+might/Sz
+mightn't
+mightn't've
+mighty/TP
+mignon/M
+Mignon/M
+mignonette/SM
+Migos/M
+migraine/MS
+migrainous
+migrant/ISM
+migrate/INS4DnG
+migration/MI
+migrative
+migrator/SM
+migratory Adjective
+Miguel/M
+Mihara/M
+mihrab/SM
+mikado/SM
+Mikal/M
+mike/DMGS
+Mike/M
+Mikhail/M
+Mikhailov/M
+MiKTeX/M
+Mila/M
+Milad/M
+milady/MS
+Milam/M
+Milan/M
+Milanese/M
+Milankovitch Milankovitch cycles
+Milano/M
+Milbank/M
+Milborne/M
+Milborough/M
+Milbrath/M
+Milburn/M
+Milby/M
+milch/M
+Milcombe/M
+Milcote/M
+mild-mannered
+mild/TPY
+milden
+Milden/M
+Mildenhall/M
+mildew/ZGDSM
+Mildmay/M
+Mildred/M
+Mildura-Buronga/M
+Mildura/M
+Mile/M
+mile/SMrG
+mileage/MS
+Mileham/M
+mileometer/SM
+milepost/SM
+Miles/M
+Milesian/MS
+Milestone/M
+milestone/MS
+Miletus/M
+Miley/M
+milfoil/SM
+Milford-on-Sea/M
+Milford/M
+Milian/M
+miliaria/SMO
+miliary/SM
+milieu/SM
+militance/SM
+militancy/SM
+militant/YPSM
+militaria/M
+militarise/CSDGN
+militarism/SM
+militarist/SMW
+militarization/M
+militarize/CSDGN
+military/SM-Q3Y
+militate/SGD
+militia/mSM
+Milk/M
+milk/RDZSMG
+milkfish/SM
+milkmaid/SM
+milkman/M
+milkmen/M
+milkshake/SM
+milksop/SM
+milkweed/MS
+milkwort/MS
+Milky Milky Way
+milky/TP
+Mill/MS
+mill/SRD7MG
+Millais/M
+Milland/M
+Millard/M
+Millbank/M
+millboard/MS
+Millbrae/M
+Millbrook/M
+Millburn/M
+Millbury/M
+Millcreek/M
+Mille/M
+Milledgeville/M
+millenarian/SM
+millenarianism/SM
+millenarianist/SM
+millenary/SM
+millennia
+millennial/SM3
+millennialism/SM
+Millenniata/M
+millennium/SM
+millepede/SM
+millepore/MS
+Miller/M
+millesimal/MSY
+millet/SM
+Millett/M
+Millette/M
+Millgarth/M
+milliammeter/SM
+milliamp/SM
+milliampere/SM
+milliard/SM
+Milliband/M
+millibar/SM
+millibitcoin/SM
+Millicent/M
+millidegree/SM
+Millie/M
+Milligan/M
+milligram/SM
+milligramme/MS
+millijoule/SM
+Millikan/M
+millilitre/SM
+millimetre/SM
+milliner/ZSM
+millinery/SM
+milling/M
+Millington/M
+million/MHS
+millionaire/SM
+millionairess/SM
+millionth/M
+millipede/SM
+millisecond/SM
+Millisle/M
+millivolt/MS
+millivoltmeter/SM
+milliwatt/SM
+Millom/M
+millpond/SM
+Millport/M
+millrace/MS
+Millstone/M
+millstone/SM
+millstream/SM
+Milltown/M
+Millville/M
+Millwall/M
+Millward/M
+Millwater/M
+millwright/SM
+Milnathort/M
+Milne/M
+Milner/M
+Milngavie/M
+Milnrow/M
+Milnthorpe/M
+Milo/M
+milometer/SM
+milord/SM
+Milpitas/M
+Milquetoast/SM
+milreis/M
+Milroy/M
+Milson/M
+Milstead/M
+Milston/M
+milt/RSM
+Milton-Kildary/M
+Milton-next-Gravesend/M
+Milton-under-Wychwood/M
+Milton/WM
+Miltonian Adjective
+Milverton/M
+Milwaukee/M
+Milwaukie/M
+Milwich/M
+Mimas/M
+mimbar/SM
+MIMD/M Acronym of multiple instruction, multiple data
+mime/DSMGr
+mimeo/SM
+mimeograph/MDSG
+mimesis/M
+mimetic/Y
+Mimi/M
+mimic/RDGSy
+mimicry/SM
+Mimms/M
+mimosa/MS
+mimulus/MS
+min.
+Min/M
+min/S
+Mina/M
+minable
+minacious/Y
+minacity/MS
+Minaj/M
+Minardi/M
+minaret/SM
+Minastrin/M
+minatory Adjective
+minbar/MS
+mince/RDGkSJ
+mincemeat/SM
+Minch/M
+Minchin/M
+Minchinhampton/M
+mind-expanding
+mind-numbing/Y
+mind-reader/SM
+mind/phSiR6DjMG
+Mindanao/M
+mindbogglingly
+Mindell/M
+Minden/M
+minder/AS
+mindfulness/SM
+mindless/YP
+mindset/SM
+mindshare/M Noun: usually uncountable
+mindstyle/SM
+mindware/M Noun: uncountable
+mine/7pMGJDRS
+minefield/SM
+Minehead/M
+minehunter/SM
+minehunting/M Noun: uncountable
+minelayer/SM
+minelaying
+Minelli/M
+minenwerfer/M
+Mineola/M
+mineproof
+Minera/M
+Mineral/M
+mineral/YQq8-SM
+mineralisation/CS
+mineralization/CS
+mineralness
+mineralocorticoid/SM
+mineralogy/Mw3S1
+Minerva/M
+Mines/M
+mineshaft/SM
+minestrone/MS
+minesweeper/SM
+minesweeping/M Noun: usually uncountable
+Minety/M
+mineworker/SM
+Ming/M
+mingier
+mingiest
+Minginui/M
+mingle/FGDS
+Mingo/M
+mingy
+Minh
+Minho/M
+Mini/MS
+mini/SM
+miniate/DGS
+miniature/GQ3S8M-qD
+minibar/SM
+minibeast/SM
+minibore Adjective
+minibreak/SM
+minibus/SM
+minicab/SM
+minicam/MS
+minicar/SM
+minicell/SM
+minichain/SM
+minichromosome/SM
+minicircle/SM
+minicomputer/SM
+minidisc/SM
+Minidoka/M
+minidress/SM
+minify/SGDN
+minikin/MS
+minim/s9Q8S-qMo
+minima/M
+minimal/S3
+minimalism/SM
+minimalistic
+minimality/SM
+minimax/SM
+minimization/SM
+minimum/SM
+mining/M
+Miningsby/M
+minion/SM
+Miniott/M
+miniscule
+miniSD/M
+miniseries
+miniskirt/MS
+minister/dnSMo
+ministerial/3
+ministership/SM
+ministrant/SM
+ministry/SM
+minium/M Noun: uncountable
+minivan/SM
+miniver/SM
+MINIX/M
+mink/MS
+minke/SM
+Minkowski/M
+Minna/M
+Minneapolis/M
+Minnehaha/M
+minnesinger/MS
+Minnesota/M
+Minnesotan/M
+Minnetonka/M
+Minnie/M
+Minnigaff/M
+Minnis/M
+minnow/MS
+Minoan/SM
+minocycline/M Noun: uncountable
+Minooka/M
+Minoprio/M
+Minor/M
+minor/SM
+minora
+Minorca/M
+Minoress/MS
+Minories/M
+minoritarian/SM
+minoritarianism/M Noun: usually uncountable
+Minorite/MS
+minoritised
+minoritized
+minority/SM
+Minos/M
+Minot/M
+Minotaur/M
+minoxidil/M Noun: uncountable
+Minshull/M
+Minsk/M
+Minsky/M
+Minstead/M
+Minster-in-Sheppey/M
+Minster-on-Sea/M
+Minster/M
+minster/MS
+Minsterley/M
+Minsterworth/M
+minstrel/SM
+minstrels/Z
+minstrelsy/SM
+mint/DGSMRZ
+Mint/M
+mintage/MS
+Minterne/M
+Minting/M
+Mintlaw/M
+Mintlyn/M
+Minto/M
+Minton/M
+minty/T
+minuend/MS
+minuet/MS
+minus/SM
+minuscular
+minuscule/SM
+minute/PMGTDSY
+minuteman/M
+minutemen/M
+minutia/M
+minutiae/M
+Minver/M
+Minwear/M
+minx/MS
+minyan/M
+minyanim/M
+Miocene/M
+miogeosyncline
+miosis
+miotic
+MIPS
+Miquelon/M
+Mir/M
+Mira/M
+Mirabeau/M
+Mirabel/M
+mirabelle/MS
+mirabile
+mirabilis/M
+miracle/MS
+miraculous/YP
+Mirada/M
+mirador/SM
+mirage/DSMG
+Mirage/M
+Mirai/M
+Miramar/M
+Miramichi/M
+Miranda/M
+mIRC/M
+mire/DMGSZ
+mirepoix/M
+Mirfield/M
+Miriam/M
+mirk/MZ
+Miró/M
+Mirowski/M
+Mirowsky/M
+Mirrlees/M
+mirror/dMS
+mirtazapine/M
+mirth/6SpMj
+mirthful/P
+mirthless/PY
+MIRV
+miry/T
+Mirzapur/M
+Mirzayanov/M
+mis-citation
+mis-selection
+mis-sell/SG
+mis-sold
+misaccount/SGD
+misadaptation/SM
+misaddress/G
+misadjust/SGD
+misadventure/SM
+misallocate/SDGN
+misandrist/SM
+misandry/M Noun: usually uncountable
+misanthrope/SZ1Mw
+misanthropise/SGD
+misanthropism/M Noun: uncountable
+misanthropist/SM
+misanthropize/SGD
+Misanthropos
+misanthropy/MS
+misappliance/SM
+misapply/n
+misappreciate/SGDN
+misapprehend
+misapprehensive
+misattribute/SGD
+misattribution/SM
+misbehaver/SM
+misbelief/SM
+misbelieve/DGS
+misbeliever/SM
+misbrand/GS
+misbuild/SG
+misbuilt
+misc/b
+miscalculate
+miscall/G
+miscarry/DS
+miscast/G
+miscategorise/SGD
+miscegenate/DGMS
+miscegenation/SM
+miscegenist/MS
+miscellanea/M
+miscellaneous/YP
+miscellanist/MS
+miscellany/SM
+mischance/MS
+mischaracterise/SGD
+mischief-makers
+mischief-making
+mischievous/PY
+miscibility/S
+miscible/CI
+misclassified
+misclassifying
+miscommunicate
+miscommunications
+miscomprehended
+miscompute/SGDN
+misconceit/SGD
+misconceiver/SM
+misconfiguration
+misconfigure/D
+misconstruction/SM
+misconstrue/DGS
+miscopy/DGS
+miscount
+miscreant/SM
+miscreate/SGD
+miscreative
+miscutting
+misdate/SGD
+misdeal/GMS
+misdealt
+misdecision/SM
+misdeclaration/SM
+misdeed/MS
+misdemeanant/SM
+misdemeanour/SM
+misdescribe/SDN
+misdescriptive
+misdiagnosis
+misdial/SGD
+misdirect/G
+misdirector/S
+misdistribution
+misdoubt/DSGJ
+mise
+misemploy/DGS
+misemployment/S
+misenter/Sd
+miser/ZY7l
+miserabilism
+miserabilist/SMW
+miserable/P
+Miserden/M
+misericord/S
+miserly/P
+misery/MS
+Mises/M
+misestimate/D
+misestimation/S
+misexplain/SGD
+misexplanation/S
+misfeasance/SM
+misfeature/M
+misfield
+misfit
+misfold/SGD
+misgiving/SM
+misguide/hi
+misguided/P
+mishandle/DGS
+mishap/M
+Mishawaka/M
+Mishima/M
+Mishin/M
+mishit/GMS
+Mishkin/M
+mishmash/MS
+Mishnah/M
+Mishnaic
+misidentify/GNS
+misjoin/SGD
+misjoinder/SM
+misjudgment/SM
+miskenning
+miskey/SGD
+miskick/SGD
+Miskolc/M
+mislay
+mislead/GSkr
+misleader's
+misled
+mislike/SGDJ
+misline
+mislineation
+mislippen
+mislive/SGD
+mislocalize/SGDN
+mislocate/SGDN
+mislodge/SGD
+mismade
+mismake/SG
+mismanageable
+mismanager
+mismannered
+mismanners
+mismannert
+mismark/SGD
+mismarketing
+mismarriage/S
+mismarry/SGD
+mismatchment
+mismate/SGD
+mismean/SG
+mismeant
+mismeasure/SGD
+mismeasurement/S
+mismetre/SGD
+misnome/SGDR
+misnomered
+misnote/SGD
+misnumber/Sd
+misnurture/SGD
+misogamy/M3S
+misogynist/W
+misogynous
+misogyny/3SM
+misology/M3
+misoneism/M Noun: usually uncountable
+misoneist/MS
+misoprostol/M Noun: uncountable
+misperceiving
+misperception/SM
+Misperton/M
+mispickel/M
+misplace/L
+mispositioned
+misprediction/SM
+misprice/SGD
+misprint/M
+misprise/SGD
+misprision/SM
+misprize/SGD
+misprizer
+misproportion
+misqualify/SGD
+misread
+misregulation/SM
+misremembers
+misreport
+misrepresentative
+misrepresenter/SM
+miss/EVDGS
+miss/S~
+missable
+missal/MSE
+Missaukee/M
+missaw
+missee/SG
+misseen
+Missenden/M
+misshapen/YP
+missile/SM
+missilery/MS
+mission's/A4
+mission/FRSM
+Mission/M
+missionary/MS
+missions/4
+Mississauga/M
+Mississippi/M
+Mississippian/SM
+missive/4
+missive/MS
+Missler/M
+Missolonghi/M
+Misson/M
+Missoula/M
+Missouri/M
+Missourian/SM
+misspeak/GS
+misspecification/SM
+misspell
+misspelt
+misspoke
+misstep
+missus/SM
+Missy/M
+missy/M
+mist/SRZzDGM
+mistakable/Y
+mistake/SMr
+mistaken/Y
+mistakenness/M Noun: uncountable
+mister/CMS
+Misterton/M
+mistime/DG
+mistle
+mistletoe/SM
+Mistley/M
+mistlike
+mistral/SM
+mistranslate/GS
+mistreat/GL
+mistruster/SM
+mistrustfulness/M
+mistry/DGS
+misty/TP
+mistype/J
+misunderstand/R
+misusage/M
+misuse/M
+MIT/M
+Mitch/M
+Mitcham/M
+Mitchel/M
+Mitcheldean/M
+Mitchell/M
+Mitchison/M
+Mitchum/M
+mite/MS
+Mitford/M
+Mithraic
+Mithraism/M
+Mithraist/MS
+Mithras/M
+mithridate/SMW
+mithridatise/DGS
+mithridatism/M
+mithridatize/DGS
+mithril/M Noun: uncountable
+mitigable
+mitigant/SM
+mitigate/DnyGS
+mitigative
+mitigator/SM
+Mitis/M
+Mitnick/M
+Mito/M
+mitochondria/O
+mitochondrion/M
+mitogen/SMW
+mitoses
+mitosis/M
+mitotic/Y
+Mitova/M
+mitraille/MS
+mitrailleur/MS
+mitrailleuse/MS
+mitre/DGMSO
+mitsuba/M Noun: uncountable
+Mitsubishi/M
+Mitsui/M
+Mitsuru/M
+mitt/SM
+mitten/SM
+Mitterrand/M
+mittimus/MS
+Mitton/M
+Mitty/M
+mitzvah/M
+mitzvoth/M Plural of mitzvah
+mix-up
+mix/GKDSA
+mixable
+Mixbury/M
+mixedness/M Noun: uncountable
+mixen/SM
+mixer/SM
+mixolydian
+Mixolydian
+mixotroph/SMW
+mixotrophy/M Noun: uncountable
+Mixtec/SM
+mixture/MS
+Miyabe/M
+Miyagi/M
+Miyako/M
+Miyamoto/M
+Miyazaki/M
+mizen/MS
+Mizoram/M
+mizzen/SM
+mizzenmast/MS
+mizzle/DGSZ
+mk3d
+MK3D
+mka
+MKA
+mks
+MKS
+mkv
+MKV
+ml
+Mládek/M
+MLB/M
+Mlle/M
+MLSO
+mm
+MMB/M
+Mme
+MMORPG/SM
+MMS/SGD
+MMU/M
+MMX
+Mn
+mnemonic/YMSO
+mnemonist/SM
+Mo
+moan/RDGMS
+Moana/M
+moanful/Y
+moat/DMGS
+Moat/M
+Moawhango/M
+mob/CSDG
+mob/MR
+Mobberley/M
+mobbish
+mobcap/SM
+Moberly/M
+Mobil/M
+mobile/IQ-+9stq8
+Mobile/M
+mobile/MS
+mobiliary
+mobilise/CnGADS
+mobility/SMI
+mobilize/ADSCnG
+Möbius/M
+mobocracy/SM
+mobocrat/SMW
+mobsman/M
+mobsmen/M
+mobster/MS
+Mobutu/M
+Moby/M
+Moccas/M
+moccasin/MS
+Mocha
+mocha/SM
+Mochdre/M
+Mochizuki/M
+Mochrum/M
+mock-up/SM
+mock/RGSkD7
+mocker/SZ
+mockery/SM
+mockingbird/SM
+mockumentary/SM
+Mod/MS
+mod/RoSGD
+modafinil/M Noun: uncountable
+modal/SM
+modalism/SM
+modalist/SMW
+modality/SM
+Modan/MS
+Modbury/M
+mode/FMS
+model/RSMJDG
+modem/MS
+moderate/GS
+moderate/YIPN
+moderated/U
+moderation/MI
+moderation/S
+moderatism/M Noun: usually uncountable
+moderato
+moderator/MS
+moderatorship/SM
+modern/SQ8YTPs9q-
+Moderna/M
+modernised
+modernism/SM
+modernist/WS
+modernity/MS
+modernization/SM
+modest/TZY
+Modestas/M
+modestly/I
+Modesto/M
+modesty/MIS
+modi modi vivendi
+modicum/MS
+modifiability/SM
+modifiable/P
+modificatory
+modify/nRSBGD
+Modigliani/M
+modillion/MS
+modish/YP
+modiste/MS
+modular/Q-Y8q
+modularity/MS
+modulate/CGANDS
+modulation/MCS
+modulator/CAMS
+module/SnM
+moduli/M
+modulo
+modulus/M
+modus
+Modwen/M
+Moe-Newborough/M
+Moe/M
+Moebius
+Moel/M
+Moelfre/M
+moelleux
+Moen/M
+Moenui/M
+Moera/M
+Moeraki/M
+Moerewa/M
+mofette/MS
+Moffat/M
+Moffatt/M
+Moffett/M
+Moffitt/M
+mog/MS
+Mogadishu/M
+Mogerhanger/M
+moggie/MS
+Moglen/M
+Mogul/M
+mogul/MS
+mohair/SM
+Mohamed/M
+Mohammadi/M
+Mohammed/M
+Mohammedan/MS
+Mohammedanism/M
+Mohammedanize/DGS
+Mohan/M
+Mohave/M
+Mohawk/MS
+Moher/M
+Mohist/SM
+Mohock/MS
+Mohorovičić/M
+Mohr/M
+mohur/SM
+Moidart/M
+moider/S
+moidered
+moidering/S
+moidore/MS
+moiety/SM
+moil/GSD
+Moine/MS
+Moira/M
+moire/SM
+Moissan/M
+moissanite/SM
+moist/PYT
+Moist/SM
+moisten/rdS
+moisture/psQMS
+moisturize/DGS
+moisturizer/MS
+Moita/M
+Moivre/M
+Mojave/M
+Mokau/M
+moke/MS
+Mokena/M
+moko/MS
+Mokoia/M
+moksha/M Noun: uncountable
+molal
+molar/M
+molar/SK
+molarity/SM
+Molash/M
+molasses
+Mold/M
+Moldavia/M
+Moldavian
+moldavite/SM
+Moldova/M
+Moldovan/SM
+mole/MS
+molecular/CQY
+molecularity/SM
+molecule/MS
+molehill/MS
+Molescroft/M
+Molesey/M
+moleskin/SM
+molest/SnRGD
+Molesworth/M
+Molex/M
+molibdenocene
+Molière/M
+Moliere/M
+Molièresque
+Molina/M
+Moline/M
+Molinism/M
+Molinist/MS
+Molios/M
+moll/MYS
+Molland/M
+Mollaret/M
+Møller/M
+Mollie/M
+mollify/GnDS
+Mollington/M
+mollusc/MS
+Mollusca Taxonomic phylum
+molluscan/SM
+molluscoid
+molluscous
+molly/MS
+mollycoddle/SGDr
+mollymawk/MS
+moloch/M
+Moloch/M
+molochs
+Molokai/M
+Molotov/M
+molten
+Moltke/M
+Moltmann/M
+molto
+Molton/M
+Moluag/M
+Molucca
+moly/M
+molybdenite/SM
+molybdenum/M
+Molyegrove/M
+Molyneux/M
+Mombasa/M
+moment/YSM
+momenta/y
+momentary/PY
+momentous/PY
+momentum/MS
+mometasone/M
+momma/SM
+Mommsen/M
+Momus/MS
+Mon/M
+Mona/M
+monachal
+monachism/M
+Monachorum/M
+Monaco/M
+monad/SMW
+monadelphous
+monadism/M Noun: uncountable
+monadology/MS
+Monaghan/M
+monamine/SM
+Monance/M
+monandrous
+monandry/M Noun: uncountable
+Monans/M
+monarch/3wWMZO
+monarchism/SM
+monarchistic
+monarchs
+monarchy/SM
+Monash/M
+monastery/MS
+monastic/YS
+monasticism/MS
+monasticize/DGS
+Monastyrsky/M
+monatomic
+monaural/Y
+monazite
+Moncel/M
+Monchelsea/M
+Monck/MS
+Monclova/M
+Moncrieff/M
+Moncton/M
+Moncur/M
+mondaine/S
+Mondale/M
+Monday/MS~
+Mondello/M
+Mondeo/M
+Mondrian/M
+Mondrum/M
+Monea/M
+Monee/M
+Monegasque/SM
+Monégasque/SM
+Monel/M
+monensin/M Noun: uncountable
+Monessen/M
+Monet/M
+monetarism/SM
+monetary/3Y
+monetise/CnADSG
+monetize/nCGADS
+Monewden/M
+money-changer/SM
+money/pMDSP
+moneybag/SM
+moneychanger/SM
+Moneydie/M
+moneyer/SM
+Moneyglass/M
+moneylender/MS
+moneylending
+moneymaker/MS
+moneymaking/M
+Moneymore/M
+Moneyneany/M
+moneyocracy/M Noun: uncountable
+Moneyreagh/M
+Moneyslane/M
+moneywise
+moneywort/MS
+Monfort/M
+Mongeham/M
+monger/SM
+mongering
+Mongewell/M
+mongol/SM
+Mongol/WSM
+Mongolia/M
+Mongolian/SM
+mongolism/SM
+Mongoloid/MS
+mongoloid/SM
+Mongomery/M
+mongoose/MS
+Mongrain/M
+mongrel/SMY
+mongrelism/M
+mongrelize/DGS
+Moniaive/M
+monial/MS
+Mónica/M
+Monica/M
+monicker/MS
+monied
+monies
+Monifieth/M
+Monigaff/M
+Monika/M
+moniker/SM
+Monikie/M
+moniliform
+Monimail/M
+Monington/M
+Monique/M
+monism/MS
+monistic
+Moniteau/M
+monition/KMS
+monitor/dSMO
+Monitor/M
+monitorship/MS
+monitory/SM
+monitress/MS
+Moniz/M
+Monk/MS
+monk/MS~
+Monkbar/M
+Monken/M
+monkery/SM
+monkey/GMSD~
+monkeyshine/SM
+monkfish/SM
+monkhood/M Noun: usually uncountable
+Monkhopton/M
+Monkland/M
+Monkleigh/M
+Monknash/M
+Monkokehampton/M
+monkshood/SM
+Monksilver/M
+Monkston/M
+Monkswood/M
+Monkton/M
+Monkwearmouth/M
+Monmouth/M
+Monmouthshire/M
+Monnet/M
+Monnier/M
+Monnington/M
+Mono/M
+mono/SM3
+monoalphabetic/Y
+monoamine/SM
+monobactam/SM
+monobasic
+monobrow/D
+monocarpic
+monocephalous
+monochord/SM3
+monochromatism/M Noun: uncountable
+monochrome/MSW3
+monocle/DMS
+monocline/OSMW
+monoclonal/SM
+monocoque/SM
+monocot/SM
+monocotyledon/MS
+monocotyledonous
+monocracy/SM
+monocrat/SMW
+monocrystal/SM
+monocrystalline
+monocular/SY
+monoculture/SM
+monocycle/SMW
+monocyte/MSW
+monocytoid
+monocytosis/M
+monodactylous
+monodentate
+monodentative
+monodomain/SM
+monodrama/SW
+monody/MWS3
+monoecious
+monoecy
+monofactorial
+monofil/SM
+monofilament/SM
+monogamous/YP
+monogamy/MS3W
+monogenean/SM
+monogenesis/M Noun: uncountable
+monogenetic
+monogenic/Y
+monogenism/M Noun: uncountable
+monogenous
+monogeny/3M
+monoglot/SM
+monogram/DGSM
+monogrammatic
+monogrammist/SM
+monograph/SMDGWr3
+monogynous
+monohull/SM
+monohybrid/SM
+monohydrate/SM
+monohydric
+monohydride/SM
+monoid/SM
+monokine/SM
+monolater/SM
+monolatrous
+monolatry/SM3
+monolayer/SM
+monolingual/SMY
+monolingualism/SM
+monoliteral
+monolith/S1MW
+monologic/OY
+monologise/SGD
+monologist/SM
+monologize/SGD
+monologue/MDGS
+monologuist/SM
+monomania/MS
+monomaniac/SMO
+monomark/SM
+monomer/MSW
+monometallism/SM
+monomethyl/M Noun: uncountable
+monomial/MS
+monomolecular
+monomorphic
+monomorphism/SM
+monomorphous
+Monongahela/M
+Monongalia/M
+mononitrate/SM
+mononuclear
+mononucleoses
+mononucleosis/M
+mononucleotide/SM
+mononym/SM
+mononymously
+monophonic
+monophosphate/MS
+Monophoto
+monophthong/SMO
+monophyletic
+monophyly/M Noun: uncountable
+Monophysite/SM
+Monophysitism/M Noun: uncountable
+monoplacophoran/SM
+monoplane/SM
+monopodia/OoM
+monopodium/SM
+monopole/Q8Zs3-S
+monopolisation
+monopoliser/SM
+monopolism/SM
+monopolist/W1
+monopolitical
+monopolization/M
+monopolizer/SM
+monopoly/SM
+monoprint/SM
+monopsony/SM
+monopsychism/M Noun: uncountable
+monorail/SM
+monorchid/SM
+monorchidism/M Noun: uncountable
+monorchism/M Noun: uncountable
+monorhyme/MS
+monosaccharide/SM
+monosodium/M Noun: uncountable
+monosome/SM
+monosomy/SMW
+monospace/SGD
+monospermal
+monospermous
+monostable
+monostichous
+monostratal
+monostrophic
+monosyllable/WSM
+monosystemic
+monoterpene/SM
+monotheism/MS
+monotheist/WSM
+monotheistical/Y
+Monothelite/MS
+monotherapy/SM
+monotone/WMS1Z
+monotonicity/SM
+monotonize/DGS
+monotonous/PY
+monotony/SM
+monotransitive
+monotreme/SM
+Monotype/MS
+monotype/SMW
+monounsaturate/D
+monovalent
+monoxide/MS
+monozygotic
+Monquhitter/M
+Monroe/M
+Monroeism/M
+Monroeville/M
+Monrovia/M
+Mons Olympus Mons (Mars)
+Monsanto/M
+Monseigneur/SM
+Monserrat/M
+Monsieur/M
+Monsignor/M
+Monsignori/M
+monsignorial
+monsoon/SMO
+monster/MSd
+monstera/SM
+monstrance/SM
+monstrosity/MS
+monstrous/YP
+Mont
+Mont-Joli/M
+Mont-Laurier/M
+Mont-Saint-Hilaire/M
+Mont-Tremblant/M
+Montacute/M
+montage/SMDG
+Montagnier/M
+Montagu/M
+Montague/M
+Montaigne/M
+Montana/M
+montane/SMW
+Montanism/M Noun: uncountable
+Montanist/SM
+montanite/M
+montaria
+montbretia/SM
+Montcalm/M
+Montclair/M
+Monte/ZM
+Montebello/M
+Monteiro/M
+Monteith/M
+Montejunto/M
+montelukast/M Noun: uncountable
+Montenegrin/MS
+Montenegro/M
+Montérégie/M
+Monterey/M
+Monterrey/M
+Montes/M
+Montessori/M
+Monteverdi/M
+Montevideo/M
+Montez/M
+Montezuma/M
+Montford/M
+Montfort/M
+Montgomerie/M
+Montgomery/M
+Montgomeryshire/M
+month/MSY
+Monthan/M
+monthly/SM
+Monticello/M
+monticule/SM
+Montilla/M
+Montis/M
+Montmagny/M
+Montmartre/M
+montmorillonite/SM
+Montour/M
+Montoya/M
+Montpelier/M
+Montpellier/M
+Montrachet/M
+Montréal-Est/M
+Montréal/M
+Montreal/M
+Montrealer/SM
+Montresor/M
+Montrose/M
+Montserrat/M
+Montville/M
+monument/OoMS
+monumentalise/DGS
+monumentality/SM
+monumentalize/DGS
+Monxton/M
+Monyash/M
+Monymusk/M
+Monza/M
+Monzievaird/M
+moo/SGD
+mooch/RGDS
+mood/2MZSz
+Moodiesburn/M
+Moodle/M
+Moody/M
+moody/TP
+Moog/M
+moola/M Noun: uncountable
+Moolman/M
+moomba
+moon/DSpMG
+Moon/M
+moonbeam/MS
+mooncalf/M
+mooncalves
+Mooney/M
+moonlet/SM
+moonlight/MGRSD
+moonlighting/M
+moonlit
+moonquake/SM
+moonrise/MS
+moonscape/MS
+moonset/MS
+moonshine/MS
+moonshiner/SM
+moonshot/MS
+Moonspell/M
+moonstone/MS
+moonstruck
+moonwalk/DGS
+moony/Y
+Moonzie/M
+moor/DSMGJ
+Moor/M
+moorage/M
+Moorby/M
+Moorcock/M
+moorcock/SM
+Moorcourt/M
+Moore/M
+Moorefield/M
+Moorestown/M
+Mooresville/M
+Moorfields
+moorfowl/M
+Moorgate/M
+Moorhead/M
+moorhen/SM
+Moorhouse/M
+mooring/M
+Moorish/M
+Moorland/M
+moorland/SM
+Moorlinch/M
+Moorman/M
+Moorpark/M
+Moors/M
+Moorside/M
+Moorthorpe/M
+Moortown/M
+moory
+moose/M
+Moose/M
+moot/GSDr
+mop/kdSGrMD~
+mope/SMZ
+moped/MS
+mopey
+mophead/SM
+mopishness/M Noun: uncountable
+mopoke/MS
+moppet/SM
+moppy
+mopy/PYT
+moquette/SM
+Mòr/M
+Mora/M
+Morabito/M
+Morad/M
+Moradian/M
+Moraes/M
+Moraga/M
+morainal Adjective
+Moraine/M
+moraine/SMW
+Morais/M
+moral/-Qs83SM
+morale/MS3
+moralisation/MS
+moralise/CGSDR
+moralism/M Noun: usually uncountable
+moralist/W1
+morality/SMI
+moralize/CnSDG
+morally/I
+Moran/M
+Morano/M
+Morant/M
+morass/MS
+moratoria/M
+moratorium/SM
+Moratuwa/M
+Moravia/M
+Moravian/SM
+Moray/M
+moray/SM
+Morayshire/M
+morbid/YP
+Morbidelli/M
+morbidezza/M Noun: uncountable
+morbidity/MS
+morbific
+morbilli/M
+morbillous
+Morbone/M
+Morborne/M
+morbus/M
+morceau/M
+morceaux/M
+Morchard/M
+Morcott/M
+mordacious
+mordacity/M Noun: uncountable
+mordancy/SM
+mordant/GDYS
+Mordecai/M
+Morden/M
+mordent/MS
+Mordiford/M
+Mordington/M
+Mordred/M
+More/M
+more/So~
+Moreau/M
+Morebath/M
+Morebattle/M
+Morecambe/M
+Moredun/M
+Moreen/M
+moreen/SM
+Morehead/M
+Morehouse/M
+Moreira/M
+morel/MS
+Moreland/M
+Moreleigh/M
+Morell/M
+morello/MS
+Moreno/M
+moreover
+morepork/MS
+Moresby/M
+Moresco/MS
+Morescoes
+Moresque
+Morestead/M
+Moretaine/M
+Moreteyne/M
+Moreton-in-Marsh/M
+Moreton/M
+Moretonhampstead/M
+Moretz/M
+Morfil/M
+Morgan/M
+morganatic/OY
+Morganstown/M
+Morganton/M
+Morgantown/M
+Morgellons/M Noun: uncountable
+Morgen/M
+morgen/MS
+Morgenstern/M
+morgue/MS
+Morham/M
+Moriarty/M
+moribund/Y
+moribundity/M Noun: usually uncountable
+morid/SM
+Morieux/M
+Morin/M
+Morio/M
+morion/MS
+Morisco/MS
+Moriscoes
+Morison/M
+Morisset-Cooranbong/M
+Morissette/M
+Moritz/M
+Morland/M
+Morledge/M
+Morlet/M
+Morley/M
+Mormon/SM
+Mormonism/SM
+morn/GMSJ
+mornay Adjective
+morningness/M Noun: uncountable
+Morningside/M
+Morningthorpe/M
+Mornington/M
+Moro/M
+Moroccan/SM
+Morocco/M
+moron/WM1S
+Moroni/M
+morose/YP
+Morpeth/M
+morph/SDJG
+morpheme/SM
+morphemic/SY
+Morpheus/M
+morphia/SM
+morphine/SM
+morphinism/M Noun: uncountable
+morphism/MS
+morphogenesis
+morphogenetic
+morphogeny/MW
+morpholexical
+morpholine/SM
+morphology/3WMwS1
+morphometrics
+morphometry/1WMSw
+morphophonemic/S
+MorphOS/M
+morphospecies
+morphosyntactic/OY
+morphosyntax/SM
+morphotactic/Y
+morphotactics/M Noun: uncountable
+morphotectonic
+morphotectonics/M Noun: uncountable
+morphotic
+Morrell/M
+morrhuate/SM
+Morrinsville/M
+Morris/M
+morris/SM
+Morrison/MS
+Morrissey/M
+Morriston/M
+Morristown/M
+Morrisville/M
+Morro/M
+Morrow/M
+morrow/MS
+Morse/DGMS
+morse/SM
+morsel/SM
+Morston/M
+Mort/M
+mortadella/SM
+mortal/IYS
+mortalise/SGD
+mortalism/M Noun: uncountable
+mortalist/SM
+mortality/IMS
+mortalize/SGD
+mortalness/M Noun: uncountable
+mortar/dMSp
+mortarboard/SM
+mortary
+Mortehoe/M
+mortem/SM
+Morten/M
+mortgage/DSMG
+mortgagee/SM7
+mortgagor/MS
+mortice/DGMS
+mortify/GhnSDr
+Mortimer/M
+mortis
+mortise/DGSM
+Mortlach/M
+Mortlake/M
+mortmain/M
+Morton-on-Swale/M
+Morton/M
+mortuary/SM
+morula/M
+morulae/M
+Morvah/M
+Morval/M
+Morvern/M
+Morville/M
+Morwenstow/M
+morwong/MS
+mos/GZD
+mosaic/SMY
+mosaicist/MS
+mosaicked
+mosaicking
+mosasaur/SM
+mosasaurian
+mosasaurus/MS
+Mosborough/M
+Mosby/M
+moschatel
+Moscianese
+moscovium
+Moscow/M
+Moseley/M
+Moselle/M
+Moser/M
+Moses/M
+mosey/DGS
+Mosgiel/M
+Moshe/M
+Moskowitz/M
+Moslem/M
+Mosley/M
+Mosotho/M
+mosque/MS
+Mosquensis
+mosquito/M
+mosquitoes
+moss-grown
+Moss/M
+moss/MS
+Mossad/M
+Mössbauer
+Mossberg/M
+Mossblown/M
+Mossburn/M
+Mosser/M
+Mosshart/M
+Mossley/M
+Mossneuk/M
+Mosspark/M
+Mosstodloch/M
+mosstrooper/MS
+mossy/T
+most/Y
+Mosteiro/M
+Mosteller/M
+Mosterton/M
+Moston/M
+Mostyn/M
+MOT/M
+Mota/M
+Motatau/M
+Motcombe/M
+mote/SMV
+Motegi/M
+motel/MS
+motes/C
+motet/SM
+moth-eaten
+moth/RSM
+mothball/DMGS
+mother-and-baby
+mother-bomb
+mother-child
+mother-in-babe
+mother-in-law/M
+mother-of-pearl/SM
+mother/dpYr
+motherboard/MS
+mothercraft/M Noun: uncountable
+motherfucker/SM!
+motherhood/MS
+mothering/SMY
+motherland/MS
+motherlike
+motherly/P
+mothers-in-law/M
+Motherwell/M
+mothery Adjective
+Mothman/M
+Mothmen/M
+Mothvey/M
+mothy
+motif/SM
+motile/SM
+motility/SM
+motion's/FC
+motion/rGpDMSO
+motionless/YP
+motions/CF
+Motiti/M
+motivate/SGD
+motivated/CU
+motivator/SM
+motive/DnSxMVpG
+motivity/MS
+motley
+motlier
+motliest
+moto/SM
+motocross/MS
+MotoGP/M
+motor/QSdqm38-MO
+motorable
+motorbike/DSMG
+motorboat/MS
+motorcade/MGSD
+motorcar/SM
+motorcycle/3GSM
+motorhome/SM
+motoring/M Noun: usually uncountable
+motorised/U
+motormouth/D
+Motorola/M
+motorphobia
+motorsailer/SM
+motorway/MS
+motory
+Motown/M
+mots
+Mott/M
+Mottisfont/M
+Mottistone/M
+mottle/SGDir
+motto/MSDp
+mottoes
+Mottram/M
+Motueka/M
+Moturoa/M
+mouchard/SM
+mouchette/SM
+moue/DMGS
+moujik/SM
+mould/SGRJZM2D
+mouldboard/MS
+moulder/d
+moulding/M
+Mouldsworth/M
+mouldy/T
+Moule/M
+Moulin/MS
+Moulmein/M
+Moulsford/M
+Moulsoe/M
+moult/RSGD
+Moulton/M
+Moultrie/M
+mound/MDGS
+Mound/MS
+mount/DM
+mount/EDCAGS
+Mount/M
+mountable/U
+Mountain/M
+mountain/SM
+mountaineer/JMGSD
+mountaineering/M
+mountainous/PY
+mountainside/MS
+mountaintop/MS
+Mountbatten/M
+mountebank/SM
+mountebankery/M
+mounter/SM
+Mountfield/M
+Mountfitchet/M
+Mounthaw/M
+Mounthill/M
+Mountie/M
+mounties
+mounting/MS
+Mountjoy/M
+Mountlake/M
+Mountmellick/M
+Mountnessing/M
+Mountnorris/M
+Mounton/M
+Mountsorrel/M
+Moura/M
+mourn/6jJDRGS
+Mourne/M
+mournful/TP
+mourning/M
+mousaka/SM
+mouse-like
+mouse/DRGMSZ
+mousemat/SM
+mouseover/SM
+mousepad/SM
+mousetrap/DMSG
+mouseweb/M
+mousey
+mousing/M
+mousmé/SM
+mousquetaire/SM
+moussaka/SM
+mousse/SM
+Moussorgsky/M
+moustache/MDS
+moustachio/DSM
+Mousterian
+Mouswald/M
+mousy/PT
+Moutere/M
+mouth-to-mouth
+mouth/rp7M6ZDGS2
+mouthbrooder/SM
+mouthfeel/SM
+mouthful/SM
+mouthorgan/SM
+mouthpart/SM
+mouthpiece/SM
+mouthwash/MS
+mouthwatering
+mouthy/PT
+Moutinho/M
+Moutohora/M
+mouton/SM
+MOV/SM Initialism of metal-oxide varistor
+movability/I
+movable/SIPY
+move/ARSDG
+move/kp
+moveability/SM
+moveable/PSY
+movement/SM
+movie/SM
+mow/RSDG
+Mowbray/M
+Mowddwy/M
+Mower/M
+Mowgli/M
+mowing/M
+mown
+Mowsley/M
+Mox/M
+moxibustion/SM
+Moy/M
+Moyer/M
+Moyes/M
+Moygashel/M
+Moyle/MS
+Moyne/M
+Moyra/M
+Moyross/M
+Mozambican/SM
+Mozambique/M
+Mozarab/SMW
+Mozart/M
+Mozer/M
+Mozes/M
+Mozilla/M
+Mozillian/SM
+mozzarella/MS
+mp
+MP/SM
+MP3/S
+MPa
+MPEG/M
+mpg
+mph
+MPhil Master of Philosophy
+MPLA/M From Portuguese Movimento Popular de Libertação de Angola
+MPV
+Mr/MS
+MRI
+mRNA/SM
+ms
+Ms
+MS-DOS/M
+mSATA/M
+MSC Manpower Services Commission
+MSc Master of Science
+MSDN/M
+MSI/M
+MSM/M
+MSN
+MSP/SM
+MST
+Mt
+mtDNA
+MTS
+MTV/M Music Television
+mu
+mu-mesic
+Muammar/M
+Muasdale/M
+Mubarak/M
+mucate/SM
+much-needed
+Much/M
+much/PY
+Muchelney/M
+mucilage/SM
+mucilaginous/Y
+mucin/SM
+mucinous
+muck/DGMZSr
+Muckairn/M
+Muckhart/M
+muckiness/M Noun: uncountable
+Mucking/M
+Muckle/M
+muckle/MS
+Mucklestone/M
+muckrake/DRSMG
+Muckton/M
+muckworm/MS
+mucky/T
+mucocele/SM
+mucocoele/M
+mucocutaneous/Y
+mucoid/OZ
+mucopolysaccharide/SM
+mucosa/MO
+mucosae/M
+mucositis
+mucosity/SM
+mucous
+mucro/SM
+mucronate
+mucrones Plural of mucro
+mucus/MSW
+mud/SM2Zz
+mudbank/SM
+muddle/kRSGD2h
+muddledom/M
+muddlehead/MDi
+muddlement
+muddlesome Adjective
+muddy/DSTG~
+Mudejar/M
+Mudejares
+mudfish/SM
+mudflap/SM
+mudflat/SM
+mudflow/SM
+Mudford/M
+Mudgee/M
+mudguard/MS
+mudlark/SM
+mudslide/SM
+mudsling/RGJ
+mudslinging/M
+mudstone/SM
+Mueller/M
+Muenster/M
+muesli/MS
+muezzin/MS
+muff/SMGD~
+muffetee/MS
+muffin/MS
+muffineer/MS
+muffle/DGRS
+MUFON/M Mutual UFO Network
+mufti/SM
+mug/2JMRGZSD
+Mugabe/M
+mugful/MS
+Muggington/M
+muggle/SM
+Muggleswick/M
+Muggletonian/MS
+muggy/T
+Mughal/MS
+mugshot/SM
+mugwort/SM
+Muhammad/M
+Muhammadan/SM
+Muhammadanism/M
+Muhammed/M
+Muhlenberg/M
+Muir/M
+Muiravonside/M
+Muire/M
+Muirhead/M
+Muirhouse/M
+Muirkirk/M
+mujahedin/M
+mujahid/M
+mujahideen/M
+mujahidin/M
+Mukden/M
+Muker/M
+Mukherjee/M
+Mukilteo/M
+mukluk/SM
+mulatto/MS
+mulattoes
+Mulbarton/M
+mulberry/SM
+Mulcahy/M
+mulch/DGMS
+mulct/SDG
+Mulder/M
+Muldoon/M
+mule/MGDS
+muleskinner/SM
+muleteer/SM
+Mulford/M
+mulga/MS
+Mulgan/M
+Mulgrave/M
+Mulgrew/M
+Mulholland/M
+Mulhouse/M
+muliebrity/SM
+mulish/PY
+Mull/M
+mull/SDGM
+Mullaghbawn/M
+Mullaghboy/M
+Mullaghbrack/M
+Mullaghglass/M
+mullah/MS
+Mullally/M
+mullein/MS
+Mullen/M
+Muller/M
+Müller/M
+muller/MS
+Müllerian
+mullet/SM
+Mulligan/SM
+mulligatawny/SM
+Mullingar/M
+Mullins/M
+mullion/GMSD
+Mullion/M
+mullite/MS
+mullock/M
+mulloway/SM
+Mulroney/M
+Multan/M
+multangular
+multeity/M Noun: usually uncountable
+multi
+multi-access
+multi-agency
+multi-coupler
+multi-ethnic
+multi-modal
+multi-national
+multi-purpose
+multi-stage
+multi-storey
+multi-timbral
+multi-track
+multi-user
+multi-way
+multi-word
+multiagent/SM
+multiaxial
+multibacillary
+multibillion
+Multibus/M
+multibuy/SM
+multicast
+multicell/D
+multicellular
+multicellularity
+multicentre/WO
+multichannel/M
+multiciliate/D
+multicollinearity/M
+multicollision/O
+multicolour/SMD
+multicolumn
+multicomponent
+multicomputer/MS
+multicore
+Multics/M
+multicultural/3Y
+multiculturalism/SM
+multicycle/W
+multicystic
+multidentate
+multidenticulate
+multidialectal
+multidialectalism/M Noun: uncountable
+multidigitate
+multidimensional/Y
+multidimensionality
+multidirectional
+multidisciplinary
+multidisciplined
+multidrug
+multielectron
+multienzyme
+multiethnic
+multiexposure
+multifaceted
+multifactorial
+multifaith
+multifamily
+multifarious/PY
+multifid
+multifigure
+multifoil/SM
+multifold
+multiform
+multiformity/MS
+multifractal/Y
+multifunction/OoD
+multifunctionality/SM
+multigrain
+multigrid
+multigym
+multiheaded
+multihull/SM
+multijointed
+multilamellar
+multilanguage
+multilateral/Y3
+multilateralism/SM
+multilayer
+multilayered/P
+multilayering
+multilevel/D
+multiline
+multilineal
+multilineality/M Noun: uncountable
+multilinear
+multilingual/SMY
+multilingualism/M Noun: usually uncountable
+multilinguist/SM
+multiliteral
+multilobar Adjective
+multilobed Adjective
+multilocation/O
+multilocular
+multilocularity/M Noun: uncountable
+multiloculate
+multilocus
+multimachine Adjective
+multiman/D
+multimedia/O
+multimegabit
+multimegaton/M
+multimeric
+multimeter/MS
+multimillion
+multimillionaire/MS
+multimineral
+multimodal/Y
+multimodality
+multimode
+multimolecular
+multimorph
+multimovement
+multinational/SY
+multinationalism/M Noun: usually uncountable
+multinodal
+multinodular
+multinomial/M
+multinucleate/D
+multiovular
+multiovulate
+multipack/SM
+multipacket
+multipactor/SM
+multipanel
+multiparity/M Noun: uncountable
+multiparous
+multipart/Z
+multipartite
+multipath
+multiperforate/D
+multiperiod/W
+multipersonal
+multiphase/D
+multiphonic/S
+multiplanar
+multiplatform
+multiplatinum
+multiplay
+multiplayer
+multiple-choice
+multiple/SMY
+multiplet/SM
+multiplex/CGDRS
+multiplex/M
+multiplexor/SM
+multiplicand/MS
+multiplicate/SGDMn
+multiplicational
+multiplicative/SM
+multiplicity/MS
+multiply/RvSVD7nG
+multipoint/SM
+multipolar
+multipolarity/SM
+multipole
+multipotent
+multiprobe/SM
+multiprocess/G
+multiprocessor/SM
+multiprogram/JDG
+multiprogramming/M Noun: uncountable
+multiracial
+multirange
+multiscreen
+multiselect/SGD
+multiselection
+multisensory/O
+multisession
+multisite
+multiskilled
+multispecialist/SM
+multispecies
+multispectral
+multispeed
+multistage
+multistep
+multisyllabic
+multisystem
+multitalented
+multitask/SGDR
+multiterminal Adjective
+multithread/DG
+multitouch
+multitrack/SGDMr
+multituberculate/SM
+multitude/MS
+multitudinous/PY
+multivalent
+multivalued
+multivalve
+multivariable
+multivariate
+multiverse/SM
+multiversity/SM
+multivitamin/SM
+multivocal
+multiwindow/D
+multiwire
+multiword
+multiyear
+Multnomah/M
+multure/M
+Mulvenna/M
+Mulwith/M
+mum/RDZSMG
+Mumbai/M
+mumble/RSDGJ
+mumbo
+mumbo-jumbo
+Mumby/M
+mumchance/SM
+mumesic
+Mumford/M
+mummery/SM
+mummify/SDGn
+mummy/MS
+mumpish
+mumps/M
+Muncaster/M
+munch/DMRGS
+Munchausen/M
+Münchhausen/M
+munchie/SM
+Muncie/M
+Munda/M
+mundane/YP
+Mundelein/M
+Munden/M
+Mundesley/M
+Mundeville/M
+Mundford/M
+Mundham/M
+Mundi
+Mundilfari/M
+Mundon/M
+Mundy/M
+mung
+munge/RGSJD
+Mungo/M
+mungo/M
+Mungrisdale/M
+munguba/M
+Munhall/M
+Munich/M
+municipal/SY
+municipalism/SM
+municipalist/MS
+municipality/SM
+municipalize/DGS
+Munier/M
+munificence/MS
+munificent/Y
+muniment/SM
+munition/DSGr
+Munn/M
+munnion/MS
+Muñoz/M
+Munoz/M
+Munro/M
+Munroe/M
+munshi/MS
+Munsley/M
+Munslow/M
+Munson/M
+Munster/M
+Munsterman/M
+Munstermen/M
+muntjac/MS
+Muntz/M
+Müntzer/M
+muon/SMpW
+muonium/SM
+Muppet/SM
+muppet/SM
+Mura/M
+murage/M
+mural/3MS
+Murali/M
+Muratorian Adjective
+Murayfield/M
+Murchison/M
+Murcia/M
+Murcott/M
+murder/rdSM
+murderess/SM
+murderous/YP
+Murdo/M
+Murdoch/M
+Murdochville/M
+Murdock/M
+Mure/M
+murein/SM
+Murfreesboro/M
+Murial/M
+muriate/W
+muricacean/SM
+muricid/O
+Muriel/M
+Murielle/M
+Murillo/M
+murine
+Muriwai/M
+murk/TZzSM2
+murky/T
+Murmansk/M
+murmur/dMSr
+murmuring/SY
+murmurous/Y
+murophobia/M
+Murphy/M
+murphy/MS
+Murphys/M
+Murphysboro/M
+murrain/SM
+Murray/M
+Murrayfield/M
+Murrays/M
+murrelet/SM
+murrhine/SM
+Murrieta/M
+Murroes/M
+Murrow/M
+Murrumbidgee/M
+Murry/M
+Murrysville/M
+Mursley/M
+Murston/M
+Murton/M
+Murupara/M
+mus/dSw1k
+Musashi/M
+Musbury/M
+muscadine/SM
+muscari/M
+muscarinic
+Muscat/M
+muscat/SM
+muscatel/SM
+Muscatine/M
+muscle-bound
+Muscle/M
+muscle/MGSDp
+muscleman/M
+musclemen/M
+muscly/T
+Muscogee/M
+muscologist/MS
+muscology/M
+muscovado/M
+Muscovite/MS
+muscovite/SM
+Muscovy/M
+muscular/Y
+muscularis
+muscularity/SM
+musculation
+musculature/SM
+musculoskeletal
+musculus
+muse/Jp
+Muse/M
+museography/MSWw
+museology/M3w
+muser/SM
+musette/MS
+museum/MS
+Musgrave/M
+Musgrove/M
+mush/Z2SMDr
+mushroom/DGMS
+mushy/T
+music/MS
+musical/SMPY
+musicale/SM
+musicality/SM
+musician/MSY
+musicianship/MS
+musicographer/SM
+musicography/M Noun: uncountable
+musicology/M3wS
+musique/M Noun: usually uncountable
+musk/ZM2
+muskeg/MS
+Muskego/M
+Muskegon/M
+muskellunge/SM
+musket-ball
+musket/SMy
+musketeer/SM
+musketoon/MS
+musketry/SM
+Muskham/M
+Muskingum/M
+Muskogee/M
+muskrat/SM
+musky/TP
+Muslim/SM
+muslin/MS
+musophobia/M Noun: uncountable
+musquash/SM
+muss/SGDZ
+mussel/SM
+Musselburgh/M
+Mussolini/M
+Mussorgsky/M
+Mussulman/MS
+Mussulmen/M
+must've
+must-have
+must/zZS
+Mustafa/M
+Mustang/M
+mustang/MS
+mustard/SMZ
+muster/Sd
+mustn't
+Muston/M
+musty/TP
+Muswell/M
+Muswellbrook/M
+mutability/IMS
+mutable/FI4
+mutableness/M
+mutably/I
+mutagen/SMW
+mutagenesis
+mutagenicity/SM
+mutandis
+mutant/MS
+mutarotation/MS
+mutate/FDSG
+mutation/FM4
+mutational/Y
+mutatis
+mutator/FS
+mutch/MS
+mute/Fn4NDSG
+mute/Y
+muted/Y
+muteness/S
+muter/F
+mutest
+Mutford/M
+Muthesius/M
+Muthill/M
+Muthu/M
+mutilate/GnSD
+mutilator/MS
+mutineer/GMS
+mutinous/Y
+Mutiny
+mutiny/DSGM
+mutism/SM
+Mutsuhito/M
+mutt/SM
+mutter/krJSd
+mutton/MS
+muttonchop/SM
+muttony
+mutual/YS
+mutualism/SM
+mutualist/SW1
+mutuality/SM
+mutule/MS
+muumuu/SM
+mux/SGDM
+Muxloe/M
+Muxton/M
+Muzaffarabad/M
+Muzak/M
+muzak/MO
+muzakman
+muzhik/SM
+Muzorewa/M
+muzz/D
+muzzle-loaded
+muzzle-loader/SM
+muzzle-loading
+muzzle/DGUS
+muzzle/SMr
+muzzy/TYP
+MW
+mW
+my
+myalgia/W
+myalism/M Noun: uncountable
+myall/MS
+Myanmar/M
+myasthenia/W
+mycelia/OM
+mycelium/M
+Mycenae/M
+Mycenaean/SM
+mycobacteria/OM
+mycobacterium/M
+mycologic/OY
+mycology/3SM
+mycoplasma/SMO
+mycoplasmata/M Plural of mycoplasma
+mycoplasmic
+mycoplasmologist/SM
+mycoplasmology/M Noun: uncountable
+mycoplasmosis
+mycoprotein/SM
+mycorrhiza/O
+mycorrhizae/M Plural of mycorrhiza
+mycose/M Noun: uncountable
+mycoses
+mycosis
+mycosterol
+mycota
+mycotoxic
+mycotoxicity/SM
+mycotoxicology/M Noun: uncountable
+mycotoxicosis
+mycotoxin/SM
+mycotrophy/MS
+Myddfai/M
+Myddle/M
+mydriases
+mydriasis/M
+Mydrim/M
+myelencephalic
+myelencephalon/M
+myelin/SM
+myelinated
+myelination/SM
+myelitides
+myelitis/M
+myeloblast/SM
+myelocyte/SM
+myelogenous
+myeloid/SM
+myeloma/SM
+myelomata/M Plural of myeloma
+myelomonocytic Adjective
+myelosuppression/M Noun: uncountable
+Myers/M
+Myerscough/M
+Myerson/M
+Myfyr/M
+Myland/M
+Mylar/M
+Mylchreest/M
+Myles/M
+myliobatid/SM
+mylodon/MS
+mylodont/SM
+mylohyoid/SM
+mylohyoidei/M Plural of mylohyoideus
+mylohyoideus/M
+mylonite/SM
+Mylor/M
+Mymms/M
+myna/SM
+Mynachlog-ddu/M
+Mynachlogddu/M
+mynah/MS
+Myndtown/M
+mynheer/MS
+Mynydd-bach/M
+Mynydd/M
+Mynyddislwyn/M
+myocardial
+myocarditis
+myocardium/M
+myoclonus/W
+myoelectricity/M Noun: uncountable
+myofascial
+myofibroblast/SM
+myogenic
+myoglobin/SM
+myologist/MS
+myology/M Noun: uncountable
+myomere/SM
+myometria/MO
+myometrium/M
+myomorph/SMW
+Myomorpha Taxonomic suborder
+myonecrosis
+myonecrotic
+myoneural
+myopathic
+myopathy/SM
+myope/MS
+myopia/SM
+myopic/YS
+myosin/SM
+myosis
+myosotis/M
+myotic
+myotis
+myotonic
+Myr megayear
+Myra/M
+myriad/SM
+Myriam/M
+myriapod/SM
+Myriapoda Taxonomic subphylum
+myristic
+myristilated
+myristoleic
+myristylated
+myrmecochore/MS
+myrmecochoric/Y
+myrmecochorous
+myrmecochory/M Noun: uncountable
+myrmecology/3w
+myrmecophile/MS
+myrmecophilic/Y
+myrmecophilous
+myrmecophily/M Noun: uncountable
+myrmecophyte/MS
+myrmidon/SM
+Myrna/M
+myrobalan/SM
+Myron/M
+myrrh/MSZ
+myrtaceous
+Myrtle/M
+myrtle/SM
+myself
+Mysia/M
+Mysian/SM
+mysid/SM
+Mysore/M
+Myspace/M
+MySpell/M
+MySQL/M
+mystagogic/O
+mystagogue/MS
+mysterious/PY
+mystery/SM
+mystic/YMSO
+mysticete/SM
+Mysticeti/M
+mysticism/SM
+mysticist/SM
+mystifier/SM
+mystify/CSnDG
+mystifying/Y
+mystique/SM
+myth/MW1wS
+mythi/M
+mythicise/DGS
+mythicism/SM
+mythicist/MS
+mythicize/DGS
+mythogenesis/M
+mythographer/SM
+mythography/SM
+mythoi
+mythologer/MS
+mythologise/CSGDn
+mythologize/SGDn
+mythology/w13MQSW
+mythomania/M
+mythos
+mythus/M
+Mytilene/M
+Myton-on-Swale/M
+Myton/M
+myxedematous
+myxoedema
+myxoedematous
+myxofibroma/SM
+myxoflagellate/SM
+myxoid Adjective
+myxoma/SM
+myxomata/M
+myxomatosis
+myxomatous
+N'Djamena/M
+N'Djemena/M
+n-ary
+n-gram/SM
+n-tuple/SM
+n-type/SM
+n.d.
+n/nxVvu
+na
+Na/M
+NAACP
+Naamah/M
+Naas/M
+nab/GSDR
+Naber/M
+Nabet/M
+Nabisco/M
+Nablus/M
+nabob/MS
+Nabokov/M
+Naburn/M
+nacarat/SM
+nacelle/MS
+nacho/SM
+Nackington/M
+NaCl/M
+Nacogdoches/M
+nacre/MS
+nacreous
+nacrous
+Nacton/M
+Nada/M
+Nadab/M
+Nadal/M
+Nadella/M
+Nadelmann/M
+Nadia/M
+Nadine/M
+nadir/MS
+nadolol/M Noun: uncountable
+Nadramia/M
+Nadu/M
+Naenae/M
+naevi/M
+naevus/M
+nafamostat/M Noun: uncountable
+naff/SGDYT
+Nafferton/M
+naffness/M Noun: uncountable
+Nafford/M
+Nafion/M
+nag/RDSGM
+Naga/MS
+Nagae/M
+Nagaland/M
+Nagano/M
+Nagar/M
+Nagasaki/M
+nagging/Y
+Naglowska/M
+Nagoya/M
+Nagpur/M
+Nagpuri/M
+Naguib/M
+Nagy/M
+nagyagite/SM
+nah
+Naha/M
+Nahabedian/M
+Nahmanides/M
+Nahuatl/MS
+Nahuatlan/M
+Nahum/M
+naiad/SM
+naif/SM
+nail-biting
+nail/rSGMDp
+nailery/SM
+Nailsea/M
+Nailstone/M
+Nailsworth/M
+Nainital/M
+nainsook/MS
+naira/M
+Nairn/M
+Nairnshire/M
+Nairobi/M
+Naismith/M
+naissance
+naissant
+naïve/YP
+naive/YTP
+naïveté/SM
+naiveté/SM
+naivete/ZM
+naïvety/M Noun: uncountable
+naivety/SM
+Nakagawa/M
+Nakagusuku/M
+Nakamoto/M
+Nakamura/M
+Nakano/M
+Nakayama/M
+naked/PY
+naker/MS
+Naku'alofa/M
+Nalgo/M
+naloxone/SM
+naltrexone/M Noun: uncountable
+Namadeva/M
+Namaka/M
+namaskar/SM
+namaste
+namaz
+namby
+namby-pamby
+NAmE Abbreviation of North American English
+name-calling
+name-drop/DGSR
+name/aDASG
+name/DMYr
+nameable
+nameless/YP
+Namenda/M
+Nameoki/M
+nameplate/SM
+namesake/SM
+namespace/SGDM
+Namib/M
+Namibia/M
+Namibian/SM
+Namier/M
+Nampa/M
+Namur/M
+Nan
+nan/MZ
+NaN/SM
+Nana/M
+Nanaimo/M
+Nanak/M
+Nance/M
+nance/SM
+Nanchang/M
+Nancy/M
+nancy/SM
+NAND/SM
+Nandi/M
+nandina/SM
+Nanette/M
+Nanga
+Nangle/M
+nanite/SM
+Nanjing/M
+nankeen/MS
+Nanking/M
+Nanna/M
+Nannerch/M
+Nannette/M
+Nanning/M
+nannite/SM
+nanny/MDSG
+nannygai/SM
+nano
+nanobacteria/M
+nanobacterium/M
+nanobiotechnology/SM
+nanobot/SM
+nanocomposite/SM
+nanocomputer/SM
+nanocrystal/SM
+nanodiamond/SM
+nanoengineer/SMG
+nanofibre/SM
+nanoflare/SM
+nanogram/SM
+nanomaterial/SM
+nanomedicine/SM
+nanometre/SM
+nanomolar
+nanoparticle/SM
+nanopascal
+nanorobot/SM
+nanorod/SM
+nanoscale/SM
+nanoscience/SM
+nanoscopic
+nanosecond/SM
+nanostructure/SDM
+nanotech/M Noun: uncountable
+nanotechnology/SM3w
+nanotesla/SM
+nanotube/SM
+nanowire/SM
+Nansen/M
+Nanshan/M
+Nant-ddu/M
+Nant/M
+Nantahala/M
+Nantais/M
+Nantcwnlle/M
+Nantes/M
+Nantgarw/M
+Nantglyn/M
+Nanticoke/M
+Nantmel/M
+Nantucket/M
+Nantwich/M
+Nantyglo/M
+Naoki/M
+Naoko/M
+Naomi/M
+nap/pRSZGMD
+Napa/M
+napalm/SMDG
+nape/MS
+Naperville/M
+naphtha/SM
+naphthalene/SM
+naphthalic
+naphthene/SMW
+Napier/M
+Napierian
+napkin/MS
+Naples/M
+napoleon/SM
+Napoleon/WSM13
+Napoleonism/M Noun: uncountable
+nappa/M
+Nappaha/M
+nappiness/M Noun: uncountable
+nappy/MS
+naproxen/M Noun: uncountable
+Napster/M
+Napton/M
+Nara/M
+Narasimha/M
+Narasimhi/M
+Narayan/M
+Narayanan/M
+Narberth/M
+Narbonne/M
+Narborough/M
+narceine/SM
+narcissi/M
+narcissism/MS
+narcissist/SWM
+Narcissus Taxonomic genus
+narcissus/MS
+narcolepsy/SM
+narcoleptic/SM
+narcoses
+narcosis/M
+narcotic/MSY
+narcotise/DSG
+narcotism/SM
+narcotize/DGS
+nard/SM
+nardoo/SM
+Naresh/M
+Narford/M
+narghile/SM
+naringin/M Noun: uncountable
+nark/SMZD
+narky/T
+Narnaviridae Taxonomic family
+Narnia/M
+Narotam/M
+Narragansett/M
+Narramore/M
+narrate/GDnSVv
+narrational
+narrative/SM
+narrativity/M Noun: uncountable
+narratology/3wSM
+narrator/MS
+narrow-minded/P
+narrow/YTSPGD~
+narrowband Adjective
+narrowcast/DGR
+narthex/MS
+narwhal/SM
+nary
+NAS
+NASA/M
+nasal/-YqQ8S
+nasality/SM
+Nasar/M
+Nascan
+NASCAR/M
+nascence's/A
+nascences/A
+nascency/M
+nascent/A
+Nascimento/M
+Nasdaq/M
+NASDAQ/M
+naseberry/SM
+Naseby/M
+Nash/M
+Nashe/M
+Nashua/M
+Nashville-Davidson/M
+Nashville/M
+nasion/SM
+Nasir/M
+nasogastric
+nasolabial
+Nasonex/M
+nasopharyngeal
+nasopharynx
+Nasrin/M
+Nassau/M
+Nasser/M
+Nassim/M
+Nassington/M
+nasturtium/MS
+nasty/STYPW
+NAT
+Nat/M
+NATA
+natal/K
+Natalia/M
+Natalie/M
+natalist/SM
+natality/SM
+natant/Y
+Natasha/M
+natation/M Noun: uncountable
+natatory/O
+natch
+Natchez/M
+Natchitoches/M
+Nateby/M
+Nately/M
+Nathalie/M
+Nathan/M
+Nathaniel/M
+Nathanson/M
+Nathel/M
+natheless
+nathless
+Natick/M
+nation/M
+national/8-S9Qsq3
+National/M
+nationalise/CnGSD
+nationaliser/CMS
+nationalism/SM
+nationalist/1W
+nationality/MS
+nationalize/CSGnDR
+nationally/4
+nationhood/SM
+nationwide
+native/PSM
+nativism/SM
+nativist/SMW
+Nativity
+nativity/SM
+natl
+Natland/M
+Nato/M
+NATO/M Acronym of North Atlantic Treaty Organization
+Natrona/M
+natter/dS
+Natterer/M
+natterjack/SM
+natty/PYT
+naturae/M
+natural/qS38Q-
+naturalibus
+naturalism/SM
+naturalist/W1
+naturally/U
+naturalness/SM
+nature/ohMDS
+naturel
+naturism/SM
+naturist/SM
+naturopath/SMW1Z
+NatWest/M
+Naugatuck/M
+naught/zM
+naughty/PTS
+Naunton/M
+nauplii/M
+nauplius/M
+Nauru/M
+nausea/MS
+nauseam
+nauseant/SM
+nauseate/GDSk
+nauseous/PY
+nautch
+nautical/Y
+nautili/M
+nautilus/MS
+Navaho/MS
+navaid/SM
+Navajo/SM
+naval/Y
+Navar/M
+navarin/SM
+Navarino/M
+Navarre/M
+Navarrese/M
+Navarro/M
+nave/ZMS
+navel-gazing
+navel/SM
+navelwort/SM
+Navenby/M
+Navestock/M
+navicular
+Navier/M
+navigability/SM
+navigable/P
+navigate/BxDGSn
+navigator/MS
+navvy/MS
+navy/MS
+nawab/SM
+Nawton/M
+Naxalite/SM
+nay/SM
+nayika/SM
+Nayland-with-Wissington/M
+Nayland/M
+Naylor/M
+naysaid
+naysay/GSr
+Nazarene/MS
+Nazarenism/M
+Nazareth/M
+Nazarite/MS
+Nazca/M
+Nazcan/SM
+Nazeing/M
+Nazi/SM
+Nazianzus/M
+Nazidom/M Noun: uncountable
+Nazification/SM
+Nazify/SGD
+Naziism/M Noun: uncountable
+Naziphil
+Naziphile
+nazir/SM
+Nazirite/MS
+Nazism/M Noun: uncountable
+Nb
+NBA/M
+NBC
+NBS
+NCAA
+NCC
+NCO
+Nd
+Ndamukong/M
+NDE/SM
+Ndebele/SM
+NDEr/SM
+Ndjamena/M
+né
+ne'er
+ne'er-do-wells
+Ne/M
+Neal/M
+Neale/M
+Neanderthal/SM
+neap/DGSM
+Neapolitan/SM
+neaptide/SM
+near-sighted/PY
+Near/M
+near/SPGTDY~
+nearby
+Nearctic
+nearshore/SGD
+nearside/M
+Neasden/M
+Neasham/M
+neat/TPY
+neaten/dS
+neath
+Neath/M
+neatherd/S
+Neatishead/M
+Nebel/M
+nebivolol/M Noun: uncountable
+Nebraska/M
+Nebraskan/MS
+Nebreda/M
+Nebuchadnezzar/M
+nebula/MS
+nebulae/M
+nebular Adjective
+nebulosity/SM
+nebulous/PY
+Necchi/M
+necessarian/MS
+necessarianism/M Noun: uncountable
+necessary/SM
+necessary/UY
+necessitarian/MS
+necessitarianism/M Noun: usually uncountable
+necessitate/DnSG
+necessitous
+necessitousness/M Noun: uncountable
+necessity/MS
+Neches/M
+Neck/M
+neck/MJSGDpr
+Neckar/M
+neckband/SM
+neckcloth/SM
+neckerchief/MS
+necking/M
+necklace/DSMG
+necklet/SM
+neckline/SM
+neckwear/SM
+necrobiosis/M
+necrobiotic Adjective
+necrogenic Adjective
+necrolatry/M Noun: uncountable
+necrology/3SMw
+necromancer/MS
+necromancy/MS
+necromantic/Y
+necrophagous Adjective
+necrophagy/M Noun: uncountable
+necrophile/SM3
+necrophilia/SM
+necrophiliac/SM
+necrophilism/M Noun: uncountable
+necrophilous
+necrophily/WM
+necrophobe/SMW
+necrophobia/M Noun: uncountable
+necropoleis
+necropolis/MS
+necropolitan
+necropost/SGD
+necropsy/MS
+necroscopic/O
+necroscopy/MS
+necrose/DSW
+necrosis/M
+necrotise/SGDN
+necrotize/SGDN
+nectar/MS
+nectarean
+nectareous
+Nectarian
+nectariferous
+nectarine/SM
+Nectaris Mare Nectaris
+nectarivorous
+nectarous
+nectary/SM
+Necton/M
+Ned/M
+ned/SM
+Neddy/M
+neddy/SM
+Nederland/M
+Nedging-with-Naughton/M
+Nedging/M
+nee
+née
+need/ZDSpj26Gr
+needfire/MS
+needfulness/SM
+Needham/M
+needle-stick
+needle/D5GRSMp
+needlecord/SM
+needlecraft/SM
+needledick/SM
+needlefish/SM
+needleful/S
+needlelace/SM
+needleloom/M
+needlenose Adjective
+needlepoint/SGDM
+needless/YP
+needlework/MSR
+needn't
+needy/PTY
+Neeley/M
+Neely/M
+Neen/M
+Neenah/M
+Neenton/M
+neep/SM
+Neeson/M
+nefarious/PY
+Nefyn/M
+neg/unvV
+negate/GSDR
+negationist/SM
+negative/GDPS3
+negativism/MS
+negativistic
+negativity/SM
+negator/MSZ
+Negaunee/M
+negawatt/SM
+negentropy/MW
+Negev/M
+neglect/6jSDGr
+neglectful/P
+Neglia/M
+négligé/SM
+negligee/MS
+negligée/SM
+negligence/MS
+negligent/Y
+negligibility/SM
+negligible/Y
+négociant/SM
+negotiability/MS
+negotiable/A
+negotiant/SM
+negotiate/DAnSG
+negotiation/MA
+negotiator/MS
+Negress/MS
+Negrillo/MS
+Negrito/MS
+Negritude/M
+negritude/SM
+Negro/M
+Negroes
+Negroid/SM
+Negrophobe/MS
+Negrophobia/M Noun: uncountable
+Negroponte/M
+Negus/MS
+negus/MS
+Nehemiah/M
+Nehru/M
+Nei/M
+neigh/SGDM
+Neighbors/M
+neighbour/DYSGMp
+neighbourhood/MS
+neighbourlike
+neighbourly/P
+neighbourship/SM
+Neihu/M
+Neil/M
+Neill/M
+Neilston/M
+Neimongosaurus Taxonomic genus
+Neisser/M
+Neith/M
+neither
+nek/MS
+nekrophilus
+nekrophily/M
+nekton/SMW
+Nelder/M
+Nell/M
+Nelle/M
+Nellie/M
+Nelly/M
+nelly/MS
+Nelsen/M
+Nelson/M
+Nélson/M
+nelson/SM
+Nelu/M
+nelumbo/MS
+Nemaha/M
+Nemasket/M
+nematic
+nematocyst/SM
+Nematoda Taxonomic phylum
+nematode/SM
+nematoid Adjective
+nematology/3wM
+nematomorph/SM
+Nematomorpha Taxonomic phylum
+Nembutal/M
+Nemean
+Nemechek/M
+nemertine/SM
+nemeses
+nemesia/SM
+nemesis
+Nemesis/M
+Németh/M
+nemine
+Nempnett/M
+Nena/M
+nene/MS
+Nennius/M
+Nenthorn/M
+nenuphar/SM
+neo-Aristotelianism/M
+neo-Catholic
+neo-Catholicism/M
+neo-Confucian
+neo-Confucianism/M
+neo-Darwinian
+neo-Darwinism/M
+neo-Darwinist/SM
+neo-fascist/SM
+neo-Georgian
+neo-Gothic
+neo-impressionism
+neo-impressionist/SM
+neo-Keynesian
+neo-Latin
+neo-liberal/SM
+neo-liberalism
+neo-Luddism
+neo-Luddistic
+neo-Luddite/SMw
+neo-Marxism/M
+neo-Marxist/SM
+neo-Nazi/SM
+neo-Nazism/M
+neo-scholastic
+neo-scholasticism
+neoadjuvant
+Neoarchean
+neocatastrophism/M Noun: uncountable
+neoclassic/MO3
+neoclassicism/MS
+neocolonial/3
+neocolonialism/SM
+neoconservatism/SM
+neoconservative/SM
+neocortex/M
+neocortical
+neocortices
+neodymium/SM
+neodymocene
+Neogene
+neoliberalism/SM
+neolith/MSW
+Neolithic/M
+neologian/SM
+neologise/SGD
+neologism/MS
+neologist/SM
+neologize/SGD
+neology/SMw
+neomycin/SM
+neon/MS
+neonatal
+neonate/oSM
+neonatology/3M
+neonicotinoid/SM
+neonomian/SM
+neonomianism
+neontology/w3M
+NeoOffice/M
+neopagan/SM
+neopaganism/M Noun: uncountable
+neopentane/M Noun: uncountable
+neophobia/WSM
+neophron/MS
+neophyte/SM
+neoplasia/SM
+neoplasm/SM
+neoplastic
+neoplasticism/M Noun: uncountable
+Neoplatonic
+Neoplatonism/M
+Neoplatonist/SM
+neopositivism/M Noun: uncountable
+neopositivist/SM
+neoprene/SM
+Neoproterozoic
+Neoptolemus/M
+neorealism/M Noun: usually uncountable
+neorealist/SM
+Neosho/M
+neosyllabary/SM
+Neot/MS
+neoteny/SM
+neoteric/SM
+Neotropical
+neotropics
+neovagina/SMO
+neovascular
+Neozoic
+Nepal/M
+Nepalese
+Nepali/SM
+nepenthe/SM
+nephelometer/MS
+nephelometry/MW
+nephew/SM
+Nephilim/M
+nephology/M Noun: uncountable
+nephrectomy/MS
+nephridia/OM
+nephridium/M
+nephrite/MWS
+nephritides
+nephritis/M
+nephroblastoma/SM
+nephroblastomata/M
+nephrocolic Adjective
+nephrogastric
+nephrogenic
+nephroid/SM
+nephrolithiasis
+nephrology/w3M
+nephromixium/M
+nephron/SM
+nephropathic
+nephropathy/SM
+nephropexy/M Noun: uncountable
+nephrosis/M
+nephrotic/SM
+nephrotomy/MS
+nephrotoxic
+nephrotoxicity/SM
+nephrotoxin/SM
+nepotism/SM
+nepotist/SM
+Neptune/M3
+Neptunian/SM
+neptunium/MS
+neptunocene
+Nercwys/M
+nerd/SZM
+nerdish/P
+nerdy/TP
+Nereid/M
+nereid/SM
+Nergal/M
+nerine/SM
+neritic
+neritine/M
+nerium
+nerk/SM
+nerka
+Nero/M
+neroli/M
+Neronian
+nervation/SM
+nerve-racking
+nerve-wracking
+nerve/M
+nerve/UGSD
+nerveless/YP
+Nervet/M
+nervine/MS
+nerving/M
+nervon/M Noun: uncountable
+nervonic
+nervosa
+nervous/PY
+nervure/SM
+nervy/PTY
+Nery/M
+nescience/M
+nescient/SM
+Nesfield/M
+Neshoba/M
+ness
+Ness/M
+nest/DS7MGR
+nestle/DSGr
+nestlike
+nestling/MS
+Neston/M
+Nestor/M
+Nestorian/SM
+Nestorianism/SM
+Nestorius/M
+Nesvorný/M
+net/SMDG
+netball/SM
+netbook/MS
+NetBSD/M
+Netflix/M
+netful/MS
+nether
+Nether/M
+Netheravon/M
+Netherburn/M
+Netherbury/M
+Netherby/M
+Nethercote/M
+Netherdale/M
+Netherfield/M
+Nethergate/M
+Netherhall/M
+Netherhampton/M
+Netherlander/SM
+Netherlandish
+Netherlands/M
+Netherlee/M
+nethermost
+Netherseal/M
+Netherthong/M
+Netherton/M
+Netherwent/M
+Netherwitton/M
+netherworld/SM
+Nethy/M
+netiquette/SM
+netizen/SM
+Netley/M
+netminder/SM
+netminding
+Netscape/M
+netsman/M
+netsplit/MSGD
+netsuke/SM
+nett/SJ7r
+Netteswell/M
+Nettie/M
+netting/M
+nettle/MSGD
+Nettlebed/M
+Nettlecombe/M
+Nettleden/M
+Nettleham/M
+Nettleshead/M
+Nettlestead/M
+Nettlestone/M
+Nettleton/M
+Netto/M
+network/GJDMS
+Neuburg/M
+Neuchâtel
+Neufchâtel/M
+Neulasta/M
+Neumann/M
+Neupogen/M
+neural/Y
+neuralgia/SMW
+neurasthenia/MS
+neurasthenic/SM
+neuraxial
+neuraxis
+neurectomy/SM
+neuritic/SM
+neuritides
+neuritis/M
+neuroactive
+neuroanatomic/OY
+neuroanatomy/3
+neuroaxial
+neuroaxis
+neurobehavioural
+neurobics
+neurobiochemistry/M Noun: uncountable
+neurobiology/Mw3
+neuroblastoma/M
+neuroborreliosis
+neurochemical
+neurochemist/SM
+neurochemistry/M Noun: usually uncountable
+neurocomputer/SM
+neurocrystalline
+neurodegeneration/SM
+neurodegenerative
+neurodevelopmental
+neuroeconomics
+neuroendocrine
+neuroendocrinology/M Noun: uncountable
+neuroethology/SM
+neurofeedback/M Noun: uncountable
+neurofibril/SM
+neurofibrillary
+neurofilament/SM
+neurogenesis/M Noun: uncountable
+neurogenetic/S
+neurogeneticist/SM
+neurogenic
+neuroglia
+neurohormone/SMO
+neurohypophyses
+neurohypophysis/M
+neuroimaging
+neurointensive
+neuroleptic/SM
+neurolinguistic/S
+neurology/W13MSw
+neuroma/SM
+Neuromancer/M
+neuromarketing
+neuromata/M
+neuromatous
+neuromechanical
+neuromechanism/SM
+neuromimesis/M Noun: uncountable
+neuromimetic
+neuromodulation/SM
+neuromodulator/SMZ
+neuromotor
+neuromuscular
+neuron/SMOW
+neurone/SM
+neuroophthalmology
+neuropath/WSM
+neuropathist/MS
+neuropathology/SMw3
+neuropathy/SM
+neuropeptide/SM
+neuropharmacology/SM3Ww
+neurophthalmology
+neurophysiology/Mw3
+neuropil/SM
+neuropilar
+neuropile/SM
+neuroplasm/SMW
+neuroplasticity/SM
+neuropodia/M
+neuropodium/M
+neuroprotection/M Noun: uncountable
+neuroprotective/SM
+neuropsychiatry/3WM
+neuropsychic
+neuropsychology/3wM
+neuropsychopharmacology/M Noun: uncountable
+Neuroptera
+neuropteran/SM
+neuropteroid/SM
+neuropterous
+neuroradiology/w13M
+neuroregulator/SMZ
+neuroretinitis/M
+neuroscience/SW
+neuroscientist/SM
+neurosecretion/SM
+neurosecretory
+neurosensory
+neuroses
+neurosis/M
+neurosurgeon/SM
+neurosurgery/MS
+neurosurgical/Y
+neurosynaptic
+neurotechnology/SM
+neurotensin/SM
+neurotherapy/SM
+neurotic/SMY
+neuroticism/SM
+neurotomy/M
+neurotoxic
+neurotoxicity/SM
+neurotoxicology/M Noun: uncountable
+neurotoxin/SM
+neurotransmission/SM
+neurotransmitter/SM
+neurotrophic
+neurotropic
+neurotypical/SM
+neurovascular
+neurovirulence/M Noun: uncountable
+neurulation/SM
+Neusner/M
+neuter/dS
+neuterer/S
+neutral/SMYP3
+neutralise/MSGDnR
+neutralism/MS
+neutrality/SM
+neutralize/SGDnR
+neutrinic
+neutrino/MS
+neutron/MS
+neutronic/S
+neutronium/M Noun: uncountable
+neutropenia/SMW
+neutrophil/SMW
+Neuville/M
+Neuwirth/M
+Neva/M
+Nevada/M
+Nevadan/SM
+Nevado/M
+Nevay/M
+Nevendon/M
+never
+never-changing
+never-dying
+never-ending
+never-failing
+nevermore
+Nevern/M
+nevertheless
+Neviim/M
+Nevill/M
+Neville/M
+Nevinson/M
+Nevis/M
+Nevsky/M
+new-found
+new-laid
+new-look
+New-moat/M
+new-style
+new/AS
+New/M
+new/Y~
+Newall/M
+Newark/M
+Newarthill/M
+Newaygo/M
+Newbald/M
+Newball/M
+Newbattle/M
+Newberg/M
+Newberry/M
+newbie/SM
+Newbiggin-by-the-Sea/M
+Newbiggin/M
+Newbigging/M
+Newbold/M
+newborn/SM
+Newborough/M
+Newbottle/M
+Newbould/M
+Newbourne/M
+Newbridge/M
+Newbuildings/M
+Newburgh/M
+Newburn/M
+Newbury/M
+Newburyport/M
+Newby/M
+Newcastle-Maitland/M
+Newcastle-under-Lyme/M
+Newcastle/M
+Newcastleton/M
+Newchapel/M
+Newchurch/M
+newcomer/MS
+Newdigate/M
+newel/SM
+Newell/M
+Newenden/M
+Newent/M
+newer
+newest
+newfangled
+newfangledness/M
+newfound
+Newfoundland/SRM
+Newgate/M
+Newgrange/M
+Newhall/M
+Newham/M
+Newhampton/M
+Newhaven/M
+Newhills/M
+Newholm-cum-Dunsley/M
+Newick/M
+Newington/M
+Newitz/M
+Newland/MS
+newline/SM
+newly-wed/MS
+Newlyn/M
+Newmachar/M
+Newmains/M
+Newman/M
+Newmarket/M
+Newmill/MS
+Newmilns/M
+Newnan/M
+newness/SM
+Newnham/M
+Newnton/M
+Newport-On-Tay/M
+Newport/M
+Newquay/M
+Newry/M
+news-gathering
+news-sheet
+news-stand/MS
+News/M
+news/Zm5p
+newsagent/SM
+newsboy/SM
+newscast/MSRGJ
+newsdealer's
+newsfeed/SM
+newsflash/SM
+newsgirl/SM
+newsgroup/MS
+Newsham/M
+Newsholme/M
+newshound/SM
+newsletter/SM
+newsmonger/SM
+NewSpace
+newspaper/mdS5M
+newspeak/M Noun: usually uncountable
+newsprint/SM
+newsreader/MS
+newsreel/SM
+newsroom/SM
+Newstead/M
+Newsweek/M
+Newsweekly/M
+newswire/SM
+newsworthy/TP
+newsy/TS
+newt/SM
+Newthorpe/M
+Newtimber/M
+Newton-le-Willows/M
+Newton-on-Ouse/M
+Newton-with-Clifton/M
+Newton/M
+newton/MS
+Newtonhill/M
+Newtonian/SM
+Newtonmore/M
+Newtown/M
+Newtownabbey/M
+Newtownards/M
+Newtownbutler/M
+Newtowncloghoge/M
+Newtownhamilton/M
+Newtownstewart/M
+Newtyle/M
+Newydd/M
+Nexium/M
+next-door
+next/M
+nexus/MS
+Neyland/M
+Neyman/M
+Neymar/M
+Nez/M
+NFC/SM
+NFL/M
+NFS/M
+ng
+Ngaere/M
+Ngaio/M
+ngaio/MS
+Ngamatapouri/M
+Ngapara/M
+Ngaruawahia/M
+Ngataki/M
+Ngatea/M
+Ngauranga/M
+NGC/M
+NGO/SM
+Ngongotaha/M
+Ngunguru/M
+Nguyen/M
+NHK/M
+NHL/SM
+NHS/M
+Ni/M
+niacin/MS
+Niagara/M
+Niall/M
+Niamey/M
+Niang/M
+nib/SGMD
+nibble/RGDS
+Nibelung/SM
+Nibelungen/M
+Nibelungenlied/M
+Nibiru/M
+Nibley/M
+niblick/MS
+Nic/M
+Nicaea/M
+NICAP/M
+Nicaragua/M
+Nicaraguan/SM
+Niccolo/M
+Niccolò/M
+Nice/M
+nice/YPT~
+Nicea/M
+Nicene/SM
+nicety/MS
+Niceville/M
+niche/GMSD
+Nichelle/M
+Nichinan/M
+Nichol/SM
+Nicholai/M
+Nicholas/M
+Nicholaston/M
+Nicholasville/M
+Nichole/M
+Nicholforest/M
+Nicholl/MS
+Nicholson/M
+nichrome
+nick/GDSM
+nickel/DMGSW
+Nickell/M
+nickelocene/SM
+Nickelodeon/M
+nickelous
+nicker/Sd
+Nicki/M
+Nickie/M
+Nicklas/M
+Nickleby/M
+nicknack's
+nickname/MGDSr
+Nicko/M
+NickServ/M
+Nicky/M
+Nico/M
+Nicobar/M
+Nicodemus/M
+Nicol/M
+Nicola/M
+Nicolas/M
+Nicolaus/M
+Nicolay/M
+Nicole/M
+Nicolet-Yamaska/M
+Nicolet/M
+Nicollet/M
+Nicollette/M
+Nicomachus/M
+Nicomedes/M
+Nicosia/M
+nicotian Adjective
+nicotinamide/SM
+nicotine/SMW
+nicotinism/M Noun: uncountable
+nicotinize/DGS
+nictate/DGSn
+nictitate/DGSn
+nidamental
+Nidd/M
+Niddry/M
+nidi/M Plural of nidus
+nidify/DGSn
+Nidovirales Taxonomic order
+nidus/MS
+niece/SM
+Niels/M
+Nielsen/M
+Nielson/M
+Niemeyer/M
+niente
+Niépce/M
+Nierstein/M
+Niersteiner/M
+Nietzsche/M
+Nietzschean/SM
+Nietzscheanism/M Noun: uncountable
+Nietzscheism
+Nieves/M
+nifedipine/M Noun: usually uncountable
+niff/DGS
+niffier
+niffiest
+niffy
+niftiness/M Noun: uncountable
+nifty/TSY
+Nigel/M
+nigella/SM
+Niger/M
+Nigeria/M
+Nigerian/SM
+Nigerianise/SGDN
+Nigerianize/SGDN
+nigericin/SM
+nigerite/SM
+Nigg/M
+niggard/YMS
+niggardly/P
+nigger/SM!
+niggle/RGkJDSZ
+nigh
+night-blindness
+night-life/M
+night-long
+night-owl
+night-soil
+night-time/SM
+night-watchman
+night/MpSR
+nightbird/SM
+nightcap/SM
+nightclothes
+nightclub/RMGSD
+nightdress/MS
+nightfall/SM
+nightgown/MS
+nighthawk/MS
+nightie/SM
+nightingale/SM
+nightjar/SM
+nightlife/R
+nightlight/SM
+nightlike
+Nightline/M
+nightly/SM
+nightman/M
+nightmare/MS
+nightmarish/Y
+nightmen/M
+nightshade/SM
+nightshirt/MS
+nightside/SM
+nightspot/SM
+nighttime/SM
+nightwalker/SM
+nightwalking/M Noun: uncountable
+nightwatchman/M
+nightwatchmen/M
+nightwear/M Noun: usually uncountable
+nighty/SM
+Nighy/M
+nigrescence/M
+nigrescent
+nigricans
+nigrify/SGD
+nigrite/M Noun: uncountable
+nigritude/SM
+nigromancer/SM
+nigromancy/SM
+nigrosin/SM
+nigrosine/SM
+nigrostriatal
+nigrous
+Niguel/M
+NIH/M
+Nihang/SM
+Nihilianism
+nihilism/MS
+nihilist/MSW
+nihility/M Noun: usually uncountable
+nihonium/M Noun: uncountable
+Nika/M
+Nikai/M
+Nike/M
+Niki/M
+Nikita/M
+Nikki/M
+Niklas/M
+Nikodym/M
+Nikola/M
+Nikolai/M
+Nikolova/M
+Nikon/M
+nil/MGY
+Nile/SM
+Niles/M
+Nilometer/MS
+Nilotic
+nilpotent/SM
+Nils/M
+Nilsson/M
+nimbi/M
+nimble/TPY
+nimbostratus/M
+nimbus/M
+nimbused
+NIMBY/SM
+nimiety/M
+Nimitz/M
+Nimmo/M
+Nimoy/M
+Nimrod/MS
+Nimrud/M
+Nina/M
+nincompoop/SM
+Nine/M
+nine/SMHr
+Ninebanks/M
+ninepence/SM
+ninepenny/SM
+ninepin/SM
+ninesome/SM
+nineteen/HSM
+ninety-eight/H
+ninety-first/S
+ninety-five/H
+ninety-four/H
+ninety-nine/H
+ninety-one
+ninety-onefold
+ninety-second/S
+ninety-seven/H
+ninety-six/H
+ninety-three/H
+ninety-two
+ninety-twofold
+ninety/HMS
+ninetysomething/SM
+Nineveh/M
+Ninevite/MS
+Ninfield/M
+Ningxia/M
+Ninian/MS
+ninja/SM
+ninjutsu/M Noun: uncountable
+ninny/MS
+ninon/SM
+Nintendo/M
+ninthly
+Niobe/M
+Niobean
+niobic
+niobium/SM
+niobocene/SM
+Nip/MS
+nip/RGDSZM
+nipa/MS
+Nipissing/M
+Nipkow/M
+nipping/Y
+nipple/SM
+nipplewort/SM
+Nippon/M
+Nipponese/M
+Nipponian
+nippy/PTY
+Niro/M
+nirvana/SM
+nisei/MS
+Niskayuna/M
+Nissan/M
+Nissen Nissen hut
+nit/SM
+Nita/M
+nitazoxanide/M Noun: uncountable
+Niterói/M
+nitery/MS
+nitid
+nitinol/SM
+Niton/M
+nitpick/ZRGDJS
+nitrate/SMDG
+nitrazepam/M Noun: uncountable
+nitre/MSnW
+nitridation/SM
+nitride/SGDM
+nitrifaction/M
+nitriferous
+nitrify/SGDnr
+nitrile/SM
+nitrite/MS
+nitro/SM
+nitrobacteria/M
+nitrobacterium/M
+nitrobenzene/SM
+nitrocellulose/SM
+nitrochalk/M Noun: uncountable
+nitrofurantoin/M Noun: uncountable
+nitrogen/SM
+nitrogenous
+nitroglycerin/M Noun: usually uncountable
+nitroglycerine/M Noun: usually uncountable
+nitroprusside/SM
+nitrosamine/SM
+nitrotoluene/SM
+nitrous
+nitrox/M Noun: uncountable
+Nitschke/M
+Nitshill/M
+nitty-gritty
+nitwit/MS
+Niue/M
+Niuo/M
+niveous
+nivosity/M
+nix/M Noun: uncountable
+Nixa/M
+Nixon/M
+Nixonian
+Nixonisation
+Nixonism/M Noun: uncountable
+Nixonite/SM
+Nixonization
+Nixonomics
+nixtamal/M Noun: uncountable
+Nizari/SM
+nizatidine/M Noun: uncountable
+Nkrumah/M
+NLRB/M
+nm
+NNTP/M
+no-ball/SD
+no-brainer/SM
+no-claims
+no-go
+no-nonsense
+no-show/SM
+no-win
+no/Q
+NOAA/M
+Noachian
+Noachic
+Noah/M
+Noak/M
+Noam/M
+nob/MY
+nobble/SGDr
+Nobel/M
+nobelium/M
+nobile/M
+nobiliary
+nobility/SM
+Noble/M
+noble/mPT5SM
+Nobles/M
+noblesse/M Noun: usually uncountable
+Noblesville/M
+nobody/SM
+Nóbrega/M
+Nobuyuki/M
+nociceptor/SM
+nocireceptive
+nocireceptor/SM
+nock/SGDM
+noctambulant
+noctambulism/M Noun: uncountable
+noctambulist/SMW
+noctambulous
+noctivagant Adjective
+Nocton/M
+noctuid/SM
+noctule/MS
+nocturn/MS
+nocturnal/SM
+nocturne/SoM
+nocuous/Y
+nod/SZGMDoOw
+Nodaviridae Taxonomic family
+Nodaway/M
+Noddack/M
+nodder/MS
+noddle/DMSG
+noddy/SM
+node/SM
+nodosity/SM
+nodular
+nodule/MS
+noduli/M
+nodulose
+nodulous
+nodulus/M
+nodum
+NOED Abbreviation: New Oxford English Dictionary
+noegenesis/M Noun: uncountable
+noegenetic
+Noel/SM
+Noelle/M
+noes
+Noetherian Adjective
+noetic/SMO
+noëtical
+Nogales/M
+noggin/SM
+Nogueira/M
+Nohl/M
+nohow
+Nohria/M
+noil/MS
+noir/MS~
+noire/S French: bête noire / bêtes noires
+noise/pSMZ
+noiseless/YP
+noisette/SM
+noisome/P
+noisy/PTY
+Nok/M
+Noke/M
+Nokia/M
+Nola/M
+Nolan/M
+Noland/M
+Noll/M
+nolle
+Nolte/M
+Nolton/M
+nomad/WMS1
+nomadism/M
+nomadize/DGS
+nombril/MS
+Nome/M
+nomen/SM
+nomenclative
+nomenclator/SM
+nomenclature/MSO
+Nomi/M
+nominal/SY3
+nominalise/SGDN
+nominalism/SM
+nominalistic/Y
+nominalizable
+nominalize/SGDN
+nominate/CGASnD
+nomination/MCA
+nominative/SMY
+nominator/CMS
+nominee/SM
+nomogram/SM
+nomographer/SM
+nomography/WSM
+nomological
+nomophobia/M Noun: uncountable
+nomothetic
+non-Aboriginal
+non-abrasive
+non-absorbent
+non-academic/S
+non-acceptance/S
+non-achiever/S
+non-acid/S
+non-active
+non-adaptive
+non-addictive
+non-adhesive
+non-adjacent
+non-adjustable
+non-administrative
+non-admission
+non-African
+non-aggression/S
+non-agricultural
+non-alcoholic/S
+non-aligned
+non-alignment/S
+non-allergic
+non-American
+non-appearance/S
+non-assignable
+non-athletic
+non-attendance/SM
+non-automotive
+non-availability/SM
+non-avian
+non-bank
+non-basic
+non-believer/MS
+non-belligerency
+non-belligerent/S
+non-biodegradable
+non-biological
+non-black
+non-blocking
+non-breakable
+non-British
+non-burnable
+non-business
+non-caloric
+non-cancerous
+non-capital
+non-carbohydrate
+non-Catholic
+non-chargeable
+non-chemical
+non-Chinese
+non-Christian
+non-clerical/S
+non-clinical
+non-coding
+non-collectable
+non-com/MS
+non-combatant/MS
+non-combative
+non-combustible/S
+non-commercial/S
+non-commissioned
+non-committal/Y
+non-communicable
+non-communist
+non-commutative
+non-compete/G
+non-competitive
+non-compliance/MS
+non-complying/S
+non-comprehending
+non-comprehension
+non-conclusion
+non-conducting
+non-conductive
+non-conductor/SM
+non-conform
+non-conformable
+non-conformance
+non-conformant
+non-conformer
+non-confrontational
+non-consecutive
+non-conservative
+non-constructive
+non-contagious
+non-content
+non-contiguous
+non-continuous
+non-contributing
+non-contributory
+non-controversial
+non-convertible
+non-cooperation/S
+non-cooperative
+non-corroding/S
+non-corrosive
+non-credit
+non-criminal/S
+non-critical
+non-crystalline
+non-cumulative
+non-custodial
+non-cyclic
+non-dairy
+non-decision
+non-decreasing
+non-deductible
+non-deferential
+non-delivery/S
+non-democratic
+non-denominational/Y
+non-departmental
+non-depreciating
+non-destructive/Y
+non-detachable
+non-determinacy
+non-determinate/Y
+non-determinism
+non-deterministic/Y
+non-disciplinary
+non-disclosure/S
+non-discrimination/S
+non-discriminatory
+non-disjunction
+non-dominant
+non-dramatic
+non-drinker/SM
+non-driver
+non-drying
+non-durable
+non-Dutch
+non-economic
+non-educational/Y
+non-effective/S
+non-elastic
+non-electric/SO
+non-emergency
+non-empty
+non-enforceable
+non-English
+non-equivalence
+non-equivalent/S
+non-essential/S
+non-event/MS
+non-exchangeable
+non-exclusive
+non-executive
+non-exempt
+non-existence/SM
+non-existent
+non-explosive/S
+non-extensible
+non-factive
+non-factual
+non-fading
+non-fat/O
+non-fattening
+non-ferrous
+non-finite
+non-flammable
+non-flowering
+non-fluctuating
+non-fluent
+non-flying
+non-food
+non-formal
+non-freezing
+non-French
+non-functional/Y
+non-functioning
+non-fundamental
+non-gay
+non-gendered
+non-genetic/Y
+non-genital
+non-German/W
+non-governmental
+non-granular
+non-greasy
+non-hazardous
+non-hereditary
+non-hostile
+non-human/S
+non-identical
+non-inclusion
+non-inclusive
+non-independent
+non-industrial
+non-infectious
+non-inflammatory
+non-inflationary
+non-inflected
+non-inherent
+non-injurious
+non-intellectual/S
+non-interacting
+non-interchangeable
+non-interference
+non-intervention/S
+non-interventionist
+non-intoxicating
+non-intuitive
+non-invasive
+non-ionic
+non-ionising
+non-irritating
+non-Italian
+non-Japanese
+non-judgemental
+non-judicial
+non-legal
+non-lethal
+non-linear/Y
+non-linearity/SM
+non-linguistic
+non-literary
+non-living
+non-local
+non-logical
+non-magical
+non-magnetic
+non-malignant
+non-medical
+non-member/MS
+non-metal/SWM
+non-metropolitan
+non-migratory
+non-militant/S
+non-military
+non-moral
+non-narcotic/S
+non-native/S
+non-natural
+non-negative
+non-negotiable
+non-nuclear
+non-numerical/S
+non-objective
+non-obligatory
+non-observance/S
+non-observant
+non-occupational/Y
+non-official
+non-operational/Y
+non-operative
+non-Oriental
+non-orthogonal
+non-orthogonality
+non-parallel/S
+non-parametric
+non-participant/SM
+non-participating
+non-participation
+non-partisan/S
+non-party
+non-paying
+non-payment/SM
+non-peak
+non-performance/SM
+non-performing
+non-perishable/S
+non-persistent
+non-person/S
+non-perturbing
+non-physical/Y
+non-planar
+non-point
+non-poisonous
+non-political
+non-polluting
+non-porous
+non-possession
+non-pregnant
+non-prejudicial
+non-prescription
+non-procedural/Y
+non-productive
+non-professional/SY
+non-profit-making
+non-profit/S7
+non-programmable
+non-programmer
+non-proliferation/S
+non-public
+non-punishable
+non-racial
+non-radioactive
+non-random
+non-reactive
+non-reciprocal/S
+non-reciprocating
+non-recognition/S
+non-recoverable
+non-recurring
+non-redeemable
+non-reducing
+non-refillable
+non-refundable
+non-relative
+non-religious
+non-renewable
+non-representational/Y
+non-resident/SM
+non-residential
+non-residual
+non-resistance/S
+non-resistant/S
+non-respondent/S
+non-response
+non-restrictive
+non-returnable/S
+non-rhythmic
+non-rigid
+non-Roman
+non-rural
+non-salaried
+non-scheduled
+non-scientific
+non-scientist/S
+non-scoring
+non-seasonal
+non-sectarian
+non-secular
+non-segregated
+non-selective
+non-sexist
+non-sexual
+non-singing
+non-singular
+non-skid
+non-slip
+non-smoker/SM
+non-smoking
+non-social
+non-Spanish
+non-speaking
+non-specialist/SM
+non-specializing
+non-specific
+non-spiritual/S
+non-staining
+non-standard
+non-starter/S
+non-stick
+non-stop
+non-strategic
+non-striking
+non-structural
+non-successive
+non-supervisory
+non-support/SG
+non-surgical
+non-sustaining
+non-Swedish
+non-swimmer
+non-sympathiser/M
+non-tarnishable
+non-taxable/S
+non-technical/Y
+non-tenured
+non-terminal/S
+non-terminating
+non-termination
+non-theatrical
+non-theistic
+non-thinking/S
+non-threatening
+non-toxic
+non-traditional/Y
+non-transferable
+non-transparency
+non-transparent
+non-trivial
+non-tropical
+non-trunk
+non-typical
+non-U
+non-uniform
+non-union/S
+non-urban
+non-use/G
+non-user/SM
+non-validity
+non-variable
+non-venomous
+non-verbal/Y
+non-veteran/SM
+non-viable
+non-vintage
+non-violence/S
+non-violent/Y
+non-virulent
+non-vocal
+non-vocational/Y
+non-volatile
+non-volunteer/S
+non-voter/SM
+non-voting
+non-Western
+non-white/SM
+non-word/S
+non-working
+non-woven
+non-yielding
+non-zero
+non/W
+Nona/M
+nonacosanoic
+nonactivated
+nonadditive
+nonadecanoic
+nonage/SM
+nonagenarian/MS
+nonagon/OSM
+Nonaka/M
+nonanoic
+nonary
+nonaspirin
+nonbreeding
+noncallable
+nonce/SM
+nonchalance/MS
+nonchalant/YP
+noncombatant/SM
+noncommunication
+noncommutative
+nonconformably
+nonconforming
+nonconformism/M Noun: usually uncountable
+Nonconformist/MS
+nonconformist/SM
+nonconformitant
+nonconformity/SM
+nonconstant/SM
+noncultivated
+nonda/S
+nondescript/YSP
+nondeterminism/SM
+nondeterministic
+nondevelopment
+none/S
+nonentity/MS
+nonequilibrium/M Noun: usually uncountable
+nonesuch
+nonet/SM
+nonetheless
+nonfree
+nongenary
+nongovernment/O
+nonhomologous
+Nonie/M
+noninfringement/M Noun: usually uncountable
+Nonington/M
+nonintrusive
+nonissue
+nonjuring
+Nonjuror/SM
+nonlinearity/M Noun: usually uncountable
+nonminimum
+nonmonogamous
+nonpareil/MS
+nonplus/GDS
+nonradiative
+nonrefoulement/M Noun: uncountable
+nonresonant
+nonrival/SM
+nonsense/1SMw
+nonsensical/P
+nonsensicality/SM
+nonsingular
+nonspherical
+nonsteroidal/SM
+nonsuch
+nonsuit/SM
+nonsymmetric/O
+nonsyndromic
+nontarget/SM
+nontheistic
+nonvaccine
+Nonya/M
+noob/SM
+noocenologic
+Noocenology/M
+noocenoses
+noocenosis/M
+noodle/SGDM
+noogenesis/M
+nook/SM
+noology/MS
+noon/JSM
+Noonan/M
+noonday/SM
+noontide/SM
+noontime/SM
+Noorani/M
+noose/MSDG
+noosphere/MS
+nootropic/SM
+nopal/MS
+nope
+nor
+Nora/M
+NORAD/M
+noradrenalin/SM
+noradrenaline/SM
+noradrenergic/Y
+Norah/M
+Noraid/M
+NORAID/M
+norbergite/M
+Norbert/M
+Norbertine/MS
+norbornadiene/SM
+norbornane/SM
+Norbreck/M
+Norbury/M
+Norco/M
+Nord-du-Québec/M
+Nordelph/M
+Norden/M
+Nordholts/M
+Nordic/SM
+Nordlinger/M
+Nordquist/M
+Nordstrom/M
+Noreen/M
+norepinephrine/SM
+norethindrone/M Noun: uncountable
+Norfolk/M
+Norgate/M
+norgestimate/M Noun: uncountable
+Norham/M
+Norina/M
+Norland/M
+norland/MS
+Norley/M
+norm/VDGMoSvu
+Norma/M
+normal/8Qs+-tqSM
+Normal/M
+normalcy/SM
+normalise/CGASDN
+normality/SM
+normalize/CGSD
+normalized/A
+normalizer/SM
+normalizes/A
+normalizing/A
+Norman/MS
+Normanby/M
+Normandale/M
+Normandin/M
+Normandy/M
+Normanesque
+Normanism/MS
+Normanize/DGS
+Normanton/M
+normative/P
+normlessness
+normotensive/SM
+Norn/M
+Noronha/M
+norovirus/SM
+Norplant/M
+Norpoth/M
+Norreys/M
+Norridge/M
+Norrie/M
+Norris/M
+Norristown/M
+Norriton/M
+Norroy/M
+Norse/m
+Norseland/M
+Norsewood/M
+Norte/M
+Nortel/M
+north-east/M
+north-easterly/SM
+north-eastern
+north-eastward/S
+north-Eastward/S
+north-north-east
+north-south
+north-west/M
+north-westerly
+north-Westerly
+north-western
+north-westward/S
+north-Westward/S
+North/M
+north/MSGY
+Northallerton/M
+Northam/M
+Northampton/M
+Northamptonshire/M
+Northants
+Northavon/M
+Northaw/M
+Northborough/M
+northbound
+Northbourne/M
+Northbridge/M
+Northbrook/M
+Northchapel/M
+Northchurch/M
+Northcliffe/M
+Northcote/M
+Northcott/M
+Northcross/M
+Northeast
+northeaster/MS
+northeastern/r
+Northenden/M
+norther's
+northerliness/M
+northerly/SM
+Northern/M
+northern/SMR
+northernmost
+Northesk/M
+Northfield/MS
+Northfleet/M
+Northgate/M
+Northglenn/M
+Northiam/M
+Northill/M
+northing/M
+Northington/M
+Northlake/M
+Northland/M
+Northleach/M
+Northleigh/M
+Northlew/M
+Northman/M
+Northmaven/M
+Northmavine/M
+Northmen/M
+Northmoor/M
+northness
+Northolt/M
+Northop/M
+Northorpe/M
+Northover/M
+Northport/M
+Northrepps/M
+Northridge/M
+Northrop/M
+Northumb.
+Northumberland/M
+Northumbria/M
+Northumbrian/SM
+Northumbrianism/M
+Northville/M
+northward/MSY
+Northway/M
+Northwell/M
+Northwest/M
+northwester/MS
+northwestern
+Northwich/M
+Northwold/M
+Northwood/M
+Norton-le-Clay/M
+Norton-on-Derwent/M
+Norton/M
+nortriptyline/M Noun: usually uncountable
+Norvir/M
+Norwalk/M
+Norway/M
+Norwegian/SM
+Norwell/M
+Norwich/M
+Norwood/M
+nose/ZDGSMpr
+nosebag/MS
+noseband/SM
+nosebleed/MS
+nosedive/DSG
+nosegay/MS
+Noseley/M
+nosepiece/SM
+nosey/SM
+nosh/SDMG
+noshery/SM
+nosing/M
+nosocomial
+nosography/SM
+nosology/SM1
+Noss/M
+nostalgia/SM
+nostalgic/SMY
+Nostell/M
+nostoc/MS
+Nostra/M
+Nostradamus/M
+Nostrand/M
+nostril/DSM
+nostrum/SM
+nosy/TYP
+not/7NxdgnlS
+nota/MO
+notability/SM
+notable/C
+notable/SM
+notableness/M Noun: uncountable
+notarial/Y
+notarise/SGDn
+notarization/MS
+notarize/SGD
+notary/SM
+notate/xDSVG
+notation/M
+notation/MCo
+notational/C
+notative/F
+notch/DGSM
+notchy/T
+note/FDCGSn
+note/pMh
+notebook/MS
+notecard/SM
+notecase/SM
+notehead/SM
+noteholder/SM
+notelet/SM
+notepad/SM
+notepaper/SM
+noteworthy/P
+Notgrove/M
+Noth/M
+nothing-buttery
+nothing/PSM
+nothosaur/SM
+notice/DMSGl
+noticeable/U
+noticeboard/SM
+notify/SRG7Dn
+notion/CS
+notion/M
+notionalist/SM
+Notley/M
+notochord/SM
+notoriety/SM
+notorious/PY
+notornis/S
+Notovich/M
+Notre-Dame-de-l'Île-Perrot/M
+Notre-Dame-des-Prairies/M
+Notre/M
+Nottage/M
+Notting/M
+Nottingham/M
+Nottinghamshire/M
+Notton/M
+Nottoway/M
+notum/M
+notwithstanding
+Nouakchott/M
+nougat/SM
+nought/SM
+Nouméa/M
+noumena/M
+noumenal/Y
+noumenon/M
+noun/MSO
+Nounéa/M
+Noura/M
+nourish/RSLGDk
+nourishable
+nourished/fU
+nourishment/f
+nous/M Noun: uncountable
+nouveau
+nouveaux
+nouvelle
+Nouvelle-Beauce/M
+Nov
+Nova/M
+nova/SM
+novae/M
+Novak/M
+Novartis/M
+novation/M
+Novato/M
+Novaya
+novel/S3QM-Y~
+novelese/M
+novelesque
+novelette/SM3
+novelettish
+novelise/SGDN
+novelism/SM
+novelistic
+novelize/SGDN
+Novell/M
+novella/SM
+novelty/SM
+November/SM
+novena/MS
+novercal
+Novers/M
+Novi/M
+novice/SM
+novichok/SM
+noviciate/S
+novitiate/MS
+Novo/M
+Novocain/M
+novocaine/SM
+Novolog/M
+Novosibirsk/M
+novum
+now
+Nowack/M
+nowadays
+Nowak/SM
+Nowata/M
+noway
+nowhen
+nowhere
+nowise
+Nowlan/M
+Nowra-Bomaderry/M
+nowt
+Nowton/M
+noxious/YP
+Noxubee/M
+noyade/SM
+Noyce/M
+Noyes/M
+nozzle/SM
+Np
+NPD/M
+NRA/M
+nroff/M
+NS
+ns
+NSA/M
+NSF/M
+NT
+NTFS/M
+nth
+NTLM/SM
+NTSC/M
+nu/M
+nuance/SMD
+nub/ZMS
+nubble/SMD
+nubby/T
+Nubian/SM
+nubile/SM
+nubility/M Noun: usually uncountable
+nucelli/M
+nucellus/M
+nuchal/SM
+nuciferous
+nucivorous
+nuclear
+nuclear-free
+nuclear-powered
+nuclease/MS
+nucleate/nGDS
+nuclei/M
+nucleocapsid/SM
+nucleocosmochronology/M Noun: uncountable
+nucleogenesis/M Noun: uncountable
+nucleogenetic
+nucleohistone/SM
+nucleolar
+nucleoli/M
+nucleolus/M
+nucleon/SM
+nucleonic/S
+nucleophile/SM
+nucleophilic/Y
+nucleoplasm/SMW
+nucleoprotein/SM
+nucleoside/SM
+nucleosome/SMO
+nucleosynthesis/M
+nucleosynthetic
+nucleotide/SM
+nucleus/MW
+nuclide/SMW
+nude/Y3SMTP
+nuder/C
+nudge/GSDR
+nudibranch/M
+Nudibranchia Taxonomic order
+nudibranchiate/M
+nudibranchs
+nudism/SM
+nudity/SM
+Nueces/M
+nuff
+Nuffield/M
+nugatoriness/M Noun: uncountable
+nugatory Adjective
+Nugent/M
+nuggar/MS
+nugget/MS
+nuisance/MS
+nuke/SGMD
+Nuku'alofa/M
+null/S7
+nullifidian/SM
+nullify/DRSnG
+nullipara/M
+nulliparae/M
+nulliparity/M
+nulliparous
+nullipore/SM
+nullity/MS
+Numa
+numb/RkTYDPGS
+numbat/SM
+number/pdJr
+numbered/AeU
+numbering/e
+numberplate/SM
+numbers/Ae
+numbskull/SM
+numdah/SM
+numen/M
+numerability/M Noun: uncountable
+numerable/IC
+numerable/Y
+numeracy/SI
+numeral/MS
+numerate/IS
+numeration/MS
+numerator/SM
+numeric/SMY
+numerical/S
+numerology/wSM3
+numerosity/SM
+numerous/PY
+numina/M
+numinous/SY
+numismatic/SY
+numismatist/MS
+numismatography/M Noun: uncountable
+numismatology/3M
+nummiform
+nummion
+nummular/Z
+nummulite/SMW
+nummus/M
+numnah/SM
+nump/SM
+numpty/SM
+numskull/SM
+Nun/M
+nun/MyS
+nunatak/SM
+Nunavut/M
+Nunburnholme/M
+nunchaku/SM
+nunchuck/SMGD
+nunciature/SM
+nuncio/SM
+nuncupation/MS
+nuncupative
+Nunda/M
+Nuneaton/M
+Nuneham/M
+Nunes/M
+Nunez/M
+nunhood/M
+Nunkeeling/M
+nunlike
+Nunn/M
+nunnery/SM
+Nunney/M
+Nunnington/M
+nunnish
+Nuno/M
+nunship/MS
+Nunthorpe/M
+nuptial/SM
+Nuremberg/M
+Nürnberg/M
+Nurnberg/M
+nurse/RMJSDG
+nursemaid/SM
+nursery/mSM
+nursling/M
+Nursling/M
+Nursted/M
+nurture/3MRDSGp
+nut/2GDMZnS
+nutate/GSD
+nutational
+nutcase/SM
+nutcracker/SM
+Nutfield/M
+Nuthall/M
+Nuthampstead/M
+nuthatch/MS
+Nuthill/M
+nuthouse/SM
+Nuthurst/M
+nutjob/SM
+nutlet/SM
+Nutley/M
+nutmeg/MSDG
+nutraceutical/SM
+nutria/MS
+nutrient/SM
+nutriment/MSO
+nutrition/OoM3S
+nutritionalist/SM
+nutritious/PY
+nutritive/SMY
+nutritor
+nutriture/M Noun: uncountable
+nutrix
+nutrose/M Noun: uncountable
+nutshell/MSZ
+Nuttall/M
+nuttallite/M
+nutter/SMZ
+nuttish
+nutty/TP
+Nuuk/M
+Nuvaring/M
+Nuzzi/M
+nuzzle/RSDG
+NVH/M Noun: uncountable
+nvidia/M
+NVMe/M
+NVRAM/SM
+NW/M
+NY/M
+nyala/SM
+Nyanja/SM
+Nyanza/M
+Nyasa/M
+Nyasaland/M
+NYC/M
+nyctaginaceous
+nyctalopia/MW
+nyctitropic
+Nye/M
+Nyerere/M
+nylon/SM
+Nymet/M
+nymph/SMO^
+nympha/M
+nymphaea/M
+nymphaeum/M
+nymphalid/SM
+nymphean Adjective
+nymphet/SM
+nymphlike
+nympho/SM
+nympholepsy/SM
+nympholept/SMW
+nymphology/M Noun: uncountable
+nymphomania/SM
+nymphomaniac/SMO
+Nympsfield/M
+Nympton/M
+Nynehead/M
+Nyquist/M
+NYSE/M
+Nyssa/M
+nystagmus/MW
+nystatin/M Noun: usually uncountable
+Nythe/M
+NZ
+o
+O
+O'Brien/M
+O'Callahan/M
+O'Casey/M
+o'Clock
+o'clock
+O'Connell/M
+O'Connor/M
+O'Dell/M
+O'Donnell/M
+O'Dowd/M
+O'Dwyer/M
+o'er
+O'Fallon/M
+O'Farrell/M
+O'Gorman/M
+O'Hara/M
+O'Hare/M
+O'Higgins/M
+O'Keefe/M
+O'Keeffe/M
+O'Leary/M
+O'Mahony/M
+O'Malley/M
+O'Mara/M
+O'Neil/M
+O'Neill/M
+O'Reilly/M
+O'Shea/M
+O'Sullivan/M
+Oa/M
+Oadby/M
+oaf/MS
+oafish/YP
+Oahu/M
+Oak/M
+oak/SMD
+Oakamoor/M
+Oakdale/M
+Oake/M
+oaken
+Oakengates/M
+Oakes/M
+Oakford/M
+Oakham/M
+Oakington/M
+Oakland/M
+Oakley/M
+oakling/SM
+Oakman/M
+Oakmere/M
+Oakmont/M
+Oaks/M
+Oaksey/M
+Oakshaw/M
+Oakthorpe/M
+oakum/SM
+Oakura/M
+Oakville/M
+oakwood/SM
+Oamaru/M
+OAP/SM
+oar/SGDMp
+oarage/M Noun: uncountable
+Oare/M
+oarer/M
+oarfish/SM
+oarlock/SM
+oars/m5
+oarsmanship/M Noun: uncountable
+oarweed/SM
+oary
+OAS
+oasal
+oases
+oasis/M
+oast
+oat/SM
+oatcake/SM
+oaten
+Oates/M
+oath/SM
+Oathlaw/M
+oatmeal/MS
+Oaxaca/M
+ob.
+Obadiah/M
+Obama/M
+Obamacare/M
+Oban/M
+obbligati/M
+obbligato/SM
+obconical
+obcordate
+obduct/SGD
+obduction/SM
+obduracy/SM
+obdurate/YSP
+OBE/SM
+obeche/SM
+obedience/EMS
+obedient/EY
+obedientiary/SM
+obeisance/SM
+obeisant/Y
+obeli/M
+obelia/SM
+obeliac
+obelion/SM
+obeliscal
+obelise/SGD
+obelisk/MS
+obelize/SGD
+obelus/M
+OBEr/SM
+Oberammergau/M
+Oberea
+oberek/SM
+Oberhausen/M
+Oberlin/M
+Oberon/M
+Oberrender/M
+Oberstleutnant/M
+Oberth/M
+obese/PY
+obesity/SM
+obesogenic
+obey/ESDGr
+obfuscate/DnyGS
+obfuscater
+Obi-Wan/M
+Obi/M
+Óbidos/M
+Obion/M
+Obispo/M
+obit/MSr
+obitual
+obituarise/SGD
+obituarize/SGD
+obituary/SM3Y
+object-libido/M
+object/DSGvuVMp
+objectify/DSnG
+objection/lSM7
+objectionableness/M Noun: uncountable
+objective/PSM
+objectivism/SM
+objectivist/SMW
+objectivity/SM
+objector/SM
+objurgate/GSDn
+objurgatory Adjective
+oblanceolate Adjective
+oblast/SM
+oblate/YSnP
+oblational
+oblatory
+obligate/SxyGnD
+obligatoriness/M Noun: uncountable
+obligatory/Y
+oblige/EGDS
+obligee/SM
+obliger/SM
+obliging/YP
+obligor/SM
+obliqua
+oblique/YDSMGP
+obliquity/MS
+obliterate/DvnSVG
+oblivion/MS
+oblivious/PY
+oblong/PSM
+oblongata/SM
+obloquies
+obloquy/M
+obmutescence/M
+obmutescent Adjective
+obnoxious/YP
+obnubilate/DGSn
+oboe/SM
+oboist/SM
+obol/SM
+obolus/M
+Oborne/M
+obovate/Y
+obreption/SM
+obs.
+obscene/TYP
+obscenity/SM
+obscura/M
+obscurant/MSW3
+obscurantism/SM
+obscure/NSDTGYP
+obscurity/MS
+obscurius
+obscurum
+obsecration/M
+obsequial
+obsequies
+obsequious/YP
+observability/SM
+observable/SM
+observance/MS
+observant/YU
+observatory/MS
+observe/GSnlRkxBD
+obsess/xVSuDGv
+obsession/SM
+obsessive/SP
+obsidian/SM
+obsolescence/SM
+obsolescent/Y
+obsolete/GPDSY
+obsoletism/MS
+obstacle/SM
+obstat
+obstetric/SO
+obstetrician/MS
+obstinacy/SM
+obstinate/PY
+obstreperous/PY
+obstruct/GSvDuVr
+obstruction/3SM
+obstructionism/SM
+obstructive/PSM
+obstructor/SM
+obstruent/SM
+obstupefying
+obtain/SGD7r
+obtention/M Noun: uncountable
+obtestation/MS
+obtrude/rVvuGNSDX
+obtrusive/UY
+obtrusiveness/SM
+obtund/SGD
+obturate/DGS
+obturation/S
+obturator/SM
+obtuse/TYP
+obtusity/M
+obverse/SMY
+obversion/S
+obvert/DGS
+obviate/DnSG
+obvious/PY
+Oby/M
+Ocala/M
+ocarina/MS
+Occam/M
+Occaney/M
+occasion/SMJOoDG
+occasionalism/SM
+occasionalist/SMW
+occasionality/M Noun: uncountable
+Occident/M
+occidental/SMY
+occidentalism/M Noun: uncountable
+occidentalist/SM
+occidentalize/DGS
+occipita/M
+occipital/Y
+occipitonasal
+occipitotemporal
+occiput/SM
+Occitan/M
+Occitanian/SM
+occlude/SVDGr
+occlusion/SM
+occlusive/SM
+Occold/M
+occult/3WrPDGSYn
+occultism/SM
+occupancy/MS
+occupant/MS
+occupation/MKA
+occupational/Y
+occupied/U
+occupier/SM
+occupy/ADSKnG
+occur/ASGD
+occurrence/SM
+occurrent/SM
+ocean-going
+Ocean/M
+ocean/MWS
+Oceana/M
+oceanaria/M
+oceanarium/MS
+Oceania/M
+oceanic/4
+Oceanid/MS
+Oceanides
+oceanodromous
+oceanographer/SM
+oceanography/SMWw
+Oceanside/M
+oceanward/S
+ocellar
+ocelli/M
+ocelliform
+ocellus/M
+ocelot/SM
+Oceola/M
+och
+Ochil/MS
+Ochiltree/M
+ochlocracy/M
+ochlocrat/MS
+Ochoa/M
+ochre/SM~
+ochreous
+ochroid
+ochrous
+ochry
+Ockbrook/M
+Ocke/M
+Ockenden/M
+ocker/S
+Ockham/M
+Ockley/M
+Ocklynge/M
+OCLC Initialism of Online Computer Library Center
+Ocle/M
+Ocoee/M
+Oconee/M
+Oconomowoc/M
+Oconto/M
+OCR/SDG
+Oct
+octa/SM
+octachord/SM
+octacosanoic
+octad/SM
+octadecane/SM
+octadecanoic
+octadentate
+octadentative
+octagon/OoMS
+octahedra/Oo
+octahedron/SM
+octakishexahedron
+octal/SM
+octamer/MSW
+octamerous
+octameter/MS
+octane/SM
+octanoic
+octanoyl/SM
+Octans/M
+octant/SMO
+octapeptide/SM
+octarch
+octarchy/SM
+octaroon/SM
+octastich
+octastyle/SM
+Octateuch/M
+octatomic
+octatriacontanoic
+Octav/M
+octavalent
+octave/SMO
+Octavian/M
+octavo/SM
+octennial/Y
+octet/MS
+octette/S
+octic/SM
+octile/SM
+octillion/SM
+October/SM
+Octobrist/SM
+octocentenary/S
+octochord/SM
+octocoral/SM
+octocorallian/SM
+octocoralline
+octodactylous
+octode
+octodecimo/SM
+octodentate
+octodesexcentenary
+octogenarian/MS
+octonarian
+octonarius/M
+octonary/SM
+octonian/SM
+octonion/SM
+octopetalous
+octopod/SM
+octopus/MS
+octoradial
+octoroon/MS
+octose/SM
+octospore/SM
+octosporous
+octosyllable/MSW
+octroi/MS
+octuple/DGS
+octupole/SM
+ocular/SMY3
+oculate
+oculi/M
+oculist/MSW
+oculocephalic
+oculocutaneous
+oculogenital
+oculogravic
+oculogyric
+oculomotor
+oculonasal/Y
+oculus/M
+OD/S
+odalisque/SM
+Odcombe/M
+Odd/M
+odd/TLPSY
+oddball/SM
+Oddfellow/MS
+Oddie/M
+Oddingley/M
+Oddington/M
+oddity/SM
+odds-on
+Oddsocks/M
+ode/SMW
+Odell/M
+Oden/M
+Odense/M
+Odeon/M
+Oder/M
+Odesa/M
+Odessa/M
+Odette/M
+ODF/M
+Odia/M
+Odian/M
+odiferous
+Odiham/M
+Odin/MW3
+Odinism
+odious/PY
+Odis/M
+Odisha/M
+odium/MS
+Odom/M
+odometer/SM
+odontocete/SM
+Odontoceti/M
+odontogenic
+odontoglossum/S
+odontoid/M
+odontology/Mw3
+odontorhynchous
+odoriferous
+odorous/YP
+odour/6SpM
+odourlessly
+odourlessness
+Odstock/M
+odt
+Odwyn/M
+Odyssean
+Odysseus/M
+Odyssey/M
+odyssey/SM
+OE
+OECD/M
+oecidium
+Oecolampadius/M
+oecumenical
+OED
+oedema/SMW
+oedematous
+oedemic
+Oedipal/Y
+Oedipus/M
+OEM/MS
+OEMS
+oenology/SM3w
+oenophile/SM
+Oerlikon/M
+Oersted/M
+oesophageal
+oesophagi/M
+oesophagus/MS
+oestradiol/SM
+oestriol/SM
+oestrogen/SMW
+oestrone/SM
+oestrous
+oestrus/SM
+oeuvre/SM
+of
+Ofcom/M
+Ofelia/M
+ofens
+off'nce
+off'ns
+off-air
+off-break
+off-centre
+off-drive/S
+off-frequency
+off-key
+off-licence/MS
+off-line
+off-message
+off-patent
+off-peak
+off-piste
+off-pitch
+off-plan
+off-putting
+off-road/Gr
+off-sale/SM
+off-screen
+off-season
+off-site
+off-street
+off-the-cuff
+off-the-peg
+off-the-shelf
+off-the-wall
+off-white
+off/JMGR~
+Offa/M
+offal/SM
+Offaly/M
+offbeat/SM
+Offchurch/M
+Offcote/M
+offcuts
+Offenbach/M
+offence/SM
+offenceless/Y
+offend/DRVuGSv
+Offenham/M
+offensive/IYPSM
+offensiveness/SI
+offer/rJd
+Offerton/M
+offertory/MS
+Offham/M
+offhand/iDh
+office/SRoM
+officeholder/SM
+OfficeJet/M
+officemate/SM
+officer/d
+officership/S
+official/MS
+official/UY
+officialdom/MS
+officialese/SM
+officialism/MS
+officialness
+officiant/SM
+officiate/nSDG
+officiator/SM
+officio
+officious/PY
+offing/M
+Offington/M
+offins
+Offley/M
+offline
+offload/DGS
+Offord/M
+offprint/GMSD
+offset/SGM
+offshoot/MS
+offshore/SGD
+offside/SMr
+offspring/SMp
+offstage
+offt'ns
+Offton/M
+Offwell/M
+Ofsted/M
+oft
+oft-times
+OFTEL
+Oftel/M
+often/P
+oftener
+oftenest
+Ofwat/M
+oga
+oganesson/M Noun: uncountable
+Ogata/M
+Ogawa/M
+Ogbourne/M
+Ogden/M
+Ogdensburg/M
+Ogemaw/M
+ogg
+Ogg/M
+Ogilface/M
+Ogilvie/M
+Ogilvy/M
+ogive/OSM
+Oglala/M
+ogle/DRSG
+Ogle/M
+Oglethorpe/M
+Ogmore/M
+Ogpu/M
+ogre/SM~
+ogress/SM
+ogrish
+Oguibe/M
+Ogunquit/M
+Ogwell/M
+Ogygian
+oh/S
+Ohaeawai/M
+Ohakune/M
+Ohangai/M
+Ohariu/M
+Oher/M
+Ohinemutu/M
+Ohio/M
+Ohioan/SM
+Ohlsson/M
+ohm/WSM
+ohmage/MS
+ohmmeter/SM
+oho/S
+Ohoka/M
+Ōhope/M
+OHSA/M
+Ohura/M
+oi
+oik/SM
+Oikos/M
+Oil/M
+oil/m2RZGMSDp
+oilbird/SM
+oilcake/SM
+oilcan/SM
+oilcloth/SM
+oilery/SM
+oilfield/MS
+oilseed/SM
+oilskin/MS
+oilstone/SM
+oily/TY
+oink/DGSM
+ointment/SM
+oiran/SM
+Oireachtas The parliament of Ireland
+OJ
+Ojibwa/SM
+OK/MDGS
+Okaihau/M
+Okaloosa/M
+Okamoto/M
+Okanagan-Similkameen/M
+Okanagan/M
+Okanogan/M
+okapi/SM
+Okato/M
+okay/DMG
+Okayama/M
+Okeechobee/M
+Okeford/M
+Okehampton/M
+Okeover/M
+Okewood/M
+okey-doke
+okey-dokey
+Okfuskee/M
+Okhotsk/M
+Okinawa/M
+Okinawan/SM
+Oklahoma/M
+Oklahoman/MS
+Oklo/M
+Okmulgee/M
+okra/MS
+Okrand/M
+Oktibbeha/M
+Oktoberfest/M
+Okuku/M
+Okun/M
+Okura/M
+Ola/M
+olanzapine/M Noun: uncountable
+Olathe/M
+Olav/M
+Olave/MS
+Olbers/M
+old-age
+old-fashioned
+old-gold
+old-style
+old-time/R
+old-world
+Old/M
+old/YPT~
+Oldany/M
+Oldberrow/M
+Oldbury-upon-Severn/M
+Oldbury/M
+Oldcastle/M
+Oldcotes/M
+olden
+Oldenburg/M
+Oldfield/M
+Oldhall/M
+Oldham/M
+Oldhamstocks/M
+oldie/MS
+Oldland/M
+Oldmachar/M
+Oldman/M
+Oldmeldrum/M
+Oldowan/M
+Oldridge/M
+Oldsmar/M
+Oldsmobile/M
+oldspeak
+Oldspeaker/M
+Oldstead/M
+oldster/SM
+olé
+OLE
+oleaceous
+oleaginous
+Olean/M
+oleander/MS
+oleaster/MS
+oleate/SM
+olecranon/S
+OLED/SM
+olefin/MSW
+olefine/SM
+Oleg/M
+oleic
+oleiferous
+Olen/M
+oleograph/SM
+oleomargarine/SM
+oles
+olfaction/SM
+olfactive
+olfactometer/SM
+olfactometry/M Noun: uncountable
+olfactory/SM
+Olga/M
+Oliffe/M
+oligarch/ZMWw
+oligarchs
+oligarchy/SM
+oligo/SM
+Oligocene
+oligoclonal
+oligodendroglia/O
+oligomer/SM
+oligomerisation/SM
+oligomerise/SGD
+oligonucleotide/SM
+oligophage/SM
+oligophagous
+oligophagy/M Noun: uncountable
+oligophrenia/SM
+oligophyllous
+oligopod Adjective
+oligopolistic
+oligopoly/SM3
+oligopsonist/SM
+oligopsony/SM
+oligosaccharide/SM
+oligotrophy/MW
+oliguria/SMW
+Olin/M
+Oliphant/M
+olivacea
+olivaceous
+olivary Adjective
+Olive/M
+olive/MS
+Oliveira/M
+Oliver/MS
+Olivet/M
+Olivetti/M
+Olivia/M
+Olivier/M
+olivine/SM
+Olkin/M
+Ollerton/M
+Ollie/M
+ollie/SDM
+ollieing
+olmesartan/M Noun: uncountable
+Olmsted/M
+Olney/M
+olog
+ology/3SM
+oloroso/MS
+Olrig/M
+Olsen/M
+Olson/M
+Olum/M
+Olveston/M
+Olympia/M
+Olympiad/SM
+Olympian/SM
+Olympic/S
+Olympus/M
+OM Order of Merit.
+omadhaun/SM
+Omagh/M
+Omaha/M
+Oman/M
+Omanaia/M
+Omar/M
+Omarama/M
+omasa/M
+omasum/SM
+Omata/M
+Omayra/M
+Ombersley/M
+ombrohydrochore/1SMW
+ombrohydrochorous
+ombrohydrochory/M
+ombudsman/M
+ombudsmen/M
+Omdurman/M
+Omega
+omega/MS
+omelet/SM
+omelette/MS
+omen/SMd
+omenology/M Noun: uncountable
+omenta/MO
+omentin/SM
+omentopexy/SM
+omentum/M
+omeprazole/M Noun: uncountable
+omertà/SM
+omicron/SM
+Omid/M
+ominous/PY
+omissible
+omission/SM
+omissive
+omit/SDG
+omittable
+ommatidia/M
+ommatidium/M
+omni/SM
+omnibus/MS
+omnicompetence/M Noun: usually uncountable
+omnicompetent
+omnidirectional
+omnifarious
+omniferous
+omnific
+omnificence/M Noun: uncountable
+omnificent
+omnifocal
+omniform
+omnigenous
+omnilateral/Y
+omnilingual/SM
+omnipotence/SM
+omnipotent/YSM
+omnipresence/SM
+omnipresent/Y
+omniscience/MS
+omniscient/SMY
+omnisexual
+omnisexuality/M Noun: uncountable
+omnivore/SM
+omnivorous/YP
+omnivory/M Noun: uncountable
+Omokoroa/M
+Ompton/M
+Omri/M
+on-board
+on-frequency
+on-line
+on-off
+on-screen
+on-site
+on-street
+on/DYr
+onager/MS
+Onalaska/M
+onanism/M Noun: usually uncountable
+onanist/SMW
+onboard/G
+once-over
+once/r
+Onchan/M
+oncogene/SMW
+oncogenesis
+oncogenicity/SM
+oncogenomics
+oncolitic
+oncology/SM3Ww
+oncolytic/SM
+oncoming/SM
+oncovirus/SM
+ondansetron/M Noun: uncountable
+one-dimensional
+one-dimensionality
+one-directional
+one-downmanship
+one-downness
+one-downsmanship
+one-eared
+one-eyed
+one-half
+one-horse
+one-liner
+one-man
+one-off/S
+one-piece
+one-quarter
+one-sided/YP
+one-step
+one-third
+one-time
+one-to-one
+one-track
+one-upmanship
+one-way
+one/PMS
+Onecote/M
+OneDrive/M
+onefold
+Onega/M
+Onehouse/M
+Onehunga/M
+Oneida/SM
+oneiric
+oneirocritic/MS
+oneirocriticism/M
+oneirology/SM
+oneiromancy/SM
+Onekawa/M
+Oneonta/M
+Onepoto/M
+Onerahi/M
+onerous/PY
+oneself
+onesie/SM
+Onesimus/M
+Onewhero/M
+onewhile
+onfall/MS
+onflow/G
+Ongar/M
+onglaze
+Onglyza/M
+ongoing/SP
+onia/M
+Onibury/M
+Onich/M
+onion/MS
+onionskin/MS
+onium/SM
+Onkaparinga/M
+Onkelos/M
+online
+Onllwyn/M
+onlooker/SM
+onlooking
+only-begotten
+Onn/M
+Onno/M
+Ono/M
+onomastic
+onomatopoeia/MS
+onomatopoeic/Y
+onomatopoetic/OY
+Onondaga/SM
+onrush/GMS
+onset/SM
+onshore
+onside
+onslaught/SM
+Onslow/M
+onstage
+Ontarian/SM
+Ontario/M
+Onthank/M
+ontic
+onto
+ontogeneses
+ontogenesis/M
+ontogenetic/OY
+ontogenic/Y
+ontogeny/MS
+ontology/1wMS3
+onus/SM
+onward/SY
+onychophoran/SM
+onymous/Y
+onyx/SM
+oocyte/SM
+OODA (military) Initialism of Observe, Orient, Decide, and Act
+oodles
+oof/SMZ
+oofier
+oofiest
+oogamous/Y
+oogamy/M Noun: uncountable
+oogeneses
+oogenesis/M
+oögenetic
+oogenetic
+ooh/DSG
+oolite/MS
+oolitic/SM
+oology/3wM
+oolong/SM
+oompah/DGMS
+oomph/SMp
+Ooms/M
+OOo/M
+oophorectomy/SM
+oops/S
+Oort/M
+oosperm/MS
+Oosthuizen/M
+Oostrom/M
+ooze/DZSG
+oozy/T
+op/D
+op/FS
+Opa-locka/M
+opacification/SM
+opacify/RDGS
+opacity/SM
+opah/MS
+Opaheke/M
+opal/MS~
+opalescence/SM
+opalescent/Y
+opaline/SM
+opalise/SGD
+opalite
+opalize/SGD
+opanci/M
+opanka/SM
+opaque/SGDMPTY
+Opawa/M
+opcode/SM
+ope/SDG
+OPEC
+Opelika/M
+Opelousas/M
+open-air
+open-and-shut
+open-deartedness
+open-ended
+open-eyed
+open-faced
+open-handed/P
+open-heart/D
+open-minded/YP
+open-mouthed
+open-plan
+open-source/SGD
+open-top
+open/rdSJYP7
+OpenAI/M
+OpenBSD/M
+opencast
+OpenCL/M
+OpenDocument/M
+opened/AU
+OpenGL/M
+OpenOffice/M
+OpenPGP/M
+OpenSolaris/M
+OpenSSH/M
+OpenSSL/M
+openSUSE/M
+openwork/SM
+opera/nSvuMV
+operability/M Noun: usually uncountable
+operable
+operad/SM
+operadi
+operand/SM
+operandi
+operant/SY
+operate/DSGFN
+operatic/YS
+operation/MOo
+operationalise/SGD
+operationalism/SM
+operationalist/SM
+operationalize/SGD
+operatisation/S
+operatise/DGS
+operative/FPS
+operativeness/SM
+operatization/S
+operatize/DGS
+operator/FMS
+opercula/M
+opercular/SM
+operculate/SM
+operculum/M
+operetta/MS
+operon/SM
+operose/Y
+operoseness/M Noun: uncountable
+Ophelia/M
+Ophelian
+ophicleide/SM
+Ophidia
+ophidian/SM
+ophiolatrous
+ophiolatry/M Noun: uncountable
+ophiolite/SMW
+ophiologist/MS
+ophiology/Mw
+ophite/SMW
+Ophiuchus/M
+ophiuroid/SM
+Ophiuroidea Taxonomic class
+ophthalmia/SM
+ophthalmic/S
+ophthalmitis/M
+ophthalmology/3MWSw
+ophthalmoplegia/SMW
+ophthalmoscope/SM
+ophthalmoscopic/Y
+ophthalmoscopy/SM
+opiate/MGDS
+Öpik/M
+opine/GSD
+opinion/DMS
+opinionated/PY
+opinionative
+opioid/SM
+opisometer/MS
+opisthodont/SM
+opisthognathous
+opisthograph/SMW
+opisthopubic
+opisthorchiasis/M Noun: uncountable
+opisthosoma/MO
+opisthosomata/M
+opisthotic/SM
+opium/SM
+opodeldoc/M
+Opoho/M
+Opononi/M
+opopanax/SM
+Oporto/M
+opossum/SM
+Opotiki/M
+opp
+Oppenheimer/M
+oppidan/MS
+oppo/MS
+opponency/M
+opponent/SM
+opportune/IY
+opportuneness/M Noun: uncountable
+opportunism/SM
+opportunist/SMW1
+opportunity/MS
+opposable
+oppose/SNxXGDR
+opposite/YPS
+opposition/M3
+oppositive
+oppress/VuSvDG
+oppression/SM
+oppressive/P
+oppressor/SM
+opprobrious/Y
+opprobrium/SM
+oppugn/rSGDJ
+oppugnance/M
+oppugnancy/M
+oppugnant
+oppugnation/MS
+Oprah/M
+opsimath/MS
+opsimathy/M Noun: uncountable
+opsonic
+opsonin/M
+opt-out/SM
+opt/1xwGWSD
+optant/SM
+optative/MSY
+optic/SM
+opticals
+optician/MS
+optima/Oo
+optimality
+optimate/SM
+optime/SM
+optimé/SM
+optimific
+optimisable
+optimise/DM
+optimism/cMS
+optimist/SW1M
+optimistic/O
+optimity/M Noun: uncountable
+optimizable
+optimization/M
+optimized
+optimum/qs8Q-9SM
+option/GDSM
+optional/SM
+optionality/SM
+optoacoustic
+optoelectric
+optoelectronic/S
+optomechanical
+optometer/SM
+optometry/SMW3
+optophone/SM
+Opua/M
+opulence/MS
+opulent/Y
+Opunake/M
+opuntia/SM
+opus/SM
+or/6DMn
+oracle/MS
+oracular/Y
+oracularity/SM
+oracy/SM
+Orakei/M
+oral/SM3
+oralism/SM
+orality/SM
+Oran/M
+orang-outang/SM
+orang-utan/MS
+orang/MS~
+Oranga/M
+Orange/M
+orange/yMS
+orangeade/SM
+Orangeburg/M
+Orangeism/M
+Orangeman/M
+Orangemen/M
+orangery/SM
+Orangetown/M
+orangewood/M Noun: uncountable
+orangey Adjective
+orangutan/SM
+orangutang/SM
+Oranjestad/M
+orate/SGDn
+Oratia/M
+orator/Sw1MO
+oratorio/SM
+oratory/SM
+Oratory/SM
+orb/SMGD
+Orbán/M
+orbicular/Y
+orbicularity/M Noun: uncountable
+orbiculate
+Orbison/M
+Orbiston/M
+orbit/dMSr
+orbital/YSM
+orbitofrontal
+Orby/M
+orc/MS~
+orca/SM
+Orcadian/SM
+Orcas/M
+orcein/M Noun: usually uncountable
+orchard/3SMGJ
+Orchard/M
+Orchardhill/M
+Orchardleigh/M
+orchardman/M
+orchardmen/M
+orchestic/S
+Orcheston/M
+orchestra/SOoM
+orchestrate/DSGn
+orchestrator/SM
+orchestrina/SM
+orchestrion/SM
+orchid/SM
+orchidaceous
+orchidectomy/SM
+orchidist/SM
+orchidology/M Noun: uncountable
+orchiectomy/SM
+orchil/M
+orchilla/MS
+Orchy/M
+Orci/M
+orcinol/SM
+Orcop/M
+Orcus/M
+Ord/M
+ordain/rDGLS
+ordainable
+ordained/KU
+ordainment
+ordeal/SM
+order/Sp
+order/YESdM
+ordered/AU
+orderer/SM
+ordering/S
+orderliness/ES
+orderly/SM
+ordinaire/SM
+ordinal/SM
+ordinance/SM
+ordinand/SM
+ordinary/TSYP
+ordinate/FNS
+ordinate/M
+ordination/SM
+ordinator/SM
+ordinee/SM
+Ordiquhill/M
+ordnance/SM
+ordonnance/M
+Ordovician
+Ordsall/M
+ordure/SM
+Ore/M
+ore/MySo
+orebody/SM
+oregano/SM
+Oregon/M
+Oregonian/SM
+Oreille/M
+Orem/M
+Oremus/M
+Oren/M
+Orencia/M
+Oreo/M
+Orere/M
+Orestes/M
+Orewa/M
+orfevrerie
+Orford/M
+org-man
+org/SM
+organ/W3q-Q81s9t+SM
+Organa/M
+organdie/MS
+organellar
+organelle/SM
+organic/S
+organicalness/M Noun: uncountable
+organicism/SM
+organicist/SMW
+organicity/M Noun: usually uncountable
+organify/SGDN
+organigram/SM
+organisation/OoM
+organise/EnADGS
+organiser/ASM
+organism/1
+organism/OMWS^
+organist/SMW
+organistrum/SM
+organistship/SM
+organization/oM
+organizational/S
+organize/AnSEGD
+organizer/AM
+organoactinide/SM
+organochlorine/SM
+organogeneses
+organogenesis/M
+organogram/SM
+organoid/SM
+organolanthanide
+organoleptic
+organology/SM
+organometallic/SM
+organon/SM
+organonymy/M Noun: uncountable
+organophosphate/SM
+organophosphorous
+organophosphorus
+organosedimentary
+organosol/SM
+organosulphur/W
+organotherapy/SM
+organza/MS
+organzine/SM
+Orgar/M
+Orgarswick/M
+orgasm/DGMSW1
+orgastic/Y
+orgeat/SM
+orgiast/MS
+orgiastic/Y
+orgone/SM
+orgonite/M Noun: uncountable
+Orgreave/M
+orgulous/Y
+orgy/MS
+oribi/SM
+Oric/M
+orichalcum/M Noun: uncountable
+oriel/MS
+orient/ESADnG
+orient/M
+orientable
+oriental/SY3
+Orientale/M
+orientalise/SGD
+orientalism/SM
+Orientalist/SMW
+orientality/M Noun: uncountable
+orientalize/SGD
+orientate/SDAEG
+orientation/EMA
+orientational/Y
+orientator/SM
+orienteer/SDG
+orifice/MS
+oriflamme/SM
+orig
+origami/MS
+origan/M Noun: uncountable
+origanum/SM
+Origen/M
+origin/MSoVv
+original/SM
+originalism/M Noun: usually uncountable
+originality/MS
+originate/SDGn
+originator/MS
+Orillia/M
+Orimulsion
+Orin/M
+orinasal
+Orinda/M
+Orinoco/M
+oriole/SM
+Orion/M
+Orionid/SM
+Orionis
+orismology/wWM
+orison/MS
+oristic
+oritavancin/M Noun: uncountable
+Oriya/M
+Orkney/MS
+Orkut/M
+Orland/M
+Orlando/M
+orle/SM
+Orleans/M
+Orlestone/M
+Orleton/M
+Orlin/M
+Orlingbury/M
+orlop/SM
+Ormerod/M
+Ormesby/M
+Ormiston/M
+ormolu/SM
+Ormond/M
+Ormonde/M
+Ormsby-Gore/M
+Ormsby/M
+Ormside/M
+Ormskirk/M
+ornament/nMDGSo
+ornamental/SM3
+ornamentalism/M Noun: uncountable
+ornate/YPSGD
+orneriness/M Noun: usually uncountable
+orniscopy/M
+ornithic
+ornithichnite/SM
+ornithine/SM
+Ornithischia Taxonomic order
+ornithischian/SM
+ornithochore/MS
+ornithochoric/Y
+ornithochorous
+ornithochory/M
+ornithoid/SM
+ornithology/3wSM
+ornithomancy/M
+ornithomimid/SM
+ornithomimosaur/SM
+Ornithomimosauria Taxonomic clade
+ornithomorphic
+ornithophilous
+ornithophily/M Noun: uncountable
+ornithorhynchus/M
+ornithoscopy/M
+Oro/M
+orogen/SM
+orogenesis
+orogenetic
+orogeny/SMW
+orographic/MOY
+orography/SM
+oroide/SM
+orology/M3w
+Oromahoe/M
+Orono/M
+Oronsay/M
+oropharyngeal/SM
+oropharynges
+oropharynx/SM
+Orosirian
+orotate/SM
+orotund Adjective
+orotundity/MS
+Oroville/M
+orphan/SMd
+orphanage/MS
+orphanhood/SM
+orphanism/M Noun: usually uncountable
+orphanize/DGS
+Orphean
+Orpheus/M
+Orphic/OY
+Orphir/M
+Orphism/M
+orphrey/MS
+orpiment/SM
+Orpington/MS
+Orr/M
+orrery/SM
+Orrin/M
+orris/SM
+Orsay/M
+Orsett/M
+Orsini/M
+Orson/M
+Orston/M
+Ortega/M
+Ortelius/M
+orthal
+orthicon/SM
+Ortho/M
+orthocephalic
+orthochromatic
+orthoclase/SM
+orthocone/SMW
+Orthocoronavirinae Taxonomic subfamily
+orthodontia/M Noun: uncountable
+orthodontic/S
+orthodontist/SM
+Orthodox
+orthodox/S
+orthodox/ZUY
+orthodoxy/SM
+orthodromic
+orthoepist/SM
+orthoepy/SMW
+orthogeneses
+orthogenesis/M
+orthogenesist/M
+orthogenetic/Y
+orthogeosyncline/SM
+orthognathous
+orthogonal/Q8q-Y
+orthogonality/M Noun: uncountable
+orthogonalization/SM
+orthographist/SM
+orthography/w1SMW
+orthokinesis/M Noun: uncountable
+orthokinetic
+orthologous/Y
+orthology/Mw
+orthomolecular
+orthomorphic
+orthomorphism/SM
+orthomyxovirus/SM
+orthonormal
+orthonormality/SM
+orthonormalization/SM
+orthopaedic/SYZ
+orthopaedist/SM
+orthophosphate/SM
+orthopod/SM
+orthoprax/Z
+orthopraxis/M Noun: uncountable
+orthopsychiatry/3W
+orthopterous
+orthoptic/SM
+orthopyroxene/SM
+orthoquartzite/SM
+orthorhombic
+orthostatic
+orthotectonic
+orthotic/SM
+orthotist/SM
+orthotone/MS
+Ortins/M
+Ortiz/M
+Ortolà/M
+ortolan/SM
+Ortoli/M
+Orton/M
+Oruaiti/M
+Oruro/M
+Orus/M
+Orvieto/M
+Orville/M
+Orwell/M
+Orwellian
+Orwellianism/SM
+Orwellism/M Noun: uncountable
+oryzomyine/SM
+Oryzomys
+OS/SM
+Osage/SM
+Osaka/M
+Osama/M
+Osawa/M
+Osbaldeston/M
+Osbaldwick/M
+Osbaston/M
+Osbert/M
+Osborn/M
+Osborne/M
+Osbournby/M
+Osbourne/MS
+Oscan/M
+Óscar/M
+Oscar/MS
+Osceola/M
+oscillate/ynSDG
+oscillator/SM
+oscillograph/MS
+oscilloscope/SM
+oscine/MS
+oscinine
+oscitation/MS
+oscula/M
+osculant
+oscular
+osculate/nDGS
+osculatory/SM
+osculum/M
+oseltamivir/M Noun: uncountable
+OSes
+Osgathorpe/M
+OSGi
+Osgodby/M
+Osgood/M
+OSHA
+Oshawa/M
+Oshii/M
+Oshkosh/M
+Osho/M
+Oshtemo/M
+Osiander/M
+osier/MS
+Osirian
+Osiris/M
+Oskaloosa/M
+Oskar/M
+Osleston/M
+Oslo/M
+Osmanli/MS
+Osmaston/M
+osmatic
+Osmington/M
+osmium/SM
+osmocene
+osmolarity/SM
+Osmond/M
+osmoregulation/SM
+osmoregulator/SMZ
+osmoses
+osmosis/M
+Osmotherley/M
+osmotic/Y
+osmotroph/SMW
+osmotrophy/M Noun: uncountable
+Osolo/M
+osprey/SM
+Ospringe/M
+OSS
+Ossanna/M
+Ossendyke/M
+osseous/Y
+Ossete/SM
+Ossetia/MW
+Ossetian/SM
+Ossett/M
+ossia
+Ossian/MW
+ossicle/SM
+ossicular
+ossiculectomy/SM
+ossiculum/M
+Ossie/MS
+ossifrage/MS
+ossify/DnGSW
+Ossington/M
+Ossining/M
+ossuary/MS
+Osteichthyes/M
+Ostend/M
+ostensible/Y
+ostentation/SM
+ostentatious/YP
+osteoarthritic/SM
+osteoarthritides
+osteoarthritis/M
+osteoblast/SMW
+osteocalcin/SM
+osteoclast/SMW
+osteodentine/SM
+osteoderm/SMO
+osteodontokeratic
+osteodystrophy/SMW
+osteology/M noun: usually uncountable
+osteomyelitis/M noun: usually uncountable
+osteopath/WZSM
+osteopathy/MS
+osteoplasty/SM
+osteoporoses
+osteoporosis/M
+osteoporotic
+osteosarcoma/SM
+osteosarcomata/M
+osteospermum/SM
+osteotome/SM
+osteotomy/SM
+Osterley/M
+ostia/My
+ostinati/M
+ostinato/SM
+ostiole/SM
+ostiolum
+ostium/M
+ostler/SM
+Ostlere/M
+ostomy/SM
+Ostpolitik/M
+ostracean/SM
+ostracion
+ostracise/DSMGRN
+ostracism/MS
+ostracize/SGDNr
+ostracod/SM
+ostracode/SM
+Ostrander/M
+Ostrava/M
+ostrich/MS
+Ostrogoth/SMW
+Ostrovsky/M
+Ostrowski/M
+Osvaldo/M
+Oswald/M
+Oswaldkirk/M
+Oswalt/M
+Oswego/M
+Osweiler/M
+Oswestry/M
+Oswiu/M
+OSX/M
+Osyth/M
+OT/SM
+Ota/M
+Otago/M
+Otahuhu/M
+Otaika/M
+Otaki/M
+Otakou/M
+Otangarei/M
+Ōtara/M
+Otara/M
+Otatara/M
+Otautau/M
+OTB
+OTC/M
+Oteha/M
+Otero/M
+Otford/M
+Otham/M
+Othello/M
+other/SPMd
+otherwise
+Otherworld/SM
+otherworldism/M
+otherworldliness
+otherworldly
+Othery/M
+otic
+otiose/Y
+otiosity/SM
+Otiria/M
+Otis/M
+otitis
+Otlet/M
+Otley/M
+otocyst/SM
+Otoe/M
+OTOH
+otolaryngology/M3Ww
+otolith/SMW
+otology/3WwM
+Otomanguean/M3
+Otomi/M
+Otorohanga/M
+otoscope/SMW1
+OTP/SM
+Otranto/M
+Otsego/M
+OTT
+Ottaviano/M
+Ottawa/M
+Ottaway/M
+Otté/M
+Otten/M
+Otter/M
+otter/MS
+Otterbourne/M
+Otterburn/M
+Otterden/M
+Otterford/M
+Otterham/M
+Otterhampton/M
+Otterington/M
+Ottersey/M
+Otterton/M
+Ottery/M
+Otto/M
+ottocento
+ottoman/SM
+Ottoman/SM
+Ottringham/M
+Ottumwa/M
+Otumoetai/M
+Otway/M
+Ouachita/M
+Ouagadougou/M
+oubliette/SM
+ouch/SM
+oud/SM
+Oudenarde/M
+Oudh/M
+Ouen/M
+ought
+Oughterside/M
+oughtn't
+Ouija/M
+Oulston/M
+Oulton/M
+ounce/SM
+Oundle/M
+Our/M
+our/S
+Ouranic/Y
+ouranoscopos
+ouranoscopy
+ourself
+ourselves
+Ousby/M
+Ousden/M
+Ouseburn/M
+ousel/SM
+Ouseley/M
+oust/RGDS
+out-group/SMr
+out-half
+out-of-court
+out-of-date
+out-of-phase
+out-of-pocket
+out-take/SM
+out-tray/SM
+Out/M
+out/MDSGJR
+Outagamie/M
+outage/SM
+outang/S
+Outaouais/M
+outargue/SGD
+outbacker/SM
+outbalance
+outbid/G
+outblaze/DGS
+outboard/SM
+outboast/SGD
+outborn
+outbound/S
+outbox/SGD
+outbrave/DGS
+outbred
+outbreed/SGR
+outburst/SM
+outcall/SM
+outcast/SMG
+outclass/DGS
+outcome/SM
+outcompete/SGD
+outcraft
+outcricket
+outcrop/J
+outcross/SGD
+outcry/GMS
+outdance/SGD
+outdare/SGD
+outdate/SGD
+outdazzle/SGD
+outdistance/DGS
+outdo/GR
+outdoor/SGD
+outdoorsman/M
+outdoorsmen/M
+outdrank
+outdraw/G
+outdress/SGD
+outdrink/SG
+outdrive/SG
+outdriven
+outdrove
+outdrunk
+outdwelling
+outercourse/M Noun: uncountable
+outermost
+outerwear/SM
+outfall/S
+outfight/SG
+outfit/GDR
+outflew
+outflow/M
+outflown
+outflung
+outflux/SGDM
+outfly/SG
+outfool/SGD
+outfoot/SGD
+outfox/SGD
+outgas/SGD
+outgeneral/SGD
+outgo/J
+outgoingness
+outgrip
+outgross/SGD
+outgrow
+outguess/SGD
+outgun/SGD
+outhouse
+outing/M
+outjump/DGS
+outland/SM
+outlandish/PY
+outlast/SGD
+outlaw/DyG
+Outlawries/M
+outlawry/SM
+outlay/SM
+outlet/SM
+outlie/SGDr
+outline/SM
+outlive/S
+outlook/M
+outman/SGD
+outmanoeuvre/SGD
+outmigration
+outmode/SGD
+outmost
+outmuscle/SGD
+outness/M
+outnoise/SGD
+outnumber
+outoffice
+outpace/SGD
+outparcel/SM
+outperformance
+outpoint/DGS
+outpost
+outpouring/SM
+outproduce/SGD
+output/MG
+outrageous/PY
+Outram/M
+outrange/DGS
+outrank/SG
+outré
+outridden
+outride/SGR
+outright/Y
+outrightness/M
+outro/SM
+outrode
+outsail/SGD
+Outseats/M
+outshoot
+outshot
+outside/R
+outsiderness
+outsize/D
+outskirter
+outskirting
+outskirts
+outsleep/SG
+outslept
+outslug/SGD
+outsmell/SGD
+outsmile/SGD
+outsole/S
+outsource/JR
+outsparkle/SGD
+outspeak/SG
+outspeaker
+outspeed
+outspoke
+outspoken/PY
+outstanding/Y
+outstare/SGD
+outwalk/DGS
+outward/PY
+outwash
+Outwell/M
+outwent
+Outwich/M
+outwit/G
+outwith
+Outwood/MS
+outworker/SM
+outworld/R
+Ouyang/M
+ouzel/SM
+ouzo/MS
+ova/yoMn
+oval/PSM~
+ovalbumin/SM
+ovalescent
+ovaliform
+ovality/SM
+ovarian
+ovary/MS
+ovate/SM
+Ovejero/M
+oven-ready
+oven/SM
+ovenbird/SM
+ovenproof
+over-bright
+over-curiosity
+over-curious
+over-delicacy
+over-delicate
+over-emoting
+over-large
+over-long
+over-many
+Over-Monnow/M
+over-much
+over-nice
+over-niceness
+over-nicety
+over-particular
+over-ridden
+over-ride/GS
+over-sentimental
+over-simplistic
+over-talkative/P
+over-the-counter
+over-the-top
+Over/M
+over/MSY
+overabundance/SM
+overabundant/Y
+overachieve/GrLS
+overactive
+overactivity
+overage
+overaggressive
+overambitious
+overanalyse/SGD
+overanalysis
+overanxiety
+overanxious/Y
+overarch/SGD
+overarm
+overate
+overattentive
+overawe/DGS
+overbake/SGD
+overbalance
+overballast/SGD
+overbank/SGD
+overbear/GSk
+overbearing/P
+overbed
+overbid/G
+overbite/M
+overblouse/MS
+Overblow/M
+overblown
+overboard
+overbold/YP
+overbook/G
+overboot/SM
+overbore
+overborne
+overbought
+overbred
+overbreed/S
+overbridge/SM
+overbuild/G
+overburden/k
+Overbury/M
+overbuy/SG
+overcapacity/SM
+overcapitalise/SGDN
+overcapitalize/SGDN
+overcareful
+overcast
+overcaution
+overcautious/YP
+overcerebral
+overcheck/SM
+Overchurch/M
+overclass/SM
+overclock/DGSr
+overcloud/SG
+overcome/G
+overcommit/SM
+overcompensatingly
+overcompensatory
+overconscientious
+overcooled
+overcorrection/SM
+overcredulous
+overcritical/Y
+Overdale/M
+overdecorate
+overdetermined
+overdiagnosis
+overdispersal
+overdispersed
+overdispersion/SM
+overdo/Gr
+overdominance
+overdominant
+overdoor/SM
+overdosage/SM
+overdot/SGD
+overdraft's
+overdramatic
+overdramatise/SGD
+overdramatize/SGD
+overdrank
+overdraw/G
+overdrawer
+overdress/G
+overdrink/S
+overdrive/MS
+overdrunk
+overdry/SGD
+overdue
+overeager/Y
+overeaters
+overedit
+overeducate
+overemotional
+overemphasize/D
+overemployment
+overenthusiasm
+overenthusiastic/Y
+overerupt/D
+overeruption
+overest
+overesteem/SGD
+overexact
+overexcitable
+overexcite/S
+overexcitement
+overexercise/SGD
+overexpansion
+overexploit/SGD
+overexploitation
+overexpress/SGD
+overexpression/SM
+overextend/DGNS
+overfall
+overfamiliar
+overfamiliarity
+overfeed/SG
+overfill/G
+overfish/GD
+overflight/S
+overflow/GD
+overfond
+overfur
+overgarment/SM
+overgeneralise/SGDN
+overgeneralize/SGDN
+overgenerosity
+overgenerous/Y
+overget/SG
+overgild/SGD
+overglance/SGD
+overglaze
+overgot
+overgraze/DGS
+overground
+overgrow
+overhair
+overhand/GSM
+overhang/G
+overhard
+overharvest/SGD
+overhasty
+overhaul/J
+overhauler
+overhead/S
+overhearer/SM
+overheat
+overhit/SG
+Overholt/M
+overhunting
+overhype/D
+Overijssel/M
+overinsurance/M Noun: uncountable
+overinsured
+overinvest/SGD
+overjoyed
+overkeen
+overkill/DGMS
+Overland/M
+overland/SGDR
+overlarge
+overlay/R
+overleaf
+overleap/SD
+overleapt
+overleveraged
+overlier
+overline/SGD
+overload/GM
+overlock/SGDR
+overlong
+overlooker/SM
+overlordship
+overman/SDG
+overmantel/SM
+overmatching
+overmedicate/N
+overmighty
+overmuch
+overnight/DSGR
+overnumber/Sd
+overnutrition/M Noun: uncountable
+overoptimistic
+overorganise
+overorganize
+overpack/SD
+overpaint/SGD
+overparent/G
+overparted
+overpass/M
+overpay
+overpersuasion
+overpitch/DGS
+overplus/MS
+overpopulous
+overpower/kS
+overpowering
+overpraise/DGS
+overprecise
+overprescribe/SGDN
+overpressure
+overprocess
+overpromote
+overproof
+overrange
+overrash
+overreacher/SM
+overridable
+override/G7r
+overripe
+overripened
+overripeness
+overrisen
+overruff/SGD
+overruler/SM
+overrunner/SM
+oversail/SGD
+oversale
+oversalt/SGD
+oversample/SGDM
+oversaturate/D
+oversaw
+overscan
+Overseal/M
+oversee
+overseership
+overself
+oversensible
+oversensitive
+oversensitiveness
+oversensitivity
+overset/SG
+overshadow/SGD
+overshare/SGDR
+overshoe/SM
+overshot
+overside
+oversight/SGD
+oversimple
+oversimplification/M
+oversize
+overskirt/SM
+oversleep/GS
+oversleeve/S
+oversolicitous/Y
+oversolicitude
+oversoul/SM
+oversow/SGD
+oversown
+overspan/SGD
+oversparred
+overspecialise/nGDS
+overspecialize/SGDn
+overspecify/SGDNW
+overspill/SM
+overspin/SGM
+overspinner
+overspray/SM
+overspun
+overstaff/GS
+oversteer/SGD
+overstimulation/SM
+Overstone/M
+overstorey/SM
+overstrain/MS
+Overstrand/M
+Overstreet/M
+overstress/SGD
+overstretch/SGD
+overstrict
+overstudy/DGS
+oversubtle
+overswell/DGS
+overt/Y
+overtake
+overtask/DGS
+overtax/SGD
+overtedious
+overthink/SG
+Overthorpe/M
+overthought
+overthrow/SG
+overthrust/G
+overtighten/Sd
+overtime/SM
+overtness/M Noun: uncountable
+Overton/M
+overtone/SM
+overtop/SGD
+Overtown-Gowkthrapple/M
+Overtown/M
+overtrain/DGS
+overtreatment/SM
+overtrick/SM
+overtrump/DGS
+overture/SM
+overtype/G
+overutilisation
+overutilization
+overvaluation
+overvalue
+overview/DG
+overwater/d
+overwear/M Noun: uncountable
+overweening/Y
+overwhelm/k
+overwhelmingness/M Noun: uncountable
+overwind/G
+overworld/SM
+overwound
+overwrite/SG
+Overy/M
+Oviatt/M
+ovibovine/SM
+ovicide/SM
+Ovid/M
+Ovidian
+oviduct/SM
+Oviedo/M
+oviform
+ovine
+Oving/M
+Ovingdean/M
+Ovingham/M
+Ovington/M
+oviparity/M Noun: uncountable
+oviparous
+oviposit/Sd
+ovipositor/SM
+oviraptorid/SM
+oviraptorosaur/SM
+Ovis Taxonomic genus
+ovoid/SM
+ovoli/M
+ovolo/M
+ovotestes
+ovotestis/M
+ovoviviparity/M Noun: uncountable
+ovoviviparous/Y
+ovular/SM
+ovulate/GySD
+ovule/SMn
+ovum/SM
+ow/GD
+Owain/M
+Owairaka/M
+Owaka/M
+Owasso/M
+Owatonna/M
+owe/S
+Owego/M
+Owen/MS
+Owenism/M Noun: uncountable
+Owenite/MS
+Owensboro/M
+Owermoigne/M
+Owersby/M
+Owhiro/M
+owl/MS
+owlery/MS
+owlet/MS
+owlish/YP
+Owlpen/M
+Owmby/M
+own-brand
+own/GESD
+Ownby/M
+owner-occupier/M
+owner/SMp
+ownership/MS
+Owosso/M
+Owslebury/M
+Owsley/M
+Owsthorpe/M
+Owston/M
+Owthorne/M
+Owthorpe/M
+Owyhee/M
+ox/M
+oxalacetate/SM
+oxalate/SM
+oxalic
+oxalis/MS
+oxaloacetate/SM
+oxaloacetic
+Oxborough/M
+oxbow/MS
+Oxbridge/M
+oxcarbazepine/M Noun: uncountable
+oxcart/SM
+Oxcombe/M
+oxen/M
+Oxendon/M
+Oxenhall/M
+Oxenham/M
+Oxenhope/M
+Oxenton/M
+oxer/SM
+Oxfam/M
+Oxford/MS
+Oxfordian/SM
+Oxfordshire/M
+oxherd/S
+Oxhey/M
+oxhide/M
+Oxhill/M
+oxidant/SM
+oxidase/SM
+oxidate/DGS
+oxidation/SM
+oxidative/Y
+oxide/Q-nSMs
+oxidisable
+oxidise/JSGDN
+oxidizable
+oxidize/SGDnR
+oxidoreductase/SM
+oxime/SM
+oximeter/SM
+oximetry/M Noun: uncountable
+oxisol/SM
+oxlip/SM
+Oxnam/M
+Oxnard/M
+Oxnead/M
+Oxonia
+Oxonian/SM
+oxonium/SM
+Oxordshire/M
+oxpecker/SM
+Oxspring/M
+OXT
+oxt
+oxtail/MS
+Oxted/M
+oxter/MS
+Oxton/M
+Oxwich/M
+Oxwick/M
+oxyacetylene/SM
+oxyacid/MS
+oxyanion/SM
+oxybutynin/M Noun: uncountable
+oxycodone/M Noun: uncountable
+oxygen/SMW
+oxygenate/DMGSn
+oxygenise/DGS
+oxygenize/DGS
+oxygenous
+oxyhaemoglobin/SM
+oxyhexaster/M
+oxyhydroxide/SM
+oxymetazoline/M Noun: uncountable
+oxymoron/M1
+oxysulphide/SM
+oxytocic/SM
+oxytocin/SM
+oxytone/SM
+oy
+Oyne/M
+Oyster/M
+oyster/MSd
+oystercatcher/SM
+Oystermouth/M
+oz
+Ozark/MS
+Ozaukee/M
+Ozleworth/M
+ozone-friendly
+ozone/M Noun: uncountable
+ozonic
+ozonize/DGS
+Ozzie/MS
+p-adic
+p-type
+p.a.
+p.m.
+P.O.
+p/AYFI
+pa/Mo
+Paarl/M
+Pablo/M
+Pabst/M
+pabulum/SM
+PAC/SM
+paca/MS
+pace/DRMSG
+pacemaker/SM
+paceman/M
+pacemen/M
+pacesetter/SM
+pacesetting
+pacey
+Pacey/M
+pacha/MS
+pachalic/MS
+pachanga/M Noun: uncountable
+Pacheco/M
+Pacher/M
+pachinko/SM
+pachisi/M
+pachyderm/MSO
+pachydermatous
+pachytene/SM
+pacific/4
+Pacific/M
+Pacifica/M
+pacificatory Adjective
+pacifism/SM
+pacifistic
+pacify/nD3RW1SG
+Pacino/M
+pack/GADSU
+pack/MR
+packable
+package/JRGDMS
+packaging/M
+Packard/M
+packet/dSM
+packhorse/SM
+packing/MS
+packinghouse/SM
+Packington/M
+packman/M
+packmen/M
+packsaddle/SM
+packthread/M
+Packwood/M
+Pacquiao/M
+pact/IMS
+pad/SZJGMD
+padauk/M Noun: usually uncountable
+Padbury/M
+Paddie/M
+padding/M
+Paddington/M
+paddle/DRSMG
+paddlefish/SM
+Paddlesworth/M
+Paddock/M
+paddock/SGDM
+paddy/MS
+paddymelon/MS
+paddywhack/MS
+Padé/M
+pademelon/MS
+Padgett/M
+Padiham/M
+Padilla/M
+padishah/MS
+Padlesworth/M
+padlock/GDMS
+Padma/M
+Padmé/M
+padouk/M Noun: uncountable
+Padraig/M
+padre/SM
+Padrewski/M
+Padside/M
+Padstow/M
+Padua/M
+paduasoy/SM
+Paducah/M
+Padukone/M
+Padworth/M
+paean/MS
+paediatric/S
+paediatrician/SM
+paedo/SM
+paedophile/SMW
+paedophilia/M
+paedophiliac/SM
+Paekakariki/M
+paella/MS
+paeony/SM
+Paerata/M
+Paeroa/M
+Paesler/M
+pagan/MS~
+pagandom/M
+Paganini/M
+paganism/SM
+paganize/DGS
+page/SM6RDG
+pageable
+pageant/SM
+pageantry/MS
+pageboy/SM
+pagehood/M Noun: uncountable
+pageship/MS
+Paget/M
+Pagham/M
+paginal Adjective
+paginary Adjective
+paginate/DSGn
+Paglesham/M
+Pagnell/M
+Pago/M
+pagoda/SM
+pagri/SM
+pagurian
+Pahaji/M
+Pahiatua/M
+Pahlavi/M
+Pahurehure/M
+Paible/M
+paid-up
+paid/KfUcA
+Paige/M
+Paignton/M
+Paihia/M
+pail/S6M
+pailful/MS
+Pailton/M
+pain/DMpSjG6
+Paine/M
+Painesville/M
+painful/TP
+painkiller/SM
+painkilling Adjective
+painless/YP
+Painscastle/M
+painstaking/Y
+Painswick/M
+paint/DRSGMJZ
+paintball/SGDMR
+paintbox/MS
+paintbrush/MS
+painterliness/M Noun: uncountable
+painterly Adjective
+painting/M
+paintwork/SM
+pair/ADMSG
+paired/UI
+pairing/SM
+pairwise
+Paisley/MS
+paisley/SM
+Pak/M
+Pakaraka/M
+Pakefield/M
+Pakenham/M
+Pakhtunkhwa/M Khyber Pakhtunkhwa (city Pakistan)
+Paki/SM
+Pakiri/M
+Pakistan/M
+Pakistani/SM
+pakkawood/M
+pakora/SM
+Pakotai/M
+Pakuranga/M
+pal/DGSM~
+PAL/M
+Palace/M
+palace/SM
+paladin/SM
+Palaearctic
+palaeoanthropology/w3M
+palaeobiogeographic
+palaeobiology/3wM
+palaeobotany/w3M
+Palaeocene/M
+palaeoclimatology/w3M
+palaeocortex
+palaeocortical
+palaeocrystic
+palaeocurrent/SM
+palaeodemography/MW
+palaeodesert/M
+palaeoecology/SMw13
+palaeoeconomy/SMW
+palaeoentomology/Mw3
+palaeoenvironment/SMO
+palaeoequator/SM
+Palaeogene/M Noun: uncountable
+palaeogeographer/SM
+palaeogeography/MWw1
+palaeographer/SM
+palaeography/MSw1W
+palaeogravity/M
+palaeoherpetology/M
+palaeohydrology/M Noun: uncountable
+palaeoichnology/M Noun: uncountable
+Palaeolithic
+palaeolithical
+palaeolithologic
+palaeomagnetic/Y
+palaeomagnetism/M Noun: uncountable
+palaeontology/wMS3
+palaeopallium/SM
+palaeopathology/w3SM
+palaeosol/SMW
+Palaeozoic
+palaeozoological
+palaeozoologist/SM
+Palagi/M
+palagonite/SM
+palanquin/SM
+palatability/SM
+palatable/P
+palatal/QSM
+palatalise/SGDN
+palatalism/M
+palatality/SM
+palatalize/SGDN
+palate/SgoM
+palatial/Y
+palatinate/SM
+Palatine/M
+palatine/SM
+Palatka/M
+palatoquadrate/SM
+Palau/M
+Palava
+palaver/dSM
+palazzi/M
+palazzo/SM
+pale/DTSYGPM
+palea/M
+paleae/M
+paleface/SM
+Paleoarchean Of a geologic era
+Paleocene
+paleocrystic
+Paleoproterozoic
+Paleozoic Of a geologic era
+paleozoological
+paler/I
+Palermo/M
+Palestine/M
+Palestinian/SM
+Palestrina/M
+palette/MS
+Paley/M
+palfrey/SM
+Palgrave/M
+Pali/M
+Palikir/M
+palimpsest/SM
+Palin/M
+palindrome/MS
+palindromic/OY
+paling/SM
+Palisa/M
+palisade/MGDS
+Palisades/M
+pall-bearers
+pall/MS
+palladia/M
+Palladian/SM
+Palladianism/M Noun: uncountable
+Palladio/M
+palladium/M
+palladocene
+Pallas/M
+pallbearer/MS
+Pallene/M
+pallet/MS
+palletise/SGDn
+palletize/SGDn
+palliate/VGvDnS
+palliative/SM
+pallid/PY
+pallidotomy/SM
+pallidum/M
+Palling/M
+pallor/MS
+palm/DMG3SZ
+Palm/M
+Palma/M
+palmar
+palmate/SM
+Palmdale/M
+Palme/M
+Palmer/MS
+palmer/SMZ
+Palmerston/M
+Palmerstonian
+Palmerstonianism/M
+Palmerstonism/M
+palmette/SM
+Palmetto/M
+palmetto/MS
+Palmgren/M
+palmist/SMy
+palmistry/SM
+palmitate/SM
+palmitic
+palmitoleic
+Palmolive/M
+Palms/M
+palmtop/SM
+palmy/3T
+Palmyra/M
+Palo/M
+Paloma/M
+Palomar/M
+Palomares/M
+palomino/SM
+Palos/M
+paloverde/MS
+palp/SMO
+palpability/M Noun: usually uncountable
+palpable/YI
+palpably/I
+palpate/SGDn
+Palpatine/M
+palpebral/SM
+palpi/M
+palpitate/nGSDk
+palpus/M
+palsgrave/MS
+palstave/MS
+palsy/DMSG
+palter/Sdr
+paltered
+paltering
+Paltrow/M
+paltry/TP
+Paltz/M
+paludal
+palynology/3wM
+Pam/M
+Pamapuria/M
+Pamber/M
+pamby
+Pamela/M
+Pamir
+Pamlico/M
+Pampa/M
+pampas/M
+pamper/dSr
+pampero/MS
+Pamphill/M
+pamphlet/SM
+pamphleteer/DGSM
+Pampisford/M
+pampsychistic
+pan-European
+pan/WGSDM
+panacea/MS
+panache/MS
+panada/M
+Panaji/M
+Panama/M
+panama/SM
+Panamanian/SM
+Panarella/M
+Panasonic/M
+panatella/MS
+panax
+Panbride/M
+pancake/SDMG
+pancetta/M Noun: usually uncountable
+panchakarma/SM
+panchayat/MS
+Panchen
+panchromatic/Y
+panchronic
+pancosmism/M
+Pancras/M
+Pancrasweek/M
+Pancraswyke/M
+pancratic
+pancratium/MS
+pancreas/SM
+pancreatic
+pancreatin/M
+pancreatitis
+panda/SM
+pandan/SM
+pandanus/SM
+Pandean/M
+pandect/MS
+pandemic/SM
+pandemonium/MS
+pander/Sdr
+Pandera/M
+pandit/MS
+Pandora/M
+pandora/MS
+pandore/MS
+Pandya/SM
+pane/MDS
+panegyric/MSO
+panegyrise/DGS
+panegyrist/MS
+panegyrize/DGS
+panel/SGDM
+panelling/SM
+panellise/SnDG
+panellist/MS
+panellize/SGDn
+panentheism/M Noun: uncountable
+panentheistic/OY
+Panfield/M
+panful/MS
+pang/SM
+panga/MS
+Pangaea/M
+Pangbourne/M
+pangender
+pangendered
+Pangloss/MS
+Panglossian
+pangolin/SM
+Panguru/M
+panhandle/SGDR
+panic-stricken
+panic/GMSZD
+panicky/T
+panicle/SD
+Paniker/M
+panini/SM
+panino/M
+Panis/M
+panjandrum/SM
+panko/M Noun: uncountable
+panky
+panlectal
+Panmunjom/M
+Panmure/M
+pannage/M
+Pannal/M
+panne/M
+pannier/MS
+pannikin/MS
+Panofsky/M
+Panola/M
+panoply/DSM
+panoptic/OY
+panopticon/SM
+panorama/MS
+panoramic/SM
+Panorpida Taxonomic superorder
+Panos/M
+panpipes
+panpsychic Adjective
+panpsychism/M Noun: usually uncountable
+panpsychist/SMW
+panromantic/SM
+pansexual/SM
+pansexuality/M Noun: usually uncountable
+panspermia/M Noun: uncountable
+panstick/SM
+pansy/MS
+Pant/M
+pant/SDG
+Pantaloon/M
+pantaloon/MS
+pantechnicon/SM
+Panteg/M
+pantheism/MS
+pantheist/SMW
+pantheistical/Y
+panthenol/SM
+pantheology/SM3
+pantheon/SMW
+Panther/M
+panther/SM
+pantheress/SM
+pantherine/SM
+pantherish/Y
+panties
+pantihose/M Noun: uncountable
+pantile/SDGM
+pantiliner/SM
+panto/SM
+Pantocrator/M
+pantograph/SM
+pantographic/OY
+pantologic
+pantology/M Noun: uncountable
+pantomime/3SMDG
+pantomimic/OY
+pantomorphic
+Panton/M
+pantoprazole/M Noun: uncountable
+pantoscopic
+pantothenic
+pantoum/SM
+pantry/MS
+pantryman/M
+pantrymen/M
+Panxworth/M
+Panza/M
+panzer/SM
+Pao/M
+Paola/M
+Paoli/M
+Paolo/M
+pap/OoM3r
+Papa/M
+papa/MS
+papacy/MS
+Papadopoulos/M
+papain/M
+Papaioannou/M
+Papaioea/M
+Papakowhai/M
+Papakura/M
+papalism/M Noun: uncountable
+papalist/MS
+papalize/DGS
+Papamoa/M
+Papanui/M
+Papapa/M
+Paparangi/M
+paparazzi/M
+paparazzo/M
+Paparimu/M
+Paparoa/M
+Paparore/M
+Papatoetoe/M
+papaveraceous
+papaverous
+papaw/MS
+papaya/SM
+Pape/M
+Papeete/M
+paper-clip/SM
+paper/2pdrZS
+paperback/MS
+paperbark/SM
+paperboard/SM
+paperboy/SM
+paperchase/SM
+papergirl/SM
+paperhanger/SM
+paperhanging/SM
+paperknife/M
+paperknives
+papermaker/SM
+papermaking/M Noun: usually uncountable
+paperweight/SM
+paperwork/MS
+papery/P
+Paphian/M
+Paphlagonia/M
+Paphlagonian/SM
+papier/S
+papilionaceous
+papilionid/SM
+papilla/yM
+papillae/M
+papillate/SGD
+papilledema/SM
+papilliferous
+Papillion/M
+papillitis/M Noun: uncountable
+papilloedema/SM
+papilloma/SM
+papillomata/M
+papillomavirus/SM
+papillon/MS
+papillose
+Papin/M
+Papineau/M
+papism/M Noun: uncountable
+papist/WMSw
+papistry/SM
+papoose/MS
+pappardelle/M
+pappi/M
+Papplewick/M
+pappose
+Pappus/M
+pappus/M
+pappy/SM
+pappyshow/SM
+paprika/MS
+Papua/M
+papula/M
+papulae/M
+papular
+papule/SM
+papulose
+papulous
+Papus/M
+Papworth/M
+papyraceous
+papyri/M
+papyrologist/MS
+papyrology/Mw
+papyrus/M
+par/dDGS7Z
+Par/M
+para/SM
+parabasal
+parabases
+parabasis/M
+paraben/SM
+parabiosis/M
+parabiotic/Y
+parable/SM
+parabola/1SWMw
+paraboloid/SM
+paraboloidal/M
+Paracelsus/M
+paracetamol/SM
+parachronism/MS
+parachute/3DSMGr
+Paraclete/M
+paracondyloid
+paracone/SM
+paraconformable
+paraconformity
+paraconid/SM
+paracrine
+parade/RMGDS
+paradichlorobenzene/M
+paradiddle/MS
+paradigm/MS
+paradigmatic/SM
+paradisaic/O
+Paradise/M
+paradise/MwSO
+paradox/Mw1WS
+paradoxer/MS
+paradoxical/P
+paradoxicality/M
+paradoxist/MS
+paradoxy/M
+paradrop/SGD
+paraesthesia/SM
+paraesthesiae/M
+paraffin/SMW
+parageneses
+paragenesis/M
+paragenetic
+parageosyncline/SM
+paraglide/SGDR
+paragon/MS
+Paragould/M
+paragraph/RGSMDW
+paragraphist/MS
+Paraguay/M
+Paraguayan/SM
+parahippocampal
+parainfluenza/SM
+Parakai/M
+parakeet/MS
+paralanguage/SM
+paraldehyde/M
+paralegal/SM
+paraleipomena/M
+paraleipses
+paralexia/SMW
+paralic
+paralinguistic/S
+paralipomena/M
+paralipomenon/M
+paralipsis/M
+paraliturgical
+parallactic
+parallax/SM
+parallel/SMY
+paralleled/U
+parallelepiped/MS
+paralleling
+parallelise/SGDN
+parallelism/MS
+parallelize/SGDN
+parallelogram/SM~
+parallelogramic/O
+parallelogrammatic/O
+parallelogrammic
+parallelometer/SM
+parallelwise
+paralog/SM
+paralogism/SM
+paralogize/DGS
+paralogous/Y
+paralogy/SMw13
+Paralympian/SM
+Paralympic/S
+paralysation/MS
+paralyse/RShGWDk
+paralysis/M
+paralytic/OYSM
+paramagnet/SMW
+paramagnetism/M Noun: usually uncountable
+Paramaribo/M
+paramatta/M
+paramecia/MO
+paramecium/M
+paramedian
+paramedic/MS
+paramedical/SM
+parament/SM
+paramesonephric
+parameter/W1pMS
+parametria/MO
+parametrise/DBnGS
+parametritides
+parametritis/M
+parametrium/M
+parametrize/SGBnD
+parametron/SM
+paramilitarism/M Noun: uncountable
+paramilitary/SM
+paramnesia/M
+paramoecia/M
+paramoecium/M
+paramorph/WSM
+paramorphism/SM
+paramorphous
+Paramount/M
+paramount/SMY
+paramountcy/SM
+paramountship
+paramour/MS
+Paramus/M
+paramylene/M
+paranaphthalene/M Noun: uncountable
+paranasal
+paranatal
+paranatellon/SM
+paranemic
+paraneoplastic
+paranephric
+paranephritic
+parang/SM
+parangi/M Noun: uncountable
+paranitraniline
+paranoia/SM
+paranoiac/SM
+paranoiacally
+paranoic/SMY
+paranoid/SM
+paranormal/SMY
+Paraparaumu/M
+parapet/SM
+paraphernalia/M
+paraphilia/SM
+paraphiliac/SM
+paraphiliae/M
+paraphrasable
+paraphrase/SGMDR
+paraphrastic
+paraphyletic
+paraplegia/SM
+paraplegic/SM
+parapod/SM
+parapodia/M
+parapodia/O^
+parapodium/M
+parapolar
+parapolitical
+parapophyses
+parapophysis/M
+paraprofessional/SM
+parapsychic/SM
+parapsychology/SM31w
+paraquat/SM
+parasail/SGDM
+parasang/MS
+parascend/GR
+Parashakti/M
+Parashiva/M
+parasite/MwWS1
+parasitic/SM
+parasiticide/MS
+parasitise/SGDN
+parasitism/SM
+parasitize/SGDN
+parasitoid/SM
+parasitoidism/SM
+parasitoidistic
+parasitology/M3
+parasitoses
+parasitosis/M
+parasol/MS
+parasomnia/SM
+parasorbic
+parasphenoid/SMO
+paraspinal/Y
+parasympathetic/S
+parasympatheticomimetic
+parasympathomimetic/SM
+parasynaptic/Y
+parasyntheses
+parasynthesis/M
+parasyntheta/M
+parasynthetic/Y
+parasyntheton/M
+parasyphilitic
+paratactic/OY
+parataxic
+parataxis/M
+paratectonic
+paratext/MS
+paratextual
+parathion/SM
+parathyroid/SM
+paratracheal
+paratroop/RSM
+paratype/SM
+paratyphoid/SM
+Parau/M
+paravaginal/Y
+paravane/MS
+Parbat/M
+parboil/GSD
+Parbold/M
+parbuckle/DGMS
+PARC/M
+parcel/SMGD
+parcelling/M
+parcenary/MS
+parcener/MS
+parch/SGLDM
+parclose/MS
+parcour
+pardalote/MS
+pardon/rgl7dSM
+pardonableness/M
+pardonably/U
+pare/JSr
+pared/KF
+paregoric/SM
+pareidolia/MSW
+pareidolically
+Parello/M
+Paremata/M
+Paremoremo/M
+parencephala/M
+parencephalon/M
+parenchyma/O^W
+parenchymatous/Y
+parenchyme/SM
+parenchymella
+parent/DJSoGMO
+parentage/MS
+parenteral/Y
+parentheses
+parenthesis/M
+parenthesise/SGD
+parenthesize/SGD
+parenthetic/OY
+parenthood/SM
+Pareora/M
+pares/FK
+pares/S
+paresis/M
+paresthesia/MS
+paresthesiae/M
+Paretian/M
+paretic
+Pareto/M
+parfait/SM
+parfleche/SM
+pargasite/SM
+parget/MS
+pargeted
+pargeting
+Parham/M
+pariah/SM
+Parian/M
+paribus
+parietal/SM
+parimutuel/SM
+paring/M
+Paris/M
+Parish/M
+parish/MSD
+parishioner/MS
+Parisian/SM
+parity/EMS
+Park/M
+park/ZSMGD~
+parka/MS
+Parkdale/M
+Parke/M
+Parkel/M
+Parker/M
+Parkersburg/M
+Parkes/M
+Parkeston/M
+Parkgate/M
+Parkham/M
+Parkhead/M
+parkin/M
+Parkin/M
+parking/M
+Parkinson/M
+Parkinsonian/SM
+parkinsonism/SM
+Parkland/M
+parkland/SM
+parkour/M Noun: uncountable
+Parks/M
+Parkside/M
+Parkstone/M
+Parksville/M
+parkway/SM
+parky/T
+parlance/SM
+parlay/DGMS
+Parlby/M
+Parley/M
+parley/MGDS
+parliament/MS
+parliamentarian/MS
+parliamentarianism/M Noun: uncountable
+parliamentariness
+parliamentarisation
+parliamentarism/M Noun: usually uncountable
+parliamentarization
+parliamentary/U
+parliamentary/Y
+Parlier/M
+Parlington/M
+parlour/MS
+parlourmaid/SM
+parlous/Y
+Parma/M
+Parmenides/M
+Parmentergate/M
+Parmer/M
+Parmesan/M
+parmesan/SM
+parmigiana/M Noun: usually uncountable
+Parnassian/MS
+Parnassus
+Parndon/M
+Parnell/M
+Paroa/M
+paroccipital
+parochial/Y
+parochialism/MS
+parochiality/SM
+parody/G3DMSWw1
+parol
+parole/DSMG
+parolee/MS
+Parolin/M
+paronym/MS
+paronymous
+parotid/SM
+Parousia
+parousiamania/M
+parovaria/M
+parovarian
+parovarium/M
+paroxetine/M Noun: uncountable
+paroxysm/3OSMo
+paroxytone/MS
+parpen/MS
+parquet/dyMS
+parquetry/MS
+parr
+Parracombe/M
+parrakeet/SM
+parramatta/M
+Parramatta/M
+Parrett/M
+parricide/MSO
+parrot/dSM
+parrotbill/SM
+parrotfish/SM
+parrotlet/MS
+parrotlike
+parrotry/MS
+parry/GDS
+pars/RDGJS
+parse/D
+parsec/SM
+Parsee/SM
+Parsifal/M
+parsimonious/Y
+parsimony/MS
+Parsippany-Troy/M
+parsley/SM
+Parslow/M
+parsnip/SM
+parson/MS
+Parson/MS
+parsonage/MS
+parsonic/O
+part's/f
+part-song
+part-time/R
+part/fICS
+part/Y
+partakable
+partake/RSG
+partaken
+partan/MS
+partbook
+parted/CI
+parter/S
+parterre/SM
+parthenocarpy/W1
+parthenogeneses
+parthenogenesis/M
+parthenogenetic/Y
+Parthenon/M
+parthenopid/SM
+Parthia/M
+Parthian/SM
+partial/IY
+partial/S
+partialism/SM
+partiality/MIS
+partible
+participant/SM
+participate/ySVDGn
+participator/SM
+participial/Y
+participle/SM
+Partick/M
+particle/SM
+particleboard/SM
+particoloured
+particular/Q8SYP
+particularism/SM
+particularist/SMW
+particularity/SM
+particulate/S
+partier/SM
+parting/MS
+Partington/M
+partisan/MS
+partisanship/SM
+partite
+partition/MGDSr
+partitive/MSY
+partizan/SM
+partner/SMdp
+partnership/SM
+Partney/M
+Parton/M
+partook
+partridge/SM
+partridgeberry/SM
+Partrisio/M
+partschinite/SM
+parturient/M
+parturifacient/SM
+parturition/MS
+partway
+party/DMSG
+Parua/M
+Parva/M
+Parvati/M
+parvenu/MS
+parvis/M
+parvise/MS
+parvo
+parvovirus/SM
+Parwich/M
+Parys/M
+pas/GRDJ
+Pasadena/M
+Pascagoula/M
+Pascal/M
+pascal/MS
+paschal/S
+Pasco/M
+pash/MS
+pasha/MS
+pashalic/M
+pashm/M
+Pashto/M
+Pasini/M
+Pasiphae/M
+Pask/M
+Paskin/M
+paso
+Paso/M
+Pasolini/M
+Paspébiac/M
+pasquinade/MS
+Pasquotank/M
+pass/7SuVNXvlk
+Pass/M
+passable
+passacaglia/MS
+passage/DMSG
+passageway/SM
+Passaic/M
+passant
+passband/SM
+passbook/MS
+Passchendaele/M
+passcode/SM
+passé/SM
+passed/Fc
+passée
+passementerie/M
+passenger-mile
+passenger/MS
+Passenham/M
+passer-by
+Passeriformes
+passerine/SM
+passers-by
+passes/IcFf
+passibility
+passible
+Passiflora
+passim
+passing/Fc
+passion/FM
+passion/p
+passionable
+passional/MS
+passionary/SM
+passionate/FEY
+passionateness
+passionflower/SM
+passionnel/MS
+Passiontide/MS
+passivate/SGD
+passive/IY
+passive/S
+passiveness/SI
+passivity/IS
+passkey/SM
+passman/M
+passmark
+passmen/M
+passover
+passphrase/SM
+passport/SM
+passu
+password/SMD
+past/DMS2GZy
+pasta/SM
+Pastafarianism/M Noun: uncountable
+paste-up
+paste/SMr
+pasteboard-like
+pasteboard/SM
+pastegrain/M
+pastel/SM
+pastelist/MS
+pastellist/MS
+pastern/MS
+Pasteur/M
+pasteurise/RnSDG
+pasteurize/nRSDG
+pasticceria/SM
+pasticcio/MS
+pastiche/MSGD
+pastille/MS
+pastime/MS
+pastis
+Paston/M
+pastor/dMS
+pastoral/YSM3
+pastorale/MS
+pastorali/M
+pastoralism/SM
+pastorality/M
+pastorate/SM
+Pastore/M
+Pastorino/M
+pastorship/MS
+pastrami/MS
+pastry/SM
+pasturage/SM
+pasture/GDSMr
+pastureland/SM
+Pastures/M
+pasty/TSMP
+pat-down
+pat/DSMZGr
+PATA/M Noun: uncountable
+Pataday/M
+Patagonia/M
+Patagonian/SM
+Patanol/M
+Pataskala/M
+patball/M Noun: uncountable
+patch/DESG
+patch/M
+patchable
+Patcham/M
+patcher/EM
+Patching/M
+Patchogue/M
+patchouli/SM
+Patchway/M
+patchwork/RSMZd
+patchy/TYP
+pate/SM
+pâté/SM
+Patea/M
+patée
+Patel/M
+Pateley/M
+patella/M
+patellae/M
+patellar
+patellate
+paten/SM
+patency/SM
+patent/YSMD7G
+patentee/SM
+patentor/MS
+patera/M
+paterae/M
+paterfamilias/MS
+paternal/Y
+paternalism/SM
+paternalist/SMW
+paternity/MS
+Paterno/M
+Paternoster/M
+paternoster/SM
+Paterson/M
+path-loss
+path/pSM=
+Pathan/SM
+Pathé/M
+pathetic/YOP
+patheticly
+pathetism/M Noun: uncountable
+pathfinder/MS
+pathfinding/M Noun: usually uncountable
+Pathhead/M
+pathia/SM
+pathic/SMY
+pathicism/M
+pathname/MS
+pathoanatomic/OY
+pathobiology/3wM
+pathogen/WSM
+pathogenesis/M
+pathogenetic
+pathogenicity/SM
+pathogenous
+pathogeny/1SM
+pathognomonic
+pathognomy/M
+pathology/SM3w1W
+pathophysiologic/OY
+pathophysiology/SM3
+pathos/SM
+pathotoxin/SM
+pathotype/SM
+pathway/SM
+pathworking/M Noun: uncountable
+patience/ISM
+patient/eMS
+patienter
+patientest
+patiently/I
+patina/SMD
+patinate/SGDN
+patine/MS
+patinous
+patio/MS
+patisserie/SM
+Patman/M
+Patna/M
+Patney/M
+patois/M
+Patoka/M
+Paton/M
+Patpong/M
+Patras/M
+Patreon/M
+patrial/MS
+patriality/MS
+patriarch/ZMO
+patriarchate/MS
+patriarchism/M
+patriarchs
+patriarchy/SM1
+Patrice/M
+Patrícia/M
+Patricia/M
+patrician/MS
+patricianship
+patriciate/MS
+patricide/SMO
+Patricio/M
+Patrick/M
+patriclan/SM
+patrie/SM
+patrifocal
+patrilateral
+patriline/SM
+patrilineage/SM
+patrilineal
+patrilocal
+patrimony/MSO
+Patrington/M
+patriot/1WSM3
+patriotism/SM
+patristic/SOY
+Patroclus/M
+patrol/MDGS
+patrolatry/M
+patrolette
+patrology/SM3w
+patron/98Q-YMqsSO
+patronage/SM
+patroness/S
+Patroni/M
+patronise/k
+patronize/k
+patronizing/M
+patronymic/YSO
+patroon/MS
+Patshull/M
+Patsy/M
+patsy/MS
+Pattaya/M
+pattée
+patten/MS
+Pattens/M
+patter/dSr
+Patterdale/M
+pattern/SGDpM
+Patterson/M
+Patti/M
+Pattingham/M
+Pattinson/M
+Pattishall/M
+Pattiswick/M
+Patton/M
+patty/MS
+patulin/SM
+patulous/P
+Patumahoe/M
+paua/MS
+Pauanui/M
+Pauatahanui/M
+paucibacillary
+paucity/SM
+Paul/M
+Paula/M
+Paulding/M
+Paulerspury/M
+Paulette/M
+Paulician/SM
+Paulicianism/M
+Pauline/M
+Paulino/M
+Paulinus/M
+Paull/M
+paullinic
+Paulo/M
+paulownia/MS
+Paulton/M
+Pauncefoot/M
+paunch/S2GMZD
+paunchy/T
+Pauntley/M
+pauper/QdMS
+pauperism/MS
+pauperize/DGS
+pause/GSDM
+Pavão/M
+Pavarotti/M
+pave/ASDG
+Pavel/M
+Pavement/M
+pavement/MS
+Pavenham/M
+paver/MS
+pavilion/GDMS
+paving/SM
+paviour/SM
+Pavlov/M
+pavlova/MS
+Pavlovian
+Pavo/M
+paw/DSGM
+Pawelec/M
+pawkier
+pawkiest
+pawkiness/M
+pawky/Y
+pawl/MS
+Pawlett/M
+pawn/SGDMpR
+pawnbroker/SMZ
+pawnbrokerage
+pawnbrokeress
+pawnbrokering
+pawnbroking/M Noun: uncountable
+Pawnee/M
+pawnor/SM
+pawnshop/MS
+pawpaw/SM
+Pawtucket/M
+paxes
+Paxil/M
+Paxton/M
+pay-as-you-earn
+pay-bed
+pay-claim
+pay-off/MS
+pay-packet/SM
+pay/A7LSG
+payable/SM
+payback/SM
+payday/SM
+PAYE/M Noun: uncountable
+payee/MS
+payer/SM
+Payette/M
+Payhembury/M
+paying/Kfc
+payload/MS
+Paymaster
+paymaster/MS
+payment/fMSc
+Payne/M
+paynim/MS
+payoff/SM
+payout/SM
+PayPal/M
+payphone/SM
+payroll/SM
+Pays-d'en-Haut/M
+pays/fcK
+paysage/MS
+paysagist/MS
+payslip/SM
+Payson/M
+Paythorne/M
+Payton/M
+paywall/SMD
+Paz/M
+Pazdur/M
+Pb
+PBX/SM Initialism of private branch exchange
+pc
+PC/SM
+PCB/SM
+PCI/M
+PCIe/M
+pcm
+PCMCIA/M
+pd
+PDA/SM
+Pde
+pdf/M
+PDF/SM
+PDP
+PDQ
+PDSA
+PDT
+PE
+pea-green
+pea/MS
+peaberry/SM
+Peabody/M
+Peace/M
+peace/Ml6j
+peaceable/P
+peacebuilding/M Noun: uncountable
+peaceful/TP
+Peacehaven/M
+peacekeeper/SM
+peacekeeping/M Noun: usually uncountable
+peacemaker/SM
+peacemaking/M
+peacemonger/dSM
+peacetime/SM
+peach/IDSG
+peach/M
+Peach/M
+Peachey/M
+Peachtree/M
+peachy/T
+peacock/MS~
+Peacocke/M
+peacockery/MS
+peafowl/MS
+peahen/MS
+peak/DM2SiGZ
+Peak/M
+Peake/M
+peakier
+peakiest
+Peakirk/M
+peal/M
+peal/SAGD
+Peale/M
+pean/M
+Peano/M
+peanut/SM
+pear/MYS
+Pearce/M
+pearl/GDSMr
+Pearl/M
+Pearland/M
+pearlescent
+pearlite/SM
+pearlwort/MS
+pearly/TSM
+Pearne/M
+Pearson/M
+Peartree/M
+peartree/SM
+Peary/M
+peasant/MS
+peasanthood
+peasantry/MS
+peascod/MS
+Pease/M
+peasecod
+Peasedown/M
+Peasemore/M
+Peasenhall/M
+Peasholme/M
+peashooter/SM
+Peasmarsh/M
+peasy
+peat/ZSM
+peatbog/MS
+peatery/MS
+peatland/SM
+Peatling/M
+peaty/T
+pebble/DYMGS
+pebbling/SM
+pebbly/T
+pebibit/SM
+pebibyte/SM
+Pebmarsh/M
+pebrine/MS
+Pebworth/M
+pecan/MS
+peccability/M
+peccable
+peccadillo/M
+peccadilloes
+peccancy/M
+peccary/MS
+peck/SGMRD~
+Peckforton/M
+Peckham/M
+Peckleton/M
+Pecksniff/MS
+Pecksniffian
+pecorino/SM
+Pecos/M
+pectase/SM
+pectate/SM
+pecten/MS
+pecteniform
+pectenoid
+pectic
+pectin/MSWO
+pectinase/SM
+pectinate/DN
+pectines
+pectinesterase/SM
+pectinibranch/M
+pectinibranchs
+pectiniform
+pectinirhomb/M
+pectinoid/SM
+pectolite/SM
+pectoral/SM
+pectoralis/M
+peculate/GDSn
+peculator/SM
+peculiar/SMY
+peculiarity/SM
+pecuniary/Y
+pedagogic/S
+pedagogism/M
+pedagogue/SM
+pedagoguism/M
+pedagogy/1SMWw
+pedal/RGMSD
+pedalo/MS
+pedaloes
+pedant/WSM1
+pedantize/DGS
+pedantry/SM
+pedatisect
+peddle/SDGR
+pederast/ZSMW
+pederasty/SM
+pedesis/M Noun: uncountable
+pedestal/DGMS
+pedestrian/Q-8qMS
+pedestrianism/M
+pediatrist/MS
+pediatry/M
+pedicab/SM
+pedicel/SM
+pedicellate
+pedicle/SMD
+pedicular
+pediculate
+pediculosis/M
+pediculous
+pedicure/GS3DM
+pedigree/MS
+pedigreed
+pediment/DO
+pediment/ISM
+pedipalp/OSM
+pedlar/SM
+pedlary/M
+Pedmore/M
+pedologist/MS
+pedology/M Noun: uncountable
+pedometer/MS
+pedosphere/SM
+Pedrick/M
+Pedro/M
+peduncle/MS
+Pedwardine/M
+pee/RGS
+Peebles/M
+Peeblesshire/M
+peek/SDG
+peekaboo/SM
+Peekskill/M
+peel/DGSJr
+Peel/M
+Peele/M
+Peelite/MS
+peen/SGDM
+peep-hole/SM
+peep-show/MS
+peep/DSRGZ
+peephole/SM
+peepul/MS
+peer/pDSGM
+Peerage
+peerage/SM
+peeress/SM
+peerless/PY
+Peetham/M
+peeve/MSGDR
+Peever/M
+peevish/PY
+peewee/SM
+peewit/MS
+peg-like
+peg/GSDMR
+Pegasean
+pegasid/SM
+Pegasus/M
+pegboard/SMG
+pegbox/SM
+Peggy/M
+peggy/SM
+pegmatite/SM
+pegtop/MS
+Pehlevi/M
+Peigan/SM
+peignoir/MS
+Peirce/M
+Peixoto/M
+pejoration/SM
+pejorative/YSM
+pejorism/M Noun: uncountable
+pejorist/SM
+Peka/M
+Pekah/M
+Pekahiah/M
+pekan/MS
+Pekar/M
+peke/SM
+Pekin/M
+Pekinese/M
+Peking/M
+Pekingese/M
+pekoe/MS
+pelade/WM
+pelage/WOSM
+Pelagian/SM
+Pelagianism/M Noun: uncountable
+Pelagius/M
+pelargonic
+pelargonium/SM
+Peldon/M
+Pele/M
+Pelé/M
+pele/MS
+pelecypod/SM
+Pelée/M
+Pelenna/M
+pelerine/MS
+pelf/M Noun: uncountable
+Pelham/M
+pelham/MS
+pelican/SM
+pelisse/MS
+pell-mell/M
+Pell/M
+pell/SM
+Pella/M
+pellagra/SM
+pellagrous
+pellet/dMS
+pelletize/DGS
+pellicle/SM
+pellicular
+pellitory/MS
+pellucid
+Pelman/M
+Pelmanism/M
+pelmet/SM
+Peloponnese
+Peloponnesian/SM
+Peloponnesus/M
+Pelops/M
+Pelosi/M
+peloton/SM
+Pelsall/M
+pelt/DGSrM
+pelta/M
+peltae/M
+peltage/M
+peltast/SM
+peltate/YN
+pelterer/SM
+peltiform
+peltry/MS
+pelves
+pelvic/S
+pelvis/MS
+pelycosaur/SM
+Pelynt/M
+Pemberton/M
+Pembrey/M
+Pembridge/M
+Pembroke/M
+Pembrokeshire/M
+Pembury/M
+Pemiscot/M
+pemmican/SM
+pemphigoid/M
+pemphigous
+pemphigus/M
+pen-and-ink
+Pen-Boyr/M
+pen-name/SM
+Pen-y-bont-fawr/M
+Pen-y-Clawdd/M
+Pen-y-graig/M
+Pen/M
+pen/oGDMSO
+penalise/SGDn
+penality/SM
+penalize/SGDn
+Penallt/M
+Penally/M
+penalty/SM
+penance/DSGM
+Penang/M
+penannular
+Penarth/M
+penates
+Penbedw/M
+Penberthy/M
+Penbryn/M
+Pencaer/M
+Pencaitland/M
+Pencarreg/M
+pence/Mp
+penchant/SM
+penciclovir/M Noun: uncountable
+pencil/MGDJSR
+Penclawdd/M
+Pencoed/M
+Pencombe/M
+Pencoyd/M
+Pend/M
+pend/SGDM
+pendant/CMS
+pendency/M
+pendent/SM
+pendentive/MS
+Pender/M
+Penderry/M
+Penderyn/M
+Pendine/M
+Pendle/M
+Pendlebury/M
+Pendleton/M
+Pendock/M
+Pendomer/M
+Pendoylan/M
+pendulate/DGS
+penduline/SM
+pendulosity/SM
+pendulous/PY
+pendulum/SM
+penectomy/SM
+Penegoes/M
+Penelope/M
+peneplain/MS
+penetrability/IMS
+penetrable/I
+penetralia
+penetrant/SM
+penetrate/vnBSDVkuG
+penetrative/P
+penetrator/SM
+Penfield/M
+penfriend/SM
+Pengam/M
+penguin/SM
+Penh/M
+penholder/MS
+Penhow/M
+Penhurst/M
+penial
+penicillamine/SM
+penicillate
+penicillia/M
+penicillin/SM
+penicillinase/SM
+penicillium/SM
+Penicuik/M
+penile
+Penilee/M
+Peninsula/M
+peninsula/SM
+peninsular
+peninsulate/DGS
+penis/MS
+Penistone/M
+penistone/SM
+penitence/SIM
+penitent/ISY
+penitent/M
+penitential/YS
+penitentiary/SM
+Penketh/M
+Penkevil/M
+penknife/M
+penknives
+Penkridge/M
+Penley/M
+penlight/MS
+Penllech/M
+Penllergaer/M
+Penllyn/M
+Penmachno/M
+Penmaen/M
+Penmaenmawr/M
+penman/M
+penmanship/MS
+Penmark/M
+penmen/M
+Penmon/M
+Penmorva/M
+Penmynydd/M
+Penn/M
+Pennal/M
+Pennant/M
+pennant/MS
+Pennard/M
+pennatulid/SM
+penne/M Noun: uncountable
+Pennell/M
+Penney/M
+pennillion/M
+Pennine/SM
+Penninghame/M
+Pennington/M
+pennon/SM
+Pennsauken/M
+Pennsboro/M
+Pennsville/M
+Pennsylvania/M
+Pennsylvanian/SM
+penny-farthing/SM
+penny-pinching/SM
+penny/pMS
+pennyroyal/SM
+pennyweight/SM
+pennyworth/M
+Penobscot/M
+penology/S3Mw
+penoscrotal
+penpalship
+penpoint/SM
+Penpont/M
+Penrhiwceiber/M
+Penrhos/M
+Penrhosllugwy/M
+Penrhyn/M
+Penrhyndeudraeth/M
+Penrice/M
+Penrith/M
+Penrose/M
+Penryn/M
+pens/XuNvV
+Pensacola/M
+Pensax/M
+Penselwood/M
+Penshaw/M
+Penshurst/M
+pensile
+pension/7GMRDp
+pensionary/MS
+pensiveness/S
+Pensnett/M
+penstemon/MS
+Pensthorpe/M
+penstock/MS
+Penston/M
+pent-up
+pent/A
+penta-atomic
+pentachlorophenol/SM
+pentachord/SM
+pentachromic
+pentacle/MS
+pentacosanoic
+pentacrinite/SM
+pentacrinoid/SM
+pentactin/OM
+pentactine/M
+pentacyclic
+pentad/MSW
+pentadactyl
+pentadactylism/M Noun: uncountable
+pentadactylous
+pentadactyly/WM
+pentadecane/SM
+pentadecanoic
+pentadelphous
+pentadentate
+pentadentative
+pentadodecahedron/SM
+Pentagon/M
+pentagon/oSM
+pentagonal/S
+pentagram/SM
+pentahedra
+pentahedron/MS
+pentamerous
+pentameter/MS
+pentandrous
+pentane/SM
+pentangle/MS
+pentangular
+pentanoic
+pentaprism/MS
+pentaquark/SM
+pentasyllabic
+Pentateuch/MO
+pentathlete/SM
+pentathlon/SM
+pentatomic
+pentatonic
+pentatriacontanoic
+pentavalent
+Pentax/M
+pentazocine/SM
+Pentecost/M
+Pentecostal/SM
+Pentecostalism
+Penterry/M
+Pentewan/M
+penthouse/SM
+Penticton/M
+pentimenti/M
+pentimento/M
+Pentir/M
+pentium
+pentlandite/SM
+Pentlow/M
+Pentney/M
+pentobarbitone/M Noun: usually uncountable
+pentode/MS
+Penton/M
+Pentonville/M
+pentose/SM
+pentosyltransferase/SM
+pentoxide/SM
+Pentraeth/M
+Pentre/M
+Pentrefoelas/M
+Pentrich/M
+Pentridge/M
+pentstemon/MS
+Pentwyn/M
+pentyl/M
+Pentyrch/M
+penult/SM
+penultimate/SMY
+penumbra/OSM
+penumbrae/M
+penurious/YP
+penury/SM
+Penwardine/M
+penwiper/MS
+Penwortham/M
+Penyard/M
+Penybont/M
+Penycae/M
+Penydarren/M
+Penyffordd/M
+Penylan/M
+Penyrheol/M
+Penystrywaid/M
+Penywaun/M
+Penzance/M
+peon/SZM
+peonage/SM
+peony/MS
+people/DMGS
+Peopleton/M
+Peoria/M
+Peover/M
+PEP/SM
+pep/ZDSGRM
+Peper/M
+peperino/M
+peperomia/SM
+peperoni/M
+peplomer/SM
+peplum/MS
+pepo/MS
+Peppard/M
+pepper/Zdr
+pepperbox/MS
+peppercorn/MS
+Pepperell/M
+peppergrass/M
+peppermint/SMZ
+pepperoni/SM
+pepperwort/MS
+peppy/PT
+Pepsi/SM
+pepsin/SM
+pepsinogen/SM
+peptic/SM
+peptide/MS
+peptidoglycan/SM
+peptone/SM
+peptonize/DGS
+Pepys/M
+Pequannock/M
+per/y
+peradventure/SM
+perambulate/DGnS
+perambulator/SM
+perambulatory
+Perantalamma/M
+percale/SM
+Perce/M
+perceivable/Y
+perceive/aSD
+perceive/Gr
+percent/M
+percentage/SM
+percentile/MS
+percept/vbVMoxSu
+perceptibility/I
+perceptible/YI
+perceptibly/I
+perception/MS
+perceptive/P
+perceptivity/M Noun: usually uncountable
+perceptual
+perch/DGMSr
+percha
+perchance
+Percheron/M
+percheron/MS
+perchlorate/SM
+perchloric
+perchlorination/SM
+perchloroethylene/SM
+percipience/SM
+percipient/SMY
+Percival/M
+percolate/nDSG
+percolator/MS
+percreta
+percuss/DvuSGV
+percussion/SM3
+percussive/P
+percutaneous/Y
+Percy/M
+perdition/MS
+Perdue/M
+perdurability/M Noun: uncountable
+perdurable/Y
+Pere/MS
+Perea/M
+peregrinate/DSG
+peregrinator/MS
+peregrine/nSM
+pereiopod/SM
+Pereira/M
+Perelman/M
+peremptory/YP
+perennate/SGDN
+perennial/YSM
+perenniality/M
+Peres's
+pères/F
+perestroika/SM
+perfect/rbDYTuPSGVv
+perfectibility/MS
+perfection/ISM
+perfectionism/SM
+perfectionist/SM
+perfective/P
+perfectly/I
+perfectness/SI
+perfecto/MS
+perfervid/Y
+perfidious/PY
+perfidy/SM
+perfluorinated
+perfoliate
+perforate/SDGn
+perforative
+perforator/MS
+perforce
+perform/eDGS
+performable
+performance/MS
+performant/SM
+performative/SMY
+performativity/SM
+performed/Uf
+performer/MS
+perfume/SRDMG
+perfumery/MS
+perfunctory/PY
+perfuse/SGD
+perfusion/SM
+perfusive
+Perga/M
+Pergamon/M
+pergana/MS
+pergola/SM
+perhaps
+peri-peri/M
+peri/MS
+Peria/M
+perianth/SM
+periapsis/M
+periapt/MS
+periastron/SM
+periauricular
+pericardia/OM
+pericardiac
+pericarditis
+pericardium/M
+pericarp/SMO
+perichondrium/M
+perichoresis/M Noun: uncountable
+periclase/M
+Periclean
+Pericles/M
+periclinal
+pericope/MS
+pericranium/MS
+pericyclic
+pericynthion/SM
+periderm/OSM
+peridia/M
+peridium/M
+peridot/SMW
+peridural
+perigean
+perigee/MS
+perigenital
+periglacial/Y
+periglandular
+perigynous
+perigyny/M
+perihelia/MW
+perihelion/M
+perijove/SM
+peril/MSDG
+perilla/SM
+perilous/PY
+perilune/SM
+perilymph/M
+perimenopause/OM
+perimeter/SM
+perimetria/M
+perimetrium/M
+perinatal
+perinea/OM
+perineum/M
+Perinton/M
+perinuclear
+periocular
+period/Mw1WS
+periodate/SM
+periodical/SM
+periodicity/MS
+periodogram/SM
+periodograph/M
+periodology/M
+periodontal/Y
+periodontics
+periodontist/SM
+periodontology/M Noun: uncountable
+perioperative
+perioral
+periostea/MO
+periosteum/M
+periostitis
+periostraca/M
+periostracum/M
+periotic/SM
+Peripatetic/MS
+peripatetic/SMY
+peripateticism/M Noun: usually uncountable
+peripeteia/SM
+peripheral/SMY
+periphery/SM
+periphrases
+periphrasis/M
+periphrastic/Y
+periphyton/SM
+peripteral
+periscope/SMW
+perish/7RGDkS
+perishable/IS
+perishable/M
+perishableness/M Noun: usually uncountable
+perisperm/SMW
+perisporangium/M
+perissodactyl/SM
+peristalith/SM
+peristalses
+peristalsis/M
+peristaltic/Y
+peristome/SM
+peristyle/MS
+peritoneal
+peritoneum/MS
+peritonitis/MS
+Perivale/M
+perivascular
+perivitelline Adjective
+periwig/DSM
+periwinkle/MS
+perjink Adjective
+perjure/DRSGZ
+perjurious/Y
+perjury/MS
+perk/DzGS
+Perkins/M
+perky/TP
+Perl/M
+Perlethorpe/M
+perlite/SM
+Perlman/M
+perlocution/SM
+perlocutionary
+Perloff/M
+perm/GSDM
+perma
+permaculturalist/SM
+permaculture/SMO3
+permadeath/SM
+permafrost/MS
+permalink/SM
+permalloy/SM
+permanence/MZS
+permanency/SM
+permanent/PY
+permanently/I
+permanganate/SM
+permanganic
+permeability/SIM
+permeable/IP
+permeance/SM
+permease/SM
+permeate/BDnGS
+permethrin/SM
+Permian/SM
+Permic
+permie/SM
+permillage/SM
+permineralised
+permineralization
+permineralized
+permissibility/SM
+permissible/PY
+permission/Mp
+permissive/YP
+permit/GXDMNS
+permittee/SM
+permittivity/SM
+permutational
+permute/DGSn
+Permutotetraviridae Taxonomic family
+permy
+pernicious/YP
+pernickety
+pernoctate/DGSn
+Pero/M
+peroneal
+perorate/DGS
+peroration/SM
+perovskite/SM
+peroxidase/SM
+peroxide/SDMG
+peroxisome/SM
+perpendicular/SMY
+perpendicularity/MS
+perpetrate/SGDn
+perpetrator/SM
+perpetual/SY
+perpetuality/M Noun: uncountable
+perpetuance/M
+perpetuate/GnSD
+perpetuator/SM
+perpetuity/SM
+perphenazine/M Noun: usually uncountable
+perplex/ihDGSk
+perplexability/M
+perplexity/MS
+Perquimans/M
+perquisite/MS
+Perran-ar-Worthal/M
+Perranarworthal/M
+Perranuthnoe/M
+Perranzabuloe/M
+Perrault/M
+Perren/M
+Perrier/M
+Perrin/M
+Perrine/M
+Perris/M
+perron/MS
+Perrot/M
+Perrotin/M
+Perrott/M
+Perry/M
+Perrysburg/M
+Perryville/M
+Perse/M
+persecute/yDSG
+persecution/SM
+persecutor/MS
+Persephone/M
+Persepolis/M
+Perseus/M
+perseverance/MS
+perseverate/SGDN
+persevere/kGDS
+Pershore/M
+Persia/M
+Persian/MS
+persiflage/MS
+persimmon/SM
+persist/DSGr
+persistence/SM
+persistency/SM
+persistent/Y
+Perskyi/M
+person-to-person
+person/7oSM
+Person/M
+persona/MS
+personable/P
+personae/M
+personage/MS
+personal/Qq8-Y
+personalise/CnSGD
+personality/SM
+personalize/CSGn
+personalty/MS
+personam ad personam
+personate/DGSn
+personative
+personator/SM
+personed
+personeity/SM
+personëity/SM
+personhood/SM
+personify/SnDGr7
+personnel/MS
+perspective/OYSM
+Perspex/M
+perspex/M Noun: uncountable
+perspicacious/YP
+perspicacity/SM
+perspicuity/MS
+perspicuous/YP
+perspiratory
+perspire/DGnS
+persuadable
+persuade/DVRSvuG
+persuasible
+persuasion/SM
+persuasive/P
+pert/PTY
+pertain/DSG
+Pertenhall/M
+Perth/M
+perthitic
+Pertholey/M
+Pertholley/M
+Perthshire/M
+pertinacious/PY
+pertinacity/SM
+pertinence/IS
+pertinency/MS
+pertinent/YI
+Perton/M
+perturb/GSnD
+perturbative
+pertussis/M
+Pertwood/M
+Peru/M
+Perugino/M
+peruke/SM
+perusal/MS
+peruse/DRGS
+Peruvian/SM
+perv/SGDM
+pervade/uDGVSv
+pervaporation/M Noun: uncountable
+pervasion/SM
+pervasive/P
+perverse/PVY
+perversion/SM
+perversity/SM
+pervert/DhSiGR
+pervious
+perviousness/M Noun: uncountable
+pervo/SM
+pervy/TP
+Pesach/M
+pescatarian/SM
+Pescatore/M
+pescetarian/SM
+Pescetti/M
+peseta/SM
+pesharim/M
+Peshawar/M
+pesher/SM
+Peshitta/M
+pesky/TYP
+peso/MS
+pessary/SM
+pessimal/Y
+pessimism/MS
+pessimist/MSW1
+Pessoa/M
+pest/SM
+pester/dS
+pesticide/SMO
+pestiferous
+pestilence/SM
+pestilent/Y
+pestilential/Y
+pestle/DSMG
+pesto/SM
+pestologist/MS
+pestology/M Noun: uncountable
+pet/SRGMD
+petabit/SM
+petabyte/SM
+petaflop/SM
+Petal/M
+petal/MSD
+petaline Adjective
+petaloid Adjective
+petalon/MS
+Petaluma/M
+petapascal
+petard/MS
+petasecond/SM
+petasus/M
+petawatt/SM
+petcock/SM
+Pete/M
+petechia/OM
+petechiae/M
+peter/dS
+Peter/MS
+Peterborough/M
+Peterchurch/M
+Peterculter-Milltimber/M
+Peterculter/M
+Peterhead/M
+Peterhouse/M
+Peterlee/M
+Peterloo/M
+peterman/M
+petermen/M
+Petersburg/M
+Petersen/M
+Petersfield/M
+Petersham/M
+petersham/SM
+Petersmarland/M
+Peterson/M
+Peterston-super-Ely/M
+Peterston-super-Montem/M
+Peterstone/M
+Peterstow/M
+Petham/M
+Petherton/M
+Petherwin/M
+pethidine/SM
+petiolar
+petiolate
+petiole/SM
+petit
+Petit/M
+petite/PS
+petitgrain/M Noun: uncountable
+petitio
+petition/DG
+petition/FSAM
+petitionable
+petitionary
+petitioner/SM
+Petone/M
+Petoskey/M
+Petr/M
+Petra/M
+Petraeus/M
+Petrarch/M
+Petrarchan
+Petrarchanism/M Noun: uncountable
+Petrarchism/SM
+petrel/SM
+Petri/M
+Petrie/M
+petrifaction/SM
+petrify/GSND
+Petrine
+Petro/M
+Petroc/M
+petrochemical/SM
+petrochemistry/M Noun: uncountable
+Petrock/M
+Petrockstowe/M
+petrodollar/SM
+petrogenesis/M Noun: usually uncountable
+petrogeny/M Noun: uncountable
+petroglyph/MS
+petrographic/O
+petrography/M
+petrol/MSW
+petroleum/M
+petrology/MS3wW
+Petronas/M
+petronel/MS
+petrosal/SM
+petroselinic
+petrous
+Petrov/M
+Petrovich/M
+Petrox/M
+Pett/M
+Pettaugh/M
+petticoat/SDM
+pettifog/RGDS
+pettifoggery/SM
+Pettigrew/M
+Pettinain/M
+Pettingill/M
+Pettis/M
+pettish/YP
+Pettistree/M
+Petton/M
+Petty/M
+petty/TSYP
+petulance/SM
+petulant/Y
+petunia/SM
+Petworth/M
+Peugeot/M
+Pevensey/M
+Peverel/M
+Peverell/M
+Pevsner/M
+pew/MSp
+Pewaukee/M
+pewee/SM
+pewit/SM
+Pewsey/M
+pewter/MSr
+peyote/MS
+peyotism/M Noun: uncountable
+Peyroux/M
+Peyton/M
+PFC/SM
+Pfeifer/M
+Pfeiffer/M
+pfennig/MS
+Pfister/M
+Pfizer/M
+Pflugerville/M
+PFS
+PG
+pg.
+PGA/M
+PGP/M
+Ph.D.
+pH/MS
+Phabricator/M
+Phaedo/M
+Phaethon/M
+phaeton/MS
+phage/SM
+phagedaena/MSW
+phagedena/SW
+phagocyte/WMS
+phagocytise/SGD
+phagocytize/SGD
+phagocytose/DGSW
+phagocytosis/M
+phalange/OSMr
+phalansterian/SM
+phalanstery/MS
+phalanx/SM
+phalarope/SM
+phalli/M
+phallicism/SM
+phallism/M Noun: uncountable
+phallocentric
+phallocentricity/M Noun: uncountable
+phallocentrism/M Noun: usually uncountable
+phallologocentric
+phallophoria/WM
+phalloplasty/SM
+phallus/WMS
+phanerogam/MS
+phanerogamic
+phanerogamous
+Phanerozoic
+phantasize/DGS
+phantasm/OMSW
+phantasmagoria/MSO
+phantasmagorian
+phantasmagoric/OY
+phantasmagorist/M
+phantasmagory/SM
+phantasy/SM
+phantom/SM
+Pharaoh/M
+pharaoh/SM
+Pharaonic
+Pharisaic/O
+Pharisaism/M Noun: uncountable
+Pharisee/SM
+pharma/SM
+pharmaceutical/SY
+pharmaceutics
+pharmacodynamic/S
+pharmacognosist/SM
+pharmacognosy/SM
+pharmacokinetic/SY
+pharmacology/3M1SwW
+pharmacopoeia/OSM
+pharmacotherapy/SM
+pharmacy/3SM
+pharming/M Noun: uncountable
+pharos/M
+Pharr/M
+Pharrell/M
+pharyngal
+pharyngeal/SM
+pharynges
+pharyngitides
+pharyngitis/M
+pharyngocele/SM
+pharyngoscope/SM
+pharyngotomy/MS
+pharynx/M
+phase/MDGRSW
+phaseout/SM
+phasic
+phasor/SM
+phat
+PhD/SM
+pheasant/MS
+pheasantry/SM
+Phedina Taxonomic genus
+Pheidippides/M
+phellandrene/SM
+phellem/SM
+phellogen/SM
+Phelps/M
+phenacetin/SM
+phencyclidine/SM
+phenetic/SY
+phenformin/M Noun: uncountable
+Phenix/M
+phenobarbital
+phenobarbitone/SM
+phenocopy/SM
+phenocryst/SM
+phenogenetics
+phenogram/SM
+phenol/SWM
+phenologist/SM
+phenology/wM
+phenolphthalein/SM
+Phenom/M
+phenom/SM
+phenomena/MOo
+phenomenalism/SM
+phenomenalist/WSM
+phenomenalize/DGS
+phenomenology/S1Mw3
+phenomenon/SM
+phenosafranin/M Noun: uncountable
+phenosafranine/M Noun: uncountable
+phenothiazine/SM
+phenotype/GMSW
+phenotypical/Y
+phenoxide/SM
+phenoxy/M
+phenoxymethylpenicillin/M Noun: uncountable
+phenoxys
+phentermine/M Noun: uncountable
+phenyl/SM
+phenylacetic
+phenylalanine/SM
+phenylephrine/M Noun: usually uncountable
+phenylethylamine/SM
+phenylmethyl/M
+phenytoin/SM
+pheromone/MSO
+phew/S
+phi/MS
+phial/SM
+Phil/M
+Philadelphia/M
+Philadelphian/SM
+philadelphus/SM
+philander/drSM
+philanthrope/SM
+philanthropism/M Noun: uncountable
+philanthropize/DGS
+philanthropy/1MSWw3
+philately/3SWM
+Philby/M
+Philemon/M
+philharmonic/SM
+philhellene/MSW
+philhellenism/M Noun: usually uncountable
+philhellenist/S
+Philip/MS
+Philipose/M
+Philipp/M
+Philippe/M
+Philippi/M
+Philippian/SM
+philippic/MS
+Philippine/M
+Philippines/M
+Philippsburg/M
+Philipsburg/M
+Philistine/MS
+philistine/SM
+philistinism/SM
+Phillack/M
+Philleigh/M
+Phillimore/M
+Phillip/M
+Phillips/M
+Phillipsburg/M
+phillipsite/M Noun: uncountable
+Phillipstown/M
+phillumenist/MS
+phillumeny/M
+philobiblic
+philodendron/MS
+philogynist/SM
+philologer/SM
+philologian/SM
+philologize/DGS
+philology/M13wS
+Philomel/M
+Philomela/M
+philopatry/WM
+philoprogenitive
+philosophaster/SM
+philosopher/MS
+philosophy/w1sWQ8S9M
+philotechnic
+philtra/M
+philtre/SM
+philtrum/M
+Phipps/M
+phish/SGDr
+phlebitides
+phlebitis/M
+phlebotomise/SDG
+phlebotomist/SM
+phlebotomize/SDG
+phlebotomy/SM
+phlegm/SM
+phlegmatic/Y
+phloem/SM
+phlogiston/M Noun: usually uncountable
+phlogopite/SM
+phlox/SM
+Phnom/M
+pho
+phobe/SM
+phobia/MS
+phobic/SM
+Phobos/M
+Phocaea/M
+phoebe/MS
+Phoebus/M
+Phoenicia/M
+Phoenician/SM
+Phoenix/M
+phoenix/MS
+Phoenixville/M
+Pholidota Taxonomic order
+Pholus/M
+phon/SMW
+phonate/DGS
+phonation/SM
+phonatory Adjective
+phonautograph/SM
+phone-in/SM
+phone/ZSWG1DM
+phonecard/SM
+phoneme/MS1W
+phonemic
+phonemics/M Noun: uncountable
+phonendoscope/SM
+phonetic/SMY3
+phonetician/SM
+phoneticism/M Noun: uncountable
+phoneticize/DGS
+phonetics/M Noun: uncountable
+phonetist/MS
+phoney/SM
+phonics/M Noun: uncountable
+phonoautograph/SM
+phonogram/SM
+phonograph/DWSM1
+phonography/M Noun: usually uncountable
+phonolite/MS
+phonology/13wSM
+phonometer/MS
+phonon/SMW
+phonoscope/SM
+phonotactic/S
+phony/PMSTY
+phooey/SM
+phormium/MS
+phoronid/SM
+Phoronida Taxonomic phylum
+phosgene/M Noun: usually uncountable
+phosphatase/SM
+phosphate/MSW
+phosphatidyl/M Noun: usually uncountable
+phosphatidylethanolamine/SM
+phosphatise/SGDN
+phosphatize/SGDN
+phosphene/SM
+phosphide/SM
+phosphine/SMW
+phosphite/MS
+phosphodiesterase/SM
+phosphoenolpyruvate/M Noun: usually uncountable
+phospholipase/SM
+phospholipid/SM
+phosphomolybdic
+phosphomonoesterase/SM
+phosphonate/SM
+phosphoprotein/SM
+phosphor/SWM
+phosphorate/DGS
+phosphoresce/SGD
+phosphorescence/MS
+phosphorescent/YSM
+phosphoribosyltransferase/SM
+phosphorite/SM
+phosphormonoesterase/SM
+phosphorous
+phosphorus/M
+phosphoryl/SM
+phosphorylate/SGDN
+phosphotungstic
+phosphuretted
+phosphyl/M
+phossy
+phosvitin/SM
+photism/MS
+photo-oxidation/M
+photo-oxidative
+photo/MS
+photoabsorbing
+photoabsorption/M Noun: uncountable
+photoacoustic
+photoacoustics/M Noun: uncountable
+photoact
+photoaction
+photoactivatable
+photoactivate/SGDN
+photoactive
+photoactivity/SM
+photoaffinity/M Noun: uncountable
+photoaged
+photoageing/M
+photoaging/M Noun: uncountable
+photoallergy/WSM
+photoassimilate/N
+photoautotroph/WZ
+photobleaching
+photoblog/SMRG
+photobomb/SGDR
+photocall/SM
+photocard/SM
+photocell/SM
+photochemical/Y
+photochemistry/M Noun: usually uncountable
+photochrom/SM
+photochrome/SM
+photochromic
+photochromism/SM
+photocoagulation/SM
+photocoagulator/SM
+photocollage/SM
+photocompose/SGDNr
+photoconductive
+photoconductivity/SM
+photoconductor/SM
+photocopy/DRGSM
+photocurrent/SM
+photocycle/SM
+photodamage/SM
+photodegradable
+photodegradation/M Noun: uncountable
+photodegrade
+photodetector/SM
+photodiode/SM
+photodissociate/SGDn
+photodynamic
+photoelectric/Y
+photoelectricity/M Noun: uncountable
+photoelectromagnetic
+photoelectron/SMW
+photoelectronics
+photoemission/SM
+photoemissive
+photoemitter/SM
+photoengraved
+photoengraver/SM
+photoengraving/MS
+photoessay/SM
+photofinishing/MS
+photofission/M Noun: uncountable
+photofit/SM
+photoflash/SM
+photofluorography/M Noun: uncountable
+photogenic/Y
+photogeology/3wM
+photoglyphography/M
+photoglyphy/WM
+photogoniometer/SM
+photogoniometry/M
+photogram/SM
+photogrammeter/SM
+photogrammetrical/Z
+photogrammetry/W3
+photograph/R1GZDWSM
+photography/SM
+photogravure/SM
+photoionisation/SM
+photoionization/SM
+photojournalism/MS
+photojournalist/MS
+photolitho/M
+photolithography/W1M
+photolysis/M
+photolytic
+photomagnetoelectric
+photomask/SM
+photometer/1WSM
+photometry/M Noun: usually uncountable
+photomicrograph/ZSM
+photomicrography/M Noun: uncountable
+photomontage/SM
+photomosaic/SM
+photomultiplier/MS
+photon/SMW
+photonegative
+photonics/M Noun: uncountable
+photophobia/M Noun: usually uncountable
+photophobic
+photophone/SM
+photophony/M Noun: uncountable
+photophysical
+photophysics/M Noun: uncountable
+photopia/WM
+photoplethysmograph/WSM
+photopolarimetry/MW
+photopolymer/SM
+photopolymerisation/SM
+photoproduct/SM
+photoprotection/M Noun: uncountable
+photoprotein/SM
+photopsia/SM
+photoreactivation/SM
+photoreactive
+photorealism/M Noun: uncountable
+photorealist/WSM
+photoreceptive
+photoreceptor/SM
+photoreconnaissance/M Noun: uncountable
+photorecovery/M Noun: uncountable
+photorefractive/Y
+photorepair/M Noun: uncountable
+photoresist/SM
+photorespiratory Adjective
+photosensitise/SGDNr
+photosensitive/Y
+photosensitivity/SM
+photosensitize/SGDNr
+Photoshop/SGDM
+photosite/SM
+photosphere/SMW
+photostat/SGDW
+photostationary Adjective
+photostereogram
+photostereograph/M
+photostimulable
+photostimulation/SM
+photosyntheses
+photosynthesis/SQdM
+photosynthetic/Y
+photosystem/SM
+phototactic/OY
+phototaxes
+phototaxis/M
+phototherapy/SM
+phototoxic
+phototoxicity/SM
+phototransistor/SM
+phototroph/WSM
+phototropic/Y
+phototropism/SM
+phototypesetter/SM
+phototypesetting/M Noun: uncountable
+photovoltage/SM
+photovoltaic
+photoxidative
+PHP/M
+php/M
+phrasal/Y
+phrase/GDSA
+phrase/M
+phrasebook/SM
+phrasemaking/M Noun: usually uncountable
+phraseology/SM
+phrasing/MS
+phreak/SGDMR
+phreatomagmatic/Y
+phreatophyte/SMW
+phrenic
+phrenology/1w3MS
+phrenopathy/SM
+phrenosplenic
+phrenotropic
+phronesis/M Noun: uncountable
+phronetal
+phryganeid/SM
+phryganid
+Phrygia/M
+Phrygian/SM
+phycoerythrin/SM
+phycology/3wM
+phyla/M
+phylactery/SM
+phylloclade/SM
+phyllode/MS
+phyllophagous
+phyllopod/MS
+phyllosilicate/M Noun: usually uncountable
+phyllotactic
+phyllotaxis/M Noun: usually uncountable
+phyllotaxy/SM
+phylloxera
+Phylloxeridae Taxonomic family
+phylogenesis
+phylogenetic/SY
+phylogeny/SMW
+phylotypic
+phylum/M
+phymosis
+phys/w1
+physa/SM
+physae/M
+physaliferous
+physalin/SM
+physaliphorous
+physalis/SM
+physeter/SM
+physharmonica/M
+physiatrical
+physiatrics/M Noun: uncountable
+physic/S3DGM
+physical/SP
+physicalism/SM
+physicalist/SMW
+physicality/SM
+physician/SM
+physicist/SM
+physico-chemical
+physicochemical/Y
+physicotherapy/M
+physio/SM
+physiochemical
+physiocracy/M Noun: uncountable
+physiocrat/SMW
+physiocratism/M Noun: uncountable
+physiogenesis/M Noun: uncountable
+physiogenetic
+physiogeny/M Noun: uncountable
+physiognomist/MS
+physiognomy/SM
+physiographer/SM
+physiographic/OY
+physiography/MS
+physiology/WM1Sw3
+physiotherapy/SM3
+physique/MS
+physostigmine/SM
+physostome/SM
+physostomous
+phytalbumin/M
+phytane/SM
+phytate/SM
+phytobenthic
+phytobenthos/M Noun: uncountable
+phytochemical/SMY
+phytochemist/SM
+phytochemistry/M Noun: uncountable
+phytochrome/SM
+phytoflagellate/SM
+phytogenetic/OY
+phytogeographer/SM
+phytogeographic/OY
+phytogeography/SM
+phytography/M Noun: uncountable
+phytolith/SM
+phytomer/MS
+phytomonad/SM
+phytonutrient/SM
+phytopathogenic
+phytopathology/3wM
+phytophagous
+phytoplankton/SM
+phytoremediation/SM
+phytosociology/M Noun: uncountable
+phytotomy/MS
+phytotoxic
+phytotoxicity/SM
+phytozoon/MS
+pi/DR
+Piaget/M
+pianism/SM
+pianissimi/M
+pianissimo/SM
+pianist/SMW
+piano/3MS
+pianoforte/MS
+pianola/SM
+Piantadosi/M
+piastre/MS
+Piatt/M
+piazza/SM
+Piazzi/M
+PiB
+pibroch/M
+pibrochs
+pic/SM
+pica/SM
+picador/MS
+Picard/M
+picaresque
+picaro/SM
+picaroon/MS
+Picasso/M
+Picassoesque
+Picayune/M
+picayune/MS
+Piccadilly/M
+piccalilli/MS
+piccaninny/MS
+Picchu/M
+piccolo/MS
+pichiciago/MS
+piciform
+pick-me-up/SM
+pick-up/MS
+pick/DRSGZJ7
+Pickaway/M
+pickaxe/SM
+pickelhaube/SM
+Picken/MS
+Pickenham/M
+pickerel/MS
+pickerelweed/SM
+Pickering/M
+Pickerington/M
+picket/rdMS
+Pickett/M
+Pickford/M
+Pickhill/M
+pickle/DSMG
+picklock/MS
+Pickmere/M
+pickoff/SM
+pickpocket/SMy
+pickpocketing
+pickproof
+picksome
+picktooth/SM
+pickup/SM
+Pickwell/M
+Pickwickian
+Pickworth/M
+picky/TP
+picnic/ZMRGSD
+Pico/M
+pico/M Noun: uncountable
+picobar/SM
+picofarad/SM
+picogram/SM
+picogramme/SM
+picojoule/SM
+Picornavirales Taxonomic order
+picornavirus/SM
+picosecond/SM
+picot/SM
+picotee/MS
+picrate/MS
+picric
+Pict/MS~
+Pictland/M
+pictogram/SM
+pictograph/SMWZ
+Picton/M
+Pictor/M
+pictorial/YPSM3
+pictorialism/SM
+picturable
+picture-writing
+picture/DMSG
+picturesque/PY
+picturise/DGS
+picturize/DGS
+picul/S
+piculet/SM
+PID/SM
+Piddinghoe/M
+Piddington/M
+piddle/GYDSM
+Piddle/M
+Piddlehinton/M
+Piddletrenthide/M
+piddock/SM
+pidgin/SM
+Pidley-cum-Fenton/M
+Pidsea/M
+pie/MS
+piebald/SM
+piece/MDSGR
+piecemeal/SGDM
+piecewise
+piecework/MRS
+piecrust/SM
+Piedade/M
+Piedmont/M
+piedmont/SM
+Piedmontese/M
+Piegan/SM
+pieing/SM
+pieman/M
+piemen/M
+Pierce/M
+pierce/RDSJkG
+Piercebridge/M
+Piercy/M
+Pierhead/M
+Pierian
+pierless
+piermaster/SM
+Piero/M
+Pierre-De/M
+Pierre/M
+Pierrepoint/M
+Pierrepont/M
+Pierron/M
+pietà/SM
+Pietermaritzburg/M
+Pietilä/M
+pietism/SM
+pietist/SM
+pietistic/OY
+Pietro/M
+piety/IMS
+piezoelectric
+piezoelectricity/M Noun: uncountable
+piezometric
+piezophile/SM
+piffle/DSMG
+piffler/MS
+pig-headed
+pig-sticker/SM
+pig/LGZDMS
+pigeon-breast/D
+pigeon-fancier/MS
+pigeon-toed
+Pigeon/M
+pigeon/SyM
+pigeonhole/SMDGR
+pigeonite/SM
+pigeonry/SM
+piggery/SM
+piggish/YP
+piggledy
+piggy/TMS
+piggyback/GDS
+pigheaded/YP
+piglet/SM
+piglike
+pigling/MS
+pigman/M
+pigmen/M
+pigment/DnGO
+pigmentary Adjective
+pigmentosum
+pigmy/SM
+pignon/SM
+pignut/SM
+Pigot/M
+Pigotts/M
+Pigou/M
+pigskin/SM
+pigsty/MS
+pigswill/M Noun: uncountable
+pigtail/SMD
+pigwash/M Noun: uncountable
+pigweed/SM
+pigwidgeon/SM
+pigwidgin/M
+Pikachu/M
+Pike/M
+pike/SRMDG
+pikelet/MS
+pikeman/M
+pikemen/M
+pikestaff/MS
+pilaf/SM
+pilaff/MS
+pilaster/dMS
+Pilate/M
+Pilates/M
+pilau/SM
+Pilbara/M
+Pilbrow/M
+pilch/MS
+pilchard/MS
+pilcrow/SM
+pile/GFSD
+pile/Mr
+piledriver/SM
+piledriving/M
+pileup/SM
+pilewort/MS
+pilfer/drS
+pilferage/MS
+pilgarlic/MS
+pilgrim/dMS
+pilgrimage/MSDG
+pilgrimise/SGD
+pilgrimize/SGD
+Pilham/M
+piliferous
+piliform
+piling/MS
+Pilkington/M
+Pill/M
+pill/SM
+pillage/DGRS
+pillar-box
+pillar/MS
+pillared
+pillaret/MS
+pillarisation/M Noun: uncountable
+pillarization/M Noun: uncountable
+Pillaton/M
+pillbox/MS
+Pillerton/M
+Pilleth/M
+Pillgwenlly/M
+Pilling/M
+pillion/MS
+pilliwinks
+pillock/SM
+pillorise/SGD
+pillorize/SGD
+pillory/DSMG
+pillow/GDMSZ
+pillowcase/SM
+pillowslip/SM
+pillule/MS
+pillwort/SM
+Pilning/M
+pilose
+pilosity/M
+pilot/SdMp
+pilotage/SM
+pilothouse/SM
+piloting/M
+pilous
+Pilrig/M
+Pils
+Pilsdon/M
+Pilsen/M
+Pilsener/M
+Pilsley/M
+Pilsner/M
+Pilson/M
+Piltdown/M
+Pilton/M
+pilular
+pilule/MS
+pilulous
+Pima/M
+pimento/SM
+Pimhill/M
+pimiento/MS
+Pimlico/M
+Pimms/M
+pimozide/M Noun: uncountable
+pimp/YSDMG
+Pimperne/M
+pimpernel/MS
+pimple/DSM
+pimplike
+pimply/MT
+pin-rail
+pin-up/MS
+pin-wheel/SM
+pin/MGdDJS
+PIN/SM
+pina/SM
+pinafore/MS
+Pinal/M
+Pinard/M
+pinaster/MS
+pinata/SM
+piñata/SM
+pinball/SM
+pinboard/SM
+pince-nez/M
+pince/RSM
+pincered
+pincette/MS
+pinch/DSGRM
+Pinchbeck/M
+pinchbeck/M
+Pincourt/M
+pincushion/MS
+Pindar/M
+Pindaric/MS
+Pindyck/M
+pine/AGSD
+pine/M
+Pine/M
+pineal/SM
+pineapple/SM
+Pinecrest/M
+Pinehaven/M
+Pinehill/M
+Pinehurst/M
+Pinellas/M
+pinery/MS
+Pines/M
+Pineville/M
+Pinewood/M
+pinewood/SM
+piney
+pinfeather/SM
+Pinfold/M
+pinfold/SGDM
+ping-pong/M
+ping/SGDR7M
+Pinglish
+pinhead/SDiM
+Pinheiro/M
+Pinho/M
+Pinhoe/M
+pinhole/MS
+pinion/DMGS
+pink/PZDTMYGS
+Pinkerton/M
+Pinkett/M
+pinkeye/SM
+pinkie/SM
+pinkish/P
+Pinkney/M
+pinky/SMT
+pinna/M
+pinnace/SM
+pinnacle/DSMG
+pinnae/M
+pinnate/Y
+Pinner/M
+pinning/fS
+pinniped/SM
+Pinnock/M
+pinnular
+pinnule/MS
+pinny/SM
+Pinochet/M
+pinochle/M
+pinocytosis/M Noun: uncountable
+pinocytotic
+Pinole/M
+pinolenic
+piñon/SM
+Pinot/M
+pinout/SM
+pinpoint/GDS
+pinprick/SDGM
+pins/fU
+pinstripe/DSM
+pint/MS
+pintado
+pintail/SM
+Pinter/M
+Pinterest/M
+pintle/MS
+Pinto/MS
+pintoresque
+Pintsch/M
+pintuck/SM
+Pinvin/M
+pinworm/SM
+Pinxton/M
+piny/T
+Pinyin/M
+Pio/M
+pioglitazone/M Noun: uncountable
+piolet/MS
+Pion/M
+pion/MSW
+Pioneer/M
+pioneer/SDGM
+pionium/SM
+Piopio/M
+Piotr/M
+Piotrowski/M
+pious/PYI
+piousness/IS
+pip/drDkMGSp
+pipa/MS
+pipal/MS
+Pipe/M
+pipe/MSp
+pipeclay/SGD
+pipefish/SM
+pipeful/MS
+pipeline/DMS
+Piper/M
+piperazine/SM
+piperic
+piperidine/SM
+piperin/SM
+piperine/M Noun: usually uncountable
+piperitious
+piperonal
+pipette/SMDG
+pipework/M Noun: usually uncountable
+piping/M
+pipistrelle/MS
+pipit/SM
+Pipiwai/M
+Pipkin/M
+pipkin/SM
+pippin/SM
+pipsqueak/MS
+Piqua/M
+piquancy/SM
+piquant/PY
+pique/SMDG
+piquet/M Noun: uncountable
+piquette/SM
+piracy/MS
+Piraeus/M
+piragua/SM
+Piran/M
+piranha/SM
+pirarucu/MS
+pirate/1MGDSwW
+Pirbright/M
+Pires/M
+piri-piri/M
+Pirie/M
+piriform
+piripiri/S
+pirk/SM
+Pirnmill/M
+pirogue/SM
+Pirongia/M
+piroplasmosis
+Pirou/M
+pirouette/SGMD
+Pirton/M
+Pisa/M
+piscary/SM
+Piscataquis/M
+Piscataway/M
+piscatory/O
+Piscean/SM
+Pisces/M
+pisciculture/MO3
+Piscis/M
+piscivore/SM
+piscivorous
+Pisgah/M
+pish/SGD
+Pishill/M
+pishogue/SM
+pisiform/SM
+pismire/SM
+pisonia/SM
+piss/DSGrZM
+pissoir/MS
+pistachio/SM
+piste/SM
+pistil/MS
+pistillary
+pistillate
+pistol/SDGM
+pistole/SM
+pistoleer/SM
+piston/MS
+Pistyll/M
+Pisum Taxonomic genus
+pit-a-pat
+pit/MGSD
+Pita/M
+Pitbull/MS
+Pitcairn/M
+pitch-and-toss
+pitch-black
+pitch-dark
+pitch/RGDSZ
+pitchblende/SM
+Pitchcombe/M
+Pitchcott/M
+pitcherful/MS
+Pitchford/M
+pitchfork/SMDG
+pitchier
+pitchiest
+pitching/M
+pitchstone/M Noun: usually uncountable
+Pitcombe/M
+piteous/PY
+pitfall/SM
+pith/zZDMGSp
+pithead/SM
+pithecoid/SM
+pithy/TP
+pitiable/P
+pitiful/PT
+pitiless/PY
+Pitkin/M
+Pitlochry/M
+pitman/M
+Pitmedden/M
+Pitminster/M
+Pitney/M
+piton/MS
+pitot/SM
+pitpan/SM
+Pitressin/M
+Pitsea/M
+Pitsford/M
+Pitsligo/M
+Pitstone/M
+Pitt/M
+pitta/SM
+pittance/MS
+Pittaway/M
+Pittenweem/M
+Pittermann/M
+Pittington/M
+Pittman/M
+Pitton/M
+Pittsburg/M
+Pittsburgh/M
+Pittsfield/M
+Pittsford/M
+Pittsylvania/M
+pituitary/MS
+pity/SGMRjpklD76
+Pius/M
+Piven/M
+pivot/dSMOo
+pivoting/SM
+Piwowar/M
+pix/M
+pixel/SM
+pixelate/SGDN
+pixelisation
+pixelize/SGDN
+Pixelvision/M
+pixie/MS~
+pixilated
+pixillated
+Pixley/M
+pixmap/MS
+pixsome
+pizazz/SM
+pizza/MS
+pizzeria/SM
+pizzicati/M
+pizzicato/M
+pizzle/SM
+Pk
+PKCS
+PKI/M Initialism of Public Key Infrastructure
+pl.
+placable/Z
+placard/GSMDr
+placardeer/SM
+placate/kyDVSGnr
+place/EDRSLG
+place/M
+Place/M
+placeable
+placebo/SM
+placed/aUA
+placeholder/SM
+placekick/SGD
+placeless/Y
+placeman/M
+placemen/M
+placement/eMS
+placename/MS
+placenta/MS
+placentae/M
+placental/SM
+placentation/SM
+Placentia/M
+Placer/M
+Placerville/M
+places/aA
+placet/MS
+placid/YP
+placidity/MS
+placing/aA
+placing/S
+placket/SM
+Plackett/M
+placoderm/SM
+placodont/SM
+placoid/SM
+placophoran/SM
+Placozoa Taxonomic phylum + Taxonomic class
+placozoan/SM
+plafond/SM
+plagal
+plage/SM
+plagiarise/DRGS
+plagiarism/SM
+plagiarist/SMW1
+plagiarize/DRGSN
+plagihedral
+plagioclase/M Noun: usually uncountable
+plagiostome/MS
+plague/GDMSr
+plaguesome
+plaice/M
+plaid/DMS
+plain-clothes
+plain-spoken
+plain/mPGDTSY
+Plain/MS
+plainchant/SM
+plainer
+Plaines/M
+Plainfield/M
+Plainsboro/M
+plainsong/SM
+plaint/uSvMV
+plaintext/SM
+plaintiff/MS
+plaintive/P
+Plainview/M
+Plainville/M
+Plaistow/M
+plait/DMSGr
+Plaitford/M
+plaiting/M
+plan/DdMSrRG
+planar
+Planaria
+planarian/SM
+planarity/SM
+planchet/MS
+planchette/SM
+Planck/M
+planctology/3wM
+plane/SM
+planeload/SM
+planemo/SM
+planerite/M
+planeshear/SM
+planesman/M
+planesmen/M
+planet/MS
+planetaria/M
+planetarium/MS
+planetary/SM
+planetesimal/MS
+planetoid/MS
+planetology/M Noun: uncountable
+planetwide
+plangency/SM
+plangent/Y
+planimeter/SMW1
+planimetry/wM
+planipetalous
+planish/DGSr
+planisphere/SMW
+Planitia Utopia Planitia (Mars)
+plank/GMDSJp
+planking/M
+plankshear
+planksheer
+plankter/SM
+planktic
+planktivore/SM
+planktivorous
+planktology/3wM
+plankton/MSW
+planktotrophic
+planned/KU
+Plano/M
+planoconcave
+planoconvex
+planometer/MS
+plansheer
+plant/BIGSDA4
+Plant/M
+plant/M
+planta/M
+plantae/M
+Plantagenet/SM
+plantain/MS
+plantar
+plantation/IMS
+Plantation/M
+planter/SM
+plantigrade
+planting/SM
+plantlet/SM
+plantlike
+plantocracy/MS
+planula/M
+planulae/M
+planulate/N
+planuliform
+planuloid
+planus
+planxty/MS
+plaque/MS
+Plaquemines/M
+plaquette/SM
+plash/DMGSZR
+plasm/MW
+plasma/SMW
+plasmasphere/SM
+Plasmatics/M
+plasmid/SM
+plasmin/SM
+plasminogen/SM
+plasmodesma/M
+plasmodesmata/M
+plasmodia/OM
+plasmodium/M
+plasmoid/SM
+plasmolyse/DGS
+plasmolysis/M
+plasmon/SMW
+Plass/M
+Plassey/M
+plaster/rMdS
+plasterboard/SM
+plastering/M
+plasterwork/SM
+plastic/YQ8s9MS
+plasticine/SM
+plasticity/SM
+plasticuffs
+plastid/SM
+plastique/SM
+plat/SMrdR
+Plata/M
+plate/6SMJp
+plateau/GMDS
+plateful/SM
+platelayer/SM
+platelet/SM
+platen/MS
+platform/MSGpZr3
+platformate
+Platforming
+platforming/M Noun: uncountable
+plating/M
+Platini/M
+platinocene
+platinotype/SM
+platinum/QM
+platitude/MS
+platitudinarian/S
+platitudinize/DGS
+platitudinous/Y
+Plato/M
+Platonesque
+Platonic
+platonic/Y
+Platonise/SGD
+Platonism/M
+Platonist/SM
+Platonize/SGD
+platoon/GMDS
+Platt/M
+Platte/M
+Plattekill/M
+Platteville/M
+Plattsburgh/M
+platycoelous
+platyhelminth/S
+Platyhelminthes Taxonomic phylum
+platypus/MS
+platysma/SM
+platysmata/M
+plaudit/MS
+plausibility/IS
+plausible/IY
+plausible/Y
+plausibleness
+Plaxtol/M
+play-act/JGDS
+play-acting/M
+play-off/SM
+play/eGADESacf
+play/M
+playability
+playable/EU
+playback/SM
+playbill/MS
+playboater/SM
+playboating/M Noun: uncountable
+playbox/SM
+playboy/MS
+playboyish/P
+playboyism/M Noun: uncountable
+playbus/SM
+Playden/M
+player/SEM
+Playfair/M
+playfellow/SM
+playfield/SM
+Playford/M
+playful/PY
+playgirl/SM
+playgoer/SM
+playground/SM
+playgroup/SM
+playhouse/SM
+playing/S
+playlet/MS
+playlist/SGD
+playmaker/SM
+playmaking/M Noun: uncountable
+playmate/SM
+playpen/SM
+playroom/SM
+playscheme/SM
+playschool/SM
+playslip
+PlayStation/SM
+playsuit/SM
+plaything/SM
+playtime/MS
+playwright/MSG
+playwriting/M
+plaza/SM
+plc
+PLC/SM
+Plea/M
+plea/MS
+pleach/SGD
+plead/SDRGJk
+pleadable
+pleading/SM
+Plean/M
+Pleas/M
+pleas/SkDGJ
+Pleasant/M
+pleasant/TYP
+Pleasanton/M
+pleasantry/SM
+Pleasantville/M
+please/EGDS
+pleaser/SM
+pleasing/P
+Pleasington/M
+Pleasley/M
+pleasurable/P
+pleasure/SlDGM
+pleat/GDMSr
+pleb/ZSM
+plebeian/SM
+plebeianize/DGS
+plebiscitary
+plebiscite/SM
+plectra/M
+plectrum/MS
+pledge/GDMSr
+pledgee/SM
+pledget/MS
+Pleiades/M
+Pleiadian/SM
+pleiotropism/SM
+pleiotropy/WSM
+Pleistocene/M
+Pleistos/M
+Plemstall/M
+plenary/SM
+plenipotentiary/SM
+plenish/D
+plenitude/SM
+plenteous/YP
+plentiful/P
+plenty/M6j
+plenum/M
+pleomorphic
+pleomorphism/SM
+pleonasm/MS
+pleonastic/Y
+Pleshey/M
+Pleshy/M
+plesiosaur/SM
+Plessisville/M
+plessor/SM
+plethora/MS
+pleura/MO
+pleurae/M
+pleurisy/MS
+pleuritic
+pleurocoel/SM
+pleurocystidia/M
+pleurocystidium/M
+pleurodont/MS
+plexiform/SM
+Plexiglas/M
+pleximeter/SM
+pleximetry/M Noun: uncountable
+plexippus
+plexor/SM
+plexus/MS
+pliability/SM
+pliable/P
+pliancy/MS
+pliant/FY
+pliantness/M
+plicata
+plication/FMIA
+plied/AIF
+pliers
+plies/FAI
+plight/DGMSr
+Plimmerton/M
+Plimpton/M
+Plimsoll/M
+plimsoll/SM
+plink/SGDZM
+plinth/MS
+Pliny/M
+Pliocene
+pliosaur/SM
+PLO/M
+plod/DRGSJVM
+plodding/Y
+Plohman/M
+ploidy/SM
+Plompton/M
+plonk/MRZDGSk
+plop/GDMS
+plosion/OSM
+plosive
+plot/SRMGDJpZ
+Plotinus/M
+plotter-printer
+plottery
+plottingly
+plotwise
+Plough
+plough/mRGSMD
+ploughland/SM
+ploughshare/SM
+Plovdiv/M
+Plover/M
+plover/MS
+Plowman/M
+ploy/CS
+ploy/M
+PLP/M Abbreviation: Parliamentary Labour Party
+pluck/ZGSzDrpM
+Pluckacre/M
+plucklessness/M
+Pluckley/M
+Plucknett/M
+plucky/TP
+plug-compatible
+plug-in/SM
+plug/SMGDR
+plugboard/SM
+pluggable
+plughole/SM
+Plum/M
+plum/MSZ
+plumage/SDM
+Plumas/M
+plumb/MDJSRGp
+plumbago/SM
+plumbery/MS
+Plumbicon
+plumbiferous
+plumbing/M
+plumbism/M Noun: uncountable
+Plumbland/M
+plumbocene
+plumbous
+Plumbridge/M
+plume-like
+plume/DpSM
+plumelet/MS
+plumeria/SM
+plumery/SM
+plumicorn/SM
+plumier
+plumiest
+Plumley/M
+Plummer/M
+plummet/SdM
+plummy/T
+plumose
+plump/MrPZYTDGS~
+plumpen/Sd
+plumpitude
+Plumpton/M
+Plumptre/M
+plumrose/M
+Plumstead/M
+Plumtree/M
+plumula
+plumulaceous
+plumular
+plumule/SM
+plumy
+plunder/dSr
+Plungar/M
+plunge/RSDGM
+plunk/RGDSM
+pluperfect/SMY
+plural/s8Q-S9qY
+pluralism/SM
+pluralist/SMW
+plurality/MS
+pluralization/SM
+plurilocular
+pluripotent
+pluripresence/M Noun: uncountable
+plus/SM
+Pluscarden/M
+plush/TZMSY
+plushy/TP
+plusses
+plutarchy/MS
+Plutino/SM
+plutino/SM
+Pluto/M
+plutocracy/MS
+plutocrat/SMW1
+plutoid/SM
+plutolatry/M Noun: uncountable
+pluton/SMW
+Plutonian/SM
+Plutonic
+Plutonism/M
+Plutonist/MS
+plutonium/M Noun: usually uncountable
+plutonocene
+plutonomy/SM
+pluvial/SM
+pluviometer/MS
+pluviometric/O
+pluvious Adjective
+ply/BDSNGM
+Plymouth/M
+Plympton/M
+Plymstock/M
+Plymtree/M
+plywood/SM
+pm
+PM/M
+PMC/SM
+PMID/SM PubMed identifier
+PMS
+pneumatic/SY
+pneumaticity/M Noun: usually uncountable
+pneumatics/M Noun: uncountable
+pneumatised
+pneumatized
+pneumatocyst/SM
+pneumatology/MSw
+pneumatometer/SM
+pneumatophore/SM
+pneumococci/MO
+pneumococcus/M
+pneumoconiosis
+pneumoconiotic
+pneumocystic
+pneumocyte/SM
+pneumoencephalogram/SM
+pneumoencephalography/WSM
+pneumogastric
+pneumokoniotic
+pneumonectomy/SM
+pneumonia/MSW
+pneumonitic
+pneumonitis
+pneumonocele/M
+pneumonocirrhosis/M
+pneumonoconiosis/M
+pneumonometer/SM
+pneumonorrhagia
+pneumonoultramicroscopicsilicovolcanoconiosis/M Noun: uncountable
+pneumopericardial
+pneumopericarditis
+pneumopericardium/M Noun: uncountable
+pneumoperitoneum/M Noun: uncountable
+pneumopyothorax
+pneumorrhagia/SM
+pneumothorax/M Noun: usually uncountable
+PNG/SM
+PNP/SM
+po-faced
+po/QY
+PO/SM
+poach/RDSG
+Pocahontas/M
+Pocatello/M
+Pocatière/M
+pochard/SM
+pochette/SM
+pock/SDM
+pocket/d6MSrp
+pocketable
+pocketbook/SM
+pocketful/MS
+pocketing/M
+pocketknife/M
+pocketknives
+pockety
+Pockley/M
+Pocklington/M
+pockmark/DSMG
+Pockthorpe/M
+Pocono/M
+pocus
+pod/SDMG
+podagra/M Noun: usually uncountable
+podagral
+podagric
+podagrous
+podcast/SBRGM
+poddy/DGMS
+Pode/M
+Podesta/M
+podesta/MS
+Podgorica/M
+podgy/TP
+podiatry/3SM
+Podimore/M
+Podington/M
+podium/SM
+podocarp/SM
+podophyllin/M
+podsol/MS
+podzol/SM
+podzolize/DGS
+Poe/M
+Poehler/M
+poem/SM
+Poer/M
+poesy/MS
+poet/1WSywM
+poetaster/MS
+poetess/SM
+poetic/S
+poeticalness
+poeticise/DGS
+poeticize/DGS
+poetise/DGS
+poetize/DGS
+poetry/SM
+Poges/M
+Poggs/M
+pogo/SM
+pogonology
+pogonotomy
+pogonotrophy
+pogrom/SM
+Pohénégamook/M
+Pohnpei
+pohutukawa/SM
+Poi/M
+poignancy/SM
+poignant/Y
+poikilotherm/MSOW
+poilu/SM
+poimenic
+poimenics/M Noun: uncountable
+Poincaré/M
+poinciana/SM
+poind/SGDJ
+Poinsett/M
+poinsettia/SM
+point-blank
+point-duty
+point-of-sale
+point-to-point
+point/RhSpGiMDZ
+pointable
+Pointe-Claire/M
+Pointe/M
+pointe/SM
+pointed/P
+pointille/M
+pointillism/SM
+pointillist/MS
+pointing/M
+pointless/YP
+Pointon/M
+pointsman/M
+pointsmen/M
+pointwise/Y
+pointwork/M Noun: uncountable
+pointy/T
+poise/SM
+Poiseuille/M
+poison/dMrS
+poisoning/SM
+poisonous/YP
+poisonwood/M Noun: usually uncountable
+Poisson/M
+poke-shakings
+Poké/M
+POKE/SM
+poke/yRDSGZM
+pokeberry/SM
+Pokédex/M
+Pokéfan/SM
+Pokémaniac/SM
+Pokemon/M
+Pokémon/M
+Pokeno/M
+poker-face/D
+PokéStop/S
+pokeweed/SM
+pokey/SM
+poky/T
+Poland/M
+polar/Q-8qSs
+polarimeter/SM
+polarimetry/M Noun: usually uncountable
+Polaris/M
+polariscope/SMW
+polarise/CRnSGD
+polariton/SMW
+polarity/SM
+polarize/CnSGD
+polarograph/ZWSM
+polarography/M Noun: usually uncountable
+Polaroid/SM
+polaron/SM
+polarward
+Polbeth-Harwood/M
+Polbeth/M
+Polden/M
+polder/SM
+polderland/M
+polderman/M
+pole-axe/DSM
+pole-vaulter/SM
+pole-vaulting/M Noun: uncountable
+pole/MDS
+Polebrook/M
+polecat/SM
+Polegate/M
+polemic/YSO3M
+polemics/M Noun: uncountable
+polemize/DGS
+polenta/SM
+poler/SM
+Poleramma/M
+Polesworth/M
+Poletto/M
+poleward/S
+police/m5DSGZM
+policier/SM
+policlinic/SM
+policy/SM
+policyholder/MS
+policymaker/SM
+policymaking/M Noun: uncountable
+Poling/M
+polio/SM
+poliomyelitides
+poliomyelitis/M
+poliovirus/SM
+Polish/M
+polish/RDJGS
+politburo/SM
+polite/IPYW
+politeness/IS
+politer
+politesse/MS
+politest
+politic/qDG-8QS
+politician/MS
+politicise/CGSD
+politicize/CGSD
+politicking/MS
+politicly
+politico/SM
+polity/SMw1
+Polk/M
+polka/DGSM
+Polkemmet/M
+poll/DMGSr
+pollack/MS
+pollan/S
+Pollard/M
+pollard/SGDJ
+pollen/MSp
+polleniser/SM
+pollenizer/SM
+Polley/M
+pollinate/DGSn
+pollinator/MS
+Pollington/M
+Pollini/M
+pollinia/M
+pollinium/M
+Pollitzer/M
+Pollock/M
+pollock/MS
+Pollokshaws/M
+Pollokshields/M
+pollster/MS
+pollucite/SM
+pollutable
+pollutant/MS
+pollute/iGDSRh
+pollution/SMO
+pollutive
+Polly/M
+Pollyanna/MS~
+Pollyannaism/M Noun: uncountable
+Polmont/M
+polo-neck/SM
+polo/MS
+polocrosse/M Noun: uncountable
+poloidal
+Polokwane/M
+polonaise/SM
+polonium/M Noun: usually uncountable
+Polonnaruwa/M
+polony/S
+Polperro/M
+Polstead/M
+poltergeist/SM
+Poltimore/M
+poltroon/SM
+poltroonery/SM
+poluphloisboian Adjective
+poluphloisboisteros
+poluphloisboisterous
+Polwarth/M
+polyacrylamide/SM
+polyadelphous
+polyadenylate/SMGD
+Polyakov/M
+polyalphabetic
+polyamide/SMn
+polyamine/SM
+polyamorous
+polyamory/3M
+polyandrous
+polyandry/SM
+Polyanovsky/M
+polyanthus/M
+polyatomic
+polybasic
+Polybius/M
+polybutadiene/MS
+polybutene/SM
+polycarbonate/SM
+Polycarp/M
+polycentric
+polychaetan Adjective
+polychaete/SM
+polychaetous
+polychemicals
+polychlorinated
+polychloroprene/MS
+polychrome/WM
+polychromous
+polychromy/MW
+polyclinic/MS
+polyclonal/SM
+polycracy/M Noun: uncountable
+polycratism/M
+polycross
+polycrystal/SM
+polycrystalline
+polycyclic/SM
+polycystic
+polydactyl/MS
+polydaemonism/M
+polydentate
+polydentative
+Polydeuces/M
+polydipsia/M Noun: usually uncountable
+polyelectrolyte/SM
+polyendocrine
+polyendocrinopathy/SM
+polyene/SM
+polyester/MS
+polyether/SM
+polyethism/M Noun: uncountable
+polyethylene/SM
+polygamous/Y
+polygamy/MS3W
+polygene/SMW
+polygenesis/M
+polygenetic/Y
+polygenism/M
+polygenist/SM
+polygeny/SM
+polyglot/SM
+polyglottal
+polyglottic
+polyglottism/M Noun: uncountable
+polyglycol/WSM
+polygon/oMSO
+polygonization/SM
+polygraph/DSMG
+polygynandrous
+polygynous
+polygyny/WSM
+polyhapto
+polyhedra/MOW
+polyhedrical/Y
+polyhedron/SM
+polyhedrous
+polyhistor/SM
+polyhydroxy Adjective
+polyimide/SM
+polyisobutene/MS
+polyisobutylene/SM
+polyisocyanate/SM
+polyisoprene/SM
+polyketide/MS
+polylectal
+polymath/SM
+polymathy
+Polymele/M
+polymer/WQ8-qMS
+polymerase/SM
+polymerism
+polymerous
+polymorbid
+polymorph/SMW
+polymorphism/SM
+polymorphonuclear
+polymorphous
+polymyalgia/SM
+polymyositis/M Noun: uncountable
+polymyxin/SM
+Polynesia/M
+Polynesian/SM
+polyneuritic
+polyneuritis/M
+polyneuropathy/SM
+polynomial/MSY
+polynuclear
+polynucleotide/SM
+polynya/SM
+polyol/SM
+polyolefin/SM
+polyonymous
+polyopia/M
+polyoxyethylene/SM
+polyp/MS
+polypary/SM
+polypeptide/SM
+polyphagous
+polyphase
+polyphasic
+Polyphemus/M
+polyphenol/SMW
+polyphenylene/SM
+polyphiloprogenitive
+polyphloisboian Adjective
+polyphloisboisterous
+polyphobia/M Noun: usually uncountable
+polyphon/OSM
+polyphone/SM
+polyphonian Adjective
+polyphonous
+polyphony/SMW3
+polyphosphate/SM
+polyphyletic
+polypi/M
+polyploid/SMZ
+polyploidization/SM
+polypod/SM
+polypody/SM
+polypoid/O
+polyposis/M
+polypous
+polypragmatic/OY
+polypragmatism/SM
+polypragmatist/SM
+polypragmon
+polypragmosyne/M Noun: uncountable
+polypro/M Noun: uncountable
+polypropylene/SM
+polyprotein/SM
+polyptoton/SM
+polyptych/M
+polyptychs
+polypus/M
+polysaccharide/SM
+polysemous
+polysemy/WM
+polysilicon/M
+polysiloxane/SM
+polysome/SM
+polysomnography/SM
+polysomy/WM
+polyspermy/M Noun: uncountable
+polystyrene/MS
+polysyllabically
+polysyllable/WSM
+polysymptomatic
+polysyndeton/SM
+polysynthetic/Y
+polysystemic
+polytechnic/MS
+polytene/SM
+polytheism/MS
+polytheist/1WSM
+polythene/SM
+polytomous
+polytomy/SM
+polytonal/Y3
+polytonality/SM
+polytone/SMW
+polytope/SM
+polyunsaturate/DSM
+polyurethane/SMGD
+polyuria/WM
+polyuronide/SM
+polyvalence/SM
+polyvalent
+polyversity/M
+polyvinyl/SM
+pom-pom/SM
+pomade/SGMD
+pomander/MS
+Pomar/M
+Pomare/M
+pomegranate/MS
+pomelo/SM
+Pomerania/M
+Pomeranian/SM
+Pomeroy/M
+Pomfret/M
+pomfret/SM
+Pommard/MS
+pommel/SGDM
+pomodoro
+Pomona/M
+pomp/SM
+pompadour/SMD
+Pompano/M
+pompano/MS
+Pompeia/M
+Pompeian/SM
+Pompeii/M
+Pompeiian/SM
+Pompeius/M
+Pompey/M
+Pompidou/M
+pompom/MS
+pompon/SM
+pomposity/SM
+pompous/YP
+Pompton/M
+Ponca/M
+Ponce/M
+ponce/MSGD
+ponceau/M
+poncey
+poncho/SM
+poncy/T
+pond/DMGS
+Pond/M
+pondage/MS
+ponder/4S
+ponderability/SM
+ponderable
+ponderal
+ponderation/M
+pondered
+ponderer/SM
+pondering
+ponderosa/SM
+ponderosity/SM
+ponderous/YP
+Ponders/M
+Pondicherry/M
+pondweed/SM
+pone/SZM
+pong/DSM
+pongee/MS
+pongo/SM
+pongoes
+poniard/SM
+Ponnamperuma/M
+pons/M
+Ponsonby/M
+Pont-Rouge/M
+Pont-y-clun/M
+Pont/M
+pontage/SM
+Pontardawe/M
+Pontarddulais/M
+Pontarfynach/M
+Pontcanna/M
+Pontchartrain/M
+Pontcysyllte/M
+Ponte/M
+Pontefract/M
+Ponteland/M
+Pontesbury/M
+Pontfaen/M
+Ponthir/M
+Pontiac/M
+Pontifex
+pontifex/M
+pontiff/SM
+pontifical/YSM
+pontificalia/M
+pontificate/nDGS
+pontifices
+pontify/DGS
+pontil/SM
+Pontin/M
+Ponting/M
+Pontius/M
+Pontllanfraith/M
+Pontlliw/M
+Pontnewydd/M
+Ponton/M
+pontoneer/SM
+pontonier/SM
+pontoon/MDSG
+Pontotoc/M
+Pontprennau/M
+Pontryagin/M
+Pontyberem/M
+Pontymoile/M
+Pontypool/M
+Pontypridd/M
+pony/SM
+ponytail/SM
+Ponzi/M
+poo/DGSM
+pooch/SM
+poodle/MS
+poof/SM
+poofter/SM!
+pooh-pooh/D
+pooh/SDG
+pooja/SM
+pooka/SM
+pool/GSDM
+Pool/M
+Poole/M
+Pooler/M
+poolside/SM
+poon/SM
+Poona/M
+poontang
+poop/SDGM
+poor-spirited
+poor/TYP
+poorhouse/MS
+Poornima/M
+Poorton/M
+Pootle/M
+pootle/SGDM
+pop-cult/M
+pop-up/SM
+POP/SM
+pop/ZRGSDM
+POP3/M Acronym of Post Office Protocol version 3
+popadom/SM
+popadum/SM
+popcorn/SM
+Pope/M
+pope/yMSp
+popedom/MS
+Popemobile/SM
+popgun/SM
+Popham/M
+popinjay/MS
+popish/Y
+Poplar/M
+poplar/MS
+poplin/SM
+popliteal
+poppadom/SM
+poppadum/SM
+Popperian/SM
+poppet/MS
+popple/JSMGDY
+Poppleford/M
+Poppleton/M
+poppy/MS
+poppycock/SM
+poppyseed/SM
+poppywort
+popsie/MS
+popsock/SM
+popster/SM
+popsy/M
+populace/SM
+popular/PqQ8Ys9-
+popularism/M Noun: uncountable
+popularity/MU
+popularity/S
+popularization/M
+populate/cCnDGS
+populated/UfA
+population/CMc
+populator/SM
+populi
+populism/SM
+populist/SMW
+populo
+populous/PY
+Poquoson/M
+poral/Y
+porbeagle/SM
+porcelain/MS
+porcelainite/M
+porcelainize/DGS
+porcelainous
+porcellaneous
+porcellanic
+porcellanous
+porch/DSMp
+Porchester/M
+porcine
+Porcius/M
+Porcorum/M
+porcupine/SM
+porcupinish
+porcupiny
+pore/GDS
+Porifera Taxonomic phylum
+porin/SM
+Poringland/M
+Porirua/M
+pork/RSZM
+porkling/SM
+porky/TSM
+Porlock/M
+porn/SM
+pornify/SGDN
+porno/SM
+pornocracy/SM
+pornographer/SM
+pornography/MS1W
+pornstar/SM
+porosity/SM
+Poroti/M
+porous/YP
+porphyria/SM
+porphyrin/SM
+porphyritic
+porphyroblast/WSM
+porphyroclast/W
+porphyrogenite/SM
+porphyrogeniture/M Noun: uncountable
+porphyrogenitus/M
+porphyroid/SM
+porphyropsin/SM
+porphyrous
+porphyry/SM
+porpoise/DMGS
+porridge/SM
+porringer/MS
+Porritt/M
+Porsche/MS
+Port-au-Prince/M
+Port-Cartier/M
+Port-of-Spain/M
+port/lDMYSBRG
+Port/M
+portability/SM
+portable/SM
+portablisation/SM
+Portadown/M
+Portaferry/M
+Portage/M
+portage/SGDM
+Portakabin/SM
+portal/MS
+Portales/M
+Portaloo/SM
+portamenti/M
+portamento/SM
+Portavogie/M
+Portballintrae/M
+Portbraddon/M
+Portbury/M
+Portchester/M
+portcullis/MSd
+Porte/M
+ported/A4EFCI
+portend/GSDr
+portent/SM
+portentous/PY
+Porteous/M
+porter/CM4SAI
+Porter/M
+porterage/SM
+portered
+porterhouse/SM
+portering
+Porterville/M
+Portesham/M
+portfire/S
+portfolio/MS
+Portglenone/M
+Portgordon/M
+Porth/M
+Porthcawl/M
+Porthkerry/M
+Porthleven/M
+Porthmadog/M
+porthole/SM
+Portia/M
+portico/MS
+porticoes
+portière/SM
+Portillo/M
+porting/FE4
+portion/SDGMp
+Portishead/M
+Portknockie/M
+Portland/M
+Portlaoighise/M
+Portlaoise/M
+Portlarge/M
+Portlemouth/M
+Portlethen/M
+portly/PT
+Portman/M
+portmanteau/SM
+Portmeirion/M
+Portmoak/M
+Portnahaven/M
+Portneuf/M
+Porto/M
+Portobello/M
+portobello/SM
+portolano/MS
+Porton/M
+Portpatrick/M
+portrait/3SM
+portraiture/SM
+portray/BSDGr
+portrayal/SM
+Portreath/M
+Portree/M
+portreeve/MS
+Portrush/M
+ports/ACFEI4
+Portsea/M
+Portskewett/M
+Portslade/M
+Portsmouth/M
+Portsoken/M
+Portsonachan/M
+Portsoy/M
+Portstewart/M
+Portugal/M
+Portuguese/M
+Portway/M
+Porvoo/M
+Porvorim/M
+Porziņģis/M
+POS/M
+pose/FNCRxDGSEX
+posed/4AI
+Poseidon/M
+poser/IMS
+POSes
+poses/IA4
+poseur/MS
+posey
+Posey/M
+posh/T
+posing/AI4
+posit/vuSVd
+posited/FC
+position's/EI4FCK
+position/CGADKS
+positionable
+positional/KY
+positionality/SM
+positioner/SM
+positions/4I
+positive/TSP
+positivism/SM
+positivist/SMW1
+positivity/SM
+positivize/SGD
+positron/SM
+positronia/WM
+positronium/SM
+Poslingford/M
+posology/Mw
+posse/bSM
+posses/GhDi
+possess/EGKDSNAX
+possession/MKEA
+possessive/PMYS
+possessor/SMZ
+posset/M
+possibility/IMS
+possible/SIY
+Possil/M
+Possilpark/M
+possum/SM
+possumus
+post's/IeF
+post-classical
+post-coital/Y
+post-communist
+post-Communist
+post-date/GDS
+post-entry/SM
+post-exposure
+post-feminism/M Noun: uncountable
+post-feminist/SM
+post-free
+post-haste/M
+post-horn/MS
+post-impressionism/SM
+post-impressionist/WSM
+post-industrial
+post-meiotic
+post-mortem/SM
+post-natal
+post-nuptial
+post-operative/Y
+post-orbit
+post-partum
+post-production/M Noun: usually uncountable
+post-structural
+post-structuralism/M Noun: uncountable
+post-structuralist/SM
+post-tension
+post-town/MS
+post-translational
+post-traumatic
+post-truth
+post-war
+post/7JDMRGSp
+Post/M
+postabdomen
+postabdominal
+postabortal
+postabortion
+postacetabular
+postage/SM
+postal/Y
+postbag/SM
+postbiblical
+postbox/MS
+postcard/SM
+postcode/SMD
+postcolonial/3
+postcolonialism/SM
+postcondition/SM
+postcranial/Y
+postdate/SGD
+postdoc/SM
+postdoctoral
+posted/AFI
+posteen/MS
+poster/ISM
+posterior/SY
+posteriori
+posteriority/MS
+posterity/MS
+Postern/M
+postern/MS
+posterolateral
+posteroventral/Y
+postethmoid
+postface/SM
+postfactor
+postfix/DSG
+postganglionic/Y
+postgenital
+postgenomic
+postglacial/Y
+postglenoid
+postgrad/SM
+postgraduate/MS
+posthetomy/M Noun: uncountable
+posthospital
+posthumous/PY
+posthypnotic
+postiche/SM
+postil/MS
+postilion/MSD
+postillation/SM
+postillion/SM
+postinfection/SMO
+postinfectious
+postinflammatory
+posting/SM
+postlanding
+Postle/M
+postliminy/MS
+Postling/M
+postlude/MS
+postman/M
+postmarital
+postmark/MSGD
+postmaster/MS
+postmen/M
+postmenopause/OM
+postmillennial
+postmillennialism/M Noun: uncountable
+postmillennialist/SM
+postmistress/MS
+postmodern/3SM
+postmodernism/M Noun: usually uncountable
+postmodernity/SM
+postmodify/RNSGD
+postmortem/SM
+postmultiply/SGDN
+postnarial
+postnasal
+postnatal/Y
+postnuptial
+Poston/M
+postoperative/Y
+postorbital/SM
+postpaid
+postpalatal
+postparietal
+postpectoral
+postperson/SM
+postpetiole/SM
+postpharyngeal
+postpituitary
+postponable
+postpone/LGDSr
+postposition/SO
+postpositive/Y
+postprandial/Y
+postreduction/O
+postreform
+postrenal
+posts/FIAe
+PostScript/M
+postscript/SM
+postsynapsis
+postsynaptic/Y
+posttransfusion/O
+posttreatment
+postulant/MS
+postulate/SnDGy
+postulator/MS
+posture/DOr
+posture/IMS
+posturing/SM
+postvocalic
+postwar
+Postwick/M
+postwoman/M
+postwomen/M
+posy/SMT
+pot-belly/DSM
+pot-boiler/SM
+pot-pourri/SM
+pot-shot/SM
+pot/RG6SZ7DgMp
+potability/SM
+potable/PSM
+potage/SM
+potamic
+potamology/M3
+potash/SM
+potassic
+potassium/M Noun: usually uncountable
+potassocene
+potato/M
+potatoes
+potboiler/SM
+potency/MS
+potent/YIS
+potentate/SM
+potential/YSM
+potentiality/SM
+potentiate/SDG
+potentiation/SM
+potentilla/SM
+potentiodynamic
+potentiometer/MS
+potentiometry/W1M
+potentiostat/SM
+potentiostatic/Y
+potentite/M Noun: uncountable
+potentness/M Noun: uncountable
+Potenza/M
+potestal
+potestas
+potestative
+potful/SM
+pothead/SM
+pother/dSM
+potherb/MS
+pothole/SMGD
+potholing/M Noun: uncountable
+pothook/SM
+pothunter/SM
+Potidaea/M
+potion/SM
+potlatch/MS
+potoroo/SM
+Potsdam/M
+Potsgrove/M
+potsherd/SM
+potshot/SM
+Pott/MS
+pottage/SM
+Pottawatomie/M
+Pottawattamie/M
+Potten/M
+potter/dZr
+Potter/MS
+Potterat/M
+Potterne/M
+Potterspury/M
+Potterton/M
+pottery/SM
+Pottesgrove/M
+Potto/M
+Potton/M
+Pottsgrove/M
+Pottstown/M
+Pottsville/M
+potty/TS
+Potyviridae Taxonomic family
+potyvirus/SM
+pouch/MDSG
+pouffe/SM
+Poughill/M
+Poughkeepsie/M
+Pouhgill/M
+Pouilly/M
+Poulenc/M
+Poulshot/M
+poulterer/SM
+poultice/DSMG
+Poulton-le-Fylde/M
+Poulton-with-Fearnhead/M
+Poulton/M
+Poultry/M
+poultry/MS
+pounce/DSG
+Pouncey/M
+pound/FGISD
+pound/M
+poundage/MS
+pounder/FM
+pounder/S
+Poundon/M
+Poundstock/M
+Poundstone/M
+Pounteny/M
+Pountney/M
+Poupinha/M
+pour/7GSDr
+pourboire/SM
+pourpoint/SM
+pourri/SM
+poussette/DGSM
+poussin/SM
+pout/GDSRk
+pouty/T
+poverty-stricken
+poverty/SM
+povidone/SM
+POW/SM
+pow/SM
+powan/SM
+Poway/M
+powder/dMSZr
+Powder/M
+Powderham/M
+powderpuff
+Powell/M
+power-hungry
+power-sharing/M Noun: uncountable
+power/6jdpSM
+Power/M
+powerbank/SM
+powerboat/SM
+PowerDVD/M
+powered/cf
+powerful/P
+powerhouse/SM
+powerless/PY
+powerlifter/SM
+powerlifting/M Noun: uncountable
+PowerPC/M
+PowerPoint/SM
+Powerstock/M
+Poweshiek/M
+Powhatan/M
+Powick/M
+powwow/SGDM
+Powys/M
+Powysland/M
+pox/SMD
+Poxwell/M
+poxy/T
+Poyle/M
+Poynings/M
+Poynting/M
+Poyntington/M
+Poynton-with-Worth/M
+Poynton/M
+Poyntzpass/M
+Poznań/M
+pp
+ppb
+ppi
+ppm
+PPP
+ppr
+PPS
+ppsx
+Pr
+Prabang/M
+practicability/SM
+practicable/IY
+practicableness/M Noun: uncountable
+practicably/I
+practical/IPY
+practical/S
+practicality/ISM
+practice/S7M
+practician/SM
+practise/SGDr
+practitioner/MS
+Pradaxa/M
+Praderie/M
+Pradesh/M
+Pradon/M
+Praed/M
+praelect/SGD
+praelection
+praelector/SM
+praeludium
+praenomen
+praeoperculum
+praepubis
+Praesidium/M
+praetor/MS
+praetorian/SM
+pragmatic/YSMO
+pragmatise/DGS
+pragmatism/SM
+pragmatist/SMW
+pragmatize/DGS
+Prague/M
+prahu/SM
+Praia/M
+Prairie/M
+prairie/SM
+praise/EDSG
+praise/rMk
+praiseworthy/P
+Prakrit/M
+prakriti/SM
+praline/SM
+pralltriller/SM
+pram/SM
+prana/SMW
+Pranav/M
+pranayama/SM
+prance/RGSDk
+prang/SGD
+prank/6SGDMZ
+prankish/P
+pranksome
+pranksomeness/M Noun: uncountable
+prankster/MS
+prannet/SM
+pranny/SM
+Prasad/M
+praseodymium/M Noun: usually uncountable
+prasinophyte/SM
+prat/SM
+Prata/M
+Pratchett/M
+prate/SRkDG
+pratfall/SM
+pratincole/SM
+Pratt/M
+pratt/SGD
+prattle/DRSGkM
+Prattville/M
+pravastatin/M Noun: uncountable
+prawn/DMGSR
+praxes
+praxis/M
+pray/RGDS
+Prayagraj/M
+prayer/j6p
+prayerbook/SM
+prayerful/P
+Prazeres/M
+PRC/SM
+pre-abdomen
+pre-adolescent
+pre-adult
+pre-Christian
+pre-conciliar
+pre-date/DSG
+pre-decimal
+pre-defined
+pre-echo
+pre-echoes
+pre-eclampsia
+pre-eclamptic
+pre-elect
+pre-election Adjective
+pre-embryo/SM
+pre-eminence/MS
+pre-eminent/Y
+pre-emphasis
+pre-employment/SM
+pre-empt/DVSvG
+pre-emption/SM
+pre-emptor/M
+pre-exist/DGS
+pre-existant
+pre-existence/SM
+pre-existent
+pre-ignition
+pre-implementation
+pre-industrial
+pre-install/SGD
+pre-made
+Pre-Nectarian
+pre-order/Sd
+pre-package/GSD
+pre-paid
+pre-plan/D
+pre-preference
+pre-prepare/D
+pre-press
+pre-print
+pre-privatisation
+pre-process/G
+pre-processor
+pre-programmed
+pre-pubescent
+Pre-Raphaelism/M
+Pre-Raphaelite/SM
+Pre-Raphaelitism/M
+pre-record/SDG
+pre-reflective
+pre-release
+pre-Roman
+pre-scientific
+pre-sell
+pre-service
+pre-set/S
+pre-shrink
+pre-shrunk
+pre-tax Adjective
+pre-teen/SM
+pre-tension/S
+pre-visualize
+pre-vocational
+pre-war
+pre-wash
+pre/Q8s
+preach/RJL
+preachiness/M Noun: uncountable
+preadapt/Dn
+preadaptive
+preadolescence/M Noun: uncountable
+preadolescent/SM
+preadvise/SGD
+preagricultural
+prealbumin/M Noun: uncountable
+preamble/SM
+preambular
+preamp/SM
+preamplifier/MS
+preamplify/SGD
+prearrange/L
+prearticular
+preassign
+prebendary/SM
+prebiotic/SM
+Preble/M
+prebuild/SG
+prebuilt
+Precambrian
+precancel/S
+precancerous
+precapitalist/SM
+precariat/SM
+precarious/PY
+precarium
+precartilaginous
+precast/SG
+precative
+precatory
+precaudal
+precausation
+precautional
+precedence/MS
+precedent/MDS
+precellular
+precensor/Sd
+precent/SGD
+precentor/SO
+precentorship
+precentory/M
+precentral
+precentress
+precentrix
+precept/VvMS
+preceptor/MS
+precess/GDSNx
+precession/SMO
+precharge/D
+precinct/MS
+preciosity/MS
+precious/SYP
+precipice/MS
+precipitable
+precipitant/SMY
+precipitate/YnSDPG
+precipitator/SM
+precipitin/SM
+precipitous/YP
+précis/dSM
+precise/NPIXY
+preciseness/IS
+preciser
+precisest
+precision/IM
+preclassic
+preclearance/SM
+preclude/DSXNG
+preclusive
+precocial
+precocious/YP
+precocity/MS
+precode/SGD
+precognitive/Y
+precoital/Y
+precolonial
+precompensation/M Noun: uncountable
+preconcert/D
+precondition/G
+preconfigure/SGD
+preconisation/S
+preconise/DGS
+preconization/S
+preconize/DGS
+preconscious/P
+precontest
+precontracted
+preconvulsive
+precopulatory
+precordial
+precordium/M
+precursor/SM
+precursory/SM
+precut/SG
+precycling
+predaceousness/M
+predaciousness/M
+predate/SGD
+predation/MCS
+predator/SMZ
+predawn
+predecessor/SM
+predecline
+predefine/SGD
+predestinarian/SM
+predestinate/DGS
+predestinationism/M
+predestine/SG
+predetermine/nD
+predevelopment
+predial/SM
+predicability/M
+predicable/SM
+predicament/MS
+predicant/SM
+predicate/VnSDGp
+predicational
+predicatival
+predicatively
+predicator/SM
+predict/DSvBGlV
+predictability/SM
+predictability/UM
+predictable/U
+predictably/U
+predictionism/M
+predictor/SM
+predigestion
+predilection/SM
+prednisolone/M Noun: usually uncountable
+prednisone/M Noun: usually uncountable
+predominate/Y
+predoom/DGS
+preen/DSGR
+Preen/M
+Prees/M
+Preesall/M
+preexistence/SM
+pref/SM
+prefab/DSMG
+prefabricator/SM
+preface's
+prefactor/SM
+prefatory
+prefect/MS
+prefecture/SMO
+prefer/DSl7G
+preferable/P
+preference/MS
+preferential/Y
+preferentialist/S
+prefetch/SGD
+prefigurative
+prefigure/n
+prefigurement
+prefill/SGD
+prefix/MN
+prefixation
+preflight/G
+preform
+preformation/3
+preformationism/M Noun: uncountable
+prefrontal/SM
+pregabalin/M Noun: uncountable
+preganglionic/Y
+pregastrular
+pregeniculate
+pregenital
+pregenitality
+pregeologic/O
+pregerminate/SGDN
+preglacial/Y
+preglenoid
+pregnability/M Noun: usually uncountable
+pregnable
+pregnancy/MS
+pregnant/SMY
+pregrowth
+preguide/SGD
+preharvest
+preheat
+prehensile
+prehension
+prehistorian/SM
+prehistorical
+prehuman/SM
+preimage/SM
+preinterview
+preisolated
+prejudice/SDMG
+prejudicialness
+prelabrum/M
+prelacy/SM
+prelapsarian
+prelate-martyr
+prelate/MS
+prelateship/SM
+prelatial
+prelatic/OY
+prelatism/M Noun: uncountable
+prelatist/SM
+prelaunch
+prelect/SGD
+prelection/SM
+prelector/MS
+preleukaemic
+prelibation/SM
+prelife
+prelim/SM
+preliminary/YSM
+prelimination
+prelimit/Sd
+prelingual
+prelinguistic/SY
+preliteracy/M Noun: uncountable
+preliterate/SM
+preload/SGD
+prelogic/O
+prelude/GMDSr
+preludial
+preludise/SGD
+preludium/M
+preludize/SGD
+prelumbar
+prelusion
+prelusive/Y
+prelusory
+prem/SM
+premandibular
+Premarin/M
+premarket/M
+premaster/Sd
+prematch
+prematerial
+premature/N
+premaxilla/y
+premed/wSM
+premedication
+premeditate/hDGS
+premenarche/O
+premier/MS
+premiere/OSGD
+première/SDGM
+premieress
+premiership/SM
+premillennialism/M Noun: uncountable
+premillennialist/MS
+premise/DSGM
+premiss/SM
+premium/SM
+Premnay/M
+premodern
+premodify/SGDNR
+premonish/G
+premonitor/MS
+premonitory
+Premonstratensian/MS
+premonstration
+premorality/M
+premorbid
+premorse
+premortal
+premotion/SM
+premotor
+Prempro/M
+premsie Adjective
+premultiply/SGDN
+premune
+premycotic
+premyelocyte/SM
+prenasal
+prenatal/Y
+Prendergast/M
+Prenger/M
+prenominal/Y
+Prensky/M
+prentice/DGMS
+Prentice/M
+prenticeship/MS
+Prentiss/M
+prenuptial
+preoperative/Y
+preoperculum
+preordain/GS
+preordainment
+prep/SM
+prepack
+preparation/M
+preparative/SM
+preparatorily
+prepare/rVviGnyh
+prepared/P
+prepay/LB
+prepend/SGD
+prepender/S
+prepense/Y
+preplan/SGD
+prepolymer/SM
+preponderance/MS
+preponderant/Y
+preponderate/GYSDN
+prepose/SGD
+prepositive
+prepossessing/U
+preposterous/PY
+prepotence/M
+prepotency/MS
+prepotent
+preprepared
+preprint/M
+preprocess/SGD
+preprocessor/SM
+preprogram/Sd
+preprogramme/SGD
+preprohormone/SM
+preproinsulin/M Noun: uncountable
+preprostatic
+prepubertal/Y
+prepuberty
+prepubescent/SM
+prepubic
+prepubis/M
+prequel/SM
+preradiation
+prereform
+prerenal
+prerequire/SGD
+prerequisite/SM
+prerequisition/M
+preretina/M
+prerogative/MS
+presage/GDr
+presbyopia/MS
+presbyter/SZMO
+presbyteral
+presbyterate/SM
+Presbyterian/MS
+Presbyterianism/M Noun: uncountable
+Presbyterianize/DGS
+presbytership/SM
+presbytery/SM
+preschool/SMr
+prescience
+prescient/Y
+prescind/DGS
+Prescot/M
+Prescote/M
+Prescott/M
+prescribable
+prescribe/vVr
+prescription/SM
+prescriptivism/SM
+prescriptivist/SM
+preseason/SM
+preselection/SM
+preselective
+preselector/SM
+presence/SM
+present-day
+present/nLYRS7xlDG3
+presentability/M
+presentable/P
+presentation/MAo
+presentational/A
+presentee/SM
+presentimental
+presentism/SM
+presentness/M Noun: usually uncountable
+presentor/SM
+preservable
+preservation/MO3
+preservationism/M Noun: uncountable
+preservative/SM
+preserve/DnV
+preset/GSM
+presexual
+preshared
+preshrunk
+Preshute/M
+preside/SGDr
+presidency/MS
+President/MS
+president/MS
+Presidential
+presidential/Y
+presidentialism/M Noun: uncountable
+presidia/M
+presidium/SM
+presignature/SM
+Presley/M
+presolar
+presort/GS
+Presque/M
+press-gang/D
+press-stud/S
+press-up/SM
+press/FIGSADC
+pressable
+presser's/I
+presser/MS
+pressing/YS
+pressman/M
+pressmen/M
+pressroom/SM
+pressure-cook/SGDr
+pressure/M8q-9GQsDS
+pressurised/U
+Prestatyn/M
+Prestbury/M
+Presteigne/M
+prestidigitate/n
+prestidigitator/MO
+prestige/SM
+prestigious/YP
+presto/SM
+Preston-on-Tees/M
+Preston-under-Scar/M
+Preston/M
+Prestonkirk/M
+Prestonpans/M
+prestressed
+prestressing
+prestructure/SGD
+Prestwich/M
+Prestwick/M
+Prestwold/M
+presumable
+presume/rvDSGVkl
+presumption/SM
+presumptuousness/S
+presymptomatic
+presynaptic/Y
+pretence/MS
+pretending/U
+pretension/Sp
+pretentious/YPU
+preterhuman
+preterite/SM
+preterm
+pretermission/MS
+pretermit/DGS
+preternatural/Y
+preternaturalism/M Noun: usually uncountable
+pretone/MS
+pretonic/MY
+Pretoria/M
+prettification/MS
+prettify/SDG
+pretty/GPYSTD~
+prettyism/SM
+pretzel/SM
+preux
+prevail/GkSD
+prevalent/Y
+prevaricate/DGSn
+prevaricator/MS
+prevenient
+prevent/lu7vVr
+preventability/SM
+preventable/U
+preventative/SMY
+prevention/MS
+preventive/SP
+preverb/SMO
+preview/G
+previous/Y
+previousness/M Noun: uncountable
+previse/DGS
+prevision/GSDMO
+previsualise/SGD
+previsualize/SGD
+previtamin/SM
+Prevnar/M
+Prevost/M
+Prévost/M
+prewarm/SGD
+prewarn/SGD
+prewash/SGD
+prey/DMGS
+Preziosi/M
+Prezista/M
+Priam/M
+priapic
+priapulid/SM
+Priapulida Taxonomic phylum
+Price/M
+price/Mp
+price/SADcG
+pricelessness/M
+Priceline/M
+pricer/MS
+pricey
+Prichard/M
+pricing/f
+prick/YRDGS
+pricking/M
+prickle/MDS2G
+prickly/T
+pricy/T
+Priddy/M
+pride/MS6jGDp
+Priest/M
+priest/MDSGYp
+priestcraft/M
+priestess/MS
+Priesthill/M
+priesthood/MS
+Priestley/M
+priestlike
+priestling/MS
+priestly/TP
+prig/SM
+priggery/M
+priggish/MYP
+priggism/M Noun: usually uncountable
+prim/ordTYP
+prima-donna
+prima/O
+primacy/SM
+primaeval/Y
+primality
+primaquine/M Noun: uncountable
+primary/YMS
+primase/SM
+primate/MS
+primateship/M Noun: usually uncountable
+primatial
+primatology/3wM
+primavera/O
+prime/PSY
+Primera/M
+primero/MS
+primestaff
+primetime
+primeval/Y
+primidone/M Noun: uncountable
+primigravida/M
+primigravidae/M
+primipara/M
+primiparae/M
+primiparous
+primitive/PSMY3
+primitivism/SM
+primitivistic
+primo/MS
+primogenital
+primogenitary
+primogenitive
+primogenitor/SM
+primogeniture/MS
+primordia/M
+primordial/YSM
+primordiality/MS
+primordium/M
+primp/GSD
+Primrose
+primrose/MSD
+primrosey
+primrosy
+primstaff
+primsy
+Primula
+primula/SM
+primulaceous
+primulin/SM
+primuline/SM
+primum
+primus/M
+Primus/MS
+prince/YSM
+princedom/SM
+princekin/MS
+princelet/MS
+princelike
+princely/PT
+Princes/M
+princeship/MS
+princess/MS
+Princethorpe/M
+Princeton/M
+Princeville/M
+principal/SMY
+principality/SM
+principate/MS
+Principe/M
+principii/M
+principle/SMD
+Pringle/M
+Pringles/M
+prink/DGS
+print/IDAGSaKc
+print/p
+printability
+printable/U
+printable/Y
+printer-plotter
+printer/AMIS
+printerdom/M
+printergram/M
+printery/SM
+printhead/SM
+printing/IM
+printing/S
+printmaker/SM
+printmaking/M Noun: uncountable
+printout/SM
+printworks
+Prioleau/M
+prion/SM
+Prior/MS
+prior/SYZM
+priorate/MS
+prioress/SM
+priori a priori
+priority/Q8q-s9SM
+priorship/MS
+Priorslee/M
+Priory/M
+priory/MS
+pris/M
+Priscilla/M
+Priscoan
+prise's/A
+prise/FSAGD
+prism/SMO
+prismatic/Y
+prismoid/MSO
+prison/SdMr
+prissy/TPY
+Pristina/M
+pristine/Y
+Pristiq/M
+Priston/M
+Pritchard/M
+prithee/S
+Prittlewell/M
+Pritzker/M
+prius/M
+privacy/SM
+private/nYTQ8S-qPVv
+privateer/MGS
+privateersman/M
+privateersmen/M
+privation/MC
+privatiser/SM
+privatism/SM
+privatist/W
+privatizer/SM
+privet/MS
+Privett/M
+privilege/SDMG
+privileged/Uf
+privity/MS
+privy/SMY
+Prix/M
+Priyanka/M
+prize/SM
+prizefight/RJSMG
+prizefighting/M Noun: usually uncountable
+prizeman/M
+prizemen/M
+prizewinner/SM
+prizewinning
+pro-American
+pro-angiosperm
+pro-attitude
+pro-cathedral
+pro-celeb
+pro-celebrity
+pro-choice
+pro-democracy
+pro-drop
+pro-ethnic
+pro-European
+pro-hunt/G
+pro-inflammatory
+pro-knock
+pro-legate
+pro-life/R
+pro-nuke
+pro-oxidant
+pro-Republican
+pro/GSM
+proa/MS
+proaction
+proactive/Y
+proactivity
+proarrhythmic
+probabiliorism/M Noun: uncountable
+probabiliorist/MS
+probabilism/M Noun: usually uncountable
+probabilist/W1
+probability/MIS
+probable/I
+probable/S
+probably/I
+proband/MS
+probandi/M
+probang/MS
+probate/SANM
+probation/ROoyM
+probationary/SM
+probationership/MS
+probative
+probe/RBnDGlSM
+probeable
+probiotic/SM
+probit/MS
+probity/SM
+problem/MSwW1
+problemage
+problematicalness
+problematique/SM
+problématique/SM
+problematise/SGDN
+problematize/SGDN
+problemist/MS
+proboscic
+proboscidate
+Proboscidea Taxonomic order
+proboscideal
+proboscidean/SM
+proboscidial
+proboscidian/SM
+proboscidiform
+probosciform
+proboscis/SM
+Probus/M
+procaine/SM
+procaryote/SM
+procedural/SM
+procedure/MSo
+proceed/DJGSR
+proceeding/M
+proceleusmatic/MS
+process/7MSGxD
+processed/UA
+processer/MS
+procession/SM3
+processional/SM
+processionary/MS
+processor/MS
+processual
+prochemerin/M Noun: uncountable
+prochiral
+prochirality/SM
+prochlorperazine/M Noun: uncountable
+prochronism/MS
+proclaim/DRS7G
+proclamation/MS
+proclamatory
+proclitic/MSY
+proclivity/MS
+Proclus/M
+procoagulant/SM
+proconsul/MS
+proconsular
+proconsulate/MS
+proconsulship/MS
+procrastinate/SGDn
+procrastinative
+procrastinator/MS
+procrastinatory
+procreant
+procreate/VGyxDSn
+procreativity
+Procrit/M
+Procrustean
+Procrustes/M
+proctology/3w
+proctoparalysis
+proctoplasty
+proctoptosis
+proctor/dMSO
+proctorship/MS
+proctoscope/MS
+procumbent
+procurable/U
+procuracy/SM
+procural/MS
+procurance/MS
+procuration/SM
+procurationem
+procurator/SMO
+procuratorship/MS
+procuratory/M
+procure/LDSGR
+procuress/SM
+prod/GDSM
+prodelision/MS
+Prodi/M
+prodigal/SMY
+prodigality/SM
+prodigious/YP
+prodigy/SM
+prodrome/MSO
+prodromic
+prodrug/SM
+produce/cDSGAn
+producer/AMS
+producible
+product/QVMsvSu
+production's/Af
+production/Kf
+productions/f
+productive/UY
+productiveness/SM
+productivity/SM
+proem/MS
+proemial
+Proença/M
+proenkephalin/SM
+proenzyme/SM
+Prof.
+prof/MS
+profane/RDPSGYn
+profanity/SM
+profeminist/SM
+profess/DxhSG
+profession/MSp
+professional/Q8SY
+professionalisation
+professionalism/MS
+professionalization
+professor/OoSM
+professorate/M
+professoress/MS
+professoriate/M
+professorship/SM
+proffer/dS
+proficiency/SM
+proficient/Y
+profile/RGDSM
+profilist/MS
+profit-taking/SM
+profit/Mpgdl7S
+profitable/PZ
+profiteer/DGSM
+profiterole/MS
+profligacy/SM
+profligate/SMY
+proforma/SM
+profound/PYT
+profundi/M
+profundity/SM
+profundo/M
+profuse/YP
+profusion/SM
+prog/MS
+progenitive
+progenitor/OSM
+progenitorship/MS
+progenitress/MS
+progenitrices
+progenitrix/M
+progeniture/M
+progeny/SM
+progeroid
+progesterone/SM
+progestin/SM
+progestogen/SMW
+proglacial
+prognathic
+prognathism/SM
+prognathous
+prognoses
+prognosis/M
+prognostic/nNVS
+prognosticable
+prognosticate/DGSn
+prognosticator/SMZ
+prograde/SGDn
+program/BRGSJDMC
+programmable/S
+programmatically
+programme/WSMGD
+progranulin/SM
+progress/GMuSDNXVv
+progression/M3O
+progressive/PS3
+progressivism/M Noun: usually uncountable
+prohibit/rdvuSVy
+prohibition/3SM
+prohibitionism/M Noun: uncountable
+Prohibitionist/MS
+prohibitive/P
+prohibitor/MS
+prohibitorily
+prohormone/SM
+proinflammatory/SM
+proinsulin/SM
+project/SDVvMG7
+projectile/SM
+projection/3SM
+projector/SM
+prokaryote/SMW
+prokinetic
+Prokofiev/M
+Proksa/M
+prolactin/M Noun: usually uncountable
+prolactinoma/SM
+prolapse/GSDM
+prolapsus/M
+prolate/PY
+prolative/SM
+prole/SM
+proleg/SM
+prolegomena/M
+prolegomenary
+prolegomenon/M
+prolegomenous/Y
+prolepses
+prolepsis/M
+proleptic
+proletarian/Q8-qS
+proletarianism/M Noun: usually uncountable
+proletariat/SM
+proliferate/GnDSV
+proliferous
+prolific/YP
+prolificacy/SM
+prolificity/MS
+proline/SM
+prolix/YP
+Prolixin
+prolixity/SM
+prolly
+prolocutor/MS
+prolocutorship/MS
+prologise/SGD
+prologize/SGD
+prologue/SMGD
+prologuise/SGD
+prologuize/SGD
+prolong/hnSDGr
+prolusion/SM
+prolusory
+prom/QMSs
+promenade/RMSGD
+promession/SM
+promethazine/M Noun: uncountable
+Promethean/SM
+Prometheus/M
+promethium/M
+promilitary
+prominence/MS
+prominency/M
+prominent/Y
+promiscuity/MS
+promiscuous/PY
+promise/FRkDGS
+promisee/SM
+promising/UY
+promisor/MS
+promissory
+promo/SMVu
+promontory/SM
+promote/SRxBGD
+promotion/MS
+promovent
+prompt/PYRJTSGD
+promptitude/MS
+promptive
+promptress
+promptuary/SM
+promulgate/GSnD
+promulgator/SM
+promulge/DGS
+promycelia/M
+promycelium/M
+promyelocyte/SM
+pronate/SGDN
+pronation/MS
+pronator/SM
+prone/PY
+proneur/MS
+proneural
+prong/DMGS
+pronghorn/MS
+pronominal/Y
+pronominalize/DGS
+pronotum/M
+pronoun/SM
+pronounce/aGDS
+pronounce/h
+pronounceable/U
+pronouncement/SM
+pronouncer/SM
+pronto
+pronuclei
+pronucleus
+pronunciamento/MS
+pronunciation/aSM
+proof-read/GSr
+proof/Dpr
+proof/EASM
+proofing/M
+proofread/SGR
+prootic
+proöxidant
+prop/MSGD
+propaedeutic/O
+propaedia
+propafenon
+propafenone/SM
+propagability/M
+propagable
+propaganda/SMW
+propaganded
+propagandise/DSG
+propagandism
+propagandist/SWM1
+propagandize/SGD
+propagate/nVGDS
+propagator/SM
+propagule/SM
+propane/SM
+propanoic
+proparoxytone/MS
+propel/RSDnG
+propellant/MS
+propellent/SM
+propene/SM
+propensity/SM
+proper/IPY
+property/DSM
+propertyless
+prophase
+prophecy/SM
+prophesiable
+prophesy/RDSG
+prophet/1WSwMpY
+prophetess/SM
+prophethood/SM
+propheticism/MS
+prophetise/SGD
+prophetism/SM
+prophetize/SGD
+prophetocracy/SM
+prophetry/M
+prophetship/SM
+prophylactic/SMY
+prophylaxes
+prophylaxis/M
+propinquity/SM
+propionate/SM
+propionic
+propionyl/SM
+propitiate/ynSDG
+propitiatorily
+propitious/U
+propitious/Y
+propitiousness/M Noun: uncountable
+propofol/SM
+propolis/M
+proponent/MS
+proportion/EDSGMo
+proportion/pr
+proportionability/M Noun: uncountable
+proportionable/Z
+proportional/SM3
+proportionality/SM
+proportionate/EYS
+proportionment/M
+proposal/SM
+propose/DRGSx
+proposition/SGDM
+propound/SDGr
+proppant/SM
+propranolol/SM
+propria
+proprietary/SM
+proprietor/SM
+proprietorial/Y
+proprietorship/SM
+proprietress/MS
+propriety/SMI
+proprio/MS
+proprioception/SM
+proprioceptive/Y
+proprioceptor/SM
+propshaft/SM
+proptosis/M
+propulsion/SM
+propulsive
+propyl/SM
+propyla/M
+propylene/SM
+propylon/MS
+prorate/DNSG
+prorogation/MS
+prorogue/DGS
+pros/S
+prosaic/Y
+prosaicness/M Noun: uncountable
+prosaism/MS
+prosaist/MS
+prosauropod/SM
+proscenia/M
+proscenium/SM
+prosciutto/M
+proscribe/DSXVGNr
+proscription/SM
+prose/SGDZMR
+prosecutable
+prosecute/GDS
+prosecution/MS
+prosecutor/SMO
+prosecutorship/SM
+prosecutrix/M
+proseity/M
+proselytation/M
+proselyte/MGs9DS
+proselytise/SGDN
+proselytism/SM
+proselytize/SGDN
+prosencephalic
+prosencephalon
+prosenchyma/M
+prosenchymatous
+prosequi/M nolle prosequi
+prosify/DGS
+prosiness/M Noun: usually uncountable
+prosit
+proslambanomenos
+prosneusis
+prosobranch
+Prosobranchia Taxonomic subclass
+prosobranchiate
+prosobranchs
+prosocial
+prosodeme/SM
+prosodic/SOY
+prosodist/SM
+prosody/OWSM
+prosoma
+prosome/SM
+prosopagnosia/SM
+prosopographer/MS
+prosopographic/OY
+prosopography/SM
+prosopopoeia/M
+prospect/GMvVuSDp
+Prospect/M
+prospective/PSM
+prospector/SM
+prospectus/MS
+prosper/dS
+Prosperin/M
+prosperity/SM
+Prospero/M
+prosperous/YP
+Prosser/M
+prostacyclin/SM
+prostaglandin/SM
+prostate/SMW
+prostatectomy/SM
+prostatitis
+prostheses
+prosthesis/M
+prosthetic/SMY
+prosthodontics
+prosthodontist/SM
+prostitute/MGDS
+prostitution/MS
+prostrate/nDSG
+prostyle/MS
+prosy/TY
+protactinium/M
+protactinocene
+protagonist/MS
+protamine/MS
+protandrous
+protandry/M Noun: uncountable
+protea/MSW
+Proteaceae Taxonomic family
+Proteales Taxonomic order
+protean/SY
+proteas/S
+protease/SM
+proteasome/SM
+protect/cVGSD
+protected/U
+protected/Y
+protection/cM
+protection/SM
+protectionism/SM
+protectionist/SM
+protective/SYP
+protector/MSOpZ
+protectoral
+protectorate/MS
+protectorship/SM
+protectress/SM
+protectrix
+protégé/MS
+protege/SM
+protégée/SM
+protegee/SM
+proteiform
+protein/SMW
+proteinaceous
+proteinase/SM
+proteinous
+Proteobacteria Taxonomic phylum
+proteoglycan/SM
+proteolysis/M
+proteolytic
+proteome/SM
+proteomic/S
+Proterozoic
+protest/RSMnkDG
+Protestant/MS
+protestant/SM
+Protestantism/M
+protestantism/M Noun: uncountable
+Protestantize/DGS
+protestor/SM
+Proteus/M
+proteus/M
+prothalamia/M
+prothalamium/M
+prothallial
+protheses
+prothesis/M
+prothetical/Y
+prothonotariat/SM
+prothonotary/SM
+prothonotaryship/SM
+prothoracic
+prothorax
+prothrombin/SM
+prothyl/M
+protist/SM
+Protista Taxonomic kingdom
+protistan/SM
+protistology/wM
+proto-Earth/M
+Proto-Germanic
+Proto-Indo-European
+proto-technosphere/M
+protobiont/SM
+protobird/SM
+protocanonical
+protocol/SM
+protocone/SM
+protoctist/SM
+Protoctista
+protofeminist Adjective
+protofibril/SM
+protofilament/SM
+protoform/SM
+protogalactic
+protogalaxy/SM
+protogastric
+protogeneous
+protogenetic
+protogynous
+protogyny
+protohippus
+protolanguage/SM
+protolunar
+protomartyr/MS
+protomoon/M
+proton/MSW
+protonate/DN
+protonium/SM
+protonosphere/SM
+protonotariat/M
+Protonotary
+protonotary/SM
+protopectin/SM
+protophyte/MS
+protoplanet/SM
+protoplanetary
+protoplasm/OSWM
+protoplasmatic
+protoplast/SMW
+protoscientific
+protosolar
+protostar/SM
+protostellar
+protostome/SM
+protosulfate/M
+protosulphate/SM
+protosun/SM
+protosyntactical
+protosyntax/M Noun: uncountable
+prototaxic
+prototheca
+prototheme/SM
+protothere
+prototherian/SM
+prototype/OWGSM1Dw
+Protozoa
+protozoa/WO
+protozoan/SM
+protozoological/Y
+protozoology/3M
+protozoölogy/M
+protozoon/M
+protract/GSDh
+protractile
+protractility
+protraction/MS
+protractive
+protractor/SM
+protrude/SVuvDG
+protrudent
+protrusible
+protrusile
+protrusion/SM
+protuberance/SMp
+protuberant
+proturan/SM
+protyle/SM
+proud/YT
+Proudman/M
+Proustian
+Proustiana
+proustite/SM
+Prout/M
+provability/MS
+provable/Y
+prove/EBSGD
+proved/AI
+proven/U
+provenance/SM
+Provençal/M
+Provence/M
+provender/SM
+provene
+provenience/MS
+Proventil/M
+proverb/oMS
+proverbial
+proverbiality/MS
+proves/AI
+providable
+provide/NDRXSxG
+Providence/M
+providence/SIM
+provident/IY
+providential/Y
+province/oMS
+Provincetown/M
+provincial/SM
+provincialism/MS
+provincialist/MS
+provinciality/MS
+provincialize/DGS
+Provine/M
+proving/IA
+proviral
+provirus/SM
+provision/rDMGp
+provisional/SM
+provisionality/MS
+provisionalness/M Noun: uncountable
+provisionment/MS
+Proviso/M
+proviso/MS
+provisor/SMZ
+provisorily
+provisorium
+provitamin/SM
+Provo/MS
+provocateur/SM
+provocative/PS
+provoke/VuSRGknvD
+provolone/M Noun: usually uncountable
+Provost/M
+provost/SM
+provostship/MS
+prow/SM
+Prowers/M
+prowess/MS
+prowl/RSDG
+Prowse/M
+Proxima Proxima Centauri
+proximal/Y
+proximate/YP
+proxime
+proximity/MS
+proximo
+Proxmire/M
+proxy/MSGD
+Prozac/M Trademark
+prude/MyS
+prudence/ISM
+prudent/IY
+prudential/YS
+prudentialism/M Noun: uncountable
+prudentialist/MS
+prudery/SM
+Prudhoe/M
+prudish/PY
+pruinose
+prune/DGRSM
+Prunella/M
+prunella/MS
+prunetin/M
+prunish
+prunitrin/M
+prurience/SM
+pruriency/MS
+prurient/Y
+pruriginous
+prurigo/M
+pruritus/W
+Prusak/M
+Prussia/M
+Prussian/SM
+Prussianize/DGS
+prussic
+pry/TkDRGS
+Prynne/M
+Przibram/M
+PS
+psalm/M3S
+Psalm/MS
+psalmodist/MS
+psalmodize/DGS
+psalmody/MW
+psalter/SM
+psalterium/MS
+psaltery/SM
+psephite/SMW
+psephocracy/M Noun: uncountable
+psephocrat/M
+psephology/Mw13
+psephomancy/M Noun: uncountable
+pseud/SM
+pseudepigrapha/O
+pseudepigraphic/O
+pseudepigraphous
+pseudepigraphy/SM
+pseudo-intellectual/SM
+pseudo-science/WSM
+pseudo/SM
+pseudobulb/SM
+pseudobulbar
+pseudobulbil/M
+pseudocarp/SM
+pseudocele/SM
+pseudocholinesterase/SM
+pseudochrysolite/M
+pseudocirrhosis
+pseudocode/SMD
+pseudocoel/SM
+pseudocoele/SM
+pseudocoelom/SM
+pseudocoelomate/SM
+pseudocolour/SMG
+pseudocompatibility/M
+pseudocone/SM
+pseudoconglomerate/M
+pseudocopulation/SM
+pseudocortex
+pseudocosta/M
+pseudocostate Adjective
+pseudocubic/O
+pseudocumene/SM
+pseudocyphella
+pseudocyst/SM
+pseudoephedrine/SM
+pseudogamy/M Noun: uncountable
+pseudogley/SM
+pseudoglioma
+pseudoglobulin/M
+pseudogout/M Noun: uncountable
+pseudograph/MRS
+pseudohyponatraemia/MW
+pseudomembrane/SM
+pseudomembranous
+pseudomonas
+pseudomonocotyledonous
+pseudomorph/SGDW1M
+pseudomorphism/SM
+pseudomorphosis
+pseudomorphous/Y
+pseudonym/MS
+pseudonymity/M Noun: usually uncountable
+pseudonymous/Y
+pseudopericyclic
+pseudopod/SM
+pseudopodia/MO
+pseudopodium/M
+pseudorandom/Y
+pseudoreligion/SM
+pseudoreligious
+pseudoscience/MSW
+pseudoscientist/SM
+pseudosclerosis
+pseudoscope/SMWZ
+pseudoscorpion/SM
+pseudoseptate
+pseudosexual/Y
+pseudosopher/SM
+pseudosophy/M
+pseudospeciation/SM
+pseudospecies
+pseudosphere/MSw
+pseudospiracle/M
+pseudosporangium
+pseudospore/SM
+pseudostem/SM
+pseudostigma/W
+pseudostratified
+pseudotetragonal
+pseudotetramerous
+pseudotillite/M
+pseudotriangle/SM
+pseudouridine/SM
+pseudoword/SM
+pshaw/SGD
+psi/SM
+psilanthropic
+psilanthropism/M Noun: uncountable
+psilanthropist/MS
+psilocybin/SM
+psilomelane/SM
+psilophyte/SM
+psilosis/M
+psilothrum/M
+Psion/M
+psionic/SY
+psittacine/MS
+psittacoses
+psittacosis/M
+psoralen/SM
+psoriases
+psoriasiform Adjective
+psoriasis/M
+psoriatic
+Pspell/M
+psst/S
+PST
+psych/1GSWDw
+psyche/SM
+psychedelia/SM
+psychedelic/YSM
+psychiatry/W3MSw1
+psychic/SM3
+psychicism/M Noun: uncountable
+psychist/SM
+psycho-aesthetic/S
+psycho-educational
+psycho/SM
+psychoacoustic/SOY
+psychoacoustician/SM
+psychoactive/SM
+psychoanalyse/WDSG
+psychoanalysis/M
+psychoanalyst/SM
+psychoanalytical/Y
+psychobabble/r
+psychobilly/M Noun: uncountable
+psychobiographer/SM
+psychobiography/SM
+psychobiology/M3w
+psychobiotic/SM
+psychocentric
+psychochemical
+psychochemistry/M Noun: uncountable
+psychocoma/M
+psychocultural
+psychodiagnosis/M
+psychodiagnostic/S
+psychodrama/SM
+psychodramatics
+psychodramatist/SM
+psychodynamic/SY
+psychogenesis/M
+psychogenic
+psychogeriatric/S
+psychogeriatrician/SM
+psychograph/1MGDW
+psychographer/SM
+Psychographics
+psychography/M Noun: usually uncountable
+psychohistory/SM
+psychokinesis/M Noun: usually uncountable
+psychokinetic
+psycholinguist/SM
+psycholinguistic/S
+psychologics
+psychologise/SGDNR
+psychologism/SM
+psychologistic/Y
+psychologize/SGDNR
+psychologue/SM
+psychology/MS31w
+psychomedicine/M Noun: uncountable
+psychometric/SY
+psychometrician/SM
+psychometry/WM3
+psychomotor
+psychoneuroses
+psychoneurosis/M
+psychoneurotic
+psychonomy/M
+psychopannychism/M Noun: uncountable
+psychopannychy/SM3
+psychopath/ZSMW3
+psychopathic/SY
+psychopathology/Mw3
+psychopathy/SM
+psychopetal
+psychopharmacology/M3Ww
+psychophonetic/S
+psychophony/M Noun: uncountable
+psychophysic/3YOS
+psychophysiologic/O
+psychophysiology/3M
+psychopolitical
+psychopolitics
+psychos/S
+psychosexual/Y
+psychosis/M
+psychosocial/Y
+psychosomatic/SY
+psychosomimetic
+psychosphere/SM
+psychospiritual
+psychostasia/M Noun: uncountable
+psychostasy/M Noun: uncountable
+psychostatic/S
+psychostimulant/SM
+psychosurgeon/SM
+psychosurgery/SM
+psychosurgical
+psychosyndrome/SM
+psychosynthesis
+psychosynthesist/M
+psychotechnic/O
+psychotechnology/3SM
+psychotheism/M Noun: uncountable
+psychotherapeutic/SOY
+psychotherapy/SM3
+psychotic/SMY
+psychoticism/SM
+psychotomimetic
+psychotronics
+psychotropic/SM
+psychrometer/MS
+psychrophile/SMW
+psychs
+psyllium/M Noun: usually uncountable
+pt
+PTA
+ptarmigan/SM
+pteridological
+pteridologist/MS
+pteridology/M Noun: uncountable
+pteridophyte/SM
+pterodactyl/MS
+pteropod/MS
+pteropodid/SM
+Pteropodidae Taxonomic family
+Pteropus Taxonomic genus
+pterosaur/SM
+pteroylglutamic
+pterygoid/SMO
+Pterygota Taxonomic subclass
+PTO
+Ptolemaeus/M
+Ptolemaic
+Ptolemy/M
+ptomaine/MS
+ptosis/M
+ptyalin/M Noun: usually uncountable
+Pu/M
+pub/MWSDG
+pubertal
+puberty/MS
+pubes
+pubescence/KS
+pubescent/K
+pubis/M
+public's/A
+public-spirited
+public/3MQ8n
+publican/ASM
+publication/KMA
+publicised/U
+publicism/M
+publicistic
+publicity/SM
+publicized/U
+publicly
+publish/R7SJDG
+publishable/U
+published/A
+publishes/A
+publishing/M
+Publow/M
+Puccini/M
+puccoon/MS
+puce/KMS
+puck/SM
+pucker/dSZ
+Puckett/M
+Puckington/M
+puckish/YP
+Pucklechurch/M
+pucklike
+Pudding/M
+pudding/SM
+Puddington/M
+puddingy
+puddle/SGJYDMr
+Puddletown/M
+puddling/M
+pudency
+pudenda/O
+pudendous
+pudendum/M
+Pudge/M
+pudgy/TP
+pudic
+Pudleston/M
+Pudlestone/M
+Pudsey/M
+Puducherry/M
+Puebla/M
+Pueblo/M
+pueblo/SM
+Puente/M
+puerile/Y
+puerility/MS
+Puerorum/M
+puerperal
+Puerto/M
+puff/RSZD2MG
+puffball/MS
+puffbird/SM
+pufferfish/SM
+puffin/MS
+puffy/T
+pug/SMGD
+Puget/M
+puggish
+puggy
+pugilism/MS
+pugilist/WSM
+Pugin/M
+pugnacious/YP
+pugnacity/SM
+pugnant Adjective
+pugree
+pugreed
+Pugwash/M
+Puhinui/M
+Puhoi/M
+Puigdemont/M
+Puiseux/M
+puisne/SM
+puissance/SM
+puissant/Y
+puja/SM
+puke/GDSM
+Pukehiki/M
+pukeko/MS
+Pukekohe/M
+Pukelsheim/M
+Pukepoto/M
+Pukerua/M
+Pukete/M
+Pukeuri/M
+pukish Adjective
+pukka Adjective
+pukkah Adjective
+puku/MS
+pulao/SM
+Pulaski/M
+Pulborough/M
+pulchritude/SM
+pulchritudinous/M
+pule/GDS
+Pulford/M
+Pulham/M
+Pulitzer/M
+pull-back/SM
+pull-down
+pull-in/SM
+pull-out/SM
+pull/RDGSM
+pullet/SM
+pulley/SM
+Pullman/MS
+pullover/SM
+Pulloxhill/M
+pullulant
+pullulate/DGS
+pullulation/MS
+Pullum/M
+pulmonaria/SM
+pulmonary Adjective
+pulmonate/SM
+pulmonic/SM
+pulmonology/3M
+pulp/prDMS2GZ
+pulpit/SM
+pulpiteer/MS
+pulposus
+pulpous
+pulpwood/SM
+pulpy/T
+pulque/SM
+pulsar/SM
+pulsate/SnDGy
+pulsatility/SM
+pulsatilla
+pulsator/MS
+pulse/ADSIG
+pulse/Mpr
+pulsimeter/MS
+Pulteneytown/M
+Pultneytown/M
+Pulverbatch/M
+pulverisable
+pulverisator/MS
+pulverise/SGDnr
+pulverizable
+pulverizator/MS
+pulverize/SGDnr
+pulverulent
+pulvinar/SM
+puma/SM
+pumice/DSMG
+pumiceous
+Pumlumon/M
+pummel/DGS
+pummelo/SM
+pump/GDMSr
+pumpernickel/SM
+Pumpherston/M
+pumping/M
+pumpkin/MS
+pumpkinseed/SM
+pun/SGDM
+puna/MS
+Punakaiki/M
+punch/RGSD7JZ
+Punchardon/M
+punchbag/SM
+punchball/SM
+punchbowl/SM
+punchcard/SM
+puncheon/SM
+Puncheston/M
+Punchinello/MS
+punchline/SM
+punchy/T
+Puncknowle/M
+puncta/M
+punctate
+punctation/MS
+punctatissima
+punctilio/SM
+punctilious/PY
+punctual/YP
+punctuality/S
+punctuality/UM
+punctuate/DSGxn
+punctum/M
+puncture/DSMG
+pundit/MS
+punditry/SM
+Puneet/M
+pungency/SM
+pungent/Y
+punicic Adjective
+punish/DGL7Sr
+punitive/PY
+punitory
+Punjab/M
+Punjabi/MS
+punk/T2SMZ
+punkah/MS
+punkier
+punner/MS
+punnet/SM
+Punnett/M
+punningly
+punster/SM
+punt/RGDMSZ
+Punta/M
+puny/PT
+pup/SMNZDG
+pupa/MO
+pupae/M
+pupate/DSG
+pupil/SM
+pupillage/M
+pupilship/MS
+pupiparous
+puppet/MSy~
+puppetdom
+puppeteer/SMG
+puppetism/M Noun: uncountable
+puppetmaster/SM
+puppetry/SM
+Puppis/M
+puppy/SM~
+puppydom/M Noun: uncountable
+puppyhood/SM
+Purana/SMW
+Purbeck/M
+purblind/Y
+purblindness/M Noun: uncountable
+Purcell/M
+Purchas/M
+purchasable
+purchase/SARGD
+purdah/SM
+Purdis/M
+pure-bred/SM
+pure/P3TY
+PureBasic/M
+purée/DMS
+puree/Sd
+puréeing
+purely/I
+purer/I
+purest/I
+purfle/SMGDJ
+purgative/SM
+purgatory/MSO
+purge/DRSGVn
+puri/MS
+purificator/MSZ
+purify/SnRDG
+Purim/M
+purine/SM
+purism/SM
+purist/WMSw
+Puritan/MS
+puritan/wS1MW
+puritanism/SM
+puritanize/DGS
+Puriton/M
+purity/ISM
+purl/GSDM
+Purleigh/M
+purler/MS
+Purley/M
+purlieu/SM
+purlin/SM
+purloin/SDGr
+purloinment/SM
+puromycin/SM
+purple/TSMGDZ
+purplish
+purport/RGDSh
+purpose-built
+purpose/6MvpVDjuSGY
+purposefulness/S
+purposeless/PY
+purposive/P
+purpura/W
+purpure/M
+purpurin/M
+purr/GDSk
+purse/GRDMSpZ
+Purse/M
+pursership/MS
+pursiness/M
+purslane/M Noun: usually uncountable
+pursuable
+pursuance/MS
+pursuant/Y
+pursue/DRSG
+pursuit/MS
+pursuivant/MS
+Purton/M
+Puru/M
+Purua/M
+purulence/SM
+purulency/MS
+purulent/Y
+Purushothaman/M
+Purves/M
+purvey/DGS
+purveyance/MS
+purveyor/MS
+purview/MS
+Purvis/M
+pus/ZM
+Pusan/M
+Pusey/M
+Puseyism/M
+Puseyite/MS
+push-button/SM
+push-pull
+push-up/SM
+push/SR72GzDZ
+pushback
+pushbike/SM
+pushcart/MS
+pushchair/SM
+pushful/YP
+Pushkin/M
+Pushmataha/M
+pushover/MS
+pushpit/SM
+pushrod/SM
+Pushtu/M
+pushy/T
+pusillanimity/SM
+pusillanimous/Y
+puss/S
+pussy-cat/S
+pussy-whip/D
+pussy/MS
+pussycat/SM
+pussyfoot/GDSr
+Pustovoitova/M
+pustular
+pustulate/GN
+pustule/SM
+pustulous
+put-down
+put-up
+put-you-up
+put/DRGZS
+putamen/SM
+putamina/M
+Putaruru/M
+putative/Y
+Putford/M
+Putin/M
+Putley/M
+putlock/MS
+putlog/MS
+Putnam/M
+Putney/M
+Putorino/M
+Putrajaya/M
+putrefacient/MS
+putrefaction/SM
+putrefactive
+putrefy/GSD
+putrescence/MS
+putrescent
+putrescible
+putrescine/SM
+putrid/PY
+putridity/M
+puts/e
+putsch/SM3
+putt/MS
+putted/e
+puttee/MS
+Puttenham/M
+putter/d
+putti/M
+putto/M
+putty/MSDG
+puttying/M
+Puxton/M
+puy/MS
+Puyallup/M
+puzzle/LRSkJDG
+PVC
+pvt
+PW
+Pwellcrochan/M
+Pwllgwyngyll/M
+Pwllheli/M
+Pwllypant/M
+PX
+pyaemia/W
+Pyburn/M
+Pychard/M
+pycnogenol/M
+Pyder/M
+Pye/M
+Pyecombe/M
+pyelitis/M
+pyelogram/MS
+pyelonephritic
+pyelonephritis
+Pyes/M
+pygal/SM
+pygarg/SM
+pygidia/M
+pygidium/M
+pygmaean
+Pygmalion/M
+Pygmalionism/M Noun: uncountable
+pygmean
+pygmy/MS
+pyjama/MSD
+Pyke/M
+pyknic/SM
+Pyle/M
+Pylle/M
+pylon/SM
+pylori/M
+pylorus/MW
+Pynchon/M
+Pyne/M
+Pyon/M
+Pyong-so/M
+Pyongyang/M
+pyopneumothorax/M Noun: uncountable
+pyorrhoea/SM
+Pypard/M
+pyracantha/SM
+pyralid/SM
+pyramid/SMOo
+pyramis
+pyran
+pyrane
+pyranose/SM
+pyrargyrite/SM
+pyrazolone/SM
+pyre/MS
+pyrectic
+pyrene/SM
+Pyrenean/SM
+Pyrenees/M
+pyrethroid/SM
+pyrethrum/MS
+pyretic
+Pyrex/M
+pyrexia/O
+pyrexic/O
+Pyrford/M
+pyrheliometer/MS
+pyridine/SM
+pyridoxal
+pyridoxamine/SM
+pyridoxine/SM
+pyridoxol
+pyriform
+pyrimidine/SM
+pyrite/MSW
+pyritiferous
+pyritize/DGS
+pyritous
+pyro/M
+pyrochlore/SM
+pyroclast/SM
+pyroclastic/SM
+pyrocoll
+pyrogallic
+pyrogallol/M
+pyrogenic
+pyrogenicity
+pyrography/M
+pyrolatry/M
+pyroligneous
+pyrolysate/SM
+pyrolyse/GSWD
+pyrolysis/M
+pyrolyzate/SM
+pyromancy/M
+pyromania/SM
+pyromaniac/MS
+pyrometer/MSW
+pyrometry/M Noun: uncountable
+pyromorphite/M Noun: usually uncountable
+pyrope/SM
+pyrophoric
+pyrophosphate/SM
+pyrophyllite/SM
+pyroptosis
+pyrosis
+pyrotechnic/SY
+pyrotechnist/SM
+pyrotechny/Ww
+pyroxene/MS
+pyroxenite/SM
+pyroxenoid/SM
+pyroxylin/SM
+Pyrrha/M
+pyrrhic/MS
+Pyrrho/M
+Pyrrhonian/MS
+Pyrrhonic/MS
+Pyrrhonism/SM
+Pyrrhonist/SMW
+pyrrhotite/M Noun: usually uncountable
+pyrrole/SM
+pyrrolidone/SM
+pyrrolizidine/SM
+Pyrton/M
+pyruvate/SM
+pyruvic
+Pytchley/M
+Pythagoras/M
+Pythagorean/SM
+Pythagoreanism/M Noun: uncountable
+Pythagoric
+pythagorically
+Pythagorician
+Pythian
+pythogenic
+Python/M
+python/MWS
+Pythonesque
+pythoness/MS
+pythonid/SM
+pyuria/SM
+Pyworthy/M
+pyx/SM
+pyxides
+pyxidia
+pyxidium
+pyxis
+q
+Q-boat/SM
+Q-ship/SM
+q.t./SM
+Q1
+Q2
+Q3
+Q4
+QA
+Qa'ida/M
+Qabalah/M
+Qadir/M
+Qaeda/M
+Qantas/M
+Qatar/M
+Qatari/SM
+QC/SM
+QCD/M Noun: uncountable
+qi/SM
+Qiao/M
+qibla/SM
+Qijun/M
+Qin/M
+Qing/M
+Qinghai/M
+QKD/M Initialism of quantum key distribution
+Qom/M
+QoS/M Noun: uncountable
+QPR/SM
+qr/SM Abbreviation of quarter (of the year)
+QRpedia/M
+qt/M Noun: uncountable
+qua
+quack/MSGD~r
+quackery/SM
+quad/SM
+quadplex/SM
+quadragenarian/SM
+Quadragesima/M
+quadragesimal
+quadrangle/MS
+quadrangular/Y
+quadrant/SM
+quadrantal/SM
+Quadrantid/SM
+quadraphonic/Y
+quadraphonics/M Noun: uncountable
+quadraphony/M Noun: uncountable
+quadrat/MS
+quadrate/SM
+quadrati/M
+quadratic/MOYS
+quadrature/SM
+quadratus/M
+quadrennia/M Plural of quadrennium
+quadrennial/YSM
+quadrennium/MS
+quadriannulate
+quadriarticulate/D
+quadribasic
+quadric/SM
+quadricarinate Adjective
+quadriceps/SM
+quadrifid/M
+quadriga/SM
+quadrigae/M
+quadrilateral/SM
+quadrilingual/SMY
+quadrille/SM
+quadrillion/HMS
+Quadring/M
+quadringenary/SM
+quadrinomial/SM
+quadripartite/YSM
+quadriplegia/SM
+quadriplegic/SM
+quadripole/MS
+quadrireme/MS
+quadrisyllabic/MO
+quadrisyllable/MS
+quadrivalent/SM
+quadrivia/M Plural of quadrivium
+quadrivium/M
+quadroon/MS
+quadrophonic/SY
+quadrophony/MW
+quadrumanous
+quadruped/SM
+quadrupedal/Y
+quadrupedalism/M Noun: uncountable
+quadrupedality/M Noun: uncountable
+quadrupetalous
+quadruple/MGDSY
+quadruplet/SM
+quadruplicate/DSGn
+quadruplicity/SM
+quadrupolar
+quadrupole/SM
+quaere/SGD
+quaestor/MSO
+quaestorship/MS
+quaff/DSG7rM
+quagga/MS
+quaggy
+quagmire/SM
+quaich/MS
+quaigh/MS
+quail/DGMS
+quailery/MS
+quaint/TPY
+Quainton/M
+quake/DZGMSk
+Quaker/YMS~
+Quakerdom/M Noun: uncountable
+Quakeress/MS
+Quakerism/SM
+quakiness/M Noun: uncountable
+quaky/T
+Qualcomm/M
+qualifiable
+qualificatory
+qualified/Uc
+qualified/Y
+qualifier/SM
+qualify/EnDGSM
+qualitative/YSM
+quality/SM
+qualm/ZMS~
+qualmishness/M Noun: uncountable
+quand
+quandary/MS
+quango/SM
+quant/MS
+quanta/M Plural of quantum
+quantal/Y
+quantaloid/SM
+quantic/SM
+quantify/7RDGnS
+quantile/SM
+quantitate/SGDn
+quantitative/PY
+quantitive/Y
+quantity/MS
+Quantock/M
+Quantoxhead/M
+quantum/qQs8M-9
+Quaoar/M
+quaquaversal/Y
+quaquaversality/M Noun: uncountable
+quarantine/DSMG
+quare/T
+quarer
+quark/SM
+quarkonia/WM
+quarkonium/SM
+Quarles/M
+Quarley/M
+Quarndon/M
+Quarnford/M
+quarrel/RGSDMJ
+quarrelsome/PY
+Quarrington/M
+quarry/mSMGDR
+quart/WMRS
+quartan/SM
+quartation/MS
+quarte/SM
+quarter-final/SM3
+quarter-hour/SMY
+quarter-light/SM
+quarter-plate/SM
+Quarter/M
+quarter/SMdYr
+quarterage/MS
+quarterback/SM
+quarterdeck/SM
+quartering/SM
+quarterly/SM
+Quartermaster Quartermaster General
+quartermaster/SM
+quartern/MS
+quarterstaff/SM
+quartet/SM
+quartette/MS
+quartic/SM
+quartile/MS
+quarto/SM
+quartz/SM
+quartzite/SM
+quasar/SM
+quash/SGDr
+quashable
+quasi
+quasilinear/Y
+quasilinearity/M Noun: uncountable
+quasiparticle/SM
+quasiperiodic/Y
+quasiperiodicity/SM
+quasisynchronous/Y
+quassia/SM
+quatercentenary/SM
+Quatermain/M
+Quaternary
+quaternary/SM
+quaternion/MS
+quaternity/SM
+Quatford/M
+quatorzain/SM
+Quatorze Quatorze Juillet
+quatorze/SM
+quatrain/SM
+quatre/SM
+quatrefoil/SM
+Quatt/M
+quattrocentist/SM
+quattrocento/M Noun: uncountable
+quaver/dkSMZ
+Quay/M
+quay/SM
+quayage/MS
+Quayle/M
+quayside/SM
+qubit/SM
+Queally/M
+quean/MS
+queasy/PYT
+Quebec/RM
+Quebecer/SM
+Quebecois/M
+quebracho/SM
+Quechua/SM
+Quechuan/SM
+Quedgeley/M
+queen/GYSDMp
+Queen/M
+Queenborough-in-Sheppey/M
+Queenborough/M
+queendom/SM
+Queenhill/M
+Queenhithe/M
+queenhood/M Noun: usually uncountable
+queenie/MS
+queenlike
+queenliness/M Noun: uncountable
+queenly/T
+Queens/M
+Queensberry/M
+Queensbury/M
+Queensferry/M
+queenship/SM
+Queensland/M
+Queenstown/M
+Queensway/M
+Queenwood/M
+queer/PMSTGDY~
+Queijas/M
+Quélet/M
+Quelimane/M
+quell/SGDR
+Queluz/M
+quench/DR7SGpM
+Quendon/M
+quenelle/SM
+Queniborough/M
+Quenington/M
+Quentin/M
+quercetin/SM
+quercitron/SM
+Quercus Taxonomic genus
+querier/SM
+querist/MS
+quern/SM
+Querne/M
+Quernhow/M
+Quernmore/M
+querulous/YP
+query/GMSD
+quesadilla/SM
+Quesnel/M
+quest's/FI
+quest/ADSRGM
+quester/FMS
+question/RDJS7kMGlp
+questionableness/M Noun: uncountable
+questionary/SM
+questioned/AU
+questioning/UY
+questionnaire/MS
+questions/A
+quests/FI
+Quethiock/M
+quetiapine/M Noun: uncountable
+Quetta/M
+quetzal/SM
+queue-jump/SGDR
+queue/GCSD
+queue/Mr
+queueing
+Qui-Gon/M
+quibble/RSDGM
+Quiberon/M
+quiche/MS
+Quichua/M
+quick-fire Adjective
+quick-witted/Y
+quick/TPYSM
+quicken/dSr
+quickie/SM
+quicklime/SM
+quicksand/MS
+quickset/SM
+quicksilver/dMSZ
+quickstarter
+quickstep/SMGD
+quickthorn/SM
+QuickTime/M
+quid/SM
+quiddity/SM
+Quidenham/M
+Quidhampton/M
+quidnunc/SM
+quiesce/SGD Verb
+quiescence/SM
+quiescency/M Noun: uncountable
+quiescent/YP
+quiet/PTYDGSM
+quieten/Sd
+quieter/E
+quieter/SM
+quieting/E
+quietism/SM
+quietist/SMW
+quietly/E
+quiets/E
+quietude/ESMI
+quietus/MS
+quiff/SM
+Quiggin/M
+Quigley/M
+Quijote/M
+quill/DMGS
+quillet/MS
+Quilliam/M
+quilt/RDMGS
+quilting/SM
+quin/MS
+quinacrine/SM
+quinapril/M Noun: uncountable
+quinary/SM
+quinate/SM
+quince/SM
+quincentenary/SM
+quincentennial/MS
+Quincey/M
+Quincke/M
+quincuncial/Y
+quincunx/SM
+Quincy/M
+Quindar Quindar tones
+Quine/M
+quingentenary/MS
+quinidine/SM
+quinine/SM
+Quinion/M
+Quinn/M
+Quinnell/M
+quinoa/SM
+quinol/SM
+quinoline/SM
+quinolone/SM
+quinone/SM
+quinoyl/M Noun: uncountable
+quinquagenarian/SM
+quinquagenary/MS
+Quinquagesima/M
+quinquagesimal Adjective
+quinquelateral/M
+quinquennia/M Plural of quinquennium
+quinquennial/YSM
+quinquennium/MS
+quinquereme/MS
+quinquevalent Adjective
+quinsy/DSM
+quint/WMS
+Quinta/M
+quinta/MS
+quintain/MS
+quintal/MS
+quintan/MS
+Quinte/M
+quinte/MS
+quintessence/MS
+quintessential/Y
+quintet/SM
+quintillion/HSM
+Quintin/M
+quintinomial/SM
+Quinton/M
+quintuple/SGDYM
+quintuplet/SM
+quintuplicate/nSGDJM
+Quintus/M
+quinuclidinyl/SM
+quip/SMGDR
+quippery/SM
+quipster/SM
+quire/M
+quire/SAI
+Quirinal
+Quirinius/M
+quirk/S2MZ~
+quirky/TY
+quirt/DSMG
+Quisling/M
+quisling/SM
+quit/RSGD
+quitch/M Noun: uncountable
+quitclaim/MS
+quite/A
+Quito/M
+quittance/SM
+quiver/dZkSM
+Quivox/M
+Quixote/M
+quixotic/Y
+quixotism/SM
+quixotize/SGDJ
+quixotry/SM
+quiz/DRZGM
+quizzes
+quizzy/w1
+Qumran/M
+quo/SM
+quod/SM
+quoddity/SM
+quodlibet/MSO
+quodlibetic/OY
+quoiler/SM
+quoin/DSMG
+Quoisley/M
+quoit/GDSM
+quoll/SM
+quondam/Y
+quondamship/M Noun: uncountable
+Quonset/SM
+quorate/SM
+Quorn/M
+Quorndon/M
+quorum/SM
+quota/MS
+quotability/M Noun: usually uncountable
+quotable
+quotableness/M Noun: uncountable
+quotative/SMP
+quote/DaSGn
+quote/M
+quoter/SM
+quoth/SGD
+Quothquan/M
+quotidian/SMY
+quotient/MS
+Qur'an/MW
+Quran/MW
+QVGA
+QWERTY
+r.p.m.
+r/sd
+Ra/M
+Raab/M
+RAAF/M
+Raafat/M
+Raasay/M
+Rab/M
+Rabat/M
+rabbet/SMd
+rabbi/SM
+rabbinate/MS
+rabbinic/YO
+rabbinism/M
+rabbinist/MS
+rabbit/SdM
+rabbity
+rabble-rouser/SM
+rabble-rousing
+rabble/SM
+Rabelais/M
+Rabelaisian
+Rabelaisianism/M Noun: uncountable
+rabi/SM
+rabid/PYSM
+rabidity/SM
+rabies
+Rabin/M
+Rabinowitz/M
+Rabson/M
+Rabun/M
+Raby/M
+RAC/SM
+raccoon/MS
+race/RDSGJZoM
+racecar/SM
+racecard/SM
+racecourse/SM
+racegoer/SM
+racehorse/SM
+racemate/MS
+raceme/SMW
+racemize/DGS
+racemose/Y
+racetrack/MS
+raceway/SM
+Rachael/M
+Rachel/M
+Rachman/M
+Rachmaninov/M
+Rachmanism/SM
+racial/3SM
+racialise/SGDN
+racialism/SM
+racialize/SGDN
+raciation/SM
+Racine/M
+racism/SM
+rack-and-pinion
+rack/SDGM
+Rackenford/M
+racket/MdZS
+racketeer/JGMS
+Rackham/M
+Rackheath/M
+raconteur/SM
+raconteuse/MS
+racoon/SM
+racquet/SM
+Racton/M
+racy/T3PY
+rad/SMw1
+radar/MS
+Radbourne/M
+Radcliff/M
+Radcliffe/M
+Radclive-cum-Chackmore/M
+Radclive/M
+Radcot/M
+Raddington/M
+raddle/DGMS
+Radegund/M
+Radek/M
+Radeon/M
+Radford/M
+Radha/M
+radial/SMY
+radialised
+radialized
+radian/MS
+radiance/MS
+radiancy/M
+radiant/SMY
+radiate/SnIVDG
+radiate/Y
+radiation/MI
+radiatively
+radiator/SM
+radical/MS~
+radicalise/SGDN
+radicalism/MS
+radicality/SM
+radicalize/SGDN
+radicand/SM
+radicant
+radices
+radicle/SM
+radicular
+radii/M
+radio-astronomical
+radio-controlled
+radio-opaque
+radio-telegraph/SZ
+radio-telegraphy/M
+radio-telephone/MS
+radio/DmSGM
+radioactive/Y
+radioactivity/M Noun: usually uncountable
+radiobiology/M31w
+radiocarbon/MS
+radiochemical/Y
+radiochemist/SM
+radiochemistry/M
+radiocolloid/SMO
+radiocommunication/SM
+radioconductor/SM
+radiodating
+radiodense
+radiodensity/SM
+radiodermatitis
+radiodiagnosis
+radiodiagnostic/S
+radioecology/wM
+radioenzymatic
+radiogenic/Y
+radiogoniometer/SM
+radiogram/SM
+radiograph/SDGR1
+radiography/SWM
+radioimmunoassay/SM
+radioiodine/SM
+radioisotope/MSW
+radiolabelled
+radioland/M Noun: uncountable
+radiolaria
+radiolarian/SM
+radiolocation/M
+radiology/W13Mw
+radioluminescent
+radiolyses
+radiolysis/M
+radiolytically
+radiometer/1MSW
+radiometry/M Noun: usually uncountable
+radionics
+radionuclide/SM
+radiopacity/SM
+radiopaque
+radiophonic/S
+radiophonicist/M
+radiophony/M Noun: uncountable
+radiophosphorus
+radiophosphorylated
+radiophoto/SM
+radiophotograph/SMZ
+radiophotoluminescence/SM
+radiophotovoltaic
+radiophysical
+radiophysics
+radioprotectant/SM
+radioprotection/M Noun: uncountable
+radioprotective/SM
+radioprotector/SM
+radiopure
+radiopurity/SM
+radioreceptor/SM
+radioresistant
+radioscanning/M Noun: uncountable
+radioscopy/WSM
+radiosensitive/P
+radiosensitivity/SM
+radiosensitize/SGDNR
+radiosity/SM
+radiosondage/SM
+radiosonde/MS
+radiostereometric
+radiosterilise/Dn
+radiosterilization
+radiosterilized
+radiostrontium/SM
+radiosurgery/M Noun: uncountable
+radiosurgical/Y
+radiotelegraphically
+radiotelemetry/M Noun: uncountable
+radiotelescopic
+radioteletype/SM
+radiotelex/M
+radiotherapeutic/Y
+radiotherapy/SM3
+radiothermal
+radiothorium/M Noun: uncountable
+radiotoxic
+radiotoxicity/M Noun: uncountable
+radiotracer/SM
+radiovoltaic/S
+Radipole/M
+radish/SM
+radium/M
+radius/MS
+radix/M
+Radlett/M
+Radley/M
+Radnage/M
+Radnor/M
+Radnorshire/M
+radocene
+radome/SM
+radon/M Noun: uncountable
+Radstock/M
+Radstone/M
+radula/M
+radulae/M
+radular
+Radway/M
+Radwell/M
+Radwinter/M
+Radyr/M
+Rae/M
+Raël/M
+Rael/M
+Raëlian/SM
+Raelian/SM
+Raelism/M
+Raëlism/M
+Raes/M
+Raetihi/M
+RAF/M
+Rafael/M
+raff/SM
+Raffety/M
+raffia/SM
+raffinate/MS
+raffinose/SM
+raffish/PY
+raffle/DSMG
+Raffo/M
+Rafford/M
+raft/RSDMG
+raftered
+raftsman/M
+raftsmen/M
+rag/diGkMSDh
+raga/MS
+ragamuffin/MSY
+ragbag/SM
+Ragdale/M
+rage/eSMGD
+ragga/M Noun: uncountable
+ragged/PZ
+Raglan/M
+raglan/SM
+Ragnall/M
+Ragnar/M
+Ragnarök/M
+Ragnarsson/M
+Ragnhild/M
+ragout/SM
+rags-to-riches
+ragstone/M Noun: usually uncountable
+ragtag/SM
+ragtime/SM
+raguly
+Ragusa/M
+ragweed/SM
+ragworm/SM
+ragwort/SM
+Rahim/M
+Rahman/M
+Rahotu/M
+Rahul/M
+Rahway/M
+Rai/M
+raid/RGSDM
+Raikkonen/M
+rail/CDSGJ
+rail/Mp
+railage
+railbed/SM
+railbird/SM
+railbus/SM
+railcar/SM
+railcard/SM
+railer/MS
+railhead/MS
+railing/M
+raillery/SM
+railman/M
+railmen/M
+railroad/SGDM
+Railtrack/M
+railway/mSM
+railwayana/M
+raiment/MS
+rain-cloud/SM
+rain-maker/MS
+rain-making
+rain-shadow/SM
+rain/DMGSpZ
+rainbow/MS
+raincoat/SM
+raindrop/SM
+Raine/M
+Rainey/M
+rainfall/SM
+Rainford/M
+rainforest/MS
+Rainham/M
+Rainhill/M
+raininess/M
+Rainow/M
+rainproof
+Rains/M
+rainstorm/MS
+rainswept
+Rainton/M
+rainwater/M Noun: usually uncountable
+Rainworth/M
+rainy/TY
+Raipur/M
+raise/RGDS
+raisin/MS
+Raisman/M
+raison/SM
+Raistrick/M
+Raith/M
+Raithby/M
+Raitt/M
+Raj/M
+raja/MS
+Rajabali/M
+rajah/MS
+rajaship/MS
+Rajasthan/M
+Rajesh/M
+Rajguru/M
+Raji/M
+Rajkumar/M
+Rajon/M
+Rajput/MS
+Rajputana/M
+Rajshahi/M
+Rajya/M
+Rakaia/M
+rake/SGMDyR
+Rakiriri/M
+rakish/PY
+Rakiura/M
+Rakow/M
+raksasa/MS
+raksasi/MS
+rakshasa/MS
+rakshasi/MS
+rale/MS
+Raleigh/M
+Ralf/M
+Ralls/M
+rally/DSGM
+rallycross/M Noun: uncountable
+raloxifene/SM
+Ralph/M
+ram/DSGM
+RAM/SM
+Rama/M
+Ramadan/M
+Ramalho/M
+Ramalingam/M
+Ramapo/M
+Ramarama/M
+Ramati/M
+Ramayana/M
+ramble/kJDRSGY
+Rambo/M
+Rambouillet/M
+rambutan/SM
+ramdisk/SM
+Rameau/M
+ramekin/MS
+Ramesh/M
+rami/M
+ramie/MS
+ramify/nSDG
+ramipril/M Noun: uncountable
+Ramirez/M
+ramjet/SM
+rammelly
+rammer/MS
+Ramnath/M
+Ramon/M
+Ramona/M
+Ramos/M
+ramose
+ramp/DMSG
+rampage/DSG
+rampageous
+rampancy/M Noun: usually uncountable
+rampant/Y
+rampart/SM
+rampion/MS
+Rampisham/M
+Rampling/M
+Ramprakash/M
+Rampside/M
+Rampton/M
+ramrod/MS
+Ramsar/M
+Ramsay/M
+Ramsbottom/M
+Ramsbury/M
+Ramsden/M
+Ramses/M
+Ramsey/M
+Ramseyer/M
+Ramsgate/M
+Ramsgreave/M
+ramshackle/P
+Ramsholt/M
+Ramshorn/M
+Ramtha/M
+ramus/M
+ran/Aec
+ran/S
+Ranby/M
+ranch/DRSGM
+Ranch/M
+Ranchi/M
+Rancho/M
+rancid/P
+rancidity/MS
+rancorous/Y
+rancour/DMSp
+rand/2ZM
+Rand/M
+Randall/M
+Randalstown/M
+randan/MS
+Randell/M
+Randi/M
+randkluft/SM
+Randlay/M
+Randle/MS
+Randolph/M
+random/qQ-8YP
+randomicity
+randomiser/SM
+randomizer/SM
+Randwick/M
+randy/T
+ranee/MS
+Ranexa/M
+Ranfurly/M
+rang/RGDZ
+rangability
+Ranganathan/M
+rangatira/SM
+rangatiratanga/M Noun: uncountable
+range-amplitude
+range-taker
+range/6Mp
+range/SCGD
+rangeability/SM
+rangefinder/SM
+Rangel/M
+rangeland/SM
+rangership/MS
+Ranges/M
+Rangeworthy/M
+Rangiora/M
+Rangitikei/M
+Rangoon/M
+rangy/T
+rani/MS
+ranitidine/M Noun: uncountable
+rank/pMSGDJTYRP~
+ranked/Ue
+Rankin/M
+ranking/M
+rankism/M Noun: usually uncountable
+rankle/DSGM
+Rann/M
+Rannoch/M
+Ranoch/M
+ransack/GSMDR
+Ranskill/M
+ransom/MdSrp
+ransomite/SM
+ransomware/M Noun: uncountable
+rant/RGJSDkM
+rantipole/MS
+Ranton/M
+Rantoul/M
+Ranui/M
+ranunculaceous
+ranunculi/M
+Ranunculus Taxonomic genus
+ranunculus/SM
+Ranworth/M
+Rao/M
+rap/d3RDGSM
+Rapa/M
+rapacious/YP
+rapacity/SM
+Rapaura/M
+rape/SM3
+rapeseed/M Noun: usually uncountable
+Raphael/M
+Raphaelite/SM
+raphia/SM
+raphide/MS
+Raphinae
+Rapho/M
+Raphson/M
+rapid-fire
+Rapid/M
+rapid/YSMP
+Rapides/M
+rapidity/SM
+Rapids/M
+rapier/MS
+rapine/MS
+Rapini/M
+Rapinoe/M
+Rapisardi/M
+Rappahannock
+Rappaport/M
+rapparee/MS
+rappee/SM
+rappel/GDS
+rapping/M
+rapport/MS
+rapporteur/SM
+rapprochement/MS
+rapscallion/SM
+rapt/YPSM
+raptor/SM
+raptorial/Y
+rapture/SM
+rapturous/PY
+Raquel/M
+rare/YGTP
+rarebit/MS
+rarefaction/MS
+rarefactive
+rarefy/DGSn
+Raritan/M
+rarity/MS
+Rarotonga/M
+Rarotongan/SM
+rascal/YMS
+rascaldom/M
+rascalism/M
+rascality/MS
+rascasse/SM
+raschel/MS
+rase/SGDJ
+Rasen/M
+rash/SYTRP
+Rasharkin/M
+Rashevsky/M
+Rashida/M
+Raskelf/M
+Raskelfe/M
+Rasmus/M
+Rasmussen/M
+rasp/SGkZDMr
+raspatory/MS
+raspberry/MS
+raspy/T
+Rassau/M
+rasse/MS
+Rastafari/M
+Rastafarian/SM
+Rastafarianism/M
+raster/MS
+rasterise/SGDNR
+rasterize/SGDRN
+Rastrick/M
+rat-catcher/SM
+rat/DdMRGSZ
+rata/MS
+ratability/M Noun: usually uncountable
+ratable/Y
+ratafia/MS
+Ratapiko/M
+ratatat/MS
+ratatouille/SM
+ratbag/SM
+Ratby/M
+ratch/MS
+ratchet/dSM
+Ratcliffe/M
+rate-cap/G
+rate/cDGS
+rate/Mp
+rateability/M Noun: usually uncountable
+rateable/Z
+ratel/SM
+ratemahatmaya/M
+ratemeter/SM
+ratepayer/SM
+rater/SM
+Rath/M
+Rathen/M
+rather
+Rathfriland/M
+Rathke/M
+Rathmell/M
+Ratho/M
+rathole/SM
+Rathven/M
+raticide/SM
+ratificatory
+ratify/BSRnDG
+rating/MS
+ratio/SM
+ratiocinate/DVGSn
+ration/SMGD
+rational/SMYs8-39Qq
+rationale/MS
+rationalism/SM
+rationalistic
+rationality/IM
+rationality/S
+ratite/SM
+Ratley/M
+ratline/MS
+ratling/MS
+Ratlinghope/M
+Ratner/M
+Raton/M
+ratoon/DGMS
+ratsbane/M
+rattail/SM
+rattan/SM
+Rattery/M
+Rattigan/M
+rattle/RGYJDSM
+Rattlesden/M
+rattlesnake/MS
+rattletrap/MS
+rattly/T
+Ratton/M
+rattrap/SM
+Rattray/M
+ratty/T
+Ratzinger/M
+Rauceby/M
+raucous/PY
+Raughton/M
+Raumanga/M
+Raumati/M
+raunch/M2
+raunchy/TY
+Raunds/M
+Raureka/M
+ravage/DRSGM
+Ravalli/M
+rave/JGSDRk
+ravel/UGDS
+Raveley/MS
+raven/dSM
+Ravendale/M
+Ravenfield/M
+Ravenhill/M
+Raveningham/M
+Ravenna/M
+ravenous/YP
+Ravensbourne/M
+Ravensbruck/M
+Ravenscroft/M
+Ravensdale/M
+Ravensden/M
+Ravenshead/M
+Ravensthorpe/M
+Ravenstone/M
+Ravenstonedale/M
+Ravensworth/M
+Ravenwood/M
+Raverat/M
+Ravernet/M
+Ravicher/M
+Ravilious/M
+ravine/SMD
+ravinement/SM
+ravioli/SM
+ravish/DRGLSk
+raw-boned
+raw/PTY~
+Rawalpindi/M
+Rawcliffe-with-Tarnacre/M
+Rawcliffe/M
+Rawdon/M
+Rawene/M
+rawhide/SM
+Rawhitiroa/M
+Rawiri/M
+Rawle/MS
+Rawlings/M
+Rawlinson/M
+rawlplug/SM
+Rawmarsh/M
+Rawreth/M
+Rawson/M
+Rawston/M
+Rawtenstall/M
+ray/DMSG
+Ray/M
+rayah/MS
+Raydon/M
+raygun/SM
+Rayleigh/M
+rayless/YP
+raylet/MS
+Raymer/M
+Raymond/M
+Raymondville/M
+Raymore/M
+Rayne/M
+Rayner/M
+Raynham/M
+rayon/SM
+Raytheon/M
+Raytown/M
+Rayward/M
+Razak/M
+raze/DSG
+razee/MS
+razor-sharp
+razor/MSd7
+razorback/MS
+razorbill/SM
+razorblade/SM
+razorfish/SM
+razzamatazz/M
+razzia/SM
+Razzie/M
+razzle
+razzmatazz/M Noun: usually uncountable
+Rb
+RCA/M
+Rd/M
+RD/M
+rDNA/SM
+RDS/M
+re-adapt/SDG
+re-allocated
+re-deployed
+re-election
+re-eligibility
+re-emergence
+re-emission
+re-emphasize/SG
+re-employ/7SG
+re-employment
+re-enable/SGD
+re-enablement
+re-enact/SDG
+re-enactment/S
+re-enactor/S
+re-enforce/LSGDr
+re-engagement
+re-enlister
+re-enlistment
+re-entrant
+re-enumerate/SGDN
+re-equip/SG
+re-establish/SGD
+re-establishment
+re-evaluate/DGS
+re-evaluation
+re-experience
+re-export/SGD7
+re-form/N
+re-fund
+re-radiated
+re-registration
+re-release/DGS
+re-roll/SGD
+re-romanization
+re-route/GSD
+re-routeing
+re-site/SDG
+re-soluble
+re-sort/G
+re/nxhoYJNi
+Rea/M
+reablement
+reabridge/SGD
+reabsorb/Sd
+reabsorption
+reabsorptive
+reaccept/D
+reacceptance
+reaccess
+reaccession
+reaccrete/SGD
+reach/eGcDS
+Reach/M
+reachability/SM
+reachable/U
+react/cSDG
+reactance
+reactant/SM
+reaction/cMS
+reaction/O
+reactionariness
+reactionarism/M Noun: uncountable
+reactionary/SMY
+reactionaryism/M Noun: uncountable
+reactionism/M Noun: uncountable
+reactionist/MS
+reactivate/SGD
+reactive/nU
+reactiveness
+reactivity/SM
+read-only
+read/2JlRzGB
+readability/SM
+readableness/M
+readapt/SGDN
+readd/SGD Verb
+readdress/G
+reader/aM
+reader/Y
+readership/MS
+reading/aS
+Reading/M
+reading/M
+Readington/M
+readjust/LSG
+README
+readme
+readmittance/M
+readopt/SG
+readout/MS
+reads/aA
+readvance
+ready-made
+ready/TSDPG
+reaffirm/SGDn
+reafforest/N
+Reagan/M
+Reaganite/SM
+reagency/M
+reagent/SM
+reaggregate
+Reagle/M
+real-life
+real-time
+real/SMTts3+9q-Q8Y
+realisable
+realise/Dl
+realism/SM
+realist/W1
+realistic/UY
+reality/USM
+realize/Dl
+reallot/DGS
+realm/SM
+realness
+realpolitik/SM
+realtor/SM
+realty
+ream/RGDMS
+reanalyse/SGD
+reanalysis
+reap/RGSD
+reapply/nG
+reappoint/LG
+reappropriate/SGDN
+reapprove/SGD
+rear-view
+rear/DRMGS
+rearchitect/SGD
+Reardon/M
+rearguard/MS
+rearm/GL
+rearmost
+rearrange/L
+rearrest/G
+Rearsby/M
+rearward/S
+reascend/DNG
+reason/rlp7dSM
+reasonability/M Noun: usually uncountable
+reasonableness/U
+reasonably/U
+reasoned/U
+reasoning/M
+reasoning/U
+reassemble/Y
+reassert/G
+reassess/LG
+reassign/LG
+reassociate/SGD
+reassortment/SM
+reassume/SGD
+reassumption
+reassuringly/U
+reattach/GL
+reattain/G
+reattempt/SGD
+reauthorise/n
+reauthorize/n
+reawaken/d
+Reay/M
+Reba/M
+rebadge/SGD
+rebalance
+rebaptize/SGDJ
+rebar
+rebarbative/Y
+rebase/SGD
+rebate/SM
+rebec/SM
+Rebecca/M
+rebeck/SM
+rebel/MSGD
+rebellion/MS
+rebellious/Y
+rebelliousness
+Reber/M
+rebid/G
+rebind/G
+rebirth/SGDR
+rebled
+rebleed/SG
+Rebney/M
+reboant
+reboil/SGD
+rebook/G
+rebore/SMGDJ
+reborrowing
+rebottle/rSGD
+rebounder/S
+rebrand/SGD
+rebreathe/Dr
+rebroadcast/M
+rebuff/SGD
+rebuffer/Sd
+rebuild/GBr
+rebuke/DkSGr
+rebutment
+rebuttable
+rebuttal/SM
+rebutter/MS
+recalcitrance/M
+recalcitrant
+recalculate
+recalesce/DGS
+recalescence
+recalibrations
+recall/G7
+recant/nGS
+recapitulation/M
+recapitulative
+recapitulatory
+recapture/SGD
+recast/G
+recategorisation/SM
+recategorization/SM
+recce/SD
+recceing
+receipt/GMDS
+receivable/S
+receive/DRGS
+receivership/SM
+recency/M
+recension/M
+recent/Y
+recentness
+recentre
+receptacle/SM
+reception/MS3
+receptionism/M Noun: uncountable
+receptive/Y
+receptiveness
+receptivity/SM
+receptor/SM
+recertify/N
+recess/GMNuSXDVv
+recession/y
+recessional/SM
+recessive/PS
+Rechabite/MS
+rechain/SGD
+rechallenge/SGD
+rechange/SGD
+rechannel/SGD
+recharger/SM
+rechartering
+recherché
+rechipping
+Rechtien/M
+recidivate/SGD
+recidivism/SM
+recidivist/SM
+Recife/M
+recipe/MS
+recipiency
+recipient/SM
+reciprocal/YS
+reciprocate/nDGS
+reciprocity/SM
+recirculate/SGD
+recision/SM
+recital/3SM
+recitative/SM
+recite/R
+reck/DGS
+reckless/Y
+recklessness
+reckon/dS7r
+reckonings
+reckonmaster/SM
+reclaim/7
+reclaimable/I
+reclaimant
+reclamation/MS
+reclassify/DGn
+reclinate
+recline/SDRG
+recluse/MSV
+reclusion/SM
+recognisable/U
+recognisably/U
+recognisance/S
+recognise/RBGDlS
+recognitory
+recognize/RBGDlS
+recoil/p
+recoin/SGDJ
+recollect/SG
+recollective
+recolour/GD
+recombinant/SM
+recombination/Mp
+recombinational/Y
+recombinogenic
+recomforting
+recommand/SGD
+recommencer
+recommission/G
+recommit/LGNXD
+recommittal
+recompact/SGD
+recompare/SGD
+recompensable
+recompensate/SGDN
+recompense/SDG
+recompile/7SGDn
+recompose/DN
+recompress/SDGN
+recompute/SG
+reconceptualise/SGD
+reconceptualize/SGD
+reconcilability/M
+reconcilable/UI
+reconcile/7SGD
+reconcilement
+reconciler/MS
+reconciliations
+recondite/PY
+recondition/G
+reconfigure/B
+reconnaissance/MS
+reconnect/GD
+reconnection/SM
+reconnoitre/SDG
+reconquista
+reconsideration/M
+reconsign/G
+reconsolidate/DGS
+reconsolidation/S
+reconstructable
+reconstructed
+reconstructional
+reconstructionary
+reconstructive/P
+reconstructor/SM
+reconsult/SGD
+recontamination
+recontextualise/SGD
+recontextualize/SGD
+recontinuance
+recontinue
+reconvalescence
+reconvalescent
+reconvention
+reconverge
+reconversion
+reconvert/SG
+reconvertible
+reconveyance
+reconvict/SGD
+reconviction
+reconvoke
+recopper
+recopy/SGD
+record-breaking
+record-keeping
+record/SDRJ37
+recordable
+recordership/MS
+recount/G
+recoup/DG7
+recouperation
+recouple/SGD
+recoupment
+recourse
+recover/gdZ7
+recoverable/UI
+recovery/SM
+recrawl/SGD
+recreancy/SM
+recreant/SY
+recreate/xSGD
+recreative
+recriminate/VSyGDn
+recrudesce/DSG
+recrudescence/M
+recrudescent
+recruit/rdMLS
+recruital/MS
+recrystallize/SGDn
+recta/M
+rectal/Y
+rectangle/MS
+rectangular/Y
+rectangularity/M
+recti
+rectify/G7nDRS
+rectilineal
+rectilinear/Y
+rectilinearity/M
+rectitude/SM
+recto/SyM
+rectocele/SM
+rectoneovaginal
+rector/O
+rector/SMF
+rectorate/SM
+rectorship
+Rectory/M
+rectory/SM
+rectosigmoid/OSM
+rectouterine
+rectovaginal
+rectum/MS
+rectus/M
+Reculver/M
+recumbency/M
+recumbent/YSM
+recuperate/SnVGD
+recur/DGS
+recurrence/MS
+recurrent
+recurs/vV
+recurse/SGD
+recursion/SM
+recursiveness
+recursivity/SM
+recurvate
+recurvature/SM
+recurve/DGMS
+recusance/Z
+recusant/SM
+recyclable/SM
+recycle/7RSGD
+red-blooded/P
+red-eye
+red-faced
+red-handed
+red-head/MSD
+red-hot
+red-letter
+red-light
+Red/M
+red/PTSMZ
+redact/GDS
+redaction/SMO
+redactor/MSO
+redactoral
+redan/SM
+redargue/SGD
+redargution/SM
+redargutive
+redate/SGD
+redbeard
+Redbeard/M
+redbelly/SM
+redberry/SM
+Redberth/M
+redbone/SM
+Redbourn/M
+Redbourne/M
+redbreast/SM
+redbrick/SM
+Redbridge/M
+redbud/SM
+redcap/SM
+Redcar/M
+Redcliffe/M
+Redcliffs/M
+redcoat/SM
+redcurrant/SM
+redden/dS
+Redding/M
+Reddington/M
+reddish
+Reddit/M
+Redditch/M
+Redditor/SM
+reddle/M
+Rede/M
+redeal/SGM
+redealt
+redeclare/SGN
+redecorate
+redeem/D7R
+redeemable/UI
+redefinable
+redeless
+redelivery/SM
+redemption/SM
+redemptive
+Redemptorist/MS
+Redemptoristine/MS
+Redenhall/M
+redeploy/LSGD
+redeposition
+redescend/DGS
+redescription/SM
+redesign/DGS
+redesignate/SGDN
+redetermine/ND
+redevelop/L
+Redfearn/M
+Redfern/M
+Redfield/M
+redfish/SM
+Redford/M
+Redgorton/M
+Redgrave/M
+redhead/SM
+Redhill/M
+Redi/M
+redial/SDG
+rediffusion/M Noun: uncountable
+redimension/SGD
+Redinger/M
+redingote/MS
+redintegrate/DGS
+redintegration/MS
+redirect/G
+redirection/SM
+rediscuss/SGD
+Redisham/M
+Redisher/M
+redissolution/MS
+redistributable
+redistributor/SMZ
+redivide/SGD
+redivivus
+Redland/MS
+Redlingfield/M
+redlining/SM
+Redlynch/M
+Redmarley/M
+Redmarshall/M
+Redmayne/M
+Redmile/M
+Redmire/M
+Redmond/M
+redo/G
+redolence/M
+redolent
+Redonda/M
+Redondo/M
+redouble/DGS
+redoubt/Dl
+redound/GDS
+redox/M Noun: uncountable
+redpoll/MS
+redraft/DG
+redraw/G
+redress/G
+redressal/M
+redrill/SGD
+Redrobe/M
+Redruth/M
+redshank/SM
+redshift/D
+redskin/SM
+redstart/SM
+reduce/SbDGRnV
+reducibility/MI
+reducible/Y
+reducible/YI
+reductant/SM
+reductase
+reductio
+reduction/M3
+reductionism/SM
+reductionistic
+redundancy/MS
+redundant/Y
+reduplicative
+Redvales/M
+redwater/M Noun: uncountable
+Redwick/M
+redwing/SM
+Redwood/M
+redwood/MS
+Redwoodtown/M
+Reebok/M
+Reece/M
+Reed/M
+reed/ZGDMS2
+reedbuck/SM
+Reedham/M
+reeding/SM
+Reedley/M
+Reedness/M
+Reedville/M
+reedy/PT
+reef/DMRSGO
+Reefton/M
+reek/SDGM
+reel/SRGDM
+reenergise/SGD
+reenergize/SGD
+reentry/SM
+Reepham/M
+Rees/M
+Reese/M
+Reeth/M
+reevaluate/SGDn
+reeve/SGM
+Reeves/M
+ref/M
+refactor/Sd
+refamiliarise/SGD
+refashion/SGD
+refection/SM
+refectory/MS
+refer/RSDG7
+referee/GdMS
+reference/CDSG
+reference/M
+referencer/M
+referenda/M
+referendum/SM
+referent/MS
+referential/Y
+referentiality
+referral/SM
+refigure/SGD
+refill/G7
+refilm/SGD
+refiltration/SM
+refine/LR
+refined/cU
+refire/SGD
+refit/GD
+reflate/N
+reflation/y
+reflect/GuvSVD
+reflectance/SM
+reflection/SMOpG
+reflectionist
+reflective/P
+reflectivity/SM
+reflectogram/SM
+reflectogramme/SM
+reflectograph/SM
+reflectography/WM
+reflectometer/SM
+reflectometry/M Noun: usually uncountable
+reflector/MS
+reflex/YDSM
+reflexibility/SM
+reflexible
+reflexional
+reflexive/SY
+reflexiveness/M
+reflexivity/SM
+reflexology/3M
+refloat/SGD
+refluence/SM
+refluent
+refold/G
+reforest/nG
+reform/BRnVy3d
+reformat/SDG
+reformatory/MS
+reformism/SM
+refoulement/SM
+refract/DyvGVS
+refractile Adjective
+refraction/SM
+refractometer/WMS
+refractometry/M Noun: usually uncountable
+refractor/SM
+refractoriness/M Noun: uncountable
+refrain/DGS
+reframe/SD
+refrangibility/MS
+refrangible
+refreeze
+refresh/DLGS7k
+refries
+refrigerant/SM
+refrigerate/nDSG
+refrigerator/MSZ
+refringence/MS
+refringency/MS
+refringent
+refrozen
+refuel/SDRG
+refuge/SM
+refugee/SM
+Refugio/M
+refulgence/SM
+refulgent/Y
+refund/7
+refundment/MS
+refurbishment/SM
+refurnish/SGD
+refusable
+refusal/SM
+refuse/r
+refusenik/SM
+refutability/M Noun: uncountable
+refutable/I
+refutal/SM
+refutative
+refute/DnRSG
+reg/SMOo
+regainable
+regainable Adjective
+regale/DG
+regalement/SM
+regalia/M
+regalise/SGD
+regalism/M Noun: usually uncountable
+regalist/SM
+regality/SM
+regalize/SGD
+Regan/M
+regard/ESGD
+regardable
+regardant
+regardful/Y
+regardless/Y
+regardlessness/M
+regather/dS
+regatta/SM
+regauge/SGD
+regelate/DN
+regency/MS
+regenerate
+regeneratory Adjective
+regenesis/M
+Regensburg/M
+regerminate/DGS
+regermination/MS
+regexp/SM
+reggae/SM
+Reggie/M
+regicide/SMO
+régime/MS
+regime/SM
+regimen/SM
+regiment/DMGnS
+regimental/SY
+Regina/M
+Reginald/M
+Regio/M
+Region/M
+region/oSM
+regional/SM
+regionalise/SGDn
+regionalism/MS
+regionalize/SGDn
+Régis/M
+Regis/M
+regisseur/MS
+register/KdNSn
+register/M
+registrable
+registrant/SM
+registrar/SM
+registrarship
+registration/MK
+registry/SM
+Regius
+regnant/SM
+Regno/M
+regolith/SM
+regrade/SGD
+regrate/SGDr
+regress/GVDvSu
+regression/SM
+regressive/P
+regressivity/M Noun: usually uncountable
+regressor/SM
+regret/GDj6Sp
+regretful/P
+regrettable/Y
+regrind/SG
+reground
+regroup/SGD
+regroupment/MS
+regrow/G
+regulable
+regular/q8Q-YSM
+regularity/IMS
+regulate/CGSDny
+regulative
+regulator/MS
+reguli/M
+regulus/MS
+regurgitate/DGSn
+rehab
+rehabilitate/DVGSn
+rehang/G
+rehears/DGr
+rehearsal/SM
+rehearse
+rehearsed/Uf
+reheat/G
+Rehnquist/M
+Rehoboam/M
+rehoboam/MS
+Rehoboth/M
+rehouse
+rehumanize/DGS
+rehydratable
+rehydrate/N
+Reich/M
+Reichling/M
+Reichman/M
+Reichs
+Reichstag/M
+Reicke/M
+Reid/M
+reidentify/SGDN
+Reidsville/M
+Reidy/M
+reificatory
+reify/SGDN
+Reigate/M
+Reighton/M
+reign/SDGM
+reignition/SM
+Reigny/M
+Reiher/M
+reiki/SM
+Reiko/M
+Reilly/M
+reimagine/SDG
+reimbursability/M Noun: uncountable
+reimbursable
+reimburse/GLDS
+Reimers/M
+reimmerse/SGDN
+reimmigrant
+reimmigration
+reimpart/SGD
+reimplace/SGD
+reimplant/SGDN
+reimportation
+reimposition
+reimpregnate/SGDN
+reimpress/SGDN
+rein/MDGp
+reindeer/MS
+reinduce/SGD
+Reiner/M
+reinflatable
+reinflate/SDGN
+reinforce/LDSGr
+Reinhard/M
+Reinhardt/M
+reinherit
+Reinhold/M
+reinitialise/n
+reinitiate/SGD
+reinject/SGD
+reinjection/SM
+Reinke/M
+reinnervate/SGDN
+reinoculate/SGDN
+reinquire/SGD
+reinscribe/SGD
+reinsist/SGD
+reinspection
+reinstalment
+reinstitute/SGD
+reinstitution/SM
+reinsure/DGS
+reinvasion
+reinvent/G
+reinvest/DGS
+reinvestigation's
+reionisation/SM
+reionization/SM
+Reisinger/M
+reissue/SGD
+reisted
+Reith/M
+reject/DRGSV7
+rejectamenta/M
+rejection/SM3
+rejector/SM
+rejig/SGDJ
+rejoice/SJDGkR
+rejoin/SGD
+rejoinder/SM
+rejustify/SGD
+rejuvenant
+rejuvenate/SnDG
+rejuvenator/SMZ
+rejuvenesce/SGD
+rejuvenescence/M
+rejuvenescent Adjective
+rejuvenise/SGD
+rejuvenize/SGD
+Rejwan/M
+rekey/SGD
+rekill/SGD
+rekindlement
+rekindler/SM
+rekiss/SGD
+reknit/SGD
+relatability/M Noun: usually uncountable
+relatable
+relate/FnvSVDG
+related/PY
+relater/SM
+relation/MF
+relational/Y
+relationship/MS
+relatival Adjective
+relative/SF
+relativeness/M Noun: uncountable
+relativisation/SM
+relativise/DGS
+relativism/SM
+relativist/M1WS
+relativity/SM
+relativization/SM
+relativize/DGS
+relator/SM
+relax/SGiDnkh
+relaxant/MS
+relaxed/P
+relay/GDM
+relearnt
+releasable
+releasee/DSM
+releasor/SM
+relegable Adjective
+relent/pSDG
+relentless/YP
+relevance/MIZ
+relevancy/IMS
+relevant/IY
+reliability/UM
+reliable/Y
+reliance/M
+reliant/Y
+relic/MS
+relicense/SGD
+relict/MC
+relict/S
+relief/MS
+relievable
+relieve/SGDhR
+relievo/MS
+relight/G
+religion/3SMp
+religioner/MS
+religionise/DGS
+religionism/SM
+religionize/DGS
+religiophilosophical
+religiose Adjective
+religiosity/SM
+religious/PY
+reline
+relink/SDG
+relinquish/GDLS
+reliquary/SM
+reliquiae/M
+relish/SDG
+relishable
+relist/SDG
+relit
+relive/SGD
+relleno/SM
+reload/7Gr
+relock/DGS
+relucent
+reluct/DGS
+reluctance/SM
+reluctant/Y
+relume/SGDJ
+rely/DGWlBS
+rem/SM
+remain/GD
+remainder/dMS
+remaindership/MS
+reman/SGDJ
+remand/SDG
+remanence
+remanent
+remap/DGS
+remark/SMDGl7
+remarkableness
+remarriage/MS
+rematch/MS
+rematerialise/SGD
+rematerialize/SGD
+remblai/MS
+Rembrandt/M
+Rembrandtesque
+remdesivir/M Noun: uncountable
+remeant
+remeasure/DGS
+remeasurement/SM
+remediability/M Noun: usually uncountable
+remediable
+remediate/NSGD
+remedy/7SGMoDpO
+remelt/DGS
+remember/ad
+rememberable
+rememberer/SM
+remembrance/MSr
+Remenham/M
+remex/M
+Remicade/M
+remilitarisation/SM
+remilitarise/DGS
+remilitarization/SM
+remilitarize/DGS
+remind/SGD
+remindful Adjective
+remineralise/SGDN
+remineralize/SGDN
+Remington/M
+Remini/M
+reminisce/DGS
+reminiscence/SM
+reminiscent/Y
+reminiscential Adjective
+remint/SGDJ
+remise/DGMS
+remiss/PVY
+remissible
+remit/GXNSDpR
+remitment
+remittable
+remittal
+remittance/SM
+remittee/SM
+remittent/M
+remnant/MS
+remobilise/B
+remobilize/B
+remodel/SGD
+remonstrance/SM
+remonstrant/SM
+remonstrate/nDVvSG
+remonstrator/MS
+remontant/MS
+remora/MS
+remorse/pMj6
+remorsefulness
+remorseless/YP
+remortgage/SGD
+remote/STYP
+remotion/SM
+remould/DGS
+removability/M Noun: usually uncountable
+removable
+removal/SM
+removalist/MS
+Rempstone/M
+Remuera/M
+remunerate/DSnvVG
+remuneratory
+remuster
+remustering
+remutation
+Remy/M
+remyelination/M Noun: usually uncountable
+remythologise/SGDN
+remythologize/SGDN
+Ren/M
+Rena/M
+Renaissance/M
+renaissance/SM
+renal
+Renaldo/M
+Renard/M
+renardite/SM
+renascence
+Renata/M
+Renate/M
+renationalise/SGDn
+renationalize/SGDn
+Renato/M
+renaturable
+Renaud/M
+Renault/SM
+rencounter/MS
+rencountered
+rencountering
+rend/SGk
+Rendall/M
+Rendcomb/M
+Rendcombe/M
+Rendel/M
+render/rdJS
+rendezvous/SDGM
+Rendham/M
+rendible
+rendition/MS
+rendles
+Rendlesham/M
+rendu/SM
+René/M
+Rene/M
+Renee/M
+renegade/MS
+renege/RSDG
+renegue/SGD
+renew/DG
+renewability/M Noun: uncountable
+renewable/SMZ
+renewal/SM
+Renfield-St/M
+Renfield/M
+Renfrew/M
+Renfrewshire/M
+Renfro/M
+Renhold/M
+Renick/M
+reniform
+renitence/M
+renitent/M
+Renner/M
+rennet/SM
+Rennie/M
+rennin/SM
+Rennington/M
+Reno/M
+Renoir/M
+renopericardial
+renormalizability/M Noun: uncountable
+renormalizable
+renormalize/SGDN
+renounce/GDSr
+renouncement
+renovate/DSGn
+renovator/MS
+renown/DM
+Renshaw/M
+Rensselaer/M
+rent-free
+rent/DMRSGpB
+rentage
+rental/MSr
+rentering
+rentier/SM
+rentière
+Renton/M
+Rentz/M
+Renuka/M
+renumber/d
+renunciant/SM
+renunciation/SM
+renunciative
+renunciatory Adjective
+Renvela/M
+Renville/M
+Renwick/M
+Reny/M
+Renya/M
+Rényi/M
+Renzo/M
+reoccurrence/SM
+reoffend/SGDR
+reoffer/Sd
+reopen/Sd
+reorder/Sd
+reorg/SM
+reorganisational
+reorganisationist/SM
+reorganizational
+reorganizationist/SM
+reovirus/SM
+rep/MS
+repackage/SGD
+repaginate/SGDN
+repaint/SGDM
+repair/Rm7SM
+repairability/M Noun: usually uncountable
+repaper/Sd
+reparable
+reparametrisation/SM
+reparametrization/SM
+reparation/SM
+reparative
+reparse/SGD
+repartee/SM
+repartition/SGD
+repass/SGDJ
+repast/SM
+repatriate/GnDS
+repealable
+repeat/BRDGhS
+repeatability/SM
+repêchage/SM
+repel/RnSGDk
+repellent/SYM
+repent/SDGrp
+repentance/MS
+repentant/UY
+Repentigny/M
+repeople/SGD
+reperceive/SGD
+repercuss/SGD
+repercussion/SM
+repercussive
+reperforator/SM
+reperform/SGD
+reperformance/SM
+reperfume/SGD
+reperfusion/SM
+repertoire/SM
+repertory/SM
+repetend/MS
+repetitional
+repetitionary
+repetitious/YP
+repetitive/YP
+rephotograph/SGD
+repique/DGMS
+replace/L
+replaceable
+replanning
+replay/SM
+replenish/SDGr
+replenishment/S
+replete/Pn
+replevin/MS
+replevy/DGS
+replica/MS
+replicable
+replicase/SM
+replicate/DGS
+replicator/SMZ
+replot/SGD
+reply-paid
+reply/RnGV
+repo/SM
+repoint/SGD
+repolarization
+repolish/SGD
+repopularise/SGD
+repopulate/SGN
+Reporoa/M
+report/h7GM
+reportage/SM
+reported/faU
+reporting/af
+reports/a
+reposal/M
+repose/N6MX
+repository/SM
+repost/G
+Repps/M
+reprehend/GSD
+reprehensibility/M Noun: uncountable
+reprehensible/Y
+reprehension/SM
+represent/anGSD
+representable/Z
+representationism/M Noun: uncountable
+representationist/SM
+representative/SMY
+representativeness
+represented/fUc
+representment
+repress/uvV
+repression/SM3
+repressionary Adjective
+repressive/P
+repressor/SMZ
+repressure/SGD
+repressurise/SGD
+repressurize/SGD
+reprieve/SDG
+reprimand/DSGM
+reprint/JM
+reprisal/SM
+reproach/kDS6G7jr
+reproachable
+reproachful/P
+reprobate/GDn
+reprocess/SG7
+reproduce/ubvV
+reproducibility/SM
+reproducibly
+reprogram/SGRD
+reprogrammable
+reprogramme
+reprographer/SM
+reprography/WM
+reproject/SGD
+repromise/SGD
+repromulgate/SGD
+reproof/SGD
+repropose/SGD
+reprove/kr
+reprovision/SGD
+reptile/MS
+Reptilia Taxonomic class
+reptilian/SM
+reptoid/SM
+Repton/M
+Republic/M
+republic/nSM
+Republican/SM
+republicanism/SM
+republicanize/DGS
+republish/G
+repudiate/nSDG
+repudiator/SM
+repugn/DGS
+repugnance/M
+repugnant/Y
+repulse/Vuvr
+repulsion/M
+repulsive/P
+repulsory
+repump/SGD
+repunish/SGD
+repunishment
+repurge/SGDN
+repurify/SGDN
+repurposable
+repurpose/SGD
+repursuit
+repush/SGD
+reputability/M Noun: uncountable
+reputable/E
+reputableness
+reputably/E
+reputational
+repute/GlhSBnD
+requestion/G
+requicken/S
+requickened
+requickening/S
+requiem/MS
+requiescat/MS
+require/LGD
+requisite/SK
+requisition/GMDSr
+requital/SM
+requite/DS
+reread/7G
+rerecord/DGS
+reredos
+Rerenga/M
+Rerrick/M
+resaid
+resale/7
+Resalis/M
+resample/SGD
+resanctify/SGDN
+resat
+resave/SGD
+resay/SG
+reschedule/SGD
+rescind/GDS
+rescission/MS
+Rescobie/M
+Rescorla/M
+rescue/RSGD
+rescuee/MS
+reseal/7
+research/M7SGD
+resect/DB
+resection/GDO
+resectionist
+Reseda
+reseed/SG
+reselect/7
+reselection/SM
+resemblant
+resemble/DSG
+resent/6LjDGS
+resentful/P
+resequence/SGD
+reserpine/M Noun: usually uncountable
+reservable
+reservatus
+reserve/nih3
+reserved/UY
+reservoir/MS
+reset/G
+resettable
+resettle/L
+reshoot/SG
+reshot
+reshow/GD
+reshown
+reshuffle/SGD
+reside/DG
+residence/MZS
+residency/SM
+resident/MS
+residential/Y
+residentiary/SM
+residentship/M
+residua/oy
+residual/SM
+residue/SM
+residuum/M
+resift/SGD
+resign/6inh
+resignal/GD
+resignationism/SM
+resignationist/SM
+resignee/SM
+resignment
+resile/SGD
+resilience/MZ
+resiliency/SM
+resilient/Y
+resin/MSdrW
+resinate/SGDM
+resiniferous
+resinification/MS
+resinlike
+resinoid/MS
+resinous
+resiny
+resipiscence/M
+resipiscent
+resist/GVDvSbp
+resistance/MS
+resistant/SM
+resistibility/M
+resistible/YI
+resistibly/I
+resistivity/M
+resistlessly
+resistor/MS
+resit/GS
+resite/SGD
+resituate/SGD
+resizer/SM
+reskill/SGD
+reskin/SGD
+reslash/SGD
+reslush/SGD
+resmelt/SGD
+resmethrin/M Noun: uncountable
+resmile
+resmooth/SGD
+Resnick/M
+Resolis/M
+resoluble
+resolute/IY
+resoluteness/M Noun: usually uncountable
+resolution/IMS
+resolutive
+resolvability/M Noun: uncountable
+resolvable/IU
+resolve/BD
+Resolven/M
+resolvent/SM
+resomation/SM
+resonance/SM
+resonant/YSM
+resonate/DSGN
+resonator/SM
+resorb/SGD
+resorption/M
+resorptive
+resound/DSkG
+resource/pj6M
+resourceful/P
+resourcelessness/M Noun: uncountable
+resow/DGS
+resown
+respecify/SG
+respect/ED6GSMj
+respectability/MS
+respectable/Y
+respecter/SM
+respectfulness/SM
+respective/IY
+respell/G
+Respighi/M
+Respimat/M
+respirable
+respirate/SGD
+respirator/SM
+respire/nyG
+respirometer/SM
+resplendence/SM
+resplendency/SM
+resplendent/Y
+respond/FGDS
+respondent/FSM
+respondentia/M Noun: usually uncountable
+responder/MS
+responsa/OyM
+response/bvVSuM
+responsibility/ISM
+responsible/PIY
+responsibly/I
+responsive/UY
+responsiveness/U
+responsivity/SM
+responsor/MSOo
+responsory/SM
+responsum/M
+resprang
+respray/SGD
+respring/SG
+resprung
+ressentiment
+Ressler/M
+rest/6VjpvGuDMS
+restabilise/SGD
+restabilize/SGD
+restage/SGD
+restamp/SGD
+restante
+restart/SGDp7
+restaurant/MS
+restaurateur/SM
+restenosis
+restfulness/M Noun: usually uncountable
+restitution/SM
+restitutionary
+restitutive
+Restitutus/M
+restive/P
+restless/PY
+Reston/M
+restorable
+restoration/M3
+restorationism/M
+restorative/S
+restore/gRnVv
+restrain/Gh
+restrainable
+restrained/UY
+restraint/MS
+restricken
+restrict/SDvhuVG7
+restricted/UY
+restriction/MS
+restrictor/SMZ
+restrike/SGM
+restroom/SM
+restruck
+result/6SGDMp
+resultant/YSM
+resume/GSNDX
+résumé/SM
+resumption/M
+resumptive
+resupinate
+resurface/SGD
+resurgence/SM
+resurgent/SM
+resurrect/DSG7
+resurrection/OSM3
+resuscitate/nSVGD
+resuscitator/SM
+resuspend/SGDN
+resveratrol/SM
+resynchronise/n
+ret/SGD
+retable/SGDM
+retablo/SM
+retail/R
+retain/RSDG
+retainable
+retake
+retaliate/SVynGD
+retard/nRDGS
+retardant/SM
+retardative
+retardatory
+retardment/M
+retarget/dSGD
+retask/SGD
+retch/SGD
+reteach/SG
+retell/SG
+retention/SM3
+retentive/YP
+retentivity/SM
+retexture/SGD
+retexturise/SGD
+retexturize/SGD
+Retford/M
+rethink/SG
+rethought
+retiarii/M
+retiarius/M
+retiary
+reticence
+reticent/Y
+reticle/MS
+reticula/M
+reticular/Z
+reticulate/SYGD
+reticule/SMn
+Reticuli/M
+reticulocyte/MS
+reticuloendothelial
+reticulose
+reticulum/M
+retie/SGD
+retiform
+retina/SMO
+retinae/M
+retinitis/M Noun: uncountable
+retinoate/SM
+retinoblastoma/SM
+retinoblastomata/M
+retinocerebral
+retinoic
+retinoid/SM
+retinol/SM
+retinomotor
+retinopathic
+retinopathy/SM
+retinue/MS
+retinyl/SM
+retinylidene/M Noun: uncountable
+retip/SGD
+retire/kLOR
+retiré/M
+retiree/SM
+retornado/SM
+retort/DG
+retortion/SM
+retouch/R
+retract/DG
+retractile
+retractility/MS
+retractive
+retral
+retranslate/SGDn
+retread/D
+retreat/G
+retreatism/M Noun: uncountable
+retrench/L
+retribution/MS
+retributive
+retributivism/M Noun: uncountable
+retributivist/SM
+retributor/SM
+retrievability/M Noun: uncountable
+retrievable/I
+retrieval/MS
+retrieve/RSGD
+retrim/SGD
+retro
+retroact/SGD
+retroaction/SM
+retroactive/Y
+retroactivity/M Noun: usually uncountable
+retrocede/DGS
+retrocedence/M
+retrocedent
+retrocession/SM
+retrocessive
+retrochoir/MS
+retrod
+retroelement/SM
+retrofire/SM
+retrofit/GSD
+retroflex/D
+retroflexion/SM
+retrofuture/SM
+retrofuturism/M Noun: uncountable
+retrofuturistic
+retrograde/SDGnY
+retrogress/DGSVv
+retrogression/SM
+retroject/DGS
+retrojection/SM
+retroperitoneal
+retropubic
+retroreflect/SGD
+retroreflector/SM
+retrorocket/MS
+retrorse/Y
+retrospect/MvV
+retrospection/SM
+retrospective/SM
+retrotransposon/SM
+retroversion/SM
+retrovert/SGD
+retroviral
+retrovirus/SM
+retsina/MS
+Rettendon/M
+retube/SGD
+retumble/SGD
+retumescence
+returf/SGDJ
+return/7Dp
+returnee/SM
+retuse
+retweet/SGD
+Reuben/M
+reunion
+Réunion/M
+reupload/SGD
+reusability/SM
+Reuter/M
+Reuters/M
+Reuven/M
+rev/QsSDG
+revaccinate/SGDN
+revalescence/M Noun: uncountable
+revalorise/SGDN
+revalorize/SGDN
+revaluate/SGD
+revanchard
+revanchism/M Noun: usually uncountable
+revanchist/SM
+revarnish/SGD
+Revd.
+reveal/RSD7Gk
+reveille/SM
+revel/nRJSDGy
+revelation/SM3
+revelatory
+Reveley/M
+revelry/SM
+Revelstoke/M
+revenant/SM
+revenge/D6jSMGR
+Revenna/M
+reverb/S
+reverberant/Y
+reverberate/DGSn
+reverberative
+reverberator/ZSM
+Reverdy/M
+Revere/M
+revere/SDG
+reverence/DG
+reverence/ISM
+reverend/SM
+reverent/YI
+reverential/Y
+reverie/MS
+reverify/NSG
+reversal/MS
+reverse-charge
+reverse/GbYr
+reversibility/I
+reversibility/M
+reversible/YI
+reversibly/I
+reversionary
+reversioner/MS
+revert/DSGbR
+Revesby/M
+revet/LDG
+review/G7O
+revile/GRSLD
+Revill/M
+revisable
+revise/NXO
+revision/3y
+revisionism/MS
+revisitation
+revisory
+revitalise/Rn
+revivable
+revival/3MS
+revivalism/MS
+revive/GSDR
+revivify/n
+reviviscence/M
+reviviscent
+revivor/MS
+Revlon/M
+revocable/I
+revocatory
+Revoe/M
+revoice/SGD
+revoke/DGnRS
+revolt/DGkR
+revoltingness
+revoltive
+revoluble
+revolute/D
+revolution/RQ8My3S
+revolutionary/SM
+revolutioneering
+revolutionism/M Noun: uncountable
+revolvable
+revolve/RDJGS
+revue/SM
+revulsion/M Noun: usually uncountable
+revulsive/MS
+reward/kp
+rewarded/U
+rewarding/U
+rewarm/SGD
+rewatch/SGD
+Rewe/M
+rewed/GD
+rewild/SGD
+rewind/7
+rewire/DGS
+rework/7
+rewound
+rewrap/SGD
+rewritable
+Rex/M
+Rexburg/M
+Rexine/M
+Rey/M
+Reyataz/M
+Reydon/M
+Reyes/M
+Reyhan/M
+Reykjavik/M
+Reykjavík/M
+Reymerston/M
+Reyna/M
+Reynaldo/M
+Reynard/M
+Reynaud/M
+Reynes/M
+Reynold/SM
+Reynoldsburg/M
+Reynoldston/M
+Reza/M
+Reztsov/M
+Rf
+RFC/M
+RFID/M
+RFU/M
+RGB/M Initialism of red, green, blue
+Rh
+rhabdom/SM
+rhabdomancer/MS
+rhabdomancy/M
+rhabdome/SM
+rhabdomyolysis/M
+Rhadamanthine
+Rhadamanthus/M
+Rhaeadr/M
+Rhaetic
+rhamphotheca/M
+rhamphothecae/M
+rhapsode/MS
+rhapsodisings
+rhapsodist/MS
+rhapsodize/SGDJ
+rhapsody/QSMwW
+rhatany/M
+Rhayader/M
+Rhea/M
+rhea/MS
+Rheasilvia/M
+rhebok/SM
+Rhee/M
+Rheims/M
+Rheingold/M
+Rheinholdt/M
+rheme/SM
+Rhemish
+Rhenish/M
+rhenium/M
+rhenocene
+rheology/w3M
+rheostat/MS
+rheotropic
+rheotropism/MS
+rhesus
+rhetor/SM
+rhetoric/MYO
+rhetorician/MS
+Rhett/M
+rheum/W1MZ
+rheumatic/SZ
+rheumatica
+rheumatism/SM
+rheumatoid
+rheumatology/3wM
+rheumy-eyed
+rheumy/T
+Rhigos/M
+rhinal
+Rhine/M
+Rhineland/M
+Rhinelander/M
+Rhiner/M
+Rhines/M
+rhinestone/MS
+rhinitis/M
+rhino/SM
+rhinoceros/SM
+rhinocerotic
+Rhinolophidae Taxonomic family
+Rhinolophus Taxonomic genus
+rhinopharyngeal
+rhinoplasty/SMW
+rhinoscope/MS
+rhinovirus/SM
+Rhiw/M
+Rhiwbina/M
+rhizocarp/MS
+rhizocephala
+Rhizocephala Taxonomic superorder
+rhizoid/SMO
+rhizomatous
+rhizome/SM
+rhizopod/MS
+rhizosphere/SM
+rho/M
+Rhod/M
+Rhoda/M
+rhodamine/SM
+Rhode/SM
+Rhodesia/M
+Rhodesian/SM
+Rhodian/MS
+rhodium/M
+rhodocene/SM
+rhodochrosite/SM
+rhododendron/MS
+Rhodogeidio/M
+rhodolite/SM
+rhodologist/M
+rhodomel/M Noun: uncountable
+rhodonite/SM
+rhodophane/M Noun: uncountable
+rhodophycean
+rhodophyte/SM
+rhodopsin/SM
+rhodora/SM
+Rhodri/M
+rhomb/SM
+rhombencephala/M
+rhombencephalon/SM
+rhombiferan
+rhombohedral
+rhomboid/MSO
+rhombus/SWM
+Rhonda/M
+Rhondda/M
+Rhone/M
+Rhoose/M
+Rhos-y-corn/M
+Rhos-y-Corn/M
+Rhos/M
+Rhosbeirio/M
+Rhoscolyn/M
+Rhoscrowther/M
+Rhosddu/M
+Rhosllannerchrugog/M
+Rhossili/M
+Rhostie/M
+Rhosybol/M
+Rhosyr/M
+Rhoten/M
+rhotic/SM
+rhoticity/M Noun: uncountable
+Rhu/M
+rhubarb/SM
+Rhuddlan/M
+Rhulen/M
+Rhum/M
+rhumb/SM
+rhumba/S
+rhumbatron/SM
+Rhuthun/M
+Rhyacian
+Rhyd-y-bryw/M
+Rhyd-y-foel/M
+Rhydderch/M
+Rhydieithon/M
+Rhydithon/M
+Rhydwen/M
+Rhyl/M
+rhyme/SRGDMp
+rhymester/SM
+Rhymney/M
+Rhyn/M
+Rhynd/M
+Rhynie/M
+rhyolite/WSM
+Rhys/M
+rhythm/1MwSWp
+rhythmite/SM
+Ri/M
+rial/MS
+Rialto/M
+Rian/M
+rib/RSMDGp
+ribald/SM
+ribaldry/SM
+riband/S
+Ribas/M
+ribavirin/SM
+Ribbesford/M
+ribbie/SM
+ribbing/M
+ribbit/Sd
+Ribble/M
+Ribblesdale/M
+Ribbon
+ribbon/SMy
+ribboned
+ribbonfish/SM
+Ribbonism/M
+ribbony
+Ribby-with-Wrea/M
+Ribby/M
+ribcage/SM
+Ribchester/M
+Ribeiro/M
+ribitol/M Noun: uncountable
+riblet/SM
+riboflavin/M
+ribohomopolymer/SM
+ribonuclease/SM
+ribonucleic
+ribonucleoprotein/SM
+ribonucleoside/SM
+ribonucleotide/SM
+ribophorin/SM
+ribose/SM
+ribosome/SMO
+ribostamycin/M Noun: uncountable
+Riboviria Taxonomic realm
+ribozyme/SM
+Ribston/M
+ribwort/S
+Riby/M
+Rica/M
+Rican/SM
+Ricardian/SM
+Ricardianism/M
+Ricardo/M
+ricasso/SM
+Ricatti/M
+Riccall/M
+Riccarton/M
+Riccati/M
+Riccatti/M
+rice-paper
+rice/SM
+ricercar/SM
+Rich/M
+rich/PTSY
+Richard/MS
+Richardo/M
+Richardson/M
+Richelieu/M
+richen/d
+Richerson/M
+Richey/M
+Richfield/M
+Richhill/M
+Richie/M
+Richland/M
+Richmond/M
+Richmondshire/M
+Richter/M
+Richton/M
+ricin/M Noun: uncountable
+ricinine/M Noun: uncountable
+rick/GDMS
+Rickard/M
+rickets/M Noun: uncountable
+rickettsemia/SM
+rickettsia/OSM
+rickettsiae/M
+rickettsiosis/M
+rickety/T
+Rickey/M
+rickey/SM
+Rickie/M
+Rickinghall/M
+Ricklefs/M
+Rickling/M
+Rickman/M
+Rickmansworth/M
+ricksha/SM
+rickshaw/MS
+Ricky/M
+Rico/M
+ricochet/dGDS
+ricotta/SM
+rictal
+rictus
+rid/rS7G
+riddance/SM
+Riddell/M
+ridden/c
+riddim/SM
+Riddings/M
+riddle/DSMG
+Riddlesworth/M
+ride/GCRS
+rideable
+Rideau/M
+rider's/ce
+rider/p
+riders/e
+rides/c
+ridge-pole/SM
+ridge-tile/SM
+ridge/DGSMZ
+Ridge/M
+Ridgecrest/M
+Ridgefield/M
+Ridgeland/M
+Ridgeville/M
+Ridgewell/M
+Ridgewood/M
+Ridgmont/M
+Ridgway/M
+ridgy/T
+ridicule/SDMGr
+ridiculous/YP
+riding/M
+Riding/MS
+Ridley/M
+Ridlington/M
+Ridware/M
+Riefenstahl/M
+Riegl/M
+Riehm/M
+Riemann/M
+Riemannian
+Riesling/SM
+Rievaulx/M
+rifampicin/SM
+rifampin/M Noun: usually uncountable
+rife/T
+riff-raff/M Noun: usually uncountable
+riff/MS
+riffage/M Noun: uncountable
+riffle/DSGM
+rifle-fire
+rifle/mGSMD
+riflescope/SM
+rifling/M
+rift/SGMDp
+rig/JDMRGS
+Riga/M
+rigadoon/MS
+rigatoni/M
+Rigby/M
+Rigel/M
+rigger/eSM
+rigging/M
+Riggott/M
+Riggs/M
+right-angled
+right-click/SGD
+right-hand/iDr
+right-minded
+right-on
+right-thinking
+right-wing/r
+right/pRP7DjG36SY~
+righten
+righteous/UY
+righteousness/M
+righteousness/U
+rightfulness
+rightism/SM
+rightmost
+righto
+rightward/S
+righty-ho
+rigid/Y
+rigidify/SGD
+rigidity/SM
+rigmarole/SM
+Rignoux/M
+Rigoletto/M
+rigorous/YP
+rigour/SM
+Rigsby/M
+Rigsdagen/M
+Rigside/M
+Rigton/M
+rigueur
+Rigveda/M
+Rihanna/M
+Riker/M
+rile/DSG
+Riley/M
+Rilke/M
+rill/SM
+rille/SM
+Rillington/M
+rim/GpSDM
+Rimbaud/M
+rime/SM
+rimfire/SM
+Rimington/M
+Rimkus/M
+Rimm/M
+Rimmon/M
+Rimouski-Neigette/M
+Rimouski/M
+Rimpoche/M
+Rimpton/M
+Rimswell/M
+Rinaldi/M
+Rinaldo/M
+rind/SDMp
+rinderpest/M Noun: usually uncountable
+rindles
+rindlis/M
+Rinehart/M
+ring-fence/SGD
+ring-pull/SM
+ring/pGMRDk
+ringback/M Noun: uncountable
+ringbark/SGD
+ringbolt/SM
+ringbone
+ringdown/SM
+ringild/M
+ringildry/M
+Ringland/M
+ringleader/SM
+ringlet/SM
+Ringley/M
+ringlike
+Ringling/M
+ringmaster/MS
+Ringmer/M
+Ringmore/M
+Ringo/M
+Ringsend/M
+Ringsfield/M
+Ringshall/M
+ringside/MRS
+Ringstead/M
+ringtone/SM
+Ringway/M
+Ringwood/M
+ringworm/SM
+Ringwould/M
+rink/MS
+rinse/GDSr
+Rio/SM
+Riordan/M
+riot/DRMGSJ
+riotous/PY
+rip-off/SM
+rip-roaring/Y
+rip/DRGS
+riparian/SM
+ripcord/SM
+Ripe/M
+ripe/YP
+ripen/dS
+riper
+Ripers/M
+ripicolous
+ripieni/M
+ripienist/SM
+ripieno/SM
+Ripley/M
+Ripon/M
+riposte/DMSG
+ripping/Y
+Rippingale/M
+ripple/GMYDS
+Ripple/M
+ripplet/SM
+ripply/T
+Rippner/M
+Rippon/M
+Ripponden/M
+ripsaw/SM
+ripstop/SM
+Ripton/M
+Ripuarian/M
+Risborough/M
+Risby/M
+RISC/M
+Risca/M
+rise/bGJS
+Rise/M
+Riseholme/M
+Riseley/M
+risen
+Rishangles/M
+Rishel/M
+risibility/M Noun: usually uncountable
+Rising/M
+Risinghurst/M
+risk-adverse
+risk-neutral
+risk/GSZzDMp
+risky/TP
+Risley/M
+Risorgimento
+risotto/SM
+risperidone/M Noun: uncountable
+risqué
+Rissington/M
+Risso/M
+rissole/SM
+Riston/M
+Rita/M
+Ritalin/M
+Ritchie/M
+rite/MSp
+Ritek/M
+ritonavir/M Noun: uncountable
+Ritscher/M
+Ritter/M
+Ritu/M
+ritual/QS8YM
+ritualism/SM
+ritualistic/Y
+Rituxan/M
+Ritz/M
+ritzy/T
+Riva/MS
+rival/SMyGD
+rivalry/SM
+rivaroxaban/M Noun: uncountable
+rive/RGDS
+Rivel/M
+riven
+Rivenhall/M
+River/M
+Rivera/M
+Riverbank/M
+riverbank/MS
+riverbed/SM
+riverboat/SM
+Riverdale/M
+riverfront/SM
+Riverhead/M
+riverine
+Riverlands/M
+Riverlea/M
+riverless
+Rivermont/M
+Rivers/M
+Riversdale/M
+Riverside/M
+riverside/SM
+Riverstone/M
+Riverton/M
+Riverview/M
+Rivest-Shamir-Adleman/M
+Rivest/M
+rivet/drSMk
+Riviera/M
+Rivière-du-Loup/M
+Rivière-du-Nord/M
+Rivière-Rouge/M
+Rivington/M
+Rivne/M
+rivulet/SM
+Riwaka/M
+Rixton-with-Glazebrook/M
+Riyadh/M
+riyal/SM
+Rizza/M
+Rizzio/M
+Rizzo/M
+RJ45
+RMI/SM
+Rn/M
+RNA/SM
+RNase/SM Abbreviation of ribonuclease
+Roa/M
+roach/SM
+road-based
+road-hog/SM
+road-test/SGD
+Road/M
+road/MSp
+roadbed/SM
+roadblock/SM
+Roade/M
+roadholding/M Noun: uncountable
+roadhouse/SM
+roadie/SM
+roadkill/SM
+roadmap/SGD
+roadrunner/SM
+roadshow/SM
+roadside/SMR
+roadster/MS
+roadstone/SM
+roadsweeper/SM
+roadway/SM
+roadwork/SM
+roadworthy/P
+roam/GDRS
+roan/SM
+Roane/M
+Roanoke/M
+roar/RkSDGJ
+Roarke/M
+roast/RGDSJ
+Roath/M
+rob/GDRS
+Rob/M
+Robb/M
+Robben/M
+robbery/SM
+Robbie/M
+Robbins/M
+Robbinsdale/M
+Robbinsville/M
+Robby/M
+robe/MDS
+Roberson/M
+Robert-Cliche/M
+Robert/SM
+Roberta/M
+Roberto/M
+Roberton/M
+Roberts/M
+Robertsbridge/M
+Robertson/M
+Roberval/M
+Robeson/M
+Robespierre/M
+Robeston/M
+Robichaud/M
+Robillard/M
+Robin/M
+robin/MS
+Robinette/M
+Robinia Taxonomic genus
+Robins/M
+Robinson/M
+Robles/M
+Robley/M
+robocop/SM
+Roborough/M
+robot/WMS
+roboteer/SM
+robotesque
+robotian
+robotic/SOY3
+roboticised
+roboticized
+robotise/SGDN
+robotism/M Noun: uncountable
+robotize/SGDN
+robotlike
+robotnick
+robotnik
+robotology/M3
+Robroyston/M
+Robson/M
+Robstown/M
+robust/YPT
+Roby/M
+Robyn/M
+Rocco/M
+Rocester/M
+Roch/M
+Rochdale/M
+Roche/M
+Rochelle/M
+Rocher-Percé/M
+Rochester/M
+Rochford/M
+rock'n'roll
+rock-bottom
+rock-climber/SM
+rock-climbing/M Noun: uncountable
+Rock/M
+rock/RZ2DGSMp
+rockabilly/SM
+rockabillys
+Rockaway/M
+Rockbeare/M
+Rockbourne/M
+Rockbridge/M
+Rockcastle/M
+Rockcliffe/M
+Rockdale/M
+Rockefeller/M
+rockery/SM
+rocket/dySM
+rocketeer/SMG
+rocketry/SM
+rockfall/SM
+Rockfield/M
+rockfish/SM
+Rockford/M
+Rockhampton/M
+Rockies The Rocky Mountains, a mountain range in North America
+rocking-horse/SM
+Rockingham/M
+Rockland/MS
+Rockledge/M
+Rockliff/M
+Rocklin/M
+rockslide/SM
+rocksteady/M Noun: uncountable
+Rockton/M
+Rockville/M
+Rockwall/M
+Rockwell/M
+rockwork/SM
+Rocky/M
+rocky/T
+rococo/M Noun: uncountable
+Rocque/M
+Roczek/M
+rod/SGDMp
+Rodborough/M
+Rodbourne/M
+Rodd/M
+Rodden/M
+Roddenberry/M
+rode/cF
+Rode/M
+Rodeffer/M
+rodent/MS
+Rodentia Taxonomic order
+rodenticide/SM
+rodeo/MS
+Roderick/M
+Rodger/MS
+Rodham/M
+Rodin/M
+Roding/M
+Rodington/M
+Rodinia/M
+Rodley/M
+Rodman/M
+Rodmarton/M
+Rodmell/M
+Rodmersham/M
+Rodmill/M
+Rodney/M
+Rodolfo/M
+Rodrigo/M
+Rodrigues/M
+Rodriguez/M
+Rodríguez/M
+Rodriquez/M
+Rodsley/M
+Rodway/M
+Rodwell/M
+roe/MS
+roebuck/SM
+Roeburndale/M
+Roecliffe/M
+Roedean/M
+Roemer/M
+roentgen/MS
+roentgenium/M Noun: uncountable
+roentgenological/Y
+roentgenology/MW
+Roethlisberger/M
+Rogan/M
+Rogart/M
+Rogate/M
+Rogation/M
+rogation/SM
+Rogelio/M
+Rogen/M
+Roger/MS
+roger/Sd
+Rogério/M
+Rogernomics/M Noun: uncountable
+Rogerson/M
+Rogerstone/M
+Roget/M
+Roggiet/M
+Rogiere/M
+Rogiet/M
+rogue/ySM
+roguery/MS
+roguish/YP
+Rogus/M
+Rohmer/M
+Rohnert/M
+Rohrmann/M
+ROI/SM
+roil/SGD
+roily
+roister/drS
+Roizman/M
+Rojas/M
+Rojava/M
+Rojo/M
+Rokeby/M
+Roland/M
+role-play/GD
+rôle/MS
+role/MZS
+Rolette/M
+Rolf/M
+Rolfe/M
+roll-back/SM
+roll-call
+roll-off
+roll-on
+roll-out/SM
+roll-over/SM
+roll/GUSD
+roll/k
+Rolla/M
+Rolland/M
+Rollason/M
+rollback/SGDMR
+roller-coast/R
+roller-skate/GSDM
+roller/MS
+rollerball/SM
+rollerblade/SGDR
+Rollerblade/SM
+rollerman/M
+Rollesby/M
+Rolleston/M
+Rollestone/M
+rollick/SGkD
+Rollin/MS
+rolling-pin/SM
+rolling-stock
+Rolling/M
+rollio/M
+rollmop/SM
+Rollo/M
+rollock/SM
+rollocking/SM
+rollout/SM
+rollover/SM
+Rollox/M
+Rollright/M
+Rolodex/M
+Rolph/M
+Rolvenden/M
+roly-poly
+ROM/SM
+Roma/M
+Romaguera/M
+Romaic/M
+romaine/SM
+Romaldkirk/M
+Roman/SM3
+Romanby/M
+romance/RSDMG
+Romanes
+Romanesque
+Romania/MW
+Romanian/MS
+romanise/nSDG
+Romanish/M
+Romanism/M
+romanize/SGnD
+Romano/M
+Romanov/M
+Romansh/M
+Romansleigh/M
+romantic/8Q3MYS
+romanticism/MS
+Romanus/M
+Romany/M
+Romão/M
+Romberg/M
+rombowline/M Noun: uncountable
+romcom/SM
+Rome/M
+Romei/M
+Romeo/MS
+Romeoville/M
+Rømer/M
+Romer/M
+Romero/M
+Romesh/M
+Romeward/S
+Romford/M
+Romijn/M
+Romina/M
+Romish
+Rommel/M
+Romney/M
+Romo/M
+romp/RGSD
+Rompuy/M
+Romsey/M
+Romsley/M
+Romulus/M
+Romy/M
+Ron/MZ
+Rona/M
+Ronald/M
+Ronaldinho/M
+Ronaldo/M
+Ronaldsay/M
+Ronan/M
+Ronda/M
+rondel/SM
+rondo/SM
+Rondón/M
+Roneo/MS
+Rongotai/M
+Ronnie/M
+Ronny/M
+Rontgen/M
+Rood/M
+rood/MS
+Roof/M
+roof/RpDGSM
+roofing/M
+roofline/SM
+rooftop/SM
+rooibos/M Noun: uncountable
+rooinek/SM
+rook/SM~
+rookery/MSD
+rookie/SM
+rooklet
+Rookley/M
+Rooksdown/M
+Rookwith/M
+Rookwood/M
+room-mate/MS
+room/Z6M2S
+roomful/SM
+roomy/T
+Rooney/M
+Roos/M
+Roosevelt/M
+roost/SMRDG
+roosterfish/SM
+root-mean-square
+root/RipDMGSZ
+rootage
+Roothing/M
+rootier
+rootiest
+rootkit/SM
+rootlessness
+rootlet/MS
+rootlike
+rootstock/MS
+rootsy/T
+rootworm/SM
+rope/GRD7SM
+Rope/M
+ropemaker/SM
+ropemanship/M
+ropesight
+ropework/SM
+ropey
+ropinirole/M Noun: uncountable
+Ropley/M
+Ropsley/M
+Roquefort/M
+Rorke/M
+rorqual/SM
+Rorschach/M
+Rory/M
+Rosa/M
+rosacea/M Noun: usually uncountable
+Rosales/M
+Rosalie/M
+Rosalind/M
+rosaline/M Noun: uncountable
+Rosalyn/M
+Rosamond/M
+Rosanae Taxonomic superorder
+rosaniline/SM
+Rosanna/M
+rosaria/M
+rosarian/SM
+Rosário/M
+Rosario/M
+rosarium/SM
+rosary/DSM3
+Roscius/M
+Roscoe/M
+Roscommon/M
+Roscosmos
+rose-coloured
+rose-red
+rose-tinted
+Rose/M
+rose/MyZSp
+rosé/SM
+Roseacre/M
+Roseanne/M
+roseate/Y
+Roseau/M
+Rosebank/M
+rosebay/SM
+Rosebery/M
+rosebud/SM
+Roseburg/M
+rosebush/MS
+Rosedale/M
+rosefinch/SM
+Rosehall/M
+Rosehearty/M
+Rosehill/M
+Roseland/MS
+Rosell/M
+Rosella/M
+Roselle/M
+Rosemarie/M
+Rosemarket/M
+Rosemarkie/M
+rosemary/M Noun: usually uncountable
+Rosemead/M
+Rosemère/M
+Rosemonde/M
+Rosemont/M
+Rosemount/M
+Rosen/M
+Rosenallis/M
+Rosenbaum/M
+Rosenberg/M
+Rosencrantz/M
+Roseneath/M
+Rosenfeld/M
+Rosenstein/M
+Rosenthal/M
+Rosetta/M
+rosette/SMD
+Roseville/M
+rosewater/M Noun: usually uncountable
+Rosewell/M
+rosewood/MS
+Rosh/M
+Roshan/M
+Roshi/SM
+Rosicrucian/SM
+Rosicrucianism/M Noun: uncountable
+Rosie/M
+rosin/dSM
+Rosina/M
+Rosinante/M
+Roskell/M
+Roskilde/M
+Roskill/M
+Roslin/M
+Rosliston/M
+Roslyn/M
+Rosmond/M
+Rosneath/M
+RoSPA
+Ross-on-Wye/M
+Ross/M
+Rossby/M
+Rossendale/M
+Rosseter/M
+Rossett/M
+Rossetti/M
+Rossi/M
+Rossiaud/M
+Rossington/M
+Rossini/M
+Rosskeen/M
+Rossland/M
+Rosslea/M
+Rosslyn/M
+Rossman/M
+Rossmanith/M
+roster/MSd
+Rostherne/M
+Rostock/M
+Rostom/M
+Roston/M
+Rostov/M
+rostra/M
+rostral/SMY
+Rostraver/M
+Rostrevor/M
+rostro-caudal
+rostrocaudally
+rostroid
+rostrum/SM
+rosulate
+rosuvastatin/M Noun: uncountable
+Roswell/M
+rosy/PYT
+Rosyth/M
+rot-gut/M
+rot/nDSGR
+rota/yvSVM
+Rotarian/SM
+rotary/SM
+rotatable/Z
+rotate/SxGDny
+rotator/MS
+Rotavator/SM
+rotavirus/SM
+rote/M Noun: uncountable
+Rotemberg/M
+rotenone/SM
+rotgut/M Noun: usually uncountable
+Roth/M
+Rothamsted/M
+Rothbury/M
+Rothenbacher/M
+Rother/M
+Rotherby/M
+Rotherfield/M
+Rotherham/M
+Rotherhithe/M
+Rothermere/M
+Rothersthorpe/M
+Rotherwick/M
+Rothes/M
+Rothesay/M
+Rothiemay/M
+Rothiemurchus/M
+Rothienorman/M
+Rothley/M
+Rothman/M
+Rothschild/M
+Rothstein/M
+Rothwell/M
+rotifer/SM
+rotisserie/SM
+rotogravure/SM
+Rotokauri/M
+rotor/SM
+rotorcraft/M
+Rotorua/M
+rotoscope/SGDM
+Rototuna/M
+rotound
+rotstone
+rotten/Y~
+rottener
+rottenest
+rottenness
+rottenstone/SM
+Rotterdam/M
+Rottingdean/M
+Rottweiler/SM
+rotty
+rotund/Y
+rotunda/SM
+rotundity/SM
+Rouault/M
+rouble/SM
+Roudham/M
+roué/MS
+Rouen/M
+Rouge/M
+rouge/SGDM
+rouget/SM
+rough-and-ready
+rough-hewn
+Rough/M
+rough/YTPDSG~
+roughage/SM
+Rougham/M
+roughcast/SMGr
+roughen/dS
+Roughfort/M
+Roughlee/M
+roughneck/SM
+roughshod
+Roughton/M
+Rouhani/M
+rouky
+roulade/GSM
+rouleau/SM
+roulette/SMGD
+round-arm
+round-off
+round-shouldered
+round-the-clock
+round-up
+Round/M
+round/MGiSDPYRT~
+roundabout/SM
+rounded/P
+roundel/SM
+roundelay/SM
+Roundhead/MS
+roundhouse/SM
+roundworm/MS
+Rounton/M
+Rourke/M
+Rous/M
+Rousay/M
+Rousdon/M
+Rouse/M
+rouse/SDGr
+Rousey/M
+Rousham/M
+Rousky/M
+Rousseau/M
+Rousseauism/M Noun: uncountable
+Rousseauist/MS
+Roussel/M
+Roussillon/M
+roust/GDS
+roustabout/MS
+rout/SMRGDJ
+route/aDSA
+route/M
+routeing/A
+Routh/M
+routine/PQSYM3
+routing/SM
+routinism/SM
+Routledge/M
+Routt/M
+Rouville/M
+Rouyn-Noranda/M
+rove/RGDS
+Roveri/M
+row/DRMSG7
+Row/M
+Rowan/M
+rowan/SM
+Rowant/M
+rowback/SM
+Rowberrow/M
+Rowde/M
+Rowditch/M
+rowdy/PTSMY
+rowdyism/SM
+Rowe/M
+rowel/MGDS
+Rowell/M
+Rowena/M
+rowing-boat/MS
+Rowington/M
+Rowland/MS
+Rowlandson/M
+Rowlett/M
+Rowley/M
+Rowling/M
+rowlock/SM
+Rowlstone/M
+Rowman Rowman & Littlefield (Publisher)
+Rowner/M
+Rownhams/M
+Rowntree/M
+Rowsham/M
+Rowsley/M
+Rowson/M
+Rowston/M
+Rowton/M
+Roxanne/M
+Roxburgh/M
+Roxburghshire/M
+Roxbury/M
+Roxby/M
+Roxham/M
+Roxholm/M
+Roxholme/M
+Roxie/M
+Roxton/M
+Roxwell/M
+Roxx/M
+Roy/M
+royal/3SMY
+Royal/M
+royalism/SM
+Royalton/M
+royalty/SM
+Royce/M
+Royd/M
+Roydon/M
+Royston/M
+Royton/M
+RP/SM
+RPG/SM
+RPI/M Initialism of Retail Price Index
+rpm
+RPO/SM
+rRNA/SM
+RRP/SM
+Rs.
+RSA/M
+RSC/M
+RSI/SM Initialism of repetitive strain injury.
+RSM/SM
+RSPCA/M Initialism of Royal Society for the Prevention of Cruelty to Animals
+RSS/M Noun: uncountable
+RSV/SM
+RSVP/SM
+rt
+rt.
+Rt.
+RTA/SM
+rte
+RTF/M
+RTFM
+RTL
+RTX/M
+RU
+Ru/M
+Ruabon/M
+Ruakaka/M
+Ruakura/M
+Ruanlanihorne/M
+Ruapehu/M
+Ruardean/M
+Ruaridh/M
+Ruatoria/M
+Ruawai/M
+rub-a-dub
+rub/SRGD
+rubati/M
+rubato/SM
+rubber-stamp/DG
+rubber/QZ
+rubberize/DGS
+rubberneck/DRGSM
+rubbery/T
+rubbing/M
+rubbish/SGDZM
+rubble/DMSYr
+rubby-dubby/M Noun: uncountable
+rubdown/SM
+Rube/M
+rubedinous
+rubefacient/SM
+rubefy/DGS
+rubella/M Noun: uncountable
+rubelliform
+rubellite/M
+Ruben/MS
+Ruberslaw/M
+rubescent
+Rubicon/M
+rubicon/MS
+rubiconed
+rubiconing
+rubicund
+rubicundity/M
+rubidium/M Noun: usually uncountable
+rubidocene
+rubifacient
+rubify/DGS
+rubiginous
+Rubik/M
+Rubin/M
+Rubinfeld/M
+Rubinow/M
+Rubinstein/M
+Rubio/M
+rubious
+Rubislaw/M
+rubout/SM
+rubric/SMO
+rubricate/DGS
+rubrication/MS
+rubricator/MS
+rubrician/MS
+rubricism/M
+rubricist/MS
+ruby/SM
+Ruchazie/M
+ruche/SDG
+Ruchill/M
+ruck/MS
+Ruckinge/M
+Ruckland/M
+ruckle/SGDJ
+Ruckley/M
+Ruckriem/M
+rucksack/6SMD
+ruckus/SM
+rucola/M Noun: uncountable
+ruction/SM
+Rudbaxton/M
+Rudby/M
+Rudd/M
+rudder/pMS
+Ruddington/M
+Ruddock/M
+ruddock/MS
+Ruddry/M
+ruddy/TPY
+Rude/M
+rude/TYP
+Ruden/M
+rudery/MS
+Rudesheimer/MS
+Rudford/M
+Rudge/M
+Rudgley/M
+Rudgwick/M
+Rudham/M
+Rudheath/M
+rudiment/SMO
+rudimentary/SM
+rudish
+Rudland/M
+Rudman/M
+Rudner/M
+Rudolf/M
+Rudolph/M
+Rudra/M
+Rudry/M
+Rudston/M
+Rudy/M
+Rudyard/M
+rue/Gj6SD
+Rueda/M
+Ruediger/M
+ruefulness
+Rüegg/M
+Ruez/M
+rufescence/M
+rufescent
+ruff/SGDM
+ruffe/MS
+ruffian/MSY
+ruffianism/M
+Ruffin/M
+Ruffini/M
+ruffle/DGS
+ruffler/MS
+Rufford/M
+Rufforth/M
+Rufinus/M
+rufous
+Rufus/M
+rug/hSMDi
+rugae/M
+Rugbeian/MS
+rugby/M
+Rugby/M
+Rugeley/M
+ruggedize/DGS
+rugger/M
+Ruggiero/M
+Ruggles/M
+rugose/Y
+rugosity/M
+Ruhr/M
+Rui/M
+ruin/dMSn
+ruinous/Y
+ruinousness/M
+Ruishton/M
+Ruislip/M
+Ruiz/M
+Rukh/M
+rule/cSaGD
+rule/Mp
+rulebook/SM
+rulemaking
+ruler/SM
+rulership
+ruling/SM
+rum/ZMSRY
+Rumania/M
+Rumanian/SM
+Rumansh/M
+rumba/DMSG
+rumbatron
+rumble/SGDJM
+Rumbold/M
+Rumboldswyke/M
+rumbowline/M Noun: uncountable
+Rumburgh/M
+rumbustious
+Rumelia/M
+rumen/MSW
+Rumford/M
+rumina/M
+ruminant/SM
+ruminate/DGvSnV
+ruminator/MS
+rummage/GDSr
+rummest
+rummy/TM
+rumness/M
+Rumney/M
+rumour-monger/SM
+rumour-mongering/M
+rumour/DGSM
+rumourmonger/MS
+rump/DSYMp
+rumple/SGD
+rumply/T
+rumpus/SM
+rumpy
+Rumsfeld/M
+Rumsfield/M
+rumule
+run-down/M
+run-in/SM
+run-of-the-mill
+run-off/MS
+run-out/SM
+run-through
+run-up/SM
+run/eGScA
+runabout/MS
+runagate/MS
+Runamia/M
+Runanga/M
+runaround
+runaway/SM
+runcible
+runcinate
+Runcorn/M
+Runcton/M
+rundale/MS
+Rundle/M
+rundown/SM
+rune/MSW
+rung/DSMp
+Runhall/M
+Runham/M
+runlet/MS
+runnable
+runnel/SM
+Runnels/M
+runner-up
+runner/SM
+runners-up
+Runnington/M
+runny/T
+Runnymede/M
+runrig/MS
+runt/MZS
+runtime/SM
+Runton/M
+runty/T
+Runwald/M
+runway/SM
+Runwell/M
+Runyon/M
+rupee/MS
+Rupert/M
+rupes
+rupiah/SM
+Ruppelt/M
+rupture/GMDS
+Rural/M
+rural/Y
+rurality/SM
+ruralize/DGS
+ruridecanal
+Ruritania/M
+Ruritanian/MS
+rusa/MS
+Ruscombe/M
+ruse/SM
+rush-hour
+Rush/M
+rush/RDZGSM
+Rushall/M
+Rushbrooke/M
+Rushbury/M
+Rushcliffe/M
+Rushden/M
+Rushdie/M
+Rushen/M
+Rushford/M
+rushlight/MS
+rushlike
+Rushmere/M
+Rushmoor/M
+Rushmore/M
+Rushock/M
+Rusholme/M
+Rushton/M
+Rushwick/M
+rushy/T
+Rusk/M
+rusk/MS
+Ruskin/M
+Ruskington/M
+Rusland/M
+Rusper/M
+Ruspidge/M
+Russ/M
+Russel/M
+Russell/MS
+Russellville/M
+russet/MSZ
+Russia/M
+Russian/SM
+Russianize/DGS
+Russification/MS
+Russify/DGS
+Russki/MS
+Russo/M
+Russophile/MS
+Russophobe/MS
+Russophobia/M
+Rust/M
+rust/SWZG1D2Mp
+Rustbelt/M
+Rusthall/M
+rustic/SM
+rusticate/SGDn
+rusticism/SM
+rusticity/SM
+rusticle/SMZ
+rusticness
+Rustin/M
+Rustington/M
+rustle/MDRGSk
+Ruston/M
+rustproof/SGD
+rustproofer
+rustre/MSD
+rusty/PTnY
+rut/SGMZD
+rutabaga/SM
+Rute/M
+Rutgers/M
+Ruth/M
+Ruthann/M
+Ruthenian/SM
+ruthenium/M
+ruthenocene
+Rutherford/M
+rutherfordium/M
+Rutherglen/M
+Ruthie/M
+Ruthin/M
+ruthless/PY
+Ruthrieston/M
+Ruthven/M
+Ruthwell/M
+rutilant
+rutile/SM
+Rutland/M
+Rutledge/M
+Rutter/M
+ruttish
+Ruttloff/M
+rutty/T
+Ruud/M
+Ruwenzori/M
+Rux/M
+Ruyton-XI-Towns/M
+Ruyton/M
+RV/SM
+Rwanda/M
+Rwandan/SM
+Rwandese/M
+Ryan/M
+Ryanair/M
+Ryans/M
+Ryarsh/M
+Ryburgh/M
+Rydal/M
+Ryde/M
+Ryder/M
+Rye/M
+rye/MS
+Ryedale/M
+ryegrass/SM
+Ryhall/M
+Ryhill/M
+Ryhope/M
+Rykener/M
+Rylance/M
+Rylstone/M
+Ryme/M
+ryokan/MS
+Ryong-hae/M
+Ryston/M
+Ryther/M
+Rytky/M
+Ryton/M
+Ryukyu/M
+Ryzen/M
+S-VHS/M
+s/ko7
+Sa/M
+SA/SM
+Saab/M
+Saale/M
+Saalfeld/M
+Saar/M
+Saarland/M
+Saavedra/M
+sabadilla/SM
+Sabaean/MS
+Sabah/M
+Sabana/M
+Sabaoth
+Sabar/M
+Sabash/M
+sabbatarian/SM
+sabbatarianism
+Sabbath/MS
+sabbath/SM
+sabbatical/SM
+Sabden/M
+Sabellian/MS
+Sabellius/M
+sabermetric
+sabermetrician/SM
+sabermetrics/M Noun: uncountable
+Sabha/M
+Sabian/MS
+sabicu/MS
+Sabin/M
+Sabina/M
+Sabine/MS
+Sable/M
+sable/MS
+sabot/SM
+sabotage/SDG
+saboted
+saboteur/SM
+sabra/SM
+sabre-toothed
+sabre/SMD
+sabretache/MS
+sabretooth/SM
+sabreur/MS
+Sabrina/M
+sac-like
+sac/DGSM
+Sac/M
+saccade/SMW
+saccate
+saccharide/SM
+saccharin/SM
+saccharine
+saccharometer/MS
+saccharose/M
+saccular
+sacculated
+sacculation
+saccule/SM
+sacculus
+sacerdotal/Y
+sacerdotalism/M
+sacerdotalist/MS
+Sacha/M
+sachem/SM
+sachemic
+sachet/SM
+Sachi/M
+Sachs/M
+Sachse/M
+sack-like
+sack/M6JSr
+sackable
+sackbut/SM
+sackcloth/SM
+Sackett/M
+sackful/SM
+sacking/M
+Sackville/M
+Saco/M
+Sacombe/M
+sacra/OLM
+sacralise/SGDN
+sacramental/SMY
+sacramentalism/M
+sacramentalist/MS
+sacramentality/M
+Sacramento/M
+sacraria/M
+sacrarium/M
+sacred/YP
+sacrifice/GDSOoM
+sacrilege/MS
+sacrilegious/Y
+sacring/MS
+sacrist/MS
+sacristan/SM
+sacristy/SM
+Sacrobosco/M
+sacroiliac/SM
+sacrosanct
+sacrosanctity/SM
+sacrum/MS
+sad/T3PY
+Sadako/M
+Sadat/M
+Sadberge/M
+Saddam/M
+Saddell/M
+sadden/dS
+Saddington/M
+saddish
+saddle/GUDS
+Saddle/M
+saddle/Mp
+saddleback/SMD
+saddlebag/MS
+saddler/MS
+saddlery/SM
+Saddleworth/M
+Sadducean
+Sadducee/SM
+Sadduceeism/M
+sadguru/SM
+sadhana/M Noun: usually uncountable
+Sadhasivam/M
+sadhu/MS
+Sadie/M
+sadism/SM
+sadist/SM1W
+Sadler/M
+sadomasochism/SM
+sadomasochist/WMS
+Sadovsky/M
+Sadowa/M
+Sadr/M
+SAE/SM
+safari/SM
+safe/MS
+safe/YU
+safeguard/GSDM
+safehouse/SM
+safekeeping/M Noun: usually uncountable
+safelight/SGD
+safener/SM
+safeness/M Noun: uncountable
+safer
+safest
+Safety/M
+safety/SM
+safeword/SM
+safflower/SM
+Saffron/M
+saffron/SM
+saffrony
+Safi/M
+safranin/SM
+safranine/SM
+sag/GDSZM
+saga/SM
+sagacious/YP
+sagacity/M Noun: usually uncountable
+Sagadahoc/M
+Sagamore/M
+sagamore/MS
+Sagan/M
+Sagar/M
+sage/KMS
+sage/Y
+sagebrush/MS
+sageness/M Noun: usually uncountable
+saggar/MS
+sagger/MS
+Saggers/M
+saggy/T
+Saginaw/M
+Sagitta/M
+sagittal/Y
+Sagittarian/SM
+Sagittarius/M
+sagittate/D
+sago/SM
+saguaro/MS
+Saguenay-Lac-Saint-Jean/M
+Saguenay/M
+Saham/M
+sahara
+Sahara/M
+Saharan/M
+sahib/SM
+Sahibdin/M
+Sahrawi/M
+Sahuarita/M
+Saibil/M
+said/U
+saiga/MS
+Saighton/M
+Saigon/M
+sail/MDSJGpr
+sailboard/SMGr
+sailboat/SM
+sailcloth/M Noun: usually uncountable
+sailfish/MS
+sailing-boat/SM
+sailing-master/SM
+sailing-ship/SM
+sailmaker/SM
+sailmaking/M Noun: uncountable
+sailor/MSYp
+sailplane/SM
+sainfoin/SM
+Sainsbury/M
+Saint-Augustin-de-Desmaures/M
+Saint-Basile-le-Grand/M
+Saint-Basile/M
+Saint-Bruno-de-Montarville/M
+Saint-Césaire/M
+Saint-Colomban/M
+Saint-Constant/M
+Saint-Denis/M
+Saint-Eustache/M
+Saint-Félicien/M
+Saint-Gabriel/M
+Saint-Georges/M
+Saint-Hyacinthe/M
+Saint-Jean-sur-Richelieu/M
+Saint-Jérôme/M
+Saint-Joseph-de-Beauce/M
+Saint-Joseph-de-Sorel/M
+Saint-Lambert/M
+Saint-Lazare/M
+Saint-Lin-Laurentides/M
+Saint-Luc/M
+Saint-Marc-des-Carrières/M
+Saint-Ours/M
+Saint-Pamphile/M
+Saint-Pascal/M
+Saint-Pie/M
+Saint-Raymond/M
+Saint-Rémi/M
+Saint-Sauveur/M
+Saint-Simon/M
+Saint-Simonian/SM
+Saint-Simonianism/M
+Saint-Simonism/M
+Saint-Tite/M
+Saint-Tropez/M
+Saint/M
+saint/MSDYGJ
+Saintbury/M
+saintdom/M
+Sainte-Adèle/M
+Sainte-Agathe-des-Monts/M
+Sainte-Anne-de-Beaupré/M
+Sainte-Anne-de-Bellevue/M
+Sainte-Anne-des-Monts/M
+Sainte-Anne-des-Plaines/M
+Sainte-Catherine-de-la-Jacques-Cartier/M
+Sainte-Catherine/M
+Sainte-Julie/M
+Sainte-Marguerite-du-Lac-Masson/M
+Sainte-Marie/M
+Sainte-Marthe-sur-le-Lac/M
+Sainte-Thérèse/M
+Saintfield/M
+sainthood/SM
+saintlike
+saintliness/SM
+saintling/MS
+saintly/T
+saintpaulia/MS
+Saints/M
+saintship/MS
+Saipan/M
+saithe/MS
+Saiva/M
+Saivism/M
+Saivite/SM
+Sakai/M
+sake/SMr
+Sakhalin/M
+saki/SM
+Sakti/M
+sakti/MS
+Sakyamuni/M
+Sal/M
+salaam/SM
+Salaberry-de-Valleyfield/M
+Salacia/M
+salacious/YP
+salacity/M Noun: usually uncountable
+salad/SM
+salade/MS
+Salah/M
+Salako/M
+Salamanca/M
+salamander/SM
+salamandrian Adjective
+salamandrine/SM
+salamandroid/MS
+salami/MS
+salariat/SM
+salary/SMDG
+salaryman/M
+salarymen/M
+Salas/M
+Salazar/M
+Salcombe/M
+Salcot/M
+Salcott/M
+sale's/A
+sale/BMm5S
+Sale/M
+saleability/M Noun: usually uncountable
+Saleby/M
+Salehurst/M
+Salem/M
+Salen/M
+Salerno/M
+saleroom/MS
+Salesbury/M
+salesgirl/SM
+Salesian/MS
+saleslady/SM
+salesmanship/SM
+salespeople/M
+salesperson/SM
+Salfleetby/M
+Salford/M
+Salfords/M
+Salgado/M
+Salhouse/M
+Salian/MS
+salicin/SM
+salicional/MS
+salicylate/SM
+salicylic
+salience/ZM
+salient/Y
+Salientia
+salientian/MS
+saliferous
+Salina/M
+salina/MS
+Salinas/M
+salinate/SGD
+Saline/M
+saline/SM
+Saling/M
+Salinger/M
+salinisation/SM
+salinity/SM
+salinization/SM
+salinometer/MS
+Salisbury/M
+saliva/My
+salivate/NDSG
+Salk/M
+Salked/M
+Salkeld/M
+Salla/M
+Salle/M
+sallet/MS
+Sallie/M
+sallow/PTSM~
+sallowy
+sally/DMSG
+Sallyanne/M
+salmagundi/MS
+Salman/M
+salmeterol/M
+salmi/MS
+Salmon/M
+salmon/MS
+Salmonby/M
+Salmond/M
+salmonella/M
+salmonellae/M
+salmonellosis/M
+salmonoid/MS
+Salo/M
+Salome/M
+Salomon/M
+salon/MS
+saloon/SM
+Salop/M
+Salopian/MS
+Salperton/M
+salpiglossis/M
+salpingectomy/SM
+salpingitis/M
+salsa/MS
+Salsburgh/M
+salsify/M Noun: usually uncountable
+salt-and-pepper
+salt-cat
+salt-cellar/SM
+salt-marsh/M
+salt-mashes
+salt-pan/MS
+salt-spoon/MS
+salt/CSDG
+Salt/M
+salt/YrpMJ~
+saltarello/SM
+Saltash/M
+saltation/SM
+saltatory/O
+Saltburn/M
+saltbush/MS
+Saltby/M
+Saltcoats/M
+Salterforth/M
+saltern/MS
+Saltersford/M
+Salterton/M
+Saltfleet/M
+Saltfleetby/M
+Saltford/M
+Salthouse/M
+saltimbocca/SM
+saltiness/M Noun: usually uncountable
+saltire/MS
+saltirewise
+Saltley/M
+Saltmarshe/M
+saltness/M Noun: uncountable
+Saltney/M
+Salton/M
+Saltoun/M
+saltpetre/SM
+saltus/MS
+saltwater/SM
+Saltwood/M
+saltwort/SM
+salty/T
+Saltz/M
+salubrious/YP
+salubrity/SM
+Saluda/M
+saluki/SM
+salutary
+salutational
+salutatory/SM
+salute/SnGDr
+salvable
+Salvadinha/M
+Salvado/M
+Salvador/M
+Salvadoran/SM
+Salvadorean/SM
+Salvadorian/SM
+salvage/GMDSr
+salvageable
+Salvarsan/M
+salvation/M3
+salvationism/M Noun: usually uncountable
+Salvationist/SM
+Salvatore/M
+Salve
+salve/RMSnGD
+Salvesen/M
+Salvia
+salvia/MS
+Salvidenus/M
+salvific
+Salvin/M
+Salvington/M
+salvo/MS
+salvoes
+salwar/SM
+Salwarpe/M
+Salyut/M
+Salzburg/M
+Salzkammergut/M
+Sam/ZM
+Sama
+Samadhi/M
+samadhi/SM
+Samael/M
+Samah/M
+Samantha/M
+Samara/M
+samara/SM
+Samaria/M
+Samaritan/SM
+Samaritanism/M
+samarium/M
+Samarkand/M
+samarocene
+Samarra/M
+samba/SMGD
+sambar/MS
+sambhar/M
+sambo/MS
+Sambo/MS
+Sambourn/M
+Sambourne/M
+same
+sameness
+samfu/MS
+Sami/M
+Samian/MS
+samisen/MS
+samite/SM
+samizdat/SM
+Samlesbury/M
+Sammamish/M
+Sammie/M
+Sammy/M
+Samnite/MS
+Samoa/M
+Samoan/SM
+Samos/M
+samosa/SM
+Samouelle/M
+samovar/MS
+Samoyed/MS
+Samoyedic/M
+sampan/MS
+Sampford/M
+samphire/SM
+sample/DRSGMJ
+Sampras/M
+Sampson/M
+samsara/SMW
+Samson/M
+Samsonite/M
+Samsung/M
+Samuel/SM
+Samuelson/M
+samurai/MS
+San/M
+Sana'a/M
+Sananda/M
+Sanatana/M
+sanative/SM
+sanatoria/M
+sanatorium/SM
+sanatory
+Sanborn/M
+Sanbourne/M
+Sanches/M
+Sánchez/M
+Sanchez/M
+Sancho/M
+Sancreed/M
+sanctify/nGDSr
+sanctimonious/YP
+sanctimony/SM
+sanction/GDSM
+sanctitude/M
+sanctity/SM
+Sancton/M
+sanctuary/MS
+sanctum/SM
+sanctus
+Sand/M
+sand/ZMDG2Sr
+sandal/GMDS
+Sandal/M
+Sandall/M
+sandalwood/SM
+Sanday/M
+Sandbach/M
+sandbag/SMDGR
+Sandbank/M
+sandbank/MS
+sandbar/SM
+Sandberg/M
+sandblast/GDSR
+sandboard/SMRG
+sandbox/MSGD
+sandboy/SM
+Sandburg/M
+sandcastle/SM
+Sander/M
+sanderling/SM
+Sanders/M
+Sanderson/M
+Sanderstead/M
+Sandfields/M
+sandfly/SM
+Sandford-on-Thames/M
+Sandford/M
+Sandgate/M
+sandgrouse/M
+Sandhaven/M
+sandhi/MS
+Sandhill/MS
+sandhill/SM
+Sandholes/M
+Sandhurst/M
+Sandhutton/M
+Sandi/M
+Sandiacre/M
+Sandinista/SM
+Sandleheath/M
+Sandler/M
+sandman/M
+sandmen/M
+Sandness/M
+Sandon/M
+Sandor/M
+Sandostatin/M
+Sandoval/M
+Sandown/M
+sandpaper/MdS
+sandpiper/SM
+sandpit/SM
+Sandra/M
+Sandridge/M
+Sandringham/M
+Sandspit/M
+Sandsting/M
+sandstone/SM
+sandstorm/SM
+Sandtoft/M
+Sandtown/M
+Sandusky/M
+Sandwell/M
+Sandwich/M
+sandwich/MSDG
+Sandwick/M
+sandwort/MS
+Sandy/M
+sandy/T~
+Sandycroft/M
+Sandyford/M
+Sandyhills/M
+Sandymoor/M
+Sandys/M
+sane/YT
+sanely/I
+saneness
+Sanford/M
+sang
+sang-de-boeuf
+sang-froid
+sanga/MS
+sangam
+Sangamon/M
+sangar/MS
+sangaree/SM
+sangeet/SM
+Sanger/M
+sangfroid/M Noun: usually uncountable
+Sangiovese/M
+sangrail/M
+sangria/MS
+sanguinariness/M
+sanguinary/MSY
+sanguine/YnC
+sanguineness
+sanguineous/F
+Sanhedrim
+Sanhedrin/M
+sanicle/MS
+Sanicula
+Sanilac/M
+sanitaire/MS
+sanitaria/M
+sanitarian/MS
+sanitariness/M
+sanitarium/MS
+sanitary/UI
+sanitary/Y
+sanitate/DGS
+sanitation/SM
+sanitationist/MS
+sanitise/RGDSN
+sanitize/RGDSN
+sanity/ISM
+Sanjay/M
+sank
+Sankara/M
+Sankey/M
+Sankhya/M
+sannyasi/M
+Sanofi/M
+Sanpete/M
+Sanquhar/M
+sans
+sanserif
+Sanskrit/MW
+Sanskritise/M
+Sanskritist/SM
+Sanson/M
+Sansovino/M
+Sant'Ana/M
+Sant/M
+Santa/M
+Santan/M
+Santana/M
+Santander/M
+Santee/M
+Santell/M
+Santer/M
+Santería/M
+Santeria/M
+Santiago/M
+Santilli/M
+Santillo/M
+Santo/SM
+santolina/SM
+Santon/M
+Santonian
+santonica/M
+santonin/M
+Santorini/M
+Santorum/M
+Santoshi/M
+sanyasi/M
+São/M
+Saône/M
+sap/6DMRZG2pS
+Sapcote/M
+sapele/MS
+Sapey/M
+saphenous
+sapid
+sapidity/M
+sapien/SMW
+sapience/M Noun: usually uncountable
+sapient/MSY
+sapiential
+Sapin/M
+Sapiston/M
+saplessness
+sapling/MS
+sapodilla/SM
+sapogenin/SM
+saponaceous
+saponifiable
+saponification/MS
+saponify/DGS
+saponin/M
+Sapperton/M
+Sapphic
+sapphic/SM
+sapphire/MS
+sapphirine
+sapphism/M Noun: usually uncountable
+Sappho/M
+Sapporo/M
+sappy/TY
+saprobe/1SMW
+saprobiont/MS
+saprogenic
+sapropel/MSW
+saprophage/SM
+saprophagous
+saprophagy/M Noun: uncountable
+saprophyte/MSW
+sapsucker/SM
+Saptarishi/MS
+Saptashrungi/M
+Sapulpa/M
+sapwood/SM
+Sara/M
+saraband/MS
+Saracen/MSW
+Saragossa/M
+Sarah/M
+Saraiva/M
+Sarajevo/M
+Saraland/M
+Saran/M
+sarangi/SM
+sarangist/SM
+sarape/SM
+Sarasota/M
+Saraswati/M
+Saratoga/M
+Saravanan/M
+Sarawak/M
+Sarbecovirus Taxonomic subgenus
+sarcasm/MS
+sarcastic/OY
+sarcasticalness/M Noun: uncountable
+sarcenet/SM
+sarcoid/SM
+sarcoidoses
+sarcoidosis/M
+sarcoma/MS
+sarcomata/M
+sarcomatosis/M
+sarcomatous
+sarcomere/SM
+sarcophagi/M
+sarcophagus/M
+sarcoplasm/SMW
+sarcosine/M Noun: uncountable
+Sardanapalus/M
+sardelle/SM
+sardine/MS
+Sardinia/M
+Sardinian/SM
+sardius/M Noun: usually uncountable
+sardonic/OY
+sardonicism/M Noun: usually uncountable
+sardonyx/SM
+Saredon/M
+saree/SM
+sargasso/SM
+Sargasso/SM
+Sargassum Taxonomic genus
+sargassum/SM
+sarge/SM
+Sargent/M
+Sargon/M
+sari/MS
+sarin/M Noun: uncountable
+Sark/M
+sark/SGJ
+Sarkar/M
+sarky/TYP
+Sarma/M
+Sarmatia/M
+Sarmatian/SM
+Sarnesfield/M
+Sarnia/M
+sarnie/SM
+sarong/SM
+saros
+Sarpedon/M
+Sarpy/M
+Sarratt/M
+Sarre/M
+sarrusophone/S
+SARS-CoV-2/M
+SARS-CoV/SM
+SARS/M Noun: uncountable
+sarsaparilla/MS
+Sarsden/M
+sarsen/MS
+sarsenet/M
+SARSr-CoV/M
+Sartell/M
+sartorial/Y
+sartorius/M
+Sartre/M
+Sarum/M
+SAS
+SASE
+Sash
+sash/MDS
+Sasha/M
+sashimi/M Noun: usually uncountable
+Saskatchewan/M
+Saskatoon/M
+sasquatch/MS
+sassaby/S
+sassafras/SM
+Sassanian/SM
+Sassanid/MS
+Sassenach/M
+Sassenachs
+Sassoon/M
+sassy/TYP
+sastrugi
+sat/d
+SATA/M
+Satan/SM31
+satanic/Y
+satanise/SGD
+satanism/SM
+satanist/SM
+satanize/SGD
+Satanology/MS
+satay/SM
+Satch/M
+satchel/SM
+Satchville/M
+satcom/M
+sate/SGDp
+sateen/SM
+Satellite/M
+satellite/MSW
+satguru/SM
+Sather/M
+Sati/M
+sati/SM
+satiable/I
+satiate/GnDS
+satiety/MS
+satin/SM
+satined
+satinwood/SM
+satiny
+satire/WQ8wM1S3
+satisfaction/SEM
+satisfactoriness
+satisfactory/YU
+satisfied/EU
+satisfy/BDkRSG
+satisfying/UE
+Satley/M
+Sato/M
+satori/M Noun: usually uncountable
+Satoshi/M
+satoshi/SM
+satrangi/S
+satrap/MS
+satrapy/SM
+Satsuma/M
+satsuma/SM
+Satterleigh/M
+Satterthwaite/M
+saturable
+saturant/S
+saturate/CnSGD
+Saturday/SM
+Saturn/M
+Saturnalia/M
+saturnalia/SM
+saturnalian
+Saturnian/SM
+saturnic
+Saturnight/SM
+saturniid/SM
+saturnine/Y
+saturnism
+Satya/M
+Satyabhama/M
+satyagraha/M Noun: usually uncountable
+satyagrahi/SM
+Satyanand/M
+Satyananda/M
+satyr/SMW
+satyriasis/M
+satyrid/SM
+Satyridae
+Sauber/M
+sauce/r2ZMGSp
+saucepan/SM
+saucerful/SM
+saucerless
+Sauchie/M
+saucisson/SM
+Saucon/M
+saucy/TY
+saudade/SM
+Saudi/SM
+sauerkraut/SM
+sauger/S
+Saugerties/M
+Saughall/M
+Saughton/M
+Saugus/M
+Sauk/M
+Saukville/M
+Saul/M
+Sault/M
+Saumur/M
+sauna/MS
+Saundby/M
+Saunders/M
+Saundersfoot/M
+Saunderson/M
+Saundra/M
+saunter/dSr
+Saunton/M
+Saurel/M
+saurian/SM
+Saurischia Taxonomic order
+saurischian/SM
+saurochore/1SMW
+saurochorous
+saurochory/M
+sauropod/SM
+sauropodomorph/SM
+saury/S
+sausage/SM
+Sausthorpe/M
+sauté/SGD
+sautéd
+Sauternes/M
+Sautoy/M
+Sauvignon/M Sauvignon Blanc
+sauvignon/SM
+savable
+savage/DPSYGy
+Savage/M
+savagedom/M
+savagery/SM
+savanilla/SM
+savanna/SM
+Savannah/M
+savannah/SM
+savant/SM
+Savchenko/M
+save/SGRJD
+saveable
+saveloy/SM
+Savernake/M
+Saville/M
+Savimbi/M
+Saviour/M
+saviour/SM
+saviouress
+saviourship/M Noun: uncountable
+Savoch/M
+savoir
+savorous/Y
+savour/YR7pMGS2DZk
+savoursome
+savoury/MS
+Savoy/M
+savoy/SM
+Savoyard/M
+savvy/DGST
+saw-horse/SM
+saw-pit/SM
+saw/DGMS
+sawbones/M
+Sawbridgeworth/M
+sawdust/M Noun: usually uncountable
+sawfish/SM
+sawfly/MS
+Sawiris/M
+Sawley/M
+sawlike
+sawlog/SM
+sawmill/SM
+sawn
+sawn-off
+Sawston/M
+sawtooth/D
+Sawtry/M
+Sawyer/M
+sawyer/MS
+sax/SM
+saxatile
+Saxby/M
+Saxelby/M
+Saxham/MS
+saxhorn/SM
+saxicoline
+saxicolous
+saxifrage/SM
+Saxilby/M
+saxitoxin/SM
+Saxlingham/M
+Saxmundham/M
+Saxon/MS3
+Saxondale/M
+Saxondom/M
+Saxonism/M
+Saxonize/SGDJ
+Saxony/M
+saxony/M
+saxophone/MS3W
+Saxstead/M
+Saxtead/M
+Saxthorpe/M
+Saxton/M
+say-so
+Say/M
+say/RGJS
+Saybrook/M
+Saye/M
+saying/M
+Sayre/M
+Sayreville/M
+Sb/M
+SBA
+Sc/M
+scab/2GMZSD
+scabbard/MS
+scabby/T
+scabies/M
+Scabiosa
+scabiosa/M
+scabious
+scabland/SM
+scabrous/YP
+Scackleton/M
+scad/M
+SCADA/M
+Scafell/M
+scaffold/JGSMDR
+scaffolding/M Noun: usually uncountable
+Scaftworth/M
+Scagglethorpe/M
+scagliola/M
+Scala/M
+scalability/SM
+scalable
+scalar/MS
+scalariform
+Scalasaig/M
+Scalby/M
+scald/GSDr
+Scaldwell/M
+scale/pDAGSM
+scaleability/M Noun: uncountable
+scaleable
+Scaleby/M
+scalene/SM
+scaler/SM
+Scalford/M
+scaliness
+scallion/MS
+scallop/dSMr
+Scalloway/M
+scallywag/SM
+scalp/GDMSRp
+scalpel/MS
+Scalthwaiterigg/M
+scaly/T
+scam/MDGSR
+Scambler/M
+Scamblesby/M
+Scammonden/M
+scammony/MS
+scamp/SM
+scamper/SdM
+scampi/M
+Scampston/M
+Scampton/M
+scan/ADSG
+scan/S
+scandal/SMQ8
+scandalmonger/MS
+scandalous/YP
+Scandinavia/M
+Scandinavian/SM
+scandium/M
+scandocene
+ScanJet/M
+Scannell/M
+scanner/SM
+scansion/SM
+scant/2zZYSM
+scantness
+scanty/T
+scape/SM
+scapegoat/SGDM
+scapegrace/MS
+scaphocephaly/M Noun: uncountable
+scaphoid/SM
+scaphopod/SM
+Scaphopoda Taxonomic class
+scapolite/SM
+scapula/M
+scapulae/M
+scapular/SM
+scapulary/SM
+scapulocoracoid/SM
+scar/MGSDdp
+scarab/SM
+scarabaeid/MS
+Scarabaeidae
+Scaramouch/M
+scaramouch/MS
+Scaramucci/M
+Scarborough/M
+scarce/YT
+scarceness
+scarcity/SM
+Scarcliffe/M
+Scarcroft/M
+scare/S2ZrM
+scarecrow/MS
+scaremonger/SM
+scaremongering/M
+scareware/M Noun: uncountable
+scarf/SGDM
+scarface/SM
+Scarfe/M
+Scargill/M
+Scaridae
+scarify/GDSnr
+Scarisbrick/M
+Scarista/M
+Scaristabeg/M
+scarlatina/M Noun: usually uncountable
+Scarlatti/M
+Scarle/M
+scarlet/SM
+Scarlett/M
+Scarning/M
+scarp/DGSM
+scarper/S
+scarpered
+scarpering
+Scarrington/M
+Scarsdale/M
+Scart/M
+SCART/M
+Scarthingwell/M
+Scartho/M
+Scarva/M
+scarves
+scary/TY
+scat/DGSM
+Scates/M
+scathe/DkGp
+scatology/wM
+scatophagous
+scatter/rSkJd
+scatterbrain/MDS
+scattergun/SM
+scattering/M
+scattershot
+scatty/TYP
+scaup/SM
+scauper/MS
+scavenge/RDGS
+Scawby/M
+Scawton/M
+SCCS
+scenario/MS
+scenarist/MS
+scene/1MSWy
+scenery/SM
+scenography/WSM
+Scenopegia
+scent/CMDGS
+scent/p
+sceptic/OYMS
+scepticism/MS
+sceptre/SDM
+sch.
+Schacht/M
+Schaefer/M
+Schaeffer/M
+Schafer/M
+Schaff/M
+Schaumburg/M
+Schaw/M
+Schechter/M
+schedule/RDMGS
+scheelite/SM
+Schefferville/M
+Scheherazade/M
+Schelde/M
+Schele/M
+Schelling/M
+schema/S1M
+schemata/M
+schematic/SM
+schematise/SGDN
+schematize/SGDN
+scheme/SDRWGM
+schemozzle/SM
+Schempp/M
+Schenectady/M
+Schengen/M
+Schenk/M
+Schenkman/M
+Scherer/M
+Schererville/M
+Schertz/M
+Schervish/M
+Scherzer/M
+scherzi/M
+scherzo/SM
+Schiaparelli/M
+Schick/M
+Schickard/M
+Schierholz/M
+Schierl/M
+Schiff/M
+Schild/M
+Schiller/M
+schilling/SM
+Schinas/M
+schism/MS
+schismatic/SMY
+schist/SM
+schistosome/SM
+schistosomiasis/M
+schizanthus/SM
+schizo-affective
+schizo/SM
+schizocarp/SMW
+schizocarpous
+schizoid/SM
+schizophrenia/SM
+schizophrenic/SMY
+schizostylis
+schizotype/SMZO
+Schlemiel/M
+schlep/GDSM
+Schleswig/M
+Schlitz/M
+schloss
+Schloss/M
+Schlosser/M
+Schluter/M
+Schmid/M
+Schmidt/M
+Schmithals/M
+Schmitt/M
+Schmitz/M
+schmooze/SM
+Schnapper/M
+schnapps/M Noun: usually uncountable
+schnauzer/MS
+Schneider/M
+Schneier/M
+Schnelle/M
+Schnipper/M
+schnitzel/SM
+Schnorr/M
+Schodack/M
+Schoenberg/M
+Schoening/M
+Schofield/M
+Schoharie/M
+scholar/SYM
+scholarliness/M Noun: uncountable
+scholarship/MS
+scholastic/SMY
+scholasticism/SM
+Scholes/M
+Scholz/M
+Schönfeld/M
+Schönhage/M
+school-age
+school-inspector
+school-leaver/MS
+school-leaving
+school-time
+school/GMDJS
+School/M
+schoolbook/MS
+schoolboy/SM
+schoolchild/M
+schoolchildren/M
+schoolday/SM
+schoolfellow/SM
+schoolfriend/SM
+schoolgirl/MS~
+schoolhouse/SM
+schooling/SM
+schoolkid/SM
+schoolmarm/SM
+schoolmaster/SMYd
+schoolmate/SM
+schoolmistress/SMZ
+schoolroom/MS
+schoolteacher/SM
+schoolteaching/M Noun: uncountable
+schoolwork/M Noun: uncountable
+schooner/SM
+Schoonover/M
+Schopenhauer/M
+Schottenfeld/M
+schottische/S
+Schottky/M
+Schrader/M
+Schratt/M
+Schreckenberger/M
+Schreiber/M
+Schriver/M
+schrod
+Schröder/M
+Schroders/M
+Schrödinger/M
+Schroeder/M
+Schroedinger/M
+schtum/SGD
+Schubert/M
+Schuessler/M
+Schuler/M
+Schüller/M
+Schullian/M
+Schulman/M
+Schultz/M
+Schulz/M
+Schumacher/M
+Schumann/M
+Schumer/M
+Schumpeter/M
+Schur/M
+schuss/M
+Schuster/M
+Schutte/M
+Schütze/M
+Schuyler/M
+Schuylkill/M
+schwa/MS
+Schwab/M
+Schwabe/M
+Schwabl/M
+Schwaiger/M
+Schwamb/M
+Schwartz/M
+Schwartzkopf/M
+Schwarzchild
+Schwarzenegger/M
+Schwarzschild/M
+Schwarzwald/M
+Schweinfurt/M
+Schweitzer/M
+Schweizer/M
+Schweppes/M
+Schwyz/M
+sci-fi
+sciagram/S
+Sciandri/M
+Sciarpelletti/M
+sciatic/Y
+sciatica/M
+science's/FK
+science/M3SW
+sciences/FK
+scientific/S
+scientific/UY
+scientifical/P
+scientificality/M
+scientificism/M
+scientificness
+scientifiction/M Noun: uncountable
+scientism/SM
+scientistic
+Scientology/M3
+scilla/SM
+Scillonian/MS
+Scilly/M
+scimitar/SM
+scintigram/SM
+scintilla/nM
+scintillate/GDSk
+scintillator/SM
+Scio/M
+scion/SM
+Scioto/M
+Scipio/M
+scirocco/S
+scission/SM
+scissor/SdM
+Scituate/M
+Scleddau/M
+sclereid/MS
+sclerenchyma/MS
+sclerenchymatous
+sclerite/SM
+scleroderma/SM
+sclerophyll/S
+scleroses
+sclerosis/M
+sclerotherapy/SM
+sclerotic/SM
+sclerotisation/SM
+sclerotised
+sclerotization/SM
+sclerotized
+scoff/RGDSM
+scold/DRJSGM
+Scole/M
+scolecodont/SM
+scoliosis/M
+scombroid/SM
+sconce/MS
+scone/SM
+Scooby/M
+Scoonie/M
+scoop/MGS6RD
+scoopful/SM
+scoot/RSDGM
+scooterist/S
+scope/SMGD
+scopolamine/SM
+Scopwick/M
+Scorborough/M
+scorbutic
+scorch/RSkGDM
+score/eDfGS
+score/Mp
+scoreboard/MS
+scorecard/SM
+scorekeeper/SM
+scorekeeping/M Noun: uncountable
+scoreline/SM
+scorer/SM
+Scoresby/M
+SCORM/M
+scorn/jDRMG6S
+scornfulness
+Scorpian/MS
+Scorpio/MS
+Scorpion
+scorpion/MS
+scorpionate
+scorpionfish/SM
+Scorpius/M
+Scorton/M
+Scorzonera
+scorzonera/SM
+Scosthrop/M
+scot-free
+Scot/M5Sm
+scot/SM
+Scotch/M
+scotch/SMDG
+Scotchman/M
+Scotchmen/M
+Scotchwoman/M
+Scotchwomen/M
+Scotforth/M
+Scothern/M
+Scotia/M
+Scotian/SM
+Scotism/M Noun: uncountable
+Scotist/SM
+Scotland/M
+scotograph/SM
+scotopic
+scotoscope/SM
+Scotstoun/M
+Scotstown/M
+Scott/M~
+Scotter/M
+Scotticise/DGS
+Scotticism/MS
+Scotticize/DGS
+Scottie/SM
+Scottishness/M
+Scotton/M
+Scottow/M
+Scotts/M
+Scottsbluff/M
+Scottsboro/M
+Scottsburg/M
+Scottsdale/M
+Scotty/M
+Scoulton/M
+scoundrel/YSM
+scour/SDRGM
+scourge/SDMGR
+Scourie/M
+scouser/SM
+scout/MGDSr
+Scout/MS
+scoutcraft/SM
+Scouter/MS
+scouting/M
+scoutmaster/SM
+scoutship/SM
+Scoville/M
+scowl/GSDrM
+SCOWL/M
+Scrabble/M
+scrabble/SGDM
+Scrafield/M
+Scrafton/M
+scrag-end
+scrag/GMZSD
+scraggly/T
+scraggy/T
+scram/GDSM
+scramble/UGCSD
+scrambler/UMC
+scramblers/C
+scramjet/SM
+Scranton/M
+scrap/rDRGdZSM
+scrapbook/MS
+scrape/SJM
+scrapheap/SM
+scrapie/SM
+scrappage/M Noun: usually uncountable
+scrappiness/M Noun: uncountable
+scrappy/TY
+Scraptoft/M
+scrapyard/SM
+Scratby/M
+scratch/D2zJZRSGM
+scratchy/T
+scrawl/SDGYMr
+scrawly/T
+scrawniness/M Noun: uncountable
+scrawny/T
+Scrayingham/M
+scream/kRGSDM
+Screaton/M
+Scredington/M
+scree/SM
+screech/SZDMGr
+screechy/T
+screed/SM
+screen/GJSMDB6r
+screenful/SM
+screening/M
+screenname/SM
+screenplay/MS
+screensaver/SM
+screenshot/SM
+screenwash/M Noun: usually uncountable
+screenwriter/SM
+screenwriting/M Noun: uncountable
+Scremby/M
+Screven/M
+Screveton/M
+screw/MZS2GDr
+screwball/SMR
+screwdriver/MS
+screwdriving/M Noun: uncountable
+screwy/T
+Scriabin/M
+scribal
+scribble/RSGDJ
+scribe/IDSGCK
+scribe/M
+scriber/IMKC
+Scribner/M
+scrim/SM
+scrimmage/MGSDr
+scrimp/GSD
+scrimpy
+scrimshaw/GSMD
+scrip/SM
+Scripps/M
+script/SKMFA
+scriptable
+scripted/FU
+scripting/F
+scriptoria/M
+scriptorium/SM
+scripture/OoSM
+scriptwriter/MS
+scriptwriting/M Noun: uncountable
+Scrivelsby/M
+Scriven/M
+scrivener/MS
+scrofula/M
+scrofulous
+scroll/G7MSDR
+scrollback/M Noun: uncountable
+scrollbar/SM
+scrollwork/SM
+Scrooby/M
+Scrooge/SM
+Scroop/M
+Scroope/M
+Scropton/M
+scrota/OM
+scrotoplasty/SM
+scrotum/M
+scrounge/SDGRM
+scrub/RGDZSM
+scrubbier
+scrubfowl
+scrubland/SM
+scruff/2ZSMz
+scruffy/T
+Scruggs/M
+scrum-half
+scrum/MS
+scrummage/DMGS
+scrump/SGDRZ
+scrumple/SGD
+scrumptious/YP
+scrunch/GSDM
+scrunchie/SM
+scrunchy/T
+scruple/DMSG
+scrupulosity/SM
+scrupulous/YU
+scrupulousness/M
+scrutator/S
+scrutineer/SM
+scrutinised/U
+scrutiny/SsQ98Mq-
+Scruton/M
+Scrutton/M
+scry/SGD
+scryer/SM
+SCSI/M
+scuba/SM
+scud/SDGM
+Scudamore/M
+Scudder/M
+scuff/DGS
+scuffle/DGS
+Sculcoates/M
+scull/DRMSG
+scullery/SM
+Sculley/M
+scullion/SM
+Scully/M
+sculpt/DSG
+sculptor/SM
+sculptress/MS
+sculpture/GDOoSM
+sculpturesque
+Sculthorpe/M
+scum/SZDMG
+scumbag/SM
+scumble/SGDM
+scummy/T
+scuncheon/S
+Scunthorpe/M
+scupper/MSd
+scuppernong/SM
+Scures/M
+scurf/SM
+scurfy/T
+scurrility/MS
+scurrilous/YP
+scurry/DGSJ
+Scurry/M
+scurvy/SYM
+scuta/M
+Scutari/M
+scutch/SGDRM
+scutcheon/MS
+scute/SM
+scutella/M
+scutellar/SM
+scutellum/M
+scutter/S
+scuttered
+scuttering/S
+scuttle/MGDS
+scuttlebutt/MS
+scutum/M
+Scutum/M
+scuzzy/TP
+Scylla/M
+scyphistoma/SMO
+scyphistomae/M
+Scyphozoa Taxonomic class
+scyphozoan/SM
+scythe/GSMD
+Scythia/M
+Scythian/SM
+SD/SM
+SDI/SM
+SDK/SM
+SDO/SM Initialism of scattered-disk object
+SDRAM
+SDTV/M
+Se/M
+sea-chest
+sea-girt
+sea-green
+sea-moth/SM
+sea/cS
+Sea/M
+sea/M
+seabed/SM
+Seabee/SM
+seabird/SM
+seaboard/SM
+seaborgium/M Noun: uncountable
+seaborne
+Seaborough/M
+Seabrook/M
+Seabury/M
+Seacliff/M
+seacock/SM
+seafarer/SM
+seafaring/SM
+Seafield/M
+seafloor/SM
+seafood/SM
+Seaford/M
+Seaforde/M
+Seaforth/M
+seafront/SM
+Seagate/M
+Seager/M
+seagoing
+Seagoville/M
+Seagram/M
+seagrass/SM
+Seagrave/M
+Seagry/M
+seagull/SM
+Seaham/M
+seahawk/SM
+seahorse/SM
+seal/DUAGS
+Seal/M
+seal/Mp
+sealable
+Sealand/M
+sealant/SM
+Seale/M
+sealer/MS
+sealskin/SM
+Sealyham/MS
+seam/MDGSZpr
+seaman/YM
+seamanship/M
+seamen/M
+Seamer/M
+seamfree
+seamier
+seamless/YP
+SeaMonkey/M
+seamount/SM
+seamstress/MS
+Seamus/M
+Sean/M
+Seanad/M
+séance/MS
+seance/SM
+seaplane/SM
+seaport/MS
+seaquake/SM
+sear/GSDk
+Searby/M
+search/GSkJDRBp
+searcher/AMS
+searchlight/SM
+Searcy/M
+Sears/M
+Seasalter/M
+Seascale/M
+seascape/SM
+seashell/SM
+seashore/SM
+seasick/P
+seaside/M
+Seaside/M
+season/dlS7Mo
+seasonableness/U
+seasonably/U
+seasonal/UY
+seasonality/SM
+seasoning/M
+seat/Mpr
+seat/UGDSA
+SeaTac/M
+seatbelt/SM
+SEATO/M
+Seaton/M
+Seatoun/M
+Seattle/M
+Seaview/M
+Seavington/M
+seawall/SMD
+seaward/S
+seaware/M Noun: uncountable
+seawater/SM
+seaway/MS
+seaweed/SM
+seaworthiness/M Noun: uncountable
+seaworthy/U
+Seb/M
+sebaceous
+Sebastian/M
+Sebastián/M
+Sebastião/M
+Sébastien/M
+Sebergham/M
+seborrhoea/WM
+Sebring/M
+sebum/SM
+sec.
+sec/S
+SECAM/M
+secant/MS
+secateurs
+Secaucus/M
+secede/SGDr
+secession/M3S
+Secker/M
+Seckington/M
+seclude/GSVD
+seclusion/SM
+seclusionist/SMW
+Secombe/M
+second-best
+second-class
+second-degree
+second-hand
+second-rate
+second/RGLSYDM
+secondary/YP
+secondee/SM
+secrecy/SM
+secret/dVSYvuM
+secretariat/SM
+secretary/SMO
+secretaryship/SM
+secrete/Sn
+secretin/SM
+secretor/SMZ
+sect's/I
+sect/ISE
+sectarian/SM
+sectarianism/MS
+sectarianize/DGS
+sectary/SM
+section's/E
+section/GMDSo
+sectional/Q8SM
+sectionalism/SM
+sections/EA
+sector/EMS
+sector/O
+sectoral
+sectored
+secular/Q3-8qY
+secularism/MS
+secularity/SM
+SecurDisc/M
+secure/RPLBSYDG
+securitise/SGDn
+securitize/SGDn
+security/SMI
+Sedalia/M
+sedan/SM
+sedate/PYVGnSD
+sedative/SM
+Sedbergh/M
+Sedbury/M
+Seddon/M
+Seddonville/M
+sedenion/SM
+sedentary/MSY
+Seder/MS
+sederunt/SM
+sedge/SMZ
+Sedgeberrow/M
+Sedgebrook/M
+Sedgefield/M
+Sedgeford/M
+Sedgehill/M
+Sedgemoor/M
+Sedgley/M
+Sedgwick/M
+sedgy/T
+sediment/SnMD
+sedimentary/SM
+sedimentological/Y
+sedimentology/3M
+sedis incertae sedis
+sedition/SM
+seditious/YP
+Sedlescombe/M
+Sedley/M
+Sedna/M
+sednoid/SM
+Sedona/M
+Sedro-Woolley/M
+seduce/RDVvuGSn
+seducible
+seductive/P
+seductress/MS
+sedulous/Y
+Sedum Taxonomic genus
+sedum/SM
+see-saw/DSMG
+see-through
+see/S98dG
+Seeadler/M
+seed-bed/SM
+seed-cord
+seed/MD2GSRZp
+seedbed/MS
+seedeater/SM
+seeded/UA
+seedling/SM
+seedsman/M
+seedsmen/M
+seedy/TP
+Seeger/M
+seeing/Uc
+seek/GRS
+Seekonk/M
+Seeley/M
+Seely/M
+seem/YSkGD
+seemliness/U
+seemly/TP
+seen/Uc
+Seend/M
+seep/GSD
+seepage/SM
+seer/cSM
+Seer/M
+seersucker/SM
+sees/c
+seethe/GDSk
+Seething/M
+Sefton/M
+Sega/M
+Segal/M
+Segall/M
+Segar/M
+Segedin/M
+segment/GonMSDO
+Segna/M
+segnosaurid/SM
+sego/MS
+Segovia/M
+segregable
+segregate/CDSGn
+segregation/3M
+segregative
+segue/DSG
+seguidilla/MS
+Seguin/M
+Segundo/M
+Segway/M
+Sehgal/M
+Seibert/M
+Seidel/M
+Seidelmann/M
+Seidenfeld/M
+Seidlitz
+Seidman/M
+seigeury/S
+Seighford/M
+seigneur/MSO
+seignior/SZM
+seigniorage
+seigniory/SMO
+Seiko/M
+Seil/M
+seine/MG
+Seinfeld/M
+Seisdon/M
+seise/SGDB
+seisin/SM
+seismal
+seismic/OY
+seismogram/SM
+seismograph/RSMWZ
+seismography/SM
+seismology/M3w1
+seismometer/SM
+seize/SGDB
+seizure/SM
+selachian/SM
+Selachii
+selah/SM
+selamectin/M
+Selangor/M
+Selassie/M
+Selattyn/M
+Selborne/M
+Selby/M
+Selden/M
+seldom
+select/KSGCDA
+selectable
+selectee/MS
+selection/SOoM
+selective/YP
+selectivity/SM
+selectman/M
+selectmen/M
+selectness/M Noun: usually uncountable
+selector/MS
+Selena/M
+selenate/SM
+Selene/M
+selenian
+selenic Adjective
+selenide/SM
+selenious Adjective
+selenite/SM
+selenium/M Noun: usually uncountable
+selenocene
+selenocentric
+selenodont/MS
+selenographer/MS
+selenographic Adjective
+selenography/M Noun: uncountable
+selenology/3wM
+Seleucid/M
+self-abasement
+self-absorbed
+self-absorption
+self-abuse
+self-addressed
+self-adhesive
+self-analysis
+self-appointed
+self-approval
+self-assembly
+self-assertion
+self-assertive
+self-assurance
+self-assured
+self-aware
+self-awareness
+self-catering
+self-censorship
+self-centred
+self-centredly/M
+self-centredness
+self-cleaning
+self-closing
+self-command
+self-confessed
+self-confidence
+self-confident/Y
+self-congratulation
+self-congratulatory
+self-conscious/YP
+self-consistency
+self-consistent
+self-contained
+self-contradiction
+self-contradictory
+self-control
+self-correcting
+self-critical
+self-criticism
+self-deceit
+self-deception
+self-defeating
+self-defence
+self-delusion
+self-denial
+self-denying
+self-deprecating
+self-destruct/DVGS
+self-destruction
+self-determination
+self-determined
+self-discipline
+self-doubt
+self-effacing/Y
+self-employed
+self-esteem
+self-evidence
+self-evident/Y
+self-examination
+self-explanatory
+self-expression
+self-feeding
+self-financing
+self-fulfilling
+self-fulfilment
+self-glorification
+self-governing
+self-government
+self-hate
+self-hatred
+self-help
+self-image
+self-immolation
+self-importance
+self-important
+self-imposed
+self-improvement
+self-induced
+self-indulgence
+self-indulgent
+self-inflicted
+self-interest/D
+self-involved
+self-justification
+self-justifying
+self-knowledge
+self-loading
+self-locking
+self-love
+self-made
+self-motivated
+self-opinionated
+self-parody
+self-perpetuating
+self-pity
+self-pollination
+self-portrait/S
+self-possessed
+self-possession
+self-preservation
+self-proclaimed
+self-propagating
+self-propelled
+self-protection
+self-raising
+self-recording
+self-referential
+self-regard
+self-regulating
+self-regulation
+self-regulatory
+self-reliance
+self-reliant
+self-respect/G
+self-restrained
+self-restraint
+self-revelation
+self-righteous/Y
+self-righteousness
+self-sacrifice/G
+self-satisfaction
+self-satisfied
+self-seeker/S
+self-seeking
+self-selecting
+self-service
+self-serving
+self-styled
+self-sufficiency
+self-sufficient
+self-support/G
+self-surrender
+self-sustained
+self-sustaining
+self-tapping
+self-taught
+self-torture
+self-willed
+self-winding
+self-worth
+self/pGDPZ3M
+selfhood
+selfie/SM
+selfish/UY
+selfishness/U
+selfism/M Noun: usually uncountable
+selfless/YP
+selfmate/SM
+Selfridge/M
+selfsame/P
+Selham/M
+Seljuk/MS
+Seljukian/MS
+Selkirk/M
+Selkirkshire/M
+sell-by
+sell-off
+sell-out
+sell/ASceGf
+Sellack/M
+Sellafield/M
+Sellatyn/M
+seller/AMS
+Sellindge/M
+Selling/M
+Sellotape/DGMS
+sellotape/SGDM
+Selma/M
+Selmeston/M
+Selsey/M
+Selside/M
+Selston/M
+Selten/M
+seltzer/S
+selvage/SM
+selvedge/MS
+selves
+Selwood/M
+Selworthy/M
+Selwyn/M
+semantic/3SY
+semaphore/DSMG
+semblance/AMES
+semeiology/3SM
+semeiotic/S
+semeiotician/SM
+Semele/M
+semelparous
+semen/M
+Semenov/M
+Semer/M
+semester/SM
+semi-annual/Y
+semi-automatic
+semi-classical
+semi-conscious
+semi-conservative
+semi-detached
+semi-documentary/SM
+semi-double
+semi-duplex
+semi-final/SM3
+semi-flexible
+semi-fluid
+semi-independent
+semi-infinite
+semi-invalid
+semi-lethal
+semi-liquid/SM
+semi-literacy
+semi-literate
+semi-modal
+semi-monthly
+semi-official/Y
+semi-opera/S
+semi-permanent/Y
+semi-permeable
+semi-precious
+semi-professional/SMY
+semi-retired
+semi-retirement
+semi-rigid
+semi-skilled
+semi-skimmed
+semi-solid
+semi-tone/MS
+semi-trailer/SM
+semi-weekly/SM
+semi-yearly
+semi/MS
+semiaquatic
+semiarid
+semibold
+semibreve/SM
+semicircle/SM
+semicircular
+semicolon/MS
+semiconducting
+semiconductor/SM
+semideaf
+semidefinite
+semidemisemiquaver/SM
+semidiameter/MS
+semidiurnal
+semierect
+semifeudal
+semifinal/3MS
+semiformal
+semigroup/SM
+semilethal
+semilunar
+semimajor
+semimetal/SMW
+seminal/YSM
+seminar/MS
+seminarian/MS
+seminary/SM3
+seminatural
+Semington/M
+seminiferous
+Seminole/SM
+seminoma/SM
+seminomata/M
+seminumerical
+semiocclusive
+semiochemical/SM
+semiology/3wSM
+semiosis/M Noun: uncountable
+semiosphere/MS
+semiotic/SY
+semiotical Adjective
+semiotician/SM
+semioval
+semipermeable
+semiprecious
+semiprime/SM
+semiprivate
+semiprozine/SM
+semiquaver/SM
+semiquinone/SM
+semiraw
+semiregular
+semirural
+semisweet
+Semite/WSM
+semitendinosi/M
+semitendinosus/M
+Semitic/SM
+Semitism/SM
+Semitist/MS
+Semitize/DGS
+semitone/MS
+semitransparent
+semitropical
+semivocal
+semivowel/SM
+semiweak
+semiweekly/SM
+Semley/M
+semmit/MS
+semolina/M Noun: usually uncountable
+sempiternal/Y
+sempiternity/M Noun: uncountable
+semplice
+sempre
+Sempringham/M
+sempstress/MS
+Semtex/M
+Sen.
+senary/M
+senate/SM
+senator/MSO
+senatorship/MS
+send-off/SM
+send/ASG
+Send/M
+Sendai/M
+sender/SM
+Sendy/M
+Seneca/M
+Senedd/M
+Senegal/M
+Senegalese/M
+Seneley/M
+senescence/M Noun: usually uncountable
+senescent
+seneschal/MS
+senhor/MS
+senhora/MS
+senhorita/MS
+senile/SM
+senility/SM
+senior/SM
+seniority/SM
+Senn/M
+senna/M
+Sennacherib/M
+Sennen/M
+sennet/MS
+Senneterre/M
+Sennett/M
+sennit/SM
+señor/M
+Señora/M
+señora/SM
+señores
+señorita/SM
+sensa
+sensate/x
+sensational/Q83
+sensationalism/MS
+sensationalistic
+sense/DGnSpMb
+sensei/SM
+senseless/YP
+sensibility/IMS
+sensible/IY
+sensibleness
+sensibly/I
+sensilla/M
+sensillum/M
+Sensipar/M
+sensitise/GRnDS
+sensitive/IY
+sensitive/S
+sensitiveness
+sensitivity/IMS
+sensitize/GRnDS
+sensor/SM
+sensoria/OoM
+sensorimotor/W
+sensorineural
+sensorium/SM
+sensory/YSM
+sensual/FY
+sensualise/SGDN
+sensualism/SM
+sensualist/MSW
+sensuality/MS
+sensualize/SGDN
+sensum
+sensuosity/SM
+sensuous/YP
+sent/FEKUA
+Sentamu/M
+sentence/MGDS
+sentential
+sententious/Y
+sentience/IM
+sentient/I
+sentient/SY
+sentiment/SKM
+sentimental/Q3-8qYs9
+sentimentalism/MS
+sentimentality/SM
+sentinel/DGSM
+sentry/SM
+Senussi/SM
+SEO/M Noun: uncountable
+Seoul/M
+Sep
+sepal/SM
+separability/I
+separable/IY
+separableness
+separably/I
+separate/PB3nSGDVY
+separatism/MS
+separator/MS
+separatory
+Sephardi/WM
+Sephardim/M
+sephira/M
+sephiroth/M
+sepia/SM
+Sepoy/M
+sepoy/SM
+Seppo/M
+seppuku
+sepses
+sepsis/M
+Sept-Îles/M
+Sept-Rivières/M
+sept/NWM
+septa/MO
+septaria/M
+septarian
+septarium/M
+septate
+septcentenary/MS
+September/SM
+septenary/SM
+septennial/Y
+septet/SM
+septic/MSY
+septicaemia/WSM
+septicemia/SMW
+septicity/M Noun: uncountable
+septillion/HS
+septuagenarian/SM
+Septuagesima/M
+Septuagint/MS
+septum/M
+septuple/DGS
+septuplet/MS
+Sepulchre/M
+sepulchre/OSoM
+sepulture/SM
+Sepura/M
+seq.
+seqq.
+sequacious/Y
+sequacity/M Noun: uncountable
+Sequatchie/M
+sequel/MS
+sequela/M
+sequelae/M
+sequence/RSMGD
+sequent/F
+sequential/FY
+sequentiality/F
+sequester/dSn
+sequestrate/BSDG
+sequestrator/SM
+sequin/MSD
+sequitur/SM
+sequoia/SM
+Sequoya/M
+Sequoyah/M
+sera/M
+serac/MS
+Serafin/M
+seraglio/SM
+serang/MS
+serape/SM
+seraph/W1SM
+Seraphic
+seraphim/M
+seraskier/MS
+Serb/MS
+Serbia/M
+Serbian/SM
+Serbo-Croat/M
+Serbo-Croatian/M
+Serbonian
+Serdica/M
+sere/SM
+Serena/M
+serenade/DMGSr
+serendipitous/Y
+serendipity/MS
+serene/TY
+Serengeti/M
+Serenity/M
+serenity/SM
+Serf/M
+serf/SM
+serfdom/SM
+serge/Mr
+sergeant/MS
+Sergei/M
+Sergey/M
+Sergio/M
+Sérgio/M
+Seri/M
+serial/3qQ-8SYM
+serialisable
+serialise/SGDnR
+serialism/M Noun: usually uncountable
+seriality/SM
+serializable
+serialize/SGDnR
+seriate/SGDNY
+seriatim
+sericite/SM
+series/M
+serif/SDM
+serigraph/MS
+serine/SM
+serineprotease/SM
+serious/YP
+Serlio/M
+sermon/Q8SM
+seroconversion/SM
+seroconvert/SGD
+serodiagnosis/M
+serodiagnostic/SM
+seroepidemiological
+serogroup/SM
+serology/wW1M3
+seronegative/SM
+seronegativity/M Noun: uncountable
+seropositive/SM
+seropositivity/SM
+seroprevalence/SM
+Seroquel/M
+serosa/M
+serosity/M
+serotine/MS
+serotinous
+serotonergic
+serotonin/SM
+serotoninergic
+serotype/SMW
+serous
+Serpens/M
+serpent/SM
+serpentiform
+serpentine/DGSM
+serpentinise/SGDN
+serpentinize/SGDN
+serpiginous
+serpin/SM
+serpinopathy/SM
+Serpula
+Serralheiro/M
+Serrano/M
+serrate/nD
+serratus/M
+serried
+sertraline/M Noun: uncountable
+serum/MS
+serval/MS
+servant/SM
+serve/AGCSKDF
+server/CKSM
+servery/SM
+Servetus/M
+Servian/MS
+service/mB5DMSG
+serviceability/M Noun: usually uncountable
+serviceableness
+serviceably
+serviceberry/SM
+serviette/SM
+servile/YSM
+servility/MS
+serving/CS
+serving/M
+Servite/MS
+servitor/SM
+servitorship/MS
+servitude/SM
+servo/SM
+servomechanism/MS
+servomotor/MS
+sesame/SM
+sesamoid/MS
+Sesamum
+Seskinore/M
+Sesotho/M
+sesquicentenary/SM
+sesquicentennial/SM
+sesquioxide/MS
+sesquipedalian
+sessile
+session/SMO
+Sesswick/M
+sesterce/MS
+sestertii/M
+sestina/SM
+set-aside
+set-up/SM
+set/eMS
+seta/OM
+setaceous
+setae/M
+setback/SM
+Setchey/M
+Seth/M
+SETI/M
+setiferous
+setigerous
+Setmurthy/M
+Seton/M
+sets/AI
+Setswana/M
+sett/7RJMDSG
+settee/MS
+Settle/M
+settle/RLGSD
+settled/UA
+Settlement/M
+settles/UA
+settling/UA
+settlor/MS
+Settrington/M
+setup/SM
+setwall/MS
+Seuss/M
+Sevastopol/M
+seven/HMS
+Seven/M
+Sevenhampton/M
+Sevenoaks/M
+seventeen/H
+seventeen/S
+seventhly
+seventy-eight/H
+seventy-first/S
+seventy-five/H
+seventy-four/H
+seventy-nine/H
+seventy-one
+seventy-onefold
+seventy-second/S
+seventy-seven/H
+seventy-six/H
+seventy-three/H
+seventy-two
+seventy-twofold
+seventy/HS
+seventysomething/SM
+sever/dES
+severability/M Noun: usually uncountable
+severable
+severalfold
+severalty/SM
+severance/MS
+severe/OoTY
+severity/SM
+Severn/M
+Sevier/M
+Sevierville/M
+Seville/M
+Sevington/M
+Sèvres
+sew/SAGD
+sewage/SM
+Sewall/M
+Seward/MS
+Sewell/M
+sewer/SM
+sewerage/SM
+sewn
+Sewstern/M
+sex-appealing
+sex-blind
+sex-chromosomal
+sex-controlled
+sex-discriminating
+sex-free
+sex-hungry
+sex-kittenish
+sex-limited
+sex-linked
+sex-negative
+sex-neutral
+sex-positive
+sex-reversed
+sex-reversing
+sex-starved
+sex/RSzG3p2ZDM
+sexadecimal
+sexagenal
+sexagenarian/SM
+sexagenarianism/M
+sexagenary/SM
+Sexagesima/MS
+sexagesimal/SMY
+sexangular/Y
+sexathon/SM
+sexcentenary/SM
+sexdigitate
+sexed/fc
+sexennia
+sexennial/SM
+sexennium/S
+sexercise/SM
+sexfoil/SM
+Sexhow/M
+sexine/SM
+sexipolar
+sexism/SM
+sexisyllabic Adjective
+sexisyllable/S
+sexivalent Adjective
+sexlessly
+sexlessness
+sexology/3MWw
+sexpartite
+sexpert/SM
+sexploit/SMnr
+sexploitative
+sexpot/SM
+sext/GRW
+sextain/S
+sextant/SM
+sextet/SM
+sextette/S
+sextillion/MS
+sextillionth/SM
+sexto
+sextodecimo/SM
+sexton/MS
+sextuple/DGSM
+sextuplet/SM
+Sextus/M
+sexual/Y
+sexualise/NSGD
+sexualist/S
+sexuality/MS
+sexualize/NSGD
+sexuate/D
+sexuparous
+sexvirate/SM
+sexy/T3
+Seychelles/M
+Seychellois/M
+Seyfarth/M
+Seyfert/M
+Seymour/M
+Sezincote/M
+sf
+sforzandi/M
+sforzando/SM
+Sg
+Sgt.
+sh/~
+SHA/M
+Shaanxi/M
+Shabbat/SM
+Shabbes
+shabbiness/SM
+Shabbington/M
+Shabbir/M
+Shabbos
+shabby/YT~
+shabrack/MS
+shack/MGDS
+Shackerstone/M
+shackle/M
+shackle/USDG
+Shackleford/M
+shackler/SM
+Shackleton/M
+shad/SM
+Shadakshari/M
+shadblow/SM
+shadbush/MS
+shaddock/SM
+Shade/M
+shade/MDpJSZG2r
+Shadi/M
+Shadingfield/M
+Shadlingfield/M
+shadoof/SM
+shadow-boxing/M
+shadow/DGp2ZMSr
+shadowgraph/SM
+shadowland/SM
+Shadoxhurst/M
+Shadwell/M
+shady/YT
+Shafer/M
+Shaffer/M
+Shafran/M
+shaft/DGSM
+Shafter/M
+shafter/SM
+Shaftesbury/M
+Shafton/M
+shag/ZDSG2M
+shaggy/T
+shagreen/M
+shah/MS
+Shahar/M
+shaikh/MS
+Shaivism/M
+shakable
+shake-down/SM
+shake-out/SM
+shake-up/SM
+shake/2Z7SRG
+shakeable/Y
+shakeable/YU
+shaken
+Shaker/M
+Shakerism/M Noun: usually uncountable
+Shakerley/M
+Shakeshaft/M
+Shakespeare/M
+Shakespearean/SM
+Shakespearian/SM
+shaking/M
+Shakira/M
+shako/SM
+Shakopee/M
+Shakti/M
+shakti/MS
+Shaktism/M Noun: uncountable
+shakuhachi/SM
+Shakur/M
+shaky/YT
+Shalbourne/M
+Shalden/M
+Shaldon/M
+shale/SM
+Shaler/M
+shaley
+Shalfleet/M
+Shalford/M
+Shalikashvili/M
+shall
+shallop/SM
+shallot/SM
+shallow/YSDT
+shallowness
+Shallum/M
+shalom
+Shalom/M
+Shalott/M
+Shalstone/M
+shalt
+shalwar/SM
+shaly/T
+sham/SGMdD
+shaman/MSW
+shamanise/SGD
+shamanism/SM
+shamanist/SMW
+shamanize/SGD
+shamateur/MS
+shamateurism/M Noun: uncountable
+shamble/DSG
+Shambles
+shambolic/Y
+shame/6MjpS
+shamefaced/Y
+shamefacedness/M
+shamefulness
+shameless/Y
+shamelessness/SM
+Shamir/M
+shammer/SM
+shammy/SM
+Shamokin/M
+shampoo/GMDS
+shamrock/SM
+Shamus/M
+shan't
+Shanahan/M
+Shandon/M
+Shandong/M
+shandy/MS
+Shane/M
+Shang/M
+shanghai/DSMG
+Shanghai/M
+Shangri-la/M
+Shangton/M
+Shania/M
+shank/SGDM
+Shankara/M
+Shankaracharya/M
+Shanklin/M
+Shankly/M
+Shanmaghery/M
+Shannon/M
+shanny/SM
+Shantanu/M
+Shanti/M
+shantung/SM
+shanty/MS
+Shanvey/M
+Shanxi/M
+Shaolin/M
+Shap/M
+shapable
+shape-shifter/SM
+shape-shifting
+shape/ADaSG
+shape/M
+shapeable
+shapeless/PY
+shapeliness
+shapely/T
+shaper/MS
+shapeshifter/SM
+shapeshifting
+shapewear
+Shapinsay/M
+Shapiro/M
+Shapley/M
+Shapwick/M
+Shaquille/M
+Sharaf/M
+Sharam/M
+Sharapova/M
+Sharath/M
+shard/MS
+Shardlow/M
+share-out/SM
+share/7SRGDMi
+shareholder/MS
+shareholding/SM
+Shareshill/M
+shareware/M Noun: uncountable
+Shari/M
+sharia/M
+shariah/M
+shariat/M
+Sharif/M
+shark/SM
+sharkskin/SM
+Sharlston/M
+Sharma/M
+Sharman/M
+Sharnbrook/M
+Sharncote/M
+Sharnford/M
+Sharon/M
+Sharonville/M
+Sharow/M
+Sharp/M
+sharp/STY~
+Sharpe/M
+sharpen/AdS
+sharpener/SM
+Sharpeville/M
+Sharpham/M
+Sharples/M
+sharpness
+sharpshooter/MS
+sharpshooting
+sharpy/SM
+Sharrington/M
+Shasta/M
+shat/!
+Shatner/M
+shatter-proof
+shatter/kSd
+Shatton/M
+Shaugh/M
+Shaun/M
+Shauna/M
+shave/DGSRJ
+shaven/U
+Shavian/SM
+Shavington/M
+Shavuot/MS
+Shavuoth/MS
+Shaw/M
+Shawangunk/M
+Shawano/M
+Shawbury/M
+Shawell/M
+Shawford/M
+Shawinigan/M
+Shawkey/M
+shawl/MDS
+Shawlands/M
+shawm/SM
+Shawn/M
+Shawnee/MS
+Shawshank/M
+Shawswick/M
+Shaxson/M
+Shay/M
+shchi/M Noun: uncountable
+she'd
+she'll
+she-ass
+she-cat
+she-devil
+she-dog
+she-dragon
+she-friend
+she-goat
+she-god
+she-male/SM
+she/DM
+Shea/M
+Sheader/M
+sheading/S
+sheaf/M
+Sheaffer/M
+Sheahan/M
+shear/RDGS
+shearling/SM
+Shearmur/M
+Shearsby/M
+shearwater/SM
+sheath/SJDGMp
+sheathe/UDG
+sheathing/M
+sheave/DSG
+Sheba/M
+shebang/SM
+Shebbear/M
+shebeen/SM
+Sheboygan/M
+Sheckler/M
+shed/SGMR
+Shedd/M
+Shedfield/M
+shedload/SM
+Sheehan/M
+Sheela-na-gig/SM
+Sheen/M
+sheen/ZSMDG
+Sheene/M
+sheeny/T
+sheep-dip
+sheep/M
+sheepdog/SM
+sheepfold/SM
+sheepish/PY
+sheeple/M
+sheeplike
+sheepman/M
+sheepmen/M
+Sheepscombe/M
+sheepshank/SM
+sheepshead/M
+Sheepshed/M
+sheepskin/MS
+Sheepstor/M
+Sheeptown/M
+sheepwalk/MS
+Sheepwash/M
+Sheepy/M
+sheer/GYTDS
+Sheeran/M
+Sheering/M
+sheerness
+sheesh
+sheet/DSMG
+Sheet/M
+sheeting/M
+sheetlike
+Sheffield/RM
+Shefford/M
+Sheidlower/M
+sheik/SM
+sheikdom/SM
+sheikh/SM
+sheikhdom/M
+Sheila/M
+sheila/S
+Sheilah/M
+sheiling
+Sheinton/M
+shekel/MS
+Shekinah/M
+Shelagh/M
+Shelby/M
+Shelbyville/M
+Sheldon/M
+Sheldonian
+Sheldrake/M
+Sheldrick/M
+Sheldwich/M
+shelf-life
+shelf-mark
+shelf-room
+shelf/6M
+Shelfanger/M
+shelfful/SM
+shelflike
+Shelford/M
+Shelia/M
+shell/SDGM
+shellac/DSG
+Shelland/M
+Shelley/M
+shellfire/M Noun: usually uncountable
+shellfish/M
+Shellie/M
+Shellingford/M
+Shellow/M
+shellproof
+Shelly/M
+Shelsley/M
+Shelswell/M
+Shelta/M
+Sheltand/M
+shelter/MSrdp
+shelteredness/M
+sheltie/SM
+Shelton/M
+shelty/M
+shelve/DSGr
+Shelve/M
+shelving/M
+Shelwick/M
+Shem/M
+shemale/SM
+Shemhamforash
+shemozzle/SM
+Shenandoah/M
+shenanigan/SM
+Shenfield/M
+Shenington/M
+Shenley/M
+Shennan/M
+Shenstone/M
+Shenton/M
+Shenyang/M
+Shenzhen/M
+Sheol/M
+Shepard/M
+Shephall/M
+Shephard/M
+shepherd/GMSD
+shepherdess/SM
+Shepherds/M
+Shepherdsville/M
+Shepherdswell/M
+Sheppard/M
+Shepparton-Mooroopna/M
+Shepperton/M
+Sheppey/M
+Shepreth/M
+Shepshed/M
+Shepstone/M
+Shepton/M
+Sheran/M
+sherardise/DGS
+sherardize/DGS
+Sheraton/M
+sherbet/SM
+Sherborne/M
+Sherbourne/M
+Sherbrooke/M
+Sherburn/M
+Sherburne/M
+sherd/SM
+Shere/M
+Sheree/M
+shereef/S
+Shereford/M
+Sherehog/M
+Sherfield-on-Loddon/M
+Sherfield/M
+Sherford/M
+Shergold/M
+Sheri/M
+Sheridan/M
+Sheriff/M
+sheriff/SM
+sheriffdom/S
+Sheriffhales/M
+sheriffship/MS
+Sheringham/M
+Sherington/M
+Sherkat/M
+Sherlock/M
+Sherman/M
+Shermanbury/M
+Shermer/M
+Shernborne/M
+Sherpa/SM
+Sherratt/M
+Sherri/M
+Sherrie/M
+Sherrifhales/M
+Sherrington/M
+sherry/MS
+Sherston/M
+Sherwin/M
+Sherwood/M
+Sheryl/M
+Shetland/SMr
+Shetlandic/M
+Shettleston/M
+Shevardnadze/M
+Shevchenko/M
+Shevington/M
+Sheviock/M
+Shewan/M
+shewbread/SM
+Shewhart/M
+shewn
+shh
+Shi'ite
+Shi/M
+Shia/M
+Shiah/M
+shiatsu/M Noun: uncountable
+Shiawassee/M
+Shibata/M
+shibboleth/MS
+Shibuya/M
+shidoshi/M
+Shiel/M
+shield/SDMGp
+Shieldaig/M
+Shieldhill/M
+Shields/M
+Shifford/M
+Shifnal/M
+shift/RzZ2SDG
+shiftless/YP
+shifty/T
+Shigella
+shigella/M
+shigellae/M
+Shigo/M
+shiitake/SM
+Shiite/SM
+Shijiazhuang/M
+shikari/S
+Shikoku/M
+Shilbotel/M
+Shildon/M
+shillelagh/MS
+shilling/SM
+Shillingford/M
+Shillingstone/M
+Shillington/M
+Shillong/M
+shilly-shally/SGDR
+shilly-shallyer/SM
+Shiloh/M
+Shilton/M
+shim/DZGMS
+Shimane/M
+Shimkin/M
+Shimla/M
+shimmer/dSZ
+shimmy/MDSG
+Shimpling/M
+Shimplingthorne/M
+shin-bone/SM
+shin-pad/SM
+shin/rSdDGkM
+Shinano/M
+Shincheonji/M
+Shincliffe/M
+shindig/SM
+shindy/MS
+shine/SeG
+Shinewater/M
+Shinfield/M
+Shingay-cum-Wendy/M
+Shingay/M
+Shingham/M
+shingle/GSMDY
+Shinichi/M
+Shinji/M
+Shinkansen
+Shinto/SM
+Shintoism/M
+Shintoist/MS
+shinty/SM
+shiny/TP
+Shinzo/M
+ship-breaker/MS
+ship-broker/SM
+ship-fever/M Noun: uncountable
+ship-rigged
+ship/D4ALGS
+ship/Mp
+shipboard/SM
+shipborne
+Shipbourne/M
+shipbroker/SM
+shipbuilder/MS
+shipbuilding/M
+Shipdham/M
+Shipham/M
+Shiplake/M
+shiplap/DGS
+Shipley/M
+shipload/SM
+shipman/M
+shipmaster/S
+shipmate/MS
+Shipmeadow/M
+shipmen/M
+shipowner/MS
+shippable
+shippen/S
+shipper/SM
+shipping/M
+shippon/S
+shipshape
+Shipston-on-Stour/M
+Shipston/M
+Shipton-on-Cherwell/M
+Shipton-under-Wychwood/M
+Shipton/M
+shipwide
+shipworm/SM
+shipwreck/GMDS
+shipwright/SM
+shipyard/MS
+shiralee/S
+Shiraz/M
+Shirburn/M
+Shire/M
+shire/SM
+Shirebrook/M
+Shirehampton/M
+Shirenewton/M
+Shireoaks/M
+Shireshead/M
+shirk/GSRD
+Shirland/M
+Shirley/M
+shirr/GDS
+shirt-front/S
+shirt-tail/SM
+shirt/DpSMGz
+shirting/SM
+shirtlifter/SM
+shirtmaker/MS
+shirtsleeve/MSD
+shirtwaister/MS
+shirty/TP
+Shirwell/M
+shisha/SM
+shishito/SM
+Shiskine/M
+shit-faced/!
+shit/pDZGSMR!
+shitbag/SM!
+shite/SM!
+shitehawk/SM!
+shitface/SMD!
+shithead/SM!
+shithole/SM!
+shithouse/SM!
+shitload/SM!
+Shito-Ryu/M
+Shito-ryu/M
+shitstorm/SM!
+shitty/T!
+shitwork/M!
+shiur/SM
+shiurim/M Plural of shiur
+Shiva/M
+shiva/SM
+shivah/SM
+Shivaism/M
+Shivaite/M
+Shivaji/M
+Shively/M
+shiver/dkZSr
+Shixing/M
+Shizuoka/M
+Shleifer/M
+shoal/SMGD
+Shoals/M
+Shobdon/M
+Shobnall/M
+Shobrooke/M
+Shoby/M
+shock/GRSDkM
+shockingness/M Noun: uncountable
+Shocklach/M
+Shockley/M
+shockproof
+shod/zZ2
+shoddy/T
+shoe/pGSM
+shoebill/SM
+shoeblack/SM
+shoebox/SM
+Shoebury/M
+shoehorn/SDGM
+shoelace/MS
+shoemaker/SM
+shoemaking/M Noun: uncountable
+shoestring/SM
+shoetree/SM
+shofar/SM
+shofroth/M Plural of shofar
+shogun/SM
+shogunate/SM
+Shoji/M
+Sholden/M
+Sholes/M
+Shona/SM
+shone/e
+shoo/SDG
+shook
+shoot-out/SM
+shoot/fGSc
+shootable
+shooter/SM
+shooting-box/SM
+shooting-brake
+shooting-break
+shooting-coat/S
+shooting-jacket/SM
+shooting-range
+shooting-stick/SM
+shooting/SM
+shop-boy/MS
+shop-floor
+shop-girl/SM
+shop-soiled
+shop-window/SM
+shop-worn
+shop/GRDSM
+shopaholic/SM
+shopfitter/SM
+shopfitting/M Noun: uncountable
+shopfront/SM
+shophouse/SM
+shopkeeper/SM
+shopkeeping/M Noun: uncountable
+Shopland/M
+shoplift/DRSG
+shoplifting/M
+shopman/M
+shopmen/M
+shopping/M
+shoppy
+shopwalker/SM
+shopworker/SM
+Shor/M
+Shore/M
+shore/SMDGp
+shorebird/SM
+Shoreditch/M
+Shoreham/M
+shorelark/SM
+Shoreline/M
+shoreline/SM
+Shores/M
+shoreside
+Shoreview/M
+shoreward/M
+shoreweed/SM
+Shorewood/M
+shorn/U
+Shorne/M
+short-change/GSD
+short-circuit/Sd
+short-handed
+short-list/DG
+short-lived
+short-range
+short-sighted/YP
+short-staffed
+short-tempered
+short-term
+short-termism
+short-winded
+short/PGDTSZY~
+shortage/MS
+shortboard/SMGr
+shortbread/SM
+shortcake/MS
+shortcoming/SM
+shortcrust/M
+shortcut/SM
+shorten/dJS
+shortening/M
+shortfall/MS
+shorthair/SM
+Shorthampton/M
+shorthand/SM
+shorthold
+shorthorn/MS
+shortie/SM
+Shortland/M
+Shortlees/M
+shortlist/SDG
+shortlistee/SM
+shortstop/MS
+shorty/M
+Shorwell/M
+Shoscombe/M
+Shoshone/SM
+Shostak/M
+Shostakovich/M
+Shostakovitch/M
+shot-put
+shot/DMS
+Shotaro/M
+shotcrete/SM
+Shotesham/M
+Shotgate/M
+shotgun/MS
+Shotley/M
+Shotokai/M
+Shotokan/M
+Shotover/M
+shotproof
+Shottesbrooke/M
+Shotteswell/M
+Shottisham/M
+Shottle/M
+Shotton/M
+Shotts/M
+Shottswell/M
+Shotwick/M
+should've
+should/R
+shoulder-high
+shoulder-length
+shoulder/d
+Shouldham/M
+shouldn't
+shouldn't've
+shout/eDGS
+shout/MrZ
+shove/DSG
+shovel/MDR6GS
+shovelboard/SM
+shovelful/SM
+shovelhead/SM
+shovelware/M Noun: uncountable
+show-off/SM
+show-piece/MS
+show-place/MS
+show/MGJmR2zSDZ
+showband/SM
+showbiz/MZ
+showboat/GS
+showcard/SM
+showcase/GDSM
+showdown/SM
+shower/Zd
+showerproof/DG
+showgirl/MS
+showing/M
+showjump/SGDR
+showmanship/M
+shown
+showroom/SMr
+showrooming/M
+showstopper/SM
+showstopping
+showtime/SM
+showy/TP
+Shrage/M
+shrank/K
+shrapnel/M
+Shrawardine/M
+Shrawley/M
+shred/DRSMG
+Shreveport/M
+shrew/MS
+shrewd/TYP
+shrewish/YP
+Shrewley/M
+Shrewsbury/M
+Shrewton/M
+Shreya/M
+shriek/GMSRDk
+shrieval
+shrievalty/SM
+shrift/MS
+Shrigley/M
+shrike/SM
+shrill/GSTPDY
+shrimp/SMGr
+shrine/MSGD
+Shriner/SM
+shrink-wrap/SGD
+shrink/KSG
+shrinkable
+shrinkage/SM
+shrinker/SM
+shrinking/Y
+shrive/GS
+shrivel/GSD
+shriven
+Shrivenham/M
+Shropham/M
+Shropshire/M
+Shroton/M
+shroud/GSMDp
+Shrove/M
+Shrovetide/M
+shrub/ZMS
+shrubbery/MS
+shrubby/T
+shrubland/SM
+shrug/SDG
+shrunk
+shrunken
+shtick/SM
+shtum/SGD
+Shuang/M
+shubunkin/SM
+Shuch/M
+Shuckburgh/M
+shudder/ZSdk
+Shudy/M
+shuffle-board
+shuffle/SGDr
+shuffleboard/SM
+shufti/SM
+Shukaletuda/M
+shun/DGS
+Shuna/M
+Shunammite/SM
+shunt/DSGr
+Shurdington/M
+shuriken/SM
+Shusaku/M
+shush/DSG
+Shustoke/M
+Shuswap/M
+shut-down/SM
+shut-eye/M Noun: uncountable
+shut-off/SM
+shut-out
+shut/RGS
+shutdown/SM
+Shute/M
+Shutford/M
+Shutlanger/M
+shutout/SM
+shutter/dp
+Shutterstock/M
+Shuttington/M
+shuttle/MGSD
+shuttlecock/MS
+Shuttleworth/M
+shy/DTSG
+shyer
+shyest
+Shylock/MS
+shyly
+shyness/M
+shyster/SM
+Si/M
+sialagogue/S
+sialic
+Siam/M
+siamang/S
+Siamese/M
+Sian/M
+Siar/M
+Sib/M
+sib/S
+Sibbaldbie/M
+Sibbertoft/M
+Sibdon/M
+Sibelius/M
+Siberia/M
+Siberian/SM
+Sibertswold/M
+Sibford/M
+sibia/SM
+sibilance/MZ
+sibilancy/M
+sibilant/YSM
+sibilate/DGS
+sibilation/S
+Sible/M
+Sibley/M
+sibling/MS
+Sibsey/M
+sibship/S
+Sibson-cum-Stibbington/M
+Sibson/M
+Sibthorpe/M
+Sibton/M
+Sibyl/M
+sibyl/SM
+Sibylline/M
+sic/TDG
+Sicca/M
+siccative/SM
+Sicco/M
+siccus/M
+sice/S
+Sichuan/M
+Sicilian/SM
+Siciliana/M
+Sicily/M
+sick-benefit/SM
+sick/YP~
+sickbay/SM
+sickbed/SM
+sicken/dkS
+sickie/MS
+sickle-bill
+sickle-cell
+sickle-feather
+sickle/2SGM
+sicklebill/S
+Sicklinghall/M
+sickly/T
+sicko/SM
+sickroom/MS
+Sid/M
+sidage
+Sidbury/M
+Siddartha/M
+siddha/SM
+Siddhartha/M
+Siddington/M
+side's/f
+side-arms
+side-band/SM
+side-bet
+side-by-side
+side-car/MS
+side-chapel
+side-door
+side-drum/SM
+side-on
+side-saddle
+side-slip/SGD
+side-splitting
+side-street/SM
+side-table/S
+side-trip
+side/ISAKef
+Side/M
+side/p
+sideage
+sidearm/SGDR
+sideband/SM
+sidebar/MS
+sideboard/SM
+sideburn/SM
+sidecar/SM
+sided/Y
+sidedness
+sidekick/MS
+sidelight/MS
+sideline/DSM
+sidelong
+sidereal
+Siderian
+siderite/SM
+sideromelane/SM
+siderostat/SMW
+sideshow/SM
+sideshowman/M
+sideshowmen/M
+sidesman/M
+sidesmen/M
+sidestep/GDSRM
+Sidestrand/M
+sidestroke/SDMG
+sidesway
+sideswipe/DMGS
+sidetrack/SGDM
+sidewall/SM
+sideward/S
+sideways
+sidewinder/SM
+sidewise
+siding/SM
+Sidious/M
+sidle/DSGM
+Sidlesham/M
+Sidlow/M
+Sidmouth/M
+Sidney/M
+SIDS/M
+Sidwell/M
+Sieg Sieg Heil
+Siegal/M
+siege/SM
+Siegel/M
+Siegfried/M
+siemens
+Siemens/M
+Siena/M
+sienna/SM
+Sierra/M
+sierra/SM
+siesta/SM
+sieve/SGDM
+Sievers/M
+sievert/SM
+sifaka/SM
+Siffredi/M
+sift/SGDr
+sifting/SMY
+sig/SM
+Sigglesthorne/M
+SIGGRAPH/M
+sigh/DSGM
+sight-line
+sight-read/RG
+sight/cMSI
+sight/Dhr
+sightedness/M Noun: uncountable
+Sighthill/M
+sighting/SM
+sightless/Y
+sightlessness/M Noun: uncountable
+sightliness/M Noun: uncountable
+sightly/TP
+sightsee/GR
+sightworthy
+sigil/SM
+sigla/M
+siglum/M
+sigma/M
+sigmoid/SM
+sigmoidoscope/ZWSM
+Sigmund/M
+sign-off/SM
+sign-up/SM
+sign/FRSCAGD
+sign/M
+signage
+signal-to-noise
+signal/-MqRQ8GDmSY
+Signal/M
+signary/SM
+signatory/SM
+signature/MS
+signboard/MS
+signed/fU
+signet-ring/SM
+Signet/M
+signet/MS
+signifiant
+significance/ISM
+significant/IY
+significative
+signifié
+signifieds
+signifier/SM
+signify/nNDSG
+signing/SM
+signor/MF
+signora/M
+signori/M
+signoria/OM
+signorina/SM
+Signorini/M
+signory/SM
+signpost/DGMS
+signum/SM
+signwriter/SM
+signwriting/M Noun: uncountable
+Sigrid/M
+Sigston/M
+Sihanouk/M
+sika/MS
+Sikeston/M
+Sikh/SM
+Sikhism/SM
+Sikkema/M
+Sikkim/M
+Sikking/M
+Sikora/M
+Sikorska/M
+silage/SM
+silane/SM
+Silas/M
+Silberkleit/M
+Silbury/M
+Silchester/M
+Sileby/M
+silence/SRMGD
+silent/Y
+Silesia/M
+Silesian/SM
+silhouette/GDSM
+Silian/M
+silica/SM
+silicate/MS
+siliceous
+siliciclastic
+silicide/SM
+silicify/SGDN
+silicious
+silico
+silicon/M Noun: usually uncountable
+silicone/SM
+silicoses
+silicosis/M
+silicotic
+silk-screen/SM
+Silk/M
+silk/SzZ2M
+silken
+silkscreen/SMGD
+Silkstone/M
+Silkwood/M
+silkworm/SM
+silky/TP
+sill/2YSM
+sillage/SM
+Sillars/M
+Sillitoe/M
+Silloth-on-Solway/M
+Silloth/M
+silly/TPSM
+silo/SM
+Siloam/M
+siloxane/SM
+Silpho/M
+Silsden/M
+Silsoe/M
+silt/MDGSZ
+siltation/M Noun: usually uncountable
+Silton/M
+siltstone/SM
+silty/T
+Silurian
+Silva/M
+Silvanus/M
+Silveira/M
+silver/dMZS2p
+Silver/M
+silverback/SM
+silverberry/SM
+Silverbridge/M
+Silverdale/M
+silvereye/SM
+silverfish/SM
+silverise/SGD
+silverize/SGD
+Silverley/M
+Silverlight
+Silverman/M
+silverpoint/M Noun: uncountable
+silversmith/SMG
+Silverstein/M
+Silverstone/M
+Silverstream/M
+Silverton/M
+silverware/MS
+silverweed/SM
+silvery/T
+Silvester/M
+Silvia/M
+silviculture/3O^
+Silvington/M
+Silvio/M
+Silwy/M
+SIM/S
+Simak/M
+SimAnt/M
+simazine/M Noun: usually uncountable
+Simbel/M
+SimCity/M
+Simcoe/M
+SIMD/M Acronym of single instruction, multiple data.
+SimEarth/M
+Simenon/M
+Siméon/M
+Simeon/M
+simethicone/M Noun: uncountable
+Simi/M
+simian/SM
+similar/EY
+similarity/ESM
+simile/MS
+similitude/ME
+Simla/M
+Simmel/M
+simmen
+simmer/Sd
+Simmonds/M
+Simmons/M
+Simms/M
+simnel/SM
+Simões/M
+simon
+simon-pure
+Simon/M
+Simonburn/M
+Simone/M
+Simonetti/M
+simoniacal
+Simonides/M
+Simons/M
+Simonstone/M
+Simonswood/M
+simony/MS
+simoom/SM
+simoon/SM
+simpatico
+simper/dS
+simple-minded/YP
+simple/TY
+simpleness/M Noun: usually uncountable
+Simpler/M
+simpleton/SM
+simplex/SM
+simplicial
+simplicity/MS
+simplifier/SM
+simplify/ncGDS
+simplism/SM
+simplistic/Y
+Simpson/MS
+Simpsonville/M
+Simsbury/M
+Simson/M
+SIMULA/M
+simulacra/M
+simulacrum/SM
+simulant/SM
+simulate/EnSGD
+simulative
+simulator/MES
+simulcast/SM
+simultaneity/MS
+simultaneous/YP
+simurg/SM
+simvastatin/SM
+sin/pRSj6GDM
+Sina/M
+Sinai/M
+Sinaitic
+Sinanthropus/M
+Sinatra/M
+Sinbad/M
+since
+sincere/TYP
+sincerity/MSI
+sinciput/SM
+Sinclair/M
+Sindbad/M
+Sinderby/M
+Sindhi/M
+sine/MS
+sinecure/MS3
+sinecurism/M Noun: usually uncountable
+sinew/MZSp
+Sinfin/M
+sinfonia/M
+sinfonietta/SM
+sinfoniette/M
+sinful/P
+sing-along
+sing-song
+sing/RS7GDk
+Singapore/M
+Singaporean/SM
+singe/SM
+singeing
+singer-songwriter/SM
+Singh/M
+Singhalese/M
+single-decker/SM
+single-handed/Y
+single-line
+single-minded
+single-seater/SM
+single/PGDSM
+singlet/SM
+Singleton/M
+singleton/MS
+singsong/DMS
+singular/qS-Y
+singularity/MS
+singularize/DGS
+sinh/SM
+Sinhala/M
+Sinhalese/M
+sinicus Latin
+sinister/YP
+sinistral/Y
+sinistrality/SM
+sink/RG7S
+sinkage/M
+sinkhole/SM
+Sinkkonen/M
+sinless/YP
+Sinn/M
+sinnet/SM
+Sinnington/M
+Sino-American
+Sino-Japanese
+Sino-Soviet
+Sinologue
+Sinology/3wM
+Sinope/M
+sinter/Md
+sinuate
+sinuosity/SM
+sinuous/YP
+sinus/SM
+sinusitis/M
+sinusoid/oMSO
+Siobhan/M
+Sion/M
+Siouan/SM
+Sioux/M
+sip/RSDGM
+sipe/SM
+siphon/dMSWO
+siphonage/SM
+Siphonophora
+siphonophore/SM
+siphuncle/SM
+sippet/SM
+Sipuncula Taxonomic phylum
+sipunculan/SM
+sipunculid/SM
+Sipunculus Taxonomic genus
+Siqi/M
+sir/dMS
+Sirach/M
+Siracusa/M
+sirdar/SM
+sirdarship/SM
+sire/CDGS
+sire/M
+siren/SM
+Sirenia Taxonomic order
+sirenian/SM
+Sirius/M
+sirloin/SM
+sirocco/MS
+Sirota/M
+sirrah/SM
+Sirtis/M
+sis/Z
+sisal/SM
+siskin/SM
+Siskiyou/M
+Sisko/M
+Sisland/M
+sissified
+Sissinghurst/M
+sissoo/SM
+sissy/PTSM~
+sister-in-law/M
+sister/MAS
+sisterhood/SM
+sisterly/P
+sisters-in-law/M
+Sistine/M
+Siston/M
+Sisyphean
+Sisyphus/M
+sit-in/SM
+sit/RGSJM
+sitagliptin/M Noun: uncountable
+Sitakunda/M
+sitar/M3S
+sitcom/SM
+site/GDSM
+sitemap/SM
+sitfast/MS
+Sith/M
+Sithney/M
+Sithole/M
+Sitka/M
+Sitlington/M
+sitophobia/M Noun: uncountable
+sitophobic/SM
+sitrep/SM
+sitting/SMY
+Sittingbourne/M
+situ/M
+situate/SGnD
+situation/3
+situational/Y
+Sitwell/M
+Siva/M
+Sivaism/M
+Sivaite/MS
+Sivaji/M
+Sivonen/M
+Siwalik
+six-fold
+six-pack/S
+six-shooter/S
+six/HSMR
+sixain/S
+Sixhills/M
+Sixmilecross/M
+sixpence/SM
+Sixpenny/M
+sixpenny/SM
+sixteen/HM
+sixteen/S
+sixth-former/S
+sixth/Y
+Sixtus
+sixty-eight/H
+sixty-first/S
+sixty-five/H
+sixty-four/H
+sixty-nine/H
+sixty-one
+sixty-onefold
+sixty-second/S
+sixty-seven/H
+sixty-six/H
+sixty-three/H
+sixty-two
+sixty-twofold
+sixty/HMS
+sixtysomething/SM
+sizar/S
+sizarship/S
+size/AD7GS
+size/M
+sized/fc
+sizer/MS
+Sizewell/M
+sizzle/DSGR
+Sjogren/M
+Skagerrak/M
+Skagit/M
+Skamania/M
+Skanda/M
+skank/SGDr
+Skapinker/M
+Skara
+skarn/SM
+skate/GRSMD
+skateboard/RGMSD
+skatepark/SM
+Skathi/M
+skating-rink
+Skea/M
+skean/SM
+skedaddle/SGD
+Skeeby/M
+Skeena-Queen/M
+skeet/SM
+Skeffington/M
+Skeffling/M
+Skegby/M
+Skegness/M
+skein/MS
+Skeith/M
+Skelbrooke/M
+Skelding/M
+skeletal/Y
+skeleton/MS
+skeletonize/DGS
+Skellingthorpe/M
+Skelmersdale/M
+Skelmorlie/M
+Skelsmergh/M
+skelter/Sd
+Skelton-on-Ure/M
+Skelton/M
+Skelwith/M
+Skendleby/M
+skene
+Skene/M
+Skenfrith/M
+skep/S
+Skerlev/M
+Skerne/M
+Skerry/M
+skerry/SM
+Skerton/M
+sketch/SzRMDGZ2
+sketchbook/SM
+sketchpad/SM
+sketchy/PT
+Sketty/M
+skeuomorph/SMW
+skeuomorphism/SM
+skew-eyed
+skew/DPRGS
+skewback/S
+skewbald/SM
+skewer/d
+Skeyton/M
+ski'd
+ski-jump/RGD
+ski-lift/SM
+ski-plane/SM
+ski/GSM
+skid/DGSM
+Skidbrooke/M
+Skidby/M
+Skiddaw/M
+Skidmore/M
+skiff/MS
+skijorer/SM
+skijoring
+skilfish/SM
+skilful/YP
+Skilgate/M
+skill/MSDp
+skillet/MS
+Skillington/M
+skim/RDSGM
+skimmia/SM
+skimp/zGZSD
+skimpy/PT
+skin-dive/RG
+skin-tight
+skin/6MpZDGS
+skincare/M Noun: uncountable
+skinflint/MS
+skinfold/SM
+skinhead/MS
+skink/S
+Skinnand/M
+Skinner/SM
+skinner/SM
+skinny/PTSM
+skint
+skintight
+skip/RSDGM
+skipjack/SM
+Skipness/M
+skippable
+Skippack/M
+skipper/d
+skippet/SM
+Skippy/M
+Skipsea/M
+Skipton-on-Swale/M
+Skipton/M
+Skipwith/M
+Skirbeck/M
+skirl/DGS
+Skirlaugh/M
+Skirling/M
+skirmish/DSRGM
+Skirpenbeck/M
+skirr/SGDJ
+skirret/SM
+Skirrid/M
+skirt/SDGM
+skirting/SM
+skit/SM
+skitter/dSZ
+skittish/YP
+skittle/MS
+skive/SGDR
+skivvy/DMSG
+skiwear/M Noun: uncountable
+Skokie/M
+skol
+Skopje/M
+Skrenta/M
+skua/SM
+skulduggery/SM
+skulk/RGSDM
+skull/SM
+skullcap/MSD
+skunk/SM
+skunkweed/SM
+skunkworks
+Skutterskelfe/M
+skutterudite/SM
+sky-blue
+sky-high
+sky-writer/SM
+sky-writing/SM
+sky/S7RGDZM
+skybridge/SM
+skydive/SRDG
+skydiving/M
+Skye/M
+skyer
+skyhook/SM
+skyjack/RJSGD
+Skylab/M
+Skylake/M
+skylark/GDSM
+skyless
+skylight/MS
+skyline/MS
+Skype/M
+Skyrms/M
+skyrocket/SdM
+skysail/SM
+skyscape/SM
+skyscraper/MS
+Skywalker/M
+skyward/S
+skywatch/SGDR
+skyway/SM
+slab/MSGD
+slack/DGTRPYSM
+slacken/dS
+Slackware/M
+Slade/M
+slag/SMDG
+slaggy
+Slagsvold/M
+Slaidburn/M
+slain
+Slains/M
+Slaithwaite/M
+slake/SGD
+Slaley/M
+slalom/MS
+slam/RGSD
+Slamannan/M
+slander/dSMr
+slanderous/Y
+slang/MGZ
+slanginess/M
+slangy/TY
+slant/GDS
+slantwise
+slap-happy
+slap-up
+slap/MGSDR
+slapdash
+slapstick/SM
+Slapton/M
+slash/SDGRM
+slat/MDdGS
+slate/MSZ
+Slater/M
+slater/S
+slather/Sd
+Slatkin/M
+slattern/YSM
+slatternliness/M
+Slaugham/M
+Slaughter/M
+slaughter/SdrM
+Slaughterford/M
+slaughterhouse/SM
+slaughterman/M
+slaughterous
+Slav/SM
+Slava/M
+slave-bangle
+slave-born
+slave-drive/R
+slave-driven
+slave-drove
+slave-trade/R
+slave/SRMyDG
+slaveholder/SM
+slaveholding/SM
+slaver/rdkJ
+slavery/SM
+slavey/SM
+Slavic/M
+slavies
+slavish/YP
+Slavism/SM
+Slavonian/SM
+Slavonic/MY
+Slavophile/SM
+Slawston/M
+slay/RSGDM
+Sleaford/M
+Sleagill/M
+Sleat/M
+sleaze/ZSGDM
+sleazy/PTY
+Slebech/M
+sled/SGDM
+sledge/SGDM
+sledgehammer/SM
+Sledmere/M
+sleek/TSGYDP
+sleep/R2MZGSzp
+sleepless/YP
+sleepover/SM
+sleepwalk/RDGSJM
+sleepwear/M Noun: uncountable
+sleepy/PT
+sleepyhead/SM
+sleet/GZDSM
+sleety/T
+sleeve/SMGDp
+sleeving/M
+sleigh/SRMDG
+sleight/SM
+Sleipnir/M
+Slemmer/M
+slender/8QPY
+slenderer
+slenderest
+Sleningford/M
+Slepian/M
+slept/c
+sleuth/GMDS
+slew/GDS
+sley/MS
+slice/RMDSG
+sliceable
+slick/YDPGSTM
+slid/r
+slide/SGM
+Slidell/M
+Slieve/M
+slight/MPGYTDSk~
+Sligo/M
+slim/DRSGYTPM
+Slimani/M
+Slimbridge/M
+slime/2MSGDZ
+slimline
+slimy/T
+Slindon/M
+Slinfold/M
+sling/MGSr
+Slingsby/M
+slingshot/SMGD
+slink/GZSM
+slinky/T
+sliotair/M
+sliotar/SM
+slip-on/SM
+Slip/M
+slip/MSDRG
+slipcase/SM
+slipknot/SM
+slippage/SM
+slipper/2Z
+slippered
+slippery/TY
+slippier
+slippiest
+slippiness/M Noun: uncountable
+slippy
+slipshod/Y
+slipshodness/M Noun: uncountable
+slipstream/MGDS
+Slipton/M
+slipway/MS
+slit/MRSDG
+slither/dSZM
+sliver/dSM
+slivovitz/SM
+Sloan/M
+Sloane/M
+slob/SM
+slobber/ZdS
+Slocum/M
+sloe/SM
+slog/SDGMR
+slogan/SM
+sloganeer/SGDM
+sloka/SM
+Sloley/M
+sloop/SM
+sloosh/SGDM
+sloot/SM
+Sloothby/M
+slop/Gz2SDZd
+slope/SM
+sloppy/TP
+slopy/T
+slosh/DGSM
+sloshy/T
+slot/DGSM
+sloth/S6Mj
+slothful/P
+slouch/DSGZM
+slouchy/T
+Slough/M
+slough/SMGD
+sloughy
+Slovak/SM
+Slovakia/M
+Slovakian/SM
+sloven/YSM
+Slovene/SM
+Slovenia/M
+Slovenian/SM
+slovenly/TP
+slow/YGDPST~
+slowcoach/MS
+slowdown/MS
+SLR
+slub/SGDM
+slubberingly
+sludge/ZM
+sludgy/T
+slue/DSGM
+slug/RSGDM
+slugabed/MS
+sluggard/SM
+sluggish/PY
+sluice/DMSG
+sluit/SM
+slum/SGZMD
+slumber/MdSr
+slumberous/Y
+slumberousness/M Noun: uncountable
+slumbrous/Y
+slumbrousness/M Noun: uncountable
+slumdog/SM
+slummer/SM
+slummy/T
+slump/GDSM
+slung/U
+slunk
+slur/GDSZM
+slurp/DGSZRM
+slurry/SM
+slush/S2DGMZ
+slushy/PT
+Slusser/M
+slut/SM
+sluttish/P
+slutty/T
+sly
+slyboots/M
+slyer
+slyest
+slyly
+Slym/M
+Slyne-with-Hest/M
+slyness/SM
+slype/SM
+Sm
+smack/GSMDR
+smackeroo/SM
+smackhead/SM
+Smailholm/M
+Smale/M
+small-minded
+small-mindedness
+small-scale
+small-time
+small-town
+small/TS~
+smallage/M Noun: uncountable
+Smallbridge/M
+Smallburgh/M
+Smalley/M
+smallgoods
+smallholder/SM
+smallholding/SM
+smallness/SM
+smallpox/M
+Smallville/M
+Smallwood/M
+smalt/SM
+Smannell/M
+Smarden/M
+smarm/DGSM
+smarmy/T
+smart/eDSG
+smart/kY~
+smartarse/SM
+smarten/Sd
+smarter
+smartest
+smartism/M
+smartness/SM
+smartphone/SM
+smartwatch/SM
+smarty-pants
+smarty/SM
+smash-and-grab
+smash-up/SM
+smash/RkSGDM
+Smathers/M
+smatter/MSr
+smattering/SM
+smaze/M Noun: usually uncountable
+Smealy/M
+smear/SGDZrM
+Smeaton/M
+smectite/SM
+Smedberg/M
+Smedley/M
+Smeeth/M
+Smeeton/M
+smegma/WSM
+smell/Y2GS7DrM
+smelly/PTSM
+smelt/RDGS
+smeltery/MS
+Smerrill/M
+Smetana/M
+Smethcott/M
+Smethwick/M
+smew/S
+smidgen/MS
+smidgeon/SM
+smidgin/S
+smilax/MS
+smile/GDMkSr
+smiley/MS
+smiling/UY
+smily/TSM
+smirch/DSGM
+smirk/GDMSk
+Smirnoff/M
+Smisby/M
+smite/SGRM
+Smith/M
+smith/ZSGDMy
+Smithee/M
+smithereen/SGD
+Smithers/M
+smithery/SM
+Smithfield/M
+Smithson/M
+Smithsonian/M
+Smithton/M
+Smithtown/M
+Smithville/M
+smithy/SM
+smitten
+smock/MSGDJ
+smog/SMZ
+smoggy/T
+smokable
+smoke-dried
+smoke-room
+smoke-stone
+smoke/SR2GZDpM7
+smokelessly
+smokescreen/SM
+smokestack/SM
+smokey
+smoko/SM
+smoky/TY
+Smolensky/M
+smolt/SM
+smooch/rGSDM
+smoochy/T
+Smoot/M
+smooth-talk
+smooth-tongued
+smooth/7DPTSRYG~
+smoothen/Sd
+smoothie/MS
+smorgasbord/SM
+smorzando
+smote
+smother/Sd
+smoulder/Skd
+SMP/SM
+smriti/MS
+SMS/SGD
+SMSA/SM
+SMTP/M Initialism of Simple Mail Transfer Protocol
+smudge/SpDGZM
+smudgy/TYP
+smug/PTY
+smuggle/RSGJD
+smut/2GDZSM
+smutty/TPY
+Smyrna/M
+Smyth/M
+Sn
+snack/DSGM
+snaffle/GDSM
+snafu/MS
+snag/GMDS
+snaggy/T
+snail/SM
+Snailwell/M
+Snainton/M
+Snaith/M
+snake/GZDMS
+snakebite/SM
+snakefish/SM
+snakelike
+snakeroot/SM
+snakeskin/SM
+snakiness/M Noun: usually uncountable
+snaky/TY
+Snap/M
+snap/ZSR2GDzM
+Snapchat/SGD
+snapdragon/MS
+Snape/M
+snapline/SM
+snappable
+snapping/Y
+snappish/YP
+snappy/TP
+snapshot/MS
+snare/GDMSR
+Snarestone/M
+Snarford/M
+Snargate/M
+snark/SGDM
+snarkily
+snarl-up/SM
+snarl/SDGkYMr
+snarly/T
+snash/M
+snatch/GDRSZM
+Snave/M
+snazzy/TYP
+Snead/M
+sneak/zDkZSGM
+sneaky/TP
+Sneaton/M
+sneck/DGS
+Snedecor/M
+Sneed/M
+sneer/DSkGMR
+sneeze/SGDRM
+sneezewort/SM
+sneezy/T
+Sneinton/M
+Snell/MS
+Snelland/M
+Snellville/M
+Snelson/M
+Snelston/M
+Snetterton/M
+Snettisham/M
+snib/DGSM
+Snibstone/M
+snick/SGDM
+snicker/SdM
+snide/MYTPS
+Snider/M
+sniff/MDGRSk
+sniffier
+sniffiest
+sniffiness/M
+sniffle/SGDYRM
+sniffy/Y
+snifter/SM
+snigger/Sdk
+sniggerer/MS
+sniggle/DGS
+snip/DrGZSM
+snipe/DSGM
+snippet/MSZ
+snippy/T
+snitch/GDSM
+Snitterby/M
+Snitterfield/M
+snivel/RSDGJM
+Snizort/M
+snob/SMZ
+snobbery/SM
+snobbish/YP
+snobby/T
+Snodbury/M
+Snodgrass/M
+Snodland/M
+Snodsbury/M
+snoek/S
+snog/SGDRM
+Snohomish/M
+snood/SM
+snook/SMR
+snooker/d
+snoop/ZSRDGM
+snooperscope/SM
+snoopy/T
+snoot/SzMZ
+snooty/TP
+snooze/SGDRM
+snoozefest/SM
+snoozy/T
+Snopek/M
+Snoqualmie/M
+snore/GDRSM
+Snoreham/M
+Snoring/M
+snorkel/RMSDG
+snort/GRDSM
+snot/zSM
+snotty/TP
+snout/MDSZ
+Snover/M
+snow-capped
+snow-white
+snow/ZmD2MGSp
+snowball/GDSM
+snowberry/SM
+snowblade/SMrG
+snowblink/M Noun: uncountable
+snowblower/SM
+snowboard/GRDSM
+snowbound
+snowcap/SM
+snowcat/SM
+Snowden/M
+Snowdon/M
+Snowdonia/M
+snowdrift/SM
+snowdrop/MS
+snowfall/MS
+snowfield/SM
+snowflake/MS
+snowkiter/SM
+snowkiting/M Noun: uncountable
+snowline/SM
+Snowman/M
+Snowmen/M
+snowmobile/RSMGD
+snowpack/SM
+snowplough/DSMG
+snowscape/SM
+Snowshill/M
+snowshoe/SGDMR
+snowstorm/SM
+snowsuit/SM
+Snowtown/M
+snowy/T
+SNP/M
+Snr.
+SNR/SM
+snub-nosed
+snub/DGSRM
+snuff/RYGSDM
+snuffbox/MS
+snuffle/GSDRM
+snuffy
+snug/SYPT
+snuggery/SM
+snuggle/GSD
+Snyder/M
+so-and-so/M
+so-called
+so/M
+soak/DGJSRM
+soakage/MS
+Soames/M
+soap/2DMZGSp
+soapbox/SM
+soapland/SM
+soapstone/SM
+soapsuds
+soapy/TY
+soar/DGkSR
+Soar/M
+soaraway
+Soares/M
+Soay/M
+sob/SDG
+sobbing/Y
+sober/YdkPS
+soberer
+soberest
+Soberton/M
+sobriety/ISM
+sobriquet/MS
+Soc.
+Socastee/M
+soccer/M
+Socha/M
+sociability/M
+sociable/EU
+sociable/Y
+social-psychological
+social/Q8s39Sq-Y
+Socialism/M
+socialism/MS
+Socialist/MS
+socialistic/Y
+socialite/ZSM
+sociality/SM
+societal
+society/oSM
+Socinian/SM
+Socinianise/SGD
+Socinianism/M
+Socinianistic
+Socinianize/SGD
+socio
+socio-economic/YS
+sociobiological/Y
+sociobiology/M3
+sociocultural/Y
+sociocybernetics
+sociodrama/W
+sociodramatist/SM
+sociodynamic/S
+socioecology/wW3SM
+socioeconomic/S
+sociogeny/WM
+sociogram/SM
+sociography/WSM
+sociogroup/M
+sociolatry/M
+sociolect/SMO
+sociolegal
+sociolinguist/SM
+sociolinguistic/SY
+sociology/13MwS
+sociometrist/SM
+sociometry/MW1
+sociopath/SMWZ
+sociopolitical
+sociosphere/MS
+sociostatic
+sociotechnic/SO
+sock/DMSG
+Sock/M
+Sockbridge/M
+Sockburn/M
+socket/dMS
+sockeye/SM
+socle/SM
+Socon/M
+Socorro/M
+Socotra/M
+Socrates/M
+Socratic/SMY
+sod/MDSGW
+soda/SM
+sodality/MS
+Sodbury/M
+sodden/SYP
+soddened
+soddening
+Soddy-Daisy/M
+Soddy/M
+sodium/M Noun: usually uncountable
+sodocene
+Sodom/M
+sodomise/SGD
+sodomite/SM
+sodomize/SGD
+sodomy/SM
+Sodor/M
+SOE/SM nitialism of state owned enterprise
+soebak/M
+soever
+sofa/SM
+soffit/SM
+Sofia/M
+Sofocleous/M
+soft-boiled
+soft-core
+soft-headed/P
+soft-hearted/P
+soft-paste
+soft-pedal/SGD
+soft-sell
+soft-spoken
+soft/cP
+soft/Y~
+softa/SM
+softback/SM
+softball/SM
+softcover/SM
+soften/drS
+softer
+softest
+softie/M
+softly-softly
+Softpedia/M
+softphone/SM
+softshell/SM
+software/M Noun: uncountable
+softwood/MS
+softy/MS
+Sögel/M
+soggy/TYP
+Soham/M
+Soho/M
+soi
+soi-disant
+soigné
+soignée
+soil/GMDS
+soirée/MS
+soiree/SM
+sojourn/RMDGS
+soke/SM
+Sokolowski/M
+sol-fa
+Sol/M
+sol/SM
+solace/GDMS
+solan/SM
+Solana/M
+solanaceous
+Solander/M
+solander/SM
+Solano/M
+solanum/SM
+Solapur/M
+solar
+solaria/M
+Solaris/M
+solarise/DGSn
+solarium/M
+solarize/DGSn
+solatia/M
+solatium/M
+sold/AfecU
+soldanella/MS
+solder/SA
+soldered
+solderer/SM
+soldering
+soldier/DYSGZM
+Soldier/M
+soldiership
+soldiery/SM
+sole/FADGS
+sole/MY
+solecism/SM
+solecist/WSM
+Soledad/M
+solemn/-qQ8TY
+solemness
+solemnity/MS
+solenoid/SMO
+soleus
+solfatara/SM
+Solheim/M
+solicit/dnS
+solicited
+solicitor/MS
+solicitous/YP
+solicitude/MS
+solid-state
+solid/YSMP
+solidarity/SM
+solider
+solidest
+solidi/M
+solidify/DnGS
+solidity/SM
+solidus/M
+solifluction/SM
+Solihull/M
+soliloquies
+soliloquise/SDG
+soliloquist/SM
+soliloquize/SGD
+soliloquy/M
+solipsism/MO
+solipsist/SMW1
+Solis/M
+solitaire/SM
+solitary/SYP
+solitude/SM
+Sollars/M
+Sollas/M
+Sollers/M
+Sollershope/M
+solmizate/DGSn
+Solney/M
+solo/GDMS
+soloist/SM
+Solomon/MW
+Solon/M
+Solostar/M
+Solothurn/M
+Solow/M
+solstice/SM
+solstitial
+solubilise/SGDN
+solubility/MI
+solubilize/SGDN
+soluble/EI
+solus
+solute/AE
+solute/MS
+solution/ASME
+Solutrean
+Solva/M
+solvability/SM
+solvable/IU
+solvableness/M Noun: uncountable
+solvate/DGSn
+solve/EDRASG
+solvency/ISM
+solvent/SIM
+Solway/M
+Solzhenitsyn/M
+soma/M
+Somali/SM
+Somalia/M
+Somalian/SM
+Somaliland
+soman/M
+somata/1M
+somatise/SGDN
+somatize/SGDN
+somatosensory
+somatostatin/SM
+somatotrophin/SM
+somatotype/SMG
+somatropin/M Noun: uncountable
+Somborne/M
+sombre/YPM
+sombrero/SM
+some/W
+somebody'll
+somebody/SM
+someday
+somehow
+someone'll
+someone/M
+Somerby/M
+Somercotes/M
+Somerfield/M
+Somerford/M
+Somerhalder/M
+Somerleyton/M
+Somers/M
+Somersal/M
+somersault/GSMD
+Somersby/M
+Somerset/M
+Somersham/M
+Somersworth/M
+Somerton/M
+Somerville/M
+something/M
+sometime/S
+somewhat
+somewhen
+somewhere
+somite/SMW
+Somme/M
+sommelier/SM
+Sommerfeld/M
+somnambulant
+somnambulism/SM
+somnambulist/SM
+somniferous
+somnolence/M Noun: usually uncountable
+somnolency/M
+somnolent/Y
+Somoza/M
+Sompting/M
+son-in-law
+son/MW1SZp
+sonancy/SM
+sonant/SM
+sonar/SM
+sonata/SM
+sonatina/SM
+sonde/MS
+Sondheim/M
+Sondra/M
+sone/SM
+Song-thaek/M
+song/SM6p
+songbird/MS
+songbook/SM
+songcraft/M Noun: uncountable
+Songdo/M
+songsmith/SM
+songster/SM
+songstress/MS
+songwriter/SM
+songwriting/M Noun: usually uncountable
+Soni/M
+Sonia/M
+Sónia/M
+sonicate/SGDNM
+sonicator/SM
+sonics/M Noun: uncountable
+Sonja/M
+sonnet/MS
+sonneteer/SM
+Sonning/M
+sonny/MS
+sonobuoy/SM
+sonochemistry/M Noun: uncountable
+sonofabitch/SM
+sonogram/SM
+sonograph/SMWZR
+sonoluminescence/M Noun: uncountable
+sonoluminescent
+Sonoma/M
+sonometer/MS
+Sonora/M
+sonorant/SM
+sonority/SM
+sonorous/YP
+sons-in-law
+sonship/SM
+sonsie
+sonsy
+Sony/M
+Sonya/M
+Sookholme/M
+sool/DGS
+soon/T~
+soot/DMZ
+sooth/RkMDG
+soothe/SGD
+soothsayer/SM
+soothsaying/SM
+sootiness/M
+sooty/TY
+sop/DMGZS
+Soper/M
+soph/MS
+sopherim/M
+Sophia/M
+Sophie/MS
+sophism/SM
+sophist/S1yMWw
+sophistic/n
+sophisticate/GShDn
+sophistry/SM
+Sophoclean
+Sophocles/M
+sophomoric
+Sophy/M
+Sopley/M
+soporific/SMY
+soporose
+soporous
+soppiness/M
+soppy/TY
+sopranino/SM
+soprano/SM
+Sopwith/M
+Sopworth/M
+sora/MS
+Sorabji/M
+Soraya/M
+sorb/SM
+Sorb/SM
+sorbefacient/SM
+sorbent/SM
+sorbet/MS
+Sorbian/SM
+Sorbie/M
+sorbitan/SM
+sorbitol/SM
+Sorbonne/M
+sorcerer/MS
+sorceress/SM
+sorcery/SM
+sordid/PY
+sordini/M
+sordino/M
+sordor/SM
+sore/TSMYP
+Sorel-Tracy/M
+sorel/MS
+Sorensen/M
+Sorenson/M
+sorghum/MS
+sori/M
+Soriano/M
+sorites
+Sorn/M
+Sorocold/M
+sororicide/SM
+sorption/SM
+sorrel/SM
+sorrow/DGM6jSr
+sorrowful/P
+sorry/TPY
+sort/FSMAGD
+sortable
+sorted/UK
+sorter/SM
+sortie/SMD
+sortieing
+sortilege/M
+sortition/M
+sorus/M
+SOS/SM
+Sosa/M
+sostenuto/SM
+sot/MS
+Sotby/M
+Soter/M
+soteriology/wSM
+Sotherton/M
+Sothic
+Sotho/SM
+Sotterley/M
+sottish
+sotto
+sou'wester/SM
+sou/MS
+soubresaut/SM
+soubrette/SM
+soubriquet/SM
+souchong/SM
+soucouyant/SM
+Soudley/M
+soufflé/SM
+souffle/SM
+sough/DGSM
+sought
+sought-after
+souk/MS
+soul-destroying
+soul-searching
+soul/RjM6Sp~
+soulace/M
+Soulbury/M
+Soulby/M
+Souldern/M
+Souldrop/M
+Soule/M
+Souletin/SM
+soulful/P
+soulhood
+soulie/SM
+soulify/SGD
+Soulja/M
+soulless/YP
+soulmate/SM
+Souls/M
+Soulsby/M
+soulship
+soulster/SM
+soulstress/SM
+soum/SMGJ
+Sound/M
+sound/pRDMTSJGY
+soundalike/SM
+soundbar/SM
+soundboard/MS
+soundbox/SM
+soundcheck/SM
+soundclash/SM
+Soundex/SM
+soundhole/SM
+sounding/M
+soundless/Y
+soundlessness/M
+soundness/SM
+soundproof/DGS
+soundproofing/M Noun: usually uncountable
+soundscape/SM
+soundstage/SM
+soundtrack/MS
+soup/SMZ
+soupçon/MS
+soupy/T
+sour/MYGSTPD~
+source/M
+source/SeDGA
+sourcebook/SM
+SourceForge/M
+sourdough/SM
+sourpuss/MS
+soursop/SM
+Sourton/M
+sous/DGS
+Sousa/M
+sousaphone/MS
+souse/SM
+soutache/MS
+soutane/MS
+souteneur/MS
+souter/MS
+souterrain/SM
+south-east/M
+south-easterly
+south-Easterly
+south-eastern
+south-eastward/S
+south-Eastward/S
+south-south-east
+south-south-west
+south-west/M
+south-westerlies
+south-Westerly/S
+south-western
+south/M
+South/M
+Southall/M
+Southam/M
+Southampton/M
+Southaven/M
+Southborough/M
+southbound
+Southbourne/M
+Southbridge/M
+Southbroom/M
+Southburgh/M
+Southbury/M
+Southchurch/M
+Southdean/M
+Southdown/M
+Southease/M
+Southeast/M
+southeaster/SM
+southeastern
+Southend-on-Sea/M
+Southend/M
+souther/YM
+southerliness/M
+southerly/SM
+Southern/M
+southern/R
+southernmost
+southernwood/SM
+Southery/M
+Southey/M
+Southfield/M
+Southfleet/M
+Southgate/M
+Southill/M
+southing/SM
+Southington/M
+Southlake/M
+Southland/M
+Southleigh/M
+Southmead/M
+Southmere/M
+Southminster/M
+Southmoor/M
+Southoe/M
+Southold/M
+Southolt/M
+Southorpe/M
+Southover/M
+southpaw/SM
+Southport/M
+Southrepps/M
+southron/MS
+Southrop/M
+Southsea/M
+Southshore/M
+Southside/M
+Southstoke/M
+southward/SY
+Southwark/M
+Southwater/M
+Southwell/M
+Southwest/M
+southwester/MS
+southwestern
+Southwick/M
+Southwold/M
+Southwood/M
+Southworth/M
+Soutra/M
+souvenir/MS
+Sovaldi/M
+sovereign/YSM
+sovereignty/SM
+Soviet/MS
+soviet/SM
+sow/RGDS
+sowans
+sowback/MS
+sowbread/SM
+Sowe/M
+sowens
+Sowerby-under-Cotcliffe/M
+Sowerby/M
+Soweto/M
+sown
+sowthistle/SM
+Sowton/M
+soy/M Noun: usually uncountable
+soya/M Noun: uncountable
+soybean/SM
+Soyuz/M
+sozzled
+Spa/M
+spa/MS
+space-saving
+space-time
+space/JGS5MRmDp
+spacecraft/MS
+spacefarer/SM
+spacefaring/M
+spaceflight/SM
+spaceplane/SM
+spaceport/SM
+spaceship/SM
+spacesuit/SM
+spacetime/SM
+spacewalk/SMRGD
+Spacewatch/M
+SpaceX/M
+spacey
+spacial/Y
+spaciality/SM
+spacialize/DGS
+spacier
+spaciest
+spacing/M
+spacious/PY
+Spackle/M
+spade/SGMD6
+spadefish/SM
+spadefoot/SM
+spadeful/MS
+spadework/M
+spadiceous
+spadices
+spadille/SM
+spadix/M
+spae/DS
+spaeing
+spaewife/M
+spaewives
+spaghetti/M Noun: usually uncountable
+spahi/MS
+Spahr/M
+Spain/M
+spake
+Spalding/M
+Spaldington/M
+Spaldwick/M
+Spalford/M
+spall/DGMS
+spallation/M
+spalpeen/MS
+spam/SRDG
+spambot/SM
+spammie
+Spamount/M
+span/GDRMS
+Spanby/M
+spandex/M Noun: usually uncountable
+spandrel/SM
+spangle/GMDS
+Spangler/M
+spangly/T
+Spaniard/SM
+spaniel/MS
+Spanish-speaker/S
+Spanish-speaking
+Spanish/M
+spank/JSDGr
+spanking/M
+spar/dMkDGS
+sparable/MS
+Sparaxis
+sparaxis/SM
+SPARC/M
+SPARCstation/M
+spare/PYSr
+sparerib/SM
+sparest
+Sparham/M
+Sparidae Taxonomic family
+sparingness/M
+spark/pDYGZSM~
+Sparkford/M
+sparkle/GRkDSM
+Sparks/M
+Sparkwell/M
+sparky/T
+sparling/SM
+sparrow/SM
+sparrowhawk/SM
+sparry
+spars/T
+sparse/YP
+Sparsholt/M
+sparsity/M Noun: usually uncountable
+Sparta/M
+Spartacist/MS
+Spartacus/M
+Spartan/SM
+spartan/Y
+Spartanburg/M
+sparticle/SM
+spas/W
+spasm/MS
+spasmodic/Y
+spastic/SMY
+spasticity/SM
+spat/MSGD
+spatchcock/DGMS
+spate/SM
+spathaceous/Y
+spathe/MSW
+spathiphyllum/M
+spatial/Y
+spatiality/SM
+spatialize/DGS
+spatio
+spatio-temporal/Y
+spatter/dS
+spatterdash/SM
+spatterware/M Noun: uncountable
+spatula/SM
+spatulate
+Spaunton/M
+spavin/SM
+spavined
+spawn/MGSDR
+Spaxton/M
+spay/DSG
+SPCA/M Initialism of Society for the Prevention of Cruelty to Animals
+speak/GRS7J
+speakership/M
+spear/MGSD
+Spearfish/M
+spearfish/SMG
+speargun/SM
+spearhead/GSMD
+Spearman/M
+spearman/M
+spearmen/M
+spearmint/SM
+spearwort/SM
+Spec-chum/SM
+spec/SM
+specced
+speccing
+Speccy/SM
+Specht/M
+special/3SP
+specialise/nGDS
+specialism/MS
+specialistic
+speciality/SM
+specialize/SGDn
+speciate/SDGn
+speciational
+specie/MoS
+specific/SP
+specificity/SM
+specified/UaAf
+specify/SBl1nRDWG
+specimen/SM
+speciose
+speciosity/SM
+specious/PY
+speck/SGDMp
+speckle/DGSM
+spectacle/DSM
+spectacular/YSM
+spectate/SGD
+spectator/MSO
+spectatorship/SM
+spectinomycin/M Noun: usually uncountable
+Spector/M
+spectra/OoM
+spectre/MS
+spectrochemistry/M Noun: uncountable
+spectrogram/SM
+spectrograph/SZ1MW
+spectrography/M Noun: uncountable
+spectroheliograph/SM
+spectrohelioscope/SM
+spectrometer/SMW
+spectrometry/SM
+spectrophotometer/MWS
+spectrophotometry/M Noun: uncountable
+spectroradiometer/SM
+spectroscope/WSZ1Mw
+spectroscopist/MS
+spectroscopy/SM
+spectrum/SM
+specula/M
+specular
+speculate/DnSvVG
+speculativeness/M Noun: uncountable
+speculator/SM
+speculum/M
+sped
+speech-maker/SM
+speech-making
+speech-writer/SM
+speech/6pSM
+speechification/SM
+speechify/RSGD
+speechless/PY
+speed-up/MS
+speed/DRJZSG2Mz
+speedball/SM
+speedboat/MSr
+speedo/SM
+speedometer/MS
+Speedos/M
+speedster/SM
+Speedway/M
+speedway/SM
+speedwell/MS
+speedwriter/SM
+speedwriting
+speedy/TP
+Speen/M
+Speeton/M
+speiss/M
+Speke/M
+Speldhurst/M
+speleology/Mw3
+spell/RG7JDSM
+spellbind/SRG
+spellbound
+spellcaster/SM
+spellcheck/GDSR
+spelled/aA
+spelling/MaS
+spells/aA
+spellworking
+Spelsbury/M
+spelt
+spelter/M Noun: usually uncountable
+Spelthorne/M
+Spence/M
+spence/SMr
+Spencer/M
+Spencerian
+Spencers/M
+Spencerville/M
+spend/eScaG
+spendable
+spender/SM
+spending/S
+spendthrift/SM
+Spennithorne/M
+Spennymoor/M
+Spenser/M
+Spenserian/SM
+spent/Ufcea
+sperm/MS
+spermaceti/M
+spermatia/MW
+spermatid/SO^
+spermatium/M
+spermatocyte/SM
+spermatogenesis/M
+spermatogenetic
+spermatogenic/Y
+spermatogonia/M
+spermatogonium/M
+spermatophore/SM
+spermatophyte/SMW
+spermatozoa/MO
+spermatozoan/SM
+spermatozoid/SM
+spermatozoon/M
+spermicide/MSO
+Spernall/M
+Sperrin/M
+Sperry/M
+sperrylite/SM
+spessartine/SM
+Spetchley/M
+Spetisbury/M
+spew/DRSG
+Spexhall/M
+Speymouth/M
+Spezia
+SPF/SM
+sphagna
+Sphagnum
+sphagnum/M
+sphalerite/SM
+sphenoid/SMO
+sphere/DGM1WwS
+sphericity/SM
+spheroid/OoMS
+spheroidicity/M Noun: uncountable
+spherular
+spherule/MS
+spherulite/MS
+sphincter/MS
+sphingid/MS
+Sphingidae Taxonomic family
+sphingolipid/SM
+sphingomyelin/SM
+Sphinx/M
+sphinx/SM
+sphygmograph/SMW
+sphygmography/M Noun: uncountable
+sphygmomanometer/SM
+spic/SM
+spica/SM
+spicae/M Plural of spica
+spicate
+spice/DGSZM
+spicebush/SM
+Spicer/M
+spick/SM
+spicule/SM
+spicy/TYP
+Spider-man/M
+spider/SZM~
+spidering
+spiderlike
+spiderman/M
+spidermen/M
+spiderweb/SDGM
+spiderwort/MS
+Spiegel/M
+spiegeleisen/M
+Spiegelman/M
+spiel/DSGM
+Spielberg/M
+spieler/MS
+Spieth/M
+spiffing
+spifflicate/DGS
+spifflication/S
+spiffy/T
+spiflicate/DGS
+spiflication/S
+spignel/S
+spigot/SM
+spike/DGSMZ
+spikelet/SM
+spikenard/M
+spiky/PTY
+spile/DGS
+spilite/SMW
+spill/cGDS
+spill/J
+spillage/SM
+spiller/SM
+spillikin/SM
+spillover/SM
+spillway/SM
+Spilsby/M
+spilt
+spilth/M
+spin-drier/S
+spin-off/SM
+spin/RGSop
+spinach/SMZ
+spinal/SM
+spindle/SMGYD
+spindly/T
+spindrift
+spine-chilling
+spine/pMS2Z
+spinebill/SM
+spinel/SM
+spineless/YP
+Spiner/M
+spinet/SM
+Spiney/M
+spinifex/MS
+spinnaker/SM
+spinneret/SM
+spinney/SM
+spinor/SM
+spinose/Y
+spinous
+Spinoza/M
+Spinozism/M
+Spinozist/SMW
+Spinrad/M
+spinster/SM~
+spinsterhood/M
+spinthariscope/MS
+spiny/T
+spiracle/SM
+spiraea/MS
+spiral/SDGY
+spirant/S
+spire/IDFSA
+spire/M
+Spirillum
+spirit/IdSM
+spirited/YP
+spiritism/SM
+spiritist/SMW
+spiritless/YP
+spiritual/3YSP
+spiritualise/SGDN
+spiritualism/MS
+spiritualist/W1
+spirituality/SM
+spiritualize/SGDN
+spirituous
+spiritus/M
+Spiriva/M
+Spiro/M
+spirochaete/SM
+spirograph/S
+spirogyra/S
+spirometer/SM
+spirometry/WM
+spironolactone/SM
+spirt/SGDJ
+spirulina/M Noun: uncountable
+spiry
+spit/RGSZ
+Spital/M
+Spitalfields/M
+spitball/SGDR
+spitchcock/DGS
+spite/AMS
+spite/G
+spiteful/PY
+spitfire/MS
+Spithead/M
+Spitsbergen/M
+Spittal/M
+spittle/SMY
+spittlebug/SM
+spittoon/SM
+Spitz/M
+spitz/MS
+Spitzenkandidat
+Spitzenkandidaten
+Spitzer/M
+spiv/SM
+spivvish
+spivvy/T
+Spixworth/M
+splake/SM
+splanchnic
+splanchnopleure/SM
+splash/GDSzZ
+splashback/SM
+splashboard/SM
+splashdown/SM
+splashy/T
+splat/DMGS
+splatter/dS
+splatterpunk/SM
+splay/SDG
+splayfeet/M
+splayfoot/DM
+spleen/6SM
+spleenwort/SM
+splendent
+splendid/PY
+splendiferous/YP
+splendour/SM
+splenectomy/SM
+splenetic/Y
+splenial
+splenic
+splenii/M
+splenius/M
+splenomegaly/SM
+splice/GDRSMJ
+spliff/SM
+spline/MGDS
+splint/RDSGM
+splinter/dZ
+splish/MS
+split-level
+split-second
+split/SRGM
+splodge/MS
+splosh/DGS
+splotch/MGDSZ
+splotchy/T
+Splott/M
+splurge/MDSG
+splutter/dSr
+spn
+Spock/M
+Spode/M
+Spofforth/M
+spoil/CSRDG
+spoilage/MS
+spoilsport/MS
+spoilt/U
+Spokane/M
+spoke/m5S
+spoken/Uea
+spokeshave/SM
+spokesmanly
+spokesmanship/SM
+spokespeople/M
+spokesperson/SM
+spokeswomanship/SM
+spokewise
+spoliation/SCM
+spoliator/S
+spoliatory
+spondaic
+spondee/MS
+Spondon/M
+spondylolysis/M Noun: uncountable
+sponge-like
+sponge/GZDRS2M
+spongeable
+spongiform
+spongin/SM
+spongocoel/SM
+spongy/TY
+sponsor/OdMS
+sponsorship/SM
+spontaneity/SM
+spontaneous/YP
+spoof/SDGMR7
+spoofery/SM
+spook/MGZSD2
+spooky/TY
+spool/MRSDG
+spoon-fed
+spoon-feed/SG
+spoon/D6GSM
+spoonbill/MS
+Spooner/M
+spoonerism/SM
+spoonful/MS
+spoonier
+spooniest
+spooniness/M
+spoonsful
+spoony/SMY
+spoor/SM
+sporadic/Y
+sporangia/MO
+sporangium/M
+spore/MS
+Spörer/M
+sporidia/M
+sporidium/M
+Sporle/M
+sporogenesis/M
+sporophyll/SM
+sporophyte/SMW
+sporran/SM
+sport/rkVmGvM5ZDS2u
+sportif
+sportive/P
+sportscast/RSGM
+sportsman/MY
+sportsmanlike/U
+sportsmanship/M
+sportsmen/M
+sportspeople/M
+sportsperson/SM
+sportster/SM
+sportswear/M Noun: uncountable
+sportswomanship
+sportswriter/SM
+sporty/TP
+sporulate/SGDN
+spot's/C
+spot-weld/DG
+spot/2GDRSZzMp
+Spotify/M
+Spotland/M
+spotless/PY
+spotlight/SMGD
+spotlit
+Spotswood/M
+Spotsylvania/M
+Spott/M
+spottle/SGD
+spotty/TP
+spousage/M Noun: usually uncountable
+spouse/SM
+spout/rSGDp
+Sprachgefühl/M
+sprag/SM
+Sprague/M
+sprain/GDSM
+sprang
+sprat/SM
+Spratton/M
+sprawl/GSDM
+spray/JSGDM7r
+spread-eagled
+spread/CGcSe
+spreadable
+spreader/SM
+spreadsheet/SMG
+Sprecher/M
+spree/MGS
+Sprengel/M
+Spreydon/M
+Spreyton/M
+Spridlington/M
+sprig/MSDG
+sprightly/TP
+Sprindlington/M
+spring-clean/D
+spring-loaded
+spring/RZSMz2Gp
+springboard/SM
+springbok/MS
+Springboks
+Springboro/M
+Springburn/M
+Springdale/M
+Springer/M
+Springettsbury/M
+Springfield/M
+Springlands/M
+springlet/SM
+springlike
+Springs/M
+Springside/M
+Springsteen/M
+Springston/M
+springtail/SM
+Springthorpe/M
+springtime/SM
+Springville/M
+springy/TP
+sprinkle/RJSMDG
+sprinkling/SM
+sprint/RDSMG
+sprit/SM
+sprite/SM
+spritsail/SM
+Sproatley/M
+sprocket/dSM
+sprog/SGD
+Sproston/M
+Sprotbrough/M
+Sproughton/M
+Sprouston/M
+sprout/DGS
+Sprowston/M
+Sproxton/M
+Spruce/M
+spruce/YMDPSG
+sprucer
+sprue/SM
+sprung
+spry
+Sprycel/M
+spryer
+spryest
+spryly
+spryness
+SPSS
+spud/SDGM
+spume/SMZ
+spumy/T
+spun
+spunk/MZ
+spunky/T
+spur/GDMSp
+spurge/SM
+Spurgeon/M
+spurious/YP
+spurn/DSGr
+Spurriergate/M
+Spurstow/M
+spurt/DGS
+sputa/M
+Sputnik/MS
+sputter/dSr
+sputum/M
+spy/GDMS
+Spyckerelle/M
+spyglass/SM
+spyhole/SM
+spymaster/SM
+Spynie/M
+spyware/M Noun: uncountable
+sq
+sq.
+SQL/M Noun: uncountable
+sqrt
+squab/SM
+squabble/DRSG
+squad/MS
+squadron/MS
+squalene/SM
+squalid/YP
+squall/MYSDG
+squally/T
+squalor/M Noun: usually uncountable
+squamate/SM
+squamosal/SM
+squamous/Y
+squamousness/M Noun: uncountable
+squander/dSr
+Square/M
+square/rPMTDSYG
+squarish
+squash/ZGDS2M
+squashy/T
+squat/YTRSPDG
+squaw/MS
+squawfish/SM
+squawk/RMDSGZ
+squawroot/SM
+squeak/RZSGMD2z
+squeaky/T
+squeal/DRSGM
+squeamish/YP
+squee/Sd
+squeegee/MSd
+squeezable
+squeeze/SRDG
+squelch/ZDSGr
+squelchy/T
+squib/DGMS
+Squibb/M
+squid/MGDS
+squidgy/T
+squiffier
+squiffiest
+squiggle/SYMGD
+squiggly/T
+squill/SM
+squillion/SM
+squillionaire/SM
+squinancywort/M Noun: uncountable
+squint/SDGr
+squinty/T
+squire/YGMDS
+squirearch/Zw
+squiredom/SM
+squireen/SM
+squirehood/M Noun: usually uncountable
+squirelet/SM
+squireling/SM
+squireship/SM
+squirl/SM
+squirm/ZSDGM
+squirmy/T
+squirrel/YMGSD
+squirt/SGDR
+squish/2DGZS
+squishy/T
+squit/MS
+Sr
+SRA/M
+SRAM/SM
+sRGB
+Sri/M
+Srinagar/M
+sriracha/M Noun: usually uncountable
+SRN
+SRO/SM
+SS
+SSA/SM
+SSC/SM
+SSD/SM
+SSE/M Abbreviation of south-southeast
+SSH/M Initialism of Secure Shell
+ssh/SGD
+SSHD/SM
+SSL/M
+SSRI/SM
+ssRNA/SM
+SSS/M
+SST/M
+SSW/M Abbreviation of south-southwest
+st.
+St/M
+stab/RYDJSG
+Stabat Stabat Mater
+stabile/MS
+stabilise/CnRGDS
+stability/MSI
+stabilize/CRnGDS
+stable-boy/SM
+stable-girl/MS
+stable-lad/SM
+stable-mate
+stable/DGZ
+stable/FMS
+Stableford/M
+stableful/S
+stableman/M
+stablemen/M
+stableness/M Noun: uncountable
+stabler/SM
+stablest
+stablish
+staccato/SM
+Stacey/M
+Stacie/M
+stack/7GSDMR
+Stackhouse/M
+Stackpole/M
+Stacy/M
+Stadhampton/M
+stadholder/MS
+stadholdership/MS
+stadia/M
+stadium/SM
+stadtholder/MS
+stadtholdership/MS
+staff/ADGSR
+staff/M
+Staffa/M
+staffage/M Noun: usually uncountable
+staffed/cUf
+Staffell/M
+Staffin/M
+Stafford/M
+Staffordshire/M
+staffroom/SM
+Staffs.
+stag/dSM
+stage-manage/RD
+stage-management
+stage-struck
+stage/SZBM2R
+stagecoach/MS
+stagecraft/M Noun: usually uncountable
+stagehand/SM
+stagflation/SM
+Stagg/M
+stagger/Skrd
+staghound/SM
+staging/SM
+stagnancy/MS
+stagnant/Y
+stagnate/nDSG
+Stagsden/M
+stagy/TY
+Stahl/M
+staid/PY
+Stain/M
+stain/SMpDGR7
+Stainborough/M
+Stainbrough/M
+Stainburn/M
+Stainby/M
+Staindrop/M
+Staines-upon-Thames/M
+Staines/M
+Stainfield/M
+Stainforth/M
+Staining/M
+Stainland/M
+Stainley/M
+Stainmore/M
+Stainton/M
+Stainworth/M
+Stair/M
+stair/MS
+staircase/MS
+stairhead/SM
+stairlift/SM
+stairway/MS
+stairwell/MS
+staithe/SM
+stake/MDSG
+stakeholder/SM
+stakeout/MS
+Stakhanovism/M
+Stakhanovite/MS
+stalactic
+stalactiform
+stalactite/MSW
+Stalag/MS
+stalagmite/MSW
+Stalbridge/M
+stale/PTYDG
+stalemate/SGMD
+Staley/M
+Stalham/M
+Stalin/M
+Stalingrad/M
+Stalinism/M Noun: uncountable
+Stalinist/SM
+Stalisfield/M
+stalk/RDMGSpZ
+stalking-horse
+stall/M
+stall/SGID
+stallage/SM
+Staller/M
+stallholder/SM
+Stalling/M
+Stallingborough/M
+Stallings/M
+stallion/SM
+Stallman/M
+Stallmann/M
+Stallo/M
+Stallone/M
+Stalls/M
+Stalmine-with-Staynall/M
+Stalmine/M
+Stalnaker/M
+stalwart/YSMP
+Stalybridge/M
+Stambourne/M
+Stambridge/M
+stamen/MS
+Stamford/M
+Stamfordham/M
+stamina/M Noun: usually uncountable
+staminate
+stammer/rdSk
+stamp/RJDGS
+stamped/d
+stampede/MSr
+Stamperland/M
+Stampfer/M
+Stan/M
+Stanbridge/M
+Stanbury/M
+Stancanelli/M
+stance/ISM
+stanchion/SM
+Stancliffe/M
+stand-alone
+stand-in/SM
+stand-off/MS~
+stand-up
+stand/M
+Stand/M
+stand/SfGJ
+standard-bearer/SM
+standard/YMs9qQ-8S
+standardised
+standby
+standbys
+standee/MS
+stander/SM
+Standerwick/M
+standing/fM
+Standish/M
+standish/MS
+Standlake/M
+standoffish/YP
+Standon/M
+standout/S
+standpipe/SM
+standpoint/SM
+standstill/SM
+Stane/M
+Stanfield/M
+Stanford-le-Hope/M
+Stanford/M
+Stanground/M
+Stanhoe/M
+Stanhope/M
+stanhope/MS
+Staniforth/M
+Stanion/M
+Stanislao/M
+Stanislaus/M
+Stanislav/M
+Stanislavsky/M
+Stank/M
+stank/SM
+Stanleigh/M
+Stanley/M
+Stanly/M
+Stanmer/M
+Stanmore/M
+Stannard/M
+stannary/MS
+Stannett/M
+Stanney/M
+stannic
+Stanningfield/M
+Stanninghall/M
+Stannington/M
+stannocene
+stannous
+Stansfield/M
+Stanstead/M
+Stansted/M
+Stanthorne/M
+Stanton-under-Bardon/M
+Stanton/M
+Stantonbury/M
+Stanway/M
+Stanwell/M
+Stanwick/M
+Stanwix/M
+Stanwood/M
+stanza/DSM
+stanzaic/OY
+Stape/M
+stapedes
+stapedial
+Stapeley/M
+Stapelia Taxonomic genus
+stapelia/MS
+Stapenhill/M
+stapes
+staphylococci/MO
+staphylococcus/M
+Staple/M
+staple/SGDRM
+Staplefield/M
+Stapleford/M
+Staplegrove/M
+Staplehurst/M
+Stapleton/M
+Staploe/M
+star-spangled
+star-studded
+star/GDSpZdrMk
+Star/M
+Stara Stara Zagora
+starboard/DMSG
+Starbotton/M
+Starbucks/M
+starburst/SM
+starch/SzMGD2ZYr
+starchitect/SM
+starchitecture/M Noun: usually uncountable
+starchwoman/M
+starchwort/SM
+starchy/TP
+Starcross/M
+stardom/MS
+stardust/M Noun: usually uncountable
+stare/SM
+starfish/MS
+Starfleet/M
+Stargate/M
+stargate/SM
+stargaze/RSGD
+stargrass/SM
+Stark/M
+stark/TYP
+Starke/MS
+Starkey/M
+Starks/M
+Starkville/M
+starlet/SM
+starlight/M Noun: uncountable
+starlike
+starling/SM
+starlit
+Starmore/M
+Starr/M
+starry/T
+starseed/SM
+starshine/M Noun: uncountable
+starship/SM
+Starshot
+Starston/M
+starstruck
+start-up/MS
+start/RSDG
+Startforth/M
+startle/GkDSM
+startler/MS
+startup/SM
+starve/GSnD
+starveling/SM
+starwort/MS
+stash/GSD
+stasis/M
+stat/SMO
+statable
+statant
+state-of-the-art
+state/aSALGfIcD
+State/M
+state/M6h
+statecraft/SM
+statehood/MS
+Statehouse/M
+statehouse/SM
+stateless/P
+stately/TP
+statemented
+statementing
+Staten/M
+stater/Ma
+stateroom/SM
+states/5m
+Statesboro/M
+statesfolk
+statesman/Y
+statesmancraft/M
+statesmanlike
+statesmanship/SM
+Statesville/M
+statewide
+statewise
+Statfold/M
+Stather/M
+Statherian
+Stathern/M
+static/OYS
+statin/SM
+station-wagon/MS
+station/DG
+station/eMS
+Station/M
+stationarity/SM
+stationary/PY
+stationer/ZSM
+stationery/MS
+stationmaster/MS
+statise/SGD Verb
+statism/SM
+statist/SM
+statistic/SOYM
+statistician/SM
+stative/SY
+stativity
+statize/SGDN
+statocyst/SM
+stator/SM
+statoscope/SM
+statuary/SM
+statue/MSD
+statuesque/YP
+statuette/SM
+stature/MS
+status/MWS
+statute/SyM
+statutory/Y
+Stauffer/M
+Staughton/M
+staunch/DTSGYP
+Staunton/M
+stave/GDSM
+Staveley/M
+Staverton/M
+stavesacre/MS
+Stawell/M
+Stawley/M
+stay-at-home
+stay/ecDSG
+staycation/SM
+stayer/SM
+staysail/SM
+Staythorpe/M
+STD/SM
+Ste/M
+stead/z2MZ
+steadfast/PY
+Steadicam/SM
+steadier/U
+steadiest/U
+steadiness/M Noun: usually uncountable
+steady-going
+steady/DGS
+steady/UY
+steak/SM
+steakhouse/MS
+steal/SGR
+stealing/M
+stealth/M2zZ
+stealthy/T
+steam/zR2DGMZS
+Steamboat/M
+steamboat/MS
+steampunk
+steamroller/dSM
+steamship/MS
+steamy/T
+Steane/M
+stearate/SM
+stearic
+stearidonic
+Stearns/M
+steatopygia/M
+steatopygous
+steatosis/M
+Stebbing/M
+Steckling/M
+Stedham/M
+Stedman/M
+steed/SM
+Steeg/M
+steel-clad
+steel/DMGZ2S
+Steel/M
+Steele/M
+steelhead/SM
+steelwork/RSM
+steely/T
+steelyard/SM
+Steen/M
+steep/TSGDYP
+steepen/dS
+Steeping/M
+steeple/DSM
+Steeple/M
+steeplechase/GSMR
+steeplejack/MS
+Steepleton/M
+steer/GSD7R
+steerage/SM
+Steere/M
+steers/m
+Steeton/M
+steeves
+Stefan/M
+Stefani/M
+Stefanie/M
+Stefano/M
+Steffan/M
+Steffen/M
+Steffi/M
+steganographer/SM
+steganography/WM
+stegosaurus/SM
+Stehlé/M
+Stehmann/M
+stein/MS
+Steinbach/M
+Steinbeck/M
+Steinberg/M
+Steiner/M
+Steinfeld/M
+Steinhardt/M
+Steinman/M
+Steinmeier/M
+Steinmetz/M
+Šteins/M
+Steinway/M
+stela/M
+stelae/M
+Stelara/M
+Steliga/M
+Stella/M
+stellar
+stellated
+Stellenbosch/M
+stelliferous
+Stelling/M
+stem/pGMDS
+stemmed/U
+Sten
+stench/SM
+stencil/DSMGJ
+Stendhal/M
+Stengel/M
+Stenhouse/M
+Stenhousemuir/M
+Stenian
+Stenigot/M
+Stenness/M
+stenograph/SGDZRM
+stenos/S
+stenosed
+stenosing
+stenosis
+stenothermal
+stenotic
+stenotype/MS3Z
+Stenscholl/M
+Stensen/M
+Stenson/M
+stent/SM
+Stenton/M
+Stentor
+stentorian/Y
+step's/aI
+step-parent/SM
+step/cDGS
+stepbrother/MS
+stepchild/M
+stepchildren
+stepdad/SM
+stepdaughter/MS
+stepfamily/SM
+stepfather/SM
+Stepford/M
+Stephan/M
+Stephanie/M
+Stephen-in-Brannel/M
+Stephen/MS
+Stephendale/M
+Stephenie/M
+Stephenson/M
+Stephenville/M
+stepladder/SM
+stepmother/SM
+stepmum/SM
+Stepney/M
+Stepneyville/M
+steppe/SRM
+Steppingley/M
+steppingstone/SM
+Stepps/M
+steps/aI
+Steps/M
+stepsister/SM
+stepson/MS
+stepwise
+steradian/SM
+stercoraceous
+stereo/SM
+stereobate/MS
+stereocamera/SM
+stereocentre/MS
+stereochemical/Y
+stereochemistry/SM
+stereognosis
+stereognostic
+stereogram/SM
+stereograph/SM1
+stereography/MW
+stereoisomer/MSW
+stereoisomerism/SM
+stereolithography/W
+stereology/w1
+stereometry/M Noun: uncountable
+stereomicroscope/SM
+stereophony/W1
+stereopsis
+stereoptic
+stereopticon/SM
+stereoregular
+stereoscope/ZWM1S
+stereoscopy/SM
+stereoselective
+stereoselectivity/SM
+stereospecific/Y
+stereospecificity/SM
+stereotactic/Y
+stereotaxic
+stereotype/ZMDGSWw1
+steric/Y
+sterigma
+sterigmata
+sterilant/SM
+sterile/YQ8q-s9
+sterilisable
+sterilise/ADSG
+sterility/SM
+sterilizable
+sterlet/SM
+Sterling/M
+sterling/PMY
+Sterlitamak/M
+Stern-Volmer/M
+stern/DSYTO
+Stern/M
+Sterndale/M
+Sterne/M
+Sternfield/M
+sternite/SM
+sternmost
+sternness
+sternocleidomastoid/SM
+sternum/SM
+sternward/S
+sternway/SM
+steroid/MSO
+sterol/SM
+Sterrett/M
+Stert/M
+stertorous/PY
+stet/MGSD
+Stetchworth/M
+stethoscope/DSMW
+stethoscopist/MS
+stethoscopy/M Noun: uncountable
+Stetson/MS
+Stettin/M
+Steuben/M
+Steubenville/M
+Steve/M
+stevedore/SM
+Steven/MS
+Stevenage/M
+Stevens/M
+Stevenson/M
+Stevenston/M
+Steventon/M
+stevia/MS
+Stevie/M
+Stevin/M
+Stevington/M
+stew/DMGS
+steward/GMDS
+Steward/M
+stewardess/MS
+stewardship/SM
+Stewart/MS
+Stewartby/M
+Stewartfield/M
+Stewarton/M
+Stewartry
+Stewartstown/M
+Stewkley/M
+Stewton/M
+Steyning/M
+Steynton/M
+sthenic
+Sthulibhadra/M
+STI/SM
+Stibbard/M
+stibine/SM
+stibnite/SM
+stibocene
+Stichill/M
+stichomythia/SM
+stick/RZS2GzM
+Stickford/M
+stickit
+stickjaw/M
+Stickland/M
+stickleback/MS
+Sticklepath/M
+stickler/SM
+Stickney/M
+stickup/SM
+sticky/T
+stickybeak/MS
+Stidd/M
+Stieltjes/M
+stiff-necked
+stiff/YPTS
+stiffen/rSd
+Stiffkey/M
+Stifford/M
+stifle/SGDkr
+Stigand/M
+Stigler/M
+Stiglitz/M
+stigma/Q8Wq-SM
+stigmata
+stigmatic/MSY
+stigmatised/U
+stigmatist/SM
+stigmatization/CS
+Stigwood/M
+Stihler/M
+stilbene/SM
+stilboestrol/SM
+stile/MS
+stiletto/SM
+still/SDPTGZ
+stillbirth/SM
+stillborn/SM
+Stillingfleet/M
+Stillington/M
+Stillwater/M
+Stillwell/M
+stilt/MhiSD
+Stilton/M
+stimulant/SM
+stimulate/cGSD
+stimulated/U
+stimulation/MS
+stimulative
+stimulator/MSZ
+stimuli/M
+stimulus/M
+Stinchcombe/M
+Stine/M
+sting/RZSGkz2p
+stingaree/MS
+stingray/MS
+stingy/PT
+stink/GZSRkM
+stinkhorn/MS
+stinkpot/SM
+stinkweed/SM
+stinkwood/MS
+stinky/T
+Stinsford/M
+stint/GDMSr
+stinting/U
+stipe/SM
+stipend/MS
+stipendiary
+stipitiform
+stipple/GDSJr
+stipular
+stipulate/GnDS
+stipulator/MS
+stipule/SM
+stir-fry/D
+stir/GSJDR
+Stirchley/M
+stirk/MS
+Stirling/M
+Stirlingshire/M
+stirred/U
+stirring/Y
+stirrup/SM
+Stirton/M
+Stisted/M
+stitch/ADGJS
+stitch/SM
+stitcher/MZ
+stitching/M
+stitchwort/MS
+Stithians/M
+stiver/MS
+Stivetts/M
+Stivichall/M
+Stixwould/M
+Stoa
+Stoak/M
+stoat/MS
+Stobo/M
+Stobswell/M
+stochastic/Y
+stock-in-trade
+stock/GcDAS
+Stock/M
+stock/Mp
+stockade/DGMS
+stockbreeder/SM
+Stockbridge/M
+stockbroker/SM
+stockbroking
+Stockbrook/M
+Stockbury/M
+Stockdale/M
+stocked/f
+Stockeld/M
+stocker/MS
+Stockerston/M
+Stockethill/M
+stockfish/MS
+Stockhausen/M
+stockholder/MS
+Stockholm/M
+stockinet/MS
+stockinette/SM
+Stocking/M
+stocking/MSDp
+stockjobber/MS
+stockjobbing/M
+Stockland/M
+Stockleigh/M
+Stockley/M
+Stocklinch/M
+stocklist/MS
+Stocklynch/M
+stockman/M
+stockmanship/M Noun: uncountable
+stockmen/M
+stockpile/DSGRM
+Stockport/M
+stockpot/SM
+stockroom/SM
+Stocks/M
+Stocksbridge/M
+stocktake/R
+stocktaking/M
+Stockton-on-Tees/M
+Stockton-on-the-Forest/M
+Stockton/M
+Stockwell/M
+Stockwith/M
+Stockwood/M
+stocky/YTP3
+stockyard/MS
+Stoddard/M
+Stoddart/M
+stodge/2MZSGD
+stodgy/TY
+Stodmarsh/M
+Stody/M
+Stoer/M
+Stogumber/M
+Stogursey/M
+Stoic/MS
+stoic/OSYM
+stoichiometry/SMW1
+stoicism/SM
+Stoke-by-Clare/M
+Stoke-by-Nayland/M
+Stoke-on-Trent/M
+Stoke/M
+stoke/SRGD
+Stokeclimsland/M
+Stokeham/M
+stokehold/MS
+stokehole/MS
+Stokeinteignhead/M
+Stokenchurch/M
+Stokenham/M
+Stokes/M
+Stokesay/M
+Stokesby/M
+Stokesley/M
+Stökl/M
+STOL
+stole/MS
+stolen
+stolid/Y
+stolidity/M Noun: usually uncountable
+stolidness/M Noun: uncountable
+stolon/MS
+stolonate
+stoloniferous
+Stoltzenberg/M
+stoma/O
+stomach-pump
+stomach-tube
+stomach/R6pDMG
+stomachache/SM
+stomachful/S
+stomachic/SMOY
+stomachs
+stomata/O
+stomatitis
+stomatogastric
+stomatopod/SM
+stomp/DSGr
+stompy/T
+Ston/M
+Stonar/M
+Stondon/M
+stone-baked
+stone-cold
+Stone-cum-Ebony/M
+Stone-in-Oxney/M
+Stone/M
+stone/pSMZDGR
+Stonebeck/M
+Stonebridge/M
+stonechat/SM
+stonecrop/MS
+stonecutter/MS
+Stonefields/M
+stonefish/SM
+Stonegate/M
+Stonegrave/M
+stoneground
+Stoneham/M
+Stonehaven/M
+Stonehenge/M
+Stonehouse/M
+Stonelaw/M
+Stoneleigh/M
+Stoneman/M
+stonemason/SM
+stonemasonry/M Noun: uncountable
+Stonesby/M
+Stonesfield/M
+Stoneton/M
+stonewall/DSG
+stonewaller/SM
+stoneware/SM
+stonewashed
+stonework/Mr
+stonewort/SM
+Stoney/M
+Stoneyburn-Addiebrownhill/M
+Stoneyburn/M
+Stoneyford/M
+Stoneykirk/M
+Stoneywood/M
+Stonham/M
+Stonington/M
+Stonnall/M
+Stonor/M
+Stonton/M
+Stony/M
+stony/YPT
+stood/f
+Stoodleigh/M
+stooge/SM
+Stookey/M
+stool-pigeon
+stool/MS
+stoop/DGS
+stop-go
+stop/GDSRMp
+stopcock/SM
+stopgap/MS
+Stopham/M
+stopoff
+stopover/SM
+stoppable/U
+stoppage/SM
+stopped/U
+stoppered
+stopping/U
+stopwatch/MS
+storable
+storage/MS
+storax/M
+store/M
+store/SAGD
+storehouse/MS
+storekeeper/SM
+storeman/M
+storemen/M
+storer/A
+storeroom/MS
+storey/SM
+Storiths/M
+Stork
+stork's-bill
+stork/SM
+storm-bird/SM
+storm-cock/MS
+storm-door/SM
+storm-finch/SM
+storm-lantern/SM
+storm-sail/SM
+storm-signal/MS
+Storm/M
+storm/R2GpzDZSM
+stormbound
+Stormont/M
+stormproof
+stormtrooper/SM
+stormy/T
+Stornoway/M
+Storrington/M
+Stortford/M
+Story/M
+story/MSD
+storyboard/SGMD
+storybook/SM
+storyline/SMr
+storyteller/MS
+storytelling/M
+Stossel/M
+Stotfold/M
+Stott/M
+Stottesdon/M
+Stoubridge/M
+Stouffer/M
+Stoughton/M
+Stoulton/M
+stoup/SM
+Stour/M
+Stourbridge/M
+Stourmouth/M
+Stourpaine/M
+Stourport-on-Severn/M
+Stourton/M
+stout-hearted/Y
+stout-heartedness
+Stout/M
+stout/TYSP
+stove/SM
+Stoven/M
+stovepipe/SM
+Stover/M
+stovetop/SM
+stovies
+Stow-cum-Quy/M
+Stow-on-the-Wold/M
+stow/DGS7
+Stow/M
+stowage/SM
+stowaway/SM
+Stowe-by-Chartley/M
+Stowe/M
+Stowell/M
+Stowey/M
+Stowford/M
+Stowlangtoft/M
+Stowmarket/M
+Stowood/M
+Stowting/M
+Stowupland/M
+Strabane/M
+strabismal
+strabismus/W
+Stracathro/M
+stracciatella
+Strachan/M
+Strachur/M
+Straczynski/M
+Strad/MS
+Stradbroke/M
+straddle/RSDG
+Stradishall/M
+Stradivari/M
+Stradivarius/M
+Stradsett/M
+strafe/SGD
+Strafford/M
+straggle/RYDSG
+Stragglethorpe/M
+straggly/T
+Strahan/M
+Straid/M
+Straidarran/M
+straight-edge/SM
+straight-eight
+straight-faced
+straight/YPTS~
+straightedge/D
+straighten/rSd
+straightforward/PY
+straightjacket/SM
+strain/FSAD
+strainable
+strained/cU
+strainer/AMS
+straining/c
+strait-jacket/dSM
+strait-laced
+strait/SMYP
+straiten/dS
+Straith/M
+straitjacket/dMS
+Straiton/M
+strake/SM
+Straloch/M
+stramash
+stramonium
+strand/GSD
+Strand/M
+Strang/M
+strange/PTYR
+Strangelove/M
+Strangford/M
+strangle/DGRS
+stranglehold/MS
+strangulate/GnSD
+strangurious
+strangury/M
+Stranocum/M
+Stranraer/M
+Stranton/M
+strap/DUSG
+strap/Mp
+straphanger/MS
+strapper/MS
+strappy/T
+Strasbourg/M
+Strassen/M
+Strassmann/M
+Strata/M
+strata/MO
+stratagem/MS
+strategic/S
+strategician
+strategise/SGD
+strategos
+strategus
+strategy/W3MSw1
+Stratfield/M
+Stratford-on-Avon/M
+Stratford-upon-Avon/M
+Stratford/M
+Strath/M
+strath/MS
+Strathaven/M
+Strathblane/M
+Strathbogie/M
+Strathbraan/M
+Strathbrock/M
+Strathclyde/M
+Strathcona/M
+Strathdon/M
+Strathern/M
+Strathfillan/M
+Strathfoyle/M
+Strathkinness/M
+Strathlachlan/M
+Strathmartine/M
+Strathmiglo/M
+Strathmore/M
+Strathnaver/M
+Strathpeffer/M
+strathspey/MS
+Strathtay/M
+Strathy/M
+strati
+straticulate
+stratificational
+stratify/GnDS
+stratigraphy/MwW
+stratocracy/SM
+stratocrat/W
+stratocumulous
+stratocumulus
+stratopause/MS
+stratopedarch/M
+stratose
+stratosphere/SWM1
+Strattera/M
+Stratton-on-the-Fosse/M
+Stratton/M
+stratum/M
+stratus/M
+Strauss/M
+Stravinsky/M
+straw-colour/D
+straw/MZS
+strawberry/SM
+strawboard/SM
+Strawless/M
+Strawn/M
+Strawson/M
+strawworm/SM
+stray/GDSMR
+Štrba/M
+streak/RSDZGM
+streaky/TPY
+stream/GSRMD7
+Stream/M
+streambed/SM
+streamed/U
+streamflow/SM
+streamlet/SM
+streamline/GDSRM
+Streamwood/M
+Streat/M
+Streatham/M
+Streatley/M
+Streator/M
+Streep/M
+Street/M
+street/MS
+Streethay/M
+streetlamp/SM
+Streetsboro/M
+streetscape/SM
+streetwalker/MS
+streetwalking/M Noun: uncountable
+streetward
+streetwise
+Strega/SM
+Strehler/M
+Streicker/M
+Streisand/M
+Strelley/M
+strength/MSp
+strengthen/AdS
+strengthener/SM
+Strensall/M
+Strensham/M
+strenuous/YP
+strep
+streptococci/O
+streptococcus/M
+streptomycin/M
+streptose/M Noun: uncountable
+STRESS
+stress/DpMSG
+stressed/U
+stressful/YP
+stressor/SM
+stretch/eGDS
+stretchability/M
+stretchable
+stretched/c
+stretcher/dMS
+stretchy/TP
+Strete/M
+Stretford/M
+Strethall/M
+Stretham/M
+stretti/M
+stretto/M
+Stretton/M
+streusel
+strew/GDSR
+strewn
+strewth
+stria/nM
+striae
+striata/O
+striate/SGDn
+striatum
+Stribild/M
+Strichen/M
+stricken
+Strickland/M
+strickle/MS
+strict/TYP
+stricter/F
+stricture/MS
+stridden
+stride/MSGr
+stridency/SM
+strident/Y
+stridor
+stridulant/Y
+stridulate/SGDn
+stridulatory
+Strieber/M
+strife/M
+strigil/SM
+strigose
+strikable
+strike-breaking
+strike/RGSk
+strikebound
+strikebreak/R
+strikebreaking/M Noun: usually uncountable
+strikeout/SM
+strikingness/M
+Strikwerda/M
+strim/RGD
+Strine/M
+string/AGS
+string/MDp
+stringboard/SM
+stringency/SM
+stringendi/M
+stringendo/SM
+stringent/Y
+stringer/MS
+Stringfield/M
+stringpiece/SM
+Stringston/M
+stringy/PTY
+stringybark/SM
+strip-searched
+strip-searching
+strip/eDGS
+strip/M
+stripe/SMDZGr
+stripey
+stripier
+stripiest
+stripling/M
+stripper/MS
+strippergram/SM
+striptease/RSM
+strive/DSGJr
+striven
+Strixton/M
+strobe/SM
+Strobel/M
+strobila
+strobilae
+strobilation
+strobili
+strobilus
+stroboscope/MSW
+stroboscopical/Y
+strode
+Stroessner
+stroganoff/SM
+Strogatz/M
+Stroh/M
+stroke/SGDMr
+stroll/SRGD
+Strolz/M
+Strom/M
+stroma/O
+stromata/W
+stromatolite/SM
+stromatoporoid/SM
+Stromberg/M
+Stromness/M
+stromule/SM
+Strone/M
+strong-minded
+strong/YTm~
+strongbox/MS
+stronghold/MS
+strongroom/SM
+Strongsville/M
+Stronsay/M
+Strontian/M
+strontianite/M Noun: usually uncountable
+strontiocene
+strontium/M
+Strood/M
+strop/SMDG
+strophanthin/SM
+strophe/WSM
+stroppy/TPY
+Strossen/M
+Stroud/M
+Stroudsburg/M
+strove
+Strowan/M
+Stroxton/M
+Struan/M
+Strubby/M
+struck
+structural/3Y
+structuralism/SM
+structuration/O3MSo
+structure/ASGD
+structure/Mp
+structured/U
+strudel/MS
+struggle/SGDrM
+strum/DGSR
+strumpet/MS
+Strumpshaw/M
+strung/cUA
+strut/DSGRM
+struth
+Struthers/M
+Strutt/M
+Struy/M
+strychnine/M Noun: usually uncountable
+Stuart/MS
+Stuartfield/M
+stub/MZDGS
+stubble/YSMD
+Stubblefield/M
+stubbly/T
+stubborn/TYP
+Stubbs/M
+stubby/T
+Stubton/M
+stucco/MDG
+stuccoes
+Stuchbury/M
+stuck/U
+stuckness/M Noun: uncountable
+stud/DSMG
+studbook/SM
+student/ZpMS~
+studentise/SGD
+studentism
+studentize/SGD
+studentry/M
+studentship/MS
+studerite/M Noun: uncountable
+Studham/M
+studiable
+studied/U
+studied/Y
+studiedness/M Noun: uncountable
+studier/SM
+studify/SGD
+studio/SM
+studious/YP
+Studland/M
+study/MASfDG
+stuff/cDG
+stuff/SMr
+stuffing/M
+stuffy/YTP
+Stukeley/M
+Stukeleys/M
+stultify/nSGD
+stum/SGDrM
+stumble/GSDRk
+stump/ZSDGMR2
+stumpage/SM
+stumpy/TY
+stun/GSDR
+stung
+stunk
+stunning/Y
+stunsail/SM
+stunt/iSDGM
+stuntman/M
+stuntmen/M
+Stuntney/M
+stuntwoman/M
+stuntwomen/M
+stupa/MS
+stupefacient/MS
+stupefaction/MS
+stupefactive/MS
+stupefier/MS
+stupefy/SkGD
+stupendous/YP
+stupid/Y
+stupider
+stupidest
+stupidity/MS
+stupor/MS
+stuporous
+sturdy/TYP
+sturgeon/MS
+Sturgis/M
+Sturm/M
+Sturmabteilung/M
+Sturmer/M
+Sturminster/M
+Sturrock/M
+Sturry/M
+Sturston/M
+Sturton/M
+Stuston/M
+Stutsman/M
+Stuttard/M
+Stutter/M
+stutter/rSdk
+Stuttgart/M
+Stutton/M
+sty/SM
+Styal/M
+Stygian/M
+style/ASGD
+style/Mr
+stylee
+stylet/MS
+styli
+stylise/nSDG
+stylish/YP
+stylist/WM1S
+stylistic/S
+stylize/nSDG
+stylobate/SM
+stylograph/WSM
+styloid/SM
+stylolite/SM
+stylometry/MW1
+stylopised
+stylopized
+stylus/SM
+stymie/SD
+stymieing
+styptic/SM
+styrene/SM
+styrofoam/SM
+Styrrup/M
+Styx/M
+Su/M
+Suamico/M
+Suarez/M
+suasion/SEM
+suave/TYP
+suavity/SM
+sub-aqua/M
+sub-assembly/SM
+sub-base/SM
+sub-basement/MS
+sub-branch/MS
+Sub-Deanery/M
+sub-edit/d
+sub-editorship
+sub-head/J
+sub-idea
+sub-item/SM
+sub-lieutenant/SM
+Sub-Lt.
+sub-machine-gun
+sub-prime
+sub-Saharan
+sub-sequence/SM
+sub-standard
+sub-zero
+Sub/M
+sub/SGDM
+subacid/SM
+subacidity/MS
+subacidulous
+subacrocentric
+subacute
+subadult/SM
+subaerial/Y3
+subagency/SM
+subagent/SM
+subagitation
+subah/SM
+subahship/SM
+subak/SM
+subalgebra/SM
+subalgebrae/M
+subalpine
+subaltern/MS
+subalternant/SM
+subangular/Y
+subantarctic
+subaquatic
+subaqueous
+subarachnoid/O
+subarctic
+Subaru/M
+subastral
+subatomic/Y
+subaudition/MS
+subaxillary
+Subberthwaite/M
+subcase/SM
+subcategorise/SGDN
+subcategorize/SGDN
+subcategory/SM
+subcaudal/M
+subcell/SM
+subcellular
+subcentre
+subchapter/SM
+subchaser/SM
+subchelate
+subcheliform
+subchondral
+subchron/SMW
+subcircuit/SM
+subclass/MS
+subclassify/SGD
+subclause/SM
+subclavian/SM
+subclinical
+subclone/SM
+subcommand/SMr
+subcommission/SM
+subcommissioner/MS
+subcommittee/SM
+subcomplex/SM
+subcomponent/SM
+subconical
+subconjunctival
+subconscious/YP
+subcontinent/SMO
+subcontract/SGDM
+subcontractor/SM
+subcontrary/MS
+subcortical
+subcostal
+Subcourse/M
+subcreation/SM
+subcreative
+subcritical
+subcult/SM
+subculture/SMO
+subcutaneous/Y
+subcuticular
+subdeacon/MS
+subdeaconry/MS
+subdeaconship/MS
+subdean/MS
+subdeanery/MS
+subdecanal
+subdecision/SM
+subdermal
+subdevelopment/SM
+subdiaconate/MS
+subdirectory/SM
+subdiscipline/SM
+subdivide/SDG
+subdivider/MS
+subdivisible
+subdivision/SM
+subdomain/SM
+subdominant/SM
+subduable
+subdual/MS
+subduct/SGD
+subduction/SM
+subductive
+subdue/SDGr
+subduement
+subduple
+subduplicate
+subdural
+subdwarf
+Subedge/M
+subedit/Sd
+subeditor/SMO
+subeditorship
+subenfeudation
+subequation/SM
+subereous
+suberic
+suberin/SM
+suberise/SGDN
+suberize/SGDN
+suberone/SM
+suberonyl
+suberose
+suberous
+suberyl
+subesophageal
+subevergreen
+subface/SM
+subfactor/SM
+subfamily/MS
+subfauna
+subfertile
+subfertility
+subfeudatary
+subfeudation
+subfeudatory
+subfield/SM
+subfissure
+subfix/SGD
+subfloor/SM
+subfluvial
+subfolder/SM
+subfolium
+subform/SM
+subformat/SM
+subformation/SM
+subforum/SM
+subfossil/SM
+subfraction/SMN
+subframe/SM
+subfrigid
+subfunction/SM
+subfusc/SM
+subgame/SM
+subgenera/1W
+subgenomic
+subgenre/SM
+subgenus
+subgiant/SM
+subglacial/Y
+subglobose
+subglobular
+subgroup/SM
+subhead/MGSJ
+subheading/M
+subhuman/SM
+subimpose
+subincandescent
+subincision/SM
+subindex/SM
+subindustry/SM
+subinfeud/SGD
+subinfeudation
+subinfeudatory/SM
+subinterval/SM
+subitem/SM
+subjacent
+subject/vGSDuMV7p
+subjectdom
+subjecthood
+subjectible
+subjectification
+subjection/SM
+subjective/P3
+subjectivise/DGS
+subjectivism/SM
+subjectivity/SM
+subjectivize/DGS
+subjectship
+subjoin/GDS
+subjugable
+subjugal
+subjugate/DnGS
+subjugator/MS
+subjunctive/SY
+subjunctivity/M Noun: uncountable
+subkey/SM
+subkind/SM
+subkingdom/SM
+sublacustrine
+sublanguage/SM
+sublapsarian/SM
+sublapsarianism
+sublate/SDGN
+sublateral
+sublattice/SM
+sublayer/SM
+sublease/DMGS
+sublegion/SM
+sublet/SG
+sublethal
+Sublette/M
+subletter/SM
+sublevation/SM
+sublevel/SM
+sublibrary/SM
+sublicense/DS
+sublicensee/SM
+sublight
+sublimate/DSG
+sublime/YTDnSG
+subliminal/Y
+sublimity/SM
+sublingual/Y
+sublink/SM
+sublist/SM
+sublittoral
+sublumial
+subluminal
+sublunar
+sublunary
+subluxate/SGDn
+submachine/SM
+submandibular
+submanifold/SM
+submarginal
+submarine/RSM
+submaster/MS
+submaxillary
+submedial
+submedian
+submediant/MS
+submembranaceous
+submembranous
+submental
+submenu/SM
+submerge/GDS
+submergence/SM
+submerse/SbXGDN
+submersible/SM
+submersion/M
+submetacentric
+submicrometre
+submicroscopic
+subminiature
+submission/MA
+submissive/PY
+submit/ANSGDX
+submittal
+submitter/SM
+submodify/RSDGN
+submodule/SM
+submucosa/O
+submucosae
+submultiple/SM
+submunition/SM
+submuscular
+subnanosecond
+subnational
+subnatural
+subnet/MS
+subnetwork/SM
+subnormal
+subnormality
+subnotebook/SM
+subnuclear
+subocular/M
+suboperation/SM
+suboptimal/Y
+suboptimum
+suboption/SM
+suborbital
+suborder/MS
+subordinal
+subordinary/SM
+subordinate/ISYDGn
+subordination/MI
+subordinative
+subordinator/SM
+suborganisation/SM
+suborganization/SM
+suborn/GDSr
+subornation/SM
+subornee/SM
+suboval
+subovoid
+suboxide/SM
+Suboxone/M
+subpage/SM
+subpar
+subparagraph/SM
+subparallel
+subpart/SM
+subperitoneal
+subpersonality
+subpetiolar
+subpetiolate
+subpetiole/D
+subphotospheric
+subphyla
+subphylum
+subplanetary
+subpleural/Y
+subplot/SM
+subpoena/DGSM
+subpopulation/SMO
+subprime
+subprior/MS
+subprocess/SM
+subprogram/SM
+subproject/SM
+subpubic
+subquery/SM
+Subramanian/M
+subrange/SM
+subrectangular
+subreddit/SM
+subregion/SOoM
+subreligion/SM
+subreption/SM
+subreptitious/Y
+subrident
+Subritzky/M
+subrogate/SGDn
+subrotund
+subrotundate
+subround
+subroutine/SM
+subrule/SM
+subsale/M
+subsalt
+subsample/SGDM
+subsaturation/MS
+subscale/SM
+subscapular
+subscribe/AGcSDU
+subscriber/SM
+subscript/DGS
+subscription/MSp3
+subscriptive
+subscrive/SGD
+subsea
+subsecant/M
+subsect/SGD
+subsection/SMD
+subsegment/SM
+subsellia/M
+subsellium/M
+subsensation/SM
+subsensible
+subsequence/MSZ
+subsequent/Y
+subsequentially
+subsere
+subserosa/MO
+subserous
+subserve/SGD
+subserviate/SGD
+subservience/M Noun: usually uncountable
+subserviency/M
+subservient/YP
+subsessile
+subset/MS
+subsexual
+subshell/SM
+subshrub/SMZ
+subside/qQ-8DZGs9S
+subsidence/SM
+subsidiarity/M Noun: usually uncountable
+subsidiary/SMY
+subsidy/SM
+subsist/GSD
+subsistence/SM
+subsistent
+subsocial
+subsoil/MSG
+subsolar subsolar point
+subsolidus
+subsonic/Y
+subspace/SM
+subspecialist/SM
+subspecies/M
+subspecific
+substage/SM
+substance/SM
+substandard/Y
+substandardness/M Noun: uncountable
+substantial/YI
+substantialise/DGS
+substantialism/M Noun: usually uncountable
+substantialist/MS
+substantiality/SM
+substantialize/DGS
+substantiate/SDGn
+substantiation/FMS
+substantival/Y
+substantive/SMY
+substation/SM
+substellar
+substituent/SM
+substitute/SMVBvDG
+substitution/SyMO
+substorm/SM
+substrata/M
+substrate/MS
+substratum/M
+substring/SM
+substructure/SMO
+substyle/SM
+subsumable
+subsume/GSD
+subsumption/SM
+subsurface/SM
+subsystem/MS
+subtangent/SM
+subtask/SM
+subteen/SM
+subteenage
+subteenager/M
+subtelocentric
+subtemporal
+subtenancy/SM
+subtenant/SM
+subtend/SDG
+subtense/SM
+subtention/M
+subtenure
+subteraqueous
+subterfluent
+subterfuge/SM
+subterminal
+subternatural
+subterposed
+subterraneal
+subterranean/YS
+subterraneous/Y
+subtest/SM
+subtext/SM
+subtextual
+subtheme/SM
+subtidally
+subtilise/DGS
+subtilize/DGS
+subtilty/M
+subtitle/MSGD
+subtle/PTY
+subtlety/SM
+subtonic
+subtopia/MS
+subtopian
+subtopic/SM
+subtotal/MSGD
+subtract/RvVGDS
+subtraction/SM
+subtrahend/SM
+subtree/SM
+subtribe/SM
+subtropic/SMOY
+subtweet/SMGD
+subtype/SM
+subungulate/SM
+subunit/MS
+suburb/SM
+suburban/Q8q-
+suburbanite/MS
+suburbia/M
+subvention/MS
+subversion/SM
+subversive/PSY
+subvert/SDGr
+subvital
+subvocal/Y
+subvocalise/SGDn
+subvocalize/SGDn
+subwarden/SM
+subway/MS
+subweb/SM
+subwindow/SM
+subwoofer/SM
+subword/SM
+subworld/SM
+subzero Adjective
+subzone/SMO
+succeed/7rGSDk
+success/VM6jvuS
+successful/P
+successfully/U
+successfulness/U
+succession/OSM
+successive/P
+successor/SM
+succinate/SM
+succinct/PY
+succinic
+Succoth/M
+succour/SGMDp
+succubi/M
+succubus/M
+succulence/M Noun: usually uncountable
+succulent/SMY
+succumb/GSD
+succursal
+such
+such-and-such
+suchlike
+suck/GRSD
+sucker/d
+suckle/JSGDr
+Suckley/M
+suckling/SM
+sucralose/SM
+Sucre/M
+sucrose/SM
+suction/DMGS
+Sudan/M
+Sudanese/M
+sudaria/M
+sudarium/M
+Sudborough/M
+Sudbourne/M
+Sudbrook/M
+Sudbrooke/M
+Sudbury/M
+sudden/YP
+Sudeley/M
+Sudetenland/M
+Sudhindra/M
+sudoku/SM
+sudoriferous
+sudorific/SM
+Sudra/SM
+suds/Z
+sudsy/T
+Sue/M
+sue/R7SGD
+suede/M
+Sueli/M
+suet/SMZ
+Suetonius/M
+Sueur/M
+Suez/M
+suffect/SM
+suffer/drJS
+sufferable
+sufferance/SM
+suffering/M
+Suffern/M
+suffice/SGD
+sufficiency/IM
+sufficient/IY
+Suffield-cum-Everley/M
+Suffield/M
+suffix/nSGDMO
+suffixion/SM
+suffocate/SGkDn
+Suffolk/MS
+suffragan/SM
+suffrage/3SM
+suffragette/MS
+suffuse/DSG
+suffusion/SM
+Sufi/M
+Sufism/M Noun: uncountable
+sugar-coated
+sugar/dMpSZ
+Sugar/M
+sugarbird/SM
+sugarcane/M Noun: usually uncountable
+sugarplum/SM
+suggest/RGuVvSDb
+suggestibility/M
+suggestion/SM
+suggestive/P
+Sugimori/M
+Sugiura/M
+Sugwas/M
+suicidality/SM
+suicide/DGSoMO
+suicidology/M Noun: uncountable
+Suissas/M
+Suisun/M
+suit/MldSg7
+suitability/U
+suitable/U
+suitableness
+suitably/U
+suitcase/SM
+suite/MS
+suited/U
+suitor/MS
+Sukarno/M
+sukiyaki/MS
+Sukkot/M
+Sukkoth/M
+Sulawesi/M
+Sulby/M
+sulci/M
+sulcus/M
+Suleiman/M
+sulfacetamide/M Noun: uncountable
+sulfamethoxazole/M Noun: uncountable
+sulfapyridine/M Noun: uncountable
+sulfasalazine/SM
+sulfate/SM
+sulfhydryl/SM
+sulfonamide/SM
+Sulgrave/M
+Sulham/M
+Sulhamstead/M
+sulk/Gz2SD
+sulky/T
+Sulla/M
+sullen/YP
+sullener
+Sullington/M
+Sullivan/M
+Sully/M
+sully/SDG
+Sulney/M
+sulphadiazine/M Noun: usually uncountable
+sulphamethoxazole/M Noun: uncountable
+sulphapyridine/M Noun: uncountable
+sulphasalazine/SM
+sulphate/GDSM
+sulphide/MS
+sulphite/SM
+sulpholane/M
+sulpholene/M
+sulphonamide/MS
+sulphonate/SGDN
+sulphone/SMW
+sulphonyl/MS
+Sulphur/M
+sulphur/MdSW
+sulphurate/DGS
+sulphurise/DGS
+sulphurous
+sulphuryl/MS
+Sultan/M
+sultan/SM
+sultana/MS
+sultanate/MS
+sultry/TPY
+Sulu/M
+sum/8NSRMXDG
+sumac/SM
+Sumatra/M
+Sumatran/SM
+sumatriptan/M Noun: uncountable
+Sumbawa/M
+Sumer/M
+Sumerian/MS
+summand/SM
+summarisation/SM
+summarization/SM
+summary/Ss9Q8MYP
+summat
+summation/FMS
+summation/O
+summative
+summer/dZpY
+Summerdale/M
+Summerfield/M
+Summerford/M
+Summerhill/M
+Summerhouse/M
+summerhouse/MS
+Summers/M
+Summerside/M
+summertime/SM
+Summertown/M
+Summerville/M
+summing-up/M
+Summit/M
+summit/SpM
+summiteer/SM
+summitry/M Noun: usually uncountable
+summon/rdS
+summonable
+summons/SGDM
+summum
+Sumner/M
+Sumney/M
+sumo/SM
+sump/SM
+sumpter/MS
+Sumption/M
+sumptuary
+sumptuosity/SM
+sumptuous/YPK
+sumpweed/SM
+Sumter/M
+sun-baked
+sun-dried
+sun-grazing
+sun/DZpMSG2
+Sun/M
+Sunagawa/M
+sunbath/SMR
+sunbathe/SGD
+sunbeam/MS
+sunbed/SM
+sunbelt/SM
+sunbird/SM
+sunbittern/SM
+sunblind/SM
+sunblock/SM
+sunbonnet/MS
+sunbow/SM
+sunburn/MSGD
+sunburnt
+sunburst/SM
+Sunbury-on-Thames/M
+Sunbury/M
+Sunda/M
+sundae/SM
+Sundanese/M
+Sundaram/M
+Sundari/M
+Sunday/MS
+Sundberg/M
+sunder/dS
+Sunderland/M
+sundew/SM
+sundial/SM
+Sundon/M
+sundown/MR
+sundress/SM
+Sundridge/M
+sundrops/M Noun: uncountable
+sundry/SM
+sunfish/MS
+Sunflower/M
+sunflower/SM
+sung/U
+sungazing
+sunglasses
+sunk
+Sunk/M
+sunken
+sunlamp/SM
+Sunland/M
+sunlight/M
+sunlit
+Sunna/M
+Sunni/MS
+Sunningdale/M
+Sunninghill/M
+Sunningwell/M
+Sunnite/MS
+Sunny/M
+sunny/TPY
+Sunnyhills/M
+Sunnynook/M
+Sunnyside/M
+Sunnyvale/M
+Sunrise/M
+sunrise/SM
+sunroof/SM
+sunscreen/SM
+sunseeker/SM
+sunset/SM
+sunshade/SM
+Sunshine/M
+sunshine/ZM
+sunspot/SM
+sunstroke/M
+suntan/DMSG
+suntrap/SM
+sunward/S
+sunwise
+sup/GRSD
+super-dooper
+super/5m
+superable
+superabound/DGS
+superabundance/M Noun: usually uncountable
+superabundant/Y
+superactivity/SM
+superadd/DGS
+superaddition/MS
+superaeon/M
+superalloy/SM
+superaltar/MS
+superannuable
+superannuate/GSDn
+superaqueous
+superb/PY
+superbeing/SM
+superbike/SM
+superbug/SM
+supercalender/SM
+supercalendered
+supercalendering
+supercalifragilistic
+supercalifragilisticexpialidocious/Y
+supercalifragilisticexpialidociousness/M Noun: uncountable
+supercapacitor/SM
+supercar/SM
+supercargo/M
+supercargoes
+supercelestial/M
+supercell/SM
+supercentenarian/SM
+supercentre/SM
+supercharge/GSRD
+superchip/M
+superchurch/SM
+superciliary
+supercilious/YP
+supercity/SM
+superclass/SM
+superclean
+superclub/SM
+supercluster/SM
+supercoil/SDGM
+supercold Adjective
+supercollider/SM
+supercolumniation/MS
+supercomplex/SM
+supercomputer/MS
+supercomputing/M Noun: uncountable
+superconduct/VG
+superconductivity/SM
+superconductor/MS
+superconscious/PY
+supercontinent/SM
+supercontract/SGDN
+supercookie/SM
+supercool/DGS
+supercrescent Adjective
+supercritical
+supercriticality
+superdeterminism/M Noun: uncountable
+superdeterminist/SMW
+superego/MS
+superelevation/SM
+supereminence/SM
+supereminent/Y
+supererogation/SM
+supererogatory Adjective
+superexcellence/M Noun: uncountable
+superexcellent Adjective
+superface/SM
+superfamily/SM
+superfan/SM
+superfast
+superfatted
+superfecundation/M Noun: usually uncountable
+superfemale/SM
+superfetation/SM
+superficial/YP
+superficiality/SM
+SuperFin
+superfine
+superfluid/SM
+superfluidity
+superfluity/MS
+superfluorescent
+superfluous/YP
+superflux/SM
+superfood/SM
+superforce/SM
+superfortress/SM
+superfrontal
+superfruit/SM
+superfusate
+superfuse/SGDN
+supergalactic
+supergalaxy/SM
+supergene/SM
+supergiant/SM
+superglass/MS
+superglue/dS
+superglueing
+supergovernment/SM
+supergranulation/SM
+supergravity/SM
+supergroup/SM
+superheat/DGSr
+superheavy
+superheavyweight/SM
+superhelical
+superhelices
+superhelix
+superhero/M
+superheroes
+superhet/MS
+superheterodyne/SM
+superhighway/SM
+superhot
+superhuman/SMY
+superhumeral/MS
+superimpose/XSGDN
+superimposition/M
+superincumbent/Y
+superinduce/DGS
+superinduction/MS
+superinfection/SM
+superinjunction/SM
+superintelligence/SM
+superintelligent
+superintend/DSG
+superintendence/Z
+superintendency/SM
+superintendent/SM
+superintendentship/MS
+superionic
+Superior/M
+superior/SMY
+superioress/MS
+superiority/SM
+superjacent
+superjet/SM
+superlative/PSY
+superlumial
+superluminal
+superlunary
+supermacho
+supermajority/SM
+supermale/SM
+Superman/M
+supermarket/MS
+supermassive
+supermax/SM
+supermaxilla
+Supermen/M
+supermodel/SM
+supermoon/SM
+supermundane
+supernacular
+supernaculum/MS
+supernal
+supernatant/SM
+supernational
+supernationalism/M Noun: usually uncountable
+supernatural/PY3
+supernaturalism/SM
+supernaturalistic
+supernaturalize/DGS
+supernature/SM
+supernormal
+supernormality/M Noun: usually uncountable
+supernova/SM
+supernovae/M
+supernumerary/SM
+superorder/SM
+superordinal Adjective
+superordinate/SM
+superordination/SM
+superorganic
+superorganism/SM
+superosculate/SGD
+superovulate/SGDN
+superoxide/SM
+superoxygenated
+superoxygenation
+superparamagnetic
+superparamagnetism
+superparasite/W
+superparasitism/M Noun: usually uncountable
+superparticular
+superparticularity
+superpartner/SM
+superperson/O
+superpersonalism
+superpersonality/SM
+superphosphate/SM
+superphylum/M
+superphysical
+superplanetary Adjective
+superplastic/SM
+superplasticity/SM
+superplume/SM
+superplus
+superposability/M Noun: uncountable
+superposable
+superpose/DGNS
+superposition/SM
+superpower/SM
+superpowered
+superprofit/SM
+superproportioned
+superpub/SM
+superpurgation/SM
+superradiance
+superradiant
+superreal
+superrealistic
+superreality/SM
+superregeneration/M Noun: uncountable
+superregenerative
+superregenerator/SM
+superrotation/SM
+supersale/SM
+supersalient Adjective
+supersalt/SM
+supersaturate/GDSn
+supersaurus
+superscalar
+superscribe/DSG
+superscript/GSD
+superscription/SM
+supersede/GSD
+supersedence/MS
+supersedure/MS
+supersell/R
+supersensible
+supersensitive
+supersensitivity/M Noun: uncountable
+supersensory Adjective
+supersensual
+supersensualism/M Noun: uncountable
+supersession/SM
+superset/SM
+supersexual
+supersize/SDG
+supersolid/MS
+supersolidity/MS
+supersonic/YSM
+supersound/SM
+superspace/SM
+superspecies
+superspeed/SM
+superspy/SM
+superstandard Adjective
+superstar/SM
+superstardom/M Noun: uncountable
+superstate/SM
+superstition/SM
+superstitious/YP
+superstore/SM
+superstrata/M
+superstratum/M
+superstring/SM
+superstructure/SMO
+supersubstantial
+supersubtle
+supersubtlety/MS
+supersymmetry/W
+supertanker/MS
+supertax/SM
+supertemporal/M
+superterranean/M
+superterrene Adjective
+superterrestrial Adjective
+supertonic/MS
+supertwist/SM
+superuser/MS
+supervene/SDG
+supervenience/M Noun: usually uncountable
+supervention/MS
+supervillain/SM
+supervise/DNGXS
+supervisee/SM
+supervision/SM
+supervisor/MS
+supervisorship/SM
+supervisory
+supervolcano/SM
+supervolcanoes
+supervoltage/SM
+supervolute Adjective
+superweed/SM
+supinate/SGDN
+supination/MS
+supinator/MS
+supine/PYSM
+supperless
+suppertime
+supplant/GSDr
+supple/LYPT
+supplely
+supplement/GDnO
+supplementary/SM
+suppletion
+suppletive
+suppliant/SM
+supplicant/SM
+supplicate/GDSn
+supplicatory
+supplier/SM
+supply's/c
+supply/ASDGc
+support/vRDkSBGVp
+supportability/SM
+supportable/IU
+supportable/Y
+supposable
+supposal/MS
+suppose/DXKSGN
+supposed/Y
+supposition/M
+suppositious/YP
+suppository/SM
+suppress/NXVGDSb
+suppressant/SM
+suppression/M
+suppressively
+suppressor/SM
+suppurate/DSnG
+supra
+suprabasal
+supraliminal
+supralunar
+supramaxilla
+supramaximal/Y
+supramedial
+supramolecular
+supramundane
+supranational/Y
+supranationalism/M Noun: usually uncountable
+supranationality/M Noun: uncountable
+supranature/O
+supranuclear
+supraoccipital
+supraorbital
+suprarational
+suprarenal
+suprasegmental/SM
+supraspecific
+supratemporal
+supratrochlear
+supravaginal
+supravitally
+supremacism/SM
+supremacy/3MS
+suprematism
+suprematist/SM
+supreme/YP
+supremity/SM
+supremo/MS
+Supt.
+sura/SM
+Surabaya/M
+surah/SM
+suramin/M Noun: uncountable
+surangular/SM
+Surat/M
+Surbiton/M
+surcease/SM
+surcharge/GDSM
+surcingle/MS
+surcoat/SM
+surculose
+surd/SM
+sure-fire
+sure-footed/YP
+sure/TPY
+surer
+surety/SM
+suretyship/MS
+surf/RDMSGZ
+surface-active
+surface-to-air
+surface-to-surface
+surface/RSGMD
+surfactant/SM
+surfboard/MGS
+surfeit/MGSD
+surficial/Y
+surfing/M
+Surfleet/M
+surge/ASDG
+surge/M
+surgeon/SM
+surgery/SM
+surgical/Y
+suricate/SM
+Surinam/M
+Suriname/M
+Surinamese
+suriphobia/M
+surjection/SM
+surjective/Y
+Surlingham/M
+surly/PTY
+Surman/M
+surmise/DGS
+surmount/G7DS
+surmountable/I
+surmullet/MS
+surname/GSDM
+surpass/GkSD
+surplice/MS
+surplus/MS
+surprisal/SM
+surprise/kSMDG
+Surprise/M
+surprising/UY
+surra/M Noun: uncountable
+surreal/PY
+surrealism/MS
+surrealist/W1SM
+surreality/SM
+surrebutter/MS
+surrejoinder/MS
+surrender/Sd
+surreptitious/YP
+Surrey/M
+surrey/MS
+surrogacy/SM
+surrogate/MS
+surrogateship/MS
+surround/DSJG
+Surry/M
+surtax/SM
+Surtees/M
+surtitle/SM
+surtout/SM
+surveillance/MS
+survey/AGSD
+survey/M
+surveyor/SM
+surveyorship/MS
+survivability/SM
+survival/SM3
+survivalism/M Noun: usually uncountable
+survive/BGDS
+survivor/SM
+survivorship/M Noun: usually uncountable
+Surya/M
+Suryavarman/M
+Susan/M
+Susana/M
+Susanna/M
+Susannah/M
+Susanne/M
+Susanville/M
+susceptibility/MSI
+susceptible/SMZ
+susceptive
+susceptivity/SM
+SUSE/M
+Susette/M
+Sushant/M
+sushi/M Noun: usually uncountable
+Susie/M
+suslik/MS
+suspect/GSDM
+suspend/SNDRXGvV
+suspense/M6
+suspensible
+suspension/M
+suspensiveness/M
+suspensory/SM
+suspicion/SM
+suspicious/PY
+suspiration/SM
+suspire/SGD
+Susquehanna/M
+suss/GSD
+Sussex/M
+Sussman/M
+sustain/rlGBLDS
+Sustead/M
+sustenance/SM
+Sustenna/M
+Susumu/M
+susurration/SM
+Sutcliffe/M
+Sutcombe/M
+Sutera/M
+Sutherland/M
+Sutlej/M
+sutler/MS
+sutra/SM
+Sutra/SM
+suttee/SM
+sutteeism/M Noun: uncountable
+Sutter/M
+Sutterby/M
+Sutterfield/M
+Sutterton/M
+Sutton-at-Hone/M
+Sutton-under-Whitestonecliffe/M
+Sutton/MS
+suture/DGMSO
+SUV
+Suva/M
+Suwanee/M
+Suwannee/M
+Suzann/M
+Suzanne/M
+suzerain/SM
+suzerainty/SM
+Suzette/M
+Suzie/M
+Suzuki/M
+Suzy/M
+Svalbard/M
+Svarga/M
+SVCD
+Svedberg/M
+svelte/Y
+Svelto/M
+Sven/M
+Svensson/M
+Sverdlovsk/M
+Svetlana/M
+SVG/M
+SVGA/M Initialism of Super Video Graphics Array
+SVN
+svn
+SW
+swab/SMDG
+Swabia/M
+Swabian/SM
+Swaby/M
+swaddle/DGS
+swaddy/MS
+Swaffham/M
+Swafield/M
+swag/DMGS
+swage/SGD
+swagger/rSdk
+swaggie/MS
+swagman/M
+swagmen/M
+Swahili/MS
+Swain/M
+swain/MS
+Swainby/M
+Swainsthorpe/M
+Swainswick/M
+SWAK
+Swalcliffe/M
+Swale/M
+Swalecliffe/M
+Swales/M
+swallow-tailed
+swallow/DGSR
+Swallow/M
+swallowable
+Swallowcliffe/M
+Swallowfield/M
+swallowtail/MS
+swam
+swami/SM
+Swamigal/M
+Swammerdam/M
+swamp/DGZS2M
+swamphen/SM
+swampland/SM
+Swampscott/M
+swampy/T
+swan/GMSD
+Swan/M
+Swanage/M
+Swanbourne/M
+Swaney/M
+swank/GDTZSz
+swankpot/MS
+swanky/TP
+Swanland/M
+Swanley/M
+swanlike
+Swanmore/M
+Swannanoa/M
+swannery/MS
+Swannington/M
+Swanscombe/M
+Swansea/M
+Swanson/M
+swansong/SM
+Swanton/M
+Swanwick/M
+swap/RSGD
+swappable
+Swarby/M
+sward/MDS
+Swardeston/M
+swarf/SM
+Swarga/M
+Swarkestone/M
+swarm/MDSGr
+Swarraton/M
+swart
+Swarthmore/M
+swarthy/PT
+Swartz/M
+swash/DSG
+swashbuckler/SM
+swashbuckling
+swastika/SM
+swat/SRGD
+Swatara/M
+swatch/MS
+swath/MDGS
+swathe/SM
+Swaton/M
+Swatragh/M
+Swavesey/M
+Sway/M
+sway/SDG
+swayback/DS
+Swayfield/M
+Swayze/M
+Swazi/MS
+Swaziland/M
+swear/RSG
+swearword/MS
+sweat/RZSGMDz
+sweatband/MS
+sweatpants
+sweatshirt/SM
+sweatshop/SM
+sweatsuit/SM
+sweaty/PT
+Swede/MS
+swede/SM
+Sweden/M
+Swedenborg/M
+Swedenborgian/MS
+Swedish
+Sween/M
+Sweeney/M
+sweep/kRSGJ
+sweepback/M
+sweepingness/M
+sweepstake/MS
+sweet-talking
+sweet-tempered
+sweet/PYTS~
+sweetbread/SM
+sweetbrier/SM
+sweetcorn/SM
+sweeten/drS
+sweetened/U
+sweetening/M
+sweetheart/SM
+sweetie/SM
+sweetlip/SM
+Sweetman/M
+sweetmeal/M
+sweetmeat/MS
+sweetshop/SM
+Sweetwater/M
+Swefling/M
+swell/JDGS
+Swell/M
+swelter/Sdk
+Swenson/M
+Swepstone/M
+swept
+sweptback
+Swerford/M
+swerve/DGSp
+swerving/U
+Swettenham/M
+Swift/M
+swift/TYSP
+swiftie/SM
+SwiftKey/M
+swiftlet/MS
+swifty/SM
+swig/MSDGR
+swill/SDG
+Swilland/M
+Swillington/M
+swim/SRG
+Swimbridge/M
+swimfeeder/SM
+swimmeret/MS
+swimming/Y
+swimsuit/MS
+swimwear/M Noun: usually uncountable
+Swinbrook/M
+Swinburne/M
+Swindale/M
+Swinderby/M
+swindle/DRGS
+Swindon/M
+Swine/M
+swine/SM
+Swinefleet/M
+swineherd/SM
+swinery/MS
+Swineshead/M
+Swinethorpe/M
+Swinfen/M
+Swinford/M
+swing/RkZSG
+swingarm/SM
+swingboat/SM
+swingeing/Y
+Swingfield/M
+swingier
+swingiest
+swingle/SGD
+swingletree/SM
+swingman/M
+swingmen/M
+swingometer/SM
+Swinhope/M
+swinish/YP
+swink/DGMS
+Swinney/M
+Swinscoe/M
+Swinstead/M
+Swinton/M
+swipe/DGSMr
+swipple/MS
+swirl/DGYS
+Swirles/M
+swirly/T
+swish/SZDG
+swishier
+Swiss/M
+switch-blade/SM
+switch-over/M
+switch/BDMRGS
+switchback/MS
+switchboard/MS
+switched-on
+switchgear/SM
+switchover/SM
+swither/Sd
+Swithin/M
+Swithland/M
+Swithun/M
+Switzer/M
+Switzerland/M
+swivel/DGSM
+swizz/SM
+swizzle-stick/SM
+swizzle/MGDr
+swollen
+swoon/DSG
+swoop/DGS
+swoosh/DSG
+sword/SmM
+swordfish/SM
+swordlike
+swordplay/M Noun: usually uncountable
+swordsmanship/SM
+swordsmith/SM
+swordtail/SM
+swore
+sworn
+SWOT/M Noun: uncountable
+swot/SGD
+swotty/T
+swum
+swung
+Swyncombe/M
+Swynford/M
+Swynnerton/M
+Swyre/M
+SXGA
+sybarite/SWMw
+sybaritism/SM
+Sybil/M
+Sybille/M
+syboe/MS
+sycamine/MS
+Sycamore/M
+sycamore/SM
+sycophancy/SM
+sycophant/MSW1
+Syd/M
+Syde/M
+Sydenham/M
+Syderstone/M
+Sydling/M
+Sydmonton/M
+Sydney/M
+Syed/M
+syenite/SMW
+Syerston/M
+Sygun/M
+Sykehouse/M
+Sykes/M
+Sylacauga/M
+Syleham/M
+syllabary/SM
+syllabi/M
+syllabify/GSnD
+syllabise/DGS
+syllabize/DGS
+syllable/WSM
+syllabub/SM
+syllabus/SM
+syllogise/DGS
+syllogism/SM
+syllogistic/Y
+sylph-like
+sylph/MS
+sylphlike
+Sylvain/M
+sylvan
+Sylvan/M
+Sylvania/M
+Sylvanus/M
+sylvatic
+Sylvester/M
+Sylvestre/M
+Sylvia/M
+Sylvie/M
+sylvite/SM
+Symantec/M
+Symbian/M
+Symbicort/M
+symbiont/MS
+symbioses
+symbiosis/M
+symbiote/SM
+symbiotic/Y
+symbol/13WQ8-qSwM
+symbolism/SM
+symbology/SM
+Symington/M
+symlink/SGD
+Symmachus/M
+Symmes/M
+symmetrical/U
+symmetry/Q8SWM1w
+Symonds/M
+Symondsbury/M
+Symons/M
+sympathetic/UY
+sympathomimetic
+sympathy/SQ9s8WM
+sympatric/Y
+sympatry/SM
+symphonious
+symphony/SWM3
+symphyseal
+symphyses
+symphysial
+symphysis
+symplast/W
+symplectic
+sympodia/OM
+sympodium/M
+symposia/OM
+symposiast/MS
+symposium/SM
+symptom/MpWS1
+symptomatology/SM
+synaereses
+synaeresis/M
+synaesthesia
+synaesthete/SMW
+Synagis/M
+synagogal
+synagogical
+synagogue/MS
+synanthrope/MS
+synanthropic/Y
+synanthropy/M Noun: uncountable
+synaphobranchid/SM
+synapomorphy/SM
+synapse/WSM
+synapsid/SM
+synapsis
+synaptogenesis
+sync/SDG
+synch
+synchromesh/SM
+synchronic/Y
+synchronicity/SM
+synchronise/CSAGD
+synchronised/U
+synchroniser/CSM
+synchronism/SM
+synchronize/AnDGS
+synchronizer/CSM
+synchronous/Y
+synchrony/89sqQ-
+synchrotron/SM
+syncline/MSO
+syncopal Adjective
+syncopate/GDSn
+syncopator/SM
+syncope/nM
+syncretic
+syncretise/SGDN
+syncretism/SM
+syncretist/SMW
+syncretize/SGDN
+syncytia/OM
+syncytium/M
+syndactyl/YSM
+syndic/nMSO
+syndicalism/SM
+syndicalist/SM
+syndicate/SMDG
+syndrome/SM
+syndromic
+synecdoche/SM
+synecdochic/OY
+synecology/M Noun: usually uncountable
+synergetic
+synergise/SGD
+synergism/SM
+synergist/S1MW
+synergize/SGD
+synergy/MSW
+synesis
+synfuel/SM
+syngamous
+syngamy
+syngenesis
+syngenetic
+Synnott/M
+Synod
+synod/MWwSO
+synoecious
+synonym/SZWM
+synonymity/M Noun: usually uncountable
+synonymous/YP
+synonymy/SM
+synopses
+synopsis/M
+synopsise/SGD
+synopsize/SGD
+Synoptic/SM
+synoptic/SOY
+synostoses
+synostosis/M
+synovial Adjective
+synsacra/M
+synsacrum/SM
+syntactic/YO
+syntactician/MS
+syntagm/SM
+syntagma/SM
+syntagmata/M
+syntagmatic/SY
+syntax/SM
+synth/SMZ
+synthase/SM
+syntheses
+synthesis/rQ9S8dM
+synthesise/ADGS
+synthesist/MS
+synthesize/ADGS
+synthetic/SYO
+synthetize/DGS
+synthpop/M Noun: uncountable
+Synthroid/M
+synthwave/M Noun: uncountable
+syntype/SM
+synzoochore/MSW1
+synzoochorous
+synzoochory/M Noun: uncountable
+syphilis/MS
+syphilitic/SM
+syphilize/DGS
+syphiloid/SM
+syphon/d
+Syracuse/M
+Syrah/SM
+Syre/M
+Syresham/M
+Syria/M
+Syriac/M
+Syrian/MS
+syringe/SMGD
+Syriza/M
+Syro-Arabian/S
+Syro-Phoenician/S
+syrup/SM
+syrupy
+sysadmin/SM
+syscall/SM
+Sysonby/M
+sysop/SM
+systaltic
+system/W1SMp
+systematic/S
+systematise/nRSGD
+systematism/SM
+systematist/SM
+systematize/RSGnD
+systemic/Y
+systemise/SGDnr
+systemize/SGDnr
+systole/WSM
+Syston/M
+Sywell/M
+syzygy/SM
+Szabo/M
+Szandor/M
+Szczecin/M
+Szczepanik/M
+Szechuan/M
+Szeged/M
+Szymanski/M
+Szymon/M
+T
+T'ang
+T's
+T-junction/SM
+T-shaped
+T-shirt/SDM
+t/7k
+Ta/M
+ta/o
+taal/M
+tab/DSZMGp
+Tabano/M
+tabard/MS
+tabaret/SM
+Tabarrok/M
+Tabasco/M
+Tabb/M
+tabbable
+tabbouleh/M Noun: usually uncountable
+tabby/MS
+Taber/M
+tabernacle/DMS
+tabetic
+Tabitha/M
+tabla/MS
+table-top
+table/MSGD
+tableau/SM
+tableaux's
+tablecloth/SM
+tableland/SM
+tablemate/SM
+tablemount/SM
+tablespoon/6SM
+tablespoonful/MS
+tablet/SM
+tabletop/MS
+tableware/SM
+Tabley/M
+tablier/SM
+tabloid/SM
+taboo/DGMS
+tabor/SM
+Tabriz/M
+tabular/Y
+tabulate/SGnD
+tabulator/SM
+tabun/M
+tac/D2ZG
+Tachbrook/M
+tachistoscope/SMW1
+tachocline/SM
+tachograph/SM
+tachometer/SM
+tachycardia/SM
+tachyon/SMW
+tachyphylaxis/M
+tachypnea/M Noun: usually uncountable
+tachypnoea/M Noun: usually uncountable
+tacit/PY
+taciturn/Y
+taciturnity/SM
+Tacitus/M
+tack/SM
+tackle/DRMGS
+Tackley/M
+tacky/TSM
+taco/MS
+Tacolneston/M
+Tacoma/M
+tact/jWM6p1w
+tactfulness/M Noun: usually uncountable
+tactic/MS
+tactician/SM
+tacticity/SM
+tactile/Y
+tactility/SM
+tactless/YP
+tactual/Y
+tad/SM
+Tadcaster/M
+Taddington/M
+Tadeusz/M
+Tadley/M
+Tadlow/M
+Tadman/M
+Tadmarton/M
+tadpole/SM
+taeniodont/SM
+Taf/M
+Taff/MZ
+taffeta/MS
+taffrail/MS
+Taffy/MS
+Taft/M
+tag/GMDSR
+Tagalog/SM
+tagalong/SM
+tagatose/SM
+tagetes
+Tagetes
+tagine/SM
+tagliatelle/SM
+tagma/M
+tagmata/M
+Tahana/M
+Taharoa/M
+tahina/SM
+tahini/SM
+Tahiti/M
+Tahitian/SM
+Tahlequah/M
+Tahoe/M
+tahsil/MS
+Tahunanui/M
+Tai-bach/M
+Taiaroa/M
+Taieri/M
+taiga/SM
+Taihape/M
+Taiki/M
+tail-end/R
+tail/AMCDSG
+Tail/M
+tail/p
+tailback/MS
+tailboard/SM
+tailcoat/SM
+taildragger/SM
+tailgate/SGDMR
+tailing/SM
+tailor-made
+tailor/dSM
+tailoress/MS
+tailpiece/SM
+tailpipe/MS
+tailplane/SM
+tailspin/GSM
+tailspun
+tailstock/SM
+tailwater/SM
+tailwheel/SM
+tailwind/SM
+Tain/M
+Taino/SM
+taint/SGDp
+Taipa-Mangonui/M
+taipan/SM
+Taipei/M
+Taiping/M
+Tairua/M
+Tait/M
+Taitā/M
+Taiwan/M
+Taiwanese/M
+Taiyuan/M
+Taizé/M
+Taj Taj Mahal
+Tajikistan/M
+tajine/SM
+Tajiri/M
+takable
+Takagi/M
+Takahashi/M
+Takaka/M
+Takamatsu/M
+Takanini/M
+Takapu/M
+Takapuna/M
+Takapuwahia/M
+Takaro/M
+Takayanagi/M
+take-home/SM
+take-off/SM
+take-up/SM
+take/RfGSJ
+takeaway/SM
+Takei/M
+Takeley/M
+Takemoto/M
+taken/caAf
+takeover/MS
+taker's/a
+taker/cS
+takes/IacA
+Takeshi/M
+Takeuchi/M
+Takeyuki/M
+taking/Aac
+taking/Y
+takingness/M Noun: uncountable
+Takoma/M
+Tal-y-llyn/M
+Tal/M
+Talach-ddu/M
+talapoin/MS
+Talaton/M
+Talbenny/M
+Talbert/M
+Talbot/M
+talbot/MS
+talc/SM
+talcose Adjective
+Talcott/M
+talcum/SM
+tale/MS
+Taleb/M
+talebearer/MS
+talent/pMDS
+talesman/M
+talesmen/M
+Talgarth/M
+Talhaiarn/M
+Taliaris/M
+Taliban/M
+Taliesin/M
+talionis lex talionis
+talipot/MS
+talisman/WSM
+talk/RDvSuZVG
+talkathon/SM
+talkback/SM
+talkboard/SM
+Talke/M
+talkie/SM
+talky/T
+tall/PT~
+Talladega/M
+tallage/MS
+Tallaght/M
+Tallahassee/M
+Tallahatchie/M
+Talland/M
+Tallapoosa/M
+tallboy/MS
+Talley/M
+Talleyrand/M
+tallier/MS
+Tallington/M
+Tallinn/M
+Tallis/M
+Tallmadge/M
+Tallon/M
+tallow/ZSM
+Tallulah/M
+tally-ho/SM
+tally/DSGM
+Tally/M
+tallyman/M
+tallymen/M
+Talmage/M
+Talmine/M
+Talmud/M3Ww
+talon/MS
+taloned
+talonid/SM
+talose/M Noun: uncountable
+Talsarnau/M
+Talton/M
+talus/SM
+Talut/M
+Talybont-on-Usk/M
+Talybont/M
+Tam/MS
+Tama/M
+Tamaddon/M
+Tamaki/M
+tamale/MS
+Tamar/M
+Tamara/M
+Tamarac/M
+tamarack/MS
+Tamarau/M
+tamarin/SM
+tamarind/SM
+tamarisk/SM
+Tamás/M
+tamasha/SM
+tambourine/MS
+Tambov/M
+tame/RTGDYS7P
+tameability/M Noun: uncountable
+Tamerton/M
+Tameside/M
+Tami/M
+Tamiflu/M
+Tamil/SM
+Tamilian/MS
+Tamlaght/M
+Tammany/M
+Tammaru/M
+Tammie/M
+Tammy/M
+tammy/MS
+Tamnamore/M
+tamoxifen/M Noun: usually uncountable
+tamp/DGS
+Tampa/M
+Tampax/M
+tamper/rdS
+Tampere/M
+Tampico/M
+tampion/MS
+tampon/dMS
+tamponade/SM
+tamsulosin/M Noun: usually uncountable
+Tamworth/MS
+tan/SMJDRyG
+tanager/SM
+Tanagra/M
+Tanaka/M
+Tanakh/M
+Tananarive/M
+Tanar/M
+tanbark/SM
+Tancredi/M
+tandem/MS
+tandoor/SM
+tandoori/SM
+Tandragee/M
+Tandridge/M
+Tandy/M
+Tanenbaum/M
+Taney/M
+Tanfield/M
+tang/SbZMY
+Tanganyika/M
+tangelo/MS
+tangency/SM
+tangent/MS
+tangential/Y
+tangerine/MS
+tangibility/SIM
+tangible/IYS
+tangibleness/M Noun: uncountable
+tangibly/I
+Tangier/MS
+Tangipahoa/M
+Tangiteroria/M
+tangle/DSUG
+tangle/M
+Tangley/M
+tanglier
+tangliest
+Tangmere/M
+tango/SGMD
+Tangowahine/M
+tangram/MS
+tangy/TP
+Tanhouse/M
+Tania/M
+tanist/MS
+tanistry/M Noun: usually uncountable
+taniwha/SM
+Tanja/M
+tank/GMR6DS
+tankage
+tankard/SM
+tankbuster/SM
+Tankersley/M
+tankette/SM
+tankful/SM
+tankini/SM
+tankodrome/SM
+Tannadice/M
+Tannahill/M
+Tannen/M
+Tannenbaum/M
+tannery/SM
+Tannhäuser/M
+tannic
+tannin/SM
+tanning/M
+Tannington/M
+Tannock/M
+tannoy/SGDM
+tans/Z
+Tansley/M
+Tansor/M
+tansy/MS
+tantalise/k
+tantalize/k
+tantalocene/M
+tantalum/sQ-98qM
+Tantalus/M
+tantamount/SM
+Tanterton/M
+tantra/SMW
+tantrism/M Noun: uncountable
+tantrist/MS
+tantrum/SM
+Tanur/M
+Tanworth/M
+Tanya/M
+Tanzania/M
+Tanzanian/SM
+Tao/M
+Taoiseach/M
+Taoism/MS
+Taoist/SWM
+Taos/M
+tap-dance/G
+tap/drRDMGSp
+Tapanui/M
+tapas/M Noun: uncountable
+Tapawera/M
+tape-record/G
+tape/Sp7M
+tapelike
+taper/d
+tapestry/SMD
+tapeta/MO
+tapetum/M
+tapeworm/MS
+taphonomist/SM
+taphonomy/SMW
+tapioca/SM
+tapir/SM
+tapiroid/MS
+Taplow/M
+Tapora/M
+tappable
+Tappenden/M
+tappet/SM
+taproom/MS
+taproot/SM
+tapster/SM
+tapu
+Tapu/M
+tar/DMZGS
+Tara/MS
+Taradale/M
+taradiddle/MS
+tarakihi/MS
+taramasalata/M Noun: usually uncountable
+Taranaki/M
+tarantass/SM
+tarantella/SM
+tarantelle/MS
+Tarantino/M
+tarantism/M Noun: usually uncountable
+Taranto/M
+tarantula/SM
+Tararua/M
+Tarascan/SM
+Tarawa/M
+tarball/SM
+Tarbat/M
+Tarbell/M
+Tarbert/M
+Tarbolton/M
+tarboosh/SM
+Tarboro/M
+tarbrush/SM!
+Tarceva/M
+Tarcisio/M
+Tardebigge/M
+Tardenoisian
+Tardigrada/M
+tardigrade/SM
+tardive/Y
+Tardon/M
+tardy/TYP
+tardyon/SM
+tare/SM
+Taree/M
+Tarell/M
+Tarff/M
+target/dSMGDp
+Targum/SM
+tariff/MGDS
+Tarland/M
+tarlatan/SM
+Tarleton/M
+tarmac/DGSM
+tarmacadam/SM
+tarn/MS
+tarnish/G7DS
+taro/SM
+tarot/SM
+tarpan/MS
+tarpaulin/SM
+Tarpeian
+tarpit/SGDM
+Tarpon/M
+tarpon/SM
+Tarporley/M
+Tarqeq/M
+Tarquinia/M
+tarradiddle/MS
+tarragon/MS
+Tarragona
+Tarrant/M
+tarriness/M Noun: uncountable
+Tarring/M
+Tarrington/M
+tarry/DTSG
+Tarrytown/M
+tarsal/SM
+tarsi/M
+tarsier/SM
+tarsometatarsal
+tarsometatarsi/M
+tarsometatarsus/M
+tarsus/M
+tart/SMYPTGD
+Tartaglia/M
+tartan/MS
+tartanry/M Noun: uncountable
+Tartar/MS
+tartar/SMW
+Tartaraghan/M
+tartare
+Tartarean/SM
+Tartarian
+Tartarus/M
+Tartary/M
+tartlet/SM
+tartrate/SM
+Tartuffe/MS
+tarty/TYP
+Tarves/M
+Tarvin/M
+Tarvit/M
+Tarvos/M
+tarweed/SM
+Taryn/M
+Tarzan/M
+Tasburgh/M
+taser/SdM
+Tash/M
+Tashi
+Tashkent/M
+task/SDMG
+taskbar/SM
+taskforce/SM
+taskmaster/MS
+taskmistress/MS
+Tasley/M
+Tasman/M
+Tasmania/M
+Tasmanian/SM
+Tass/M
+tass/MS
+tassel/GMDS
+tasseography/M Noun: uncountable
+tassie/MS
+taste/D
+taste/EM6jS
+tasteable
+tasteful/EP
+tasteless/PY
+taster/SM
+tasting/SM
+tasto/MS
+tasty/TPY
+tat/rSGDR
+tatami/SM
+Tatar/SM
+Tatarstan/M
+Tate/M
+Tatenhill/M
+Tatham/M
+Tathwell/M
+Tatiana/M
+Tatoeba/M
+Tatsfield/M
+Tattenhall/M
+Tattenhoe/M
+tatterdemalion/MS
+tattered
+Tatterford/M
+Tattersall/M
+Tattersett/M
+Tattershall/M
+tattery
+Tattingstone/M
+tattle/DRSG
+Tattnall/M
+Tatton/M
+tattoo/RGSMD
+tattooist/SM
+tatty/TYP
+Tatum/M
+Tatworth/M
+tau/M
+taught/AU
+Tauhoa/M
+Taumarunui/M
+taunt/kRGDSM
+Taunton/M
+tauon/SM
+tauonia/W
+tauonium/S
+Taupaki/M
+taupe/SM
+Taupo/M
+Tauranga/M
+Tauraroa/M
+Taurean/SM
+Tauri Zeta Tauri
+Taurid/SM
+taurine/M Noun: uncountable
+tauromachy/MS
+Taurua/M
+Taurus/M
+taus
+taut/TYP
+tauten/dS
+tautochrone/MS
+tautochronism/M
+tautochronous
+tautog/MS
+tautologist/MS
+tautologize/DGS
+tautologous/Y
+tautology/w1SMW
+tautomer/MSW
+tautomerism/MS
+tautophony/SMw
+Tautoro/M
+Tavares/M
+Taverham/M
+tavern/SM
+taverna/SM
+Taverner/M
+Tavistock/M
+Tavy/M
+taw/SGDMr
+Tawa/M
+tawdry/PTY
+Tawe/M
+Tawney/M
+tawniness/M Noun: uncountable
+tawny/TM
+tawse/MS
+Tawstock/M
+Tawton/M
+tax-deductible
+tax-free
+tax/rD7GJMnlkSp
+taxa/M Plural of taxon
+taxable/SM
+Taxal/M
+taxi/DSGM
+taxicab/MS
+taxidermal
+taxidermic/Y
+taxidermy/3SM
+taxies
+Taxil/M
+taximeter/SM
+taxiway/MS
+taxman/M
+taxmen/M
+taxon/M
+taxonomy/13wWSM
+taxpayer/MS
+taxpaying Adjective
+Tay/M
+Taylor/M
+Taylorsville/M
+Taylorville/M
+Taynton/M
+Tayport/M
+Tayside/M
+Tayvallich/M
+Tazewell/M
+tazza/MS
+Tb
+TBA/SM
+Tbilisi/M
+Tbit/S
+TBW
+Tc
+Tchaikovsky/M
+TCO/SM
+TCP/M
+TDD/SM
+Te/M
+tea-leaf/M
+tea-leaves
+tea/SM
+teabag/SM
+teacake/SM
+teach-in
+teach/RGSJ7
+teachability/M Noun: uncountable
+teachableness/M Noun: usually uncountable
+teacherly
+teaching/SM
+teacloth/SM
+teacup/6SM
+teacupful/SM
+Teagarden/M
+teahouse/SM
+teak/MS
+teal/SM
+Tealby/M
+Tealing/M
+team/MDGS
+teammate/SM
+teamster/SM
+teamwork/M Noun: uncountable
+Teaneck/M
+teapot/SM
+teapoy/MS
+tear-gas/GD
+tear-jerker/SM
+tear-off
+tear-stained
+tear/6pMGSj
+tearaway/SM
+teardrop/SM
+tearfulness/M Noun: usually uncountable
+tearjerker/SM
+tearless/YP
+tearoom/MS
+teary/T
+teas/RSDkG
+tease
+teasel/MS
+teashop/MS
+teaspoon/6MS
+teaspoonful/MS
+teat/MS
+Teath/M
+teatime/SM
+teazel/SM
+teazle/SM
+Tebay/M
+tebibit/SM
+tebibyte/SM
+Tebow/M
+tec/MS
+Tecfidera/M
+tech/ZM
+techie/SM
+techné/M
+technê/M
+techne/M Noun: uncountable
+technetium/M
+technetocene
+technetronic
+technic/MS
+technica/MS
+technical/YS
+technicality/SM
+technicalness/M
+technician/SM
+technicise/SGD
+technicist/MS
+technicity/SM
+technicize/SGD
+technicology/SM
+technicolour/D
+technicum
+technify/SGDn
+technikum
+technique/SM
+techno/M Noun: uncountable
+technobabble/M Noun: uncountable
+technocentric
+technocomplex/SM
+technocracy/SM
+technocrat/WSM1
+technodiversity/M
+technofear/M Noun: usually uncountable
+technofossil/MS
+technofreak/SM
+technographer/SM
+technography/M Noun: uncountable
+technologism/M
+technology/3wSM1
+technomania/M Noun: uncountable
+technomaniac/SM
+technomic
+technopark/SM
+technophile/SM
+technophilia/WM
+technophobe/SM
+technophobia/WSM
+technopolis
+technopolitan
+technopreneur/OSM
+technoscience/M Noun: uncountable
+technoscientist/M
+technosignature/SM
+technospeak/M Noun: uncountable
+technosphere/SM
+technostress
+technostructure/SM
+technotronic
+techs
+techspeak/M Noun: uncountable
+Teck/M
+tectonic/YS
+tectonophysics/M Noun: uncountable
+tectonostratigraphic
+tectorial
+Tecumseh/M
+Ted/M
+Tedburn/M
+Teddesley/M
+Teddington/M
+teddy/MS
+Teder/M
+tedious/YP
+tedium/M Noun: usually uncountable
+Tedros/M
+Tedston/M
+Tedstone/M
+tee-heed
+tee/SGdM
+teem/DGSr
+Teemore/M
+teen/SZM
+teenage/RDM
+teensy-weensy
+teensy/T
+teeny-bopper/MS
+teeny-weeny
+teeny/T
+teenybop/M Noun: uncountable
+teenybopper/SM
+teepee/MS
+Tees/M
+Teesdale/M
+Teesside/M
+teeter/dSM
+teeth/DGM
+teethe
+teetotal/RSM
+teetotalism/MS
+teetotum/SM
+Teffont/M
+tefillin/M
+TEFL/M Initialism of teaching English as a foreign language
+Teflon/M
+tegmenta/M
+tegmentum/M
+Tegretol/M
+Tegucigalpa/M
+tegument/OSM
+tegumentary
+Tehachapi/M
+Tehama/M
+Teheran/M
+Tehran/M
+teichoic
+teicoplanin/SM
+Teifi/M
+Teigh/M
+Teignbridge/M
+Teigngrace/M
+Teignhead/M
+Teignmouth/M
+Teijin/M
+Teilhard/M
+TEirtza/M
+Teixeira/M
+Tekesta/M
+tektite/MS
+Tektronix/M
+Tel.
+Telangana/M
+telco/SM
+Tele-Computer
+telecast/RSG
+Telecom/M
+telecom/SM
+telecommunicate/n
+telecommute/SRGD
+telecomputer/SM
+telecomputing/M Noun: uncountable
+teleconference/GMDS
+telecourse/SM
+teledildonics
+Teledyne/M
+telefacsimile/SM
+telefax/SM
+telefilm/SM
+Telefonica/M
+Telefunken/M
+telegenic
+telegram/SGDM
+telegrammatic
+telegraph/WZD1GSM3R
+telegraphese/M Noun: uncountable
+telegraphy/3M
+telekinesis/M
+telekinetic
+Telemann/M
+telemanometer/SM
+telemark/G
+telemarketer/SM
+telemarketing/M Noun: uncountable
+telematic/S
+telemedicine/M Noun: uncountable
+telemeter/WSM
+telemetry/MS
+telencephalon/SM
+teleologism/SM
+teleology/SwM3
+teleoperate/GDN
+teleoperator/SM
+teleost/SM
+telepath/SMGDW
+telepathize/SGD
+telepathy/Q3S1M
+telephone/G3ZMSDW
+telephony/M Noun: usually uncountable
+telephoto/SM
+telephotography/M Noun: uncountable
+teleplay/SM
+teleport/GSDMnr
+telepresence/M Noun: usually uncountable
+teleprinter/SM
+teleprocessing/M Noun: uncountable
+telerecord/DGS
+telerecording/SM
+telesales/M Noun: uncountable
+telescope/MGS1DW
+Telescopium/M
+telescopy/SM
+telescreen/SM
+Telesto/M
+telesurgeon/SM
+telesurgery/SM
+teletalkie/M
+teleteaching/M Noun: uncountable
+teletext/M Noun: uncountable
+teletheatre/M
+teletherapy/SM
+telethermometer/SM
+telethermometry/M Noun: uncountable
+telethon/MS
+teletraffic/M Noun: uncountable
+teletransport/SGDN
+Teletype/MS
+teletype/SGDM
+televangelism/M Noun: uncountable
+televangelist/SM
+televiewer/SM
+televiewing/M
+televise/DSXNG
+television/SM
+televisionary/SM
+televisor/SM
+televisual/Y
+telework/GR
+telex/SDGM
+Telfair/M
+Telfer/M
+Telford/M
+telithromycin/M Noun: uncountable
+tell-tale/SM
+tell/RYkGS
+tellable
+Teller/M
+Tellisford/M
+telltale/SM
+telluric
+Telluride/M
+telluride/SM
+tellurium/M
+tellurous Adjective
+Tellus/M
+telly/MS
+Telmo/M
+telnet/SGDB
+telnetable
+telogen/SM
+telomerase/SM
+telomere/SMW
+telophase/SM
+Telscombe/M
+telson/SMW
+Telstar/M
+Telugu/MS
+temazepam/SM
+Teme/M
+Temecula/M
+temerarious/P
+temerity/SM
+temerous/Y
+Temin/M
+Témiscaming/M
+Témiscouata-sur-le-Lac/M
+Témiscouata/M
+Temiskaming/M
+temp/GMRSTD
+Tempe/M
+Tempel/M
+temper/dESM
+tempera/MLS
+temperament/Oo
+temperance/MI
+temperate/IY
+temperateness/M Noun: uncountable
+temperature/MS
+tempest/SM
+tempestuous/YP
+tempi/M
+Templar/SM
+template/DGM
+template/FS
+Temple/M
+temple/MS
+Templecombe/M
+Templehall/M
+Templepatrick/M
+Templeton/M
+tempo/SM
+temporal/Y
+temporalis
+temporality/SM
+temporariness/M Noun: usually uncountable
+temporary/FS
+temporary/Y
+temporise/DSkRGn
+temporize/DSkRGn
+Tempsford/M
+tempt/SRnGDk
+temptress/SM
+tempura/SM
+Temuka/M
+ten-year
+ten/lSHg7M
+tenability/SM
+tenace/SM
+tenacious/YP
+tenacity/SM
+Tenafly/M
+tenancy/SM
+Tenandry/M
+tenant/DSGMp
+tenantry/SM
+Tenbury/M
+Tenby/M
+Tencent/M
+tench/M
+tend/FRKSIGD
+tended/EU
+tendency/SM
+tendentious/PY
+tender-hearted/YP
+tender/PdQ8Ys9
+tenderer
+tenderest
+tenderfoot/MS
+tenderheartedness/M Noun: usually uncountable
+tenderloin/SM
+tenderpreneur/SM
+tendinitis
+tendinopathy/SM
+tendinosis/M Noun: uncountable
+tendinous
+tendon/SM
+tendonitis
+tendonosis
+tendril/MS
+Tendring/M
+Tène/M
+Tenebrae/M
+tenebrionid/SM
+tenebrism/M Noun: uncountable
+tenebrist
+tenebrosity/M Noun: uncountable
+tenebrous
+tenement/SM
+Tenerife/M
+tenesmus/SM
+tenet/SM
+TENEX/M
+Tenison/M
+Tennant/M
+Tenneco/M
+tenner/SM
+Tennessean/SM
+Tennessee/SM
+tennessine/M Noun: uncountable
+Tenniel/M
+tennis/M
+Tennyson/M
+Tennysonian/SM
+tenofovir/M Noun: uncountable
+tenon/SM
+tenor/SM
+tenosynovitis
+tenotomy/SM
+tenpin/SM
+tenrec/MS
+tens/xNTSDXG
+tense/YIT
+tenseless/Y
+tenseness/SM
+tensile/Y
+tensility/SM
+tensiometer/SM
+tension/DGp
+tension/KMS
+tensioner/SM
+tensity/M Noun: usually uncountable
+tensive Adjective
+tensor/SMO
+tent/DFMGS
+tentacle/DSM
+tentacular
+tentaculate
+tentative/YP
+tenter/SMd
+Tenterden/M
+tenterhook/MS
+tenth/Y
+tenuous/YP
+tenure/MSD
+tepee/MS
+tephrite/WSM
+tephrochronology/M Noun: uncountable
+tepid/YP
+tepidaria/M
+tepidarium/M
+tepidity/S
+tequila/MS
+terabit/SM
+terabyte/SM
+teraflop/SM
+terahertz
+terapascal
+terapixel/SM
+terascale
+terasecond/SM
+teratogen/SMW
+teratogenicity/SM
+teratological/Y
+teratologist/SM
+teratology/MS
+terawatt/SM
+terazosin/M Noun: uncountable
+terbium/M Noun: uncountable
+terbocene
+tercel/SM
+Tercena/M
+tercentenary/SM
+tercentennial/SM
+tercet/SM
+terdentate
+terdentative
+terebinth/SM
+terebratulid/SM
+teredo/SM
+Terek/M
+Terence/M
+Teresa/M
+terete Adjective
+terga/OM
+tergite/SM
+tergiversant/SM
+tergiversate/SGDn
+tergiversator/SMZ
+tergum/M
+Teri/M
+teriyaki/SM
+Terling/M
+term-time
+term/pMSDGY
+Termagant/M
+termagant/SM
+terminable/I
+terminal/SYM
+terminate/CSn
+terminate/DG
+terminator/SM
+termini/M
+terminologist/MS
+terminology/SMw1
+terminus/M
+termism
+termite/SM
+Tern/M
+tern/SM
+ternary/SM
+terotechnology/w3M
+terpene/SM
+terpolymer/SM
+Terpsichore/M
+Terpsichorean
+terpsichorean/SM
+Terra/M
+terrace/GSMD
+Terrace/M
+terracotta/M Noun: usually uncountable
+terraform/SGDR
+terrain/SM
+Terrance/M
+terrane/SM
+terrapin/MS
+terrarium/SM
+terrazzo/SM
+Terre/M
+Terrebonne/M
+Terregles/M
+Terrell/M
+Terrence/M
+terreplein/SM
+terrestrial/YSM
+Terri/M
+Terriberry/M
+terrible/YP
+Terrie/M
+Terrien/M
+terrify/1SWGDk
+terrigenous
+Terrill/M
+terrine/MS
+Terrington/M
+Terrio/M
+territoriality/SM
+territory/MSoO
+terroir/SM
+terror-stricken
+terror/qs9Q83-SMp
+terrorism/M Noun: usually uncountable
+terrorist/W1
+Terry/M
+terry/SRM
+terse/TYP
+tertian/SM
+Tertiary
+tertiary/SMY
+Tertullian/M
+Terwick/M
+Terylene/M
+terzetti/M
+terzetto/SM
+Tesco/M
+TESL/M Initialism of teaching English as a second language
+Tesla/M
+tesla/M
+TESOL/M Acronym of teaching English to speakers of other languages
+Tessa/M
+tessellate/DGSn
+tessera/OM
+tesseract/SM
+tesserae/M
+tessitura/M
+test's/F
+test-drive/G
+test-tube
+test/KFDCGSA
+testability/SM
+testable
+testament/MS
+testamentary
+testate/I
+testator/SM
+testatrices
+testatrix/SM
+testcase/SM
+teste/SM
+testee/SM
+tester/FSCM
+Testerton/M
+testicle/MS
+testicular
+testiculate
+testify/RDSG
+testimonial/MS
+testimony/MS
+testis/M
+Teston/M
+testosterone/SM
+testy/TYP
+tetanic/Y
+tetanuran/SM
+tetanus/M
+tetany/MS
+Tetbury/M
+tetchy/TY
+Tetcott/M
+tête
+tete
+tête-à-tête
+tête-bêche
+Tetford/M
+tether/dMS
+Tethys/M
+Tetney/M
+Teton/M
+tetra/SM
+tetrabasic
+tetrabasicity/M Noun: uncountable
+tetracaine/SM
+tetracarbonyl/SMW
+tetracarboxyl/MW
+tetrachloride/SM
+tetrachord/SM
+tetracontanoic
+tetracosanoic
+tetracyclic/SM
+tetracycline/MS
+tetrad/SM
+tetradactyl/SM
+tetradactylous
+tetradecanoic
+tetradentate
+tetradentative
+tetrafluoride/SM
+tetrafluoroethylene/SM
+tetragon/oOMS
+Tetragrammaton/M
+tetrahedra/OoM
+tetrahedrite/SM
+tetrahedron/SM
+tetrahydrocannabinol/SM
+tetralogy/SM
+tetramer/SMW
+tetramerous
+tetrameter/MS
+tetramethylene/MS
+tetraplegia/SM
+tetraplegic/SM
+tetraploid/SMZ
+tetrapod/OSM
+Tetrapoda Taxonomic superclass
+tetraquark/SM
+tetrarch/M
+tetrarchs
+Tetrarchy/M
+tetrastich/M
+tetrastichs
+tetrastyle/SM
+tetrasyllable/SMW
+tetrathlon/SM
+tetratomic
+tetratriacontanoic
+tetravalent
+tetrode/SM
+tetrose/SM
+tetroxide/MS
+Tetsu/M
+Tetsworth/M
+Tett/M
+Tettenhall/M
+tetter/MS
+Tetworth/M
+Teuton/WMS
+Teutonicism/MS
+Teversal/M
+Teversham/M
+Teviot/M
+Teviothead/M
+Tew/M
+Tewahedo
+Tewin/M
+Tewkesbury/M
+Tewksbury/M
+TeX/M
+Tex/M
+Texaco/M
+Texan/SM
+Texarkana/M
+Texas/M
+TeXstudio/M
+text/pRGDKSFM
+textbook/MS
+textbox/SM
+textile/SM
+Textron/M
+textspeak/M Noun: uncountable
+textual/FY
+textualism/SM
+textualist/SM
+texture/SMOoDGp
+Tey/M
+Teynham/M
+TGV/SM
+tgz
+Th
+Thackeray/M
+Thackery/M
+Thad/M
+Thaddeus/M
+Thai/SM
+Thailand/M
+Thain/M
+Thakeham/M
+thalami/WM
+thalamus/M
+Thalassa/M
+thalassaemia/SM
+thalassic
+thalassotherapy/SM
+thaler/MS
+Thales/M
+thali/SM
+thalidomide/SM
+thalli/M
+thallic Adjective
+thallium/SM
+thallocene
+thalloid Adjective
+thallophyte/MS
+thallous Adjective
+thallus/M
+thalweg/MS
+Thame/M
+Thames/M
+Thamesdown/M
+Thameslink/M
+Thamm/M
+than
+thanatognomonic
+thanatology/w3M
+thanatophobia/M Noun: uncountable
+thanatopsis/M
+Thanatos/M
+thanatosis/M Noun: usually uncountable
+thandai/M Noun: uncountable
+thane/SM
+Thanet/M
+Thangam/M
+Thanington/M
+thank/D6jGpS
+thankfulness/M Noun: usually uncountable
+thankless/Y
+thanklessness/M Noun: uncountable
+Thanksgiving
+thanksgiving/MS
+Thant/M
+Thapar/M
+Tharakan/M
+Tharp/M
+Tharston/M
+Thassi/M
+that'd
+that'll
+that've
+that/M
+thatch/MRDSG
+Thatcham/M
+Thatcher/M
+Thatcherite/M
+thatching/SM
+thaumasite/M
+thaumatrope/MS
+thaumaturge/MS3WZw
+thaw/DGSp
+Thaxted/M
+Thayer/M
+Thayne/M
+THC/M Noun: uncountable
+the/JG
+The/M
+Theadora/M
+Theaetetus/M
+Theakston/M
+Theale/M
+theanthropic
+thearchy/MS
+theatre/S1Mw
+theatregoer/MS
+theatregoing
+theatrical/SM
+theatricality/MS
+theatrics
+Theban/MS
+Thebe/M
+Theberton/M
+Thebes/M
+theca/M
+thecae/M
+thecate
+thecodont/MS
+Theddingworth/M
+Theddlethorpe/M
+thee
+theft/MS
+Theia/M
+their/S
+theism/MS
+Theissen/M
+theist/MWS
+Thelbridge/M
+Thelema/M
+Thelemic/Y
+Thelemite/SM
+Thelma/M
+Thelnetham/M
+Thelverton/M
+Thelwall/M
+them/W1
+thematic/SM
+thematise/SGDN
+thematize/SGDN
+theme/MSDG
+Themelthorpe/M
+Themisto/M
+Themistocles/M
+themself
+themselves
+then
+thenar/SM
+thence
+thenceforth
+thenceforward
+Thenford/M
+Theo/M
+theobromine/SM
+theocentric
+Theocracy/M
+theocracy/SM
+theocratic
+theodicean
+theodicy/SM
+theodolite/SM
+Theodor/M
+Theodora/M
+Theodore/M
+Theodoret/M
+Theodoric/M
+Theodosia/M
+Theodosius/M
+theogony/SM
+theologian/MS
+theologise/SGD
+theologist/SM
+theologize/SGD
+theology/Sw1M
+theophany/SM
+Theophilus/M
+theophoric
+theophorous
+Theophrastus/M
+theophylline/M Noun: uncountable
+theorbo/SM
+theorem/SM
+theoretic/YO
+theoretician/SM
+theoreticism/M
+theoreticist
+theory/Qs-89q3MS
+theorycraft/SGDMr
+theosophy/w3WSM
+therapeutic/YSMO
+therapeutist/SM
+therapsid/SM
+therapy/SM3
+Theravada/M
+Theravadin/M
+there'd
+there'll
+there're
+there've
+there/M
+thereabout/S
+thereafter
+thereat
+thereby
+therefore
+therefrom
+therein
+theremin/SM
+thereof
+thereon
+Theresa/M
+Thérèse-De/M
+Therese/M
+thereto
+theretofore
+thereunder
+thereunto
+thereupon
+therewith
+Therfield/M
+Theria Taxonomic subclass
+therian/SM
+therianthrope/MS
+therianthropic/Y
+therianthropy/M
+Thériault/M
+Theriault/M
+Therion/M
+therizinosaur/SM
+therizinosaurid/SM
+therm/oSMW
+thermal/SM
+thermionic/S
+thermistor/SM
+thermite/SM
+thermoacidophilic
+thermochemical
+thermochemistry/M Noun: uncountable
+thermochronology/M Noun: uncountable
+thermocouple/SM
+thermodynamic/SY
+thermoelastic
+thermoelectric
+thermoformed
+thermoforming
+thermogenesis/M Noun: uncountable
+thermogram/SM
+thermograph/SM
+thermography/SMW
+thermohaline/SM
+thermolabile
+thermoluminescence/SM
+thermolyses
+thermolysis/M
+thermometer/SMW
+thermometry/M Noun: uncountable
+thermonuclear
+thermophile/SMW
+thermophotovoltaic/S
+thermopile/MS
+thermoplastic/S
+Thermopylae/M
+thermoregulate/SGDN
+thermoregulatory
+thermoresistance/SM
+thermoresistant
+Thermos/MS
+thermos/SM
+thermoset/GSM
+thermosphere/SM
+thermostability/SM
+thermostable
+thermostat/1MSW
+thermostatics/M Noun: uncountable
+thermotherapy/SM
+Theron/M
+theropod/SM
+Theropoda Taxonomic suborder
+theropodan/SM
+thesauri/M
+thesaurus/SM
+these/S
+Theseus/M
+thesis/M
+Thespian/SM
+Thessalian/SM
+Thessalonian/SM
+Thessalonica/M
+Thessaly/M
+theta/MS
+Thetford/M
+theurgic/O
+theurgy/SM3
+Thewlis/M
+they
+they'd
+they'll
+they're
+they've
+Theydon/M
+thiamin/M Noun: uncountable
+thiamine/M Noun: uncountable
+thiazide/SM
+Thibodaux/M
+thick-skinned
+thick/YPT~
+thicken/Sdr
+thickening/M
+thicket/MS
+thickhead/SM
+thickheaded/P
+thicknesser/SM
+thicko/SM
+thickset/SM
+Thiebaud/M
+thief/M
+Thielman/M
+Thiensville/M
+Thiepval/M
+Thierry/M
+thieve/GyDS
+thievery/SM
+thievish/YP
+thigh-bone/MS
+thigh/MS
+thimble/6MS
+thimbleberry/SM
+Thimbleby/M
+thimbleful/MS
+Thimphu/M
+thin/TDRGPYSM
+thine
+thing/SM
+thingamabob/MS
+thingamajig/SM
+thingummy/SM
+thingummybob/SM
+thingy/SM
+think-tank/SM
+think/RJ7GS
+thinnish
+Thinsulate/M
+thiodiglycol/SM
+thiohydroxamic
+thiol/SM
+third-class
+third-hand
+third-party
+third-rate
+third/Y
+Thirkleby/M
+Thirlby/M
+Thirn/M
+Thirsk/M
+thirst/2SMzGDZ
+thirsty/T
+thirteen/HM
+thirty-eight/H
+thirty-first/S
+thirty-five/H
+thirty-four/H
+thirty-nine/H
+thirty-one
+thirty-onefold
+thirty-second/S
+thirty-seven/H
+thirty-six/H
+thirty-three/H
+thirty-two
+thirty-twofold
+thirty/HMS
+thirtysomething/SM
+Thiruvananthapuram/M
+this
+this'd
+this'll
+Thiselton/M
+thistle/MS
+thistledown/M Noun: usually uncountable
+thither
+Thixendale/M
+Thoburn/M
+Thockrington/M
+thole/M
+tholeiitic
+tholin/SM
+Thollon/M
+Tholos/M
+Tholthorpe/M
+Thom/M
+Thomas/M
+Thomasville/M
+Thomaz/M
+Thomism/M
+Thomist/WSw
+Thomley/M
+Thompson-Nicola/M
+Thompson/M
+Thomsen/M
+Thomson/M
+Thonby/M
+thong/MSD
+Thonock/M
+Thor/M
+thoracic/SM
+Thoralby/M
+thorax/MS
+Thore/M
+Thoreau/M
+Thoresthorpe/M
+Thoresway/M
+Thorganby/M
+Thorington/M
+thorium/M Noun: uncountable
+Thorlby/M
+Thorley/M
+Thormanby/M
+thorn/DpM2ZS
+Thorn/M
+Thornaby-on-Tees/M
+Thornaby/M
+Thornage/M
+Thornborough/M
+Thornbrough/M
+Thornbury/M
+Thornby/M
+Thorncombe/M
+Thorndike/M
+Thorndon/M
+Thorne/M
+Thorner/M
+Thorney/M
+Thorneyburn/M
+Thornfalcon/M
+Thornford/M
+Thorngumbald/M
+Thornham/M
+Thornhaugh/M
+Thornhill/M
+Thornley-with-Wheatley/M
+Thornlie/M
+Thornliebank/M
+thornlike
+thornproof
+Thornthwaite/M
+Thornton-le-Beans/M
+Thornton-le-Clay/M
+Thornton-le-Dale/M
+Thornton-le-Moor/M
+Thornton-le-Moors/M
+Thornton-le-Street/M
+Thornton-on-the-Hill/M
+Thornton/M
+Thornville/M
+thorny/T
+thorocene
+Thorold/M
+thoron/M Noun: uncountable
+Thoroton/M
+thorough/YP
+thoroughbred/SM
+thoroughfare/MS
+thoroughgoing
+thoroughwort/SM
+Thorp/M
+Thorpe-in-Balne/M
+Thorpe-le-Soken/M
+Thorpe/M
+Thorpeland/M
+Thorrington/M
+Thorson/M
+Thorsten/M
+Thorverton/M
+those
+thou
+though
+thought-provoking
+thought/SM
+Thoughter/M
+thoughtform/SM
+thoughtful/Y
+thoughtfulness/M Noun: uncountable
+thoughtless/YP
+thousand/HSM
+Thousand/M
+Thrace/M
+Thracian/SM
+thrall/SM
+Thrandeston/M
+Thrapston/M
+thrash/RJSDGM
+thrashing/M
+Thrasymachus/M
+thread/AGDS
+thread/M
+threadbare
+threadlike
+Threadneedle/M
+Threadripper/M
+threadsafe
+thready/T
+Threapwood/M
+threat/SM
+threaten/dSk
+Threckingham/M
+three-colour
+three-cornered
+three-dimensional/Y
+three-fold
+three-handed
+three-legged
+three-line
+three-phase
+three-piece
+three-ply
+three-point
+three-pronged
+three-quarter/SM
+three-way
+three-wheeler
+three/HMS
+Threekingham/M
+threepence/SM
+threepenny/SM
+threescore/SM
+threesome/SM
+Threlkeld/M
+threnody/SM
+threonine/SM
+thresh/SDRG
+Threshfield/M
+threshold/MS
+threw/c
+Threxton/M
+thrice
+thrice-married
+thrift/2pSMzZ
+thriftlessly
+thriftlessness/M
+thrifty/T
+Thrigby/M
+thrill/DRMkSG
+Thrimby/M
+Thrintoft/M
+thrip/SM
+Thriplow/M
+thrive/DSkG
+Throapham/M
+throat/2DMZzS
+throaty/T
+throb/SGDR
+Throcking/M
+Throckmorton/M
+throe/SM
+thrombi/M
+thrombin/SM
+thrombocyte/MS
+thrombocytopenia/WSM
+thromboembolic
+thromboembolism/SM
+thrombolysis/M Noun: uncountable
+thrombolytic/SM
+thrombose/SD
+thrombosis/M
+thrombotic/Y
+thromboxane/SM
+thrombus/M
+throne/CSD
+throne/pMO
+throng/SGMD
+throstle/MS
+throttle/DMGSr
+through
+through-traffic
+throughout
+throughput/SM
+throw-in/SM
+throw/RSG
+throwaway/MS
+throwback/MS
+throwdown/SM
+Throwleigh/M
+Throwley/M
+thrown/c
+Thrubwell/M
+thrum/GDS
+Thrumpton/M
+Thrumster/M
+Thrupp/M
+Thruscross/M
+thrush/SM
+Thrushelton/M
+Thrussington/M
+thrust/GRS
+Thruxton/M
+Thrybergh/M
+Thu
+thud/DSMG
+thug-like
+thug/SM
+thuggee/SM
+thuggery/SM
+thuggish/P
+Thule/M
+thulite/SM
+thulium/M Noun: uncountable
+thulocene
+thumb/DGMSp
+thumbnail/SM
+thumbprint/SM
+thumbscrew/MS
+Thumiger/M
+thump/MGSDr
+Thunder/M
+thunder/SZkMdp
+thunderbird/SM
+Thunderbird/SM
+thunderbolt/MS
+thunderbox/SM
+thunderbug/SM
+thunderclap/MS
+thundercloud/SM
+thunderflash/SM
+thunderfly/SM
+thunderhead/SM
+thunderous/YP
+Thundersley/M
+thunderstorm/MS
+thunderstruck
+Thundridge/M
+thunk
+Thur/SM
+Thurcaston/M
+Thurcroft/M
+Thurgarton/M
+Thurgoland/M
+Thurgood/M
+Thurlaston/M
+Thurlby/M
+Thurleigh/M
+Thurleston/M
+Thurlestone/M
+Thurlow/M
+Thurloxton/M
+Thurlston/M
+Thurlton/M
+Thurman/M
+Thurmaston/M
+Thurnby/M
+Thurne/M
+Thurnham/M
+Thurning/M
+Thurnscoe/M
+Thurrock/M
+Thursby/M
+Thursday/SM
+Thursford/M
+Thursley/M
+Thurso/M
+Thurstaston/M
+Thurston/M
+Thurton/M
+Thurvaston/M
+thus/YP
+thuswise
+Thuxton/M
+thwack/GDSM
+Thwaite/MS
+thwart/kSDGrMh
+Thwing/M
+thy
+thyasirid/SM
+thylacine/MS
+thylakoid/SM
+thyme/MS
+thymidine/SM
+thymine/SM
+thymol/SM
+thymoma/SM
+thymomata/M
+thymus/SM
+thyristor/SM
+thyroid/SMO
+thyroidectomy/SM
+thyrotoxicosis/M
+thyrotrophic
+thyrotrophin/SM
+thyrotropic
+thyrotropin/SM
+thyroxine/SM
+thyrsi/M
+thyrsus/M
+Thysanoptera Taxonomic order
+thysanuran/SM
+thyself
+THz
+Ti/M
+Tiago/M
+Tian/M
+Tianjin/M
+tiara/SM
+TiB
+Tibbermore/M
+Tibberton/M
+Tibenham/M
+Tiber/M
+Tiberianus/M
+Tiberias/M
+Tiberius/M
+Tibet/M
+Tibetan/SM
+tibia/MSO^
+tibiae/M
+tibialis/M
+Tibni/M
+Tibshelf/M
+Tibthorpe/M
+Tiburon/M
+tic-tac/SM
+tic/SGRD
+Ticehurst/M
+Tichborne/M
+Ticino/M
+tick-tack/SM
+tick-tock/GSDM
+tick/MS
+Tickencote/M
+Tickenham/M
+ticker-tape
+ticket-day
+ticket-of-leave
+ticket/SMdZ
+tickety-boo
+Tickhill/M
+tickle/DSGR
+ticklish/PY
+tickly/T
+Ticknall/M
+tickover/M
+Tickton/M
+ticlopidine/M Noun: uncountable
+Ticonderoga/M
+Tidbury/M
+Tidcombe/M
+Tiddington-with-Albury/M
+tiddler/SM
+tiddly/T
+tiddlywinks/M Noun: uncountable
+tide/ZD2SOoJGMp
+tideline/SM
+tidemark/SM
+Tidenham/M
+Tideswell/M
+tidewater/SM
+tideway/SM
+tidier/U
+tidily/U
+tidiness/U
+Tidmarsh/M
+Tidmington/M
+Tidworth/M
+tidy/GYSDTM
+tie-break/SM
+tie-in/SM
+tie/RSMDG
+tieback/SM
+tiebreaker/SM
+tied/UA
+Tienanmen/M
+tier/D
+Tierney/M
+Tierra
+ties/AU
+Tietze/M
+TIF/S
+tif/S
+tiff/MS
+TIFF/S
+Tiffany/M
+Tiffield/M
+Tiffin/M
+tiffin/SM
+Tift/M
+Tifton/M
+Tigard/M
+tiger/SM~
+tight-arsed
+tight-fisted
+tight-fitting
+tight-knit
+tight-lipped
+tight/SYPT
+tighten/dSr
+tightly-knit
+tightrope/MS
+tigress/MS
+Tigris/M
+Tihanyi/M
+Tijuana/M
+Tikal/M
+tike/SM
+tiki/SM
+Tikipunga/M
+tikka/SM
+Tikorangi/M
+Tikrit/M
+Tila/M
+tilapia/SM
+Tilbrook/M
+Tilbury/M
+tilde/SM
+tile/RDSMG
+Tilehurst/M
+Tilford/M
+Tilgate/M
+Tilghman/M
+till/DRSG7
+tillage/SM
+Tillamook/M
+Tillard/M
+tiller/EMS
+Tillet/M
+Tillich/M
+Tillicoultry/M
+Tillingham/M
+Tillington/M
+tillite/SM
+Tillman/M
+Tilly/M
+Tillydrone/M
+Tilmanstone/M
+Tilney/M
+Tilshead/M
+Tilstock/M
+Tilston/M
+Tilstone/M
+Tilsworth/M
+tilt/DGS7rM
+tilth/SM
+Tilton/M
+Tilty/M
+Tim/ZSM
+Timaeus/M
+Timár/M
+Timaru/M
+timbale/SM
+timber/SdM
+Timberhill/M
+Timberlake/M
+Timberland/M
+Timberlea/M
+timberline/SM
+Timberscombe/M
+Timble/M
+timbre/MS
+timbrel/SM
+Timbuctoo/M
+Timbuktu/M
+time-and-motion
+time-consuming
+time-honoured
+time-lapse
+time-out/SM
+time-server/SM
+time-serving/S
+time-share/DGS
+time-spans
+time-wasting
+time-work
+time-worn
+time/pYRDSJMG
+timebase/SM
+timekeeper/SM
+timekeeping/M
+timeless/Y
+timelessness
+timeline/SM
+timeliness/U
+timely/TP
+timenoguy/SM
+timeous/Y
+timeout/SM
+timepass
+timepiece/SM
+timerity/M
+times/ca
+times/Sd
+timescale/SM
+timeshare/SD
+timeshift/SGD
+timeslot/MS
+timesome
+timespan/SM
+timestamp/SGD
+timetable/SDGM
+timewave/SM
+Timex/M
+timid/Y
+timidity/SM
+timidness
+timing/M
+Timiskaming/M
+Timm/M
+Timmer/M
+Timmermann/M
+Timmermans/M
+Timmins/M
+Timmy/M
+timocracy/SM
+Timofeev/M
+Timor-Leste/M
+Timor/M
+Timorese/M
+timorous/YP
+Timothy/M
+timpani/M Noun: usually uncountable
+timpanist/SM
+Timsbury/M
+Timur/M
+Timworth/M
+tin-glaze
+tin-opener/SM
+tin-pan
+tin-plate/M
+tin-tack
+tin/DGZSMz2
+Tina/M
+Tincleton/M
+tinct
+tincture/DSMG
+tinder/SM
+tinderbox/SM
+tine/MSZ
+tinfoil/SM
+ting/D
+Ting/M
+tinge/SM
+tingeing
+Tingewick/M
+Tingey/M
+tingle/GDS
+tingly/T
+Tingrith/M
+Tingwall/M
+tinker/dMSr
+tinkerbird/SM
+Tinkersley/M
+tinkle/DSGY
+tinkler/MS
+Tinley/M
+tinnitus/SM
+tinny/TP
+Tinopai/M
+tinplate/SMD
+tinpot
+tinsel/MGSDY
+Tinseltown/M
+Tinsley/M
+tinsmith/SM
+tint/MSDG
+Tintagel/M
+Tintern/M
+Tintinhull/M
+tintinnabulation/SM
+Tinton/M
+Tintwistle/M
+Tinwald/M
+tinware/SM
+Tinwell/M
+tiny/PT
+Tioga/M
+tiotropium/M Noun: uncountable
+tip-off/SM
+tip-top/SM
+tip/RSGMD
+tipcat/M
+Tipp-Ex
+Tippah/M
+Tippecanoe/M
+Tipperary/M
+tippet/SM
+Tippett/M
+Tippex/MSGD
+tipple/DSRG
+tips/zZ2
+tipstaff/MS
+tipster/SM
+tipsy/TP
+tiptoe/DGS
+Tipton/M
+tiptop/SM
+Tiptree/M
+Tiptronic
+tiptronic
+Tir-na-nog
+Tirabad/M
+tirade/SM
+tirailleur/MS
+tiramisu/SM
+Tirana/M
+Tirane/M
+Tirau/M
+Tircoed/M
+tire/cAGDS
+tired/Y
+tiredness
+Tiree/M
+tireless/Y
+tirelessness
+tiresome/Y
+tiresomeness
+Tirley/M
+tiro/MS
+Tirohanga/M
+Tirol/M
+Tirole/M
+Tirolean/SM
+Tirril/M
+Tirrold/M
+Tirthankara/SM
+Tirymynach/M
+tisane/MS
+Tisbury/M
+Tishomingo/M
+Tishri/M
+Tisri/M
+Tisserand/M
+Tissington/M
+Tissot/M
+tissue/MS
+Tisted/M
+tit-for-tat
+tit/RMS
+Titahi/M
+titan/1MSW
+Titan/MS
+titanate/MS
+Titaness/SM
+Titania/M
+titanian
+Titanian
+Titanic/M
+titaniferous
+titanite/SM
+titanium/SM
+titanocene
+titanosaur/SM
+titbit/SM
+Titchfield/M
+Titchmarsh/M
+Titchwell/M
+titfer/MS
+tithable
+Tithby/M
+tithe/SMDG
+tither/MS
+titi/MS
+Titian/M
+Titianesque
+titillate/SnDGk
+Titirangi/M
+Titius/M
+titivate/nSDG
+titlark/MS
+title-deed/MS
+title-page
+title/Mp
+title/SGAD
+titleholder/MS
+titler/MS
+Titley/M
+titmice/M
+titmouse/M
+Tito/M
+Titograd/M
+Titoism/M
+Titoist/MS
+Titoki/M
+titrant/SM
+titratable
+titrate/SGDn
+titre/MSN
+Titsey/M
+titter/d
+Tittesworth/M
+tittle-tattle
+tittle/MS
+Tittleshall/M
+titular/SMY
+Titus/M
+Titusville/M
+Titze/M
+Tiverton/M
+Tivetshall/M
+Tixall/M
+Tixover/M
+tizanidine/M Noun: uncountable
+Tizard/M
+tizz/SM
+tizzy/MS
+Tkáč/M
+TKO/SM Initialism of technical knockout
+TLC/SM
+TLS/M Initialism of Transport Layer Security
+Tm
+TNO/SM Initialism of trans-Neptunian object
+TNT/SM
+to-do/SM
+to/IU
+to/S
+toad/MZS
+toadstool/SM
+toady/SDGM
+toadyism/SM
+toast/DGRZMS
+toasting-fork/SM
+toastmaster/SM
+toastmistress/SM
+toasty/T
+tobacco/MS
+tobacconist/MS
+Tobago/M
+Tobagonian/SM
+Tobermore/M
+Tobermory/M
+Tobias/M
+Tobin/M
+Tobit/M
+Toblerone/SM
+toboggan/S3rMd
+tobramycin/M Noun: uncountable
+Tobruk/M
+Toby/M
+tobyman/M
+tobymen/M
+TOC/SM
+toccata/SM
+Tocharian/MS
+tocilizumab/M Noun: uncountable
+tock/GMDS
+Tockenham/M
+Tockholes/M
+Tockwith/M
+tocopherol/SM
+Tocqueville/M
+tocsin/MS
+tod/SM
+today/M
+Todber/M
+Todbere/M
+Todd/M
+Toddington/M
+toddle/DGSR
+toddy/MS
+Todenham/M
+Todmorden/M
+Todoist/M
+Todwick/M
+toe/DMGSp
+toecap/MS
+TOEFL/M Acronym of Test of English as a Foreign Language
+toehold/SM
+toenail/MS
+toerag/SM
+toff/SMD
+toffee/SM
+Toft/M
+Toftrees/M
+Tofts/M
+tofu/SM
+tog/MGSD
+toga/DSM
+Togaviridae Taxonomic family
+together
+togetherness
+toggle/DGMS
+Tognazzini/M
+Togo/M
+Togoland/M
+Togolese/M
+Toi/M
+toil-worn
+toil/RSMDG
+toilet/ySdM
+toiletry/MS
+toilette/SM
+toilsome/Y
+toilsomeness
+toing/SM
+toity
+Tokanui/M
+Tokarahi/M
+Tokay/M
+tokay/SM
+toke/SGDRM
+Tokelau/M
+token/SM
+tokenise/SGDNr
+tokenism/SM
+tokenize/SGDNr
+Toki/M
+Tokita/M
+Toko/M
+Tokoroa/M
+Tokugawa/M
+Tokunbo/M
+Tokyo/M
+Tokyoite/MS
+Tolaga/M
+Tolbooth/M
+told/AU
+Toledo/M
+tolerability/MI
+tolerable/YI
+tolerance/ISM
+tolerant/IY
+tolerate/DGBSn
+Tolethorpe/M
+Tolhurst/M
+Tolkien/M
+Tolkienesque
+toll-bridge/MS
+toll-gate/SM
+toll-house/M
+toll-road/MS
+toll/DGS
+Toll/M
+Tolland/M
+Tollard/M
+tollbooth/MS
+Tollcross/M
+Tolle/M
+Toller/M
+Tollerton/M
+Tollesbury/M
+Tolleshunt/M
+Tolley/M
+tollgate/SM
+Tollington/M
+Tolman/M
+Tolpuddle/M
+Tolstoy/M
+Toltec/MS
+Toltecan
+toluene/SM
+toluidine/SM
+tom-tom/SM
+tom/MS
+Tom/MS
+tomahawk/MDGS
+Tomarata/M
+Tomas/M
+Tomaselli/M
+Tomatin/M
+tomato/M
+tomatoes
+Tomaž/M
+tomb/SMp
+Tomball/M
+Tombaugh/M
+Tombland/M
+tomblike
+tombola/SM
+tomboy/MS~
+tombstone/SGDMR
+Tombusviridae Taxonomic family
+tombusvirus/SM
+tomcat/SM
+tomcod/SM
+Tomdoun/M
+tome/6SM
+Tomé/M
+tomelet/SM
+tomenta/M
+tomentose
+tomentous
+tomentulose
+tomentum/M
+Tomer/M
+tomfool/SM
+tomfoolery/MS
+Tomintoul/M
+Tomkins/M
+Tomlin/M
+Tomlinson/M
+Tommie/M
+Tommy/MS
+tomography/MW
+Tomoko/M
+tomorrow/MS
+Tompkins/M
+Tomson/M
+tomtit/SM
+ton/droMWSO
+tonality/SM
+Tonawanda/M
+Tonbridge/M
+tone's/cf
+tone-deaf
+tone/IRDGS
+toneless/Y
+tonelessness
+Tonelli/M
+tones/fc
+Toney/M
+Tong/M
+tong/SM
+Tonga/M
+Tongan/SM
+Tonge/M
+Tongham/M
+Tongji/M
+Tongland/M
+tongue-in-cheek
+tongue-tied
+tongue-twister/SM
+tongue/GSMDp
+Tongue/M
+tonguing/M
+Tongwynlais/M
+Toni/M
+Tonia/M
+Tonian
+tonic/MS
+tonicity/M
+tonight/M
+tonk/SGD
+tonkatsu/M Noun: uncountable
+Tonkin/M
+Tonna/M
+tonnage/SM
+tonne/MSr
+tonometer/SM
+tonometry/WSM
+tonsil/SM
+tonsillar
+tonsillectomy/SM
+tonsillitis/M Noun: usually uncountable
+tonsorial
+tonsure/SMGD
+tontine/MS
+Tony/M
+Tonya/M
+Tonypandy/M
+Tonyrefail/M
+Tonys
+too
+Tooele/M
+took/afcA
+tool/AGDS
+tool/Mr
+toolbar/SM
+toolbox/MS
+toolchain/SM
+toolkit/SM
+toolmaker/SM
+toolmaking/M
+toolset/SM
+toolshed/SM
+tooltip/SM
+Toombs/M
+Toome/M
+toon/SM
+Toope/M
+toot/GRDSM
+Toot/M
+tooth/zMpDZ
+toothache/MS
+toothbrush/SMG
+toothcarp/SM
+toothlessly
+toothlessness/M Noun: uncountable
+toothpaste/MS
+toothpick/SM
+toothsome/Y
+toothsomeness/M Noun: uncountable
+toothwort/MS
+toothy/T
+Tooting/M
+tootle/DSGM
+tootsie/SM
+tootsy/SM
+Toowong/M
+Toowoomba/M
+top-down
+top-heavy
+top-level/SM
+top-line
+top-notch/R
+top-up/SM
+Top/M
+top/MWwGpR1JDS
+topaz/MS
+topazolite/SM
+Topcliffe/M
+topcoat/MS
+Topcroft/M
+topdressing/SM
+tope/SGDR
+Topeka/M
+toper/SM
+topflight
+topgallant/SM
+Tophet/M
+tophi/M
+tophus/M
+topiarian
+topiary/SM3
+topic/MS
+topicality/MS
+topiramate/M Noun: uncountable
+topknot/MS
+toplessness
+topman/M
+topmast/SM
+topmen/M
+topminnow/SM
+topmost
+topographer/MS
+topography/S1WMw
+topoi/M
+topoisomerase/SM
+topology/w13SM
+toponym/SMO
+toponymic/SO
+toponymy/SM
+topophilia/M Noun: uncountable
+topos/M
+topotype/SM
+Toppesfield/M
+topping/SM
+topple/GDS
+Toprol/M
+topsail/MS
+Topsham/M
+topside/SM
+topsoil/SM
+topspin/MS
+topsy
+topsy-turvy
+toque/MS
+toquilla/MS
+Tor/M
+tor/SM
+Torah/MS
+Torbain/M
+Torbay/M
+Torbet/M
+Torbryan/M
+torch-bearer/SM
+torch/SMDG
+torchère/MS
+Torchio/M
+torchlight/SM
+torchlit
+torchon/M
+Torcy/M
+tore/SM
+toreador/SM
+Torfaen/M
+torgoch/M
+torgochs
+Torino/M
+Torkard/M
+Torksey/M
+Tormarton/M
+torment/MSkDGh
+tormentil/MS
+tormentor/SM
+Tormohun/M
+torn
+tornadic
+tornado/MS
+tornadoes
+Torness
+Tornielli/M
+toroid/oSMO
+Toronto/M
+Torosay/M
+torpedo/DMG
+torpedoes
+torpefy/DGS
+Torpenhow/M
+Torphichen/M
+Torphins/M
+torpid/YSM
+torpidity/SM
+torpidness/M
+Torpids
+Torpoint/M
+torpor/MS
+torporific
+Torquay/M
+torque/DSGMZ
+torquier
+torquiest
+Torquil/M
+torr/SM
+Torrance/M
+torrefaction/MS
+torrefy/DGS
+Torrence/M
+torrent/SM
+torrential/Y
+Torres/M
+Torricelli/M
+Torricellian
+torrid/YP
+Torridge/M
+torridity/M
+Torridon/M
+Torrington/M
+Torry/M
+Torryburn/M
+torse/MS
+torsel/MS
+Tórshavn/M
+torsion/MSoOp
+torso/SM
+tort/FSEA
+tort/M
+torte/MS
+tortelli/M
+tortellini/M
+Torteval/M
+tortfeasor/MS
+Torthorwald/M
+torticollis/M
+tortilla/MS
+Tortington/M
+tortious/Y
+tortoise/MS
+TortoiseGit/M
+tortoiseshell/SM
+TortoiseSVN/M
+tortuosity/MS
+tortuous/YP
+torture/RDGSM
+torturous
+Tortworth/M
+torulosis/M Noun: uncountable
+torus/SM
+Torvalds/M
+Torver/M
+Torworth/M
+Tory/SM
+Toryglen/M
+Torygraph/M
+Toryism/M
+Torymynydd/M
+Tosca/M
+Toscanini/M
+Toseland/M
+tosh/M
+Toshack/M
+Toshiba/M
+Toshihiro/M
+Toshimitsu/M
+toss-up/SM
+toss/GRSD
+tosspot/SM
+tostada/SM
+tostado/SM
+Tostock/M
+tosylate/SM
+tot/DSoMG
+total/s9MDGS
+totalisation/MS
+totalise/DGS
+totalitarian/SM
+totalitarianism/SM
+totality/SM
+totalization/MS
+Totalizator/M
+totalizator/MS
+totalize/DGS
+Totara/M
+Tote/M
+tote/SGDM
+totem/MS
+totemic
+totemism/M Noun: usually uncountable
+totemist/SMW
+Totham/M
+Tothill/M
+totient/SM
+totipotency/M Noun: uncountable
+totipotent
+Totland/M
+Totnes/M
+Toto/M
+Totowa/M
+Tottenham/M
+Tottenhill/M
+totter/SdkMr
+Totternhoe/M
+tottery
+totting-up
+Tottington/M
+Totton/M
+toucan/MS
+touch-and-go
+touch-judge/S
+touch-sensitive
+touch-tone/SM
+touch-typist/SM
+touch/AGDS
+touch/p
+touchable
+touchdown/MS
+touché
+toucher/SM
+touching/Y
+touchingness/M
+touchline/MS
+touchpad/SM
+touchpaper/SM
+touchpoint/SM
+touchscreen/SM
+touchstone/SM
+touchwood/M Noun: uncountable
+touchy-feely
+touchy/TPY
+tough-minded
+tough/GYPTSDM
+Tough/M
+toughen/dS
+Toulon/M
+Toulouse/M
+Toulston/M
+toupee/MS
+tour/CSGMFD
+touraco/MS
+tourer/SM
+Tourette/M
+tourism/MS
+tourist/ZMSGDW1
+tourmaline/SM
+tournament/MS
+tourney/DGSM
+tourniquet/MS
+tourtière/M
+touse/SGDM
+tousle/DSG
+tout/DSG
+Tout/M
+tov
+Tovil/M
+tow-bar/MS
+tow-coloured
+tow-head/SMD
+tow-line/SM
+tow-path/MS
+tow-rope/SM
+tow/DRGSM
+towable
+towage/M
+Towai/M
+Towamencin/M
+Toward/M
+toward/S
+Towcester/M
+Towednack/M
+towel/SMDG
+tower/dk
+Towersey/M
+Towie/M
+Towler/M
+Town/M
+town/rp5MmS~
+townee/SM
+Townend/M
+Towner/M
+Townes/M
+Townhead/M
+Townhill/M
+townie/SM
+townland/SM
+townlet/SM
+Townley/M
+townscape/SM
+Townsend/M
+townsfolk/M
+Townshend/M
+township/MS
+townspeople/M
+Townstall/M
+Townsville/M
+townward/S
+towny/M
+towpath/SM
+towplane/SM
+Towsley/M
+Towthorpe/M
+Towton/M
+towy
+Towyn/M
+tox
+toxaemia/MSW
+toxic/SY
+toxicant/SM
+toxicity/SM
+toxicology/3Mw1W
+toxigenicity/M Noun: usually uncountable
+toxin/MS
+Toxocaridae Taxonomic family
+toxology/M Noun: uncountable
+toxophilite/SM
+toxophily/M Noun: uncountable
+toxoplasma/M
+toxoplasmosis/M
+Toxteth/M
+toy/MDSG
+toymaker/SM
+Toynbee/M
+Toynton/M
+Toyoda/M
+Toyota/M
+toyshop/SM
+trabecula/M
+trabeculae/M
+trabecular
+trabeculate
+Trabzon/M
+tracasserie/MS
+trace/ADGnS
+trace/M
+traceability
+traceable/U
+traceless/Y
+tracer/SM
+tracery/SM
+traceur/SM
+Tracey/M
+trach/M
+trachea/MO
+tracheae/M
+tracheid/SM
+tracheitis/M Noun: uncountable
+Tracheophyta Taxonomic division + Taxonomic phylum
+tracheotomy/MS
+trachoma/M
+trachomatous
+trachs
+trachyte/MSW
+Traci/M
+Tracie/M
+tracing/MS
+track-laying
+track/GMRSDp7
+trackback/SM
+trackball/SM
+trackbed/SM
+trackie/SM
+tracklayer/MS
+tracklist/GSM
+trackman/M
+trackmen/M
+trackpad/SM
+tracksuit/MS
+trackway/SM
+tract/E7ASF
+tract/M
+tractability
+tractable/IY
+tractable/Y
+tractableness
+Tractarian/SM
+Tractarianism/M
+tractate/SM
+traction/FCESMA
+traction/O
+tractive
+tractor/FSMCA
+Tracy/M
+trad/O7M
+trade-in/SM
+trade-off/SM
+trade/7Mm5GRSD
+trademark/GSDM
+tradescantia/SM
+tradespeople/M
+Tradewinds/M
+tradition/SMo3
+traditional/3Y
+traditionalism/MS
+traditionalistic
+traditionary
+traditor/MS
+Tradjenta/M
+traduce/GRDS
+traducement
+traducian/MS3
+traducianism/M Noun: uncountable
+Trafalgar/M
+traffic-calmed
+traffic-calming
+traffic/pDRMGS
+trafficking/SM
+Trafford/M
+tragedian/SM
+tragedienne/SM
+tragedy/SM
+tragi/M
+tragic/YO
+tragicomedy/MS
+tragicomic
+tragopan/MS
+tragus/M
+Trail/M
+trail/MGRSD
+trailblazer/MS
+trailblazing
+trailer/d
+trailhead/SM
+train-bearer/SM
+train-spotter/M
+train-spotting
+train/MADGS
+train/p
+trainable
+trainee/SM
+traineeship/SM
+trainer/MS
+training/MS
+trainload/SM
+trainman/M
+trainmen/M
+trainspotter/SM
+trainspotting
+traipse/SGDM
+trait/SM
+traitor/MS
+traitorous/Y
+Trajano/M
+trajectory/SM
+Trallong/M
+tram/SM
+tramadol/SM
+tramcar/SM
+Tramiel/M
+tramline/SM
+trammel/SDGM
+tramontana/SM
+tramp/RDGSM
+trampette/SM
+trample/DSGM
+trampoline/SM
+trampolinist/SM
+tramway/SM
+trance/MS
+Tranch/M
+tranche/MS
+Tranent/M
+trank/SMD
+Tranmere/M
+tranny/SM!
+tranquil/Y
+tranquillity/M Noun: usually uncountable
+tranquilly/Q8q-s9
+trans
+trans-Neptunian
+transact/x
+transactivator/SM
+transalpine
+transaminase/SM
+transaminate/SGDN
+Transandinomys
+transatlantic
+transborder/S
+Transcaucasia/M
+transceiver/SM
+transcend/SDG
+transcendence/MS
+transcendent/oY
+transcendental/3
+transcendentalism/SM
+transclude/SGD
+transclusion/SM
+transcode/SM
+transcompile/SGD
+transcontinental/SM
+transcreation/MS
+transcribe/RGSD
+transcript/MS
+transcriptase/SM
+transcription/SM
+transcriptional/Y
+transcriptome/SM
+transcriptomics/M Noun: uncountable
+transcurrent
+transdisciplinarity/M Noun: uncountable
+transdisciplinary
+transduce/SGDNr
+transect/SMG
+transept/SM
+transexual/SM
+transexualism/M
+transfect/SGD
+transfectant/SM
+transfection/SM
+transfeminine
+transfeminism/SM
+transfer/DR7SGMg
+transferability/SM
+transferase/SM
+transferee/SM
+transference/SM
+transferor/SM
+transferral/SM
+transferrin/SM
+transferware/SM
+TransferWise/M
+Transfiguration/M
+transfinite/SM
+transfixion/SM
+transform/R7SGD
+transformational/Y
+transformative
+transgender/dM
+transgenderism/M Noun: usually uncountable
+transgenderist/SM
+transgene/SWM
+transgress/SDVG
+transgression/SM
+transgressor/SM
+tranship/DGS
+transhipment/S
+transhistorical/M Noun: uncountable
+transhumanism/SM
+transhumanist/SM
+transience/ZSM
+transiency/SM
+transient/SMY
+Transifex/M
+transilluminate/DGSn
+transinformation/M
+transire/SM
+transistor/Q8MS
+transistorization
+transit/dxuvVy
+transition/DSMG
+transitionary Adjective
+transitive/IPY
+transitivity/SM
+transitorily
+transitoriness/M Noun: uncountable
+Transjordan/M
+Transkei/M
+translatability/M Noun: usually uncountable
+translatable/U
+translate/DgGnS
+translated/aU
+translation/aSM
+translation/O
+translator/MS
+transliterate/GnD
+transliterator/SM
+translocate/GDSn
+translucence/ZSM
+translucency/SM
+translunar
+translunary
+transman/M
+transmarine
+transmasculine
+transmembrane/SM
+transmen/M
+transmigrant/SM
+transmigrator/SM
+transmigratory Adjective
+transmisogyny/M Noun: uncountable
+transmissibility/SM
+transmissible
+transmission/ASM
+transmissivity/SM
+transmit/AGSD
+transmittable
+transmittal/MS
+transmittance/MS
+transmitter/MS
+transmogrify/nSDG
+transmontane
+transmural
+transmutability/M Noun: uncountable
+transmutationist/SM
+transmutative
+transmuter/SM
+transnational/SM
+transnationalism/SM
+transom/SM
+transonic
+transparency/SM
+transparent/Y
+transpeople/M
+transperson/MO
+transphobe/SMW
+transphobia/M Noun: usually uncountable
+transpierce/DGS
+transpile/SGDR
+transpirable
+transpire/DnSG
+transplant/7nSMr
+transponder/SM
+transport/SMBn
+transposable
+transposal/SM
+transpose/DNr
+transpositional
+transpositive/Y
+transposon/SM
+transputer/MS
+transracial
+transsexual/SM
+transsexualism/MS
+transsexuality/SM
+transubstantiate/DGSn
+transudation/S
+transude/DGS
+transuranic/SM
+transurethral
+Transvaal/M
+transversal/SM
+transversality/SM
+transverse/SMYo
+transvestic
+transvestism/SM
+transvestist/SM
+transvestite/SM
+transvestitism/M Noun: usually uncountable
+transwoman/M
+transwomen/M
+Transylvania/M
+Transylvanian/SM
+trap/JSRDMG
+trapdoor/SM
+trapeze/SM
+trapezia/M
+trapezii/M
+trapezium/SM
+trapezius/M
+trapezoid/SMO
+Trapnell/M
+trappable
+Trappist/SM
+trapshooting/M Noun: uncountable
+Traquair/M
+Traralgon-Morwell/M
+Traralgon/M
+trash/SGD2MZ
+trashy/TP
+trattoria/SM
+trauma/Q8SW1M
+traumata/M
+traumatisation/SM
+traumatism/SM
+traumatization/SM
+traumatology/M Noun: uncountable
+Trautman/M
+travail/SDGM
+Travatan/M
+travel/DRGJSM
+travelogue/MS
+Travers/M
+traversable
+traversal/SM
+traverse/DSG
+Traverse/M
+travertine/SM
+travesty/MDSG
+Travis/M
+Travolta/M
+travoprost/M Noun: uncountable
+Trawden/M
+trawl/SRGDM
+Trawsfynydd/M
+Trawsgoed/M
+tray/SM
+trayful/S
+Traynor/M
+trazodone/M Noun: uncountable
+Trdat/M
+Tre'r-graig/M
+Tre'r/M
+Tre-Lech/M
+Tre-main/M
+treacherous/PY
+treachery/MS
+treacle/MY
+tread/ASG
+treader/SM
+treadle/DSGM
+treadmill/MS
+Treadwell/M
+Trealaw/M
+Treales/M
+Treanda/M
+Trearddur/M
+treason/S7M
+treasonably
+treasonous
+treasure-trove/SM
+treasure/DRSZMG
+treasurership/S
+treasury/SM
+treat/LM7ZDSG
+treated/KUAa
+treater/SM
+treatise/MS
+treatment/KSM
+treats/aA
+treaty/MS
+treble/SDG
+Treblinka/M
+trebly/T
+Treborough/M
+trebuchet/SM
+trecentist/SM
+trecento/M Noun: uncountable
+Trecenydd/M
+Trecoed/M
+Tredegar/M
+Tredington/M
+Tredunnock/M
+Tredyffrin/M
+Tree/M
+tree/MpGS
+treelessness/M
+treelike
+treeline/SM
+treen/S
+treenail/SM
+Treeton/M
+treetop/MS
+Tref/M
+Trefdraeth/M
+Trefeglwys/M
+Trefeurig/M
+Treffgarne/M
+Trefilan/M
+Treflys/M
+Trefnant/M
+trefoil/SM
+Trefonen/M
+Trefriw/M
+Tregaian/M
+Tregaron/M
+Tregoney/M
+Tregony/M
+Tregoz/M
+Tregoze/M
+Tregynon/M
+Trehafod/M
+trehalose/SM
+Treharris/M
+Treherbert/M
+trek/SRDGM
+Trekkie/SM
+Trelawnyd/M
+Trelech/M
+Trellech/M
+Trelleck/M
+trellis/MdS
+trelliswork/SM
+Tremaine/M
+tremalose
+Trematoda Taxonomic class + Taxonomic infraclass
+trematode/SM
+Tremayne/M
+tremble/SMGYkDr
+trembly/T
+Tremeirchion/M
+tremendous/YP
+tremolo/MS
+tremor/SMd
+Tremorfa/M
+Trempealeau/M
+tremulous/YP
+trenail/SM
+trench/AGDS
+trench/M
+trenchancy/SM
+trenchant/Y
+Trenchard/M
+trencher/mSM
+trend/DzZ2MSG
+trendsetter/SM
+trendsetting
+trendy/TSM
+Treneglos/M
+Trent/M
+Trentham/M
+Trentishoe/M
+Trenton/M
+Treorchy/M
+trepan/SGDN
+trepang/S
+trephine/SGDNM
+trepidation/MS
+trepidatious/Y
+Tresco/M
+Trescothick/M
+Tresham/M
+Tresmeer/M
+Tresmere/M
+trespass/RDSG
+tress/aMS
+trestle/MS
+Treswell/M
+Trethomas/M
+Tretikov/M
+Tretire/M
+Tretower/M
+Treuddyn/M
+Trevalga/M
+trevally/S
+Trevelyan/M
+Treverbyn/M
+Trevethin/M
+Trevi
+Treville/M
+Trevino/M
+Trevisa/M
+Trévisan/M
+Trevisan/M
+Trevor/M
+Trewalchmai/M
+Treweek/M
+Trewen/M
+Trewern/M
+Trewidland/M
+trews
+trey/SM
+Treyford/M
+tri-axle/SM
+tri-band
+triable
+triac/SM
+triacetate/SM
+triacontanoic
+triad/WSM
+triage/SDMG
+trial's/Aa
+trial/DG
+trial/KaA
+trialist/SM
+trialogue/SM
+trials/Aa
+triamcinolone/SM
+triamterene/M Noun: uncountable
+triangle/SM
+triangular/Y
+triangularize/SGD
+triangulate/nSGD
+Triangulum/M
+Triantafyllidis/M
+Triassic/M
+triathlete/SM
+triathlon/SM
+triatomic
+triaxial
+triazine/SM
+tribade/SM
+tribadism/M Noun: uncountable
+tribal/SMY
+tribalism/SM
+tribalist/WSM
+tribe/SmM5
+tribosphenic
+tribrach/WM
+tribrachs
+tribulation/SM
+tribunal/SM
+tribune/SM
+Tribus/M
+tributary/SM
+tribute/FSE
+tribute/M
+tricameral
+tricar/SM
+tricarbonyl/SMW
+tricarboxyl/MW
+tricast/SM
+trice/SM
+tricentennial/SM
+triceps/M
+triceratops/SM
+trichiasis/M
+trichina/M
+trichinae/M
+trichinoses
+trichinosis/M
+trichloroacetic
+trichloroethane/SM
+trichloroethylene/SM
+trichology/3wM
+trichome/SM
+trichomonad/SM
+trichomoniasis/M Noun: usually uncountable
+trichopteran/SM
+trichotillomania/M Noun: uncountable
+trichotomous
+trichotomy/SM
+trichrome/MSW
+Tricia/M
+trick/ZzM2DGSR~
+trickery/SM
+trickle/DSGM
+trickster/MS
+tricky/TP
+triclinic
+triclosan/M Noun: uncountable
+tricolour/SDM
+triconodont/MS
+tricorder/SM
+tricorn/SM
+tricorne/SM
+tricosanoic
+tricot/SM
+tricuspid/SM
+tricycle/GSM
+tricyclic/SM
+tricyclist/SM
+tridactyl/SM
+tridecanoic
+tridecylic
+trident/SM
+tridentate
+tridentative
+Tridentine
+Tridevi/M
+tridimensional
+tridymite/SM
+triennial/YSM
+Trier/M
+trier/MS
+Trieste/M
+trifecta/SM
+triffid/SM
+trifle/GRMSD
+triflouride
+trifocals
+trifoliate/SM
+trig/DRGSM
+trigeminal/SM
+trigender
+Trigg/M
+trigger-happy
+trigger/M
+trigger/SdA
+triggerfish/SM
+triglyceride/MS
+triglyph/SMW
+trigonal/Y
+trigonid/SM
+trigonocephaly/SM
+trigonometry/1WwSM
+trigram/SM
+trigraph/SMW
+trihedral
+trihydrogen/SM
+trike/SM
+trilateral
+trilby/MS
+trilinear
+trilingual/SM
+trill/SMGD
+Trillick/M
+trillion/HSM
+trillium/SM
+trilobite/SM
+trilogy/SM
+trim/PDTGJSMRrY
+trimaran/SM
+Trimble/M
+Trimdon/M
+trimeric
+trimerous
+trimester/SM
+trimeter/SM
+trimethoprim/SM
+trimethylene/M
+trimetric/O
+Trimingham/M
+Trimley/M
+trimming/M
+trimodal
+trimonthly/SM
+Trimsaran/M
+Trina/M
+trinary/SM
+Trincomalee/M
+trine/SM
+Tring/M
+Trinidad/M
+Trinidadian/SM
+Trinitarian/SM
+Trinitarianism
+trinitrotoluene/SM
+Trinity/M
+trinity/SM
+trinket/SM
+trinomial/SM
+trio/SM
+triode/SM
+triolet/SM
+Triomphe/M
+triose/SM
+trioxide/SM
+trip/SDRGMY
+tripartite Adjective
+tripe/M Noun: usually uncountable
+triphenylmethane/SM
+triphosphate/SM
+triphthong/SMO
+triplane/SM
+triple/SGD
+triplet/SM
+Triplex/M
+triplex/SMD
+triplicate/SM
+triplication/SM
+triploblastic
+triploid/SMZ
+triply/N
+tripod/SMO
+Tripoli/M
+tripos/SM
+Tripp/M
+tripping/Y
+trippy/T
+triptan/SM
+triptych/M
+triptychs
+Tripura/M
+tripwire/SM
+triquark/SM
+triquetral/SM
+trireme/SM
+Trisagion/MS
+trisect/SGD
+trisection/SM
+trisector/SM
+Trish/M
+Trisha/M
+trishaw/SM
+trisodium/M Noun: uncountable
+trisomy/SM
+Tristan/M
+tristate/SM
+Trister/M
+Tristram/M
+trisyllabic/SM
+trisyllable/SM
+trite/YF
+triteness/SM
+triterpene/SM
+triterpenoid/SM
+tritheism/M Noun: usually uncountable
+tritheist/SM
+triticale/SM
+tritium/SM
+tritocerebra/M
+tritocerebrum/M
+Triton/M
+triton/SM
+tritone/SM
+Tritonian
+tritriacontanoic
+tritubertulate
+triturable
+triturate/SDGn
+triturator/SM
+triumph/SDGM
+triumphal/Y3
+triumphalism/SM
+triumphant/Y
+triumvir/MS
+triumvirate/MS
+triune Adjective
+trivalent/SM
+trivet/SM
+trivia/oM
+trivial/Q8q-
+triviality/MS
+trivium/M
+trixie
+tRNA/SM
+trochaic/SM
+trochanteral
+trochanteric
+trochee/MS
+trochlear/SM
+trochoid/MSO
+trochophore/SM
+trod/M
+trodden/UA
+Troed-yr-Aur/M
+Troedyraur/M
+Trogir/M
+troglodyte/SM
+troglodytic/OY
+troglodytism/M Noun: uncountable
+trogon/MS
+troika/SM
+troilism/M Noun: uncountable
+Troilus/M
+Trois-Pistoles/M
+Trois-Rivières/M
+Trojan/MS
+trojan/SM
+troll/DGMSr
+trolley/SM
+trolleybus/SM
+trollop/SM
+Trollope/M
+trombone/3MS
+trommel/MS
+trompe/SM
+Tron/M
+Trondheim/M
+troodontid/SM
+Troon/M
+troop/RDMGS
+troopship/MS
+tropacocaine/M Noun: uncountable
+tropaeolaceous
+tropaeolum/SM
+tropan/M
+tropane/SM
+trope/WMSw1
+trophallaxes
+trophallaxis/M
+trophic/OY
+trophobiont/MS
+trophobioses
+trophobiosis/M
+trophobiotic
+trophoblast/SMW
+trophy/MS
+tropic/SM
+tropinone/M Noun: uncountable
+tropism/MS
+tropological/Y
+tropology/SM
+tropomyosin/SM
+troponin/SM
+tropopause/SM
+tropophilous
+tropophyte/SM
+troposphere/SMW
+troppy/TYP
+Troqueer/M
+Trory/M
+Trossachs/M
+Trostle/M
+Troston/M
+Trostrey/M
+trot/GRSDM
+Trot/MS
+troth/SM
+Trotman/M
+Trotsky/M
+Trotskyism/M Noun: uncountable
+Trotskyist/SM
+Trotskyite/SM
+Trottiscliffe/M
+Trotton/M
+Trotwood/M
+troubadour/SM
+trouble/DGSM
+troublemaker/MS
+troublemaking/M Noun: usually uncountable
+troubleshoot/GRS
+troubleshot
+troublesome/PY
+troublous/Y
+trough/MSGDR
+trounce/GDSr
+Troup/M
+troupe/SRM
+trouser/SM
+trousered
+trousseau/M
+trousseaux/M Plural of trousseau
+trout/SM
+Troutbeck/M
+Troutdale/M
+Troutman/M
+trouvaille/MS
+trove/SMr
+Trowbridge/M
+trowel/MSGD
+Trowell/M
+Trowse/M
+troy
+Troy/M
+truancy/SM
+truant/GDMS
+truce/MSp
+Trucial
+truck/DRGMS
+truckage/MS
+Truckee/M
+truckle/GSDMr
+truckload/SM
+truculence/M Noun: usually uncountable
+truculency/SM
+truculent/Y
+Trude/MZ
+Trudeau/M
+trudge/SDGMr
+trudgen/MS
+Trudi/M
+Trudoxhill/M
+Trudy/M
+true-blue
+true-born
+true/DTG
+True/M
+truelove/MS
+trueness/M Noun: uncountable
+truepenny/MS
+TrueType
+truffle/MS
+trug/MS
+truism/MS
+Trujillo/M
+Trull/M
+truly
+Truman/M
+Trumann/M
+Trumbull/M
+Trumland/M
+trump/SDGM
+trumped-up
+trumpery/SM
+trumpet-call
+trumpet/rdSM
+Trumpington/M
+Trumpism/M Noun: uncountable
+truncate/GDSnY
+Trunch/M
+truncheon/MS
+Trundholm/M
+trundle/SDGM
+trunk/SGMp
+trunkfish/SM
+trunkful/MS
+trunnion/MS
+Truro/M
+Truscott/M
+Trusham/M
+Trusley/M
+truss/GSDM
+Trussel/M
+Trussell/M
+Trussville/M
+trust/E6SaDGj
+trust/Mp
+trustable/Z
+trustee/SM
+trusteeship/SM
+trustful/P
+trustfulness/E
+Trusthorpe/M
+trustiness/M Noun: uncountable
+trusting/Y
+trustlessness/M Noun: uncountable
+trustworthy/PY
+trusty/SMTY
+truth/MUSj6
+truth/p
+truthfulness/U
+truthiness/M Noun: uncountable
+Truvada/M
+Truzzi/M
+TRW
+try-out/MS
+try/ADGS
+tryer/SM
+trying/Y
+trypanosome/SM
+trypanosomiasis/M
+Trypho/M
+trypomastigote/SM
+trypsin/SM
+trypsinogen/SM
+tryptophan/SM
+tryst/GDMS
+Trysull/M
+Tryweryn/M
+Tsai/M
+Tsang/M
+tsar/SM3
+tsarevich/SM
+tsarevichi/M
+tsarina/SM
+Tseng/M
+tsetse/SM
+Tsiolkovsky/M
+Tsipras/M
+Tsuga/M
+tsukemono/SM
+tsunami/SM
+Tsushima/M
+Tsutomu/M
+Tswa/M
+Tswana/MS
+TTL/SM
+tu
+tu-whit
+tu-whoo
+Tuahiwi/M
+Tuai/M
+Tuakau/M
+Tualatin/M
+Tuam/M
+Tuamarina/M
+Tuareg/M
+Tuatapere/M
+tub/drSMZ
+tuba/SMO
+tubbable
+tubby/T
+tube/MpS
+tubectomy/MS
+tubercle/SM
+tubercular
+tuberculate
+tuberculin/SM
+tuberculoid
+tuberculoses
+tuberculosis/M
+tuberculous
+tuberose/MS
+tuberosity/M
+tuberous
+tubful/MS
+tubing/M
+Tübingen/M
+Tubman/M
+Tubney/M
+tubular
+tubule/SM
+Tubulidentata Taxonomic order
+tubulin/SM
+TUC/M Initialism of Trades Union Congress
+tuck/DRSG
+Tuck/M
+Tuckerman/M
+tucket/MS
+Tucson/M
+Tuddenham/M
+Tudeley/M
+Tudor/SM
+Tudweiliog/M
+Tudweilog/M
+Tudy/M
+Tue/S
+Tuesday/SM
+tufaceous
+tuff
+tuffaceous
+tuffet/MS
+tuft/DSGZM
+tug/GSD
+tugboat/MS
+Tugby/M
+Tugford/M
+Tuhua/M
+Tuileries
+tuition/SMI
+Tukey/M
+Tukhachevsky/M
+Tukwila/M
+Tulane/M
+tularaemia/WM
+Tulare/M
+tulip/MS
+Tull/M
+Tullahoma/M
+Tullamore/M
+Tullberg/M
+tulle/MS
+Tulliallan/M
+Tullibody/M
+Tullich/M
+Tullow/M
+Tully/M
+Tullyhogue/M
+Tullyhommon/M
+Tullylish/M
+Tullynacross/M
+Tullynessle/M
+Tullywiggan/M
+Tulsa/M
+tulwar/MS
+tum/ZSM
+tumble-drier
+tumble-dry/SD
+tumble/RSGD
+tumbledown
+tumblerful/SM
+tumbleweed/M
+Tumblr/M
+tumbrel/MS
+tumbril/SM
+Tumby/M
+tumefacient
+tumefaction/SM
+tumefy/SGD
+tumescence/SM
+tumescent
+tumid/Y
+tumidity/SM
+tummy/MS
+tumorous
+tumour/MS
+tumoural
+tumourlike
+Tums/M
+tumult/SM
+tumultuous/PY
+tumulus/M
+Tumwater/M
+tun/W7rdSMZ
+tuna/MS
+Tunbridge/M
+Tundergarth/M
+tundish
+tundra/SM
+tune/ACSGD
+tune/M
+tuneable
+tuneage/M Noun: uncountable
+tuneful/PY
+tuneless/YP
+tunesmith/SM
+tungstate/SM
+tungsten/SM
+tungstenocene/SM
+Tunguska/M
+tunic/SM
+tunica/M
+Tunica/M
+tunicae/M
+tunicate/SD
+tunicle/MS
+tuning/SM
+Tunis/M
+Tunisia/M
+Tunisian/SM
+Tunley/M
+tunnel/JSRGDM
+tunny/MS
+Tunstal/M
+Tunstall/M
+Tunstead/M
+Tunworth/M
+Tuolumne/M
+Tupac/M
+Tupamaro/MS
+Tupelo/M
+tupelo/SM
+Tupholme/M
+Tupi/MS
+tuple/SM
+tuppence/SM
+Tupper/M
+Tupperware/M
+Tupton/M
+Tuque/M
+Tur/M
+Turangi/M
+Turanian
+turban/SM
+turbaned
+turbary/M
+Turbellaria Taxonomic class
+turbellarian/MS
+turbid/Y
+turbidite/SMW
+turbidity/MS
+turbidness/M Noun: uncountable
+turbinal/SM
+turbinate/SD
+turbination/MS
+turbine/SM
+turbit/MS
+turbo/SM
+turboboost
+turbocharge/DGR
+turbofan/MS
+turbojet/SM
+turbolift/SM
+turboprop/SM
+turbot/SM
+turbulence/MS
+turbulent/Y
+Turco/MS
+Turcoman/MS
+turd/SM
+turdoid
+tureen/SM
+Turf/M
+turf/MGZDS
+turfgrass/SM
+turfy/T
+turgescence/M
+turgescent
+turgid/Y
+turgidity/SM
+Turgis/M
+Turin/M
+Turing/M
+Turingery/M
+turismo/MS
+Turitea/M
+Turk/SWM
+Turkdean/M
+Turkestan/M
+Turkey/M
+turkey/MS
+Turkic/M
+Turkington/M
+Turkish/M Noun: uncountable
+Turkistan/M
+Turkle/M
+Turkmen/SM
+Turkmenistan/M
+Turkoman/MS
+Turku/M
+Turkwel/M
+Turlock/M
+turlough/SM
+Turmenistan/M
+turmeric/MS
+turmoil/M Noun: usually uncountable
+turn-buckle/SM
+turn-off/SM
+turn-up/SM
+turn/AScGD
+turnable
+turnabout/MS
+turnaround/MS
+Turnastone/M
+turnback/SM
+turnbuckle/SM
+Turnbull/M
+turncoat/SM
+turncock/SM
+Turnditch/M
+turndown/SM
+turner/AS
+Turner/M
+turner/M
+Turnerspuddle/M
+turnery/SM
+Turnford/M
+turning/SM
+turnip/SM
+turnkey/SM
+turnout/MS
+turnover/MS
+turnpike/SM
+turnround/SM
+turnsole/MS
+turnspit/MS
+turnstile/SM
+turnstone/MS
+turntable/MS
+Turnworth/M
+Turonian
+turpentine/SM
+Turpin/M
+turpitude/MS
+turquoise/MS
+turret/MS
+turreted
+Turriff/M
+turtle-dove/SM
+turtle-neck/DSM
+turtle/MS
+Turtlecreek/M
+turtleshell
+Turton/M
+Turvey/M
+Turville/M
+turvy
+Turweston/M
+Tuscaloosa/M
+Tuscan/SM
+Tuscany/M
+Tuscarawas/M
+Tuscola/M
+tush/SM
+Tushingham-cum-Grindley/M
+tusk/DRGMS
+Tuskegee/M
+tusky/M
+Tusmore/M
+tussah/SM
+Tussauds/M
+tussive
+tussle/SDG
+tussock/MSZ
+tussore/SM
+Tustin/M
+tut-tut/SGDM
+tut/SGD
+Tutankhamen/M
+Tutankhamun/M
+Tutbury/M
+tutee/SM
+tutelage/MS
+tutelar
+tutelary/SM
+Tutnall/M
+tutor/dSM
+tutorage/MS
+tutorial/MSY
+tutorship/SM
+tutsan/SM
+Tutsi/M
+tutti/SM
+Tuttington/M
+Tuttle/M
+Tutu/M
+tutu/MS
+Tuvalu/M
+Tuvaluan/SM
+Tux/M
+Tuxford/M
+TV/SM
+TVA/M
+TW/SM
+TWA/M
+twaddle/SM
+Twain/M
+twain/SM
+twang/DGZSM
+twangy/T
+twat/SGD
+twayblade/SM
+tweak/DSRG
+Twechar/M
+twee/T
+Tweed/M
+tweed/MS2Z
+Tweedie/M
+Tweedledee/M
+Tweedledum/M
+Tweedmouth/M
+Tweedsmuir/M
+Tweedy/M
+tweedy/T
+tween/SM
+tweenager/SM
+tweeness
+tweenie/SM
+tweeny/M
+tweeps
+tweet/SRGD7
+tweetup/SM
+tweeze/SDGR
+twelfthly
+twelve/H
+Twemlow/M
+twenty-eight/H
+twenty-first/S
+twenty-five/H
+twenty-four/H
+twenty-nine/H
+twenty-one
+twenty-onefold
+twenty-second/S
+twenty-seven/H
+twenty-six/H
+twenty-three/H
+twenty-twenty
+twenty-two
+twenty-twofold
+twenty/SH
+Twentynine/M
+twentysomething/SM
+twerk/SMGD
+twerp/MS
+Twersky/M
+Twerton-on-Avon/M
+twibill/MS
+twice
+twice-married
+Twichell/M
+Twickenham/M
+twiddle/YGDSR
+twiddly/T
+twig/SMZDG
+twiggy/T
+Twigworth/M
+twilight/SM
+twilit
+twill/DSG
+twin-tub/SM
+twin/DSdGM
+Twin/M
+twine/SM
+Twineham/M
+twinflower/SM
+twinge/DMGS
+twink/SM
+Twinkie/M
+twinkle/YGDSM
+Twinsburg/M
+twinset/SM
+Twinstead/M
+twirl/DRGS
+twirly/T
+twirp/SM
+twist/RZGSD
+Twisthaler/M
+Twiston/M
+twistor/SM
+twit/DGSM
+twitch/SGDZr
+Twitchen/M
+twitchy/T
+twitter/dSZr
+Twitter/M
+twittish
+Twizel/M
+two-dimensional/Y
+two-edged
+two-faced
+two-handed
+two-sided
+two-step/SM
+two-stroke/MS
+two-thirds
+two-timer/SM
+two-tone
+two-way/SM
+two-wheeler/MS
+Two/M
+two/SM
+Twofish/M
+twofold
+twonk/SM
+twopence/SM
+twopenn'orth
+twopenny/SM
+twosome/SM
+twotino/SM
+Twp
+TWX Abbreviation: teletypewriter exchange
+Twycross/M
+Twyford/M
+Twyman/M
+Twynholm/M
+Twyning/M
+Twynnells/M
+Twywell/M
+Ty/M
+Tyas/M
+Tybee/M
+Tyberton/M
+Tyche/M
+Tychicus/M
+Tycho/M
+tycoon/SM
+Tydd/M
+Tydfil/M
+Tyga/M
+Tyglyn/M
+tying/UA
+tyke/SM
+Tyldesley/M
+Tylenol/M
+Tyler/M
+Tylor/M
+Tylorstown/M
+tylosis/M
+Tymn/M
+Tymovirales Taxonomic order
+tympan/SMW
+tympani/SM
+tympanist/MS
+tympanum/SM
+Tynan/M
+Tyndale/M
+Tyndall/M
+Tyne/M
+Tynecastle/M
+Tyneham/M
+Tynemouth/M
+Tyneside/M
+Tyngsborough/M
+Tyninghame/M
+Tynron/M
+Tynwald/M
+type/aASGD
+type/MO
+typecast/G
+typeface/MS
+typescript/MS
+typeset/RSG
+typewriter/MS
+typewriting
+typewritten
+typhoid/SMO
+typhoon/SM
+typhus/M Noun: usually uncountable
+typical/Y
+typicality/M Noun: usually uncountable
+typifier/SM
+typify/DGS
+typo/3MS
+typographer/MS
+typography/SWMw1
+typology/wSM13
+Tyra/M
+tyrannicide/SMO
+tyrannosaur/MS
+tyrannosaurid/SM
+tyrannosaurus/SM
+tyrannous/Y
+tyrannulet/SM
+tyranny/8SQ1Mw
+tyrant/SM
+Tyre/M
+tyre/SM
+Tyree/M
+Tyrian/MS
+Tyrie/M
+Tyringham/M
+tyro/SM
+Tyrol/M
+Tyrolean/SM
+Tyrolese/M
+Tyrone/M
+Tyronn/M
+tyrosinase/SM
+tyrosine/SM
+Tyrrhene/MS
+Tyrrhenian/MS
+Tyschtschenko/M
+Tysoe/M
+Tyson/M
+Tythby/M
+Tythegston/M
+Tytherington/M
+Tytherley/M
+Tytherton/M
+Tywardreath/M
+Tywyn/M
+Tzameret/M
+tzar/SM
+tzarina/MS
+tzatziki/M Noun: usually uncountable
+tzigane/SM
+Tzipora/M
+Tzu/M
+Tzukim/M
+u
+U
+U-boat/SMr
+U.K./M
+U.N./M
+U.S./M
+UAC/M
+UAE/M
+UAR/M Initialism of United Arab Republic
+UART/SM Initialism of universal asynchronous receiver transmitter
+UAV/SM
+UAW/M Initialism of United Automobile Workers
+UB40/S
+Ubbeston/M
+ubiquitarian/SM
+ubiquitarianism/M Noun: uncountable
+ubiquitin/SM
+ubiquitinate/SGDN
+ubiquitism/M Noun: uncountable
+ubiquitist/SM
+ubiquitous/YP
+ubiquity/SM
+Ubley/M
+Ubuntu/M
+Ucha/M
+Uchaf/M
+Uchiyama/M
+Uchter/M
+Uckerby/M
+Uckfield/M
+Uckington/M
+UCL/M Initialism of University College London
+UCLA/M Initialism of University of California, Los Angeles
+udal/SM
+Udall/M
+Udalovas/M
+Udanga/M
+udder/SM
+Uddingston/M
+Udemy/M
+UDF/SM
+UDG/SM
+Udham/M
+Udimore/M
+Udmurt/M
+Udny/M
+Udod/M
+UDP/SM
+UEFA/M
+UEFI/M
+Ueland/M
+UFD/SM Initialism of unique factorization domain
+Uffculme/M
+Uffington/M
+Ufford/M
+UFO/SM Initialism of unidentified flying object
+ufology/SMw3
+Ufton/M
+Uganda/M
+Ugandan/SM
+Ugarte/M
+Ugborough/M
+Uggeshall/M
+Ugglebarnby/M
+ugh/F
+Ugley/M
+uglify/SGDN
+ugliness
+Uglow/M
+ugly-looking
+ugly/TY
+Ugrian
+Ugric
+Ugthorpe/M
+uh
+UHD/M Initialism of ultra-high definition
+UHF/SM
+Uhrin/M
+Uhura/M
+UI/SM
+UID/SM
+Uig/M
+Uigur/MS
+Uinta/M
+Uintah/M
+Uist/SM
+Uitlander/M
+UK/M
+ukase/SM
+Ukiah/M
+Ukraine/M
+Ukrainian/MS
+ukulele/SM
+UL/SM
+Ulaanbaatar/M
+Ulan/M
+ULAplus/M
+Ulbricht/M
+Ulceby/M
+ulcer/VMS
+ulcerate/SGDn
+ulcered Adjective
+ulcerous
+Ulcombe/M
+Uldale/M
+ulema/MS
+Uley/M
+Ulladulla/M
+ullage/SM
+Ullapool/M
+Ullenhall/M
+Ulleskelf/M
+Ullesthorpe/M
+Ulley/M
+Ullingswick/M
+Ullmann/M
+Ullswater/M
+Ullyatt/M
+Ulm/M
+ulna/M
+ulnae/M
+ulnar
+Ulnes/M
+Uloric/M
+Ulph/M
+Ulpha/M
+Ulrich/M
+Ulrika/M
+Ulrike/M
+Ulrome/M
+Ulster/M
+ulster/MS
+Ulsterman/M
+Ulstermen/M
+Ulsterwoman/M
+Ulsterwomen/M
+ulterior/Y
+ultima
+ultimacy/SM
+ultimata/M
+ultimate/Y
+ultimatum/MS
+ultimo
+ultimogeniture/M
+Ulting/M
+ultisol/SM
+ultra-fine
+ultra-high
+ultra-thin
+ultra/SM
+ultrabasic
+ultrabook/SM
+ultracentrifugation
+ultracentrifuge/ODMS
+ultracold
+ultracompetent
+ultraconservatism/M Noun: uncountable
+ultraconservative/SM
+ultracritical
+ultradian
+ultrafast
+ultrafastidious
+ultrafiltration/SM
+ultraism/M
+ultraist/MS
+ultralight/SM
+ultramafic/SM
+ultramarathon/SMr
+ultramarine/SM
+ultramicroscope/SMW
+ultramicrotome/SM
+ultramodern
+ultramontane/SM
+ultramontanism/SM
+ultramundane
+ultranationalism/SM
+ultranationalist/SMW
+ultraportable/SM
+ultrarapid
+ultrasafe
+ultrasaurus
+ultrasensitive
+ultrashort
+ultrasonic/SY
+ultrasonography/SMW
+ultrasound/SM
+ultrastructure/SMO
+ultraviolet
+Ultrix/M
+ululant
+ululate/nSGD
+Ulva/M
+Ulverscroft/M
+Ulverston/M
+Ulverstone/M
+Ulyanov/M
+Ulysses/M
+um
+umami/M Noun: uncountable
+Umang/M
+Umar/M
+Umatilla/M
+Umawera/M
+Umbanda/M
+umbel/SM
+umbellar
+umbellate
+umbellifer/SM
+Umbelliferae
+umbelliferous
+umbellule
+umber/SM
+Umberto/M
+umbilic/SM
+umbilical/Y
+umbilicate
+umbilici/M
+umbilicus/MS
+umbo/SM
+umbonal
+umbonate
+umbones
+umbra/SMO
+umbrae/M
+umbrage/SM
+umbrageous
+umbrella/DMS
+umbrellabird/SM
+Umbria/M
+Umbrian/MS
+Umbriel/M
+umbriferous
+umiak/MS
+UMIST/M Initialism of University of Manchester Institute of Science and Technology
+umlaut/GDSM
+umpirage/M
+umpire/DMGS
+umpteen
+umpteenth
+un-English
+UN/M Initialism of United Nations
+Una/M
+unabated/Y
+unabating
+unabbreviated
+unable
+Unabomber/M
+unabridged
+unabsorbed
+unacademic
+unaccented
+unacceptability
+unacceptable/Y
+unacceptableness/M
+unaccepted
+unaccommodating
+unaccompanied
+unaccomplished
+unaccountability/M
+unaccountable
+unaccountableness/M
+unaccounted
+unaccredited
+unaccreted
+unaccustomed/Y
+unacknowledged
+unacquainted
+unactionable
+unadaptable
+unadapted
+unaddressed
+unadjacent
+unadorned
+unadulterated
+unadventurously Adverb
+unadvertised
+unadvisable
+unadvisedly
+unadvisedness/M
+unaesthetic
+unaffected/Y
+unaffectedness/M
+unaffiliated
+unaffordable
+unaggressive
+unaided
+unaired
+unalarmed
+Unalaska/M
+unalienated
+unaligned
+unalike
+unalive
+unalleviated
+unallied
+unallowable
+unalloyed
+unalterable/Y
+unaltered
+unamazed
+unambiguity/M Noun: usually uncountable
+unambitiousness
+unambivalent/Y
+unamendable
+unamended
+unamiable
+unamplified
+unamusable
+unamused
+unanalysable
+unanchored
+Unani/M
+unanimated
+unanimity/SM
+unanimous/Y
+unannotated
+unannounced
+unanswerable
+unanswered
+unapologetic/Y
+unapparent
+unappealing
+unappeasable
+unappeased
+unappreciative
+unappropriated
+unapproved
+unarchive/SGD
+unarm/DGS
+unarranged
+unartistic/Y
+unary/SM
+unascertainable
+unascertained
+unashamedness
+unasked
+unaspirated
+unassailability
+unassailable/Z
+unassailableness
+unassertive
+unassignable
+unassimilable
+unassimilated
+unassisted
+unassociated
+unassuaged
+unassuming/YP
+unattainable
+unattempted
+unattended
+unattenuated
+unattested
+unattractiveness
+unattributed
+unaugmented
+unauthentic/Y
+unavailable
+unavailableness/M
+unavailing/Y
+unavenged
+unavoidability
+unavoidable/Z
+unavoidableness
+unavowed
+unaware/S
+unawareness
+unawed
+unbacked
+unbaked
+unbalance/SGDM
+unban/SGD
+unbanked
+unbearable/Z
+unbearableness
+unbeatable/Z
+unbeaten
+unbeautiful/Y
+unbecomingness
+unbefitting/YP
+unbeholden
+unbeknown
+unbeknownst
+unbelief/M
+unbelievably
+unbelieving/Y
+unbeloved
+unbelt/SGD
+unbendable
+unbent
+unbiased
+unbiblical
+unbid/SG
+unbiddable
+unbidden
+unbind/G
+unbirthday/SM
+unbleached
+unblemished
+unblessed
+unblest
+unblind/SGD
+unblinking/Y
+unblock/SGDr
+unbloodied
+unblown
+unblur/SGD
+unboiled
+unbonnet/S
+unbonneted
+unbonneting
+unbooked
+unbookish
+unbothered
+unbottle/SGD
+unbound/iDh
+unbowed
+unbox/SGD
+unbrace/DGS
+unbranched
+unbreachable
+unbreakable
+unbreathable
+Unbrent/M
+unbribable
+unbridled
+unbrokenness
+unbruised
+unbrushed
+unbuckle/SGD
+unbudgeable
+unbudging
+unbuffered
+unbuild/SG
+unbuilt
+unburden/d
+unburned
+unburnished
+unburnt
+unbury/DGS
+unbusinesslike
+unbuttered
+uncached
+uncage/DGS
+uncalculated
+uncalled-for
+uncandid
+uncannier
+uncanniest
+uncanonical/Y
+uncap/DGS
+uncapitalized
+uncarboxylated
+uncared
+uncaring
+uncarpeted
+uncase/DGS
+uncatalogued
+uncatchable
+uncategorised
+uncatered
+unceasing/Y
+unceded
+uncelebrated
+uncensored
+unceremoniousness/M
+uncertainness
+uncertificated
+unchallengeable/Z
+unchallenged
+unchallenging
+unchancy
+unchangeability/M
+unchangeable/Z
+unchangeableness/M
+unchanged
+unchanging/Y
+unchaperoned
+uncharged
+uncharismatic
+uncharitableness
+uncharted
+unchartered
+unchaste/Y
+unchastened
+unchastity
+uncheck/SGD
+unchewed
+unchivalrous/Y
+unchosen
+unchristened
+unchristian/Y
+unchurch/SGD
+uncial/SM
+uncinate
+uncirculated
+uncircumcised
+uncircumscribed
+uncivil/Y
+uncivilised
+uncivilized
+unclad
+unclaimed
+unclamp/SGD
+unclarity
+unclassical
+unclassifiable
+unclassified
+uncle/MS
+unclean/P
+uncleanliness
+unclear/DYP
+unclimbed
+unclinch/DGS
+unclip/SGD
+uncloak/DGS
+unclog/GDS
+uncloister/Sd
+unclosable
+unclose/DGS
+uncloseable
+unclothes
+uncloudy
+unclubbable
+unclutch/DGS
+uncluttered
+unco/MS
+uncoded
+uncodified
+uncollated
+uncollimated
+uncolonised
+uncoloured
+uncombed
+uncombined
+uncomely
+uncomfortable/Y
+uncomforted
+uncommon/Y
+uncommunicated
+uncommunicative
+uncompacted
+uncompanionable
+uncompassionate
+uncompelling
+uncompensated
+uncompetitive/PY
+uncompleted
+uncomplexed
+uncomplicated/Y
+uncomplicatedness
+uncompounded
+uncomprehending/Y
+uncomprehension/M Noun: uncountable
+uncompress/SGD
+uncompromised
+uncompromisingness
+unconcealed
+unconcentrated
+unconditional
+unconditionality
+unconducive
+unconference/SM
+unconfessed
+unconfident/Y
+unconfined
+unconfirmed
+unconformable/Z
+unconfused
+uncongested
+unconjugal
+unconjugated
+unconnected/Y
+unconnectedness/M
+unconquerableness/M
+unconquerably
+unconquered
+unconscionable/Y
+unconsciousness
+unconsecrated
+unconsenting
+unconsidered
+unconsolable/Z
+unconsolidated
+unconstitutional
+unconstitutionality
+unconstrainedly
+unconstructive
+unconsulted
+unconsumed
+unconsummated
+uncontactable
+uncontainable
+uncontended
+uncontracted
+uncontradicted
+uncontrived
+uncontrollability
+uncontrollable/Z
+uncontrollableness/M
+uncontrolled/Y
+uncontroverted
+uncontrovertible
+unconventional
+unconventionalism
+unconvinced
+uncool/D
+uncooperatively
+uncooperativeness/M
+uncoordinated
+uncopiable
+uncord/SGD
+uncork/SGD
+uncorrectable
+uncorrected
+uncorrelated
+uncorroborated
+uncorrupted
+uncosted
+uncountability
+uncountable/Z
+uncouple/DGS
+uncourtly
+uncouth/Y
+uncouthness
+uncover/d
+uncrackable
+uncreased
+uncreate/DGS
+uncreative
+uncredited
+uncrewed
+uncrown/DGS
+uncrushable
+unction's/I
+unction/M
+unctuous/Y
+unctuousness
+uncuff/SGD
+uncultivable
+uncultivated
+uncultured
+uncured
+uncurl/DGS
+uncurrent
+uncurtained
+uncustomary
+uncut
+undamaged
+undatable
+undated/I
+undaunted/Y
+undead
+undebatable
+undebated
+undecagon/MS
+undecanoic
+undecidability
+undecidable
+undecided/SY
+undeciphered
+undecylic
+undedicated
+undefeatable
+undefended
+undefiled
+undefined
+undelete/DGN
+undeliverable
+undelivered
+undemanding
+undeniable/Y
+undenominational
+undented
+undependable
+under
+under-investment
+under-read
+under-report
+under-represent
+under-representation
+under-secretary/SM
+underachievement
+underact/SGD
+underactive
+underage/SM
+underappreciate/DN
+underarm/SM
+Underbarrow/M
+underbid/G
+underbidder/MS
+underbody/SM
+underboss/SM
+underbred
+underbridge/SM
+undercapitalise/SGD
+undercapitalize/SGD
+undercard/SM
+undercart/MS
+undercast/SG
+underclass/SM
+undercliff/SM
+undercoat/SGDM
+undercook/DGS
+undercool/DGS
+undercount/SGDM
+undercover
+undercroft/SM
+undercurrent/MS
+undercut/GS
+Underdale/M
+underdetermine/SGDN
+underdog
+underdrawing/SM
+underdress/SGD
+underemphasis
+underestimations
+underfeed/G
+underfloor
+underflow/M
+underfoot
+underframe
+underfunding
+underfur
+undergarment/MS
+undergird/SGD
+underglaze/M
+undergone
+undergrad/MS
+undergraduate/MS
+underground/MS
+underhand/hi
+underheat/SGD
+underhung
+underinflated
+underinflation
+underinvest/SGD
+underlaid
+underlay/G
+underlease
+underlet/SG
+underline
+underling/MS
+underlip/MS
+undermentioned
+undermine/RGDS
+undermost
+underneath/S
+underpainting
+underpants
+underpass/M
+underpay
+underperform/SG
+underperformance
+underpin/D
+underpinning/M
+underplant/SD
+underplot/MS
+underpopulation
+underprepared
+underprice/SGD
+underproof
+underprop/SGDJ
+underqualified
+underquote/SGD
+underrate/GSD
+undersample/SGD
+undersaturated
+undersaturation
+underscrub/M
+undersea
+underseal/SGD
+undersecretary/SM
+undersense
+underserved
+underset/SG
+Undershaft/M
+undersheriff
+undershot
+undershrub/S
+undersigned/M
+undersize/D
+Underskiddaw/M
+underskirt/MS
+underslung
+undersoil/M
+undersow/SGD
+undersown
+underspecification
+underspend/G
+understaffing
+understand/aJSG
+understandability
+understandable/Y
+understander
+understanding/aM
+understanding/Y
+understater/S
+understeer/SGD
+understood/a
+understory/S
+understrength
+understructure
+understudy/M
+undersupply/S
+undersurface
+undertaking/M
+undertone
+undertow/MS
+undertrick/MS
+undervalue
+undervest/MS
+underwater
+underway
+underwear/M Noun: uncountable
+underweight/DS
+underwing/S
+underwire/SD
+underwood/M
+Underwood/MS
+underwork/D
+undescended
+undeserving
+undesignated
+undesigned/Y
+undesirable/SZ
+undesired
+undesirous
+undestroyed
+undetectability
+undetectable/Z
+undetected
+undetermined
+undeterred
+undetonated
+undeviating/Y
+undiagnosed
+undies
+undifferenced
+undifferentiated
+undigested
+undignified
+undiluted
+undiminished
+undimmed
+undine/S
+undiplomatic/Y
+undiscerning
+undischarged
+undisciplined
+undisclosed
+undiscoverable
+undiscovered
+undiscriminating
+undiscussable
+undiscussed
+undiscussible
+undisguised/Y
+undismayed
+undisputable
+undisputed/Y
+undisrupted
+undissociated
+undissolved
+undistinguished
+undistorted
+undistracted
+undistributed
+undisturbed
+undiversified
+undo/G7
+undock/DGS
+undocumented
+undogmatic
+undomesticated
+undoubtable
+undoubted/Y
+undrained
+undramatic
+undraw/SG
+undrawn
+undreamed
+undreamt-of
+undress/G
+undrew
+undrinkable
+undrunk
+undue
+undulant
+undulate/SnDG
+unduplicated
+Undy/M
+undye/SGD
+unearned
+unearth/DYSG
+unearthliness
+unease/2M
+uneatable
+unedified
+unedifying
+uneditable
+uneducable
+uneffected
+unelectable
+unelected
+unembarrassed
+unembellished
+unemotional
+unemphatic/Y
+unenclosed
+unencrypt/SGD
+unencumbered
+unencyclopaedic
+unencyclopedic
+unending/YP
+unendowed
+unendurable/Z
+unenergetic
+unenergised
+unenergized
+unenforceable
+unenforced
+unenforcible
+unengaged
+unenjoyable
+unenlightened
+unenlightening
+unenlightenment
+unenriched
+unenterprising
+unenveloped
+unenviable
+unenvied
+unequal/D
+unequalised
+unequalising
+unequalized
+unequivocalness/M
+unergonomic
+unescapable
+unescape/SGD
+Unesco/M
+UNESCO/M Acronym of United Nations Educational, Scientific and Cultural Organization
+unescorted
+unessential
+unestablished
+unevaluated
+unevangelical
+uneven/Y
+unevenness
+uneventful/PY
+unevolved
+unexacting
+unexaggerated
+unexamined
+unexampled
+unexceptionable/Y
+unexcitability
+unexcitable
+unexecuted
+unexpanded
+unexpended
+unexpired
+unexplainably
+unexplained
+unexploded
+unexplored
+unexposed
+unexpressed
+unexpurgated
+unextended
+unfading/Y
+unfailing/Y
+unfair/PY
+unfaithfulness
+unfalsifiable
+unfamiliar/Y
+unfamiliarity
+unfashionable/Y
+unfashioned
+unfatherly
+unfathomable/Y
+unfathomed
+unfavourable/Z
+unfavoured
+unfazed
+unfeasibility
+unfeasible/Z
+unfeathered
+unfeeling/Y
+unfeigned
+unfelt
+unfeminine
+unfenced
+unfermented
+unfertilised
+unfertilized
+unfiled
+unfilmed
+unfiltered
+unfindable
+unfinished
+unfired
+unfit/SPDG
+unfittingly
+unfix/SG7D
+unflappability
+unflappable/Y
+unflavoured
+unflawed
+unfledged
+unfleshed
+unflinching/Y
+unfocused
+unfocussed
+unfold/G
+unfollow/DG
+unforced
+unfordable
+unforeseen
+unforested
+unforgeable
+unforgivable/Z
+unforgiven
+unforgiving/PY
+unforgotten
+unforked
+unformatted
+unformulated
+unfortified
+unfought
+unframed
+unfree
+unfreedom
+unfreeze
+unfrequented
+unfriend/SDG
+unfriendliness/SM
+unfrozen
+unfruitful/Y
+unfruitfulness/M Noun: uncountable
+unfulfillable
+unfulfilled
+unfulfilling
+unfunny
+unfurnished
+unfused
+unfussy/Y
+ungainliness/M Noun: usually uncountable
+ungainly
+ungainsayable
+ungallant/Y
+ungarrisoned
+ungeared
+ungenerous/PY
+ungentle
+ungentlemanliness/M Noun: uncountable
+ungentleness/M Noun: uncountable
+ungiving
+unglazed
+unglue/SGD
+ungodlier
+ungodliness
+ungodly
+ungoogleable
+ungovernably
+ungoverned
+ungraceful/Y
+ungraciousness
+ungraded
+ungrammatical/Y
+ungrammaticality
+ungrateful/Y
+ungratefulness
+ungratified
+ungratifying
+ungrounded
+ungroup/SGD
+ungrudging
+ungual
+unguarded/Y
+unguent/S
+unguessed
+unguided
+ungulate/S
+unhackneyed
+unhallowed
+unhampered
+unhand/GZ
+unhandled
+unhandsome/Y
+unhang
+unhappen
+unhappiness
+unhardened
+unharmed
+unharmonious
+unharmonised
+unharvested
+unhatched
+unhealed
+unhealthful
+unhealthiness
+unheard-of
+unhearing
+unhedged
+unheeded
+unheedful
+unheeding/Y
+unhelpful/Y
+unhelpfulness
+unheralded
+unheretical
+unheroic/Y
+unhewn
+unhindered
+unhistorical
+unhitch/G
+unholy/RTP
+unhonoured
+unhook/DGS
+unhorse
+unhouseled
+unhuman
+unhung
+unhurt
+unhygienic
+unhyphenated
+uni
+Uniat/MS
+Uniate/MS
+uniaxial/Y
+unibody/S
+unicameral
+unicameralism
+unicameralist
+unicast
+UNICEF/M Initialism of United Nations International Children's Emergency Fund
+unicellular
+unicity
+Unicode/M
+Unicoi/M
+unicolour/D
+unicorn/SM
+unicuspid
+unicycle/DMG3S
+unideal
+unidentate
+unidentative
+unidimensional
+unidiomatic
+unidirectional/Y
+unidirectionality
+uniface
+unifiable
+unification/MA
+unifier/MS
+uniform/SMYD
+uniformitarian/S
+uniformitarianism
+uniformity/MS
+unify/AGSnD
+unilateral/Y
+unilateralism/M
+unilateralist/S
+Unilever/M
+unilingual/Y
+unilingualism
+unilluminated
+unilocular
+unimodal
+unimolecular
+unimpassioned
+unimpeachable/Y
+unimpeded
+unimplementability
+unimportance
+unimportant
+unimposing/Y
+unimpressed
+unimpressive
+unimproved
+unindented
+unindustrialised
+uninfected
+uninflamed
+uninflected
+uninfluenced
+uninfluential
+uninformed
+uninhibited/Y
+uninhibiting
+uninitialised
+uninitialized
+uninitiated
+uninjured
+uninspired
+uninspiring
+uninstal/S
+uninstall/SGDR
+uninstallation/S
+uninstantiated
+uninstructed
+uninsulated
+uninsured
+unintegrated
+unintellectual
+unintelligibility/M
+unintelligibly
+uninterestingness
+uninterpretable
+uninterrupted/YP
+uninterruptible
+unintuitive
+uninucleate
+uninventive/YP
+uninvested
+uninvestigated
+uninvited/Y
+uninviting/Y
+uninvoked
+uninvolved
+union's/EA
+Union/M
+union/qQ3
+Uniondale/M
+unionism/MS
+unionistic
+unionization/M
+unionize/DGS
+unions/EA
+Uniontown/M
+uniparous
+uniped/MS
+unipersonal
+uniplanar
+uniplex
+unipod/MS
+unipolar
+unipolarity
+unipotent
+uniprocessor
+unique/YP
+unironed
+unironic/Y
+uniserial
+unisex
+unisexual/Z
+unisexuality
+UNISON
+unison/OS
+unisonance/MS
+unisonant
+unisonous
+unissued
+Unisys/M
+unit/dO
+UNITA/M
+unitard/SM
+Unitarian/SM
+Unitarianism/M
+Unitarianize/DGS
+unitarism
+unitarist/S
+unitarity
+unitary/MSY
+unite/AGEDS
+unite/h
+United/M
+unitemised
+Uniting/M
+unitise/SGD
+unitive
+Unity/M
+unity/MES
+univalent/SM
+univalve/SM
+univariate
+universal/8QS
+Universal/M
+universalism/SM
+universalist/SW
+universality/SM
+universe/oMS
+universitarian/SM
+University/M
+university/MS
+univocal/Y
+univocality
+Unix/M
+unjacketed
+unjaded
+unjealous
+unjointed
+unjoyful
+unjoyous
+unjust
+unjustified
+unkempt
+unkept
+unkeyed
+unkillable
+unkind/YP
+unkindest
+unkindliness/M Noun: uncountable
+unking/SGDY
+unkink/SGD
+unkissed
+unknightly
+unknit/SGD
+unknot/SGD
+unknowability
+unknowable
+unknowableness/M Noun: uncountable
+unknowing/PY
+unknowledgable
+unknowledgeable
+unknownness/SM
+unlabelled
+unlaborious
+unladylike
+unlaid
+unlamented
+unlap
+unlashed
+unlatch/DGS
+unlaundered
+unlawfulness
+unlay/G
+unleaded
+unlearnedly
+unleavened
+unled
+unlenited
+unless
+unlessoned
+unlettered
+unlevel/SGD
+Unley/M
+unliberated
+unlicensed
+unlicked
+unlike/P
+unlineal
+unlink/DGS
+unlisted
+unlistening
+unlit
+unliterary
+unlively
+unliving
+unload/Gr
+unlobed
+unlocated
+unlock/DGS
+unlockable
+unlogical
+unlooked-for
+unloose/DGS
+unlopped
+unlordly
+unlosable
+unlost
+unlovable
+unloved
+unloveliness/M
+unlovely
+unloving/Y
+unlovingness/M
+unluckiness
+unluxuriant
+unluxurious
+unmagnified
+unmaintainable
+unmaintained
+unmalicious
+unman/DGSY
+unmanageable/Y
+unmanaged
+unmanifest/D
+unmanlike
+unmanliness/SM
+unmannered/Y
+unmannerliness/M Noun: uncountable
+unmannerly
+unmantle/SGD
+unmanufacturable
+unmanufactured
+unmanumitted
+unmappable
+unmapped
+unmaritime
+unmark/SGDi
+unmarketable
+unmarketed
+unmarriable
+unmarriageable
+unmarry/SGD
+unmarshalled
+unmartial
+unmartyred
+unmarvellous
+unmasculine
+unmask/DGS
+unmasker/MS
+unmassacred
+unmassed
+unmassy
+unmast/SGD
+unmaster/SdY
+unmasterable
+unmasticated
+unmatch/SGDp
+unmatchable/Y
+unmate/SGD
+unmaterial
+unmaternal
+unmathematical
+unmatriculated
+unmeaning
+unmeasurably
+unmeasured
+unmechanical
+unmechanised
+unmechanized
+unmediated
+unmedicated
+unmeditated
+unmeek/M
+unmeet/Y
+unmeetable
+unmeetness/M Noun: uncountable
+unmellow/D
+unmelodic
+unmelodious/Y
+unmelodramatic
+unmeltable
+unmelted
+unmelting
+unmember/Sd
+unmemorable/Y
+unmemoried
+unmended
+unmenseful
+unmensurable
+unmentionability
+unmentionable/SMZ
+unmentionableness
+unmentioned
+unmercantile
+unmercenary
+unmerchantable
+unmerciful/P
+unmeritable
+unmerited/Y
+unmeritingly
+unmerry
+unmesh/D
+unmesmerized
+unmet
+unmetabolised
+unmetabolized
+unmetalled
+unmetallic
+unmetamorphosed
+unmetered
+unmethodical/Y
+unmetrical
+unmilitary
+unmindful/Y
+unmindfulness
+unmineable
+unministerial
+unmiraculous
+unmissable
+unmissed
+unmistakable/Y
+unmistakeable/Y
+unmistaken
+unmitigable/Y
+unmitigated/Y
+unmitigating
+unmixed/Y
+unmodernised
+unmodernized
+unmodifiable
+unmodified
+unmodish
+unmodulated
+unmolested
+unmonitored
+unmoor/DGS
+unmoral
+unmorality
+unmortgaged
+unmortified
+unmothered
+unmotherly
+unmould/Z
+unmount/SGD
+unmourned
+unmouthable
+unmovable/Y
+unmovableness
+unmoveable/Y
+unmoved/Y
+unmoving
+unmuffle/D
+unmunch/DMRGS
+unmurmuring/Y
+unmusical/PY
+unmusicality
+unmute/SGD
+unmutilated
+unnail/D
+unnamable
+unnameable
+unnamed
+unnational
+unnatural
+unnaturalness
+unnavigability
+unnavigable
+unnavigated
+unneeded
+unneighbourliness
+unneighbourly
+unnerve/k
+unnoticeably
+unnoticed
+unnoticing
+UNO
+unoaked
+unobedient
+unobjectionable/Y
+unobjective
+unobliging
+unobnoxious
+unobscured
+unobservable
+unobserved/Y
+unobserving
+unobstructed
+unobstructive
+unobtainable
+unobtained
+unobtainium/MS
+unobtrusiveness
+unobvious
+unoffended
+unoffending
+unoffensive
+unofficious
+unoiled
+unopinionated
+unopposed
+unoptimised
+unoptimized
+unordinary
+unorganised
+unorganized
+unoriginal/Y
+unoriginality
+unornamented
+unostentatious/Y
+unostentatiousness/M
+unowned
+unoxidised
+unpackaged
+unpacker/S
+unpadded
+unpaged
+unpainful
+unpaintable/M
+unpainted
+unpair/SDG
+unpalatable/Y
+unpaper/S
+unpapered
+unpapering
+unparallel
+unpardonable
+unpardonableness
+unpardoned
+unparental
+unparented
+unparished
+unparsed
+unpartial
+unpartizan
+unpassable
+unpassionate
+unpassioned
+unpasteurised
+unpasteurized
+unpastoral
+unpastured
+unpatched
+unpatented
+unpathed
+unpathetic
+unpatriotic/Y
+unpatrolled
+unpatterned
+unpaved
+unpayable
+unpeaceful
+unpeeled
+unpeg/SGD
+unpeople/DGS
+unperceived
+unperfect
+unperfumed
+unperilous
+unperishable/MS
+unperpetrated
+unperson/S
+unpersuadable
+unpersuaded
+unpersuasive
+unperturbed/Y
+unphilosophic/YO
+unphysical
+unphysiologic/YO
+unpick/DGS
+unpicturesque
+unpigmented
+unpin/GD
+unplausible/Y
+unplayably
+unplayed
+unpleasant/PY
+unpleasantry/SM
+unpleased
+unpleasing/Y
+unpleasurable/Y
+unpleasure/M
+unploughed
+unplug/SGD
+unplumbable
+unplumbed
+unpoetic/OY
+unpointed
+unpolished
+unpolitic/O
+unpolluted
+unpopular
+unported
+unposed
+unpossessed
+unpower/6
+unpowered
+unpracticable
+unpractical
+unpracticality
+unpracticalness
+unpractised
+unprecedented/Y
+unpredicted
+unprefixed
+unprejudiced
+unpremeditated/Y
+unprepared/P
+unprescribed
+unpresentable
+unpreserved
+unpressed
+unpressured
+unpresuming
+unpriced
+unprincipled
+unprintably
+unprinted
+unprioritised
+unprioritized
+unproblematic
+unproblematical/Y
+unprocessable
+unproduceable/Y
+unproduced
+unprofessional/Y
+unprofessionalism
+unprofitable/Y
+unprompted
+unpronounceability
+unpronounced
+unpropelled
+unprotesting/Y
+unprotrusive
+unproud
+unprovability
+unprovable/P
+unproved
+unprovided
+unprovidential
+unprovisioned
+unprovocative
+unprovoked
+unpublish/SGD
+unpunctual
+unpunished
+unquantifiable
+unquantified
+unquelled
+unquenchable
+unquenched
+unquestionable/Y
+unquiet/YP
+unquote/DBGS
+unrated
+unratified
+unreachableness
+unreachably
+unreacted
+unread/2BZ
+unreadably
+unreadily
+unreal/PY
+unrealisable
+unrealised
+unrealism
+unrealizable
+unrealized
+unreaped
+unreason
+unreasonability
+unreasonable
+unreasoning/Y
+unreceived
+unreceptive
+unreckonable
+unreclaimable
+unreclaimed
+unreclining
+unrecognised
+unrecognition
+unrecognizable/Y
+unrecognized
+unreconciled
+unreconstructed
+unrecordable
+unrecorded
+unrecoverably
+unrecovered
+unredeemed
+unreduced
+unreel/SGD
+unreferenced
+unreferencing
+unreflective/Y
+unrefrigerated
+unrefuted
+unregeneracy
+unregenerate/DY
+unregeneration
+unregistered
+unregulated
+unreimbursed
+unrein/SGD
+unreinforced
+unrejected
+unrejoiced
+unrejoicing
+unrelapsing
+unrelatable
+unrelated/P
+unreleased
+unrelenting/Y
+unreliable/Y
+unrelieved
+unrelieving
+unremarkable
+unremarked
+unremembered
+unremitted/Y
+unremitting/Y
+unremoved
+unremunerated
+unrentable
+unrented
+unrepaid
+unrepair/D
+unrepairable
+unrepeatable
+unrepeated
+unrepresentative
+unreproducible
+unrepugnant
+unrequested
+unrequited
+unresearched
+unreserve
+unreservedness
+unresisting
+unresolved
+unrest/Gk
+unrestorable
+unrestored
+unrestrictive
+unretouched
+unreturned
+unrevealed
+unrevealing
+unreversed
+unreviewed
+unrevised
+unrevoked
+unrightful/YP
+unrightly
+unrightness
+unrigorous
+unringed
+unrip/SGD
+unripe
+unrivalled
+unrivet/S
+unriveted
+unriveting
+unroadworthy
+unroasted
+unrobbed
+unrobe/SGDJ
+unromantic/Y
+unroof/SGD
+unroot/DGS
+unrope/DGS
+unround/DGS
+unroused
+unruffle/SGD
+unruinable
+unruined
+unrulable
+unruled
+unruly/TP
+unrummaged
+unrumpled
+unrung
+unruptured
+unrushed
+unrustling
+unsalaried
+unsaleable
+unsalted
+unsanctified
+unsanctioned
+unsanitised
+unsanitized
+unsatisfactoriness
+unsatisfyingly
+unsaturated
+unsaturation
+unsaved
+unsavoury
+unsay/SG
+unscalable
+unscaleable
+unscaled
+unscarred
+unscathed
+unscented
+unscheduled
+unschooled
+unscored
+unscratched
+unscreened
+unscrew/DGS
+unscriptural
+unscrupulousness
+unseam/SGD
+unsearchable
+unsearched
+unseasonable
+unseasoned
+unseaworthiness
+unsectarian
+unsecure/D
+unseduced
+unseeing/Y
+unseemly
+unsegmented
+unsegregated
+unselect/SGD
+unselfconscious/YP
+unsellable
+unsensational/Y
+unsentimental/Y
+unseparated
+unserious
+unserved
+unserviceability
+unserviceable
+unserviced
+unset
+unsettle/kiL
+unsew/SGD
+unsewn
+unsex/SDG
+unsexual
+unsexy/T3
+unshaded
+unshakable/Y
+unshakeably
+unshaken
+unshaped
+unshapely
+unshared
+unsharp/P
+unsharpened
+unshed
+unshelled
+unsheltered
+unshelteredness
+unshielded
+unshifted
+unship/SGD
+unshockability
+unshockable
+unshod
+unshrinkability
+unshrinkable
+unshrinking/Y
+unshriven
+unshrunk
+unsighted
+unsightliness
+unsightly
+unsignposted
+unsilvered
+unsimplified
+unsinkability
+unsinkable
+unsisterly
+unsized
+unskilful/YP
+unskilled
+unsmart
+unsmoked
+unsnag/SGD
+unsnap/DGS
+unsociability
+unsociably
+unsocial
+unsoiled
+unsolder
+unsolicited
+unsolved
+unsophisticated
+unsought
+unsound/Y
+unsoundness
+unsourced
+unsown
+unspanned
+unsparing
+unspeakable/Y
+unspeaking
+unspecialised
+unspecialized
+unspecific
+unspectacular/Y
+unspellable
+unspendable
+unspirited
+unspiritual/Y
+unspirituality
+unspliced
+unspoiled
+unsponsored
+unspontaneous
+unspool/SGD
+unsporting
+unspotted
+unsprayed
+unsprung
+Unst/M
+unstable/TPY
+unstacked
+unstained
+unstamped
+unstandardised
+unstapled
+unstated
+unsteadiness
+unsterile
+unsterilised
+unstick/SG
+unstimulating
+unstinting/Y
+unstitch/SGD
+unstoppable/Y
+unstratified
+unstring/SG
+unstudiedly
+unstuffed
+unstuffy
+unstylish
+unsubdued
+unsubjugated
+unsubmerged
+unsubscription
+unsubsidised
+unsubstantial
+unsubstantiated
+unsubtle/Z
+unsuccessful
+unsullied
+unsupervised
+unsupported
+unsupportive
+unsuppressed
+unsure
+unsurfaced
+unsurmountable
+unsurpassable/Z
+unsurpassed
+unsurprised
+unsurveyed
+unsusceptibility
+unsusceptible
+unsuspected/Y
+unsuspecting/Y
+unsuspended
+unsuspicious/YP
+unsustainable/Z
+unswathe/SGD
+unswayed
+unswept
+unswerving/Y
+unswollen
+Unsworth/M
+unsymmetrically
+unsynchronized
+unsystematic/Y
+untack/SGD
+untactful
+untag/SGD
+untainted
+untaken
+untalented
+untalkative
+untameable
+untamed
+untampered
+untanned
+untapped
+untargeted
+untarnished
+untasted
+untaxable
+untaxed
+unteachable
+untechnical
+untempered
+untenability
+untenable/Z
+untenableness
+unterminate/SGD
+untestable
+untested
+untether/Sd
+untextured
+unthinkability
+unthinkable/Y
+unthinking/YP
+unthorough
+unthought/6
+unthread/DG
+unthreatened
+unthreatening
+unthrifty/YP
+unthrone/SD
+untick/SGD
+untidy/T
+untie/S
+until/D
+untimed
+untimely
+untinged
+untiring/Y
+untitled
+untogether
+untoned
+untormented
+untouchability
+untouchable/MS
+untouched
+untouristed
+untoward/YP
+untraceably
+untraced
+untracked
+untraditional/Y
+untrainable
+untrained
+untrammelled
+untransferable
+untransformed
+untranslatability
+untransportable
+untransposed
+untrappable
+untravelled
+untraversable
+untreatable
+untrendy
+untried
+untrimmed
+untroubled
+untrue
+untruly
+untrusted
+untrusting
+untrustworthiness
+untrustworthy
+untrusty
+untuck/D
+untuned
+unturned
+untutored
+untwine/DGS
+untwist/DGS
+untyped
+untypical/Y
+untyred
+unutterable/Y
+unuttered
+unvaccinated
+unvalidated
+unvanquished
+unvaried
+unvarnished
+unvaryingness
+unvented
+unventilated
+unventured
+unverifiable
+unversed
+unversioned
+unviability
+unviable
+unviolated
+unvisited
+unvitiated
+unvocalised
+unvocalized
+unvoiced
+unwaged
+unwaisted
+Unwalla/M
+unwalled
+unwanted
+unwarned
+unwarrantable/Y
+unwarranted
+unwashed
+unwatch/6SGD7
+unwatered
+unweaned
+unweary/G
+unwedded/P
+unweighed
+unweighted
+unwell
+unwellness
+unwept
+unwhipped
+unwieldiness
+unwieldy
+unwillingness
+unwinged
+unwinking/Y
+unwinnable
+unwired
+unwisdom
+unwise/PY
+unwit/SGD
+unwomanly
+unwonted/P
+unworkability
+unworkableness
+unworkably
+unworked
+unworkmanlike
+unworldly
+unworried
+unworthy/P
+unwound/D
+unwrap/GDS
+unwrinkled
+unwritable
+unwrought
+unyielding/YP
+up-tempo
+up-to-date
+up-to-the-minute
+up/D
+Up/M
+up/MFS
+Upanishad/WMS
+Upavon/M
+upbeat/MS
+upbraid/DSG
+upbringing/MS
+upbuild/SG
+upbuilt
+UPC
+upcase/SD
+upcast/SM
+Upcerne/M
+Upchurch/M
+upcoast
+upcoming
+upcountry
+upcurve/D
+upcycle/SDG
+updatable
+update/DGS
+updater/SM
+Updike/M
+updraught/SM
+upend/SGD
+upfront
+upgradable
+upgrade/DSGn7
+Uphall/M
+Upham/M
+upheaval/SM
+upheave/SGD
+upheld
+Uphill/M
+uphill/SM
+uphold/RGS
+Upholland/M
+upholster/ASd
+upholsterer/SM
+upholstery/SM
+UPI
+upkeep/MS
+Upland/M
+upland/SM
+Uplawmoor/M
+Upleadon/M
+Upleatham/M
+uplift/SDGr
+upliftment
+uplight/SRG
+uplink/GDS
+upload/SDGMr
+Uplowman/M
+Uplyme/M
+upmarket
+Upminster/M
+upmost
+upon/F
+Upottery/M
+upped
+upper-case/DSG
+upper-class/SM
+Upper/M
+upper/SM
+Upperby/M
+uppercase/SGD
+uppercut/SMG
+Upperlands/M
+uppermost
+Upperton/M
+upping
+Uppingham/M
+Uppington/M
+uppish
+uppity
+Uppsala/M
+upraise/SDG
+uprate/SGD
+uprear/SGD
+upregulate/SGDN
+upright/YSP
+uprise
+uprisen
+uprising/SM
+upriver
+uproar/SM
+uproarious/PY
+uproot/SGDr
+uprose
+Upsall/M
+upsample/SDG
+upscale/DSG
+upset/SG
+upshot
+Upshur/M
+upside-down
+upside/MS
+upsilon/MS
+upsize/SGD
+upskill/SGD
+upslope/SM
+Upson/M
+upspeak/SG
+upspoke
+upspoken
+upstage/SDG
+upstairs
+upstanding/P
+upstart/MS
+upstream/M
+upstroke/MS
+upsurge/SM
+upswept
+upswing/MS
+uptake/SMA
+uptalk
+uptempo
+Upthorpe/M
+upthrust/SGD
+uptight
+uptime
+Upton-by-Chester/M
+Upton-upon-Severn/M
+Upton/M
+uptown
+uptrend/SM
+upturn/SGD
+upvote/SGD
+Upwaltham/M
+upward/SY
+Upwell/M
+upwell/SGD
+upwelling/SM
+Upwey/M
+upwind
+Upwood/M
+Ur/M
+uracil/MS
+uraemia/MW
+Ural/S
+Uranian/SM
+uranile
+uraninite
+uranious
+uranism
+Uranist
+uranium/M
+uranocene
+uranoscopid/SM
+uranoscopus
+uranoscopy
+uranospinite
+uranothallite
+uranothorite
+uranous
+Uranus/M
+uranyl
+Urban/M
+urban/qQ8-
+Urbana/M
+Urbandale/M
+urbane/YP
+urbanism/SM
+urbanist/SMW
+urbanite/SZM
+urbanity/MS
+urbanology/M3
+urbanscape/SM
+Urchfont/M
+urchin/MS
+Urdu/M
+urea/M
+ureaplasma/SM
+Urenui/M
+ureter/MS
+ureteral
+ureteric
+urethane/MS
+urethra/MSO
+urethrae
+urethritis/M
+urge/JDGS
+urgency/SM
+urgent/Y
+Uri/M
+Uriah/M
+Uriarte/M
+uridine/SM
+Uriel/M
+urinal/SM
+urinalyses
+urinalysis/M
+urinary
+urinate/DSG
+urine/nMS
+URL/SM
+Urlacher/M
+Urmston/M
+urn/SM
+urnful/S
+urobilin/SM
+urobilinogen/M Noun: uncountable
+Urochordata Taxonomic subphylum
+urochordate/SM
+urodynamic/S
+urogenital
+urogram/SM
+urography/SM
+urokinase/SM
+urolagnia/M Noun: uncountable
+urolithiases
+urolithiasis/M
+urology/wM3W
+uronic
+uropatagia/M
+uropatagium/M
+urophilia/M Noun: uncountable
+uropygia/MO
+uropygium/M
+uroscopy/SM
+urostyle/SM
+Urquhart/M
+Urr/M
+Urray/M
+Ursa/M
+ursine/SM
+Ursula/M
+Ursuline/MS
+Urswick/M
+urticaria/SM
+urticate/DGSn
+Uruguay/M
+Uruguayan/SM
+Urumqi/M
+urus/SW
+Uruti/M
+US/M
+us/rS7dgl
+USA/M
+usable/UA
+USAF/M Initialism of United States Air Force
+usage/SM
+Usain/M
+USART
+USB
+USC/M
+USCG
+USD
+USDA
+use/cEDSAa
+useable
+used/fU
+useful/YP
+useless/YP
+Usenet/M
+user-definable
+user-friendly/PT
+user-generated
+user-hostile
+user/aM
+userland
+username/SM
+USG/M
+USGS/M Initialism of United States Geological Survey
+Usha/M
+usher/dSM
+Usher/M
+usherette/SM
+USIA United States Information Agency
+using/facA
+Usk/M
+USMC
+USN
+USO
+USP
+USPS
+USS
+Usselby/M
+Ussher/M
+USSR/M
+usual/UY
+usualness/U
+usurer/SM
+usurious/YP
+usurp/DRSnG
+usury/MS
+UT/M
+Utah/M
+Utahan/SM
+utan/S
+UTC
+Ute/M
+utensil/SM
+uteri/M
+uterine
+utero
+uterosacral
+uterus/M
+UTF-16
+UTF-32
+UTF-8
+Utica/M
+utile/-8qQ
+utilisation/f
+utilise/RBfSGD
+utilitarian/SM
+utilitarianism/MS
+utility/MS
+utilize/RBfnDSG
+Utkinton/M
+utmost
+utopia/SM
+utopian/SM
+utopianism/M
+Utrecht/M
+utricle/SM
+utricular
+Uttar/M
+Uttarakhand/M
+utter/YdS
+utterance/SM
+Utterby/M
+uttermost
+Utterson/M
+Uttlesford/M
+Uttley/M
+Uttoxeter/M
+Utu/M
+uucp/M
+UUID/SM Initialism of universally unique identifier
+UV
+UVA
+Uvalde/M
+uveitis
+uvula/SM
+uvular/SM
+Uwchgwili/M
+Uwchlan/M
+Uwe/M
+UX/M Noun: uncountable
+UXB/SM
+Uxbridge/M
+uxoricide/O
+uxorilocal
+uxorious/YP
+Uygur/M
+Uzbek/MS
+Uzbekistan/M
+Uzi/M
+Uzmaston/M
+Uzziah/M
+v
+V
+V-mail/M Noun: uncountable
+V-NAND
+V-neck/SM
+vacancy/SM
+vacant/Y
+vacate/DSGn
+Vacaville/M
+vaccenic
+vaccinate/GDS
+vaccinationist/SM
+vaccinator/SM
+vaccine/nMS
+vaccinia/OSM
+vacillate/SDkGn
+vacillator/MS
+vacua/M Plural of vacuum
+vacuity/MS
+vacuolar
+vacuolated
+vacuolation/SM
+vacuole/SM
+vacuous/YP
+vacuum/MSd
+Vadas/M
+Vader/M
+Vadia/M
+Vadnais/M
+Vaduz/M
+vagabond/GMSD
+vagabondage/MS
+vagal/Y
+vagarious/Y
+vagary/MS
+vagi/M Plural of vagus
+vagina/SMOo
+vaginae/MD
+vaginectomy/SM
+vaginismus/M Noun: usually uncountable
+vaginitides
+vaginitis/SM
+vaginoplasty/SM
+vaginoses
+vaginosis/M
+vagrancy/MS
+vagrant/YSM
+vague/TYP
+vaguish
+vagus/M
+Vaida/M
+vail/DGS Verb
+Vail/M
+vain/TYP
+vainglorious/YP
+vainglory/SM
+Vaishnava/SM
+Vaishnavi/M
+Vaishnavism/M
+Vaisya/MS
+Vajna/M
+Val-d'Or/M
+Val-Saint-François/M
+Val/M
+valacyclovir/M Noun: uncountable
+valance/MS
+Valcour/M
+Valcourt/M
+Valdés/M
+Valdez/M
+Valdosta/M
+Vale/M
+vale/MS
+valediction/SM
+valedictorian/SM
+valedictory/SM
+Valence/M
+valence/MKS
+Valencia/M
+Valencian/SM
+Valenciennes
+valency/SM
+Valente/M
+Valentich/M
+Valentin/M
+Valentina/M
+Valentine/M
+valentine/SM
+Valentinian/M
+Valentino/M
+Valenzuela/M
+Valeri/M
+Valeria/M
+Valerian/M
+valerian/SM
+valeric Adjective
+Valerie/M
+Valerius/M
+valet/SMd
+valetudinarian/MS
+valetudinarianism/M Noun: uncountable
+Valetudo/M
+valgus
+Valhalla/M
+valiant/Y
+valid/InY
+validate/IDASGN
+validation/IMA
+validator/SM
+validity/SMI
+valine/SM
+valise/SM
+Valium/M
+Valjean/M
+Valk/M
+Valkyrie/SM
+Valladolid/M
+vallate
+Valle/M
+vallecula/M
+valleculae/M Plural of vallecula
+Vallée-de-l'Or/M
+Vallée-de-la-Gatineau/M
+Vallée-du-Richelieu/M
+Vallée/M
+Vallejo/M
+Valles Valles Marineris (Mars)
+Valletta/M
+Valley/M
+valley/SM
+Valleyfield/M
+Valli/M
+valonia/SM
+valorise/SGDn
+valorize/SGDn
+valorous/YP
+valour/M Noun: usually uncountable
+Valparaiso/M
+valproic Adjective
+valsartan/M Noun: uncountable
+valse/SM
+Valter/M
+valuable/SM
+valuably/I
+valuation's/C
+valuation/f
+valuator/MS
+value-added Adjective
+value/CnASGD
+value/Mp
+valued/Ufc
+valuelessness/M Noun: uncountable
+valuer/SM
+values/fc
+valuing/fc
+valve/SDMp
+valvular
+vamoose/DGS Verb
+vamp/AGSD
+vamp/M
+vampire/MS
+vampirism/M Noun: usually uncountable
+vampish/PY
+vampy/T
+Van/M
+van/SM
+vanadate/SM
+vanadinite/SM
+vanadium/SM
+vanadocene/SM
+Vanautu/M
+Vance/M
+vancomycin/M Noun: uncountable
+Vancouver/M
+Vanda/M
+Vandal/MS
+vandal/Q8MS
+Vandalia/MW
+vandalism/MS
+vandalistic/Y
+Vanden/M
+Vandenberg/M
+Vander/M
+Vanderbilt/M
+Vanderburgh/M
+Vandermeer/M
+Vandyke/MS
+vane/MS
+Vanessa/M
+Vange/M
+vanguard/MS
+vanilla/SM
+vanillin/SM
+vanish/GJSkDMr
+Vanitory Vanitory unit
+vanitory/SM
+vanity/MS
+Vannevar/M
+vanquish/RGDS
+vanquishable
+vantage/SM
+Vanth/M
+Vanuatu/M
+vape/SGDM
+vapid/Y
+vapidity/SM
+vapidness/M Noun: uncountable
+vaporise/RnSGD
+vaporize/nRSGD
+vaporous/Y
+vaporousness/M Noun: uncountable
+vapour/kMSGDZp7rJ~
+vapourability/M Noun: uncountable
+vapourlike
+vapourware/M Noun: uncountable
+var.
+Varaha/M
+Varahi/M
+Varanasi/M
+Varangian/MS
+Varda/M
+Varden/MS
+Varela/M
+Varennes/M
+Varga/M
+Vargas/M
+variability/SIM
+variable/ISM
+variable/Y
+variableness/SM
+Variações/M
+variadic
+Varian/M
+variance/ISM
+variant/ISM
+variate/MnxSGD
+varicella/M Noun: usually uncountable
+varices
+varicoloured
+varicose/DY
+varicoseness/M Noun: uncountable
+varicosity/SM
+variegate/SnDG
+varietal/SMY
+variety/SM
+varifocal/SM
+variola/SM
+variolar
+variolite/SM
+variolous
+variorum/SM
+various/YP
+Variscan
+variscite/SM
+varistor/SM
+varix/M
+varlet/SM
+Varma/M
+Varmus/M
+Varna/M
+Varney/M
+varnish/SDMGR
+Varolii pons Varolii
+Varricchio/M
+Varshney/M
+varsity/SM
+Varuna/M
+varve/SMD
+vary/hkGlSBD
+varying/UY
+Vasconcelos/M
+Vasconic
+Vasconist/SM
+vascula/M Plural of vasculum
+vascular
+vascularise/SGDn
+vascularize/SGDn
+vasculature/SM
+vasculitides Plural of vasculitis
+vasculitis/SM
+vasculum/SM
+vase/SM
+vasectomize/SGDJ
+vasectomy/MS
+vaseful/SM
+Vaseline/M
+vaselined
+Vasili/SM
+Vasily/M
+vasoconstriction/SM
+vasoconstrictive Adjective
+vasoconstrictor/SM
+vasodilatation/SM
+vasodilation/SM
+vasodilator/SMZ
+vasomotor Adjective
+vasopressin/SM
+vasopressor/SM
+vasovagal Adjective
+Vasquez/M
+vassal/SM
+vassalage/MS
+Vassar/M
+Vassilaros/M
+vast/PTYSMZ
+Vastag/M
+vat/GMDS
+VAT/M Noun: uncountable
+Vatican/M
+Vaticanism/M Noun: uncountable
+Vaticanist/MS
+vaticinate/DGSn
+Vatileaks/M
+Vauchurch/M
+Vaud/M
+vaudeville/SM
+vaudevillian/SM
+Vaudois/M
+Vaudreuil-Dorion/M
+Vaudreuil-Soulanges/M
+Vaughan/M
+Vaughn/M
+vault/RSGMD
+vaunt/DGSMr
+Vauxhall/M
+Vax/M
+Vaxart/M
+VAXes
+Vaynor/M
+VCD/SM
+VCR/SM
+VD/SM
+VDT/SM Initialism of video display terminal
+VDU/SM Initialism of visual display unit
+veal/SM
+Vecchietti/M
+vector/FM
+vector/OSd
+vectorise/nDGS
+vectorize/DGnS
+Veda/SMW
+Vedanta/MW
+Vedantist/MS
+Vedast/M
+Vedda/MS
+vedette/SM
+Vedicism/M
+Vedism/M Noun: uncountable
+Veenendaal/M
+Veep/M
+veer/DGSM
+veg/GDM
+Vega/SM
+vegan/MS
+veganism/M Noun: usually uncountable
+Vegas/M
+Vegemite/M
+vegetable/MS
+vegetal/Y
+vegetarian/SM
+vegetarianism/SM
+vegetate/GVnDS
+vegetational Adjective
+vegetatively Adverb
+vegetativeness/M Noun: uncountable
+vegges
+veggie/SM
+vehemence/M Noun: usually uncountable
+vehement/Y
+vehicle/SM
+vehicular Adjective
+veil/DUSG
+veil/Mp
+Veillet/M
+vein/DSMGp
+veinier
+veiniest
+vela/M Plural of velum
+velar/SMW
+Velásquez/M
+Velcade/M
+Velcro/M
+Velculescu/M
+veld/SM
+veldt/SM
+Velez/M
+Velfrey/M
+veliger/SM
+Vella/M
+vellum/MS
+Vellutello/M
+Velma/M
+velocimeter/SM
+velocimetry/M Noun: uncountable
+velocipede/MS3
+velociraptor/SM
+velocity/SM
+velodrome/SM
+velogenic Adjective
+velopharyngeal/SM
+Velorum/M
+Veloso/M
+velour/MS
+velouté/SM
+velum/SM
+Velveeta/M
+velvet/SZM
+velveted
+velveteen/SM
+velvetleaf/M Noun: usually uncountable
+Ven/M
+Venables/M
+venal/Y
+venality/SM
+Venango/M
+Venatici/M
+venation/SM
+vend/SbDG
+vendetta/MS
+vendor/SM
+veneer/GnDSM
+Veneneia/M
+Venera/M
+venerate/GBDSn
+venereal/Y
+venereology/M3w
+Veneris/M
+venesection/SM
+Venetian/MS
+Venezuela/M
+Venezuelan/SM
+vengeance/SM
+vengeful/Y
+vengefulness/A
+venial/Y
+veniality/SM
+Venice/M
+venison/SM
+Venite/MS
+Venkova/M
+venlafaxine/SM
+Venn/M
+venography/W1SM
+venom/MS
+venomous/YP
+Venona Venona project
+Venook/M
+venous/Y
+vent/IGFSK
+vent/Mpr
+ventail/SM
+vented/KI
+Ventidius/M
+ventiduct/SM
+ventifact/SM
+ventilate/SDGnV
+ventilator/SMZ
+Ventnor/M
+ventral/Y
+ventre ventre à terre
+ventricle/SM
+ventricular
+ventriculography/M Noun: uncountable
+ventriloquies
+ventriloquise/SGD
+ventriloquism/MS
+ventriloquist/MS
+ventriloquize/SGD
+ventriloquy/OM
+ventromedial/Y
+Ventura/M
+Venture Venture Scout
+venture/SMRDG
+venturesome/YP
+venturi/SM
+venturous/P
+venue/SMA
+venular
+venule/SM
+venulous Adjective
+Venus/SM
+Venusian/SM
+Veny/M
+Vepsian/MS
+Vera/M
+veracious/YP
+veracity/SM
+veranda/SM
+verandah/MS
+verapamil/SM
+veratrine/SM
+veratrum/SM
+verb/GMSp
+verbal/SMY
+verbalise/SGDnR
+verbalize/SGDnR
+verbatim
+verbatimness/M Noun: uncountable
+Verbeek/M
+verbena/MS
+verbiage/SM
+verbify/SGDn
+verbose/YP
+verbosity/MS
+verboten
+verd-antique/M
+Verdana/M
+verdancy/M Noun: usually uncountable
+verdant/Y
+verdantness/M Noun: uncountable
+Verde/M
+Verden/M
+verderer/SM
+Verdes/M
+Verdi/M
+verdict/MS
+verdigris/SM
+Verdon/M
+Verdú/M
+Verdun/M
+verdure/DSMp
+verdurous/Y
+verdurousness/M Noun: uncountable
+Vere/M
+Vereen/M
+Vergara/M
+verge/GFSD
+verge/SMr
+Vergne/M
+Vergote/M
+Verhofstadt/M
+Verhulst/M
+veridical/Y
+verifiability/M Noun: usually uncountable
+verifiably
+verified/AU
+verify/BnRDGS
+Verilog/M
+Verisign/M
+verisimilitude/MS
+veristic
+veritable/Y
+verity/SM
+Verizon/M
+Verlinde/M
+Vermeer/M
+vermes Plural of vermis
+vermian
+vermicelli/SM
+vermicide/SM
+vermicomposter/SM
+vermicomposting/M
+vermicular
+vermiculate/D
+vermiculite/SM
+vermiculture/M Noun: uncountable
+vermiform
+vermifuge/SM
+Vermilion/M
+vermilion/SM
+Vermillion/M
+vermin/M
+verminous/Y
+vermis/M
+Vermont/M
+vermouth/MS
+Vern/M
+Verna/M
+vernacular/YSM
+vernacularise/SGDn
+vernacularism/SM
+vernacularity/SM
+vernacularize/SGDn
+vernal/Y
+vernation/SM
+Verne/M
+Vernen/M
+Verner/M
+Verney/M
+Vernhams/M
+vernier/MS
+Vernon/M
+Vero/M
+Verona/M
+veronica/SM
+Veronika/M
+Veronique/M
+Verret/M
+Verrier/M
+verruca/MS
+verrucae/M
+versa vice versa
+Versailles/M
+versatile/Y
+versatility/SM
+verse/ANDXFS
+verse/M
+Versen/M
+verses/4I
+verset/SM
+versicle/SM
+versicoloured
+versify/GRSnD
+Versini/M
+version/ODGMIFAS^
+verso/MS
+Verstehen/M
+versus
+vert/SM
+vertebra/MO
+vertebrae/M
+vertebrata
+Vertebrata Taxonomic subphylum
+vertebrate/SIM
+vertex/MS
+vertical/YSM
+verticality/SM
+vertices
+vertiginous/Y
+vertiginousness/M Noun: uncountable
+vertigo/SM
+vertigoes
+verve/MS
+vervet/SM
+Verwick/M
+Verwood/M
+very/Y
+Veryan/M
+Veselovsky/M
+vesical
+vesicant/SM
+Vesicare/M
+vesicle/MS
+vesicular
+vesiculate/GSDn
+Vespasian/M
+Vesper/SM
+vesper/SM
+Vespucci/M
+vessel/SM
+vest/ySDGLoM
+Vesta/M
+Vestal/M
+vestal/SM
+Vestavia/M
+vestiary/SM
+vestibular
+vestibule/MS
+vestige/MOoS
+vestiture/SM
+vestry/mSM
+vesture/DSGMOr
+vesuvianite/SM
+Vesuvius/M
+vet/SGMD
+vetch/SM
+vetchling/SM
+veteran/MS
+veterinarian/SM
+veterinary/SM
+vetiver/SM
+vetivert/M Noun: uncountable
+veto/SDGM
+vetoes
+vetoist/WMSw
+Vetter/M
+Vettori/M
+Vettulenus/M
+Vetus Vetus Testamentum
+Vevo/M
+vex/F
+vex/GSr
+vexation/SM
+vexatious/YP
+vexed/Y
+vexedness/M Noun: uncountable
+vexillology/Mw3
+VF/M Noun: usually uncountable
+VFW/M Initialism of Veterans of Foreign Wars
+VG/SM
+VGA/M Initialism of Video Graphics Array
+VHDL/M
+VHF/M
+VHS/M
+VHSes
+VI
+vi
+via
+viability/MS
+viable/Y
+viaduct/MS
+Viagra/M
+vial/S6M
+vialful/SM
+Viana/M
+viand/MS
+vibe/SGDM
+vibrancy/SM
+vibranium
+vibrant/YSM
+vibraphone/S3M
+vibrate/DGnyS
+vibrational/Y
+vibrato/SM
+vibrator/SM
+viburnum/SM
+Vic/MZ
+Vicar Vicar of Christ
+vicar/SM
+vicarage/SM
+vicariance/SM
+vicariate/SM
+vicarious/YP
+vice-Chancellor/SM
+vice-chancellor/SM
+vice-chancellorship/SM
+vice-Chancellorship/SM
+vice-like
+vice-president/SM
+vice-President/SM
+vice-presidential
+vice-Presidential
+Vice/SM
+vice/SM
+vicegerency/SM
+vicegerent/SM
+Vicente/M
+Vicenza/M
+viceregal/YSM
+viceroy/MS
+viceroyalty/SM
+Vichy/M
+vichyssoise/MS
+vicinity/MS
+vicious/YP
+vicissitude/MS
+Vick/M
+Vickers/M
+Vickery/M
+Vickerys
+Vicki/M
+Vickie/M
+Vicksburg/M
+Vicky/M
+victim/s9Q8-MqpS
+victimhood/M Noun: usually uncountable
+victimologic/OY
+victimology/SM3
+Victor/M
+victor/MS
+Victoria/M
+Victorian/SM
+Victoriana/M
+Victorianism/SM
+Victoriaville/M
+victorious/Y
+victoriousness/M Noun: uncountable
+Victorville/M
+victory/SM
+Victoza/M
+Victrex/M
+victual/RSGDM
+vicuña/SM
+vid/SM
+Vida/SM
+Vidal/M
+Vidalia/SM
+videlicet Adverb
+video/DMGS
+videocassette/SM
+videocast/SGM
+videoconference/SGDM
+videodisc/MS
+videogram/SM
+videographer/SM
+videographic/S
+videography/MSW
+VideoLAN/M
+videophone/SM
+videotape/SDMG
+vidicon/SM
+Vidor/M
+vie/7SDG
+Viegas/M
+Vieira/M
+Viejo/M
+Vienna/M
+Viennese/M
+Vientiane/M
+Viet/SM
+Vietcong/SM
+Vietminh/M
+Vietnam/M
+Vietnamese/M
+view's/cKA
+view/JpDRGS7M
+viewed/KA
+viewer/AKSM
+viewership/SM
+viewfinder/MS
+Viewforth/M
+viewgraph/SM
+viewing/SM
+Viewpark/M
+viewpoint/SM
+viewport/SM
+views/KAc
+viewscreen/SM
+vig/SM
+Viganò/M
+Vigean/MS
+vigesimal/SM
+vigil/SM
+vigilance/SM
+vigilant/Y
+vigilante/SM
+vigilantism/SM
+Vigna/M
+vignette/MGDSr
+vignettist/SM
+Vigo/M
+Vigoda/M
+Vigoris/M
+vigorous/YP
+vigour/SMp
+vii
+Viibryd/M
+viii
+Viking/SM
+Vikram/M
+Viktor/M
+Vila/M
+Vilas/M
+vile/PYT
+vilify/DSnG
+Villa/M
+villa/SM
+Village/M
+village/RSM
+Villages/M
+villagey Adjective
+villain/MSZ
+Villainage/M
+villainage/SM
+villainous/Y
+villainousness/M Noun: uncountable
+villainy/SM
+villanelle/SM
+Villanovan/SM
+Villars/M
+Villas/M
+Ville-Marie/M
+Villegas/M
+villein/SM
+villeinage/SM
+Villeneuve/M
+villi/M Plural of villus
+Villiers/M
+villus/M
+Vilnius/M
+vim/M Noun: uncountable
+vimana/SM
+Vimeo/M
+vinaceous
+vinaigrette/SM
+Vinata/M
+Vinay/M
+Vince/M
+Vincennes/M
+Vincent/M
+Vincentian/SM
+Vincenzo/M
+Vinci/M
+vincibility/M Noun: uncountable
+vincible
+vincula/M Plural of vinculum
+vincular
+vinculum/SM
+vindaloo/SM
+vindicable
+vindicate/SDGn
+vindicative/Y
+vindicativeness/M Noun: uncountable
+vindicator/SMZ
+vindictive/YP
+vine/SM
+vinegar/r3ZSM~
+vinegared
+vinegariness/M Noun: uncountable
+Vineland/M
+vinery/MS
+vineyard/MS
+Vineyard/SM
+viniculture/MS3Oo
+Vinnie/M
+vino/SM
+vinosity/M Noun: usually uncountable
+vinous/Y
+vinousness/M Noun: uncountable
+Vinson/M
+vintage/SMr
+vintner/MS
+Vinton/M
+Vintry/M
+vinyl/MS
+viol/MS73
+Viola Taxonomic genus
+viola/nMS
+violate/SGD Verb
+violator/SM
+violence/MS
+violent/YSM
+Violet/M
+violet/SM
+Violette/M
+violin/3MS
+viologen/SM
+violoncellist/SM
+violoncello/SM
+VIP/SM
+viper/SM
+viperfish/SM
+viperous/Y
+viperousness/M Noun: uncountable
+viraemia/SMW
+virago/MS
+viral/YSM
+virality/M Noun: usually uncountable
+Virastyar/M
+Viread/M
+vireo/MS
+Virgaviridae Taxonomic family
+Virgil/M
+Virgilian Adjective
+Virgilianism/M Noun: uncountable
+Virgin/M
+virgin/MoS
+virginal/SM3
+Virginia/M
+Virginian/SM
+virginity/MS
+Virginstow/M
+Virgo/SM
+Virgoan/MS
+virgule/MS
+viridian/SM
+virile Adjective
+virilise/SGDn
+virilism/SM
+virility/SM
+virilize/SGDNn
+virion/SM
+Virley/M
+viroid/SM
+virological/Y
+virology/M3
+virotherapy/SM
+Virpi/M
+virtual/SM
+VirtualBox/M
+virtualise/SGDnR
+virtualism/M Noun: usually uncountable
+virtuality/SM
+virtualize/SGDnR
+virtue/SoMp
+virtuosi/WM1
+virtuosity/SM
+virtuoso/SM
+virtuous/YP
+virulence/SM
+virulent/Y
+virus/MS
+vis-à-vis
+vis/bNX
+visa/MS
+visage/SM
+Visalia/M
+viscera/OoM
+viscerality/SM
+viscid/Y
+viscidness/M Noun: uncountable
+viscoelastic/SMY
+viscometer/SM
+viscose/SM
+viscosity/MS
+viscount/MS
+Viscount/SM
+viscountcy/MS
+viscountess/MS
+viscous/YP
+viscus/M
+visfatin/M Noun: uncountable
+Vishnu/M
+Vishnuism/M
+Vishnuite/MS
+Vishwa/M
+visibility/ISM
+visible/IY
+visible/Y
+Visigoth/SMW1
+vision/pySGDM
+visionary/SM
+visit/AdS
+visitant/SM
+visitation/SM
+visitor/SM
+visna-maedi/M
+visor/SMp
+visored Adjective
+Vista/M
+vista/SM
+visual/8sY-9QSMq3
+visuomotor/W
+visuospatial/Y
+vita/oM
+vitae/M Plural of vita
+vital/S3
+vitalise/CGASD
+vitalise/SGDn
+vitalism/SM
+vitality/SM
+vitalize/AnDG
+vitalize/SGDn
+vitamin/MS
+Vitellius/M
+vitellogenin/SM
+Viterbi/M
+vitiate/SnGD
+viticulture/M3r
+vitiligo/M Noun: usually uncountable
+Vito/M
+Vitória/M
+Vitoria/M
+vitreous/Y
+vitrifaction/M Noun: uncountable
+vitrifiable Adjective
+vitrify/GSnD
+vitrine/SM
+vitriol/SMW1
+vitro in vitro
+vituperate/DnSVvG
+Vitus/M
+viva/SGDM
+vivace/SM
+vivacious/YP
+vivacity/SM
+Vivaldi/M
+vivaria/M Plural of vivarium
+vivarium/M
+vivendi modus vivendi
+Vivian/M
+vivid/YP
+Vivien/M
+vivify/ASGND
+viviparity/M Noun: uncountable
+viviparous/Y
+vivisect/xGDS
+vivisection/MS3
+vivisector/MS
+vivo in vivo
+vixen/MS
+viz.
+vizard/MS
+vizier/MS
+vizorless
+vizsla/MS
+VJ/SM
+Vlach/MS
+Vladimir/M
+Vladivostok/M
+VLC/M
+vlei/SM
+VLF/M Initialism of very low frequency
+Vlissingen/M
+VLSI/M Abbreviation of very large scale integration
+VM/SM
+VMS/M
+VMware/M
+VOA/SM
+Voalavo
+vocable/AI
+vocable/SM
+vocabulary/SM
+vocal/98-Q3sqSMY
+vocalese/M Noun: usually uncountable
+vocalic
+vocalism/SM
+vocalistic
+vocality/SM
+vocation's/IFA
+vocation/OoMS
+vocative/YSM
+vociferate/GSDn
+vociferous/YP
+vocode/SGDR
+Vodafone/M
+vodka/SM
+vodun/M Noun: uncountable
+Voetsek/M
+Voetstoots/M
+Vogel/M
+Vogelstein/M
+Vogeltown/M
+Vogts/M
+vogue/SMGD
+vogueing
+voguish/YP
+voice-activated
+voice-over/SMd
+voice/6Mr
+voice/CGDIS
+voiceband/M Noun: uncountable
+voicebank/SM
+voicedness/M Noun: uncountable
+voiceless/YP
+voicemail/SM
+voiceprint/SM
+voiceprinter/SM
+void/GD7SM
+voila
+voilà
+voile/SM
+VoIP/M
+Vokes/M
+vol-au-vent/SM
+vol.
+vol/SM
+Volapük/M
+volatile/SMP
+volatilise/SGDn
+volatility/SM
+volatilize/SGDn
+volcanic/SMY
+volcanicity/SM
+volcanism/SM
+volcano-tectonic Adjective
+volcano/SM
+volcanoes
+volcanogenic/Y
+volcanologic/OY
+volcanology/3M
+vole/MS
+Volga/M
+Volgograd/M
+volition/OoMS
+volitionality/M Noun: uncountable
+Volker/M
+Volkeri/M
+Volkswagen/SM
+volley/SDMGR
+volleyball/SM
+Vollrath/M
+Volodymyr/M
+vols-au-vent/M
+volt/AMS
+Volta/M
+voltage/SM
+voltaic
+Voltaire/M
+voltammetric/Y
+voltammetry/M Noun: uncountable
+voltammogram/SM
+Voltaren/M
+volte-face/SM
+volte/SM
+Volterra/M
+voltmeter/SM
+volubility/SM
+voluble/YP
+volume/MSD
+volumetric/Y
+volumetrics/M Noun: uncountable
+voluminosity/SM
+voluminous/YP
+volumise/SGDR
+volumize/SGDR
+voluntarism/SM
+voluntarist/SMW
+voluntary/YSM
+volunteer/MGSD
+volupté/SM
+voluptuary/SM
+voluptuous/YP
+Volusia/M
+volute/SDM
+Volvo/M
+volvox/SM
+vomeronasal/Y
+vomit/SdM
+vomita/M Plural of vomitus
+vomitoxin/SM
+vomitus/M
+von
+Vonn/M
+Vontaze/M
+voodoo/SM
+Voorhees/M
+voracious/YP
+voracity/SM
+Vorbis/M
+Vorilhon/M
+vortex/SM
+vortical/Y
+vorticella/SM
+vortices
+Vorticism/M
+vorticism/SM
+vorticist/SM
+Vorticist/SM
+vorticity/SM
+vorticose/Y
+vorticular/Y
+Voss/M
+Vostok/M
+votary/MS3
+Votaw/M
+vote/CDGeS
+vote/Mrp
+voting/SM
+votive/SMY
+votiveness/M Noun: uncountable
+Votyak/M
+vouch/GSRD
+vouchsafe/DSG Verb
+voussoir/SM
+Vouvray/M
+vow/SDGMp
+Vowchurch/M
+vowel/DSMYp
+vowelise/SGDJ
+vowelize/SGDJ
+voyage/SMRGD
+voyageur/SM
+voyeur/MS
+voyeurism/SM
+voyeuristic/Y
+Voytenko/M
+VP/SM
+VPN/SM
+vPro
+VR/SM
+VRAM/M Noun: uncountable
+Vreeland/SM
+Vries/M
+Vril/M Noun: uncountable
+vril/M Noun: uncountable
+VRML/M (computing) Initialism of Virtual Reality Modeling Language
+vroom/SDGM
+vs
+VS/M
+VT/SM
+VTOL/SM (aviation) Acronym of vertical takeoff and landing
+vu déjà vu
+Vuagnoux/M
+Vuelta/M
+vug/SMZ
+vugular
+Vulcan/SM
+Vulcanian Adjective
+vulcanise/GDnS
+vulcanism/SM
+vulcanite/SM
+vulcanize/GDSn
+vulcanoid/SM
+vulcanology/M Noun: uncountable
+vulgar/Y
+vulgarian/SM
+vulgarise/SGDn
+vulgarism/SM
+vulgarity/MS
+vulgarize/SGDn
+Vulgate/M
+vulnerability/SI
+vulnerable/IY
+Vulpecula/M (astronomy) A faint autumn constellation in the northern sky
+vulpine/SM
+vulture/MS
+vulturine
+vulturish
+vulturous Adjective
+vulva/SMOp
+vulvae/M Plural of vulva
+vulvar Adjective
+vulvovaginal
+vulvovaginitis/SM
+vuvuzela/SM
+VX/Mr
+Vyrnwy/M
+Vytorin/M
+Vyvanse/M
+W
+w
+wa-wa/SM
+WA/SM
+WAAC/M Initialism of Women's Army Auxiliary Corps
+Waac/MS
+WAAF/M Initialism of Women's Auxiliary Air Force
+Waaf/MS
+Wabash/M
+Wabasha/M
+wabbit/SM
+Waberthwaite/M
+WAC/SM
+wack/SM
+wacke/SMr
+Wacker/SM
+wacko/SM
+wackoes
+wacky/TYP
+Waco/M
+Wacoan/SM
+Waconia/M
+Wacton/M
+wad/DrMGS
+Wadborough/M
+Waddesdon/M
+Waddeson/M
+Waddingham/M
+Waddington/M
+Waddingworth/M
+waddle/DSGMr
+Waddon/M
+Wade/M
+wade/SM
+Wadebridge/M
+Wadena/M
+Wadenhoe/M
+Wadestown/M
+Wadhurst/M
+Wado-Ryu/M
+Wado-ryu/M
+Wadsworth/M
+Wadworth/M
+Waen/M
+Waerden/M
+Wafer/MS
+wafer/SM
+waffle/GMDS
+waft/SGDMr
+wag/DdrSMG
+wage-earning Adjective
+wage/MS
+wager/SdM
+Wagga/M
+waggish/YP
+waggle/DSGM
+waggon/SMr
+waggonette/SM
+waggy/TY
+Wagner/M
+Wagnerian/SM
+wagon-lit/M
+wagon/SMr
+Wagoner/M
+wagoner/SM
+wagonette/SM
+wagonload/SM
+wagons-lits
+wagtail/MS
+wah-wah/SM
+Wahabi/MS
+Waharoa/M
+Waheed/M
+Wahhabi/MS
+Wahlberg/M
+Wai/M
+Waiake/M
+Waiau/M
+waif/MS
+waifish Adjective
+waiflike Adjective
+Waiharara/M
+Waiheke/M
+Waihi/M
+Waihī/M
+Waihola/M
+Waikaia/M
+Waikaka/M
+Waikanae/M
+Waikato/M
+Waikawa/M
+Waikiki/M
+Waikiwi/M
+Waikouaiti/M
+Waikowhai/M
+Waikuku/M
+wail/SGDMr
+Waima/M
+Waimahia/M
+Waimairi/M
+Waimakariri/M
+Waimangaroa/M
+Waimate/M
+Waimauku/M
+Wain/M
+wain/SM
+Wainfleet/M
+Wainoni/M
+wainscot/DGdSM
+Wainui/M
+Wainuiomata/M
+Wainwright/M
+Waioneke/M
+Waiotira/M
+Waiouru/M
+Waipa/M
+Waipango/M
+Waipawa/M
+Waipukurau/M
+Wairakei/M
+Wairarapa/M
+Wairau/M
+Wairoa/M
+waist/MDSp
+waistband/SM
+waistcoat/SM
+waistline/SM
+wait/RDSGM
+Waitahuna/M
+Waitakere/M
+Waitaki/M
+Waitangi/M
+Waitangirua/M
+Waitara/M
+Waitaria/M
+Waitati/M
+Waitby/M
+Waite/M
+Waitemata/M
+Waithe/M
+Waitoa/M
+Waitoki/M
+Waitomo/M
+Waitoriki/M
+Waitotara/M
+waitress/MSG
+Waiuku/M
+waive/GSRD
+Waiwera/M
+Waiwhetū/M
+waka/SM
+Wakai/M
+wakame/M Noun: uncountable
+Wakapuaka/M
+Wakari/M
+Wakatu/M
+Wakayama/M
+wake/j6MGDS
+Wake/M
+wakeboard/SGDMR
+Wakefield/M
+wakefulness/SM
+waken/Sd
+waker/MS
+Wakering/M
+Wakerley/M
+Wakes/M
+wakeup/SM
+wakey
+wakey-wakey
+Wakimoto/M
+Wakulla/M
+Wal-Mart/M
+Walaka/M
+Walasek/M
+Walberswick/M
+Walberton/M
+Walbridge/M
+Walbrook/M
+Walburn/M
+Walcot/M
+Walcote/M
+Walcott/M
+Wald/M
+Waldegrave/M
+Waldemar/M
+Walden/M
+Waldense/SM
+Waldensian/SM
+Waldershare/M
+Waldingfield/M
+Walditch/M
+Waldmann/M
+Waldner/M
+Waldo/M
+Waldorf/M
+Waldringfield/M
+Waldrist/M
+Waldron/M
+Waldronville/M
+wale/SGDM
+Waler/MS
+Wales/M
+Walesby/M
+Walfield/M
+Walford/M
+Walgherton/M
+Walgrave/M
+Walgreen/M
+Walgreens/M
+Walham/M
+walk-in/SM
+walk-on/SM
+walk-through/SM
+walk/SRGDB
+walkabout/MS
+walkathon/SM
+Walken/M
+Walker/M
+Walkerburn/M
+Walkeringham/M
+Walkerith/M
+Walkern/M
+Walkhampton/M
+walkie-talkie/SM
+walkie/SM
+Walkingham/M
+Walkington/M
+Walkman/SM
+Walkmen/M
+walkout/SM
+walkover/MS
+walkway/MS
+wall-eye/DSM
+wall-to-wall Adjective
+Wall/M
+wall/SDGM
+Walla/M
+wallaby/SM
+Wallace/M
+Wallacetown/M
+Wallaceville/M
+Wallacewell/M
+Wallachia/M
+Wallachian/MS
+Wallasea/M
+Wallasey/M
+Wallbanger/M
+wallcovering/SM
+wallcreeper/SM
+Wallen/M
+Wallenstein/M
+Waller/M
+Wallerstein/M
+Wallerthwaite/M
+wallet/SM
+wallflower/SM
+Wallice/M
+Wallingford/M
+Wallington/M
+Wallingwells/M
+Wallis/M
+Wallkill/M
+Wallneuk/M
+Walloon/MS
+wallop/dSM
+Wallop/M
+wallow/GDSM
+wallpaper/dSM
+Walls/M
+Wallsend/M
+wallwasher/SM
+Wallwork/M
+Wally/M
+wally/SM
+Walmart/M
+Walmer/M
+Walmersley/M
+Walmsgate/M
+Walmsley/M
+Walney/M
+Walnut/M
+walnut/MS
+Walpole/M
+Walpurgis Walpurgis night
+walrus/MS
+Walsall/M
+Walsgrave/M
+Walsh/M
+Walsham-le-Willows/M
+Walsham/M
+Walshaw/M
+Walshford/M
+Walshingham/M
+Walsingham/M
+Walsoken/M
+Walston/M
+Walt/MR
+Walter/M
+Walterstone/M
+Walthall/M
+Waltham/M
+Walthamstow/M
+Walther/M
+Walton-in-Gordano/M
+Walton-on-Thames/M
+Walton/M
+waltz/DSGMr
+Walvis/M
+Walvoord/M
+Walworth/M
+Walwyn/M
+Walz/M
+Wambrook/M
+Wamphray/M
+wampum/M
+wan/dY
+WAN/SM Acronym of wide area network
+Wanaka/M
+Wanaque/M
+Wanborough/M
+wand/SM
+Wanda/M
+Wandel/M
+wander/JSdr
+wanderlust/MS
+Wandsworth/M
+wane/SM
+Waner/M
+Wang/M
+Wanganui/M
+Wangaratta/M
+Wangford/M
+wangle/GDSM
+Wanjek/M
+wank/SGDr!
+Wankel/M
+Wankie/M
+wanky/T!
+Wanlip/M
+Wann/M
+wanna
+wannabe/SM
+wannabee/SM
+Wanneroo/M
+Wannier/M
+Wansbeck/M
+Wansford/M
+Wanstead/M
+Wanstrow/M
+want/DGS
+Wantage/M
+Wantisden/M
+wanton/YPSM
+WAP/SM
+Wapello/M
+wapiti/SM
+Wapley/M
+Wapnick/M
+Wappenbury/M
+Wappenham/M
+Wapping/M
+Wappinger/M
+Waqar/M
+war/pSDGM
+Waray-Waray
+warble/GRDSM
+Warbleton/M
+Warblington/M
+Warborough/M
+Warboys/M
+Warbreck/M
+Warbstow/M
+Warburg/M
+Warburton/M
+Warcop/M
+warcraft/SM
+Ward/M
+ward/MAGSD
+Warden/M
+warden/MS
+warder/SM
+Wardie/M
+Wardington/M
+Wardlaw/M
+Wardlawhill/M
+Wardle/M
+Wardleworth/M
+Wardley/M
+Wardlow/M
+Wardour Wardour Street
+wardress/MS
+Wardrobe/M
+wardrobe/SM
+wardroom/SM
+Wardrop/M
+wards/Ie
+Wardville/M
+Ware/M
+ware/MS2Z
+Wareham/M
+Warehorne/M
+warehouse/DmMGS
+Wareside/M
+Waresley-cum-Tetworth/M
+Waresley/M
+warez/M Noun: usually uncountable
+warfare/M Noun: usually uncountable
+warfarin/M Noun: usually uncountable
+Warfield/M
+Warford/M
+wargame/SMGDR
+Wargrave/M
+Warham/M
+warhead/MS
+Warhol/M
+Warholian/SM
+warhorse/SM
+warier
+wariest
+wariness/U
+Waringsford/M
+Waringstown/M
+Wark/M
+Warkleigh/M
+Warkton/M
+Warkworth/M
+Warlaby/M
+Warleggan/M
+Warley/M
+warlike
+Warlingham/M
+warlock/SM
+warlord/SM
+Warlow/M
+warm-blooded/P
+warm-down/SM
+warm-hearted/YP
+warm-up/SM
+warm/MYGSDJRTP~
+Warman/M
+warmblood/SM
+Warmfield/M
+warming/SMY
+Warmingham/M
+Warminghurst/M
+Warmington/M
+Warminster/M
+warmonger/MS
+warmongering/M Noun: usually uncountable
+Warmsworth/M
+warmth/SM
+Warmwell/M
+warn/GSDkJ
+Warnborough/M
+Warndon/M
+Warne/M
+Warneford/M
+Warner/M
+Warnford/M
+Warnham/M
+warning/SM
+Warningcamp/M
+Warnock/M
+Warnstorf/M
+warp/DGMS
+warpaint/SM
+warpath/MS
+warplane/SM
+Warpsgrove/M
+Warr/M
+Warragul-Drouin/M
+warrant/S7ZDGM
+warrantable/U
+warrantee/SM
+warrantor/SM
+warranty/SM
+Warren/M
+warren/SM
+Warrenpoint/M
+Warrensburg/M
+Warrensville/M
+Warrenville/M
+Warrick/M
+Warrington/M
+warrior/MS
+Warrnambool/M
+Warsaw/M
+warship/MS
+Warsill/M
+Warslow/M
+Warsop/M
+wart/MS
+Wartburg/M
+Warter/M
+Warthermarske/M
+Warthill/M
+warthog/SM
+wartime/SM
+Wartling/M
+Warton/M
+Warwick/M
+Warwickshire/M
+wary/UY
+was
+wasabi/M Noun: usually uncountable
+Wasatch/M
+Wasco/M
+Wasdale/M
+Wasdell/M
+Waseca/M
+wash-out/SM
+wash/AGDS
+Washabaugh/M
+washability/M Noun: usually uncountable
+washable/SM
+washbasin/SM
+washboard/MS
+Washbourne/M
+Washbrook/M
+Washburn/M
+washday/SM
+washed-out Adjective
+washer/5SM
+washerman/M
+washermen/M
+washerwomen/M
+washery/MS
+Washfield/M
+Washford/M
+washhouse/SM
+washing-up/M Noun: uncountable
+washing/SM
+Washingborough/M
+Washingley/M
+Washington/M
+Washingtonian/SM
+Washingtonologist/SM
+Washita/M
+washland/SM
+Washlands/M
+Washoe/M
+Washougal/M
+washout/MS
+washstand/SM
+Washtenaw/M
+washtub/SM
+washy/TP
+Wasing/M
+wasn't
+wasp-waisted Adjective
+wasp/MS
+Wasperton/M
+waspish/YP
+Wass/M
+wassail/GMSD
+Wasserman/M
+Wassermann/M
+wast/RDG
+wastage/SM
+waste/6jMSp
+wastebasket/SM
+wastefulness/SM
+wasteland/MS
+wastepaper/SM
+wastewater/SM
+wastrel/SM
+Watanabe/M
+Watauga/M
+watch/7GmDRS6jM
+watcha
+watchability/M Noun: uncountable
+watchdog/SGDM
+Watchet/M
+Watchfield/M
+watchfulness/SM
+watchlist/SGDM
+watchmaker/MS
+watchmaking/M Noun: uncountable
+watchstrap/SM
+watchtower/SM
+watchword/SM
+water-bed/SM
+water-bird/SM
+water-cooled Adjective
+water-resistant Adjective
+water-soluble Adjective
+water/mMpZdS2
+Waterbeach/M
+Waterbeck/M
+waterbed/SM
+Waterberg/M
+waterbird/SM
+waterboard/SGDM
+waterborne Adjective
+waterbuck/SM
+Waterbury/M
+watercock/SM
+watercolour/3MS
+watercourse/MS
+watercraft/M Plural same
+watercress/SMZ
+Waterden/M
+Waterdine/M
+waterdog/SM
+Waterfall/M
+waterfall/SM
+Waterfield/M
+Waterfoot/M
+Waterford/M
+waterfowl/MGr
+Waterfox/M
+waterfront/MS
+Watergall/M
+Watergate/M
+watergate/SM
+waterhen/SM
+waterhole/SM
+Waterhouse/MS
+Wateringbury/M
+Waterless/M
+Waterleys/M
+waterline/SM
+waterlog/SGD Verb
+Waterloo/M
+Waterlooville/M
+watermark/MDGS
+Watermead/M
+watermelon/SM
+watermill/SM
+Watermillock/M
+Waterperry/M
+waterproof/SGDrPM
+Waters/M
+watershed/MS
+Waterside/M
+waterside/SM
+waterski/SGDRM
+Waterson/M
+waterspout/SM
+Waterstock/M
+Waterthorpe/M
+waterthrush/SM
+watertight Adjective
+Watertown/M
+Waterval/M
+Waterview/M
+Waterville/M
+Watervliet/M
+waterway/MS
+waterweed/SM
+waterwheel/SM
+waterworks
+watery/T
+Watford/M
+Wath-upon-Dearne/M
+Wath/M
+Wathen/M
+Watkins/M
+Watlass/M
+Watling/M
+Watlington/M
+Watnall/M
+Watoga/M
+Watonwan/M
+Watson/M
+Watsonville/M
+watt/SM
+wattage/MS
+Watteau/M
+Watten/M
+Wattisfield/M
+Wattisham/M
+wattle/SGDM
+wattlebird/SM
+Watton-at-Stone/M
+Watton/M
+Wattson/M
+Watusi/M
+Wauconda/M
+Waugh/M
+Waukee/M
+Waukegan/M
+Waukesha/M
+waulking/SM
+Waunakee/M
+Waunfawr/M
+Waungron/M
+Waupaca/M
+Waupun/M
+Wausau/M
+Waushara/M
+Wauwatosa/M
+wav
+WAV/M
+wave/2GZSDpM
+waveband/MS
+waveform/MS
+wavefront/SM
+waveguide/SM
+Waveland/M
+wavelength/MS
+wavelet/MS
+wavelike Adjective
+Wavell/M
+Wavendon/M
+Waveney/M
+waver/dkSr
+Waver/M
+wavering/UY
+Waverley/M
+Waverton/M
+Wavertree/M
+wavery Adjective
+wavy/TY
+Wawarsing/M
+Wawen/M
+Wawne/M
+wax/GMZDS
+Waxahachie/M
+waxberry/MS
+waxbill/SM
+waxcloth/SM
+waxen
+Waxham/M
+waxwing/SM
+waxwork/MS
+waxy/T
+Way/M
+way/SM
+Wayback/M
+waybill/SM
+waybread/SM
+Waycross/M
+wayfarer/SM
+wayfaring/SM
+Wayford/M
+waylaid
+Wayland/M
+waylay/GSr
+Waylett/M
+Waylon/M
+waymark/SGDRM
+Wayne/M
+Waynesboro/M
+waypoint/SM
+wayside/MS
+wayward/YP
+WC/SM
+we'd
+we'll
+we're
+we've
+we/GzJ
+Wea/M
+Weagle/M
+weak-minded/Y
+weak-mindedness/M Noun: uncountable
+weak/PTY~
+weaken/dS
+Weakley/M
+weakliness/M Noun: uncountable
+weakling/SM
+weal/SGDM
+Weald/M
+weald/SM
+Wealden/M
+Wealdstone/M
+wealth/M Noun: usually uncountable
+wealthy/TSM
+wean/SDGR
+weanling/MS
+weapon/pdMS
+weaponeer/SGDM
+weaponise/SGDN
+weaponize/SGDN
+weaponry/SM
+Wear-Tees/M
+wear/eSG
+Wear/M
+wearability/M Noun: usually uncountable
+wearable/US
+Weardale/M
+Weare/M
+wearer/SM
+weariness/M Noun: usually uncountable
+wearing/Y
+wearisome/YP
+weary/YGSTkDp
+weasel/SDGMY
+Weasenham/M
+Weasley/M
+weather-bound
+weather-worn Adjective
+weather/mdSM
+weatherboard/GSDM
+Weatherburn/M
+weathercock/SM
+weatherdeck/SM
+Weatherford/M
+weathergirl/SM
+Weatherhead/M
+Weatherill/M
+weatherly/P
+weatherperson/SM
+weatherproof/DGS
+Weathersfield/M
+weatherstrip/SGDM
+weatherstruck weatherstruck joint
+weathertight Adjective
+weathervane/SM
+weave/AGS
+weave/D
+weaver/SM
+weaverbird/SM
+weaveress/MS
+Weaverham/M
+Weaverthorpe/M
+web-footed Adjective
+web/DSGMr
+Webb/M
+Webbe/M
+Webber/M
+webbing/SM
+webby/T
+webcam/SM
+webcast/SGRM
+Weber/M
+WebExtension/SM
+WebGL/M
+webhead/SM
+webify/SGD Verb
+webinar/SM
+webisode/SM
+Webley/M
+weblike Adjective
+weblog/SMGR
+webmail/M Noun: usually uncountable
+webmaster/SM
+webmistress/SM
+webpage/SM
+WebRTC/M
+websafe Adjective
+webshop/SMGR
+website/MS
+webspace/SM
+Webster/M
+Websterian Adjective
+websterite/SM
+webtoon/SM
+WebTranslateIt/M
+WebTV/M
+webwork/SM
+webzine/SM
+Wechel/M
+wed/CAU
+wed/DM
+Wedale/M
+Weddicar/M
+wedding/MS
+Weddington/M
+wedge/GSMD
+wedgie/SM
+Wedgwood/M
+wedlock/SM
+Wedmore/M
+Wednesbury/M
+Wednesday/MS
+Wednesfield/M
+Wednsebury/M
+weds/A
+wee/SG
+weebill/SM
+weed/pDGMSZr
+weedgrown Adjective
+weedicide/SM
+weedkiller/SM
+Weedon/M
+weedy/T
+Weeford/M
+Weehawken/M
+week-long Adjective
+Week/M
+week/SMY
+weekday/SM
+Weeke/M
+weekend/MSr
+Weekley/M
+weekly/SM
+Weeknd/M
+Weeley/M
+Weem/M
+weenie/SM
+weensy/T
+weeny/TSM
+weep/SMZGr
+weepie/SM
+weepy/TYP
+Weerden/M
+Weethley/M
+Weeting-with-Broomhill/M
+Weeting/M
+Weeton-with-Preese/M
+Weeton/M
+weevil/SM
+Wefaq/M
+weft/SM
+Wegel/M
+Wehrmacht/M
+Weibull/M
+Weichselbaum/M
+Weidinger/M
+Weidman/M
+weigela/SM
+weigh-in/SM
+weigh/eSADG
+weighable
+weighbridge/SM
+weigher/SM
+weight/cDSG
+weight/M
+weightiness/M Noun: usually uncountable
+weighting/SM
+weightless/YP
+weightlifter/SM
+weightlifting/M Noun: uncountable
+Weighton/M
+weighty/YT
+Weill/M
+Weimar/M
+Weimaraner/MS
+Wein/M
+Weinberg/M
+Weinberger/M
+Weiner/M
+Weinhart/M
+Weinstein/M
+Weir/M
+weir/SM
+weird/TYPSM
+weirdo/SM
+Weirton/M
+Weiser/M
+Weisman/M
+Weismann/M
+Weismannism/M
+Weiss/M
+Weissman/M
+Weissmuller/M
+Weisstein/M
+Weiten/M
+Weitz/M
+Weitzer/M
+Welbeck/M
+Welborne/M
+Welbourn/M
+Welbourne/M
+Welburn/M
+Welbury/M
+Welby/M
+Welch/M
+welch/SGDr
+Welchol/M
+Welchpool/M
+Welcombe/M
+welcome/DSM
+welcome/kRPYUG
+weld/BGSMRD
+Weld/M
+weldmesh/M Noun: uncountable
+Weldon/M
+welfare/MS3
+welfarism/M Noun: uncountable
+Welford/M
+Welham/M
+Welker/M
+welkin/SM
+well-adjusted
+well-balanced
+well-behaved/Y
+well-being/M Noun: uncountable
+well-beloved
+well-born
+well-bred
+well-built
+well-connected
+well-defined
+well-deserved
+well-designed
+well-developed
+well-disciplined
+well-disposed
+well-dressed
+well-earned
+well-educated
+well-endowed
+well-equipped
+well-established
+well-fed
+well-formed
+well-founded
+well-informed
+well-intentioned
+well-kept
+well-known
+well-loved
+well-made
+well-mannered
+well-matched
+well-meaning/Y
+well-meant
+well-nigh Adverb
+well-off
+well-ordered
+well-paid
+well-placed
+well-preserved
+well-read
+well-received
+well-rounded
+well-spoken
+well-structured Adjective
+well-supported
+well-thought-of
+well-thought-out
+well-timed
+well-to-do
+well-trained Adjective
+well-tried Adjective
+well-used
+well-wisher/SM
+well-worn Adjective
+well/DGSMP
+Well/M
+Welland/M
+Wellbank/M
+wellbeing/M Noun: usually uncountable
+Weller/M
+Wellesbourne/M
+Wellesley/M
+Wellhausen/M
+wellhead/SM
+Wellingborough/M
+Wellingham/M
+Wellingore/M
+Wellings/M
+Wellington/M
+wellington/SM
+Wellman/M
+Wellow/M
+Wellpark/M
+Wells-Next-the-Sea/M
+Wells/M
+Wellsford/M
+Wellsian/M
+wellspring/SM
+Wellsville/M
+Wellwynd/M
+Welney/M
+Welsh/M
+welsh/SGDr
+Welshampton/M
+Welshman/M
+Welshmen/M
+Welshness/M Noun: uncountable
+Welshpool/M
+Welshwoman/M
+Welshwomen/M
+welt/RSDGM
+Weltanschauung/M
+Weltanschauungen/M
+welter/d
+welterweight/SM
+Welther/M
+Welton/M
+Weltschmerz/M
+Welwick/M
+Welwitschia/M
+Welwyn/M
+Wem/M
+Wembdon/M
+Wembley/M
+Wembury/M
+Wembworthy/M
+Wemyss/M
+Wen/M
+Wenatchee/M
+wench/MS
+wend/DGS Verb
+Wend/SMW
+Wendell/M
+Wenden/MS
+Wendish/M
+Wendlebury/M
+Wendling/M
+Wendon/M
+Wendover/M
+Wendron/M
+Wendt/M
+Wendy/M
+Wenger/M
+Wengert/M
+Wenham/M
+Wenhaston/M
+Wenliang/M
+Wenlock/M
+Wenn/M
+Wennie/M
+Wennington/M
+Wenona/M
+Wensley/M
+Wensleydale/MS
+went/f
+Wentlloog/M
+Wentlooge/M
+Wentnor/M
+Wentworth/M
+Wentzville/M
+Wenvoe/M
+Wenzel/M
+Weobley/M
+Weonards/M
+WEP/M
+wept
+Werburgh/M
+were
+Wereham/M
+weren't
+werewolf/M
+werewolfism/M Noun: uncountable
+werewolves
+Werner/M
+Wernher/M
+Wernicke/M
+Wernli/M
+Werrington/M
+Wert/M
+Werther/M
+Werthimer/M
+Wertman/M
+Wervin/M
+Wesham/M
+Weslaco/M
+Wesley/M
+Wesleyan/SM
+Wesleyanism/M Noun: usually uncountable
+Wespall/M
+Wessel/M
+Wessex/M
+Wessington/M
+Wesson/M
+west/M
+West/M
+Westbeare/M
+Westbere/M
+Westborough/M
+westbound
+Westbourne/M
+Westbrook/M
+Westburn/M
+Westbury-on-Severn/M
+Westbury-on-Trym/M
+Westbury/M
+Westby-with-Plumptons/M
+Westby/M
+Westcheap/M
+Westchester/M
+Westcot/M
+Westcote/M
+Westcott/M
+Wester/M
+wester/SdM
+Westerby/M
+Westerdale/M
+Westerfield/M
+Westerham/M
+Westerhill/M
+Westerkirk/M
+Westerleigh/M
+westerly/SM
+Westerly/SM
+Westerman/M
+Western/M
+western/qQSR
+westerniser/SM
+Westernism/M Noun: uncountable
+westernize/SGDNR
+westernly Adjective
+westernmost Adjective
+westernness/M
+Westerton/M
+westerveldite/M
+Westerville/M
+Westfield/M
+Westford/M
+Westgate-on-Sea/M
+Westgate/M
+Westhall/M
+Westham/M
+Westhampnett/M
+Westhampton/M
+Westheimer/M
+Westhide/M
+Westhill/M
+Westhorpe/M
+Westhoughton/M
+Westinghouse/M
+Westlake/M
+Westland/M
+Westleigh/M
+Westleton/M
+Westley/M
+Westmeath/M
+Westmere/M
+Westmeston/M
+Westmill/M
+Westminster/M
+Westmont/M
+Westmoreland/M
+Westmorland/M
+Westmount/M
+Westnewton/M
+Westoe/M
+Weston-in-Gordano/M
+Weston-on-Avon/M
+Weston-on-the-Green/M
+Weston-Sub-Edge/M
+Weston-super-Mare/M
+Weston-under-Lizard/M
+Weston-under-Redcastle/M
+Weston/M
+Westonbirt/M
+Westoning/M
+Westonzoyland/M
+Westow/M
+Westown/M
+Westpark/M
+Westphalia/M
+Westphalian/SM
+Westpolitik/M
+Westport/M
+Westquarter/M
+Westralian/SM
+Westray/M
+Westrill/M
+Westrip/M
+Westrum/M
+Westruther/M
+Westshore/M
+Westtown/M
+Westville/M
+Westward/SM
+westward/SMY
+westwardmost Adjective
+Westwell/M
+Westwick/M
+Westwood/M
+wet-nurse/SGD Verb
+wet/TSDYGPM
+Wetaskiwin/M
+Wetheral/M
+Wetherby/M
+Wetherden/M
+Wetherdon/M
+Wetheringsett-cum-Brockford/M
+Wetheringsett/M
+Wetherley/M
+Wethersfield/M
+wetland/SM
+wetsuit/SM
+wettable Adjective
+Wettenhall/M
+wettish Adjective
+Wetton/M
+Wetwang/M
+wetware/M Noun: uncountable
+Wetzel/M
+Wexford/M
+Wexham/M
+Wexler/M
+Weybourne/M
+Weybread/M
+Weybridge/M
+Weyburn/M
+Weyhill/M
+Weyl/M
+Weymouth/M
+Weymss/M
+WFF/SM
+whack/SDGM
+whacko/SM
+whacky/TYP
+Whakaari/M
+Whakamaru/M
+Whakarongo/M
+Whakatane/M
+Whakatu/M
+whale/RMGS
+whaleboat/SM
+whalebone/SM
+Whalen/M
+Whaley/M
+Whalley/M
+Whalton/M
+wham-bam
+wham/SDGM
+whammo/SM
+whammy/SM
+Whananaki/M
+Whangamata/M
+Whangamomona/M
+Whanganui/M
+Whangaparaoa/M
+Whangarei/M
+Whangaruru/M
+Whaplode/M
+Wharf/M
+wharf/MS
+Wharfe/M
+Wharfedale/M
+Wharles/M
+Wharram/M
+Wharton/M
+wharves
+Whashton/M
+what'd
+what're
+what's-her-name
+what's-his-name
+what's-its-name
+what/M
+Whataroa/M
+Whataupoko/M
+whatcha
+Whatcom/M
+Whatcote/M
+whatever
+Whatfield/M
+Whatley/M
+Whatlington/M
+whatnot/SM
+WhatsApp/M
+whatsername/SM
+whatshername/SM
+whatshisname/SM
+whatsisname/SM
+whatsit/SM
+whatsoever
+Whatton-in-the-Vale/M
+Whatton/M
+Whatuwhiwhi/M
+Whau/M
+Wheat/M
+wheat/SM
+Wheatacre/M
+wheatear/SM
+wheaten
+Wheatfield/M
+wheatgerm/M Noun: usually uncountable
+wheatgrass/M Noun: usually uncountable
+wheatgrasses
+Wheathampstead/M
+Wheathill/M
+wheatish Adjective
+Wheatland/M
+Wheatley/M
+wheatmeal/SM
+Wheaton/M
+Wheatpieces/M
+Wheatstone/M
+whee
+wheedle/DSGr
+wheedlingly Adverb
+wheel-clamp/SGD Verb
+wheel/MSDRGp
+wheelback/SM
+wheelbarrow/MS
+wheelbase/MS
+wheelchair/SM
+Wheeldon/M
+Wheeler/M
+wheelhouse/SM
+wheelie/SM
+Wheeling/M
+wheelspin/M Noun: usually uncountable
+Wheelton/M
+wheelwright/MS
+wheesht
+wheeze/DSGZM
+wheezy/T
+Whelan/M
+Wheldrake/M
+Wheless/M
+whelk/SM
+whelm/fDcGS
+Whelnetham/M
+whelp/SDMG
+Whelpton/M
+when
+Whenby/M
+whence
+whencesoever
+whenever
+whensoever
+Whenuakite/M
+Whenuakura/M
+Whenuapai/M
+Whepstead/M
+where'd
+where'er
+where're
+where/M
+whereabout/S
+whereafter
+whereagainst
+whereas
+whereat
+whereby
+wherefor
+wherefore/S
+wherefrom
+wherein
+whereinsoever
+whereinto
+whereness
+whereof
+whereon
+whereout
+whereso
+wheresoe'er
+wheresoever
+wherethrough
+whereto
+whereunder
+whereuntil
+whereunto
+whereupon
+wherever
+wherewith
+wherewithal/M
+wherry/SM
+wherryman/M
+wherrymen/M
+Wherstead/M
+Wherwell/M
+Whessoe/M
+Wheston/M
+whet/SDG
+whether
+Whetstone/M
+whetstone/MS
+whew
+whey/M
+Whibley/M
+which
+which've
+Whicham/M
+Whichcote/M
+whichever
+Whichford/M
+whicker/SdM
+Whickham/M
+Whidbey/M
+Whieldon/M
+whiff/DGSM
+Whiffin/M
+whiffle/SGDM
+whiffy/T
+Whig/SM
+Whiggery/M Noun: uncountable
+Whiggish Adjective
+Whiggism/M Noun: uncountable
+while/DGSM
+whilom
+whilst
+Whilton/M
+whim/SM
+whimbrel/SM
+whimper/dSrM
+whimperingly Adverb
+Whimple/M
+whims/1Zw
+whimsicality/MS
+whimsicalness/SM
+whimsy/SM
+Whinburgh/M
+whinchat/SM
+whine/SRGDMZk
+Whinfell/M
+whinge/SGDM
+whingeing
+whinny/DSGM
+Whinston/M
+whinstone/SM
+whiny/T
+whip/MJGSDRp
+whipbird/SM
+whipcord/SM
+whiplash/MS
+Whippany/M
+whipper-snapper/SM
+whippet/MS
+whipping/SMY
+Whippingham/M
+Whipple/M
+whippletree/MS
+whippy/TP
+whipsaw/SMGD
+Whipsnade/M
+whipstitch/SGDM
+whipstock/SM
+whiptail/SM
+whipworm/SM
+whir/DGSM
+Whiritoa/M
+whirl/GDSMr
+whirligig/SM
+whirlingly Adverb
+whirlpool/MS
+whirlwind/MS
+whirlybird/SM
+whirr/SGDM
+Whisby/M
+whisk/GRDZSM
+whiskered
+whiskery
+whiskey/MS
+whisky/SM
+Whisnant/M
+whisper/kdrJSMZ
+Whissendine/M
+Whissonsett/M
+whist/SM
+whistle-blower/SM
+whistle-blowing/SM
+whistle-stop/SM
+whistle/DRSGM
+whistleblower/SM
+whistleblowing/M Noun: uncountable
+Whiston/M
+Whit/M
+whit/SM
+Whitacre/M
+Whitaker/M
+Whitbeck/M
+Whitbourne/M
+Whitbread/M
+Whitburn/M
+Whitby/M
+Whitchurch-on-Thames/M
+Whitchurch/M
+Whitcomb/M
+Whitcombe/M
+white-collar Adjective
+white-hot Adjective
+white-out/SM
+white/DPSTGMY
+White/MS
+whitebait/SM
+whitebeam/SM
+Whitebloom/M
+whiteboard/SMG
+Whitechapel/M
+Whitechurch/M
+Whitecraig/M
+Whitecross/M
+whiteface/SM
+Whitefield/M
+Whitefish/M
+whitefish/SM
+whitefly/SM
+whitefront/SM
+Whitegate/M
+Whitehall/M
+Whitehaven/M
+whitehead/SM
+Whitehill/MS
+Whiteholme/M
+Whitehorse/M
+Whitehouse/M
+Whitehurst/M
+Whiteinch/M
+Whitekirk/M
+Whitelackington/M
+Whiteladies/M
+Whiteland/M
+Whitelaw/M
+Whiteley/M
+whitelist/SGDM
+Whitemans/M
+Whitemarsh/M
+Whitemoor/M
+whiten/dSr
+Whiteparish/M
+Whiterock/M
+Whiteshill/M
+Whiteside/M
+Whitestaunton/M
+Whitestone/M
+Whitestown/M
+whitethorn/SM
+whitewash/DGMSr
+Whitewater/M
+Whitewell/M
+whitewood/SM
+Whitey/M
+whitey/SM
+Whitfield/M
+Whitford/M
+Whitgift/M
+Whitgreave/MS
+whither
+Whithorn/M
+Whitianga/M
+Whiting/M
+Whitiora/M
+whitish Adjective
+Whitkirk/M
+Whitland/M
+Whitley/M
+Whitlingham/M
+Whitlock/M
+Whitlow/M
+whitlow/SM
+Whitman/M
+Whitmer/M
+Whitminster/M
+Whitmore/M
+Whitnash/M
+Whitney-on-Wye/M
+Whitney/M
+Whitpain/M
+Whitrow/M
+Whitsbury/M
+Whitshed/M
+Whitsome/M
+Whitson/M
+Whitstable/M
+Whitstone/M
+Whitsun/M
+Whitsuntide/MS
+Whitta/M
+Whittaker/M
+Whittall/M
+Whittier/M
+Whittingehame/M
+Whittingham/M
+Whittington/M
+Whittle-le-Woods/M
+Whittle/M
+whittle/RDGSJ
+Whittlebury/M
+Whittlesea/M
+Whittlesey/M
+Whittlesford/M
+Whitton/M
+Whittonstall/M
+Whitwell-on-the-Hill/M
+Whitwell/M
+Whitwick/M
+Whitworth/M
+Whixall/M
+Whixley/M
+whizz-kid/SM
+whizz/SGDM
+whizzy/T
+who'd
+who'll
+who're
+who've
+who/M
+WHO/M World Health Organization
+whoa
+whodunnit/SM
+whoe'er Adverb
+whoever/M
+WHOIS
+whole/SM
+wholefood/SM
+wholegrain/SM
+wholehearted/YP
+wholemeal/SM
+wholeness/M Noun: usually uncountable
+wholesale/SRMDGY
+wholesaleness/M Noun: uncountable
+wholescale Adjective
+wholesome/UY
+wholesomeness/U
+wholewheat Adjective
+wholewise Adverb
+wholism/SM
+wholist/SMW1
+wholly Adverb
+whom
+whomever
+whomsoever
+whoo
+whoop/DGSrM
+whoopee/SM
+whoopsie/SM
+whoosh/GMDS
+whop/MRSGD
+whore/SDGM!
+whoredom/M! Noun: usually uncountable
+whorehouse/MS!
+whoremaster/SM!
+whoremonger/SM!
+whoreson/MS!
+whorish/Y!
+whorishness/M! Noun: uncountable
+whorl/SMGD
+Whorlton/M
+whortleberry/MS
+whose
+whosever
+whoso
+whosoever
+why
+Whyalla/M
+whydah/MS
+Whyle/M
+whys
+Whyte/M
+Whyteleafe/M
+Wi-Fi/M Noun: uncountable
+WI/M
+Wiarda/M
+Wibsey/M
+Wibtoft/M
+Wicca/M
+Wiccan/SM
+Wichenford/M
+Wichita/M
+Wichling/M
+Wichmann/M
+Wick/M
+wick/RiSDhM
+wicked/P
+wickeder
+wickedest
+Wicken/M
+Wickenby/M
+Wickepin/M
+Wickersley/M
+wickerwork/Mr
+wicket-keeper/SM
+wicket-keeping/M
+wicket/SM
+wicketkeeper/SM
+wicketkeeping/M
+Wickford/M
+Wickham/M
+Wickhambreaux/M
+Wickhambrook/M
+Wickhamford/M
+Wickhampton/M
+Wicki/M
+wickiup/SM
+Wicklewood/M
+Wickliffe/M
+Wicklow/M
+Wickman/M
+Wickmere/M
+Wickwar/M
+Wicomico/M
+Widcombe/M
+Widdecombe/M
+Widdington/M
+widdle/SGDM
+Widdrington/M
+wide-angle/D
+wide-area
+wide-eyed Adjective
+wide-field Adjective
+wide-ranging Adjective
+wide/SMTY
+wideawake/SM
+wideband Adjective
+Widecombe/M
+widen/rdS
+wideness/M Noun: usually uncountable
+widescreen/SM
+widespread Adjective
+Widford/M
+widgeon/SM
+widget/SM
+widish Adjective
+Widley/M
+Widmerpool/M
+Widnes/M
+widow/RMSDG
+widowhood/SM
+width/SM
+widthways Adverb
+widthwise Adverb
+Widworthy/M
+Wiegand/M
+Wieland/M
+Wield/M
+wield/SRDGZ
+Wiener/M
+wienie/SM
+Wiens/M
+Wiertz/M
+Wiesbaden/M
+wife/MpY
+wifedom/M Noun: uncountable
+wifehood/M Noun: usually uncountable
+wifely/TP
+wifey/SM
+wifie/SM
+wig/DSGMp
+Wigan/M
+Wigborough/M
+wigeon/SM
+Wigford/M
+Wiggenhall/M
+Wigginhall/M
+Wiggins/M
+Wigginton/M
+wiggle/RGYDSM
+Wigglesford/M
+Wigglesworth/M
+wiggly/T
+Wiggonholt/M
+Wighill/M
+Wight/M
+wight/SM
+Wighton/M
+Wigland/M
+Wigle/M
+Wigley/M
+Wigmore/M
+Wigner/M
+Wigram/M
+Wigsley/M
+Wigston/M
+Wigtoft/M
+Wigton/M
+Wigtown/M
+Wigtownshire/M
+wigwag/GSD
+wigwam/SM
+Wii/SM
+wiki/SM
+Wikibooks
+Wikidata
+wikify/SGD Verb
+Wikileaks/M
+Wikimedia/M
+Wikinews
+Wikipedia/SM
+Wikipedian/SM
+WikiProject/SM
+wikiproject/SM
+wikiquette/M Noun: uncountable
+Wikiquote
+Wikisource
+Wikispecies
+wikitext/M Noun: uncountable
+Wikiversity
+Wikivoyage
+Wiklund/M
+Wiktionary/SM
+Wil/M
+Wilbarger/M
+Wilbarston/M
+Wilberforce/M
+Wilberfoss/M
+Wilbert/M
+Wilbraham/M
+Wilbur/M
+Wilburton/M
+Wilby/M
+Wilcot/M
+Wilcote/M
+Wilcox/M
+Wilcrick/M
+wild/TYPSGDM
+Wildboarclough/M
+wildcard/SM
+wildcat/MS
+Wilde/M
+wildebeest/SM
+Wilden/M
+Wilder/M
+wilder/PSd
+wildfire/MS
+wildflower/SM
+wildfowl/M
+wilding/SM
+wildish/Y
+wildlife/M Noun: uncountable
+wildling/SM
+Wildmore/M
+Wildomar/M
+Wildon/M
+Wildsworth/M
+Wildt/M
+Wildwood/M
+wildwood/SM
+wile/DSMG
+Wilen/M
+Wiley/M
+Wilf/M
+Wilford/M
+Wilfred/M
+Wilfrid/M
+wilful/Y
+wilfulness/M Noun: uncountable
+Wilhelm/M
+Wilhelmina/M
+Wilhelmshaven/M
+Wilkerson/M
+Wilkes-Barre/M
+Wilkes/M
+Wilkesley/M
+Wilkie/M
+Wilkins/M
+Wilkinsburg/M
+Wilkinson/M
+Wilks/M
+Wilksby/M
+will/GkSYDM
+Will/M
+Willa/M
+Willacy/M
+Willamette/M
+Willand/M
+Willard/M
+Willaston/M
+Willcocks/M
+Willcox/M
+Willem/M
+Willemstad/M
+Willen/M
+Willenhall/M
+Willenstad/M
+Willerby/M
+Willersey/M
+Willersley/M
+Willesborough/M
+Willesden/M
+Willesley/M
+willet/SM
+Willett/M
+Willey/M
+William/M
+Williamite/M
+Williams/M
+Williamsburg/M
+Williamson/M
+Williamsport/M
+Williamston/M
+Williamwood/M
+Willian/M
+Williard/M
+Willie/M
+willing/UY
+Willingale/M
+Willingboro/M
+Willingdon/M
+Willingham/M
+willingness/M Noun: usually uncountable
+Willington/M
+Willis/M
+Willisham/M
+Williston/M
+Willistown/M
+Williton/M
+Willmar/M
+Willmott/M
+Willoughby/M
+Willoughton/M
+Willow/M
+willow/SMZ
+Willowbrae/M
+Willowby/M
+willowherb/SM
+Willowick/M
+willowy/T
+willpower/MS
+Wills/M
+Willstätter/M
+willy-nilly
+Willy/M
+willy/SM
+Wilma/M
+Wilmcote/M
+Wilmette/M
+Wilmington/M
+Wilmorton/M
+Wilmot/M
+Wilmott/M
+Wilms/M
+Wilmslow/M
+Wilne/M
+Wilnecote/M
+Wilpshire/M
+Wilsden/M
+Wilsford/M
+Wilshamstead/M
+Wilshire/M
+Wilson/M
+Wilsonville/M
+Wilsthorpe/M
+Wilstrop/M
+wilt/DGSM
+Wilton/M
+Wilts/M
+Wiltshire/M
+wily/PYT
+Wimbish/M
+Wimblebury/M
+Wimbledon/M
+Wimblington/M
+Wimboldsley/M
+Wimborne/M
+Wimbotsham/M
+wimp/MSZ
+Wimpey/M
+wimple/MDSG
+Wimpole/M
+wimpy/T
+Wimshurst/M
+win/RGSJM
+Wincanton/M
+wince/SDGMr
+Winceby/M
+Winceyette/M
+winceyette/SM
+winch/DSGMr
+Winch/M
+Wincham/M
+Winchburgh/M
+Winchcombe/M
+Winchelsea/M
+Winchendon/M
+Winchester/SM
+Winchfield/M
+winchman/M
+winchmen/M
+Winckelmann/M
+Wincle/M
+wind-up/SM
+wind/Mp
+wind/UGSA
+windage/M Noun: usually uncountable
+windbag/SM
+windblown Adjective
+windbound Adjective
+windbreak/SM
+windburn/SM
+windburnt
+windcheater/SM
+winded/P
+Winder/M
+winder/MS
+Windermere/M
+windfall/MS
+windfarm/SM
+windflower/SM
+Windham/M
+Windhoek/M
+windhover/MS
+winding/SM
+windjammer/MS
+windlass/SDMG
+Windle/M
+Windlesham/M
+Windley/M
+windmill/MS
+window-shop/SGD
+window/pGSDM
+windowpane/SM
+windowsill/SM
+windpipe/SM
+windproof Adjective
+windrow/SM
+Windrush/M
+windscreen/MS
+windslab/SM
+windsock/SM
+Windsor/M
+windsurf/SGDR
+windswept Adjective
+Windu/M
+windward/M
+Windwhistle/M
+windy/PYT
+Windygates/M
+wine/DGZMS
+wineberry/SM
+winebibber/MS
+Winefride/M
+wineglass/SM
+winegrower/SM
+Winehouse/M
+winemaker/SM
+winemaking/M Noun: uncountable
+winery/SM
+Winesap/SM
+wineskin/SM
+Winestead/M
+Winewaloy/M
+winey Adjective
+Winfarthing/M
+WinFax/M
+Winfield/M
+Winford/M
+Winforton/M
+Winfrey/M
+Winfried/M
+Winfrith/M
+Wing/M
+wing/pmRGDM
+Wingate/M
+Wingatui/M
+wingbeat/SM
+Wingerworth/M
+Wingfield/M
+Wingham/M
+winglet/MS
+winglike
+Wingrave/M
+wingspan/MS
+wingspread/SM
+wingsuit/SM
+winier
+winiest
+Winifred/M
+wink/RDSGM
+Winkburn/M
+Winkfield/M
+winkle/DSGRM
+Winkleigh/M
+Winkler/M
+Winkney/M
+Winksley/M
+Winlaton/M
+Winmarleigh/M
+Winn/M
+winnable Adjective
+Winnall/M
+Winnebago/M
+Winnersh/M
+Winneshiek/M
+Winnetka/M
+Winnie/M
+winning/YSM
+Winnipeg/M
+winnow/DGRS
+Winnow/M
+wino/MS
+Winona/M
+Winooski/M
+WinRAR/M
+Winscales/M
+Winscombe/M
+Winsford/M
+Winsham/M
+Winshill/M
+Winslade/M
+Winsley/M
+Winslow/M
+winsome/YP
+Winson/M
+Winsor/M
+Winsten/M
+Winster/M
+Winston-Salem/M
+Winston/M
+Winstone/M
+Winswick/M
+winter/cdS
+Winter/M
+winter/Mpr
+Winterborne/M
+Winterbourne/M
+Winterburn/M
+wintergreen/SM
+Winteringham/M
+winterise/SGDN
+winterize/SGDN
+Winterland/M
+Wintersett/M
+Winterslow/M
+Winterson/M
+wintertime/SM
+Winterton-on-Sea/M
+Winterton/M
+wintery Adjective
+Winther/M
+Winthorpe/M
+Winthrop/M
+Wintney/M
+Winton/M
+Wintour/M
+wintrily Adverb
+wintriness/M
+wintriness/M Noun: usually uncountable
+Wintringham/M
+wintry/TY
+Winwick/M
+WinZip/M
+WIP/SM
+wipe/SMRGD7
+wire-haired Adjective
+wire-tapping
+wire/r2ZmDpSMJG
+wireframe/SM
+wireless/MSY
+wireline/SM
+wiretap/SDGMR
+Wiri/M
+wiriness/M Noun: uncountable
+wiring/SM
+Wirksworth/M
+Wirral/M
+Wirswall/M
+wiry/TY
+Wisbech/M
+Wisborough/M
+Wisconsin/M
+Wisden/M
+wisdom/MS
+Wise/M
+wise/TYSM
+wiseacre/MS
+wiseass/SM
+wisecrack/SGMDr
+Wiseman/M
+Wisenheimer/M
+wisent/SM
+Wiseton/M
+wish/RSjGD6ZM
+Wishart/M
+Wishaw/M
+wishbone/MS
+Wishford/M
+wishfulness/M Noun: usually uncountable
+wishy-washy Adjective
+Wiska/M
+Wiske/M
+Wisley/M
+wisp/MZS
+wispiness/M Noun: uncountable
+Wispington/M
+wispy/TY
+Wissett/M
+Wistanstow/M
+wistaria/MS
+Wistaston/M
+wisteria/SM
+Wisteston/M
+wistful/YP
+Wiston/M
+Wistow/M
+Wiswell/M
+wit/zSM2pGZD
+witch-hunt/SGr
+witch/MyDSG
+Witcham/M
+Witchampton/M
+witchcraft/MS
+witchdoctor/SM
+witchery/SM
+Witchford/M
+Witchingham/M
+witchlike Adjective
+Witcombe/M
+with/O
+Withalm/M
+Witham/M
+Withcall/M
+Withcote/M
+withdraw/SGr
+withdrawal/MS
+withdrawn
+withdrawnness/M Noun: uncountable
+withdrew
+withe/SM
+Witheford/M
+wither/kSd
+Witheridge/M
+Witherington/M
+witherite/SM
+Witherlea/M
+Witherley/M
+Withern/M
+Withernsea/M
+Withernwick/M
+Withersdale/M
+Withersfield/M
+Witherslack/M
+Witherspoon/M
+Witherstone/M
+withheld
+withhold/SRJG
+Withiel/M
+within
+Withington/M
+Withnell/M
+without
+Without/M
+withstand/SG
+withstood
+withy/SM
+Withybrook/M
+Withycombe/M
+Withyham/M
+Withypool/M
+witless/YP
+Witley/M
+witloof/SM
+Witnesham/M
+witness/DGSM
+Witney/M
+wits/e
+Witt/M
+Witte/M
+witted/e
+Witten/M
+Wittenberg/M
+Wittenham/M
+witter/Sd Verb
+Wittering/M
+Wittersham/M
+Wittgenstein/M
+witticism/SM
+witting/YU
+Wittmann/M
+Witton/M
+Witts/M
+witty/PT
+Witwatersrand/M
+Witztum/M
+Wiveleslie/M
+Wiveliscombe/M
+Wivelsfield/M
+Wivenhoe/M
+wivern/MS
+Wiverton/M
+wives
+Wiveton/M
+Wix/M
+Wixams/M
+Wixford/M
+Wixoe/M
+Wixom/M
+wizard/ySYM
+wizardry/SM
+wizened
+WMA/SM
+WMV Initialism of Windows Media Video
+WNO
+WNP
+WO/SM Initialism of warrant officer
+woad/M
+woah
+wobbegong/MS
+wobble/SMY2DGr
+wobbly/T
+Wobegon/M
+Woburn/M
+Wode/M
+Wodehouse/M
+wodge/SM
+woe/jSM6
+woebegone
+woefulness
+wog/SM
+woggle/SM
+Wöhler/M
+Wojick/M
+wok/MS
+woke
+Wokefield/M
+woken
+Woking/M
+Wokingham/M
+Wolboough/M
+Wolcott/M
+Wold/M
+wold/SM
+Woldingham/M
+Wolds/M
+wolf-whistles
+Wolf/M
+wolf/MDGS
+wolfberry/SM
+Wolfe/M
+Wolfenstein/M
+Wolferlow/M
+Wolferton/M
+Wolff/M
+Wolffian Adjective
+Wolfgang/M
+Wolfhampcote/M
+wolfhound/SM
+wolfish/YP
+wolflike Adjective
+Wölfling/M
+Wolford/M
+Wolfowitz/M
+Wolfram/M
+wolfram/MS
+wolframite/SM
+wolfsbane/MS
+Wolfscastle/M
+wolfskin/MS
+Wolfson/M
+Wolgemut/M
+Wollaston/M
+wollastonite/SM
+Wollaton/M
+Wollescote/M
+Wollheim/M
+Wollongong/M
+Wollstonecraft/M
+Wolpert/M
+Wolsingham/M
+Wolstanton/M
+Wolstaston/M
+Wolston/M
+Wolters/M
+Wolterton/M
+Wolvercott/M
+Wolverhampton/M
+Wolverine Wolverine State
+wolverine/MS
+Wolverley/M
+Wolverton/M
+wolves
+Wolvesnewton/M
+Wolvey/M
+Wolviston/M
+woman/pMsQY~
+womanhood/SM
+womanize/SGDNR
+womankind/M Noun: uncountable
+womanlike
+womanly/TP
+womb/MS
+wombat/MS
+Wombleton/M
+Wombourn/M
+Wombourne/M
+Wombridge/M
+women/M
+womenfolk/M
+Womenswold/M
+Womersley/M
+won
+won't
+Wonastow/M
+wonder/rjLSdkM
+wonderful/P
+wonderland/SM
+wondrous/Y
+wondrousness
+Wonersh/M
+Wong/M
+wonky/T
+Wonsan/M
+Wonston/M
+wont/hDG
+wontedly/U
+woo/DRGS
+Wooburn/M
+wood-hoopoe/SM
+Wood/M
+wood/M2SDmp
+Woodall/M
+Woodard/M
+Woodbastwick/M
+Woodberry/M
+woodbine/SM
+woodblock/SM
+woodboring
+Woodborough/M
+Woodbridge/M
+Woodburn/M
+Woodburne/M
+Woodbury/M
+woodcarver/SM
+woodcarving/SM
+Woodchester/M
+woodchip/SM
+woodchuck/SM
+Woodchurch/M
+woodcock/SM
+Woodcote/M
+Woodcott/M
+woodcut/SRJM
+woodcutting/M
+Woodditton/M
+Woodeaton/M
+wooden/YP
+Woodend/M
+woodener
+woodenware/M Noun: usually uncountable
+Woodford/M
+Woodgate/M
+Woodgreen/M
+Woodhall/M
+Woodham/M
+Woodhaven/M
+Woodhay/M
+Woodhead/M
+Woodhill/M
+Woodhorn/M
+Woodhouse/M
+woodhouse/SM
+Woodhurst/M
+Woodinville/M
+Woodland/M
+woodland/SMr
+Woodlands/M
+woodlark/SM
+Woodlawn/M
+Woodleigh/M
+Woodley/M
+woodlice/M
+woodlouse/M
+woodman/M
+Woodmancote/M
+Woodmansey/M
+Woodmansterne/M
+woodmen/M
+Woodnesborough/M
+Woodnewton/M
+woodpecker/MS
+woodpile/SM
+Woodplumpton/M
+Woodridge/M
+Woodrising/M
+Woodrow/M
+woodruff/SM
+woodrush/MS
+Woodsetton/M
+Woodsetts/M
+Woodsford/M
+woodshed/MS
+Woodside/M
+woodsiness/M Noun: uncountable
+woodsmoke/M Noun: uncountable
+Woodson/M
+Woodstock/M
+Woodston/M
+woodswallow/SM
+woodsy/T
+Woodthorpe/M
+Woodton/M
+woodturner/SM
+woodturning
+Woodville/M
+Woodward/SM
+woodwind/SM
+woodwork/RM
+woodworking/M
+woodworm/MS
+Woody/M
+woody/T
+Woodyatt/M
+woof/DRGMS
+Wookey/M
+wool-gathering
+Wool/M
+wool/SMY
+Wooland/M
+Woolaston/M
+Woolavington/M
+Woolbeding/M
+Woolchurch/M
+Woolcock/M
+Wooler/M
+Wooley/M
+Woolfardisworthy/M
+Woolhampton/M
+Woolhope/M
+Woolland/M
+Woollatt/M
+woollen/SM
+Woolley/M
+woolly/TSMP
+Woolmer/M
+Woolnoth/M
+Woolos/M
+Woolpit/M
+Woolsack/M
+Woolsington/M
+Woolstanwood/M
+Woolstaston/M
+Woolsthorpe/M
+Woolston/M
+Woolstone/M
+Woolton/M
+Woolverstone/M
+Woolverton/M
+Woolwich/M
+Woolworth/M
+Woonsocket/M
+Woore/M
+woosh/SGDM
+Wooster/M
+Wootton/M
+woozy/TYP
+wop/SM
+Worcester/M
+Worcestershire/M
+word-blindness
+word-perfect
+word-processing
+word/ADJGS
+word/YM~
+wordable
+wordage/SM
+wordbook/SM
+wordcraft/M Noun: uncountable
+wordfinder/SM
+wordhoard/SM
+wordie/SM
+wording/MA
+wordless/YP
+wordlist/SM
+wordlore/M Noun: uncountable
+wordman/M
+wordmanship
+wordmen/M
+wordmonger/SM
+WordNet/M
+WordPad/M
+wordplay/MS
+WordPress/M
+Wordsley/M
+wordsmith/SM
+Wordsworth/M
+Wordsworthiana/M
+Wordwell/M
+wordy/TPY
+wore/e
+Worf/M
+Worfield/M
+work's/e
+work-shy
+work-to-rule
+work/ADeScG
+workability/M
+workable/U
+workable/Y
+workableness
+workaday
+workaholic/SM
+workaholism/M Noun: uncountable
+workaround/MS
+workbench/SM
+workboat/SM
+workbook/MS
+workday/MS
+worker/SM
+workfare/SM
+workflow/SM
+workforce/SM
+workful/P
+workgroup/SM
+workhead/M
+workhorse/MS
+workhouse/SM
+working-class
+working/MS
+Workington/M
+workless/P
+workload/SM
+workman/M
+workmanlike Adjective
+workmanship/MS
+workmaster/SM
+workmate/SM
+workmen/M
+workout/MS
+workover/SM
+workpeople/M
+workperson/SM
+workpiece/SM
+workplace/SM
+workprint/SM
+workroom/SM
+worksheet/SM
+workshop/MSGD
+worksite/SM
+Worksop/M
+workspace/SM
+workstation/MS
+worktable/MS
+worktop/SM
+workup/SM
+workwear/M Noun: uncountable
+workwise Adverb
+workwoman/M
+workwomen/M
+Worlaby/M
+world-class
+world-famous
+world-view/SM
+world-weary
+world/fMS
+WorldCom
+Worldham/M
+worldliness/U
+worldly-wise
+worldly/TP
+worldwide
+Worle/M
+Worleston/M
+Worlingham/M
+Worlington/M
+Worlingworth/M
+worm-casts
+worm-eaten
+worm-wheel
+worm/GSDZM
+Wormald/M
+Wormbridge/M
+Wormegay/M
+wormer/SM
+wormery/SM
+Wormhill/M
+wormhole/SM
+Wormingford/M
+Worminghall/M
+Wormington/M
+Wormit/M
+Wormleighton/M
+Wormley/M
+Wormshill/M
+Wormsley/M
+wormwood/MS
+wormy/T
+worn-out
+worn/eU
+Worplesdon/M
+worrisome/Y
+worry/RDkSGh
+Worsall/M
+Worsborough/M
+worse
+worsen/dS
+Worser/M
+worship/jRSG6DM
+worshipfulness
+Worsley/M
+worst-case
+worst/D
+Worstead/M
+worsted/MS
+Worsthorne-with-Hurstwood/M
+Worsthorne/M
+Worston/M
+wort/SM
+Worten/M
+worth/pz2SGDM
+Wortham/M
+worthen
+Worthenbury/M
+Worthern/M
+worthily/U
+Worthing/M
+Worthington/M
+worthless/PY
+worthwhile Adjective
+Worthy/M
+worthy/TS
+Worting/M
+Wortley/M
+Worton/M
+Wortwell/M
+wotcha
+wotcher
+Wothersome/M
+Wothorpe/M
+Wotton-under-Edge/M
+Wotton/M
+Woughton/M
+would
+would've
+would-be
+Wouldham/M
+wouldn't
+wouldn't've
+Woulds/M
+wouldst
+Woulfe/M
+wound/GSJDMp
+woundwort/MS
+Wouter/M
+wove/A
+woven/UA
+wow/GSD
+woylie/SM
+WPA/M
+WPA2/M
+wpm
+Wrabness/M
+wrack/MSGD
+WRAF/M Initialism of Women's Royal Air Force
+Wragby/M
+wraith/MS
+wraithlike Adjective
+Wramplingham/M
+Wrangel
+Wrangell
+Wrangholm/M
+wrangle/GRDS
+Wrangle/M
+wrap/cU
+wrap/SDM
+wraparound/SM
+wrappable
+wrapper/MS
+wrapping/SM
+wrasse/MS
+wrath/jM6
+wrathfulness
+Wratting/M
+Wrawby/M
+Wraxall/M
+Wray-with-Botton/M
+Wraysbury/M
+wreak/DSGr
+Wreak/M
+Wreake/M
+wreath/SDMG
+wreathe/S
+Wreay/M
+wreck/GSDR
+wreckage/MS
+Wrede/M
+Wrekin/M
+Wrelton/M
+Wren/MS
+wren/SM
+Wrenbury/M
+wrench/DGkSM
+Wreningham/M
+Wrennery/MS
+Wrentham/M
+Wressle/M
+wrest/GSDr
+wrestle/DRGS
+wrestling/M
+Wrestlingworth/M
+wretch/MiDhS
+wretched/r
+wretchedest
+Wretham/M
+Wretton/M
+Wrexham/M
+wriggle/RDSGM
+wriggly/T
+Wright/M
+Wrightington/M
+wrights
+Wrigley/M
+Wrinehill/M
+wring/RGSM
+Wrington/M
+wrinkle/GDSMY
+wristband/MS
+wristwatch/SM
+writ/MS
+write-down/SM
+write-off/SM
+write-up/SM
+write/fRGAS
+writeable
+writhe/SDG
+Writhlington/M
+writing/AS
+writing/M
+written/fUcaA
+Writtle/M
+WRNS
+Wrockwardine/M
+wrong-foot/D
+wrong-headed/YP
+wrong/j6GYSDPM
+wrongdoer/MS
+wrongdoing/MS
+wrongfulness
+Wronski/M
+Wroot/M
+Wrose/M
+wrote/fAc
+wroth
+Wrotham/M
+wrought-iron
+wrought/Ic
+Wroughton/M
+Wroxall/M
+Wroxeter/M
+Wroxham/M
+Wroxton/M
+wrung
+wry/3
+wrybill/MS
+wryer
+wryest
+wryly
+wrymouth/MS
+wryneck/SM
+wryness/M Noun: usually uncountable
+wt
+WTF
+WTO
+Wu/M
+Wuerl/M
+Wuhan/M
+Wujastyk/M
+Wujcik/M
+Wujing/M
+Wulfram/M
+Wulfsige/M
+wunderkind/SM
+wunderkinder/M
+wurtzite/SM
+Würzburg/M
+wurzel/SM
+wuss/SGD
+wussy/SM
+WV
+WWI/M Abbreviation of World War I
+WWII/M Abbreviation of World War II
+WWIII/M Abbreviation of World War III
+WWW
+www
+WY
+Wyandot/M
+Wyandotte/M
+Wyard/M
+Wyaston/M
+Wyatt/M
+Wyatts/M
+Wyberton/M
+Wyboston/M
+Wybunbury/M
+Wyburd/M
+Wych/M
+Wychavon/M
+Wychling/M
+Wychnor/M
+Wyck/M
+Wyckoff/M
+Wyclef/M
+Wycliffe/M
+Wycombe/M
+Wyddial/M
+Wye/M
+Wyfordby/M
+Wyham/M
+Wyke/M
+Wykeham/M
+Wykehamist/MS
+Wyken/M
+Wylie/M
+Wyllys/M
+Wylye/M
+Wyman/M
+Wymering/M
+Wymeswold/M
+Wymington/M
+Wymondham/M
+Wymondley/M
+Wymynswold/M
+Wyndcroft
+Wyndham/M
+Wynette/M
+Wynford/M
+Wynn/M
+Wynne/M
+Wynyard/M
+Wynyates/M
+Wyoming/M
+Wyomissing/M
+Wyrardisbury/M
+Wyre/M
+Wyresdale/M
+Wyrley/M
+Wysall/M
+Wysing/M
+WYSIWYG
+Wysiwyg
+Wyss/M
+Wythall/M
+Wytham/M
+Wythburn/M
+Wythe/M
+Wythop/M
+Wyton-on-the-Hill/M
+Wyton/M
+wyvern/MS
+Wyverstone/M
+Wyville/M
+x
+X
+x-axes
+x-axis/M
+X-rated
+X-ray/DSGM
+x64/M
+x86/M
+Xanadu/SM
+Xanax/SM
+xanthene/SM
+xanthine/SM
+Xanthippe/SM
+xanthopsia/M Noun: uncountable
+Xantippe/SM
+Xarelto/M
+Xavier/M
+Xbox/SM
+XChat/M
+Xcode/M
+Xeloda/M
+Xenarthra Taxonomic superorder
+xenarthran/SM
+Xenia/M
+Xenix/M
+xenoanthropology/M Noun: uncountable
+xenobiology/wM
+xenobiotic/SM
+xenoblast/MS
+xenocryst/SMW
+xenodiagnoses
+xenodiagnosis/M
+xenogamous Adjective
+xenogamy/M Noun: uncountable
+xenograft/SM
+xenolith/SMW
+xenologer/SM
+xenology/M3
+xenon/M Noun: usually uncountable
+Xenophanes/M
+xenophobe/MWS
+xenophobia/SM
+Xenophon/M
+Xenopus/M
+xenotime/SM
+Xeon/M
+xeroderma/SM
+xerodermata/M Plural of xeroderma
+xerograph/MS
+xerography/MW1
+xerophile/MS
+xerophilous
+xerophyte/MSW
+Xerox/SDGM
+Xerxes/M
+Xfce/M
+XGA/M Extended Graphics Array
+Xgeva/M
+Xhosa/MS
+XHTML/M
+xi
+Xi'an/M
+Xi/M
+Xian/M
+Xiang/M
+Xiaoping/M
+Xiaoying/M
+xii
+xiii
+Xilu/M
+xinafoate/M Noun: uncountable
+Xindi/M
+Xinhua/M
+Xining/M
+Xinjiang/M
+Xiong/M
+xiv
+XIX
+xix
+Xizang/M
+xl
+XL
+xli
+xlii
+xliii
+xliv
+xlix
+xlsx/M
+xlv
+xlvi
+xlvii
+xlviii
+Xmas/M
+XML/M
+XMP/SM
+Xolair/M
+Xopenex/M
+XOR/SM
+XP/M
+XPI/M
+xpi/M
+Xpressway/M
+Xu/M
+Xubuntu/M
+Xuechen/M
+Xuejun/M
+XUL/M
+XULRunner/M
+Xuzhou/M
+xv
+xvi/M
+xvii
+xviii
+xx
+xxi
+xxii
+xxiii
+xxiv
+xxix
+XXL Initialism of extra extra large
+xxv
+xxvi
+xxvii
+xxviii
+xxx
+xxxi
+xxxii
+xxxiii
+xxxiv
+xxxix
+xxxv
+xxxvi
+xxxvii
+xxxviii
+xylem/SM
+xylene/SM
+xylitol/SM
+xylometazoline/M Noun: uncountable
+xylophone/SM3
+xylose/SM
+xylyl/SM
+XYZ/M
+y'all
+y-axes
+y-axis/M
+y/K
+Y/SM
+Y2K/M Noun: uncountable
+ya
+yacht/r5mMSDG
+yachtie/SM
+yack/GDSM
+Yadkin/M
+Yafforth/M
+Yagi/M
+yagna/SM
+Yah/M
+yah/SM
+yahoo/SM
+Yahoo/SM Plural for workers of Yahoo
+Yahveh/M
+Yahvist/MS
+Yahweh/M
+yajna/SM
+Yajnik/M
+Yajur Yajur Veda
+yak/MSGD
+Yakima/M
+yakisoba/M Noun: usually uncountable
+yakitori/SM
+Yakov/M
+yaksa/MS
+yaksha/MS
+yakshini/MS
+yaksi/MS
+yaksini/MS
+Yakutian/MS
+Yakutsk/M
+Yakuza/M
+yakuza/SM
+Yalding/M
+Yale/MS
+Yalobusha/M
+Yalta/M
+yam/SM
+Yama/M
+Yamada/M
+Yamaha/M
+Yamakawa/M
+Yamamoto/M
+Yamashita/M
+Yamato/M
+Yamaura/M
+Yamazaki/M
+Yamhill/M
+yammer/SdrM
+Yamoussoukro/M
+Yamuna/M
+Yan/M
+Yancey/M
+Yandex/M
+yang/M Noun: uncountable
+Yangtze/M
+Yangzhou/M
+Yank/MS
+yank/SGDM
+Yankee/SM
+Yankeeism/SM
+Yankton/M
+yantra/SM
+Yanwath/M
+Yanworth/M
+Yao/M
+Yaounde/M
+Yaoundé/M
+yap/SGDM
+Yapham/M
+Yapton/M
+Yarborough/M
+Yarbro/M
+Yarburgh/M
+Yarcombe/M
+Yard/M
+yard/SM
+yardage/MS
+yardarm/MS
+Yardley/M
+yardman/M
+yardmaster/SM
+yardmen/M
+yardstick/SM
+Yarkhill/M
+Yarlington/M
+Yarm/M
+Yarmouth/M
+Yarmuk/M
+yarmulke/SM
+yarn/DMGS
+Yarnfield/M
+Yarnscombe/M
+Yarnton/M
+Yarpole/M
+Yarra/M
+Yarrow/M
+yarrow/SM
+Yarwell/M
+Yashmak/M
+Yasmin/M
+Yasser/M
+Yasuhiro/M
+Yasuura/M
+Yatala/M
+Yate/M
+Yateley/M
+Yates/M
+Yatesbury/M
+Yattendon/M
+Yatton/M
+Yauco/M
+Yavapai/M
+Yaverland/M
+yaw/DSGM
+yawl/SM
+yawn/kGRDSM
+yawp/SDGRM
+Yaxham/M
+Yaxley/M
+yay
+Yazoo/M
+Yazor/M
+YB
+yd/M
+ye/S
+yea/SM
+Yeading/M
+Yeadon/M
+Yeager/M
+yeah
+Yealand/M
+Yealmpton/M
+year-end
+year-on-year
+year-round/r
+year/YMS
+yearbook/SM
+yearful/SM
+yearling/SM
+yearlong
+yearn/DJGkSr
+yearnful/Y
+yearnfulness/M Noun: uncountable
+Yearsley/M
+yeast/SM2
+yeasty/TY
+Yeats/M
+Yeaveley/M
+Yedingham/M
+Yee/M
+Yefremov/M
+Yekaterinburg/M
+Yelden/M
+Yeldersley/M
+Yeldham/M
+Yell/M
+yell/SGDM
+Yellamma/M
+Yelling/M
+yellow-bellied
+Yellow/M
+yellow/YPZMSDG~
+yellowback/MS
+yellower Adjective
+yellowfin/SM
+yellowhammer/MS
+Yellowknife/M
+yellowleg/SM
+Yellowstone/M
+yellowthroat/SM
+yelp/DGSM
+Yeltsin/M
+Yelvertoft/M
+Yelverton/M
+Yemen/M
+Yemeni/M
+yen/DSGM
+yeoman/YM
+yeomanry/SM
+yeomen/M
+Yeonpyeong/M
+Yeovil/M
+Yeoville/M
+Yeovilton/M
+yep
+Yeppoon/M
+Yerbeston/M
+Yerevan/M
+yes-man/M
+yes-men/M
+Yeshua/M
+Yester/M
+yesterday/SM
+yesteryear/SM
+yet
+Yetholm/M
+yeti/SM
+Yetminster/M
+Yeung/M
+yew/SM
+Yggdrasil/M
+YiB
+Yichun/M
+Yid/SM
+Yiddish/3r
+Yiddishism/SM
+yield/DSGRM
+Yielden/M
+yikes
+yin/M Noun: uncountable
+Yinchuan/M
+yip/SGDM
+yippee
+Yishuv/M
+Yitzhak/M
+Yizkor/SM
+ylang-ylang/SM
+YMCA/SM
+Yngwie/M
+Ynysawdre/M
+Ynyscynhaearn/M
+Ynysddu/M
+Ynyshir/M
+Ynysybwl/M
+yo
+yo-yo/SGDM
+yo-yoes
+yob/SM
+yobbism/M Noun: uncountable
+yobbo/SM
+yobboes
+yobibit/SM
+yobibyte/SM
+Yockey/M
+yoctosecond/SM
+Yoda/M
+yodel/RDGSM
+Yoenis/M
+yoga/MS
+yoghurt/SM
+yogi/SMW
+yogin/MS
+yogini/MS
+yogism/M Noun: uncountable
+yogurt/SM
+Yogyakarta/M
+Yohanna/M
+yoke/M
+yoke/UDGS
+yokefellow/MS
+yokel/SM
+yokemate/MS
+Yoker/M
+Yokohama/M
+Yokosuka/M
+yolk/SM
+yolky/T
+Yolo/M
+Yom/M
+yon
+yonder/SM
+Yong-chol/M
+Yong-chun/M
+Yong-hui/M
+Yong-nam/M
+Yong/M
+Yongbyon/M
+yoni/SM
+Yonkers/M
+yonks
+Yoong/M
+Yorba/M
+Yordano/M
+yore/M Noun: uncountable
+York/M3r
+york/SGDr
+Yorkshire/M
+Yorkshireman/M
+Yorkshiremen/M
+Yorkshirewoman/M
+Yorkshirewomen/M
+Yorkton/M
+Yorktown/M
+Yorkville/M
+Yoruba/SM
+Yosemite/M
+Yoshiaki/M
+Yoshida/M
+Yoshimi/M
+Yoshisada/M
+Yoshitsugu/M
+Yoshiwara/M
+Yoshiyuki/M
+Yost/M
+yottabit/SM
+yottabyte/SM
+yottasecond/SM
+you
+you'd
+you'll
+you're
+you've
+you-know-what
+you-know-who
+You-Know-Who
+Youden/M
+Youghal/M
+Youlgreave/M
+Youlton/M
+Young/M
+young/MT~
+Youngberry/M
+Youngblood/M
+youngling/SM
+Youngman/SM
+youngster/SM
+Youngstown/M
+Younis/M
+Younker/M
+younker/MS
+your/S
+yourself
+yourselves
+youse
+Yousseph/M
+Youssuff/M
+Yousuf/M
+youth/jSM6
+youthfulness/M Noun: usually uncountable
+YouTube/MR
+yowl/GSDM
+Yoxall/M
+Yoxford/M
+Yoyodyne/M
+Ypres/M
+Ypsilanti/M
+yr
+Ysbyty/M
+Yscefiog/M
+Ysceifiog/M
+Yscir/M
+Ysgeifiog/M
+Ysgubor-y-coed/M
+Ysidro/M
+Yspytty/M
+Ystalyfera/M
+Ystern/M
+Ystrad-Ffin/M
+Ystrad/M
+Ystradenni/M
+Ystradenny/M
+Ystradfellte/M
+Ystradgynlais/M
+Ystradmeurig/M
+Ystradowen/M
+Ystradyfodwg/M
+Ystwyth/M
+ytterbium/M Noun: usually uncountable
+ytterbocene
+yttrium/M Noun: usually uncountable
+yttrocene
+Yuan/M
+yuan/SM
+Yuanzhang/M
+Yuanzhen/M
+Yuba/M
+Yucaipa/M
+Yucatan/M
+Yucca/M
+yucca/MS
+yuck/Mr
+yucky/T
+Yuga/M
+yuga/SM
+Yugoslav/SM
+Yugoslavia/M
+Yugoslavian/SM
+yuk/SM
+Yukinobu/M
+Yukio/M
+Yukon/M
+Yule/M
+Yuletide/M
+yum-yum
+yum/M
+Yuma/M
+yummy/T
+Yunnan/M
+yup/SM
+yuppie/SM
+yuppification/M Noun: uncountable
+yuppify/SGD
+Yuri/M
+yurt/SM
+Yushchenko/M
+Yutaka/M
+yuzu/SM
+Yvan/M
+Yves/M
+Yvette/M
+Yvonna/M
+Yvonne/M
+Yw/M
+YWCA/M Initialism of Young Women's Christian Association
+z/M
+Z80/M
+zabaglione/SM
+Zabell/M
+Zac/M
+Zachary/M
+Zachery/M
+Zack/M
+Zadie/M
+zag/SGDM
+Zagora/M
+Zagreb/M
+Zahavi/M
+Zaheer/M
+Zaibatsu/M
+Zaire/M
+Zairean/SM
+Zairian/SM
+Zaitsev/M
+Zakeri/M
+Zalta/M
+Zamani/M
+Zambezi/M
+Zambia/M
+Zambian/SM
+Zamia/M
+Zamperini/M
+Zamudio/M
+zander/SM
+Zandt/M
+Zane/M
+Zanesville/M
+Zanno/M
+zany/TPSM
+Zanzibar/M
+zap/DRGSM
+Zapata/M
+zapateado/SM
+Zapatero/M
+Zaphon/M
+Zapotec/SM
+zappy/T
+ZAPU Zimbabwe African People's Union
+Zara/M
+Zarathustra/M
+Zarathustrian/SM
+Zaritsky/M
+Zatheria Taxonomic infraclass
+Zavala/M
+Zawadski/M
+Zawahiri/M
+Zayn/M
+Zazaki/M
+zazen/M Noun: usually uncountable
+Zazzo/M
+Zb
+ZB
+Zbarsky/M
+Zdeněk/M
+Zeal/M
+zeal/SM
+Zealand/MR
+Zealot/MS
+zealot/MS
+Zealotes/M
+zealotry/SM
+zealous/cP
+zealously Adverb
+Zeals/M
+zeaxanthin/SM
+Zebedee/M
+zebibit/SM
+zebibyte/SM
+zebra/MS
+zebrawood/SM
+zebu/SM
+Zebulon/M
+Zebulun/M
+Zechariah/M
+zed/MS
+Zedekiah/M
+zedoary/SM
+Zedong/M
+Zeebrugge/M
+Zeegers/M
+Zeeland/Mr
+Zeelandic/M
+Zeeman/M
+Zefram/M
+Zeichner/M
+zein/SM
+Zeiss/M
+zeitgeber/SM
+Zeitgeist/M
+zeitgeist/ZSM
+zeitgeisten/M
+zeitgeister/M
+Zelda/M
+Zelensky/M
+Zelenskyy/M
+zelkova/SM
+Zellick/M
+Zelston/M
+Zelstone/M
+Zelter/M
+Zemina/M
+Zemlya/M
+zemstvo/SM
+Zen/M3
+zenana/SM
+Zend/MS
+Zendaya/M
+Zendesk/M
+Zener/M
+zenith/MS
+Zenker/M
+Zennor/M
+Zeno/M
+Zenobia Taxonomic genus
+zenographic/O
+Zenunim/M
+zeolite/SMW
+Zephaniah/M
+zephyr/MS
+Zephyrhills/M
+Zeppelin/MS
+zeptosecond/SM
+Zerka/M
+Zermatt/M
+Zermelo/M
+zero-rate/SGD
+zero-sum
+zero/GSDM
+zeroes
+zeroise/SGDN
+zeroize/SGDN
+zeroth Adjective
+Zerubbabel/M
+zest/6SMjr
+zestfulness/M Noun: uncountable
+zesty/T
+zeta/SM
+Zetia/M
+Zetland/M
+zettabit/SM
+zettabyte/SM
+zettasecond/SM
+zeugma/SMW
+Zeus/M
+Zeuthen/M
+Zeuxis/M
+Zezong/M
+Zhang/M
+Zhangjiakou/M
+Zhao/M
+Zhaoguo/M
+Zhejiang/M
+Zheng/M
+Zhengli/M
+Zhengzhou/M
+Zhenhong/M
+Zhenlu/M
+Zhirinovsky/M
+Zhong/M
+Zhongnan/M
+Zhongyu/M
+Zhou/M
+Zhu/M
+Zhuang/M
+Zhuge/M
+Zhytomyr/M
+ZiB
+zidovudine/M Noun: usually uncountable
+Ziegfeld/SM
+Ziegler/M
+Ziem/Mr
+ziggurat/SM
+zigzag/SGDM
+Zihuatanejo/M
+Zika/M
+zilch/SM
+Ziliak/M
+zillah/MS
+zillion/SM
+zillionaire/SM
+zillionth/SM
+Zilliox/M
+Zilog/M
+Zimbabwe/M
+Zimbabwean/SM
+Zimmerman/M
+Zimmermann/M
+Zimri/M
+zinc/MSGD
+zincocene
+zine/SM
+Zinfandel/SM
+zing/SGDM
+zingy/T
+Zinn/M
+Zinnia Taxonomic genus
+zinnia/SM
+Zion/3M
+Zionism/SM
+Zionsville/M
+zip/Mp
+zip/UGDS
+Ziploc/SM
+ziplock/MD
+zippy/T
+zipx/M
+zircon/SM
+zirconia/SM
+zirconium/SM
+zirconocene/SM
+Zissman/M
+zit/SMZ
+zither/MS3
+ziti/M Noun: usually uncountable
+zitterbewegung/M Noun: uncountable
+Ziv/M
+zloty/MS
+zlotys
+zodiac/MSO
+Zoe/M
+Zoë/M
+zoeal Adjective
+zoetrope/MS
+Zohar/M
+zoisite/SM
+Zollitsch/M
+Zöllner/M
+Zoloft/M
+zolpidem/M Noun: uncountable
+Zoltan/M
+Zoltán/M
+zombie/SM
+zonal/Y
+zonation/SM
+Zond/M
+Zondervan/M
+zone/ASDG
+zone/M
+zonked
+zonkedness/M Noun: uncountable
+zoo/SM
+zooarchaeologist/MS
+zooarchaeology/M Noun: uncountable
+zoobenthic Adjective
+zoobenthos/M Noun: uncountable
+zoocentrism/M Noun: uncountable
+zoochore/MSW1
+zoochorous/Y
+zoochory/M Noun: uncountable
+Zooey/M
+zoogeographer/SM
+zoogeography/Ww1M
+zoography/M Noun: usually uncountable
+zooid/SMO
+zookeeper/SM
+zoolatry/M Noun: uncountable
+zoology/3SMw1
+zoom/DGSMr
+Zoom/SM
+zoomancy/M Noun: uncountable
+zoomorphic/Y
+zoomorphism/SM
+zoonoses
+zoonosis/M
+zoonotic/SMY
+zoophagy/M Noun: uncountable
+zoöphagy/M Noun: uncountable
+zoophile/SM3Z
+zoophilia/WSM
+zoophilism/M Noun: uncountable
+zoophobia/SM
+zoophyte/SMW
+zooplankton/WSM
+zoosemiotics/M Noun: uncountable
+zoospore/SWM
+zootomy/M Noun: usually uncountable
+zooxanthella/M
+zooxanthellae/M
+zooxanthellate/SM
+Zora/M
+Zoroaster/M
+Zoroastrian/SM
+Zoroastrianism/M Noun: uncountable
+Zorro/M
+Zostavax/M
+zoster/SM
+Zr
+Zs
+Zsigmondy/M
+ZTE/M
+Zubrin/M
+zucchetto/SM
+zucchini/SM
+Zuckerberg/M
+Zuehlke/M
+Zug/M
+zugzwang/SM
+Zukerman/M
+Zukor/M
+zulu/MS
+Zulu/MS
+Zululand/M
+Zurich/M
+zuz/SM
+Zuza/M
+Zwahlen/M
+Zwick/Mr
+Zwicky/M
+zwieback/MS
+Zwingli/M
+Zwinglian/MS
+zwitterion/SMW
+Zworykin/M
+ZX ZX Spectrum (computer)
+zydeco/M Noun: uncountable
+zygodactylous
+zygomatic/SM
+zygomorphic/Y
+zygospore/MS
+zygote/SWM
+zygotene/SM
+Zyklon Zyklon B
+zymodeme/SM
+zymogen/SM
+zymotic/SY
+zymurgy/SM
+Zyrian/SM
+zythum/SM
+Zytiga/M
+Zyvox/M
+µJ
+µm
+µPa
+µT
+μ-mesic
+μF
+μg
+μm
+μPa
+μT
+ο
+ℓ
+ⅇ
diff --git a/dictionaries/en/en_US.aff b/dictionaries/en/en_US.aff
new file mode 100644
index 0000000..d0cccb3
--- /dev/null
+++ b/dictionaries/en/en_US.aff
@@ -0,0 +1,205 @@
+SET UTF-8
+TRY esianrtolcdugmphbyfvkwzESIANRTOLCDUGMPHBYFVKWZ'
+ICONV 1
+ICONV ’ '
+NOSUGGEST !
+
+# ordinal numbers
+COMPOUNDMIN 1
+# only in compounds: 1th, 2th, 3th
+ONLYINCOMPOUND c
+# compound rules:
+# 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.)
+# 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.)
+COMPOUNDRULE 2
+COMPOUNDRULE n*1t
+COMPOUNDRULE n*mp
+WORDCHARS 0123456789
+
+PFX A Y 1
+PFX A 0 re .
+
+PFX I Y 1
+PFX I 0 in .
+
+PFX U Y 1
+PFX U 0 un .
+
+PFX C Y 1
+PFX C 0 de .
+
+PFX E Y 1
+PFX E 0 dis .
+
+PFX F Y 1
+PFX F 0 con .
+
+PFX K Y 1
+PFX K 0 pro .
+
+SFX V N 2
+SFX V e ive e
+SFX V 0 ive [^e]
+
+SFX N Y 3
+SFX N e ion e
+SFX N y ication y
+SFX N 0 en [^ey]
+
+SFX X Y 3
+SFX X e ions e
+SFX X y ications y
+SFX X 0 ens [^ey]
+
+SFX H N 2
+SFX H y ieth y
+SFX H 0 th [^y]
+
+SFX Y Y 1
+SFX Y 0 ly .
+
+SFX G Y 2
+SFX G e ing e
+SFX G 0 ing [^e]
+
+SFX J Y 2
+SFX J e ings e
+SFX J 0 ings [^e]
+
+SFX D Y 4
+SFX D 0 d e
+SFX D y ied [^aeiou]y
+SFX D 0 ed [^ey]
+SFX D 0 ed [aeiou]y
+
+SFX T N 4
+SFX T 0 st e
+SFX T y iest [^aeiou]y
+SFX T 0 est [aeiou]y
+SFX T 0 est [^ey]
+
+SFX R Y 4
+SFX R 0 r e
+SFX R y ier [^aeiou]y
+SFX R 0 er [aeiou]y
+SFX R 0 er [^ey]
+
+SFX Z Y 4
+SFX Z 0 rs e
+SFX Z y iers [^aeiou]y
+SFX Z 0 ers [aeiou]y
+SFX Z 0 ers [^ey]
+
+SFX S Y 4
+SFX S y ies [^aeiou]y
+SFX S 0 s [aeiou]y
+SFX S 0 es [sxzh]
+SFX S 0 s [^sxzhy]
+
+SFX P Y 3
+SFX P y iness [^aeiou]y
+SFX P 0 ness [aeiou]y
+SFX P 0 ness [^y]
+
+SFX M Y 1
+SFX M 0 's .
+
+SFX B Y 3
+SFX B 0 able [^aeiou]
+SFX B 0 able ee
+SFX B e able [^aeiou]e
+
+SFX L Y 1
+SFX L 0 ment .
+
+REP 90
+REP a ei
+REP ei a
+REP a ey
+REP ey a
+REP ai ie
+REP ie ai
+REP alot a_lot
+REP are air
+REP are ear
+REP are eir
+REP air are
+REP air ere
+REP ere air
+REP ere ear
+REP ere eir
+REP ear are
+REP ear air
+REP ear ere
+REP eir are
+REP eir ere
+REP ch te
+REP te ch
+REP ch ti
+REP ti ch
+REP ch tu
+REP tu ch
+REP ch s
+REP s ch
+REP ch k
+REP k ch
+REP f ph
+REP ph f
+REP gh f
+REP f gh
+REP i igh
+REP igh i
+REP i uy
+REP uy i
+REP i ee
+REP ee i
+REP j di
+REP di j
+REP j gg
+REP gg j
+REP j ge
+REP ge j
+REP s ti
+REP ti s
+REP s ci
+REP ci s
+REP k cc
+REP cc k
+REP k qu
+REP qu k
+REP kw qu
+REP o eau
+REP eau o
+REP o ew
+REP ew o
+REP oo ew
+REP ew oo
+REP ew ui
+REP ui ew
+REP oo ui
+REP ui oo
+REP ew u
+REP u ew
+REP oo u
+REP u oo
+REP u oe
+REP oe u
+REP u ieu
+REP ieu u
+REP ue ew
+REP ew ue
+REP uff ough
+REP oo ieu
+REP ieu oo
+REP ier ear
+REP ear ier
+REP ear air
+REP air ear
+REP w qu
+REP qu w
+REP z ss
+REP ss z
+REP shun tion
+REP shun sion
+REP shun cion
+REP size cise
diff --git a/dictionaries/en/en_US.dic b/dictionaries/en/en_US.dic
new file mode 100644
index 0000000..b41fd20
--- /dev/null
+++ b/dictionaries/en/en_US.dic
@@ -0,0 +1,49569 @@
+49568
+0/nm
+0th/pt
+1/n1
+1st/p
+1th/tc
+2/nm
+2nd/p
+2th/tc
+3/nm
+3rd/p
+3th/tc
+4/nm
+4th/pt
+5/nm
+5th/pt
+6/nm
+6th/pt
+7/nm
+7th/pt
+8/nm
+8th/pt
+9/nm
+9th/pt
+A/SM
+AA/M
+AAA
+AB/M
+ABA
+ABC/SM
+ABM/SM
+ABS
+AC/M
+ACLU/M
+ACT
+ACTH/M
+AD/M
+ADC
+ADD
+ADM
+ADP/M
+AF
+AFAIK
+AFB
+AFC/M
+AFDC
+AFN
+AFT
+AI/SM
+AIDS/M
+AK
+AL
+AM/M
+AMA
+AMD/M
+ANSI/S
+ANZUS/M
+AOL/M
+AP/M
+APB
+APC
+API
+APO
+APR
+AR
+ARC
+ASAP
+ASCII/SM
+ASL/M
+ASPCA
+ATM/M
+ATP/M
+ATV
+AV
+AVI
+AWACS/M
+AWOL/M
+AWS/M
+AZ/M
+AZT/M
+Aachen/M
+Aaliyah/M
+Aaron/M
+Abbas/M
+Abbasid/M
+Abbott/M
+Abby/M
+Abdul/M
+Abe/M
+Abel/M
+Abelard/M
+Abelson/M
+Aberdeen/M
+Abernathy/M
+Abidjan/M
+Abigail/M
+Abilene/M
+Abner/M
+Aborigine/MS
+Abraham/M
+Abram/MS
+Abrams/M
+Absalom/M
+Abuja/M
+Abyssinia/M
+Abyssinian/M
+Ac/M
+Acadia/M
+Acapulco/M
+Accenture/M
+Accra/M
+Acevedo/M
+Achaean/M
+Achebe/M
+Achernar/M
+Acheson/M
+Achilles/M
+Aconcagua/M
+Acosta/M
+Acropolis
+Acrux/M
+Actaeon/M
+Acton/M
+Acts/M
+Acuff/M
+Ada/SM
+Adam/SM
+Adams/M
+Adan/M
+Adana/M
+Adar/M
+Addams/M
+Adderley/M
+Addie/M
+Addison/M
+Adela/M
+Adelaide/M
+Adele/M
+Adeline/M
+Aden/M
+Adenauer/M
+Adhara/M
+Adidas/M
+Adirondack/SM
+Adirondacks/M
+Adkins/M
+Adler/M
+Adm
+Admiralty
+Adolf/M
+Adolfo/M
+Adolph/M
+Adonis/MS
+Adrenalin/MS
+Adrian/M
+Adriana/M
+Adriatic/M
+Adrienne/M
+Advent/MS
+Adventist/MS
+Advil/M
+Aegean/M
+Aelfric/M
+Aeneas/M
+Aeneid/M
+Aeolus/M
+Aeroflot/M
+Aeschylus/M
+Aesculapius/M
+Aesop/M
+Afghan/SM
+Afghani/M
+Afghanistan/M
+Afr
+Africa/M
+African/SM
+Afrikaans/M
+Afrikaner/SM
+Afro/SM
+Afrocentric
+Afrocentrism/M
+Ag/M
+Agamemnon/M
+Agana
+Agassi/M
+Agassiz/M
+Agatha/M
+Aggie/M
+Aglaia/M
+Agnes/M
+Agnew/M
+Agni/M
+Agra/M
+Agricola/M
+Agrippa/M
+Agrippina/M
+Aguadilla/M
+Aguascalientes
+Aguilar/M
+Aguinaldo/M
+Aguirre/M
+Agustin/M
+Ahab/M
+Ahmad/M
+Ahmadabad/M
+Ahmadinejad/M
+Ahmed/M
+Ahriman/M
+Aida/M
+Aiken/M
+Aileen/M
+Aimee/M
+Ainu/M
+Airedale/MS
+Aires/M
+Aisha/M
+Ajax/M
+Akbar/M
+Akhmatova/M
+Akihito/M
+Akita/M
+Akiva/M
+Akkad/M
+Akron/M
+Al/M
+Ala/S
+Alabama/M
+Alabaman/MS
+Alabamian/SM
+Aladdin/M
+Alamo/M
+Alamogordo/M
+Alan/M
+Alana/M
+Alar/M
+Alaric/M
+Alaska/M
+Alaskan/MS
+Alba/M
+Albania/M
+Albanian/MS
+Albany/M
+Albee/M
+Alberio/M
+Albert/M
+Alberta/M
+Albertan
+Alberto/M
+Albigensian/M
+Albion/M
+Albireo/M
+Albuquerque/M
+Alcatraz/M
+Alcestis/M
+Alcibiades/M
+Alcindor/M
+Alcmena/M
+Alcoa/M
+Alcott/M
+Alcuin/M
+Alcyone/M
+Aldan/M
+Aldebaran/M
+Alden/M
+Alderamin/M
+Aldo/M
+Aldrin/M
+Alec/M
+Aleichem/M
+Alejandra/M
+Alejandro/M
+Alembert/M
+Aleppo/M
+Aleut/MS
+Aleutian/SM
+Alex/M
+Alexander/MS
+Alexandra/M
+Alexandria/M
+Alexandrian
+Alexei/M
+Alexis/M
+Alfonso/M
+Alfonzo/M
+Alford/M
+Alfred/M
+Alfreda/M
+Alfredo/M
+Algenib/M
+Alger/M
+Algeria/M
+Algerian/SM
+Algieba/M
+Algiers/M
+Algol/M
+Algonquian/SM
+Algonquin/MS
+Alhambra/M
+Alhena/M
+Ali/M
+Alice/M
+Alicia/M
+Alighieri/M
+Aline/M
+Alioth/M
+Alisa/M
+Alisha/M
+Alison/M
+Alissa/M
+Alistair/M
+Alkaid/M
+Allah/M
+Allahabad/M
+Allan/M
+Alleghenies/M
+Allegheny/SM
+Allegra/M
+Allen/M
+Allende/M
+Allentown/M
+Allhallows/M
+Allie/MS
+Allison/M
+Allstate/M
+Allyson/M
+Alma/M
+Almach/M
+Almaty/M
+Almighty/M
+Almohad/M
+Almoravid/M
+Alnilam/M
+Alnitak/M
+Alonzo/M
+Alpert/M
+Alphard/M
+Alphecca/M
+Alpheratz/M
+Alphonse/M
+Alphonso/M
+Alpine/M
+Alpo/M
+Alps/M
+Alsace/M
+Alsatian/SM
+Alsop/M
+Alston/M
+Alta/M
+Altaba/M
+Altai/M
+Altaic/M
+Altair/M
+Altamira/M
+Althea/M
+Altiplano/M
+Altman/M
+Altoids/M
+Alton/M
+Altoona/M
+Aludra/M
+Alva/M
+Alvarado/M
+Alvarez/M
+Alvaro/M
+Alvin/M
+Alyce/M
+Alyson/M
+Alyssa/M
+Alzheimer/M
+Am/MNR
+Amadeus/M
+Amado/M
+Amalia/M
+Amanda/M
+Amarillo/M
+Amaru/M
+Amaterasu/M
+Amati/M
+Amazon/SM
+Amazonian
+Amber/M
+Amelia/M
+Amen/M
+Amenhotep/M
+Amerasian/M
+America/SM
+American/MS
+Americana/M
+Americanism/MS
+Americanization/MS
+Americanize/GDS
+Amerind/SM
+Amerindian/MS
+Ames/M
+Ameslan/M
+Amgen/M
+Amharic/M
+Amherst/M
+Amie/M
+Amiga/M
+Amish/M
+Amman/M
+Amoco/M
+Amos/M
+Amparo/M
+Ampere/M
+Amritsar/M
+Amsterdam/M
+Amtrak/M
+Amundsen/M
+Amur/M
+Amway/M
+Amy/M
+Ana/M
+Anabaptist/M
+Anabel/M
+Anacin/M
+Anacreon/M
+Anaheim/M
+Analects/M
+Ananias/M
+Anasazi/M
+Anastasia/M
+Anatole/M
+Anatolia/M
+Anatolian/M
+Anaxagoras/M
+Anchorage/M
+Andalusia/M
+Andalusian/M
+Andaman/M
+Andean/M
+Andersen/M
+Anderson/M
+Andes/M
+Andorra/M
+Andorran/SM
+Andre/MS
+Andrea/M
+Andrei/M
+Andres/M
+Andretti/M
+Andrew/SM
+Andrews/M
+Andrianampoinimerina/M
+Android/M
+Andromache/M
+Andromeda/M
+Andropov/M
+Andy/M
+Angara/M
+Angel/M
+Angela/M
+Angeles/M
+Angelia/M
+Angelica/M
+Angelico/M
+Angelina/M
+Angeline/M
+Angelique/M
+Angelita/M
+Angelo/M
+Angelou/M
+Angevin/M
+Angie/M
+Angkor/M
+Angle/MS
+Angleton/M
+Anglia/M
+Anglican/SM
+Anglicanism/MS
+Anglicism/MS
+Anglicization
+Anglicize
+Anglo/M
+Anglophile/M
+Anglophobe
+Angola/M
+Angolan/MS
+Angora/SM
+Angstrom/M
+Anguilla/M
+Angus/M
+Anhui/M
+Aniakchak/M
+Anibal/M
+Anita/M
+Ankara/M
+Ann/M
+Anna/M
+Annabel/M
+Annabelle/M
+Annam/M
+Annapolis/M
+Annapurna/M
+Anne/M
+Annette/M
+Annie/M
+Anniston/M
+Annmarie/M
+Annunciation/SM
+Anouilh/M
+Anselm/M
+Anselmo/M
+Anshan/M
+Antaeus/M
+Antananarivo/M
+Antarctic/M
+Antarctica/M
+Antares/M
+Anthony/M
+Anthropocene
+Antichrist/SM
+Antietam/M
+Antifa/M
+Antigone/M
+Antigua/M
+Antillean
+Antilles/M
+Antioch/M
+Antipas/M
+Antipodes
+Antofagasta/M
+Antoine/M
+Antoinette/M
+Anton/M
+Antone/M
+Antonia/M
+Antoninus/M
+Antonio/M
+Antonius/M
+Antony/M
+Antwan/M
+Antwerp/M
+Anubis/M
+Anzac/M
+Apache/SM
+Apalachicola/M
+Apatosaurus
+Apennines/M
+Aphrodite/M
+Apia/M
+Apocalypse/M
+Apocrypha/M
+Apollinaire/M
+Apollo/SM
+Apollonian/M
+Apostle/M
+Appalachia/M
+Appalachian/SM
+Appalachians/M
+Appaloosa/SM
+Apple/M
+Appleseed/M
+Appleton/M
+Appomattox/M
+Apr/M
+April/MS
+Apuleius/M
+Aquafresh/M
+Aquarian
+Aquarius/MS
+Aquila/M
+Aquinas/M
+Aquino/M
+Aquitaine/M
+Ar/M
+Ara/M
+Arab/SM
+Arabia/M
+Arabian/MS
+Arabic/M
+Arabist/MS
+Araby/M
+Araceli/M
+Arafat/M
+Aragon
+Araguaya/M
+Aral/M
+Aramaic/M
+Aramco/M
+Arapaho/MS
+Arapahoes
+Ararat/M
+Araucanian/M
+Arawak/M
+Arawakan/M
+Arbitron/M
+Arcadia/M
+Arcadian/M
+Archean/M
+Archibald/M
+Archie/M
+Archimedes/M
+Arctic/M
+Arcturus/M
+Ardabil
+Arden/M
+Arduino/M
+Arecibo/M
+Arequipa/M
+Ares/M
+Argentina/M
+Argentine/M
+Argentinean
+Argentinian/MS
+Argo/SM
+Argonaut/MS
+Argonne/M
+Argos/M
+Argus/M
+Ariadne/M
+Arianism/M
+Ariel/M
+Aries/MS
+Ariosto/M
+Aristarchus/M
+Aristides/M
+Aristophanes/M
+Aristotelian/M
+Aristotle/M
+Arius/M
+Ariz
+Arizona/M
+Arizonan/SM
+Arizonian/MS
+Arjuna/M
+Ark/M
+Arkansan/MS
+Arkansas/M
+Arkhangelsk/M
+Arkwright/M
+Arlene/M
+Arline/M
+Arlington/M
+Armageddon/SM
+Armagnac/M
+Armand/M
+Armando/M
+Armani/M
+Armenia/M
+Armenian/SM
+Arminius/M
+Armonk/M
+Armour/M
+Armstrong/M
+Arneb/M
+Arnhem/M
+Arno/M
+Arnold/M
+Arnulfo/M
+Aron/M
+Arrhenius/M
+Arron/M
+Art/M
+Artaxerxes/M
+Artemis/M
+Arthur/M
+Arthurian/M
+Artie/M
+Arturo/M
+Aruba/M
+Aryan/MS
+As/M
+Asama/M
+Ascella/M
+Ascension/M
+Asgard/M
+Ashanti/M
+Ashcroft/M
+Ashe/M
+Asheville/M
+Ashgabat
+Ashikaga/M
+Ashkenazim/M
+Ashkhabad/M
+Ashlee/M
+Ashley/M
+Ashmolean/M
+Ashurbanipal/M
+Asia/M
+Asiago
+Asian/MS
+Asiatic/SM
+Asimov/M
+Asmara/M
+Asoka/M
+Aspell/M
+Aspen/M
+Asperger/M
+Aspidiske/M
+Asquith/M
+Assad/M
+Assam/M
+Assamese/M
+Assembly
+Assisi/M
+Assyria/M
+Assyrian/SM
+Astaire/M
+Astana/M
+Astarte/M
+Aston/M
+Astor/M
+Astoria/M
+Astrakhan/M
+AstroTurf/M
+Asturias/M
+Asuncion/M
+Aswan/M
+At/SM
+Atacama/M
+Atahualpa/M
+Atalanta/M
+Atari/M
+Atascadero/M
+Ataturk/M
+Athabasca/M
+Athabaskan/SM
+Athanasius
+Athena/M
+Athene/M
+Athenian/SM
+Athens/M
+Atkins/M
+Atkinson/M
+Atlanta/M
+Atlantes
+Atlantic/M
+Atlantis/M
+Atlas/MS
+Atman/M
+Atonement
+Atreus/M
+Atria/M
+Atropos/M
+Attic/M
+Attica/M
+Attila/M
+Attlee/M
+Attn
+Attucks/M
+Atwood/M
+Au/M
+Aubrey/M
+Auburn/M
+Auckland/M
+Auden/M
+Audi/M
+Audion/M
+Audra/M
+Audrey/M
+Audubon/M
+Aug/M
+Augean/M
+Augsburg/M
+August/MS
+Augusta/M
+Augustan/M
+Augustine/M
+Augustinian/MS
+Augustus/M
+Aurangzeb/M
+Aurelia/M
+Aurelio/M
+Aurelius/M
+Aureomycin/M
+Auriga/M
+Aurora/M
+Auschwitz/M
+Aussie/MS
+Austen/M
+Austerlitz/M
+Austin/MS
+Australasia/M
+Australasian
+Australia/M
+Australian/SM
+Australoid/M
+Australopithecus/M
+Austria/M
+Austrian/SM
+Austronesian/M
+Autumn/M
+Av/M
+Ava/M
+Avalon/M
+Ave/M
+Aventine/M
+Avernus/M
+Averroes/M
+Avery/M
+Avesta/M
+Avicenna/M
+Avignon/M
+Avila/M
+Avior/M
+Avis/M
+Avogadro/M
+Avon/M
+Avondale/M
+Axis
+Axum/M
+Ayala/M
+Ayers/M
+Aymara/M
+Ayrshire/M
+Ayurveda/M
+Ayyubid/M
+Azana/M
+Azania/M
+Azazel/M
+Azerbaijan/M
+Azerbaijani/MS
+Azores/M
+Azov/M
+Aztec/SM
+Aztecan/M
+Aztlan/M
+B/MNT
+BA/M
+BASIC/SM
+BB/M
+BBB/M
+BBC/M
+BBQ
+BBS
+BBSes
+BC/M
+BFF
+BIA
+BIOS
+BITNET
+BLT/SM
+BM/M
+BMW/M
+BO
+BP/M
+BPOE
+BR
+BS/M
+BSA
+BSD/SM
+BTU
+BTW
+BYOB
+Ba/M
+Baal/SM
+Baath/M
+Baathist/M
+Babbage/M
+Babbitt/M
+Babel/MS
+Babylon/MS
+Babylonia/M
+Babylonian/SM
+Bacall/M
+Bacardi/M
+Bacchanalia/M
+Bacchic
+Bacchus/M
+Bach/M
+Backus/M
+Bacon/M
+Bactria/M
+Baden/M
+Badlands/M
+Baedeker/MS
+Baez/M
+Baffin/M
+Baggies/M
+Baghdad/M
+Baguio/M
+Baha'i/M
+Baha'ullah/M
+Bahama/SM
+Bahamanian
+Bahamas/M
+Bahamian/MS
+Bahia/M
+Bahrain/M
+Baidu/M
+Baikal/M
+Bailey/M
+Baird/M
+Bakelite/M
+Baker/M
+Bakersfield/M
+Baku/M
+Bakunin/M
+Balanchine/M
+Balaton/M
+Balboa/M
+Balder/M
+Baldwin/SM
+Balearic/M
+Balfour/M
+Bali/M
+Balinese/M
+Balkan/MS
+Balkans/M
+Balkhash/M
+Ball/M
+Ballard/M
+Balthazar/M
+Baltic/M
+Baltimore/M
+Baluchistan/M
+Balzac/M
+Bamako/M
+Bambi/M
+Banach/M
+Bancroft/M
+Bandung/M
+Bangalore/M
+Bangkok/M
+Bangladesh/M
+Bangladeshi/SM
+Bangor/M
+Bangui/M
+Banjarmasin/M
+Banjul/M
+Banks/M
+Banneker/M
+Bannister/M
+Banting/M
+Bantu/MS
+Baotou/M
+Baptist/SM
+Baptiste/M
+Barabbas/M
+Barack/M
+Barbadian/SM
+Barbados/M
+Barbara/M
+Barbarella/M
+Barbarossa/M
+Barbary/M
+Barber/M
+Barbie/M
+Barbour/M
+Barbra/M
+Barbuda/M
+Barcelona/M
+Barceloneta/M
+Barclay/SM
+Barclays/M
+Bardeen/M
+Barents/M
+Barker/M
+Barkley/M
+Barlow/M
+Barnabas/M
+Barnaby/M
+Barnard/M
+Barnaul/M
+Barnes/M
+Barnett/M
+Barney/M
+Barnum/M
+Baroda/M
+Barquisimeto/M
+Barr/M
+Barranquilla/M
+Barrera/M
+Barrett/M
+Barrie/M
+Barron/M
+Barry/M
+Barrymore/M
+Bart/M
+Barth/MS
+Bartholdi/M
+Bartholomew/M
+Bartlett/M
+Bartok/M
+Barton/M
+Baruch/M
+Baryshnikov/M
+Basel/M
+Basho/M
+Basie/M
+Basil/M
+Basque/MS
+Basra/M
+Bass/M
+Basseterre/M
+Bastille/M
+Basutoland/M
+Bataan/M
+Bates/M
+Bathsheba/M
+Batista/M
+Batman/M
+Battle/M
+Batu/M
+Baudelaire/M
+Baudouin/M
+Baudrillard/M
+Bauer/M
+Bauhaus/M
+Baum/M
+Bavaria/M
+Bavarian/M
+Baxter/M
+Bayamon
+Bayer/M
+Bayes/M
+Bayesian/M
+Bayeux/M
+Baylor/M
+Bayonne/M
+Bayreuth/M
+Baywatch/M
+Be/MH
+Beach/M
+Beadle/M
+Bean/M
+Beard/M
+Beardmore/M
+Beardsley/M
+Bearnaise/M
+Beasley/M
+Beatlemania/M
+Beatles/M
+Beatrice/M
+Beatrix/M
+Beatriz/M
+Beatty/M
+Beau/M
+Beaufort/M
+Beaujolais/M
+Beaumarchais/M
+Beaumont/M
+Beauregard/M
+Beauvoir/M
+Bechtel/M
+Beck/MR
+Becker/M
+Becket/M
+Beckett/M
+Beckley/M
+Beckman
+Becky/M
+Becquerel/M
+Bede/M
+Bedouin/SM
+Beebe/M
+Beecher/M
+Beefaroni/M
+Beelzebub/M
+Beerbohm/M
+Beethoven/M
+Beeton/M
+Begin/M
+Behan/M
+Behring/M
+Beiderbecke/M
+Beijing/M
+Beirut/M
+Bekesy/M
+Bela/M
+Belarus/M
+Belarusian
+Belau/M
+Belem/M
+Belfast/M
+Belg
+Belgian/SM
+Belgium/M
+Belgrade/M
+Belinda/M
+Belize/M
+Bell/M
+Bella/M
+Bellamy/M
+Bellatrix/M
+Belleek/M
+Bellingham/M
+Bellini/M
+Bellow/M
+Belmont/M
+Belmopan/M
+Beloit/M
+Belorussian/MS
+Belshazzar/M
+Beltane/M
+Belushi/M
+Ben/M
+Benacerraf/M
+Benchley/M
+Bend/MR
+Bender/M
+Bendictus
+Bendix/M
+Benedict/M
+Benedictine/MS
+Benelux/M
+Benet/M
+Benetton/M
+Bengal/SM
+Bengali/M
+Benghazi/M
+Benin/M
+Beninese/M
+Benita/M
+Benito/M
+Benjamin/M
+Bennett/M
+Bennie/M
+Benny/M
+Benson/M
+Bentham/M
+Bentley/M
+Benton/M
+Benz/M
+Benzedrine/M
+Beowulf/M
+Berber/SM
+Berenice/M
+Beretta/M
+Berg/MNR
+Bergen/M
+Berger/M
+Bergerac/M
+Bergman/M
+Bergson/M
+Beria/M
+Bering/M
+Berkeley/M
+Berkshire/SM
+Berkshires/M
+Berle/M
+Berlin/SZMR
+Berliner/M
+Berlioz/M
+Berlitz/M
+Bermuda/SM
+Bermudan/SM
+Bermudian/SM
+Bern/M
+Bernadette/M
+Bernadine/M
+Bernanke/M
+Bernard/M
+Bernardo/M
+Bernays/M
+Bernbach/M
+Bernese
+Bernhardt/M
+Bernice/M
+Bernie/M
+Bernini/M
+Bernoulli/M
+Bernstein/M
+Berra/M
+Berry/M
+Bert/M
+Berta/M
+Bertelsmann/M
+Bertha/M
+Bertie/M
+Bertillon/M
+Bertram/M
+Bertrand/M
+Berwick/M
+Beryl/M
+Berzelius/M
+Bess/M
+Bessel/M
+Bessemer/M
+Bessie/M
+Best/M
+Betelgeuse/M
+Beth/M
+Bethany/M
+Bethe/M
+Bethesda/M
+Bethlehem/M
+Bethune/M
+Betsy/M
+Bette/M
+Bettie/M
+Betty/M
+Bettye/M
+Beulah/M
+Beveridge
+Beverley/M
+Beverly/M
+Beyer/M
+Bharat/M
+Bhopal/M
+Bhutan/M
+Bhutanese/M
+Bhutto/M
+Bi/M
+Bialystok/M
+Bianca/M
+Bib
+Bible/MS
+Bic/M
+Biddle/M
+Biden/M
+Bierce/M
+BigQuery/M
+Bigfoot/M
+Biggles/M
+Biko/M
+Bilbao/M
+Bilbo/M
+Bill/MJ
+Billie/M
+Billings/M
+Billy/M
+Bimini/M
+Binghamton/M
+Biogen/M
+Bioko/M
+Bird/M
+Birdseye/M
+Birkenstock/M
+Birmingham/M
+Biro/M
+Biscay/M
+Biscayne/M
+Bishkek/M
+Bishop/M
+Bismarck/M
+Bismark/M
+Bisquick/M
+Bissau/M
+BitTorrent/M
+Bizet/M
+Bjerknes/M
+Bjork/M
+Bk/M
+BlackBerry/M
+Blackbeard/M
+Blackburn/M
+Blackfeet/M
+Blackfoot/M
+Blackpool/M
+Blacksburg/M
+Blackshirt/M
+Blackstone/M
+Blackwell/M
+Blaine/M
+Blair/M
+Blake/M
+Blanca/M
+Blanchard/M
+Blanche/M
+Blankenship/M
+Blantyre/M
+Blatz/M
+Blavatsky/M
+Blenheim/M
+Blevins/M
+Bligh/M
+Bloch/M
+Blockbuster/M
+Bloemfontein/M
+Blondel/M
+Blondie/M
+Bloom/MR
+Bloomer/M
+Bloomfield/M
+Bloomingdale/M
+Bloomington/M
+Bloomsburg/M
+Bloomsbury/M
+Blu
+Blucher/M
+Bluebeard/M
+Bluetooth/M
+Blvd
+Blythe/M
+Boadicea
+Boas/M
+Bob/M
+Bobbi/M
+Bobbie/M
+Bobbitt/M
+Bobby/M
+Boccaccio/M
+Bodhidharma/M
+Bodhisattva/M
+Bodleian
+Boeing/M
+Boeotia/M
+Boeotian/M
+Boer/SM
+Boethius/M
+Bogart/M
+Bogota/M
+Bohemia/M
+Bohemian/SM
+Bohr/M
+Boise/M
+Bojangles/M
+Boleyn/M
+Bolivar/M
+Bolivia/M
+Bolivian/MS
+Bollywood/M
+Bologna/M
+Bolshevik/SM
+Bolsheviki
+Bolshevism/M
+Bolshevist/M
+Bolshoi/M
+Bolton/M
+Boltzmann/M
+Bombay/M
+Bonaparte/M
+Bonaventure/M
+Bond/M
+Bonhoeffer/M
+Boniface/M
+Bonita/M
+Bonn/MR
+Bonner/M
+Bonneville/M
+Bonnie/M
+Bono/M
+Booker/M
+Boole/M
+Boolean/M
+Boone/M
+Bootes/M
+Booth/M
+Bordeaux/M
+Borden/M
+Bordon/M
+Boreas/M
+Borg/SM
+Borges/M
+Borgia/M
+Borglum/M
+Boris/M
+Bork/M
+Borlaug/M
+Born/M
+Borneo/M
+Borobudur/M
+Borodin/M
+Boru/M
+Bosch/M
+Bose/M
+Bosnia/M
+Bosnian
+Bosporus/M
+Boston/MS
+Bostonian/M
+Boswell/M
+Botha
+Botox
+Botswana/M
+Botticelli/M
+Boulder/M
+Boulez/M
+Bourbaki/M
+Bourbon/SM
+Bournemouth/M
+Bovary/M
+Bowditch/M
+Bowell/M
+Bowen/M
+Bowers/M
+Bowery/M
+Bowie/M
+Bowman/M
+Boyd/M
+Boyer/M
+Boyle/M
+Br/MT
+Brad/MY
+Bradbury/M
+Braddock/M
+Bradenton/M
+Bradford/M
+Bradley/M
+Bradly/M
+Bradshaw/M
+Bradstreet/M
+Brady/M
+Bragg/M
+Brahe/M
+Brahma/MS
+Brahmagupta/M
+Brahman/MS
+Brahmani
+Brahmanism/SM
+Brahmaputra/M
+Brahms/M
+Braille/MS
+Brain/M
+Brampton/M
+Bran/M
+Branch/M
+Brandeis/M
+Branden/M
+Brandenburg/M
+Brandi/M
+Brandie/M
+Brando/M
+Brandon/M
+Brandt/M
+Brandy/M
+Brant/M
+Braque/M
+Brasilia/M
+Bratislava/M
+Brattain/M
+Bray/M
+Brazil/M
+Brazilian/MS
+Brazos/M
+Brazzaville/M
+Breakspear/M
+Breathalyzer
+Brecht/M
+Breckenridge/M
+Bremen/M
+Bremerton/M
+Brenda/M
+Brendan/M
+Brennan/M
+Brenner/M
+Brent/M
+Brenton/M
+Brest/M
+Bret/M
+Breton/M
+Brett/M
+Brewer/M
+Brewster/M
+Brexit
+Brezhnev/M
+Brian/M
+Briana/M
+Brianna/M
+Brice/M
+Bridalveil/M
+Bridgeport/M
+Bridger/M
+Bridges/M
+Bridget/M
+Bridgetown/M
+Bridgett/M
+Bridgette/M
+Bridgman/M
+Brie/SM
+Brigadoon/M
+Briggs/M
+Brigham/M
+Bright/M
+Brighton/M
+Brigid/M
+Brigitte/M
+Brillo/M
+Brillouin
+Brinkley/M
+Brisbane/M
+Bristol/M
+Brit/SM
+Britain/M
+Britannia/M
+Britannic/M
+Britannica/M
+Briticism/SM
+British/MRZ
+Britisher/M
+Britney/M
+Briton/MS
+Britt/MN
+Brittany/SM
+Britten/M
+Brittney/M
+Brno/M
+Broadway/SM
+Brobdingnag/M
+Brobdingnagian/M
+Brock/M
+Brokaw/M
+Bronson/M
+Bronte/M
+Brontosaurus
+Bronx/M
+Brooke/MS
+Brooklyn/M
+Brooks/M
+Bros
+Brown/MG
+Browne/M
+Brownian/M
+Brownie/S
+Browning/M
+Brownshirt/M
+Brownsville/M
+Brubeck/M
+Bruce/M
+Bruckner/M
+Bruegel
+Brummel/M
+Brunei/M
+Bruneian/MS
+Brunelleschi/M
+Brunhilde/M
+Bruno/M
+Brunswick/M
+Brussels/M
+Brut/M
+Brutus/M
+Bryan/M
+Bryant/M
+Bryce/M
+Brynner/M
+Bryon/M
+Brzezinski/M
+Btu/M
+Buber/M
+Buchanan/M
+Bucharest/M
+Buchenwald/M
+Buchwald/M
+Buck/M
+Buckingham/M
+Buckley/M
+Buckner/M
+Bud/M
+Budapest/M
+Buddha/SM
+Buddhism/SM
+Buddhist/SM
+Buddy/M
+Budweiser/M
+Buffalo/M
+Buffy/M
+Buford/M
+Bugatti/M
+Bugzilla/M
+Buick/M
+Bujumbura/M
+Bukhara/M
+Bukharin/M
+Bulawayo/M
+Bulfinch/M
+Bulganin/M
+Bulgar/M
+Bulgari/M
+Bulgaria/M
+Bulgarian/SM
+Bullock/M
+Bullwinkle/M
+Bultmann/M
+Bumppo/M
+Bunche/M
+Bundesbank/M
+Bundestag/M
+Bunin/M
+Bunker/M
+Bunsen/M
+Bunuel/M
+Bunyan/M
+Burbank/M
+Burberry/M
+Burch/M
+Burger/M
+Burgess/M
+Burgoyne/M
+Burgundian/M
+Burgundy/SM
+Burke/M
+Burks/M
+Burl/M
+Burlington/M
+Burma/M
+Burmese/M
+Burnett/M
+Burns/M
+Burnside/M
+Burr/M
+Burris/M
+Burroughs/M
+Bursa/M
+Burt/M
+Burton/M
+Burundi/M
+Burundian/MS
+Busch/M
+Bush/M
+Bushido/M
+Bushnell/M
+Butler/M
+Butterfingers/M
+Buxtehude/M
+Byblos/M
+Byers/M
+Byrd/M
+Byron/M
+Byronic/M
+Byzantine/MS
+Byzantium/M
+C/SM
+CA
+CAD/M
+CAI
+CAM
+CAP
+CARE
+CATV
+CB
+CBC/M
+CBS/M
+CCTV
+CCU
+CD/SM
+CDC
+CDT
+CEO/M
+CF
+CFC/M
+CFO
+CGI
+CIA/M
+CID
+CNN/M
+CNS/M
+CO/M
+COBOL/SM
+COD
+COL
+COLA
+COVID
+CPA/M
+CPI/M
+CPO
+CPR/M
+CPU/M
+CRT/SM
+CSS/M
+CST/M
+CT/M
+CV
+CVS/M
+CZ
+Ca/M
+Cabernet/M
+Cabot/M
+Cabral/M
+Cabrera/M
+Cabrini/M
+Cadette
+Cadillac/M
+Cadiz/M
+Caedmon/M
+Caerphilly/M
+Caesar/SM
+Cage/M
+Cagney/M
+Cahokia/M
+Caiaphas/M
+Cain/SM
+Cairo/M
+Caitlin/M
+Cajun/MS
+Cal/M
+Calais/M
+Calcutta/M
+Calder/M
+Calderon/M
+Caldwell/M
+Caleb/M
+Caledonia/M
+Calexico/M
+Calgary/M
+Calhoun/M
+Cali/M
+Caliban/M
+Calif
+California/M
+Californian/SM
+Caligula/M
+Callaghan/M
+Callahan/M
+Callao/M
+Callas/M
+Callie/M
+Calliope/M
+Callisto/M
+Caloocan/M
+Calvary/M
+Calvert/M
+Calvin/M
+Calvinism/MS
+Calvinist/MS
+Calvinistic
+Camacho/M
+Camarillo/M
+Cambodia/M
+Cambodian/SM
+Cambrian/SM
+Cambridge/M
+Camden/M
+Camel/M
+Camelopardalis/M
+Camelot/MS
+Camembert/MS
+Cameron/M
+Cameroon/SM
+Cameroonian/MS
+Camilla/M
+Camille/M
+Camoens/M
+Campanella/M
+Campbell/M
+Campinas/M
+Campos/M
+Camry/M
+Camus/M
+Can/M
+Canaan/M
+Canaanite/MS
+Canad
+Canada/M
+Canadian/SM
+Canadianism
+Canaletto/M
+Canaries/M
+Canaveral/M
+Canberra/M
+Cancer/SM
+Cancun/M
+Candace/M
+Candice/M
+Candide/M
+Candy/M
+Cannes/M
+Cannon/M
+Canon/M
+Canopus/M
+Cantabrigian/M
+Canterbury/M
+Canton/M
+Cantonese/M
+Cantor/M
+Cantrell/M
+Cantu/M
+Canute/M
+Capablanca/M
+Capek/M
+Capella/M
+Capet/M
+Capetian/M
+Capetown/M
+Caph/M
+Capistrano/M
+Capitol/SM
+Capitoline/M
+Capone/M
+Capote/M
+Capra/M
+Capri/M
+Capricorn/MS
+Capt
+Capuchin/M
+Capulet/M
+Cara/M
+Caracalla/M
+Caracas/M
+Caravaggio/M
+Carboloy/M
+Carbondale/M
+Carboniferous/M
+Carborundum/M
+Cardenas/M
+Cardiff/M
+Cardin/M
+Cardozo/M
+Carey/M
+Carib/MS
+Caribbean/MS
+Carina/M
+Carissa/M
+Carl/M
+Carla/M
+Carlene/M
+Carlin/M
+Carlo/MS
+Carlos/M
+Carlsbad/M
+Carlson/M
+Carlton/M
+Carly/M
+Carlyle/M
+Carmela/M
+Carmella/M
+Carmelo/M
+Carmen/M
+Carmichael/M
+Carmine/M
+Carnap/M
+Carnation/M
+Carnegie/M
+Carney/M
+Carnot/M
+Carol/M
+Carole/M
+Carolina/M
+Caroline/M
+Carolingian/M
+Carolinian/M
+Carolyn/M
+Carpathian/SM
+Carpathians/M
+Carpenter/M
+Carr/M
+Carranza/M
+Carrie/RM
+Carrier/M
+Carrillo/M
+Carroll/M
+Carson/M
+Carter/M
+Cartersville/M
+Cartesian/M
+Carthage/M
+Carthaginian/MS
+Cartier/M
+Cartwright/M
+Caruso/M
+Carver/M
+Cary/M
+Casablanca/M
+Casals/M
+Casandra/M
+Casanova/SM
+Cascades/M
+Case/M
+Casey/M
+Cash/M
+Casio/M
+Caspar/M
+Casper/M
+Caspian/M
+Cassandra/SM
+Cassatt/M
+Cassidy/M
+Cassie/M
+Cassiopeia/M
+Cassius/M
+Castaneda/M
+Castilian
+Castillo/M
+Castlereagh/M
+Castor/M
+Castries/M
+Castro/M
+Catalan/SM
+Catalina/M
+Catalonia/M
+Catawba/M
+Caterpillar/M
+Cathay/M
+Cather/M
+Catherine/M
+Cathleen/M
+Catholic/MS
+Catholicism/MS
+Cathryn/M
+Cathy/M
+Catiline/M
+Cato/M
+Catskill/SM
+Catskills/M
+Catt/M
+Catullus/M
+Caucasian/MS
+Caucasoid
+Caucasus/M
+Cauchy/M
+Cavendish/M
+Cavour/M
+Caxton/M
+Cayenne/M
+Cayman/M
+Cayuga/SM
+Cayuse
+Cb
+Cd/M
+Ce/M
+Ceausescu/M
+Cebu/M
+Cebuano/M
+Cecelia/M
+Cecil/M
+Cecile/M
+Cecilia/M
+Cecily/M
+Cedric/M
+Celeste/M
+Celgene/M
+Celia/M
+Celina/M
+Cellini/M
+Celsius/M
+Celt/SM
+Celtic/SM
+Cenozoic/M
+Centaurus/M
+Centigrade
+Central
+Cepheid/M
+Cepheus/M
+Cerberus/M
+Cerenkov/M
+Ceres/M
+Cerf/M
+Cervantes/M
+Cesar/M
+Cesarean/M
+Cessna/M
+Cetus/M
+Ceylon/M
+Ceylonese
+Cezanne/M
+Cf/M
+Ch'in/M
+Ch/N
+Chablis/M
+Chad/M
+Chadian/MS
+Chadwick/M
+Chagall/M
+Chaitanya/M
+Chaitin/M
+Chaldea
+Chaldean/M
+Challenger/M
+Chalmers
+Chamberlain/M
+Chambers/M
+Chambersburg/M
+Champaign/M
+Champlain/M
+Champollion/M
+Chan/M
+Chance/M
+Chancellorsville/M
+Chandigarh/M
+Chandler/M
+Chandon/M
+Chandra/M
+Chandragupta/M
+Chandrasekhar/M
+Chanel/M
+Chaney/M
+Chang/M
+Changchun/M
+Changsha/M
+Chantilly/M
+Chaplin/M
+Chaplinesque
+Chapman/M
+Chappaquiddick/M
+Chapultepec/M
+Charbray/M
+Chardonnay/M
+Charity/M
+Charlemagne/M
+Charlene/M
+Charles/M
+Charleston/MS
+Charley/M
+Charlie/M
+Charlotte/M
+Charlottesville/M
+Charlottetown/M
+Charmaine/M
+Charmin/M
+Charolais/M
+Charon/M
+Chartism/M
+Chartres/M
+Charybdis/M
+Chase/M
+Chasity/M
+Chateaubriand/M
+Chattahoochee/M
+Chattanooga/M
+Chatterley/M
+Chatterton/M
+Chaucer/M
+Chauncey/M
+Chautauqua/M
+Chavez/M
+Chayefsky/M
+Che/M
+Chechen/M
+Chechnya/M
+Cheddar/M
+Cheer/M
+Cheerios/M
+Cheetos/M
+Cheever/M
+Chekhov/M
+Chekhovian
+Chelsea/M
+Chelyabinsk/M
+Chen/M
+Cheney/M
+Chengdu/M
+Chennai/M
+Cheops/M
+Cheri/M
+Cherie/M
+Chernenko/M
+Chernobyl/M
+Chernomyrdin/M
+Cherokee/MS
+Cherry/M
+Cheryl/M
+Chesapeake/M
+Cheshire/M
+Chester/M
+Chesterfield/M
+Chesterton/M
+Chevalier/M
+Cheviot/M
+Chevrolet/M
+Chevron/M
+Chevy/M
+Cheyenne/SM
+Chi/M
+Chianti/MS
+Chiba/M
+Chibcha/M
+Chicago/M
+Chicagoan/M
+Chicana/M
+Chicano/M
+Chickasaw/MS
+Chiclets/M
+Chico/M
+Chihuahua/MS
+Chile/M
+Chilean/MS
+Chimborazo/M
+Chimera/MS
+Chimu/M
+Chin/M
+China/M
+Chinatown/M
+Chinese/M
+Chinook/MS
+Chipewyan/M
+Chippendale/M
+Chippewa/SM
+Chiquita/M
+Chirico/M
+Chisholm/M
+Chisinau/M
+Chittagong/M
+Chivas/M
+Chloe/M
+Choctaw/SM
+Chomsky/M
+Chongqing/M
+Chopin/M
+Chopra/M
+Chou/M
+Chretien/M
+Chris/M
+Christ/MS
+Christa/M
+Christchurch/M
+Christendom/MS
+Christensen/M
+Christi/M
+Christian/SM
+Christianity/SM
+Christianize
+Christie/M
+Christina/M
+Christine/M
+Christlike
+Christmas/MS
+Christmastide/MS
+Christmastime/MS
+Christoper/M
+Christopher/M
+Chromebook/MS
+Chronicles
+Chrysler/M
+Chrysostom/M
+Chrystal/M
+Chuck/M
+Chukchi/M
+Chumash/M
+Chung/M
+Church/M
+Churchill/M
+Churriguera/M
+Chuvash/M
+Ci/M
+Cicero/M
+Cid/M
+Cimabue/M
+Cincinnati/M
+Cinderella/MS
+Cindy/M
+CinemaScope/M
+Cinerama/M
+Cipro/M
+Circe/M
+Cisco/M
+Citibank/M
+Citigroup/M
+Citroen/M
+Cl/MV
+Claiborne/M
+Clair/M
+Claire/M
+Clairol/M
+Clancy/M
+Clapeyron/M
+Clapton/M
+Clara/M
+Clare/M
+Clarence/M
+Clarendon/M
+Clarice/M
+Clarissa/M
+Clark/M
+Clarke/M
+Clarksville/M
+Claude/M
+Claudette/M
+Claudia/M
+Claudine/M
+Claudio/M
+Claudius/M
+Claus/M
+Clausewitz/M
+Clausius/M
+Clay/M
+Clayton/M
+Clearasil/M
+Clem/XM
+Clemenceau/M
+Clemens/M
+Clement/MS
+Clementine/M
+Clements/M
+Clemons/M
+Clemson/M
+Cleo/M
+Cleopatra/M
+Cleveland/M
+Cliburn/M
+Cliff/M
+Clifford/M
+Clifton/M
+Cline/M
+Clint/M
+Clinton/M
+Clio/M
+Clive/M
+Clojure/M
+Clorets/M
+Clorox/M
+Closure/M
+Clotho/M
+Clouseau/M
+Clovis/M
+Clyde/M
+Clydesdale/M
+Clytemnestra/M
+Cm/M
+Cmdr
+Co/M
+Cobain/M
+Cobb/M
+Cochabamba/M
+Cochin/M
+Cochise/M
+Cochran/M
+Cockney/M
+Cocteau/M
+Cod
+Cody/M
+Coffey/M
+Cognac/M
+Cohan/M
+Cohen/M
+Coimbatore/M
+Cointreau/M
+Coke/SM
+Col/M
+Colbert/M
+Colby/M
+Cole/M
+Coleen/M
+Coleman/M
+Coleridge/M
+Colette/M
+Colfax/M
+Colgate/M
+Colin/M
+Colleen/M
+Collier/M
+Collin/SM
+Collins/M
+Colo
+Cologne/M
+Colombia/M
+Colombian/MS
+Colombo/M
+Colon/M
+Coloradan/SM
+Colorado/M
+Coloradoan
+Colosseum/M
+Colt/M
+Coltrane/M
+Columbia/M
+Columbine/M
+Columbus/M
+Com
+Comanche/MS
+Combs/M
+Comdr
+Comintern/M
+Commandment
+Commons/M
+Commonwealth
+Communion/SM
+Communism
+Communist/SM
+Como/M
+Comoran
+Comoros/M
+Compaq/M
+Compton/M
+CompuServe/M
+Comte/M
+Conakry/M
+Conan/M
+Concepcion/M
+Concetta/M
+Concord/SM
+Concorde/M
+Condillac/M
+Condorcet/M
+Conestoga/M
+Confederacy/M
+Confederate/MS
+Confucian/SM
+Confucianism/MS
+Confucius/M
+Cong/M
+Congo/M
+Congolese/M
+Congregational
+Congregationalist/MS
+Congress/MS
+Congressional
+Congreve/M
+Conley/M
+Conn/MR
+Connecticut/M
+Connellsville/M
+Connemara/M
+Conner/M
+Connery/M
+Connie/M
+Connolly/M
+Connors/M
+Conrad/M
+Conrail/M
+Conroe/M
+Conservative
+Constable/M
+Constance/M
+Constantine/M
+Constantinople/M
+Constitution
+Consuelo/M
+Continent/M
+Continental/M
+Contreras/M
+Conway/M
+Cook/M
+Cooke/M
+Cooley/M
+Coolidge/M
+Cooper/M
+Cooperstown/M
+Coors/M
+Copacabana/M
+Copeland/M
+Copenhagen/M
+Copernican/M
+Copernicus/M
+Copland/M
+Copley/M
+Copperfield/M
+Coppertone/M
+Coppola/M
+Coptic/M
+Cora/M
+Cordelia/M
+Cordilleras/M
+Cordoba/M
+Corey/M
+Corfu/M
+Corina/M
+Corine/M
+Corinne/M
+Corinth/M
+Corinthian/MS
+Corinthians/M
+Coriolanus/M
+Coriolis/M
+Cork
+Corleone/M
+Cormack/M
+Corneille/M
+Cornelia/M
+Cornelius/M
+Cornell/M
+Corning/M
+Cornish/MS
+Cornwall/M
+Cornwallis/M
+Coronado/M
+Corot/M
+Corp
+Correggio/M
+Corrine/M
+Corsica/M
+Corsican/M
+Cortes/MS
+Cortland/M
+Corvallis/M
+Corvette/M
+Corvus/M
+Cory/M
+Cosby/M
+CosmosDB/M
+Cossack/M
+Costco/M
+Costello/M
+Costner/M
+Cote/M
+Cotonou/M
+Cotopaxi/M
+Cotswold/M
+Cotton/M
+Coulomb/M
+Coulter/M
+Couperin/M
+Courbet/M
+Courtney/M
+Cousteau/M
+Coventry/SM
+Covington/M
+Coward/M
+Cowell/M
+Cowley/M
+Cowper/M
+Cox/M
+Coy/M
+Coyle/M
+Cozumel/M
+Cpl
+Cr/MT
+Crabbe/M
+Craft/M
+Craig/M
+Cranach/M
+Crane/M
+Cranmer/M
+Crater/M
+Crawford/M
+Cray/M
+Crayola/M
+Creation/M
+Creator/M
+Crecy/M
+Cree/DSM
+Creek/SM
+Creighton/M
+Creole/SM
+Creon/M
+Cressida/M
+Crest/M
+Cretaceous/M
+Cretan/SM
+Crete/M
+Crichton/M
+Crick/M
+Crimea/M
+Crimean/M
+Criollo/M
+Crisco/M
+Cristina/M
+Croat/SM
+Croatia/M
+Croatian/MS
+Croce/M
+Crockett/M
+Croesus/M
+Cromwell/M
+Cromwellian/M
+Cronin/M
+Cronkite/M
+Cronus/M
+Crookes/M
+Crosby/M
+Cross/M
+Crow/SM
+Crowley/M
+Crucifixion/MS
+Cruikshank/M
+Cruise/M
+Crusades's
+Crusoe/M
+Crux/M
+Cruz/M
+Cryptozoic/M
+Crystal/M
+Csonka/M
+Ct
+Ctesiphon/M
+Cthulhu/M
+Cu/M
+Cuba/M
+Cuban/SM
+Cuchulain/M
+Cuisinart/M
+Culbertson/M
+Cullen/M
+Cumberland/M
+Cummings/M
+Cunard/M
+Cunningham/M
+Cupid/M
+Curacao/M
+Curie/M
+Curitiba/M
+Currier/M
+Curry/RM
+Curt/M
+Curtis/M
+Custer/M
+Cuvier/M
+Cuzco/M
+Cybele/M
+Cyclades/M
+Cyclopes/M
+Cyclops/M
+Cygnus/M
+Cymbeline/M
+Cynthia/M
+Cyprian/M
+Cypriot/MS
+Cyprus/M
+Cyrano/M
+Cyril/M
+Cyrillic/M
+Cyrus/M
+Czech/M
+Czechia/M
+Czechoslovak
+Czechoslovakia/M
+Czechoslovakian/SM
+Czechs
+Czerny/M
+D/M
+DA/M
+DAR
+DAT/M
+DBMS/M
+DC/M
+DD/M
+DDS/M
+DDT/S
+DE
+DEA
+DEC/SD
+DH
+DHS
+DI
+DJ
+DMCA
+DMD/M
+DMZ
+DNA/M
+DOA
+DOB
+DOD
+DOE
+DOS/M
+DOT
+DP/SM
+DPT
+DST
+DTP
+DUI
+DVD/S
+DVR/SM
+DWI
+Dachau/M
+Dacron/SM
+Dada/M
+Dadaism/M
+Daedalus/M
+Daguerre/M
+Dagwood/M
+Dahomey/M
+Daimler/M
+Daisy/M
+Dakar/M
+Dakota/SM
+Dakotan/M
+Dalai
+Dale/M
+Daley/M
+Dali/M
+Dalian/M
+Dallas/M
+Dalmatia/M
+Dalmatian/SM
+Dalton/M
+Damascus/M
+Dame/MN
+Damian/M
+Damien/M
+Damion/M
+Damocles/M
+Damon/M
+Dan/M
+Dana/M
+Danae/M
+Danbury/M
+Dane/SM
+Danelaw/M
+Dangerfield/M
+Danial/M
+Daniel/SM
+Danielle/M
+Daniels/M
+Danish/M
+Dannie/M
+Danny/M
+Danone/M
+Dante/M
+Danton/M
+Danube/M
+Danubian/M
+Danville/M
+Daphne/M
+Darby/M
+Darcy/M
+Dardanelles/M
+Dare/M
+Daren/M
+Darfur/M
+Darin/M
+Dario/M
+Darius/M
+Darjeeling/M
+Darla/M
+Darlene/M
+Darling/M
+Darnell/M
+Darrel/M
+Darrell/M
+Darren/M
+Darrin/M
+Darrow/M
+Darryl/M
+Darth/M
+Dartmoor/M
+Dartmouth/M
+Darvon/M
+Darwin/M
+Darwinian/M
+Darwinism/SM
+Darwinist
+Daryl/M
+Datamation
+Daugherty/M
+Daumier/M
+Davao/M
+Dave/M
+Davenport/M
+David/MS
+Davidson/M
+Davies/M
+Davis/M
+Davy/SM
+Dawes/M
+Dawkins
+Dawn/M
+Dawson/M
+Day/M
+Dayan
+Dayton/M
+DeGeneres/M
+DeKalb/M
+Deadhead/M
+Dean/M
+Deana/M
+Deandre/M
+Deann/M
+Deanna/M
+Deanne/M
+Death/M
+Debbie/M
+Debby/M
+Debian/M
+Debora/M
+Deborah/M
+Debouillet/M
+Debra/M
+Debs/M
+Debussy/M
+Dec/M
+Decalogue/M
+Decatur/M
+Decca/M
+Deccan/M
+December/SM
+Decker/M
+Dedekind/M
+Dee/M
+Deena/M
+Deere/M
+Defoe/M
+Degas/M
+Deidre/M
+Deimos/M
+Deirdre/M
+Deity
+Dejesus/M
+Del/M
+Delacroix/M
+Delacruz/M
+Delaney/M
+Delano/M
+Delaware/MS
+Delawarean/SM
+Delbert/M
+Deleon/M
+Delgado/M
+Delhi/M
+Delia/M
+Delibes/M
+Delicious/M
+Delilah/M
+Delilahs
+Delius/M
+Dell/M
+Della/M
+Delmar/M
+Delmarva/M
+Delmer/M
+Delmonico/M
+Delores/M
+Deloris/M
+Delphi/M
+Delphic/M
+Delphinus/M
+Delta/M
+Deltona/M
+Dem/G
+Demavend/M
+Demerol/M
+Demeter/M
+Demetrius/M
+Deming/M
+Democrat/SM
+Democratic
+Democritus/M
+Demosthenes/M
+Dempsey/M
+Dena/M
+Denali
+Deneb/M
+Denebola/M
+Deng/M
+Denis/M
+Denise/M
+Denmark/M
+Dennis/M
+Denny/M
+Denton/M
+Denver/M
+Deon/M
+Depp/M
+Derby/M
+Derek/M
+Derick/M
+Dermot/M
+Derrick/M
+Derrida/M
+Descartes/M
+Desdemona/M
+Desiree/M
+Desmond/M
+Detroit/M
+Deuteronomy/M
+Devanagari/M
+Devi/M
+Devin/M
+Devon/M
+Devonian/M
+Dewar/M
+Dewayne/M
+Dewey/M
+Dewitt/M
+Dexedrine/M
+Dexter/M
+Dhaka/M
+Dhaulagiri/M
+Di/SM
+DiCaprio/M
+DiMaggio/M
+Diaghilev/M
+Dial/M
+Diana/M
+Diane/M
+Diann/M
+Dianna/M
+Dianne/M
+Dias
+Diaspora/MS
+Dick/XM
+Dickens/M
+Dickensian
+Dickerson/M
+Dickinson/M
+Dickson/M
+Dictaphone/SM
+Diderot/M
+Dido/M
+Didrikson/M
+Diefenbaker/M
+Diego/M
+Diem/M
+Dietrich/M
+Dijkstra/M
+Dijon/M
+Dilbert/MS
+Dillard/M
+Dillinger/M
+Dillon/M
+Dina/M
+Dinah/M
+Dino/M
+Diocletian/M
+Diogenes/M
+Dion/M
+Dionne/M
+Dionysian/M
+Dionysus/M
+Diophantine/M
+Dior/M
+Dipper/M
+Dir
+Dirac/M
+Dirichlet/M
+Dirk/M
+Dis/M
+Disney/M
+Disneyland/M
+Disraeli/M
+Divine/M
+Diwali/M
+Dix/M
+Dixie/M
+Dixiecrat/M
+Dixieland/SM
+Dixon/M
+Django/M
+Djibouti/M
+Dmitri/M
+Dnepropetrovsk/M
+Dniester/M
+Dobbin/M
+Doberman/M
+Dobro/M
+Doctor
+Doctorow/M
+Dodge/M
+Dodgson/M
+Dodoma/M
+Dodson/M
+Doe/M
+Doha/M
+Dolby/M
+Dole/M
+Dollie/M
+Dolly/M
+Dolores/M
+Domesday/M
+Domingo/M
+Dominguez/M
+Dominic/M
+Dominica/M
+Dominican/MS
+Dominick/M
+Dominion
+Dominique/M
+Domitian/M
+Don/SM
+Dona/M
+Donahue/M
+Donald/M
+Donaldson/M
+Donatello/M
+Donetsk/M
+Donizetti/M
+Donn/MR
+Donna/M
+Donne/M
+Donnell/M
+Donner/M
+Donnie/M
+Donny/M
+Donovan/M
+Dooley/M
+Doolittle/M
+Doonesbury/M
+Doppler/M
+Dora/M
+Dorcas/M
+Doreen/M
+Dorian/M
+Doric/M
+Doris/M
+Doritos/M
+Dorothea/M
+Dorothy/M
+Dorset/M
+Dorsey/M
+Dorthy/M
+Dortmund/M
+Dostoevsky/M
+Dot/M
+Dothan/M
+Dotson/M
+Douala/M
+Douay/M
+Doubleday/M
+Doug/M
+Douglas/M
+Douglass/M
+Douro/M
+Dover/M
+Dow/M
+Downs/M
+Downy/M
+Doyle/M
+Dr
+Draco/M
+Draconian/M
+Dracula/M
+Drake/M
+Dramamine/SM
+Drambuie/M
+Drano/M
+Dravidian/M
+Dreiser/M
+Dresden/M
+Drew/M
+Dreyfus/M
+Dristan/M
+Dropbox/M
+Drudge/M
+Drupal/M
+Dryden/M
+Dschubba/M
+Du
+DuPont/M
+Duane/M
+Dubai/M
+Dubcek/M
+Dubhe/M
+Dublin/M
+Dubrovnik/M
+Dubuque/M
+Duchamp/M
+Dudley/M
+Duffy/M
+Duisburg/M
+Duke/M
+Dulles/M
+Duluth/M
+Dumas/M
+Dumbledore/M
+Dumbo/M
+Dunant/M
+Dunbar/M
+Duncan/M
+Dundee
+Dunedin/M
+Dunkirk/M
+Dunlap/M
+Dunn/M
+Dunne/M
+Duracell/M
+Duran/M
+Durant/M
+Durante/M
+Durban/M
+Durer/M
+Durex/M
+Durham/MS
+Durkheim/M
+Duroc/M
+Durocher/M
+Duse/M
+Dushanbe/M
+Dusseldorf/M
+Dustbuster/M
+Dustin/M
+Dusty/M
+Dutch/M
+Dutchman/M
+Dutchmen/M
+Dutchwoman
+Duvalier/M
+Dvina/M
+Dvorak/M
+Dwayne/M
+Dwight/M
+Dy/M
+Dyer/M
+Dylan/M
+DynamoDB/M
+Dyson/M
+Dzerzhinsky/M
+Dzungaria/M
+E/SM
+EC
+ECG/M
+ECMAScript/M
+EDP/M
+EDT
+EEC/M
+EEG/M
+EEO
+EEOC
+EFL
+EFT
+EKG/M
+ELF/M
+EM
+EMT
+ENE/M
+EOE
+EPA/M
+ER
+ERA
+ESE/M
+ESL
+ESP/M
+ESPN/M
+ESR
+EST/M
+ET
+ETA
+ETD
+EU
+EULA/S
+Eakins/M
+Earhart/M
+Earl/M
+Earle/M
+Earlene/M
+Earline/M
+Earnest/M
+Earnestine/M
+Earnhardt/M
+Earp/M
+East/SZMR
+Easter/M
+Eastern/R
+Eastman/M
+Eastwood/M
+Eaton/M
+Eben/M
+Ebeneezer/M
+Ebert/M
+Ebola/M
+Ebonics/M
+Ebony/M
+Ebro/M
+Ecclesiastes/M
+Eco/M
+Ecstasy
+Ecuador/M
+Ecuadoran/SM
+Ecuadorean
+Ecuadorian/SM
+Ed/MNX
+Edam/SM
+Edda/M
+Eddie/M
+Eddington/M
+Eddy/M
+Eden/M
+Edgar/M
+Edgardo/M
+Edinburgh/M
+Edison/M
+Edith/M
+Edmond/M
+Edmonton/M
+Edmund/M
+Edna/M
+Edsel/M
+Eduardo/M
+Edward/SM
+Edwardian/M
+Edwardo/M
+Edwards/M
+Edwin/M
+Edwina/M
+Eeyore/M
+Effie/M
+Efrain/M
+Efren/M
+Eggo/M
+Egypt/M
+Egyptian/MS
+Egyptology/M
+Ehrenberg/M
+Ehrlich/M
+Eichmann/M
+Eiffel/M
+Eileen/M
+Einstein/MS
+Eire/M
+Eisenhower/M
+Eisenstein/M
+Eisner/M
+Elaine/M
+Elam/M
+Elanor/M
+Elasticsearch/M
+Elastoplast/M
+Elba/M
+Elbe/M
+Elbert/M
+Elbrus/M
+Eldersburg/M
+Eldon/M
+Eleanor/M
+Eleazar/M
+Electra/M
+Elena/M
+Elgar/M
+Eli/M
+Elias/M
+Elijah/M
+Elinor/M
+Eliot/M
+Elisa/M
+Elisabeth/M
+Elise/M
+Eliseo/M
+Elisha/M
+Eliza/M
+Elizabeth/M
+Elizabethan/SM
+Elizabethtown/M
+Elkhart/M
+Ella/M
+Ellen/M
+Ellesmere/M
+Ellie/M
+Ellington/M
+Elliot/M
+Elliott/M
+Ellis/M
+Ellison/M
+Elma/M
+Elmer/M
+Elmira/M
+Elmo/M
+Elnath/M
+Elnora/M
+Elohim/M
+Eloise/M
+Eloy/M
+Elroy/M
+Elsa/M
+Elsie/M
+Elsinore/M
+Eltanin/M
+Elton/M
+Elul/M
+Elva/M
+Elvia/M
+Elvin/M
+Elvira/M
+Elvis/M
+Elway/M
+Elwood/M
+Elyria/M
+Elysee/M
+Elysian/M
+Elysium/SM
+Emacs/M
+Emanuel/M
+Emerson/M
+Emery/M
+Emil/M
+Emile/M
+Emilia/M
+Emilio/M
+Emily/M
+Eminem/M
+Eminence
+Emma/M
+Emmanuel/M
+Emmett/M
+Emmy/M
+Emory/M
+Encarta/M
+Endymion/M
+Eng/M
+Engels/M
+England/M
+English/MRS
+Englishman/M
+Englishmen/M
+Englishwoman/M
+Englishwomen/M
+Enid/M
+Enif/M
+Eniwetok/M
+Enkidu/M
+Enoch/M
+Enos/M
+Enrico/M
+Enrique/M
+Enron/M
+Enterprise/M
+Eocene/M
+Epcot/M
+Ephesian/MS
+Ephesus/M
+Ephraim/M
+Epictetus/M
+Epicurean/M
+Epicurus/M
+Epimethius/M
+Epiphany/SM
+Episcopal
+Episcopalian/MS
+Epistle
+Epsom/M
+Epson/M
+Epstein/M
+Equuleus/M
+Er/M
+Erasmus/M
+Erato/M
+Eratosthenes/M
+Erebus/M
+Erector/M
+Erewhon/M
+Erhard/M
+Eric/M
+Erica/M
+Erich/M
+Erick/M
+Ericka/M
+Erickson/M
+Eridanus/M
+Erie/M
+Erik/M
+Erika/M
+Erin/M
+Eris/MS
+Eritrea/M
+Eritrean/SM
+Erlang/M
+Erlenmeyer/M
+Erma/M
+Erna/M
+Ernest/M
+Ernestine/M
+Ernesto/M
+Ernie/M
+Ernst/M
+Eros/MS
+Errol/M
+Erse/M
+ErvIn/M
+Erwin/M
+Esau/M
+Escher/M
+Escherichia/M
+Escondido
+Eskimo/MS
+Esmeralda/M
+Esperanto/M
+Esperanza/M
+Espinoza/M
+Esq/M
+Esquire/MS
+Essen/M
+Essene/M
+Essequibo/M
+Essex/M
+Essie/M
+Establishment
+Esteban/M
+Estela/M
+Estella/M
+Estelle/M
+Ester/M
+Esterhazy/M
+Estes/M
+Esther/M
+Estonia/M
+Estonian/SM
+Estrada/M
+Ethan/M
+Ethel/M
+Ethelred/M
+Ethernet/M
+Ethiopia/M
+Ethiopian/SM
+Etna/M
+Eton/M
+Etruria/M
+Etruscan/M
+Etta/M
+Eu/M
+Eucharist/MS
+Eucharistic
+Euclid/M
+Eugene/M
+Eugenia/M
+Eugenie/M
+Eugenio/M
+Eula/M
+Euler/M
+Eumenides/M
+Eunice/M
+Euphrates/M
+Eur
+Eurasia/M
+Eurasian/MS
+Euripides/M
+Eurodollar/SM
+Europa/M
+Europe/M
+European/MS
+Eurydice/M
+Eustachian/M
+Eustis/M
+Euterpe/M
+Eva/M
+Evan/SM
+Evangelical
+Evangelina/M
+Evangeline/M
+Evangelist/M
+Evans/M
+Evansville/M
+Eve/M
+Evelyn/M
+Evenki/M
+EverReady/M
+Everest/M
+Everett/M
+Everette/M
+Everglades/M
+Evert/M
+Evian/M
+Evita/M
+Ewing/M
+Excalibur/M
+Excedrin/M
+Excellency/SM
+Exchequer
+Exercycle/M
+Exocet/M
+Exodus/M
+Exxon/M
+Eyck/M
+Eyre/M
+Eysenck/M
+Ezekiel/M
+Ezra/M
+F/MD
+FAA
+FAQ/SM
+FBI/M
+FCC
+FD
+FDA
+FDIC/M
+FDR/M
+FHA/M
+FICA/M
+FIFO
+FL
+FM/SM
+FNMA/M
+FOFL
+FORTRAN/M
+FPO
+FSF/M
+FSLIC
+FTC
+FUD/S
+FWD
+FWIW
+FY
+FYI
+Faberge/M
+Fabian/MS
+Facebook/M
+Faeroe/M
+Fafnir/M
+Fagin/M
+Fahd/M
+Fahrenheit/M
+Fairbanks/M
+Fairfield/M
+Fairhope/M
+Faisal/M
+Faisalabad/M
+Faith/M
+Fajardo/M
+Falasha/M
+Falkland/SM
+Falklands/M
+Fallopian/M
+Falstaff/M
+Falwell/M
+Fannie/M
+Fanny/M
+Faraday/M
+Fargo/M
+Farley/M
+Farmer/M
+Farmington/M
+Farragut/M
+Farrakhan/M
+Farrell/M
+Farrow/M
+Farsi/M
+Fassbinder/M
+Fatah/M
+Fates/M
+Father/SM
+Fatima/M
+Fatimid/M
+Faulkner/M
+Faulknerian/M
+Fauntleroy/M
+Faust/M
+Faustian/M
+Faustino/M
+Faustus/M
+Fawkes/M
+Fay/M
+Faye/M
+Fayetteville/M
+Fe/M
+Feb/M
+February/SM
+Fed/SM
+FedEx/M
+Federal/MS
+Federalist/M
+Federico/M
+Feds/M
+Felecia/M
+Felice/M
+Felicia/M
+Felicity/M
+Felipe/M
+Felix/M
+Fellini/M
+Fenian/M
+Ferber/M
+Ferdinand/M
+Fergus/M
+Ferguson/M
+Ferlinghetti/M
+Fermat/M
+Fermi/M
+Fern/M
+Fernandez/M
+Fernando/M
+Ferrari/M
+Ferraro/M
+Ferrell/M
+Ferris/M
+Feynman/M
+Fez/M
+Fiat/M
+Fiberglas/M
+Fibonacci/M
+Fichte/M
+Fidel/M
+Fido/M
+Fielding/M
+Fields/M
+Figaro/M
+Figueroa/M
+Fiji/M
+Fijian/MS
+Filipino/MS
+Fillmore/M
+Filofax/M
+Finch/M
+Finland/M
+Finlay/M
+Finley/M
+Finn/SM
+Finnbogadottir/M
+Finnegan/M
+Finnish/M
+Fiona/M
+Firebase/M
+Firefox/M
+Firestone/M
+Fischer/M
+Fisher/M
+Fisk/M
+Fitch/M
+Fitchburg/M
+Fitzgerald/M
+Fitzpatrick/M
+Fitzroy/M
+Fizeau/M
+Fla
+Flagstaff/M
+Flanagan/M
+Flanders/M
+Flathead
+Flatt/M
+Flaubert/M
+Fleischer/M
+Fleming/M
+Flemish/M
+Fletcher/M
+Flint/M
+Flintstones/M
+Flo/M
+Flora/M
+Florence/M
+Florentine/M
+Flores/M
+Florida/M
+Floridan/M
+Floridian/SM
+Florine/M
+Florsheim/M
+Flory/M
+Flossie/M
+Flowers/M
+Floyd/M
+Flynn/M
+Fm/M
+Foch/M
+Fokker/M
+Foley/M
+Folgers/M
+Folsom/M
+Fomalhaut/M
+Fonda/M
+Foosball/M
+Forbes/M
+Ford/M
+Foreman/M
+Forest/MR
+Forester/M
+Formica/MS
+Formosa/M
+Formosan/M
+Forrest/M
+Forster/M
+Fortaleza/M
+Fosse/M
+Foster/M
+Fotomat/M
+Foucault/M
+Fourier/M
+Fourneyron/M
+Fourth
+Fowler/M
+Fox/MS
+Fr/MD
+Fragonard/M
+Fran/M
+France/SM
+Frances/M
+Francesca/M
+Francine/M
+Francis/M
+Francisca/M
+Franciscan/MS
+Francisco/M
+Franck/M
+Franco/M
+Francois/M
+Francoise/M
+Francophile
+Franglais/M
+Frank/SM
+Frankel/M
+Frankenstein/M
+Frankfort/M
+Frankfurt/MR
+Frankfurter/M
+Frankie/M
+Frankish
+Franklin/M
+Franks/M
+Franny/M
+Franz/M
+Fraser/M
+Frau/MN
+Fraulein
+Frazier/M
+Fred/M
+Freda/M
+Freddie/M
+Freddy/M
+Frederic/M
+Frederick/M
+Fredericksburg/M
+Fredericton/M
+Fredric/M
+Fredrick/M
+Freeman/M
+Freemason/SM
+Freemasonry/SM
+Freetown/M
+Freida/M
+Fremont/M
+French/MS
+Frenchman/M
+Frenchmen/M
+Frenchwoman/M
+Frenchwomen/M
+Freon/M
+Fresnel/M
+Fresno/M
+Freud/M
+Freudian/M
+Frey/M
+Freya/M
+Fri/M
+Friday/SM
+Frieda/M
+Friedan/M
+Friedman/M
+Friedmann/M
+Friend/SM
+Frigga/M
+Frigidaire/M
+Frisbee/M
+Frisco/M
+Frisian/MS
+Frito/M
+Fritz/M
+Frobisher/M
+Frodo/M
+Froissart/M
+Fromm/M
+Fronde/M
+Frontenac/M
+Frost/M
+Frostbelt/M
+Frunze/M
+Fry/M
+Frye/M
+Fuchs/M
+Fuentes/M
+Fugger/M
+Fuji/M
+Fujian/M
+Fujitsu/M
+Fujiwara/M
+Fujiyama/M
+Fukuoka/M
+Fukuyama/M
+Fulani/M
+Fulbright/M
+Fuller/M
+Fullerton/M
+Fulton/M
+Funafuti/M
+Fundy/M
+Furies/M
+Furman/M
+Furtwangler/M
+Fushun/M
+Fuzhou/M
+Fuzzbuster/M
+G/MNRB
+GA
+GAO
+GATT/M
+GB/M
+GCC/M
+GDP/M
+GE/M
+GED
+GHQ/M
+GHz
+GI
+GIF
+GIGO
+GM/M
+GMAT
+GMO
+GMT/M
+GNP/M
+GNU/M
+GOP/M
+GP/M
+GPA
+GPO
+GPS
+GPU
+GSA
+GTE/M
+GU
+GUI/M
+Ga/M
+Gable/M
+Gabon/M
+Gabonese/M
+Gaborone/M
+Gabriel/M
+Gabriela/M
+Gabrielle/M
+Gacrux/M
+Gadsden/M
+Gaea/M
+Gael/SM
+Gaelic/M
+Gagarin/M
+Gage/M
+Gaia/M
+Gail/M
+Gaiman/M
+Gaines/M
+Gainesville/M
+Gainsborough/M
+Galahad/SM
+Galapagos/M
+Galatea/M
+Galatia/M
+Galatians/M
+Galaxy
+Galbraith/M
+Gale/M
+Galen/M
+Galibi/M
+Galilean/SM
+Galilee/M
+Galileo/M
+Gall/M
+Gallagher/M
+Gallegos/M
+Gallic/M
+Gallicism/SM
+Gallo/M
+Galloway/M
+Gallup/M
+Galois/M
+Galsworthy/M
+Galvani/M
+Galveston/M
+Gama
+Gamay/M
+Gambia/M
+Gambian/SM
+Gamble/M
+Gamow/M
+Gandalf/M
+Gandhi/M
+Gandhian/M
+Ganesha/M
+Ganges/M
+Gangtok/M
+Gansu/M
+Gantry/M
+Ganymede/M
+Gap/M
+Garbo/M
+Garcia/M
+Gardner/M
+Gareth/M
+Garfield/M
+Garfunkel/M
+Gargantua/M
+Garibaldi/M
+Garland/M
+Garner/M
+Garrett/M
+Garrick/M
+Garrison/M
+Garry/M
+Garth/M
+Garvey/M
+Gary/M
+Garza/M
+Gascony/M
+Gasser/M
+Gastonia/M
+Gastroenterology
+Gates/M
+Gatling/M
+Gatorade/M
+Gatsby/M
+Gatun/M
+Gauguin/M
+Gaul/SM
+Gaulish
+Gauss/M
+Gaussian/M
+Gautama/M
+Gautier/M
+Gavin/M
+Gawain/M
+Gay/M
+Gayle/M
+Gaza/M
+Gaziantep/M
+Gd/M
+Gdansk/M
+Ge/M
+Geffen/M
+Gehenna/M
+Gehrig/M
+Geiger/M
+Gelbvieh/M
+Geller/M
+Gemini/MS
+Gen/M
+Gena/M
+Genaro/M
+Gene/M
+Genesis/M
+Genet/M
+Geneva/M
+Genevieve/M
+Genghis/M
+Genoa/SM
+Gentoo/M
+Gentry/M
+Geo/M
+Geoffrey/M
+George/MS
+Georgetown/M
+Georgette/M
+Georgia/M
+Georgian/MS
+Georgina/M
+Ger/M
+Gerald/M
+Geraldine/M
+Gerard/M
+Gerardo/M
+Gerber/M
+Gere/M
+Geritol/M
+German/MS
+Germanic/M
+Germany/M
+Geronimo/M
+Gerry/M
+Gershwin/M
+Gertrude/M
+Gestapo/SM
+Gethsemane/M
+Getty/M
+Gettysburg/M
+Gewurztraminer/M
+Ghana/M
+Ghanaian
+Ghats/M
+Ghazvanid/M
+Ghent/M
+Ghibelline/M
+Giacometti/M
+Giannini/M
+Giauque/M
+Gibbon/M
+Gibbs/M
+Gibraltar/MS
+Gibson/M
+Gide/M
+Gideon/M
+Gielgud/M
+Gienah/M
+Gil/M
+Gila/M
+Gilbert/M
+Gilberto/M
+Gilchrist/M
+Gilda/M
+Gilead/M
+Giles/M
+Gilgamesh/M
+Gill/M
+Gillespie/M
+Gillette/M
+Gilliam/M
+Gillian/M
+Gilligan/M
+Gilman
+Gilmore/M
+Gilroy/M
+Gina/M
+Ginger/M
+Gingrich/M
+Ginny/M
+Gino/M
+Ginsberg/M
+Ginsburg/M
+Ginsu/M
+Giorgione/M
+Giotto/M
+Giovanni/M
+Giraudoux/M
+Giselle/M
+Gish/M
+GitHub/M
+Giuliani/M
+Giuseppe/M
+Giza/M
+Gk
+Gladstone/MS
+Gladys/M
+Glaser/M
+Glasgow/M
+Glass/M
+Glastonbury/M
+Glaswegian/SM
+Glaxo/M
+Gleason/M
+Glen/M
+Glenda/M
+Glendale
+Glenlivet/M
+Glenn/M
+Glenna/M
+Gloria/M
+Gloucester/M
+Glover/M
+Gnostic/M
+Gnosticism/M
+GnuPG
+Goa/M
+Gobi/M
+God/M
+Godard/M
+Goddard/M
+Godel/M
+Godhead/M
+Godiva/M
+Godot/M
+Godspeed/SM
+Godthaab/M
+Godunov/M
+Godzilla/M
+Goebbels/M
+Goering/M
+Goethals/M
+Goethe/M
+Goff/M
+Gog/M
+Gogol/M
+Goiania/M
+Golan/M
+Golconda/M
+Golda/M
+Goldberg/M
+Golden/M
+Goldie/M
+Goldilocks/M
+Golding/M
+Goldman/M
+Goldsboro/M
+Goldsmith/M
+Goldwater/M
+Goldwyn/M
+Golgi/M
+Golgotha/M
+Goliath/M
+Gomez/M
+Gomorrah/M
+Gompers/M
+Gomulka/M
+Gondwanaland/M
+Gonzales/M
+Gonzalez/M
+Gonzalo/M
+Good/M
+Goodall/M
+Goode/M
+Goodman/M
+Goodrich/M
+Goodwill/M
+Goodwin/M
+Goodyear/M
+Google/M
+Goolagong/M
+Gopher
+Gorbachev/M
+Gordian/M
+Gordimer/M
+Gordon/M
+Gore/M
+Goren/M
+Gorey/M
+Gorgas/M
+Gorgon/M
+Gorgonzola/M
+Gorky/M
+Gospel/MS
+Goteborg/M
+Goth/M
+Gotham/M
+Gothic/MS
+Goths
+Gouda/SM
+Gould/M
+Gounod/M
+Governor
+Goya/M
+Gr/B
+Grable/M
+Gracchus/M
+Grace/M
+Graceland/M
+Gracie/M
+Graciela/M
+Grady/M
+Graffias/M
+Grafton/M
+Graham/M
+Grahame/M
+Grail/M
+Grammy/M
+Grampians/M
+Granada/M
+Grant/M
+Grass/M
+Graves/M
+Gray/M
+Grayslake/M
+Grecian/M
+Greece/M
+Greek/SM
+Greeley/M
+Green/SM
+Greene/M
+Greenland/M
+Greenlandic
+Greenpeace/M
+Greensboro/M
+Greensleeves/M
+Greenspan/M
+Greenville/M
+Greenwich/M
+Greer/M
+Greg/M
+Gregg/M
+Gregorian/M
+Gregorio/M
+Gregory/M
+Grenada/M
+Grenadian/MS
+Grenadines/M
+Grendel/M
+Grenoble/M
+Gresham/M
+Greta/M
+Gretchen/M
+Gretel/M
+Gretzky/M
+Grey/M
+Grieg/M
+Griffin/M
+Griffith/M
+Grimes/M
+Grimm/M
+Grinch/M
+Gris/M
+Gromyko/M
+Gropius/M
+Gross/M
+Grosz/M
+Grotius/M
+Grover/M
+Grozny
+Grumman/M
+Grundy/M
+Grunewald/M
+Grus/M
+Gruyere/SM
+Guadalajara/M
+Guadalcanal/M
+Guadalquivir/M
+Guadalupe/M
+Guadeloupe/M
+Guallatiri/M
+Guam/M
+Guamanian
+Guangdong/M
+Guangzhou/M
+Guantanamo/M
+Guarani/M
+Guarnieri/M
+Guatemala/M
+Guatemalan/MS
+Guayama/M
+Guayaquil/M
+Gucci/M
+Guelph/M
+Guernsey/MS
+Guerra/M
+Guerrero/M
+Guevara/M
+Guggenheim/M
+Guiana/M
+Guido
+Guillermo/M
+Guinea/M
+Guinean/MS
+Guinevere/M
+Guinness/M
+Guiyang/M
+Guizhou/M
+Guizot/M
+Gujarat/M
+Gujarati/M
+Gujranwala/M
+Gulfport/M
+Gullah/M
+Gulliver/M
+Gumbel/M
+Gunther/M
+Guofeng/M
+Gupta/M
+Gurkha/M
+Gus/M
+Gustav/M
+Gustavo/M
+Gustavus/M
+Gutenberg/M
+Guthrie/M
+Gutierrez/M
+Guy/M
+Guyana/M
+Guyanese/M
+Guzman/M
+Gwalior/M
+Gwen/M
+Gwendoline/M
+Gwendolyn/M
+Gwyn/M
+Gypsy/SM
+H/M
+HBO/M
+HBase/M
+HDD
+HDMI
+HDTV
+HF/M
+HHS
+HI
+HIV/M
+HM
+HMO/M
+HMS
+HOV
+HP/M
+HPV
+HQ/M
+HR
+HRH
+HS
+HSBC/M
+HST
+HT
+HTML/M
+HTTP
+HUD/M
+Ha/M
+Haas/M
+Habakkuk/M
+Haber/M
+Hadar/M
+Hades/M
+Hadoop/M
+Hadrian/M
+Hafiz/M
+Hagar/M
+Hagerstown/M
+Haggai/M
+Hagiographa/M
+Hague/M
+Hahn/M
+Haida/SM
+Haifa/M
+Hainan/M
+Haiphong/M
+Haiti/M
+Haitian/MS
+Hakka/M
+Hakluyt/M
+Hal/SM
+Haldane/M
+Hale/M
+Haleakala/M
+Haley/M
+Halifax/M
+Hall/M
+Halley/M
+Halliburton/M
+Hallie/M
+Hallmark/M
+Halloween/MS
+Hallstatt/M
+Halon/M
+Hals/M
+Halsey/M
+Ham/M
+Haman/M
+Hamburg/MS
+Hamhung/M
+Hamilcar/M
+Hamill/M
+Hamilton/M
+Hamiltonian/M
+Hamitic/M
+Hamlet/M
+Hamlin/M
+Hammarskjold/M
+Hammerstein/M
+Hammett/M
+Hammond/M
+Hammurabi/M
+Hampshire/M
+Hampton/M
+Hamsun/M
+Han/SM
+Hancock/M
+Handel/M
+Handy/M
+Haney/M
+Hanford/M
+Hangul/M
+Hangzhou/M
+Hank/M
+Hanna/M
+Hannah/M
+Hannibal/M
+Hanoi/M
+Hanover/M
+Hanoverian/M
+Hans/MN
+Hansel/M
+Hansen/M
+Hanson/M
+Hanuka
+Hanukkah/M
+Hanukkahs
+Hapsburg/M
+Harare/M
+Harbin/M
+Hardin/M
+Harding/M
+Hardy/M
+Hargreaves/M
+Harlan/M
+Harlem/M
+Harlequin/M
+Harley/M
+Harlingen/M
+Harlow/M
+Harmon/M
+Harold/M
+Harper/M
+Harpy/SM
+Harrell/M
+Harriet/M
+Harriett/M
+Harrington/M
+Harris/M
+Harrisburg/M
+Harrison/M
+Harrisonburg/M
+Harrods/M
+Harry/M
+Hart/M
+Harte/M
+Hartford/M
+Hartline/M
+Hartman/M
+Harvard/M
+Harvey/M
+Hasbro/M
+Hasidim/M
+Haskell/M
+Hastings/M
+Hatfield/M
+Hathaway/M
+Hatsheput/M
+Hatteras/M
+Hattie/M
+Hattiesburg/M
+Hauptmann/M
+Hausa/M
+Hausdorff/M
+Havana/MS
+Havarti/M
+Havel/M
+Havoline/M
+Haw
+Hawaii/M
+Hawaiian/SM
+Hawking/M
+Hawkins/M
+Hawks
+Hawthorne/M
+Hay/SM
+Hayden/M
+Haydn/M
+Hayek/M
+Hayes/M
+Haynes/M
+Hays/M
+Hayward/M
+Haywood/M
+Hayworth/M
+Hazel/M
+Hazleton/M
+Hazlitt/M
+He/M
+Head/M
+Hearst/M
+Heath/MR
+Heather/M
+Heaviside/M
+Heb
+Hebe/M
+Hebei/M
+Hebert/M
+Hebraic/M
+Hebraism/SM
+Hebrew/MS
+Hebrews/M
+Hebrides/M
+Hecate/M
+Hector/M
+Hecuba/M
+Heep/M
+Hefner/M
+Hegel/M
+Hegelian/M
+Hegira/M
+Heidegger/M
+Heidelberg/M
+Heidi/M
+Heifetz/M
+Heilongjiang/M
+Heimlich/M
+Heine/M
+Heineken/M
+Heinlein/M
+Heinrich/M
+Heinz/M
+Heisenberg/M
+Heisman/M
+Helen/M
+Helena/M
+Helene/M
+Helga/M
+Helicobacter
+Helicon/M
+Heliopolis/M
+Helios/M
+Hellene/SM
+Hellenic/M
+Hellenism/MS
+Hellenist
+Hellenistic/M
+Hellenization/M
+Hellenize/M
+Heller/M
+Hellespont/M
+Hellman/M
+Helmholtz/M
+Heloise/M
+Helsinki/M
+Helvetian
+Helvetius/M
+Hemet/M
+Hemingway/M
+Henan/M
+Hench/M
+Henderson/M
+Hendrick/MS
+Hendricks/M
+Hendrix/M
+Henley/M
+Hennessy/M
+Henri/M
+Henrietta/M
+Henrik/M
+Henry/M
+Hensley/M
+Henson/M
+Hepburn/M
+Hephaestus/M
+Hepplewhite/M
+Hera/M
+Heracles/M
+Heraclitus/M
+Herakles/M
+Herbart/M
+Herbert/M
+Herculaneum/M
+Herculean
+Hercules/M
+Herder/M
+Hereford/SM
+Herero/M
+Heriberto/M
+Herman/M
+Hermaphroditus/M
+Hermes/M
+Herminia/M
+Hermitage/M
+Hermite/M
+Hermosillo/M
+Hernandez/M
+Herod/M
+Herodotus/M
+Heroku/M
+Herr/MG
+Herrera/M
+Herrick/M
+Herring/M
+Herschel/M
+Hersey/M
+Hershel/M
+Hershey/M
+Hertz/M
+Hertzsprung/M
+Herzegovina/M
+Herzl/M
+Heshvan/M
+Hesiod/M
+Hesperia/M
+Hesperus/M
+Hess/M
+Hesse/M
+Hessian/M
+Hester/M
+Heston/M
+Hettie/M
+Hewitt/M
+Hewlett/M
+Heyerdahl/M
+Heywood/M
+Hezbollah/M
+Hezekiah/M
+Hf/M
+Hg/M
+Hialeah/M
+Hiawatha/M
+Hibernia/M
+Hibernian
+Hickman/M
+Hickok/M
+Hickory/M
+Hicks/M
+Hieronymus/M
+Higashiosaka
+Higgins/M
+Highlander/SM
+Highlands
+Highness/M
+Hightstown/M
+Hilario/M
+Hilary/M
+Hilbert/M
+Hilda/M
+Hildebrand/M
+Hilfiger/M
+Hill/M
+Hillary/M
+Hillel/M
+Hilton/M
+Himalaya/SM
+Himalayan
+Himalayas/M
+Himmler/M
+Hinayana/M
+Hindemith/M
+Hindenburg/M
+Hindi/M
+Hindu/SM
+Hinduism/SM
+Hindustan/M
+Hindustani/SM
+Hines/M
+Hinesville/M
+Hinton/M
+Hipparchus/M
+Hippocrates/M
+Hippocratic/M
+Hiram/M
+Hirobumi/M
+Hirohito/M
+Hiroshima/M
+Hispanic/SM
+Hispaniola/M
+Hiss/M
+Hitachi/M
+Hitchcock/M
+Hitler/MS
+Hittite/SM
+Hmong/M
+Ho/M
+Hobart/M
+Hobbes/M
+Hobbs/M
+Hockney/M
+Hodge/SM
+Hodges/M
+Hodgkin/M
+Hoff/M
+Hoffa/M
+Hoffman/M
+Hofstadter/M
+Hogan/M
+Hogarth/M
+Hogwarts/M
+Hohenlohe/M
+Hohenstaufen/M
+Hohenzollern/M
+Hohhot/M
+Hohokam/M
+Hokkaido/M
+Hokusai/M
+Holbein/M
+Holcomb/M
+Holden/M
+Holder/M
+Holiday/M
+Holiness
+Holland/ZSMR
+Hollander/M
+Hollerith/M
+Holley/M
+Hollie/M
+Hollis/M
+Holloway/M
+Holly/M
+Hollywood/M
+Holman/M
+Holmes/M
+Holocaust/M
+Holocene/M
+Holst/M
+Holstein/SM
+Holt/M
+Homer/M
+Homeric/M
+Hon
+Honda/M
+Honduran/MS
+Honduras/M
+Honecker/M
+Honeywell/M
+Hong
+Honiara/M
+Honolulu/M
+Honorable
+Honshu/M
+Hood/M
+Hooke/RM
+Hooker/M
+Hooper/M
+Hoosier/MS
+Hooters/M
+Hoover/MS
+Hope/M
+Hopewell/M
+Hopi/SM
+Hopkins/M
+Hopper/M
+Horace/M
+Horacio/M
+Horatio/M
+Hormel/M
+Hormuz/M
+Horn/M
+Hornblower/M
+Horne/M
+Horowitz/M
+Horthy/M
+Horton/M
+Horus/M
+Hosea/M
+Host/SM
+Hotpoint/M
+Hottentot/SM
+Houdini/M
+Houma/M
+House/M
+Housman/M
+Houston/M
+Houyhnhnm/M
+Hovhaness/M
+Howard/M
+Howe/M
+Howell/MS
+Howells/M
+Howrah
+Hoyle/M
+Hrothgar/M
+Hts
+Huang/M
+Hubbard/M
+Hubble/M
+Hubei/M
+Huber/M
+Hubert/M
+Huck/M
+Huddersfield
+Hudson/M
+Huerta/M
+Huey/M
+Huff/M
+Huffman/M
+Huggins/M
+Hugh/MS
+Hughes/M
+Hugo/M
+Huguenot/MS
+Hui/M
+Huitzilopotchli/M
+Hull/M
+Humberto/M
+Humboldt/M
+Hume/M
+Hummel/M
+Hummer/M
+Humphrey/SM
+Humvee/M
+Hun/SM
+Hunan/M
+Hung/M
+Hungarian/SM
+Hungary/M
+Hunspell/M
+Hunt/MR
+Hunter/M
+Huntington/M
+Huntley/M
+Huntsville/M
+Hurd/M
+Hurley/M
+Huron/M
+Hurst/M
+Hus/M
+Hussein/M
+Husserl/M
+Hussite/M
+Huston/M
+Hutchinson/M
+Hutton/M
+Hutu/M
+Huxley/M
+Huygens/M
+Hyades/M
+Hyde/M
+Hyderabad/M
+Hydra/M
+Hymen/M
+Hyperion/M
+Hyundai/M
+Hz/M
+I'd
+I'll
+I'm
+I've
+I/M
+IA
+IBM/M
+ICBM/SM
+ICC
+ICU
+ID/SM
+IDE
+IE
+IED
+IEEE
+IKEA/M
+IL
+IMF/M
+IMHO
+IMNSHO
+IMO
+IN
+ING/M
+INRI
+INS
+IOU/M
+IP
+IPA
+IPO
+IQ/M
+IRA/SM
+IRC
+IRS/M
+ISBN
+ISIS
+ISO/M
+ISP
+ISS
+IT
+IUD
+IV/SM
+IVF
+Ia
+Iaccoca/M
+Iago/M
+Ian/M
+Iapetus/M
+Ibadan/M
+Iberia/M
+Iberian/M
+Ibiza/M
+Iblis/M
+Ibo/M
+Ibsen/M
+Icahn/M
+Icarus/M
+Ice
+Iceland/MRZ
+Icelander/M
+Icelandic/M
+Ida/M
+Idaho/SM
+Idahoan/MS
+Idahoes
+Ieyasu/M
+Ignacio/M
+Ignatius/M
+Igor/M
+Iguassu/M
+Ijsselmeer/M
+Ike/M
+Ikhnaton/M
+Ila/M
+Ilene/M
+Iliad/SM
+Ill
+Illinois/M
+Illinoisan/MS
+Illuminati/M
+Ilyushin/M
+Imelda/M
+Imhotep/M
+Imodium/M
+Imogene/M
+Imus/M
+In/M
+Ina/M
+Inc
+Inca/SM
+Inchon/M
+Incorporated
+Ind
+Independence/M
+India/M
+Indian/MS
+Indiana/M
+Indianan/SM
+Indianapolis/M
+Indianian
+Indies/M
+Indio/M
+Indira/M
+Indochina/M
+Indochinese/M
+Indonesia/M
+Indonesian/SM
+Indore/M
+Indra/M
+Indus/M
+Indy/SM
+Ines/M
+Inez/M
+Inge/M
+Inglewood
+Ingram/M
+Ingres/M
+Ingrid/M
+Innocent/M
+Innsbruck
+Inonu/M
+Inquisition/M
+Inst
+Instagram/M
+Instamatic/M
+Intel/M
+Intelsat/M
+Internationale/M
+Internet/SM
+Interpol/M
+Inuit/MS
+Inuktitut/M
+Invar/M
+Io/M
+Ionesco/M
+Ionian/MS
+Ionic/SM
+Iowa/SM
+Iowan/MS
+Iphigenia/M
+Ipswich
+Iqaluit/M
+Iqbal/M
+Iquitos/M
+Ir/M
+Ira/M
+Iran/M
+Iranian/SM
+Iraq/M
+Iraqi/MS
+Ireland/M
+Irene/M
+Iris/M
+Irish/MR
+Irishman/M
+Irishmen/M
+Irishwoman/M
+Irishwomen/M
+Irkutsk/M
+Irma/M
+Iroquoian/SM
+Iroquois/M
+Irrawaddy/M
+Irtish/M
+Irvin/M
+Irvine/M
+Irving/M
+Irwin/M
+Isaac/M
+Isabel/M
+Isabela/M
+Isabella/M
+Isabelle/M
+Isaiah/M
+Iscariot/M
+Isfahan/M
+Isherwood/M
+Ishim/M
+Ishmael/M
+Ishtar/M
+Isiah/M
+Isidro/M
+Isis/M
+Islam/MS
+Islamabad/M
+Islamic/M
+Islamism/M
+Islamist/M
+Islamophobia
+Islamophobic
+Ismael/M
+Ismail/M
+Isolde/M
+Ispell/M
+Israel/SM
+Israeli/SM
+Israelite/M
+Issac/M
+Issachar/M
+Istanbul/M
+Isuzu/M
+It
+Itaipu/M
+Ital
+Italian/SM
+Italianate
+Italy/M
+Itasca/M
+Ithaca/M
+Ithacan/M
+Ito/M
+Iva/M
+Ivan/M
+Ivanhoe/M
+Ives/M
+Ivorian
+Ivory/M
+Ivy/M
+Iyar/M
+Izaak/M
+Izanagi/M
+Izanami/M
+Izhevsk/M
+Izmir/M
+Izod/M
+Izvestia/M
+J/MD
+JCS
+JD
+JFK/M
+JP
+JPEG
+JV
+Jack/M
+Jackie/M
+Jacklyn/M
+Jackson/M
+Jacksonian/M
+Jacksonville/M
+Jacky/M
+Jaclyn/M
+Jacob/SM
+Jacobean/M
+Jacobi/M
+Jacobin/M
+Jacobite/M
+Jacobs/M
+Jacobson/M
+Jacquard/M
+Jacqueline/M
+Jacquelyn/M
+Jacques/M
+Jacuzzi/M
+Jagger/M
+Jagiellon/M
+Jaguar/M
+Jahangir/M
+Jaime/M
+Jain/M
+Jainism/M
+Jaipur/M
+Jakarta/M
+Jake/M
+Jamaal/M
+Jamaica/M
+Jamaican/SM
+Jamal/M
+Jamar/M
+Jame/SM
+Jamel/M
+James/M
+Jamestown/M
+Jami/M
+Jamie/M
+Jan/M
+Jana/M
+Janacek/M
+Jane/M
+Janell/M
+Janelle/M
+Janesville/M
+Janet/M
+Janette/M
+Janice/M
+Janie/M
+Janine/M
+Janis/M
+Janissary/M
+Janjaweed/M
+Janna/M
+Jannie/M
+Jansen/M
+Jansenist/M
+January/SM
+Janus/M
+Jap/SM
+Japan/M
+Japanese/MS
+Japura/M
+Jared/M
+Jarlsberg/M
+Jarred/M
+Jarrett/M
+Jarrod/M
+Jarvis/M
+Jasmine/M
+Jason/M
+Jasper/M
+Jataka/M
+Java/SM
+JavaScript/M
+Javanese/M
+Javier/M
+Jaxartes/M
+Jay/M
+Jayapura/M
+Jayawardene/M
+Jaycee/MS
+Jaycees/M
+Jayne/M
+Jayson/M
+Jean/M
+Jeanette/M
+Jeanie/M
+Jeanine/M
+Jeanne/M
+Jeannette/M
+Jeannie/M
+Jeannine/M
+Jed/M
+Jedi/M
+Jeep/M
+Jeeves/M
+Jeff/M
+Jefferey/M
+Jefferson/M
+Jeffersonian/M
+Jeffery/M
+Jeffrey/M
+Jeffry/M
+Jehoshaphat/M
+Jehovah/M
+Jekyll/M
+Jenifer/M
+Jenkins/M
+Jenna/M
+Jenner/M
+Jennie/M
+Jennifer/M
+Jennings/M
+Jenny/M
+Jensen/M
+Jephthah/M
+Jerald/M
+Jeremiah/M
+Jeremiahs
+Jeremy/M
+Jeri/M
+Jericho/M
+Jermaine/M
+Jeroboam/M
+Jerold/M
+Jerome/M
+Jerri/M
+Jerrod/M
+Jerrold/M
+Jerry/M
+Jersey/MS
+Jerusalem/M
+Jess/M
+Jesse/M
+Jessica/M
+Jessie/M
+Jesuit/MS
+Jesus/M
+Jetway/M
+Jew/SM
+Jewel/M
+Jewell/M
+Jewess/MS
+Jewish/PM
+Jewry/M
+Jezebel/SM
+Jiangsu/M
+Jiangxi/M
+Jidda/M
+Jilin/M
+Jill/M
+Jillian/M
+Jim/M
+Jimenez/M
+Jimmie/M
+Jimmy/M
+Jinan/M
+Jinnah/M
+Jinny/M
+Jivaro/M
+Jo/M
+Joan/M
+Joann/M
+Joanna/M
+Joanne/M
+Joaquin/M
+Job/SM
+Jobs/M
+Jocasta/M
+Jocelyn/M
+Jock/M
+Jockey/M
+Jodi/M
+Jodie/M
+Jody/M
+Joe/M
+Joel/M
+Joey/M
+Jogjakarta/M
+Johann/M
+Johanna/M
+Johannes/M
+Johannesburg/M
+John/SM
+Johnathan/M
+Johnathon/M
+Johnie/M
+Johnnie/M
+Johnny/M
+Johns/M
+Johnson/M
+Johnston/M
+Johnstown/M
+Jolene/M
+Jolson/M
+Jon/M
+Jonah/M
+Jonahs
+Jonas/M
+Jonathan/M
+Jonathon/M
+Jones/M
+Jonesboro/M
+Joni/M
+Jonson/M
+Joplin/M
+Jordan/M
+Jordanian/MS
+Jorge/M
+Jose/M
+Josef/M
+Josefa/M
+Josefina/M
+Joseph/M
+Josephine/M
+Josephs
+Josephson/M
+Josephus/M
+Josh/M
+Joshua/M
+Josiah/M
+Josie/M
+Josue/M
+Joule/M
+Jove/M
+Jovian/M
+Joy/M
+Joyce/M
+Joycean/M
+Joyner/M
+Jpn
+Jr/M
+Juan/M
+Juana/M
+Juanita/M
+Juarez/M
+Jubal/M
+Judaeo
+Judah/M
+Judaic
+Judaical
+Judaism/MS
+Judas/MS
+Judd/M
+Jude/M
+Judea/M
+Judges
+Judith/M
+Judson/M
+Judy/M
+Juggernaut/M
+Jul
+Jules/M
+Julia/M
+Julian/M
+Juliana/M
+Julianne/M
+Julie/M
+Juliet/M
+Juliette/M
+Julio/M
+Julius/M
+Julliard/M
+July/SM
+Jun/M
+June/SM
+Juneau/M
+Jung/M
+Jungfrau/M
+Jungian/M
+Junior/SM
+Junker/SM
+Juno/M
+Jupiter/M
+Jurassic/M
+Jurua/M
+Justice/M
+Justin/M
+Justine/M
+Justinian/M
+Jutland/M
+Juvenal/M
+K/SMNGJ
+KB/M
+KC
+KFC/M
+KGB/M
+KIA
+KKK/M
+KO/M
+KP
+KS
+KY
+Kaaba/M
+Kabul/M
+Kafka/M
+Kafkaesque/M
+Kagoshima/M
+Kahlua/M
+Kahului/M
+Kaifeng/M
+Kailua/M
+Kaiser/MS
+Kaitlin/M
+Kalahari/M
+Kalamazoo/M
+Kalashnikov/M
+Kalb/M
+Kalevala/M
+Kalgoorlie/M
+Kali/M
+Kalmyk/M
+Kama/M
+Kamchatka/M
+Kamehameha/M
+Kampala/M
+Kampuchea/M
+Kan/SM
+Kanchenjunga/M
+Kandahar/M
+Kandinsky/M
+Kane/M
+Kaneohe/M
+Kankakee/M
+Kannada/M
+Kano/M
+Kanpur/M
+Kansan/MS
+Kansas/M
+Kant/M
+Kantian/M
+Kaohsiung/M
+Kaposi/M
+Kara/M
+Karachi/M
+Karaganda/M
+Karakorum/M
+Karamazov/M
+Kareem/M
+Karen/M
+Karenina/M
+Kari/M
+Karin/M
+Karina/M
+Karl/M
+Karla/M
+Karloff/M
+Karo/M
+Karol/M
+Karroo/M
+Karyn/M
+Kasai/M
+Kasey/M
+Kashmir/SM
+Kasparov/M
+Kate/M
+Katelyn/M
+Katharine/M
+Katherine/M
+Katheryn/M
+Kathiawar/M
+Kathie/M
+Kathleen/M
+Kathmandu/M
+Kathrine/M
+Kathryn/M
+Kathy/M
+Katie/M
+Katina/M
+Katmai/M
+Katowice/M
+Katrina/M
+Katy/M
+Kauai/M
+Kaufman/M
+Kaunas/M
+Kaunda/M
+Kawabata/M
+Kawasaki/M
+Kay/M
+Kaye/M
+Kayla/M
+Kazakh/M
+Kazakhs
+Kazakhstan/M
+Kazan/M
+Kazantzakis/M
+Kb/M
+Keaton/M
+Keats/M
+Keck/M
+Keenan/M
+Keewatin/M
+Keillor/M
+Keisha/M
+Keith/M
+Keller/M
+Kelley/M
+Kelli/M
+Kellie/M
+Kellogg/M
+Kelly/M
+Kelsey/M
+Kelvin/M
+Kemerovo/M
+Kemp/M
+Kempis/M
+Ken/M
+Kendall/M
+Kendra/M
+Kendrick/M
+Kenmore/M
+Kennan/M
+Kennedy/M
+Kenneth/M
+Kennewick/M
+Kennith/M
+Kenny/M
+Kenosha/M
+Kent/M
+Kenton/M
+Kentuckian/MS
+Kentucky/M
+Kenya/M
+Kenyan/SM
+Kenyatta/M
+Kenyon/M
+Keogh/M
+Keokuk/M
+Kepler/M
+Kerensky/M
+Keri/M
+Kermit/M
+Kern/M
+Kerouac/M
+Kerr/M
+Kerri/M
+Kerry/M
+Kettering/M
+Keven/M
+Kevin/M
+Kevlar/M
+Kevorkian/M
+Kewpie/M
+Key/M
+Keynes/M
+Keynesian/M
+Khabarovsk/M
+Khachaturian/M
+Khalid/M
+Khan/M
+Kharkov/M
+Khartoum/M
+Khayyam/M
+Khazar/M
+Khmer/M
+Khoikhoi/M
+Khoisan/M
+Khomeini/M
+Khorana/M
+Khrushchev/M
+Khufu/M
+Khulna/M
+Khwarizmi/M
+Khyber/M
+Kickapoo/M
+Kidd/M
+Kiel/M
+Kierkegaard/M
+Kieth/M
+Kiev/M
+Kigali/M
+Kikuyu/M
+Kilauea/M
+Kilimanjaro/M
+Killeen/M
+Kilroy/M
+Kim/M
+Kimberley/M
+Kimberly/M
+King/M
+Kingsport/M
+Kingston/M
+Kingstown/M
+Kinko's
+Kinney/M
+Kinsey/M
+Kinshasa/M
+Kiowa/MS
+Kip/M
+Kipling/M
+Kirby/M
+Kirchhoff/M
+Kirchner/M
+Kirghistan/M
+Kirghiz/M
+Kirghizia/M
+Kiribati/M
+Kirinyaga/M
+Kirk/M
+Kirkland/M
+Kirkpatrick/M
+Kirov/M
+Kirsten/M
+Kisangani/M
+Kishinev/M
+Kislev/M
+Kissimmee/M
+Kissinger/M
+Kit/M
+Kitakyushu/M
+Kitchener/M
+Kitty/M
+Kiwanis/M
+Klan/M
+Klansman/M
+Klaus/M
+Klee/M
+Kleenex/MS
+Klein/M
+Klimt/M
+Kline/M
+Klingon/M
+Klondike/MS
+Kmart/M
+Knapp/M
+Knesset/M
+Kngwarreye/M
+Knickerbocker/M
+Knievel/M
+Knight/M
+Knopf/M
+Knossos/M
+Knowles/M
+Knox/M
+Knoxville/M
+Knudsen/M
+Knuth/M
+Knuths
+Kobe/M
+Koch/M
+Kochab/M
+Kodachrome/M
+Kodak/M
+Kodaly/M
+Kodiak/M
+Koestler/M
+Kohinoor/M
+Kohl/M
+Koizumi/M
+Kojak/M
+Kokomo/M
+Kolyma/M
+Kommunizma/M
+Kong/M
+Kongo/M
+Konrad/M
+Koontz/M
+Koppel/M
+Korea/M
+Korean/SM
+Kornberg/M
+Kory/M
+Korzybski/M
+Kosciusko/M
+Kossuth/M
+Kosygin/M
+Kotlin/M
+Koufax/M
+Kowloon/M
+Kr/M
+Kraft/M
+Krakatoa/M
+Krakow/M
+Kramer/M
+Krasnodar/M
+Krasnoyarsk/M
+Krebs/M
+Kremlin/M
+Kremlinologist
+Kremlinology
+Kresge/M
+Kringle/M
+Kris/M
+Krishna/M
+Krishnamurti/M
+Krista/M
+Kristen/M
+Kristi/M
+Kristie/M
+Kristin/M
+Kristina/M
+Kristine/M
+Kristopher/M
+Kristy/M
+Kroc/M
+Kroger/M
+Kronecker/M
+Kropotkin/M
+Kruger/M
+Krugerrand/M
+Krupp/M
+Krystal/M
+Kshatriya/M
+Kublai/M
+Kubrick/M
+Kuhn/M
+Kuibyshev/M
+Kulthumm/M
+Kunming/M
+Kuomintang/M
+Kurd/M
+Kurdish/M
+Kurdistan/M
+Kurosawa/M
+Kurt/M
+Kurtis/M
+Kusch/M
+Kutuzov/M
+Kuwait/M
+Kuwaiti/SM
+Kuznets/M
+Kuznetsk/M
+Kwakiutl/M
+Kwan/M
+Kwangju/M
+Kwanzaa/MS
+Ky/MH
+Kyle/M
+Kyoto/M
+Kyrgyzstan/M
+Kyushu/M
+L'Amour/M
+L'Enfant
+L'Oreal/M
+L'Ouverture/M
+L/MN
+LA
+LAN/M
+LBJ/M
+LC
+LCD/M
+LCM
+LDC
+LED/M
+LG/M
+LGBT
+LIFO
+LL
+LLB/M
+LLD/M
+LNG
+LOGO
+LP/M
+LPG
+LPN/SM
+LSAT
+LSD/M
+LVN
+La/SM
+Lab
+Laban/M
+Labrador/SM
+Labradorean
+Lacey/M
+Lachesis/M
+Lactobacillus
+Lacy/M
+Ladoga/M
+Ladonna/M
+Lady/M
+Ladyship/MS
+Lafayette/M
+Lafitte/M
+Lagos/M
+Lagrange/M
+Lagrangian/M
+Lahore/M
+Laius/M
+Lajos/M
+Lakeisha/M
+Lakeland/M
+Lakewood
+Lakisha/M
+Lakota/M
+Lakshmi/M
+Lamaism/SM
+Lamar/M
+Lamarck/M
+Lamaze/M
+Lamb/M
+Lambert/M
+Lamborghini/M
+Lambrusco/M
+Lamentations
+Lamont/M
+Lana/M
+Lanai/M
+Lancashire/M
+Lancaster/M
+Lance/M
+Lancelot/M
+Land/M
+Landon/M
+Landry/M
+Landsat/M
+Landsteiner/M
+Lane/M
+Lang/M
+Langerhans/M
+Langland/M
+Langley/M
+Langmuir/M
+Lanka/M
+Lankan/M
+Lanny/M
+Lansing/M
+Lanzhou/M
+Lao/SM
+Laocoon/M
+Laos/M
+Laotian/SM
+Laplace/M
+Laplacian
+Lapland/MR
+Lapp/SM
+Lara/M
+Laramie/M
+Lardner/M
+Laredo/M
+Larousse/M
+Larry/M
+Lars/MN
+Larsen/M
+Larson/M
+Lascaux/M
+Lassa/M
+Lassen/M
+Lassie/M
+Lat/M
+Latasha/M
+Lateran/M
+Latham/M
+Latin/MRS
+Latina
+Latino/SM
+Latinx
+Latisha/M
+Latonya/M
+Latoya/M
+Latrobe/M
+Latvia/M
+Latvian/MS
+Laud/MR
+Lauder/M
+Laue/M
+Laundromat/M
+Laura/M
+Laurasia/M
+Laurel/M
+Lauren/M
+Laurence/M
+Laurent/M
+Lauri/M
+Laurie/M
+Laval/M
+Lavern/M
+Laverne/M
+Lavoisier/M
+Lavonne/M
+Lawanda/M
+Lawrence/M
+Lawson/M
+Lawton/M
+Layamon/M
+Layla/M
+Layton/M
+Lazaro/M
+Lazarus/M
+Le/SM
+Lea/M
+Leach/M
+Leadbelly/M
+Leah/M
+Leakey/M
+Lean/M
+Leander/M
+Leann/M
+Leanna/M
+Leanne/M
+Lear/M
+Learjet/M
+Leary/M
+Leavenworth/M
+Lebanese/M
+Lebanon/M
+Lebesgue/M
+Leblanc/M
+Leda/M
+Lederberg/M
+Lee/M
+Leeds/M
+Leesburg/M
+Leeuwenhoek/M
+Leeward/M
+Left
+Legendre/M
+Leger/M
+Leghorn/M
+Lego/M
+Legree/M
+Lehman/M
+Leibniz/M
+Leicester/SM
+Leiden/M
+Leif/M
+Leigh/M
+Leila/M
+Leipzig/M
+Lela/M
+Leland/M
+Lelia/M
+Lemaitre/M
+Lemuel/M
+Lemuria/M
+Len/M
+Lena/M
+Lenard/M
+Lenin/M
+Leningrad/M
+Leninism/M
+Leninist/M
+Lennon/M
+Lenny/M
+Leno/M
+Lenoir/M
+Lenora/M
+Lenore/M
+Lent/SMN
+Lenten/M
+Leo/SM
+Leola/M
+Leominster/M
+Leon/M
+Leona/M
+Leonard/M
+Leonardo/M
+Leoncavallo/M
+Leonel/M
+Leonid/M
+Leonidas/M
+Leonor/M
+Leopold/M
+Leopoldo/M
+Lepidus/M
+Lepke/M
+Lepus/M
+Lerner/M
+Leroy/M
+Les/M
+Lesa/M
+Lesley/M
+Leslie/M
+Lesotho/M
+Lesseps/M
+Lessie/M
+Lester/M
+Lestrade/M
+Leta/M
+Letha/M
+Lethe/M
+Leticia/M
+Letitia/M
+Letterman/M
+Levant/M
+Levesque/M
+Levi/SM
+Leviathan/M
+Levine/M
+Leviticus/M
+Levitt/M
+Levy/M
+Lew/M
+Lewinsky/M
+Lewis/M
+Lewiston/M
+Lewisville/M
+Lexington/M
+Lexus/M
+Lhasa/MS
+Lhotse/M
+Li/MY
+Liaoning/M
+Libby/M
+Liberace/M
+Liberal
+Liberia/M
+Liberian/SM
+Libra/MS
+LibreOffice/M
+Libreville/M
+Librium/M
+Libya/M
+Libyan/SM
+Lichtenstein/M
+Lidia/M
+Lie/M
+Lieberman/M
+Liebfraumilch/M
+Liechtenstein/ZMR
+Liechtensteiner/M
+Liege/M
+Lieut
+Lila/M
+Lilia/M
+Lilian/M
+Liliana/M
+Lilith/M
+Liliuokalani/M
+Lille/M
+Lillian/M
+Lillie/M
+Lilliput/M
+Lilliputian/MS
+Lilly/M
+Lilongwe/M
+Lily/M
+Lima/M
+Limbaugh/M
+Limbo
+Limburger/M
+Limoges/M
+Limousin/M
+Limpopo/M
+Lin/M
+Lina/M
+Lincoln/MS
+Lind/M
+Linda/M
+Lindbergh/M
+Lindsay/M
+Lindsey/M
+Lindy/M
+Linnaeus/M
+Linotype/M
+Linton/M
+Linus/M
+Linux/MS
+Linwood/M
+Lionel/M
+Lipizzaner/M
+Lippi/M
+Lippmann/M
+Lipscomb/M
+Lipton/M
+Lisa/M
+Lisbon/M
+Lissajous/M
+Lister/M
+Listerine/M
+Liston/M
+Liszt/M
+Lithuania/M
+Lithuanian/MS
+Little/M
+Litton/M
+Livermore/M
+Liverpool/M
+Liverpudlian/SM
+Livia/M
+Livingston/M
+Livingstone/M
+Livonia/M
+Livy/M
+Liz/M
+Liza/M
+Lizzie/M
+Lizzy/M
+Ljubljana/M
+Llewellyn/M
+Lloyd/M
+Ln
+Loafer/SM
+Lobachevsky/M
+Lochinvar/M
+Locke/M
+Lockean/M
+Lockheed/M
+Lockwood/M
+Lodge/M
+Lodi/M
+Lodz/M
+Loewe/M
+Loewi/M
+Loews/M
+Logan/M
+Lohengrin/M
+Loire/M
+Lois/M
+Loki/M
+Lola/M
+Lolita/M
+Lollard/M
+Lollobrigida/M
+Lombard/M
+Lombardi/M
+Lombardy/M
+Lome/M
+Lompoc/M
+Lon/M
+London/MRZ
+Londoner/M
+Long/M
+Longfellow/M
+Longmont/M
+Longstreet/M
+Longueuil
+Longview/M
+Lonnie/M
+Lopez/M
+Lora/M
+Lorain/M
+Loraine/M
+Lord/SM
+Lordship/SM
+Lorelei/M
+Loren/M
+Lorena/M
+Lorene/M
+Lorentz/M
+Lorentzian
+Lorenz/M
+Lorenzo/M
+Loretta/M
+Lori/M
+Lorie/M
+Lorna/M
+Lorraine/M
+Lorre/M
+Lorrie/M
+Los
+Lot/M
+Lothario/SM
+Lott/M
+Lottie/M
+Lou/M
+Louella/M
+Louie/M
+Louis/M
+Louisa/M
+Louise/M
+Louisiana/M
+Louisianan/MS
+Louisianian/MS
+Louisville/M
+Lourdes/M
+Louvre/M
+Love/M
+Lovecraft/M
+Lovelace/M
+Lowe/M
+Lowell/M
+Lowenbrau/M
+Lowery/M
+Lowlands
+Loyang/M
+Loyd/M
+Loyola/M
+Lr
+Lt
+Ltd
+Lu/M
+Luanda/M
+Luann/M
+Lubavitcher/M
+Lubbock/M
+Lubumbashi/M
+Lucas/M
+Luce/M
+Lucia/M
+Lucian/M
+Luciano/M
+Lucien/M
+Lucifer/M
+Lucile/M
+Lucille/M
+Lucinda/M
+Lucio/M
+Lucite/SM
+Lucius/M
+Lucknow/M
+Lucretia/M
+Lucretius/M
+Lucy/M
+Luddite/MS
+Ludhiana/M
+Ludwig/M
+Luella/M
+Lufthansa/M
+Luftwaffe/M
+Luger/M
+Lugosi/M
+Luigi/M
+Luis/M
+Luisa/M
+Luke/M
+Lula/M
+Lully/M
+Lulu/M
+Lumiere/M
+Luna/M
+Lupe/M
+Lupercalia/M
+Lupus/M
+Luria/M
+Lusaka/M
+Lusitania/M
+Luther/M
+Lutheran/SM
+Lutheranism/MS
+Luvs/M
+Luxembourg/ZMR
+Luxembourger/M
+Luxembourgian
+Luz/M
+Luzon/M
+Lvov/M
+LyX/M
+Lyallpur
+Lycra/M
+Lycurgus/M
+Lydia/M
+Lydian/SM
+Lyell/M
+Lyle/M
+Lyly/M
+Lyman/M
+Lyme/M
+Lynch/M
+Lynchburg/M
+Lynda/M
+Lyndon/M
+Lynette/M
+Lynn/M
+Lynne/M
+Lynnette/M
+Lyon/SM
+Lyons/M
+Lyra/M
+Lysenko/M
+Lysistrata/M
+Lysol/M
+M/SMGB
+MA/M
+MASH
+MB/M
+MBA/M
+MC
+MCI/M
+MD/M
+MDT
+ME
+MEGO/S
+MFA/M
+MGM/M
+MHz
+MI/M
+MIA
+MIDI/M
+MIPS
+MIRV
+MIT/M
+MM
+MN
+MO
+MOOC
+MP/M
+MPEG
+MRI/M
+MS/M
+MSG/M
+MST/M
+MSW
+MT/M
+MTV/M
+MVP/M
+MW
+Maalox/M
+Mabel/M
+Mable/M
+Mac/M
+MacArthur/M
+MacBride/M
+MacDonald/M
+MacLeish/M
+Macao/M
+Macaulay/M
+Macbeth/M
+Maccabees
+Maccabeus/M
+Mace/M
+Macedon/M
+Macedonia/M
+Macedonian/SM
+Mach/M
+Machiavelli/M
+Machiavellian/M
+Macias/M
+Macintosh/M
+Mack/M
+Mackenzie/M
+Mackinac/M
+Mackinaw/M
+Macmillan/M
+Macon/M
+Macumba/M
+Macy/M
+Madagascan/SM
+Madagascar/M
+Madam
+Madden/M
+Maddox/M
+Madeira/SM
+Madeleine/M
+Madeline/M
+Madelyn/M
+Madera/M
+Madge/M
+Madison/M
+Madonna/SM
+Madras/M
+Madrid/M
+Madurai/M
+Mae/M
+Maeterlinck/M
+Mafia/MS
+Mafioso/M
+Magdalena/M
+Magdalene/M
+Magellan/M
+Magellanic/M
+Maggie/M
+Maghreb/M
+Magi
+Maginot/M
+Magnificat
+Magnitogorsk/M
+Magog/M
+Magoo/M
+Magritte/M
+Magsaysay/M
+Magus
+Magyar/SM
+Mahabharata/M
+Maharashtra/M
+Mahavira/M
+Mahayana/M
+Mahayanist/M
+Mahdi/M
+Mahfouz/M
+Mahican/SM
+Mahler/M
+Mai/M
+Maidenform/M
+Maigret/M
+Mailer/M
+Maillol/M
+Maiman/M
+Maimonides/M
+Maine/MZR
+Mainer/M
+Maisie/M
+Maitreya/M
+Maj
+Majesty
+Major/M
+Majorca/M
+Majuro/M
+Makarios/M
+Maker/M
+Malabar/M
+Malabo/M
+Malacca/M
+Malachi/M
+Malagasy/M
+Malamud/M
+Malaprop/M
+Malawi/M
+Malawian/SM
+Malay/MS
+Malaya/M
+Malayalam/M
+Malayan/MS
+Malaysia/M
+Malaysian/MS
+Malcolm/M
+Maldive/MS
+Maldives/M
+Maldivian/MS
+Maldonado/M
+Male/M
+Mali/M
+Malian/SM
+Malibu/M
+Malinda/M
+Malinowski/M
+Mallarme/M
+Mallomars/M
+Mallory/M
+Malone/M
+Malory/M
+Malplaquet/M
+Malraux/M
+Malta/M
+Maltese/M
+Malthus/M
+Malthusian/SM
+Mameluke/M
+Mamet/M
+Mamie/M
+Mamore/M
+Man/M
+Managua/M
+Manama/M
+Manasseh/M
+Manchester/M
+Manchu/SM
+Manchuria/M
+Manchurian/M
+Mancini/M
+Mancunian/MS
+Mandalay/M
+Mandarin/M
+Mandela/M
+Mandelbrot/M
+Mandeville/M
+Mandingo/M
+Mandrell/M
+Mandy/M
+Manet/M
+Manfred/M
+Manhattan/SM
+Mani/M
+Manichean/M
+Manila/SM
+Manitoba/M
+Manitoulin/M
+Mankato/M
+Manley/M
+Mann/GM
+Mannheim/M
+Manning/M
+Mansfield/M
+Manson/M
+Manteca/M
+Mantegna/M
+Mantle/M
+Manuel/M
+Manuela/M
+Manx/M
+Mao/M
+Maoism/SM
+Maoist/SM
+Maori/MS
+Mapplethorpe/M
+Maputo/M
+Mar/SM
+Mara/M
+Maracaibo/M
+Marat/M
+Maratha/M
+Marathi/M
+Marathon/M
+Marc/M
+Marceau/M
+Marcel/M
+Marcelino/M
+Marcella/M
+Marcelo/M
+March/MS
+Marci/M
+Marcia/M
+Marciano/M
+Marcie/M
+Marco/MS
+Marconi/M
+Marcos/M
+Marcus/M
+Marcuse
+Marcy/M
+Marduk/M
+Margaret/M
+Margarita/M
+Margarito/M
+Marge/M
+Margery/M
+Margie/M
+Margo/M
+Margot
+Margret/M
+Margrethe/M
+Marguerite/M
+Mari/SM
+Maria/M
+MariaDB/M
+Marian/M
+Mariana/SM
+Marianas/M
+Marianne/M
+Mariano/M
+Maribel/M
+Maricela/M
+Marie/M
+Marietta/M
+Marilyn/M
+Marin/M
+Marina/M
+Marine/SM
+Mario/M
+Marion/M
+Maris/M
+Marisa/M
+Marisol/M
+Marissa/M
+Maritain/M
+Maritza/M
+Mariupol
+Marius/M
+Marjorie/M
+Marjory/M
+Mark/SM
+Markab/M
+Markham/M
+Markov/M
+Marks/M
+Marla/M
+Marlboro/M
+Marlborough/M
+Marlene/M
+Marley/M
+Marlin/M
+Marlon/M
+Marlowe/M
+Marmara/M
+Marne/M
+Maronite/M
+Marple/M
+Marquesas/M
+Marquette/M
+Marquez/M
+Marquis/M
+Marquita/M
+Marrakesh/M
+Marriott/M
+Mars/MS
+Marsala/M
+Marseillaise/MS
+Marseilles/M
+Marsh/M
+Marsha/M
+Marshall/M
+Marta/M
+Martel/M
+Martha/M
+Martial/M
+Martian/SM
+Martin/M
+Martina/M
+Martinez/M
+Martinique/M
+Marty/M
+Marva/M
+Marvell/M
+Marvin/M
+Marx/M
+Marxian
+Marxism/SM
+Marxist/SM
+Mary/M
+Maryann/M
+Maryanne/M
+Maryellen/M
+Maryland/MR
+Marylander/M
+Marylou/M
+Marysville/M
+Masada/M
+Masai/M
+Masaryk/M
+Mascagni/M
+Masefield/M
+Maserati/M
+Maseru/M
+Mashhad/M
+Mason/MS
+Masonic/M
+Masonite/M
+Mass/MS
+Massachusetts/M
+Massasoit/M
+Massenet/M
+Massey/M
+Master/S
+MasterCard/M
+Masters/M
+Mather/M
+Matheson/M
+Mathew/SM
+Mathews/M
+Mathewson/M
+Mathias/M
+Mathis/M
+Matilda/M
+Matisse/M
+Matlab/M
+Matt/M
+Mattel/M
+Matterhorn/M
+Matthew/SM
+Matthews/M
+Matthias/M
+Mattie/M
+Maud/M
+Maude/M
+Maugham/M
+Maui/M
+Mauldin/M
+Maupassant/M
+Maura/M
+Maureen/M
+Mauriac/M
+Maurice/M
+Mauricio/M
+Maurine/M
+Mauritania/M
+Mauritanian/SM
+Mauritian/SM
+Mauritius/M
+Mauro/M
+Maurois/M
+Mauryan/M
+Mauser/M
+Mavis/M
+Max/M
+Maximilian/M
+Maxine/M
+Maxwell/M
+May/SMR
+Maya/SM
+Mayan/MS
+Mayer/M
+Mayfair/M
+Mayflower/M
+Maynard/M
+Mayo/M
+Maypole
+Mayra/M
+Mays/M
+Maytag/M
+Mazama/M
+Mazarin/M
+Mazatlan/M
+Mazda/M
+Mazola/M
+Mazzini/M
+Mb/M
+Mbabane/M
+Mbini/M
+McAdam/M
+McAllen/M
+McBride/M
+McCain/M
+McCall/M
+McCarthy/M
+McCarthyism/M
+McCartney/M
+McCarty/M
+McClain/M
+McClellan/M
+McClure/M
+McConnell/M
+McCormick/M
+McCoy/M
+McCray/M
+McCullough/M
+McDaniel/M
+McDonald/M
+McDonnell/M
+McDowell/M
+McEnroe/M
+McFadden/M
+McFarland/M
+McGee/M
+McGovern/M
+McGowan/M
+McGuffey/M
+McGuire/M
+McHenry/M
+McIntosh/M
+McIntyre/M
+McJob
+McKay/M
+McKee/M
+McKenzie/M
+McKinley/M
+McKinney/M
+McKnight/M
+McLaughlin/M
+McLean/M
+McLeod/M
+McLuhan/M
+McMahon/M
+McMillan/M
+McNamara/M
+McNaughton/M
+McNeil/M
+McPherson/M
+McQueen/M
+McVeigh/M
+Md/M
+Me
+Mead/M
+Meade/M
+Meadows/M
+Meagan/M
+Meany/M
+Mecca/MS
+Medan/M
+Medea/M
+Medellin/M
+Medford/M
+Media/M
+Medicaid/SM
+Medicare/SM
+Medici/M
+Medina/M
+Mediterranean/MS
+Medusa/M
+Meg/M
+Megan/M
+Meghan/M
+Meier/M
+Meighen/M
+Meiji/M
+Meir/M
+Mejia/M
+Mekong/M
+Mel/M
+Melanesia/M
+Melanesian/M
+Melanie/M
+Melba/M
+Melbourne/M
+Melchior/M
+Melchizedek/M
+Melendez/M
+Melinda/M
+Melisa/M
+Melisande/M
+Melissa/M
+Mellon/M
+Melody/M
+Melpomene/M
+Melton/M
+Melva/M
+Melville/M
+Melvin/M
+Memcached/M
+Memling/M
+Memphis/M
+Menander/M
+Mencius/M
+Mencken/M
+Mendel/M
+Mendeleev/M
+Mendelian/M
+Mendelssohn/M
+Mendez/M
+Mendocino/M
+Mendoza/M
+Menelaus/M
+Menelik/M
+Menes/M
+Mengzi
+Menifee/M
+Menkalinan/M
+Menkar/M
+Menkent/M
+Mennen/M
+Mennonite/MS
+Menominee/M
+Menotti/M
+Mensa/M
+Mentholatum/M
+Menuhin/M
+Menzies/M
+Mephisto
+Mephistopheles/M
+Merak/M
+Mercado/M
+Mercator/M
+Merced/M
+Mercedes/M
+Mercer/M
+Mercia/M
+Merck/M
+Mercurochrome/M
+Mercury/SM
+Meredith/M
+Merino/M
+Merle/M
+Merlin/M
+Merlot/M
+Merovingian/M
+Merriam/M
+Merrick/M
+Merrill/M
+Merrimack/M
+Merritt/M
+Merthiolate/M
+Merton/M
+Mervin/M
+Mesa/M
+Mesabi/M
+Mesmer/M
+Mesolithic/M
+Mesopotamia/M
+Mesopotamian
+Mesozoic/M
+Messerschmidt/M
+Messiaen/M
+Messiah/M
+Messiahs
+Messianic
+Messieurs
+Metallica/M
+Metamucil/M
+Methodism/SM
+Methodist/SM
+Methuselah/M
+Metternich/M
+Meuse/M
+Mex
+Mexicali/M
+Mexican/MS
+Mexico/M
+Meyer/MS
+Meyerbeer/M
+Meyers/M
+Mfume/M
+Mg/M
+Mgr
+MiG/M
+Mia/M
+Miami/MS
+Miaplacidus/M
+Micah/M
+Micawber/M
+Mich/M
+Michael/M
+Michaelmas/MS
+Micheal/M
+Michel/M
+Michelangelo/M
+Michele/M
+Michelin/M
+Michelle/M
+Michelob/M
+Michelson/M
+Michigan/M
+Michigander/MS
+Michiganite
+Mick/M
+Mickey/M
+Mickie/M
+Micky/M
+Micmac/SM
+Micronesia/M
+Micronesian/M
+Microsoft/M
+Midas/M
+Middleton/M
+Middletown/M
+Mideast
+Mideastern
+Midland/MS
+Midway/M
+Midwest/M
+Midwestern/MR
+Miguel/M
+Mike/M
+Mikhail/M
+Mikoyan/M
+Milagros/M
+Milan/M
+Milanese
+Mildred/M
+Miles/M
+Milford/M
+Milken/M
+Mill/SMR
+Millard/M
+Millay/M
+Miller/M
+Millet/M
+Millicent/M
+Millie/M
+Millikan/M
+Mills/M
+Milne/M
+Milo/M
+Milosevic/M
+Milquetoast/M
+Miltiades/M
+Milton/M
+Miltonian
+Miltonic/M
+Miltown/M
+Milwaukee/M
+Mimi/M
+Mimosa/M
+Min/M
+Minamoto/M
+Mindanao/M
+Mindoro/M
+Mindy/M
+Minerva/M
+Ming/M
+Mingus/M
+Minn
+Minneapolis/M
+Minnelli/M
+Minnesota/M
+Minnesotan/SM
+Minnie/M
+Minoan/MS
+Minolta/M
+Minos/M
+Minot/M
+Minotaur/M
+Minsk/M
+Minsky/M
+Mintaka/M
+Minuit/M
+Minuteman/M
+Miocene/M
+Mir/M
+Mira/M
+Mirabeau/M
+Mirach/M
+Miranda/M
+Mirfak/M
+Miriam/M
+Miro/M
+Mirzam/M
+Miskito/M
+Miss
+Mississauga/M
+Mississippi/M
+Mississippian/SM
+Missoula/M
+Missouri/M
+Missourian/MS
+Missy/M
+Mistassini/M
+Mister
+Mistress
+Misty/M
+Mitch/M
+Mitchel/M
+Mitchell/M
+Mitford/M
+Mithra/M
+Mithridates/M
+Mitsubishi/M
+Mitterrand/M
+Mitty/M
+Mitzi/M
+Mixtec/M
+Mizar/M
+Mk
+Mlle
+Mme/S
+Mn/M
+Mnemosyne/M
+Mo/M
+Mobil/M
+Mobile/M
+Mobutu/M
+Modesto/M
+Modigliani/M
+Moe/M
+Moet/M
+Mogadishu/M
+Mogul/MS
+Mohacs/M
+Mohamed/M
+Mohammad/M
+Mohammedan/SM
+Mohammedanism/SM
+Mohave/SM
+Mohawk/SM
+Mohegan
+Moho/M
+Mohorovicic/M
+Moira/M
+Moises/M
+Moiseyev/M
+Mojave/SM
+Moldavia/M
+Moldavian
+Moldova/M
+Moldovan
+Moliere/M
+Molina/M
+Moll/M
+Mollie/M
+Molly/M
+Molnar/M
+Moloch/M
+Molokai/M
+Molotov/M
+Moluccas/M
+Mombasa/M
+Mon/SM
+Mona/M
+Monacan
+Monaco/M
+Mondale/M
+Monday/SM
+Mondrian/M
+Monegasque/SM
+Monera/M
+Monessen/M
+Monet/M
+MongoDB/M
+Mongol/SM
+Mongolia/M
+Mongolian/SM
+Mongolic/M
+Mongoloid
+Monica/M
+Monique/M
+Monk/M
+Monmouth/M
+Monongahela/M
+Monroe/M
+Monrovia/M
+Monsanto/M
+Monsieur/M
+Monsignor/SM
+Mont/M
+Montague/M
+Montaigne/M
+Montana/M
+Montanan/SM
+Montcalm/M
+Monte/M
+Montenegrin/M
+Montenegro/M
+Monterey/M
+Monterrey/M
+Montesquieu/M
+Montessori/M
+Monteverdi/M
+Montevideo/M
+Montezuma/M
+Montgolfier/M
+Montgomery/M
+Monticello/M
+Montoya/M
+Montpelier/M
+Montrachet/M
+Montreal/M
+Montserrat/M
+Monty/M
+Moody/M
+Moog/M
+Moon/M
+Mooney/M
+Moor/SM
+Moore/M
+Moorish/M
+Morales/M
+Moran/M
+Moravia/M
+Moravian/M
+Mordred/M
+More/M
+Moreno/M
+Morgan/SM
+Morgantown/M
+Moriarty/M
+Morin/M
+Morison/M
+Morita/M
+Morley/M
+Mormon/SM
+Mormonism/SM
+Moro/M
+Moroccan/SM
+Morocco/M
+Moroni/M
+Morpheus/M
+Morphy/M
+Morris/M
+Morrison/M
+Morristown/M
+Morrow/M
+Morse/M
+Mort/M
+Mortimer/M
+Morton/M
+Mosaic/M
+Moscow/M
+Moseley/M
+Moselle/M
+Moses/M
+Mosley/M
+Moss/M
+Mosul/M
+Motorola/M
+Motown/M
+Motrin/M
+Mott/M
+Moulton/M
+Mount/M
+Mountbatten/M
+Mountie/MS
+Moussorgsky/M
+Mouthe/M
+Mouton/M
+Mowgli/M
+Mozambican/SM
+Mozambique/M
+Mozart/M
+Mozilla/M
+Mr/SM
+Ms/S
+Msgr
+Mt
+Muawiya/M
+Mubarak/M
+Mueller/M
+Muenster/MS
+Mugabe/M
+Muhammad/M
+Muhammadan/MS
+Muhammadanism/SM
+Muir/M
+Mujib/M
+Mulder/M
+Mullen/M
+Muller/M
+Mulligan/M
+Mullikan/M
+Mullins/M
+Mulroney/M
+Multan/M
+Multics
+Mumbai/M
+Mumford/M
+Munch/M
+Munchhausen/M
+Muncie/M
+Munich/M
+Munoz/M
+Munro/M
+Munster/M
+Muppet/M
+Murasaki/M
+Murat/M
+Murchison/M
+Murcia
+Murdoch/M
+Murfreesboro/M
+Muriel/M
+Murillo/M
+Murine/M
+Murmansk/M
+Murphy/M
+Murray/M
+Murrieta/M
+Murrow/M
+Murrumbidgee/M
+Muscat/M
+Muscovite/M
+Muscovy/M
+Muse/M
+Musharraf/M
+Musial/M
+Muskegon/M
+Muskogee/M
+Muslim/MS
+Mussolini/M
+Mussorgsky/M
+Mutsuhito/M
+Muzak/M
+MySQL/M
+MySpace/M
+Myanmar/M
+Mycenae/M
+Mycenaean/M
+Myers/M
+Mylar/MS
+Myles/M
+Myra/M
+Myrdal/M
+Myrna/M
+Myron/M
+Myrtle/M
+Mysore/M
+Myst/M
+N'Djamena
+N/MD
+NAACP/M
+NAFTA/M
+NASA/M
+NASCAR/M
+NASDAQ/M
+NATO/M
+NB
+NBA/M
+NBC/M
+NBS
+NC
+NCAA/M
+NCO
+ND
+NE/M
+NEH
+NF
+NFC
+NFL/M
+NH
+NHL/M
+NIH
+NIMBY
+NJ
+NLRB
+NM
+NORAD/M
+NOW
+NP
+NPR/M
+NR
+NRA
+NRC
+NS
+NSA/M
+NSC
+NSF
+NSFW
+NT
+NV
+NVIDIA/M
+NW/M
+NWT
+NY
+NYC
+NYSE
+NZ
+Na/M
+Nabisco/M
+Nabokov/M
+Nader/M
+Nadia/M
+Nadine/M
+Nagasaki/M
+Nagoya/M
+Nagpur/M
+Nagy/M
+Nahuatl/MS
+Nahum/M
+Naipaul/M
+Nair/M
+Nairobi/M
+Naismith/M
+Nam/M
+Namath/M
+Namibia/M
+Namibian/MS
+Nampa/M
+Nan/M
+Nanak/M
+Nanchang/M
+Nancy/M
+Nanette/M
+Nanjing/M
+Nannie/M
+Nanook/M
+Nansen/M
+Nantes/M
+Nantucket/M
+Naomi/M
+Napa/M
+Naphtali/M
+Napier/M
+Naples/M
+Napoleon/MS
+Napoleonic/M
+Napster/M
+Narcissus/M
+Narmada/M
+Narnia/M
+Narraganset
+Narragansett/M
+Nash/M
+Nashua/M
+Nashville/M
+Nassau/M
+Nasser/M
+Nat/M
+Natalia/M
+Natalie/M
+Natasha/M
+Natchez/M
+Nate/MN
+Nathan/SM
+Nathaniel/M
+Nathans/M
+Nation/M
+Nationwide/M
+Nativity/M
+Naugahyde/M
+Nauru/M
+Nautilus/M
+Navajo/SM
+Navajoes
+Navarre/M
+Navarro/M
+Navratilova/M
+Navy
+Nazarene/M
+Nazareth/M
+Nazca/M
+Nazi/SM
+Nazism/MS
+Nb/M
+Nd/M
+Ndjamena/M
+Ne/M
+NeWS
+NeWSes
+Neal/M
+Neanderthal/SM
+Neapolitan/M
+Neb
+Nebr
+Nebraska/M
+Nebraskan/MS
+Nebuchadnezzar/M
+Ned/M
+Nefertiti/M
+Negev/M
+Negress/MS
+Negritude
+Negro/MS
+Negroes
+Negroid/SM
+Negros/M
+Nehemiah/M
+Nehru/M
+Neil/M
+Nelda/M
+Nell/M
+Nellie/M
+Nelly/M
+Nelsen/M
+Nelson/M
+Nembutal/M
+Nemesis/M
+Neo/M
+Neogene/M
+Neolithic
+Nepal/M
+Nepalese/M
+Nepali/MS
+Neptune/M
+Nereid/M
+Nerf/M
+Nero/M
+Neruda/M
+Nescafe/M
+Nesselrode/M
+Nestle/M
+Nestor/M
+Nestorius/M
+Netflix/M
+Netherlander/SM
+Netherlands/M
+Netscape/M
+Nettie/M
+Netzahualcoyotl/M
+Nev/M
+Neva/M
+Nevada/M
+Nevadan/SM
+Nevadian
+Nevis/M
+Nevsky/M
+Newark/M
+Newburgh/M
+Newcastle/M
+Newfoundland/MRS
+Newman/M
+Newport/M
+Newsweek/M
+Newton/M
+Newtonian/M
+Nexis/M
+Ngaliema/M
+Nguyen/M
+Ni/M
+Niagara/M
+Niamey/M
+Nibelung/M
+Nicaea/M
+Nicaragua/M
+Nicaraguan/SM
+Niccolo/M
+Nice/M
+Nicene/M
+Nichiren/M
+Nicholas/M
+Nichole/M
+Nichols/M
+Nicholson/M
+Nick/M
+Nickelodeon/M
+Nicklaus/M
+Nickolas/M
+Nicobar/M
+Nicodemus/M
+Nicola/SM
+Nicolas/M
+Nicole/M
+Nicosia/M
+Niebuhr/M
+Nielsen/M
+Nietzsche/M
+Nieves/M
+Nigel/M
+Niger/M
+Nigeria/M
+Nigerian/MS
+Nigerien/M
+Nightingale/M
+Nijinsky/M
+Nike/M
+Nikita/M
+Nikkei/M
+Nikki/M
+Nikolai/M
+Nikon/M
+Nile/M
+Nimitz/M
+Nimrod/M
+Nina/M
+Nineveh/M
+Nintendo/M
+Niobe/M
+Nippon/M
+Nipponese/M
+Nirenberg/M
+Nirvana/M
+Nisan/M
+Nisei/M
+Nissan/M
+Nita/M
+Nivea/M
+Nixon/M
+Nkrumah/M
+No/SM
+NoDoz/M
+Noah/M
+Nobel/M
+Nobelist/MS
+Noble/M
+Noe/M
+Noel/SM
+Noelle/M
+Noemi/M
+Nokia/M
+Nola/M
+Nolan/M
+Nome/M
+Nona/M
+Nootka/M
+Nora/M
+Norbert/M
+Norberto/M
+Nordic/MS
+Noreen/M
+Norfolk/M
+Noriega/M
+Norma/M
+Normal/M
+Norman/MS
+Normand/M
+Normandy/M
+Norplant/M
+Norris/M
+Norse/M
+Norseman/M
+Norsemen/M
+North/M
+Northampton/M
+Northeast/MS
+Northerner/M
+Northrop/M
+Northrup/M
+Norths
+Northwest/SM
+Norton/M
+Norw
+Norway/M
+Norwegian/SM
+Norwich/M
+Nosferatu/M
+Nostradamus/M
+Nottingham/M
+Nouakchott/M
+Noumea/M
+Nov/M
+Nova/M
+Novartis/M
+November/MS
+Novgorod/M
+Novocain/MS
+Novocaine
+Novokuznetsk/M
+Novosibirsk/M
+Noxzema/M
+Noyce/M
+Noyes/M
+Np/M
+Nubia/M
+Nubian/M
+Nukualofa/M
+Numbers/M
+Nunavut/M
+Nunez/M
+Nunki/M
+Nuremberg/M
+Nureyev/M
+NutraSweet/M
+NyQuil/M
+Nyasa/M
+Nyerere/M
+O'Brien/M
+O'Casey/M
+O'Connell/M
+O'Connor/M
+O'Donnell/M
+O'Hara/M
+O'Higgins/M
+O'Keeffe/M
+O'Neil/M
+O'Neill/M
+O'Rourke/M
+O'Toole/M
+O/SM
+OAS/M
+OB
+OCR
+OD/SM
+OE
+OED
+OH
+OHSA/M
+OJ
+OK/SMDG
+OMB/M
+ON
+OPEC/M
+OR
+OS/M
+OSHA/M
+OSes
+OT
+OTB
+OTC
+OTOH
+Oahu/M
+Oakland/M
+Oakley/M
+Oates/M
+Oaxaca/M
+Ob/M
+Obadiah/M
+Obama/M
+Obamacare
+Oberlin/M
+Oberon/M
+Ocala/M
+Ocaml/M
+Occam/M
+Occident
+Occidental/MS
+Oceania/M
+Oceanside
+Oceanus/M
+Ochoa/M
+Oct/M
+Octavia/M
+Octavian/M
+Octavio/M
+October/SM
+Odell/M
+Oder/M
+Odessa/M
+Odets/M
+Odin/M
+Odis/M
+Odom/M
+Odysseus/M
+Odyssey/M
+Oedipal/M
+Oedipus/M
+Oersted/M
+Ofelia/M
+Offenbach/M
+OfficeMax/M
+Ogbomosho/M
+Ogden/M
+Ogilvy/M
+Oglethorpe/M
+Ohio/M
+Ohioan/SM
+Oise/M
+Ojibwa/SM
+Okayama
+Okeechobee/M
+Okefenokee/M
+Okhotsk/M
+Okinawa/M
+Okinawan
+Okla
+Oklahoma/M
+Oklahoman/M
+Oktoberfest/M
+Ola/M
+Olaf/M
+Olajuwon/M
+Olav/M
+Oldenburg/M
+Oldfield/M
+Oldsmobile/M
+Olduvai/M
+Olen/M
+Olenek/M
+Olga/M
+Oligocene/M
+Olin/M
+Olive/MR
+Oliver/M
+Olivetti/M
+Olivia/M
+Olivier/M
+Ollie/M
+Olmec/M
+Olmsted/M
+Olsen/M
+Olson/M
+Olympia/SM
+Olympiad/MS
+Olympian/MS
+Olympic/SM
+Olympics/M
+Olympus/M
+Omaha/MS
+Oman/M
+Omani/MS
+Omar/M
+Omayyad/M
+Omdurman/M
+Omnipotent
+Omsk/M
+Onassis/M
+Oneal/M
+Onega/M
+Onegin/M
+Oneida/MS
+Onion/M
+Ono/M
+Onondaga/MS
+Onsager/M
+Ont
+Ontarian
+Ontario/M
+Oort/M
+Opal/M
+Opel/M
+OpenOffice/M
+Ophelia/M
+Ophiuchus/M
+Oppenheimer/M
+Opposition
+Oprah/M
+Ora/M
+Oracle/M
+Oran/M
+Orange/M
+Oranjestad/M
+Orbison/M
+Ordovician/M
+Ore/N
+Oreg
+Oregon/M
+Oregonian/SM
+Orem/M
+Oreo/M
+Orestes/M
+Orient/M
+Oriental/MS
+Orientalism
+Orin/M
+Orinoco/M
+Orion/M
+Oriya/M
+Orizaba/M
+Orkney/M
+Orlando/M
+Orleans/M
+Orlon/MS
+Orly/M
+Orpheus/M
+Orphic/M
+Orr/M
+Ortega/M
+Orthodox
+Ortiz/M
+Orval/M
+Orville/M
+Orwell/M
+Orwellian/M
+Os/M
+Osage/MS
+Osaka/M
+Osbert/M
+Osborn/M
+Osborne/M
+Oscar/MS
+Osceola/M
+Osgood/M
+Oshawa/M
+Oshkosh/M
+Osiris/M
+Oslo/M
+Osman/M
+Ostrogoth/M
+Ostwald/M
+Osvaldo/M
+Oswald/M
+Othello/M
+Otis/M
+Ottawa/SM
+Otto/M
+Ottoman/M
+Ouagadougou/M
+Ouija/MS
+Ovid/M
+Owen/SM
+Owens/M
+Owensboro/M
+Oxford/SM
+Oxnard/M
+Oxonian/M
+Oxus/M
+Oxycontin/M
+Oz/M
+Ozark/MS
+Ozarks/M
+Ozymandias/M
+Ozzie/M
+P/MN
+PA/M
+PAC/M
+PARC/S
+PASCAL
+PBS/M
+PBX
+PC/SM
+PCB
+PCMCIA
+PCP/M
+PD
+PDF
+PDQ
+PDT
+PE
+PET/M
+PFC
+PG
+PGP
+PHP/M
+PIN
+PJ's
+PLO/M
+PM/SMDG
+PMS/M
+PO
+POW/M
+PP
+PPS
+PR
+PRC/M
+PRO
+PS/M
+PST/M
+PT
+PTA/M
+PTO
+PVC/M
+PW
+PX
+Pa/M
+Paar/M
+Pablo/M
+Pablum/M
+Pabst/M
+Pace/M
+Pacheco/M
+Pacific/M
+Pacino/M
+Packard/M
+Padang
+Paderewski/M
+Padilla/M
+Paganini/M
+Page/M
+Paglia/M
+Pahlavi/M
+Paige/M
+Paine/M
+Paiute/SM
+Pakistan/M
+Pakistani/SM
+Palembang/M
+Paleocene/M
+Paleogene/M
+Paleolithic/M
+Paleozoic/M
+Palermo/M
+Palestine/M
+Palestinian/SM
+Palestrina/M
+Paley/M
+Palikir/M
+Palisades/M
+Palladio/M
+Palmdale/M
+Palmer/M
+Palmerston/M
+Palmolive/M
+Palmyra/M
+Palomar/M
+Pam/M
+Pamela/M
+Pamirs/M
+Pampers/M
+Pan/M
+Panama/SM
+Panamanian/MS
+Panasonic/M
+Pandora/M
+Pangaea/M
+Pankhurst/M
+Panmunjom/M
+Pansy/M
+Pantagruel/M
+Pantaloon/M
+Pantheon/M
+Panza/M
+Paracelsus/M
+Paraclete/M
+Paradise
+Paraguay/M
+Paraguayan/MS
+Paralympic/S
+Paramaribo/M
+Paramount/M
+Parana/M
+Parcheesi/M
+Pareto/M
+Paris/M
+Parisian/MS
+Park/SMR
+Parker/M
+Parkersburg/M
+Parkinson/M
+Parkinsonism
+Parkman/M
+Parks/M
+Parliament/M
+Parmenides
+Parmesan/MS
+Parnassus/MS
+Parnell/M
+Parr/M
+Parrish/M
+Parsifal/M
+Parsons/M
+Parthenon/M
+Parthia/M
+Pasadena/M
+Pascagoula/M
+Pascal/SM
+Pasco/M
+Pasquale/M
+Passion/SM
+Passover/MS
+Pasternak/M
+Pasteur/M
+Pat/M
+Patagonia/M
+Patagonian/M
+Pate/M
+Patel/M
+Paterson/M
+Patna/M
+Patrica/M
+Patrice/M
+Patricia/M
+Patrick/M
+Patsy/M
+Patterson/M
+Patti/M
+Patton/M
+Patty/M
+Paul/GM
+Paula/M
+Paulette/M
+Pauli/M
+Pauline/M
+Pauling/M
+Pavarotti/M
+Pavlov/M
+Pavlova/M
+Pavlovian/M
+Pawnee/SM
+PayPal/M
+Payne/M
+Pb/M
+Pd/M
+Peabody/M
+Peace/M
+Peale/M
+Pearl/M
+Pearlie/M
+Pearson/M
+Peary/M
+Pechora/M
+Peck/M
+Peckinpah/M
+Pecos/M
+Pedro/M
+Peel/M
+Peg/M
+Pegasus/MS
+Peggy/M
+Pei/M
+Peiping/M
+Peking/SM
+Pekingese/SM
+Pele/M
+Pelee/M
+Peloponnese/M
+Pembroke/M
+Pen/M
+Pena/M
+Penderecki/M
+Penelope/M
+Penn/M
+Penna
+Penney/M
+Pennington/M
+Pennsylvania/M
+Pennsylvanian/MS
+Penny/M
+Pennzoil/M
+Pensacola/M
+Pentagon/M
+Pentateuch/M
+Pentax/M
+Pentecost/SM
+Pentecostal/MS
+Pentecostalism
+Pentium/SM
+Peoria/M
+Pepin/M
+Pepsi/M
+Pepys/M
+Pequot/M
+Percheron/M
+Percival/M
+Percy/M
+Perelman/M
+Perez/M
+Periclean/M
+Pericles/M
+Perkins/M
+Perl/SM
+Perm/M
+Permalloy/M
+Permian/M
+Pernod/M
+Peron/M
+Perot/M
+Perrier/M
+Perry/RM
+Perseid/M
+Persephone/M
+Persepolis/M
+Perseus/M
+Pershing/M
+Persia/M
+Persian/SM
+Perth/M
+Peru/M
+Peruvian/MS
+Peshawar/M
+Petain/M
+Petaluma/M
+Pete/RMZ
+Peter/M
+Peters/MN
+Petersen/M
+Peterson/M
+Petra/M
+Petrarch/M
+Petty/M
+Peugeot/M
+Pfc
+Pfizer/M
+PhD/M
+Phaedra/M
+Phaethon/M
+Phanerozoic/M
+Pharaoh/M
+Pharaohs
+Pharisaic
+Pharisaical
+Pharisee/MS
+Phekda/M
+Phelps/M
+Phidias/M
+Phil/MY
+Philadelphia/M
+Philby/M
+Philemon/M
+Philip/MS
+Philippe/M
+Philippians/M
+Philippine/SM
+Philippines/M
+Philips/M
+Philistine/M
+Phillip/SM
+Phillipa/M
+Phillips/M
+Philly/M
+Phipps/M
+Phobos/M
+Phoebe/M
+Phoenicia/M
+Phoenician/SM
+Phoenix/M
+Photostat/MS
+Photostatted
+Photostatting
+Phrygia/M
+Phyllis/M
+Piaf/M
+Piaget/M
+Pianola/M
+Picasso/M
+Piccadilly/M
+Pickering/M
+Pickett/M
+Pickford/M
+Pickwick/M
+Pict/M
+Piedmont/M
+Pierce/M
+Pierre/M
+Pierrot/M
+Pike/M
+Pilate/MS
+Pilates/M
+Pilcomayo/M
+Pilgrim/SM
+Pillsbury/M
+Pinatubo/M
+Pincus/M
+Pindar/M
+Pinkerton/M
+Pinocchio/M
+Pinochet/M
+Pinter/M
+Pinyin
+Pippin/M
+Piraeus/M
+Pirandello/M
+Pisa/M
+Pisces/M
+Pisistratus/M
+Pissaro/M
+Pitcairn/M
+Pitt/SM
+Pittman/M
+Pitts/M
+Pittsburgh/M
+Pittsfield/M
+Pius/M
+Pizarro/M
+Pkwy
+Pl
+Planck/M
+Plano
+Plantagenet/M
+Plasticine/M
+Plataea/M
+Plath/M
+Plato/M
+Platonic
+Platonism/M
+Platonist/M
+Platte/M
+Plautus/M
+PlayStation/M
+Playboy/M
+Playtex/M
+Pleiades/M
+Pleistocene/M
+Plexiglas/MS
+Pliny/M
+Pliocene/SM
+Plutarch/M
+Pluto/M
+Plymouth/M
+Pm/M
+Po/M
+Pocahontas/M
+Pocatello/M
+Pocono/SM
+Poconos/M
+Podgorica/M
+Podhoretz/M
+Podunk/M
+Poe/M
+Pogo/M
+Poincare/M
+Poiret/M
+Poirot/M
+Poisson/M
+Poitier/M
+Pokemon/M
+Pol/MY
+Poland/M
+Polanski/M
+Polaris/M
+Polaroid/MS
+Pole/SM
+Polish/M
+Politburo/M
+Polk/M
+Pollard/M
+Pollock/M
+Pollux/M
+Polly/M
+Pollyanna/M
+Polo/M
+Poltava/M
+Polyhymnia/M
+Polynesia/M
+Polynesian/MS
+Polyphemus/M
+Pomerania/M
+Pomeranian/M
+Pomona/M
+Pompadour/M
+Pompeian
+Pompeii/M
+Pompey/M
+Ponce/M
+Pontchartrain/M
+Pontiac/M
+Pontianak/M
+Pooh/M
+Poole/M
+Poona/M
+Pope/M
+Popeye/M
+Popocatepetl/M
+Popper/M
+Poppins/M
+Popsicle/M
+Porfirio/M
+Porrima/M
+Porsche/M
+Port/MR
+Porter/M
+Porterville/M
+Portia/M
+Portland/M
+Porto/M
+Portsmouth/M
+Portugal/M
+Portuguese/M
+Poseidon/M
+Post/M
+PostgreSQL/M
+Potemkin/M
+Potomac/M
+Potsdam/M
+Pottawatomie/M
+Potter/M
+Potts/M
+Pottstown/M
+Poughkeepsie/M
+Pound/M
+Poussin/M
+Powell/M
+PowerPC/M
+PowerPoint/M
+Powers/M
+Powhatan/M
+Poznan/M
+Pr/M
+Prada/M
+Prado/M
+Praetorian/M
+Prague/M
+Praia/M
+Prakrit/M
+Pratchett/M
+Pratt/M
+Pravda/M
+Praxiteles/M
+Preakness/M
+Precambrian/M
+Preminger/M
+Premyslid/M
+Prensa/M
+Prentice/M
+Pres
+Presbyterian/SM
+Presbyterianism/MS
+Prescott/M
+Presley/M
+Preston/M
+Pretoria/M
+Priam/M
+Pribilof/M
+Price/M
+Priceline/M
+Priestley/M
+Prince/M
+Princeton/M
+Principe/M
+Priscilla/M
+Prius/M
+Private
+Procrustean/M
+Procrustes/M
+Procter/M
+Procyon/M
+Prof
+Prohibition
+Prokofiev/M
+Promethean/M
+Prometheus/M
+Prophets
+Proserpina/M
+Proserpine/M
+Protagoras/M
+Proterozoic/M
+Protestant/MS
+Protestantism/SM
+Proteus/M
+Proudhon/M
+Proust/M
+Provencal/MS
+Provence/M
+Proverbs
+Providence/SM
+Provo/M
+Prozac/MS
+Prudence/M
+Prudential/M
+Pruitt/M
+Prussia/M
+Prussian/MS
+Prut/M
+Pryor/M
+Psalms/M
+Psalter/MS
+Psyche/M
+Pt/M
+Ptah/M
+Ptolemaic/M
+Ptolemy/SM
+Pu/M
+Puccini/M
+Puck/M
+Puckett/M
+Puebla/M
+Pueblo/M
+Puerto
+Puget/M
+Pugh/M
+Pulaski/M
+Pulitzer/M
+Pullman/MS
+Punch/M
+Punic/M
+Punjab/M
+Punjabi/M
+Purana/M
+Purcell/M
+Purdue/M
+Purim/MS
+Purina/M
+Puritan/M
+Puritanism/MS
+Purus/M
+Pusan/M
+Pusey/M
+Pushkin/M
+Pushtu/M
+Putin/M
+Putnam/M
+Puzo/M
+Pvt
+PyTorch/M
+Pygmalion/M
+Pygmy/SM
+Pyle/M
+Pym/M
+Pynchon/M
+Pyongyang/M
+Pyotr/M
+Pyrenees/M
+Pyrex/MS
+Pyrrhic/M
+Pythagoras/M
+Pythagorean/M
+Pythias/M
+Python/M
+Q
+QA
+QB
+QC
+QED
+QM
+QWERTY
+Qaddafi/M
+Qantas/M
+Qatar/M
+Qatari/MS
+Qingdao/M
+Qinghai/M
+Qiqihar/M
+Qom/M
+Quaalude/M
+Quaker/MS
+Quakerism/SM
+Qualcomm/M
+Quaoar/M
+Quasimodo/M
+Quaternary/M
+Quayle/M
+Que
+Quebec/M
+Quebecois/M
+Quechua/M
+Queen/MS
+Queens/M
+Queensland/M
+Quentin/M
+Quetzalcoatl/M
+Quezon/M
+Quincy/M
+Quinn/M
+Quintilian/M
+Quinton/M
+Quirinal/M
+Quisling/M
+Quito/M
+Quixote/M
+Quixotism/M
+Qumran/M
+Quonset/M
+Quran
+Quranic
+R/M
+RAF/M
+RAM/SM
+RBI
+RC
+RCA/M
+RCMP
+RD
+RDA
+RDS/M
+REIT
+REM/SM
+RF
+RFC/S
+RFD
+RI
+RIF
+RIP
+RISC
+RN/M
+RNA/M
+ROFL
+ROM/M
+ROTC/M
+RP
+RR
+RSFSR
+RSI
+RSV
+RSVP
+RTFM
+RV/SM
+Ra/M
+Rabat/M
+Rabelais/M
+Rabelaisian/M
+Rabin/M
+Rachael/M
+Rachel/M
+Rachelle/M
+Rachmaninoff/M
+Racine/M
+Radcliff/M
+Radcliffe/M
+Rae/M
+Rafael/M
+Raffles/M
+Ragnarok/M
+Rainier/M
+Raleigh/M
+Ralph/M
+Rama/M
+Ramada/M
+Ramadan/MS
+Ramakrishna/M
+Ramanujan/M
+Ramayana/M
+Rambo/M
+Ramirez/M
+Ramiro/M
+Ramon/M
+Ramona/M
+Ramos/M
+Ramsay/M
+Ramses/M
+Ramsey/M
+Rand/M
+Randal/M
+Randall/M
+Randell/M
+Randi/M
+Randolph/M
+Randy/M
+Rangoon/M
+Rankin/M
+Rankine/M
+Raoul/M
+Raphael/M
+Rappaport/M
+Rapunzel/M
+Raquel/M
+Rasalgethi/M
+Rasalhague/M
+Rasmussen/M
+Rasputin/M
+Rasta
+Rastaban/M
+Rastafarian/MS
+Rastafarianism
+Rather/M
+Ratliff/M
+Raul/M
+Ravel/M
+Rawalpindi/M
+Ray/M
+RayBan/M
+Rayburn/M
+Rayleigh/M
+Raymond/M
+Raymundo/M
+Rb/M
+Rd
+Re/M
+Reading/M
+Reagan/M
+Reaganomics/M
+Realtor/M
+Reasoner/M
+Reba/M
+Rebekah/M
+Recife/M
+Reconstruction/M
+Redding/M
+Redeemer/M
+Redford/M
+Redgrave/M
+Redis/M
+Redmond/M
+Redshift/M
+Reebok/M
+Reed/M
+Reese/M
+Reeves/M
+Reformation/MS
+Refugio/M
+Reggie/M
+Regina/M
+Reginae/M
+Reginald/M
+Regor/M
+Regulus/M
+Rehnquist/M
+Reich/M
+Reichstag's
+Reid/M
+Reilly/M
+Reinaldo/M
+Reinhardt/M
+Reinhold/M
+Remarque/M
+Rembrandt/M
+Remington/M
+Remus/M
+Rena/M
+Renaissance/SM
+Renascence
+Renault/M
+Rene/M
+Renee/M
+Reno/M
+Renoir/M
+Rep
+Representative
+Republican/SM
+Republicanism
+Requiem/MS
+Resistance
+Restoration/M
+Resurrection
+Reuben/M
+Reunion/M
+Reuters/M
+Reuther/M
+Rev
+Reva/M
+Revelation/SM
+Revelations/M
+Revere/M
+Reverend/M
+Revlon/M
+Rex/M
+Reyes/M
+Reykjavik/M
+Reyna/M
+Reynaldo/M
+Reynolds/M
+Rf/M
+Rh/M
+Rhea/M
+Rhee/M
+Rheingau/M
+Rhenish/M
+Rhiannon/M
+Rhine/M
+Rhineland/M
+Rhoda/M
+Rhode/S
+Rhodes/M
+Rhodesia/M
+Rhodesian
+Rhonda/M
+Rhone/M
+Ribbentrop/M
+Ricardo/M
+Rice/M
+Rich/M
+Richard/MS
+Richards/M
+Richardson/M
+Richelieu/M
+Richie/M
+Richmond/M
+Richter/M
+Richthofen/M
+Rick/M
+Rickenbacker/M
+Rickey/M
+Rickie/M
+Rickover/M
+Ricky/M
+Rico/M
+Riddle/M
+Ride/M
+Riefenstahl/M
+Riel/M
+Riemann/M
+Riesling/MS
+Riga/M
+Rigel/M
+Riggs/M
+Right
+Rigoberto/M
+Rigoletto/M
+Riley/M
+Rilke/M
+Rimbaud/M
+Ringling/M
+Ringo/M
+Rio/SM
+Rios/M
+Ripley/M
+Risorgimento/M
+Rita/M
+Ritalin/M
+Ritz/M
+Rivas/M
+Rivera/M
+Rivers/M
+Riverside/M
+Riviera/MS
+Riyadh/M
+Rizal/M
+Rn/M
+Roach/M
+Roanoke/M
+Rob/M
+Robbie/M
+Robbin/MS
+Robbins/M
+Robby/M
+Roberson/M
+Robert/MS
+Roberta/M
+Roberto/M
+Roberts/M
+Robertson/M
+Robeson/M
+Robespierre/M
+Robin/M
+Robinson/M
+Robitussin/M
+Robles/M
+Robson/M
+Robt/M
+Robyn/M
+Rocco/M
+Rocha/M
+Rochambeau/M
+Roche/M
+Rochelle/M
+Rochester/M
+Rock/M
+Rockefeller/M
+Rockford/M
+Rockies/M
+Rockne/M
+Rockwell/M
+Rocky/SM
+Rod/M
+Roddenberry/M
+Roderick/M
+Rodger/MS
+Rodgers/M
+Rodin/M
+Rodney/M
+Rodolfo/M
+Rodrick/M
+Rodrigo/M
+Rodriguez/M
+Rodriquez/M
+Roeg/M
+Roentgen
+Rogelio/M
+Roger/MS
+Rogers/M
+Roget/M
+Rojas/M
+Roku/M
+Rolaids/M
+Roland/M
+Rolando/M
+Rolex/M
+Rolland/M
+Rollerblade/M
+Rollins/M
+Rolodex/M
+Rolvaag/M
+Rom
+Roman/MS
+Romanesque/MS
+Romania/M
+Romanian/MS
+Romano/M
+Romanov/M
+Romans/M
+Romansh/M
+Romanticism
+Romany/SM
+Rome/SM
+Romeo/M
+Romero/M
+Rommel/M
+Romney/M
+Romulus/M
+Ron/M
+Ronald/M
+Ronda/M
+Ronnie/M
+Ronny/M
+Ronstadt/M
+Rontgen
+Rooney/M
+Roosevelt/M
+Root/M
+Roquefort/SM
+Rorschach/M
+Rory/M
+Rosa/M
+Rosales/M
+Rosalie/M
+Rosalind/M
+Rosalinda/M
+Rosalyn/M
+Rosanna/M
+Rosanne/M
+Rosario/M
+Roscoe/M
+Rose/M
+Roseann/M
+Roseau/M
+Rosecrans/M
+Rosella/M
+Rosemarie/M
+Rosemary/M
+Rosenberg/M
+Rosendo/M
+Rosenzweig/M
+Rosetta/M
+Rosicrucian/M
+Rosie/M
+Roslyn/M
+Ross/M
+Rossetti/M
+Rossini/M
+Rostand/M
+Rostov/M
+Rostropovich/M
+Roswell/M
+Rotarian/M
+Roth/M
+Rothko/M
+Rothschild/M
+Rotterdam/M
+Rottweiler/M
+Rouault/M
+Rourke/M
+Rousseau/M
+Rove/RM
+Rover/M
+Rowe/M
+Rowena/M
+Rowland/M
+Rowling/M
+Roxanne/M
+Roxie/M
+Roxy/M
+Roy/M
+Royal/M
+Royce/M
+Rozelle/M
+Rte
+Ru/MH
+Rubaiyat/M
+Rubbermaid/M
+Ruben/SM
+Rubens/M
+Rubicon/MS
+Rubik/M
+Rubin/M
+Rubinstein/M
+Ruby/M
+Ruchbah/M
+Rudolf/M
+Rudolph/M
+Rudy/M
+Rudyard/M
+Rufus/M
+Ruhr/M
+Ruiz/M
+Rukeyser/M
+Rumpelstiltskin/M
+Rumsfeld/M
+Runnymede/M
+Runyon/M
+Rupert/M
+Rush/M
+Rushdie/M
+Rushmore/M
+Ruskin/M
+Russ/M
+Russel/M
+Russell/M
+Russia/M
+Russian/SM
+Russo/M
+Rustbelt/M
+Rusty/M
+Rutan/M
+Rutgers/M
+Ruth/M
+Rutherford/M
+Ruthie/M
+Rutledge/M
+Rwanda/MS
+Rwandan/SM
+Rwy
+Rx
+Ry
+Ryan/M
+Rydberg/M
+Ryder/M
+Ryukyu/M
+S/MN
+SA
+SAC
+SALT/M
+SAM/M
+SAP/M
+SARS/M
+SASE
+SAT
+SBA
+SC/M
+SCSI/M
+SD
+SDI
+SE/M
+SEATO
+SEC/M
+SF
+SGML/M
+SIDS/M
+SJ
+SJW
+SK
+SLR
+SO/S
+SOB/M
+SOP/M
+SOS/M
+SOSes
+SPCA
+SPF
+SQL
+SQLite/M
+SRO
+SS
+SSA
+SSE/M
+SSS
+SST
+SSW/M
+ST
+STD
+STOL
+SUSE/M
+SUV
+SVN/M
+SW/M
+SWAK
+SWAT
+Saab/M
+Saar/M
+Saarinen/M
+Saatchi/M
+Sabbath/M
+Sabbaths
+Sabik/M
+Sabin/M
+Sabina/M
+Sabine/M
+Sabre/M
+Sabrina/M
+Sacajawea/M
+Sacco/M
+Sachs/M
+Sacramento/M
+Sadat/M
+Saddam/M
+Sadducee/M
+Sade/M
+Sadie/M
+Sadr/M
+Safavid/M
+Safeway/M
+Sagan/M
+Saginaw/M
+Sagittarius/MS
+Sahara/M
+Saharan/M
+Sahel/M
+Saigon/M
+Saiph/M
+Sakai/M
+Sakha/M
+Sakhalin/M
+Sakharov/M
+Saki/M
+Saks/M
+Sal/MY
+Saladin/M
+Salado/M
+Salamis/M
+Salas/M
+Salazar/M
+Salem/M
+Salerno/M
+Salesforce/M
+Salinas/M
+Salinger/M
+Salisbury/M
+Salish/M
+Salk/M
+Sallie/M
+Sallust/M
+Sally/M
+Salome/M
+Salonika/M
+Salton/M
+Salvador/M
+Salvadoran/SM
+Salvadorean/MS
+Salvadorian/MS
+Salvatore/M
+Salween/M
+Salyut/M
+Sam/M
+Samantha/M
+Samar/M
+Samara/M
+Samaritan/MS
+Samarkand/M
+Sammie/M
+Sammy/M
+Samoa/M
+Samoan/SM
+Samoset/M
+Samoyed/M
+Sampson/M
+Samson/M
+Samsonite/M
+Samsung/M
+Samuel/M
+Samuelson/M
+San'a
+San/M
+Sana/M
+Sanchez/M
+Sancho/M
+Sand/ZM
+Sandburg/M
+Sanders/M
+Sandinista/M
+Sandoval/M
+Sandra/M
+Sandy/M
+Sanford/M
+Sanforized/M
+Sang/MR
+Sanger/M
+Sanhedrin/M
+Sanka/M
+Sankara/M
+Sanskrit/M
+Santa/M
+Santana/M
+Santayana/M
+Santeria/M
+Santiago/M
+Santos/M
+Sappho/M
+Sapporo/M
+Sara/M
+Saracen/MS
+Saragossa/M
+Sarah/M
+Sarajevo/M
+Saran/M
+Sarasota/M
+Saratov/M
+Sarawak/M
+Sardinia/M
+Sargasso/M
+Sargent/M
+Sargon/M
+Sarnoff/M
+Saroyan/M
+Sarto/M
+Sartre/M
+Sasha/M
+Sask
+Saskatchewan/M
+Saskatoon/M
+Sasquatch/MS
+Sassanian/M
+Sassoon/M
+Sat/M
+Satan/M
+Satanism/M
+Satanist/M
+Saturday/MS
+Saturn/M
+Saturnalia/M
+Saudi/MS
+Saul/M
+Saunders/M
+Saundra/M
+Saussure/M
+Sauternes
+Savage/M
+Savannah/M
+Savior/M
+Savonarola/M
+Savoy/M
+Savoyard/M
+Sawyer/M
+Saxon/MS
+Saxony/M
+Sayers/M
+Sb/M
+Sc/M
+Scala/M
+Scan
+Scandinavia/M
+Scandinavian/MS
+Scaramouch/M
+Scarborough/M
+Scarlatti/M
+Scheat/M
+Schedar/M
+Scheherazade/M
+Schelling/M
+Schenectady/M
+Schiaparelli/M
+Schick/M
+Schiller/M
+Schindler/M
+Schlesinger/M
+Schliemann/M
+Schlitz/M
+Schloss/M
+Schmidt/M
+Schnabel/M
+Schnauzer/M
+Schneider/M
+Schoenberg/M
+Schopenhauer/M
+Schrieffer/M
+Schrodinger/M
+Schroeder/M
+Schubert/M
+Schultz/M
+Schulz/M
+Schumann/M
+Schumpeter/M
+Schuyler/M
+Schuylkill/M
+Schwartz/M
+Schwarzenegger/M
+Schwarzkopf/M
+Schweitzer/M
+Schweppes/M
+Schwinger/M
+Schwinn/M
+Scientologist/SM
+Scientology/M
+Scipio/M
+Scopes/M
+Scorpio/SM
+Scorpius/M
+Scorsese/M
+Scot/SM
+Scotch/MS
+Scotchman/M
+Scotchmen/M
+Scotchwoman/M
+Scotchwomen/M
+Scotia/M
+Scotland/M
+Scotsman/M
+Scotsmen/M
+Scotswoman/M
+Scotswomen/M
+Scott/M
+Scottie/SM
+Scottish/M
+Scottsdale/M
+Scrabble/MS
+Scranton/M
+Scriabin/M
+Scribner/M
+Scripture/SM
+Scrooge/M
+Scruggs/M
+Scud/M
+Sculley/M
+Scylla/M
+Scythia/M
+Scythian/M
+Se/MH
+Seaborg/M
+Seagram/M
+Sean/M
+Sears/M
+Seaside/M
+Seattle/M
+Sebastian/M
+Sebring/M
+Sec
+Seconal/M
+Secretariat/M
+Secretary
+Seder/MS
+Sedna/M
+Seebeck/M
+Seeger/M
+Sega/M
+Segovia/M
+Segre/M
+Segundo/M
+Segway/S
+Seiko/M
+Seine/M
+Seinfeld/M
+Sejong/M
+Selassie/M
+Selectric/M
+Selena/M
+Seleucid/M
+Seleucus/M
+Selim/M
+Seljuk/M
+Selkirk/M
+Sellers/M
+Selma/M
+Selznick/M
+Semarang/M
+Seminole/MS
+Semiramis/M
+Semite/MS
+Semitic/SM
+Semtex/M
+Senate/MS
+Sendai/M
+Seneca/MS
+Senegal/M
+Senegalese/M
+Senghor/M
+Senior/M
+Sennacherib/M
+Sennett/M
+Sensurround/M
+Seoul/M
+Sep
+Sephardi/M
+Sepoy/M
+Sept/M
+September/MS
+Septuagint/MS
+Sequoya/M
+Serb/SM
+Serbia/M
+Serbian/MS
+Serena/M
+Serengeti/M
+Sergei/M
+Sergio/M
+Serpens/M
+Serra/M
+Serrano/M
+Set/M
+Seth/M
+Seton/M
+Seurat/M
+Seuss/M
+Sevastopol/M
+Severn/M
+Severus/M
+Seville/M
+Sevres/M
+Seward/M
+Sextans/M
+Sexton/M
+Seychelles/M
+Seyfert/M
+Seymour/M
+Sgt
+Shaanxi/M
+Shackleton/M
+Shaffer/M
+Shah/M
+Shaka/M
+Shaker
+Shakespeare/M
+Shakespearean/M
+Shana/M
+Shandong/M
+Shane/M
+Shanghai/M
+Shankara/M
+Shanna/M
+Shannon/M
+Shantung/M
+Shanxi/M
+Shapiro/M
+SharePoint/M
+Shari'a/M
+Shari/M
+Sharif/M
+Sharlene/M
+Sharon/M
+Sharp/M
+Sharpe/M
+Sharron/M
+Shasta/M
+Shaula/M
+Shaun/M
+Shauna/M
+Shavian/M
+Shavuot/M
+Shaw/M
+Shawn/M
+Shawna/M
+Shawnee/SM
+Shcharansky/M
+Shea/M
+Sheba/M
+Shebeli/M
+Sheboygan/M
+Sheena/M
+Sheetrock/M
+Sheffield/M
+Sheila/M
+Shelby/M
+Sheldon/M
+Shelia/M
+Shell/M
+Shelley/M
+Shelly/M
+Shelton/M
+Shenandoah/M
+Shenyang/M
+Sheol/M
+Shepard/M
+Shepherd/M
+Sheppard/M
+Sheratan/M
+Sheraton/M
+Sheree/M
+Sheri/M
+Sheridan/M
+Sherlock/M
+Sherman/M
+Sherpa/M
+Sherri/M
+Sherrie/M
+Sherry/M
+Sherwood/M
+Sheryl/M
+Shetland/SM
+Shetlands/M
+Shevardnadze/M
+Shevat/M
+Shi'ite/M
+Shields/M
+Shiite/MS
+Shijiazhuang/M
+Shikoku/M
+Shillong/M
+Shiloh/M
+Shinto/MS
+Shintoism/MS
+Shintoist/MS
+Shiraz/M
+Shirley/M
+Shiva/M
+Shockley/M
+Short/M
+Shorthorn/M
+Shoshone/SM
+Shostakovitch/M
+Shrek/M
+Shreveport/M
+Shriner/M
+Shropshire/M
+Shula/M
+Shylock/M
+Shylockian/M
+Si/M
+Siam/M
+Siamese/M
+Sibelius/M
+Siberia/M
+Siberian/MS
+Sibyl/M
+Sichuan/M
+Sicilian/SM
+Sicily/M
+Sid/M
+Siddhartha/M
+Sidney/M
+Siegfried/M
+Siemens/M
+Sierpinski/M
+Sierras
+Sigismund/M
+Sigmund/M
+Sigurd/M
+Sihanouk/M
+Sikh/M
+Sikhism
+Sikhs
+Sikkim/M
+Sikkimese/M
+Sikorsky/M
+Silas/M
+Silesia/M
+Silurian/SM
+Silva/M
+Silvia/M
+Simenon/M
+Simmental/M
+Simmons/M
+Simon/M
+Simone/M
+Simpson/SM
+Simpsons/M
+Simpsonville/M
+Sims/M
+Sinai/M
+Sinatra/M
+Sinbad/M
+Sinclair/M
+Sindbad/M
+Sindhi/M
+Singapore/M
+Singaporean/SM
+Singer/M
+Singh/M
+Singleton/M
+Sinhalese/M
+Sinkiang/M
+Sioux/M
+Sir/SM
+Sirius/M
+Sistine/M
+Sisyphean/M
+Sisyphus/M
+Siva/M
+Sivan/M
+Sjaelland/M
+Skinner/M
+Skippy/M
+Skopje/M
+Skye/M
+Skylab/M
+Skype/M
+Slackware/M
+Slashdot/M
+Slater/M
+Slav/SM
+Slavic/M
+Slavonic/M
+Slidell/M
+Slinky/M
+Sloan/M
+Sloane/M
+Slocum/M
+Slovak/SM
+Slovakia/M
+Slovakian
+Slovene/SM
+Slovenia/M
+Slovenian/MS
+Slurpee/M
+Sm/M
+Small/M
+Smetana/M
+Smirnoff/M
+Smith/M
+Smithson/M
+Smithsonian/M
+Smokey/M
+Smolensk/M
+Smollett/M
+Smuts/M
+Smyrna
+Sn/M
+Snake/M
+Snapple/M
+Snead/M
+Snell/M
+Snickers/M
+Snider/M
+Snoopy/M
+Snow/M
+Snowbelt/M
+Snyder/M
+Soave/M
+Soc
+Socastee/M
+Socorro/M
+Socrates/M
+Socratic/M
+Soddy/M
+Sodom/M
+Sofia/M
+Soho/M
+Sol/M
+Solis/M
+Solomon/M
+Solon/M
+Solzhenitsyn/M
+Somali/SM
+Somalia/M
+Somalian/MS
+Somme/M
+Somoza/M
+Son/M
+Sondheim/M
+Sondra/M
+Songhai/M
+Songhua/M
+Sonia/M
+Sonja/M
+Sonny/M
+Sonora/M
+Sontag/M
+Sony/M
+Sonya/M
+Sophia/M
+Sophie/M
+Sophoclean/M
+Sophocles/M
+Sopwith/M
+Sorbonne/M
+Sosa/M
+Soto/M
+Souphanouvong/M
+Sourceforge/M
+Sousa/M
+South/M
+Southampton/M
+Southeast/MS
+Southerner/SM
+Southey/M
+Souths
+Southwest/MS
+Soviet/M
+Soweto/M
+Soyinka/M
+Soyuz/M
+Sp
+Spaatz/M
+Spackle/M
+Spahn/M
+Spain/M
+Spam/M
+Span
+Spanglish
+Spaniard/SM
+Spanish/M
+Sparks/M
+Sparta/M
+Spartacus/M
+Spartan/MS
+Spartanburg/M
+Spears/M
+Speer/M
+Spence/RM
+Spencer/M
+Spencerian/M
+Spengler/M
+Spenglerian/M
+Spenser/M
+Spenserian/M
+Sperry/M
+Sphinx/M
+Spica/M
+Spielberg/M
+Spillane/M
+Spinoza/M
+Spinx/M
+Spiro/M
+Spirograph/M
+Spitsbergen/M
+Spitz/M
+Spock/M
+Spokane/M
+Springdale/M
+Springfield/M
+Springsteen/M
+Sprint/M
+Sprite/M
+Sputnik/M
+Sq
+Squanto/M
+Squibb/M
+Sr/M
+Srinagar/M
+Srivijaya/M
+St
+Sta
+Stacey/M
+Staci/M
+Stacie/M
+Stacy/M
+Stael/M
+Stafford/M
+StairMaster/M
+Stalin/M
+Stalingrad/M
+Stalinist/M
+Stallone/M
+Stamford/M
+Stan/M
+Standish/M
+Stanford/M
+Stanislavsky/M
+Stanley/M
+Stanton/M
+Staples/M
+Starbucks/M
+Stark/M
+Starkey/M
+Starr/M
+Staten/M
+States
+Staubach/M
+Staunton/M
+Ste
+Steadicam/M
+Steele/M
+Stefan/M
+Stefanie/M
+Stein/MR
+Steinbeck/M
+Steinem/M
+Steiner/M
+Steinmetz/M
+Steinway/M
+Stella/M
+Stendhal/M
+Stengel/M
+Stephan/M
+Stephanie/M
+Stephen/MS
+Stephens/M
+Stephenson/M
+Sterling/M
+Stern/M
+Sterne/M
+Sterno/M
+Stetson/M
+Steuben/M
+Steubenville/M
+Steve/M
+Steven/MS
+Stevens/M
+Stevenson/M
+Stevie/M
+Stewart/M
+Stieglitz/M
+Stilton/SM
+Stimson/M
+Stine/M
+Stirling/M
+Stockhausen/M
+Stockholm/M
+Stockton/M
+Stoic/SM
+Stoicism/MS
+Stokes/M
+Stolichnaya/M
+Stolypin/M
+Stone/M
+Stonehenge/M
+Stoppard/M
+Stout/M
+Stowe/M
+Strabo/M
+Stradivari
+Stradivarius/M
+Strasbourg/M
+Strauss/M
+Stravinsky/M
+Streisand/M
+Strickland/M
+Strindberg/M
+Stromboli/M
+Strong/M
+Stu/M
+Stuart/MS
+Studebaker/M
+Stuttgart/M
+Stuyvesant/M
+Stygian/M
+Styrofoam/SM
+Styron/M
+Styx/M
+Suarez/M
+Subaru/M
+Sucre/M
+Sucrets/M
+Sudan/M
+Sudanese/M
+Sudetenland/M
+Sudoku/M
+Sudra/M
+Sue/M
+Suetonius/M
+Suez/M
+Suffolk/M
+Sufi/M
+Sufism/M
+Suharto/M
+Sui/M
+Sukarno/M
+Sukkot
+Sulawesi/M
+Suleiman/M
+Sulla/M
+Sullivan/M
+Sumatra/M
+Sumatran/SM
+Sumeria/M
+Sumerian/SM
+Summer/MS
+Summers/M
+Sumner/M
+Sumter/M
+Sun/SM
+Sunbeam/M
+Sunbelt/M
+Sundanese/M
+Sundas/M
+Sunday/MS
+Sung/M
+Sunkist/M
+Sunni/SM
+Sunnite/MS
+Sunnyvale/M
+Superbowl/M
+Superfund/M
+Superglue/M
+Superior/M
+Superman/M
+Supt
+Surabaya/M
+Surat/M
+Suriname/M
+Surinamese
+Surya/M
+Susan/M
+Susana/M
+Susanna/M
+Susanne/M
+Susie/M
+Susquehanna/M
+Sussex/M
+Sutherland/M
+Sutton/M
+Suva/M
+Suwanee/M
+Suzanne/M
+Suzette/M
+Suzhou/M
+Suzuki/M
+Suzy/M
+Svalbard/M
+Sven/M
+Svengali/M
+Sverdlovsk
+Swahili/SM
+Swammerdam/M
+Swanee/M
+Swansea/M
+Swanson/M
+Swazi/SM
+Swaziland/M
+Swed/N
+Swede/SM
+Sweden/M
+Swedenborg/M
+Swedish/M
+Sweeney/M
+Sweet/M
+Swift/M
+Swinburne/M
+Swiss/MS
+Swissair/M
+Switz
+Switzerland/M
+Sybil/M
+Sydney/M
+Sykes/M
+Sylvester/M
+Sylvia/M
+Sylvie/M
+Synge/M
+Syracuse/M
+Syria/M
+Syriac/M
+Syrian/MS
+Szilard/M
+Szymborska/M
+T'ang/M
+T/MDG
+TA
+TARP
+TB/M
+TBA
+TD
+TDD
+TEFL
+TELNET/S
+TELNETTed
+TELNETTing
+TESL
+TESOL
+TGIF
+THC
+TKO/M
+TLC/M
+TM
+TN
+TNT/M
+TOEFL
+TQM
+TV/SM
+TVA
+TWA/M
+TWX
+TX
+Ta/M
+Tabasco/SM
+Tabatha/M
+Tabernacle/MS
+Tabitha/M
+Tabriz/MS
+Tacitus/M
+Tacoma/M
+Tad/M
+Tadzhik/M
+Taegu/M
+Taejon/M
+Taft/M
+Tagalog/SM
+Tagore/M
+Tagus/M
+Tahiti/M
+Tahitian/MS
+Tahoe/M
+Taichung/M
+Tainan
+Taine/M
+Taipei/M
+Taiping/M
+Taiwan/M
+Taiwanese/M
+Taiyuan/M
+Tajikistan/M
+Taklamakan/M
+Talbot/M
+Taliban/M
+Taliesin/M
+Tallahassee/M
+Tallchief/M
+Talley/M
+Talleyrand/M
+Tallinn/M
+Talmud/MS
+Talmudic
+Talmudist
+Tamara/M
+Tameka/M
+Tamera/M
+Tamerlane/M
+Tami/M
+Tamika/M
+Tamil/MS
+Tammany/M
+Tammi/M
+Tammie/M
+Tammuz/M
+Tammy/M
+Tampa/M
+Tampax/M
+Tamra/M
+Tamworth/M
+Tancred/M
+Taney/M
+Tanganyika/M
+Tangier/MS
+Tangshan/M
+Tania/M
+Tanisha/M
+Tanner/M
+Tannhauser/M
+Tantalus/M
+Tanya/M
+Tanzania/M
+Tanzanian/SM
+Tao/M
+Taoism/MS
+Taoist/MS
+Tara/M
+Tarantino/M
+Tarawa/M
+Tarazed/M
+Tarbell/M
+Target/M
+Tarim/M
+Tarkenton/M
+Tarkington/M
+Tartary/M
+Tartuffe/M
+Tarzan/M
+Tasha/M
+Tashkent/M
+Tasman/M
+Tasmania/M
+Tasmanian/M
+Tass/M
+Tatar/MS
+Tate/M
+Tatum/M
+Taurus/MS
+Tavares/M
+Tawney/M
+Taylor/M
+Tb/M
+Tbilisi/M
+Tc/M
+Tchaikovsky/M
+Te/M
+TeX
+TeXes
+Teasdale/M
+Technicolor/M
+Tecumseh/M
+Ted/M
+Teddy/M
+Teflon/MS
+Tegucigalpa/M
+Tehran
+TelePrompTer
+TelePrompter/M
+Telemachus/M
+Telemann/M
+Teletype
+Tell/MR
+Teller/M
+Telugu/M
+Temecula/M
+Tempe
+Templar/M
+Temple/M
+Tenn/M
+Tennessean/SM
+Tennessee/M
+Tennyson/M
+Tennysonian
+Tenochtitlan/M
+TensorFlow/M
+Teotihuacan/M
+Terence/M
+Teresa/M
+Tereshkova/M
+Teri/M
+Terkel/M
+Terpsichore/M
+Terr/M
+Terra/M
+Terran/M
+Terrance/M
+Terrell/M
+Terrence/M
+Terri/M
+Terrie/M
+Terry/M
+Tertiary/M
+Tesla/M
+Tess/M
+Tessa/M
+Tessie/M
+Tet/M
+Tethys/M
+Tetons/M
+Teuton/MS
+Teutonic/M
+Tevet/M
+Tex/M
+Texaco/M
+Texan/MS
+Texarkana/M
+Texas/M
+Th/M
+Thackeray/M
+Thad/M
+Thaddeus/M
+Thai/SM
+Thailand/M
+Thales/M
+Thalia/M
+Thames/M
+Thanh/M
+Thanksgiving/MS
+Thant/M
+Thar/M
+Tharp/M
+Thatcher/M
+Thea/M
+Thebes/M
+Theiler/M
+Thelma/M
+Themistocles/M
+Theocritus/M
+Theodora/M
+Theodore/M
+Theodoric/M
+Theodosius/M
+Theosophy/M
+Theravada/M
+Theresa/M
+Therese/M
+Thermopylae/M
+Thermos
+Theron/M
+Theseus/M
+Thespian/M
+Thespis/M
+Thessalonian/SM
+Thessaloniki/M
+Thessaly/M
+Thieu/M
+Thimbu/M
+Thimphu
+Thomas/M
+Thomism/M
+Thomistic/M
+Thompson/M
+Thomson/M
+Thor/M
+Thorazine/M
+Thoreau/M
+Thornton/M
+Thoroughbred/M
+Thorpe/M
+Thoth/M
+Thrace/M
+Thracian/M
+Thu
+Thucydides/M
+Thule/M
+Thunderbird/M
+Thur/S
+Thurber/M
+Thurman/M
+Thurmond/M
+Thursday/SM
+Thutmose/M
+Ti/M
+Tia/M
+Tianjin/M
+Tiber/M
+Tiberius/M
+Tibet/M
+Tibetan/MS
+Ticketmaster/M
+Ticonderoga/M
+Tide/M
+Tienanmen/M
+Tiffany/M
+Tigris/M
+Tijuana/M
+Tillich/M
+Tillman/M
+Tilsit/M
+Tim/M
+Timbuktu/M
+Timex/M
+Timmy/M
+Timon/M
+Timor/M
+Timothy/M
+Timur/M
+Timurid/M
+Tina/M
+Ting/M
+Tinkerbell/M
+Tinkertoy/M
+Tinseltown/M
+Tintoretto/M
+Tippecanoe/M
+Tipperary/M
+Tirane
+Tiresias/M
+Tirol/M
+Tirolean
+Tisha/M
+Tishri/M
+Titan/SM
+Titania/M
+Titanic/M
+Titian/M
+Titicaca/M
+Tito/M
+Titus/M
+Titusville/M
+Tl/M
+Tlaloc/M
+Tlingit/M
+Tm/M
+Tobago/M
+Tobit/M
+Toby/M
+Tocantins/M
+Tocqueville/M
+Tod/M
+Todd/M
+Togo/M
+Togolese/M
+Tojo/M
+Tokay/M
+Tokugawa/M
+Tokyo/M
+Tokyoite
+Toledo/MS
+Tolkien/M
+Tolstoy/M
+Toltec/M
+Tolyatti/M
+Tom/M
+Tomas/M
+Tombaugh/M
+Tomlin/M
+Tommie/M
+Tommy/M
+Tompkins/M
+Tomsk/M
+Tonga/M
+Tongan/MS
+Toni/M
+Tonia/M
+Tonto/M
+Tony/M
+Tonya/M
+Topeka/M
+Topsy/M
+Torah/M
+Torahs
+Toronto/M
+Torquemada/M
+Torrance/M
+Torrens/M
+Torres/M
+Torricelli/M
+Tortola/M
+Tortuga/M
+Torvalds/M
+Tory/SM
+Tosca/M
+Toscanini/M
+Toshiba/M
+Toto/M
+Toulouse/M
+Townes/M
+Townsend/M
+Toynbee/M
+Toyoda/M
+Toyota/M
+Tracey/M
+Traci/M
+Tracie/M
+Tracy/M
+Trafalgar/M
+Trailways/M
+Trajan/M
+Tran/M
+Transcaucasia/M
+Transvaal/M
+Transylvania/M
+Transylvanian/M
+Trappist/SM
+Travis/M
+Travolta/M
+Treasury/SM
+Treblinka/M
+Trekkie/M
+Trent/M
+Trenton/M
+Trevelyan/M
+Trevino/M
+Trevor/M
+Trey/M
+Triangulum/M
+Triassic/M
+Tricia/M
+Trident/M
+Trieste/M
+Trimurti/M
+Trina/M
+Trinidad/M
+Trinidadian/MS
+Trinity/SM
+Tripitaka/M
+Tripoli/M
+Trippe/M
+Trisha/M
+Tristan/M
+Triton/M
+Trobriand/M
+Troilus/M
+Trojan/MS
+Trollope/M
+Trondheim/M
+Tropicana/M
+Trotsky/M
+Troy/M
+Troyes
+Truckee/M
+Trudeau/M
+Trudy/M
+Truffaut/M
+Trujillo/M
+Truman/M
+Trumbull/M
+Trump/M
+Truth/M
+Tsimshian/M
+Tsiolkovsky/M
+Tsitsihar/M
+Tsongkhapa/M
+Tswana/M
+Tu/M
+Tuamotu/M
+Tuareg/M
+Tubman/M
+Tucker/M
+Tucson/M
+Tucuman/M
+Tudor/SM
+Tue/S
+Tues/M
+Tuesday/MS
+Tulane/M
+Tull/M
+Tulsa/M
+Tulsidas/M
+Tums/M
+Tungus/M
+Tunguska/M
+Tunis/M
+Tunisia/M
+Tunisian/MS
+Tunney/M
+Tupi/M
+Tupperware/M
+Tupungato/M
+Turgenev/M
+Turin/M
+Turing/M
+Turk/SM
+Turkestan/M
+Turkey/M
+Turkic/MS
+Turkish/M
+Turkmenistan/M
+Turlock/M
+Turner/M
+Turpin/M
+Tuscaloosa/M
+Tuscan/M
+Tuscany/M
+Tuscarora/MS
+Tuscon/M
+Tuskegee/M
+Tussaud/M
+Tut/M
+Tutankhamen/M
+Tutsi/M
+Tutu/M
+Tuvalu/M
+Tuvaluan
+Twain/M
+Tweed/M
+Tweedledee/M
+Tweedledum/M
+Twila/M
+Twinkies/M
+Twitter/M
+Twizzlers/M
+Twp
+Ty/M
+Tycho/M
+Tylenol/M
+Tyler/M
+Tyndale/M
+Tyndall/M
+Tyre/M
+Tyree/M
+Tyrolean
+Tyrone/M
+Tyson/M
+U/M
+UAR
+UAW
+UBS/M
+UCLA/M
+UFO/SM
+UHF/M
+UK/M
+UL
+UN/M
+UNESCO/M
+UNICEF/M
+UNIX/M
+UPC
+UPI/M
+UPS/M
+URL/S
+US/M
+USA/M
+USAF
+USB
+USCG
+USDA/M
+USIA
+USMC
+USN
+USO
+USP
+USPS
+USS
+USSR/M
+UT/M
+UTC
+UV/M
+Ubangi/M
+Ubuntu/M
+Ucayali/M
+Uccello/M
+Udall/M
+Ufa/M
+Uganda/M
+Ugandan/MS
+Uighur/M
+Ujungpandang/M
+Ukraine/M
+Ukrainian/SM
+Ulster/M
+Ultrasuede/M
+Ulyanovsk/M
+Ulysses/M
+Umbriel/M
+Underwood/M
+Ungava/M
+Unicode/M
+Unilever/M
+Union/SM
+Unionist
+Uniontown/M
+Uniroyal/M
+Unitarian/MS
+Unitarianism/MS
+Unitas/M
+Unix/S
+Unukalhai/M
+Upanishads/M
+Updike/M
+Upjohn/M
+Upton/M
+Ur/M
+Ural/SM
+Urals/M
+Urania/M
+Uranus/M
+Urban/M
+Urdu/M
+Urey/M
+Uriah/M
+Uriel/M
+Uris/M
+Urquhart/M
+Ursa/M
+Ursula/M
+Ursuline/M
+Uruguay/M
+Uruguayan/MS
+Urumqi/M
+Usenet/MS
+Ustinov/M
+Ut
+Utah/M
+Utahan/MS
+Ute/SM
+Utica/M
+Utopia/SM
+Utopian/SM
+Utrecht/M
+Utrillo/M
+Uzbek/M
+Uzbekistan/M
+Uzi/SM
+V/M
+VA
+VAT/M
+VAX
+VAXes
+VBA/M
+VCR/M
+VD/M
+VDT
+VDU
+VF
+VFW/M
+VG
+VGA
+VHF/M
+VHS
+VI/M
+VIP/SM
+VISTA
+VJ
+VLF/M
+VOA
+VP
+VT
+VTOL
+Va/M
+Vacaville/M
+Vader/M
+Vaduz/M
+Val/M
+Valarie/M
+Valdez/M
+Valdosta/M
+Valencia/SM
+Valenti/M
+Valentin/M
+Valentine/M
+Valentino/M
+Valenzuela/M
+Valeria/M
+Valerian/M
+Valerie/M
+Valery/M
+Valhalla/M
+Valium/MS
+Valkyrie/SM
+Vallejo/M
+Valletta/M
+Valois/M
+Valparaiso/M
+Valvoline/M
+Van/M
+Vance/M
+Vancouver/M
+Vandal/MS
+Vanderbilt/M
+Vandyke/M
+Vanessa/M
+Vang/M
+Vanuatu/M
+Vanzetti/M
+Varanasi/M
+Varese/M
+Vargas/M
+Vaseline/SM
+Vasquez/M
+Vassar/M
+Vatican/M
+Vauban/M
+Vaughan/M
+Vaughn/M
+Vazquez/M
+Veblen/M
+Veda/SM
+Vedanta/M
+Vega/SM
+Vegas/M
+Vegemite/M
+Vela/M
+Velasquez/M
+Velazquez/M
+Velcro/MS
+Velez/M
+Velma/M
+Velveeta/M
+Venetian/SM
+Venezuela/M
+Venezuelan/SM
+Venice/M
+Venn/M
+Ventolin/M
+Venus/MS
+Venusian/M
+Vera/M
+Veracruz/M
+Verde/M
+Verdi/M
+Verdun/M
+Verizon/M
+Verlaine/M
+Vermeer/M
+Vermont/ZMR
+Vermonter/M
+Vern/M
+Verna/M
+Verne/M
+Vernon/M
+Verona/M
+Veronese/M
+Veronica/M
+Versailles/M
+Vesalius/M
+Vespasian/M
+Vespucci/M
+Vesta/M
+Vesuvius/M
+Viacom/M
+Viagra/M
+Vic/M
+Vicente/M
+Vichy/M
+Vicki/M
+Vickie/M
+Vicksburg/M
+Vicky/M
+Victor/M
+Victoria/M
+Victorian/MS
+Victorianism
+Victorville/M
+Victrola/M
+Vidal/M
+Vienna/M
+Viennese/M
+Vientiane/M
+Vietcong/M
+Vietminh/M
+Vietnam/M
+Vietnamese/M
+Vijayanagar/M
+Vijayawada/M
+Viking/MS
+Vila/M
+Villa/SM
+Villarreal/M
+Villas/M
+Villon/M
+Vilma/M
+Vilnius/M
+Vilyui/M
+Vince/M
+Vincent/M
+Vindemiatrix/M
+Vineland/M
+Vinson/M
+Viola/M
+Violet/M
+Virgie/M
+Virgil/M
+Virginia/M
+Virginian/SM
+Virgo/SM
+Visa/M
+Visalia/M
+Visayans/M
+Vishnu/M
+Visigoth/M
+Visigoths
+Vistula/M
+Vitim/M
+Vito/M
+Vitus/M
+Vivaldi/M
+Vivekananda/M
+Vivian/M
+Vivienne/M
+Vlad/M
+Vladimir/M
+Vladivostok/M
+Vlaminck/M
+Vlasic/M
+VoIP
+Vogue/M
+Volcker/M
+Voldemort/M
+Volga/M
+Volgograd/M
+Volkswagen/M
+Volstead/M
+Volta/M
+Voltaire/M
+Volvo/M
+Vonda/M
+Vonnegut/M
+Voronezh/M
+Vorster/M
+Voyager/M
+Vt
+Vuitton/M
+Vulcan/M
+Vulg
+Vulgate/SM
+W/MDT
+WA
+WAC
+WASP/M
+WATS/M
+WC
+WHO/M
+WI
+WMD
+WNW/M
+WP
+WSW/M
+WTO
+WV
+WW
+WWI
+WWII
+WWW/M
+WY
+WYSIWYG
+Wabash/M
+Wac
+Waco/M
+Wade/M
+Wagner/M
+Wagnerian/M
+Wahhabi/M
+Waikiki/M
+Waite/M
+Wake/M
+Waksman/M
+Wald/MN
+Waldemar/M
+Walden/M
+Waldensian/M
+Waldheim/M
+Waldo/M
+Waldorf/M
+Wales/M
+Walesa/M
+Walgreen/SM
+Walgreens/M
+Walker/M
+Walkman/M
+Wall/SMR
+Wallace/M
+Wallenstein/M
+Waller/M
+Wallis/M
+Walloon/M
+Walls/M
+Walmart/M
+Walpole/M
+Walpurgisnacht/M
+Walsh/M
+Walt/MRZ
+Walter/M
+Walters/M
+Walton/M
+Wanamaker/M
+Wanda/M
+Wang/M
+Wankel/M
+Ward/M
+Ware/MG
+Warhol/M
+Waring/M
+Warner/M
+Warren/M
+Warsaw/M
+Warwick/M
+Wasatch/M
+Wash/M
+Washington/M
+Washingtonian/MS
+Wassermann/M
+Waterbury/M
+Waterford/M
+Watergate/M
+Waterloo/MS
+Waters/M
+Watertown/M
+Watkins/M
+Watson/M
+Watsonville/M
+Watt/SM
+Watteau/M
+Watts/M
+Watusi/M
+Waugh/M
+Wausau/M
+Wave
+Wayne/M
+Waynesboro/M
+Weaver/M
+Web/MR
+Webb/M
+Weber/M
+Webern/M
+Webster/MS
+Wed/M
+Weddell/M
+Wedgwood/M
+Wednesday/MS
+Weeks/M
+Wehrmacht/M
+Wei/M
+Weierstrass/M
+Weill/M
+Weinberg/M
+Weirton/M
+Weiss/M
+Weissmuller/M
+Weizmann/M
+Weldon/M
+Welland/M
+Weller/M
+Welles/M
+Wellington/SM
+Wells/M
+Welsh/M
+Welshman/M
+Welshmen/M
+Welshwoman
+Wenatchee/M
+Wendell/M
+Wendi/M
+Wendy/M
+Wesak/M
+Wesley/M
+Wesleyan/M
+Wessex/M
+Wesson/M
+West/SM
+Western/MRS
+Westinghouse/M
+Westminster/M
+Weston/M
+Westphalia/M
+Weyden/M
+Wezen/M
+Wharton/M
+Wheaties/M
+Wheatstone/M
+Wheeler/M
+Wheeling/M
+Whig/SM
+Whipple/M
+Whirlpool/M
+Whistler/M
+Whitaker/M
+White/SM
+Whitefield/M
+Whitehall/M
+Whitehead/M
+Whitehorse/M
+Whiteley/M
+Whitfield/M
+Whitley/M
+Whitman/M
+Whitney/M
+Whitsunday/MS
+Whittier/M
+WiFi
+Wicca/M
+Wichita/M
+Wiemar/M
+Wiesel/M
+Wiesenthal/M
+Wiggins/M
+Wigner/M
+Wii/M
+Wikileaks
+Wikipedia/M
+Wilberforce/M
+Wilbert/M
+Wilbur/M
+Wilburn/M
+Wilcox/M
+Wilda/M
+Wilde/MR
+Wilder/M
+Wiles/M
+Wiley/M
+Wilford/M
+Wilfred/M
+Wilfredo/M
+Wilhelm/M
+Wilhelmina/M
+Wilkerson/M
+Wilkes/M
+Wilkins/M
+Wilkinson/M
+Will/M
+Willa/M
+Willamette/M
+Willard/M
+Willemstad/M
+William/SM
+Williams/M
+Williamsburg/M
+Williamson/M
+Williamsport/M
+Willie/M
+Willis/M
+Willy/M
+Wilma/M
+Wilmer/M
+Wilmington/M
+Wilson/M
+Wilsonian/M
+Wilton/M
+Wimbledon/M
+Wimsey/M
+Winchell/M
+Winchester/MS
+Windbreaker/M
+Windex/M
+Windhoek/M
+Windows/M
+Windsor/SM
+Windward/M
+Winesap/M
+Winfred/M
+Winfrey/M
+Winifred/M
+Winkle/M
+Winnebago/M
+Winnie/M
+Winnipeg/M
+Winston/M
+Winters/M
+Winthrop/M
+Wis
+Wisc
+Wisconsin/M
+Wisconsinite/MS
+Wise/M
+Witt/M
+Wittgenstein/M
+Witwatersrand/M
+Wm/M
+Wobegon/M
+Wodehouse/M
+Wolf/M
+Wolfe/M
+Wolff/M
+Wolfgang/M
+Wollongong/M
+Wollstonecraft/M
+Wolsey/M
+Wolverhampton
+Wonder/M
+Wonderbra/M
+Wong/M
+Wood/SM
+Woodard/M
+Woodhull/M
+Woodland/M
+Woodrow/M
+Woods/M
+Woodstock/M
+Woodward/M
+Woolf/M
+Woolite/M
+Woolongong/M
+Woolworth/M
+Wooster/M
+Wooten/M
+Worcester/SM
+Worcestershire/M
+WordPress/M
+Wordsworth/M
+Workman/M
+Worms/M
+Wotan/M
+Wovoka/M
+Wozniak/M
+Wozzeck/M
+Wrangell/M
+Wren/M
+Wright/M
+Wrigley/M
+Wroclaw/M
+Wu/M
+Wuhan/M
+Wurlitzer/M
+Wyatt/M
+Wycherley/M
+Wycliffe/M
+Wyeth/M
+Wylie/M
+Wynn/M
+Wyo
+Wyoming/M
+Wyomingite/SM
+X/M
+XEmacs/M
+XL/M
+XML
+XS
+XXL
+Xamarin/M
+Xanadu/M
+Xanthippe/M
+Xavier/M
+Xe/SM
+Xenakis/M
+Xenia/M
+Xenophon/M
+Xerox/MS
+Xerxes/M
+Xhosa/M
+Xi'an/M
+Xian/SM
+Xiaoping/M
+Ximenes/M
+Xingu/M
+Xinjiang/M
+Xiongnu/M
+Xizang/M
+Xmas/MS
+Xochipilli/M
+Xuzhou/M
+Y/M
+YMCA/M
+YMHA
+YMMV
+YT
+YWCA/M
+YWHA
+Yacc/M
+Yahoo/M
+Yahtzee/M
+Yahweh/M
+Yakima/M
+Yakut/M
+Yakutsk/M
+Yale/M
+Yalow/M
+Yalta/M
+Yalu/M
+Yamagata/M
+Yamaha/M
+Yamoussoukro/M
+Yang/M
+Yangon/M
+Yangtze/M
+Yank/SM
+Yankee/SM
+Yaobang/M
+Yaounde/M
+Yaqui/M
+Yaren
+Yaroslavl/M
+Yataro/M
+Yates/M
+Yauco/M
+Yb/M
+Yeager/M
+Yeats/M
+Yekaterinburg/M
+Yellowknife/M
+Yellowstone/M
+Yeltsin/M
+Yemen/M
+Yemeni/SM
+Yemenite
+Yenisei/M
+Yerevan/M
+Yerkes/M
+Yesenia/M
+Yevtushenko/M
+Yggdrasil/M
+Yiddish/M
+Ymir/M
+Yoda/M
+Yoknapatawpha/M
+Yoko/M
+Yokohama/M
+Yolanda/M
+Yong/M
+Yonkers/M
+York/M
+Yorkie/M
+Yorkshire/MS
+Yorktown/M
+Yoruba/M
+Yosemite/M
+Yossarian/M
+YouTube/M
+Young/M
+Youngstown/M
+Ypres/M
+Ypsilanti/M
+Yuan/M
+Yucatan/M
+Yugo/M
+Yugoslav/MS
+Yugoslavia/M
+Yugoslavian/SM
+Yukon/M
+Yule/SM
+Yuletide/MS
+Yuma/SM
+Yunnan/M
+Yuri/M
+Yves/M
+Yvette/M
+Yvonne/M
+Z/SMNXT
+Zachariah/M
+Zachary/M
+Zachery/M
+Zagreb/M
+Zaire/M
+Zairian
+Zambezi/M
+Zambia/M
+Zambian/SM
+Zamboni/M
+Zamenhof/M
+Zamora/M
+Zane/M
+Zanuck/M
+Zanzibar/M
+Zapata/M
+Zaporozhye/M
+Zapotec/M
+Zappa/M
+Zara/M
+Zarathustra/M
+Zealand/M
+Zebedee/M
+Zechariah/M
+Zedekiah/M
+Zedong/M
+Zeffirelli/M
+Zeke/M
+Zelig/M
+Zelma/M
+Zen/M
+Zenger/M
+Zeno/M
+Zephaniah/M
+Zephyrhills/M
+Zephyrus/M
+Zest/M
+Zeus/M
+Zhdanov
+Zhejiang/M
+Zhengzhou/M
+Zhivago/M
+Zhukov/M
+Zibo/M
+Ziegfeld/M
+Ziegler/M
+Ziggy/M
+Zika
+Zimbabwe/M
+Zimbabwean/SM
+Zimmerman/M
+Zinfandel/M
+Zion/SM
+Zionism/SM
+Zionist/SM
+Ziploc/M
+Zn/M
+Zoe/M
+Zola/M
+Zollverein/M
+Zoloft/M
+Zomba/M
+Zorn/M
+Zoroaster/M
+Zoroastrian/MS
+Zoroastrianism/SM
+Zorro/M
+Zosma/M
+Zr/M
+Zsigmondy/M
+Zubenelgenubi/M
+Zubeneschamali/M
+Zukor/M
+Zulu/SM
+Zululand
+Zuni/M
+Zurich/M
+Zwingli/M
+Zworykin/M
+Zyrtec/M
+Zyuganov/M
+Zzz
+a/S
+aah
+aardvark/SM
+ab/SDY
+aback
+abacus/MS
+abaft
+abalone/SM
+abandon/LSDG
+abandonment/M
+abase/LGDS
+abasement/M
+abash/GLDS
+abashed/UY
+abashment/M
+abate/LGDS
+abated/U
+abatement/M
+abattoir/MS
+abbe/SM
+abbess/MS
+abbey/MS
+abbot/MS
+abbr
+abbrev/S
+abbreviate/DSGNX
+abbreviation/M
+abdicate/GNDSX
+abdication/M
+abdomen/SM
+abdominal
+abduct/DSG
+abductee/MS
+abduction/SM
+abductor/MS
+abeam
+aberrant
+aberration/MS
+aberrational
+abet/S
+abetted
+abetting
+abettor/SM
+abeyance/M
+abhor/S
+abhorred
+abhorrence/M
+abhorrent/Y
+abhorring
+abidance/M
+abide/GS
+abiding/Y
+ability/IEMS
+abject/YP
+abjection/M
+abjectness/M
+abjuration/SM
+abjuratory
+abjure/ZGDRS
+abjurer/M
+ablate/XGNVDS
+ablation/M
+ablative/MS
+ablaze
+able/UT
+abler
+abloom
+ablution/SM
+abnegate/GNDS
+abnegation/M
+abnormal/Y
+abnormality/SM
+aboard
+abode/MS
+abolish/GDS
+abolition/M
+abolitionism/M
+abolitionist/SM
+abominable
+abominably
+abominate/DSGNX
+abomination/M
+aboriginal/MS
+aborigine/SM
+aborning
+abort/GVDS
+abortion/MS
+abortionist/MS
+abortive/Y
+abound/DSG
+about
+above/M
+aboveboard
+abracadabra/M
+abrade/GDS
+abrasion/MS
+abrasive/MYPS
+abrasiveness/M
+abreast
+abridge/DSG
+abridgment/MS
+abroad
+abrogate/XGNDS
+abrogation/M
+abrogator/MS
+abrupt/TPRY
+abruptness/M
+abs/M
+abscess/MDSG
+abscissa/SM
+abscission/M
+abscond/ZGSDR
+absconder/M
+abseil/MDSG
+absence/SM
+absent/DYSG
+absentee/MS
+absenteeism/M
+absentminded/YP
+absentmindedness/M
+absinthe/M
+absolute/PMYTNS
+absoluteness/M
+absolution/M
+absolutism/M
+absolutist/MS
+absolve/DSG
+absorb/AGDS
+absorbance
+absorbency/M
+absorbent/SM
+absorbing/Y
+absorption/M
+absorptive
+abstain/DRZGS
+abstainer/M
+abstemious/PY
+abstemiousness/M
+abstention/MS
+abstinence/M
+abstinent
+abstract/GSPMDY
+abstracted/YP
+abstractedness/M
+abstraction/SM
+abstractness/MS
+abstruse/YP
+abstruseness/M
+absurd/TPRY
+absurdist/MS
+absurdity/SM
+absurdness/M
+abundance/SM
+abundant/Y
+abuse's
+abuse/EGVDS
+abuser/MS
+abusive/YP
+abusiveness/M
+abut/SL
+abutment/MS
+abutted
+abutting
+abuzz
+abysmal/Y
+abyss/MS
+abyssal
+ac
+acacia/MS
+academe/M
+academia/M
+academic/SM
+academical/Y
+academician/MS
+academy/SM
+acanthus/MS
+accede/GDS
+accelerate/GNXDS
+acceleration/M
+accelerator/SM
+accent/MDSG
+accented/U
+accentual
+accentuate/GNDS
+accentuation/M
+accept/DSBG
+acceptability/M
+acceptableness/M
+acceptably/U
+acceptance/SM
+acceptation/MS
+accepted/U
+access/MDSG
+accessibility/IM
+accessible/I
+accessibly/I
+accession/MDGS
+accessorize/DSG
+accessory/SM
+accident/MS
+accidental/SMY
+acclaim/MDGS
+acclamation/M
+acclimate/DSGN
+acclimation/M
+acclimatization/M
+acclimatize/DSG
+acclivity/SM
+accolade/SM
+accommodate/XGNDS
+accommodating/Y
+accommodation/M
+accompanied/U
+accompaniment/MS
+accompanist/SM
+accompany/DSG
+accomplice/SM
+accomplish/DSLG
+accomplished/U
+accomplishment/MS
+accord/GMDS
+accordance/M
+accordant
+according/Y
+accordion/MS
+accordionist/MS
+accost/GMDS
+account/MDSBG
+accountability/M
+accountable/U
+accountancy/M
+accountant/MS
+accounted/U
+accounting/M
+accouter/SGD
+accouterments/M
+accredit/SGD
+accreditation/M
+accredited/U
+accretion/MS
+accrual/MS
+accrue/GDS
+acct
+acculturate/DSGN
+acculturation/M
+accumulate/XGNVDS
+accumulation/M
+accumulator/MS
+accuracy/IM
+accurate/IY
+accurateness/M
+accursed/P
+accursedness/M
+accusation/MS
+accusative/MS
+accusatory
+accuse/ZGDRS
+accuser/M
+accusing/Y
+accustom/DSG
+accustomed/U
+ace/DSMG
+acerbate/DSG
+acerbic
+acerbically
+acerbity/M
+acetaminophen/M
+acetate/MS
+acetic
+acetone/M
+acetonic
+acetyl
+acetylene/M
+ache/DSMG
+achene/MS
+achievable/U
+achieve/BLZGDRS
+achievement/SM
+achiever/M
+aching/Y
+achoo/M
+achromatic
+achy/TR
+acid/SMY
+acidic
+acidify/GDS
+acidity/M
+acidosis/M
+acidulous
+acknowledge/DSG
+acknowledged/U
+acknowledgment/SM
+acme/SM
+acne/M
+acolyte/MS
+aconite/MS
+acorn/MS
+acoustic/S
+acoustical/Y
+acoustics/M
+acquaint/AGSD
+acquaintance/SM
+acquaintanceship/M
+acquainted/U
+acquiesce/DSG
+acquiescence/M
+acquiescent/Y
+acquire/ZGBDRSL
+acquirement/M
+acquisition/MS
+acquisitive/YP
+acquisitiveness/M
+acquit/S
+acquittal/MS
+acquitted
+acquitting
+acre/SM
+acreage/MS
+acrid/PTRY
+acridity/M
+acridness/M
+acrimonious/YP
+acrimoniousness/M
+acrimony/M
+acrobat/MS
+acrobatic/S
+acrobatically
+acrobatics/M
+acronym/MS
+acrophobia/M
+acropolis/MS
+across
+acrostic/SM
+acrylamide
+acrylic/MS
+act's
+act/ASDGV
+acting/M
+actinium/M
+action/ASM
+actionable
+activate/ICANGSD
+activation/ICAM
+activator/MS
+active's
+active/IKY
+activeness/M
+actives
+activism/M
+activist/MS
+activities
+activity/IM
+actor/AMS
+actress/MS
+actual/Y
+actuality/SM
+actualization/M
+actualize/GDS
+actuarial
+actuary/SM
+actuate/GNDS
+actuation/M
+actuator/SM
+acuity/M
+acumen/M
+acupressure/M
+acupuncture/M
+acupuncturist/SM
+acute/PMYTRS
+acuteness/M
+acyclovir/M
+acyl
+ad/SM
+adage/MS
+adagio/MS
+adamant/MY
+adapt/BZGVDRS
+adaptability/M
+adaptation/MS
+adapter/M
+adaption/S
+add/SDRBZG
+addend/MS
+addenda
+addendum/M
+adder/M
+addict/GVMDS
+addiction/SM
+addition/SM
+additional/Y
+additive/SM
+addle/GDS
+address's
+address/AGDS
+addressable
+addressed/U
+addressee/SM
+adduce/GDS
+adenine/M
+adenocarcinoma
+adenoid/SM
+adenoidal
+adept/MYPS
+adeptness/M
+adequacy/IM
+adequate/IY
+adequateness/M
+adhere/GDS
+adherence/M
+adherent/SM
+adhesion/M
+adhesive/PSM
+adhesiveness/M
+adiabatic
+adieu/MS
+adios
+adipose
+adj
+adjacency/M
+adjacent/Y
+adjectival/Y
+adjective/MS
+adjoin/GDS
+adjourn/DGLS
+adjournment/SM
+adjudge/GDS
+adjudicate/GNVXDS
+adjudication/M
+adjudicator/SM
+adjudicatory
+adjunct/MS
+adjuration/MS
+adjure/GDS
+adjust/AGDSL
+adjustable
+adjuster/SM
+adjustment/AMS
+adjutant/SM
+adman/M
+admen
+admin/S
+administer/DGS
+administrate/XDSGNV
+administration/M
+administrative/Y
+administrator/MS
+admirably
+admiral/MS
+admiralty/M
+admiration/M
+admire/BZGDRS
+admirer/M
+admiring/Y
+admissibility/IM
+admissible/I
+admissibly
+admission/AM
+admissions
+admit/AS
+admittance/M
+admitted/Y
+admitting/A
+admix/GDS
+admixture/SM
+admonish/LDSG
+admonishment/MS
+admonition/MS
+admonitory
+ado/M
+adobe/MS
+adolescence/SM
+adolescent/SM
+adopt/AGVDS
+adoptable
+adopter/MS
+adoption/SM
+adorableness/M
+adorably
+adoration/M
+adore/BZGDRS
+adorer/M
+adoring/Y
+adorn/LGDS
+adorned/U
+adornment/MS
+adrenal/MS
+adrenalin's
+adrenaline/M
+adrenergic
+adrift
+adroit/PY
+adroitness/M
+adsorb/SDG
+adsorbent/MS
+adsorption/SM
+adulate/DSGN
+adulation/M
+adulator/MS
+adulatory
+adult/MS
+adulterant/MS
+adulterate/GNDS
+adulterated/U
+adulteration/M
+adulterer/SM
+adulteress/MS
+adulterous
+adultery/SM
+adulthood/M
+adumbrate/GNDS
+adumbration/M
+adv
+advance/LDSMG
+advancement/SM
+advantage/EDSMG
+advantageous/EY
+advent/SM
+adventitious/Y
+adventure/DRSMZG
+adventurer/M
+adventuresome
+adventuress/MS
+adventurism
+adventurist/S
+adventurous/YP
+adventurousness/M
+adverb/SM
+adverbial/SMY
+adversarial
+adversary/SM
+adverse/PRYT
+adverseness/M
+adversity/SM
+advert/SMDG
+advertise/LZGDRS
+advertised/U
+advertisement/MS
+advertiser/M
+advertising/M
+advertorial/SM
+advice/M
+advisability/IM
+advisable/I
+advisably
+advise/LDRSZGB
+advised/UY
+advisement/M
+adviser/M
+advisor/SM
+advisory/SM
+advocacy/M
+advocate/MGDS
+advt
+adware
+adze/SM
+aegis/M
+aerate/DSGN
+aeration/M
+aerator/SM
+aerial/SMY
+aerialist/MS
+aerie/MS
+aerobatic/S
+aerobatics/M
+aerobic/S
+aerobically
+aerobics/M
+aerodrome/MS
+aerodynamic/S
+aerodynamically
+aerodynamics/M
+aerogram/S
+aeronautic/S
+aeronautical
+aeronautics/M
+aerosol/MS
+aerospace/M
+aery
+aesthete/MS
+aesthetic/S
+aesthetically
+aestheticism/M
+aesthetics/M
+afar
+affability/M
+affable
+affably
+affair/MS
+affect's
+affect/EGDS
+affectation/SM
+affected/UY
+affecting/Y
+affection/EM
+affectionate/Y
+affections
+afferent
+affiance/GDS
+affidavit/SM
+affiliate's
+affiliate/EGNDS
+affiliated/U
+affiliation/EM
+affiliations
+affine
+affinity/SM
+affirm/AGDS
+affirmation/AMS
+affirmative/MYS
+affix/GMDS
+afflatus/M
+afflict/GDS
+affliction/SM
+affluence/M
+affluent/Y
+afford/GDSB
+affordability
+affordably
+afforest/EGSD
+afforestation/M
+affray/MS
+affront/GMDS
+afghan/MS
+aficionado/MS
+afield
+afire
+aflame
+afloat
+aflutter
+afoot
+aforementioned
+aforesaid
+aforethought
+afoul
+afraid/U
+afresh
+aft/RZ
+afterbirth/M
+afterbirths
+afterburner/MS
+aftercare/M
+aftereffect/MS
+afterglow/SM
+afterimage/MS
+afterlife/M
+afterlives
+aftermarket/MS
+aftermath/M
+aftermaths
+afternoon/MS
+aftershave/SM
+aftershock/SM
+aftertaste/SM
+afterthought/SM
+afterward/S
+afterword/MS
+again
+against
+agape/M
+agar/M
+agate/MS
+agave/M
+age/DSMGJ
+ageism/M
+ageist/SM
+ageless/YP
+agelessness/M
+agency/SM
+agenda/SM
+agenesis
+agent/AMS
+ageratum/M
+agglomerate/DSMGNX
+agglomeration/M
+agglutinate/DSXGN
+agglutination/M
+aggrandize/GLDS
+aggrandizement/M
+aggravate/GNXDS
+aggravating/Y
+aggravation/M
+aggregate/MGNDSX
+aggregation/M
+aggregator/SM
+aggression/M
+aggressive/PY
+aggressiveness/M
+aggressor/SM
+aggrieve/DSG
+aggro
+aghast
+agile/Y
+agility/M
+aging/M
+agitate/XGNDS
+agitation/M
+agitator/MS
+agitprop/M
+agleam
+aglitter
+aglow
+agnostic/MS
+agnosticism/M
+ago
+agog
+agonist/S
+agonize/GDS
+agonizing/Y
+agony/SM
+agoraphobia/M
+agoraphobic/MS
+agrarian/MS
+agrarianism/M
+agree/EBLDS
+agreeableness/EM
+agreeably/E
+agreeing/E
+agreement/ESM
+agribusiness/MS
+agricultural/Y
+agriculturalist/MS
+agriculture/M
+agriculturist/MS
+agronomic
+agronomist/MS
+agronomy/M
+aground
+ague/M
+ah
+aha
+ahchoo
+ahead
+ahem
+ahoy
+aid/SMDG
+aide/SM
+aided/U
+aigrette/MS
+ail/SDLG
+aileron/SM
+ailment/SM
+aim/SMDG
+aimless/YP
+aimlessness/M
+ain't
+air/SMDJG
+airbag/MS
+airbase/SM
+airbed/S
+airborne
+airbrush/MDSG
+airbus/MS
+aircraft/M
+aircraftman
+aircraftmen
+aircrew/S
+airdrome/S
+airdrop/SM
+airdropped
+airdropping
+airfare/SM
+airfield/SM
+airflow/M
+airfoil/SM
+airfreight/M
+airguns
+airhead/SM
+airily
+airiness/M
+airing/M
+airless/P
+airlessness/M
+airletters
+airlift/SGMD
+airline/RSMZ
+airliner/M
+airlock/SM
+airmail/GSMD
+airman/M
+airmen
+airplane/MS
+airplay/M
+airport/SM
+airship/SM
+airshow/S
+airsick/P
+airsickness/M
+airspace/M
+airspeed
+airstrike/MS
+airstrip/SM
+airtight
+airtime/M
+airwaves/M
+airway/MS
+airwoman
+airwomen
+airworthiness/M
+airworthy/P
+airy/PTR
+aisle/MS
+aitch/MS
+ajar
+aka
+akimbo
+akin
+alabaster/M
+alack
+alacrity/M
+alarm/GMDS
+alarming/Y
+alarmist/SM
+alas
+alb/SM
+albacore/SM
+albatross/MS
+albeit
+albinism/M
+albino/MS
+album/MNS
+albumen/M
+albumin/M
+albuminous
+alchemist/SM
+alchemy/M
+alcohol/SM
+alcoholic/MS
+alcoholically
+alcoholism/M
+alcove/MS
+alder/MS
+alderman/M
+aldermen
+alderwoman/M
+alderwomen
+ale/SMV
+aleatory
+alehouse/SM
+alembic/SM
+alert/GMDYPS
+alertness/M
+alewife/M
+alewives
+alfalfa/M
+alfresco
+alga/M
+algae
+algal
+algebra/SM
+algebraic
+algebraically
+algorithm/SM
+algorithmic
+alias/GMDS
+alibi/GMDS
+alien/BGMDS
+alienable/IU
+alienate/DSGN
+alienation/M
+alienist/SM
+alight/GDS
+align/ALGDS
+aligned/U
+aligner/MS
+alignment/AMS
+alike/U
+aliment/MDSG
+alimentary
+alimony/M
+aliveness/M
+aliyah/M
+aliyahs
+alkali/M
+alkalies
+alkaline
+alkalinity/M
+alkalize/DSG
+alkaloid/SM
+alkyd/MS
+all/M
+allay/GDS
+allegation/MS
+allege/GDS
+alleged/Y
+allegiance/MS
+allegoric
+allegorical/Y
+allegorist/MS
+allegory/SM
+allegretto/MS
+allegro/MS
+allele/MS
+alleluia/SM
+allergen/SM
+allergenic
+allergic
+allergically
+allergist/SM
+allergy/SM
+alleviate/DSGN
+alleviation/M
+alley/MS
+alleyway/SM
+alliance/SM
+alligator/MS
+alliterate/DSXGNV
+alliteration/M
+alliterative/Y
+allocate/ADSGN
+allocation/AM
+allocations
+allot/LS
+allotment/SM
+allotted
+allotting
+allover
+allow/EGDS
+allowable/U
+allowably
+allowance/SM
+alloy/GMDS
+alloyed/U
+allspice/M
+allude/GDS
+allure/MGLDS
+allurement/MS
+alluring/Y
+allusion/SM
+allusive/PY
+allusiveness/M
+alluvial/M
+alluvium/SM
+ally/GDSM
+almanac/SM
+almighty
+almond/MS
+almoner/SM
+almost
+alms/M
+almshouse/MS
+aloe/SM
+aloft
+aloha/MS
+alone
+along
+alongshore
+alongside
+aloof/PY
+aloofness/M
+aloud
+alp/SM
+alpaca/MS
+alpha/MS
+alphabet/SM
+alphabetic
+alphabetical/Y
+alphabetization/SM
+alphabetize/ZGDRS
+alphabetizer/M
+alphanumeric
+alphanumerical/Y
+alpine/S
+already
+alright
+also
+alt/S
+altar/MS
+altarpiece/SM
+alter/GDBS
+alterable/U
+alteration/MS
+altercation/SM
+altered/U
+alternate/DSMYGNVX
+alternation/M
+alternative/MYS
+alternator/SM
+although
+altimeter/MS
+altitude/MS
+alto/SM
+altogether
+altruism/M
+altruist/SM
+altruistic
+altruistically
+alum/SM
+alumina/M
+aluminum/M
+alumna/M
+alumnae
+alumni
+alumnus/M
+alveolar/S
+always
+am/N
+amalgam/SM
+amalgamate/XGNDS
+amalgamation/M
+amanuenses
+amanuensis/M
+amaranth/M
+amaranths
+amaretto/M
+amaryllis/MS
+amass/GDS
+amateur/SM
+amateurish/YP
+amateurishness/M
+amateurism/M
+amatory
+amaze/LMGDS
+amazement/M
+amazing/Y
+amazon/MS
+amazonian
+ambassador/SM
+ambassadorial
+ambassadorship/MS
+ambassadress/MS
+amber/M
+ambergris/M
+ambiance/MS
+ambidexterity/M
+ambidextrous/Y
+ambient
+ambiguity/SM
+ambiguous/UY
+ambit
+ambition/MS
+ambitious/YP
+ambitiousness/M
+ambivalence/M
+ambivalent/Y
+amble/MZGDRS
+ambler/M
+ambrosia/M
+ambrosial
+ambulance/MS
+ambulanceman
+ambulancemen
+ambulancewoman
+ambulancewomen
+ambulant
+ambulate/DSXGN
+ambulation/M
+ambulatory/SM
+ambuscade/MGDS
+ambush/GMDS
+ameliorate/GNVDS
+amelioration/M
+amen/B
+amenability/M
+amenably
+amend/BLGDS
+amendment/SM
+amenity/SM
+amerce/GLDS
+amercement/SM
+americium/M
+amethyst/SM
+amiability/M
+amiable
+amiably
+amicability/M
+amicable
+amicably
+amid
+amide/MS
+amidship/S
+amigo/MS
+amine/S
+amino
+amiss
+amitriptyline
+amity/M
+ammeter/SM
+ammo/M
+ammonia/M
+ammonium
+ammunition/M
+amnesia/M
+amnesiac/MS
+amnesic/SM
+amnesty/GDSM
+amniocenteses
+amniocentesis/M
+amnion/MS
+amniotic
+amoeba/MS
+amoebae
+amoebic
+amok
+among
+amontillado/SM
+amoral/Y
+amorality/M
+amorous/YP
+amorousness/M
+amorphous/PY
+amorphousness/M
+amortization/SM
+amortize/DSGB
+amount/GMDS
+amour/MS
+amoxicillin
+amp/SMY
+amperage/M
+ampere/MS
+ampersand/MS
+amphetamine/SM
+amphibian/MS
+amphibious/Y
+amphitheater/SM
+amphora/M
+amphorae
+ampicillin
+ample/TR
+amplification/M
+amplifier/M
+amplify/NDRSXZG
+amplitude/SM
+ampule/MS
+amputate/GNDSX
+amputation/M
+amputee/MS
+amt
+amulet/MS
+amuse/LGDS
+amusement/MS
+amusing/Y
+amygdala
+amylase/M
+amyloid
+an/CS
+anabolism/M
+anachronism/SM
+anachronistic
+anachronistically
+anaconda/SM
+anaerobe/SM
+anaerobic
+anaerobically
+anagram/MS
+anal/Y
+analgesia/M
+analgesic/SM
+analog/MS
+analogical/Y
+analogize/GDS
+analogous/YP
+analogousness/M
+analogue/SM
+analogy/SM
+analysand/MS
+analyses/A
+analysis/AM
+analyst/SM
+analytic/S
+analytical/Y
+analyzable
+analyze/ADSG
+analyzer/SM
+anapest/SM
+anapestic/MS
+anarchic
+anarchically
+anarchism/M
+anarchist/MS
+anarchistic
+anarchy/M
+anathema/SM
+anathematize/DSG
+anatomic
+anatomical/Y
+anatomist/SM
+anatomize/DSG
+anatomy/SM
+ancestor/SM
+ancestral/Y
+ancestress/MS
+ancestry/SM
+anchor/MDGS
+anchorage/MS
+anchorite/MS
+anchorman/M
+anchormen
+anchorpeople
+anchorperson/SM
+anchorwoman/M
+anchorwomen
+anchovy/SM
+ancient/SPMRYT
+ancientness/M
+ancillary/SM
+and
+andante/SM
+andiron/SM
+androgen/M
+androgenic
+androgynous
+androgyny/M
+android/SM
+anecdotal/Y
+anecdote/MS
+anemia/M
+anemic
+anemically
+anemometer/SM
+anemone/SM
+anent
+anesthesia/M
+anesthesiologist/SM
+anesthesiology/M
+anesthetic/SM
+anesthetist/MS
+anesthetization/M
+anesthetize/GDS
+aneurysm/SM
+anew
+angel/MS
+angelfish/MS
+angelic
+angelica/M
+angelical/Y
+anger/GMDS
+angina/M
+angioplasty/SM
+angiosperm/SM
+angle/MZGDRS
+angler/M
+angleworm/MS
+anglicism/S
+anglicize/GDS
+angling/M
+anglophile/S
+anglophone/S
+angora/MS
+angostura
+angrily
+angry/TR
+angst/M
+angstrom/MS
+anguish/GMDS
+angular
+angularity/SM
+angulation
+anhydrous
+aniline/M
+anilingus
+animadversion/MS
+animadvert/GSD
+animal/MS
+animalcule/SM
+animate/ADSGN
+animated/Y
+animation/AM
+animations
+animator/MS
+anime/M
+animism/M
+animist/SM
+animistic
+animosity/SM
+animus/M
+anion/MS
+anionic
+anise/M
+aniseed/M
+anisette/M
+ankh/M
+ankhs
+ankle/MS
+anklebone/MS
+anklet/MS
+annalist/SM
+annals/M
+anneal/GDS
+annelid/MS
+annex/GMDS
+annexation/MS
+annihilate/DSGN
+annihilation/M
+annihilator/SM
+anniversary/SM
+annotate/DSXGNV
+annotation/M
+annotator/MS
+announce/DRSLZG
+announced/U
+announcement/MS
+announcer/M
+annoy/GDS
+annoyance/MS
+annoying/Y
+annual/MYS
+annualized
+annuitant/SM
+annuity/SM
+annul/LS
+annular
+annulled
+annulling
+annulment/SM
+annulus
+annunciation/SM
+anode/MS
+anodize/GDS
+anodyne/MS
+anoint/GDLS
+anointment/M
+anomalous/Y
+anomaly/SM
+anon/S
+anonymity/M
+anonymous/Y
+anopheles/M
+anorak/MS
+anorectic/SM
+anorexia/M
+anorexic/MS
+another
+answer/BMDGS
+answerable/U
+answered/U
+answerphone/S
+ant/SMD
+antacid/SM
+antagonism/SM
+antagonist/SM
+antagonistic
+antagonistically
+antagonize/DSG
+antarctic
+ante/SM
+anteater/MS
+antebellum
+antecedence/M
+antecedent/SM
+antechamber/SM
+antedate/GDS
+antediluvian
+anteing
+antelope/MS
+antenatal
+antenna/SM
+antennae
+anterior
+anteroom/MS
+anthem/MS
+anther/MS
+anthill/SM
+anthologist/SM
+anthologize/DSG
+anthology/SM
+anthracite/M
+anthrax/M
+anthropocentric
+anthropoid/MS
+anthropological/Y
+anthropologist/SM
+anthropology/M
+anthropomorphic
+anthropomorphically
+anthropomorphism/M
+anthropomorphize
+anthropomorphous
+anti/SM
+antiabortion
+antiabortionist/MS
+antiaircraft
+antibacterial/MS
+antibiotic/MS
+antibody/SM
+antic/MS
+anticancer
+anticipate/GNXDS
+anticipated/U
+anticipation/M
+anticipatory
+anticked
+anticking
+anticlerical
+anticlimactic
+anticlimactically
+anticlimax/MS
+anticline/SM
+anticlockwise
+anticoagulant/MS
+anticommunism/M
+anticommunist/SM
+anticyclone/SM
+anticyclonic
+antidemocratic
+antidepressant/MS
+antidote/MS
+antifascist/MS
+antiferromagnetic
+antifreeze/M
+antigen/SM
+antigenic
+antigenicity/M
+antihero/M
+antiheroes
+antihistamine/SM
+antiknock/M
+antilabor
+antilogarithm/SM
+antimacassar/MS
+antimalarial
+antimatter/M
+antimicrobial
+antimissile
+antimony/M
+antineutrino/SM
+antineutron/MS
+antinuclear
+antioxidant/MS
+antiparticle/SM
+antipasti
+antipasto/MS
+antipathetic
+antipathy/SM
+antipersonnel
+antiperspirant/SM
+antiphon/SM
+antiphonal/MYS
+antipodal/S
+antipodean/MS
+antipodes/M
+antipollution
+antipoverty
+antiproton/MS
+antiquarian/SM
+antiquarianism/M
+antiquary/SM
+antiquate/GDS
+antique/DSMG
+antiquity/SM
+antirrhinum/S
+antiscience
+antisemitic
+antisemitism/M
+antisepsis/M
+antiseptic/SM
+antiseptically
+antiserum/MS
+antislavery
+antisocial/Y
+antispasmodic/MS
+antisubmarine
+antitank
+antitheses
+antithesis/M
+antithetic
+antithetical/Y
+antitoxin/MS
+antitrust
+antivenin/MS
+antivenom
+antiviral/MS
+antivirus
+antivivisectionist/MS
+antiwar
+antler/MDS
+antonym/SM
+antonymous
+antrum
+antsy/TR
+anus/MS
+anvil/MS
+anxiety/SM
+anxious/YP
+anxiousness/M
+any
+anybody/SM
+anyhow
+anymore
+anyone/M
+anyplace
+anything/SM
+anytime
+anyway/S
+anywhere
+anywise
+aorta/MS
+aortic
+apace
+apart
+apartheid/M
+apartment/MS
+apathetic
+apathetically
+apathy/M
+apatite/M
+ape/DSMG
+apelike
+aperitif/MS
+aperture/SM
+apex/MS
+aphasia/M
+aphasic/MS
+aphelia
+aphelion/SM
+aphid/MS
+aphorism/MS
+aphoristic
+aphoristically
+aphrodisiac/SM
+apiarist/SM
+apiary/SM
+apical/Y
+apiece
+apish/Y
+aplenty
+aplomb/M
+apocalypse/SM
+apocalyptic
+apocrypha/M
+apocryphal/Y
+apogee/MS
+apolitical/Y
+apologetic/U
+apologetically
+apologia/SM
+apologist/MS
+apologize/GDS
+apology/SM
+apoplectic
+apoplexy/SM
+apoptosis
+apoptotic
+apostasy/SM
+apostate/SM
+apostatize/GDS
+apostle/MS
+apostleship/M
+apostolic
+apostrophe/MS
+apothecary/SM
+apothegm/SM
+apotheoses
+apotheosis/M
+app/SM
+appall/GDS
+appalling/Y
+appaloosa/MS
+apparatchik/S
+apparatus/MS
+apparel/MDGS
+apparent/Y
+apparition/SM
+appeal/GMDS
+appealing/UY
+appear/AESDG
+appearance/EAMS
+appease/LZGDRS
+appeasement/SM
+appeaser/M
+appellant/SM
+appellate/XN
+appellation/M
+append/GDS
+appendage/SM
+appendectomy/SM
+appendices
+appendicitis/M
+appendix/MS
+appertain/GDS
+appetite/SM
+appetizer/MS
+appetizing/Y
+applaud/ZGDRS
+applauder/M
+applause/M
+apple/MS
+applejack/M
+applesauce/M
+applet/MS
+appliance/SM
+applicability/M
+applicable/I
+applicably
+applicant/SM
+application/AM
+applicator/SM
+applier/MS
+applique/DSM
+appliqueing
+apply/ANXGDS
+appoint/AELSVGD
+appointee/SM
+appointment's/A
+appointment/ESM
+apportion/AGDLS
+apportionment/AM
+appose/GDS
+apposite/YNVP
+appositeness/M
+apposition/M
+appositive/SM
+appraisal/AMS
+appraise/ADSG
+appraiser/MS
+appreciable/I
+appreciably/I
+appreciate/DSXGNV
+appreciated/U
+appreciation/M
+appreciative/Y
+appreciator/MS
+appreciatory
+apprehend/GDS
+apprehension/MS
+apprehensive/YP
+apprehensiveness/M
+apprentice/DSMG
+apprenticeship/MS
+apprise/GDS
+apprize/GDS
+approach/GBMDS
+approachable/UI
+approbation/EM
+approbations
+appropriate/PYGNXDS
+appropriated/U
+appropriateness/IM
+appropriation/M
+appropriator/SM
+approval/EM
+approvals
+approve/EGDS
+approved/U
+approving/EY
+approx
+approximate/DSXYGN
+approximation/M
+appurtenance/SM
+appurtenant
+apricot/MS
+apron/MS
+apropos
+apse/SM
+apt/IYPT
+apter
+aptitude/SM
+aptness/IM
+aqua/SM
+aquaculture/M
+aqualung/MS
+aquamarine/SM
+aquanaut/MS
+aquaplane/MGDS
+aquarium/MS
+aquatic/SM
+aquatically
+aquatics/M
+aquatint/S
+aquavit/M
+aqueduct/MS
+aqueous
+aquifer/SM
+aquiline
+arabesque/MS
+arability/M
+arachnid/MS
+arachnophobia
+arbiter/SM
+arbitrage/MZGDRS
+arbitrager/M
+arbitrageur/SM
+arbitrament/SM
+arbitrarily
+arbitrariness/M
+arbitrary/P
+arbitrate/GNDS
+arbitration/M
+arbitrator/MS
+arbor/MS
+arboreal
+arboretum/SM
+arborvitae/SM
+arbutus/MS
+arc/SMDG
+arcade/MS
+arcane
+arch/PZTGVMDRSY
+archaeological/Y
+archaeologist/SM
+archaeology/M
+archaic
+archaically
+archaism/MS
+archaist/MS
+archangel/MS
+archbishop/SM
+archbishopric/SM
+archdeacon/SM
+archdiocesan
+archdiocese/MS
+archduchess/MS
+archduke/MS
+archenemy/SM
+archer/M
+archery/M
+archetypal
+archetype/MS
+archfiend/MS
+archiepiscopal
+archipelago/MS
+architect/SM
+architectonic/S
+architectonics/M
+architectural/Y
+architecture/MS
+architrave/SM
+archival
+archive/DSMG
+archivist/MS
+archness/M
+archway/SM
+arctic/MS
+ardent/Y
+ardor/MS
+arduous/YP
+arduousness/M
+are/SMB
+area/SM
+areal
+aren't
+arena/MS
+argent/M
+arginine
+argon/M
+argosy/SM
+argot/MS
+arguable/IU
+arguably/U
+argue/ZGDRS
+arguer/M
+argument/MS
+argumentation/M
+argumentative/PY
+argumentativeness/M
+argyle/MS
+aria/SM
+arid/Y
+aridity/M
+aright
+arise/GS
+arisen
+aristocracy/SM
+aristocrat/SM
+aristocratic
+aristocratically
+arithmetic/M
+arithmetical/Y
+arithmetician/MS
+ark/SM
+arm's
+arm/EAGDS
+armada/MS
+armadillo/SM
+armament/AEM
+armaments
+armature/MS
+armband/MS
+armchair/MS
+armed/U
+armful/MS
+armhole/SM
+armistice/SM
+armlet/MS
+armload/S
+armor/ZGMDRS
+armored/U
+armorer/M
+armorial
+armory/SM
+armpit/MS
+armrest/SM
+army/SM
+aroma/MS
+aromatherapist/MS
+aromatherapy/M
+aromatic/MS
+aromatically
+arose
+around
+arousal/M
+arouse/GDS
+arpeggio/MS
+arr
+arraign/DGSL
+arraignment/SM
+arrange/AESDLG
+arrangement's/E
+arrangement/ASM
+arranger/SM
+arrant
+arras/MS
+array/EGMDS
+arrears/M
+arrest/AGMDS
+arrhythmia/M
+arrhythmic
+arrhythmical
+arrival/MS
+arrive/GDS
+arrogance/M
+arrogant/Y
+arrogate/GNDS
+arrogation/M
+arrow/MS
+arrowhead/MS
+arrowroot/M
+arroyo/MS
+arsed
+arsenal/MS
+arsenic/M
+arsing
+arson/M
+arsonist/SM
+art/SM
+arterial
+arteriole/MS
+arteriosclerosis/M
+artery/SM
+artful/PY
+artfulness/M
+arthritic/MS
+arthritis/M
+arthropod/MS
+arthroscope/SM
+arthroscopic
+arthroscopy
+artichoke/SM
+article/MDS
+articulacy/I
+articular
+articulate/YGNPDSX
+articulateness/IM
+articulation/M
+artifact/SM
+artifice/RSMZ
+artificer/M
+artificial/Y
+artificiality/M
+artillery/M
+artilleryman/M
+artillerymen
+artiness/M
+artisan/MS
+artist/MS
+artiste/MS
+artistic/I
+artistically
+artistry/M
+artless/PY
+artlessness/M
+artsy/TR
+artwork/MS
+arty/PTR
+arugula
+arum/SM
+asap
+asbestos/M
+ascend/AGDS
+ascendance/M
+ascendancy/M
+ascendant/SM
+ascension/MS
+ascent/MS
+ascertain/GDSBL
+ascertainment/M
+ascetic/MS
+ascetically
+asceticism/M
+ascot/MS
+ascribe/GBDS
+ascription/M
+aseptic
+aseptically
+asexual/Y
+asexuality/M
+ash/MDNSG
+ashamed/UY
+ashcan/MS
+ashlar/MS
+ashore
+ashram/MS
+ashtray/SM
+ashy/TR
+aside/MS
+asinine/Y
+asininity/SM
+ask/SDG
+askance
+asked/U
+askew
+aslant
+asleep
+asocial
+asp/SMNX
+asparagus/M
+aspartame/M
+aspect/MS
+aspen/M
+asperity/SM
+aspersion/MS
+asphalt/MDGS
+asphodel/SM
+asphyxia/M
+asphyxiate/DSXGN
+asphyxiation/M
+aspic/MS
+aspidistra/MS
+aspirant/MS
+aspirate/MGNDSX
+aspiration/M
+aspirator/SM
+aspire/GDS
+aspirin/MS
+ass/MS
+assail/GBDS
+assailable/U
+assailant/SM
+assassin/SM
+assassinate/GNXDS
+assassination/M
+assault/MDRGS
+assay/ZGMDRS
+assayer/M
+assemblage/SM
+assemble/AEGSD
+assembler/MS
+assemblies
+assembly/AM
+assemblyman/M
+assemblymen
+assemblywoman/M
+assemblywomen
+assent/GMDS
+assert/AGVDS
+assertion/AM
+assertions
+assertive/YP
+assertiveness/M
+assess/ALGDS
+assessment/ASM
+assessor/MS
+asset/MS
+asseverate/DSGN
+asseveration/M
+asshole/MS!
+assiduity/M
+assiduous/PY
+assiduousness/M
+assign's
+assign/ALGDS
+assignable
+assignation/MS
+assigned/U
+assignee/M
+assigner/MS
+assignment/AMS
+assignor/MS
+assimilate/DSGN
+assimilated/U
+assimilation/M
+assist/GVMDS
+assistance/M
+assistant/SM
+assisted/U
+assize/MS
+assn
+assoc
+associate's
+associate/EDSGNV
+association/EM
+associations
+associativity
+assonance/M
+assonant/MS
+assort/GLDS
+assortative
+assortment/MS
+asst
+assuage/GDS
+assume/BGDS
+assumption/SM
+assumptive
+assurance/ASM
+assure/AGDS
+assured/MYS
+astatine/M
+aster/EMS
+asterisk/GMDS
+astern
+asteroid/MS
+asthma/M
+asthmatic/SM
+asthmatically
+astigmatic
+astigmatism/SM
+astir
+astonish/DSLG
+astonishing/Y
+astonishment/M
+astound/GDS
+astounding/Y
+astraddle
+astrakhan/M
+astral
+astray
+astride
+astringency/M
+astringent/SMY
+astrolabe/SM
+astrologer/SM
+astrological/Y
+astrologist/MS
+astrology/M
+astronaut/MS
+astronautic/S
+astronautical
+astronautics/M
+astronomer/SM
+astronomic
+astronomical/Y
+astronomy/M
+astrophysical
+astrophysicist/MS
+astrophysics/M
+astute/PYTR
+astuteness/M
+asunder
+asylum/SM
+asymmetric
+asymmetrical/Y
+asymmetry/SM
+asymptomatic
+asymptotic
+asymptotically
+asynchronous/Y
+at
+atavism/M
+atavist/SM
+atavistic
+ataxia/M
+ataxic/MS
+ate
+atelier/SM
+atheism/M
+atheist/MS
+atheistic
+atherosclerosis/M
+atherosclerotic
+athirst
+athlete/MS
+athletic/S
+athletically
+athleticism
+athletics/M
+athwart
+atilt
+atishoo
+atlas/MS
+atmosphere/MS
+atmospheric/S
+atmospherically
+atmospherics/M
+atoll/MS
+atom/SM
+atomic
+atomically
+atomize/ZGDRS
+atomizer/M
+atonal/Y
+atonality/M
+atone/LGDS
+atonement/M
+atop
+atria
+atrial
+atrioventricular
+atrium/M
+atrocious/PY
+atrociousness/M
+atrocity/SM
+atrophy/DSMG
+atropine/M
+attach/ALGDS
+attache/BM
+attached/U
+attachment/AM
+attachments
+attack/ZGMDRS
+attacker/M
+attain/AGDS
+attainability/M
+attainable/U
+attainder/M
+attainment/SM
+attar/M
+attempt's
+attempt/ASDG
+attend/SDRZG
+attendance/SM
+attendant/SM
+attended/U
+attendee/SM
+attention/IM
+attentions
+attentive/IPY
+attentiveness/IM
+attenuate/DSGN
+attenuation/M
+attest/SDG
+attestation/SM
+attested/U
+attic/SM
+attire/DSMG
+attitude/SM
+attitudinal
+attitudinize/GDS
+attn
+attorney/MS
+attract/SGVDB
+attractant/MS
+attraction/MS
+attractive/UY
+attractiveness/M
+attribute/DSMGNVBX
+attributed/U
+attribution/M
+attributive/MYS
+attrition/M
+attune/DSG
+atty
+atwitter
+atypical/Y
+aubergine/S
+auburn/M
+auction/MDGS
+auctioneer/SM
+audacious/YP
+audaciousness/M
+audacity/M
+audibility/IM
+audible/MS
+audibly/I
+audience/MS
+audio/MS
+audiological
+audiologist/SM
+audiology/M
+audiometer/SM
+audiophile/SM
+audiotape/SM
+audiovisual/S
+audiovisuals/M
+audit/GMDS
+audition/SMDG
+auditor/MS
+auditorium/SM
+auditory
+auger/MS
+aught/MS
+augment/DRZGS
+augmentation/MS
+augmentative
+augmenter/M
+augur/GMDS
+augury/SM
+august/PTRY
+augustness/M
+auk/SM
+aunt/SM
+auntie/SM
+aura/MS
+aural/Y
+aureole/SM
+aureus
+auricle/SM
+auricular
+aurora/SM
+auscultate/GNDSX
+auscultation/M
+auspice/SM
+auspicious/IY
+auspiciousness/M
+austere/RYT
+austerity/SM
+austral
+authentic/IU
+authentically
+authenticate/XGNDS
+authenticated/U
+authentication/M
+authenticity/M
+author/SMDG
+authoress/MS
+authorial
+authoritarian/MS
+authoritarianism/M
+authoritative/YP
+authoritativeness/M
+authority/SM
+authorization/MS
+authorize/AGDS
+authorized/U
+authorship/M
+autism/M
+autistic
+auto/MS
+autobahn/SM
+autobiographer/SM
+autobiographic
+autobiographical/Y
+autobiography/SM
+autoclave/MS
+autocracy/SM
+autocrat/SM
+autocratic
+autocratically
+autocross
+autodidact/SM
+autograph/MDG
+autographs
+autoimmune
+autoimmunity/M
+automaker/SM
+automate/GNDS
+automatic/SM
+automatically
+automation/M
+automatism/M
+automatize/GDS
+automaton/SM
+automobile/DSMG
+automotive
+autonomic
+autonomous/Y
+autonomy/M
+autopilot/SM
+autopsy/GDSM
+autosuggestion
+autoworker/MS
+autumn/SM
+autumnal
+aux
+auxiliary/SM
+auxin/M
+av/RZ
+avail/BGMDS
+availability/UM
+available/U
+avalanche/SM
+avarice/M
+avaricious/Y
+avast
+avatar/MS
+avaunt
+avdp
+ave
+avenge/ZGDRS
+avenger/M
+avenue/MS
+average/MYGDS
+averred
+averring
+averse/XN
+aversion/M
+avert/GDS
+avg
+avian
+aviary/SM
+aviation/M
+aviator/MS
+aviatrices
+aviatrix/MS
+avid/Y
+avidity/M
+avionic/S
+avionics/M
+avitaminosis/M
+avocado/SM
+avocation/MS
+avocational
+avoid/SDGB
+avoidable/U
+avoidably/U
+avoidance/M
+avoidant
+avoirdupois/M
+avouch/DSG
+avow/EDGS
+avowal/ESM
+avowed/Y
+avuncular/Y
+aw
+await/GDS
+awake/GS
+awaken/AGDS
+awakening/SM
+award/GMDS
+awardee/S
+aware/UP
+awareness/UM
+awash
+away
+awe/DSMG
+aweigh
+awesome/YP
+awesomeness/M
+awestruck
+awful/YP
+awfuller
+awfullest
+awfulness/M
+awhile
+awkward/RYPT
+awkwardness/M
+awl/SM
+awn/GJSM
+awning/M
+awoke
+awoken
+awry
+ax/MDSG
+axial/Y
+axiom/SM
+axiomatic
+axiomatically
+axis/M
+axle/MS
+axletree/SM
+axolotl/SM
+axon/MS
+ayah/M
+ayahs
+ayatollah/M
+ayatollahs
+aye/SM
+azalea/SM
+azimuth/M
+azimuths
+azure/SM
+b/KDT
+baa/SMDG
+babble/MZGDRS
+babbler/M
+babe/SM
+babel/MS
+baboon/MS
+babushka/SM
+baby/TGDRSM
+babyhood/M
+babyish
+babysat
+babysit/S
+babysitter/MS
+babysitting/M
+baccalaureate/SM
+baccarat/M
+bacchanal/MS
+bacchanalia/M
+bacchanalian/MS
+baccy
+bachelor/SM
+bachelorhood/M
+bacillary
+bacilli
+bacillus/M
+back/SJZGMDR
+backache/MS
+backbench/S
+backbit
+backbite/ZGRS
+backbiter/M
+backbitten
+backboard/SM
+backbone/MS
+backbreaking
+backchat
+backcloth
+backcloths
+backcomb/DSG
+backdate/GDS
+backdoor
+backdrop/MS
+backer/M
+backfield/SM
+backfire/MGDS
+backgammon/M
+background/MRZS
+backgrounder/M
+backhand/MDRSZG
+backhanded/Y
+backhander/M
+backhoe/MS
+backing/M
+backlash/MS
+backless
+backlog/MS
+backlogged
+backlogging
+backpack/ZGMDRS
+backpacker/M
+backpacking/M
+backpedal/SDG
+backrest/SM
+backroom/S
+backscratching/M
+backseat/SM
+backside/SM
+backslapper/SM
+backslapping/M
+backslash/MS
+backslid
+backslide/RSZG
+backslider/M
+backspace/DSMG
+backspin/M
+backstabber/MS
+backstabbing
+backstage/M
+backstair/S
+backstop/SM
+backstopped
+backstopping
+backstory/S
+backstreet/S
+backstretch/MS
+backstroke/MGDS
+backtalk/M
+backtrack/SDG
+backup/MS
+backward/PSY
+backwardness/M
+backwash/M
+backwater/SM
+backwoods/M
+backwoodsman/M
+backwoodsmen
+backyard/SM
+bacon/M
+bacteria/M
+bacterial
+bactericidal
+bactericide/SM
+bacteriologic
+bacteriological
+bacteriologist/SM
+bacteriology/M
+bacterium/M
+bad/MYP
+badder
+baddest
+baddie/MS
+bade
+badge/MZRS
+badger/GMD
+badinage/M
+badlands/M
+badman/M
+badmen
+badminton/M
+badmouth/GD
+badmouths
+badness/M
+baffle/MZGDRSL
+bafflement/M
+baffler/M
+bag/SM
+bagatelle/SM
+bagel/MS
+bagful/MS
+baggage/M
+bagged
+baggie/M
+baggily
+bagginess/M
+bagging
+baggy/PTRS
+bagpipe/MZRS
+bagpiper/M
+baguette/MS
+bah
+baht/SM
+bail/SBGMD
+bailey/S
+bailiff/S
+bailiwick/MS
+bailout/SM
+bailsman/M
+bailsmen
+bairn/MS
+bait/SGMD
+baize/M
+bake/DRSMZG
+baked/U
+baker/M
+bakery/SM
+bakeshop/MS
+baklava/M
+baksheesh/M
+balaclava/MS
+balalaika/MS
+balance's
+balance/UDSG
+balboa/SM
+balcony/SM
+bald/STGPDRY
+balderdash/M
+baldfaced
+baldness/M
+baldric/SM
+baldy/S
+bale/DRSMZG
+baleen/M
+baleful/PY
+balefulness/M
+baler/M
+balk/SGMD
+balky/RT
+ball/SGMD
+ballad/SM
+balladeer/MS
+balladry/M
+ballast/GSMD
+ballcock/MS
+ballerina/SM
+ballet/SM
+balletic
+ballgame/MS
+ballgirl/S
+ballgown/S
+ballistic/S
+ballistics/M
+balloon/SGMD
+balloonist/MS
+ballot/SMDG
+ballpark/MS
+ballplayer/MS
+ballpoint/MS
+ballroom/MS
+balls/DSG
+ballsy/RT
+bally
+ballyhoo/SMDG
+balm/SM
+balminess/M
+balmy/RTP
+baloney/M
+balsa/MS
+balsam/SM
+balsamic
+baluster/SM
+balustrade/MS
+bamboo/SM
+bamboozle/DSG
+ban/SM
+banal/Y
+banality/SM
+banana/SM
+band's
+band/ESGD
+bandage/DSMG
+bandanna/MS
+bandbox/MS
+bandeau/M
+bandeaux
+bandit/SM
+banditry/M
+bandleader/S
+bandmaster/SM
+bandoleer/SM
+bandsman/M
+bandsmen
+bandstand/SM
+bandwagon/SM
+bandwidth
+bandwidths
+bandy/DRSTG
+bane/SM
+baneful
+bang/SGMDR
+bangle/SM
+bani
+banish/GLDS
+banishment/M
+banister/SM
+banjo/MS
+banjoist/SM
+bank/SZGBMDR
+bankbook/SM
+bankcard/SM
+banker/M
+banking/M
+banknote/SM
+bankroll/SGMD
+bankrupt/SGMD
+bankruptcy/SM
+banned
+banner/SM
+banning
+bannock/MS
+banns/M
+banquet/ZGMDRS
+banqueter/M
+banquette/SM
+banshee/MS
+bantam/SM
+bantamweight/SM
+banter/GSMD
+bantering/Y
+banyan/SM
+banzai/SM
+baobab/SM
+bap/S
+baptism/MS
+baptismal
+baptist/S
+baptistery/SM
+baptize/ZGDRS
+baptized/U
+baptizer/M
+bar's
+bar/ECUTS
+barb/SZGMDR
+barbacoa
+barbarian/SM
+barbarianism/MS
+barbaric
+barbarically
+barbarism/SM
+barbarity/SM
+barbarize/DSG
+barbarous/Y
+barbecue/DSMG
+barbel/SM
+barbell/MS
+barber/GMD
+barberry/SM
+barbershop/MS
+barbie/S
+barbiturate/SM
+barbwire/M
+barcarole/SM
+bard/SM
+bardic
+bare/DRSPYG
+bareback/D
+barefaced/Y
+barefoot/D
+barehanded
+bareheaded
+barelegged
+bareness/M
+barf/SGMDY
+barfly/SM
+bargain/MDRZGS
+bargainer/M
+barge/MGDS
+bargeman/M
+bargemen
+barhop/S
+barhopped
+barhopping
+barista/MS
+baritone/MS
+barium/M
+bark's
+bark/CSGD
+barkeep/ZMRS
+barkeeper/M
+barker/SM
+barley/M
+barmaid/MS
+barman/M
+barmen
+barmy/RT
+barn/SM
+barnacle/MDS
+barney/S
+barnstorm/SDRZG
+barnstormer/M
+barnyard/SM
+barometer/MS
+barometric
+barometrically
+baron/MS
+baronage/MS
+baroness/MS
+baronet/MS
+baronetcy/SM
+baronial
+barony/SM
+baroque/M
+barrack/MDGS
+barracuda/SM
+barrage/MGDS
+barre/MGJDS
+barred/UEC
+barrel/GSMD
+barren/TPSMR
+barrenness/M
+barrette/SM
+barricade/MGDS
+barrier/MS
+barring/ECU
+barrio/SM
+barrister/MS
+barroom/MS
+barrow/SM
+bartender/SM
+barter/ZGSMDR
+barterer/M
+baryon/SM
+basal/Y
+basalt/M
+basaltic
+base's
+base/CDSLTG
+baseball/SM
+baseboard/MS
+baseless
+baseline/MS
+basely
+baseman/M
+basemen
+basement/CMS
+baseness/M
+baser
+bash/GMDS
+bashful/PY
+bashfulness/M
+bashing/M
+basic/MS
+basically
+basil/M
+basilica/MS
+basilisk/MS
+basin/MS
+basinful/MS
+basis/M
+bask/SGD
+basket/SM
+basketball/MS
+basketry/M
+basketwork/M
+basque/S
+bass/MS
+basset/SM
+bassinet/MS
+bassist/MS
+basso/MS
+bassoon/MS
+bassoonist/SM
+basswood/MS
+bast/M
+bastard/MS
+bastardization/MS
+bastardize/GDS
+bastardy/M
+baste/ZGNXDRS
+baster/M
+bastion/M
+bat/SM
+batch/MDSG
+bate/KACGSD
+bath/ZGMDRS
+bathe/M
+bather/M
+bathetic
+bathhouse/MS
+bathing/M
+bathmat/MS
+bathos/M
+bathrobe/SM
+bathroom/SM
+baths
+bathtub/MS
+bathwater
+bathyscaphe/SM
+bathysphere/MS
+batik/MS
+batiste/M
+batman/M
+batmen
+baton/MS
+batsman/M
+batsmen
+battalion/SM
+batted
+batten/GSMD
+batter/JZGSMDR
+batterer/M
+battery/SM
+batting/M
+battle/LDRSMZG
+battleaxe/MS
+battledore/SM
+battledress
+battlefield/MS
+battlefront/MS
+battleground/MS
+battlement/SM
+battler/M
+battleship/SM
+batty/RT
+bauble/SM
+baud/SM
+bauxite/M
+bawd/SM
+bawdily
+bawdiness/M
+bawdy/PRT
+bawl/SGMD
+bay/SMDG
+bayberry/SM
+bayonet/SMDG
+bayou/MS
+bazaar/SM
+bazillion/S
+bazooka/SM
+bbl
+bdrm
+be
+beach/MDSG
+beachcomber/SM
+beachfront
+beachhead/MS
+beachwear/M
+beacon/SM
+bead/SGMD
+beading/M
+beadle/SM
+beady/RT
+beagle/SM
+beak/SZMDR
+beaker/M
+beam/SGMD
+bean/SGMD
+beanbag/MS
+beanfeast/S
+beanie/SM
+beanpole/MS
+beansprout/S
+beanstalk/MS
+bear/SZGBJMR
+bearable/U
+bearably/U
+beard/MDGS
+beardless
+bearer/M
+bearing/M
+bearish/PY
+bearishness/M
+bearlike
+bearskin/MS
+beast/MS
+beastliness/M
+beastly/TPRM
+beat/SZGBMNRJ
+beatable/U
+beaten/U
+beater/M
+beatific
+beatifically
+beatification/M
+beatify/GXNDS
+beating/M
+beatitude/SM
+beatnik/MS
+beau/SM
+beaut/MS
+beauteous/Y
+beautician/SM
+beautification/M
+beautifier/M
+beautiful/Y
+beautify/NDRSZG
+beauty/SM
+beaver/SGMD
+bebop/MS
+becalm/GSD
+became
+because
+beck/SM
+beckon/SGD
+becloud/GDS
+become/S
+becoming/UY
+becquerel/S
+bed/SM
+bedaub/GSD
+bedazzle/GDSL
+bedazzlement/M
+bedbug/SM
+bedchamber/S
+bedclothes/M
+bedded
+bedder
+bedding/M
+bedeck/GSD
+bedevil/LGDS
+bedevilment/M
+bedfellow/SM
+bedhead/S
+bedim/S
+bedimmed
+bedimming
+bedizen/GDS
+bedlam/SM
+bedpan/SM
+bedpost/SM
+bedraggle/GDS
+bedridden
+bedrock/SM
+bedroll/SM
+bedroom/SM
+bedside/SM
+bedsit/S
+bedsitter/S
+bedsore/SM
+bedspread/SM
+bedstead/SM
+bedtime/SM
+bee/RSMZGJ
+beebread/M
+beech/MS
+beechnut/MS
+beef/SGMD
+beefburger/SM
+beefcake/MS
+beefiness/M
+beefsteak/MS
+beefy/RPT
+beehive/MS
+beekeeper/MS
+beekeeping/M
+beeline/MS
+been
+beep/SZGMDR
+beeper/M
+beer/M
+beery/TR
+beeswax/M
+beet/SM
+beetle/MGDS
+beetroot/S
+beeves
+befall/SGN
+befell
+befit/S
+befitted
+befitting/Y
+befog/S
+befogged
+befogging
+before
+beforehand
+befoul/DGS
+befriend/SGD
+befuddle/GLDS
+befuddlement/M
+beg/S
+began
+begat
+beget/S
+begetter/S
+begetting
+beggar/MDYGS
+beggary/M
+begged
+begging
+begin/S
+beginner/SM
+beginning/MS
+begone
+begonia/SM
+begot
+begotten
+begrime/DSG
+begrudge/DSG
+begrudging/Y
+beguile/DRSZGL
+beguilement/M
+beguiler/M
+beguiling/Y
+beguine/SM
+begum/MS
+begun
+behalf/M
+behalves
+behave/GDS
+behavior/SM
+behavioral/Y
+behaviorism/M
+behaviorist/MS
+behead/DGS
+beheld
+behemoth/M
+behemoths
+behest/MS
+behind/MS
+behindhand
+behold/NRZGS
+beholder/M
+behoove/DSG
+beige/M
+being/M
+bejewel/SDG
+belabor/SDG
+belated/Y
+belay/GDS
+belch/GMDS
+beleaguer/GSD
+belfry/SM
+belie/DS
+belief/EUM
+beliefs
+believable/U
+believably/U
+believe/EDRSZG
+believer/EUMS
+believing/U
+belittle/LDSG
+belittlement/M
+bell/SGMD
+belladonna/M
+bellboy/SM
+belle/MS
+belled/A
+belletrist/MS
+belletristic
+bellhop/SM
+bellicose
+bellicosity/M
+belligerence/M
+belligerency/M
+belligerent/MYS
+belling/A
+bellman/M
+bellmen
+bellow/MDGS
+bellwether/MS
+belly/GDSM
+bellyache/MGDS
+bellybutton/SM
+bellyful/MS
+belong/JDGS
+belonging/M
+beloved/SM
+below
+belt/SGMD
+beltway/SM
+beluga/MS
+belying
+bemire/GDS
+bemoan/DGS
+bemuse/LGDS
+bemused/Y
+bemusement/M
+bench/GMDS
+benchmark/MS
+bend/BSZGMR
+bender/M
+bendy/TR
+beneath
+benedictine
+benediction/SM
+benedictory
+benefaction/SM
+benefactor/MS
+benefactress/MS
+benefice/SM
+beneficence/M
+beneficent/Y
+beneficial/Y
+beneficiary/SM
+benefit/SMDG
+benevolence/SM
+benevolent/Y
+benighted/Y
+benign/Y
+benignant
+benignity/M
+bent/SM
+bentonite
+bentwood/M
+benumb/DSG
+benzene/M
+benzine/M
+benzyl
+bequeath/DG
+bequeaths
+bequest/MS
+berate/GDS
+bereave/DSLG
+bereavement/MS
+bereft
+beret/MS
+berg/SM
+beriberi/M
+berk/S
+berkelium/M
+berm/SM
+berry/GDSM
+berrylike
+berserk
+berth/GMD
+berths
+beryl/MS
+beryllium/M
+beseech/ZGRS
+beseecher/M
+beseeching/Y
+beseem/DSG
+beset/S
+besetting
+beside/S
+besiege/ZGDRS
+besieger/M
+besmear/DSG
+besmirch/GDS
+besom/MS
+besot/S
+besotted
+besotting
+besought
+bespangle/DSG
+bespatter/GSD
+bespeak/SG
+bespectacled
+bespoke
+bespoken
+best/SGMD
+bestial/Y
+bestiality/M
+bestiary/SM
+bestir/S
+bestirred
+bestirring
+bestow/DGS
+bestowal/SM
+bestrew/SDG
+bestrewn
+bestridden
+bestride/SG
+bestrode
+bestseller/MS
+bestselling
+bet/SM
+beta/SM
+betake/GS
+betaken
+betcha
+betel/M
+bethink/SG
+bethought
+betide/GDS
+betimes
+betoken/GDS
+betook
+betray/DRZGS
+betrayal/SM
+betrayer/M
+betroth/DG
+betrothal/SM
+betrothed/M
+betroths
+better/MDGLS
+betterment/M
+betting
+bettor/MS
+between
+betwixt
+bevel/GMDS
+beverage/SM
+bevvy/S
+bevy/SM
+bewail/DGS
+beware/GDS
+bewhiskered
+bewigged
+bewilder/LSGD
+bewildering/Y
+bewilderment/M
+bewitch/GLDS
+bewitching/Y
+bewitchment/M
+bey/SM
+beyond
+bezel/MS
+bf
+bhaji
+bi/SMRZ
+biannual/Y
+bias/GMDS
+biased/U
+biathlon/SM
+bib/SM
+bible/MS
+biblical
+bibliographer/MS
+bibliographic
+bibliographical/Y
+bibliography/SM
+bibliophile/SM
+bibulous
+bicameral
+bicameralism/M
+bicarb/MS
+bicarbonate/MS
+bicentenary/SM
+bicentennial/SM
+bicep/MS
+biceps/M
+bicker/MDRZGS
+bickerer/M
+biconcave
+biconvex
+bicuspid/MS
+bicycle/DRSMZG
+bicycler/M
+bicyclist/SM
+bid/SMG
+biddable
+bidden/U
+bidder/MS
+bidding/M
+biddy/SM
+bide/S
+bidet/MS
+bidirectional/Y
+biennial/MYS
+biennium/MS
+bier/M
+biff/SGD
+bifocal/S
+bifocals/M
+bifurcate/XDSGN
+bifurcation/M
+big/P
+bigamist/SM
+bigamous
+bigamy/M
+bigger
+biggest
+biggie/MS
+biggish
+bighead/SM
+bighearted/P
+bigheartedness/M
+bighorn/SM
+bight/MS
+bigmouth/M
+bigmouths
+bigness/M
+bigot/MDS
+bigotry/SM
+bigwig/MS
+bijou/M
+bijoux
+bike/DRSMZG
+biker/M
+bikini/MS
+bilabial/MS
+bilateral/Y
+bilberry/S
+bile/M
+bilge/MS
+bilingual/SMY
+bilingualism/M
+bilious/P
+biliousness/M
+bilirubin
+bilk/SZGDR
+bilker/M
+bill/SBJGMD
+billboard/MS
+billet/GMDS
+billfold/SM
+billhook/S
+billiard/S
+billiards/M
+billing/M
+billingsgate/M
+billion/MHS
+billionaire/SM
+billionth/M
+billionths
+billow/GMDS
+billowy
+billy/SM
+billycan/S
+bimbo/MS
+bimetallic/SM
+bimetallism/M
+bimodal
+bimonthly/SM
+bin/SM
+binary/SM
+binaural
+bind's
+bind/AUGS
+binder/MS
+bindery/SM
+binding/MS
+bindweed/M
+binge/MDS
+bingo/M
+binman
+binmen
+binnacle/SM
+binned
+binning
+binocular/MS
+binomial/SM
+bio/SM
+biochemical/SMY
+biochemist/MS
+biochemistry/M
+biodegradability/M
+biodegrade/DSGB
+biodiversity/M
+bioethics/M
+biofeedback/M
+biofilm/MS
+biog
+biographer/SM
+biographic
+biographical/Y
+biography/SM
+biol
+biologic
+biological/Y
+biologist/MS
+biology/M
+biomarker/MS
+biomass/M
+biomedical
+bionic/S
+bionically
+bionics/M
+biophysical
+biophysicist/MS
+biophysics/M
+biopic/MS
+biopsy/GDSM
+bioreactor/S
+biorhythm/MS
+biosensor/S
+biosphere/SM
+biosynthesis
+biotech
+biotechnological
+biotechnology/M
+biotin/M
+bipartisan
+bipartisanship/M
+bipartite
+biped/MS
+bipedal
+biplane/MS
+bipolar
+bipolarity/M
+biracial
+birch/GMDS
+bird/SZGMDR
+birdbath/M
+birdbaths
+birdbrain/SMD
+birdcage/S
+birder/M
+birdhouse/MS
+birdie/MDS
+birdieing
+birdlike
+birdlime/M
+birdseed/M
+birdsong
+birdwatcher/SM
+birdying
+biretta/SM
+birth/ZGMDR
+birthday/MS
+birther/M
+birthmark/MS
+birthplace/MS
+birthrate/MS
+birthright/MS
+births/A
+birthstone/SM
+biscuit/SM
+bisect/DGS
+bisection/MS
+bisector/SM
+bisexual/MYS
+bisexuality/M
+bishop/MS
+bishopric/SM
+bismuth/M
+bison/M
+bisque/M
+bistro/MS
+bit/CSMG
+bitch/GMDS
+bitchily
+bitchiness/M
+bitchy/PRT
+bitcoin/SM
+bite/RSMZ
+biter/M
+biting/Y
+bitmap/S
+bitten
+bitter/PMRYTS
+bittern/SM
+bitterness/M
+bitters/M
+bittersweet/MS
+bitty/TR
+bitumen/M
+bituminous
+bivalent
+bivalve/SM
+bivouac/MS
+bivouacked
+bivouacking
+biweekly/SM
+biyearly
+biz/M
+bizarre/Y
+bk
+bl/DG
+blab/SM
+blabbed
+blabber/DGS
+blabbermouth/M
+blabbermouths
+blabbing
+black/PXTGMDNRYS
+blackamoor/MS
+blackball/SGMD
+blackberry/GSM
+blackbird/SM
+blackboard/MS
+blackcurrant/S
+blacken/DG
+blackface
+blackguard/SM
+blackhead/MS
+blacking/M
+blackish
+blackjack/MDGS
+blackleg/S
+blacklist/MDSG
+blackmail/MDRSZG
+blackmailer/M
+blackness/M
+blackout/SM
+blacksmith/M
+blacksmiths
+blacksnake/SM
+blackthorn/SM
+blacktop/SM
+blacktopped
+blacktopping
+bladder/MS
+blade/MDS
+blag/S
+blagged
+blagging
+blah/M
+blahs/M
+blame/BMGDRS
+blameless/YP
+blamelessness/M
+blameworthiness/M
+blameworthy/P
+blammo
+blanch/GDS
+blancmange/MS
+bland/PTRY
+blandish/DSLG
+blandishment/SM
+blandness/M
+blank/TGPMDRYS
+blanket/GMDS
+blankness/M
+blare/MGDS
+blarney/SMDG
+blase
+blaspheme/ZGDRS
+blasphemer/M
+blasphemous/Y
+blasphemy/SM
+blast/ZGMDRS
+blaster/M
+blastoff/MS
+blat/S
+blatancy/SM
+blatant/Y
+blather/SMDG
+blaze/MZGDRS
+blazer/M
+blazon/MDGS
+bldg
+bleach/MDRSZG
+bleached/U
+bleacher/M
+bleak/TPRY
+bleakness/M
+blear
+blearily
+bleariness/M
+bleary/PRT
+bleat/GMDS
+bleed/ZGRS
+bleeder/M
+bleeding/M
+bleep/ZGMDRS
+bleeper/M
+blemish/GMDS
+blemished/U
+blench/DSG
+blend/ZGMDRS
+blender/M
+bless/GDSJ
+blessed/YP
+blessedness/M
+blessing/M
+bletch
+blew
+blight/ZGMDRS
+blimey
+blimp/MS
+blimpish
+blind/PZTGMDRYS
+blinder/M
+blindfold/SMDG
+blinding/Y
+blindness/M
+blindside/DSG
+blini/MS
+blink/ZGMDRS
+blinker/MDG
+blintz/MS
+blintze/M
+blip/SM
+bliss/M
+blissful/YP
+blissfulness/M
+blister/GMDS
+blistering/Y
+blistery
+blithe/PYTR
+blitheness/M
+blither/G
+blithesome
+blitz/GMDS
+blitzkrieg/MS
+blivet/S
+blizzard/SM
+bloat/ZGDRS
+bloatware
+blob/SM
+blobbed
+blobbing
+bloc/SM
+block's
+block/UGDS
+blockade/MZGDRS
+blockader/M
+blockage/MS
+blockbuster/SM
+blockbusting/M
+blockchain/MS
+blocker/MS
+blockhead/SM
+blockhouse/MS
+blog/SM
+blogged
+blogger/MS
+blogging
+bloke/MS
+blokish
+blond/PTMRS
+blonde/MS
+blondish
+blondness/M
+blood/GMDS
+bloodbath/M
+bloodbaths
+bloodcurdling
+bloodhound/SM
+bloodily
+bloodiness/M
+bloodless/YP
+bloodlessness/M
+bloodletting/M
+bloodline/SM
+bloodmobile/MS
+bloodshed/M
+bloodshot
+bloodstain/SMD
+bloodstock/M
+bloodstream/SM
+bloodsucker/SM
+bloodsucking
+bloodthirstily
+bloodthirstiness/M
+bloodthirsty/RPT
+bloody/PTGDRS
+bloom/ZGMDRS
+bloomer/M
+bloop/ZGMDRS
+blooper/M
+blossom/GMDS
+blossomy
+blot/SM
+blotch/GMDS
+blotchy/TR
+blotted
+blotter/MS
+blotting
+blotto
+blouse/MGDS
+blow/SZGMR
+blower/M
+blowfly/SM
+blowgun/MS
+blowhard/MS
+blowhole/S
+blowjob/SM
+blowlamp/S
+blown
+blowout/SM
+blowpipe/SM
+blowtorch/MS
+blowup/MS
+blowy/TR
+blowzy/RT
+blubber/GSMD
+blubbery
+bludgeon/MDGS
+blue/DRSPMTG
+bluebell/MS
+blueberry/SM
+bluebird/MS
+bluebonnet/SM
+bluebottle/SM
+bluefish/MS
+bluegill/MS
+bluegrass/M
+blueish
+bluejacket/SM
+bluejeans/M
+blueness/M
+bluenose/MS
+bluepoint/MS
+blueprint/MDGS
+bluestocking/SM
+bluesy/RT
+bluet/MS
+bluff/ZTGPMDRYS
+bluffer/M
+bluffness/M
+bluing/M
+bluish
+blunder/MDRZGS
+blunderbuss/MS
+blunderer/M
+blunt/PTGDRYS
+bluntness/M
+blur/SM
+blurb/MS
+blurred
+blurriness/M
+blurring
+blurry/TRP
+blurt/GDS
+blush/ZGMDRS
+blusher/M
+bluster/MDRSZG
+blusterer/M
+blusterous
+blustery
+blvd
+boa/SM
+boar/SM
+board/ZGMDRS
+boarder/M
+boarding/M
+boardinghouse/MS
+boardroom/MS
+boardwalk/MS
+boast/ZGMDRS
+boaster/M
+boastful/PY
+boastfulness/M
+boat/SZGMDR
+boater/M
+boathouse/MS
+boating/M
+boatload/S
+boatman/M
+boatmen
+boatswain/SM
+boatyard/S
+bob/SM
+bobbed
+bobbin/MS
+bobbing
+bobble/MGDS
+bobby/SM
+bobbysoxer/SM
+bobcat/MS
+bobolink/SM
+bobsled/SM
+bobsledded
+bobsledder/MS
+bobsledding
+bobsleigh/M
+bobsleighs
+bobtail/SM
+bobwhite/MS
+boccie/M
+bock/M
+bod/SMDG
+bodacious
+bode/S
+bodega/MS
+bodge/GDS
+bodice/MS
+bodily
+bodkin/MS
+body/DSM
+bodybuilder/SM
+bodybuilding/M
+bodyguard/MS
+bodysuit/SM
+bodywork/M
+boffin/S
+boffo
+bog/SM
+boga
+bogey/GMDS
+bogeyman/M
+bogeymen
+bogged
+bogging
+boggle/GDS
+boggy/TR
+bogie/MS
+bogon
+bogosity
+bogus
+bogyman/M
+bogymen
+bohemian/SM
+bohemianism/M
+boil/SJZGMDR
+boiler/M
+boilermaker/SM
+boilerplate/M
+boink/GDS
+boisterous/YP
+boisterousness/M
+bola/SM
+bold/PTRY
+boldface/DM
+boldness/M
+bole/SM
+bolero/MS
+bolivar/MS
+bolivares
+boll/SM
+bollard/S
+bollix/GMDS
+bollocking/S
+bollocks
+bologna/M
+bolshie
+bolster/GMDS
+bolt's
+bolt/USGD
+bolthole/S
+bolus/MS
+bomb/SJZGMDR
+bombard/GDLS
+bombardier/MS
+bombardment/SM
+bombast/M
+bombastic
+bombastically
+bomber/M
+bombproof
+bombshell/SM
+bombsite/S
+bonanza/MS
+bonbon/MS
+bonce/S
+bond/SGMD
+bondage/M
+bondholder/MS
+bonding/M
+bondman/M
+bondmen
+bondsman/M
+bondsmen
+bondwoman/M
+bondwomen
+bone/DRSMZG
+bonehead/SMD
+boneless
+boner/M
+boneshaker/S
+boneyard
+bonfire/MS
+bong/SGMD
+bongo/MS
+bonhomie/M
+boniness/M
+bonito/MS
+bonk/SZGD
+bonnet/MS
+bonny/TR
+bonobo/MS
+bonsai/M
+bonus/MS
+bony/PTR
+boo/SMDHG
+boob/SGMD
+booby/SM
+boodle/MS
+booger/S
+boogeyman/M
+boogeymen
+boogie/MDS
+boogieing
+boogieman/M
+boohoo/GMDS
+book/SBJGMD
+bookbinder/SM
+bookbindery/SM
+bookbinding/M
+bookcase/MS
+bookend/MS
+bookie/MS
+booking/M
+bookish
+bookkeeper/MS
+bookkeeping/M
+booklet/MS
+bookmaker/SM
+bookmaking/M
+bookmark/SMDG
+bookmobile/SM
+bookplate/MS
+bookseller/MS
+bookshelf/M
+bookshelves
+bookshop/SM
+bookstall/S
+bookstore/MS
+bookworm/SM
+boolean
+boom/SZGMDR
+boombox/MS
+boomerang/MDGS
+boon/SM
+boondocks/M
+boondoggle/MZGDRS
+boondoggler/M
+boonies/M
+boor/SM
+boorish/PY
+boorishness/MS
+boost/ZGMDRS
+booster/M
+boot's
+boot/ASGD
+bootblack/SM
+bootee/MS
+booth/M
+booths
+bootlace/S
+bootleg/MS
+bootlegged
+bootlegger/MS
+bootlegging/M
+bootless
+bootstrap/MS
+bootstrapped
+bootstrapping
+booty/SM
+booze/MZGDRS
+boozer/M
+boozy/TR
+bop/SM
+bopped
+bopping
+borax/M
+bordello/MS
+border/GMDS
+borderland/MS
+borderline/MS
+bore/DRSMZG
+boredom/M
+borehole/S
+borer/M
+boring/Y
+born/IAU
+borne
+boron/M
+borough/M
+boroughs
+borrow/SDRZGJ
+borrower/M
+borrowing/M
+borscht/M
+borstal/S
+borzoi/SM
+bosh/M
+bosom's
+bosom/US
+bosomy
+boss/DSGM
+bossily
+bossiness/M
+bossism/M
+bossy/RTP
+bot/S
+botanic
+botanical/Y
+botanist/SM
+botany/M
+botch/DRSZGM
+botcher/M
+both
+bother/SMDG
+botheration
+bothered/U
+bothersome
+botnet/SM
+bottle/DRSMZG
+bottleneck/MS
+bottler/M
+bottom/SMDG
+bottomless
+botulinum
+botulism/M
+boudoir/SM
+bouffant/SM
+bougainvillea/MS
+bough/M
+boughs
+bought
+bouillabaisse/SM
+bouillon/MS
+boulder/SM
+boules
+boulevard/SM
+bounce/DRSMZG
+bouncer/M
+bouncily
+bounciness/M
+bouncy/RTP
+bound/ASMGD
+boundary/SM
+bounden
+bounder/SM
+boundless/PY
+boundlessness/M
+bounteous/YP
+bounteousness/M
+bountiful/YP
+bountifulness/M
+bounty/SM
+bouquet/SM
+bourbon/SM
+bourgeois/M
+bourgeoisie/M
+boustrophedon
+bout/MS
+boutique/SM
+boutonniere/MS
+bouzouki/MS
+bovine/SM
+bovver
+bow/ZGSMDR
+bowdlerization/MS
+bowdlerize/DSG
+bowed/U
+bowel/SM
+bower/M
+bowl/MDRZGS
+bowleg/SM
+bowlegged
+bowler/M
+bowlful/SM
+bowline/SM
+bowling/M
+bowman/M
+bowmen
+bowsprit/SM
+bowstring/SM
+bowwow/SM
+box/ZGMDNRS
+boxcar/SM
+boxer/M
+boxing/M
+boxlike
+boxroom/S
+boxwood/M
+boxy/RT
+boy/SM
+boycott/SGMD
+boyfriend/MS
+boyhood/SM
+boyish/YP
+boyishness/M
+boysenberry/SM
+bozo/MS
+bpm
+bps
+bra/SM
+brace/MZGDRS
+bracelet/MS
+bracer/M
+bracero/MS
+bracken/M
+bracket/GMDS
+brackish/P
+brackishness/M
+bract/MS
+brad/SM
+bradawl/S
+bradycardia
+brae/SM
+brag/SM
+braggadocio/SM
+braggart/SM
+bragged
+bragger/MS
+bragging
+braid/GMDS
+braiding/M
+braille/M
+brain/GMDS
+brainchild/M
+brainchildren/M
+braininess/M
+brainless/Y
+brainpower
+brainstorm/SMDG
+brainstorming/M
+brainteaser/SM
+brainwash/DSG
+brainwashing/M
+brainwave/S
+brainy/PTR
+braise/GDS
+brake/MGDS
+brakeman/M
+brakemen
+bramble/MS
+brambly
+bran/M
+branch/GMDS
+branchlike
+brand/ZGMDRS
+branded/U
+brander/M
+brandish/DSG
+brandy/GDSM
+brash/PTRY
+brashness/M
+brass/MS
+brasserie/MS
+brassiere/MS
+brassily
+brassiness/M
+brassy/PTR
+brat/SM
+bratty/RT
+bratwurst/SM
+bravado/M
+brave/GPMYDTRS
+braveness/M
+bravery/M
+bravo/SM
+bravura/SM
+brawl/SDRZGM
+brawler/M
+brawn/M
+brawniness/M
+brawny/RTP
+bray/DGSM
+braze/DRSZG
+brazen/SDYGP
+brazenness/M
+brazer/M
+brazier/SM
+breach/GMDS
+bread/GMDHS
+breadbasket/SM
+breadboard/SM
+breadbox/MS
+breadcrumb/MS
+breadfruit/SM
+breadline/MS
+breadth/M
+breadths
+breadwinner/SM
+break/BMZGRS
+breakable/MS
+breakage/MS
+breakaway/MS
+breakdown/MS
+breaker/M
+breakfast/MDGS
+breakfront/MS
+breakneck
+breakout/MS
+breakpoints
+breakthrough/M
+breakthroughs
+breakup/SM
+breakwater/SM
+bream/MS
+breast/SMDG
+breastbone/MS
+breastfed
+breastfeed/GS
+breastplate/SM
+breaststroke/SM
+breastwork/MS
+breath/MDRSZGB
+breathalyze/ZGDRS
+breathe
+breather/M
+breathing/M
+breathless/PY
+breathlessness/M
+breaths
+breathtaking/Y
+breathy/RT
+bred/I
+breech/MS
+breed/SRZGM
+breeder/M
+breeding/IM
+breeze/DSMG
+breezeway/SM
+breezily
+breeziness/M
+breezy/RTP
+brethren
+breve/SM
+brevet/SM
+brevetted
+brevetting
+breviary/SM
+brevity/M
+brew/MDRZGS
+brewer/M
+brewery/SM
+brewpub/SM
+bribe/DRSMZG
+briber/M
+bribery/M
+brick/SMDG
+brickbat/SM
+brickie/S
+bricklayer/MS
+bricklaying/M
+brickwork/M
+brickyard/S
+bridal/SM
+bride/SM
+bridegroom/SM
+bridesmaid/MS
+bridge/DSMG
+bridgeable/U
+bridgehead/SM
+bridgework/M
+bridle/DSMG
+bridled/U
+bridleway/S
+brie/MZR
+brief's
+brief/CSDTGJ
+briefcase/SM
+briefer
+briefing/CM
+briefly
+briefness/M
+brier/M
+brig/MS
+brigade/SM
+brigadier/MS
+brigand/SM
+brigandage/M
+brigantine/MS
+bright/SPNRYXT
+brighten/DRZG
+brightener/M
+brightness/M
+brights/M
+brill
+brilliance/M
+brilliancy/M
+brilliant/MYS
+brilliantine/M
+brim/MS
+brimful
+brimless
+brimmed
+brimming
+brimstone/M
+brindle/DM
+brine/M
+bring/SRZG
+bringer/M
+brininess/M
+brink/SM
+brinkmanship/M
+briny/RTP
+brioche/SM
+briquette/MS
+brisk/SDRYTGP
+brisket/SM
+briskness/M
+bristle/DSMG
+bristly/TR
+britches/M
+brittle/PRMT
+brittleness/M
+bro/SMH
+broach/MDSG
+broad/SMNRYXTP
+broadband/M
+broadcast/AMGS
+broadcaster/MS
+broadcasting/M
+broadcloth/M
+broaden/DG
+broadloom/M
+broadminded
+broadness/M
+broadsheet/SM
+broadside/MGDS
+broadsword/SM
+brocade/DSMG
+broccoli/M
+brochette/SM
+brochure/MS
+brogan/SM
+brogue/SM
+broil/SMDRZG
+broiler/M
+broke
+broken/YP
+brokenhearted/Y
+brokenness/M
+broker/SMDG
+brokerage/MS
+brolly/S
+bromide/SM
+bromidic
+bromine/M
+bronc/SM
+bronchi
+bronchial
+bronchitic
+bronchitis/M
+bronchus/M
+bronco/SM
+broncobuster/SM
+brontosaur/MS
+brontosaurus/MS
+bronze/DSMG
+brooch/MS
+brood/SMDRZG
+brooder/M
+broodily
+brooding/MY
+broodmare/MS
+broody/RMPT
+brook/SMDG
+brooklet/SM
+broom/SM
+broomstick/MS
+broth/MRZ
+brothel/MS
+brother/MY
+brotherhood/MS
+brotherliness/M
+broths
+brougham/SM
+brought
+brouhaha/SM
+brow/MS
+browbeat/SNG
+brown/SMDRPTG
+brownfield
+brownie/MS
+brownish
+brownness/M
+brownout/SM
+brownstone/MS
+browse/DRSMZG
+browser/M
+brr
+bruin/SM
+bruise/DRSMZG
+bruiser/M
+bruising/M
+bruit/SDG
+brunch/MDSG
+brunet/SM
+brunette/MS
+brunt/M
+brush/MDSG
+brushoff/SM
+brushstroke/S
+brushwood/M
+brushwork/M
+brusque/RPYT
+brusqueness/M
+brutal/Y
+brutality/SM
+brutalization/M
+brutalize/GDS
+brute/SM
+brutish/PY
+brutishness/M
+bu
+bub/SM
+bubble/DSMG
+bubblegum/M
+bubbly/RMT
+bubo/M
+buboes
+buccaneer/SGMD
+buck/MDGS
+buckaroo/SM
+buckboard/MS
+bucket/SGMD
+bucketful/MS
+buckeye/MS
+buckle's
+buckle/UDSG
+buckler/MS
+buckram/M
+bucksaw/MS
+buckshot/M
+buckskin/MS
+buckteeth
+bucktooth/MD
+buckwheat/M
+buckyball/SM
+bucolic/MS
+bucolically
+bud/SM
+budded
+budding/S
+buddy/SM
+budge/DSG
+budgerigar/MS
+budget/SGMD
+budgetary
+budgie/SM
+buff/AMDGS
+buffalo/MDG
+buffaloes
+buffer/SMDG
+buffet/SMDGJ
+buffoon/SM
+buffoonery/M
+buffoonish
+bug's
+bug/CS
+bugaboo/SM
+bugbear/SM
+bugged/C
+bugger/SMDG
+buggery
+bugging/C
+buggy/RSMT
+bugle/DRSMZG
+bugler/M
+build/SMRZGJ
+builder/M
+building/M
+buildup/SM
+built/AI
+builtin
+bulb/MS
+bulbous
+bulge/DSMG
+bulgy/RT
+bulimarexia/M
+bulimia/M
+bulimic/SM
+bulk/MDGS
+bulkhead/MS
+bulkiness/M
+bulky/RTP
+bull/MDGS
+bulldog/SM
+bulldogged
+bulldogging
+bulldoze/ZGDRS
+bulldozer/M
+bullet/SMD
+bulletin/MDGS
+bulletproof/SDG
+bullfight/SMRZG
+bullfighter/M
+bullfighting/M
+bullfinch/MS
+bullfrog/MS
+bullhead/MDS
+bullheaded/PY
+bullheadedness/M
+bullhorn/MS
+bullion/M
+bullish/YP
+bullishness/M
+bullock/SM
+bullpen/SM
+bullring/MS
+bullseye
+bullshit/MS!
+bullshitted/!
+bullshitter/SM!
+bullshitting/!
+bullwhip/S
+bully/DSMG
+bulrush/MS
+bulwark/MS
+bum/SM
+bumbag/S
+bumble/DRSZG
+bumblebee/SM
+bumbler/M
+bumf
+bummed
+bummer/SM
+bummest
+bumming
+bump/MDRZGS
+bumper/M
+bumph
+bumpiness/M
+bumpkin/MS
+bumptious/PY
+bumptiousness/M
+bumpy/PRT
+bun/SM
+bunch/MDSG
+bunchy/RT
+bunco/SMDG
+bundle/DSMG
+bung/MDGS
+bungalow/MS
+bungee/SM
+bunghole/MS
+bungle/DRSMZG
+bungler/M
+bunion/SM
+bunk's
+bunk/CDGS
+bunker/SM
+bunkhouse/SM
+bunkum/M
+bunny/SM
+bunt/MDGSJ
+bunting/M
+buoy/MDGS
+buoyancy/M
+buoyant/Y
+bur/SMY
+burble/DSMG
+burbs/M
+burden's
+burden/USGD
+burdensome
+burdock/M
+bureau/SM
+bureaucracy/SM
+bureaucrat/MS
+bureaucratic
+bureaucratically
+bureaucratization/M
+bureaucratize/GDS
+burg/MRZS
+burgeon/DSG
+burger/M
+burgh/MRZ
+burgher/M
+burghs
+burglar/MS
+burglarize/GDS
+burglarproof
+burglary/SM
+burgle/DSG
+burgomaster/SM
+burgundy/SM
+burial/ASM
+burka/SM
+burl/MDS
+burlap/M
+burlesque/MGDS
+burliness/M
+burly/RPT
+burn/MDRZGSB
+burnable/SM
+burner/M
+burnish/ZGMDRS
+burnisher/M
+burnoose/MS
+burnout/MS
+burnt
+burp/MDGS
+burr/MDGS
+burrito/MS
+burro/SM
+burrow/SMDRZG
+burrower/M
+bursa/M
+bursae
+bursar/SM
+bursary/SM
+bursitis/M
+burst/SMG
+bury/ADSG
+bus/AMS
+busboy/SM
+busby/SM
+bused
+busgirl/MS
+bush/MDSGJ
+bushel/SGMD
+bushiness/M
+bushing/M
+bushman/M
+bushmaster/SM
+bushmen
+bushwhack/DRSZG
+bushwhacker/M
+bushy/RPT
+busily
+business/MS
+businesslike
+businessman/M
+businessmen
+businessperson/SM
+businesswoman/M
+businesswomen
+busing/M
+busk/DRZGS
+buskin/SM
+busload/S
+buss/MDSG
+bust/MDRZGS
+buster/M
+bustle/DSMG
+busty/RZT
+busy/DRSTGP
+busybody/SM
+busyness/M
+busywork/M
+but/ACS
+butane/M
+butch/MRSZ
+butcher/MDG
+butchery/SM
+butler/SM
+butt/MDRZGS
+butte/SM
+butted/A
+butter/MDG
+butterball/MS
+buttercream
+buttercup/SM
+butterfat/M
+butterfingered
+butterfingers/M
+butterfly/GDSM
+buttermilk/M
+butternut/SM
+butterscotch/M
+buttery/TRSM
+butting/A
+buttock/SM
+button's
+button/USDG
+buttonhole/DSMG
+buttonwood/MS
+buttress/MDSG
+butty/S
+buxom
+buy/ZGSMR
+buyback/SM
+buyer/M
+buyout/SM
+buzz/MDRSZG
+buzzard/MS
+buzzer/M
+buzzkill/SM
+buzzword/SM
+bx
+bxs
+by/M
+bye/SM
+bygone/SM
+bylaw/SM
+byline/SM
+bypass/GMDS
+bypath/M
+bypaths
+byplay/M
+byproduct/MS
+byre/S
+byroad/SM
+bystander/MS
+byte/MS
+byway/SM
+byword/SM
+byzantine
+c/IES
+ca
+cab/SMRZ
+cabal/MS
+cabala's
+caballero/MS
+cabana/SM
+cabaret/SM
+cabbage/MS
+cabbed
+cabbing
+cabby/SM
+cabdriver/SM
+cabin/MS
+cabinet/SM
+cabinetmaker/MS
+cabinetmaking/M
+cabinetry/M
+cabinetwork/M
+cable/MGDS
+cablecast/GMS
+cablegram/MS
+cabochon/SM
+caboodle/M
+caboose/SM
+cabriolet/SM
+cabstand/SM
+cacao/MS
+cache/MGDS
+cachepot/SM
+cachet/MS
+cackle/MZGDRS
+cackler/M
+cacophonous
+cacophony/SM
+cacti
+cactus/M
+cad/SM
+cadaver/SM
+cadaverous
+caddie/MDS
+caddish/YP
+caddishness/M
+caddying
+cadence/DSM
+cadenza/SM
+cadet/MS
+cadge/ZGDRS
+cadger/M
+cadmium/M
+cadre/MS
+caducei
+caduceus/M
+caesura/SM
+cafe/SM
+cafeteria/MS
+cafetiere/S
+caff/CS
+caffeinated
+caffeine/M
+caftan/MS
+cage/DSMG
+cagey
+cagier
+cagiest
+cagily
+caginess/M
+cagoule/S
+cahoot/MS
+caiman/MS
+cairn/MS
+caisson/SM
+caitiff/SM
+cajole/ZGLDRS
+cajolement/M
+cajoler/M
+cajolery/M
+cake/DSMG
+cakewalk/SM
+cal
+calabash/MS
+calaboose/SM
+calamari/SM
+calamine/M
+calamitous/Y
+calamity/SM
+calcareous
+calciferous
+calcification/M
+calcify/GNDS
+calcimine/DSMG
+calcine/DSG
+calcite/M
+calcium/M
+calculable/I
+calculate/AGNVDSX
+calculated/Y
+calculating/Y
+calculation/AM
+calculator/SM
+calculi
+calculus/M
+caldera/SM
+calendar/MDGS
+calf/M
+calfskin/M
+caliber/SM
+calibrate/GNDSX
+calibration/M
+calibrator/SM
+calico/M
+calicoes
+californium/M
+caliper/SGMD
+caliph/M
+caliphate/MS
+caliphs
+calisthenic/S
+calisthenics/M
+calk/SGMD
+call/ASGMD
+calla/MS
+callable
+callback/MS
+called/U
+caller/MS
+calligrapher/SM
+calligraphic
+calligraphist/MS
+calligraphy/M
+calling/SM
+calliope/MS
+callosity/SM
+callous/PGDSY
+callousness/M
+callow/RPT
+callowness/M
+callus/MDSG
+calm/PSTGMDRY
+calmness/M
+caloric
+calorie/MS
+calorific
+calumet/MS
+calumniate/GNDS
+calumniation/M
+calumniator/MS
+calumnious
+calumny/SM
+calve/GDS
+calypso/MS
+calyx/MS
+cam/SM
+camaraderie/M
+camber/MDSG
+cambial
+cambium/SM
+cambric/M
+camcorder/SM
+came
+camel/MS
+camelhair
+camellia/MS
+cameo/MS
+camera/MS
+cameraman/M
+cameramen
+camerapeople
+cameraperson
+camerawoman/M
+camerawomen
+camerawork
+camiknickers
+camisole/SM
+camouflage/MZGDRS
+camouflager/M
+camp's
+camp/CSGD
+campaign/SMDRZG
+campaigner/M
+campanile/SM
+campanologist/MS
+campanology/M
+camper/MS
+campfire/SM
+campground/SM
+camphor/M
+camping/M
+campsite/SM
+campus/MS
+campy/TR
+camshaft/SM
+can't
+can/SMDRZG
+canal/MS
+canalization/M
+canalize/GDS
+canape/MS
+canard/MS
+canary/SM
+canasta/M
+cancan/MS
+cancel/DRSZG
+canceler/M
+cancellation/SM
+cancelous
+cancer/MS
+cancerous
+candelabra/SM
+candelabrum/M
+candid/YP
+candida
+candidacy/SM
+candidate/MS
+candidature/SM
+candidness/M
+candle/MZGDRS
+candlelight/M
+candlelit
+candlepower/M
+candler/M
+candlestick/MS
+candlewick/SM
+candor/M
+candy/GDSM
+candyfloss
+cane/SM
+canebrake/MS
+caner/M
+canine/MS
+canister/SM
+canker/GMDS
+cankerous
+cannabis/MS
+canned
+cannelloni/M
+cannery/SM
+cannibal/SM
+cannibalism/M
+cannibalistic
+cannibalization/M
+cannibalize/GDS
+cannily/U
+canniness/M
+canning
+cannon/GMDS
+cannonade/MGDS
+cannonball/SM
+cannot
+canny/UTR
+canoe/MDS
+canoeing
+canoeist/SM
+canola/M
+canon/MS
+canonical/Y
+canonization/SM
+canonize/DSG
+canoodle/DSG
+canopy/GDSM
+canst
+cant's
+cant/CZRDGS
+cantabile
+cantaloupe/SM
+cantankerous/PY
+cantankerousness/M
+cantata/MS
+canteen/MS
+canter/CM
+cantered
+cantering
+canticle/MS
+cantilever/MDGS
+canto/MS
+canton/MLS
+cantonal
+cantonment/MS
+cantor/MS
+canvas/MGDS
+canvasback/SM
+canvass/MDRSZG
+canvasser/M
+canyon/MGS
+cap/SMDRBZ
+capabilities
+capability/IM
+capable/I
+capably/I
+capacious/PY
+capaciousness/M
+capacitance/M
+capacities
+capacitor/SM
+capacity/IM
+caparison/MDGS
+cape/SM
+caper/GMD
+capeskin/M
+capillarity/M
+capillary/SM
+capital/MSY
+capitalism/M
+capitalist/SM
+capitalistic
+capitalistically
+capitalization/M
+capitalize/ADSG
+capitation/CSM
+capitol/SM
+capitulate/ADSXGN
+capitulation/AM
+caplet/MS
+capo/SM
+capon/MS
+capped/UA
+capping/UA
+cappuccino/SM
+caprice/SM
+capricious/PY
+capriciousness/M
+capsicum/SM
+capsize/DSG
+capstan/SM
+capstone/MS
+capsular
+capsule/DSMG
+capsulize/DSG
+capt
+captain/SMDG
+captaincy/SM
+caption/SMDG
+captious/YP
+captiousness/M
+captivate/DSGN
+captivation/M
+captivator/SM
+captive/SM
+captivity/SM
+captor/MS
+capture/ADSMG
+car/SMDRZG
+carafe/MS
+caramel/SM
+caramelize/DSG
+carapace/SM
+carat/MS
+caravan/SM
+caravansary/SM
+caravel/SM
+caraway/SM
+carbide/SM
+carbine/SM
+carbohydrate/SM
+carbolic
+carbon/MS
+carbonaceous
+carbonate/MGNDS
+carbonation/M
+carboniferous
+carbonize/GDS
+carborundum/M
+carboy/MS
+carbs
+carbuncle/SM
+carbuncular
+carburetor/SM
+carcass/MS
+carcinogen/SM
+carcinogenic/MS
+carcinogenicity/M
+carcinoma/MS
+card/ESGMD
+cardamom/SM
+cardamon/S
+cardboard/M
+carder/MS
+cardholder/S
+cardiac
+cardie/S
+cardigan/SM
+cardinal/SMY
+cardio
+cardiogram/SM
+cardiograph/M
+cardiographs
+cardiologist/MS
+cardiology/M
+cardiomyopathy
+cardiopulmonary
+cardiovascular
+cardsharp/MRZS
+cardsharper/M
+care/SM
+careen/DGS
+career/MDGS
+careerism
+careerist/SM
+carefree
+careful/YP
+carefuller
+carefullest
+carefulness/M
+caregiver/SM
+careless/PY
+carelessness/M
+carer/M
+caress/MDSG
+caret/MS
+caretaker/MS
+careworn
+carfare/M
+cargo/M
+cargoes
+carhop/MS
+caribou/SM
+caricature/MGDS
+caricaturist/SM
+caries/M
+carillon/SM
+caring/M
+carious
+carjack/JSDRZG
+carjacker/M
+carjacking/M
+carload/SM
+carmaker/S
+carmine/SM
+carnage/M
+carnal/Y
+carnality/M
+carnation/IMS
+carnelian/MS
+carnival/MS
+carnivora
+carnivore/SM
+carnivorous/PY
+carnivorousness/M
+carny/SM
+carob/MS
+carol/ZGMDRS
+caroler/M
+carom/GMDS
+carotene/M
+carotid/SM
+carousal/SM
+carouse/DRSMZG
+carousel/SM
+carouser/M
+carp/SZGMDR
+carpal/MS
+carpel/MS
+carpenter/MDGS
+carpentry/M
+carper/M
+carpet/MDGS
+carpetbag/MS
+carpetbagged
+carpetbagger/MS
+carpetbagging
+carpeting/M
+carpi
+carpool/SMDG
+carport/SM
+carpus/M
+carrel/MS
+carriage/SM
+carriageway/S
+carrier/M
+carrion/M
+carrot/MS
+carroty
+carry/ZGDRSM
+carryall/SM
+carrycot/S
+carryout
+carryover/MS
+carsick/P
+carsickness/M
+cart/SZGMDR
+cartage/M
+cartel/MS
+carter/M
+carthorse/SM
+cartilage/SM
+cartilaginous
+cartload/SM
+cartographer/SM
+cartographic
+cartography/M
+carton/MS
+cartoon/SMDG
+cartoonist/MS
+cartridge/MS
+cartwheel/GMDS
+carve/JZGDRS
+carver/M
+carvery/S
+carving/M
+caryatid/MS
+casaba/MS
+cascade/DSMG
+cascara/SM
+case/LDSJMG
+casebook/S
+cased/U
+caseharden/DGS
+casein/M
+caseload/MS
+casement/MS
+casework/ZMR
+caseworker/M
+cash/GMDS
+cashback/M
+cashbook/MS
+cashew/MS
+cashier/GSMD
+cashless
+cashmere/M
+casing/M
+casino/MS
+cask/SM
+casket/MS
+cassava/SM
+casserole/DSMG
+cassette/MS
+cassia/MS
+cassock/SM
+cassowary/SM
+cast/ASGM
+castanet/MS
+castaway/MS
+caste/JMZRS
+castellated
+caster/M
+castigate/DSGN
+castigation/M
+castigator/SM
+casting/AM
+castle/MGDS
+castoff/SM
+castor/MS
+castrate/GNXDS
+castration/M
+casual/PMYS
+casualness/M
+casualty/SM
+casuist/SM
+casuistic
+casuistry/M
+cat/SM
+cataclysm/MS
+cataclysmal
+cataclysmic
+catacomb/SM
+catafalque/MS
+catalepsy/M
+cataleptic/MS
+catalog/ZGSMDR
+cataloger/M
+catalpa/SM
+catalyses
+catalysis/M
+catalyst/MS
+catalytic/M
+catalyze/GDS
+catamaran/SM
+catapult/GMDS
+cataract/MS
+catarrh/M
+catastrophe/MS
+catastrophic
+catastrophically
+catatonia/M
+catatonic/SM
+catbird/SM
+catboat/SM
+catcall/GSMD
+catch/ZGJLMRS
+catchall/MS
+catcher/M
+catchment/MS
+catchpenny
+catchphrase/SM
+catchword/MS
+catchy/RT
+catechism/SM
+catechist/SM
+catechize/DSG
+categorical/Y
+categorization/MS
+categorize/GDS
+category/SM
+cater/ZGJDRS
+catercorner
+caterer/M
+caterpillar/MS
+caterwaul/SMDG
+catfish/MS
+catgut/M
+catharses
+catharsis/M
+cathartic/SM
+cathedral/SM
+catheter/SM
+catheterize/DSG
+cathode/SM
+cathodic
+catholic
+catholicity/M
+cation/MS
+catkin/MS
+catlike
+catnap/MS
+catnapped
+catnapping
+catnip/M
+catsuit/S
+cattail/SM
+catted
+cattery/S
+cattily
+cattiness/M
+catting
+cattle/M
+cattleman/M
+cattlemen
+catty/TPR
+catwalk/SM
+caucus/MDSG
+caudal/Y
+caught/U
+cauldron/MS
+cauliflower/SM
+caulk/ZGMDRS
+caulker/M
+causal/Y
+causality/SM
+causation/M
+causative
+cause/MZGDRS
+causeless
+causer/M
+causerie/SM
+causeway/SM
+caustic/SM
+caustically
+causticity/M
+cauterization/M
+cauterize/GDS
+caution/SMDG
+cautionary
+cautious/IY
+cautiousness/M
+cavalcade/MS
+cavalier/SMY
+cavalry/SM
+cavalryman/M
+cavalrymen
+cave/DRSMZG
+caveat/MS
+caveman/M
+cavemen
+cavern/MS
+cavernous/Y
+caviar/M
+cavil/ZGJMDRS
+caviler/M
+caving/M
+cavitation
+cavity/FSM
+cavort/DGS
+caw/SMDG
+cay/CSM
+cayenne/M
+cayuse/MS
+cc
+cease/CMGDS
+ceasefire/MS
+ceaseless/YP
+ceaselessness/M
+ceca
+cecal
+cecum/M
+cedar/MS
+cede/FAGSD
+ceder/MS
+cedilla/SM
+ceilidh
+ceilidhs
+ceiling/MS
+celandine/M
+celeb/S
+celebrant/SM
+celebrate/DSGNX
+celebration/M
+celebrator/SM
+celebratory
+celebrity/SM
+celeriac
+celerity/M
+celery/M
+celesta/MS
+celestial/Y
+celibacy/M
+celibate/MS
+cell/SMD
+cellar/MS
+cellist/SM
+cellmate/SM
+cello/MS
+cellophane/M
+cellphone/MS
+cellular/SM
+cellulite/M
+cellulitis
+celluloid/M
+cellulose/M
+cement/MDRZGS
+cementer/M
+cementum/M
+cemetery/SM
+cenobite/MS
+cenobitic
+cenotaph/M
+cenotaphs
+censer/MS
+censor/MDGS
+censored/U
+censorial
+censorious/PY
+censoriousness/M
+censorship/M
+censure/BDRSMZG
+censurer/M
+census/MDSG
+cent/SZMR
+centaur/SM
+centavo/SM
+centenarian/MS
+centenary/SM
+centennial/MYS
+center/MDG
+centerboard/SM
+centerfold/MS
+centerpiece/MS
+centigrade
+centigram/SM
+centiliter/MS
+centime/SM
+centimeter/MS
+centipede/SM
+central/SMY
+centralism
+centralist
+centrality/M
+centralization/CM
+centralize/CGDS
+centralizer/MS
+centrifugal/Y
+centrifuge/DSMG
+centripetal/Y
+centrism/M
+centrist/MS
+centurion/SM
+century/SM
+cephalic
+ceramic/SM
+ceramicist/SM
+ceramics/M
+ceramist/MS
+cereal/MS
+cerebellar
+cerebellum/SM
+cerebra
+cerebral
+cerebrate/GNDS
+cerebration/M
+cerebrovascular
+cerebrum/MS
+cerement/MS
+ceremonial/SMY
+ceremonious/UY
+ceremoniousness/M
+ceremony/SM
+cerise/M
+cerium/M
+cermet/M
+cert/S
+certain/UY
+certainty/USM
+certifiable
+certifiably
+certificate/MGNXDS
+certification/M
+certify/DSG
+certitude/IM
+certitudes
+cerulean/M
+cervical
+cervices
+cervix/M
+cesarean/MS
+cesium/M
+cessation/MS
+cession/KAFSM
+cesspit/S
+cesspool/MS
+cetacean/MS
+ceteris
+cf
+cg
+ch/IFVT
+chad/S
+chafe/GDS
+chaff/GMDS
+chaffinch/MS
+chagrin/GSMD
+chain's
+chain/UGDS
+chainsaw/MDGS
+chair/GMDS
+chairlift/MS
+chairman/M
+chairmanship/SM
+chairmen
+chairperson/SM
+chairwoman/M
+chairwomen
+chaise/MS
+chalcedony/M
+chalet/MS
+chalice/SM
+chalk/GMDS
+chalkboard/SM
+chalkiness/M
+chalky/PRT
+challenge/DRSMZG
+challenged/U
+challenger/M
+challis/M
+chamber/SMD
+chamberlain/MS
+chambermaid/MS
+chambray/M
+chameleon/SM
+chamois/M
+chamomile/MS
+champ/ZGMDS
+champagne/MS
+champion/GMDS
+championship/MS
+chance/MGDS
+chancel/SM
+chancellery/SM
+chancellor/MS
+chancellorship/M
+chancery/SM
+chanciness/M
+chancre/SM
+chancy/PRT
+chandelier/SM
+chandler/MS
+change/MZGDRS
+changeability/M
+changeable/P
+changeableness/M
+changeably
+changed/U
+changeless/Y
+changeling/SM
+changeover/SM
+changer/M
+changing/U
+channel/GSMD
+channelization/M
+channelize/DSG
+chanson/SM
+chant/ZGMDRS
+chanter/M
+chanteuse/MS
+chantey/SM
+chanticleer/MS
+chaos/M
+chaotic
+chaotically
+chap/SM
+chaparral/SM
+chapati/S
+chapatti/S
+chapbook/MS
+chapeau/SM
+chapel/MS
+chaperon/MDGS
+chaperonage/M
+chaperoned/U
+chaplain/MS
+chaplaincy/SM
+chaplet/SM
+chapped
+chapping
+chappy/S
+chapter/SM
+char/SM
+charabanc/MS
+character/MS
+characterful
+characteristic/SM
+characteristically/U
+characterization/MS
+characterize/DSG
+characterless
+charade/SM
+charbroil/GDS
+charcoal/MS
+chard/M
+chardonnay/SM
+charge/AESDGM
+chargeable/A
+charged/U
+charger/SM
+charily
+chariness/M
+chariot/SM
+charioteer/MS
+charisma/M
+charismatic/MS
+charitable/P
+charitableness/M
+charitably/U
+charity/SM
+charlady/S
+charlatan/SM
+charlatanism/M
+charlatanry/M
+charlie/S
+charm/ZGMDRS
+charmer/M
+charming/Y
+charmless
+charred
+charring
+chart/GMDS
+charted/U
+charter's
+charter/ASGD
+charterer/MS
+chartreuse/M
+charwoman/M
+charwomen
+chary/TRP
+chase/MZGDRS
+chaser/M
+chasm/MS
+chassis/M
+chaste/PYTR
+chasten/DGS
+chasteness/M
+chastise/DRSZGL
+chastisement/SM
+chastiser/M
+chastity/M
+chasuble/SM
+chat/SM
+chateau/SM
+chateaux
+chatelaine/SM
+chatline/S
+chatroom/M
+chatted
+chattel/MS
+chatter/MDRZGS
+chatterbox/MS
+chatterer/M
+chattily
+chattiness/M
+chatting
+chatty/TPR
+chauffeur/GMDS
+chauvinism/M
+chauvinist/SM
+chauvinistic
+chauvinistically
+cheap/PXTNRY
+cheapen/DG
+cheapness/M
+cheapo
+cheapskate/MS
+cheat/ZGMDRS
+cheater/M
+check/AGMDS
+checkbook/SM
+checkbox
+checked/U
+checker/MDGS
+checkerboard/SM
+checkers/M
+checklist/MS
+checkmate/MGDS
+checkoff/SM
+checkout/SM
+checkpoint/SM
+checkroom/MS
+checksum
+checkup/MS
+cheddar/M
+cheek/GMDS
+cheekbone/SM
+cheekily
+cheekiness/M
+cheeky/TPR
+cheep/GMDS
+cheer/ZGMDRS
+cheerer/M
+cheerful/YP
+cheerfuller
+cheerfullest
+cheerfulness/M
+cheerily
+cheeriness/M
+cheerio/MS
+cheerleader/SM
+cheerless/PY
+cheerlessness/M
+cheery/TPR
+cheese/MGDS
+cheeseboard/S
+cheeseburger/SM
+cheesecake/SM
+cheesecloth/M
+cheeseparing/M
+cheesiness/M
+cheesy/TPR
+cheetah/M
+cheetahs
+chef/SM
+chem
+chemical/SMY
+chemise/MS
+chemist/MS
+chemistry/M
+chemo/M
+chemotherapeutic
+chemotherapy/M
+chemurgy/M
+chenille/M
+cherish/DSG
+cheroot/MS
+cherry/SM
+chert/M
+cherub/MS
+cherubic
+cherubim
+chervil/M
+chess/M
+chessboard/MS
+chessman/M
+chessmen
+chest/MDS
+chesterfield/SM
+chestful/SM
+chestnut/SM
+chesty/TR
+chevalier/SM
+cheviot/M
+chevron/MS
+chew/SZGMDR
+chewer/M
+chewiness/M
+chewy/PTR
+chg
+chge
+chi/SM
+chiaroscuro/M
+chic/PTMR
+chicane/MS
+chicanery/SM
+chichi/MS
+chick/XMNS
+chickadee/SM
+chicken/MDG
+chickenfeed/M
+chickenhearted
+chickenpox/M
+chickenshit/S!
+chickpea/SM
+chickweed/M
+chicle/M
+chicness/M
+chicory/SM
+chide/GDS
+chiding/Y
+chief/TMRYS
+chiefdom/M
+chieftain/MS
+chieftainship/SM
+chiffon/M
+chiffonier/MS
+chigger/MS
+chignon/MS
+chihuahua/SM
+chilblain/SM
+child/M
+childbearing/M
+childbirth/M
+childbirths
+childcare/M
+childhood/SM
+childish/YP
+childishness/M
+childless/P
+childlessness/M
+childlike
+childminder/S
+childminding
+childproof/GSD
+children/M
+chili/M
+chilies
+chill/JPZTGMDRS
+chiller/M
+chilliness/M
+chilling/Y
+chillness/M
+chilly/TPR
+chime/MZGDRS
+chimer/M
+chimera/MS
+chimeric
+chimerical
+chimney/MS
+chimp/MS
+chimpanzee/SM
+chin/SM
+china/M
+chinaware/M
+chinchilla/MS
+chine/MS
+chink/GMDS
+chinless
+chinned
+chinning
+chino/MS
+chinstrap/MS
+chintz/M
+chintzy/RT
+chinwag/S
+chip/SM
+chipboard
+chipmunk/SM
+chipolata/S
+chipped
+chipper/MS
+chippie
+chipping/S
+chippy/S
+chirography/M
+chiropodist/MS
+chiropody/M
+chiropractic/SM
+chiropractor/SM
+chirp/GMDS
+chirpily
+chirpy/PTR
+chirrup/GMDS
+chisel/ZGMDRS
+chiseler/M
+chit/SM
+chitchat/SM
+chitchatted
+chitchatting
+chitin/M
+chitinous
+chitosan
+chitterlings/M
+chivalrous/PY
+chivalrousness/M
+chivalry/M
+chive/MS
+chivy/GDS
+chlamydia/MS
+chlamydiae
+chloral/M
+chlordane/M
+chloride/MS
+chlorinate/GNDS
+chlorination/M
+chlorine/M
+chlorofluorocarbon/SM
+chloroform/SGMD
+chlorophyll/M
+chloroplast/MS
+chm
+choc/S
+chock/GMDS
+chockablock
+chocoholic/SM
+chocolate/MS
+chocolaty
+choice/MTRS
+choir/MS
+choirboy/MS
+choirmaster/SM
+choke/MZGDRS
+chokecherry/SM
+choker/M
+cholecystectomy
+cholecystitis
+choler/M
+cholera/M
+choleric
+cholesterol/M
+chomp/ZGMDRS
+choose/ZGRS
+chooser/M
+choosiness/M
+choosy/TPR
+chop/SM
+chophouse/SM
+chopped
+chopper/MDGS
+choppily
+choppiness/M
+chopping
+choppy/TPR
+chopstick/SM
+choral/MYS
+chorale/MS
+chord/MS
+chordal
+chordate/SM
+chore/MS
+chorea/M
+choreograph/DRZG
+choreographer/M
+choreographic
+choreographically
+choreographs
+choreography/M
+chorister/SM
+choroid/MS
+chortle/MZGDRS
+chortler/M
+chorus/GMDS
+chose
+chosen
+chow/SGMD
+chowder/MS
+chrism/M
+christen/ASGD
+christening/MS
+christian/U
+christology
+chromatic
+chromatically
+chromatin/M
+chromatography
+chrome/MGDS
+chromium/M
+chromosomal
+chromosome/MS
+chronic
+chronically
+chronicle/DRSMZG
+chronicler/M
+chronograph/M
+chronographs
+chronological/Y
+chronologist/MS
+chronology/SM
+chronometer/SM
+chrysalis/MS
+chrysanthemum/MS
+chub/SM
+chubbiness/M
+chubby/TPR
+chuck/GMDS
+chuckhole/SM
+chuckle/MGDS
+chuffed
+chug/SM
+chugged
+chugging
+chukka/MS
+chum/SM
+chummed
+chummily
+chumminess/M
+chumming
+chummy/PTR
+chump/MS
+chunder/GDS
+chunk/GMDS
+chunkiness/M
+chunky/PTR
+chunter/DGS
+church/MS
+churchgoer/SM
+churchgoing/M
+churchman/M
+churchmen
+churchwarden/MS
+churchwoman
+churchwomen
+churchyard/SM
+churl/MS
+churlish/PY
+churlishness/M
+churn/ZGMDRS
+churner/M
+chute/MS
+chutney/MS
+chutzpah/M
+chyme/M
+chyron/MS
+ciabatta/SM
+ciao/S
+cicada/MS
+cicatrices
+cicatrix/M
+cicerone/SM
+ciceroni
+cider's
+cider/S
+cigar/MS
+cigarette/MS
+cigarillo/MS
+cilantro/M
+cilia
+cilium/M
+cinch/GMDS
+cinchona/SM
+cincture/SM
+cinder/GMDS
+cine
+cinema/MS
+cinematic
+cinematographer/MS
+cinematographic
+cinematography/M
+cinnabar/M
+cinnamon/M
+cipher's
+cipher/CGDS
+cir
+circa
+circadian
+circle/MGDS
+circlet/MS
+circuit/MDGS
+circuital
+circuitous/YP
+circuitousness/M
+circuitry/M
+circuity/M
+circular/SMY
+circularity/M
+circularize/DSG
+circulate/ADSG
+circulation/SM
+circulatory
+circumcise/XDSGN
+circumcised/U
+circumcision/M
+circumference/MS
+circumferential
+circumflex/MS
+circumlocution/MS
+circumlocutory
+circumnavigate/XGNDS
+circumnavigation/M
+circumpolar
+circumscribe/GDS
+circumscription/MS
+circumspect/Y
+circumspection/M
+circumstance/MGDS
+circumstantial/Y
+circumvent/DSG
+circumvention/M
+circus/MS
+cirque/MS
+cirrhosis/M
+cirrhotic/SM
+cirri
+cirrus/M
+cis
+cisgender
+cistern/MS
+cit
+citadel/MS
+citation/AMS
+cite's
+cite/IAGSD
+citified
+citizen/MS
+citizenry/M
+citizenship/M
+citric
+citron/MS
+citronella/M
+citrus/MS
+city/SM
+citywide
+civet/MS
+civic/S
+civically
+civics/M
+civil/UY
+civilian/MS
+civility/ISM
+civilization/MS
+civilize/GDS
+civilized/U
+civvies/M
+ck
+cl
+clack/GMDS
+clad/U
+cladding/M
+clade
+claim's
+claim/CKEAGDS
+claimable/A
+claimant/MS
+claimed/U
+claimer/ECSM
+clairvoyance/M
+clairvoyant/MS
+clam/SM
+clambake/MS
+clamber/ZGMDRS
+clamberer/M
+clammed
+clammily
+clamminess/M
+clamming
+clammy/PTR
+clamor/GMDS
+clamorous
+clamp/GMDS
+clampdown/MS
+clan/SM
+clandestine/Y
+clang/ZGMDRS
+clangor/M
+clangorous/Y
+clank/GMDS
+clannish/P
+clannishness/M
+clansman/M
+clansmen
+clanswoman
+clanswomen
+clap/SM
+clapboard/MDGS
+clapped
+clapper/MS
+clapperboard/S
+clapping/M
+claptrap/M
+claque/MS
+claret/MS
+clarification/M
+clarify/XDSNG
+clarinet/SM
+clarinetist/SM
+clarion/MDGS
+clarity/M
+clash/GMDS
+clasp's
+clasp/UGDS
+class/GMDS
+classic/MS
+classical/MY
+classicism/M
+classicist/MS
+classifiable
+classification/CAM
+classifications
+classified's
+classified/U
+classifieds
+classifier/MS
+classify/ACSDGN
+classiness/M
+classism
+classless/P
+classmate/MS
+classroom/MS
+classwork/M
+classy/TRP
+clatter/GMDS
+clausal
+clause/MS
+claustrophobia/M
+claustrophobic
+clavichord/SM
+clavicle/MS
+clavier/MS
+claw's
+claw/CSGD
+clay/M
+clayey
+clayier
+clayiest
+clean/BJPZTGDRYS
+cleaner/M
+cleaning/M
+cleanliness/UM
+cleanly/UTPR
+cleanness/UM
+cleanse/ZGDRS
+cleanser/M
+cleanup/MS
+clear/JPTGMDRYS
+clearance/SM
+clearheaded
+clearing/M
+clearinghouse/SM
+clearness/M
+clearway/S
+cleat/MS
+cleavage/MS
+cleave/ZGDRS
+cleaver/M
+clef/SM
+cleft/MS
+clematis/MS
+clemency/IM
+clement/Y
+clementine/S
+clench/GMDS
+clerestory/SM
+clergy/SM
+clergyman/M
+clergymen
+clergywoman/M
+clergywomen
+cleric/MS
+clerical/Y
+clericalism/M
+clerk/GMDS
+clerkship/M
+clever/PTRY
+cleverness/M
+clevis/MS
+clew/SGMD
+cliche/MDS
+click/BZGMDRS
+clickbait
+clicker/M
+client/MS
+clientele/MS
+cliff/MS
+cliffhanger/SM
+cliffhanging
+clifftop/S
+clii
+climacteric/M
+climactic
+climate/SM
+climatic
+climatically
+climatologist/SM
+climatology/M
+climax/MDSG
+climb/SMDRZGB
+climber/M
+climbing/M
+clime/SM
+clinch/MDRSZG
+clincher/M
+cling/SMRZG
+clinger/M
+clingfilm
+clingy/RT
+clinic/SM
+clinical/Y
+clinician/SM
+clink/SMDRZG
+clinker/M
+cliometric/S
+cliometrician/MS
+cliometrics/M
+clip/SM
+clipboard/MS
+clipped
+clipper/SM
+clipping/SM
+clique/SM
+cliquey
+cliquish/YP
+cliquishness/M
+clit/SM
+clitoral
+clitorides
+clitoris/MS
+clix
+cloaca/M
+cloacae
+cloak's
+cloak/USDG
+cloakroom/MS
+clobber/SMDG
+cloche/SM
+clock/SMDG
+clockwise
+clockwork/SM
+clod/MS
+cloddish
+clodhopper/MS
+clog's
+clog/US
+clogged/U
+clogging/U
+cloisonne/M
+cloister/SMDG
+cloistral
+clomp/SDG
+clonal
+clone/DSMG
+clonidine
+clonk/SMDG
+clop/MS
+clopped
+clopping
+close/DRSMYTGJP
+closefisted
+closemouthed
+closeness/M
+closeout/MS
+closet/SMDG
+closeup/SM
+closing/M
+closure/ESM
+clot/MS
+cloth/M
+clothe/UDSG
+clotheshorse/MS
+clothesline/SM
+clothespin/SM
+clothier/MS
+clothing/M
+cloths
+clotted
+clotting
+cloture/SM
+cloud/SMDG
+cloudburst/SM
+clouded/U
+cloudiness/M
+cloudless
+cloudy/RPT
+clout/SMDG
+clove/RSMZ
+cloven
+clover/M
+cloverleaf/SM
+cloverleaves
+clown/SMDG
+clownish/YP
+clownishness/M
+cloy/DGS
+cloying/Y
+club/MS
+clubbable
+clubbed
+clubber/S
+clubbing
+clubfeet
+clubfoot/MD
+clubhouse/SM
+clubland
+cluck/SMDG
+clue/MGDS
+clueless
+clump/SMDG
+clumpy/TR
+clumsily
+clumsiness/M
+clumsy/TRP
+clung
+clunk/SMDRZG
+clunker/M
+clunky/TR
+cluster/MDSG
+clutch/GMDS
+clutter's
+clutter/UDSG
+clvi
+clvii
+clxi
+clxii
+clxiv
+clxix
+clxvi
+clxvii
+cm
+cnidarian/MS
+co/ESD
+coach/MDSG
+coachload/S
+coachman/M
+coachmen
+coachwork
+coadjutor/MS
+coagulant/MS
+coagulate/GNDS
+coagulation/M
+coagulator/MS
+coal/MDGS
+coalesce/GDS
+coalescence/M
+coalescent
+coalface/MS
+coalfield/S
+coalition/MS
+coalitionist/MS
+coalmine/S
+coarse/RYTP
+coarsen/SDG
+coarseness/M
+coast/SMDRZG
+coastal
+coaster/M
+coastguard/S
+coastline/MS
+coat/MDGJS
+coating/M
+coatroom/S
+coattail/SM
+coauthor/MDGS
+coax/DRSZG
+coaxer/M
+coaxial
+coaxing/Y
+cob/SM
+cobalt/M
+cobber/S
+cobble/DRSMZG
+cobbler/M
+cobblestone/SM
+cobnut/S
+cobra/SM
+cobweb/SM
+cobwebbed
+cobwebby/RT
+coca/M
+cocaine/M
+cocci/S
+coccus/M
+coccyges
+coccyx/M
+cochineal/M
+cochlea/SM
+cochleae
+cochlear
+cock/MDGS
+cockade/SM
+cockamamie
+cockatiel/MS
+cockatoo/SM
+cockatrice/SM
+cockchafer/S
+cockcrow/SM
+cockerel/SM
+cockeyed
+cockfight/MGS
+cockfighting/M
+cockily
+cockiness/M
+cockle/SM
+cockleshell/SM
+cockney/SM
+cockpit/SM
+cockroach/MS
+cockscomb/SM
+cocksucker/MS!
+cocksure
+cocktail/MS
+cocky/RTP
+coco/MS
+cocoa/SM
+coconut/SM
+cocoon/SMDG
+cod/SM
+coda/MS
+codded
+codding
+coddle/DSG
+code's
+code/CZGDRS
+codeine/M
+codependency/M
+codependent/SM
+coder/CM
+codex/M
+codfish/MS
+codger/SM
+codices
+codicil/SM
+codification/M
+codifier/M
+codify/XDRSNZG
+codon/S
+codpiece/MS
+codswallop
+coed/MS
+coeducation/M
+coeducational
+coefficient/MS
+coelenterate/MS
+coenzyme
+coequal/MYS
+coerce/DRSZGNV
+coercer/M
+coercion/M
+coeval/SMY
+coexist/DSG
+coexistence/M
+coexistent
+coextensive
+coffee/SM
+coffeecake/SM
+coffeehouse/MS
+coffeemaker/SM
+coffeepot/MS
+coffer/SM
+cofferdam/MS
+coffin/SMDG
+cog/SM
+cogency/M
+cogent/Y
+cogitate/DSXGNV
+cogitation/M
+cogitator/MS
+cognac/SM
+cognate/MS
+cognition/AM
+cognitional
+cognitive/Y
+cognizable
+cognizance/AM
+cognizant
+cognomen/SM
+cognoscente/M
+cognoscenti
+cogwheel/SM
+cohabit/SGD
+cohabitant/MS
+cohabitation/M
+coheir/SM
+cohere/DSG
+coherence/IM
+coherency/M
+coherent/IY
+cohesion/M
+cohesive/YP
+cohesiveness/M
+coho/MS
+cohort/SM
+coif/MS
+coiffed
+coiffing
+coiffure/DSMG
+coil's/A
+coil/UADGS
+coin/MDRZGS
+coinage/SM
+coincide/DSG
+coincidence/MS
+coincident
+coincidental/Y
+coiner/M
+coinsurance/M
+coir
+coital
+coitus/M
+coke/MGDS
+col/S
+cola/MS
+colander/SM
+cold/MRYTPS
+coldblooded
+coldness/M
+coleslaw/M
+coleus/MS
+coley/S
+colic/M
+colicky
+coliseum/MS
+colitis/M
+coll
+collaborate/DSXGNV
+collaboration/M
+collaborationist
+collaborative/Y
+collaborator/MS
+collage/SM
+collagen
+collapse/MGDS
+collapsible
+collar/SMDG
+collarbone/SM
+collard/SM
+collarless
+collate/DSXGN
+collateral/MY
+collateralize
+collation/M
+collator/MS
+colleague/MS
+collect's
+collect/ASGVD
+collected/U
+collectedly
+collectible/SM
+collection/AMS
+collective/MYS
+collectivism/M
+collectivist/SM
+collectivization/M
+collectivize/DSG
+collector/MS
+colleen/SM
+college/SM
+collegiality/M
+collegian/MS
+collegiate
+collide/DRSZG
+collie/RSMZ
+collier/M
+colliery/SM
+collision/SM
+collocate/MGNDSX
+collocation/M
+colloid/SM
+colloidal
+colloq
+colloquial/Y
+colloquialism/SM
+colloquies
+colloquium/MS
+colloquy/M
+collude/DSG
+collusion/M
+collusive
+cologne/SM
+colon/SM
+colonel/SM
+colonelcy/M
+colones
+colonial/SMY
+colonialism/M
+colonialist/MS
+colonist/SM
+colonization/ACM
+colonize/CAGSD
+colonizer/MS
+colonnade/MDS
+colonoscopy/SM
+colony/SM
+colophon/SM
+color's
+color/AEGDS
+colorant/SM
+coloration/EM
+coloratura/MS
+colorblind/P
+colorblindness/M
+colored's
+colored/U
+coloreds
+colorfast/P
+colorfastness/M
+colorful/PY
+colorfulness/M
+coloring's
+colorist/S
+colorization/M
+colorize/DSG
+colorless/PY
+colorlessness/M
+colorway/S
+colossal/Y
+colossi
+colossus/M
+colostomy/SM
+colostrum/M
+colt/MS
+coltish
+columbine/SM
+column/SMD
+columnar
+columnist/SM
+com/JL
+coma/MS
+comaker/SM
+comatose
+comb/MDRZGJS
+combat/SMDGV
+combatant/SM
+combativeness/M
+combed/U
+comber/M
+combination/SM
+combine's
+combine/ADSG
+combined/U
+combiner/MS
+combings/M
+combo/SM
+combust/SGVD
+combustibility/M
+combustible/MS
+combustion/M
+come/IMZGRS
+comeback/MS
+comedian/MS
+comedic
+comedienne/MS
+comedown/MS
+comedy/SM
+comeliness/M
+comely/RPT
+comer's
+comestible/SM
+comet/SM
+comeuppance/SM
+comfit's
+comfit/ES
+comfort/ESMDG
+comfortable/P
+comfortableness/M
+comfortably/U
+comforter/MS
+comforting/Y
+comfortless
+comfy/RT
+comic/SM
+comical/Y
+comicality/M
+coming/M
+comity/M
+comm
+comma/SM
+command/SMDRLZG
+commandant/MS
+commandeer/GDS
+commander/M
+commandment/MS
+commando/SM
+commemorate/XGNVDS
+commemoration/M
+commemorator/MS
+commence/ADSLG
+commencement/AM
+commencements
+commend/ASDBG
+commendably
+commendation/AMS
+commendatory
+commensurable
+commensurate/IY
+comment/GSMD
+commentary/SM
+commentate/DSG
+commentator/SM
+commerce/M
+commercial/SMY
+commercialism/M
+commercialization/M
+commercialize/GDS
+commie/SM
+commingle/DSG
+commiserate/GNVDSX
+commiseration/M
+commissar/SM
+commissariat/SM
+commissary/SM
+commission's
+commission/ACSGD
+commissionaire/S
+commissioner/SM
+commit/AS
+commitment/MS
+committal/SM
+committed/AU
+committee/SM
+committeeman/M
+committeemen
+committeewoman/M
+committeewomen
+committer/S
+committing/A
+commode's
+commode/EIS
+commodification
+commodious/Y
+commodity/SM
+commodore/SM
+common's
+common/UPRYT
+commonality/S
+commonalty/M
+commoner/MS
+commonness/UM
+commonplace/MS
+commons
+commonsense
+commonweal/MH
+commonwealth/M
+commonwealths
+commotion/SM
+communal/Y
+commune/XDSMGN
+communicability/M
+communicable/I
+communicably
+communicant/MS
+communicate/GNVDSX
+communication/M
+communicative/U
+communicator/SM
+communion/M
+communique/SM
+communism/M
+communist/SM
+communistic
+community/SM
+commutation/MS
+commutative
+commutativity
+commutator/SM
+commute/BDRSMZG
+commuter/M
+comorbidity
+comp/MDYGS
+compact/TGSMDRYP
+compaction
+compactness/M
+compactor/SM
+companion/SBM
+companionably
+companionship/M
+companionway/MS
+company/SM
+comparability/M
+comparable/I
+comparably/I
+comparative/MYS
+compare/BDSG
+comparison/MS
+compartment/SM
+compartmental
+compartmentalization/M
+compartmentalize/DSG
+compass/GMDS
+compassion/M
+compassionate/Y
+compatibility/IM
+compatible/IMS
+compatibly/I
+compatriot/MS
+compeer/SM
+compel/S
+compelled
+compelling/Y
+compendious
+compendium/SM
+compensate/DSXGN
+compensated/U
+compensation/M
+compensatory
+compere/DSG
+compete/DSG
+competence/IM
+competences
+competencies
+competency/IM
+competent/IY
+competition/SM
+competitive/PY
+competitiveness/M
+competitor/SM
+compilation/SM
+compile/DRSZG
+compiler/M
+complacence/M
+complacency/M
+complacent/Y
+complain/DRZGS
+complainant/MS
+complainer/M
+complaint/SM
+complaisance/M
+complaisant/Y
+complected
+complement/SGMD
+complementary
+complete/PYTGNXDRS
+completed/U
+completeness/IM
+completion/M
+complex/MSY
+complexion/MDS
+complexional
+complexity/SM
+compliance/M
+compliant/Y
+complicate/GDS
+complicated/Y
+complication/M
+complicit
+complicity/M
+compliment/MDGS
+complimentary/U
+comply/NDSXG
+compo/S
+component/SM
+comport/LSGD
+comportment/M
+compose/AECGSD
+composedly
+composer/MS
+composite/MYGNXDS
+composition/CM
+compositional
+compositor/SM
+compost/SGMD
+composure/EM
+compote/SM
+compound/GMDBS
+compounded/U
+comprehend/SDG
+comprehensibility/IM
+comprehensible/I
+comprehensibly/I
+comprehension/IM
+comprehensions
+comprehensive/PMYS
+comprehensiveness/M
+compress's
+compress/CGVDS
+compressed/U
+compressible
+compression/CM
+compressor/SM
+comprise/GDS
+compromise/MGDS
+comptroller/MS
+compulsion/MS
+compulsive/YP
+compulsiveness/M
+compulsorily
+compulsory/SM
+compunction/SM
+computation/SM
+computational/Y
+compute/ADSG
+computer/MS
+computerate
+computerization/M
+computerize/GDS
+computing/M
+comrade/SMY
+comradeship/M
+con/GSM
+concatenate/XDSGN
+concatenation/M
+concave/YP
+concaveness/M
+conceal/SDRZGBL
+concealed/U
+concealer/M
+concealment/M
+conceit/SMD
+conceited/PY
+conceitedness/M
+conceivable/I
+conceivably/I
+conceive/DSGB
+concentrate/DSMGNX
+concentration/M
+concentric
+concentrically
+concept/SM
+conception/SM
+conceptional
+conceptual/Y
+conceptualization/MS
+conceptualize/DSG
+concern/UMD
+concerned/UY
+concerning
+concerns
+concert's
+concert/ESDG
+concerted/Y
+concertgoer/S
+concertina/SGMD
+concertize/DSG
+concertmaster/MS
+concerto/SM
+concessionaire/MS
+concessional
+concessionary
+conch/M
+conchie/S
+conchs
+concierge/MS
+conciliate/DSGN
+conciliation/AM
+conciliator/SM
+conciliatory
+concise/RPYTN
+conciseness/M
+concision/M
+conclave/SM
+conclude/DSG
+conclusion/MS
+conclusive/IYP
+conclusiveness/IM
+concoct/SDG
+concoction/MS
+concomitant/MYS
+concord/M
+concordance/SM
+concordant
+concordat/SM
+concourse/SM
+concrete/DSPMYGNX
+concreteness/M
+concretion/M
+concubinage/M
+concubine/MS
+concupiscence/M
+concupiscent
+concur/S
+concurred
+concurrence/SM
+concurrency
+concurring
+concuss/V
+concussion/SM
+condemn/SDRZG
+condemnation/MS
+condemnatory
+condemner/M
+condensate/MNXS
+condensation/M
+condense/DRSZG
+condenser/M
+condescending/Y
+condescension/M
+condign
+condiment/MS
+condition's
+condition/AGSD
+conditional/SMY
+conditionality
+conditioned/U
+conditioner/SM
+conditioning/M
+condo/SM
+condolence/SM
+condom/SM
+condominium/MS
+condone/DSG
+condor/SM
+conduce/DSGV
+conduct/MDGV
+conductance/M
+conductibility/M
+conductible
+conduction/M
+conductivity/M
+conductor/MS
+conductress/MS
+conduit/SM
+cone/M
+coneys
+confab/SM
+confabbed
+confabbing
+confabulate/XDSGN
+confabulation/M
+confection/SZMR
+confectioner/M
+confectionery/SM
+confederacy/SM
+confederate/M
+confer/S
+conferee/SM
+conference/MGS
+conferrable
+conferral/M
+conferred
+conferrer/MS
+conferring
+confessed/Y
+confession/SM
+confessional/SM
+confessor/MS
+confetti/M
+confidant/MS
+confidante/SM
+confide/DRSZG
+confidence/SM
+confident/Y
+confidential/Y
+confidentiality/M
+confider/M
+confiding/Y
+configuration/S
+configure/B
+confined/U
+confinement/MS
+confirm/ASDG
+confirmation/ASM
+confirmatory
+confirmed/U
+confiscate/DSGNX
+confiscation/M
+confiscator/SM
+confiscatory
+conflagration/MS
+conflate/XDSGN
+conflation/M
+conflict/SGMD
+confluence/MS
+confluent
+conform/ZB
+conformable/U
+conformal
+conformance/M
+conformism/M
+conformist/SM
+conformity/M
+confrere/MS
+confrontation/SM
+confrontational
+confuse/RZ
+confused/Y
+confusing/Y
+confutation/M
+confute/DSG
+conga/SMDG
+congeal/SLDG
+congealment/M
+conger/SM
+congeries/M
+congest/SDGV
+congestion/M
+conglomerate/DSXMGN
+conglomeration/M
+congrats/M
+congratulate/XGNDS
+congratulation/M
+congratulatory
+congregant/MS
+congregate/GNDSX
+congregation/M
+congregational
+congregationalism/M
+congregationalist/MS
+congress/MS
+congressional
+congressman/M
+congressmen
+congresspeople
+congressperson/MS
+congresswoman/M
+congresswomen
+congruence/M
+congruent/Y
+congruity/ISM
+congruous
+conic/SM
+conical/Y
+conifer/SM
+coniferous
+conjectural
+conjecture/MGDS
+conjoint
+conjugal/Y
+conjugate/DSXGN
+conjugation/M
+conjunct/VMS
+conjunctiva/SM
+conjunctive/SM
+conjunctivitis/M
+conjuration/MS
+conjure/DRSZG
+conjurer/M
+conk/MDRZ
+conman
+connect/AEDVGS
+connectable
+connected/U
+connection/EMS
+connective/MS
+connectivity/M
+connector/MS
+conned
+conning
+conniption/MS
+connivance/M
+connive/DRSZG
+conniver/M
+connoisseur/SM
+connotative
+connubial
+conquer/ASDG
+conquerable/U
+conquered/U
+conqueror/MS
+conquest/AM
+conquistador/SM
+cons/DSG
+consanguineous
+consanguinity/M
+conscienceless
+conscientious/PY
+conscientiousness/M
+conscious/UYP
+consciousness/UM
+consciousnesses
+conscription/M
+consecrate/ADSGN
+consecrated/U
+consecration/AM
+consecrations
+consecutive/Y
+consensual
+consensus/MS
+consent/SMDG
+consequence/SM
+consequent/Y
+consequential/IY
+conservancy/SM
+conservation/M
+conservationism/M
+conservationist/SM
+conservatism/M
+conservative/MYS
+conservatoire/S
+conservator/SM
+conservatory/SM
+consider/AGSD
+considerable/I
+considerably
+considerate/IPYN
+considerateness/IM
+consideration/AIM
+considerations
+considered/U
+consign/ASDG
+consignee/MS
+consignment/MS
+consist/SDG
+consistence/MS
+consistency/ISM
+consistent/IY
+consistory/SM
+consolable/I
+consolation/MS
+consolatory
+consolidate/XDSGN
+consolidated/U
+consolidation/M
+consolidator/MS
+consoling/Y
+consomme/M
+consonance/SM
+consonant/SMY
+consortia
+consortium/M
+conspectus/MS
+conspicuous/IPY
+conspicuousness/IM
+conspiracy/SM
+conspirator/MS
+conspiratorial/Y
+conspire/GD
+constable/SM
+constabulary/SM
+constancy/IM
+constant/MYS
+constellation/SM
+consternation/M
+constipate/GNDS
+constipation/M
+constituency/SM
+constituent/SM
+constitute/ADSGNV
+constitution/AM
+constitutional/MYS
+constitutionalism
+constitutionality/UM
+constitutions
+constrained/U
+constraint/SM
+constrict/GVSD
+constriction/SM
+constrictor/SM
+construable
+construct's
+construct/CADVGS
+construction/CAMS
+constructional
+constructionist's
+constructionist/CS
+constructive/YP
+constructiveness/M
+constructor/MS
+construe/GDS
+consul/KSM
+consular/K
+consulate/SM
+consulship/M
+consult/GSD
+consultancy/SM
+consultant/MS
+consultation/MS
+consultative
+consumable/SM
+consume/BDRSZG
+consumed/U
+consumer/M
+consumerism/M
+consumerist/MS
+consummate/YGNXDS
+consummated/U
+consumption/M
+consumptive/SM
+cont
+contact/ASDG
+contactable
+contactless
+contagion/MS
+contagious/PY
+contagiousness/M
+contain/SBLDRZG
+container/M
+containerization/M
+containerize/DSG
+containment/M
+contaminant/SM
+contaminate/ACDSG
+contaminated/U
+contamination/CM
+contaminator/SM
+contd
+contemn/SDG
+contemplate/DSGNV
+contemplation/M
+contemplative/SMY
+contemporaneity/M
+contemporaneous/Y
+contempt/M
+contemptible
+contemptibly
+contemptuous/YP
+contemptuousness/M
+contender/MS
+content/ESLMDG
+contented/EY
+contentedness/M
+contention/SM
+contentious/YP
+contentiousness/M
+contently
+contentment/EM
+conterminous/Y
+contestable/I
+contestant/MS
+contested/U
+contextualization
+contextualize/DSG
+contiguity/M
+contiguous/Y
+continence/IM
+continent/SM
+continental/SM
+contingency/SM
+contingent/SMY
+continua
+continual/Y
+continuance/EMS
+continuation/EMS
+continue/EGDS
+continuity/ESM
+continuous/EY
+continuum/M
+contort/GD
+contortion/MS
+contortionist/SM
+contra
+contraband/M
+contrabassoon/S
+contraception/M
+contraceptive/SM
+contract/MDG
+contractible
+contractile
+contractility
+contraction/S
+contractual/Y
+contradict/SDG
+contradiction/SM
+contradictory
+contradistinction/MS
+contraflow/S
+contrail/MS
+contraindicate/GNXDS
+contraindication/M
+contralto/SM
+contraption/SM
+contrapuntal/Y
+contrarian/SM
+contrarianism
+contrariety/M
+contrarily
+contrariness/M
+contrariwise
+contrary/PSM
+contrast/MDGS
+contravene/GDS
+contravention/SM
+contretemps/M
+contribute/XGND
+contribution/M
+contributor/MS
+contributory
+contrition/M
+contrivance/MS
+contrive/ZGDRS
+contriver/M
+control's
+control/CS
+controllable/U
+controlled/UC
+controller/MS
+controlling/C
+controversial/Y
+controversy/SM
+controvert/DSG
+controvertible/I
+contumacious/Y
+contumacy/M
+contumelious
+contumely/SM
+contuse/XDSGN
+contusion/M
+conundrum/SM
+conurbation/MS
+convalesce/DSG
+convalescence/MS
+convalescent/SM
+convection/M
+convectional
+convective
+convector/S
+convene/ADSG
+convener/MS
+convenience/IMS
+convenient/IY
+convent/SM
+conventicle/MS
+convention/SM
+conventional/UY
+conventionality/UM
+conventionalize/GDS
+conventioneer/S
+convergence/MS
+convergent
+conversant
+conversation/MS
+conversational/Y
+conversationalist/SM
+converse/Y
+convert's
+convert/AGSD
+converted/U
+converter/SM
+convertibility/M
+convertible/SM
+convex/Y
+convexity/M
+convey/SBDG
+conveyance/MGS
+conveyor/MS
+convict/GSMD
+conviction/MS
+convince/GDS
+convinced/U
+convincing/UY
+convivial/Y
+conviviality/M
+convoke/DSG
+convoluted
+convolution/MS
+convoy/SMDG
+convulse/GNVXDS
+convulsion/M
+convulsive/Y
+cony/M
+coo/GSMD
+cook's
+cook/ADGS
+cookbook/MS
+cooked/U
+cooker/SM
+cookery/SM
+cookhouse/S
+cookie/SM
+cooking/M
+cookout/SM
+cookware/SM
+cool/MDRYZTGPS
+coolant/SM
+cooler/M
+coolie/SM
+coolness/M
+coon/MS!
+coonskin/MS
+coop/MDRZGS
+cooper/MDG
+cooperage/M
+cooperate/DSGNV
+cooperation/M
+cooperative/PMYS
+cooperativeness/M
+cooperator/SM
+coordinate/DSMYGN
+coordinated/U
+coordination/M
+coordinator/MS
+coot/MS
+cootie/SM
+cop/GJSMD
+copacetic
+copay/M
+cope/MS
+copier/SM
+copilot/SM
+coping/M
+copious/PY
+copiousness/M
+copped
+copper/SM
+copperhead/SM
+copperplate/M
+coppery
+copping
+copra/M
+copse/SM
+copter/SM
+copula/SM
+copulate/GNVDS
+copulation/M
+copulative/SM
+copy's
+copy/ADSG
+copybook/SM
+copycat/MS
+copycatted
+copycatting
+copyist/MS
+copyleft
+copyright/GSMD
+copywriter/MS
+coquetry/SM
+coquette/DSMG
+coquettish/Y
+cor
+coracle/SM
+coral/SM
+corbel/SM
+cord/EASGDM
+cordage/M
+cordial/SMY
+cordiality/M
+cordillera/MS
+cordite/M
+cordless
+cordon/SMDG
+cordovan/M
+corduroy/MS
+corduroys/M
+core/MZGDRS
+coreligionist/S
+corer/M
+corespondent/MS
+corgi/SM
+coriander/M
+cork's
+cork/UDGS
+corkage
+corker/SM
+corkscrew/SMDG
+corm/MS
+cormorant/SM
+corn/MDRZGS
+cornball/MS
+cornbread/M
+corncob/MS
+corncrake/S
+cornea/SM
+corneal
+corner/GMD
+cornerstone/SM
+cornet/SM
+cornfield/S
+cornflakes/M
+cornflour
+cornflower/SM
+cornice/MS
+cornily
+corniness/M
+cornmeal/M
+cornrow/MDGS
+cornstalk/SM
+cornstarch/M
+cornucopia/MS
+corny/PRT
+corolla/MS
+corollary/SM
+corona/SM
+coronal/MS
+coronary/SM
+coronation/SM
+coronavirus/MS
+coroner/MS
+coronet/MS
+corp
+corpora
+corporal/SM
+corporate/XYN
+corporation/IM
+corporatism
+corporeal/Y
+corporeality/M
+corps/MS
+corpse/M
+corpsman/M
+corpsmen
+corpulence/M
+corpulent
+corpus/M
+corpuscle/MS
+corpuscular
+corr
+corral/SM
+corralled
+corralling
+correct/DRYTGVSBP
+corrected/U
+correction/SM
+correctional
+corrective/SM
+correctness/IM
+corrector
+correlate/XDSMGNV
+correlated/U
+correlation/M
+correlational
+correlative/MS
+correspond/SDG
+correspondence/SM
+correspondent/SM
+corresponding/Y
+corridor/SM
+corrie/S
+corroborate/GNVDSX
+corroborated/U
+corroboration/M
+corroborator/SM
+corroboratory
+corrode/GDS
+corrosion/M
+corrosive/SMY
+corrugate/GNXDS
+corrugation/M
+corrupt/DRYPSTG
+corruptibility/IM
+corruptible/I
+corruption/MS
+corruptness/M
+corsage/MS
+corsair/MS
+corset/SGMD
+cortege/MS
+cortex/M
+cortical
+cortices
+cortisol
+cortisone/M
+corundum/M
+coruscate/GNDS
+coruscation/M
+corvette/SM
+cos/M
+cosh/DSG
+cosign/ZGSDR
+cosignatory/SM
+cosigner/M
+cosine/SM
+cosmetic/SM
+cosmetically
+cosmetician/MS
+cosmetologist/MS
+cosmetology/M
+cosmic
+cosmically
+cosmogonist/SM
+cosmogony/SM
+cosmological
+cosmologist/SM
+cosmology/SM
+cosmonaut/SM
+cosmopolitan/MS
+cosmopolitanism/M
+cosmos/MS
+cosplay
+cosponsor/GSMD
+cosset/SGD
+cossetted
+cossetting
+cost/MDYGSJ
+costar/SM
+costarred
+costarring
+costliness/M
+costly/PTR
+costume/MZGDRS
+costumer/M
+costumier/S
+cot/SM
+cotangent/MS
+cote/MS
+coterie/MS
+coterminous
+cotillion/SM
+cottage/MZGRS
+cottager/M
+cottar/SM
+cotter/SM
+cotton/SGMD
+cottonmouth/M
+cottonmouths
+cottonseed/MS
+cottontail/MS
+cottonwood/SM
+cottony
+cotyledon/MS
+couch/MDSG
+couchette/S
+cougar/SM
+cough/MDG
+coughs
+could
+could've
+couldn't
+coulee/SM
+coulis
+coulomb/MS
+council/MS
+councilman/M
+councilmen
+councilor/MS
+councilperson/SM
+councilwoman/M
+councilwomen
+counsel/JMDGS
+counselor/MS
+count/EASMDG
+countable/U
+countably
+countdown/MS
+counted/U
+countenance's
+countenance/EGDS
+counter/EMS
+counteract/SGVD
+counteraction/MS
+counterargument/S
+counterattack/GMDS
+counterbalance/MGDS
+counterblast/S
+counterclaim/GSMD
+counterclockwise
+counterculture/SM
+countered
+counterespionage/M
+counterexample/S
+counterfactual
+counterfeit/ZGMDRS
+counterfeiter/M
+counterfoil/MS
+countering
+counterinsurgency/SM
+counterintelligence/M
+counterman/M
+countermand/GMDS
+countermeasure/SM
+countermelody/S
+countermen
+countermove/S
+counteroffensive/SM
+counteroffer/SM
+counterpane/SM
+counterpart/SM
+counterpetition
+counterpoint/MDGS
+counterpoise/MGDS
+counterproductive
+counterrevolution/SM
+counterrevolutionary/SM
+countersign/GSMD
+countersignature/MS
+countersink/GSM
+counterspy/SM
+counterstroke/SM
+countersunk
+countertenor/MS
+countervail/GSD
+counterweight/MS
+countess/MS
+countless
+countrified
+country/SM
+countryman/M
+countrymen
+countryside/MS
+countrywide
+countrywoman/M
+countrywomen
+county/SM
+countywide
+coup's
+coup/AS
+coupe/SM
+couple's
+couple/UCGSD
+couplet/MS
+coupling/SM
+coupon/SM
+courage/M
+courageous/YP
+courageousness/M
+courgette/S
+courier/MDSG
+course/EDGMS
+coursebook/S
+courser/MS
+coursework
+court/SMDYG
+courteous/EY
+courteousness/M
+courtesan/SM
+courtesy/ESM
+courthouse/MS
+courtier/SM
+courtliness/M
+courtly/PRT
+courtroom/MS
+courtship/MS
+courtyard/MS
+couscous/M
+cousin/SM
+couture/M
+couturier/MS
+covalent
+covariance
+covariant
+cove/MS
+coven/SM
+covenant/MDSG
+cover's
+cover/AEUGDS
+coverage/M
+coverall/MS
+covering's
+coverings
+coverlet/MS
+covert/SPMY
+covertness/M
+covet/SDG
+covetous/YP
+covetousness/M
+covey/SM
+cow/ZGSMDR
+coward/SMY
+cowardice/M
+cowardliness/M
+cowbell/MS
+cowbird/MS
+cowboy/SM
+cowcatcher/MS
+cower/DG
+cowgirl/MS
+cowhand/MS
+cowherd/MS
+cowhide/MS
+cowl/MGSJ
+cowlick/MS
+cowling/M
+cowman/M
+cowmen
+coworker/MS
+cowpat/S
+cowpoke/MS
+cowpox/M
+cowpuncher/SM
+cowrie/SM
+cowshed/S
+cowslip/SM
+cox/GDS
+coxcomb/MS
+coxswain/MS
+coy/TPRY
+coyness/M
+coyote/SM
+coypu/SM
+cozen/SDG
+cozenage/M
+cozily
+coziness/M
+cozy/RSMTP
+cpd
+cpl
+cps
+crab/MS
+crabbed
+crabber/SM
+crabbily
+crabbiness/M
+crabbing
+crabby/PRT
+crabgrass/M
+crablike
+crabwise
+crack/SMDRYZGJ
+crackdown/MS
+cracker/M
+crackerjack/MS
+crackhead/MS
+crackle/DSJMG
+crackling/M
+crackpot/MS
+crackup/SM
+cradle/DSMG
+craft/SMDG
+craftily
+craftiness/M
+craftsman/M
+craftsmanship/M
+craftsmen
+craftspeople
+craftswoman/M
+craftswomen
+crafty/RTP
+crag/MS
+cragginess/M
+craggy/RPT
+cram/S
+crammed
+crammer/S
+cramming
+cramp/SMDG
+cramping/M
+crampon/SM
+cranberry/SM
+crane/DSMG
+cranial
+cranium/SM
+crank/SMDG
+crankcase/SM
+crankily
+crankiness/M
+crankshaft/MS
+cranky/PRT
+cranny/DSM
+crap/MS
+crape/SM
+crapped
+crapper/S
+crappie/RSMT
+crapping
+crappy
+craps/M
+crapshooter/MS
+crash/MDSG
+crass/RYTP
+crassness/M
+crate/DRSMZG
+crater/MDG
+cravat/SM
+crave/DSGJ
+craven/SMYP
+cravenness/M
+craving/M
+craw/MS
+crawdad/SM
+crawl/SMDRZG
+crawler/M
+crawlspace/SM
+crawly/TRSM
+cray/S
+crayfish/MS
+crayola/S
+crayon/GSMD
+craze/DSMG
+crazily
+craziness/M
+crazy/PRSMT
+creak/SMDG
+creakily
+creakiness/M
+creaky/RPT
+cream/SMDRZG
+creamer/M
+creamery/SM
+creamily
+creaminess/M
+creamy/RPT
+crease/ICGMSD
+create/KADSGNV
+creation's/K
+creation/ASM
+creationism/SM
+creationist/SM
+creative/SMYP
+creativeness/M
+creativity/M
+creator/MS
+creature/SM
+creche/SM
+cred
+credence/M
+credential/SGMD
+credenza/SM
+credibility/IM
+credible/I
+credibly/I
+credit/EGSBMD
+creditably/E
+creditor/SM
+creditworthy/P
+credo/SM
+credulity/IM
+credulous/IY
+credulousness/M
+creed/SM
+creek/SM
+creel/SM
+creep/SMRZG
+creeper/M
+creepily
+creepiness/M
+creepy/TPR
+cremains/M
+cremate/GNDSX
+cremation/M
+crematoria
+crematorium/MS
+crematory/SM
+creme/SM
+crenelate/XGNDS
+crenelation/M
+creole/SM
+creosote/MGDS
+crepe/SM
+crept
+crepuscular
+crescendo/CSM
+crescent/MS
+cress/M
+crest/SMDG
+crestfallen
+crestless
+cretaceous
+cretin/SM
+cretinism/M
+cretinous
+cretonne/M
+crevasse/SM
+crevice/MS
+crew/MDGS
+crewel/M
+crewelwork/M
+crewman/M
+crewmen
+crib/MS
+cribbage/M
+cribbed
+cribber/MS
+cribbing
+crick/SMDG
+cricket/MRSZG
+cricketer/M
+crier/M
+crikey
+crime/SM
+criminal/MYS
+criminality/M
+criminalize/CGDS
+criminologist/MS
+criminology/M
+crimp/SMDG
+crimson/SMDG
+cringe/DSMG
+crinkle/DSMG
+crinkly/RT
+crinoline/SM
+cripes
+cripple/DRSMZG
+crippler/M
+crippleware
+crippling/Y
+crises
+crisis/M
+crisp/SMDRYTGP
+crispbread/S
+crispiness/M
+crispness/M
+crispy/PRT
+crisscross/GMDS
+criteria
+criterion/M
+critic/SM
+critical/UY
+criticality
+criticism/MS
+criticize/ZGDRS
+criticizer/M
+critique/MGDS
+critter/SM
+croak/SMDG
+croaky/RT
+crochet/SMDRZG
+crocheter/M
+crocheting/M
+crock/SMD
+crockery/M
+crocodile/SM
+crocus/MS
+croft/SRZG
+croissant/MS
+crone/SM
+crony/SM
+cronyism/M
+crook/SMDG
+crooked/PTRY
+crookedness/M
+crookneck/SM
+croon/SMDRZG
+crooner/M
+crop/MS
+cropland/SM
+cropped
+cropper/MS
+cropping
+croquet/M
+croquette/SM
+crosier/MS
+cross's
+cross/AUGTSD
+crossbar/SM
+crossbeam/MS
+crossbones/M
+crossbow/SM
+crossbowman/M
+crossbowmen
+crossbred
+crossbreed/SGM
+crosscheck/SMDG
+crosscurrent/MS
+crosscut/SM
+crosscutting
+crosser
+crossfire/MS
+crosshatch/GDS
+crossing/SM
+crossly
+crossness/M
+crossover/MS
+crosspatch/MS
+crosspiece/SM
+crossroad/MS
+crossroads/M
+crosstown
+crosswalk/MS
+crosswind/MS
+crosswise
+crossword/MS
+crotch/MS
+crotchet/SM
+crotchety
+crouch/GMDS
+croup/M
+croupier/M
+croupy/ZTR
+crouton/MS
+crow/MDGS
+crowbar/MS
+crowd/SMDG
+crowded/U
+crowdfund/SDG
+crowfeet
+crowfoot/SM
+crown/SMDG
+crowned/U
+crucial/Y
+crucible/SM
+crucifix/MS
+crucifixion/SM
+cruciform/SM
+crucify/DSG
+crud/M
+cruddy/TR
+crude/RMYTP
+crudeness/M
+crudites/M
+crudity/SM
+cruel/RYPT
+cruelness/M
+cruelty/SM
+cruet/SM
+cruft/SD
+crufty
+cruise/DRSMZG
+cruiser/M
+cruller/MS
+crumb/SMDYG
+crumble/MGDS
+crumbliness/M
+crumbly/TPR
+crumby/TR
+crumminess/M
+crummy/PTR
+crumpet/MS
+crumple/MGDS
+crunch/GMDRS
+crunchiness/M
+crunchy/TRP
+crupper/MS
+crusade/MZGDRS
+crusader/M
+cruse/SM
+crush/MDRSZG
+crusher/M
+crushing/Y
+crust/SMDG
+crustacean/SM
+crustal
+crustily
+crustiness/M
+crusty/TRP
+crutch/MS
+crux/MS
+cry/ZGJDRSM
+crybaby/SM
+cryogenic/S
+cryogenics/M
+cryonics
+cryosurgery/M
+crypt/SM
+cryptanalysis
+cryptic
+cryptically
+cryptocurrency/SM
+cryptogram/SM
+cryptographer/SM
+cryptography/M
+crystal/SM
+crystalline
+crystallization/M
+crystallize/ADSG
+crystallographic
+crystallography
+ct
+ctn
+ctr
+cu
+cub/ZGSMDR
+cubbyhole/MS
+cube/MS
+cuber/M
+cubic
+cubical
+cubicle/MS
+cubism/M
+cubist/SM
+cubit/SM
+cuboid/S
+cuckold/MDSG
+cuckoldry/M
+cuckoo/SM
+cucumber/SM
+cud/SM
+cuddle/DSMG
+cuddly/TR
+cudgel/SGMDJ
+cue/DSMG
+cuff/MDGS
+cuisine/SM
+culinary
+cull/MDGS
+culminate/XDSGN
+culmination/M
+culotte/SM
+culpability/M
+culpable/I
+culpably
+culprit/SM
+cult/MS
+cultism/M
+cultist/MS
+cultivable
+cultivar/SM
+cultivate/BDSGN
+cultivated/U
+cultivation/M
+cultivator/MS
+cultural/Y
+culture/MGDS
+cultured/U
+culvert/MS
+cum/SM
+cumber/SDG
+cumbersome/P
+cumbersomeness/M
+cumbrous
+cumin/M
+cummerbund/MS
+cumming
+cumulative/Y
+cumuli
+cumulonimbi
+cumulonimbus/M
+cumulus/M
+cuneiform/M
+cunnilingus/M
+cunning/MRYT
+cunt/MS!
+cup/SM
+cupboard/SM
+cupcake/MS
+cupful/SM
+cupid/SM
+cupidity/M
+cupola/SMD
+cuppa/S
+cupped
+cupping
+cupric
+cur/SMY
+curability/M
+curacao
+curacy/SM
+curare/M
+curate/DSMGV
+curative/MS
+curator/KMS
+curatorial
+curb/MDGS
+curbing/M
+curbside
+curbstone/SM
+curd/MS
+curdle/DSG
+cure's
+cure/KZGBDRS
+cured/U
+curer/KM
+curettage/M
+curfew/SM
+curia/M
+curiae
+curie/SM
+curio/SM
+curiosity/SM
+curious/YP
+curiousness/M
+curium/M
+curl's
+curl/UDGS
+curler/SM
+curlew/SM
+curlicue/DSMG
+curliness/M
+curling/M
+curly/RPT
+curmudgeon/MYS
+currant/MS
+currency/SM
+current's
+current/FAY
+currents
+curricula
+curricular
+curriculum/M
+curry/DSMG
+currycomb/SGMD
+curse/DSMGV
+cursed/Y
+cursive's
+cursive/EAY
+cursor/SM
+cursorily
+cursoriness/M
+cursory/P
+curt/RYTP
+curtail/GDSL
+curtailment/SM
+curtain/GMDS
+curtness/M
+curtsy/GDSM
+curvaceous/P
+curvaceousness/M
+curvature/SM
+curve/DSMG
+curvy/RT
+cushion/MDSG
+cushy/RT
+cusp/MS
+cuspid/SM
+cuspidor/SM
+cuss's
+cuss/FEGSD
+cussed/PY
+custard/MS
+custodial
+custodian/MS
+custodianship/M
+custody/M
+custom/SZMR
+customarily
+customary/U
+customer/M
+customhouse/SM
+customization/M
+customize/DSG
+cut/TSMR
+cutaneous
+cutaway/MS
+cutback/MS
+cute/YP
+cuteness/M
+cutesy/TR
+cutey/S
+cuticle/MS
+cutie/SM
+cutlass/MS
+cutler/SM
+cutlery/M
+cutlet/SM
+cutoff/SM
+cutout/SM
+cutter/SM
+cutthroat/SM
+cutting/MYS
+cuttlefish/MS
+cutup/SM
+cutworm/MS
+cw
+cwt
+cyan/M
+cyanide/M
+cyanobacteria
+cyberbully/SM
+cybercafe/S
+cybernetic/S
+cybernetics/M
+cyberpunk/SM
+cybersex
+cyberspace/MS
+cyborg/SM
+cyclamen/MS
+cycle/ADSMG
+cyclic
+cyclical/Y
+cyclist/MS
+cyclometer/MS
+cyclone/MS
+cyclonic
+cyclopedia/MS
+cyclopes
+cyclops/M
+cyclotron/MS
+cygnet/MS
+cylinder/MS
+cylindrical
+cymbal/MS
+cymbalist/MS
+cynic/SM
+cynical/Y
+cynicism/M
+cynosure/MS
+cypress/MS
+cyst/MS
+cystic
+cystitis
+cytokines
+cytologist/SM
+cytology/M
+cytoplasm/M
+cytoplasmic
+cytosine/M
+czar/MS
+czarina/SM
+czarism
+czarist/SM
+d'Arezzo/M
+d'Estaing/M
+d/NXGJ
+dB
+dab/SM
+dabbed
+dabber/MS
+dabbing
+dabble/ZGDRS
+dabbler/M
+dace/SM
+dacha/MS
+dachshund/MS
+dactyl/MS
+dactylic/MS
+dad/SM
+dadaism/M
+dadaist/MS
+daddy/SM
+dado/M
+dadoes
+daemon/MS
+daemonic
+daffiness/M
+daffodil/SM
+daffy/PTR
+daft/PTRY
+daftness/M
+dag/S
+dagger/MS
+dago/S
+dagoes
+daguerreotype/DSMG
+dahlia/MS
+dailiness/M
+daily/PSM
+daintily
+daintiness/M
+dainty/RSMTP
+daiquiri/MS
+dairy/GSM
+dairying/M
+dairymaid/MS
+dairyman/M
+dairymen
+dairywoman/M
+dairywomen
+dais/MS
+daisy/SM
+dale/SM
+dalliance/MS
+dallier/M
+dally/ZGDRS
+dalmatian/MS
+dam/SM
+damage/MGDS
+damageable
+damaged/U
+damages/M
+damask/MDGS
+dame/SM
+dammed
+damming
+dammit
+damn/SBGMD
+damnably
+damnation/M
+damned/T
+damp/SPXZTGMDNRY
+dampen/ZGDR
+dampener/M
+damper/M
+dampness/M
+damsel/MS
+damselfly/SM
+damson/MS
+dance/MZGDRS
+dancer/M
+dancing/M
+dandelion/SM
+dander/M
+dandify/GDS
+dandle/GDS
+dandruff/M
+dandy/TRSM
+dang/SZGDR
+danger/M
+dangerous/Y
+dangle/ZGDRS
+dangler/M
+danish/MS
+dank/PTRY
+dankness/M
+danseuse/MS
+dapper/TR
+dapple/MGDS
+dare/DRSMZG
+daredevil/MS
+daredevilry/M
+darer/M
+daresay
+daring/MY
+dark/PXTMNRY
+darken/ZGDR
+darkener/M
+darkie/S
+darkness/M
+darkroom/MS
+darling/MS
+darn/SZGMDR
+darned/TR
+darner/M
+dart/SZGMDR
+dartboard/MS
+darter/M
+dash/ZGMDRS
+dashboard/SM
+dasher/M
+dashiki/MS
+dashing/Y
+dastard/MYS
+dastardliness/M
+data
+database/SM
+dataset/MS
+datatype
+date/DRSMZGV
+datebook/S
+dated/U
+dateless
+dateline/MGDS
+dater/M
+dateset
+dative/MS
+datum/M
+daub/SZGMDR
+dauber/M
+daughter/SMY
+daunt/GDS
+daunting/Y
+dauntless/YP
+dauntlessness/M
+dauphin/MS
+davenport/MS
+davit/MS
+dawdle/ZGDRS
+dawdler/M
+dawn/SGMD
+day/SM
+daybed/MS
+daybreak/M
+daycare/M
+daydream/MDRZGS
+daydreamer/M
+daylight/MS
+daylights/M
+daylong
+daytime/M
+daze/DSMG
+dazed/Y
+dazzle/MZGDRS
+dazzler/M
+dazzling/Y
+db
+dbl
+dc
+dd/SDG
+dded/K
+dding/K
+deacon/MS
+deaconess/MS
+dead/XTMNRY
+deadbeat/MS
+deadbolt/SM
+deaden/GD
+deadhead/SDG
+deadline/SM
+deadliness/M
+deadlock/GSMD
+deadly/TPR
+deadpan/MS
+deadpanned
+deadpanning
+deadwood/M
+deaf/PXTNR
+deafen/GD
+deafening/Y
+deafness/M
+deal/SJZGMR
+dealer/M
+dealership/SM
+dealing/M
+dealt
+dean/M
+deanery/SM
+deanship/M
+dear/SPTMRYH
+dearest/S
+dearness/M
+dearth/M
+dearths
+deary/SM
+death/MY
+deathbed/SM
+deathblow/MS
+deathless/Y
+deathlike
+deaths
+deathtrap/MS
+deathwatch/MS
+deaves
+deb/SM
+debacle/MS
+debarkation/M
+debarment/M
+debate/BMZR
+debater/M
+debating/M
+debauch/MDSG
+debauchee/MS
+debauchery/SM
+debenture/MS
+debilitate/DSGN
+debilitation/M
+debility/SM
+debit/D
+debonair/PY
+debonairness/M
+debouch/GDS
+debridement
+debris/M
+debt/SM
+debtor/MS
+debugger/S
+debut/GMD
+debutante/SM
+decade/MS
+decadence/M
+decadency/M
+decadent/MYS
+decaf/MS
+decaffeinate/DSG
+decagon/MS
+decal/MS
+decampment/M
+decapitate/XGNDS
+decapitator/MS
+decathlete/S
+decathlon/SM
+decay/GD
+deceased/M
+decedent/MS
+deceit/MS
+deceitful/YP
+deceitfulness/M
+deceive/UGDS
+deceiver/MS
+deceiving/Y
+decelerate/GNDS
+deceleration/M
+decelerator/SM
+decency/ISM
+decennial/SM
+decent/IY
+deception/MS
+deceptive/YP
+deceptiveness/M
+decibel/MS
+decidable/U
+decide/BZGDRS
+decided/Y
+deciduous
+deciliter/MS
+decimal/SM
+decimalization
+decimate/DSGN
+decimation/M
+decimeter/MS
+decipherable/UI
+decision/IM
+decisions
+decisive/IPY
+decisiveness/IM
+deck/SGMD
+deckchair/S
+deckhand/SM
+deckle/S
+declamation/MS
+declamatory
+declaration/MS
+declarative
+declaratory
+declare/DRSZGB
+declared/U
+declarer/M
+declension/SM
+declination/M
+decline/DRSMZG
+decliner/M
+declivity/SM
+decoherence
+decolletage/SM
+decollete
+decongestant/MS
+deconstructionism
+decor/MS
+decorate/AGNVDS
+decorating/M
+decoration/AM
+decorations
+decorative/Y
+decorator/MS
+decorous/IY
+decorousness/M
+decorum/M
+decoupage/DSMG
+decoy/GMDS
+decreasing/Y
+decree/MDS
+decreeing
+decrement/GDS
+decrepit
+decrepitude/M
+decriminalization/M
+decry/GDS
+decryption
+dedicate/AGDS
+dedication/SM
+dedicator/SM
+dedicatory
+deduce/GDS
+deducible
+deduct/GVD
+deductible/SM
+deduction/SM
+deductive/Y
+deed/GD
+deejay/MS
+deem/ASGD
+deep/SPXTMNRY
+deepen/GD
+deepfake/SM
+deepness/M
+deer/M
+deerskin/M
+deerstalker/S
+def/Z
+defacement/M
+defacer/SM
+defalcate/DSXGN
+defalcation/M
+defamation/M
+defamatory
+defame/ZGDRS
+defamer/M
+defaulter/SM
+defeat/MDRZGS
+defeated/U
+defeater/M
+defeatism/M
+defeatist/MS
+defecate/GNDS
+defecation/M
+defect/MDGVS
+defection/MS
+defective/MPYS
+defectiveness/M
+defector/MS
+defendant/SM
+defended/U
+defenestration/S
+defense/DSMGV
+defenseless/YP
+defenselessness/M
+defensible/I
+defensibly/I
+defensive/MYP
+defensiveness/M
+deference/M
+deferential/Y
+deferral/MS
+deferred
+deferring
+deffer
+deffest
+defiant/Y
+defibrillation
+defibrillator/S
+deficiency/SM
+deficient
+deficit/SM
+defilement/M
+definable/IU
+define/AGDS
+defined/U
+definer/MS
+definite/IYVP
+definiteness/IM
+definition/AM
+definitions
+definitive/Y
+deflate/GNDS
+deflation/M
+deflationary
+deflect/DGVS
+deflection/MS
+deflector/SM
+defogger/SM
+defoliant/SM
+defoliate/DSGN
+defoliation/M
+defoliator/MS
+deformity/SM
+defraud/DRZGS
+defrauder/M
+defrayal/M
+defrock/DG
+defroster/MS
+deft/PTRY
+deftness/M
+defunct
+defy/GDS
+deg
+degeneracy/M
+degenerate/MV
+degrade/B
+degree/MS
+dehydrator/SM
+dehydrogenase
+deicer/MS
+deification/M
+deify/NGDS
+deign/GDS
+deist/MS
+deistic
+deity/SM
+deject/GDS
+dejected/Y
+dejection/M
+delay/ZDR
+delectable
+delectably
+delectation/M
+delegate/GD
+delete/XGNDS
+deleterious
+deletion/M
+delft/M
+delftware/M
+deli/SM
+deliberate/XYVP
+deliberateness/M
+delicacy/ISM
+delicate/IY
+delicateness/M
+delicatessen/SM
+delicious/PY
+deliciousness/M
+delighted/Y
+delightful/Y
+deliminator
+delineate/GNXDS
+delineation/M
+delinquency/SM
+delinquent/SMY
+deliquesce/DSG
+deliquescent
+delirious/YP
+deliriousness/M
+delirium/SM
+deliver/ADGS
+deliverable/S
+deliverance/M
+delivered/U
+deliverer/SM
+dell/SM
+delphinium/MS
+delta/MS
+delude/GDS
+deluge/MGDS
+delusion/MS
+delusional
+delusive/Y
+deluxe
+delve/ZGDRS
+delver/M
+demagogic
+demagogically
+demagogue/SM
+demagoguery/M
+demagogy/M
+demand/GMDS
+demanding/U
+demarcate/DSGNX
+demarcation/M
+demean/GDS
+demeanor/M
+demented/Y
+dementia/M
+demesne/MS
+demigod/MS
+demigoddess/MS
+demijohn/SM
+demimondaine/SM
+demimonde/M
+demise/MGDS
+demitasse/MS
+demo/GMD
+democracy/SM
+democrat/MS
+democratic/U
+democratically
+democratization/M
+democratize/GDS
+demode
+demographer/SM
+demographic/SM
+demographically
+demographics/M
+demography/M
+demolish/DSG
+demolition/MS
+demon/MS
+demonetization/M
+demoniac
+demoniacal/Y
+demonic
+demonically
+demonize/GDS
+demonology/SM
+demonstrability
+demonstrable/I
+demonstrably
+demonstrate/XGNVDS
+demonstration/M
+demonstrative/MYSP
+demonstrativeness/M
+demonstrator/MS
+demote/GD
+demotic
+demount
+demulcent/SM
+demur/TMRS
+demure/PY
+demureness/M
+demurral/SM
+demurred
+demurrer/SM
+demurring
+den/M
+denationalization
+denaturation
+denature/DG
+dendrite/SM
+dengue/M
+deniability
+deniable/U
+denial/MS
+denier/M
+denigrate/DSGN
+denigration/M
+denim/MS
+denitrification
+denizen/MS
+denominational
+denotative
+denouement/MS
+denounce/LDSG
+denouncement/SM
+dense/PYTR
+denseness/M
+density/SM
+dent/ISGMD
+dental/Y
+dentifrice/SM
+dentin/M
+dentist/MS
+dentistry/M
+dentition/M
+denture/IMS
+denuclearize/GDS
+denudation/M
+denude/GDS
+denunciation/SM
+deny/ZGDRS
+deodorant/SM
+deodorization/M
+deodorize/DRSZG
+deodorizer/M
+departed/M
+department/MS
+departmental/Y
+departmentalization/M
+departmentalize/GDS
+departure/SM
+dependability/M
+dependable/U
+dependably
+dependence/IM
+dependency/SM
+dependent/IMYS
+depict/GDS
+depiction/MS
+depilatory/SM
+deplete/GNDS
+depletion/M
+deplorably
+deplore/BGDS
+deploy/ALGDS
+deployment/AM
+deployments
+deponent/MS
+deportation/MS
+deportee/MS
+deportment/M
+deposit/AGMDS
+depositor/MS
+depository/SM
+deprave/GDS
+depravity/SM
+deprecate/GNDS
+deprecating/Y
+deprecation/M
+deprecatory
+depreciate/DSGN
+depreciation/M
+depredation/SM
+depressant/SM
+depressing/Y
+depression/SM
+depressive/SM
+depressor/MS
+depressurization
+deprive/GDS
+deprogramming
+depth/M
+depths
+deputation/MS
+depute/DSG
+deputize/DSG
+deputy/SM
+derailleur/SM
+derailment/SM
+derangement/M
+derby/SM
+derelict/MS
+dereliction/M
+deride/GDS
+derision/M
+derisive/PY
+derisiveness/M
+derisory
+derivation/MS
+derivative/MS
+derive/B
+dermal
+dermatitis/M
+dermatological
+dermatologist/SM
+dermatology/M
+dermis/M
+derogate/DSGN
+derogation/M
+derogatorily
+derogatory
+derrick/SM
+derriere/SM
+derringer/SM
+derv
+dervish/MS
+desalinate/GNDS
+desalination/M
+desalinization/M
+desalinize/GDS
+descant/M
+descend/FGDS
+descendant/MS
+descender
+describable/I
+describe/BZGDR
+describer/M
+description/SM
+descriptive/PY
+descriptiveness/M
+descriptor/S
+descry/GDS
+desecrate/DSGN
+desecration/M
+deselection
+desert/SDRZGM
+deserter/M
+desertification
+desertion/SM
+deserved/UY
+deserving/U
+desiccant/SM
+desiccate/DSGN
+desiccation/M
+desiccator/SM
+desiderata
+desideratum/M
+design/ASDG
+designate/DSGNX
+designation/M
+desirability/UM
+desirableness/M
+desirably/U
+desire/B
+desired/U
+desirous
+desist/SDG
+desk/SM
+deskill/G
+desktop/SM
+desolate/PDSYGN
+desolateness/M
+desolation/M
+despair/SMDG
+despairing/Y
+desperado/M
+desperadoes
+desperate/YNP
+desperateness/M
+desperation/M
+despicable
+despicably
+despise/DSG
+despite
+despoilment/M
+despondence/M
+despondency/M
+despondent/Y
+despotic
+despotically
+despotism/M
+dessert/SM
+dessertspoon/S
+dessertspoonful/S
+destination/SM
+destine/DSG
+destiny/SM
+destitute/N
+destitution/M
+destroy/SZGDR
+destroyer/M
+destruct/GVMDS
+destructibility/IM
+destructible/I
+destruction/M
+destructive/PY
+destructiveness/M
+desuetude/M
+desultorily
+desultory
+detach/BLGDS
+detachment/MS
+detain/LGDS
+detainee/MS
+detainment/M
+detect/SDGVB
+detectable/U
+detected/U
+detection/M
+detective/SM
+detector/SM
+detente/SMNX
+detention/M
+deter/SL
+detergent/SM
+deteriorate/DSGN
+deterioration/M
+determent/M
+determinable/I
+determinant/SM
+determinate
+determine/AGDS
+determined/U
+determinedly
+determiner/SM
+determinism/M
+deterministic
+deterministically
+deterred/U
+deterrence/M
+deterrent/MS
+deterring
+detestably
+detestation/M
+dethrone/DSLG
+dethronement/M
+detonate/GNDSX
+detonation/M
+detonator/SM
+detox/MDSG
+detoxification/M
+detoxify/DSGN
+detract/GD
+detriment/SM
+detrimental/Y
+detritus/M
+deuce/SM
+deuterium/M
+devastate/GNDS
+devastating/Y
+devastation/M
+devastator/MS
+develop/ASGDL
+developed/U
+developer/SM
+development/ASM
+developmental/Y
+deviance/M
+deviancy/M
+deviant/SM
+deviate/DSMGNX
+deviating/U
+deviation/M
+devil/SMDGL
+devilish/YP
+devilishness/M
+devilment/M
+devilry/SM
+deviltry/SM
+devious/YP
+deviousness/M
+devoid
+devolution/M
+devolve/DSG
+devoted/Y
+devotee/SM
+devotion/MS
+devotional/SM
+devour/SDG
+devout/PRYT
+devoutness/M
+dew/M
+dewberry/SM
+dewclaw/SM
+dewdrop/SM
+dewiness/M
+dewlap/SM
+dewy/RTP
+dexterity/M
+dexterous/YP
+dexterousness/M
+dextrose/M
+dharma
+dhoti/SM
+dhow/MS
+diabetes/M
+diabetic/SM
+diabolic
+diabolical/Y
+diacritic/MS
+diacritical
+diadem/SM
+diaereses
+diaeresis/M
+diagnose/DSG
+diagnosis/M
+diagnostic/S
+diagnostically
+diagnostician/SM
+diagnostics/M
+diagonal/SMY
+diagram/SM
+diagrammatic
+diagrammatically
+diagrammed
+diagramming
+dial/AMDGS
+dialect/SM
+dialectal
+dialectic/SM
+dialectical
+dialectics/M
+dialing/S
+dialog
+dialogue/SM
+dialyses
+dialysis/M
+dialyzes
+diam
+diamagnetic
+diamagnetism
+diamante
+diameter/SM
+diametric
+diametrical/Y
+diamond/SM
+diamondback/MS
+diapason/SM
+diaper/SMDG
+diaphanous
+diaphragm/SM
+diaphragmatic
+diarist/SM
+diarrhea/M
+diary/SM
+diaspora/SM
+diastase/M
+diastole/M
+diastolic
+diathermy/M
+diatom/SM
+diatomic
+diatonic
+diatribe/SM
+diazepam
+dibble/DSMG
+dibs/M
+dice/GDS
+dices/I
+dicey
+dichotomous
+dichotomy/SM
+dicier
+diciest
+dick/MRXZS
+dicker/DG
+dickey/SM
+dickhead/S
+dickybird/S
+dicotyledon/MS
+dicotyledonous
+dict
+dicta
+dictate/DSMGNX
+dictation/M
+dictator/SM
+dictatorial/Y
+dictatorship/SM
+diction/M
+dictionary/SM
+dictum/M
+did/AU
+didactic
+didactically
+diddle/DRSZG
+diddler/M
+diddly
+diddlysquat
+diddums
+didgeridoo/S
+didn't
+dido/M
+didoes
+didst
+die/DSM
+dielectric/MS
+diereses
+dieresis/M
+diesel/SMDG
+diet/MDRZGS
+dietary/SM
+dieter/M
+dietetic/S
+dietetics/M
+dietitian/MS
+diff/DRZGS
+differ/DG
+difference/IM
+differences
+different/IY
+differentiable
+differential/SM
+differentiate/DSGN
+differentiated/U
+differentiation/M
+difficult/Y
+difficulty/SM
+diffidence/M
+diffident/Y
+diffract/GSD
+diffraction/M
+diffuse/DSYGNVP
+diffuseness/M
+diffusion/M
+diffusivity
+dig/SM
+digerati/M
+digest/SMDGV
+digested/U
+digestibility/M
+digestible/I
+digestion/IM
+digestions
+digestive/S
+digger/SM
+digging/S
+diggings/M
+digicam/S
+digit/SM
+digital/Y
+digitalis/M
+digitization
+digitize/GDS
+dignified/U
+dignify/DSG
+dignitary/SM
+dignity/ISM
+digraph/M
+digraphs
+digress/GVDS
+digression/MS
+dike/MGDS
+diktat/S
+dilapidated
+dilapidation/M
+dilatation/M
+dilate/DSGN
+dilation/M
+dilator/SM
+dilatory
+dildo/S
+dilemma/MS
+dilettante/SM
+dilettantish
+dilettantism/M
+diligence/M
+diligent/Y
+dill/MS
+dilly/SM
+dillydally/DSG
+diluent
+dilute/DSGNX
+diluted/U
+dilution/M
+dim/PSRY
+dime/MS
+dimension/SM
+dimensional
+dimensionless
+diminish/GDS
+diminished/U
+diminuendo/SM
+diminution/SM
+diminutive/SM
+dimity/M
+dimmed/U
+dimmer/SM
+dimmest
+dimming
+dimness/M
+dimple/DSMG
+dimply
+dimwit/SM
+dimwitted
+din/ZGSMDR
+dinar/SM
+dine/S
+diner/M
+dinette/MS
+ding/MDG
+dingbat/MS
+dinghy/SM
+dingily
+dinginess/M
+dingle/SM
+dingo/M
+dingoes
+dingus/MS
+dingy/RPT
+dink/R
+dinky/RSMT
+dinned
+dinner/SMDG
+dinnertime/M
+dinnerware/M
+dinning
+dinosaur/SM
+dint/M
+diocesan/MS
+diocese/MS
+diode/SM
+diorama/SM
+dioxide/SM
+dioxin/SM
+dip/SM
+diphtheria/M
+diphthong/SM
+diploid/SM
+diploma/SM
+diplomacy/M
+diplomat/MS
+diplomata
+diplomatic/U
+diplomatically
+diplomatist/MS
+diplopia
+dipole/SM
+dipped
+dipper/SM
+dipping
+dippy/RT
+dipso/S
+dipsomania/M
+dipsomaniac/MS
+dipstick/SM
+dipterous
+diptych/M
+diptychs
+dire/YTR
+direct/ASDGVT
+directer
+direction/IM
+directional
+directionless
+directions
+directive/SM
+directly
+directness/IM
+director/MS
+directorate/SM
+directorial
+directorship/SM
+directory/SM
+direful
+dirge/SM
+dirigible/MS
+dirk/MS
+dirndl/SM
+dirt/M
+dirtball/S
+dirtily
+dirtiness/M
+dirty/DRSTGP
+dis/M
+disable/DSGL
+disablement/M
+disambiguate/N
+disappointing/Y
+disarming/Y
+disassembly
+disastrous/Y
+disbandment/M
+disbarment/M
+disbelieving/Y
+disbursal/M
+disburse/DSGL
+disbursement/MS
+disc/M
+discern/LSDG
+discernible/I
+discernibly
+discerning/Y
+discernment/M
+discharged/U
+disciple/SM
+discipleship/M
+disciplinarian/SM
+disciplinary
+discipline/DSMG
+disciplined/U
+disclose/DSG
+disclosed/U
+disco/MG
+discography/SM
+discoloration/S
+discombobulate/DSGN
+discombobulation/M
+discomfit/DG
+discomfiture/M
+discommode/DG
+disconcerting/Y
+disconnected/PY
+disconnectedness/M
+disconsolate/Y
+discordance/M
+discordant/Y
+discotheque/SM
+discourage/LGDS
+discouragement/SM
+discouraging/Y
+discover/ASDG
+discovered/U
+discoverer/MS
+discovery/ASM
+discreet/PRYT
+discreetness/M
+discrepancy/SM
+discrepant
+discrete/PYN
+discreteness/M
+discretion/IM
+discretionary
+discriminant
+discriminate/GNDS
+discriminating/U
+discrimination/M
+discriminator/MS
+discriminatory
+discursiveness/M
+discus/MS
+discussant/SM
+discussion/SM
+disdain/SMDG
+disdainful/Y
+disembowel/SDLG
+disembowelment/M
+disfigurement/SM
+disfranchisement/M
+disgorgement/M
+disgruntle/LGDS
+disgruntlement/M
+disguise/GD
+disguised/U
+disgusted/Y
+disgusting/Y
+dish/MDSG
+dishabille/M
+disharmonious
+dishcloth/M
+dishcloths
+disheartening/Y
+dishevel/DGLS
+dishevelment/M
+dishpan/SM
+dishrag/SM
+dishtowel/MS
+dishware/M
+dishwasher/MS
+dishwater/M
+dishy
+disillusion/GLD
+disillusionment/M
+disinfectant/MS
+disinfection/M
+disinterested/PY
+disinterestedness/M
+disjointed/YP
+disjointedness/M
+disjunctive
+disjuncture
+disk/MS
+diskette/MS
+dislodge/GDS
+dismal/Y
+dismantlement/M
+dismay/SMDG
+dismayed/U
+dismember/LGD
+dismemberment/M
+dismissive/Y
+disorder/Y
+disorganization/M
+disparage/DSGL
+disparagement/M
+disparaging/Y
+disparate/Y
+dispatcher/MS
+dispel/S
+dispelled
+dispelling
+dispensary/SM
+dispensation/MS
+dispense/BZGDRS
+dispenser/M
+dispersal/M
+disperse/GNDS
+dispersion/M
+dispirit/GDS
+displeasure/M
+disposable/SM
+disposal/SM
+disposed/I
+disposition/ISM
+dispossession/M
+disproof/SM
+disproportional
+disprove/B
+disputable/I
+disputably/I
+disputant/MS
+disputation/SM
+disputatious/Y
+dispute/DRSMZGB
+disputed/U
+disputer/M
+disquiet/GSMD
+disquisition/MS
+disregardful
+disrepair/M
+disrepute/MB
+disrupt/GVSD
+disruption/SM
+disruptive/Y
+dissect/SDG
+dissed
+dissemblance/M
+dissemble/ZGDRS
+dissembler/M
+disseminate/GNDS
+dissemination/M
+dissension/SM
+dissent/SMDRZG
+dissenter/M
+dissertation/SM
+disses
+dissidence/M
+dissident/MS
+dissimilar
+dissimilitude/S
+dissing
+dissipate/GNDS
+dissipation/M
+dissociate/GNVDS
+dissociation/M
+dissoluble/I
+dissolute/YNP
+dissoluteness/M
+dissolve/AGDS
+dissolved/U
+dissonance/SM
+dissonant
+dissuade/GDS
+dissuasive
+dist
+distaff/SM
+distal/Y
+distance/DSMG
+distant/Y
+distaste/SM
+distemper/M
+distention/SM
+distillate/SMNX
+distillation/M
+distillery/SM
+distinct/IYTVP
+distincter
+distinction/SM
+distinctive/YP
+distinctiveness/M
+distinctness/IM
+distinguish/GDSB
+distinguishable/I
+distinguished/U
+distort/GDR
+distortion/MS
+distract/DG
+distracted/Y
+distraction/S
+distrait
+distraught
+distress/DG
+distressful
+distressing/Y
+distribute/AGNVDS
+distributed/U
+distribution/AM
+distributional
+distributions
+distributive/Y
+distributor's
+distributor/AS
+distributorship/S
+district's
+district/AS
+disturb/ZGSDR
+disturbance/SM
+disturbed/U
+disturber/M
+disturbing/Y
+disunion/M
+disyllabic
+ditch/MDSG
+dither/SMDRZG
+ditherer/M
+ditransitive
+ditsy
+ditto/SMDG
+ditty/SM
+ditz/MS
+diuretic/MS
+diurnal/Y
+div
+diva/MS
+divalent
+divan/SM
+dive/MZTGDRS
+diver/M
+diverge/DSG
+divergence/MS
+divergent
+diverse/XYNP
+diverseness/M
+diversification/M
+diversify/GNDS
+diversion/M
+diversionary
+diversity/SM
+divert/SDG
+diverticulitis/M
+divest/SLDG
+divestiture/MS
+divestment/M
+divide/DRSMZGB
+divided/U
+dividend/MS
+divider/M
+divination/M
+divine/DRSMYZTG
+diviner/M
+diving/M
+divinity/SM
+divisibility/IM
+divisible/I
+division/MS
+divisional
+divisive/PY
+divisiveness/M
+divisor/SM
+divorce/DSLMG
+divorcee/MS
+divorcement/MS
+divot/SM
+divulge/GDS
+divvy/DSMG
+dixieland/M
+dizzily
+dizziness/M
+dizzy/DRSPTG
+djellaba/MS
+do/SJMRHZG
+doable
+dob/S
+dobbed
+dobbin/SM
+dobbing
+doberman/MS
+dobro
+doc/SM
+docent/SM
+docile/Y
+docility/M
+dock/MDRZGS
+docket/SMDG
+dockland/S
+dockside
+dockworker/MS
+dockyard/MS
+doctor/SMDG
+doctoral
+doctorate/MS
+doctrinaire/MS
+doctrinal
+doctrine/MS
+docudrama/SM
+document/GMDS
+documentary/SM
+documentation/SM
+documented/U
+dodder/SMDG
+doddery
+doddle
+dodge/DRSMZG
+dodgem/S
+dodger/M
+dodgy/RT
+dodo/MS
+doe/SM
+doer/M
+does/AU
+doeskin/MS
+doesn't
+doff/DGS
+dog/SM
+dogcart/SM
+dogcatcher/SM
+doge/MS
+dogeared
+dogfight/SM
+dogfish/MS
+dogged/PY
+doggedness/M
+doggerel/M
+dogging
+doggone/TGRS
+doggy/RSMT
+doghouse/SM
+dogie/SM
+dogleg/SM
+doglegged
+doglegging
+doglike
+dogma/SM
+dogmatic
+dogmatically
+dogmatism/M
+dogmatist/SM
+dognapper
+dogsbody/S
+dogsled/S
+dogtrot/MS
+dogtrotted
+dogtrotting
+dogwood/MS
+doily/SM
+doing/USM
+doldrums/M
+dole's
+dole/FGDS
+doleful/YP
+dolefulness/M
+doll/MDGS
+dollar/SM
+dollhouse/SM
+dollop/SGMD
+dolly/SM
+dolmen/SM
+dolomite/M
+dolor/M
+dolorous/Y
+dolphin/MS
+dolt/MS
+doltish/YP
+doltishness/M
+domain/SM
+dome/MGDS
+domestic/SM
+domestically
+domesticate/DSGN
+domesticated/U
+domestication/M
+domesticity/M
+domicile/DSMG
+domiciliary
+dominance/M
+dominant/SMY
+dominate/DSGN
+domination/M
+dominatrices
+dominatrix/M
+domineer/SGD
+domineering/Y
+dominion/SM
+domino/M
+dominoes
+don't
+don/SM
+dona/MS
+donate/DSXGN
+donation/M
+done/FAU
+dong/MDGS
+dongle/SM
+donkey/SM
+donned
+donning
+donnish
+donnybrook/MS
+donor/SM
+donuts
+doodad/SM
+doodah
+doodahs
+doodle/DRSMZG
+doodlebug/SM
+doodler/M
+doohickey/SM
+doolally
+doom/MDGS
+doomsayer/MS
+doomsday/M
+doomster/S
+door's
+door/IS
+doorbell/MS
+doorjamb/S
+doorkeeper/MS
+doorknob/MS
+doorknocker/S
+doorman/M
+doormat/SM
+doormen
+doorplate/SM
+doorpost/S
+doorstep/MS
+doorstepped
+doorstepping
+doorstop/MS
+doorway/SM
+dooryard/MS
+dopa/M
+dopamine
+dope/MZGDRS
+doper/M
+dopey
+dopier
+dopiest
+dopiness/M
+doping/M
+doppelganger/S
+dork/MS
+dorky/RT
+dorm/MRZS
+dormancy/M
+dormant
+dormer/M
+dormice
+dormitory/SM
+dormouse/M
+dorsal/Y
+dory/SM
+dosage/SM
+dose/MGDS
+dosh
+dosimeter/SM
+doss/DRSZG
+dosshouse/S
+dossier/MS
+dost
+dot/ZGSMDR
+dotage/M
+dotard/SM
+dotcom/SM
+dote/S
+doter/M
+doting/Y
+dotted
+dotting
+dotty/RT
+double's
+double/ADSG
+doubleheader/MS
+doublespeak/M
+doublet/MS
+doubloon/SM
+doubly
+doubt/SMDRZG
+doubter/M
+doubtful/PY
+doubtfulness/M
+doubting/Y
+doubtless/Y
+douche/DSMG
+dough/M
+doughnut/SM
+doughty/RT
+doughy/TR
+dour/RYTP
+dourness/M
+douse/DSG
+dove/MS
+dovecot/S
+dovecote/SM
+dovetail/MDSG
+dovish
+dowager/MS
+dowdily
+dowdiness/M
+dowdy/RSPT
+dowel/SMDG
+dower/SMDG
+down/MDRZGS
+downbeat/SM
+downcast
+downdraft/MS
+downer/M
+downfall/SMN
+downfield
+downgrade/DSMG
+downhearted/PY
+downheartedness/M
+downhill/MS
+download/MDBSG
+downmarket
+downplay/DSG
+downpour/MS
+downrange
+downright
+downriver
+downscale
+downshift/SGD
+downside/MS
+downsize/GDS
+downsizing/M
+downspout/MS
+downstage
+downstairs/M
+downstate/M
+downstream
+downswing/MS
+downtempo
+downtime/M
+downtown/M
+downtrend/MS
+downtrodden
+downturn/MS
+downward/S
+downwind
+downy/RT
+dowry/SM
+dowse/DRSZG
+dowser/M
+doxology/SM
+doyen/SM
+doyenne/MS
+doz/XGDNS
+doze/M
+dozen/MH
+dozily
+dozy/RTP
+dpi
+dpt
+drab/MYSP
+drabber
+drabbest
+drabness/M
+drachma/MS
+draconian
+draft's
+draft/ASDG
+draftee/SM
+drafter/SM
+draftily
+draftiness/M
+drafting/M
+draftsman/M
+draftsmanship/M
+draftsmen
+draftswoman/M
+draftswomen
+drafty/RTP
+drag/MS
+dragged
+dragging
+draggy/TR
+dragnet/SM
+dragon/SM
+dragonfly/SM
+dragoon/SMDG
+dragster/S
+drain/SMDRZG
+drainage/M
+drainboard/SM
+drainer/M
+drainpipe/MS
+drake/SM
+dram/MS
+drama/SM
+dramatic/S
+dramatically
+dramatics/M
+dramatist/SM
+dramatization/SM
+dramatize/DSG
+drank
+drape/DRSMZG
+draper/M
+drapery/SM
+drastic
+drastically
+drat
+dratted
+draughtboard/S
+draw/MRZGSJ
+drawback/MS
+drawbridge/MS
+drawer/M
+drawing/M
+drawl/SMDG
+drawn/A
+drawstring/MS
+dray/MS
+dread/SMDG
+dreadful/PY
+dreadfulness/M
+dreadlocks/M
+dreadnought/MS
+dream/SMDRZG
+dreamboat/MS
+dreamed/U
+dreamer/M
+dreamily
+dreaminess/M
+dreamland/M
+dreamless
+dreamlike
+dreamworld/SM
+dreamy/RPT
+drear
+drearily
+dreariness/M
+dreary/RPT
+dredge/DRSMZG
+dredger/M
+dregs/M
+drench/GDS
+dress/AUGSDM
+dressage/M
+dresser/MS
+dressiness/M
+dressing/SM
+dressmaker/SM
+dressmaking/M
+dressy/TPR
+drew/A
+dribble/MZGDRS
+dribbler/M
+driblet/MS
+drier/M
+drift/SMDRZG
+drifter/M
+driftnet/S
+driftwood/M
+drill/SMDRZG
+driller/M
+drillmaster/SM
+drink/SMRBJZG
+drinkable/U
+drinker/M
+drip/MS
+dripped
+dripping/SM
+drippy/TR
+drive/RSMZGJ
+drivel/SZGMDR
+driveler/M
+driven
+driver/M
+driveshaft/SM
+driveway/MS
+drizzle/MGDS
+drizzly
+drogue/SM
+droid/S
+droll/RPT
+drollery/SM
+drollness/M
+drolly
+dromedary/SM
+drone/DSMG
+drool/SMDG
+droop/GSMD
+droopiness/M
+droopy/TPR
+drop/MS
+dropkick/MS
+droplet/SM
+dropout/SM
+dropped
+dropper/SM
+dropping/S
+droppings/M
+dropsical
+dropsy/M
+dross/M
+drought/SM
+drove/RSMZ
+drover/M
+drown/GSJD
+drowning/M
+drowse/MGDS
+drowsily
+drowsiness/M
+drowsy/RTP
+drub/S
+drubbed
+drubber/SM
+drubbing/MS
+drudge/MGDS
+drudgery/M
+drug/MS
+drugged
+druggie/SM
+drugging
+druggist/SM
+druggy
+drugstore/MS
+druid/SM
+druidism/M
+drum/MS
+drumbeat/SM
+drumlin/SM
+drummed
+drummer/SM
+drumming
+drumstick/SM
+drunk/STMNR
+drunkard/MS
+drunken/PY
+drunkenness/M
+drupe/SM
+druthers/M
+dry/ZTGDRSMY
+dryad/SM
+dryer/SM
+dryness/M
+drys
+drywall/M
+dual
+dualism/M
+duality/M
+dub/SM
+dubbed
+dubber/SM
+dubbin/M
+dubbing
+dubiety/M
+dubious/YP
+dubiousness/M
+ducal
+ducat/SM
+duchess/MS
+duchy/SM
+duck/MDGS
+duckbill/SM
+duckboards
+duckling/SM
+duckpins/M
+duckweed/M
+ducky/TRSM
+duct's/K
+duct/CKIFS
+ductile
+ductility/M
+ducting
+ductless
+dud/GSMD
+dude/MS
+dudgeon/M
+due/SM
+duel/MDRJZGS
+dueler/M
+duelist/SM
+duenna/MS
+duet/MS
+duff/MDRZGS
+duffer/M
+dug
+dugout/MS
+duh
+duke/MS
+dukedom/SM
+dulcet
+dulcimer/MS
+dull/DRPTGS
+dullard/SM
+dullness/M
+dully
+duly/U
+dumb/RYPT
+dumbbell/SM
+dumbfound/SDG
+dumbness/M
+dumbo/S
+dumbstruck
+dumbwaiter/SM
+dumdum/MS
+dummy/SM
+dump/MDRZGS
+dumpiness/M
+dumpling/SM
+dumpsite/S
+dumpster/SM
+dumpy/PTR
+dun/SM
+dunce/SM
+dunderhead/MS
+dune/MS
+dung/MDGS
+dungaree/MS
+dungeon/SM
+dunghill/MS
+dunk/MDGS
+dunned
+dunner
+dunnest
+dunning
+dunno
+duo/SM
+duodecimal
+duodena
+duodenal
+duodenum/M
+duopoly/S
+dupe/MZGDRS
+duper/M
+duple
+duplex/MS
+duplicate's
+duplicate/AGNDS
+duplication/AM
+duplicator/MS
+duplicitous
+duplicity/M
+durability/M
+durable
+durably
+durance/M
+duration/M
+duress/M
+during
+durst
+durum/M
+dusk/M
+duskiness/M
+dusky/RTP
+dust/MDRZGS
+dustbin/SM
+dustcart/S
+duster/M
+dustiness/M
+dustless
+dustman
+dustmen
+dustpan/SM
+dustsheet/S
+dusty/RTP
+dutch
+duteous/Y
+dutiable
+dutiful/YP
+dutifulness/M
+duty/SM
+duvet/SM
+dwarf/SGMD
+dwarfish
+dwarfism/M
+dweeb/SM
+dwell/SJZGR
+dweller/M
+dwelling/M
+dwelt/I
+dwindle/DSG
+dyadic
+dybbuk/SM
+dybbukim
+dye/DRSMZG
+dyeing/A
+dyer/M
+dyestuff/M
+dying/M
+dyke/MS
+dynamic/MS
+dynamical/Y
+dynamics/M
+dynamism/M
+dynamite/MZGDRS
+dynamiter/M
+dynamo/SM
+dynastic
+dynasty/SM
+dysentery/M
+dysfunction/MS
+dysfunctional
+dyslectic/SM
+dyslexia/M
+dyslexic/SM
+dyspepsia/M
+dyspeptic/MS
+dysphagia
+dysphoria
+dysphoric
+dysprosium/M
+dystonia
+dystopi
+dystopia
+dystopian
+dz
+e'en
+e'er
+e/FDST
+eBay/M
+eMusic/M
+ea
+each
+eager/PTRY
+eagerness/M
+eagle/MS
+eaglet/MS
+ear/SMDY
+earache/SM
+earbud/SM
+eardrum/SM
+earful/SM
+earl/MS
+earldom/SM
+earliness/M
+earlobe/SM
+early/RTP
+earmark/SMDG
+earmuff/SM
+earn/DRZTGJS
+earned/U
+earner/M
+earnest/SMYP
+earnestness/M
+earnings/M
+earphone/MS
+earpiece/S
+earplug/SM
+earring/SM
+earshot/M
+earsplitting
+earth's
+earth/UDYG
+earthbound
+earthen
+earthenware/M
+earthiness/M
+earthling/MS
+earthly/RT
+earthquake/SM
+earths/U
+earthshaking
+earthward/S
+earthwork/MS
+earthworm/MS
+earthy/RTP
+earwax/M
+earwig/SM
+ease/EDSM
+easel/SM
+easement/SM
+easily/U
+easiness/UM
+easing
+east/M
+eastbound
+easterly/SM
+eastern/ZR
+easterner/M
+easternmost
+eastward/S
+easy/URTP
+easygoing
+eat/ZGBSNR
+eatable/SM
+eaten/U
+eater/M
+eatery/SM
+eave/MS
+eavesdrop/S
+eavesdropped
+eavesdropper/SM
+eavesdropping
+ebb/SMDG
+ebony/SM
+ebullience/M
+ebullient/Y
+ebullition/M
+eccentric/SM
+eccentrically
+eccentricity/SM
+eccl
+ecclesial
+ecclesiastic/SM
+ecclesiastical/Y
+echelon/SM
+echidna
+echinoderm/SM
+echo's
+echo/ADG
+echoes/A
+echoic
+echolocation/M
+echos
+eclair/SM
+eclat/M
+eclectic/SM
+eclectically
+eclecticism/M
+eclipse/DSMG
+ecliptic/M
+eclogue/SM
+ecocide/M
+ecol
+ecologic
+ecological/Y
+ecologist/MS
+ecology/M
+econ
+econometric/S
+economic/S
+economical/UY
+economics/M
+economist/SM
+economize/DRSZG
+economizer/M
+economy/SM
+ecosystem/MS
+ecotourism/M
+ecotourist/MS
+ecru/M
+ecstasy/SM
+ecstatic
+ecstatically
+ecu/S
+ecumenical/Y
+ecumenicism/M
+ecumenism/M
+eczema/M
+ed/ACSM
+edamame
+eddy/DSMG
+edelweiss/M
+edema/SM
+edge/MZGJDRS
+edger/M
+edgewise
+edgily
+edginess/M
+edging/M
+edgy/RTP
+edibility/M
+edible/SMP
+edibleness/M
+edict/SM
+edification/M
+edifice/SM
+edifier/M
+edify/DRSZGN
+edifying/U
+edit's
+edit/ADGS
+editable
+edited/U
+edition/MS
+editor/SM
+editorial/SMY
+editorialize/DSG
+editorship/M
+educ
+educability/M
+educable/I
+educate/ADSGNV
+educated/U
+education/AM
+educational/Y
+educationalist/S
+educationist/S
+educations
+educator/MS
+educe/DSGB
+edutainment/M
+eek
+eel/SM
+eerie/RT
+eerily
+eeriness/M
+eff/GSD
+efface/DSLG
+effacement/M
+effect/SMDGV
+effective/IPY
+effectiveness/IM
+effectual/IY
+effectuate/DSG
+effeminacy/M
+effeminate/Y
+effendi/SM
+efferent
+effervesce/GDS
+effervescence/M
+effervescent/Y
+effete/YP
+effeteness/M
+efficacious/Y
+efficacy/IM
+efficiency/ISM
+efficient/IY
+effigy/SM
+efflorescence/M
+efflorescent
+effluence/M
+effluent/MS
+effluvia
+effluvium/M
+efflux
+effort/SM
+effortful
+effortless/YP
+effortlessness/M
+effrontery/M
+effulgence/M
+effulgent
+effuse/DSGNVX
+effusion/M
+effusive/YP
+effusiveness/M
+egad
+egalitarian/SM
+egalitarianism/M
+egg/GSMD
+eggbeater/MS
+eggcup/SM
+egghead/SM
+eggnog/M
+eggplant/MS
+eggshell/SM
+eglantine/SM
+ego/SM
+egocentric/MS
+egocentrically
+egocentricity/M
+egoism/M
+egoist/SM
+egoistic
+egoistical/Y
+egomania/M
+egomaniac/MS
+egotism/M
+egotist/SM
+egotistic
+egotistical/Y
+egregious/PY
+egregiousness/M
+egress/MS
+egret/SM
+eh
+eider/SM
+eiderdown/MS
+eigenvalue/S
+eigenvector/S
+eight/SM
+eighteen/MHS
+eighteenth/M
+eighteenths
+eighth/M
+eighths
+eightieth/M
+eightieths
+eighty/SMH
+einsteinium/M
+eisteddfod/S
+either
+ejaculate/GNXDS
+ejaculation/M
+ejaculatory
+eject/SDG
+ejection/MS
+ejector/SM
+eke/DSG
+elaborate/YGNDSPX
+elaborateness/M
+elaboration/M
+elan/M
+eland/SM
+elapse/DSG
+elastic/MS
+elastically
+elasticated
+elasticity/M
+elasticize/DSG
+elate/DSGN
+elated/Y
+elation/M
+elbow/SMDG
+elbowroom/M
+elder/SMY
+elderberry/SM
+eldercare/M
+eldest
+eldritch
+elect's
+elect/ASDGV
+electable
+election/AMS
+electioneer/DGS
+elective/MS
+elector/MS
+electoral/Y
+electorate/MS
+electric/S
+electrical/Y
+electrician/MS
+electricity/M
+electrification/M
+electrifier/M
+electrify/ZGNDRS
+electrocardiogram/MS
+electrocardiograph/M
+electrocardiographs
+electrocardiography/M
+electrocute/DSXGN
+electrocution/M
+electrode/SM
+electrodynamics
+electroencephalogram/MS
+electroencephalograph/M
+electroencephalographic
+electroencephalographs
+electroencephalography/M
+electrologist/SM
+electrolysis/M
+electrolyte/MS
+electrolytic
+electromagnet/MS
+electromagnetic
+electromagnetically
+electromagnetism/M
+electromotive
+electron/MS
+electronic/S
+electronica/M
+electronically
+electronics/M
+electroplate/DSG
+electroscope/SM
+electroscopic
+electroshock/M
+electrostatic/S
+electrostatics/M
+electrotype/MS
+electroweak
+eleemosynary
+elegance/IM
+elegant/IY
+elegiac/MS
+elegiacal
+elegy/SM
+elem
+element/MS
+elemental/Y
+elementary
+elephant/SM
+elephantiasis/M
+elephantine
+elev
+elevate/XDSGN
+elevation/M
+elevator/MS
+eleven/SMH
+elevens/S
+eleventh/M
+elevenths
+elf/M
+elfin
+elfish
+elicit/SDG
+elicitation/M
+elide/DSG
+eligibility/IM
+eligible
+eliminate/XDSGN
+elimination/M
+eliminator/S
+elision/MS
+elite/SM
+elitism/M
+elitist/MS
+elixir/SM
+elk/SM
+ell/SM
+ellipse/MS
+ellipsis/M
+ellipsoid/SM
+ellipsoidal
+elliptic
+elliptical/Y
+elm/SM
+elocution/M
+elocutionary
+elocutionist/SM
+elodea/SM
+elongate/DSGNX
+elongation/M
+elope/DSGL
+elopement/MS
+eloquence/M
+eloquent/Y
+else
+elsewhere
+elucidate/DSGNX
+elucidation/M
+elude/DSG
+elusive/YP
+elusiveness/M
+elver/SM
+elves
+elvish
+em's
+em/S
+emaciate/GNDS
+emaciation/M
+email/SMDG
+emanate/XDSGN
+emanation/M
+emancipate/DSGN
+emancipation/M
+emancipator/MS
+emasculate/GNDS
+emasculation/M
+embalm/SZGDR
+embalmer/M
+embank/SLGD
+embankment/SM
+embargo/MDG
+embargoes
+embark/AEGDS
+embarkation/EM
+embarkations
+embarrass/GLDS
+embarrassed/U
+embarrassing/Y
+embarrassment/SM
+embassy/SM
+embattled
+embed/S
+embedded
+embedding
+embellish/LGDS
+embellishment/SM
+ember/SM
+embezzle/ZGLDRS
+embezzlement/M
+embezzler/M
+embitter/GLDS
+embitterment/M
+emblazon/GDLS
+emblazonment/M
+emblem/SM
+emblematic
+emblematically
+embodiment/EM
+embody/AEGSD
+embolden/DGS
+embolism/MS
+embolization
+emboss/DRSZG
+embosser/M
+embouchure/M
+embower/SGD
+embrace/DSMG
+embraceable
+embrasure/MS
+embrocation/MS
+embroider/SDRZG
+embroiderer/M
+embroidery/SM
+embroil/DGLS
+embroilment/M
+embryo/SM
+embryological
+embryologist/MS
+embryology/M
+embryonic
+emcee/DSM
+emceeing
+emend/SDG
+emendation/MS
+emerald/MS
+emerge/ADSG
+emergence/AM
+emergency/SM
+emergent
+emerita
+emeritus
+emery/M
+emetic/SM
+emf/S
+emigrant/SM
+emigrate/DSXGN
+emigration/M
+emigre/SM
+eminence/MS
+eminent/Y
+emir/MS
+emirate/MS
+emissary/SM
+emission/SM
+emit/S
+emitted
+emitter/MS
+emitting
+emo/SM
+emoji/SM
+emollient/MS
+emolument/MS
+emote/XDSGNV
+emoticon/SM
+emotion/M
+emotional/UY
+emotionalism/M
+emotionalize/GDS
+emotionless
+emotive/Y
+empathetic
+empathically
+empathize/DSG
+empathy/M
+emperor/MS
+emphases
+emphasis/M
+emphasize/AGDS
+emphatic/U
+emphatically
+emphysema/M
+empire/SM
+empiric
+empirical/Y
+empiricism/M
+empiricist/SM
+emplacement/SM
+employ's
+employ/ADGLS
+employable/U
+employee/SM
+employer/SM
+employment/UAM
+employments
+emporium/SM
+empower/SDGL
+empowerment/M
+empress/MS
+emptily
+emptiness/M
+empty/TGPDRSM
+empyrean/M
+emu/SM
+emulate/DSGNVX
+emulation/M
+emulator/SM
+emulsification/M
+emulsifier/M
+emulsify/NDRSZG
+emulsion/MS
+en/SM
+enable/DRSZG
+enabler/M
+enact/ASLDG
+enactment/ASM
+enamel/JSZGMDR
+enameler/M
+enamelware/M
+enamor/SGD
+enc
+encamp/LSGD
+encampment/MS
+encapsulate/XGNDS
+encapsulation/M
+encase/LDSG
+encasement/M
+encephalitic
+encephalitis/M
+enchain/DGS
+enchant/ELDGS
+enchanter/MS
+enchanting/Y
+enchantment/EM
+enchantments
+enchantress/MS
+enchilada/SM
+encipher/SGD
+encircle/DSGL
+encirclement/M
+encl
+enclave/MS
+enclose/GDS
+enclosed/U
+enclosure/SM
+encode/DRSZG
+encoder/M
+encomium/MS
+encompass/GDS
+encore/DSMG
+encounter/GSMD
+encourage/DSLG
+encouragement/SM
+encouraging/Y
+encroach/GLDS
+encroachment/SM
+encrust/DGS
+encrustation/SM
+encrypt/DGS
+encryption
+encumber/EGSD
+encumbered/U
+encumbrance/MS
+ency
+encyclical/SM
+encyclopedia/MS
+encyclopedic
+encyst/LSGD
+encystment/M
+end/GVSJMD
+endanger/SGDL
+endangerment/M
+endear/SGLD
+endearing/Y
+endearment/SM
+endeavor/GSMD
+endemic/MS
+endemically
+endgame/S
+ending/M
+endive/SM
+endless/PY
+endlessness/M
+endmost
+endocarditis
+endocrine/MS
+endocrinologist/MS
+endocrinology/M
+endogenous/Y
+endometrial
+endometriosis
+endometrium
+endorphin/MS
+endorse/LZGDRS
+endorsement/MS
+endorser/M
+endoscope/MS
+endoscopic
+endoscopy/M
+endothelial
+endothermic
+endotracheal
+endow/SDLG
+endowment/MS
+endpoint/SM
+endue/DSG
+endurable/U
+endurance/M
+endure/DSBG
+endways
+enema/SM
+enemy/SM
+energetic
+energetically
+energize/ZGDRS
+energizer/M
+energy/SM
+enervate/GNDS
+enervation/M
+enfeeble/GDSL
+enfeeblement/M
+enfilade/DSMG
+enfold/SGD
+enforce/LZGDRS
+enforceable/U
+enforced/U
+enforcement/M
+enforcer/M
+enfranchise/EGDSL
+enfranchisement/EM
+engage/EADSG
+engagement/EMS
+engagingly
+engender/SGD
+engine/SM
+engineer/MDGS
+engineering/M
+engorge/LGDS
+engorgement/M
+engram/SM
+engrave/ZGJDRS
+engraver/M
+engraving/M
+engross/GLDS
+engrossment/M
+engulf/SLGD
+engulfment/M
+enhance/LZGDRS
+enhancement/SM
+enigma/SM
+enigmatic
+enigmatically
+enjambment/SM
+enjoin/SGD
+enjoy/GBLSD
+enjoyably
+enjoyment/SM
+enlarge/LZGDRS
+enlargeable
+enlargement/MS
+enlarger/M
+enlighten/SGLD
+enlightened/U
+enlightenment/M
+enlist/ADGSL
+enlistee/SM
+enlistment/AM
+enlistments
+enliven/SLDG
+enlivenment/M
+enmesh/DSGL
+enmeshment/M
+enmity/SM
+ennoble/DSGL
+ennoblement/M
+ennui/M
+enormity/SM
+enormous/PY
+enormousness/M
+enough/M
+enplane/DSG
+enqueue/DS
+enquirer/S
+enquiringly
+enrage/GDS
+enrapture/DSG
+enrich/DSLG
+enrichment/M
+enroll/DLSG
+enrollment/MS
+ensconce/DSG
+ensemble/SM
+enshrine/GLDS
+enshrinement/M
+enshroud/DGS
+ensign/MS
+ensilage/M
+enslave/DSGL
+enslavement/M
+ensnare/DSLG
+ensnarement/M
+ensue/DSG
+ensure/ZGDRS
+ensurer/M
+entail/DSGL
+entailment/M
+entangle/EDSLG
+entanglement/EM
+entanglements
+entente/SM
+enter/ASGD
+enteral
+enteric
+enteritis/M
+enterprise/MGS
+enterprising/Y
+entertain/ZGDRSL
+entertainer/M
+entertaining/MY
+entertainment/MS
+enthrall/GDSL
+enthrallment/M
+enthrone/GDSL
+enthronement/SM
+enthuse/DSG
+enthusiasm/MS
+enthusiast/MS
+enthusiastic/U
+enthusiastically
+entice/GDSL
+enticement/MS
+enticing/Y
+entire/Y
+entirety/M
+entitle/DSGL
+entitlement/SM
+entity/SM
+entomb/DSGL
+entombment/M
+entomological
+entomologist/MS
+entomology/M
+entourage/SM
+entr'acte
+entrails/M
+entrained
+entrance/LDSMG
+entrancement/M
+entrancing/Y
+entrant/SM
+entrap/LS
+entrapment/M
+entrapped
+entrapping
+entreat/GSD
+entreating/Y
+entreaty/SM
+entree/MS
+entrench/DSGL
+entrenchment/MS
+entrepreneur/SM
+entrepreneurial
+entrepreneurship
+entropy/M
+entrust/SGD
+entry/ASM
+entryphone/S
+entryway/MS
+entwine/DSG
+enumerable
+enumerate/DSGNX
+enumeration/M
+enumerator/SM
+enunciate/DSGN
+enunciation/M
+enuresis/M
+envelop/SLDRZG
+envelope/SM
+enveloper/M
+envelopment/M
+envenom/SDG
+enviable/U
+enviably
+envious/PY
+enviousness/M
+environment/MS
+environmental/Y
+environmentalism/M
+environmentalist/SM
+environs/M
+envisage/GDS
+envision/DGS
+envoy/SM
+envy/DSMG
+envying/Y
+enzymatic
+enzyme/SM
+eolian
+eon/SM
+eosinophil/S
+eosinophilic
+epaulet/SM
+epee/MS
+ephedrine/M
+ephemera/M
+ephemeral/Y
+epic/MS
+epicenter/MS
+epicure/SM
+epicurean/MS
+epidemic/SM
+epidemically
+epidemiological
+epidemiologist/SM
+epidemiology/M
+epidermal
+epidermic
+epidermis/MS
+epidural/S
+epiglottis/MS
+epigram/SM
+epigrammatic
+epigraph/M
+epigraphs
+epigraphy/M
+epilepsy/M
+epileptic/SM
+epilogue/MS
+epinephrine/M
+epiphany/SM
+episcopacy/M
+episcopal
+episcopate/M
+episode/SM
+episodic
+episodically
+epistemic
+epistemological
+epistemology
+epistle/SM
+epistolary
+epitaph/M
+epitaphs
+epithelial
+epithelium/M
+epithet/SM
+epitome/SM
+epitomize/GDS
+epoch/M
+epochal
+epochs
+eponymous
+epoxy/DSMG
+epsilon/SM
+equability/M
+equable
+equably
+equal/SMDYG
+equality/IM
+equalization/M
+equalize/ZGDRS
+equalizer/M
+equanimity/M
+equate/DSGNBX
+equation/M
+equator/SM
+equatorial
+equerry/SM
+equestrian/SM
+equestrianism/M
+equestrienne/SM
+equidistant/Y
+equilateral/SM
+equilibrium/EM
+equine/SM
+equinoctial
+equinox/MS
+equip/AS
+equipage/MS
+equipment/M
+equipoise/M
+equipped/UA
+equipping/A
+equitable/I
+equitably/I
+equitation/M
+equity/ISM
+equiv
+equivalence/MS
+equivalency/SM
+equivalent/MYS
+equivocal/UY
+equivocalness/M
+equivocate/GNXDS
+equivocation/M
+equivocator/SM
+er/C
+era/SM
+eradicable/I
+eradicate/DSGN
+eradication/M
+eradicator/MS
+erase/DRSBZG
+eraser/M
+erasure/SM
+erbium/M
+ere
+erect/PSGDY
+erectile
+erection/SM
+erectness/M
+erector/MS
+erelong
+eremite/MS
+erg/SM
+ergo
+ergonomic/S
+ergonomically
+ergonomics/M
+ergosterol/M
+ergot/M
+ermine/SM
+erode/DSG
+erodible
+erogenous
+erosion/M
+erosive
+erotic/S
+erotica/M
+erotically
+eroticism/M
+err/GSD
+errand/SM
+errant/I
+errata/SM
+erratic
+erratically
+erratum/M
+erroneous/Y
+error/SM
+ersatz/MS
+erst
+erstwhile
+eruct/SDG
+eructation/SM
+erudite/YN
+erudition/M
+erupt/SDGV
+eruption/MS
+erysipelas/M
+erythrocyte/SM
+erythromycin
+escalate/CDSGN
+escalation/CM
+escalations
+escalator/MS
+escallop/SGMD
+escalope/S
+escapade/MS
+escape/LMGDS
+escapee/MS
+escapement/SM
+escapism/M
+escapist/MS
+escapologist/S
+escapology
+escargot/MS
+escarole/MS
+escarpment/MS
+eschatological
+eschatology
+eschew/SDG
+escort/SMDG
+escritoire/MS
+escrow/SM
+escudo/SM
+escutcheon/SM
+esophageal
+esophagi
+esophagus/M
+esoteric
+esoterically
+esp
+espadrille/MS
+espalier/MDSG
+especial/Y
+espionage/M
+esplanade/MS
+espousal/M
+espouse/GDS
+espresso/MS
+esprit/M
+espy/DSG
+esquire/SM
+essay/SMDRZG
+essayer/M
+essayist/SM
+essence/SM
+essential/IMS
+essentially
+establish/AESDGL
+establishment/AEM
+establishments
+estate/SM
+esteem/ESMDG
+ester/SM
+estimable/I
+estimate/MGNDSX
+estimation/M
+estimator/SM
+estoppel
+estradiol
+estrange/LDSG
+estrangement/MS
+estrogen/MS
+estrous
+estrus/MS
+estuary/SM
+eta/SM
+etc
+etch/DRSZGJ
+etcher/M
+etching/M
+eternal/YP
+eternalness/M
+eternity/SM
+ethane/M
+ethanol/M
+ether/M
+ethereal/Y
+ethic/SM
+ethical/UY
+ethics/M
+ethmoid
+ethnic/SM
+ethnically
+ethnicity/M
+ethnocentric
+ethnocentrism/M
+ethnographer/S
+ethnographic
+ethnographically
+ethnography
+ethnological/Y
+ethnologist/SM
+ethnology/M
+ethological
+ethologist/MS
+ethology/M
+ethos/M
+ethyl/M
+ethylene/M
+etiolated
+etiologic
+etiological
+etiology/SM
+etiquette/M
+etude/SM
+etymological/Y
+etymologist/SM
+etymology/SM
+eucalypti
+eucalyptus/MS
+euchre/DSMG
+euclidean
+eugenic/S
+eugenically
+eugenicist/MS
+eugenics/M
+eukaryote/SM
+eukaryotic
+eulogist/MS
+eulogistic
+eulogize/ZGDRS
+eulogizer/M
+eulogy/SM
+eunuch/M
+eunuchs
+euphemism/SM
+euphemistic
+euphemistically
+euphonious/Y
+euphony/M
+euphoria/M
+euphoric
+euphorically
+eureka
+euro/MS
+europium/M
+eutectic
+euthanasia/M
+euthanize/DSG
+euthenics/M
+eutrophication
+evacuate/XDSGN
+evacuation/M
+evacuee/MS
+evade/DRSZG
+evader/M
+evaluate/AGNVDSX
+evaluation/AM
+evaluator/S
+evanescence/M
+evanescent
+evangelic
+evangelical/SMY
+evangelicalism/M
+evangelism/M
+evangelist/MS
+evangelistic
+evangelize/GDS
+evaporate/GNDS
+evaporation/M
+evaporator/SM
+evasion/SM
+evasive/YP
+evasiveness/M
+eve/ASM
+even/MDRYTGSJP
+evenhanded/Y
+evening/M
+evenness/UM
+evensong/M
+event/SM
+eventful/UY
+eventfulness/M
+eventide/M
+eventual/Y
+eventuality/SM
+eventuate/GDS
+ever
+everglade/SM
+evergreen/SM
+everlasting/MYS
+evermore
+every
+everybody/M
+everyday
+everyone/M
+everyplace
+everything/M
+everywhere
+evict/SDG
+eviction/MS
+evidence/MGDS
+evident/Y
+evil/MRYTSP
+evildoer/SM
+evildoing/M
+eviller
+evillest
+evilness/M
+evince/DSG
+eviscerate/DSGN
+evisceration/M
+evocation/MS
+evocative/Y
+evoke/DSG
+evolution/M
+evolutionary
+evolutionist/SM
+evolve/DSG
+ewe/RSMZ
+ewer/M
+ex/MS
+exabyte/MS
+exacerbate/GNDS
+exacerbation/M
+exact/SPDRYTG
+exacting/Y
+exaction/M
+exactitude/M
+exactness/IM
+exaggerate/XDSGN
+exaggerated/Y
+exaggeration/M
+exaggerator/MS
+exajoule/S
+exalt/SDG
+exaltation/M
+exam/MS
+examination/AMS
+examine/AGDS
+examiner/MS
+example/MGDS
+exampled/U
+exasperate/DSGN
+exasperated/Y
+exasperating/Y
+exasperation/M
+excavate/GNDSX
+excavation/M
+excavator/SM
+exceed/GSD
+exceeding/Y
+excel/S
+excelled
+excellence/M
+excellency/SM
+excellent/Y
+excelling
+excelsior/M
+except/GSD
+exception/BSM
+exceptionable/U
+exceptional/UY
+exceptionalism
+excerpt/MDGS
+excess/VMS
+excessive/Y
+exchange/DSMG
+exchangeable
+exchequer/SM
+excise/XDSMGN
+excision/M
+excitability/M
+excitably
+excitation/M
+excite/BDRSLZG
+excited/Y
+excitement/SM
+exciter/M
+exciting/Y
+exciton
+excl
+exclaim/DGS
+exclamation/SM
+exclamatory
+exclude/GDS
+exclusion/MS
+exclusionary
+exclusive/PMYS
+exclusiveness/M
+exclusivity/M
+excommunicate/GNDSX
+excommunication/M
+excoriate/DSGNX
+excoriation/M
+excrement/M
+excremental
+excrescence/MS
+excrescent
+excreta/M
+excrete/XGNDS
+excretion/M
+excretory
+excruciating/Y
+exculpate/DSGN
+exculpation/M
+exculpatory
+excursion/MS
+excursionist/MS
+excursive/YP
+excursiveness/M
+excusable/I
+excusably/I
+excuse/DSBMG
+excused/U
+exec/MS
+execrable
+execrably
+execrate/DSGN
+execration/M
+execute/BXGNVDS
+execution/ZMR
+executioner/M
+executive/SM
+executor/MS
+executrices
+executrix/M
+exegeses
+exegesis/M
+exegetic
+exegetical
+exemplar/SM
+exemplary
+exemplification/M
+exemplify/GDSXN
+exempt/SGD
+exemption/SM
+exercise/DRSMZG
+exerciser/M
+exert/SDG
+exertion/MS
+exeunt
+exfoliate/GNDS
+exhalation/MS
+exhale/DSG
+exhaust/GVMDS
+exhaustible/I
+exhaustion/M
+exhaustive/YP
+exhaustiveness/M
+exhibit/GMDS
+exhibition/MS
+exhibitionism/M
+exhibitionist/MS
+exhibitor/SM
+exhilarate/DSGN
+exhilaration/M
+exhort/SDG
+exhortation/MS
+exhumation/MS
+exhume/DSG
+exigence/MS
+exigency/SM
+exigent
+exiguity/M
+exiguous
+exile/DSMG
+exilic
+exist/SDG
+existence/MS
+existent
+existential/Y
+existentialism/M
+existentialist/MS
+exit/MDGS
+exobiology/M
+exodus/MS
+exogenous
+exon/MS
+exonerate/GNDS
+exoneration/M
+exoplanet/MS
+exorbitance/M
+exorbitant/Y
+exorcise/DSG
+exorcism/SM
+exorcist/SM
+exoskeleton/SM
+exosphere/SM
+exothermic
+exotic/SM
+exotica
+exotically
+exoticism/M
+exp
+expand/BGSD
+expanse/XMNVS
+expansible
+expansion/M
+expansionary
+expansionism/M
+expansionist/MS
+expansive/YP
+expansiveness/M
+expat/S
+expatiate/GNDS
+expatiation/M
+expatriate/DSMGN
+expatriation/M
+expect/GSD
+expectancy/M
+expectant/Y
+expectation/SM
+expectorant/SM
+expectorate/DSGN
+expectoration/M
+expedience/IM
+expediences
+expediencies
+expediency/IM
+expedient/SMY
+expedite/DRSZGNX
+expediter/M
+expedition/M
+expeditionary
+expeditious/PY
+expeditiousness/M
+expel/S
+expelled
+expelling
+expend/GSBD
+expendable/SM
+expenditure/SM
+expense/MS
+expensive/IYP
+expensiveness/IM
+experience/IMD
+experiences
+experiencing
+experiential
+experiment/MDRSZG
+experimental/Y
+experimentation/M
+experimenter/M
+expert/SPMY
+expertise/M
+expertness/M
+expiate/GNDS
+expiation/M
+expiatory
+expiration/M
+expire/DSG
+expired/U
+expiry/M
+explain/ADGS
+explainable
+explained/U
+explanation/MS
+explanatory
+expletive/MS
+explicable/I
+explicate/XGNDS
+explication/M
+explicit/PY
+explicitness/M
+explode/GDS
+exploit/ZGBMDRS
+exploitation/M
+exploitative
+exploited/U
+exploiter/M
+exploration/MS
+exploratory
+explore/ZGDRS
+explored/U
+explorer/M
+explosion/SM
+explosive/SPMY
+explosiveness/M
+expo/MS
+exponent/MS
+exponential/Y
+exponentiation
+export/BSZGMDR
+exportation/M
+exporter/M
+expose/DSMG
+exposed/U
+exposition/SM
+expositor/SM
+expository
+expostulate/GNXDS
+expostulation/M
+exposure/MS
+expound/ZGDRS
+expounder/M
+express/GVMDSY
+expressed/U
+expressible/I
+expression/SM
+expressionism/M
+expressionist/SM
+expressionistic
+expressionless/Y
+expressive/PY
+expressiveness/M
+expressway/SM
+expropriate/GNXDS
+expropriation/M
+expropriator/SM
+expulsion/MS
+expunge/GDS
+expurgate/DSGNX
+expurgated/U
+expurgation/M
+exquisite/YP
+exquisiteness/M
+ext
+extant
+extemporaneous/PY
+extemporaneousness/M
+extempore
+extemporization/M
+extemporize/GDS
+extend/SZGDRB
+extender/M
+extensibility
+extensible
+extension/SM
+extensional
+extensive/YP
+extensiveness/M
+extent/SM
+extenuate/DSGN
+extenuation/M
+exterior/MS
+exterminate/DSXGN
+extermination/M
+exterminator/MS
+external/MYS
+externalization/SM
+externalize/DSG
+extinct/GDS
+extinction/MS
+extinguish/ZGBDRS
+extinguishable/I
+extinguisher/M
+extirpate/GNDS
+extirpation/M
+extol/S
+extolled
+extolling
+extort/SGD
+extortion/MRZ
+extortionate/Y
+extortioner/M
+extortionist/MS
+extra/SM
+extracellular
+extract/MDGVS
+extraction/SM
+extractor/MS
+extracurricular
+extradite/GNBXDS
+extradition/M
+extrajudicial
+extralegal
+extramarital
+extramural
+extraneous/Y
+extraordinaire
+extraordinarily
+extraordinary
+extrapolate/XGNDS
+extrapolation/M
+extrasensory
+extraterrestrial/MS
+extraterritorial
+extraterritoriality/M
+extravagance/MS
+extravagant/Y
+extravaganza/MS
+extravehicular
+extreme/PMYTRS
+extremeness/M
+extremism/M
+extremist/MS
+extremity/SM
+extricable/I
+extricate/GNDS
+extrication/M
+extrinsic
+extrinsically
+extroversion/M
+extrovert/SMD
+extrude/GDS
+extrusion/SM
+extrusive
+exuberance/M
+exuberant/Y
+exudation/M
+exude/DSG
+exult/SDG
+exultant/Y
+exultation/M
+exurb/SM
+exurban
+exurbanite/SM
+exurbia/M
+eye/DSM
+eyeball/GMDS
+eyebrow/SM
+eyedropper/SM
+eyeful/SM
+eyeglass/MS
+eyeing
+eyelash/MS
+eyeless
+eyelet/SM
+eyelid/SM
+eyeliner/MS
+eyeopener/MS
+eyeopening
+eyepiece/MS
+eyesight/M
+eyesore/MS
+eyestrain/M
+eyeteeth
+eyetooth/M
+eyewash/M
+eyewitness/MS
+f/CIAVTR
+fMRI
+fa/M
+fab
+fable/DSM
+fabric/SM
+fabricate/DSGNX
+fabrication/M
+fabricator/SM
+fabulous/Y
+facade/SM
+face's
+face/ACSDG
+facecloth/M
+facecloths
+faceless
+facepalm/SDG
+facet/SMDG
+facetious/YP
+facetiousness/M
+facial/SMY
+facile/Y
+facilitate/GNDS
+facilitation/M
+facilitator/MS
+facility/SM
+facing/SM
+facsimile/DSM
+facsimileing
+fact/MS
+faction/SM
+factional
+factionalism/M
+factious
+factitious
+factoid/SM
+factor's
+factor/ASDG
+factorial/MS
+factorization
+factorize/GDS
+factory/SM
+factotum/SM
+factual/Y
+faculty/SM
+fad/GSMD
+faddish/P
+faddist/MS
+faddy/P
+fade/MS
+fading/U
+faerie/SM
+faff/DGS
+fag/SM
+fagged
+fagging
+faggot/SM
+fagot/SMG
+faience/M
+fail/DGJS
+failing/M
+faille/M
+failure/SM
+fain/RT
+faint/SMDRYTGP
+fainthearted
+faintness/M
+fair/MRYTGJPS
+fairground/MS
+fairing/M
+fairness/UM
+fairway/SM
+fairy/SM
+fairyland/SM
+faith/M
+faithful's
+faithful/UPY
+faithfulness/UM
+faithfuls
+faithless/PY
+faithlessness/M
+faiths
+fajita/SM
+fajitas/M
+fake/MZGDRS
+faker/M
+fakir/SM
+falcon/SMRZ
+falconer/M
+falconry/M
+fall/MNGS
+fallacious/Y
+fallacy/SM
+fallback
+fallibility/IM
+fallible/P
+fallibleness/M
+fallibly/I
+falloff/SM
+fallout/M
+fallow/SMDG
+false/PRYT
+falsehood/SM
+falseness/M
+falsetto/SM
+falsie/SM
+falsifiable
+falsification/M
+falsifier/M
+falsify/DRSZGNX
+falsity/SM
+falter/GSJMD
+faltering/Y
+fame's
+fame/D
+familial
+familiar/MYS
+familiarity/UM
+familiarization/M
+familiarize/GDS
+family/SM
+famine/SM
+famish/DSG
+famous/IY
+fan/SM
+fanatic/SM
+fanatical/Y
+fanaticism/M
+fanboy/SM
+fanciable
+fancier/M
+fanciful/YP
+fancifulness/M
+fancily
+fanciness/M
+fancy/DRSMZTGP
+fancywork/M
+fandango/MS
+fandom
+fanfare/SM
+fang/MDS
+fanlight/SM
+fanned
+fanning
+fanny/SM
+fantail/MS
+fantasia/SM
+fantasist/S
+fantasize/GDS
+fantastic
+fantastical/Y
+fantasy/DSMG
+fanzine/MS
+far
+farad/SM
+faradize/DG
+faraway
+farce/SM
+farcical/Y
+fare/MGDS
+farewell/SM
+farina/M
+farinaceous
+farm/MDRZGSJ
+farmer/M
+farmhand/SM
+farmhouse/SM
+farming/M
+farmland/MS
+farmstead/MS
+farmyard/MS
+faro/M
+farrago/M
+farragoes
+farrier/MS
+farrow/SMDG
+farseeing
+farsighted/P
+farsightedness/M
+fart/MDGS
+farther
+farthermost
+farthest
+farthing/SM
+fascia/SM
+fascicle/SM
+fascinate/GNDSX
+fascinating/Y
+fascination/M
+fascism/M
+fascist/MS
+fascistic
+fashion/ZGBMDRS
+fashionable/U
+fashionably/U
+fashioner/M
+fashionista/MS
+fast/MDRTGSP
+fastback/SM
+fastball/SM
+fasten/UAGDS
+fastener/SM
+fastening/MS
+fastidious/PY
+fastidiousness/M
+fastness/MS
+fat/GSPMD
+fatal/Y
+fatalism/M
+fatalist/SM
+fatalistic
+fatalistically
+fatality/SM
+fatback/M
+fate/MS
+fateful/YP
+fatefulness/M
+fathead/MDS
+father/SGMDY
+fatherhood/M
+fatherland/MS
+fatherless
+fathom/SMDGB
+fathomable/U
+fathomless
+fatigue/MDSG
+fatigues/M
+fatness/M
+fatso/S
+fatten/SDG
+fatter
+fattest
+fattiness/M
+fatty/RSMTP
+fatuity/M
+fatuous/YP
+fatuousness/M
+fatwa/SM
+faucet/SM
+fault/CSMDG
+faultfinder/SM
+faultfinding/M
+faultily
+faultiness/M
+faultless/PY
+faultlessness/M
+faulty/PRT
+faun/MS
+fauna/SM
+fauvism/M
+fauvist/SM
+faux
+fave/S
+favor/ESMDG
+favorable/U
+favorably/U
+favorite/SM
+favoritism/M
+fawn/MDRZGS
+fawner/M
+fax/GMDS
+fay/TSMR
+faze/GDS
+fazed/U
+fealty/M
+fear/MDGS
+fearful/YP
+fearfulness/M
+fearless/PY
+fearlessness/M
+fearsome
+feasibility/M
+feasible/IU
+feasibly
+feast/SMDRZG
+feaster/M
+feat/MS
+feather/SGMD
+featherbedding/M
+featherbrained
+featherless
+featherweight/MS
+feathery/TR
+feature/DSMG
+featureless
+febrile
+fecal
+feces/M
+feckless/PY
+fecund
+fecundate/GNDS
+fecundation/M
+fecundity/M
+fed/SM
+federal/SMY
+federalism/M
+federalist/MS
+federalization/M
+federalize/GDS
+federate/FXDSGN
+federation/FM
+fedora/SM
+fee/SM
+feeble/RTP
+feebleness/M
+feebly
+feed/MRZGSJ
+feedback/M
+feedbag/SM
+feeder/M
+feeding/M
+feedlot/SM
+feel/MRZGSJ
+feeler/M
+feelgood
+feeling/MY
+feet
+feign/SDG
+feigned/U
+feint/SMDG
+feisty/TR
+feldspar/M
+felicitate/GNXDS
+felicitation/M
+felicitous/Y
+felicity/ISM
+feline/SM
+fell/MDRZTGS
+fella/S
+fellatio/M
+fellow/SM
+fellowman/M
+fellowmen
+fellowship/MS
+felon/SM
+felonious
+felony/SM
+felt/MDGS
+fem
+female/PSM
+femaleness/M
+feminine/SMY
+femininity/M
+feminism/M
+feminist/SM
+feminize/DSG
+femoral
+femur/SM
+fen/SM
+fence/DRSMZG
+fencer/M
+fencing/M
+fend/CDRZGS
+fender/CM
+fenestration/M
+fennel/M
+fentanyl/M
+feral
+ferment/FCMS
+fermentation/M
+fermented
+fermenting
+fermium/M
+fern/MS
+ferny/RT
+ferocious/PY
+ferociousness/M
+ferocity/M
+ferret/GSMD
+ferric
+ferromagnetic
+ferromagnetism
+ferrous
+ferrule/MS
+ferry/DSMG
+ferryboat/SM
+ferryman/M
+ferrymen
+fertile/I
+fertility/IM
+fertilization/M
+fertilize/DRSZG
+fertilized/U
+fertilizer/M
+ferule/SM
+fervency/M
+fervent/Y
+fervid/Y
+fervor/M
+fess/FKGSD
+fest/MRZVS
+festal
+fester/GMD
+festival/SM
+festive/YP
+festiveness/M
+festivity/SM
+festoon/GMDS
+feta/M
+fetal
+fetch/DRSZG
+fetcher/M
+fetching/Y
+fete/MGDS
+fetid/P
+fetidness/M
+fetish/MS
+fetishism/M
+fetishist/SM
+fetishistic
+fetlock/MS
+fetter's
+fetter/USGD
+fettle/M
+fettuccine/M
+fetus/MS
+feud/MDGS
+feudal
+feudalism/M
+feudalistic
+fever/SMD
+feverish/YP
+feverishness/M
+few/TPMR
+fewness/M
+fey
+fez/M
+fezzes
+ff
+fiance/CM
+fiancee/MS
+fiances
+fiasco/M
+fiascoes
+fiat/MS
+fib/ZSMR
+fibbed
+fibber/SM
+fibbing
+fiber/M
+fiberboard/M
+fiberfill/M
+fiberglass/M
+fibril/SM
+fibrillate/GNDS
+fibrillation/M
+fibrin/M
+fibroid
+fibrosis/M
+fibrous
+fibula/M
+fibulae
+fibular
+fiche/SM
+fichu/SM
+fickle/RPT
+fickleness/M
+fiction/MS
+fictional/Y
+fictionalization/SM
+fictionalize/DSG
+fictitious/Y
+fictive
+ficus/M
+fiddle/DRSMZG
+fiddler/M
+fiddlesticks
+fiddly/TR
+fidelity/IM
+fidget/SGMD
+fidgety
+fiduciary/SM
+fie
+fief/MS
+fiefdom/MS
+field/ISMRZ
+fielded
+fielder/IM
+fielding
+fieldsman
+fieldsmen
+fieldwork/MRZ
+fieldworker/M
+fiend/SM
+fiendish/Y
+fierce/PRYT
+fierceness/M
+fieriness/M
+fiery/RPT
+fiesta/SM
+fife/MZRS
+fifer/M
+fifteen/MHS
+fifteenth/M
+fifteenths
+fifth/MY
+fifths
+fiftieth/M
+fiftieths
+fifty/SMH
+fig/SLM
+fight/SMRZG
+fightback
+fighter/IMS
+fighting/IM
+figment/MS
+figuration/FM
+figurative/Y
+figure's
+figure/FEGSD
+figurehead/SM
+figurine/MS
+filament/MS
+filamentous
+filbert/MS
+filch/DSG
+file's/KC
+file/CAKGDS
+filename/S
+filer/CSM
+filet
+filial
+filibuster/MDRSZG
+filibusterer/M
+filigree/DSM
+filigreeing
+filing's
+filings
+fill's
+fill/AIDGS
+filled/U
+filler/MS
+fillet/MDGS
+filling/SM
+fillip/MDGS
+filly/SM
+film/MDGS
+filminess/M
+filmmaker/SM
+filmstrip/MS
+filmy/TPR
+filo
+filter/MDRBSZG
+filtered/U
+filterer/M
+filth/M
+filthily
+filthiness/M
+filthy/RPT
+filtrate's
+filtrate/IGNDS
+filtration/IM
+fin/SMR
+finagle/DRSZG
+finagler/M
+final/SMY
+finale/MS
+finalist/SM
+finality/M
+finalization/M
+finalize/DSG
+finance's
+finance/ADSG
+financial/Y
+financier/MS
+financing/M
+finch/MS
+find/JMRZGS
+finder/M
+finding/M
+findings/M
+fine's/F
+fine/CAFTGDS
+finely
+fineness/M
+finery/AM
+finespun
+finesse/DSMG
+finger/MDGSJ
+fingerboard/SM
+fingering/M
+fingerling/SM
+fingermark/S
+fingernail/SM
+fingerprint/SGMD
+fingertip/MS
+finial/MS
+finical
+finickiness/M
+finicky/RPT
+finis/MS
+finish's
+finish/ADSG
+finished/U
+finisher/MS
+finite/IY
+fink/MDGS
+finned
+finny
+fir/ZGSJMDRH
+fire/MS
+firearm/SM
+fireball/MS
+firebomb/MDSJG
+firebox/MS
+firebrand/SM
+firebreak/SM
+firebrick/SM
+firebug/SM
+firecracker/SM
+firedamp/M
+firefight/MRSZG
+firefighter/M
+firefighting/M
+firefly/SM
+fireguard/S
+firehouse/SM
+firelight/ZMR
+fireman/M
+firemen
+fireplace/SM
+fireplug/MS
+firepower/M
+fireproof/DSG
+firer/M
+firescreen/S
+fireside/MS
+firestorm/MS
+firetrap/MS
+firetruck/MS
+firewall/MS
+firewater/M
+firewood/M
+firework/SM
+firm/MDRYPTGS
+firmament/SM
+firmness/M
+firmware/M
+first/SMY
+firstborn/SM
+firsthand
+firth/M
+firths
+fiscal/MYS
+fish/MDRSZG
+fishbowl/SM
+fishcake/SM
+fisher/M
+fisherman/M
+fishermen
+fishery/SM
+fishhook/SM
+fishily
+fishiness/M
+fishing/M
+fishmonger/MS
+fishnet/SM
+fishpond/MS
+fishtail/DGS
+fishwife/M
+fishwives
+fishy/TRP
+fissile
+fission/BM
+fissure/SM
+fist/MS
+fistfight/MS
+fistful/SM
+fisticuffs/M
+fistula/SM
+fistulous/M
+fit/KAMS
+fitful/YP
+fitfulness/M
+fitly
+fitment/S
+fitness/UM
+fitted/UA
+fitter/MS
+fittest
+fitting/SMY
+five/MZRS
+fix/ZGBJMDRS
+fixate/GNVDSX
+fixation/M
+fixative/MS
+fixed/Y
+fixer/M
+fixings/M
+fixity/M
+fixture/MS
+fizz/MDSG
+fizzle/DSMG
+fizzy/RT
+fjord/SM
+fl/JDG
+flab/M
+flabbergast/SGD
+flabbily
+flabbiness/M
+flabby/RPT
+flaccid/Y
+flaccidity/M
+flack/SM
+flag/MS
+flagella
+flagellant/S
+flagellate/GNDS
+flagellation/M
+flagellum/M
+flagged
+flagging/U
+flagman/M
+flagmen
+flagon/MS
+flagpole/SM
+flagrance/M
+flagrancy/M
+flagrant/Y
+flagship/SM
+flagstaff/MS
+flagstone/MS
+flail/SGMD
+flair/SM
+flak/M
+flake/DSMG
+flakiness/M
+flaky/TRP
+flamage
+flambe/MS
+flambeed
+flambeing
+flamboyance/M
+flamboyancy/M
+flamboyant/Y
+flame/DRSJMZG
+flamenco/MS
+flameproof/DGS
+flamethrower/SM
+flamingo/MS
+flammability/IM
+flammable/SM
+flan/MS
+flange/MS
+flank/SZGMDR
+flanker/M
+flannel/SGMD
+flannelette/M
+flap/MS
+flapjack/MS
+flapped
+flapper/SM
+flapping
+flare/DSMG
+flareup/SM
+flash/ZTGMDRS
+flashback/SM
+flashbulb/SM
+flashcard/SM
+flashcube/SM
+flasher/M
+flashgun/SM
+flashily
+flashiness/M
+flashing/M
+flashlight/MS
+flashy/RTP
+flask/SM
+flat/MYPS
+flatbed/SM
+flatboat/SM
+flatbread
+flatcar/SM
+flatfeet
+flatfish/MS
+flatfoot/SMD
+flatiron/SM
+flatland/M
+flatlet/S
+flatmate/S
+flatness/M
+flatted
+flatten/SDG
+flatter/SDRZG
+flatterer/M
+flattering/Y
+flattery/M
+flattest
+flatting
+flattish
+flattop/SM
+flatulence/M
+flatulent
+flatus/M
+flatware/M
+flatworm/SM
+flaunt/MDSG
+flaunting/Y
+flavor/MDSGJ
+flavored/U
+flavorful
+flavoring/M
+flavorless
+flavorsome
+flaw/MDGS
+flawless/PY
+flawlessness/M
+flax/MN
+flay/DGS
+flea/MS
+fleabag/SM
+fleabite/S
+fleapit/S
+fleck/SGMD
+fledged/U
+fledgling/MS
+flee/S
+fleece/MZGDRS
+fleecer/M
+fleeciness/M
+fleecy/RTP
+fleeing
+fleet/STGMDRYP
+fleetingly/M
+fleetingness/M
+fleetness/M
+flesh/GMDSY
+fleshly/TR
+fleshpot/MS
+fleshy/RT
+flew
+flex/AMS
+flexed
+flexibility/IM
+flexible/I
+flexibly/I
+flexing
+flexion
+flextime/M
+flibbertigibbet/SM
+flick/SZGMDR
+flicker/GMD
+flier/M
+flight/MS
+flightiness/M
+flightless
+flighty/PTR
+flimflam/SM
+flimflammed
+flimflamming
+flimsily
+flimsiness/M
+flimsy/TRP
+flinch/GMDS
+fling/GM
+flint/SM
+flintlock/SM
+flinty/TR
+flip/MS
+flippancy/M
+flippant/Y
+flipped
+flipper/MS
+flippest
+flipping
+flippy/S
+flirt/SGMD
+flirtation/MS
+flirtatious/YP
+flirtatiousness/M
+flirty
+flit/MS
+flitted
+flitting
+float/SMDRZG
+floater/M
+flock/SMDG
+flocking/M
+floe/MS
+flog/S
+flogged
+flogger/SM
+flogging/MS
+flood/SMDRG
+floodgate/MS
+floodlight/MDSG
+floodlit
+floodplain/MS
+floodwater/MS
+floor/SMDG
+floorboard/MS
+flooring/M
+floorwalker/SM
+floozy/SM
+flop/MS
+flophouse/MS
+flopped
+floppily
+floppiness/M
+flopping
+floppy/PRSMT
+flora/SM
+floral
+florescence/IM
+florescent/I
+floret/SM
+florid/PY
+floridness/M
+florin/SM
+florist/SM
+floss/MDSG
+flossy/RT
+flotation/SM
+flotilla/MS
+flotsam/M
+flounce/DSMG
+flouncy
+flounder/MDSG
+flour/SMDG
+flourish/GMDS
+floury
+flout/SMDRZG
+flouter/M
+flow/MDGS
+flowchart/SM
+flower's
+flower/CSDG
+flowerbed/MS
+floweriness/M
+flowering/S
+flowerless
+flowerpot/MS
+flowery/PTR
+flown
+flt
+flu/M
+flub/MS
+flubbed
+flubbing
+fluctuate/GNDSX
+fluctuation/M
+flue/MS
+fluency/M
+fluent/Y
+fluff/SMDG
+fluffiness/M
+fluffy/RPT
+fluid/SMY
+fluidity/M
+fluke/SM
+fluky/RT
+flume/SM
+flummox/DSG
+flung
+flunk/SMDG
+flunky/SM
+fluoresce/DSG
+fluorescence/M
+fluorescent
+fluoridate/GNDS
+fluoridation/M
+fluoride/SM
+fluorine/M
+fluorite/M
+fluorocarbon/MS
+fluoroscope/SM
+fluoroscopic
+fluoxetine
+flurry/GDSM
+flush/MDRSTG
+fluster/MDSG
+flute/DSMG
+fluting/M
+flutist/MS
+flutter/MDSG
+fluttery
+fluvial
+flux/IMS
+fluxed
+fluxing
+fly/ZTGBDRSM
+flyaway
+flyblown
+flyby/M
+flybys
+flycatcher/MS
+flying/M
+flyleaf/M
+flyleaves
+flyover/MS
+flypaper/SM
+flypast/S
+flysheet/S
+flyspeck/GMDS
+flyswatter/MS
+flytrap/S
+flyway/SM
+flyweight/SM
+flywheel/MS
+foal/MDGS
+foam/MDGS
+foaminess/M
+foamy/RTP
+fob/SM
+fobbed
+fobbing
+focal/Y
+focus's
+focus/ADSG
+focused/U
+fodder/SM
+foe/SM
+fog's
+fog/CS
+fogbound
+fogged/C
+foggily
+fogginess/M
+fogging/C
+foggy/RTP
+foghorn/MS
+fogy/SM
+fogyish
+foible/SM
+foil/MDGS
+foist/SDG
+fol
+fold's
+fold/AUSGD
+foldaway
+folder/SM
+foldout/MS
+foliage/M
+folic
+folio/SM
+folk/MS
+folklore/M
+folkloric
+folklorist/MS
+folksiness/M
+folksinger/SM
+folksinging/M
+folksy/PTR
+folktale/MS
+folkway/MS
+foll
+follicle/MS
+follow/SDRZGJ
+follower/M
+following/M
+followup/S
+folly/SM
+foment/SGD
+fomentation/M
+fond/RYTP
+fondant/MS
+fondle/DSG
+fondness/M
+fondue/SM
+font/MS
+fontanel/MS
+foo
+foobar
+food/MS
+foodie/SM
+foodstuff/SM
+fool/MDGS
+foolery/SM
+foolhardily
+foolhardiness/M
+foolhardy/TPR
+foolish/YP
+foolishness/M
+foolproof
+foolscap/M
+foot/MDRZGSJ
+footage/M
+football/MRZGS
+footballer/M
+footbridge/SM
+footfall/MS
+foothill/MS
+foothold/MS
+footie
+footing/M
+footless
+footlights/M
+footling/MS
+footlocker/SM
+footloose
+footman/M
+footmen
+footnote/MGDS
+footpath/M
+footpaths
+footplate/S
+footprint/SM
+footrace/MS
+footrest/MS
+footsie/SM
+footslogging
+footsore
+footstep/MS
+footstool/SM
+footwear/M
+footwork/M
+footy
+fop/SM
+foppery/M
+foppish/P
+foppishness/M
+for/H
+fora
+forage/DRSMZG
+forager/M
+foray/SMDG
+forbade
+forbear/SMG
+forbearance/M
+forbid/S
+forbidden
+forbidding/YS
+forbore
+forborne
+force/DSMG
+forced/U
+forceful/PY
+forcefulness/M
+forceps/M
+forcible
+forcibly
+ford/MDGSB
+fore/MS
+forearm/GSMD
+forebear/MS
+forebode/GJDS
+foreboding/M
+forecast/MRZGS
+forecaster/M
+forecastle/MS
+foreclose/DSG
+foreclosure/MS
+forecourt/SM
+foredoom/DGS
+forefather/MS
+forefeet
+forefinger/SM
+forefoot/M
+forefront/SM
+forego/G
+foregoes
+foregone
+foreground/GMDS
+forehand/MS
+forehead/MS
+foreign/ZRP
+foreigner/M
+foreignness/M
+foreknew
+foreknow/GS
+foreknowledge/M
+foreknown
+foreleg/SM
+forelimb/MS
+forelock/MS
+foreman/M
+foremast/MS
+foremen
+foremost
+forename/MDS
+forenoon/MS
+forensic/MS
+forensically
+forensics/M
+foreordain/GSD
+forepart/MS
+foreperson/SM
+foreplay/M
+forequarter/MS
+forerunner/MS
+foresail/MS
+foresaw
+foresee/RSBZ
+foreseeable/U
+foreseeing
+foreseen/U
+foreseer/M
+foreshadow/GDS
+foreshore/S
+foreshorten/DSG
+foresight/MD
+foresightedness/M
+foreskin/MS
+forest's
+forest/ACGDS
+forestall/SGD
+forestation/ACM
+forester/MS
+forestland/M
+forestry/M
+foretaste/DSMG
+foretell/GS
+forethought/M
+foretold
+forever/M
+forevermore
+forewarn/DSG
+forewent
+forewoman/M
+forewomen
+foreword/MS
+forfeit/GSMD
+forfeiture/SM
+forgather/SDG
+forgave
+forge/DRSMZGVJ
+forger/M
+forgery/SM
+forget/S
+forgetful/YP
+forgetfulness/M
+forgettable/U
+forgetting
+forging/M
+forgivable/U
+forgive/BRSZGP
+forgiven
+forgiveness/M
+forgiver/M
+forgiving/U
+forgo/RZG
+forgoer/M
+forgoes
+forgone
+forgot
+forgotten/U
+fork/MDGS
+forkful/SM
+forklift/MS
+forlorn/Y
+form's
+form/CAIFDGS
+formal/SMY
+formaldehyde/M
+formalin
+formalism/M
+formalist/MS
+formalities
+formality/IM
+formalization/M
+formalize/GDS
+format/SMV
+formation/CFASM
+formatted/A
+formatting/M
+formed/U
+former/FIAM
+formerly
+formfitting
+formic
+formidable
+formidably
+formless/PY
+formlessness/M
+formula/MS
+formulae
+formulaic
+formulate/ADSGNX
+formulated/U
+formulation/AM
+formulator/SM
+fornicate/GNDS
+fornication/M
+fornicator/MS
+forsake/GS
+forsaken
+forsook
+forsooth
+forswear/SG
+forswore
+forsworn
+forsythia/SM
+fort/MS
+forte/SM
+forthcoming/M
+forthright/YP
+forthrightness/M
+forthwith
+fortieth/M
+fortieths
+fortification/M
+fortified/U
+fortifier/M
+fortify/DRSNZGX
+fortissimo
+fortitude/M
+fortnight/MYS
+fortress/MS
+fortuitous/YP
+fortuitousness/M
+fortuity/M
+fortunate/UY
+fortune/MS
+fortuneteller/SM
+fortunetelling/M
+forty/SMH
+forum/SM
+forward/MDRYZTGSP
+forwarder/M
+forwardness/M
+forwent
+fossa
+fossil/SM
+fossilization/M
+fossilize/GDS
+foster/GSD
+fought
+foul/MDRYTGSP
+foulard/M
+foulmouthed
+foulness/M
+found/FSDG
+foundation/SM
+foundational
+founded/U
+founder/GMDS
+foundling/SM
+foundry/SM
+fount/SM
+fountain/SM
+fountainhead/MS
+four/MHS
+fourfold
+fourposter/SM
+fourscore/M
+foursome/SM
+foursquare
+fourteen/SMH
+fourteenth/M
+fourteenths
+fourth/MY
+fourths
+fowl/MDGS
+fox/GMDS
+foxfire/M
+foxglove/SM
+foxhole/MS
+foxhound/SM
+foxhunt/GS
+foxily
+foxiness/M
+foxtrot/MS
+foxtrotted
+foxtrotting
+foxy/RTP
+foyer/SM
+fps
+fr
+fracas/MS
+frack/SDG
+fractal/SM
+fraction/ISM
+fractional/Y
+fractious/YP
+fractiousness/M
+fracture/MGDS
+frag/S
+fragile/RT
+fragility/M
+fragment/GMDS
+fragmentary/M
+fragmentation/M
+fragrance/MS
+fragrant/Y
+frail/RYTP
+frailness/M
+frailty/SM
+frame/DRSMZG
+framed/U
+framer/M
+framework/SM
+franc/SM
+franchise's
+franchise/EDSG
+franchisee/SM
+franchiser/SM
+francium/M
+francophone
+frangibility/M
+frangible
+frank/SMDRYTGP
+frankfurter/MS
+frankincense/M
+frankness/M
+frantic
+frantically
+frappe/SM
+frat/MS
+fraternal/Y
+fraternity/FSM
+fraternization/M
+fraternize/ZGDRS
+fraternizer/M
+fratricidal
+fratricide/MS
+fraud's
+fraud/S
+fraudster/S
+fraudulence/M
+fraudulent/Y
+fraught
+fray's
+fray/CDGS
+frazzle/MGDS
+freak/SMDG
+freakish/YP
+freakishness/M
+freaky/RT
+freckle/DSMG
+freckly
+free/YTDRS
+freebase/MGDS
+freebie/SM
+freebooter/SM
+freeborn
+freedman/M
+freedmen
+freedom/SM
+freehand
+freehold/ZMRS
+freeholder/M
+freeing
+freelance/DRSMZG
+freelancer/M
+freeload/SDRZG
+freeloader/M
+freeman/M
+freemasonry
+freemen
+freephone
+freesia/S
+freestanding
+freestone/SM
+freestyle/SM
+freethinker/SM
+freethinking/M
+freeware/M
+freeway/MS
+freewheel/DGS
+freewill
+freezable
+freeze's
+freeze/UAGS
+freezer/MS
+freezing's
+freight/MDRZGS
+freighter/M
+french
+frenemy/S
+frenetic
+frenetically
+frenzied/Y
+frenzy/DSM
+freq
+frequencies
+frequency/IM
+frequent/DRYSZTG
+frequented/U
+frequenter/M
+fresco/M
+frescoes
+fresh/PNRYXZT
+freshen/ZGDR
+freshener/M
+freshet/MS
+freshman/M
+freshmen
+freshness/M
+freshwater/M
+fret/MS
+fretful/YP
+fretfulness/M
+fretsaw/MS
+fretted
+fretting
+fretwork/M
+friable
+friar/SM
+friary/SM
+fricassee/DSM
+fricasseeing
+fricative/SM
+friction/SM
+frictional
+fridge/SM
+friedcake/MS
+friend's
+friend/UGSDY
+friendless
+friendlies
+friendliness/UM
+friendly's
+friendly/UPTR
+friendship/MS
+frieze/SM
+frig/S
+frigate/MS
+frigged
+frigging
+fright/SXGMDN
+frighten/DG
+frightening/Y
+frightful/PY
+frightfulness/M
+frigid/YP
+frigidity/M
+frigidness/M
+frill/SMD
+frilly/TR
+fringe's
+fringe/IDSG
+frippery/SM
+frisk/SDG
+friskily
+friskiness/M
+frisky/TRP
+frisson/S
+fritter/MDSG
+fritz/M
+frivolity/SM
+frivolous/PY
+frivolousness/M
+frizz/MDSYG
+frizzle/MGDS
+frizzy/TR
+fro
+frock's
+frock/CUS
+frog/MS
+frogging/S
+frogman/M
+frogmarch/GDS
+frogmen
+frogspawn
+frolic/SM
+frolicked
+frolicker/SM
+frolicking
+frolicsome
+from
+frond/SM
+front's
+front/FSDG
+frontage/MS
+frontal/Y
+frontbench/ZRS
+frontier/MS
+frontiersman/M
+frontiersmen
+frontierswoman
+frontierswomen
+frontispiece/MS
+frontward/S
+frosh/M
+frost's
+frost/CSDG
+frostbit
+frostbite/MGS
+frostbitten
+frostily
+frostiness/M
+frosting/SM
+frosty/TPR
+froth/MDG
+frothiness/M
+froths
+frothy/TPR
+froufrou/M
+frown/SMDG
+frowzily
+frowziness/M
+frowzy/TPR
+froze/AU
+frozen/UA
+fructify/DSG
+fructose/M
+frugal/Y
+frugality/M
+fruit/SMDG
+fruitcake/MS
+fruiterer/S
+fruitful/YP
+fruitfulness/M
+fruitiness/M
+fruition/M
+fruitless/PY
+fruitlessness/M
+fruity/TPR
+frump/SM
+frumpish
+frumpy/TR
+frustrate/GNXDS
+frustrating/Y
+frustration/M
+frustum/MS
+fry/GDSM
+fryer/SM
+ft
+ftp/ZGS
+fuchsia/MS
+fuck/SMGDRZ!
+fucker/M!
+fuckhead/S!
+fuddle/DSMG
+fudge/DSMG
+fuehrer/MS
+fuel's
+fuel/ADGS
+fug
+fugal
+fuggy
+fugitive/MS
+fugue/SM
+fuhrer/SM
+fulcrum/MS
+fulfill/LDGS
+fulfilled/U
+fulfilling/U
+fulfillment/M
+full/MDRZTGSP
+fullback/MS
+fuller/M
+fullness/M
+fully
+fulminate/DSXGN
+fulmination/M
+fulsome/PY
+fulsomeness/M
+fum/S
+fumble/DRSMZG
+fumbler/M
+fumbling/Y
+fume/MGDS
+fumigant/MS
+fumigate/GNDS
+fumigation/M
+fumigator/SM
+fumy/RT
+fun/M
+function/MDGS
+functional/Y
+functionalism
+functionalist/S
+functionality/S
+functionary/SM
+functor
+fund/AMDGS
+fundamental/SMY
+fundamentalism/M
+fundamentalist/SM
+funded/U
+funding/M
+fundraiser/MS
+fundraising
+funeral/MS
+funerary
+funereal/Y
+funfair/S
+fungal
+fungi
+fungible/MS
+fungicidal
+fungicide/MS
+fungoid
+fungous
+fungus/M
+funicular/SM
+funk/MDGS
+funkiness/M
+funky/PRT
+funnel/MDGS
+funner
+funnest
+funnily
+funniness/M
+funny/TPRSM
+funnyman/M
+funnymen
+fur/SM
+furbelow/M
+furbish/ADSG
+furious/Y
+furl's
+furl/UDGS
+furlong/SM
+furlough/GMD
+furloughs
+furn
+furnace/SM
+furnish/ADSG
+furnished/U
+furnishings/M
+furniture/M
+furor/SM
+furosemide
+furred
+furrier/M
+furriness/M
+furring/M
+furrow/MDSG
+furry/ZTRP
+further/SGD
+furtherance/M
+furthermore
+furthermost
+furthest
+furtive/YP
+furtiveness/M
+fury/SM
+furze/M
+fuse's/A
+fuse/CAIFGDS
+fusee/SM
+fuselage/SM
+fusibility/M
+fusible
+fusilier/SM
+fusillade/MS
+fusion/IFKSM
+fuss/MDSG
+fussbudget/MS
+fussily
+fussiness/M
+fusspot/SM
+fussy/TRP
+fustian/M
+fustiness/M
+fusty/TRP
+fut
+futile/Y
+futility/M
+futon/SM
+future/MS
+futurism/M
+futurist/MS
+futuristic
+futurity/SM
+futurologist/MS
+futurology/M
+futz/DSG
+fuzz/MDSG
+fuzzball/S
+fuzzily
+fuzziness/M
+fuzzy/PTR
+fwd
+fwy
+g/SNXVB
+gab/SM
+gabardine/SM
+gabbed
+gabbiness/M
+gabbing
+gabble/DSMG
+gabby/RTP
+gaberdine/SM
+gabfest/MS
+gable/DSM
+gad/S
+gadabout/SM
+gadded
+gadder/SM
+gadding
+gadfly/SM
+gadget/SM
+gadgetry/M
+gadolinium/M
+gaff/MDRZGS
+gaffe/SM
+gaffer/M
+gag/SM
+gaga
+gagged
+gagging
+gaggle/SM
+gaiety/M
+gaily
+gain's
+gain/ADGS
+gainer/SM
+gainful/Y
+gainsaid
+gainsay/ZGRS
+gainsayer/M
+gait/MRZS
+gaiter/M
+gal/SM
+gala/MS
+galactic
+galaxy/SM
+gale's
+gale/AS
+galena/M
+gall/MDGS
+gallant/SMY
+gallantry/M
+gallbladder/MS
+galleon/SM
+galleria/MS
+gallery/SM
+galley/SM
+gallimaufry/SM
+gallium/M
+gallivant/GSD
+gallon/SM
+gallop/SMDG
+gallows/M
+gallstone/MS
+galoot/SM
+galore
+galosh/MS
+galumph/DG
+galumphs
+galvanic
+galvanism/M
+galvanization/M
+galvanize/DSG
+galvanometer/MS
+gambit/SM
+gamble/DRSMZG
+gambler/M
+gambling/M
+gambol/SMDG
+game/MYTGDRSP
+gamecock/MS
+gamekeeper/MS
+gameness/M
+gamesmanship/M
+gamester/MS
+gamete/SM
+gametic
+gamin/SM
+gamine/SM
+gaminess/M
+gaming/M
+gamma/SM
+gammon/M
+gammy
+gamut/SM
+gamy/RTP
+gander/SM
+gang/MDGS
+gangbusters/M
+gangland/M
+ganglia
+gangling
+ganglion/M
+ganglionic
+gangplank/SM
+gangrene/DSMG
+gangrenous
+gangsta/S
+gangster/SM
+gangway/MS
+ganja
+gannet/SM
+gantlet/MS
+gantry/SM
+gap/GSMD
+gape/MS
+gar/SLM
+garage/DSMG
+garb/MDGS
+garbage/M
+garbageman
+garbanzo/SM
+garble/DSG
+garcon/SM
+garden/SZGMDR
+gardener/M
+gardenia/MS
+gardening/M
+garfish/MS
+gargantuan
+gargle/DSMG
+gargoyle/SM
+garish/PY
+garishness/M
+garland/MDGS
+garlic/M
+garlicky
+garment/MS
+garner/SGD
+garnet/SM
+garnish/GLMDS
+garnishee/DSM
+garnisheeing
+garnishment/SM
+garret/SM
+garrison/MDSG
+garrote/MZGDRS
+garroter/M
+garrulity/M
+garrulous/PY
+garrulousness/M
+garter/SM
+gas's
+gas/CS
+gasbag/SM
+gaseous
+gash/MDSG
+gasholder/S
+gasket/SM
+gaslight/MS
+gasman
+gasmen
+gasohol/M
+gasoline/M
+gasometer/S
+gasp/MDGS
+gassed/C
+gasses
+gassing/C
+gassy/RT
+gastric
+gastritis/M
+gastroenteritis/M
+gastrointestinal
+gastronome/S
+gastronomic
+gastronomical/Y
+gastronomy/M
+gastropod/SM
+gasworks/M
+gate/MGDS
+gateau
+gateaux
+gatecrash/DRSZG
+gatecrasher/M
+gatehouse/SM
+gatekeeper/MS
+gatepost/MS
+gateway/MS
+gather/SJZGMDR
+gatherer/M
+gathering/M
+gator/SM
+gauche/RPYT
+gaucheness/M
+gaucherie/M
+gaucho/SM
+gaudily
+gaudiness/M
+gaudy/RPT
+gauge/DSMG
+gaunt/RPT
+gauntlet/MS
+gauntness/M
+gauze/M
+gauziness/M
+gauzy/RPT
+gave
+gavel/SM
+gavotte/MS
+gawd
+gawk/DGS
+gawkily
+gawkiness/M
+gawky/RPT
+gawp/DGS
+gay/TSPMR
+gayness/M
+gaze/MZGDRS
+gazebo/SM
+gazelle/MS
+gazer/M
+gazette/MGDS
+gazetteer/MS
+gazillion/S
+gazpacho/M
+gazump/DGS
+gear/MDGS
+gearbox/MS
+gearing/M
+gearshift/MS
+gearwheel/SM
+gecko/SM
+geddit
+gee/DS
+geeing
+geek/MS
+geeky/RT
+geese
+geezer/MS
+geisha/M
+gel/SM
+gelatin/M
+gelatinous
+gelcap/M
+geld/DJGS
+gelding/M
+gelid
+gelignite/M
+gelled
+gelling
+gem/SM
+gemological
+gemologist/MS
+gemology/M
+gemstone/MS
+gendarme/MS
+gender/MDS
+gene/MS
+genealogical/Y
+genealogist/MS
+genealogy/SM
+genera
+general/SMY
+generalissimo/MS
+generalist/MS
+generality/SM
+generalization/MS
+generalize/GDS
+generalship/M
+generate/CAVNGSD
+generation/ACM
+generational
+generations
+generator/SM
+generic/SM
+generically
+generosity/SM
+generous/PY
+generousness/M
+genes/S
+genesis/M
+genetic/S
+genetically
+geneticist/MS
+genetics/M
+genial/FY
+geniality/FM
+geniculate
+genie/SM
+genii
+genital/FY
+genitalia/M
+genitals/M
+genitive/MS
+genitourinary
+genius/MS
+genned
+genning
+genocidal
+genocide/MS
+genome/MS
+genomics
+genre/SM
+gent/AMS
+genteel/YP
+genteelness/M
+gentian/SM
+gentile/SM
+gentility/M
+gentle/TGDRSP
+gentlefolk/MS
+gentlefolks/M
+gentleman/MY
+gentlemanly/U
+gentlemen
+gentleness/M
+gentlewoman/M
+gentlewomen
+gently
+gentrification/M
+gentrify/DSGN
+gentry/SM
+genuflect/DGS
+genuflection/MS
+genuine/PY
+genuineness/M
+genus/M
+geocache/DSG
+geocentric
+geocentrically
+geochemistry/M
+geode/SM
+geodesic/SM
+geodesy/M
+geodetic
+geoengineering
+geog
+geographer/SM
+geographic
+geographical/Y
+geography/SM
+geologic
+geological/Y
+geologist/MS
+geology/SM
+geom
+geomagnetic
+geomagnetism/M
+geometer
+geometric
+geometrical/Y
+geometry/SM
+geophysical
+geophysicist/SM
+geophysics/M
+geopolitical
+geopolitics/M
+geostationary
+geosynchronous
+geosyncline/MS
+geothermal
+geothermic
+geranium/MS
+gerbil/MS
+geriatric/S
+geriatrician/S
+geriatrics/M
+germ/MS
+germane
+germanium/M
+germicidal
+germicide/MS
+germinal/M
+germinate/GNDS
+germination/M
+gerontological
+gerontologist/MS
+gerontology/M
+gerrymander/GMDS
+gerrymandering/M
+gerund/MS
+gestalt/S
+gestapo/MS
+gestate/GNDS
+gestation/M
+gestational
+gesticulate/DSGNX
+gesticulation/M
+gestural
+gesture/MGDS
+gesundheit
+get/S
+getaway/SM
+getting
+getup/M
+gewgaw/SM
+geyser/SM
+ghastliness/M
+ghastly/TPR
+ghat/MS
+ghee
+gherkin/MS
+ghetto/SM
+ghettoize/GDS
+ghost/SMDYG
+ghostliness/M
+ghostly/RTP
+ghostwrite/ZGRS
+ghostwriter/M
+ghostwritten
+ghostwrote
+ghoul/SM
+ghoulish/YP
+ghoulishness/M
+giant/SM
+giantess/MS
+gibber/GDS
+gibberish/M
+gibbet/GMDS
+gibbon/MS
+gibbous
+gibe/MGDS
+giblet/SM
+giddily
+giddiness/M
+giddy/RTP
+gift/MDGS
+gig/SM
+gigabit/SM
+gigabyte/MS
+gigagram/S
+gigahertz/M
+gigajoule/S
+gigameter/S
+gigantic
+gigantically
+gigapascal/S
+gigapixel/MS
+gigawatt/SM
+gigged
+gigging
+giggle/DRSMZG
+giggler/M
+giggly/RT
+gigolo/SM
+gild/MDRZGS
+gilder/M
+gilding/M
+gill/MS
+gillie/S
+gillion/S
+gilt/MS
+gimbals/M
+gimcrack/SM
+gimcrackery/M
+gimlet/GSMD
+gimme/SM
+gimmick/MS
+gimmickry/M
+gimmicky
+gimp/MDGS
+gimpy
+gin/SM
+ginger/GSMDY
+gingerbread/M
+gingersnap/SM
+gingery
+gingham/M
+gingivitis/M
+ginkgo/M
+ginkgoes
+ginned
+ginning
+ginormous
+ginseng/M
+giraffe/MS
+gird/DRZGS
+girder/M
+girdle/DSMG
+girl/MS
+girlfriend/MS
+girlhood/SM
+girlish/YP
+girlishness/M
+girly
+giro/S
+girt/MDGS
+girth/M
+girths
+gist/M
+git/S
+gite/S
+give/ZGJRS
+giveaway/MS
+giveback/MS
+given/SM
+giver/M
+gizmo/SM
+gizzard/MS
+glace/S
+glaceed
+glaceing
+glacial/Y
+glaciate/XGNDS
+glaciation/M
+glacier/MS
+glad/MYSP
+gladden/GDS
+gladder
+gladdest
+glade/SM
+gladiator/SM
+gladiatorial
+gladiola/SM
+gladioli
+gladiolus/M
+gladness/M
+gladsome
+glam
+glamorization/M
+glamorize/DSG
+glamorous/Y
+glamour/GMDS
+glance/DSMG
+gland/SM
+glandes
+glandular
+glans/M
+glare/DSMG
+glaring/Y
+glasnost/M
+glass/MDSG
+glassblower/MS
+glassblowing/M
+glassful/SM
+glasshouse/S
+glassily
+glassiness/M
+glassware/M
+glassy/RTP
+glaucoma/M
+glaze/DSMG
+glazier/SM
+glazing/M
+gleam/SMDGJ
+glean/SDRZGJ
+gleaner/M
+gleanings/M
+glee/M
+gleeful/YP
+gleefulness/M
+glen/MS
+glenohumeral
+glenoid
+glib/YP
+glibber
+glibbest
+glibness/M
+glide/DRSMZG
+glider/M
+gliding/M
+glimmer/MDGJS
+glimmering/M
+glimpse/MGDS
+glint/SMDG
+glissandi
+glissando/M
+glisten/MDSG
+glister/DSG
+glitch/GMDS
+glitter/MDSG
+glitterati
+glittery
+glitz/M
+glitzy/TR
+gloaming/SM
+gloat/SMDG
+gloating/Y
+glob/MDGS
+global/Y
+globalism/M
+globalist/MS
+globalization/M
+globalize/GDS
+globe/SM
+globetrotter/MS
+globetrotting
+globular
+globule/MS
+globulin/M
+glockenspiel/SM
+gloom/M
+gloomily
+gloominess/M
+gloomy/TRP
+glop/M
+gloppy
+glorification/M
+glorify/GDSN
+glorious/IY
+glory/DSMG
+gloss/MDSG
+glossary/SM
+glossily
+glossiness/M
+glossolalia/M
+glossy/PTRSM
+glottal
+glottis/MS
+glove/DSMG
+glow/MDRZGS
+glower/GMD
+glowing/Y
+glowworm/MS
+glucagon
+glucose/M
+glue/MGDS
+glued/U
+gluey
+gluier
+gluiest
+glum/YP
+glummer
+glummest
+glumness/M
+gluon/S
+glut/MNS
+gluten/M
+glutenous
+glutinous/Y
+glutted
+glutting
+glutton/MS
+gluttonous/Y
+gluttony/M
+glycerin/M
+glycerol/M
+glycogen/M
+glycol
+glyph
+gm
+gnarl/SMDG
+gnarly/TR
+gnash/MDSG
+gnat/MS
+gnaw/DGS
+gneiss/M
+gnocchi
+gnome/SM
+gnomic
+gnomish
+gnu/SM
+go/JMRHZG
+goad/MDGS
+goal/MS
+goalie/SM
+goalkeeper/MS
+goalkeeping/M
+goalless
+goalmouth
+goalmouths
+goalpost/MS
+goalscorer/S
+goaltender/MS
+goat/MS
+goatee/SM
+goatherd/MS
+goatskin/MS
+gob/SM
+gobbed
+gobbet/SM
+gobbing
+gobble/DRSMZG
+gobbledygook/M
+gobbler/M
+goblet/SM
+goblin/SM
+gobsmacked
+gobstopper/S
+god/SM
+godawful
+godchild/M
+godchildren/M
+goddammit
+goddamn/D
+goddaughter/MS
+goddess/MS
+godfather/SM
+godforsaken
+godhead/M
+godhood/M
+godless/PY
+godlessness/M
+godlike
+godliness/UM
+godly/URTP
+godmother/SM
+godparent/SM
+godsend/SM
+godson/SM
+godspeed
+goer/M
+goes
+gofer/SM
+goggle/DSMG
+goggles/M
+going/M
+goiter/SM
+gold/MNS
+goldbrick/ZGSMDR
+goldbricker/M
+golden/TR
+goldenrod/M
+goldfield/S
+goldfinch/MS
+goldfish/MS
+goldmine/SM
+goldsmith/M
+goldsmiths
+golf/MDRZGS
+golfer/M
+golliwog/S
+golly/SM
+gonad/SM
+gonadal
+gondola/MS
+gondolier/SM
+gone/ZR
+goner/M
+gong/MDGS
+gonk/S
+gonna
+gonorrhea/M
+gonorrheal
+gonzo
+goo/M
+goober/SM
+good/MYSP
+goodbye/MS
+goodhearted
+goodish
+goodly/TR
+goodness/M
+goodnight
+goods/M
+goodwill/M
+goody/SM
+gooey
+goof/MDGS
+goofball/SM
+goofiness/M
+goofy/RPT
+google/DSMG
+googly/S
+gooier
+gooiest
+gook/MS
+goon/MS
+goop/M
+goose/DSMG
+gooseberry/SM
+goosebumps/M
+goosestep/S
+goosestepped
+goosestepping
+gopher/SM
+gore/MGDS
+gorge's
+gorge/EDSG
+gorgeous/YP
+gorgeousness/M
+gorgon/SM
+gorilla/MS
+gorily
+goriness/M
+gormandize/DRSZG
+gormandizer/M
+gormless
+gorp/MS
+gorse/M
+gory/RTP
+gosh
+goshawk/MS
+gosling/SM
+gospel/MS
+gossamer/M
+gossip/MDRZGS
+gossiper/M
+gossipy
+got
+gotcha/S
+goths
+gotta
+gotten
+gouache/S
+gouge/DRSMZG
+gouger/M
+goulash/MS
+gourd/SM
+gourde/MS
+gourmand/SM
+gourmet/SM
+gout/M
+gouty/TR
+gov
+govern/DGSBL
+governable/U
+governance/M
+governed/U
+governess/MS
+government/MS
+governmental
+governor/SM
+governorship/M
+govt
+gown/MDGS
+gr
+grab/MS
+grabbed
+grabber/MS
+grabbing
+grabby/TR
+grace/EDSMG
+graceful/EPY
+gracefulness/EM
+graceless/PY
+gracelessness/M
+gracious/UY
+graciousness/M
+grackle/MS
+grad/MRZSB
+gradate/XGNDS
+gradation/CM
+grade's
+grade/CADSG
+graded/U
+grader/M
+gradient/MS
+gradual/PY
+gradualism/M
+gradualness/M
+graduate/XMGNDS
+graduation/M
+graffiti
+graffito/M
+graft/SMDRZG
+grafter/M
+graham/S
+grail
+grain/ISMD
+graininess/M
+grainy/PTR
+gram/KMS
+grammar/MS
+grammarian/SM
+grammatical/UY
+gramophone/MS
+grampus/MS
+gran/S
+granary/SM
+grand/SMRYPT
+grandam/MS
+grandaunt/MS
+grandchild/M
+grandchildren/M
+granddad/SM
+granddaddy/SM
+granddaughter/SM
+grandee/MS
+grandeur/M
+grandfather/GMDYS
+grandiloquence/M
+grandiloquent
+grandiose/Y
+grandiosity/M
+grandma/MS
+grandmother/MYS
+grandnephew/MS
+grandness/M
+grandniece/MS
+grandpa/MS
+grandparent/MS
+grandson/MS
+grandstand/SGMD
+granduncle/SM
+grange/SM
+granite/M
+granitic
+granny/SM
+granola/M
+grant/SMDRZG
+grantee/MS
+granter/M
+grantsmanship/M
+granular
+granularity/M
+granulate/GNDS
+granulation/M
+granule/MS
+grape/SM
+grapefruit/MS
+grapeshot/M
+grapevine/SM
+graph/MDG
+graphic/MS
+graphical/Y
+graphite/M
+graphologist/MS
+graphology/M
+graphs
+grapnel/MS
+grapple/MGDS
+grasp/SMDBG
+grass/MDSG
+grasshopper/MS
+grassland/MS
+grassroots
+grassy/TR
+grate/DRSMZGJ
+grateful/UYP
+gratefulness/UM
+grater/M
+gratification/M
+gratify/GNXDS
+gratifying/Y
+gratin/S
+grating/MY
+gratis
+gratitude/IM
+gratuitous/YP
+gratuitousness/M
+gratuity/SM
+gravamen/MS
+grave/DRSMYTGP
+gravedigger/SM
+gravel/SGMDY
+graven
+graveness/M
+graveside/MS
+gravestone/SM
+graveyard/MS
+gravid
+gravimeter/MS
+gravitas
+gravitate/GNDS
+gravitation/M
+gravitational
+gravity/M
+gravy/SM
+gray/MDRTGSP
+graybeard/SM
+grayish
+grayness/M
+graze/DRSMZG
+grazer/M
+grease/DRSMZG
+greasepaint/M
+greasily
+greasiness/M
+greasy/PTR
+great/SMRYPT
+greatcoat/SM
+greathearted
+greatness/M
+grebe/SM
+greed/M
+greedily
+greediness/M
+greedy/PTR
+green/GPSMDRYT
+greenback/MS
+greenbelt/MS
+greenery/M
+greenfield
+greenfly/S
+greengage/MS
+greengrocer/SM
+greenhorn/SM
+greenhouse/SM
+greenish
+greenmail/M
+greenness/M
+greenroom/SM
+greenstone
+greensward/M
+greenwood/M
+greet/ZGJSDR
+greeter/M
+greeting/M
+gregarious/PY
+gregariousness/M
+gremlin/SM
+grenade/SM
+grenadier/MS
+grenadine/M
+grep/S
+grepped
+grepping
+grew/A
+greyhound/SM
+gribble/S
+grid/MS
+griddle/SM
+griddlecake/SM
+gridiron/SM
+gridlock/SMD
+grief/SM
+grievance/MS
+grieve/ZGDRS
+griever/M
+grievous/PY
+grievousness/M
+griffin/SM
+griffon/SM
+grill/SGMDJ
+grille/MS
+grim/DYPG
+grimace/DSMG
+grime/SM
+griminess/M
+grimmer
+grimmest
+grimness/M
+grimy/TRP
+grin/MS
+grind/SZGMRJ
+grinder/M
+grindstone/MS
+gringo/MS
+grinned
+grinning
+grip/MDRSZG
+gripe/SM
+griper/M
+grippe/MZGDR
+gripper/M
+grisliness/M
+grisly/RTP
+grist/MY
+gristle/M
+gristmill/MS
+grit/MS
+grits/M
+gritted
+gritter/SM
+grittiness/M
+gritting
+gritty/RTP
+grizzle/DSG
+grizzly/TRSM
+groan/SGMD
+groat/SM
+grocer/MS
+grocery/SM
+grog/M
+groggily
+grogginess/M
+groggy/PRT
+groin/SM
+grok/S
+grokked
+grokking
+grommet/SM
+groom/SZGMDR
+groomer/M
+grooming/M
+groomsman/M
+groomsmen
+groove/MGDS
+groovy/RT
+grope/DRSMZG
+groper/M
+grosbeak/MS
+grosgrain/M
+gross/PTGMDRSY
+grossness/M
+grotesque/SPMY
+grotesqueness/M
+grotto/M
+grottoes
+grotty/TR
+grouch/GMDS
+grouchily
+grouchiness/M
+grouchy/RTP
+ground/ZGMDRJS
+groundbreaking/MS
+groundcloth
+groundcloths
+grounder/M
+groundhog/MS
+grounding/M
+groundless/Y
+groundnut/MS
+groundsheet/S
+groundskeeper/S
+groundsman
+groundsmen
+groundswell/SM
+groundwater/M
+groundwork/M
+group/JSZGMDR
+grouper/M
+groupie/MS
+grouping/M
+groupware/M
+grouse/MZGDRS
+grouser/M
+grout/SGMD
+grove/SM
+grovel/ZGDRS
+groveler/M
+grovelled
+grovelling
+grow/AHSG
+grower/MS
+growing/I
+growl/SZGMDR
+growler/M
+grown/AI
+grownup/MS
+growth/AM
+growths
+grub/MS
+grubbed
+grubber/MS
+grubbily
+grubbiness/M
+grubbing
+grubby/TRP
+grubstake/M
+grudge/MGDS
+grudging/Y
+grue/S
+gruel/GJM
+grueling/Y
+gruesome/RYTP
+gruesomeness/M
+gruff/TPRY
+gruffness/M
+grumble/DRSMZGJ
+grumbler/M
+grump/SM
+grumpily
+grumpiness/M
+grumpy/PRT
+grunge/MS
+grungy/RT
+grunion/SM
+grunt/SGMD
+gt
+guacamole/M
+guanine/M
+guano/M
+guarani/MS
+guarantee/MDS
+guaranteeing
+guarantor/MS
+guaranty/GDSM
+guard/SZGMDR
+guarded/Y
+guarder/M
+guardhouse/SM
+guardian/SM
+guardianship/M
+guardrail/SM
+guardroom/SM
+guardsman/M
+guardsmen
+guava/SM
+gubernatorial
+guerrilla/SM
+guess/ZGBMDRS
+guesser/M
+guesstimate/DSMG
+guesswork/M
+guest/SGMD
+guestbook/SM
+guesthouse/S
+guestroom/S
+guff/M
+guffaw/MDGS
+guidance/M
+guide/DRSMZG
+guidebook/SM
+guided/U
+guideline/SM
+guidepost/SM
+guider/M
+guild/SZMR
+guilder/M
+guildhall/MS
+guile/M
+guileful
+guileless/YP
+guilelessness/M
+guillemot/S
+guillotine/DSMG
+guilt/M
+guiltily
+guiltiness/M
+guiltless
+guilty/PRT
+guinea/MS
+guise/ESM
+guitar/MS
+guitarist/SM
+gulag/SM
+gulch/MS
+gulden/MS
+gulf/MS
+gull/MDSG
+gullet/MS
+gullibility/M
+gullible
+gully/SM
+gulp/MDRSZG
+gulper/M
+gum/SM
+gumball/S
+gumbo/SM
+gumboil/SM
+gumboot/S
+gumdrop/SM
+gummed
+gumming
+gummy/TR
+gumption/M
+gumshoe/MDS
+gumshoeing
+gun/SM
+gunboat/SM
+gunfight/MRZS
+gunfighter/M
+gunfire/M
+gunge
+gungy
+gunk/M
+gunky
+gunman/M
+gunmen
+gunmetal/M
+gunned
+gunnel/MS
+gunner/MS
+gunnery/M
+gunning
+gunny/M
+gunnysack/MS
+gunpoint/M
+gunpowder/M
+gunrunner/MS
+gunrunning/M
+gunship/MS
+gunshot/MS
+gunslinger/SM
+gunsmith/M
+gunsmiths
+gunwale/MS
+guppy/SM
+gurgle/MGDS
+gurney/MS
+guru/MS
+gush/MDRSZG
+gusher/M
+gushing/Y
+gushy/TR
+gusset/MSDG
+gussy/DSG
+gust/EMDSG
+gustatory
+gustily
+gusto/M
+gusty/RT
+gut/SM
+gutless/P
+gutlessness/M
+gutsy/RT
+gutted
+gutter/SMDG
+guttersnipe/MS
+gutting
+guttural/MS
+gutty/RT
+guv/S
+guvnor/S
+guy/SGMD
+guzzle/DRSZG
+guzzler/M
+gym/SM
+gymkhana/MS
+gymnasium/MS
+gymnast/MS
+gymnastic/S
+gymnastically
+gymnastics/M
+gymnosperm/SM
+gymslip/S
+gynecologic
+gynecological
+gynecologist/SM
+gynecology/M
+gyp/SM
+gypped
+gypper/SM
+gypping
+gypster/SM
+gypsum/M
+gypsy/SM
+gyrate/DSGNX
+gyration/M
+gyrator/SM
+gyrfalcon/MS
+gyro/MS
+gyroscope/MS
+gyroscopic
+gyve/MGDS
+h'm
+h/NRSXZGVJ
+ha/SH
+haberdasher/SM
+haberdashery/SM
+habiliment/SM
+habit's
+habit/ISB
+habitability/M
+habitat/SM
+habitation/MS
+habitual/YP
+habitualness/M
+habituate/GNDS
+habituation/M
+habitue/SM
+hacienda/SM
+hack/MDRZGS
+hacker/M
+hacking/M
+hackish
+hackle/MS
+hackney/SMDG
+hacksaw/SM
+hacktivist/MS
+hackwork/M
+had
+haddock/SM
+hadith
+hadn't
+hadst
+hafnium/M
+haft/MS
+hag/SM
+haggard/YP
+haggardness/M
+haggis/MS
+haggish
+haggle/MZGDRS
+haggler/M
+hagiographer/SM
+hagiography/SM
+hahnium/M
+haiku/M
+hail/MDGS
+hailstone/MS
+hailstorm/MS
+hair/MDS
+hairball/MS
+hairband/S
+hairbreadth/M
+hairbreadths
+hairbrush/MS
+haircloth/M
+haircut/SM
+hairdo/MS
+hairdresser/SM
+hairdressing/M
+hairdryer/MS
+hairgrip/S
+hairiness/M
+hairless
+hairlike
+hairline/SM
+hairnet/SM
+hairpiece/MS
+hairpin/SM
+hairsbreadth/M
+hairsbreadths
+hairsplitter/SM
+hairsplitting/M
+hairspray/S
+hairspring/MS
+hairstyle/MS
+hairstylist/SM
+hairy/TRP
+haj
+hajj/M
+hajjes
+hajji/SM
+hake/MS
+halal/M
+halberd/SM
+halcyon
+hale/ITGDRS
+half/M
+halfback/SM
+halfhearted/PY
+halfheartedness/M
+halfpence
+halfpenny/SM
+halftime/MS
+halftone/MS
+halfway
+halfwit/SM
+halibut/SM
+halite/M
+halitosis/M
+hall/MS
+hallelujah/M
+hallelujahs
+hallmark/GMDS
+halloo/MSG
+hallow/DSG
+hallowed/U
+hallucinate/GNXDS
+hallucination/M
+hallucinatory
+hallucinogen/SM
+hallucinogenic/SM
+hallway/SM
+halo/MDGS
+halogen/SM
+halon
+halt/MDRZGS
+halter/GMD
+halterneck/S
+halting/Y
+halve/DSG
+halyard/MS
+ham/SM
+hamburg/SZMR
+hamburger/M
+hamlet/MS
+hammed
+hammer/MDRSJZG
+hammerer/M
+hammerhead/SM
+hammerlock/SM
+hammertoe/MS
+hamming
+hammock/SM
+hammy/TR
+hamper/GMDS
+hampered/U
+hamster/MS
+hamstring/GSM
+hamstrung
+hand's
+hand/UDGS
+handbag/SM
+handball/MS
+handbarrow/SM
+handbill/MS
+handbook/MS
+handbrake/S
+handcar/SM
+handcart/MS
+handclasp/MS
+handcraft/SMDG
+handcuff/MDGS
+handed/P
+handful/SM
+handgun/SM
+handheld/MS
+handhold/MS
+handicap/MS
+handicapped
+handicapper/MS
+handicapping
+handicraft/MS
+handily
+handiness/M
+handiwork/M
+handkerchief/MS
+handle/MZGDRS
+handlebar/MS
+handler/M
+handmade
+handmaid/XMNS
+handmaiden/M
+handout/SM
+handover/S
+handpick/GDS
+handrail/MS
+handsaw/SM
+handset/SM
+handshake/JMGS
+handsome/PYTR
+handsomeness/M
+handspring/MS
+handstand/SM
+handwork/M
+handwoven
+handwriting/M
+handwritten
+handy/UTR
+handyman/M
+handymen
+hang/MDRJZGS
+hangar/MS
+hangdog
+hanger/M
+hanging/M
+hangman/M
+hangmen
+hangnail/MS
+hangout/SM
+hangover/MS
+hangup/MS
+hank/MRZS
+hanker/GJD
+hankering/M
+hankie/MS
+hansom/MS
+hap/MY
+haphazard/YP
+haphazardness/M
+hapless/YP
+haplessness/M
+haploid/MS
+happen/SDGJ
+happening/M
+happenstance/SM
+happily/U
+happiness/UM
+happy/URTP
+haptic
+harangue/MGDS
+harass/LZGDRS
+harasser/M
+harassment/M
+harbinger/SM
+harbor/GMDS
+harbormaster/S
+hard/NRYXTP
+hardback/MS
+hardball/M
+hardboard/M
+hardbound
+hardcore
+hardcover/SM
+harden/ZGDR
+hardened/U
+hardener/M
+hardhat/MS
+hardheaded/PY
+hardheadedness/M
+hardhearted/PY
+hardheartedness/M
+hardihood/M
+hardily
+hardiness/M
+hardliner/MS
+hardness/M
+hardscrabble
+hardship/SM
+hardstand/SM
+hardtack/M
+hardtop/SM
+hardware/M
+hardwired
+hardwood/SM
+hardworking
+hardy/PTR
+hare/MGDS
+harebell/MS
+harebrained
+harelip/SM
+harelipped
+harem/SM
+haricot/S
+hark/DGS
+harlequin/SM
+harlot/SM
+harlotry/M
+harm/MDGS
+harmed/U
+harmful/YP
+harmfulness/M
+harmless/PY
+harmlessness/M
+harmonic/SM
+harmonica/MS
+harmonically
+harmonies
+harmonious/PY
+harmoniousness/M
+harmonium/MS
+harmonization/M
+harmonize/ZGDRS
+harmonizer/M
+harmony/EM
+harness's
+harness/UDSG
+harp/MDGS
+harpist/SM
+harpoon/ZGSMDR
+harpooner/M
+harpsichord/MS
+harpsichordist/SM
+harpy/SM
+harridan/MS
+harrier/M
+harrow/SMDG
+harrumph/GD
+harrumphs
+harry/DRSZG
+harsh/RYTP
+harshness/M
+hart/MS
+harvest/SMDRZG
+harvested/U
+harvester/M
+hash/AMDSG
+hashish/M
+hashtag/SM
+hasn't
+hasp/MS
+hassle/DSMG
+hassock/SM
+hast/DNXG
+haste/SM
+hasten/DG
+hastily
+hastiness/M
+hasty/RTP
+hat/ZGSMDR
+hatband/S
+hatbox/MS
+hatch/MDSG
+hatchback/MS
+hatcheck/SM
+hatched/U
+hatchery/SM
+hatchet/SM
+hatching/M
+hatchway/SM
+hate/MS
+hateful/PY
+hatefulness/M
+hatemonger/MS
+hater/M
+hatpin/S
+hatred/SM
+hatstand/S
+hatted
+hatter/SM
+hatting
+hauberk/SM
+haughtily
+haughtiness/M
+haughty/PRT
+haul/MDRZGS
+haulage/M
+hauler/M
+haulier/S
+haunch/MS
+haunt/SMDRZG
+haunter/M
+haunting/Y
+hauteur/M
+have/MGS
+haven't
+haven/SM
+haversack/SM
+havoc/M
+haw/GSMD
+hawk/MDRZGS
+hawker/M
+hawkish/P
+hawkishness/M
+hawser/SM
+hawthorn/MS
+hay/GSMD
+haycock/SM
+hayloft/SM
+haymaker/S
+haymaking
+haymow/SM
+hayrick/MS
+hayride/MS
+hayseed/MS
+haystack/SM
+haywire
+hazard/SMDG
+hazardous/Y
+haze/MZGJDRS
+hazel/SM
+hazelnut/MS
+hazer/M
+hazily
+haziness/M
+hazing/M
+hazmat
+hazy/RTP
+hdqrs
+he'd
+he'll
+he/M
+head/MDRZGJS
+headache/MS
+headband/MS
+headbanger/S
+headbanging
+headboard/SM
+headbutt/DSG
+headcase/S
+headcheese
+headcount/S
+headdress/MS
+header/M
+headfirst
+headgear/M
+headhunt/DRSZG
+headhunter/M
+headhunting/M
+headily
+headiness/M
+heading/M
+headlamp/MS
+headland/MS
+headless
+headlight/MS
+headline/MZGDRS
+headliner/M
+headlock/MS
+headlong
+headman/M
+headmaster/SM
+headmen
+headmistress/MS
+headphone/MS
+headpiece/MS
+headpin/SM
+headquarter/SDG
+headquarters/M
+headrest/MS
+headroom/M
+headscarf
+headscarves
+headset/SM
+headship/SM
+headshrinker/SM
+headsman/M
+headsmen
+headstall/SM
+headstand/SM
+headstone/SM
+headstrong
+headteacher/S
+headwaiter/SM
+headwaters/M
+headway/M
+headwind/SM
+headword/SM
+heady/RTP
+heal/DRHZGS
+healed/U
+healer/M
+health/M
+healthcare
+healthful/PY
+healthfulness/M
+healthily/U
+healthiness/UM
+healthy/UTRP
+heap/MDGS
+hear/AHGJS
+heard/AU
+hearer/SM
+hearing/AM
+hearken/SGD
+hearsay/M
+hearse's
+hearse/AS
+heart/SM
+heartache/MS
+heartbeat/MS
+heartbreak/SMG
+heartbroken
+heartburn/M
+hearten/ESGD
+heartfelt
+hearth/M
+hearthrug/S
+hearths
+hearthstone/SM
+heartily
+heartiness/M
+heartland/MS
+heartless/PY
+heartlessness/M
+heartrending/Y
+heartsick/P
+heartsickness/M
+heartstrings/M
+heartthrob/MS
+heartwarming
+heartwood/M
+hearty/RSMPT
+heat's
+heat/ADGS
+heated/U
+heatedly
+heater/SM
+heath/MNRX
+heathen/M
+heathendom/M
+heathenish
+heathenism/M
+heather/M
+heaths
+heating/M
+heatproof
+heatstroke/M
+heatwave/S
+heave/DRSMZG
+heaven/SMY
+heavenly/TR
+heavens/M
+heavenward/S
+heaver/M
+heavily
+heaviness/M
+heavy/RSMTP
+heavyhearted
+heavyset
+heavyweight/MS
+heck/M
+heckle/DRSMZG
+heckler/M
+heckling/M
+hectare/SM
+hectic
+hectically
+hectogram/SM
+hectometer/MS
+hector/SMDG
+hedge/DRSMZG
+hedgehog/MS
+hedgehop/S
+hedgehopped
+hedgehopping
+hedger/M
+hedgerow/SM
+hedonism/M
+hedonist/MS
+hedonistic
+heed/MDGS
+heeded/U
+heedful/Y
+heedless/PY
+heedlessness/M
+heehaw/SMDG
+heel/MDGS
+heelless
+heft/MDGS
+heftily
+heftiness/M
+hefty/PRT
+hegemonic
+hegemony/M
+hegira/SM
+heifer/SM
+height/XSMN
+heighten/DG
+heinous/YP
+heinousness/M
+heir/MS
+heiress/MS
+heirloom/SM
+heist/SMDG
+held
+helical
+helices
+helicopter/SGMD
+heliocentric
+heliotrope/SM
+helipad/S
+heliport/MS
+helium/M
+helix/M
+hell/M
+hellbent
+hellcat/MS
+hellebore/M
+hellfire
+hellhole/MS
+hellion/MS
+hellish/YP
+hellishness/M
+hello/SM
+helluva
+helm/MS
+helmet/SMD
+helmsman/M
+helmsmen
+helot/SM
+help/MDRZGSJ
+helper/M
+helpful/UY
+helpfulness/M
+helping/M
+helpless/PY
+helplessness/M
+helpline/SM
+helpmate/SM
+helve/SM
+hem/SM
+hematite/M
+hematologic
+hematological
+hematologist/MS
+hematology/M
+heme/M
+hemiplegia
+hemisphere/SM
+hemispheric
+hemispherical
+hemline/SM
+hemlock/SM
+hemmed
+hemmer/SM
+hemming
+hemoglobin/M
+hemophilia/M
+hemophiliac/MS
+hemorrhage/MGDS
+hemorrhagic
+hemorrhoid/MS
+hemostat/MS
+hemp/MN
+hemstitch/MDSG
+hen/M
+hence
+henceforth
+henceforward
+henchman/M
+henchmen
+henna/SMDG
+henpeck/GSD
+hep
+heparin/M
+hepatic
+hepatitis/M
+hepatocyte/S
+hepper
+heppest
+heptagon/MS
+heptagonal
+heptathlon/SM
+herald/SMDG
+heralded/U
+heraldic
+heraldry/M
+herb/MS
+herbaceous
+herbage/M
+herbal/S
+herbalist/MS
+herbicidal
+herbicide/MS
+herbivore/SM
+herbivorous
+herculean
+herd/MDRZGS
+herder/M
+herdsman/M
+herdsmen
+here/M
+hereabout/S
+hereafter/SM
+hereby
+hereditary
+heredity/M
+herein
+hereinafter
+hereof
+hereon
+heresy/SM
+heretic/SM
+heretical
+hereto
+heretofore
+hereunder
+hereunto
+hereupon
+herewith
+heritable/I
+heritage/MS
+hermaphrodite/SM
+hermaphroditic
+hermetic
+hermetical/Y
+hermit/SM
+hermitage/MS
+hermitian
+hernia/SM
+hernial
+herniate/GNDS
+herniation/M
+hero/M
+heroes
+heroic/S
+heroically
+heroics/M
+heroin/SM
+heroine/SM
+heroism/M
+heron/SM
+herpes/M
+herpetologist/SM
+herpetology/M
+herring/MS
+herringbone/M
+herself
+hertz/M
+hesitance/M
+hesitancy/M
+hesitant/Y
+hesitate/DSGNX
+hesitating/UY
+hesitation/M
+hessian
+hetero/SM
+heterodox
+heterodoxy/M
+heterogeneity/M
+heterogeneous/Y
+heterosexual/MYS
+heterosexuality/M
+heuristic/MS
+heuristically
+heuristics/M
+hew/ZGSDR
+hewer/M
+hex/GMDS
+hexadecimal/S
+hexagon/MS
+hexagonal
+hexagram/SM
+hexameter/SM
+hey
+heyday/SM
+hf
+hgt
+hgwy
+hi/SD
+hiatus/MS
+hibachi/MS
+hibernate/GNDS
+hibernation/M
+hibernator/MS
+hibiscus/MS
+hiccough/DG
+hiccoughs
+hiccup/GSMD
+hick/MS
+hickey/SM
+hickory/SM
+hid
+hidden
+hide/MZGJDRS
+hideaway/SM
+hidebound
+hideous/YP
+hideousness/M
+hideout/MS
+hider/M
+hiding/M
+hie/S
+hieing
+hierarchic
+hierarchical/Y
+hierarchy/SM
+hieroglyph/M
+hieroglyphic/MS
+hieroglyphs
+high/MRYZTP
+highball/SM
+highborn
+highboy/MS
+highbrow/SM
+highchair/MS
+highfalutin
+highhanded/PY
+highhandedness/M
+highland/MRZS
+highlander/M
+highlight/SMDRZG
+highlighter/M
+highness/M
+highroad/MS
+highs
+hightail/DSG
+highway/MS
+highwayman/M
+highwaymen
+hijab/SM
+hijack/SJZGMDR
+hijacker/M
+hijacking/M
+hike/MZGDRS
+hiker/M
+hiking/M
+hilarious/PY
+hilariousness/M
+hilarity/M
+hill/MS
+hillbilly/SM
+hilliness/M
+hillock/MS
+hillside/SM
+hilltop/MS
+hilly/PRT
+hilt/MS
+him/S
+himself
+hind/MRZS
+hinder/GD
+hindered/U
+hindmost
+hindquarter/MS
+hindrance/SM
+hindsight/M
+hinge's
+hinge/UDSG
+hint/MDRZGS
+hinter/M
+hinterland/SM
+hip/SPM
+hipbath
+hipbaths
+hipbone/MS
+hiphuggers
+hipness/M
+hipped
+hipper
+hippest
+hippie/SM
+hipping
+hippo/SM
+hippocampus
+hippodrome/SM
+hippopotamus/MS
+hippy
+hipster/MS
+hiragana
+hire's
+hire/AGDS
+hireling/MS
+hirsute/P
+hirsuteness/M
+hiss/MDSG
+hist
+histamine/MS
+histogram/MS
+histologist/SM
+histology/M
+histopathology
+historian/MS
+historic
+historical/Y
+historicity/M
+historiographer/MS
+historiography/M
+history/SM
+histrionic/S
+histrionically
+histrionics/M
+hit/SM
+hitch's
+hitch/UDSG
+hitcher/MS
+hitchhike/DRSMZG
+hitchhiker/M
+hither
+hitherto
+hitter/SM
+hitting
+hive/MGDS
+hivemind/SM
+hiya
+hmm
+ho/SMDRYZ
+hoagie/MS
+hoard/SZGMDRJ
+hoarder/M
+hoarding/M
+hoarfrost/M
+hoariness/M
+hoarse/YTRP
+hoarseness/M
+hoary/TRP
+hoax/MDRSZG
+hoaxer/M
+hob/SM
+hobbit/S
+hobble/MZGDRS
+hobbler/M
+hobby/SM
+hobbyhorse/MS
+hobbyist/SM
+hobgoblin/MS
+hobnail/SGMD
+hobnob/S
+hobnobbed
+hobnobbing
+hobo/MS
+hoc
+hock/MDSG
+hockey/M
+hockshop/MS
+hod/SM
+hodgepodge/SM
+hoe/SM
+hoecake/SM
+hoedown/SM
+hoeing
+hoer/M
+hog/SM
+hogan/SM
+hogback/SM
+hogged
+hogging
+hoggish/Y
+hogshead/SM
+hogtie/DS
+hogtying
+hogwash/M
+hoick/SGD
+hoist/SGMD
+hoke/GDS
+hokey
+hokier
+hokiest
+hokum/M
+hold/MRJSZG
+holdall/S
+holder/M
+holding/M
+holdout/SM
+holdover/SM
+holdup/MS
+hole/MGDS
+holey
+holiday/SMDG
+holidaymaker/S
+holiness/UM
+holism
+holistic
+holistically
+holler/MDGS
+hollow/MDRYPSTG
+hollowness/M
+holly/SM
+hollyhock/MS
+holmium/M
+holocaust/SM
+hologram/MS
+holograph/M
+holographic
+holographs
+holography/M
+hols
+holster/SMDG
+holy/URPT
+homage/MS
+hombre/MS
+homburg/SM
+home/MYZGDRS
+homebody/SM
+homeboy/SM
+homecoming/SM
+homegrown
+homeland/MS
+homeless/MP
+homelessness/M
+homelike
+homeliness/M
+homely/PRT
+homemade
+homemaker/SM
+homemaking/M
+homeopath/M
+homeopathic
+homeopaths
+homeopathy/M
+homeostasis/M
+homeostatic
+homeowner/MS
+homepage/MS
+homer/GMD
+homeroom/MS
+homeschooling/M
+homesick/P
+homesickness/M
+homespun/M
+homestead/SMDRZG
+homesteader/M
+homestretch/MS
+hometown/MS
+homeward/S
+homework/MRZG
+homewrecker/SM
+homey/SMP
+homeyness/M
+homicidal
+homicide/MS
+homier
+homiest
+homiletic
+homily/SM
+hominid/SM
+hominoid/S
+hominy/M
+homo/MS
+homoerotic
+homogeneity/M
+homogeneous/Y
+homogenization/M
+homogenize/DSG
+homograph/M
+homographs
+homologous
+homology
+homonym/SM
+homophobia/M
+homophobic
+homophone/MS
+homosexual/SM
+homosexuality/M
+hon/SZTGMDR
+honcho/MS
+hone/MS
+honer/M
+honest/EYT
+honester
+honesty/EM
+honey/SGMD
+honeybee/SM
+honeycomb/MDSG
+honeydew/SM
+honeylocust/M
+honeymoon/ZGMDRS
+honeymooner/M
+honeypot/S
+honeysuckle/SM
+honk/MDRSZG
+honker/M
+honky/SM
+honor/ESGMDB
+honorableness/M
+honorably/E
+honorarily
+honorarium/MS
+honorary
+honoree/SM
+honorer/SM
+honorific/MS
+hooch/M
+hood/MDSG
+hoodie/MS
+hoodlum/SM
+hoodoo/MDSG
+hoodwink/DGS
+hooey/M
+hoof/MDRSZG
+hook's
+hook/UDSG
+hookah/M
+hookahs
+hooker/MS
+hookup/MS
+hookworm/MS
+hooky/M
+hooligan/MS
+hooliganism/M
+hoop/MDSG
+hoopla/M
+hooray
+hoosegow/SM
+hoot/MDRSZG
+hootenanny/SM
+hooter/M
+hoover/DSG
+hooves
+hop/SGMD
+hope/MS
+hopeful/PSMY
+hopefulness/M
+hopeless/YP
+hopelessness/M
+hopped
+hopper/MS
+hopping
+hopscotch/MDSG
+hora/MS
+horde/DSMG
+horehound/SM
+horizon/SM
+horizontal/SMY
+hormonal
+hormone/SM
+horn/MDS
+hornbeam
+hornblende/M
+hornet/MS
+hornless
+hornlike
+hornpipe/MS
+horny/TR
+horologic
+horological
+horologist/MS
+horology/M
+horoscope/SM
+horrendous/Y
+horrible/P
+horribleness/M
+horribly
+horrid/Y
+horrific
+horrifically
+horrify/DSG
+horrifying/Y
+horror/MS
+horse's
+horse/UDSG
+horseback/M
+horsebox/S
+horseflesh/M
+horsefly/SM
+horsehair/M
+horsehide/M
+horselaugh/M
+horselaughs
+horseless
+horseman/M
+horsemanship/M
+horsemen
+horseplay/M
+horsepower/M
+horseradish/MS
+horseshit/!
+horseshoe/DSM
+horseshoeing
+horsetail/SM
+horsetrading
+horsewhip/SM
+horsewhipped
+horsewhipping
+horsewoman/M
+horsewomen
+horsey
+horsier
+horsiest
+hortatory
+horticultural
+horticulturalist/S
+horticulture/M
+horticulturist/MS
+hosanna/SM
+hose/MGDS
+hosepipe/S
+hosier/MS
+hosiery/M
+hosp
+hospholipase
+hospice/MS
+hospitable/I
+hospitably/I
+hospital/SM
+hospitality/M
+hospitalization/SM
+hospitalize/DSG
+host/MDSG
+hostage/MS
+hostel/ZGMDRS
+hosteler/M
+hostelry/SM
+hostess/MDSG
+hostile/MYS
+hostilities/M
+hostility/SM
+hostler/MS
+hot/SYP
+hotbed/MS
+hotblooded
+hotbox/MS
+hotcake/SM
+hotel/SM
+hotelier/MS
+hotfoot/MDGS
+hothead/DSM
+hotheaded/YP
+hotheadedness/M
+hothouse/SM
+hotkey/S
+hotlink/S
+hotness/M
+hotplate/SM
+hotpot/S
+hots/M
+hotshot/MS
+hotted
+hotter
+hottest
+hottie/S
+hotting
+hound/SGMD
+hour/MYS
+hourglass/MS
+houri/SM
+house's
+house/ADSG
+houseboat/SM
+housebound
+houseboy/SM
+housebreak/RSZG
+housebreaker/M
+housebreaking/M
+housebroke
+housebroken
+houseclean/DSG
+housecleaning/M
+housecoat/SM
+housefly/SM
+houseful/SM
+household/SMRZ
+householder/M
+househusband/SM
+housekeeper/MS
+housekeeping/M
+houselights/M
+housemaid/SM
+houseman/M
+housemaster/S
+housemate/S
+housemen
+housemistress/S
+housemother/SM
+houseparent/SM
+houseplant/MS
+houseproud
+houseroom
+housetop/SM
+housewares/M
+housewarming/SM
+housewife/MY
+housewives
+housework/M
+housing/MS
+hove
+hovel/SM
+hover/SGD
+hoverboard/MS
+hovercraft/MS
+how'd
+how're
+how/SM
+howbeit
+howdah/M
+howdahs
+howdy
+however
+howitzer/SM
+howl/MDRSZG
+howler/M
+howsoever
+hoyden/MS
+hoydenish
+hp
+hr/S
+ht
+huarache/SM
+hub/SM
+hubbub/SM
+hubby/SM
+hubcap/SM
+hubris/M
+huckleberry/SM
+huckster/SGMD
+hucksterism/M
+huddle/DSMG
+hue/DSM
+huff/MDSG
+huffily
+huffiness/M
+huffy/PRT
+hug/STMR
+huge/YP
+hugeness/M
+hugged
+hugging
+huh
+hula/MS
+hulk/MSG
+hull/MDRSZG
+hullabaloo/SM
+huller/M
+hum/SM
+human/SMRYTP
+humane/PY
+humaneness/M
+humanism/M
+humanist/SM
+humanistic
+humanitarian/MS
+humanitarianism/M
+humanities/M
+humanity/ISM
+humanization/CM
+humanize/CDSG
+humanizer/SM
+humankind/M
+humanness/M
+humanoid/SM
+humble/DRSZTGJP
+humbleness/M
+humbler/M
+humbly
+humbug/SM
+humbugged
+humbugging
+humdinger/MS
+humdrum/M
+humeral
+humeri
+humerus/M
+humid/Y
+humidification/M
+humidifier/CM
+humidify/CZGDRS
+humidity/M
+humidor/SM
+humiliate/DSGNX
+humiliating/Y
+humiliation/M
+humility/M
+hummed
+hummer/SM
+humming
+hummingbird/SM
+hummock/SM
+hummocky
+hummus/M
+humongous
+humor/SMDG
+humoresque
+humorist/MS
+humorless/YP
+humorlessness/M
+humorous/PY
+humorousness/M
+hump/MDSG
+humpback/MDS
+humph/DG
+humphs
+humus/M
+hunch/MDSG
+hunchback/SMD
+hundred/SMH
+hundredfold
+hundredth/M
+hundredths
+hundredweight/SM
+hung
+hunger/SMDG
+hungover
+hungrily
+hungriness/M
+hungry/PRT
+hunk/MRSZ
+hunker/DG
+hunky/RT
+hunt/MDRSZG
+hunter/M
+hunting/M
+huntress/MS
+huntsman/M
+huntsmen
+hurdle/DRSMZG
+hurdler/M
+hurdling/M
+hurl/MDRSZG
+hurler/M
+hurling/M
+hurrah/GMD
+hurrahs
+hurricane/MS
+hurried/UY
+hurry/DSMG
+hurt/MSG
+hurtful/YP
+hurtfulness/M
+hurtle/DSG
+husband/GMDS
+husbandman/M
+husbandmen
+husbandry/M
+hush/MDSG
+husk/MDRSZG
+husker/M
+huskily
+huskiness/M
+husky/PRSMT
+hussar/SM
+hussy/SM
+hustings/M
+hustle/DRSMZG
+hustler/M
+hut/SM
+hutch/MS
+huzzah/MDG
+huzzahs
+hwy
+hyacinth/M
+hyacinths
+hybrid/SM
+hybridism/M
+hybridization/M
+hybridize/DSG
+hydra/SM
+hydrangea/SM
+hydrant/MS
+hydrate's
+hydrate/CGNDS
+hydration/CM
+hydraulic/S
+hydraulically
+hydraulics/M
+hydro/M
+hydrocarbon/MS
+hydrocephalus/M
+hydrochloride
+hydrocortisone
+hydrodynamic/S
+hydrodynamics/M
+hydroelectric
+hydroelectrically
+hydroelectricity/M
+hydrofoil/MS
+hydrogen/M
+hydrogenate/CGDS
+hydrogenation/M
+hydrogenous
+hydrologist/MS
+hydrology/M
+hydrolyses
+hydrolysis/M
+hydrolyze/DSG
+hydrometer/SM
+hydrometry/M
+hydrophilic
+hydrophobia/M
+hydrophobic
+hydrophone/SM
+hydroplane/GDSM
+hydroponic/S
+hydroponically
+hydroponics/M
+hydrosphere/M
+hydrotherapy/M
+hydrothermal
+hydrous
+hydroxide/SM
+hyena/SM
+hygiene/M
+hygienic/U
+hygienically
+hygienist/MS
+hygrometer/SM
+hying
+hymen/SM
+hymeneal
+hymn/MDSG
+hymnal/MS
+hymnbook/SM
+hype/MGDRS
+hyperactive
+hyperactivity/M
+hyperbola/SM
+hyperbole/M
+hyperbolic
+hypercritical/Y
+hypercube
+hyperglycemia/M
+hyperinflation
+hyperlink/GSMD
+hypermarket/S
+hypermedia/M
+hyperparathyroidism
+hyperplane
+hypersensitive/P
+hypersensitiveness/M
+hypersensitivity/SM
+hyperspace/S
+hypertension/M
+hypertensive/SM
+hypertext/M
+hyperthyroid/M
+hyperthyroidism/M
+hypertrophy/DSMG
+hyperventilate/GNDS
+hyperventilation/M
+hypervisor/MS
+hyphen/MDSG
+hyphenate/XDSMGN
+hyphenation/M
+hypnoses
+hypnosis/M
+hypnotherapist/S
+hypnotherapy/M
+hypnotic/SM
+hypnotically
+hypnotism/M
+hypnotist/MS
+hypnotize/GDS
+hypo/MS
+hypoallergenic
+hypochondria/M
+hypochondriac/SM
+hypocrisy/SM
+hypocrite/MS
+hypocritical/Y
+hypodermic/MS
+hypoglycemia/M
+hypoglycemic/SM
+hypotenuse/MS
+hypothalami
+hypothalamus/M
+hypothermia/M
+hypotheses
+hypothesis/M
+hypothesize/DSG
+hypothetical/Y
+hypothyroid/M
+hypothyroidism/M
+hyssop/M
+hysterectomy/SM
+hysteresis
+hysteria/M
+hysteric/SM
+hysterical/Y
+hysterics/M
+i/US
+iOS/M
+iPad/M
+iPhone/M
+iPod/M
+iTunes/M
+iamb/MS
+iambi
+iambic/SM
+iambus/MS
+ibex/MS
+ibid
+ibidem
+ibis/MS
+ibuprofen/M
+ice's
+ice/CDSG
+iceberg/SM
+iceboat/SM
+icebound
+icebox/MS
+icebreaker/SM
+icecap/SM
+iceman/M
+icemen
+ichthyologist/MS
+ichthyology/M
+icicle/SM
+icily
+iciness/M
+icing/SM
+icky/RT
+icon/MS
+iconic
+iconoclasm/M
+iconoclast/SM
+iconoclastic
+iconography/M
+ictus/M
+icy/TPR
+id/SMY
+idea/MS
+ideal/SMY
+idealism/M
+idealist/SM
+idealistic
+idealistically
+idealization/MS
+idealize/DSG
+idem
+idempotent
+identical/Y
+identifiable/U
+identification/M
+identified/U
+identify/ZGNDRSX
+identikit/S
+identity/SM
+ideogram/SM
+ideograph/M
+ideographs
+ideological/Y
+ideologist/SM
+ideologue/MS
+ideology/SM
+ides/M
+idiocy/SM
+idiom/SM
+idiomatic/U
+idiomatically
+idiopathic
+idiosyncrasy/SM
+idiosyncratic
+idiosyncratically
+idiot/SM
+idiotic
+idiotically
+idle/MZTGDRSP
+idleness/M
+idler/M
+idol/MS
+idolater/SM
+idolatress/MS
+idolatrous
+idolatry/M
+idolization/M
+idolize/GDS
+idyll/SM
+idyllic
+idyllically
+if/SM
+iffiness/M
+iffy/RTP
+igloo/SM
+igneous
+ignitable
+ignite/AGDS
+ignition/MS
+ignoble
+ignobly
+ignominious/Y
+ignominy/SM
+ignoramus/MS
+ignorance/M
+ignorant/Y
+ignore/GDS
+iguana/MS
+ii
+iii
+ilea
+ileitis/M
+ileum/M
+ilia
+ilium/M
+ilk/SM
+ill/SMP
+illegal/MYS
+illegality/SM
+illegibility/M
+illegible
+illegibly
+illegitimacy/M
+illegitimate/Y
+illiberal/Y
+illiberality/M
+illicit/YP
+illicitness/M
+illimitable
+illiteracy/M
+illiterate/MYS
+illness/MS
+illogical/Y
+illogicality/M
+illuminate/GNXDS
+illuminating/Y
+illumination/M
+illumine/DSBG
+illus/V
+illusion/EMS
+illusionist/SM
+illusory
+illustrate/GNVXDS
+illustration/M
+illustrative/Y
+illustrator/SM
+illustrious/PY
+illustriousness/M
+image/DSMG
+imagery/M
+imaginable/U
+imaginably/U
+imaginal
+imaginary
+imagination/MS
+imaginative/UY
+imagine/DSBJG
+imago/M
+imagoes
+imam/MS
+imbalance/DSM
+imbecile/MS
+imbecilic
+imbecility/SM
+imbibe/ZGDRS
+imbiber/M
+imbrication/M
+imbroglio/SM
+imbue/DSG
+imitable/I
+imitate/DSGNVX
+imitation/M
+imitative/PY
+imitativeness/M
+imitator/SM
+immaculate/PY
+immaculateness/M
+immanence/M
+immanency/M
+immanent/Y
+immaterial/YP
+immateriality/M
+immaterialness/M
+immature/Y
+immaturity/M
+immeasurable
+immeasurably
+immediacies/M
+immediacy/SM
+immediate/PY
+immediateness/M
+immemorial/Y
+immense/Y
+immensity/SM
+immerse/XDSGNV
+immersible
+immersion/M
+immigrant/SM
+immigrate/DSGN
+immigration/M
+imminence/M
+imminent/Y
+immobile
+immobility/M
+immobilization/M
+immobilize/ZGDRS
+immoderate/Y
+immodest/Y
+immodesty/M
+immolate/DSGN
+immolation/M
+immoral/Y
+immorality/SM
+immortal/MYS
+immortality/M
+immortalize/DSG
+immovability/M
+immovable
+immovably
+immune
+immunity/M
+immunization/SM
+immunize/GDS
+immunodeficiency/M
+immunodeficient
+immunoglobulin/S
+immunologic
+immunological
+immunologist/MS
+immunology/M
+immure/DSG
+immutability/M
+immutable
+immutably
+imp/SMR
+impact/SMDG
+impair/SDGL
+impaired/U
+impairment/MS
+impala/SM
+impale/DSGL
+impalement/M
+impalpable
+impalpably
+impanel/SDG
+impart/SDG
+impartial/Y
+impartiality/M
+impassably
+impasse/BSMV
+impassibility/M
+impassible
+impassibly
+impassioned
+impassive/YP
+impassiveness/M
+impassivity/M
+impasto/M
+impatience/MS
+impatiens/M
+impatient/Y
+impeach/ZGBLDRS
+impeachable/U
+impeacher/M
+impeachment/SM
+impeccability/M
+impeccable
+impeccably
+impecunious/PY
+impecuniousness/M
+impedance/M
+impede/DSG
+impeded/U
+impediment/SM
+impedimenta/M
+impel/S
+impelled
+impeller/MS
+impelling
+impend/SDG
+impenetrability/M
+impenetrable
+impenetrably
+impenitence/M
+impenitent/Y
+imperative/SMY
+imperceptibility/M
+imperceptible
+imperceptibly
+imperceptive
+imperf
+imperfect/SMYP
+imperfection/MS
+imperfectness/M
+imperial/MYS
+imperialism/M
+imperialist/SM
+imperialistic
+imperialistically
+imperil/GSLD
+imperilment/M
+imperious/PY
+imperiousness/M
+imperishable
+imperishably
+impermanence/M
+impermanent/Y
+impermeability/M
+impermeable
+impermeably
+impermissible
+impersonal/Y
+impersonate/GNXDS
+impersonation/M
+impersonator/SM
+impertinence/MS
+impertinent/Y
+imperturbability/M
+imperturbable
+imperturbably
+impervious/Y
+impetigo/M
+impetuosity/M
+impetuous/YP
+impetuousness/M
+impetus/MS
+impiety/SM
+impinge/LDSG
+impingement/M
+impious/PY
+impiousness/M
+impish/YP
+impishness/M
+implacability/M
+implacable
+implacably
+implant/BSGMD
+implantation/M
+implausibility/SM
+implausible
+implausibly
+implement/GBMDRS
+implementable/U
+implementation/SM
+implemented/U
+implicate/DSG
+implication/M
+implicit/PY
+implicitness/M
+implode/DSG
+implore/DSG
+imploring/Y
+implosion/MS
+implosive
+imply/XDSGN
+impolite/YP
+impoliteness/MS
+impolitic
+imponderable/MS
+import/ZGBSMDR
+importance/M
+important/Y
+importation/MS
+importer/M
+importunate/Y
+importune/GDS
+importunity/M
+impose/ADSG
+imposer/MS
+imposing/U
+imposingly
+imposition/MS
+impossibility/SM
+impossible/S
+impossibly
+impost/SM
+impostor/SM
+imposture/MS
+impotence/M
+impotency/M
+impotent/Y
+impound/DGS
+impoverish/DSLG
+impoverishment/M
+impracticability
+impracticable
+impracticably
+impractical/Y
+impracticality/M
+imprecate/DSXGN
+imprecation/M
+imprecise/PYN
+impreciseness/M
+imprecision/M
+impregnability/M
+impregnable
+impregnably
+impregnate/GNDS
+impregnation/M
+impresario/SM
+impress/MDSGV
+impressed/U
+impressibility/M
+impressible
+impression/BSM
+impressionability/M
+impressionism/M
+impressionist/SM
+impressionistic
+impressive/PY
+impressiveness/M
+imprimatur/SM
+imprint/MDRZGS
+imprinter/M
+imprison/SDLG
+imprisonment/SM
+improbability/SM
+improbable
+improbably
+impromptu/SM
+improper/Y
+impropriety/SM
+improve/GBDSL
+improved/U
+improvement/MS
+improvidence/M
+improvident/Y
+improvisation/SM
+improvisational
+improvise/ZGDRS
+improviser/M
+imprudence/M
+imprudent/Y
+impudence/M
+impudent/Y
+impugn/ZGSDR
+impugner/M
+impulse/MGNVDS
+impulsion/M
+impulsive/PY
+impulsiveness/M
+impulsivity
+impunity/M
+impure/RYT
+impurity/SM
+imputation/SM
+impute/BDSG
+in/ASM
+inaccuracy/S
+inaction/M
+inadequacy/S
+inadvertence/M
+inadvertent/Y
+inalienability/M
+inalienably
+inamorata/SM
+inane/RYT
+inanimate/PY
+inanimateness/M
+inanity/SM
+inappropriate/Y
+inarticulate/Y
+inasmuch
+inaudible
+inaugural/SM
+inaugurate/XGNDS
+inauguration/M
+inboard/MS
+inbound
+inbox/MS
+inbreed/S
+inc/TGD
+incalculably
+incandescence/M
+incandescent/Y
+incantation/SM
+incapacitate/GNDS
+incarcerate/XDSGN
+incarceration/M
+incarnadine/DSG
+incarnate/AXGNDS
+incarnation/AM
+incendiary/SM
+incense/MGDS
+incentive's
+incentive/ES
+inception/SM
+incessant/Y
+incest/M
+incestuous/PY
+incestuousness/M
+inch/MDSG
+inchoate
+inchworm/SM
+incidence/SM
+incident/SM
+incidental/MYS
+incinerate/DSGN
+incineration/M
+incinerator/MS
+incipience/M
+incipient/Y
+incise/XGNVDS
+incision/M
+incisive/PY
+incisiveness/M
+incisor/MS
+incitement/MS
+inciter/MS
+incl
+inclement
+inclination/EM
+inclinations
+incline's
+incline/EGDS
+include/GDS
+inclusion/MS
+inclusive/YP
+inclusiveness/M
+incognito/MS
+incombustible
+incommode/GD
+incommodious
+incommunicado
+incompatibility/S
+incompetent/MS
+incomplete/Y
+inconceivability/M
+incongruous/PY
+incongruousness/M
+inconsolably
+inconstant/Y
+incontestability/M
+incontestably
+incontinent
+incontrovertibly
+inconvenience/GD
+incorporate/ADSGN
+incorporated/U
+incorporation/AM
+incorporeal
+incorrect/Y
+incorrigibility/M
+incorrigible
+incorrigibly
+incorruptibly
+increasing/Y
+increment/SMDG
+incremental/Y
+incrementalism
+incrementalist/SM
+incriminate/GNDS
+incrimination/M
+incriminatory
+incrustation/SM
+incubate/GNDS
+incubation/M
+incubator/SM
+incubus/MS
+inculcate/DSGN
+inculcation/M
+inculpate/DSG
+incumbency/SM
+incumbent/SM
+incunabula
+incunabulum/M
+incur/SB
+incurable/MS
+incurably
+incurious
+incurred
+incurring
+incursion/MS
+ind
+indebted/P
+indebtedness/M
+indeed
+indefatigable
+indefatigably
+indefeasible
+indefeasibly
+indefinably
+indelible
+indelibly
+indemnification/M
+indemnify/GDSXN
+indemnity/SM
+indentation/MS
+indention/M
+indenture/DG
+indescribably
+indestructibly
+indeterminably
+indeterminacy/M
+indeterminate/Y
+index/ZGMDRS
+indexation/SM
+indexer/M
+indicate/XDSGNV
+indication/M
+indicative/SMY
+indicator/MS
+indict/GDSBL
+indictment/SM
+indie/S
+indigence/M
+indigenous
+indigent/SMY
+indignant/Y
+indignation/M
+indigo/M
+indirect/Y
+indiscipline
+indiscreet/Y
+indiscretion/S
+indiscriminate/Y
+indispensability/M
+indispensable/MS
+indispensably
+indissolubility
+indissolubly
+indistinguishably
+indite/GDS
+indium/M
+individual/MYS
+individualism/M
+individualist/MS
+individualistic
+individualistically
+individuality/M
+individualization/M
+individualize/GDS
+individuate/DSGN
+individuation/M
+indivisibly
+indoctrinate/GNDS
+indoctrination/M
+indolence/M
+indolent/Y
+indomitable
+indomitably
+indubitable
+indubitably
+induce/DRSZGL
+inducement/SM
+inducer/M
+induct/DGV
+inductance/M
+inductee/SM
+induction/MS
+inductive/Y
+indulge/DSG
+indulgence/SM
+indulgent/Y
+industrial/Y
+industrialism/M
+industrialist/SM
+industrialization/M
+industrialize/DSG
+industrious/YP
+industriousness/M
+industry/SM
+indwell/SG
+inebriate/MGNDS
+inebriation/M
+inedible
+ineffability/M
+ineffable
+ineffably
+inelastic
+ineligible/MS
+ineligibly
+ineluctable
+ineluctably
+inept/YP
+ineptitude/M
+ineptness/M
+inequality/S
+inert/YP
+inertia/M
+inertial
+inertness/M
+inescapable
+inescapably
+inestimably
+inevitability/M
+inevitable/M
+inevitably
+inexact/Y
+inexhaustibly
+inexorability
+inexorable
+inexorably
+inexpedient
+inexpert/Y
+inexpiable
+inexplicably
+inexpressibly
+inexpressive
+inextricably
+inf/ZT
+infallible
+infamy/SM
+infancy/M
+infant/MS
+infanticide/MS
+infantile
+infantry/SM
+infantryman/M
+infantrymen
+infarct/MS
+infarction/M
+infatuate/DSXGN
+infatuation/M
+infect/AESDG
+infected/U
+infection/ASM
+infectious/PY
+infectiousness/M
+infelicitous
+inference/SM
+inferential
+inferior/MS
+inferiority/M
+infernal/Y
+inferno/MS
+inferred
+inferring
+infest/GDS
+infestation/MS
+infidel/MS
+infidelity/S
+infiltrator/SM
+infinite/MV
+infinitesimal/SMY
+infinitival
+infinitive/MS
+infinitude/M
+infinity/SM
+infirm
+infirmary/SM
+infirmity/SM
+infix
+inflame/DSG
+inflammable
+inflammation/SM
+inflammatory
+inflatable/SM
+inflate/ADSG
+inflation/EM
+inflationary
+inflect/SDG
+inflection/MS
+inflectional
+inflict/SDGV
+infliction/M
+inflow/SM
+influence/MGDS
+influenced/U
+influential/Y
+influenza/M
+info/M
+infomercial/SM
+inform/Z
+informal/Y
+informant/SM
+informatics
+information/EM
+informational
+informative/PY
+informativeness/M
+informed/U
+infotainment/M
+infra
+infrared/M
+infrasonic
+infrastructural
+infrastructure/SM
+infrequence/M
+infrequent/Y
+infringement/MS
+infuriate/GDS
+infuriating/Y
+infuser/SM
+ingenious/PY
+ingeniousness/M
+ingenue/SM
+ingenuity/M
+ingenuous/EY
+ingenuousness/M
+ingest/SDG
+ingestion/M
+inglenook/SM
+ingot/SM
+ingrain/G
+ingrate/SM
+ingratiate/GNDS
+ingratiating/Y
+ingratiation/M
+ingredient/MS
+ingress/MS
+inguinal
+inhabit/DG
+inhabitable/U
+inhabitant/SM
+inhabited/U
+inhalant/SM
+inhalation/MS
+inhalator/MS
+inhaler/SM
+inharmonious
+inhere/DSG
+inherent/Y
+inherit/EGSD
+inheritance/EM
+inheritances
+inheritor/SM
+inhibit/GSD
+inhibition/SM
+inhibitor/SM
+inhibitory
+inhuman/Y
+inhumane/Y
+inimical/Y
+inimitably
+iniquitous/Y
+iniquity/SM
+initial/SGMDY
+initialism
+initialization
+initialize/DSG
+initialized/AU
+initiate/XMGNVDS
+initiated/U
+initiation/M
+initiative/SM
+initiator/MS
+initiatory
+initio
+inject/SDG
+injection/SM
+injector/SM
+injunctive
+injure/DRSZG
+injured/U
+injurer/M
+injurious
+ink/MD
+inkblot/SM
+inkiness/M
+inkling/SM
+inkstand/SM
+inkwell/MS
+inky/RTP
+inland/M
+inline
+inmate/SM
+inmost
+inn/SGMRJ
+innards/M
+innate/PY
+innateness/M
+innermost
+innersole/SM
+innerspring
+innervate/GNDS
+innervation/M
+inning/M
+innit
+innkeeper/MS
+innocence/M
+innocent/MYS
+innocuous/PY
+innocuousness/M
+innovate/XDSGNV
+innovation/M
+innovator/MS
+innovatory
+innuendo/SM
+innumerably
+innumerate
+inoculate/AGDS
+inoculation/MS
+inoperative
+inordinate/Y
+inorganic
+inositol
+inquire/ZGDR
+inquirer/M
+inquiring/Y
+inquiry/SM
+inquisition/MS
+inquisitional
+inquisitive/YP
+inquisitiveness/M
+inquisitor/SM
+inquisitorial
+inrush/MS
+insane/T
+insatiability/M
+insatiably
+inscribe/ZGDR
+inscriber/M
+inscription/MS
+inscrutability/M
+inscrutable/P
+inscrutableness/M
+inscrutably
+inseam/SM
+insecticidal
+insecticide/MS
+insectivore/MS
+insectivorous
+insecure/Y
+inseminate/DSGN
+insemination/M
+insensate
+insensible
+insensitive/Y
+inseparable/MS
+insert's
+insert/AGSD
+insertion/AM
+insertions
+insetting
+inshore
+inside/RSMZ
+insider/M
+insidious/YP
+insidiousness/M
+insight/MS
+insightful
+insignia/M
+insinuate/GNVDSX
+insinuation/M
+insinuator/SM
+insipid/PY
+insipidity/M
+insist/SGD
+insistence/M
+insistent/Y
+insisting/Y
+insofar
+insole/SM
+insolence/M
+insolent/Y
+insoluble
+insolubly
+insolvency/S
+insomnia/M
+insomniac/SM
+insomuch
+insouciance/M
+insouciant
+inspect/AGDS
+inspection/SM
+inspector/MS
+inspectorate/MS
+inspiration/MS
+inspirational
+inspiratory
+inspired/U
+inspiring/U
+inst
+instability/S
+install/UBZRSDG
+installation/MS
+installer/UM
+installment/SM
+instance/GD
+instant/MRYS
+instantaneous/Y
+instantiate/DSG
+instar
+instate/AGDS
+instead
+instigate/DSGN
+instigation/M
+instigator/MS
+instillation/M
+instinct/VMS
+instinctive/Y
+instinctual
+institute/XMZGNDRS
+instituter/M
+institution/M
+institutional/Y
+institutionalization/M
+institutionalize/DSG
+instr
+instruct/SDGV
+instructed/U
+instruction/MS
+instructional
+instructive/Y
+instructor/MS
+instrument/MDSG
+instrumental/MYS
+instrumentalist/SM
+instrumentality/M
+instrumentation/M
+insubordinate
+insufferable
+insufferably
+insula
+insular
+insularity/M
+insulate/GNDS
+insulation/M
+insulator/MS
+insulin/M
+insult/SMDG
+insulting/Y
+insuperable
+insuperably
+insurance/SM
+insure/DRSZGB
+insured/SM
+insurer/M
+insurgence/SM
+insurgency/SM
+insurgent/MS
+insurmountably
+insurrection/SM
+insurrectionist/SM
+int
+intact
+intaglio/MS
+integer/MS
+integral/SMY
+integrate/AEVNGSD
+integration/EAM
+integrator
+integrity/M
+integument/SM
+intel/M
+intellect/MS
+intellectual/MYS
+intellectualism/M
+intellectualize/GDS
+intelligence/M
+intelligent/Y
+intelligentsia/M
+intelligibility/M
+intelligible/U
+intelligibly/U
+intended/SM
+intense/YTVR
+intensification/M
+intensifier/M
+intensify/DRSZGN
+intensity/S
+intensive/MYPS
+intensiveness/M
+intent/SMYP
+intention/MS
+intentional/UY
+intentness/M
+inter/ESL
+interact/SGVD
+interaction/SM
+interactive/Y
+interactivity
+interbred
+interbreed/GS
+intercede/GDS
+intercept/GMDS
+interception/MS
+interceptor/SM
+intercession/SM
+intercessor/MS
+intercessory
+interchange/DSMG
+interchangeability
+interchangeable
+interchangeably
+intercity
+intercollegiate
+intercom/SM
+intercommunicate/DSGN
+intercommunication/M
+interconnect/GDS
+interconnection/SM
+intercontinental
+intercourse/M
+intercultural
+interdenominational
+interdepartmental
+interdependence/M
+interdependent/Y
+interdict/GMDS
+interdiction/M
+interdisciplinary
+interest/ESMD
+interested/U
+interesting/Y
+interface/MGDS
+interfaith
+interfere/GDS
+interference/M
+interferon/M
+interfile/GDS
+intergalactic
+intergovernmental
+interim/M
+interior/SM
+interj
+interject/GDS
+interjection/SM
+interlace/GDS
+interlard/DGS
+interleave/DSG
+interleukin/M
+interline/GDSJ
+interlinear
+interlining/M
+interlink/DSG
+interlock/GMDS
+interlocutor/SM
+interlocutory
+interlope/ZGDRS
+interloper/M
+interlude/MGDS
+intermarriage/SM
+intermarry/GDS
+intermediary/SM
+intermediate/MYS
+interment/EM
+interments
+intermezzi
+intermezzo/MS
+interminably
+intermingle/DSG
+intermission/SM
+intermittence
+intermittency
+intermittent/Y
+intermix/GDS
+intern/GDL
+internal/SY
+internalization/M
+internalize/GDS
+international/SMY
+internationalism/M
+internationalist/SM
+internationalization
+internationalize/DSG
+internecine
+internee/SM
+internet
+internist/MS
+internment/M
+internship/MS
+interoffice
+interoperability
+interoperable
+interoperate/S
+interpenetrate/DSGN
+interpersonal
+interplanetary
+interplay/M
+interpolate/XDSGN
+interpolation/M
+interpose/GDS
+interposition/M
+interpret/AGVDS
+interpretation/AMS
+interpretative
+interpreted/U
+interpreter/MS
+interracial
+interred/E
+interregnum/SM
+interrelate/XDSGN
+interrelation/M
+interrelationship/MS
+interring/E
+interrogate/DSGNVX
+interrogation/M
+interrogative/MYS
+interrogator/SM
+interrogatory/SM
+interrupt/ZGMDRS
+interrupter/M
+interruption/MS
+interscholastic
+intersect/GDS
+intersection/SM
+intersectional
+intersectionality
+intersession/SM
+intersex
+intersperse/GNDS
+interspersion/M
+interstate/MS
+interstellar
+interstice/MS
+interstitial
+intertwine/GDS
+interurban
+interval/SM
+intervene/GDS
+intervention/SM
+interventionism/M
+interventionist/SM
+interview/ZGMDRS
+interviewee/MS
+interviewer/M
+intervocalic
+interwar
+interweave/GS
+interwove
+interwoven
+intestacy/M
+intestate
+intestinal
+intestine/MS
+intifada
+intimacy/SM
+intimate/MYGNDSX
+intimation/M
+intimidate/GNDS
+intimidating/Y
+intimidation/M
+intonation/SM
+intoxicant/SM
+intoxicate/DSGN
+intoxication/M
+intracranial
+intramural
+intramuscular
+intranet/MS
+intransigence/M
+intransigent/MYS
+intrastate
+intrauterine
+intravenous/MSY
+intrepid/Y
+intrepidity/M
+intricacy/SM
+intricate/Y
+intrigue/DRSMZG
+intriguer/M
+intriguing/Y
+intrinsic
+intrinsically
+intro/SM
+introduce/AGDS
+introduction/AM
+introductions
+introductory
+introit/SM
+introspect/GVDS
+introspection/M
+introspective/Y
+introversion/M
+introvert/MDS
+intrude/DRSZG
+intruder/M
+intrusion/SM
+intrusive/YP
+intrusiveness/M
+intuit/SDGV
+intuition/S
+intuitive/PY
+intuitiveness/M
+inundate/XDSGN
+inundation/M
+inure/DSG
+invade/DRSZG
+invader/M
+invalid/GMDYS
+invalidism/M
+invaluable
+invaluably
+invariant
+invasion/MS
+invasive
+invective/M
+inveigh/GD
+inveighs
+inveigle/ZGDRS
+inveigler/M
+invent/ASGVD
+invention/AMS
+inventive/PY
+inventiveness/M
+inventor/MS
+inventory/DSMG
+inverse/SMY
+invert/SMDRZG
+inverter/M
+invest/ASDGL
+investigate/GNVDSX
+investigation/M
+investigator/SM
+investigatory
+investiture/MS
+investment/AEM
+investor/SM
+inveteracy/M
+inveterate
+invidious/YP
+invidiousness/M
+invigilate/GNDS
+invigilator/S
+invigorate/ADSG
+invigorating/Y
+invigoration/M
+invincibility/M
+invincibly
+inviolability/M
+inviolably
+inviolate
+invitation/SM
+invitational/SM
+invite/DSMG
+invited/U
+invitee/SM
+inviting/Y
+invoke/DSG
+involuntariness/M
+involuntary/P
+involution/M
+involve/LDSG
+involved/U
+involvement/SM
+inward/SY
+ioctl
+iodide/SM
+iodine/M
+iodize/DSG
+ion/USM
+ionic
+ionization/UM
+ionize/UDSG
+ionizer/MS
+ionosphere/MS
+ionospheric
+iota/MS
+ipecac/SM
+irascibility/M
+irascible
+irascibly
+irate/YP
+irateness/M
+ire/M
+ireful
+irenic
+irides
+iridescence/M
+iridescent/Y
+iridium/M
+iris/MS
+irk/SGD
+irksome/YP
+irksomeness/M
+iron/MDSG
+ironclad/MS
+ironic
+ironical/Y
+ironing/M
+ironmonger/S
+ironmongery
+ironstone/M
+ironware/M
+ironwood/MS
+ironwork/M
+irony/SM
+irradiate/DSGN
+irradiation/M
+irrational/SMY
+irrationality/M
+irreclaimable
+irreconcilability/M
+irreconcilable
+irreconcilably
+irrecoverable
+irrecoverably
+irredeemable
+irredeemably
+irreducible
+irreducibly
+irrefutable
+irrefutably
+irregular/MYS
+irregularity/SM
+irrelevance/MS
+irrelevancy/MS
+irrelevant/Y
+irreligion
+irreligious
+irremediable
+irremediably
+irremovable
+irreparable
+irreparably
+irreplaceable
+irrepressible
+irrepressibly
+irreproachable
+irreproachably
+irresistible
+irresistibly
+irresolute/PYN
+irresoluteness/M
+irresolution/M
+irrespective
+irresponsibility/M
+irresponsible
+irresponsibly
+irretrievable
+irretrievably
+irreverence/M
+irreverent/Y
+irreversible
+irreversibly
+irrevocable
+irrevocably
+irrigable
+irrigate/DSGN
+irrigation/M
+irritability/M
+irritable
+irritably
+irritant/SM
+irritate/DSXGN
+irritating/Y
+irritation/M
+irrupt/DGVS
+irruption/SM
+ischemia
+ischemic
+isinglass/M
+isl
+island/SZMR
+islander/M
+isle/MS
+islet/SM
+ism/CM
+isms
+isn't
+isobar/MS
+isobaric
+isolate/DSMGN
+isolation/M
+isolationism/M
+isolationist/SM
+isomer/MS
+isomeric
+isomerism/M
+isometric/S
+isometrically
+isometrics/M
+isomorphic
+isomorphism
+isosceles
+isotherm/SM
+isotope/SM
+isotopic
+isotropic
+issuance/M
+issue/ADSMG
+issuer/MS
+isthmian
+isthmus/MS
+it'd
+it'll
+it/USM
+ital
+italic/SM
+italicization/M
+italicize/GDS
+italics/M
+itch/MDSG
+itchiness/M
+itchy/RPT
+item/MS
+itemization/M
+itemize/GDS
+iterate/AXGNVDS
+iteration/AM
+iterator/S
+itinerant/SM
+itinerary/SM
+itself
+iv/U
+ivory/SM
+ivy/DSM
+ix
+j/F
+jab/SM
+jabbed
+jabber/SMDRZG
+jabberer/M
+jabbing
+jabot/SM
+jacaranda/MS
+jack/MDGS
+jackal/SM
+jackass/MS
+jackboot/SMD
+jackdaw/MS
+jacket/SMD
+jackhammer/MS
+jackknife/MGDS
+jackknives
+jackpot/MS
+jackrabbit/MS
+jackstraw/MS
+jacquard/M
+jade/MGDS
+jaded/PY
+jadedness/M
+jadeite/M
+jag/SM
+jagged/TPRY
+jaggedness/M
+jaggies
+jaguar/SM
+jail/MDRZGS
+jailbird/SM
+jailbreak/SM
+jailer/M
+jailhouse/S
+jalapeno/MS
+jalopy/SM
+jalousie/MS
+jam/SM
+jamb/MS
+jambalaya/M
+jamboree/MS
+jammed
+jamming
+jammy/RT
+jangle/DRSMZG
+jangler/M
+janitor/SM
+janitorial
+japan/SM
+japanned
+japanning
+jape/MGDS
+jar/SM
+jardiniere/SM
+jarful/MS
+jargon/M
+jarred
+jarring/Y
+jasmine/SM
+jasper/M
+jato/MS
+jaundice/DSMG
+jaunt/SGMD
+jauntily
+jauntiness/M
+jaunty/RPT
+java/M
+javelin/SM
+jaw/SGMD
+jawbone/DSMG
+jawbreaker/MS
+jawline/S
+jay/SM
+jaybird/SM
+jaywalk/DRSZG
+jaywalker/M
+jaywalking/M
+jazz/MDSG
+jazzy/TR
+jct
+jealous/Y
+jealousy/SM
+jean/MS
+jeans/M
+jeep/MS
+jeer/MDSG
+jeering/MY
+jeez
+jejuna
+jejune
+jejunum/M
+jell/DSG
+jello/S
+jelly/GDSM
+jellybean/MS
+jellyfish/MS
+jellylike
+jellyroll/SM
+jemmy/GDS
+jennet/MS
+jenny/SM
+jeopardize/GDS
+jeopardy/M
+jeremiad/MS
+jerk/MDSG
+jerkily
+jerkin/MS
+jerkiness/M
+jerkwater
+jerky/TRMP
+jeroboam/S
+jerrybuilt
+jerrycan/S
+jersey/MS
+jest/MDRSZG
+jester/M
+jesting/Y
+jet/SM
+jetliner/SM
+jetport/MS
+jetsam/M
+jetted
+jetting
+jettison/MDSG
+jetty/SM
+jewel/SZGMDR
+jeweler/M
+jewelry/SM
+jg
+jib/SGMD
+jibbed
+jibbing
+jibe/MS
+jiff/MS
+jiffy/SM
+jig's
+jig/AS
+jigged/A
+jigger's
+jigger/ASDG
+jigging/A
+jiggle/DSMG
+jiggly
+jigsaw/SMDG
+jihad/SM
+jihadist/SM
+jilt/MDSG
+jimmy/DSMG
+jimsonweed/M
+jingle/DSMG
+jingly
+jingoism/M
+jingoist/SM
+jingoistic
+jink/DSG
+jinn
+jinni/M
+jinrikisha/SM
+jinx/MDSG
+jitney/SM
+jitterbug/MS
+jitterbugged
+jitterbugger/M
+jitterbugging
+jitters/M
+jittery/RT
+jive/MGDS
+job/SM
+jobbed
+jobber/SM
+jobbing
+jobholder/MS
+jobless/P
+joblessness/M
+jobshare/S
+jobsworth
+jobsworths
+jock/MS
+jockey/SGMD
+jockstrap/MS
+jocose/PY
+jocoseness/M
+jocosity/M
+jocular/Y
+jocularity/M
+jocund/Y
+jocundity/M
+jodhpurs/M
+joey/S
+jog/SM
+jogged
+jogger/SM
+jogging/M
+joggle/DSMG
+john/MS
+johnny/SM
+johnnycake/MS
+join's
+join/AFDSG
+joiner/FMS
+joinery/M
+joint's
+joint/EGSD
+jointly/F
+joist/SM
+jojoba
+joke/MZGDRS
+joker/M
+jokey
+jokier
+jokiest
+joking/Y
+jollification/SM
+jollily
+jolliness/M
+jollity/M
+jolly/TGPDRSM
+jolt/MDRSZG
+jolter/M
+jonquil/SM
+josh/MDRSZG
+josher/M
+jostle/MGDS
+jot/SM
+jotted
+jotter/MS
+jotting/MS
+joule/SM
+jounce/MGDS
+jouncy
+journal/MS
+journalese/M
+journalism/M
+journalist/SM
+journalistic
+journey/ZGMDRS
+journeyer/M
+journeyman/M
+journeymen
+journo/S
+joust/SZGMDR
+jouster/M
+jousting/M
+jovial/Y
+joviality/M
+jowl/MS
+jowly/TR
+joy/SGMD
+joyful/YP
+joyfuller
+joyfullest
+joyfulness/M
+joyless/PY
+joylessness/M
+joyous/YP
+joyousness/M
+joyridden
+joyride/RSMZG
+joyrider/M
+joyriding/M
+joyrode
+joystick/SM
+jr
+jubilant/Y
+jubilation/M
+jubilee/SM
+judder/GDS
+judge's
+judge/ADSG
+judgeship/M
+judgment/SM
+judgmental/Y
+judicatory/SM
+judicature/M
+judicial/Y
+judiciary/SM
+judicious/IYP
+judiciousness/IM
+judo/M
+jug/SM
+jugful/MS
+jugged
+juggernaut/SM
+jugging
+juggle/MZGDRS
+juggler/M
+jugglery/M
+jugular/SM
+juice/DRSMZG
+juicer/M
+juicily
+juiciness/M
+juicy/PTR
+jujitsu/M
+jujube/MS
+jukebox/MS
+julep/SM
+julienne
+jumble/MGDS
+jumbo/SM
+jump/MDRSZG
+jumper/M
+jumpily
+jumpiness/M
+jumpsuit/MS
+jumpy/TRP
+jun
+junco/SM
+junction/FISM
+juncture/FMS
+jungle/MS
+junior/MS
+juniper/SM
+junk/MDRSZG
+junker/M
+junket/MDSG
+junketeer/MS
+junkie/MTRS
+junkyard/MS
+junta/SM
+juridic
+juridical/Y
+jurisdiction/SM
+jurisdictional
+jurisprudence/M
+jurist/MS
+juristic
+juror/SM
+jury/ISM
+juryman/M
+jurymen
+jurywoman/M
+jurywomen
+just/RYPT
+justice/IMS
+justifiable/U
+justifiably/U
+justification/M
+justified/U
+justify/XGDSN
+justness/M
+jut/SM
+jute/M
+jutted
+jutting
+juvenile/SM
+juxtapose/DSG
+juxtaposition/SM
+k/IFGS
+kHz
+kW
+kWh
+kabbalah
+kaboom
+kabuki/M
+kaddish/MS
+kaffeeklatch/MS
+kaffeeklatsch/MS
+kahuna/S
+kaiser/MS
+kale/M
+kaleidoscope/MS
+kaleidoscopic
+kaleidoscopically
+kamikaze/MS
+kana
+kangaroo/MS
+kanji
+kaolin/M
+kapok/M
+kappa/SM
+kaput
+karakul/M
+karaoke/MS
+karat/SM
+karate/M
+karma/M
+karmic
+kart/MS
+katakana
+katydid/SM
+kayak/SMDG
+kayaking/M
+kayo/MDSG
+kazoo/SM
+kc
+kebab/SM
+kedgeree
+keel/MDSG
+keelhaul/DGS
+keen/MDRYSTGP
+keenness/M
+keep/MRSZG
+keeper/M
+keeping/M
+keepsake/MS
+keg/SM
+kelp/M
+kelvin/SM
+ken/SM
+kenned
+kennel/SGMD
+kenning
+keno/M
+kepi/MS
+kept
+keratin/M
+keratitis
+kerbside
+kerchief/SM
+kerfuffle/S
+kernel/SM
+kerosene/M
+kestrel/MS
+ketch/MS
+ketchup/M
+keto
+ketogenic
+ketone/S
+kettle/SM
+kettledrum/SM
+key/SGMD
+keybinding/S
+keyboard/ZGSMDR
+keyboarder/M
+keyboardist/SM
+keyhole/MS
+keynote/MZGDRS
+keynoter/M
+keypad/SM
+keypunch/ZGMDRS
+keypuncher/M
+keystone/MS
+keystroke/SM
+keyword/MS
+kg
+khaki/SM
+khan/MS
+kibble/DSMG
+kibbutz/MS
+kibbutzim
+kibitz/ZGDRS
+kibitzer/M
+kibosh/M
+kick/MDRSZG
+kickback/SM
+kickball/M
+kickboxing
+kicker/M
+kickoff/MS
+kickstand/MS
+kicky/RT
+kid/SM
+kidded
+kidder/SM
+kiddie/SM
+kidding
+kiddish
+kiddo/SM
+kidnap/S
+kidnapped
+kidnapper/MS
+kidnapping/MS
+kidney/SM
+kidskin/M
+kielbasa/MS
+kielbasi
+kike/S
+kill/JMDRSZG
+killdeer/SM
+killer/M
+killing/M
+killjoy/SM
+kiln/MDSG
+kilo/MS
+kilobyte/SM
+kilocoulomb/S
+kilocycle/SM
+kilogram/SM
+kilohertz/M
+kilojoule/S
+kiloliter/MS
+kilometer/MS
+kilonewton/S
+kilopascal/S
+kiloton/SM
+kilovolt/S
+kilowatt/SM
+kilt/MDRS
+kilter/M
+kimono/MS
+kin/M
+kinase
+kind's
+kind/UPRYT
+kinda
+kindergarten/MS
+kindergartner/SM
+kindhearted/PY
+kindheartedness/M
+kindle/AGDS
+kindliness/M
+kindling/M
+kindly/URT
+kindness/UM
+kindnesses
+kindred/M
+kinds
+kine/S
+kinematic/S
+kinematics/M
+kinetic/S
+kinetically
+kinetics/M
+kinfolk/SM
+kinfolks/M
+king/MYS
+kingdom/SM
+kingfisher/SM
+kingly/RT
+kingmaker/S
+kingpin/SM
+kingship/M
+kink/MDSG
+kinkily
+kinkiness/M
+kinky/TPR
+kinsfolk/M
+kinship/M
+kinsman/M
+kinsmen
+kinswoman/M
+kinswomen
+kiosk/SM
+kip/SM
+kipped
+kipper/MDGS
+kipping
+kirsch/MS
+kismet/M
+kiss/MDRSBZG
+kisser/M
+kissoff/SM
+kissogram/S
+kit/SGMD
+kitchen/SM
+kitchenette/MS
+kitchenware/M
+kite/MS
+kith/M
+kitsch/M
+kitschy
+kitted
+kitten/MS
+kittenish
+kitting
+kitty/SM
+kiwi/MS
+kiwifruit/MS
+kl
+klaxon/S
+kleptocracy
+kleptomania/M
+kleptomaniac/SM
+kludge/GDS
+kluge/DS
+klutz/MS
+klutziness/M
+klutzy/TRP
+km
+kn
+knack/SZMR
+knacker/GD
+knapsack/MS
+knave/SM
+knavery/M
+knavish/Y
+knead/SZGDR
+kneader/M
+knee/MDS
+kneecap/SM
+kneecapped
+kneecapping
+kneeing
+kneel/SG
+knell/SGMD
+knelt
+knew
+knicker/S
+knickerbockers/M
+knickers/M
+knickknack/MS
+knife/DSMG
+knight/MDYSG
+knighthood/MS
+knightliness/M
+knish/MS
+knit/MS
+knitted
+knitter/SM
+knitting/M
+knitwear/M
+knives
+knob/MS
+knobbly
+knobby/TR
+knock/SZGMDR
+knockabout
+knockdown/SM
+knocker/M
+knockoff/SM
+knockout/SM
+knockwurst/SM
+knoll/SM
+knot/MS
+knothole/SM
+knotted
+knotting
+knotty/TR
+know/SB
+knowing/UYS
+knowledge/M
+knowledgeable
+knowledgeably
+known
+knuckle/DSMG
+knuckleduster/S
+knucklehead/MS
+knurl/SGMD
+koala/SM
+koan/S
+kohl
+kohlrabi/M
+kohlrabies
+kola/MS
+kook/MS
+kookaburra/SM
+kookiness/M
+kooky/TPR
+kopeck/MS
+korma
+kosher/DSG
+kowtow/GMDS
+kph
+kraal/SM
+kraut/SM!
+krill/M
+krona/M
+krone/RM
+kronor
+kronur
+krypton/M
+kt
+kuchen/SM
+kudos/M
+kudzu/SM
+kumquat/MS
+kvetch/ZGMDRS
+kvetcher/M
+kw
+l/SDXTGJ
+la/M
+lab/SM
+label's
+label/ASDG
+labeled/U
+labia
+labial/SM
+labile
+labium/M
+labor/SMDRZG
+laboratory/SM
+laborer/M
+laborious/PY
+laboriousness/M
+laborsaving
+laburnum/MS
+labyrinth/M
+labyrinthine
+labyrinths
+lac/M
+lace's
+lace/UGDS
+lacerate/DSGNX
+laceration/M
+lacewing/SM
+lacework/M
+lachrymal
+lachrymose
+lack/MDSG
+lackadaisical/Y
+lackey/SM
+lackluster
+laconic
+laconically
+lacquer/GMDS
+lacrosse/M
+lactate/GNDS
+lactation/M
+lacteal
+lactic
+lactose/M
+lacuna/M
+lacunae
+lacy/RT
+lad/SGMDNJ
+ladder/GSMD
+laddie/SM
+laddish/P
+lade/S
+laden/U
+lading/M
+ladle/DSMG
+lady/SM
+ladybird/SM
+ladybug/MS
+ladyfinger/MS
+ladylike/U
+ladylove/MS
+ladyship/MS
+laetrile/M
+lag/SZMR
+lager/M
+laggard/MYS
+lagged
+lagging/M
+lagniappe/SM
+lagoon/SM
+laid/IA
+lain
+lair/MS
+laird/SM
+laity/M
+lake/MS
+lakefront/S
+lakeside
+lam/SM
+lama/MS
+lamasery/SM
+lamb/MDSG
+lambada/MS
+lambaste/GDS
+lambda/SM
+lambency/M
+lambent/Y
+lambkin/SM
+lambskin/SM
+lambswool
+lame/MYZTGDRSP
+lamebrain/MDS
+lameness/M
+lament/BSMDG
+lamentably
+lamentation/MS
+lamina/M
+laminae
+laminar
+laminate/MGNDS
+lamination/M
+lammed
+lamming
+lamp/MS
+lampblack/M
+lamplight/MRZ
+lamplighter/M
+lampoon/SGMD
+lamppost/SM
+lamprey/MS
+lampshade/SM
+lanai/SM
+lance/DRSMZG
+lancer/M
+lancet/SM
+land/MDRSGJ
+landau/SM
+landfall/MS
+landfill/MS
+landholder/SM
+landholding/MS
+landing/M
+landlady/SM
+landless/M
+landline/MS
+landlocked
+landlord/MS
+landlubber/MS
+landmark/MS
+landmass/MS
+landmine/S
+landowner/MS
+landownership
+landowning/SM
+landscape/MZGDRS
+landscaper/M
+landslid
+landslide/MGS
+landslip/S
+landsman/M
+landsmen
+landward/S
+lane/MS
+language/MS
+languid/PY
+languidness/M
+languish/DSG
+languor/SM
+languorous/Y
+lank/RYTP
+lankiness/M
+lankness/M
+lanky/RTP
+lanolin/M
+lantern/MS
+lanthanum/M
+lanyard/MS
+lap/SM
+laparoscopic
+laparoscopy
+laparotomy
+lapboard/SM
+lapdog/SM
+lapel/SM
+lapidary/SM
+lapin/SM
+lapped
+lappet/SM
+lapping
+lapse/AKGMSD
+laptop/SM
+lapwing/MS
+larboard/SM
+larcenist/SM
+larcenous
+larceny/SM
+larch/MS
+lard/MDRSZG
+larder/M
+lardy/RT
+large/RSPMYT
+largehearted
+largeness/M
+largess/M
+largish
+largo/SM
+lariat/SM
+lark/MDSG
+larkspur/SM
+larva/M
+larvae
+larval
+laryngeal
+larynges
+laryngitis/M
+larynx/M
+lasagna/MS
+lascivious/YP
+lasciviousness/M
+lase/ZGDRS
+laser/M
+lash/MDSGJ
+lashing/M
+lass/MS
+lassie/SM
+lassitude/M
+lasso/SMDG
+last/MDYSG
+lasting/Y
+lat/S
+latch's
+latch/UDSG
+latchkey/SM
+late/YTRP
+latecomer/MS
+latency/M
+lateness/M
+latent
+lateral/MDYSG
+latest/M
+latex/M
+lath/MDRSZG
+lathe/M
+lather/GMD
+lathery
+laths
+latices
+latish
+latitude/MS
+latitudinal
+latitudinarian/MS
+latrine/MS
+latte/RSM
+latter/MY
+lattice/MDS
+latticework/SM
+laud/MDSGB
+laudably
+laudanum/M
+laudatory
+laugh/BMDG
+laughably
+laughing/MY
+laughingstock/SM
+laughs
+laughter/M
+launch/AGMDS
+launcher/SM
+launchpad/SM
+launder/DRZGS
+launderer/M
+launderette/SM
+laundress/MS
+laundromat/MS
+laundry/SM
+laundryman/M
+laundrymen
+laundrywoman/M
+laundrywomen
+laureate/MS
+laureateship/M
+laurel/SM
+lav/SGD
+lava/M
+lavage/M
+lavaliere/SM
+lavatorial
+lavatory/SM
+lave/S
+lavender/SM
+lavish/PTGDRSY
+lavishness/M
+law/SM
+lawbreaker/SM
+lawbreaking/M
+lawful/UPY
+lawfulness/UM
+lawgiver/MS
+lawless/PY
+lawlessness/M
+lawmaker/MS
+lawmaking/M
+lawman/M
+lawmen
+lawn/MS
+lawnmower/SM
+lawrencium/M
+lawsuit/MS
+lawyer/SM
+lax/TRYP
+laxative/MS
+laxity/M
+laxness/M
+lay/AICSGM
+layabout/S
+layaway/M
+layer/CSM
+layered
+layering/M
+layette/MS
+layman/M
+laymen
+layoff/SM
+layout/SM
+layover/MS
+laypeople
+layperson/MS
+layup/SM
+laywoman/M
+laywomen
+laze/MGDS
+lazily
+laziness/M
+lazy/DRSTGP
+lazybones/M
+lb/S
+lbw
+lea/SM
+leach/DSG
+lead/MDNRSZG
+leader/M
+leaderless
+leadership/SM
+leading/M
+leaf/MDSG
+leafage/M
+leafless
+leaflet/GMDS
+leafstalk/MS
+leafy/RT
+league/DSMG
+leak/MDSG
+leakage/MS
+leakiness/M
+leaky/PRT
+lean/MDRSTGJP
+leaning/M
+leanness/M
+leap/MDRSZG
+leaper/M
+leapfrog/MS
+leapfrogged
+leapfrogging
+leapt
+learn/AUGDS
+learnability
+learnable
+learnedly
+learner/MS
+learning's
+lease/ADSMG
+leaseback/SM
+leasehold/MRSZ
+leaseholder/M
+leaser/SM
+leash's
+leash/UDSG
+least/M
+leastwise
+leather/MS
+leatherette/M
+leatherneck/MS
+leathery
+leave/DRSMZGJ
+leaven/SGMD
+leavened/U
+leavening/M
+leaver/M
+leavings/M
+lech/MDRSZG
+lecher/M
+lecherous/PY
+lecherousness/M
+lechery/M
+lecithin/M
+lectern/MS
+lecture/MZGDRS
+lecturer/M
+lectureship/SM
+ledge/RSMZ
+ledger/M
+lee/RSMZ
+leech/MDSG
+leek/MS
+leer/MDG
+leeriness/M
+leery/RPT
+leeward/SM
+leeway/M
+left/MRST
+leftism/M
+leftist/SM
+leftmost
+leftover/SM
+leftward/S
+lefty/SM
+leg/SM
+legacy/SM
+legal/SMY
+legalese/M
+legalism/MS
+legalistic
+legalistically
+legality/SM
+legalization/M
+legalize/GDS
+legate/CXMNS
+legatee/MS
+legation's/AC
+legato/SM
+legend/SM
+legendarily
+legendary
+legerdemain/M
+legged
+legginess/M
+legging/MS
+leggy/RPT
+leghorn/MS
+legibility/M
+legible
+legibly
+legion/SM
+legionary/SM
+legionnaire/SM
+legislate/DSGNV
+legislation/M
+legislative/Y
+legislator/MS
+legislature/SM
+legit
+legitimacy/M
+legitimate/DSYG
+legitimatize/GDS
+legitimization/M
+legitimize/DSG
+legless
+legman/M
+legmen
+legroom/SM
+legume/MS
+leguminous
+legwarmer/S
+legwork/M
+lei/SM
+leisure/DMY
+leisureliness/M
+leisurewear/M
+leitmotif/MS
+leitmotiv/MS
+lemma/S
+lemme/JG
+lemming/M
+lemon/SM
+lemonade/SM
+lemongrass
+lemony
+lemur/SM
+lend/RSZG
+lender/M
+length/MNX
+lengthen/GD
+lengthily
+lengthiness/M
+lengths
+lengthwise
+lengthy/PRT
+lenience/M
+leniency/M
+lenient/Y
+lenitive
+lens/MS
+lent
+lentil/MS
+lento
+leonine
+leopard/SM
+leopardess/MS
+leotard/SM
+leper/SM
+leprechaun/MS
+leprosy/M
+leprous
+lepta
+lepton/MS
+lesbian/SM
+lesbianism/M
+lesion/MS
+less/MNRX
+lessee/MS
+lessen/GD
+lesson/MS
+lessor/MS
+let/ISM
+letdown/SM
+lethal/Y
+lethargic
+lethargically
+lethargy/M
+letter/ZGMDRS
+letterbomb/S
+letterbox/S
+lettered/U
+letterer/M
+letterhead/MS
+lettering/M
+letterpress/M
+letting/S
+lettuce/MS
+letup/SM
+leucine
+leucotomy/S
+leukemia/M
+leukemic/SM
+leukocyte/MS
+levee/SM
+level/PSZGMDRY
+leveler/M
+levelheaded/P
+levelheadedness/M
+levelness/M
+lever/SGMD
+leverage's
+leverage/CDSG
+leviathan/MS
+levier/M
+levitate/DSGN
+levitation/M
+levity/M
+levy/DRSMZG
+lewd/RYPT
+lewdness/M
+lexer/S
+lexical
+lexicographer/MS
+lexicographic
+lexicographical
+lexicography/M
+lexicon/SM
+lexis
+lg
+liabilities
+liability/AM
+liable/A
+liaise/GDS
+liaison/MS
+liar/MS
+lib/M
+libation/SM
+libber/MS
+libel/SZGMDR
+libeler/M
+libelous
+liberal/MYPS
+liberalism/M
+liberality/M
+liberalization/SM
+liberalize/GDS
+liberalness/M
+liberate/CDSGN
+liberation/CM
+liberator/MS
+libertarian/SM
+libertine/MS
+liberty/SM
+libidinal
+libidinous
+libido/MS
+librarian/MS
+librarianship
+library/SM
+librettist/MS
+libretto/SM
+lice
+license/MGDS
+licensed/U
+licensee/MS
+licentiate/SM
+licentious/YP
+licentiousness/M
+lichen/MS
+licit/Y
+lick/MDJSG
+licking/M
+licorice/SM
+lid/SM
+lidded
+lidless
+lido/MS
+lie/DSM
+lied/MR
+lief/RT
+liege/SM
+lien/MS
+lieu/M
+lieutenancy/M
+lieutenant/MS
+life/MZR
+lifebelt/S
+lifeblood/M
+lifeboat/MS
+lifebuoy/MS
+lifeforms
+lifeguard/SM
+lifeless/YP
+lifelessness/M
+lifelike
+lifeline/MS
+lifelong
+lifer/M
+lifesaver/SM
+lifesaving/M
+lifespan/S
+lifestyle/SM
+lifetime/MS
+lifework/MS
+lift/MDRSZG
+lifter/M
+liftoff/SM
+ligament/MS
+ligate/GNDS
+ligation/M
+ligature/MGDS
+light's/C
+light/CASTGD
+lighted/U
+lighten/SDRZG
+lightener/M
+lighter/SM
+lightface/MD
+lightheaded
+lighthearted/YP
+lightheartedness/M
+lighthouse/MS
+lighting's
+lightly
+lightness/M
+lightning/MDS
+lightproof
+lightship/MS
+lightweight/SM
+ligneous
+lignin
+lignite/M
+lii
+likability/M
+likable/P
+likableness/M
+like/EMGDST
+likelihood/UM
+likelihoods
+likeliness/UM
+likely/UPRT
+liken/SGD
+likeness/UM
+likenesses
+liker
+likewise
+liking/M
+lilac/SM
+lilliputian
+lilo/S
+lilt/MDSG
+lily/SM
+limb/MS
+limber/UDSG
+limberness/M
+limbless
+limbo/SM
+lime/MGDS
+limeade/SM
+limelight/M
+limerick/SM
+limescale
+limestone/M
+limey/S
+limit's
+limit/CSZGDR
+limitation/CM
+limitations
+limited/U
+limiter's
+limiting/S
+limitless/P
+limitlessness/M
+limn/DSG
+limo/MS
+limousine/MS
+limp/MDRYSPTG
+limpet/MS
+limpid/YP
+limpidity/M
+limpidness/M
+limpness/M
+limy/RT
+linage/M
+linchpin/SM
+linden/MS
+line/MZGDRSJ
+lineage/MS
+lineal/Y
+lineament/SM
+linear/Y
+linearity/M
+linebacker/MS
+lined/U
+linefeed
+lineman/M
+linemen
+linen/SM
+linens/M
+liner/M
+linesman/M
+linesmen
+lineup/MS
+ling/M
+linger/ZGJDRS
+lingerer/M
+lingerie/M
+lingering/Y
+lingo/M
+lingoes
+lingual
+linguine/M
+linguist/SM
+linguistic/S
+linguistically
+linguistics/M
+liniment/SM
+lining/M
+link/MDRSG
+linkage/MS
+linkman
+linkmen
+linkup/MS
+linnet/MS
+lino
+linoleum/M
+linseed/M
+lint's
+lint/CDG
+lintel/MS
+lints
+linty/TR
+lion/MS
+lioness/MS
+lionhearted
+lionization/M
+lionize/GDS
+lip/SM
+lipid/SM
+liposuction/M
+lipped
+lippy
+lipread/GRS
+lipreader/M
+lipreading/M
+lipstick/MDSG
+liq
+liquefaction/M
+liquefy/DSG
+liqueur/SM
+liquid/MS
+liquidate/XGNDS
+liquidation/M
+liquidator/MS
+liquidity/M
+liquidize/ZGDRS
+liquidizer/M
+liquor/MDGS
+lira/M
+lire
+lisle/M
+lisp/MDRSZG
+lisper/M
+lissome
+list/MDNSJXG
+listed/U
+listen/BMDRZG
+listener/M
+listeria
+listing/M
+listless/YP
+listlessness/M
+lit/ZR
+litany/SM
+litchi/MS
+lite
+liter/M
+literacy/M
+literal/SMYP
+literalness/M
+literariness/M
+literary/P
+literate/SMY
+literati/M
+literature/M
+lithe/RPYT
+litheness/M
+lithesome
+lithium/M
+lithograph/MDRZG
+lithographer/M
+lithographic
+lithographically
+lithographs
+lithography/M
+lithosphere/SM
+litigant/SM
+litigate/DSGN
+litigation/M
+litigator/MS
+litigious/P
+litigiousness/M
+litmus/M
+litotes/M
+litter/MDRSZG
+litterateur/MS
+litterbug/MS
+litterer/M
+little/MTRP
+littleness/M
+littoral/SM
+liturgical/Y
+liturgist/SM
+liturgy/SM
+livability/M
+livable/U
+live/ATGDSB
+livelihood/SM
+liveliness/M
+livelong/S
+lively/PRT
+liven/SGD
+liver's
+liver/S
+liveried
+liverish
+liverwort/MS
+liverwurst/M
+livery/CSM
+liveryman/CM
+liverymen/C
+livestock/M
+liveware
+livid/Y
+living/MS
+lix/K
+lizard/MS
+ll
+llama/SM
+llano/SM
+lo
+load's
+load/AUGSD
+loadable
+loader/MS
+loading's
+loaf/MDRSZG
+loafer/M
+loam/M
+loamy/TR
+loan/MDRSZG
+loaner/M
+loansharking/M
+loanword/MS
+loath/JZGDRS
+loathe
+loather/M
+loathing/M
+loathsome/PY
+loathsomeness/M
+loaves
+lob/SMD
+lobar
+lobbed
+lobber/MS
+lobbing
+lobby/GDSM
+lobbyist/MS
+lobe/MS
+lobotomize/DSG
+lobotomy/SM
+lobster/MS
+local/SMY
+locale/MS
+locality/SM
+localization/M
+localize/DSG
+locate/EAGNDS
+location's/A
+location/ESM
+locator/MS
+locavore/SM
+loci
+lock/MDRSBZG
+locker/M
+locket/MS
+lockjaw/M
+lockout/MS
+locksmith/M
+locksmiths
+lockstep/M
+lockup/MS
+loco/S
+locomotion/M
+locomotive/MS
+locoweed/SM
+locum/S
+locus/M
+locust/SM
+locution/MS
+lode/MS
+lodestar/MS
+lodestone/MS
+lodge/DRSJMZG
+lodger/M
+lodging/M
+lodgings/M
+loft/MDSG
+loftily
+loftiness/M
+lofty/PRT
+log/SM
+loganberry/SM
+logarithm/SM
+logarithmic
+logbook/SM
+loge/MS
+logged
+logger/SM
+loggerhead/SM
+loggia/SM
+logging/M
+logic/M
+logical/Y
+logicality/M
+logician/MS
+login/SM
+logistic/S
+logistical/Y
+logistics/M
+logjam/SM
+logo/MS
+logoff/SM
+logon/SM
+logotype/SM
+logout/SM
+logrolling/M
+logy/RT
+loin/MS
+loincloth/M
+loincloths
+loiter/ZGSDR
+loiterer/M
+loitering/M
+lolcat/SM
+loll/DSG
+lollipop/SM
+lollop/GSD
+lolly/S
+lollygag/S
+lollygagged
+lollygagging
+lone/YZR
+loneliness/M
+lonely/PTR
+loner/M
+lonesome/YP
+lonesomeness/M
+long's
+long/KDSTG
+longboat/MS
+longbow/MS
+longer
+longevity/M
+longhair/MS
+longhand/M
+longhorn/MS
+longhouse/S
+longing/MYS
+longish
+longitude/MS
+longitudinal/Y
+longshoreman/M
+longshoremen
+longsighted
+longstanding
+longtime
+longueur/SM
+longways
+loo
+loofah/M
+loofahs
+look/MDRSZG
+lookalike/MS
+looker/M
+lookout/MS
+lookup
+loom/MDSG
+loon/MS
+loonie/M
+loony/RSMT
+loop/MDSG
+loophole/MS
+loopy/RT
+loos/NRX
+loose/UDSTG
+loosely
+loosen/UGSD
+looseness/M
+loot/MDRSZG
+looter/M
+looting/M
+lop/S
+lope/MGDS
+lopped
+lopping
+lopsided/YP
+lopsidedness/M
+loquacious/PY
+loquaciousness/M
+loquacity/M
+lord/MDYSG
+lordliness/M
+lordly/TPR
+lordship/SM
+lore/M
+lorgnette/SM
+loris/MS
+lorn
+lorry/SM
+lose/ZGRSJ
+loser/M
+losing/M
+loss/MS
+lossless
+lost
+lot/SM
+lotion/SM
+lottery/SM
+lotto/M
+lotus/MS
+louche
+loud/RYTP
+loudhailer/SM
+loudmouth/MD
+loudmouths
+loudness/M
+loudspeaker/MS
+lough
+loughs
+lounge/MZGDRS
+lounger/M
+lour/DSG
+louse's
+louse/CDSG
+lousily
+lousiness/M
+lousy/TPR
+lout/MS
+loutish/PY
+louver/MDS
+lovableness/M
+lovably
+love/MYZGDRSB
+lovebird/SM
+lovechild/M
+loved/U
+loveless
+loveliness/M
+lovelorn
+lovely/RSMTP
+lovemaking/M
+lover/M
+lovesick
+lovey/S
+loving/Y
+low/SZTGMDRYP
+lowborn
+lowboy/MS
+lowbrow/SM
+lowdown/M
+lower/GD
+lowercase/M
+lowermost
+lowish
+lowland/SZMR
+lowlander/M
+lowlife/SM
+lowliness/M
+lowly/TPR
+lowness/M
+lox/M
+loyal/ETY
+loyaler
+loyalism/M
+loyalist/SM
+loyalties
+loyalty/EM
+lozenge/SM
+ltd
+luau/MS
+lubber/MYS
+lube/MGDS
+lubricant/SM
+lubricate/DSGN
+lubrication/M
+lubricator/MS
+lubricious/Y
+lubricity/M
+lucid/PY
+lucidity/M
+lucidness/M
+luck/MDSG
+luckily/U
+luckiness/UM
+luckless
+lucky/UPTR
+lucrative/YP
+lucrativeness/M
+lucre/M
+lucubrate/GNDS
+lucubration/M
+ludicrous/YP
+ludicrousness/M
+ludo
+luff/DSG
+lug/SM
+luge/S
+luggage/M
+lugged
+lugger/MS
+lugging
+lughole/S
+lugsail/SM
+lugubrious/YP
+lugubriousness/M
+lukewarm/YP
+lukewarmness/M
+lull/MDSG
+lullaby/SM
+lulu/S
+lumbago/M
+lumbar
+lumber/MDRZGS
+lumberer/M
+lumbering/M
+lumberjack/SM
+lumberman/M
+lumbermen
+lumberyard/SM
+lumen
+luminary/SM
+luminescence/M
+luminescent
+luminosity/M
+luminous/Y
+lummox/MS
+lump/MDNSG
+lumpectomy/S
+lumpenproletariat
+lumpiness/M
+lumpish
+lumpy/TRP
+lunacy/SM
+lunar
+lunatic/SM
+lunch/GMDS
+lunchbox/S
+luncheon/SM
+luncheonette/SM
+lunchroom/MS
+lunchtime/MS
+lung/MDSG
+lunge/SM
+lungfish/MS
+lungful/S
+lunkhead/MS
+lupine/MS
+lupus/M
+lurch/GMDS
+lure/MGDS
+lurgy
+lurid/PY
+luridness/M
+lurk/DRSZG
+luscious/PY
+lusciousness/M
+lush/MRSYPT
+lushness/M
+lust/MDRSG
+luster/M
+lusterless
+lustful/Y
+lustily
+lustiness/M
+lustrous/Y
+lusty/PTR
+lutanist/SM
+lute/MS
+lutenist/SM
+lutetium/M
+lux
+luxuriance/M
+luxuriant/Y
+luxuriate/DSGN
+luxuriation/M
+luxurious/PY
+luxuriousness/M
+luxury/SM
+lvi
+lvii
+lxi
+lxii
+lxiv
+lxix
+lxvi
+lxvii
+lyceum/MS
+lychgate/S
+lye/MG
+lying/M
+lymph/M
+lymphatic/SM
+lymphocyte/SM
+lymphoid
+lymphoma/SM
+lynch/JZGDRS
+lyncher/M
+lynching/M
+lynx/MS
+lyre/MS
+lyrebird/MS
+lyric/SM
+lyrical/Y
+lyricism/M
+lyricist/SM
+lysosomal
+lysosomes
+m/KAS
+ma'am
+ma/SMH
+mac/SGMD
+macabre
+macadam/M
+macadamia/SM
+macadamize/GDS
+macaque/MS
+macaroni/MS
+macaroon/MS
+macaw/SM
+mace/MS
+macerate/DSGN
+maceration/M
+mach/M
+machete/SM
+machinate/GNDSX
+machination/M
+machine/DSMGB
+machinery/M
+machinist/MS
+machismo/M
+macho/M
+mackerel/SM
+mackinaw/SM
+mackintosh/MS
+macrame/M
+macro/SM
+macrobiotic/S
+macrobiotics/M
+macrocosm/SM
+macroeconomic/S
+macroeconomics/M
+macrology/S
+macron/MS
+macrophages
+macroscopic
+mad/SMYP
+madam/SM
+madame/M
+madcap/MS
+madden/DGS
+maddening/Y
+madder/MS
+maddest
+madding
+made/AU
+mademoiselle/MS
+madhouse/SM
+madman/M
+madmen
+madness/M
+madras/MS
+madrasa/SM
+madrasah/M
+madrasahs
+madrassa/SM
+madrigal/SM
+madwoman/M
+madwomen
+maelstrom/SM
+maestro/SM
+mafia/SM
+mafiosi
+mafioso/M
+mag/SM
+magazine/SM
+mage/MS
+magenta/M
+maggot/MS
+maggoty
+magi/M
+magic/SM
+magical/Y
+magician/SM
+magicked
+magicking
+magisterial/Y
+magistracy/M
+magistrate/SM
+magma/M
+magnanimity/M
+magnanimous/Y
+magnate/SM
+magnesia/M
+magnesium/M
+magnet/MS
+magnetic
+magnetically
+magnetism/M
+magnetite/M
+magnetizable
+magnetization/CM
+magnetize/CGDS
+magneto/SM
+magnetometer/SM
+magnetosphere
+magnification/M
+magnificence/M
+magnificent/Y
+magnifier/M
+magnify/ZGXDRSN
+magniloquence/M
+magniloquent
+magnitude/SM
+magnolia/MS
+magnon
+magnum/MS
+magpie/MS
+magus/M
+maharajah/M
+maharajahs
+maharani/SM
+maharishi/SM
+mahatma/SM
+mahogany/SM
+mahout/MS
+maid/MNSX
+maiden/MY
+maidenhair/M
+maidenhead/SM
+maidenhood/M
+maidservant/SM
+mail/JMDRSZG
+mailbag/SM
+mailbomb/GSD
+mailbox/MS
+mailer/M
+mailing/M
+maillot/SM
+mailman/M
+mailmen
+mailshot/S
+maim/DSG
+main/MYS
+mainframe/SM
+mainland/MS
+mainline/MGDS
+mainmast/MS
+mainsail/MS
+mainspring/MS
+mainstay/MS
+mainstream/SMDG
+maintain/ZGBDRS
+maintainability
+maintainable/U
+maintained/U
+maintenance/M
+maintop/SM
+maisonette/MS
+maize/SM
+majestic
+majestically
+majesty/SM
+majolica/M
+major/SGMDY
+majordomo/MS
+majorette/MS
+majoritarian/SM
+majoritarianism
+majority/SM
+make's/A
+make/UAGS
+makeover/MS
+maker/SM
+makeshift/SM
+makeup/MS
+makeweight/S
+making/MS
+makings/M
+malachite/M
+maladjusted
+maladjustment/M
+maladministration
+maladroit/PY
+maladroitness/M
+malady/SM
+malaise/M
+malamute/MS
+malapropism/SM
+malaria/M
+malarial
+malarkey/M
+malathion/M
+malcontent/MS
+male/MPS
+malediction/SM
+malefaction/M
+malefactor/SM
+malefic
+maleficence/M
+maleficent
+maleness/M
+malevolence/M
+malevolent/Y
+malfeasance/M
+malformation/SM
+malformed
+malfunction/MDSG
+malice/M
+malicious/PY
+maliciousness/M
+malign/DSG
+malignancy/SM
+malignant/Y
+malignity/M
+malinger/ZGSDR
+malingerer/M
+mall/MS
+mallard/SM
+malleability/M
+malleable
+mallet/MS
+mallow/MS
+malnourished
+malnutrition/M
+malocclusion/M
+malodorous
+malpractice/SM
+malt/MDSG
+malted/MS
+maltose/M
+maltreat/GLDS
+maltreatment/M
+malty/TR
+malware/M
+mam/S
+mama/MS
+mamba/SM
+mambo/SGMD
+mamma/M
+mammal/MS
+mammalian/MS
+mammary
+mammogram/MS
+mammography/M
+mammon/M
+mammoth/M
+mammoths
+mammy/SM
+man's/F
+man/USY
+manacle/DSMG
+manage/ZGDRSL
+manageability/M
+manageable/U
+management/MS
+manager/M
+manageress/S
+managerial
+manana/MS
+manatee/SM
+mandala/SM
+mandamus/MS
+mandarin/MS
+mandate/DSMG
+mandatory
+mandible/MS
+mandibular
+mandolin/MS
+mandrake/MS
+mandrel/SM
+mandrill/MS
+mane/MDS
+manege/M
+maneuver/MDGSBJ
+maneuverability/M
+manful/Y
+manga/M
+manganese/M
+mange/DRMZ
+manger/M
+mangetout/S
+manginess/M
+mangle/MZGDRS
+mango/M
+mangoes
+mangrove/MS
+mangy/TRP
+manhandle/GDS
+manhole/SM
+manhood/M
+manhunt/SM
+mania/SM
+maniac/MS
+maniacal/Y
+manic/SM
+manically
+manicure/MGDS
+manicurist/MS
+manifest/MDYSG
+manifestation/SM
+manifesto/SM
+manifold/GMDS
+manikin/SM
+manila/M
+manioc/MS
+manipulable
+manipulate/XGNVDS
+manipulation/M
+manipulative/Y
+manipulator/MS
+mankind/M
+manky
+manlike
+manliness/M
+manly/UTR
+manna/M
+manned/U
+mannequin/SM
+manner/MDYS
+mannerism/SM
+mannerly/U
+manning/U
+mannish/YP
+mannishness/M
+manometer/SM
+manor/SM
+manorial
+manpower/M
+manque
+mansard/MS
+manse/SXMN
+manservant/M
+mansion/M
+manslaughter/M
+manta/SM
+mantel/MS
+mantelpiece/SM
+mantelshelf
+mantelshelves
+mantes
+mantilla/SM
+mantis/MS
+mantissa/SM
+mantle's
+mantle/EGDS
+mantra/MS
+manual/MYS
+manufacture/DRSMZG
+manufacturer/M
+manufacturing/M
+manumission/SM
+manumit/S
+manumitted
+manumitting
+manure/MGDS
+manuscript/MS
+many/M
+map's
+map/AS
+maple/SM
+mapmaker/SM
+mapped/A
+mapper/MS
+mapping/S
+mar/S
+marabou/MS
+marabout/SM
+maraca/MS
+maraschino/MS
+marathon/SMRZ
+marathoner/M
+maraud/ZGDRS
+marauder/M
+marble/MGDS
+marbleize/GDS
+marbling/M
+march/ZGMDRS
+marcher/M
+marchioness/MS
+mare/MS
+margarine/M
+margarita/MS
+marge
+margin/MS
+marginal/YS
+marginalia/M
+marginalization/M
+marginalize/GDS
+maria/M
+mariachi/MS
+marigold/MS
+marijuana/M
+marimba/SM
+marina/MS
+marinade/DSMG
+marinara/M
+marinate/DSGN
+marination/M
+marine/MZRS
+mariner/M
+marionette/MS
+marital/Y
+maritime
+marjoram/M
+mark/AMDSG
+markdown/SM
+marked/U
+markedly
+marker/MS
+market/MDRZGBS
+marketability/M
+marketable/U
+marketeer/SM
+marketer/M
+marketing/M
+marketplace/SM
+marking/SM
+markka/M
+markkaa
+marksman/M
+marksmanship/M
+marksmen
+markup/MS
+marl/M
+marlin/MS
+marlinespike/SM
+marmalade/M
+marmoreal
+marmoset/SM
+marmot/MS
+maroon/MDGS
+marque/MS
+marquee/SM
+marquess/MS
+marquetry/M
+marquis/MS
+marquise/M
+marquisette/M
+marred/U
+marriage/ASM
+marriageability/M
+marriageable
+married/SM
+marring
+marrow/MS
+marry/AGDS
+marsh/MS
+marshal/SMDG
+marshland/SM
+marshmallow/SM
+marshy/RT
+marsupial/MS
+mart/MNSX
+marten/M
+martensite
+martial/Y
+martian/S
+martin/MS
+martinet/MS
+martingale/MS
+martini/SM
+martyr/MDGS
+martyrdom/M
+marvel/MDGS
+marvelous/Y
+marzipan/M
+masc
+mascara/GMDS
+mascot/MS
+masculine/SM
+masculinity/M
+maser/SM
+mash/MDRSZG
+masher/M
+mashup/MS
+mask's
+mask/UDSG
+masker/MS
+masochism/M
+masochist/SM
+masochistic
+masochistically
+mason/SM
+masonic
+masonry/M
+masque/MS
+masquerade/DRSMZG
+masquerader/M
+mass/MDSGV
+massacre/MGDS
+massage/DSMG
+masseur/SM
+masseuse/MS
+massif/MS
+massive/PY
+massiveness/M
+mast/MDS
+mastectomy/SM
+master's
+master/ADGS
+masterclass/S
+masterful/Y
+masterly
+mastermind/SGMD
+masterpiece/MS
+masterstroke/SM
+masterwork/MS
+mastery/M
+masthead/MS
+mastic/M
+masticate/GNDS
+mastication/M
+mastiff/SM
+mastitis
+mastodon/SM
+mastoid/SM
+masturbate/GNDS
+masturbation/M
+masturbatory
+mat/SZGMDR
+matador/SM
+match/AMS
+matchbook/SM
+matchbox/MS
+matched/U
+matching
+matchless
+matchlock/SM
+matchmaker/MS
+matchmaking/M
+matchstick/MS
+matchwood/M
+mate/MS
+material/SMY
+materialism/M
+materialist/SM
+materialistic
+materialistically
+materialization/M
+materialize/DSG
+materiel/M
+maternal/Y
+maternity/M
+matey/S
+mathematical/Y
+mathematician/SM
+mathematics/M
+matinee/SM
+mating/M
+matins/M
+matriarch/M
+matriarchal
+matriarchs
+matriarchy/SM
+matrices
+matricidal
+matricide/MS
+matriculate/DSGN
+matriculation/M
+matrimonial
+matrimony/M
+matrix/M
+matron/MYS
+matte/DRSMZG
+matter/MDG
+matting/M
+mattock/SM
+mattress/MS
+maturate/GNDS
+maturation/M
+mature/YTGDRS
+maturity/SM
+matzo/SMH
+matzoh/M
+matzohs
+matzot
+maudlin
+maul/MDRSZG
+mauler/M
+maunder/SDG
+mausoleum/SM
+mauve/M
+maven/SM
+maverick/SM
+maw/SM
+mawkish/PY
+mawkishness/M
+max/GMDS
+maxi/MS
+maxilla/M
+maxillae
+maxillary
+maxim/SM
+maxima
+maximal/Y
+maximization/M
+maximize/GDS
+maximum/SM
+may/M
+maybe/SM
+mayday/MS
+mayflower/MS
+mayfly/SM
+mayhem/M
+mayn't
+mayo/M
+mayonnaise/M
+mayor/SM
+mayoral
+mayoralty/M
+mayoress/MS
+maypole/SM
+mayst
+maze/MS
+mazurka/MS
+mdse
+me/DSH
+mead/M
+meadow/MS
+meadowlark/MS
+meager/PY
+meagerness/M
+meal/MS
+mealiness/M
+mealtime/SM
+mealy/TPR
+mealybug/SM
+mealymouthed
+mean/MRYJPSTG
+meander/SMDJG
+meanderings/M
+meanie/M
+meaning/M
+meaningful/PY
+meaningfulness/M
+meaningless/YP
+meaninglessness/M
+meanness/M
+meant/U
+meantime/M
+meanwhile/M
+meany/SM
+meas
+measles/M
+measly/RT
+measurable
+measurably
+measure's
+measure/ADSG
+measured/U
+measureless
+measurement/MS
+meat/MS
+meatball/MS
+meathead/MS
+meatiness/M
+meatless
+meatloaf/M
+meatloaves
+meatpacking/M
+meaty/TPR
+mecca/SM
+mechanic/MS
+mechanical/Y
+mechanics/M
+mechanism/SM
+mechanistic
+mechanistically
+mechanization/M
+mechanize/DSG
+medal/SM
+medalist/MS
+medallion/SM
+meddle/ZGDRS
+meddler/M
+meddlesome
+media/SM
+medial/AY
+median/MS
+mediate/ADSGN
+mediated/U
+mediation/AM
+mediator/MS
+medic/SM
+medicaid/M
+medical/SMY
+medicament/M
+medicare/M
+medicate/GNXDS
+medication/M
+medicinal/Y
+medicine/MS
+medico/MS
+medieval
+medievalist/MS
+mediocre
+mediocrity/SM
+meditate/DSGNVX
+meditation/M
+meditative/Y
+medium/MS
+medley/MS
+medulla/SM
+medusa
+medusae
+meed/M
+meek/RYPT
+meekness/M
+meerschaum/SM
+meet/MJSG
+meeting/M
+meetinghouse/SM
+meetup/MS
+meg/S
+mega
+megabit/SM
+megabucks/M
+megabyte/MS
+megachurch/MS
+megacycle/SM
+megadeath/M
+megadeaths
+megagram/S
+megahertz/M
+megajoule/S
+megalith/M
+megalithic
+megaliths
+megalomania/M
+megalomaniac/SM
+megalopolis/MS
+megameter/S
+megapascal/S
+megaphone/DSMG
+megapixel/SM
+megastar/S
+megaton/SM
+megawatt/MS
+meh
+meiosis/M
+meiotic
+melamine/M
+melancholia/M
+melancholic/S
+melancholy/M
+melange/MS
+melanin/M
+melanoma/SM
+meld/MDSG
+melee/SM
+meliorate/GNVDS
+melioration/M
+mellifluous/PY
+mellifluousness/M
+mellow/PTGDRYS
+mellowness/M
+melodic
+melodically
+melodious/YP
+melodiousness/M
+melodrama/MS
+melodramatic/S
+melodramatically
+melodramatics/M
+melody/SM
+melon/SM
+melt's
+melt/ADSG
+meltdown/SM
+member's
+member/EAS
+membership/SM
+membrane/SM
+membranous
+meme/MS
+memento/MS
+memo/MS
+memoir/MS
+memorabilia/M
+memorability/M
+memorable/U
+memorably
+memorandum/MS
+memorial/SM
+memorialize/DSG
+memorization/M
+memorize/DSG
+memory/SM
+memsahib/S
+men/M
+menace/MGDS
+menacing/Y
+menage/MS
+menagerie/MS
+mend/MDRSZG
+mendacious/Y
+mendacity/M
+mendelevium/M
+mender/M
+mendicancy/M
+mendicant/SM
+mending/M
+menfolk/MS
+menfolks/M
+menhaden/M
+menial/MYS
+meningeal
+meninges
+meningitis/M
+meninx/M
+menisci
+meniscus/M
+menopausal
+menopause/M
+menorah/M
+menorahs
+mensch/MS
+menservants
+menses/M
+menstrual
+menstruate/GNDS
+menstruation/M
+mensurable
+mensuration/M
+menswear/M
+mental/Y
+mentalist/SM
+mentality/SM
+menthol/M
+mentholated
+mention/GSMD
+mentioned/U
+mentor/MDSG
+mentorship
+menu/MS
+meow/MDSG
+mercantile
+mercantilism/M
+mercenary/SM
+mercer/MS
+mercerize/GDS
+merchandise/MZGDRS
+merchandiser/M
+merchandising/M
+merchant/MBS
+merchantman/M
+merchantmen
+merciful/UY
+merciless/PY
+mercilessness/M
+mercurial/Y
+mercuric
+mercury/M
+mercy/SM
+mere/MYTS
+meretricious/YP
+meretriciousness/M
+merganser/MS
+merge/DRSZG
+merger/M
+meridian/MS
+meringue/MS
+merino/MS
+merit/CSM
+merited/U
+meriting
+meritless
+meritocracy/SM
+meritocratic
+meritorious/PY
+meritoriousness/M
+mermaid/SM
+merman/M
+mermen
+merrily
+merriment/M
+merriness/M
+merry/TRP
+merrymaker/MS
+merrymaking/M
+mesa/MS
+mescal/MS
+mescalin
+mescaline/M
+mesdames
+mesdemoiselles
+mesh/MDSG
+mesmeric
+mesmerism/M
+mesmerize/ZGDRS
+mesmerizer/M
+mesomorph/M
+mesomorphs
+meson/SM
+mesosphere/SM
+mesquite/SM
+mess/MDSG
+message/MGDS
+messeigneurs
+messenger/SM
+messiah/M
+messiahs
+messianic
+messieurs
+messily
+messiness/M
+messmate/SM
+messy/PTR
+mestizo/MS
+met
+meta
+metabolic
+metabolically
+metabolism/SM
+metabolite/SM
+metabolize/DSG
+metacarpal/SM
+metacarpi
+metacarpus/M
+metadata
+metal/SMD
+metalanguage/MS
+metallic
+metallurgic
+metallurgical
+metallurgist/MS
+metallurgy/M
+metalwork/MRZG
+metalworker/M
+metalworking/M
+metamorphic
+metamorphism/M
+metamorphose/GDS
+metamorphosis/M
+metaphor/MS
+metaphoric
+metaphorical/Y
+metaphysical/Y
+metaphysics/M
+metastases
+metastasis/M
+metastasize/DSG
+metastatic
+metatarsal/MS
+metatarsi
+metatarsus/M
+metatheses
+metathesis/M
+mete/MZGDRS
+metempsychoses
+metempsychosis/M
+meteor/MS
+meteoric
+meteorically
+meteorite/SM
+meteoroid/SM
+meteorologic
+meteorological
+meteorologist/SM
+meteorology/M
+meter/GMD
+metformin
+methadone/M
+methamphetamine/M
+methane/M
+methanol/M
+methinks
+method/MS
+methodical/YP
+methodicalness/M
+methodological/Y
+methodology/SM
+methotrexate
+methought
+meths
+methyl/M
+meticulous/YP
+meticulousness/M
+metier/MS
+metric/S
+metrical/Y
+metricate/GNDS
+metrication/M
+metricize/GDS
+metro/SM
+metronome/MS
+metropolis/MS
+metropolitan
+mettle/M
+mettlesome
+mew/SGMD
+mewl/DSG
+mews/M
+mezzanine/MS
+mezzo/SM
+mfg
+mfr/S
+mg
+mgr
+mi/MNX
+miasma/MS
+mic/S
+mica/M
+mice
+mick/S
+mickey/MS
+micro/SM
+microaggression/SM
+microbe/MS
+microbial
+microbiological
+microbiologist/MS
+microbiology/M
+microbrewery/SM
+microchip/MS
+microcircuit/SM
+microcode
+microcomputer/MS
+microcosm/MS
+microcosmic
+microdot/SM
+microeconomics/M
+microelectronic/S
+microelectronics/M
+microfiber/MS
+microfiche/M
+microfilm/GMDS
+microfinance
+microfloppies
+microgroove/SM
+microlight/MS
+microloan/MS
+micromanage/ZGDRSL
+micromanagement/M
+micromanager/M
+micrometeorite/SM
+micrometer/MS
+micron/MS
+microorganism/MS
+microphone/SM
+microplastics
+microprocessor/MS
+microscope/SM
+microscopic
+microscopical/Y
+microscopy/M
+microsecond/MS
+microsurgery/M
+microwave/DSMGB
+microwaveable
+mid
+midair/M
+midday/M
+midden/MS
+middle/MGS
+middlebrow/SM
+middleman/M
+middlemen
+middlemost
+middleweight/MS
+middy/SM
+midfield/RZ
+midge/SM
+midget/MS
+midi/MS
+midland/MS
+midlife/M
+midmost
+midnight/M
+midpoint/MS
+midrib/MS
+midriff/MS
+midsection/MS
+midshipman/M
+midshipmen
+midships
+midsize
+midst/M
+midstream/M
+midsummer/M
+midterm/MS
+midtown/M
+midway/MS
+midweek/MS
+midwife/MGDS
+midwifery/SM
+midwinter/M
+midwives
+midyear/MS
+mien/M
+miff/DSG
+might've
+might/M
+mightily
+mightiness/M
+mightn't
+mighty/TRP
+mignonette/SM
+migraine/MS
+migrant/MS
+migrate/AGDS
+migration/SM
+migratory
+mikado/MS
+mike/MGDS
+mil/SZMR
+milady/SM
+milch
+mild/MRYTP
+mildew/SMDG
+mildness/M
+mile/MS
+mileage/SM
+milepost/MS
+miler/M
+milestone/MS
+milf/MS
+milieu/SM
+militancy/M
+militant/MYS
+militarily
+militarism/M
+militarist/SM
+militaristic
+militarization/CM
+militarize/CDSG
+military/M
+militate/GDS
+militia/SM
+militiaman/M
+militiamen
+milk/MDRSZG
+milker/M
+milkiness/M
+milkmaid/MS
+milkman/M
+milkmen
+milkshake/SM
+milksop/MS
+milkweed/SM
+milky/RTP
+mill/MDRSZGJ
+millage/M
+millennia
+millennial/M
+millennium/MS
+miller/M
+millet/M
+milliard/MS
+millibar/MS
+milligram/MS
+milliliter/MS
+millimeter/MS
+milliner/MS
+millinery/M
+milling/M
+million/HSM
+millionaire/SM
+millionairess/S
+millionth/M
+millionths
+millipede/SM
+millisecond/SM
+millpond/SM
+millrace/SM
+millstone/SM
+millstream/MS
+millwright/SM
+milometer/S
+milquetoast/SM
+milt/MDSG
+mime/MGDS
+mimeograph/GMD
+mimeographs
+mimetic
+mimic/SM
+mimicked
+mimicker/SM
+mimicking
+mimicry/SM
+mimosa/SM
+min
+minaret/MS
+minatory
+mince/DRSMZG
+mincemeat/M
+mincer/M
+mind's
+mind/ADRSZG
+mindbogglingly
+minded/P
+mindful/YP
+mindfulness/M
+mindless/YP
+mindlessness/M
+mindset/MS
+mine/MZGNDRSX
+minefield/SM
+miner/M
+mineral/MS
+mineralogical
+mineralogist/MS
+mineralogy/M
+minestrone/M
+minesweeper/SM
+mingle/DSG
+mingy
+mini/MS
+miniature/MS
+miniaturist/MS
+miniaturization/M
+miniaturize/GDS
+minibar/S
+minibike/SM
+minibus/MS
+minicab/S
+minicam/MS
+minicomputer/SM
+minifloppies
+minim/SM
+minima
+minimal/Y
+minimalism/M
+minimalist/MS
+minimization/M
+minimize/DSG
+minimum/MS
+mining/M
+minion/M
+miniseries/M
+miniskirt/MS
+minister/SGMD
+ministerial
+ministrant/MS
+ministration/MS
+ministry/SM
+minivan/MS
+mink/MS
+minnesinger/MS
+minnow/SM
+minor/SMDG
+minority/SM
+minoxidil/M
+minster/MS
+minstrel/SM
+minstrelsy/M
+mint/MDRSZG
+mintage/M
+minter/M
+minty/RT
+minuend/MS
+minuet/SM
+minus/MS
+minuscule/MS
+minute/PDRSMYTG
+minuteman/M
+minutemen
+minuteness/M
+minutia/M
+minutiae
+minx/MS
+miracle/MS
+miraculous/Y
+mirage/SM
+mire/MGDS
+mirror/GSMD
+mirth/M
+mirthful/PY
+mirthfulness/M
+mirthless/Y
+miry/RT
+misaddress/DSG
+misadventure/MS
+misaligned
+misalignment/M
+misalliance/MS
+misanthrope/SM
+misanthropic
+misanthropically
+misanthropist/MS
+misanthropy/M
+misapplication/M
+misapply/DSGNX
+misapprehend/GSD
+misapprehension/MS
+misappropriate/XDSGN
+misappropriation/M
+misbegotten
+misbehave/GDS
+misbehavior/M
+misc
+miscalculate/DSXGN
+miscalculation/M
+miscall/DSG
+miscarriage/MS
+miscarry/GDS
+miscast/SG
+miscegenation/M
+miscellaneous/Y
+miscellany/SM
+mischance/SM
+mischief/M
+mischievous/YP
+mischievousness/M
+miscibility/M
+miscible
+misclassified
+miscommunication/S
+misconceive/GDS
+misconception/SM
+misconduct/MDGS
+misconstruction/MS
+misconstrue/GDS
+miscount/MDSG
+miscreant/SM
+miscue/DSMG
+misdeal/GMS
+misdealt
+misdeed/MS
+misdemeanor/MS
+misdiagnose/GDS
+misdiagnosis/M
+misdid
+misdirect/SDG
+misdirection/M
+misdo/JG
+misdoes
+misdoing/M
+misdone
+miser/SBMY
+miserableness/M
+miserably
+miserliness/M
+misery/SM
+misfeasance/M
+misfeature/S
+misfile/GDS
+misfire/MGDS
+misfit/SM
+misfitted
+misfitting
+misfortune/SM
+misgiving/MS
+misgovern/SDGL
+misgovernment/M
+misguidance/M
+misguide/DSG
+misguided/Y
+mishandle/DSG
+mishap/SM
+mishear/GS
+misheard
+mishit/S
+mishitting
+mishmash/MS
+misidentify/GDS
+misinform/DGS
+misinformation/M
+misinterpret/SGD
+misinterpretation/SM
+misjudge/DSG
+misjudgment/SM
+mislabel/GSD
+mislaid
+mislay/GS
+mislead/GS
+misleading/Y
+misled
+mismanage/LGDS
+mismanagement/M
+mismatch/GMDS
+misname/GDS
+misnomer/MS
+misogamist/MS
+misogamy/M
+misogynist/SM
+misogynistic
+misogynous
+misogyny/M
+misplace/GLDS
+misplacement/M
+misplay/GMDS
+misprint/GMDS
+misprision/M
+mispronounce/DSG
+mispronunciation/SM
+misquotation/MS
+misquote/MGDS
+misread/GJS
+misreading/M
+misremember/GDS
+misreport/MDGS
+misrepresent/GDS
+misrepresentation/MS
+misrule/MGDS
+miss's
+miss/EDSGV
+missal/ESM
+missed/U
+misshape/GDS
+misshapen
+missile/MS
+missilery/M
+mission/AMS
+missionary/SM
+missioner/SM
+missive/MS
+misspeak/GS
+misspell/GDJS
+misspelling/M
+misspend/GS
+misspent
+misspoke
+misspoken
+misstate/GDSL
+misstatement/SM
+misstep/MS
+missus/MS
+mist's
+mist/CDRSZG
+mistakable/U
+mistake/BMGS
+mistaken/Y
+mister's
+mistily
+mistime/GDS
+mistiness/M
+mistletoe/M
+mistook
+mistral/MS
+mistranslated
+mistreat/LDGS
+mistreatment/M
+mistress/MS
+mistrial/MS
+mistrust/MDSG
+mistrustful/Y
+misty/PRT
+mistype/GS
+misunderstand/SGJ
+misunderstanding/M
+misunderstood
+misuse/DSMG
+mite/MZRS
+miter/MDG
+mitigate/DSGN
+mitigated/U
+mitigation/M
+mitochondria
+mitochondrial
+mitochondrion
+mitoses
+mitosis/M
+mitotic
+mitral
+mitt/MNSX
+mitten/M
+mitzvah
+mix/ZGMDRSB
+mixed/U
+mixer/M
+mixture/SM
+mizzen/MS
+mizzenmast/SM
+mkay
+mks
+ml
+mm
+mnemonic/MS
+mnemonically
+mo/CKHS
+moan/MDRSZG
+moaner/M
+moat/MDS
+mob's
+mob/CS
+mobbed/C
+mobbing/C
+mobile/MS
+mobility/M
+mobilization/CM
+mobilizations
+mobilize/CDSG
+mobilizer/SM
+mobster/SM
+moccasin/SM
+mocha/SM
+mock/DRSZG
+mocker/M
+mockery/SM
+mocking/Y
+mockingbird/SM
+mod/STM
+modal/SM
+modality/S
+modded
+modding
+mode/MS
+model/ZGSJMDR
+modeler/M
+modeling/M
+modem/SM
+moderate/MYGNPDS
+moderateness/M
+moderation/M
+moderator/SM
+modern/MYPS
+modernism/M
+modernist/SM
+modernistic
+modernity/M
+modernization/M
+modernize/DRSZG
+modernizer/M
+modernness/M
+modest/Y
+modesty/M
+modicum/SM
+modifiable
+modification/M
+modified/U
+modifier/M
+modify/DRSXZGN
+modish/YP
+modishness/M
+modular
+modularization
+modulate/CGNDS
+modulation/CM
+modulations
+modulator/MS
+module/MS
+modulo
+modulus
+moggy
+mogul/SM
+mohair/M
+moi
+moiety/SM
+moil/MDSG
+moire/SM
+moist/XTPNRY
+moisten/DRZG
+moistener/M
+moistness/M
+moisture/M
+moisturize/ZGDRS
+moisturizer/M
+molar/SM
+molasses/M
+mold/MDRJSZG
+moldboard/SM
+molder/GMD
+moldiness/M
+molding/M
+moldy/TPR
+mole/MS
+molecular
+molecularity/M
+molecule/SM
+molehill/SM
+moleskin/M
+molest/DRZGS
+molestation/M
+molested/U
+molester/M
+moll/MS
+mollification/M
+mollify/DSNG
+molluscan
+mollusk/SM
+molly/SM
+mollycoddle/DSMG
+molt/MDNRSZG
+molter/M
+molybdenum/M
+mom/SM
+moment/MS
+momenta
+momentarily
+momentariness/M
+momentary/P
+momentous/PY
+momentousness/M
+momentum/M
+mommy/SM
+monad
+monarch/M
+monarchic
+monarchical
+monarchism/M
+monarchist/MS
+monarchistic
+monarchs
+monarchy/SM
+monastery/SM
+monastic/MS
+monastical/Y
+monasticism/M
+monaural
+monetarily
+monetarism/M
+monetarist/MS
+monetary
+monetization/C
+monetize/CGDS
+money/SMD
+moneybag/MS
+moneybox/S
+moneylender/SM
+moneymaker/SM
+moneymaking/M
+monger/MDGS
+mongol/S
+mongolism/M
+mongoloid/MS
+mongoose/MS
+mongrel/SM
+monies
+moniker/SM
+monism/M
+monist/MS
+monition/SM
+monitor/SMDG
+monitory
+monk/MS
+monkey/MDGS
+monkeyshine/SM
+monkish
+monkshood/SM
+mono/M
+monochromatic
+monochrome/MS
+monocle/DSM
+monoclonal
+monocotyledon/SM
+monocotyledonous
+monocular
+monodic
+monodist/SM
+monody/SM
+monogamist/MS
+monogamous/Y
+monogamy/M
+monogram/SM
+monogrammed
+monogramming
+monograph/M
+monographs
+monolingual/MS
+monolith/M
+monolithic
+monoliths
+monologist/SM
+monologue/SM
+monomania/M
+monomaniac/MS
+monomaniacal
+monomer/SM
+mononucleosis/M
+monophonic
+monoplane/SM
+monopolist/SM
+monopolistic
+monopolization/M
+monopolize/DRSZG
+monopolizer/M
+monopoly/SM
+monorail/MS
+monosyllabic
+monosyllable/MS
+monotheism/M
+monotheist/SM
+monotheistic
+monotone/MS
+monotonic
+monotonically
+monotonous/PY
+monotonousness/M
+monotony/M
+monounsaturated
+monoxide/MS
+monseigneur/M
+monsieur/M
+monsignor/SM
+monsoon/SM
+monsoonal
+monster/SM
+monstrance/ASM
+monstrosity/SM
+monstrous/Y
+montage/SM
+month/MY
+monthly/SM
+months
+monument/MS
+monumental/Y
+moo/SGMD
+mooch/ZGMDRS
+moocher/M
+mood/MS
+moodily
+moodiness/M
+moody/TPR
+moon/MDSG
+moonbeam/MS
+moonless
+moonlight/SMDRZG
+moonlighter/M
+moonlighting/M
+moonlit
+moonscape/SM
+moonshine/MZRS
+moonshiner/M
+moonshot/MS
+moonstone/MS
+moonstruck
+moonwalk/MS
+moor/MDJSG
+moorhen/S
+mooring/M
+moorland/MS
+moose/M
+moot/DSG
+mop/SZGMDR
+mope/MS
+moped/SM
+moper/M
+mopey
+mopier
+mopiest
+mopish
+mopped
+moppet/MS
+mopping
+moraine/SM
+moral/SMY
+morale/M
+moralism
+moralist/MS
+moralistic
+moralistically
+moralities
+morality/UM
+moralization/CM
+moralize/CGDS
+moralizer/MS
+morass/MS
+moratorium/SM
+moray/SM
+morbid/YP
+morbidity/M
+morbidness/M
+mordancy/M
+mordant/SMY
+more/MS
+moreish
+morel/SM
+moreover
+mores/M
+morgue/MS
+moribund
+morn/MJSG
+morning/M
+morocco/M
+moron/SM
+moronic
+moronically
+morose/YP
+moroseness/M
+morph/GD
+morpheme/MS
+morphemic
+morphia/M
+morphine/M
+morphing/M
+morphological
+morphology/M
+morphs
+morrow/MS
+morsel/MS
+mortal/MYS
+mortality/M
+mortar/MDSG
+mortarboard/SM
+mortgage's
+mortgage/AGDS
+mortgagee/MS
+mortgagor/MS
+mortician/MS
+mortification/M
+mortify/NGDS
+mortise/DSMG
+mortuary/SM
+mosaic/MS
+mosey/SGD
+mosh/DSG
+mosque/MS
+mosquito/M
+mosquitoes
+moss/MS
+mossback/SM
+mossy/TR
+most/MY
+mot/SM
+mote's
+mote/KCXSVN
+motel/SM
+motet/SM
+moth/M
+mothball/GMDS
+mother/MDYSG
+motherboard/SM
+motherfucker/MS!
+motherfucking/!
+motherhood/M
+motherland/MS
+motherless
+motherliness/M
+moths
+motif/SM
+motile/S
+motility/M
+motion/KCM
+motioned
+motioning
+motionless/YP
+motionlessness/M
+motivate/CDSG
+motivated/U
+motivation/SM
+motivational
+motivator/SM
+motive/MS
+motiveless
+motley/MS
+motlier
+motliest
+motocross/MS
+motor/SGMD
+motorbike/MGDS
+motorboat/MS
+motorcade/MS
+motorcar/SM
+motorcycle/DSMG
+motorcyclist/MS
+motorist/SM
+motorization/M
+motorize/DSG
+motorman/M
+motormen
+motormouth/M
+motormouths
+motorway/SM
+mottle/GDS
+motto/M
+mottoes
+moue/MS
+mound/SGMD
+mount/EASGMD
+mountable
+mountain/SM
+mountaineer/SMDG
+mountaineering/M
+mountainous
+mountainside/SM
+mountaintop/SM
+mountebank/MS
+mounted/U
+mounter/MS
+mounting/SM
+mourn/SZGDR
+mourned/U
+mourner/M
+mournful/YP
+mournfulness/M
+mourning/M
+mouse/DRSMZG
+mouser/M
+mousetrap/SM
+mousetrapped
+mousetrapping
+mousiness/M
+moussaka/S
+mousse/MGDS
+mousy/PTR
+mouth/GMD
+mouthfeel
+mouthful/MS
+mouthiness/M
+mouthpiece/MS
+mouths
+mouthwash/MS
+mouthwatering
+mouthy/PTR
+mouton/M
+movable/SM
+move/AMZGDRSB
+moved/U
+movement/SM
+mover/AM
+movie/SM
+moviegoer/SM
+moving/Y
+mow/SZGMDR
+mower/M
+moxie/M
+mozzarella/M
+mp
+mpg
+mph
+mt
+mtg
+mtge
+mu/SM
+much/M
+mucilage/M
+mucilaginous
+muck/MDSG
+muckrake/DRSZG
+muckraker/M
+mucky/TR
+mucous
+mucus/M
+mud/M
+muddily
+muddiness/M
+muddle/MGDS
+muddleheaded
+muddy/PTGDRS
+mudflap/S
+mudflat/MS
+mudguard/SM
+mudpack/S
+mudroom/MS
+mudslide/MS
+mudslinger/SM
+mudslinging/M
+muenster/M
+muesli
+muezzin/MS
+muff/MDSG
+muffin/MS
+muffle/ZGDRS
+muffler/M
+mufti/SM
+mug/SM
+mugful/MS
+mugged
+mugger/MS
+mugginess/M
+mugging/MS
+muggins
+muggle/MS
+muggy/PTR
+mugshot/MS
+mugwump/MS
+mujaheddin
+mukluk/MS
+mulatto/M
+mulattoes
+mulberry/SM
+mulch/GMDS
+mulct/SGMD
+mule/MS
+muleskinner/MS
+muleteer/MS
+mulish/PY
+mulishness/M
+mull/DSG
+mullah/M
+mullahs
+mullein/M
+mullet/MS
+mulligan/SM
+mulligatawny/M
+mullion/SMD
+multi
+multicellular
+multichannel
+multicolored
+multicultural
+multiculturalism/M
+multidimensional
+multidisciplinary
+multifaceted
+multifamily
+multifarious/PY
+multifariousness/M
+multiform
+multigrain
+multilateral/Y
+multilayered
+multilevel
+multilingual
+multilingualism/M
+multimedia/M
+multimillionaire/SM
+multinational/SM
+multipart
+multiparty
+multiplayer/M
+multiple/MS
+multiplex/ZGMDRS
+multiplexer/M
+multiplicand/MS
+multiplication/M
+multiplicative
+multiplicity/SM
+multiplier/M
+multiply/NZGDRSX
+multiprocessing
+multiprocessor/SM
+multipurpose
+multiracial
+multistage
+multistory
+multitask/GS
+multitasking/M
+multitude/SM
+multitudinous
+multivariate
+multiverse/SM
+multivitamin/MS
+multiyear
+mum
+mumble/MZGDRS
+mumbler/M
+mumbletypeg/M
+mummer/MS
+mummery/M
+mummification/M
+mummify/GNDS
+mummy/SM
+mumps/M
+mun
+munch/GDS
+munchie/S
+munchies/M
+munchkin/SM
+mundane/SY
+mung/DSG
+municipal/SMY
+municipality/SM
+munificence/M
+munificent/Y
+munition/MDGS
+mural/SM
+muralist/SM
+murder/ZGMDRS
+murderer/M
+murderess/MS
+murderous/Y
+murk/MS
+murkily
+murkiness/M
+murky/PTR
+murmur/ZGJMDRS
+murmurer/M
+murmuring/M
+murmurous
+murrain/M
+muscat/MS
+muscatel/SM
+muscle/MGDS
+musclebound
+muscleman
+musclemen
+muscly
+muscular/Y
+muscularity/M
+musculature/M
+musculoskeletal
+muse/MGDSJ
+musette/MS
+museum/MS
+mush/MDRSZG
+mushiness/M
+mushroom/GSMD
+mushy/PTR
+music/SM
+musical/MYS
+musicale/MS
+musicality/M
+musician/SMY
+musicianship/M
+musicological
+musicologist/MS
+musicology/M
+musing/MY
+musk/M
+muskeg/MS
+muskellunge/MS
+musket/MS
+musketeer/MS
+musketry/M
+muskie/M
+muskiness/M
+muskmelon/SM
+muskox/MN
+muskrat/MS
+musky/PTRS
+muslin/M
+muss/MDSG
+mussel/MS
+mussy/TR
+must've
+must/MRSZ
+mustache/MDS
+mustachio/SMD
+mustang/MS
+mustard/M
+muster/GMD
+mustily
+mustiness/M
+mustn't
+musty/PTR
+mutability/M
+mutably
+mutagen/MS
+mutagenic
+mutant/MS
+mutate/XGNVDS
+mutation/M
+mutational
+mute/MYTGDRSPB
+muteness/M
+mutilate/DSGNX
+mutilation/M
+mutilator/SM
+mutineer/SM
+mutinous/Y
+mutiny/GDSM
+mutt/MS
+mutter/ZGJMDRS
+mutterer/M
+muttering/M
+mutton/M
+muttonchops/M
+muttony
+mutual/Y
+mutuality/M
+muumuu/MS
+muzak
+muzzily
+muzzle/DSMG
+muzzy/P
+my
+mycologist/SM
+mycology/M
+myelitis/M
+myna/MS
+myocardial
+myocardium
+myopia/M
+myopic
+myopically
+myriad/SM
+myrmidon/MS
+myrrh/M
+myrtle/SM
+mys
+myself
+mysterious/PY
+mysteriousness/M
+mystery/SM
+mystic/SM
+mystical/Y
+mysticism/M
+mystification/CM
+mystify/CDSGN
+mystique/M
+myth/M
+mythic
+mythical
+mythological
+mythologist/SM
+mythologize/DSG
+mythology/SM
+myths
+myxomatosis
+n/IKTH
+naan/S
+nab/S
+nabbed
+nabbing
+nabob/SM
+nacelle/SM
+nacho/SM
+nacre/M
+nacreous
+nadir/SM
+nae
+naff/RT
+nag/SM
+nagged
+nagger/MS
+nagging
+nagware
+nah
+naiad/SM
+naif/MS
+nail/MDSG
+nailbrush/MS
+naive/RYT
+naivete/M
+naivety/M
+naked/PY
+nakedness/M
+name's
+name/AGDS
+nameable/U
+named/U
+nameless/Y
+namely
+nameplate/MS
+namesake/SM
+nanny/SM
+nanobot/S
+nanometer/S
+nanosecond/SM
+nanotechnology/SM
+nanotube
+nap/SM
+napalm/MDSG
+nape/MS
+naphtha/M
+naphthalene/M
+napkin/MS
+napless
+napoleon/SM
+napped
+napper/MS
+napping
+nappy/TRSM
+narc/MS
+narcissism/M
+narcissist/MS
+narcissistic
+narcissus/M
+narcolepsy/M
+narcoleptic
+narcoses
+narcosis/M
+narcotic/SM
+narcotization/M
+narcotize/GDS
+nark
+narky
+narrate/GNVDSX
+narration/M
+narrative/SM
+narrator/SM
+narrow/PTGMDRYS
+narrowness/M
+narwhal/MS
+nary
+nasal/SMY
+nasality/M
+nasalization/M
+nasalize/DSG
+nascence/AM
+nascent/A
+nastily
+nastiness/M
+nasturtium/SM
+nasty/PTR
+natal
+natch
+nation/MS
+national/MYS
+nationalism/M
+nationalist/SM
+nationalistic
+nationalistically
+nationality/SM
+nationalization/MS
+nationalize/CDSG
+nationhood/M
+nationwide
+native/MS
+nativity/SM
+natl
+natter/GMDS
+nattily
+nattiness/M
+natty/PTR
+natural's
+natural/UPY
+naturalism/M
+naturalist/SM
+naturalistic
+naturalization/M
+naturalize/DSG
+naturalness/UM
+naturals
+nature's
+nature/CS
+naturism
+naturist/S
+naught/MS
+naughtily
+naughtiness/M
+naughty/PTR
+nausea/M
+nauseam
+nauseate/GDS
+nauseating/Y
+nauseous/PY
+nauseousness/M
+nautical/Y
+nautilus/MS
+naval
+nave/MS
+navel/SM
+navigability/M
+navigable
+navigate/DSGN
+navigation/M
+navigational
+navigator/MS
+navvy/S
+navy/SM
+nay/SM
+naysayer/MS
+ne'er
+neanderthal/MS
+neap/MS
+near/DRYSPTG
+nearby
+nearness/M
+nearshore
+nearside
+nearsighted/YP
+nearsightedness/M
+neat/NRYPXT
+neaten/GD
+neath
+neatness/M
+nebula/M
+nebulae
+nebular
+nebulous/PY
+nebulousness/M
+necessarily/U
+necessary/SM
+necessitate/DSG
+necessitous
+necessity/SM
+neck/MDSG
+neckband/S
+neckerchief/MS
+necking/M
+necklace/MGDSJ
+neckline/MS
+necktie/MS
+necrology/M
+necromancer/SM
+necromancy/M
+necrophilia
+necrophiliac/S
+necropolis/MS
+necroses
+necrosis/M
+necrotic
+nectar/M
+nectarine/MS
+nee
+need/MDSG
+needed/U
+needful/Y
+neediness/M
+needle/MGDS
+needlepoint/M
+needless/YP
+needlessness/M
+needlewoman/M
+needlewomen
+needlework/M
+needn't
+needy/PTR
+nefarious/YP
+nefariousness/M
+neg
+negate/DSGNVX
+negation/M
+negative/MYGPDS
+negativeness/M
+negativism/M
+negativity/M
+neglect/SGMD
+neglectful/YP
+neglectfulness/M
+negligee/MS
+negligence/M
+negligent/Y
+negligible
+negligibly
+negotiability/M
+negotiable/A
+negotiate/ADSGN
+negotiation/AM
+negotiations
+negotiator/MS
+negritude/M
+negro
+negroid
+neigh/MDG
+neighbor/SMDYG
+neighborhood/SM
+neighborliness/M
+neighs
+neither
+nelson/SM
+nematode/SM
+nemeses
+nemesis/M
+neoclassic
+neoclassical
+neoclassicism/M
+neocolonialism/M
+neocolonialist/MS
+neocon/SM
+neoconservative/SM
+neocortex
+neodymium/M
+neolithic
+neologism/SM
+neon/M
+neonatal
+neonate/MS
+neophilia
+neophyte/MS
+neoplasm/MS
+neoplastic
+neoprene/M
+nepenthe/M
+nephew/SM
+nephrite/M
+nephritic
+nephritis/M
+nephropathy
+nepotism/M
+nepotist/SM
+nepotistic
+neptunium/M
+nerd/MS
+nerdy/RT
+nerve's
+nerve/UDSG
+nerveless/YP
+nervelessness/M
+nerviness/M
+nervous/YP
+nervousness/M
+nervy/TPR
+nest/MDSG
+nestle/GJDS
+nestling/M
+net/SM
+netball
+netbook/MS
+nether
+nethermost
+netherworld/M
+netiquette/S
+netted
+netter/S
+netting/M
+nettle/MGDS
+nettlesome
+network/SGMD
+networking/M
+neural/Y
+neuralgia/M
+neuralgic
+neurasthenia/M
+neurasthenic/MS
+neuritic/MS
+neuritis/M
+neurological/Y
+neurologist/SM
+neurology/M
+neuron/MS
+neuronal
+neuroscience
+neuroses
+neurosis/M
+neurosurgeon/MS
+neurosurgery/M
+neurosurgical
+neurotic/MS
+neurotically
+neuroticism
+neurotransmitter/SM
+neut
+neuter/MDGS
+neutral/SMY
+neutralism/M
+neutralist/SM
+neutrality/M
+neutralization/M
+neutralize/DRSZG
+neutralizer/M
+neutrino/SM
+neutron/SM
+never
+nevermore
+nevertheless
+nevi
+nevus/M
+new/STMRYP
+newbie/MS
+newborn/SM
+newcomer/SM
+newel/SM
+newfangled
+newfound
+newline/S
+newlywed/SM
+newness/M
+news/M
+newsagent/S
+newsboy/SM
+newscast/SMRZ
+newscaster/M
+newsdealer/SM
+newsflash/S
+newsgirl/SM
+newsgroup/MS
+newshound/S
+newsletter/MS
+newsman/M
+newsmen
+newspaper/MS
+newspaperman/M
+newspapermen
+newspaperwoman/M
+newspaperwomen
+newspeak
+newsprint/M
+newsreader/S
+newsreel/MS
+newsroom/MS
+newsstand/SM
+newsweekly/SM
+newswoman/M
+newswomen
+newsworthiness/M
+newsworthy/P
+newsy/TR
+newt/MS
+newton/MS
+next/M
+nexus/MS
+niacin/M
+nib/SM
+nibble/MZGDRS
+nibbler/M
+nice/PYTR
+niceness/M
+nicety/SM
+niche/SM
+nick/MDRSZG
+nickel/MS
+nickelodeon/SM
+nicker/MDG
+nickle/S
+nickname/DSMG
+nicotine/M
+niece/SM
+nifedipine
+niff
+niffy
+nifty/TR
+nigga/MS!
+niggard/SMY
+niggardliness/M
+niggaz/!
+nigger/SM!
+niggle/MZGDRS
+niggler/M
+nigh/RT
+night/SMY
+nightcap/SM
+nightclothes/M
+nightclub/SM
+nightclubbed
+nightclubbing
+nightdress/MS
+nightfall/M
+nightgown/SM
+nighthawk/SM
+nightie/SM
+nightingale/SM
+nightlife/M
+nightlight/S
+nightlong
+nightmare/SM
+nightmarish
+nightshade/SM
+nightshirt/SM
+nightspot/MS
+nightstand/SM
+nightstick/SM
+nighttime/M
+nightwatchman
+nightwatchmen
+nightwear/M
+nihilism/M
+nihilist/MS
+nihilistic
+nil/M
+nimbi
+nimble/TPR
+nimbleness/M
+nimbly
+nimbus/M
+nimby
+nimrod/MS
+nincompoop/SM
+nine/MS
+ninepin/MS
+ninepins/M
+nineteen/SMH
+nineteenth/M
+nineteenths
+ninetieth/M
+ninetieths
+ninety/HSM
+ninja/SM
+ninny/SM
+ninth/M
+ninths
+niobium/M
+nip/SM
+nipped
+nipper/MS
+nippiness/M
+nipping
+nipple/MS
+nippy/TPR
+nirvana/M
+nisei/M
+nit/SMR
+niter/M
+nitpick/SZGDR
+nitpicker/M
+nitpicking/M
+nitrate/DSMGN
+nitration/M
+nitric
+nitrification/M
+nitrite/SM
+nitro
+nitrocellulose/M
+nitrogen/M
+nitrogenous
+nitroglycerin/M
+nitwit/MS
+nix/GMDS
+no/SM
+nob/SY
+nobble/GDS
+nobelium/M
+nobility/M
+noble/RSPMT
+nobleman/M
+noblemen
+nobleness/M
+noblewoman/M
+noblewomen
+nobody/SM
+nocturnal/Y
+nocturne/MS
+nod/SM
+nodal
+nodded
+nodding
+noddle/MS
+noddy
+node/MS
+nodular
+nodule/MS
+noel/MS
+noes
+noggin/MS
+nohow
+noise/DSMG
+noiseless/PY
+noiselessness/M
+noisemaker/MS
+noisily
+noisiness/M
+noisome
+noisy/PTR
+nomad/SM
+nomadic
+nomenclature/MS
+nominal/Y
+nominate/ACGNVDS
+nomination's/A
+nomination/CSM
+nominative/SM
+nominator/CSM
+nominee/MS
+non
+nonabrasive
+nonabsorbent/SM
+nonacademic
+nonacceptance/M
+nonacid
+nonactive/MS
+nonaddictive
+nonadhesive
+nonadjacent
+nonadjustable
+nonadministrative
+nonage/MS
+nonagenarian/MS
+nonaggression/M
+nonalcoholic
+nonaligned
+nonalignment/M
+nonallergic
+nonappearance/MS
+nonassignable
+nonathletic
+nonattendance/M
+nonautomotive
+nonavailability/M
+nonbasic
+nonbeliever/MS
+nonbelligerent/MS
+nonbinding
+nonbreakable
+nonburnable
+noncaloric
+noncancerous
+nonce/M
+nonchalance/M
+nonchalant/Y
+nonchargeable
+nonclerical/MS
+nonclinical
+noncollectable
+noncom/MS
+noncombat
+noncombatant/MS
+noncombustible
+noncommercial/MS
+noncommittal/Y
+noncommunicable
+noncompeting
+noncompetitive
+noncompliance/M
+noncomplying
+noncomprehending
+nonconducting
+nonconductor/MS
+nonconforming
+nonconformism
+nonconformist/MS
+nonconformity/M
+nonconsecutive
+nonconstructive
+noncontagious
+noncontinuous
+noncontributing
+noncontributory
+noncontroversial
+nonconvertible
+noncooperation/M
+noncorroding
+noncorrosive
+noncredit
+noncriminal/SM
+noncritical
+noncrystalline
+noncumulative
+noncustodial
+nondairy
+nondeductible/M
+nondelivery/SM
+nondemocratic
+nondenominational
+nondepartmental
+nondepreciating
+nondescript
+nondestructive
+nondetachable
+nondeterminism
+nondeterministic
+nondisciplinary
+nondisclosure/M
+nondiscrimination/M
+nondiscriminatory
+nondramatic
+nondrinker/MS
+nondrying
+none
+noneducational
+noneffective
+nonelastic
+nonelectric
+nonelectrical
+nonempty
+nonenforceable
+nonentity/SM
+nonequivalent/MS
+nonessential
+nonesuch/MS
+nonetheless
+nonevent/MS
+nonexchangeable
+nonexclusive
+nonexempt/M
+nonexistence/M
+nonexistent
+nonexplosive/MS
+nonfactual
+nonfading
+nonfat
+nonfatal
+nonfattening
+nonferrous
+nonfiction/M
+nonfictional
+nonflammable
+nonflowering
+nonfluctuating
+nonflying
+nonfood/M
+nonfreezing
+nonfunctional
+nongovernmental
+nongranular
+nonhazardous
+nonhereditary
+nonhuman
+nonidentical
+noninclusive
+nonindependent
+nonindustrial
+noninfectious
+noninflammatory
+noninflationary
+noninflected
+nonintellectual/MS
+noninterchangeable
+noninterference/M
+nonintervention/M
+nonintoxicating
+noninvasive
+nonirritating
+nonissue
+nonjudgmental
+nonjudicial
+nonlegal
+nonlethal
+nonlinear
+nonliterary
+nonliving/M
+nonmagnetic
+nonmalignant
+nonmember/MS
+nonmetal/SM
+nonmetallic
+nonmigratory
+nonmilitant
+nonmilitary
+nonnarcotic/SM
+nonnative/MS
+nonnegotiable
+nonnuclear
+nonnumerical
+nonobjective
+nonobligatory
+nonobservance/M
+nonobservant
+nonoccupational
+nonoccurence
+nonofficial
+nonoperational
+nonoperative
+nonparallel/MS
+nonpareil/MS
+nonparticipant/MS
+nonparticipating
+nonpartisan/SM
+nonpaying
+nonpayment/SM
+nonperformance/M
+nonperforming
+nonperishable
+nonperson/MS
+nonphysical/Y
+nonplus/S
+nonplussed
+nonplussing
+nonpoisonous
+nonpolitical
+nonpolluting
+nonporous
+nonpracticing
+nonprejudicial
+nonprescription
+nonproductive
+nonprofessional/SM
+nonprofit/SMB
+nonproliferation/M
+nonpublic
+nonpunishable
+nonracial
+nonradioactive
+nonrandom
+nonreactive
+nonreciprocal/SM
+nonreciprocating
+nonrecognition/M
+nonrecoverable
+nonrecurring
+nonredeemable
+nonrefillable
+nonrefundable
+nonreligious
+nonrenewable
+nonrepresentational
+nonresident/MS
+nonresidential
+nonresidual/M
+nonresistance/M
+nonresistant
+nonrestrictive
+nonreturnable/MS
+nonrhythmic
+nonrigid
+nonsalaried
+nonscheduled
+nonscientific
+nonscoring
+nonseasonal
+nonsectarian
+nonsecular
+nonsegregated
+nonsense/M
+nonsensical/Y
+nonsensitive
+nonsexist
+nonsexual
+nonskid
+nonslip
+nonsmoker/SM
+nonsmoking
+nonsocial
+nonspeaking
+nonspecialist/MS
+nonspecializing
+nonspecific
+nonspiritual/SM
+nonstaining
+nonstandard
+nonstarter/MS
+nonstick
+nonstop
+nonstrategic
+nonstriking
+nonstructural
+nonsuccessive
+nonsupport/GM
+nonsurgical
+nonsustaining
+nonsympathizer/M
+nontarnishable
+nontaxable
+nontechnical
+nontenured
+nontheatrical
+nonthinking
+nonthreatening
+nontoxic
+nontraditional
+nontransferable
+nontransparent
+nontrivial
+nontropical
+nonuniform
+nonunion
+nonuser/MS
+nonvenomous
+nonverbal
+nonviable
+nonviolence/M
+nonviolent/Y
+nonvirulent
+nonvocal
+nonvocational
+nonvolatile
+nonvoter/MS
+nonvoting
+nonwhite/MS
+nonworking
+nonyielding
+nonzero
+noodle/MGDS
+nook/MS
+nookie
+nooky
+noon/M
+noonday/M
+noontide/M
+noontime/M
+noose/SM
+nope
+nor
+nor'easter
+norm/MS
+normal/MY
+normalcy/M
+normality/M
+normalization/M
+normalize/DSG
+normative
+north/ZMR
+northbound
+northeast/MRZ
+northeaster/MY
+northeastern
+northeastward/S
+norther/MY
+northerly/SM
+northern/ZR
+northerner/M
+northernmost
+northward/S
+northwest/ZMR
+northwester/MY
+northwestern
+northwestward/S
+nose/MGDS
+nosebag/S
+nosebleed/MS
+nosecone/SM
+nosedive/DSMG
+nosegay/SM
+nosh/MDRSZG
+nosher/M
+nosily
+nosiness/M
+nostalgia/M
+nostalgic
+nostalgically
+nostril/MS
+nostrum/MS
+nosy/RPT
+not/B
+notability/SM
+notable/SM
+notably
+notarial
+notarization/M
+notarize/GDS
+notary/SM
+notate/GDS
+notation/FCSM
+notch/GMDS
+note's
+note/FCSDG
+notebook/MS
+notelet/S
+notepad/S
+notepaper/M
+noteworthiness/M
+noteworthy/P
+nothing/PSM
+nothingness/M
+notice/MGDS
+noticeable/U
+noticeably
+noticeboard/S
+noticed/U
+notifiable
+notification/M
+notifier/M
+notify/NDRSXZG
+notion/MS
+notional/Y
+notoriety/M
+notorious/Y
+notwithstanding
+notwork/S
+nougat/MS
+noun/KMS
+nourish/DSLG
+nourishment/M
+nous
+nova/MS
+novae
+novel/SM
+novelette/SM
+novelist/SM
+novelization/MS
+novelize/DSG
+novella/MS
+novelty/SM
+novena/MS
+novene
+novice/MS
+novitiate/MS
+now/M
+nowadays/M
+noway/S
+nowhere/M
+nowise
+nowt
+noxious
+nozzle/MS
+nu/SM
+nuance/MDS
+nub/SM
+nubbin/MS
+nubby/TR
+nubile
+nuclear/K
+nucleate/DSGN
+nucleation/M
+nuclei
+nucleic
+nucleoli
+nucleolus/M
+nucleon/SM
+nucleoside
+nucleotide
+nucleus/M
+nude/MTRS
+nudge/GDSM
+nudism/M
+nudist/SM
+nudity/M
+nugatory
+nugget/SM
+nuisance/MS
+nuke/MGDS
+null/S
+nullification/M
+nullify/NDSG
+nullity/M
+numb/ZTGPDRYS
+number's
+number/ASDG
+numbered/U
+numberless
+numbness/M
+numerable/I
+numeracy/IM
+numeral/SM
+numerate/XGNDS
+numeration/M
+numerator/MS
+numeric
+numerical/Y
+numerologist/MS
+numerology/M
+numerous/Y
+numinous
+numismatic/S
+numismatics/M
+numismatist/SM
+numskull/MS
+nun/SM
+nuncio/SM
+nunnery/SM
+nuptial/MS
+nurse/MZGDRS
+nurselings
+nursemaid/MS
+nurser/M
+nursery/SM
+nurseryman/M
+nurserymen
+nursing/M
+nursling/SM
+nurture/DRSMZG
+nurturer/M
+nut/SM
+nutcase/S
+nutcracker/MS
+nuthatch/MS
+nuthouse/S
+nutmeat/SM
+nutmeg/SM
+nutpick/SM
+nutria/SM
+nutrient/MS
+nutriment/MS
+nutrition/M
+nutritional/Y
+nutritionist/SM
+nutritious/YP
+nutritiousness/M
+nutritive
+nutshell/MS
+nutted
+nutter/S
+nuttiness/M
+nutting
+nutty/RTP
+nuzzle/DRSMZG
+nuzzler/M
+nybble/S
+nylon/MS
+nylons/M
+nymph/M
+nymphet/MS
+nympho/S
+nymphomania/M
+nymphomaniac/SM
+nymphs
+o
+o'clock
+o'er
+oaf/SM
+oafish/PY
+oafishness/M
+oak/SMN
+oakum/M
+oar/SGMD
+oarlock/SM
+oarsman/M
+oarsmen
+oarswoman/M
+oarswomen
+oases
+oasis/M
+oat/SMN
+oatcake/SM
+oath/M
+oaths
+oatmeal/M
+oats/M
+ob/S
+obbligato/MS
+obduracy/M
+obdurate/PY
+obdurateness/M
+obedience/EM
+obedient/EY
+obeisance/SM
+obeisant
+obelisk/MS
+obese
+obesity/M
+obey/EDSG
+obfuscate/GNXDS
+obfuscation/M
+obi/SM
+obit/MS
+obituary/SM
+obj
+object/SGVMD
+objectify/NGDS
+objection/SMB
+objectionable/U
+objectionably
+objective/SMYP
+objectiveness/M
+objectivity/M
+objector/MS
+objurgate/XGNDS
+objurgation/M
+oblate/NX
+oblation/M
+obligate/DSXGN
+obligation/M
+obligatorily
+obligatory
+oblige/EGDS
+obliging/Y
+oblique/SMYP
+obliqueness/M
+obliquity/M
+obliterate/DSGN
+obliteration/M
+oblivion/M
+oblivious/YP
+obliviousness/M
+oblong/MS
+obloquy/M
+obnoxious/YP
+obnoxiousness/M
+oboe/MS
+oboist/MS
+obscene/RYT
+obscenity/SM
+obscurantism/M
+obscurantist/SM
+obscure/DRSYTG
+obscurity/SM
+obsequies
+obsequious/PY
+obsequiousness/M
+obsequy/M
+observably
+observance/MS
+observant/Y
+observation/SM
+observational
+observatory/SM
+observe/DRSBZG
+observed/U
+observer/M
+obsess/DSGV
+obsession/SM
+obsessional/Y
+obsessive/PSMY
+obsessiveness/M
+obsidian/M
+obsolesce/DSG
+obsolescence/M
+obsolescent
+obsolete/GDS
+obstacle/MS
+obstetric/S
+obstetrical
+obstetrician/SM
+obstetrics/M
+obstinacy/M
+obstinate/Y
+obstreperous/YP
+obstreperousness/M
+obstruct/DGVS
+obstructed/U
+obstruction/SM
+obstructionism/M
+obstructionist/MS
+obstructive/YP
+obstructiveness/M
+obtain/DBLGS
+obtainable/U
+obtainment/M
+obtrude/DSG
+obtrusion/M
+obtrusive/UPY
+obtrusiveness/UM
+obtuse/YTRP
+obtuseness/M
+obverse/SM
+obviate/DSGN
+obviation/M
+obvious/PY
+obviousness/M
+ocarina/MS
+occasion/GMDS
+occasional/Y
+occidental/SM
+occlude/GDS
+occlusion/SM
+occlusive
+occult/M
+occultism/M
+occultist/SM
+occupancy/M
+occupant/SM
+occupation/AM
+occupational/Y
+occupations
+occupied/U
+occupier/SM
+occupy/ADSG
+occur/AS
+occurred/A
+occurrence/SM
+occurring/A
+ocean/SM
+oceanfront/SM
+oceangoing
+oceanic/M
+oceanographer/SM
+oceanographic
+oceanography/M
+oceanology/M
+ocelot/MS
+och/R
+ocher/M
+ocker/S
+octagon/MS
+octagonal
+octal
+octane/MS
+octave/MS
+octavo/MS
+octet/SM
+octogenarian/SM
+octopus/MS
+ocular/MS
+oculist/SM
+oculomotor
+odalisque/SM
+odd/STRYLP
+oddball/SM
+oddity/SM
+oddment/SM
+oddness/M
+odds/M
+ode/SM
+odious/YP
+odiousness/M
+odium/M
+odometer/MS
+odor/MDS
+odoriferous
+odorless
+odorous
+odyssey/MS
+oedipal
+oenology/M
+oenophile/SM
+oeuvre/MS
+of
+off/SZGDRJ
+offal/M
+offbeat/MS
+offend/ZGDRS
+offender/M
+offense/MS
+offensive's
+offensive/IPY
+offensiveness/IM
+offensives
+offer/JGMD
+offering/M
+offertory/SM
+offhand
+offhanded/PY
+offhandedness/M
+office/MZRS
+officeholder/SM
+officer/M
+official/MYS
+officialdom/M
+officialese
+officialism/M
+officiant/SM
+officiate/DSG
+officiator/MS
+officious/PY
+officiousness/M
+offing/M
+offish
+offline
+offload/SDG
+offprint/SM
+offset/MS
+offsetting
+offshoot/MS
+offshore/G
+offside
+offsite
+offspring/M
+offstage/S
+offtrack
+oft
+often/TR
+oftentimes
+ofttimes
+ogle/MZGDRS
+ogler/M
+ogre/MS
+ogreish
+ogress/MS
+oh/M
+ohm/SM
+ohmmeter/MS
+oho
+ohs
+oi
+oik/S
+oil/SGMD
+oilcan/S
+oilcloth/M
+oilcloths
+oilfield/S
+oiliness/M
+oilman
+oilmen
+oilskin/MS
+oilskins/M
+oily/RPT
+oink/MDSG
+ointment/SM
+okapi/SM
+okay/MSG
+okra/MS
+old/TMNRP
+oldie/SM
+oldish
+oldness/M
+oldster/MS
+ole/SMV
+oleaginous
+oleander/MS
+oleo/M
+oleomargarine/M
+olfactory/SM
+oligarch/M
+oligarchic
+oligarchical
+oligarchs
+oligarchy/SM
+oligonucleotide/S
+oligopoly/SM
+olive/SM
+om/SMNX
+ombudsman/M
+ombudsmen
+omega/SM
+omelet/MS
+omen/M
+omicron/MS
+ominous/YP
+ominousness/M
+omission/MS
+omit/S
+omitted
+omitting
+omnibus/MS
+omnipotence/M
+omnipotent
+omnipresence/M
+omnipresent
+omniscience/M
+omniscient
+omnivore/MS
+omnivorous/PY
+omnivorousness/M
+on/Y
+onboard
+once/M
+oncogene/SM
+oncologist/SM
+oncology/M
+oncoming
+one/SXMNP
+oneness/M
+onerous/PY
+onerousness/M
+oneself
+onetime
+ongoing
+onion/M
+onionskin/M
+online
+onlooker/SM
+onlooking
+onomatopoeia/M
+onomatopoeic
+onomatopoetic
+onrush/MSG
+onscreen
+onset/MS
+onshore
+onside
+onsite
+onslaught/MS
+onstage
+onto
+ontogeny/M
+ontological
+ontology/M
+onus/MS
+onward
+onyx/MS
+oodles/M
+ooh/GD
+oohs
+oomph
+oops
+ooze/MGDS
+oozy/TR
+op/SMDG
+opacity/M
+opal/MS
+opalescence/M
+opalescent
+opaque/PYTGDRS
+opaqueness/M
+opcode/S
+ope/S
+open/ZTGJPMDRYS
+opencast
+opened/U
+opener/M
+openhanded/P
+openhandedness/M
+openhearted
+opening/M
+openness/M
+openwork/M
+opera/MS
+operable/I
+operand/S
+operate/DSGNVX
+operatic
+operatically
+operation/M
+operational/Y
+operative/SM
+operator/SM
+operetta/SM
+ophthalmic
+ophthalmologist/SM
+ophthalmology/M
+opiate/SM
+opine/GNXDS
+opinion/M
+opinionated
+opioid/SM
+opium/M
+opossum/MS
+opp
+opponent/SM
+opportune/IY
+opportunism/M
+opportunist/SM
+opportunistic
+opportunistically
+opportunity/SM
+oppose/DSG
+opposed/U
+opposite/SMYNX
+opposition/M
+oppress/DSGV
+oppression/M
+oppressive/YP
+oppressiveness/M
+oppressor/MS
+opprobrious/Y
+opprobrium/M
+opt/SGD
+optic/MS
+optical/Y
+optician/SM
+optics/M
+optima
+optimal/Y
+optimism/SM
+optimist/SM
+optimistic
+optimistically
+optimization/MS
+optimize/DRSG
+optimum/SM
+option/SMDG
+optional/Y
+optometrist/MS
+optometry/M
+opulence/M
+opulent/Y
+opus/MS
+or
+oracle/SM
+oracular
+oral/MYS
+orality
+orange/SMP
+orangeade/MS
+orangery/SM
+orangutan/SM
+orate/GNXDS
+oration/M
+orator/SM
+oratorical/Y
+oratorio/MS
+oratory/SM
+orb/SM
+orbicular
+orbit/MDRZGS
+orbital/SM
+orbiter/M
+orc/SM
+orchard/SM
+orchestra/MS
+orchestral
+orchestrate/DSXGN
+orchestration/M
+orchid/SM
+ordain/SDLG
+ordainment/M
+ordeal/SM
+order/EAMDGS
+ordered/U
+orderings
+orderliness/EM
+orderly/PSM
+ordinal/SM
+ordinance/SM
+ordinarily
+ordinariness/M
+ordinary/SMP
+ordinate/MNSX
+ordination/M
+ordnance/M
+ordure/M
+ore/SM
+oregano/M
+org
+organ/MS
+organdy/M
+organelle/MS
+organic/SM
+organically/I
+organism/MS
+organismic
+organist/MS
+organization/ASM
+organizational/Y
+organize/AESDG
+organized/U
+organizer/MS
+organza/M
+orgasm/SM
+orgasmic
+orgiastic
+orgy/SM
+oriel/MS
+orient's
+orient/AEDGS
+oriental/MS
+orientalist/S
+orientate/EDSGN
+orientation/AEM
+orientations
+orienteering
+orifice/MS
+orig
+origami/M
+origin/SM
+original/MYS
+originality/M
+originate/DSGN
+origination/M
+originator/SM
+oriole/SM
+orison/SM
+ormolu/M
+ornament/SGMD
+ornamental
+ornamentation/M
+ornate/YP
+ornateness/M
+orneriness/M
+ornery/PRT
+ornithological
+ornithologist/MS
+ornithology/M
+orotund
+orotundity/SM
+orphan/SMDG
+orphanage/MS
+orris/MS
+orthodontia/M
+orthodontic/S
+orthodontics/M
+orthodontist/SM
+orthodox/U
+orthodoxy/SM
+orthogonal
+orthogonality
+orthographic
+orthographically
+orthography/SM
+orthopedic/S
+orthopedics/M
+orthopedist/MS
+orzo/M
+oscillate/GNDSX
+oscillation/M
+oscillator/SM
+oscillatory
+oscilloscope/MS
+osculate/DSXGN
+osculation/M
+osier/MS
+osmium/M
+osmosis/M
+osmotic
+osprey/SM
+ossicles
+ossification/M
+ossify/NGDS
+ostensible
+ostensibly
+ostentation/M
+ostentatious/Y
+osteoarthritis/M
+osteopath/M
+osteopathic
+osteopaths
+osteopathy/M
+osteoporosis/M
+ostler/S
+ostracism/M
+ostracize/GDS
+ostrich/MS
+other/MSP
+otherwise
+otherworldly
+otiose
+otter/MS
+ottoman/MS
+oubliette/MS
+ouch
+ought
+oughtn't
+ounce/MS
+our/S
+ourselves
+oust/ZGDRS
+ouster/M
+out/SJGMDR
+outage/SM
+outargue/GDS
+outback/MS
+outbalance/DSG
+outbid/S
+outbidding
+outboard/MS
+outboast/DSG
+outbound
+outbox/MS
+outbreak/MS
+outbuilding/MS
+outburst/SM
+outcast/MS
+outclass/DSG
+outcome/MS
+outcrop/MS
+outcropped
+outcropping/SM
+outcry/SM
+outdated
+outdid
+outdistance/GDS
+outdo/G
+outdoes
+outdone
+outdoor/S
+outdoors/M
+outdoorsy
+outdraw/GS
+outdrawn
+outdrew
+outercourse
+outermost
+outerwear/M
+outface/GDS
+outfall/S
+outfield/SMRZ
+outfielder/M
+outfight/SG
+outfit/SM
+outfitted
+outfitter/MS
+outfitting
+outflank/GSD
+outflow/MS
+outfought
+outfox/GDS
+outgo/MJG
+outgoes
+outgrew
+outgrow/HGS
+outgrown
+outgrowth/M
+outgrowths
+outguess/GDS
+outgun/S
+outgunned
+outgunning
+outhit/S
+outhitting
+outhouse/SM
+outing/M
+outlaid
+outlandish/PY
+outlandishness/M
+outlast/DSG
+outlaw/SGMD
+outlay/SGM
+outlet/SM
+outlier/S
+outline/MGDS
+outlive/GDS
+outlook/MS
+outlying
+outmaneuver/GDS
+outmatch/GDS
+outmoded
+outnumber/DSG
+outpace/GDS
+outpatient/MS
+outperform/GSD
+outplace/L
+outplacement/M
+outplay/GDS
+outpoint/DGS
+outpost/MS
+outpouring/MS
+outproduce/DSG
+output/SM
+outputted
+outputting
+outrace/GDS
+outrage/MGDS
+outrageous/Y
+outran
+outrank/GDS
+outre
+outreach/MDSG
+outrider/MS
+outrigger/SM
+outright
+outrun/S
+outrunning
+outscore/GDS
+outsell/GS
+outset/SM
+outshine/GS
+outshone
+outshout/GDS
+outside/MZRS
+outsider/M
+outsize/MS
+outskirt/MS
+outsmart/GDS
+outsold
+outsource/DSG
+outsourcing/M
+outspend/SG
+outspent
+outspoken/YP
+outspokenness/M
+outspread/GS
+outstanding/Y
+outstation/MS
+outstay/DGS
+outstretch/DSG
+outstrip/S
+outstripped
+outstripping
+outta
+outtake/MS
+outvote/GDS
+outward/YS
+outwear/GS
+outweigh/GD
+outweighs
+outwit/S
+outwith
+outwitted
+outwitting
+outwore
+outwork/MDRSZG
+outworn
+ouzo/MS
+ova
+oval/MS
+ovarian
+ovary/SM
+ovate/NX
+ovation/M
+oven/MS
+ovenbird/SM
+ovenproof
+ovenware
+over/MYS
+overabundance/M
+overabundant
+overachieve/ZGDRS
+overachiever/M
+overact/GVSD
+overage/SM
+overaggressive
+overall/SM
+overalls/M
+overambitious
+overanxious
+overarching
+overarm/GSD
+overate
+overattentive
+overawe/DSG
+overbalance/MGDS
+overbear/GS
+overbearing/Y
+overbid/SM
+overbidding
+overbite/MS
+overblown
+overboard
+overbold
+overbook/DGS
+overbore
+overborne
+overbought
+overbuild/SG
+overbuilt
+overburden/GSD
+overbuy/GS
+overcame
+overcapacity/M
+overcapitalize/DSG
+overcareful
+overcast/MGS
+overcautious
+overcharge/DSMG
+overclock/GD
+overcloud/SGD
+overcoat/MS
+overcome/GS
+overcompensate/DSGN
+overcompensation/M
+overconfidence/M
+overconfident
+overconscientious
+overcook/DGS
+overcritical
+overcrowd/SDG
+overcrowding/M
+overdecorate/DSG
+overdependent
+overdevelop/SDG
+overdid
+overdo/G
+overdoes
+overdone
+overdose/MGDS
+overdraft/SM
+overdraw/GS
+overdrawn
+overdress/GMDS
+overdrew
+overdrive/SM
+overdub/SM
+overdubbed
+overdubbing
+overdue
+overeager
+overeat/GSN
+overemotional
+overemphasis/M
+overemphasize/GDS
+overenthusiastic
+overestimate/MGNDS
+overestimation/M
+overexcite/DSG
+overexercise/GDS
+overexert/SDG
+overexertion/M
+overexpose/GDS
+overexposure/M
+overextend/DGS
+overfed
+overfeed/GS
+overfill/DGS
+overflew
+overflight/MS
+overflow/MDSG
+overflown
+overfly/GS
+overfond
+overfull
+overgeneralize/DSG
+overgenerous
+overgraze/DSG
+overgrew
+overground
+overgrow/HSG
+overgrown
+overgrowth/M
+overhand/MDS
+overhang/MSG
+overhasty
+overhaul/MDSG
+overhead/MS
+overhear/SG
+overheard
+overheat/DSG
+overhung
+overindulge/GDS
+overindulgence/M
+overindulgent
+overinflated
+overjoy/GSD
+overkill/M
+overladen
+overlaid
+overlain
+overland
+overlap/SM
+overlapped
+overlapping
+overlarge
+overlay/GSM
+overleaf
+overlie
+overload/GMDS
+overlong
+overlook/GMDS
+overlord/MS
+overly/SG
+overmanned
+overmanning
+overmaster/SDG
+overmodest
+overmuch/S
+overnice
+overnight/MS
+overoptimism/M
+overoptimistic
+overpaid
+overparticular
+overpass/MS
+overpay/GS
+overplay/GDS
+overpopulate/GNDS
+overpopulation/M
+overpower/SDG
+overpowering/Y
+overpraise/DSG
+overprecise
+overprice/DSG
+overprint/SMDG
+overproduce/GDS
+overproduction/M
+overprotect/SDGV
+overqualified
+overran
+overrate/GDS
+overreach/GDS
+overreact/SDG
+overreaction/SM
+overrefined
+overridden
+override/MGS
+overripe/M
+overrode
+overrule/GDS
+overrun/SM
+overrunning
+oversampling
+oversaw
+oversea/S
+oversee/RSZ
+overseeing
+overseen
+overseer/M
+oversell/GS
+oversensitive/P
+oversensitiveness/M
+oversexed
+overshadow/DSG
+overshare/DSG
+overshoe/MS
+overshoot/GS
+overshot
+oversight/SM
+oversimple
+oversimplification/M
+oversimplify/DSNGX
+oversize
+oversleep/GS
+overslept
+oversold
+overspecialization/M
+overspecialize/GDS
+overspend/SG
+overspent
+overspread/GS
+overstaffed
+overstate/DSLG
+overstatement/MS
+overstay/DSG
+overstep/S
+overstepped
+overstepping
+overstimulate/DSG
+overstock/GSD
+overstretch/GDS
+overstrict
+overstrung
+overstuffed
+oversubscribe/DSG
+oversubtle
+oversupply/GDS
+oversuspicious
+overt/Y
+overtake/GS
+overtaken
+overtax/GDS
+overthink/SG
+overthought
+overthrew
+overthrow/SMG
+overthrown
+overtime/MS
+overtire/GDS
+overtone/MS
+overtook
+overture/MS
+overturn/DSG
+overuse/DSMG
+overvaluation/S
+overvalue/DSG
+overview/MS
+overweening/Y
+overweight/M
+overwhelm/SGD
+overwhelming/Y
+overwinter/SDG
+overwork/GMDS
+overwrite/GS
+overwritten
+overwrote
+overwrought
+overzealous
+oviduct/SM
+oviparous
+ovoid/MS
+ovular
+ovulate/DSGN
+ovulation/M
+ovule/MS
+ovum/M
+ow
+owe/DSG
+owl/SM
+owlet/MS
+owlish/Y
+own/ESGD
+owner/MS
+ownership/M
+ox/MN
+oxalate
+oxblood/M
+oxbow/MS
+oxcart/SM
+oxford/SM
+oxidant/MS
+oxidase
+oxidation/M
+oxidative
+oxide/MS
+oxidization/M
+oxidize/ZGDRS
+oxidizer/M
+oxtail/S
+oxyacetylene/M
+oxygen/M
+oxygenate/DSGN
+oxygenation/M
+oxymora
+oxymoron/M
+oyster/SM
+oz
+ozone/M
+p/NRXTGJ
+pH
+pa/SMH
+pablum/M
+pabulum/M
+pace/MZGDRS
+pacemaker/SM
+pacer/M
+pacesetter/SM
+pacey
+pachyderm/MS
+pachysandra/MS
+pacific
+pacifically
+pacification/M
+pacifier/M
+pacifism/M
+pacifist/SM
+pacifistic
+pacify/ZGDRSN
+pack's
+pack/AUGSD
+package's
+package/AGDS
+packager/SM
+packaging/M
+packer/MS
+packet/MS
+packing's
+packinghouse/SM
+packsaddle/MS
+pact/MS
+pacy/RT
+pad/SM
+padded
+padding/M
+paddle/MZGDRS
+paddler/M
+paddock/MDGS
+paddy/SM
+padlock/MDSG
+padre/SM
+paean/SM
+paella/MS
+pagan/SM
+paganism/M
+page/MZGDRS
+pageant/MS
+pageantry/M
+pageboy/SM
+pager/M
+paginate/DSGN
+pagination/M
+pagoda/MS
+pah
+paid/AU
+pail/MS
+pailful/SM
+pain/MDSG
+painful/PY
+painfuller
+painfullest
+painfulness/M
+painkiller/MS
+painkilling
+painless/PY
+painlessness/M
+painstaking/MY
+paint/SZGJMDR
+paintball
+paintbox/MS
+paintbrush/MS
+painted/U
+painter/MY
+painting/M
+paintwork
+pair/AMDSG
+paired/U
+pairing/S
+pairwise
+paisley/SM
+pajama/S
+pajamas/M
+pal/SMY
+palace/MS
+paladin/SM
+palanquin/SM
+palatable/U
+palatal/SM
+palatalization/M
+palatalize/GDS
+palate/MBS
+palatial/Y
+palatinate/MS
+palatine/MS
+palaver/GSMD
+palazzi
+palazzo
+pale/MYTGPDRSJ
+paleface/MS
+paleness/M
+paleo
+paleographer/MS
+paleography/M
+paleolithic
+paleontologist/SM
+paleontology/M
+palette/SM
+palfrey/SM
+palimony/M
+palimpsest/MS
+palindrome/MS
+palindromic
+paling/M
+palisade/SM
+palish
+pall/MDSG
+palladium/M
+pallbearer/MS
+pallet/MS
+palliate/DSGNV
+palliation/M
+palliative/SM
+pallid/YP
+pallidness/M
+pallor/M
+palm/MDSG
+palmate
+palmetto/SM
+palmist/SM
+palmistry/M
+palmtop/SM
+palmy/TR
+palomino/MS
+palpable
+palpably
+palpate/DSGN
+palpation/M
+palpitate/XGNDS
+palpitation/M
+palsy/GDSM
+paltriness/M
+paltry/RPT
+pampas/M
+pamper/DSG
+pamphlet/MS
+pamphleteer/MS
+pan/SM
+panacea/SM
+panache/M
+panama/MS
+panatella/S
+pancake/DSMG
+panchromatic
+pancreas/MS
+pancreatic
+pancreatitis
+panda/SM
+pandemic/SM
+pandemonium/M
+pander/MDRZGS
+panderer/M
+pane/KM
+panegyric/SM
+panel/SGJMD
+paneling/M
+panelist/MS
+panes
+pang/MS
+panhandle/DRSMZG
+panhandler/M
+panic/SM
+panicked
+panicking
+panicky
+panned
+pannier/SM
+panning
+panoply/SM
+panorama/SM
+panoramic
+panpipes/M
+pansy/SM
+pant/MDSG
+pantaloons/M
+pantechnicon/S
+pantheism/M
+pantheist/SM
+pantheistic
+pantheon/SM
+panther/MS
+pantie/MS
+panto/S
+pantomime/MGDS
+pantomimic
+pantomimist/SM
+pantry/SM
+pantsuit/SM
+pantyhose/M
+pantyliner/M
+pantywaist/SM
+pap/SM
+papa/MS
+papacy/SM
+papal
+paparazzi/M
+paparazzo
+papaya/MS
+paper/SZGMDR
+paperback/SM
+paperbark/S
+paperboard/M
+paperboy/SM
+paperclip/S
+paperer/M
+papergirl/SM
+paperhanger/SM
+paperhanging/M
+paperless
+paperweight/MS
+paperwork/M
+papery
+papilla/M
+papillae
+papillary
+papist/MS
+papoose/MS
+pappy/SM
+paprika/M
+papyri
+papyrus/M
+par/SZGMDRBJ
+para/MS
+parable/MS
+parabola/SM
+parabolic
+paracetamol/S
+parachute/DSMG
+parachutist/MS
+parade/MZGDRS
+parader/M
+paradigm/SM
+paradigmatic
+paradisaical
+paradise/SM
+paradox/MS
+paradoxical/Y
+paraffin/M
+paragliding
+paragon/MS
+paragraph/GMD
+paragraphs
+parakeet/SM
+paralegal/MS
+parallax/MS
+parallel/SGMD
+paralleled/U
+parallelism/MS
+parallelization
+parallelized
+parallelogram/SM
+paralyses
+paralysis/M
+paralytic/SM
+paralyze/DSG
+paralyzing/Y
+paramagnetic
+paramecia
+paramecium/M
+paramedic/MS
+paramedical/MS
+parameter/MS
+parameterize/D
+parametric
+paramilitary/SM
+paramount
+paramountcy
+paramour/SM
+paranoia/M
+paranoiac/MS
+paranoid/SM
+paranormal
+parapet/MS
+paraphernalia/M
+paraphrase/DSMG
+paraplegia/M
+paraplegic/SM
+paraprofessional/MS
+parapsychologist/MS
+parapsychology/M
+paraquat/M
+parasailing
+parascending
+parasite/SM
+parasitic
+parasitical/Y
+parasitism/M
+parasol/MS
+parasympathetic/S
+parathion/M
+parathyroid/MS
+paratroop/RZS
+paratrooper/M
+paratroops/M
+paratyphoid/M
+parboil/DSG
+parcel/GMDS
+parch/LGDS
+parchment/SM
+pardner/S
+pardon/ZGMDRBS
+pardonable/U
+pardonably/U
+pardoner/M
+pare/S
+paregoric/M
+parent/GMDS
+parentage/M
+parental
+parentheses
+parenthesis/M
+parenthesize/DSG
+parenthetic
+parenthetical/Y
+parenthood/M
+parenting/M
+parer/M
+pares/S
+paresis/M
+parfait/MS
+pariah/M
+pariahs
+paribus
+parietal
+parimutuel/MS
+paring/M
+parish/MS
+parishioner/MS
+parity/ESM
+park/MDSG
+parka/SM
+parking/M
+parkland
+parkour
+parkway/MS
+parky
+parlance/M
+parlay/GMDS
+parley/GMDS
+parliament/SM
+parliamentarian/SM
+parliamentary
+parlor/MS
+parlous
+parmigiana
+parochial/Y
+parochialism/M
+parodist/SM
+parody/GDSM
+parole/MGDS
+parolee/MS
+parotid
+paroxysm/SM
+paroxysmal
+parquet/MDSG
+parquetry/M
+parred
+parricidal
+parricide/MS
+parring
+parrot/GMDS
+parry/GDSM
+parse/DRSG
+parsec/MS
+parsimonious/Y
+parsimony/M
+parsley/M
+parsnip/MS
+parson/MS
+parsonage/MS
+part's
+part/CDSG
+partake/ZGRS
+partaken
+partaker/M
+parterre/SM
+parthenogenesis/M
+partial/MYS
+partiality/M
+participant/SM
+participate/DSGN
+participation/M
+participator/MS
+participatory
+participial/M
+participle/MS
+particle/SM
+particleboard/M
+particular/SMY
+particularity/SM
+particularization/M
+particularize/DSG
+particulate/SM
+parting/MS
+partisan/SM
+partisanship/M
+partition/GMDS
+partitive/MS
+partly
+partner/MDSG
+partnership/MS
+partook
+partridge/SM
+parturition/M
+partway
+party/GDSM
+parvenu/MS
+pascal/MS
+paschal
+pasha/SM
+pass/M
+passably
+passage/MS
+passageway/MS
+passbook/MS
+passe/DRSBXZGNV
+passel/MS
+passenger/SM
+passer/M
+passerby/M
+passersby
+passim
+passing/MY
+passion/EM
+passionate/EY
+passionflower/SM
+passionless
+passive/PMYS
+passiveness/M
+passivity/M
+passivization
+passivize/DSG
+passkey/MS
+passphrase/S
+passport/MS
+password/MS
+past/AMS
+pasta/SM
+paste/DSMG
+pasteboard/M
+pastel/MS
+pastern/MS
+pasteurization/M
+pasteurize/ZGDRS
+pasteurized/U
+pasteurizer/M
+pastiche/MS
+pastie
+pastille/MS
+pastime/MS
+pastiness/M
+pastor/MS
+pastoral/MS
+pastorate/MS
+pastrami/M
+pastry/SM
+pasturage/M
+pasture/DSMG
+pastureland/M
+pasty/PTRSM
+pat/SM
+patch/EGMDS
+patchily
+patchiness/M
+patchouli
+patchwork/SM
+patchy/TPR
+pate/MS
+patella/MS
+patellae
+patent/GMDYS
+paterfamilias/MS
+paternal/Y
+paternalism/M
+paternalist/S
+paternalistic
+paternity/M
+paternoster/MS
+path/M
+pathetic
+pathetically
+pathfinder/SM
+pathless
+pathogen/SM
+pathogenic
+pathological/Y
+pathologist/SM
+pathology/M
+pathos/M
+paths
+pathway/MS
+patience/M
+patient/IMST
+patienter
+patiently
+patina/MS
+patine
+patio/SM
+patisserie/S
+patois/M
+patresfamilias
+patriarch/M
+patriarchal
+patriarchate/MS
+patriarchs
+patriarchy/SM
+patrician/SM
+patricidal
+patricide/SM
+patrimonial
+patrimony/SM
+patriot/SM
+patriotic/U
+patriotically
+patriotism/M
+patrol/MS
+patrolled
+patrolling
+patrolman/M
+patrolmen
+patrolwoman/M
+patrolwomen
+patron/MS
+patronage/MS
+patroness/MS
+patronize/ZGDRS
+patronizer/M
+patronizing/Y
+patronymic/SM
+patronymically
+patroon/SM
+patsy/SM
+patted
+patter/MDGS
+pattern/SMDG
+patting
+patty/SM
+paucity/M
+paunch/MS
+paunchy/RT
+pauper/MS
+pauperism/M
+pauperize/DSG
+pause/DSMG
+pave/AGDS
+paved/U
+pavement/MS
+pavilion/SM
+paving/MS
+pavlova/S
+paw/SGMD
+pawl/MS
+pawn/MDSG
+pawnbroker/MS
+pawnbroking/M
+pawnshop/MS
+pawpaw/MS
+pay's
+pay/ASGBL
+payback/SM
+paycheck/MS
+payday/MS
+payed
+payee/SM
+payer/SM
+payload/SM
+paymaster/SM
+payment/ASM
+payoff/MS
+payola/M
+payout/MS
+payphone/S
+payroll/SM
+payslip/SM
+paywall/SM
+payware
+pct
+pd
+pea/SM
+peace/SM
+peaceable
+peaceably
+peaceful/PY
+peacefulness/M
+peacekeeper/SM
+peacekeeping/M
+peacemaker/MS
+peacemaking/M
+peacetime/M
+peach/MS
+peachy/TR
+peacock/MS
+peafowl/MS
+peahen/MS
+peak/MDSG
+peaky
+peal/AMDSG
+peanut/MS
+pear/MYS
+pearl/SGMD
+pearly/RT
+peasant/SM
+peasantry/M
+peashooter/SM
+peat/M
+peaty/TR
+pebble/MGDS
+pebbly
+pecan/SM
+peccadillo/M
+peccadilloes
+peccary/SM
+peck/MDRSZG
+peckish
+pecs
+pectic
+pectin/M
+pectoral/MS
+pectoralis
+peculate/GNDS
+peculation/M
+peculator/SM
+peculiar/Y
+peculiarity/SM
+pecuniary
+pedagogic
+pedagogical/Y
+pedagogue/SM
+pedagogy/M
+pedal/SGMD
+pedalo/S
+pedant/MS
+pedantic
+pedantically
+pedantry/M
+peddle/ZGDRS
+peddler/M
+pederast/MS
+pederasty/M
+pedestal/MS
+pedestrian/SM
+pedestrianization
+pedestrianize/GDS
+pediatric/S
+pediatrician/MS
+pediatrics/M
+pedicab/SM
+pedicure/MGDS
+pedicurist/MS
+pedigree/MDS
+pediment/MS
+pedometer/MS
+pedophile/S
+pedophilia
+peduncle/MS
+pee/DRSMZ
+peeing
+peek/MDSG
+peekaboo/M
+peel/MDRSJZG
+peeled/U
+peeler/M
+peeling/M
+peen/MS
+peep/MDRSZG
+peepbo
+peeper/M
+peephole/MS
+peepshow/MS
+peer/MDG
+peerage/SM
+peeress/MS
+peerless
+peeve/DSMG
+peevish/PY
+peevishness/M
+peewee/MS
+peewit/S
+peg/SM
+pegboard/MS
+pegged
+pegging
+peignoir/SM
+pejoration/M
+pejorative/SMY
+peke/MS
+pekineses
+pekingese/SM
+pekoe/M
+pelagic
+pelf/M
+pelican/MS
+pellagra/M
+pellet/GMDS
+pellucid
+pelmet/S
+pelt/MDSG
+pelvic
+pelvis/MS
+pemmican/M
+pen/M
+penal
+penalization/M
+penalize/DSG
+penalty/SM
+penance/MS
+pence
+penchant/SM
+pencil/GMDJS
+pend/CDSG
+pendant/MS
+pendent/MS
+pendulous
+pendulum/MS
+penetrability/M
+penetrable
+penetrate/DSGNVX
+penetrating/Y
+penetration/M
+penfriend/S
+penguin/MS
+penicillin/M
+penile
+peninsula/SM
+peninsular
+penis/MS
+penitence/M
+penitent/SMY
+penitential
+penitentiary/SM
+penknife/M
+penknives
+penlight/SM
+penman/M
+penmanship/M
+penmen
+pennant/MS
+penned
+penniless
+penning
+pennon/MS
+penny/SM
+pennyweight/MS
+pennyworth
+penologist/MS
+penology/M
+pension/BZGMDRS
+pensioner/M
+pensive/PY
+pensiveness/M
+pent
+pentacle/MS
+pentagon/MS
+pentagonal
+pentagram/SM
+pentameter/SM
+pentathlete/MS
+pentathlon/MS
+penthouse/SM
+penuche/M
+penultimate/SM
+penumbra/MS
+penumbrae
+penurious/PY
+penuriousness/M
+penury/M
+peon/MS
+peonage/M
+peony/SM
+people/MGDS
+pep/SM
+pepped
+pepper/GMDS
+peppercorn/SM
+peppermint/SM
+pepperoni/MS
+peppery
+peppiness/M
+pepping
+peppy/TPR
+pepsin/M
+peptic/MS
+peptide/S
+peradventure/M
+perambulate/XGNDS
+perambulation/M
+perambulator/MS
+percale/MS
+perceive/BGDS
+perceived/U
+percent/MS
+percentage/SM
+percentile/SM
+perceptible
+perceptibly
+perception/SM
+perceptional
+perceptive/PY
+perceptiveness/M
+perceptual/Y
+perch/GMDS
+perchance
+percipience/M
+percipient
+percolate/GNDS
+percolation/M
+percolator/SM
+percussion/AM
+percussionist/MS
+percussive
+perdition/M
+perdurable
+peregrinate/DSXGN
+peregrination/M
+peregrine/MS
+peremptorily
+peremptory
+perennial/SMY
+perestroika/M
+perfect/PTGMDRYS
+perfecta/MS
+perfectibility/M
+perfectible
+perfection/SM
+perfectionism/M
+perfectionist/SM
+perfectness/M
+perfidious/Y
+perfidy/SM
+perforate/GNXDS
+perforation/M
+perforce
+perform/SDRZG
+performance/SM
+performative
+performed/U
+performer/M
+perfume/DRSMZG
+perfumer/M
+perfumery/SM
+perfunctorily
+perfunctory
+perfusion
+pergola/SM
+perhaps
+pericardia
+pericardial
+pericarditis
+pericardium/M
+perigee/SM
+perihelia
+perihelion/M
+peril/SGMD
+perilous/Y
+perimeter/SM
+perinatal
+perinea
+perineum/M
+period/MS
+periodic
+periodical/SMY
+periodicity/M
+periodontal
+periodontics/M
+periodontist/SM
+peripatetic/MS
+peripheral/MYS
+periphery/SM
+periphrases
+periphrasis/M
+periphrastic
+periscope/SM
+perish/BDRSZG
+perishable/MS
+peristalses
+peristalsis/M
+peristaltic
+peristyle/SM
+peritoneal
+peritoneum/MS
+peritonitis/M
+periwig/SM
+periwinkle/SM
+perjure/DRSZG
+perjurer/M
+perjury/SM
+perk/MDSG
+perkily
+perkiness/M
+perky/TPR
+perm/MDSG
+permafrost/M
+permanence/M
+permanency/M
+permanent/SMY
+permeability/M
+permeable
+permeate/GNDS
+permeation/M
+permissible
+permissibly
+permission/MS
+permissive/PY
+permissiveness/M
+permit/MS
+permitted
+permitting
+permittivity
+permutation/SM
+permute/DSG
+pernicious/YP
+perniciousness/M
+peroration/MS
+peroxide/MGDS
+perpendicular/SMY
+perpendicularity/M
+perpetrate/DSGN
+perpetration/M
+perpetrator/MS
+perpetual/SMY
+perpetuate/DSGN
+perpetuation/M
+perpetuity/M
+perplex/GDS
+perplexed/Y
+perplexing/Y
+perplexity/SM
+perquisite/SM
+persecute/GNXDS
+persecution/M
+persecutor/SM
+perseverance/M
+persevere/DSG
+persiflage/M
+persimmon/SM
+persist/SGD
+persistence/M
+persistent/Y
+persnickety
+person/UMS
+persona/SM
+personable
+personae
+personage/MS
+personal/MYS
+personality/SM
+personalize/CDSG
+personalty/M
+personification/M
+personify/GDSNX
+personnel/M
+perspective/MS
+perspex
+perspicacious/Y
+perspicacity/M
+perspicuity/M
+perspicuous
+perspiration/M
+perspire/GDS
+persuade/BZGDRS
+persuaded/U
+persuader/M
+persuasion/SM
+persuasive/PY
+persuasiveness/M
+pert/RYPT
+pertain/GSD
+pertinacious/Y
+pertinacity/M
+pertinence/M
+pertinent/Y
+pertness/M
+perturb/DGS
+perturbation/SM
+perturbed/U
+pertussis/M
+peruke/MS
+perusal/MS
+peruse/GDS
+perv/S
+pervade/DSG
+pervasive/PY
+pervasiveness/M
+perverse/PXYN
+perverseness/M
+perversion/M
+perversity/M
+pervert/SGMD
+peseta/MS
+peskily
+peskiness/M
+pesky/TPR
+peso/MS
+pessary/S
+pessimal
+pessimism/M
+pessimist/SM
+pessimistic
+pessimistically
+pest/MRSZ
+pester/GD
+pesticide/MS
+pestiferous
+pestilence/SM
+pestilent
+pestilential
+pestle/MGDS
+pesto/M
+pet/SZMR
+petabyte/MS
+petajoule/S
+petal/SMD
+petard/MS
+petawatt/S
+petcock/SM
+peter/GMD
+petiole/SM
+petite/MS
+petition/ZGMDRS
+petitionary
+petitioner/M
+petrel/MS
+petrifaction/M
+petrify/DSG
+petrochemical/SM
+petrodollar/MS
+petrol/M
+petrolatum/M
+petroleum/M
+petrologist/SM
+petrology/M
+petted
+petticoat/MS
+pettifog/S
+pettifogged
+pettifogger/SM
+pettifoggery/M
+pettifogging
+pettily
+pettiness/M
+petting/M
+pettish/Y
+petty/PTR
+petulance/M
+petulant/Y
+petunia/MS
+pew/SM
+pewee/SM
+pewit/SM
+pewter/MS
+peyote/M
+pf
+pfennig/MS
+pg
+phaeton/MS
+phage/S
+phagocyte/SM
+phalanger/SM
+phalanges
+phalanx/MS
+phalli
+phallic
+phallocentric
+phallocentrism
+phallus/M
+phantasm/MS
+phantasmagoria/MS
+phantasmagorical
+phantasmal
+phantom/SM
+pharaoh/M
+pharaohs
+pharisaic
+pharisee/SM
+pharmaceutic/MS
+pharmaceutical/SM
+pharmaceutics/M
+pharmacist/MS
+pharmacologic
+pharmacological
+pharmacologist/SM
+pharmacology/M
+pharmacopoeia/MS
+pharmacotherapy
+pharmacy/SM
+pharyngeal
+pharynges
+pharyngitis/M
+pharynx/M
+phase/DSMG
+phaseout/SM
+phat
+pheasant/MS
+phenacetin/M
+phenobarbital/M
+phenol/M
+phenom/MS
+phenomena
+phenomenal/Y
+phenomenological
+phenomenology
+phenomenon/MS
+phenotype
+phenytoin
+pheromone/MS
+phew
+phi/SM
+phial/SM
+philander/ZGDRS
+philanderer/M
+philandering/M
+philanthropic
+philanthropically
+philanthropist/MS
+philanthropy/SM
+philatelic
+philatelist/MS
+philately/M
+philharmonic/SM
+philippic/MS
+philistine/MS
+philistinism/M
+philodendron/SM
+philological
+philologist/MS
+philology/M
+philosopher/MS
+philosophic
+philosophical/Y
+philosophize/DRSZG
+philosophizer/M
+philosophy/SM
+philter/MS
+phish/ZGDR
+phisher/M
+phlebitis/M
+phlegm/M
+phlegmatic
+phlegmatically
+phloem/M
+phlox/M
+phobia/MS
+phobic/MS
+phoebe/MS
+phoenix/MS
+phone/DSMG
+phonecard/S
+phoneme/MS
+phonemic
+phonemically
+phonetic/S
+phonetically
+phonetician/SM
+phonetics/M
+phoneyed
+phoneying
+phonic/S
+phonically
+phonics/M
+phoniness/M
+phonograph/M
+phonographic
+phonographs
+phonological/Y
+phonologist/MS
+phonology/M
+phonon
+phony/PTGDRSM
+phooey
+phosphate/MS
+phosphodiesterase
+phosphor/MS
+phosphorescence/M
+phosphorescent/Y
+phosphoric
+phosphorous
+phosphorus/M
+phosphorylation
+photo/SGMD
+photocell/MS
+photocopier/M
+photocopy/DRSMZG
+photoelectric
+photoelectrically
+photoengrave/DRSJZG
+photoengraver/M
+photoengraving/M
+photofinishing/M
+photogenic
+photogenically
+photograph/MDRZG
+photographer/M
+photographic
+photographically
+photographs/A
+photography/M
+photojournalism/M
+photojournalist/SM
+photometer/MS
+photon/MS
+photosensitive
+photostat/SM
+photostatic
+photostatted
+photostatting
+photosynthesis/M
+photosynthesize/GDS
+photosynthetic
+phototropic
+phototropism
+phototypesetter
+phototypesetting
+photovoltaic
+phrasal
+phrase's
+phrase/AGDS
+phrasebook/S
+phraseology/M
+phrasing/MS
+phreaking
+phrenologist/SM
+phrenology/M
+phyla
+phylactery/SM
+phylogeny/M
+phylum/M
+phys
+physic/SM
+physical/MYS
+physicality
+physician/SM
+physicist/SM
+physicked
+physicking
+physics/M
+physio/S
+physiognomy/SM
+physiography/M
+physiologic
+physiological/Y
+physiologist/MS
+physiology/M
+physiotherapist/MS
+physiotherapy/M
+physique/MS
+phytoplankton
+pi/SMDRHZG
+pianissimo/SM
+pianist/MS
+piano/SM
+pianoforte/SM
+pianola/S
+piaster/MS
+piazza/MS
+pibroch/M
+pibrochs
+pic/SM
+pica/M
+picador/MS
+picante
+picaresque
+picayune
+piccalilli/M
+piccolo/MS
+pick/MDRSJZG
+pickax/GMDS
+picker/M
+pickerel/MS
+picket/ZGMDRS
+pickings/M
+pickle/MGDS
+pickpocket/SM
+pickup/MS
+picky/PTR
+picnic/MS
+picnicked
+picnicker/SM
+picnicking
+picot/SM
+pictogram/S
+pictograph/M
+pictographs
+pictorial/MYS
+picture/MGDS
+picturesque/PY
+picturesqueness/M
+piddle/MGDS
+piddly
+pidgin/MS
+pie/SM
+piebald/MS
+piece/DSMG
+piecemeal
+piecework/MRZ
+pieceworker/M
+piecrust/SM
+pieing
+pier/M
+pierce/JGDS
+piercing/MY
+piety/M
+piezoelectric
+piffle/MG
+pig/SML
+pigeon/MS
+pigeonhole/DSMG
+pigged
+piggery/S
+pigging
+piggish/PY
+piggishness/M
+piggy/TRSM
+piggyback/MDSG
+pigheaded/PY
+pigheadedness/M
+piglet/MS
+pigment/MDS
+pigmentation/M
+pigpen/MS
+pigskin/MS
+pigsty/SM
+pigswill
+pigtail/MS
+pike/MZGDRS
+piker/M
+pikestaff/SM
+pilaf/SM
+pilaster/MS
+pilchard/MS
+pile/MGDSJ
+pileup/MS
+pilfer/ZGDRS
+pilferage/M
+pilferer/M
+pilgrim/MS
+pilgrimage/MS
+piling/M
+pill/MDSG
+pillage/MZGDRS
+pillager/M
+pillar/MDS
+pillbox/MS
+pillion/MS
+pillock/S
+pillory/GDSM
+pillow/GMDS
+pillowcase/MS
+pillowslip/MS
+pilot/DGSM
+pilothouse/SM
+pimento/MS
+pimiento/MS
+pimp/GMDYS
+pimpernel/MS
+pimple/DSM
+pimply/RT
+pin/SM
+pinafore/MS
+pinata/MS
+pinball/M
+pincer/MS
+pinch/GMDS
+pincushion/MS
+pine's
+pine/AGDS
+pineapple/MS
+pinewood/S
+piney
+pinfeather/SM
+ping/GMD
+pinhead/SM
+pinhole/SM
+pinier
+piniest
+pinion/SMDG
+pink/TGPMDRS
+pinkeye/M
+pinkie/SM
+pinkish
+pinkness/M
+pinko/MS
+pinnacle/SM
+pinnate
+pinned/U
+pinning/U
+pinny/S
+pinochle/M
+pinon/MS
+pinpoint/SGMD
+pinprick/MS
+pinsetter/SM
+pinstripe/DSM
+pint/MS
+pinto/MS
+pinup/MS
+pinwheel/GSMD
+pinyin/M
+pinyon/SM
+pioneer/SGMD
+pious/YP
+piousness/M
+pip/SZGMDR
+pipe/MS
+pipeline/SM
+piper/M
+pipette/SM
+pipework
+piping/M
+pipit/MS
+pipped
+pippin/SM
+pipping
+pipsqueak/SM
+piquancy/M
+piquant/Y
+pique/MGDS
+piracy/M
+piranha/SM
+pirate/DSMG
+piratical/Y
+pirogi/M
+piroshki/M
+pirouette/DSMG
+piscatorial
+pismire/SM
+piss/ZGMDRS
+pissoir/S
+pistachio/SM
+piste/S
+pistil/SM
+pistillate
+pistol/SM
+piston/SM
+pit/SM
+pita/MS
+pitapat/SM
+pitch/MDRSZG
+pitchblende/M
+pitcher/M
+pitchfork/MDSG
+pitchman/M
+pitchmen
+piteous/YP
+piteousness/M
+pitfall/SM
+pith/M
+pithead/S
+pithily
+pithiness/M
+pithy/RTP
+pitiable
+pitiably
+pitiful/Y
+pitiless/PY
+pitilessness/M
+piton/MS
+pitta/S
+pittance/MS
+pitted
+pitting
+pituitary/SM
+pity/GDSM
+pitying/Y
+pivot/MDGS
+pivotal
+pix/M
+pixel/MS
+pixie/MS
+pizza/MS
+pizzazz/M
+pizzeria/SM
+pizzicati
+pizzicato/M
+pj's
+pk
+pkg
+pkt
+pkwy
+pl
+placard/SMDG
+placate/DSGN
+placation/M
+placatory
+place's
+place/AESDLG
+placebo/SM
+placed/U
+placeholder/MS
+placekick/MDRZGS
+placekicker/M
+placement/EASM
+placenta/SM
+placental/S
+placer/SM
+placid/Y
+placidity/M
+placings
+placket/SM
+plagiarism/SM
+plagiarist/SM
+plagiarize/DRSZG
+plagiarizer/M
+plagiary/M
+plague/DSMG
+plaice
+plaid/MS
+plain/MRYTSP
+plainchant
+plainclothes
+plainclothesman/M
+plainclothesmen
+plainness/M
+plainsman/M
+plainsmen
+plainsong/M
+plainspoken
+plaint/SMV
+plaintiff/SM
+plaintive/Y
+plait/MDGS
+plan/ZMRS
+planar
+plane's
+plane/CGDS
+planeload/MS
+planer/M
+planet/SM
+planetarium/SM
+planetary
+plangency/M
+plangent
+plank/MDGS
+planking/M
+plankton/M
+planned/U
+planner/SM
+planning/S
+plant/MDRZGSJ
+plantain/SM
+plantar
+plantation/MS
+planter/M
+planting/M
+plantlike
+plaque/SM
+plash/MDSG
+plasma/M
+plasmon
+plaster/SZGMDR
+plasterboard/M
+plasterer/M
+plastic/SM
+plasticity/M
+plasticize/DSG
+plastique
+plat/XGMDNS
+plate/MS
+plateau/SMDG
+plateful/SM
+platelet/SM
+platen/M
+platform/SGMD
+plating/M
+platinum/M
+platitude/SM
+platitudinous
+platonic
+platoon/SGMD
+platted
+platter/SM
+platting
+platy/M
+platypus/MS
+platys
+plaudit/SM
+plausibility/M
+plausible
+plausibly
+play/AEGMDS
+playable/EU
+playact/SGD
+playacting/M
+playback/MS
+playbill/MS
+playbook/MS
+playboy/SM
+player/SM
+playfellow/SM
+playful/PY
+playfulness/M
+playgirl/MS
+playgoer/MS
+playground/SM
+playgroup/S
+playhouse/MS
+playlist/MS
+playmate/MS
+playoff/SM
+playpen/SM
+playroom/SM
+playschool/S
+plaything/SM
+playtime/M
+playwright/SM
+plaza/MS
+plea/MS
+plead/DRZGSJ
+pleader/M
+pleading/MY
+pleasant/UTYP
+pleasanter
+pleasantness/UM
+pleasantry/SM
+please/EDSG
+pleasing/YS
+pleasurably
+pleasure/MGDSB
+pleasureful
+pleat/MDGS
+pleb/S
+plebby
+plebe/MS
+plebeian/MS
+plebiscite/MS
+plectra
+plectrum/MS
+pledge/DSMG
+plenary/SM
+plenipotentiary/SM
+plenitude/SM
+plenteous
+plentiful/Y
+plenty/M
+plenum/S
+pleonasm/MS
+plethora/M
+pleura/M
+pleurae
+pleurisy/M
+plexus/MS
+pliability/M
+pliable
+pliancy/M
+pliant/Y
+pliers/M
+plight/SMDG
+plimsoll/S
+plinth/M
+plinths
+plod/S
+plodded
+plodder/MS
+plodding/S
+plonk/DRSZG
+plop/MS
+plopped
+plopping
+plosive/S
+plot/MS
+plotted
+plotter/SM
+plotting
+plover/SM
+plow/GMDS
+plowman/M
+plowmen
+plowshare/MS
+ploy's
+ploy/S
+pluck/MDSG
+pluckily
+pluckiness/M
+plucky/RPT
+plug's
+plug/US
+plugged/U
+plugging/U
+plughole/S
+plugin/SM
+plum/GMDS
+plumage/M
+plumb/MDRSZGJ
+plumbed/U
+plumber/M
+plumbing/M
+plume/MS
+plummet/SGMD
+plummy
+plump/MDRYSTGP
+plumpness/M
+plumy/RT
+plunder/SZGMDR
+plunderer/M
+plunge/DRSMZG
+plunger/M
+plunk/MDSG
+pluperfect/SM
+plural/SM
+pluralism/M
+pluralist/MS
+pluralistic
+plurality/SM
+pluralization/M
+pluralize/GDS
+plus/MS
+plush/MRYTP
+plushness/M
+plushy/RT
+plutocracy/SM
+plutocrat/SM
+plutocratic
+plutonium/M
+pluvial
+ply/AGDSM
+plywood/M
+pm
+pneumatic
+pneumatically
+pneumococcal
+pneumococci
+pneumococcus
+pneumonia/M
+poach/DRSZG
+poacher/M
+poaching/M
+pock/GMDS
+pocket/SMDG
+pocketbook/SM
+pocketful/SM
+pocketknife/M
+pocketknives
+pockmark/MDGS
+pod/SM
+podcast/SMG
+podded
+podding
+podiatrist/SM
+podiatry/M
+podium/SM
+poem/MS
+poesy/M
+poet/MS
+poetaster/MS
+poetess/MS
+poetic/S
+poetical/Y
+poetry/M
+pogrom/SM
+poi/M
+poignancy/M
+poignant/Y
+poinciana/SM
+poinsettia/SM
+point/MDRSZG
+pointblank
+pointed/Y
+pointer/M
+pointillism/M
+pointillist/SM
+pointless/PY
+pointlessness/M
+pointy/TR
+poise/MGDS
+poison/SJZGMDR
+poisoner/M
+poisoning/M
+poisonous/Y
+poke/MZGDRS
+poker/M
+pokey/MS
+poky/TR
+pol/SGMD
+polar
+polarity/SM
+polarization/CM
+polarize/CDSG
+pole/MS
+poleaxe/GDS
+polecat/MS
+polemic/MS
+polemical/Y
+polemicist/SM
+polemics/M
+polestar/SM
+police/DSMG
+policeman/M
+policemen
+policewoman/M
+policewomen
+policy/SM
+policyholder/MS
+policymaker/S
+polio/MS
+poliomyelitis/M
+polish/ZGMDRS
+polished/U
+polisher/M
+politburo/MS
+polite/RYTP
+politeness/M
+politesse/M
+politic/S
+political/Y
+politician/SM
+politicization/M
+politicize/CDSG
+politicking/M
+politico/SM
+politics/M
+polity/SM
+polka/MDSG
+poll/GMDNS
+pollack/MS
+pollard/S
+pollen/M
+pollinate/GNDS
+pollination/M
+pollinator/SM
+polling/M
+polliwog/SM
+pollster/SM
+pollutant/MS
+pollute/ZGNDRS
+polluted/U
+polluter/M
+pollution/M
+polo/M
+polonaise/SM
+polonium/M
+poltergeist/MS
+poltroon/SM
+poly
+polyacrylamide
+polyamory/S
+polyandrous
+polyandry/M
+polyclinic/SM
+polyester/MS
+polyethylene/M
+polygamist/MS
+polygamous
+polygamy/M
+polyglot/SM
+polygon/SM
+polygonal
+polygraph/GMD
+polygraphs
+polyhedral
+polyhedron/SM
+polymath/M
+polymaths
+polymer/SM
+polymeric
+polymerization/M
+polymerize/GDS
+polymorphic
+polymorphous
+polynomial/MS
+polyp/MS
+polyphonic
+polyphony/M
+polypropylene/M
+polys
+polysemous
+polystyrene/M
+polysyllabic
+polysyllable/MS
+polytechnic/MS
+polytheism/M
+polytheist/SM
+polytheistic
+polythene
+polyunsaturate/DS
+polyurethane/MS
+polyvinyl
+pom/S
+pomade/DSMG
+pomander/SM
+pomegranate/MS
+pommel/SGMD
+pommy/S
+pomp/M
+pompadour/SMD
+pompano/MS
+pompom/SM
+pomposity/M
+pompous/YP
+pompousness/M
+ponce/GDS
+poncho/SM
+poncy
+pond/MS
+ponder/SZGDR
+ponderer/M
+ponderous/YP
+ponderousness/M
+pone/MS
+pong/GDS
+pongee/M
+poniard/MS
+pontiff/SM
+pontifical/Y
+pontificate/DSMG
+pontoon/SM
+pony/GDSM
+ponytail/MS
+poo/SGD
+pooch/MDSG
+poodle/SM
+poof/MS
+poofter/S
+pooh/GMD
+poohs
+pool/GMDS
+poolroom/MS
+poolside/S
+poop/GMDS
+poor/TRYP
+poorboy/M
+poorhouse/SM
+poorness/M
+pop/SM
+popcorn/M
+pope/MS
+popgun/SM
+popinjay/MS
+poplar/SM
+poplin/M
+popover/SM
+poppa/MS
+poppadom/S
+popped
+popper/SM
+poppet/S
+popping
+poppy/SM
+poppycock/M
+populace/MS
+popular/Y
+popularity/UM
+popularization/M
+popularize/DSG
+populate/ACGDS
+populated/U
+population/CM
+populations
+populism/M
+populist/MS
+populous/P
+populousness/M
+popup/MS
+porcelain/SM
+porch/MS
+porcine
+porcupine/SM
+pore/MGDS
+porgy/SM
+pork/ZMR
+porker/M
+porky/RSMT
+porn/M
+porno/M
+pornographer/MS
+pornographic
+pornographically
+pornography/M
+porosity/M
+porous/P
+porousness/M
+porphyritic
+porphyry/M
+porpoise/MGDS
+porridge/M
+porringer/SM
+port's/A
+port/CAEGDS
+portability/M
+portable/MS
+portage/DSMG
+portal/SM
+portcullis/MS
+portend/SGD
+portent/SM
+portentous/YP
+porter/ASM
+porterhouse/SM
+portfolio/MS
+porthole/MS
+portico/M
+porticoes
+portiere/MS
+portion/KSGMD
+portliness/M
+portly/RPT
+portmanteau/MS
+portrait/MS
+portraitist/SM
+portraiture/M
+portray/SGD
+portrayal/MS
+portulaca/M
+pose's/A
+pose/CAKEGDS
+poser/EKSM
+poseur/SM
+posh/TR
+posit/DSGV
+position/CKEMS
+positional/KE
+positioned/K
+positioning/AK
+positive/MYPS
+positiveness/M
+positivism
+positivist/S
+positron/MS
+poss
+posse/MS
+possess/AEVGSD
+possession/ASM
+possessive/SMYP
+possessiveness/M
+possessor/SM
+possibility/SM
+possible/SM
+possibly
+possum/SM
+post/ZGMDRSJ
+postage/M
+postal
+postbag/S
+postbox/S
+postcard/SM
+postcode/S
+postcolonial
+postconsonantal
+postdate/DSG
+postdoc/MS
+postdoctoral
+poster/M
+posterior/SM
+posterity/M
+postgraduate/SM
+posthaste
+posthumous/Y
+posthypnotic
+postie/S
+postilion/SM
+postindustrial
+posting/M
+postlude/SM
+postman/M
+postmark/SMDG
+postmaster/MS
+postmen
+postmenopausal
+postmeridian
+postmistress/MS
+postmodern
+postmodernism/M
+postmodernist/MS
+postmortem/SM
+postnasal
+postnatal
+postoperative
+postpaid
+postpartum
+postpone/DSGL
+postponement/SM
+postprandial
+postscript/SM
+postseason/SM
+postsynaptic
+postulate/XDSMGN
+postulation/M
+postural
+posture/MGJDS
+posturing/M
+postwar
+postwoman
+postwomen
+posy/SM
+pot/CSM
+potability/M
+potable/SM
+potash/M
+potassium/M
+potato/M
+potatoes
+potbelly/DSM
+potboiler/SM
+potency/M
+potent/Y
+potentate/MS
+potential/MYS
+potentiality/SM
+potentiate/GDS
+potful/SM
+pothead/SM
+pother/SMDG
+potherb/SM
+potholder/MS
+pothole/DRSMZG
+pothook/SM
+potion/SM
+potluck/MS
+potpie/SM
+potpourri/SM
+potsherd/SM
+potshot/MS
+pottage/M
+potted
+potter/GSMD
+pottery/SM
+potting
+potty/PRSMT
+pouch/MDSG
+pouf/S
+pouffe/S
+poulterer/MS
+poultice/DSMG
+poultry/M
+pounce/DSMG
+pound's
+pound/KDSG
+poundage/M
+pounding/SM
+pour/GDSJ
+pout/ZGMDRS
+pouter/M
+poverty/M
+pow
+powder/GSMD
+powdery
+power/MDSG
+powerboat/MS
+powerful/Y
+powerhouse/SM
+powerless/PY
+powerlessness/M
+powwow/SGMD
+pox/MS
+pp
+ppm
+ppr
+pr
+practicability/M
+practicably
+practical/SMY
+practicality/SM
+practice/DSMGB
+practiced/U
+practicum/SM
+practitioner/SM
+praetor/SM
+praetorian
+pragmatic/MS
+pragmatical/Y
+pragmatism/M
+pragmatist/MS
+prairie/SM
+praise/EDSMG
+praiseworthiness/M
+praiseworthy/P
+praline/SM
+pram/MS
+prance/DRSMZG
+prancer/M
+prancing/Y
+prang/DSG
+prank/MS
+prankster/SM
+praseodymium/M
+prat/S
+prate/MZGDRS
+prater/M
+pratfall/SM
+prattle/DRSMZG
+prattler/M
+prawn/MDSG
+pray/ZGDRS
+prayer/M
+prayerful/Y
+preach/DRSZGL
+preacher/M
+preachment/M
+preachy/RT
+preadolescence/SM
+preadolescent
+preamble/MGDS
+prearrange/LGDS
+prearrangement/M
+preassigned
+precancel/SMDG
+precancerous
+precarious/PY
+precariousness/M
+precast
+precaution/MS
+precautionary
+precede/DSG
+precedence/M
+precedent/SM
+precept/SM
+preceptor/SM
+precinct/MS
+preciosity/M
+precious/YP
+preciousness/M
+precipice/SM
+precipitant/MS
+precipitate/XMYGNDS
+precipitation/M
+precipitous/Y
+precis/M
+precise/DRSYTGNP
+preciseness/M
+precision/M
+preclude/GDS
+preclusion/M
+precocious/YP
+precociousness/M
+precocity/M
+precognition/M
+precognitive
+precolonial
+preconceive/GDS
+preconception/SM
+precondition/MDGS
+precook/GSD
+precursor/SM
+precursory
+predate/DSG
+predator/MS
+predatory
+predawn
+predecease/GDS
+predecessor/SM
+predefined
+predesignate/GDS
+predestination/M
+predestine/DSG
+predetermination/M
+predetermine/ZGDRS
+predeterminer/M
+predicable
+predicament/MS
+predicate/MGNVDS
+predication/M
+predicative/Y
+predict/BGVSD
+predictability/UM
+predictable/U
+predictably/U
+prediction/SM
+predictor/MS
+predigest/GDS
+predilection/SM
+predispose/GDS
+predisposition/MS
+prednisone
+predominance/M
+predominant/Y
+predominate/YGDS
+preemie/SM
+preeminence/M
+preeminent/Y
+preempt/GVSD
+preemption/M
+preemptive/Y
+preen/DSG
+preexist/DGS
+preexistence/M
+pref
+prefab/SM
+prefabbed
+prefabbing
+prefabricate/DSGN
+prefabrication/M
+preface/DSMG
+prefatory
+prefect/SM
+prefecture/MS
+prefer/SBL
+preferably
+preference/MS
+preferential/Y
+preferment/M
+preferred
+preferring
+prefigure/GDS
+prefix/MDSG
+preform/GSD
+prefrontal
+pregame/SM
+pregnancy/SM
+pregnant
+preheat/GSD
+prehensile
+prehistorian/S
+prehistoric
+prehistorical/Y
+prehistory/M
+prehuman
+preinstalled
+prejudge/GDS
+prejudgment/SM
+prejudice/MGDS
+prejudiced/U
+prejudicial
+prekindergarten/SM
+prelacy/M
+prelate/SM
+prelim/SM
+preliminary/SM
+preliterate
+prelude/MS
+premarital
+premature/Y
+premed/SM
+premedical
+premeditate/DSGN
+premeditated/U
+premeditation/M
+premenstrual
+premier/SGMD
+premiere/MS
+premiership/MS
+premise/DSMG
+premium/SM
+premix/GDS
+premolar/SM
+premonition/MS
+premonitory
+prenatal/Y
+prenup/SM
+prenuptial
+preoccupation/SM
+preoccupy/DSG
+preoperative
+preordain/GDS
+preowned
+prep/MS
+prepackage/DSG
+prepacked
+prepaid
+preparation/SM
+preparatory
+prepare/GDS
+prepared/UP
+preparedness/UM
+prepay/GSL
+prepayment/MS
+prepend
+preponderance/SM
+preponderant/Y
+preponderate/GDS
+preposition/SM
+prepositional/Y
+prepossess/GDS
+prepossessing/U
+prepossession/SM
+preposterous/Y
+prepped
+prepping
+preppy/TRSM
+prepubescence/M
+prepubescent/SM
+prepuce/MS
+prequel/MS
+prerecord/GSD
+preregister/SGD
+preregistration/M
+prerequisite/MS
+prerogative/SM
+pres
+presage/MGDS
+presbyopia/M
+presbyter/SM
+presbytery/SM
+preschool/SZMR
+preschooler/M
+prescience/M
+prescient/Y
+prescribe/DSG
+prescript/SVM
+prescription/SM
+prescriptive/Y
+preseason/SM
+presence/SM
+present/LMDRYZGSB
+presentably
+presentation/ASM
+presenter/M
+presentiment/SM
+presentment/SM
+preservation/M
+preservationist/SM
+preservative/SM
+preserve/BDRSMZG
+preserver/M
+preset/S
+presetting
+preshrank
+preshrink/GS
+preshrunk
+preside/GDS
+presidency/SM
+president/MS
+presidential
+presidium/M
+presort/DGS
+press's
+press/ACGSD
+pressed/U
+presser/MS
+pressie/S
+pressing/SMY
+pressman/M
+pressmen
+pressure/DSMG
+pressurization/M
+pressurize/CGDS
+pressurizer/SM
+prestidigitation/M
+prestige/M
+prestigious
+presto/SM
+presumably
+presume/GDSB
+presumption/SM
+presumptive
+presumptuous/YP
+presumptuousness/M
+presuppose/DSG
+presupposition/MS
+pretax
+preteen/MS
+pretend/DRZGS
+pretender/M
+pretense/SXMN
+pretension/M
+pretentious/UY
+pretentiousness/M
+preterit/SM
+preterm
+preternatural/Y
+pretest/DGS
+pretext/MS
+pretrial/S
+prettify/GDS
+prettily
+prettiness/M
+pretty/TGDRSMP
+pretzel/MS
+prevail/DGS
+prevalence/M
+prevalent
+prevaricate/DSGNX
+prevarication/M
+prevaricator/SM
+prevent/DBSGV
+preventable/U
+preventative/MS
+prevention/M
+preventive/SM
+preview/MDRSZG
+previous/Y
+prevision/MS
+prewar
+prey/GMDS
+prezzie/S
+priapic
+price's
+price/AGDS
+priceless
+pricey
+pricier
+priciest
+prick/MDRYSZG
+pricker/M
+prickle/MGDS
+prickliness/M
+prickly/PRT
+pride/MGDS
+prideful/Y
+prier/M
+priest/SMY
+priestess/MS
+priesthood/SM
+priestliness/M
+priestly/RTP
+prig/MS
+priggish/P
+priggishness/M
+prim/ZGDRYP
+primacy/M
+primal
+primarily
+primary/SM
+primate/MS
+prime/MS
+primer/M
+primeval
+priming/M
+primitive/SPMY
+primitiveness/M
+primmer
+primmest
+primness/M
+primogenitor/SM
+primogeniture/M
+primordial/Y
+primp/DSG
+primrose/SM
+primula/S
+prince/SMY
+princedom/SM
+princeliness/M
+princely/PRT
+princess/MS
+principal/SMY
+principality/SM
+principle/DSM
+principled/U
+print/AMDSG
+printable/U
+printer/MS
+printing/SM
+printmaking
+printout/SM
+prion/S
+prior/MS
+prioress/MS
+prioritization
+prioritize/DSG
+priority/SM
+priory/SM
+prism/MS
+prismatic
+prison/SZMR
+prisoner/M
+prissily
+prissiness/M
+prissy/PTR
+pristine
+prithee
+privacy/M
+private/XMYTNRS
+privateer/SM
+privation/CSM
+privatization/SM
+privatize/DSG
+privet/SM
+privilege/DSMG
+privileged/U
+privily
+privy/RSMT
+prize/MGDS
+prized/A
+prizefight/ZGSMR
+prizefighter/M
+prizefighting/M
+prizewinner/MS
+prizewinning
+pro/SM
+probabilistic
+probability/SM
+probable/SM
+probably
+probate/MN
+probation/ZMR
+probational
+probationary
+probationer/M
+probe/MGDSBJ
+probity/M
+problem/MS
+problematic/U
+problematical/Y
+probosces
+proboscis/MS
+procaine/M
+procedural
+procedure/SM
+proceed/GJDS
+proceeding/M
+proceeds/M
+process's
+process/AGDS
+processable
+processed/U
+procession/GD
+processional/MS
+processor/SM
+proclamation/MS
+proclivity/SM
+procrastinate/DSGN
+procrastination/M
+procrastinator/MS
+procreate/V
+proctor/GMDS
+procurement/M
+prod/MS
+prodigal/MYS
+prodigality/M
+prodigious/Y
+prodigy/SM
+produce's
+produce/AZGDRS
+producer/AM
+producible/A
+production/ASM
+productive/UY
+productiveness/M
+productivity/M
+prof/MS
+profanation/MS
+profane/PYGDS
+profaneness/M
+profanity/SM
+professed/Y
+profession/SM
+professional/MYS
+professionalism/M
+professionalization
+professionalize/DSG
+professor/SM
+professorial/Y
+professorship/SM
+proffer/GMDS
+proficiency/M
+proficient/MYS
+profit/BGD
+profitability/M
+profitable/U
+profitably/U
+profiteer/MDGS
+profiteering/M
+profiterole/SM
+profitless
+profligacy/M
+profligate/SMY
+proforma
+profound/RYTP
+profoundness/M
+profundity/SM
+profuse/PY
+profuseness/M
+progenitor/SM
+progeny/M
+progesterone/M
+progestin/S
+prognathous
+prognoses
+prognosis/M
+prognostic/MS
+prognosticate/XGNDS
+prognostication/M
+prognosticator/MS
+program/CAS
+programmable/MS
+programmatic
+programmed/AC
+programmer/MS
+programming/SM
+progress/MDSGV
+progression/MS
+progressive/PMYS
+progressiveness/M
+prohibit/DGVS
+prohibition/SM
+prohibitionist/MS
+prohibitive/Y
+prohibitory
+project/GMDS
+projectile/SM
+projection/SM
+projectionist/SM
+projector/MS
+prokaryote/MS
+prokaryotic
+prole/S
+proletarian/MS
+proletariat/M
+proliferate/DSGN
+proliferation/M
+prolific
+prolifically
+prolix/Y
+prolixity/M
+prologue/SM
+prolongation/SM
+prom/M
+promenade/MGDS
+promethium/M
+prominence/M
+prominent/Y
+promiscuity/M
+promiscuous/Y
+promise/DSMG
+promising/Y
+promissory
+promo/M
+promontory/SM
+promote/DRZG
+promoter/M
+promotional
+prompt/JPSMDRYZTG
+prompted/U
+prompter/M
+prompting/M
+promptitude/M
+promptness/M
+promulgate/GNDS
+promulgation/M
+promulgator/MS
+prone/P
+proneness/M
+prong/MDS
+pronghorn/MS
+pronominal/M
+pronounce/DSLG
+pronounceable/U
+pronouncement/SM
+pronto
+pronunciation/MS
+proof/ADGSM
+proofread/SRZG
+proofreader/M
+prop/MS
+propaganda/M
+propagandist/MS
+propagandize/GDS
+propagate/DSGN
+propagation/M
+propagator/SM
+propel/S
+propellant/MS
+propelled
+propeller/SM
+propelling
+propensity/SM
+proper/MRYT
+property/DSM
+prophecy/SM
+prophesier/M
+prophesy/DRSMZG
+prophet/SM
+prophetess/MS
+prophetic
+prophetical/Y
+prophylactic/SM
+prophylaxes
+prophylaxis/M
+propinquity/M
+propitiate/DSGN
+propitiation/M
+propitiatory
+propitious/Y
+proponent/SM
+proportion/ESM
+proportional/YS
+proportionality
+proportionate/EY
+proposal/MS
+propped
+propping
+propranolol
+proprietary/SM
+proprieties/M
+proprietor/SM
+proprietorial/Y
+proprietorship/M
+proprietress/MS
+propriety/SM
+propulsion/M
+propulsive
+prorate/DSG
+prorogation/M
+prorogue/GD
+prosaic
+prosaically
+proscenium/SM
+prosciutto/M
+proscribe/DG
+proscription/MS
+prose/M
+prosecute/DSXGN
+prosecution/M
+prosecutor/MS
+proselyte/DSMG
+proselytism/M
+proselytize/DRSZG
+proselytizer/M
+prosocial
+prosody/SM
+prospect/MDGVS
+prospective/Y
+prospector/SM
+prospectus/MS
+prosper/GSD
+prosperity/M
+prosperous/Y
+prostate/MS
+prostheses
+prosthesis/M
+prosthetic
+prostitute/MGNDS
+prostitution/M
+prostrate/GNXDS
+prostration/M
+prosy/RT
+protactinium/M
+protagonist/SM
+protean
+protect/GVSD
+protected/U
+protection/SM
+protectionism/M
+protectionist/MS
+protective/PY
+protectiveness/M
+protector/MS
+protectorate/MS
+protege/SM
+protegee/S
+protein/SM
+protestant/S
+protestation/MS
+protocol/MS
+proton/SM
+protoplasm/M
+protoplasmic
+prototype/MGS
+prototypical
+protozoa
+protozoan/MS
+protozoic
+protract/GD
+protrude/GDS
+protrusile
+protrusion/MS
+protuberance/MS
+protuberant
+proud/RYT
+prov/NB
+provability/M
+provably
+prove/EAGDS
+proved/U
+proven/U
+provenance/SM
+provender/M
+provenience/M
+proverbial/Y
+provide/DRSZG
+provided/U
+providence/M
+provident/Y
+providential/Y
+provider/M
+province/MS
+provincial/SMY
+provincialism/M
+provisional/Y
+proviso/SM
+provocateur/S
+provocative/PY
+provocativeness/M
+provoke/DRSZG
+provoked/U
+provoker/M
+provoking/Y
+provolone/M
+provost/SM
+prow/MS
+prowess/M
+prowl/MDRSZG
+prowler/M
+proximal
+proximate
+proximity/M
+proxy/SM
+prude/MS
+prudence/M
+prudent/Y
+prudential/Y
+prudery/M
+prudish/YP
+prudishness/M
+prune/MZGDRS
+pruner/M
+prurience/M
+prurient/Y
+pry/ZTGDRSM
+psalm/MS
+psalmist/SM
+psaltery/SM
+psephologist/S
+psephology
+pseud/S
+pseudo/S
+pseudonym/SM
+pseudonymous
+pseudoscience/MS
+pseudy
+pshaw/MS
+psi/SM
+psittacosis/M
+psoriasis/M
+psst
+psych/MDSG
+psyche/M
+psychedelia
+psychedelic/SM
+psychedelically
+psychiatric
+psychiatrist/SM
+psychiatry/M
+psychic/MS
+psychical/Y
+psycho/SM
+psychoactive
+psychoanalyses
+psychoanalysis/M
+psychoanalyst/SM
+psychoanalytic
+psychoanalytical/Y
+psychoanalyze/DSG
+psychobabble/M
+psychodrama/MS
+psychogenic
+psychokinesis
+psychokinetic
+psychological/Y
+psychologist/MS
+psychology/SM
+psychometric
+psychoneuroses
+psychoneurosis/M
+psychopath/M
+psychopathic
+psychopathology
+psychopaths
+psychopathy/M
+psychopharmacology
+psychophysiology
+psychos/S
+psychosis/M
+psychosomatic
+psychotherapist/MS
+psychotherapy/SM
+psychotic/SM
+psychotically
+psychotropic/MS
+psychs
+pt/C
+ptarmigan/MS
+pterodactyl/MS
+ptomaine/SM
+pub/SM
+pubertal
+puberty/M
+pubes/M
+pubescence/M
+pubescent
+pubic
+pubis/M
+public/AM
+publican/AMS
+publication/ASM
+publicist/MS
+publicity/M
+publicize/GDS
+publicly
+publish/AGDS
+publishable
+published/U
+publisher/MS
+publishing/M
+puce/M
+puck/ZMRS
+pucker/MDG
+puckish/YP
+puckishness/M
+pud/S
+pudding/SM
+puddle/DSMG
+puddling/M
+pudenda
+pudendum/M
+pudginess/M
+pudgy/PRT
+pueblo/SM
+puerile
+puerility/M
+puerperal
+puff/ZGMDRS
+puffball/SM
+puffer/M
+puffin/SM
+puffiness/M
+puffy/PRT
+pug/SM
+pugilism/M
+pugilist/SM
+pugilistic
+pugnacious/YP
+pugnaciousness/M
+pugnacity/M
+puke/MGDS
+pukka
+pulchritude/M
+pulchritudinous
+pule/GDS
+pull/ZGMDRS
+pullback/MS
+puller/M
+pullet/SM
+pulley/SM
+pullout/MS
+pullover/SM
+pulmonary
+pulp/GMDS
+pulpiness/M
+pulpit/SM
+pulpwood/M
+pulpy/RPT
+pulsar/SM
+pulsate/XGNDS
+pulsation/M
+pulse/AMGDS
+pulverization/M
+pulverize/DSG
+puma/MS
+pumice/SM
+pummel/SGD
+pump/ZGMDRS
+pumper/M
+pumpernickel/M
+pumpkin/MS
+pun/SM
+punch/MDRSZG
+punchbag/S
+puncheon/MS
+puncher/M
+punchline/S
+punchy/TR
+punctilio/M
+punctilious/PY
+punctiliousness/M
+punctual/Y
+punctuality/M
+punctuate/GNDS
+punctuation/M
+puncture/DSMG
+pundit/SM
+punditry/M
+pungency/M
+pungent/Y
+puniness/M
+punish/BLGDS
+punished/U
+punishing/Y
+punishment/MS
+punitive/Y
+punk/TMRS
+punned
+punnet/S
+punning
+punster/SM
+punt/ZGMDRS
+punter/M
+puny/TRP
+pup/SM
+pupa/M
+pupae
+pupal
+pupate/DSG
+pupil/MS
+pupped
+puppet/MS
+puppeteer/SM
+puppetry/M
+pupping
+puppy/SM
+purblind
+purchase/DRSMZGB
+purchaser/M
+purdah/M
+pure/PYTR
+purebred/SM
+puree/MDS
+pureeing
+pureness/M
+purgative/SM
+purgatorial
+purgatory/SM
+purge/MZGDRS
+purger/M
+purification/M
+purifier/M
+purify/NDRSZG
+purine/MS
+purism/M
+purist/MS
+puristic
+puritan/SM
+puritanical/Y
+puritanism/M
+purity/M
+purl/GMDS
+purlieu/SM
+purloin/SGD
+purple/MTRS
+purplish
+purport/SMDG
+purported/Y
+purpose/DSMYG
+purposed/A
+purposeful/YP
+purposefulness/M
+purposeless/PY
+purr/GMDS
+purse/MZGDRS
+purser/M
+pursuance/M
+pursuant
+pursue/ZGDRS
+pursuer/M
+pursuit/SM
+purulence/M
+purulent
+purvey/DSG
+purveyance/M
+purveyor/SM
+purview/M
+pus/M
+push/ZGMDRS
+pushbike/S
+pushcart/SM
+pushchair/S
+pusher/M
+pushily
+pushiness/M
+pushover/MS
+pushpin/S
+pushy/TRP
+pusillanimity/M
+pusillanimous/Y
+puss/MS
+pussy/TRSM
+pussycat/MS
+pussyfoot/DSG
+pustular
+pustule/SM
+put/ISM
+putative
+putout/MS
+putrefaction/M
+putrefactive
+putrefy/GDS
+putrescence/M
+putrescent
+putrid
+putsch/MS
+putt/ZGMDRS
+putted/I
+puttee/MS
+putter/MDRZG
+putterer/M
+putting/I
+putty/GDSM
+putz/S
+puzzle/MZGDRSL
+puzzlement/M
+puzzler/M
+pvt
+pwn/SGD
+pyelonephritis
+pygmy/SM
+pylon/SM
+pylori
+pyloric
+pylorus/M
+pyorrhea/M
+pyramid/GSMD
+pyramidal
+pyre/MS
+pyrimidine/MS
+pyrite/SM
+pyrites/M
+pyromania/M
+pyromaniac/SM
+pyrotechnic/S
+pyrotechnical
+pyrotechnics/M
+pyruvate
+python/SM
+pyx/MS
+pzazz
+q
+qr
+qt/S
+qty
+qua
+quack/GMDS
+quackery/M
+quad/MS
+quadrangle/SM
+quadrangular
+quadrant/MS
+quadraphonic
+quadratic/MS
+quadrature
+quadrennial
+quadrennium/MS
+quadriceps/MS
+quadrilateral/SM
+quadrille/XMNS
+quadrillion/M
+quadriplegia/M
+quadriplegic/SM
+quadrivium/M
+quadruped/MS
+quadrupedal
+quadruple/MGDS
+quadruplet/MS
+quadruplicate/MGNDS
+quadruplication/M
+quaff/GMDS
+quagmire/SM
+quahog/MS
+quail/GMDS
+quaint/PRYT
+quaintness/M
+quake/MGDS
+quaky
+qualification/EM
+qualified/U
+qualifier/SM
+qualify/EGXNDS
+qualitative/Y
+quality/SM
+qualm/MS
+qualmish
+quandary/SM
+quango/S
+quanta
+quantifiable
+quantification/M
+quantifier/M
+quantify/NDRSZG
+quantitation
+quantitative/Y
+quantity/SM
+quantization
+quantize
+quantum/M
+quarantine/MGDS
+quark/MS
+quarrel/SZGMDR
+quarreler/M
+quarrelsome/P
+quarrelsomeness/M
+quarry/DSMG
+quart/MS
+quarter/SGMDY
+quarterback/GMDS
+quarterdeck/MS
+quarterfinal/SM
+quarterly/SM
+quartermaster/MS
+quarterstaff/M
+quarterstaves
+quartet/SM
+quarto/MS
+quartz/M
+quasar/MS
+quash/GDS
+quasi
+quatrain/MS
+quaver/MDSG
+quavery
+quay/MS
+quayside/S
+queasily
+queasiness/M
+queasy/TPR
+queen/GMDYS
+queenly/RT
+queer/PTGMDRYS
+queerness/M
+quell/GDS
+quench/ZGDRSB
+quenchable/U
+quencher/M
+quenchless
+querulous/YP
+querulousness/M
+query/DSMG
+ques
+quesadilla/MS
+quest/IFAMS
+quested
+questing
+question/SMDRZGBJ
+questionable/U
+questionably/U
+questioned/U
+questioner/M
+questioning/MY
+questionnaire/SM
+queue's
+queue/CDS
+queuing
+quibble/DRSMZG
+quibbler/M
+quiche/SM
+quick/MNRYXTP
+quicken/DG
+quickfire
+quickie/SM
+quicklime/M
+quickness/M
+quicksand/MS
+quicksilver/M
+quickstep/MS
+quid/MS
+quiescence/M
+quiescent/Y
+quiet/SMDNRYXTGP
+quieten/DG
+quietism
+quietness/M
+quietude/IEM
+quietus/MS
+quiff/S
+quill/SM
+quilt/SMDRZG
+quilter/M
+quilting/M
+quin/S
+quince/SM
+quine/S
+quinidine
+quinine/M
+quinoa
+quinsy/M
+quint/SM
+quintessence/SM
+quintessential/Y
+quintet/SM
+quintuple/MGDS
+quintuplet/MS
+quip/MS
+quipped
+quipping
+quipster/SM
+quire's
+quire/IAS
+quirk/SMDG
+quirkiness/M
+quirky/RTP
+quirt/SM
+quisling/SM
+quit/S
+quitclaim/MS
+quite
+quittance/M
+quitter/SM
+quitting
+quiver/SMDG
+quivery
+quixotic
+quixotically
+quiz/M
+quizzed
+quizzer/SM
+quizzes
+quizzical/Y
+quizzing
+quo/H
+quoin/SM
+quoit/SMDG
+quondam
+quorate/I
+quorum/SM
+quot/B
+quota/SM
+quotability/M
+quotation/SM
+quote's
+quote/UDSG
+quotidian
+quotient/SM
+qwerty
+r/S
+rabbet/GMDS
+rabbi/SM
+rabbinate/M
+rabbinic
+rabbinical
+rabbit/GMDS
+rabble/MS
+rabid/PY
+rabidness/M
+rabies/M
+raccoon/MS
+race/MZGDRS
+racecourse/SM
+racegoer/S
+racehorse/MS
+raceme/MS
+racer/M
+racetrack/MS
+raceway/MS
+racial/Y
+racialism/M
+racialist/MS
+racily
+raciness/M
+racing/M
+racism/M
+racist/SM
+rack/GMDS
+racket/SMDG
+racketeer/SMDG
+racketeering/M
+raconteur/SM
+racquetball/SM
+racy/PRT
+rad/SM
+radar/SM
+radarscope/SM
+raddled
+radial/SMY
+radian/S
+radiance/M
+radiant/Y
+radiate/DSGNX
+radiation/M
+radiator/SM
+radical/SMY
+radicalism/M
+radicalization/M
+radicalize/DSG
+radicchio/M
+radii
+radio/MDGS
+radioactive/Y
+radioactivity/M
+radiocarbon/M
+radiogram/MS
+radiographer/SM
+radiography/M
+radioisotope/MS
+radiologist/SM
+radiology/M
+radioman/M
+radiomen
+radiometer/MS
+radiometric
+radiometry/M
+radiophone/SM
+radioscopy/M
+radiosonde/SM
+radiosurgery
+radiotelegraph/M
+radiotelegraphs
+radiotelegraphy/M
+radiotelephone/MS
+radiotherapist/MS
+radiotherapy/M
+radish/MS
+radium/M
+radius/M
+radon/M
+raffia/M
+raffish/YP
+raffishness/M
+raffle/DSMG
+raft/ZGMDRS
+rafter/M
+rafting/M
+rag/SGMD
+raga/MS
+ragamuffin/MS
+ragbag/M
+rage/MS
+ragga
+ragged/RYTP
+raggedness/M
+raggedy/RT
+ragging
+raging/Y
+raglan/SM
+ragout/SM
+ragtag/S
+ragtime/M
+ragweed/M
+ragwort
+rah
+raid/ZGMDRS
+raider/M
+rail's
+rail/CGDS
+railcard/S
+railing/SM
+raillery/SM
+railroad/SZGMDR
+railroader/M
+railroading/M
+railway/SM
+railwayman
+railwaymen
+raiment/M
+rain/GMDS
+rainbow/SM
+raincoat/SM
+raindrop/SM
+rainfall/SM
+rainmaker/SM
+rainmaking/M
+rainproof
+rainstorm/MS
+rainwater/M
+rainy/RT
+raise/MZGDRS
+raiser/M
+raisin/SM
+rajah/M
+rajahs
+rake/MGDS
+rakish/YP
+rakishness/M
+rally/DSMG
+ram/SM
+ramble/DRSMZGJ
+rambler/M
+rambunctious/PY
+rambunctiousness/M
+ramekin/SM
+ramie/M
+ramification/M
+ramify/DSXNG
+ramjet/SM
+rammed
+ramming
+ramp/GMS
+rampage/DSMG
+rampancy/M
+rampant/Y
+rampart/SM
+ramrod/SM
+ramrodded
+ramrodding
+ramshackle
+ran/A
+ranch/MDRSZG
+rancher/M
+ranching/M
+rancid/P
+rancidity/M
+rancidness/M
+rancor/M
+rancorous/Y
+rand/M
+randiness/M
+random/PSY
+randomization/M
+randomize/DSG
+randomness/MS
+randy/RTP
+ranee/MS
+rang/ZR
+range's
+range/CGDS
+rangefinder/S
+ranger/M
+ranginess/M
+rangy/RTP
+rank/TGJPMDRYS
+ranking/M
+rankle/DSG
+rankness/M
+ransack/SGD
+ransom/SZGMDR
+ransomer/M
+ransomware
+rant/ZGMDJRS
+ranter/M
+rap/SZGMDR
+rapacious/PY
+rapaciousness/M
+rapacity/M
+rape/MS
+raper/M
+rapeseed/M
+rapid/PMRYTS
+rapidity/M
+rapidness/M
+rapier/SM
+rapine/M
+rapist/SM
+rapped
+rappel/SM
+rappelled
+rappelling
+rapper/SM
+rapping
+rapport/MS
+rapporteur/S
+rapprochement/SM
+rapscallion/MS
+rapt/YP
+raptness/M
+raptor/S
+rapture/MS
+rapturous/Y
+rare/YTGPDRS
+rarebit/MS
+rarefaction/M
+rarefy/GDS
+rareness/M
+rarity/SM
+rascal/SMY
+rash/ZTMRSYP
+rasher/M
+rashness/M
+rasp/GMDS
+raspberry/SM
+raspy/RT
+raster
+rat/SM
+ratatouille/M
+ratbag/S
+ratchet/GMDS
+rate/JXMZGNDRS
+rated/U
+ratepayer/S
+rater/M
+rather
+rathskeller/SM
+ratification/M
+ratifier/M
+ratify/NDRSZG
+rating/M
+ratio/MS
+ratiocinate/GNDS
+ratiocination/M
+ration/MDG
+rational/SMY
+rationale/MS
+rationalism/M
+rationalist/SM
+rationalistic
+rationality/M
+rationalization/MS
+rationalize/DSG
+ratlike
+ratline/SM
+rattan/SM
+ratted
+ratter/SM
+ratting
+rattle/DRSMZGJ
+rattlebrain/SMD
+rattler/M
+rattlesnake/SM
+rattletrap/SM
+rattly
+rattrap/SM
+ratty/RT
+raucous/YP
+raucousness/M
+raunchily
+raunchiness/M
+raunchy/TRP
+ravage/DRSMZG
+ravager/M
+ravages/M
+rave/JMZGDRS
+ravel's
+ravel/UDSG
+raveling/S
+raven/MDSG
+ravenous/Y
+ravine/SM
+raving/M
+ravioli/SM
+ravish/DRSZGL
+ravisher/M
+ravishing/Y
+ravishment/M
+raw/PTMR
+rawboned
+rawhide/M
+rawness/M
+ray/SM
+rayon/M
+raze/GDS
+razor/MS
+razorback/MS
+razz/GMDS
+razzmatazz/M
+rcpt
+rd
+re/DSMYTGVJ
+reach/MDSGB
+reachable/U
+reacquire/DSG
+react/V
+reactance
+reactant/SM
+reactionary/SM
+reactivity
+read/ZGMRBJS
+readability/SM
+reader/M
+readership/SM
+readily
+readiness/M
+reading/M
+readmitted
+readout/SM
+ready/DRSTGP
+reafforestation
+real/TMRYPS
+realism/M
+realist/SM
+realistic/U
+realistically/U
+realities
+reality/UM
+realization/MS
+realize/DSBG
+realized/U
+realm/MS
+realness/M
+realpolitik/M
+realty/M
+ream/ZGMDRS
+reamer/M
+reap/ZGDRS
+reaper/M
+rear/GMDS
+rearguard/MS
+rearmost
+rearward/S
+reason/SMDRZGB
+reasonable/UP
+reasonableness/UM
+reasonably/U
+reasoner/M
+reasoning/M
+reassuring/Y
+rebate/M
+rebel/MS
+rebellion/MS
+rebellious/YP
+rebelliousness/M
+rebid/S
+rebidding
+rebirth/M
+reboil/SDG
+rebuild/SG
+rebuke/DSMG
+rebuking/Y
+rebuttal/MS
+rec'd
+rec/M
+recalcitrance/M
+recalcitrant
+recant/SDG
+recantation/SM
+recap/MS
+recapitalization
+recce/S
+recd
+receipt/SMDG
+receivables/M
+receive/DRSZGB
+receiver/M
+receivership/M
+recent/RYTP
+recentness/M
+receptacle/SM
+reception/MS
+receptionist/SM
+receptive/PY
+receptiveness/M
+receptivity/M
+receptor/SM
+recess/MDSGV
+recessional/SM
+recessionary
+recessive/SM
+recherche
+recidivism/M
+recidivist/SM
+recipe/SM
+recipient/SM
+reciprocal/SMY
+reciprocate/GNDS
+reciprocation/M
+reciprocity/M
+recital/SM
+recitalist/MS
+recitative/MS
+reciter/SM
+reckless/YP
+recklessness/M
+reckon/SJDG
+reckoning/M
+reclamation/M
+recline/DRSZG
+recliner/M
+recluse/SMV
+recognizable/U
+recognizably/U
+recognize/DRSGB
+recognized/U
+recombination
+recompense/DSMG
+recompilation
+recompile/GD
+recon/S
+reconcile/GDSB
+reconciliation/S
+recondite
+reconfiguration
+reconfigure/D
+reconnaissance/MS
+reconnoiter/DGS
+reconstruct/V
+reconstructed/U
+recorded/U
+recorder/MS
+recording/MS
+recoup/DG
+recourse/M
+recoverable/U
+recovery/SM
+recreant/MS
+recreational
+recriminate/DSGNX
+recrimination/M
+recriminatory
+recrudesce/GDS
+recrudescence/M
+recrudescent
+recruit/LSMDRZG
+recruiter/M
+recruitment/M
+rectal/Y
+rectangle/MS
+rectangular
+rectifiable
+rectification/M
+rectifier/M
+rectify/XNDRSZG
+rectilinear
+rectitude/M
+recto/MS
+rector/SM
+rectory/SM
+rectum/SM
+recumbent
+recuperate/GNVDS
+recuperation/M
+recur/S
+recurred
+recurrence/SM
+recurring
+recursion/S
+recuse/DSG
+recyclable/SM
+recycling/M
+red/PSM
+redact/SDG
+redaction/M
+redactor/SM
+redbird/SM
+redbreast/MS
+redbrick
+redcap/SM
+redcoat/SM
+redcurrant/S
+redden/SDG
+redder
+reddest
+reddish
+redeem/RZB
+redeemer/M
+redemption/M
+redemptive
+redhead/SMD
+redirection
+redistrict/GD
+redivide/GDS
+redlining/M
+redneck/SM
+redness/M
+redo/G
+redolence/M
+redolent
+redoubt/SBM
+redoubtably
+redound/SDG
+redraw/SG
+redskin/SM
+reduce/DRSZG
+reducer/M
+reducible
+reductase/M
+reduction/SM
+reductionist
+reductive
+redundancy/SM
+redundant/Y
+redwood/SM
+redye/DS
+reediness/M
+reedy/RTP
+reef/ZGMDRS
+reefer/M
+reek/GMDS
+reel's
+reel/UGDS
+reeve/G
+reexport/SDG
+ref/SZM
+refashion/DGS
+refection/M
+refectory/SM
+refer/B
+referee/DSM
+refereeing
+reference/MGDS
+referendum/MS
+referent/SM
+referential
+referral/SM
+referred
+referrer/SM
+referring
+reffed
+reffing
+refill/BM
+refined/U
+refinement/SM
+refiner/SM
+refinery/S
+refitting
+reflate/XDSGN
+reflationary
+reflect/GVSD
+reflection/MS
+reflective/Y
+reflectivity
+reflector/MS
+reflexive/SMY
+reflexivity
+reflexology
+reforge/DSG
+reform/MZ
+reformat/V
+reformatory/SM
+reformatting
+reformed/U
+reformist/S
+refortify/GDS
+refract/SGVD
+refraction/M
+refractory/SM
+refrain/SGMD
+refresh/ZGLDRS
+refresher/M
+refreshing/Y
+refreshment/SM
+refreshments/M
+refrigerant/SM
+refrigerate/DSGN
+refrigeration/M
+refrigerator/MS
+refuge/SM
+refugee/SM
+refulgence/M
+refulgent
+refund/B
+refurbishment/MS
+refusal/MS
+refutation/MS
+refute/BDRSZG
+refuter/M
+reg
+regal/DYG
+regalement/M
+regalia/M
+regard/ESMDG
+regardless
+regards/M
+regather/DGS
+regatta/SM
+regency/SM
+regeneracy/M
+regenerate/V
+regex/M
+regexp/S
+reggae/M
+regicidal
+regicide/MS
+regime/SM
+regimen/SM
+regiment/MDGS
+regimental
+regimentation/M
+region/SM
+regional/Y
+regionalism/MS
+register/GMDS
+registered/U
+registrant/MS
+registrar/MS
+registration/SM
+registry/SM
+regnant
+regress/MDSGV
+regression/MS
+regret/SM
+regretful/Y
+regrettable
+regrettably
+regretted
+regretting
+regrind/GS
+reground
+regroup/DGS
+regular/MYS
+regularity/SM
+regularization/M
+regularize/DSG
+regulate/CDSGNV
+regulated/U
+regulation/CM
+regulations
+regulator/MS
+regulatory
+regurgitate/DSGN
+regurgitation/M
+rehab/MS
+rehabbed
+rehabbing
+rehabilitate/GNVDS
+rehabilitation/M
+rehang/SDG
+rehears/GD
+rehearsal/MS
+rehearsed/U
+rehi
+rehung
+reify/NDSG
+reign/MDSG
+reimburse/BDSGL
+reimbursement/MS
+rein/GD
+reindeer/M
+reinforce/LGDS
+reinforcement/SM
+reinitialize
+reinstall/DG
+reinstatement/M
+reinsurance
+reiterate/V
+reject/GSMD
+rejection/SM
+rejoice/JGDS
+rejoicing/M
+rejoinder/SM
+rejuvenate/DSGN
+rejuvenation/M
+rel
+relate/DRSBXZGNV
+relatedness/M
+relater/M
+relation/M
+relational
+relationship/MS
+relative/MYS
+relativism/M
+relativist/S
+relativistic
+relativity/M
+relax/DRSZG
+relaxant/MS
+relaxation/SM
+relaxer/M
+relay/D
+release/B
+released/U
+relegate/GNDS
+relent/SGD
+relentless/PY
+relentlessness/M
+relevance/M
+relevancy/M
+relevant/Y
+reliability/UM
+reliable/U
+reliably/U
+reliance/M
+reliant
+relic/MS
+relief/SM
+relieve/ZGDRS
+reliever/M
+religion/SM
+religiosity
+religious/MYP
+religiousness/M
+reline/DSG
+relinquish/LDSG
+relinquishment/M
+reliquary/SM
+relish/GMDS
+relist/SGD
+relocate/B
+reluctance/M
+reluctant/Y
+rely/GDS
+rem/M
+remain/SGD
+remainder/GMDS
+remand/SGD
+remapping
+remark/B
+remarkableness/M
+remarkably
+remarked/U
+remediable
+remedy/GDSM
+remember/DG
+remembered/U
+remembrance/MS
+reminder/M
+reminisce/GDS
+reminiscence/MS
+reminiscent/Y
+remiss/PY
+remissness/M
+remit/S
+remittance/SM
+remitted
+remitting/U
+remix/DSG
+remnant/MS
+remodel/GDS
+remold/SGD
+remonstrant/SM
+remonstrate/DSG
+remorse/M
+remorseful/Y
+remorseless/PY
+remorselessness/M
+remote/RSMYTP
+remoteness/M
+removal/SM
+remunerate/GNVXDS
+remuneration/M
+renaissance/MS
+renal
+renascence/S
+rend/GS
+render/SGMDJ
+rendering/M
+rendezvous/GMDS
+rendition/MS
+renegade/DSMG
+renege/DRSZG
+reneger/M
+renew/DSBG
+renewal/MS
+rennet/M
+rennin/M
+renounce/LDSG
+renouncement/M
+renovate/DSXGN
+renovation/M
+renovator/MS
+renown/MD
+rent/ZGMDRS
+rental/SM
+renter/M
+renunciation/SM
+reopen/SDG
+reorg/MDSG
+rep/SM
+repaint/GDS
+repair/BZR
+repairer/M
+repairman/M
+repairmen
+reparable
+reparation/MS
+reparations/M
+repartee/M
+repatriate/XDSMGN
+repatriation/M
+repeat/SMDRZGB
+repeatability
+repeatable/U
+repeatably
+repeated/Y
+repeater/M
+repeating/M
+repel/S
+repelled
+repellent/SM
+repelling
+repent/SDG
+repentance/M
+repentant/Y
+repercussion/S
+repertoire/MS
+repertory/SM
+repetition/MS
+repetitious/YP
+repetitiousness/M
+repetitive/YP
+repetitiveness/M
+rephotograph/DG
+replaceable
+replant/GSD
+replenish/LGDS
+replenishment/M
+replete/PDSGN
+repleteness/M
+repletion/M
+replica/SM
+replicate/DSGNX
+replication/M
+replicator/S
+reportage/M
+reported/Y
+reportorial
+reposeful
+reposition
+repository/SM
+reprehend/DGS
+reprehensibility/M
+reprehensible
+reprehensibly
+reprehension/M
+represent/GDS
+representational
+representative/MS
+represented/U
+repression/MS
+repressive/PY
+reprieve/DSMG
+reprimand/GSMD
+reprisal/SM
+reprise/SMG
+reproach/GMDSB
+reproachful/Y
+reprobate/MS
+reproductive
+reprogramming
+reproving/Y
+reptile/SM
+reptilian/MS
+republic/S
+republicanism/M
+repudiate/XGNDS
+repudiation/M
+repudiator/MS
+repugnance/M
+repugnant
+repulsion/M
+repulsive/YP
+repulsiveness/M
+repurchase/GDS
+reputability/M
+reputably/E
+reputation/MS
+repute/DSMGB
+reputed/Y
+request/GDR
+requiem/SM
+require/LDG
+requirement/MS
+requisite/XMNS
+requisition/GMD
+requital/M
+requite/DRSZG
+requited/U
+requiter/M
+reread/SG
+rerecord/GDS
+rerunning
+resample/GDS
+resat
+rescind/SDG
+rescission/M
+rescue/DRSMZG
+rescuer/M
+reseal/B
+resemble/DSG
+resend
+resent/LSDG
+resentful/YP
+resentfulness/M
+resentment/MS
+reserpine/M
+reservation/MS
+reserved/UY
+reservedness/M
+reservist/SM
+reservoir/SM
+resetting
+reshipping
+residence/SM
+residency/SM
+resident/MS
+residential
+residua
+residual/MS
+residue/SM
+residuum/M
+resignation/SM
+resigned/Y
+resilience/M
+resiliency/M
+resilient/Y
+resinous
+resist/SMDRZG
+resistance/SM
+resistant/U
+resistible
+resistivity
+resistless
+resistor/MS
+resit/S
+resitting
+resold
+resole/DSG
+resolute/PY
+resoluteness/M
+resolve/RBM
+resolved/U
+resonance/SM
+resonant/Y
+resonate/GDS
+resonator/SM
+resorption/M
+resound/SGD
+resounding/Y
+resourceful/YP
+resourcefulness/M
+resp
+respect/ESGVMD
+respectability/M
+respectable
+respectably
+respectful/EY
+respectfulness/M
+respective/Y
+respell/SGD
+respiration/M
+respirator/SM
+respiratory
+respire/DG
+resplendence/M
+resplendent/Y
+respond/SGD
+respondent/SM
+response/MS
+responsibility/SM
+responsible
+responsibly
+responsive/UYP
+responsiveness/UM
+rest/GVMDS
+restate/GDS
+restaurant/SM
+restaurateur/MS
+restful/YP
+restfuller
+restfullest
+restfulness/M
+restitution/M
+restive/YP
+restiveness/M
+restless/PY
+restlessness/M
+restoration/SM
+restorative/SM
+restorer/SM
+restrained/U
+restraint/MS
+restrict/SDGV
+restricted/U
+restriction/MS
+restrictive/YP
+restrictiveness/M
+restring/SG
+restroom/SM
+restructuring/SM
+result/GSMD
+resultant/SM
+resume/DSMG
+resumption/MS
+resupply/DSG
+resurgence/MS
+resurgent
+resurrect/GSD
+resurrection/MS
+resuscitate/GNDS
+resuscitation/M
+resuscitator/SM
+retailer/MS
+retain/SDRZG
+retainer/M
+retake/G
+retaliate/DSGNVX
+retaliation/M
+retaliatory
+retard/SMDRZG
+retardant/SM
+retardation/M
+retarder/M
+retch/DSG
+reteach/GS
+retention/M
+retentive/YP
+retentiveness/M
+rethink/SGM
+rethought
+reticence/M
+reticent/Y
+reticulated
+reticulation/MS
+reticulum
+retina/SM
+retinal
+retinoblastoma
+retinue/SM
+retiree/SM
+retirement/MS
+retort/GMD
+retrace/GDS
+retract/DBG
+retractile
+retraction/S
+retrain/DGS
+retread/D
+retrenchment/MS
+retribution/MS
+retributive
+retrieval/SM
+retrieve/DRSMZGB
+retriever/M
+retro/MS
+retroactive/Y
+retrofire/GDS
+retrofit/SM
+retrofitted
+retrofitting
+retrograde/DSG
+retrogress/GVDS
+retrogression/M
+retrorocket/MS
+retrospect/MDSGV
+retrospection/M
+retrospective/MYS
+retrovirus/MS
+retsina/M
+returnable/SM
+returnee/SM
+rev/ZVM
+revamping/M
+reveal/GJSD
+revealed/U
+revealing/Y
+reveille/M
+revel/JMDRSZG
+revelation/SM
+revelatory
+reveler/M
+revelry/SM
+revenge/MGDS
+revenuer/SM
+reverb
+reverberate/DSGNX
+reverberation/M
+revere/DSG
+reverence/DSMG
+reverend/SM
+reverent/Y
+reverential/Y
+reverie/MS
+revers/M
+reversal/SM
+reverse/Y
+reversibility
+reversible
+reversibly
+revert/GSD
+revertible
+revetment/SM
+revile/DRSLZG
+revilement/M
+reviler/M
+reviser/MS
+revision/SM
+revisionism/M
+revisionist/SM
+revival/MS
+revivalism/M
+revivalist/SM
+revive/DSG
+revivification/M
+revocable
+revoke/DSG
+revolt/GD
+revolting/Y
+revolution/SM
+revolutionary/SM
+revolutionist/SM
+revolutionize/DSG
+revolve/BZGDRS
+revolver/M
+revue/MS
+revulsion/M
+revved
+revving
+rewarded/U
+rewarding/U
+rewarm/GSD
+rewash/GDS
+reweave/GS
+rewedding
+rewind/MB
+rewound
+rewrite/MGS
+rhapsodic
+rhapsodical
+rhapsodize/GDS
+rhapsody/SM
+rhea/MS
+rhenium/M
+rheostat/SM
+rhesus/MS
+rhetoric/M
+rhetorical/Y
+rhetorician/SM
+rheum/M
+rheumatic/MS
+rheumatically
+rheumatism/M
+rheumatoid
+rheumy
+rhinestone/SM
+rhinitis/M
+rhino/MS
+rhinoceros/MS
+rhinoplasty
+rhinovirus/MS
+rhizome/MS
+rho/SM
+rhodium/M
+rhododendron/SM
+rhomboid/SM
+rhomboidal
+rhombus/MS
+rhubarb/MS
+rhyme/MZGDRS
+rhymer/M
+rhymester/MS
+rhythm/SM
+rhythmic
+rhythmical/Y
+rial/MS
+rib/SM
+ribald
+ribaldry/M
+ribbed
+ribber/SM
+ribbing
+ribbon/SM
+riboflavin/M
+rice/MZGDRS
+ricer/M
+rich/TMRSYP
+richness/M
+rick/GMDS
+rickets/M
+rickety/RT
+rickrack/M
+rickshaw/MS
+ricochet/GMDS
+ricotta/M
+rid/S
+riddance/M
+ridden
+ridding
+riddle/DSMG
+ride/MZGRS
+rider/M
+riderless
+ridership/M
+ridge/MGDS
+ridgepole/SM
+ridgy
+ridicule/MGDS
+ridiculous/YP
+ridiculousness/M
+riding/M
+rife/TR
+riff/GMDS
+riffle/DSMG
+riffraff/M
+rifle/MZGDRS
+rifleman/M
+riflemen
+rifler/M
+rifling/M
+rift/GMDS
+rig/SM
+rigatoni/M
+rigged
+rigger/SM
+rigging/M
+right/MDRYSPTG
+righteous/UP
+righteously
+righteousness/UM
+rightful/PY
+rightfulness/M
+rightism/M
+rightist/SM
+rightmost
+rightness/M
+righto
+rightsize/DSG
+rightward/S
+rigid/YP
+rigidity/M
+rigidness/M
+rigmarole/MS
+rigor/MS
+rigorous/YP
+rigorousness/M
+rile/GDS
+rill/MS
+rim/SGMD
+rime/MS
+rimless
+rimmed
+rimming
+rind/MS
+ring/ZGMDRJ
+ringer/M
+ringgit/MS
+ringleader/MS
+ringlet/MS
+ringlike
+ringmaster/MS
+ringside/M
+ringtone/SM
+ringworm/M
+rink/MS
+rinse/MGDS
+riot/ZGMDRS
+rioter/M
+rioting/M
+riotous/PY
+rip/SXTMNR
+riparian
+ripcord/MS
+ripe/YP
+ripen/DG
+ripened/U
+ripeness/M
+ripoff/SM
+riposte/MGDS
+ripped
+ripper/SM
+ripping
+ripple/DSMG
+ripply
+ripsaw/SM
+riptide/MS
+rise/JMZGRS
+risen
+riser/M
+risibility/M
+risible
+rising/M
+risk/GMDS
+riskily
+riskiness/M
+risky/RPT
+risotto/MS
+risque
+rissole/S
+rite/MS
+ritual/SMY
+ritualism/M
+ritualistic
+ritualistically
+ritualized
+ritzy/RT
+riv/ZNR
+rival/MDSG
+rivaled/U
+rivalry/SM
+rive/CGDS
+river/M
+riverbank/SM
+riverbed/MS
+riverboat/SM
+riverfront
+riverside/MS
+rivet/MDRSZG
+riveter/M
+riviera/S
+rivulet/MS
+riyal/MS
+rm
+roach/GMDS
+road/IMS
+roadbed/SM
+roadblock/MDSG
+roadhouse/SM
+roadie/MS
+roadkill/M
+roadrunner/SM
+roadshow/SM
+roadside/SM
+roadster/SM
+roadway/SM
+roadwork/SM
+roadworthy
+roam/ZGDRS
+roamer/M
+roaming/M
+roan/MS
+roar/ZGMDRS
+roarer/M
+roaring/M
+roast/ZGMDRSJ
+roaster/M
+roasting/M
+rob/S
+robbed
+robber/MS
+robbery/SM
+robbing
+robe's
+robe/EGDS
+robin/MS
+robocall/SGMD
+robot/MS
+robotic/S
+robotics/M
+robotize/GDS
+robust/RYPT
+robustness/M
+rock/ZGMDRS
+rockabilly/M
+rockbound
+rocker/M
+rockery/S
+rocket/MDSG
+rocketry/M
+rockfall/SM
+rockiness/M
+rocky/TRP
+rococo/M
+rod/SM
+rode
+rodent/MS
+rodeo/MS
+roe/SM
+roebuck/SM
+roentgen/MS
+roger/GDS
+rogue's
+rogue/KS
+roguery/M
+roguish/YP
+roguishness/M
+roil/GDS
+roister/ZGDRS
+roisterer/M
+role/MS
+roll/MDRZGJS
+rollback/SM
+roller/M
+rollerblading
+rollerskating/M
+rollick/SDG
+rollicking/M
+rollmop/S
+rollover/SM
+romaine/MS
+roman/M
+romance/MZGDRS
+romancer/M
+romantic/MS
+romantically
+romanticism/M
+romanticist/SM
+romanticize/DSG
+romeo/MS
+romp/MDRZGS
+romper/M
+rondo/SM
+rood/MS
+roof/MDRZGS
+roofer/M
+roofing/M
+roofless
+rooftop/SM
+rook/MDGS
+rookery/SM
+rookie/SM
+room/MDRZGS
+roomer/M
+roomette/SM
+roomful/SM
+roominess/M
+roommate/SM
+roomy/RTP
+roost/SMDRZG
+rooster/M
+root/MDRZGS
+rooter/M
+rootkit/SM
+rootless/P
+rootlet/SM
+rope/MZGDRS
+roper/M
+ropy/RT
+rosary/SM
+rose/MS
+roseate
+rosebud/SM
+rosebush/MS
+rosemary/M
+rosette/SM
+rosewater/M
+rosewood/MS
+rosily
+rosin/SMDG
+rosiness/M
+roster/SM
+rostrum/MS
+rosy/RTP
+rot/SM
+rota/S
+rotary/SM
+rotate/DSGNX
+rotation/M
+rotational
+rotatory
+rote/M
+rotgut/M
+rotisserie/SM
+rotogravure/MS
+rotor/SM
+rototiller/MS
+rotted
+rotten/TPRY
+rottenness/M
+rotter/S
+rotting
+rottweiler/S
+rotund/P
+rotunda/MS
+rotundity/M
+rotundness/M
+roue/MS
+rouge/DSMG
+rough/MDNRYXTGP
+roughage/M
+roughcast
+roughen/GD
+roughhouse/MGDS
+roughneck/GMDS
+roughness/M
+roughs
+roughshod
+roulette/M
+round/PSMDRYZTG
+roundabout/SM
+roundel/S
+roundelay/MS
+roundhouse/SM
+roundish
+roundness/M
+roundup/MS
+roundworm/SM
+rouse/DSG
+roust/SDG
+roustabout/SM
+rout/MRZS
+route's
+route/ADSG
+routeing
+router/M
+routine/MYS
+routinize/GDS
+roux
+rove/ZGDRS
+rover/M
+row/SZGMDR
+rowan/S
+rowboat/MS
+rowdily
+rowdiness/M
+rowdy/PRSMT
+rowdyism/M
+rowel/SMDG
+rower/M
+rowing/M
+rowlock/S
+royal/SMY
+royalist/SM
+royalties/M
+royalty/SM
+rpm
+rps
+rt
+rte
+rub/SM
+rubato/SM
+rubbed
+rubber/SM
+rubberize/GDS
+rubberneck/MDRSZG
+rubbernecker/M
+rubbery
+rubbing/S
+rubbish/MDSG
+rubbishy
+rubble/M
+rubdown/SM
+rube/MS
+rubella/M
+rubicund
+rubidium/M
+ruble/SM
+rubric/SM
+ruby/RSMT
+ruched
+ruck/DGS
+rucksack/MS
+ruckus/MS
+ructions
+rudder/SM
+rudderless
+ruddiness/M
+ruddy/RTP
+rude/YTRP
+rudeness/M
+rudiment/SM
+rudimentary
+rue/DSMG
+rueful/PY
+ruefulness/M
+ruff/MDYGS
+ruffian/MYS
+ruffle/DSMG
+ruffled/U
+rug/SM
+rugby/M
+rugged/PTRY
+ruggedness/M
+rugger
+rugrat/SM
+ruin/MDGS
+ruination/M
+ruinous/Y
+rule/MZGJDRS
+ruler/M
+ruling/M
+rum/SM
+rumba/SMDG
+rumble/DSJMG
+rumbling/M
+rumbustious
+ruminant/MS
+ruminate/XGNVDS
+rumination/M
+ruminative/Y
+rummage/DSMG
+rummer
+rummest
+rummy/M
+rumor/SMDG
+rumormonger/SM
+rump/MYS
+rumple/DSMG
+rumpus/MS
+run/ASM
+runabout/MS
+runaround/SM
+runaway/MS
+rundown/SM
+rune/MS
+rung/MS
+runic
+runlet/SM
+runnel/SM
+runner/SM
+running/M
+runny/RT
+runoff/SM
+runt/MS
+runtime
+runty/RT
+runway/SM
+rupee/SM
+rupiah/M
+rupiahs
+rupture/MGDS
+rural
+ruse/MS
+rush/MDRSZG
+rusher/M
+rushy
+rusk/MS
+russet/SM
+rust/MDGS
+rustic/SM
+rustically
+rusticate/GDS
+rustication/M
+rusticity/M
+rustiness/M
+rustle/DRSJMZG
+rustler/M
+rustproof/SDG
+rusty/RPNT
+rut/SM
+rutabaga/SM
+ruthenium/M
+rutherfordium/M
+ruthless/YP
+ruthlessness/M
+rutted
+rutting
+rutty/RT
+rye/M
+s/NYXB
+sabbath/M
+sabbaths
+sabbatical/SM
+saber/MS
+sable/MS
+sabot/MS
+sabotage/DSMG
+saboteur/SM
+sabra/MS
+sac/SM
+saccharin/M
+saccharine
+sacerdotal
+sachem/SM
+sachet/SM
+sack/ZGMDRJS
+sackcloth/M
+sacker/M
+sackful/MS
+sacking/M
+sacra
+sacrament/MS
+sacramental
+sacred/YP
+sacredness/M
+sacrifice/DSMG
+sacrificial/Y
+sacrilege/MS
+sacrilegious/Y
+sacristan/MS
+sacristy/SM
+sacroiliac/MS
+sacrosanct/P
+sacrosanctness/M
+sacrum/M
+sad/PY
+sadden/SDG
+sadder
+saddest
+saddle's
+saddle/UDSG
+saddlebag/MS
+saddler/S
+saddlery
+sades
+sadhu/S
+sadism/M
+sadist/SM
+sadistic
+sadistically
+sadness/M
+sadomasochism/M
+sadomasochist/MS
+sadomasochistic
+safari/SGMD
+safe/MYTPRS
+safeguard/SMDG
+safekeeping/M
+safeness/M
+safety/SM
+safflower/MS
+saffron/MS
+sag/SM
+saga/MS
+sagacious/Y
+sagacity/M
+sage/MYTRS
+sagebrush/M
+sagged
+sagging
+saggy/RT
+sago/M
+saguaro/MS
+sahib/MS
+said/U
+sail/GMDSJ
+sailboard/MRZGS
+sailboarder/M
+sailboarding/M
+sailboat/MS
+sailcloth/M
+sailfish/MS
+sailing/M
+sailor/SM
+sailplane/MS
+saint/MDYS
+sainthood/M
+saintlike
+saintliness/M
+saintly/PRT
+saith
+sake/M
+salaam/SMDG
+salable/U
+salacious/PY
+salaciousness/M
+salacity/M
+salad/MS
+salamander/SM
+salami/SM
+salary/DSM
+sale/ABMS
+saleroom/S
+salesclerk/SM
+salesgirl/SM
+saleslady/SM
+salesman/M
+salesmanship/M
+salesmen
+salespeople/M
+salesperson/MS
+salesroom/S
+saleswoman/M
+saleswomen
+salience/M
+salient/SMY
+saline/SM
+salinity/M
+saliva/M
+salivary
+salivate/GNDS
+salivation/M
+sallow/RTP
+sallowness/M
+sally/DSMG
+salmon/SM
+salmonella/M
+salmonellae
+salon/MS
+saloon/SM
+salsa/MS
+salt's
+salt/CTGDS
+saltbox/MS
+saltcellar/SM
+salted/U
+salter
+saltine/SM
+saltiness/M
+saltpeter/M
+saltshaker/SM
+saltwater/M
+salty/RTP
+salubrious/I
+salutary
+salutation/MS
+salutatorian/MS
+salutatory
+salute/DSMG
+salvage/DSMG
+salvageable
+salvation/M
+salve/MZGDRS
+salver/M
+salvo/MS
+samarium/M
+samba/MDSG
+same/SP
+sameness/M
+samey
+samizdat/S
+samosa/S
+samovar/SM
+sampan/SM
+sample/DRSMZGJ
+sampler/M
+sampling/M
+samurai/SM
+sanatorium/SM
+sanctification/M
+sanctify/GDSN
+sanctimonious/YP
+sanctimoniousness/M
+sanctimony/M
+sanction/GSMD
+sanctioned/U
+sanctity/M
+sanctuary/SM
+sanctum/SM
+sand/ZGMDRS
+sandal/SM
+sandalwood/M
+sandbag/SM
+sandbagged
+sandbagger/SM
+sandbagging
+sandbank/MS
+sandbar/SM
+sandblast/ZGMDRS
+sandblaster/M
+sandbox/MS
+sandcastle/MS
+sander/M
+sandhog/SM
+sandiness/M
+sandlot/SM
+sandlotter/MS
+sandman/M
+sandmen
+sandpaper/GMDS
+sandpiper/MS
+sandpit/S
+sandstone/M
+sandstorm/SM
+sandwich/MDSG
+sandy/RTP
+sane/IYTR
+saneness/M
+sang/S
+sangfroid/M
+sangria/M
+sanguinary
+sanguine/Y
+sanitarian/SM
+sanitarium/SM
+sanitary/IU
+sanitation/M
+sanitize/ZGDRS
+sanity/IM
+sank
+sans
+sanserif
+sap/SM
+sapience/M
+sapiens
+sapient
+sapless
+sapling/MS
+sapped
+sapper/S
+sapphire/SM
+sappiness/M
+sapping
+sappy/PRT
+saprophyte/SM
+saprophytic
+sapsucker/SM
+sapwood/M
+saran/M
+sarcasm/MS
+sarcastic
+sarcastically
+sarcoma/MS
+sarcophagi
+sarcophagus/M
+sardine/MS
+sardonic
+sardonically
+sarge/MS
+sari/MS
+sarky
+sarnie/S
+sarong/SM
+sarsaparilla/MS
+sartorial/Y
+sash/MS
+sashay/SGMD
+sass/GMDS
+sassafras/MS
+sassy/RT
+sat
+satanic
+satanical/Y
+satanism/M
+satanist/MS
+satay
+satchel/MS
+sate/GDS
+sateen/M
+satellite/DSMG
+satiable/I
+satiate/GNDS
+satiation/M
+satiety/M
+satin/M
+satinwood/SM
+satiny
+satire/SM
+satiric
+satirical/Y
+satirist/SM
+satirize/DSG
+satisfaction/EM
+satisfactions
+satisfactorily/U
+satisfactory/U
+satisfied/U
+satisfy/EDSG
+satisfying/U
+satisfyingly
+satori/M
+satrap/SM
+satsuma/S
+saturate/DSGN
+saturated/U
+saturation/M
+saturnine
+satyr/MS
+satyriasis/M
+satyric
+sauce/MZGDRS
+saucepan/SM
+saucer/M
+saucily
+sauciness/M
+saucy/RPT
+sauerkraut/M
+sauna/MDSG
+saunter/MDGS
+saurian
+sauropod/SM
+sausage/MS
+saute/MS
+sauteed
+sauteing
+savage/DRSMYTGP
+savageness/M
+savagery/SM
+savanna/MS
+savant/SM
+save/BJMZGDRS
+saved/U
+saver/M
+saving/M
+savings/M
+savior/SM
+savor/MDSG
+savoriness/M
+savory/PTRSM
+savoy/MS
+savvy/DRSMTG
+saw/SGMD
+sawbones/M
+sawbuck/MS
+sawdust/M
+sawfly/SM
+sawhorse/SM
+sawmill/MS
+sawyer/SM
+sax/MS
+saxifrage/SM
+saxophone/MS
+saxophonist/SM
+say's
+say/USG
+saying/SM
+scab/MS
+scabbard/MS
+scabbed
+scabbiness/M
+scabbing
+scabby/PTR
+scabies/M
+scabrous
+scad/MS
+scaffold/SMG
+scaffolding/M
+scag/S
+scagged
+scalability
+scalar/S
+scalawag/MS
+scald/MDSG
+scale's
+scale/CGDS
+scaleless
+scalene
+scaliness/M
+scallion/MS
+scallop/GSMD
+scalp/MDRSZG
+scalpel/SM
+scalper/M
+scaly/RTP
+scam/MS
+scammed
+scammer/S
+scamming
+scamp/MRSZ
+scamper/GMD
+scampi/M
+scan/MS
+scandal/SM
+scandalize/DSG
+scandalmonger/SM
+scandalous/Y
+scandium/M
+scanned
+scanner/SM
+scanning
+scansion/M
+scant/CDSTG
+scanter
+scantily
+scantiness/M
+scantly
+scantness/M
+scanty/RSPT
+scapegoat/SGMD
+scapegrace/MS
+scapula/M
+scapulae
+scapular/SM
+scar/GMDS
+scarab/SM
+scarce/RYTP
+scarceness/M
+scarcity/SM
+scare/MS
+scarecrow/MS
+scaremonger/SMG
+scarf/MDSG
+scarification/M
+scarify/NDSG
+scarily
+scariness/M
+scarlatina/M
+scarlet/M
+scarp/MDRSZG
+scarper/DG
+scarred
+scarring
+scarves
+scary/RTP
+scat/MS
+scathing/Y
+scatological
+scatology/M
+scatted
+scatter/GJSMD
+scatterbrain/SMD
+scattering/M
+scattershot
+scatting
+scatty
+scavenge/ZGDRS
+scavenger/M
+scenario/MS
+scenarist/MS
+scene/MS
+scenery/M
+scenic
+scenically
+scent/CMS
+scented/U
+scenting
+scentless
+scepter/MS
+sch
+schadenfreude
+schedule's
+schedule/ADSG
+scheduled/U
+scheduler/S
+schema
+schemata
+schematic/SM
+schematically
+schematize/GDS
+scheme/DRSMZG
+schemer/M
+scherzo/MS
+schilling/MS
+schism/SM
+schismatic/SM
+schist/M
+schistosomiasis
+schizo/SM
+schizoid/MS
+schizophrenia/M
+schizophrenic/SM
+schlemiel/SM
+schlep/SM
+schlepped
+schlepping
+schlock/M
+schmaltz/M
+schmaltzy/TR
+schmo/M
+schmoes
+schmooze/DRSZG
+schmuck/MS
+schnapps/M
+schnauzer/SM
+schnitzel/SM
+schnook/MS
+schnoz/MS
+schnozzle/SM
+scholar/MYS
+scholarship/MS
+scholastic
+scholastically
+scholasticism
+school/SGMD
+schoolbag/MS
+schoolbook/SM
+schoolboy/MS
+schoolchild/M
+schoolchildren/M
+schooldays
+schooled/U
+schoolfellow/SM
+schoolgirl/SM
+schoolhouse/SM
+schooling/M
+schoolkid/S
+schoolmarm/SM
+schoolmarmish
+schoolmaster/MS
+schoolmate/SM
+schoolmistress/MS
+schoolroom/SM
+schoolteacher/MS
+schoolwork/M
+schoolyard/SM
+schooner/SM
+schuss/GMDS
+schussboomer/MS
+schwa/MS
+sci
+sciatic
+sciatica/M
+science/FMS
+scientific/U
+scientifically/U
+scientist/SM
+scimitar/SM
+scintilla/MS
+scintillate/DSGN
+scintillation/M
+scion/MS
+scissor/GDS
+scleroses
+sclerosis/M
+sclerotic
+scoff/MDRSZG
+scoffer/M
+scofflaw/MS
+scold/MDSGJ
+scolding/M
+scoliosis/M
+sconce/SM
+scone/MS
+scoop/MDSG
+scoopful/MS
+scoot/DRSZG
+scooter/M
+scope/MGDS
+scorbutic
+scorch/MDRSZG
+scorcher/M
+score/MZGDRS
+scoreboard/SM
+scorecard/MS
+scorekeeper/MS
+scoreless
+scoreline/S
+scorer/M
+scorn/MDRSZG
+scorner/M
+scornful/Y
+scorpion/MS
+scotch/MDSG
+scotchs
+scoundrel/MS
+scour/DRSZG
+scourer/M
+scourge/DSMG
+scout/MDRSZG
+scouting/M
+scoutmaster/MS
+scow/MS
+scowl/MDSG
+scrabble/MZGDRS
+scrabbler/M
+scrag/MS
+scraggly/RT
+scraggy/TR
+scram/S
+scramble's
+scramble/UGDS
+scrambler/MS
+scrammed
+scramming
+scrap/MDRSZGJ
+scrapbook/SM
+scrape/SM
+scraper/M
+scrapheap/SM
+scrapie
+scrapped
+scrapper/MS
+scrapping
+scrappy/TR
+scrapyard/SM
+scratch/GMDS
+scratchcard/S
+scratched/U
+scratchily
+scratchiness/M
+scratchpad/S
+scratchy/PRT
+scrawl/SMDG
+scrawly
+scrawniness/M
+scrawny/PTR
+scream/SMDRZG
+screamer/M
+screaming/Y
+scree/MDS
+screech/GMDS
+screechy/TR
+screed/S
+screen/SJMDG
+screening/M
+screenplay/SM
+screensaver/SM
+screenshot/S
+screenwriter/SM
+screenwriting/M
+screw's
+screw/UDSG
+screwball/MS
+screwdriver/MS
+screwiness/M
+screwworm/SM
+screwy/PRT
+scribal
+scribble/MZGDRS
+scribbler/M
+scribe's
+scribe/CKIS
+scrim/MS
+scrimmage/MGDS
+scrimp/SDG
+scrimshaw/MDGS
+scrip/MS
+script/FSMDG
+scripted/U
+scriptural
+scripture/MS
+scriptwriter/SM
+scrivener/SM
+scrod/M
+scrofula/M
+scrofulous
+scrog/S
+scroll/GSMD
+scrooge/MS
+scrota
+scrotal
+scrotum/M
+scrounge/DRSZG
+scrounger/M
+scroungy/TR
+scrub/MS
+scrubbed
+scrubber/SM
+scrubbing
+scrubby/RT
+scruff/SM
+scruffily
+scruffiness/M
+scruffy/RPT
+scrum/S
+scrumhalf
+scrumhalves
+scrummage/S
+scrummed
+scrumming
+scrump/SGD
+scrumptious/Y
+scrumpy
+scrunch/MDSG
+scrunchy/SM
+scruple/MGDS
+scrupulosity/M
+scrupulous/UPY
+scrupulousness/UM
+scrutineer/S
+scrutinize/GDS
+scrutiny/M
+scuba/MDSG
+scud/MS
+scudded
+scudding
+scuff/MDSG
+scuffle/MGDS
+scull/MDRSZG
+sculler/M
+scullery/SM
+scullion/SM
+sculpt/SGD
+sculptor/SM
+sculptress/MS
+sculptural
+sculpture/DSMG
+scum/MS
+scumbag/MS
+scummed
+scumming
+scummy/TR
+scupper/MDGS
+scurf/M
+scurfy
+scurrility/M
+scurrilous/PY
+scurrilousness/M
+scurry/GDSM
+scurvily
+scurvy/TRM
+scutcheon/SM
+scuttle/MGDS
+scuttlebutt/M
+scuzzy/TR
+scythe/DSMG
+sea/SM
+seabed/SM
+seabird/MS
+seaboard/SM
+seaborne
+seacoast/SM
+seafarer/SM
+seafaring/M
+seafloor/SM
+seafood/M
+seafront/SM
+seagoing
+seagull/MS
+seahorse/MS
+seal's
+seal/AUSDG
+sealant/MS
+sealer/SM
+sealskin/M
+seam/GMDNS
+seaman/M
+seamanship/M
+seamless/Y
+seamount/MS
+seamstress/MS
+seamy/RT
+seance/SM
+seaplane/SM
+seaport/MS
+sear/GMDS
+search/AZGMDRS
+searchable/U
+searcher/AM
+searching/Y
+searchlight/MS
+searing/Y
+seascape/SM
+seashell/SM
+seashore/SM
+seasick/P
+seasickness/M
+seaside/MS
+season/SGMDBJ
+seasonable/U
+seasonably/U
+seasonal/Y
+seasonality
+seasoned/U
+seasoning/M
+seat's
+seat/UGDS
+seating/M
+seatmate/SM
+seawall/MS
+seaward/MS
+seawater/M
+seaway/SM
+seaweed/MS
+seaworthiness/M
+seaworthy/P
+sebaceous
+seborrhea/M
+sebum
+sec'y
+sec/SM
+secant/SM
+secateurs
+secede/DSG
+secession/M
+secessionist/MS
+seclude/GDS
+seclusion/M
+seclusive
+second/SLZGMDRY
+secondarily
+secondary/SM
+seconder/M
+secondhand
+secondment/S
+secrecy/M
+secret/SGVMDY
+secretarial
+secretariat/MS
+secretary/SM
+secretaryship/M
+secrete/XNS
+secretion/M
+secretive/PY
+secretiveness/M
+secretory
+sect/IMS
+sectarian/MS
+sectarianism/M
+sectary/SM
+section/AESM
+sectional/MS
+sectionalism/M
+sectioned
+sectioning
+sector/ESM
+secular
+secularism/M
+secularist/SM
+secularization/M
+secularize/DSG
+secure/DRSYTG
+secured/U
+security/ISM
+secy
+sedan/MS
+sedate/DRSYTGNVP
+sedateness/M
+sedation/M
+sedative/SM
+sedentary
+sedge/M
+sedgy
+sediment/MS
+sedimentary
+sedimentation/M
+sedition/M
+seditious
+seduce/DRSZG
+seducer/M
+seduction/SM
+seductive/YP
+seductiveness/M
+seductress/MS
+sedulous/Y
+see/RSMZ
+seed's
+seed/AGDS
+seedbed/MS
+seedcase/MS
+seeded/U
+seeder/SM
+seediness/M
+seedless
+seedling/MS
+seedpod/MS
+seedy/RPT
+seeing/S
+seek/ZGRS
+seeker/M
+seem/GDS
+seeming/Y
+seemliness/UM
+seemly/URTP
+seen/U
+seep/GDS
+seepage/M
+seer/M
+seersucker/M
+seesaw/SMDG
+seethe/DSG
+segfault/S
+segment/GSMD
+segmentation/M
+segmented/U
+segregate/CDSGN
+segregated/U
+segregation/CM
+segregationist/MS
+segue/MGDS
+segueing
+seigneur/SM
+seignior/SM
+seine/MZGDRS
+seiner/M
+seismic
+seismically
+seismograph/ZMR
+seismographer/M
+seismographic
+seismographs
+seismography/M
+seismologic
+seismological
+seismologist/MS
+seismology/M
+seize/GDS
+seizure/MS
+seldom
+select/CSGVD
+selection/SM
+selective/Y
+selectivity/M
+selectman/M
+selectmen
+selectness/M
+selector/MS
+selenium/M
+selenographer/MS
+selenography/M
+self/M
+selfie/SM
+selfish/UYP
+selfishness/UM
+selfless/PY
+selflessness/M
+selfsame
+sell's
+sell/AZGRS
+seller's
+selloff/MS
+sellotape/DSG
+sellout/MS
+seltzer/MS
+selvage/MS
+selves
+semantic/S
+semantically
+semanticist/MS
+semantics/M
+semaphore/DSMG
+semblance/ASM
+semen/M
+semester/SM
+semi/MS
+semiannual/Y
+semiarid
+semiautomatic/MS
+semibreve/S
+semicircle/SM
+semicircular
+semicolon/MS
+semiconducting
+semiconductor/MS
+semiconscious
+semidarkness/M
+semidetached
+semifinal/SM
+semifinalist/MS
+semigloss/S
+semimonthly/SM
+seminal
+seminar/MS
+seminarian/SM
+seminary/SM
+semiofficial
+semiotic/S
+semiotics/M
+semipermeable
+semiprecious
+semiprivate
+semipro/S
+semiprofessional/SM
+semiquaver/S
+semiretired
+semiskilled
+semisolid
+semisweet
+semitone/SM
+semitrailer/MS
+semitransparent
+semitropical
+semivowel/SM
+semiweekly/SM
+semiyearly
+semolina/M
+sempstress/MS
+senate/SM
+senator/MS
+senatorial
+send/ZGRS
+sender/M
+sendoff/MS
+senescence/M
+senescent
+senile
+senility/M
+senior/SM
+seniority/M
+senna/M
+senor/MS
+senora/SM
+senorita/SM
+sensation/MS
+sensational/Y
+sensationalism/M
+sensationalist/MS
+sensationalize/GDS
+sense/MGDS
+senseless/PY
+senselessness/M
+sensibilities
+sensibility/IM
+sensible/P
+sensibleness/M
+sensibly/I
+sensitive/SMYP
+sensitiveness/M
+sensitivities
+sensitivity/IM
+sensitization/CM
+sensitize/CDSG
+sensor/SM
+sensory
+sensual/Y
+sensualist/SM
+sensuality/M
+sensuous/YP
+sensuousness/M
+sent/FAU
+sentence/MGDS
+sententious/Y
+sentience/IM
+sentient/I
+sentiment/SM
+sentimental/Y
+sentimentalism/M
+sentimentalist/MS
+sentimentality/M
+sentimentalization/M
+sentimentalize/GDS
+sentinel/MS
+sentry/SM
+sepal/MS
+separability/IM
+separable
+separably/I
+separate/XMYGNVDSP
+separateness/M
+separation/M
+separatism/M
+separatist/MS
+separator/MS
+sepia/M
+sepsis/M
+septa
+septal
+septet/SM
+septic
+septicemia/M
+septicemic
+septuagenarian/MS
+septum/M
+sepulcher/GMDS
+sepulchral
+seq
+sequel/SM
+sequence/MZGDRS
+sequencing/M
+sequential/FY
+sequester/SDG
+sequestrate/XGNDS
+sequestration/M
+sequin/SMD
+sequinned
+sequitur
+sequoia/MS
+seraglio/MS
+serape/SM
+seraph/M
+seraphic
+seraphs
+sere/TR
+serenade/MGDS
+serendipitous
+serendipity/M
+serene/RPYT
+sereneness/M
+serenity/M
+serf/MS
+serfdom/M
+serge/M
+sergeant/MS
+serial/SMY
+serialization/SM
+serialize/GDSB
+series/M
+serif/MS
+serigraph/M
+serigraphs
+serine
+serious/PY
+seriousness/M
+sermon/SM
+sermonize/GDS
+serology/M
+serotonin
+serous
+serpent/MS
+serpentine/M
+serrate/XND
+serration/M
+serried
+serum/MS
+servant/MS
+serve's/AF
+serve/FACGDS
+server/SM
+servery/S
+service/EMS
+serviceability/M
+serviceable
+serviced
+serviceman/M
+servicemen
+servicewoman/M
+servicewomen
+servicing
+serviette/MS
+servile
+servility/M
+serving's
+servings
+servitor/MS
+servitude/M
+servo/MS
+servomechanism/SM
+servomotor/MS
+sesame/SM
+sesquicentennial/MS
+session/MS
+set/AISM
+setback/MS
+setscrew/SM
+setsquare/S
+sett/BJZGRS
+settee/MS
+setter/M
+setting/M
+settle's
+settle/AUGDS
+settlement/AM
+settlements
+settler/SM
+setup/MS
+seven/MHS
+seventeen/SMH
+seventeenth/M
+seventeenths
+seventh/M
+sevenths
+seventieth/M
+seventieths
+seventy/SMH
+sever/ETGDS
+several/MY
+severance/SM
+severe/YPR
+severeness/M
+severity/M
+sew/ASGD
+sewage/M
+sewer/MS
+sewerage/M
+sewing/M
+sewn/A
+sex/GMDS
+sexagenarian/SM
+sexily
+sexiness/M
+sexism/M
+sexist/MS
+sexless
+sexologist/SM
+sexology/M
+sexpot/MS
+sextant/SM
+sextet/MS
+sexting
+sexton/MS
+sextuplet/SM
+sexual/Y
+sexuality/M
+sexy/PTR
+sf
+sh
+shabbily
+shabbiness/M
+shabby/PTR
+shack/MDSG
+shackle's
+shackle/UGDS
+shad/GMDSJ
+shade/MS
+shadily
+shadiness/M
+shading/M
+shadow/SGMD
+shadowbox/GDS
+shadowy/RT
+shady/RPT
+shaft/MDSG
+shag/MS
+shagged
+shagginess/M
+shagging
+shaggy/TPR
+shah/M
+shahs
+shake/MZGRS
+shakedown/SM
+shaken/U
+shakeout/MS
+shaker/M
+shakeup/MS
+shakily
+shakiness/M
+shaky/RPT
+shale/M
+shall
+shallot/MS
+shallow/TPMRYS
+shallowness/M
+shalom
+shalt
+sham/GMDS
+shaman/SM
+shamanic
+shamanism
+shamanistic
+shamble/MGDS
+shambles/M
+shambolic
+shame/MS
+shamefaced/Y
+shameful/PY
+shamefulness/M
+shameless/YP
+shamelessness/M
+shammed
+shamming
+shampoo/ZGMDRS
+shampooer/M
+shamrock/MS
+shan't
+shandy/S
+shanghai/DSG
+shank/MS
+shantung/M
+shanty/SM
+shantytown/SM
+shape's
+shape/AGDS
+shaped/U
+shapeless/YP
+shapelessness/M
+shapeliness/M
+shapely/PTR
+shard/MS
+share/MZGDRS
+shareable
+sharecrop/S
+sharecropped
+sharecropper/MS
+sharecropping
+shareholder/SM
+shareholding/S
+sharer/M
+shareware/M
+sharia/M
+shariah
+shark/MDSG
+sharkskin/M
+sharp/MDNRYSPXZTG
+sharpen/ADGS
+sharpener/MS
+sharper/M
+sharpie/MS
+sharpish
+sharpness/M
+sharpshooter/SM
+sharpshooting/M
+shatter/GMDS
+shatterproof
+shave/MZGDRSJ
+shaven/U
+shaver/M
+shaving/M
+shawl/MS
+shay/MS
+she'd
+she'll
+she/DSM
+sheaf/M
+shear/MDRSZG
+shearer/M
+sheath/JM
+sheathe/UGDS
+sheathing/M
+sheaths
+sheave/DSMG
+shebang/MS
+shebeen/S
+shed/MS
+shedding
+sheen/M
+sheeny/TR
+sheep/M
+sheepdog/MS
+sheepfold/SM
+sheepherder/MS
+sheepish/YP
+sheepishness/M
+sheepskin/MS
+sheer/MDRSPTG
+sheerness/M
+sheet/MSG
+sheeting/M
+sheetlike
+sheikdom/MS
+sheikh/M
+sheikhs
+sheila/S
+shekel/SM
+shelf/M
+shell/MDRSG
+shellac/MS
+shellacked
+shellacking/MS
+shellfire/M
+shellfish/MS
+shelter/GMDS
+shelve/GDS
+shelving/M
+shenanigan/SM
+shepherd/SMDG
+shepherdess/MS
+sherbet/SM
+sheriff/SM
+sherry/SM
+shew/GDS
+shewn
+shh
+shiatsu/M
+shibboleth/M
+shibboleths
+shield/MDGS
+shift/GMDS
+shiftily
+shiftiness/M
+shiftless/PY
+shiftlessness/M
+shifty/RPT
+shiitake/SM
+shill/GMDSJ
+shillelagh/M
+shillelaghs
+shilling/M
+shim/MS
+shimmed
+shimmer/SMDG
+shimmery
+shimming
+shimmy/DSMG
+shin/ZGMDRS
+shinbone/SM
+shindig/SM
+shine/MS
+shiner/M
+shingle/DSMG
+shinguard/M
+shininess/M
+shinned
+shinning
+shinny/DSG
+shinsplints/M
+shiny/TRP
+ship's
+ship/ALS
+shipboard/MS
+shipbuilder/SM
+shipbuilding/M
+shipload/SM
+shipmate/SM
+shipment/AM
+shipments
+shipowner/MS
+shipped/A
+shipper/SM
+shipping/M
+shipshape
+shipwreck/GMDS
+shipwright/MS
+shipyard/SM
+shire/MS
+shirk/ZGDRS
+shirker/M
+shirr/GMDSJ
+shirring/M
+shirt/GMDS
+shirtfront/SM
+shirting/M
+shirtless
+shirtsleeve/SM
+shirttail/SM
+shirtwaist/MS
+shirty
+shit/SM!
+shitfaced/!
+shithead/S!
+shitload/!
+shitted/!
+shitting/!
+shitty/RT!
+shiv/ZMRS
+shiver/MDG
+shivery
+shoal/GMDS
+shoat/MS
+shock/ZGMDRS
+shocker/M
+shocking/Y
+shockproof
+shod/U
+shoddily
+shoddiness/M
+shoddy/PRMT
+shoe/MS
+shoehorn/GMDS
+shoeing
+shoelace/MS
+shoemaker/SM
+shoeshine/SM
+shoestring/SM
+shoetree/MS
+shogun/MS
+shogunate/M
+shone
+shoo/GDS
+shook
+shoot/ZGMRSJ
+shooter/M
+shooting/M
+shootout/MS
+shop/MS
+shopaholic/MS
+shopfitter/S
+shopfitting
+shopfront/S
+shopkeeper/MS
+shoplift/DRZGS
+shoplifter/M
+shoplifting/M
+shoppe/MZGDRS
+shopper/M
+shopping/M
+shoptalk/M
+shopworn
+shore/MGDS
+shorebird/SM
+shoreline/MS
+shoring/M
+short/XTGMDNRYSP
+shortage/MS
+shortbread/M
+shortcake/MS
+shortchange/DSG
+shortcoming/MS
+shortcrust
+shortcut/MS
+shorten/JGD
+shortening/M
+shortfall/MS
+shorthand/MD
+shorthorn/MS
+shortish
+shortlist/DGS
+shortness/M
+shortsighted/PY
+shortsightedness/M
+shortstop/MS
+shortwave/MS
+shorty/SM
+shot/MS
+shotgun/SM
+shotgunned
+shotgunning
+should
+should've
+shoulder/MDGS
+shouldn't
+shout/ZGMDRS
+shouter/M
+shove/MGDS
+shovel/MDSG
+shovelful/SM
+show/JZGMDRS
+showbiz/M
+showboat/MDGS
+showcase/MGDS
+showdown/MS
+shower/MDG
+showerproof
+showery
+showgirl/MS
+showground/S
+showily
+showiness/M
+showing/M
+showjumping
+showman/M
+showmanship/M
+showmen
+shown
+showoff/SM
+showpiece/SM
+showplace/SM
+showroom/MS
+showstopper/MS
+showstopping
+showtime
+showy/TRP
+shpt
+shrank
+shrapnel/M
+shred/MS
+shredded
+shredder/MS
+shredding
+shrew/MS
+shrewd/RYPT
+shrewdness/M
+shrewish
+shriek/MDSG
+shrift/M
+shrike/MS
+shrill/DRSPTG
+shrillness/M
+shrilly
+shrimp/MDRSZG
+shrine/MS
+shrink/MSBG
+shrinkage/M
+shrive/GDS
+shrivel/SGD
+shriven
+shroud/GMDS
+shrub/MS
+shrubbery/SM
+shrubby/RT
+shrug/MS
+shrugged
+shrugging
+shrunk/N
+shtick/MS
+shuck/GMDS
+shucks/S
+shudder/MDSG
+shuffle/AMGDS
+shuffleboard/SM
+shuffler/SM
+shun/S
+shunned
+shunning
+shunt/MSDG
+shush/DSG
+shut/S
+shutdown/SM
+shuteye/M
+shutoff/SM
+shutout/SM
+shutter/SMDG
+shutterbug/MS
+shutting
+shuttle/DSMG
+shuttlecock/GMDS
+shy/TGDRSMY
+shyer
+shyest
+shyness/M
+shyster/SM
+sibilant/SM
+sibling/SM
+sibyl/MS
+sibylline
+sic/S
+sicced
+siccing
+sick/PXTGDNRYS
+sickbay/S
+sickbed/SM
+sicken/DG
+sickening/Y
+sickie/MS
+sickish
+sickle/MS
+sickly/RT
+sickness/MS
+sicko/MS
+sickout/SM
+sickroom/MS
+side's
+side/AGDS
+sidearm/SM
+sidebar/SM
+sideboard/SM
+sideburns/M
+sidecar/SM
+sidekick/SM
+sidelight/MS
+sideline/DSMG
+sidelong
+sideman/M
+sidemen
+sidepiece/MS
+sidereal
+sidesaddle/MS
+sideshow/MS
+sidesplitting
+sidestep/MS
+sidestepped
+sidestepping
+sidestroke/DSMG
+sideswipe/DSMG
+sidetrack/SMDG
+sidewalk/MS
+sidewall/MS
+sideways
+sidewinder/SM
+siding/MS
+sidle/MGDS
+siege/MS
+sienna/M
+sierra/MS
+siesta/MS
+sieve/MGDS
+sift/ZGDRS
+sifted/U
+sifter/M
+sigh/GMD
+sighs
+sight/GMDYSJ
+sighting/M
+sightless
+sightly/UTR
+sightread
+sightseeing/M
+sightseer/MS
+sigma/MS
+sign's/C
+sign/AFCGDS
+signage/M
+signal/MDRYSZG
+signaler/M
+signalization/M
+signalize/GDS
+signalman/M
+signalmen
+signatory/SM
+signature/MS
+signboard/MS
+signed/U
+signer/CMS
+signet/MS
+significance/IM
+significant/IY
+signification/M
+signify/XDSNG
+signing's/C
+signings
+signor/FMS
+signora/SM
+signore
+signori
+signorina/MS
+signorine
+signpost/GSMD
+silage/M
+silence/DRSMZG
+silencer/M
+silent/MRYST
+silhouette/DSMG
+silica/M
+silicate/MS
+siliceous
+silicon/SM
+silicone/M
+silicosis/M
+silk/MNS
+silkily
+silkiness/M
+silkscreen/SM
+silkworm/MS
+silky/TRP
+sill/MS
+silliness/M
+silly/TRSMP
+silo/MS
+silt/GMDS
+silty/TR
+silver/GMDS
+silverfish/MS
+silversmith/M
+silversmiths
+silverware/M
+silvery
+sim/SM
+simian/MS
+similar/Y
+similarity/ESM
+simile/MS
+similitude/EM
+simmer/GMDS
+simonize/DSG
+simony/M
+simpatico
+simper/GMDS
+simpering/Y
+simple/TRP
+simpleminded
+simpleness/M
+simpleton/SM
+simplex
+simplicity/M
+simplification/M
+simplify/DSXNG
+simplistic
+simplistically
+simply
+simulacra
+simulacrum/S
+simulate/EDSGN
+simulation/EM
+simulations
+simulator/EMS
+simulcast/GMDS
+simultaneity/M
+simultaneous/Y
+sin/ASM
+since
+sincere/IYT
+sincerer
+sincerity/IM
+sine/MS
+sinecure/MS
+sinew/MS
+sinewy
+sinful/PY
+sinfulness/M
+sing/BZGMDRYS
+singalong/S
+singe/MS
+singeing
+singer/M
+singing/M
+single/PMGDS
+singleness/M
+singles/M
+singlet/S
+singleton/SM
+singletree/SM
+singsong/SMDG
+singular/SMY
+singularity/SM
+sinister
+sink/BZGMRS
+sinkable/U
+sinker/M
+sinkhole/SM
+sinless
+sinned
+sinner/MS
+sinning
+sinology
+sinuosity/M
+sinuous/Y
+sinus/MS
+sinusitis/M
+sinusoidal
+sip/SM
+siphon/GMDS
+sipped
+sipper/SM
+sipping
+sir/SXMN
+sire/CMGDS
+siren/M
+sirloin/SM
+sirocco/SM
+sirrah
+sirree/M
+sis/MS
+sisal/M
+sissified
+sissy/RSMT
+sister/ASM
+sisterhood/MS
+sisterliness/M
+sisterly/P
+sit/S
+sitar/SM
+sitarist/MS
+sitcom/SM
+site/MGDS
+sitemap/SM
+sitter/SM
+sitting/SM
+situ
+situate/DSXGN
+situation/M
+situational
+six/MSH
+sixfold
+sixpence/MS
+sixshooter/M
+sixteen/SMH
+sixteenth/M
+sixteenths
+sixth/M
+sixths
+sixtieth/M
+sixtieths
+sixty/SMH
+sizable
+size's
+size/AGDS
+sizer
+sizing/M
+sizzle/DRSMZG
+ska/M
+skate/MZGDRS
+skateboard/MDRSZG
+skateboarder/M
+skateboarding/M
+skater/M
+skating/M
+skedaddle/MGDS
+skeet/ZMR
+skein/MS
+skeletal
+skeleton/SM
+skeptic/SM
+skeptical/Y
+skepticism/M
+sketch/MDRSZG
+sketchbook/S
+sketcher/M
+sketchily
+sketchiness/M
+sketchpad/S
+sketchy/RTP
+skew/MDRZGS
+skewbald/S
+skewer/MDG
+ski/SZGMDR
+skibob/S
+skid/MS
+skidded
+skidding
+skidpan/S
+skier/M
+skiff/SM
+skiffle
+skiing/M
+skill's
+skill/CSD
+skilled/U
+skillet/SM
+skillful/UY
+skillfulness/M
+skim/MS
+skimmed
+skimmer/SM
+skimming
+skimp/SDG
+skimpily
+skimpiness/M
+skimpy/RTP
+skin/MS
+skincare/M
+skinflint/MS
+skinful
+skinhead/MS
+skinless
+skinned
+skinniness/M
+skinning
+skinny/RMTP
+skint
+skintight
+skip/MS
+skipped
+skipper/SMDG
+skipping
+skirmish/ZGMDRS
+skirt/SMDG
+skit/MS
+skitter/GSD
+skittish/YP
+skittishness/M
+skittle/S
+skive/DRSZG
+skivvy/DSMG
+skoal/SM
+skua/S
+skulduggery/M
+skulk/SDRZG
+skulker/M
+skull/SM
+skullcap/MS
+skunk/SMDG
+sky/GSM
+skycap/SM
+skydive/DRSZG
+skydiver/M
+skydiving/M
+skyjack/JZGSDR
+skyjacker/M
+skyjacking/M
+skylark/SGMD
+skylight/MS
+skyline/SM
+skyrocket/GSMD
+skyscraper/SM
+skyward/S
+skywriter/SM
+skywriting/M
+slab/MS
+slabbed
+slabbing
+slack/PXZTGMDNRYS
+slacken/DG
+slacker/M
+slackness/M
+slacks/M
+slag/MS
+slagged
+slagging
+slagheap/S
+slain
+slake/GDS
+slalom/MSDG
+slam/MS
+slammed
+slammer/SM
+slamming
+slander/MZGDRS
+slanderer/M
+slanderous
+slang/M
+slangy/RT
+slant/MSDG
+slanting/Y
+slantwise
+slap/MS
+slapdash
+slaphappy
+slapped
+slapper/S
+slapping
+slapstick/M
+slash/MDRSZG
+slasher/M
+slat/MDGS
+slate/SM
+slather/SDG
+slatted
+slattern/SMY
+slaughter/MDRZGS
+slaughterer/M
+slaughterhouse/MS
+slave/DRSMZG
+slaveholder/MS
+slaver/MDG
+slavery/M
+slavish/PY
+slavishness/M
+slaw/M
+slay/DRZGJS
+slayer/M
+slaying/M
+sleaze/SM
+sleazebag/S
+sleazeball/S
+sleazily
+sleaziness/M
+sleazy/PRT
+sled/MS
+sledded
+sledder/SM
+sledding
+sledge/DSMG
+sledgehammer/GSMD
+sleek/SDRYTGP
+sleekness/M
+sleep/SMRZG
+sleeper/M
+sleepily
+sleepiness/M
+sleepless/PY
+sleeplessness/M
+sleepover/SM
+sleepwalk/ZGSDR
+sleepwalker/M
+sleepwalking/M
+sleepwear/M
+sleepy/RPT
+sleepyhead/MS
+sleet/SMDG
+sleety
+sleeve/DSM
+sleeveless
+sleigh/MDG
+sleighs
+sleight/SM
+slender/PRT
+slenderize/DSG
+slenderness/M
+slept
+sleuth/MG
+sleuths
+slew/MDGS
+slice/DRSMZG
+slicer/M
+slick/SMDRYZTGP
+slicker/M
+slickness/M
+slid
+slide/RSMZG
+slider/M
+slideshow/MS
+slight/SMDRYTGP
+slightness/M
+slim/PS
+slime/M
+sliminess/M
+slimline
+slimmed
+slimmer/S
+slimmest
+slimming/M
+slimness/M
+slimy/RTP
+sling/SMG
+slingback/S
+slingshot/SM
+slink/SG
+slinky/RT
+slip/MS
+slipcase/MS
+slipcover/MS
+slipknot/MS
+slippage/MS
+slipped
+slipper/SM
+slipperiness/M
+slippery/PRT
+slipping
+slippy
+slipshod
+slipstream/SM
+slipway/SM
+slit/MS
+slither/SGMD
+slithery
+slitter
+slitting
+sliver/GSMD
+slob/MS
+slobbed
+slobber/MDSG
+slobbery
+slobbing
+sloe/MS
+slog/MS
+slogan/SM
+sloganeering
+slogged
+slogging
+sloop/SM
+slop/MDGS
+slope/SM
+slopped
+sloppily
+sloppiness/M
+slopping
+sloppy/PTR
+slops/M
+slosh/DSG
+slot/MS
+sloth/M
+slothful/YP
+slothfulness/M
+sloths
+slotted
+slotting
+slouch/ZGMDRS
+sloucher/M
+slouchy/TR
+slough/GMD
+sloughs
+sloven/SMY
+slovenliness/M
+slovenly/PTR
+slow/DRYTGSP
+slowcoach/S
+slowdown/SM
+slowness/M
+slowpoke/SM
+sludge/M
+sludgy/RT
+slue/MGDS
+slug/MS
+sluggard/MS
+slugged
+slugger/SM
+slugging
+sluggish/PY
+sluggishness/M
+sluice/DSMG
+slum/MS
+slumber/GSMD
+slumberous
+slumdog/SM
+slumlord/MS
+slummed
+slummer
+slumming
+slummy/RT
+slump/SMDG
+slung
+slunk
+slur/MS
+slurp/SMDG
+slurred
+slurring
+slurry/M
+slush/M
+slushiness/M
+slushy/RPT
+slut/MS
+sluttish
+slutty/RT
+sly/TRY
+slyness/M
+smack/SMDRZG
+smacker/M
+small/SMRTP
+smallholder/S
+smallholding/S
+smallish
+smallness/M
+smallpox/M
+smarmy/RT
+smart/SMDNRYXTGP
+smarten/DG
+smartness/M
+smartphone/SM
+smarts/M
+smartwatch/MS
+smarty/SM
+smartypants/M
+smash/MDRSZG
+smasher/M
+smashup/SM
+smattering/MS
+smear/SMDG
+smeary/RT
+smell/SMDG
+smelliness/M
+smelly/RPT
+smelt/SMDRZG
+smelter/M
+smidgen/MS
+smilax/M
+smile/DSMG
+smiley/SM
+smiling/Y
+smirch/GMDS
+smirk/SMDG
+smite/SG
+smith/M
+smithereens/M
+smiths
+smithy/SM
+smitten
+smock/SMDG
+smocking/M
+smog/MS
+smoggy/RT
+smoke/DRSMZG
+smokehouse/MS
+smokeless
+smoker/M
+smokescreen/SM
+smokestack/SM
+smokey
+smokiness/M
+smoking/M
+smoky/RTP
+smolder/SGMD
+smooch/MDSG
+smoochy
+smooth/PDRYTG
+smoothie/MS
+smoothness/M
+smooths
+smorgasbord/SM
+smote
+smother/GSMD
+smudge/DSMG
+smudgy/TR
+smug/YP
+smugger
+smuggest
+smuggle/ZGDRS
+smuggler/M
+smuggling/M
+smugness/M
+smurf/S
+smut/MS
+smuttiness/M
+smutty/TRP
+snack/SMDG
+snaffle/DSMG
+snafu/SM
+snag/MS
+snagged
+snagging
+snail/SMDG
+snake/DSMG
+snakebite/MS
+snakelike
+snakeskin
+snaky/RT
+snap's
+snap/US
+snapdragon/SM
+snapped/U
+snapper/MS
+snappily
+snappiness/M
+snapping/U
+snappish/YP
+snappishness/M
+snappy/TRP
+snapshot/SM
+snare/DSMG
+snarf/SDG
+snark/S
+snarky/TR
+snarl's
+snarl/USDG
+snarling/Y
+snarly/TR
+snatch/ZGMDRS
+snatcher/M
+snazzily
+snazzy/TR
+sneak/SMDRZG
+sneaker/M
+sneakily
+sneakiness/M
+sneaking/Y
+sneaky/TRP
+sneer/SJMDG
+sneering/Y
+sneeze/DSMG
+snick/SDRZG
+snicker/MDG
+snide/RYT
+sniff/SMDRZG
+sniffer/M
+sniffle/DSMG
+sniffy/RT
+snifter/SM
+snip/MDRZGS
+snipe/SM
+sniper/M
+snipped
+snippet/SM
+snipping
+snippy/RT
+snips/M
+snit/MS
+snitch/MDSG
+snivel/SMDRZG
+sniveler/M
+snob/MS
+snobbery/M
+snobbish/PY
+snobbishness/M
+snobby/RT
+snog/S
+snogged
+snogging
+snood/SM
+snooker/MDSG
+snoop/SMDRZG
+snooper/M
+snoopy/TR
+snoot/SM
+snootily
+snootiness/M
+snooty/PTR
+snooze/DSMG
+snore/DRSMZG
+snorer/M
+snorkel/ZGMDRS
+snorkeler/M
+snorkeling/M
+snort/SMDRZG
+snorter/M
+snot/MS
+snottily
+snottiness/M
+snotty/TPR
+snout/SM
+snow/MDGS
+snowball/GSMD
+snowbank/SM
+snowbird/SM
+snowblower/MS
+snowboard/ZGMDRS
+snowboarder/M
+snowboarding/M
+snowbound
+snowdrift/SM
+snowdrop/SM
+snowfall/SM
+snowfield/SM
+snowflake/SM
+snowiness/M
+snowline
+snowman/M
+snowmen
+snowmobile/DSMG
+snowplow/SGMD
+snowshed
+snowshoe/SM
+snowshoeing
+snowstorm/SM
+snowsuit/SM
+snowy/PRT
+snub/MS
+snubbed
+snubbing
+snuff/SMDRYZG
+snuffbox/MS
+snuffer/M
+snuffle/MGDS
+snug/MYSP
+snugged
+snugger
+snuggest
+snugging
+snuggle/MGDS
+snugness/M
+so
+soak/MDGSJ
+soaking/M
+soap/MDGS
+soapbox/MS
+soapiness/M
+soapstone/M
+soapsuds/M
+soapy/RPT
+soar/MDGS
+sob/SM
+sobbed
+sobbing/Y
+sober/SDRYPTG
+soberness/M
+sobriety/IM
+sobriquet/SM
+soc
+soccer/M
+sociability/M
+sociable/SM
+sociably
+social/SMY
+socialism/M
+socialist/SM
+socialistic
+socialite/SM
+socialization/M
+socialize/DSG
+societal
+society/SM
+socioeconomic
+socioeconomically
+sociological/Y
+sociologist/SM
+sociology/M
+sociopath/M
+sociopaths
+sociopolitical
+sock/MDGS
+socket/SM
+sockeye/SM
+sod/SM
+soda/MS
+sodded
+sodden/Y
+sodding
+sodium/M
+sodomite/MS
+sodomize/GDS
+sodomy/M
+soever
+sofa/MS
+soft/NRYXTP
+softback
+softball/MS
+softbound
+softcover
+soften/DRZG
+softener/M
+softhearted
+softness/M
+software/M
+softwood/SM
+softy/SM
+soggily
+sogginess/M
+soggy/RTP
+soigne
+soignee
+soil/MDGS
+soiled/U
+soiree/SM
+sojourn/ZGMDRS
+sojourner/M
+sol/SM
+solace/DSMG
+solar
+solaria
+solarium/M
+sold
+solder/ZGSMDR
+solderer/M
+soldier/MDYSG
+soldiery/M
+sole/FSDGM
+solecism/SM
+solely
+solemn/PTRY
+solemness/M
+solemnify/DSG
+solemnity/SM
+solemnization/M
+solemnize/DSG
+solemnness/M
+solenoid/MS
+solicit/GDS
+solicitation/SM
+solicited/U
+solicitor/SM
+solicitous/PY
+solicitousness/M
+solicitude/M
+solid/PSMRYT
+solidarity/M
+solidi
+solidification/M
+solidify/DSNG
+solidity/M
+solidness/M
+solidus/M
+soliloquies
+soliloquize/DSG
+soliloquy/M
+solipsism/M
+solipsistic
+solitaire/MS
+solitariness/M
+solitary/SMP
+solitude/M
+solo/MDGS
+soloist/MS
+solstice/MS
+solubility/IM
+soluble/MS
+solute's
+solute/AXN
+solutes
+solution's/AE
+solvable/IU
+solve/EADSG
+solved/U
+solvency/IM
+solvent/IMS
+solver/SM
+somatic
+somatosensory
+somber/PY
+somberness/M
+sombrero/MS
+some
+somebody/SM
+someday
+somehow
+someone/MS
+someplace
+somersault/MDGS
+somerset/SM
+somersetted
+somersetting
+something/SM
+sometime/S
+someway/S
+somewhat/S
+somewhere
+somnambulism/M
+somnambulist/SM
+somnolence/M
+somnolent
+son/SM
+sonar/SM
+sonata/SM
+sonatina/SM
+song/MS
+songbird/SM
+songbook/SM
+songfest/SM
+songster/MS
+songstress/MS
+songwriter/SM
+songwriting
+sonic
+sonnet/SM
+sonny/SM
+sonogram/SM
+sonority/M
+sonorous/YP
+sonorousness/M
+sonsofbitches
+soon/RT
+soot/M
+sooth/MDRSZG
+soothe
+soother/M
+soothing/Y
+soothsayer/MS
+soothsaying/M
+sooty/RT
+sop/SM
+soph
+sophism/M
+sophist/MS
+sophistic
+sophistical
+sophisticate/DSMGN
+sophisticated/U
+sophistication/M
+sophistry/SM
+sophomore/MS
+sophomoric
+soporific/MS
+soporifically
+sopped
+sopping
+soppy/RT
+soprano/MS
+sorbet/SM
+sorcerer/MS
+sorceress/MS
+sorcery/M
+sordid/PY
+sordidness/M
+sore/MYTRSP
+sorehead/MS
+soreness/M
+sorghum/M
+sorority/SM
+sorrel/SM
+sorrily
+sorriness/M
+sorrow/SMDG
+sorrowful/YP
+sorrowfulness/M
+sorry/RTP
+sort/FASGDM
+sorta
+sorted/U
+sorter/SM
+sortie/DSM
+sortieing
+sot/SM
+sottish
+sou'wester
+sou/SMH
+souffle/SM
+sough/MDG
+soughs
+sought/U
+souk/S
+soul/MS
+soulful/YP
+soulfulness/M
+soulless/YP
+soulmate/SM
+sound/JPSMDRYZTG
+soundalike/S
+soundbar/S
+soundbite/S
+soundboard/MS
+soundcheck/S
+sounder/M
+sounding/M
+soundless/Y
+soundness/UM
+soundproof/GDS
+soundproofing/M
+soundscape/S
+soundtrack/SM
+soup/MDGS
+soupcon/MS
+soupy/RT
+sour/MDRYTGSP
+source/ADSMG
+sourdough/M
+sourdoughs
+sourish
+sourness/M
+sourpuss/MS
+sousaphone/MS
+souse/DSMG
+south/M
+southbound
+southeast/ZMR
+southeaster/MY
+southeastern
+southeastward/S
+southerly/SM
+southern/SZMR
+southerner/M
+southernmost
+southpaw/SM
+southward/MS
+southwest/ZMR
+southwester/MY
+southwestern
+southwestward/S
+souvenir/SM
+sovereign/SM
+sovereignty/M
+soviet/SM
+sow's
+sow/ASGD
+sower/SM
+sown/A
+soy/M
+soybean/MS
+sozzled
+spa/SM
+space/DRSMZG
+spacecraft/MS
+spaceflight/MS
+spaceman/M
+spacemen
+spaceport/SM
+spacer/M
+spaceship/SM
+spacesuit/SM
+spacetime
+spacewalk/SGMD
+spacewoman/M
+spacewomen
+spacey
+spacial
+spacier
+spaciest
+spaciness/M
+spacing/M
+spacious/YP
+spaciousness/M
+spade/DSMG
+spadeful/MS
+spadework/M
+spadices
+spadix/M
+spaghetti/M
+spake
+spam/MS
+spammed
+spammer/SM
+spamming
+span/MS
+spandex/M
+spangle/DSMG
+spangly
+spaniel/SM
+spank/SMDGJ
+spanking/M
+spanned
+spanner/SM
+spanning
+spar/MS
+spare/DRSMYTGP
+spareness/M
+spareribs/M
+sparing/UY
+spark/SMDYG
+sparkle/DRSMZG
+sparkler/M
+sparky/RT
+sparred
+sparring
+sparrow/SM
+sparrowhawk/S
+sparse/RYTP
+sparseness/M
+sparsity/M
+spartan
+spasm/SM
+spasmodic
+spasmodically
+spastic/SM
+spat/MS
+spate/SM
+spathe/SM
+spatial/Y
+spatted
+spatter/SGMD
+spatting
+spatula/SM
+spavin/MD
+spawn/SMDG
+spay/DGS
+speak/SRZGJ
+speakeasy/SM
+speaker/M
+speakerphone/S
+spear/SMDG
+spearfish/GMDS
+speargun
+spearhead/GMDS
+spearmint/M
+spec/MS
+special/SMY
+specialism/S
+specialist/MS
+specialization/MS
+specialize/GDS
+specialty/SM
+specie/SM
+species/M
+specif
+specifiable
+specific/MS
+specifically
+specification/M
+specificity/M
+specified/U
+specify/XNZDRSG
+specimen/SM
+specious/YP
+speciousness/M
+speck/SMDG
+speckle/MGDS
+specs/M
+spectacle/SM
+spectacles/M
+spectacular/MYS
+spectate/DSG
+spectator/SM
+specter/AMS
+spectra
+spectral
+spectrometer/MS
+spectroscope/MS
+spectroscopic
+spectroscopy/M
+spectrum/M
+speculate/DSXGNV
+speculation/M
+speculative/Y
+speculator/MS
+sped
+speech/MS
+speechify/DSG
+speechless/YP
+speechlessness/M
+speechwriter/S
+speed/SMRZG
+speedboat/SM
+speeder/M
+speedily
+speediness/M
+speeding/M
+speedometer/MS
+speedster/SM
+speedup/MS
+speedway/SM
+speedwell/M
+speedy/TPR
+speleological
+speleologist/MS
+speleology/M
+spell/JSMDRZG
+spellbind/ZGRS
+spellbinder/M
+spellbound
+spellcheck/MDRZGS
+spellchecker/M
+spelldown/SM
+speller/M
+spelling/M
+spelunker/MS
+spelunking/M
+spend/BSRZG
+spender/M
+spending/M
+spendthrift/MS
+spent/U
+sperm/SM
+spermatozoa
+spermatozoon/M
+spermicidal
+spermicide/MS
+spew/MDRZGS
+spewer/M
+sphagnum/MS
+sphere/SM
+spherical/Y
+spheroid/SM
+spheroidal
+sphincter/MS
+sphinx/MS
+spic/S
+spice/DSMG
+spicily
+spiciness/M
+spicule/MS
+spicy/PRT
+spider/SM
+spiderweb/MS
+spidery
+spiel/SMDG
+spiff/SDG
+spiffy/TR
+spigot/SM
+spike/DSMG
+spikiness/M
+spiky/RPT
+spill/SMDG
+spillage/MS
+spillover/SM
+spillway/MS
+spin/MS
+spinach/M
+spinal/SMY
+spindle/MGDS
+spindly/TR
+spine/SM
+spineless/YP
+spinet/SM
+spinless
+spinnaker/SM
+spinner/MS
+spinneret/SM
+spinney/S
+spinning/M
+spinster/SM
+spinsterhood/M
+spinsterish
+spiny/RT
+spiracle/SM
+spiral/SGMDY
+spire's
+spire/IFAS
+spirea/SM
+spirit's
+spirit/ISGD
+spirited/Y
+spiritless
+spiritual/MYS
+spiritualism/M
+spiritualist/MS
+spiritualistic
+spirituality/M
+spirituous
+spirochete/SM
+spiry
+spit/MDGS
+spitball/SM
+spite/ASM
+spiteful/PY
+spitefuller
+spitefullest
+spitefulness/M
+spitfire/SM
+spitted
+spitting
+spittle/M
+spittoon/MS
+spiv/S
+splanchnic
+splash/GMDS
+splashdown/MS
+splashily
+splashiness/M
+splashy/RTP
+splat/SM
+splatted
+splatter/GSMD
+splatting
+splay/SMDG
+splayfeet
+splayfoot/MD
+spleen/SM
+splendid/RYT
+splendor/MS
+splendorous
+splenectomy
+splenetic
+splice/DRSMZG
+splicer/M
+spliff/S
+spline/S
+splint/SZGMDR
+splinter/MDG
+splintery
+split/SM
+splitting/MS
+splodge/S
+splosh/DSG
+splotch/MDSG
+splotchy/TR
+splurge/DSMG
+splutter/GMDS
+spoil's
+spoil/CSDRZG
+spoilage/M
+spoiled/U
+spoiler/CM
+spoilsport/MS
+spoke/SM
+spoken/U
+spokesman/M
+spokesmen
+spokespeople
+spokesperson/MS
+spokeswoman/M
+spokeswomen
+spoliation/CM
+sponge/DRSMZG
+sponger/M
+sponginess/M
+spongy/RPT
+sponsor/MDGS
+sponsorship/M
+spontaneity/M
+spontaneous/Y
+spoof/SMDG
+spook/SMDG
+spookiness/M
+spooky/RPT
+spool/SMDG
+spoon/SMDG
+spoonbill/MS
+spoonerism/MS
+spoonful/SM
+spoor/SMDG
+sporadic
+sporadically
+spore/DSMG
+sporran/S
+sport/SMDGV
+sportiness/M
+sporting/Y
+sportive/Y
+sportscast/MRZGS
+sportscaster/M
+sportsman/M
+sportsmanlike/U
+sportsmanship/M
+sportsmen
+sportspeople
+sportsperson
+sportswear/M
+sportswoman/M
+sportswomen
+sportswriter/SM
+sporty/TPR
+spot/CMS
+spotless/PY
+spotlessness/M
+spotlight/GSMD
+spotlit
+spotted
+spotter/MS
+spottily
+spottiness/M
+spotting
+spotty/TPR
+spousal/MS
+spouse/SM
+spout/SMDG
+sprain/GSMD
+sprang
+sprat/SM
+sprawl/GSMD
+spray's
+spray/ASDG
+sprayer/MS
+spread/ZGBSMR
+spreadeagled
+spreader/M
+spreadsheet/MS
+spree/DSM
+spreeing
+sprig/SM
+sprigged
+sprightliness/M
+sprightly/RTP
+spring/GSM
+springboard/MS
+springbok/MS
+springily
+springiness/M
+springlike
+springtime/M
+springy/RPT
+sprinkle/DRSJMZG
+sprinkler/M
+sprinkling/M
+sprint/ZGSMDR
+sprinter/M
+sprite/SM
+spritz/ZGMDRS
+spritzer/M
+sprocket/MS
+sprog/S
+sprout/GSMD
+spruce/DRSPMYTG
+spruceness/M
+sprung
+spry/RYT
+spryness/M
+spud/MS
+spume/DSMG
+spumoni/M
+spumy
+spun
+spunk/SM
+spunky/TR
+spur/MS
+spurge/M
+spurious/PY
+spuriousness/M
+spurn/SDG
+spurred
+spurring
+spurt/SMDG
+sputa
+sputnik/MS
+sputter/MDGS
+sputum/M
+spy/GDSM
+spyglass/MS
+spymaster/S
+spyware/M
+sq
+sqq
+squab/SM
+squabble/MZGDRS
+squabbler/M
+squad/SM
+squadron/MS
+squalid/PTRY
+squalidness/M
+squall/SGMD
+squally
+squalor/M
+squamous
+squander/GDS
+square/PDRSMYTG
+squareness/M
+squarish
+squash/GMDS
+squashy/TR
+squat/SMP
+squatness/M
+squatted
+squatter/MS
+squattest
+squatting
+squaw/SM
+squawk/SZGMDR
+squawker/M
+squeak/SZGMDR
+squeaker/M
+squeakily
+squeakiness/M
+squeaky/TRP
+squeal/SZGMDR
+squealer/M
+squeamish/PY
+squeamishness/M
+squeegee/MDS
+squeegeeing
+squeeze/BMZGDRS
+squeezebox/S
+squeezer/M
+squelch/GMDS
+squelchy
+squib/SM
+squid/SM
+squidgy
+squiffy
+squiggle/DSMG
+squiggly
+squint/STGMDR
+squire/DSMG
+squirm/SGMD
+squirmy/RT
+squirrel/SGMD
+squirt/SGMD
+squish/GMDS
+squishy/RT
+sriracha
+ssh
+st
+stab/MYS
+stabbed
+stabber/MS
+stabbing/MS
+stability/IM
+stabilization/CM
+stabilize/CDSG
+stabilizer/MS
+stable/DRSMTG
+stableman/M
+stablemate/S
+stablemen
+stably/U
+staccato/MS
+stack/SMDG
+stadium/MS
+staff's
+staff/ASDG
+staffer/MS
+staffing/M
+stag/MDGSJ
+stage/SM
+stagecoach/MS
+stagecraft/M
+stagehand/MS
+stagestruck
+stagflation/M
+stagger/MDGS
+staggering/Y
+staging/M
+stagnancy/M
+stagnant/Y
+stagnate/DSGN
+stagnation/M
+stagy/RT
+staid/PRYT
+staidness/M
+stain/SMDG
+stained/U
+stainless/M
+stair/SM
+staircase/MS
+stairway/MS
+stairwell/SM
+stake/DSMG
+stakeholder/MS
+stakeout/SM
+stalactite/MS
+stalagmite/MS
+stale/DRSTGP
+stalemate/DSMG
+staleness/M
+stalk/SMDRJZG
+stalker/M
+stalking/M
+stall's
+stall/SDG
+stallholder/S
+stallion/MS
+stalwart/MYS
+stamen/SM
+stamina/M
+stammer/ZGMDRS
+stammerer/M
+stammering/Y
+stamp/SMDRZG
+stampede/MGDS
+stamper/M
+stance/ISM
+stanch/TGDRS
+stanchion/SM
+stand/SMRJZG
+standalone
+standard/MS
+standardization/M
+standardize/DSG
+standby/M
+standbys
+standee/MS
+stander/M
+standing/M
+standoff/MS
+standoffish
+standout/MS
+standpipe/SM
+standpoint/MS
+standstill/MS
+stank
+stanza/SM
+staph/M
+staphylococcal
+staphylococci
+staphylococcus/M
+staple/DRSMZG
+stapler/M
+star/MDRZGS
+starboard/M
+starburst/S
+starch/GMDS
+starchily
+starchiness/M
+starchy/PTR
+stardom/M
+stardust/M
+stare/SM
+starer/M
+starfish/MS
+starfruit
+stargaze/DRSZG
+stargazer/M
+stark/RYPZT
+starkness/M
+starless
+starlet/MS
+starlight/M
+starling/SM
+starlit
+starred
+starring
+starry/TR
+starstruck
+start/ASMDG
+starter/MS
+startle/GDS
+startling/Y
+startup/MS
+starvation/M
+starve/DSJG
+starveling/MS
+stash/MDSG
+stasis
+stat/MS
+state/DRSMYGNLX
+statecraft/M
+stated/U
+statehood/M
+statehouse/MS
+stateless/P
+statelessness/M
+stateliness/M
+stately/PRT
+statement/AMS
+statemented
+statementing
+stateroom/MS
+stateside
+statesman/M
+statesmanlike
+statesmanship/M
+statesmen
+stateswoman/M
+stateswomen
+statewide
+static/SM
+statically
+station/MDRZG
+stationary
+stationer/M
+stationery/M
+stationmaster/S
+statistic/MS
+statistical/Y
+statistician/SM
+statuary/M
+statue/SM
+statuesque
+statuette/MS
+stature/MS
+status/MS
+statute/MS
+statutorily
+statutory
+staunch/PDRSYTG
+staunchness/M
+stave/DSMG
+stay/MDRZGS
+std
+stdio
+stead/SM
+steadfast/YP
+steadfastness/M
+steadily/U
+steadiness/UM
+steady/TGPDRSM
+steak/SM
+steakhouse/SM
+steal/SMHG
+stealth/M
+stealthily
+stealthiness/M
+stealthy/TPR
+steam/SMDRZG
+steamboat/MS
+steamer/M
+steamfitter/SM
+steamfitting/M
+steaminess/M
+steampunk
+steamroll/ZGDRS
+steamroller/MDG
+steamship/MS
+steamy/TPR
+steed/SM
+steel/SMDG
+steeliness/M
+steelmaker/S
+steelworker/SM
+steelworks/M
+steely/PTR
+steelyard/SM
+steep/SMDNRYPXTG
+steepen/GD
+steeple/MS
+steeplechase/MS
+steeplejack/SM
+steepness/M
+steer/SMDBG
+steerage/M
+steering/M
+steersman/M
+steersmen
+stegosauri
+stegosaurus/MS
+stein/SM
+stellar
+stem/MS
+stemless
+stemmed
+stemming
+stemware/M
+stench/MS
+stencil/GMDS
+steno/SM
+stenographer/SM
+stenographic
+stenography/M
+stenosis
+stent/SM
+stentorian
+step/IMS
+stepbrother/SM
+stepchild/M
+stepchildren/M
+stepdad/MS
+stepdaughter/SM
+stepfather/SM
+stepladder/MS
+stepmom/MS
+stepmother/SM
+stepparent/SM
+steppe/DRSMZG
+stepper/M
+steppingstone/SM
+stepsister/MS
+stepson/MS
+stereo/SM
+stereophonic
+stereoscope/MS
+stereoscopic
+stereotype/DSMG
+stereotypical
+sterile
+sterility/M
+sterilization/SM
+sterilize/DRSZG
+sterilizer/M
+sterling/M
+stern/SMRYPT
+sternness/M
+sternum/MS
+steroid/MS
+steroidal
+stertorous
+stet/S
+stethoscope/MS
+stetson/MS
+stetted
+stetting
+stevedore/SM
+stew/MDGS
+steward/GMDS
+stewardess/MS
+stewardship/M
+stick/SMRZG
+sticker/M
+stickily
+stickiness/M
+stickleback/SM
+stickler/MS
+stickpin/MS
+stickup/MS
+sticky/PTRSM
+stiff/SMDNRYPXTG
+stiffen/ZGDR
+stiffener/M
+stiffening/M
+stiffness/M
+stifle/DSJG
+stifling/Y
+stigma/SM
+stigmata
+stigmatic
+stigmatization/M
+stigmatize/GDS
+stile/SM
+stiletto/SM
+still's
+still/ITGSD
+stillbirth/M
+stillbirths
+stillborn
+stiller
+stillness/M
+stilt/SMD
+stilted/Y
+stimulant/SM
+stimulate/DSGNV
+stimulation/M
+stimuli
+stimulus/M
+sting/ZGSMR
+stinger/M
+stingily
+stinginess/M
+stingray/SM
+stingy/RTP
+stink/ZGSMR
+stinkbug/SM
+stinker/M
+stinky/RT
+stint/GSMD
+stipend/SM
+stipendiary/S
+stipple/DSMG
+stippling/M
+stipulate/XDSGN
+stipulation/M
+stir/MS
+stirred
+stirrer/SM
+stirring/SY
+stirrup/SM
+stitch's
+stitch/ADSG
+stitchery/M
+stitching/M
+stoat/SM
+stochastic
+stock's
+stock/AGSD
+stockade/DSMG
+stockbreeder/MS
+stockbroker/SM
+stockbroking/M
+stockholder/SM
+stockily
+stockiness/M
+stockinette/M
+stocking/SM
+stockist/S
+stockpile/MGDS
+stockpot/SM
+stockroom/MS
+stocktaking/M
+stocky/RTP
+stockyard/MS
+stodge
+stodgily
+stodginess/M
+stodgy/RTP
+stogie/MS
+stoic/SM
+stoical/Y
+stoicism/M
+stoke/DRSZG
+stoker/M
+stole/SM
+stolen
+stolid/RYTP
+stolidity/M
+stolidness/M
+stolon/MS
+stomach/MDRZG
+stomachache/SM
+stomacher/M
+stomachs
+stomp/GSMD
+stone/DRSMZG
+stonemason/MS
+stoner/M
+stonewall/GSD
+stoneware/M
+stonewashed
+stonework/M
+stonily
+stoniness/M
+stonkered
+stonking
+stony/TRP
+stood
+stooge/MS
+stool/SM
+stoop/GSMD
+stop's
+stop/US
+stopcock/SM
+stopgap/SM
+stoplight/MS
+stopover/MS
+stoppable/U
+stoppage/MS
+stopped/U
+stopper/GSMD
+stopping/U
+stopple/DSMG
+stopwatch/MS
+storage/M
+store's
+store/ADSG
+storefront/MS
+storehouse/MS
+storekeeper/SM
+storeroom/SM
+stork/SM
+storm/GSMD
+stormily
+storminess/M
+stormy/RPT
+story/DSM
+storyboard/MS
+storybook/SM
+storyteller/MS
+storytelling/M
+stoup/SM
+stout/TSMRYP
+stouthearted
+stoutness/M
+stove/SM
+stovepipe/SM
+stow/DGS
+stowage/M
+stowaway/MS
+straddle/DRSMZG
+straddler/M
+strafe/MGDS
+straggle/DRSZG
+straggler/M
+straggly/TR
+straight/SPXTMNRY
+straightaway/SM
+straightedge/SM
+straighten/ZGDR
+straightener/M
+straightforward/YPS
+straightforwardness/M
+straightness/M
+straightway
+strain's
+strain/FADSG
+strainer/ASM
+strait/MNSX
+straiten/GD
+straitjacket/SGMD
+straitlaced
+strand/MDSG
+strange/PRYZT
+strangeness/M
+stranger/M
+strangle/ZGDRS
+stranglehold/SM
+strangler/M
+strangulate/GNDS
+strangulation/M
+strap's
+strap/US
+strapless/MS
+strapped/U
+strapping/M
+strata
+stratagem/SM
+strategic/S
+strategical/Y
+strategics/M
+strategist/SM
+strategy/SM
+strati
+stratification/M
+stratify/DSGN
+stratosphere/SM
+stratospheric
+stratum/M
+stratus/M
+straw/GSMD
+strawberry/SM
+stray/GSMD
+streak/MDRSZG
+streaker/M
+streaky/TR
+stream/MDRSZG
+streamer/M
+streamline/DSG
+street/MS
+streetcar/MS
+streetlamp/S
+streetlight/SM
+streetwalker/SM
+streetwise
+strength/M
+strengthen/AGDS
+strengthener/MS
+strengths
+strenuous/PY
+strenuousness/M
+strep/M
+streptococcal
+streptococci
+streptococcus/M
+streptomycin/M
+stress/MDSG
+stressed/U
+stressful
+stressors
+stretch/BZGMDRS
+stretcher/MDG
+stretchmarks
+stretchy/TR
+strew/GSDH
+strewn
+stria/M
+striae
+striated
+striation/MS
+stricken
+strict/RYPT
+strictness/M
+stricture/SM
+stridden
+stride/MGS
+stridency/M
+strident/Y
+strife/M
+strike/MZGRSJ
+strikebound
+strikebreaker/SM
+strikebreaking
+strikeout/MS
+striker/M
+striking/Y
+string/MDRSZG
+stringency/M
+stringent/Y
+stringer/M
+stringiness/M
+stringy/PTR
+strip/GSMD
+stripe/MS
+stripey
+stripling/MS
+stripped
+stripper/MS
+stripping
+striptease/MZGDRS
+stripteaser/M
+stripy
+strive/GS
+striven
+strobe/MS
+stroboscope/MS
+stroboscopic
+strode
+stroke/MGDS
+stroll/MDRSZG
+stroller/M
+strong/RYT
+strongbox/MS
+stronghold/MS
+strongman/M
+strongmen
+strongroom/S
+strontium/M
+strop/SM
+strophe/SM
+strophic
+stropped
+stroppily
+stropping
+stroppy/TRP
+strove
+struck
+structural/Y
+structuralism
+structuralist/S
+structure's
+structure/AGDS
+structured/U
+strudel/SM
+struggle/MGDS
+strum/SM
+strummed
+strumming
+strumpet/MS
+strung/UA
+strut/SM
+strutted
+strutting
+strychnine/M
+stub/MS
+stubbed
+stubbing
+stubble/M
+stubbly
+stubborn/RYPT
+stubbornness/M
+stubby/RT
+stucco/MDG
+stuccoes
+stuck/U
+stud/MYS
+studbook/MS
+studded
+studding/M
+student/SM
+studentship/S
+studied/U
+studiedly
+studio/MS
+studious/PY
+studiousness/M
+studly/RT
+study's
+study/AGDS
+stuff/GSMDJ
+stuffily
+stuffiness/M
+stuffing/M
+stuffy/RPT
+stultification/M
+stultify/DSNG
+stumble/DRSMZG
+stumbler/M
+stump/GSMD
+stumpy/TR
+stun/S
+stung
+stunk
+stunned
+stunner/S
+stunning/Y
+stunt/GSMD
+stuntman
+stuntmen
+stupefaction/M
+stupefy/DSG
+stupendous/Y
+stupid/TMRYS
+stupidity/SM
+stupor/MS
+sturdily
+sturdiness/M
+sturdy/TRP
+sturgeon/SM
+stutter/MDRSZG
+stutterer/M
+sty/SM
+style's
+style/ADSG
+styli
+stylish/PY
+stylishness/M
+stylist/SM
+stylistic/S
+stylistically
+stylize/DSG
+stylus/MS
+stymie/MDS
+stymieing
+styptic/SM
+suasion/EM
+suave/RYTP
+suaveness/M
+suavity/M
+sub/SM
+subaltern/MS
+subaqua
+subarctic
+subarea/MS
+subatomic
+subbasement/SM
+subbed
+subbing
+subbranch/MS
+subcategory/SM
+subclass
+subcommittee/SM
+subcompact/SM
+subconscious/PMY
+subconsciousness/M
+subcontinent/SM
+subcontinental
+subcontract/MDSG
+subcontractor/MS
+subculture/MS
+subcutaneous/Y
+subdivide/GDS
+subdivision/SM
+subdomain/MS
+subdominant
+subdue/DSG
+subeditor/S
+subfamily/SM
+subfreezing
+subgroup/MS
+subhead/GJMS
+subheading/M
+subhuman/MS
+subj
+subject/GVMDS
+subjection/M
+subjective/Y
+subjectivity/M
+subjoin/GDS
+subjugate/GNDS
+subjugation/M
+subjunctive/SM
+sublease/MGDS
+sublet/SM
+subletting
+sublieutenant/S
+sublimate/GNDS
+sublimation/M
+sublime/YTGDRS
+subliminal/Y
+sublimity/M
+sublingual
+submarginal
+submarine/MZRS
+submariner/M
+submerge/GDS
+submergence/M
+submerse/GNDS
+submersible/MS
+submersion/M
+submicroscopic
+submission/MS
+submissive/PY
+submissiveness/M
+submit/AS
+submitted/A
+submitter
+submitting/A
+subnormal
+suborbital
+suborder/MS
+subordinate/DSMGN
+subordination/IM
+suborn/SGD
+subornation/M
+subpar
+subparagraph
+subpart
+subplot/MS
+subpoena/GMDS
+subprime
+subprofessional/SM
+subprogram/S
+subroutine/SM
+subscribe/UASDG
+subscriber/MS
+subscript/MS
+subscription/MS
+subsection/MS
+subsequent/Y
+subservience/M
+subservient/Y
+subset/SM
+subside/GDS
+subsidence/M
+subsidiarity
+subsidiary/SM
+subsidization/M
+subsidize/ZGDRS
+subsidizer/M
+subsidy/SM
+subsist/SDG
+subsistence/M
+subsoil/M
+subsonic
+subspace
+subspecies/M
+substance/SM
+substandard
+substantial/IY
+substantiate/GNDSX
+substantiated/U
+substantiation/FM
+substantive/SMY
+substation/MS
+substituent
+substitute/XMGNDS
+substitution/M
+substrata
+substrate/MS
+substratum/M
+substructure/SM
+subsume/DSG
+subsumption
+subsurface/M
+subsystem/SM
+subteen/SM
+subtenancy/M
+subtenant/SM
+subtend/SDG
+subterfuge/SM
+subterranean
+subtext/SM
+subtitle/DSMG
+subtle/TR
+subtlety/SM
+subtly
+subtopic/SM
+subtotal/SGMD
+subtract/GSD
+subtraction/SM
+subtrahend/SM
+subtropic/S
+subtropical
+subtropics/M
+suburb/MS
+suburban/SM
+suburbanite/SM
+suburbia/M
+subvention/SM
+subversion/M
+subversive/SPMY
+subversiveness/M
+subvert/SDG
+subway/MS
+subzero
+succeed/GDS
+success/VMS
+successful/UY
+succession/SM
+successive/Y
+successor/SM
+succinct/RYTP
+succinctness/M
+succor/SGMD
+succotash/M
+succubi
+succubus
+succulence/M
+succulency/M
+succulent/SM
+succumb/GDS
+such
+suchlike
+suck/MDRZGS
+sucker/GMD
+suckle/DSJG
+suckling/M
+sucrose/M
+suction/SMDG
+sudden/PY
+suddenness/M
+suds/M
+sudsy/TR
+sue/DSG
+suede/M
+suet/M
+suety
+suffer/DRZGSJ
+sufferance/M
+sufferer/M
+suffering/M
+suffice/DSG
+sufficiency/IM
+sufficient/IY
+suffix/MDSG
+suffixation/M
+suffocate/GNDS
+suffocation/M
+suffragan/MS
+suffrage/M
+suffragette/SM
+suffragist/MS
+suffuse/DSGN
+suffusion/M
+sugar/GSMD
+sugarcane/M
+sugarcoat/GDS
+sugarless
+sugarplum/MS
+sugary/RT
+suggest/GVSDR
+suggestibility/M
+suggestible
+suggestion/SM
+suggestive/YP
+suggestiveness/M
+suicidal
+suicide/SM
+suit/BMDGS
+suitability/UM
+suitableness/M
+suitably/U
+suitcase/SM
+suite/SM
+suited/U
+suiting/M
+suitor/MS
+sukiyaki/M
+sulfa/M
+sulfate/SM
+sulfide/SM
+sulfonamides
+sulfur/MDSG
+sulfuric
+sulfurous
+sulk/MDGS
+sulkily
+sulkiness/M
+sulky/TRSMP
+sullen/RYPT
+sullenness/M
+sullied/U
+sully/GDS
+sultan/MS
+sultana/SM
+sultanate/MS
+sultrily
+sultriness/M
+sultry/RPT
+sum/SM
+sumac/M
+summarily
+summarize/GDS
+summary/SM
+summat
+summation/FMS
+summed
+summer/MDSG
+summerhouse/SM
+summertime/M
+summery
+summing
+summit/MS
+summitry/M
+summon/DRSZG
+summoner/M
+summons/GMDS
+sumo/M
+sump/MS
+sumptuous/PY
+sumptuousness/M
+sun/SM
+sunbath/ZGMDRS
+sunbathe
+sunbather/M
+sunbathing/M
+sunbaths
+sunbeam/SM
+sunbed/S
+sunbelt/SM
+sunblock/MS
+sunbonnet/SM
+sunburn/SGMD
+sunburst/MS
+sundae/MS
+sundeck/S
+sunder/DSG
+sundial/SM
+sundown/SM
+sundress/S
+sundries/M
+sundry/S
+sunfish/MS
+sunflower/MS
+sung/U
+sunglasses/M
+sunhat/S
+sunk/N
+sunlamp/SM
+sunless
+sunlight/M
+sunlit
+sunned
+sunniness/M
+sunning
+sunny/TRP
+sunrise/SM
+sunroof/SM
+sunscreen/MS
+sunset/MS
+sunshade/MS
+sunshine/M
+sunshiny
+sunspot/SM
+sunstroke/M
+suntan/MS
+suntanned
+suntanning
+suntrap/S
+sunup/M
+sup/SZMR
+super/M
+superabundance/MS
+superabundant
+superannuate/GNDS
+superannuation/M
+superb/RYT
+supercargo/M
+supercargoes
+supercharge/ZGDRS
+supercharger/M
+supercilious/PY
+superciliousness/M
+supercity/SM
+supercomputer/MS
+superconducting
+superconductive
+superconductivity/M
+superconductor/SM
+supercritical
+superego/MS
+supererogation/M
+supererogatory
+superficial/Y
+superficiality/M
+superfine
+superfluity/M
+superfluous/YP
+superfluousness/M
+superglue
+supergrass/S
+superhero/MS
+superheroes
+superhighway/SM
+superhuman
+superimpose/GDS
+superimposition/M
+superintend/DSG
+superintendence/M
+superintendency/M
+superintendent/SM
+superior/MS
+superiority/M
+superlative/SMY
+superman/M
+supermarket/SM
+supermassive
+supermen
+supermodel/SM
+supermom/MS
+supernal
+supernatural/SY
+supernova/MS
+supernovae
+supernumerary/SM
+superpose/GDS
+superposition/M
+superpower/SM
+supersaturate/GNDS
+supersaturation/M
+superscribe/GDS
+superscript/MS
+superscription/M
+supersede/GDS
+supersize/GDS
+supersonic
+superspreader/SM
+superstar/MS
+superstardom
+superstate/S
+superstition/MS
+superstitious/Y
+superstore/MS
+superstructure/MS
+supertanker/MS
+superuser/S
+supervene/GDS
+supervention/M
+supervise/XGNDS
+supervised/U
+supervision/M
+supervisor/MS
+supervisory
+superwoman/M
+superwomen
+supine/Y
+supp/DRZG
+supper/M
+suppertime
+suppl
+supplant/SDG
+supple/TLPR
+supplement/MDGS
+supplemental
+supplementary
+supplementation/M
+suppleness/M
+suppliant/SM
+supplicant/MS
+supplicate/GDS
+supplication/M
+supplier/M
+supply/ZGDRSMXN
+support/MDRSBZGV
+supportable/UI
+supported/U
+supporter/M
+suppose/GDS
+supposed/Y
+supposition/MS
+suppository/SM
+suppress/GVDS
+suppressant/MS
+suppressible
+suppression/M
+suppressor/SM
+suppurate/DSGN
+suppuration/M
+supra
+supranational
+supremacist/MS
+supremacy/M
+supreme/Y
+supremo/S
+supt
+surcease/DSMG
+surcharge/DSMG
+surcingle/SM
+sure/PYTR
+surefire
+surefooted
+sureness/M
+surety/SM
+surf/MDRZGS
+surface's
+surface/AGDS
+surfboard/MDSG
+surfeit/MDSG
+surfer/M
+surfing/M
+surge/DSMG
+surgeon/MS
+surgery/SM
+surgical/Y
+surliness/M
+surly/PTR
+surmise/MGDS
+surmount/DGSB
+surmountable/I
+surname/MS
+surpass/GDS
+surpassed/U
+surplice/MS
+surplus/MS
+surplussed
+surplussing
+surprise/DSMGJ
+surprising/UY
+surreal
+surrealism/M
+surrealist/SM
+surrealistic
+surrealistically
+surrender/MDSG
+surreptitious/PY
+surreptitiousness/M
+surrey/MS
+surrogacy/M
+surrogate/SM
+surround/GSDJ
+surrounding/M
+surroundings/M
+surtax/MDSG
+surtitle/S
+surveillance/M
+survey's
+survey/ADGS
+surveying/M
+surveyor/SM
+survival/SM
+survivalist/SM
+survive/DSGB
+survivor/SM
+susceptibility/SM
+susceptible/I
+sushi/M
+suspect/SMDG
+suspected/U
+suspend/SDRZG
+suspender/M
+suspense/XMN
+suspenseful
+suspension/M
+suspicion/SM
+suspicious/Y
+suss/DSG
+sustain/SDBG
+sustainability
+sustainable/U
+sustainably
+sustenance/M
+sutler/MS
+suttee
+suture/MGDS
+suzerain/MS
+suzerainty/M
+svelte/TR
+swab/MS
+swabbed
+swabbing
+swaddle/DSG
+swag/MS
+swagged
+swagger/SMDRG
+swagging
+swain/SM
+swallow/GSMD
+swallowtail/MS
+swam
+swami/SM
+swamp/GSMD
+swampland/M
+swampy/RT
+swan/MS
+swank/TGSMDR
+swankily
+swankiness/M
+swanky/RPT
+swanned
+swanning
+swansong/S
+swap/MS
+swapped
+swapping
+sward/SM
+swarm/GSMD
+swarthy/TR
+swash/GMDS
+swashbuckler/SM
+swashbuckling/M
+swastika/SM
+swat/MS
+swatch/MS
+swath/GMDS
+swathe/M
+swaths
+swatted
+swatter/SMDG
+swatting
+sway/MDGS
+swayback/MD
+swayed/U
+swear/ZGSR
+swearer/M
+swearword/MS
+sweat/ZGSMDR
+sweatband/MS
+sweater/M
+sweatpants/M
+sweats/M
+sweatshirt/SM
+sweatshop/MS
+sweatsuit/S
+sweaty/RT
+swede/SM
+sweep/ZGSMRJ
+sweeper/M
+sweeping/MY
+sweepings/M
+sweepstakes/M
+sweet/XTSMNRYP
+sweetbread/SM
+sweetbrier/SM
+sweetcorn
+sweetened/U
+sweetener/MS
+sweetening/M
+sweetheart/SM
+sweetie/SM
+sweetish
+sweetmeat/MS
+sweetness/M
+swell/TGSMDRJ
+swellhead/MDS
+swelling/M
+swelter/SGMD
+swept
+sweptback
+swerve/MGDS
+swerving/U
+swift/PTSMRY
+swiftness/M
+swig/MS
+swigged
+swigging
+swill/GSMD
+swim/MS
+swimmer/SM
+swimming/MY
+swimsuit/SM
+swimwear
+swindle/DRSMZG
+swindler/M
+swine/SM
+swineherd/SM
+swing/ZGSMR
+swingeing
+swinger/M
+swinish
+swipe/DSMG
+swirl/GSMD
+swirly
+swish/TGMDRS
+switch/MDRSZGB
+switchback/MS
+switchblade/SM
+switchboard/SM
+switcher/M
+switchover
+swivel/MDGS
+swiz
+swizz
+swizzle/DSG
+swollen
+swoon/SGMD
+swoop/SGMD
+swoosh/MDSG
+sword/SM
+swordfish/MS
+swordplay/M
+swordsman/M
+swordsmanship/M
+swordsmen
+swore
+sworn
+swot/S
+swotted
+swotting
+swum
+swung
+sybarite/SM
+sybaritic
+sycamore/MS
+sycophancy/M
+sycophant/SM
+sycophantic
+syllabic
+syllabicate/GNDS
+syllabication/M
+syllabification/M
+syllabify/DSNG
+syllable/MS
+syllabub/S
+syllabus/MS
+syllogism/MS
+syllogistic
+sylph/M
+sylphic
+sylphlike
+sylphs
+sylvan
+symbioses
+symbiosis/M
+symbiotic
+symbiotically
+symbol/MS
+symbolic
+symbolical/Y
+symbolism/M
+symbolization/M
+symbolize/DSG
+symbology
+symmetric
+symmetrical/Y
+symmetry/SM
+sympathetic/U
+sympathetically/U
+sympathies/M
+sympathize/ZGDRS
+sympathizer/M
+sympathy/SM
+symphonic
+symphony/SM
+symposium/MS
+symptom/MS
+symptomatic
+symptomatically
+syn/H
+synagogal
+synagogue/SM
+synapse/MS
+synaptic
+sync/MDSG
+synchronicity
+synchronization/SM
+synchronize/GDS
+synchronous/Y
+synchrony
+syncopate/DSGN
+syncopation/M
+syncope/M
+syndicalism
+syndicalist/S
+syndicate/DSMGN
+syndication/M
+syndrome/SM
+synergism/M
+synergistic
+synergy/SM
+synfuel/MS
+synod/SM
+synonym/SM
+synonymous
+synonymy/M
+synopses
+synopsis/M
+synoptic
+synovial
+syntactic
+syntactical/Y
+syntax/M
+syntheses
+synthesis/M
+synthesize/ZGDRS
+synthesizer/M
+synthetic/SM
+synthetically
+synths
+syphilis/M
+syphilitic/SM
+syringe/DSMG
+syrup/SM
+syrupy
+sysadmin/S
+sysop/S
+system/SM
+systematic/U
+systematical/Y
+systematization/M
+systematize/GDS
+systemic/MS
+systemically
+systole/SM
+systolic
+t/SDNXGBJ
+ta
+tab/SM
+tabbed
+tabbing
+tabbouleh/M
+tabby/SM
+tabernacle/SM
+tabla/MS
+table/MGDS
+tableau/M
+tableaux
+tablecloth/M
+tablecloths
+tableland/SM
+tablespoon/SM
+tablespoonful/SM
+tablet/SM
+tabletop/MS
+tableware/M
+tabloid/SM
+taboo/MDSG
+tabor/MS
+tabular
+tabulate/DSGNX
+tabulation/M
+tabulator/SM
+tachograph
+tachographs
+tachometer/SM
+tachycardia/M
+tachyon
+tacit/PY
+tacitness/M
+taciturn/Y
+taciturnity/M
+tack/ZGMDRS
+tacker/M
+tackiness/M
+tackle/DRSMZG
+tackler/M
+tacky/RTP
+taco/MS
+tact/FM
+tactful/YP
+tactfulness/M
+tactic/SM
+tactical/Y
+tactician/MS
+tactile
+tactility/M
+tactless/PY
+tactlessness/M
+tad/SM
+tadpole/MS
+taffeta/M
+taffrail/SM
+taffy/SM
+tag/SM
+tagged
+tagger/SM
+tagging
+tagliatelle
+tagline/MS
+taiga/MS
+tail/ACSDMG
+tailback/MS
+tailboard/S
+tailbone/S
+tailcoat/MS
+tailgate/MZGDRS
+tailgater/M
+tailless
+taillight/MS
+tailor/SGMD
+tailoring/M
+tailpiece/S
+tailpipe/SM
+tailspin/SM
+tailwind/SM
+taint/MDSG
+tainted/U
+take/AIMS
+takeaway/S
+taken/A
+takeoff/MS
+takeout/MS
+takeover/SM
+taker/MS
+taking/SM
+takings/M
+talc/M
+talcum/M
+tale/MS
+talebearer/MS
+talent/SMD
+talented/U
+tali
+talisman/MS
+talk/ZGMDRS
+talkative/PY
+talkativeness/M
+talker/M
+talkie/RSMT
+talky
+tall/TRP
+tallboy/MS
+tallier/M
+tallish
+tallness/M
+tallow/M
+tallowy
+tally/DRSMZG
+tallyho/MDGS
+talon/MS
+talus/MS
+tam/SM
+tamale/SM
+tamarack/MS
+tamarind/MS
+tambourine/MS
+tame/BYZTGDRSP
+tamed/U
+tameness/M
+tamer/M
+tamoxifen
+tamp/ZGDRS
+tamper/ZGDR
+tamperer/M
+tampon/SM
+tan/SM
+tanager/MS
+tanbark/M
+tandem/SM
+tandoori/M
+tang/MS
+tangelo/MS
+tangent/MS
+tangential/Y
+tangerine/MS
+tangibility/IM
+tangible/IMS
+tangibleness/M
+tangibly/I
+tangle's
+tangle/UDSG
+tango/MDSG
+tangy/RT
+tank/ZGMDRS
+tankard/MS
+tanker/M
+tankful/MS
+tanned/U
+tanner/SM
+tannery/SM
+tannest
+tannin/M
+tanning/M
+tansy/M
+tantalization/M
+tantalize/ZGDRS
+tantalizer/M
+tantalizing/Y
+tantalum/M
+tantamount
+tantra/M
+tantrum/SM
+tap/SZGMDR
+tapas
+tape/MS
+tapeline/MS
+taper/MDG
+tapestry/SM
+tapeworm/MS
+tapioca/M
+tapir/MS
+tapped/U
+tapper/MS
+tappet/MS
+tapping
+taproom/SM
+taproot/SM
+tar/SGMD
+taramasalata
+tarantella/MS
+tarantula/SM
+tarball/S
+tardily
+tardiness/M
+tardy/TPR
+tare/MS
+target/MDGS
+tariff/MS
+tarmac/MS
+tarmacadam
+tarmacked
+tarmacking
+tarn/MS
+tarnish/GMDS
+tarnished/U
+taro/MS
+tarot/MS
+tarp/MS
+tarpaulin/MS
+tarpon/MS
+tarragon/SM
+tarred
+tarring
+tarry/TGDRS
+tarsal/MS
+tarsi
+tarsus/M
+tart/PTGMDRYS
+tartan/MS
+tartar/MS
+tartaric
+tartness/M
+tarty/T
+taser/GMDS
+task/GMDS
+taskbar
+taskmaster/MS
+taskmistress/MS
+tassel/MDSG
+taste/JMZGDRS
+tasted/U
+tasteful/EPY
+tastefulness/EM
+tasteless/PY
+tastelessness/M
+taster/M
+tastily
+tastiness/M
+tasting/M
+tasty/TRP
+tat/SZR
+tatami/MS
+tater/M
+tatted
+tatter/MDSG
+tatterdemalion/MS
+tattie
+tatting/M
+tattle/MZGDRS
+tattler/M
+tattletale/MS
+tattoo/MDRSZG
+tattooer/M
+tattooist/SM
+tatty/TRS
+tau/SM
+taught/UA
+taunt/ZGMDRS
+taunter/M
+taunting/Y
+taupe/M
+taut/PXTNRY
+tauten/DG
+tautness/M
+tautological/Y
+tautologous
+tautology/SM
+tavern/MS
+tawdrily
+tawdriness/M
+tawdry/RTP
+tawny/TRM
+tax/BZGMDRS
+taxa
+taxation/M
+taxer/M
+taxi/GMDS
+taxicab/SM
+taxidermist/SM
+taxidermy/M
+taximeter/MS
+taxiway/S
+taxman
+taxmen
+taxon
+taxonomic
+taxonomist/MS
+taxonomy/SM
+taxpayer/MS
+taxpaying
+tb/S
+tbsp
+tea/SM
+teabag/S
+teacake/SM
+teach/ZGRSBJ
+teachable/U
+teacher/M
+teaching/M
+teacup/MS
+teacupful/MS
+teak/MS
+teakettle/SM
+teal/MS
+tealight/MS
+team/GMDS
+teammate/MS
+teamster/MS
+teamwork/M
+teapot/MS
+tear/GMDS
+tearaway/S
+teardrop/SM
+tearful/Y
+teargas/MS
+teargassed
+teargassing
+tearjerker/MS
+tearoom/SM
+teary/TR
+tease/MZGDRS
+teasel/MS
+teaser/M
+teasing/Y
+teaspoon/SM
+teaspoonful/SM
+teat/MS
+teatime/S
+tech/M
+techie/S
+technetium/M
+technical/Y
+technicality/SM
+technician/SM
+technicolor
+technique/SM
+techno
+technobabble
+technocracy/SM
+technocrat/MS
+technocratic
+technological/Y
+technologist/MS
+technology/SM
+technophobe/S
+techs
+tectonic/S
+tectonics/M
+ted/S
+teddy/S
+tedious/PY
+tediousness/M
+tedium/M
+tee/DSMH
+teeing
+teem/GDS
+teen/MS
+teenage/RZ
+teenager/M
+teeny/TR
+teenybopper/MS
+teeter/MDSG
+teethe/GDS
+teething/M
+teetotal/RZ
+teetotaler/M
+teetotalism/M
+tektite/SM
+tel
+telecast/SZGMR
+telecaster/M
+telecommunication/MS
+telecommunications/M
+telecommute/ZGDRS
+telecommuter/M
+telecommuting/M
+teleconference/MGDS
+teleconferencing/M
+telegenic
+telegram/MS
+telegraph/MDRZG
+telegrapher/M
+telegraphese
+telegraphic
+telegraphically
+telegraphist/SM
+telegraphs
+telegraphy/M
+telekinesis/M
+telekinetic
+telemarketer/SM
+telemarketing/M
+telemeter/SM
+telemetry/SM
+teleological
+teleology
+telepathic
+telepathically
+telepathy/M
+telephone/DRSMZG
+telephoner/M
+telephonic
+telephonist/S
+telephony/M
+telephoto/SM
+telephotography/M
+teleplay/MS
+teleport
+teleportation
+teleprinter/MS
+teleprocessing/M
+teleprompter/SM
+telesales
+telescope/DSMG
+telescopic
+telescopically
+teletext/MS
+telethon/MS
+teletype/S
+teletypewriter/MS
+televangelism/M
+televangelist/MS
+televise/XGNDS
+television/M
+teleworker/S
+teleworking
+telex/MDSG
+tell/AGS
+teller/SM
+telling/Y
+telltale/SM
+tellurium/M
+telly/SM
+telnet
+temblor/MS
+temerity/M
+temp/MDRZTGS
+temper/MDG
+tempera/LSM
+temperament/MS
+temperamental/Y
+temperance/IM
+temperate/IY
+temperateness/M
+temperature/SM
+tempest/SM
+tempestuous/YP
+tempestuousness/M
+template's
+template/S
+temple/SM
+tempo/SM
+temporal/Y
+temporarily
+temporariness/M
+temporary/FSM
+temporize/ZGDRS
+temporizer/M
+tempt/SDRZG
+temptation/MS
+tempter/M
+tempting/Y
+temptress/MS
+tempura/M
+ten/BMH
+tenability/M
+tenable/U
+tenably
+tenacious/YP
+tenaciousness/M
+tenacity/M
+tenancy/SM
+tenant/SMDG
+tenanted/U
+tenantry/M
+tench
+tend/IEFDGS
+tended/U
+tendency/SM
+tendentious/YP
+tendentiousness/M
+tender/SMDRYTGP
+tenderfoot/MS
+tenderhearted/P
+tenderheartedness/M
+tenderize/ZGDRS
+tenderizer/M
+tenderloin/SM
+tenderness/M
+tendinitis/M
+tendon/SM
+tendril/SM
+tenement/SM
+tenet/SM
+tenfold
+tenner/S
+tennis/M
+tenon/SMDG
+tenor/SM
+tenpin/SM
+tenpins/M
+tense/DRSMYTGNXP
+tenseness/M
+tensile
+tension/ESM
+tensity/IM
+tensor/S
+tent/DGSM
+tentacle/DSM
+tentative/PY
+tentativeness/M
+tenterhook/MS
+tenth/MY
+tenths
+tenuity/M
+tenuous/PY
+tenuousness/M
+tenure/DSMG
+tepee/SM
+tepid/YP
+tepidity/M
+tepidness/M
+tequila/SM
+terabit/SM
+terabyte/MS
+terahertz/M
+terajoule/S
+terapixel/MS
+terawatt/S
+terbium/M
+tercentenary/SM
+tercentennial/SM
+teriyaki
+term/MDYGS
+termagant/MS
+terminable/IC
+terminal/MYS
+terminate/DSGNX
+termination/CSM
+terminator/S
+termini
+terminological/Y
+terminology/SM
+terminus/M
+termite/SM
+tern/IMS
+ternary/SM
+terr
+terrace/DSMG
+terracotta/M
+terrain/SM
+terrapin/MS
+terrarium/SM
+terrazzo/MS
+terrestrial/SMY
+terrible/P
+terribleness/M
+terribly
+terrier/M
+terrific
+terrifically
+terrify/GDS
+terrifying/Y
+terrine/S
+territorial/MS
+territoriality
+territory/SM
+terror/SM
+terrorism/M
+terrorist/SM
+terrorize/DSG
+terry/RMZ
+terrycloth/M
+terse/RYTP
+terseness/M
+tertiary
+tessellate/DSXGN
+tessellation/M
+test's/AFK
+test/AKFCDGS
+testable/CF
+testament/MS
+testamentary
+testate/S
+testator/MS
+testatrices
+testatrix/M
+tested/U
+tester/KSM
+testes
+testicle/MS
+testicular
+testifier/M
+testify/ZGDRS
+testily
+testimonial/MS
+testimony/SM
+testiness/M
+testings
+testis/M
+testosterone/M
+testy/PRT
+tetanus/M
+tetchily
+tetchy/PRT
+tether/SMDG
+tetra/SM
+tetracycline/M
+tetrahedral
+tetrahedron/MS
+tetrameter/SM
+text/FMS
+textbook/SM
+texted
+textile/MS
+texting
+textual/FY
+textural
+texture/MGDS
+thalami
+thalamus/M
+thalidomide/M
+thallium/M
+than
+thane/SM
+thank/SDG
+thankful/YP
+thankfulness/M
+thankless/PY
+thanklessness/M
+thanksgiving/SM
+that'd
+that'll
+that/M
+thatch/MDRSZG
+thatcher/M
+thatching/M
+thaw/MDGS
+the/JG
+theater/SM
+theatergoer/SM
+theatrical/YS
+theatricality/M
+theatricals/M
+theatrics/M
+thee/S
+theft/SM
+their/S
+theism/M
+theist/SM
+theistic
+them
+thematic
+thematically
+theme/DSM
+themselves
+then/M
+thence
+thenceforth
+thenceforward
+theocracy/SM
+theocratic
+theodolite/S
+theologian/SM
+theological/Y
+theology/SM
+theorem/MS
+theoretic
+theoretical/Y
+theoretician/SM
+theorist/SM
+theorize/DSG
+theory/SM
+theosophic
+theosophical
+theosophist/SM
+theosophy/M
+therapeutic/S
+therapeutically
+therapeutics/M
+therapist/SM
+therapy/SM
+there/M
+thereabout/S
+thereafter
+thereat
+thereby
+therefor
+therefore
+therefrom
+therein
+theremin/SM
+thereof
+thereon
+thereto
+theretofore
+thereunder
+thereunto
+thereupon
+therewith
+therm/SM
+thermal/MYS
+thermionic
+thermodynamic/S
+thermodynamics/M
+thermometer/MS
+thermometric
+thermonuclear
+thermoplastic/SM
+thermos/MS
+thermostat/MS
+thermostatic
+thermostatically
+thesauri
+thesaurus/MS
+these/S
+thesis/M
+thespian/SM
+theta/SM
+thew/MS
+they
+they'd
+they'll
+they're
+they've
+thiamine/M
+thick/PMNRYXT
+thicken/DRJZG
+thickener/M
+thickening/M
+thicket/MS
+thickheaded/M
+thickness/MS
+thicko/S
+thickset
+thief/M
+thieve/DSG
+thievery/M
+thieving/M
+thievish
+thigh/M
+thighbone/MS
+thighs
+thimble/MS
+thimbleful/SM
+thin/YSP
+thine
+thing/M
+thingamabob/SM
+thingamajig/SM
+thingumabob/S
+thingummy/S
+thingy/S
+think/SRBZG
+thinkable/U
+thinker/M
+thinking's
+thinned
+thinner/MS
+thinness/M
+thinnest
+thinning
+third/SMY
+thirst/SGMD
+thirstily
+thirstiness/M
+thirsty/TPR
+thirteen/SMH
+thirteenth/M
+thirteenths
+thirtieth/M
+thirtieths
+thirty/HSM
+this
+thistle/MS
+thistledown/M
+thither
+tho
+thole/SM
+thong/SM
+thoracic
+thorax/MS
+thorium/M
+thorn/SM
+thorniness/M
+thorny/PRT
+thorough/RYPT
+thoroughbred/MS
+thoroughfare/MS
+thoroughgoing
+thoroughness/M
+those
+thou/MS
+though
+thought/SM
+thoughtful/YP
+thoughtfulness/M
+thoughtless/PY
+thoughtlessness/M
+thousand/MHS
+thousandfold
+thousandth/M
+thousandths
+thrall/SMDG
+thralldom/M
+thrash/JMDRSZG
+thrasher/M
+thrashing/M
+thread/SMDRZG
+threadbare
+threader/M
+threadlike
+thready/TR
+threat/SMNX
+threaten/DG
+threatening/Y
+three/SM
+threefold
+threepence/M
+threescore/MS
+threesome/SM
+threnody/SM
+thresh/MDRSZG
+thresher/M
+threshold/SM
+threw
+thrice
+thrift/SM
+thriftily
+thriftiness/M
+thriftless
+thrifty/PTR
+thrill/SMDRZG
+thriller/M
+thrilling/Y
+thrive/DSG
+throat/SM
+throatily
+throatiness/M
+throaty/RTP
+throb/SM
+throbbed
+throbbing
+throe/SM
+thrombi
+thrombolytic
+thromboses
+thrombosis/M
+thrombotic
+thrombus/M
+throne's
+throne/S
+throng/GSMD
+throttle/DRSMZG
+throttler/M
+through
+throughout
+throughput/M
+throw/SMRZG
+throwaway/SM
+throwback/SM
+thrower/M
+thrown
+thru
+thrum/SM
+thrummed
+thrumming
+thrush/MS
+thrust/GSM
+thruway/MS
+thud/MS
+thudded
+thudding
+thug/MS
+thuggery/M
+thuggish
+thulium/M
+thumb/SMDG
+thumbnail/SM
+thumbprint/SM
+thumbscrew/SM
+thumbtack/SM
+thump/SMDG
+thumping/M
+thunder/ZGMDRS
+thunderbolt/SM
+thunderclap/SM
+thundercloud/MS
+thunderer/M
+thunderhead/SM
+thunderous/Y
+thundershower/SM
+thunderstorm/SM
+thunderstruck
+thundery
+thunk/S
+thus
+thwack/ZGSMDR
+thwacker/M
+thwart/GSMD
+thy
+thyme/M
+thymine/M
+thymus/MS
+thyroid/MS
+thyroidal
+thyself
+ti/MRZ
+tiara/SM
+tibia/M
+tibiae
+tibial
+tic/SM
+tick/MDRZGS
+ticker/M
+ticket/GSMD
+ticking/M
+tickle/DRSMZG
+tickler/M
+ticklish/YP
+ticklishness/M
+ticktacktoe/M
+ticktock/MS
+tidal/Y
+tidbit/SM
+tiddler/S
+tiddly
+tiddlywink/S
+tiddlywinks/M
+tide/MGJDS
+tideland/SM
+tidemark/S
+tidewater/MS
+tideway/MS
+tidily/U
+tidiness/UM
+tidings/M
+tidy/DRSMTGP
+tie's
+tie/AUSD
+tieback/MS
+tiebreak/RSZ
+tiebreaker/M
+tiepin/S
+tier/MD
+tiff/MDGS
+tiger/SM
+tigerish
+tight/SNRYPXT
+tighten/ZGDR
+tightener/M
+tightfisted
+tightness/M
+tightrope/MS
+tights/M
+tightwad/MS
+tigress/MS
+til
+tilapia
+tilde/SM
+tile/MZGDRS
+tiler/M
+tiling/M
+till's
+till/EDRZGS
+tillable
+tillage/M
+tiller/EM
+tilt/MDGS
+timber/SMDG
+timberland/M
+timberline/MS
+timbre/SM
+timbrel/SM
+time/MYZGJDRS
+timekeeper/MS
+timekeeping/M
+timeless/PY
+timelessness/M
+timeline/MS
+timeliness/UM
+timely/UPRT
+timeout/SM
+timepiece/MS
+timer/M
+timescale/S
+timeserver/SM
+timeserving/M
+timeshare/S
+timestamp/SMD
+timetable/DSMG
+timeworn
+timezone
+timid/RYTP
+timidity/M
+timidness/M
+timing/M
+timorous/PY
+timorousness/M
+timothy/M
+timpani/M
+timpanist/SM
+tin/SM
+tincture/MGDS
+tinder/M
+tinderbox/MS
+tine/MS
+tinfoil/M
+ting/MDYG
+tinge/SM
+tingeing
+tingle/DSMGJ
+tingling/M
+tininess/M
+tinker/ZGSMDR
+tinkerer/M
+tinkle/DSMG
+tinned
+tinniness/M
+tinning
+tinnitus/M
+tinny/PRT
+tinplate/M
+tinpot
+tinsel/GSMD
+tinsmith/M
+tinsmiths
+tint/MDGS
+tintinnabulation/MS
+tintype/MS
+tinware/M
+tiny/RTP
+tip/SM
+tipped
+tipper/SM
+tippet/SM
+tippex/GDS
+tipping
+tipple/DRSMZG
+tippler/M
+tipsily
+tipsiness/M
+tipster/MS
+tipsy/RPT
+tiptoe/DSM
+tiptoeing
+tiptop/SM
+tirade/SM
+tiramisu/MS
+tire's
+tire/AGDS
+tired/PRYT
+tiredness/M
+tireless/YP
+tirelessness/M
+tiresome/PY
+tiresomeness/M
+tissue/SM
+tit/SM
+titan/SM
+titanic
+titanium/M
+titch/S
+titchy
+tithe/DRSMZG
+tither/M
+titian/M
+titillate/DSGN
+titillating/Y
+titillation/M
+titivate/DSGN
+titivation/M
+title/DSMG
+titled/U
+titleholder/MS
+titlist/MS
+titmice
+titmouse/M
+titter/SGMD
+tittle/SM
+titty/S
+titular
+tizz
+tizzy/SM
+tn
+tnpk
+to/IU
+toad/MS
+toadstool/MS
+toady/DSMG
+toadyism/M
+toast/SMDRZG
+toaster/M
+toastmaster/SM
+toastmistress/MS
+toasty/TRS
+tobacco/MS
+tobacconist/SM
+toboggan/ZGSMDR
+tobogganer/M
+tobogganing/M
+toccata/S
+tocopherol
+tocsin/SM
+today/M
+toddle/DRSMZG
+toddler/M
+toddy/SM
+toe/DSM
+toecap/SM
+toehold/MS
+toeing
+toenail/MS
+toerag/S
+toff/S
+toffee/SM
+tofu/M
+tog/SM
+toga/MDS
+together/P
+togetherness/M
+togged
+togging
+toggle/DSMG
+togs/M
+toil/MDRZGS
+toiler/M
+toilet/MDGS
+toiletry/SM
+toilette/M
+toilsome
+toke/MGDS
+token/SM
+tokenism/M
+told/AU
+tole/M
+tolerable/I
+tolerably/I
+tolerance/IM
+tolerances
+tolerant/IY
+tolerate/GNDS
+toleration/M
+toll/MDGS
+tollbooth/M
+tollbooths
+tollgate/SM
+tollway/SM
+toluene/M
+tom/SM
+tomahawk/SGMD
+tomato/M
+tomatoes
+tomb/MDGS
+tombola/S
+tomboy/MS
+tomboyish
+tombstone/MS
+tomcat/MS
+tome/MS
+tomfoolery/SM
+tomographic
+tomography/M
+tomorrow/MS
+tomtit/MS
+ton/SM
+tonal/Y
+tonality/SM
+tone's
+tone/IZGDRS
+tonearm/SM
+toneless/Y
+toner/IM
+tong/MDGS
+tongue/MGDS
+tongueless
+tonic/SM
+tonight/M
+tonnage/SM
+tonne/SM
+tonsil/MS
+tonsillectomy/SM
+tonsillitis/M
+tonsorial
+tonsure/DSMG
+tony/RT
+too
+took/A
+tool's
+tool/ADGS
+toolbar/SM
+toolbox/MS
+toolkit
+toolmaker/MS
+toot/MDRZGS
+tooter/M
+tooth/MD
+toothache/MS
+toothbrush/MS
+toothily
+toothless
+toothpaste/SM
+toothpick/SM
+toothsome
+toothy/RT
+tootle/GDS
+tootsie/S
+top/SM
+topaz/MS
+topcoat/SM
+topdressing/SM
+topee/S
+topflight
+topi
+topiary/M
+topic/SM
+topical/Y
+topicality/M
+topknot/SM
+topless
+topmast/SM
+topmost
+topnotch
+topographer/SM
+topographic
+topographical/Y
+topography/SM
+topological/Y
+topology
+topped
+topper/MS
+topping/SM
+topple/GDS
+topsail/SM
+topside/SM
+topsoil/M
+topspin/M
+toque/SM
+tor/SM
+torch/GMDS
+torchbearer/MS
+torchlight/M
+tore
+toreador/MS
+torment/SMDG
+tormenting/Y
+tormentor/MS
+torn
+tornado/M
+tornadoes
+torpedo/GMD
+torpedoes
+torpid/Y
+torpidity/M
+torpor/M
+torque/MGDS
+torrent/SM
+torrential
+torrid/YP
+torridity/M
+torridness/M
+torsion/M
+torsional
+torso/SM
+tort's
+tort/FEAS
+torte/SM
+tortellini/M
+tortilla/MS
+tortoise/MS
+tortoiseshell/SM
+tortoni/M
+tortuous/PY
+tortuousness/M
+torture/DRSMZG
+torturer/M
+torturous
+torus
+tosh
+toss/MDRSZG
+tossup/MS
+tot/SGMD
+total/GSMDY
+totalitarian/SM
+totalitarianism/M
+totality/SM
+totalizator/SM
+tote/MS
+totem/SM
+totemic
+totted
+totter/ZGMDRS
+totterer/M
+totting
+toucan/MS
+touch/AGMDS
+touchdown/SM
+touche/BJ
+touched/U
+touchily
+touchiness/M
+touching/Y
+touchline/S
+touchpaper/S
+touchscreen/MS
+touchstone/MS
+touchy/RPT
+tough/XTGMDNRYP
+toughen/ZGDR
+toughener/M
+toughie/SM
+toughness/M
+toughs
+toupee/MS
+tour/CFSGDM
+tourism/M
+tourist/MS
+touristic
+touristy
+tourmaline/M
+tournament/SM
+tourney/MS
+tourniquet/MS
+tousle/GDS
+tout/MDGS
+tow/SZGMDR
+toward/S
+towboat/MS
+towel/JGSMD
+towelette/SM
+toweling/M
+tower/GMD
+towhead/MDS
+towhee/MS
+towline/MS
+town/MS
+townee/S
+townhouse/MS
+townie/MS
+townsfolk/M
+township/MS
+townsman/M
+townsmen
+townspeople/M
+townswoman/M
+townswomen
+towpath/M
+towpaths
+towrope/SM
+toxemia/M
+toxic
+toxicity/SM
+toxicological
+toxicologist/SM
+toxicology/M
+toxin/SM
+toy/SGMD
+toyboy/S
+tr
+trabecula
+trabecular
+trabecule
+trace/JDRSMZG
+traceability
+traceable/U
+tracer/M
+tracery/SM
+trachea/M
+tracheae
+tracheal
+tracheotomy/SM
+tracing/M
+track/ZGSMDR
+trackball/SM
+tracker/M
+trackless
+tracksuit/S
+tract's
+tract/CEKFAS
+tractability/IM
+tractable/I
+tractably/I
+traction/EFACKM
+tractor/FCKMS
+trad
+trade/JDRSMZG
+trademark/SGMD
+trader/M
+tradesman/M
+tradesmen
+tradespeople/M
+tradeswoman/M
+tradeswomen
+trading/M
+tradition/MS
+traditional/Y
+traditionalism/M
+traditionalist/SM
+traduce/DRSZG
+traducer/M
+traffic/SM
+trafficked
+trafficker/SM
+trafficking/M
+tragedian/SM
+tragedienne/MS
+tragedy/SM
+tragic
+tragically
+tragicomedy/SM
+tragicomic
+trail/ZGSMDR
+trailblazer/MS
+trailblazing/M
+trailer/M
+train/ZGSMDRB
+trained/U
+trainee/SM
+trainer/M
+training/M
+trainload/MS
+trainman/M
+trainmen
+trainspotter/S
+trainspotting
+traipse/DSMG
+trait/SM
+traitor/SM
+traitorous/Y
+trajectory/SM
+tram/MS
+tramcar/S
+tramlines
+trammed
+trammel/SGMD
+trammeled/U
+tramming
+tramp/ZGSMDR
+tramper/M
+trample/DRSMZG
+trampler/M
+trampoline/MGDS
+tramway/S
+trance/MS
+tranche/S
+tranquil/RYT
+tranquility/M
+tranquilize/ZGDRS
+tranquilizer/M
+trans/I
+transact/DGS
+transaction/SM
+transactional
+transactor/MS
+transatlantic
+transceiver/SM
+transcend/GSD
+transcendence/M
+transcendent
+transcendental/Y
+transcendentalism/M
+transcendentalist/SM
+transcontinental
+transcribe/ZGDRS
+transcriber/M
+transcript/MS
+transcription/SM
+transducer/MS
+transduction
+transect/DSG
+transept/MS
+transfer/MBS
+transferal/MS
+transference/M
+transferred
+transferring
+transfiguration/M
+transfigure/GDS
+transfinite
+transfix/DSG
+transform/BSZGMDR
+transformation/SM
+transformational
+transformer/M
+transfuse/DSXGN
+transfusion/M
+transgender/S
+transgenic
+transgress/GDS
+transgression/SM
+transgressor/SM
+transience/M
+transiency/M
+transient/SMY
+transistor/SM
+transistorize/DSG
+transit/SGMD
+transition/GSMD
+transitional/Y
+transitive/ISMY
+transitiveness/M
+transitivity/M
+transitory
+transl
+translatable/U
+translate/DSGNBX
+translated/U
+translation/M
+translator/SM
+transliterate/DSGNX
+transliteration/M
+translocation
+translucence/M
+translucency/M
+translucent/Y
+transmigrate/GNDS
+transmigration/M
+transmissible
+transmission/MS
+transmit/S
+transmittable
+transmittal/M
+transmittance/M
+transmitted
+transmitter/SM
+transmitting
+transmogrification/M
+transmogrify/DSNG
+transmutation/SM
+transmute/BDSG
+transnational/MS
+transoceanic
+transom/SM
+transpacific
+transparency/SM
+transparent/Y
+transphobia/M
+transphobic
+transpiration/M
+transpire/DSG
+transplant/MDGS
+transplantation/M
+transpolar
+transponder/SM
+transport/BSZGMDR
+transportation/M
+transporter/M
+transpose/DSG
+transposition/MS
+transsexual/SM
+transsexualism/M
+transship/SL
+transshipment/M
+transshipped
+transshipping
+transubstantiation/M
+transversal
+transverse/MYS
+transvestism/M
+transvestite/MS
+trap/MS
+trapdoor/MS
+trapeze/SM
+trapezium/SM
+trapezoid/SM
+trapezoidal
+trappable
+trapped
+trapper/SM
+trapping/S
+trappings/M
+trapshooting/M
+trash/GMDS
+trashcan/MS
+trashiness/M
+trashy/RPT
+trauma/MS
+traumatic
+traumatically
+traumatize/GDS
+travail/SGMD
+travel/MDRSZGJ
+traveled/U
+traveler/M
+traveling/M
+travelogue/MS
+traversal/SM
+traverse/DSMG
+travesty/GDSM
+trawl/ZGSMDR
+trawler/M
+tray/MS
+treacherous/PY
+treacherousness/M
+treachery/SM
+treacle/M
+treacly
+tread/AGSM
+treadle/DSMG
+treadmill/MS
+treas
+treason/BM
+treasonous
+treasure/DRSMZG
+treasurer/M
+treasury/SM
+treat/AGSMD
+treatable
+treated/U
+treatise/SM
+treatment/MS
+treaty/SM
+treble/MGDS
+tree/MDS
+treeing
+treeless
+treelike
+treeline
+treetop/SM
+trefoil/SM
+trek/MS
+trekked
+trekker/SM
+trekking
+trellis/GMDS
+trematode/MS
+tremble/DSMG
+tremendous/Y
+tremolo/SM
+tremor/MS
+tremulous/PY
+tremulousness/M
+trench's
+trench/ADSG
+trenchancy/M
+trenchant/Y
+trencher/MS
+trencherman/M
+trenchermen
+trend/GSMD
+trendily
+trendiness/M
+trendsetter/S
+trendsetting
+trendy/RSMPT
+trepidation/M
+trespass/MDRSZG
+trespasser/M
+tress/EMS
+trestle/MS
+trews
+trey/MS
+triad/SM
+triage/MD
+trial/ASM
+trialed
+trialing
+triangle/SM
+triangular/Y
+triangulate/GNDS
+triangulation/M
+triathlete/S
+triathlon/SM
+tribal
+tribalism/M
+tribe/SM
+tribesman/M
+tribesmen
+tribeswoman/M
+tribeswomen
+tribulation/SM
+tribunal/SM
+tribune/MS
+tributary/SM
+tribute's
+tribute/FS
+trice/M
+tricentennial/MS
+triceps/MS
+triceratops/M
+trichina/M
+trichinae
+trichinosis/M
+trick/GSMD
+trickery/M
+trickily
+trickiness/M
+trickle/MGDS
+trickster/SM
+tricky/TRP
+tricolor/SM
+tricycle/SM
+trident/MS
+tried/U
+triennial/MYS
+trier/SM
+trifecta/SM
+trifle/MZGDRS
+trifler/M
+trifocals/M
+trig/M
+trigger/MDSG
+triglyceride/MS
+trigonometric
+trigonometrical
+trigonometry/M
+trike/SM
+trilateral/S
+trilby/SM
+trill/GSMD
+trillion/SMH
+trillionth/M
+trillionths
+trillium/M
+trilobite/SM
+trilogy/SM
+trim/PMYS
+trimaran/MS
+trimester/SM
+trimmed/U
+trimmer/SM
+trimmest
+trimming/SM
+trimmings/M
+trimness/M
+trimonthly
+trinitrotoluene/M
+trinity/SM
+trinket/SM
+trio/MS
+trip/MYS
+tripartite
+tripe/M
+triple/MGDS
+triplet/SM
+triplex/MS
+triplicate/MGDS
+tripod/MS
+tripodal
+tripos
+tripped
+tripper/SM
+tripping
+triptych/M
+triptychs
+tripwire/S
+trireme/SM
+trisect/SDG
+trisection/M
+trite/FPYT
+triteness/FM
+triter
+tritium/M
+triumph/GMD
+triumphal
+triumphalism
+triumphalist
+triumphant/Y
+triumphs
+triumvir/MS
+triumvirate/SM
+trivalent
+trivet/MS
+trivia/M
+trivial/Y
+triviality/SM
+trivialization/M
+trivialize/GDS
+trivium/M
+trochaic
+trochee/SM
+trod/AU
+trodden/A
+troglodyte/SM
+troika/MS
+troll/SGMD
+trolley/SM
+trolleybus/MS
+trollop/SM
+trombone/MS
+trombonist/MS
+tromp/SGD
+tron/S
+troop/SZGMDR
+trooper/M
+troopship/MS
+trope/SM
+trophy/SM
+tropic/MS
+tropical/Y
+tropics/M
+tropism/SM
+troposphere/SM
+trot/MS
+troth/M
+trotted
+trotter/SM
+trotting
+troubadour/MS
+trouble/DSMG
+troubled/U
+troublemaker/MS
+troubleshoot/DRZGS
+troubleshooter/M
+troubleshooting/M
+troubleshot
+troublesome/Y
+trough/M
+troughs
+trounce/DRSZG
+trouncer/M
+troupe/MZGDRS
+trouper/M
+trouser/SM
+trousers/M
+trousseau/M
+trousseaux
+trout/SM
+trove/SM
+trow/DSG
+trowel/MDSG
+troy/S
+truancy/M
+truant/GMDS
+truce/SM
+truck/SZGMDR
+trucker/M
+trucking/M
+truckle/MGDS
+truckload/SM
+truculence/M
+truculent/Y
+trudge/MGDS
+true/MTGDRS
+truelove/SM
+truffle/MS
+trug/S
+truism/MS
+truly/U
+trump/SGMD
+trumpery/M
+trumpet/ZGMDRS
+trumpeter/M
+truncate/GNDS
+truncation/M
+truncheon/SM
+trundle/MZGDRS
+trundler/M
+trunk/SGM
+truss/GMDS
+trust/ESGMD
+trustee/MS
+trusteeship/SM
+trustful/EY
+trustfulness/M
+trusting/Y
+trustworthiness/M
+trustworthy/TPR
+trusty/TRSM
+truth/ZMR
+truther/M
+truthful/UYP
+truthfulness/UM
+truthiness
+truths/U
+try's
+try/AGDS
+trying/Y
+tryout/SM
+tryptophan
+tryst/SMDG
+tsarists
+tsetse/MS
+tsp
+tsunami/SM
+ttys
+tub/SZGMDR
+tuba/MS
+tubal
+tubby/TR
+tube/MS
+tubeless/M
+tuber/M
+tubercle/SM
+tubercular
+tuberculin/M
+tuberculosis/M
+tuberculous
+tuberose/M
+tuberous
+tubful/MS
+tubing/M
+tubular
+tubule/MS
+tuck/MDRSZG
+tucker/MDG
+tuft/MDRSZG
+tufter/M
+tug/SM
+tugboat/MS
+tugged
+tugging
+tuition/IM
+tularemia/M
+tulip/SM
+tulle/M
+tum/S
+tumble/DRSMZG
+tumbledown
+tumbler/M
+tumbleweed/SM
+tumbling/M
+tumbrel/SM
+tumescence/M
+tumescent
+tumid
+tumidity/M
+tummy/SM
+tumor/SM
+tumorous
+tumult/SM
+tumultuous/Y
+tun/SZGMDR
+tuna/MS
+tundra/SM
+tune/MS
+tuneful/YP
+tunefulness/M
+tuneless/Y
+tuner/M
+tuneup/SM
+tungsten/M
+tunic/SM
+tunnel/JSMDRZG
+tunneler/M
+tunny/SM
+tuple/S
+tuppence
+tuppenny
+tuque/SM
+turban/SMD
+turbid
+turbidity/M
+turbine/SM
+turbo/SM
+turbocharge/ZGDRS
+turbocharger/M
+turbofan/SM
+turbojet/SM
+turboprop/SM
+turbot/SM
+turbulence/M
+turbulent/Y
+turd/MS
+turducken/SM
+tureen/SM
+turf/MDSG
+turfy
+turgid/Y
+turgidity/M
+turkey/SM
+turmeric/SM
+turmoil/MS
+turn/AMDRSZG
+turnabout/SM
+turnaround/SM
+turnbuckle/SM
+turncoat/SM
+turner/AM
+turning/MS
+turnip/SM
+turnkey/MS
+turnoff/MS
+turnout/MS
+turnover/MS
+turnpike/MS
+turnstile/SM
+turntable/SM
+turpentine/M
+turpitude/M
+turps
+turquoise/SM
+turret/SMD
+turtle/SM
+turtledove/SM
+turtleneck/SMD
+tush/MS
+tusk/MDS
+tussle/DSMG
+tussock/MS
+tussocky
+tut/SM
+tutelage/M
+tutelary
+tutor/SMDG
+tutored/U
+tutorial/SM
+tutorship/M
+tutted
+tutti/SM
+tutting
+tutu/MS
+tux/MS
+tuxedo/SM
+twaddle/MZGDRS
+twaddler/M
+twain/M
+twang/SMDG
+twangy/RT
+twas
+twat/S
+tweak/SMDG
+twee
+tweed/SM
+tweeds/M
+tweedy/RT
+tween
+tweet's
+tweet/ASDG
+tweeter/SM
+tweezers/M
+twelfth/M
+twelfths
+twelve/SM
+twelvemonth/M
+twelvemonths
+twentieth/M
+twentieths
+twenty/SMH
+twerk/SDG
+twerp/SM
+twice
+twiddle/MGDS
+twiddly
+twig/MS
+twigged
+twigging
+twiggy/TR
+twilight/M
+twilit
+twill/MD
+twin/MDRSZG
+twine/SM
+twiner/M
+twinge/DSMG
+twink/SY
+twinkle/MGJDS
+twinkling/M
+twinned
+twinning
+twinset/S
+twirl/SMDRZG
+twirler/M
+twirly
+twist's
+twist/USDG
+twister/MS
+twisty/TR
+twit/MS
+twitch/GMDS
+twitchy/RT
+twitted
+twitter/MDSG
+twittery
+twitting
+twixt
+two/SM
+twofer/SM
+twofold
+twopence/SM
+twopenny
+twosome/SM
+twp
+tycoon/SM
+tying/AU
+tyke/MS
+tympani/M
+tympanic
+tympanist/MS
+tympanum/SM
+type's
+type/AGDS
+typecast/GS
+typeface/MS
+typescript/MS
+typeset/S
+typesetter/MS
+typesetting/M
+typewrite/RSZG
+typewriter/M
+typewriting/M
+typewritten
+typewrote
+typhoid/M
+typhoon/MS
+typhus/M
+typical/UY
+typicality/M
+typification/M
+typify/NGDS
+typing/M
+typist/SM
+typo/MS
+typographer/SM
+typographic
+typographical/Y
+typography/M
+typology/SM
+tyrannic
+tyrannical/Y
+tyrannicidal
+tyrannicide/S
+tyrannize/GDS
+tyrannosaur/MS
+tyrannosaurus/MS
+tyrannous
+tyranny/SM
+tyrant/SM
+tyro/MS
+tzatziki
+u/S
+ubiquitous/Y
+ubiquity/M
+udder/SM
+ufologist/SM
+ufology/M
+ugh
+ugliness/M
+ugly/RTP
+uh
+uhf
+ukase/SM
+ukulele/SM
+ulcer/SM
+ulcerate/XDSGN
+ulceration/M
+ulcerous
+ulna/M
+ulnae
+ulnar
+ulster/MS
+ult
+ulterior
+ultimate/MY
+ultimatum/MS
+ultimo
+ultra/SM
+ultraconservative/SM
+ultrahigh
+ultralight/SM
+ultramarine/M
+ultramodern
+ultrasensitive
+ultrashort
+ultrasonic
+ultrasonically
+ultrasound/MS
+ultraviolet/M
+ululate/DSGNX
+ululation/M
+um
+umbel/SM
+umber/M
+umbilical
+umbilici
+umbilicus/M
+umbra/SM
+umbrage/M
+umbrella/SM
+umiak/SM
+umlaut/MS
+ump/SGMD
+umpire/MGDS
+umpteen/H
+unabridged/MS
+unacceptability
+unacceptable
+unaccommodating
+unaccountably
+unadventurous
+unaesthetic
+unalterably
+unambitious
+unanimity/M
+unanimous/Y
+unapparent
+unappetizing
+unappreciative
+unary
+unassertive
+unassimilable
+unassuming/Y
+unavailing/Y
+unaware/S
+unbeknownst
+unbend/SG
+unbent
+unbid
+unblinking/Y
+unblushing/Y
+unbosom/DG
+unbound/D
+unbox/GDS
+unbreakable
+unbroken
+uncanny/T
+uncap/S
+uncaring
+uncatalogued
+unceasing/Y
+unchangeable
+uncharacteristic
+uncharitable
+unchaste/RT
+uncial/M
+uncle/SM
+unclean/DRPT
+uncleanly/T
+unclear/DRT
+uncomfortable
+uncommon/T
+uncompelling
+uncomplaining/Y
+uncomplicated
+uncomprehending/Y
+uncompromising/Y
+unconditional/Y
+uncongenial
+unconscionable
+unconscionably
+unconscious/M
+unconstitutional/Y
+uncontrollably
+uncontroversial
+uncool
+uncooperative
+uncouth/Y
+uncrushable
+unction/SM
+unctuous/YP
+unctuousness/M
+uncut
+undaunted/Y
+undecided/SM
+undemonstrative/Y
+undeniably
+under
+underachieve/LZGDRS
+underachiever/M
+underact/SDG
+underage
+underappreciated
+underarm/SM
+underbelly/SM
+underbid/S
+underbidding
+underbrush/M
+undercarriage/MS
+undercharge/MGDS
+underclass/MS
+underclassman/M
+underclassmen
+underclothes/M
+underclothing/M
+undercoat/GJSMD
+undercoating/M
+undercover
+undercurrent/SM
+undercut/SM
+undercutting
+underdeveloped
+underdevelopment/M
+underdog/SM
+underdone
+underemployed
+underemployment/M
+underestimate/DSMGNX
+underestimation/M
+underexpose/GDS
+underexposure/MS
+underfed
+underfeed/GS
+underfloor
+underflow
+underfoot
+underfunded
+underfur/M
+undergarment/SM
+undergo/G
+undergoes
+undergone
+undergrad/S
+undergraduate/SM
+underground/MS
+undergrowth/M
+underhand
+underhanded/PY
+underhandedness/M
+underinflated
+underlain
+underlay/SM
+underlie/S
+underline/MGDS
+underling/MS
+underlip/SM
+underlying
+undermanned
+undermentioned
+undermine/GDS
+undermost
+underneath/M
+underneaths
+undernourished
+undernourishment/M
+underpaid
+underpants/M
+underpart/MS
+underpass/MS
+underpay/GSL
+underpayment/SM
+underpin/S
+underpinned
+underpinning/MS
+underplay/DGS
+underpopulated
+underprivileged
+underproduction/M
+underrate/GDS
+underrepresented
+underscore/DSMG
+undersea/S
+undersecretary/SM
+undersell/GS
+undersexed
+undershirt/SM
+undershoot/SG
+undershorts/M
+undershot
+underside/MS
+undersign/DGS
+undersigned/M
+undersized
+underskirt/SM
+undersold
+understaffed
+understand/SGBJ
+understandably
+understanding/MY
+understate/DSLG
+understatement/SM
+understood
+understudy/GDSM
+undertake/ZGJRS
+undertaken
+undertaker/M
+undertaking/M
+underthings/M
+undertone/MS
+undertook
+undertow/SM
+underused
+underutilized
+undervaluation/M
+undervalue/DSG
+underwater
+underway
+underwear/M
+underweight/M
+underwent
+underwhelm/DGS
+underwire/DS
+underworld/MS
+underwrite/ZGRS
+underwriter/M
+underwritten
+underwrote
+undesirable/MS
+undies/M
+undo
+undoubted/Y
+undramatic
+undue
+undulant
+undulate/DSXGN
+undulation/M
+undying
+unearthliness/M
+unease/M
+uneasy/T
+uneatable
+uneconomic
+unemployed/M
+unending
+unenterprising
+unequal/DY
+unerring/Y
+unessential
+uneven/Y
+unexceptionably
+unexcited
+unexciting
+unexpected/YP
+unexpectedness/M
+unfailing/Y
+unfair/PTRY
+unfaltering
+unfamiliar
+unfathomably
+unfed
+unfeeling/Y
+unfeminine
+unfit/S
+unfitting
+unfix/GDS
+unflagging/Y
+unflappability/M
+unflappable
+unflappably
+unflattering
+unflinching/Y
+unforgettably
+unforgivably
+unfortunate/MS
+unfriendly/T
+unfrock/DG
+unfruitful
+unfunny
+ungainliness/M
+ungainly/RPT
+ungenerous
+ungentle
+ungodly/T
+ungraceful/Y
+ungrudging
+unguarded
+unguent/SM
+ungulate/MS
+unhandy/T
+unhappy/T
+unhealthful
+unhealthy/T
+unhistorical
+unholy/T
+unhurt
+unicameral
+unicellular
+unicorn/SM
+unicycle/SM
+unidirectional
+unification/AM
+uniform/SMDYG
+uniformity/M
+unify/AGDSN
+unilateral/Y
+unilateralism
+unimportant
+unimpressive
+uninformative
+uninhibited/Y
+uninsured
+unintelligent
+unintended
+uninteresting
+uninterrupted/Y
+uninterruptible
+uninviting
+union/ASM
+unionism/M
+unionist/MS
+unique/YTRP
+uniqueness/M
+unisex/M
+unison/M
+unitary
+unite/AEGSD
+unitedly
+unities
+unitize/DSG
+unity/EM
+univalent
+univalve/SM
+universal/MYS
+universalism
+universalist
+universality/M
+universalize/DSG
+universe/SM
+university/SM
+univocal
+unjust/Y
+unkempt
+unkind/T
+unkindly/T
+unknowable/M
+unknown/SM
+unleaded/M
+unless
+unlike/PB
+unlikely/T
+unlit
+unlock/DSG
+unlovable
+unlovely/TR
+unloving
+unlucky/T
+unmanly/T
+unmarried
+unmeaning
+unmentionable/MS
+unmentionables/M
+unmet
+unmindful
+unmissable
+unmistakably
+unmoral
+unmovable
+unmusical
+unnecessary
+unnerving/Y
+unobservant
+unoffensive
+unofficial/Y
+unoriginal
+unpeople
+unperceptive
+unpersuasive
+unpick/GDS
+unpin/S
+unpleasing
+unpolitical
+unpopular
+unpractical
+unprecedented/Y
+unprofessional/Y
+unpromising
+unpropitious
+unquestioning/Y
+unquiet/TR
+unread/B
+unready
+unreal
+unreasoning
+unregenerate
+unrelated
+unrelenting/Y
+unrelieved/Y
+unremarkable
+unremitting/Y
+unrepentant
+unreported
+unrepresentative
+unrest/M
+unrevealing
+unripe/TR
+unroll/GDS
+unromantic
+unruliness/M
+unruly/RTP
+unsafe/YTR
+unsaleable
+unsavory
+unscathed
+unseeing/Y
+unseemly/T
+unseen/M
+unsentimental
+unset
+unshakable
+unshakably
+unshapely
+unshockable
+unshorn
+unsightliness/M
+unsightly/PT
+unsmiling
+unsociable
+unsocial
+unsold
+unsound/PRYT
+unspeakable
+unspeakably
+unspecific
+unspectacular
+unsporting
+unstable
+unsteady/TRP
+unstinting/Y
+unstrapping
+unsubstantial
+unsubtle
+unsuitable
+unsure
+unsuspecting/Y
+unsymmetrical
+untactful
+unthinkably
+unthinking/Y
+untidy/PTR
+until
+untimely/T
+untiring/Y
+untouchable/MS
+untoward
+untrue/RT
+untrustworthy
+untruth/M
+unutterable
+unutterably
+unwarrantable
+unwary/T
+unwavering
+unwed
+unwelcome/G
+unwell
+unwieldiness/M
+unwieldy/TRP
+unwise/RYT
+unworried
+unworthy/T
+unwound
+unwrapping
+unyielding
+up/S
+upbeat/MS
+upbraid/SGD
+upbringing/MS
+upchuck/SGD
+upcoming
+upcountry/M
+update/MGDRS
+updraft/MS
+upend/SGD
+upfront
+upgrade/MGDS
+upheaval/MS
+upheld
+uphill/MS
+uphold/ZGRS
+upholder/M
+upholster/ASGD
+upholsterer/MS
+upholstery/M
+upkeep/M
+upland/MS
+uplift/JSMDG
+upload/SDG
+upmarket
+upmost
+upon
+upped
+upper/SM
+uppercase/M
+upperclassman/M
+upperclassmen
+upperclasswoman
+upperclasswomen
+uppercut/MS
+uppercutting
+uppermost
+upping
+uppish
+uppity
+upraise/DSG
+uprear/GSD
+upright/MYPS
+uprightness/M
+uprising/SM
+upriver
+uproar/SM
+uproarious/Y
+uproot/GSD
+upscale
+upset/SM
+upsetting
+upshot/SM
+upside/SM
+upsilon/MS
+upstage/GDS
+upstairs
+upstanding
+upstart/MDSG
+upstate/M
+upstream
+upstroke/SM
+upsurge/MGDS
+upswing/MS
+uptake/SM
+uptempo
+upthrust/GSM
+uptick/SM
+uptight
+uptown/M
+uptrend
+upturn/GSMD
+upward/SY
+upwind
+uracil/M
+uranium/M
+urban
+urbane/RYT
+urbanity/M
+urbanization/M
+urbanize/DSG
+urbanologist/MS
+urbanology/M
+urchin/SM
+urea/M
+uremia/M
+uremic
+ureter/SM
+urethane/M
+urethra/M
+urethrae
+urethral
+urge/MGDS
+urgency/M
+urgent/Y
+uric
+urinal/SM
+urinalyses
+urinalysis/M
+urinary
+urinate/GNDS
+urination/M
+urine/M
+urn/SM
+urogenital
+urological
+urologist/MS
+urology/M
+ursine
+urticaria/M
+usability/M
+usable/UA
+usage/SM
+use/AEDSMG
+used/U
+useful/PY
+usefulness/M
+useless/YP
+uselessness/M
+user/MS
+username/MS
+usher/SMDG
+usherette/SM
+usu
+usual's
+usual/UY
+usurer/SM
+usurious
+usurp/SDRZG
+usurpation/M
+usurper/M
+usury/M
+utensil/SM
+uteri
+uterine
+uterus/M
+utilitarian/MS
+utilitarianism/M
+utility/SM
+utilization/M
+utilize/GBDS
+utmost/M
+utopia/SM
+utter/SDYG
+utterance/SM
+uttermost/M
+uveitis
+uvula/SM
+uvular/MS
+uxorious
+v/AS
+vac/S
+vacancy/SM
+vacant/Y
+vacate/DSG
+vacation/ZGMDRS
+vacationer/M
+vacationist/SM
+vaccinate/GNDSX
+vaccination/M
+vaccine/SM
+vacillate/XGNDS
+vacillation/M
+vacuity/M
+vacuole/MS
+vacuous/YP
+vacuousness/M
+vacuum/GSMD
+vagabond/SMDG
+vagabondage/M
+vagarious
+vagary/SM
+vagina/SM
+vaginae
+vaginal/Y
+vaginitis
+vagrancy/M
+vagrant/MS
+vague/RYTP
+vagueness/M
+vagus
+vain/RYT
+vainglorious/Y
+vainglory/M
+val
+valance/MS
+vale/MS
+valediction/MS
+valedictorian/SM
+valedictory/SM
+valence/MS
+valency/SM
+valentine/SM
+valet/SMDG
+valetudinarian/MS
+valetudinarianism/M
+valiance/M
+valiant/Y
+valid/Y
+validate/IGNDS
+validation/IM
+validations
+validity/IM
+validness/M
+valise/SM
+valley/SM
+valor/M
+valorous/Y
+valuable/MS
+valuate/DSG
+valuation/CAMS
+value's
+value/CAGSD
+valueless
+valuer/SM
+valve/DSMG
+valveless
+valvular
+vamoose/DSG
+vamp/AMDGS
+vampire/SM
+van/SM
+vanadium/M
+vandal/SM
+vandalism/M
+vandalize/DSG
+vane/MS
+vanguard/MS
+vanilla/SM
+vanish/JDSG
+vanity/SM
+vanned
+vanning
+vanquish/ZGDRS
+vanquisher/M
+vantage/SM
+vape/GDS
+vapid/YP
+vapidity/M
+vapidness/M
+vapor/SM
+vaporization/M
+vaporize/DRSZG
+vaporizer/M
+vaporous
+vaporware
+vapory
+vaquero/MS
+var/S
+variability/IM
+variable/ISM
+variably/I
+variance/SM
+variant/MS
+variate/NX
+variation/M
+varicolored
+varicose
+varied/U
+variegate/DSGN
+variegation/M
+varietal/SM
+variety/SM
+various/Y
+varlet/SM
+varmint/MS
+varnish/GMDS
+varnished/U
+varsity/SM
+vary/DSG
+varying/U
+vascular
+vase/MS
+vasectomy/SM
+vasoconstriction
+vasomotor
+vassal/SM
+vassalage/M
+vast/MRYTSP
+vastness/M
+vat/SM
+vatted
+vatting
+vaudeville/M
+vaudevillian/MS
+vault/SMDRZG
+vaulter/M
+vaulting/M
+vaunt/SMDG
+vb
+veal/M
+vector/SGMD
+veejay/SM
+veep/MS
+veer/MDGS
+veg/M
+vegan/SM
+veganism
+vegeburger/S
+veges
+vegetable/SM
+vegetarian/SM
+vegetarianism/M
+vegetate/GNVDS
+vegetation/M
+vegged
+vegges
+veggie/SM
+veggieburger/S
+vegging
+vehemence/M
+vehemency/M
+vehement/Y
+vehicle/MS
+vehicular
+veil's
+veil/UDGS
+vein/MDGS
+vela
+velar/SM
+veld/MS
+vellum/M
+velocipede/MS
+velocity/SM
+velodrome/S
+velour/MS
+velum/M
+velvet/M
+velveteen/M
+velvety
+venal/Y
+venality/M
+venation/M
+vend/DGS
+vendetta/SM
+vendible
+vendor/MS
+veneer/MDGS
+venerability/M
+venerable
+venerate/DSGN
+veneration/M
+venereal
+vengeance/M
+vengeful/AY
+venial
+venireman/M
+veniremen
+venison/M
+venom/M
+venomous/Y
+venous
+vent's
+vent/DGS
+ventilate/GNDS
+ventilation/M
+ventilator/SM
+ventilatory
+ventral
+ventricle/SM
+ventricular
+ventriloquism/M
+ventriloquist/SM
+ventriloquy/M
+venture/DSMG
+venturesome/PY
+venturesomeness/M
+venturous/PY
+venturousness/M
+venue/ASM
+veracious/Y
+veracity/M
+veranda/SM
+verapamil
+verb/KMS
+verbal/MYS
+verbalization/M
+verbalize/GDS
+verbatim
+verbena/SM
+verbiage/MS
+verbose/Y
+verbosity/M
+verboten
+verdant/Y
+verdict/SM
+verdigris/GMDS
+verdure/M
+verge's
+verge/FDSG
+verger/MS
+verifiable/U
+verification/M
+verified/U
+verify/DSNG
+verily
+verisimilitude/M
+veritable
+veritably
+verity/SM
+vermicelli/M
+vermiculite/M
+vermiform
+vermilion/M
+vermin/M
+verminous
+vermouth/M
+vernacular/MS
+vernal
+vernier/SM
+veronica/M
+verruca/SM
+verrucae
+versa
+versatile
+versatility/M
+verse/AFNGMSDX
+versed/U
+versification/M
+versifier/M
+versify/ZGNDRS
+version/AFIMS
+versioned
+versioning
+verso/SM
+versus
+vert/A
+vertebra/M
+vertebrae
+vertebral
+vertebrate/IMS
+vertex/MS
+vertical/MYS
+vertices
+vertiginous
+vertigo/M
+verve/M
+very/RT
+vesicle/SM
+vesicular
+vesiculate
+vesper/MS
+vessel/MS
+vest's
+vest/ILDGS
+vestal/MS
+vestibule/MS
+vestige/SM
+vestigial/Y
+vesting/M
+vestment/IMS
+vestry/SM
+vestryman/M
+vestrymen
+vet/SM
+vetch/MS
+veteran/SM
+veterinarian/MS
+veterinary/SM
+veto/MDG
+vetoes
+vetted
+vetting
+vex/GDS
+vexation/SM
+vexatious/Y
+vhf
+vi
+via
+viability/M
+viable
+viably
+viaduct/SM
+vial/MS
+viand/SM
+vibe/MS
+vibes/M
+vibraharp/SM
+vibrancy/M
+vibrant/Y
+vibraphone/MS
+vibraphonist/MS
+vibrate/GNDSX
+vibration/M
+vibrato/MS
+vibrator/SM
+vibratory
+viburnum/SM
+vicar/SM
+vicarage/SM
+vicarious/YP
+vicariousness/M
+vice/CMS
+viced
+vicegerent/SM
+vicennial
+viceregal
+viceroy/MS
+vichyssoise/M
+vicing
+vicinity/M
+vicious/YP
+viciousness/M
+vicissitude/SM
+victim/MS
+victimization/M
+victimize/GDS
+victimless
+victor/MS
+victorious/Y
+victory/SM
+victual/SMDG
+vicuna/MS
+videlicet
+video/GSMD
+videocassette/SM
+videoconferencing
+videodisc/MS
+videophone/MS
+videotape/DSMG
+videotex
+vie/DS
+view/AMDRSZG
+viewable
+viewer/AM
+viewership/M
+viewfinder/SM
+viewing/SM
+viewpoint/MS
+vigesimal
+vigil/SM
+vigilance/M
+vigilant/Y
+vigilante/SM
+vigilantism/M
+vigilantist/M
+vignette/DSMG
+vignettist/MS
+vigor/M
+vigorous/Y
+vii
+viii
+viking/MS
+vile/YTPR
+vileness/M
+vilification/M
+vilify/DSNG
+villa/SM
+village/RSMZ
+villager/M
+villain/SM
+villainous
+villainy/SM
+villein/SM
+villeinage/M
+villi
+villus/M
+vim/M
+vinaigrette/M
+vincible/I
+vindicate/XDSGN
+vindication/M
+vindicator/MS
+vindictive/PY
+vindictiveness/M
+vine/MS
+vinegar/M
+vinegary
+vineyard/MS
+vino/M
+vinous
+vintage/MS
+vintner/MS
+vinyl/SM
+viol/MBS
+viola/SM
+violable/I
+violate/GNDSX
+violation/M
+violator/SM
+violence/M
+violent/Y
+violet/MS
+violin/MS
+violincello/S
+violinist/SM
+violist/MS
+violoncellist/SM
+violoncello/MS
+viper/SM
+viperous
+virago/M
+viragoes
+viral
+vireo/SM
+virgin/MS
+virginal/SM
+virginity/M
+virgule/MS
+virile
+virility/M
+virologist/SM
+virology/M
+virtual/Y
+virtualization
+virtue/SM
+virtuosity/M
+virtuoso/M
+virtuous/YP
+virtuousness/M
+virulence/M
+virulent/Y
+virus/MS
+visa/MDSG
+visage/MS
+viscera
+visceral/Y
+viscid
+viscose/M
+viscosity/M
+viscount/SM
+viscountcy/SM
+viscountess/MS
+viscous
+viscus/M
+vise/ACMGDS
+visibility/IM
+visible/I
+visibly/I
+vision/KGDSM
+visionary/SM
+visit's
+visit/ASGD
+visitant/MS
+visitation/MS
+visitor/MS
+visor/SM
+vista/SM
+visual/SMY
+visualization/SM
+visualize/DRSZG
+visualizer/M
+vita/M
+vitae
+vital/SY
+vitality/M
+vitalization/AM
+vitalize/CAGSD
+vitals/M
+vitamin/MS
+vitiate/GNDS
+vitiation/M
+viticulture/M
+viticulturist/MS
+vitreous
+vitrifaction/M
+vitrification/M
+vitrify/GNDS
+vitrine/SM
+vitriol/M
+vitriolic
+vitriolically
+vittles/M
+vituperate/GNVDS
+vituperation/M
+viva/MS
+vivace
+vivacious/PY
+vivaciousness/M
+vivacity/M
+vivaria
+vivarium/SM
+vivid/RYTP
+vividness/M
+vivify/ADSG
+viviparous
+vivisect/DGS
+vivisection/M
+vivisectional
+vivisectionist/SM
+vixen/SM
+vixenish/Y
+viz
+vizier/SM
+vlf
+vocab
+vocable/MS
+vocabulary/SM
+vocal/SMY
+vocalic
+vocalist/SM
+vocalization/MS
+vocalize/DSG
+vocation/FIKASM
+vocational/Y
+vocative/MS
+vociferate/DSGN
+vociferation/M
+vociferous/YP
+vociferousness/M
+vodka/SM
+vogue/SM
+voguish
+voice/IDSMG
+voiced/U
+voiceless/PY
+voicelessness/M
+voicemail/SM
+void/MDSGB
+voila
+voile/M
+vol/S
+volatile
+volatility/M
+volatilize/DSG
+volcanic
+volcanism
+volcano/M
+volcanoes
+vole/MS
+volition/M
+volitional
+volley/GSMD
+volleyball/MS
+volt/AMS
+voltage/MS
+voltaic
+voltmeter/SM
+volubility/M
+voluble
+volubly
+volume/SM
+volumetric
+voluminous/YP
+voluminousness/M
+voluntarily/I
+voluntarism/M
+voluntary/SM
+volunteer/SGMD
+volunteerism/M
+voluptuary/SM
+voluptuous/PY
+voluptuousness/M
+volute/SM
+vomit/SMDG
+voodoo/GSMD
+voodooism/M
+voracious/PY
+voraciousness/M
+voracity/M
+vortex/MS
+votary/SM
+vote's
+vote/CGVDS
+voter/SM
+vouch/DRSZG
+voucher/M
+vouchsafe/DSG
+vow/SGMD
+vowel/SM
+voyage/MZGDRS
+voyager/M
+voyageur/SM
+voyeur/MS
+voyeurism/M
+voyeuristic
+vulcanization/M
+vulcanize/GDS
+vulgar/RYT
+vulgarian/MS
+vulgarism/MS
+vulgarity/SM
+vulgarization/M
+vulgarize/ZGDRS
+vulgarizer/M
+vulnerabilities
+vulnerability/IM
+vulnerable/I
+vulnerably/I
+vulpine
+vulture/SM
+vulturous
+vulva/M
+vulvae
+vuvuzela/MS
+vying
+w/DNXTGVJ
+wabbit/S
+wack/MRTS
+wackiness/M
+wacko/SM
+wacky/RPT
+wad/SZGMDR
+wadded
+wadding/M
+waddle/DSMG
+wade/MS
+wader/M
+waders/M
+wadge/S
+wadi/MS
+wafer/SM
+waffle/MZGDRS
+waffler/M
+waft/MDGS
+wag/SZGMDR
+wage/MS
+waged/U
+wager/ZGMDR
+wagerer/M
+wagged
+waggery/SM
+wagging
+waggish/YP
+waggishness/M
+waggle/MGDS
+wagon/ZSMR
+wagoner/M
+wagtail/SM
+waif/MS
+wail/MDRZGS
+wailer/M
+wailing/M
+wain/MS
+wainscot/SJMDG
+wainscoting/M
+wainwright/MS
+waist/SM
+waistband/MS
+waistcoat/MS
+waistline/MS
+wait/MDRZGS
+waiter/M
+waiting/M
+waitperson/MS
+waitress/MS
+waitstaff/M
+waive/DRSZG
+waiver/M
+wake/MGJDS
+wakeful/PY
+wakefulness/M
+waken/GSD
+waldo/S
+waldoes
+wale/MGDS
+walk/MDRZGS
+walkabout/S
+walkaway/MS
+walker/M
+walkies
+walking/M
+walkout/SM
+walkover/MS
+walkway/SM
+wall/MDGS
+wallaby/SM
+wallah
+wallahs
+wallboard/M
+wallet/MS
+walleye/DSM
+wallflower/MS
+wallop/MDSJG
+walloping/M
+wallow/MDSG
+wallpaper/SMDG
+wally/S
+walnut/MS
+walrus/MS
+waltz/ZGMDRS
+waltzer/M
+wampum/M
+wan/GPDY
+wand/MS
+wander/DRSJZG
+wanderer/M
+wanderings/M
+wanderlust/SM
+wane/MS
+wangle/MZGDRS
+wangler/M
+wank/DRZGS
+wanna
+wannabe/SM
+wannabee/S
+wanner
+wanness/M
+wannest
+want/MDGS
+wanted/U
+wanton/MDYSPG
+wantonness/M
+wapiti/MS
+war/SM
+warble/MZGDRS
+warbler/M
+warbonnet/SM
+ward/AMDGS
+warden/MS
+warder/MS
+wardress/S
+wardrobe/SM
+wardroom/SM
+ware/MS
+warehouse/DSMG
+warez
+warfare/M
+warfarin
+warhead/MS
+warhorse/SM
+warily/U
+wariness/UM
+warlike
+warlock/MS
+warlord/MS
+warm/PDRYHZTGS
+warmblooded
+warmer/M
+warmhearted/P
+warmheartedness/M
+warmish
+warmness/M
+warmonger/SMG
+warmongering/M
+warmth/M
+warn/JDGS
+warning/M
+warp/MDGS
+warpaint
+warpath/M
+warpaths
+warplane/MS
+warrant/GMDS
+warranted/U
+warranty/DSMG
+warred
+warren/MS
+warring
+warrior/SM
+warship/SM
+wart/MS
+warthog/SM
+wartime/M
+warty/TR
+wary/UPRT
+was
+wasabi
+wash/BJMDRSZG
+washable/SM
+washbasin/SM
+washboard/SM
+washbowl/SM
+washcloth/M
+washcloths
+washed/U
+washer/M
+washerwoman/M
+washerwomen
+washing/M
+washout/MS
+washrag/MS
+washroom/MS
+washstand/SM
+washtub/MS
+washy/TR
+wasn't
+wasp/MS
+waspish/YP
+waspishness/M
+wassail/SMDG
+wast
+wastage/M
+waste/DRSMZG
+wastebasket/MS
+wasteful/PY
+wastefulness/M
+wasteland/SM
+wastepaper/M
+waster/M
+wastewater
+wastrel/SM
+watch/BZGMDRS
+watchable/U
+watchband/MS
+watchdog/SM
+watcher/M
+watchful/YP
+watchfulness/M
+watchmaker/MS
+watchmaking/M
+watchman/M
+watchmen
+watchstrap/S
+watchtower/SM
+watchword/MS
+water/GSMD
+waterbed/MS
+waterbird/SM
+waterboard/MDJSG
+waterboarding/M
+waterborne
+watercolor/MS
+watercourse/SM
+watercraft/M
+watercress/M
+waterfall/SM
+waterfowl/SM
+waterfront/MS
+waterhole/SM
+wateriness/M
+waterlily/SM
+waterline/MS
+waterlogged
+watermark/MDGS
+watermelon/SM
+watermill/MS
+waterproof/SMDG
+waterproofing/M
+waters/M
+watershed/MS
+waterside/MS
+waterspout/SM
+watertight
+waterway/MS
+waterwheel/SM
+waterworks/M
+watery/PTR
+watt/MS
+wattage/M
+wattle/MGDS
+wave/MZGDRS
+waveband/S
+waveform
+wavefront
+wavelength/M
+wavelengths
+wavelet/SM
+wavelike
+waver/ZGMDR
+waverer/M
+wavering/Y
+waviness/M
+wavy/PRT
+wax/GMDNS
+waxiness/M
+waxwing/SM
+waxwork/SM
+waxy/RPT
+way/SM
+waybill/SM
+wayfarer/MS
+wayfaring/SM
+waylaid
+waylay/RSZG
+waylayer/M
+wayside/SM
+wayward/PY
+waywardness/M
+wazoo/S
+we
+we'd
+we'll
+we're
+we've
+weak/PNRYXT
+weaken/DRZG
+weakener/M
+weakfish/MS
+weakish
+weakling/SM
+weakness/MS
+weal/MHS
+wealth/M
+wealthiness/M
+wealthy/TRP
+wean/DGS
+weapon/MS
+weaponize/GDS
+weaponless
+weaponry/M
+wear/MRBJSZG
+wearable/U
+wearer/M
+wearied/U
+wearily
+weariness/M
+wearisome/Y
+weary/TGDRSP
+weasel/MDYSG
+weather/SMDG
+weatherboard/SG
+weathercock/MS
+weathering/M
+weatherization/M
+weatherize/DSG
+weatherman/M
+weathermen
+weatherperson/MS
+weatherproof/GSD
+weatherstrip/S
+weatherstripped
+weatherstripping/M
+weave/DRSMZG
+weaver/M
+weaving/M
+web/SM
+webbed
+webbing/M
+webcam/MS
+webcast/SMG
+webfeet
+webfoot/M
+webinar/SM
+webisode/MS
+weblog/MS
+webmaster/SM
+webmistress/MS
+website/SM
+wed/AS
+wedded/A
+wedder
+wedding/SM
+wedge/DSMG
+wedgie/MS
+wedlock/M
+wee/RSMT
+weed/MDRSZG
+weeder/M
+weedkiller/S
+weedless
+weedy/TR
+weeing
+week/MYS
+weekday/SM
+weekend/SZGMDR
+weekly/SM
+weeknight/SM
+ween/DSG
+weenie/MTRS
+weensy/RT
+weeny
+weep/MRJSZG
+weeper/M
+weepie
+weepy/TRSM
+weevil/MS
+weft/MS
+weigh's
+weigh/AGD
+weighbridge/S
+weighs/A
+weight/MDSJG
+weighted/U
+weightily
+weightiness/M
+weightless/YP
+weightlessness/M
+weightlifter/MS
+weightlifting/M
+weighty/PTR
+weir/MS
+weird/PTRY
+weirdie/MS
+weirdness/M
+weirdo/MS
+welcome/MGDS
+weld/MDRBSZG
+welder/M
+welfare/M
+welkin/M
+well/MDPSG
+wellhead/SM
+wellie
+wellington/MS
+wellness/M
+wellspring/MS
+welly/S
+welsh/ZGDRS
+welsher/M
+welt/MDRSZG
+welter/GMD
+welterweight/SM
+wen/M
+wench/MS
+wend/DSG
+went
+wept
+were
+weren't
+werewolf/M
+werewolves
+west/M
+westbound
+westerly/SM
+western/SZMR
+westerner/M
+westernization/M
+westernize/GDS
+westernmost
+westward/S
+wet/SMYP
+wetback/SM
+wetland/SM
+wetness/M
+wetter/SM
+wettest
+wetting
+wetware/S
+whack/SJZGMDR
+whacker/M
+whale/DRSMZG
+whaleboat/MS
+whalebone/M
+whaler/M
+whaling/M
+wham/MS
+whammed
+whamming
+whammy/SM
+wharf/M
+wharves
+what/MS
+whatchamacallit/MS
+whatever
+whatnot/M
+whatshername
+whatshisname
+whatsit/S
+whatsoever
+wheal/SM
+wheat/MN
+wheatgerm
+wheatmeal
+whee
+wheedle/DRSZG
+wheedler/M
+wheel/SMDRG
+wheelbarrow/SM
+wheelbase/SM
+wheelchair/SM
+wheelhouse/MS
+wheelie/SM
+wheelwright/MS
+wheeze/DSMG
+wheezily
+wheeziness/M
+wheezy/PRT
+whelk/SMD
+whelm/SDG
+whelp/SMDG
+when/MS
+whence
+whenever
+whensoever
+where/SM
+whereabouts/M
+whereas
+whereat
+whereby
+wherefore/MS
+wherein
+whereof
+whereon
+wheresoever
+whereto
+whereupon
+wherever
+wherewith
+wherewithal/M
+wherry/SM
+whet/S
+whether
+whetstone/SM
+whetted
+whetting
+whew
+whey/M
+which
+whichever
+whiff/SMDG
+whiffletree/MS
+while/DSMG
+whilom
+whilst
+whim/MS
+whimper/MDGS
+whimsical/Y
+whimsicality/M
+whimsy/SM
+whine/DRSMZG
+whiner/M
+whinge/DRSZG
+whingeing
+whinny/GDSM
+whiny/RT
+whip/MS
+whipcord/M
+whiplash/MS
+whipped
+whipper/MS
+whippersnapper/MS
+whippet/MS
+whipping/SM
+whippletree/SM
+whippoorwill/MS
+whipsaw/MDGS
+whir/MS
+whirl/SMDG
+whirligig/MS
+whirlpool/MS
+whirlwind/MS
+whirlybird/SM
+whirred
+whirring
+whisk/SMDRZG
+whisker/MD
+whiskery
+whiskey/MS
+whiskys
+whisper/MDRSZG
+whisperer/M
+whist/M
+whistle/MZGDRS
+whistler/M
+whit/MDNRSXTGJ
+white/SPM
+whitebait
+whiteboard/S
+whitecap/SM
+whitefish/MS
+whitehead/MS
+whitelist/GDS
+whiten/ZGDRJ
+whitener/M
+whiteness/M
+whitening/M
+whiteout/SM
+whitetail/MS
+whitewall/SM
+whitewash/MDSG
+whitewater/M
+whitey/SM
+whither
+whiting/M
+whitish
+whittle/ZGDRS
+whittler/M
+whiz/M
+whizkid/M
+whizzbang/MS
+whizzed
+whizzes
+whizzing
+who'd
+who'll
+who're
+who've
+who/M
+whoa
+whodunit/MS
+whoever
+whole/SMP
+wholefood/S
+wholegrain
+wholehearted/YP
+wholeheartedness/M
+wholemeal
+wholeness/M
+wholesale/MZGDRS
+wholesaler/M
+wholesome/UP
+wholesomely
+wholesomeness/UM
+wholewheat
+wholly
+whom
+whomever
+whomsoever
+whoop/SMDRZG
+whoopee/S
+whooper/M
+whoosh/MDSG
+whop/S
+whopped
+whopper/SM
+whopping
+whore/SMG
+whorehouse/MS
+whoreish
+whorish
+whorl/SMD
+whose
+whoso
+whosoever
+whup/S
+whupped
+whupping
+why'd
+why/M
+whys
+wick/MDRSZ
+wicked/TPRY
+wickedness/M
+wicker/M
+wickerwork/M
+wicket/SM
+wide/YTRP
+widemouthed
+widen/SDRZG
+widener/M
+wideness/M
+widescreen/MS
+widespread
+widget/S
+widow/SMDRZG
+widower/M
+widowhood/M
+width/M
+widths
+wield/SDRZG
+wielder/M
+wiener/SM
+wienie/SM
+wife/MY
+wifeless
+wig/SM
+wigeon/M
+wigged
+wigging
+wiggle/DRSMZG
+wiggler/M
+wiggly/TR
+wight/SM
+wiglet/SM
+wigwag/SM
+wigwagged
+wigwagging
+wigwam/SM
+wiki/MS
+wild/MRYSTP
+wildcard/MS
+wildcat/MS
+wildcatted
+wildcatter/MS
+wildcatting
+wildebeest/MS
+wilderness/MS
+wildfire/MS
+wildflower/SM
+wildfowl/M
+wildlife/M
+wildness/M
+wilds/M
+wile/MGDS
+wiliness/M
+will/MDS
+willful/PY
+willfulness/M
+willies/M
+willing/UPY
+willingness/UM
+williwaw/MS
+willow/SM
+willowy
+willpower/M
+willy/S
+wilt/MDSG
+wily/RTP
+wimp/MDSG
+wimpish
+wimple/DSMG
+wimpy/RT
+win/SGMD
+wince/DSMG
+winch/MDSG
+wind's
+wind/UASG
+windbag/SM
+windblown
+windbreak/SZMR
+windbreaker/M
+windburn/MD
+windcheater/S
+windchill/M
+winded
+winder/SM
+windfall/MS
+windflower/MS
+windily
+windiness/M
+winding's
+windjammer/SM
+windlass/MS
+windless
+windmill/MDGS
+window/SMDG
+windowless
+windowpane/SM
+windowsill/SM
+windpipe/MS
+windproof
+windrow/SM
+windscreen/SM
+windshield/SM
+windsock/MS
+windstorm/MS
+windsurf/ZGDRS
+windsurfer/M
+windsurfing/M
+windswept
+windup/SM
+windward/M
+windy/RTP
+wine/MS
+wineglass/MS
+winegrower/MS
+winemaker/MS
+winery/SM
+wing/MDRZG
+wingding/MS
+wingless
+winglike
+wingnut/SM
+wingspan/MS
+wingspread/SM
+wingtip/SM
+wink/MDRSZG
+winker/M
+winkle/DSMG
+winnable/U
+winner/SM
+winning/MYS
+winnow/ZGSDR
+winnower/M
+wino/MS
+winsome/YTRP
+winsomeness/M
+winter/GSMD
+wintergreen/M
+winterize/GDS
+wintertime/M
+wintry/TR
+winy/RT
+wipe/MZGDRS
+wiper/M
+wire's
+wire/AGDS
+wired/S
+wirehair/MS
+wireless/MS
+wiretap/MS
+wiretapped
+wiretapper/SM
+wiretapping/M
+wiriness/M
+wiring/M
+wiry/RTP
+wisdom/M
+wise/MYTGDRS
+wiseacre/SM
+wisecrack/MDSG
+wiseguy/S
+wish/MDRSZG
+wishbone/SM
+wisher/M
+wishful/Y
+wishlist's
+wisp/MS
+wispy/RT
+wist
+wisteria/SM
+wistful/YP
+wistfulness/M
+wit/SM
+witch/MDSG
+witchcraft/M
+witchery/M
+with
+withal
+withdraw/SG
+withdrawal/MS
+withdrawn
+withdrew
+withe/DRSMZG
+wither/JGD
+withering/Y
+withers/M
+withheld
+withhold/SG
+withholding/M
+within/M
+without
+withstand/GS
+withstood
+witless/PY
+witlessness/M
+witness/MDSG
+wits/M
+witted
+witter/SGD
+witticism/SM
+wittily
+wittiness/M
+witting/UY
+witty/RPT
+wive/GDS
+wiz
+wizard/SMY
+wizardry/M
+wizened
+wk/Y
+woad/M
+wobble/MGDS
+wobbliness/M
+wobbly/RTP
+wodge/S
+woe/SM
+woebegone
+woeful/YP
+woefuller
+woefullest
+woefulness/M
+wog/S
+wok/SMN
+woke
+wold/MS
+wolf/MDSG
+wolfhound/SM
+wolfish
+wolfram/M
+wolverine/SM
+wolves
+woman/M
+womanhood/M
+womanish
+womanize/DRSZG
+womanizer/M
+womankind/M
+womanlike/M
+womanliness/M
+womanly/RPT
+womb/MS
+wombat/MS
+womble/S
+women/M
+womenfolk/SM
+womenfolks/M
+won't
+won/M
+wonder/MDGLS
+wonderful/YP
+wonderfulness/M
+wondering/Y
+wonderland/MS
+wonderment/M
+wondrous/Y
+wonk/MS
+wonky/TR
+wont/MD
+wonted/U
+woo/SZGDR
+wood/MDNSG
+woodbine/M
+woodblock/MS
+woodcarver/MS
+woodcarving/SM
+woodchuck/MS
+woodcock/SM
+woodcraft/M
+woodcut/SM
+woodcutter/SM
+woodcutting/M
+wooden/RYTP
+woodenness/M
+woodiness/M
+woodland/SM
+woodlice
+woodlot/SM
+woodlouse
+woodman/M
+woodmen
+woodpecker/MS
+woodpile/SM
+woods/M
+woodshed/SM
+woodsiness/M
+woodsman/M
+woodsmen
+woodsy/RTP
+woodwind/MS
+woodwork/MRZG
+woodworker/M
+woodworking/M
+woodworm/S
+woody/TPRSM
+wooer/M
+woof/MDRSZG
+woofer/M
+wool/MNX
+woolen/M
+woolgathering/M
+wooliness
+woolliness/M
+woolly/RSMPT
+woozily
+wooziness/M
+woozy/TRP
+wop/S!
+word's
+word/ADSG
+wordage/M
+wordbook/SM
+wordily
+wordiness/M
+wording/SM
+wordless/Y
+wordplay/M
+wordsmith
+wordsmiths
+wordy/TPR
+wore
+work's
+work/ADJSG
+workable/U
+workaday
+workaholic/SM
+workaround/S
+workbasket/S
+workbench/MS
+workbook/MS
+workday/SM
+worker/MS
+workfare/M
+workflow/MS
+workforce/M
+workhorse/SM
+workhouse/SM
+working's
+workingman/M
+workingmen
+workings/M
+workingwoman/M
+workingwomen
+workload/MS
+workman/M
+workmanlike
+workmanship/M
+workmate/S
+workmen
+workout/SM
+workplace/MS
+workroom/MS
+works/M
+worksheet/MS
+workshop/MS
+workshy
+worksite/S
+workspace
+workstation/MS
+worktable/MS
+worktop/S
+workup/MS
+workweek/SM
+world/SM
+worldlier
+worldliness/UM
+worldly/UTP
+worldview/SM
+worldwide
+worm/MDSG
+wormhole/MS
+wormwood/M
+wormy/TR
+worn/U
+worried/Y
+worrier/M
+worriment/M
+worrisome
+worry/ZGDRSMJ
+worrying/Y
+worrywart/SM
+worse/M
+worsen/DSG
+worship/ZGSMDR
+worshiper/M
+worshipful
+worst/SGMD
+worsted/M
+wort/M
+worth/M
+worthies
+worthily/U
+worthiness/UM
+worthless/PY
+worthlessness/M
+worthwhile
+worthy's
+worthy/UPRT
+wot
+wotcha
+would've
+would/S
+wouldn't
+wouldst
+wound/SGMDR
+wove/A
+woven/AU
+wow/SGMD
+wpm
+wrack/GSMD
+wraith/M
+wraiths
+wrangle/DRSMZGJ
+wrangler/M
+wrap's
+wrap/US
+wraparound/SM
+wrapped/U
+wrapper/SM
+wrapping/MS
+wrasse/MS
+wrath/M
+wrathful/Y
+wreak/SGD
+wreath/MDSG
+wreathe
+wreaths
+wreck/SZGMDR
+wreckage/M
+wrecker/M
+wren/MS
+wrench/MDSG
+wrest/SGMD
+wrestle/MZGDRS
+wrestler/M
+wrestling/M
+wretch/MS
+wretched/TPRY
+wretchedness/M
+wriggle/MZGDRS
+wriggler/M
+wriggly
+wright/MS
+wring/SZGMR
+wringer/M
+wrinkle/MGDS
+wrinkled/U
+wrinkly/TRSM
+wrist/SM
+wristband/MS
+wristwatch/MS
+writ/MRBJSZG
+write/S
+writer/M
+writhe/MGDS
+writing/M
+written/AU
+wrong/STGMPDRY
+wrongdoer/SM
+wrongdoing/SM
+wrongful/PY
+wrongfulness/M
+wrongheaded/YP
+wrongheadedness/M
+wrongness/M
+wrote/A
+wroth
+wrought
+wrung
+wry/Y
+wryer
+wryest
+wryness/M
+wt
+wunderkind/S
+wurst/SM
+wuss/MS
+wussy/RSMT
+x
+xci
+xcii
+xciv
+xcix
+xcvi
+xcvii
+xenon/M
+xenophobe/MS
+xenophobia/M
+xenophobic
+xerographic
+xerography/M
+xerox/MDSG
+xi/SM
+xii
+xiii
+xiv
+xix
+xor
+xref/S
+xterm/M
+xv
+xvi
+xvii
+xviii
+xx
+xxi
+xxii
+xxiii
+xxiv
+xxix
+xxv
+xxvi
+xxvii
+xxviii
+xxx
+xxxi
+xxxii
+xxxiii
+xxxiv
+xxxix
+xxxv
+xxxvi
+xxxvii
+xxxviii
+xylem/M
+xylene
+xylophone/SM
+xylophonist/MS
+y'all
+y/F
+ya
+yacht/SMDG
+yachting/M
+yachtsman/M
+yachtsmen
+yachtswoman/M
+yachtswomen
+yahoo/SM
+yak/SM
+yakked
+yakking
+yam/SM
+yammer/SZGMDR
+yammerer/M
+yang/M
+yank/MDSG
+yap/SM
+yapped
+yapping
+yard/MS
+yardage/MS
+yardarm/MS
+yardman/M
+yardmaster/MS
+yardmen
+yardstick/MS
+yarmulke/SM
+yarn/MS
+yarrow/M
+yashmak/S
+yaw/SGMD
+yawl/MS
+yawn/MDRSZG
+yawner/M
+yaws/M
+yd
+ye/RST
+yea/SM
+yeah/M
+yeahs
+year/MYS
+yearbook/MS
+yearling/MS
+yearlong
+yearly/SM
+yearn/GSJD
+yearning/M
+yeast/SM
+yeasty/RT
+yegg/MS
+yell/MDSG
+yellow/MDRTGPS
+yellowhammer/S
+yellowish
+yellowness/M
+yellowy
+yelp/MDSG
+yen/SM
+yeoman/M
+yeomanry/M
+yeomen
+yep/SM
+yes/MS
+yeshiva/SM
+yessed
+yessing
+yesterday/MS
+yesteryear/M
+yet
+yeti/MS
+yew/SM
+yid/S
+yield/JSGMD
+yikes
+yin/M
+yip/SM
+yipe
+yipped
+yippee
+yipping
+yo
+yob/S
+yobbo/S
+yodel/SMDRZG
+yodeler/M
+yoga/M
+yogi/MS
+yogic
+yogurt/SM
+yoke's
+yoke/UGDS
+yokel/SM
+yolk/MDS
+yon
+yonder
+yonks
+yore/M
+you'd
+you'll
+you're
+you've
+you/SMH
+young/TMR
+youngish
+youngster/MS
+your/S
+yourself
+yourselves
+youth/M
+youthful/YP
+youthfulness/M
+youths
+yow
+yowl/MDSG
+yr/S
+ytterbium/M
+yttrium/M
+yuan/M
+yucca/SM
+yuck
+yucky/TR
+yuk/SM
+yukked
+yukking
+yukky
+yule/M
+yuletide/M
+yum
+yummy/TR
+yup/SM
+yuppie/MS
+yuppify/GDS
+yurt/MS
+z/DNXTGJ
+zaniness/M
+zany/RSMPT
+zap/SM
+zapped
+zapper/MS
+zapping
+zappy
+zeal/M
+zealot/MS
+zealotry/M
+zealous/YP
+zealousness/M
+zebra/SM
+zebu/MS
+zed/SM
+zeitgeist/SM
+zenith/M
+zeniths
+zenned
+zeolite/S
+zephyr/MS
+zeppelin/MS
+zero/MDHSG
+zeroes
+zest/MS
+zestful/YP
+zestfulness/M
+zesty/RT
+zeta/MS
+zigzag/SM
+zigzagged
+zigzagging
+zilch/M
+zillion/MS
+zinc/MS
+zincked
+zincking
+zine/S
+zinfandel/M
+zing/MDRZG
+zinger/M
+zingy/RT
+zinnia/MS
+zip's
+zip/US
+zipped/U
+zipper/MDGS
+zipping/U
+zippy/TR
+zircon/MS
+zirconium/M
+zit/SM
+zither/MS
+zloty/SM
+zlotys
+zodiac/MS
+zodiacal
+zombie/MS
+zonal/Y
+zone's
+zone/AGDS
+zoning/M
+zonked
+zoo/SM
+zookeeper/SM
+zoological/Y
+zoologist/SM
+zoology/M
+zoom/MDSG
+zoophyte/SM
+zoophytic
+zooplankton
+zorch
+zoster
+zounds
+zucchini/MS
+zwieback/M
+zydeco/M
+zygote/SM
+zygotic
+zymurgy/M
diff --git a/dictionaries/en/en_ZA.aff b/dictionaries/en/en_ZA.aff
new file mode 100644
index 0000000..b8f2fb9
--- /dev/null
+++ b/dictionaries/en/en_ZA.aff
@@ -0,0 +1,1471 @@
+# Affix file for British English MySpell dictionary
+# Also suitable as basis for Commonwealth and European English.
+# Built from scratch for MySpell. Released under LGPL.
+#
+# David Bartlett, Andrew Brown.
+# R 1.18, 11/04/05
+# 2010-03-09 (nemeth AT OOo)
+# - UTF-8 encoded dictionary:
+# - fix em-dash problem of OOo 3.2 by BREAK
+# - suggesting words with typographical apostrophes
+# - recognizing words with Unicode f ligatures
+# - add phonetic suggestion (Copyright (C) 2000 Björn Jacke, see the end of the file)
+#
+# 2021-02-15 (Marco A.G.Pinto)
+# Fixed: concious + conciousness.
+#
+# 2022-07-12 (Marco A.G.Pinto)
+# Fixed: ! flag at start of words;
+# Removed duplicate words;
+# Sorted alphabetically the dictionary.
+#
+# 2023-01-01 (Marco A.G.Pinto)
+# Added the: ICONV ’ '
+# Sorted alphabetically the tags of the .aff
+#
+# 2023-01-17 (Marco A.G.Pinto)
+# Added: Czechia + Czechia's
+#
+# 2023-01-26 (Marco A.G.Pinto)
+# Fixed/improved: flag 3
+#
+
+SET UTF-8
+TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîêàïüäñ
+
+ICONV 1
+ICONV ’ '
+
+NOSUGGEST !
+REP 36
+REP f ph
+REP ph f
+REP f gh
+REP f ugh
+REP gh f
+REP ff ugh
+REP uf ough
+REP uff ough
+REP k ch
+REP ch k
+REP dg j
+REP j dg
+REP w ugh
+REP ness ity
+REP leness ility
+REP ness ivity
+REP eness ity
+REP og ogue
+REP ck qu
+REP ck que
+REP eg e.g.
+REP ie i.e.
+REP t ght
+REP ght t
+REP ok OK
+REP ts ce
+REP ce ts
+REP ter tor
+REP tor ter
+REP se ce
+REP ce se
+REP ie y
+REP y ie
+REP ll l
+REP l ll
+REP ua ue
+PFX A Y 2
+PFX A 0 re [^e]
+PFX A 0 re- e
+PFX a Y 1
+PFX a 0 mis .
+PFX I Y 4
+PFX I 0 il l
+PFX I 0 im [bmp]
+PFX I 0 in [^blmpr]
+PFX I 0 ir r
+PFX c Y 1
+PFX c 0 over .
+PFX U Y 1
+PFX U 0 un .
+PFX C Y 2
+PFX C 0 de [^e]
+PFX C 0 de- e
+PFX E Y 1
+PFX E 0 dis .
+PFX F Y 5
+PFX F 0 co [aeiouh]
+PFX F 0 col l
+PFX F 0 com [bmp]
+PFX F 0 con [^abehilmopru].
+PFX F 0 cor r
+PFX K Y 1
+PFX K 0 pre .
+PFX e Y 1
+PFX e 0 out .
+PFX f Y 2
+PFX f 0 under [^r]
+PFX f 0 under- r
+PFX O Y 1
+PFX O 0 non- .
+PFX 4 Y 1
+PFX 4 0 trans .
+SFX V Y 15
+SFX V 0 ative [^abdeilosty]
+SFX V 0 ative [^aeiou]l
+SFX V e ative [^bcdkmst]e
+SFX V ke cative ke
+SFX V y icative y
+SFX V 0 ive [st]
+SFX V e ive [st]e
+SFX V 0 lative [aeiou]l
+SFX V b ptive b
+SFX V be ptive be
+SFX V e ptive me
+SFX V d sive d
+SFX V de sive de
+SFX V 0 tive [aio]
+SFX V e tive ce
+SFX v Y 15
+SFX v 0 atively [^abdeilosty]
+SFX v 0 atively [^aeiou]l
+SFX v e atively [^bcdkmst]e
+SFX v ke catively ke
+SFX v y icatively y
+SFX v 0 ively [st]
+SFX v e ively [st]e
+SFX v 0 latively [aeiou]l
+SFX v b ptively b
+SFX v be ptively be
+SFX v e ptively me
+SFX v d sively d
+SFX v de sively de
+SFX v 0 tively [aio]
+SFX v e tively ce
+SFX u Y 15
+SFX u 0 ativeness [^abdeilosty]
+SFX u 0 ativeness [^aeiou]l
+SFX u e ativeness [^bcdkmst]e
+SFX u ke cativeness ke
+SFX u y icativeness y
+SFX u 0 iveness [st]
+SFX u e iveness [st]e
+SFX u 0 lativeness [aeiou]l
+SFX u b ptiveness b
+SFX u be ptiveness be
+SFX u e ptiveness me
+SFX u d siveness d
+SFX u de siveness de
+SFX u 0 tiveness [aio]
+SFX u e tiveness ce
+SFX N Y 26
+SFX N 0 ation [^aeiou]l
+SFX N 0 ation [^aeiou]m
+SFX N e ation [^bcdkmst]e
+SFX N 0 ation [^bdelmrstxy]
+SFX N 0 ation [^e]r
+SFX N 0 ation [^i]t
+SFX N e ation [iou]te
+SFX N ke cation ke
+SFX N y ication y
+SFX N e ion [^iou]te
+SFX N 0 ion [^m]it
+SFX N e ion [^o]se
+SFX N 0 ion [sx]
+SFX N e ition ose
+SFX N 0 lation [aiou]l
+SFX N e mation [^u]me
+SFX N 0 mation [aeiou]m
+SFX N b ption b
+SFX N be ption be
+SFX N e ption ume
+SFX N er ration er
+SFX N d sion d
+SFX N de sion de
+SFX N t ssion mit
+SFX N e tion ce
+SFX N el ulsion el
+SFX n Y 28
+SFX n 0 ation [^aeiou]l
+SFX n 0 ation [^aelry]
+SFX n e ation [^ckt]e
+SFX n 0 ation [^e]r
+SFX n e ation [iou]te
+SFX n y ation py
+SFX n 0 ations [^aeiou]l
+SFX n 0 ations [^aelry]
+SFX n e ations [^ckt]e
+SFX n 0 ations [^e]r
+SFX n e ations [iou]te
+SFX n y ations py
+SFX n ke cation ke
+SFX n ke cations ke
+SFX n y ication [^p]y
+SFX n y ications [^p]y
+SFX n e ion [^iou]te
+SFX n e ions [^iou]te
+SFX n 0 lation [aiou]l
+SFX n 0 lations [aiou]l
+SFX n er ration er
+SFX n er rations er
+SFX n 0 tion a
+SFX n e tion ce
+SFX n 0 tions a
+SFX n e tions ce
+SFX n el ulsion el
+SFX n el ulsions el
+SFX X Y 26
+SFX X 0 ations [^aeiou]l
+SFX X 0 ations [^aeiou]m
+SFX X e ations [^bcdkmst]e
+SFX X 0 ations [^bdelmrstxy]
+SFX X 0 ations [^e]r
+SFX X 0 ations [^i]t
+SFX X e ations [iou]te
+SFX X ke cations ke
+SFX X y ications y
+SFX X e ions [^iou]te
+SFX X 0 ions [^m]it
+SFX X e ions [^o]se
+SFX X 0 ions [sx]
+SFX X e itions ose
+SFX X 0 lations [aiou]l
+SFX X e mations [^u]me
+SFX X 0 mations [aeiou]m
+SFX X b ptions b
+SFX X be ptions be
+SFX X e ptions ume
+SFX X er rations er
+SFX X d sions d
+SFX X de sions de
+SFX X t ssions mit
+SFX X e tions ce
+SFX X el ulsions el
+SFX x Y 40
+SFX x 0 ational [^aeiou]l
+SFX x e ational [^bcdkst]e
+SFX x 0 ational [^bdelrstxy]
+SFX x 0 ational [^e]r
+SFX x 0 ational nt
+SFX x 0 ationally [^aeiou]l
+SFX x e ationally [^bcdkst]e
+SFX x 0 ationally [^bdelrstxy]
+SFX x 0 ationally [^e]r
+SFX x 0 ationally nt
+SFX x ke cational ke
+SFX x ke cationally ke
+SFX x y icational y
+SFX x y icationally y
+SFX x 0 ional [^n]t
+SFX x e ional [^o]se
+SFX x 0 ional [sx]
+SFX x e ional te
+SFX x 0 ionally [^n]t
+SFX x e ionally [^o]se
+SFX x 0 ionally [sx]
+SFX x e ionally te
+SFX x e itional ose
+SFX x e itionally ose
+SFX x 0 lational [aiou]l
+SFX x 0 lationally [aiou]l
+SFX x b ptional b
+SFX x be ptional be
+SFX x b ptionally b
+SFX x be ptionally be
+SFX x er rational er
+SFX x er rationally er
+SFX x d sional d
+SFX x de sional de
+SFX x d sionally d
+SFX x de sionally de
+SFX x e tional ce
+SFX x e tionally ce
+SFX x el ulsional el
+SFX x el ulsionally el
+SFX H N 13
+SFX H 0 fold .
+SFX H ve fth ve
+SFX H ve fths ve
+SFX H 0 h t
+SFX H 0 hs t
+SFX H y ieth y
+SFX H y ieths y
+SFX H ree ird ree
+SFX H ree irds ree
+SFX H 0 th [^ety]
+SFX H e th [^ev]e
+SFX H 0 ths [^ety]
+SFX H e ths [^ev]e
+SFX Y Y 9
+SFX Y 0 ally ic
+SFX Y y ily [^aeiou]y
+SFX Y 0 ly [^cely]
+SFX Y 0 ly [^i]c
+SFX Y 0 ly [^l]e
+SFX Y 0 ly [aeiou][ly]
+SFX Y 0 ly [aeiou]le
+SFX Y 0 y [^aeiou]l
+SFX Y e y [^aeiou]le
+SFX G Y 24
+SFX G 0 bing [^aeio][aeiou]b
+SFX G 0 ding [^aeio][aeiou]d
+SFX G 0 fing [^aeio][aeiou]f
+SFX G 0 ging [^aeio][aeiou]g
+SFX G 0 ing [^aeiou][bcdfgklmnprstvz]
+SFX G 0 ing [^ebcdfgklmnprstvz]
+SFX G e ing [^eioy]e
+SFX G 0 ing [aeio][aeiou][bcdfgkmnprstvz]
+SFX G 0 ing [aeio][eiou]l
+SFX G 0 ing [aeo]al
+SFX G 0 ing [eoy]e
+SFX G 0 king [^aeio][aeiou]c
+SFX G 0 king [^aeio][aeiou]k
+SFX G 0 ling [^aeio][eiou]l
+SFX G 0 ling [^aeo]al
+SFX G 0 ming [^aeio][aeiou]m
+SFX G 0 ning [^aeio][aeiou]n
+SFX G 0 ping [^aeio][aeiou]p
+SFX G 0 ring [^aeio][aeiou]r
+SFX G 0 sing [^aeio][aeiou]s
+SFX G 0 ting [^aeio][aeiou]t
+SFX G 0 ving [^aeio][aeiou]v
+SFX G ie ying ie
+SFX G 0 zing [^aeio][aeiou]z
+SFX J Y 25
+SFX J 0 bings [^aeio][aeiou]b
+SFX J 0 dings [^aeio][aeiou]d
+SFX J 0 fings [^aeio][aeiou]f
+SFX J 0 gings [^aeio][aeiou]g
+SFX J 0 ings [^aeio]e[nrt]
+SFX J 0 ings [^aeiou][bcdfgklmnprstvz]
+SFX J 0 ings [^ebcdfgklmnprstvz]
+SFX J e ings [^eioy]e
+SFX J 0 ings [aeio][aeiou][bcdfgkmnprstvz]
+SFX J 0 ings [aeio][eiou]l
+SFX J 0 ings [aeo]al
+SFX J 0 ings [eoy]e
+SFX J 0 king [^aeio][aeiou]c
+SFX J 0 kings [^aeio][aeiou]k
+SFX J 0 lings [^aeio][eiou]l
+SFX J 0 lings [^aeo]al
+SFX J 0 mings [^aeio][aeiou]m
+SFX J 0 nings [^aeio][aiou]n
+SFX J 0 pings [^aeio][aeiou]p
+SFX J 0 rings [^aeio][aiou]r
+SFX J 0 sings [^aeio][aeiou]s
+SFX J 0 tings [^aeio][aiou]t
+SFX J 0 vings [^aeio][aeiou]v
+SFX J ie yings ie
+SFX J 0 zings [^aeio][aeiou]z
+SFX k Y 8
+SFX k 0 ingly [^aeiou][cl]
+SFX k 0 ingly [^ecl]
+SFX k e ingly [^eioy]e
+SFX k 0 ingly [aeio][aeiou][cl]
+SFX k 0 ingly [eoy]e
+SFX k 0 kingly [^aeio][aeiou]c
+SFX k 0 lingly [^aeio][aeiou]l
+SFX k ie yingly ie
+SFX D Y 25
+SFX D 0 bed [^aeio][aeiou]b
+SFX D 0 d [^e]e
+SFX D e d ee
+SFX D 0 ded [^aeio][aeiou]d
+SFX D 0 ed [^aeiou][bcdfgklmnprstvz]
+SFX D 0 ed [^ebcdfgklmnprstvyz]
+SFX D 0 ed [aeio][aeiou][bcdfgkmnprstvz]
+SFX D 0 ed [aeio][eiou]l
+SFX D 0 ed [aeiou]y
+SFX D 0 ed [aeo]al
+SFX D 0 fed [^aeio][aeiou]f
+SFX D 0 ged [^aeio][aeiou]g
+SFX D y ied [^aeiou]y
+SFX D 0 ked [^aeio][aeiou]c
+SFX D 0 ked [^aeio][aeiou]k
+SFX D 0 led [^aeio][eiou]l
+SFX D 0 led [^aeo]al
+SFX D 0 med [^aeio][aeiou]m
+SFX D 0 ned [^aeio][aeiou]n
+SFX D 0 ped [^aeio][aeiou]p
+SFX D 0 red [^aeio][aeiou]r
+SFX D 0 sed [^aeio][aeiou]s
+SFX D 0 ted [^aeio][aeiou]t
+SFX D 0 ved [^aeio][aeiou]v
+SFX D 0 zed [^aeio][aeiou]z
+SFX d Y 16
+SFX d 0 d e
+SFX d 0 ed [^aeiou][cl]
+SFX d 0 ed [^ecly]
+SFX d 0 ed [aeio][aeiou][cl]
+SFX d 0 ed [aeiou]y
+SFX d y ied [^aeiou]y
+SFX d 0 ing [^aeiou][cl]
+SFX d 0 ing [^ecl]
+SFX d e ing [^eioy]e
+SFX d 0 ing [aeio][aeiou][cl]
+SFX d 0 ing [eoy]e
+SFX d 0 ked [^aeio][aeiou]c
+SFX d 0 king [^aeio][aeiou]c
+SFX d 0 led [^aeio][aeiou]l
+SFX d 0 ling [^aeio][aeiou]l
+SFX d ie ying ie
+SFX h Y 22
+SFX h 0 bedly [^aeio][aeiou]b
+SFX h 0 dedly [^aeio][aeiou]d
+SFX h 0 dly e
+SFX h 0 edly [^aeio]e[nrt]
+SFX h 0 edly [^aeiou][bcdfgklmnprstvz]
+SFX h 0 edly [^ebcdfgklmnprstvyz]
+SFX h 0 edly [aeio][aeiou][bcdfgklmnprstvz]
+SFX h 0 edly [aeiou]y
+SFX h 0 fedly [^aeio][aeiou]f
+SFX h 0 gedly [^aeio][aeiou]g
+SFX h y iedly [^aeiou]y
+SFX h 0 kedly [^aeio][aeiou]c
+SFX h 0 kedly [^aeio][aeiou]k
+SFX h 0 ledly [^aeio][aeiou]l
+SFX h 0 medly [^aeio][aeiou]m
+SFX h 0 nedly [^aeio][aiou]n
+SFX h 0 pedly [^aeio][aeiou]p
+SFX h 0 redly [^aeio][aiou]r
+SFX h 0 sedly [^aeio][aeiou]s
+SFX h 0 tedly [^aeio][aiou]t
+SFX h 0 vedly [^aeio][aeiou]v
+SFX h 0 zedly [^aeio][aeiou]z
+SFX i Y 22
+SFX i 0 bedness [^aeio][aeiou]b
+SFX i 0 dedness [^aeio][aeiou]d
+SFX i 0 dness e
+SFX i 0 edness [^aeio]e[nrt]
+SFX i 0 edness [^aeiou][bcdfgklmnprstvz]
+SFX i 0 edness [^ebcdfgklmnprstvyz]
+SFX i 0 edness [aeio][aeiou][bcdfgklmnprstvz]
+SFX i 0 edness [aeiou]y
+SFX i 0 fedness [^aeio][aeiou]f
+SFX i 0 gedness [^aeio][aeiou]g
+SFX i y iedness [^aeiou]y
+SFX i 0 kedness [^aeio][aeiou]c
+SFX i 0 kedness [^aeio][aeiou]k
+SFX i 0 ledness [^aeio][aeiou]l
+SFX i 0 medness [^aeio][aeiou]m
+SFX i 0 nedness [^aeio][aiou]n
+SFX i 0 pedness [^aeio][aeiou]p
+SFX i 0 redness [^aeio][aiou]r
+SFX i 0 sedness [^aeio][aeiou]s
+SFX i 0 tedness [^aeio][aiou]t
+SFX i 0 vedness [^aeio][aeiou]v
+SFX i 0 zedness [^aeio][aeiou]z
+SFX T Y 42
+SFX T 0 ber [^aeio][aeiou]b
+SFX T 0 best [^aeio][aeiou]b
+SFX T 0 der [^aeio][aeiou]d
+SFX T 0 dest [^aeio][aeiou]d
+SFX T 0 er [^aeiou][bcdfgklmnprstvz]
+SFX T 0 er [^ebcdfgklmnprstvyz]
+SFX T 0 er [aeio][aeiou][bcdfgklmnprstvz]
+SFX T 0 er [aeiou]y
+SFX T 0 est [^aeiou][bcdfgklmnprstvz]
+SFX T 0 est [^ebcdfgklmnprstvyz]
+SFX T 0 est [aeio][aeiou][bcdfgklmnprstvz]
+SFX T 0 est [aeiou]y
+SFX T 0 fer [^aeio][aeiou]f
+SFX T 0 fest [^aeio][aeiou]f
+SFX T 0 ger [^aeio][aeiou]g
+SFX T 0 gest [^aeio][aeiou]g
+SFX T y ier [^aeiou]y
+SFX T y iest [^aeiou]y
+SFX T 0 ker [^aeio][aeiou]c
+SFX T 0 ker [^aeio][aeiou]k
+SFX T 0 kest [^aeio][aeiou]c
+SFX T 0 kest [^aeio][aeiou]k
+SFX T 0 ler [^aeio][aeiou]l
+SFX T 0 lest [^aeio][aeiou]l
+SFX T 0 mer [^aeio][aeiou]m
+SFX T 0 mest [^aeio][aeiou]m
+SFX T 0 ner [^aeio][aeiou]n
+SFX T 0 nest [^aeio][aeiou]n
+SFX T 0 per [^aeio][aeiou]p
+SFX T 0 pest [^aeio][aeiou]p
+SFX T 0 r e
+SFX T 0 rer [^aeio][aeiou]r
+SFX T 0 rest [^aeio][aeiou]r
+SFX T 0 ser [^aeio][aeiou]s
+SFX T 0 sest [^aeio][aeiou]s
+SFX T 0 st e
+SFX T 0 ter [^aeio][aeiou]t
+SFX T 0 test [^aeio][aeiou]t
+SFX T 0 ver [^aeio][aeiou]v
+SFX T 0 vest [^aeio][aeiou]v
+SFX T 0 zer [^aeio][aeiou]z
+SFX T 0 zest [^aeio][aeiou]z
+SFX R Y 72
+SFX R 0 ber [^aeio][aeiou]b
+SFX R 0 ber's [^aeio][aeiou]b
+SFX R 0 bers [^aeio][aeiou]b
+SFX R 0 der [^aeio][aeiou]d
+SFX R 0 der's [^aeio][aeiou]d
+SFX R 0 ders [^aeio][aeiou]d
+SFX R 0 er [^aeiou][bcdfgklmnprstvz]
+SFX R 0 er [^ebcdfgklmnprstvyz]
+SFX R 0 er [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 er [aeio][eiou]l
+SFX R 0 er [aeiou]y
+SFX R 0 er [aeo]al
+SFX R 0 er's [^aeiou][bcdfgklmnprstvz]
+SFX R 0 er's [^ebcdfgklmnprstvyz]
+SFX R 0 er's [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 er's [aeio][eiou]l
+SFX R 0 er's [aeiou]y
+SFX R 0 er's [aeo]al
+SFX R 0 ers [^aeiou][bcdfgklmnprstvz]
+SFX R 0 ers [^ebcdfgklmnprstvyz]
+SFX R 0 ers [aeio][aeiou][bcdfgkmnprstvz]
+SFX R 0 ers [aeio][eiou]l
+SFX R 0 ers [aeiou]y
+SFX R 0 ers [aeo]al
+SFX R 0 fer [^aeio][aeiou]f
+SFX R 0 fer's [^aeio][aeiou]f
+SFX R 0 fers [^aeio][aeiou]f
+SFX R 0 ger [^aeio][aeiou]g
+SFX R 0 ger's [^aeio][aeiou]g
+SFX R 0 gers [^aeio][aeiou]g
+SFX R y ier [^aeiou]y
+SFX R y ier's [^aeiou]y
+SFX R y iers [^aeiou]y
+SFX R 0 ker [^aeio][aeiou]c
+SFX R 0 ker [^aeio][aeiou]k
+SFX R 0 ker's [^aeio][aeiou]c
+SFX R 0 ker's [^aeio][aeiou]k
+SFX R 0 kers [^aeio][aeiou]c
+SFX R 0 kers [^aeio][aeiou]k
+SFX R 0 ler [^aeio][eiou]l
+SFX R 0 ler [^aeo]al
+SFX R 0 ler's [^aeio][eiou]l
+SFX R 0 ler's [^aeo]al
+SFX R 0 lers [^aeio][eiou]l
+SFX R 0 lers [^aeo]al
+SFX R 0 mer [^aeio][aeiou]m
+SFX R 0 mer's [^aeio][aeiou]m
+SFX R 0 mers [^aeio][aeiou]m
+SFX R 0 ner [^aeio][aeiou]n
+SFX R 0 ner's [^aeio][aeiou]n
+SFX R 0 ners [^aeio][aeiou]n
+SFX R 0 per [^aeio][aeiou]p
+SFX R 0 per's [^aeio][aeiou]p
+SFX R 0 pers [^aeio][aeiou]p
+SFX R 0 r e
+SFX R 0 r's e
+SFX R 0 rer [^aeio][aeiou]r
+SFX R 0 rer's [^aeio][aeiou]r
+SFX R 0 rers [^aeio][aeiou]r
+SFX R 0 rs e
+SFX R 0 ser [^aeio][aeiou]s
+SFX R 0 ser's [^aeio][aeiou]s
+SFX R 0 sers [^aeio][aeiou]s
+SFX R 0 ter [^aeio][aeiou]t
+SFX R 0 ter's [^aeio][aeiou]t
+SFX R 0 ters [^aeio][aeiou]t
+SFX R 0 ver [^aeio][aeiou]v
+SFX R 0 ver's [^aeio][aeiou]v
+SFX R 0 vers [^aeio][aeiou]v
+SFX R 0 zer [^aeio][aeiou]z
+SFX R 0 zer's [^aeio][aeiou]z
+SFX R 0 zers [^aeio][aeiou]z
+SFX r Y 24
+SFX r 0 er [^aeiou][cl]
+SFX r 0 er [^ecly]
+SFX r 0 er [aeio][aeiou][cl]
+SFX r 0 er [aeiou]y
+SFX r 0 er's [^aeiou][cl]
+SFX r 0 er's [^ecly]
+SFX r 0 er's [aeio][aeiou][cl]
+SFX r 0 er's [aeiou]y
+SFX r 0 ers [^aeiou][cl]
+SFX r 0 ers [^ecly]
+SFX r 0 ers [aeio][aeiou][cl]
+SFX r 0 ers [aeiou]y
+SFX r y ier [^aeiou]y
+SFX r y ier's [^aeiou]y
+SFX r y iers [^aeiou]y
+SFX r 0 ker [^aeio][aeiou]c
+SFX r 0 ker's [^aeio][aeiou]c
+SFX r 0 kers [^aeio][aeiou]c
+SFX r 0 ler [^aeio][aeiou]l
+SFX r 0 ler's [^aeio][aeiou]l
+SFX r 0 lers [^aeio][aeiou]l
+SFX r 0 r e
+SFX r 0 r's e
+SFX r 0 rs e
+SFX S Y 9
+SFX S 0 es [cs]h
+SFX S 0 es [sxz]
+SFX S y ies [^aeiou]y
+SFX S 0 s [^ae]u
+SFX S 0 s [^cs]h
+SFX S 0 s [^hsuxyz]
+SFX S 0 s [ae]u
+SFX S 0 s [aeiou]y
+SFX S 0 x [ae]u
+SFX P Y 6
+SFX P y iness [^aeiou]y
+SFX P y iness's [^aeiou]y
+SFX P 0 ness [^y]
+SFX P 0 ness [aeiou]y
+SFX P 0 ness's [^y]
+SFX P 0 ness's [aeiou]y
+SFX m Y 20
+SFX m 0 man [^aeiou][bdklmnt]e
+SFX m 0 man [^bdeknmt]
+SFX m 0 man [^bdklmnt]e
+SFX m 0 man's [^aeiou][bdklmnt]e
+SFX m 0 man's [^bdeknmt]
+SFX m 0 man's [^bdklmnt]e
+SFX m 0 men [^aeiou][bdklmnt]e
+SFX m 0 men [^bdeknmt]
+SFX m 0 men [^bdklmnt]e
+SFX m 0 men's [^aeiou][bdklmnt]e
+SFX m 0 men's [^bdeknmt]
+SFX m 0 men's [^bdklmnt]e
+SFX m 0 sman [aeiou][bdklmnt]e
+SFX m 0 sman [bdknmt]
+SFX m 0 sman's [aeiou][bdklmnt]e
+SFX m 0 sman's [bdknmt]
+SFX m 0 smen [aeiou][bdklmnt]e
+SFX m 0 smen [bdknmt]
+SFX m 0 smen's [aeiou][bdklmnt]e
+SFX m 0 smen's [bdknmt]
+SFX 5 Y 15
+SFX 5 0 swoman [aeiou][bdklmnt]e
+SFX 5 0 swoman [bdknmt]
+SFX 5 0 swoman's [aeiou][bdklmnt]e
+SFX 5 0 swoman's [bdknmt]
+SFX 5 0 swomen [aeiou][bdklmnt]e
+SFX 5 0 swomen [bdknmt]
+SFX 5 0 woman [^aeiou][bdklmnt]e
+SFX 5 0 woman [^bdeknmt]
+SFX 5 0 woman [^bdklmnt]e
+SFX 5 0 woman's [^aeiou][bdklmnt]e
+SFX 5 0 woman's [^bdeknmt]
+SFX 5 0 woman's [^bdklmnt]e
+SFX 5 0 women [^aeiou][bdklmnt]e
+SFX 5 0 women [^bdeknmt]
+SFX 5 0 women [^bdklmnt]e
+SFX 6 Y 3
+SFX 6 0 ful [^y]
+SFX 6 0 ful [aeiou]y
+SFX 6 y iful [^aeiou]y
+SFX j Y 3
+SFX j 0 fully [^y]
+SFX j 0 fully [aeiou]y
+SFX j y ifully [^aeiou]y
+SFX p Y 5
+SFX p 0 ess ll
+SFX p y iless [^aeiou]y
+SFX p 0 less [^l]l
+SFX p 0 less [^ly]
+SFX p 0 less [aeiou]y
+SFX Q Y 44
+SFX Q le ilise [^aeiou]le
+SFX Q le ilised [^aeiou]le
+SFX Q le ilises [^aeiou]le
+SFX Q le ilising [^aeiou]le
+SFX Q y ise [^aeiou]y
+SFX Q 0 ise [^aemsy]
+SFX Q 0 ise [^i]s
+SFX Q e ise [^l]e
+SFX Q 0 ise [^u]m
+SFX Q e ise [aeiou]le
+SFX Q 0 ise [aeiou]y
+SFX Q um ise um
+SFX Q y ised [^aeiou]y
+SFX Q 0 ised [^aemsy]
+SFX Q 0 ised [^i]s
+SFX Q e ised [^l]e
+SFX Q 0 ised [^u]m
+SFX Q e ised [aeiou]le
+SFX Q 0 ised [aeiou]y
+SFX Q um ised um
+SFX Q y ises [^aeiou]y
+SFX Q 0 ises [^aemsy]
+SFX Q 0 ises [^i]s
+SFX Q e ises [^l]e
+SFX Q 0 ises [^u]m
+SFX Q e ises [aeiou]le
+SFX Q 0 ises [aeiou]y
+SFX Q um ises um
+SFX Q y ising [^aeiou]y
+SFX Q 0 ising [^aemsy]
+SFX Q 0 ising [^i]s
+SFX Q e ising [^l]e
+SFX Q 0 ising [^u]m
+SFX Q e ising [aeiou]le
+SFX Q 0 ising [aeiou]y
+SFX Q um ising um
+SFX Q s se is
+SFX Q s sed is
+SFX Q s ses is
+SFX Q s sing is
+SFX Q 0 tise a
+SFX Q 0 tised a
+SFX Q 0 tises a
+SFX Q 0 tising a
+SFX 8 Y 44
+SFX 8 le ilize [^aeiou]le
+SFX 8 le ilized [^aeiou]le
+SFX 8 le ilizes [^aeiou]le
+SFX 8 le ilizing [^aeiou]le
+SFX 8 y ize [^aeiou]y
+SFX 8 0 ize [^aemsy]
+SFX 8 0 ize [^i]s
+SFX 8 e ize [^l]e
+SFX 8 0 ize [^u]m
+SFX 8 e ize [aeiou]le
+SFX 8 0 ize [aeiou]y
+SFX 8 um ize um
+SFX 8 y ized [^aeiou]y
+SFX 8 0 ized [^aemsy]
+SFX 8 0 ized [^i]s
+SFX 8 e ized [^l]e
+SFX 8 0 ized [^u]m
+SFX 8 e ized [aeiou]le
+SFX 8 0 ized [aeiou]y
+SFX 8 um ized um
+SFX 8 y izes [^aeiou]y
+SFX 8 0 izes [^aemsy]
+SFX 8 0 izes [^i]s
+SFX 8 e izes [^l]e
+SFX 8 0 izes [^u]m
+SFX 8 e izes [aeiou]le
+SFX 8 0 izes [aeiou]y
+SFX 8 um izes um
+SFX 8 y izing [^aeiou]y
+SFX 8 0 izing [^aemsy]
+SFX 8 0 izing [^i]s
+SFX 8 e izing [^l]e
+SFX 8 0 izing [^u]m
+SFX 8 e izing [aeiou]le
+SFX 8 0 izing [aeiou]y
+SFX 8 um izing um
+SFX 8 0 tize a
+SFX 8 0 tized a
+SFX 8 0 tizes a
+SFX 8 0 tizing a
+SFX 8 s ze is
+SFX 8 s zed is
+SFX 8 s zes is
+SFX 8 s zing is
+SFX q Y 22
+SFX q le ilisation [^aeiou]le
+SFX q le ilisations [^aeiou]le
+SFX q y isation [^aeiou]y
+SFX q 0 isation [^aemsy]
+SFX q 0 isation [^i]s
+SFX q e isation [^l]e
+SFX q 0 isation [^u]m
+SFX q e isation [aeiou]le
+SFX q 0 isation [aeiou]y
+SFX q um isation um
+SFX q y isations [^aeiou]y
+SFX q 0 isations [^aemsy]
+SFX q 0 isations [^i]s
+SFX q e isations [^l]e
+SFX q 0 isations [^u]m
+SFX q e isations [aeiou]le
+SFX q 0 isations [aeiou]y
+SFX q um isations um
+SFX q s sation is
+SFX q s sations is
+SFX q 0 tisation a
+SFX q 0 tisations a
+SFX - Y 22
+SFX - le ilization [^aeiou]le
+SFX - le ilizations [^aeiou]le
+SFX - y ization [^aeiou]y
+SFX - 0 ization [^aemsy]
+SFX - 0 ization [^i]s
+SFX - e ization [^l]e
+SFX - 0 ization [^u]m
+SFX - e ization [aeiou]le
+SFX - 0 ization [aeiou]y
+SFX - um ization um
+SFX - y izations [^aeiou]y
+SFX - 0 izations [^aemsy]
+SFX - 0 izations [^i]s
+SFX - e izations [^l]e
+SFX - 0 izations [^u]m
+SFX - e izations [aeiou]le
+SFX - 0 izations [aeiou]y
+SFX - um izations um
+SFX - 0 tization a
+SFX - 0 tizations a
+SFX - s zation is
+SFX - s zations is
+SFX s Y 33
+SFX s le iliser [^aeiou]le
+SFX s le iliser's [^aeiou]le
+SFX s le ilisers [^aeiou]le
+SFX s y iser [^aeiou]y
+SFX s 0 iser [^aemsy]
+SFX s 0 iser [^i]s
+SFX s e iser [^l]e
+SFX s 0 iser [^u]m
+SFX s e iser [aeiou]le
+SFX s 0 iser [aeiou]y
+SFX s um iser um
+SFX s y iser's [^aeiou]y
+SFX s 0 iser's [^aemsy]
+SFX s 0 iser's [^i]s
+SFX s e iser's [^l]e
+SFX s 0 iser's [^u]m
+SFX s e iser's [aeiou]le
+SFX s 0 iser's [aeiou]y
+SFX s um iser's um
+SFX s y isers [^aeiou]y
+SFX s 0 isers [^aemsy]
+SFX s 0 isers [^i]s
+SFX s e isers [^l]e
+SFX s 0 isers [^u]m
+SFX s e isers [aeiou]le
+SFX s 0 isers [aeiou]y
+SFX s um isers um
+SFX s s ser is
+SFX s s ser's is
+SFX s s sers is
+SFX s 0 tiser a
+SFX s 0 tiser's a
+SFX s 0 tisers a
+SFX 9 Y 33
+SFX 9 le ilizer [^aeiou]le
+SFX 9 le ilizer's [^aeiou]le
+SFX 9 le ilizers [^aeiou]le
+SFX 9 y izer [^aeiou]y
+SFX 9 0 izer [^aemsy]
+SFX 9 0 izer [^i]s
+SFX 9 e izer [^l]e
+SFX 9 0 izer [^u]m
+SFX 9 e izer [aeiou]le
+SFX 9 0 izer [aeiou]y
+SFX 9 um izer um
+SFX 9 y izer's [^aeiou]y
+SFX 9 0 izer's [^aemsy]
+SFX 9 0 izer's [^i]s
+SFX 9 e izer's [^l]e
+SFX 9 0 izer's [^u]m
+SFX 9 e izer's [aeiou]le
+SFX 9 0 izer's [aeiou]y
+SFX 9 um izer's um
+SFX 9 y izers [^aeiou]y
+SFX 9 0 izers [^aemsy]
+SFX 9 0 izers [^i]s
+SFX 9 e izers [^l]e
+SFX 9 0 izers [^u]m
+SFX 9 e izers [aeiou]le
+SFX 9 0 izers [aeiou]y
+SFX 9 um izers um
+SFX 9 0 tizer a
+SFX 9 0 tizer's a
+SFX 9 0 tizers a
+SFX 9 s zer is
+SFX 9 s zer's is
+SFX 9 s zers is
+SFX t Y 22
+SFX t le ilisability [^aeiou]le
+SFX t le ilisable [^aeiou]le
+SFX t y isability [^aeiou]y
+SFX t 0 isability [^aemsy]
+SFX t 0 isability [^i]s
+SFX t e isability [^l]e
+SFX t 0 isability [^u]m
+SFX t e isability [aeiou]le
+SFX t 0 isability [aeiou]y
+SFX t um isability um
+SFX t y isable [^aeiou]y
+SFX t 0 isable [^aemsy]
+SFX t 0 isable [^i]s
+SFX t e isable [^l]e
+SFX t 0 isable [^u]m
+SFX t e isable [aeiou]le
+SFX t 0 isable [aeiou]y
+SFX t um isable um
+SFX t s sability is
+SFX t s sable is
+SFX t 0 tisability a
+SFX t 0 tisable a
+SFX + Y 22
+SFX + le ilizability [^aeiou]le
+SFX + le ilizable [^aeiou]le
+SFX + y izability [^aeiou]y
+SFX + 0 izability [^aemsy]
+SFX + 0 izability [^i]s
+SFX + e izability [^l]e
+SFX + 0 izability [^u]m
+SFX + e izability [aeiou]le
+SFX + 0 izability [aeiou]y
+SFX + um izability um
+SFX + y izable [^aeiou]y
+SFX + 0 izable [^aemsy]
+SFX + 0 izable [^i]s
+SFX + e izable [^l]e
+SFX + 0 izable [^u]m
+SFX + e izable [aeiou]le
+SFX + 0 izable [aeiou]y
+SFX + um izable um
+SFX + 0 tizability a
+SFX + 0 tizable a
+SFX + s zability is
+SFX + s zable is
+SFX M Y 1
+SFX M 0 's .
+SFX B Y 48
+SFX B e ability [^a]te
+SFX B e ability [^acegilotu]e
+SFX B 0 ability [^aeiou][bcdfgklmnprstvz]
+SFX B 0 ability [^ebcdfgklmnprstvzy]
+SFX B 0 ability [acegilou]e
+SFX B 0 ability [aeio][aeiou][bcdfgklmnprstvz]
+SFX B 0 ability [aeiou]y
+SFX B e able [^a]te
+SFX B e able [^acegilotu]e
+SFX B 0 able [^aeiou][bcdfgklmnprstvz]
+SFX B 0 able [^ebcdfgklmnprstvzy]
+SFX B 0 able [acegilou]e
+SFX B 0 able [aeio][aeiou][bcdfgklmnprstvz]
+SFX B 0 able [aeiou]y
+SFX B 0 bability [^aeio][aeiou]b
+SFX B 0 bable [^aeio][aeiou]b
+SFX B te bility ate
+SFX B te ble ate
+SFX B 0 dability [^aeio][aeiou]d
+SFX B 0 dable [^aeio][aeiou]d
+SFX B 0 fability [^aeio][aeiou]f
+SFX B 0 fable [^aeio][aeiou]f
+SFX B 0 gability [^aeio][aeiou]g
+SFX B 0 gable [^aeio][aeiou]g
+SFX B y iability [^aeiou]y
+SFX B y iable [^aeiou]y
+SFX B 0 kability [^aeio][aeiou]c
+SFX B 0 kability [^aeio][aeiou]k
+SFX B 0 kable [^aeio][aeiou]c
+SFX B 0 kable [^aeio][aeiou]k
+SFX B 0 lability [^aeio][aeiou]l
+SFX B 0 lable [^aeio][aeiou]l
+SFX B 0 mability [^aeio][aeiou]m
+SFX B 0 mable [^aeio][aeiou]m
+SFX B 0 nability [^aeio][aeiou]n
+SFX B 0 nable [^aeio][aeiou]n
+SFX B 0 pability [^aeio][aeiou]p
+SFX B 0 pable [^aeio][aeiou]p
+SFX B 0 rability [^aeio][aeiou]r
+SFX B 0 rable [^aeio][aeiou]r
+SFX B 0 sability [^aeio][aeiou]s
+SFX B 0 sable [^aeio][aeiou]s
+SFX B 0 tability [^aeio][aeiou]t
+SFX B 0 table [^aeio][aeiou]t
+SFX B 0 vability [^aeio][aeiou]v
+SFX B 0 vable [^aeio][aeiou]v
+SFX B 0 zability [^aeio][aeiou]z
+SFX B 0 zable [^aeio][aeiou]z
+SFX 7 Y 9
+SFX 7 0 able [^acegilou]e
+SFX 7 0 able [^aeiou][cl]
+SFX 7 0 able [^cely]
+SFX 7 e able [acegilou]e
+SFX 7 0 able [aeio][aeiou][cl]
+SFX 7 0 able [aeiou]y
+SFX 7 y iable [^aeiou]y
+SFX 7 0 kable [^aeio][aeiou]c
+SFX 7 0 lable [^aeio][aeiou]l
+SFX g Y 9
+SFX g e ability [^acegilou]e
+SFX g 0 ability [^aeiou][cl]
+SFX g 0 ability [^cely]
+SFX g 0 ability [acegilou]e
+SFX g 0 ability [aeio][aeiou][cl]
+SFX g 0 ability [aeiou]y
+SFX g y iability [^aeiou]y
+SFX g 0 kability [^aeio][aeiou]c
+SFX g 0 lability [^aeio][aeiou]l
+SFX l Y 9
+SFX l e ably [^acegilou]e
+SFX l 0 ably [^aeiou][cl]
+SFX l 0 ably [^cely]
+SFX l 0 ably [acegilou]e
+SFX l 0 ably [aeio][aeiou][cl]
+SFX l 0 ably [aeiou]y
+SFX l y iably [^aeiou]y
+SFX l 0 kably [^aeio][aeiou]c
+SFX l 0 lably [^aeio][aeiou]l
+SFX b Y 3
+SFX b e ible [^aeiou]e
+SFX b 0 ible [^e]
+SFX b 0 ible [aeiou]e
+SFX L Y 12
+SFX L 0 ament m
+SFX L 0 ament's m
+SFX L 0 aments m
+SFX L y iment [^aeiou]y
+SFX L y iment's [^aeiou]y
+SFX L y iments [^aeiou]y
+SFX L 0 ment [^my]
+SFX L 0 ment [aeiou]y
+SFX L 0 ment's [^my]
+SFX L 0 ment's [aeiou]y
+SFX L 0 ments [^my]
+SFX L 0 ments [aeiou]y
+SFX Z Y 22
+SFX Z 0 by [^aeio][aeiou]b
+SFX Z 0 dy [^aeio][aeiou]d
+SFX Z 0 ey [aiouy]
+SFX Z 0 fy [^aeio][aeiou]f
+SFX Z 0 gy [^aeio][aeiou]g
+SFX Z 0 ky [^aeio][aeiou]c
+SFX Z 0 ky [^aeio][aeiou]k
+SFX Z 0 ly [^aeio][aeiou]l
+SFX Z 0 my [^aeio][aeiou]m
+SFX Z 0 ny [^aeio][aiou]n
+SFX Z 0 py [^aeio][aeiou]p
+SFX Z 0 ry [^aeio][aiou]r
+SFX Z 0 sy [^aeio][aeiou]s
+SFX Z 0 ty [^aeio][aiou]t
+SFX Z 0 vy [^aeio][aeiou]v
+SFX Z 0 y [^aebcdfgiklmnoprstuvyz]
+SFX Z 0 y [^aeio]e[nrt]
+SFX Z 0 y [^aeiou][bcdfgklmnprstvz]
+SFX Z e y [^aeiouy]e
+SFX Z 0 y [aeio][aeiou][bcdfgklmnprstvz]
+SFX Z 0 y [aeiouy]e
+SFX Z 0 zy [^aeio][aeiou]z
+SFX 2 Y 21
+SFX 2 0 biness [^aeio][aeiou]b
+SFX 2 0 diness [^aeio][aeiou]d
+SFX 2 0 finess [^aeio][aeiou]f
+SFX 2 0 giness [^aeio][aeiou]g
+SFX 2 0 iness [^aeio]e[nrt]
+SFX 2 0 iness [^aeiou][bcdfgklmnprstvz]
+SFX 2 e iness [^aeiouy]e
+SFX 2 0 iness [^ebcdfgklmnprstvz]
+SFX 2 0 iness [aeio][aeiou][bcdfgklmnprstvz]
+SFX 2 0 iness [aeiouy]e
+SFX 2 0 kiness [^aeio][aeiou]c
+SFX 2 0 kiness [^aeio][aeiou]k
+SFX 2 0 liness [^aeio][aeiou]l
+SFX 2 0 miness [^aeio][aeiou]m
+SFX 2 0 niness [^aeio][aiou]n
+SFX 2 0 piness [^aeio][aeiou]p
+SFX 2 0 riness [^aeio][aiou]r
+SFX 2 0 siness [^aeio][aeiou]s
+SFX 2 0 tiness [^aeio][aiou]t
+SFX 2 0 viness [^aeio][aeiou]v
+SFX 2 0 ziness [^aeio][aeiou]z
+SFX z Y 24
+SFX z 0 bily [^aeio][aeiou]b
+SFX z 0 dily [^aeio][aeiou]d
+SFX z 0 fily [^aeio][aeiou]f
+SFX z 0 gily [^aeio][aeiou]g
+SFX z 0 ily [^aeio]e[nrt]
+SFX z 0 ily [^aeiou][bcdfgklmnprstvyz]
+SFX z y ily [^aeiou]y
+SFX z e ily [^aeiouy]e
+SFX z 0 ily [^ebcdfgklmnprstvyz]
+SFX z 0 ily [aeio][aeiou][bcdfgklmnprstvyz]
+SFX z 0 ily [aeiouy]e
+SFX z 0 ily [aiou]y
+SFX z ey ily ey
+SFX z 0 kily [^aeio][aeiou]c
+SFX z 0 kily [^aeio][aeiou]k
+SFX z 0 lily [^aeio][aeiou]l
+SFX z 0 mily [^aeio][aeiou]m
+SFX z 0 nily [^aeio][aiou]n
+SFX z 0 pily [^aeio][aeiou]p
+SFX z 0 rily [^aeio][aiou]r
+SFX z 0 sily [^aeio][aeiou]s
+SFX z 0 tily [^aeio][aiou]t
+SFX z 0 vily [^aeio][aeiou]v
+SFX z 0 zily [^aeio][aeiou]z
+SFX y Y 15
+SFX y 0 ary ion
+SFX y e ary se
+SFX y 0 atory [^i]m
+SFX y e atory [mr]e
+SFX y 0 ery h
+SFX y im matory im
+SFX y 0 nery [aiu]n
+SFX y 0 ory [^aeous]t
+SFX y 0 ory s
+SFX y e ory te
+SFX y 0 ry [^aiou]n
+SFX y 0 ry [^ehmstn]
+SFX y 0 ry [^i]on
+SFX y 0 ry [^mrst]e
+SFX y 0 ry [aeous]t
+SFX O Y 12
+SFX O 0 al [^aebcrtxmy]
+SFX O e al [^bcgv]e
+SFX O 0 al [^ipux]t
+SFX O 0 al [^u]m
+SFX O y al ty
+SFX O um al um
+SFX O y ial [^t]y
+SFX O e ial [bcgv]e
+SFX O 0 ial [bcrx]
+SFX O 0 l a
+SFX O 0 tal [iu]t
+SFX O 0 ual [px]t
+SFX o Y 12
+SFX o 0 ally [^aebcrtxmy]
+SFX o e ally [^bcgv]e
+SFX o 0 ally [^ipux]t
+SFX o 0 ally [^u]m
+SFX o y ally ty
+SFX o um ally um
+SFX o y ially [^t]y
+SFX o e ially [bcgv]e
+SFX o 0 ially [bcrx]
+SFX o 0 lly a
+SFX o 0 tally [iu]t
+SFX o 0 ually [px]t
+SFX W Y 21
+SFX W 0 atic [aeiou]m
+SFX W e atic me
+SFX W y etic thy
+SFX W 0 ic [^aeiou]m
+SFX W 0 ic [^aelmrsy]
+SFX W 0 ic [^ay]l
+SFX W e ic [^b]le
+SFX W e ic [^clms]e
+SFX W 0 ic [^e]r
+SFX W y ic [^hs]y
+SFX W a ic [^m]a
+SFX W y ic [^t]hy
+SFX W le ic ble
+SFX W us ic us
+SFX W 0 lic [ay]l
+SFX W er ric er
+SFX W 0 tic [^u]s
+SFX W 0 tic ma
+SFX W se tic se
+SFX W y tic sy
+SFX W ce tific ce
+SFX w Y 9
+SFX w 0 atical [aeiou]m
+SFX w 0 ical [^aeiou]m
+SFX w 0 ical [^aemry]
+SFX w 0 ical [^e]r
+SFX w a ical [^m]a
+SFX w e ical e
+SFX w y ical y
+SFX w er rical er
+SFX w 0 tical ma
+SFX 1 Y 9
+SFX 1 0 atically [aeiou]m
+SFX 1 0 ically [^aeiou]m
+SFX 1 0 ically [^aemry]
+SFX 1 0 ically [^e]r
+SFX 1 a ically [^m]a
+SFX 1 e ically e
+SFX 1 y ically y
+SFX 1 er rically er
+SFX 1 0 tically ma
+SFX 3 Y 27
+SFX 3 e ist [^aceiou]e
+SFX 3 y ist [^aeioubp]y
+SFX 3 0 ist [^eoy]
+SFX 3 0 ist [^r][^a][aeioubp]y
+SFX 3 0 ist [aeiou]e
+SFX 3 y ist apy
+SFX 3 o ist o
+SFX 3 y ist ropy
+SFX 3 e ist's [^aceiou]e
+SFX 3 y ist's [^aeioubp]y
+SFX 3 0 ist's [^eoy]
+SFX 3 0 ist's [^r][^a][aeioubp]y
+SFX 3 0 ist's [aeiou]e
+SFX 3 y ist's apy
+SFX 3 o ist's o
+SFX 3 y ist's ropy
+SFX 3 e ists [^aceiou]e
+SFX 3 y ists [^aeioubp]y
+SFX 3 0 ists [^eoy]
+SFX 3 0 ists [^r][^a][aeioubp]y
+SFX 3 0 ists [aeiou]e
+SFX 3 y ists apy
+SFX 3 o ists o
+SFX 3 y ists ropy
+SFX 3 ce tist ce
+SFX 3 ce tist's ce
+SFX 3 ce tists ce
+
+BREAK 3
+BREAK —
+BREAK –
+BREAK -
+
+ICONV 6
+ICONV ’ '
+ICONV ffi ffi
+ICONV ffl ffl
+ICONV ff ff
+ICONV fi fi
+ICONV fl fl
+
+OCONV 1
+OCONV ' ’
+
+# PHONEtic_english.h - #PHONEtic transformation rules for use with #PHONEtic.c
+# Copyright (C) 2000 Björn Jacke
+#
+# This rule set is based on Lawrence Phillips original metaPHONE
+# algorithm with modifications made by Michael Kuhn in his
+# C implantation, more modifications by Björn Jacke when
+# converting the algorithm to a rule set and minor
+# touch ups by Kevin Atkinson
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1 as published by the Free Software Foundation;
+#
+# This library 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
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# Björn Jacke may be reached by email at bjoern.jacke@gmx.de
+#
+# Changelog:
+#
+# 2000-01-05 Björn Jacke <bjoern.jacke@gmx.de>
+# - first version with translation rules derived from
+# metaPHONE.cc distributed with aspell 0.28.3
+# - "TH" is now representated as "@" because "0" is a
+# meta character
+# - removed TH(!vowel) --> T; always use TH --> # instead
+# - dropped "^AE" -> "E" (redundant)
+# - "ing" is transformed to "N", not "NK"
+# - "SCH(EO)" transforms to "SK" now
+# - added R --> SILENT if (after a vowel) and no (vowel or
+# "y" follows) like in "Marcy" or "abort"
+# - H is SILENT in RH at beginning of words
+# - H is SILENT if vowel leads and "Y" follows
+# - some ".OUGH.." --> ...F exceptions added
+# - "^V" transforms to "W"
+# 2000-01-07 Kevin Atkinson <kevinatk@home.com>
+# Converted from header to data file.
+#
+# 2007-08-23 László Németh <nemeth AT OOo>
+# Add PHONE header and #PHONE keywords
+#
+# 2010-03-09 László Németh <nemeth AT OOo>
+# Temporarily removing acuted character É
+# because of the missing UTF-8 support
+#
+# version 1.1
+
+# Documentation: http://aspell.net/man-html/PHONEtic-Code.html
+
+PHONE 104
+PHONE AH(AEIOUY)-^ *H
+PHONE AR(AEIOUY)-^ *R
+PHONE A(HR)^ *
+PHONE A^ *
+PHONE AH(AEIOUY)- H
+PHONE AR(AEIOUY)- R
+PHONE A(HR) _
+PHONE BB- _
+PHONE B B
+PHONE CQ- _
+PHONE CIA X
+PHONE CH X
+PHONE C(EIY)- S
+PHONE CK K
+PHONE COUGH^ KF
+PHONE CC< C
+PHONE C K
+PHONE DG(EIY) K
+PHONE DD- _
+PHONE D T
+PHONE EH(AEIOUY)-^ *H
+PHONE ER(AEIOUY)-^ *R
+PHONE E(HR)^ *
+PHONE ENOUGH^$ *NF
+PHONE E^ *
+PHONE EH(AEIOUY)- H
+PHONE ER(AEIOUY)- R
+PHONE E(HR) _
+PHONE FF- _
+PHONE F F
+PHONE GN^ N
+PHONE GN$ N
+PHONE GNS$ NS
+PHONE GNED$ N
+PHONE GH(AEIOUY)- K
+PHONE GH _
+PHONE GG9 K
+PHONE G K
+PHONE H H
+PHONE IH(AEIOUY)-^ *H
+PHONE IR(AEIOUY)-^ *R
+PHONE I(HR)^ *
+PHONE I^ *
+PHONE ING6 N
+PHONE IH(AEIOUY)- H
+PHONE IR(AEIOUY)- R
+PHONE I(HR) _
+PHONE J K
+PHONE KN^ N
+PHONE KK- _
+PHONE K K
+PHONE LAUGH^ LF
+PHONE LL- _
+PHONE L L
+PHONE MB$ M
+PHONE MM M
+PHONE M M
+PHONE NN- _
+PHONE N N
+PHONE OH(AEIOUY)-^ *H
+PHONE OR(AEIOUY)-^ *R
+PHONE O(HR)^ *
+PHONE O^ *
+PHONE OH(AEIOUY)- H
+PHONE OR(AEIOUY)- R
+PHONE O(HR) _
+PHONE PH F
+PHONE PN^ N
+PHONE PP- _
+PHONE P P
+PHONE Q K
+PHONE RH^ R
+PHONE ROUGH^ RF
+PHONE RR- _
+PHONE R R
+PHONE SCH(EOU)- SK
+PHONE SC(IEY)- S
+PHONE SH X
+PHONE SI(AO)- X
+PHONE SS- _
+PHONE S S
+PHONE TI(AO)- X
+PHONE TH @
+PHONE TCH-- _
+PHONE TOUGH^ TF
+PHONE TT- _
+PHONE T T
+PHONE UH(AEIOUY)-^ *H
+PHONE UR(AEIOUY)-^ *R
+PHONE U(HR)^ *
+PHONE U^ *
+PHONE UH(AEIOUY)- H
+PHONE UR(AEIOUY)- R
+PHONE U(HR) _
+PHONE V^ W
+PHONE V F
+PHONE WR^ R
+PHONE WH^ W
+PHONE W(AEIOU)- W
+PHONE X^ S
+PHONE X KS
+PHONE Y(AEIOU)- Y
+PHONE ZZ- _
+PHONE Z S
+
+#The rules in a different view:
+#
+# Exceptions:
+#
+# Beginning of word: "gn", "kn-", "pn-", "wr-" ----> drop first letter
+# "Aebersold", "Gnagy", "Knuth", "Pniewski", "Wright"
+#
+# Beginning of word: "x" ----> change to "s"
+# as in "Deng Xiaopeng"
+#
+# Beginning of word: "wh-" ----> change to "w"
+# as in "Whalen"
+# Beginning of word: leading vowels are transformed to "*"
+#
+# "[crt]ough" and "enough" are handled separately because of "F" sound
+#
+#
+# A --> A at beginning
+# _ otherwise
+#
+# B --> B unless at the end of word after "m", as in "dumb", "McComb"
+#
+# C --> X (sh) if "-cia-" or "-ch-"
+# S if "-ci-", "-ce-", or "-cy-"
+# SILENT if "-sci-", "-sce-", or "-scy-", or "-cq-"
+# K otherwise, including in "-sch-"
+#
+# D --> K if in "-dge-", "-dgy-", or "-dgi-"
+# T otherwise
+#
+# E --> A at beginnig
+# _ SILENT otherwise
+#
+# F --> F
+#
+# G --> SILENT if in "-gh-" and not at end or before a vowel
+# in "-gn" or "-gned" or "-gns"
+# in "-dge-" etc., as in above rule
+# K if before "i", or "e", or "y" if not double "gg"
+#
+# K otherwise (incl. "GG"!)
+#
+# H --> SILENT if after vowel and no vowel or "Y" follows
+# or after "-ch-", "-sh-", "-ph-", "-th-", "-gh-"
+# or after "rh-" at beginning
+# H otherwise
+#
+# I --> A at beginning
+# _ SILENT otherwise
+#
+# J --> K
+#
+# K --> SILENT if after "c"
+# K otherwise
+#
+# L --> L
+#
+# M --> M
+#
+# N --> N
+#
+# O --> A at beginning
+# _ SILENT otherwise
+#
+# P --> F if before "h"
+# P otherwise
+#
+# Q --> K
+#
+# R --> SILENT if after vowel and no vowel or "Y" follows
+# R otherwise
+#
+# S --> X (sh) if before "h" or in "-sio-" or "-sia-"
+# SK if followed by "ch(eo)" (SCH(EO))
+# S otherwise
+#
+# T --> X (sh) if "-tia-" or "-tio-"
+# 0 (th) if before "h"
+# silent if in "-tch-"
+# T otherwise
+#
+# U --> A at beginning
+# _ SILENT otherwise
+#
+# V --> V if first letter of word
+# F otherwise
+#
+# W --> SILENT if not followed by a vowel
+# W if followed by a vowel
+#
+# X --> KS
+#
+# Y --> SILENT if not followed by a vowel
+# Y if followed by a vowel
+#
+# Z --> S
+
diff --git a/dictionaries/en/en_ZA.dic b/dictionaries/en/en_ZA.dic
new file mode 100644
index 0000000..dede1ae
--- /dev/null
+++ b/dictionaries/en/en_ZA.dic
@@ -0,0 +1,53537 @@
+53536
+'mongst
+'neath
+'strewth
+'struth
+'twas
+'twixt
+.NET
+3GPP/M
+5fm
+A
+A-levels
+a/o
+AA
+AAA
+Aachen/M
+Aalwynfleur
+Aandrus
+aardvark/MS
+aardwolf/M
+aardwolves
+Aarhus/M
+Aaron/M
+Aaronvitch/M
+Ababa/M
+aback
+abacus/MS
+abaft
+abakhwetha/S
+abalone/MS
+abandon/dSL
+abandoner/M
+Abaphehli
+abase/DLSG
+abaser/M
+abash/LDhGS
+abashed/UY
+abate/DGLS
+abated/U
+abater/M
+abattoir/SM
+abba
+Abba/M
+abbé/S
+abbess/SM
+abbey/SM
+abbot/SM
+Abbotsdale
+Abbotsford
+Abbotspoort
+Abbott/M
+abbreviate/nDSGN
+abbreviated/U
+abbreviation/M
+abdicate/GDSnN
+abdication/M
+abdomen/MS
+abdominal/YS
+abduct/SGD
+abduction/MS
+abductor/SM
+Abdul/M
+Abe/M
+abeam
+Abel/M
+Abelard/M
+Abelson/M
+Aberconwy/M
+Aberdeen/M
+Aberdeenshire/M
+Abernathy/M
+aberrant/Y
+aberration/SM
+Aberystwyth/M
+ABET
+abet/DSG
+abettor/MS
+abeyance/SM
+abeyant
+abhor/GDS
+abhorrence/MS
+abhorrent/Y
+abhorrer/M
+abidance/MS
+abide/GDSk
+abider/M
+Abidjan
+Abigail/M
+Abilene/M
+ability/ISEM
+abject/PY
+abjection/SM
+abjectness/S
+abjuration/M
+abjure/DRSnyGN
+Abkhazian
+ablate/DSG
+ablation/M
+ablaze
+able-bodied
+able/TvNnVY
+abler/E
+abloom
+ablution/MS
+abnegate/DGnSN
+abnegation/M
+abnormal/Y
+abnormality/SM
+aboard
+abode/MS
+abolish/SLRDG
+abolition/MS3
+abolitionism/MS
+abolitionist
+abominable/Y
+abominate/SGNDn
+abomination/M
+aboriginal
+Aboriginals
+aborigine/oSM
+abort/uVvDGS
+aborter
+abortion/M3S
+abortionist
+abortive/P
+abound/GSD
+about
+above
+aboveboard
+aboveground
+abracadabra/S
+abrade/uGXVDSNv
+abrader/M
+Abraham/M
+Abram/M
+abrasion/M
+abrasive/SM
+abrasiveness/S
+abreaction/MS
+abreast
+abridge/GDLS
+abridged/U
+abridger/M
+abroad
+abrogate/SGnND
+abrogation/M
+abrogator/SM
+abrupt/PYT
+abruptness/S
+abs/M
+ABSA
+abscess/SDGM
+abscissa/SM
+abscissae
+abscission/SM
+abscond/RSDG
+abseil/SDG
+abseiler
+absence/MS
+absent-minded/Y
+absent-mindedness/S
+absent/DYG
+absentee/MS
+absenteeism/MS
+absenter
+absentia/M
+absinthe/MS
+absolute/P3TSY
+absoluteness/S
+absolution/MS
+absolutism/SM
+absolve/DGS
+absolver/M
+absorb/DRkSXVGN
+absorbed/UA
+absorbency/MS
+absorbent/M
+absorbs/A
+absorption/M
+absorptivity/M
+abstain/RSDG
+abstemious/PY
+abstemiousness/S
+abstention/SM
+abstinence/MS
+abstinent/Y
+abstract/iDTPGYhVS
+abstracted/P
+abstractedness/S
+abstracter/M
+abstraction/M3S
+abstractionism/M
+abstractionist
+abstractness/S
+abstractor/SM
+abstruse/PTY
+abstruseness/S
+absurd/TYP
+absurdity/MS
+absurdness/S
+Abu/M
+Abuja/M
+abundance/MS
+abundant/Y
+abusable
+abuse/ESGD
+abuser/MS
+abusive/PY
+abusiveness/S
+abut/RLSDG
+abuzz
+abysmal/Y
+abyss/MS
+abyssal
+Abyssinia/M
+Abyssinian
+Ac
+AC
+acacia/SM
+Acaciaville
+academe/w1SMZ
+academia/SM
+academic/S
+academician/MS
+academicianship
+academy/WSM
+Acadia
+acanthus/SM
+Acapulco/M
+ACAS
+acc.
+accede/DSG
+accelerate/DNGVkSn
+acceleration/M
+accelerator/MS
+accelerometer/MS
+accent/MDGS
+accented/U
+accentual/Y
+accentuate/DGnSN
+accentuation/M
+accept/lDRVGkBhS
+acceptabilities
+acceptability's
+acceptability/U
+acceptable/P
+acceptableness/S
+acceptably/U
+acceptance/MS
+acceptant
+accepted/U
+acceptingness
+acceptor/SM
+access/MSyXGNDb
+accessibility/MIS
+accessible/YI
+accessibly/I
+accession/MGD
+accessors
+accessory/SM
+accidence/M
+accident-prone
+accident/oSM
+accidental/PS
+acclaim/SGD
+acclaimer/M
+acclamation/MS
+acclimate/GN9SQ8sDn
+acclimation/M
+acclimatisation
+acclimatise/ASDG
+acclimatization
+acclimatize/ASDG
+acclivity/SM
+accolade/MSDG
+accommodate/DkVGNuSn
+accommodating/U
+accommodation/M
+accommodative/P
+accompanied/U
+accompanier/M
+accompany/LG3DS
+accomplice/SM
+accomplish/RLSDG
+accomplished/U
+accord/SMDkRG
+accordance/MS
+accordant/Y
+accordion/3SM
+accordionist
+accost/GDS
+account/BSlGMD
+accountabilities
+accountability/MU
+accountable/P
+accountably/U
+accountancy/SM
+accountant/SM
+accounted/U
+accounting/M
+accoutre/DLSG
+Accra/M
+accredit/ndS
+accreditation/M
+accredited/U
+accreted
+accretion/MS
+accrual/MS
+accrue/DSG
+acct
+acculturate/NVnDGS
+acculturation/M
+accumulate/SGNVvDnu
+accumulation/M
+accumulative/P
+accumulator/SM
+accuracy/IMS
+accurate/PY
+accurately/I
+accurateness/S
+accursed/YP
+accursedness/S
+accusal/M
+accusation/M
+accusative/S
+accusatory
+accuse/RGknDS
+accused/M
+accustom/dS
+accustomed/U
+accustomedness/M
+ace/MSnVNvu
+acer
+Acer
+acerbate/SDG
+acerbic/Y
+acerbity/SM
+acetaminophen/S
+acetate/MS
+acetic
+acetone/MS
+acetylene/MS
+Achaean/M
+ache/SZDMGk
+ached/KAF
+achene/MS
+aches/KAF
+achievable/U
+achieve/RGfSD
+achieved/cU
+achievement/MS
+achiever/cS
+achieves/c
+achieving/c
+Achilles
+Achinese
+aching/KY
+achromatic
+achy/TK
+acid/YMPWS
+acidification/M
+acidify/SGDN
+acidity/MS
+acidophiles
+acidoses
+acidosis/M
+acidulous
+Ackerman/M
+Ackerville
+acknowledge/SGhLDR
+acknowledgeable
+acknowledged/U
+ACM
+acme/SM
+acne/MSD
+Acoli
+acolyte/MS
+aconite/MS
+acorn/MS
+Acornhoek
+acoustic/SY
+acoustical
+acoustician/M
+acoustics/M
+acquaint/ASGD
+acquaintance/SM
+acquaintanceship/S
+acquainted/U
+acquiesce/SDG
+acquiescence/SM
+acquiescent/Y
+acquirable
+acquire/DLSG
+acquired/A
+acquires/A
+acquiring/A
+acquisition's/A
+acquisition/SM
+acquisitive/PY
+acquisitiveness/S
+acquit/SDG
+acquittal/SM
+acquittance/M
+acquitter/M
+acre/SM
+acreage/MS
+acrid/YP
+acridity/SM
+acridness/S
+acrimonious/PY
+acrimoniousness/S
+acrimony/SM
+acrobat/1SMW
+acrobatic/S
+acrobatics/M
+acronym/SM
+acrophobia/MS
+acropolis/MS
+across
+acrostic/SM
+acrylate/M
+acrylic/S
+act's
+act/cD4SGA
+actinic
+actinide/SM
+actinium/M
+actinometer/SM
+action's/AI4
+action/7DGM
+actions/4AI
+activate/CnIDAGN
+activates/CI
+activation/IMAC
+activator/MS
+active/nN3SP
+actively/IA
+activeness/S
+activism/MS
+activities/I
+activity's/I
+activity/IA
+Acton/M
+Actonville
+actor/S4MA
+actress/MS
+actual/QqY-8S
+actuality/SM
+actuarial
+actuary/MoS
+actuate/NGDSn
+actuation/M
+actuator/MS
+acuity/SM
+acumen/SM
+acupressure/S
+acupuncture/S3M
+acute/TPY
+acuteness/S
+acyclic/Y
+acyclovir/S
+ad/M
+adage/MS
+adagio/S
+Adair/M
+Adalah
+Adam/MS
+adamant/YS
+Adamayview
+Adamson/M
+Adangme
+adapt/niBNRVvuSDG
+adaptability/MS
+adaptation/M
+adapted/P
+adaptive/P
+adaptivity
+adaptor/S
+ADC
+add-on/S
+add/7DRGS
+addend/SM
+addenda
+addendum/M
+addict/GuDVS
+addiction/SM
+Addington
+Addis
+Addison/M
+addition/MSo
+additional
+additive/MSY
+additivity
+addle/GDS
+Addney
+Addo
+address's
+address/aGADS
+addressability
+addressable
+addressee/SM
+addresser/MS
+adduce/SDNVbG
+adducer/M
+adduct/DSG
+adduction/M
+adductor/M
+Adelaide/M
+Adele/M
+Aden/M
+Adenauer/M
+Adendorp
+adenine/M
+adenoid/S
+adenoidal
+adept/PTYS
+adeptness/S
+adequacy/IMS
+adequate/PIY
+adequateness/IS
+adhere/RSDG
+adherence/MS
+adherent/SYM
+adhesion/MS
+adhesive/PSYM
+adhesiveness/S
+adiabatic/Y
+adieu/S
+adiós
+adipose/S
+Adirondack/S
+adjacency/MS
+adjacent/Y
+adjectival/Y
+adjective/SM
+adjoin/DGS
+adjourn/GLSD
+adjudge/DGS
+adjudicate/SDVyGnN
+adjudication/M
+adjudicator/MS
+adjunct/VSMY
+adjuration/M
+adjure/SGDnN
+adjust/VLG7lRSD
+adjusted/UA
+adjustor's
+adjusts/A
+adjutant/MS
+Adkins
+Adler/M
+adman/M
+admen
+admin
+administer/ndSN
+administrable
+administrate/DvGSV
+administration/M
+administrator/SM
+administratrix/M
+admirable/P
+admiral/MS
+admiralty/MS
+admiration/M
+admire/NDlnGkRS
+admissibility/ISM
+admissible/Y
+admission/AM
+admit/NXDGAS
+admittance/MS
+admitted/Y
+admixture/MS
+admonish/SLDGk
+admonisher/M
+admonition/MS
+admonitory
+ado/M
+adobe/MVvSNX
+adolescence/MS
+adolescences/K
+adolescent/MYS
+Adolph/M
+Adonis/M
+adopt/7DGRS
+adopted/UA
+adoption/M
+adopts/A
+adorable/P
+adorableness/S
+adoration/M
+adore/nDkSNRlG
+adorn/DGLS
+adorned/U
+adrenal/Y
+adrenalin
+adrenaline/MS
+Adriaanse
+Adrian/M
+Adriatic/M
+Adrienne/M
+adrift
+adroit/TPY
+adroitness/S
+ads/A
+ADSL
+adsorb/SXVvDGN
+adsorbate/M
+adsorbent
+adsorption/M
+ADte
+adulate/NyDGSn
+adulation/M
+adulator/MS
+adult/PSMY
+adulterant/MS
+adulterate/NSGnD
+adulterated/U
+adulteration/M
+adulterer/MS
+adulteress/MS
+adulterous/Y
+adultery/SM
+adulthood/MS
+adumbrate/NVvSnDG
+adumbration/M
+Adv.
+advance/RSLDG
+advantage/DGEMS
+advantageous/PY
+advantageously/E
+advantageousness/E
+Advent
+advent/SMv
+Adventist's
+adventist/S
+adventitious/PY
+adventure's/a
+adventure/GMRDS
+adventures/a
+adventuresome
+adventuress/MS
+adventurism
+adventurous/PY
+adventurousness/S
+adverb/oSM
+adverbial/M
+adversarial
+adversary/MS
+adverse/yPDTYG
+adverseness/S
+adversity/MS
+advert/QsS
+advertise/LJ
+advertised/U
+advertising/M
+advice/MS
+advisability/MS
+advisable/I
+advise/hRBLSGDl
+advisedly/I
+advisee/SM
+advisor/M
+advisory/S
+advocacy/MS
+advocate/GVSD
+adze/DSMG
+Aegean/M
+aegis/SM
+aegrotat/SM
+Aeneas
+Aeneid
+aeolian
+Aeolus
+aeon/SM
+aerate/SDNnG
+aeration/M
+aerator/SM
+aerial/M3S
+aerialist
+aerie/oMS
+aero
+aero-engine/SM
+aeroacoustic
+aerobatic/S
+aerobic/YS
+aerodrome/MS
+aerodynamic/YS
+aerodynamics/M
+aerofoil/MS
+aeronautic/YS
+aeronautical
+aeronautics/M
+aeroplane/SM
+Aerorand
+aerosol/MS
+aerospace/MS
+Aeroton
+Aeroville
+Aeschylus
+Aesculapius
+Aesop/M
+aesthete/S1W
+aesthetic/S
+aestheticism/MS
+aestival
+aestivate/N
+aether/M
+aetiology/W1Mw
+AFAIK
+afar
+Afar
+AFC
+affability/MS
+affable/TY
+affair/SM
+affect/nDGvhNiSkV
+affectation/M
+affected/PEY
+affectedly/U
+affecter/M
+affecting/E
+affection/MES
+affectionate/Y
+affective/M
+affects/E
+afferent/Y
+affiance/GDS
+affidavit/SM
+affiliate/EDGnNS
+affiliated/U
+affiliation/ME
+affine
+affinity/MS
+affirm/nANGDS
+affirmation/AM
+affirmative/Y
+affix/DGS
+afflatus/SM
+afflict/GVvDS
+affliction/SM
+affluence/SM
+affluent/Y
+afford/BGSD
+affordable/U
+afforest/DNGSn
+afforestation/M
+affray/SGMD
+affricate/VMSN
+affrication/M
+affricative/M
+affright
+affront/SMDG
+Afghan/SM
+Afghani/SM
+Afghanistan/M
+Afguns
+aficionado/MS
+afield
+afire
+aflame
+afloat
+aflutter
+afoot
+afore
+aforementioned
+aforesaid
+aforethought
+afoul
+afraid/U
+afresh
+Africa/M
+African/MS
+Africana
+Africanisation
+Africanise/D
+Africanism
+Afrihili
+Afrikaans
+Afrikaner/SM
+Afrikanerbond
+Afrikanerdom
+Afrino/S
+Afro
+afro
+Afro-Asiatic
+Afro-Caribbean
+Afro-pessimism
+Afrocentric
+Afrocentrism
+Afrocentrist
+Afrotropical
+aft
+after-care/MS
+after-effect/MS
+after-hours
+after-image/SM
+after-taste/MS
+after/S
+afterbirth/MS
+afterburner/MS
+afterglow/SM
+afterlife/M
+afterlives
+aftermath/MS
+aftermost
+afternoon/SM
+afters/M
+aftershave/S
+aftershock/MS
+afterthought/SM
+afterwards
+afterword/MS
+Ag
+Agaa/M
+again
+against
+Agamemnon/M
+agape
+Ågar
+agar-agar
+agar/MS
+agate/SM
+agave/MS
+Agavia
+age's/e
+age-long
+age-old
+age/MhiDSp
+aged/P
+ageing
+ageism/S
+ageist/M
+ageless/PY
+agelessness/S
+agency/SM
+agenda/SM
+agent/AMS
+agented
+agenting
+agentive
+ageratum/M
+ages/e
+Aggeneys
+Aggie/M
+agglomerate/DNSnVG
+agglomeration/M
+agglutinate/VGNDSn
+agglutination/M
+agglutinin/MS
+aggrandise/LSGD
+aggrandize/DGLS
+aggravate/GnkNDS
+aggravation/M
+aggregate/DGESN
+aggregately
+aggregation/SM
+aggregative/Y
+aggression/SM
+aggressive/c
+aggressively
+aggressiveness/S
+aggressor/SM
+aggrieve/SGDh
+aghast
+agile/TY
+agility/SM
+Agincourt
+Agisanang
+agitate/hSVGNnD
+agitation/M
+agitator/SM
+agitprop/MS
+agleam
+aglitter
+aglow
+Agnatha
+Agnes/M
+Agnew/M
+agnostic/MS
+agnosticism/MS
+ago
+agog
+agonise/hk
+agonize/hk
+agony/Ss89Q
+agoraphobia/MS
+agoraphobic/S
+agouti
+Agra
+agrarian/S
+agrarianism/SM
+agree/dLElSG
+agreeable/EP
+agreeableness/SE
+agreer/SM
+agribusiness/MS
+agricultural/3
+agriculturalist
+agriculture/oM3S
+Agrippa/M
+agrochemical/S
+agronomic/S
+agronomy/3WSM
+aground
+ague/MS
+ah
+aha/S
+Ahab/M
+ahead
+ahem/S
+ahoy/S
+AI
+aid/RDGS
+Aida/M
+Aidan/M
+aide-de-camp
+aide-mémoire
+aide/MS
+aided/U
+aides-de-camp
+aigrette/MS
+Aiken/M
+aikona
+ail/LSDG
+Aileen/M
+aileron/MS
+aim/pRSGD
+aimless/YP
+aimlessness/S
+ain't
+Ainu
+air-conditioned
+air-conditioner
+air-conditioning
+air-cooled
+air-to-air
+air/MTpmSRzGZD2J
+airbase/S
+airborne
+airbrush/DMSG
+Airbus/SM
+aircraft-carrier/SM
+aircraft/M
+aircrew/SM
+Airdlin
+Airdrie
+Airedale/M
+Aires/M
+airfare/S
+Airfield
+airfield/MS
+airflow/SM
+airframe/SM
+airfreight/SDG
+airhead/MS
+airiness/S
+airing/M
+airlessness/S
+Airlie
+airlift/MSDG
+airline/RSM
+airlock/MS
+airmail/GMD
+airmass
+airplay/S
+airport/SM
+airship/SM
+airsick/P
+airsickness/S
+airspace/SM
+airspeed/MS
+airstrip/MS
+airtight/P
+airtime
+airwaves
+airway/MS
+airwoman
+airwomen
+airworthiness/S
+airworthy/PT
+airy/TP
+aisle/MDGS
+aitch/MS
+ajar
+Ajax
+aka
+Akan
+Akasia
+Akasiapark
+akimbo
+akin
+Akkadian
+Akron/M
+al-Haili
+Al-Haili
+Al-Jazeera
+al-Jazeera
+Al-Qa'ida/M
+al-Qa'ida/M
+al-Qaeda/M
+Al-Qaeda/M
+Al-Sharif
+al-Sharif
+Al-Zawahiri
+al-Zawahiri
+al/FAC
+Al/M
+Alabama/M
+Alabamans
+Alabamian/M
+alabaster/MS
+alack
+alacrity/SM
+Aladdin/M
+Alameda
+Alamo/S
+Alamogordo
+Alan/M
+alanine/M
+Alaric/M
+alarm/3GSDk
+alarmist
+alas/S
+Alaska/M
+Alastair/M
+alba/M
+Albacore
+albacore/MS
+Albania/M
+Albanian/MS
+Albans
+Albany
+albatross/SM
+albedo/M
+albeit
+Albemarle
+Alberante
+Albert/M
+Alberta/M
+Albertina
+Albertinia
+Alberto/M
+Alberton
+Albertsdal
+Albertskroon
+Albertsville
+Albertynshof
+albinism/MS
+albino/MS
+Albion/M
+Albowville
+Albrecht/M
+album/MS
+albumen/MS
+albumin/MS
+albuminous
+Albuquerque/M
+alchemy/3MwS
+Alcoa
+alcohol/SMW1
+alcoholic/MS
+alcoholism/MS
+alcove/DSM
+Aldarapark
+aldehyde/M
+Alden/M
+alder/m5MS
+Alderley
+Alderney/M
+Aldrich/M
+Aldridge/M
+Aldus
+ale/MS
+aleatory
+Alec/M
+Aleck
+alee
+alehouse/SM
+alembic/SM
+aleph/M
+Aleppo/M
+alert/TGYRPSDh
+alertness/S
+Aleut
+Aleutian/M
+alewife/M
+alewives
+Alex/M
+Alexander/M
+Alexandra
+Alexandria/M
+Alexandrian
+Alexia/M
+Alexis
+Alf/M
+Alfa/M
+alfalfa/SM
+Alfonso/M
+Alfred/M
+Alfredo/M
+alfresco
+alga/M
+algae
+algaecide
+algal
+algebra/S3M
+algebraic/Y
+algebraical
+algebraist
+Alger/M
+Algeria/M
+Algerian/SM
+Algiers
+alginate/MS
+Algoapark
+ALGOL
+Algonquian
+Algonquin/M
+algorithm/SM1W
+Alhambra/M
+Ali/M
+alias/DSG
+alibi/GSMD
+Alice/M
+Alicedale
+Alicia/M
+alien/MGNnS37D
+alienable/IU
+alienate/GSD
+alienation/M
+aliener
+alienist
+alight/GDS
+align/RLDGS
+aligned/UAa
+aligning/a
+aligns/aA
+alike/P
+aliment/DSMG
+alimentary
+alimony/MS
+alinement's
+aliphatic
+aliquot/S
+Alison/M
+Alistair/M
+alive/P
+aliveness/S
+alkali/SM
+alkaline
+alkalinity/SM
+alkalis/dSQ
+alkaloid/MS
+Alkantrant
+alkyd/S
+alkyl/M
+all-clear
+all-day
+all-embracing
+all-important
+all-in
+all-in-one
+all-inclusive
+all-night
+all-out
+all-pervading
+all-powerful
+all-purpose
+all-round
+all-rounder
+all-star
+all-time
+all/cSM
+Allah/M
+Allan/M
+Allandale
+Allanridge
+allay/DSG
+Alldays
+allegation/M
+allege/nDNShG
+Allegheny/S
+allegiance/MS
+allegiant
+allegoricalness
+allegorising
+allegory/w3M1WS
+allegretto/MS
+allegri
+allegro/SM
+allele/MSW
+alleluia/S
+allemande/M
+Allen/M
+Allenby
+Allendale
+Allentown
+allergen/WMS
+allergy/S3W1M
+alleviate/NnDGSV
+alleviation/M
+alleviator/MS
+alley/SM
+alleyway/SM
+alliance/SMa
+allied
+allier
+allies/M
+alligator/MS
+Allis
+Allison/M
+alliterate/DNGnVSv
+alliteration/M
+allocable
+allocatable/C
+allocate/SCAGnKND
+allocated/U
+allocation/CMAK
+allocative
+allocator/MCS
+allocators/K
+allophone/MSW
+allot/LSDG
+allotrope/WM
+allots/A
+allotted/A
+allotter/M
+allotting/A
+allow/EDSG
+allowable/PY
+allowance/MS
+allowed/Y
+alloy/MDSG
+alloyed/U
+allspice/M
+Allstate
+allude/NuDXSGVv
+allure/SLkDG
+allusion/M
+allusive/P
+allusiveness/S
+alluvia
+alluvial
+alluvions
+alluvium/MS
+ally/A
+allying
+Alma
+almagest
+almanac/SM
+almighty/P
+almond/MS
+almoner/MS
+almost
+alms/m
+almshouse/SM
+alnico
+aloe/MS
+Aloeridge
+Aloevale
+Alofi/M
+aloft
+aloha/SM
+alone/P
+along
+alongshore
+alongside
+aloof/PY
+aloofness/S
+aloud
+alp/M
+alpaca/MS
+Alpert/M
+alpha/SM
+alphabet/MWQ98w1qs-S
+alphanumeric/YS
+alphanumerical
+Alphen
+Alphendale
+Alphonse/M
+alpine/S
+Alpinist/MS
+Alps
+Alrapark
+already
+Alrode
+Alsace/M
+Alsatian/S
+Alsation/MS
+also
+also-ran/S
+Altai/M
+Altaic/M
+altar/SM
+altarpiece/SM
+alter/7Sd
+alterable/UI
+alteration/MS
+altercate/Nn
+altercation/M
+altered/U
+alterer/S
+alternate/YSGNVunvD
+alternation/M
+alternative/MPS
+alternator/MS
+Althea/M
+although
+altimeter/SM
+altitude/SM
+alto/MS
+altogether
+Alton/M
+altruism/SM
+altruist/W1MS
+ALU
+alum/SM
+alumina/SM
+aluminium/M
+alumna/M
+alumnae
+alumni
+alumnus/SM
+alundum
+Alunsa
+Alva/M
+Alvarez
+alveolar/Y
+alveoli
+alveolus/M
+Alvin/M
+always
+Alyssa/M
+am/y
+AMA
+Amabele
+Amabokoboko
+Amadeus/M
+amahubo
+amakhosi
+Amalgam
+amalgam/nVMS
+amalgamate/SGD
+amalgamation/M
+Amalia
+Amalie/M
+Amalinda
+Amanda/M
+Amandaglen
+Amandasig
+Amandawe
+Amandelbult
+Amandelrug
+Amandelsig
+amanuenses
+amanuensis/M
+Amanyati
+Amanzimnyama
+Amanzimtoti
+Amanzimyama
+Amaoti
+amaranth/MS
+amaretto/S
+Amarillo/M
+amaryllis/SM
+amass/GDS
+amasser/M
+amateur/SM
+amateurish/YP
+amateurishness/S
+amateurism/SM
+Amatikulu
+Amatikwe
+Amawotana
+amaze/LDhkSG
+Amazon/MS
+Amazonian
+ambassador/SM
+ambassadorial
+ambassadorship/MS
+ambassadress/SM
+amber/MS
+Ambergate
+ambergris/SM
+ambiance/SM
+ambidexterity/SM
+ambidextrous/Y
+ambience/M
+ambient
+ambiguity/SM
+ambiguous/PY
+ambiguously/U
+ambit/MNX
+ambition/M
+ambitious/cU
+ambitiously/U
+ambitiousness/MS
+ambivalence/SM
+ambivalent/Y
+amble/RDSG
+ambles/K
+ambrose
+ambrosia/MoS
+ambrosial
+ambulance/MS
+ambulant/S
+ambulate/GNnSDy
+ambulation/M
+ambulatory/S
+ambuscade/MSGD
+ambuscader/M
+ambush/MRDGS
+AMD
+Amdahl/M
+Amelia/M
+ameliorate/GVnDSN
+amelioration/M
+amen/d7Sgl
+amenability/MS
+amend/G7DSL
+amender/M
+amends/M
+amener
+amenity/SM
+amenorrhoea/M
+Amerada
+amerce/LDGS
+America/MS
+American/8-qSQM
+Americana
+Americanism/S
+americium/MS
+Amerindian
+Amersfoort
+Amerville
+Ames
+amethyst/MS
+amethystine
+Amharic
+Amherst/M
+Ami
+amiability/SM
+amiable/PTY
+amicability/SM
+amicable/PY
+amid
+amide/MS
+amidships
+amidst
+amigo/SM
+amine/S
+amino/M
+aminobenzoic
+amir's
+Amish/M
+amiss
+Amit/M
+amity/SM
+Amman/M
+ammeter/MS
+ammo/SM
+ammonia/MS
+ammoniac
+ammonites
+ammonium/M
+ammunition/MS
+amnesia/SM
+amnesiac/MS
+amnesic
+amnesty/MDSG
+amniocenteses
+amniocentesis/M
+amnion/SM
+amniotic
+Amoco/M
+amoeba/WSM
+amoebae
+amoeboid
+amok
+among
+amongst
+amontillado/SM
+amoral
+amorality/SM
+amorallym
+amorous/PY
+amorousness/S
+amorphous/YP
+amorphousness/S
+amortise/nSDG
+amortised/U
+amortize/nDGSN
+Amos
+amount/DSGM
+amour/SM
+amp/GDSMY
+amperage/SM
+ampere/MS
+ampersand/MS
+amphetamine/SM
+Amphibia
+amphibian/MS
+amphibious/PY
+amphibology/M
+amphitheatre/SM
+amphora/M
+amphorae
+ample/PT
+amplification/M
+amplify/RnNDSG
+amplitude/MS
+ampoule/SM
+amputate/nGDSN
+amputation/M
+amputee/SM
+Amstel
+Amstelhof
+Amsterdam/M
+Amsterdamhoek
+amt.
+Amtrak/M
+amulet/MS
+amuse/RVDLhSGk
+amused/U
+amusing/P
+Amy/M
+amyl/M
+amylase/SM
+an/CS
+Anabaptist/SM
+anabolic
+anabolism/MS
+anachronism/MS
+anachronistic/Y
+anaconda/MS
+anaemia/SM
+anaemic/Y
+anaerobe/WM1S
+anaesthesia/MS
+anaesthesiology/3SM
+anaesthetic/MYS
+anaesthetise/GRnDS
+anaesthetist/MS
+anaesthetize/nRNDSG
+anaglyph/M
+anagram/DGSM
+anagrammatic/Y
+Anaheim/M
+anal/Y
+analecta
+analects
+analgesia/SM
+analgesic/S
+analogous/PY
+analogousness/S
+analogue/MS
+analogy/wQS81M
+analysable
+analysand/MS
+analyse/SDWG
+analysed/aU
+analyser/S
+analysis's
+analysis/A
+analyst/SM
+analytic/Y
+analytical
+analyticity/S
+analytics's
+anamorphic
+anapaest/SMW
+anaphora/W1M
+anaplasmosis/M
+anarchism/SM
+anarchist/W
+anarchy/31SWwM
+Anastasia/M
+anastigmatic
+anastomoses
+anastomosis/M
+anastomotic
+anathema/Q8SM
+Anatolia/M
+Anatolian
+anatomy/WQ8Mw3S1
+ANC
+ancestor/MS
+ancestral/Y
+ancestress/MS
+ancestry/SM
+anchor/Mdm5S
+Anchorage
+anchorage/MS
+anchoress
+anchoret/W
+anchorite/MSW
+anchoritism/M
+anchorpeople
+anchorperson/S
+anchovy/SM
+ancient/SPYT
+ancientness/S
+ancillary/S
+and/DG
+Andalusia/M
+Andaman/M
+andante/S
+Ande/SZ
+Andean/M
+anders
+Andersen/M
+Anderson/M
+andiron/MS
+Andorra/M
+Andover/M
+Andre/M
+Andrea/SM
+Andrei/M
+Andrew/MS
+androgen/SWM
+androgynous
+androgyny/SM
+android/MS
+Andy/M
+anecdotal
+anecdote/oSM
+anechoic
+anemometer/MS
+anemometry/M
+anemone/MS
+Anerley
+aneroid
+aneurysm/MS
+anew
+angel/MS1Ww
+Angela/M
+Angeles
+angelfish/SM
+angelica/SM
+Angelina/M
+Angelo/M
+anger/MdS
+Angie/M
+angina/SM
+angiography
+angioplasty/S
+angiosperm/SM
+Angkor/M
+angle/DJMSRG
+anglepoise
+Anglesey/M
+angleworm/SM
+Anglia/M
+Anglican/SM
+Anglicanism/M
+Anglicise/nDSG
+Anglicism/S
+Anglicize/SGnDN
+angling/M
+Anglo
+Anglo-Boer
+Anglo-French
+Anglo-Indian
+Anglo-Irish
+Anglo-Norman
+Anglo-Saxon
+Anglomania
+Anglophile/SM
+Anglophobe/M
+Anglophobia/M
+anglophone/SM
+Angola/M
+angora/SM
+angry/TPY
+angst/MS
+angstroms
+Anguilla/M
+anguish/SDMG
+angular/Y
+angularity/MS
+Angus/M
+Anheuser/M
+anhydride/M
+anhydrite/M
+anhydrous/Y
+aniline/MS
+animadversion/SM
+animadvert/GSD
+animal/M8Q-Sq
+animalcular
+animalcule/S
+animalism
+animality
+animalness
+animate/ADSGNn
+animated/Y
+animately/I
+animateness/M
+animation/MA
+animator/MS
+animé
+animism/SM
+animist/SW
+animosity/MS
+animus/MS
+anion/MWS
+anise/MS
+aniseed/MS
+aniseikonic
+anisette/MS
+anisotropy/MWS
+Anita/M
+Ankara/M
+ankh/SM
+ankle/DGSM
+anklebone/MS
+anklet/SM
+Ann/M
+Anna/M
+Annadale
+annal/M3S
+annalen
+annalist
+Annandale
+Annapolis/M
+Anne/M
+anneal/RDGS
+annelid/SM
+Annelida
+Annette/M
+annex/nGDS
+annexation/M
+annexe/M
+Annie/M
+Annieville
+annihilate/GNDSnV
+annihilation/M
+annihilator/MS
+anniversary/SM
+Annlin
+annotate/GDNVSn
+annotation/M
+annotator/SM
+announce/DLRSG
+announced/U
+annoy/kRSDG
+annoyance/MS
+annual/Q8SY
+annuitant/SM
+annuity/SM
+annul/DLGS
+annular/Y
+annuli
+annulus/M
+annum
+annunciate/DGNnS
+annunciation/M
+annunciator/MS
+anode/8MSWQ
+anodyne/M
+anoint/DLGS
+anointer/M
+anomalous/PY
+anomaly/MS
+anomic
+anomie
+anon
+anon.
+anonymity/SM
+anonymous/Y
+anopheles/M
+anorak/MS
+anorectic
+anorexia/MS
+anorexic/S
+another/M
+ans/M
+Anselm/M
+Ansfrere
+ANSI/M
+Anson/M
+answer/d7rSM
+answerable/U
+answered/U
+ant/WSM
+antacid/MS
+antagonise/GRSD
+antagonism/SM
+antagonist/W1SM
+antagonize/DRSG
+Antananarivo/M
+Antarctic/M
+Antarctica/M
+ante/M
+anteater/MS
+antebellum
+antecedence/MS
+antecedent/YMS
+antechamber/MS
+antedate/DSG
+antediluvian/S
+antelope/SM
+antenatal
+antenna/MS
+antennae
+anterior/YS
+anteroom/MS
+anthem/dSM
+anther/MS
+anthill/S
+anthology/Q8S3M
+Anthony/M
+anthraces
+anthracite/MS
+anthrax/M
+anthropic/a
+anthropocentric
+anthropogenic
+anthropoid/S
+anthropology/3M1wS
+anthropometric/S
+anthropometry/MW
+anthropomorphic/Y
+anthropomorphising
+anthropomorphism/MS
+anthropomorphizing
+anthropomorphous
+anti-abortion/3
+anti-abortionist
+anti-aircraft
+anti-Americanism
+anti-apartheid
+anti-establishment
+anti-gravity
+anti-hero/M
+anti-heroes
+anti-hunt/G
+anti-nuclear
+anti-personnel
+anti-racism
+anti-racist
+anti-Semitic
+anti-Semitism/M
+anti/S
+antibacterial/S
+antibiotic/SM
+antibody/MS
+antic/GSMD
+anticancer
+Antichrist
+anticipate/nSVGvyND
+anticipated/U
+anticipation/M
+anticlerical/S
+anticlimactic/Y
+anticlimax/MS
+anticline/MS
+anticlockwise
+anticoagulant/S
+anticoagulation/M
+anticommunism/MS
+anticommunist/MS
+anticompetitive
+anticyclone/SMW
+antidemocratic
+antidepressant/SM
+antidisestablishmentarianism/M
+antidote/DSMG
+antifascist/SM
+antiformant
+antifreeze/SM
+antifundamentalist/M
+antigen/WSM
+antigenicity/SM
+Antigone
+Antigua/M
+antihistamine/MS
+antihistorical
+antiknock/SM
+Antilles/M
+antilogarithm/SM
+antilogs
+antimacassar/SM
+antimalarial/S
+antimatter/SM
+antimicrobial/S
+antimissile/S
+antimony/M
+antinomian
+antinomy/M
+Antioch/M
+antioxidant/MS
+antiparticle/MS
+antipasti
+antipasto/MS
+antipathy/SMW
+antiperspirant/MS
+antiphon/SMo
+antiphonal/S
+antipodal/S
+antipode/MS
+antipodean/S
+antiquarian/MS
+antiquarianism/SM
+antiquary/SM
+antiquate/DGS
+antiquation/M
+antique/GDNMS
+antiquity/SM
+antiredeposition
+antiresonance/M
+antiresonator
+antiretroviral
+antisepses
+antisepsis/M
+antiseptic/YS
+antiserum/SM
+antislavery
+antisocial/Y
+antispasmodic/S
+antistatic
+antisubmarine
+antisymmetry/W
+antitank
+antiterrorism
+antitheses
+antithesis/M
+antithetic/Y
+antithetical
+antithyroid
+antitoxin/SM
+antitrust/M
+antitruster
+antivenin/MS
+antiviral/S
+antivivisectionist/S
+antiwar
+antler/MS
+antlered
+Antoine/M
+Antoinette/M
+Anton/M
+Antonio/M
+antonym/MS
+antonymous
+antral
+Antrim/M
+Antrobus
+antsier
+antsiest
+Antwerp/M
+anus/MS
+anvil/DGSM
+anxiety/SM
+anxious/YP
+anxiousness/S
+any
+anybody/SM
+anyhow
+anyone/M
+anything
+anyway
+anywhere
+Anzac
+aorist
+aorta/MWS
+apace
+Apache/MS
+Apalachicola
+apart/PL
+apartheid/M
+apathetic/Y
+apathy/WSM
+apatite/SM
+ape/DSwGM1
+aped/A
+Apel
+apelike
+Apennines
+aper/A
+aperiodic/Y
+aperiodicity/M
+aperitif/S
+aperture/DSM
+apex/MS
+Apgar
+aphasia/MS
+aphasic/S
+aphelia
+aphelion/MS
+aphid/SM
+aphonic
+aphorism/SM
+aphoristic/Y
+aphrodisiac/MS
+Aphrodite/M
+Apia/M
+apiary/S3M
+apices's
+apiece
+apish/PY
+aplenty
+aplomb/MS
+apnoea
+APO
+apocalypse/MSW
+apocrypha/Mo
+apocryphal/P
+apogee/MS
+apolar
+apolitical/Y
+Apollo/M
+Apollonian
+apologetic/UY
+apologetics/M
+apologia/MS
+apology/Ss9Q38M
+apophthegm/SM
+apoplectic
+apoplexy/MS
+apostasy/MS
+apostate/SQ8M
+Apostille
+apostle/MS
+apostleship/MS
+apostolic
+apostrophe/QS8M
+apothecary/MS
+apotheoses
+apotheosis/M
+apotheosized
+apotheosizes
+apotheosizing
+appal/GkDS
+Appalachia/M
+Appalachian/SM
+appaloosa/S
+appanage/M
+apparatchik/S
+apparatus/MS
+apparel/MGDS
+apparent/YP
+apparently/I
+apparition/MS
+appeal/kSMDG
+appealer/M
+appealing/U
+appear/EGASD
+appearance/SEMA
+appearer/MS
+appease/LRDGS
+appeased/U
+appellant/SM
+appellate/VvNn
+appellation/M
+appellative/M
+append/RDGS
+appendage/MS
+appendectomy/SM
+appendices
+appendicitis/MS
+appendix/MS
+appertain/DGS
+appetiser/SM
+appetising/UY
+appetite/MVS
+appetizer/MS
+appetizing/UY
+Appian
+applaud/DRSG
+applause/MS
+apple-cart/M
+apple-pie
+apple/SYM
+applet/S
+Appleton/M
+appliance/MS
+applicability's/I
+applicability/SM
+applicable/I
+applicably
+applicant/SM
+application/MA
+applicator/MS
+applied/Aa
+applier/aM
+applies/Aa
+appliqué/GMS
+appliquéd
+apply/NnRGVvSD
+applying/a
+appoint/VLRGDS
+appointed/EA
+appointee/SM
+appointing/E
+appoints/EA
+Appomattox
+apportion/DALGS
+apposite/Yx
+appositeness
+apposition/M
+appraisal/ASM
+appraise/DSRkG
+appraised/A
+appraisees
+appraises/A
+appraising/A
+appreciable/IY
+appreciably/I
+appreciate/DvSGunVNy
+appreciated/U
+appreciation/M
+appreciative/PIY
+appreciator/MS
+apprehend/NDGaXS
+apprehender/M
+apprehensible
+apprehension/aM
+apprehensive/YP
+apprehensiveness/S
+apprentice/DGSM
+apprenticeship/SM
+apprise/SGkD
+approach/BRSGD
+approachability/M
+approachable/U
+approbate/nN
+approbation/MES
+appropriable
+appropriate/DYPSVNGn
+appropriated/a
+appropriately/I
+appropriateness/SI
+appropriates/a
+appropriating/a
+appropriation's
+appropriation/aS
+appropriator/SM
+approval/SEM
+approve/RGkEDS
+approved/U
+approx
+approximate/YSnNVGvD
+approximation/M
+appurtenance/MS
+appurtenant
+Apr
+apricot/SM
+April/MS
+apron/MS
+aproned
+apropos
+apse/SM
+apsis/M
+apt/PTY
+aptitude/MS
+aptly/I
+aptness/SI
+aqua/MS
+aquaculture/SM
+Aquadene
+aqualung/MS
+aquamarine/SM
+aquanaut/MS
+Aquapark
+aquaplane/MDGS
+aquaria
+aquarium/SM
+Aquarius/M
+aquatic/YS
+aquavit/MS
+aqueduct/MS
+aqueous/Y
+aquiculture's
+aquifer/MS
+aquiline
+Aquinas
+aquittal
+Arab/MWS
+arabesque/SM
+Arabia/M
+Arabian/MS
+Arabic/M
+Arabiedam
+arability/MS
+arable/S
+arachnid/MS
+Arachnida
+arachnoid/M
+arachnophobia
+Arafat/M
+araldite
+Aramaic
+Arapaho/M
+Ararat/M
+Araucanian
+Arauna
+Arawak
+Arbex
+arbiter/SNMn
+arbitrage/RSDGM
+arbitrageur/S
+arbitrament/SM
+arbitrariness/S
+arbitrary/PY
+arbitrate/SDGV
+arbitration/M
+arbitrator/MS
+arboreal/Y
+Arboretum
+arboretum/MS
+Arborpark
+arborvitae/MS
+arbour/SMD
+Arbroath/M
+arbutus/SM
+arc/SDMG
+arcade/GDMS
+Arcadia/M
+Arcadian
+arcana/M
+arcane/Y
+arcaneness
+arcanum
+arch-enemy/SM
+arch/STRyGPYMD
+archaeology/w3SM1
+archaeopteryx
+archaic/Y
+archaicness
+archaise/RSDG
+archaism/MS
+archaist/MS
+archangel/MS
+archbishop/MS
+archbishopric/MS
+archdeacon/MyS
+archdiocesan
+archdiocese/SM
+archduchess/SM
+archduke/MS
+archery/M
+archetypal
+archetype/wMS
+archfiend/MS
+archfool
+Archibald/M
+Archie/M
+archiepiscopal
+Archimedes
+arching's
+arching/c
+archipelago/SM
+architect/MS
+architectonic/S
+architectonics/M
+architectural
+architecture/oMS
+architrave/SM
+archival
+archive/3RSGDM
+archness/S
+archway/MS
+arclike
+ARCO
+arcsine
+arctangent
+Arctic/M
+Arcturus
+Arden/M
+ardency/M
+ardent/Y
+ardour/SM
+Ards/M
+arduous/PY
+arduousness/S
+are/B
+area/MS
+areal
+areawide
+Areen
+aren't
+arena/MS
+arenaceous
+Arendsdale
+areola
+areolae
+areolar
+Ares
+arête/MS
+Aretha/M
+argent/M
+Argentina/M
+Argentine/SM
+Argentinian/S
+argon/M
+Argonaut/MS
+Argos
+argosy/MS
+argot/MS
+arguable/YUI
+arguably/UI
+argue/SRG7D
+argued/e
+argues/e
+arguing/e
+argument/MNnS
+argumentation/M
+argumentative/PY
+argumentativeness/S
+Argus
+argy
+argy-bargy/SD
+Argyle
+Argyll/M
+aria/MS
+Ariadne/M
+Arian/SM
+Arianism/M
+arid/YP
+aridity/SM
+Ariel/M
+Aries/M
+aright
+arise/JSG
+arisen
+ariser
+aristocracy/SM
+aristocrat/1WMS
+Aristophanes
+Aristotelian/M
+Aristotle/M
+arithmetic/MY
+arithmetical
+arithmetician/SM
+arithmetise/SDG
+arithmetize/SDG
+Arizona/M
+ark/SM
+Arkansan
+Arkansas/M
+Arkwright/M
+Arlen/M
+Arlene/M
+Arlington/M
+arm/L6pSZDRMG
+armada/MS
+Armadale
+armadillo/MS
+Armageddon/M
+Armagh/M
+Armagnac
+armature/SDMG
+armband/MS
+armchair/SM
+Armco
+armed/AUE
+Armenia/M
+Armenian/M
+armer/EMS
+armful/MS
+armhole/SM
+arming/M
+armistice/MS
+armlet/MS
+armload/M
+Armonk/M
+armorial
+armour-plate/D
+armour/DRMSZG
+armoury/SDM
+armpit/SM
+armrest/MS
+arms/fAEc
+Armstrong/M
+army/SM
+Arne/M
+Arnold/M
+Arnoldton
+Arnot
+aroma/M1SW
+aromatherapist/MS
+aromatherapy/S
+aromatic/PS
+aromaticity/M
+arose
+around
+arousal/MS
+arouse/GDS
+ARPA
+Arpanet/M
+arpeggio/MS
+arr
+arrack/M
+arraign/SGLD
+arrange/DLEGKAS
+arrangeable
+arranger/SM
+arrant/Y
+arras/M
+array/ESMDG
+arrayer
+arrearage
+arrears
+arrest/RG7DkS
+arrested/A
+arrestee/SM
+arrestor/MS
+arrests/A
+arrhythmia/SM
+arrhythmic
+arrhythmical
+arrival/MS
+arrive/GDS
+arriver/M
+arrogance/SM
+arrogant/Y
+arrogate/GSNDn
+arrogation/M
+arrow/MDGS
+arrowhead/SM
+arrowroot/MS
+arroyo/SM
+arsenal/MS
+arsenate/M
+arsenic/SM
+arsenide/M
+arsine/SM
+arson/SM3
+arsonist
+art/j2pM3S6Z
+Arte
+artefact/MS
+artefactual
+Artemis
+arterial
+arteriolar
+arteriole/MS
+arterioscleroses
+arteriosclerosis/M
+artery/MoS
+artesian
+artful/P
+artfulness/S
+arthritic/S
+arthritides
+arthritis/M
+arthrogram/SM
+arthropod/MS
+Arthropoda
+arthroscope/SW
+Arthur/M
+Arthurian
+artichoke/SM
+article/SMDG
+articulable/I
+articulacy/I
+articular
+articulate/nNyDYPGVS
+articulated/UE
+articulately/I
+articulateness/S
+articulation/M
+articulator/SM
+Artie/M
+artifice/MoRS
+artificial/P
+artificiality/MS
+artillery/3mSM
+artiness/S
+artisan/SM
+artist/yW1
+artiste/SM
+artistic/IY
+artistry/MS
+artless/PY
+artlessness/S
+Arturo/M
+artwork/MS
+arty/T3P
+Aruba/M
+arum/MS
+ARV
+Aryan/MS
+as
+Asande
+asap
+asbestos/MS
+asbestosis
+ascaris
+ascend/RNSXDG
+ascendancy/MS
+ascendant/Y
+ascended/A
+ascendency
+ascends/A
+ascension/M
+ascent/MS
+ascertain/7LSDG
+ascetic/MYS
+asceticism/SM
+ASCII
+ascorbic
+Ascot/M
+ascribable
+ascribe/SXGNVD
+ascription/M
+aseptic/Y
+asexual/Y
+asexuality/MS
+ash/MSGZD
+ashamed/UY
+Ashanti/M
+Ashburnham
+Ashburton
+Ashbury
+Ashdown
+ashen
+asher
+Asherville
+Asheville/M
+Ashford/M
+Ashgabat/M
+Ashland/M
+ashlar/MdS
+Ashley/M
+ashore
+ashram/MS
+Ashton/M
+ashtray/SM
+Ashwood
+ashy/T
+Asia/M
+Asian/MS
+Asiatech/M
+Asiatic/SM
+aside/S
+asimilar
+Asimov/M
+asinine/Y
+asininity/MS
+ask/DRGS
+askance
+Askeaton
+asked/U
+askew
+askewness
+Askham
+Askraal
+aslant
+asleep
+Asmara/M
+asocial
+asp/WMS
+asparagus/MS
+aspartame/S
+aspect/SM
+aspen/MS
+asperity/SM
+aspersion/MS
+asphalt/DGSM
+asphalter
+asphodel/MS
+asphyxia/SnM
+asphyxiate/GSD
+asphyxiation/M
+aspic/SM
+aspidistra/MS
+aspirant/MS
+aspirate/GDS
+aspiration/M
+aspirator/MS
+aspire/xnDNSG
+aspirer/M
+aspirin/SM
+asplenium
+Asquith/M
+ass/M8S
+Assad/M
+Assagay
+assail/G7DS
+assailable/U
+assailant/MS
+Assam/M
+Assamese
+assassin/MnSN
+assassinate/DSG
+assassination/M
+assault/uSvVMDG
+assaulter/M
+assay/RSGD
+assemblage/MS
+assemble/SERGDY
+assembled/UA
+assembles/A
+assemblies/A
+assembling/A
+assembly's/AE
+assembly/mS5M
+assen
+assent/DGSM
+assenter
+assert/RGxDVvuS
+asserted/A
+assertion/ASM
+assertive/P
+assertiveness/S
+asserts/A
+asses/DG
+assess/LAGSD
+assessable
+assessor/MS
+asset/SM
+asseverate/nSNGD
+asseveration/M
+assiduity/SM
+assiduous/PY
+assiduousness/S
+assign/DRNGS7nL
+assignation/M
+assigned/AKUC
+assignee/SM
+assigning/K
+assignor/SM
+assigns/AKC
+assimilable
+assimilate/GSnNDV
+assimilation/3M
+assimilationist
+Assisi/M
+assist/DGS
+assistance/MS
+assistant/MS
+assistantship/MS
+assisted/U
+assister/M
+assize/M
+assn
+associable
+associate/nEGDSN
+associateship
+association/EM
+associational/Y
+associative/Y
+associativity/S
+associator/MS
+assonance/MS
+assonant/S
+assort/DLGS
+assorter/M
+asst
+assuage/GDS
+assuaged/U
+assume/BXVGDNS
+assumer/M
+assuming/U
+assumption/M
+assurance/SAM
+assure/AGDkS
+assured/YP
+assurer/MS
+Assyria/M
+Assyrian/M
+Assyriology
+Astana/M
+astatine/SM
+aster/SMFE
+asterisk/MDGS
+astern
+asteroid/MS
+asteroidal
+asthma/SMW
+asthmatic/S
+astigmatic
+astigmatism/MS
+astir
+Aston/M
+astonish/SGkLD
+Astor/M
+Astoria/M
+astound/SkDG
+Astra
+astraddle
+Astrakhan
+astral/Y
+astray
+astride
+astringency/SM
+astringent/YS
+astrolabe/MS
+astrologer/SM
+astrology/S1wM3
+astronaut/WMwS
+astronautic/S
+astronautics/M
+astronomer/MS
+astronomy/WwM1S
+astrophysical
+astrophysicist/SM
+astrophysics/M
+astute/TPY
+astuteness/S
+Asunción/M
+asunder
+Aswan/M
+asylum-seeker/S
+asylum/MS
+asymmetry/Ww1MS
+asymptomatic/Y
+asymptote/MWS1
+asynchronism/M
+asynchronous/Y
+asynchrony
+At
+at/F
+Atamelang
+Atari/M
+atavism/SM
+atavist/WSM
+ataxia/SM
+ataxic
+ATC
+ate/BS
+atelier/MS
+atemporal
+atheism/MS
+atheist/W1SM
+Athena/M
+Athenian/SM
+Athens/M
+atheroscleroses
+atherosclerosis/M
+Atherton/M
+athirst
+athlete/1MSW
+athletic/S
+athleticism/M
+athletics/M
+Athlone
+Atholhurst
+Atholl
+Atholton
+athwart
+atilt
+Atkins
+Atkinson/M
+Atlanta/WM
+atlantes
+Atlantic/M
+Atlantis
+atlas/MS
+Atlaspark
+Atlasville
+Atlee/M
+ATM/M
+Atman/M
+atmosphere/D1SWM
+atmospheric/S
+Atok
+atoll/MS
+atom/9M-8qsQS
+atomic/Y
+atomicity/M
+atomics's
+atomistic
+atonal
+atonality/SM
+atone/LoDGS
+Atoom
+atop
+atria
+atrial
+atrium/M
+atrocious/PY
+atrociousness/S
+atrocity/MS
+atrophy/WMSDG
+atropine/MS
+attach/7RSMGLD
+attaché/S
+attached/AU
+attaches/A
+attack/RM7DGS
+attain/SDLBRGl
+attainability/MS
+attainable/P
+attainably/U
+attainder/SM
+attained/AU
+attainment/A
+attains/A
+attar/MS
+Attaway
+attempt/RDGS
+attempted/A
+attempts/A
+attend/SDRG
+attendance/MS
+attendant/SM
+attended/U
+attendee/SM
+attention/SIM
+attentional/Y
+attentionality
+attentive/IPY
+attentiveness/IS
+attenuate/GnDSN
+attenuated/U
+attenuation/M
+attenuator/MS
+Atteridgeville
+attest/NSDGn
+attestation/M
+attested/U
+attester/M
+attic/SM
+Attica/M
+Attila/M
+attire/SDG
+attitude/MS
+attitudinal/Y
+attitudinise/DSG
+attorney/MS
+attract/7VSuvDG
+attractant/MS
+attraction/SM
+attractive/P
+attractively/U
+attractiveness/U
+attractivenesses
+attractor/MS
+attributable/U
+attribute/DGSxVv
+attributed/U
+attributer/M
+attribution/MS
+attrition/SM
+attune/SDG
+atwitter
+Atwood/M
+atypical/Y
+AU
+au
+aubergine/SM
+Aubrey/M
+auburn/SM
+Auckland/M
+auction/SMDG
+auctioneer/SMGD
+audacious/YP
+audaciousness/S
+audacity/SM
+Audas
+Audi/M
+audibility/SIM
+audible/YI
+audibly/I
+audience/MS
+audio/M
+audiology/wS3M
+audiometer/SWM
+audiometry/M
+audiophile/MS
+audiotape/S
+audiovisual/S
+audit/VMXSdNy
+audited/U
+audition/DMG
+auditor/MS
+auditorium/MS
+Audrey/M
+Audubon/M
+Aug
+auger/SM
+aught
+augite
+augment/RSnGDN
+augmentation/M
+augmentative/S
+Augrabies
+augur/MdS
+augury/SM
+August's
+august/TPY
+Augusta/M
+Augustan
+Augustine
+Augustinian
+augustness/S
+Augusts
+Augustus
+auk/MS
+aunt/MSZ
+auntie/M
+aunty/MS
+aura/oSWM
+aural
+Aurelius
+aureole/DSMG
+aureomycin
+Aureus
+auricle/SM
+auricular
+Aurora
+aurora/MS
+aurorae
+auroral
+Auschwitz
+auscultate/nSDGN
+auscultation/M
+auspice/SM
+auspicious/PY
+auspiciously/I
+auspiciousness/I
+auspiciousnesses
+Aussie/SM
+austere/TYP
+austerity/MS
+Austerville
+Austin/M
+Austinview
+Austinville
+austral
+Australasia/M
+Australasian/S
+australes
+Australia/M
+Australian/MS
+Australis
+australites
+Australopithecus
+Austria/M
+Austrian/MS
+Austronesian
+auteur
+authentic/NnY
+authenticate/GSD
+authenticated/U
+authentication/M
+authenticator/MS
+authenticities
+authenticity's
+authenticity/I
+author/dQs89Sq-M
+authoress/S
+authorial
+authorise/AGDSn
+authorised/U
+authoritarian/S
+authoritarianism/SM
+authoritative/PY
+authoritativeness/S
+authority/SM
+authorization/M
+authorize/ADSGNn
+authorized/U
+authorship/MS
+autism/MS
+autistic
+auto
+auto-suggestibility/M
+auto-suggestion
+autobahn/SM
+autobahnen
+autobiographer/MS
+autobiography/W1MSw
+autoclave/MDGS
+autocollimator/M
+autocorrelate/NnDSG
+autocorrelation/M
+autocracy/SM
+autocrat/WSM1
+autocross
+Autocue
+autodial
+autodialler
+autodidact/WSM
+autofluorescence
+autofocus
+autogiro/MS
+autograph/DSGM
+autogyro/SM
+autoignition/M
+autoimmune
+autoimmunity/S
+autoloader
+automata
+automate/W1GQDSNn8
+automatic/S
+automation/M
+automatism/SM
+automaton/MS
+automorphism/MS
+automotive
+autonomic/S
+autonomous/Y
+autonomy/SMW
+autopilot/MS
+autopsy/DSMG
+autoregressive
+autorepeat/SG
+autorotation
+autosave
+autotoxin
+autotransformer/M
+autumn/oSM
+autumnal
+auxiliary/S
+auxin/MS
+AV
+avail/SGDBl
+availability's/U
+availability/SM
+available/P
+availing/U
+avalanche/DSMG
+Avalano
+Avalon/M
+avant
+avant-garde/3
+avant-gardism
+Avaric
+avarice/MS
+avaricious/PY
+Avarua/M
+avast/S
+avatar/SM
+avaunt/S
+ave/S
+avenge/SRDG
+avenged/U
+avenue/MS
+aver/DG
+average/DMYGS
+averageness
+averse/XYPNV
+aversion/M
+avert/GDbS
+Avery/M
+Aves
+Avestan
+avian/S
+aviary/SM
+Aviaryhill
+aviate/Nn
+aviation/M
+aviator/SM
+aviatrices
+aviatrix/MS
+avid/Y
+avidity/SM
+avidness
+avionic/S
+avionics/M
+Avis/M
+avitaminoses
+avitaminosis/M
+Aviv/M
+Avoca
+avocado/MS
+avocation/MoS
+avocational
+Avocet
+avoid/7lRGDS
+avoidable/U
+avoidably/U
+avoidance/MS
+avoirdupois/M
+Avon/M
+Avondale
+Avontuur
+Avonwood
+avouch/SDG
+avow/SEGD
+avowal/SEM
+avowed/Y
+avower/M
+avuncular
+AWACS
+Awadhi
+await/GDS
+awake/SG
+awaken/dSA
+awakener/M
+awakening/S
+award/GRSD
+aware/P
+awareness/U
+awarenesses
+awash
+away
+awayness
+awe's
+awe-inspiring/Y
+awe/GcDS
+aweigh
+awesome/YP
+awesomeness/S
+awestruck
+awful/TYP
+awfulness/S
+awhile
+awkward/TPY
+awkwardness/S
+awl/MS
+awn/MJSGD
+awning/DM
+awoke
+awoken
+AWOL
+awry/T
+axe/mDSGM
+axed/F
+axehead/S
+Axel/M
+axes/F
+axial/FY
+axil/S
+axillary
+axiology/w1M
+axiom/SMW1
+axiomatising
+axiomatizing
+axis/M
+axle/SM
+axolotl/SM
+axon/SM
+ayah/SM
+ayatollah/S
+Ayckbourn/M
+aye/MS
+Ayers
+Aylesbury/M
+Aymara
+Ayr/M
+Ayrshire/M
+Azaadville
+Azalea
+azalea/MS
+Azalia
+Azerbaijan/M
+Azerbaijani
+Azeri/M
+Azikiwe/M
+azimuth/MoS
+azimuthal
+Aziz/M
+Azores
+Azov
+Aztec/M
+Aztecan
+azure/MS
+B.Sc.
+b/F
+BA
+baa/DSG
+Baal/M
+Baardman
+Baardskeerdersbos
+babalaas
+Babanango
+Babbage/M
+babbelas
+Babbitt/M
+babble/SRGD
+Babcock/M
+babe/SMZ
+babel
+Babelegi
+Babethu
+Babirwa
+baboon/MS
+babushka/SM
+baby/GTSDM
+babyhood/SM
+babyish
+Babylon/M
+Babylonia
+Babylonian/MS
+babysat
+babysit/SRG
+Baca
+baccalaureate/MS
+baccarat/SM
+bacchanal/SM
+bacchanalia
+Bacchanalian/S
+Bacchus
+Bach/M
+bachelor/MS
+bachelorhood/MS
+bacillary
+bacilli
+bacillus/SM
+back's/e
+back-door
+back-pedal/DG
+back-seat
+back-to-back
+back-up/S
+back/DRMJpSG
+backache/MS
+backarrow
+backbench/RS
+backbite/RS
+backboard/MS
+backbone/MS
+backbreaking
+backchaining
+backcloth/M
+backdate/SDG
+backdrop/DGSM
+backer/e
+backfield/SM
+backfill/DGS
+backfire/SDG
+backgammon/MS
+background/DRMGS
+backhand/RGDhSM
+backhoe/S
+backing/M
+backlash/DMGS
+backlasher
+backlit
+backlog/DSGM
+backorder
+backpack/RSGMD
+backplane/SM
+backplate/MS
+backrest/MS
+backscatter/MSd
+backside/MS
+backslapper/SM
+backslapping/M
+backslash/DSG
+backslid/r
+backslide/GS
+backspace/SDG
+backspin/MS
+backstabber/M
+backstabbing
+backstage
+backstairs
+backstitch/SMDG
+backstop/GSMD
+backstreet/M
+backstretch/SM
+backstroke/MDGS
+backtalk/S
+backtrack/DRGS
+backup/MS
+Backus
+backward/PSY
+backwardness/S
+backwash/SGDM
+backwater/SM
+backwood/mS
+backyard/SM
+bacon/SM
+baconer/M
+bacteria/Mo
+bacterial
+bactericidal
+bactericide/MS
+bacteriology/w3WMS
+bacteriophage
+bacteriophora
+bacterium/M
+bad-egg
+bad-tempered
+bad/PY
+baddie/SM
+baddish
+bade
+Baden/M
+badge/GMRSD
+badger/d
+Badi
+badinage/DSMG
+badland/S
+badman/M
+badmen/M
+badminton/M
+badmouth/SDG
+badness/S
+Badplaas
+Baedeker/M
+Baffin/M
+baffle/LDkRSG
+Bafokeng
+bag/DRZ62SMzG
+bagatelle/MS
+bagel/SM
+bagful/SM
+baggage/mSM
+bagged/M
+bagginess/S
+bagging/M
+baggy/TSP
+Baghdad/M
+Bagleyston
+bagpipe/MRS
+Bagqozini
+baguette/MS
+bah/S
+Bahamas/M
+Bahrain/M
+bail/7DMGS
+bailee/SM
+bailer
+bailey/S
+bailiff/MS
+bailiwick/SM
+bailout/MS
+bails/m
+Baird/M
+Bairiki/M
+bairn/MS
+bait/MGDS
+baiter/M
+baize/M
+Baja/M
+bake/RyDGS
+baked/U
+bakehouse/M
+Bakelite/M
+Bakenberg
+Bakenpark
+Bakersfield/M
+Bakerton
+Bakerville
+bakery/SM
+bakgat
+baking/M
+Bakkershoogte
+bakkie/S
+baklava/M
+Bakolobeng
+Bakone
+Bakoven
+baksheesh/MS
+Baku/M
+balaclava/SM
+balalaika/MS
+balance's/I
+balance/ISeDcAU
+balancedness
+balancer/MS
+balancing/eUcA
+balboa/SM
+balcony/SDM
+bald/TYDGPZ
+balder/W
+balderdash/SM
+baldness/S
+baldric/M
+Baldwin/M
+Baldy
+bale/R6SjGDM
+Balearic/M
+Baleema
+baleen/SM
+baleful/TP
+balefulness/S
+Balfour/M
+Balgowan
+Bali/M
+Balinese/M
+Balkan/SM
+balkanise/nSDG
+balkanize/GnSND
+ball-bearing/S
+ball/MGRDS
+ballad/MyS
+ballade/MS
+balladeer/MS
+balladry/SM
+Ballard/M
+ballast/DSGM
+ballcock/S
+ballerina/MS
+ballet/SMW
+ballfields
+ballgame/S
+ballistic/S
+ballistics/M
+Ballito
+balloon/GR3SMD
+balloonist
+ballot/SMd
+balloter/M
+ballpark/SM
+ballplayer/SM
+ballpoint/MS
+ballroom/MS
+balls/Z
+ballsy/T
+ballyhoo/MDSG
+Ballymena/M
+Ballymoney/M
+balm/2MSZ
+balminess/S
+Balmoral
+balmy/TP
+baloney/MS
+Balopa
+balsa/MS
+balsam/MdS
+balsamic
+Baltic/M
+Baltimore/M
+Baluchi
+Baluchistan/M
+balun
+baluster/MS
+balustrade/MS
+Balvenie
+Balzac/M
+Bamaaka
+Bamako/M
+Bamare-a-phogole
+Bambara
+Bambi/M
+Bambisanani
+Bambisane
+bamboo/SM
+bamboozle/DGS
+Bamokgoko
+Bamshela
+ban's
+ban/SUGD
+banal
+banality/SM
+banana/MS
+Banbridge/M
+Banbury/M
+Bancroft/M
+band/DmMSZG
+Banda
+bandage/MSDG
+bandager/M
+bandanna/M
+Bandar/M
+bandbox/SM
+bandeau/M
+bandeaux
+banded/E
+Bandelierkop
+bander/M
+banding's
+banding/E
+bandit/SM
+banditry/SM
+bandmaster/SM
+bandoleer/MS
+bandpass
+bands/E
+bandstand/MS
+bandstop
+bandwagon/MS
+bandwidth/SM
+bandy-legged
+bandy/TSGD
+bane/joM6
+baneful/T
+bang/MGRSD
+Bangalore/M
+Bangkok/M
+Bangladesh/M
+Bangladeshi/M
+bangle/SM
+Bangor/M
+Bangui/M
+Banhoek
+banish/DGSL
+banisher/M
+banister/SM
+banjo/SM
+banjoist/SM
+Banjul/M
+bank/MGRJ7DS
+bankbook/MS
+bankcard/S
+Bankies
+banking/M
+banknote/S
+bankroll/GSMD
+bankrupt/DGMS
+bankruptcy/MS
+Banksdrif
+banner/dMS
+Bannerman/M
+bannister/MS
+bannock/MS
+banns
+banquet/MrSd
+banquette/SM
+banshee/MS
+bantam/SM
+bantamweight/MS
+banter/dSk
+banterer/M
+Bantu/M
+banyan/MS
+banzai/S
+baobab/MS
+Baphalane
+Bapong
+Bapsfontein
+baptise/RGDS
+baptism/MoS
+baptismal
+baptist/MS
+baptistery/MS
+baptistry's
+bar-room/MS
+bar/dJMmDGS
+Baragwanath
+Barandas
+Baraseba
+Baratheo
+barb/RDGSMi
+Barbados/M
+Barbara/M
+barbarian/MS
+barbarianism/SM
+barbaric/Y
+barbarise/GSD
+barbarism/MS
+barbarity/SM
+barbarize/SDG
+Barbarosa
+barbarous/PY
+Barbary
+barbecue/SGDM
+barbecuer
+barbedwire/SM
+barbel/MS
+barbell/SM
+barber/dy
+barberry/SM
+barbershop/MS
+Barberspan
+Barberton
+Barbette/M
+barbital/M
+barbiturate/SM
+Barbour/M
+Barbuda/M
+barcarole/SM
+Barcelona/M
+Barclay/M
+Barclaycard
+bard/WSDGM
+Bardene
+bare-foot/D
+bare/YPTS
+bareback
+barefaced/YP
+barefoot/D
+barehanded
+bareheaded
+barelegged
+bareness/S
+Barents
+barf/GSYD
+barfly/MS
+bargain-basement
+bargain/SMDRG
+barge/mSGMDZ
+bargepole/M
+bargy/DS
+barhop/DGS
+baritone/SM
+barium/M
+bark/DRMSG
+barked/C
+barkeep/RS
+Barkley's
+barks/C
+barley/SM
+barleycorn/MS
+Barlow/M
+barmaid/MS
+barn/D6MSG
+Barnabas
+barnacle/DMS
+Barnard/M
+Barnes
+Barnet/M
+Barnett/M
+Barney/M
+barnie
+barns/6
+Barnsley/M
+Barnstaple/M
+barnstorm/RDGS
+Barnum/M
+barnyard/M
+Baroda/M
+barometer/SM1W
+baron/SM
+baronage/MS
+baroness/SM
+baronet/MS
+baronetcy/SM
+baronial
+barony/SM
+baroque/YMS
+baroqueness
+barque/SM
+Barr/ZM
+barrack/DSG
+barracker/M
+barracuda/MS
+barrage/GMDS
+barre/MS
+barred/E
+barrel/DSMG
+barren/P
+barrenness/S
+Barrett/M
+barrette/MS
+barricade/MDGS
+Barrichello/M
+Barrie/M
+barrier/SM
+barrio/MS
+barrister/MS
+Barron/M
+Barrow
+Barrow-in-Furness
+barrow/MS
+Barry/M
+Barrydale
+Barrymore/M
+bars/UCE
+barstool/MS
+Barstow/M
+Bart/M
+bartender/MS
+barter/Srd
+Bartholomew/M
+Bartlett/SM
+Bartley/M
+Bartók/M
+Barton/M
+Barvale
+Barvallen
+barycentre/MW
+baryon/MS
+bas-relief/S
+bas/S1do
+Basa
+basal
+basalt/MWS
+base/pYmLMTP
+baseball/MS
+baseband
+Basebo
+baseboard/MS
+based/C
+Basel/M
+baselessness
+baseline/SM
+baseness/S
+baseplate/M
+baser/C
+bases/C
+basetting
+bash/DG6Sj
+basher
+bashful/P
+bashfulness/S
+Bashkir
+basic/S
+basil/MS
+basilar
+Basildon/M
+basilica/MS
+basilisk/MS
+basin/6SM
+basined
+basinful/S
+basing/C
+Basingstoke/M
+basis/M
+bask/GDS
+basket/MyS6
+basketball/MS
+Basketfish
+basketry/MS
+basketwork/MS
+basophilic
+Basque/MS
+bass/M3S
+Basse-Terre/M
+basset/MS
+Basseterre/M
+Bassett/M
+bassinet/SM
+basso/M3S
+Bassonia
+bassoon/M3S
+bassoonist
+basswood/MS
+bast/MRGD
+bastard/q8YQ-MSZ
+bastardy/M
+baste/NSn
+Basterland
+Basterpad
+Bastille/M
+basting/M
+bastion/DM
+bat's/F
+bat/MmGSRZDd
+Bataung
+Batavia/M
+batch/MSDG
+batcher
+bate/CGADS
+bated/F
+Bateleur
+Bateman/M
+bater/C
+bath/DRMSG
+bathe/S
+bathetic
+bathhouse/MS
+bathmat/S
+Batho
+Bathobatho
+bathos/MS
+bathrobe/MS
+bathroom/MDS
+bathtub/SM
+Bathurst
+bathwater
+bathyscaphe's
+bathysphere/SM
+batik/SM
+bating/F
+batiste/MS
+Batlharos
+batman
+batmen
+baton/MS
+Bator/M
+bats/F
+battalion/MS
+batten/SMd
+batter/Zd
+batterer/S
+battery/SM
+batting/M
+battle-cry
+battle/MRSGLD
+battleaxe
+battledore/MS
+battledress
+battlefield/SM
+battlefront/MS
+battleground/SM
+battlement/D
+battleship/SM
+batty/T
+Batubatse
+bauble/SM
+baud/M
+Bauer/M
+Bauhaus/M
+baulk/DGSZM2
+baulker/M
+baulky/PT
+Bausch/M
+bauxite/M
+Bavaria/M
+Bavarian/MS
+Baviaanspoort
+Bawa
+bawd/SZzM2
+bawdiness/S
+bawdy/TP
+bawl/GSD
+bawler/M
+Baxter/M
+bay/MSDG
+Bayala
+Bayard/M
+bayberry/SM
+Bayesian
+Bayhead
+Baylor/M
+Baynesfield
+bayonet/dSM
+Bayonne/M
+bayou/MS
+Bayridge
+Baysville
+Bayswater
+Bayview
+Baywatch
+bazaar/MS
+bazillion/S
+Bazini
+Baziya
+bazooka/MS
+BBC/M
+bbl
+BBQ
+BBS
+BC
+BCD
+bdrm
+be/Yb
+Bea/M
+Beach
+beach/SDMG
+beachcomber/SM
+beachhead/SM
+Beachview
+beachwear/M
+Beachwood
+beacon/MSd
+Beaconsfield
+Beaconvale
+bead/MGmJDSZ
+beading/M
+beadle/SM
+beadworker
+beady/T
+beagle/MSGD
+beak/MSRD
+Beale/M
+beam-width
+beam/RGDMS
+bean/MSRDG
+beanbag/SM
+beanie/SM
+beano
+beanpole/MS
+beanstalk/MS
+bear-baiting
+bear/7GlRJS
+bearable/U
+bearably/U
+beard/MipDGS
+Beardsley/M
+bearing's
+bearing/c
+bearish/PY
+bearishness/S
+bearlike
+bears/c
+bearskin/SM
+beast/YMSJ
+beasties
+beastings/M
+beastliness/S
+beastly/TP
+beat/7SlRGJ
+beatable/U
+beatably/U
+beaten/U
+beatification/M
+beatify/WNDGnS1
+beating/M
+beatitude/MS
+Beatles
+beatnik/SM
+Beatrice/M
+beau/MS
+Beauchamps
+Beaufort/M
+Beaujolais
+Beaumont/M
+beaut/SZM
+beauteous/YP
+beautician/MS
+beautification/M
+beautify/RnSDWNG
+beauty/6SMj
+beaux/M
+beaver/MdS
+Beaverton/M
+bebop/MS
+becalm/SDG
+became
+because
+bêche
+beck/SDMG
+Becket/M
+Beckett/M
+Beckham/M
+beckon/Sd
+Becky/M
+becloud/SGD
+become/kSG
+becoming/UY
+Becquerel
+BECTa
+bed-wetting
+bed/RJMDGS
+bedaub/DSG
+bedazzle/LGDS
+bedbug/MS
+bedchamber/M
+bedclothes
+bedding/M
+Bede/M
+bedeck/GDS
+Bedelia
+bedevil/GLDS
+bedfellow/SM
+Bedford/M
+Bedfordpark
+Bedfordshire/M
+Bedfordview
+bedim/SDG
+bedizen/Sd
+bedlam/MS
+bedlinen
+bedmaker/SM
+bedmate/SM
+Bedouin/M
+bedpan/SM
+bedpost/MS
+bedraggle/GDS
+bedridden
+bedrock/MS
+bedroll/MS
+bedroom/DMS
+bedsheets
+bedside/SM
+bedsit/S
+bedsitter/M
+bedsore/MS
+bedspread/SM
+bedspring/MS
+bedstead/MS
+bedstraw/M
+bedtime/MS
+Bedwang
+Bedworth/M
+BEE
+bee-keeper/MS
+bee-keeping/M
+bee/SRyM
+Beeb
+Beebe/M
+beebread/SM
+beech/MS
+beechen
+beecher
+beechnut/MS
+beechwood
+beef/GD2SZM
+beefburger/MS
+beefcake/MS
+beefeater
+beefiness/S
+beefsteak/MS
+beefy/TP
+beehive/SM
+Beeld
+beeline/SDG
+Beelzebub/M
+been
+beep/SRDGM
+Beerbohm/M
+beermat/S
+Beersheba/M
+beery/T
+Beeshoek
+Beestekraal
+beeswax/MGD
+beet/MS
+Beethoven/M
+beetle/SDMG
+beetler
+beetroot/M
+beeves/M
+befall/GS
+befallen
+befell
+befit/DGMS
+befitting/Y
+befog/GDS
+before
+beforehand
+befoul/GDS
+befriend/GDS
+befuddle/LSDG
+Befula
+beg/DSG
+began
+Begawan/M
+beggar-my-neighbour
+beggar/SMdY
+beggarly/P
+beggary/M
+begin/SRJG
+beginning/M
+begone/S
+begonia/MS
+begot
+begotten/a
+begrime/SGD
+begrudge/kSGD
+begrudger
+beguile/DLRSkG
+beguine/MS
+begum/SM
+begun
+behalf/M
+behalves
+behave/DaGS
+behaver/a
+behaviour's/a
+behaviour/S3DM
+behavioural/Y
+behaviourism/MS
+behaviourist/W
+behaviours/a
+behead/SDG
+beheld
+behemoth/MS
+behest/MS
+behind/S
+behindhand
+behold/RGS
+beholden
+behove/DS
+beige
+Beijing/M
+being/MS
+Beirut/M
+Beja
+bejewel/GSD
+Bekkersdal
+Bela-bela
+Belabela
+belabour/MGDS
+Belarus/M
+belate/Dhi
+belated/P
+belay/DSG
+belch/GSD
+beleaguer/Sd
+Belfast/M
+Belfort
+belfry/SM
+Belgian/SM
+Belgium/M
+Belgrade/M
+Belgrano/M
+Belgravia
+Belhar
+belie
+belief/UME
+beliefs/E
+belier/M
+believability/M
+believable/UY
+believably/U
+believe/RSEGD
+believer/USM
+believing/U
+belittle/GLSD
+belittler/M
+Belize/M
+Bell
+bell-hop's
+bell-ringer/S
+bell/DmMGSY
+Bella/M
+belladonna/MS
+Bellair
+Bellamy/M
+Bellavista
+bellboy/MS
+belle/MS
+belletrist/MWS
+Belleville/M
+Bellevue
+Bellfish
+bellflower/M
+Bellgate
+bellhop/SM
+bellicose/PY
+bellicosity/SM
+bellies/f
+belligerence/SZM
+belligerency/SM
+belligerent/YMS
+Bellini/M
+bellow/DSG
+Bellrail
+Bellview
+Bellville
+bellwether/MS
+Bellwood
+belly's/f
+belly/DGMS
+bellyache/SDGM
+bellyacher/M
+bellybutton/MS
+bellyful/S
+Belmont/M
+Belmopan/M
+Beloit
+belong/GSDJ
+belonging/M
+belongingness
+beloved/S
+below
+belt-fed
+belt/GDMS
+belted/U
+Belthorne
+belting/M
+Belton/M
+Beltsville/M
+beltway/MS
+beluga/SM
+Belvedere
+belvedere/M
+Belvenie
+bely/DGS
+beman
+Bemba
+bemire/DGS
+bemoan/DGS
+bemuse/SGDhL
+Ben/M
+bench/DMGS
+bencher/M
+benchmark/DGMS
+bend/RSD7G
+bends/U
+beneath
+Benedict/M
+Benedictine/M
+benediction/MS
+benedictory
+benefaction/SM
+benefactor/SM
+benefactress/S
+benefice/GDMSo
+beneficence/MS
+beneficent/Y
+beneficial/P
+beneficiary/SM
+benefit/rSdM
+Benelux/M
+benevolence/MS
+benevolent/YP
+Benfarm
+Bengal/M
+Bengali/M
+Benghazi/M
+Bengu
+benighted/YP
+benign/Y
+benignant
+benignity/MS
+Benin/M
+Benjamin/M
+Benmore
+Bennett/M
+Bennington/M
+Benny/M
+Benoni
+Benoryn
+Benrose
+Benson/M
+Bensonvale
+bent/U
+Bentley/MS
+Benton/M
+bentwood/MS
+benumb/SGD
+Benz/M
+Benzedrine/M
+benzene/MS
+benzine/MS
+Beowulf/M
+bequeath/DSG
+bequest/MS
+Berario
+berate/SGD
+Berber/M
+Berdsig
+Berea
+bereave/LDSG
+Bereaville
+bereft
+Beresford/M
+beret/SM
+Berg
+berg/MS
+Bergbron
+Bergen/M
+Berger/M
+Bergerac/M
+bergie
+Bergman/M
+Bergmanshoogte
+Bergnek
+Bergshoop
+Bergsig
+Bergstrom/M
+Bergstroom
+Bergville
+Bergvlei
+Bergvliet
+Bergzicht
+beribbon
+beribboned
+beriberi/MS
+Bering
+Berk
+Berkeley/M
+berkelium/M
+Berkowitz/M
+Berkshire/M
+Berlin/Mr
+Berlioz/M
+Berlitz/M
+berm/MS
+Berman/M
+Bermuda/M
+Bern/M
+Bernadette/M
+Bernadine/M
+Bernard/M
+Bernardino/M
+Bernardo/M
+Berne/M
+Bernhard/M
+Bernhardt/M
+Bernice/M
+Bernie/M
+Bernoulli/M
+Bernstein/M
+Beroma
+berry/MGSD
+berrylike
+berserk/S
+berserker/M
+Bert/M
+berth/DMGS
+Bertha/M
+Bertievale
+Bertram/MS
+Bertrand/M
+Bertsham
+Berwick-upon-Tweed/M
+Berwick/M
+beryl/MS
+beryllium/M
+Beryx
+bes
+beseech/DGkRJS
+beseem/GDS
+beset/GS
+beside/S
+besiege/DSRG
+besmear/GSD
+besmirch/SGD
+besom/dMS
+besot/GDS
+besought
+bespangle/SGD
+bespatter/dS
+bespeak/GS
+bespectacled
+bespoke
+bespoken
+Bessel/M
+Bessemer
+Bessie/M
+best-known
+best-seller/S
+best-selling
+best/DGS
+bester
+Bester/S
+bestial/Y
+bestiality/SM
+bestiary/MS
+bestir/GDS
+bestow/GDS
+bestowal/MS
+bestrew/DSG
+bestrewn
+bestridden
+bestride/GS
+bestrode
+bestubble/D
+bet/SGRMD
+beta/MS
+betake/GS
+betaken
+betatron/M
+betcha
+bête/S
+betel/SM
+Betelgeuse
+Beth/M
+Bethal
+Bethanie
+Bethany/M
+bethel/M
+Bethelsdorp
+Bethesda/M
+bethink/GS
+Bethlehem/M
+bethought
+Bethulie
+betide/SDG
+betimes
+bêtise
+betoken/dS
+betook
+betray/DGRS
+betrayal/MS
+betroth/GDS
+betrothal/SM
+Betsey/M
+Betsy
+Bette/MZ
+better-off
+better/Ld
+Betty/SM
+between/PS
+betwixt
+Beulah/M
+bevel/RDMGS
+beverage/MS
+Beverley/M
+Beverly
+bevy/MS
+bewail/SDG
+beware/SDG
+bewhisker
+bewhiskered
+bewigged
+bewilder/dhLkiS
+bewitch/SGLDk
+Bexley/M
+Beyerspark
+beyond
+bezel/MS
+bezique
+Bezuidenhoutville
+bf
+Bhambanana
+Bhambayi
+Bhangonoma
+Bhekabezayo
+Bhekimfundo
+Bhekuzulu
+Bhevula
+Bhojpuri
+Bhongweni
+Bhopal/M
+Bhutan/M
+Bhutani
+bi-level
+bi/M
+biannual/Y
+bias/DGMS
+biased/U
+biassed
+biasses
+biassing
+biathlon/SM
+biaxial/Y
+bib/MDGS
+bible/MwS1
+biblicist/MS
+bibliographer/MS
+bibliography/W1MwS
+bibliophile/MS
+bibulous
+bicameral
+bicameralism/MS
+bicarb/MS
+bicarbonate/SM
+bicentenary/S
+bicentennial/S
+biceps
+bichromate/MD
+bicker/rdS
+bickering/M
+biconcave
+biconnected
+biconvex
+bicuspid/S
+bicycle/RS3DGM
+bid's
+bid/ASecGf
+biddable
+bidden/U
+bidder/MS
+bidding/MS
+Biddle/M
+biddy/MS
+bide/SGD
+bider/M
+bidet/SM
+bidiagonal
+bidirectional/Y
+biennial/YS
+biennium/SM
+bier/M
+Biesiesvlei
+bifocal/S
+bifurcate/YnGSND
+bifurcation/M
+big-boned
+big-name
+big/TDPG
+bigamous
+bigamy/M3S
+Bigelow/M
+biggie/M
+biggish
+bighead/SM
+bighearted
+bigheartedness/S
+bighorn/MS
+bight/MSDG
+bigmouth/MS
+bigness/S
+bigot/MdyS
+bigoted/Y
+bigotry/MS
+bigwig/MS
+Bihari
+biharmonic
+bijection/MS
+bijective/Y
+bijou/M
+bijoux
+bike/SGMDR
+bikini/MDS
+Bikol
+bilabial
+bilateral/YP
+bilayer/S
+Bilbao/M
+bilberry/SM
+bile/MS
+bilge/SDMG
+bilharzia
+biliary
+bilinear
+bilingual/YS
+bilingualism/MS
+bilious/P
+biliousness/S
+bilk/RGSD
+bill/RSYDMGJ7
+billboard/DGSM
+billet/MdS
+billiard/MS
+Billie/M
+billing/M
+billion/MSH
+billionaire/SM
+billow/GSDZM
+billowy/T
+billposters
+billy-goat
+billy/SM
+biltong
+bimbo/SM
+bimetallic
+bimetallism/SM
+bimodal
+bimolecular/Y
+bimonthly/S
+bin/DGSM
+binary/S
+binaural/Y
+bind/AUGS
+binder/MSZ
+bindery/SM
+binding/PSMY
+bindle/M
+bindweed/MS
+binge/DGSM
+bingen
+Bingham/M
+Binghamton
+Bingley
+bingo/MS
+Bini
+binnacle/SM
+binocular/YS
+binodal
+binomial/MSY
+binuclear
+biochemical/SY
+biochemist/MyS
+biochemistry/MS
+biodegradability/S
+biodegradable
+biodiversity/S
+bioengineering/M
+bioethics
+biofeedback/SM
+biog/S
+biograph/RwWZ1
+biography/SM
+biol
+biology/w3M1WS
+biomass/MS
+biomedical
+biomedicine/M
+biometric/S
+biometrics/M
+biometry/MW
+biomolecule/S
+biomorph
+bionic/YS
+bionics/M
+biophysic/Y3S
+biophysical
+biophysicist
+biophysics/M
+biopic/S
+biopsy/SGMD
+biorhythm/S
+bioscience/S
+bioscope
+biosphere/SM
+biostatistic/S
+biosynthesized
+biota/W
+biotechnology/3MwS
+biotin/MS
+bipartisan
+bipartisanship/SM
+bipartite/Y
+bipartition/M
+biped/MS
+bipedal
+bipedalism
+biplane/MS
+bipolar
+bipolarity/SM
+biracial
+birch/MS
+birchen
+Birchleigh
+bird/RGSDM
+birdbath/MS
+birdbrain/DSM
+birdcage/SM
+Birdfish
+Birdhaven
+birdhouse/MS
+birdie/DMS
+birdieing
+birdlike
+birdlime/DGMS
+birdseed/SM
+birdsong
+Birdswood
+birdtables
+birdwatch/RG
+birefringence/M
+birefringent
+biretta/MS
+Birgit/M
+Birkenhead/M
+Birmingham/M
+Birnam
+Biro/M
+birth's/A
+birth/GMDS
+birthday/MS
+birthmark/MS
+birthplace/SM
+birthrate/SM
+birthright/MS
+births/A
+birthstone/MS
+bis
+Biscay/M
+Biscayne/M
+biscuit/MS
+bisect/GSD
+bisection/MS
+bisector/MS
+biserial
+bisexual/MYS
+bisexuality/SM
+Bishkek/M
+Bisho
+bishop/dMS
+bishopric/MS
+Bishopscourt
+Bishopsgate/M
+Bishopstowe
+Bishu
+Bislama
+Bisley
+Bismarck/M
+Bismark/M
+bismuth/M
+bison/M
+bisque/SM
+Bissau/M
+bistable
+bistate
+bistro/MS
+bisyllabic
+bit/rM2ZkS
+bitblt/S
+bitch/SZzMD2G
+bitchiness/S
+bitchy/TP
+bite/cS
+biting
+bitmap/SM
+BITNET
+bits/C
+bitser/M
+bitten
+bitter-sweet/Y
+bitter-sweetness
+bitter/dPYS
+bitterer
+bitterest
+Bitterfontein
+Bittern
+bittern/MS
+bitterness/S
+bitternut/M
+bitterroot/M
+bitty/T
+bitumen/SM
+bituminous
+bitwise
+Bityi
+bivalent
+bivalve/DSM
+bivariate
+bivouac/SGMD
+biweekly/S
+biyearly
+biz/M
+Bizabonke
+Bizana
+bizarre/YP
+Bizet/M
+bizzes
+bk
+Blaaubosch
+blab/DRGS
+blabber/d
+blabbermouth/MS
+black-hearted
+black/YSDTGP
+Blackadder/M
+blackball/DSMG
+blackberry/SMG
+blackbird/MGDS
+blackboard/SM
+blackbodies
+Blackburn/M
+Blackcap
+blackcurrant/SM
+blacken/dS
+blackener/M
+Blackfoot/M
+blackguard/DMGYS
+blackhead/SM
+Blackheath
+Blackhill
+blacking/M
+blackish
+blackjack/GDMS
+blackleg/SMGD
+blacklist/DG
+blacklister
+blackly/3
+blackmail/RSDMG
+Blackman/M
+blackness/S
+blackout/MS
+Blackpool/M
+Blackrag
+Blackridge
+Blackshirt/MS
+blacksmith/MSG
+Blackstone/M
+Blackstream
+Blacktail
+blackthorn/MS
+Blackwell/M
+bladder/MS
+bladdernut/M
+bladderwort/M
+blade/SMDG
+Blaenau/M
+blah/SDMG
+Blaine/M
+Blair/M
+Blairgowrie
+Blake/M
+blame/D7MRSGp
+blameless/PY
+blamelessness/S
+blameworthiness/S
+blameworthy/P
+blanc/M
+blanch/DGS
+Blanchard/M
+Blanche/M
+blancher/M
+Blancheville
+blancmange/MS
+Blanco
+bland/TYP
+blandish/DGLS
+blandness/S
+blank/DPTGSY
+blanket/dMS
+blanketer/S
+blanketing/M
+blankness/S
+Blanton/M
+Blantyre/M
+blare/SDG
+blarney/MDGS
+blasé
+blaspheme/DRGSZ
+blasphemous/YP
+blasphemy/MS
+blast/SMDRG
+blasting/M
+blastoff/SM
+blatancy/SM
+blatant/Y
+blatantness
+blather/dS
+blatherer
+blatting
+blaze/MRGSkD
+blazon/Sd
+blazoner/M
+bldg
+bleach/GRSD
+bleached/U
+bleak/TPYS
+bleakness/S
+blear/z2DGSZ
+bleariness/S
+bleary-eyed
+bleary/TP
+bleat/SDG
+bleater/M
+bled
+bleed/RGS
+bleeding-heart
+bleep/RMDGS
+blemish/DSGM
+blemished/U
+blench/GSD
+blend/DRGS
+blerry
+blesbok/S
+Blesbuck
+Bleskop
+bless/GhDJiS
+blessed/P
+blessedness/S
+blessing/M
+Blevins
+blew
+Bligh/M
+blight/MDSG
+blighter/M
+Blikana
+Blikfontein
+Blikkies
+bliksem
+blimey/S
+blimp/MS
+blind/GRYDPTSk
+blindfold/GSD
+blinding/M
+blindness/S
+blink/RDGS
+blinker/d
+blinking/U
+Blinkpan
+Blinkpunt
+blinks/M
+Blinkwater
+blip/DGMS
+bliss/6Sj
+blissful/P
+blissfulness/S
+blister/kMdSZ
+blithe/TYP
+blitheness/S
+blithering
+blithesome
+blitz/GDMS
+blitzkrieg/MS
+blizzard/MS
+bloat/SDRG
+blob/GMDS
+bloc/RMGSD
+Bloch/M
+block's
+block/SUDG
+blockade/DRMSG
+blockage/MS
+blockbuster/MS
+blockbusting/M
+blockhead/MS
+blockhouse/MS
+blockier
+Bloekombos
+Bloemanda
+Bloemendal
+Bloemfontein/M
+Bloemhof
+Bloemside
+Bloemsmond
+Bloemspruit
+Blofeld/M
+blog/SDRMG
+bloke/SM
+Blomberg/M
+Blommekloof
+Blommendal
+Blomquist/M
+Blomtuin
+Blomvlei
+blond/MTPS
+blonde/SM
+blondish
+blondness/S
+blood-brother
+blood-curdling
+blood-heat
+blood-letting/MS
+blood-lust
+blood-money
+blood-poisoning
+blood-red
+blood-wort/M
+blood/GpizMD2SZh
+bloodbath/S
+bloodhound/MS
+bloodied/U
+bloodiness/S
+bloodless/PY
+bloodlessness/S
+bloodline/MS
+bloodroot/M
+bloodshed/MS
+bloodshot
+bloodsport/S
+bloodstain/SMD
+bloodstock/MS
+bloodstone/M
+bloodstream/MS
+bloodsucker/MS
+bloodsucking
+bloodthirsty/YPT
+bloodworm/M
+bloody/TPGSD
+bloodymindedness
+bloom/SMDRG
+Bloomfield/M
+Bloomington/M
+bloop/GDRS
+blossom/MdS
+blossomy
+blot/RMSDG
+blotch/ZSMDG
+blotchy/T
+blotto
+Bloubergrant
+Bloubergrise
+Bloubergstrand
+Bloubosrand
+blouse/DGSM
+blow-by-blow
+blow-drier
+blow-dry/DG
+blow-dryer
+blow-out/MS
+blow-up/MS
+blow/RSZG
+blowfish/M
+blowfly/MS
+blowgun/SM
+blowing/M
+blown/c
+blowpipe/MS
+blowtorch/MS
+blowy/T
+blowzy/T
+Blu-ray
+blubber/dSZ
+blubberer
+Blucher/M
+bludgeon/DGMS
+Bludger
+blue-black
+blue-blooded
+blue-collar
+blue-eyed
+blue-green
+blue-ground
+blue-pencils
+blue/PTSZYGJDM
+blueback
+Bluebeard/M
+bluebell/MS
+blueberry/MS
+bluebill/M
+bluebird/SM
+bluebonnet/MS
+bluebook/M
+bluebottle/SM
+bluebush
+bluefish/SM
+bluegill/MS
+bluegrass/MS
+Bluegum
+Bluegumbush
+Bluegumview
+blueing's
+blueish
+bluejacket/MS
+bluejeans
+blueness/S
+bluenose/MS
+bluepoint/MS
+blueprint/GMSD
+bluer/M
+Blueskin
+bluest/M
+bluestocking/MS
+bluesy/T
+Bluetooth
+Bluff
+bluff/RYSDTGP
+bluffness/S
+bluing/M
+bluish/P
+Blum/M
+blunder/dMkrJS
+blunderbuss/M
+Blunkett/M
+blunt/YPDTSG
+bluntness/S
+blur/D2ZSMhG
+blurb/GSDM
+blurriness/S
+blurring/Y
+blurry/T
+blurt/GDS
+blurter
+blush/RkDGS
+blushing/UY
+bluster/SZdrk
+blusterous
+blvd
+Blydeville
+Blythe/M
+Blythswood
+Blyvooruitsig
+BMW/M
+BNFL/M
+Bo-kaap
+boa/MS
+Boadicea/M
+boar/MS
+board/DJRMGS
+boardgames
+boarding/M
+boardinghouse/MS
+boardroom/MS
+boards/e
+Boardwalk
+Boarfish
+boast/6GDRjSJ
+boasted/e
+boastful/P
+boastfulness/S
+boasting/e
+boasts/e
+boat-hook/S
+boat/SRDGM
+boatclubs
+boathouse/MS
+boating/M
+boatload/MS
+boatman/M
+boatmen/M
+boatswain/MS
+boatyard/MS
+bob-sleigh/SGRMD
+bob/GMSDZ
+Bobbie/M
+bobbin/SM
+bobbing/M
+bobble/MDSG
+bobby/SM
+bobbysoxer's
+bobcat/MS
+bobotie
+Boboyi
+bobs/M
+bobtail/MDGS
+bobwhite/MS
+Boca/M
+boccie/SM
+Bochabela
+Bochum
+bock/SDG
+bockwurst
+bod/dMS
+bode/ZS
+bodega/SM
+Bodenstein
+bodhisattva
+Bodibe
+bodice/MS
+bodied/M
+boding/M
+bodkin/SM
+BODMAS
+body-blow
+body-builder/SM
+body-building
+body-check
+body-colour
+body-piercing
+body/SGYDpM
+bodyguard/SM
+bodying/M
+bodysuit/S
+bodysurf
+bodyweight
+bodywork/SM
+Boegoeberg
+Boeing/M
+boekenhout
+Boekenhout
+boep
+Boer/MS
+boerbean
+boerboon
+boerbul
+boerbull
+boere
+boerebeskuit
+boerekos
+boeremeisie
+boeremusiek
+boereqanga
+boereqanqa
+boereseun
+boeresport
+boerewors
+boerie
+Boerperd
+Boerperde
+boerseun
+Boesmans
+Boesmanskop
+boet
+boetie
+boffin
+bog/ZDMSG
+Bogart/M
+bogey/mGSMD
+boggle/DSGk
+boggy/T
+Bogotá/M
+bogus
+Bohemia/M
+bohemian/S
+bohemianism/S
+Bohlokong
+Bohr/M
+Boichoko
+Boikanyo
+Boiketlo
+Boikhutso
+Boikhutsong
+boil/ADSG
+boiled/U
+boiler/MS
+boilermaker/MS
+boilerplate/MS
+Boipatong
+Boiphatong
+Bois/M
+Boise/M
+boisterous/PY
+boisterousness/S
+Boitekong
+Boitumelo
+Boitumelong
+Bojating
+Bojeni
+bok-bok
+bokbaard
+Bokkemanskloof
+Bokmakierie
+Boknesstrand
+Bokomo
+Boksburg
+bola/SM
+Boland
+Bolata
+bold/PTY
+boldface/MSGD
+boldness/S
+bole/MS
+bolero/MS
+Boleu
+Bolivar/M
+Bolivia/M
+Bolivian/S
+boll/MS
+Bolla-ntlokwe
+bollard/MS
+Bollinger/M
+bollocking
+bollocks
+Bollywood
+Bologna/M
+Bolokanang
+bolometer/WMS
+boloney's
+Bolopa
+Bolotwa
+Bolshevik/MS
+Bolshevism/M
+Bolshevist/SMW
+Bolshoi/M
+bolster/Sd
+bolsterer/M
+bolt's
+bolt-on
+bolt/UDGS
+bolter/M
+Bolton/M
+Boltonia
+Boltzmann/M
+bolus/MS
+boma
+bomb/MSRJDG
+bombard/LSDG
+bombardier/SM
+bombast/WMS1
+bombaster
+Bombay/M
+bombed-out
+bombproof
+bombshell/MS
+bona
+Bona-bona
+Bonamanzi
+bonanza/MS
+Bonaparte/M
+bonbon/SM
+bond/RSmDMGJ
+bondage/SM
+bondholder/MS
+bondwoman/M
+bondwomen
+bone/DZGRMSp
+Bonefish
+bonehead/MDS
+Bonela
+Bonella
+bonemeal
+bonfire/MS
+bong/GMDS
+Bongani
+Bongitole
+bongo/MS
+Bongolethu
+Bongweni
+Bonham/M
+bonhomie/SM
+Boniface/M
+boniness/S
+Bonisani
+Bonitapark
+Bonito
+bonito/MS
+bonkers
+Bonn/M
+Bonner/M
+bonnet/dMS
+Bonneville/M
+bonnie
+Bonnievale
+bonny/T
+bonsai/M
+bonsella
+Bonsmara
+bontebok/S
+bontebuck/S
+Bontheuwel
+Bontrug
+bonus/MS
+bony/PT
+bonzes
+boo/GSD
+boob/SZDMG
+booby-trap/S
+booby/MS
+boodle/DSMG
+boogeyman's
+boogie/DS
+boohoo/SDG
+book/7GMRJDS
+bookbind/RGJ
+bookbinder/Z
+bookbindery/MS
+bookbinding/M
+bookcase/MS
+booked/cA
+bookend/DGS
+bookie/SM
+booking/M
+bookish/PY
+bookkeep/JRG
+bookkeeping/M
+booklet/MS
+bookmaker/SM
+bookmaking/M
+bookmark/SMDG
+bookmarker
+books/Z
+bookseller/MS
+bookshelf/M
+bookshelves
+bookshop/SM
+bookstall/MS
+bookwork/M
+bookworm/MS
+boolean
+boom/SDG
+boomer/M
+boomerang/SMDG
+boomslang
+boon/MS
+Boone/M
+boonies
+Boons
+boor/MS
+Boordfontein
+boorish/PY
+boorishness/S
+boost/RMDSG
+boosterism
+boot/MGpDSZ
+bootblack/SM
+booted/A
+bootee/SM
+booth/SM
+bootie's
+bootlace/S
+Bootle/M
+bootleg/RSGD
+bootlegged/M
+bootlegging/M
+bootprints
+boots/A
+bootstrap/DSGM
+booty/SM
+Booysens
+booze/MRSGDZ
+boozy/T
+bop/RGSD
+Bophelong
+Bophuthatswana
+Boquinar
+Borakalolo
+borate/DSM
+borax/M
+Borchards
+Bordeaux
+Borden/M
+border/dSM
+borderer/M
+borderland/SM
+borderline/SM
+bore/RSkGDW
+Borealis
+boredom/MS
+borehole/S
+Borg/M
+boring/M
+boringness
+Boris/M
+born-again
+born/UA
+borne/c
+Borneo/M
+Borodin/M
+Borolelo
+boron/M
+borosilicate/M
+borough/SM
+borrow/DRGS7J
+borrowing/M
+borscht/MS
+borstal/MS
+borzoi/MS
+Bosbell
+bosberaad
+bosberade
+Bosbokrand
+Bosbou
+Bosch/M
+Boschendal
+Bose/M
+Bosfontein
+bosh/SM
+Boshoek
+Boshof
+Boskloof
+Boskop
+Boskruin
+Bosmanskloof
+Bosmont
+Bosnia-Herzegovina/M
+Bosnia/M
+Bosnian/MS
+bosom's
+bosom/UdS
+bosomy/T
+boson/SM
+Bosonia
+Bosplaas
+Bospoort
+Bosporus/M
+boss/SGDz2ZM
+bosser
+bossiness/S
+bossism/MS
+bossy/TP
+Boston/M
+Bostonian/MS
+Bostreep-ghieliemientjie
+bosun/M
+Bosville
+Boswell/M
+Bot
+bot/S
+botany/13SMWw
+botch/DRSG
+botfly/M
+both/Z
+Botha
+Botham/M
+Bothasig
+Bothasrus
+Bothaville
+bother/dS
+bothersome
+Bothithong
+bothy/M
+Botjhaba-tsatsi
+Botlale
+Botleng
+Botshabelo
+Botswana/M
+Botticelli/M
+bottle-fed
+bottle-feed
+bottle-green
+bottle/MRDSG
+Bottlebrush
+bottleneck/GDSM
+bottom-up
+bottom/dpSM
+bottomer
+bottomless/YP
+bottommost
+botulin/M
+botulinus/M
+botulism/MS
+Boucher/M
+bouclé
+boudoir/MS
+bouffant
+bougainvillea/M
+bough/MS
+bought/c
+Boughton
+bouillabaisse/M
+bouillon/SM
+boulder/dSM
+boulevard/SM
+bounce/ZRGDS2k
+bouncy/YT
+bound/iRpDGS
+boundary/MS
+bounded/P
+bounden
+boundless/PY
+boundlessness/S
+bounds/Ae
+bounteous/PY
+bounteousness/S
+bountiful/P
+bountifulness/S
+bounty/jDS6M
+bouquet/MS
+bourbon/MS
+bourée
+bourgeois/M
+bourgeoisie/MS
+Bourne/M
+Bournemouth/M
+bourses
+bout/SM
+boutique/MS
+boutonnière/SM
+Bouvier/M
+bovine/Y
+bow-legged
+bow-legs
+bow-saw/MS
+bow-tie/SM
+bow-window
+bow/RmGDS
+bowdlerise/DnSG
+bowdlerize/NnSDG
+bowed/U
+bowel/DSGM
+Bowen/M
+bower/d
+Bowery
+Bowes
+Bowie
+bowing/M
+bowl/MRG6DS
+bowlful/S
+bowline/SM
+bowling/M
+bowser/M
+bowsprit/MS
+bowstring/MGDS
+bowwow/MGDS
+bowyer/MS
+box-office
+box/DZM2GR6S
+boxcar/MS
+boxful/M
+boxing/M
+boxlike
+boxtops
+boxwood/SM
+Boxy
+boxy/T
+boy/SM
+Boyce/M
+boycott/SDG
+boycotter/M
+Boyd/M
+boyer
+boyfriend/MS
+boyhood/MS
+boyish/YP
+boyishness/S
+Boyle/M
+Boyne
+boyscout
+boysenberry/SM
+bozo/MS
+BP
+bpi
+bps
+BR/M
+bra/pMWS
+braai/SD
+braaing
+braaivleis
+Braamfischer
+Braamfontein
+Brabham/M
+brace/SGMDk
+bracelet/MS
+bracer/M
+brachia
+Brachiopoda
+brachium/M
+bracken/MS
+Brackenfell
+Brackenham
+Brackenhurst
+bracket/dSM
+bracketing/M
+brackish/P
+brackishness/S
+Bracknell/M
+bract/SM
+bracteal
+bracteate
+brad/SMGD
+bradawl/M
+Bradbury/M
+Bradford/M
+Bradley/M
+Bradshaw/M
+Brady
+brae/QMS
+Braelyn
+Braemar
+brag/TRGDS
+Bragg/M
+braggadocio/MS
+braggart/MS
+Brahma/M
+Brahman/M
+Brahmanism
+Brahmaputra/M
+Brahms
+braid/GJDS
+braider/M
+braiding/M
+Braille/M
+brain-damaged
+brain-dead
+brain/2GMDSZp
+braincell/S
+brainchild/M
+brainchildren
+braininess/S
+brainless/PY
+brainpower/M
+brainstorm/MGDS
+brainstormer
+brainstorming/M
+brainteaser/S
+brainteasing
+Braintree/M
+brainwash/SDG
+brainwasher/M
+brainwashing/M
+brainwave/S
+brainy/TP
+Braj
+brake/DGMS
+Braklaagte
+Brakpan
+Brakuil
+bramble/SMDYG
+brambling/M
+brambly/T
+Bramhope
+Bramley
+Brampton/M
+Bramvlei
+bran/MDSG
+branch/SDGM
+branching/M
+branchlike
+Branchville/M
+brand/SZMDRG
+branded/aU
+Brandenburg/M
+brander/d
+brandewyn/M
+Brandfort
+Brandhof
+branding/a
+brandish/DSG
+Brando/M
+Brandon/M
+Brandpan
+brands/a
+Brandt/M
+Brandvlei
+Brandwacht
+Brandwag
+Brandwood
+brandy/SDGM
+brandywine
+Brannon/M
+Brant/M
+Braque/M
+bras/ZzGD2
+brash/SPTY
+brashness/S
+Brasilia/M
+brass/SM
+brasserie/SM
+brassiere/MS
+brassiness/S
+brassy/STP
+brat/MSZ
+Bratislava/M
+bratty/T
+bratwurst/MS
+Braun/M
+Braunville
+bravado
+brave/YSGTyDP
+braveness/S
+bravery/SM
+bravest/M
+bravo/SDG
+bravura/SM
+brawl/MDRGS
+brawn/2MSZ
+brawniness/S
+brawny/TP
+Bray
+bray/GDS
+brayer/M
+braze/SGD
+brazen/dPY
+brazenness/S
+brazier/SM
+Brazil/M
+Brazilian/SM
+Brazzaville/M
+breach/RMGSD
+bread-and-butter
+bread/MHDGS
+breadbasket/MS
+breadboard/GMDS
+breadbox/S
+breadcrumb/S
+breadfruit/MS
+breadline/MS
+breadth/M
+breadwinner/SM
+break's/e
+break-in/S
+break-up/S
+break/RGM7S
+breakable/U
+breakables
+breakage/SM
+breakaway/SM
+breakdown/SM
+breakfast/MDRSG
+breaking/M
+breakneck
+breakout/SM
+breakpoint/SDGM
+breaks/e
+breakthrough/MS
+breakup/MS
+breakwater/SM
+bream/DGS
+breast/SMGD
+breastbone/MS
+breastfed
+breastfeed/G
+breasting/M
+breastplate/MS
+breaststroke/MS
+breastwork/MS
+breath/RJSZMG7Dp
+breathable/U
+breathalysed
+breathalyser/S
+breathe/S
+breathing/M
+breathless/PY
+breathlessness/S
+breathtaking/Y
+breathy/T
+Breaunanda
+breccias
+brecciated
+Brecknock
+bred
+Bredasdorp
+Bredell
+bredie
+breech-loaded
+breech-loader
+breech-loading
+breech/MSDG
+breeching/M
+breed/RGMS
+Breede
+breeding/M
+Breerivier
+breeze/GDZMS
+breeziness/S
+breezy/YPT
+Breidbach
+Breipaal
+Bremen/M
+bremsstrahlung/M
+Brenda/M
+Brendan/M
+Brendavere
+Brennan/M
+Brenner/M
+Brent/M
+Brentford/M
+Brenthurst
+Brentpark
+Brentwood/M
+Brentwoodpark
+Brest/M
+brethren
+Breton/M
+Brett/M
+breve/SM
+brevet/SDGM
+breviary/SM
+brevity/SM
+brew/RMDGS
+brewer/Z
+brewery/SM
+brewing/M
+Brewster/M
+breyani
+Breyten
+Brian/M
+briar/M
+Briardale
+Briardene
+bribe/RySDG
+bribery/SM
+bric-a-brac
+bric-à-brac
+bric/GD
+Brice/M
+brick-red
+brick/SM
+brickbat/MS
+bricker
+bricklayer/MS
+bricklaying/MS
+brickmason/S
+brickwork/MS
+brickyard/M
+bridal
+bride/SM
+bridegroom/SM
+bridesmaid/MS
+Bridewell/M
+bridge/MDSG
+bridgeable/U
+Bridgebank
+Bridgefield
+bridgehead/SM
+Bridgemead
+Bridgend/M
+Bridgeport/M
+Bridget/M
+Bridgetown/M
+Bridgevale
+Bridgewater/M
+bridgework/SM
+bridging/M
+Bridgmanville
+Bridgnorth/M
+Bridgton
+bridle/MDSG
+bridled/U
+bridleway/S
+brief/YSJDTPG
+briefcase/SM
+briefed/C
+briefer/C
+briefing/M
+briefness/S
+briefs/C
+brier/SM
+Brierly/M
+brig/SM
+brigade/MSDG
+brigadier/SM
+Brigadoon/M
+brigand/SM
+brigandage/SM
+brigantine/MS
+Briggs/M
+Brigham/M
+bright-eyed
+bright/TGPY
+brighten/rdS
+brightness/S
+Brighton/M
+Brightside
+brilliance/SMZ
+brilliancy/SM
+brilliant/YPS
+brim-full
+brim/6pSGMD
+brimstone/MS
+Brindhaven
+Brindisi/M
+brindle/SMD
+Brindlebass
+brine/SGMDZ
+briner/M
+bring/RSG
+brininess/S
+brinjal/S
+brink/MS
+Brinkley/M
+brinkmanship/SM
+briny/TP
+brio
+brioche/SM
+briquette/MS
+Brisbane/M
+brisk/YPTG
+brisket/MS
+briskness/S
+bristle/SGYDM
+bristly/T
+Bristol/M
+bristols
+Brit.
+Brit/S
+Britain/M
+Britannia/M
+Britannic
+Britannica
+britches
+Briticism
+British/RY
+Britishness
+Briton/SM
+Britstown
+Brittany/M
+Britten/M
+brittle/DTGPS
+brittlely
+brittleness/S
+Brixton
+Briza
+BRM
+bro
+broach/SGD
+broacher/M
+broad-brush
+broad-minded/Y
+broad-mindedness
+broad/TSY
+Broadacres
+broadband
+Broadbill
+broadcast/RASG
+broadcasting/S
+broadcloth/MS
+broaden/rSd
+Broadlands
+broadleaved
+broadloom/MS
+broadness/S
+broadsheet/MS
+broadside/SMDG
+broadsword/MS
+Broadway/M
+Broadwood
+brocade/SDMG
+broccoli/MS
+brochette/MS
+brochure/MS
+Brock/M
+Broeder
+Broederbond
+Broederbonder
+Broedersput
+Broederstroom
+broedertwis
+broekielace
+brogue/MS
+broil/RGDS
+broke/RG
+broken-down
+broken-hearted/Y
+broken-heartedness
+broken/UY
+brokenness/M
+broker/d
+brokerage/MS
+Bromford/M
+Bromhof
+bromide/SWM
+bromine/M
+Bromley/M
+Bromsgrove/M
+Bromwich/M
+Bronberrik
+bronc/S
+bronchi/M
+bronchial
+bronchiolar
+bronchiole/MS
+bronchiolitis
+bronchitic/S
+bronchitis/SM
+bronchus/M
+bronco/MS
+broncobuster/SM
+Bronkhorstspruit
+brontosaur/MS
+brontosaurus/SM
+Bronville
+Bronx/M
+bronze/SMGD
+bronzed/M
+bronzer
+bronzing/M
+brooch/MS
+brood/MR2DGSZk
+broodmare/MS
+broody/TP
+brook/GMDS
+Brookdale
+brooklet/SM
+Brooklyn
+Brookmead
+brookside
+Brookville
+broom/DGMS
+broomstick/MS
+Bros.
+brose
+Broteni
+broth/RMS
+brothel/MS
+brother-in-law
+brother/dY
+brotherhood/MS
+brotherliness/S
+brotherly/P
+brothers-in-law
+brougham/SM
+brought
+brouhaha/SM
+brow/MS
+browbeat/GS
+browbeaten
+brown/MDGPTYS
+Brownburnie
+Browne/M
+Brownell/M
+brownfield
+Brownian
+brownie/MTS
+browning/M
+brownish
+brownness/S
+brownout/MS
+brownstone/MS
+brows/BRGDS
+browse
+Broxbourne/M
+Broxtowe/M
+brr
+Brubeck/M
+Brubru
+Bruce/M
+brucellosis/M
+Bruckner/M
+bruin/MS
+bruise/RDGSJ
+bruit/S
+Bruma
+Brummeria
+brunch/MDGS
+Brunei/M
+Brunel/M
+brunet/S
+brunette/MS
+Bruno/M
+Brunswick/M
+brunt/MDGS
+Bruntville
+brush-off/S
+brush-up
+brush/DSMGZ
+brusher/M
+brushfire/MS
+brushier
+brushlike
+brushwood/SM
+brushwork/SM
+brusque/PTY
+brusqueness/S
+Brussels/M
+brutal/qQ8-
+brutality/MS
+brute/DGMoS
+bruter
+brutish/PY
+brutishness/S
+Brutus/M
+Bryan/M
+Bryanbrink
+Bryanston
+Bryant/M
+Bryce/M
+Brymac
+Brymore
+Bryn/M
+Bryntirion
+BSA
+BSD
+BSkyB/M
+BTU
+BTW
+bu.
+bubble/MSDYG
+bubblegum/S
+bubbly/T
+bubo/M
+buboes
+bubonic
+buccaneer/DSMG
+Buccleuch
+Bucele
+Buchanan/M
+Bucharest/M
+Buchenwald/M
+buchu
+buck-passing
+buck/DGMS
+bucker/M
+bucket/M6dS
+bucketful/SM
+buckeye/MS
+buckhorn/M
+Buckingham/M
+Buckinghamshire/M
+buckle's
+buckle/SDUG
+buckler/MS
+Buckley/M
+buckling/M
+buckminsterfullerene
+buckram/dMS
+bucksaw/MS
+buckshot/MS
+buckskin/MS
+buckteeth
+bucktooth/MD
+buckwheat/MS
+bucolic/SY
+bud/DGSZM
+Budapest/M
+Budd/M
+Buddha/M
+Buddhism/M
+Buddhist/SM
+buddy/SDMG
+budge/SGD
+budgerigar/MS
+budget/rMdS
+budgetary
+budgie/MS
+budging/U
+Budweiser/M
+Buena
+Buenos
+buff's
+buff/DGAS
+Buffalo
+buffalo/M
+buffaloes
+Buffels
+Buffelsdale
+Buffelsdoring
+Buffelsdraai
+Buffelspoort
+Buffelspruit
+buffer/rSMd
+buffered/U
+buffet/MdSJ
+bufflehead/M
+buffoon/MS
+buffoonery/MS
+buffoonish
+bug's
+bug-eyed
+bug/DGCRS
+bugaboo/MS
+Bugatti/M
+bugbear/SM
+bugger/dZ
+buggery/M
+buggy/TSM
+Buginese
+bugle/SRGMD
+Buhlanyanga
+Buhlebendabuko
+Buhlebuyeza
+Buhrmannsdrif
+Buick/M
+build-up/MS
+build/RJSG
+building/eSM
+builds/cA
+built-in
+built-up
+built/cA
+Buitendag
+Buitenzorgdorp
+Buitesig
+Bujumbura/M
+Bukazi
+Bukimvelo
+Bulawa
+Bulawayo'sc
+Bulawayo/M
+bulb/MGSD
+bulblet
+bulbous
+Bulgaria/M
+Bulgarian/MS
+bulge/DGkMZS
+Bulgerivier
+bulgy/T
+bulimarexia/S
+bulimia/MS
+bulimic
+bulk/SZD2GM
+bulker
+bulkhead/MDS
+bulkiness/S
+bulky/TP
+bull's-eye
+bull/MGDSY
+Bulldog
+bulldog/SM
+bulldoze/DRSG
+bullet/MS
+bulletin/dSM
+bulletproof/DG
+Bulletrap
+Bulleye
+bullfight/MSRG
+bullfighting/M
+bullfinch/SM
+bullfrog/MS
+bullhead/hDSMi
+bullheaded/P
+bullheadedness/S
+bullhide
+bullhorn/MS
+bullied/M
+bullion/MS
+bullish/PY
+bullishness/S
+bullock/MS
+bullpen/MS
+Bullray
+bullring/SM
+Bullseye
+bullseye
+bullshit/RGMSD
+bullwhackers
+bully/SGDMT
+bullyboy/SM
+bullying/M
+bulrush/MS
+bult
+Bultfontein
+Bulthoudersig
+Bulties
+bulwark/MDGS
+Bulwer
+bum/MTRGDS
+Bumazi
+bumble/DGRkS
+bumblebee/MS
+bummed/M
+bumming/M
+bump/RGD2SZ
+bumper/d
+bumpiness/S
+bumpkin/MS
+bumptious/YP
+bumptiousness/S
+bumpy/PT
+bun/SMZ
+bunch/SDGMZ
+bunchy/T
+bunco's
+buncombe's
+Bundestag/M
+bundle/SDGM
+bundled/U
+bundler/M
+bundling/U
+bundu-bash
+Bundy/M
+bung/MGSD
+bungalow/MS
+bungee/MS
+Bungeni
+bunghole/MS
+bungle/RSDkG
+bunion/MS
+bunk/MRGDS
+bunked/C
+bunker/d
+bunkhouse/MS
+bunkmate/SM
+bunko's
+bunks/C
+bunkum/M
+bunny-chow
+bunny/SM
+Bunsen/M
+bunt/RGJDS
+bunting/M
+Buntingville
+buoy/DGMS
+buoyancy/SM
+buoyant/Y
+Buqa
+bur/MYDGS
+Burbank/M
+Burberry/M
+burble/DSG
+burbler/M
+Burbreeze
+burbs
+Burch/M
+burden/MdS
+burdened/Uc
+burdening/c
+burdens/cU
+burdensome/YP
+burdock/MS
+bureau/SM
+bureaucracy/MS
+bureaucrat/q8W1QM-S
+Burford
+burg/MRS
+burgeon/DGS
+Burgersdorp
+Burgersfort
+Burgershoop
+burgess/SM
+burgh/RSM
+burglar/MS
+burglarious
+burglarproof/DG
+burglary/SM
+burgle/GSD
+burgomaster/MS
+Burgoyne/M
+Burgundian
+burgundy/S
+burial/MSA
+Buriat
+buried/U
+burier/M
+Burk/M
+Burke/M
+Burkina/M
+burl/S2DM
+burlap/MS
+burler/M
+burlesque/RSGDMY
+burliness/S
+Burlingame/M
+Burlington/M
+burly/TP
+Burma/M
+Burmese
+burn/DGRkJ7S
+burnable/S
+Burne/M
+burned/U
+Burnett/M
+Burnholme
+burnish/RSGD
+Burnley/M
+burnoose/MS
+burnout/MS
+Burnshill
+Burnside/M
+burnt/Y
+burntness
+Burnwood
+burp/MGDS
+burr/SM
+Burroughs
+burrow/MGRDS
+bursa/yM
+bursae
+bursar/MS
+bursary/MS
+bursitis/SM
+burst/GSZ
+burster/M
+bursts/e
+Burt/M
+Burton/M
+Burundi/M
+bury/SADG
+bus/SAM
+Busch/M
+bush/JZDmMGS2
+Bushbuck
+Bushbuckridge
+bushel/JMDSG
+busher
+bushfire
+Bushhill
+Bushido/M
+bushiness/S
+bushing/M
+Bushkoppies
+bushland
+Bushlands
+Bushmanland
+bushmaster/SM
+Bushnell/M
+Bushpig
+bushveld
+bushwhack/RGDS
+bushwhacking/M
+bushwillow
+bushy/TP
+business/m5S
+businesslike
+businesspeople
+businessperson/S
+busk/MRG
+buskin/MS
+buskined
+busman/M
+busmen
+bust/MRGDSZ
+bustard/MS
+busted/F
+bustle/GkSD
+busty/T
+busy/STYDGP
+Busybees
+busybody/SM
+busyness
+busywork/SM
+but/ASGD
+butane/SM
+butch/RSy
+butcher/Yd
+butcherer/M
+butchery/SM
+Bute/M
+butene/M
+Buthi
+butler/MdS
+butt-end/S
+butt/SRM
+butter/dZr
+butterball/MS
+buttercup/MS
+butterfat/SM
+Butterfield/M
+butterfingered
+butterfingers/M
+butterfly/MS
+buttermilk/M
+butternut
+butterscotch/M
+Buttersnoek
+Butterworth
+buttery/TS
+butting/M
+buttock/DGMS
+button's
+button/UdS
+buttoner/M
+buttonhole/GSDM
+buttonholer/M
+buttonweed
+buttonwood/MS
+buttress/MSGD
+butyl/M
+butyrate/M
+Buurendal
+Buxedeni
+buxom/Y
+buxomness
+Buxtehude/M
+Buxton/M
+buy/RSG
+buyback/S
+buying/c
+Buyisonto
+buyout/S
+buys/c
+Buysdorp
+buzz/DGRMZS
+buzzard/MS
+buzzword/MS
+bx
+bxs
+by
+by-election/S
+by-law/MS
+by-product/MS
+bye-bye
+bye-law/SM
+bye/SM
+Byelorussian
+byers
+bygone/S
+byline/MDSG
+byliner/M
+byname
+bypass/MGDS
+bypath/MS
+byplay/S
+Byrd/M
+byre/SM
+Byrne/M
+byroad/SM
+Byron/MW
+Byronismyah
+bys
+bystander/MS
+byte/SM
+byway/MS
+bywoner
+byword/SM
+Byzantine
+Byzantium
+c.Elegans
+c.elegans
+C.Lit.
+c/Nn
+Ca/y
+CAA
+cab/GMXNDSV
+cabal/MDGS
+cabala/SM
+caballero/MS
+cabana/MS
+cabaret/MS
+cabbage/DMSG
+cabby's
+cabdriver/MS
+caber/M
+Cabernet/M
+cabin/dSM
+cabinet/ySM
+cabinetmaker/MS
+cabinetmaking/SM
+cabinetry/SM
+cabinetwork/SM
+cable/SGMD
+cablecast/GS
+cablegram/SM
+cabochon
+caboodle/MS
+Cabot/M
+cabriolet/MS
+cabstand/MS
+cacao/SM
+cacciatore
+cache/DSGM
+cachepot/MS
+cacher
+Cachet
+cachet/dSM
+cackle/DGYRS
+CACM
+cacophonous
+cacophony/3SM
+cacti
+cactus/MS
+cad/MSZ
+cadaver/SM
+cadaverous/Y
+Caddick/M
+caddie
+caddish/PY
+caddishness/S
+Caddo
+caddy/SDMG
+cadence's/C
+cadence/DSMG
+cadences/C
+cadent/C
+cadenza/SM
+cadet/MS
+cadge/RGDS
+Cadillac/S
+Cadles
+cadmium/M
+cadre/MS
+caducei
+caduceus/M
+caeca
+caecal
+caecitis
+caecum/M
+caenorhabditis
+Caerphilly/M
+Caesar
+caesarean/S
+caesarian
+caesium/M
+caesura/SM
+Cafda
+café/MS
+cafeteria/MS
+caffeinated/C
+caffeine/MS
+caftan/SM
+Cafutweni
+cage/DzMR2GS
+cagey
+cageyness
+cagier
+cagiest
+caginess/SM
+cagoule/S
+Cahokia
+cahoot/MS
+Caicos/M
+caiman's
+Cain
+cairn/MDS
+Cairo/M
+Caisos
+caisson/MS
+caitiff/SM
+Caius
+cajole/RyLSGD
+cajolery/SM
+Cajun/SM
+cake/SMDG
+cakewalk/DGSM
+Cala
+calabash/MS
+calaboose/MS
+Calais
+calamari/S
+calamine/MSGD
+calamitous/PY
+calamity/SM
+calcareous/YP
+calciferous
+calcification/M
+calcify/GNSnD
+calcimine/MSDG
+calcine/DGS
+calcite/MS
+calcium/M
+CALCOMP
+calculability/MI
+calculable/I
+calculableness
+calculate/BDhikGNVSn
+calculated/Aa
+calculates/aA
+calculating/aA
+calculation/aSAM
+calculator/MS
+calculi
+calculus/M
+Calcutta/M
+Calder
+caldera/SM
+caldron's
+Caldwell/M
+Caleb/M
+Caledon
+Caledonia/M
+Caledonpark
+Caledonplein
+calendar/SMd
+calender/SdM
+calf-length
+calf/M
+calfskin/MS
+Calgary
+Calhoun/M
+calibrate/ASDNG
+calibrater's
+calibration/M
+calibrator/SM
+calibre/SNnM
+calico/M
+calicoes
+California/M
+Californian/SM
+californium/M
+Caligula
+caliph/MS
+caliphate/MS
+Calitzdorp
+call-boy
+call-girl/S
+call-up
+call/R7SGJD
+calla/SM
+Callaghan/M
+Callahan/M
+Callao
+callback/S
+called/aAU
+callee/M
+calligrapher/MS
+calligraphy/M3WS
+calling/M
+calliope/MS
+calliper/MS
+callisthenic/S
+callisthenics/M
+callosity/SM
+callous/PDYSG
+callousness/S
+callow/PT
+callowness/S
+calls/aA
+callus/dMS
+calm/DkPTYGS
+calmness/S
+caloric
+calorie/MS
+calorific
+calorimeter/SWM
+calorimetry/M
+Caltech
+Caltex
+calumet/MS
+calumniate/nDSGN
+calumniation/M
+calumniator/MS
+calumnious
+calumny/MS
+Caluza
+Calvary
+calve/GDS
+Calvert/M
+calves/M
+Calvin/3M
+Calvinia
+Calvinism
+Calvinist/W
+calyces's
+calypso/SM
+calyx/SM
+cam/SMD
+Camama
+camaraderie/SM
+camber/dSWM
+Camberley/M
+cambial
+cambium/MS
+Cambodia/M
+Cambodian/S
+Cambrian
+cambric/MS
+Cambridge/M
+Cambridgeshire/M
+camcorder/S
+Camden/M
+came/c
+camel-hair
+camel/MS
+camelhair's
+camellia/SM
+Camelot
+Camembert
+cameo/MGDS
+camera-ready
+camera/mS5M
+camerae
+Cameron/M
+Cameroon/M
+Camilla
+Camille
+Camino
+camion/M
+camisole/MS
+camomile/M
+camouflage/MRSDG
+camp-fire/SM
+camp-site/MS
+camp/R2SZzGMD
+campaign/MRDSG
+campanile/MS
+campanology/w3SM
+Campbell/M
+Campbelldorp
+Campbellsport
+Campbellstown
+camped/C
+Camperdown
+Camphersdrift
+camphor/MS
+Campos
+camps/C
+campus/MS
+campy/T
+camshaft/SM
+can't
+can-opener
+can/MrdRy2ZSzGD
+Canaan/M
+Canaanite
+Canada/M
+Canadian/S
+canal/qQ8MGSD-
+canapé/S
+canard/SM
+canary/MS
+canasta/SM
+Canaveral
+Canberra/M
+cancan/SM
+cancel/DRGS
+Cancele
+cancellate/NnD
+cancellation/M
+cancels/K
+cancer/SM
+cancerous/Y
+Candace
+candelabra/S
+candelabrum/M
+candelas
+candid/PY
+candidacy/MS
+candidate/MS
+candidature/S
+candider
+candidness/S
+candle/DGRMS
+candlelight/MS
+candlelighter
+candlelit
+candlepower/SM
+candlestick/MS
+candlewick/SM
+candour/MS
+candy-striped
+candy/SDMG
+cane/MJS
+canebrake/MS
+Canelands
+Caneside
+Cani
+canine/S
+caning/M
+canister/dSM
+canker/MdS
+cankerous
+cannabis/MS
+cannelloni
+cannery/SM
+Cannes
+cannibal/Q8Mq-S
+cannibalism/SM
+cannibalistic
+cannier
+canniest
+canniness/S
+cannister/SM
+Cannock
+cannon/dMS
+cannonade/DMSG
+cannonball/SMDG
+Cannonville
+cannot
+cannula
+canny/PUY
+canoe/MD3SG
+Canoga
+Canon
+canon/MwQ-83qSW1
+canonical/q8Q-
+canonist
+canopy/MDGS
+canst
+cant's
+cant/RCSGD
+cantabile
+cantaloup
+cantaloupe/MS
+cantankerous/PY
+cantankerousness/S
+cantata/MS
+canted/IA
+canteen/SM
+canter/d
+Canterbury/M
+canticle/SM
+cantilever/dMS
+canto/SM
+canton/dLMS
+cantonal
+Cantonese
+cantor/MS
+cants/A
+canvas/SGRDM
+canvasback/SM
+canvaser
+canvass/S
+canyon/MS
+cap/7rDGglSM
+capability/IMS
+capable/PI
+capabler
+capablest
+capably/I
+capacious/PY
+capaciousness/S
+capacitance/SM
+capacitate/V
+capacitive/Y
+capacitor/MS
+capacity's/c
+capacity/SMI
+caparison/MS
+cape/SMD
+Capemail
+caper/d
+capeskin/MS
+Capilano
+capillarity/MS
+capillary/S
+Capistrano
+capita/nMo
+capital/Q3-89qsSM
+capitalise/cSADG
+capitalised/U
+capitalism/MS
+capitalist/W1
+capitalize/ANDnSG
+Capitan
+capitation/CMS
+capitol/SM
+capitulate/AGDnSN
+capitulation/MA
+capo/MS
+capon/MS
+Capone
+Capote
+capped/U
+capping/M
+cappuccino/SM
+Capri
+caprice/MS
+capricious/YP
+capriciousness/S
+Capricorn
+caps/8
+capsicum/SM
+capstan/MS
+capstone/MS
+capsular
+capsule/GQ8MDS
+Capt.
+captain/MDGS
+captaincy/MS
+caption/GDM
+captioner
+captious/YP
+captiousness/S
+captivate/DGS
+captivation/M
+captivator/SM
+captive/NnMS
+captivity/SM
+captor/SM
+capture/DSAG
+capturer/MS
+Caputo
+car-jack/DRSJG
+car-sharing
+car-sick/P
+car-sickness/S
+car/SrdZM
+Caracas/M
+carafe/MS
+caramel/Q8MS
+carapace/SM
+carapaxes
+carat/MS
+caravan/DSMG
+caravanner/M
+caravansary/MS
+caravanserai's
+caravel/MS
+Caravelle
+caraway/MS
+carbide/MS
+carbine/MS
+carbohydrate/MS
+carbolic
+carbon-paper
+carbon/ns-Q98NqMWS
+carbonaceous
+carbonate/SMDG
+carbonation/M
+Carbondale
+carboniferous
+carbonyl/M
+carborundum
+carboy/MS
+carbuncle/MDS
+carbuncular
+carburettor/SM
+carcase/SM
+carcass/SM
+carcinogen/MWS
+carcinogenesis
+carcinogenicity/MS
+carcinoma/MS
+card-carrying
+card-index
+card/MDGRS
+cardamom/MS
+cardboard/MS
+carded/E
+carder/EMS
+cardholders
+cardiac/S
+Cardiff/M
+Cardigan/M
+cardigan/SM
+Cardin
+cardinal/SYM
+cardinality/MS
+carding/M
+cardiogram/MS
+cardiograph/MS
+cardioid/M
+cardiology/MS3
+cardiomegaly/M
+cardiopulmonary
+cardiovascular
+cards/E
+cardsharp/MRS
+care/jS6p
+cared/U
+careen/DGS
+career/3SMDG
+careerer
+careerism/M
+careerist
+carefree
+careful/PT
+carefulness/S
+caregiver/S
+careless/YP
+carelessness/S
+Carenvale
+cares/DG
+caress/SkvVM
+caresser/M
+caret/MS
+caretaker/MS
+careworn
+Carey/M
+cargo/M
+cargoes
+Carib
+Caribbean
+caribou/M
+caricature/3DMSG
+caricaturisation
+caricaturization
+caries/M
+carillon/MS
+Carina
+caring/U
+carious/K
+Carl/MG
+Carla
+Carleton
+Carletonville
+Carlin/M
+Carline
+Carlisle/M
+Carlo/S
+carload/GSM
+Carlota
+Carlow/M
+Carlsbad/M
+Carlson
+Carlsrhue
+Carlswald
+Carlton
+Carltonville
+Carlyle
+Carmarthen/M
+Carmel
+Carmen/M
+Carmichael
+carmine/SM
+carnage/MS
+carnal/Y
+carnality/SM
+Carnarvon
+carnation/ISM
+Carnegie/M
+carnelian/SM
+carnet/SM
+Carney/M
+carnival/MS
+carnivore/MS
+carnivorous/YP
+carnivorousness/S
+Carnot
+carny/G
+carob/MS
+carol-singing
+carol/RDSMG
+Carolina/SM
+Caroline/M
+Carolingian
+Carolinian/S
+Carolusberg
+Carolwood
+Carolyn
+carom/S
+carotene/MS
+carotid/M
+carousal/SM
+carouse/DSRG
+carousel/MS
+Carp
+carp/RSGMkD
+carpal/MS
+Carpathian/S
+carpel/SM
+Carpenter
+carpenter/dSM
+carpentering/M
+carpentry/MS
+carpet/MSdJ
+carpetbag/DRSGM
+carpeting/M
+carpi/M
+carpool/GSD
+carport/MS
+carpus/M
+Carr/M
+carrageen/M
+carrel/SM
+carriage/MaSf
+carriageway/MS
+Carrick
+Carrickfergus/M
+Carrie
+carrier/SM
+carrion/MS
+Carroll/M
+carrot/MS
+carroty/T
+carry-all/MS
+carry-cot/MS
+carry-on
+carry/DaGS
+carsick/P
+Carson
+cart/D6RMGS
+cartage/MS
+carte/M
+cartel/MS
+Carterville
+Cartesian
+cartful/S
+Carthage
+Carthaginian
+carthorse/SM
+Cartier
+cartilage/MS
+cartilaginous
+cartload/SM
+cartographer/SM
+cartography/SWM
+carton/SMd
+cartoon/SMD3G
+cartoonist
+cartridge/MS
+cartwheel/RSGMD
+Cartwright
+Caruso
+carve/RyDSGJ
+carven
+carving/M
+caryatid/MS
+Carys
+casaba/SM
+Casablanca
+Casanova/M
+Casarina
+casbah/M
+cascade/GMDS
+Cascades
+cascara/MS
+case-harden/dS
+case-load/SM
+case/MGLJSD
+casebook/SM
+cased/U
+casein/SM
+casework/SRM
+Casey/M
+cash-book/MS
+cash/MpDGS
+Cashan
+cashew/MS
+cashier/DGMS
+cashmere/SM
+casing/M
+casino/SM
+Casio
+cask/SGMD
+casket/MdS
+Cason
+Caspar
+Caspian
+Cassandra
+Cassanova
+cassava/MS
+Cassel/S
+Casseldale
+casserole/MSDG
+cassette/SM
+cassia/SM
+cassino's
+Cassiopeia
+Cassius
+cassock/DSM
+cassowary/SM
+cast's/e
+cast-iron
+cast-off/S
+cast/aSeAG
+castanet/MS
+castaway/MS
+caste/SRJM
+Casteel
+castellated
+caster/nN
+casteth
+castigate/DnGNS
+castigation/M
+castigator/MS
+Castillo/M
+casting/Mc
+Castle
+castle/GSMD
+Castlereagh/M
+Castleview
+castor/MS
+castrate/SDG
+castration/M
+castrato
+Castries/M
+Castro
+casual/YP
+casualness/S
+casualty/MS
+casuist/MSWy
+casuistry/SM
+cat-and-dog
+cat/zGMS2DZ
+cataclysm/WMS
+cataclysmal
+catacomb/MS
+catafalque/MS
+Catalan
+catalepsy/SM
+cataleptic/S
+Catalina
+catalogue/SRDG
+catalogued/U
+Catalonia
+catalpa/MS
+catalyse/GDSW
+catalysis/M
+catalyst/MS
+catalytic/Y
+catamaran/MS
+catapult/MGDS
+cataract/SM
+catarrh/SM
+catastrophe/SM1W
+catatonia/MS
+catatonic/S
+Catawba
+catbird/MS
+catboat/SM
+catcall/DMGS
+catch-all/SM
+catch/LRGZ7S
+catchpenny/S
+catchphrase/S
+catchup/SM
+catchword/SM
+catchy/T
+catechise/SDG
+catechism/MS
+catechist/MS
+catechize/GDS
+catecholamine/MS
+categorise/ASDG
+categorised/U
+categorize/ASDG
+category/SsQ98Mq-Ww1
+catenate/NF
+catenation/MF
+cater/drS
+catering/M
+caterpillar/MS
+caterwaul/DSG
+catfish/SM
+catgut/MS
+catharses
+catharsis/M
+cathartic
+Cathay
+Cathcart
+cathedral/SM
+Catherine
+catheter/Q8MS
+cathodal
+cathode/WSM
+catholic/M
+Catholicism
+catholicity/MS
+catholicly
+Catholics
+Cathy
+cation/MW
+catkin/SM
+catlike
+catnap/GSMD
+catnip/MS
+Cato
+Catskill/S
+catsuit/MS
+cattery/M
+cattiness/S
+cattle/Mm
+catty/TP
+CATV
+catwalk/MS
+Caucasian/S
+Caucasoid
+Caucasus
+Cauchy
+caucus/S
+caudal/Y
+caught/U
+cauldron/MS
+cauliflower/MS
+caulk/DRJGS
+causal
+causality/SM
+causate/Vv
+causation/M
+causative/S
+cause/SoRGMpnD
+causerie/MS
+causeway/MGSD
+caustic/SY
+causticity/SM
+cauterise/nSDG
+cauterize/SGNnD
+caution/MyKSDG
+cautioner/MS
+cautious/IY
+cautiousness's
+cautiousness/I
+cautiousnesses
+Cauville
+cavalcade/SM
+cavalier/GYPDS
+cavalry/SmM
+Cavan/M
+cave-in
+cave/DmMRGS
+caveat/MS
+Cavebass
+Cavendish
+caver/F
+cavern/MDSG
+cavernous/Y
+caviare/MS
+cavil/DRJGS
+caving/M
+cavitation
+cavity/FSM
+cavort/DSG
+caw/SGDM
+Cawood
+Caxton
+cay/MSC
+Cayenne/M
+cayenne/SM
+Cayman/M
+cayman/S
+Cayuga/M
+CB
+CBS
+cc
+CCTV
+CD-ROM
+CD/M
+CDC/M
+CDMA
+CDs
+CDT
+Ce
+cease/DSCG
+ceasefire/S
+ceaseless/PY
+ceaselessness/S
+ceasing/U
+Cebe
+Cebuano
+Cecil/M
+Cecilia
+cedar/SM
+Cedarvale
+Cedarville
+Cedarwood
+cede/SFKDAG
+Cederberg
+cedilla/SM
+Cedric/M
+Cefane
+Cefeni
+Ceil
+ceilidh/M
+ceiling/MDS
+celandine/MS
+Celanese
+celebrant/SM
+celebrate/DiySGnN
+celebrated/P
+celebration/M
+celebrator/SM
+celebrity/MS
+celerity/SM
+Celeron
+celery/SM
+celesta/MS
+Celeste
+celestial/Y
+Celia/M
+celibacy/SM
+celibate/MS
+cell/D3GMS
+cellar/MSd
+cellarer/M
+cello/3SM
+cellophane/SM
+cellphone/SM
+cellular/Y
+cellulite
+celluloid/MS
+cellulose/MS
+Celsius
+Celt/W
+Celtisdal
+cement/GSDRM
+cementa
+cementum/MS
+cemetery/SM
+cenobite/SWM
+cenotaph/SM
+censer/MS
+censor/dMS
+censored/U
+censorial
+censorious/PY
+censoriousness/S
+censorship/SM
+censurable
+censure/DRGSM
+census/SMd
+cent's
+cent/CA
+centaur/SM
+centavo/MS
+centenarian/MS
+centenary/S
+centennial/Y
+Centerton
+centigrade/S
+centilitre/MS
+centime/MS
+centimetre/MS
+centipede/MS
+Centocow
+Centrahil
+Central
+central/-9Qs8q3
+Centralia
+centralise/CnASGD
+centralism/M
+centralist
+centrality/SM
+centralize/CDGASnN
+centre/R3MSDoGJW
+centreboard/MS
+centrefold/S
+centreline/MS
+centrepiece/MS
+Centrex
+centric/F
+centrifugal/SY
+centrifugate/M
+centrifugation/M
+centrifuge/NGMDS
+centring/M
+Centrino
+centripetal/Y
+centroid/MS
+cents
+Centuli
+Centurion
+centurion/MS
+century/SM
+CEO
+cephalic/S
+Cephalochordata
+Cephalopoda
+Cepheid
+ceramic/3SM
+ceramicist
+ceramist/SM
+Cerberus
+cereal/MS
+cerebellar
+cerebellum/MS
+cerebra/no
+cerebral/S
+cerebrate/SGD
+cerebration/M
+cerebrum/MS
+cerement/MS
+ceremonial/S
+ceremonialness
+ceremonious/YU
+ceremoniousness/SM
+ceremony/oSM
+Ceres
+cerise/SM
+cerium/M
+cermet/SM
+CERN
+cert/SF
+certain/TY
+certainly/U
+certainty/SMU
+certifiable/Y
+certificate/MSD
+certification/MCA
+certified/UA
+certifier/MS
+certifies/A
+certify/DGCNSn
+certiorari/M
+certitude/IMS
+cerulean/MS
+Cerutiville
+Cervantes
+cervical
+cervix/M
+cessation/MS
+cession's/K
+cession/SFAM
+Cessna
+cesspit/M
+cesspool/SM
+cetacean/S
+Ceylon
+Ceza
+Cezwane
+CFC/S
+CfIT/M
+CFO
+cha-cha
+cha/yW
+Chablis
+Chacha
+chaconne
+Chad/M
+chador
+Chadwick/M
+chaetognath
+Chaetognatha
+chafe/GDS
+chafer/M
+chaff/MDGS
+chaffer/dr
+Chaffinch
+chaffinch/MS
+Chagatai
+chagrin/SM
+chagrined
+chain-smoke/DG
+chain/MDSG
+chained/U
+chainlike
+chains/U
+chainsaw/DSG
+chair/m5MDGS
+chairlady/M
+chairlift/MS
+chairmanship/SM
+chairperson/SM
+chaise/MS
+chakalaka
+Chalan/M
+chalcedony/MS
+chalet/MS
+chalice/MSD
+chalk/MDGSZ2
+chalkboard/MS
+chalkiness/S
+chalkline
+chalky/T
+challenge/SRkGD
+challenged/U
+challenging/U
+challis/MS
+chamber/MrdS
+Chamberlain/M
+chamberlain/SM
+chambermaid/SM
+chamberpot/S
+chambray/MS
+Chamdor
+chameleon/MS
+chamfer/dMS
+chammy's
+chamois/GMDS
+chamomile/SM
+Chamorro
+champ/DGS
+champagne/MS
+champaign/M
+champers
+champion/MSDG
+championship/MS
+Champlain
+chance's/a
+chance/yZ2DMSG
+chancel/MS
+chancellery/SM
+Chancellor/MS
+chancellor/SM
+chancellorship/MS
+Chancellorship/S
+chancer
+chancery/SM
+chances/a
+chanciness/S
+chancing/M
+Chancliff
+chancre/MS
+chancy/T
+chandelier/MS
+chandler/SM
+Chaneng
+Chang
+change-ringing
+change/lDRGBpS
+changeability/MS
+changeable/P
+changeableness/S
+changeably/U
+changed/U
+changeling/M
+changeover/SM
+changing/U
+channel/Q-98DGqJSsRM
+channelling/M
+Channing
+chanson/MS
+chant/RSMJDG
+Chantecler
+Chantelle
+chanteuse/SM
+chanticleer/MS
+Chantilly
+chantry/SM
+chaos/SM
+chaotic/Y
+chap/SDGM
+chapbook/SM
+chapeau/SM
+chapel/SMy
+chapelry/SM
+chaperon/d
+chaperonage/MS
+chaperone/MS
+chaplain/SM
+chaplaincy/MS
+chaplet/SM
+Chaplin
+Chapman
+chapter/dSM
+char/5SDG
+charabanc/SM
+character/6Qs9SMdq8p-t+
+characterised/U
+characteristic/SYM
+charade/MS
+charbroil/GSD
+charcoal/DGMS
+chard/MS
+Chardonnay/S
+Charfred
+charge/ScGEDAf
+chargeable/P
+charged/U
+charger/MES
+chariness/S
+chariot/MSDG
+charioteer/DMSG
+charisma/MW1
+charismata
+charismatic/S
+charitable/YP
+charitableness/S
+charitably/U
+charity/SM
+charlady/M
+charlatan/MS
+charlatanism/MS
+charlatanry/SM
+Charlemagne/M
+Charles
+Charleston
+Charlesville
+Charley
+Charlie
+Charlo
+Charlotte/M
+Charlottesville
+Charlottetown
+Charlton
+charm/DRSkpGM
+charming/T
+Charnwood
+charo
+chart/DRJ3S7GM
+charted/U
+charter/rd
+chartist
+chartreuse/MS
+chartroom/S
+Chartwell
+chary/YPT
+chase/RDSG
+Chasedene
+chasing/M
+chasm/MS
+chassis/M
+chaste/QPsYT
+chastely/U
+chasten/dS
+chasteness/S
+chastise/L
+chastity/MS
+chasuble/SM
+chat/Z2DzMSG
+château/SM
+chateaubriand
+châtelaine/MS
+chatelaine/MS
+Chatsworth
+Chattahoochee
+Chattanooga
+chattel/MS
+chatter/rdS
+chatterbox/SM
+chattiness/S
+Chatty
+chatty/PT
+Chaucer
+chauffeur/DMSG
+Chautauqua
+chauvinism/SM
+chauvinist/M1SW
+cheap/TY
+cheapen/Sd
+cheapish
+cheapness
+cheapskate/SM
+cheat/RDGS
+Chebeng
+Chechen
+check-in
+check-list/S
+check-up/SM
+check/ADGS
+checkable
+checked/U
+checker/S
+Checkers
+checklist/MS
+checkmate/SGMD
+checkout/S
+checkpoint/MS
+checksum/SMDG
+cheddar/S
+cheek/z2MDGSZ
+cheekbone/MS
+cheekiness/S
+cheeky/TP
+cheep/DSGM
+cheer/Rz2DjGSZp6
+cheerful/PT
+cheerfulness/S
+cheeriness/S
+cheerio/S
+cheerleader/MS
+cheerless/YP
+cheerlessness/S
+cheery/TP
+cheesa-stick
+cheese/ZDMSG
+cheeseboard
+cheeseburger/SM
+cheesecake/SM
+cheesecloth/SM
+cheeseparing/S
+cheesiness/S
+cheesy/TP
+cheetah/SM
+chef-d'oeuvre
+chef/SM
+Chekhov
+chelate/MNnGD
+chelation/M
+Chelmsford
+Chelmsfordville
+Chelmsleywood
+Chelsea/M
+Cheltenham
+Cheltondale
+chem/3
+chemical/YMS
+chemiluminescence/M
+chemiluminescent
+chemise/SM
+chemist/y
+chemistry/SM
+chemosynthesis
+chemotherapeutic/S
+chemotherapist/SM
+chemotherapy/SM
+Chempet
+chemurgy/MS
+Chen
+Cheney/M
+Cheng
+chenille/MS
+cheque/MRS
+chequebook/MS
+chequeing
+chequer/d
+chequerboard/MS
+Cherie
+cherish/DSG
+cherisher/M
+Chernobyl/M
+Cherokee/S
+cheroot/MS
+cherry/MS
+chert/MS
+cherub/SWM
+cherubim/S
+chervil/SM
+Cherwell
+Cheryl/M
+Chesapeake
+Cheshire/M
+chess/mMS
+Chessa
+chessboard/MS
+chest/M6SZD
+Chester-le-Street
+Chester/M
+chesterfield/MS
+Chesterton/M
+Chesterville
+chestful/S
+chestnut/SM
+chesty/T
+chevalier/SM
+Cheviot/MS
+Chevrolet
+chevron/MS
+chevroned
+Chevy
+chew/RSZ72GD
+chewiness/S
+chewy/T
+Cheyenne
+chg
+chge
+chi/M
+Chiang/M
+chianti/M
+chiaroscuro/SM
+Chiba
+Chibcha
+Chicago/M
+Chicagoan/S
+chicane/GMySD
+chicanery/SM
+Chicano/SM
+chicer
+chicest
+Chichester
+Chichewa
+chichi/ST
+chick/MS
+chickadee/MS
+Chickasaw/S
+chicken-and-egg
+chicken-livered
+chicken/dSM
+chickenfeed
+chickenhearted
+chickenpox/SM
+chickpea/MS
+chickweed/SM
+chicle/MYS
+chicness/S
+chicory/MS
+chide/GkDS
+Chief
+chief/aMS
+chiefdom/SM
+chiefly
+chieftain/SM
+chiffon/SM
+chiffonier/MS
+chigger/MS
+chignon/SM
+chihuahua/S
+chilblain/SM
+child/pM
+childbearing/M
+childbirth/SM
+childcare
+childes
+childhood/SM
+childish/PY
+childishness/S
+childless/P
+childlessness/S
+childlike/P
+childminders
+childproof/GD
+childrearing
+children/M
+Chile/SM
+Chilean/S
+chill/M2DTRGkSYP
+chilli/M
+chilliness/S
+chillness/S
+chilly/PTS
+Chiltern/S
+Chilton/M
+Chimaera
+chimaera/Mw
+chime/MDRSG
+chimera/MSWw
+chimney/MDS
+chimp/MS
+chimpanzee/SM
+chin-strap/SM
+chin-wag/GD
+chin/SMDpG
+China/mM
+china/SM
+Chinatown/M
+chinchilla/MS
+chine/MS
+Chinese/M
+chink/MDSG
+chino/SM
+Chinook
+chinstrap/S
+chintz/SZM
+chintzy/T
+chip/MGDSJZ
+chipboard/M
+chipmunk/MS
+Chippendale
+Chippenham
+Chippewa
+chippie
+chipping/M
+chippy/S
+Chirac/M
+chiral
+chirography/SM
+chiropody/3SM
+chiropractic/MS
+chiropractor/SM
+chirp/DSZG
+chirpy/T
+chirrup/Sd
+chisel/GDSRMJ
+Chiselhurst
+Chisholm
+Chisinau/M
+Chislehurston
+chit/SM
+chitchat/DGSM
+chitin/MS
+chitinous
+chitterlings
+chivalrous/PY
+chivalrously/U
+chivalrousness/S
+chivalry/WSM
+chive/SM
+chivvy/SDG
+chlamydia/S
+chlamydiae
+Chloe
+Chloorkop
+chloral/M
+chlorate/M
+chloride/MS
+chlorinate/CDSGN
+chlorination/M
+chlorine/NnM
+chlorofluorocarbon/S
+chloroform/DMGS
+chlorophyll/MS
+chloroplast/SM
+chloroquine/M
+chm
+Choboza
+chock-a-block
+chock-full
+chock/GSMD
+chocker
+chocoholic/S
+chocolate/SZM
+chocolatey
+Choctaw/S
+choice/MYTPS
+choir/GSMD
+choirboy/SM
+choirmaster/MS
+choke/DRkSG
+chokeberry/M
+chokes/M
+Chokoe
+choler/MS
+cholera/MSW
+cholesterol/SM
+choline/M
+cholinesterase/M
+Cholwane
+chommie
+chomp/GSD
+Chondrichthyes
+choose/RGS2Z
+choosiness/S
+choosy/T
+chop/zGR2ZDS
+chophouse/SM
+Chopin
+chopper/d
+choppiness/S
+choppy/TP
+chopstick/MS
+choral
+chorale/MS
+chord/SMDG
+chordal
+chordata
+Chordata
+chordate/SM
+chording/M
+chore/oDMSG
+chorea/MS
+choreograph/DWRSZG1
+choreography/MS
+chorines
+chorion/M
+chorister/SM
+Chorley
+choroid/S
+chortle/RSDG
+chorus/MSd
+chose
+chosen
+chow/SGMD
+Chris
+chrism/MS
+Chrismar
+Chrissie
+Chrissiefontein
+Chrissiesmeer
+Christ/M
+Christchurch
+christen/dJS
+Christendom
+christened/AU
+christening/M
+christens/A
+Christensen/M
+Christi
+Christian/SQM8
+Christiana/M
+Christianity
+Christiansen
+Christie
+Christina/M
+Christine
+Christlike
+Christmas/SM
+Christmastide
+Christmastime
+Christoburg
+Christoph/M
+Christopher/M
+Chrisville
+chroma/M1
+chromate/M
+chromatic/PS
+chromaticism/M
+chromatics/M
+chromatin/SM
+chromatogram/SM
+chromatograph/WZ
+chromatography/M
+chrome/DWMG
+chromic
+Chromite
+chromite/M
+chromium/SM
+chromosomal
+chromosome/MS
+chromosphere/M
+chronic/Y
+chronicle/MDRGS
+chronograph/SZM
+chronology/S3Mw1
+chronometer/SMW
+chrysalids
+chrysalis/MS
+chrysanthemum/MS
+Chrysler
+chub/SM2Z
+chubbiness/S
+chubby/PT
+chuck/GMDS
+chuckle/DGkS
+Chuenespoort
+chuff/MD
+chug/DSGM
+chukka/S
+chum/2DSMzGZ
+chumminess/S
+chummy/TP
+chump/MGDS
+chumping/M
+Chung
+chunk/2MDGSZ
+chunkiness/S
+chunky/TP
+chuntering
+Church
+Church-of-England
+church/5mMDYSG
+churchgoer/MS
+churchgoing/MS
+Churchill/M
+Churchillian
+churchly/P
+churchwarden/SM
+churchyard/MS
+churl/MS
+churlish/YP
+churlishness/S
+churn/RMDGS
+churning/M
+chute/DGSM
+chutney/MS
+chutzpah/SM
+Chuvash
+Chweni
+chyme/SM
+CIA
+ciao/S
+cicada/MS
+cicatrice/SM
+cicatrix/M
+Cicely
+Cicero
+cicerone/MS
+ciceroni
+CID
+cider/MSC
+cigar/SM
+cigarette/MS
+cigarillo/SM
+Ciko
+cilantro/S
+cilia/M
+ciliate/SYFD
+cilium/M
+cinch/MDGS
+cinchona/SM
+Cincinnati
+cincture/SMGD
+cinder/dMS
+Cinderella
+Cindy/M
+cine/M
+cinema/MSW
+cinematographer/MS
+cinematography/SWM
+Cinerama
+Cingco
+cinnabar/SM
+cinnamon/MS
+cipher's
+cipher/dCS
+cir
+circa
+circadian
+Circe
+circle/MDGS
+circler/M
+circlet/SM
+circuit/MSd
+circuital
+circuitous/YP
+circuitousness/S
+circuitry/SM
+circuity/SM
+circulant
+circular/Q8PMYS
+circularity/SM
+circulate/ySnDGNV
+circulated/A
+circulates/A
+circulating/A
+circulation/MA
+circulator
+circumcise/GNXSD
+circumcised/U
+circumciser/M
+circumcision/M
+circumference/SM
+circumferential/Y
+circumflex/MDGS
+circumlocution/MS
+circumlocutory
+circumnavigate/SxnDNG
+circumnavigation/M
+circumpolar
+circumscribe/DGSNX
+circumscription/M
+circumspect/Y
+circumspection/MS
+circumsphere
+circumstance/SGMD
+circumstantial/Y
+circumvent/DG7S
+circumvention/MS
+circus/MS
+cirque/MS
+cirrhoses
+cirrhosis/M
+cirrhotic/S
+cirri/M
+cirrus/M
+Ciskei
+cissy
+cistern/MS
+citable
+citadel/MS
+citation/MA
+cite/NSGZDn
+cited/AI
+cites/AI
+citified
+citing/IA
+citizen/yYSM
+citizenry/SM
+citizenship/SM
+citrate/MD
+Citroen/M
+citron/SM
+citronella/MS
+citrous
+citrus/MSW
+Citrusdal
+city/MDS
+cityscape/SM
+citywide
+civet/SM
+civic/S
+civics/M
+civil/sQ98-Yq
+civilian/SM
+civilised/U
+civility/ISM
+civilized/U
+civilly/U
+civvies
+CJD
+ck/C
+cl/JG
+clack/GDS
+clackers
+Clackmannanshire/M
+clad/JSG
+cladding/M
+claim's
+claim/RCGASED
+claimable
+claimant/SM
+claimed/U
+Claire
+Clairewood
+clairvoyance/MS
+clairvoyant/SY
+Clairwood
+clam/DZ2GMzS
+clamber/rdS
+clamminess/S
+clammy/TP
+clamorous/YP
+clamour/MRGSD
+clamp/GMDS
+clampdown/MS
+clamper/M
+clamshell/SM
+clan/mMS
+Clancy
+clandestine/YP
+clang/GDRS
+clangorous/Y
+clangour/DSMG
+clank/DSMGk
+clannish/PY
+clannishness/S
+Clanor
+Clansthal
+Clanville
+Clanwilliam
+clap/GDRS
+Clapton
+claptrap/MS
+claque/SM
+Clara
+Clare/MZ
+Claredon
+Clareinch
+Claremont
+Clarence
+Clarendon/M
+Clarens
+Clarenspark
+claret/MdS
+Claridge
+clarification/M
+clarifier/M
+clarify/nNDSG
+Clarina
+clarinet/SM
+clarinettist/SM
+clarion/DGMS
+clarity/MS
+Clark/M
+Clarke/SM
+Clarkebury
+Clarkson
+clash/GDS
+clasher/M
+clasp's
+clasp-knife
+clasp-knives
+clasp/SUDG
+clasped/M
+clasper/M
+class-concious
+class-conciousness
+class-list
+class/D1ZMwpSG2
+classed/e
+classer/M
+classes/e
+classic/3S
+classical/3
+classicalist
+classicality
+classicism/MS
+classicist
+classics/M
+classifiable/U
+classification/AMCa
+classificatory
+classified/S
+classifies/AC
+classify/7RSGNnD
+classifying/a
+classiness/S
+classing/e
+classlessness
+classmark/SM
+classmate/MS
+classroom/SM
+classwork/M
+classy/TP
+clatter/dkSZ
+clatterer/M
+Claude
+Claudia
+Claudio
+Claudius
+Claus
+clausal
+clause/SM
+Clausen
+claustrophobia/MS
+claustrophobic
+clave/FM
+claver
+clavichord/SM
+clavicle/MS
+clavier/MS
+claw/GSMD
+clawer/M
+clay/MDSZG
+Clayfield
+clayier
+clayiest
+claymore/SM
+Clayton/M
+Clayville
+clean-cut
+clean-living
+clean-shaven
+clean-up/SM
+clean/RYPSBDGT
+cleaning/M
+cleanliness/S
+cleanly/TP
+cleanness/U
+cleannesses
+cleans/RGSD
+cleanse
+clear-cut
+clear-headed/PY
+clear-sighted
+clear-up/S
+clear/TGSYDJP
+clearance/MS
+clearer/M
+Clearheights
+clearing-house/S
+clearing/M
+clearness/S
+Clearwater
+clearway/M
+cleat/GMDS
+cleavage/MS
+cleave/RSDG
+clef/MS
+cleft/MDSG
+Cleland
+clematis/SM
+Clemence
+Clemenceau
+clemency/IMS
+Clemens
+Clement/SM
+clement/YI
+Clementine
+Clemson
+clench/SUDG
+Cleopatra/M
+clerestory/SM
+clergy/m5SM
+cleric/YMS
+clerical/S
+clericalism/MS
+clerk/MGSYD
+clerkship/MS
+Clermont
+Clernaville
+Cleveden
+Cleveland/M
+clever/PY
+cleverer
+cleverest
+cleverness/S
+clevis/SM
+clew/MDGS
+Clewer
+cliché/SM
+clichéd
+click/DSMRG
+client/MS
+clientèle/M
+cliff/SM
+Cliffdale
+cliffhanger/MS
+cliffhanging
+Clifford
+Clifton/M
+climacteric/MS
+climactic
+climate/1SM
+climatology/3Mw1S
+climax/SMDG
+climb/7RJDGS
+climbdown
+climbed/U
+clime/MSW
+clinch/DGkRS
+Cline
+cling/ZRG
+clingy/T
+clinic/YMS
+clinical/K
+clinician/MS
+clink/RGSD
+clinker/d
+clinometer/SIM
+Clint
+Clinton/M
+Clio
+cliometric/S
+cliometrician/S
+clip-clop
+clip-on
+clip/DSMRGJ
+clipboard/MS
+clipped/U
+clipping/M
+clique/MDGSZ
+cliquier
+cliquiest
+cliquish/PY
+cliquishness/S
+clitoral
+clitorides
+clitoris/SM
+Clive
+Cliveden
+cloaca/M
+cloacae
+cloak-and-dagger
+cloak/MGSD
+cloaked/U
+cloakroom/SM
+cloaks/U
+clobber/dS
+cloche/SM
+clock/RDJMGS
+clockmaker/M
+clockwatcher
+clockwise
+clockwork/MS
+Clocolan
+clod/MDGS
+cloddish/P
+clodhopper/SM
+Cloetesville
+clog's
+clog/GUDS
+cloisonné
+cloisonnes
+cloister/dMS
+cloistral
+clomp/MDGS
+clonal
+clone/MDRGS
+Cloneen
+clonk/SDG
+clop/SDG
+closable
+close-cropped
+close-down
+close-fisted
+close-fitting
+close-hauled
+close-knit
+close-mouthed
+close-set
+close-up/S
+close/STJPRGDY
+closed-circuit
+closed/EU
+closer/ESM
+closes/E
+closet/dSM
+closing/E
+closish
+closure/EMS
+closured
+closuring
+clot/SMGD
+cloth/GJSMD
+clothbound
+clothe/UDG
+clothes-peg/MS
+clothes/f
+clothesbrush
+clotheshorse/MS
+clothesline/DGMS
+clothesman
+clothesmen
+clothier/SM
+clothing/Mf
+cloud-cuckoo-land
+cloud/p2SZMDGz
+cloudburst/MS
+clouded/Uc
+cloudiness/S
+clouding/c
+cloudless/PY
+cloudlet
+clouds/c
+cloudscape/SM
+cloudy/TP
+clout/GMDS
+clove/MSR
+Clovelly
+cloven
+Cloverdene
+cloverleaf/MS
+Clovis
+clown/GDMS
+clownish/PY
+clownishness/S
+cloy/GSkD
+Club
+club-class
+club-foot/MD
+club/DGMS
+clubbed/M
+clubbing/M
+clubfeet
+clubhouse/SM
+clubland
+clubroom/SM
+Clubview
+Clubville
+cluck/DMSG
+clue/DpMGS
+clued-up
+clump/MDSZG
+clumpy/T
+clumsiness/S
+clumsy/YTP
+clung
+clunk/DSZMR2Gz
+clunky/T
+cluster/SdMJ
+clutch/SGD
+clutter/dS
+cluttered/U
+Clwyd
+Clyde
+Clydebank/M
+Clydesdale
+Clynton
+cm
+Cm
+CMG
+CMOS
+CNAA
+CNN
+Co
+co-author/MdS
+co-channel
+co-ed
+co-education
+co-educational
+co-found
+co-founder
+co-located
+co-occurrence
+co-op
+co-operant
+co-operate/GSNVvDu
+co-operation/M
+co-operative/PS
+co-operator/MS
+co-opt/DVNG
+co-option
+co-ordinate/DNSGV
+co-ordinator/MS
+co-owners
+co-ownership
+co-pilot
+co-produced
+co-religionist
+co-respondent/SM
+co-site
+co-star/GSD
+co-worker/SM
+co-writer
+co-written
+co/EDS
+coach/mMG
+coacher/M
+coachloads
+Coachman
+coachwork/M
+coadjutor/MS
+coagulable
+coagulant/SM
+coagulate/nDSNG
+coagulation/M
+coagulator/S
+coal-black
+coal-fired
+coal-holes
+coal/MDSG
+coaler/M
+coalesce/GDS
+coalescence/MS
+coalescent
+coalface/MS
+coalfield/SM
+coalition/3MS
+coalitionist
+coalminers
+Coalville
+coarse/PYT
+coarsen/Sd
+coarseness/S
+coast-to-coast
+coast/SDGM
+coastal
+coastguard/SM
+coastline/SM
+coat's/c
+coat-hanger
+coat/fMGS
+coated/U
+coater/S
+Coates
+coating's/c
+coating/SM
+coats/c
+coattail/S
+coattest
+coax/RGok
+cob/GSMD
+cobalt/M
+Cobb/M
+cobble/RGMDS
+cobblestone/DMS
+coble/M
+Coblentz
+Cobol/M
+cobra/SM
+cobweb/GSZMD
+cobwebby/T
+coca/SM
+cocaine/MS
+cocci/SM
+coccus/M
+coccyges
+coccyx/M
+Cochin
+cochineal/MS
+cochlea/SM
+cochleae
+cochlear
+Cochran/M
+cock-a-hoop
+cock-and-bull
+cock-eyed/Y
+cock-eyedness
+cock-fight/MGSJ
+cock-fighting/M
+cock-of-the-rock
+cock-of-the-walk
+cock-of-the-wood
+cock-shy
+cock-up/SM
+cock/MDzSZ2G
+cockade/MS
+cockatoo/MS
+cockatrice/SM
+Cockburn/M
+cocker/M
+cockerel/MS
+cockiness/S
+cockle/MDSG
+cocklebur/M
+cockleshell/MS
+cockney/SM
+cockneyism
+cockpit/MS
+cockroach/MS
+cockscomb/SM
+cockshies
+cocksucker/S
+cocksure
+cocktail/SDGM
+cocky/TP
+coco/SM
+cocoa/MS
+coconut/MS
+cocoon/GSMD
+cocopan
+Cocos/M
+cod/SDrdMG
+coda/MS
+coddle/DSG
+coddler/M
+code's
+code/SCaDAG
+codebook/S
+codebreak
+codebreaker
+codec/SM
+coded/K4
+codeine/MS
+codename/D
+codependency/S
+codependent/S
+coder/4CMS
+Codesa
+codetermine/S
+codeword/MS
+codex/M
+codfish/SM
+codger/SM
+codices/M
+codicil/MS
+codification/M
+codify/SGRNDn
+coding/M
+codling/M
+codon/S
+codpiece/SM
+Cody/M
+coed/M
+coeducational
+coefficient/MS
+Coega
+Coelacanth
+Coelenterata
+coelenterate/MS
+coequal
+coerce/RDSGb
+coercible/I
+coercion/MS
+coercive/PY
+Coetzersdam
+coeval/YS
+coextensive
+cofactor/MS
+coffee-cake/MS
+coffee-cup/MS
+coffee-house/MS
+coffee-maker/S
+coffee-pot/MS
+coffee-table/MS
+coffee/SM
+coffer-dam/MS
+coffer/MdS
+Coffey/M
+coffin/MSd
+Coffman
+Cofimvaba
+cog/DSMG
+cogency/MS
+cogent/Y
+Coghlan
+cogitate/nSNDGV
+cogitation/M
+cogitator/SM
+cognac/MS
+cognate/YSnN
+cognation/M
+cognisance
+cognisant
+cognition/KMAS
+cognitional/Y
+cognitive/YS
+cognizable
+cognizance/ASM
+cognizant/A
+cognomen/MS
+cognoscente
+cognoscenti
+cogwheel/SM
+cohabitation/o
+cohabitational
+Cohen/M
+cohere/DSG
+coherence/ZIMS
+coherency/S
+coherent/YI
+coherer/M
+cohesion/SM
+cohesive/PY
+cohesiveness/S
+Cohn
+cohort/MS
+coif/M
+coiffed
+coiffing
+coiffure/DGMS
+coil/ASDUG
+coin/MDRG
+coinage/SM
+coincide/GSD
+coincident/Y
+Cointreau
+coital/Y
+coitus/SM
+coke's
+coke/C
+coked
+cokes
+cokey
+coking
+Cokonyane
+col/NnVWS
+cola/MS
+colander/SM
+colatitude/SM
+Colbert
+Colby
+Colbyn
+Colchester/M
+cold-blooded/Y
+cold-bloodedness
+cold-hearted
+cold-shouldering
+cold/TYPS
+Coldfield
+coldish
+coldness/S
+Coldstream
+Cole/M
+Coleman/M
+Colenso
+Coleraine/M
+Coleridge/M
+Colesberg
+Coleskeplaas
+coleslaw/MS
+Colette/M
+coleus/MS
+Colgate
+colic/MSZ
+coliform
+Coligny
+Colin
+coliseum/MS
+colitis/SM
+coll
+collaborate/SGnvDNV
+collaboration/3M
+collaborationist
+collaborative/S
+collaborator/MS
+collage/GSMD
+collagen/M
+collapse/b
+collapsibility/M
+collar/dpSM
+collarbone/SM
+collate/GDS
+collated/U
+collateral/M
+collation/M
+collator/MS
+colleague
+collect/hib7GSDVv
+collectable/S
+collected/AU
+collectedness/M
+collectible/S
+collection/MAS
+collective/qQ83-S
+collectivism/MS
+collectivity/SM
+collector/MS
+collects/A
+colleen/M
+college/MK
+colleges
+collegial
+collegiality/S
+collegian/SM
+collegiate/Y
+Collerville
+collide/GSNxXD
+collie/MDRy
+Colliery
+colliery/SM
+collimate/SCDNG
+collimated/U
+collimation/M
+collimator/M
+collinear
+collinearity
+Collins
+collision/M
+collogue/GSD
+colloid/oMS
+colloidal
+Collondale
+colloquia
+colloquial
+colloquialism/SM
+colloquies
+colloquium/SM
+colloquy/Mo
+collude/GSNVXD
+collusion/M
+cologne/DMS
+Colombia/M
+Colombian/S
+Colombo/M
+colon/Q3-89WqSMs
+colonel/SM
+colonelcy/SM
+colonial/3S
+colonialism/MS
+colonialist
+colonialness
+colonise/AGCnDS
+colonised/U
+colonize/CNnADSG
+colonnade/SDM
+colony/SM3o
+colophon/MS
+Colorado/M
+coloratura/SM
+colorimeter/MSW
+colorimetry
+Colosa
+colossal/Y
+Colosseum
+colossi
+Colossians
+colossus/M
+colostomy/MS
+colostrum/SM
+colour-blind/P
+colour-code/D
+colour-fast/P
+colour-fastness/S
+colour-sergeant
+colour/NR-jQ8Mnq3SDGJ6p
+colourant/MS
+colouration/ME
+coloured/SE
+Coloureds
+colourful/P
+colourfulness/S
+colouring's
+colouring/ES
+colourisation/C
+colourise/C
+colourist/W1
+colourless/Y
+colourlessness
+colours/AE
+colourway
+Colridge
+colt/SM
+colter/M
+coltish/YP
+Coltrane
+Columbia/M
+Columbian
+columbine/MS
+Columbus
+column/38SQMD
+columnar
+columnist
+Colville
+Colwyn/M
+coma/SM
+comae
+Comair
+comaker/SM
+Comanche
+comatose
+comb/RMDGS
+combat/Vvu
+combatant/MS
+combative/P
+combativeness/S
+combed/U
+Comber
+combi
+combinable
+combination/MA
+combinator/WSMo
+combinatorial
+combinatoric/S
+combine/xDnRGSN
+combined/A
+combines/A
+combining/A
+combo/MS
+combustibility/SM
+combustible/IS
+combustion/SM
+combustive
+Comdex/M
+come/Yw1JRGS
+comeback/MS
+comedian/MS
+comedienne/SM
+comedown/MS
+comedy/WSM
+comeliness/S
+comely/TP
+comer/cMI
+comers/I
+comes/M
+comestible/SM
+Comet
+comet/MS
+cometary
+cometh
+comeuppance/MS
+comfit/SM
+comfits/E
+comfort/kEMDGS
+comfortability/S
+comfortable/PY
+comfortableness/S
+comfortably/U
+comforted/U
+comforter/MS
+comfy/T
+comic/MS
+comicality/MS
+coming/IS
+comity/SM
+comm
+command/kRLDGSM
+commandant/SM
+commandeer/DGS
+Commander
+Commander-in-Chief
+commando/MS
+commemorate/SNVGDvn
+commemoration/M
+commemorative/S
+commemorator/S
+commence/ASGDL
+commencer/M
+commend/7nAGSD
+commendable/Y
+commendation/MA
+commendatory/A
+commender/AM
+commensurable/Y
+commensurate/YI
+comment's
+comment/DUS
+commentary/MS
+commentate/SDG
+commentator/SM
+commenter/M
+commenting
+commerce/SoDMG
+commercial/qQ-8S
+commercialism/SM
+commercialness
+commie/MS
+commiserate/DSNnGV
+commiseration/M
+commissar/MS
+commissariat/MS
+commissary/SM
+commission's/A
+commission/DCRGS
+commissionaire
+commissioned/A
+commit/NLGXSoD
+commitment/cS
+commits/A
+committable
+committal/MS
+committed/cU
+committee/5mMS
+committing/c
+commode/ESI
+commodious/IPY
+commodity/SM
+commodore/MS
+common-law
+common-room/M
+common-sense
+common/rPSY
+commonality/MS
+commonalty/SM
+Commondale
+commonest
+commonly/U
+commonness/U
+commonplace/P
+commons/M
+commonsensical
+commonwealth/MS
+commotion
+communal
+communality/M
+commune/oQS38GD
+communicability/MS
+communicable/I
+communicably
+communicant/MS
+communicate/BDNxuVSGnv
+communicated/a
+communicates/a
+communication's
+communication/a
+communicative/P
+communicator/MS
+communion/MS
+communiqué/MS
+communique/S
+communism/MS
+communist/W
+communitarian/M
+Community
+community/MS
+commutable/I
+commutate/Vv
+commutativity
+commutator/M
+commute/R
+Comoros/M
+comp/DGS
+compact/TRPGDY
+compaction/M
+compactness/S
+compactor/MS
+companion/7GSMDl
+companionable/P
+companionship/MS
+companionway/MS
+company/DMGS
+Compaq/M
+comparabilities
+comparability/IM
+comparable/P
+comparably/I
+comparative/PS
+comparator/SM
+compare/vVBlu
+comparer/M
+comparison/MS
+compartment/MDSG
+compartmental/q8Q-
+compass/NM
+compassionate/P
+compatibility/ISM
+compatible/PYS
+compatibles/I
+compatibly/I
+compel/GkSNDn7
+compelling/M
+compendia
+compendious
+compendium/SM
+compensable
+compensate/DGNcnS
+compensated/U
+compensation/Mc
+Compensations
+compensative
+compensator/M
+compensatory
+compère/M
+compete/DGS
+competence/IZMS
+competency's
+competency/IS
+competent/IY
+competition
+competitive/PY
+competitiveness/S
+competitor/SM
+compilable
+compilation/MA
+compile/NAnDGS
+compiled/C
+compiler/MCS
+compiles/C
+compiling/C
+complacence/Z
+complacency/SM
+complacent/Y
+complain/Rk
+complainant/MS
+complaining/UY
+complaisance/MS
+complaisant/Y
+complement/NRSDMG
+complementarity
+complementary/SP
+complementation/M
+completable
+complete/STnVDPNGY
+completed/U
+completely/I
+completeness/SI
+completer/M
+completion's/I
+completion/M
+complex/YTXPSNxDG
+complexion/MD
+complexities
+complexity/Mc
+compliance/MS
+compliant
+complicate/DhiGS
+complicated/cU
+complicatedness/M
+complicates/c
+complicating/c
+complicator/MS
+complicit
+complicity/MS
+compliment/DGR
+complimentary/U
+comply/RJnL
+component/MS
+comport/L
+compose/CRSGDNX
+composed/PY
+composes/AE
+composing/EA
+composite/YS
+composition/CM
+compositor/MS
+composure/EMS
+compote/MS
+compound/M7
+compounder
+comprehend/NSXvuDGV
+comprehended/a
+comprehending/U
+comprehensibility/SMI
+comprehensible/PIY
+comprehensibly/I
+comprehension/IMS
+comprehensive/SP
+comprehensiveness/S
+compress/NVbxvhX
+compressed/UC
+compresses/C
+compressibility/IM
+compressible/I
+compression/MC
+compressor/MS
+compromise/M
+compromising/UY
+Compton/M
+Comptonville
+comptroller/SM
+compulsion/M
+compulsive/YPS
+compulsiveness/S
+compulsivity
+compulsory/YS
+compunction/MS
+CompuServe/M
+computability/M
+computation/Mo
+computational
+compute/nRSBlNGD
+computed/AK
+computer-literate
+computer/Q-8q
+computerese
+computes/A
+Computicket
+computing/A
+comrade/SMY
+comradeliness
+comradeship/MS
+Comte
+con/1DSWGMw
+Conakry/M
+Conan
+concatenate/nDSG
+concave/Y
+conceal/RLk7GDS
+concealed/U
+concede/hR
+conceit/MhiGDS
+conceited/P
+conceitedness/S
+conceivability/I
+conceivable/I
+conceivably/I
+conceive/BlDSG
+conceived/aK
+conceiver/M
+conceives/aK
+conceiving/aK
+concentrate/SnDGNV
+concentration/M
+concentrator/MS
+concentric/Y
+Concepción/M
+concept/MxSVo
+conception/MaSK
+conceptual/qQ8-
+conceptuality/M
+Concern
+concern/SDhG
+concerned/UY
+concert/MhiDG
+concerted/E
+concerti
+Concertina-fish
+concertina/MGSD
+concerting/E
+concertmaster/SM
+concerto/MS
+concerts/E
+concession/oy
+concessionaire/MS
+concessional
+concessioner
+conch/MDG
+conchs
+concierge/SM
+conciliar
+conciliate/yNVGn
+conciliation/MA
+conciliator/MS
+conciliatory/A
+concise/PNXYT
+conciseness/S
+concision/M
+conclave/S
+conclude/RvDSGXVuN
+conclusion/M
+conclusive/PIY
+conclusiveness/IS
+concoct/VDSG
+concocter/M
+concoction/SM
+concomitant/Y
+concordance/SM
+concordant/Y
+concordat/MS
+Concorde/M
+Concordia
+concourse
+concrete/DGYPSnMN
+concreteness/S
+concreter
+concretion/M
+concubinage/SM
+concubine/MS
+concupiscence/MS
+concupiscent
+concur/7DSG
+concurrence/MS
+concuss/XVN
+concussion/M
+condemn/nDRNS7G
+condemnation/M
+condemnatory
+condensate/MS
+condensation/M
+condense/nDSRbG
+condenseness
+condescend/NXk
+condescension/M
+condign
+condiment/MS
+condition's/K
+condition/RSJoMDG
+conditional/UY
+conditionality
+conditionals
+conditioned/AUK
+conditioning's
+conditioning/K
+conditions/KA
+condo/SM
+condolence/MS
+condom/MS
+condominium/SM
+condonable
+condone/DSG
+condoner/M
+condor/MS
+conduce/DVSnvGN
+conducive/P
+conduct/aGMDS
+conductance's
+conductance/4
+conductances
+conductibility/SM
+conductible
+conduction/M
+conductivity/SM
+conductor/MS
+conductress/SM
+conduit/MS
+cone/SMZ
+coneflower/M
+Conera
+Conestoga
+coney's
+confab/DGMS
+confable
+confabulate/SNnGD
+confabulation/M
+confect/S
+confection/RM3DGS
+confectioner/Z
+confectionery/SM
+confectionist
+confederacy/SM
+confederate/M
+confer/RgDG7S
+conferee/SM
+conference/GMDS
+conferral/MS
+confess/GxNDXh
+confession/M
+confessional/S
+confessor/MS
+confetti/M
+confidant/MS
+confidante/MS
+confide/RGkDS
+confidence/cMS
+confident/Yc
+confidential/PY
+confidentiality/SM
+confidingness
+configurable/K
+configuration/AM
+configure/KDAG
+configures/A
+confine/L
+confined/U
+confiner/M
+confirm/iNyhn
+confirmation/AM
+confirmed/UA
+confirmedness/M
+confirms/A
+confiscate/GNnySD
+confiscation/M
+confiscator/SM
+conflagration/MS
+conflate/DGSNn
+conflation/M
+conflict/GSMDkV
+conflictual
+confluence/SM
+conform/x3o7R
+conformable/U
+conformal
+conformance/MS
+conformism/MS
+conformist
+conformities
+conformity/UIM
+confound/h
+confrère/MS
+confront/RxnN
+confrontation/M
+Confucian
+Confucianism
+Confucius
+confusable
+confuse/kihR
+confused/P
+confutation/M
+confute/NDSnG
+confuter/M
+Cong
+conga/MDSG
+congeal/LDGS
+Congella
+congener/SM
+congenial/U
+conger/SM
+congeries/M
+congest/GSVD
+congested/U
+congestion/SM
+Congleton
+conglomerate/MNGnSVD
+conglomeration/M
+Congo/M
+Congolese
+congrats
+congratulate/DyGNSn
+congratulation/M
+congregate/SNGDn
+congregation/M
+Congregational/3Y
+Congregationalism/MS
+Congregationalist
+congress/Dm5SxGM
+congresspeople
+congressperson/S
+congruence's/I
+congruence/ZMS
+congruency/M
+congruent/Y
+congruential
+congruently/I
+congruity/ISM
+congruous/YPI
+conic/S
+conical/P
+conics/M
+conifer/MS
+coniferous
+Coniston
+conjectural
+conjecture/MDGoS
+conjecturer/M
+conjugacy
+conjugal/Y
+conjugate/DNGYVSn
+conjugateness
+conjugation/M
+conjunct/SVDv
+conjunctiva/MS
+conjunctive/S
+conjunctivitis/MS
+conjuration/M
+conjure/DRGNnS
+conjuring/M
+conk/DRS
+Conley/M
+conman/M
+conmen/M
+Connaught
+connect/hbSiDGvV
+connected/EPY
+Connecticut
+connecting/E
+connection's/EA
+connection/MpS
+connections/E
+connective/SM
+connectivity/SM
+connector/MS
+connects/EA
+Connelly
+conner
+connexion/SM
+Connie
+connivance/MS
+connive/DRSG
+connoisseur/MS
+connoisseurship
+Connors
+connotative/Y
+connubial/Y
+conquer/dAS
+conquerable/U
+conquered/U
+conqueror/MS
+conquest/AMS
+conquistador/MS
+conquistadores
+Conrad/M
+Conrail/M
+consanguineous/Y
+consanguinity/SM
+conscience-stricken
+conscience/p
+conscientious/YP
+conscientiousness/S
+conscionable/U
+conscious/UY
+consciousness/SM
+conscription/SM
+consecrate/NnVDSG
+consecrated/AU
+consecrates/A
+consecrating/A
+consecration/ASM
+consecutive/PY
+consensus/MS
+consent/DRGSk
+consequent/Y
+consequential/IY
+consequentiality/SM
+consequentialness/M
+consequently/I
+consequentness
+conservancy/SM
+conservation/M3
+conservationism
+conservationist
+conservatism/MS
+conservative/PS
+conservator/SM
+conservatory/SM
+conserve/uNnVv
+consider/dAS
+considerable/YI
+considerably/I
+considerate/INY
+considerateness/I
+consideration/AS
+considered/U
+considerer/M
+considering/S
+consign/AGSD
+consignee/MS
+consignment's
+consignment/A
+consignments
+consignor/S
+consiprationally
+consist/SGD
+consistence/ZS
+consistency/IMS
+consistent/YI
+consistory/MS
+consol's
+consolable/I
+consolation/EM
+consolatory
+console/NkR7n
+consolidate/DSNnG
+consolidated/UA
+consolidates/A
+consolidation/M
+consolidator/MS
+consommé/S
+consonance/IM
+consonances
+consonant/SYM
+consonantal
+consortia
+consortium/M
+conspectus/SM
+conspicuous/PIY
+conspicuousness/SI
+conspiracy/SM
+conspirational
+conspirator/MSo
+conspiratorial
+conspire/G
+constabulary/SM
+constance/Z
+constancy/ISM
+constant/YS
+Constantia
+Constantiapark
+Constantiavale
+Constantine/M
+Constantinople
+constantly/I
+constellation/MS
+consternate/SDGnN
+consternation/M
+constipate/SDGNn
+constipation/M
+constituency/SM
+constituent/YSM
+constitute/GASD
+constitution/MAS
+constitutional/3SY
+constitutionalist
+constitutionalities/U
+constitutionality/SM
+constitutionally/U
+constitutive/Y
+constrain/h
+constrained/U
+constraint/SM
+constrict/DVSG
+constriction/SM
+constrictor/MS
+construct/VxvDGu7Sb
+constructed/A
+constructibility
+construction's/aCA
+construction/M3S
+constructionist/C
+constructions/CA
+constructive/P3
+constructiveness/S
+constructivism
+constructor/SM
+constructs/A
+construe/7DSG
+construed/a
+construes/a
+construing/a
+consul/MS
+consular/S
+consulate/MS
+consulship/MS
+consult/NGDnS
+consultancy/S
+consultant/SM
+consultation/M
+consultative
+consultee/SM
+consultees'
+consulter/M
+consumable/S
+consume/hRSGJXvkNDV
+consumed/U
+consumer/3
+consumerism/SM
+consumerist
+consummate/SDYVG
+consummated/U
+consumption/cM
+consumptive/S
+cont
+cont'd
+contact/D7SG
+contagion/SM
+contagious/YP
+contagiousness/S
+contain/RGS7DL
+container/8Qq-
+contaminant/SM
+contaminate/SGNCDn
+contaminated/U
+contamination/CM
+contaminative
+contaminator/MS
+contd
+contemn/DSG
+contemplate/NuDnvGV
+contemplation/M
+contemplative/SP
+contemporaneity/SM
+contemporaneous/PY
+contemporariness/S
+contemporary/P
+contempt/Mb
+contemptibility
+contemptible/Y
+contemptuous/YP
+contemptuousness/S
+content's/E
+content/iLYh
+contented/P
+contentedness/S
+contenting/E
+contention/MS
+contentious/UY
+contentiousness/SM
+contents/E
+conterminous/Y
+contestable/I
+contestant/MS
+contested/U
+contextual/-Q8q
+contextualise/C
+contiguity/MS
+contiguous/PY
+continence/IMS
+continent's
+continent/IY
+continental/4
+continentally
+continentals
+continents
+contingency/MS
+contingent/MYS
+continua/on
+continuable
+continual
+continuance/MES
+continuant/M
+continuation/ME
+continue/SENDGn
+continuer/M
+continuity/MES
+continuous/YP
+continuously/E
+continuousness/E
+continuum/M
+contort/GDV
+contortion/3MS
+contortionist
+contra/Sy
+contraband/M
+contrabass/M
+contraception/MS
+contraceptive/S
+contract/G7bD
+contractile
+contractual/Y
+contradict/DGyS
+contradiction/MS
+contradictory/YP
+contradistinction/MS
+contraflow/S
+contrail/M
+contraindicate/SGnNDV
+contraindication/M
+contralto/MS
+contrapositive/S
+contraption/SM
+contrapuntal/Y
+contrariety/MS
+contrariness/S
+contrariwise
+contrary/SPY
+contrast/VvDkSZG
+contravene/GDS
+contravener/M
+contravention/MS
+contretemps/M
+contribute/DVvGy
+contribution/MS
+contributor/MS
+contributory/SY
+contrite/P
+contriteness/S
+contrition/SM
+contrivance/SM
+contrive/RDSG
+control/MlGBRS
+controllability/M
+controllable/U
+controllably/U
+controlled/U
+controversial/3
+controversialist
+controversially/U
+controversy/SMo
+controvert/bGSD
+controvertible/I
+contumacious/Y
+contumacy/MS
+contumelious
+contumely/MS
+contuse/DXSNG
+contusion/M
+conundrum/SM
+conurbation/MS
+convalesce/SDG
+convalescence/MS
+convalescent/S
+convect/xVGDS
+convection/MS
+convector
+convene/RSGD
+convened/A
+convenes/A
+convenience/ISM
+convenient/IY
+convening/A
+convenor
+conventicle/MS
+convention/oMS
+conventional/3Q8
+conventionalism/M
+conventionalist
+conventionality/MUS
+conventionally/U
+convergence/MS
+convergent
+conversant/Y
+conversation/oM
+conversational/3
+conversationalist
+conversazione/M
+converse/nYG
+converser
+conversion/AM
+conversioning
+convert/RbGDS
+converted/AU
+convertibility's/I
+convertibility/SM
+convertible/SP
+converts/A
+convex/Y
+convexity/MS
+convey/GDS7
+conveyance/DRMSG
+conveyancing/M
+conveyor/SM
+convict/DGVS
+conviction/MS
+Conville
+convince/GkDRS
+convinced/U
+convincing/P
+convincingly/U
+convivial/Y
+conviviality/SM
+convoke/NSGnD
+convolute/YD
+convolution/MS
+convolve/SCDG
+convoy/GDSM
+convulse/DGuSNXVv
+convulsion/M
+convulsive/P
+Conway/M
+cony/MS
+coo/GSD
+cook/RGSMD
+cookbook/MS
+Cooke/M
+cooked/AUcfK
+cooker/Z
+cookery/M
+Cookhouse
+cookie/SM
+cooking/M
+cooks/cKA
+Cookstown/M
+cookware/SM
+cool-bag
+cool-box/SM
+cool-headed
+cool/RSGDTPY
+coolant/MS
+cooldrink/S
+cooled/c
+Cooley/M
+Coolidge
+coolie/SM
+cooling-off
+coolish
+coolness/S
+coop/RMDG
+cooper/dvuV
+cooperage/SM
+cooperant
+cooperative/U
+Coopers
+Coopersdrift
+coordinate/DGV
+coordinated/U
+coordinator/M
+Coors
+coot/SM
+cootie/SM
+cop-out/S
+cop/dRGMDS
+copay/S
+cope/ZS
+Copeland
+Copenhagen/M
+coper/M
+Copernican
+Copernicus
+Copesville
+copied/A
+copies/A
+copilot/SM
+coping/M
+copious/PY
+copiousness/S
+coplanar
+Copland
+Copley
+copolymer/MS
+copper/Zd
+Copperfield
+copperhead/MS
+copperplate/MS
+coppersmith/MS
+coppice/DSMG
+copra/MS
+coprocessor/S
+coprolite/M
+coprophagous
+cops/DSG
+copse/M
+copter/MS
+Coptic
+copula/nSMV
+copulate/DSyG
+copulation/M
+copulative/S
+copy/RD3SGM
+copyable
+copybook/MS
+copycat/MGDS
+copying/a
+copyright/7DRGMS
+copywriter/MS
+coquetry/SM
+coquette/DSMG
+coquettish/Y
+coracle/MS
+coral/MS
+Coralgoby
+coralline
+corbel/SJMDG
+Corbett/M
+Corbie
+Corby
+cord/FSMAE
+cordage/MS
+corded/EA
+corder/AM
+cordial/PSY
+cordiality/MS
+cordillera/MS
+cording's/A
+cording/E
+cordite/MS
+cordless
+Cordoba
+cordon/dSM
+cordovan/SM
+corduroy/GSMD
+core/DMRGS
+Corey/M
+corf/M
+Corfu/M
+corgi/MS
+coriaceous
+coriander/SM
+coring/M
+Corinth/M
+Corinthian/S
+Coriolis
+Cork
+cork/RMDSG
+corked/U
+corks/U
+corkscrew/GMSD
+corm/MS
+cormorant/MS
+corn/RMDz2SZG
+cornball/SM
+cornbread/S
+corncob/SM
+Corncrake
+corncrake/M
+cornea/MS
+corneal
+Cornelia/M
+Cornelius
+Cornell/M
+corner/d
+cornerstone/SM
+cornet/SM
+cornfield/MS
+cornflake/S
+cornflour/M
+cornflower/SM
+cornice/DSGM
+corniness/S
+Cornish
+cornmeal
+cornrow/GDS
+cornstalk/SM
+cornstarch/SM
+cornucopia/SM
+Cornuta
+Cornwall/M
+Cornwallis
+Cornwell
+corny/T
+corolla/SMy
+corollary/SM
+corona/ynMS
+Coronado
+coronal/MS
+coronary/S
+coronate
+Coronation
+coronation/M
+Coronationville
+coroner/MS
+coronet/DMS
+coroutine/MS
+Corovoca
+corp.
+corpora/MonV
+corporal/MS
+corporate/3SY
+corporates/I
+corporation/ISM
+corporatism/M
+corporeal/IY
+corporeality/MS
+corporealness/M
+corps/SM
+corpse/M
+corpulence/SM
+corpulent/Y
+corpulentness/S
+corpus/M
+corpuscle/SM
+corpuscular
+corr
+corral/SMGD
+correct/7YI
+correctable/U
+corrected/U
+correcter
+correctest
+correcting
+correction/MSo
+correctional
+corrective/SY
+correctiveness
+correctness/SM
+corrects
+correlate/CGDSN
+correlated/U
+correlator/SM
+correspond/k
+correspondence/MS
+corridor/MS
+Corriemoor
+Corrigan
+corrigenda
+corrigendum/M
+corrigible/I
+corroborate/GnySDVNv
+corroborated/U
+corroboration/M
+corroborator/SM
+corrode/DSbGXNVuv
+corrosion/M
+corrosive/PS
+corrugate/DGSnN
+corrugation/M
+corrupt/VTGvPYbDS
+corrupted/U
+corrupter/M
+corruptibility/SIM
+corruptible/I
+corruption's/I
+corruption/MS
+corruptions/I
+corruptness/S
+Corsa
+corsage/MS
+corsair/SM
+corset/dMS
+Corsica/M
+Corsican
+cortège/MS
+cortex/M
+cortical/Y
+cortices
+corticosteroid/MS
+cortisol
+cortisone/SM
+Cortland
+corundum/M
+coruscate/GNSDn
+coruscation/M
+Corvallis
+corves
+corvette/MS
+cos/S
+cosign/RDGS
+cosignatory/SM
+cosine/MS
+cosiness/S
+cosmetic/YSM
+cosmetician/MS
+cosmetology/3MS
+cosmic/Y
+cosmical
+Cosmo
+cosmogony/M3S
+cosmology/3M1wS
+cosmonaut/MS
+cosmopolitan/SM
+cosmopolitanism/MS
+cosmos/MS
+cosponsor/Sd
+Cossack
+cossacks
+cosset/dS
+cost-cutting
+cost-effective
+cost-effectiveness
+cost-efficient
+cost/DpGVuYvMJS
+Costa
+Costello
+costive/P
+costliness/S
+costly/TP
+costume/RDSGM
+cosy/TYP
+cot/MRSD
+cotangent/SM
+Côte
+cote/MS
+coterie/SM
+coterminous/Y
+cotillion/MS
+Cotswold/M
+cottage/DSMRG
+cottagey
+cottar's
+cottered
+Cottesloe
+cotton/MdS
+Cottondale
+Cottonlands
+cottontail/SM
+cottonwood/SM
+cottony
+cotyledon/MS
+couch/GMDS
+couching/M
+cougar/MS
+cough/DSG
+cougher/M
+could
+could've
+couldn't
+coulée/MS
+coulomb/MS
+Coulthard
+council/5mMS
+councillor/MS
+councilperson/S
+counsel/MSGDJ
+counsellor/MS
+count/BERGDS
+countable/UY
+countably/U
+countdown/MS
+counted/UaA
+countenance's
+countenance/DGES
+countenancer/M
+counter-attack/SGMDR
+counter-claim/DGMS
+counter-clockwise
+counter-culture/MS
+counter-espionage/MS
+counter-inflation/y
+counter-intelligence/MS
+counter-intuitive
+counter-offensive/MS
+counter-productive
+counter-revolution/yMS
+counter-revolutionary/SM
+counter-tenor/SM
+counter-terrorism
+counter/dm
+counteract/GVSD
+counteraction/MS
+counterargument/SM
+counterbalance/DGMS
+countercyclical
+counterexample/S
+counterfeit/SRGD
+counterflow
+counterfoil/MS
+counterforce/M
+counterinsurgency/MS
+countermand/DGS
+countermeasure/MS
+counteroffer/MS
+counterpane/SM
+counterpart/SM
+counterpoint/MDGS
+counterpoise/DMSG
+counterproposal/M
+countersign/GSD
+countersignature/MS
+countersink/GS
+counterspy/MS
+counterstrike
+countersunk
+countervail/DGS
+counterweight/GSMD
+countess/SM
+counting/a
+countless/Y
+countrify/D
+country/m5MS
+countryside/MS
+countrywide
+counts/Aaf
+county/M
+coup/AS
+coupé/MS
+Couperin
+couple's
+couple/RJCGSD
+coupled/U
+couples/U
+couplet/MS
+coupling/MC
+coupon/SM
+courage/MS
+courageous/PY
+courageousness/S
+courages/E
+courgette/MS
+courier/DMGS
+course's/F
+course/RGESMD
+courses/F
+coursework
+coursing/M
+court-martial
+court/RYMGDS
+courteous/EYP
+courteousness/ES
+courtesan/MS
+courtesies/E
+courtesy's/E
+courtesy/DSGM
+courthouse/MS
+courtier/MS
+courtliness/S
+courtly/PT
+Courtney/M
+Courtrai
+courtroom/MS
+courtship/MS
+courtyard/SM
+couscous/SM
+cousin/SMY
+Cousteau
+couture/MS
+couturier/SM
+covalent/Y
+covariance/SM
+covariant/S
+covariate/NS
+covary
+cove/RSMDG
+coven/SM
+covenant/SMDG
+covenanter/M
+Covent
+Coventry
+cover-up/S
+cover/E7AdS
+coverage/SM
+coverall/MDS
+Coverdale
+covered/U
+coverer/AEM
+covering/MS
+coverlet/MS
+covers/M
+coversheet
+covert/PY
+covertness/S
+covet/kdS
+coveter/M
+covetous/PY
+covetousness/S
+covey/MS
+Coville
+cow-lick/MS
+cow-parsley/M
+cow-pat/MS
+cow/DhMmGS
+coward/YSM
+cowardice/MS
+cowardliness/S
+cowardly/P
+cowbell/SM
+cowboy/MS
+cower/dkS
+Cowes
+cowgirl/SM
+cowherd/MS
+cowhide/GMDS
+cowl/GSMD
+Cowley
+cowling/M
+Cowper/M
+cowpox/SM
+cowrie/SM
+cowshed/MS
+cowslip/SM
+cox/SGDM
+coxcomb/SM
+coxswain/DGMS
+coy/GYTPD
+coyed/C
+coyness/S
+coyote/SM
+coypu/MS
+cozen/dS
+cozenage/SM
+CPA
+cpd
+CPI
+cpl
+CPR
+cps
+CPU/SM
+crab-apple/SM
+crab/hGSiRM2DzZ
+Crabbe/M
+crabbed/P
+crabbiness/S
+crabbing/M
+crabby/T
+crabgrass/S
+crablike
+crack/DR7GSY
+crackable/U
+crackdown/MS
+crackle/DGJS
+crackling/M
+crackly/T
+crackpot/SM
+crackup/S
+cradle/GMDS
+cradler/M
+cradling/M
+Cradock
+craft/zmM2G5DSZ
+crafter
+craftiness/S
+craftsmanship/SM
+craftspeople
+craftspersons
+crafty/TP
+crag/ZSM2
+cragginess/S
+craggy/PT
+Craig
+Craigavon/M
+Craigbain
+Craighall
+Craigieburn
+cram/GSD
+Cramer
+Cramerview
+crammer/M
+Cramond
+cramp/DGSM
+cramper/M
+crampon/MS
+cranberry/MS
+Cranbrookvale
+Crandall
+crane-flies
+crane/DSGM
+cranelike
+Cranfield/M
+Cranford
+cranial
+cranium/MS
+crank/2GTMDzSZ
+crankcase/MS
+crankiness/S
+crankshaft/MS
+cranky/TP
+Cranleigh
+cranny/MGSD
+Cranston
+crap/DSGZM
+crape/MS
+crappy/T
+crash-land/DG
+crash/DRSGk
+crass/TYP
+crassness/S
+crate/DSGMR
+crater/d
+cravat/DGMS
+crave/GDSJ
+craven/dYP
+Cravenby
+cravenness/S
+craver/M
+craving/M
+craw/YMS
+crawdad/S
+crawfish's
+Crawford
+crawl/SDRG
+Crawley
+crawlspace/S
+crawlway
+crawly/TS
+Cray/M
+crayfish/MDGS
+crayon/dSM
+craze/GMDZS
+craziness/S
+crazy/TYPS
+creak/2SZzDG
+creakiness/S
+creaky/PT
+cream/DzR2GSZM
+creamer/Z
+creamery/SM
+creaminess/S
+creamy/TP
+crease's
+crease/SGCDI
+creased/U
+creaser/I
+creatable
+create/DANnSG
+created/U
+creation/AM
+creationism/SM
+creationist/MS
+creative/YP
+creativeness/S
+creativity/MS
+creator/MS
+creature/MYS
+creaturely/P
+crèche/MS
+Crecy
+credence/MS
+credential/MS
+credenza/MS
+credibility/ISM
+credible/IY
+credibly/I
+credit/MlgS7d
+creditability/M
+creditable/P
+credited/EU
+crediting/E
+creditor/MS
+credits/E
+creditworthiness
+creditworthy
+credo/MS
+credulity/SIM
+credulous/YP
+credulously/I
+credulousness/S
+Cree
+creed/SM
+creedal
+Creek
+creek/MS
+creekside
+creel/MSDG
+creep/R2SZzG
+creepiness/S
+creepy/STP
+Creighton
+cremate/NGSDny
+cremation/M
+crematoria
+crematorium/SM
+crème
+crenelate/SGnDN
+crenelation/M
+crenellated
+crenellation/S
+Creole
+creole/SM
+creosote/DMSG
+crepe/DSGM
+crêpe/SM
+crêpey
+crept
+crescendo/SCM
+crescendoed
+crescendoing
+crescent/SM
+cress/S
+Cresslawns
+crest/MGDpS
+Cresta
+crestfallen/PY
+Crestfish
+Crestholme
+cresting/M
+Crestonhill
+Crestview
+Cretaceous/Y
+Cretan
+Crete
+cretin/MS
+cretinism/SM
+cretinous
+cretonne/SM
+Creutzfeldt
+Creutzfeldt-Jakob
+crevasse/GMDS
+crevice/MS
+crew/mSMDG
+Crewe
+crewel/MS
+crewelwork/SM
+crib/RSDGM
+cribbage/SM
+cribbing/M
+Crichton
+crick/GMDS
+cricket/rMdS
+cries/e
+crime/DSGM
+Crimea
+Crimean
+criminal/QMq8Y-S
+criminalise/CnSGD
+criminality/MS
+criminalize/CSDNnG
+criminology/3wMS
+crimp/GDS
+crimper/M
+crimson/MdS
+cringe/SGD
+cringer/M
+crinkle/SDYG
+crinkly/TS
+crinoline/MS
+cripple/RSGDkM
+crises
+crisis/M
+crisp/DPTGSZ2Y
+crisper/M
+crispiness/S
+crispness/S
+crispy/PT
+criss
+criss-cross/GDS
+Cristie
+Cristina/M
+criteria
+criterion/M
+critic/8Q9SYsM
+critical/UY
+criticality
+criticise/k
+criticism/MS
+criticize/k
+critique/DMGS
+critter/MS
+croak/RSZDG
+croaky/T
+Croat
+Croatia/M
+Croatian
+crochet/drJSZ
+crock/GMDS
+crocker/Z
+crockery/SM
+Crockett
+Crocodile
+crocodile/MS
+crocus/MS
+Croesus
+croft/GRMS
+Croftdene
+croissant/MS
+Croix
+Cromeville
+Cromwell/M
+Cromwellian
+crone/SZM
+Cronin
+crony/SM
+crook/ihSMDG
+crooked/P
+crookeder
+crookedest
+Crookes
+croon/RSDG
+crop/GeDMS
+cropper/SM
+croquet/MdS
+croquette/SM
+Crosby
+crosier/SM
+cross-bred/S
+cross-breed/GS
+cross-check/GDS
+cross-country
+cross-cut/MGS
+cross-dressing
+cross-examine/NDSG
+cross-eyed
+cross-fertilisation
+cross-fertilization
+cross-grained
+cross-hair/S
+cross-hatch/GDS
+cross-legged
+cross-ply
+cross-polar
+cross-refer/S
+cross-reference/SDG
+cross-section/oS
+cross-sectional
+cross/TPM7DSJGY
+crossarm
+crossbar/DGSM
+crossbeam/SM
+crossbones
+crossbow/MmS
+crosscurrent/MS
+crossed/UA
+crosser/S
+crosses/AU
+crossfire/SM
+crossing/M
+Crossmoor
+crossness/S
+crossover/MS
+crosspatch/SM
+crosspiece/MS
+crosspoint
+crossproduct/S
+crossroad/MS
+Crossroads
+crosstalk/M
+Crossways
+crossways
+crosswind/MS
+crosswise
+crossword/SM
+crotch/pSDM
+crotchet/ZMS2
+crotchety/P
+crouch/SDG
+croup/MSZDG
+croupy/TR
+croûton/MS
+croutons
+crow/SMDG
+crowbait
+crowbar/MDSG
+crowd/DiGSM
+crowded/P
+crowding/c
+crowds/c
+crowfeet
+crowfoot/M
+Crowley
+crown/MDGS
+crowned/U
+crowner/M
+Croydon/M
+crozier/MS
+CRT/S
+crucial/Y
+crucible/MS
+crucifix/MSNX
+crucifixion/M
+cruciform/S
+crucify/RSG7D
+crud/MSDGZ
+cruddy/T
+crude/TPY
+crudeness/S
+crudités
+crudity/MS
+cruel/TGYPD
+cruelness/S
+cruelty-free
+cruelty/MS
+cruet/SM
+cruise/RDSG
+crumb/YSZGMD
+crumble/JDGS
+crumbliness/S
+crumbly/TP
+crumby/T
+crumminess/S
+crummy/T
+crump
+crumpet/SM
+crumple/DGS
+crunch/RS2GZD
+crunchie
+crunchiness/S
+crunchy/TSP
+crupper/MS
+crusade/MRSGD
+cruse/MS
+crush/DRSGk7
+crushproof
+Crusoe
+crust/Dz2GSZM
+Crustacea
+crustacean/SM
+crustal
+crustiness/S
+crusty/PTS
+crutch/SGMD
+crux/M
+Cruywagenpark
+Cruz
+cry/RCSDG
+crybaby/SM
+cryogenic/S
+cryogenics/M
+cryostat/M
+cryosurgery/SM
+crypt/MWS1
+cryptanalysis/M
+cryptanalyst/M
+cryptanalytic
+cryptogram/MS
+cryptographer/MS
+cryptography/M1SW
+cryptology/W3Mw
+Cryptozoic
+crypts/C
+Crysbestos
+crystal-clear
+crystal/MS
+crystalline/S
+crystallise/nRDSG
+crystallised/A
+crystallises/A
+crystallising/A
+crystallite/MS
+crystallize/SAnDGN
+crystallizer/MS
+crystallographer/MS
+crystallography/MW
+Cs
+CSA
+CSE
+CSEU
+CSIR
+CSP
+CSS
+CSSA
+CSU
+CSYS
+CTOL
+Cu
+cu.
+cub/dWw13MGDS
+Cuba/M
+Cuban/S
+cubbyhole/SM
+cube/3MS
+cuber/M
+cubic/S
+cubicle/SM
+cubism/SM
+cubit/MS
+cuboid
+cuckold/MySGD
+cuckoldry/SM
+cuckoo/GMDS
+cucumber/MS
+cud/MS
+cuddle/S2DYG
+cuddly/T
+cudgel/MDGSJ
+cue/aMGDS
+cueing
+cuff/MDGS
+cuisine/SM
+cul-de-sac
+cul/GD
+Culbertson/M
+Culembeeck
+Culemborgpark
+culinary
+cull/S
+Culldene
+Cullen/M
+culler/M
+Cullinan
+Culloden
+Cully
+culminate/DSnGN
+culmination/M
+culotte/S
+culpa/MS
+culpability/MS
+culpable/PY
+culprit/MS
+cult/M3S
+cultism/SM
+cultist
+cultivable
+cultivatable
+cultivate/SDGNn
+cultivated/U
+cultivation/M
+cultivator/MS
+cultural/4
+culture/GDMoS
+cultured/U
+Culunca
+Culver/S
+culvert/MS
+cum/S
+Cumakala
+cumber/dS
+Cumberland/M
+cumbersome/YP
+cumbersomeness/S
+Cumberwood
+Cumbria/M
+Cumbrian/M
+cumbrous
+cumin/SM
+cummerbund/MS
+Cummings
+cumquat's
+cumulate/GSNDnVv
+cumulation/M
+cumuli
+cumulonimbi
+cumulonimbus/M
+cumulus/M
+cuneiform/S
+cunnilingus/MS
+cunning/TPY
+Cunningham/M
+cunt/SM
+cup/DGSM6
+cupboard/SM
+cupcake/SM
+Cupertino/M
+cupful/MS
+cupid/S
+cupidinously
+cupidity/SM
+cupola/DMGS
+cupping/M
+cupric
+cuprous
+cur/VS7rdZMglYv
+curability/MS
+curable/PI
+curacy/SM
+curare/MS
+curate/SMDG
+curative/S
+curator/MS
+curatorial
+curatorships
+curb/SMDG
+curbing/M
+curbside
+curbstone/SM
+curd/MDvuGSV
+curdle/SGD
+cure/S
+curettage/SM
+curfew/SM
+curia/M
+curiae
+curial
+curie/MS
+curio/MS
+curiosity/SM
+curious/YPT
+curiousness/S
+curium/M
+curl/RG2DS
+curled/U
+Curlew
+curlew/SM
+curlicue/SGMD
+curliness/S
+curling/M
+curls/U
+curly/TP
+curlycue's
+curmudgeon/MSY
+Curran/M
+currant/SM
+currency/SMF
+current/YFA
+currentness/M
+currents/f
+curricle/M
+curricula
+curricular
+curriculum/M
+Currie
+Currier
+curry/DMSG
+currycomb/SMDG
+curs/iyDhSG
+curse/M
+cursed/P
+cursive/EY
+cursiveness's
+cursiveness/E
+cursives
+cursor/KMS
+cursored
+cursoriness/S
+cursoring
+cursory/PY
+curt/PTY
+curtail/LSDRG
+curtain/GMDS
+Curtis
+curtness/S
+curtsey/SMDG
+curtsy/DSMG
+curvaceous/Y
+curvaceousness/S
+curvature/MS
+curve/MZDSG
+curved's
+curved/A
+curvilinear/Y
+curvilinearity/M
+curving's
+curving/A
+curvy/T
+cushion/SGMD
+Cushitic
+Cushman
+cushy/T
+cusp/MDS
+cuspate
+cuspidal
+cuss/FSMDG
+cussed/PY
+cusser/EF
+cusses/E
+custard/MS
+Custer/M
+custodial
+custodian/MS
+custodianship/SM
+custody/MS
+custom-built
+custom-made
+custom/tQs+9Srq8-M
+customary/YP
+customhouse/S
+customised/C
+cut-and-paste
+cut-down
+cut-off/MS
+cut-out/SM
+cut-price
+cut-throat/MS
+cut/RGMSJ
+cutaneous/Y
+cutaway/SM
+cutback/MS
+cute/PYT
+cuteness/S
+cutesy/T
+cuticle/SM
+cutlass/SM
+cutler/MZS
+cutlery/SM
+cutlet/SM
+cuts/f
+cutting/MY
+cuttle/M
+cuttlebone/MS
+cuttlefish/SM
+cutup/SM
+cutworm/MS
+CV
+Cw
+cw
+Cwaka
+Cwezi
+cwt
+cyan/WMS
+Cyanamid
+cyanate/M
+cyanide/GSMD
+cyanogen/M
+Cybele/M
+cybernate/N
+cybernetic/S
+cybernetician
+cybernetics/M
+cyberpunk/SM
+cyberspace/MS
+cybersquatting
+cyborg/S
+cycad/MS
+Cyclades
+Cycladic
+cyclamen/MS
+cycle/MS13WwGD
+cycled/A
+cycler/A
+cycles/A
+cycleway/S
+cycling's
+cycling/A
+cyclohexanol
+cycloid/SM
+cycloidal
+cyclometer/MS
+cyclone/WSM
+cyclopaedia/SM
+cyclopaedic
+Cyclopean
+Cyclops
+cyclotron/MS
+cyder/SM
+Cyferfontein
+cygnet/MS
+Cygnus
+cylinder/MwS1
+cymbal/3MS
+cymbalist
+cynic/YMS
+cynical
+cynicism/SM
+Cynon/M
+cynosure/MS
+Cynthia
+cypher/MdS
+cypress/MS
+Cyprian
+Cypriot/MS
+Cyprus/M
+Cyril
+Cyrildene
+Cyrillic
+Cyrus
+cyst/WMS
+cystitis
+Cythiavale
+cytochemistry/M
+cytochrome/M
+cytology/S3Mw
+cytoplasm/WMS
+cytosine/SM
+cytotoxic
+czar/3MS
+czarevitch/M
+czarina/MS
+czarism/M
+czarist
+czarship
+Czech/M
+Czechia/M
+Czechoslovak
+Czechoslovakia/M
+Czechoslovakian
+Czechs
+D'almedia
+d'Arezzo
+d'art
+d'Azur
+d'Estaing
+d'etat
+d'etre
+d'être
+d'oeuvre
+d's
+D'urbanvale
+d/AM
+Daantjie
+Daantjiesrus
+dab/STDG
+dabber/M
+dabble/RSDG
+Dabulaville
+Dacca/M
+dace/M
+dacha/MS
+Dachau
+dachshund/MS
+Dacron
+dactyl/SM
+dactylic
+dad/ZMS
+Dada
+Dadamba
+Dadaville
+daddy-long-legs
+daddy/MS
+Dade
+dado/MS
+Daedalus
+daemon/MWS
+Dafeleni
+daffiness/S
+daffodil/SM
+daffy/T
+daft/TYP
+daftness/S
+Dag
+Dagbreek
+Dagenham
+Dageraad
+dagga
+Daggafontein
+dagger/dMS
+dagha
+Daguerre
+daguerreotype/DGMS
+Dahl/M
+dahlia/SM
+dailiness/S
+daily/SP
+Daimler
+Dainfern
+daintiness/S
+dainty/TYPS
+daiquiri/MS
+dairy/Mm5SG
+dairying/M
+dairyland
+dairymaid/SM
+dais/MSZ
+daisy-cutter/S
+daisy/SM
+Dakar/M
+Dakota
+Dalbridge
+dale/SmM
+Dalecross
+Daleside
+daleth/M
+Daleview
+Daley/M
+Daliwe
+Dallas
+dalliance/MS
+dally/RGSD
+dalmatian/S
+Dalpark
+Dalsig
+Dalton
+Dalvale
+Dalview
+Daly
+dam/MDGS
+damage/DGkMRS
+damageable
+damaged/U
+Damaraland
+Damascus/M
+damask/DMSG
+Dambeni
+dame/MS
+Damien
+dammit/S
+damn/nDS7lNGk
+damnation/M
+damneder
+damnedest
+damner
+Damocles
+Damon/M
+damp/DPRGTYS
+dampen/drS
+dampness/S
+damsel/MS
+damselfly/SM
+damson/MS
+Dan/ZM
+Dana/M
+Danaë
+Danarand
+Danbury
+dance/RGDS
+danceable
+dancelike
+Danckertville
+dandelion/SM
+dander/dMS
+dandify/DSG
+dandle/SGD
+dandruff/SM
+dandy/MTSY
+Dane/S
+Danena
+danger/MdS
+dangerous/YP
+dangle/RSkDG
+Danhof
+Daniel/S
+Danielskuil
+Danielson
+Danielsrus
+Danish
+dank/PTY
+dankness/S
+Dannhause
+Dannhauser
+Danny/M
+danseuse/SM
+Dansville
+Dante
+Danube
+Danville
+Danzig
+Daphne
+dapper/YP
+dapperer
+dapperest
+dapple/DGS
+Darabe
+Darby
+Darcy/M
+dare/kRSGD
+daredevil/SMy
+daredevilry/S
+Dargle
+daring/P
+Dario
+Darius
+Darjeeling
+dark/DTSGYP
+darken/drS
+darkish
+darkly/T
+darkness/S
+darkroom/SM
+Darlene
+Darling
+darling/PSM
+Darlington/M
+darn/DSRG
+Darnall
+darneder
+darnedest
+darning/M
+DARPA/M
+Darrell
+Darren
+Darrenwood
+dart/MDSRG
+dartboard/MS
+Darter
+Dartford
+Dartmoor/M
+Dartmouth
+Darwen/M
+Darwin
+Darwinian
+Darwinism
+Daryl/M
+dash/RGDkS
+dashboard/MS
+dashiki/SM
+Daspoort
+Dassenberg
+Dassenhoek
+Dassierand
+dastardliness/S
+dastardly/P
+DAT
+data/M
+databank/MS
+database/MGDS
+datable
+datafile
+datagram/MS
+Datamation
+dataset/S
+date/MpRGSVDhi
+dated/eU
+datedness/e
+dateline/MDSG
+dative/S
+Datsun
+datum/SM
+daub/DRGS
+Daugherty/M
+daughter-in-law
+daughter/MYS
+daughters-in-law
+daunt/pGDkS
+daunted/U
+dauntless/PY
+dauntlessness/S
+dauphin/SM
+Dave/MZ
+Davel
+Davenport/MS
+Daventry
+Daveyton
+David/M
+Davidson
+Davidsonville
+Davie
+Davis
+Davison/M
+davit/SM
+Davy/S
+dawdle/DGRS
+Dawes
+Dawidsburg
+Dawkinsville
+Dawn
+dawn/MDSG
+Dawncliffe
+Dawson
+day-boys
+day-long
+day-to-day
+day/SM
+Dayanglen
+daybed/S
+daybreak/MS
+daycare/S
+daydream/RGMDS
+daylight/MDSG
+daypack/SM
+daysack
+daytime/MS
+Dayton
+daze/DhiSG
+dazzle/RSGkD
+dB/M
+DBE
+dBi
+dBm
+DBMS
+dBW
+DC
+DCB
+DCM
+DCMG
+DCVO
+DDT
+de-brief
+de-ice/RSDG
+de-industrialisation
+de-industrialization
+de/toG
+deaccession
+deacon/dMS
+deaconess/MS
+Deaconville
+dead-end
+dead-heat
+dead/PTY
+deadbeat/MS
+deadbolt/S
+deaden/Sdk
+deadener/M
+deadening/M
+deadhead/MS
+deadline/GDMS
+deadliness/S
+deadlock/DGSM
+deadly/TP
+deadpan/GD
+deadwood/MS
+deaf-and-dumb
+deaf-blind
+deaf/TYP
+deafen/dkS
+deafening/M
+deafness/S
+deal/aSG
+dealer/MS
+dealership/SM
+Dealesville
+dealing/MS
+dealt/a
+dean/GMD
+Deane/M
+deanery/MS
+Deanna/M
+deanship/MS
+dear/PTYSZ
+Dearborn
+Dearing/M
+dearness/S
+dearth/MS
+deary/MS
+deassign/G
+death-knell
+death-rattle
+death-roll
+death-toll/M
+death-trap/MS
+death-warrant/SM
+death-watch/SM
+death-wish/S
+death/pYMS
+deathbed/MS
+deathblow/MS
+deathless/Y
+deathlessness
+deathlike
+deathly/T
+deb/MS
+débâcle/SM
+debar/LGD
+debark/nGN
+debarkation/M
+debase/LR
+debatable
+debate/MR
+debauch/ShDiGy
+debauched/P
+debauchee/MS
+debaucher/M
+debauchery/MS
+Debbie/M
+Debby
+debenture/SM
+Debian/M
+debilitate/DNGSn
+debilitation/M
+debility/SM
+debit/d
+debonair/PY
+debonairness/S
+Deborah/M
+debouch/GSD
+Debra
+debrief/RJG
+debris/M
+debt/MS
+debtor/MS
+debunk/RG
+Debussy/M
+début/S
+débutante/MS
+Dec
+decade/SM
+decadence/Z
+decadency/S
+decadent/Y
+decaf/S
+decaffeinate/SG
+decagon/SM
+decal/SM
+Decalogue
+decamp/GL
+decapitate/DSG
+decapitator/SM
+decathlon/MS
+Decatur/M
+decay/DG
+decayer
+Decca
+decease's
+decease/KDSG
+deceit/M6jS
+deceitful/P
+deceitfulness/S
+deceive/RkSGD
+deceived/U
+deceives/U
+deceiving/U
+decelerate/GnNSD
+deceleration/M
+decelerator/SM
+December/MS
+decency/SIM
+decennial/YS
+decent/YI
+deception/MS
+deceptive/YP
+deceptiveness/S
+decibel/MS
+decide/DxGXVBhNivuS
+decided/U
+decidedness/M
+deciduous/PY
+decile/SM
+decilitre/MS
+decimal/qQSM-8Y
+decimate/DGSNn
+decimation/M
+decimetre/MS
+decipher/7rL
+decipherable/UI
+decision's/I
+decision-making
+decision/MDG
+decisions/I
+decisive/PIY
+decisiveness/IS
+deck/RMDGJS
+deckchair/S
+deckhand/S
+decking/M
+declaim/y
+declamation/SM
+declarable
+declaration's/A
+declaration/SM
+declarative/YS
+declarator/MS
+declaratory
+declare/NADSG
+declared/KU
+declarer/SM
+déclassé
+déclassée
+declassify/NnGD
+declension/SM
+declination/M
+decline/RNnSGD
+declivity/SM
+DECNET
+Deco
+decode/B
+décolletage/S
+décolleté
+décolletée
+decolletes
+decompile/7N
+decomposability/M
+decomposable/I
+decompose/B
+decompress/XGN
+decompresser
+decongestant/S
+deconstruct/V
+deconstruction
+deconstructionism
+decontextialisation
+decontrol/GD
+deconvolution
+décor/MS
+decorate/ScDAG
+decorated/U
+decoration/ASM
+decorative/PY
+decorator/SM
+decorous/YPI
+decorousness/S
+decorticate/SNGD
+decortication/M
+decorum/MS
+découpage
+decoupage/MDGS
+decoy/GMS
+decrease/k
+decree/MGSd
+decrement/SMDG
+decremental
+decrepit
+decrepitude/MS
+decry/J
+decrypt/DG
+decryption
+dedicate/nASNDG
+dedicated/U
+dedicatedly
+dedication/M
+dedicative
+dedicator/MS
+dedicatory
+deduce/bnSGNDVv
+deducer
+deduct/bG
+deductibility/M
+deductible/S
+deduction/M
+dee/M
+deed's/a
+deed/MDGS
+deeds/a
+deejay/SDMG
+Deelkraal
+deem/SGAD
+Deemount
+deep-freeze/G
+deep-fried
+deep-frozen
+deep-laid
+deep-rooted
+deep-sea
+deep-seated
+deep/STPY
+Deepavali
+Deepdale
+deepen/dS
+deepish
+deepness/S
+deer/M
+Deere
+Deerness
+deerskin/MS
+deerstalker/MS
+deerstalking/M
+Deetlefsville
+deface/RLG
+defalcate/SDnGN
+defalcation/M
+defamation/M
+defame/nyRG
+default/RG
+defeat/R3GD
+defeated/U
+defeatism/MS
+defeatist
+defecate/SGnND
+defecation/M
+defect/MGVSDuv
+defection/SM
+defective/PS
+defectiveness/S
+defector/SM
+defence/p
+defenceless/Y
+defencelessness
+defend/Vvu
+defendant/MS
+defended/U
+defenestrate/DSG
+defensibility/M
+defensible/IY
+defensibly/I
+defer/DGSR
+deference/MS
+deferential/Y
+deferrable
+deferral/MS
+defiance/SM
+defiant/Y
+defibrillator/MS
+deficiency/MS
+deficient/Y
+deficit/MS
+defile/L
+defiled/U
+definable/IU
+definably/I
+define/Rl
+defined/AUK
+defines/KA
+defining/KA
+definite/vuxV
+definitely/I
+definiteness/IS
+definition/SMAK
+definitive/SP
+deflatable
+deflate/SNGnD
+deflater
+deflation/yM
+deflect/GVSD
+deflection/SM
+deflector/MS
+defocus/DdG
+Defoe
+defog/RDG
+defoliant/SM
+defoliator/MS
+deform/xR7
+deformity/SM
+DEFRA
+defraud/RDG
+defrayal/MS
+defrost/R
+deft/PTY
+deftness/S
+defunct
+defuse
+defy/RGDSk
+deg
+degauss/GD
+degeneracy/MS
+degenerate/PY
+degradable
+degrade/ihk
+degraded/P
+degree/MS
+degreed
+dehydrator/MS
+deicide
+deictic
+deification/M
+deify/NGnSD
+Deighton/M
+deign/DGS
+Deirdre/M
+deist/MWS
+deity/SM
+déjà
+deject/DGhSi
+dejected/P
+dejection/MS
+DeKalb
+Dekameelskuil
+DeKastere
+Deklerkshof
+Delaney/M
+Delano/M
+Delarey
+Delareyville
+Delaware/M
+delay/D
+delectable/YPS
+delectation/SM
+delegable
+deletable
+delete/nSDGN
+deleter
+deleterious/YP
+deletion/M
+Delft
+delft/SM
+delftware/S
+Delgado
+Delhi/M
+deli/M
+Delia/M
+deliberate/YPVvu
+deliberateness/S
+deliberative/P
+Delibes
+delicacy/IMS
+delicate/YIP
+delicateness/S
+delicates
+delicatessen/MS
+delicious/YP
+deliciousness/S
+delicti
+delight/hij6
+delighted/P
+delightful/P
+Delilah
+delineate/SDGNnV
+delineation/M
+delinquency/MS
+delinquent/SYM
+deliquesce/DSG
+deliquescent
+delirious/YP
+deliriousness/S
+delirium/SM
+Delius
+deliver/AdSZ
+deliverable/U
+deliverables
+deliverance/SM
+delivered/U
+deliverer/MS
+dell/MS
+Della/M
+Delmarva
+Delmas
+Delmenville
+Delmore
+Delphi
+Delphic
+delphinium/MS
+Delport
+Delporton
+Delportshoop
+Delropark
+delta/MS
+deltoid/MS
+delude/xuvSGkVDNX
+deluder/M
+deluge/SDG
+delusion/M
+delusive/P
+deluxe
+delve/DSRG
+Delville
+demagogue/MSGDy
+demagoguery/SM
+demagogy/WM
+demand/DGSk
+demander/M
+demanding/U
+demarcate/SGnDN
+demarcation/M
+Demat
+demean/GD
+demeanour
+demented/PY
+dementia/MS
+demesne/SM
+Demeter
+demi-mondaine/SM
+demi-monde/MS
+demigod/SM
+demigoddess/SM
+demijohn/MS
+demilitarise/n
+demilitarize/NnSG
+demise/SGMD
+demisemiquaver/S
+demit/SNGD
+demitasse/MS
+demo/GMD
+democracy/MS
+democrat/Q1q8-SMW
+democratic/UY
+démodé
+demographer/SM
+demographic/S
+demography/SW1Mw
+demolish/SGD
+demolisher/M
+demolition/MS
+demon/SMW
+demoness
+demoniac/S
+demoniacal/Y
+demonology/M
+demonstrable/YP
+demonstrably/I
+demonstrate/vDSGNVnu
+demonstration/M
+demonstrative/SP
+demonstratively/U
+demonstrativeness/S
+demonstrator/SM
+demoralise/n
+demoralize/R
+DeMorgan/M
+demote/DGW
+demotic/S
+demotion
+demount/7
+Dempsey
+demulcent/S
+demur/SDG
+demure/YP
+demureness/S
+demurral/MS
+demythologise/n
+demythologize/nDGNS
+den/MDGSZ
+denature/G
+Denbighshire/M
+dendrite/SM
+dendrochronology/w
+Dendron
+Deneysville
+Denge
+dengue/MS
+deniable/U
+denial/MS
+denigrate/VSDGNn
+denigration/M
+denim/MS
+Denis
+denizen/MdS
+Denlee
+Denmark/M
+Denne-oord
+Denneboom
+Denneburg
+Dennedal
+Dennehof
+Dennekruin
+Dennemere
+Denneoord
+Dennesig
+Dennilton
+Dennis
+Dennisfield
+Denny
+denominate/x
+denotable
+denoter
+dénouement
+denouement/MS
+denounce/DLRSG
+dens/T
+dense/FY
+denseness/MS
+denser/F
+densitometer/MSW
+densitometry/M
+density/MS
+dent/MoDGS3
+dental
+dented/I
+dentifrice/MS
+dentine/M
+dentist/y
+dentistry/MS
+dentition/MS
+dents/I
+denture/MIS
+denuclearise/SGD
+denuclearize/GSD
+denudation/M
+denude/nRDG
+denunciate/NSGnVD
+denunciation/M
+Denver
+deny/7SGRDk
+deodorant/MS
+deodorise/nRGDS
+deodorize/RSnGND
+deoxyribonucleic
+depart/LG
+department/o
+departmental/qQ8-
+departure/MS
+dépaysé
+dépaysée
+depend/lDGBS
+dependability/MS
+dependable/P
+dependence/IMS
+dependency/MS
+dependent/Ic
+dependently/I
+depersonzlized
+depict/DGS
+depicter/M
+depiction/SM
+depilatory/S
+deplete/NGnVDS
+depletion/M
+deplorable/P
+deplore/DSGkl
+deplorer/M
+deploy/LAGDS
+deployable
+depolarize/R
+deponent/S
+deport/LnN
+deportation/M
+deportee/MS
+deposit/AdS
+depositary/M
+depositor/MS
+depository/MS
+deprave/hDSGi
+depraved/P
+depraver/M
+depravity/MS
+deprecate/DSNnGky
+deprecation/M
+depreciable
+depreciate/SkvnGNDV
+depreciation/M
+depress/kbXNVv
+depressant/S
+depression/M
+depressive/S
+depressor/SM
+deprive/GnNDS
+Dept.
+depth/MS
+deputation/M
+depute/8NQZnSGD
+deputy/MS
+dequeue
+derail/L
+dérailleur/SM
+derange/L
+Derby/M
+derby/SM
+Derbyshire/M
+Derdepoort
+Derdepoortpark
+dereference/R
+Derek/M
+derelict/S
+dereliction/MS
+deride/DVXvkNu
+derision/M
+derisive/P
+derisiveness/S
+derisory
+derivable
+derivation/M
+derivative/MPS
+derive/NvnuV
+dermal
+dermatitides
+dermatitis/MS
+dermatology/3wSM
+dermis/SM
+derogate/DNnVSGy
+derogation/M
+derogatory/Y
+derrick/MGSD
+derrière/S
+derringer/MS
+Derry
+Dersley
+Dertig
+dervish/SM
+Derwent
+Desai
+Desainagar
+desalinate/SGDNn
+descant/SM
+Descartes
+descend/SRDG
+descendant/MS
+descended/F
+descendent
+descending/F
+descends/F
+describable/I
+describe/RVuNXv
+description/M
+descriptive/PS
+descriptiveness/S
+descriptivism
+descriptor/SM
+descry/GDS
+desecrate/nDGSN
+desecrater/M
+desecration/M
+deselect/G
+desert/RGDSM
+desertification
+desertion/MS
+deserve/hki
+deserved/P
+deservedly/U
+deserving/U
+déshabillé's
+desiccant/S
+desiccate/GnSDN
+desiccation/M
+desiccator/MS
+desiderata
+desideratum/M
+design/nJ7NhxV
+designate/DKSG
+designation/M
+designator/MS
+designed/A
+designs/A
+desirabilia
+desirability's/U
+desirability/SM
+desirable/PS
+desirableness/S
+desirables/U
+desirably/U
+desire/lRB
+desired/U
+Desiree
+desirous/YP
+desist/SDG
+desk/MS
+desktop/S
+Desmond/M
+desolate/kPGSNDYn
+desolateness/S
+desolater/M
+desolation/M
+desorption/M
+despair/DkSG
+despairer/M
+Despatch
+despatch/GDS
+desperado/M
+desperadoes
+desperate/PNYn
+desperateness/S
+desperation/M
+despicable/Y
+despise/GDRS
+despite
+despoil/L
+despond
+despondence/SZ
+despondency/MS
+despondent/Y
+despot/W1
+despotism/MS
+despread/G
+dessert/SM
+dessicate/ND
+destigmatization/M
+destination/MK
+destine/nKND
+destiny/SM
+destitute/P
+destitution/SM
+destroy/GR7SD
+destruct/VbvSDGu
+destructibility/SIM
+destructible/I
+destruction/SM
+destructive/P
+destructiveness/S
+destructor/M
+desuetude/MS
+desultory/PY
+desynchronise
+detach/RLiG7DhS
+detached/P
+detain/LSGD
+detainee/S
+detainer/M
+detect/lGVDSB
+detectability/U
+detectable/U
+detectably/U
+detected/U
+detection/MS
+detective/MS
+detector/MS
+détente/S
+detention/MS
+deter/DGS
+deterers
+detergent/SM
+deteriorate/DGVNnS
+deterioration/M
+determinability/M
+determinable/PI
+determinacy/I
+determinant/SM
+determinate/IPNY
+determination/IMK
+determinative/YP
+determine/RKnGDSN
+determined/cAU
+determinedly
+determinedness/M
+determines/A
+determining/A
+determinism/IM
+determinisms
+deterministic/Y
+deterred/U
+deterrence/SM
+deterrent/YSM
+detest/lNn
+detestable/P
+detestation/M
+dethrone/GL
+detonable
+detonate/GnVNDS
+detonated/U
+detonation/M
+detonator/SM
+detox/DGS
+detoxification/M
+detoxify/DNnSG
+DETR/M
+detract/DvGV
+detribalise/GDS
+detribalize/DSG
+detriment/MoS
+detrimental
+detritus/M
+Detroit
+Dettingen
+deuce/MDSGh
+deurmekaar
+deuterium/M
+deuteron/M
+Deuteronomy
+Deutsch
+devalue/nN
+devastate/GnDVNkS
+devastation/M
+devastator/SM
+develop/rdLAS
+developed/Ucf
+developing/c
+development's/f
+development/o
+developmental
+developments/f
+develops/c
+deviance/SMZ
+deviancy/S
+deviant/MYS
+deviate/DSnGN
+deviating/U
+deviation/M
+devil/MGLDyS
+devilish/YP
+devilishness/S
+devilry/MS
+devious/YP
+deviousness/S
+devise/DRGJS
+Devland
+devolution/MS
+devolve/DSG
+Devon/M
+Devondale
+Devonian
+Devonshire/M
+devote/hix
+devotee/MS
+devotion/SM
+devotional/S
+devour/RSDG
+devout/TYP
+devoutness/S
+dew/SZDMG2
+dewar
+dewberry/SM
+dewclaw/MS
+dewdrop/MS
+Dewetsdorp
+Dewetshof
+Dewey
+dewiness/S
+Dewitt
+dewlap/MS
+Dewvale
+dewy-eyed
+dewy/TP
+Dexedrine
+dexes/I
+dexter
+dexterity/MS
+dexterous/PY
+dexterousness/S
+dextrose/SM
+DfES
+Dhabi/M
+Dhaka/M
+DHCP
+Dhiri
+Dhlakati
+dhoti/SM
+dhow/MS
+diabase/M
+diabetes/M
+diabetic/S
+diabolic/Y
+diabolical/P
+diabolism/M
+diachronic
+diachronicness
+diacritic/YSM
+diacritical/S
+diadem/dMS
+diaereses
+diaeresis/M
+diagnometer/MS
+diagnosable
+diagnose/DaSG
+diagnosed/U
+diagnosis's
+diagnosis/a
+diagnostic/MYS
+diagnostician/MS
+diagnostics/M
+diagonal/tQ+8YS
+diagram/RDGSM
+diagrammable
+diagrammatic/Y
+diagrammaticality
+Diahosville
+dial/MGSDR
+dialect/WwSoM1
+dialectal
+dialectic/SM
+dialogue/S
+dials/A
+dialyse/GDS
+dialysis/M
+diam
+diamagnetic
+diamanté
+Diamanthoogte
+diameter/S1wMW
+diamond/DSGM
+diamondback/MS
+Diana
+Diane
+Dianne
+diapason/MS
+diaper
+diaphanous/YP
+diaphragm/MS
+diaphragmatic
+diarrhoea/SMW
+diarrhoeal
+diary/3SM
+diaspora
+diastase/MS
+diastole/WMS
+diathermy/MS
+diathesis/M
+diatom/SM
+diatomic
+diatonic
+diatribe/MS
+Diazville
+Dibasabophelo
+dibble/MSDG
+Dibeng
+Dibley
+dibs
+dice/DNnSG
+dicer/M
+dices/I
+dicey
+dichloride/M
+Dichoeung
+dichotomous/Y
+dichotomousness
+dichotomy/Q-8qSM
+dicier
+diciest
+dicing/M
+dick/SMDG
+dickens/M
+Dickensian
+Dickerson/M
+dickey/MS
+dickier
+dickiest
+Dickinson
+Dicks
+Dickson
+dicky's
+dicotyledon/MS
+dicotyledonous
+dicta/Mn
+Dictaphone
+dictate/SDG
+dictation/M
+dictator/oMS
+dictatorial/P
+dictatorship/SM
+diction/KMS
+dictionary/MS
+dictum/M
+did/cUeA
+didactic/YS
+didactics/M
+diddle/GDRS
+Diderot
+didn't
+Dido/M
+didst
+die-cast
+die-hard/S
+die/DSG
+Diego
+dielectric/MS
+diem
+Diep
+Diepdale
+Diepkloof
+Diepmeadow
+Dieppe
+Diepsloot
+Diepwater
+dies/U
+diesel-electric
+diesel/SM
+diet/MRDSG
+dietary/S
+dietetic/S
+dietetics/M
+diethyl
+dietician/MS
+dietitian/SM
+Dietrich
+Dietz
+Difateng
+differ/dS
+difference's/I
+difference/SGMD
+differences/I
+different/YI
+differential/SMY
+differentiate/BDNSGn
+differentiated/U
+differentiation/M
+differentiator/SM
+differentness
+differer/S
+difficult/ZY
+difficulty/MS
+diffidence/MS
+diffident/Y
+diffract/GSD
+diffraction/MS
+diffractometer/SM
+diffuse/RGxVSbXYPvuDN
+diffuseness/S
+diffusion/M
+diffusive/P
+diffusivity/M
+dig/RJGS
+digerati
+digest/vSDVubG
+digested/KU
+digester/M
+digestibility/SM
+digestible/I
+digestifs
+digesting/K
+digestion/MI
+digestions
+digestive/S
+digests/K
+Digimon
+digit/Q8M-9sSq
+digital/Q-qs98Y
+digitalis/M
+dignified/U
+dignify/SDG
+dignitary/SM
+dignity/MIS
+digram
+digraph/MS
+digress/vNSGXuDV
+digression/M
+digressive/P
+dihedral
+Dijkstra/M
+Dijon
+Dijong
+Dikataneng
+dike/MDGS
+Dikebu
+diker/M
+Dikgakeng
+Dikgale
+Dikhothatso
+dikkop/S
+Dikole
+diktat/MS
+Dikwebu
+dilapidate/DSNnG
+dilapidation/M
+Dilapiso
+dilatation/MS
+dilate/hinVGNDyS
+dilation/M
+dilator/MS
+dilatory/P
+dildo/MS
+dilemma/MS
+dilettante/SM
+dilettantish
+dilettantism/SM
+diligence/MS
+diligent/PY
+dilithium
+dill/MY
+Dillinger
+Dillon
+dilly-dally/DSG
+dilogarithm
+Dilopye
+diluent
+dilute/PVGDYS
+diluted/U
+diluter
+dilution/SM
+dim/rYGDPTRS
+DiMaggio
+Dimamotsa
+Dimbaza
+dime/SM
+dimension/GSDpMo
+dimensional
+dimensionality/M
+dimethyl/M
+dimethylglyoxime
+diminish/7SDG
+diminished/U
+diminuendo/MS
+diminution/MS
+diminutive/YSP
+dimity/SM
+dimmed/U
+dimness/S
+dimorphic
+dimorphism/M
+dimorphous
+dimple/YDSGM
+dimply/T
+dimwit/MSD
+din/SGdDMrR
+Dinabanye
+Dinah
+dinar/MS
+Dindi
+dine/S
+dinette/SM
+ding-dong
+ding/DZz2G
+Dingaan/M
+Dingdong
+dinghy/SM
+dinginess/S
+dingle/MS
+Dingledale
+Dingleton
+dingo/MS
+dingoes
+dingus/S
+dingy/TPS
+Dinka
+dinky/TS
+dinnertime/S
+dinnerware/MS
+Dinokana
+dinosaur/SM
+dint/MGDS
+Dinwiddie
+diocesan/S
+diocese/MS
+diode/MS
+Diogenes
+Dionysian
+Dionysus
+dioptre/MS
+diorama/MS
+dioxalate
+dioxide/SM
+dioxin/S
+dip/GZRSD
+Dipelaneng
+Dipetleloane
+diphtheria/MS
+diphthong/MS
+Dipitsing
+diplexers
+diploid/S
+diploma/DS1MW
+diplomacy/SM
+diplomat/3SM
+diplomata
+diplomatic/S
+diplomatics/M
+diplomatist
+dipole/SM
+dippy/T
+dipsomania/SM
+dipsomaniac/MS
+dipstick/MS
+dipterous
+diptych/M
+diptychs
+Diqhobong
+Dirac
+dire/TP6jY
+direct/SaDAG
+directed/IU
+directer
+directest
+direction-finder
+direction/SIaM
+directional/YS
+directionality
+directions/A
+directive/SM
+directivity/M
+directly/I
+directness/MIS
+director's/A
+director/aSA
+directorate/MS
+directorial
+directors'
+directorship/MS
+directory/SM
+directrices
+directrix/M
+dirge/GDMS
+dirigible/S
+dirk/SM
+Dirkiesdorp
+dirndl/SM
+dirt/2zMSZ
+dirtiness/S
+dirty/DTSPG
+dis/M
+disable/LDSGR
+disadvantage/i
+disadvantageous
+disaffect
+disagreeable/S
+disambiguate/GnDSN
+Disaneng
+disant
+disappoint/hLk
+disarm/LkG
+disastrous/Y
+disband/L
+disbar/GL
+disbelieve/k
+disbursal/S
+disburse/SGDL
+disburser/M
+disc/MS
+discard/G
+discern/kLSDbG
+discerner/M
+discernibility
+discernible/Y
+discerning/U
+disciple/MSDG
+discipleship/MS
+disciplinarian/MS
+disciplinary
+discipline/DIM
+disciplined/U
+discipliner/M
+disciplines
+disciplining
+disclaim/7
+disclose
+disclosed/U
+disco/MG
+discography/MS
+discolour/Nin
+discoloured/M
+discomfit/d
+discomfiture/SM
+discommode/GD
+discompose/D
+disconcert/k
+disconnect
+disconnectedness/S
+disconnecter/M
+disconnection
+disconsolate/Y
+discontent/LhD
+discontinuous
+discordance/SM
+discordant/Y
+discorporate/D
+discotheque/SM
+discothèque/SM
+discourage/LGDk
+discourager
+discourtesy
+discover/rZ
+discovered/UA
+discovers/A
+Discovery
+discovery/SAM
+discredit/7l
+discreet/TPY
+discreetly/I
+discreetness/S
+discrepancy/MS
+discrepant/Y
+discrete/YPNn
+discreteness/S
+discretion/IMS
+discretionary
+discriminable
+discriminant/SM
+discriminate/NyDnSGkV
+discriminating/IY
+discrimination/MI
+discriminator/SM
+discus/MSDG
+discuss/7XN
+discussant/SM
+discusser/M
+discussion/M
+disdain/GD6jSM
+disdainful/P
+disease/G
+disembark/Nn
+disembowel/GDLS
+disenfranchise/L
+disfigure/L
+disfranchise/L
+disgraceful/P
+disgracer/M
+disgruntle/LSGD
+disguise/RDhG
+disguised/U
+disgust/h6kj
+dish/SGMD
+dishabille/MS
+disharmony
+dishcloth/MS
+dishevel/LGSD
+dishwasher/SM
+dishwater/M
+disillusion/GLD
+disinfectant/MS
+disingenuous
+disintegrate
+disinterest/i
+disinterested/P
+disinterestedness/S
+disinvest/L
+disjoin
+disjointedness/S
+disjointness
+disjunct/Vv
+disjunctive/S
+disk/MS
+diskette/S
+Diskobolos
+dislike/7G
+dismal/Y
+dismalness
+dismantle/L
+dismay/SDk
+dismayed/U
+dismember/Ld
+dismiss/Rv
+Disney/M
+Disneyland
+disorder/ih
+disordered/P
+disorderly/P
+disown
+disparage/RSLGDk
+disparate/YPS
+dispassionate/P
+dispatch/R
+dispel/GSD
+dispensable/I
+dispensary/MS
+dispensate
+dispensation/M
+dispense/ynSGDR
+dispersal/MS
+dispersant/M
+disperse/RbSNXVDhLGuv
+dispersion/M
+dispersive/P
+dispirit/dS
+dispirited/Y
+display/AGSD
+displease/h
+disport
+disposable/S
+disposal/MS
+dispose/ISKGDXN
+disposition/IMK
+disproportion/N
+disproportionate/GD
+disproportionation/M
+Dispur
+disputable/I
+disputably/I
+disputant/MS
+disputation/M
+disputatious/Y
+dispute/lNnDRSG
+disputed/U
+disquiet/Mk
+disquieter
+disquisition/SM
+Disraeli/M
+disregard/6
+disrepair
+disreputable/P
+disrepute/M
+disrespect
+disrobe/G
+disrupt/GDvuVS
+disrupted/U
+disrupter/M
+disruption/SM
+disruptor/M
+dissatisfy
+dissect/DG
+dissemble/GRDS
+disseminate/DSGNn
+dissemination/M
+dissension/SM
+dissent/GDRS
+dissertation/SM
+disservice
+dissidence/MS
+dissident/MS
+dissimilar/S
+dissimilitude/S
+dissipate/RiGDhSNVn
+dissipated/P
+dissipation/M
+dissociable/I
+dissociate/nvVDSGN
+dissociation/M
+dissoluble/I
+dissolute/PY
+dissoluteness/S
+dissolve/ADSG
+dissolved/U
+dissonance/MS
+dissonant/Y
+dissuade/VGSD
+dissuader/M
+distaff/MS
+distal/Y
+distance's
+distance/eGSD
+distant/PY
+distaste
+distastefulness/S
+distend/NX
+distil/7NVnGS
+distillate/MS
+distillation/M
+distiller/Z
+distillery/SM
+distinct/TVvPuY
+distinction/MS
+distinctive/P
+distinctiveness/S
+distinctly/I
+distinctness/IS
+distinguish/Sl7DG
+distinguishable/IU
+distinguishably/I
+distinguished/U
+distort/D7RG
+distorted/U
+distortion/MS
+distract/7iGDhk
+distracted/P
+distraught/Y
+distress/GkD6
+distributable
+distribute/GVuDv
+distributed/UA
+distributes/A
+distributing/A
+distribution/MAS
+distributional
+distributive/A
+distributiveness/M
+distributives
+distributivity
+distributor/MS
+distributorship/M
+district/MS
+disturb/GRSDk
+disturbance/SM
+disturbed/U
+disulphide/M
+disuse/M
+disyllable/MW
+ditch/MDSG
+ditcher/M
+Ditenteng
+Dithabaneng
+Dithakong
+Dithakwaneng
+dither/Sd
+ditherer/S
+Ditlake
+Ditlong
+Ditsheng
+Ditsobotla
+ditto/MDSG
+ditty/SM
+ditz/S
+diuresis/M
+diuretic/S
+diurnal/SY
+diva/SM
+divalent/S
+divan/SM
+dive-bombing
+dive/TRGJSD
+dived/M
+Divehi
+diverge/GDS
+divergence/SM
+divergent/Y
+divers/NX
+diverse/PY
+diverseness/S
+diversification/M
+diversifier/M
+diversify/NnGDS
+diversion/My
+diversity/SM
+divert/GSD
+diverticulitis/M
+divertimento/M
+divest/SDG
+divestiture/SM
+divestment
+dividable
+divide/RxuGXVDSNv
+divided/AU
+dividend/SM
+divides/A
+dividing/A
+divination/M
+divine/nRTGNYDS
+divinity/SM
+divisibility/IMS
+divisible/I
+division/M
+divisive/P
+divisiveness/S
+divisor/MS
+divorcé
+divorce/MGDS
+divorcee/S
+divorcée/SM
+divot/SM
+divulge/GDS
+divvy/GDSM
+Dixie
+Dixieland
+Dixon/M
+dizziness/S
+dizzy/DTkSYPG
+DJ/M
+Djakarta/M
+djellaba/S
+djellabah's
+Djibouti/M
+DJs
+DLA
+Dlamini
+Dlolwana
+DLR
+Dludlu
+Dludluma
+Dmitri
+DMZ
+DNA
+Dnieper/M
+DNS
+do-gooder/S
+do-it-yourself
+do-or-die
+do/z7TRGyJ
+DOB
+dobbin/MS
+Doberman
+Dobsonville
+DoC
+doc/RSDMG
+docile/Y
+docility/MS
+dock/MS
+docket/dMS
+dockland/SM
+dockside/M
+dockworker/S
+dockyard/MS
+DoCoMo
+doctor/MdS
+doctoral/K
+doctorate/MS
+Doctorskop
+doctrinaire/S
+doctrinal
+doctrine/SoM
+docudrama/S
+document/DRMGnNS
+documentary/SM
+documentation/M
+documented/U
+DOD
+dodder/dSZ
+dodecahedra
+dodecahedral
+dodecahedron/M
+Dodecanese
+dodge/DSRZG
+dodgem/S
+Dodgson/M
+dodgy/T
+dodo/MS
+Dodoma/M
+Dodson/M
+doe/MS
+doek
+does/cUeA
+doeskin/MS
+doesn't
+doff/DGS
+dog's-tail
+dog's/f
+dog-biscuit/SM
+dog-box
+dog-clutch
+dog-collar/SM
+dog-eared
+dog-eat-dog
+dog-end
+dog-leg/D
+dog-paddle
+dog-star
+dog-tail
+dog-tired
+dog-tooth
+dog/hiMDGZS
+doge/SM
+dogfight/SMG
+dogfish/SM
+dogfought
+dogged/P
+doggedness/S
+doggerel/MS
+Doggett/M
+doggo
+doggy-paddle
+doggy/TSM
+doghouse/SM
+dogleg/MDSG
+dogma/1MSW
+dogmatics's
+dogmatism/MS
+dogmatist/MS
+Dogri
+dogs/f
+dogsbody/M
+dogtooth/M
+dogtrot/MGSD
+dogwood/SM
+dogy's
+doh/M
+Doha/M
+Dohne
+doily/SM
+doing's
+doing/ace
+doings/a
+Dokodweni
+Dolby/M
+doldrums
+dole's
+dole/FSDG
+doleful/PY
+dolefulness/S
+dolerite
+doll/MDGSY
+dollar/SM
+dollop/dMS
+dolly/MGDS
+dolmen/MS
+dolomite/MSW
+Dolores
+dolorous/Y
+dolour/MS
+dolphin/SM
+Dolphinfish
+dolt/MS
+doltish/PY
+doltishness/S
+Dom
+domain/SM
+dome/SDMG
+domes/W
+Domesday
+domestic/NYnS
+domesticate/SDG
+domesticated/U
+domestication/M
+domesticity/SM
+Domestos
+domicile/SMDG
+domiciliary
+dominance/SMK
+dominant/SY
+dominantly/K
+dominate/SNKDG
+domination's/K
+domination/SM
+dominative
+dominator/M
+dominatrices
+dominatrix
+dominee
+domineer/kGSD
+domineering/P
+Domingo/M
+Dominic
+Dominica/M
+Dominican/SM
+Dominick/M
+dominion/SM
+Dominionville
+Dominique/M
+Domino
+domino/M
+dominoes
+don't
+don/NVDGSn
+dona/MS
+Donahue
+Donald/M
+Donaldson
+donate/DSG
+donation/M
+donative/M
+Doncaster
+Donda
+donder
+Dondotha
+done/AfFUec
+Donegal/M
+dong/MDSG
+donga/S
+dongle/S
+Donizetti
+donkey/SM
+Donna
+Donnelly
+donnish/YP
+Donny
+Donnybrook
+donor/SM
+Donovan
+doodle/GDRS
+doodlebug/MS
+Dooley/M
+Doolittle
+doom-laden
+doom/SGMD
+doomsday/MS
+Doonside
+dooper
+door-to-door
+door/MDGmS
+doorbell/MS
+doorhandles
+doorkeep/R
+doorknob/SM
+doormat/MS
+Doorn
+doornail/M
+Doornbult
+Doornfontein
+Doornhoek
+Doornhoogte
+Doornkloof
+Doornkop
+Doornpark
+Doornpoort
+doorplate/MS
+doorpost
+doors/Ie
+doorstep/SMDG
+doorstop/SM
+doorway/MS
+dooryard/SM
+dop/rd
+dopa/SM
+dopamine
+dopant/M
+dope/MS2
+dopey
+dopier
+dopiest
+dopiness/S
+doppelgänger
+Doppies
+Doppler
+Dora/MW
+Dorado
+Dorandia
+Dorbank
+Dorchester
+Dordrecht
+Doreen/M
+Dorhill
+Dorian
+Doringkloof
+Doringkop
+Doringkruin
+Doris
+dork/SZ
+dorky/T
+dorm/MRS
+dormancy/SM
+dormant
+Dormehlsdrift
+Dormerton
+dormice
+dormitory/SM
+dormouse/M
+Dorothea/M
+Dorothy
+dorper
+dorpie
+Dorpsig
+Dorpspruit
+dorsal/Y
+Dorset/M
+Dortmund/M
+dory/SM
+dos/GSdD
+dosage/MS
+dose/cDSGM
+dosimeter/MS
+dosimetry/M
+doss
+doss-house
+Dosset
+dossier/MS
+dost
+Dostoevsky
+dot/Ddr2MkSZG
+dotage/MS
+dotard/MS
+dote/S
+doth
+dotty/T
+Dotyeni
+double-barrelled
+double-blind
+double-breasted
+double-checked
+double-cross/G
+double-dealing
+double-decker/S
+double-edged
+double-glazed
+double-headed
+double-jointed
+double-parked
+double-sided
+double/GADS
+Doubleday
+doubleheader/MS
+doubleness
+doubler/MS
+doubles/M
+doublespeak/S
+doublet/SM
+doubletalk
+doublethink
+doubloon/SM
+doubly
+doubt's/A
+doubt/7R6MkSGDjp
+doubted/U
+doubtful/P
+doubtfulness/S
+doubtless/YP
+doubts/A
+douche/DSMG
+Doug
+dough/MSZ
+Dougherty
+doughnut/SMDG
+doughty/T
+doughy/T
+Douglas
+Douglas-Home/M
+Douglasdale
+Douglass
+dour/TYP
+dourness/S
+douse/DGS
+douser/M
+dove/SM
+dovecot
+dovecote/SM
+Dovehouse
+doveish
+dovelike
+Dover
+dovetail/SGMD
+Dow
+dowager/SM
+dowdiness/S
+dowdy/TYP
+dowel/MSDG
+dower/dMS
+Dowerglen
+Dowerville
+down-and-out/S
+down-to-earth
+down/RMDGSZ
+downbeat/SM
+downcast
+downdraught/M
+Downey
+downfall/MS
+downgrade/DSG
+downhearted/YP
+downheartedness/S
+downhill
+downhiller
+downland/S
+downlink/SDG
+download/DBGS
+downpipe/S
+downplay/DGS
+downpour/SM
+downrange
+downright/PY
+downriver
+downs/8
+downscale/DGS
+downside/S
+downstage/S
+downstairs
+downstream
+downswing's
+downtime/MS
+downtrodden
+downturn/SM
+downward/PYS
+downwind
+downy/T
+dowry/MS
+dowse/RSGD
+doxology/SM
+doyen/MS
+doyenne/SM
+Doyle
+doze/GSDZ
+dozen/S
+dozenth
+dozer/M
+Dr
+Draaifontein
+Draaikraal
+drab/TYP
+drabness/S
+drachma/MS
+draconian
+Dracula/M
+draft's/c
+draft/RGMDS
+drafted/A
+draftee/MS
+drafts/Ac
+drag/MDZSG
+dragger/M
+dragging/Y
+draggy/T
+dragnet/SM
+dragon/MS
+dragonfly/MS
+dragoon/DGMS
+drain/MDRSG
+drainage/MS
+draining-board/SM
+drainpipe/MS
+drake/SM
+Drakensberg/M
+dram/W1wSM
+drama/qs8Q9-MS
+Dramamine
+dramatic/U
+dramatics/M
+dramatist/MS
+dramaturgy/M
+Dramaville
+drank
+drape/DSRyG
+drapery/SM
+drastic/Y
+drat/GSD
+draught/2m5SZz
+draughtiness/S
+draughtsmanship/MS
+draughtsperson
+draughty/PT
+Dravidian
+draw/7SRGJ
+drawback/MS
+drawbridge/SM
+drawee/MS
+drawing's
+drawing-room
+drawing/ce
+drawl/GSDk
+drawler/M
+drawn-out
+drawn/cIeA
+draws/Aec
+drawstring/MS
+dray/MSDG
+Draycott
+dread/G6jSD
+dreader
+dreadful/P
+dreadfulness/S
+dreadlocks
+dreadnought/SM
+dream-world/S
+dream/MR2pDzkGSZ
+dreamboat/SM
+dreamed/U
+dreaminess/S
+dreamland/MS
+dreamless/YP
+dreamlike
+dreamt
+dreamy/PT
+drear/2zZ
+dreariness/S
+dreary/TP
+dredge/MDRGS
+dreg/MS
+drench/SDG
+drencher/M
+Dresden
+dress/RGJZD2S
+dressage/SM
+dressed/cAU
+dresser/AM
+dresses/cAU
+dressiness/S
+dressing's
+dressing/c
+dressmaker/MS
+dressmaking/MS
+dressy/PT
+drew/ecA
+Drew/M
+Drexel
+Dreyersdal
+Dreyfuss
+dribble/RSDG
+driblet/SM
+Driefontein
+Driehoek
+Driekop
+Driekoppies
+Drieziek
+drift/RGSkD
+Driftsand/S
+driftwood/MS
+drill/MDRGS
+drilling/M
+drillmaster/SM
+drink-driving
+drink/RS7G
+drinkable/S
+drip-dry
+drip/JMDGZS
+drippy/T
+drivable
+drive-ins
+drive/JSRG
+drivel/RGDS
+driven
+drivenness
+drives/c
+driveway/SM
+drizzle/GkSMDY
+drizzly/T
+droëwors
+drogue/SM
+droll/PTY
+droller/Z
+drollery/SM
+drollness/S
+dromedary/SM
+drone/MDGSk
+droner
+Droogefontein
+drool/RSDG
+droop/GkS2ZD
+droopiness/S
+droopy/TP
+drop-forging
+drop-head
+drop-in
+drop-kick/S
+drop-out/SM
+drop-shot/MS
+drop-test/SMDG
+drop/MRSGDJ
+droplet/SM
+dropping/M
+drops/wZ
+dropsy/M
+drosophila/M
+dross/MS
+Drottningholm/M
+drought/SM
+drove/SRGD
+drown/JDGS
+drowner/M
+drowse/DSZG
+drowsiness/S
+drowsy/TPY
+drub/RGDJS
+drubbing/M
+drudge/MSyGkD
+drudger/M
+drudgery/SM
+drug/MDGS
+druggie/ST
+Druid's
+druid/S
+Druidic
+Druidical
+Druidism/MS
+drukkie
+drum/RGDSM
+drumbeat/MGS
+Drumblair
+drumhead/M
+drumlin/MS
+drummie/S
+Drummond/M
+drumstick/MS
+drunk/SMTY
+drunkard/MS
+drunken/PY
+drunkenness/S
+drupe/SM
+Drury
+Drusana
+dry-cleaned
+dry-cleaning
+dry-eyed
+dry/DTYSGR
+dryad/SM
+Dryden
+dryer/MS
+Dryfsand
+dryish
+dryly
+dryness/SM
+drystone
+drywall/SDG
+DSL
+DStv
+DSTV
+DTP
+Du
+dual-purpose
+dual/S
+Duala
+dualism/MS
+duality/MS
+Duane
+dub/RGSD
+Dubai/M
+dubbed/c
+dubbeltjie
+dubbin/MS
+dubbing/M
+Dube
+dubiety/MS
+dubious/PY
+dubiousness/S
+Dublin/M
+Dubrovnik
+dubs/c
+Dubuque
+ducal
+ducat/SM
+duchess/SM
+duchy/MS
+duck-billed
+duck/JMDSZG
+duckbill/MS
+ducker/M
+duckling/SM
+duckpins
+duckpond
+duckweed/SM
+ducky/MTS
+duct/FMDSG
+ducted/IC
+ductile
+ductility/MS
+ductless
+ducts/IC
+ductwork/M
+dud/MS
+dude/MS
+dudgeon/MS
+Dudley/M
+Dududu
+Duduza
+due/PSoM
+duel/DJMRGS
+duellist/MS
+duenna/SM
+duet/SDMG
+duff/MDSRG
+duffel/M
+Duffield
+Duffy
+dug-out
+dug/S
+dugout/MS
+duh
+Duinendal
+Duisburg
+Duiwelskloof
+Duiwelskop
+Duiwenhoks
+Dukathole
+duke/SM
+dukedom/SM
+Dukuduku
+Dukuza
+dulcet/Y
+dulcify
+dulcimer/MS
+dull/DPTGSY
+dullard/SM
+Dulles
+Dullstroom
+Duluth
+duly/U
+Dumabenshiya
+Dumas
+dumb/TYDGP
+Dumbarton/M
+dumbbell/SM
+Dumbe
+dumbfound/SDG
+dumbfounder
+dumbness/S
+dumbstruck
+dumdum/SM
+Dumfries/M
+dummy/SDGM
+Dumont
+dump/D2RGSZ
+Dumphries
+dumpie
+dumpiness/S
+dumpling/MS
+Dumpty
+dumpy/TPS
+dun/DTGS
+Dunbar/M
+Dunbartonshire/M
+Duncan/M
+Duncanville
+dunce/MS
+Dundee/M
+dunderhead/MS
+Dundonald
+dune/MS
+Dunedin/M
+Dunfermline/M
+dung-beetle
+dung/GSMD
+Dungannon/M
+dungaree/MS
+dungeon/MGDS
+dunghill/SM
+Dungu
+Dunham
+Dunhill
+dunk/DGS
+Dunkeld
+dunker/M
+Dunkirk/M
+Dunlap
+Dunlin
+Dunmadeley
+Dunn/M
+Dunne
+dunno/M
+Dunnottar
+Dunoon
+Dunsevern
+Dunstable
+Dunstan
+Dunswart
+Dunusa
+Dunvegan
+Dunveria
+Dunwoody
+duo/SM
+duodecimal/S
+duodena
+duodenal
+duodenum/M
+duologue/M
+duopoly/3M
+dupe/DRSMG
+dupion/M
+duple
+duplex/DSMG
+duplexer/M
+duplicability/M
+duplicate/VSBGNnD
+duplicated/A
+duplicates/A
+duplicating/A
+duplication/MAS
+duplicator/MS
+duplicitous
+duplicity/SM
+Dupont
+durability/SM
+durable/PYS
+Duracell/M
+durance/M
+duration/MS
+Durban/M
+Durbanville
+Durbell
+duress/SM
+Durex
+Durham/M
+during
+Durmail
+Durmonte
+Durnacol
+Durrheights
+Durrheim
+durst
+durum/SM
+Dusenberg
+Dushanbe/M
+dusk/MDGSZ2
+duskiness/S
+dusky/TP
+Düsseldorf
+dust-up
+dust/DzpRGSZM2
+dustbin/SM
+dustcart/M
+Dustin
+dustiness/S
+dusting/M
+dustman/M
+dustmen/M
+dustpan/SM
+dusty/TP
+Dutch/m5
+Dutchwomen/M
+duteous/Y
+dutiful/U
+dutifulness/S
+Dutoiti
+duty-bound
+duty-free
+duty/7MjS6
+Dutyini
+duvet/MS
+Duxberry
+duxes
+Duxford/M
+Duynefontein
+DVD/SM
+Dvorak
+Dvorák/M
+dwaal
+Dwaalboom
+dwarf/DGMS
+Dwarfgoby
+dwarfish
+dwarfism/MS
+dwarfness
+Dwarsberg
+Dwarskloof
+dwarves
+dwell/RJSG
+dwelling/M
+dwells/I
+dwelt/I
+Dweshula
+Dwight
+dwindle/GDS
+DWP/M
+Dy
+dyad/SMW
+Dyasonsklip
+dybbuk/MS
+dybbukim
+dye/JGRM7DS
+dyeing/M
+dyestuff/MS
+Dyfed
+Dyfed-Powys
+dying/U
+dyke/MS
+Dylan/M
+dynamic/YS
+dynamical
+dynamics/M
+dynamism/MS
+dynamite/MDRSG
+dynamo/MS
+dynasty/MWS
+dyne/M
+dysentery/M
+dysfunction/MoS
+dysfunctional
+dyslectic/S
+dyslexia/SM
+dyslexic/YS
+dyspepsia/SM
+dyspeptic/S
+dysprosium/M
+Dysselsdorp
+dystopia/M
+dystrophy/M
+Dyula
+DZ
+Dzanani
+Dzimauli
+Dzongkha
+Dzumeri
+e
+e'en
+e'er
+e-commerce
+e-mail/MSGD
+e.coli
+e.g.
+e.m.f.
+ea
+each
+eager/MYP
+eagerer
+eagerest
+eagerly/c
+eagerness/S
+eagle-eyed
+eagle/MDGS
+Eagleray
+eaglet/MS
+Ealham
+Ealing
+ear-piercing
+ear-splitting
+ear-stud/MS
+ear/DMYS6
+earache/MS
+eardrum/MS
+earful/MS
+earl/MS2
+earldom/MS
+earliness/S
+earlobe/S
+Earlsfield
+early/TPS
+earmark/DJSG
+earmuff/SM
+earn/DTGSRJ
+earned/U
+earnest/PY
+earnestness/S
+earning/M
+earphone/MS
+earpiece/S
+earplug/MS
+earring/MS
+earshot/M
+earth-shattering
+earth/MGZY2D
+earthbound
+earthed/U
+earthen
+earthenware/SM
+earthiness/S
+earthliness/U
+earthling/SM
+earthly/PT
+earthmen
+earthmover/M
+earthmoving
+earthquake/MS
+earthshaking
+earthward/S
+earthwork/SM
+earthworm/SM
+earthy/TP
+earwax/M
+earwig/SMGD
+ease/UEM
+eased/E
+easel/MS
+easement/SM
+easer/M
+eases/E
+easily/U
+easiness/S
+easing/M
+east-north-east
+east-south-east
+east/GM
+East/RM
+eastbound
+Eastbourne/M
+Eastbury
+Eastcliff
+Eastdene
+EastEnders
+Easter/Y
+easterly/S
+Eastern
+eastern/R
+easternmost
+Eastertide
+Eastfield
+Eastgate
+Easthampton
+easting/M
+Eastlake
+Eastland
+Eastleigh
+Eastman
+Eastridge
+Eastvale
+Eastward/S
+eastward/S
+Eastwolds
+Eastwood
+easy-going
+easy-peasy
+easy/PTY
+easygoing/P
+eat/GcS
+eaten/Uc
+eater/cM
+eaters
+eatery/SM
+eating/M
+Eaton/M
+Eatonside
+eave/MS
+eavesdrop/GRDS
+eBay/M
+ebb/DGS
+EBCDIC
+Ebende
+Ebenhaeser
+eBhayi
+Ebhotwe
+Ebilanyoni
+Ebola
+ebony/SM
+Ebrahim
+ebullience/MS
+ebullient/Y
+Ebumnandini
+EC
+eccentric/YSM
+eccentricity/MS
+Eccles
+Ecclesiastes
+ecclesiastic/YMS
+ecclesiastical
+ecclesiasticism
+ecclesiology/w3
+ECG
+echelon/SMd
+Echibini
+echinoderm/MS
+Echinodermata
+echo's
+echo/DGA
+echoes/A
+echoic
+echolocation/MS
+éclair/MS
+éclat/M
+eclectic/YS
+eclecticism/SM
+eclipse/MWDGS
+ecliptic/MS
+eclogue/MS
+ecocide/MS
+ecoclimate/MS
+Ecole
+ecology/3MwS1
+Econ.
+econometric/S
+econometricians
+econometrics/M
+economic/S
+economical/UY
+economics/M
+economy/wqQ9s38M1-WS
+ecosystem/MS
+ecru/M
+ecstasy/SM
+ecstatic/YS
+ectopic
+ectoplasm/M
+Ecuador/M
+Ecuadoran
+Ecuadorian
+ecumenical/Y
+ecumenicism/MS
+ecumenicist/SM
+ecumenism/MS
+ecumenist/MS
+eczema/MS
+eczematous
+Ed
+ed.
+Edam
+Eddie
+eddy/DMGS
+Edelweiss
+edelweiss/M
+Eden/M
+Edenburg
+Edendale
+Edenhill
+Edenhoogte
+Edenvale
+Edenville
+Edgar/SM
+Edgardale
+Edgbaston
+edge/DGZpRMSJ
+Edgemead
+Edgerton
+Edgewater
+edgeways
+edgewise
+Edgewood
+edginess/S
+edging/M
+edgy/TPY
+edibility/SM
+edible/PS
+edibleness/S
+edict/MS
+edification/M
+edifice/SM
+edified/U
+edify/DGNRnS
+edifying/U
+Edinburgh/M
+Edison
+edit/XSdN7
+editable/U
+edited/AUF
+Edith
+editing/FA
+edition/M
+Editor
+Editor-At-Large
+editor/FMS
+editorial/8Qs39YS
+editorialist
+editorship/MS
+edits/FA
+Edleen
+Edmonton/M
+Edmund
+Edmundsbury
+Edna
+Edness
+Edonqaba
+EDP
+Edrayini
+eds/F
+EDT
+Eduard
+Eduardo/M
+educ/NVxn
+educability/SM
+educable/S
+educate/iDhGBS
+educated/fUAc
+educates/A
+educating/A
+education/FMSo
+educational/3
+educationalist
+educator/MS
+educe/G7SDN
+eduction/M
+edutainment/MS
+Eduwin
+Edward/SM
+Edwardian/MS
+Edwin
+Edwina
+EEC
+EEG
+Eel-barbel
+Eel-catfish
+eel/SM
+eelgrass/M
+Eendekuil
+Eendrag
+Eensaam
+Eenstok-steekvis
+EEOC
+eerie/T
+eerily
+eeriness/SM
+Eerstegoud
+Eerstemyn
+Eersterus
+Efaye
+efface/LSDG
+effaceable/I
+effacer/M
+effect/MDGvuSV
+effective/PIY
+effectiveness/SI
+effector/MS
+effectual/IPY
+effectuate/DSNG
+effectuation/M
+effeminacy/SM
+effeminate/YS
+effendi/MS
+efferent/SY
+effervesce/DSG
+effervescence/SM
+effervescent/Y
+effete/YP
+effeteness/S
+efficacious/IPY
+efficacy/SIM
+efficiency/SIM
+efficient/IY
+Effie/M
+effigy/SM
+effloresce
+efflorescence/MS
+efflorescent
+effluence/MS
+effluent/MS
+effluvia
+effluvium/M
+efflux/NM
+effort/pMS
+effortless/PY
+effortlessness/S
+effrontery/SM
+effulgence/SM
+effulgent
+effuse/NVDGvuSX
+effusion/M
+effusive/P
+effusiveness/S
+Efik
+EFT
+EGA/M
+egad
+Egagasini
+egalitarian/S
+egalitarianism/MS
+Egan/M
+Egbert
+Egerton
+egg/DMGS
+eggbeater/SM
+eggcup/SM
+egger/M
+egghead/MSDi
+eggnog/SM
+eggplant/SM
+eggshell/MS
+egis's
+eglantine/MS
+ego/SM
+egocentric/YS
+egocentricity/SM
+egoism/MS
+egoist/1MwWS
+Egoli
+egomania/MS
+egomaniac/MS
+Egoso
+egotism/SM
+egotist/WSMw1
+egregious/YP
+egregiousness/S
+egress/DSMG
+egret/SM
+Egugwini
+Egypt/M
+Egyptian/S
+Egyptology
+eh
+Ehashini
+Ehewu
+Ehrlich/M
+Ehrlichpark
+EiC
+Eichmann
+Eid
+eider/SM
+eiderdown/MS
+eidetic
+Eiffel
+eigenfunction/MS
+eigenstate/S
+eigenvalue/MS
+eigenvector/MS
+eight/ZHMS
+eighteen/MSH
+eightpence
+eighty-eight/H
+eighty-first/S
+eighty-five/H
+eighty-four/H
+eighty-nine/H
+eighty-one
+eighty-onefold
+eighty-second/S
+eighty-seven/H
+eighty-six/H
+eighty-three/H
+eighty-two
+eighty-twofold
+eighty/HMS
+Eikefontein
+Eikenbosch
+Eikendal
+Eikenhof
+Eikepark
+Eiland
+Eileen
+eina
+Eindhoven
+Einstein/M
+Einsteinian
+einsteinium/M
+Eire/M
+Eisenhower
+eish
+Eisleben
+eisteddfod/MWS
+eisteddfodau
+either
+ejaculate/nDGNyS
+ejaculation/M
+eject/DSVG
+ejecta
+ejection/SM
+ejector/MS
+Ekajuk
+Ekandustria
+Ekangala
+eke/GDS
+EKG
+Ekklesia
+Eksteenfontein
+Ektachrome
+Ekukhanyeni
+Ekulindeni
+Ekumanazeni
+Ekuphakameni
+Ekuphuleni
+Ekuphumleni
+Ekuthuleni
+Ekuvukeni
+Ekwendeni
+El
+elaborate/DPVnSNYG
+elaborateness/S
+elaboration/M
+elaborators
+Elaine
+Elamite
+élan/M
+eland/MS
+Eland/S
+Elandia
+Elandsdoring
+Elandsdrif
+Elandsfontein
+Elandsgoud
+Elandshaven
+Elandsheuwel
+Elandshoek
+Elandshoogte
+Elandskop
+Elandskraal
+Elandslaagte
+Elandspark
+Elandspoort
+Elandsrand
+Elandsridge
+Elandsvlei
+Elangeni
+elans
+elapse/DSG
+Elarduspark
+elastic/Q8YS
+elasticated
+elasticity/SM
+elastodynamics
+elastomer/M
+elate/SDhNniG
+elated/P
+elater/M
+elation/M
+Elba
+Elbe
+Elbert
+elbow-work
+elbow/GDMS
+elbowroom/MS
+Elcedes
+elder/YS
+elderberry/SM
+elderflower
+elderly/PS
+eldest
+Eldoglen
+Eldon/M
+Eldopark
+Eldorado
+Eldoradopark
+Eldoraigne
+Eleanor
+elect/VBGDuvS
+electable/U
+elected/UA
+electing/A
+election's
+election/A
+electioneer/GSD
+elections
+elective/PS
+elector/SM
+electoral/Y
+electorate/MS
+Electra
+Electrapark
+electress/M
+electric/SY
+electrical/P
+electrician/SM
+electricity/SM
+electrification/M
+electrify/DNRGnS
+electro/M
+electrocardiogram/MS
+electrocardiograph/ZSM
+electrocardiography/SM
+electrochemical/Y
+electrocute/DSG
+electrocution/MS
+electrode/MS
+electrodynamic/YS
+electrodynamics/M
+electroencephalogram/SM
+electroencephalograph/MSWZ
+electroencephalography/MS
+electrologist/MS
+electroluminescent
+electrolyse/WDGS
+electrolysis/M
+electrolyte/1MS
+electromagnet/MWS1
+electromagnetism/MS
+electromechanical
+electromechanics
+electromotive
+electromyographic/Y
+Electron
+electron/M1WS
+electronegative
+electronic/S
+electronics/M
+electrophoresis/M
+electrophorus/M
+electroplate/GSD
+electroscope/MSW
+electroshock/DMGS
+electrostatic/S
+electrostatics/M
+electrotherapist/MS
+electrotherapy
+electrotype/MDGS
+electrotypers
+electroweak
+elects/A
+eleemosynary
+elegance/ISM
+elegant/YI
+elegiac/S
+elegiacal
+elegy/SM
+element/MoS
+elemental
+elementary/PY
+Elena/M
+elephant/MS
+Elephantfish
+elephantiases
+elephantiasis/M
+elephantine
+elevate/SNnDG
+elevation/M
+elevator/MS
+eleven/HMS
+elevens/S
+Elf
+elf/M
+elfin/S
+Elfindale
+elfish
+Elgar/M
+Elgin
+Eli
+Elias
+elicit/dnS
+elicitation/M
+elide/DGNSX
+eligibility/ISM
+eligible/SIY
+eligibly/I
+Elijah
+Eliliba
+Elim
+eliminate/NDVSGn
+elimination/M
+eliminator/MS
+Eliot
+Elisabeth/M
+Elise/M
+Elisha/M
+elision/M
+Elite
+elite/M3S
+eliteness
+Elitha
+elitism/SM
+elixir/MS
+Elizabeth/M
+Elizabethan/S
+elk/MS
+Elkhart
+ell/MS
+Ella
+Elladoone
+Ellaton
+Elle
+Ellen/M
+Ellesmere
+Ellie
+Ellington
+Elliot
+Elliotdale
+Elliott
+ellipse/WMS
+ellipsis/M
+ellipsoid/SM
+ellipsoidal
+ellipsometer/MS
+ellipsometry
+elliptic/Y
+elliptical/S
+ellipticity/M
+Ellis
+Ellison
+Ellisras
+Ellsworth
+Ellwood/M
+elm/SM
+Elmer
+Elmeston
+Elmhurst
+Elmira
+Elmsford
+Elnor
+elocution/3MSy
+elocutionist
+elodea/S
+Eloff
+Eloffsdal
+Eloise
+elongate/DnSGN
+elongation/M
+Elonwabeni
+elope/LSDG
+eloper/M
+eloquence/SM
+eloquent/YI
+Elricht
+Elroy
+Elsburg
+else/M
+Elsenburg
+elsewhere
+Elsie
+Elsieshof
+Elspark
+Elton/M
+Eltonhill
+eluate/SM
+elucidate/NVSnDG
+elucidation/M
+elude/GvuSVD
+Elugelweni
+Elukwatini
+Elundini
+elusive/P
+elusiveness/S
+elute/DG
+elution/M
+elven
+elver/MS
+elves/M
+Elvira
+Elvis/M
+elvish
+Elwood/M
+Ely/M
+Elysée/M
+elysian
+Elysium
+em/M
+Emabheleni
+Emabondvweni
+Emachobeni
+emaciate/NnDGS
+emaciation/M
+Emacs/M
+Emafusini
+Emagabeni
+email/MDGS
+Emakuleni
+Emakwezeni
+Emalahleni
+emanate/nDVSGN
+emanation/M
+emancipate/SDnyGN
+emancipation/M
+emancipator/SM
+Emantlaneni
+Emanuel
+Emanyiseni
+Emapulazini
+emasculate/SnDNG
+emasculation/M
+Emazabekweni
+Embalenhle
+Embali
+embalm/GRDS
+embank/DLSG
+embarcadero
+embargo/MDG
+embargoes
+embark/AEDSG
+embarkation/SME
+embarrass/DSkGLh
+embarrassed/U
+embassy/MS
+embattle/SGD
+embed/DJSG
+embeddable
+embedder
+embedding/M
+embellish/SLGD
+embellished/U
+embellisher/M
+ember/MS
+Emberton
+embezzle/LRSDG
+embitter/dSL
+emblazon/LdS
+Emblem
+emblem/MSW
+embodied/A
+embodier/M
+embodies/A
+embody/EDSLG
+embodying/A
+embolden/Sd
+embolism/MS
+Embonisweni
+embosom
+emboss/DRSG
+embouchure/MS
+embower/dS
+embrace/DGkS
+embraceable
+embracer/M
+embracive
+embrasure/MS
+embrittle
+embrocation/SM
+embroider/drSZ
+embroidery/MS
+embroil/SLDG
+embryo/MS
+embryology/3wMS
+embryonic
+Embuyeni
+emcee/SGM
+Emdeni
+Emdumezulu
+emend/nD7GS
+emendation/M
+emender
+emerald/MS
+emerge/DASG
+emergence/MSZ
+emergency/MS
+emergent/S
+emerita
+emeritae
+emeriti
+emeritus
+Emerson
+emery/MS
+emetic/S
+emf/S
+Emfihlweni
+Emfundweni
+Emgulatshani
+emigrant/MS
+emigrate/SDGNn
+emigration/M
+émigré/S
+Emil/M
+Emile/ZM
+Emilio/M
+eminence/MS
+eminent/Y
+emir/MS
+emirate/MS
+Emirates/M
+emissary/SM
+emission/M
+emissivity/MS
+emit/RGNDXS
+emittance/M
+Emjindini
+Emlanjeni
+Emma
+Emmanuel
+Emmarentia
+Emmaus
+Emmett/M
+emollient/S
+emolument/MS
+Emona
+Emondlo
+Emory
+emote/SDxvVG
+emotion/MpS
+emotional/Q8
+emotionalism/SM
+emotionality/M
+emotionally/Uc
+Emoyeni
+empanelled
+empanelling
+Empangela
+Empangeni
+empathetic/Y
+empathetical
+empathic
+empathy/MQS8W
+emperor/MS
+emphases/c
+emphasis's/c
+emphasis/CQrS9M8d
+emphasise/cSAGD
+emphasize/Ac
+emphasized/c
+emphasizes/A
+emphasizing/A
+emphatic/Y
+emphysema/SM
+emphysematous
+empire/w1MSW
+empiric/M3
+empiricism/SM
+empiricist
+emplace/L
+emplane/DSG
+employ/BRGLDS
+employability/M
+employable/SU
+employed/AfU
+employee/MS
+employing/A
+employment's/Uf
+employment/AUf
+employments/f
+employs/A
+emporia
+emporium/SM
+empower/SdL
+empress/SM
+empt/vDV2GSZz
+emptier/M
+emptiness/S
+emption/MS
+emptor/M
+empty-handed
+empty-headed
+empty/STPGD
+Empumalanga
+Empumeni
+Empunga
+Empungeni
+empyrean/MS
+ems
+Emthembeni
+emu/MS
+emulate/vNnVGDS
+emulation/M
+emulator/MS
+emulsification/M
+emulsify/RNGDnS
+emulsion/SM
+Emzinoni
+en/M7
+enable/RGDS
+enablement
+enact/LSDG
+enacted/A
+enacting/A
+enactment/A
+enacts/A
+enamel/SDRGJM
+enamelware/MS
+enamelwork
+enamour/DSG
+enc
+encamp/GLSD
+encapsulate/DSNnG
+encapsulation/M
+encase/LDSG
+encephalitic
+encephalitides
+encephalitis/M
+encephalographic
+encephalopathy/M
+enchain/SDG
+enchant/ESGLD
+enchanter/SM
+enchanting/Y
+enchantress/SM
+enchilada/SM
+encipher/dS
+encipherer/M
+encircle/SDLG
+encl
+enclave/MS
+enclose/SGD
+enclosed/U
+enclosure/MS
+encode/BDRSGJ
+encomium/MS
+encompass/DSG
+encore/DSG
+encounter/dS
+encourage/DLkSG
+encourager/M
+encroach/DLSG
+encroacher/M
+encrust/GSNnD
+encrustation/M
+encrypt/DGS
+encrypted/U
+encryption/MS
+encumber/ESd
+encumbered/U
+encumbrance/MS
+encyclical/MS
+encyclopaedia/SM
+encyclopaedic
+encyst/DLSG
+end-stopped
+end-user/S
+end/MpRSGJD
+endanger/dLS
+endear/GLDSk
+endeavour/RSDMG
+endemic/SY
+endemicity
+endgame/M
+Endicott
+ending/M
+endive/SM
+endless/PY
+endlessness/S
+Endlovini
+endmost
+endnote/MS
+endocrine/S
+endocrinology/3MS
+endogamous
+endogamy/M
+endogenous/Y
+endomorphism/SM
+endoplasmic
+endorphins
+endorse/LRGSD
+endoscope/WZMS
+endoscopy/SM
+endosperm/M
+endothelial
+endothermic
+endow/DSLG
+endpapers
+endpoint/SM
+endue/GSD
+endungeoned
+endurable/U
+endurably/U
+endurance/SM
+endure/DSGlk
+enduring/P
+endways
+enema/MS
+enemy/SM
+energetic/YS
+energetics/M
+energised/U
+energized/U
+energy/Q-Mqs89S
+enervate/NnGDVS
+enervation/M
+enfeeble/LSGD
+Enfield
+enfilade/SMDG
+enfold/SDG
+enforce/BLhRSDGb
+enforceability/M
+enforceable/U
+enforced/UA
+enforcer/AS
+enforces/A
+enforcible/U
+enforcing/A
+enfranchise/RLDGS
+enfranchised/E
+enfranchises/E
+enfranchising/E
+enfranchize/LRSGD
+engage/ELDSG
+engaged/A
+engagement/A
+engages/A
+engaging/A
+engagingly
+Engcobo
+Engel/S
+Engen
+engender/dS
+engine/MDS
+engineer/MDGS
+engineering/M
+England/M
+Englander/S
+Englewood
+English-speaker
+English-speaking
+English/5Mm
+Engonyameni
+engorge/LGSD
+engrained
+engram/M
+engrammatic
+engrave/DGRJS
+engraving/M
+engross/GkLhSD
+engrosser/M
+engulf/LDGS
+enhance/LSDRG
+enhanceable
+enharmonic
+Enhlalakahle
+Enhlanzeni
+Enid/M
+enigma/MSW1
+Enjabulweni
+enjambment/MS
+enjoin/DGS
+enjoinder
+enjoy/BlDLSG
+enjoyable/P
+Enkanyezi
+Enkelbult
+Enkulekweni
+enlarge/RLSDG
+enlargeable
+enlighten/dLS
+enlightened/U
+enlightening/U
+enlist/SLDG
+enlisted/A
+enlistee/MS
+enlister/M
+enlisting/A
+enlistment/A
+enlists/A
+enliven/LdS
+enmesh/LSDG
+enmity/SM
+Ennerdale
+Ennis
+ennoble/LSDG
+ennobler/M
+ennui/MS
+Enoch
+Enon
+enormity/SM
+enormous/PY
+enormousness/S
+enough
+Enqoleni
+enqueue/DS
+enquire/SRkZDG
+enquiry/S
+enrage/DSG
+enrapture/GSD
+enrich/LSGD
+enricher/M
+Enrico
+enrobed
+enrol/RGLDS
+enrollee/MS
+Enron
+ensconce/SGD
+Enselsrust
+ensemble/SM
+enshrine/LSDG
+enshroud/SGD
+ensign/SM
+ensilage/SDGM
+Ensizwakazi
+enslave/GDLRS
+ensnare/DLSG
+ensue/GSD
+ensure/DSRG
+Entabeni
+entail/GSLRD
+entangle/EDLSG
+entangler/EM
+entanglers
+entente/MS
+enter/dSr
+entered/A
+entering/A
+enteritides
+enteritis/MS
+enterprise/RMkGS
+enterprising/U
+enters/A
+entertain/DLRGkS
+enthalpy/SM
+enthral/LSGD
+enthrone/DLSG
+enthuse/GSD
+enthusiasm/SM
+enthusiast/MWS1
+enthusiastic/UY
+entice/RGLJDSk
+entire/Y
+entirety/MS
+entitle/DLSG
+entity/SM
+entomb/LSDG
+entomology/wSM3
+entourage/MS
+entr'acte/S
+entrails
+entrain/DLGS
+entrainer/M
+entrammel/DSG
+entrance/LGkMDS
+entranceway/M
+entrant's
+entrant/A
+entrants
+entrap/GLDS
+entreat/GkSZD
+entreaty/MS
+entrechat/S
+entrecôte/MS
+entrée/S
+entremets
+entrench/LDSG
+entrepôt/S
+entrepreneur/MS
+entrepreneurial
+entrepreneurship/M
+entropy/WMS
+entrust/DGS
+entry's
+entry/AS
+entryway/MS
+Entshonalanga
+Entshongwe
+Entumbane
+entwine/GSD
+enumerable
+enumerate/SAGND
+enumeration/SM
+enumerative
+enumerator/MS
+enunciable
+enunciate/DSGNn
+enunciation/M
+enureses
+enuresis/M
+envelop/dLrS
+envelope/MS
+envenom/dS
+enviable/P
+envied/U
+envious/PY
+enviousness/S
+environ/LdS
+environment/o
+environmental/3
+environmentalism/MS
+environmentalist
+Envis
+envisage/SDG
+envision/SDG
+envoy/SM
+envy/lSG7DRMk
+Enyokeni
+enzymatic/Y
+enzyme/WSM
+enzymology/M
+Eocene
+eohippus/M
+eolith/W
+EPA
+epaulette/SM
+ephedrine/MS
+ephemera/MoS
+ephemeral/S
+ephemerides
+ephemeris/M
+Ephesian/S
+Ephesus
+Ephraim
+epic/MYS
+epicentre/MS
+epicure/MS
+epicurean/S
+Epicurus
+epicycle/SWw1M
+epicycloid/M
+epidemic/MYS
+epidemiology/SMw31
+epidermal
+epidermic
+epidermis/SM
+epidural
+epigenetic
+epiglottis/MS
+epigram/SM
+epigrammatic
+epigraph/MSZw
+epigrapher/M
+epigraphy/SM
+epilepsy/SM
+epileptic/S
+epilogue/MSDG
+epinephrine/SM
+epiphany/SM
+epiphenomena
+epiphenomenon
+episcopacy/MS
+episcopal/Y
+episcopalian
+episcopate/SM
+episode/M1SW
+epistemic
+epistemology/wM1
+epistle/SM
+epistolary/S
+epitaph/SM
+epitaxial
+epitaxy/Mo
+epithelial
+epithelium/SM
+epithet/MSW
+epitome/qsQSM89-
+Eplangweni
+epoch/Mo
+epochal
+epochs
+eponymous
+epoxy/GDS
+Eppindust
+Epping
+epsilon/MS
+Epsom
+Epstein
+Epworth
+Eqebe
+equability/SM
+equable/PY
+equal/qsQ-89DGYS
+equalise/J
+equalised/U
+equalising/U
+equality/ISM
+equalized/U
+equally/UF
+equals/F
+equanimity/MS
+equatable
+equate/BnDGSN
+equation/M
+equator/MS
+equatorial/S
+equerry/MS
+Equestria
+equestrian/S
+equestrianism/MS
+equestrienne/MS
+equiangular
+equidistant/Y
+equilateral/S
+equilibrate/NDSG
+equilibration/M
+equilibria
+equilibrium/EMS
+equine/S
+equinoctial/S
+equinox/SM
+equip/GASD
+equipage/MS
+equipartition/M
+equipment/MS
+equipoise/SMDG
+equipotential
+equipped/U
+equiproportional/Y
+equiproportionality
+equiproportionate
+equispaced
+equitable/PY
+equitably/I
+equitation/MS
+equity/MSI
+equiv
+equivalence/GMDS
+equivalent/SY
+equivocal/PY
+equivocally/U
+equivocalness/S
+equivocate/DSnNG
+equivocation/M
+equivocator/MS
+Equthubeni
+Equuleus
+Eqwabe
+er/ae
+era/MS
+eradicable/I
+eradicate/SVnGND
+eradication/M
+eradicator/MS
+eras/rgS7d
+erase
+Erasmia
+Erasmus
+Erasmuskloof
+Erasmusrand
+erasure/SM
+Eratosthenes
+erbium/M
+ere
+erect/DYPGS
+erected/A
+erecter
+erectile
+erection/SM
+erectness/S
+erector/MS
+eremite/SM
+erf
+erg/SM
+ergo
+ergodic
+ergodicity/M
+ergonomic/U
+ergonomically
+ergonomics/M
+ergophobia
+ergosterol/MS
+ergot/MS
+Erhard
+Eric/M
+Erica
+Erich
+Erickson
+Ericson
+Ericsson/M
+Erie
+Erijaville
+Erik/M
+Erika/M
+Eriksson/M
+Erin
+Erinvale
+Eritrea/M
+erk
+Erlang/M
+Erlenmeyer/M
+ERM
+Ermelo
+ermine/MDS
+Ernest
+Ernestine
+Ernestville
+Ernie
+Ernst
+erode/NVSxXuDbG
+erogenous
+Eros
+erosible
+erosion/M
+erosive/P
+erotic/SY
+erotica/M
+eroticism/MS
+err/DGkS
+errancy/MS
+errand/SM
+errant/I
+errantly
+errantry/M
+errants
+errata/MSW1
+erratic/S
+erratum/SM
+erring/UY
+Errol
+erroneous/YP
+error/SM
+ersatz/S
+Erse
+Erskine/M
+erst
+erstwhile
+eructation/SM
+erudite/Y
+erudition/MS
+erupt/DGVvS
+eruption/MS
+Ervin
+Erwin
+erysipelas/MS
+erythrocyte/MS
+Es
+Esau
+escadrille/M
+escalate/CNSGnD
+escalation/MC
+escalator/MS
+escallop/MS
+escalope/MS
+escapable/I
+escapade/MS
+escape/DL3SG
+escapee/MS
+escaper/M
+escapism/SM
+escapology
+escarpment/SM
+eschatology/M
+eschew/DGS
+Escolar
+Escombe
+escort/GMDS
+escorted/U
+escritoire/MS
+escrow/GSDM
+escudo/MS
+escutcheon/DMS
+Esdabrook
+Eshowe
+Esibongile
+Esidakeni
+Esidonini
+Esidumbini
+Esidunjini
+Esifushane
+Esigedleni
+Esigodini
+Esikhawini
+Esikhobeni
+Esimfakaneni
+Esiphambanweni
+Esitezi
+Esizameleni
+Eskimo/S
+Eskom
+esoteric/Y
+esoterica
+esp/Z
+espadrille/MS
+Espagnol
+espalier/DGSM
+especial/Y
+Esperanto
+espionage/MS
+Esplanade
+esplanade/SM
+Espoo
+Esposito/M
+espousal/MS
+espouse/DSRG
+espresso/SM
+esprit/MS
+espy/SGD
+esquire/SM
+essay/G3MRSD
+Esselenpark
+Essen/M
+essence/MS
+essential/3YSP
+essentialist
+Essenwood
+Essex/M
+Essexvale
+Essexwold
+Essopville
+Est
+est/R
+establish/ESGLD
+established/A
+establisher/M
+establishes/A
+establishing/A
+establishment/A
+Estadeal
+Estate
+estate/MS
+Estcourt
+esteem/EGSD
+Estella/M
+Estelle
+Estera
+Esterházy/M
+Esterpark
+Estes
+Esther
+estimable/P
+estimableness/I
+estimate/NcDnGfS
+estimated/A
+estimates/A
+estimating/A
+estimation's/c
+estimation/A
+estimative
+estimator/MS
+Eston
+Estonia/M
+Estonian
+estoppal
+estrange/LGDS
+estranger/M
+estuarine
+estuary/MS
+et
+ETA
+Etafuleni
+etalon
+etc.
+etcetera/MS
+etch/GRSJD
+etchant
+etching/M
+eternal/PY
+eternalness/S
+eternity/SM
+Etete
+Ethan
+Ethandokukhanya
+ethane/M
+ethanol/M
+Ethel
+Ethelred
+Ethembeni
+ether/8MQS
+ethereal/PY
+Ethernet/MS
+ethic/MY3S
+ethical/UY
+ethicalness/M
+ethicist
+Ethiopia/M
+Ethiopian/S
+Ethiopic
+ethnic/YS
+ethnicity/MS
+ethnocentric
+ethnocentrism/MS
+ethnographer/S
+ethnography/WM
+ethnology/wS3M
+ethnomethodology
+Etholeni
+ethology/3MSw
+ethos/MS
+Ethubelihle
+Ethwathwa
+ethyl/MS
+ethylene/M
+etiquette/MS
+Etna
+Etruscan
+ETSI
+eTV
+etymology/S31wM
+EU
+eucalypti
+eucalyptus/MS
+Eucharist/MWS
+euchre/SDGM
+Euclid
+euclidean
+Eugene
+Eugenia
+eugenic/Y3S
+eugenicist
+eugenics/M
+eukaryote/S
+Euler/M
+eulogised/U
+eulogist/W
+eulogized/U
+eulogy/QMs839S
+Eunice
+eunuch/M
+eunuchs
+euphemism/MS
+euphemist/1SMW
+euphonious/Y
+euphonium/SM
+euphony/MS
+euphoria/SM
+euphoric/Y
+Euphrates
+Eurasia
+Eurasian
+Eureka
+eureka/S
+Eurekaville
+eurhythmics
+Euripides
+Euro
+Eurocentric
+Europa
+Europe/M
+European/Q-8MqS
+europium/M
+Euroscepticism
+Eurostar
+Eurydice/M
+Eurythmics
+Eustachian
+eustacy
+eustatic
+Euston/M
+eutectic
+euthanasia/MS
+Eva
+evacuate/nNVDGS
+evacuation/M
+evacuee/SM
+evadable
+evade/uRXSGDVvN
+evaluable
+evaluate/GADNS
+evaluated/U
+evaluation/MoS
+evaluational
+evaluative
+evaluator/SM
+Evander
+evanescence/MS
+evanescent
+evangelic/Y
+evangelical/S
+evangelicalism/MS
+Evangeline
+evangelise/GDS
+evangelism/SM
+evangelist/WMS
+evangelize/GDS
+Evans
+Evansdale
+Evanston
+Evansville
+evaporate/NGnvDVS
+evaporation/M
+evaporator/SM
+evasion/M
+evasive/P
+evasiveness/S
+Evaton
+eve/SyM
+Eveleigh
+Evelyn
+even-handed/Y
+even-handedness
+even/JPdYS
+evener
+evenest
+evening/M
+evenly/U
+evenness/S
+evensong/SM
+event/6SjMG
+eventful/P
+eventfully/U
+eventfulness/S
+Eventide
+eventide/SM
+eventual/Y
+eventuality/SM
+eventuate/DGS
+ever
+ever-changing
+ever-increasing
+Eveready
+Everest
+Everestpark
+Everett
+Everglades
+Everglen
+evergreen/S
+Everhart/M
+Everite
+everlasting/YP
+everliving
+evermore
+Eversdal
+Everton
+everybody/M
+everyday/P
+Everyman
+everyone/M
+everything
+everywhere
+evict/GSD
+eviction/MS
+evidence/MSDG
+evident/Y
+evidential/Y
+evil/TPSY
+evildoer/MS
+evildoing/MS
+evilness/S
+evince/DSG
+eviscerate/GSnDN
+evisceration/M
+evocable
+evocation/M
+evocative/P
+evoke/VNuvSGDn
+evolute/MS
+evolution/Sy3M
+evolutionary/Y
+evolutionism
+evolutionist
+evolve/GDS
+Ewe/G
+ewe/MRS
+Ewondo
+ex
+ex-communist/SM
+ex-partners
+ex-president
+ex-students
+ex-wife
+ex-wives
+exacerbate/NDGSn
+exacerbation/M
+exact/IYP
+exacted
+exacter/M
+exactest
+exacting/PY
+exaction/SM
+exactitude/ISM
+exactness/SI
+exacts
+exaggerate/vhDViSGNn
+exaggeration/M
+exaggerator/SM
+exalt/hSDRNnG
+exaltation/M
+exam/MS
+examinable/A
+examination/M
+examine/nRSDNG
+examined/AU
+examinees
+examines/A
+examining/A
+example/GMSD
+exampled/U
+exasperate/hSGkDNn
+exasperation/M
+Excalibur
+excavate/SDnNG
+excavation/M
+excavator/SM
+exceed/kSDG
+exceeder/M
+excel/SGD
+excellence/SMZ
+excellency/MS
+excellent/Y
+Excelsior
+excelsior/S
+except/DGxS
+exception/SM7
+exceptionable/U
+exceptional/P
+exceptionally/U
+excerpt/GSMD
+excerpter/M
+excess/DVvMGuS
+excessive/P
+exchange/RGSD
+exchangeable
+exchequer/MS
+excise/BXMDSGN
+excision/M
+excitability/MS
+excitable/P
+excitation/M
+excitatory
+excite/BRGNnLlDhSk
+excited/cU
+excites/c
+exciting/Uc
+exciton/M
+exclaim/RGDyS
+exclamation/MS
+exclude/DvuXVGSN
+excluder/M
+exclusion/My
+exclusive/SP
+exclusiveness/S
+exclusivity/SM
+Excom
+excommunicate/SDVGNn
+excommunication/M
+excoriate/DnSGN
+excoriation/M
+excrement/SM
+excremental
+excrescence/MS
+excrescent
+excreta
+excrete/DnGNyS
+excreter/M
+excretion/M
+excretory/S
+excruciate/SGDkN
+excruciation/M
+exculpate/SDNGny
+exculpation/M
+excursion/S3M
+excursionist
+excursive/PY
+excursiveness/S
+excursus/SM
+excusable/PI
+excusably/I
+excuse/RGlDS
+exec/MS
+execrable/PY
+execrate/VnDSNG
+execration/M
+executable/SM
+execute/RGxSDV
+execution/RSM
+executive/MS
+executor/MS
+executrices
+executrix/M
+exegeses
+exegesis/M
+exegete/MwW
+exegetic/S
+exemplar/MS
+exemplary/P
+exemplification/M
+exemplify/nRDSGN
+exempt/DGS
+exemption/SM
+exercise/RGBDS
+exercised/c
+exercises/c
+exercising/c
+exert/DGSc
+exertion/cSM
+Exeter/M
+exeunt
+exhalation/M
+exhale/NGnDS
+exhaust/bDkvuhGVS
+exhauster/M
+exhaustible/I
+exhaustion/SM
+exhaustive/P
+exhaustiveness/S
+exhibit/dSNVX
+exhibition/3MR
+exhibitionism/MS
+exhibitionist
+exhibitor/SM
+exhilarate/SGVkNDn
+exhilaration/M
+exhort/NnDGS
+exhortation/M
+exhorter/M
+exhumation/M
+exhume/nSGD
+exhumer/M
+exigence/SZ
+exigency/SM
+exigent/SY
+exiguity/SM
+exiguous
+exile/DGMS
+exist/FDSG
+existence/FMS
+existent/F
+existential/3Y
+existentialism/SM
+existentialist/W
+exit/SdM
+Exmoor/M
+exobiology/MS
+exocrine
+exodus/MS
+exogamous
+exogamy/M
+exogenous/Y
+exonerate/DGnSVN
+exoneration/M
+exorbitance/MS
+exorbitant/Y
+exorcise/SDG
+exorcism/SM
+exorcist/SM
+exorcize/DSG
+exoskeleton/MS
+exosphere/MS
+exothermic/Y
+exotic/PYS
+exotica
+exoticism/MS
+exp
+expand/DRBGNVuSXv
+expandability/M
+expanded/U
+expanse/bSGMD
+expansion/3My
+expansionism/SM
+expansionist
+expansiveness/S
+expatiate/SGNnD
+expatiation/M
+expatriate/SnGND
+expatriation/M
+expect/knS7NiGDh
+expectancy/SM
+expectant/YS
+expectation/Mo
+expectational
+expected/UY
+expectedness/U
+expectorant/S
+expectorate/DSnGN
+expectoration/M
+expedience/IZS
+expediency/SIM
+expedient/IY
+expedients
+expedite/RDSG
+expedition/MSy
+expeditious/PY
+expeditiousness/S
+expeditor's
+expel/nGSD7N
+expend/DGSV7uv
+expendable/S
+expended/U
+expender/M
+expenditure/MS
+expense/SGMD
+expensive/PIY
+expensiveness/SI
+experience/IDM
+experiences
+experiencing
+experiential/Y
+experiment/MRSGoNDn
+experimental/3
+experimentalism/M
+experimentalist
+experimentation/M
+expert/MDGSPY
+expertise/SM
+expertly/I
+expertness/S
+expiable/I
+expiate/SnyNGD
+expiation/M
+expiration/M
+expire/DNySZnG
+expired/U
+expiry/MS
+explain/ADSG
+explainable/U
+explained/U
+explainer/SM
+explanation/SM
+explanatory
+expletive/MS
+explicable/I
+explicate/DGNvSnV
+explication/M
+explicit/YI
+explicitness/SM
+explode/XvDuGNVRS
+exploded/U
+exploit/7nRSDGMV
+exploitation/M
+exploitative
+exploited/cUf
+explorable
+exploration/M
+explore/DGnRSNy
+explored/U
+explosion/M
+explosive/PS
+explosiveness/S
+expo/SM
+exponent/MS
+exponential/SY
+exponentiate/SnNGD
+exponentiation/M
+export/BnMDGNRS
+exportation/M
+exported/A
+exporting/A
+exports/A
+expos/drS
+expose/cDGSf
+exposé/SM
+exposed/U
+exposit/NXy
+exposited
+exposition/M
+expositor/SM
+expostulate/DSnGN
+expostulation/M
+exposure/McfS
+expound/RGDS
+express/GDSYvbXuNV
+expressed/U
+expresser/M
+expressibility/I
+expressible/IY
+expressibly/I
+expression/pM
+expressionism/MS
+expressionist/WS
+expressionless/Y
+expressionlessness
+expressive/IPY
+expressiveness/SI
+expropriate/DGnSN
+expropriation/M
+expropriator/MS
+expulsion/M
+expunge/DSG
+expunger/M
+expurgate/DGNnS
+expurgated/U
+expurgation/M
+exquisite/YP
+exquisiteness/S
+Ext
+ext
+extant
+extemporaneous/YP
+extemporaneousness/S
+extempore/SQ-89sq
+extend/iNxGVRShbXvuD
+extended/c
+extendedness/M
+extendibility/M
+extendible/S
+extending/c
+extends/c
+extensibility/M
+extensible/I
+Extension
+extension's
+extension/c
+extensive/P
+extensively/F
+extensiveness/S
+extensor/MS
+extent/MS
+extenuate/DNSGn
+extenuation/M
+exterior/YSM
+exterminate/NSDGn
+extermination/M
+exterminator/SM
+external/Q9qs8S-Y
+externalities
+extinct/V
+extinction/MS
+extinguish/R7SGD
+extinguishable/I
+extirpate/nSGDVN
+extirpation/M
+extol/SDG
+extoller/M
+extort/DSVG
+extorter/M
+extortion/RM3S
+extortionate/Y
+extortionist
+extra-curricular
+extra/S
+extracellular/Y
+extract/DGvVS7
+extraction/MS
+extractor/SM
+extracurricular/S
+extraditable
+extradite/DGS
+extradition/MS
+extragalactic
+extralegal/Y
+extralinguistic
+extramarital
+extramural
+extraneous/YP
+extraordinary/PSY
+extrapolate/DNnSGV
+extrapolation/M
+extrasensory
+extrasolar
+extraterrestrial/S
+extraterritorial
+extraterritoriality/SM
+extravagance/SM
+extravagant/Y
+extravaganza/SM
+extravehicular
+extravert's
+extrema
+extremal
+extreme/ST3PY
+extremeness/S
+extremis
+extremism/MS
+extremity/SM
+extricable/I
+extricate/SnGND
+extrication/M
+extrinsic/Y
+extroversion/MS
+extrovert/MGDS
+extrude/DSNXGV
+extruder/M
+extrusion/M
+exuberance/SM
+exuberant/Y
+exudate/M
+exudation/M
+exude/SnDG
+exult/NkSDGn
+exultant/Y
+exultation/M
+exurb/SM
+exurban
+exurbanite/MS
+exurbia/MS
+Exxon
+eye-catching
+eye-level
+eye-liner/MS
+eye-opener/MS
+eye-opening
+eye-shadow
+eye-teeth
+eye-tooth/M
+eye/GpRD6SMi
+eyeball/MS
+eyebrow/MS
+eyedropper/MS
+eyeful/MS
+eyeglass/SM
+eyelash/SM
+eyelet/SMd
+eyelid/SM
+Eyepeta
+eyepiece/MS
+eyesight/SM
+eyesore/SM
+eyewash/SM
+eyewitness/MS
+Eyre
+eyrie's
+Ezakheni
+Ezamokuhle
+Ezekiel
+Ezenzeleni
+Ezibayeni
+Ezibeleni
+Ezidulini
+Ezifundeni
+Ezihlabathini
+Ezihlabatini
+Ezimangweni
+Ezimbokodweni
+Ezimfabeni
+Ezimpisini
+Ezimpohlo
+Ezimpondweni
+Ezindlovini
+Ezra
+f-stop/S
+f/73
+fa/M
+FAA
+Faber/M
+Fabergé/M
+Fabians
+fable/DGMS
+fabler/M
+fabric/MNnS
+fabricate/KNGnDS
+fabrication/KM
+fabricator/SM
+Fabricia
+fabulous/YP
+façade/MS
+face's/K
+face-saver
+face-saving
+face-to-face
+face/xSoJNnMDpG
+facecloth/S
+faced/eKAC
+facelessness
+facelift
+faceplate/M
+facer/MKC
+faces/eKAC
+facet/dMS
+facetious/PY
+facetiousness/S
+facial/S
+facile/PY
+facilitate/DNGnVyS
+facilitation/M
+facilitator/SM
+facility/MS
+facing/M
+facsimile/MDS
+facsimileing
+fact/SMyY
+faction/M
+factionalism/MS
+factious/YP
+factitious
+facto
+factoid/S
+factor/q8Sd+MtQ-
+Factoria
+factorial/MS
+factoring/SM
+factory/SM
+factotum/MS
+Factreton
+factual/YP
+factuality/M
+faculty/MS
+fad/dMrS
+faddish
+faddist/MS
+fade/hS
+fadeout
+Fadimehang
+fading/M
+faecal
+faeces
+faerie/M
+Faeroe/M
+Faeroese
+faery/MS
+faff/SDG
+Fafung
+fag/MDSG
+Fagatogo/M
+faggot/MdS
+faggoting/M
+Fagin
+Fahrenheit
+faïence/S
+fail-safe
+fail/SGkJD
+failing's
+failing/UY
+failure/MS
+fain
+faint-hearted/Y
+faint-heartedness
+faint/RTGYPSD
+faintness/S
+fair-minded
+fair-weather
+fair/JpSZPDTGY
+Fairbanks
+Fairbreeze
+Fairchild
+Fairdale
+faire
+Fairfax
+Fairfield
+fairgoer/S
+fairground/MS
+fairing/M
+fairish
+Fairland
+Fairleads
+Fairleigh
+fairly/U
+Fairmead
+Fairmont
+Fairmount
+Fairmountrif
+fairness/S
+Fairport
+Fairtrees
+Fairvale
+Fairview
+fairway/SM
+Fairways
+Fairwood
+fairy/SM
+Fairyglen
+fairyland/SM
+fairytale
+Faisal
+faith/MGpSD6j
+faithful/UY
+faithfulness/SM
+faithless/PY
+faithlessness/S
+fajitas
+fake/RGSD
+fakir/MS
+falafel
+Falckvlei
+falcon/ryMS
+Falconridge
+falconry/SM
+Falk
+Falkirk/M
+Falkland/MS
+Falkner
+fall's/ec
+fall-back
+fall-off
+fall/MGSRb
+fallacious/YP
+fallacy/SM
+fallback
+fallen
+fallibility/SMI
+fallible/PY
+fallibleness/S
+fallibly/I
+falling-out
+falloff/S
+fallopian
+fallout/SM
+fallow/PDSG
+falls/e
+false/YTP
+falsehood/MS
+falseness/S
+falsetto/SM
+falsifiability/M
+falsification/M
+falsify/NSRBnDG
+falsity/MS
+Falstaff
+falter/drSJk
+faltering/UY
+falutin
+faluting
+fame/SzMD
+famed/C
+fames/C
+familial
+familiar/-qQs98YS
+familiarise/k
+familiarity/MS
+familiarize/k
+familiarly/U
+familiarness
+family/MS
+famine/SM
+famish/DGS
+famous/YP
+famously/I
+fan/MDGZS
+Fanagalo
+fanatic/MSY
+fanatical/P
+fanaticism/SM
+fanciful/P
+fancifulness/S
+fanciness/S
+fancy-free
+fancy/DPRjYGT6S
+fancywork/SM
+fandango/MS
+fanfare/SM
+Fanfish
+fanfold/M
+Fang
+fang/MDS
+Fangtooth
+fanlight/MS
+fanny/MS
+fanout
+Fanray
+fantail/SM
+fantasia/SM
+fantastic/Y
+fantastical
+fantasy/sM8GDQ9WS
+Fanti
+fanzine/S
+FAQ/MS
+far-fetched
+far-flung
+far-off
+far-reaching
+far-sighted/YP
+far-sightedness/S
+far/d
+farad/MS
+Faraday
+faraway
+Farber
+farce/MwS1
+fare/SM
+Fareham
+farer/M
+farewell/MDGS
+farfetchedness/M
+Fargo
+farina/MS
+farinaceous
+Farley
+farm/MDGRS
+Farmedge
+farmhand/S
+farmhouse/SM
+farming/M
+Farmington
+farmland/SM
+Farmside
+farmstead/MS
+farmworker/S
+farmyard/MS
+Farnborough
+faro/M
+Faroese
+farraginous
+farrago/MS
+Farrarmere
+Farrell
+farrier/MS
+farrow/MGDS
+farseeing
+fart/SMDG
+farther
+farthermost
+farthest
+farthing/MS
+Farview
+fas
+fascia/SM
+fascicle/SMD
+fasciculate/DnN
+fasciculation/M
+fascinate/GSNknD
+fascination/M
+fascism/SM
+fascist/MSW
+Fashanu
+fashion/RS7GlDM
+fashionable/PS
+fashionably/U
+fashioned/A
+fashions/A
+Faso/M
+fast-forward
+fast/DTGSP
+fastback/MS
+fasten/AdSU
+fastener/MS
+fastening/SM
+fastidious/YP
+fastidiousness/S
+fastness/S
+fat/SDTMYP2oGZ
+fatal/3
+fatale/S3
+fatalism/MS
+fatalist/W1
+fatality/SM
+fatalness
+fate/6SMDj
+fateful/P
+fatefulness/S
+fathead/SiDM
+father-in-law
+father/YSMdp
+fatherhood/MS
+fatherland/MS
+fatherly/P
+fathers-in-law
+fathom/MSd7p
+fathomable/U
+fathomed/U
+fatigue/MGkDS
+fatness/S
+fatso/M
+fatten/rSd
+fattiness/S
+fatty/TPS
+fatuity/MS
+fatuous/YP
+fatuousness/S
+fatwa/MS
+Faulkner
+fault's/C
+fault-finder/MS
+fault-finding
+fault/zD2MSZGp
+faulted/C
+faultiness/S
+faultless/PY
+faultlessness/S
+faults/C
+faulty/TP
+faun/SM
+Fauna
+fauna/SM
+Faunapark
+Faunasig
+Fauntleroy
+Faure
+Fauresmith
+Faust
+Faustian
+fauvism/S
+faux
+favour/EDRMGS
+favourable's
+favourable/YU
+favourableness
+favourables
+favourably/U
+favoured's
+favoured/U
+favouredly
+favouredness
+favoureds
+favouring/SMY
+favourite/SM
+favouritism/MS
+Fawkes
+Fawlty
+fawn/RSkMDG
+fax/DMGS
+fay/SM
+Fayette/M
+Fayetteville
+faze/GSD
+FBI
+FCC
+FDA
+fealty/MS
+fear/6pMDSjG
+fearful/TP
+fearfulness/S
+fearless/YP
+fearlessness/S
+fearsome/PY
+feasibility/SM
+feasible/PY
+feasibly/I
+feast/MRSDG
+feat/CMS
+feather-bed/DG
+feather-bedding/M
+feather-brain/MD
+feather-edge
+feather-head/D
+feather-light
+feather-stitch
+feather/MSZrdp
+feathered/U
+feathering/M
+featherweight/MS
+feathery/T
+feature/aM
+featured
+featureless
+features
+featuring
+Feb
+febrile
+febrility
+February/SM
+feckless/PY
+fecund/gn
+fecundate/SGD
+fecundation/M
+fecundity/MS
+fed-up
+fed/cfU
+federal/Qq3-8Y
+federalism/SM
+federalist
+federate/FDGNnS
+federation/FM
+federative/Y
+Fedora/M
+fedora/MS
+Feds
+fee/MYGdS
+feeble-minded
+feeble/TYP
+feebleness/S
+feed/ScG
+feedback/MS
+feeder/MS
+feeding/M
+feedstock
+feedstuffs
+feel/GRSJk
+feeling/MP
+feelingly/U
+feet/M
+feign/RGDS
+feigned/U
+feint/MSDG
+feisty/T
+Felder
+Feldman
+feldspar/SM
+Felicia
+felicitate/SnDNG
+felicitation/M
+felicitous/YP
+felicitously/I
+felicity/ISM
+feline/YS
+Felipe
+Felix
+Felixstowe/M
+Felixton
+fell/TSGD
+fellah
+fellahin
+fellate
+fellatio/MS
+fellator
+fellow-traveller/MS
+fellow/MS
+fellowship/MS
+Fellside
+felon/MS
+felonious/PY
+felony/MS
+felt-tip/S
+felt/GSD
+Feltham
+felting/M
+fem
+female/PSM
+femaleness/S
+feminine/YPS
+femininity/SM
+feminise/nGSD
+feminism/MS
+feminist/MS
+feminize/DnNGS
+femme/S
+femoral
+femur/MS
+fen/SM
+fence/DSJRGM
+fenced/U
+fencepost/M
+fences/C
+fencing/M
+fend/CRGDS
+fenestration/CSM
+fenland/M
+fennel/MS
+Fenwick
+fer/FLCK
+feral
+Ferdinand
+Fergus
+Ferguson/M
+Fermanagh/M
+Fermat/M
+ferment/GnND
+fermentation/M
+fermenter
+Fermi
+fermion/MS
+fermium/M
+fern/MSZ
+Fernando
+Ferndale
+Ferndalerif
+fernery/M
+Ferness
+Fernglen
+Fernie
+Fernridge
+Fernwood
+ferny/T
+ferocious/YP
+ferociousness/S
+ferocity/SM
+Ferrari/MS
+Ferrax
+Ferreira
+Ferreirasdorp
+ferret/drMS
+Ferris
+ferrite/M
+ferro
+ferroelectric
+ferromagnet/MW
+ferrous
+ferrule/DSMG
+ferry/GmSWDM
+ferryboat/SM
+Ferryvale
+fertile/PQs89Yq-
+fertility/SIM
+ferule/SDMG
+fervency/SM
+fervent/Y
+fervid/PY
+fervour/MS
+fess's
+fess/FS
+festal/Y
+fester/IS
+festered
+festering
+festival/MS
+festive/YP
+festiveness/S
+festivity/MS
+festoon/GMDS
+feta/SM
+fetch/RGSDk
+fête/SM
+fetish/S3M
+fetishism/MS
+fetishist/W
+fetlock/MS
+fetter/MSd
+fettered/U
+fetters/U
+fettle/DGS
+fettling/M
+fettuccine/S
+feud/MoDSG
+feudal
+feudalism/SM
+feudatory/M
+fever/SMd
+feverish/YP
+feverishness/S
+few/TP
+fewness/S
+fey/T
+fez/M
+ff
+Fhatuwani
+Fi
+FIA
+fiancé/SM
+fiancée/MS
+fiasco/SM
+Fiat
+fiat/MS
+fib/SDRG
+Fibonacci/M
+fibre/MDS
+fibreboard/MS
+fibrefill/S
+fibreglass/M
+fibrescope
+fibril/nMNS
+fibrillate/SDG
+fibrillation/M
+fibrin/SM
+fibroblast/SM
+fibroid/S
+fibroses
+fibrosis/M
+fibrous/PY
+fibula/M
+fibulae
+fibular
+FICA
+fiche/MS
+fichu/MS
+fickle/PT
+fickleness/S
+Ficksburg
+fiction/oOSM
+fictional/q-8Q
+fictitious/YP
+fictive/Y
+ficus
+fiddle/DRSYMGJ
+fiddlestick/MS
+Fidel/M
+Fidelio/M
+fidelity/SMI
+fidget/dSZ
+fiducial/Y
+fiduciary/MS
+fie/y
+fief/MS
+fiefdom/S
+field's/eI
+field/GRMSD
+fielder/IMeS
+fields/eI
+fieldstone/M
+fieldwork/MRS
+fiend/SM
+fiendish/PY
+fierce/YPT
+fierceness/S
+fieriness/S
+fiery/TPY
+fiesta/MS
+Fifa/M
+fife/DMRGS
+Fife/M
+FIFO
+fifteen/HSM
+fifth-generation
+fifth/Y
+fifty-eight/H
+fifty-first/S
+fifty-five/H
+fifty-four/H
+fifty-nine/H
+fifty-one
+fifty-onefold
+fifty-second/S
+fifty-seven/H
+fifty-six/H
+fifty-three/H
+fifty-two
+fifty-twofold
+fifty/HSM
+fig/LSMGD
+Figaro
+fight/GRSJ
+fightback
+fighter/IMS
+fighting/IS
+fights/e
+figural
+figuration/M4KF
+figurations/4
+figurative/YP
+figure's
+figure/FRGNDnS
+figured/K4E
+figurehead/SM
+figures/KE4
+figurine/MS
+figuring/K4E
+figurings
+Fiji/M
+Fijian/MS
+filament/MS
+filamentary
+filamentous
+filbert/SM
+filch/SGD
+file's
+file/CRGSD
+filed/aA
+files/aA
+filet's
+filial/YU
+filibuster/rdSM
+filigree/GMS
+filing/S
+Filipino/S
+fill/RGJ7DSY
+filled/cAU
+fillet/MdS
+filleting/M
+filling/M
+fillip/MS
+Fillmore
+fills/cA
+filly/SM
+film-maker/S
+film-strip/SM
+film/2SZMGD
+filminess/S
+filming/M
+filmy/PT
+filter-tipped
+filter/dSnMrN7
+filtered/U
+filth/zSZM2
+filthiness/S
+filthy/DTPG
+filtrate's
+filtrate/DGISnN
+filtration/MI
+fin/wdGMSDZo
+finagle/RGDS
+final/q8SQ3-
+finale/3SM
+finality/SM
+finance's
+finance/ADGS
+financial/SY
+financier/GDMS
+financing/S
+finch/SM
+find/J7RSG
+findable/U
+finding/M
+fine's
+fine-grained
+fine-tune/DSG
+fine/FGADSC
+finely
+fineness/MS
+finer/AFC
+finery/MSA
+finespun
+finesse/SM
+finest
+Finetown
+finger-plate
+finger/pJdrMS
+fingerboard/MS
+fingering/M
+fingerling/M
+fingermarks
+fingernail/MS
+fingerprint/SGMD
+fingertip/SM
+finial/SM
+finickiness/S
+finicky/T
+fining/M
+finis/SM
+finish/SJRDG
+finished/UA
+finishes/A
+finite/CPIY
+finites
+Finland/M
+Finley/M
+Finn/SM
+Finnegan
+Finnish
+Finno-Ugrian
+finny/T
+Finsbury/M
+fiord/SM
+fir/rdS
+fire-bomb/MDGS
+fire-break/MS
+fire-brick/MS
+fire-bug
+fire-control
+fire-eater
+fire-fighter/SM
+fire-guard/M
+fire-hose/SM
+fire-lighter/S
+fire-power/MS
+fire-storm/MS
+fire-trap/MS
+fire-walker/S
+fire-walking
+fire-water
+fire/MmJSp
+firearm/MS
+fireball/MS
+Firebird
+firebox/MS
+firebrand/MS
+firebucket
+firecracker/SM
+fired/Ua
+firedamp/MS
+firefly/MS
+Firefox/M
+firelight/M
+fireplace/MS
+fireproof/DG
+fires/a
+fireside/M
+Firestone
+firewall/S
+firewood/M
+firework/MS
+Firgrove
+firing/M
+firkin/M
+firm's
+firm/FGSD
+firmament/MS
+firmer
+firmest
+firmly/I
+firmness/MS
+firmware/MS
+first-aid
+first-born/S
+first-class
+first-day
+first-floor
+first-hand
+first-name
+first-rate
+first-strike
+first/SY
+firth/MS
+Firwood
+Fis
+Fisantekraal
+fiscal/Y
+Fischer
+Fish
+fish-bowl/SM
+fish-hook/MS
+fish-meal
+fish-plate/S
+fish-pond/MS
+fish-tanks
+fish/DRGyS2zMZ
+fished/c
+fisher/m
+Fisherhaven
+fishery/SM
+Fishguard/M
+Fishhoek
+fishiness/S
+fishing/M
+Fishkill
+fishlike
+fishmonger/MS
+fishnet/MS
+fishtail/SGDM
+fishwife/M
+fishwives
+fishy/TP
+Fisichella
+Fisk
+Fiske/M
+fissile
+fission/S7DMG
+fissionable/S
+fissure/MGDS
+fist/GD6
+fistfight/MS
+fistful/MS
+fisticuffs
+fistula/SM
+fistulous
+fit's/aeA
+fit/PJDjSRM6YTG
+Fitch
+Fitchburg
+fitful/P
+fitfulness/S
+fitments
+fitness/U
+fitnesses
+fits/eAa
+fitted/e
+fitter/eMS
+fitting/UY
+fittingness/M
+Fitzgerald
+Fitzpatrick
+Fitzroy
+Fitzwilliam
+five-a-side
+five-finger
+five-fold
+five-year
+five/HSM
+fiver/M
+fix/nDRV7hiJSG
+fixate/DSG
+fixatifs
+fixation/M
+fixative/S
+fixed/4UK
+fixedness/M
+fixes/IK4
+fixing's
+fixing/4K
+fixity/SM
+fixture/SM
+fizz/SZGD
+fizzer/M
+fizzle/DSG
+fizzy/T
+fjord/SM
+flab/MzZ2S
+flabbergast/DSGk
+flabbiness/S
+flabby/TP
+flaccid/Y
+flaccidity/SM
+flack/DSMG
+flag-waving
+flag/mSMGDJ
+flagella/Mn
+flagellate/DSG
+flagellation/M
+flagellum/M
+Flagfin
+flagging/MY
+flaggingly/U
+flagon/SM
+flagpole/SM
+flagrancy
+flagrant/Y
+flagship/MS
+Flagstaff
+flagstaff/MS
+flagstone/SM
+flail/MDGS
+flair/SM
+flak/MdS
+flake/M2ZS
+flaker/M
+flaky/T
+flambé/GSD
+flamboyance/ZSM
+flamboyancy/SM
+flamboyant/Y
+flame-proof/DG
+flame-thrower/MS
+flame/pZMDRGkJS
+flamed/I
+flamelike
+flamen/M
+flamenco/MS
+flamer/IM
+flames/I
+flaming/I
+Flamingo
+flamingo/MS
+flamingoes
+Flamingovlei
+flammability/ISM
+flammable/SI
+Flamwood
+flan/MS
+Flanagan
+Flanders
+flange/DGSM
+flank/MRSDG
+flanked/e
+flanking/e
+flanks/e
+flannel/MDGS
+flannelette/SM
+flap/DSMRG
+flapjack/MS
+flaps/M
+flare-up/S
+flare/SGkD
+flash-pan
+flash/MDZR2GJSz
+flashback/MS
+flashbulb/SM
+flashcard/S
+flashcube/SM
+flashgun/S
+flashiness/S
+flashing/M
+flashpoint/S
+flashy/TP
+flask/MS
+flat-footed/Y
+flat-footedness
+flat-head/M
+flat/YPDTMSG
+flatcar/SM
+flatfeet
+flatfish/MS
+flatfoot/MS
+flatland/S
+flatlander
+flatmate/SM
+flatness/S
+flatten/drS
+flatter/kdrSZ
+flattering/UY
+flattery/SM
+flattest/M
+flattish
+flattop/MS
+flatulence/MS
+flatulent/Y
+flatus/MS
+flatware/SM
+flatworm/MS
+flaunt/GSDk
+flautist/MS
+flavour/R6GDpMJS
+flavoured/U
+flavouring/M
+flavoursome
+flaw/GMDSp
+flawless/YP
+flawlessness/S
+flax/SM
+flaxen
+flaxseed/M
+flay/DRGS
+flea/MS
+fleabag/MS
+fleabites
+fleawort/M
+fleck/GSDM
+flecker
+Fledermaus
+fledge/SDG
+fledged/U
+fledgeling
+fledgling/SM
+flee/GDS
+fleece/RGZMDS
+fleeciness/S
+fleecy/TP
+fleer
+fleet/GPYSMDTk
+fleeting/P
+fleetingly/M
+fleetingness/S
+fleetness/S
+Fleming
+Flemish
+flesh/GYZMDp2S
+flesher/M
+fleshly/T
+fleshpot/SM
+fleshy/PT
+Fletch
+fletcher/M
+Fletcherville
+Fleurdal
+Fleurhof
+flew/S
+flews/M
+flex's/A
+flex/DSbGM
+flexes/A
+flexibility/MIS
+flexible/IY
+flexibly/I
+flexitime/M
+flexural
+flexure/M
+flibbertigibbet/SM
+flick/SDG
+flicker/dSZk
+flies/c
+flight's/cK
+flight/2MDSZpG
+flightiness/S
+flightpath
+flights/c
+flighty/PT
+flimflam/GMSD
+Flimieda
+flimsiness/S
+flimsy/PYT
+flinch/SDG
+flincher/M
+flinching/U
+fling/MSG
+flinger/M
+Flint
+flint/MDpSZG2
+Flintdale
+flintlock/MS
+Flintoff
+Flintshire/M
+flinty/PT
+flip-flop/S
+flip/TSRDG
+flippable
+flippancy/SM
+flippant/Y
+flirt/GSZNDn
+flirtation/M
+flirtatious/YP
+flirtatiousness/S
+flirter
+flit/DGS
+float/DRSZNG
+floating-point
+flocculate/SDGN
+flocculation/M
+flock/GJSDM
+floe/MS
+flog/DRGJS
+flogging/M
+flood/MDGS
+flooder
+floodgate/MS
+floodlight/MGS
+floodlit
+floodplain/S
+floor's
+floor/f
+floorboard/MS
+floored
+floorer/M
+flooring/MS
+Floors
+floors
+floorspace
+floozy/SM
+flop/GzZDS2
+flopper/M
+floppiness/S
+floppy/MTSP
+Flora
+flora/oMS
+Floracliffe
+floral
+Florapark
+Florauna
+Florence
+Florentia
+Florentine
+Flores
+florescence/SIM
+florescent/I
+floret/SM
+Florex
+Florianville
+florid/PY
+Florida/M
+Floridameer
+Floridian/S
+floridness/S
+florin/SM
+florist/MS
+floss/DMSGZ
+flossie
+flossy/TS
+flotation/MS
+flotilla/SM
+flotsam/MS
+flounce/SDZG
+flouncing/M
+flouncy/T
+flounder/dS
+flour/GDMSZ
+flourish/SDGk
+flourisher/M
+floury/T
+flout/DRSG
+flow/SeIcf
+flowchart/GS
+flowed/c
+flower's
+flower/CdS
+flowerbed/MS
+floweriness/S
+flowerless
+flowerpot/MS
+flowery/PT
+flowing/Y
+flown/c
+flowstone
+Floyd
+flt
+flu/M
+fluctuate/SGNDn
+fluctuation/M
+flue-cured
+flue/MS
+fluency/MS
+fluent/FY
+fluff/DGSZM2
+fluffiness/S
+fluffy/PT
+fluid/Q89YPMsS
+fluidity/SM
+fluke/MDZSG
+fluky/T
+flume/MDGS
+flummox/GDS
+flung
+flunk/SZGD
+flunker
+flunkey's
+flunky/SM
+fluoresce/DGS
+fluorescence/MS
+fluorescent/S
+fluorescer
+fluoridate/DGS
+fluoridation/M
+fluoride/MSn
+fluorinated
+fluorine/MS
+fluorite/SM
+fluorocarbon/MS
+fluoroscope/SWMDG
+flurry/SMDG
+flush/DTGPS7
+fluster/dS
+flute/JMDZSG
+flutelike
+fluting/M
+flutter/SZdr
+flux/SIM
+fluxed/A
+fluxes/A
+fluxing
+fly-by-night
+fly-by-wire
+fly-drive
+fly-fishing
+fly-paper/M
+fly/SGRT
+flyable
+flyaway
+flyblown
+flyby/M
+flybys
+flycatcher/MS
+flyer/SM
+flyhalf
+flying/c
+flyleaf/M
+flyleaves
+Flynn
+flyover/SM
+flypaper/M
+flypast/M
+flysheet/MS
+flyswatter/SM
+flyweight/MS
+flywheel/SM
+FM
+FNB
+fo'c's'le
+fo'c'sle
+Foa
+foal/MDGS
+foam/GSZM2D
+foamer
+foaminess/S
+foamy/TP
+fob/MDSG
+focal/YF
+Fochville
+foci/M
+focus/7GMDdS
+focused/ACU
+focuser/M
+focuses/CA
+focussed/U
+focusses/AC
+fodder/dSM
+foe/MS
+foefie
+foetal
+foeticide
+foetid/Y
+foetidness
+foetus/SM
+fog/MzS2DGZ
+fogbound
+fogey
+fogginess/S
+foggy/PT
+foghorn/MS
+fogs/C
+fogy/MS
+fogydom
+fogyish
+föhn
+foible/MS
+foil/DGS
+foist/GDS
+Fokker
+fol/Y
+fold-out/SM
+fold/DJRGS
+foldaway
+folded/AU
+folds/UA
+Foley/M
+foliaceous
+foliage/DMS
+foliar
+foliate/CDGnNS
+foliation/MC
+folio/MDGS
+folk-dance/GMS
+folk-singer/S
+folk-song/S
+folk-tale/S
+folk-ways
+folk/SM
+folkish
+folklike
+folklore/M3SW
+folks/Z2
+folksiness/S
+Folkstone/M
+folksy/PT
+foll
+follicle/MS
+follicular
+follow-on/S
+follow-up/MS
+follow/JDRS7G
+folly/SM
+Folovhodwe
+Folsom
+Folstone/M
+Folweni
+foment/DGNRnS
+fomentation/M
+Fon
+fond/TYMP
+Fonda
+fondant/MS
+fondle/GDS
+fondler/M
+fondness/S
+fondue/MS
+Fondwe
+font/S
+Fontaine/M
+Fontainebleau
+Fontana
+fontanelle/MS
+Fonteinriet
+Fontenoy
+food/SM
+foodie/S
+foodstuff/MS
+fool/GSMD
+foolery/SM
+foolhardiness/S
+foolhardy/TYP
+foolish/PTY
+foolishness/S
+foolproof
+foolscap/SM
+foot/MpDhiRSGJ
+footage/SM
+football/DRMGS
+Footballer
+footbridge/SM
+Foote
+footfall/SM
+foothill/MS
+foothold/MS
+footing/M
+footlights
+footling
+footlocker/MS
+footloose
+footman/M
+footmarks
+footmen/M
+footnote/SGMD
+footpad/SM
+footpath/MS
+footplate/M
+footprint/MS
+footrace/S
+footrest/MS
+footsack
+footsie/MS
+footsoldier/MS
+footsore
+footstep/MS
+footstool/SM
+footwear/M
+footwork/SM
+fop/GSMD
+foppery/MS
+foppish/YP
+foppishness/S
+for
+fora
+forage/MDRSG
+foray/GMDS
+forayer/M
+forbade
+forbear/MGS
+forbearance/SM
+forbearer/M
+Forbes
+Forbesdale
+forbid/SG
+forbidden
+forbidding/YP
+forbore
+forborne
+force-fed
+force-feed/G
+force/hDjSMb6G
+forced/U
+forcefield/SM
+forceful/P
+forcefulness/S
+forceps/M
+forcer/M
+forcible/PY
+ford/GSM7D
+Forderville
+Fordham
+Fordsburg
+Fordville
+fore/m5
+forearm/MDGS
+forebear/MS
+forebode/SGkJD
+foreboding/PM
+forecast/RSG
+forecastle/MS
+foreclose/SGD
+foreclosure/MS
+forecourt/SM
+foredeck
+foredoom/DSG
+forefather/SM
+forefeet
+forefinger/SM
+forefoot/M
+forefront/SM
+foregather
+foregathered
+forego/GJ
+foregoer/M
+foregoes
+foregone
+foreground/DMGS
+forehand/S
+forehead/MS
+foreign/RYP
+foreignness/S
+foreknew
+foreknow/GS
+foreknowledge/MS
+foreknown
+foreleg/MS
+forelimb/SM
+forelock/SMGD
+foremast/MS
+foremost
+forename/MSD
+forenoon/SM
+forensic/SY
+forensics/M
+foreordain/GSD
+forepaws
+forepeople
+foreperson/S
+foreplay/MS
+forequarters
+forerunner/MS
+foresail/MS
+foresaw
+foresee/BRSG
+foreseeable/U
+foreseen/U
+foreshadow/DGS
+Foreshore
+foreshore/MS
+foreshorten/dS
+foresight/hMiSD
+foresighted/P
+foresightedness/S
+foreskin/MS
+forest's
+forest/CGDSRnN
+forestall/DSRG
+forestation/AMC
+forested/A
+forestland/S
+forestry/SM
+forests/A
+foretaste/MDGS
+foretell/SRG
+forethought/MS
+foretold
+forever
+foreverness
+forewarn/DGSJ
+forewarner/M
+forewent
+foreword/MS
+forex
+forfeit/RGMDS
+forfeiture/MS
+forfend/DGS
+forgather/dS
+forgave
+forge/MRyGDJS
+forged/A
+forgery/SM
+forges/A
+forget-me-not/S
+forget/Gj6S
+forgetful/P
+forgetfulness/S
+forgettable/YU
+forgettably/U
+forging's
+forging/A
+forgivably/U
+forgive/lPSkRG7
+forgiven/U
+forgiveness/S
+forgiving/U
+forgivingness/M
+forgo/GR
+forgoes
+forgone
+forgot
+forgotten/U
+fork/6MDGS
+forker
+forkful/S
+forklift/MDGS
+forlorn/TYP
+form's
+form/FNnCDGSIA4
+formability/M
+Formain
+formal/Qs8q9P3-Y
+formaldehyde/MS
+formalin/M
+formalism/SM
+formalist/W
+formality/SMI
+formant/ISM
+format/vuVRGMSD
+formate/MS
+formation/FM4CI
+formative/SP
+formativeness/IM
+formats/A
+formatted/U
+formed/KU
+former/A4CSIF
+formerly
+formfitting
+formic
+Formica
+formidable/YP
+forming/K
+formless/YP
+formlessness/S
+Formosa
+Formosan
+forms/K
+formula/nMS
+formulae/W
+formulate/DAGNSn
+formulated/U
+formulation/MA
+formulator/MS
+fornicate/SnDGN
+fornication/M
+fornicator/MS
+Forrester
+forsake/SG
+forsaken
+forseeability
+forsook
+forsooth
+Forster
+forswear/GS
+forswore
+forsworn
+forsythia/MS
+Fort-de-France/M
+fort/MSZ
+forte/MS
+forth
+forthcoming/U
+forthright/PY
+forthrightness/S
+forthwith
+fortification/M
+fortified/AU
+fortifies/A
+fortify/RSNnDG
+fortiori
+fortissimo/S
+fortitude/SM
+fortnight/SYM
+fortnightly/S
+Fortran/M
+fortress/SDMG
+fortuitous/PY
+fortuitousness/S
+fortuity/SM
+fortunate/YPS
+fortunately/U
+fortunates/U
+fortune-teller/MS
+fortune-telling/SM
+fortune/MaS
+fortuned
+fortuning
+forty-eight/H
+forty-first/S
+forty-five/H
+forty-four/H
+forty-nine/H
+forty-one
+forty-onefold
+forty-second/S
+forty-seven/H
+forty-six/H
+forty-three/H
+forty-two
+forty-twofold
+forty/HMS
+forum/MS
+forward-looking
+forward/RYGDPTS
+forwarding/M
+forwardness/S
+forwent
+Fosa
+Foss
+fossil/MQ-q8S
+fossiliferous
+Foster's
+foster/Sd
+fosterer/M
+Foucault
+fought/e
+foul-mouth/D
+foul-up/S
+foul/TYPDGS
+foulard/MS
+foulness/S
+fouls/M
+found/FSGD
+foundation/oMS
+foundational
+founded/U
+founder/dMS
+foundling/SM
+foundry/MS
+fount/SM
+fountain-head/MS
+fountain-pen/MS
+fountain/MGDS
+four-eyes
+four-in-hand
+four-leaved
+four-letter
+four-poster/SM
+four-square
+four-wheel
+four/MHS
+Fourier/M
+Fouriesburg
+Fouriesrus
+fourpence/M
+fourpenny
+fourscore/S
+foursome/SM
+fourteen/HSM
+fourth/Y
+fovea/M
+foveae
+foveal
+foveate
+fowl-run
+fowl/MDSG
+fowler/M
+fowling/M
+fox's
+fox-hunting
+fox/eGSD
+foxglove/MS
+Foxhill
+foxhole/SM
+foxhound/MS
+foxiness/S
+foxing/M
+foxtail/M
+foxtrot/MDGS
+foxy/TYP
+foyer/SM
+fps
+fr
+Fraaisig
+fracas/SM
+fractal/MS
+fraction/SAMI
+fractional/Y
+fractionate/DGN
+fractionation/M
+fractioned
+fractioning
+fractious/PY
+fractiousness/S
+fracture/MDGS
+fragile/Y
+fragility/SM
+fragment/MGNnDS
+fragmentary/PY
+fragmentation/M
+fragrance/MS
+fragrant/Y
+frail/PTY
+frailness/S
+frailty/SM
+frame/RDSGM
+framed/U
+Framesby
+framework/MS
+framing/M
+Framton
+Fran/M
+franc/MS
+France/MS
+Francesca
+Francesco
+franchise/RGSMD
+franchised/E
+franchisee/SM
+franchises/E
+franchising/E
+franchisor/MS
+Franchitti
+Francine/M
+Francis
+Franciscan/S
+Francisco/M
+Francisvale
+francium/M
+Franck
+Franco
+François
+Françoise/M
+francophone/M
+frangibility/SM
+frangible
+Frank's
+frank/TGYSDP
+Frankel/M
+Frankenstein
+franker/M
+Frankford
+Frankfort
+Frankfurt
+frankfurter/MS
+Frankie
+frankincense/MS
+Frankish
+Franklin
+franklin/M
+frankness/S
+Franschhoek
+Franskraal
+Franskraalstrand
+Fransmadam
+Fransville
+frantic/YP
+franticly
+Franz
+frap/SGD
+frappé
+Fraser/SM
+Fraserburg
+fraternal/Y
+fraternise/RSDnG
+fraternity/FSM
+fraternize/NSnG
+fraternizer/M
+fratricidal
+fratricide/MS
+Frau
+fraud's
+fraud/CS
+fraudster/S
+fraudulence/S
+fraudulent/Y
+fraudulentness
+fraught
+fray's
+fray/CDGS
+Frazer
+Frazier
+frazzle/SGD
+freak/MDSZG
+freakish/PY
+freakishness/S
+freaky/T
+freckle/MSDGY
+freckly/T
+Fred/Z
+Freda
+Freddie
+Freddy/M
+Frederic/M
+Frederick/S
+Fredericton/M
+Frederikstad
+Fredrick
+Fredrickson
+Fredricton
+Fredville
+free-born
+free-fall/G
+free-for-all
+free-form
+free-handed/Y
+free-handeness
+free-kick
+free-living
+free-market
+free-range
+free-standing
+free-up
+free-wheel/SDG
+free/mPTdGYS
+freebase/DSG
+freebie/SM
+freeboot/R
+freeborn
+FreeBSD
+freedman/M
+freedmen/M
+freedom/MS
+freehand/hD
+freehold/RMS
+freelance/MRDGS
+Freemanville
+Freemason/MS
+freemasonry
+Freeport
+freestone/MS
+freestyle/SM
+freethinker/SM
+freethinking/S
+Freetown/M
+freeway
+freewill
+freezable
+freeze-dried
+freeze-frame
+freeze/ASGU
+freezer/MS
+freight/MRDSG
+French/mM5
+frenetic/Y
+Frentzen
+frenzy/MSGDh
+freon/S
+freq
+frequency/SIM
+frequent/YSRTPDG
+frequented/U
+frequently/I
+fresco/MSDG
+frescoes
+fresh-faced
+fresh/TmRPY
+freshen/rdS
+fresher/ASM
+freshet/MS
+Freshmeat
+freshness/S
+freshwater/MS
+Fresnaye
+Fresnel
+Fresno
+fret/6jDSG
+fretboard
+fretful/P
+fretfulness/S
+fretsaw/S
+fretwork/MS
+Freud/M
+Freudian
+Frey
+Freya/M
+friable/P
+friar/YMSZ
+friary/SM
+fricassee/MGS
+frication/M
+fricative/MS
+Frick
+friction/MSpo
+frictional
+frictionless/Y
+Friday/MS
+fridge/SM
+fried/A
+Friedman
+Friedrich/M
+Friemersheim
+friend/DGYMSp
+friendless/P
+friendlier/U
+friendliness/U
+friendlinesses
+friendly/TPYS
+friends'
+friendship/MS
+frier's
+Friersdale
+fries/M
+frieze/SMGD
+frig/DGJS
+frigate/SM
+fright/6GjDMS
+frighten/dkS
+frighteners
+frightful/P
+frightfulness/S
+frigid/PY
+Frigidaire
+frigidity/SM
+frigidness/S
+frikkadel/S
+frill/MGDSY
+frilly/ST
+fringe's
+fringe/IDGS
+frippery/MS
+Frisbee
+Frisco
+Frisian
+frisk/SZDzG2
+frisker/M
+friskiness/S
+frisky/TP
+frisson/M
+Frito
+fritter/dS
+fritterer/M
+Fritz
+frivolity/SM
+frivolous/YP
+frivolousness/S
+frizz/ZDSGY
+frizzle/GSD
+frizzly/T
+frizzy/T
+fro/S
+Frobisher
+frock's
+frock-coat/S
+frock/CGSUD
+frocking/M
+frog/SmMGD
+frogmarched
+Frogmore
+froid
+frolic/DRMSG
+frolicsome
+from
+frond/SM
+front's
+front-line
+front-page
+front/FSDG
+frontage/MS
+frontal/SY
+fronter/F
+frontier/MS
+frontiers/m
+frontispiece/MS
+frontrunner/MS
+frontrunning
+frontward/S
+frost's
+frost/CDSG
+frostbit
+frostbite/GSM
+frostbiting/M
+frostbitten
+frostiness/S
+frosting/MS
+frosty/TYP
+froth/MDSZ2G
+frothiness/S
+frothy/TP
+froufrou/MS
+froward/P
+frowardness/S
+frown/GDkS
+frowner/M
+frowziness/S
+frowzy/PTY
+froze/UA
+frozen/PY
+fructify/SDG
+fructose/SM
+Fruehauf/M
+frugal/Y
+frugality/SM
+fruit/MSdXpN6j
+fruitcake/MS
+fruiterer/M
+fruitful/PT
+fruitfulness/S
+fruitiness/S
+fruition/M
+fruitless/PY
+fruitlessness/S
+fruity/PT
+frump/MSZ
+frumpish
+frumpy/T
+frustrate/DkhSGNn
+frustrater/M
+frustration/M
+frustum/MS
+fry/7VSNDG
+Frye/M
+fryer/MS
+Frylinckspan
+FSA
+FSF
+ft/C
+FTC
+FTP
+ftp
+Fuchs
+fuchsia/MS
+fuck/JSRMDG
+FUD
+fuddle/DGS
+fudge/DGMS
+fuel's
+fuel-cell
+fuel/RASDG
+fugal
+fugitive/MSPY
+fugue/SGMD
+fuhrer/S
+führer/SM
+Fuji
+Fujitsu/M
+Fukuoka
+Fulah
+Fulani
+fulcrum/MS
+fulfil/LSDG
+fulfilled/U
+fulfiller
+Fulham/M
+full-blooded
+full-blown
+full-bodied
+full-dress
+full-frontal
+full-grown
+full-length
+full-page
+full-scale
+full-time
+full-timer/S
+full-wave
+full/PTGYR
+Fullarton
+fullback/SGM
+fuller/d
+Fullerton
+fullish
+fullness/S
+fullstops
+fullword/SM
+fully-fledged
+fulminate/nDGNS
+fulmination/M
+fulness's
+fulsome/YP
+fulsomeness/S
+Fulton/M
+Fumani
+fumarole/S
+fumble/RJSGDk
+fume/kSDGZ
+fumigant/SM
+fumigate/SGDnN
+fumigation/M
+fumigator/MS
+fumy/T
+fun-loving
+fun/zM2Z
+Funafuti/M
+function/yoSDGpM
+functional
+functionalism/M
+functionality/S
+functionary/MS
+functor/MS
+fund's/A
+fund-raiser/MS
+fund-raising
+fund/SMRDG
+fundamental/3YS
+fundamentalism/SM
+fundamentalist
+funded/fAU
+fundholders
+fundholding
+fundi/S
+funding/f
+funds/A
+funeral/MS
+funerary
+funereal/Y
+funfair/M
+fungal/S
+fungi/M
+fungible/M
+fungicidal
+fungicide/SM
+fungoid/S
+fungous
+fungus/M
+funicular/MS
+funk/MD2GSZ
+funkiness/S
+funky/T
+funnel/GDSM
+funniness/S
+funny/PTS
+fur/G2DJZSM
+furbelow/DMGS
+furbish/DASG
+furbisher/MS
+furious/YP
+furiouser
+furl/DGUS
+furlong/MS
+furlough/SM
+furnace/MS
+Furness/M
+furnish/ASGD
+furnished/U
+furnisher/MS
+furnishing/MS
+furniture/SM
+furore/SM
+furriness/S
+furring/M
+furrow/MGDS
+furry/PTR
+further/rdS
+furtherance/SM
+furtherest
+furthermore
+furthermost
+furthest
+furtive/YP
+furtiveness/S
+fury/SM
+furze/MS
+fuse's/A
+fuse/FXDIG4NS
+fusebox/S
+fused/AC
+fusee/MS
+fuselage/SM
+fuses/AC
+fusibility/MS
+fusible
+fusiform
+fusilier/SM
+fusillade/MGSD
+fusing/AC
+fusion/IMF4
+fuss/2GMDZSz
+fusser/M
+fussier
+fussiest
+fussiness/SM
+fusspot/MS
+fussy/U
+fustian/MS
+fustiness/S
+fusty/TP
+fut
+futile/YP
+futility/SM
+futon/S
+Futuna/M
+Futura
+future/M3S
+futurism/MS
+futurist/W
+futuristic/S
+futurity/SM
+futurology/M3S
+Fuyeni
+fuzz/ZMDzS2G
+fuzziness/S
+fuzzy/TP
+fwd
+FYI
+fynbos
+Fynnland
+G
+g's
+G-string/SM
+G-suit
+g/7
+G5
+Ga-habedi
+Ga-kgobudi
+Ga-lekalakala
+Ga-mabotja
+Ga-madiba
+Ga-magoai
+Ga-makibelo
+Ga-mampane
+Ga-maraba
+Ga-mashashane
+Ga-mathapo
+Ga-mocheko
+Ga-mokgopa
+Ga-molepo
+Ga-monotwane
+Ga-mopedi
+Ga-mphela
+Ga-pharia
+Ga-ramela
+Ga-rankuwa
+Ga-rankuwe
+Ga-raphukula
+Ga-rapulana
+Ga-sehunelo
+Ga-selolo
+Ga-shebambo
+Ga-tisane
+Ga-tlhose
+Ga-tsebe
+Ga/y
+gab/DZ2SG
+gabardine/MS
+Gabarone
+gabbiness/S
+gabble/DGS
+gabby/T
+gaberdine/M
+gable/SDGM
+gabler
+Gabon/M
+Gaborone/M
+Gabriel
+Gabrielle
+gad/SRDG
+gadabout/MS
+gadfly/MS
+gadget/MyS
+gadgetry/SM
+gadolinium/M
+Gadsden
+Gael/W
+Gaelic-speaking
+gaff/MRDSG
+gaffe/SM
+gag/RDGS
+gaga
+Gagarin
+gage/SM
+gaggle/DSG
+gagwriter/S
+gaiety/MS
+Gail
+gaily
+gain/RjDG6S
+gained/A
+Gaines
+Gainesville
+gainful/P
+gains/A
+gainsaid
+gainsay/RGS
+Gainsborough
+gait/RMS
+gaitered
+Gaithersburg
+Gakgapane
+Gakobe
+Gakolopo
+gal/DGkM
+gala/MS
+galactic
+Galahad
+Galapagos
+Galatians
+Galato
+galaxy/MS
+Galbraith
+gale/SM
+Galebelo
+Galedwaba
+Galeheath
+galen
+Galen's
+galena/M
+gales/A
+Galeshewe
+Galician
+Galilean
+Galilee
+Galileo/M
+Galjoen
+galjoen
+gall/MS
+Gallagher/M
+gallant/UY
+gallanted
+gallanting
+gallantry/MS
+gallants
+gallbladder/SM
+Gallegan
+galleon/MS
+galleria/S
+gallery/SDM
+galley/MS
+Gallic
+Gallicism
+gallimaufry/MS
+Gallipoli
+gallium/M
+gallivant/DSG
+gallon/MS
+gallonage/M
+gallop/rdS
+Galloway/M
+gallows/M
+gallstone/MS
+Gallup
+Galois
+galoot/SM
+galore
+galosh/S
+galumph/SGD
+galvanic
+galvanise/nSGD
+galvanism/MS
+galvanize/SDGNn
+galvanometer/SMW
+Galveston
+Galvin/M
+Galway/M
+Gamadikana
+Gamalakhe
+Gamamadila
+Gamarota
+Gamashishi
+Gamasubelele
+Gamatlala
+Gamatlapa
+Gambia/M
+Gambian/S
+gambit/SM
+Gamble
+gamble/RSGD
+Gambleville
+gambol/DSG
+game/DRZMPTJSGY
+gamecock/MS
+gamekeeper/SM
+gameness/S
+gamesmanship/SM
+gamesmen
+gamest/R
+gamete/WMS
+gamin/MS
+gamine/SM
+gaminess/S
+gaming/M
+Gamka
+gamma/MS
+gammon/dMS
+Gamoduana
+Gamogolodike
+Gamothiba
+gamtaal
+Gamtoos
+gamut/SM
+gamy/TP
+Ganda
+gander/SdM
+Gandhi/M
+Gandhinagar
+gang/DYSMG
+ganger/M
+Ganges
+gangland/SM
+ganglia/M
+gangling
+ganglion/MW
+gangplank/MS
+gangrene/MDSG
+gangrenous
+gangster/MS
+gangsterism
+gangway/MS
+Gankwana
+gannet/SM
+Ganspan
+gantry/MS
+Gantt
+Ganyesa
+Ganymede
+GAO
+gaol/MGSDR
+gap-toothed
+gap/dMkSD
+gape/S
+Gaper
+gaper/M
+Gaphagodi
+Garagams
+garage/MSDG
+Garakgoatha
+Garakgwadi
+Garankapole
+Garapulana
+Garatse
+garb/MGSD
+garbage/M
+garble/GSD
+garbler/M
+Garbo/M
+Garcia/M
+garçon/SM
+garde
+garden/rdSM
+Gardenia
+gardenia/SM
+gardening/M
+Gardens
+Gardiner/M
+Gardner/M
+Gareth/M
+Garfield/M
+Garfunkel/M
+Garganey
+gargantuan
+gargle/SDG
+gargoyle/SMD
+Garibaldi/M
+Gariep
+Gariepdam
+Gariepwater
+garish/PY
+garishness/S
+garland/GSMD
+Garlandale
+garlic/GSMZD
+garment's/f
+garment/GSMD
+garments/f
+garner/dS
+garnet/SM
+Garnett
+garnish/GSLD
+garnishee/MGS
+garotte/GDSM
+garret/MS
+Garrett
+Garrick
+garrison/SMd
+garrotte/MGDRS
+garrulity/SM
+garrulous/YP
+garrulousness/S
+Garry
+Garryowen
+Garsfontein
+garter/dSM
+Garth/M
+Garvey
+Gary/MS
+gas's
+gas-permeable
+gas/CGJD
+gasbag/SM
+Gascoigne/M
+Gasefanyetso
+Gasehunelo
+gaseous/YP
+gases
+Gasetati
+gash/MGTSD
+gasification/M
+gasify/RNnDSG
+gasket/MS
+gaslight/MSD
+gasohol/S
+gasoline/M
+gasometer/M
+gasp/DRSkG
+Gaspar
+gasser/MS
+gasses
+gassing/MC
+gassy/TP
+Gaston
+gastric
+gastritides
+gastritis/MS
+gastroenteritides
+gastroenteritis/M
+gastrointestinal
+gastronome/M1ZSw
+gastronomy/WMS
+gastropod/MS
+Gastropoda
+Gastrow
+gasworks/M
+Gata-lwa-tlou
+Gataute
+gate/GSMD
+gateau/MS
+gatecrash/RSGD
+gatehouse/SM
+gatekeeper/MS
+Gately
+gatepost/SM
+Gateshead/M
+Gatesville
+Gateway
+gateway/MS
+gather/rSdJ
+gathered/IA
+gathering/M
+gathers/A
+Gatlinburg
+Gatling
+Gatsby
+gatvol
+Gatwick/M
+gauche/PTY
+gaucheness/S
+gaucherie/MS
+gaucho/MS
+gaudiness/S
+gaudy/TPY
+gauge/GaSD
+gaugeable
+gauger/M
+Gauguin
+Gaul
+Gaulish
+Gaulle/M
+gaunt/PYT
+gauntlet/MSd
+gauntness/S
+gauss/MS
+gausses/C
+Gaussian
+Gauteng
+Gautier
+gauze/SDZGM
+gauziness/S
+gauzy/TP
+gave
+gavel/SMDG
+Gavin/M
+gavotte/DSGM
+gawk/M2DSZzG
+gawker
+gawkiness/S
+gawky/PT
+gay/TPS
+gayety's
+Gaylands
+Gaylard
+Gaylee
+Gaylord
+gayness/S
+Gayo
+Gaza
+Gazankulu
+gaze/GDRS
+gazebo/SM
+gazelle/MS
+gazette/MGDS
+gazetteer/MS
+gazillion/S
+gazpacho/MS
+Gazza
+GB
+Gbps
+Gcilima
+Gcininhliziyo
+GCSE/MS
+GDP
+Ge
+GEAR
+gear/JDMGS
+gearbox/SM
+gearing/M
+gearwheel/SM
+Geary
+gecko/MS
+Gedenk
+Gedleza
+gedoente
+Geduld
+Geduldpan
+gee-gee/MS
+gee/dSGM
+geek/Z
+Geelbek
+geelbek
+Geelhoutpark
+geese/M
+Geez
+geezer/MS
+Gegede
+Geiger
+geisha/M
+Geju
+gel/GMDS
+gelable
+gelatin/SM
+gelatine
+gelatinous/PY
+gelcap
+geld/DJSG
+Geldenhuys
+gelding/M
+gelid
+gelignite/MS
+Geluksburg
+Geluksdal
+Geluksoord
+Gelukspan
+Gelukwaarts
+Gelvandale
+gem/GDZSM
+Gemdene
+Gemfane
+Gemini
+gemlike
+gemmology/3M
+gemors
+Gemsbok
+gemsbok
+Gemsbokpark
+Gemsbuck
+gemstone/MS
+Gemvale
+gen/GD
+Genadendal
+gendarme/MS
+gender/pSM
+gendered
+gene/MS
+genealogy/MS3w1
+genera/onVWMv1
+general-purpose
+general/tqQs3+8S-9PM
+generalise/l
+generalised/c
+generalises/c
+generalising/c
+generalissimo/SM
+generalist
+generality/SM
+generalize/l
+generalship/MS
+generate/CDGVSNnA
+generation/AMC
+generational/Y
+generative/AY
+generator/ASM
+generic/S
+genericness
+generosity/MS
+generous/cU
+generously/U
+generousness/MS
+genesis
+Genet
+genetic/SY3
+geneticist
+genetics/M
+Geneva/M
+Genevafontein
+Genevieve/M
+Genghis
+genial/P
+geniality/SFM
+genially/F
+genie/oMS
+genii/M
+genital/YF
+genitalia
+genitals
+genitive/SM
+genitourinary
+genius/SM
+Genoa/M
+genocidal
+genocide/MS
+genome/MS
+genomic
+genotype/MS
+genre/SM
+gent/AMS
+genteel/YP
+genteelest
+genteelism
+genteelness/S
+gentian/MS
+gentile/S
+gentility/SM
+gentle/mPTD5YG
+gentlefolk
+gentleman/Y
+gentlemanly/P
+gentleness/S
+Gentoo/M
+gentrification/M
+gentrify/SDGNn
+gentry/SM
+Gentshana
+genuflect/DGS
+genuflection/SM
+genuine/PY
+genuineness/S
+genus
+geocentric/Y
+geocentricism
+geochemical/Y
+geochemistry/SM
+geochronology/M
+geode/SM
+geodesic/S
+geodesy/SM
+geodetic/S
+Geoff/M
+Geoffrey/M
+geog
+geographer/MS
+geography/SMwW1
+geology/W3MwS1
+geom
+geomagnetic/Y
+geomagnetism/SM
+geometer/MSW1w
+geometric/S
+geometrician/M
+geometry/MS
+geomorphology/Mw
+geophysical/Y
+geophysicist/SM
+geophysics/M
+geopolitic/YS
+geopolitical
+geopolitics/M
+Geordie
+George-industria
+George/MS
+Georgedale
+Georgetown/M
+Georgette
+Georgeville
+Georgia/M
+Georgian/S
+Georginia
+geoscientific
+geostationary
+geosynchronous
+geothermal
+Geqindlebe
+Gerald
+Geraldine
+geranium/MS
+Gerard
+Gerber
+gerbil/MS
+Gerdau
+Gerdview
+Gerhard
+geriatric/S
+geriatrics/M
+germ/SM
+German/MSW
+germander
+germane
+germanium/M
+Germantown
+Germany/M
+germicidal
+germicide/SM
+germinal/Y
+germinate/SGNnVvD
+germination/M
+Germiston
+gerontocracy/M
+gerontology/w3SM
+gerook
+Gerry/M
+gerrymander/dS
+Gershwin
+Gertrude
+gerund/SM
+gerundive/M
+gestalt/M
+Gestapo
+gestate/xnNDSG
+gestation/M
+gesticulate/GNnVvDS
+gesticulation/M
+gestural
+gesture/MGDS
+gesuip
+gesundheit
+get-out/S
+get-rich-quick
+get/SRG
+getaway/MS
+Gethsemane
+gettable
+gettered
+Getty
+Gettysburg
+getup/MS
+gewgaw/MS
+Gewürztraminer
+Geysdorp
+geyser/MSd
+Gezangave
+Gezina
+Gezinsila
+Gezubuso
+Ghana/M
+ghastliness/S
+ghastly/TP
+ghat/SM
+Ghent
+gherkin/SM
+ghetto/QSMGD
+ghettoes
+ghillie/SM
+ghoen
+Gholfsig
+ghomma
+ghost-write/RSG
+ghost-written
+ghost-wrote
+ghost/MYDSG
+ghostlike
+ghostliness/S
+ghostly/PT
+ghoul/MS
+ghoulish/YP
+ghoulishness/S
+GHQ
+GHz
+giant/MS
+giantess/MS
+giantkiller
+gibber/dS
+gibberish/MS
+gibbet/SMd
+gibbon/MS
+gibbous/PY
+Gibbs
+gibe/GSD
+giber/M
+giblets
+Gibraltar/M
+Gibson/M
+giddiness/S
+Giddings
+giddy/YGDTPS
+Gideon
+Gidion
+Gifford
+gift/DihGMS
+gifted/P
+gig/MSGD
+gigabyte/S
+gigacycle/MS
+gigahertz/M
+gigantic/YP
+gigavolt
+gigawatt/M
+giggle/DRSkGY
+giggly/T
+Giggs
+gigolo/SM
+Gijanyo
+Gijima
+Gilbert/M
+Gilbertese
+Gilbertson
+Gilchrist/M
+gild/DRGJS
+gilding/M
+Gilead/M
+Giles
+Gilgamesh
+gill/MSGD
+giller
+Gillespie
+Gillette
+gillie/SM
+Gillingham
+Gillitts
+Gillview
+Gilmore/M
+gilt-edged
+gilt/S
+gimbals
+gimcrack/S
+gimcrackery/SM
+gimlet/SM
+gimmick/yMSZ
+gimmickry/MS
+gimp/MSZGD
+gimpy/T
+gin/GDSM
+Gina/M
+ginger/dYSMZ
+gingerbread/SM
+gingerly/P
+gingham/SM
+Gingindlovu
+gingivitis/MS
+ginkgo/M
+ginkgoes
+ginmill
+Gino/M
+Ginsburg
+ginseng/MS
+Gioconda
+Giorgio
+Giovanni
+gipsy/S
+Giraffe
+giraffe/MS
+Giraud
+gird/DRGS
+girdle/MDGS
+girdler/M
+girl/SM
+girlfriend/MS
+girlhood/MS
+girlie/M
+girlish/PY
+girlishness/S
+giro/M
+girt
+girth/MGDS
+Girton/M
+gist/M
+git/M
+Giuseppe/M
+Giusto
+give-away/MS
+give/RGSk7
+giveback/S
+given
+giveth
+giving/aY
+Giyani
+gizmo's
+gizzard/MS
+glacé/DSG
+glacial/Y
+glaciate/NGDSn
+glaciation/M
+glacier/SM
+glaciology/3wM
+glad/TZPGDY
+gladden/dS
+glade/MS
+gladiator/MS
+gladiatorial
+gladiola/MS
+gladioli
+gladiolus/M
+gladness/S
+gladsome/T
+Gladstone/M
+Gladys
+Glamorgan/M
+glamorise/DRSnG
+glamorize/RGNDnS
+glamorous/YU
+glamour/MGSD
+glance/GDkS
+gland/MS
+glanders/M
+glandes
+glandular/Y
+glans/M
+glare/GSkD
+glaring/P
+Glaser
+Glasgow/M
+glasnost
+glass-blower/S
+glass-blowing/SM
+glass-cloth
+glass-maker/MS
+glass-making
+glass-paper
+glass/M6ZS2GzpD
+glassful/SM
+glasshouse/MS
+glassie
+glassiness/S
+glassware/SM
+glasswort/M
+glassy/PTS
+Glastonbury/M
+Glaswegian/S
+glaucoma/SM
+glaucous
+GlaxoSmithKline
+glaze/SGDRJ
+glazed/U
+glazier/SM
+glazing/M
+gleam/MDGS
+glean/GDRSJ
+gleaning/M
+Gleason
+Glebeland
+glee/6jMS
+gleeful/P
+gleefulness/S
+Gleemoor
+Glen
+glen/MS
+Glenabbot
+Glenadrienne
+Glenanda
+Glenashley
+Glencairn
+Glencoe
+Glenconnor
+Glenda
+Glendale
+Glendevon
+Glendinningvale
+Glendower
+Glenesk
+Glenharvie
+Glenhaven
+Glenhazel
+Glenhills
+Gleniffer
+Glenmarais
+Glenmill
+Glenmore
+Glenn
+Glenpark
+Glenred
+Glensan
+Glenside
+Glenstantia
+Glenvarloch
+Glenvista
+Glenwood
+glib/TYP
+glibness/S
+glide/SGDRJ
+glim/M
+glimmer/dSJ
+glimmering/M
+glimpse/DGRMS
+glint/DGS
+glissandi
+glissando/M
+glisten/dS
+glister/dS
+glitch/SM
+glitter/kdJSZ
+glitz/GDZS
+glitzy/T
+gloaming/MS
+gloat/DkGS
+gloater/M
+glob/MS
+global/3Y
+globalisation
+globalism/S
+globalist
+globalization
+globe-trotting
+globe/SDM
+globetrotter/MS
+globular/PY
+globularity/M
+globule/MS
+globulin/SM
+glockenspiel/SM
+gloom/MDGSZz2
+gloominess/S
+gloomy/TP
+Gloria
+glorification/M
+glorify/RGDNnS
+glorious/YPI
+glory/MDSG
+Glosderry
+gloss/GDzZMS2
+glossary/SM
+glossiness/S
+glossolalia/MS
+Glossom
+glossy/TPS
+glottal
+glottalization/M
+glottis/SM
+Gloucester/M
+Gloucestershire/M
+glove/SGDRpM
+glow-worm/MS
+glow/MRDGkS
+glower/d
+Glowfish
+Gluckstadt
+glucose/MS
+glue-sniffing
+glue/RSZMDG
+glued/U
+glueing
+gluier
+gluiest
+glum/TPY
+glumness/S
+gluon/M
+glut/MSDG
+glutamate/M
+gluteal
+glutei
+gluten/MS
+gluteus
+glutinous/YP
+glutton/SM
+gluttonous/Y
+gluttony/SM
+glyceride/M
+glycerinate/MD
+glycerine/M
+glycerins
+glycerol/MS
+glycerolized/C
+glycine/M
+glycogen/SM
+glycol/SM
+Glyndebourne/M
+Glynn
+glyph/MS
+gm
+GMO
+GMT
+gnarl/MGSD
+gnash/DSG
+gnat/MS
+gnaw/GJSD
+gnawer/M
+gnawing/M
+gneiss/SM
+GNOME
+gnome/SM
+Gnomefish
+gnomelike
+gnomic
+gnomish
+gnomonic
+gnostic
+gnosticism
+GNP
+GNU
+gnu/SM
+go-ahead
+go-between
+go-kart
+go-slow
+go/RGJMy
+goad/DMGS
+goal-kick/S
+goal-line/S
+goal-mouth/M
+goal/MSDp
+goalie/MS
+goalkeeper/MS
+goalkeeping/M
+goalmouth
+goalpost/S
+goalscorer/S
+goalscoring
+goat/SM
+goatee/MS
+goatherd/MS
+goatskin/MS
+gob/DMSG
+Gobandlovu
+gobbet/SM
+gobble/DRSG
+gobbledegook/M
+gobbledygook/S
+Gobi/M
+goblet/MS
+goblin/MS
+God
+god-damn/D
+god-daughter/MS
+God-fearing
+God-forsaken
+god/pMYS
+godchild/M
+godchildren
+Goddard/M
+goddess/SM
+Gödel/M
+godfather/dSM
+godforsaken
+Godfrey/M
+godhead/S
+godhood/SM
+godless/P
+godlessness/S
+godlier/U
+godlike/P
+godliness/S
+godly/PT
+godmother/SM
+godparent/SM
+godsend/MS
+godson/MS
+Godspeed
+Godwin/M
+Godzilla/M
+Goedeburg
+Goedehoop
+Goedemoed
+Goedgedacht
+Goedgevonden
+Goedverwag
+goema
+Goering
+goes/fe
+Goethe/M
+Goff/M
+gogga/S
+goggle-box/SM
+goggle-eyed
+goggle/DRSG
+Goggles
+going's
+going/eS
+goings-on
+goitre/MDS
+goitrous
+gold-plated
+gold/TSM
+Golda
+Goldberg
+goldbrick/DRSMG
+golden/YP
+goldenrod/SM
+goldenseal/M
+goldfinch/MS
+Goldfish
+goldfish/MS
+Goldie
+goldilocks
+Golding
+Goldman
+goldmine/S
+goldsmith/MS
+Goldstein/M
+Goldwater
+Golela
+Goleta/M
+Golf
+golf/MGDRS
+Golgotha
+Goliath/M
+golliwog/MS
+golly/S
+gollywog
+Golokodo
+Golomi
+Gomez
+Gomomo
+Gomondo
+Gomoro
+Gomorrah
+Gompies
+Gomza
+gonad/MS
+gonadal
+Gondi
+gondola/MS
+gondolier/MS
+Gondwanaland
+gone/R
+gong/DMGS
+Gonguluza
+goniometer/wW
+goniometry
+Goniwe
+gonococcal
+gonococci
+gonococcus
+gonorrhoea/M
+gonorrhoeal
+Gonubie
+Gonville
+Gonzales
+Gonzalez
+goo/ZM
+Goober
+good-for-nothing/S
+good-humoured/Y
+good-looking
+good-natured/Y
+good-oh
+good-tempered
+good/PYSZ
+goodbye/MS
+gooder/S
+goodhearted
+Goodhome
+goodie/M
+goodish
+goodly/T
+Goodman
+Goodness
+goodness/S
+goodnight
+Goodrich
+goodwill/MS
+Goodwin
+Goodwood
+goody/SM
+Goodyear
+goof/GMSZD2
+goofiness/S
+goofy/TP
+Google/M
+googly/S
+gooier
+gooiest
+Goolhurst
+goon/MS
+goose-step/G
+goose/M
+gooseberry/SM
+goosebumps
+GOP
+Gopane
+gopher/MS
+Goqwana
+Goran
+Gordian
+Gordon/M
+gore/SMDG
+Goren/M
+gorge's
+gorge/EDGS
+gorgeous/PY
+gorgeousness/S
+gorger/EM
+gorgon/S
+Gorgonzola
+Gorham
+gorilla/SM
+goriness/S
+goring/M
+Gorky
+gormandise/SRDG
+gormandize/RSGD
+gormless
+gorse/MS
+gory/PTY
+gosh/S
+goshawk/SM
+gosling/M
+gospel/MS
+Gosport
+gossamer/MS
+Gosshill
+gossip/dMS
+gossiper/S
+gossipy
+got/I
+Göteborg/M
+Goth/W1
+Gothic/Q8
+Gothicism
+GOTO
+gotta
+gotten
+Gottenburg
+Gouda/M
+Goudveld
+gouge/GRSD
+Gough
+Goukou
+goulash/MS
+Gould/M
+Gounod
+gourd/M6S
+gourdful/S
+Gouritsmond
+Gouritz
+gourmand/MS
+gourmandise
+gourmandism
+gourmet/MS
+gout/SZM
+gouty/T
+gov.
+govern/7DLGS
+governable/U
+governance/SM
+governed/aU
+governess/MS
+governing/a
+government/o
+governmental
+governor/SM
+governorship/SM
+governs/a
+Govt.
+Gower/M
+gown/SMDG
+Goya
+GP
+GPL
+GPO
+GPRS
+GPS
+GPSS
+Gqaka
+Gqebera
+Gqumeni
+Gqunge
+gr
+Graaff-reinet
+Graafwater
+grab/RJDGS
+Grabouw
+grâce
+grace/E6GDSMj
+graceful/TP
+gracefully/U
+gracefulness/ES
+Graceland
+graceless/YP
+gracelessness/S
+Gracie
+gracious/UY
+graciousness/SM
+grackle/MS
+gradate/GSD
+gradation/MC
+grade's
+grade/CnDRSG
+graded/AU
+grades/A
+gradient/MS
+grading/A
+gradings
+gradual/3YP
+gradualism/MS
+gradualist
+gradualness/S
+graduand/MS
+graduate's/f
+graduate/DSGNMn
+graduates/f
+graduation/M
+Grady
+Graeme
+Graff/M
+graffiti
+graffito/M
+graft/MDRSG
+grafting/M
+Grafton
+Graham/M
+Grahamstown
+grail/S
+grain/2GSZMD
+grained/I
+grainer/M
+graininess/S
+graining/M
+grains/I
+grainy/TP
+gram/MS
+gramadoelas
+grammar/SM
+grammarian/SM
+grammatical/PY
+grammaticality's
+grammaticality/U
+grammatically/U
+gramme/MS
+gramophone/SM
+Grampian/M
+grampus/SM
+Granada
+granary/MS
+grand/TPSY
+grandam/MS
+grandaunt/MS
+grandchild/M
+grandchildren
+granddad/ZSM
+granddaddy/MS
+granddaughter/SM
+grandee/MS
+grandeur/MS
+grandfather/MdYS
+grandiloquence/MS
+grandiloquent/Y
+grandiose/Y
+grandioseness
+grandiosity/SM
+grandma/MS
+grandmaster/MS
+grandmother/MSY
+grandnephew/MS
+grandness/S
+grandniece/SM
+grandpa/MS
+grandparent/SM
+grandson/MS
+grandstand/GMSD
+grandstander/M
+granduncle/SM
+Grange
+grange/SM
+Granger
+granite/MSW
+granny/MS
+grant-maintained
+grant/DRSGM
+Grantchester
+grantee/SM
+Grantham
+grantor's
+grantsmanship/S
+granular/Y
+granularity/SM
+granulate/DSG
+granulation/M
+granule/nVSNM
+granulocytic
+Granville
+grape/SM
+grapefruit/M
+grapeshot/M
+grapevine/MS
+graph/1wMWDGS
+grapheme/M
+graphic/PS
+graphics/M
+graphite/MS
+graphology/3MS
+grapnel/SM
+grapple/GSD
+grappler/M
+grappling/M
+Graskop
+Graslaagte
+Grasland
+Grasmere
+grasp/DS7Gk
+grasper/M
+grasping/P
+grass/MDGSZ
+Grassbird
+grassers
+grasshopper/MS
+grassland/SM
+grassy/T
+grate/GSkDjR6J
+grateful/TP
+gratefully/U
+gratefulness/U
+gratefulnesses
+grates/I
+graticule/M
+gratification/M
+gratified/U
+gratify/NDGkSn
+gratifying/U
+grating/M
+gratis
+gratitude/SIM
+gratuitous/YP
+gratuitousness/S
+gratuity/MS
+gravamen/MS
+grave-stone/SM
+grave/MPRTSZDYG
+gravedigger/MS
+gravel/DGYMS
+Gravelotte
+graven
+graveness/S
+Gravesend
+graveside/S
+gravestone/MS
+graveyard/MS
+gravid/PY
+gravimeter/SWM
+gravitas
+gravitate/GNxSVDn
+gravitation/M
+graviton/MS
+gravity/SM
+gravy/SM
+Gray
+Grayson
+graze/DRGS
+grazed/c
+grazes/c
+grazing's
+grazing/c
+grease's
+grease/CRSDG
+greasepaint/MS
+greaseproof
+greasiness/S
+greasy/PTY
+great-aunt/S
+great-grandchildren
+great-grandfather
+great-grandmother/S
+great-grandparents
+great-nephew
+great-niece
+great-uncle
+great/PTYS
+greatcoat/SDM
+greathearted
+greatness/S
+grebe/MS
+Grebo
+Grecian/S
+Greece/M
+greed/zMSZ2
+greediness/S
+greedy/TP
+Greek/SM
+Greeley
+green-eyed
+green/YGSMDTP
+Greenacres
+greenbelt/S
+Greenberg
+Greenbury
+Greenbushes
+Greene/M
+greener/Z
+greenery/SM
+greenfield
+Greenfield/S
+greenfinch/SM
+greenfly/M
+greengage/SM
+greengrocer/ZSM
+greengrocery/M
+Greenhaven
+Greenhills
+greenhorn/MS
+greenhouse/MS
+greening/M
+greenish
+greenishness
+greenkeeper/SM
+Greenknock
+Greenland/WM
+greenmail/SGD
+greenness/S
+Greenpan
+Greenpeace/M
+Greenpoint
+Greensboro
+Greenshank
+Greenside
+greenstick
+greensward/SM
+Greenvillage
+Greenville
+Greenways
+Greenwich
+greenwood/SM
+Greenworld
+Greer/M
+greet/JDRSG
+greeting/M
+Greg/M
+gregarious/PY
+gregariousness/S
+Gregg
+Gregorian
+Gregory
+Greig
+gremlin/MS
+Grenada/M
+grenade/MS
+Grenadian/S
+grenadier/MS
+grenadine/MS
+Grenadines/M
+Grenoble
+Grenville
+Gresham/M
+Gresswold
+Greta
+Gretchen
+Gretel/M
+Gretna
+grew/Aec
+grey/DYPGS
+greybeard/M
+greyer
+greyhound/MS
+greyish
+greylag
+Greylingstad
+Greymont
+greyness/S
+Greyton
+Greytown
+Greyville
+grid/SMD
+griddle/MSDG
+gridiron/MS
+gridlock/GDS
+Griebdale
+grief/MS
+Grieg/M
+Griekwastad
+grievance/MS
+grieve/DkSRG
+grievous/PY
+grievousness/S
+griffin/MS
+Griffith
+griffon/M
+grill/GSD
+grille/SM
+griller/M
+grilse
+grim/PTY
+grimace/MRSDG
+Grimaldi/M
+Grimbeekpark
+grime/ZM
+Grimes
+griminess/S
+Grimm
+grimness/S
+Grimsby
+grimy/TP
+grin/DGS
+grind/SAG
+grinder/MS
+grinding/YS
+grindstone/SM
+gringo/MS
+grinner/M
+grinning/Y
+grip/MrRSdDG
+gripe/S
+gripping/Y
+Griqua
+Griquatown
+grisaille
+griseofulvin
+grisliness/S
+grisly/PT
+grist/YM
+gristle/MS
+gristly/TP
+Griswold/M
+grit/RGMZSD2
+grittiness/S
+gritty/TP
+grizzle/GSDY
+grizzling/M
+grizzly/TS
+groan/MDSRG
+groat/SM
+Groblersdal
+Groblershoop
+Groblerspark
+grocer/SZM
+grocery/MS
+Groendal
+Groenendal
+Groeneweide
+Groenkloof
+Groenleegte
+Groenvallei
+Groenvlei
+grog/MZz2
+grogginess/S
+groggy/TP
+groin/GSMD
+grok/DSG
+grommet/dSM
+groom/GSMD
+Groot
+Groot-drakenstein
+Groot-marico
+grootbek
+Grootdrink
+Grootgeluk
+Grootspruit
+Grootvlei
+Grootwater
+groove/MDSZG
+groovy/T
+grope/GSkDRJ
+grosbeak/SM
+gross/DSTGPY
+Grossman
+grossness/S
+Grosvenor
+Grosz
+grotesque/PY
+grotesqueness/S
+Groton
+grotto/MS
+grottoes
+grouch/Zz2SGD
+grouchy/T
+ground's/f
+ground-plan
+ground-squirrel
+ground/RpmDMGJS
+grounded/U
+groundless/PY
+groundnut
+grounds/f
+groundsheet/M
+groundskeepers
+groundswell/S
+groundwater
+groundwork/M
+group's
+group/DSAG
+grouper/MS
+groupie/MS
+grouping/MS
+grouse/RDGMS
+grout/GSMD
+grouter/M
+Groutville
+grove/RMS
+grovel/GSRD
+grow/7RGkS
+growing/cIe
+growl/GkSD2R
+grown-up/SM
+grown/IAce
+grows/Aec
+growth/cSIeMAf
+grub/R2zMGDSZ
+grubbiness/S
+grubby/TP
+grubstake/SDMG
+grudge/DSGMk
+grudger/M
+grudging/U
+gruel/kMGS
+gruesome/YTP
+gruesomeness/S
+gruff/TYPDG
+gruffness/S
+grumble/DSkRJG
+Grumman
+grump/2SZMz
+grumpiness/S
+grumpy/TP
+Grundy
+Grünewald/M
+grunge/SZ
+grungy/T
+grunion/MS
+grunt/DSG
+grunter/M
+Gruyère
+gryphon's
+grysvok
+GSA
+GT
+GU
+guacamole/MS
+Guadalajara
+Guadalcanal
+Guadalupe
+Guadeloupe/M
+Guam/M
+guanine/MS
+guano/MS
+Guarani
+guarani/MS
+guarantee/SGMd
+guarantor/SM
+guaranty/MS
+guard/MhimRSDG
+guarded/UY
+guardedness/M
+guardhouse/SM
+Guardia
+guardian/SM
+guardianship/SM
+guardrail/MS
+guardroom/SM
+Guatamala
+Guatemala/M
+Guatemalan/S
+guava/SM
+gubernatorial
+Gucci
+gudgeon/M
+Guenther/M
+guerilla/MS
+Guernsey/M
+guernsey/S
+Guerre
+Guerrero
+guerrilla's
+guerrillas
+guess/7DRGS
+guessed/e
+guesses/e
+guessing/e
+guesstimate/DSG
+guesswork/SM
+guest/SDMG
+guestimate/DGS
+Guevara
+guff/MS
+guffaw/DGSM
+Guggenheim
+Gugulethu
+Guguletu
+Gugveni
+Gugweni
+GUI
+Guiana/M
+guidance/MSa
+guide/aDSG
+guidebook/MS
+guided/U
+guideline/SM
+guidepost/SM
+guider's/a
+guider/SM
+Guido
+guild/SRM
+Guildford
+guildhall/SM
+guile/p6Mj
+guilefulness
+guileless/PY
+guilelessness/S
+Guillaume
+guillemot/MS
+guillotine/SMDG
+guilt/z2MSZp
+guiltiness/S
+guiltless/YP
+guilty/PT
+Guinea-Bissau/M
+Guinea/M
+guinea/MS
+Guinevere/M
+Guinness
+guise/EMS
+guitar/SM3
+guitarist
+Gujarat
+Gujarati
+gulden/MS
+gulf/MS
+gull/bDGMSY
+Gullah
+gullet/MS
+gulley/SM
+gullibility/MS
+Gulliver/M
+gully/DGMS
+gulp/DRSG
+gum/2MDGZS
+Gumbani
+gumboil/SM
+gumboot/S
+gumdrop/SM
+gummy/TP
+gumption/SM
+gumtree/MS
+Gumzana
+gun/RSDGMyZ
+gunboat/SM
+Gunderson
+Gundrift
+gunfight/RMS
+gunfire/MS
+gunk/MSZ
+gunky/T
+gunman/M
+gunmen/M
+gunmetal/M
+Gunnar
+gunnel's
+gunnery/SM
+gunning/M
+gunny/MS
+gunnysack/SM
+gunpoint/M
+gunpowder/MS
+gunrunner/MS
+gunrunning/MS
+gunship/S
+gunshot/SM
+gunsmith/SM
+Gunter
+Gunther/M
+gunwale/MS
+Guppy
+guppy/MS
+gurgle/SGD
+Gurkha/M
+gurnard
+guru/MS
+Gus
+gush/ZGRSD
+gushy/T
+gusset/SM
+gusseted
+gust's
+gust/EGDS
+Gustafson/M
+gustatory
+Gustav/M
+Gustavo
+gusto/M
+gusty/YTP
+gut/MDRGpS
+Gutenberg
+Guthrie
+Gutierrez
+gutlessness/S
+guts/Z2
+Gutshwa
+gutsy/TP
+gutta
+gutta-percha
+gutter/d
+guttering/M
+guttersnipe/MS
+guttural/YPS
+guy/MRGSD
+Guyana/M
+Guyanese
+guzzle/DRGS
+Gwadana
+Gwadu
+Gwalana
+Gwangju
+Gwegwede
+Gwen
+Gwendo
+Gwent/M
+Gwynedd
+Gwyneth
+Gxaku
+Gxara
+Gxobanyawo
+Gxokoza
+gybe/S
+gym/SM
+gymkhana/MS
+gymnasia/M
+gymnasium/MS
+gymnast/WM1S
+gymnastic/S
+gymnastics/M
+Gymnogene
+gymnosperm/SM
+gynaecological/SM
+gynaecology/wS3M
+gyp/S
+gypped
+gypping
+gyps/Z
+gypsite
+gypster/S
+gypsum/MS
+gypsy/SM
+gyrate/SNnDG
+gyration/M
+gyrator/SM
+gyrfalcon/MS
+gyrocompass/M
+gyromagnetic
+gyroscope/MSW
+h/E
+ha
+ha'p'orth
+ha'penny
+ha-ha
+Ha-nchabeng
+Ha-sethunya
+Haag/M
+Haardoornboom
+Haarlem
+Habakkuk
+habeas
+Habeni
+haberdasher/SZM
+haberdashery/SM
+Habib/M
+habiliment/MS
+habit's
+habit-forming
+habit/FdSn
+habitability/MS
+habitable/P
+habitant/FSMI
+habitat/MS
+habitation/MIF
+habited/I
+habits/I
+habitual/YP
+habitualness/S
+habituate/SDGNn
+habituation/M
+habitué/MS
+hacienda/SM
+hack/7RGDJS
+Hackett
+hackle/MSDG
+hackler/M
+Hackney
+hackney/SMD
+hacksaw/DSMG
+hackwork/S
+had
+Hadamard
+Haddad/M
+haddock/MS
+Haddon
+hades
+hadj's
+hadji's
+Hadley/M
+hadn't
+Hadrian
+hadron/MS
+hadst
+haem/MS
+haematin
+haematite/MS
+haematology/w3WSM
+haematoma/M
+haemoglobin/MS
+haemolytic
+haemophilia/SM
+haemophiliac/SM
+haemorrhage/MDWSG
+haemorrhoid/MS
+haemorrhoidal
+haemostasis
+haemostatic
+Haenertsburg
+Hafiz
+hafnium/M
+haft/DMGS
+hag/MS
+Haga-haga
+Hagar
+Hagen/M
+Hager/M
+Haggai
+haggard/PY
+haggardness/S
+haggis/MS
+haggish
+haggle/RSDG
+hagiographer/SM
+hagiography/MS
+Hagley
+Hague
+Hahn/M
+hahnium/S
+Haida
+Haifa
+haiku/M
+hail/DRMGS
+Haili
+hailstone/SM
+hailstorm/MS
+hair-drier
+hair-dryer/S
+hair-raising
+hair-slide
+hair-splitter/MS
+hair-splitting
+hair-trigger
+hair/M2DpSZ
+hairball/MS
+hairbreadth/MS
+hairbrush/MS
+haircare
+haircloth/MS
+haircut/MSG
+hairdo/SM
+hairdresser/MS
+hairdressing/MS
+hairiness/S
+hairless/P
+hairlike
+hairline/SM
+hairnet/MS
+hairpiece/SM
+hairpin/SM
+hairsbreadth/S
+hairspray
+hairspring/SM
+hairstyle/S3GM
+hairy/TP
+Haiti/M
+Haitian/SM
+Haj
+hajj/M
+hajjes
+hajji/SM
+hake/SM
+Hal/M
+Hala
+halaal
+halal/SDG
+halberd/MS
+halcyon/S
+hale/DGIS
+haler/IM
+halest
+Haley/M
+half-and-half
+half-back/MS
+half-baked
+half-beak
+half-blood/D
+half-blue/S
+half-breed/SM
+half-brother/MS
+half-caste/S
+half-century
+half-crown/MS
+half-cut
+half-deck
+half-duplex
+half-eaten
+half-fare
+half-finished
+half-hardy
+half-hearted/PY
+half-heartedness/S
+half-hour/SY
+half-inch
+half-jack
+half-length
+half-life
+half-light
+half-lives
+half-marathon/MS
+half-mast
+half-moon
+half-pay
+half-seas-over
+half-sister/SM
+half-sovereign
+half-step
+half-term/S
+half-timbered
+half-time/S
+half-tone/S
+half-track
+half-truth/S
+half-wave
+half-way
+half-yearly
+half/M
+halfbreed
+Halfmanshof
+halfness
+halfpence
+halfpenny/MS
+halfpennyworth
+halfway
+halfwit/MDhiS
+halfword/MS
+halibut/M
+halide/MS
+Halifax/M
+halite/SM
+halitoses
+halitosis/M
+hall-stand/S
+hall/SM
+hallelujah/S
+Halley/M
+hallmark/SMDG
+hallo/SGD
+halloo's
+hallow/GDS
+hallowed/U
+Halloween
+hallucinate/SNGnDVy
+hallucination/M
+hallucinogen/MWS
+hallucinogenic/S
+hallway/SM
+halo/DGMS
+haloes
+halogen/MS
+halogenated
+halon/M
+Halseton
+Halsey/M
+halt/MkSJRDG
+halter-neck
+halter/d
+Halton
+halve/DGS
+halvers
+halves/M
+halyard/MS
+ham/RGZSMD
+Hamakuya
+Hamal/M
+hamba
+Hambanati
+Hamberg
+Hambleton
+Hamburg/M
+hamburger/SM
+Hamerkop
+Hamilton/M
+Hamiltonian/S
+Hamish
+hamlet/MS
+Hamlin/M
+Hammanshof
+Hammanskraal
+Hammarsdale
+hammer/rdp
+hammerhead/SM
+hammering/M
+hammerlock/SM
+Hammersmith/M
+hammertoe/MS
+Hammett
+hammock/SM
+Hammond
+hammy/T
+hamper/dS
+hampered/U
+Hampshire
+Hampstead
+Hampton
+hamster/SM
+hamstring/MSG
+hamstrung
+Hancock/M
+hand's
+hand-held
+hand-me-down/S
+hand-pick/GDS
+hand-to-hand
+hand-to-mouth
+hand/cGSU
+handbag/DSMG
+handball/MS
+handbarrow/MS
+handbasin
+handbill/MS
+handbook/SM
+handbrake/SM
+handcart/SM
+handclasp/MS
+handcuff/DGS
+handcuffs/M
+handed/PY
+handedly/f
+handedness/S
+Handel/M
+hander/SM
+handful/MS
+handgun/MS
+handhold/SM
+handicap/RSMDG
+handicraft/SM
+Handinagi
+handiwork/SM
+handkerchief/SM
+handlanger
+handle/MRSDG
+handleable
+handlebar/MS
+handled/a
+handles/a
+handless
+Handley
+handling/M
+handmade
+handmaid/MS
+handmaiden/MS
+handout/SM
+handover
+handrail/MS
+hands-up
+handsaw/MS
+handset/SM
+handshake/SGM
+handshaker/M
+handshaking/M
+handsome/PTY
+handsomely/U
+handsomeness/S
+handspike/SM
+handspring/MS
+handstand/SM
+handwork/SM
+handwoven
+handwrite/SJG
+handwriting/M
+handwritten
+handy/TPmY
+hanepoot/S
+Haney/M
+hang-glide/RG
+hang/RJDm7SG
+hangar/dMS
+hangdog/S
+Hange
+hanger-on
+hangers-on
+hanging's
+hanging/c
+hangnail/SM
+hangout/SM
+hangover/MS
+hangs/Ac
+hangup/S
+Haniville
+hank/RSZM
+hanker/Jd
+hankerer/M
+hankering/M
+Hankey
+hankie/M
+hanky-panky
+hanky/SM
+Hanna/M
+Hannah
+Hannibal/M
+Hanoi/M
+Hanover
+Hanoverian
+Hans
+Hansa
+Hansel
+Hansen
+hanslammetjie/S
+hansom/SM
+Hanson
+Hantam
+Hanukkah
+hap/2ZpSzG
+haphazard/PY
+haphazardness/S
+hapless/PY
+haplessness/S
+haploid/S
+happen/SdJ
+happening/M
+happier/U
+happily/U
+happiness/S
+happy-go-lucky
+happy/TP
+haps/a
+Hapsburg/M
+hara
+hara-kiri
+Harald
+harangue/GSD
+haranguer/M
+Harare/M
+harass/RGLDS
+Harbhajan/M
+Harbin/M
+harbinger/MS
+harbour/RGMDpS
+harbourage
+harbourmaster's
+Harburg
+Harcourt
+hard-boiled
+hard-core
+hard-done-by
+hard-earned
+hard-headed/YP
+hard-headedness/S
+hard-hearted/PY
+hard-heartedness/S
+hard-hitting
+hard-line/R
+hard-nosed
+hard-on
+hard-paste
+hard-pressed
+hard-wire/DSG
+hard-working
+hard/YPTZz2
+Hardale
+hardback/SM
+hardbitten
+hardboard/M
+hardbound
+hardcore
+hardegat
+harden/Srd
+hardened/U
+hardening/M
+hardihood/MS
+Hardin
+hardiness/S
+Harding
+hardish
+hardness/S
+hardpan
+hardshell
+hardship/SM
+hardtop/MS
+hardware/M
+Hardwick
+hardwood/M
+hardy/TP
+hare/GMDS
+harebell/MS
+harebrained
+harelip/DSM
+harem/SM
+Hargreaves
+Harinagar
+Haringey
+hark/GDS
+harken/S
+Harkerville
+Harlan/M
+Harlem
+harlequin/MS
+Harley-Davidson
+Harley/M
+harlot/MyS
+harlotry/SM
+Harlow
+harm/GS6DMjp
+harmed/U
+Harmelia
+harmer/M
+harmful/P
+harmfulness/S
+harmless/PY
+harmlessness/S
+Harmon/M
+harmonic/S
+harmonica/MS
+harmonics/M
+Harmonie
+harmonies/E
+harmonious/EYI
+harmoniousness's
+harmoniousness/E
+harmoniousnesses/I
+harmonised/U
+harmonium/MS
+harmony's/E
+harmony/1Q-89MWSqs
+harness's
+harness/UGSD
+harnesser/M
+Harold/M
+harp/GSZRD3MJ
+harping/M
+harpist
+harpoon/MDRSG
+harpsichord/MS3
+harpsichordist
+harpy/SM
+harridan/MS
+Harriet
+Harrington/M
+Harris
+Harrisburg
+Harrismith
+Harrison
+Harrisonburg
+Harrivale
+Harrogate
+harrogate/M
+harrow/MDSG
+harrower/M
+harrumph/DGS
+Harry's
+harry/GDRS
+harsh/TPY
+harshen/d
+harshness/S
+hart/SM
+Hartbees
+Hartbeesfontein
+Hartbeeshoek
+Hartbeespoort
+Hartebeesfontein
+hartebeest
+Hartenbos
+Hartford
+Hartland
+Hartlepool/M
+Hartley
+Hartman
+Harts
+Hartsvallei
+Hartswater
+Harvard
+harvest/RSMDG
+harvested/U
+harvestman/M
+harvestmen/M
+Harvey
+Harwell
+Harwich
+has
+Hasbro
+hash/MSDG
+hashed/A
+hasher/M
+hashes/A
+hashing/M
+hashish/SM
+Haskell
+Haskins
+hasn't
+hasp/DMSG
+hassle/DGMS
+hassler
+hassock/SM
+hast/zZ2D
+haste/SM
+hasten/Sd
+hastener/M
+hastiness/S
+Hastings/M
+hasty/TP
+hat/rpRMDdSG
+hatch/ySJDG
+hatchback/SM
+hatcher/M
+hatchery/SM
+hatchet/dSM
+hatching/M
+hatchway/SM
+hate/6SMj
+hateful/P
+hatefulness/S
+Hatfield
+Hathaway/M
+hatred/MS
+Hatshama
+hatstands
+Hattie
+Hattingspruit
+Hatton
+hauberk/MS
+Haugen/M
+haughtiness/S
+haughty/TPY
+haul/cGSD
+haulage/MS
+hauler/SM
+haulier/MS
+haunch/GMDS
+haunt/RkJGSD
+Hauptmann
+Hausa
+Hauser
+hauteur
+Havana/M
+Havant
+have-not/SM
+have/GS
+haven't
+haven/SM
+Havencrest
+Havenside
+haver/S
+havering
+haversack/SM
+havoc/DGSM
+haw/GSMD
+Hawaii/M
+Hawaiian/S
+hawk/MRGDS
+hawking/M
+Hawkins/M
+hawkish
+hawkishness/S
+Hawkray
+Hawley
+haws/R
+Hawston
+hawthorn/SM
+Hawthorne
+hay/MDSG
+haycock/SM
+Hayden/M
+Haydn/M
+hayer
+Hayes
+hayfield/SM
+Hayfields
+hayloft/SM
+Haymarket
+haymow/SM
+Haynes
+hayrick/SM
+hayseed/SM
+haystack/SM
+haywain
+Hayward
+haywire
+Haywood
+hazard/MSDG
+hazardous/PY
+haze/SRGMDZ
+hazel/SM
+Hazeldene
+Hazelmere
+hazelnut/MS
+Hazelpark
+Hazelwood
+Hazendal
+haziness/S
+Hazlitt
+hazy/PTY
+Hazyview
+hdqrs
+HDTV
+he'd
+he'll
+he/M
+head-hunt/RSDG
+head-on
+head/hSmZiRDz2MGJp
+headache/MS
+headband/SM
+headboard/MS
+headcount
+headdress/SM
+headedness/S
+headgear/MS
+headiness/S
+heading/M
+headlamp/S
+headland/SM
+headless/P
+headlight/MS
+headline/GMDS
+headlock/MS
+headlong
+headman/M
+headmaster/MS
+headmastership/M
+headmen/M
+headmistress/MS
+headnote
+headphone/SM
+headpiece/SM
+headquarters
+headrest/SM
+headroom/MS
+heads/c
+headscarf/M
+headset/SM
+headship/MS
+headshrinker/SM
+headstall/MS
+headstand/SM
+headstock/M
+headstone/SM
+headstrong
+headteacher/MS
+headwall/S
+headwater/S
+headway/MS
+headwind/MS
+headword/MS
+heady/T
+heal/RSGD
+Healdtown
+healed/U
+health/z2Mj6SZ
+healthcare
+healthful/P
+healthfulness/S
+healthiness/SM
+healthy/UTY
+heap/DMGS
+hear/SaAGc
+heard/aAcU
+hearer/cM
+hearers
+hearing/MS
+hearken/Sd
+hears/SA
+hearsay/SM
+hearse/M
+Hearst
+heart-rending/Y
+heart-searching
+heart-to-heart
+heart-warming
+heart/DzSi2ZMph
+heartache/MS
+heartbeat/MS
+heartbreak/GSMk
+heartbroken
+heartburn/MGS
+heartburning/M
+hearted/P
+heartedness/S
+hearten/EdSk
+heartfelt
+hearth/SM
+hearthrug
+hearthstone/SM
+heartiness/S
+heartland/MS
+heartless/YP
+heartlessness/S
+heartsick/P
+heartstrings
+heartthrob/MS
+heartwood/M
+hearty/TSP
+heat-resistant
+heat/RDhGMS7J
+heated/KAcU
+Heatfield
+heath/MRyS
+heathen/MS
+heathendom/MS
+heathenish/Y
+heathenism/MS
+Heatherlands
+Heatherley
+Heathfield
+Heathkit
+heathland
+Heathrow/M
+heating/cK
+Heatlievale
+Heatonville
+heatproof
+heats/cAK
+heatstroke/SM
+heatwave
+heave/GSRDZ
+heaven-sent
+heaven/SMY
+heavenly/PT
+heavenward/S
+heaves/M
+heavier-than-air
+heaviness/S
+heavy-duty
+heavy-handed
+heavy/SPTY
+heavyhearted
+heavyset
+heavyweight/MS
+hebe
+hebetude
+Hebraic
+Hebraism
+Hebrew/MS
+Hebrides
+Hebron
+hecatomb/M
+heck
+heckle/RSGD
+hectare/SM
+hectic/Y
+hectogram/SM
+hectolitre/S
+hectometre/SM
+hector/dS
+Hectorspruit
+Hectorton
+hedge/SRMDGk
+hedgehog/MS
+hedgehop/GDS
+hedgerow/SM
+hedonism/MS
+hedonist/WSM
+heed/6jGpDSM
+heeded/U
+heedful/P
+heeding/U
+heedless/PY
+heedlessness/S
+heehaw/DGS
+heel/DpMRGS
+heeling/M
+Heemstede
+heft/zDGSZ2
+heftiness/S
+hefty/TP
+Hegel
+Hegelian
+hegemony/WSM
+hegira/S
+heh
+Heidedal
+Heideland
+Heidelberg
+Heiderand
+Heideveld
+Heidfeld
+Heidi/M
+heifer/MS
+heigh
+heigh-ho
+height/MS
+heighten/dS
+Heilbron
+heinous/PY
+heinousness/S
+Heinrich/M
+Heinz
+heir/MSF
+heiress/MS
+heirloom/SM
+Heisenberg
+Hekpoort
+held
+Heldebloom
+Helderberg
+Helderblom
+Helderkruin
+Helderrant
+Helderview
+Helderzicht
+Helen/SM
+Helena/M
+Helene
+Helenvale
+helical/Y
+helices/M
+helicon/M
+helicopter/MdS
+Helikonhoogte
+Helikonpark
+heliocentric
+heliography/M
+Helios
+heliosphere
+heliotrope/MS
+heliport/MS
+helium/M
+helix/M
+hell-bent
+hell-cat/SM
+hell-fire/M
+hell-hole/MS
+hell-raiser
+hell/SM
+hellebore/MS
+Hellenic
+Hellenise/nDSG
+Hellenism
+Hellenist/MWS
+Hellenize/SGD
+Heller
+Helling
+hellish/YP
+hellishness/S
+hello/MGS
+helluva
+helm/MSmGD
+helmet/MdS
+Helmholtz
+Helmut
+Héloise/M
+helot/S
+help/jRJpS6GD
+helpful/P
+helpfully/U
+helpfulness/S
+helping/M
+helpless/PY
+helplessness/S
+helpline/S
+helpmate/SM
+helpmeet's
+Helpmekaar
+Helsinki/M
+helter
+helter-skelter
+helve/SM
+Helvetian
+hem/MGRDS
+Hemichordata
+Hemingway
+hemisphere/wDSMW
+hemline/MS
+hemlock/MS
+hemp/SM
+hempen
+hemstitch/MSGD
+Hemuhemu
+hen/SyM
+Henbyl
+hence
+henceforth
+henceforward
+henchman/M
+henchmen/M
+Henderson
+Hendricks
+Hendrickson
+Hendrina
+Hendrix
+henge/M
+Henley/M
+henna/MGDS
+Hennenman
+Hennessey/M
+Hennieklip
+Hennopsmeer
+Hennopspark
+henpeck/DGS
+Henri/M
+Henrietta
+Henry/M
+henry/M
+Henryville
+Henville
+hep
+heparin/MS
+hepatic/S
+hepatitides
+hepatitis/M
+heptagon/MS
+heptagonal
+heptane/M
+heptathlon/S
+her/GS
+herald/WGDMyS
+heralded/U
+heraldry/SM
+herb/SM
+herbaceous
+herbage/SM
+herbal/3S
+herbalism
+herbalist
+Herbert/M
+Herbertsdale
+herbicidal
+herbicide/SM
+herbivore/SM
+herbivorous/Y
+Herby
+Herculaneum
+herculean
+Hercules
+herd/DRmMGS
+here's
+here/FI
+hereabout/S
+hereafter/S
+hereat
+hereby
+hereditary
+heredity/SM
+Hereford/M
+Herefordshire/M
+herein
+hereinafter
+hereof
+Herero
+Hereroland
+heresy/SM
+heretic/MS
+heretical
+hereto
+heretofore
+hereunder
+hereunto
+hereupon
+herewith
+Heriot-Watt
+Heriotdale
+heritability
+heritable/I
+heritage/SM
+heritor/MI
+Herlear
+Herman
+Hermann/M
+Hermannsburg
+Hermanstad
+Hermanus
+hermaphrodite/WSM
+hermaphroditism
+Hermaphroditus
+hermeneutic/S
+hermeneutics/M
+Hermes
+hermetic/SY
+hermetical
+Hermina
+hermit/SM
+hermitage/MS
+hermitian
+Hermon
+Hermosa
+Hernandez/M
+hernia/MnS
+hernial
+herniate/DGS
+hero/1MW
+Herod/M
+Herodotus
+heroes
+heroic/S
+heroin/MS
+heroine/SM
+heroism/SM
+Herold
+heron/MS
+herpes/M
+herpetology/S3M
+Herr
+Herrick
+herring/MS
+herringbone/DGSM
+Herrington
+Herschel
+herself
+Hershel
+Hershey
+Hertfordshire/M
+hertz/M
+Hertzog/M
+Hertzogville
+Herzegovina/M
+hesitance/SZ
+hesitancy/MS
+hesitant/Y
+hesitate/NGSDkn
+hesitater/M
+hesitating/UY
+hesitation/M
+Hesperus
+Hess
+Hessian/S
+Hester/M
+Hestiapark
+heterodox/Z
+heterodoxy/SM
+heterodyne
+heterogamous
+heterogamy/M
+heterogeneity/MS
+heterogeneous/YP
+heterosexual/YMS
+heterosexuality/SM
+heterostructure
+heterozygous
+Hettie/M
+Heunaar
+Heuningklip
+Heuningspruit
+heuristic/MSY
+Heuser/M
+Heuwelkruin
+Heuweloord
+Heuwelsig
+hew/DGRS
+Hewett/M
+Hewitt/M
+Hewkin/M
+Hewlett/M
+hewn
+hex/GDS
+hexachloride/M
+hexadecimal/YS
+hexafluoride/M
+hexagon/MoS
+hexagonal
+hexagram/SM
+hexameter/SM
+hexane
+hexer/M
+Hexpark
+hey
+heyday/MS
+Heynspark
+Heywood
+Hezekiah
+HF
+Hg
+hgt
+HGV
+hgwy
+hi
+Hi
+Hi-Fi/S
+Hialeah
+hiatus/SM
+Hiawatha
+Hibberdene
+hibernate/nDGSN
+hibernation/M
+hibernator/MS
+Hibernia
+Hibernian
+hibiscus/MS
+hiccough
+hiccup/MdS
+Hick
+Hickey/S
+Hickman/M
+hickory/SM
+hicks
+hid/r
+hidden/U
+Hiddingh
+hide-and-seek
+hide/GSJ
+hideaway/MS
+hidebound
+hideous/YP
+hideousness/S
+hideout/SM
+hidey
+hiding/M
+hie/SG
+hieing
+hierarchy/WSw1M
+hieratic
+hieroglyph/SW
+hieroglyphic/S
+hieroglyphics/M
+Higgins/M
+higgledy
+higgledy-piggledy
+Higgovale
+high-born
+high-class
+high-energy
+high-falutin
+high-faluting
+high-flier/S
+high-flown
+high-flyer/S
+high-flying
+high-grade
+high-handed/YP
+high-handedness/S
+high-hat
+high-heeled
+high-income
+high-jump
+high-level
+high-minded/Y
+high-mindedness
+high-octane
+high-pitched
+high-powered
+high-pressure
+high-profile
+high-quality
+high-ranking
+high-resolution
+high-rise
+high-risk
+high-sounding
+high-speed
+high-spirited
+high-spiritedness
+high-stepper
+high-stepping
+high-street
+high-strung
+high/TPSY
+highbrow/MS
+Highbury
+highfalutin
+Highfield
+Highflats
+Highgate
+highish
+highland/RSM
+Highlands
+highlight/MDRGS
+highness/S
+highpoint
+Highridge
+hight
+Highveld
+Highview
+highway/MmS
+hijack/SDRJG
+hijackers'
+hike/DRSG
+hilarious/PY
+hilariousness/S
+hilarity/SM
+Hilary
+Hilbert
+Hildasia
+Hildebrand/M
+Hiligaynon
+hill/MGSY2
+Hillary
+Hillbrow
+Hillcrest
+Hilldene
+Hillgrove
+Hilliard
+hilliness/S
+hillock/SM
+Hillrise
+Hillsboro
+Hillsdale
+Hillshaven
+Hillside
+hillside/SM
+Hilltop
+hilltop/SM
+Hillview
+hillwalker
+hillwalking
+hilly/PT
+Hillyer
+hilt/DMSG
+Hilton
+him
+Himachali
+Himalayas
+Himeville
+himself
+Hinckley
+hind/R
+Hindemith
+Hindenburg
+hinder/d
+hindered/U
+hinderer/M
+Hindi
+hindmost
+hindquarters
+hindrance/SM
+hindsight/MS
+Hindu/SM
+Hinduism
+Hindustan/M
+Hines
+hinge/MSDG
+hinged/U
+hinger
+hinges/U
+hinging/U
+Hinkle
+Hinsdale
+hint/MRGSD
+hinterland/MS
+hip/TDSZMG
+hipbone/MS
+hipness/S
+hippie/M
+hipping/M
+hippo/MS
+Hippocratic
+hippodrome/MS
+Hippomere
+hippopotamus/SM
+hippy/TSM
+hipster/MS
+Hiram
+hire-purchase
+hire/SADG
+hireling/SM
+hirer/MS
+hiring/S
+Hiroshi/M
+Hiroshima
+Hirsch
+hirsute/P
+hirsuteness/S
+his/DJG
+Hispanic/MS
+hiss/MS
+hisser/M
+hissing/M
+hist
+histamine/MS
+histochemic
+histochemical
+histochemistry/M
+histogram/SM
+histology/3MwS
+historian/SM
+historical/P
+historicism/M
+historicist/M
+historicity/MS
+historiographer/SM
+historiography/SMw
+history/W1SKM
+histrionic/YS
+histrionics/M
+hit-and-miss
+hit-and-run
+hit/SRMpG
+Hitachi
+hitch-hike/RGSD
+hitch/RDSG
+Hitchcock
+hitched/U
+hitches/U
+hither
+hitherto
+hitherto-unseen
+Hitler/M
+hittable
+hitting/a
+Hittite/MS
+HIV
+hive/DSGM
+Hlababomvu
+Hlabathini
+Hlabati
+Hlabatshane
+Hlabisa
+Hlakaniphani
+Hlalanathi
+Hlalanikahle
+Hlambanyathi
+Hlanganani
+Hlanhlankosi
+Hlatini
+Hlobane
+Hlobo
+Hlogo-ya-nku
+Hlokosi
+Hlomanthethe
+hlonipha
+Hluhluwe
+Hluku
+Hluleka
+Hluvukani
+Hlwahlwazi
+hmm
+HMS
+HMSO
+ho-hum
+ho/FSM
+hoar/2ZM
+hoard/RJMDGS
+hoarding/M
+hoarfrost/MS
+hoariness/S
+hoarse/TPY
+hoarseness/S
+hoary/TP
+hoax/RSDMG
+hob/ZDMGS
+Hobart/M
+Hobbes
+hobbit
+hobble/DRSG
+Hobbs
+hobby-horse/MS
+hobby/S3M
+hobgoblin/SM
+Hobhouse
+hobnail/MDS
+hobnob/DGS
+Hoboken
+Hobsonville
+hock/MS
+hockey/SM
+hocus
+hocus-pocus
+hod/SM
+hodge/MS
+hodgepodge/MS
+Hodgkin/M
+hoe/RDSMG
+hoecake/SM
+Hoedspruit
+Hoekwil
+hoes/F
+Hoeveldrif
+Hoff/M
+Hoffman
+Hofmeyr
+hog/GMSD
+hogan/MS
+Hogarth
+hogback/SM
+Hogg
+Hoggard
+hogger
+hoggish/Y
+Hogsback
+hogshead/MS
+hogwash/SM
+Hoha
+Hoheizen
+Hohenort
+Hohoza
+hoist/DGS
+hoister/M
+Hoita
+hoity
+hoity-toity
+hokaai
+hokey
+hokey-cokey
+Hokkaido
+Holawola
+Holbeck
+Holbrook
+Holcomb/M
+hold-up/MS
+hold/RGS7J
+holdall/MS
+Holden
+holding/M
+holdout/SM
+holdover/SM
+Holdsworth/M
+hole/SGMDZ
+holeable
+Holela
+holey
+Holfontein
+holiday/GSMD
+holidayer
+holidaymaker/S
+Holimisa
+holiness/S
+holistic/Y
+Holland/M
+hollandaise
+Hollander/S
+Hollerith
+Hollister
+hollow-eyed
+hollow/PSDGTY
+Holloway/M
+hollowness/S
+hollowware/M
+holly/MS
+hollyhock/SM
+Hollywood/M
+Holm/M
+Holman/M
+Holmdene
+Holmes
+holmium/M
+holocaust/MS
+Holocene
+Hologo
+hologram/SM
+holograph/WMGZSD
+holography/MS
+Holomisa
+Holpan
+Holst
+Holstein
+holster/MdS
+Holt
+holy/PST
+Holyhead/M
+Holyoke
+holystone/SM
+Holzman
+homage/SM
+homager/M
+homburg/MS
+home-based
+home-brew/MDS
+home-builder/S
+home-building
+home-grown
+home-made
+home-maker/MS
+home-making/M
+home-owner/SM
+home-ownership
+home-owning
+home-schooling
+home-shopper
+home-shopping
+home/DGMYRSzp
+homebody/MS
+homebuilt
+homecoming/SM
+Homelake
+homeland/MS
+Homeleigh
+homeless/P
+homelessness/S
+homelike
+homeliness/S
+Homelite
+homely/PT
+homepage
+Homer
+Homeric
+Homerton
+homesick/P
+homesickness/S
+homespun/S
+Homestead
+homestead/RGMSD
+homestretch/MS
+Homevale
+Homevalley
+homeward-bound
+homeward/S
+homework/RM
+homey/P
+homeyness/S
+homicidal
+homicide/MSo
+homier
+homiest
+homiletic/S
+homily/SM
+hominess's
+homing/M
+hominid/MS
+homo/MS
+homoeopath/SZW
+homoeopathy/SM
+homoeostases
+homoeostasis/M
+homoeostatic
+homoeotherm/WZ
+homoeothermal
+homoerotic
+homogamy/M
+homogenate/MS
+homogeneity/ISM
+homogeneous/Y
+homogeneousness
+homogenisation
+homogenise/GDRS
+homogenize/RSnNDG
+homograph/MS
+homologous
+homologue/M
+homology/wMS
+homomorph/ZW1M
+homomorphism/MS
+homomorphous
+homonym/SZWM
+homonymous
+homophobe/SW
+homophobia/S
+homophone/SMZ
+homophonous
+homopolar
+homopolymers
+Homoptera
+homopteran
+homopterous
+homosexual/YSM
+homosexuality/SM
+homotopy
+homozygous/Y
+homunculus
+Hon.
+honcho/S
+Honda/M
+Hondo
+Honduras/M
+hone/TGMDS
+Honecker
+honer/S
+honest-to-God
+honest-to-goodness
+honest/EZY
+honester
+honestest
+honesty/MES
+honey/DSM
+honeybee/MS
+honeybird/SM
+honeybush
+Honeycomb
+honeycomb/SDGM
+Honeydew
+honeydew/SM
+honeyguide/SM
+Honeyhills
+honeylocust
+honeymoon/MRGDS
+honeypot/SM
+honeysuckle/SM
+Honeywell
+Hong/M
+Honiara/M
+Honingklip
+honk/MGRDS
+Honolulu
+honorand
+honoraria
+honorarium/SM
+honorary/SY
+honorific/Y
+honour/El7DMRSG
+honourable/SM
+honourableness
+honourably/S
+Honshu/M
+hood/GDSMi
+hooded/P
+hoodlum/MS
+hoodoo/MDSG
+hoodwink/DGS
+hoodwinker/M
+hooey/SM
+hoof/DMGS
+hoofer/M
+hoofmark/S
+Hoogstede
+Hoogte
+hook-nosed
+hook/RSDGM
+hookah/MS
+Hooke
+hooked/U
+hooks/U
+Hookskate
+hookup/MS
+hookworm/MS
+hooligan/MS
+hooliganism/MS
+hoop/DGMS
+hooper/M
+hoopla/SM
+Hoopoe
+Hoopstad
+hooray/S
+Hoosier
+hoot/RSDMG
+hootch's
+Hoover's
+hoover/d
+Hoovers
+hooves/M
+hop/DMRdSG
+hope/p6SMj
+Hopefield
+hopeful/PS
+hopefulness/S
+hopeless/PY
+hopelessness/S
+hoper/M
+Hopetown
+Hopewell
+Hopkins
+Hopland
+hoppled
+hopples
+hopscotch/M
+Horace
+Horatio
+Horatius
+horde/MS
+Horgan
+Horison
+Horisonpark
+horizon/MS
+horizontal/YS
+hormonal
+hormone/MoS
+Hormuz
+horn-rimmed
+horn/pMSZGDi2
+hornbeam/M
+hornbill/MS
+hornblende/MS
+Hornblower
+Horne
+horned/P
+horner
+hornet/SM
+hornfels
+Hornlee
+hornlike
+hornpipe/SM
+horny/TP
+horology/SMWw3
+horoscope/SM
+Horowitz
+horrendous/Y
+horrible/YP
+horribleness/S
+horrid/YP
+horrify/kSGW1D
+horror-stricken
+horror-struck
+horror/SM
+horse-breaker
+horse-cloth
+horse-doctor
+horse-drawn
+horse-race/SMG
+horse-trade/G
+horse-trader
+horse/pm5DGMYS
+horseback
+horsebean
+horsebox
+horsedom
+horseflesh/M
+horsefly/SM
+horsehair/SM
+horselike
+horsemanship/MS
+horseplay
+horsepower
+horseradish/MS
+Horseshoe
+horseshoe/MGDS
+horsetail/MS
+horsewhip/MGDS
+horsey
+Horsham
+horsier
+horsiest
+horsing/M
+Horst
+hortatory
+horticultural
+horticulture/3MS
+Horton
+hos/dS
+hosanna/GDS
+hose/M
+Hosea
+hosepipe
+hosier/MSZ
+hosiery/MS
+hosp
+hospice/MS
+hospitable/YI
+hospitably/I
+hospital/-qQSM8
+hospitality's/I
+hospitality/SM
+host/GDSMY
+hostage/SM
+hostel/RMDGSy
+hostelry/SM
+hostess/GSMD
+hostile/Y
+hostility/SM
+hostler/MS
+hot-air
+hot-blooded
+hot-desking
+hot-headed/Y
+hot-headedness
+hot-swap
+hot-swappable
+hot-tempered
+hot-water
+hot-wire
+hot/STPDGY
+Hotazel
+hotbed/MS
+hotbox/SM
+hotcake/S
+hotchpotch/M
+hotel/mMS
+hotelier/MS
+hotfoot/DSG
+hothead/iDMhS
+hotheaded/P
+hotheadedness/S
+hothouse/DSMG
+hotline
+hotness/S
+hotnot/S
+hotplate/MS
+hotpot/M
+hotrod
+hotshot/S
+hotspot/S
+Hottentot/MS
+Houdini
+hough/M
+Houghton
+hound/DSGM
+hounder/M
+hounding/M
+Hounslow
+hour/SYM
+hourglass/MS
+houri/SM
+hourly/S
+house's/e
+house-hunter
+house-hunting
+house-husband
+house-mother/MS
+house-parent/SM
+house-plant/S
+house-proud
+house-sit/R
+house-to-house
+house-train/D
+house-warming/MS
+house/mGJSM6D
+houseboat/SM
+housebound
+houseboy/MS
+housebreak/RGJS
+housebreaking/M
+housebroke
+housebroken
+housebuilding
+houseclean/DJGS
+housecleaning/M
+housecoat/SM
+housed/A
+housefather/S
+housefly/MS
+houseful/MS
+household/RSM
+housekeep/RG
+housemaid/MS
+housemanship
+housemaster
+housemater's
+housematers
+housemistress
+housemother/S
+houser
+houses/eA
+housetop/SM
+housewares
+housewife/YM
+housewifely/P
+housewine
+housewives
+housework/MRS
+housing's
+housing/A
+Houston
+Houtbosdorp
+hove
+Hove/M
+hovel/SM
+hover/dS
+hovercraft/M
+hoverer/M
+Hovheni
+how/MS
+Howard
+Howardene
+howbeit
+howdah/SM
+Howe/S
+Howell
+however
+Howick
+howitzer/MS
+howl/RSDMG
+howsoever
+HOWTO
+howzit
+Hoy
+hoy/M
+Hoyana
+hoyden/MdS
+hoydenish
+Hoyi
+Hoyle
+Hoyt/M
+HP
+HQ
+hr.
+HRH
+hrs.
+html
+HTTP
+http/S
+HTTPS
+Huang
+hub-cap/MS
+hub/MZS
+Hubbard/M
+Hubble/M
+hubbub/M
+hubby/MS
+hubcaps
+Huber/M
+Hubert
+hubris/SM
+Huck
+huckleberry/MS
+huckster/SdM
+HUD
+Huddersfield
+huddle/MGSD
+huddler/M
+Hudson
+hue/MS
+Huey
+huff/Mz2DGSZ
+huffiness/S
+Huffman/M
+huffy/TP
+hug/DGS
+huge/YPT
+hugeness/S
+Hugenoot
+Huggins
+Hugh
+Hughes
+Hughie
+Hugmat
+Hugo
+Huguenot/SM
+huh/S
+Huhudi
+hula/DMGS
+hulk/GMSD
+Hull/M
+hull/RSGDM
+hullabaloo/SM
+hulling/M
+hullo/GSMD
+hum/RSGD
+human/qsQ3YPS98-
+humane/IY
+humaneness's
+humaneness/I
+humanenesses
+humaner
+humanise/CnRDSG
+humanism/SM
+humanist/W
+humanitarian/S
+humanitarianism/MS
+humanity/ISM
+humanize/CNSGDnR
+humankind/M
+humanly/I
+humanness/S
+humanoid/S
+Humansdorp
+Humber
+Humberside
+humble/PGTYSD
+humbleness/S
+Humboldt
+humbug/MGDS
+humdinger/MS
+humdrum
+Hume
+Humerail
+humeral/S
+humeri
+humerus/M
+Humewood
+humid/Y
+humidification/MC
+humidify/CRnSGDN
+humidistat/M
+humidity/SM
+humidor/SM
+humiliate/SGNDnk
+humiliation/M
+humility/SM
+hummable
+Hummel/M
+hummingbird/MS
+hummock/MDGSZ
+hummus/S
+humongous
+humorist/SMW
+humorous/YP
+humorousness/S
+humour/MDphGS
+humourer/S
+humourless/PY
+humourlessness/S
+hump/SGDM
+humpback/DMS
+humph/S
+Humphrey/M
+Humpty
+humus/MS
+Hun/S
+hunch/MGSD
+hunchback/SDM
+hundred/HMS
+hundredweight/MS
+hung/Ry
+Hungarian/S
+Hungary/M
+hunger/d
+hungover
+hungriness/S
+hungry/TPY
+hunk/SZM
+hunker/Sd
+hunky/T
+hunt/RSGDmJ
+hunter-gatherer/S
+Hunterville
+hunting/M
+Huntingdon/M
+Huntingdonshire/M
+Huntington
+Huntley/M
+huntress/MS
+Huntsville
+Hupa
+hurdle/SGDRM
+hurl/RDSYG
+Hurley/M
+hurling/M
+Hurlingham
+hurly-burly
+Hurlyvale
+Huron
+hurrah
+hurray/S
+hurricane/MS
+hurried/P
+hurriedly/U
+hurrier
+hurry/SDhiG
+Hurst
+Hursthill
+hurt/j6GkS
+hurter/M
+hurtful/P
+hurtfulness/S
+hurtle/GSD
+husband/MGyYSD
+husbander/M
+husbandry/MS
+hush/GSD
+husk/R2SZGDMz
+huskiness/S
+husking/M
+husky/TSP
+Hussain/M
+hussar/SM
+Hussein/M
+hussy/SM
+hustings/M
+hustle/RSDG
+Huston/M
+hut/MDSG
+hutch/SDGM
+Hutchins
+Hutchinson
+Hutchison
+Hutu
+Huxley
+Huygens
+Hwibi
+hwyl
+hyacinth/MS
+hyaena/MS
+Hyatt
+hybrid/M8Q-Sq
+hybridism/MS
+Hyde/M
+Hydepark
+Hyderabad
+hydra/SMn
+hydrangea/SM
+hydrant/MS
+hydrate's
+hydrate/ASDGNC
+hydration/MCS
+hydraulic/SY
+hydrazine/M
+hydride/MS
+hydro/MS
+hydrocarbon/SM
+hydrocephali
+hydrocephalus/MS
+hydrochemistry
+hydrochloric
+hydrochloride/M
+hydrodynamic/S
+hydrodynamical
+hydrodynamics/M
+hydroelectric/Y
+hydroelectricity/SM
+hydrofluoric
+hydrofoil/SM
+hydrogen/MnN
+hydrogenate's
+hydrogenate/GCDSN
+hydrogenation/CM
+hydrogenous
+hydrology/S3Mw1
+hydrolyse/DSG
+hydrolysis/M
+hydromagnetic
+hydromechanics/M
+hydrometer/MS
+hydrometry/SM
+hydrophilic
+hydrophobia/MS
+hydrophobic
+hydrophone/SM
+hydroplane/GMDS
+hydroponic/YS
+hydroponics/M
+hydrosphere/SM
+hydrostatic/S
+hydrostatics/M
+hydrotherapy/SM
+hydrothermal/Y
+hydrous
+hydroxide/SM
+hydroxyl/MSN
+hydroxylate
+hydroxyzine/M
+hyena/MS
+hygiene/WM3S1
+hygienic/S
+hygienics/M
+hygrometer/MS
+hygroscopic
+Hyman
+hymen/MS
+hymeneal/S
+hymn-book/MS
+hymn/MSWGD
+hymnal/SM
+hymnary/S
+hymnody
+hymnographer
+hymnography
+hymnology/3
+hype/DSGM
+hyper/S
+hyperactive/S
+hyperactivity/SM
+hyperaemia/M
+hyperaemic
+hyperaesthesia
+hyperaesthetic
+hyperbola/SM
+hyperbole/1MWS
+hyperboloid/MS
+hyperboloidal
+hypercellularity
+hypercritical/Y
+hypercube/MS
+hyperfine
+hypergamous/Y
+hypergamy/M
+hyperglycaemia
+hyperglycaemic
+hyperinflation
+Hyperion
+hypermarket/MS
+hypermedia
+hyperplane/MS
+hyperplasia/M
+hypersensitive/P
+hypersensitiveness/S
+hypersensitivity/MS
+hypersonic
+hyperspace/M
+hypersphere/M
+hypertension/SM
+hypertensive/S
+hypertext/SM
+hyperthyroid
+hyperthyroidism/MS
+hypertrophy/SMDG
+hyperventilate/GnSDN
+hyperventilation/M
+hyphen/MSNdn
+hyphenate/SDG
+hyphenated/U
+hyphenation/M
+hypnoses
+hypnosis/M
+hypnotherapy/SM
+hypnotic/YS
+hypnotise/DGS
+hypnotism/MS
+hypnotist/SM
+hypnotize/SGD
+hypo-allergenic
+hypo/SDMG
+hypoactive
+hypocaust
+hypocellularity
+hypochondria/MS
+hypochondriac/MS
+hypocrisy/SM
+hypocrite/MSw1
+hypodermic/S
+hypoglycaemia/MS
+hypoglycaemic/S
+hypophyseal
+hypotenuse/MS
+hypothalami
+hypothalamic/Y
+hypothalamus/MW
+hypothermia/SM
+hypotheses
+hypothesis/r8d9QSM
+hypothetical/Y
+hypothyroid
+hypothyroidism/MS
+hypoxaemia
+hypoxia/M
+hypoxic
+hyrax
+hyssop/MS
+hysterectomy/MS
+hysteresis/M
+hysteria/MS
+hysteric/YMS
+hysterical
+Hyundai/M
+Hz
+I
+I'd
+I'll
+I'm
+i's
+I've
+i.e.
+IA
+Iain
+iamb/MSW
+iambi
+iambic/S
+iambus/MS
+Ian/M
+iatrogenic
+Iban
+Ibaxa
+Iberia/M
+Iberian/MS
+ibex/MS
+ibid
+ibidem
+Ibika
+ibis/MS
+Ibisi
+Ibiza
+IBM/M
+Ibrahim
+Ibsen
+ibuprofen/S
+IC
+Icarus
+ICC/M
+ice-cold
+ice-skate/G
+ice/DmSGMJ
+iceberg/SM
+iceboat/SM
+icebound
+icebox/SM
+icebreaker/MS
+icecap/MS
+Iceland/RWM
+Iceni
+icepack
+icepick/S
+ichneumon/M
+ichthyology/3SM
+icicle/SM
+iciness/S
+icing/M
+icky/T
+ICM
+icon/WSM
+iconoclasm/MS
+iconoclast/MSW
+iconography/MWS
+icosahedra
+icosahedral
+icosahedron/M
+ICT/S
+ictorianises
+ictus/MS
+ICU
+icy/YPT
+id/MY
+Ida/M
+Idaho
+Idasvallei
+idea/oMS
+ideal/Mq-8s3Q9S
+idealism/MS
+idealist/W1
+idealization/M
+idealogical
+ideate/NS
+ideation/M
+idem
+idempotent/S
+identical/PY
+identifiable/U
+identification/Ma
+identified/Ua
+identifies/a
+identify/lSGnRBND
+identifying/a
+identity/SM
+ideogram/SM
+ideograph/MSW
+ideologue/S
+ideology/w1S3M
+ides
+idiocracy
+idiocy/SM
+idiolect/M
+idiom/SMW1
+idiomatic/U
+idiomaticness
+idiopathic
+idiosyncrasy/SM
+idiosyncratic/Y
+idiot/WS1M
+idle/PSTRGD
+Idlebe
+idleness/S
+idliso
+idol/M98qsQ-S
+idolater/MS
+idolatress/S
+idolatrous
+idolatry/MS
+ids
+Idutywa
+idyll/W1MS
+idyllist
+IEE
+IEEE
+Iestyn
+if/FS
+Ifafi
+iffiness/S
+iffy/T
+ifs
+Igbo
+igloo/SM
+Ignatius
+igneous
+ignitable
+ignite/DASG
+igniter/M
+ignition/SM
+ignoble/PY
+ignominious/Y
+ignominy/SM
+ignorable
+ignoramus/SM
+ignorance/MS
+ignorant/YS
+ignorantness's
+ignore/SGD
+ignorer/M
+Igoda
+Igor/M
+iguana/MS
+ii
+iii
+Ijo
+Ikageleng
+Ikageng
+Ike/M
+Ikea/M
+Iketsetseng
+Ikey/S
+Ikgomotseng
+Ikhutseng
+Ikwezi
+ilea
+ileitides
+ileitis/M
+ileum/M
+ilia
+iliac
+Iliad
+Ilinge
+Ilitha
+ilium/M
+ilk
+ill-advised
+ill-assorted
+ill-behaved
+ill-bred
+ill-conceived
+ill-considered
+ill-defined
+ill-disposed
+ill-equipped
+ill-fated
+ill-favoured
+ill-fitting
+ill-founded
+ill-gotten
+ill-humoured
+ill-informed
+ill-judged
+ill-mannered
+ill-matched
+ill-omened
+ill-starred
+ill-suited
+ill-tempered
+ill-treat/D
+ill-treatment
+ill/PY
+illegitimate/S
+illicit/P
+illicitness/S
+illimitable/P
+Illinois
+Illiondale
+illiquid
+illiterate/P
+illness/S
+Illovo
+illume/DG
+illuminable
+illuminant
+illuminate/SDGk
+illuminated/U
+illumination/M
+illumine/NSnDVG
+illusion's
+illusion/ES
+illusionary
+illusionist/MS
+illusive/PY
+illusory/P
+illustrate/nvGVDSN
+illustrated/U
+illustration/M
+illustrator/SM
+illustrious/YP
+illustriousness/S
+ilmenite
+Iloko
+image/MDySG
+Imagen/M
+imagery/MS
+imaginable/U
+imaginableness
+imaginably/U
+imaginary/SP
+imagination/M
+imaginative/P
+imaginatively/U
+imaginativeness/U
+imagine/JNnuSVlvDG
+imagined/U
+imaginer/M
+imago/MS
+imam/MS
+IMAP
+Imarike
+Imbali
+imbecile/SMW
+imbecility/SM
+Imberi
+imbibe/RGDS
+Imbizo
+imbizo
+imbongi
+Imbongozi
+imbrication/MS
+imbroglio/SM
+imbruing
+imbue/GDS
+Imbuzini
+Imdumeni
+IMHO
+imitable/I
+imitate/DVSGNvun
+imitation/M
+imitative/P
+imitativeness/S
+imitator/MS
+immaculate/PY
+immaculateness/S
+immanence/ZS
+immanency/SM
+immanent/Y
+Immanuel
+immature/P
+immeasurable/P
+immediacy/SM
+immediateness/S
+immemorial
+immense/YTP
+immensity/SM
+immerse/SNGXDb
+immerser
+immersion/M
+imminence/MS
+imminent/PY
+immoderate/P
+immolate/SNDnG
+immolation/M
+immortal/8Q
+immovability/MS
+immoveable
+immune/q8Q-
+immunity/MS
+immunoassay/M
+immunodeficiency/S
+immunodeficient
+immunology/1MWS3w
+immure/SGD
+imp/DGSM
+impact/DGV
+impaction/MS
+impactor/SM
+impair/L
+impaired/U
+impairer/M
+Impala
+impala/MS
+Impalapark
+impale/L
+impaler/M
+impart/GN
+impartation/M
+impassable/P
+impasse/bulM
+impassibility/SM
+impassible/Y
+impassion/GD
+impassioned/U
+impassive/P
+impassivity/M
+impasto/MS
+impatiens/M
+impeach/RL7
+impeachable/U
+impeached/U
+impeccability/MS
+impeccable/Y
+impecunious/YP
+impecuniousness/S
+imped/d
+impedance/MS
+impede/S
+impeded/U
+impeder/M
+impedimenta
+impel/DRSNnG
+impend/DGS
+Impendle
+impenetrable/YP
+imperative/YPS
+imperceptibility/MS
+imperfect/gVP
+Imperial
+imperial/S3Y
+imperialism/MS
+imperialist/1W
+imperil/L
+imperious/PY
+imperiousness/S
+imperishable/PY
+impermeable/Y
+impermissible
+impersonal
+impersonate/GDnSN
+impersonation/M
+impersonator/MS
+impertinence/M
+imperturbability/SM
+imperturbable/Y
+impervious/PY
+impetigo/MS
+impetuosity/SM
+impetuous/YP
+impetuousity
+impetuousness/S
+impetus/SM
+Imphal
+impi/S
+impimpi
+impinge/LS
+impish/PY
+impishness/S
+implacability/MS
+implacable/PY
+implant/7
+implausibility/M
+implement/BNRSMnDG
+implementable/U
+implementation/M
+implemented/UA
+implements/A
+implicant/MS
+implicate/DGS
+implicit/PY
+implicitness/S
+implode/GXNDS
+implore/kDSG
+implosion/M
+imply/nhVvu
+impolitic/P
+imponderable/SP
+import/nN7
+importance/SM
+important/Y
+importation/M
+imported/A
+importer/AMS
+imports/A
+importunate/PSY
+importune/RDSG
+importunity/MS
+imposable
+impose/XkN
+imposed/A
+imposes/A
+imposing/UA
+impossible/P
+impostor/SM
+imposture
+impotence/MS
+impoundments
+impoverish/DSGL
+impoverisher/M
+impracticability
+impracticable/P
+impractical/P
+imprecate/SGnDN
+imprecation/M
+impregnability/MS
+impregnable/YP
+impregnate/BNDGnS
+impregnation/M
+impresario/SM
+impress/bNXVLuv
+impressed/U
+impressibility/SM
+impression/MB3
+impressionability/SM
+impressionable/P
+impressionism/MS
+impressionist/W
+impressive/P
+impressiveness/S
+imprest/MS
+imprimatur/MS
+imprint/M
+imprison/Ld
+improbable/P
+impromptu/S
+improvable
+improve/L89sqQ
+improved/U
+improver/M
+improvisation/oM
+improvisational
+improvisatory
+impudence/MS
+impudent/Y
+impugn/RGLBDS
+impulse/uvV
+impulsion/M
+impulsive/P
+impulsiveness/S
+Impumelelo
+impunity/SM
+imputable
+imputation/M
+impute/nDNSG
+Imspringer
+in-between
+in-car
+in-depth
+in-flight
+in-house
+in-joke/S
+in-law/S
+in-line
+in-phase
+in-service
+in-store
+in-tray/S
+in/FAS
+inaccurate
+inaction
+inactive
+Inadan
+inadmissible
+inadvertence/MS
+inadvertent/Y
+inadvisability
+inalienability/SM
+inalienable/Y
+inalterableness
+inamorata/MS
+Inanda
+inane/YT
+inaneness
+inanimate
+inanimateness
+inanity/SM
+inappeasable
+inapplicability
+inappropriate/P
+inapt/P
+inarticulate
+inasmuch
+inaugural/S
+inaugurate/NGnSD
+inauguration/M
+inauspicious
+inauthentic
+inboard
+inborn
+inbound
+inbred
+inbreed/GJS
+inbreeding/M
+inbuilt
+Inc.
+Inca/S
+incalculable/PY
+incandescence/MS
+incandescent/YS
+incant/nGN
+incantation/M
+incantatory
+incapacitate/SDGN
+incapacitation/M
+incarcerate/nNSGD
+incarceration/M
+incarnadine/DSG
+incarnate/AGDSnN
+incarnation/AM
+incendiary/S
+incense/SMDG
+incentive/SEM
+incept/GvVSD
+inception/SM
+inceptor/M
+incessant/Y
+incest/MS
+incestuous/YP
+incestuousness/S
+inch/MDSG
+Inchanga
+inchoate/SDG
+Inchon
+inchworm/SM
+incidence/MFS
+incident/MSo
+incidental/FY
+incidentals
+incinerate/DnSGN
+incineration/M
+incinerator/MS
+incipience/ZMS
+incipiency/M
+incipient/Y
+incise/GXvDSNVu
+incision/M
+incisive/P
+incisiveness/S
+incisor/SM
+incite/RLX
+incl.
+inclination/ME
+incline/ESNGDn
+incliner/M
+inclining/M
+include/DvGXVuSN
+inclusion/M
+inclusive/P
+inclusiveness/S
+incognito/S
+incoherency/M
+income/SM
+incommensurable
+incommode/DG
+incommunicado
+incomparable
+incompatible
+incompetent/SM
+incomplete/P
+inconceivability/SM
+inconceivable/P
+incondensable
+incongruence
+incongruousness/S
+inconsiderable/P
+inconsolable/PY
+inconstant
+incontestability/MS
+incontestable/Y
+incontrovertible/Y
+inconvenience/GD
+inconvertibility
+inconvertible
+incorporable
+incorporate/ADSGN
+incorporated/EU
+incorrigibility/SM
+incorrigible/YPS
+incorruptible/SY
+increasable
+increase/Jk
+increaser/M
+incredible/P
+incredulous/c
+increment/SNGMDo
+incremental
+incriminate/nSDGNy
+incrimination/M
+incrustation/MS
+incubate/GNSnDV
+incubation/M
+incubator/MS
+incubus/M
+inculcate/NGnSD
+inculcation/M
+inculpate/DGS
+incumbency/MS
+incumbent/S
+incunabula
+incunabulum
+incur/lGS7D
+incurable/S
+incurious
+incurs/XN
+incursion/M
+Ind.
+indaba/S
+indebted/P
+indebtedness/S
+indecenter
+indecision
+indeed
+indefatigable/PY
+indefeasible/Y
+indefinable/PS
+indefinite/PS
+indelible/Y
+indemnification/M
+indemnify/nGSND
+indemnity/MS
+indemonstrable
+indent/NGn
+indentation/M
+indented/U
+indenter/M
+indention/MS
+indenture/GD
+independent/S
+Indermark
+indescribable/PSY
+indestructible/YP
+indeterminable/Y
+indeterminacy/SM
+indeterministic
+index-linked
+index/R7GMnD
+India/M
+Indian/MS
+Indiana/M
+Indianapolis
+indicant/SM
+indicate/vDSNGnV
+indication/M
+indicative/S
+indicator/SM
+indices/M
+indict/SGLD7
+indicter/M
+indifference
+indigence/MS
+indigenous/PY
+indigent/SY
+indignant/Y
+indignation/SM
+indigo/MS
+Indira
+indirect/PG
+indiscernible
+indiscreet/P
+indiscriminate/PY
+indispensability/MS
+indispensable/SYP
+indisputable/P
+indissoluble/YP
+indistinct/P
+indistinguishable/P
+indite/DSG
+indium/M
+individual/MQ-89YqsS3
+individualise/k
+individualism/MS
+individualist/W1
+individuality/MS
+individualize/k
+individuate/GSDnN
+individuation/M
+indivisible/PYS
+indlamu
+Indo-European
+Indochina
+indoctrinate/SGnND
+indoctrination/M
+indoctrinator/MS
+indolence/SM
+indolent/Y
+indomitable/YP
+Indonesia/M
+Indonesian/S
+indoor
+indubitable/PY
+induce/LRGNVuDSnvb
+induct/G
+inductance/MS
+inductee/MS
+induction/M
+inductive/P
+inductor/MS
+indulge/cSGD
+indulgence/MSc
+indulgent/Y
+indulger/M
+induna/S
+Industria
+industrial/QS3-8q
+industrialised/U
+industrialism/MS
+industrialist
+industrious/PY
+industriousness/S
+industry/SoM
+Indwe
+indwell/G
+Indy/WS
+inebriate/GDNnS
+inebriation/M
+inedible
+ineducable
+ineffability/MS
+ineffable/PY
+inelastic/Y
+ineluctable/Y
+inept/PY
+ineptitude/MS
+ineptness/S
+inequitable
+inequivalent
+inert/YP
+inertia/MSo
+inertial
+inertness/S
+inescapable/Y
+inessential
+inestimable/Y
+inevitability/MS
+inevitable/PY
+inexhaustible/PY
+inexorability/M
+inexorable/PY
+inexpedience/M
+inexpense
+inexpert/P
+inexplicable/PY
+inexplicitness
+inexpressibility/M
+inexpressible/PS
+inextricable/Y
+infallible
+infamous
+infamy/SM
+infancy/M
+infant/SM
+infanticide/SM
+infantile
+infantry/SmM
+infarct/SM
+infarction/SM
+infatuate/DnSGN
+infatuation/M
+infeasibility
+infeasible
+infect/EDSAG
+infected/U
+infecter
+infection/AMSE
+infectious/PY
+infectiousness/S
+infective
+infelicitous
+infer/G7DS
+inference/MGS
+inferencer
+inferential/Y
+inferior/YSM
+inferiority/MS
+infernal/Y
+inferno/MS
+infertile
+infest/GnRSND
+infestation/M
+infidel/MS
+infield
+infighting/M
+infill/MG
+infiltrate/V
+infiltrator/MS
+infinite/VZ
+infinitesimal/YS
+infinitival
+infinitive/MS
+infinitude/SM
+infinitum
+infinity/MS
+infirm
+infirmary/SM
+infirmity/SM
+infix/M
+inflame/NX
+inflammation/M
+inflammatory
+inflatable/SM
+inflate/SDnNG
+inflated/c
+inflater/M
+inflation/EMyS
+inflect/DxGVS
+inflection/MS
+inflexion/SM
+inflict/SDG
+inflicter/M
+infliction/MS
+inflight
+inflow/MG
+influence/RMDGS
+influenced/U
+influential/Y
+influenza/MS
+info/S
+inform/RVxvuyo
+informal
+informatics
+information/ES
+informative/UY
+informativeness/S
+informed/Ua
+informing/a
+informs/a
+infotainment/MS
+infra
+infra-red/M
+infrasonic
+infrastructural
+infrastructure/MS
+infrequent
+infringe/L
+infringer/M
+infuriate/SkDGN
+infuriation/M
+infuse/Rb
+infusible/P
+Ingagane
+ingcibi
+ingenious/YP
+ingeniousness/S
+ingénue/S
+ingenuity/SM
+ingenuous/PY
+ingenuously/E
+ingenuousness/S
+Ingersoll
+ingest/DGbSV
+ingestion/MS
+Ingham
+inglenook/SM
+Inglethorpe
+Inglis
+Ingogo
+ingoing
+ingoma
+ingot/MS
+Ingqayizivele
+ingrain/hG
+Ingram
+ingrate/M
+ingratiate/NGSDkn
+ingratiation/M
+ingredient/SM
+ingress/SNM
+ingression/M
+inguinal
+Ingwavuma
+inhabit/7d
+inhabitable/U
+inhabitance
+inhabited/U
+inhalant/S
+inhalation/M
+inhalator's
+inhale/NnR
+inharmonious/P
+inhere/DSG
+inherent/Y
+inherit/dSE
+inheritable/P
+inheritance/ESM
+inheritor/S
+inheritress/SM
+inheritrix/MS
+inhibit/dSNVXy
+inhibited/U
+inhibiter's
+inhibiting/U
+inhibition/M
+inhibitor/SM
+Inhlazane
+inhold/GJ
+inhomogeneous
+inhospitable/P
+inhospitality
+inhuman
+inimical/Y
+inimitable/PY
+iniquitous/YP
+iniquity/SM
+initial/Q9D-YqsS8
+initialise/KDASG
+initialised/U
+initialize/AGNnDS
+initialized/U
+initialler
+initialness
+initiate/SyDGVNn
+initiated/U
+initiation/M
+initiative/MS
+initiator/MS
+inject/DGS7V
+injection/SM
+injector/MS
+injunctive
+injure/RGDS
+injured/U
+injurious/YP
+ink/2MDSRZG
+Inkangala
+Inkanyezi
+inkatha
+inkblot/SM
+inkiness/S
+inkling/SM
+Inkomati
+inkstand/MS
+inkwell/MS
+inky/PT
+inlaid
+inland
+inlay/SG
+inlet/MS
+inlier/M
+inly/G
+inmate/SM
+inmost
+inn/SMJ
+innards
+innate/PY
+innateness/S
+inner-city
+inner/S
+innermost
+innersole/S
+innerspring
+innervate/DSGNn
+innervation/M
+innkeeper/MS
+innocence/MS
+innocent/TSY
+innocuous/YP
+innocuousness/S
+innovate/DvySnGNVu
+innovation/M
+innovator/SM
+Innsbruck
+innuendo/SDGM
+innuendoes
+innumerability/M
+innumerable/PY
+innumerate/B
+inoculate/ASNGD
+inoculation/MS
+inoculative
+inoperative
+inopportune/P
+inordinate/YP
+inpatient/SM
+input/MGS
+inquest
+inquire/RGkZD
+inquiry/MS
+inquisition/SMo
+inquisitional
+inquisitive/PY
+inquisitiveness/S
+inquisitor/oMS
+inquisitorial
+inroad/MS
+inrush/MSG
+ins
+ins.
+insane
+insangu
+insatiability/MS
+insatiable/PY
+inscribe/NXR
+inscription/M
+inscrutability/SM
+inscrutable/PY
+inscrutableness/S
+insecticidal
+insecticide/MS
+insectivore/MS
+insectivorous
+inseminate/DGnNS
+insemination/M
+insensate/PY
+insentience/S
+inseparability/MS
+inseparable/PS
+insert/DAGS
+inserter/M
+insertion/SAM
+inset/G
+inshore
+inside-out
+inside/R
+insidious/PY
+insidiousness/S
+insight/6j
+insigne's
+insignia/SM
+insincere
+insinuate/DnVSGkN
+insinuation/M
+insinuator/SM
+insipid/Y
+insipidity/SM
+insist/kDGS
+insistence/MS
+insistent/Y
+insofar
+insole
+insolence/MS
+insolent/Y
+insolubility/S
+insoluble/YSP
+insolvent/Y
+insomnia/SM
+insomniac/S
+insomuch
+insouciance/MS
+insouciant/Y
+inspect/DAGS
+inspection/MS
+inspector/MS
+inspectorate/MS
+inspectors'
+inspiration/M
+inspire/xkNnG
+inspired/U
+inspirer/M
+inspiring/U
+inspirit/d
+inst/g
+install/nNR7G
+installant
+installation/M
+installed/A
+installer/UMS
+installs/AU
+instalment/MS
+instance/DG
+instant/SMY
+instantaneous/YP
+instanter
+instantiate/GNSDn
+instantiated/U
+instantiation/M
+instantness
+instate/ALSGD
+instead
+instigate/VSnDGN
+instigation/M
+instigator/MS
+instil/DRGNnS
+instillation/M
+instilment
+instinct/vVMS
+instinctual
+institute/DRxGSV
+instituted/A
+institutes's
+institutes/A
+instituting/A
+institution/AM
+institutional/qQ-8
+institutionalism/M
+institutionalist/M
+institutions
+instruct/xVuvSDG
+instructed/U
+instruction/MS
+instructive/P
+instructor/SM
+instrument/NGMnoDS
+instrumental/3S
+instrumentalist
+instrumentality/SM
+instrumentation/M
+insufferable/Y
+insufficiency/S
+insular/Y
+insularity/MS
+insulate/SnDGN
+insulated/U
+insulation/M
+insulator/SM
+insulin/MS
+insult/kSDG
+insulter/M
+insuperable/Y
+insupportable/P
+insurable/U
+insurance/FMSA
+insure/DRSG
+insured/U
+insurgence/MZS
+insurgency/MS
+insurgent/MS
+insurmountable/Y
+insurrection/M3S
+insurrectionist
+Intabazwe
+intact/P
+intaglio/DMSG
+Intake
+intake/M
+intangible/M
+integer/nMSN
+integrability/M
+integral/MSY
+integrand/SM
+integrate/SGVBD
+integrated/EA
+integrates/AE
+integrating/AE
+integration/AME
+integrations/E
+integrator/MS
+integrity/SM
+integument/MS
+Intel/M
+intellect/SM
+intellectual/QS8YP
+intellectualism/MS
+intellectuality/M
+intelligence/MS
+intelligencer's
+intelligent/YU
+intelligentsia/SM
+intelligibilities
+intelligibility/UM
+intelligible/YP
+intelligibly/U
+Intelsat
+intemperance/S
+intemperate/P
+intemperateness/S
+intend/vuihV
+intendant/MS
+intended/P
+intense/P
+intenseness/S
+intensification/M
+intensify/RNSGDn
+intensity/MS
+intensive/SP
+intensiveness/S
+intent/PY
+intention/oDSM
+intentional/UY
+intentionality/M
+intentness/S
+inter-modal
+inter-personal
+inter-urban
+inter/EDGL
+interact/DSGVvu
+interaction/MS
+interactivity
+interaxial
+interbank
+interbred
+interbreed/SG
+intercalate/SDVGN
+intercalation/M
+intercase
+intercaste
+intercede/DSG
+interceder/M
+intercensal
+intercept/DSG
+interception/SM
+interceptor/MS
+intercession/MS
+intercessor/SM
+intercessory
+interchange/lBSDG
+interchangeability/M
+interchangeable/P
+interchanger/M
+intercity
+interclass
+intercohort
+intercollegiate
+intercom/MS
+intercommunicate/SGNnD
+intercommunication/M
+interconnect/GDSi
+interconnected/P
+interconnection/MS
+interconnectivity
+intercontinental
+interconversion/M
+intercorrelated
+intercourse/MS
+interdenominational/Y
+interdepartmental/Y
+interdependence/MSZ
+interdependency/MS
+interdependent/Y
+interdict/MDSGV
+interdiction/MS
+interdisciplinary
+interest/EMhSDG
+interested/UY
+interesting/PY
+interestingly/U
+interface/MDSG
+interfacer
+interfacing/M
+interfaith
+interfere/SGkRD
+interference/MS
+interferometer/SWM
+interferometry/M
+interferon/MS
+interfile/SGD
+intergalactic
+intergeneration/oM
+intergenerational
+interglacial
+intergovernmental
+intergroup
+interim/S
+interindex
+interindustry
+interior/YMS
+interject/DxGS
+interjection/SM
+interlace/DSG
+Interland
+interlard/DGS
+interlayer
+interlayering
+interleading
+interleave/CDGS
+interleaver/MS
+interleukin/S
+interlibrary
+interline/GJDS
+interlinear/S
+Interlingua
+interlingua's
+interlingual
+Interlingue
+interlining/M
+interlink/SDG
+interlobular
+interlock/GDS
+interlocker/M
+interlocutor/MS
+interlocutory
+interlope/DRSG
+interlude/MS
+intermarriage/MS
+intermarry/DSG
+intermediary/MS
+intermediate/PNYGDSM
+intermediation/M
+intermeshed
+intermetrics
+intermezzi
+intermezzo/SM
+interminable/YP
+intermingle/DGS
+intermission/MS
+intermittent/Y
+intermix/DSG
+intermixer
+intermodulate/SD
+intermodulation/M
+intermodule/nN
+intermolecular/Y
+intern/oxDLG
+internal/q89SQs-
+international/Q38S-q
+internationalism/MS
+internationalist
+internationality/M
+internecine
+internee/SM
+internet
+Internet/M
+internetwork
+internist's
+internship/MS
+internuclear
+interocular
+interoffice
+interoperate/NBSGD
+interpenetrates
+interpenetration
+interpersonal/Y
+interplanetary
+interplay/MGSD
+Interpol/M
+interpolatable
+interpolate/VNGnDS
+interpolation/M
+interpose/DSXGN
+interposer/M
+interposition/M
+interpret/arndNS
+interpretable
+interpretation/AMa
+interpretative/Y
+interpreted/UA
+interpretive/Y
+interpretor/S
+interprets/A
+interprocess
+interprocessor
+interquartile
+interracial
+interregional/Y
+interregnum/SM
+interrelate/DinSNGh
+interrelated/P
+interrelation/M
+interrelationship/MS
+interrogate/DGnSyVvN
+interrogation/M
+interrogative/S
+interrogator/SM
+interrogatory/S
+interrupt/RbGVSD
+interrupted/U
+interruptibility
+interruption/MS
+inters
+intersect/GSD
+intersection/MS
+intersession/MS
+interspecies
+intersperse/GNDSX
+interspersion/M
+interstage
+interstate/S
+interstellar
+interstice/SM
+interstitial/YS
+intersurvey
+intertask
+intertidal
+intertwine/DSG
+interurban/S
+interval/MS
+intervene/GDS
+intervener/M
+intervenor/M
+intervention/MS
+interventionism/SM
+interventionist/S
+interview's/K
+interview/DGAS
+interviewee/SM
+interviewer/SM
+intervocalic
+interweave/SG
+interwork/DGS
+interwove
+interwoven
+intestacy/MS
+intestate/S
+intestinal
+intestine/oMS
+Inthuthuko
+intifada
+intimacy/MS
+intimal
+intimate/PNDYSGn
+intimater/M
+intimation/M
+intimidate/DGkNnyS
+intimidation/M
+Intinyane
+intolerable/P
+intonate
+intonation/M
+intone/nxN
+intoxicant/SM
+intoxicate/hnDGSN
+intoxication/M
+intra
+intracellular
+intracity
+intraclass
+intracohort
+intractability/SM
+intradepartmental
+intrafamily
+intragenerational/Y
+intraindustry
+intraline
+intrametropolitan
+intramural/Y
+intramuscular/Y
+intranasal
+Intranet
+intransigence/SM
+intransigent/YS
+intransitive/S
+intransitiveness/S
+intraoffice
+intraprocess
+intrapulmonary
+intraregional/Y
+intrasectoral
+intrastate
+intratissue
+intrauterine
+intravenous/YS
+intrepid/PY
+intrepidity/SM
+intricacy/SM
+intricate/YP
+intrigue/RDSGk
+intrinsic/SY
+intro/S
+introduce/GnANDS
+introducer/M
+introduction/MA
+introductory
+introit/MS
+introspection/MS
+introspective/PY
+introversion/MS
+introvert/SDMG
+intrude/DRSGNXVuv
+intrusion/M
+intrusive/P
+intrusiveness/S
+intubate/DSGN
+intubation/M
+intuit/uSv7NXV
+intuited
+intuitionist/M
+intuitive/U
+intuitiveness/SM
+Intutuka
+Inuit
+Inuktitut
+inundate/SGNn
+inundation/M
+Inupiak
+inure/GDS
+invade/RXNDSGVu
+invalid/dMS
+invalidism/MS
+invaluable/P
+invariable
+invariant/YM
+invasion/M
+invective/PYMS
+inveigh/SDG
+inveigher/M
+inveigle/DGRS
+inveiglement
+invent/Vuyv
+invented/A
+invention/SAM
+inventive/P
+inventiveness/S
+inventor/MS
+inventory/SGDM
+inventress/MS
+invents/A
+Inverclyde/M
+Inverness/M
+inverse/Y
+invert/RSDbG
+invest/ADGSL
+investee/MS
+investigate/DASGN
+investigation/AM
+investigations
+investigative
+investigator/MS
+investigatory
+investiture/SM
+investment/f
+investor/SM
+inveteracy/MS
+inveterate/Y
+Invicta
+invidious/YP
+invidiousness/S
+invigilate/DG
+invigilator/MS
+invigorate/DnASNG
+invigorating/Y
+invigoration/AM
+invincibility/SM
+invincible/YP
+inviolability/MS
+inviolable/Y
+inviolate/BPY
+invisible/PS
+invitation/Mo
+invitational
+invite/DSNnkG
+invited/U
+invitee/S
+inviter/M
+inviting/U
+invokable
+invoke/NnRDSG
+involuntariness/S
+involuntary/P
+involution/MS
+involve/LSDhG
+involved/U
+involver/M
+invulnerability/M
+invulnerable/P
+inward/YP
+inyala
+inyanga/S
+Inzinga
+iodate
+iodide/SM
+iodine/M
+iodise/DSG
+iodize/DSG
+Iolanthe/M
+ion's/U
+ion/9qQ8S-WsM
+Iona
+Ionian
+ionise/CRSDG
+ionised/U
+ionises/U
+ionising/U
+ionize/CGRSD
+ionosphere/MSW
+ions/U
+iota/SM
+IOU
+Iowa
+IP
+IPA
+ipecac/SM
+Ipelegeng
+Ipeleng
+Ipokelleng
+Ipopeng
+IPR
+ipso
+Ipswich/M
+IQ
+Iqaluit
+Iqbal
+Ira
+Iran/M
+Irani
+Iranian/SM
+Iraq/M
+Iraqi/MS
+irascibility/SM
+irascible/Y
+irate/TY
+irateness/S
+IRC
+ire/DSGM6
+Ireland/M
+Irene
+Irenepark
+irenic/S
+irides's
+iridescence/SM
+iridescent/Y
+iridium/M
+iris/MS
+Irish/5m
+Irishwomen/M
+irk/DGS
+irksome/PY
+irksomeness/S
+Irkutsk
+Irma
+iron/Wd1SMw
+ironclad/S
+ironer/S
+ironical/P
+ironie
+ironing/M
+ironmonger/MSZ
+ironmongery/M
+ironness
+Ironside
+ironside/SM
+Ironstone
+ironstone/SM
+ironware/MS
+ironwood/MS
+ironwork/MS
+ironworker/M
+irony/SM
+Iroquoian
+Iroquois
+irrational/S
+irreconcilability/MS
+irreconcilable/PSY
+irrecoverable/PY
+irredeemable/SY
+irredentism/M
+irredentist/M
+irreflexive
+irrefutable/Y
+irrelevance/S
+irreligious
+irremediable/PY
+irreparable/PY
+irreplaceableness
+irrepressible/Y
+irreproachable/PY
+irreproducibility
+irresistibility/M
+irresistible/P
+irresolute/P
+irresoluteness/S
+irresponsible/S
+irretrievable/Y
+irreversibility
+irrevocable/YP
+irrigable
+irrigate/DNnGS
+irrigation/M
+irritability/SM
+irritable/PY
+irritant/S
+irritate/NSGkBDhnV
+irritation/M
+irrupt/GDVS
+irruption/SM
+IRS
+Irvin/M
+Irvine
+Irving
+Irwin/M
+is
+Isaac/M
+Isaacson
+Isabel/M
+Isabella/M
+Isaiah/M
+Isandlwana
+Isando
+Isandovale
+ISBN
+Iscariot
+Ishmael
+Isibani
+Isilimela
+Isiminiya
+isiNdebele
+isinglass/SM
+Isinkontshe
+Isipingo
+Isis
+isit
+Isithalandue
+isiXhosa
+Isiziba
+isiZulu
+Iskor
+Islam/M
+Islamabad/M
+Islamic
+island/RSM
+Islay/M
+isle/SM
+islet/MS
+Islington/M
+ism/MCS
+isn't
+ISO
+isobar/WMS
+isochronal/Y
+isochronous/Y
+isocline/M
+isocyanate/M
+isodine
+isolate/SNGnD
+isolated/K
+isolation/3M
+isolationism/MS
+isolationist/W
+isolator/MS
+Isolde/M
+isomer/MS
+isomeric
+isomerism/MS
+isometric/YS
+isometrics/M
+isomorph/M1W
+isomorphism/MS
+isoperimetrical
+isopleth/SM
+isosceles
+isostatic
+isotherm/SMo
+isothermal
+isotonic
+isotope/WMS
+isotropy/WM1
+ISP
+ispell/M
+Israel/M
+Israeli/SM
+Israelite/SM
+ISSN
+issuance/SM
+issuant
+issue/D7RSMG
+issued/A
+issues/A
+issuing/A
+Istanbul/M
+isthmian
+isthmus/MS
+Iswepe
+IT
+it'd
+it'll
+it/M4US
+Italian/SM
+Italianate
+italic/qQ8-S
+Italy/M
+Itanagar
+itch/MDSz2GZ
+itchiness/S
+itchy/PT
+Itekeng
+item/MqQ-89sS
+itemised/U
+iterate/DnvVNGS
+iterated/A
+iterates/A
+iterating/A
+iteration's
+iteration/AS
+iterative/A
+iterator/MS
+Itereleng
+Ithaca
+Ithacan
+Ithala
+Ithoballe
+itinerant/SY
+itinerary/MS
+Ito/M
+its
+itself
+Itsokolele
+Itsoseng
+ITT
+ITU
+Itumeleng
+ITV
+IUD/S
+iv/M
+Ivan/M
+Ivanhoe
+Ives
+Ivoorpark
+ivory/MS
+ivy/SMD
+Ivydale
+ix
+Ixopo
+Izak
+izibongo
+Izineshe
+Izingolweni
+Izotsha
+izzit
+J
+ja-nee
+ja/C
+jab/SDGM
+Jabavu
+jabber/rdJS
+jabot/MS
+jabroer
+Jabulani
+Jacanlee
+jacaranda/MS
+jack-in-the-box
+jack/MGSRJD
+jackal/MS
+Jackalpan
+jackass/SM
+jackboot/DMS
+jackdaw/MS
+jacket/SMd
+jacketed/U
+jackhammer's
+jackhammered
+jackhammering
+Jackie
+jackknife/SGMD
+jackknives
+jackpot/SM
+Jackson/SM
+Jacksonville
+Jacky
+Jacob/S
+Jacobean
+Jacobi/M
+Jacobian
+Jacobin
+Jacobite
+Jacobsdal
+Jacobsen
+Jacobson/M
+Jacoby
+Jacopever
+jacquard/SM
+Jacqueline
+Jacques
+jacuzzi
+jade/SMhDi
+jaded/P
+jadedness/S
+jadeite/MS
+Jaeger/M
+jag/iShGZD
+Jagersfontein
+Jagersrust
+jagged/P
+jaggedness/S
+Jagger
+jaggy/T
+Jagtershof
+jaguar/MS
+jail/RDGMS
+jailbird/SM
+jailbreak/SM
+Jaime/M
+Jainism
+Jaipur
+Jakarandas
+Jakarta
+Jake/S
+Jakob
+jalapeño/S
+jalopy/SM
+jalousie/SM
+jam's
+jam/GUD
+Jamaica/M
+Jamaican/S
+jamb/DGMS
+jambalaya/SM
+jamboree/SM
+James
+Jameson
+Jamestown/M
+Jamie/M
+jammer
+jammerlappie/S
+jams
+Jan
+Jana
+Janacek
+Janalet
+Janbruin
+Jane/M
+Janeiro
+Janesville
+Janet/M
+jangle/SRGDY
+Janhofmeyer
+Janice
+Janis
+janissary/SM
+janitor/MS
+janitorial
+Janos
+Jansen
+Jansendal
+Jansenpark
+Jansenville
+January/SM
+Japan/M
+Japanese/M
+jape/DGMS
+japie
+jar/DM6JSG
+Jardine
+jardinière/SM
+jarful/S
+jargon/M
+Jarman
+jarring/Y
+Jarvis
+jasmine/SM
+Jason/M
+jasper/MS
+Jatniel
+jato/MS
+jaundice/SGMD
+jaunt/z2MGSZ
+jauntiness/S
+jaunty/TP
+Java/M
+Javanese
+JavaScript/M
+javelin/MS
+jaw/MGDS
+jawbone/DSM
+jawbreaker/MS
+jawline
+jay/MS
+Jayasuriya
+jaybird/SM
+Jaycee/S
+jaywalk/DJRSG
+Jazeera
+jazz/2MSGZD
+jazzmen
+jazzy/TP
+jct
+jealous/PZY
+jealousy/MS
+Jean
+jean's
+Jeanette/M
+Jeanie
+Jeanne
+Jeannie
+jeans
+Jebese
+Jeep/MS
+jeer/GMJSkD
+jeerer/M
+Jeeves
+jeez
+Jeff/M
+Jefferson/M
+Jeffrey/S
+jehad's
+Jehoshaphat
+Jehovah/M
+jejuna
+jejune/PY
+jejunum/M
+Jekyll
+jell/GSYD
+jello's
+jelly/GSDM
+jellybean's
+jellyfish/SM
+jellying/M
+jellylike
+jellyroll/S
+jemmy/M
+Jenca
+Jenkins
+Jenn-haven
+Jenner
+jennet/MS
+Jennie
+Jennifer
+Jennings
+jenny/SM
+Jensen/M
+Jenson
+jeopardy/Q8MS
+Jeppestown
+jeremiad/MS
+Jeremiah
+Jeremy/M
+jerepigo
+Jericho/M
+jerk/DSZz2G
+jerker/M
+jerkin/SM
+jerkiness/S
+jerky/PT
+jeroboam
+Jerome
+jerry-builder/S
+jerry-building
+jerry-built
+jerry/M
+Jersey/M
+jersey/MS
+Jerusalem/M
+Jervis
+jess/M
+Jesse/M
+Jessica
+Jessie
+Jessop/MS
+jest/MGRSkD
+Jesuit/S
+Jesus
+jet-black
+jet-lag/D
+jet-propelled
+jet-setted
+jet-setter/MS
+jet-setting
+jet/MSDG
+Jethro
+jetliner's
+jetsam/SM
+jetting/M
+jettison/Sd
+jetty/SM
+Jew/yMS
+jewel/MDRSG
+jeweller/Z
+jewellery/M
+Jewess/SM
+Jewish
+Jewishness
+Jezebel/S
+jg/M
+jib-boom/S
+jib/MGDS
+jibe/S
+jiff/SZ
+jiffy/SM
+jig/MRDGS
+jigger/dZ
+jiggery-pokery
+jigging/M
+jiggle/DYSG
+jiggly/T
+jigsaw/MS
+jihad/SM
+jilt/SDG
+jilter/M
+Jim/ZM
+Jimenez
+jimmied
+jimmy's
+jimmying
+jingle/GDSY
+jingler/M
+jingly/T
+jingo/M
+jingoism/SM
+jingoist/WSM
+jinked
+jinn/SM
+jinni's
+jinrikisha's
+jinx/DMGS
+jislaaik
+jitsu
+jitter/SZ
+jitterbug/DSMRG
+jittery/T
+jiu
+jiu-jitsu
+jiujitsu's
+jive/MDSG
+jnr.
+Jo'burg
+Jo/M
+Joan
+Joanna
+Joanne/M
+Joaquin
+job/SpMRDG
+jobber/Z
+jobbery/M
+jobbing/M
+jobholder/MS
+jobless/P
+joblessness/S
+jock/SM
+jockey/DSMG
+jockstrap/MS
+jocose/PY
+jocoseness/S
+jocosity/MS
+jocular/Y
+jocularity/MS
+jocund/Y
+jocundity/MS
+jodhpurs
+Jodie
+Joe/M
+Joel
+joey/M
+jog/DRJSG
+joggle/DSG
+joggler/M
+Johann
+Johanna/M
+Johannes
+Johannesburg/M
+Johansen
+john's
+John/S
+Johnnie/M
+johnny-come-lately
+johnny/SM
+Johnson
+Johnston/M
+Johnstone
+Johnstown
+join/FGSAD
+joiner/FMS
+joinery/MS
+joint's
+joint-stock
+joint/FYE
+jointed/EPY
+jointer/M
+jointing/E
+joints/E
+jointures
+joist/DMS
+joke/MkZDRSG
+jokey
+Joko
+joky/YT
+jol/z2Y
+Jolivet
+Jolla/M
+joller/S
+jollification/MS
+jolliness/S
+jollity/MS
+jolly/DSTGP
+jolt/RDSG
+Jon/MZ
+Jonah
+Jonas
+Jonathan
+Jones/S
+jong/M
+jongg/M
+Jonkerspark
+jonquil/SM
+Joplin
+Jordaanpark
+Jordan/M
+Jordania
+Jordanian/S
+Jorge
+Jorgensen
+Jorgenson
+Jose
+José/M
+Josef
+Joseph
+Josephine
+Josephson
+Josephus
+Joshua/M
+Josiah
+joss/M
+jostle/DSG
+jot/RJSDG
+jotting/M
+Joubertina
+Jouberton
+Joubertpark
+joule/MS
+jounce/DSG
+journal/89DGs3QSM
+journalese/MS
+journalism/MS
+journalist/W
+journey/JmMRSDG
+joust/RDSMG
+Jovanovich
+Jove
+jovial/Y
+joviality/SM
+Jowell/M
+jowl/MSY
+jowly/T
+joy/6GpjMSD
+Joyce
+joyed/c
+joyful/PT
+joyfulness/S
+joyless/YP
+joylessness/S
+joyous/PY
+joyousness/S
+joyridden
+joyride/GMSR
+joyrode
+joystick/S
+Joza
+Jozannashoek
+Jozini
+JSE
+ju-ju/M
+ju/y
+Juan
+Juanita
+Jubapark
+jubilant/Y
+jubilate/NSGnD
+jubilation/M
+jubilee/MS
+Judah
+Judaic
+Judaism/M
+Judas
+Judd/M
+judder/dS
+Jude/Z
+Judea
+Judeo-Arabic
+Judeo-Persian
+judge/MLSDG
+judged/Ka
+judgement-seat
+judgement/o
+judgemental
+judger/M
+judges/Ka
+judgeship/MS
+judging/Ka
+judicature/SM
+judicial/KY
+judiciary/S
+judicious/IYP
+judiciousness/SI
+Judith
+judo/MS
+Judson/M
+Judy/M
+jug/S6GMD
+jugful/SM
+juggernaut/MS
+juggle/RSDGy
+jugglery/MS
+jugular/S
+juice/RDGMZS
+juiciness/S
+juicy/YPT
+jujitsu/MS
+jujube/MS
+Jujura
+jujutsu's
+jukebox/SM
+jukskei
+Jukskeipark
+julep/MS
+Jules
+Julesburg
+Julia/M
+Julian/M
+Juliana
+Julie/M
+julienne/S
+Juliet/M
+Julio
+Julius
+July/SM
+Julys
+jumble/DGS
+jumbo/MS
+jump-off
+jump-start/G
+jump/2GRDzSZ
+jumpiness/S
+jumpsuit/S
+jumpy/TP
+junco/MS
+junction/SIMFE
+juncture/FMS
+June/M
+Juneau
+Jung/M
+Jungfrau
+Jungian
+jungle/MS
+junior/MS
+juniority/M
+juniper/MS
+junk/MGRDSZ
+junket/dMS
+junkie/M
+junky/TS
+Juno
+junta/MS
+Jupiter/M
+Jurassic
+juridical/Y
+juried
+jurisdiction/SMo
+jurisdictional
+jurisprudence/MS
+jurisprudent
+jurisprudential/Y
+jurist/MWS
+juror/MS
+jury/ISM
+jurying
+juryman/M
+jurymen/M
+jurywoman/M
+jurywomen
+Jussi/M
+jussive
+just/UY
+juster/M
+justest
+justice/IMS
+Justicia
+justiciable
+justifiability/M
+justifiable/U
+justifiably/U
+justification/M
+justificatory
+justified/U
+justify/BRSNDlnG
+Justin
+Justine
+justness/SM
+jut/DSG
+jute/MS
+Jutjaw
+Jutland/M
+Juvenal
+juvenile/MS
+juxtapose/NXSDG
+juxtaposition/M
+Jybinoykwk
+K
+K-factor
+k/E
+kaal
+kaalgat
+kaalvoet
+Kaapenaar
+Kaapmuiden
+Kaapsig
+Kaapzicht
+Kaarkloof
+Kabah
+Kabakazi
+Kabega
+kabeljou
+kabob's
+Kabokweni
+kaboom
+kabuki/MS
+Kabul/M
+Kabyle
+Kachin
+kaddish/S
+Kadwezi
+Kafka
+Kafkaesque
+kaftan
+Kagisanong
+Kagiso
+Kagoshima
+Kahn/M
+kaiser/SM
+kak
+Kakamas
+kakiebos
+Kalafi
+Kalahari
+Kalamazoo
+Kalbaskraal
+kale/MS
+kaleidoscope/WM1S
+Kali
+Kalinyanga
+Kalkbank
+Kalkfontein
+Kalkkuil
+Kalkspruit
+Kalksteenfontein
+Kamagugu
+Kamanassie
+Kamastone
+Kamba
+Kamberg
+Kambi
+Kamden
+Kameel
+Kameelboom
+kameeldoring
+Kamesh
+Kamiesberg
+Kamieskroon
+kamikaze/SM
+Kampala/M
+Kampersrus
+Kampf
+Kampuchea/M
+Kanana
+Kandahar
+Kane/M
+kangaroo/SM
+Kanhym
+kanna
+Kannada
+Kano
+Kanoa/M
+Kanoneiland
+Kanonierspark
+Kanonkop
+Kansai
+Kansas
+Kant
+Kanuri
+Kanyamazane
+Kaokoland
+kaolin/MW8Q
+kapellmeister/M
+Kapenta
+Kaplan/M
+kapok/M
+kappa/M
+kappie/S
+Kappiekommando/S
+Kapteinsbaai
+kaput/M
+Kara-Kalpak
+Karachi/M
+Karakul
+karakul/M
+Karanteen
+karaoke
+karat's
+Karatara
+karate/M
+Kareedouw
+Kareehof
+Kareeville
+Karen
+Karenpark
+Karindal
+Karino
+Karkloof
+Karl
+Karlienpark
+karma/MS
+karmic
+Karoo
+karos
+Karos
+Karp/M
+Karpad
+karroid
+kart/M
+Kasai
+Kashmir
+Kashmiri
+Kasprowicz
+Kasselsvlei
+Kasteelsig
+Kasturdene
+Kate/M
+Katharine/M
+Katherine
+Kathleen
+Kathmandu/M
+Kathreda
+Kathu
+Kathy
+Katie/M
+Katjiebane
+Katkop
+Katlehong
+Katmai
+Katrina/M
+Katshabalala
+katydid/SM
+Katz
+Katzenberg
+Kauai
+Kaufman/M
+Kaunda
+Kavala
+Kavangoland
+Kawasaki
+Kawi
+Kay
+kayak/SM
+Kayakulu
+Kayamandi
+kayo/GSMD
+Kazakh
+Kazakhstan/M
+kazoo/MS
+kB
+kb
+kbps
+kc/M
+kcal/M
+KDE
+Keane
+Kearney
+Kearsney
+Keating
+Keats/M
+kebab/SM
+Keck/M
+kedgeree/S
+Kediketse
+Keegan
+keel/MSDG
+Keele/M
+keeler
+keelhaul/SDG
+keen/TYPDG
+Keenan
+keener/M
+keening/M
+keenness/S
+keep-fit
+keep/RGSJ
+keeping/M
+keepsake/MS
+keg/DSGM
+Keighley
+Keimoes
+Keiskamma
+Keiskammahoek
+Keith
+Kelebogile
+Kelland/S
+Keller
+Kelley
+Kellogg
+Kelly/M
+kelp/DGSM
+kelpers
+Kelpoort
+Kelsey/M
+Kelso
+Kelvin
+kelvin/MS
+Kelvinview
+Kemp
+Kempdale
+Kempenville
+Kempville
+ken/GMSD
+Kendal
+Kendall/M
+Kengray
+Kenhardt
+Kenilworth
+Kenleaf
+Kenmare
+Kennedy
+kennel/SDGM
+Kennet
+Kenneth
+Kenny
+keno's
+Kenosha
+Kenridge
+Kensington
+Kent/M
+Kentani
+Kenterton
+Kenton/M
+Kentucky
+Kentview
+Kenville
+Kenworth
+Kenwyn
+Kenya/M
+Kenyan/S
+Kenyatta
+Kenyon/M
+Kenzintown
+kepi/SM
+Kepler/M
+kept
+keratin/SM
+kerb/MS
+kerbside
+kerchief/DMS
+kerk
+Kerkgrond
+Kermit
+Kern
+kerned
+kernel/MS
+kerning
+Kernkrag
+kerosene/MS
+Kerr/MZ
+Kerry/M
+Kershaw
+Kessler/M
+Kestell
+Kestellhof
+Kesteven
+kestrel/SM
+ketch/MS
+ketchup/SM
+Keteke
+ketone/M
+ketosis/M
+Kettering
+kettle/SM6
+kettledrum/MS
+keurboom/S
+Keurtjieskloof
+Kevin
+Kew
+Kewaskum
+Kewaunee
+Kewell
+Kewpie
+Kewtown
+key/MGDS
+keyboard/RMDGS
+keyboardist/S
+keyclick/MS
+keyhole/MS
+Keylock
+Keynes
+Keynesian
+keynote/RMDSG
+keypad/SM
+keypunch/DRSG
+keyring
+keystone/MS
+keystroke/MDS
+keyword/MS
+KFM
+kg
+Kgabaltsane
+Kgakala
+Kgatelopele
+Kgautswane
+KGB
+Kgobokwane
+Kgohloane
+Kgokgole
+Kgomotso
+kgotia
+Kgubetswana
+Khabarovsk
+Khachaturian
+Khakhu
+khaki/MS
+Khalethu
+Khalid
+khalifa
+Khambi
+khan/MS
+Khanyiso
+Khartoum/M
+Kharwastan
+Khasi
+Khayalethu
+Khayalitsha
+Khayamnandi
+Khayelisha
+Khayelitsha
+Khetani
+Khmer
+Khoapa
+Khoisan
+Khokhovela
+Khokhwana
+Khomanani
+Khotanese
+Khotso
+Khotsong
+Khrushchev
+Khudutlou
+Khujwana
+Khulakancane
+Khuma
+Khumalo
+Khunotsevane
+Khusane
+Khuthala
+Khutsong
+Khyber
+kHz/M
+kiaat
+kibble/MDSG
+kibbutz/M
+kibbutzim
+kibitzer's
+kibosh/SM
+kick-off/MS
+kick-start/GSD
+kick/RSZDG
+kickback/SM
+kickball's
+kickballs
+kickstand/MS
+kicky/T
+kid-glove
+kid/RMDGSp
+Kidd
+Kidderminster
+kiddie/S
+kidding/MY
+kiddish
+kiddo/MS
+kiddy's
+kidnap/GSRJD
+kidney/MS
+kief
+Kieffer/M
+Kiel/M
+Kiepersol
+kiepersol/S
+kierie/S
+Kiesel
+Kieserville
+Kiev/M
+kiewietjie/S
+kif
+kif-gloves
+Kigali/M
+kikuyu
+Kikuyu/M
+Kilauea
+Kilbarchan
+Kilbride/M
+Kildare/M
+Kildrummy
+Kilfenora
+Kilimanjaro/M
+Kilkeel
+Kilkenny/M
+kill/DRG7SkJ
+Killarney
+killdeer/SM
+killed/c
+killing/c
+killjoy/S
+kills/c
+Kilmarnock/M
+kiln/MS
+kilo/SM
+kilobaud/M
+kilobit/S
+kilobuck
+kilobyte/S
+kilocycle/MS
+kilogauss/M
+kilogram/SM
+kilogramme/S
+kilohertz/M
+kilohm/M
+kilojoule/SM
+kilolitre/MS
+kilometre/MS
+kiloton/MS
+kilovolt/MS
+kilowatt-hour
+kilowatt/SM
+kiloword
+kilt/MDS
+kilter
+Kim
+Kimball/M
+Kimberley
+kimberlite
+Kimberly/M
+Kimdustria
+kimono/SM
+kin/m5MS
+kinaesthetic/SY
+Kinara
+kind-hearted/PY
+kind-heartedness/S
+kind/STPY
+kinda
+kindergarten/SM
+kindergärtner/MS
+kindest/U
+kindle/ADGS
+kindler/M
+kindliness/S
+kindling/M
+kindly/TP
+kindness/U
+kindnesses
+kindred
+kine/M
+kinematic/S
+kinematics/M
+kinesics
+kinetic/SY
+kinetics/M
+king-size/D
+king/YGMDS
+kingbird/M
+kingdom/SM
+kingfisher/MS
+Kingklip
+kingklip
+kinglet/M
+kingly/PT
+kingpin/SM
+Kingsburgh
+Kingsbury
+kingship/SM
+Kingsley
+Kingston/M
+Kingstown
+Kingsview
+Kingswood
+Kingwood
+kink/MDGSZz2
+kinked/U
+Kinkelbos
+kinkiness/S
+kinky/TP
+Kinney/M
+Kinnock/M
+Kinross/M
+Kinsey
+kinsfolk
+Kinshasa/M
+kinship/MS
+Kinyarwanda
+kiosk/SM
+Kiowa
+kip/MDRGS
+Kipling/M
+kipper/d
+Kirby
+Kirchner/M
+Kirghiz
+kiri
+Kiribati/M
+kirk/SM
+Kirkland
+Kirkney
+Kirkpatrick
+Kirkwood
+Kirov/M
+kirsch/S
+Kirstenbosch
+Kirstenhof
+Kirundi
+Kisangani
+kismet/MS
+Kismetpark
+kiss/JDRS7G
+kist
+Kiswahili
+kit/rMSGDZ
+Kitakyushu/M
+kitbag/M
+kitchen/MS
+Kitchener
+kitchener's
+kitchenette/MS
+kitchenware/MS
+kite-flying
+kite/MS
+kith/MS
+kitsch/MZS
+kitskonstabel/S
+kitten/dSM
+kittenish/PY
+kittiwakes
+Kitts/M
+kitty/MS
+Kiwanis
+kiwi/MS
+kiwifruit/S
+kl
+klaar
+Klaarstroom
+Klaarwater
+Klaasenbosch
+Klan
+Klansman
+klap
+Klapmuts
+Klaus
+Klawer
+klaxon/M
+Kleenex
+kleilat
+Klein-drakenstein
+Klein-nederburg
+Klein/M
+Kleinbaai
+Kleinbos
+Kleinbosch
+Kleingeluk
+Kleinmond
+Kleinmonde
+Kleinpoort
+Kleinsee
+Kleinskool
+Kleinvlei
+kleptomania/MS
+kleptomaniac/MS
+Klerksdorp
+Klerkskdorp
+Klerksoord
+Kleurlingwoonbuurt
+Kline/M
+Klingon
+klinker/S
+Klipbankfontein
+Klipbou
+Klipdale
+Klipdam
+Klipfontein
+Klipgat
+Klipheuwel
+Klipplaat
+Klippoortjie
+Kliprand
+Klipriviersberg
+Kliprug
+Klipspruit
+Kliptown
+Klisserhof
+Klisserville
+Klondike
+Kloof
+kloof/S
+Kloofeind
+Kloofendal
+Kloofmyn
+Kloofnek
+Kloofsig
+Kloofzicht
+Klopperpark
+klopse
+kludge/RDSMG
+kludgey
+klutz's
+Klux
+klystron/MS
+km
+kn
+knack/MRS
+knacker/Z
+knackered
+knackish
+Knapdaar
+Knapp/M
+knapsack/MS
+knave/MSy
+knavery/SM
+knavish/Y
+knead/RGDS
+knee-deep
+knee-high
+knee-jerk
+knee-length
+knee/MSdG
+kneecap/DMGS
+kneel/RGS
+knees-up
+knell/SDGM
+knelt
+Knesset
+knew
+knick
+knick-knack/SM
+knick-knackery
+knick-knackish
+knickerbocker/S
+knickers
+knife-edge
+knife/MDGS
+knight-errantry
+knight/MDSGY
+knighthood/MS
+knightliness/S
+knightly/P
+Knights
+knish/MS
+knit/GRSDJ
+knitting/M
+knitwear/M
+knives/M
+knob/SMZ
+knobbly
+knobby/T
+knobkerrie/S
+knobkierie/S
+knock-down/S
+knock-kneed
+knock-on
+knock-out
+knock-up
+knock/GJRSD
+knockabout/M
+knocking-shop
+knockwurst's
+knoll/SDGM
+Knoppieslaagte
+Knoppix
+Knossos/M
+Knot
+knot/ZDG2MS
+knothole/MS
+knotting/M
+knotty/TP
+know-how
+know-it-all
+know/Gk7SJ
+knower/M
+knowing/UY
+knowinger
+knowingest
+knowingness
+knowledge/lMS
+knowledgeable/P
+Knowles
+known/SU
+Knox
+Knoxville
+knuckle/DGSM
+knuckleduster/S
+Knudsen
+Knudson
+knurl/DS
+Knuth/M
+Knutsen
+Knutson
+Knysna
+koala/MS
+kob
+Kob
+Kobayashi
+Kobe
+Kobonqaba
+Koch
+Kocksoord
+Kockspark
+Kocksvlei
+Kodachrome/M
+Kodak/M
+Kodaly
+Kodiak
+Koebergville
+koedoe
+Koedoeskop
+Koedoespoort
+Koekemoer
+Koekenaap
+koekoek
+koeksister/S
+Koelemansrus
+Koelenhof
+Koenig
+Koenigsberg
+Koertzen
+Koester
+koester
+Koevoet
+Koffiefontein
+Koffiekraal
+Kofi
+Kohl
+Kohler
+Kohlo
+Kohlogolo
+kohlrabi/M
+kohlrabies
+Koingnaas
+Kokanje
+Kokomeng
+Kokosi
+Kokstad
+kola/MS
+Kologha
+Kolonade
+Kolonia/M
+Koloti
+Komaggas
+Komani
+Komati
+Komatipoort
+kombi
+Kombuzi
+Komga
+Komi
+Komkhulu
+Kommadagga
+Kommetjie
+Kommisiedrif
+Kong
+Kongo
+Konjwayo
+Konkani
+Konrad/M
+Kontant
+Koo
+kook's
+kookaburra/SM
+Kookhuis
+kookiness/S
+Kookrus
+kooky/T
+Koopmansfontein
+Koornfontein
+kopeck/MS
+kopeks
+Kopela
+Kopermyn
+Kopi
+koppie/S
+Koppies
+Koran/M
+Korea/M
+Korean/S
+Koringberg
+Koringpunt
+Koror/M
+Korsten
+Kosciusko
+kosher
+Kosmos
+Kosovo/M
+Koster
+Kotana
+kotch
+Kotzeshoop
+Kotzesrus
+Kovacs
+Kowalski/M
+Kowie
+Kowloon
+kowtow/GSD
+Kpelle
+kph
+Kraaifontein
+Kraaipan
+kraal/MS
+Kraalhoek
+Kraankuil
+Kraankuilstasie
+Kraemer
+kraft/M
+krag
+Kragbron
+Krakatoa
+Krakow
+kramat
+Kramer
+Kramerville
+Kransfontein
+Kranshoek
+Kranskloof
+Kranskop
+Kranspoort
+Krause
+Krebs
+kreef
+Kremlin/M
+Kremlinologist
+Kremlinology
+Kreupelbosch
+Krieger/M
+kriegspiel/M
+Kriel
+Krigeville
+krill/SM
+Kris
+Krishna
+Kristin/M
+Kristina
+kroeg
+Krom
+Kromdraai
+Kromerville
+Kromhoek
+Kromkuil
+Kromme
+krona/M
+krone/M
+Kronecker/M
+kroner
+kronor
+kronur
+Kroondal
+Kroonheuwel
+Kroonstad
+Kroonvale
+Kropotkin
+Kru
+Krueger
+Kruger
+Krugersdorp
+Krugersrus
+Krugman
+Kruinhof
+Kruisfontein
+krummelpap
+Krupp
+Kruse/M
+Krwakrwa
+krypton/M
+KS
+kt.
+Ktc
+Ku
+Kuala/M
+Kuanyama
+Kublai
+Kuboes
+Kubrick
+Kubusi
+kudos/M
+Kudu
+kudu
+kudzu/MS
+Kuenning/M
+kugel/S
+Kuhn/M
+kuier
+kuif/S
+Kuilsriver
+kulaks
+Kuleka
+Kuleleyo
+Kuli
+Kulula
+Kulula.com
+Kumar
+Kumdyobe
+kumquat/MS
+Kumyk
+Kunana
+Kundulu
+Kunowalala
+Kuomintang
+Kuranta
+Kurd/MS
+Kurdish
+Kurdistan/M
+Kurosawa
+Kurt/M
+kurtosis/M
+Kurukh
+Kuruman
+Kusaie
+Kutama
+Kutenai
+Kutlwano
+Kutlwanong
+Kuwait/M
+Kuwaiti/S
+Kuyasa
+kV
+kW
+Kwa-bhadaza
+Kwa-dima
+Kwa-mahlangu
+Kwa-mashu
+Kwa-nokothula
+Kwa-pita
+Kwa-sibhejane
+kwaai
+Kwabhobhi
+Kwabhubesi
+Kwabipa
+Kwabongo
+Kwabukhali
+Kwacitwayo
+Kwadabeka
+Kwadanti
+Kwadlamini
+Kwadlangezwa
+Kwadukuza
+Kwadumani
+Kwadwesi
+Kwaford
+Kwagga
+Kwaggafontein
+Kwaggasrand
+Kwaggasvlakte
+Kwaguqa
+Kwahermans
+Kwahlathi
+Kwahuku
+kwaito
+Kwakanyayo
+Kwakwatsi
+Kwalitho
+Kwaloyiti
+Kwalugedlane
+Kwam
+Kwamachi
+Kwamagwaza
+Kwamagxaki
+Kwamahlangu
+Kwamakaya
+Kwamakuta
+Kwamashonisa
+Kwamashu
+Kwamayibuye
+Kwambonambi
+Kwambotho
+Kwambuthuma
+Kwamhlanga
+Kwamkhonto
+Kwamlungisi
+Kwamqobela
+Kwamsane
+Kwamthathelwa
+Kwamthembeni
+Kwamthethwa
+Kwamthole
+Kwamzambane
+Kwanala
+Kwanayipa
+Kwanazo
+KwaNdebele
+Kwandema
+Kwandengezi
+Kwandofela
+Kwangcolosi
+Kwangcolozi
+Kwangkwanase
+Kwangwanase
+KwaNgwane
+Kwankonka
+Kwanobantu
+Kwanobuhle
+Kwanokuthula
+Kwanomzamo
+Kwanonqaba
+Kwanonzame
+Kwanonzwakazi
+Kwanoqozwana
+Kwanxothwe
+Kwanyana
+Kwanzimakwe
+Kwashaka
+Kwasheleni
+Kwashunqa
+Kwasithole
+Kwasizabantu
+Kwaskhemelele
+Kwathanduxolo
+Kwathema
+Kwavezi
+Kwavukile
+Kwaxuma
+Kwazakhele
+Kwazamokuhle
+Kwazamukulinda
+Kwazamuxolo
+Kwazanele
+Kwazenzele
+Kwazibi
+Kwazimele
+KwaZulu
+Kwazulu-Natal
+Kwazulu/natal
+kwedien
+kwela
+kwela-kwela
+Kwelera
+Kwenzekile
+Kwezi
+kWh
+Kyalami
+kyle/SM
+Kylemore
+Kyoto/M
+Kyrgyzstan/M
+Kyushu/M
+L'agulhas
+l/3
+La'youn/M
+la/M
+laager
+Laaiplek
+laaitie/S
+laatlammetjie
+Lab
+lab/oMS
+Labarang
+label/MRJSDG
+labelled/aU
+labels/aA
+labia/M
+labial/S
+Labiance
+labile
+labiodental
+labium/M
+laboratory/MS
+laborious/PY
+laboriousness/S
+labour-intensive
+labour-saving
+labour/MRGhkJiDS
+laboured/MP
+labouring/M
+Labrador
+Labram
+laburnum/MS
+labyrinth/SM
+labyrinthine
+lac/MDGS
+lace-ups
+lace/ZMDSG
+laced/U
+lacer/MV
+lacerate/NnSDG
+laceration/M
+laces/U
+lacewing/MS
+lachrymal/S
+lachrymose
+lacing/M
+lack/MS
+lackadaisical/Y
+lackadaisicalness
+Lackawanna
+lackey/MDSG
+lacklustre
+laconic/Y
+lacquer/dMrS
+lacrosse/SM
+lactate/xMSnGND
+lactation/M
+lacteal
+lactic
+lactose/MS
+lacuna/MS
+lacunae
+lacy/T
+lad/DSRGJM
+Ladanna
+Ladbrokes
+ladder/d
+laddie/SM
+lade/GZ
+Laden's
+laden/cU
+Ladine
+lading/M
+Ladino
+Ladismith
+ladle/GDSM
+Laduma
+lady/MS
+ladybird/MS
+Ladybrand
+ladybug/SM
+ladyfinger's
+Ladyfish
+ladylike/U
+ladylove/MS
+Ladyship/MS
+Ladysmith
+Laersdrif
+laetriles
+laevorotatory
+laevulose
+Laezonia
+Lafayette
+lag/rDGJS
+Lagabuya
+laggard/MPYS
+lagging/M
+lagniappe's
+lagoon/SM
+Lagos/M
+Lagrange
+Lagrangian/M
+Laguerre
+Laguna
+Lahnda
+Lahoff
+Lahore/M
+laid/Afac
+lain/cf
+Laingsburg
+Laingville
+lair/MDGS
+laird/MS
+laissez
+laissez-faire
+laity/MS
+lake/MS
+Lakefield
+Lakehurst
+Lakeland
+Lakeside
+lakeside
+Lakeview
+Lakeville
+Lakewood
+Laleni
+Lalo
+lam/DGS
+lama/MS
+Lamagadlela
+Lamaism
+Lamar/M
+lamasery/SM
+lamb/GMDS
+Lamba
+lambada/S
+Lambani
+Lambase
+lambaste/DGS
+lambda/MS
+lambency/SM
+lambent/Y
+lamber
+Lambert
+Lambeth
+lambkin/MS
+Lamborghini/M
+Lambrechtsdrif
+lambskin/MS
+lambswool
+Lambton
+lamé
+lame/DYTP
+lamebrain/SM
+lamed/M
+Lamellibranchia
+lameness/S
+lament/7nDGlSN
+lamentable/P
+lamentation/M
+lamented/U
+lamina/nM
+laminae
+laminar
+laminate/SDG
+lamination/M
+lamington
+Lammermoor
+Lamola
+Lamont
+Lamontville
+lamp-post/S
+lamp/MSDG
+lampblack/MS
+lamper
+Lampeter
+lamplight/RMS
+lampoon/MSDG
+lampooner/ZM
+lamppost/SM
+lamprey/SM
+lampshade/MS
+LAN
+Lana/M
+Lanai
+Lanarkshire/M
+Lancashire/M
+Lancaster/M
+lance/RGDSM
+Lancelot/M
+lancet/MS
+land-use
+land/DmRGJpSM
+landau/M
+landaus
+landdrost
+lander/eMS
+landfall/SM
+landfill/DS
+landforms
+landhold/RJG
+landing/M
+Landis
+landlady/SM
+landlines
+landlocked
+landlord/MS
+landlubber/SM
+landmark/MSDG
+landmass/MS
+landmine
+landowner/MS
+landownership/M
+landowning/M
+landscape/MRGDS
+Landsdowne
+Landskroon
+landslide/MS
+landslip/S
+Landview
+landward/S
+Landwehr
+lane/MS
+Lang/M
+Langa
+Langalibalele
+Lange
+Langebaan
+Langebaanweg
+Langenhovenpark
+Langer
+Langerug
+Langford
+Langkloof
+Langkrans
+Langlaagte
+Langley
+language/SM
+languid/YP
+languidness/S
+languish/GDkS
+languisher/M
+languor/MS
+languorous/Y
+Langverwag
+Langverwagt
+lank/TPYZ2
+Lanka/M
+lankiness/S
+lankness/S
+lanky/PT
+lanolin/SM
+Lansdowne
+Lanseria
+Lansing
+Lantana
+lantern/SM
+Lanternbelly
+lanthanide/M
+lanthanum/M
+Lanti
+lanyard/SM
+Lao/S
+Laois/M
+Laos/M
+Laothian
+Laotian/S
+lap/cMSDG
+lapboard/MS
+lapdog/S
+lapel/MS
+Laphroaig
+lapidary/SM
+lapin/MS
+Laplace
+Lapland/RM
+Lapp
+lappet/MS
+lappie/S
+laps/SDG
+lapse's
+lapse/FDAGS
+lapser/AM
+laptop/MS
+lapwing/SM
+Lara
+Laramie
+larboard/MS
+larcenist/S
+larcenous
+larceny/SM
+larch/MS
+lard/FMS
+larded
+larder/MS
+larding
+lardy/T
+Laredo
+Large
+large-scale
+large/YPT
+largehearted
+largemouth
+largeness/S
+largess/MS
+largesse
+largish
+largo/S
+lariat/MSDG
+Larine
+lark/MDGS
+larker/M
+Larkfield
+larkspur/MS
+larney
+Larousse
+Larrendale
+Larry/M
+Lars
+Larsen
+Larson
+larva/M
+larvae
+larval
+laryngeal/SY
+larynges
+laryngitides
+laryngitis/M
+larynx/M
+lasagne/M
+lascivious/PY
+lasciviousness/S
+lase/RGS
+lash-up
+lash/MDSGJ
+lashed/U
+lasher/M
+lashing/M
+lass/MS
+lassie/MS
+lassitude/SM
+lasso/DGSM
+lassoer/M
+last-ditch
+last-minute
+last/eGDS
+lasting/SPY
+lastly
+Laszlo/M
+latch/DMGS
+latched/U
+latches/U
+latching/M
+latchkey/MS
+late/TYP
+latecomer/SM
+latency/SM
+lateness/S
+latent/Y
+later/A
+lateral/FYS
+Lateran/M
+latest/S
+LaTeX/M
+latex/SM
+lath/DRGSyM
+lathe/MS
+lather/d
+latherer/M
+lathing/M
+Lathrop
+latices/M
+Latin/M
+Latinate
+Latino
+latish
+latitude/MS
+latitudinal/Y
+latitudinarian/S
+latitudinary
+latrine/SM
+Latrobe/M
+latte/S
+latter-day
+latter/MY
+lattice/DSMG
+latticework/SM
+latticing/M
+Lattimer
+Latvia/M
+Latvian
+laud/lSGD7
+laudanum/MS
+laudatory
+lauder/M
+Lauderdale
+Laudina
+Laudium
+lauds/M
+laugh/kJDlGS7R
+laughable/P
+laughing/M
+laughingstock/MS
+laughter/MS
+Launce
+Launceston
+launch/AGDS
+launcher/SM
+launching/S
+launchpad/S
+Laundaville
+launder/rdS
+laundered/U
+launderette/MS
+laundress/SM
+laundrette/S
+laundromat/S
+laundry/Sm5M
+Laura/M
+laureate/S
+laureateship/SM
+laurel/GSDM
+Lauren
+Laurence
+Laurent/M
+Laurie/M
+Lausanne/M
+lava/MS
+lavage/MS
+Laval
+Lavalia
+lavatorial
+lavatory/SM
+lave/SGD
+lavender/MdS
+Laversburg
+Lavinia
+lavish/PTYGDS
+lavishness/S
+Lavistown
+law-abiding
+law/MeS
+lawaai
+Lawaaikamp
+lawbreaker/SM
+lawbreaking/MS
+lawful/UY
+lawfulness's
+lawfulness/U
+lawfulnesses
+lawgiver/MS
+lawgiving/M
+lawless/YP
+lawlessness/S
+Lawley/M
+lawmaker/MS
+lawmaking/M
+lawn/MS
+lawnmower/S
+Lawrence
+Lawrenceville
+lawrencium/M
+Lawson
+lawsuit/MS
+Lawton
+lawyer/YSMd
+lax/TPVvuYS
+laxative/SMP
+laxes/A
+laxity/SM
+laxness/S
+lay-by
+lay-bys
+lay-off/MS
+lay/CRGS
+layabout/MS
+layer/Cd
+layering/M
+layette/SM
+laying/ac
+layman/M
+laymen/M
+layout/MS
+layover/MS
+laypeople
+layperson/S
+lays/Acaef
+Layton/M
+layup/SM
+laywoman/M
+laywomen
+Lazar
+Lazarus
+laze/DSZG
+laziness/S
+Lazio
+lazuli/M
+lazy/DPTYG
+lazybones/M
+lb
+LBJ
+lbs
+lbw
+LCD
+LDAP
+le/Gz3
+lea/SM
+leach/SGD
+Leachville
+lead-free
+lead-in
+lead/RGSD
+leaded/U
+leaden/YP
+Leadenhall
+leader's/a
+leader/p
+leadership/SM
+leading/a
+leads/a
+leaf/MDG2pSZ
+leafage/SM
+leafhopper/M
+leaflet/SMd
+leafstalk/MS
+leafy/TP
+Leaglen
+league's/F
+league/MRSDG
+leagued/F
+leagues/F
+leaguing/F
+Leah
+Leaholm
+leak/2GSZMD
+leakage/MS
+leaker/M
+Leakey
+leakiness/S
+leaky/PT
+lean-burn
+lean/TGPSJYD
+Leander/M
+Leandra
+leaner/M
+leaning/M
+leanness/S
+leant
+leap/DSG
+leaper/M
+leapfrog/MDSG
+leapt
+Lear/Z
+learn/DAGUS
+learned/PY
+learner/SM
+learnership/S
+learning/SM
+learnt
+leas/DSRG
+lease/ARSMGD
+leaseback/MS
+leasehold/MRS
+leash's
+leash/SUDG
+leasing/M
+least/S
+leastwise
+leather/dSZM
+Leatherdale
+leatherette/S
+leathern
+leatherneck/MS
+leave-taking
+leave/DJSRG
+leaven/MSd
+leavened/U
+leavening/M
+Leavenworth
+leaves/M
+leaving/M
+Lebalangwe
+Lebaleng
+Lebanese
+Lebanon/M
+lebensraum
+Lebesgue
+Leblanc
+Leboalangwe
+Leboeng
+Lebogang
+Lebohang
+Lebotloane
+Lebowa
+Lebowakgomo
+lecher/MSZ
+lecherous/PY
+lecherousness/S
+lechery/SM
+lecithin/SM
+lectern/SM
+lecture/RMDGS
+lectureship/MS
+LED's
+led/XN
+Leda
+ledge/SMR
+Ledig
+LEDs
+Lee
+Lee-Enfield
+Lee-Metford
+lee/SyM
+leech/GMS
+Leeds
+leek/SM
+leer/DS2Gk
+leeriness/S
+Leerkrans
+leery/TP
+Leesdale
+Leeu-gamka
+Leeudoring
+Leeudoringstad
+Leeufontein
+Leeuhof
+Leeukuil
+Leeupoort
+Leeuwenhoek/M
+leeward/S
+leeway/MS
+Lefalane
+Lefaragatle
+Lefatlheng
+Lefifi
+Lefiso
+left-footed
+left-hand/hRDi
+left-wing/R
+left/T3SZ
+leftism/SM
+leftmost
+leftover/MS
+leftward/S
+lefty/S3M
+leg-bye
+leg-cutter
+leg-spinner/MS
+leg/NnbMD2GpmSoJZ
+legacy/SM
+legal/IYS
+legalese/SM
+legalise/GnSD
+legalism/MS
+legalistic
+legality/ISM
+legalize/NnSGD
+legate's/C
+legate/CSnGAND
+legatee/SM
+legation/MAC
+legato/MS
+legend/SM
+legendary/SY
+Legendre/M
+legerdemain/MS
+legginess/S
+legging/M
+leggy/TP
+leghorn/MS
+legibility/ISM
+legible/YI
+legibly/I
+legion/MSy
+legionary/S
+legionnaire/SM
+legislate/nVNSDvG
+legislation/M
+legislative/S
+legislator/SM
+legislature/MS
+legit
+legitimacy/SIM
+legitimate/IYDG
+legitimation
+legitimatise/GDS
+legitimisation
+legitimise/DGS
+legitimiser
+legitimization/M
+legitimize/NDnG
+Legkraal
+Lego/M
+Legogote
+Legogwe
+Legolaneng
+Legonyane
+legroom/SM
+legstraps
+leguaan/S
+legume/MS
+leguminous
+legwork/MS
+Lehigh
+Lehlohonolo
+Lehman/M
+Lehurutshe
+lei/MS
+Leibniz
+Leicester/M
+Leicestershire
+Leiden
+Leif
+Leigh
+Leighton
+Leila
+Leipoldtville
+Leipzig/M
+leisure/DYSM
+leisureliness/S
+leisurely/P
+leisurewear
+leitmotif/MS
+leitmotiv/MS
+Leitrim/M
+Lekaneng
+Lekazi
+Lekgolo
+Lekgophung
+lekgotla
+Lekhureng
+lekker
+Lekkerdril
+Lekkerplaas
+Lekkersing
+Lekoko
+Lekolo
+Lekung
+Leland/M
+Lemke
+lemma/MS
+lemme/JG
+Lemmermoor
+lemming/M
+lemon/SM
+lemonade/MS
+Lemonfish
+lemony
+lemur/MS
+Len/M
+Lena/M
+Lenallyn
+Lenasia
+lend/RGS
+Lengau
+Lengeta
+length/Mz2SZ
+lengthen/dS
+lengthener/M
+lengthiness/S
+lengthways
+lengthwise
+lengthy/TP
+Lenham
+lenience/ZS
+leniency/SM
+lenient/Y
+Lenin
+Leningrad
+Leninism
+Leninist
+lenitive/S
+Lennon/M
+Lennox
+Lennoxton
+Lenny
+Leno
+Lenore/M
+lens/MDSG
+lenser/S
+lent/A
+Lentegeur
+Lenten
+lenticular
+lentil/MS
+Lenting
+lento/S
+Lenyenye
+Lenz
+Leo
+Leokaneng
+Leominster
+Leon
+Leona
+Leonard
+Leonardo
+Leondale
+Leone/M
+Leonid/M
+leonine
+Leonsdale
+leopard/MS
+leopardess/MS
+leopardskin
+Leopold
+Leopoldville
+leotard/SM
+Lepelsfontein
+leper/SM
+Lephalala
+Lephoi
+leprechaun/SM
+leprosy/SM
+leprous
+lepta
+lepton/MS
+Leraatsfontein
+Lerato
+Leratswana
+Lerome
+Leroro
+Leroy
+Les
+lesbian/MS
+lesbianism/SM
+Lesetlheng
+Lesetsi
+Leshwane
+lesion/MDG
+Leslie/M
+Lesotho/M
+less/U
+lessee/MS
+lessen/dS
+lesser
+Lessetty
+lesson/dMS
+lessor/MS
+lest
+Lester
+let's/e
+let-down/MS
+let-out
+let/SRMG
+Letaba
+Lethabong
+Lethakanene
+lethal/Y
+lethality/M
+lethargy/W1SM
+Lethe/M
+Lethlakeng
+Letitia/M
+Letlhabile
+Letlhakaneng
+lets/e
+Letsatsing
+Letsitele
+Letsopo
+Letswatla
+letter/dmrJ
+letterbox/S
+lettered/U
+letterhead/SM
+lettering/M
+letterpress/MS
+letting/S
+lettuce/SM
+letup/MS
+Letzeburgesch
+leukaemia/M
+leukocyte/SM
+Lev
+Levant
+level-headed/Y
+level-headedness/S
+level/TPYRSDG
+levelness/S
+lever/MdS
+leverage/DM
+Levi/S
+leviathan/MS
+Levin/M
+Levine
+levitate/GDnSN
+levitation/M
+Leviticus
+levity/MS
+Levubu
+levy/DSRG
+Levyvale
+lewd/TYP
+lewdness/S
+Lewes
+Lewis/M
+lewis/M
+Lewisham
+lexeme/MS
+lexical/Y
+lexicographer/MS
+lexicography/1wWMS
+lexicon/SM
+Lexington
+Lexis
+Leyden
+Leyland/M
+Leyton
+Lezghian
+LG
+lg
+LGPL
+Lhasa
+Li
+liability/MAS
+liableness/A
+liaise/DSG
+liaison/MS
+Liana
+liar/MS
+Lib-Lab
+lib/DSnGM
+Lib/Z
+Libanon
+libation/M
+Libby/M
+libel/RGMDS
+libellous/Y
+Liberace
+liberal/IY
+liberalise/RnDSG
+liberalism/MS
+liberality/ISM
+liberalization/M
+liberalize/RGNnDS
+liberalness/MS
+liberals
+liberate/CnDGN
+liberates
+liberation/CM
+liberationists
+liberator/MCS
+Liberia/M
+Liberian/S
+libero
+libertarian/MS
+libertarianism/M
+libertine/SM
+Liberty
+liberty/SM
+libidinal
+libidinous/YP
+libido/SM
+Libode
+Libra
+Libradene
+librarian/MS
+librarianship
+library/MS
+libretti
+libretto/3MS
+Libreville/M
+Libya/M
+Libyan/S
+lice/M
+licence/MS
+licensable
+license/GDS
+licensed/U
+licensee/SM
+licenser/M
+licensor/M
+licentiate/MS
+licentious/YP
+licentiousness/S
+lichee/M
+lichen/MS
+lichened
+lichenology
+lichenous
+Lichfield
+Lichtenburg
+Lichtenstein
+licit/IY
+lick/GJDS
+licker/M
+lickerish
+licking/M
+licorice
+lid/pGDMS
+Liddell/M
+Lidgetton
+lido/MS
+lie-down
+lie-in/S
+lie/kG7DS
+Liebenbergsvlei
+Lieberman/M
+Liebfraumilch
+Liechtenstein/RM
+lied/M
+lieder
+lief/A
+liege/S
+lien/MS
+lier's/F
+lies/cfFA
+lieu/M
+lieut
+lieutenancy/SM
+lieutenant/SM
+lieux
+life-and-death
+life-force
+life-giving
+life-preserver
+life-raft/MS
+life-size/D
+life-support
+life-threatening
+life/MRp
+lifebelt/SM
+lifeblood/SM
+lifeboat/MS
+lifeboatman
+lifeboatmen
+lifebuoy/S
+lifeforms
+lifeguard/GMDS
+lifeless/PY
+lifelessness/S
+lifelike/P
+lifeline/SM
+lifelong
+lifesaver/SM
+lifesaving
+lifespan/S
+lifestyle/S
+lifetaking
+lifetime/MS
+lifework/MS
+LIFO
+lift-off/SM
+lift/GRMSD
+ligament/SM
+ligand/MS
+ligate/GNDSn
+ligation/M
+ligature/SDMG
+light's
+light-fingered
+light-headed
+light-headedness
+light-hearted/PY
+light-heartedness/S
+light-pen/MS
+light/CGDS
+lighted/U
+lighten/rdS
+lightening/M
+lighter/SM
+lightest
+lighthouse/SM
+lighting/SM
+lightly
+lightness/SM
+lightning/MDS
+lightproof
+lights/A
+lightship/SM
+lightweight/S
+ligneous
+lignite/SM
+lignum
+likable
+like-minded
+like/YPTGJD7S
+likeability/SM
+likeable/PY
+likeableness/S
+liked/E
+likelihood's/U
+likelihood/MS
+likeliness
+likely/TU
+liken/Sd
+likeness/U
+likenesses
+liker/M
+likes/E
+likewise
+Likhohlong
+liking/M
+Likole
+Lila/M
+lilac/MS
+lilangeni
+Lilianton
+Lillian/M
+Lilliput
+Lilliputian/S
+lilly
+Lillydale
+Lilongwe/M
+lilt/SkMDG
+liltingness
+lily-livered
+lily-white
+lily/DSM
+Lilydale
+Lilyvale
+Lima/M
+Limavady/M
+limb/pWSMD
+limber/UdS
+limbo/SGMD
+Limburg
+Limburger
+lime/DMSZG
+limeade/MS
+Limehill
+limekiln/M
+limelight/MGS
+Limerick/M
+limerick/MS
+limestone/SM
+limit's
+limit/CnrdS
+limitability
+limitably
+limitation/MC
+limited/YP
+limitedly/U
+limitless/PY
+limitlessness/S
+limn/GDS
+limo/S
+limousine/MS
+limp/YDTPGS
+limper/M
+limpet/MS
+limpid/YP
+limpidity/SM
+limpidness/S
+limpness/S
+Limpopo
+Limpopodraai
+limy/T
+Lin/M
+linage/SM
+linchpin/MS
+Lincoln/M
+Lincolnshire/M
+Lind/M
+Linda/M
+Lindberg/M
+Lindbergh/M
+Lindekuhle
+Lindelani
+Linden
+linden/SM
+Lindene
+Lindhaven
+Lindida
+Lindiwe
+Lindley
+Lindquist/M
+Lindsay/M
+Lindsey/M
+Lindstrom/M
+line-up/S
+line/SeMDG
+lineage/SM
+lineal/Y
+lineament/SM
+linear/QtY
+linearisation
+linearity's/F
+linearity/SM
+linebacker/MS
+lined/AfU
+linefeed
+linen/MS
+liner/SM
+lines/Af
+linesman/M
+linesmen/M
+ling/f
+Lingala
+Lingelihle
+linger/dSrk
+lingerie/MS
+lingo/M
+lingoes
+lingua/oM
+lingual/S
+linguine
+linguini's
+linguist/MSW1
+linguistic/S
+linguistics/M
+liniment/SM
+lining/SM
+link-up/S
+link/RMDJ7GS
+linkage/MS
+linked/U
+Links
+links/U
+Linksfield
+Linkside
+Linksys
+Linmeyer
+Linn/M
+Linnaeus/M
+linnet/MS
+Linnies
+lino/M
+linoleum/MS
+Linotype/M
+linseed/SM
+lint/MSZ
+lintel/SM
+linter's
+Linton
+linty/T
+Linus
+Linux/M
+Lion
+lion/MsQS-
+Lionel
+lioness/SM
+lionhearted
+lionization/M
+lionize/D
+lionizer/M
+lip's/f
+lip-read/GJS
+lip-reader
+lip-service
+lip-sync
+lip-synch
+lip/ZSpMDG
+lipase/M
+Liphakoeng
+Liphungu
+lipid/SM
+liplike
+liposuction/S
+lippy/T
+Lipschitz/M
+Lipscomb/M
+lipstick/MS
+Lipton/M
+liq
+liquefaction/MS
+liquefy/SGRD
+liqueur/MS
+liquid/nq98PMs-YSQ
+liquidate/SDG
+liquidation/M
+liquidator/SM
+liquidity/MS
+liquor/MS
+liquorice/SM
+liquorish
+lira/M
+lire
+Lisa
+Lisbon/M
+Lisburn/M
+lisle/SM
+lisp/DRSGM
+Lissajous
+lissom/P
+lissome/P
+list/DJpG
+listed/U
+listen/rdS
+Lister/SM
+listeria
+Listerwood
+listing/M
+listless/PY
+listlessness/S
+Liszt
+lit/R
+litany/SM
+literacy/ISM
+literal-minded
+literal/YPS
+literalism/M
+literalistic
+literalness/S
+literariness/S
+literary/P
+literate/YSN
+literately/I
+literateness
+literates/4KI
+literati
+literation's
+literation/4
+literature/MS
+lithe/YPT
+litheness/S
+lithesome
+lithium/M
+lithograph/RW1SZGMD
+lithography/MS
+lithology/Mw
+lithosphere/MSW
+Lithuania/M
+Lithuanian
+litigant/MS
+litigate/NGDSn
+litigation/M
+litigator/SM
+litigious/PY
+litigiousness/S
+Litjelembube
+litmus/MS
+litotes/M
+litre/MS
+litter/d
+littérateur/S
+litterbug/MS
+litterer/S
+little/TP
+Littlefillan
+littleneck/M
+littleness/S
+Littleton
+Litton
+littoral/S
+liturgics's
+liturgy/S31Mw
+live/DRTGJySP7Y
+liveability/SM
+liveable/YP
+lived-in
+lived/Ae
+livelihood/MS
+liveliness/S
+livelong/S
+lively/PT
+liven/dS
+liver/CdSZ
+liveried
+liverish
+Livermore
+Liverpool/M
+Liverpudlian/MS
+liverwort/MS
+liverwurst's
+livery's
+livery/CmS
+lives's
+lives/Ae
+livestock/MS
+livid/PY
+living/Ae
+Livingston
+Livingstone
+Livonia
+Liwa
+lixiviation
+Liz/MZ
+lizard/SM
+Lizzie
+Ljubljana/M
+ll/C
+llama/MS
+Llandudno
+Llanelli/M
+llano/MS
+LLB
+LLD
+Llewellyn
+Lloyd/M
+lo
+load/7RJGMSD
+loaded/cKAU
+loading/M
+loads/AcU
+loadstar's
+loadstone's
+loaf/MDRGS
+loam/MSZ
+loamy/T
+loan/RGS7MD
+loaning/M
+loansharkings
+loanword/S
+loath/RGPDJ
+loathe/S
+loathing/M
+loathsome/PY
+loathsomeness/S
+loaves/M
+lob/RMGSZD
+Lobachevsky
+lobar
+Lobatla
+lobby/DSG3M
+lobe/DMS
+lobola
+lobotomist
+lobotomy/SQM
+lobster/dSM
+lobular/Y
+lobularity
+lobule/MS
+local/s8YSqQ-9
+locale/SM
+localisable
+localisms
+locality/MS
+localization/M
+locatable/A
+locate/ESNAGFnD
+locater/M
+Location
+location/FMEA
+locational/Y
+locative
+locator/SM
+loch/M
+Lochiel
+lochs
+loci/M
+lock's
+lock-up/MS
+lock/ADGUS
+lockable
+Locke
+locker/MS
+locket/SM
+Lockhart/M
+Lockheed/M
+lockjaw/MS
+locknut/M
+lockout/MS
+locksmith/GMS
+locksmithing/M
+locksteps
+Lockwood/M
+loco/MSG
+locomotion/MS
+locomotive/YMS
+locomotor
+locomotory
+locoweed/MS
+locus/M
+locust/SM
+Locustfinch
+Locusthead
+locution/MS
+lode/MS
+lodestar/MS
+lodestone/SM
+Lodeyko
+lodge's
+lodge/ELGSD
+lodger/SM
+lodging/MS
+Loding
+Loerie
+Loeriesfontein
+Loevenstein
+loft/GSZMz2D
+lofter/M
+loftiness/S
+lofty/PT
+log/W1MDRGwSJ
+Logageng
+Logan
+loganberry/MS
+logarithm/SW1M
+logbook/SM
+loge/MS
+loggerhead/MS
+loggia/SM
+logging/M
+logia
+logic/MSIY
+logical/I
+logicality/IMS
+logicalness/M
+logician/MS
+logicically
+login/S
+logion/M
+logistic/YMS
+logistical
+logjam/MS
+logo/SM
+logotype/MS
+logout
+logrolling/MS
+Lohana
+Lohatla
+Lohengrin
+loin/MS
+loincloth/SM
+Loire
+Lois
+loiter/rSd
+Loki/M
+Lola
+loll/DSYG
+loller/M
+lollipop/MS
+lolly/SM
+Lomb/M
+Lombard/Z
+Lombardy/M
+Lomé/M
+London/rM
+Londonderry/M
+lone/YPR
+Lonehill
+loneliness/S
+lonely/PT
+lonesome/SPY
+lonesomeness/S
+long-ago
+long-awaited
+long-distance
+long-drawn
+long-drawn-out
+long-faced
+long-lasting
+long-legged
+long-life
+long-lived
+long-lost
+long-playing
+long-range
+long-running
+long-sighted/Y
+long-sightedness
+long-standing
+long-suffering/Y
+long-tailed
+long-term
+long-time
+long-waisted
+long-winded
+long-windedness
+long/kJPTGSD
+longboat/MS
+longbow/MS
+Longbridge
+Longcroft
+Longdale
+Longdown
+longeing
+longer-term
+longevity/SM
+Longfellow
+Longford/M
+longhair/SM
+longhand/MS
+longhorn/MS
+longing/M
+longish
+longitude/MS
+longitudinal/Y
+Longlands
+Longstreet/M
+longsword
+longueur/SM
+longways
+longwise
+Longyearbyen/M
+Lonsdale
+loo/M
+loofah/MS
+look/RGSD
+lookahead
+lookalike/S
+looked/cU
+looker-on
+lookers-on
+looking-glass/S
+looking/c
+lookout/SM
+looks/ec
+lookup/MS
+loom/GSMD
+looming/M
+Loomis
+loon/SZM
+loony/ST
+loop/GSZMD
+looper/M
+loophole/GMDS
+loopy/T
+loose-leaf
+loose/TDPGSY
+loosed/U
+loosen/SUd
+loosener/S
+looseness/S
+looses/U
+loosing/M
+loot/RGMSD
+lop/dRSDG
+lope/S
+loper/M
+Lopez
+Loporung
+lopsided/PY
+lopsidedness/S
+loquacious/YP
+loquaciousness/S
+loquacity/SM
+lord/cDGMS
+lording/M
+lordliness/S
+lordly/PT
+Lordship/MS
+lore/SM
+Loren/M
+Lorentz
+Lorentzian
+Lorentzville
+Lorenz/M
+Lorenzo/M
+Loretta
+lorgnette/MS
+Lori/M
+loris/M
+lorn
+Lornegrey
+Lorraine
+lorry/SM
+lorryload/S
+losable
+Losasaneng
+lose/RSG
+loskop
+Loskop
+loss-leader/S
+loss/MpZS
+lossy/T
+lost
+lot/SM
+Lota
+Lothair
+Lothian/M
+lotion/MS
+Lotlhakane
+lottery/SM
+lotto/MS
+lotus/SM
+Lotusville
+Lou/M
+loud-mouth/DSM
+loud/TYP
+louden/d
+loudness/S
+loudspeaker/SM
+loudspeaking
+Loughborough/M
+Louie/M
+Louis/M
+Louisa/M
+Louise/M
+Louisiana/M
+Louisianan
+Louisrus
+Louisvale
+Louisvaleweg
+Louisville/M
+Loumar
+lounge/RDSG
+loupe/MS
+lour/GSD
+Lourdes
+louse's
+louse/CDSG
+lousewort/M
+lousiness/S
+lousy/PYT
+lout/SM
+Louterwater
+Louth/M
+loutish/PY
+Louvar
+louvre/DSM
+Louwna
+Louwsburg
+Louwville
+lovable/P
+lovableness/S
+love-bird/MS
+love-child
+love/plDMYRS7Gk
+loved/U
+Lovedale
+Lovejoy
+Lovelace
+Loveland
+loveless/YP
+loveliness/S
+Lovell
+lovelorn/P
+lovely/STP
+lovemaking/M
+lovesick
+lovestruck
+loving/P
+Lovu
+low-born
+low-down/S
+low-emission
+low-grade
+low-income
+low-key
+low-level
+low-lying
+low-noise
+low-pitched
+low-profile
+low-spirited
+low/PTGYSD
+lowbrow/SM
+Lowe/My
+Lowell
+Lower
+lower-case
+lower-class
+lower/dS
+lowermost
+lowish
+lowland/RMS
+lowlife/MS
+lowlight/MS
+lowliness/S
+lowly/PT
+lowness/S
+Lowryville
+lowveld
+lox
+Loxton
+Loy
+loyal/EY
+loyalism/MS
+loyalist/MS
+loyalty/MSE
+Loyola
+lozenge/MDS
+Lozi
+LPG
+ls/I
+LSD
+Lt
+Lt.
+Ltd
+Lu
+Luanda/M
+luau's
+Luba-Katanga
+Lubaleko
+Lubanzi
+lubber/YMS
+Lubbock
+lube/SMGD
+lubricant/SM
+lubricate/SnVGDN
+lubrication/M
+lubricator/MS
+lubricious/Y
+lubricity/SM
+Lubumbashi
+Lucas
+Luce/Z
+lucent/4Y
+Lucerne
+Lucia/M
+Lucian
+lucid/PY
+lucidity/MS
+lucidness/S
+Lucien
+Lucifer
+Lucille
+luck/MDzpSZ2G
+Luckhoff
+luckiness/SM
+lucky/TUY
+lucrative/P
+lucrativeness/S
+lucre/VuvSM
+Lucretia
+Lucretius
+lucubrate/SnDGN
+lucubration/M
+Lucy/M
+Ludakeni
+Luddite
+Ludhiana
+ludicrous/PY
+ludicrousness/S
+Ludiza
+Ludlow/M
+Ludmilla
+ludo/M
+Ludome
+Ludonga
+Ludovic
+Ludwig
+Luembo
+luff/MDSG
+Lufthansa/M
+Luftwaffe/M
+Lufuta
+lug/DRGS
+Luganda
+luge/MC
+luger
+luggage/SM
+lugsail/SM
+lugubrious/PY
+lugubriousness/S
+Lugwijini
+Luhewini
+Luipaardsvlei
+Luis
+Luiseno
+Lujizweni
+Luka
+Lukasrand
+Luke/M
+lukewarm/PY
+lukewarmness/S
+Lukhanyisweni
+Lukwetu
+Lulekani
+Lulet
+lull/GSD
+lullaby/DMSG
+lulu/M
+lumbago/MS
+lumbar
+lumber/drSM
+lumbering/M
+lumberjack/MS
+lumen/M
+Lumier
+Lumière/M
+luminance/M
+luminary/MS
+luminescence/MS
+luminescent
+luminosity/SM
+luminous/YP
+Lumku
+lummox's
+lump/G2MSZD
+lumpen
+lumper/M
+lumpiness/S
+lumpish/PY
+Lumpur/M
+lumpy/TP
+Luna/M
+lunacy/SM
+lunar/S
+lunate/YW
+lunatic/S
+lunation/M
+lunch-time
+lunch/MGSD
+luncheon/MS
+luncheonette/SM
+luncher/M
+lunchpack
+lunchroom's
+lunchtime/MS
+Lund/M
+Lunda
+Lundberg/M
+Lundquist/M
+lune/MN
+Luneburg
+lung/SMD6G
+lunge/MS
+lunger/M
+Lungfish
+lungfish/MS
+lungful/S
+Luo
+Luphisa
+lupin/S
+Lupindo
+lupine/MS
+lupus/MS
+Lurasheni
+lurch/DGS
+lurcher/M
+lure/DSG
+lurer/M
+lurex
+lurid/PY
+luridness/S
+lurk/DSRG
+Lurwayizo
+Lusaka/M
+luscious/YP
+lusciousness/S
+lush/YTP
+Lushaba
+lushness/S
+Lushof
+Lusikisiki
+Lusitania
+Lusizi
+luso
+lust/6jG2MzSZD
+lustful/P
+lustiness/S
+lustre/DMGpS
+lustring/M
+lustrous/PY
+lusty/TP
+lutanist/MS
+lute/DGSM
+Lutengele
+lutenist/MS
+lutetium/M
+Luther
+Lutheran/MS
+luting/M
+Luton/M
+Lutshaya
+Lutsheko
+Lutz
+Lutzville
+Luvuvhu
+luxe/MS
+Luxembourg/RM
+Luxembourgian
+Luxenbourg/M
+Luxmi
+Luxolweni
+luxuriance/SM
+luxuriant/Y
+luxuriate/SDGNn
+luxuriation/M
+luxurious/YP
+luxuriousness/S
+luxury/SM
+Luyengweni
+Luyoloville
+Luzon/M
+Luzuko
+Luzupu
+Lwamondo
+Lwandle
+lycée
+lyceum/MS
+lychee/MS
+lycopodium/M
+Lycra
+Lydenburg
+Lydia
+Lydian
+Lydiana
+lye/M
+lying/fFce
+Lyle/M
+Lyman/M
+Lyme
+lymph/SM
+lymphatic/S
+lymphocyte/SM
+lymphoid
+lymphoma/MS
+Lyn
+lynch/SRJGD
+Lynchburg
+lynching/M
+Lyndhurst
+Lyndon
+Lynedoch
+Lynfrae
+Lynn/M
+Lynnrodene
+Lynnville
+Lynnwood
+Lynnwoodrif
+lynx/MS
+Lyon/SM
+lyre/S1MWw
+lyrebird/SM
+lyric/3S
+lyrical/P
+lyricism/MS
+lyricist
+lyrist
+Lysenko/M
+lysine/M
+Lysol
+Lyttelton
+Lyttleton
+M'lapa-kgomo
+M-Net
+M.Sc.
+MA
+ma'am
+ma/MFS
+Maandagshoek
+Maanhaarrand
+Maasstroom
+Mabaalstad
+Mabale
+Mabaleni
+Mabalia
+Mabatlani
+Mabedlana
+Mabehame
+Mabel/M
+Mabele-a-podi
+Mabeskraal
+Mabhedwini
+Mabhuyeni
+Mabins
+Mabjaneng
+Mabobo
+Mabodisa
+Mabogweni
+Maboine
+Mabolela
+Maboloka
+Maboloke
+Mabopane
+Mabotja
+Maboyi
+Mabudu
+mac/SM
+macabre/Y
+macadam/QSM
+macadamia
+macadamian
+Macao
+macaque/SM
+macaroni/MS
+macaronic
+macaroon/SM
+MacArthur/M
+Macassar
+Macau
+macaw/SM
+Macclesfield
+MacDonald/M
+MacDraw/M
+mace-bearer/S
+mace/GDMS
+Macedon
+Macedonia/M
+Macedonian
+Macekana
+macer/M
+macerate/nSGDN
+maceration/M
+MacGregor/M
+Mach
+Machadodorp
+machete/SM
+Machiavelli
+Machiavellian
+Machibi
+Machibisa
+machinable
+machinate/SDG
+machination/M
+machine-gun/GSD
+machine-readable
+machine/NMDy3GSn
+machinelike
+machinery/SM
+machismo/MS
+macho/S
+macintosh/SM
+MacIntyre
+mack/M
+Mackenzie
+MacKenzie/M
+Mackenzieville
+Mackerel
+mackerel/SM
+Mackie
+mackintosh/MS
+Macksame
+Mackweza
+Macleantown
+Macleanville
+Maclear
+Macmillan/M
+MacMillan/M
+Macon
+macramé/S
+macro/SM
+macrobiotic/S
+macrobiotics/M
+macrocosm/MS
+macrodynamic
+macroeconomic/S
+macroeconomics/M
+macromolecular
+macromolecule/MS
+macron/MS
+macrophage/SM
+macroscopic/Y
+macrosimulation
+macrosocio-economic
+Macubeni
+mad/DTRGPY
+Madada
+Madadeni
+Madagascan/SM
+Madagascar/M
+madam/MS
+madame/M
+madcap/S
+madden/dSk
+Maddox
+made-up
+made/UA
+Madeira
+Madela
+Madeleine/M
+Madeline/M
+mademoiselle/SM
+madhouse/SM
+Madhya
+Madiba
+Madibeng
+Madibogo
+Madibogopan
+Madidi
+Madietane
+Madikgetla
+Madikwe
+Madipelesa
+Madisane
+Madison
+Madlala
+Madlambo
+Madlanyoka
+Madlayedwa
+madman/M
+madmen/M
+madness/S
+Madokodeni
+Madonna/M
+madras
+Madras
+Madrid/M
+madrigal/SM
+Madsen/M
+Madurese
+Madwaleni
+madwoman/M
+madwomen
+Mae/M
+maelstrom/SM
+maestri
+maestro/MS
+Mafahlaneng
+Mafahlawane
+Mafakathini
+Mafarana
+Mafatsana
+Mafemani
+Mafia/M
+Mafikeng
+Mafini
+Mafiosi
+Mafioso/M
+Mafora
+mafufunyana
+MAG
+Magabheni
+Magadla
+Magadlela
+Magagula
+Magahi
+Magaliesberg
+Magaliesburg
+Magaliesig
+Magalieskruin
+Magaliessig
+Magaweni
+magazine/DGMS
+Magdalena
+Magdalene
+Magelembe
+Magellan
+magenta/SM
+Maggie
+maggot/MS
+maggoty/T
+Magheights
+Magherafelt/M
+magi
+magic/MDGY
+magical
+magician/MS
+Magidela
+Magill
+Maginindane
+magisterial/Y
+magistracy/SM
+magistrate/MS
+magma/WMS
+magnanimity/SM
+magnanimosity
+magnanimous/Y
+magnanimousness
+magnate/SM
+magnesia/SM
+magnesite/M
+magnesium/M
+magnet/tqQ+SM18W-
+magnetic/S
+magnetics/M
+magnetise/CBSGnD
+magnetism/SM
+magnetite/MS
+magnetize/CBDGSnN
+magneto/SM
+magnetodynamics
+magnetohydrodynamical
+magnetohydrodynamics/M
+magnetometer/SM
+magnetosphere/M
+magnetron/M
+magnification/MS
+magnificence/SM
+magnificent/Y
+magnified/U
+magnify/CRSGDN
+magniloquence/MS
+magniloquent
+magnitude/MS
+magnolia/SM
+magnum/MS
+Magnuson/M
+Magoai
+Magoebaskloof
+Magog/M
+Magogeni
+Magogoe
+Magogong
+Magologolo
+Magopheng
+magpie/SM
+Magsmanor
+Magudu
+Maguire
+Magusheni
+Magyar
+mah
+mah-jong/M
+mah-jongg/M
+Mahalibhomemi
+maharajah/SM
+maharanee's
+maharani/SM
+maharishi/MS
+Mahashni
+Mahatlani
+mahatma/SM
+Mahayana
+Mahayanist
+Mahehle
+Mahekgwe
+Mahihashini
+Mahlabatini
+Mahlafuna
+Mahlalela
+Mahlamvu
+Mahlangasi
+Mahlatini
+Mahlatswetsa
+Mahlayizeni
+Mahler/M
+Mahlungulu
+Mahlutshini
+mahogany/SM
+mahout/MS
+Mahushu
+Mahwelereng
+Mahwibitsane
+maid/MS
+maiden/YMS
+maidenhair/MS
+Maidenhead/M
+maidenhead/MS
+maidenhood/SM
+maidenliness
+maidservant/MS
+Maidstone/M
+Maier
+Maijane
+mail-order
+mail/GRD7MJS
+mailbag/MS
+mailbox/SM
+Maile
+maillot/SM
+mailshot
+Mailulu
+maim/GSDR
+maimedness's
+Main
+main/SY
+mainbrace/M
+Maine
+mainframe/MS
+mainland/RMS
+mainline/DRSG
+mainman
+mainmanne
+mainmast/SM
+mains/M
+mainsail/SM
+mainspring/MS
+mainstay/MS
+mainstream/SM
+mainstreamer
+maintain/BRDGS
+maintainable/U
+maintained/U
+maintenance/MS
+maintop/MS
+maiolica's
+maisonette/MS
+Maithili
+Maitland
+maître
+maize
+maizena
+Maja
+Majaneng
+majesty/SW1M
+Majolantaba
+majolica/MS
+major/MS
+Majorca/M
+majordomo/S
+majorette/MS
+majority/SM
+Majosi
+Majuro/M
+Makaba
+makable
+Makadikwe
+Makanaskop
+Makaota
+Makapaanstad
+Makasar
+make-believe
+make-up/SM
+make/SRGJ
+makefile/S
+Makekeng
+Makeleketla
+Makeneng
+makeover/S
+makes/AU
+makeshift
+Makgaba
+Makgaung
+Makgobistad
+Makgope
+Makhado
+Makhalaneng
+Makhalathini
+Makhasa
+Makhaya
+Makhosha
+Makhubung
+Makhudu
+Makhuswane
+making/M
+Makli
+Makoko
+Makokono
+Makokskraal
+Makolokoe
+Makometsane
+Makonde
+Makonyeni
+Makopane
+Makoppa
+Makosha
+makoti
+Makububele
+Makuleke
+Makwababa
+Makwantini
+Makwassie
+makwerekwere
+Malabar
+Malabo/M
+Malachi
+malachite/MS
+maladapt/VD
+maladjust/DLV
+maladministration
+maladroit/YP
+maladroitness/S
+malady/SM
+Malagasy/M
+malaise/SM
+Malamala
+Malamud
+Malamulele
+malamute/MS
+Malanshof
+Malaprop
+malapropism/MS
+malaria/MS
+malarial
+malarkey/MS
+Malatane
+malathion/S
+Malawi/M
+Malawian/S
+Malay
+Malaya
+Malayalam
+Malayan/SM
+Malaysia/M
+Malaysian/S
+Malcolm/M
+malcontent/M
+Maldives/M
+Male
+male/MPS
+Malebogo
+Maleboho
+malediction/MS
+malefaction/SM
+malefactor/MS
+malefic
+maleficence/SM
+maleficent
+Malekutu
+Malelane
+maleness/S
+Malenge
+Malepelepe
+malevolence/S
+malevolencies
+malevolent/Y
+malfeasance/SM
+malfeasant
+malformation/MS
+malformed
+malfunction/DGS
+Mali/M
+Malibu/M
+malice/MS
+malicious/YP
+maliciousness/S
+malign/DGYRS
+malignancy/MS
+malignant/Y
+malignity/MS
+malinger/drS
+Malkopbaai
+mall/SM
+Mallard
+mallard/SM
+Mallarmé/M
+malleability/MS
+malleable/P
+mallet/SM
+Mallory
+mallow/MS
+Malmesbury
+malnourished
+malnourishment/SM
+malnutrition/MS
+malocclusion/SM
+malodorous
+Malone
+malposed
+malpractice/SM
+malt/DSZMG
+Malta/M
+Maltese
+Malthusian
+malting/M
+maltose/SM
+maltreat/DGSL
+malty/T
+Malukazi
+Maluti
+malva
+Malvern
+mama/SM
+Mamabala-ditlou
+Mamadi
+Mamadila
+Mamafubedu
+Mamahabane
+Mamaola
+Mamaolo
+Mamatsha
+mamba/MS
+Mambedwini
+mambo/MSDG
+Mamelodi
+Mametlhake
+mamma's
+mammal/SM
+Mammalia
+mammalian/MS
+mammary/S
+mammogram/S
+mammography/S
+Mammon/M
+mammoth/SM
+mammy/M
+Mamogaleskraal
+Mamoutzu/M
+mampara
+Mampe
+mampoer
+Mamre
+man-hour/S
+man-made
+man-of-war
+man-sized
+man-year/S
+man/1R6WMjYDG
+manacle/MSDG
+Managau/M
+manage/LGaSD
+manageability/S
+manageable/U
+manageableness
+managed/U
+manager/MoS
+manageress/SM
+managerial
+managership/M
+Managua
+Manama/M
+Manamakgotheng
+Manamela
+mañana/M
+mananas
+Mananga
+Manasseh
+manatee/MS
+Mancam
+Manchester/M
+Manchu
+Manchuria/M
+Manchurian/S
+Mancinza
+manciple/M
+Mancunian/MS
+mandala/MS
+Mandalay
+mandamus/MdS
+mandarin/MS
+mandate/MySDG
+Mandel's
+Mandela
+Mandelahoogte
+Mandelbrot/M
+Mandeni
+mandible/SM
+mandibular
+Mandileni
+Mandingo
+Mandlankala
+mandolin/MS
+Mandor
+Mandrake/M
+mandrake/MS
+mandrel/MS
+mandrill/MS
+mane/SZM
+manège/DSG
+Manenberg
+Manenzhe
+Manet
+Manfred
+Manganeng
+manganese/M
+Mangaung
+mange/M2SZR
+Mangeni
+Mangezi
+manginess/S
+mangle/GSD
+mangler/M
+mango/MS
+mangoes
+mangold
+mangold-wurzel/S
+Mangoloaneng
+mangrove/MS
+mangy/T
+manhandle/SDG
+Manhattan/M
+manhole/MS
+manhood/MS
+manhunt/MS
+Mani
+mania/MS
+maniac/SM
+maniacal/Y
+manic/S
+manicure/G3DSM
+manifest/nGSYND
+manifestation/M
+manifestness
+manifesto/SM
+manifold/MPSY
+manifolder/M
+manikin/MS
+Manila/M
+manilla/S
+manille
+manioc/SM
+manipulatable
+manipulate/uBNDSGnVy
+manipulative/M
+manipulator/MS
+Manipuri
+Manitoba
+Manitowoc
+mankind/M
+Mankurwane
+Mankweng
+Manley/M
+manlier
+manliest
+manlike
+manliness/SM
+manly/U
+Mann/M
+manna/SM
+manne
+manned/Uf
+mannequin/SM
+manner/Y
+mannered/U
+mannerism/SM
+mannerist/M
+mannerliness's
+mannerliness/U
+mannerly/U
+mannetjie
+Mannheim
+mannikin's
+manning/c
+mannish/YP
+mannishness/S
+Manny's
+manoeuvrability/SM
+manoeuvre/MBDGSJ
+manoeuvred/e
+manoeuvres/e
+manoeuvring/e
+Manoge
+Manokwane
+manometer/MS
+Manor/S
+manor/SM
+manorial
+manpower/MS
+manqué/M
+Manquzu
+mansard/SM
+manse/SMNX
+manservant/M
+Mansfield
+mansion/M
+manslaughter/SM
+Manta
+manta/SM
+Manteku
+mantel/MS
+mantelpiece/MS
+mantelshelf
+Manthata
+Manthestad
+Manthinta
+mantilla/MS
+mantis/SM
+mantissa/SM
+mantle's
+mantle/GEDS
+mantling/M
+Manton
+mantra/SM
+mantrap/MS
+Mantsho
+manual/MYS
+Manubi
+Manuel/M
+Manufacta
+manufacture/BRJGDS
+manumission/M
+manumit/DSGNX
+manure/SMRDG
+manuscript/MS
+Manville
+Manx
+Manyama
+Manyanani
+Manyavu
+Manyeding
+Manyeleti
+Manyetseng
+Manzana
+Manzengwenya
+Manzi
+Manzibomvu
+Manzimahle
+Mao
+Maoism
+Maokeng
+Maologane
+Maori
+map's
+map/AGDS
+Mapaputle
+Mapela
+Mapetla
+Mapfontein
+Maphalle
+Maphanga
+Maphikela
+Maphodi
+Maphoitsile
+Maphophoma
+maple/MS
+mapmaker/S
+Maponto
+mappable
+mapped/U
+mapper/MS
+mapping/MS
+Mapumulo
+Maputo/M
+Maqhikizana
+Maqongqo
+Maqwakazi
+mar/DZG
+Mara
+Marabastad
+marabi
+marabou/MS
+marabout's
+maraca/MS
+Maracaibo
+Marafe
+Marais
+Maraisburg
+Marapallo
+Marapyane
+maraschino/MS
+Marashu
+Marathi
+marathon/MrS
+maraud/RGSD
+marble/MSGJD
+marbler/M
+marbling/M
+Marburg
+Marc/MZ
+Marceau/M
+Marcel
+Marcelle
+Marcello/M
+Marcellus
+march/DRGS
+Marchand
+marchioness/SM
+Marcia/M
+Marcie/M
+Marco/MS
+Marconi
+Marcus
+Mardi
+mare/MS
+Mare/Z
+Mareetsane
+Margaret/M
+margarine/SM
+margarita's
+margaritas
+Margate
+Marge/y
+Margery/M
+margin/odMS
+marginal/Q-8qS
+marginalia
+marginality
+Margo/M
+Marguerite
+Mari
+maria/M
+mariachi's
+Marian/M
+Mariana/S
+Marianas/M
+Marianhill
+Marianne/M
+Mariannhill
+Maribana
+Marico
+Marie/M
+Marieshaft
+Marietta
+Marievlei
+marigold/SM
+marijuana/MS
+Marikana
+Marilyn
+marimba/MS
+Marin
+Marina
+marina/nSM
+marinade/SMDG
+marinara/SM
+marinate/SGD
+marination/M
+marine/NRS
+Marino/M
+Mario
+Marion
+marionette/MS
+Marishane
+Marissa/M
+Marister
+marital/KY
+Marite
+maritime
+maritimer
+Marius
+marjoram/MS
+Marjorie
+Marjory/M
+mark's/A
+mark-up/SM
+mark/DhRJmGMS7
+markdown/MS
+marked/AU
+Marken
+market/7MrJgdS
+marketability/MS
+marketable/U
+marketeer/S
+marketing/M
+marketplace/MS
+Markham/M
+marking/M
+markka/M
+Markman
+Markov/M
+Markovitz/M
+Markplein
+marks/A
+marksmanship/S
+marl/MGSD
+Marlands
+Marlboro
+Marlborough/M
+Marlene/M
+Marley/M
+marlin/MS
+Marline/M
+marlinespike/SM
+Marlow/M
+Marlowe/M
+marmalade/SM
+Marmite
+marmoreal
+marmoset/SM
+marmot/SM
+Marnitz
+Marobeng
+Maroela
+Maroelana
+marog
+Marokolong
+maroon/DGS
+marooner
+Marquard
+marque/SM
+marquee/MS
+Marquess/M
+marquess/SM
+marquetry/MS
+Marquette
+marquis/SM
+marquise/M
+marquisette/MS
+Marrakesh
+marriage/MAS
+marriageability/SM
+marriageable
+married/S
+Marriott
+marrow/MS
+marrowbone/SM
+marry/DGAS
+Mars
+Marsden
+Marseillaise
+Marseilles
+marsh/S2ZM
+Marsha
+marshal/DRJMGS
+Marshall/M
+Marshalltown
+marshland/MS
+marshmallow/MS
+marshy/PT
+marsupial/MS
+mart/DGMS
+Marta
+Martel
+marten/MS
+Marteshaft
+Martha
+martial/Y
+Martian/S
+martin/SM
+Martindale
+martinet/MS
+Martinez
+martingale/SM
+Martini/MS
+martinique
+Martinique/M
+Martinson
+Martinville
+Marty
+martyr/SMDG
+martyrdom/SM
+marula/S
+Marulakololo
+Marulaneng
+marvel/SDG
+Marvell
+marvellous/Y
+Marvin
+Marwari
+Marx/3M
+Marxian
+Marxism
+Marxist
+Mary/M
+Marydale
+Maryland/M
+Marylanders
+Marylebone/M
+Maryvale
+marzipan/MS
+mas/rDWG
+Masada
+Masai
+Masakane
+Masakeng
+Masakhane
+Masakhe
+Masakona
+masala/S
+Masaleng
+Masamane
+masc
+Mascagni
+mascara/GSMD
+mascot/SM
+masculine/PY
+masculinity/SM
+Masechaba
+Maseke
+Masemola
+Maserati
+Maseru/M
+mash/SDRMGJ
+Mashaeng
+Mashamaite
+Mashamba
+Mashashane
+Mashau
+Mashinga
+Mashishimale
+Mashishing
+Mashite
+Mashobohleng
+Masia
+Masibambane
+Masibekela
+Masibi
+Masilo
+Masincedane
+Masingita
+Masinyasana
+Masiphumelele
+Masisi
+Masitshaba
+mask/RSJMDG
+Maskahane
+Maskamsig
+masked/U
+masks/U
+masochism/MS
+masochist/W1SM
+Masodi
+Masoheng
+mason/dMSWy
+Masonite
+masonry/MS
+Masonti
+masque/RMS
+masquerade/MDRSG
+mass-market
+mass-produced
+mass-producing
+mass/SvuVp
+Massa
+Massachusetts
+massacre/MGSD
+massacrer
+massage/MDSG
+massager/M
+Massenet
+masseur/MS
+masseuse/SM
+Massey/M
+massif/MS
+massive/P
+massiveness/S
+Massondale
+mast/RSMDG
+mastectomy/SM
+master-class/SM
+master-stroke/MS
+master-work/S
+master/dYJZj6
+mastered/Ac
+masterful/P
+mastering/c
+masterliness
+mastermind/DSG
+masterpiece/MS
+masters/Ac
+mastership/M
+mastery/SM
+masthead/MGSD
+mastic/NnMS
+masticate/GSD
+mastication/M
+mastiff/MS
+mastodon/SM
+mastoid/S
+masturbate/NnDySG
+masturbation/M
+Masundwini
+Masutlhe
+Maswaneng
+Maswazini
+mat/dMSRGJD
+Mata-Utu/M
+matador/SM
+Mataffin
+Mataleng
+Matamela
+Matatiele
+Matavhela
+match's/A
+match/7DRJMSGp
+matchable/U
+matchbook's
+matchbox/SM
+matched/eaAU
+matches/eAa
+matching/cea
+matchless/Y
+matchlock/MS
+matchmake/GRJ
+matchmaking/M
+matchplay
+matchstick/SM
+matchwood/MS
+Matco
+mate/JMSz
+Mateo/M
+mater/WoM
+material's
+material/IY
+materialise/RnGDS
+materialism/SM
+materialist/WSM1
+materiality/IM
+materialization/M
+materialize/NDRnSG
+materialness's
+materialness/I
+materials
+materiel
+matériel/MS
+maternal/Y
+maternity/MS
+Mathabatha
+Mathematica
+mathematical/Y
+mathematician/SM
+mathematics/M
+Mathews
+Mathias
+Mathibestad
+Mathieu
+Mathis
+Matholesville
+maths
+Matibidi
+Matidze
+Matie/S
+Matieland
+Matilda
+Matimatolo
+matinée/S
+matinee/S
+mating/M
+matins/M
+Matisse
+Matiwane
+Matjeka
+Matjhirini
+Matjiesfontein
+Matjieskloof
+Matlab
+Matlabas
+Matlakeng
+Matlalane
+Matlametlo
+Matlapaneng
+Matlock
+Matlosane
+Matombe
+Matonana
+Matoporong
+matriarch/ZM
+matriarchal
+matriarchs
+matriarchy/SM
+Matric
+matrices
+matricidal
+matricide/SM
+matriculant
+matriculate/SnDGN
+Matriculation
+matriculation/M
+matrimonial
+matrimony/SoM
+matrix/M
+matron/YSM
+Matroosfontein
+Matshekheng
+Matshelapata
+Matsheng
+Matshetsha
+Matshona
+Matsikeng
+Matsulu
+Matsumoto/M
+Matsushita
+matt/M
+matte/MS
+Mattel
+matter-of-fact/Y
+matter/d
+Matterhorn
+Matthau
+Matthew/S
+Matthias
+Mattie
+matting/M
+mattock/MS
+mattress/MS
+maturate/DSG
+maturation/M
+mature/DnYxPTGNVS
+maturely/KI
+matureness/K
+maturer/M
+maturity's/K
+maturity/ISM
+Matwabeng
+Matyeni
+matzo/SM
+matzoth
+Matzotshweni
+Maubane
+Maud
+Maude
+maudlin/Y
+Mauersnek
+Maui
+maul/DRGS
+Maumong
+maunder/dS
+Maureen
+Maurice
+Mauricio
+Maurine/M
+Mauritania/M
+Mauritanian/S
+Mauritian/S
+Mauritius/M
+Mauser
+mausoleum/SM
+Mautse
+mauve/MS
+Mavambe
+Mavelebayi
+maverick/SM
+Mavis
+Mavuso
+Mavuya
+maw/SMGD
+Mawk
+mawkish/PY
+mawkishness/S
+Maxakeni
+Maxegweni
+maxi/S
+maxilla/yM
+maxillae
+maxillary/S
+maxim/q-8Ss9MoQ
+maxima/M
+maximal/S
+maximality
+Maximilian
+maximization/M
+maximum/SYM
+Maxine
+maxing
+Maxtor/M
+Maxwell/M
+Maxwellian
+May's
+may/EG
+Maya
+Mayan/S
+Mayats
+maybe/S
+mayday/S
+Maye
+Mayer/M
+Mayfair/M
+mayflower/SM
+mayfly/MS
+mayhap
+Mayheights
+mayhem/MS
+Mayhew
+Mayibuye
+mayn't
+Maynard/M
+Maynardville
+Mayo/M
+mayonnaise/SM
+mayor/MS
+mayoral
+mayoralty/SM
+mayoress/SM
+mayorship/M
+Mayotte/M
+maypole/MS
+mayst
+Mayville
+Mazda
+maze/SMDGZ
+Mazenzele
+mazer
+Mazolwandle
+mazurka/MS
+mazy/T
+MB
+MBA
+Mbabane/M
+Mbabazane
+Mbalenhle
+Mbalentle
+Mbalisweni
+Mbambiso
+Mbangcolo
+Mbangwane
+mbaqanga
+Mbashe
+Mbazwana
+Mbeka
+Mbekweni
+Mbhetana
+Mbibane
+mbira
+Mbitane
+Mbiyo
+Mbizana
+Mbokazi
+Mbokota
+Mbokotwana
+Mbolombe
+Mbolompeni
+Mbolompo
+Mbonda
+Mbotyi
+Mbozamo
+Mbozisa
+Mbps
+Mbulukweza
+Mbulwane
+Mbulwini
+Mbuqe
+Mbutu
+McAdams
+McAllister/M
+McBride/M
+McCabe/M
+McCall/M
+McCarthy/M
+McCartney
+McCarty/M
+McCauley/M
+McClain/M
+McClellan/M
+McClure/M
+McCluskey/M
+McConnell/M
+McCormick/M
+McCoy/M
+McCracken/M
+McCullough/M
+McDaniel/M
+McDermott/M
+McDonald/M
+McDonnell/M
+McDougall/M
+McDowell/M
+Mcetheni
+McFadden/M
+McFarland/M
+McGee/M
+McGill/M
+McGovern/M
+McGowan/M
+McGrath/M
+McGraw/M
+Mcgregor
+McGregor/M
+McGuire/M
+MCI
+McIntosh/M
+McIntyre/M
+McKay/M
+McKee/M
+McKenzie/M
+McKesson/M
+McKinley/M
+McKinney/M
+McKnight/M
+McLaren/M
+McLaughlin/M
+McLean/M
+McLeod/M
+McMahon/M
+McMillan/M
+Mcnaughton
+McNaughton/M
+McNeil/M
+McNish
+Mcosela
+McPherson/M
+Mcubakazi
+MD
+Mdakeni
+Mdanishini
+Mdantsane
+Mdasha
+Mdawendle
+Mdc
+Mdedelwa
+Mdeni
+Mdladla
+Mdlazi
+Mdlokohlo
+mdse
+MDT
+Mdwaka
+Mdwebu
+me/s3
+mead/SM
+Meade
+meadow/SM
+Meadowbrook
+Meadowdale
+Meadowhurst
+meadowland
+Meadowlands
+meadowlark/MS
+Meadowridge
+Meadows
+meadowsweet/M
+meagre/Y
+meagreness
+meal/SZM2
+mealie
+mealiness/S
+mealtime/MS
+mealy-mouthed
+mealy/TSP
+mean/GYJST
+meander/dJS
+meanie/SM
+meaning/j6pM
+meaningful/P
+meaningfulness/S
+meaningless/PY
+meaninglessness/S
+meanness/S
+means/C
+meant/U
+meantime
+meanwhile
+measles
+measly/T
+measurable/UI
+measurably/I
+measure/lLpSGMhD
+measured/UA
+measurement/A
+measurer/M
+measures/A
+measuring/A
+meat/M2pSZ
+meataxe
+meatball/SM
+Meath/M
+meatiness/S
+meatloaf
+meatloaves
+meatpacking/S
+meaty/PT
+mebos
+MEC
+Mecca/M
+Mecer
+mechanic/SYM
+mechanical/S
+mechanise/RBnGSD
+mechanised/U
+mechanism/MS
+mechanist/1MW
+mechanize/NDnBG
+mechanized/U
+mechanizer/M
+mechanochemically
+medal/DSM
+medallion/MS
+medallist/S
+meddle/RSDG
+meddlesome
+Medfield
+media/Mno
+mediaeval/M3YS
+mediaevalism
+mediaevalist
+medial/AY
+medials
+median/YSM
+mediate/YPI
+mediated
+mediates
+mediating
+mediation/M
+mediator/MS
+MediaWiki
+medic/SYMNnV
+Medicaid
+medical/S
+medicament/SM
+Medicare
+medicate/DSG
+medication/M
+Medici
+medicinal/S
+medicine/oSM
+medico-legal
+medico/SM
+medieval
+medievalist/S
+Medina
+mediocre
+mediocrity/SM
+meditate/GVDSnvNu
+meditated/K
+meditates/K
+meditating/K
+meditation/KMS
+meditative/P
+Mediterranean
+medium-sized
+medium/MS
+mediumistic
+medley/MS
+medulla/SM
+Medunsa
+Medusa/M
+Medway/M
+meed/MS
+meek/TPY
+meekness/S
+Meerhof
+meerkat
+Meerland
+Meerlus
+meerschaum/MS
+meet/SJYG
+meeter/M
+meeting/M
+meetinghouse/S
+Meg/M
+mega
+megabit/MS
+megabuck/S
+megabyte/S
+megacycle/MS
+megadeath/SM
+megahertz/M
+megajoules
+megalith/WMS
+megalomania/MS
+megalomaniac/SM
+megalopolis/MS
+Megamillions
+megaparsec
+megaphone/GMDS
+megaton/SM
+megavolt/M
+megawatt/MS
+megaword/S
+megohm/SM
+Mehlomane
+Mehlomnyama
+Meier/M
+meioses
+meiosis/M
+meiotic
+Meiringspark
+meisie
+Meister
+Meistersinger
+Mekong
+Mel
+melamine/SM
+melancholia/SM
+melancholic/S
+melancholy/WMS
+Melanesia
+Melanesian
+mélange
+melange
+Melanie
+melanin/SM
+melanoma/SM
+melatonin
+Melba
+Melbourn
+Melbourne
+Melcher/M
+meld/GSD
+Meldene
+Meldrew
+mêlée/SM
+Melinda
+meliorate/GNSnVD
+melioration/M
+Melissa
+Melkbosstrand
+Melkhoutfontein
+melkkos
+melktert
+mellifluous/YP
+mellifluousness/S
+Mellon
+mellow/TPGDYS
+mellowness/S
+Mellowwood
+Melmoth
+melodic/S
+Melodie
+Meloding
+melodious/Y
+melodiousness/S
+melodrama/1MSW
+melodramatic/S
+melody/SWM1
+Melon
+melon/SM
+Melrose
+melt/ADGS
+meltdown/S
+melter/M
+melting/Y
+Melton
+Meltonwold
+Melville
+Melvin
+Melvyn
+member's
+member/ESA
+membership/MS
+membrane/DMS
+membranous
+Memel
+memento/MS
+mementoes
+memo/MyS
+memoir/MS
+mémoire
+memoires
+memorabilia
+memorability/SM
+memorable/PY
+memoranda
+memorandum/SM
+memorial/QS
+memorially/I
+memoriam
+memorization/M
+memory/SQs8-oq9M
+memoryless
+Memphis
+men/M
+menace/SGDk
+ménage
+menagerie/MS
+menarche/MS
+mend/FGSD
+mendacious/YP
+mendacity/MS
+Mende
+Mendel/M
+mendelevium/M
+Mendelssohn
+mender/FM
+menders
+mendicancy/MS
+mendicant/S
+mending/MS
+Mendip
+Mendoza
+Mendu
+meneer
+menfolk/M
+menhaden/M
+menial/SY
+meningeal
+meninges
+meningitides
+meningitis/M
+meninx
+menisci
+meniscus/M
+Menlo
+Menlyn
+Mennonite/S
+Menominee
+menopausal
+menopause/SM
+menorah/MS
+menorrhoea
+Mensa
+menservants/M
+menstrual/K
+menstruate/GSDNn
+menstruation/M
+mensurable/F
+mensurableness
+mensuration/SM
+menswear/M
+mental/Y3
+mentalist
+mentality/MS
+Mente
+menthol/SM
+mentholated
+mention/DRGS7
+mentionable/U
+mentioned/fU
+mentor/MS
+mentored
+menu-driven
+menu/SM
+Menuhin/M
+meow/DGS
+Mephistopheles
+Meqheleng
+Merafe
+Merafong
+Meraka
+mercantile
+Mercator
+Mercedes
+Mercedes-Benz/M
+mercenary/SPM
+mercer/MQS
+merchandise/MGJRSD
+merchant/BMS
+merchantman/M
+merchantmen/M
+Mercier
+merciful/UY
+mercifulness/M
+merciless/PY
+mercilessness/S
+Merck/M
+mercurial/S
+mercurialness
+Mercurochrome
+mercury/WMo
+mercy/6jSpM
+mere/YST
+Merebank
+Meredale
+Meredith
+meretricious/PY
+meretriciousness/S
+Merewent
+merganser/MS
+merge/DRSG
+meridian/SM
+meridional
+meringue/MS
+merino/MS
+merit/dCMS
+merited/U
+Meriting
+meritocracy/MS
+meritocratic
+meritocrats
+meritorious/YP
+meritoriousness/S
+Merle
+Merlewood
+merlin/M
+mermaid/MS
+meromorphic
+Merriam
+Merrick
+Merriespruit
+Merrill
+Merrimac
+Merrimack
+merriness/S
+Merritt/M
+Merrivale
+merry-go-round/S
+merry/LTY
+Merrydale
+merrymaker/MS
+merrymaking/MS
+Mersey
+Merseyside/M
+Merthyr
+Merton
+Merweville
+mes/Dz2GZ
+mesa/SM
+mescal/MS
+mescaline/SM
+mesdames/M
+mesdemoiselles/M
+mesh/SDGM
+meshed/U
+mesmeric
+mesmerise/RDGS
+mesmerism/SM
+mesmerized
+mesmerizer/M
+mesmerizing
+Mesolithic
+mesomorph/SM
+meson/MS
+Mesopotamia/M
+Mesopotamian/S
+mesosphere/SM
+mesozoic
+mesquite/MS
+mess/MS
+message/MDSG
+messenger/dMS
+Messiaen
+messiah/S
+messianic
+messieurs's
+Messina/M
+messiness/S
+messmate/SM
+Messrs
+messy/TP
+mestizo/MS
+met/dr
+meta
+metabolic/Y
+metabolise/DGS
+metabolism/MS
+metabolite/MS
+metabolize
+metacarpal/S
+metacarpi
+metacarpus/M
+metacentre/W
+metacircular
+metacircularity
+metal/GSMWJD
+metalanguage/MS
+metalinguistic
+metallic/S
+metalliferous
+metallise/SDGn
+metallize/nDNSG
+metallography/M
+metalloid/M
+metallurgist/S
+metallurgy/wMSW1
+metalsmith/SM
+metalwork/RSJMG
+metalworking/M
+metamathematical
+metamorphic
+metamorphism/MS
+metamorphose/GDS
+metamorphosis/M
+metaphor/WMw1S
+metaphosphate's
+metaphysic/MYS
+metaphysical
+metastability/M
+metastable
+metastases
+metastasis/MdQS
+metastatic
+metatarsal/S
+metatarsi
+metatarsus/M
+metatheses
+metathesis/M
+metathesized
+metathesizes
+metathesizing
+metavariable
+mete/S
+metempsychoses
+metempsychosis/M
+meteor/W1SM
+meteorite/WMS
+meteoritic/S
+meteoritics/M
+meteoroid/MS
+meteorologist/S
+meteorology/wMS
+meter/d
+Metford
+methadone/MS
+methane/M
+methanol/M
+methinks
+methionine/M
+method/S1Mw
+methodical/U
+methodicalness/SM
+Methodism
+Methodist/MS
+methodologists
+methodology/w1MS
+methought
+Methuen/M
+Methuselah
+methyl/MS
+methylated
+methylene/M
+Methyr/M
+meticulous/PY
+meticulousness/S
+metier
+métier/S
+metonymy/M
+metre/WwS1
+metric/MNSn
+metricate/DGS
+metrics/M
+Metro
+metro/MS
+metronome/SM
+metronomic
+metropolis/MS
+Metropolitan
+metropolitan/S
+metropolitanization
+Metrorail
+Metsimaholo
+Metsimatsho
+mettle/MSD
+mettlesome
+Metzler/M
+Mevamhlophe
+mevrou
+mew/DGS
+mewl/SGD
+mews/MS
+Mexican/S
+Mexico/M
+Meyer/S
+Meyerbeer
+Meyerhof
+Meyersdal
+Meyerspark
+Meyerton
+Meyerville
+mezzanine/MS
+mezzo-soprano
+mezzo/S
+Mfecane
+Mfekayi
+Mfengu
+mfg
+Mfolozi
+mfr/S
+Mfula
+Mfuleni
+Mfume
+Mfundeni
+Mfundisweni
+mg
+Mganduzweni
+Mgeza
+MGM
+Mgodi
+Mgodini
+Mgojweni
+mgqashiyo
+mgr
+Mgubo
+Mgwalana
+Mgwali
+Mgwenyana
+Mhinga
+Mhlaba-cross
+Mhlabamnyama
+Mhlabobomvu
+Mhlahlane
+Mhlakulo
+Mhlatuzana
+Mhlatuze
+Mhluzi
+Mhubheni
+MHz
+mi's
+mi/C
+Miami
+miasma/MS
+miasmal
+Mica
+mica/MS
+Micah
+mice/M
+micelles
+Michael/MS
+Michaelangelo
+Michaelmas
+Michaelson
+Michausdal
+Michel/M
+Michelangelo
+Michele/M
+Michelin
+Michelle/M
+Michelson
+Michigan/M
+Mick/M
+Mickelson
+mickey/SM
+Micmac
+Micor
+micra's
+micro-organism/MS
+micro/S
+microamp
+microanalyses
+microanalysis/M
+microanalytic
+microbe/SM
+microbial
+microbicidal
+microbicide/M
+microbiology/3wSM
+microbrewery/S
+microchemistry/M
+microchip/S
+microcircuit/MS
+microcode/DSG
+microcomputer/SM
+microcosm/WMS
+microdensitometer
+microdot/SM
+microeconomic/S
+microeconomics/M
+microelectronic/S
+microelectronics/M
+microfarad
+microfibre/S
+microfiche/M
+microfilm/MDGS
+microfilmer
+microfossils
+microgram/S
+microgramme/S
+micrograph/Z
+micrography/M
+microgravity
+microgroove/MS
+microhydrodynamics
+microinstruction/SM
+microjoule
+microlevel
+microlight/S
+micromanage/DLGS
+micrometeorite/SMW
+micrometer/SM
+micrometre/S
+micron/MS
+Micronesia/M
+Micronesian/S
+microphone/MGS
+microprocessing
+microprocessor/SM
+microprogram/DGMS
+micros/M
+microscope/MSWw1Z
+microscopist
+microscopy/MS
+microsecond/SM
+microsimulation/S
+Microsoft/M
+microsomal
+microstore
+microsurgery/SM
+microtome
+microvolt/SM
+microwavable
+microwave/MS7DG
+microword/S
+mid-afternoon
+mid-air/MS
+mid-band/M
+Mid-ennerdale
+mid-evening
+mid-flight
+mid-life
+mid-morning
+mid-off
+mid-on
+mid-year
+mid/Z
+Midas
+midday/MS
+Middelburg
+middelmannetjie/S
+Middelpos
+Middelvlei
+midden/SM
+middle-age/D
+middle-class
+middle-of-the-road
+middle-sized
+middle/mJDSGk
+middlebrow/MS
+Middleburg
+Middlebury
+Middledrift
+middlemannetjie/S
+middler
+Middlesbrough/M
+Middlesex
+Middleton
+Middletown
+middleveld
+middleweight/MS
+middy/MS
+midfield/M
+midfielder
+midge/MS
+midget/SM
+Midhurst
+midi/S
+midland
+midlander
+Midlands
+midlives
+Midlothian/M
+midmost/S
+midnight/MS
+midpoint/MS
+Midrand
+midrange
+midrib/SM
+midriff/SM
+Midros
+midscale
+midsection/M
+midship/mS
+midspan
+midst/MS
+midstream/M
+midsummer/SM
+midterm/MS
+midtown's
+midtowns
+midway
+Midway
+midweek/SMY
+Midwest
+Midwestern
+Midwesterner/S
+midwicket
+midwife/My
+midwifery/SM
+midwinter/MSY
+midwives
+midyear/SM
+Miederpark
+mieliepap
+mien/MS
+Mier
+miff/GDS
+MIG/S
+Miga
+Migdol
+might/zZ2S
+mightiness/S
+mightn't
+mighty/TP
+Mignon
+migraine/MS
+migrant/IMS
+migrate/In4GDSN
+migration/MI
+migrative
+migratory/S
+Miguel
+mikado/MS
+mike/DSGM
+Mikhail
+milady/SM
+Milan
+Milanese
+Milbank
+milch/M
+mild-mannered
+mild/YPT
+milden
+mildew/DMSGZ
+mildness/S
+Mildred
+mile/MS
+mileage/MS
+milepost/MS
+miler/M
+milestone/SM
+Milford/M
+milieu/SM
+militancy/SM
+militant/YPS
+militarisation
+militarise/CDGS
+militarism/MS
+militarist/W
+militarization/M
+militarized/C
+military/-QY3
+militate/SDG
+militia/mMS
+milk/RM2SZDG
+Milkfish
+milkiness/S
+milkmaid/MS
+milkman/M
+milkmen/M
+milkshake/S
+Milkshark
+milksop/SM
+milkweed/SM
+Milkwoodpark
+milky/TP
+mill/7DRSMG
+Millard
+millenarian
+millenarianism/M
+millennia
+millennial
+millennialism
+millennium/MS
+millepede's
+Miller
+millet/MS
+Millgarth
+milliamp
+milliampere/S
+milliard/SM
+millibar/S
+millidegree/S
+Millie
+milligram/S
+millijoule/S
+millilitre/S
+millimetre/S
+milliner/SZM
+millinery/SM
+milling/M
+million/HMS
+millionaire/MS
+millionth/M
+millipede/SM
+millisecond/MS
+millivolt/SM
+millivoltmeter/MS
+milliwatt/S
+millpond/SM
+millrace/SM
+Millsite
+millstone/SM
+millstream/MS
+Millwall
+Millward
+millwright/SM
+Milnavair
+Milne
+Milner
+Milnerton
+Milo
+Milquetoast/S
+milt/MRS
+Milton/W
+Milwaukee
+MIMD
+mime/SMDG
+mimeograph/SDMG
+mimer/M
+mimesis/M
+mimetic/Y
+Mimi
+mimic/yGDRS
+mimicry/MS
+Mimosa
+mimosa/SM
+Min
+min.
+Mina
+Minangkabau
+Minardi
+minaret/SM
+minatory
+mince/GSkDRJ
+mincemeat/SM
+mind-bending
+mind-blowing/Y
+mind-boggling/Y
+mind-expanding
+mind-numbing/Y
+mind-reader
+mind-reading
+mind/RhiGDp6MjS
+Mindalore
+Mindanao/M
+mindbogglingly
+minded/A
+minder/AS
+mindful/P
+mindfulness/S
+mindless/YP
+mindlessness/S
+minds/A
+mindset/S
+mindshare
+mine-detector
+mine-dump
+mine/DRJSG
+mined/f
+minefield/MS
+mineral/M-8qQS
+Mineralia
+mineralisation/CS
+mineralization/CS
+mineralogy/3SwM
+Minerva
+mines/f
+mineshaft
+minestrone/MS
+minesweeper/MS
+mineworkers
+Ming
+mingle/SFGD
+Mini-clingfish
+Mini-knob
+mini/S
+miniature/M3-8qQSDG
+minibar/S
+minibus/MS
+minicab/M
+minicam/SM
+minicomputer/SM
+minidisc/S
+minidress's
+minigolf
+minim/MoQ-98sqS
+minima/M
+minimal/S3
+minimalism/S
+minimalist/W
+minimality
+minimax/M
+minimization/M
+minimum/SM
+mining/M
+minion/MS
+miniseries
+miniskirt/SM
+minister/MdSoNn
+ministerial
+ministrant/S
+ministration/M
+ministry/SM
+minivan/S
+miniver/M
+mink/SM
+minke
+Minneapolis
+Minnebron
+minnesinger/SM
+Minnesota/M
+Minnie
+minnow/MS
+Minoan
+minor/SM
+minority/SM
+Minos
+Minot/M
+Minotaur/M
+Minsk/MZ
+Minsky/M
+minster/SM
+Minstrel
+minstrel/MS
+minstrels/Z
+minstrelsy/MS
+mint/DRSZMG
+mintage/MS
+minty/T
+minuend/MS
+minuet/SM
+minus/S
+minuscule/MS
+minute/MYSPTGD
+minuteness/S
+minutia/M
+minutiae
+minx/SM
+Miocene
+MIPS
+Miquelon/M
+Mira
+Mirabeau
+miracle/MS
+miraculous/PY
+mirage/MDGS
+Miramar
+Miranda
+mire/SMDGZ
+Miriam
+Mirrlees
+mirror/dSM
+mirth/6SpMj
+mirthful/P
+mirthfulness/S
+mirthless/PY
+MIRV
+miry/T
+misadventure
+misalign/L
+misanthrope/MSZ1
+misanthropist/S
+misanthropy/MS
+misapply/nN
+misappropriate
+misbehaver/M
+misbehaviour
+misbrand
+misc/b
+miscalculate
+miscall/G
+miscegenation/MS
+miscellanea
+Miscellaneous
+miscellaneous/Y
+miscellaneousness
+miscellany/MS
+mischance
+mischief-makers
+mischief-making
+mischievous/PY
+mischievousness/S
+miscibility/S
+miscible/IC
+misclassified
+miscommunicate
+misconceive
+misconfiguration
+misconstrue
+miscount
+miscreant/SM
+misdeed
+misdemeanant/SM
+misdemeanour's
+miser/YlZ7
+miserable/P
+miserableness/S
+miserliness/S
+miserly/P
+misery/MS
+misfeasance/SM
+misfield
+misfile/G
+misfire/G
+misfit
+misgiving/MS
+misgovern
+misgovernment
+misguide/hi
+misguided/P
+misguider
+Misgund
+mishandle/G
+mishap/M
+mishmash/SM
+misidentify/N
+misinform/N
+misjudge/L
+mislabel/G
+mislay
+mislead/k
+misleader
+misled
+mismatch
+misnomer/MS
+misogamy/S3M
+misogynist/W
+misogynous
+misogyny/S3M
+misperceive
+misplay
+misprint/MG
+misprision/MS
+misrepresenter/M
+misrule
+miss/ESK
+missal/ESM
+missed/E
+misshapen/PY
+misshapenness/S
+missile/MSy
+missilery/MS
+missing/E
+mission's/A4
+mission/FRMS
+missionary/MS
+Missionlands
+missions/4
+Missionvale
+Mississauga
+Mississippi
+Mississippian/S
+missive's
+missive/4E
+missives
+Missoula
+Missouri
+misspecification
+missus/MS
+Missy
+mist/CRDGS
+mistakable/U
+mistake/MG
+mistaken/Y
+mistime
+mistiness/S
+Mistkraal
+mistletoe/MS
+mistral/MS
+mistreat/L
+mistruster/M
+misty/TY
+Mistymount
+mistype/J
+misunderstand/R
+misuse/M
+MIT/M
+Mitch/M
+Mitchell/M
+Mitchellsplain
+mite/MS
+Mithanagar
+mitigate/nyDSNG
+mitigated/U
+mitigation/M
+mitochondria
+mitochondrial
+mitoses
+mitosis/M
+mitotic
+mitre/SMDG
+Mitsubishi
+mitt/MS
+mitten/SM
+Mitterrand
+mix-up
+mix/ASDKG
+mixable
+mixed/U
+mixer/SM
+mixture/MS
+mizzen/MS
+mizzenmast/MS
+Mjaliswa
+Mjamkulu
+Mjanyana
+Mjika
+Mjomla
+Mjozi
+MK
+Mkambati
+Mkamela
+Mkemani
+Mkhazane
+Mkhoboza
+Mkhuhlu
+Mkombe
+Mkondeni
+Mkonjane
+mks
+Mkuze
+ml
+Mlalati
+Mlalazi
+Mlambo
+Mlamula
+Mlengana
+Mlle
+Mlungisi
+mm
+Mmabatho
+Mmaboi
+Mmafefe
+Mmakau
+Mmakaunyane
+Mmakgodu
+Mmakubjane
+Mmakwara
+Mmamehlabe
+Mmamutle
+Mmankaipaya
+Mmasebodule
+Mmatau
+Mmatlhwaela
+Mme
+Mmorogong
+Mmotla
+Mmotong
+Mmotwaneng
+MMS
+Mmutlane
+Mn
+Mnandi
+Mnandini
+Mnceba
+Mncedi
+Mncotsho
+mnemonic/MSY
+mnemonics/M
+Mnenga
+Mngadi
+Mngomanzi
+Mningi
+Mnini
+Mntafufu
+Mnyibashe
+Mo
+moan/GMRSD
+moat/MGSD
+mob's
+mob/CSGD
+Moba
+Mobantu
+mobber
+mobcap/MS
+Mobeni
+Mobil
+mobile's
+mobile/IQs-tq8+9
+mobiles
+mobilise/CnDAGS
+mobility/IMS
+mobilize/CNGSAnD
+Möbius
+mobster/SM
+Mobutu
+moccasin/SM
+mocha/SM
+Mochud
+mock-up/S
+mock/7RDGSk
+mocker/Z
+mockers/M
+mockery/MS
+mockingbird/MS
+mod/So
+modal
+modality/SM
+Modder
+Modderbee
+Modderdam
+Modderfontein
+Modderkuil
+Modderpoort
+Modderspruit
+mode/FSM
+model/RJSMDG
+Modelkloof
+Modelpark
+models/A
+modem/SM
+moderate/DYPSNnG
+moderated/U
+moderately/I
+moderateness/S
+moderation/IM
+moderator/SM
+modern/TqQYs-8P9
+modernised/U
+modernism/SM
+modernist/SW
+modernity/MS
+modernization/M
+modernness/S
+modest/IZY
+modester
+modestest
+Modesto
+modesty/IMS
+modi
+modicum/MS
+modifiability/M
+modifiable/P
+modification/M
+modified/U
+modify/RGBDNnS
+Modikoe
+Modikwe
+Modimola
+Modimolle
+Modimong
+Modimosana
+modish/YP
+modishness/S
+Modjadji
+Modula
+modular/Q-8qY
+modularity/MS
+modulate/CSNADG
+modulated/U
+modulation/CMS
+modulator/CSAM
+Module
+module/nMNS
+moduli
+modulo
+modulus/M
+modus
+Moe/M
+Moedwil
+moeg
+moegoe
+Moeka
+Moema
+Moemaneng
+Moen/M
+moenie
+moer
+moerse
+Moetladimo
+moffie
+Moffitt/M
+Mofokeng
+Mofolo
+Mogadishu/M
+Mogaladi
+Mogalakwena
+Mogano
+Moganyaka
+Mogasne
+Moggel
+moggie/M
+moggy/S
+Mogoditshane
+Mogodumo
+Mogogelo
+Mogono
+Mogopene
+mogul/MS
+Mogwase
+Mohadin
+mohair/MS
+Mohamed/M
+Mohammed/M
+Mohammedan
+Mohammedanism
+Mohawk/M
+Mohlahlareng
+Mohlakeng
+Mohlodi
+Mohr/M
+Mohwabatsana
+moiety/MS
+Moikotso
+moil/GSD
+Moiletswane
+Moines
+moire/SM
+moist/YTP
+moisten/drS
+moistness/S
+moisture/QSMs
+Mojave
+Mokamole
+Mokgalwana
+Mokgaotsistat
+Mokgatlha
+Mokgokong
+Mokgola
+Mokgophong
+Mokgwati
+mokiti
+Mokodumela
+Mokolo
+Mokomene
+Mokwakwaila
+Mokwathi
+Mokwena
+molal
+Molapo
+molar/MS
+molarity/SM
+molars/K
+molasses/M
+Molatedi
+Moldavia
+Moldavian
+Moldenvale
+Moldova/M
+mole/SM
+molecular/Y
+molecularity/SM
+molecule/SM
+molehill/SM
+Molejie
+Moleketla
+Moleleke
+Moleleki
+Molelema
+Molendrift
+moleskin/MS
+molest/NnGDRS
+molestation/M
+molested/U
+Moletsane
+Moletsi
+Moliere
+Molina
+Moline
+moll/MSY
+Mollie
+mollification/M
+mollify/nNSGD
+mollusc/MS
+Mollusca
+molluscan
+molly/SM
+mollycoddle/SDG
+mollycoddler/M
+molo
+Molokai
+Molopa
+Molopo
+Molorwe
+Molototsi
+Molotov
+molten
+Molteno
+molweni
+Molweni
+molybdenite/M
+molybdenum/M
+mom/MS
+Mombane
+Mombasa
+Mombeni
+moment/SYM
+momenta/y
+momentariness/S
+momentary/PY
+momentous/PY
+momentousness/S
+momentum/MS
+momma/S
+mommy's
+mompara/S
+Mon
+Mon-Kmer
+Mona/M
+Monaco/M
+monad/WSM
+Monaghan/M
+Monakato
+Monakhi
+Monaphansi
+Monarch
+monarch/WZMw3
+monarchism/MS
+monarchist/W
+monarchs
+monarchy/3SM
+Monash
+monastery/MS
+monastic/YS
+monasticism/MS
+monaural/Y
+Monavoni
+Mondale
+Monday/SM
+Mondeo
+Mondeor
+Mondrian
+Monegasque
+Monet
+monetarism/S
+monetary/3Y
+monetise/CnGADS
+monetize/CNnDSAG
+money-changer/S
+money/DpSM
+moneybags
+moneyer's
+moneylender/SM
+moneymaker/SM
+moneymaking/M
+Monfort
+monger/MS
+Mongo
+Mongol/W
+Mongolia/M
+Mongolian/S
+mongolism/SM
+mongoloid/S
+mongoose/SM
+mongrel/MS
+Monica
+monies/M
+moniker/MS
+monism/MS
+monition/MKS
+monitor/MSd
+monitored/U
+monitory/S
+Monk
+monk/MS
+monkey/SGMD
+monkeygland
+monkeyshine/S
+monkish
+monkshood/MS
+Monmouth/M
+Monmouthshire/M
+Monname
+Mono
+mono/3SM
+monochrome/WMS
+monocle/SDM
+monoclinic
+monoclonal/S
+monocotyledon/MS
+monocotyledonous
+monocular/YS
+monoculture
+monodist/S
+monody/WSM
+monogamous/Y
+monogamousness
+monogamy/S3M
+monogram/MDGS
+monograph/GSDM
+monolayers
+monolingual/S
+monolingualism
+monolith/W1MS
+monologist/S
+monologue/MDGS
+monomania/MS
+monomaniac/MS
+monomaniacal
+monomer/SM
+monomeric
+monomial/MS
+monomolecular
+Monongahela/M
+Mononono
+Monontsha
+mononucleoses
+mononucleosis/M
+monophonic
+monophthongs
+monoplane/MS
+monopole/Q38sZ-S
+monopolist/W
+monopolization/M
+Monopoly
+monopoly/SM
+monorail/MS
+monostable
+monosyllable/WMS
+monotheism/MS
+monotheist/WS
+monotone/MSW1Z
+monotonicity
+monotonous/PY
+monotonousness/S
+monotony/SM
+monoxide/SM
+Monroe
+Monrovia/M
+Monsanto
+Monseigneur/S
+Monsieur/M
+Monsignor
+Monsignori
+monsoon/MS
+monsoonal
+monster/SM
+Monsterus
+monstrance/AM
+monstrances
+monstrosity/SM
+monstrous/PY
+montage/MSGD
+Montagu
+Montague
+Montaigne
+Montana/M
+Montanapark
+Montclair
+Montclare
+Monte/Z
+Montebelo
+Montenegrin
+Montenegro/M
+Monterey
+Monterrey
+Monteseel
+Montessori
+Monteverdi/M
+Montevideo/M
+Montezuma
+Montford
+Montgomery
+month/MYS
+monthly/S
+Monticello
+Montmartre/M
+Montoya/M
+Montpark
+Montpelier
+Montrachet/M
+Montreal
+Montrose
+Montroux
+Montserrat/M
+Montshiwa
+Monument
+monument/oSM
+monumental
+monumentality/M
+Monumentpark
+Monyakeng
+Monywaneng
+Monz
+Monza
+moo/DGS
+mooch/DRSG
+mood/2zMSZ
+Moodiehill
+moodiness/S
+moody/PT
+Moog
+Mooi
+mooi
+Mooibank
+Mooigezight
+Mooikloof
+Mooilek
+Mooilyk
+Mooinooi
+Mooiplaas
+Mooiuitsig
+Mooivalleipark
+Mooiverwacht
+Mooketsi
+Mookgophong
+Moolman
+moon/SpMGD
+moonbeam/MS
+Mooney
+Moonfish
+moonlight/RMDGS
+moonlighting/M
+moonlit
+moonrise
+moonscape/MS
+moonshine/MS
+moonshiner's
+moonshot/MS
+moonstone/SM
+moonstruck
+moonwalk/GSD
+moor/DMSGJ
+Moore
+mooring/M
+Moorish
+moorland/SM
+Moorreesburg
+Moorton
+moose/M
+Moot
+moot/SGD
+mooter
+mop/rdMDSG
+mopane
+Mopane
+mope/SZ
+moped/MS
+Mopeli
+Mophela
+Mophosa
+mopish
+moppet/MS
+mopy/TPY
+Mora
+morabaraba
+Morabi
+moraine/MS
+moral's
+moral/IY
+morale/s38SQ-M
+moralise/CSGRD
+moralist/1W
+morality/IMS
+moralize/CNGDSn
+morals
+Moran/M
+Morant/M
+morass/SM
+moratorium/SM
+Moravia
+Moravian
+Moray/M
+moray/SM
+morbid/Y
+morbidity/SM
+morbidness/S
+mordancy/SM
+mordant/DGSY
+Mordecai
+mordood
+Mordred
+more/oS
+Morecambe
+Moreen
+Moregloed
+Moregrove
+Morehill
+Morehouse
+morel/MS
+Moreland
+Moreletapark
+Moreletarif
+Morelig
+moreover
+Moresby/M
+Moreskof
+Moreson
+Morestond
+Moret
+Morewag
+Morgan
+Morganridge
+morgen
+Morgen
+Morgenster
+Morgenzon
+morgue/MS
+Moriarty
+moribund/Y
+moribundity/M
+morion's
+Moripe
+Morley/M
+Mormon/MS
+Mormonism/M
+morn/GSJM
+morning/M
+Morningside
+Morningstar
+Moro/M
+Moroccan/S
+Morocco/M
+morogo
+Morojaneng
+Moroka
+Moroke
+Morokweng
+Morolong
+moron/1MWS
+Moroni/M
+morose/YP
+moroseness/S
+Morpeth
+morph/JDGS
+morpheme/MS
+morphemic/S
+Morpheus/M
+morphia/S
+morphine/MS
+morphism/MS
+Morphix
+morphogenesis
+morphology/w1MS
+morphophonemic/S
+morphophonemics/M
+morris
+Morris's
+Morrison/M
+Morristown/M
+morrow/SM
+Morse/M
+morsel/MS
+Mort/M
+mortal/SIY
+mortality/ISM
+mortar/SdM
+mortarboard/MS
+mortem/SM
+Morten/M
+mortgage/MGSD
+mortgagee/SM7
+mortgagor/MS
+mortice/SM
+mortification/M
+mortifier/M
+mortify/NDGnhS
+Mortimer/M
+mortise/MDSG
+Morton/M
+mortuary/SM
+Morula
+mos/DGZ
+mosaic/MS
+mosaicked
+mosaicking
+mosbeskuit
+Moscow/M
+mosdoppie
+Moseki
+Mosel
+Moseleke
+Moseley/M
+Moselle/M
+Moselville
+Mosenthal
+Mosenthalville
+Moser/M
+Moses
+mosey/DSG
+Moshe/M
+Moslem/M
+Mosley/M
+mosque/MS
+mosquito/M
+mosquitoes
+moss-grown
+moss/MS
+Mossberg/M
+Mosselbay
+Mossi
+mossie
+mossy/ST
+most/Y
+Mostertsdrift
+MOT/M
+mote's
+mote/AC
+motel/MS
+motes/C
+motet/SM
+Motetema
+Moteti
+moth-eaten
+moth/RSM
+mothball/DMGS
+mother-in-law
+mother-of-pearl
+mother/dpY
+motherboard/SM
+motherer/S
+motherhood/SM
+mothering/M
+motherland/MS
+motherliness/S
+motherly/P
+mothers-in-law
+Motherwell
+Mothibistad
+Mothibistat
+Mothotlung
+motif/SM
+motile/S
+motility/SM
+motion's/CF
+motion/GMpSD
+motional
+motioner/M
+motionless/Y
+motionlessness/S
+motions/FC
+motivate/CGD
+motivated/U
+motivates
+motivation/M
+motivator/S
+motive/xGpNnVMDS
+motley
+Motlhabe
+Motlhabeng
+Motlhele
+motlier
+motliest
+motocross/SM
+motor/Mdq-m8QS3
+motorbike/GDMS
+motorboat/SM
+motorcade/SMDG
+motorcar/SM
+motorcycle/MS3G
+motoring/M
+motorised/U
+motorist
+Motorola/M
+Motortown
+motorway/SM
+mots
+Motsamai
+Motseleope
+Motsethabang
+Motsethabong
+Motsoseng
+Motsu
+Motswedi
+Motswedimosa
+Motsweding
+Mott/M
+mottle/DSG
+mottler/M
+motto/M
+mottoes
+Moubane
+moue/GMDS
+mould/RGDJSM2Z
+mouldboard/MS
+moulded/A
+moulder/d
+mouldiness/S
+moulding/M
+moulds/A
+mouldy/PT
+moult/DSRG
+mound/DSMG
+mount's
+mount/CASEGD
+mountable/U
+mountain/SM
+mountaineer/MSDGJ
+mountaineering/M
+mountainous/PY
+mountainside/MS
+mountaintop/MS
+Mountbatten/M
+mountebank/MS
+mounted/U
+mounter/SM
+Mountie
+mounties
+mounting/SM
+mourn/jJRSDG6
+Mourne/M
+Mourner
+mournful/T
+mournfulness/S
+mourning/M
+mouse/DRMZSG
+mousetrap/DGSM
+mousey
+mousiness/S
+mousing/M
+mousse/SM
+Moussorgsky/M
+moustache/DMS
+moustachio/DMS
+mousy/PT
+mouth-to-mouth
+mouth/GM6SZD2
+mouther
+mouthful/MS
+mouthiness/S
+mouthorgan
+mouthpiece/SM
+mouthwash/MS
+mouthwatering
+mouthy/TP
+mouton's
+movability/I
+movable/IPS
+movably/I
+move/LSB7RlDGk
+moveability
+moveable/SYP
+moved/AU
+mover/AMS
+moves/A
+movie/S
+moving/UA
+mow/DRGS
+Mowbray
+Mowgli/M
+mowing/M
+mown
+Mox
+Moyamkhulu
+Moyanshe
+Moyer/M
+Moyes
+Moyle/M
+Moyra/M
+Mozambican/S
+Mozambique/M
+Mozart/M
+Mozes/M
+Mozi
+Mozilla/M
+Mozodo
+mozzarella/SM
+MP3
+Mpake
+Mpako
+Mpamba
+Mpande
+Mparane
+Mpeko
+Mpembeni
+Mpetsheni
+mpg
+mph
+Mphahlele
+Mphambo
+Mpharangope
+Mphe-batho
+MPhil
+Mphogodiba
+Mphophomeni
+Mphore
+Mpilo
+Mpola
+Mpolweni
+Mpophomeni
+Mpothula
+Mpozolo
+MPs
+Mpudulle
+Mpukane
+Mpulo
+Mpuluzi
+Mpuma
+Mpumalanga
+Mpumelelo
+Mpumuza
+Mpungamhlophe
+MPV
+Mqanduli
+Mqekezweni
+Mqele
+Mqobiso
+Mqonci
+Mqwangqweni
+Mr/M
+MRI
+Mrs
+Ms
+ms
+MSc
+Msebe
+Mseleni
+Mseni
+Mshayazafe
+Mshayezafe
+Mshenguville
+Mshinxa
+Msibi
+Msindo
+Msintsana
+Msobomvu
+Msogwaba
+MST
+Mt
+Mtakatyi
+Mtamvuna
+Mtata
+Mtebele
+Mtentu
+Mthambo
+Mthambothini
+Mtingwevu
+MTN
+Mtombe
+Mtontsasa
+Mtozelo
+MTS
+Mtshanyana
+Mtubatuba
+Mtukukazi
+Mtungwane
+Mtunzini
+MTV
+Mtwaku
+Mtwalume
+mu
+much-needed
+much/P
+mucilage/MS
+mucilaginous
+muck/DGMSZ
+mucker/M
+Muckleneuk
+muckrake/SDRGM
+mucky/T
+mucosa/M
+mucous
+mucus/MS
+mud/zS2ZM
+Mudabula
+muddiness/S
+muddle/RSGD
+muddlehead's
+muddleheaded
+muddleheadedness
+muddy/GTSDP
+Muden
+mudflat/S
+mudguard/SM
+Mudimeli
+mudlarks
+mudroom/S
+mudslide/S
+mudsling/RGJ
+mudslinging/M
+Mueller/M
+Muenster
+muesli/M
+muezzin/SM
+muff/DGMS
+muffin/SM
+muffle/RSGD
+mufti/SM
+mug/MDR2JGZS
+Mugabe/M
+Mugena
+muggie
+mugginess/S
+muggy/TS
+mugshot/S
+Muhammad/M
+Muhammadan/MS
+Muhammadanism
+Muhammed
+Muhlava
+Muila
+Muir/M
+Muire/M
+Muizenberg
+mukluk's
+Mukula
+mulatto/M
+mulattoes
+Mulbarton
+mulberry/SM
+mulch/GSDM
+mulct/GDS
+Mulder/M
+Muldersdrif
+mule/MDSG
+Mulenzhe
+muleskinner/S
+muleteer/MS
+Mulima
+mulish/PY
+mulishness/S
+mull/GSD
+mullah/MS
+mullein/MS
+Mullen/M
+Muller/M
+mullet/SM
+Mulligan/MS
+mulligatawny/SM
+Mullins
+mullion/GSMD
+multi
+multi-access
+multi-coupler
+multi-ethnic
+multi-modal
+multi-national
+multi-purpose
+multi-site
+multi-stage
+multi-storey
+multi-track
+multi-user
+multi-way
+Multibus/M
+multicast
+multicellular
+multichannel/M
+multicollinearity/M
+multicolour/MDS
+multicolumn
+multicomponent
+multicomputer/MS
+Multics/M
+multicultural
+multiculturalism/S
+multidimensional/Y
+multidimensionality
+multidisciplinary
+multifaceted
+multifamily
+multifarious/YP
+multifariousness/S
+multifigure
+multiform
+multifunction/Do
+multifunctional
+multilateral/Y
+multilateralists
+multilayer
+multilevel/D
+multilingual
+multilingualism/S
+multimedia
+multimegaton/M
+multimeter/M
+multimillion
+multimillionaire/SM
+multinational/YS
+multinomial/M
+multipath
+multiphase
+multiple-choice
+multiple/YMS
+multiplex's
+multiplex/CDRSG
+multiplexor/SM
+multiplicand/MS
+multiplication/M
+multiplicative/S
+multiplicity/MS
+multiply/NR7nSDGVv
+multipoint
+multiprocess/G
+multiprocessor/MS
+multiprogram/JDG
+multiprogramming/M
+multiracial
+multisyllabic
+multitasking
+multitude/SM
+multitudinous/PY
+multivalent
+multivalued
+multivariate
+multiversity/M
+multivitamin/S
+mum/GZSRMD
+Mumbai
+mumble/RGSJD
+mumbo
+mumbo-jumbo
+Mumford/M
+mummer/Z
+mummery/MS
+mummification/M
+mummify/SNnDG
+mummy/SM
+mumps/M
+munch/MRSGD
+Münchhausen/M
+Muncie/M
+mundane/Y
+mundaneness
+munge/SDRGJ
+Mungomani
+Munich/M
+municipal/YS
+municipality/MS
+munificence/MS
+munificent/Y
+munition/SDG
+Munnik
+Munnikville
+Munoz/M
+Munro/M
+Munroe/M
+Munsieville
+Munson/M
+Munster/M
+Munyu
+Munzhedzi
+muon/MS
+Muppet/M
+mural/3MS
+Murali
+muralist
+Murchison/M
+murder/SrdM
+murderess/S
+murderous/YP
+Murdoch/M
+Murdock/M
+Murhotso
+Murial/M
+Muriel/M
+Murielle/M
+Murillo/M
+murk/Tz2MSZ
+murkiness/S
+murky/T
+Murmansk/M
+murmur/SrdM
+murmuring/S
+murmurous
+Murphy/M
+murrain/SM
+Murray/M
+Murrayfield
+Murraysburg
+Murrow/M
+Murry/M
+mus/dSwk1
+Muscat/M
+muscat/MS
+muscatel/SM
+muscle-bound
+muscle/MSDG
+Muscovite/MS
+Muscovy/M
+muscular/Y
+muscularity/SM
+musculature/MS
+Muse's
+muse/J
+muser/M
+musette/MS
+museum/SM
+Musgrave
+mush/SZ2M
+musher's
+mushiness/S
+mushroom/MGSD
+Mushung
+Mushwelldale
+mushy/PT
+music/SM
+musical/UY
+musicale's
+musicality/MS
+musicals
+musician/MYS
+musicianship/MS
+musicology/3MSw
+Musina
+musk-rose
+musk/Z2M
+muskeg/SM
+Muskegon/M
+muskellunge/SM
+musket-ball
+musket/MyS
+musketeer/MS
+musketry/MS
+muskrat/MS
+musky/TP
+Muslim/SM
+muslin/MS
+mussel/MS
+Musselcracker
+musselcracker/S
+Mussolini/M
+Mussorgsky/M
+must've
+must-have
+must/SZ2z
+mustang/SM
+mustard/MS
+muster/dS
+mustiness/S
+mustn't
+musty/TP
+mutability/IMS
+mutable/PIY
+mutably/I
+mutagen/MS
+Mutale
+mutant/SM
+mutate/FSDG
+mutation/M4F
+mutational/Y
+mutator/FS
+mute/FSGNn4D
+muted/Y
+mutely
+muteness/S
+muter/F
+mutest
+Muthathi
+muti/S
+mutilate/DSnNG
+mutilation/M
+mutilator/MS
+mutineer/MS
+mutinous/Y
+mutiny/DSGM
+Mutlestad
+Mutsuhito/M
+mutt/MS
+mutter/dJrS
+mutton/MS
+muttonchops
+mutual/YS
+mutuality/S
+Mutualpark
+muumuu/MS
+Muvhango
+Muwaweni
+Muzak
+Muzimuhle
+muzzle's
+muzzle-loaded
+muzzle-loader
+muzzle-loading
+muzzle/GUSD
+muzzler/M
+Mvasini
+Mvoti
+Mvunyana
+Mvutshini
+MW
+mW
+Mxokozweni
+my
+Myanmar/M
+Mycenae/M
+Mycenaean
+mycology/3MS
+myelitides
+myelitis/M
+Myers
+Mylar
+Myles/M
+myna/SM
+mynah/SM
+myocardial
+myocardium/M
+myopia/SM
+myopic/YS
+MyPlanet
+Myra/M
+myriad/S
+Myriapoda
+myrmidon/S
+Myrna/M
+Myron/M
+myrrh/MS
+myrtle/SM
+MySchool
+myself
+MySpell
+MySQL
+mysterious/PY
+mysteriousness/S
+mystery/MS
+mystic/SMY
+mystical
+mysticism/SM
+mystification/M
+mystifier/M
+mystify/CGNSnD
+mystifying/Y
+mystique/MS
+myth/w1SMW
+mythographer/MS
+mythography/M
+mythologise/CDSG
+mythology/S3MwQ1
+MyVillage
+Mzamba
+Mzamomhle
+Mzimhlophe
+Mzimvubu
+Mzingizi
+Mzinti
+Mzintlavana
+Mziwabantu
+Mzomhle
+Mzomusha
+Mzonga
+Mzonyane
+Mzotho
+N'Djamena/M
+N'Djemena
+n/xNvVun
+Na/M
+NAACP
+naartjie
+nab/SGD
+Nababeep
+Nabisco/M
+nabob/MS
+Naboomspruit
+nacelle/MS
+nacho/S
+NaCl/M
+nacre/SM
+nacreous
+Nada/M
+Nadia/M
+Nadine/M
+nadir/MS
+naf/S
+naff
+naffer
+naffness
+nag/SDGMR
+nagapie/S
+Nagasaki/M
+nagging/Y
+Nagina
+nagmaal
+Nagoya/M
+Nagy/M
+Nahoon
+Nahum/M
+naiad/SM
+naifs
+nail-biting
+nail/GSMD
+nailbrush's
+nailer/M
+Nairobi/M
+naive/TY
+naïve/Y
+naiveness
+naïveness
+naïveté/S
+naiveté/SM
+naivete/Z
+naivety/MS
+naïvety/S
+Nakamura/M
+Nakayama/M
+naked/PY
+nakedness/S
+Naku'alofa/M
+Naledi
+Nalolo
+Nama
+Namahadi
+Namakgale
+Namaland
+Nambiti
+namby
+namby-pamby/S
+name's
+name-calling
+name-drop/RSGD
+name/aGDAS
+nameable/U
+named/M
+nameless/Y
+namelessness
+namely
+nameplate/MS
+namer/MS
+namesake/MS
+Namibia/M
+Namibian/S
+Namibiaplein
+NaN
+nan/MZ
+Nana/M
+Nanak/M
+Nance/MZ
+Nancefield
+Nancy/M
+Nando's
+Nanette/M
+Nannette/M
+nanny/SGDM
+nano
+nanometre/MS
+nanosecond/SM
+nanotechnology
+Nantes/M
+Nantucket/M
+Nantwich
+Naomi/M
+nap/MpRDGZS
+napalm/MDGS
+nape/SM
+naphtha/SM
+naphthalene/SM
+Napier/M
+Napierville
+napkin/SM
+Naples/M
+Napoleon/WSM
+nappy/SM
+Nara/M
+Narbonne/M
+narcissism/MS
+narcissist/WMS
+narcissus/M
+narcoleptic
+narcoses
+narcosis/M
+narcotic/SM
+narcotise/SDG
+nark/SZM
+narky/T
+Narragansett/M
+narrate/DSNvGnV
+narration/M
+narrative/SM
+narratology
+narrator/MS
+narrow-minded
+narrow-mindedness
+narrow/YSTPDG
+narrowband
+narrowness/S
+narwhal/MS
+nary
+NASA/SM
+nasal/Q8-YqS
+nasality/SM
+Nasaret
+nascence's/A
+nascences/A
+nascent/A
+NASDAQ
+Nash/M
+Nashua/M
+Nashville/M
+Nassau/M
+Nasser/M
+nastiness/S
+nasturtium/SM
+nasty/TSPY
+Nat/S
+NATA
+Natal
+natal/K
+Natalie/M
+natalist
+natality/M
+Natalspruit
+Natasha/M
+natch
+Natchez
+Nathalie/M
+Nathan/M
+Nathaniel/M
+nation/M
+national/398QsSq-
+nationalise/CRGnDS
+nationalised/A
+nationalises/A
+nationalising/A
+nationalism/MS
+nationalist/1W
+Nationalist/S
+nationality/MS
+nationalization/M
+nationalize/CnSDRNG
+nationally/4
+nationhood/SM
+Nationwide
+nationwide
+native/PS
+nativity/SM
+natl
+NATO/MS
+natter/dS
+nattiness/S
+natty/TPY
+natural/-8YQ3qS
+naturalism/SM
+naturalist/W
+naturally/U
+naturalness/S
+nature's
+nature/CSD
+natured/Y
+Naturena
+naturist
+NatWest
+Naudeville
+naught/zZM2
+naughtiness/S
+naughty/PTS
+Nauru/M
+nausea/MS
+nauseate/DkSG
+nauseous/P
+nauseousness/S
+nautical/Y
+nautilus/SM
+Navaho/M
+Navajo/S
+naval/Y
+Navalsig
+Navarro/M
+nave/ZMS
+navel-gazing
+navel/MS
+navigability/SM
+navigable/P
+navigate/BSxNnDG
+navigation/M
+navigator/SM
+Navorsdorp
+navvy/MS
+navy/SM
+nay/MS
+naysayer/S
+Nazarene/MS
+Nazareth/M
+Nazi/MS
+Nazism
+Nb
+NBA
+NBC
+NBS
+NCAA
+Ncalu
+Ncambedlana
+Ncanara
+NCC
+Ncera
+Ncerana
+Ncise
+Ncizele
+NCO
+Ncolosi
+Ncora
+Ncoti
+Ncotshane
+Ncuncuzo
+Ncwabakazi
+Ncwadi
+Nd
+Ndabakazi
+Ndabeni
+Ndakeni
+Ndebele
+Ndibela
+Ndida
+Ndikwe
+Ndindini
+Ndjamena/M
+Ndlambe
+Ndlangubo
+ndoda
+Ndombeni
+Ndondondwane
+Ndondotha
+Ndongo
+Nduli
+Ndulinde
+Ndumakudu
+Ndumo
+Ndundulu
+Ndwebu
+Ndwedwe
+Ne
+nè
+né
+ne'er
+ne'er-do-wells
+Neal/M
+Neandertal
+Neanderthal/S
+neap
+Neapolitan/SM
+neaptide
+near-sighted/PY
+near-sightedness/S
+near/DTGSYP
+nearby
+nearness/S
+nearside/M
+neat/PTY
+neaten/dS
+Neath/M
+neatness/S
+Neave
+Nebo
+Nebraska/M
+Nebraskan/SM
+Nebuchadnezzar/M
+nebula/MS
+nebulae
+nebular
+nebulosity
+nebulous/YP
+nebulousness/S
+necessaries
+necessary/YU
+necessitate/DNSGn
+necessitation/M
+necessitous
+necessity/MS
+neck/GMDSJ
+neckband/M
+necker
+neckerchief/MS
+necking/M
+necklace/MSDG
+neckline/MS
+necktie's
+necrology/SM
+necromancer/MS
+necromancy/MS
+necromantic
+necrophilia/M
+necrophiliac/S
+necropolis/MS
+necropsy/M
+necroses
+necrosis/M
+necrotic
+nectar/MS
+nectarine/MS
+nectarous
+nectary/SM
+Ned/M
+Nedbank
+Nedcor
+Neddicky
+Nederburg
+Nederburghoogte
+Nederlandpark
+nee
+née
+need/SZD6j2Gp
+needed/U
+needer/M
+needfulness
+Needham/M
+neediness/S
+needle/RMS5GD
+needlecraft/M
+needlepoint/MS
+needless/Y
+needlessness/S
+needlework/MS
+needleworker
+needn't
+needy/TP
+Neely/M
+nefarious/PY
+nefariousness/S
+neg/NnvVu
+negate/GSD
+negation/M
+negative/PSDG
+negativeness/S
+negativism/SM
+negativity/MS
+negator/SM
+Negev/M
+neglect/DjGS6
+neglecter/M
+neglectful/P
+neglectfulness/S
+négligé
+negligée/MS
+negligee/SM
+negligence/MS
+negligent/Y
+negligibility/M
+negligible/Y
+negotiability/SM
+negotiable/A
+negotiant/M
+negotiate/SGBnDN
+negotiated/A
+negotiates/A
+negotiating/A
+negotiation/AMS
+negotiator/MS
+Negritude/M
+Negro/M
+Negroes
+Negroid/S
+Nehemiah/M
+Nehru/M
+neigh/DSMG
+neighbour/DGSMY
+neighbourhood/SM
+neighbourliness/S
+neighbourly/P
+Neil/M
+Neilersdrif
+Neill/M
+neither
+Nell/MY
+Nellie/M
+Nellmapius
+Nelly/M
+Nelsen/M
+Nelsig
+nelson/MS
+Nelspoort
+Nelspruit
+Nelsville
+Nelverton
+nematic
+Nemato
+Nematoda
+nematode/SM
+Nembutal/M
+nemeses
+nemesis
+Nemesis/M
+neoclassic/M
+neoclassical
+neoclassicism/MS
+neocolonialism/MS
+neocortex/M
+neodymium/M
+neolithic
+Neolithic's
+neologism/MS
+neomycin/M
+neon/MS
+neonatal
+neonate/MoS
+neophyte/MS
+neoplasm/MS
+neoplastic
+neoprene/MS
+NEPAD
+Nepal/M
+Nepalese
+Nepali/M
+nepenthe/SM
+nephew/MS
+nephrite/WMS
+nephritides
+nephritis/M
+Nepon
+nepotism/MS
+nepotist/S
+Neptune/M
+neptunium/SM
+nerd/SZ
+nerdy/T
+Nerina
+Nerissa
+Nero/M
+nerve/SGMpDZ
+nerved/U
+nerveless/PY
+nervelessness/S
+nerves/U
+nerviness/S
+nerving/M
+nervous/YP
+nervousness/S
+nervy/TP
+Neserhof
+nest/MSD7G
+nester/M
+nestle/GSD
+nestler/M
+nestling/M
+Nestor/M
+net/DMSG
+netball/M
+NetBSD
+nether
+Netherby
+Netherlander/MS
+Netherlands/M
+nethermost
+netherworld/S
+Netscape/M
+nett/JS
+netter
+netting/M
+nettle/DMGS
+network/DMGJS
+neuk
+Neumann/M
+neural/Y
+neuralgia/MS
+neuralgic
+neurasthenia/MS
+neurasthenic/S
+neuritic/S
+neuritides
+neuritis/M
+neuroanatomy
+neurobiology/M
+neurology/13MwS
+neuromuscular
+neuron/MS
+neuronal
+neurone/S
+neuropathology/M
+neurophysiology/M
+neuropsychiatric
+neuroscience
+neuroscientist/S
+neuroses
+neurosis/M
+neurosurgeon/MS
+neurosurgery/MS
+neurotic/SY
+neurotransmitter/S
+neuter/dS
+neuterer/S
+neutral/Q-s8YS
+neutralisation
+neutralise/M
+neutralism/MS
+neutralist/S
+neutrality/SM
+neutralization/M
+neutralness
+neutrino/SM
+neutron/SM
+Neva/M
+Nevada/M
+Nevadan/S
+never
+never-ending
+nevermore
+nevertheless
+Neville/M
+Nevis/M
+nevus's
+new-found
+new-laid
+new-look
+new-style
+new/TPSY
+Newari
+Newark/M
+newbie/S
+newborn/S
+Newbury/M
+Newburyport/M
+Newcastle-under-Lyme
+Newcastle/M
+Newclaire
+Newclare
+newcomer/MS
+newel/MS
+Newell/M
+newfangled
+Newfields
+Newfoundland/RM
+Newhco
+Newholme
+newish
+Newlands
+newline/SM
+newly-wed/SM
+Newman/M
+Newmarket/M
+newness/S
+Newnham
+Newport/M
+Newrest
+Newry/M
+news-gathering
+news-sheet
+news-stand/SM
+news/pm5Z
+newsagent/MS
+newsboy/MS
+newscast/MRS
+newscasting's
+newsdealer's
+newsflash/S
+newsgirl/S
+newsgroup/SM
+newsletter/SM
+newspaper/md5MS
+newsprint/MS
+newsreader/MS
+newsreel/SM
+newsroom/S
+Newsweek/MY
+Newsweekly/M
+newsworthiness/S
+newsworthy/TP
+newsy/TS
+newt/MS
+Newton
+newton/SM
+Newtonian
+Newtown
+Newtownabbey/M
+Newville
+next
+next-door
+nexus/MS
+NFC
+NFL
+NFS
+Ngangelizwe
+Ngcelwane
+Ngcwanguba
+Ngcwazi
+Ngilanyoni
+Ngisana
+Ngobi
+Ngobozi
+Ngodwana
+Ngome
+Ngongozayo
+Ngonweni
+Ngonyama
+Ngonyameni
+Ngoqokazi
+Ngozi
+Ngqeleni
+Ngqubusini
+Ngqungqu
+Ngqutura
+Ngqwaru
+Ngqwatha
+Nguga
+Ngula
+Nguni
+Nguyen/M
+Ngwabe
+Ngwanamaya
+Ngwane
+Ngwaritsi
+Ngweding
+Ngwelezana
+Ngwengweni
+Ngwenyathi
+Ngxabangu
+Ngxakaza
+NHL
+Nhlangenyuka
+Nhlazatshe
+Nhloshane
+Nhlungwana
+Nhlungwane
+Nhlwathi
+NHS
+Ni/M
+niacin/MS
+Niagara/M
+Niall/M
+Niamey/M
+nib/DGMS
+nibble/RDSG
+Nicaragua/M
+Nicaraguan/S
+Nice's
+nice/TPY
+Nicene
+niceness/S
+nicety/MS
+niche/DGSM
+Nichol/MS
+Nicholas
+Nichole/M
+Nicholson/M
+nichrome
+nick/GSMD
+nickel/DGMS
+nickelodeon's
+nicknack's
+nickname/DGMS
+nicknamer/M
+Nicky/M
+Nicodemus/M
+Nicola/MS
+Nicole/M
+Nicomar
+Nicosia/M
+nicotine/SM
+niece/SM
+Niekerkshoop
+Nielsen/M
+Nielson/M
+Nietverdiend
+Nietzsche/M
+Nieu-Bethesda
+Nieuveld
+Nieuwoudtville
+Nieves/M
+nifty/STY
+Nigel/M
+Niger-Kordofanian
+Niger/M
+Nigeria/M
+Nigerian/S
+niggard/MSY
+niggardly/P
+nigger-ball/S
+nigger/SM
+niggle/DRJSGk
+nigh
+night-blindness
+night-life/M
+night-long
+night-owl
+night-soil
+night-time/SM
+night-watchman
+night/pMYS
+nightcap/MS
+nightclothes
+nightclub/GDSM
+nightdress/SM
+nighters/c
+nightfall/SM
+nightgown/MS
+nighthawk/SM
+nightie/SM
+nightingale/MS
+nightmare/MS
+nightmarish/Y
+nightshade/SM
+nightshirt/MS
+nightspot/MS
+nightstand's
+nightstick/S
+nightwear/M
+nighty's
+NIH
+nihilism/SM
+nihilist/SMW
+Nike/M
+Nikita/M
+Nikki/M
+Nikolai/M
+Nikon/M
+nil/MYG
+Nile/MS
+Nilo-Saharan
+nilpotent
+Nils
+Nilsson/M
+nimbi
+nimble/PTY
+nimbleness/S
+nimbus/M
+nimbused
+NIMBY
+Nimitz/M
+Nimrod/SM
+Nimrodpark
+Nina/M
+Ninapark
+nincompoop/SM
+nine/HMS
+ninepence/M
+ninepin/S
+ninepins/M
+nineteen/HMS
+ninety-eight/H
+ninety-first/S
+ninety-five/H
+ninety-four/H
+ninety-nine/H
+ninety-one
+ninety-onefold
+ninety-second/S
+ninety-seven/H
+ninety-six/H
+ninety-three/H
+ninety-two
+ninety-twofold
+ninety/HMS
+Nineveh/M
+ninja/S
+ninny/MS
+Nintendo/M
+niobium/M
+nip/R2SGDZ
+nippiness/S
+nipping/Y
+nipple/MS
+Nippon/M
+Nipponese
+nippy/T
+Nirvana
+nirvana/MS
+Nissan/M
+Nissenville
+nit/SM
+Nita/M
+nitpick/RGJDS
+nitrate/DSGM
+nitration/M
+nitre/NWnMS
+nitride/SM
+nitrification/SM
+nitrite/MS
+nitrocellulose/MS
+nitrogen/M
+nitrogenous
+nitroglycerin/M
+nitroglycerine
+nitrous
+nitwit/MS
+Niue/M
+Niuean
+Niuo
+nix
+Nixon/M
+Njombo
+Nkambako
+Nkande
+Nkandla
+Nkanga
+Nkangala
+Nkanini
+Nkanyezini
+Nkaus
+Nkelabantwana
+Nkidikitlana
+Nkogolwe
+Nkomo
+Nkonyeni
+Nkowankowa
+Nkozo
+Nkqubela
+Nkrumah/M
+Nkululeko
+Nkumandeni
+Nkumane
+Nkumbanyuswa
+Nkungumathe
+Nkungwini
+Nkunzimbini
+Nkupe
+Nkuri
+Nkwalini
+Nkwazi
+Nkwe
+Nkwenkwezini
+NLRB
+nm
+no-ball/SD
+no-claims
+no-go
+no-nonsense
+no-show/S
+no-win
+no/Q
+NOAA
+Noah/M
+nob/MY
+Nobel/M
+nobelium/M
+Nobelpark
+nobility/SM
+Noble's
+noble/PT5mS
+nobleness/S
+noblesse/M
+nobody/SM
+Nobokwe
+Nobuhle
+Nocomboshe
+nocturnal/S
+nocturne/MSo
+Nocwane
+nod/GSDoZM
+nodal
+Nodalane
+noddle/GDSM
+noddy/M
+node/SM
+nodular
+nodule/SM
+Noel/MS
+Noelle/M
+Noenieput
+noes
+nogal
+noggin/MS
+nohow
+noire/S
+noise-maker/SM
+noise/ZMp
+noiseless/PY
+noiselessness/S
+noisiness/S
+noisome
+noisy/YPT
+Nokaneng
+Nokia/M
+Nokomis
+Nokukhanya
+Nola/M
+Nolabakazi
+Nolan/M
+Noland/M
+Noldick
+Noll/M
+Nollothville
+nomad/WSM
+Nomadolo
+Nomaheya
+Nomaranjana
+Nomdiya
+Nome/M
+nomenclature/SM
+Nomi/M
+nominal/YS
+nominate/DnACNGS
+nomination/AMC
+nominative/YS
+nominator/CMS
+nominee/MS
+Nomlacu
+Nomonde
+Nompumelelo
+Nomvalo
+Nomzamo
+non
+non-abrasive
+non-absorbent
+non-academic/S
+non-acceptance/S
+non-acid/S
+non-active
+non-adaptive
+non-addictive
+non-adhesive
+non-adjacent
+non-adjustable
+non-administrative
+non-aggression/S
+non-agricultural
+non-alcoholic/S
+non-aligned
+non-alignment/S
+non-allergic
+non-appearance/S
+non-assignable
+non-athletic
+non-attendance/SM
+non-automotive
+non-availability/SM
+non-basic
+non-believer/SM
+non-belligerency
+non-belligerent/S
+non-blocking
+non-breakable
+non-burnable
+non-business
+non-caloric
+non-cancerous
+non-carbohydrate
+non-chargeable
+non-clerical/S
+non-clinical
+non-collectable
+non-com/SM
+non-combatant/SM
+non-combustible/S
+non-commercial/S
+non-commissioned
+non-committal/Y
+non-communicable
+non-competing
+non-competitive
+non-compliance/MS
+non-complying/S
+non-comprehending
+non-conducting
+non-conductor/MS
+non-consecutive
+non-conservative
+non-constructive
+non-contagious
+non-content
+non-contiguous
+non-continuous
+non-contributing
+non-contributory
+non-controversial
+non-convertible
+non-cooperation/S
+non-corroding/S
+non-corrosive
+non-credit
+non-criminal/S
+non-critical
+non-crystalline
+non-cumulative
+non-custodial
+non-cyclic
+non-dairy
+non-decreasing
+non-deductible
+non-deferential
+non-delivery/S
+non-democratic
+non-denominational/Y
+non-departmental
+non-depreciating
+non-destructive/Y
+non-detachable
+non-determinacy
+non-determinate/Y
+non-determinism
+non-deterministic/Y
+non-disciplinary
+non-disclosure/S
+non-discrimination/S
+non-discriminatory
+non-dramatic
+non-drinker/MS
+non-driver
+non-drying
+non-durable
+non-economic
+non-educational/Y
+non-effective/S
+non-elastic
+non-electric/S
+non-electrical
+non-emergency
+non-empty
+non-enforceable
+non-equivalence
+non-equivalent/S
+non-essential/S
+non-event/MS
+non-exchangeable
+non-exclusive
+non-executive
+non-exempt
+non-existence/SM
+non-existent
+non-explosive/S
+non-extensible
+non-factual
+non-fading
+non-fat
+non-fatal
+non-fattening
+non-ferrous
+non-flammable
+non-flowering
+non-fluctuating
+non-flying
+non-food
+non-freezing
+non-functional/Y
+non-governmental
+non-granular
+non-hazardous
+non-hereditary
+non-human
+non-identical
+non-inclusive
+non-independent
+non-industrial
+non-infectious
+non-inflammatory
+non-inflationary
+non-inflected
+non-intellectual/S
+non-interacting
+non-interchangeable
+non-interference
+non-intervention/S
+non-interventionist
+non-intoxicating
+non-intuitive
+non-invasive
+non-ionic
+non-ionising
+non-irritating
+non-judgemental
+non-judicial
+non-legal
+non-lethal
+non-linear/Y
+non-linearity/SM
+non-linguistic
+non-literary
+non-living
+non-local
+non-logical
+non-magical
+non-magnetic
+non-malignant
+non-member/SM
+non-metal/SMW
+non-metropolitan
+non-migratory
+non-militant/S
+non-military
+non-moral
+non-narcotic/S
+non-native/S
+non-natural
+non-negative
+non-negotiable
+non-nuclear
+non-numerical/S
+non-objective
+non-obligatory
+non-observance/S
+non-observant
+non-occupational/Y
+non-operational/Y
+non-operative
+non-orthogonal
+non-orthogonality
+non-parallel/S
+non-parametric
+non-participant/MS
+non-participating
+non-partisan/S
+non-party
+non-paying
+non-payment/SM
+non-peak
+non-performance/MS
+non-performing
+non-perishable/S
+non-person/S
+non-perturbing
+non-physical/Y
+non-poisonous
+non-political
+non-polluting
+non-porous
+non-prejudicial
+non-prescription
+non-procedural/Y
+non-productive
+non-professional/SY
+non-profit-making
+non-profit/S7
+non-programmable
+non-programmer
+non-proliferation/S
+non-public
+non-punishable
+non-racial
+non-radioactive
+non-random
+non-reactive
+non-reciprocal/S
+non-reciprocating
+non-recognition/S
+non-recoverable
+non-recurring
+non-redeemable
+non-reducing
+non-refillable
+non-refundable
+non-religious
+non-renewable
+non-representational/Y
+non-resident/MS
+non-residential
+non-residual
+non-resistance/S
+non-resistant/S
+non-respondent/S
+non-response
+non-restrictive
+non-returnable/S
+non-rhythmic
+non-rigid
+non-rural
+non-salaried
+non-scheduled
+non-scientific
+non-scientist/S
+non-scoring
+non-seasonal
+non-sectarian
+non-secular
+non-segregated
+non-sexist
+non-sexual
+non-singing
+non-singular
+non-skid
+non-slip
+non-smoker/MS
+non-smoking
+non-social
+non-speaking
+non-specialist/MS
+non-specializing
+non-specific
+non-spiritual/S
+non-staining
+non-standard
+non-starter/S
+non-stick
+non-stop
+non-strategic
+non-striking
+non-structural
+non-successive
+non-supervisory
+non-support/GS
+non-surgical
+non-sustaining
+non-swimmer
+non-sympathiser/M
+non-tarnishable
+non-taxable/S
+non-technical/Y
+non-tenured
+non-terminal/S
+non-terminating
+non-termination
+non-theatrical
+non-thinking/S
+non-threatening
+non-toxic
+non-traditional/Y
+non-transferable
+non-transparent
+non-trivial
+non-tropical
+non-trunk
+non-uniform
+non-union/S
+non-user/SM
+non-venomous
+non-verbal/Y
+non-veteran/MS
+non-viable
+non-violence/S
+non-violent/Y
+non-virulent
+non-vocal
+non-vocational/Y
+non-volatile
+non-volunteer/S
+non-voter/SM
+non-voting
+non-white/MS
+non-words
+non-working
+non-yielding
+non-zero
+Nona/M
+nonage/MS
+nonagenarian/MS
+nonagon
+nonce/SM
+nonchalance/MS
+nonchalant/Y
+nonchalantness
+nonconforming
+nonconformist/MS
+nonconformity/SM
+nondescript/YS
+Nondweni
+none/S
+nonentity/MS
+nones/M
+nonesuch
+nonetheless
+Nongoma
+Nonie/M
+Nonkqubela
+Nonkululeko
+nonogenarian
+nonpareil/MS
+Nonparella
+nonplus/GSD
+Nonqubela
+nonsense/MSw1
+nonsensical/P
+nonsuch
+nonsuit
+Nontsizana
+Nonzwakazi
+noodle/MS
+Nooiensfontein
+Nooitgedacht
+nook/MS
+noon/MS
+noonday/SM
+nooning's
+noontide/MS
+noontime/SM
+Noordbrug
+Noordeinde
+Noorder-paarl
+Noordgesig
+Noordhang
+Noordheuwel
+Noordhoek
+Noordkaap
+Noordkruin
+Noordmanville
+Noordsig
+Noordstad
+Noordwes
+Noordwyk
+Noorsekloof
+noose/MGDS
+nope
+nor
+Nora/M
+NORAD/M
+noradrenalin
+noradrenaline/M
+Norah/M
+Norbert/M
+Nordic/S
+Nordstrom/M
+Noreen/M
+Norfolk/M
+Norlim
+norm/MoSDuVvG
+Norma/M
+normal/ts+8Qq-S
+normalcy/SM
+normalise/CDGAS
+normality/SM
+normalize/CSGD
+normalized/A
+normalizer/S
+normalizes/A
+normalizing/A
+Norman/MS
+Normandi
+Normandien
+Normandy/M
+Normanville
+normative/P
+Norplant
+Norris
+Norristown/M
+Norscot
+Norse/m
+Nortel/M
+north-east/M
+north-East/M
+north-easterly
+north-Easterly
+north-Eastern
+north-eastern
+north-eastward/S
+north-Eastward/S
+north-north-east
+north-north-west
+north-south
+North-West
+north-west's
+north-West/M
+north-westerly
+north-Westerly
+north-western
+north-Western
+north-Westward/S
+north-westward/S
+north/MGS
+Northam
+Northampton/M
+Northamptonshire/M
+northbound
+Northcliff
+Northcroft
+Northdale
+Northdene
+northeaster/SM
+norther's
+northerly/S
+northern/RS
+northernmost
+Northfield/M
+Northgate
+northing/M
+Northlands
+Northmead
+northmen
+Northriding
+Northrop/M
+Northumberland/M
+Northumbria
+Northview
+northward/S
+Northway
+Northwest/M
+northwester/SM
+Northwold
+Norton/M
+Norvalspont
+Norwalk/M
+Norway/M
+Norwegian/S
+Norwich/M
+Norwood
+nose-cone/S
+nose/DSMZG
+nosebag/M
+nosebleed/MS
+nosedive/GSD
+nosegay/MS
+Nosey
+nosey
+nosh/MDGS
+Noshezi
+nosiness/S
+nosing/M
+nostalgia/SM
+nostalgic/YS
+nostril/SM
+nostrum/MS
+nosy/TYP
+not/7nxldSNg
+notability/MS
+notable/PS
+notarial
+notary/MS
+notate/DSxVG
+notation/FMC
+notational/CY
+notative/F
+notch/GMDS
+note's
+note/FNDCnSG
+notebook/SM
+notepad/S
+notepaper/MS
+noteworthiness/S
+noteworthy/P
+nothing/PS
+nothingness/S
+notice/MGlDS
+noticeable/U
+noticeboard/S
+noticed/U
+notification/M
+notify/DSGNR7n
+Notintsila
+notion's
+notion/CS
+notoriety/S
+notorious/YP
+Notre
+Notting
+Nottingham/M
+Nottinghamshire/M
+notwithstanding
+Nouakchott/M
+nougat/SM
+nought/S
+Nouméa/M
+noun/MS
+nounal
+Nounéa
+Noupoort
+nourish/LDSG
+nourished/fU
+nourisher/M
+nourishment/f
+Nourivier
+nous/M
+nouveau
+nouveaux
+nouvelle
+Nov
+Nova
+nova/MS
+novae
+Novak/M
+novel/MQ3-S
+novelette/MS
+novelist/W
+Novell
+novella/MS
+novelty/MS
+November/MS
+novena/SM
+novice/MS
+novitiate/MS
+Novo/M
+Novocain
+Novocaine
+Novuka
+now
+now-now
+nowadays
+noway
+nowhere
+nowt
+NOx
+noxious/YP
+Noxowa
+Noycedale
+Noyes/M
+Nozambula
+nozzle/SM
+Np
+Nqabeni
+Nqamakwe
+Nqancule
+Nqetho
+NQF
+Nqoloza
+Nqumakala
+Nqutu
+Nqutyana
+NRA
+nroff/M
+Nsavulani
+Nseleni
+NSF
+Nshongweni
+Nsikazi
+Nsiligwane
+Nsingane
+Nsingweni
+Nsizwane
+Nsuze
+NT
+Ntabankulu
+Ntabaskop
+Ntabathemba
+Ntabebomvu
+Ntabencuka
+Ntabengadlinkomo
+Ntabeni
+Ntaboduli
+Ntambanani
+Ntangeni
+nth
+Ntha
+Nthuthukoville
+Ntibane
+Ntile
+Ntlafatsong
+Ntlamvukazi
+Ntlangano
+Ntlangwini
+Ntlanzame
+Ntlanzini
+Ntlaza
+Ntlenzi
+Ntloloane
+Ntlozelo
+Ntokozweni
+Ntola
+Ntondweni
+Ntsaka
+Ntsesha
+Ntshidi
+Ntshilini
+Ntshintshi
+Ntsima
+Ntsimbakazi
+Ntsimbini
+Ntsingisi
+Ntsito
+Ntsizwa
+Ntsubane
+Ntsundwane
+Ntswanatsati
+Ntsweletsoku
+Ntukusweni
+Ntumeni
+Ntunda
+Ntunjambili
+Ntuze
+Ntuzuma
+Ntywenka
+nu/M
+nuance/SMD
+nub/SMZ
+nubbin's
+nubby/T
+Nubian/M
+nubile
+Nucam
+nuclear
+nuclear-free
+nuclear-powered
+nuclease/M
+nucleate/SnDGN
+nucleation/M
+nuclei/M
+nucleoli
+nucleolus/M
+nucleon/SM
+nucleotide/SM
+nucleus/WM
+nuclide/M
+nude/YPT3S
+nuder/C
+nudes/C
+nudge/SGD
+nudger/M
+nudism/SM
+nudity/MS
+Nuffield
+nugatory
+Nugent/M
+nugget/MS
+nuisance/MS
+nuke/GDSM
+Nuku'alofa
+null/S
+nullification/M
+nullify/nSDNGR
+nullity/MS
+num-num
+numb/TPRGkYSD
+number/pdJ
+numbered/AUe
+numberer/M
+numbering/e
+numberplate/M
+numbers/eA
+Numbi
+numbness/S
+numbskull/M
+numerable/IC
+numeracy/IS
+numeral/MS
+numerate/IS
+numeration/SM
+numerator/SM
+numeric/SY
+numerical/S
+numerologist/S
+numerology/SwM
+numerous/PY
+numinous/S
+numismatic/S
+numismatics/M
+numismatist/MS
+numskull/MS
+nun/MyS
+Nunavut
+nunchaku/S
+nuncio/MS
+Nuneaton
+Nunez/M
+nunnery/MS
+nunu
+nuptial/S
+Nuremberg/M
+nurse/RGMDJS
+nursemaid/MS
+nurser/Z
+nursery/MmS
+nursling/M
+nurture/GRMDS
+nut/MSGND2Z
+nutate/GSD
+nutation/M
+nutcracker/MS
+nuthatch/MS
+nutmeg/DSGM
+nutria/MS
+nutrient/MS
+nutriment/MS
+nutrition/M3oS
+nutritional
+nutritionist
+nutritious/PY
+nutritiousness/S
+nutritive/Y
+nutshell/SM
+nuttiness/S
+nutty/TP
+Nuuk/M
+Nuwedorp
+Nuwedorpsgebied
+Nuweland
+Nuwerus
+nuzzle/DRSG
+Nwamankena
+Nwamanungu
+Nwamitwa
+Nwanedzi
+Nxamagele
+Nxamalala
+Nxaxo
+Nyakallong
+Nyakane
+Nyala
+nyala/S
+Nyamwezi
+Nyandana
+Nyandeni
+Nyanga
+Nyaniso
+Nyanisweni
+Nyanja/S
+Nyankole
+Nyanyadu
+Nyasa/M
+Nye/M
+Nyerere/M
+Nyeweni
+Nyidlana
+nylon/MS
+Nylpark
+Nylstroom
+nymph/SM
+nymphet/MS
+nympholepsy/M
+nymphomania/MS
+nymphomaniac/S
+Nyokana
+Nyongane
+Nyoni
+Nyoro
+Nyquist/M
+NYSE
+Nyssa/M
+Nyulula
+Nyumaga
+Nyuswa
+Nywara
+NZ
+Nzhelele
+Nzima
+Nzimakazi
+Nzokhulayo
+Nzombane
+O
+O'Brien/M
+O'Casey
+o'clock
+o'Clock
+O'Connell/M
+O'Connor/M
+O'Dell/M
+O'Donnell/M
+O'Dwyer/M
+o'er
+O'Hara
+O'Hare/M
+O'Higgins
+O'Keeffe
+O'kennedyville
+O'Leary/M
+O'Neil
+O'Neill
+O'Reilly
+O'Shea/M
+O'Sullivan/M
+oaf/SM
+oafish/Y
+oafishness/S
+Oahu/M
+oak/SM
+Oakdale
+Oakdene
+oaken
+Oakland/MS
+Oakley/M
+Oakmont/M
+Oakmore
+Oakridge
+Oaktree
+oakum/MS
+Oakville
+oakwood
+OAP
+oar/MDS
+Oarfish
+oarlock/MS
+oars/m5
+OAS
+oases
+oasis/M
+oat/MS
+oatcake/SM
+oaten
+Oates/M
+oath/SM
+Oatlands
+oatmeal/SM
+ob.
+Obadiah/M
+Obanjeni
+obbligato/S
+obduracy/S
+obdurate/YS
+obdurateness/S
+obedience/EMS
+obedient/YE
+obeisance/MS
+obeisant/Y
+obelisk/MS
+Oberholzer
+Oberlin/M
+Oberon/M
+obese
+obesity/MS
+obey/EDSG
+obeyer/EM
+obfuscate/GNySnD
+obfuscater
+obfuscation/M
+obit/MS
+obituary/MS
+object/VvSMGuD
+objectify/nDNSG
+objection/SM7l
+objectionable/U
+objectionableness/M
+objective/PS
+objectiveness/S
+objectivity/SM
+objector/SM
+objurgate/GNnSD
+objurgation/M
+oblate/SNYn
+oblateness
+oblation/M
+obligate/DxyNSGn
+obligation/M
+obligatory/Y
+oblige/EDGS
+obliger/M
+obliging/PY
+oblique/YGSD
+obliqueness/S
+obliquity/SM
+obliterate/DVSGNnv
+obliteration/M
+oblivion/MS
+oblivious/PY
+obliviousness/S
+oblong/SP
+obloquies
+obloquy/M
+obnoxious/YP
+obnoxiousness/S
+oboe/MS
+oboist/S
+obscene/TY
+obscenity/MS
+obscurantism/MS
+obscurantist/SM
+obscure/STNYGDP
+obscurity/MS
+obsequies
+obsequious/Y
+obsequiousness/S
+observability/M
+observable/U
+observables
+observance/SM
+observant/YU
+observation/M
+Observatory
+observatory/MS
+observe/BNxDRklSGn
+observed/U
+obsess/xSvuXVNDG
+obsession/M
+obsessive/S
+obsessiveness/S
+obsidian/MS
+obsolescence/S
+obsolescent/Y
+obsolete/DPYSG
+obstacle/MS
+obstetric/S
+obstetrical
+obstetrician/MS
+obstetrics/M
+obstinacy/MS
+obstinate/PY
+obstreperous/PY
+obstreperousness/S
+obstruct/VvSDGu
+obstructed/U
+obstructer's
+obstruction/3MS
+obstructionism/MS
+obstructionist
+obstructive/SP
+obstructiveness/S
+obtain/7SDG
+obtainable/U
+obtainer
+obtrude/uDNvSGXV
+obtruder/M
+obtrusive/P
+obtrusively/U
+obtrusiveness/S
+obtuse/TY
+obtuseness/S
+obverse/SY
+obviate/GDNnS
+obvious/YP
+obviousness/S
+ocarina/MS
+Occam/M
+occasion/MGoDJS
+occasional
+Occident/M
+occidental/SY
+occipital/Y
+Occitan
+occlude/SXGVDN
+occlusion/M
+occlusive/S
+occult/SDYG
+occulter/M
+occultism/SM
+occupancy/SM
+occupant/SM
+occupation's/AK
+occupation/oM
+occupational
+occupied/KAU
+occupies/AK
+occupy/RSnDG
+occupying/K
+occur/ADGS
+occurrence/SM
+ocean-going
+ocean/SWM
+Oceania/M
+oceanic/4
+oceanographer/MS
+oceanography/SMW
+Oceanside/M
+ocelot/SM
+Ochoa/M
+ochre/MS
+Oconomowoc/M
+OCR
+Oct
+octagon/oMS
+octagonal
+octahedral
+octahedron/M
+octal/S
+octane/MS
+octant/M
+octave/MS
+octavo/MS
+octennial
+octet/MS
+octile
+octillion's
+October/MS
+octogenarian/MS
+octopus/SM
+octoroon/M
+ocular/S
+oculist/MS
+OD
+odalisque/MS
+odd/LPSTY
+oddball/MS
+oddity/MS
+oddness/S
+odds-on
+ode/MS
+Odeke
+Odell/M
+Odendaalsrus
+Odessa/M
+Odidini
+Odin/M
+Odinburg
+odious/YP
+odiousness/S
+Odis/M
+odium/SM
+Odlameni
+Odom/M
+odometer/MS
+odoriferous
+odorous/Y
+odorousness
+odour/SMp
+ODs
+Odysseus/M
+Odyssey's
+odyssey/S
+OE
+OED
+oedema/SM
+oedematous
+Oedipal/Y
+Oedipus/M
+OEM/M
+OEMS
+oenology/SM
+oenophile/S
+Oerderpark
+Oersted/M
+oesophageal
+oesophagi
+oesophagus/M
+oestrogen/MS
+oestrous
+oestrus/SM
+oeuvre/SM
+of
+Ofcolaco
+Ofelia/M
+off-air
+off-break
+off-centre
+off-drive/S
+off-frequency
+off-key
+off-licence/MS
+off-limits
+off-line
+off-load/G
+off-peak
+off-piste
+off-plan
+off-putting/Y
+off-ramp
+off-road/G
+off-roader
+off-sales
+off-screen
+off-season
+off-stage/S
+off-street
+off-the-cuff
+off-the-peg
+off-the-shelf
+off-the-wall
+off-white
+off/RGMJ
+offal/SM
+Offaly/M
+offbeat/MS
+offcuts
+Offenbach/M
+offence/S
+offend/DGVRuSv
+offensive's
+offensive/PIY
+offensiveness/IS
+offensives
+offer/dJr
+offertory/SM
+offhand/Dih
+offhandedness/S
+office/RMSo
+officeholder/SM
+officemate/S
+officer/d
+officership/S
+official's
+official/UY
+officialdom/MS
+officialism/SM
+officialness
+officials
+officiant/SM
+officiate/SGDNn
+officiation/M
+officiator/SM
+officio
+officious/YP
+officiousness/S
+offing/M
+offish
+offload/GDS
+offprint/MDSG
+offset/SMG
+offshoot/SM
+offshore
+offside/S
+offspring/M
+Ofsted/M
+oft
+oft-times
+often
+oftener
+oftenest
+Ogagwini
+Ogden/M
+Ogies
+ogive/M
+ogle/RDSG
+Oglethorpe/M
+ogre/SM
+ogreish
+ogress/S
+ogrish
+Ogwini
+oh
+Ohio/M
+Ohioan/S
+Ohlange
+ohm/MWS
+ohmmeter/SM
+oho/S
+Ohrigstad
+ohs
+OHSA/M
+Ohwebede
+oil-shale
+oil/MRmZD2GS
+oilcloth/MS
+oilfield/SM
+Oilfish
+oiliness/S
+oilseed/SM
+oilskin/MS
+oily/TP
+oink/SDG
+ointment/SM
+OJ
+Ojibwa/MS
+OK/DGM
+Okamoto/M
+okapi/MS
+okay/DMG
+Okayama/M
+oke
+Okeechobee/M
+Okhotsk/M
+Okiep
+Okinawa/M
+Oklahoma/M
+Oklahoman/SM
+okra/SM
+OKs
+Oktoberfest
+old-age
+old-fashioned
+old-gold
+old-style
+old-time/R
+old-world
+old/T
+Oldbury
+olden
+Oldenburg/M
+Oldfield/M
+Oldham
+oldie/MS
+oldish
+oldness/S
+Oldsmobile/M
+oldster/MS
+olé
+oleaginous
+oleander/MS
+olefin/M
+Olen/M
+oleomargarine/SM
+oles
+olfactory
+Olga/M
+Olievenhoutbosch
+Olifantpark
+Olifants
+Olifantsfontein
+Olifantshoek
+oligarch/WwMZ
+oligarchs
+oligarchy/SM
+oligopolistic
+oligopoly/SM
+Olin/M
+Olivanna
+olive/SM
+Olivedale
+Oliver/M
+Olivetti/M
+Olivia/M
+Olivier/M
+Olivine
+olivine
+Ollie/M
+Olmsted/M
+Olsen/M
+Olson/M
+Olympia/M
+Olympiad/MS
+Olympian/S
+Olympic/S
+Olympus/WM
+OM
+Omagh/M
+Omaha/M
+Oman/M
+Omar/M
+ombudsman/M
+ombudsmen
+omega/MS
+omelet/SM
+omelette/MS
+omen/MSd
+omicron/SM
+ominous/PY
+ominousness/S
+omission/M
+omit/GXNSD
+omni/M
+omnibus/SM
+omnidirectional
+omnipotence/SM
+omnipotent/YS
+omnipresence/MS
+omnipresent/Y
+omniscience/SM
+omniscient/YS
+omnivore/SM
+omnivorous/PY
+omnivorousness/S
+Omo
+ompad
+on-board
+on-frequency
+on-line
+on-off
+on-screen
+on-site
+on-stage
+on-street
+on/Y
+onanism/M
+once
+once-over
+oncer/M
+oncogene/S
+oncologist/S
+oncology/SM
+oncoming/S
+Onder-smoordrif
+Onderbaadjie
+Onderpapegaaiberg
+onderstebo
+Onderstepoort
+Ondini
+one-half
+one-horse
+one-liner
+one-man
+one-off
+one-piece
+one-quarter
+one-sided/Y
+one-sidedness
+one-step
+one-third
+one-time
+one-to-one
+one-track
+one-upmanship
+one-way
+one/MPS
+onefold
+Onega/M
+Oneida/SM
+oneness/S
+oner/M
+onerous/PY
+onerousness/S
+oneself
+Ongegund
+Ongers
+ongoing/S
+Ongoye
+onion/SM
+onionskin/SM
+online
+onlooker/MS
+onlooking
+only-begotten
+Ono/M
+onomatopoeia/MS
+onomatopoeic
+Onondaga/MS
+onrush/GSM
+ons
+Onseepkans
+onset/SM
+onshore
+onside
+onslaught/MS
+Ontarian/S
+Ontario/M
+Ontdekkers
+Ontdekkerspark
+onto
+ontogeny/SM
+ontology/wS1M
+onus/MS
+Onverwacht
+Onverwaght
+onward/S
+onyx/SM
+oodles
+ooh/DSG
+oolitic
+oom
+OOo/M
+oops/S
+Oos-einde
+Oospoort
+Oostergloed
+Oostersee
+Oosterville
+ooze/ZDGS
+oozy/T
+op/FS
+opacity/MS
+opal/SM
+opalescence/S
+opalescent/Y
+opaque/YSPT
+opaqueness/S
+opcode's
+OPEC
+Opel
+open-air
+open-and-shut
+open-deartedness
+open-ended
+open-eyed
+open-faced
+open-handed/P
+open-handedness/S
+open-heart/D
+open-minded/Y
+open-mindedness
+open-mouthed
+open-plan
+open-top
+open/dJYSr
+OpenBSD
+opencast
+OpenDocument
+opened/AU
+opening/M
+openness/S
+OpenOffice.org
+OpenOffice/M
+opens/A
+Opensource
+openwork/MS
+opera/nuSvMV
+operability
+operable/I
+operadi
+operand/MS
+operandi
+operantly
+operate/FDGSN
+operatic/SY
+operation/FM
+operational/Y
+operative/FPS
+operativeness/I
+operator/FMS
+operetta/MS
+Ophansi
+Ophelia/M
+Ophirton
+Ophokweni
+ophthalmic/S
+ophthalmology/M3WS
+opiate/MSDG
+opine/DGS
+opinion/MS
+opinionated/PY
+opioid
+opium/MS
+Opkoms
+Oporto
+opossum/MS
+opp
+Oppenheimer/M
+Oppermans
+opponent/MS
+opportune/Y3
+opportunely/I
+opportunism/MS
+opportunist/1W
+opportunity/SM
+opposable
+oppose/SNDxGX
+opposed/U
+opposer/M
+opposite/PSY
+opposition/M
+oppress/NXVvGuDS
+oppression/M
+oppressive/P
+oppressiveness/S
+oppressor/MS
+opprobrious/Y
+opprobrium/MS
+Oprah/M
+ops
+opsit
+opsitkers
+opstoker/S
+opt-out/S
+opt/xD1GWwS
+optic/S
+optician/MS
+optics/M
+optima/o
+optimal
+optimality
+optimise/M
+optimised/U
+optimism/McS
+optimist/W1MS
+optimistic/c
+optimization/M
+optimized/U
+optimum/q89sSQ-M
+option/DMGS
+optional/S
+optionality/M
+optoelectronic
+optometry/SMW
+opulence/MS
+opulent/Y
+opus/MS
+Opwag
+Oqadeni
+or/nNM
+oracle/SM
+oracular
+oral/S
+Oran/M
+orang
+orang-outang/S
+orang-utan/SM
+Orange
+orange/MyS
+orangeade/SM
+orangery/SM
+orangey
+Orania
+Oranjehof
+Oranjekruin
+Oranjesig
+Oranjestad/M
+Oranjeville
+Oranjezicht
+orate/SDG
+oration/M
+orator/w1SM
+oratorio/SM
+oratory/SM
+orb/GMSD
+orbicular
+orbit/dSM
+orbital/SYM
+orbiter/S
+orchard/MS
+Orchard/S
+orchestra/SMon
+orchestral
+orchestrate/GDS
+orchestration/M
+orchestrator/M
+orchid/MS
+ordain/KDGS
+ordained/U
+ordainer/M
+ordainment/SM
+ordeal/MS
+order/EYdSM
+ordered/AU
+orderer
+ordering/S
+orderless
+orderliness/ES
+orderly/S
+orders/A
+ordinal/S
+ordinance/MS
+ordinands
+ordinariness/S
+ordinary/TSY
+ordinate's
+ordinate/FSN
+ordination/MF
+ordinations
+ordinator/FS
+ordnance/MS
+Ordovician
+ordure/SM
+ore/oySM
+oregano/MS
+Oregon/M
+Oregonian/S
+Oren/M
+Oreo
+Orestes
+organ/Wqs3+-98MQ1tS
+organdie/SM
+organelle/SM
+organic/IY
+organics
+organisation/Mo
+organisational
+organise/EDAnSG
+organiser/ASM
+organism/MWS
+organist
+organization/oM
+organizational/S
+organize/ESGADnN
+organizer/AM
+organogram
+organometallic
+organza/MS
+orgasm/MGWSD
+orgiastic
+orgy/SM
+Oribi
+Oriel
+oriel/MS
+orient's
+orient/AEDSGNn
+orientable
+oriental/SY
+Orientalist
+orientate/GADSE
+orientation/EMA
+orienteering/M
+orienter
+orifice/SM
+orig
+origami/MS
+origin/onSMNvV
+original/S
+originality/MS
+originate/GDS
+origination/M
+originator/MS
+Orin/M
+Orinoco/M
+oriole/SM
+Orion/M
+orison/MS
+Oriya/M
+Orkney/M
+Orland/M
+Orlando/M
+Orleans
+ormolu/SM
+Ormonde
+ornament/MGoNnDS
+ornamental/S
+ornamentation/M
+ornate/PY
+ornateness/S
+orneriness's
+Ornihaven
+ornithology/3SMw
+orographic/M
+orography/MW
+Oromo
+orotund
+orotundity/MS
+orphan/dMS
+orphanage/MS
+orphanhood/M
+Orpheus/M
+Orphic
+Orpington
+Orr/M
+Orrin/M
+orris/SM
+ors
+Orson/M
+Ortega/M
+orthodontia
+orthodontic/S
+orthodontist/SM
+orthodox/UYZ
+orthodoxes
+orthodoxy/SM
+orthogonal/q8Y-Q
+orthogonality/M
+orthogonalization/M
+orthography/1MwWS
+orthonormal
+orthopaedic/S
+orthophosphate's
+orthorhombic
+Ortiz/M
+Orville/M
+Orwell/M
+Orwellian
+OS/M
+Osage/MS
+Osaka/M
+Osama/M
+Osborn/M
+Osborne/M
+Oscar/SM
+Osceola/M
+oscillate/SyDGNn
+oscillation/M
+oscillator/MS
+oscilloscope/MS
+osculate/SNDGn
+osculation/M
+OSGi
+Osgood/M
+OSHA
+Oshabeni
+Oshkosh/M
+Oshoek
+osier/SM
+Osizweni
+Oskraal
+Oslo/M
+osmium/M
+osmoses
+osmosis/M
+osmotic
+Osprey
+osprey/MS
+OSS
+osseous/Y
+Ossetic
+ossification/M
+ossify/nGNDS
+Osteichthyes
+ostensible/Y
+ostentation/MS
+ostentatious/YP
+osteoarthritides
+osteoarthritis/M
+osteology/M
+osteopath/WMSZ
+osteopathy/MS
+osteoporoses
+osteoporosis/M
+ostler
+ostracise/MDSG
+ostracism/SM
+Ostrander/M
+Ostrich
+ostrich/SM
+Osummit
+Osutu
+Oswald/M
+Oswestry
+OT
+OTB
+OTC
+Othame
+Othandweni
+Othello/M
+other/PSM
+otherwise
+otherworldliness
+otherworldly
+otiose
+Otis/M
+OTOH
+OTT
+Ottawa/M
+otter/SM
+Ottery
+Otto/M
+Ottoman/MS
+Ottosdal
+Ottoshoop
+Ouagadougou/M
+oubliette/MS
+ouboet
+Oubosrand
+ouch/S
+Oudekraal
+Oudekraalfontein
+Oudewerfpark
+Oudorp
+Oudshoorn
+Oudtshoorn
+ought
+oughtn't
+Oukasie
+ounce/MS
+Ouplaas
+our/S
+ourself
+ourselves
+oust/DRGS
+out-of-court
+out-of-date
+out-of-phase
+out-of-pocket
+out-take/S
+out-tray
+out/MDGJS
+outage
+outang/S
+outargue
+outback
+outboard
+outboast
+outbound
+outbreak
+outburst/M
+outclass
+outcome/MS
+outcrop/J
+outcry/M
+outdo
+outdoor
+outdraw
+outer/S
+outermost
+outerwear/M
+outface/G
+outfall
+outfield
+outfight/G
+outfit/G
+outflank
+outflow/M
+outgo
+outgoingness
+outgrip
+outgrow
+outguess
+outhouse
+outing/M
+outland
+outlandish/PY
+outlandishness/S
+outlaw/DyG
+outlawry/M
+outlay/M
+outlet
+outlier/S
+outlive
+outlook/M
+outmanoeuvre
+outmatch
+outmigration
+outmoded
+outnumber
+outpatient
+outperform
+outplay
+outpost
+outpouring/MS
+output/MG
+outrageous/PY
+outran
+outré
+outside/R
+outsiderness
+outsource/J
+outspoken/YP
+outspokenness/S
+outspread
+outstanding/Y
+outstation
+outstrip/G
+outvote
+outward/PY
+outwear
+Ouvolk
+ouzo/SM
+ova/oynM
+oval/MPS
+Ovambo/S
+Ovamboland
+ovarian
+ovary/SM
+ovate/S
+ovation/M
+oven-ready
+oven/MS
+ovenbird/MS
+over-abundance/MS
+over-abundant
+over-active
+over-activity
+over-anxiety
+over-anxious/Y
+over-curiosity
+over-curious
+over-delicacy
+over-delicate
+over-large
+over-long
+over-many
+over-much
+over-nice
+over-niceness
+over-nicety
+over-particular
+over-ridden
+over-ride/SG
+over-sensitive
+over-sensitiveness/S
+over-sensitivity
+over-the-counter
+over-the-top
+over/YSM
+overachieve
+overage
+overallocation
+overarm
+overate
+overattentive
+Overbaakens
+overbear/k
+overbearing/P
+Overberg
+overbite/M
+overboard
+overbold
+overbook/GS
+overbore
+overbuild/G
+overburden/k
+overbuy
+overcapacity
+overcareful
+overcast
+overcautious
+overcerebral
+overcloud
+overcoat
+overcome/GS
+overcomits
+overcommit
+overcomplicate
+overconscientious
+overcook/G
+overcorrection
+overcritical
+overcrowd/D
+overdevelop
+overdo
+overdraft
+overdraw
+overdress
+overdrive/M
+overdub/G
+overdue
+overeager/P
+overeducate
+overemotional
+overemphasis
+overenthusiastic
+overexcite
+overexercise
+overexploitation
+overextend
+overfall
+overfill/G
+overfish/G
+overflew
+overflight
+overflow/G
+overfly
+overfond
+overfull
+overgeneralise
+overgraze
+overground
+overgrow
+overhang
+overhasty
+overhaul/J
+overhauler
+overhead
+overheat
+Overhex
+overhung
+Overijssel
+overindulgent
+overkill/M
+Overkruin
+overland
+overlay
+overleaf
+overlie
+overlier
+overload/G
+overlook
+overmaster
+overnight/G
+overnighter
+overpass/M
+overplay
+overpopulous
+Overport
+overpower/k
+overprecise
+overprice
+overprint/G
+overran
+overreacher
+overrider
+overripe
+overrule
+oversample
+oversaturate
+oversaw
+oversee
+overshoe
+overshoot
+oversimplification/M
+overspill/M
+overspread
+overstep
+overstress
+overstretch
+oversubtle
+overt/Y
+overtake/G
+overtax
+overtness
+overture/SM
+overview
+overweening
+overwhelm/k
+overwinter
+overwrap
+overwrite/G
+Ovid/M
+oviduct/MS
+oviform
+oviparous
+Oviston
+ovoid/S
+ovular
+ovulate/SGDy
+ovule/nMNS
+ovum/SM
+ow/DG
+owe/S
+Owen/M
+owl/MS
+owlet/SM
+owlish/PY
+own-brand
+own/RGSD
+owned/UE
+owner-occupier
+ownership/MS
+owning/E
+owns/E
+ox/M
+oxalate/M
+oxalic
+oxaloacetic
+oxbow/SM
+Oxbridge
+oxcart's
+oxen/M
+Oxeye
+Oxford/SM
+Oxfordshire
+oxidant/SM
+oxidation/M
+oxidative/Y
+oxide/sQS-Mn
+oxidisation
+oxidise/J
+oxidised/U
+oxidization/M
+oxidized
+oxidizer/M
+oxidizing
+Oxnard
+Oxonian
+Oxordshire/M
+oxtail/M
+oxyacetylene/MS
+oxygen/MnN
+oxygenate/MSGD
+oxygenation/M
+oxyhydroxides
+oxymoron/M
+oyster/SM
+oz
+Ozark/SM
+ozone-friendly
+ozone/M
+Ozwatini
+Ozzie/M
+p.a.
+P.O.
+p/FYIA
+pa/Mo
+Paardekraal
+Paardeneiland
+Paardevlei
+Paarl
+Paarlshoop
+Paarlvallei
+Paarlzicht
+Paballelo
+Paballong
+Pabalong
+Pablo/M
+Pabst/M
+pabulum/SM
+PAC
+Pacaltsdorp
+pace's
+pace/eDG
+pacemaker/MS
+paceman
+pacer/SM
+paces
+pacesetter/MS
+pacesetting
+pacey
+Pacheco/M
+pachyderm/SM
+Pacific's
+pacific/4
+pacification/M
+pacifism/MS
+pacifist/W
+pacify/1RS3NnWDG
+pack's
+pack/ADUGS
+packable
+package's
+package/DGAS
+packaged/U
+packager/MS
+packaging/SM
+Packard/M
+packer/MS
+packet/SMd
+packhorse/M
+packing/SM
+packinghouse/S
+packsaddle/SM
+Packwood/M
+pact's/I
+pact/ISF
+pad/JZMDGS
+Paddavlei
+padded/U
+Paddie/M
+padding/M
+Paddington/M
+paddle/MRSDG
+Paddock
+paddock/SMGD
+paddy/MS
+Padgett/M
+Padilla/M
+padkos
+padlock/DMGS
+padloper
+Padraig/M
+padrao
+padre/SM
+Padrewski/M
+paean/MS
+paediatric/S
+paediatrician/SM
+paediatrics/M
+paedophile/S
+paedophilia/M
+paella/SM
+paeony/M
+PAGAD
+pagan/MS
+Paganini/M
+paganism/MS
+page/6MRSDG
+pageant/MS
+pageantry/MS
+pageboy/SM
+paged/U
+Pageview
+paginate/SnDNG
+pagoda/SM
+Pahaji
+Pahlavi
+paid-up
+paid/KAfcU
+Paige/M
+pail/M6S
+pailful/SM
+pain/Sj6GMDp
+Paine/M
+painful/PT
+painfulness/S
+painkiller/MS
+painkilling
+painless/Y
+painlessness/S
+painstaking/Y
+paint/MRSGJD
+paintball
+paintbox/M
+paintbrush/SM
+painted/UA
+painter/Y
+painterliness
+painting/M
+paints/A
+paintwork
+pair's/A
+pair/ISADG
+paired/U
+pairing/S
+pairwise
+paisley
+Paisley/SM
+Pakaneng
+Pakistan/M
+Pakistani/S
+pal/MS
+palace/MS
+paladin/MS
+palaeoanthropologist
+palaeoanthropology/w
+palaeobotanist
+palaeobotany/w
+Palaeocene
+palaeoclimatologist
+palaeoclimatology/w
+palaeoecologist
+palaeoecology/w
+palaeographer/MS
+palaeography/WwM1S
+palaeolithic
+palaeontologist/S
+palaeontology/wMS
+Palaeozoic
+palanquin/MS
+palatability/M
+palatable/P
+palatal/QS
+palate/MgSo
+palatial/Y
+palatinate/MS
+palatine/S
+Palau/M
+Palauan
+palaver/SMd
+pale/IGSD
+paleface/SM
+Paleisheuwel
+palely
+paleness/S
+Paleocene
+Paleozoic
+paler/I
+Palermo/M
+palest
+Palestine/M
+Palestinian/S
+Palestrina/M
+palette/MS
+palfrey/MS
+Pali
+Palime
+palimpsest/MS
+palindrome/SM
+palindromic
+paling/M
+palisade/SMDG
+palish
+pall-bearers
+pall/SM
+palladia
+Palladio/M
+palladium/M
+pallbearer/MS
+pallet/Q-8MqS
+palliate/SGvDNVn
+palliation/M
+palliative/S
+pallid/YP
+pallidness/S
+pallor/MS
+palm/3ZMSDG
+palmate
+palmer/M
+Palmerton
+palmetto/MS
+Palmiet
+Palmietfontein
+Palmietvlei
+palmist/y
+palmistry/MS
+Palmlands
+Palmolive/M
+Palmridge
+Palms
+palmtop/S
+Palmview
+palmy/3T
+Palmyra/M
+Palo/M
+palomino/SM
+palooka
+palpable/YI
+palpably/I
+palpate/SNGDn
+palpation/M
+palpitate/DGSNn
+palpitation/M
+pals/Z
+palsy/SDMG
+paltriness/S
+paltry/TP
+paludal
+Pam/M
+Pambili
+pamby
+Pamela/M
+Pampanga
+pampas/M
+pamper/Sd
+pamperer/M
+pamphlet/SM
+pamphleteer/GSDM
+Pampierstad
+pampoen
+pan-African
+pan-Africanism
+pan-Africanist
+pan-European
+pan/GWDMS
+panacea/SM
+panache/SM
+Panama/M
+panama/S
+Panamanian/S
+Panarottis
+Panasonic/M
+pancake/MSDG
+panchromatic
+Pancras
+pancreas/SM
+pancreatic
+panda/MS
+pandemic/S
+pandemonium/MS
+pander/dS
+panderer/S
+Pandora/M
+pane/SDM
+panegyric/SM
+panel's
+panel/IDSG
+panelling/MS
+panellise/nGDS
+panellist/MS
+panellize/nSNDG
+pang/MS
+Panga
+panga
+Pangasinan
+pangolin/M
+panic-stricken
+panic/DMGSZ
+panicky/T
+panier's
+Panis
+Panjabi
+panjandrum/M
+Pankop
+panky
+Panmure
+pannekoek
+pannier/SM
+panoply/DSM
+Panorama
+panorama/MS
+panoramic
+panpipes
+pans/Z
+PanSALB
+Pansig
+pansy/SM
+pant/SGD
+Pantaloon/M
+pantaloons
+pantechnicon
+pantheism/SM
+pantheist/WS
+pantheon/MS
+panther/MS
+panties
+pantihose
+pantiled
+pantiles
+pantiliner
+pantograph/SM
+pantomime/S3DGM
+pantomimic
+pantry/MS
+pants/f
+Panza/M
+panzer
+Paola/M
+Paoli/M
+Paolo/M
+pap/3rMo
+papa/MS
+papacy/MS
+papal
+paparazzi
+papaw/MS
+papaya/SM
+papbroek
+Papeete/M
+paper-boy/SM
+paper-clip/MS
+paper-girl/MS
+paper/rpd2Z
+paperback/SM
+papered/A
+Paperfish
+paperhanger/MS
+paperhanging/SM
+Papermouth
+papers/A
+paperweight/MS
+paperwork/MS
+papery/P
+Papiamento
+papilla/yM
+papillae
+papist
+Papkuilsfontein
+papoose/SM
+paprika/MS
+Papua/M
+Papuan-Australian
+papyri
+papyrus/M
+par/dDZG7S
+para/SM
+Parabat
+parable/MS
+parabola/SWM
+paraboloid/SM
+paraboloidal/M
+paracetamol/M
+parachute/SG3DM
+parachuter/M
+parade/RSGMD
+paradigm/MS
+paradigmatic
+paradisal
+Paradise
+paradise/MSw
+paradox/S1MwW
+paradoxical/P
+Paradyskloof
+Paradysstrand
+paraffin/MS
+paragliding
+paragon/SM
+paragraph/MGSD
+paragrapher/M
+Paraguay/M
+Paraguayan/S
+parakeet/SM
+paralegals
+paralinguistic
+parallax/MS
+parallel/S
+paralleled/U
+parallelepiped/MS
+paralleling
+parallelism/MS
+parallelogram/SM
+paralyse/RhSWDGk
+paralysis/M
+paralytic/YS
+paramagnet/WM
+paramagnetism
+Paramaribo/M
+Paramecia
+Paramecium/M
+paramedic/SM
+paramedical/S
+parameter/1pWMS
+parametrise/BDnSG
+parametrize/BSNDGn
+paramilitary/S
+paramoecia
+paramoecium/M
+paramount
+paramour/SM
+paranoia/SM
+paranoiac/S
+paranoid
+paranormal/YS
+parapet/MS
+paraphernalia
+paraphrase/GMDS
+paraphraser/M
+paraplegia/MS
+paraplegic/S
+paraprofessional/SM
+parapsychologist/S
+parapsychology/SM
+paraquat/S
+parasite/Sw1MW
+parasitic/S
+parasitism/MS
+parasitologist/M
+parasitology/M
+parasol/MS
+parastatal/S
+parasympathetic/S
+parathion/MS
+parathyroid/S
+paratroop/RS
+paratyphoid/S
+parboil/SDG
+PARC/M
+parcel/MSDG
+parcelling/M
+parch/LDGS
+pardon/7rdSgl
+pardonable/P
+pardonably/U
+pardoned/U
+pare/FDGKS
+paregoric/SM
+parent/oDJMGS
+parentage/SM
+parental
+parenteral
+parentheses
+parenthesis/M
+parenthesise/D
+parenthesize/D
+parenthetic/Y
+parenthetical
+parenthood/MS
+parer/S
+pares/S
+paresis/M
+parfait/SM
+pariah/MS
+parietal/S
+parimutuel/S
+paring/MS
+Paris/M
+parish/MS
+parishioner/MS
+Parisian/S
+parity/ESM
+Park
+park/ZSMDG
+parka/MS
+Parkdene
+Parkdrive
+Parker/M
+Parkgate
+Parkhill
+Parkhurst
+parking/M
+parkland/M
+Parklands
+Parkmore
+Parkrand
+Parkridge
+Parkside
+Parktown
+Parkvale
+Parkview
+Parkville
+parkway/SM
+Parkwood
+parky/T
+parlance/SM
+parley/GSMD
+Parliament
+parliament/SM
+parliamentarian/SM
+parliamentary/U
+Parlock
+parlour/MS
+parlourmaid
+parlous
+parmigiana
+parochial/Y
+parochialism/MS
+parochiality
+parody/DS3GM
+parole/DGMS
+parolee/MS
+Parow
+paroxysm/SM
+paroxysmal
+parquet/MdSy
+parquetry/SM
+parrakeet's
+parricidal
+parricide/MS
+parrot/MdS
+parrotlike
+parry/SDG
+pars/RDGSJ
+parse
+parsec/MS
+parsed/U
+parsimonious/Y
+parsimony/SM
+parsley/MS
+parsnip/MS
+parson/SM
+parsonage/SM
+part's/f
+part-song
+part-time
+part-timer/S
+part/ISfC
+partake/RSG
+partaken
+parted/CI
+parter/S
+parterre/SM
+parthenogeneses
+parthenogenesis/M
+Parthenon/M
+partial/IY
+partiality/SIM
+partials
+participant/MS
+participate/DSVNGny
+participation/M
+participator/S
+participial/Y
+participle/MS
+particle/MS
+particleboard/S
+particoloured
+particular/Q8YS
+particularism
+particularistic
+particularity/SM
+particulate/S
+partier
+parting/SM
+partisan/SM
+partisanship/SM
+partition's
+partition/GASD
+partitioner/M
+partitive/S
+partizan's
+partly
+partner/SMd
+partnership/SM
+partook
+partridge/MS
+parturition/MS
+partway
+party/GDMS
+parvenu/MS
+Parys
+pas/DRJG
+Pascal
+pascal/MS
+paschal/S
+pasha/SM
+pass/FcDGS
+passable/IY
+passage/DSGM
+passageway/MS
+passband
+passbook/MS
+passé/M
+passée
+passenger-mile
+passenger/MS
+passer-by
+passers-by
+passes/If
+passim
+passing/Y
+passion's/F
+passion/IS
+passionate/FYE
+passionflower/SM
+passionless
+passivated
+passive/IY
+passiveness/SI
+passives
+passivity/IS
+passkey/MS
+passmark
+passover
+passport/MS
+password/DMS
+past/SAM
+pasta/MS
+paste-up
+paste/SMGDZ
+pasteboard/MS
+pastel/SM
+paster
+pastern/MS
+pasteurise/RnSDG
+pasteurised/U
+pasteurize/DRNGnS
+pasteurized/U
+pastiche/MS
+pastille/MS
+pastime/SM
+pastiness/S
+pastis
+pastor/MdS
+pastoral/SY
+pastoralism
+pastorate/SM
+pastrami/SM
+pastry/MS
+pasturage/MS
+pasture/GMDS
+pasturer/M
+pasty/TSP
+pat/SGMZD
+Patamedi
+Patankala
+patapata
+patch's
+patch/EDSG
+patchable
+patcher/EM
+patchiness/S
+patchwork/MRS
+patchy/TY
+pâté/M
+pate/MS
+Patel
+patella/M
+patellae
+patellar
+patellate
+paten/M
+patency
+Patensie
+patent/M7YSDG
+patentee/MS
+patentor/MS
+pater/M
+paterfamilias/SM
+paternal/Y
+paternalism/SM
+paternalist/W
+paternity/SM
+Paternoster
+paternoster/SM
+Paterson
+path-loss
+path/pMS
+patha-patha
+pathetic/Y
+pathfinder/MS
+pathlessness
+pathname/MS
+pathogen/WMS
+pathogenesis/M
+pathology/w13SM
+pathos/MS
+pathway/MS
+patience/SIM
+patient's/e
+patient/IY
+patienter
+patientest
+patients/e
+patina/MS
+patio/MS
+patisserie
+Patna
+patois/M
+patriarch/MZ
+patriarchal
+patriarchate/MS
+patriarchs
+patriarchy/MS
+Patrice
+patrician/MS
+patricide/MS
+Patrick/M
+patrimonial
+patrimony/MS
+patriot/FMS
+patriotic/Y
+patriotism/SM
+patristic/S
+patrol/DMGS
+patron/Qs98-qYMS
+patronage/MS
+patroness/S
+patronise/k
+patronize/k
+patronizing/M
+patronymic/YS
+patroon/MS
+patten/SM
+patter/dS
+patterer/M
+pattern/pDGMS
+Patterson/M
+patty/SM
+paucity/SM
+Paul/M
+Pauline
+Paulpietersburg
+Paulshoek
+Paulshof
+Paulusweg
+paunch/DSZ2MG
+paunchy/TP
+pauper/QSMd
+pauperism/SM
+pause/SGD
+pave/ADGS
+paved/U
+pavement/SM
+paver/M
+Pavilion
+pavilion/MSGD
+paving/MS
+paw/DMGS
+PAWC
+pawl/MS
+pawn/SMDG
+pawnbroker/MS
+pawnbroking/S
+pawner/M
+pawnshop/SM
+pawpaw/M
+paxes
+pay-as-you-earn
+pay-bed
+pay-claim
+pay-off/MS
+pay-packet/MS
+pay/cGSLKAf
+payable/S
+payback/S
+PAYE
+payee/SM
+payer/MS
+Payipini
+payload/MS
+paymaster/MS
+Payne
+Payneville
+payout/S
+PayPal/M
+payphone/S
+payroll/MS
+payslip/S
+Pb
+PBX
+pc
+PC/M
+PCB
+PCI
+pcm
+PCs
+pd
+Pde
+PDP
+PDQ
+PDSA
+PE
+pea-green
+pea/SM
+peace/6ljM
+peaceable/P
+peaceful/T
+peacefulness/S
+Peacehaven
+peacekeepers
+peacekeeping
+peacemaker/MS
+peacemaking/M
+peacetime/MS
+Peacevale
+peach's
+peach/IDSG
+peachy/T
+peacock/MS
+peafowl/MS
+peahen/MS
+peak/iZMD2SG
+peaky/P
+peal's
+peal/DASG
+peanut/MS
+pear/SMY
+pearl/MSDG
+pearler/M
+Pearlfish
+pearly/ST
+Pearson/M
+Pearston
+peartrees
+peasant/SM
+peasanthood
+peasantry/SM
+peashooter/SM
+peat/MZS
+peats/A
+peaty/T
+pebble/MSYDG
+pebbling/M
+pebbly/T
+pecan/MS
+peccadillo/M
+peccadilloes
+peccary/SM
+peck/MDRSG
+pectic
+pectin/MS
+pectoral/S
+peculate/GNnSD
+peculator/S
+peculiar/YS
+peculiarity/SM
+pecuniary
+pedagogic/S
+pedagogics/M
+pedagogue/SM
+pedagogy/Ww1SM
+pedal/RGMDS
+pedant/SWM1
+pedantry/SM
+Peddie
+peddle/SGD
+pederast/MSZ
+pederasty/SM
+pedestal/GDMS
+pedestrian/Q-8MqS
+pedicab/SM
+pedicure/3MDSG
+pedigree/SM
+pediment/IMS
+pedimented
+pedlar/MS
+pedology
+pedometer/MS
+Pedro
+peduncle/MS
+pee/GRS
+peek/GSD
+peekaboo/SM
+peel/DGJS
+peeled/U
+peeler/M
+peeling/M
+Peelton
+peen/GSMD
+peep-hole/SM
+peep-show/MS
+peep/RZDSG
+peer/FGSMD
+peerage/MS
+peeress/SM
+peerless/PY
+peeve/DSMG
+peevers/M
+peevish/YP
+peevishness/S
+peewee/S
+Pefferville
+peg/DSMG
+pegboard/MS
+peignoir/MS
+pejorative/Y
+Pekalmy
+peke/MS
+Peking/M
+pekoe/MS
+pelagic
+Pelandaba
+Pele
+pelf/M
+Pelham
+pelican/MS
+pelile
+pell
+pell-mell
+Pella
+pellagra/MS
+pellet/MdS
+Pellissier
+Pellsrus
+pellucid
+pelmet/S
+pelt/DGS
+pelter/M
+pelvic/S
+pelvis/MS
+Pembroke/M
+Pembrokeshire
+pemmican/MS
+pen-and-ink
+pen-name/S
+pen/oMGSD
+penal/Q8-
+penalisation
+penalization/M
+penalty/MS
+penance/GMDS
+Penberthy
+pence/M
+penchant/MS
+pencil/DGSMJ
+pendant/SCM
+pendent/C
+pending
+Pendle
+pendulous
+pendulum/MS
+Penelope
+penetrability/IMS
+penetrable/I
+penetrate/BSnvkNGuDV
+penetration/M
+penetrative/P
+penetrator/MS
+Penford
+Penge
+penguin/MS
+Penh/M
+Penhill
+penicillin/SM
+penile
+Peninapark
+peninsula/SM
+peninsular
+penis/MS
+penitence/SIM
+penitent/IYS
+penitential/YS
+penknife/M
+penknives
+penlight/MS
+Penlyn
+penman/M
+penmanship/MS
+penmen/M
+Penn
+pennant/MS
+Pennine/S
+Pennington
+pennon/MS
+Pennsylvania
+penny-farthing
+penny-pinching
+penny/MSp
+pennyroyal
+pennyweight/MS
+pennyworth/M
+penology/3SM
+Penrith
+pens/NuXVv
+pension/MG7DR
+pensiveness/S
+pent-up
+pent/A
+pentacle/SM
+pentagon/SMo
+pentagonal/S
+Pentagonpark
+pentagram/MS
+pentameter/SM
+pentasyllabic
+Pentateuch
+pentathlete/S
+pentathlon/MS
+pentatonic
+pentecostal
+penthouse/MS
+Pentium
+pentium
+Pentrich
+penultimate/SY
+penumbra/MS
+penumbrae
+penurious/PY
+penuriousness/S
+penury/SM
+Penvaan
+Penzance/M
+peon/SMZ
+peonage/MS
+peony/SM
+people/GMSD
+peopled/U
+pep/RSMDG2Z
+Pepcor
+peperoni
+pepper/Zd
+peppercorn/SM
+pepperer/M
+peppergrass/M
+peppermint/MS
+pepperoni/S
+peppiness/S
+peppy/TP
+pepsin/SM
+peptic/S
+peptide/MS
+per/y
+peradventure/S
+perambulate/GDSNn
+perambulation/M
+perambulator/MS
+percale/MS
+perceivable/I
+perceive/GRSlD
+perceived/Ua
+perceives/a
+Percelia
+percent/M
+percentage/SM
+percentile/MS
+percept/VuMxvSob
+perceptibility/I
+perceptible/IY
+perceptibly/I
+perception/MS
+perceptive/P
+perceptiveness/S
+perceptual
+Perch
+perch/DGMS
+percha
+perchance
+perchlorate/M
+perchlorination
+percipience/SM
+percipient/S
+percolate/DSGNn
+percolation/M
+percolator/MS
+percuss/XSNVvDGu
+percussion's/A
+percussion/3M
+percussionist
+percussions/A
+percussive/P
+percutaneous/Y
+Percy
+Perdeberg
+Perdekop
+perdition/SM
+perdurable
+peregrinate/DSG
+peregrination/M
+peregrine/nSN
+peremptoriness
+peremptory/Y
+perennial/SY
+pères/F
+perestroika/S
+perfect/TuSDbVPGvY
+perfecter/M
+perfectibility/MS
+perfection/IMS
+perfectionism/MS
+perfectionist/SM
+perfective/P
+perfectly/I
+perfectness/IS
+perfidious/PY
+perfidy/SM
+perforate/NnDGS
+perforation/M
+perforce
+perform/GRDS7
+performance/SM
+performed/fUe
+performing/e
+performs/e
+perfume/RGMDS
+perfumer/Z
+perfumery/SM
+perfunctory/PY
+perfused
+perfusion/M
+pergola/SM
+perhaps
+periastron
+pericardia
+pericardium/M
+Pericles
+perigee/SM
+periglacial
+perihelia
+perihelion/M
+peril's
+peril/IDGS
+perilous/YP
+perimeter/MS
+perinatal
+perineum/M
+period/wSWM1
+periodical/SM
+periodicity/SM
+periodontal/Y
+periodontics/M
+periodontist/S
+peripatetic/S
+peripheral/SY
+periphery/SM
+periphrases
+periphrasis/M
+periphrastic
+periscope/SM
+perish/7RDSGk
+perishable's
+perishable/IS
+peristalses
+peristalsis/M
+peristaltic
+peristyle/SM
+peritoneal
+peritoneum/SM
+peritonitis/SM
+periwig/MS
+periwinkle/MS
+perjure/ZRDSG
+perjury/MS
+perk/DZSz2G
+perkiness/S
+perky/T
+Perl
+perlemoen
+Perm
+perm/GMSD
+permafrost/MS
+permalloy/M
+permanence/ISM
+permanency/MS
+permanent/IY
+permanentness/M
+permanganate
+permeability/SIM
+permeable/IP
+permeate/DNnBSG
+permissibility/M
+permissible/PY
+permission/M
+permissive/PY
+permissiveness/S
+permit/XGNMSD
+permittivity
+permutation/M
+permute/NGDSn
+pernicious/YP
+perniciousness/S
+peroration/SM
+peroxidase/M
+peroxide/MSDG
+perpendicular/YS
+perpendicularity/MS
+perpetrate/SGDnN
+perpetration/M
+perpetrator/MS
+perpetual/YS
+perpetuate/NnSDG
+perpetuation/M
+perpetuity/SM
+perplex/GDhS
+perplexity/MS
+perquisite/SM
+Perreira
+Perridgevale
+persecute/GyDS
+persecution/MS
+persecutor/SM
+Perseverance
+perseverance/SM
+persevere/SDGk
+Persia/M
+Persian/MS
+Persida
+persiflage/SM
+persimmon/MS
+persist/DGS
+persistence/MS
+persistent/Y
+persister
+Perslyf-moddervis
+person-to-person
+person/7SoM
+persona/M
+personable/P
+personae
+personage/SM
+personal/Q-8q
+personalise/CnSGD
+personalities
+personality/IM
+personalize/CNGSn
+personally/I
+personalty/MS
+personification/M
+personifier/M
+personify/NDSGn
+personnel/SM
+perspective/YMS
+perspex
+perspicacious/YP
+perspicacity/S
+perspicuity/SM
+perspicuous/PY
+perspiration/M
+perspire/GNDnS
+persuadable
+persuade/RGSXvNVuD
+persuasion/M
+persuasive/U
+persuasiveness/SM
+pert/TYP
+pertain/DGS
+Perth
+Perthshire/M
+pertinacious/PY
+pertinacity/MS
+pertinence/IS
+pertinent/YI
+pertness/S
+perturb/GnDS
+perturbation/M
+perturbed/U
+pertussis/M
+Peru/M
+peruke/MS
+perusal/MS
+peruse/SDRG
+Peruvian/S
+pervade/NuVDSvG
+pervasion/M
+pervasive/P
+pervasiveness/S
+perverse/PNXYV
+perverseness/S
+perversion/M
+perversity/MS
+pervert/hSDGi
+perverter/M
+Pescodia
+peseta/MS
+peskiness/S
+pesky/TY
+peso/MS
+pessary/S
+pessimal/Y
+pessimism/MS
+pessimist/MW1S
+pest/MS
+pester/Sd
+pesticide/MS
+pestiferous
+pestilence/MS
+pestilent/Y
+pestilential/Y
+pestle/SDGM
+pesto/S
+pet/GRDMS
+petal/DSM
+petard/SM
+Pete
+peter/dS
+Peterborough/M
+Peterhead/M
+Peterhouse
+Petersfield
+Petervale
+pethidine/M
+petiole/SM
+Petit
+petite/PS
+petition's/FA
+petition/MRSDG
+petitions/AF
+petrel/MS
+Petri
+petrifaction/SM
+petrify/NDSG
+petrochemical/SM
+petrodollar/MS
+petroglyph/M
+petrographic
+petrographical
+petrol/SM
+petroleum/M
+petrology/wM3S
+Petronas
+Petronet
+Petrusburg
+Petrusville
+Petsana
+Petsvale
+petticoat/SMD
+pettifog/RGSD
+pettiness/S
+pettish/YP
+petty/STY
+petulance/SM
+petulant/Y
+petunia/SM
+pew/MS
+pewee/SM
+pewit/SM
+pewter/MS
+pewterer
+peyote/MS
+PFC
+pfennig/MS
+PG
+Ph.D.
+pH/M
+Phadi
+phaeton/MS
+phage/M
+phagocyte/SM
+Phahameng
+Phakamisa
+Phalaborwa
+Phalala
+phalanger/MS
+phalanges
+phalanx/SM
+phalli
+phallus/WSM
+Phambela
+Phanekeni
+Phangweni
+phantasm/SM
+phantasmagoria/MS
+phantasmal
+phantasy's
+phantom/MS
+Phaphamani
+Phaphankulu
+Pharaoh/S
+Pharare
+Pharisaic
+Pharisaical
+Pharisaism
+Pharisee/S
+pharmaceutical/YS
+pharmaceutics
+pharmacology/w1S3M
+pharmacopoeia/MS
+pharmacy/3SM
+pharyngeal/S
+pharynges
+pharyngitides
+pharyngitis/M
+pharynx/M
+phase/RDMSG
+phaseout/S
+Phash-maloka
+Phatantsoane
+Phathani
+Phatsima
+pheasant/MS
+Phelandaba
+Phelindaba
+Phelps
+phenacetin/MS
+phenol/SMW
+phenolphthalein/M
+phenomena/oM
+phenomenal
+phenomenology/Mw1S
+phenomenon/MS
+phenotype/SM
+phenyl/M
+phenylalanine/M
+pheromone/MS
+Phetole
+phew/S
+phi/SM
+phial/MS
+Philadelphia/M
+philander/drS
+philanthropist/MS
+philanthropy/1MWS
+philately/MW3S
+Philemon
+philharmonic/S
+Philip/MS
+Philippi
+Philippians
+philippic/SM
+Philippine/S
+Philippines/M
+Philippolis
+Philipstown
+Philipsville
+philistine/S
+philistinism/S
+Phillipadale
+Phillips
+philodendron/SM
+philology/w13MS
+philosopher/MS
+philosophy/s8w1Q9WSM
+philtre/MS
+Phiphany
+Phiphidi
+Phiri
+Phirima
+Phiring
+Phirintsho
+Phiritona
+Phisantekraal
+phisher/MS
+phishing
+Phiva
+phlebitides
+phlebitis/M
+phlebotomy
+phlegm/SM
+phlegmatic/Y
+phloem/SM
+phlogiston
+phlox/M
+Phnom
+phobia/SM
+phobic/S
+phoebe/MS
+Phoenician
+Phoenix
+phoenix/SM
+Phoffu
+Phofung
+Phohlonya
+Phokeng
+Phokoane
+Phola/mloshi
+Pholile
+Phomalong
+Phomolong
+phone-in/S
+phone/MDZ1GSW
+phoneme/MS1
+phonemic/S
+phonemics/M
+phonetic/SY
+phonetician/MS
+phoneticist
+phonetics/M
+phoney
+phonic/S
+phonics/M
+phoniness/S
+phonograph/MSW
+phonology/w1S3M
+phonon/M
+phony/SPT
+phooey/S
+phosphatase/M
+phosphate/MS
+phosphide/M
+phosphine/M
+phosphor/MSW
+phosphoresce
+phosphorescence/MS
+phosphorescent/Y
+phosphorous
+phosphorus/M
+photo/MS
+photocell/MS
+photochemical/Y
+photochemistry/M
+photocopy/RSMGD
+photoelectric/Y
+photoelectronic
+photoelectrons
+photoengraved
+photoengraver/SM
+photoengraving/MS
+photofinishing/MS
+photogenic/Y
+photograph/RWMGDSZ1
+photographed/A
+photographs/A
+photography/MS
+photojournalism/MS
+photojournalist/SM
+photolysis/M
+photolytic
+photometer/W1MS
+photometry/M
+photomicrograph/MZ
+photomicrography/M
+photomultiplier/M
+photon/MS
+photorealism
+photoreceptor
+photosensitive
+photosphere/M
+photostatic
+photosyntheses
+photosynthesis/QdSM
+photosynthetic/Y
+phototypesetter
+phototypesetting/M
+photovoltaic
+Photsaneng
+PHP
+phpNuke
+phrasal
+phrase/MSGJD
+phrasebook
+phrased/A
+phrasemaking
+phraseology/SM
+phrases/A
+phrasing's
+phrasing/A
+phrenology/13wMS
+Phumelela
+Phumla
+Phumlani
+Phumula
+Phungashe
+Phuthaditjhaba
+Phuthanang
+phyla/M
+phylactery/MS
+phylogenetic
+phylogeny/MS
+phylum/M
+phys/w1
+physic/M3GDS
+physical/S
+physicality/M
+physicalness
+physician/SM
+physicist
+physiochemical
+physiognomy/SM
+physiography/MS
+physiology/WwS31M
+physiotherapist/MS
+physiotherapy/SM
+physique/MS
+phytoplankton/M
+pi/RD
+pianism/M
+pianissimo/S
+pianist/W
+piano/M3S
+pianoforte/MS
+pianola
+piastre/SM
+piazza/MS
+pibroch/M
+pibrochs
+pica/MS
+picador/MS
+Picarel
+picaresque
+piccalilli/SM
+piccanin/S
+piccolo/SM
+pick-me-up/S
+pick-up/MS
+pick/RDJZGS
+pickaxe/MS
+picked/U
+pickerel/MS
+Pickering
+picket/rMdS
+pickle/MSDG
+pickoff/S
+pickpocket/SM
+pickpocketing
+picky/T
+picnic/GSMRD
+pico
+picofarad/MS
+picojoule
+Picong
+picoseconds
+picot/MS
+pictogram
+pictograph/MWS
+pictorial/YPS
+picture-writing
+picture/DSGM
+picturesque/PY
+picturesqueness/S
+piddle/SYDG
+Pidgin
+pidgin/MS
+pie/MS
+piebald/S
+piece/SGDM
+piecemeal
+piecer/M
+piecewise
+piecework/MRS
+piedmont
+pieing
+Pienaar
+Pienaarsdorp
+pieperig
+Pier
+pierce/SkJRDG
+Pierneefpark
+Pierneefrant
+Pierre/M
+piet-my-vrou/S
+Pietermaritzburg
+Pietersburg
+piety/IMS
+piezoelectric
+piezoelectricity/M
+piffle/MSDG
+pig-headed
+pig-sticker
+pig/SMDLZG
+pigeon-breast/D
+pigeon-fancier/MS
+pigeon-hole/SMGD
+pigeon-toed
+pigeon/SMy
+pigeonry/S
+piggery/M
+piggish/PY
+piggishness/S
+piggledy
+Piggy
+piggy/TMS
+piggyback/GSD
+pigheaded/Y
+pigheadedness/S
+piglet/SM
+pigment/NnDG
+pigmentation/M
+pigskin/MS
+pigsty/SM
+pigswill/M
+pigtail/MDS
+pike/RSDGM
+pikeman
+pikemen
+pikestaff/SM
+Piketberg
+pikstel
+pilaf/MS
+pilaster/MS
+pilates
+pilau's
+pilchard/MS
+pile's
+pile-up
+pile/GFDS
+piledriver
+piledriving
+pilers/F
+pileup/MS
+pilfer/rdS
+pilferage/MS
+pilgrim/MS
+pilgrimage/DGMS
+Pilgrimsrus
+piling/MS
+pill/SM
+pillage/DRSG
+pillar-box
+pillar/SM
+pillared
+pillbox/MS
+pillion/MS
+pillory/SDMG
+pillow/DSMG
+pillowcase/SM
+pillowslip/S
+pilot/SMd
+Pilotfish
+pilothouse/MS
+piloting/M
+pimento/SM
+pimiento/MS
+Pimms
+pimp/DYSGM
+pimpernel/MS
+pimple/MDS
+pimplike
+pimply/MT
+Pimville
+pin-up/MS
+pin-wheel/MS
+pin/MDGSdJ
+pinafore/MS
+piñata/S
+Pinati
+pinball/SM
+pince
+pince-nez
+pincer/S
+pincered
+pinch/SDG
+pincher/M
+pincushion/MS
+Pindu
+pine's
+pine/ASGD
+pineal
+pineapple/SM
+Pinecraft
+Pinegowrie
+Pinegrove
+Pinehurst
+Pinelands
+Pinetown
+Pineview
+Pinewood
+pinfeather/MS
+ping's
+ping-pong
+ping/GID
+pinger
+pinhead/iDSM
+pinhole/MS
+pinion/GDMS
+pink/MDYZPSGT
+pinkeye/MS
+pinkie
+pinkish
+pinkishness
+pinkness/S
+Pinky
+pinky/S
+pinna
+pinnace/MS
+pinnacle/DSMG
+pinnae
+pinnate
+pinned/f
+pinning/fS
+piñon/S
+pinotage
+pinpoint/SDG
+pinprick/GMDS
+pins/fU
+pinstripe/MDS
+pint/SM
+Pintail
+pintail/SM
+piny/T
+pion/M
+Pioneer
+pioneer/MDGS
+pious/IPY
+piousness/IS
+pip/rGdkDMS
+Pipa
+pipe/SM
+Pipehorse
+pipeline/MDS
+pipette/GMDS
+pipework
+piping/M
+pipit/MS
+pippin/MS
+pipsqueak/MS
+piquancy/SM
+piquant/YP
+pique/MSDG
+piracy/SM
+piragua
+piranha/SM
+pirate/MwDS1G
+Pirie
+pirouette/MDSG
+Pirowville
+Pisa/M
+piscatorial
+Pisces
+pismire/SM
+piss/SGD
+pisser
+pistachio/SM
+piste/MS
+pistil/MS
+pistillate
+pistol/DMSG
+pistole/M
+pistoleers
+piston/SM
+pit-a-pat
+pit/GMSD
+pita/M
+Pitcairn
+pitch-and-toss
+pitch-dark
+pitch/RDSG
+pitchblende/MS
+pitchfork/MGSD
+pitching/M
+pitchstone/M
+piteous/PY
+piteousness/S
+Pitermaritzburg
+pitfall/MS
+pith/MDz2ZGS
+Pithead
+pithead
+pithiness/S
+pithy/PT
+pitiable/P
+pitiful/TP
+pitiless/PY
+pitilessness/S
+Pitinyana
+pitman/M
+piton/SM
+pittance/MS
+Pittsburgh
+pituitary/MS
+pity/SMR6j7DplGk
+pivot/SodM
+pivotal
+pivoting/M
+pix
+pixel/MS
+pixie/MS
+pixmap/SM
+pizazz/S
+pizza/SM
+pizzeria/SM
+pizzicati
+pizzicato
+Pk
+pl.
+plaas
+plaasjapie
+placard/DGMS
+placate/SDVyGNn
+placater
+place's
+place/ELSGaDA
+placeable/A
+placebo/SM
+placed/U
+placekick/GSD
+placeless/Y
+placemen
+placement/eSM
+placenta/MS
+placentae
+placental/S
+placer/EMS
+placid/YP
+placidity/MS
+placing/S
+placket/MS
+plagiarise/SRGD
+plagiarism/MS
+plagiarist/MS
+plagiarize/RSDG
+plague/MSGD
+plaguer/M
+plaice/M
+plaid/DMS
+plain-clothes
+plain-spoken
+plain/FGSD
+plainchant
+plainer/F
+plainest
+plainly
+plainness/SM
+Plains
+plains/m
+plainsong/MS
+plaint/FMS
+plaintiff/MS
+plaintive/PY
+plait/SDMG
+plaiter
+plaiting/M
+plak
+Plakkerskamp
+plakkies
+plan/MdSrDRG
+planar
+planarity
+plane/MS
+planeload
+planet/MS
+planetarium/SM
+planetary
+planetesimal/SM
+planetoid/SM
+plangency/S
+plangent
+plank/JGMDS
+planking/M
+plankton/MS
+planned/KU
+planning/A
+planoconcave
+planoconvex
+plant's
+plant/INDSG4n
+plantain/MS
+plantar
+Plantation
+plantation/IM
+planted/A
+planter/IM
+planters
+planting/S
+plantlike
+plants/A
+plaque/MS
+plash/MZSGD
+plasm/M
+plasma/MS
+plasmid/S
+plaster/MrSd
+plasterboard/SM
+plastering/M
+plasterwork/M
+plastic/Q8YsM9S
+plasticine
+plasticity/MS
+plat/dRr
+platanna
+plate/6MSJ
+plateau/DGSM
+plateful/S
+platelet/SM
+platen/MS
+platform/MS
+plating/M
+platinum/QM
+platitude/SM
+platitudinous/Y
+Plato/M
+platonic
+platoon/GDMS
+Platrand
+platsak
+Plattekloof
+platteland
+plattelanders
+Platwal
+Platyhelminthes
+platypus/SM
+plaudit/MS
+plausibility/IS
+plausible/YI
+plausibleness
+plausibly/I
+play-act/JSDG
+play-acting/M
+play-actor
+play-off/S
+play-play
+play/ERDGS7
+playability
+playable/U
+playback/SM
+playbill/MS
+playboy/SM
+played/caUeAf
+player-manager
+player-piano/S
+playfellow/S
+playful/PY
+playfulness/S
+playgirl/MS
+playgoer/MS
+playground/SM
+playgroup/S
+playhouse/SM
+playing/acfe
+playings
+playlet/S
+playlist/S
+playmate/MS
+playpen/MS
+playroom/SM
+plays/cAefa
+playschool/S
+PlayStation
+plaything/MS
+playtime/MS
+playwright/MS
+playwriting/M
+plaza/MS
+PLC
+plea/MS
+plead/DGkRJS
+pleading/M
+pleas/SkGJD
+pleasant/TPY
+pleasantly/U
+pleasantness/S
+pleasantry/SM
+please/EGDS
+pleaser/M
+pleasing/P
+pleasurable/PY
+pleasure/SEM
+pleasured
+pleasuring
+pleat/MGDS
+pleater/M
+pleb/SZ
+plebeian/S
+plebiscitary
+plebiscite/MS
+plectra
+plectrum/MS
+pledge/MSGD
+pledger/M
+plenary/S
+plenipotentiary/S
+plenitude/SM
+plenteous/PY
+plentiful/P
+plenty/6Mj
+plenum/M
+pleonasm/SM
+Plessislaer
+plethora/MS
+pleura/M
+pleurae
+pleural
+pleurisy/SM
+plexus/SM
+pliability/SM
+pliable/P
+pliancy/SM
+pliant/YP
+pliantly/F
+plication/AMFI
+pliers/F
+plight/GMDS
+plighter
+plimsolls
+plinth/SM
+PLO
+plod/DRGJSV
+plodding/Y
+Plone
+Plooysburg
+plop/DSGM
+plosive/I
+plot/MDRJSG
+plotted/A
+plough/mRGSMD
+ploughed/U
+ploughshare/SM
+plover/MS
+ploy's
+ploy/CS
+pluck/DzS2ZG
+plucker/M
+pluckiness/S
+plucky/TP
+plug's
+plug-in
+plug/GUDS
+pluggable
+plughole
+plum/ZMS
+plumage/SDM
+plumb/GRJSMD
+plumbago/M
+plumbed/U
+plumbing/M
+plume/MSp
+plumelike
+plumery
+plummet/dS
+plummy/T
+plump/TYZ
+plumper/M
+plumpish
+plumpness/S
+Plumstead
+plunder/Sd
+plunderer/S
+plunge/DRSG
+plunk/RGDS
+pluperfect/S
+plural/q89sQSY-
+pluralism/MS
+pluralist/SW
+plurality/SM
+pluralization/M
+plus/S
+plush/MTYPZS2
+plushness/S
+plushy/T
+Pluto/M
+plutocracy/MS
+plutocrat/WMS
+plutonium/M
+pluvial/S
+ply/FSINGAD
+Plymouth/M
+plywood/MS
+pm
+PM/M
+PMS
+pneumatic/YS
+pneumatics/M
+pneumonia/MS
+Pniel
+PO
+po-faced
+po/QY
+poach/DRSG
+pock/MDS
+pocket/dM6S
+pocketbook/MS
+pocketer/S
+pocketful/MS
+pocketing/M
+pocketknife/M
+pocketknives
+pockmark/MDSG
+pocus
+pod/DMSG
+podcast/GMRS
+podgy/PT
+podiatry/3SM
+Podiphatshwa
+podium/MS
+poegaai/D
+Poelong
+poem/MS
+poep
+poes
+poesy/MS
+poet/SMWw1y
+poetaster/SM
+poetess/SM
+poetic/S
+poeticalness
+poetics/M
+poetry/SM
+Pofadder
+pogo
+pogrom/MS
+poignancy/SM
+poignant/Y
+poikilothermic
+poinciana/MS
+poinsettia/MS
+Point
+point's
+point-blank
+point-duty
+point-of-sale
+point-to-point
+point/eGSD
+pointed/YP
+pointer/SM
+pointillism/MS
+pointillist/MS
+pointing/M
+pointless/PY
+pointlessness/S
+pointy/T
+poise/M
+poison/MdrS
+poisoning/SM
+poisonous/Y
+poisonousness
+poke/RGZSDy
+poker-face/D
+Pokwani
+poky/T
+Poland/M
+polar/Qq8Ss-
+polarimeter/MS
+polarimetry
+polariscope/M
+polarise/CnRGDS
+polarity/SM
+polarize/CDSGNn
+polarograph/Z
+polarography/M
+pole-axed
+pole-axes
+pole-vaulter
+pole-vaulting
+pole/SDM
+polecat/SM
+polemic/YS
+polemical
+polemicist/S
+polemics/M
+poler/M
+poleward/S
+police/DmS5ZMG
+policy-maker/S
+policy-making
+policy/SM
+policyholder/MS
+polio/MS
+poliomyelitides
+poliomyelitis/M
+Polish
+polish/RGSJD
+polished/U
+politburo/S
+polite/IWPY
+politeness/IS
+politer
+politesse/MS
+politest
+politic/Q8q-SDG
+politician/MS
+politicise/CSGD
+politicize/CDSG
+politicking/MS
+politicly/I
+politico/SM
+politics/M
+polity/SM1w
+polka/MDSG
+poll/GMSD
+pollack/MS
+pollen/MS
+poller
+pollinate/nDSGN
+pollination/M
+pollinator/SM
+Pollock/M
+Pollsmoor
+pollster/MS
+pollutant/MS
+pollute/RGSD
+polluted/U
+pollution/MS
+polo-neck
+polo/MS
+Polokong
+Polokwane
+polonaise/MS
+polonium/M
+Polopony
+poltergeist/SM
+poltroon/MS
+polyandrous
+polyandry/SM
+polyatomic
+polybutene/MS
+polycarbonate
+polychemicals
+polychrome/W
+polyclinic/MS
+polycrystalline
+polycyclic
+polyelectrolytes
+polyester/SM
+polyether/S
+polyethylene/MS
+polygamous/Y
+polygamy/SM3
+polyglot/S
+polygon/oSM
+polygonal
+polygraph/MDGS
+polygynous
+polyhedra
+polyhedral
+polyhedron/SM
+polyisobutylene
+polyisocyanates
+polymath/MS
+polymer/MQ-8qS
+polymerase/S
+polymeric
+polymorphic
+polymorphism/S
+polymorphous
+Polynesia/M
+polynomial/YMS
+polyp/MS
+polypeptide/S
+polyphony/MWS
+polyphosphate/S
+polypropylene/SM
+polysaccharides
+polystyrene/MS
+polysyllable/SWM
+polytechnic/MS
+polytheism/MS
+polytheist/MSW
+polythene/M
+polytonal/Y
+polytopes
+polyunsaturated
+polyunsaturates
+polyurethane/MS
+polyvinyl/M
+pomade/MGDS
+pomander/SM
+pomegranate/MS
+Pomeroy
+Pomfret
+pommel/SGMD
+Pomona
+pomp/MS
+pompadour/SMD
+Pompano
+pompano/SM
+Pompeni
+pompom/MS
+pomposity/SM
+pompous/Y
+pompousness/S
+Ponape
+ponce/M
+poncho/MS
+pond/DSMG
+ponder/rdS
+ponderous/YP
+ponderousness/S
+ponders/4
+pondokkie
+pondweed
+pone/MSZ
+pong/D
+pongee/MS
+Pongola
+poniard/MS
+Ponong
+pons/M
+pontiff/MS
+pontifical/YS
+pontificate/DnSGN
+Ponting/M
+pontoon/DGMS
+pony/SM
+ponytail/SM
+pooch/MS
+poodle/MS
+poof/MS
+pooh-pooh/D
+pooh/DSG
+pool/MDGS
+Poole/M
+poolside
+poop/MDSG
+poor-spirited
+poor/TPY
+poorhouse/MS
+poorness/S
+poort/S
+Poortje
+Poortview
+pootjie/S
+POP
+pop-up
+pop/RSMDGZ
+POP3
+popcorn/MS
+pope/MS
+popgun/MS
+popinjay/MS
+poplar/MS
+poplin/MS
+poppet/M
+poppy/MS
+poppycock/SM
+poppyseed
+populace/SM
+popular/Q-89qsY
+popularism
+popularities
+popularity/UM
+popularization/M
+populate/CSnGcDN
+populated/AUf
+populates/A
+populating/A
+population/MCc
+populism/S
+populist/MS
+populous/PY
+populousness/S
+Porbeagle
+porcelain/SM
+porch/MS
+porcine
+porcupine/MS
+Porcupinefish
+Porcupineray
+pore/SDG
+Porifera
+pork/MZRS
+Porky
+porky/ST
+porn/S
+porno/S
+pornographer/MS
+pornography/M1WS
+porosity/SM
+porous/PY
+porousness/S
+porphyritic
+porphyry/SM
+porpoise/MGDS
+porridge/SM
+porringer/SM
+port's/A
+Port-au-Prince/M
+Port-of-Spain/M
+port/CRISDA4G
+portability/S
+portable/SY
+portage/DSGM
+portal/MS
+portamento/M
+portcullis/MS
+ported/EF
+portend/GDS
+portent/MS
+portentous/YP
+porter/d
+porterage/M
+porterhouse/M
+Porterville
+portfolio/MS
+porthole/MS
+Portia
+portico/M
+porticoes
+portière/MS
+porting/FE
+portion/SMDG
+Portland/SM
+portliness/S
+portly/PT
+portmanteau/SM
+Porto
+portrait/S3M
+portraitist
+portraiture/SM
+portray/SDG
+portrayal/SM
+portrayer/M
+ports/EF
+Portsmouth/M
+Portugal/M
+Portuguese/M
+pose/FxCRXEDGNS
+posed/4IA
+poser/ISM
+poses/A4I
+poseur/MS
+posh/T
+posing/A4I
+Posini
+posit/CdS
+posited/F
+positing/F
+position's/FEI4
+position/CMDKoGS
+positionable
+positional/K
+positioned/aA
+positions/4
+positive/YTS
+positiveness/S
+positivism/M
+positivist/S
+positivity
+positron/MS
+posse/bMS
+posses/hDiG
+possess/EGKSANXD
+possession/EMAK
+possessive/MPSY
+possessiveness/S
+possessor/MS
+possibility/IMS
+possible/SIY
+possibly/I
+possum/SM
+post's/e
+post-classical
+post-coital/Y
+post-colonial
+post-doctoral
+post-entry/S
+post-feminism
+post-feminist
+post-free
+post-haste
+post-horn/MS
+post-impressionism
+post-impressionist/W
+post-industrial
+post-millennial
+post-millennialism
+post-millennialist
+post-modern
+post-modernism
+post-modernist
+post-mortem/SM
+post-natal
+post-nuptial
+post-office/SM
+post-operative/Y
+post-orbit
+post-partum
+post-production
+post-structural
+post-structuralism
+post-structuralist
+post-town/MS
+post-traumatic
+post-war
+post/FGSIMD
+postage/MS
+postal
+postbag/M
+postbox/SM
+postcard/MS
+postcode/MS
+postcondition/S
+postdate/SDG
+Postdene
+posted/A
+poster/IMS
+posterior/SY
+posteriori
+posterity/MS
+postfix/SGD
+postgraduate/SM
+PostgreSQL
+posthumous/PY
+posthypnotic
+postilion/SM
+postillion
+posting/MS
+postlude/MS
+postman/M
+postmarital
+postmark/SMDG
+Postmasburg
+postmaster/SM
+postmen/M
+postmistress/MS
+postnatal
+postoperative/Y
+postpaid
+postponable
+postpone/LSGD
+postponer
+postpositions
+postprandial
+posts/Ae
+postscript/MS
+postulate/NSDGn
+postulation/M
+postural
+posture's/I
+posture/GMDSJ
+posturer/M
+postures/I
+postwar
+posy/SM
+pot-belly/SMD
+pot-boiler/M
+pot-hunter
+pot-pourri/MS
+pot-shot/S
+pot/CSM
+potability/SM
+potable/PS
+potage/M
+potash/SM
+potassium/M
+potato/M
+potatoes
+Potchefstroom
+Potchefstroomkamp
+potency's
+potency/SI
+potent/ISY
+potentate/MS
+potential/SY
+potentiality/SM
+potentiating
+potentiometer/MS
+potful/MS
+Potgietersrus
+Potgieterus
+pothead/MS
+pother/dSM
+potherb/SM
+pothole/DSMG
+potholing/M
+pothook/SM
+potion/SM
+potjie/S
+potjiekos
+potlatch/MS
+Potsdam
+potsherd/MS
+pottage/SM
+potted
+potter/dMSZ
+potterer
+pottery/MS
+potting
+potty/TS
+Potwane
+pouch/MDSG
+pouffe/S
+Poulenc/M
+poulterer/MS
+poultice/DMSG
+poultry/SM
+pounce/DSG
+pound/IDSFG
+poundage/MS
+pounder's/F
+pounder/SM
+pour/7GSD
+pourer's
+pouring/e
+pourri/MS
+pout/RDSG
+poverty-stricken
+poverty/MS
+POW
+powder/dMSZ
+powderer
+powderpuff
+Powell/M
+power's
+power-sharing
+power/cdS
+powerboat/MS
+powered/f
+powerful/PY
+powerhouse/MS
+powerless/PY
+powerlessness/S
+PowerPC
+PowerPoint/M
+Powerville
+powwow/DMGS
+Powys
+pox/MS
+pp
+ppm
+PPP
+ppr
+PPS
+Pr
+practicability/S
+practicable/YI
+practicableness
+practicably/I
+practical/SYP
+practicality/ISM
+practically/I
+practice/MS7
+practician
+practise/DGS
+practised/U
+practiser/M
+practitioner/SM
+Praegville
+Praesidium/M
+praetor/MS
+praetorian/S
+pragmatic/YS
+pragmatical
+pragmatics/M
+pragmatism/MS
+pragmatist/SM
+prague's
+Prague/M
+Praia/M
+prairie/MS
+praise's
+praise/ESDG
+praiser/S
+praiseworthiness/S
+praiseworthy/P
+praising/Y
+praline/MS
+pram/SM
+prance/DRSkG
+prank/MS
+prankster/SM
+praseodymium/M
+prate/RkGSD
+prattle/RkSDG
+prawn/SMDG
+praxes
+praxis/M
+pray/RGDS
+prayer/6j
+prayerbook
+prayerful/P
+PRC
+pre-adolescent
+pre-amplifier/M
+pre-Christian
+pre-date/SDG
+pre-decimal
+pre-defined
+pre-echo
+pre-echoes
+pre-eclampsia
+pre-eclamptic
+pre-elect
+pre-election
+pre-embryo/S
+pre-eminence/SM
+pre-eminent/Y
+pre-emphasis
+pre-employment/MS
+pre-empt/DGVvS
+pre-emption/MS
+pre-emptor/M
+pre-exist/SGD
+pre-existant
+pre-existence/SM
+pre-ignition
+pre-implementation
+pre-industrial
+pre-package/GDS
+pre-paid
+pre-preference
+pre-print
+pre-privatisation
+pre-process/G
+pre-processor
+pre-programmed
+pre-pubescent
+pre-record/SDG
+pre-set/S
+pre-tax
+pre-teen/S
+pre-war
+pre/8Qs
+preach/LJR
+preadolescence
+preallocator
+preamble/M
+preamp
+preassign
+preauthorise
+preauthorize
+prebendary/M
+precancel
+precancerous
+precarious/PY
+precariousness/S
+precedence/SM
+precedent/SMD
+precedented/U
+precept/MvVS
+preceptor/MS
+precess/DGSN
+precinct/SM
+preciosity/MS
+precious/SY
+preciousness/S
+precipice/MS
+precipitable
+precipitant/S
+precipitate/PGNSYDn
+precipitation/M
+precipitous/PY
+précis/dSM
+precise/IPNYX
+preciseness/SI
+preciser
+precisest
+precision/IM
+preclude/DGSNX
+precocious/PY
+precociousness/S
+precocity/SM
+precode
+precognitive
+preconceive
+precondition
+preconscious
+precook/G
+precursory
+precut
+predation/CSM
+predator/MS
+predatory
+predecessor/MS
+predecessors'
+predecline
+predefine
+predestine/GS
+predicable/S
+predicament/MS
+predicate/VDSGNn
+predication/M
+predicator
+predict/vSBDGlV
+predictabilities
+predictability/MU
+predictable/U
+predictably/U
+predicted/U
+predictor/SM
+predigest
+predilection/MS
+predominant
+predominate/Y
+preen/SDG
+preener/M
+pref
+prefab/GMSD
+preface/G
+prefatory
+prefect/SM
+prefecture/MS
+prefer/G7lDS
+preferable/P
+preference/SM
+preferential/Y
+prefigure/N
+prefix/M
+preflight
+preform
+pregnancy/SM
+pregnant/Y
+preheat
+prehensile
+preinterview
+prejudge/L
+prejudice/SDMG
+prejudiced/U
+prejudicialness
+prelacy/SM
+prelate/SM
+preliminary/YS
+preliterate
+prelude/SMDG
+preluder/M
+premarket
+premature
+prematurity
+premed/wS
+premeditate/h
+premeditated/U
+premier/MS
+première/MDGS
+Premierpark
+premiership/SM
+premise/SGDM
+premiss/M
+premium/MS
+premolar
+premonitory
+prenatal/Y
+prenuptial
+preoccupy/n
+preoperative
+preordainment
+prep/MS
+prepack
+preparation/M
+preparative/MS
+prepare/hnyiNVv
+prepared/KU
+preparedness/SM
+prepender/S
+prepends
+preponderance/SM
+preponderant/Y
+preponderate/NDGYS
+prepossessing/U
+preposterous/YP
+preprint/MG
+preprocessor
+preproduction
+prepubescent/S
+prequel/S
+preradiation
+prerequisite/M
+prerogative/SM
+presage/GD
+presager/M
+presbyopia/MS
+presbyter/MSZ
+presbyteral
+presbyterate
+presbyterial
+Presbyterian/M
+presbytership
+presbytery/SM
+preschool
+preschooler/S
+prescient/Y
+Prescott/M
+prescribe/vNXV
+prescript
+prescription/M
+prescriptivism
+prescriptivist
+preselect
+presence/MS
+present-day
+present/7lxRGYSLNDn
+presentable/P
+presentably/A
+presentation/AMo
+presentational/A
+presented/A
+presents/A
+preservable
+preservation/M
+preservationist/S
+preservative/MS
+preserve/VNn
+preserved/U
+presidency/MS
+Presidensia
+President/MS
+president/SM
+Presidentdam
+Presidential
+presidential/Y
+Presidentrif
+presider/M
+Presley/M
+press-gang/D
+press-stud/S
+press-up/S
+press/FDCGSIA
+presser/IM
+pressers
+pressing/YS
+pressman/M
+pressmen/M
+pressure's
+pressure-cook/G
+pressure-cooker
+pressure/c
+pressured
+pressures
+pressuring
+pressurise/SRGnD
+pressurised/U
+pressurize/DRGSNn
+Prestbury
+prestidigitate/nN
+prestidigitation/M
+prestidigitator/M
+prestidigitatorial
+prestige/MS
+prestigious/Y
+prestigiousness
+Prestik
+presto/S
+Preston/M
+Prestondale
+Prestwick/M
+presumable
+presume/DNkVvlGXS
+presumer/M
+presumption/M
+presumptuousness/S
+pretence/SM
+pretend/XN
+pretending/U
+pretentious/YU
+pretentiousness/S
+preterite/M
+preternatural/Y
+pretest
+Pretoria/M
+Pretoriuspark
+Pretoriusrus
+pretrial
+prettify/SDG
+prettiness/S
+pretty/YPTSDG
+pretzel/MS
+prevail/DGkS
+prevalent/Y
+prevaricate/DGNnS
+prevaricator/MS
+prevent/lV7vu
+preventable/U
+preventative/S
+preventer/M
+prevention/SM
+preventive/PS
+previous/Y
+prevision/D
+prey/MDGS
+priapic
+price/RMGSpD
+priced/UcA
+prices/Ac
+pricey
+pricier
+priciest
+pricing/fAc
+prick/RGDYS
+pricking/M
+prickle/D2GMS
+prickliness/S
+prickly/T
+pride/jSMDG6
+Prieska
+priest/DGYMS
+priestess/SM
+priesthood/MS
+Priestley/M
+priestliness/S
+priestly/PT
+prig/MS
+priggish/MY
+priggishness/S
+prim/dYTr
+primacy/MS
+primaeval
+primal
+primary/MYS
+primate/MS
+prime/PS
+primeval/Y
+primitive/PSY
+primitiveness/S
+primitivism/M
+primness
+primogenitor/SM
+primogeniture/SM
+primordial/SY
+primp/SDG
+Primrose
+primrose/MS
+Primroserif
+prince/YSM
+princedom/MS
+princeliness/S
+princely/TP
+Princess
+princess/SM
+Princessvlei
+principal/YS
+principality/MS
+Principe/M
+principle/MDS
+principled/U
+Pringle/M
+Prinsevale
+print/IRGADS
+printable/U
+printably
+printed/UaKc
+printing/IM
+printings
+printmaker/SM
+printmaking/M
+printout/S
+prints/acK
+prions
+prior/ZY
+prioress/SM
+priori
+priority/q-89sQSM
+priory/MS
+prise's/A
+prise/ADSFG
+prism/SM
+prismatic
+prison/rdSM
+prisoned/I
+prisons/I
+prissiness/S
+prissy/YPT
+pristine/Y
+prithee/S
+privacy/MS
+private/Sq8nVYPQ-TNv
+privateer/SMG
+privation/MC
+privet/SM
+privilege/DMSG
+privileged/Uf
+privy/MY
+Prix
+prize/M
+prizefight/MGRJS
+prizefighting/M
+prizewinner/S
+prizewinning
+pro-American
+pro-choice
+pro-democracy
+pro-hunt/G
+pro-life
+pro-Republican
+pro/MS
+proactive
+probabilist/1W
+probability/ISM
+probable/I
+probables
+probably/I
+probate's/A
+probate/xSVM
+probates/A
+probation's/A
+probation/yRM
+probationary/S
+probe/lSBDGn
+prober/M
+probity/SM
+problem/WMwS1
+problematic/U
+proboscis/SM
+procaine/MS
+procedural/S
+procedure/SMo
+proceed/DSGJ
+proceeder/M
+proceeding/M
+process/7MDNXSGx
+processed/KAU
+processes/A
+processing/K
+procession/M
+processional/S
+processor/MS
+processors/K
+proclaim/SDRG7
+proclamation/MS
+proclivity/SM
+proconsul/MS
+proconsular
+procrastinate/SNDGn
+procrastination/M
+procrastinator/MS
+procreate/VDNynSGx
+procreation/M
+procreativity
+proctor/dMS
+proctorial
+procurable/U
+procurator/MS
+procure/LGSD
+procurer/M
+prod/GDS
+prodigal/SY
+prodigality/S
+prodigious/YP
+prodigy/MS
+produce/eGDAcS
+producer/SAM
+producible
+product/QsvSMuV
+production's/Af
+production/cSf
+productive/UY
+productiveness/SM
+productivity/SM
+Prof.
+prof/SM
+profane/PSDGNnY
+profaneness/S
+profaner
+profanity/SM
+profess/xDGhSNX
+profession/M
+professional/Q8S
+professionalism/MS
+professionally/U
+professor/MSo
+professorial
+professorship/SM
+proffer/dS
+proficiency/SM
+proficient/Y
+profile/MDRGS
+profit-taking
+profit/lpd7MgS
+profitable/P
+profitably/U
+profiteer/SDMG
+profiterole/MS
+profligacy/S
+profligate/SY
+proforma/S
+profound/TPY
+profoundness/S
+profundity/MS
+profuse/YPXN
+profuseness/S
+profusion/M
+progenitor/MS
+progeny/SM
+progesterone/MS
+prognathous
+prognoses
+prognosis/M
+prognostic/SNnV
+prognosticate/SGD
+prognostication/M
+prognosticator/S
+program/MBGDJRS
+programmable/S
+programmatic
+programme's
+programme/ARDG
+programmed/CK
+programmes
+programming/C
+programs/A
+Progress
+progress/SXvMGNVuD
+progression/M
+progressive/SP
+progressiveness/S
+progressivism
+prohibit/SdXNvuVy
+prohibiter/M
+prohibition/3M
+prohibitionist
+prohibitive/P
+project/MDGVvS
+projectile/MS
+projection/S3M
+projectionist
+projector/SM
+Prokofiev/M
+prolapse/GSMD
+prolate
+Prolecon
+prolegomena
+proletarian/-8qQS
+proletariat/MS
+proliferate/nSVDGN
+proliferation/M
+prolific/Y
+prolificness
+prolix/Y
+prolixity/MS
+prologise
+prologize
+prologue/GSMD
+prologuise
+prologuize
+prolong/nNDSG
+prolongation/M
+prolonger/M
+prom/sQMS
+promenade/DMRSG
+Promethean
+promethium/M
+prominence/MS
+prominent/Y
+promiscuity/SM
+promiscuous/PY
+promise/FDSRkG
+promising/UY
+promissory
+promo/SVu
+promontory/SM
+Promosa
+promote/DRGBxS
+promotion/MS
+prompt/RDPSTGYJ
+prompted/U
+promptitude/SM
+promptness/S
+promulgate/DNSnG
+promulgation/M
+promulgator/MS
+prone/PY
+proneness/S
+prong/MDGS
+pronghorn/MS
+pronominal
+pronoun/SM
+pronounce/aDSG
+pronounceable/U
+pronounced/U
+pronouncedly
+pronouncement/SM
+pronouncer/M
+pronto
+pronunciation/aMS
+ProNutro
+proof-read/SG
+proof-reader/S
+proof/SMAE
+proofed
+proofer
+proofing/M
+proofread/RSG
+prop/DMSG
+propaganda/MS
+propagandise/SGD
+propagandist/MSW
+propagate/GNVDnS
+propagation/M
+propagator/SM
+propane/MS
+propel/SnGDRN
+propellant/MS
+propellent
+propensity/MS
+proper/YIP
+property/DSM
+prophecy/SM
+prophesy/DRSG
+prophet/MwW1S
+prophetess/S
+prophylactic/S
+prophylaxes
+prophylaxis/M
+propinquity/MS
+propionate/M
+propitiate/NDSnyG
+propitious/PY
+proponent/MS
+proportion/SoGEDM
+proportional/E
+proportionality/M
+proportionals
+proportionate/EYS
+proportioner/M
+proportionment/M
+proposal/MS
+propose/DRGxXSN
+proposition/DMG
+propound/GSD
+proprietary/S
+proprietor/SM
+proprietorial
+proprietorship/SM
+proprietress/SM
+propriety/SMI
+proprioception
+proprioceptive
+propulsion/M
+propulsive
+propvol
+propylene/M
+prorate/NGSD
+prorogation/SM
+prorogue/SGD
+pros/S
+prosaic/Y
+proscenium/MS
+prosciutto/M
+proscribe/GDSNXV
+proscriber/M
+proscription/M
+prose/ZMD
+prosecutable
+prosecute/DGS
+prosecution/SM
+prosecutor/MS
+proselyte/DQ89SsMG
+proselytism/MS
+proser/M
+prosodic/S
+prosody/WSM
+prospect/VSDuMGv
+prospective/PS
+Prospecton
+prospector/MS
+prospectus/MS
+prosper/dS
+prosperity/MS
+prosperous/PY
+prostate/MS
+prostheses
+prosthesis/M
+prosthetic/S
+prosthetics/M
+prostitute/GMSD
+prostitution/MS
+prostrate/DSGNn
+prostration/M
+prosy/T
+protactinium/M
+protagonist/MS
+protea/SM
+Proteahof
+protean/S
+Proteapark
+proteas/S
+protease/M
+Proteaville
+protect/cVDGS
+protected/Y
+protection/cM
+protectionism/SM
+protectionist/MS
+protections
+protective/YS
+protectiveness/S
+protector/SM
+protectorate/MS
+protégé/MS
+protégée/S
+protein/SM
+Protem
+proteolysis/M
+proteolytic
+protest/nMNRGSDk
+protestant/S
+protestantism
+protestation/M
+protocol/MS
+proton/SM
+protoplasm/WMS
+prototype/S1DGMWw
+Protozoa
+protozoa/W
+protozoan/MS
+protozoon's
+protract/DGS
+protraction/SM
+protractor/MS
+protrude/SVGXvDNu
+protrusile
+protrusion/M
+protuberance/S
+protuberant
+proud/TY
+provability/SM
+provable/Y
+prove/ESGDB
+proved/IA
+proven/U
+provenance/MS
+Provencal
+Provençal
+Provence/M
+provender/MS
+proverb/MoS
+proverbial
+proves/IA
+providable
+provide/NxXRSGD
+providence/MSI
+provident/IY
+Providentia
+providential/Y
+province/MSo
+provincial/S
+provincialism/MS
+proving/AI
+provision/GDM
+provisional/S
+provisioner/M
+proviso/MS
+provocation/M
+provocative/PS
+provocativeness/S
+provoke/uDRGVNvnSk
+provoked/U
+provost/MS
+prow/SM
+prowess/MS
+prowl/RDGS
+proximal/Y
+proximate/YP
+proximity/SM
+proxy/SM
+prude/yMS
+prudence/ISM
+prudent/IY
+prudential/YS
+prudery/M
+Prudhoe
+prudish/PY
+prudishness/S
+prune/RMGSD
+prurience/MS
+prurient/Y
+prussic
+pry/RSDkTG
+PS
+psalm/3MS
+psalmist
+psalter/Z
+psaltery/MS
+psephologist/M
+psephology/w1
+pseudo
+pseudo-intellectual
+pseudo-science/WS
+pseudonym/SM
+pseudonymous
+pseudopod
+pseudopodia
+pshaw/S
+psi
+psittacoses
+psittacosis/M
+psoriases
+psoriasis/M
+psst/S
+PST
+psych/DW1SwG
+psyche/M
+psychedelia
+psychedelic/YS
+psychiatry/S3WM
+psychic/SM
+psycho/MS
+psychoacoustic/S
+psychoacoustics/M
+psychoactive
+psychoanalyse/WDSG
+psychoanalysis/M
+psychoanalyst/S
+psychoanalytical
+psychobiology/M
+psychocultural
+psychodrama/MS
+psychokinesis/M
+psychokinetic
+psycholinguistic/S
+psycholinguistics/M
+psycholinguists
+psychology/w3MS1
+psychometric/S
+psychometrics/M
+psychometry/MW
+psychoneuroses
+psychoneurosis/M
+psychopath/ZWMS
+psychopathic/S
+psychopathology/M
+psychopathy/SM
+psychophysical/Y
+psychophysics/M
+psychophysiology/M
+psychos/S
+psychosis/M
+psychosocial/Y
+psychosomatic/S
+psychosomatics/M
+psychotherapeutic/S
+psychotherapist/MS
+psychotherapy/SM
+psychotic/YS
+psychotropic/S
+psychs
+pt
+PTA
+ptarmigan/MS
+pterodactyl/SM
+pterosaurs
+PTO
+ptomaine/MS
+Pu
+Puana
+pub/MGDSW
+pubertal
+puberty/MS
+pubes
+pubescence/KS
+pubescent/K
+pubis/M
+public's/A
+public-spirited
+public/Q8NM3n
+publican/AMS
+publication/MAK
+publicised/U
+publicist
+publicity/SM
+publicized/U
+publicly
+publish/RJ7DGS
+publishable/U
+published/AU
+publishes/A
+publishing/M
+Puccini/M
+puce/MKS
+puck/SM
+pucker/dS
+puckish/Y
+puckishness/S
+pudding/SM
+puddle/MGSJDY
+puddler/M
+puddling/M
+pudenda
+pudendum/M
+pudginess/S
+pudgy/TP
+Pudimoe
+Pudsey
+pueblo/MS
+puerile/Y
+puerility/MS
+puerperal
+Puerto
+puff/GZRSMD2
+puffadder/S
+Puffback
+puffball/MS
+puffer/Z
+puffery/M
+puffin/MS
+puffiness/S
+puffy/T
+pug/MGSD
+pugilism/SM
+pugilist/SW
+pugnacious/YP
+pugnaciousness/S
+pugnacity/SM
+puissant/Y
+puke/SGD
+pukka
+pulchritude/MS
+pulchritudinous/M
+pule/SDG
+Pulitzer
+pull-back/S
+pull-down
+pull-out/S
+pull/SRDG
+pullet/MS
+pulley/MS
+pullover/SM
+pulmonary
+pulp/GZMSD2
+pulper
+pulpiness/S
+pulpit/SM
+pulpwood/MS
+pulpy/T
+pulsar/SM
+pulsate/GnDSN
+pulsation/M
+pulse/IDSMG
+pulsed/A
+pulser
+pulses/A
+pulsing/A
+pulverisation
+pulverise/DRSG
+pulverization/M
+pulverize/DGNn
+pulverizer/M
+puma/SM
+pumice/MSDG
+pummel/GDS
+pump/SMDG
+pumper
+pumpernickel/MS
+pumping/M
+pumpkin/SM
+pun/DGMS
+punch/RJ7GSDZ
+punchbowl/M
+puncheon/MS
+punchline/S
+punchy/T
+punctilio/MS
+punctilious/YP
+punctiliousness/S
+punctual/PY
+punctualities
+punctuality/MU
+punctuate/GNSnxD
+punctuation/M
+puncture/SMGD
+pundit/SM
+punditry/S
+pundus
+pungency/SM
+pungent/Y
+puniness/S
+punish/GSL7D
+punished/U
+punisher/M
+punitive/YP
+Punjabi
+punk/2STMZ
+punkier
+punnet
+punster/MS
+punt/SMRDG
+Punts
+puny/TP
+pup/DZSNGM
+pupa/M
+pupae
+pupal
+pupate/SGD
+pupil/MS
+pupillage/M
+puppet/SMy
+puppeteer/MS
+puppetry/SM
+puppy/MS
+puppyish
+Purbeck
+purblind
+Purcell/M
+purchasable
+purchase/RADGS
+purdah/SM
+pure-bred/S
+pure/IPTY
+purée/DSM
+puréeing
+pureness/S
+purgation/M
+purgative/SM
+purgatorial
+purgatory/SM
+purge/SNRVDG
+purify/nDSRNG
+purine/MS
+purism/MS
+purist/SMW
+puritan/wSM1
+puritanism/S
+purity/ISM
+purl/MGDS
+purlieu/M
+purlieus
+purloin/GDS
+purloiner/M
+purple/MTSDG
+purplish
+purport/hRDGS
+purpose-built
+purpose/M6puDSvjYGV
+purposefulness/S
+purposeless/PY
+purposive/P
+purr/DSGk
+purse/RDMSG
+pursuance/MS
+pursuant
+pursue/DRGS
+pursuit/SM
+purulence/SM
+purulent
+purvey/SDG
+purveyance/MS
+purveyor/SM
+purview/SM
+pus/ZM
+push-bike/SM
+push-button/S
+push-pull
+push-up/S
+push/DzZR7GS2
+pushcart/SM
+pushchair/SM
+pushiness/S
+pushover/MS
+Pushto
+pushy/TP
+pusillanimity/SM
+pusillanimous/Y
+puss/S
+pussy-cat/S
+pussy/MS
+pussyfoot/SDG
+pustular
+pustule/MS
+put-down
+put-up
+put/SRGZD
+putative/Y
+Putco
+Putcoton
+Putfontein
+Putney/M
+putrefaction/SM
+putrefactive
+putrefy/GDS
+putrescence/SM
+putrescent
+putrid/YP
+putridity/M
+puts/e
+putsch/S
+Putt-Putt
+putt/MS
+putted/e
+puttee/MS
+putter/d
+putterer/S
+Puttergillville
+putty/GSDM
+puttying/M
+putu
+Putwassteen
+puzzle/LJGRkSD
+PVC
+pvt
+PW
+PX
+pyaemia
+pyaemic
+pygmy/MS
+pyjama/SM
+pyknic
+pylon/SM
+pylori
+pylorus/MW
+Pyongyang/M
+pyorrhoea/M
+Pyramid
+pyramid/SoM
+pyramidal
+pyre/MS
+Pyrex
+pyridine/M
+pyrimidine/MS
+pyrite/MS
+pyrolyse/WS
+pyrolysis/M
+pyromania/SM
+pyromaniac/MS
+pyrometer/MS
+pyrometry/M
+pyrotechnic/S
+pyrotechnics/M
+pyrotechnist
+pyrotechny/wW
+pyroxene/SM
+pyrrhic
+pyruvic
+Pythagoras
+Pythagorean
+Python
+python/MSW
+pyx/MS
+pyxides
+pyxidia
+pyxidium
+pyxis
+q
+Q-town
+q.t.
+Qa'ida/M
+Qaeda/M
+Qakazana
+Qalabotjiha
+Qamata
+Qanda
+Qangu
+Qanqu
+Qatar/M
+Qawukeni
+QC
+Qedumona
+Qeto
+Qhakaza
+Qhudeni
+qi
+Qibing
+Qitsi
+Qoboqobo
+Qokama
+Qokolweni
+Qolombane
+Qolora
+Qolweni
+Qombolo
+Qoqodala
+QoS
+Qotho
+QPR
+qr
+qt
+qua
+quack/SDG
+quackery/SM
+quackish
+quad/MS
+quadrangle/MS
+quadrangular/M
+quadrant/MS
+quadraphonic/S
+quadratic/MYS
+quadrature/MS
+quadrennial/SY
+quadrennium/MS
+quadric
+quadriceps/MS
+quadrilateral/S
+quadrille/MS
+quadrillion/MHS
+quadripartite/Y
+quadriplegia/MS
+quadriplegic/SM
+quadrivia
+quadrivium/M
+quadrophonic
+quadruped/SM
+quadrupedal
+quadruple/DSYG
+quadruplet/MS
+quadruplicate/DGS
+quadruply/nN
+quadrupole
+quaff/SDG
+quaffer/M
+Quagga
+quagga/MS
+quagmire/MS
+quail/SMDG
+quaint/YTP
+quaintness/S
+quake/ZDSG
+quaky/T
+Qualakancane
+Qualbert
+qualification/EM
+qualified/Uc
+qualifiedly
+qualifier/MS
+qualify/ENnGDS
+qualitative/Y
+quality/MS
+qualm/MS
+qualmish
+quandary/SM
+quango/S
+quanta/M
+quantifiable/U
+quantified/U
+quantify/RSNnG7D
+quantile/S
+quantitative/PY
+quantity/SM
+quantum/Qs9M8-q
+quarantine/DMSG
+quark/MS
+quarrel/MDRGSJ
+quarrelsome/YP
+quarrelsomeness/S
+quarrier/M
+quarry/mDGSM
+quart/WSRM
+quarter-final/SM
+quarter-hour
+quarter-light
+quarter-plate
+quarter/dY
+quarterback/SM
+quarterdeck/SM
+quarterer/M
+quartering/M
+quarterly/S
+quartermaster/MS
+quarterstaff/SM
+quartet/MS
+quartic/S
+quartile/MS
+quarto/SM
+quartz/MS
+quartzite/M
+quasar/MS
+quash/SGD
+quasi
+quasi-synchronous
+quasilinear
+quaternary/S
+quaternion/SM
+quatrain/MS
+quaver/dkZS
+quay/MS
+Quayle
+quayside/M
+Qudeni
+queasiness/S
+queasy/YTP
+Quebec/MR
+Quebecois
+Quechua
+queen/GSDMY
+queenly/T
+Queensburgh
+Queensland
+Queensmead
+Queenstown
+Queenswood
+queer/TYSDG
+queerness/S
+quell/DSG
+queller/M
+Quelleriepark
+Quellerina
+quench/7DRGSp
+quenchable/U
+quenched/U
+querier
+quern/M
+querulous/Y
+querulousness/S
+query/MGSD
+quest's/I
+quest/FMRAS
+quested/A
+questing
+question/RMlJ7SDGk
+questionable/P
+questionably/U
+questioned/AU
+questioning/UY
+questionnaire/MS
+questions/A
+quests/I
+queue-jump/G
+queue/RMDGS
+queued/C
+queueing
+queues/C
+queuing/C
+quibble/DRSG
+quiche/MS
+quick-witted
+quick/YPT
+quicken/Sd
+quickener/S
+quickie/MS
+quicklime/SM
+quickness/S
+quicksand/SM
+quicksilver/SdM
+quickstep/MS
+quid/SM
+quiesce/D
+quiescence/SM
+quiescent/Y
+quiescentness
+quiet/TGSDPY
+quieted/E
+quieten/Sd
+quieter/M
+quieting/E
+quietly/E
+quietness/S
+quiets/E
+quietude/MSIE
+quietus/MS
+quiff
+Quigney
+quill/MGDS
+quilt/RSMDG
+quilting/M
+Quimera
+quince/MS
+quincentenary/M
+quinine/MS
+Quinnell/M
+quinquennial/Y
+quinsy/SM
+quint/MWS
+quintessence/MS
+quintessential/Y
+quintet/SM
+quintillion/SH
+Quinton
+quintuple/SGD
+quintuplet/MS
+quip/GDMS
+quipper
+quipster/MS
+quire/MS
+quires/IA
+quirk/M2SZ
+quirkiness/S
+quirky/TP
+quirt/DGMS
+quisling/MS
+quit/RSGD
+quite/A
+Quito/M
+quittance/MS
+quiver/dkZS
+quixotic/Y
+quiz/DRGZM
+quizzes
+quizzy/1w
+Qumanco
+Qumbu
+Qunebo
+Qunu
+quoin/MSDG
+quoit/MGSD
+quondam
+quorate/I
+quorum/MS
+quota/SnM
+quotability/S
+quotable
+quotation/Ma
+quote/aSGDnN
+quoted/U
+quoter/M
+quoth
+quotidian/S
+quotient/SM
+Quti
+Qutsa
+Qwabe
+Qwaninga
+QwaQwa
+Qwayinduku
+qwerty
+r.p.m.
+r/sd
+R1/M
+R1s
+R4/M
+R4s
+Ra
+Raapkraal
+Rabat/M
+rabbet/dMS
+rabbi/MS
+rabbinate/MS
+rabbinic/Y
+rabbinical
+rabbit/MdS
+rabble-rouser
+rabble-rousing
+rabble/SM
+rabid/PY
+rabies
+Rabokala
+Rabula
+RAC
+raccoon/MS
+race/MRZSoDGJ
+racecourse/SM
+racegoers
+racehorse/MS
+raceme/MS
+racetrack/MS
+Raceview
+raceway/MS
+Rachmaninov/M
+racial/3
+racialism/M
+racialist
+racism/S
+rack/MDSG
+racket/MdSZ
+racketeer/MGSJ
+raconteur/MS
+racoon's
+racquet/SM
+racy/P3TY
+rad/w1
+radar/MS
+Radcliffe
+Radford/M
+radial/YS
+radian/SM
+radiance/SM
+radiant/Y
+radiate/InVDSNG
+radiately
+radiation/IM
+radiator/MS
+radical/SQ
+radicalism/MS
+radices
+radii/M
+radio-controlled
+radio-telegraph/SZ
+radio-telegraphy/M
+radio-telephone/MS
+radio/MGmSD
+radioactive/Y
+radioactivity/M
+radiocarbon/SM
+radiochemical
+radiochemistry/M
+radiocommunications
+radiogram/MS
+radiographer/SM
+radiography/WSM
+radioisotope/SM
+Radiokop
+radiology/13wMW
+radiometer/SWM
+radiometry/M
+radionics
+radionuclide/M
+radioscopy/M
+radiosonde/MS
+radiotherapist/SM
+radiotherapy/MS
+radish/MS
+Radithuso
+Raditshaba
+Radium
+radium/M
+radius/M
+radix/M
+radon/M
+Raedene
+RAF
+Rafengotso
+raff
+raffia/M
+raffish/YP
+raffle/DMSG
+raft/RMDGS
+raftered
+rag/DdhikMGS
+raga/MS
+ragamuffin/MS
+ragbag/SM
+rage/eGSDM
+ragged/P
+raggedy
+raglan/MS
+ragout/SM
+rags-to-riches
+ragtag/M
+ragtime/M
+ragwort/M
+raid/DRSMG
+Raikkonen
+rail's
+rail/CDJGS
+railer/M
+railhead/MS
+railing/M
+raillery
+Railton
+Railtrack/M
+railway/mMS
+raiment/M
+rain-cloud/MS
+rain-maker/SM
+rain-making
+rain-shadow/MS
+rain/GpZMDS
+Rainbow
+rainbow/MS
+raincoat/MS
+raindrop/MS
+rainfall/MS
+rainforest/MS
+Rainham
+rainproof
+rainstorm/MS
+rainwater/M
+rainy/T
+Raipur
+raise/RDGS
+Raisethorpe
+raisin/SM
+raison
+Raith
+Raithby
+Raj/M
+rajah/SM
+Rajasthani
+Rajkumar
+rake/DGMS
+raker/M
+rakish/PY
+Ralf
+rally/DGS
+ram/SMGD
+Ramahutsi
+Ramangwana
+Ramaphosa
+Ramatatane
+Ramatlabama
+Ramatlhabama
+Ramatshaba
+ramble/DkJRGS
+Rameau
+ramekin/SM
+ramie/SM
+ramification/M
+ramify/SGDNn
+ramjet/SM
+Rammobola
+Rammulotsi
+Ramnyiba
+Ramochinyadi
+Ramokgeletsane
+Ramokgopa
+Ramokokastad
+Ramokonopi
+Ramosadi
+Ramosili
+Ramotse
+ramp/GMDS
+rampage/DSG
+rampancy
+rampant/Y
+rampart/SM
+Ramphele
+Ramprakash
+Ramra
+ramrod/MS
+Ramsay/M
+Ramsgate
+ramshackle
+ran/S
+ranch/DRMSG
+Ranchi
+rancid/P
+rancidity/MS
+rancorous/Y
+rancour/M
+rand/ZSM2
+Randburg
+Randfontein
+Randgate
+Randhart
+Randjesfontein
+Randlespark
+Randlord
+Randlughawe
+Randolph/M
+Random
+random/qQ8YP-
+randomiser
+Randpark
+Randparkrif
+Randpoort
+Randridge
+Randrus
+Randskou
+Randvaal
+randy/T
+ranee/MS
+Ranelagh
+rang/GZRD
+range's
+range/CGSD
+Rangeview
+Rangoon/M
+rangy/T
+rank's
+rank/eDGS
+ranked/U
+Rankelenyane
+ranker/MS
+rankest
+ranking/MS
+rankle/GSYD
+rankness/M
+Rankuyana
+Ranleigh
+ransack/GDS
+ransacker/M
+ransom/MdS
+Rant-en-dal
+rant/kGRJDS
+Rantebeng
+Rantjiepan
+rap/d3RDGS
+rapacious/PY
+rapacity/M
+Rapadi
+rape/3MS
+rapeseed/M
+Raphael/M
+Raphaelite/MS
+rapid-fire
+rapid/SY
+rapidity/M
+rapidness
+rapier/SM
+rapine/SM
+Rapitsi
+rappel/GSD
+rapping/M
+rapport/MS
+rapporteur/SM
+Rapportryers
+rapprochement/MS
+rapscallion/MS
+rapt/Y
+raptness
+rapture/MS
+rapturous/YP
+rare/PYTG
+rarebit/SM
+rarefaction/MS
+rarefy/DSG
+rarity/SM
+Rarotongan
+rascal/MYS
+rash/TRYS
+Rashidistadt
+rashness
+Rashoop
+Raslouw
+rasp/GZSMkD
+raspberry/MS
+rasper/M
+raspy/T
+raster/MS
+rat-catcher
+rat/MGZRdSD
+Ratanang
+Ratanda
+ratatouille
+ratchet/dMS
+rate's
+rate-cap/G
+rate/cSDG
+rateable
+ratel/S
+ratepayer/MS
+Rathboneville
+rather
+ratify/GNDSRn
+rating/SM
+ratio/SM
+ratiocinate/GSDNnV
+ratiocination/M
+ration/GMD
+rational/qQ8-93s
+rationale/SM3
+rationalism/MS
+rationalist/W
+rationalities
+rationality/IM
+rationally/I
+ratline/MS
+Ratlou
+Ratshidi
+rattail
+rattan/MS
+rattle/RSGDYJ
+rattlesnake/MS
+rattletrap/MS
+rattly/T
+rattrap/MS
+ratty/T
+RAU
+raucous/YP
+Raumaraispark
+raunchiness
+raunchy/YT
+ravage/RDGS
+rave/RGSJD
+ravel/UDSG
+raven/dMS
+Ravenmoor
+ravenous/Y
+ravenousness
+Ravensbruck/M
+Ravensklip
+Ravensmead
+Ravenswood
+ravine/MSD
+Ravinia
+ravioli/MS
+ravish/LDSRGk
+raw-boned
+raw/YPT
+rawhide/MS
+Rawsonville
+ray/MGSD
+Rayleigh/M
+Raymond/M
+Raymondville/M
+rayon/M
+Raytheon/M
+Rayton
+raze/DGS
+razor-sharp
+razor/SM
+razorback/MS
+razorbills
+razorblades
+razzmatazz
+Rb
+Rd/M
+RDS
+re-adapt/SGD
+re-allocated
+re-deployed
+re-edit/N7
+re-educate/N
+re-elect/7
+re-embody
+re-emergence
+re-emission
+re-emphasis
+re-employ/7
+re-enact
+re-enforce/L
+re-engage
+re-enlist
+re-enlister
+re-enter
+re-erect
+re-establish
+re-estimate
+re-examine/N
+re-export/7
+re-form/N
+re-fund
+re-radiated
+re-release/SGD
+re-route/SDG
+re-routeing
+re-site/SGD
+re-soluble
+re/hixJoNnY
+Rea/M
+reabsorb/G
+reach/cGeDS
+reachability
+reachable/U
+reacquire
+reacquisition
+react/cGSD
+reactant/MS
+reaction/cMS
+reactionary/MS
+reactive
+read-only
+read/aGAS
+readability/MS
+readable/Y
+reader/aM
+readers
+readership/MS
+reading's
+reading/aS
+readjust/LG
+readopt/G
+readout/SM
+ready-made
+ready/PTGSDY
+reafforest/N
+Reagan/M
+Reagile
+real-life
+real-time
+real/TsQ38tq9+-
+realign/GL
+realisable/U
+realise/l
+realised/U
+realism/SM
+realist/1W
+realistic/UY
+reality/SUM
+realize/l
+realized/U
+realm/SM
+realness
+Realpolitik/M
+realtor's
+ream/MRGDS
+reap/GRS
+reapply/GnN
+reappoint/GL
+reappraise
+rear-view
+rear/GRMDS
+rearguard/MS
+rearm/GL
+rearmost
+rearrest/G
+rearward/S
+reascend/NG
+reason/7lrpdMS
+reasonable/U
+reasonableness/U
+reasonably/U
+reasoned/U
+reasoning's
+reasoning/U
+reassemble/Y
+reassert/G
+reassign/LG
+reassuringly/U
+reattach/GL
+reattain/G
+reattempt/G
+Reba/M
+rebate/M
+Rebecca/M
+rebel/DGSM
+rebellion/MS
+rebellious/Y
+rebelliousness
+rebirth
+Rebone
+rebook/GS
+reboot/G
+rebound/GD
+rebroadcast/M
+rebuild/G
+rebuke/GkSD
+rebuker
+rebuttal/MS
+recalcitrance/M
+recalcitrant
+recalculate
+recall/7G
+recant/nNG
+recap/DGS
+recapitalise/n
+receipt/GSDM
+receivable/S
+receive/RSGD
+received/U
+receivership/SM
+recency/M
+recension/M
+recent/Y
+recentness
+recentre
+receptacle/SM
+reception/3SM
+receptionist
+receptive/Y
+receptiveness
+receptivity
+receptor/MS
+recertify/N
+recess/SvXVMGNuD
+recession/y
+recessional/S
+recessive/PS
+rechargeable
+recherché
+rechristen/d
+recidivism/MS
+recidivist/SM
+recipe/SM
+recipiency
+recipient/MS
+reciprocal/YS
+reciprocate/GnNSD
+reciprocation/M
+reciprocity/MS
+recirculate
+recital/3SM
+recitalist
+recitative/SM
+recite/RNn
+reckless/Y
+recklessness
+reckon/dS
+reckoner/M
+reclaim/7
+reclaimable/I
+reclamation/MS
+reclassify/nDGN
+recline/DRGS
+recluse/NSMV
+reclusion/M
+recognisable/U
+recognisably/U
+recognisances
+recognise/BRGSlD
+recognised/U
+recognize/DlRSGB
+recoil/p
+recollect/G
+recolour/DG
+recombinant
+recombine/Nn
+recommission/G
+recommit/XGND
+recommittal
+recompense/GDS
+recompose/D
+recompute
+reconcilable/UI
+reconcile/DG7S
+reconciled/U
+reconciler/M
+recondite/YP
+recondition/G
+reconfigure/BNn
+reconfirm/GnN
+reconnaissance/MS
+reconnect/GD
+reconnection
+reconnoitre/GDS
+reconsecrate
+reconsideration/M
+reconstruct/bG
+reconstructed/U
+reconstruction
+recontamination
+reconvene
+reconvert/G
+recook/G
+recopy/G
+record-breaking
+record/3J7RG
+recordable/U
+recorded/UA
+recordist
+records/A
+recount/G
+recoup/DG
+recouple
+recourse
+recover/gZ
+recoverable/UI
+recovery/S
+recreancy
+recreant/YS
+recreate/x
+recriminate/NVynSGD
+recrimination/M
+recross/G
+recrudesce/SDG
+recrudescence/M
+recrudescent
+recruit/dSMLr
+recrystallise/n
+rectal/Y
+rectangle/MS
+rectangular/Y
+rectification/M
+rectify/nSDG7RN
+rectilinear/Y
+rectitude/M
+recto/MyS
+rector/FMS
+rectory/MS
+rectum/SM
+recumbent/Y
+recuperate/nVDSGN
+recuperation/M
+recur/SGD
+recurrence/MS
+recurs/VvNX
+recursion/M
+recusance/Z
+recusant/M
+recyclable/S
+recycle/R7
+red-bait
+red-blooded
+red-bloodedness
+red-eye
+red-faced
+red-handed
+red-head/MSD
+red-hot
+red-letter
+red-light
+red/TSZP
+redact/GSD
+redaction/SM
+redactor/MS
+Redan
+redbait
+redbreast/SM
+redbrick
+redbud/M
+Redbury
+redcap/MS
+Redcar/M
+Redcheek-wrasse
+Redcliffe
+Redcoat
+redcoat/SM
+redcurrant/MS
+redden/Sd
+Reddersburg
+Reddingshoop
+reddish
+redeem/R7
+redeemable/IU
+redeemed/U
+redefine
+Redelinghuys
+redelivery/M
+redemption/MS
+redemptive
+redesign/G
+redetermine/N
+Redfern
+Redfingers
+Redford/M
+redgrass
+redhead/S
+Redhill
+Redhouse
+redial/DG
+redirection
+Redirile
+rediscover/d
+redistribute
+redivide/N
+redlining
+Redmond/M
+redo/G
+redolence/M
+redolent
+Redondo/M
+Redoubt
+redoubt/l7
+redound/DGS
+redraft/G
+redraw/G
+redress/G
+Redshank
+redskin/MS
+Redskinfish
+reduce/RnVSGDbN
+reduced/U
+reducibility/IM
+reducible/IY
+reducibly/I
+reduction/M3
+reductionism/M
+reductionist/W
+redundancy/MS
+redundant/Y
+reduplicate
+redwater
+redwood/MS
+reebok
+Reebok/M
+Reece/M
+reed/D2ZGSM
+reeding/M
+Reedville/M
+reedy/PT
+reef/RGMDS
+Reefhaven
+reek/GDS
+reel/MRGDS
+Rees
+Reese/M
+Reeston
+reeve/MSG
+ref/M
+reface/G
+refashion/G
+refection/M
+refectory/SM
+Refentse
+refer/DR7GS
+referee/dGSM
+reference's
+reference/CDGS
+referenced/U
+referencing/U
+referenda
+referendum/MS
+referent/SM
+referential/Y
+referral/SM
+refile/G
+refill/G7
+Refilwe
+refine/RL
+refined/Uc
+refinish/G
+refit/DG
+reflate/N
+reflation/y
+reflect/uDvSGV
+reflectance/M
+reflection/SM
+reflective/P
+reflectivity/M
+reflector/SM
+reflex/Y
+reflexive/YPS
+reflexivity/M
+reflexology
+refluence
+refluent
+reflux/G
+refocus/DdG
+refold/G
+reforest/NnG
+reforge
+reform/B3VRy
+reformat/DG
+reformatory/MS
+reformed/U
+reformism/M
+reformist
+refortify/G
+refract/VvySDG
+refractometer/MWS
+refractometry
+refractoriness
+refractors
+refrain/DSG
+refresh/LSGDk7
+refries
+refrigerant/MS
+refrigerate/DSGN
+refrigerated/U
+refrigeration/M
+refrigerator/SM
+refrozen
+refuge/MS
+refugee/MS
+Refugio/M
+refulgence/M
+refulgent/Y
+refund/7G
+refurbishment/S
+refusal/SM
+refuse
+refuseniks
+refuser/M
+refutable/I
+refutation/M
+refute/nRSGND
+reg/o
+regain/G
+regal
+regale/GD
+regalement
+regalia/M
+Regan/M
+regard/EGSD
+regardless
+regather/d
+regatta/SM
+Regency
+regency/MS
+regenerate/U
+reggae/MS
+Reggie/M
+regicide/MS
+régime/MS
+regime/MS
+regimen/SM
+regiment/MNGSnD
+regimental/S
+regimentation/M
+Regina/M
+Reginald/M
+region/oMS
+regional
+regionalism/MS
+Regis/M
+register's
+register/KSdnN
+registered/U
+registrable
+registrar/SM
+registration/KM
+registry/MS
+regmaker/S
+regnant
+Regorogile
+regrade
+regress/DNXuGVSv
+regression/M
+regressive/P
+regret/GjSD6
+regretful/P
+regrettable/Y
+reground
+regrow/G
+regular/ISY
+regularise/nSGD
+regularity/ISM
+regularize/GNSnD
+regulate/CSDNnGy
+regulated/U
+regulation/M
+regulative
+regulator/SM
+regurgitate/GDnSN
+regurgitation/M
+rehab
+rehabilitate/GNDSVn
+rehabilitation/M
+rehang/G
+rehash/G
+rehears/DG
+rehearsal/SM
+rehearse
+rehearsed/fU
+rehearser/M
+reheat/G
+Rehoboth
+rehouse
+rehung
+rehydratable
+Reich/M
+Reid/M
+Reigate
+Reigerpark
+reign/GMSD
+reignition
+Reiko/M
+Reilly/M
+reimbursable
+reimburse/DGLS
+reimplement/NG
+reimport/G
+reimpose
+rein/MDG
+reindeer/M
+reinforce/GDLS
+reinforced/U
+reinforcer/M
+Reinhardt/M
+Reinhold/M
+reinitialise/n
+reinstall/G
+reinstitute
+reintegrate
+reinterpret/dnN
+reinvent/G
+reissue
+reiterate
+Reitz
+Reitzpark
+Reivilo
+reject/RSDGV
+rejection/MS
+rejoice/DkSGJ
+rejoicer
+rejuvenate/GnDNS
+reknit
+relabel/GD
+relate/FNDGnvVS
+related/P
+relater/SM
+relation/FM
+relational/Y
+relationship/MS
+relative/3PS
+relatives/F
+relativism/M
+relativist/1W
+relativity/SM
+relax/GnkhiD
+relaxant/SM
+relaxation/M
+relaxed/P
+relay/DGM
+releasable
+released/U
+Relebohile
+relent/DpSG
+relenting/U
+relentless/Y
+relentlessness
+relevance/IMZ
+relevancy/ISM
+relevant/IY
+reliability/UM
+reliable/U
+reliably/U
+reliance/M
+reliant/Y
+relic/SM
+relict/MC
+relief/M
+relieve/RSGhD
+relieved/U
+relight/G
+religion/3SM
+religionist
+religiosity/M
+religious/YP
+reline/G
+relinquish/DGLS
+reliquary/SM
+relish/DGS
+relit
+relive
+reload/G7
+reluctance/MS
+reluctant/Y
+rely/BlDGW
+rem
+remain/SDG
+remainder/MSd
+remake/G
+remand/DSG
+remark/7Gl
+remarkable/U
+remarkableness
+remaster/d
+rematch
+Rembrandt/M
+Rembrandtpark
+remeasure
+remediable/I
+remedy/7SMGD
+remember/da
+remembered/U
+rememberer/M
+remembrance/SM
+remind/G
+Remington/M
+reminisce/GSD
+reminiscence/SM
+reminiscent/Y
+remiss/PV
+remit/XSNDG
+remittance/MS
+remitting/U
+remnant/SM
+remobilise/B
+remobilize/B
+remodel/DG
+remonstrant
+remonstrate/VDnvGSN
+remonstration/M
+Remora
+remorse/pM6j
+remorsefulness
+remorseless/PY
+remote/YT
+remoteness
+remould/G
+removable/I
+removal/SM
+remove
+remunerate/GNSvnDV
+remunerated/U
+remuneration/M
+Remy/M
+Rena/M
+Renaissance's
+renaissance/S
+renal
+Renaldo/M
+renascence
+Renata/M
+Renate/M
+renationalise/n
+Renato/M
+Renault/MS
+rend/SG
+render/rJSd
+Rendezvous
+rendezvous/SGMD
+rendition/SM
+Rene/M
+Renee/M
+renegade/MS
+renege/RSDG
+renegotiate
+renegue
+renew/GSD7
+renewal/SM
+Renfrewshire/M
+Renishaw
+rennet/M
+rennin/M
+Reno/M
+Renoir/M
+Renosterspruit
+renounce/DSG
+renouncement
+renouncer/M
+renovate/GDNSn
+renovation/M
+renovator/SM
+renown/DM
+Rensburg
+Rensselaer/M
+rent-free
+rent/DRGSM
+rental/MS
+renumber/d
+renunciant
+renunciation/MS
+renunciative
+renunciatory
+reoccupy/nG
+reopen/d
+reorder/d
+rep/MS
+repaint/G
+repair's/E
+repair/m7R
+repairable/U
+repairs/E
+repaper/d
+reparation/MS
+repartee/MS
+repatriate/GDnSN
+repay/7
+repeat/RGBDh
+repeatability/M
+repeatable/U
+repeated/U
+repêchage
+repel/DNGnS
+repellent/YS
+repent/SGD
+repentance/MS
+repentant/YU
+repenter
+repercussion
+repertoire/MS
+repertory/SM
+repetition
+repetitious/Y
+repetitiousness
+repetitive/Y
+repetitiveness
+rephotograph/G
+rephrase
+replaceable/I
+replant/G
+replay/MG
+replenish/SGD
+replenisher
+replenishment/S
+replete/PN
+repletion/M
+replica/MS
+replicable
+replicate/DGS
+reply-paid
+reply/RVn
+repopulate
+report/aDfG
+reportable
+reportage
+reported/U
+reportedly
+reports/a
+repose/M6XN
+reposition/G
+repository/MS
+repost/G
+reprehend/DSNGX
+reprehensibility/M
+reprehensible/Y
+reprehension/M
+represent/aNnDGS
+representable
+representation's/a
+representation/f
+representative/YMS
+representativeness
+representativity
+represented/Ucf
+representivity
+repress/NXVvu
+repression/M
+repressive/P
+reprice
+reprieve/DSG
+reprimand/MSGD
+reprint/MJ
+reprisal/SM
+reproach/kDS6G7j
+reproachable/I
+reproacher/M
+reproachful/P
+reprobate/NDG
+reprocess/7G
+reproduce/bVuNnv
+reproducibility/M
+reproducible/U
+reproducibly
+reprogram
+reprogrammable
+reproof/G
+reprove/k
+reprover
+reptile/SM
+Reptilia
+reptilian/S
+republic/NnS
+Republican
+republicanism/SM
+republish/G
+repudiate/SDNGn
+repudiation/M
+repudiator/S
+repugnance/M
+repugnant/Y
+repulse/vVu
+repulsion/M
+repulsive/P
+reputability/M
+reputable/E
+reputation/SM
+repute/ESl
+reputed/Y
+request/G
+requestion/G
+requiem/MS
+require/GLD
+requisite/KS
+requisition/GSDM
+requisitioner/M
+requital/MS
+requite/DS
+requited/U
+reran
+reread/7
+rerecord/G
+resale/7
+resat
+rescind/SDG
+rescission/MS
+rescue/SDRG
+reseal/7
+research/7MG
+researched/U
+resection/G
+reselect/7G
+resemblant
+resemble/DGS
+resend/G
+resent/Dj6GLS
+resentful/P
+reservation/M
+reserve/h3iNn
+reserved/P
+reservedly/U
+reservedness/U
+reservoir/SM
+reset/G
+reshow/G
+reshuffle
+residence/MSZ
+residency/SM
+Residensia
+resident/MS
+residential/Y
+residua/yo
+residual/S
+residue/MS
+residuum/M
+resign/inhN
+resignation/M
+resilience/MZ
+resiliency/S
+resilient/Y
+resin/d
+resinlike
+resinous
+resiny
+resist/DVGvbS
+resistance/MS
+resistant
+resistible/YI
+resistibly/I
+resisting/U
+resistivity/M
+resistor/SM
+resize/7
+resolder
+resolute/IY
+resoluteness
+resolution/IMS
+resolvability/M
+resolvable/IU
+resolve/B
+resolved/U
+resolvent
+resonance/SM
+resonant/Y
+resonate/GSD
+resonator/MS
+resorption/M
+resorptive
+resound/k
+resource/6jp
+resourceful/P
+resourcelessness
+respect's/E
+respect/6GvDMBjlVS
+respectability/SM
+respected/E
+respectful/EY
+respectfulness
+respecting/E
+respective/IY
+respects/E
+Respighi/M
+respiration/M
+respirator/MS
+respire/NGny
+respite
+resplendence/M
+resplendent/Y
+respond/RGvSVDu
+responded/F
+respondent/FMS
+responding/F
+responds/F
+response/SbM
+responsibility/ISM
+responsible/IPY
+responsibly/I
+responsive/UY
+responsiveness/U
+respray/G
+Rest-in-peace
+rest/DvupjGVS6M
+restaurant/SM
+restaurateur/SM
+restfulness
+restitution/MS
+restive/P
+restless/PY
+Restonvale
+restoration/M
+restorative/S
+restore/NnRvgV
+restrain/h
+restrained/UY
+restraint/MS
+restrict/DuGSVvh
+restricted/UY
+restriction/SM
+restring/G
+restroom/SM
+result/DMGS
+resultant/YS
+résumé/S
+resume/SXDGN
+resumption/M
+resupply/G
+resurgence/SM
+resurgent
+resurrect/GDS
+resurrection/MS
+resuscitate/SGDnNV
+resuscitation/M
+resuscitator/SM
+Retabiseng
+retail/R
+retain/DRGS
+retake/G
+retaliate/DVSGNny
+retaliation/M
+Retang
+retard/nRSDG
+retardant/MS
+retardation/M
+retch/SGD
+reteach/G
+retell/G
+retention/MS
+retentive/Y
+retentiveness
+retest/G
+Rethabile
+Rethabiseng
+rethink/G
+rethought
+reticence
+reticent/Y
+reticle/SM
+reticular
+reticulate/DGYS
+reticulation/M
+reticule/nNMS
+reticulum/M
+Retief
+Retiefspark
+Retiefville
+retina/MS
+retinal
+retinitis
+retinue/MS
+retiral
+retire/Lk
+retort/DG
+retortion/SM
+retouch/R
+retract/7GD
+retractile
+retrain/G
+retread/D
+Retreat
+retrench/L
+retribution/MS
+retributive
+retrievable/I
+retrieval/SM
+retrieve/RDSG
+retro
+retroactive/Y
+retrofire/MS
+retrofit/DGS
+retroflex/DN
+retroflexion/M
+retrogradations
+retrograde/DSG
+retrogress/NDGVSXv
+retrogression/M
+retrorocket/SM
+retrospect/vVM
+retrospection/MS
+retrospective/S
+retroviral
+retrovirus/S
+retsina/SM
+Retswelele
+return/7
+returned/U
+returnee/MS
+Reuben/M
+Reunion
+Réunion/M
+reunite
+Reuters
+Reuven
+rev/GsQSD
+revalue/nN
+Revd.
+reveal/7RkSDG
+revealing/U
+reveille/MS
+revel/RJNDnGyS
+revelation/MS
+revelatory
+revelry/MS
+revenge/DjSGM6
+revenger/M
+reverberant
+reverberate/GSDNn
+reverberation/M
+revere/SDG
+reverence/IMS
+reverenced
+reverencing
+reverend/MS
+reverent/IY
+reverential/Y
+reverie/MS
+reversal/MS
+reverse-charge
+reverse/YGb
+reverser/M
+reversibility/M
+reversible/IY
+reversibly/I
+revert/GSbD
+reverter/M
+revet/LDG
+revile/LRSGD
+revisable
+revision/3
+revisionism/MS
+revisionist
+revitalise/nR
+revitalize/Nn
+revival/M3S
+revivalism/SM
+revivalist
+revive/GSD
+reviver/M
+revivification/M
+revivify/n
+Revlon/M
+revocable/I
+revoke/NnRSDG
+revolt/GDk
+revolution/Q83SyM
+revolutionary/MS
+revolutionist
+revolvable
+revolve/DRSGJ
+revue/MS
+revulsion/M
+reward/kG
+rewarded/U
+rewarding/U
+rewash/G
+rewind/G7
+Rewlatch
+Rewone
+rework/7
+rewound
+rewrite/J
+Rex/M
+Rexford
+Reyes
+Reygersdal
+Reykjavik/M
+Reyna/M
+Reynaldo/M
+Reynold/MS
+Reynorif
+rezone
+Rf
+RFU/M
+Rh
+Rhaeto-Romance
+rhapsody/WQSwM
+rhea/MS
+Rhee/M
+Rheederpark
+Rheederspos
+Rheenendal
+Rheims/M
+Rheinholdt/M
+rhenium/M
+Rhenosterdrift
+Rhenosterkraal
+rheology/w3M
+rheostat/MS
+rhesus
+rhetoric/MY
+rhetorical
+rhetorician/MS
+rheum/1MWZ
+rheumatic/ZS
+rheumatism/MS
+rheumatoid
+rheumy-eyed
+rheumy/T
+Rhine/M
+Rhineland/M
+Rhinelander/M
+rhinestone/SM
+rhinitis/M
+rhino/SM
+rhinoceros/MS
+rhizome/MS
+rho/M
+Rhoda/M
+Rhode/S
+Rhodesdene
+Rhodesfield
+Rhodesia/M
+Rhodesian/S
+rhodium/M
+rhododendron/SM
+rhomboid/MS
+rhomboidal
+rhombus/SWM
+Rhonda/M
+Rhondda/M
+Rhone
+rhubarb/MS
+Rhum/M
+rhyme/MDGSR
+rhymester/MS
+Rhys/M
+rhythm/MWSw1
+rial/MS
+Riamarpark
+rib/MDGS
+ribald/y
+ribaldry/SM
+ribbetjie/S
+ribbing/M
+ribbon/SM
+ribboned
+ribcage
+riboflavin/M
+ribonucleic
+ribosomal
+ribosome/M
+Rica/M
+Rican/MS
+Ricardo/M
+rice-paper
+rice/MS
+rich/STPY
+Richard/MS
+Richardo/M
+Richardson/M
+Richelieu/M
+Richem
+richen/d
+Richey/M
+Richfield/M
+Richie/M
+Richland/M
+Richmond/M
+Richmondshire
+Richter/M
+Richwood
+rick/MS
+Rickard/M
+rickets
+rickety/T
+Rickey/M
+Rickie/M
+rickshaw/SM
+Ricky/M
+Rico/M
+ricochet/dSDG
+ricotta/SM
+rid/7rGS
+riddance/M
+ridden/c
+Ridderpark
+riddle/DSMG
+ride/CGcS
+rider's/c
+rider/eSCM
+riderless
+ridge-pole/SM
+ridge-tile/SM
+ridge/MDGZS
+ridgeback/S
+Ridgefield/M
+Ridgeview
+Ridgeway
+Ridgeworth
+ridgy/T
+ridicule/MGDS
+ridiculer/M
+ridiculous/PY
+riding/M
+Riebeeckstad
+Riebeekhoogte
+Riemann/M
+Riempie
+riempie/S
+Riepenpark
+Riesling/MS
+Riet
+rietbok
+Rietbron
+Rietfontein
+Rietkol
+Rietkuil
+Rietondale
+Rietpoort
+Rietspruit
+Rietvale
+Rietvalleirand
+Rietville
+Rietvlei
+rife/T
+riff-raff/M
+riff/MS
+riffle/DSG
+rifle-fire
+rifle/SmDMG
+rifling/M
+rift/MGDS
+rig/MRDJSG
+Riga/M
+rigatoni/M
+rigger/eSM
+rigging/M
+Riggs/M
+right-angled
+right-hand/iD
+right-hander/S
+right-minded
+right-on
+right-thinking
+right-wing
+right-winger/S
+right/e
+rightable
+righted
+righten
+righteous/PY
+righteously/U
+righteousness/U
+righter/MS
+rightful/Y
+rightfulness
+righting
+rightish
+rightism/SM
+rightist/MS
+rightly
+rightmost
+rightness/M
+rights
+rightward/S
+rigid/Y
+rigidify/S
+rigidity/S
+rigmarole
+Rigoletto/M
+rigorous/Y
+rigorousness
+rigour/SM
+Rikasrus
+rile/SGD
+Riley/M
+rill/MS
+rim/pDMGS
+rime/MS
+Rinaldo/M
+rind/MDS
+rinderpest
+Rinehart/M
+ring-fence/GD
+ring-pull
+ring/MDGR
+ringleader/SM
+ringlet/SM
+Ringling/M
+ringmaster/MS
+ringside/RSM
+ringworm/MS
+rink/SM
+rinkhals
+rinse/SGD
+rinser
+Rio/MS
+Riordan/M
+riot/DGSMRJ
+riotous/YP
+rip-off/S
+rip-roaring/Y
+rip/RGSD
+riparian/S
+ripcord/SM
+ripe/YP
+ripen/dS
+riper
+Ripley/M
+riposte/GMDS
+ripping/Y
+ripple/MGYDS
+ripplet
+ripply/T
+ripsaw/SM
+Risana
+rise/GJSb
+Risecliff
+risen
+risibility/M
+Risidale
+Risiville
+risk/zSMDG2Z
+risky/TP
+risotto/MS
+Rispark
+risqué
+rissole/MS
+Rita/M
+Ritalin
+Ritchie/M
+rite/MS
+Ritter/M
+ritual/8MYSQ
+ritualism/M
+ritualistic/Y
+Ritz/M
+ritzy/T
+Riva/SM
+rival/MyDGS
+rivalled/U
+rivalry/MS
+rive/CSDG
+riven
+river/MS
+Rivera/M
+riverbank/MS
+riverbed/S
+riverboat/S
+Riverbream
+Riverdale
+Riverdene
+Riverfield
+riverine
+Riverlands
+Riverlea
+Riversdale
+Riverside
+riverside/MS
+Riverton
+Riverview/M
+rivet/rkdSM
+Riviera/M
+Riviersonderend
+Rivonia
+rivulet/SM
+Riyadh/M
+riyal/SM
+RMI
+Rn/M
+roach/MS
+road-based
+road-hog/S
+road-test
+road/MS
+roadbed/MS
+roadblock/MS
+roadholding
+roadhouse/SM
+roadie/SM
+roadmap
+roadroller/MS
+roadrunner/MS
+roadshow/MS
+Roadside
+roadside/S
+roadster/MS
+roadway/MS
+roadwork/SM
+roadworthiness
+roadworthy
+roam/RGDS
+roan/S
+Roanoke/M
+roar/GRJDkS
+Roarke/M
+roast/GDRSJ
+Rob's
+rob/GRSD
+Robb/ZM
+Robbeneiland
+robber/Z
+robbery/SM
+Robbie/M
+Robbins
+Robby/M
+robe/DMS
+Roberson/M
+Robert/SM
+Roberta/M
+Roberto/M
+Robertsham
+Robertson/M
+Robertville
+robes/E
+Robespierre/M
+robin/MS
+Robindale
+Robinette/M
+Robinpark
+Robinson/M
+Robinvale
+Robinville
+Robles/M
+robot/SMQW
+robotic/S
+Robson/M
+Robsonvale
+robust/PTY
+Roby/M
+Robyn/M
+Rocco/M
+Rochdale
+Roche/M
+Rochelle/M
+Rochester/M
+rock-bottom
+Rock-catfish
+rock-climber/S
+rock-climbing
+rock/RSMD2GZ
+rockabilly/M
+Rockaway/M
+Rockefeller/M
+rocker/Z
+Rockeries
+Rockescliff
+rocket/dSMy
+rocketry/MS
+rockfall/S
+Rockford/M
+Rockies
+rocking-horse/MS
+Rockingham
+Rockland/MS
+Rockrunner
+Rocksucker
+Rockville/M
+Rockwell/M
+rocky/T
+rococo/M
+rod/SM
+Rodana
+Rode
+rode/Fc
+Rodenbeck
+rodent/MS
+rodeo/MS
+Roderick/M
+Rodewal
+Rodger/MS
+Rodney/M
+Rodolfo/M
+Rodrigo/M
+Rodriguez/M
+Rodriquez/M
+roe/SM
+roebuck/SM
+Roedtan
+roentgen/MS
+Rogation
+Rogelio/M
+roger
+Roger's
+Rogers
+Roget/M
+Roggebaai
+rogue/SyM
+roguery/MS
+roguish/PY
+roil/SDG
+roister/rdS
+Rojas/M
+roker/S
+Roland/M
+role-play/GD
+rôle/MS
+role/MSZ
+Rolf/M
+Rolfe/M
+roll-back/MS
+roll-call
+roll-off
+roll-on
+roll-out
+roll-over/S
+roll/DRGS
+Rolland/M
+Rolle
+rolled/U
+roller-coast
+roller-coaster
+roller-skate/DMSG
+Rollerblade/S
+rollick/kDGS
+Rollin/SM
+rolling-pin/SM
+rolling-stock
+Rollo/M
+rolls/U
+Rolodex
+Rolph/M
+Rolweni
+roly-poly
+ROM
+Roma/M
+Roman/M3S
+Romance
+romance/MRSGD
+Romanesque
+Romania/M
+Romanian/MS
+romanise/SDnG
+romanize/nNSGD
+Romano/M
+Romanov/M
+Romansh/M
+Romanslaagte
+romantic/8QSM3Y
+romanticism/MS
+romanticist
+Romany/M3
+Rome/M
+Romeo/MS
+Romero/M
+Rommel/M
+Romney/M
+romp/DRGS
+Romulus/M
+Ron/MZ
+Rona/M
+Ronald/M
+Ronan
+Ronda/M
+rondavel/S
+Rondebosch
+Rondebult
+Rondevlei
+rondo/SM
+Ronnie/M
+Ronny/M
+Rontgen
+Rontree
+rood/SM
+Roodeberg
+Roodebult
+Roodekop
+Roodekrans
+Roodepan
+Roodepoort
+Rooderpoort
+Roodewal
+roof-garden
+roof/RGMDSp
+roofing/M
+rooftop/S
+Rooiberg
+rooibok
+Rooibokkraal
+Rooiboklaagte
+rooibos
+Rooibos
+Rooidakke
+Rooifontein
+rooigevaar
+rooigras
+Rooigrond
+rooihout
+Rooihuiskraal
+rooikat
+rooikrans
+rooinek/MS
+rooinekke
+Rooipanville
+Rooirivierrif
+Rooisand
+Rooiskub-moddervis
+Rooiwal
+rook/MS
+Rookdale
+rookery/SM
+rookie/SM
+room-mate/SM
+room/Z62SM
+roomful/SM
+Roomsekamp
+roomy/PT
+Rooney/M
+Roosendal
+Roosevelt/M
+Roosheuwel
+Roospark
+Roossenekal
+roost/RMDSG
+root-mean-square
+root/GRpMDiS
+rootlessness
+rootlet/MS
+rootstock/M
+rope/RSG7DM
+ropey
+Roquefort/M
+Rorke/M
+Rorschach
+Rory/M
+Rosa/M
+Rosales/M
+Rosalie/M
+Rosalind/M
+Rosalyn/M
+Rosamond/M
+Rosanna/M
+Rosario/M
+rosary/SM
+Roscoe/M
+Roscommon/M
+rosé
+rose-coloured
+rose-red
+rose-tinted
+rose/yMZS
+Roseacre
+Roseanne/M
+roseate
+Roseau/M
+Rosebank
+Rosebery/M
+rosebud/SM
+rosebush/SM
+Rosedale
+Rosedene
+Roseglen
+Rosehill
+Roseland/M
+Rosella/M
+Roselle/M
+Rosemarie/M
+rosemary/M
+Rosemonde/M
+Rosemont
+Rosemoor
+Rosemount
+Rosen/M
+Rosenberg/M
+Rosendal
+Roseneath
+Rosenpark
+Rosenthal/M
+Rosetta/M
+rosette/DSM
+Rosettenville
+Roseview
+Roseville
+rosewater
+rosewood/SM
+Rosherville
+Roshnee
+Rosicrucian/M
+Rosie/M
+rosin/dSM
+Roslyn/M
+Rosmead
+Ross
+Rossburgh
+Rossetti/M
+Rossi/M
+Rossini/M
+Rosskent
+Rosslyn/M
+Rossmore
+Rossouw
+roster/SM
+Rostov/M
+rostrum/SM
+Roswell/M
+rosy/TYP
+rot-gut/M
+rot/NGSnD
+rota/SVvMy
+Rotarian/SM
+rotary/S
+rotatable
+rotate/yDSxG
+rotation/M
+rotator/SM
+Rotavator/SM
+rote/M
+Roth/M
+Rothdene
+Rotherham/M
+Rothmanpark
+Rothschild/M
+roti/S
+rotifer
+rotisserie/SM
+rotogravure/SM
+rotor/MS
+rotten/Y
+rottener
+rottenest
+rottenness
+rotter/M
+Rotterdam/M
+rotund/Y
+rotunda/MS
+rotundity/S
+rouble/SM
+roué/MS
+rouge/SMGD
+rough-and-ready
+rough-hewn
+rough/DTPGYS
+roughage/MS
+roughen/dS
+roughish
+roughneck/MS
+roughshod
+roulette/M
+round-arm
+round-shouldered
+round-the-clock
+round-up
+round/iRTYPDGS
+roundabout/MS
+rounded/P
+roundel/S
+roundelay/MS
+Roundhay
+Roundhead/MS
+roundhouse/SM
+roundish
+roundworm/MS
+Rourke/M
+rouse/DGS
+rouser/M
+Rousseau/M
+roust/DSG
+roustabout/MS
+rout/RJDG
+route's
+route/AaSD
+routeing/A
+routine/QMSY
+routing/M
+Rouxville
+rove/DRGS
+row/RGDMS
+Rowan/M
+rowdy/PSTY
+rowdyism/MS
+Rowe/M
+rowel/MDSG
+Rowell/M
+Rowena/M
+Rowhill
+rowing-boat/MS
+Rowland/M
+Rowley/M
+Roxanne/M
+Roxie/M
+Roy/M
+royal/3YS
+Royalglen
+royalist
+royalty/SM
+Royce/M
+Royldene
+Rozano
+Rozendal
+RP
+RPG
+RPI
+RPO
+Rs.
+RSA
+RSC
+RSI
+RSM
+RSPCA
+RSS
+RSV
+RSVP
+rt
+Rt.
+rt.
+rte
+RU
+Ru/M
+rub-a-dub
+rub/GRDS
+rubati
+rubato/MS
+rubber-stamp/GD
+rubber/QZ
+rubberneck/GDMRS
+rubbery/T
+rubbing/M
+rubbish/MDZSG
+rubble/M
+rubdown/SM
+Rube/M
+rubella
+Ruben/SM
+Rubicon/M
+rubicund
+rubidium/M
+Rubik/M
+Rubin/M
+Rubinstein/M
+rubout
+rubric/MS
+ruby/SM
+Rubyfish
+ruck/M
+rucksack/MS
+ruction/SM
+Rudd/M
+rudder/pSM
+Ruddock/M
+ruddy/PT
+rude/YTP
+rudiment/SM
+rudimentary
+Rudolf/M
+Rudolph/M
+Rudy/M
+Rudyard/M
+rue/6jDSG
+ruefulness
+Rufanevale
+Ruff
+ruff/MDGS
+ruffian/MS
+ruffle/SDG
+ruffled/U
+Rufus/M
+rug/DhMiS
+rugby/M
+Rugby/M
+ruggerbugger/S
+Ruggiero/M
+Ruhr/M
+Ruigtesloot
+Ruimsig
+ruin/NndMS
+ruination/M
+ruinous/Y
+Ruiterhof
+Ruiterwag
+Ruiz/M
+ruk
+rule/RGSMDJ
+rulebook/S
+ruled/caU
+rules/ac
+ruling's
+ruling/ac
+rum/SMZ
+Rumania's
+Rumanian/M
+rumba/MGSD
+rumble/DGJS
+rumbustious
+rumen/MS
+Rumford/M
+ruminant/MS
+ruminate/SNvDGnV
+rummage/DGS
+rummager/M
+rummer
+rummy/MT
+rumour/DSMG
+rumourmonger/SM
+rump/MYS
+rumple/SGD
+rumply/T
+rumpus/MS
+run-down/M
+run-in/S
+run-of-the-mill
+run-off/SM
+run-out/S
+run-through
+run-up/S
+run/eGSAc
+runabout/MS
+Runamia
+runaway/S
+Runcorn/M
+Rundi
+Rundle/M
+rune/MSW
+rung/SM
+runlet/SM
+runnable
+runnel/MS
+runner-up
+runner/MS
+runners-up
+runny/T
+Runnymede/M
+runt/MZS
+runtime
+runty/T
+runway/MS
+Runyon/M
+rupee/MS
+Rupert/M
+rupiah/SM
+rupture/DSMG
+rural/Y
+rurality
+ruse/MS
+rush-hour
+rush/RDGSZ
+Rushmore/M
+rushy/T
+rusk/MS
+Ruskin/M
+Rusloo
+Rusoord
+Russ
+Russell/M
+russet/SM
+Russia/M
+Russian/SM
+Russo/M
+rust/1MW2GZDS
+Rustbelt/M
+Rustdal
+Rustdene
+Rustenberg
+Rustenburg
+Rusthof
+rustic/S
+rusticate/GSD
+rustication/M
+rusticity/S
+Rustivia
+rustle/RGSD
+rustproof/GD
+rustre/SM
+rusty/NTPn
+rut/MZGSD
+rutabaga/SM
+Rutgers
+Ruth/M
+Ruthann/M
+ruthenium/M
+Rutherford/M
+rutherfordium/M
+Ruthie/M
+ruthless/PY
+Rutland/M
+Rutledge/M
+Rutter/M
+rutty/T
+Rutvale
+Ruwari
+Ruyterwacht
+RV
+Rwanda/M
+Rwandan/S
+Rwantsana
+Rweleletunya
+Ryan/M
+Rydalvale
+Ryder/M
+rye/SM
+Ryedale
+Rylands
+Rynfield
+Rynpark
+Rynsoord
+Rysmierbult
+Ryukyu/M
+s/ok7
+SA
+SAA
+Saab/M
+Saaiplaas
+Saamstaan
+Saar/M
+Sabalele
+Sabbath/MS
+sabbatical/S
+SABC
+SABC1
+SABC2
+SABC3
+Sabelo
+Sabie
+Sabin/M
+Sabina/M
+Sabine/M
+sable/SM
+sabot
+sabotage/GSD
+saboteur/SM
+sabra/S
+Sabre
+sabre-toothed
+sabre/MDS
+Sabrina/M
+sac/DG
+Saccarine
+saccharin
+saccharine
+sacerdotal
+sachem/S
+sachet/SM
+Sachs/M
+sack/6JMS
+sackcloth/M
+sacker
+Sackfish
+sackful/S
+sackie-sackie
+sacking/M
+sacra/L
+sacral
+sacramental
+Sacramento/M
+sacred/Y
+sacredness
+sacrifice/MoDSG
+sacrificial
+sacrilege/MS
+sacrilegious/Y
+sacristan/MS
+sacristy/SM
+sacroiliac/S
+sacrosanct
+sacrum/M
+sad/PT3Y
+Sada
+Sadat/M
+Saddam/M
+sadden/Sd
+saddle's
+saddle/DGUS
+saddlebag/MS
+saddler/M
+Sadducee/M
+Sadie/M
+sadism/MS
+sadist/W1
+sadness/S
+sadomasochism/MS
+sadomasochist/MWS
+sadza
+SAE
+safari/MS
+safe/TYS
+safeguard/GSDM
+safekeeping
+safely/U
+safeness
+safety/S
+safflower/SM
+saffron/M
+SAfm
+sag/DSZG
+saga/SM
+sagacious/Y
+sagaciousness
+sagacity
+sage/KMS
+sagebrush/SM
+sagely
+sageness
+saggy/T
+Saginaw/M
+Sagittarius/M
+sago/MS
+Sagole
+saguaro/MS
+sahara
+Sahara/M
+Saharan/M
+sahib/SM
+said/U
+Saigon/M
+sail/JSDGM
+sailboard/SG
+sailboarder
+sailborder's
+sailborders
+sailcloth/M
+Sailfish
+sailfish/SM
+sailing-boat/MS
+sailing-master/MS
+sailing-ship/MS
+sailing-vessel
+sailor/SYM
+Sailray
+Sailskate
+Saint-Denis/M
+saint/DYMS
+sainthood/MS
+saintlike
+saintliness
+saintly/T
+Sakai/M
+sake/S
+saker/M
+Sakhalin/M
+Sakhile
+Sakhisiwe
+Sakhrol
+saki's
+sakkie-sakkie
+Sal/M
+salaam/M
+salacious/Y
+salaciousness
+salacity/M
+salad/SM
+salamander/SM
+salami/SM
+Salang
+salary/MDS
+Salas/M
+Salazar/M
+Salberau
+Saldanha
+sale/MA
+saleability/M
+saleable/U
+Salebona
+Salem/M
+Salerno/M
+saleroom/MS
+sales/m5
+salesclerk
+salesgirl/MS
+saleslady/S
+salesmanship
+salespeople/M
+salesperson/MS
+Salford
+salicylic
+salience/MZ
+salient/Y
+Salieshoek
+Saligna
+Salina/MS
+saline
+salinity/SM
+Salisbury/M
+saliva/My
+salivate/SNDG
+Salk/M
+Salle/M
+Sallie/M
+sallow/T
+sallowness
+sally/DMSG
+Sallyanne/M
+Salmon
+salmon/SM
+salmonella/M
+salmonellae
+Salo
+Salome/M
+salomi/S
+Salomon/M
+salon/SM
+saloon/SM
+salsa/SM
+Salsfred
+salsify/M
+Salsoneville
+SALT
+salt's
+salt-and-pepper
+salt-cat
+salt-cellar/MS
+salt-marsh/M
+salt-mashes
+salt-pan/SM
+salt-spoon/MS
+salt-water
+salt/CDGS
+salted/U
+salter/MS
+saltiness
+saltish
+saltless
+Saltley
+saltly
+saltness
+saltpetre
+Saltville
+salty/T
+salubrious/I
+salubriously
+salubriousness
+salubrity/M
+salutary
+salutation/M
+salutatory
+salute/DGNnS
+saluter/M
+Salvador/M
+Salvadoran/S
+Salvadorian/S
+salvage/MDGS
+salvageable
+salvager/M
+Salvation
+salvation/M
+Salvatore/M
+salve/RGnNMS
+salvo/M
+salvoes
+Salvokop
+Salzburg/M
+Sam/MZ
+Samanaville
+Samantha/M
+Samara/M
+Samaria/M
+Samaritan/SM
+samarium/M
+samba/MSGD
+sambal/S
+Sambo
+same
+sameness
+samizdat
+Sammie/M
+Sammy/M
+Samoa/M
+Samoan/S
+samoosa/S
+samovar/MS
+Samoyed/M
+samp
+sampan/MS
+sample/MRJSGD
+sampled/c
+sampling/c
+Sampras
+Sampson/M
+Samson/M
+Samsonite/M
+Samsung/M
+Samuel/SM
+Samuelson/M
+Samungu
+samurai/M
+San/M
+Sana'a/M
+Sanaa
+sanatorium/MS
+Sanborn/M
+Sanchez/M
+sanctification/M
+sanctifier/M
+sanctify/NSGnD
+sanctimonious/Y
+sanctimoniousness
+sanctimony/SM
+sanction/GDMS
+sanctioned/U
+sanctity/SM
+Sanctor
+sanctuary/MS
+sanctum/MS
+Sand
+sand/DMZ2GS
+sandal/GSMD
+Sandalwood
+sandalwood/M
+Sandanezwe
+Sandania
+Sandawe
+Sandbaai
+sandbag/SGDM
+sandbank/SM
+sandbar/S
+Sandberg
+sandblast/RSDG
+sandbox/MS
+Sandbult
+Sandburg/M
+sandcastle/S
+Sanddrift
+Sander's
+sander/S
+Sanderling
+Sanderson/M
+Sandersville
+Sandfields
+Sandfontein
+Sandhills
+Sandhurst
+Sandi/M
+Sandile
+sandman/M
+sandmen/M
+Sandoval/M
+Sandown
+sandpaper/dSM
+sandpiper/MS
+sandpit/MS
+Sandra/M
+Sandringham
+sandstone/SM
+sandstorm/MS
+Sandton
+Sandusky/M
+Sandvlei
+sandwich/SGMD
+sandy/T
+sane/TY
+sanely/I
+saneness
+Sanford/M
+sang
+sang-froid
+Sangcwaba
+Sanger/M
+Sango
+sangoma/S
+sangria/MS
+Sangro
+Sangrove
+sanguinary
+sanguine/Y
+sanguineness
+sanguineous/F
+Sanhedrin/M
+sanitary/IU
+sanitation
+sanitisation
+sanitise/DRSG
+sanitize/NRSGD
+sanity/ISM
+sank
+Sankara/M
+Sankontshe
+Sanlam
+Sanlamhof
+Sannieshof
+sans
+sanserif
+Sanskrit/WM
+Sanskritise/M
+Santa/M
+Santam
+Santana/M
+Santaville
+Santer
+Santiago/M
+Santo/SM
+Santombe
+Santoshaven
+Santoy
+São
+sap/DGZRp2MS
+Sapekoe
+sapience/M
+sapient
+sapling/SM
+sapphire/MS
+Sapporo/M
+sappy/T
+saprophyte/MSW
+Sapukanduku
+sapwood/M
+Sara/M
+Saracen/MS
+Sarafina
+Sarah/M
+Sarajevo/M
+Saran/M
+Sarasota/M
+Saratoga/M
+Sarawak/M
+sarcasm/MS
+sarcastic/Y
+sarcoma/MS
+sarcophagi
+sarcophagus/M
+sardine/MS
+Sardinia/M
+Sardinian
+sardonic/Y
+Sarepta
+Sargasso/M
+Sargassumfish
+Sargent/M
+Sargon/M
+sari/MS
+sarmie
+sarmy/S
+sarmys
+Sarnia
+Saron
+sarong/SM
+SARS
+sarsaparilla/MS
+sartorial/Y
+sartorius
+Sartre/M
+SASE
+Saselamani
+sash/DSM
+Sasha/M
+Saskatchewan/M
+Saskatoon/M
+Sasol
+Sasolburg
+Sassoon/M
+sat/d
+Satan/3M1
+satanic
+Satanism/M
+Satanist
+satchel/MS
+sate/S
+sateen/M
+satellite/MS
+satiable/I
+satiate/nDSNG
+satiation/M
+satiety/MS
+satin/MS
+satinwood/MS
+satiny
+satire/w1QS38MW
+satisfaction/SEM
+satisfactoriness
+satisfactory/UY
+satisfied/EU
+satisfies/E
+satisfy/BRDSGk
+satisfying/EU
+Sato
+satori/M
+satrap/MS
+saturate/CSNnGD
+saturated/U
+Saturday/SM
+Saturn/M
+saturnalia
+Saturnalia's
+saturnine/Y
+satyr/MWS
+satyriasis/M
+Sauber/M
+sauce/MS2ZG
+saucepan/MS
+saucer/S
+saucy/TY
+Saudi/SM
+sauerkraut/MS
+Saukville/M
+Saul/M
+Saulspoort
+Saulsville
+sauna/MS
+Saunders
+Saundershoogte
+Saunderson/M
+Saundra/M
+saunter/dS
+saunterer
+saurian/S
+sauropod/SM
+sausage/SM
+sauté/DSG
+Sauternes
+savable
+savage/PGDYyS
+savagery/SM
+Savannah's
+savannah/M
+savant/SM
+save/RGJSD
+saved/U
+saveloy/M
+saviour/MS
+savour/D2ZGMS
+savoury/MS
+Savoy
+savoy/SM
+Savoyard/M
+Savulani
+savvy/TD
+saw-horse
+saw-pit
+saw/DSMG
+sawbones/M
+sawdust/M
+Sawfin
+sawfly/SM
+sawmill/MS
+sawn
+sawn-off
+sawtooth
+sawyer/SM
+sax/MS
+saxifrage/SM
+Saxilby
+Saxon/MS
+Saxonsea
+Saxonwold
+Saxonworld
+Saxony/M
+saxophone/3MS
+Saxton/M
+say-so
+say/JRGS
+saying/M
+Sayre/M
+Sb/M
+SBA
+Sc/M
+scab/MSDZ2G
+scabbard/MS
+scabby/T
+scabies/M
+scabrous/Y
+scabrousness
+scad/M
+scaffold/GMJS
+scaffolding/M
+Scala/M
+scalability
+scalable
+scalar/MS
+scald/DGS
+scalder
+scale's
+scale/ADSG
+scaled/U
+scalene
+scaler/SM
+scaliness
+scallion/SM
+scallop/MdS
+scalloper/M
+scallywag/MS
+scalp/MDGSR
+scalpel/MS
+Scaly
+scaly/T
+scam/MDSG
+scamp
+scamper/dS
+scampi/M
+scan/ASDG
+scandal/8QSM
+scandalmonger/MS
+scandalous/Y
+scandalousness
+Scandinavia/M
+Scandinavian/S
+scandium/M
+scanner/MS
+scans/NX
+scansion/M
+scant/ZYz2
+scantness
+scanty/T
+scape/M
+scapegoat/MS
+scapegrace/MS
+scapula/M
+scapulae
+scapular/S
+scar/dSGMD
+scarab/SM
+Scaramouch/M
+Scarborough/M
+scarce/YT
+scarceness
+scarcity/MS
+scare/ZS2
+scarecrow/MS
+scaremonger/SM
+scaremongering
+scarer/M
+scarf/MD
+Scargill
+scarification/M
+scarifier
+scarify/NDSG
+scarlatina/M
+Scarlatti/M
+scarlet/M
+Scarlett/M
+scarp/MDGS
+scarves
+scary/YT
+scat/GD
+scathe/GDk
+scathed/U
+scatology/wM
+scatter/kdrJS
+scatterbrain/MDS
+scattering/M
+Scatty
+scavenge/RDSG
+SCCS
+scenario/MS
+scenarist/MS
+scene/1MSyW
+scenery/SM
+scent/CMGDS
+scented/U
+scentless
+sceptic/SMY
+sceptical
+scepticism/MS
+sceptre/DS
+sch.
+Schaefer/M
+Schaeffer/M
+Schafer/M
+Schagen
+Schauderville
+schedule's
+schedule/ADGS
+scheduled/U
+scheduler/MS
+Scheepershoogte
+Scheherazade/M
+schema/S1M
+schemata
+schematic/S
+scheme/RGMDWS
+Schenectady/M
+scherzi
+scherzo/SM
+Schick/M
+Schiller/M
+schilling/MS
+schism/MS
+schismatic
+schist/M
+schizo/S
+schizoid/S
+schizophrenia/M
+schizophrenic/SY
+schlep/DGS
+Schlitz/M
+Schloss/M
+Schmidt/M
+Schmitt/M
+schmooze
+schnapps
+schnauzer/SM
+Schneider/M
+schnitzel/SM
+Schoemansdal
+Schoemansville
+Schoenberg/M
+Schoenmakerskop
+Schofield/M
+scholar/MYS
+scholarship/MS
+scholastic/YS
+Schonkenville
+school-age
+school-day/S
+school-inspector
+school-leaver/MS
+school-leaving
+school-time
+school/GJSMD
+schoolbag
+schoolbook/SM
+schoolboy/SM
+schoolchild/M
+schoolchildren
+schooled/U
+schoolfellow/S
+schoolgirl/SM
+schoolgirlish
+schoolhouse/SM
+schooling/M
+schoolmarm
+schoolmaster/MS
+schoolmate/S
+schoolmistress/MS
+schoolroom/MS
+schools/K
+schoolteacher/MS
+schooner/MS
+Schoongezicht
+Schornville
+Schottky/M
+Schrödinger/M
+Schroeder/M
+Schroedinger/M
+Schubert/M
+Schuinshoogte
+Schultz/M
+Schulz/M
+Schulzendal
+Schumacher/M
+Schumann/M
+schuss/M
+Schuster/M
+Schuyler/M
+Schuylkill/M
+schwa/SM
+Schwab/M
+Schwartz/M
+Schwartzkopf/M
+Schwarzenegger/M
+Schweitzer/M
+Schweizer-reneke
+Schweppes/M
+sciatic
+sciatica/M
+science/FMKS
+scientific/UY
+scientist/SM
+Scientology/M
+Scilly/M
+scimitar/SM
+scintilla/nM
+scintillate/GDS
+scintillation/M
+scion/MS
+Scipio/M
+scissor/S
+scissoring
+Scissortail
+scleroses
+sclerosis/M
+sclerotic
+scoff/DGSR
+scold/RDSJG
+scoliosis
+sconce/M
+scone/MS
+scoop/RSG6MD
+scoopful/S
+scoot/RDSG
+scope/MDSG
+scorbutic
+scorch/SGRkD
+score's
+score/feDSG
+scoreboard/SM
+scorecard/MS
+scorekeeper/MS
+scoreless
+scoreline
+scorer/MS
+scorn/RjMGSD6
+scornfulness
+Scorpio/MS
+scorpion/MS
+scot
+scot-free
+Scot/5mMS
+scotch/SGMD
+Scotia/M
+Scotland/M
+Scott/M
+Scottburgh
+Scottie/MS
+Scottish
+Scottsdale/M
+Scottsdene
+Scottsville
+Scotty's
+scoundrel/MSY
+scour/RDGS
+scourge/DGMS
+scourger/M
+scout/MDSG
+scouter/M
+scouting/M
+scoutmaster/MS
+scowl/DGS
+scowler/M
+Scrabble's
+scrabble/SGD
+scrag-end
+scrag/MDGZS
+scraggly/T
+scraggy/T
+scram/DGS
+scramble/CDRSG
+scrambled/U
+scrambler/UM
+scrambles/U
+scrambling/U
+Scranton/M
+scrap/rdZSDRG
+scrapbook/MS
+scrape/JS
+scrapheap/MS
+scrapie
+scrappy/T
+scrapyard/MS
+scratch/GRJS2DzZ
+scratched/U
+scratchy/T
+scrawl/DGSY
+scrawly/T
+scrawniness
+scrawny/T
+scream/kSRDG
+scree/M
+screech/DGZSM
+screecher/M
+screechy/T
+screed/MS
+screen/GJMDS
+screened/U
+screener
+screening/M
+screenplay/MS
+screenwriter/SM
+screw's
+screw/UDSG
+screwdriver/SM
+screwer/M
+screwiness
+screwy/T
+Scriabin/M
+scribble/RSGJD
+scribe's
+scribe/CSKGDI
+scriber/IKMC
+Scribner/M
+scrim/MS
+scrimmage/SDGM
+scrimmager/M
+scrimp/GDS
+scrimshaw/MDGS
+scrip/M
+Scripps/M
+script's/K
+script/DFMSG
+scripted/U
+scriptorium
+scripts/K
+scriptural
+scripture/MoS
+scriptwriter/SM
+scriptwriting/M
+scrivener/MS
+scrofula/M
+scrofulous
+scroll/M7DGS
+scrollbar/MS
+Scrooge/MS
+scrota
+scrotal
+scrotum/M
+scrounge/RSGD
+scrub/RZGDS
+scrubbier
+scruff/M2SZz
+scruffy/T
+Scruggs/M
+scrum-half
+scrum/MS
+scrummage/MSGD
+scrumptious/Y
+scrunch/SGDZ
+scruple/GDSM
+scrupulosity/MS
+scrupulous/YU
+scrupulousness/M
+scrutineers
+scrutinised/U
+scrutiny/Qs-q89SM
+SCSI
+scuba/MS
+scud/DGS
+Scudamore/M
+scuff/GSD
+scuffle/DSG
+scull/RGSMD
+sculler/Z
+scullery/MS
+Sculley/M
+scullion/MS
+sculpt/SDG
+sculptor/MS
+sculptress/SM
+sculptural
+sculpture/MoDSG
+scum/MDGZ
+scummy/T
+Scunthorpe/M
+scupper/MS
+scuppered
+scurf/MZ
+scurfy/T
+scurrility/SM
+scurrilous/PY
+scurry/DSGJ
+scurvy/YS
+scuttle/MDSG
+scuttlebutt/SM
+Scylla/M
+scythe/DMSG
+SDI
+Se
+Sea
+sea's
+sea-chest
+sea-girt
+sea-green
+sea/cS
+Seabe
+seabed
+seaboard/M
+seaborne
+Seabrook/M
+seafarer/MS
+seafaring/S
+seafood/M
+Seaforth
+seafront/SM
+Seagate/M
+seagoing
+Seagram/M
+seagull/S
+Seagulls
+seahorse/S
+seal's
+seal/UGADS
+sealant/SM
+sealer/M
+sealskin
+seam/SGDMpZ
+seaman/MY
+seamanship/M
+seamen/M
+seamer/M
+seamier
+seamless/Y
+seamlessness
+SeaMonkey/M
+Seamoth
+seamstress/SM
+Seamus/M
+Sean/M
+séance/MS
+seance/S
+seaplane/SM
+seaport/SM
+seaquake/M
+sear/GkSD
+search/DRJBSkG
+searchable/U
+searched/A
+searcher/AMS
+searches/A
+searchlight/MS
+Sears's
+seascape/MS
+seashell/SM
+seashore/MS
+seasick/P
+seaside/M
+season/7ldMoS
+seasonable/U
+seasonableness/U
+seasonably/U
+seasonal/UY
+seasonality
+seasoned/U
+seasoning/M
+seat's
+seat/AGSUD
+seatbelt/S
+seater/M
+Seatides
+SEATO
+Seattle/M
+seawall/S
+seaward/S
+seawater/S
+seaway/SM
+seaweed/MS
+seaworthiness
+seaworthy/U
+sebaceous
+Sebastian/M
+Sebayeng
+Sebokeng
+seborrhoea/W
+sec
+sec.
+secant/MS
+secateurs
+secede/SDG
+seceder
+secession/SM3
+secessionist
+seclude/DGXSVN
+seclusion/M
+second-best
+second-class
+second-degree
+second-hand
+second-rate
+second/DRGYLS
+secondariness
+secondary/Y
+secrecy/MS
+secret/vuVdYS
+secretarial
+secretariat/MS
+secretary/MS
+Secretarybird
+secretaryship/SM
+secrete/SnN
+secretion/M
+sect's/I
+sect/ESI
+sectarian/S
+sectarianism/SM
+sectary/MS
+Section
+section/EMS
+sectional/8YSQ
+sectionalism/MS
+sectioned/A
+sectioning
+sections/A
+sector/EMS
+sectoral
+sectored
+secular/-8YqQ3
+secularism/SM
+secularist
+secularity/M
+Secunda
+secure/IY
+secured/U
+securer
+secures
+securing
+security/MIS
+securocrat
+Sedan
+sedan/MS
+Sedarville
+sedate/SnVDYGN
+sedateness
+sedation/M
+sedative/S
+sedentary
+Seder/MS
+Sederpark
+sedge/SZM
+Sedgefield/M
+Sedgemoor/M
+Sedgwick/M
+sedgy/T
+sediment/nSMN
+sedimentary
+sedimentation/M
+sedition/SM
+seditious/Y
+seditiousness
+seduce/RnVSDvGuN
+seduction/M
+seductive/P
+seductress/MS
+sedulous/Y
+see-saw/SDMG
+see-through
+see/89RdSG
+seed's
+seed-bed/SM
+seed-cord
+seed-eater/MS
+seed-potato
+seed-vessel
+seed/DASG
+seedbed/MS
+seeded/U
+seeder/MS
+seedless
+seedling/SM
+seedy/PT
+seeing/cU
+seek/GRS
+Seeley/M
+seem/kYDGS
+Seemeeupark
+seemliness/U
+seemly/PT
+seen/cU
+seep/DGS
+seepage/MS
+Seepunt
+seer/cMS
+seersucker/SM
+sees/c
+Seesig
+seethe/SDG
+Segakwaneng
+segment/NoDGSMn
+segmental
+segmentation/M
+segmented/U
+Segopje
+Segovia/M
+segregable
+segregate/CGnDSN
+segregated/U
+segregation/CM
+segregationist/MS
+segregative
+segue/DGS
+Segundo/M
+Segwaelane
+Sehlakwane
+Sehume
+Seidel/M
+seigeury/S
+seigneur/MS
+seigneurial
+seignior/MSZ
+seigniorage
+seigniorial
+seigniory/S
+Seiko/M
+seine/GM
+Seinfeld/M
+seisin
+seismal
+seismic/Y
+seismical
+seismogram
+seismograph/RSWZM
+seismography/M
+seismology/w1M3
+seismometer/S
+Seisoville
+seizable
+seizure/SM
+Sekama
+Sekampaneng
+Sekgakgapeng
+Sekgopo
+Sekhing
+Sekhukhune
+Sekhung
+Sekwati
+Selahliwe
+Selassie/M
+Selborne
+Selbourne
+Selby/M
+Selcourt
+seldom
+select/DGVvu7Sx
+selected/KACU
+selecting/K
+selection's
+selection/A
+selections
+selectivity/M
+selector/MS
+selects/CKA
+Seleka
+Selemoseng
+Selena/M
+selenate
+selenite/M
+selenium/M
+selenographer/SM
+selenography/M
+selenology/3
+Selepe
+Seleucid/M
+self-abasement
+self-absorbed
+self-absorption
+self-abuse
+self-addressed
+self-adhesive
+self-analysis
+self-appointed
+self-approval
+self-assembly
+self-assertion
+self-assertive
+self-assurance
+self-assured
+self-aware
+self-awareness
+self-catering
+self-censorship
+self-centred
+self-cleaning
+self-closing
+self-command
+self-confessed
+self-confidence
+self-confident/Y
+self-congratulation
+self-congratulatory
+self-conscious/Y
+self-consciousness
+self-consistency
+self-consistent
+self-contained
+self-contradiction
+self-contradictory
+self-control
+self-correcting
+self-critical
+self-criticism
+self-deceit
+self-deception
+self-defeating
+self-defence
+self-delusion
+self-denial
+self-denying
+self-deprecating
+self-destruct/SDVG
+self-destruction
+self-determination
+self-determined
+self-discipline
+self-doubt
+self-effacing
+self-employed
+self-esteem
+self-evidence
+self-evident/Y
+self-examination
+self-explanatory
+self-expression
+self-feeding
+self-financing
+self-fulfilling
+self-fulfilment
+self-glorification
+self-governing
+self-government
+self-hate
+self-hatred
+self-help
+self-image
+self-immolation
+self-importance
+self-important
+self-imposed
+self-improvement
+self-induced
+self-indulgence
+self-indulgent
+self-inflicted
+self-interest/D
+self-involved
+self-justification
+self-justifying
+self-knowledge
+self-loading
+self-locking
+self-love
+self-made
+self-motivated
+self-opinionated
+self-parody
+self-perpetuating
+self-pity
+self-pollination
+self-portrait/S
+self-possessed
+self-possession
+self-preservation
+self-proclaimed
+self-propagating
+self-propelled
+self-protection
+self-raising
+self-recording
+self-referential
+self-regard
+self-regulating
+self-regulation
+self-regulatory
+self-reliance
+self-reliant
+self-respect/G
+self-restrained
+self-restraint
+self-revelation
+self-righteous/Y
+self-righteousness
+self-sacrifice/G
+self-satisfaction
+self-satisfied
+self-seeker/S
+self-seeking
+self-selecting
+self-service
+self-serving
+self-styled
+self-sufficiency
+self-sufficient
+self-support/G
+self-surrender
+self-sustained
+self-sustaining
+self-tapping
+self-taught
+self-torture
+self-willed
+self-winding
+self-worth
+self/p
+Selfbou
+selfish/YU
+selfishness/U
+selfless/Y
+selflessness
+selfness
+Selfridge/M
+selfsame
+selfsameness
+Seljuk/M
+Selkirk/M
+Selkup
+sell-by
+sell-off
+sell-out
+sell/eGcASf
+Sellafield
+seller/AMS
+Selma/M
+Selobala
+Selosesha
+Selota
+seltzer/S
+selvage/MS
+selvedge/SM
+selves
+Selwana
+Selwyn
+Semaneng
+semantic/S3Y
+semanticist
+semaphore/MSGD
+semblance/AESM
+semeiology/3
+semeiotic/S
+semeiotician
+semen/M
+semester/SM
+semi-annual/Y
+semi-automatic
+semi-conscious
+semi-detached
+semi-duplex
+semi-final/S
+semi-flexible
+semi-independent
+semi-infinite
+semi-monthly
+semi-official/Y
+semi-permanent/Y
+semi-permeable
+semi-precious
+semi-professional/YS
+semi-rigid
+semi-skilled
+semi-skimmed
+semi-solid
+semi-tone/SM
+semi-trailer
+semi-vowel
+semi-weekly
+semi-yearly
+semi/MS
+semiarid
+semicircle/MS
+semicircular
+semicolon/MS
+semiconducting
+semiconductor/MS
+semifinal/3MS
+semifinalist
+seminal/Y
+seminar/SM
+seminarian/MS
+seminary/SM
+Seminole/SM
+semiology/3
+semiotic/S
+semiotician
+semiprecious
+semiprivate
+semiquavers
+semisweet
+Semite/MSW
+Semitic/SM
+Semitism/M
+semitone/SM
+semitransparent
+semitropical
+semolina/M
+Semorishi
+sempiternal/Y
+sempiternity
+semplice
+sempre
+sempstress/MS
+Semtex
+Sen.
+senate/SM
+senator/MS
+senatorial
+send-off/S
+send/RSG
+Sendai/M
+Senderwood
+Sendmail
+sends/A
+Seneca/M
+Senegal/M
+Senegalese
+Senekal
+senescence/M
+senescent
+Sengatane
+senile
+senility/SM
+senior/SM
+seniority/SM
+senna/M
+Sennacherib/M
+Senoane
+señor/M
+Señora/M
+señora/MS
+señores
+señorita/SM
+sensate/x
+sensation/M
+sensational/Q38
+sensationalism/SM
+sensationalist/W
+sense/bGnDpMS
+senseless/Y
+senselessness
+sensibility/ISM
+sensible/IY
+sensibleness
+sensibly/I
+sensitise/CnDSG
+sensitiser/MS
+sensitive/IY
+sensitiveness
+sensitivity/ISM
+sensitize/CDSNnG
+sensitizer/MS
+sensor/MS
+sensory
+sensual/FY
+sensualist/SM
+sensuality/MS
+sensuous/Y
+sensuousness
+sent/KEAUF
+Sentech
+sentence/DSGM
+sentential
+sententious/Y
+sentience/IM
+sentient/I
+sentiently
+sentiment/KMS
+sentimental/qQ-9s3Y8
+sentimentalism/MS
+sentimentalist
+sentimentality/SM
+sentinel/DMGS
+Sentrarand
+Sentrum
+sentry/SM
+Senwamokgope
+Senzokuhle
+Seoding
+Seoul/M
+sepal/SM
+Sepanapudi
+separability/I
+separable/YI
+separableness
+separably/I
+separate/BYnDS3NVG
+separateness
+separation/M
+separatism/MS
+separator/MS
+Sepedi
+Sephai
+Sephardic
+Sephukubje
+sepia/SM
+Seplan
+Sepoy's
+sepoy/S
+sepses
+sepsis
+sept/MWN
+septa/M
+septagon
+septate
+September/SM
+septennial/Y
+septet/MS
+septicaemia
+septicaemic
+septillion/HS
+septuagenarian/SM
+Septuagint/MS
+septum/M
+sepulchral
+sepulchre/oMS
+seq.
+seqq.
+sequacious/Y
+sequacity
+sequel/SM
+sequence's/F
+sequence/FSA
+sequenced/A
+sequencer/MS
+sequencing/A
+sequent/F
+sequential/FY
+sequentiality/F
+sequester/dnSN
+sequestrate/DSG
+sequestration/M
+sequin/MDS
+sequoia/SM
+Sequoya/M
+sera's
+Serafin/M
+seraglio/SM
+serape/S
+seraph/WSM1
+seraphim/M
+Serb/SM
+Serbia/M
+Serbian/S
+Serbo-Croatian
+sere
+Serena/M
+serenade/DGMS
+serenader/M
+serendipitous/Y
+serendipity/SM
+serene/TY
+Serengeti/M
+serenity
+Serer
+serf/SM
+serfdom/MS
+serge/M
+sergeant/SM
+Sergio/M
+Seri/M
+serial/q-8QSY
+series
+serif/DSM
+serigraph/SM
+serious/Y
+seriousness
+sermon/QM8S
+serology/1wM
+serotonin
+serous
+serpent/MS
+serpentine
+serpiginous
+Serrano/M
+serrate/nND
+serration/M
+serried
+serum/MS
+servant/MS
+serve/FGCDSKA
+server/CSKM
+service/BDmSM5G
+serviceability/M
+serviceable/U
+serviceableness
+serviced/U
+services/E
+serviette/SM
+servile/Y
+servility/MS
+serving's
+serving/SC
+servitor/SM
+servitude/SM
+servo/S
+servomechanism/MS
+servomotor/SM
+sesame/SM
+Seseng
+Sesfontein
+Seshego
+Seshibitswe
+Sesobe
+Sesotho
+sesquicentennial/S
+sessile
+session/SM
+Sesulu
+set-aside
+set-up/S
+set/eMS
+Setabataba
+Setaria
+setback/S
+Seth/M
+Setlagole
+Seton/M
+sets/IA
+Setswana
+sett/GM7RJSD
+settable/A
+settee/SM
+setting/K
+settle/ALSGD
+settled/U
+settler/MS
+Settlers
+settles/U
+settling/U
+Seuss/M
+Sevastopol/M
+seven/HSM
+Sevenoaks
+seventeen/H
+seventy-eight/H
+seventy-first/S
+seventy-five/H
+Seventy-four
+seventy-four/H
+seventy-nine/H
+seventy-one
+seventy-onefold
+seventy-second/S
+seventy-seven/H
+seventy-six/H
+seventy-three/H
+seventy-two
+seventy-twofold
+seventy/HS
+sever/dES
+severable
+several
+severalty/M
+severance/SM
+severe/YTo
+severity/SM
+Severn/M
+Seville/M
+sew/AGSD
+sewage/M
+Seward/M
+sewer/SM
+sewerage/SM
+sewn
+sex-linked
+sex-starved
+sex/SzD3pZ2G
+sexagenarian/MS
+sexed/cf
+sexism/SM
+sexology/3M
+sexpot/MS
+sextant/SM
+sextet/SM
+sextillion/M
+sexton/MS
+sextuple/GD
+sextuplet/MS
+sexual/Y
+sexuality/MS
+sexy/T3
+Seychelles/M
+Seyfert/M
+Seymour/M
+Sezela
+sf
+sforzandi
+sforzando/S
+Sgt.
+shabbiness
+shabby/TY
+shack/SMDG
+shackle's
+shackle/SUDG
+shackler/M
+Shackleton/M
+Shad
+shade/p2DZMSGJ
+shaded/U
+shading/M
+shadow's
+shadow-boxing
+shadow/cDSG
+shadower/M
+shadowiness
+shadowless
+shadowy
+shady/YT
+Shafer/M
+Shaffer/M
+shaft/GSMD
+Shaftesbury/M
+shag/GDSM2Z
+shaggy/T
+shah/SM
+Shakadza
+Shakashead
+Shakaskraal
+Shakaville
+shake-out
+shake-up
+shake/RGS72Z
+shakeable/YU
+shakeably/U
+shakedown
+shaken/U
+Shakespeare/M
+Shakespearean/S
+Shakespearian
+shaking/M
+Shakung
+shaky/TY
+shale/M
+Shaleng
+shall
+Shallcross
+shallot/SM
+shallow/STYD
+shallowness
+shalom
+Shalom's
+sham/GMDSd
+shaman/MS
+shamanism
+shamanistic
+shamble/GSD
+shame/S6Mjp
+shamefaced/Y
+shamefulness
+shameless/Y
+shamelessness
+shammer
+shammy's
+shampoo/DGSM
+Shamrock
+shamrock/MS
+Shamus/M
+Shan
+shan't
+shandy/M
+Shane/M
+Shangaan
+Shange
+Shanghai's
+shanghai/GSMD
+Shangrila
+shank/MDS
+Shannon/M
+shantung/M
+shanty/SM
+shape's
+shape/aSGDA
+shapeless/PY
+shapeliness
+shapely/T
+shaper/MS
+Shapiro/M
+shard/MS
+share-out
+share/7DRMSG
+shared/U
+shareholder/SM
+shareholding/S
+shareware
+Shari/M
+Sharif
+Sharimapark
+shark/MS
+sharkskin/M
+Sharon/M
+Sharonlea
+sharp/YTS
+Sharpe/M
+sharpen/dAS
+sharpened/U
+sharpener/S
+Sharpeville
+sharpness
+sharpshooter/SM
+sharpshooting
+Sharpville
+Shasta/M
+Shatale
+shatter-proof
+shatter/dSk
+Shaun/M
+Shauna/M
+shave/RDSJG
+shaven/U
+Shavian
+Shaw/M
+Shawano/M
+Shawbury
+shawl/SMD
+shawm/SM
+Shawn/M
+Shawnee/MS
+Shawuka
+Shay/M
+Shayamoya
+Shayandima
+shchi
+she'd
+she'll
+she/DM
+Shea/M
+sheaf/M
+shear/GDRS
+sheath/DJMSG
+sheathe/UGD
+sheathing/M
+sheave/DSG
+Sheba/M
+shebeen/S
+Sheboygan/M
+shed/SMG
+sheen/MSZ
+sheeny/T
+sheep-dip
+sheep/M
+sheepdog/MS
+sheepfold/M
+sheepish/YP
+sheeplike
+Sheepmoor
+sheepshank/SM
+sheepskin/SM
+sheepwalk/MS
+sheer/TSYDG
+sheerness
+sheet/GSMD
+sheeting/M
+Sheffield/RM
+sheik/SM
+sheikdom/MS
+sheikh/SM
+Sheila/M
+Sheilah/M
+shekel/SM
+Shelagh/M
+Shelby/M
+Sheldon/M
+shelf-life
+shelf-mark
+shelf-room
+shelf/6M
+shelfful/S
+shelflike
+Shelford/M
+Shelia/M
+shell/MDSG
+Shell/Y
+shellac/SGD
+shelled/U
+Shelley/M
+shellfire/M
+shellfish/M
+Shellie/M
+Shelly/M
+Sheltand/M
+shelter/dSMr
+sheltered/U
+Shelton/M
+shelve/SGD
+shelver/M
+shelving/M
+Shem/M
+Shemula
+Shenandoah/M
+shenanigan/MS
+Shenlanga
+Shepard/M
+shepherd/SMGD
+shepherdess/SM
+Sheppard/M
+Shepstone/M
+Sheraton/M
+sherbet/MS
+sherd's
+sherds
+Sheri/M
+Sheridan/M
+sheriff/SM
+Sherlock/M
+Sherman/M
+Sherpa/SM
+Sherri/M
+Sherrie/M
+sherry/SM
+Sherwin/M
+Sherwood/M
+Sheryl/M
+Sheshegu
+Shetland/S
+Shevardnadze/M
+Shi'ite
+shiatsu
+shibboleth/SM
+shield/GDMS
+shielded/U
+shift/RSZ2DzpG
+shiftless/Y
+shiftlessness/S
+shifty/TP
+Shiite/MS
+Shikoku/M
+Shikra
+shillelagh/SM
+shilling/MS
+Shillong
+Shiloh/M
+Shiluvane
+shim/DZSMG
+Shimange
+shimmer/dSZ
+shimmy/DGMS
+shin-bone/SM
+shin-guard
+shin-pad/MS
+shin/MrSGdkD
+shindig/SM
+shine/eSG
+shingle/GMSD
+Shingwedzi
+shininess
+Shinto/MS
+Shintoism/S
+Shintoist/MS
+shiny/T
+ship's
+ship-breaker/MS
+ship-broker/MS
+ship-fever
+ship-rigged
+ship/ALSG4D
+shipboard/M
+shipborne
+shipbuilder/SM
+shipbuilding
+shipload/MS
+shipmate/SM
+shipmen/M
+shipowner/MS
+shippable
+shipper/SM
+shipping/M
+shipshape
+shipwreck/GSMD
+shipwright/SM
+shipyard/SM
+Shiraz/M
+shire/MS
+shirk/RSDG
+Shirley/M
+shirr/SDG
+shirt-front/S
+shirt-tail/S
+shirt/GpSMD
+shirting/M
+shirtsleeve/SM
+shit/SGZ
+shitty/T
+Shiva/M
+shiver/dSkZ
+shiverer/M
+Shiviti
+Shixini
+shoal/MS
+shock/DRkSG
+Shockley/M
+shockproof
+shod/2Zz
+shoddy/PT
+shoe's/c
+shoe/MGpS
+shoebox
+shoehorn/DGMS
+shoelace/MS
+shoemaker/SM
+shoemaking
+shoes/c
+shoestring/MS
+shoetree/MS
+shogun/MS
+shogunate/SM
+Shoji/M
+Shona
+shone/e
+Shongweni
+shoo/SDG
+shook
+shoot-out/SM
+shoot/7RGSJ
+shooting-box/SM
+shooting-brake
+shooting-break
+shooting-coat/S
+shooting-jacket/SM
+shooting-range
+shooting-stick/SM
+shooting/cf
+shoots/cf
+shop-boy/SM
+shop-floor
+shop-girl/SM
+shop-soiled
+shop-window/MS
+shop-worn
+shop/GMRDS
+shopkeeper/MS
+shopkeeping
+shoplift/DRSG
+shoplifting/M
+shopping/M
+Shoprite
+shore/DSMG
+shorebird/S
+Shoreham
+shoreline/MS
+shoreward
+Shorewood/M
+shorn/U
+short-change/GSD
+short-circuit
+short-circuiting
+short-handed
+short-list/GD
+short-lived
+short-range
+short-sighted/Y
+short-sightedness
+short-staffed
+short-term
+short-termism
+short-winded
+short/PYDTGSZ
+shortage/MS
+shortbread/SM
+shortcake/SM
+shortcoming/MS
+shortcrust
+shorten/dJS
+shortening/M
+shortfall/SM
+shorthand/M
+shorthorn/SM
+shortish
+shortstop/SM
+shorty/M
+Shoshone/SM
+Shostakovich/M
+Shostakovitch/M
+shot's
+shot-put
+shot/cf
+shotgun/SM
+shots
+should/R
+shoulder-high
+shoulder-length
+shoulder/d
+shouldn't
+shout's
+shout/eDGS
+shouter/SM
+shove/GDS
+shovel/6RDMGS
+shovelful/MS
+show-off/S
+show-piece/MS
+show-place/MS
+show/2mZRzJSGD
+showbiz
+showcase/SGMD
+showdown/MS
+shower-bath/S
+shower/dZ
+showgirl/MS
+showing/M
+showmanship/M
+shown
+showroom/MS
+showy/PT
+shrank/K
+shrapnel/M
+shred/DRGSM
+Shreveport/M
+shrew/MS
+shrewd/TPY
+shrewish/PY
+Shrewsbury/M
+shriek/RSDMG
+shrift/MS
+shrike/MS
+shrill/PTSGYD
+shrimp/MS
+Shrimpfish
+shrine/MS
+shrink-wrapped
+shrink/KSG
+shrinkable
+shrinkage/MS
+shrinker/M
+shrinking/Y
+shrive/GS
+shrivel/DSG
+shriven
+Shropshire/M
+shroud/SMDG
+Shrove
+Shrovetide/M
+shrub/MZS
+shrubbery/MS
+shrubby/T
+shrug/DGS
+shrunk/K
+shrunken
+shtick/S
+shudder/SZd
+shuffle-board
+shuffle/RDSG
+shuffled/A
+shuffles/A
+shuffling/A
+Shukron
+shun/DGS
+shunt/SDG
+shunter/M
+Shuping
+shush/GDS
+shut-down/SM
+shut-eye
+shut-off/M
+shut-out
+shut/RGS
+shutter/pd
+shuttle/MDSG
+shuttlecock/SM
+shy/TGSD
+shyer
+shyest
+Shylock/M
+shyly
+shyness/M
+Si/M
+Siabonga
+Siam/M
+Siamese/M
+Sib/M
+Sibakabakeni
+Sibangweni
+Sibasa
+Sibelius/M
+Siberia/M
+Siberian/S
+Sibhayi
+sibilance/MZ
+sibilancy/M
+sibilant/YS
+Sibley/M
+sibling/MS
+Sibomvu
+Sibuyile
+Sibyl/M
+Sibylline
+sic/DTG
+siccative
+Sicelo
+Sicilian/S
+Siciliana/M
+Sicily/M
+sick-benefit/MS
+sick-leave
+sick-list
+sick-pay
+sick/PY
+sickbay/M
+sickbed/S
+sicken/dkS
+sickie/MS
+sickish
+sickle-bill
+sickle-cell
+sickle-feather
+sickle/GS2M
+sickly/T
+sickness/S
+sickroom/SM
+Sid/M
+Sidamo
+Sidbury
+side's/f
+side-arms
+side-band/SM
+side-bet
+side-by-side
+side-car/MS
+side-chapel
+side-door
+side-drum/MS
+side-on
+side-saddle
+side-slip
+side-splitting
+side-street/SM
+side-stroke/GSMD
+side-swipe/GDSM
+side-table/S
+side-trip
+side/ASGKD
+sidebar/MS
+sideboard/MS
+sideburns
+sided/Y
+sidedness
+sidekick/MS
+sidelight/MS
+sideline/DSM
+sidelong
+sidereal
+sides/efI
+Sidesaviva
+sideshow/MS
+sidestep/SDG
+sidetrack/SDG
+sidewards
+sideways
+sidewinder/MS
+sidewise
+siding/SM
+Sidlamafa
+sidle/SGD
+Sidney/M
+SIDS
+Sidumela
+Sidumo
+Sidwadweni
+Sidwell
+siege/SM
+Siegel/M
+Siegfried/M
+Siemens/M
+Siena/M
+sienna/M
+Sierra/M
+sierra/MS
+siesta/SM
+siestog
+sieve/DSMG
+Sifahla
+sift/ASGD
+sifter/MS
+sifting/S
+Siga
+SIGGRAPH/M
+sigh/DGS
+sight-line
+sight-read/GR
+sight/IScM
+sighted/U
+sightedly
+sightedness
+sighter/M
+sighting/S
+sightless/Y
+sightliness/U
+sightly/TP
+sightsee/RG
+Sigingqini
+sigma/M
+sigmoid
+Sigmund/M
+sign's/C
+sign/FRGCSAD
+signage
+signal's
+signal-to-noise
+signal/ADG
+signalise/DGnS
+signalize/NDnGS
+signaller/MS
+signally
+signalman/M
+signalmen/M
+signals
+signatory/SM
+signature/SM
+signboard/MS
+signed/Uf
+signet-ring/SM
+signet/SM
+significance/MSI
+significant/YI
+signification/M
+signifier
+signify/NGnSD
+signing/S
+signor/FM
+signora/M
+signori
+signorina/SM
+signpost/DGSM
+Sigoga
+Sigrid/M
+Sigubudwini
+Sihanouk/M
+Sihlabelelo
+Sihlabeni
+Sihlangu
+Sihlito
+Sikh/MS
+Sikhism/SM
+Sikobobo
+Siksika
+silage/SM
+Silas/M
+silence/DRSGM
+silent/Y
+Silesia/M
+silhouette/MSDG
+silica/M
+silicate/MS
+siliceous
+silicon/M
+silicone/MS
+silicoses
+silicosis/M
+silk-screen/MS
+silk/MZ2Sz
+Silkaatskop
+silken
+silkscreen
+silkworm/MS
+silky/TP
+sill/Y2SM
+Sillery
+silly/TSP
+silo/SM
+silt/MGZNDS
+siltation/M
+siltstone/M
+silty/T
+Silumaville
+Silurian
+Silva/M
+Silvamonte
+silver/dSMZ2
+Silverdale
+Silverfields
+Silverfish
+silverfish/MS
+Silverglade
+Silverglen
+Silverhurst
+Silverman/M
+Silversands
+silversmith/MS
+Silverspots
+Silverstein/M
+Silverstone
+Silverton
+Silvertondale
+Silvertown
+silverware/SM
+silvery/T
+Silvester/M
+Silvia/M
+Silwerkrans
+SIM
+Simarlo
+Simba
+Simbolia
+SIMD
+Simdlagentsha
+Simeon/M
+Simfonie
+simian/S
+similar/EY
+similarity/EMS
+Simile
+simile/MS
+similitude/ME
+Simla
+simmer/Sd
+Simmerfield
+Simmons/M
+Simms/M
+Simmunye
+simon
+simon-pure
+Simon/M
+Simondium
+Simondsrus
+Simone/M
+simoniacal
+Simonsberg
+Simonswyk
+simony/SM
+simoom
+simpatico
+simper/Sd
+simple-minded/Y
+simple-mindedness
+simple/c
+simpleness
+simpler
+simplest
+simpleton/SM
+simplex/S
+simplicity/MS
+simplified/U
+simplifier/SM
+simplify/cNDSGn
+simplistic/Y
+simply
+Simpson/M
+SIMULA/M
+simulacrum/M
+simulate/EGDSnN
+simulation/EM
+simulative
+simulator/EMS
+simulcast/S
+simultaneity/MS
+simultaneous/Y
+simultaneousness
+sin's/A
+sin/jpRSMDG6
+Sinai/M
+Sinakho
+Sinamuva
+Sinangwana
+Sinathemba
+Sinathing
+Sinatra/M
+since
+sincere/YT
+sincerely/I
+sincereness
+sincerity/IMS
+Sinclair/M
+Sindbad/M
+Sindhi/M
+sine/M
+sinecure/SM
+sinecurist/M
+Sinethemba
+sinew/SZM
+sinfonia/M
+sinful/P
+sinfulness/S
+sing-along
+sing-song
+sing/DRG7kS
+Singapore/M
+Singaporean/S
+singe/S
+singeing
+Singeni
+singer-songwriter
+Singhalese
+single-decker/S
+single-handed/Y
+single-line
+single-minded
+single-seater
+single/PDSG
+singlet/SM
+singleton/SM
+singsong/MDS
+singular/q-YS
+singularity/MS
+sinister/Y
+sinisterness
+sinistral/Y
+sink-hole/MS
+sink/R7GS
+sinkable/U
+Sinksabrug
+sinless/Y
+sinlessness
+Sino-Tibetan
+Sinoville
+Sinqumeni
+sins/A
+sinter/M
+sintered
+Sinthumule
+sinuosity
+sinuous/YP
+sinus/MS
+sinusitis/M
+sinusoid/MoS
+sinusoidal
+Siobhan/M
+Sioux/M
+sip/RGSD
+Sipetu
+siphon/dSM
+Siphosabadletshe
+Siqungweni
+sir/dMS
+sire's
+sire/CDGS
+siren/SM
+Sirius/M
+sirloin/MS
+sirocco/MS
+sis/Z
+sisal/MS
+sissified
+sissy/SM
+sister-in-law
+sister/ASM
+sisterhood/MS
+sisterly/P
+sisters-in-law
+Sistine
+Siswant
+Siswati
+siSwati
+Sisyphean
+Sisyphus/M
+sit-in/S
+sit/ASG
+sitar/3MS
+sitarist
+sitcom/SM
+Site
+site/SDM
+Sithangameni
+Sithembile
+Sitofile
+sitter/MS
+sitting/MS
+Sittingbourne
+situate/GNnD
+situation/M
+situational
+situationist
+Sityam
+Siva/M
+six-fold
+six-pack/S
+six-shooter/S
+six/MHS
+Sixambuzi
+sixer
+sixpence/SM
+sixpenny
+sixteen/HM
+sixth-former/S
+sixth/Y
+sixty-eight/H
+sixty-first/S
+sixty-five/H
+sixty-four/H
+sixty-nine/H
+sixty-one
+sixty-onefold
+sixty-second/S
+sixty-seven/H
+sixty-six/H
+sixty-three/H
+sixty-two
+sixty-twofold
+sixty/MHS
+Siyabonga
+Siyabulela
+Siyabuswa
+Siyafunda
+Siyalu
+Siyanda
+Siyathemba
+Siyathuthuka
+Sizakancane
+Sizamele
+size/eAc
+sizeable
+sized/cfA
+sizes/A
+sizing/A
+sizzle/GDS
+sizzler/M
+sjambok
+Sjambokzynoudekraal
+skaam
+skande
+Skanskop
+skate/RDMSG
+skateboard/RGMDS
+skating-rink
+skebenga
+skedaddle/DSG
+skeef
+Skeerpoort
+skeet/M
+skein/MS
+skel
+skeletal/Y
+skeleton/SM
+skelm
+skelter
+Skema
+skep
+skerries
+sketch/R2SZGMDz
+sketchbook/MS
+sketchpad
+sketchy/TP
+skew-eyed
+skew/DRGPS
+skewbald
+skewer/d
+ski'd
+ski-jump/GRD
+ski-lift/SM
+ski-plane
+ski-run
+ski/MSG
+skiboat
+skid/DGS
+skiet
+skiff/MS
+skilful/Y
+skilfulness
+skill/MDS
+skilled/U
+skillet/MS
+Skilletskate
+Skilpadfontein
+skim/MDRGS
+skimp/D2SZGz
+skimpy/PT
+skin-dive/RG
+skin-tight
+skin/2ZSMpGD
+skincare
+skinder
+skinderstories
+skinflint/MS
+skinhead/MS
+Skinner/SM
+skinny/TP
+skip/DRGS
+Skipjack
+skipper/d
+Skippy/M
+skirmish/MRDSG
+skirt/SfM
+skirted
+skirting
+skirts/e
+skit/MS
+skitter/dSZ
+skittish/PY
+skittle/SM
+skivvy/SMGD
+skiwear
+skol/Y
+skollie
+skolly/S
+skoon
+Skoonspruit
+skop
+skop-die-blik
+Skopje/M
+skottel/S
+skraal
+skrik
+Skrikfontein
+skua/S
+skuins
+Skuinsdrif
+Skukuza
+skulduggery/M
+skulk/GRSD
+skull/MS
+skullcap/SM
+skunk/MS
+sky-blue
+sky-high
+sky-rocket/dMS
+sky-writer/MS
+sky-writing/SM
+sky/7RSMGDZ
+skydive/GDSR
+skydiving/M
+Skye/M
+skyfie/S
+skyjack/RGSDJ
+Skylab/M
+skylark/DGMS
+skyless
+skylight/SM
+skyline/SM
+Skype/M
+skyscape/S
+skyscraper/SM
+skyward/S
+skyway/M
+slaat
+slab/GMDS
+Slabberts
+slack/YSDRGTP
+slacken/dS
+Slackware/M
+Slade/M
+slag/DMGS
+Slagboom
+slain
+slake/GDS
+slalom/SM
+slam/DRGS
+slander/SMd
+slanderer/S
+slanderous/Y
+slang/ZMG
+Slangkop
+Slangspruit
+slangy/T
+slant/SDG
+slantwise
+slap-happy
+slap-up
+slap/GDMS
+slapdash
+slapper
+slapstick/M
+slash/GDRS
+Slashdot
+slasto
+slat/dSDGM
+slate/MS
+Slaterville
+slattern/MYS
+slaughter/drMS
+slaughterhouse/MS
+Slav/SMW
+slave-bangle
+slave-born
+slave-drive
+slave-driven
+slave-driver/S
+slave-drove
+slave-trade/R
+slave/RDMySG
+slaver/d
+slavery/SM
+Slavic/M
+slavish/PY
+Slavonic/M
+slay/RSG
+sleaze/SZ
+sleazy/YPT
+sled/G
+sledge/MGDS
+sledgehammer/SM
+sleek/YDGT
+sleekness
+sleep's
+sleep/cSG
+sleeper-couch
+sleeper/SM
+sleepless/PY
+sleepover/S
+sleepwalk/GDRSJ
+sleepwear/M
+sleepy/TPY
+sleepyhead/MS
+sleet/DMGSZ
+sleety/T
+sleeve/MGDpS
+sleeving/M
+sleigh/RGSMD
+sleight/SM
+slender/8QYP
+slenderer
+slenderest
+slept/c
+Sleutelfontein
+sleuth/MDSG
+slew/DGS
+slice/MRGDS
+slick/GYDTPS
+slid/r
+slide/SG
+slight/kDSTYG
+slightish
+slightness
+Sligo/M
+slim/TSGRYD
+slime/MS2Z
+slimline
+slimness
+Slimy
+slimy/T
+sling/GMS
+slinger
+Slinger
+Slingjaw
+slingshot/MS
+slink/SZG
+slinky/T
+slip-ons
+slip-slops
+slip/DSRGM
+slipcase/MS
+slipknot/SM
+slippage/MS
+slipper/2Z
+slippered
+slippery/T
+slipshod
+slipstream/MSDG
+slipway/SM
+slit/MGDRS
+slither/dSZ
+sliver/dMS
+Sloan/M
+Sloane/M
+slob/SM
+slobber/SZd
+Slocum/M
+sloe/MS
+slog/DGS
+slogan/MS
+sloop/SM
+slop/dz2SDGZ
+slope/S
+sloppy/TP
+slosh/SDG
+slot/SGMD
+sloth/M6j
+slothful/P
+slouch/GSDZ
+slouchy/T
+Slough/M
+slough/MDGS
+Slovak/S
+Slovakia/M
+Slovakian/S
+sloven/MSY
+Slovene/S
+Slovenia/M
+Slovenian/S
+slovenly/TP
+Slovo
+Slovoville
+slow/DPTYGS
+slowcoach/MS
+slowdown/SM
+slowish
+SLR
+sludge/MZ
+sludgy/T
+slue/GSD
+slug/DRGMS
+sluggard/MS
+sluggish/PY
+sluice/MGSD
+sluip
+sluk
+slum/DZMGS
+slumber/dSM
+slumberer/M
+slumberous
+slummy/T
+slump/DSG
+slung/U
+slunk
+slur/MSDGZ
+slurp/DSG
+Slurry
+slurry/SM
+slush/DM2SZG
+slushy/TP
+slut/SM
+sluttish
+sly
+slyer
+slyest
+slyly
+slyness/M
+Sm
+smaak
+smack/MDSRG
+small-minded
+small-mindedness
+small-scale
+small-time
+small-town
+small/ST
+smallholder/S
+smallholding/SM
+smallish
+smallness
+smallpox/M
+Smallwood/M
+smarmy/T
+smart-arse
+smart/eDSG
+smarten/dS
+smarter
+smartest
+smarting/Y
+smartish
+smartly
+smartness
+smarty
+smarty-pants
+smash-and-grab
+smash-up/S
+smash/RSGkD
+smattering/MS
+smear/GDSZ
+smearer/M
+smegma/W
+smell/7SYD2G
+smeller/M
+smelling-out
+smelly/TP
+smelt/GRDS
+Smeroe
+Smetana/M
+Smethwick
+smidgen/SM
+smidgeon
+smilax/SM
+smile/DSkMG
+smiler
+smiley/M
+smilies
+smiling/UY
+smirch/SDG
+smirk/MDSG
+Smirnoff/M
+smite/GS
+smiter/M
+smith/MySZ
+smithereens
+smithery/S
+Smithfield/M
+Smithsonian/M
+Smithtown/M
+smithy/SM
+smitten
+SMME
+smock/SMDG
+smocking/M
+smog/ZM
+smoggy/T
+smokable
+smoke-dried
+smoke-room
+smoke-stone
+smoke/M7RGDp2ZS
+smokescreen/S
+smokestack/MS
+smoking-jacket
+smoking-room
+smokkel
+smoky/T
+smooch/SDG
+smoorvis
+Smooth-hound
+smooth-talk
+smooth-tongued
+smooth/RTGPSDY7
+smoothie/SM
+smoothish
+smorgasbord/SM
+smote
+smother/dS
+smoulder/dkS
+SMS
+SMSA/MS
+SMTP
+smudge/ZDpGS
+smudgy/YTP
+smug/TPY
+smuggle/DSGRJ
+smut/DZM2GS
+Smutsville
+smutty/TP
+Smyrna/M
+Sn
+snaaks
+snack/MGDS
+snaffle/MDGS
+snafu/MS
+snag/MDGS
+Snaggletooth
+snail/MS
+Snake-eel
+snake/MSGZD
+snakebite/MS
+Snakeblenny
+Snakefield
+Snakelet
+snakelike
+snakeroot/M
+snakeskin
+snaky/T
+snap/GRzZ2DS
+snapdragon/MS
+Snape
+snappable
+snapping/Y
+snappish/PY
+snappy/TP
+snaps/U
+snapshot/SM
+snare/DSMG
+snarer/M
+snarky/T
+snarl/DkSYG
+snarler/M
+snarly/T
+snatch/RSGD
+snazzy/PTY
+Snead/M
+sneak/2DkGSZz
+sneaky/TP
+Sneed/M
+sneer/MGkDS
+sneerer/M
+sneeze/DSG
+sneezer/M
+sneezewood/M
+Snell/M
+snick/MR
+snicker/d
+snide/PTY
+Snider's
+sniff/GRSD
+sniffle/SDG
+sniffler/M
+snifter/MS
+snigger/Sd
+snip/rDGZS
+snipe/SMG
+snippet/MS
+snippy/T
+snitch/SDG
+snivel/DSRJG
+snob/MSZ
+snobbery/SM
+snobbish/Y
+snobbishness
+snobby/T
+Snodgrass/M
+Snoek
+snoek
+snoep
+snood/MS
+snook/MR
+snooker/d
+snoop/RGDSZ
+snoopy/T
+snoot/zSZM2
+snooty/TP
+snooze/DSG
+snore/DRSG
+snorkel/SRMDG
+snort/GRSD
+snot-en-trane
+snot/ZMz2S
+snotty/PT
+snout/SMD
+snow-white
+snow/mMZD2GS
+snowball/MGSD
+snowblower/S
+snowboard/RDGS
+snowbound
+snowcapped
+snowdrift/SM
+snowdrop/SM
+snowfall/MS
+snowfield/MS
+snowflake/MS
+snowline
+snowmobile/MS
+snowplough/SDGM
+snowshoe/SM
+snowshoer/M
+snowstorm/MS
+snowy/T
+Snr.
+snub-nosed
+snub/SDG
+snubber
+snuff/RGYDS
+snuffbox/MS
+snuffle/DGS
+snuffler/M
+snug/YTP
+snuggle/DSG
+Snyder/M
+so-and-so/M
+so-called
+so/M
+soak/JDGS
+soaker/M
+soap/SGD2MZ
+soapbox/SM
+soapie
+soapstone/M
+soapsuds
+soapy/TS
+soar/GSDk
+soarer/M
+sob/GDS
+Sobabili
+Sobantu
+sobbing/Y
+sober/kYdPS
+soberer
+soberest
+sobriety/IMS
+sobriquet/MS
+Soc.
+soccer/M
+sociability/M
+sociable/EU
+sociably/U
+social/sQ3-98qYS
+socialism/SM
+socialist/W
+socialite/SMZ
+sociality/M
+societal
+society/oMS
+socio
+socio-economic/SY
+socio-political
+sociobiology/M
+sociocultural/Y
+sociolinguistic/S
+sociolinguistics/M
+sociolinguists
+sociology/S3w1M
+sociometry/WM
+sock/DSMG
+socket/dSM
+Socorro/M
+Socrates/M
+Socratic/S
+sod/DSMG
+soda/SM
+sodden/YP
+sodium/M
+Sodom/M
+sodomite/MS
+sodomy/Q8SM
+Sodwana
+SOE
+Soebatsfontein
+Soekmekaar
+Soeknog
+soetes
+Soeteweide
+Soetwater
+soetwyn
+soever
+sofa/MS
+Sofia/M
+soft-boiled
+soft-headed
+soft-headedness
+soft-hearted
+soft-heartedness
+soft-paste
+soft-pedal/DG
+soft-sell
+soft-spoken
+soft/cP
+softball/SM
+soften/rSd
+softer
+softest
+softie's
+softly
+softly-softly
+softness/S
+software/M
+softwood/SM
+softy/MS
+Sogdian
+sogginess
+soggy/TY
+Soham/M
+Soho/M
+soi
+soi-disant
+soigné
+soil/MDGS
+soiled/U
+soiree
+soirée/MS
+sojourn/DRSMG
+Sokapase
+sokkie
+sokkiejol
+sol
+Sol's
+sol-fa
+solace/GMDS
+solar
+solaria
+solarium/M
+sold/cAfeU
+solder/dS
+solderer/S
+solders/A
+Soldier
+soldier/DSZYMG
+soldiership
+soldiery/SM
+sole's/I
+sole/ADGSF
+solecism/MS
+solecist/W
+solely
+solemn/Q-8qTY
+solemness
+solemnity/MS
+solenoid/MS
+solenoidal
+soles/I
+Solheim
+solicit/dSn
+solicited/U
+solicitor/SM
+solicitous/Y
+solicitousness
+solicitude/MS
+solid-state
+solid/SY
+solidarity/SM
+solider
+solidest
+solidi
+solidification/M
+solidify/nSGDN
+solidity/S
+solidness
+solidus/M
+Solihull/M
+soliloquies
+soliloquise/DSG
+soliloquy/M
+solipsism/M
+solipsist/S
+Solis/M
+solitaire/MS
+solitariness
+solitary/S
+solitude/MS
+solo/MDGS
+soloist/MS
+Solomon/M
+Solridge
+solstice/MS
+solubility/IM
+soluble/EI
+solute's
+solute/ES
+solution/AMES
+solvable/IU
+solvating
+solve/ERAGSD
+solved/U
+solvency/SMI
+solvent/IMS
+Solzhenitsyn/M
+soma/M
+Somali/SM
+somalia
+Somalia/M
+Somalian/S
+Somarobogo
+sombre/Y
+sombreness
+sombrero/MS
+some/W
+somebody'll
+somebody/SM
+someday
+somehow
+someone'll
+someone/M
+somersault/SDGM
+Somerset/M
+Somerville/M
+something
+sometime/S
+somewhat
+somewhere
+Somkhele
+Somme/M
+sommelier/MS
+sommer
+somnambulism/M
+somnambulist/MS
+somnolence/M
+somnolent/Y
+son-in-law
+son/SWMZ1
+sonar/M
+sonata/SM
+sonatina/MS
+Sondela
+Sonderend
+Sonderwater/S
+Sondheim/M
+Sondra/M
+Soneike
+song/SM
+songbird/SM
+songbook/S
+Songeni
+Songhai
+Songloed
+songololo
+songsmith
+songster/SM
+songstress/SM
+songwriter/MS
+Sonheuwel
+Sonia/M
+Sonja/M
+Sonkombo
+Sonlandpark
+Sonneglans
+Sonnekuil
+Sonnendal
+sonnet/MS
+sonny/MS
+Sonoma/M
+Sonop
+Sonora/M
+sonority/S
+sonorous/YP
+Sonpark
+sons-in-law
+Sonsig
+Sonstraal
+Sonwabile
+Sony/M
+Sonya/M
+soon/T
+soonish
+soot/ZM
+sooth/RMGDk
+soothe/S
+soothsayer/MS
+soothsaying
+sooty/T
+sop/GMDSZ
+Sophia/M
+Sophiatown
+Sophie/M
+sophism/MS
+sophist/MWwSy1
+sophistic/nN
+sophisticate/hGDS
+sophisticated/U
+sophistication/M
+sophistry/SM
+Sophoclean
+Sophocles/M
+soporific/SYM
+soppy/T
+soprano/SM
+Sopwith/M
+sorbet/MS
+Sorbonne/M
+sorcerer/MS
+sorceress/S
+sorcery/MS
+sordid/PY
+sore/YTS
+soreness
+Sorensen/M
+Sorenson/M
+sorghum/MS
+sorrel/MS
+Sorrento
+sorrow/6SDMjG
+sorrower/M
+sorrowful/P
+sorry/PTY
+sort's/AF
+sort/FKADGS
+sortable
+sorted/U
+sorter/MS
+sortie/MDS
+sortieing
+SOS
+Sosa/M
+sosatie/S
+Soshanguve
+sot/MS
+Sotho
+Sotsha
+sottish
+sou'wester
+sou/MS
+soubriquet/M
+soufflé/MS
+sough/DSG
+sought-after
+sought/U
+soul-destroying
+soul-searching
+soul/6SMjp
+soulful/P
+soulless/Y
+sound's
+sound/AGSD
+soundboard/MS
+sounder/MS
+soundest
+sounding/MS
+soundless/Y
+soundly/U
+soundness/U
+soundproof/GSD
+soundproofing/M
+soundtrack/MS
+soup/SMZ
+soupçon/MS
+soupy/T
+sour/GPTYSD
+source's/A
+source/eSGAD
+Sourceforge
+sourish
+sourpuss/SM
+sous/DSG
+Sousa/M
+sousaphone/MS
+souse
+Sout
+south-east
+south-East/M
+south-Easterly
+south-easterly
+south-eastern
+south-Eastern
+south-Eastward/S
+south-eastward/S
+south-south-east
+south-south-west
+south-west's
+south-West/M
+south-westerlies
+south-Westerly/S
+south/M
+Southall
+Southampton/M
+southbound
+Southbourne
+Southbroom
+Southdale
+Southdene
+southeaster/SM
+Southend-on-Sea
+Southend/M
+souther/MY
+southerly/S
+southern/R
+southernmost
+Southernwood
+Southey/M
+Southeyville
+Southfield/M
+Southfork
+Southgate
+southpaw/MS
+Southport
+Southseas
+southward/S
+Southwark
+southwester/SM
+soutie
+Soutpan
+soutpiel
+Soutrivier
+souvenir/MS
+Sovenga
+sovereign/MSY
+sovereignty/MS
+soviet/MS
+sow/ADSG
+sower/SM
+Soweto/M
+sown/A
+soy
+soya
+Soyuz/M
+spa/MS
+space-saving
+space-time
+space/D5mRSGMJ
+spacecraft/M
+spaceship/SM
+spacesuit/MS
+spacey
+spacial
+spacier
+spaciest
+spacing/M
+spacious/YP
+Spackle
+spade/M6DGS
+Spadefish
+spadeful/MS
+spadework/M
+spadiceous
+spadices
+spadix/M
+spaghetti/M
+Spain/M
+Spalding/M
+spam/GRD
+span's
+span/eI
+Spandauville
+Spandikroon
+spandrels
+spangle/MGSD
+Spaniard/SM
+spaniel/SM
+Spanish/M
+spank/GDJS
+spanker/M
+spanking/M
+spanned/U
+spanner/SM
+spanning
+spans
+spanspek/S
+spar/kDMGdS
+SPARC/M
+SPARCstation/M
+spare/YPS
+sparer's
+spareribs
+sparers
+sparest
+sparing/U
+spark/DYSZMG
+sparkle/DGkRS
+Sparks
+Sparksview
+sparky/T
+sparling/SM
+sparrow/MS
+spars/T
+sparse/Y
+sparseness
+sparsity
+Sparta/M
+Spartacus/M
+Spartan/S
+spas/W
+spasm/MS
+spasmodic/Y
+spastic/S
+spat/SMDG
+spate/MS
+spathe/MS
+spatial/Y
+spatiality/M
+spatio
+spatio-temporal/Y
+spatter/dS
+spatula/SM
+spavin/SM
+spavined
+spawn/GSDM
+spawner/M
+spay/GSD
+spaza
+SPCA
+speak/aGS
+speakable/U
+speaker/SM
+speakership/M
+speaking-tube
+speaking/U
+speakings
+spear/GSDM
+spearhead/GSMD
+spearmint/MS
+Spearville
+special/38Qq-S
+specialise/cGnSD
+specialised/U
+specialism/SM
+specialist/W
+speciality/S
+specialness
+specie/oSM
+specifiability
+specifiable/Y
+specific/SYNn
+specification/M
+specificity/S
+specificness
+specified/faU
+specifier/SM
+specify/ADGS
+specimen/MS
+specious/YP
+speck/MS
+speckle/MSDG
+spectacle/DMS
+spectacular/YS
+spectator/MS
+spectra/Mo
+spectral
+spectre/SM
+spectrogram/MS
+spectrograph/1MZ
+spectrography/M
+spectrometer/MSW
+spectrometry/M
+spectrophotometer/WMS
+spectrophotometry/M
+spectroscope/SWZ1M
+spectroscopy/M
+spectrum/M
+specular
+speculate/VvSDGNn
+speculation/M
+speculator/MS
+speculum
+sped
+speech/MpS
+speechifying
+speechless/YP
+speed-up/MS
+speed/R2DzMGJSZ
+speedboat/MS
+speedboater
+speedometer/MS
+speedway/MS
+speedwell/MS
+speedy/TP
+speleologist/S
+speleology/wM
+spell/ASaDG
+spellable
+spellbind/RSG
+spellbound
+speller/MS
+spelling/aMS
+spelt/a
+Spence/M
+Spencer/M
+spend/GacSe
+spendable
+spender/SM
+spending/S
+spendthrift/MS
+spens
+Spenser/M
+Spenserian
+spent/acefU
+sperm/MS
+spermatophyte/M
+spermatozoa
+spermatozoon/M
+spermicidal
+spermicide/M
+sperregebiet
+Sperry/M
+spew/RDSG
+SPF
+sphagna
+sphagnum/M
+sphere/wS1MW
+spheroid/MSo
+spheroidal
+spherule/MS
+sphincter/MS
+sphinx/SM
+spice/GDMSZ
+spicebush/M
+spicule/MS
+spicy/YPT
+spider/MSZ
+spidering
+spiderish
+spiderlike
+spiderwort/M
+Spiegel/M
+spiel/DMGS
+Spielberg/M
+spiffy/T
+spigot/MS
+spike/SGZMD
+spiky/PT
+spill/cSDG
+spillage/SM
+spiller
+spillikin
+spillover/MS
+spillway/SM
+spilt
+spin-drier/S
+spin-off/S
+spin/GSoR
+spinach/SM
+spinal/S
+spindle/SGDMY
+spindly/T
+spindrift
+spine-chilling
+spine/SZp2M
+spineless/PY
+spinet/MS
+spinnaker/MS
+spinneret/MS
+spinney
+spinster/MS
+spinsterhood/M
+spinsterish
+spiny/T
+spiracle/MS
+spiraea/MS
+spiral/YDGS
+spire/IMSD
+spired/FA
+spires/FA
+spirit/MdpS
+spirited/Y
+spiritedness
+spirits/I
+spiritual/S3Y
+spiritualism/MS
+spiritualist/W
+spirituality/SM
+spiritualness
+spirituous
+Spiro/M
+spirochaete/SM
+spiry
+spit/RSG
+spite's/A
+spite/6SGMj
+spiteful/P
+spites/A
+spitfire/MS
+spitskop
+spittle/MY
+spittoon/SM
+Spitz/M
+Spitzkop
+splash/zZSDG
+splashdown/MS
+splashy/T
+splat/MSDG
+splatter/Sd
+splay/SDG
+splayfeet
+splayfoot/MD
+spleen/MS
+splendid/YP
+splendiferous/Y
+splendiferousness
+splendour/SM
+splenetic
+splice/RJSDG
+spline/DMS
+splint/RDMGS
+splinter/Zd
+split-level
+split-second
+split/MRGS
+splodge/SM
+splotch/GSMDZ
+splotchy/T
+splurge/MSDG
+splutter/dS
+splutterer/M
+Spock/M
+spoil/CDRSG
+spoilage/MS
+spoiled/U
+spoilsport/SM
+spoilt/U
+Spokane/M
+spoke/a
+spoked
+spoken/eaU
+spokes/m5
+spokeshave/SM
+spokespeople
+spokesperson/S
+spoliation/CMS
+sponge/MRDGZS2
+spongeable
+spongelike
+spongy/T
+sponsor/dSM
+sponsorship/S
+spontaneity/SM
+spontaneous/PY
+spoof/GSDM
+spook/GSZD2M
+Spookmill
+spooky/TP
+spool/GSDRM
+spoon-fed
+spoon-feed/SG
+spoon/D6SMG
+spoonbill/MS
+spoonerism/MS
+spoonful/SM
+spoor/SM
+Spoornet
+Spoorwegterrein
+sporadic/Y
+spore/SM
+sporran/MS
+sport/Mmk52GuDVvSZ
+sporter
+sporting/U
+sportive/P
+sportscast/MRGS
+sportsman/Y
+sportsmanlike/U
+sportsmanship/M
+sportswear/M
+sporty/PT
+spot-weld/DG
+spot/CMS
+spotless/YP
+spotlight/SDGM
+spotlit
+spotted/U
+spotter/SM
+spotting
+spotty/TPY
+spouse/SM
+spout/GDS
+spouter/M
+sprain/GDS
+sprang
+sprat/SM
+sprawl/GSD
+spray/RSDMG
+sprayed/A
+sprays/A
+spread-eagled
+spread/R7GS
+spreading/ec
+spreads/Cec
+spreadsheet/S
+spree/GMS
+sprig/DGMS
+sprightly/TP
+Sprincol
+spring-clean/D
+spring-loaded
+spring/Rz2SZG
+springboard/SM
+Springbok
+springbok/MS
+Springboklaagte
+Springbokpan
+Springbokpark
+Springbuck
+Springdale
+Springfield/M
+Springfontein
+springiness/S
+springlike
+Springs
+Springsteen/M
+springtime/M
+Springtown
+Springvale
+springy/TP
+sprinkle/DRJGS
+sprinkling/M
+sprint/GRSMD
+sprite/MS
+sprocket/dSM
+sprout/GSD
+spruce/PYSGMD
+sprucer
+sprue/M
+spruit/S
+Spruitview
+sprung/U
+spry
+spryer
+spryest
+spryly
+spryness
+SPSS
+spud/MDSG
+spume/MZS
+spumy/T
+spun
+spunk/MZ
+spunky/T
+Spur
+spur/DGMS
+spurge/MS
+spurious/PY
+spurn/GDS
+spurner
+spurt/DGS
+sputa
+Sputnik/SM
+sputter/Sd
+sputterer
+sputum/M
+spy/SMGD
+spyglass/SM
+spyhole
+sq
+sq.
+sqrt
+squab/MS
+squabble/RDSG
+squad/SM
+squadron/SM
+squalid/PY
+squall/GMDSY
+squally/T
+squalor/S
+squamous
+squander/dS
+squanderer
+square/YTSMGDP
+squarer/M
+squarish
+squash/DSG2Z
+squashy/TP
+squat/PDRGSTY
+squaw/MS
+squawk/DRMGS
+squeak/zSZMRD2G
+squeaky/T
+squeal/DRMGS
+squeamish/YP
+squeegee/GMS
+squeezable
+squeeze/DSRG
+squelch/GDSZ
+squelcher/M
+squelchy/T
+squib/GDMS
+Squibb/M
+squid/MDSG
+squidgy/T
+squiggle/MSGYD
+squiggly/T
+squint/GDS
+squinter/M
+squire/MSGDY
+squirearch/Zw
+squiredom
+squireen
+squirehood
+squirelet
+squireling
+squireship
+squirl
+squirm/DGSZ
+squirmy/T
+squirrel/MGSDY
+squirt/SDG
+squirter/M
+squish/2ZGDS
+squishy/T
+Sr
+SRA/M
+Sri
+SRO
+SS
+SSA/SM
+SSC
+SSE
+ssh
+SSH
+SSL
+SSS
+SST
+SSW
+st.
+St/N
+Staal
+staaldak
+Staalveld
+Staatsdorp
+stab/RGDYJS
+stabilise/CDRnSG
+stability/MIS
+stabilize/CNRSnGD
+stable-boy/MS
+stable-girl/SM
+stable-lad/SM
+stable-mate
+stable/FSM
+stabled
+stableful/S
+stableman/M
+stablemen/M
+stableness
+stabler
+stablest
+stabling
+stablish
+stably/U
+staccato/S
+Stacie/M
+stack/M7GDS
+stacked/U
+stacker/M
+Stacy/M
+stadia
+stadium/MS
+stadsjapie
+staff's
+staff/AGSD
+staffed/fUc
+staffers
+Stafford/M
+Staffordshire/M
+staffroom
+stag/MSd
+stage-hand/MS
+stage-manage/RD
+stage-management
+stage-struck
+stage/MBS2Z
+stagecoach/MS
+stagecraft/M
+stager/M
+stagflation/MS
+stagger/Srdk
+stagnancy/MS
+stagnant/Y
+stagnate/GNDnS
+stagnation/M
+stagy/T
+Stahl/M
+staid/YP
+stain/pDSG
+stained-glass
+stained/U
+stainer/M
+Staines
+stair/MS
+staircase/MS
+stairway/MS
+stairwell/MS
+stake/GMDS
+stakeholder/S
+stakeout/MS
+stalactite/MS
+Stalag/M
+stalagmite/SM
+stale/PDYTG
+stalemate/SMGD
+Staley/M
+Stalin/M
+Stalingrad/M
+Stalinist
+stalk/MRGDS
+stalking-horse
+stall/MGDS
+stalled/I
+stallholders
+stallion/MS
+Stallone/M
+stalls/I
+stalwart/YS
+stalwartness
+stamen/SM
+Stamford/M
+stamina/M
+staminate
+stammer/Srdk
+stamp/RGSDJ
+stamped/d
+stampede/MS
+stampeder/M
+Stan/M
+stance/MIS
+stanchion/MS
+stand-alone
+stand-in/S
+stand-off/S
+stand-offish
+stand-up
+stand/SfGJ
+standalone
+Standard
+standard-bearer/MS
+standard/s-8SQ9q
+standardised/U
+standby
+standbys
+standee/SM
+stander/S
+Standerton
+standing's/f
+standing/e
+Standish/M
+standoffish/Y
+standoffishness
+standpipe/MS
+standpoint/SM
+standstill/MS
+Stanfield/M
+Stanfieldhill
+Stanford/M
+Stanger
+Stanislavsky/M
+stank
+Stanleigh/M
+Stanley/M
+Stanmore
+stannic
+stannous
+Stansted/M
+Stanton/M
+Stanwood/M
+stanza/SM
+staphylococcal
+staphylococci
+staphylococcus
+staple/DGRMS
+stapled/U
+Stapleton/M
+star-spangled
+star-studded
+star/rZSdpDG
+starboard/MS
+Starbucks
+starch/MDG2zSZ
+starchy/TP
+stardom/MS
+stardust/M
+stare/S
+starfish/MS
+Stargate/M
+stargaze/DRSG
+Stargazer
+Starhamm
+stark/TPY
+Starkeville
+Starkey/M
+starlet/SM
+starlight/M
+starling/SM
+starlit
+Starr/M
+starry/T
+starship
+starstruck
+start-up/SM
+start/ASDG
+starter/MS
+startle/SDkG
+starvation/M
+starve/NnSGD
+starveling/M
+Starwood
+stash/GSD
+stasis/M
+Stasoft
+state's
+state-of-the-art
+state/ISaDLcGfA
+statecraft
+stated/U
+statehood/SM
+Statehouse's
+statehouse/S
+stateless/P
+stately/PT
+Staten/M
+stater/aM
+stateroom/SM
+states/5m
+statesman/Y
+statesmanlike
+statesmanship/M
+static/YS
+statical
+station's/e
+station-wagon/MS
+station/GSMRyD
+stationariness
+stationer/Z
+stationery/MS
+stationmaster/M
+stations/e
+statistic/SMY
+statistical
+statistician/SM
+stator/MS
+statsjapie
+statuary/MS
+statue/MSD
+statuesque/Y
+statuesqueness
+statuette/SM
+stature/MS
+status/WSM
+statute/SMy
+statutory/Y
+Stauffer/M
+staunch/YDTGS
+staunchness
+stave/DGSM
+stay-at-home
+stay/eGcDS
+stayer/MS
+STD
+stead/M2zZ
+steadfast/PY
+steadied
+steadier
+steadies
+steadiest
+steadiness's
+steadiness/U
+Steadville
+steady-going
+steady/UY
+steadying
+steak/SM
+steakhouse/MS
+steal/SG
+stealer/M
+stealing/M
+stealth/Zz2M
+stealthy/TP
+steam/MRGSZzD2
+steamboat/MS
+steamroller/MdS
+steamship/MS
+steamy/PT
+Stearns
+steed/MS
+steel-clad
+steel/M2GDSZ
+Steele/M
+Steeledale
+Steelpoort
+steelwork/MRS
+steely/TP
+steelyard/SM
+Steen/M
+Steenberg
+Steenbok
+Steenbokpan
+Steenbras
+Steenbuck
+Steentjie
+Steenvliet
+steep/DYGTS
+steepen/dS
+steeple/SM
+steeplechase/SGM
+steeplechaser
+steeplejack/MS
+steepness
+steer/7GDS
+steerage/MS
+steerer/M
+steers/m
+steeves
+Stefan/M
+Stefanie/M
+Stefano/M
+Steffen/M
+Steffi/M
+stegosaurus/S
+Steilloop
+Steiltes
+stein/MS
+Steinbeck/M
+Steinberg/M
+Steiner/M
+Steinkopf
+Steinmetz/M
+Steinway/M
+Stella/M
+stellar
+stellated
+Stellenberg
+Stellenbosch/M
+Stellenridge
+Stellenryk
+stem/MpGDS
+stemmed/U
+stench/MS
+stencil/JMDGS
+Stengel/M
+stenographer/MS
+stenography/MW
+stenos
+stenotype/M
+stentorian
+step-parent/SM
+step/IMaS
+stepbrother/MS
+stepchild/M
+stepchildren
+stepdaughter/SM
+stepfather/SM
+Stephan/M
+Stephanie/M
+Stephen/MS
+Stephenson/M
+stepladder/MS
+Stepmore
+stepmother/MS
+Stepney/M
+steppe/MRSDG
+stepped/c
+stepping/c
+steppingstone/S
+steps/c
+stepsister/MS
+stepson/MS
+stepwise
+steradians
+stereo/MS
+stereography/WM
+stereophonic
+stereoscope/SW1ZM
+stereoscopy/M
+stereotype/MS1WGwZD
+sterile/sQ-89q
+sterilise/AGSD
+sterilised/U
+sterility/MS
+Sterkrivier
+Sterkspruit
+Sterkstroom
+sterling/MYP
+stern/TSY
+sternal
+sternness
+sternum/MS
+steroid/MS
+steroidal
+Sterpark
+Sterrewag
+stertorous/YP
+stet/DMSG
+stethoscope/MS
+Stetson/MS
+Steuben/M
+Steunmekaar
+Steurhof
+Steve/M
+stevedore/MS
+Steven/MS
+Stevenage
+Stevenson/M
+stew/MSDG
+steward/MSDG
+Stewardby
+stewardess/MS
+stewardship/MS
+Stewart/M
+Steynpan
+Steynsburg
+Steynsrus
+Steynsrust
+Steynville
+Steytler
+Steytlerville
+stick/RGSZz2M
+stickleback/SM
+stickler/MS
+stickup/MS
+sticky/PT
+stiff-necked
+stiff/TSZYP
+stiffen/rdS
+stifle/GSDk
+stifler/M
+stigma/WQ-8SqM
+stigmata
+stigmatised/U
+stigmatization/CS
+Stikland
+stile/MS
+stiletto/MS
+Stilfontein
+still/TGSDP
+stillbirth/MS
+stillborn/S
+Stillwell/M
+stilt/MhiDS
+Stilton/M
+stimulant/MS
+stimulate/cDSG
+stimulated/U
+stimulation/SM
+stimulative
+stimulator/M
+stimulatory
+stimuli/M
+stimulus/M
+Stine/M
+sting/RGSZz2k
+stingray/MS
+stingy/PT
+stink/RkSZG
+Stinker
+stinkpot/M
+Stinkwater
+stinkwood
+stinky/T
+stint/MGSD
+stinter/M
+stinting/U
+stipend/MS
+stipendiary
+stipple/JSDG
+stippler/M
+stipulate/GDSNn
+stipulation/M
+stir-fry/D
+stir/RGJSD
+Stirling/M
+stirred/U
+stirring/Y
+stirrup/MS
+stitch's
+stitch/ADGSJ
+stitcher/MZ
+stitching/M
+stoat/MS
+stochastic/Y
+stock's
+stock-in-trade
+stock/cDAGS
+stockade/SM
+stockbreeder/MS
+stockbroker/MS
+stockbroking
+Stockdale
+stocked/f
+stocker/MS
+Stockhausen/M
+stockholder/MS
+Stockholm/M
+stockinet's
+stockinette
+stocking/SMD
+stockpile/GSD
+stockpiler/M
+Stockport
+stockpot/SM
+stockroom/SM
+stocktaking/M
+Stockton-on-Tees/M
+Stockton/M
+Stockville
+Stockwell/M
+stocky/T3YP
+stockyard/MS
+Stoddard/M
+stodge/ZM2
+stodgy/YT
+stoep/S
+Stoffberg
+Stoffelton
+stoic/SMY
+stoical
+stoichiometry/MW
+stoicism/SM
+Stoke-on-Trent/M
+Stoke/M
+stoke/RSGD
+Stokes's
+stokvel
+STOL
+stole/MS
+stolen
+stolid/Y
+stolidity
+stolidness
+stolon/SM
+stolonate
+stoloniferous
+stoma
+stomach-ache/MS
+stomach-pump
+stomach-tube
+stomach/RG6MDp
+stomachful/S
+stomachs
+stomal
+stomata
+stomp/SDG
+stompie
+stone-cold
+stone/MpSZGD
+Stonebream
+Stonechat
+stonecutter/MS
+Stonefish
+Stonehenge/M
+Stonehill
+stonemason/MS
+stoner/M
+stonewall/SGD
+stoneware/M
+stonewashed
+stonework/M
+stonewort/M
+Stoneydrift
+stony/TPY
+Stonyridge
+stood/f
+stooge/SM
+stool-pigeon
+stool/SM
+stoop/GDS
+Stop
+stop-go
+stop/MRSDG
+stopcock/MS
+stopgap/MS
+stopoff
+stopover/MS
+stoppable/U
+stoppage/MS
+stopped/U
+stoppered
+stopping/U
+stopwatch/MS
+storable
+storage/MS
+store's
+store/ADSG
+storehouse/MS
+storekeeper/MS
+storer/A
+storeroom/MS
+storey/S
+stork's-bill
+stork/SM
+storm-bird/SM
+storm-cock/MS
+storm-door/SM
+storm-finch/SM
+storm-lantern/MS
+storm-sail/MS
+storm-signal/MS
+storm/MRGpSZzD2
+Stormberg
+stormbound
+Stormmill
+stormproof
+Stormsvlei
+stormy/T
+Stornoway/M
+story/MSD
+storyboard/MGDS
+storybook/MS
+storyline
+storyteller/SM
+storytelling/M
+Stouffer/M
+stoup/MS
+Stourbridge
+Stout's
+stout-hearted/Y
+stout-heartedness
+stout/TSYP
+stove-pipe/MS
+stove/SM
+stow/SDG
+stowage/M
+stowaway/SM
+Stowe/M
+Strabane/M
+Strachan
+Strachanville
+straddle/RDSG
+Stradivarius/M
+strafe/DGS
+straggle/GRYSD
+straggly/T
+straight-edge/MS
+straight-eight
+straight-faced
+straight/SPYT
+straighten/dSr
+straightforward/PY
+straightish
+strain/ADRGS
+strained/UcF
+straining/c
+strains/F
+strait-jacket/dMS
+strait-laced
+strait/MYS
+straiten/dS
+straitjacket/SdM
+straitness
+Strand
+strand/SDG
+Strandfontein
+strandlopers
+strange/TRPY
+strangle/SRGD
+stranglehold/SM
+strangulate/NSDnG
+strangulation/M
+strap/MSpGD
+straps/U
+Straptail
+Strasbourg/M
+strata/M
+stratagem/MS
+strategic/S
+strategise
+strategy/SwW3M1
+Stratford-upon-Avon
+Stratford/M
+Strathavon
+Strathclyde/M
+strati
+stratification/M
+stratify/DNnGS
+stratigraphy/MWw
+stratosphere/MSW1
+stratum/M
+stratus/M
+Strauss
+Straussburg
+Stravinsky/M
+straw-colour/D
+straw-worm/S
+straw/MSZ
+strawberry/MS
+strawboard
+stray/DGSM
+strayer/M
+streak/RMDZGS
+streaky/T
+stream/MRGDS
+streamed/U
+streamline/SGD
+streamliner
+Stredford
+Street
+street/MS
+streetwalker/SM
+streetwalking
+streetwise
+Streisand/M
+strength's
+strength/f
+strengthen/AdS
+strengthener/MS
+strengths
+strenuous/YP
+Strepie
+streptococcal
+streptococci
+streptococcus/M
+streptomycin/M
+stress/jMD6GS
+stressed/cU
+stressfulness
+stretch/eGDS
+stretchability/M
+stretchable
+stretched/c
+stretcher/dSM
+stretchiness
+stretchy/T
+Stretford
+strew/SDG
+strewer
+strewn
+stria/Mn
+striae
+striate/DSG
+striation/M
+stricken
+Strickland/M
+strict/cFA
+stricter/F
+strictest
+strictly
+strictness
+stricture/SM
+stridden
+stride/SGM
+stridency/S
+strident/Y
+strider/M
+strife/M
+strike-breaking
+strike/RSGk
+strikebreak/RG
+strikebreaking/M
+strikeout/S
+strim/RDG
+string/DRZ2SMG
+stringency/S
+stringent/Y
+strings/A
+stringy/TP
+strip-searched
+strip-searching
+strip/RdDSGM
+stripe/SZM
+striper/M
+stripling/M
+stripped/e
+strips/e
+striptease/MRS
+strive/GJSD
+striven
+striver/M
+strobe/SM
+stroboscope/MWS
+strode
+stroke/DGMS
+stroll/GRSD
+Strolz/M
+Strom/M
+Stromberg/M
+strong-minded
+strong/TYm
+strongbox/SM
+stronghold/SM
+strongish
+strongroom/SM
+strontium/M
+strop/MSGZD
+strophe/SWM
+Stroud
+strove
+Struandale
+Strubenvale
+struck
+structural/3Y
+structuralism/M
+structuralist
+structure's
+structure/GADS
+structured/U
+structureless
+strudel/SM
+struggle/GSD
+struggler/M
+Struisbult
+strum/GSD
+strumpet/MS
+strung/cUA
+strut/DGS
+strutter/M
+strychnine/M
+Strydenburg
+Strydmag
+Strydompark
+Stuart/MS
+stub/ZDMGS
+stubble/MYS
+Stubblefield/M
+stubbly/T
+stubborn/TYP
+stubby/T
+stucco/GMD
+stuccoes
+stuck/U
+stud/MDSG
+studbook/MS
+student/MS
+studentship/MS
+studied/YP
+studier/MS
+studio/MS
+studious/YP
+Studtis
+study/ASGfD
+stuff/cGD
+stuffer
+stuffing/M
+stuffs
+stuffy/PTY
+Stuirmanspan
+stultify/SGNnD
+stumble/DSkRG
+stump/MSZDG
+stumper/M
+stumpy/T
+stun/DGS
+stung
+stunk
+stunner/M
+stunning/Y
+stunt/MGDiS
+stuntman/M
+stuntmen/M
+stupefaction/MS
+stupefy/DkSG
+stupendous/YP
+stupid/Y
+stupider
+stupidest
+stupidity/MS
+stupor/SM
+sturdy/TPY
+sturgeon/MS
+Sturm/M
+stutter/dS
+stutterer/S
+Stutterheim
+Stuttgart/M
+sty/SM
+Stygian
+style's
+style/AGDS
+styler/SM
+styli
+stylise/DnSG
+stylish/Y
+stylishness
+stylist/1WSM
+stylistic/S
+stylize/nGSND
+stylus/SM
+stymie/SD
+stymieing
+styptic/S
+styrene/M
+Styrofoam
+Styx/M
+Suarez/M
+suasion/EMS
+suave/Y
+suaveness
+suavity/M
+Sub
+sub-aqua
+sub-basement/MS
+sub-branch/MS
+sub-clause/S
+sub-edit/d
+sub-editor/SM
+sub-editorial
+sub-group/S
+sub-head/J
+sub-lieutenant/MS
+Sub-Lt.
+sub-machine-gun
+sub-plot/SM
+sub-Saharan
+sub-sequence/MS
+sub-standard
+sub-zero
+sub/SMGD
+subaltern/SM
+subaquatic
+subaqueous
+subarctic
+Subaru/M
+subatomic
+subcategory/SM
+subclass/SM
+subcommand/S
+subcommittee/MS
+subcomponent/SM
+subconscious/PY
+subconsciousness/S
+subcontinent/MS
+subcontinental
+subcontract/DGSM
+subcontractor/SM
+subcultural
+subculture/MS
+subcutaneous/Y
+subdirectory/S
+subdivide/NXDGS
+subdivision/M
+subduction
+subdue/SGD
+subfamily/SM
+subframe/MS
+subfusc
+subgenera/W
+subgenus
+subgroup/SM
+subhead/MGJS
+subheading/M
+subhuman
+subinterval/MS
+subject/VMDuGSv
+subjection/SM
+subjective/P
+subjectivism
+subjectivist/S
+subjectivity/SM
+subjoin/SDG
+subjugate/nSDNG
+subjugation/M
+subjunctive/S
+sublease/MSDG
+sublet/SG
+sublimate/DSG
+sublimation/M
+sublime/TYSGnD
+subliminal/Y
+sublimity/SM
+sublunary
+submarginal
+submarine/MSR
+submerge/SGD
+submergence/SM
+submerse/XSbGND
+submersible/S
+submersion/M
+submicroscopic
+submission/AM
+submissive/PY
+submit/ANXDGS
+submittal
+submitter/S
+subnet/SM
+subnormal
+suboptimal
+suborbital
+suborder/MS
+subordinate/ISNGDYn
+subordination/IM
+subordinative
+subordinator
+suborn/DSNG
+subornation/M
+subpoena/SGMD
+subregion/MSo
+subregional
+subrogation/M
+subroutine/SM
+subscribe/cGASD
+subscribed/U
+subscriber/MS
+subscript/SDG
+subscription/MS
+subsection/MS
+subsequence/M
+subsequent/Y
+subservience/M
+subservient/Y
+subset/MS
+subside/SQs-Z8q9DG
+subsidence/M
+subsidiarity
+subsidiary/MS
+subsidised/U
+subsidy/MS
+subsist/GSD
+subsistence/M
+subsistent
+subsoil/MS
+subsonic
+subspace/MS
+subspecies/M
+substance/MS
+substandard
+substantial/YI
+substantiate/SNDnG
+substantiated/U
+substantiation/MFS
+substantive/SMY
+substation/SM
+substitute/BDVGSv
+substitution/MyS
+substitutional
+substrata
+substrate/MS
+substratum/M
+substructure/SM
+subsume/DSG
+subsurface
+subsystem/SM
+subtask/MS
+subtenancy/SM
+subtenant/MS
+subtend/GSD
+subterfuge/SM
+subterranean/YS
+subtest
+subtext/MS
+subtitle/DMSG
+subtle/PTY
+subtlety/SM
+subtly/U
+subtopic/SM
+subtotal/MS
+subtract/VRvSDG
+subtraction/MS
+subtrahend/MS
+subtropical
+subtropics
+subtype/SM
+subunit/SM
+suburb/SM
+suburban/qQ-8
+suburbanite/MS
+suburbia/M
+subvention/SM
+subversion/MS
+subversive/YPS
+subvert/DGS
+subverter/M
+subway/MS
+subzero
+succeed/DGS
+succeeder/M
+success/6XSjNVMvu
+successful/UY
+successfulness's
+successfulness/U
+succession/M
+successive/P
+successor/MS
+succinct/PY
+succour/MDpGS
+succubus/M
+succulence/M
+succulent/S
+succumb/GSD
+such
+such-and-such
+suchlike
+suck/DGRS
+sucker/d
+suckle/SDJG
+suckling/M
+sucrose/M
+suction/SMDG
+Sudan/M
+Sudanese/M
+sudden/YP
+suds/Z
+sudsy/T
+Sue's
+sue/RGDS7
+suede/M
+suet/MZ
+Suez/M
+suffer/drJS
+sufferance/M
+suffering/M
+suffice/SGD
+sufficiency/IM
+sufficient/IY
+suffix/nSMDG
+suffocate/NDGSkn
+Suffolk/M
+suffragan/S
+suffrage/M3S
+suffragette/MS
+suffuse/GXDSN
+suffusion/M
+Sufi/M
+Sufism/M
+sugar-coated
+sugar-daddy/SM
+sugar-pea/S
+sugar/dpMS
+sugarplum/SM
+sugary
+suggest/RbvSGVuD
+suggestibility/M
+suggestion/MS
+suggestive/P
+suicidal
+suicide/oSM
+Suideinde
+Suider-paarl
+Suiderberg
+Suideroord
+Suidlokasie
+Suidrand
+suit/Mg7Sld
+suitability/U
+suitable/U
+suitableness
+suitably/U
+suitcase/MS
+suite/MS
+suited/U
+suitor/SM
+Sukarno/M
+sukiyaki/SM
+sukkel
+Sukkoth's
+Sukuma
+Sulenkama
+sulk/zDZ2GS
+sulky/T
+Sulla/M
+sullen/PY
+sullener
+sullied/U
+Sullivan/M
+sully/SDG
+sulphate/SGMD
+sulphide/SM
+sulphite/S
+sulphonamide/MS
+sulphur/dSWM
+sulphurous
+sultan/MS
+sultana/MS
+sultanate/SM
+sultry/TPY
+sum/XRS8MNGD
+sumac/MS
+Sumatra/M
+Sumatran/S
+Sumerian/M
+summary/YQs8M9S
+summation/MFS
+summer/dZ
+Summerdale/M
+Summerfield/S
+summerhouse/MS
+Summerpride
+Summerstrand
+summertime/M
+Summerville
+Summerwood
+summing-up
+summit/SpM
+summon/rSd
+summons/SMDG
+Sumner/M
+sumo/SM
+sump/MS
+sumptuous/YKP
+Sumter/M
+Sun
+sun-baked
+sun-dried
+sun/M2ZSpGD
+Sunair
+sunbath/DRSG
+sunbathe
+sunbeam/MS
+sunbeds
+Sunbelt/M
+Sunbird/M
+sunblock/S
+sunbonnet/SM
+sunburn/MDS
+sunburnt
+sunburst/MS
+Sunbury
+sundae/MS
+Sundanese/M
+Sunday/MS
+sunder/dS
+Sunderland/M
+Sundial
+sundial/MS
+sundown/RM
+Sundowner
+Sundra
+Sundridge
+sundry/S
+Sundumbili
+Sunduzwayo
+Sundwana
+Sundyside
+sunfish/SM
+sunflower/SM
+Sunford
+sung/U
+sunglasses
+sunk
+sunken
+Sunkist
+sunlamp/S
+Sunland/S
+sunlight/M
+sunlit
+Sunni/SM
+Sunningdale
+Sunningdalerif
+Sunninghill
+Sunningvale
+Sunnite/MS
+sunny/PT
+Sunnybrae
+Sunnydale
+Sunnyridge
+Sunnyrock
+Sunnyside
+Sunnyvale/M
+Sunridge
+Sunrise
+sunrise/MS
+Sunriseview
+sunroof/S
+sunscreen/S
+sunset/SM
+Sunsetvion
+sunshade/SM
+Sunshine
+sunshine/MZ
+sunspot/MS
+sunstroke/M
+suntan/MSDG
+Sunvalley
+sup/DRGS
+super-dooper
+super/m5
+superabundance/M
+superabundant
+superannuate/GnSDN
+superannuation/M
+superb/PY
+Superbia
+supercargo/M
+supercargoes
+supercharge/SRDG
+supercilious/PY
+superclass/M
+supercomputer/SM
+supercomputing
+superconducting
+superconductivity/SM
+superconductor/MS
+supercooled
+supercooling
+supercritical
+superego/MS
+supererogation/M
+supererogatory
+superficial/Y
+superficiality/S
+superficialness
+superfine
+superfluity/SM
+superfluous/Y
+superfluousness
+superheat/D
+superhero/M
+superheroes
+superhighway/SM
+superhuman/Y
+superimpose/DXSGN
+superimposition/M
+superintend/GSD
+superintendence/Z
+superintendency/M
+superintendent/MS
+superior/MYS
+superiority/SM
+superlative/PYS
+superlunary
+supermarket/MS
+supermodel/S
+supernal
+supernatant
+supernatural/PY
+supernaturalism/M
+supernormal
+supernova/MS
+supernovae
+supernumerary/S
+superordinate
+superpose/DSGN
+superposition/M
+superpower/MS
+supersaturate/DSGN
+supersaturation/M
+superscribe/DSGXN
+superscript/GSD
+superscription/M
+supersede/SDG
+superset/MS
+supersonic/SY
+superstar/MS
+superstate/S
+superstition/MS
+superstitious/Y
+superstitiousness
+superstore/S
+superstructural
+superstructure/MS
+supertanker/SM
+superuser/SM
+supervene/SDG
+supervention
+supervise/GNDSX
+supervised/U
+supervision/M
+supervisor/MS
+supervisory
+supine/PY
+Supingstad
+supplant/SGD
+supplanter/M
+supple/LTPY
+supplely
+supplement/DGNn
+supplemental
+supplementary/S
+suppliant/S
+supplicant/MS
+supplicate/SGNnD
+supplication/M
+supplied/A
+supplier/MS
+supplies/A
+supply/cDSMG
+support/BVGRkSDv
+supportability/M
+supportable/IU
+supported/U
+supposable
+suppose/KXGNDS
+supposed/Y
+supposition/M
+suppository/SM
+suppress/NVbXDSG
+suppressant/S
+suppressed/U
+suppression/M
+suppressor/S
+suppurate/DSNnG
+suppuration/M
+supra
+supranational/Y
+supranationalism/M
+supremacy/3SM
+supreme/PY
+supremo/M
+Supt.
+Surabaya/M
+Surat/M
+surcease/MS
+surcharge/MGSD
+surcingle/MS
+surd/M
+sure-fire
+sure-footed/Y
+sure-footedness
+sure/PTY
+surer/I
+surety/SM
+surf/RMGDS
+surface's
+surface-active
+surface-to-air
+surface-to-surface
+surface/ASGD
+surfaced/U
+surfacer/MS
+surfactant/SM
+surfboard/SMG
+surfeit/MDGS
+surfing/M
+surge's
+surge/AGSD
+surgeon/MS
+surgery/SM
+surgical/Y
+Surinam/M
+Suriname/M
+Surinamese
+surly/TPY
+surmise/GDS
+surmount/SG7D
+surmountable/I
+surname/MDS
+surpass/DkSG
+surpassed/U
+surplice/SM
+surplus/SM
+surprise/SkDMG
+surprised/U
+surprising/UY
+surreal
+surrealism/SM
+surrealist/S1W
+surreality
+surrender/dS
+surreptitious/Y
+surreptitiousness
+Surrey/M
+surrogacy
+surrogate/SM
+surround/GDSJ
+surrounding/M
+surtax/MS
+surtitles
+surveillance/SM
+survey/AGSD
+surveyor/SM
+survivability/M
+survival/MS
+survivalist/S
+survive/BDSG
+survivor/MS
+Surwell
+Suryville
+Susan/M
+Susana/M
+Susanna/M
+Susannah/M
+Susanne/M
+susceptibility/ISM
+susceptible/I
+SUSE/M
+Susette/M
+sushi/M
+Susie/M
+suspect/GSD
+suspecting/U
+suspend/RXGSNVvD
+suspended/U
+suspense/6M
+suspension/M
+suspensory
+suspicion/MS
+suspicious/PY
+Susquehanna/M
+suss/DSG
+Sussex/M
+sustain/SLBDGl
+sustainable/U
+sustainer/M
+sustenance/M
+Susu
+Suswe
+Sutelong
+Sutherland/M
+sutler/MS
+Sutton/M
+suture/SMDG
+Suurbekom
+Suurbraak
+Suurgoud
+Suurman
+SUV
+Suva/M
+Suzann/M
+Suzanne/M
+suzerain/SM
+suzerainty/MS
+Suzette/M
+Suzie/M
+Suzuki/M
+Suzy/M
+Svalbard/M
+svelte/Y
+Sven/M
+Svetlana/M
+SW
+Sw
+swab/MSDG
+swaddle/DGS
+swag/GDSM
+swagger/Sd
+swaggerer
+Swahili/MS
+swain/MS
+SWAK
+Swalala
+Swale
+Swalestown
+swallow/DGS
+swallower/M
+swallowtail/SM
+swam
+swami/SM
+Swamp
+swamp/DGSZM2
+swampland/MS
+swampy/T
+swan/DMGS
+swank/TzDGSZ2
+swanky/TP
+swanlike
+Swansea/M
+Swanson/M
+swansong
+swap/RSDG
+swappable
+sward/DMS
+swarm/DMSG
+swart
+Swart-mfolozi
+Swartberg
+Swartbooistad
+Swartdam
+Swartfontein
+Swarthmore/M
+swarthy/TP
+Swartklip
+Swartkop/S
+Swartland
+Swartruggens
+Swartwater
+Swartz/M
+swash/DGS
+swashbuckler/SM
+swashbuckling
+swastika/SM
+swat/RDSG
+swatch/MS
+swath/SDMG
+swathe/S
+Swati
+sway/SDG
+swayback/SD
+Swayimane
+Swazi/SM
+Swaziland/M
+swear/RGS
+swearword/SM
+sweat/RzD2GSZM
+sweatband/MS
+sweatpants
+sweatshirt/S
+sweatshop/MS
+sweaty/TP
+swede/MS
+Sweden/M
+Swedenborg/M
+Swedish
+Sweeney/M
+sweep/kSRGJ
+sweepstake/MS
+sweet-talking
+sweet-tempered
+sweet/TYS
+sweetbread/MS
+sweetbrier/SM
+sweetcorn
+sweeten/Sdr
+sweetened/U
+sweetening/M
+sweetheart/MS
+sweetie/MS
+sweetish
+sweetmeat/MS
+sweetness
+sweetshop/MS
+Sweetwaters
+sweetwine
+swell/DSGJ
+Swellendam
+swelling/M
+swelter/Sdk
+Swempoort
+Swenson/M
+swept
+sweptback
+swerve/DSG
+swerving/U
+swift/STY
+swiftness
+swig/DSGM
+swill/DGS
+swim/RSG
+swimming/Y
+swimsuit/SM
+swimwear
+Swinburne/M
+swindle/RSDG
+Swindon/M
+swine/M
+swineherd/MS
+swing/RGkSZ
+swingeing/Y
+swingier
+swingletree/MS
+swinish/Y
+swinishness
+swipe/DGSM
+swirl/SYDG
+swirly/T
+swish/GDSZ
+swishier
+Swiss
+switch-blade/SM
+switch-over/M
+switch/DRGSM
+switchback/MS
+switchboard/SM
+switched-on
+switchgear
+Swithin/M
+Switzer/M
+Switzerland/M
+swivel/DMGS
+swizz/S
+swizzle-stick/SM
+swizzle/MGD
+swizzler
+swollen
+swoon/GSD
+swoop/SDG
+swoosh/SGD
+sword/SmM
+Swordfish
+swordfish/MS
+swordplay/M
+swordsmanship/M
+swordtail/M
+Swordtails
+swore
+sworn
+swot/S
+swum
+swung
+sybarite/SMW
+Sybella
+Sybil/M
+Sybille/M
+Sybrandpark
+sycamore/MS
+sycophancy/S
+sycophant/WSM1
+Sydenham
+Sydney/M
+Sydneyvale
+Syferbult
+Sykes/M
+syllabary
+syllabi
+syllabification/M
+syllabify/NSnDG
+syllable/SWM
+syllabub/M
+syllabus/MS
+syllogism/SM
+syllogistic
+sylph-like
+sylph/SM
+sylphlike
+sylvan
+Sylvan's
+Sylvania/M
+Sylvester/M
+Sylvia/M
+Sylvie/M
+symbiont/M
+symbioses
+symbiosis/M
+symbiotic/Y
+symbol/q-MWwQ38S1
+symbolism/SM
+symbolist
+Symhurst
+symmetrical/U
+symmetry/8MwSQW1
+sympathetic/UY
+sympathy/sMQ98SW
+symphonists
+symphony/SWM
+symposia
+symposium/MS
+symptom/SpMW1
+symptomatology/M
+Symridge
+synaereses
+synaeresis
+synaesthesia
+synaesthetic
+synagogal
+synagogue/SM
+synapse/WMS
+sync/DSG
+synch
+synchronise/AnSGD
+synchronised/CU
+synchroniser/CMS
+synchronises/C
+synchronising/C
+synchronism/M
+synchronize/AnGNSD
+synchronized/CU
+synchronizer/CMS
+synchronizes/C
+synchronizing/C
+synchronous/Y
+synchrony/q8Q-9s
+synchrotron/M
+synclinal
+syncline/SM
+syncopal
+syncopate/DGS
+syncopation/M
+syncopator/SM
+syncope/nNM
+syndactyl/Y
+syndic/nNMS
+syndical
+syndicalism
+syndicalist
+syndicate/DGMS
+syndrome/SM
+syndromic
+synergism/MS
+synergistic
+synergy/MS
+syngamous
+syngamy
+syngenesis
+synod/wWMS
+synodal
+synoecious
+synonym/MSZW
+synonymity
+synonymous/Y
+synonymousness
+synonymy/SM
+synopses
+synopsis/M
+synoptic
+syntactic/Y
+syntactical
+syntax/SM
+syntheses
+synthesis/9Mdr8QS
+synthesise/ADSG
+synthesize/AGDS
+synthetic/YS
+syphilis/M
+syphilitic/S
+syphon/d
+Syracuse/M
+Syria/M
+Syriac
+Syrian/MS
+syringe/GDSM
+syrup/SM
+syrupy
+system/M1WS
+systematic/S
+systematise/nRGDS
+systematize/NGnRDS
+systemic/Y
+systole/SMW
+syzygy/S
+Szechuan/M
+T
+T'ang
+T's
+T-junction/S
+T-shirt/S
+t/ac
+Ta
+ta/o
+Taaibos
+tab/SMDGZ
+Tabankulu
+Tabasco/M
+Tabase
+Tabb/M
+tabbouleh/S
+tabby/MS
+Taber/M
+tabernacle/SM
+Tabitha/M
+tabla/MS
+table-top
+table/DMSG
+tableau/M
+tableaux
+tablecloth/SM
+tableland/SM
+tablespoon/6SM
+tablespoonful/SM
+tablet/MS
+tabletop/MS
+tableware/M
+tabloid/MS
+taboo/DMSG
+tabor/SM
+tabular/Y
+tabulate/NDSGn
+tabulation/M
+tabulator/MS
+tac/ZD2G
+tachograph/S
+tachometer/SM
+tachycardia/SM
+tacit/PY
+taciturn/Y
+taciturnity/M
+tack/SM
+tackle/RSGMD
+tacky/TS
+taco/MS
+Tacoma/M
+tact/FM
+tactful/U
+tactfully
+tactfulness
+tactic/YSM
+tactical
+tactician/MS
+tactile/Y
+tactility
+tactless/Y
+tactlessness
+tactual/Y
+Tadcaster
+tadpole/MS
+Tafelehashi
+Tafelkop
+Tafelsig
+Tafeni
+Taff/ZM
+taffeta/SM
+taffrail/SM
+Taffy/SM
+Tafile
+Taft/M
+tag/DSMG
+Tagalog/M
+tagged/U
+Tahiti/M
+Tahitian/S
+Tahoe/M
+taiga/MS
+tail-end
+tail-ender/S
+tail/CSAMDG
+tailback/SM
+tailboard
+tailcoat/S
+tailgate/G
+tailgater/M
+tailing/MS
+tailless
+tailor-made
+tailor/dMS
+tailpipe/SM
+tailplane
+tailspin/MS
+tailwind/MS
+taint/GSD
+tainted/U
+Taipei/M
+Tait/M
+Taiwan/M
+Taiwanese
+Tajik
+Tajikistan/M
+Takazidrif
+take-home
+take-off/MS
+take-up
+take/AfIcSa
+takeaway/S
+taken/acfA
+takeover/SM
+taker's/fa
+taker/acf
+takers/cf
+taking/Sf
+takkie/S
+Talbert/M
+Talbot/M
+Talboton
+talc/M
+talcum
+tale/SM
+talebearer/MS
+Talemofu
+Taleni
+talent/SpMD
+talented/U
+Taliban/M
+Taliesin/M
+talisman/WMS
+talk/vRGDZVuS
+talkie
+talky/S
+tall/T
+Talladega/M
+Tallahassee/M
+tallboy/MS
+Talley/M
+Tallinn/M
+tallish
+tallness
+tallow/MZ
+Tallulah/M
+Tally's
+tally-ho's
+tally-hos
+tally/GSD
+Talmud/M3W
+Talmudist
+talon/MS
+taloned
+talus/SM
+Tam/MZ
+tamaai
+tamale/MS
+Tamar/M
+Tamara/M
+tamarack/SM
+tamarind/SM
+Tamashek
+tamatiebredie
+tamazepam
+Tamboerskloof
+tambourine/SM
+Tamboville
+tame/7RGYTSD
+tameability
+tameable/U
+tamed/U
+tameness
+Tami/M
+Tamil/MS
+Tammany/M
+tammeletjie/S
+Tammie/M
+Tammy/M
+tamp/DGS
+Tampa/M
+Tampax/M
+tamper/rSd
+Tampere
+tampon/dMS
+Tampostad
+Tamworth
+tan/DRGJMyS
+tanager/SM
+Tanaka/M
+tanbark/MS
+tandem/SM
+tandoori/S
+Tandy/M
+tang/bSMZ
+Tanganyika/M
+tangelo/MS
+tangency/M
+tangent/SM
+tangential/Y
+tangerine/MS
+tangibility/ISM
+tangible/IYS
+tangibly/I
+Tangier's
+tangle/MSDG
+tangled/U
+tangles/U
+tangling/U
+tango/GDSM
+tangram
+tangy/T
+Tania/M
+tank/DRG6MS
+tankard/MS
+tankful/SM
+tanned/U
+Tannenbaum/M
+tannery/MS
+Tannhäuser/M
+tannie
+tannin/SM
+tanning/M
+tans/Z
+tansy/SM
+tantalise/k
+tantalize/k
+tantalum/Q-89sMq
+Tantalus/M
+tantamount
+Tantji
+tantra/S
+tantrum/SM
+Tanya/M
+Tanzania/M
+Tanzanian/S
+Tao/M
+Taoism/MS
+Taoist/MWS
+tap-dance/G
+tap/RGSMrdD
+tape-record/G
+tape/pM7S
+tapelike
+taper/d
+Tapertail
+tapestry/SMD
+tapeworm/SM
+tapioca/SM
+tapir/SM
+tapped/U
+tappet/SM
+taproom/MS
+tar/MGDSZ
+Tara/M
+taramasalata
+tarantella/MS
+tarantula/MS
+Tarawa/M
+tardiness
+tardy/YT
+tare/MS
+Tarentaalrand
+target/MdS
+tariff/GSMD
+Tarkastad
+Tarlton
+tarmac/SDG
+tarmacadam
+tarn/SM
+tarnish/7DGS
+tarnished/U
+taro/MS
+tarot/SM
+tarpaulin/SM
+tarpon/MS
+tarragon/MS
+tarry/SDTG
+Tarrytown/M
+tarsal
+tarsi
+tarsus/M
+tart/DTPSMGY
+tartan/SM
+tartar/MWS
+Tartuffe/M
+Tarzan/M
+Tashkent/M
+task/DGMS
+taskmaster/SM
+taskmistress/SM
+Tasman
+Tasmania/M
+Tasmanian/S
+Tass/M
+tassel/MSDG
+Tasselfish
+taste's/E
+taste/D6jpJMRSGZ
+tasteful/EPY
+tasteless/YP
+tastes/E
+tasty/TPY
+tat/rSDGZ
+Tatar/MS
+Tate/M
+Tatiana/M
+tatter/S
+tattered
+tattier
+tattle/RSGD
+tattoo/RGMDS
+tattooist/MS
+Tatum/M
+tau/M
+taught/AU
+Taulome
+Taung
+taunt/RGDkS
+Taunton
+taupe/M
+Taurus/M
+taut/TY
+tauten/dS
+tautness
+tautologous
+tautology/M1Sw
+tavern/MS
+taverna/S
+tawdry/TPY
+tawny/MT
+tax-deductible
+tax-free
+tax/nDMlk7SGJ
+taxable/S
+taxation/M
+taxed/cU
+taxer/S
+taxi/MGSD
+taxicab/SM
+taxidermy/M3S
+taxies
+taximeter/MS
+taxing/c
+taxiway/SM
+taxonomy/31SMwW
+taxpayer/MS
+taxpaying
+Tay
+Taybank
+Taylerville
+Taylor/M
+Taylorpark
+Tayside/M
+Tb
+TBA
+Tbilisi/M
+Tc
+Tchaikovsky/M
+TCP
+TDD
+Te
+tea-leaf
+tea-leaves
+tea/MS
+teabag/S
+teacake/SM
+teach-in
+teach/7RSGJ
+teachable/U
+teaches/A
+teaching/M
+teacloth
+teacup/M6S
+teacupful/SM
+teak/SM
+teal/MS
+team-mate/S
+team/MGSD
+teamster/MS
+teamwork/M
+Teanong
+teapot/MS
+tear-drop/SM
+tear-duct/S
+tear-gas/GD
+tear-jerker
+tear-off
+tear/pMS6jG
+tearaway
+tearfulness
+tearjerker/S
+tearless/Y
+tearlessness
+tearoom/SM
+teas/kDRGS
+tease
+teasel/MS
+teashop/MS
+teaspoon/M6S
+teaspoonful/MS
+teat/SM
+teatime/MS
+teazel
+teazle
+technetium/M
+technical/Y
+technicality/SM
+technician/SM
+technikon
+technique/MS
+technocracy/MS
+technocrat/WS
+technology/3w1SM
+technophiles
+technophobia
+technophobic
+techs
+Tecoma
+tectonic/YS
+Tecumseh/M
+Ted/M
+teddy/MS
+Tedelex
+tedious/PY
+tedium/M
+Tedstoneville
+tee-heed
+tee/MdSG
+teem/SGD
+teen/ZS
+teenage/R
+teens/Z
+teensy-weensy
+teeny-bopper/MS
+teeny-weeny
+teeny/T
+teepee/MS
+Tees/M
+teeter/dS
+teeth/MDG
+teethe
+teetotal/R
+teetotalism/SM
+TEFL
+Teflon/M
+Tegucigalpa/M
+Tegulu
+Teheran's
+Tehran/M
+Tehuis
+Teignbridge
+TEirtza/M
+Teisiesville
+Tekbase
+tektite/MS
+Tektronix/M
+Tel.
+telco/SM
+telecast/RSG
+telecentre/S
+Telecom
+telecommunicate/nN
+telecommunication/M
+telecommute/RGS
+teleconference/GMDS
+teledensity
+Teledyne/M
+telefacsimile
+telefax
+Telefonica
+Telefunken/M
+telegram/MSDG
+telegraph/W3M1GRDSZ
+telegraphy/M3
+telekinesis/M
+telekinetic
+Telemann/M
+telemarketer/S
+telemarketing
+telemeter/WMS
+telemetry/MS
+teleology/Mw
+telepathic
+telepathy/MS1
+telephone/SG3MZWD
+telephony/M
+telephoto/S
+teleprinter/SM
+Teleprompter
+TelePrompTers
+telescope/SGM1WD
+teletext
+telethon/MS
+Teletype/MS
+televangelism/S
+televangelist/S
+televise/DNXSG
+television/M
+televisual
+telework/G
+teleworker/S
+telex/MSGD
+Telford/M
+Telkom
+tell-tale/MS
+tell/YRGSk
+tells/A
+tellurium/M
+telly/SM
+Telugu/M
+Temba
+Tembani
+Tembelihle
+Tembisa
+Temboville
+temerity/MS
+temp/DRGSMT
+Tempe/M
+temper/EdSM
+tempera/LMS
+temperament/o
+temperamental
+temperance/MI
+temperate/IY
+temperateness
+temperature/SM
+tempest/MS
+tempestuous/Y
+tempestuousness
+tempi
+template's
+template/FS
+temple/MS
+Templeton/M
+tempo/SM
+temporal/Y
+temporarily
+temporariness
+temporary/FS
+temporise/SkRDG
+temporize/DRSGk
+tempt/FS
+temptation/SM
+tempted
+tempter/MS
+tempting/Y
+temptress/MS
+tempura/SM
+ten-year
+ten/MlHS7g
+tenability/MS
+tenable/U
+tenacious/Y
+tenaciousness
+tenacity/S
+tenancy/MS
+tenant/SDGM
+Tench
+tench/M
+tend/EGKDFSI
+tended/U
+Tendela
+tendency/SM
+tendentious/YP
+tender-hearted/PY
+tender/KMSIF
+tendered
+tenderer
+tenderest
+tenderfoot/MS
+tendering
+tenderise/RDGS
+tenderize/SGRD
+tenderloin/MS
+tenderly
+tenderness/M
+tendinitis
+tendon/MS
+tendril/MS
+tenebrous
+tenement/MS
+tenet/MS
+TENEX/M
+Tennantville
+Tenneco/M
+tenner
+Tennessee/M
+tennis/M
+Tennyson/M
+tenon/MS
+tenor/MS
+tenpin/MS
+Tenpounder
+tens/TGxDSNX
+tense/IYT
+tenseness
+tensile
+tension's/K
+tension/pMDG
+tensioner/S
+tensor/SM
+tent/FDGSM
+tentacle/MDS
+tentative/Y
+tentativeness
+tenter/M
+tenterhook/SM
+tenth/Y
+tents/I
+tenuous/Y
+tenuousness
+tenure/MSD
+tepee/MS
+tepid/Y
+tepidity/S
+tepidness
+tequila/SM
+teratology/M
+terbium/M
+tercel/M
+tercentenary/S
+tercentennial/S
+Terence/M
+Tereno
+Terenure
+Teresa/M
+Teri/M
+term-time
+term/DGSM
+termagant/SM
+terminable/IC
+terminal/MSY
+terminate/CSNn
+terminated
+terminating
+termination/CM
+terminator/SM
+termini
+terminologist/S
+terminology/S1Mw
+terminus/M
+termism
+termite/SM
+tern/MS
+ternary/S
+terns/I
+Terpsichore/M
+Terpsichorean
+Terra/M
+terrace/MDSG
+terracotta
+terrain/MS
+Terrance/M
+terrapin/MS
+terrarium/SM
+terrazzo/M
+Terre/M
+Terrell/M
+Terrence/M
+terrestrial/YMS
+Terri/M
+terrible/Y
+terribleness
+Terrie/M
+terrify/1SDkWG
+Terrill/M
+terrine/M
+territorial
+territoriality/M
+territory/MoS
+terror-stricken
+terror/38MQ-9Sqs
+terrorism/M
+terrorist
+terry/SRM
+terse/TY
+terseness
+tertian
+tertiary/S
+TESL
+Tesla/M
+TESOL
+Tessa/M
+Tesselaarsdal
+tessellate/SGNnD
+tessellation/M
+test's/F
+test-drive/G
+test-tube
+test/F7SDRCG
+testability/M
+testament/SM
+testamentary
+testate/B
+testator/SM
+testatrix
+tested/UKA
+testes
+testicle/MS
+testicular
+testify/RGSD
+testimonial/MS
+testimony/MS
+testiness
+testing/K
+testis/M
+testosterone/SM
+tests/AK
+testy/TY
+tetanus/M
+tetchy/TY
+tête
+tête-à-tête
+tête-bêche
+tether/MdS
+tethered/U
+tetra/SM
+tetrachloride/M
+tetrachord/SM
+tetracyclic
+tetracycline/SM
+tetrafluoride
+tetragon/SoM
+tetragonal
+tetrahedra/o
+tetrahedral
+tetrahedron/SM
+tetrameter/SM
+tetraplegia
+tetraplegic
+tetrapod
+tetrarch
+tetrastich
+tetrasyllable/W
+tetrathlon
+tetravalent
+tetrode
+Tettenhall
+Teuton/MW
+Tewkesbury
+Tex
+TeX's
+Texaco/M
+Texan/S
+Texas/M
+text/KMSF
+textbook/MS
+textile/MS
+Textron/M
+textual/FY
+textural
+texture/MoDSG
+textured/U
+Th
+Thababusiho
+Thabakgone
+Thabaneng
+Thabatlou
+Thabazimbi
+Thabeng
+Thabong
+Thad/M
+Thaddeus/M
+Thafalofefe
+Thafamasi
+Thai/S
+Thailand/M
+thalami
+thalamus/M
+thalidomide/MS
+thallium/M
+thallophyte/M
+Thalman
+Thamagane
+Thambo
+Thames
+Thameslink
+than
+Thandabantu
+Thandanani
+Thandokuhle
+thane/MS
+thank/jp6GSD
+thankfulness
+thankless/Y
+thanklessness
+thanksgiving/SM
+Thapelo
+that'd
+that'll
+that/M
+thatch/DGMRS
+Thatcher/M
+Thatcherite
+thatching/M
+thaw/GSD
+Thayer/M
+Thayne/M
+THC
+the/GJ
+Theadora/M
+theatre/MSw1
+theatregoer/SM
+theatregoing
+theatrical/S
+theatricality/MS
+theatrics
+Thebes
+thee
+Theescombe
+theft/SM
+their/S
+theism/SM
+theist/SMW
+Thelma/M
+them/1W
+thematic/S
+Thembalesizwe
+Thembalethu
+Thembalihle
+Thembeni
+Thembinkosi
+Thembisa
+theme/DMS
+themselves
+then
+thence
+thenceforth
+thenceforward
+Theo/M
+theocracy/MS
+theocratic
+theodolite/SM
+Theodon
+Theodora/M
+Theodore/M
+Theodosia/M
+Theodosius/M
+theologian/MS
+theology/w1SM
+theorem/SM
+theoretic/Y
+theoretical
+theoretician/MS
+theory/Qs3-q89MS
+theosophy/wS3WM
+therapeutic/SY
+therapist/MS
+therapy/SM
+Theravada/M
+there'd
+there'll
+there/M
+thereabout/S
+thereafter
+thereat
+thereby
+therefore
+therein
+thereof
+thereon
+Theresa/M
+Theresapark
+Therese/M
+thereto
+theretofore
+thereunder
+thereunto
+thereupon
+therewith
+therm/oSM
+thermal/S
+thermionic/S
+thermionics/M
+thermistor/SM
+thermochemical
+thermocouple/MS
+thermodynamic/YS
+thermoelastic
+thermoelectric
+thermoformed
+thermoforming
+thermoluminescence/M
+thermometer/SWM
+thermometry/M
+thermonuclear
+thermopile/M
+thermoplastic/S
+Thermos/SM
+thermosetting
+thermostat/W1MS
+Theron/M
+Theronsville
+Theronville
+thesauri
+thesaurus/MS
+these/S
+Theseus
+thesis/M
+Thespian/S
+Thessalonian/S
+Thessaly/M
+theta/MS
+Theunissen
+they
+they'd
+they'll
+they're
+they've
+thiamine/M
+Thibella
+thick-headed
+thick-skinned
+thick/YTP
+thicken/drS
+thickening/M
+thicket/MS
+thickhead
+thickish
+thickset
+thief/M
+Thiensville/M
+Thierry
+thieve/DySG
+thievery/SM
+thievish
+thievishness
+thigh-bone/MS
+thigh/MS
+thimble/6SM
+thimbleful/SM
+Thimphu/M
+thin/YDTRGSP
+thine
+thing/M
+thingamabob/MS
+thingamajig/MS
+think-tank
+think/RJS7G
+thinkable/U
+thinking/U
+thinks/A
+thinnish
+third-class
+third-party
+third-rate
+third/Y
+thirst/DMGz2SZ
+thirsty/T
+thirteen/HM
+thirty-eight/H
+thirty-first/S
+thirty-five/H
+thirty-four/H
+thirty-nine/H
+thirty-one
+thirty-onefold
+thirty-second/S
+thirty-seven/H
+thirty-six/H
+thirty-three/H
+thirty-two
+thirty-twofold
+thirty/HMS
+this
+this'll
+thistle/MS
+thistledown/M
+thither
+Thlohlolwane
+Thlolong
+Thogwaneng
+Thohoyandou
+Thokoza
+Thole-nthuse
+thole/M
+Tholo-rapulana
+Tholongwe
+Thom/M
+Thomas
+Thomism/M
+Thompson/M
+Thomson/M
+thong/MDS
+Thor/M
+thoracic
+thorax/MS
+Thoreau/M
+thorium/M
+thorn/MZ2S
+Thorndike/M
+Thornfish
+Thornham
+Thornhill
+Thornton/M
+Thornville
+Thornwood
+thorny/T
+thorough/YP
+thoroughbred/S
+thoroughfare/MS
+thoroughgoing
+Thorp
+Thorpe/M
+those
+thou
+though
+thought-provoking
+thought/jS6Mp
+thoughtful/U
+thoughtfulness
+thoughtless/YP
+thousand/SMH
+Thrace/M
+Thracian/M
+thrall/SM
+thrash/DGJRS
+thrashing/M
+thread's
+thread/ASGD
+threadbare
+threadlike
+threat/MS
+threaten/dkS
+three-colour
+three-cornered
+three-dimensional/Y
+three-fold
+three-handed
+three-legged
+three-line
+three-phase
+three-piece
+three-ply
+three-point
+three-pronged
+three-quarter/S
+three-way
+three-wheeler
+three/HMS
+threepence/M
+threepenny
+threescore
+threesome/SM
+threnody/MS
+thresh/SRGD
+threshold/SM
+threw/c
+thrice
+thrice-married
+thrift/M2pSzZ
+thrifty/T
+thrill/RSMDkG
+thrive/DSkG
+throat/MDSz2Z
+throaty/PT
+throb/DGS
+throe/MS
+thrombi
+thromboses
+thrombosis/M
+thrombus/M
+throne's
+throne/DSC
+throng/MSGD
+throttle/MSDG
+through
+through-traffic
+throughout
+throughput/MS
+throw-in
+throw/cGS
+throwaway/MS
+throwback/MS
+thrower/MS
+thrown/c
+thrum/DGS
+thrush/MS
+thrust/GSR
+Thu
+Thubalethu
+Thubelihle
+thud/GDMS
+thug/MS
+thuggery/M
+thuggish
+thuggishness
+Thukela
+Thulamahashe
+Thule/M
+Thulini
+thulium/M
+Thulwe
+thumb/GSMD
+thumbnail/MS
+thumbprint
+thumbscrew/MS
+thumbsuck
+thump/GSMD
+thumper
+thunder-box
+thunder/SZdkM
+Thunderbird/MS
+thunderbolt/MS
+thunderclap/MS
+thundercloud/MS
+thunderflash/S
+thunderous/Y
+thunderstorm/MS
+thunderstruck
+thunk
+Thur/S
+Thurman/M
+Thurrock/M
+Thursday/MS
+Thurston/M
+thus
+Thusang
+Thusanong
+Thushanang
+Thusong
+Thuthuka
+Thuthukani
+thwack/GDS
+thwart/GDS
+thwarter/M
+thy
+thyme/MS
+thymine/M
+thymus/MS
+thyristor/MS
+thyroid/S
+thyroidal
+thyrotrophic
+thyrotropic
+thyrotropin
+thyroxine/M
+thyself
+Ti
+tiara/SM
+Tibanefontein
+Tibedi
+Tiber/M
+Tiberius/M
+Tibet/M
+Tibetan/S
+tibia/M
+tibiae
+Tiburon/M
+tic-tac
+tic/RDG
+tick-tack
+tick-tock/SMDG
+tick/MS
+ticker-tape
+ticket-day
+ticket-of-leave
+ticket/MdSZ
+tickety-boo
+tickle/GDRS
+ticklish/P
+Ticonderoga/M
+tidal
+tiddlywinks
+tide/SD2GJZo
+tidewater/MS
+tideway/M
+tidier/U
+tidily/U
+Tidimalo
+tidiness/U
+tidy/DTGSY
+tie's
+tie-break
+tie-in
+tie/ASUGD
+tieback/MS
+tiebreaker/SM
+Tiegerpoort
+Tienanmen
+tier/MDS
+Tierney/M
+tiff/MS
+Tiffany/M
+Tigane
+tiger/MS
+Tigerfish
+tigerish
+tight-arsed
+tight-fisted
+tight-fitting
+tight-knit
+tight-lipped
+tight/TYSP
+tighten/dS
+tightened/c
+tightly-knit
+tightrope/SM
+Tigre
+tigress/SM
+Tigrinya
+Tigris/M
+Tijuana/M
+tike's
+Tikitiki
+Tikwana
+tilde/MS
+tile/RSDMG
+Tileba
+till/GD7RS
+tillage/MS
+tilled/E
+tiller/EMS
+Tillman/M
+tilt/GSD
+tilters
+tilth/M
+Tim/ZMS
+Timaeus
+timber/dSM
+timberline/S
+timbre/MS
+timbrel/SM
+Timbuktu/M
+time-and-motion
+time-consuming
+time-honoured
+time-lapse
+time-out/S
+time-scale/S
+time-server/MS
+time-serving/S
+time-share/DSG
+time-spans
+time-wasting
+time-work
+time-worn
+time/cSM
+timebase
+timed/a
+timekeeper/SM
+timekeeping/M
+timeless/Y
+timelessness
+timeline
+timeliness/U
+timely/PT
+timeous/Y
+timepiece/SM
+timer/MS
+times/a
+timeslot/SM
+timespan
+timestamped
+timestamps
+timetable/MDSG
+Timex/M
+timid/Y
+timidity/SM
+timidness
+timing's
+timing/a
+timings
+Timmy/M
+Timne
+Timor-Leste
+timorous/Y
+timorousness
+Timothy/M
+timpani
+timpanist/S
+Timur/M
+tin-glaze
+tin-opener
+tin-pan
+tin-plate/M
+tin-tack
+tin/GSD2MZz
+Tina/M
+Tinaruste
+tincture/MDSG
+tinder/M
+tinderbox/MS
+tine/SMZ
+tinfoil/M
+Ting's
+ting/DY
+tinge/S
+tingeing
+tingle/SDG
+tingly/T
+tinker/dMS
+tinkerer/S
+tinkle/YDSG
+Tinmyne
+tinnitus/M
+tinny/TP
+tinpot
+tinsel/MYGDS
+Tinselfish
+tinsmith/MS
+tint/GDMS
+tintinnabulation/MS
+tinware/M
+tiny/TP
+Tioga/M
+tip-offs
+tip-top
+tip/GRMSD
+Tippecanoe/M
+Tipperary/M
+tippet/SM
+tipple/DRGS
+tips/2Zz
+tipster/SM
+tipsy/TP
+tiptoe/DSG
+Tipton
+tiptop
+Tiptronic
+tirade/MS
+Tirana/M
+Tirane
+tire/cDAGS
+tired/Y
+tiredness
+Tiree/M
+tireless/Y
+tirelessness
+tiresome/Y
+tiresomeness
+tiring/U
+Tirisano
+Tirol/M
+Tirolean/S
+tissue/MS
+tit-for-tat
+tit/MSR
+titan/MSW
+Titania/M
+Titanic's
+titanium/M
+Titbabbler
+titbit/SM
+tithe/MDGS
+Titian/M
+titillate/SDkGNn
+titillation/M
+titivate/DSNGn
+titivation/M
+title's
+title-deed/MS
+title-page
+title/ADSG
+titled/U
+titleholder/SM
+titmice
+titmouse/M
+Tito/M
+titrate/DSG
+titration/M
+titre/NSM
+titter/d
+tittle-tattle
+tittle/SM
+titular/Y
+Titus/M
+Tivi
+tizz/Z
+tizzy/SM
+TKO
+Tladi
+Tladistad
+Tlamatlama
+Tlapa
+Tlapeng
+TLC
+Tlhabane
+Tlhabologang
+Tlhageng
+Tlhakalatlou
+Tlhakgameng
+Tlhotlhokwe
+Tlingit
+Tlounane
+Tm
+TNT
+to-do
+to/IU
+toad/MZS
+toadstool/MS
+toady/MDSG
+toadyism/M
+toast/RSMZDG
+toasting-fork
+toastmaster/MS
+toastmistress/S
+toasty/T
+tobacco/MS
+tobacconist/MS
+Tobago/M
+Tobias/M
+Tobin/M
+toboggan/rd3SM
+tobogganist
+Toby/M
+toccata/M
+tock/MDGS
+tocsin/SM
+today/M
+Todd/M
+toddle/RGDS
+toddy/SM
+toe/MDSG
+toecap/MS
+TOEFL
+toehold/MS
+Toekomsrus
+Toemaskop
+toenadering
+toenail/MS
+toffee/MS
+tofu/S
+tog/SMDG
+toga/SMD
+together
+togetherness
+toggle/MGDS
+Togo/M
+Togolese
+toil-worn
+toil/RSMGD
+toilet/MSdy
+toiletry/MS
+toilette/SM
+toilsome/Y
+toilsomeness
+toity
+Tokai
+Tokelau
+token/8QSM
+tokenism/SM
+Tokologo
+tokoloshe
+Tokoza
+toktokkie
+Tokugawa/M
+Tokwana
+Tokyo/M
+Tokyoite/MS
+told/AU
+Toledo/M
+tolerability/IM
+tolerable/IY
+tolerably/I
+tolerance/SMI
+tolerant/IY
+tolerate/SBDGnN
+toleration/M
+toll-bridge/SM
+toll-gate/MS
+toll-house/M
+toll-road/MS
+toll/DGS
+tollbooth/MS
+Tolstoy/M
+toluene/M
+Tolwe
+tom-tom
+tom/SM
+tomahawk/SMDG
+Tomas
+tomato/M
+tomatoes
+tomb/SM
+tomblike
+Tombo
+tombola/M
+tomboy/MS
+tomboyish
+tombstone/MS
+Tomcat
+tomcat/SM
+Tomé/M
+tome/SM
+tomfool
+tomfoolery/MS
+Tomlin/M
+Tommie/M
+Tommy/MS
+tomography/WM
+tomorrow/SM
+Tompkins/M
+tomtit/MS
+ton/MrdSoW
+tonal
+tonality/SM
+Tonbridge
+tone-deaf
+tone/McSf
+toned/I
+toneless/Y
+tonelessness
+toner/IMS
+tones/I
+Tonetti
+tong/S
+Tonga-view
+Tonga/M
+Tongaat
+Tongan/MS
+tongue-in-cheek
+tongue-tied
+tongue-twister/S
+tongue/MGDS
+tonguing/M
+Tongwe
+Toni/M
+Tonia/M
+tonic/SM
+tonight/M
+toning/I
+tonnage/SM
+tonne/SM
+tonsil/MS
+tonsillectomy/SM
+tonsillitis/M
+tonsorial
+tonsure/SDMG
+Tonteldoos
+Tonti
+Tony/M
+Tonya/M
+too
+took/fAca
+tool's
+tool/AGSD
+toolbar
+toolbox/MS
+toolmaker/SM
+toolmaking/M
+Tooseng
+toot/DRSG
+tooth-like
+tooth/MDZpz
+toothache/MS
+toothbrush/SM
+toothcomb
+toothless/Y
+toothlessness
+toothpaste/SM
+toothpick/MS
+toothsome/Y
+toothsomeness
+toothy/T
+tootle/DSG
+toots/Z
+tootsie/M
+tootsy/MS
+top-down
+top-heavy
+top-level
+top-notch
+top-up
+top/1RGJwWpDMS
+topaz/MS
+topcoat/SM
+topdressing/S
+Topeka/M
+toper/M
+topflight
+topgallant/M
+topiary/S
+topic/SM
+topicality/SM
+Topkamp
+topknot/MS
+topmast/MS
+topmost
+topographer/SM
+topography/W1wMS
+topology/1S3Mw
+toppie
+topping/M
+topple/DSG
+tops/Z
+topsail/MS
+topside/MS
+topsoil/M
+topspin/MS
+topsy-turvy
+toque/MS
+tor/M
+Torah/SM
+Torbay
+torch-bearer/MS
+torch/MDSG
+torchlight
+tore
+toreador/MS
+Torfaen/M
+torment/GSDk
+tormentor/SM
+torn
+tornado/M
+tornadoes
+Tornadoville
+Tornaka
+toroid/SMo
+toroidal
+Toronto/M
+torpedo/MDG
+torpedoes
+torpid/Y
+torpidity/S
+torpor/SM
+Torquay
+torque/DSMG
+torr
+Torrance/M
+torrent/MS
+torrential
+Torres
+Torricelli/M
+torrid/Y
+torridness
+Tórshavn/M
+torsion's/I
+torsion/oSM
+torsional
+torso/MS
+tort's
+tort/FSEA
+torte/MS
+tortellini/M
+tortilla/SM
+tortoise/MS
+tortoiseshell/SM
+tortuous/Y
+tortuousness
+torture/DSGR
+torturous
+torus/MS
+Tory/SM
+Tosca/M
+Toscanini/M
+Toshiba/M
+toss-up/MS
+toss/RGDS
+tot/DoMSG
+Total
+total/9MGsDS
+totalitarian/S
+totalitarianism/MS
+totality/SM
+Totalizator/M
+Tote's
+tote/SG
+totem/SM
+totemic
+Totiusdal
+Toto/M
+Tottenham/M
+totter/dSk
+totting-up
+toucan/MS
+touch-and-go
+touch-judge/S
+touch-tone
+touch-typists
+touch/ADSG
+touchable/U
+touchdown/SM
+touché
+touched/U
+touching/Y
+touchline/M
+touchpaper
+touchstone/MS
+touchwood
+touchy-feely
+touchy/YPT
+tough-minded
+tough/GPYDTS
+toughen/dS
+Toulouse/M
+toupee/MS
+tour/CSDFMG
+tourer/MS
+tourism/MS
+tourist/MSZ
+tourmaline/MS
+tournament/SM
+tourney/DGSM
+tourniquet/MS
+tousle/GDS
+tout/SGD
+Touws
+tow-bar/MS
+tow-coloured
+tow-head/MSD
+tow-line/MS
+tow-path/SM
+tow-rope/MS
+tow/DRGS
+toward/U
+towards
+towel/SMDG
+tower/dk
+Towerby
+town/Mm5S
+townee
+townie/SM
+Townley/M
+townscape
+Townsend/M
+townsfolk
+Township
+township/MS
+townspeople/M
+Townsview
+Townview
+tows/f
+Towsley/M
+toxaemia/M
+toxaemic
+toxic/S
+toxicity/SM
+toxicology/w3M
+toxin/SM
+toy/DMSG
+toymaker
+Toynbee/M
+Toyoda/M
+Toyota/M
+toyshop
+trace's
+trace/ADSGnN
+traceability
+traceable/U
+traced/U
+traceless/Y
+tracer/SZM
+tracery/SM
+Tracey/M
+trachea/M
+tracheae
+tracheal
+tracheotomy/SM
+Traci/M
+Tracie/M
+tracing/SM
+track-laying
+track/RGSMpD
+trackball/S
+trackbed
+tracked/U
+tracksuit/SM
+tract's/F
+tract/ESAFC
+tractability/I
+tractable/IY
+tractably/I
+traction/FMACES
+tractive
+tractor/CFMSA
+Tracy/M
+trade-in/S
+trade-off/S
+trade/mR5MDGS
+trademark/SMGD
+tradescantia
+tradespeople
+tradition/SoM
+traditional/3
+traditionalism/MS
+traditionalist/W
+traditionally/U
+traduce/RSGD
+traducement
+Trafalgar/M
+traffic-calmed
+traffic-calming
+traffic/RSGMD
+trafficking/S
+Trafford
+tragedian/MS
+tragedienne/MS
+tragedy/SM
+tragic/Y
+tragicomedy/SM
+tragicomic
+trail/FS
+trailblazer/MS
+trailblazing
+trailed
+trailer/SMd
+trailing
+train-bearer/S
+train-spotter/M
+train-spotting
+train/SDRGJ7
+trainable/U
+trained/UA
+trainee/MS
+traineeships
+training/M
+trainload
+trainman/M
+trainmen/M
+trains/A
+traipse/GSD
+trait's
+trait/E
+traitor/SM
+traitorous/Y
+traits
+trajectory/MS
+tram/MS
+tramcar/S
+tramlines
+trammel/DGS
+trammelled/U
+tramp/DRGS
+trample/GSD
+trampoline/MS
+trampolinist
+tramway/MS
+trance/SM
+tranche/SM
+Tranmere
+tranny/S
+tranquil/Y
+tranquillity/S
+tranquilly/Qs98q-
+transact/x
+Transactie
+transaction
+transalpine
+transatlantic
+transceiver/MS
+transcend/SDG
+transcendence/MS
+transcendent/oY
+transcendental/3
+transcendentalism/MS
+transcendentalist
+transcode/G
+transcribe/SGRNDX
+transcript/MS
+transcription/M
+transcriptional
+transducer/MS
+transect/GS
+transept/SM
+transfer/7DMGgRS
+transferability/M
+transferee/SM
+transference/MS
+transferor/MS
+transferral/MS
+transfigure
+transfinite
+transfix
+transform/7R
+transformational
+transformed/U
+transgenic
+transgress/NSVDGX
+transgression/M
+transgressor/S
+transience/SMZ
+transiency/S
+transient/SY
+transistor/8QSM
+transit/dNxXVuvy
+transition/MDG
+transitive/IPY
+transitivity/M
+Transkei
+translatability/M
+translatable/U
+Translate.org.za
+translate/nDGNgS
+translated/Ua
+translates/a
+translating/a
+translation/aMS
+translational
+translator/MS
+transliterate/DnG
+translucence/ZM
+translucency/SM
+transmissible
+transmission/AM
+transmit/ADGSNX
+transmittable
+transmittal/MS
+transmittance/MS
+transmitter/MS
+transmogrification/M
+transmogrify/nDSNG
+transmutable
+transnational
+Transnet
+transom/MS
+transonic
+transparency/MS
+transparent/Y
+transpiration/M
+transpire/SGNnD
+transplant/7
+transponder/M
+transport/NBn
+transportable/U
+transportation/M
+transposable
+transpose/N
+transposed/U
+transputer/M
+Transriviere
+transsexual/MS
+transsexualism/SM
+Transtel
+transubstantiation/MS
+transuranic
+Transvaal/M
+transversal/M
+transverse/oY
+transvestism/MS
+transvestite/SM
+transvestitism
+Transylvania/M
+trap/JMDRGS
+trapdoor/S
+trapeze/SM
+trapezia
+trapezium/MS
+trapezoid/MS
+trapezoidal
+trappable/U
+Trappist/MS
+trapshooting/M
+trash/MDSG2Z
+trashy/PT
+trauma/8QMSW1
+traumata
+travail/DMGS
+travel/DRGJS
+travelled/U
+travelogue/SM
+Travers
+traversable
+traversal/SM
+traverse/DGS
+travertine/M
+travesty/SDMG
+Travis/M
+Trawal
+trawl/RGSD
+tray/MS
+treacherous/PY
+treachery/MS
+treacle/MY
+tread/GSA
+treadle/DMGS
+treadmill/MS
+treason/SM7
+treasonous
+treasure-trove/MS
+treasure/DRGSMZ
+treasury/SM
+treat's
+treat/aSADG
+treatable/U
+treated/KU
+treatise/SM
+treatment/KMS
+treaty/SM
+treble/GDS
+Treblinka/M
+tree/SMGp
+Treehaven
+treelike
+treetop/SM
+trefoil/MS
+trek/MRGDS
+Trekker
+trellis-work
+trellis/dSM
+trematode/MS
+Tremayne/M
+tremble/DGkYS
+trembler/M
+trembly/T
+tremendous/Y
+tremendousness
+tremolo/MS
+tremor/SM
+tremulous/PY
+trench's
+trench/ASDG
+trenchancy/MS
+trenchant/Y
+trencher/mMS
+trend/z2SMDGZ
+trendsetter
+trendsetting
+trendy/T
+Trennerys
+Trent/M
+Trenton/M
+trepanned
+trepidation/MS
+Trescothick
+trespass/DRSG
+tress's/a
+tress/EaS
+trestle/MS
+Trevenna
+Treves
+Trevino/M
+Trevolen
+Trevor/M
+trews
+triad/MWS
+triage/SMGD
+trial/ASaM
+trialled
+trialling
+triangle/SM
+triangular/Y
+triangulate/SDGNn
+triangulation/M
+Triassic
+triathlon/S
+tribal/Y
+tribalism/M
+tribe/mS5M
+tribulation/SM
+tribunal/MS
+tribune/MS
+tributary/SM
+tribute's
+tribute/FSE
+trice
+tricentennial
+triceps/M
+triceratops/M
+Trichardt
+Trichardtsdal
+trichina/M
+trichinae
+trichinoses
+trichinosis/M
+trichloroethane
+trichromatic
+Tricia/M
+trick/MDz2GSZ
+trickery/SM
+trickle/SGD
+trickster/SM
+tricky/PT
+tricolour/MSD
+tricycle/MS
+trident/MS
+tried/U
+triennial/YS
+trier/SM
+Trieste/M
+triffid/S
+trifle/MDRSG
+trifocals
+trig/DRGS
+trigger-happy
+trigger/d
+triglyceride/M
+trigonometry/MWw
+trihedral
+trike/M
+trilateral
+trilby/MS
+trilingual
+trill/MDGS
+trillion/HS
+trillium/MS
+trilobite/MS
+trilogy/MS
+trim/YDJTRGS
+trimaran/MS
+Trimble/M
+trimester/MS
+trimmed/U
+trimming/M
+trimness
+trimodal
+trimonthly
+Trina/M
+Trinidad/M
+trinitrotoluene/M
+trinity/SM
+trinket/MS
+trio/SM
+triode/SM
+Triomf
+trioxide/M
+trip/YDRGMS
+tripartite
+tripe/M
+triphthong/S
+triphthongal
+triplane
+triple/SGD
+triplet/MS
+Tripletail
+triplex/S
+triplicate/S
+triplication/M
+triply/N
+tripod/MS
+tripodal
+Tripoli/M
+tripos/MS
+Tripp/M
+tripping/Y
+triptych/M
+triptychs
+tripwire/MS
+trireme/MS
+trisect/GDS
+trisection/S
+trisector
+Trish/M
+Trisha/M
+trisodium
+Tristan/M
+tristate
+trisyllable
+trite/FY
+triteness
+tritium/M
+triumph/MDSG
+triumphal
+triumphalism
+triumphalist
+triumphant/Y
+triumvir/MS
+triumvirate/MS
+triune
+trivalent
+trivet/SM
+trivia/o
+trivial/qQ-8
+triviality/SM
+tRNA
+trochaic/S
+trochee/MS
+trod/A
+trodden/UA
+troglodyte/MS
+troika/MS
+trojan
+Trojan/SM
+troll/MDSG
+trolled/F
+trolley/MS
+trolleybus/S
+trollop/MS
+Trollope/M
+trombone/MS3
+trommel
+trompe
+Trompsburg
+Trondheim/M
+troop/RGSMD
+troopie
+troopship/SM
+trope/MWw1S
+trophy/MS
+tropic/MS
+tropism/MS
+troposphere/MW
+trot/DRSG
+troth/S
+Trotsky/M
+troubadour/MS
+trouble/MGSD
+troubled/U
+troublemaker/MS
+troublemaking
+troubleshoot/RSG
+troublesome/YP
+trough/MS
+trounce/DGS
+troupe/RMS
+trouser/S
+trousered
+trousseau/M
+trousseaux
+trout/M
+Troutman/M
+Trovato
+trove/SM
+trowel/MS
+troy
+Troy's
+Troyeville
+truancy/SM
+truant/GMDS
+truce/SM
+truck/RSMDG
+Truckee/M
+truckle/DGS
+truckload/MS
+truculence/M
+truculent/Y
+Trude/ZM
+Trudeau/M
+trudge/DSG
+Trudi/M
+Trudy/M
+true-blue
+true-born
+true/GTD
+truelove/SM
+trueness
+truffle/SM
+truism/SM
+Trujillo/M
+Truk
+truly
+Truman/M
+Trumann/M
+Trumbull/M
+trump/MDGS
+trumped-up
+trumpery/SM
+trumpet-call
+trumpet/dMrS
+Trumpeter
+Trumpetfish
+Trumpetsnout
+truncate/DSGNn
+truncation/M
+truncheon/SM
+trundle/SGD
+trunk/MGS
+Trunkfish
+Truro/M
+Trurolands
+truss/DGS
+trust's
+trust/ESa6GDj
+trusted/U
+trustee/SM
+trusteeship/MS
+trustful/P
+trustfulness/E
+trustiness
+trusting/Y
+trustworthiness/U
+trustworthy/P
+trusty/TMS
+truth/jUMS6
+truthfulness/U
+TRW
+try-out/MS
+try/ADGS
+trying/Y
+trypsin/M
+tryst/GMDS
+Tsakane
+tsar/S
+tsarevich
+tsarina's
+tsarist
+Tsate
+Tsatsana
+Tsembeyi
+Tsenelong
+Tseoge
+tsetse
+Tsetse
+Tshabo
+Tshakhuma
+Tshamahansi
+Tshandama
+Tshani
+Tshatshu
+Tshaulu
+Tshebedi
+Tshepiso
+Tshepisong
+Tshepo
+Tsheseng
+Tshiawelo
+Tshibedi
+Tshidilamolomo
+Tshidimbini
+Tshififi
+Tshifudi
+Tshikondeni
+Tshilamba
+Tshilaphala
+Tshilwaneng
+Tshilwavhusiku
+Tshimbupfe
+Tshing
+Tshipise
+Tshitandani
+Tshivenda
+Tshonya
+Tshukhuma
+Tshwane
+Tshwarangano
+Tshware
+Tshweneng
+Tsiame
+Tsietsi-mashinini
+Tsilitwa
+Tsimanyane
+Tsimshian
+Tsitsikamma
+Tsitsing
+Tsolo
+Tsomo
+Tsonga
+tsotsi/S
+Tsotsitaal
+tsunami/MS
+Tswana/M
+Tswanaland
+Tswaraganang
+Tswelelang
+TTL
+tu
+tu-whit
+tu-whoo
+Tuareg/M
+tub/drSMZ
+tuba/MS
+tubby/T
+tube/SMp
+tubercle/MS
+tubercular
+tuberculin/M
+tuberculoses
+tuberculosis/M
+tuberculous
+tuberose/MS
+tuberous
+tubing/M
+tubular
+tubule/MS
+TUC
+Tuck's
+tuck/DSRG
+Tucson/M
+Tudor/SM
+Tue/S
+Tuesday/MS
+tuft/MZSDG
+tug/DSG
+tugboat/MS
+Tugela
+Tuinhof
+Tuinplaas
+Tuinteiste
+tuition/IMS
+Tukkies
+Tulane/M
+tularaemia
+tularaemic
+Tulbagh
+tulip/MS
+tulle/SM
+Tully/M
+Tulsa/M
+tum/Z
+Tumahole
+tumble-drier
+tumble-dry/SD
+tumble/RSDG
+tumbledown
+tumbler/6
+tumblerful/S
+tumbrel/MS
+tumbrils
+Tumbuka
+tumescence
+tumescent
+tumid/Y
+tumidity/MS
+tummy/MS
+tumorous
+tumour/MS
+Tums/M
+tumult/SM
+tumultuous/PY
+tumulus/M
+tun/dWrZS7
+tuna/SM
+tunable/C
+Tunbridge
+tundra/MS
+tune's
+tune/ASCDG
+tuneful/PY
+tuneless/Y
+tungsten/M
+Tungwane
+tunic/MS
+tuning/MS
+Tunis/M
+Tunisia/M
+Tunisian/S
+tunnel/RJGDSM
+tunny/MS
+Tunxe
+tupelo/M
+tuppence/M
+Tupperware
+turban/SM
+turbaned
+turbid
+turbidity/SM
+turbinate
+turbine/MS
+turbo
+turbocharged
+turbocharger/MS
+turbofan/SM
+turbojet/MS
+turboprop/MS
+turbot/MS
+turbulence/MS
+turbulent/Y
+turd/MS
+tureen/MS
+turf/GSMDZ
+Turffontein
+Turfhall
+Turflaagte
+Turfloop
+turfy/T
+turgid/Y
+turgidity/SM
+Turin/M
+Turing/M
+Turk/SMW
+Turkey/M
+turkey/MS
+Turkic/M
+Turkish
+Turkmen
+Turkmenistan/M
+Turks/M
+Turmenistan
+turmeric/SM
+turmoil/M
+turn-buckle/MS
+turn-down
+turn-off/MS
+turn-up/S
+turn/ASDcG
+turnabout/SM
+turnaround/MS
+turncoat/SM
+turned/U
+turner's
+turner/AS
+turning/MS
+turnip/MS
+turnkey/M
+turnout/SM
+turnover/MS
+turnpike/SM
+turnstile/MS
+Turnstone
+turnstone/M
+turntable/SM
+turpentine/M
+Turpin/M
+turpitude/SM
+turquoise/SM
+turret/SM
+turreted
+turtle-dove/MS
+turtle-neck/MDS
+turtle/MS
+turvy
+Tuscaloosa/M
+Tuscan
+Tuscany/M
+tush
+tusk/DRGMS
+Tuskegee/M
+Tussendal
+tussle/DGS
+tussock/MSZ
+tut-tuts
+tut/GSD
+Tutankhamen/M
+tutelage/MS
+tutelary/S
+tutor/dSM
+tutored/U
+tutorial/MS
+tutorship/S
+Tutsi
+tutti/S
+Tuttle/M
+tutu/MS
+Tuvalu/M
+Tuvinian
+tuxedo
+TV/M
+TVA
+TVs
+TWA/M
+twaddle/M
+twain
+twang/MDGSZ
+twangy/T
+Twazi
+tweak/SRGD
+Twecu
+twee/T
+Tweed/M
+tweed/SMZ2
+Tweedemyn
+Tweedie
+Tweedledee/M
+Tweedledum/M
+tweedy/T
+Tweefontein
+Tweeling
+tweeness
+Tweespruit
+tweet/RDGS
+tweezers
+twelve/H
+twenty-eight/H
+twenty-first/S
+twenty-five/H
+twenty-four/H
+twenty-nine/H
+twenty-one
+twenty-onefold
+twenty-second/S
+twenty-seven/H
+twenty-six/H
+twenty-three/H
+twenty-twenty
+twenty-two
+twenty-twofold
+twenty/SH
+twerp/MS
+Twi
+twice
+twice-married
+Twickenham
+twiddle/DYSG
+twiddler/M
+twiddly/T
+twig/MDZGS
+twiggy/T
+twilight/MS
+twilit
+twill/GSD
+twin/MDdGS
+twine/MS
+twinge/MSGD
+Twinkie
+twinkle/SGDY
+Twinsville
+twirl/DRGSY
+twist/SRGZD
+twisted/U
+twists/U
+twit/MSGD
+twitch/DZSG
+twitchy/T
+twitter/dS
+two-dimensional/Y
+two-edged
+two-faced
+two-handed
+two-sided
+two-step
+two-stroke/SM
+two-thirds
+two-timer
+two-tone
+two-way
+two-wheeler/MS
+two/SM
+twofold
+twopence/SM
+twopenny
+twosome/SM
+Twp
+TWX
+Ty
+tycoon/SM
+Tydfil/M
+Tyelebane
+Tyeni
+Tygerberg
+Tygerdal
+Tygerhof
+Tygerpark
+Tyinindini
+Tyira
+tyke/SM
+Tylden
+Tylenol/M
+Tyler/M
+Tylor/M
+tympani
+tympanist/MS
+tympanum/MS
+Tyndall/M
+Tyne/M
+Tynemouth
+Tyneside/M
+Tyoksvalley
+Tyoksville
+type's
+type/aGADS
+typecast/G
+typed/U
+typeface/SM
+typescript/SM
+typeset/RGS
+typewriter/SM
+typewriting
+typewritten
+typhoid/M
+typhoon/SM
+typhus/M
+typical/Y
+typicality/M
+typify/GDS
+typo/3MS
+typographer/SM
+typography/MwSW1
+typology/1SMw
+tyrannosaur/SM
+tyrannosaurus/S
+tyrannous
+tyranny/wSQ8M1
+tyrant/MS
+tyre/SM
+Tyree/M
+tyro/MS
+Tyrol's
+Tyrolean/S
+Tyrone/M
+tyrosine/M
+Tyson/M
+Tzaneen
+tzar/SM
+tzarina/SM
+tzatziki
+tzigane
+U
+UAR
+UART
+UAW
+ubiquitous/Y
+ubiquitousness
+ubiquity/S
+Ubombo
+ubuntu
+Ubuntu/M
+UCL/M
+UCT
+Udall/M
+udder/MS
+UDP
+UFO/S
+ufologist/S
+ufology/M
+Uganda/M
+Ugandan/S
+Ugaritic
+ugh/F
+Ugie
+ugliness
+ugly/T
+uh
+UHF
+Uif
+Uighur
+Uitenhage
+Uitkyk
+Uitsig
+Uitval
+Uitzicht
+UK/M
+ukase/MS
+Ukraine/M
+Ukrainian/S
+ukulele/MS
+UL
+Ulan/M
+ulcer/VSM
+ulcerate/nSGDN
+ulceration/M
+ulcerous
+Ulco
+ulna/M
+ulnae
+ulnar
+Ulrich/M
+Ulrika/M
+Ulrike/M
+ulster/SM
+ulterior
+ultimate/Y
+ultimatum/MS
+ultimo
+ultra-high
+ultra/S
+ultracentrifuge/M
+ultraconservative/S
+ultralight/S
+ultramarine/MS
+ultramodern
+ultramontane
+ultrasonic/YS
+ultrasound/MS
+ultraviolet
+Ultrix/M
+ululate/DNnSG
+ululation/M
+Ulundi
+Ulwazi
+Ulysses
+um
+Umasizakhe
+umbel/SM
+umber/SM
+Umberto/M
+Umbhedula
+umbilical
+umbilici
+umbilicus/M
+Umbilo
+Umbogintwini
+umbra/MS
+umbrae
+umbrage/MS
+umbrageous
+umbrella/MS
+Umbumbulu
+Umbundu
+Umgababa
+Umgeni
+Umhlali
+Umhlathuze
+Umhlatuzana
+UMIST
+Umkhuza
+umkhwetha
+Umkomaas
+Umkomazi
+Umkumbaan
+umlaut/MGSD
+Umlazi
+Umngazana
+Umnonjaneni
+umpire/MGDS
+umpteen
+umpteenth
+Umsunduze
+Umsunduzi
+Umtata
+Umtentweni
+Umthambeka
+Umvotikloof
+Umzimhle
+Umzimkhulu
+Umzimkulu
+Umzinto
+Umzinyathi
+Umzumbe
+UN
+unabated/Y
+unable
+unacceptable
+unaccountable
+unaccustomed/Y
+unadventurous
+unaffected
+unaffectionate
+unalike
+unalterable/Y
+unambiguous
+unanimity/SM
+unanimous/Y
+unapparent
+unappeasable
+unappreciative
+unassertive
+unassuming/Y
+Unathi
+unattainable
+unattractive
+unauthentic
+unavailability
+unavailable
+unavailing/Y
+unaware
+unbar/GD
+unbecomingness
+unbeknown
+unbeknownst
+unbelieving/Y
+unbend/G
+unblessed
+unblinking/Y
+unbound/iD
+unbundle
+unburden/d
+uncalled-for
+uncapping
+unceasing/Y
+uncelebrated
+uncertain
+uncertainness
+unchain/G
+unchallengeable
+unchangeable
+unchanging/Y
+uncharacteristic/Y
+uncharismatic
+uncharitable
+unchaste
+unchristian
+uncial/S
+uncivil
+unclad
+unclassified
+uncle/SM
+unclean
+uncleanliness
+unclear
+uncloak/G
+uncoloured
+uncomely
+uncomfortable
+uncommon
+uncommunicative
+uncompetitive
+uncomprehending/Y
+uncompress/G
+unconcern
+unconfused
+unconnected
+unconscionable/Y
+unconsciousness
+unconstitutional
+unconstitutionality
+uncontrollability
+uncontroversial
+unconventional
+unconvincing
+uncool
+uncork/G
+uncouple/G
+uncourageous
+uncouth/Y
+uncouthness
+uncover/dS
+uncreative
+uncross/G
+unction's/I
+unction/M
+unctuous/Y
+unctuousness
+uncurl/G
+uncut
+undated/I
+undaunted/Y
+undeceive
+undemonstrative
+undeniable/Y
+undependable
+under
+under-age
+under-investment
+under-represent
+under-secretary/MS
+under-sheriff
+underachievement
+underarm
+underbelly
+Underberg
+underclass
+undercount
+undercover
+undercurrent/M
+undercut/G
+underdevelopment
+underdog
+underemphasis
+underflow/M
+underfoot
+undergarment
+undergo/G
+undergone
+undergrad/MS
+undergraduate
+underground
+underhand/iD
+underlay
+underlie
+underline/G
+underling/MS
+underlip
+undermine/G
+underneath/S
+underpass/M
+underpin
+underpinning/M
+underplay
+underrate/DSG
+undersea
+undershoot
+underside
+undersigned/M
+underspecification
+underspend/G
+understand/aGSJ
+understandability
+understandable/Y
+understanding's/a
+understanding/Y
+understood/a
+understructure
+understudy/M
+undertaking/M
+undertow/M
+undervalue/N
+underwater
+underwear/M
+Underwood/M
+undeserved
+undesirability
+undesirable
+Undetermined
+undiplomatic
+undiscriminating
+undo/G
+undoubted/Y
+undress/G
+undrinkable
+undue
+undulant
+undulate/NDSGn
+unearth/GYS
+unease/2Z
+uneatable
+uneconomic
+unemotional
+unending/Y
+unenviable
+unequal/D
+unequivocal
+UNESCO
+unessential
+uneven
+unevenness
+uneventful
+unexacting
+unexceptionable/Y
+unexceptional
+unfair
+unfairness
+unfaithfulness
+unfamiliar
+unfamiliarity
+unfashionable
+unfatherly
+unfathomable/Y
+unfeeling
+unfelt
+unfeminine
+unfetter/d
+unfit/GD
+unfix/7G
+unflagging
+unflappability
+unflappable/Y
+unflinching/Y
+unfold/G
+unforgeable
+unforgivable
+unfortunate
+unfriendly/T
+unfrozen
+unfruitful
+unfruitfulness
+unfunny
+ungainliness
+ungainly
+ungentle
+ungentlemanly
+ungodliness
+ungodly
+ungraceful
+ungraciousness
+ungrammatical
+ungrateful
+unguent/S
+ungulate/S
+unhand/DZ
+unhappiness
+unhappy/T
+unharmonious
+unheard-of
+unhelpful
+unhelpfulness
+unhinge
+unhistorical
+unhitch/G
+unholy
+unhook/G
+unhorse
+unhurried
+unhurt
+unhygienic
+uni
+Unibell
+unicameral
+unicast
+UNICEF
+unicellular
+Unicode/M
+unicorn/MS
+unicycle/SGD3M
+unideal
+unidimensional
+unidirectional/Y
+unidirectionality
+Uniedal
+Uniepark
+unifiable
+unification/MA
+Unified
+unifier/MS
+uniform/SDMY
+uniformity/MS
+unify/GADNSn
+Unigray
+unilateral/Y
+unilateralism/M
+unilateralist/S
+unimaginative
+unimpeachable/Y
+unimportance
+unimportant
+unimpressive
+uninhibited/Y
+uninstall/G7
+unintelligible
+unintended
+uninteresting
+uninterrupted/Y
+Union
+union/AMES
+Uniondale
+unionise/n
+unionism/MS
+unionist/MS
+unipolar
+uniprocessor
+unique/Y
+uniqueness
+Unisa
+UNISA
+Unisarand
+Unisel
+unisex
+unison/S
+Unisys/M
+unit/d
+Unitarian/SM
+Unitarianism/M
+unitary
+unite/ESZDG
+united/A
+unites/A
+uniting/A
+Unitra
+unity/ESM
+univalent
+univalve/SM
+univariate
+universal/Q8S
+universalism/M
+universalistic
+universality/SM
+universe/SMo
+Universitas
+Universitasrif
+Universiteitsoord
+University
+university/SM
+Unix/M
+unjustness
+unkempt
+unkind/Y
+unkink
+unlace/G
+unlap
+unlatch/G
+unlike
+unlikelihood
+unlimited
+unlink/G
+unlit
+unload/G
+unlooked-for
+unloose/G
+unlovable
+unlovely
+unloving
+unluckiness
+unmake/G
+unmanageable/Y
+unmanliness
+unmannered/Y
+unmarried
+unmask/G
+unmeaning
+unmelodious
+unmemorable
+unmentionable/S
+unmeritorious
+unmesh
+unmet
+unmindful
+unmissable
+unmistakable/Y
+unmistakeable/Y
+unmodifiable
+unmovable
+unmoveable
+unnamed
+unnatural
+unnaturalness
+unnavigable
+unneighbourliness
+unneighbourly
+unnerve/Gk
+unobliging
+unobtrusive
+unobtrusiveness
+unoriginal
+unpalatable
+unpardonable
+unpartizan
+unpatriotic
+unperturbed/Y
+unpick/G
+unpin/DG
+unpleasant
+unpleasantness
+unpopular
+unpretentiousness
+unprofessional
+unprofitable
+unpropitious
+unprotected
+unprovable
+unpunctual
+unquestionable
+unquote
+unread/2B
+unreal
+unrealism
+unreasoning/Y
+unreceptive
+unrelated
+unrelenting/Y
+unremitting/Y
+unrepresentative
+unreserved
+unrest
+unrighteous
+unripe
+unroll/G
+unromantic/Y
+unruliness
+unruly/T
+unsafe
+unsavoury
+unscramble
+unscrupulousness
+unseeing/Y
+unseemly
+unselfconscious/Y
+unselfconsciousness
+unsellable
+unsentimental
+unset
+unsettle/ki
+unshakable/Y
+unshapely
+unshod
+unshrinking
+unsightly
+unsnap/DG
+unsociability
+unsocial
+unsolder
+unsound
+unspeakable/Y
+unspecific
+unspectacular
+unstable
+unstamped
+unstinting/Y
+unstoppable/Y
+unstrap/DG
+unstudied
+unstuffy
+unsubscribe
+unsubstantial
+unsubtle
+unsure
+unsuspecting/Y
+unswerving/Y
+unsystematic
+untangle
+untaxable
+unthinkable/Y
+unthinking/Y
+untidy/T
+unties/F
+until
+untimely
+untiring/Y
+untouchable/SM
+untoward/Y
+untraditional
+untrue
+untrustworthy
+untwist/G
+untyred
+unutterable/Y
+unwarrantable/Y
+unwed
+unwell
+unwieldiness
+unwieldy
+unwilling
+unwind/G
+unwise
+unwiseness
+unwomanliness
+unwontedness
+unworldliness
+unworthiness
+unyielding/Y
+unyieldingness
+up-anchor
+up-and-comer
+up-and-coming
+up-and-under
+up-tempo
+up-to-date
+up-to-the-minute
+up/FSM
+Upanishads
+upbeat/SM
+upbraid/GSD
+upbringing/SM
+UPC
+upcoming
+upcountry
+update/SDG
+updater/M
+Updike/M
+updraught/MS
+upend/SGD
+upfront
+upgrade/B7DSG
+upgradeability
+upheaval/MS
+upheld
+uphill
+uphold/RGS
+upholster/AdS
+upholsterer/SM
+upholstery/SM
+UPI
+Upington
+upkeep/MS
+upland/MS
+uplift/DGS
+uplifter
+upliftment
+uplink/DSG
+upload/DSG
+upmarket
+upon/F
+upped
+upper-case/DSG
+upper-class/S
+upper/S
+uppercut/S
+uppermost
+upping
+uppish
+uppity
+upraise/DGS
+uprate/GD
+upright/YS
+uprightness
+uprising/MS
+upriver
+uproar/SM
+uproarious/PY
+uproot/GSD
+ups
+upset/SG
+upshot
+upside-down
+upside/SM
+upsilon/MS
+upstage/DSG
+upstairs
+upstanding
+upstandingness
+upstart/SM
+upstream
+upstroke/MS
+upsurge/S
+upswing/MS
+uptake/MS
+uptight
+uptime
+Upton/M
+uptown
+upturn/DGS
+upward/YS
+upwind
+Ur/M
+uracil/SM
+uraemia/M
+uraemic
+Ural/S
+Uraniaville
+uranium/M
+Uranus/M
+urban/8qQ-
+Urbana/M
+urbane/Y
+urbanism/M
+urbanite/MSZ
+urbanity/SM
+Urbanville
+urchin/SM
+Urdu/M
+urea/M
+ureter/MS
+urethane/SM
+urethra/SM
+urethrae
+urethral
+urethritis/M
+urge/SJDG
+urgency/MS
+urgent/Y
+Uri/M
+Uriah
+uric
+urinal/SM
+urinalyses
+urinalysis/M
+urinary
+urinate/SGD
+urination/M
+urine/NSnM
+URL
+urn/SM
+Urochordata
+urologist/S
+urology/Mw
+Urquhart/M
+ursine
+Ursula/M
+Uruguay/M
+Uruguayan/S
+us/rd7lSg
+USA
+usable/UA
+USAF
+usage/MS
+USART
+USB
+USC/M
+USCG
+USDA
+use/cSGADa
+used/UEf
+useful/Y
+usefulness
+useless/Y
+uselessness
+Usenet/M
+user-friendliness
+user-friendly
+user/aM
+uses/E
+USG/M
+usher/dSM
+usherette/MS
+USIA
+using/f
+USMC
+USN
+USO
+USP
+USPS
+USS
+USSR
+usual/UY
+usualness/U
+usurer/SM
+usurious/Y
+usuriousness
+usurp/RNnSDG
+usurpation/M
+usury/SM
+Usutu
+Utah/M
+Utahan/MS
+utan/S
+UTC
+Ute/M
+utensil/MS
+uteri
+uterine
+uterus/M
+Uthokozani
+Utica/M
+utile/q8-Q
+utilisation/f
+utilise/fDGS
+utilitarian
+utilitarianism/MS
+Utility
+utility/MS
+utilize/fnSDGN
+Utlwanang
+Utlwaneng
+utmost
+utopia/M
+utopian
+utopianism/M
+Utrecht/M
+Utsane
+utter/dYS
+utterance/MS
+uttered/U
+uttermost
+Uttlesford
+uucp/M
+UV
+Uvongo
+uvula/MS
+uvular/S
+UWC
+uxorious
+Uyaya
+Uzbek/M
+Uzbekistan/M
+Uzi/M
+V
+v
+V-neck
+Vaal
+Vaalbank
+Vaalhoek
+vaalie
+Vaalkop
+Vaaloewer
+Vaalpark
+Vaaltyn
+Vaalwater
+vacancy/MS
+vacant/Y
+vacate/SDGNn
+vacation/M
+vaccinate/GSD
+vaccination/M
+vaccine/MSNn
+vacillate/SkDnGN
+vacillation/M
+vacillator/MS
+vacua/M
+vacuity/SM
+vacuolated
+vacuole/SM
+vacuous/Y
+vacuousness
+vacuum/SM
+Vader/M
+Vaduz/M
+vagabond/GMDS
+vagabondage/SM
+vagarious
+vagary/MS
+vagina/SMo
+vaginal
+vagrancy/MS
+vagrant/YSM
+vague/TY
+vagueness
+Vai
+Vail/M
+vain/TY
+vainglorious/Y
+vaingloriousness
+vainglory/SM
+vainness
+Val-de-grace
+Val/M
+valance/MS
+Valdez/M
+Valdezia
+vale/MS
+valediction/MS
+valedictory/SM
+valence/KMS
+Valencia/M
+valency/SM
+Valentia
+valentine/SM
+Valentino/M
+Valenzuela/M
+Valeria/M
+Valerian/M
+Valerie/M
+Valeriedene
+valet/SdM
+valetudinarian/SM
+valetudinarianism/M
+Valfontein
+Valhalla/M
+valiant/Y
+valid/IYn
+validate/ISGAND
+validation/MIA
+validator/SM
+validity/SMI
+valise/MS
+Valkyrie/MS
+Valle/M
+Valleisig
+Vallejo
+Valletta/M
+Valley
+valley/MS
+valorisation
+valorise
+valorous/Y
+valour/M
+Valparaiso/M
+Valray
+Valspan
+Valtaki
+valuable/YS
+valuably/I
+valuation/SMC
+valuator/MS
+value's
+value-added
+value-for-money
+value/CcGAfSD
+valued/U
+valueless
+valuer/MS
+valve/DpMS
+valvular
+Valyland
+vamp's
+vamp/ASDG
+vampire/MS
+van/SM
+vanadium/M
+Vanautu/M
+Vance/M
+Vancouver/M
+vandal/Q8MS
+vandalism/SM
+Vanderbijlpark
+Vanderbilt/M
+Vanderkloof
+Vandyke/M
+vane/MS
+Vanes
+Vanessa/M
+Vanguard
+vanguard/MS
+vanilla/SM
+vanish/DkJGS
+vanity/MS
+vanquish/DRSG
+vanquished/U
+Vanrhynsdorp
+Vanriebeeckshof
+vantage/SM
+Vanuatu
+Vanwyksdorp
+Vanwyksvlei
+vapid/Y
+vapidity/SM
+vaporise/nRDSG
+vaporize/RNDSGn
+vaporous
+vapour/SM
+vapourish
+var.
+Vargas/M
+variability/MIS
+variable/SM
+variableness
+variables/I
+variably/I
+Varian/M
+variance's
+variance/IS
+variant/IS
+variate/MSxnN
+variation/M
+varicoloured
+varicose
+varied/U
+variegate/nSDGN
+variegation/M
+varietal
+variety/SM
+various/Y
+varistor/M
+varlet/MS
+varnish/SGMD
+varnished/U
+varsity/MS
+vary/DhSBGlk
+varying/UY
+Vasaline
+vasbyt
+Vasco
+vascular
+vase/MS
+vasectomy/SM
+Vaseline/M
+Vasfontein
+Vasili/MS
+Vasily/M
+vasomotor
+Vasquez/M
+vassal/SM
+vassalage/MS
+Vassar/M
+vast/TPY
+vastness/S
+vat/DSMG
+Vatican/M
+vaudeville/MS
+vaudevillian/SM
+Vaughan/M
+vault/DSMRG
+vaunt/DGS
+Vax/M
+VAXes
+VCR
+VD
+VDT
+VDU
+veal/M
+vector's/F
+vector/Q-dq8SM
+vectorial
+Veda/MS
+Vedanta/M
+Veeplaas
+veer/SGD
+veg
+Vega/SM
+vegan/SM
+Vegemite
+vegetable/MS
+vegetarian/MS
+vegetarianism/MS
+vegetate/SnDGNV
+vegetation/M
+veggie/SM
+Vegkop
+vehemence/M
+vehement/Y
+vehicle/MS
+vehicular
+veil's
+veil/UDGS
+vein/MSGD
+Velabusha
+velar/S
+Velásquez/M
+Velcro/M
+veld/MS
+Velddrif
+veldskoen/S
+veldskoene
+veldt/M
+Velez/M
+Velihill
+vellum/SM
+Velma/M
+velocipede/MS
+velocity/SM
+velour/MS
+velum/M
+Velveeta/M
+velvet/MSZ
+velveted
+velveteen/SM
+Venables
+venal/Y
+venality/SM
+venation/SM
+vend/bDGS
+Venda/S
+vendetta/MS
+vendor/SM
+veneer/DNnGSM
+venerate/BDSG
+veneration/M
+venereal
+Venetian/SM
+Venezuela/M
+Venezuelan/S
+vengeance/SM
+vengeful/Y
+vengefulness/A
+venial/Y
+veniality/S
+Venice/M
+venison/M
+Venn/M
+venom/MS
+venomous/Y
+venomousness
+venous/Y
+vent's/F
+vent/FGISK
+vented/KI
+Ventersburg
+Ventersdorp
+Venterspos
+Venterstad
+ventilate/SGNDVn
+ventilated/U
+ventilation/M
+ventilator/MS
+ventral/Y
+ventricle/SM
+ventricular
+ventriloquies
+ventriloquism/SM
+ventriloquist/MS
+ventriloquy
+Ventura/M
+venture/DRGS
+venturesome/Y
+venturesomeness
+venturi
+venue/MAS
+Venus/S
+Venusian/S
+Vera/M
+veracious/Y
+veracities/I
+veracity's/I
+veracity/SM
+veranda/SM
+verandah/SM
+verb/MS
+verbal/s98Q-Yq
+verbatim
+verbena/SM
+verbiage/SM
+verbose/Y
+verboseness
+verbosity/SM
+verboten
+verdant/Y
+Verde/M
+Verdedigingsterrein
+Verdi/M
+verdict/MS
+verdigris/M
+Verdriet
+verdure/MDS
+Verdwaal
+Vereeniging
+Verena
+verge's
+verge/FDGS
+Vergelee
+Vergelegen
+Vergenoeg
+verger/MS
+Vergesig
+veridical
+verifiability/M
+verifiable/U
+verification/S
+verified/U
+verifier/SM
+verify/ASNDG
+verisimilitude/SM
+veritable/Y
+verity/MS
+Verkeerdevlei
+verkramp
+verkrampte
+Verkykerskop
+verlig
+verligte
+Vermaaklikheid
+Vermaas
+Vermeer/M
+vermicelli/MS
+vermiculite/MS
+vermiform
+vermilion/SM
+vermin/M
+verminous
+Vermont/M
+vermouth/SM
+Vern/M
+Verna/M
+vernacular/SY
+vernal/Y
+Verne/M
+Vernen/M
+vernier/MS
+Vernon/M
+Vernonspost
+Verona/M
+veronica/MS
+Veronique/M
+verruca/MS
+verrucae
+versa
+Versailles/M
+versatile/Y
+versatility/SM
+verse's
+verse/FNIXSA
+versed/FAU
+verses/4
+versification/M
+versify/NRSGnD
+version/AMIF
+verso/MS
+versus
+vertebra/M
+vertebrae
+vertebral
+Vertebrata
+vertebrate/ISM
+vertex/SM
+vertical/YS
+verticality
+vertices
+vertiginous
+vertigo/M
+Verulam
+verve/SM
+Verwoerdian
+Verwoerdpark
+very/Y
+vesicle/MS
+vesicular
+vesiculate/GSN
+vesper/S
+vessel/SM
+vest's
+vest/IGLSD
+Vesta/M
+vestal/SY
+vestibular
+vestibule/SM
+vestige/SMo
+vestigial
+vestry/mSM
+vesture/DSG
+Vesuvius/M
+Vet
+vet/SMDG
+vetch/MS
+veteran/MS
+veterinarian/MS
+veterinary/S
+vetkoek
+veto/MGD
+vetoes
+Vettori/M
+vex/nSGDh
+vexation/M
+vexatious/Y
+vexatiousness
+VF
+VFW
+VG
+VGA
+VHF
+VHS
+Vhufuli
+Vhulaudzi
+VI
+via
+viability/MS
+viable/Y
+viaduct/SM
+Viagra/M
+vial/M6S
+vialful/S
+viand/MS
+vibe/S
+vibrancy/SM
+vibrant/Y
+vibraphone/M3S
+vibrate/DnySGN
+vibration/M
+vibrational
+vibrato/MS
+vibrator/SM
+viburnum/MS
+Vic/MZ
+vicar/MS
+vicarage/MS
+vicarious/Y
+vicariousness
+Vice's
+vice-chancellor/MS
+vice-Chancellor/MS
+vice-chancellorship/S
+vice-Chancellorship/S
+vice-like
+vice-president/MS
+vice-President/SM
+vice-presidential
+vice-Presidential
+vice/CSM
+vicegerent/MS
+Vicente/M
+viceregal
+viceroy/MS
+Vichy/M
+vichyssoise/SM
+vicinity/MS
+vicious/Y
+viciousness/S
+vicissitude/SM
+Vick/M
+Vickers/M
+Vickery
+Vicki/M
+Vickie/M
+Vicksburg/M
+Vicky/M
+victim/qQ89-SpMs
+victor/MS
+Victoria/M
+Victorian/MS
+victorious/Y
+victory/SM
+victual/DRSG
+vicuña/S
+Vida/M
+Vidal/M
+videlicet
+video/MDGS
+videodisc/MS
+videophone/MS
+videotape/DGSM
+vie/G7DS
+Viedgesville
+Vieira/M
+Vienna/M
+Viennese/M
+Vientiane/M
+Vierfontein
+Vierlanden
+Viet
+Vietcong/M
+Vietminh/M
+Vietnam/M
+Vietnamese/M
+view's/c
+view/AMDRGKS
+viewable
+Viewcrest
+viewfinder/MS
+viewgraph/SM
+viewing/MS
+viewless
+viewpoint/MS
+views/c
+vigil/SM
+vigilance/MS
+vigilant/Y
+vigilante/SM
+vigilantism/SM
+vignette/GSMD
+vigorous/Y
+vigorousness
+vigour/M
+vii
+viii
+Viking/SM
+Vikingvale
+Vikram/M
+Vila/M
+vile/A
+vilely
+vileness/M
+viler/A
+vilest
+vilification/M
+vilify/NDSnG
+Viljoenskroon
+villa/MS
+village/RSM
+villagey
+villain/MSZ
+Villainage
+villainous/Y
+villainy/SM
+Villanovan/M
+villein/SM
+villeinage/M
+Villeneuve/M
+villi
+Villieria
+Villiers
+Villiersdorp
+villus/M
+Vilnius/M
+vim/M
+vinaigrette/SM
+Vince
+Vincennes
+Vincent/M
+Vinci/M
+vindaloo/S
+vindicate/nDSGN
+vindication/M
+vindicator/SM
+vindictive/YP
+vine/MS
+vinegar/MS
+vinegary
+Vineland
+vineyard/SM
+vino/M
+vinous
+vintage/SM
+vintner/SM
+vinyl/M
+viol/7M3S
+viola/MnS
+violable/I
+violate/DSG
+violator/MS
+violence/MS
+violent/Y
+violet/SM
+Violette/M
+violin/M3S
+violinist
+violist
+violoncellist/S
+violoncello/MS
+Vioolsdrif
+VIP/S
+viper/SM
+viperous
+virago/MS
+viral/Y
+vireo/SM
+Virgil/M
+virgin/oMS
+virginal/S
+Virginia/M
+Virginian/S
+virginity/SM
+Virgo/MS
+virgule/SM
+virile
+virility/SM
+virologist/S
+virology/M
+virtual
+virtualisation
+virtualise
+virtue/MoS
+virtuosi
+virtuosity/SM
+virtuoso/SM
+virtuous/Y
+virtuousness
+virulence/S
+virulent/Y
+virus/MS
+vis-à-vis
+vis/XbN
+visa/MS
+visage/SM
+Visagiepark
+viscera/o
+visceral
+viscid/I
+viscidly
+viscometer/MS
+viscose/MS
+viscosity/MS
+viscount/SM
+viscountcy/MS
+viscountess/MS
+viscous/Y
+viscus
+Visgat
+Vishnu/M
+visibility/MIS
+visible/IY
+visibly/I
+Visigoth/S
+vision's/K
+vision/AyS
+visionary/S
+visioning/K
+visions/K
+visit/ASd
+visitant/SM
+visitation/MS
+visited/U
+visitor/SM
+visor/SM
+visored
+Visserhoek
+vista/MS
+visual/98-qQsSY
+vita/Mo
+vitae
+vital/q8SQ-
+vitalise/CDASG
+vitality/SM
+vitalize/ADGC
+vitalizes/C
+vitamin/SM
+Viterbi/M
+vitiate/nGDSN
+vitiation/M
+viticulture/M
+viticulturist/S
+vitreous/Y
+vitrification/M
+vitrify/NnDSG
+vitriol/MW
+vitro
+vituperate/VDSGNnv
+vituperation/M
+viva/S
+vivace
+vivacious/Y
+vivaciousness
+vivacity/SM
+Vivaldi/M
+vivaria
+vivarium/M
+vivendi
+Vivian/M
+vivid/PY
+vivify/ANDSG
+viviparous
+vivisect/GxSD
+vivisection/3SM
+vivisectionist
+Vivo
+vixen/SM
+viz.
+vizier/MS
+VJ
+Vladimir/M
+Vladivostok/M
+Vlaeberg
+Vlakdrif
+Vlakfontein
+Vlakplaas
+Vlakpoort
+Vlakteplaas
+Vlei
+Vleifontein
+Vleikop
+Vleiview
+VLF
+Vlottenburg
+VLSI
+VMS/M
+VOA
+vocable/AI
+vocabulary/SM
+vocal/s-8YQ3Sq9
+vocalic
+vocalised/U
+vocalism/M
+vocalist
+vocation's/IAF
+vocation/oSM
+vocational
+vocative/SY
+vociferate/SGDNn
+vociferation/M
+vociferous/Y
+vociferousness
+vocoded
+vocoder
+Vodacom
+Vodafone/M
+vodka/SM
+Voelklip
+Voelvlei
+voetsak
+Voetsek
+voetsek
+voetstoots
+Voetstoots
+Vogel/M
+Vogts
+vogue/SM
+voguish
+voice's/I
+voice-band
+voice-over/S
+voice/CGDIS
+voiced/U
+voiceless/Y
+voicelessness
+voicemail
+voiceprint
+void/C
+voidable
+voided
+voiding
+voids
+voilà
+voile/SM
+VoIP
+vol-au-vent
+vol.
+Volapük
+Volapuk
+volatile/qQ8S-
+volatility/MS
+volcanic/Y
+volcanism/M
+volcano/M
+volcanoes
+vole/SM
+Volga/M
+Volgograd/M
+volition/oSM
+volitional
+volitionality
+volk
+volke
+Volker
+Volkskas
+Volksrust
+Volkswagen/MS
+volley/DSMG
+volleyball/MS
+Vollgraaffsig
+Volmoed
+volt/AMS
+Volta/M
+voltage/SM
+voltaic
+Voltaire/M
+Voltargo
+volte
+volte-face
+voltmeter/MS
+volubility/S
+voluble/Y
+volume/SM
+volumetric/Y
+voluminous/Y
+voluminousness
+voluntaries
+voluntarism/SM
+voluntary/IY
+volunteer/DGSM
+voluptuary/MS
+voluptuous/Y
+voluptuousness
+volute/IF
+volutes/F
+Volvo/M
+vomit/Sd
+Von
+Vongani
+voodoo/SM
+vooma
+Voorbrug
+voorkamer
+Voorreg
+voorskot
+Voorspoed
+Voortrekker
+Voortrekkerhoogte
+Vooruitstrewend
+voracious/Y
+voraciousness
+voracity/SM
+Vorentoe
+Vorstershoop
+Vorsterskroon
+vortex/SM
+vortices
+vorticity/M
+Vosburg
+Vosloorus
+Vosman
+Voss/M
+votary/SM
+vote/MRGVSvD
+voted/Ce
+votes/Ce
+Votic
+voting/Ce
+vouch/RGDS
+vouchsafe/SDG
+Vouvray/M
+vow/DMGS
+vowel/SM
+voyage/DSMRG
+voyageur/SM
+voyeur/MS
+voyeurism/SM
+voyeuristic
+VP
+VPN
+Vrayville
+Vrede
+Vrededorp
+Vredefort
+Vredehoek
+Vredekloof
+Vredelust
+Vredenberg
+Vredenburg
+Vredendal
+Vredepark
+Vreeland/M
+Vries
+Vrijzee
+Vrischgewaagt
+vrot
+Vryburg
+Vrygrond
+Vryheid
+Vrykyk
+VSAT
+VT
+VTOL
+vu
+Vuelta/M
+Vuhehli
+Vukani
+Vukazi
+Vukuzakhe
+Vukuzenzele
+Vulcan/M
+Vulcania
+vulcanise/DnSG
+Vulcanite
+vulcanize/nDGNS
+Vuleka
+vulgar/qQ8-Y
+vulgarism/SM
+vulgarity/MS
+Vulikwapa
+vulnerability/IS
+vulnerable/IY
+vulnerably/I
+vulpine
+vulture/SM
+vulva/M
+vulvae
+Vumanhlamvu
+Vumbeka
+Vundu
+Vusimuzi
+Vusushaba
+vuvuzela/SM
+Vuwani
+Vuyani
+Vuyolwethu
+Vyeboom
+Vygeboom
+vygie
+Vyrburg
+WA
+WAAC/S
+WAAF
+Wabash/M
+WAC
+wacky/T
+Waco/M
+wad/dSMGr
+waddle/DSG
+Wade's
+wade/S
+Wadeville
+Wadsworth/M
+wafer/SM
+waffle-iron
+waffle/DMSG
+waft/GSD
+wafters
+wag/rdDGMS
+wage-earning
+wage/MS
+wager/d
+waggish/Y
+waggishness
+waggle/DSG
+waggoner's
+Wagner/M
+Wagnerian
+wagon/MS
+wagtail/MS
+Wagterskop
+Wahhabi
+Wahoo
+waif/MS
+Waikato/M
+Waikiki/M
+wail/GSD
+wailer/M
+wainscot/DSGd
+Wainwright
+waist/MSD
+waistband/MS
+waistcoat/SM
+waistline/MS
+wait/RDGS
+Waite/M
+waitress/SM
+waive/GSDR
+Wakayama/M
+wake/DMjG6S
+Wakefield
+wakefulness
+waken/Sd
+wakeup
+Wakkerstroom
+Walamo
+Walbridge/M
+Walcott/M
+Waldemar/M
+Walden/M
+Waldo/M
+Waldorf/M
+Waldrift
+Waldron/M
+wale/MG
+Wales
+Walgreen/M
+walk-in
+walk-on
+walk/GSDR
+walkabout/MS
+Walkerville
+walkie
+walkie-talkie/S
+walkout/SM
+walkover/MS
+Walkraal
+walkway/SM
+wall-eye/MSD
+wall-to-wall
+wall/MDGS
+wallaby/MS
+Wallace/M
+Wallacedene
+Wallachia/M
+wallet/SM
+wallflower/SM
+Wallis/M
+Walloon/M
+wallop/dS
+wallow/GDS
+wallpaper/dSM
+Wally's
+Walmer
+walnut/MS
+Walpole/M
+walrus/SM
+Walsall/M
+Walsh/M
+Walsingham/M
+Walt/MR
+Waltham/M
+Walther/M
+Waltloo
+Walton-on-Thames
+Walton/M
+waltz/DMSG
+Walvis/M
+Walworth/M
+Wamakersvallei
+wampum/M
+wan/dY
+wand/MS
+wander/SdrJ
+wanderlust/SM
+Wandsbeck
+Wandsworth/M
+wane/S
+Wang/M
+wangle/DGS
+Wangu
+wannabe/S
+Wannenburg
+Wannenburghoogte
+Wansbeck/M
+want/DGS
+wanted/U
+wanton/Y
+wantonness
+Wapadrand
+wapiti/SM
+Waqar/M
+war's/C
+war/GSMDp
+Waray
+warble/RGSD
+Warburton
+ward's/A
+ward/IeSA
+warded/A
+Warden
+warden/SM
+warder/MS
+warding
+wardress/MS
+wardrobe/MS
+wardroom/MS
+ware/Z2SM
+Wareham/M
+warehouse/mSGMD
+warfare/M
+warhead/MS
+warhorse/MS
+warier
+wariest
+wariness/U
+warlike
+warlock/SM
+warlord/MS
+warm-down
+warm-hearted/Y
+warm-heartedness
+warm-up/S
+warm/ASDG
+Warmbad
+Warmbaths
+warmer/MS
+warmest
+warming/SM
+warmish
+warmly
+warmness
+warmonger/MS
+warmongering/M
+warmth/M
+warn/DkSGJ
+Warne/M
+Warner/M
+warning/M
+warp/MDGS
+warpath/MS
+warrant/SZM7DG
+warrantable/U
+warranted/U
+warrantor/M
+warranty/SM
+warren/SM
+Warrenton
+Warrenvale
+Warrington/M
+warrior/MS
+wars/C
+Warsaw/M
+warship/MS
+wart/MS
+Wartburg/M
+Warthog
+warthog/S
+wartime/MS
+Warwick/M
+Warwickshire/M
+wary/UY
+was
+Wasbank
+wash-out/S
+wash/G7RSDJZ
+washable/S
+washbasin/SM
+washboard/MS
+Washburn/M
+washday/M
+washed-out
+washed/UA
+washer/5
+washerwomen/M
+washes/A
+washhouse/S
+washing-up
+washing/M
+Washington/M
+Washo
+washout/MS
+washstand/MS
+wasn't
+wasp-waisted
+wasp/MS
+waspish/Y
+waspishness
+wassail/MDGS
+Wasserman
+wast/DRG
+wastage/MS
+waste-basket
+waste-paper/M
+waste/Sj6
+wastefulness
+wasteland/MS
+wastrel/MS
+Watanabe/M
+watch/RjmSD6G
+watchdog/MS
+watched/U
+watchfulness
+watchmaker/SM
+watchtower/SM
+watchword/SM
+water-bed/S
+water-bird/S
+water-borne
+water-cooled
+water-glass
+water-resistant
+water-soluble
+water-table
+water/dMmpSZ2
+Waterbury/M
+watercolour/SM
+watercourse/MS
+watercress/M
+Waterfall
+waterfall/SM
+Waterford/M
+waterfowl/M
+Waterfront
+waterfront/SM
+Watergate/M
+Waterglen
+waterhole/S
+Waterhouse/M
+watering-hole
+Waterkloof
+Waterkloofpark
+Waterkloofrif
+waterline/S
+waterlogged
+Waterloo/M
+watermark/SGMD
+Watermelon
+watermelon/MS
+watermill/S
+Waterpoort
+waterproof/GDS
+watershed/SM
+waterside/SM
+Waterskag
+waterspout/SM
+watertight
+Watertower
+Watertown/M
+Waterval
+Waterval-boven
+waterway/MS
+Waterwese
+waterwheel/S
+waterworks
+watery/T
+Watford/M
+Watkins
+Watling/M
+Watson/M
+Watsonia
+watt/MS
+wattage/SM
+wattle/MS
+Wattville
+Watusi/M
+Waugh/M
+Waukesha/M
+Waupaca/M
+Waupun/M
+Wausau/M
+wave/ZS2DG
+waveband/MS
+Wavecrest
+waveform/MS
+Waveland/M
+wavelength/SM
+wavelet/SM
+wavelike
+waver/dSk
+wavering/UY
+Waverley/M
+wavy/T
+wax/SGDZM
+waxen
+waxwing/MS
+waxwork/MS
+waxy/T
+way/MS
+wayfarer/SM
+wayfaring
+waylaid
+Wayland/M
+waylay/GS
+Wayne/M
+Waynesboro/M
+wayside/SM
+wayward/Y
+waywardness
+we'd
+we'll
+we're
+we've
+we/GJz
+weak-minded
+weak/TY
+weaken/dS
+weakling/MS
+weakness/S
+weal/M
+Weald/M
+wealth/MZ
+wealthy/T
+wean/DSG
+weaners
+weanling/M
+weapon/SyM
+weaponry/MS
+Wear
+Wear-Tees
+wear/7R2kzZGS
+wearable/U
+wearing/e
+wearisome/Y
+wears/e
+weary/TSGDk
+weasel/MGSD
+weather-bound
+weather-worn
+weather/MmSd
+weatherboard/G
+weathercock/MS
+Weatherford/M
+weatherperson/S
+weatherproof/DSG
+weathervane/MS
+weave/AGS
+weaved
+weaver/MS
+weaverbird
+web-footed
+web/DMSG
+Webb/M
+Webber/M
+webbing/M
+Webersvallei
+webmaster/MS
+webmistress/MS
+website/MS
+Webster/M
+wed's
+wed/AGSD
+wedding/MS
+Wedela
+wedge/SMDG
+wedgies
+Wedgwood/M
+wedlock/M
+Wednesday/SM
+Wednesfield
+Wednsebury
+wee
+weed/GZMDS
+Weedsucker
+weedy/T
+week-long
+week/YMS
+weekday/SM
+weekend/SM
+weekender/M
+weekly/S
+Weenen
+weenie
+weensy
+weeny
+weep/ZSG
+weepy/T
+weevil/SM
+weft/MS
+Wegdraai
+Weibull/M
+Weidman/M
+weigh-in
+weigh/eDGAS
+weighbridge
+weighed/U
+weight's
+weight/fc
+weighted/c
+weightiness
+weighting's
+weighting/c
+weightings
+weightless/Y
+weightlessness
+weightlifter/S
+weightlifting/M
+weights/c
+weighty/YT
+Weimar/M
+Weinberg/M
+Weiner/M
+Weinstein/M
+weir/SM
+weird/YT
+weirdness
+Weiss/M
+Weissman/M
+Weissmuller/M
+Welapi
+Welbedacht
+Welbekend
+Welch/M
+Welcome
+welcome/UG
+welcomed
+welcomes
+weld/DRSG
+Weldon/M
+welfare/MS
+Welgedacht
+Welgedag
+Welgeheuwel
+Welgelee
+Welgelegen
+Welgemoed
+Welkom
+well-adjusted
+well-balanced
+well-behaved
+well-being
+well-beloved
+well-born
+well-bred
+well-built
+well-chosen
+well-connected
+well-defined
+well-deserved
+well-designed
+well-developed
+well-disciplined
+well-disposed
+well-dressed
+well-earned
+well-educated
+well-endowed
+well-equipped
+well-established
+well-fed
+well-formed
+well-founded
+well-head/SM
+well-informed
+well-intentioned
+well-kept
+well-known
+well-loved
+well-made
+well-mannered
+well-marked
+well-matched
+well-meaning
+well-meant
+well-nigh
+well-off
+well-ordered
+well-organised
+well-paid
+well-placed
+well-prepared
+well-preserved
+well-read
+well-received
+well-rounded
+well-spoken
+well-structured
+well-supported
+well-thought-of
+well-thought-out
+well-timed
+well-to-do
+well-trained
+well-tried
+well-used
+well-wisher/S
+well-worn
+well/GDS
+Weller/M
+Wellesley/M
+Wellingborough/M
+Wellington/M
+Wellman
+wellness
+Wellshot
+wellspring/SM
+Wellsville/M
+Welobie
+welsh
+Welsh/m5
+welt/GRSMD
+welter/d
+welterweight/SM
+Weltevrede
+Weltevreden
+Weltevredenpark
+Weltrix
+Welverdiend
+welwitschia
+Welwitschia/M
+Welwyn/M
+Wembezi
+Wembley/M
+Wembleypark
+Wemmer
+Wenakker
+wench/MS
+wend/SDG
+Wendell/M
+Wendy/M
+Wendywood
+Wenger/M
+Wensleydale/M
+went/f
+Wentworth/M
+Wepener
+wept
+were
+weren't
+werewolf/M
+werewolves
+Werner/M
+Werther/M
+Wesbank
+Wesburg
+Weseinde
+Wesfleur
+Weshof
+Wesley/M
+Wesleyan
+Wesoewer
+Wespark
+Wesrand
+Wesrif
+Wesselsbron
+Wesselton
+Wessex
+Wesson/M
+west-north-west
+west-south-west
+West/M
+west/M
+westbound
+Westbourne
+Westbrook/M
+Westbury
+Westchester/M
+Westcliff
+Westcliffe
+Westdene
+Westenburg
+Westergloor
+Westering
+Westerly/S
+westerly/S
+Western
+western/RQqS
+Westernism/M
+westernmost
+Westfield/M
+Westgate
+Westham
+Westhampton/M
+Westhof
+Westhoven
+Westinghouse/M
+Westlake
+Westmead
+Westmeath/M
+Westminster/M
+Westmont
+Westmorland/M
+Weston/M
+Westonaria
+Westphalia/M
+Westport/M
+Westrich
+Westridge
+Westview
+Westville
+westward/S
+Westward/S
+Westwood/M
+wet-nurse/S
+wet/SDTYG
+wetland/S
+wetness
+wetsuit/S
+Wetton
+Wexford/M
+Weymouth/M
+Weza
+WFF
+whack/SDG
+whale/MRGS
+whaleboat/SM
+whalebone/MS
+Whalen/M
+wham/DMGS
+wharf/MS
+Wharton/M
+wharves
+what'd
+what're
+what's-her-name
+what's-his-name
+what's-its-name
+what/M
+whatever
+Whatley/M
+whatnot/MS
+whatsoever
+wheat/M
+wheaten
+Wheatfield
+Wheatland/S
+Wheaton/M
+Wheatstone/M
+wheedle/GSD
+wheel-clamp/DG
+wheel/SRMDG
+wheelbarrow/SM
+wheelbase/MS
+wheelchair/MS
+wheelhouse/MS
+wheelie/MS
+wheelwright/MS
+wheeze/DSGZ
+wheezy/T
+Whelan/M
+whelk/SM
+whelm/cSfDG
+whelp/GMDS
+when
+whence
+whenever
+where'd
+where're
+where/M
+whereabouts
+whereas
+whereat
+whereby
+wherefore/S
+wherein
+whereof
+whereon
+whereto
+whereupon
+wherever
+wherewith
+wherewithal/M
+whet/SGD
+Whetfern
+whether
+Whetstone
+whetstone/MS
+whew
+whey/M
+which
+whichever
+whiff/MGDS
+Whig/SM
+Whiggery
+Whiggish
+while/SDG
+whilom
+whilst
+whim/SM
+Whimbrel
+whimper/dS
+whims/Zw1
+whimsicality/MS
+whimsicalness
+whimsy/S
+Whinchat
+whine/RZMSGDk
+whinny/SDG
+whiny/T
+whip/DSMGJ
+whipcord/MS
+whiplash/MS
+Whippany
+whipper
+whipper-snapper/MS
+whippet/MS
+whipping/M
+Whipple/M
+whipsaw/GDMS
+whir/SDG
+whirl/SDG
+whirligig/MS
+whirlpool/MS
+whirlwind/SM
+whirlybird/MS
+whirr
+whisk/RGSZD
+whisker/Z
+whiskered
+whiskey/MS
+whisky/S
+whisper/rJkSd
+Whispers
+whist/M
+whistle-blower/S
+whistle-stop
+whistle/DRGS
+whit
+Whitaker/M
+Whitbread
+Whitcomb/M
+white-collar
+white-hot
+white-out/S
+white/PYMSGT
+Whitebait
+whitebait/M
+whiteboard/S
+Whitefield/M
+Whitefish
+whitefly
+Whitehall/M
+Whitehaven/M
+Whitehorse/M
+Whitelaw/M
+whiten/rSd
+Whiteriver
+Whitesands
+Whitethroat
+whitewash/DGMS
+whitewasher
+whitey/MS
+Whitfield/M
+whither
+whitish
+Whitley/M
+Whitlock/M
+Whitlow/M
+Whitman/M
+Whitney/M
+Whitsun/M
+Whitsuntide
+Whittaker/M
+Whittall/M
+Whittier/M
+Whittington/M
+whittle/RSGDJ
+Whittlesea
+Whitwell/M
+whiz/GD
+whizzes
+who'd
+who'll
+who're
+who've
+who-dunnit
+who/M
+whoa
+whoever
+whole/S
+wholegrain
+wholehearted/Y
+wholeheartedness
+wholemeal
+wholeness
+wholesale/DRGM
+wholesome/YU
+wholesomeness/U
+wholly
+whom
+whomever
+whomsoever
+whoo
+whoop/SDG
+whoopee/S
+whooper/M
+whoosh/MSGD
+whop/RG
+whore/MSGD
+whorehouse/MS
+whorish
+whorl/MDS
+whose
+whoso
+whosoever
+why
+whys
+WI
+Wibsey
+Wichita
+wick/MiSDhR
+wicked/P
+wickeder
+wickedest
+wickerwork/M
+wicket-gate
+wicket-keeper/SM
+wicket-keeping
+wicket/MS
+Wickliffe/M
+Wicklow/M
+Wicksford
+wide-angle
+wide-area
+wide-eyed
+wide-ranging
+wide-screen
+wide/YT
+wideband
+widen/drS
+wideness
+Widenham
+widespread
+widgeon/M
+widget/SM
+Widnes
+widow/DRMGS
+widowhood/S
+width/SM
+widthways
+Wiegandia
+Wieland/M
+wield/RSGD
+Wierdapark
+Wiesbaden/M
+wife-swapping
+wife/pMY
+wifeliness
+wifely/T
+WiFi
+wig/MSGD
+Wigan/M
+Wiggins
+wiggle/DRSGY
+wiggly/T
+Wight/M
+wigwag/GDS
+wigwam/SM
+wiki
+Wikipedia
+Wilberforce/M
+Wilbert
+Wilbur/M
+Wilcox/M
+wild/PTYGS
+Wildborsdale
+wildcat/SM
+Wilde/M
+wildebeest/SM
+wilder/P
+Wilderness
+wilderness/S
+Wildernis
+wildfire/MS
+wildfowl/M
+wilding/M
+wildlife/M
+Wildwoods
+wile/MSDG
+Wiley/M
+Wilfred/M
+wilful/PY
+Wilge
+Wilgeheuwel
+Wilgehof
+Wilgenhof
+Wilgerpark
+Wilhelm/M
+Wilhelmina/M
+Wilkes
+Wilkeville
+Wilkie/M
+Wilkins
+Wilkinson/M
+Wilkoppies
+will/SGDkY
+Willa/M
+Willamette/M
+Willard/M
+Willcocks
+Willcox/M
+Willem
+Willemstad
+Willenstad/M
+William/SM
+Williamsburg/M
+Williamson/M
+Williamville
+Willie/M
+willing/P
+willingly/U
+willingness/U
+Willis
+Williston
+Willoughby/M
+willow/MSZ
+Willowdale
+Willowdene
+Willowfontein
+Willowglen
+Willowgrove
+Willowild
+Willowmore
+Willows
+Willowton
+Willowvale
+willowy/T
+willpower/MS
+Willy
+willy-nilly
+willy/S
+Wilma
+Wilmette
+Wilmington
+Wilmslow
+Wilo
+Wilropark
+Wilson/M
+Wilsonia
+wilt/DGS
+Wilton
+Wiltshire/M
+wily/TYP
+Wimbledon/M
+wimp/SMZ
+wimple/GMDS
+Wimpy
+wimpy/T
+win/RGJdS
+Winburg
+wince/SDG
+Winceyette
+winch/MDSG
+wincher/M
+Winchester/S
+Winckelmann
+wind-up/SM
+wind/2JzpZiGSMDR
+windbag/MS
+windblown
+windbreak/MS
+windburn/SM
+windburnt
+windcheater/MS
+Windermere
+windfall/SM
+windflower/MS
+Windhoek/M
+winding-sheet
+winding/M
+windjammer/SM
+windlass/GMDS
+Windmeul
+windmill/SM
+window-shop
+window/pDMGS
+windowpane/SM
+windowsill/MS
+windpipe/MS
+windrow/MS
+winds/AU
+windscreen/SM
+windsock/MS
+Windsor/M
+Windsorton
+windsurf/SDRG
+windswept
+Windtoy
+Windvogel
+windward
+windy/PT
+Wine
+wine/MZS
+wineglass/MS
+winegrower/SM
+winemaker/MS
+wineries
+wineskin/M
+Winfield
+wing-tip/S
+wing/RmDMpG
+wingspan/SM
+wingspread/MS
+Winifred/M
+wink/RSGD
+winkle/GDS
+Winklespruit
+winnable
+Winnebago/M
+Winnetka
+winning/Y
+Winnipeg
+winnow/RGSD
+wino/MS
+Winooski
+Winsley
+Winslow
+winsome/Y
+winsomeness
+Winston/M
+winter/MdS
+Winterberg
+wintered/c
+winterer/M
+wintergreen/MS
+wintering/c
+winters/c
+Winterskloof
+wintertime/M
+Winterton
+Winterveld
+Winthrop
+wintriness
+wintry/T
+wipe/SGDR
+wire's
+wire-haired
+wire-tapper
+wire-tapping
+wire/ASDG
+wireless/MS
+wireman/M
+wiremen/M
+wirer/M
+wiriness
+wiring/SM
+Wirral
+wiry/T
+Wisconsin/M
+Wisden
+wisdom/MS
+wise/YTS
+wiseacre/SM
+wisecrack/SMDG
+wisely/U
+Wiseman
+Wisenheimer
+wish-list
+wish/DRGZ6jS
+wishbone/MS
+wishing-well
+wishy-washy
+wisp/ZMS
+wispy/T
+wisteria/MS
+wistful/Y
+wistfulness
+wit's
+wit/eDGS
+Witbank
+Witbeeck
+witblits
+witch-hunt/S
+witch/MDySG
+witchcraft/SM
+witchdoctor/S
+witchery/SM
+witdoek
+Witelsbos
+Witfield
+Witgoud
+with
+withal
+withdraw/SG
+withdrawal/SM
+withdrawer/M
+withdrawn
+withdrawnness
+withdrew
+wither/k
+withered
+Witherspoon
+withheld
+withhold/RGSJ
+within
+without
+withstand/SG
+withstood
+Witkleigat
+Witkop
+Witkoppen
+Witkoppierif
+witless/Y
+witlessness
+Witmos
+witness/GDSM
+Witpoort
+Witpoortjie
+WITS
+Wits
+Witsand
+Witsieshoek
+Witspos
+Witt/M
+Wittarbergen
+Wittebome
+witteboom
+Wittedrif
+Witteklip
+Wittenberg
+Wittewater
+Wittgenstein/M
+witticism/MS
+witting/UY
+witty/TPY
+Witwatersrand
+Witzenville
+wives
+wizard/ySMY
+wizardry/SM
+wizen
+wizened
+WNO
+WNP
+WO
+woad/M
+wobble/YDS2G
+wobbler's
+wobbly/T
+Wodehouse
+woe/SM6j
+woebegone
+woefulness
+woema
+Wofa
+wok/MS
+woke
+woken
+Woking
+Wokingham
+Wolcott
+Wolds
+wolf-whistles
+wolf/GDSM
+Wolfe/M
+Wolff/M
+Wolffian
+Wolfgang
+Wolfherring
+wolfhound/MS
+wolfish/Y
+wolfishness
+wolfram/SM
+Wolfson
+Wolhuter
+Wollongong
+Wolmaransstad
+Wolmer
+Wolof
+Wolseley
+Wolverhampton/M
+wolverine/MS
+Wolverton
+wolves
+Wolwedans
+Wolwefontein
+woman/sQYM
+womanhood/SM
+womanish
+womankind/M
+womanlier
+womanliest
+womanlike
+womanliness/M
+womanly/U
+womb/MS
+wombat/SM
+women/M
+womenfolk/M
+won
+won't
+wonder/kLMd6jS
+Wonderboom
+wonderer/M
+Wonderfontein
+wonderful/P
+Wonderkop
+wonderland/MS
+Wonderpark
+Wonderview
+wondrous/Y
+wondrousness
+Wong/M
+Wongalethu
+wonky/T
+wont/hGD
+wonted/UY
+woo/GDSR
+wood/mZMDS2
+Woodard
+Woodberry
+woodbine/MS
+woodblock/S
+Woodbrook
+Woodbury
+woodcarver/S
+woodcarving/SM
+woodchuck/SM
+woodcock/SM
+woodcut/SRJMG
+woodcutting/M
+wooded/U
+wooden/Y
+woodener
+woodenness
+Woodhaven
+Woodhill
+Woodhurst
+woodland/MS
+woodlander
+Woodlands
+Woodlawn
+Woodleigh
+woodlice
+woodlouse/M
+Woodmead
+Woodmere
+woodpecker/MS
+woodpile/SM
+Woodridge
+Woodrow
+woodruff/M
+woodshed/MS
+Woodstock/M
+Woodview
+Woodward/S
+woodwind/S
+woodwork/MRG
+woodworking/M
+woodworm/M
+Woody's
+woody/T
+woof/MRGSD
+wool-gathering
+wool/SMY
+Woolhope
+woollen/S
+woolliness
+woolly/TS
+Woolworth/S
+Woonsocket
+Wooster
+woozy/TYP
+wop/MS
+Worcester
+Worcestershire/M
+word's
+word-blindness
+word-perfect
+word-process/G
+word/ADGJS
+wordage
+wordbook/MS
+wording/MA
+wordless/Y
+wordplay/SM
+Wordsworth/M
+wordy/PTY
+wore/e
+work's/e
+work-shy
+work-to-rule
+work/eDGcSA
+workability's
+workability/U
+workable/U
+workableness
+workably
+workaday
+workaholic/S
+workaround/SM
+workbench/SM
+workbook/MS
+workday/MS
+worked/U
+worker/MS
+workfare/S
+workforce/S
+workhorse/MS
+workhouse/MS
+working-class
+working/SM
+Workington
+workload/MS
+workman/M
+workmanlike/U
+workmanship/MS
+workmate/S
+workmen/M
+workout/MS
+workplace/SM
+workroom/MS
+worksheet/S
+workshop/SM
+Worksop/M
+workspace/S
+workstation/MS
+worktable/MS
+worktop/S
+world-class
+world-famous
+world-view/S
+world-weary
+world/fSM
+WorldCom
+worldlier
+worldliest
+worldliness/M
+worldly-wise
+worldly/U
+worldwide
+worm-casts
+worm-eaten
+worm-wheel
+worm/GZMDS
+wormer/M
+wormhole/SM
+wormwood/MS
+wormy/T
+worn-out
+worn/Ue
+worried/U
+worrisome/Y
+worry/DhSRGk
+wors
+worse
+worsen/Sd
+worship/SR6jDG
+worshipfulness
+worst-case
+worst/D
+worsted/SM
+worth/2pZz
+worthies
+worthiness/M
+Worthing/M
+Worthington/M
+worthless/YP
+worthwhile
+worthy/UYT
+would
+would've
+would-be
+wouldn't
+wouldst
+wound's
+wound/UD
+wounding/S
+wounds
+wove/A
+woven/AU
+wow/DGS
+woza
+wpm
+wrack/M
+WRAF
+wraith/MS
+wrangle/DGRS
+wrap's
+wrap/UGDS
+wraparound/S
+wrapper/MS
+wrapping/MS
+wrasse/SM
+wrath/M6j
+wrathfulness
+wreak/DGS
+wreath/SMGD
+wreathe/S
+wreck/RGSD
+wreckage/SM
+Wreckfish
+Wrekin/M
+wren/SM
+wrench/SDGkM
+Wrenchville
+wrest/DSG
+wrester/M
+wrestle/RSDG
+wrestling/M
+wretch/SDhMi
+wretched/P
+Wrexham/M
+wriggle/YRSDG
+wriggly/T
+Wright
+wrights
+Wrigley
+wring/RGS
+wrinkle/MSDYG
+wrinkled/U
+wristband/SM
+wristwatch/MS
+writ/r7SM
+writable/A
+write-off/S
+write-up/S
+write/AGfRS
+writes/c
+writhe/SGD
+writing/MS
+written/aUcAf
+WRNS
+wrong-foot/D
+wrong-headed/Y
+wrong-headedness
+wrong/YGSDj6
+wrongdoer/MS
+wrongdoing/MS
+wrongfulness
+wrongness
+wrote/Afc
+wroth
+wrought-iron
+wrought/Ic
+wrung
+wry/3
+wryer
+wryest
+wryly
+wryness
+wt
+Wu/M
+Wuppertal
+wurzel/S
+WV
+Wvf
+WWII
+WWW
+wxWidget
+WY
+Wyatt/M
+Wychwood
+Wycombe
+Wydgelee
+Wydhoek
+Wyebank
+Wykeham
+Wylie/M
+Wyman
+Wynberg
+Wynn/M
+Wyoming
+x
+X
+x-axis
+X-ray/S
+Xaba
+Xavier
+Xenia
+Xenix/M
+xenon/M
+xenophobe/WMS
+xenophobia/M
+xerography/WM
+xerophyte/MS
+Xerox/MGSD
+Xerxes
+XFree86
+Xhosa
+Xi'an/M
+Xigalo
+Xihoko
+xii
+xiii
+Xikhumba
+Xikundu
+Ximhungwe
+Xipame
+Xitsonga
+xiv
+XLIFF
+Xmas
+XML
+XOR
+xv
+xvi
+xylem/MS
+xylophone/MS
+xylophonist/S
+y'all
+y-axis
+y/K
+Ya-rona
+yacht/m5MGSD
+yachters
+yack/SGD
+yahoo/SM
+Yahweh
+yak/M
+Yakima
+Yakut
+Yakutsk
+Yale
+Yalta
+yam/SM
+Yamaha/M
+yammer/dS
+yammerer/S
+Yamoussoukro/M
+yang
+Yangtze
+Yanguye
+yank/GDS
+Yankee/S
+Yankeeism
+Yankton/M
+Yao
+Yaoundé/M
+Yaounde/M
+Yap
+yap/SDG
+Yarborough
+yard/MS
+yardage/SM
+yardarm/MS
+yardstick/MS
+Yarmouth/M
+yarmulke/SM
+yarn/SMGD
+yarrow/MS
+Yashmak
+Yasmin
+Yates
+yaw/SGD
+yawl/MS
+yawn/RSGkD
+yd
+ye
+yea/S
+Yeager
+yeah
+year-end
+year-on-year
+year-round
+year/MYS
+yearbook/SM
+yearling/SM
+yearlong
+yearn/DGkJS
+yearning/M
+yeast/M2ZS
+yeasty/T
+Yeats
+yebo
+yell/GSD
+yellow-bellied
+yellow/MSZDG
+yellowhammer/SM
+yellowish
+Yellowknife/M
+yellowness
+Yellowstone/M
+Yellowtail
+Yellowwoodpark
+yelp/GSD
+Yemen/M
+Yemeni
+yen/GSDM
+yeoman/MY
+yeomanry
+yeomen/M
+Yeovil
+Yeoville
+Yerevan/M
+yes
+yes-man
+yesterday/MS
+yesteryear/MS
+yet
+yeti/SM
+yew/SM
+Yid
+Yiddish
+yield/SDG
+yielding/U
+yikes
+yin
+yippee
+YMCA
+yo
+yo-yo
+yob/S
+yobbism
+yobbo/S
+yodel/DRGS
+yoga/M
+yoghurt/M
+yogi/MS
+yoke's
+yoke/UGSD
+yokel/SM
+Yokohama
+yolk/SM
+yon
+yonder
+Yonkers
+Yoong
+yore
+York/M
+Yorker/S
+Yorkshire/M
+Yorkshireman
+Yorktown
+Yoruba
+Yosemite
+Yost/M
+you
+you'd
+you'll
+you're
+you've
+you-know-what
+you-know-who
+Young
+young/T
+Youngberry
+youngish
+Youngsfield
+youngster/MS
+Youngstown
+Younis
+Younker
+your/S
+yourself
+yourselves
+Yousuf
+youth/SjM6
+youthfulness
+yowl/DSG
+Ypres
+Ypsilanti
+yr
+ysterhout
+Ysterplaat
+ytterbium/M
+yttrium/M
+Yuan
+Yuba
+Yucatan
+yucca/MS
+yucky/T
+Yuga
+Yugoslav/S
+Yugoslavia/M
+Yugoslavian
+Yukon
+Yule
+Yuletide/M
+yum-yum
+yum/Z
+yummy/T
+yuppie/SM
+Yuri
+Yves
+Yvette
+YWCA
+Yzerfontein
+z/d
+zabaglione
+Zachary
+Zadie
+Zadie'
+Zagreb/M
+Zaibatsu
+Zaire/M
+Zakele
+Zalu
+Zamakuhle
+Zamane
+Zamani
+Zambezi
+Zambia/M
+Zambian/S
+Zamdela
+Zamia
+Zandspruit
+zaniness
+ZANU
+ZANU-PF
+zany/T
+Zanzibar
+zap/DRSG
+Zapotec
+ZAPU
+ZAR
+Zastron
+Zawahiri
+ZCC
+zeal/M
+Zealand/M
+Zealanders
+zealot/MS
+zealous/cP
+zealously
+Zebra
+zebra/SM
+zebu/MS
+Zechariah
+zed/MS
+Zeebrugge
+Zeekoeivlei
+Zeeland
+Zeerust
+Zeitgeist
+Zellick
+Zellick'sF
+Zen
+Zenaga
+zenith/MS
+Zennex
+Zenzele
+Zephaniah
+zephyr/MS
+Zeppelin/MS
+zero-rated
+zero-sum
+zero/MDSG
+zeroes
+zest/jM6
+zeta/S
+Zetland
+zeugma/M
+Zeus/M
+Zevendal
+Zhuang
+Zibuse
+Ziegfeld/MS
+Ziegler/M
+ziggurat/SM
+Zigudu
+zigzag/DSG
+zilch
+zillion/S
+Zilwelini
+Zimbabwe/M
+Zimbabwean/S
+Zimbali
+Zimbane
+Zimeleni
+Zimisele
+Zimmerman/M
+zinc/M
+zing/GMD
+Zingcuka
+Zinkwazi
+zinnia/SM
+Zinniaville
+Zion/M3
+Zionism
+Zionist
+zip's
+zip/UGDS
+zippy/T
+zircon/M
+zirconium/M
+zither/SM
+Zithobeni
+Zizanela
+zloty/M
+Zoar
+zodiac/MS
+zodiacal
+Zoe/M
+Zoeknog
+zol
+Zola
+Zolani
+zombie/SM
+Zondereinde
+Zondi
+zone/MDSG
+zoned/A
+zones/A
+zoning/A
+zonked
+Zonkezizwe
+Zonnebloem
+Zonneblom
+zoo/MS
+zoology/31MwS
+zoom/GSD
+zoophyte/MS
+Zope
+Zoroaster
+Zoroastrian/S
+Zoroastrianism
+Zubane
+Zuiping
+Zukerman
+Zulu/MS
+Zunckels
+Zuney
+Zuni
+Zurich/M
+Zuurfontein
+Zwaanswyk
+Zwartkop
+Zwartkrans
+Zwaveldspoort
+Zwavelpoort
+Zweletemba
+Zwelethu
+Zwelibomvu
+Zwelihle
+Zwelisha
+Zwelithini
+Zwelitsha
+Zwide
+zwieback/SM
+zygote/WMS
+zymurgy/S
diff --git a/dictionaries/en/hyph_en_GB.dic b/dictionaries/en/hyph_en_GB.dic
new file mode 100644
index 0000000..e19d0ea
--- /dev/null
+++ b/dictionaries/en/hyph_en_GB.dic
@@ -0,0 +1,14062 @@
+UTF-8
+LEFTHYPHENMIN 2
+RIGHTHYPHENMIN 3
+COMPOUNDLEFTHYPHENMIN 2
+COMPOUNDRIGHTHYPHENMIN 3
+.1ab
+.ab4i
+.abo2
+.ab3ol
+.ace4
+.ace2t3
+.a2ch4
+.a2ct
+.ac2t1iv
+.ac5t2iva
+.ad1d4
+.ad3di
+.ad4d1in
+.ad3e
+.a2d3o
+.4a2e5d
+.aer1
+.aer3i
+.a2f3f
+.a2ff
+.a2f3t
+.ag4a
+.4a2g5n2
+.2ai2
+.a2ir3
+.al5im
+.4al1k
+.all2
+.al3le
+.2a2m
+.a1m5a2r
+.am1at
+.ama5te
+.am2i
+.am2p
+.am3pe
+.am3ph
+.a2n1
+.an2a
+.an1a3b
+.an2a3s
+.a4nd2
+.an5da
+.an4el
+.a4n4en
+.a4ng
+.an4gl2
+.an1o
+.an4on.
+.a4n3s
+.an2t3a
+.an3t2i3
+.4ant4ic
+.an4t5o
+.a2n2y5
+.2ap
+.a1pho
+.a3ph5or
+.ap4i
+.a2r
+.ar5ab
+.ar5ap
+.ar1c2
+.ar4c2i2
+.ar5d
+.ar4e
+.ar1i4
+.ar4ise
+.ar4isi
+.a2r2s2
+.ar2se
+.ar5sen
+.art2
+.ar1t4ic
+.ar4t5icl2
+.as1
+.as4q
+.a4ss2
+.as5s1ib
+.2a2ta
+.at5a2r
+.ate2l
+.ateli4
+.a2to
+.at2om
+.atom1i
+.at5omi4se
+.at5om1iz
+.2a2t3r2
+.a2t3t4
+.2au2
+.au3b
+.au3g4u
+.au4r
+.aur4e5
+.aus5
+.au3th
+.authe2
+.authen5
+.2av4
+.aver1
+.av5era
+.b2a4p1
+.ba2pt2
+.bap2t1is
+.bap5ti2s1m4
+.ba2r
+.b2a4r1r4
+.bar3ri
+.barri5c4
+.1bas
+.bas4i
+.ba5sic
+.b2e
+.2b2ed
+.be3d2i
+.1bel
+.be3lo
+.ber1
+.be5r4a
+.be1s2
+.be5s1m4
+.b4ie2
+.bi4er1
+.2bl2
+.bl2a
+.b4l2az2
+.blaz5o
+.bo2
+.bo3lo
+.bo1s5o2m
+.bo4u2
+.b2oun1
+.bou4n4d
+.bov4
+.br4
+.3bra5ch
+.br2e2
+.bu4r
+.bur2n2
+.burn5i
+.ca3de
+.ca1g2i
+.ca4gin
+.c2a2m
+.cam5i
+.ca1m3o
+.ca2n1
+.can5t2a
+.1c2ap
+.cap1i
+.ca5p2itu
+.1ca2r
+.car4i
+.3cas1u3
+.cas2ua2
+.cas5u1al
+.c1at
+.ca4ti
+.1cen2
+.ce4n2s
+.cen5so
+.3cent
+.cen1te
+.cen5ten1a
+.cen1tr2
+.cen4t5ri
+.cer1
+.cer4i
+.2ch4
+.1c2i2
+.cit4a
+.cl2
+.c2le2
+.cle1m5e4
+.cli1m
+.clima5to
+.1c2o2
+.c2oi
+.co5i4t
+.co3pa
+.co1pr2
+.cop5ro
+.c4o3r1u
+.co3si
+.c2ot
+.co5ter1
+.5coty
+.coty3le5
+.cr2
+.crit1ic
+.cri5t2i1c2i2
+.1cus
+.c4ust2
+.cus1to4
+.cust2om5
+.3d2av5
+.dea2
+.dea5c2o2
+.d2ele
+.de5lec
+.del5eg
+.de3li
+.de3l2i5r
+.1d4e1m
+.den1i
+.de5nit
+.de3n1o
+.der2
+.de3ra
+.d4er2e
+.de5re4s
+.1de3ri
+.5de2sc2
+.descr2
+.de5sc2r2ib
+.deser1
+.de5ser1v2
+.des4i
+.des2i4g
+.desi2gn2
+.de5signe
+.de5s2ir
+.de5s1is2
+.des1p
+.des2po
+.de5sp2oi
+.1de1t
+.deter2
+.determ5i
+.de3ve
+.de4w
+.1d2i1a2
+.di4al.
+.dia3s
+.di4at
+.2d1in
+.din4a
+.3d2i1o2
+.di2o5c
+.1do2
+.do4e
+.d2om
+.dom2e
+.do2me2s
+.domest5
+.1du
+.d2ua2
+.du1al
+.du4al.
+.3d4u4c
+.2d2y
+.d4y2s3
+.ea2
+.eas4t5
+.e2ch
+.ech3i
+.ech1in5
+.e1c2o3
+.e2c3t
+.2ed
+.ede2
+.e1d5em
+.ed1it
+.ed4it.
+.ed4iti
+.eg4
+.ei3d4
+.e2i5r
+.2ele
+.e2l3ev3
+.el2i
+.e1lu
+.elu5s4
+.e2m3b
+.em5in
+.em1p4
+.em5p4y
+.en1
+.en5c
+.2e4nd
+.ende2
+.en4d2ed
+.e4n3s
+.ent2
+.en5ta
+.eo1s5
+.epi1
+.epi3d
+.er1
+.er2a
+.2er2e
+.er5em5
+.er4i4
+.er4o2
+.eros4
+.er2ot3
+.e4r1r4
+.er4ri
+.es1
+.e2sc2
+.es1ca
+.esc1al5
+.es3p
+.es3t2
+.eter2
+.eter2n5
+.e2th1
+.eth3e2
+.eu1
+.eu4r4
+.eval3
+.e1vo
+.evo2l
+.evol5ut
+.ew4
+.ex1
+.ex3a
+.eye3
+.1f2a
+.fall2
+.fal4le
+.5fa2r
+.far4i
+.3fec
+.fecun1
+.fecu4nd
+.fec5un2da
+.f2e4n4d
+.feof2
+.feo2ff5
+.feo2ff
+.feofi
+.feofl2
+.fi2
+.fi2
+.1fi2l
+.fi5l2i1a2
+.1fi2l
+.fi5l2i1a2
+.fil5tr2
+.fil5tr2
+.2fin
+.fin2e
+.fine4s
+.fi1n5e4ss
+.2fin
+.fin2e
+.fine4s
+.fi1n5e4ss
+.f1i4n3g
+.fi4n3g
+.f2in1i
+.fi5n4it
+.fin1i
+.fi5n4it
+.fi2s4c5
+.fi2s4c5
+.1fo
+.3f2o3c
+.1fr2
+.fra2n
+.fran5ch
+.3fu
+.fu5g4a
+.g2a4m
+.gam2e
+.ga1m5e2t
+.3gen
+.g4ene
+.gen4et
+.ge5neti
+.gen1i
+.gen5i1a2
+.ger1
+.ge3ro
+.2gl2
+.3glo
+.glor1i
+.glor5i3o2
+.2gn2
+.g2no
+.gno4s
+.gnost4
+.go3no
+.3gos3
+.ha2
+.h1ab2
+.hab1il
+.ha5bili
+.h2a4m
+.hama5
+.ha2n
+.ha4nd
+.han4de2
+.hast2
+.hast5i
+.he2
+.h4e4i
+.hem5a
+.hi2
+.hi3b
+.ho2l
+.ho5rol
+.hov3
+.h2y
+.hy2l
+.hy3lo
+.2i2c2o2
+.ico3s
+.i2d
+.idi2
+.2ig3
+.i2g1n2
+.il4i
+.i2m5b
+.in1
+.2i4n3d
+.in3e2
+.2in2i
+.2in3o
+.in3t
+.in3v2
+.inve2
+.invest2
+.inve2st5i
+.2ir
+.i4r3r4
+.i2s4c2
+.i2s1l4
+.is4li
+.is4o
+.i1s2o5m
+.ka2r
+.ka5ro
+.ki4e2
+.k1in
+.kin3e
+.l2a
+.l1ab
+.lab4o2
+.l2a2m
+.la4m2e
+.la3men
+.lam5enta
+.la2n
+.lan5i
+.l4as
+.las2h
+.lash4e2
+.le4m
+.len5t2i
+.le2p
+.le1p5r2
+.3le4s4s
+.les2so
+.les5son
+.2lev
+.l3eva
+.le5va2n
+.lib1r4
+.libra2r5
+.1l2ig
+.lig3a
+.l2i3o2
+.li4o4n1s2
+.l2i4p
+.1l2oc
+.loc3a
+.1l2o1g
+.lo3g2i
+.lo4g2i1a2
+.lo2p
+.loph3
+.lo4u2
+.lous5i
+.lov5er1
+.lub3
+.2ly
+.ly1o3
+.mac5u
+.mal2a
+.mal5ad5
+.ma5l1in
+.1ma2r
+.mart2
+.mar5ti
+.m4a2th5
+.m2e
+.melo4di
+.me5lo3d2i1o2
+.1men
+.ment4
+.men5ta
+.mer1
+.me5r2i2d
+.me5r3in
+.1me2t
+.met1e
+.met4er2
+.mi4e2
+.m2ig
+.mi3gr2
+.m2in2u
+.min5ue
+.m2ir
+.mir2k4
+.mis1
+.mi2t
+.mi5to
+.1mo
+.mo3b2i
+.mo5le2c4
+.m4on
+.mon3a4
+.m2ort2
+.mor5ti
+.mun1
+.mu3n2i
+.mu3si
+.mus2i5c2o2
+.2my
+.3myt
+.myth3
+.n1a
+.n2a5k2
+.na2r
+.nar1i4
+.n2as
+.nast4
+.nas5ti
+.ne2c3t
+.n1i
+.ni4c
+.n2itr2
+.ni5tro
+.n2o4c
+.n2om
+.no2m3o
+.nos3t2
+.n2ot
+.no5t1ic
+.n2u
+.5n4uc
+.nuc3l2
+.nuc2le5
+.ob2e
+.o2b2ed5
+.o1b3e4l
+.o2b3l2
+.od4
+.o2e4d5
+.oe5so
+.o2f5t
+.2oi4
+.ol4d
+.2om
+.om2e2
+.om5el
+.on1c
+.on4ce
+.o2n4e
+.op2i
+.1o2p1t2
+.op2t5a
+.or1
+.or1a
+.or4at4
+.ora2to
+.orat1or5
+.ora5tor1i
+.or1c2
+.or4ch
+.or5che2
+.or3d
+.2or2e4
+.or3eo
+.or4i
+.or2n2
+.orn1er4
+.or2o
+.os1
+.osi4
+.2ot
+.4oth5
+.o4u2
+.out1
+.ov4
+.pal5i
+.1pa2r
+.par2ad
+.para5di4s1
+.par5af
+.par5a2ff
+.par5afi
+.par5afl2
+.par1a5t
+.p2a5ta
+.pa4t2io2
+.pe2c3t4
+.pecu3
+.2p2ed
+.3ped3e2
+.p2e4nd4
+.pen5de2
+.pe2p3t2
+.per1
+.p4eri
+.per3i5n
+.pe2r1s2
+.per2se
+.per3se5c
+.3pet
+.pe2ti
+.pe5titi
+.ph2
+.phe4
+.phen1o
+.phe5n2o2m
+.1pho
+.ph2o4n
+.phon4i
+.p2i2e2
+.p2il
+.pi3l3a
+.p2l2
+.1pl2a
+.pl4as
+.plast4
+.plic4
+.plica4
+.plos4
+.1po
+.po3l2a
+.pol2it
+.po5lite
+.po2p
+.p4op5l2
+.3p4os
+.pos1it
+.po5si1t2io2
+.po4s1s2
+.pos5si
+.1pr2
+.pr4oba
+.pro5bat
+.pu4r
+.pu4r4r4
+.pu2t1t4
+.put4te
+.ra5cem
+.ra2n
+.ra4ng
+.ran5g2i
+.r2e
+.re3c2a
+.re1f
+.re2fe
+.refer1
+.r2ef5er2e
+.re2ff
+.re1fi
+.re1fl2
+.re5ga2r
+.re1i4
+.re5lin
+.re1m
+.re5o
+.re2sc2
+.res5c2i2
+.re5sen
+.re5s2po
+.rest2
+.re5stat
+.rest1or
+.r2e5s4t2or2e
+.re5st4r2
+.re3t2a
+.re5u
+.re3w
+.2r2ib
+.rib5a
+.rin4
+.rit2
+.roll2
+.rol4l2a
+.r4os3a
+.sa2
+.sac5r2
+.sa2l
+.sal4i
+.sa5l1in
+.s4al4t
+.sal1te
+.salt5er1
+.sa2n
+.sanc5
+.s3ap
+.s4ap5a
+.s2av
+.sa3vo
+.sc2
+.s1c2i2
+.sci3e2
+.se2a2
+.sea3s4
+.se2ct4
+.sec5to
+.se3gr2
+.sen3t
+.se1q
+.ser1
+.ser4ie2
+.s2es1
+.3sev
+.sever1
+.sev5era
+.s2h2
+.s2i4g
+.si2gn2
+.si5g2no
+.s1is3
+.st4
+.sta2t4o
+.str2
+.stra5to
+.stri4ng
+.str4in2g5i
+.su5d4a
+.1s2ul
+.sulph2
+.sulph5a2
+.sul3t
+.ta2ct
+.tact4i
+.tac5t2ic
+.t2a4m
+.ta1ma2r5
+.ta2r
+.tar5o
+.te2ct4
+.te2l
+.tel5a
+.1tell2
+.tell5e
+.te4m
+.ter1
+.te5ra5t
+.ter4p
+.th4
+.tho4
+.thol4
+.ti2
+.til4
+.t1in
+.t2i5n1i
+.t3i2t4is
+.t1or1
+.tr2
+.tra2n
+.tran4c
+.t2r2ib
+.tri5bal
+.tri3d
+.trin4a
+.trist2
+.t4ri5sti
+.tr2op
+.tro4ph
+.tro1ph5o
+.tro4v
+.tu1l2a
+.tula2r5
+.tu4r
+.tur1b4
+.tur1i4
+.1tut
+.tu5te
+.tu3t2o
+.4ul4l2
+.ul1tim
+.ultim4a
+.ulti5mat
+.un1
+.un5ce
+.un5ch
+.u4n3d2
+.unde2
+.under5
+.un3e
+.u4n3g
+.un2i
+.u1ni3c
+.un2i3o2
+.u4n3k4
+.u4n5s4
+.un3t4
+.un5u4
+.2up1
+.up3l2
+.u4r
+.ur1a4
+.ur2e
+.ur1e2t
+.ur5e2th1
+.ur4o
+.1v2ale
+.va5l2ed
+.ve2
+.vec5
+.2vel
+.ve5lo
+.vent2i
+.vent5il
+.ver1
+.v5er4ie2
+.ver3n2
+.vic2
+.5vi2ct2
+.vic5to
+.vi2s
+.vis3i
+.vi5so
+.1vo
+.v2o1c
+.vo2l
+.vo5lut
+.wi2
+.win2e
+.wine5s
+.xy3l
+.z1a1
+.za5r
+a4a
+1ab
+2ab.
+2aba
+aba2r
+ab5ar2e
+ab4ay4
+2a2b1b2
+abb2e
+ab5ber1
+2ab2e4
+aber1
+ab3erd
+a5b3e4r1r4
+a3bet
+ab1ic
+a3b4ie2
+2abin
+4a1b2i2o2
+abi5on
+ab3it1a
+ab4itu
+a2bl2
+ab3l2a
+abli4
+abo2
+abol3i
+4abolic
+ab3om
+ab2ot
+ab3ota
+abo4u2
+3about
+ab1r4
+a4b1s2
+2abs.
+ab1ul
+abu4lo
+ab3use
+ab3usi
+2a2by
+ac2a
+ac1ab
+ac5a2bl2
+ac3al
+aca2n
+5ac1anth2
+a1ca2r
+ac5ard
+a5c1at
+a2ch
+acha2
+ach5al
+ach1in
+a5ch2in1i
+ach5i2s1m4
+a3c2hr
+achro4
+ach5u4r4
+2a1c2i2
+a4cic
+acie2
+aci3er1
+aci4e2r1s2
+ac2i3f4
+ac2i3ff
+ac2i3fi4
+ac4i3fl2
+4acit
+ack1
+ack5a
+acl2
+ac3li
+a1c2o2
+4a4co.
+aco3d
+acon1
+ac5on1r
+4acos
+4aco4u2
+ac1r2
+ac3r2y2
+a2ct
+ac2ta
+act5ate
+act5ile
+ac2to
+act1or
+act5o2r2y
+ac2t5r2
+ac2ua2
+ac5uat
+a5d2ai2
+a3d2a3v
+4adee
+ad5en1i
+a4d1h
+ad4ha2
+ad3ica
+a5d2i1f
+a5d2i2ff
+a5d2i1fi
+a5d4i2fl2
+4adil4
+a3d2i1o2
+adi4op
+ad2i4p
+adi4s1
+adis4i
+a3diti
+ad1j
+3adju
+a2d1m
+5admi2t
+a2do
+4adoe
+4ad2oi
+ad3ol
+a3d4os
+ad1ow
+ad1r2
+a3dr2a2m4
+4a2du
+ad3u1l2a
+ad3um
+4a2d2y
+ae5a2
+ae1c2i2
+ae4cit
+ae1c2o3
+4a2ed
+aed5i4s1
+ae5g
+ae3on
+ae5p
+aer1
+aer2od
+aero2d2y5
+ae4s
+ae5si
+aes3t2
+aet4a
+ae2th4
+aet1or
+aet4or.
+aev3a
+4af.
+4afe
+a2ft
+af5ta
+a4fu
+aga2r
+ag4ar1i
+ager1
+4ageri
+a2gh
+a5ghe2
+a1g2i
+a5g2i1a2
+agi4as
+4ag2ino
+4a2gl2
+agli4
+4a2g1n2
+ag3on1i
+agor4a
+ag5ot
+a2gr2
+ag3ri
+a3gru5
+2ah
+a1h2a2
+aha2r2
+aha5r1a
+a1he2
+a2h4n2
+a5h2oo
+2ai2
+4ai.
+a2i3a2
+a1ic
+ai2d
+aid4a
+aid5er1
+a2ig2
+ai5gu
+ai2l3er1
+ail3o
+aim2e
+aim5er1
+a2i4nd
+ainde2
+ainder1
+ain5de2r3s2
+a4i5nea2
+ai4ng
+a3ing.
+a2in3i
+a2in5o
+ain1te
+aint5er1
+a2ir
+air5a
+air5p
+ai2r3s2
+ais1i
+a5i2s1m4
+2a1j
+a4ju
+2ak
+akel4
+ak5u
+al2a
+al1ab
+al5a2bl2
+al4ac
+ala2ct4
+a1l4ae
+al2ai2
+al5ais
+al2a2m
+ala3ma
+ala2n
+al5ance
+al3at
+a5l2av
+al1c2
+al2c3at
+al3ch
+aldr2
+ald5ri
+2ale
+a3lec
+aleg4
+ale5ma
+al2e4nd
+al5end4e2
+a1leo
+a2let
+al3ib1r4
+ali4c2i2
+al5i4c5s4
+al1i2d
+al3i1f
+al3i2ff
+al3i1fi
+al4i2fl2
+5a1l2ig
+al1in
+a5l2in1i
+al2in5o
+al2ip
+al5ipe
+ali3po
+al5ip2ot
+al1is
+4alis.
+4al2i1u2
+4alk
+alk5ie2
+all2
+al1l2a
+al4l1ab
+al4lag
+al1li
+all2i1a2
+alli5a2n
+al1l2ig4
+all1is
+al4lis2h
+a5loe
+a1l2o1g
+al3o1gr2
+a3l2om
+a3l2oo
+al1or
+alor1i
+al4orim
+alos4
+a4lo4u2
+al3ous
+a5low
+al5pen
+al3ph2
+al5tati
+al3tie2
+alu3b
+a4lue
+al5u4ed
+al3ues
+alu4m1n2
+alumn1i
+a5lumn2i1a2
+al1va
+al5ver1
+alv5u
+2a2ly4
+a5lyn1
+2a2m
+a5mad
+ama4g
+a1ma2n
+ama4n5d
+a1ma2r
+amar1i
+a5marin4e
+a3mas.
+am1at
+a5m4at1i2c
+am5a2tu
+a2m1b
+amb2i
+am4bin
+3ambu
+am2e
+am5elo
+a3men
+am2e4n4d
+amer1
+am3era
+am5erl
+am1i
+am1i2c
+am5ica
+am2i1c5r2
+3ami2d
+am2il
+a3mili
+am5i2ly
+am2in1i
+amin2i4f
+amin2i4ff
+amin2i4fi
+amin4i4fl2
+am5in1iz
+am2ino
+am4inos4
+a5m2is.
+a3m2i1u2
+ami3um
+a4mium.
+a1mo
+a3m4on
+amor5a
+am2ort3
+am5ose
+am2p
+amper1
+am5p4er3i
+amph2i5g
+amp2l2
+amp3li
+am3po
+ampo5l
+am3ul
+a2my
+amyl5
+a2n
+an2a
+a5nadi4
+an3ae
+an3age
+an2a5k2
+an3ali
+ana2r
+an3ar1c2
+an2as
+a5nast2
+an1c2o2
+an4con1
+a4nd
+an2da
+an3d4at
+and5au2
+ande2
+and5eer1
+an5de4l
+an5d2i1f
+an5d2i2ff
+an5d2i1fi
+an5d4i2fl2
+andi4s1
+and5ist2
+an5dit
+an1do
+an4don1i
+an4ea2
+an5eer1
+an3ell2
+anel5li
+an3eu
+a4ng
+ang2a
+a2n3ga2n
+an1go
+angov4
+an1gu
+an4gu4r
+4an1h2
+an1i
+an3ic
+an2i3f
+an2i3ff
+an2i3fi
+an4i3fl2
+an5i3fo
+4an2i2g
+an2io2
+an5ion
+anist2
+anis5te2
+4anity
+4an2i1u2
+an1n4
+an5no
+4an2ny2
+an1o
+an2oe
+an2om
+an3o1ma
+anor3
+an2os
+an5ot
+a4n2s
+an3s2c2
+an4s2c2o2
+an2si
+ans3il
+an3su
+an4su4r
+an2t2a
+an2t1ab
+ant5a2bl2
+an3t1al
+an5t2a2m
+an2te
+1anth2
+an4thi
+3an1t2h2r
+ant2i
+4ant1ic
+an4tie2
+ant1in
+an4t3i4ng
+an2t4iv
+an1t2o
+an4to2n4e
+an1t4r2
+an1tu
+an4tus
+an2ty
+an5tym
+an2u
+an3ul
+an3um.
+an5u4m1s
+a3nu4r
+a5nut
+a2n2y2
+an5y1a2
+a5ny1i
+2ao
+aol3i
+5aow
+2ap
+4ap.
+4apa
+a1pac
+ap3al
+a1pa2r
+ap5aro
+ape5li
+a5peu
+aphe4
+aph5em
+aph3i
+a1pho
+aph5ol
+aph2y
+a3phy2l3
+ap1i
+ap5icu
+ap3in
+ap4in4e
+a5p2ir
+ap2l2
+a1pl2a
+a3pla2n
+ap5li
+a1po
+a3p4os
+apost2
+apo5str2
+ap2ot
+ap4o3th
+a2pr2
+ap5ron
+4a2ps2
+a2pt2
+apt5at
+apu1l2a
+apu5la2r
+a5p4un1
+a4q
+aqu4
+a5q2ui2
+a2r
+ar1ab
+4arabi
+ar2a5bo2
+ara2ct
+aract4i
+ara2g
+ar3age
+ar4a2g2e4d
+ar5a1g2i
+ar3ago
+a3r2a1j
+ar3all2
+ar2a3m
+ara2n
+ara4n4g
+aran2t
+aran5te
+ar2ap
+ar5apa
+ar1at
+a3r2au2
+ar2a3v
+ar1b
+ar3ba
+ar2b2e
+arb5et
+arb2i
+ar4b2i2d
+ar4bl2
+arb3li
+ar4bul
+ar1c2
+ar2ch
+arche2
+ar5chet1
+ar1ch5o
+ar2d2in
+ar5din1a
+ar1do
+ar4do2ne
+ar2e
+ar3en
+ar2e4n5d
+ar5e2t2t4
+ar3e1v5
+ar1g2
+ar5gh
+ar3gu
+ar3h2
+ar1i
+ar2i1f
+ar5i2ff
+ar2i2ff
+ar2i1fi
+ar4i2fl2
+ar4ill2
+arin4e
+a5r4i5net
+ar5in1i
+aris2h
+a5rishi
+arm2e
+arm3er1
+ar5mi2t
+ar2n2
+arn1a
+ar3nal
+arn1i
+ar3nis
+ar3od
+a4r2oi
+ar5o2i4d3
+ar2om
+aro1ma
+aro4mas
+aro4n
+ar2ot
+a5roti
+aro4u2
+a5ro4uc
+a4r3o4x
+arpe2
+arper1
+arp5e2r1s2
+ar4pu
+2a4r1r4
+ar2rh2
+a2r2s2
+ar2s5a2l
+ar3so
+art2
+art5at
+ar2th
+arth4e2
+ar1t2h3r
+ar5t1iz
+2aru
+ar3um
+ar5un4
+a2r2y
+a3ry1o2
+a5ry2t
+ar5z
+as1a
+as4af
+as4a2ff
+as4afi
+as4afl2
+asa2n2
+2asc2
+as2c2o2
+as5con1
+as5c2ot
+as2cr2
+as2e
+as3e2ct
+4a2s2ed
+ase2p4
+as2h
+asha2
+ash5ay
+ash5i4l
+as5i2ly
+a2s3in
+a5s2io4
+a3s1it
+a4s5iv
+as2k2
+aske2
+ask5er1
+aski4
+a2sl4
+as4l2a
+as4lo
+2aso
+as2oc
+as5o2ch
+as4o2ne
+a4s4o2n2ed
+as5or
+as3ph2
+a4ss2
+as1sa
+assa4g
+assa5g2i
+as4s1ib
+ass5i2bl2
+as4sil
+as3s2it5
+ast2
+2asta
+as4tat
+as4t2i3a2
+as3t1is
+as4tit
+4asto2
+astr2
+as3tra
+as4tri
+as1u
+as4un1
+as5u4r
+2a2ta
+a2t1ab
+4atabi
+a5tal1is
+at2a2m4
+at2a3p
+ata2r
+atar3a
+ata3s
+ata3t4
+atea2
+at3e2au3
+at3e2ch
+at5eer1
+ate2l
+a5tel.
+at2e5le
+aten1a
+at5enat
+at3ent
+4ater1
+at3era
+ater2n2
+atern1i
+at5er1n3is
+at5ern3iz
+a2t2es
+4ate4ss
+at5et
+4a2th
+ath3a4
+athe2
+a3then
+at4her1
+ath5er3in
+ath5ero
+athet1
+ath5ete
+ath3i
+ath3od
+a5th2o4n
+a1t2h5r
+4a3t2i2a2
+at1i2c
+at2i1c2i2
+at5icis
+ati5cit
+at5ic1iz
+a2t2i1f2
+a4t2i2ff
+a2t2i1fi
+a2t4i2fl2
+a4t1i4l
+a4tim
+a2t3in
+4atin1a
+at5i4ng
+a2t1is
+4at4is.
+at1it
+atit3u
+atitud5i
+4a3t2i1u2
+a2t1iv
+at4ivi
+a5tiv1iz
+a2to
+5at5od
+4a1t2o1g
+2atol
+4aton
+a3t2oo
+a4to2ps2
+at1or
+ator1i
+ator2i1a2
+a5t4oria2n
+a4to2r2y
+atos4
+a5t2oz
+2a2tr2
+at3ra
+a4tr2e
+5at5re4s4s
+at1ri
+a3t2r2ic5u
+at3ron
+at5ro4u2
+a2t1t4
+atta4
+at4tag
+2a2tu
+at1ul
+atu4m
+atu4r
+at3ur1a
+at3ur1g2
+4a2ty
+2au2
+4au.
+au1b5i
+4a4uc
+au5cer1
+au1c3o2
+aud4e
+au4d5er1
+audic4
+aul3i
+aul4t
+aul1te
+aul5t4ed
+ault5er1
+ault5i
+au3ma
+aun2
+aun2ch
+aun5ch4ie2
+au4n3d
+aundr2
+aun4dr2e
+au4r
+aur2e
+au5reo
+aur4o
+au5ror
+4aus.
+aus5er1
+aus5p
+a4ust2
+auste2
+au4s4t4ed
+aut3a2r
+aut3er1
+au3th
+2av
+a2v4ab
+ava4g
+av3a4ge
+ava5l2a
+av5alr4
+ava2n
+av5ant
+av5a2r
+avas3
+av3e4nd
+aver1
+av3er2n2
+av3ig
+a3v2i1o2
+av4i1ol4
+av1is
+awer1
+aw5er.
+aw5e2r1s2
+aw1i2
+awn1i
+aw5n2ie2
+aw5y2
+a4x
+ax1i
+ax2i2d
+4ay
+ay5l2a
+ay3m
+ayn4
+a4y2s2
+ay5si
+ays1t2
+ay5sta
+ayth4
+2az2
+az1a1
+az3a2r
+aze4
+az5ee
+azy1g4
+azz2
+azz4l
+2ba.
+b1ab
+ba5b2ir4
+3back1
+baen4
+bag4a
+5b2ah
+b2a4i2
+bal3a
+balm2
+balm5i
+ba5lon
+bal5u
+b2a2m
+bam4a
+ba2n
+ban4a
+ba5na2n
+b4ane
+5ba4ng
+ban1i
+b4aniti
+b4a4n2s
+b2a4p1
+ba2r
+5bar1b
+bar4d
+bardi4
+bar4n2
+ba5r2om
+bar3o4n
+5ba2r2s2
+1bas
+bast2
+bas4te2
+b4a4th4
+3bat1i2c
+ba5t2io2
+ba2to
+b4at5on
+ba2t1t4
+bat2tl
+battle5
+2b1b2
+b4b2a2ta
+b2bl2
+b3bli
+bbo2
+b3bon
+b4bo2n4e
+b1c2
+b1c2o2
+bcord4
+2b1d
+bdea2
+bdeac5
+bde4b
+b1di4v2
+b2e
+4be.
+3bea2
+4beas
+be3c2a
+3becu
+2b2ed
+be3da
+bede2
+bed5el
+bed2i
+be4do
+bedr2
+be5dra
+be4du
+5bee
+3be1f
+3be2ff
+3be1fi
+3be1fl2
+be3go
+be5gr2
+be3gu
+1bel
+be3l2a
+2b2ele
+be3l1it
+bel4t
+be3m
+b2e4n4d
+ben2d5a
+bende2
+bend5er1
+b4e1ne
+ben1i
+be5n2i2g
+b4e5n2u
+4beo
+be3q
+ber1
+2b2er2e
+ber1g2
+berg2a5m
+berl4
+5be4r1r4
+be2r5s2
+bert2
+b5er2t1in
+be1s2
+2b4es.
+be3sl4
+be3tr2
+be3w
+2b1f
+2b2ff
+2b1fi
+2b1fl2
+b1f2a4
+4b1h
+b4ha2
+2bi.
+1b2i1a2
+bi4b1
+b4ice
+bi1cen5
+3b2i2d
+bid5i
+b4ie2
+bi1er1
+bi4e2r1s2
+b2i1f4
+b2i2ff
+b2i1fi
+b4i2fl2
+bifi4d
+bi4fid.
+bifi4d
+bi4fid.
+b2ig
+bi5ga
+bigu3
+b1il
+b2ile
+5biles
+3b2ill2
+4bim
+bim2e
+bi1me2t5
+5bin1a
+5b2i4n4d
+bind3e2
+bin5et
+b2in5i4
+1b2i2o2
+b4i1o3l
+bi2o5m
+bi3o4u2
+b2ip4
+b2i5q
+b2ir4
+bi3r2e4
+bi5rus
+b2is
+5bi2s1m4
+bis4o
+bi5s2ul5
+3bit2u1a2
+4bity
+bi5ve
+b1j
+4b5k4
+2bl2
+bl2a
+5bl4ac
+blag4
+b3la2n
+bl4as
+5blast2
+bl2a5tu
+blem5at
+3b2ler1
+5blesp
+4b3l2ik2
+blim3a
+bl2i3o2
+bl2i2q
+b3l1is
+4b2ly
+2b1m
+bm2e
+b1men
+bment4
+bmi4
+4b1n
+bo2
+4bo.
+3b2oa2
+bo5a2m
+5bob
+bod5i
+bo5h2
+b2oi
+2bo2i4d
+4boke
+bol4e
+4bo2l2ed
+bol3i
+bol4t
+3bon
+bon4c
+bo2n4e
+bon1i
+bon4ie2
+bon3i4f
+bon3i4ff
+bon3i4fi
+bon4i4fl2
+bo4n1s2
+bon4sp
+1b2oo
+bor1a
+b3orat
+bor3d
+b2or2e
+bor5ee
+bor5et
+3bor1i
+bor5ic
+bor5i3o2
+bor4n2
+b2ot
+bot3a2n
+5boti
+bo4u2
+b2oun1
+boun5t2i
+3bou4r
+bous4
+bow2
+bow3s4
+bo4x
+4boxy
+5b2oy
+br4
+3bra2ch
+4bral
+br2a2m4
+b2ra2n
+bra4n4d
+br2e
+4b4re.
+brea4
+b4reas
+4b2res
+bre1v
+brev5et
+b2ri2d
+brie2
+5brie1f
+5brie2ff
+5brie1fi
+5brie1fl2
+bri4ng5
+br2i3o2
+bri4os
+b5rist2
+b4r2oa2
+br2om
+bro4ma
+bros4
+brum4
+b2r2y
+4bry.
+4b1s2
+b3sc2
+bs2c2o2
+bscon4
+bsen4
+bser1
+bser1v2
+bserv5a2n
+b5si
+b2sin4
+bso2
+bs2ol
+bsol3e
+bso3lu
+bst2
+b4stac
+bs1tu
+bst2up
+bstu1pe5
+2b1t
+b2tl
+b5t1let
+4bu.
+5bub
+buf2
+bu2ff
+buf1fe
+buf5fer1
+bu2ff
+buffe
+buffer1
+bufi
+bu3fl2
+b4ul2i
+bu1lo
+b4ulos
+bun2
+bu4n4a4
+b5u5nat
+bunt4
+bu4r
+bur3e
+bu4r1r4
+bur4ri
+busi4e2
+bu4ss2
+bus5si
+3b4ust2
+bu5ta2r
+b3ute
+but2i
+b5ut1in
+3bu3t2io2
+bu2t4iv
+b5ut5o
+b1v
+4b3w
+2by
+4by.
+3by1i
+b4y2s4
+5byt
+2ca.
+c1ab
+c2ab5in
+c4ace
+ca1c2o3
+cad4r2
+5caf
+5ca2ff
+5cafi
+5cafl2
+ca3go
+5c2ai2
+5c2ak
+c1al
+c4al2a
+cal2a2m
+cala3ma
+ca5la1ma2n
+cal5a2r
+3cal1c2
+c2ale
+ca5le1f
+ca5le2ff
+ca5le1fi
+ca5le1fl2
+call2
+cal1li
+cal2l5in
+cal4m2
+c2a3ly4
+c2a2m
+ca3ma
+cam4i
+ca2n
+can2a
+ca5na2r
+c2an4e
+c4an1o
+ca3n2oe
+can2t2a
+can5ta2r
+can2te
+can5t4ed
+cant2i
+c4an4t1ic
+can4t4r2
+5c2ao
+1c2ap
+cap1i
+ca5p2il
+ca2pt4
+cap3ti
+cap3u
+1ca2r
+ca3ra5c
+car2a3m
+car5am2e
+car2e
+ca3ree
+car1i
+ca3r4i3c
+car3i1f
+car3i2ff
+car3i1fi
+car4i2fl2
+car5m
+car2n2
+car3n1i
+car3ol
+car5o4n
+car5oo4
+ca3ro4u2
+car4v2
+cas2e5
+cas2h
+cashi4
+3ca4s3s2
+cast2
+cas5t2ig
+3cas1u3
+c1at
+c4at.
+c2a2tc2
+ca2to
+c4at2om
+c2a3t2r2
+c4a4t1s
+c2a2t4u
+3c2au2
+caulk4i
+c2av
+cav3i4l
+3c4ay
+c1c4
+c1cen2
+c3cent
+ccen1t5r2
+c5ce4ss
+cces4sa
+c3ch
+c1c2i2
+cci3d4
+cc2ip4
+ccl2
+cc2le3
+4ce.
+cea2
+4c4e1ab
+cea2n3
+3ceas
+ce4c2i2
+2c2ed
+5ceda
+ce3da2r
+3cede2
+3cedi
+4ce1f
+4ce2ff
+4ce1fi
+4ce1fl2
+ce5g
+3ce2iv
+cel2a
+cel3ai2
+cel5ib5
+5cell2
+cel1li
+cel5lin
+celo4
+ce5l2om
+4ce2ly
+2cem
+ce1m2e4
+ce4me2t
+3cemi
+ce4mo
+1cen2
+5cenc
+cen5c2i2
+c2e4nd
+cende2
+cen5d2ed
+cend5en
+cend5er1
+cen3i
+2cen1n4
+3cent
+cent4a
+cen1te
+cen5t4ed
+center1
+cen5ter.
+cen5te2r1s2
+cen5t2es
+1cep
+ce2pt2
+cept3a
+cep5t4ic
+cer1
+3cera
+cer1b
+cer4b2i
+3c2erd
+c2er2e
+ce3rem
+5cer2n2
+5ce4ss
+cest2
+cest5o
+ces5t4r2
+ce2t
+cew4
+2ch
+4ch.
+cha2
+4ch1ab
+3chae
+3ch2ai2
+ch2a4m
+cham2p
+cham5per1
+cha2n
+cha4n2g
+chan5g2i
+ch2ap
+ch4a3pa
+che2
+chec4
+4ch2ed
+3chee
+3chem
+che3o2l
+ch1er1
+ch4eri
+5cher3in
+ch4erl
+4ches
+chet1
+3chete
+ch5eu2
+che4v4
+che5va
+3chew
+ch5ex
+5c2hi.
+3ch2i1a2
+ch1ic
+3ch2i2c2o2
+chi4l
+ch3i2ly
+ch1in
+ch4in.
+ch3in1n4
+3ch2io2
+5ch2i2p
+ch1iz
+ch2izz4
+ch5k
+c4hl
+5chlor
+4c2h1m
+1cho
+ch2o3a2
+5ch2oc
+4ch2oi
+ch5o2i4d
+3chor
+ch2or2e
+4cho2r4ed
+chor5ol
+4choso
+3ch2ot
+4choti
+ch2o4u2
+ch5ous
+chow5
+3c2hr
+chu4r4
+3chut
+ch2y
+5chy1d4
+3chy2l
+3chy2m
+1c2i2
+4ci.
+c2i1a2
+4ciac
+ci2a4m
+ci3ca
+ci2d
+4ci4d1s2
+cie2
+4cie.
+ci3er1
+ci3es2t2
+c2i5et
+c2i3f
+c2i3ff
+c2i1fi4
+c4i3fl2
+cifi4
+4c2ig
+ci3ga
+c3iga2r5
+3cil
+cill2
+cil1li
+cil5lin
+2cim
+cim3a
+ci3m2e
+5ci1men
+cin1a
+4cin3ab
+4c2i4nd
+c4ine5a2
+cine5mat
+cine4s
+ci5ne4ss
+4cint
+c2io2
+c4i3ol
+ci5om
+c2ip
+ci4po
+cisi4
+c2it3r2
+ck1
+cka2r5
+cka5t
+c4ke
+ck5i1f
+ck5i2ff
+ck5i1fi
+ck5i2fl2
+c4k1s
+ck4sc2
+cl2
+cl2a
+cla2r
+clar1i
+cla5r2i1f
+cla5r2i2ff
+cla5r2i1fi
+cla5r4i2fl2
+3cl4as
+c2le2
+2c4le.
+c5lec
+clemat4
+c2lev3
+cli1m
+c3li4ng
+cl2i2q
+c1lo4q
+cl2ot
+c4l4o1tr2
+c4lue4
+c2ly
+cl2yp5
+5cl4y2s
+cn2
+c3n1i
+1c2o2
+4co.
+3c2oa2
+c4o5ba
+3c2oc
+co3c2i2
+co5cu
+co3dic
+co3d2i1f
+co3d2i2ff
+co3d2i1fi
+co3d4i2fl2
+4co2d2y
+3coe
+co5et
+c2o1g
+co3gr2
+c2oi
+4c3o2i4d
+co3inc
+4col.
+col3a
+co1lo
+co3l2o1g
+5col1o4u2
+co5ly
+c2om
+co1ma
+co5mas
+co4m2e
+co3mo4
+com1p4
+con1
+con1a
+con4ati4
+con1c
+con4ch
+co4nd
+conde2
+con3d5er1
+co2ne
+con4ey
+con1i
+con4ie2
+co4n3s2
+c2on3t
+conta5d
+3c2oo
+coo2p4
+co3or
+cop4e
+co3ph
+c4o5p2l2
+co3po
+c1o2p4t2
+2cor1a
+cor5d2ed
+cord5er1
+c2or2e
+4co2r4ed
+co3rel
+3cor2n2
+4coro
+co5rol
+5c2ort2
+3cos.
+cost2
+c4ost3a
+coste2
+cost5er1
+c2ot
+co5ta
+3c4o3tr2
+5coty
+co4u2
+co4us5t2
+cov1
+co3va
+cow5a
+c2oz4
+co5z1i
+c1q
+cr2
+5craf
+5cra2ff
+5crafi
+5crafl2
+cra2ft
+craft5i
+c4ra2n
+5cran1i
+cr4a5n2i1u2
+cras2
+cras3t2
+cra4te
+c2r2e
+crea4
+4crea2n
+cre3at
+cre4p3
+5creti
+cre4t2o
+cret5or
+cri3l
+cron4
+crost4
+4cro4u2
+5c4rus
+c2r2y2
+crym3
+cry1o3
+4c5s4
+csim5
+2ct
+c2ta
+c3tac
+ctac5u
+c5ta5g
+ct1a2n
+ct5ant
+cta2r
+ctar1i
+c5tar2i1a2
+c3ta2to
+c1te
+c4tea2
+c2t5ee
+c4tent
+cter1
+c1teri
+cter4i1a2
+c2t5es
+ct5et
+ct2ic
+ct2i1c2i2
+c5tic2i1a2
+c4ti4c5s4
+c1t2i1f2
+ctifi4e2
+c1t2i1fi
+ctifi4e2
+c4t2i2ff
+c1t4i2fl2
+c3tim
+ct1in
+ct4in.
+ct4in1a
+ct5i4ng
+c3t2in1i
+c5t2in5o
+c5t2io2
+c3t2is
+c3tit
+c4titu
+c4tity
+c2t1iv
+ct5ive
+ct4iv1i2t
+ct5o1lo
+c1t2om
+c3ton
+ct1or
+ctor1i
+c5toris
+c5tor1iz
+c1tr2
+c2tr2e
+ct2r2o5t
+c1tu
+c2tum
+c1ty
+cuba4
+cub3at
+c4uf2
+c4u2ff
+c4ufi
+c4u3fl2
+c2ui2
+cu5ity
+cu1l2a
+cu4l5ab
+c2ul2i
+c4ull2
+cul2l5er1
+cul1li
+cul2l5in
+1c2ult
+cu4mi
+cun1
+5cu4n3a4
+cun4e
+5cun2i
+5cuol
+c2up
+cu5pa
+cu3pi
+c3up2l2
+1cu4r
+cur2e
+cur4er1
+cur1i
+cur2i1a2
+cur5ial
+4cur4o
+1cus
+cus5a
+cut2i
+c3u2t1iv
+c3utr2
+5cuu4
+cu5v2
+2cy.
+c4y1b
+cy4b2i
+1cyc
+cyl3
+cy4m
+cyn1
+cy5no
+c4y2s4
+cys1t2
+cys5to
+cy4t
+cz2
+4da.
+d1ab
+d4ab1r4
+1d2ac
+da2ch4
+d5ache2
+3da2ct
+d1ag
+d4a4g2i
+d4ale
+d4al1g2
+dall2
+dal5ler1
+d2a2m
+dam5a
+3dam2e
+d3am1i
+da5mu
+da2n
+3da4ng
+d1an4t
+d3ap
+da2r
+d3ard
+5darm
+3d4as2
+dast2
+d2ast5a
+d1at
+da2t1iv4
+d2a2t4u
+d2au2
+dau2gh3
+daun2
+daun5te
+3d2av
+d3b
+d3c4
+d1d4
+dder1
+d4d4er2e
+d3di
+d2dl4
+d3d2ler1
+d3dli
+d2d2y
+d3dy1i
+2de.
+dea2
+de1a2c3t
+de5aw
+de1b
+de4b2i
+deb5it
+3dec
+dec2a
+deca2n
+de5cant
+de1c2i2
+de4cil
+de1cr2
+4de2ct
+d2ed
+ded3i
+de1f
+de1fo
+def2or5e
+de2ff
+de1fi
+de1fl2
+de4fy.
+de3g
+de4gu
+de3io2
+5d4e3is
+del2a
+de3lat
+de1li4e2
+dell2
+del5ler1
+del5li
+de5lo
+1d4em
+4de4mie2
+4dem4is
+de1mo
+d4em4o4n
+de4mo4n1s2
+de3mor
+de4mos
+4de2my
+de1n2a
+d2e4n4d
+4d4ene
+d3en1h2
+den1i
+den2i4e2
+de4n2s
+dens5a
+dens5er1
+dent2i
+den5tit
+de3od
+deo3l
+deon2
+de3ont5
+de1p
+depen4
+de1po
+de3p4os
+deposi4
+de2p4u
+d3eq
+der1
+derac4
+de3r2ai2
+d4er2e
+4d4e2r4ed
+de5reg
+3der3er1
+1deri
+der3k4
+3derm
+der4mi
+der5min
+der2n2
+5derne
+3dero4
+der5os
+de2r3s2
+5d2eru
+4d4es.
+de3sa
+5de2sc2
+des4ca
+de5sc1al
+de3sec
+des4i
+de3s4i2d
+des2i4g
+desi2gn2
+des5ig1n1a
+des1p
+des2po
+des5p4o2n
+de3sq
+dest2
+d3e4st.
+de2s3ti
+1de1t
+de3t2es
+de5th1
+de2ti
+dev3i4l
+de3vis
+de3vi2t
+de1vo
+de4v2oi
+devo2l
+devol5u
+3dex
+2d5f
+2d5ff
+2d5fi
+2d5fl2
+d1fo
+dfol4
+d2g
+dg4a
+d1gel4
+d4gen
+d3gr2
+4d1h
+dh2ot4
+d4hu
+4di.
+1d2i1a2
+di2ad
+3dia2r
+di3at
+dia2to
+di5at5om
+4d1ib
+d1ic.
+dic5a2m
+d4i4ce
+d4i3ch
+d5icl2
+d2i2c2o2
+dic5ol
+1di2ct
+dic2ta
+dic5tat
+dic4te
+d2icu
+5dicul
+d5i1cu4r
+1di2d
+die2
+di1er1
+di4e2r1s2
+3di3ev
+d2i1f
+d4i3fo
+d2i2ff
+d2i1fi
+d4i2fl2
+d2ig
+dig3al
+di3g2a2m
+dil4
+5dill2
+dilo4
+d4i3lu
+dim2e
+di5mer1
+di1me2t4
+di1m1i
+2d1in
+din4e
+di4ng
+d4in5g2i
+d2ino
+d4i5nos
+3d2i1o2
+di2o4c
+d4i1ol
+di4ol2a
+d2ip
+di2p5t2
+d2ir
+3dir2e
+di3r1i
+4d5iro
+di4s1
+d4i2s3c2
+d4is3en3
+3d2is2i1a2
+3d2i4s1s
+dit1a
+d4it4as
+d4iter1
+d2ith
+dithe4
+d3ito
+dit1or3
+2dity
+1d2i1u2
+1di1v2
+d2iva
+di4val
+di2v1in
+di5vin2e
+d2ix
+dix4i
+d1j
+2dl4
+d1l2a
+5dle1f
+5dle2ff
+5dle1fi
+5dle1fl2
+5dlest2
+3dlew
+dlin4
+d1lo
+d5lu
+2d1m
+4d1n2
+1do
+4do.
+d4ob
+d2oc
+do4c3u
+d2o1g
+do2g4a
+do4j
+d4ol.
+dol3en
+do5l4ine
+dol5it
+do1lo
+do4lon
+d4o4ls
+d2om
+5dom.
+do1ma
+do1ma2n4
+dom1i
+domin5
+dom5ino
+dom5i2t
+do5mo
+don1a
+don4at
+4do2ny2
+3d2oo
+d2or
+4dor.
+d2or4m
+d2ort4
+d4os
+do5sim
+do4ss
+dossi4
+d2ot
+dot1a
+do2t1t4
+dot3ti
+dot4t1in
+do4u2
+2dous
+d4own
+3do4x
+d1p
+dr2
+dr2ai2
+d5rail
+d3ral
+3dr2a2m
+dra2n4
+d4ras2
+drast4
+dr2e
+3drel
+dres4
+dre4ss
+dres2s5o
+dri4e2
+d4r2i1f
+d4r2i2ff
+d4r2i1fi
+d4r4i2fl2
+dr2i4g3
+d4r2om
+dr2op
+dro1pho4
+drun1
+dru4n2k3
+4d1s2
+d5sl4
+d2s3m4
+ds4mi
+d4sw2
+dt4
+dt5ho
+1du
+2du.
+d2ua2
+du1at
+3d4uc
+du4ch5
+du1c2i2
+duc2i1a2
+duci5a2n
+du4c2o2
+du5eli
+du5ell2
+du5en
+due4t
+du5e2t2t4
+d2ui2
+du5in
+dul3c2
+d3ule
+d4ul4l2
+du2m1b
+dum4b2e
+dun1
+du4n4a4
+d5un4c
+d2u2p
+du3p2l2
+du4r
+5dur1o
+d5use
+d4ust2
+duste2
+dust5er1
+du3u4
+d1v
+dver2
+dvert3
+d1vo
+dv2oc
+dvoc2a
+dvoc5at
+2d1w
+dwell3
+2d2y
+dy1a2
+dy4ad.
+d1y5a2r
+5dy4e
+5dyk
+dyl2
+dyll3
+5dymi
+3dyn1
+d4y2s
+dys3p
+d3zo
+ea2
+4e1ab
+e1a2ct
+eac4te
+ea5cu
+e5ad1d4
+ead3er1
+ead1i
+ea2dl4
+ead3li
+ea4g
+e2ak1
+eal3a
+e2ale
+ea2l3er1
+ea3l2o1g
+e2a2m
+ea2m1b
+eam4bl2
+eam2e
+eam3er1
+ea2n
+ean5i
+e2ap2
+eap5er1
+e3a4p1p2
+ea2r
+ear3a
+ear2e
+ear3er1
+ear4li
+e5a4r2r4
+eart2
+ear4te
+ear2th
+earth5i
+eas2e
+eas5er1
+e2aso
+ea4son1i
+e1a4s1s2
+eassem4
+eas4t2
+east5i
+eat5en1i
+e4at3er1
+eat5ie2
+e3a2t2i1f2
+e3a4t2i2ff
+e3a2t2i1fi
+e3a2t4i2fl2
+eat1it4
+eat4it3u
+e2a2tr2
+e3at1ri
+e4a2tu
+e2au3
+e2av
+eav5i
+eavi4e2
+ea1vo
+eav5o4u2
+e2az2
+eaz5i
+e1b
+eba2r4
+e2b2b2
+eb2e4
+e1bel
+e4bel.
+e4be4ls
+e2ben
+eb5et
+eb2i
+e5b1il
+e4bin
+e4b2is
+e4bl2
+ebo2
+e4bos
+eb2ot
+ebo1t3o
+e2br4
+eb1ra
+e2b2t
+e4b4uc
+ebus5i
+ec2a
+ec3ade
+ecad5en
+ec1al
+ec2al5e
+e5c2a2m
+e1c2ap
+e4ca1po
+ec3at
+ec5a2th
+e1ce
+e1cen2
+e3cent
+ecen2t5o
+e2ch
+ech3i
+e1c2i2
+e4cib
+ec2i4f
+ec2i4ff
+ec2i4fi4
+ec4i4fl2
+ec2ip
+ecip5i
+e1cl2
+ec3l2ip
+e1c2o2
+econ1
+eco4n3s2
+econ4s2c2
+econ3s2t2
+econstit5
+e2c3or1a
+e4c5oro
+ecr2
+ec3rat
+ec2r2e
+ecrea4
+e4c5rea2n
+e4crem
+ec1ro
+e2ct
+ec2ta
+ect5ati
+ec1te
+ec4ter1
+ect2i4c
+ec4tit
+ec1tu
+ec4t5us
+ec1ul
+e5c2ul2i
+2ed
+eda2n
+e5da4n2s
+e2d1at
+ede2
+2e4d2ed
+e5de1h2
+e4d2ele
+edes3t2
+e1de1t
+ede3te
+edeter5
+e3dev
+e5dew
+ed4g
+e1d2i1a2
+edi4a4ls
+ed5i4c1al
+ed5i4c5s4
+ed2ig
+edi1ge
+ediges4
+ed5i1gr2
+ed3im2e
+ed1it
+e1di2v2
+ediv5i2d
+e2dl4
+ed3li
+e1do
+ed2or4
+e4do4x
+edr2
+ed1ro
+e1du
+e3d4uc
+edu5cer1
+e2dul
+ed3u1lo
+e4d5u4r
+ee4ce
+e2ed
+eede2
+eed3er1
+ee4do
+ee2f
+ee2ff
+ee2fi
+ee2fl2
+ee5g
+ee1i
+ee2l1i
+ee2m
+ee1m2e4
+eem5er1
+eem3i
+eep1
+ee4pa
+eer1
+eer3in
+eer4in4e
+eesi4
+ee3to
+e1f
+e2ff
+e1fi
+efl2
+e1f2a
+efa2ct2
+efac2t5o
+efal4
+efer1
+ef2er2e
+ef5er3ee
+e2fin
+ef2in1i
+ef5ini4te
+e2fin
+efin1i
+efini4te
+e4fite
+e4fite
+ef4l2
+e1fo
+ef2or2e
+efor5est2
+2e3fu
+e4fug
+efut5a
+e1gel3
+e1g2i
+eg2i5a2
+e4gib
+e2gl2
+e3gl2a
+eg3le
+e2g1m4
+eg4mi
+e2gn2
+eg1n1a
+eg5n1ab
+e5g4on
+e2gr2
+e5gu4r
+e1h2
+e5ho
+e2h5s
+eh2y2
+ehy1d4
+ehyd5r2
+ei2d4
+5ei1do
+4e2i1f
+4e2i2ff
+4e2i1fi
+4e4i2fl2
+e2ig2
+ei2gn2
+eig1n1i
+e5ignit
+e4in.
+e3inc
+e2ine
+e1i4ng
+e2in5i
+ei4n1s2
+e4ins.
+e2i4p4
+e2ir
+eir3o
+4eis
+eis3i
+eit5er1
+e2ith4
+e2iv
+eiv3er1
+e2iz
+e1j
+eju1di
+ejudic4
+ek3en
+ek5is4
+ek4l2
+el2a
+e4l4ac
+e5lad
+el5age
+el2a2m4
+ela2n
+el5anc
+el4as
+elast3
+ela4te
+e4la2t2es
+ela2t1iv
+el5at3ive
+el1c2
+el2ch
+elch4e2
+elch5er1
+eld3er1
+2ele
+elea2
+elea5g
+4e4l2ed
+el5en1i
+el3en3o
+ele3o
+ele5ph1
+e2l1er1
+e1les
+e5le4s4s
+elest2
+e4leste2
+e1let
+el3et3o
+e2lev
+el3ev3a
+ele3vi
+el5ex
+e4l3ica4
+e1lie2
+eli1er1
+eli4e2r1s2
+e3lim
+el3i4ng
+el2io2
+eli3on
+e4l1i4s
+el1it
+el2i2t4t4
+e3l4iv
+ell2
+el1l2a
+el4l1ab
+el1li
+ell5iz
+e3l2oa2
+e3l2oc
+elo5c2a
+eloc3u
+elo4di
+e2l2o1g
+el2om
+elo1ma
+elo3mat
+elom5ate
+el5op.
+el5o2ps2
+elp5in
+e4ls
+el3so
+el5tie2
+e1lu
+elu4m
+elus4
+elv4
+e2ly
+e5ly1i
+3elyt
+e2m3ago4
+e1ma2n
+em3an3a
+e1ma2r4
+emar1c2
+emarc5a
+em5at1iz
+ema2to
+em2at5ol
+e2m1b
+em5b2i
+e1m2e4
+e4mee
+e4mel
+e3me2m
+emer1
+e4m3era
+em5ero
+e1me2t
+emet4e
+em1ic
+emi1c2i2
+em4icis
+e4mie2
+e2m2ig
+emi2gr2
+emig5ra
+em3in1a
+em5i4ng
+e3m2i3o2
+em3i2s1m4
+emi2t
+e4mit1a
+e4m2i1u2
+e2m1m2
+em4mae
+e4m1n2
+emn1i
+4emnit
+e1mo
+emo3b2i
+emod1
+emo2d4u
+e2m2o1g
+e4m2oi
+em3o1lo
+em5o1m
+4em4on
+e3mon1i
+emo4no
+emon5ol
+e2mor
+emor1i
+em5oris
+em3o4r1r4
+em2ot
+e4mot1ic
+e5m2oz
+em1p
+em3pa
+em1pa5r
+empara5
+em5pes
+emp2l2
+4emp4li.
+em1pr2
+em4pr2e
+em3um
+e5mut
+en1a
+en3a2c
+e4nal
+e1n2a2m
+en3a1m3o
+ena2n
+en4an1n4
+e2n3a2r
+en2as
+en3as.
+en2a2tu
+enatu4r
+ena5tur2e
+3en1cep
+en1c2i2
+en3cil
+en4cile
+en2c1t4
+2e4nd
+en2da
+en4d5al
+ende2
+en1d2ed
+en4de2dl4
+endr2
+end5rit
+4ene
+e2n2e5d
+en3ee
+enell2
+e5nelle
+e5ne2p
+e2n1er1
+en2er2e
+e5nereo
+ener5v2
+en5esi
+e3ne4ss
+en1et
+en4e2t2t4
+e2n3eu
+e3n4ew
+e4ng
+en3g2i
+en1i
+en3ic
+en2ie2
+en5i1er1
+en2i2g
+en3i1g3r2
+en5in
+enit5u
+e4n3k
+en1o
+en3oi
+en2o2m
+en2ot
+en3oty
+enov3
+e4n2s
+ens5a2l
+en3sp
+en3su
+en4s4u2m
+en4sus
+ent3a2r
+en1te
+enter1
+en4te2r1s2
+ent2i
+en5t2i2a2
+en1t2i1f2
+en4ti3fy
+en4t2i2ff
+en1t2i1fi
+en1t4i2fl2
+en2t2o
+en1tr2
+en4tri
+ent5rin
+en1tu
+ent5up
+en4tus
+4en2u
+en3u1a2
+en3uf2
+en3u2ff
+en3ufi
+en3u3fl2
+en3u4r
+en5ut
+en5w
+5enwa
+eo3b
+e2oc
+e4o2ch
+e4oda
+eof2
+eo2ff
+eofi
+eofl2
+eo2l
+eol2a
+eola2r
+eol5ar.
+eol5at
+eo1lo
+eo1l2o1g
+eolo3g2i4
+e5olu
+e2o3m
+eon4a
+e3ont
+e1o2p4t2
+e1or1
+eor4de
+e2or3e
+eor5o
+eo1s2
+e2ot
+eo4t2o
+e1pa
+ep4al
+e1pa2r
+ep5ar1c2
+epa4t
+ep2e4nd
+epende2
+epend5en
+eper1
+ep5ert2
+e3pet
+e4pete
+epe2ti
+epe5ti1t2io2
+e4p5ex
+eph1
+eph4i
+e2p2ig
+ep2l2
+e5pl2a
+ep3lic
+e1po
+epol3a
+epol3i
+epol2it5
+e1pr2
+epr2e
+ep3re1h2
+ep3res5e
+e4p5ri4m
+e4p5rob5
+e2pt2
+ept3or
+e1p4u
+e3pu4r5
+e4puta
+equ4
+eq2ui2
+equin4
+equ2i5no
+er1
+er2a1c2i2
+era4cie2
+er2ad
+era4do
+era4g
+era4l
+er2ap
+er3aph
+er3ap1i
+er3a2p4y
+4era4ti.
+4era4tim
+er5a2tu
+er1b
+er2ba
+er3bat
+er3b2e
+erbo2
+er2b5os
+2er1c2
+er3ch
+er3cl2
+2erd
+er2d5a2r
+er4di4e2
+2er2e
+erea4
+er3eal
+4e2r4ed
+er3e2gr2
+er5el.
+er5ell2
+er5e4ls
+e4re1m2e4
+er3en
+5er2e4nd
+er4en4e2
+ere5o2l
+e3re1q
+er3er1
+ere4s
+er5ese
+er3esi
+erest2
+er5este2
+er5e2sti
+eres5t4r2
+eret4
+er3et.
+er3e4t1s
+er3e2t2t4
+ere4v
+er3ex
+er1g2
+er1g2i
+ergi3v
+er3gl2
+er2i1a2
+er3ia.
+er4ia2n
+eri1c2i2
+eri4ci2d
+5er5ick1
+er2i2d
+er3ie2
+er2i1f
+er3i2ff
+er2i2ff
+er2i1fi
+er4i2fl2
+erim2e
+er4i1me2t
+er3in
+eri4n1a
+er2i3o2
+eri4on
+er3io4u2
+er4i2s4c2
+erist2
+er4i5sta
+4eri2t
+e3r2i4v
+er5iz
+4er1j
+er2k4
+er3m2e
+er1mo
+er4m2oi
+er2n2
+ern1a
+er3na2c
+5ernacl2
+er5nal1is
+er1n3er1
+ern1i
+er1n3is
+ern3it
+4e4ro.
+e4r2oi
+er3o2i4d3
+er4o5is
+ero5st2
+erpe2
+er3pent
+erpent2i
+erpent5in
+e4r1r4
+err2e
+erre2l
+erre5l2a
+er4rep
+e2r1s2
+er2sin
+er5s2ine
+ert2
+er5t4ed
+er4ter1
+ert5er.
+ert5e2r1s2
+er4th2i
+er2t5iz
+2eru
+eru4b
+er2u5d
+erun1
+eru4n2d5
+er1v2
+er4vi4l
+er1w
+5erw2au2
+e2r2y
+ery2t
+eryth3
+2er2z
+4es.
+es5a4m
+es5a2n
+e2sc2
+es1ca
+es5ca2n
+es2ch2
+es5che2
+es1c2i2
+esci5e2
+e2s1cu
+escut5
+e3se2a2
+e3se2ct
+e5see
+e5seg5
+ese4l
+es5enc
+es2h
+e3sh4a2
+e1shi
+e5shu4
+es2i1a2
+esi4a2n
+es5ic.
+e5s2ick1
+es4i2d
+esi4de
+es5id3en
+esi5d2i1u2
+esie2
+es5ies
+es3im
+e2s3in
+e1s2io4
+e5sion
+e4s1it
+es4it.
+es4i4t1s
+es2k2
+e3sk1in
+e2s1m4
+e3s4mi
+e2s4od
+es2ol
+es3ol3a
+es3ol3u
+es3on1a
+es2o3p
+e1sor
+es3per3
+esp2ir
+es5pir1a
+es5pit
+es4p2l2
+esple2
+es3plen5
+es2po
+es5p2ot
+e5s2pr2
+e4ss
+es1sa
+es4s3a2n
+essa2r5
+ess5ee
+es4sil
+es2so
+est2
+es2t1a4b2
+est3a2n
+e5sta2r
+es5t2au2
+e2sti
+es1t2i1f2
+est5ifi
+es1t2i1fi
+es4t2i2ff
+es1t4i2fl2
+est2ig
+estig1at
+est5igati
+e3st2oc
+es5t2oo
+est4r2
+es1tu
+es4tud4
+e1su
+e2s3ul
+es4u4r5
+et2a
+et3al.
+etall2
+etal1li
+et5all1is
+et3al5o4
+et2a2m
+eta5m2e
+et2a3p
+eta2r
+et3ar1i
+et5a2r2y
+et4as
+et3ate
+et3ati
+et5ay
+et3eer1
+ete2l
+e1tell2
+etel1l5i
+et2e4nd
+etende2
+etend5er1
+et5en1i
+eter2
+et3er3a
+e1teri
+et5er3i1a2
+e3tex4
+e2th1
+eth2y
+ethy2l3
+2e1t2i2a2
+et1ic
+e3t2ic1u
+et2ig
+e3t4i4g2i
+e5tim
+et3in
+eti4n1a
+e3t2ir
+et5i2t3iv
+e3t2i4u2
+et5o1lo
+et2om
+etom2e
+eto1me2t
+e5tomet1e
+e2ton
+et3on1a
+et1or
+etor3i
+etr2
+etra5g
+4e4tral
+etr2a5m
+et4ra2n
+etr2e
+et5re4s4s
+et1ri
+et4r2i1a2
+et2r2ib
+etrib5a
+e4trim
+et1ro
+e2t2t4
+et3ter1
+etud4
+et3ud4e
+e4tum
+et1w
+et4we
+e2t5z2
+eu3d2i3o5
+eue4
+euk5
+4eum
+eu4r
+e3ur1g2
+eur5i
+eus4
+eu5ten
+eu3ter1
+eut3i
+e2v3ab
+ev4abi
+e1v2al5e
+ev2a2p3
+ev3ast2
+ev3at
+e2vel
+ev5eli
+eve4n
+ever1
+ev5erat
+e4v4er2e4
+ev5er3en
+ever4er1
+e4veri
+e4ves
+e1v2i1a2
+e4vi1ab
+e2vic2
+e5vi2ct2
+evic1tu4
+evi2d3
+ev5ig
+evi4l
+ev4ile
+ev5is2h
+evi2s5in
+evis5o
+e4v2i1u2
+e1vo
+ev2oc3
+evo2l
+evol5e
+evol5ute
+evu4
+e1wa
+e4wag
+e5w4ay
+ew1er1
+e3wh2
+ewi2
+ew5ie2
+ew1in
+ew5is2h
+e3wit
+e1wr
+ex1i
+ex5i4c
+ex1o
+exo4n
+ex4on.
+1ex3p
+4ey.
+ey1a2
+ey4as
+eyl4
+e4y3s2
+ezer1
+ez5er.
+ez5e2r1s2
+ez1i
+ez5ie2
+1f2a
+2ff
+ff2a
+2fa.
+ffa.
+f1ab
+fab4i
+ff1ab
+ffab4i
+fa3ce2t
+ffa3ce2t
+fa2ct2
+ffa2ct2
+fa2c3u
+ffa2c3u
+2f3ag
+ff3ag
+fall2
+fal1li
+fal2l5in
+ffall2
+ffal1li
+ffal2l5in
+5falo
+ffalo
+fa5lon
+ffa5lon
+fa4ls
+fals2i1f4
+fals5ifie2
+fals2i1fi
+fals5ifie2
+ffa4ls
+ffals2i1fi
+ffals5ifie2
+ffals2i1f4
+fals2i2ff
+2ffals2i2ff
+fals4i2fl2
+ffals4i2fl2
+fa2n
+4fan3a
+ffa2n
+ffan3a
+fan2t2a
+fantas3i
+fan5tas1iz
+ffan2t2a
+ffantas3i
+ffan5tas1iz
+fant3i
+ffant3i
+5fa2r
+ffa2r
+far3i
+ffar3i
+5faw
+ffaw
+4f5b
+ff5b
+2f5d
+ff5d
+2fe.
+ffe
+ffe.
+fea2
+3feas
+ffea2
+ffeas
+fe4a3tu
+ffe4a3tu
+fe1b
+fe2b5r4
+ffe1b
+ffe2b5r4
+3fec
+ffec
+2f2ed1
+ff2ed1
+5fei
+ffei
+fe1li
+ffe1li
+fem3i
+ffem3i
+femin5
+ffemin5
+f2e4nd
+fende2
+fend5er1
+ff2e4nd
+ffende2
+ffend5er1
+f5en1i
+ff5en1i
+fer1
+f2er2e
+4f4e2r4ed
+ffer1
+ff2er2e
+ff4e2r4ed
+fer3ee
+ffer3ee
+3fero
+ffero
+fe5r2oc
+ffe5r2oc
+fer5om
+ffer5om
+3fe4r1r4
+ffe4r1r4
+fer3v2
+ffer3v2
+2f4es.
+ff4es.
+fe4ss
+fes2s3o
+ffe4ss
+ffes2s3o
+fest2
+fest3a
+ffest2
+ffest3a
+fe2st5i
+ffe2st5i
+fe4t
+ffe4t
+fet2a
+fet4al
+ffet2a
+ffet4al
+fet4in
+ffet4in
+fet4o
+ffet4o
+3feu
+ffeu
+fever1
+fe5veri
+ffever1
+ffe5veri
+2ff
+f1fe
+f3fec
+ffe2ct
+ffec4te
+ffe2ct
+ffec4te
+f5fe4t
+f1fi
+ffi
+f5f2i1a2
+ffi1a2
+f3fic
+ffic
+f5fie2
+ffie2
+f1fi2l3
+ffi2l3
+f2f3is
+ffis
+ffl2
+ff4le
+ffl2
+ffle
+ff3lin4
+fflin4
+f1fo
+f3f2oc3
+ffo
+ff2oc
+ffo2n
+ffon1i4
+ffo2n
+ffon1i4
+ff2or3e
+ff2or2e
+f3fr2
+ffr2
+ffra2n
+ffran2ch5
+ffra2n
+ffran2ch5
+4f5h
+ff5h
+f2i1a2
+fia2n
+fi5ance
+fi1a2
+fia2n
+fi5ance
+f4ib5u
+fibu
+4fic.
+4fic.
+4fi4c1al
+fi4c1al
+3fi1c2i2
+fi1c2i2
+4fi4c5s4
+4fi4c5s4
+fi2d
+fi5del
+fi2d
+fi5del
+fid3en
+fid3en
+fie2
+fiel4
+fie2
+fiel4
+fi1er1
+fi2er4c2
+fi1er1
+fi2er4c2
+f2ig
+fi2gh
+figh2t5
+fig
+fi2gh
+figh2t
+1fi2l
+1fi2l
+2fin
+2fin
+fin2a
+fin1a
+fi3na4l
+fina4l
+f2i4nd3
+fi4nd
+fin2e
+fin2e
+f1i4ng
+fi4ng
+f2in1i
+5finin
+fin1i
+5finin
+f2in1n4
+fin4n1i
+fin1n4
+fin4n1i
+f2ir
+fir2m1
+fir
+fir2m1
+f3it1a
+fit1a
+f5it3ee
+fit3ee
+fl2
+fl2
+3fl2a
+fl2a
+fle2s
+fle2s
+f3lica
+flica
+flin4
+flin4
+3flo
+3flo
+flor1i
+flo5ric
+flor1i
+flo5ric
+3flu
+3flu
+flu1m4i
+flu1m4i
+1fo
+4fo.
+ffo.
+3f2oc
+fo2e
+ffo2e
+fo1et
+foet3i4
+ffo1et
+ffoet3i4
+fo1l4i
+ffo1l4i
+fo4li2e2
+ffo4li2e2
+f2om
+fom2e
+fo1men
+fomen4t4
+ff2om
+ffom2e
+ffo1men
+ffomen4t4
+fo2n
+fo4nd
+fon4de2
+ffo4nd
+ffon4de2
+3f2oo
+ff2oo
+for1a
+fo5r2a2m4
+ffor1a
+ffo5r2a2m4
+for5ay
+ffor5ay
+for5b
+ffor5b
+for4di
+ffor4di
+f2or2e
+fore3t
+ffore3t
+5f2orm
+ff2orm
+for4m3a
+ffor4m3a
+f2ort2
+for1tu
+for3tun1
+fortu5n4a4
+ff2ort2
+ffor1tu
+ffor3tun1
+ffortu5n4a4
+fo3v
+ffo3v
+1fr2
+frag5a
+ffrag5a
+fra2n
+fran2t4
+ffran2t4
+fra2r4
+ffra2r4
+fra2tc2
+frat2ch4
+ffra2tc2
+ffrat2ch4
+fr2e
+fre4s
+ffr2e
+ffre4s
+frost2
+fros4t5i
+ffrost2
+ffros4t5i
+fr4uc4
+ffr4uc4
+2f3s
+ff3s
+fs4p
+ffs4p
+2ft
+fft
+f1t4ed
+ff1t4ed
+fter1
+f4ter.
+ffter1
+ff4ter.
+f2t5es
+ff2t5es
+ftie2
+ft2i4et
+fftie2
+fft2i4et
+ft1in
+ft4ine
+fft1in
+fft4ine
+3fu
+ffu
+4fu.
+ffu.
+f4u4c
+ff4u4c
+fuell2
+fuel5li
+ffuell2
+ffuel5li
+fug4a
+ffug4a
+fu1mi
+fu4min
+ffu1mi
+ffu4min
+fun1
+fu4n2g
+ffun1
+ffu4n2g
+fu4r
+fur2e
+4fu2r4ed
+ffu4r
+ffur2e
+ffu2r4ed
+fur3n2
+ffur3n2
+fu3sil5
+ffu3sil5
+fus5o
+ffus5o
+fut2i
+fu5til
+ffut2i
+ffu5til
+4ga.
+g2a1c2i2
+ga4cie2
+gadi4
+ga2do
+ga4d4os
+3gag
+3g2ai2
+3g2ale
+ga5len
+gal2i4a2
+gall2
+gal5ler1
+3galo
+g2a2m
+ga2m1b
+gam4bl2
+ga2n
+gan2a
+gan5at
+4ga2n2ed
+ga4ng
+gang5er1
+g5ant.
+gan4t4r2
+g5an4t1s
+ga2r
+g5ar1c2
+g4ar2e
+gar3ee
+gar1i
+gar1iz
+gariz4a1
+ga5r2ot
+gar5p
+5g2a4r1r4
+1ga4s
+gas5i
+g2as3o
+gas2ol5
+ga4ss2
+gas2s5in
+gast2
+gast3r2
+g1at
+g4at.
+ga2t5iv
+ga2to
+g4a2to.
+g4atos4
+g4a2t1t4
+g2a2t5u
+g2au2
+gaud5
+g2az2
+ga5z1a1
+g1b
+g5d4
+2ge.
+gea2
+5geal
+3gea2n
+2g2e4d
+3gedi
+5ge4d1n2
+4ge1f
+4ge2ff
+4ge1fi
+4ge1fl2
+1gel
+4g2ele
+ge4li
+gel4in
+gell2
+gel5li
+ge4lu
+2ge2ly
+gem3i
+5ge1mo
+3gen
+g2e4nd
+gen4du
+gen1i
+gen5it
+gen3o
+gen5t2i
+ge4o
+geo2l
+geo3lo
+ger1
+4g2er2e
+3germ4
+2g4es.
+5ge4ss
+gest2
+gest5at
+3get
+get3a
+2g1f
+2g2ff
+2g1fi
+2g1fl2
+2g1g
+gg4a
+g2ge
+g2g2e4d
+g5ge2dl4
+g3ger1
+g4g2er2e
+g5ger3er1
+g1g2i
+gg2i4a5
+g2gl2
+g3gli
+g3glu3
+g5g2ly
+g1gr2
+ggr2av3
+g4g4ro
+2gh
+gha2
+g5h2ai2
+ghe2
+gh5en1i
+g3ho
+g4hos
+gh2t
+1g2i
+4gi.
+g2i1a2
+gi4all2
+gi4at
+3gib
+g2i5c2o2
+g2i4g
+gi5ga2n
+gi4ng
+1g4in5g2i
+3g2io2
+gi4or
+gi4ot
+5g2ip
+gi5pa
+g4i4s
+5gis.
+gi2t1
+5gitu
+giv5en.
+2gl2
+gl2a
+g3la2r
+gl4as
+gla4ss2
+5glass.
+glec4
+3g2ler1
+g1let
+g4leto
+g4letr2
+g4ley
+gl2io2
+gli5on
+g5l1is4
+3glo
+4g5lod
+gl2om3
+4glop
+3glu
+glu5te
+glu5t2i
+g2ly
+3gl2yp2
+2g1m4
+2gn2
+g1n1a
+g4n1ab
+g5nate
+5gn4a2th
+g5nati4
+gn2a2tu
+gna5tu4r
+g2n2ed
+gn5e2dl4
+gn5ee
+gn3er1
+g1n1i
+g4n2i1a2
+g2n3in
+gn4in.
+g4n2i2o2
+g2no
+5gnor1i
+gno4s
+2go.
+5g2oa2
+3g2oc
+5god
+3goe
+go4et
+g2o1g
+go4ge
+go1gr2
+4go3gr2a2m
+g2oi
+g5o2i4d
+g4o3is
+g2om
+go2m2e
+5gon1n4
+go5n2om
+3g2oo
+goph4
+4gor.
+5gor1g2
+4go2r1s2
+g4o2r2y
+3gos
+gos4t2
+2go4u2
+gou4r
+gour4i
+g1ous
+gov1
+g3p
+1gr2
+gr1ab4
+3gr2a2m
+4gram2e
+gr2a2p
+g4r2e
+gril4
+gri2m3a
+g4ro
+gr2o4g
+g5ron
+gr2op4
+3gru
+gru3en
+gr2u5i2
+gru2m4b
+2g1s
+gs4c2
+gs4t2
+g4sti
+gthe2
+gth5en1i
+g5to
+g4u2a2
+gu5ab
+5gua2n
+gua2r
+3guar2d
+g5uat
+2gue
+5gueu
+g2ui2
+5guit4
+gui5t1a
+gu2ma
+gu4mi
+3gun1
+gu4r
+gur1a
+g4uras5
+gur2e
+g4u2r4ed
+gur4n2
+gur4u
+4gu2r2y
+g4ust2
+gust5a
+2g1w
+2gy
+g4y2b
+5gym
+3gyn1
+gyn5o
+g5z2
+ha2
+4ha.
+h4ac
+hadi4e2
+ha2d1in
+had4in4e
+hae3o
+ha2g2e4d5
+ha1g2i
+ha3g2i3o2
+hag5u
+h2ai2
+ha5ic
+hais4
+h2ak
+hak1in
+hak4ine
+hal2a
+hala2n
+hal5ant
+h2a4m
+ha1m5a2n
+ha2n
+han1cr2
+han4cro
+ha4n2g
+h1an1i4
+h5an1iz
+han4t
+han2t3a
+h2ap
+ha4pe
+hap3l2
+ha2r
+har1a
+har5b
+har4d
+har5die2
+har1g2
+har2ge4
+har1i
+ha5ri2s1m4
+har3o
+hart2
+har4t4ed
+har4ti
+hast2
+has4te2
+ha2t5o
+h2au2
+hau2gh
+haugh2t5
+h2av
+ha2vel4
+haver1
+have2r1s2
+hav5ersi
+ha1v5o
+h1b
+h1c
+h1d
+hdea2
+hdeac5
+h1du4
+he2
+4he.
+h2ea2
+1head
+3hea2r
+hear1c2
+hear2ch4
+heas4t5
+he2av
+heav5en
+he2c3t4
+h2ed
+hede2
+he5del
+he3do
+heek4
+h4ei
+h4e3is
+hel2a
+he5lat
+h5elin
+he3l2io2
+he5l2i1u2
+hell2
+hel4li
+h3el3o
+hem1a
+he1m2e4
+he3men
+hemis4
+he1mo
+he5m4op
+hem4p
+h2e4nd
+hende5
+he3or1
+hep1
+her1
+h1er.
+her4as2
+her2b
+her2b3a
+herb3i
+h2er2e
+here3a4
+here3o
+heret4
+h5er3e2t2t4
+h5erh2
+her2i1a2
+her5ial
+her3in
+h5erin4e
+h1erl
+her5om
+h4eron
+h1e2r1s2
+her1w
+h5erwa
+hest2
+hes3t4r2
+het1
+h4et3a
+het3i
+he2t2t4
+het4t4ed
+heu2
+h4eum3
+heu1ma
+heumat5
+he4v4
+hev5i
+hex5o
+h1f
+h2ff
+h1fi
+h1fl2
+h5h
+2hi.
+h2i1a2
+hi4a2r
+h1ic
+hi3c4a2n
+hi1c2i2
+h4i4cin
+h4icl2
+hie2
+h5ie.
+h1i1er1
+h4i4e2r1s2
+h1ies
+h2i1f
+h3ifi4
+h2i1fi
+h2i2ff
+h4i2fl2
+h3i3fy
+h2ig
+hig4o
+h2ik2
+hi5ka
+hi4l
+hi5ma4
+him2e
+hi5mer1
+hi2mo
+himos4
+h1in
+h2i4n4d
+h2in2e
+h2in1i
+hi5n2ie2
+h5in1iz
+h2ino
+hi5nop
+h2i4n1s2
+h2io2
+h4i1ol
+hio5lo
+h4i1or
+h2i2p
+hip3l2
+h4ir
+hi4r4r4
+hir3r5i
+hit4a
+h2iv5a
+4hl
+h3l2a
+h1le
+h3let
+h1l2i
+hl2i4a2
+2h1m
+h1ma2n
+hman1i
+h4man3ic4
+hm1ic
+h5mica
+2h1n2
+hn2oc
+hn4o3ce2
+hno1cen5
+4ho.
+h2oa2
+ho3a2n
+h2oc
+ho4c2o2
+ho2do
+ho3don
+ho5du
+ho5ep5
+hol2a
+hol3a2r
+hold1
+hol1is4
+hol4is.
+ho2ly
+ho5l4y2s
+h2om
+ho1ma
+ho4mag
+hom1i
+hom5in
+h2o4n
+ho2ne
+hon5em
+ho5neu
+hon3ey
+ho4ng
+hon2g3i
+hon1i
+ho5n2io2
+hon1o
+h2oo
+1hood
+hoo5r
+h4ope
+ho2p5r2
+h1o2p1t2
+h4op4te
+h2or2e
+hor5et
+h4or2n2
+horn5i
+ho5r2o1g
+h2ort2
+hort5h
+hosi4
+h2ot
+ho1t2o
+ho4ton
+h2o4u2
+3h2ouse3
+4h1p
+2hr
+hras2
+hr2as2e
+hras5eo
+hr2e4
+hre5ma
+hr5er1
+hres4
+hri4
+hrill2
+hril1li
+hril2l5in
+hrim4
+h5rit
+h3r2od
+hr2om
+hrom4i
+h2r2y4
+h3rym3
+2h1s
+hsi4
+h4s2k2
+ht5ag
+ht5ee
+ht3en.
+h4t4ene
+ht5e2n1er1
+ht3en1i
+ht3e4n2s
+ht5e2o
+h2t5es
+h2t3f
+ht1fo
+ht4f2oo
+h2t3ff
+h2t3fi
+h2t3fl2
+h1th
+ht1in
+ht4ine
+hu4g
+hu1ma
+hu4mat
+hum2e
+hu5mer1
+hu1mi
+hu4min
+hun1
+hun4c
+hu4n2k4
+hun4t
+hu4r
+hur3i
+hu3s2i1a2
+huz4
+h1w
+hwa2r
+h4wart2
+h2y
+hy2l
+hyle2
+hyl5en
+hy2m
+hyn4
+hy3o2
+hyol5i
+h2yp
+hy1pe
+hy3ph
+hyr4
+h4y2s
+hys1t2
+hys3te2
+hy4t
+2i1a2
+i1ab
+ia4bl2
+fi1ab
+fia4bl2
+iabo2
+iabol3i
+iab5ol1is4
+fiabo2
+fiabol3i
+fiab5ol1is4
+iab5ol1iz
+fiab5ol1iz
+i2a2ch
+fi2a2ch
+ia1c3o2
+fia1c3o2
+i2ac2r2
+fi2ac2r2
+ia5cri
+fia5cri
+ia5d4em
+fia5d4em
+i5ae
+fi5ae
+iaf4
+fiaf4
+ia2ff
+fia2ff
+iafi
+fiafi
+iafl2
+fiafl2
+i2ag4
+fi2ag4
+i4a3g1n2
+fi4a3g1n2
+i5a4g5o
+fi5a4g5o
+ia3gr2
+fia3gr2
+i3ah
+fi3ah
+i5ai2
+fi5ai2
+i2ale
+ia3lec
+iale2ct4
+fi2ale
+fia3lec
+fiale2ct4
+i3al1it
+fi3al1it
+iall2
+ial5li
+fiall2
+fial5li
+4ial1n4
+fial1n4
+i2a3lo
+fi2a3lo
+i2a5ly4
+fi2a5ly4
+i2a2m
+i5a2m1b
+fi2a2m
+fi5a2m1b
+ia3m2e
+fia3m2e
+ia2n
+ian2ch5
+fian2ch5
+i3ant
+fi3ant
+i2ap
+i5ape
+fi2ap
+fi5ape
+ia3ph
+fia3ph
+ia2r
+i2ard
+fia2r
+fi2ard
+iar1i
+4iarit
+fiar1i
+fiarit
+i3at
+fi3at
+i4a2th
+ia5the2
+fi4a2th
+fia5the2
+ia2to
+i5at2om
+fia2to
+fi5at2om
+i2a2t4u
+fi2a2t4u
+iatu4r
+iat3ur4a
+fiatu4r
+fiat3ur4a
+i3au2
+fi3au2
+i2av4
+fi2av4
+ib2e
+iber1
+ib3era
+fib2e
+fiber1
+fib3era
+ib1i
+fib1i
+i1b2i2o4
+fi1b2i2o4
+ibios4
+fibios4
+i2bl2
+ib5li
+fi2bl2
+fib5li
+4ibo2
+fibo2
+i4bon
+fi4bon
+ibor4
+fibor4
+i4bose
+fi4bose
+i5bo4u2
+fi5bo4u2
+ibr4
+ib1ri
+fibr4
+fib1ri
+4ibu
+ib3uta
+fib3uta
+ic3ac
+fic3ac
+ic5a2do
+fic5a2do
+i4c1al
+ic1a2n
+fic1a2n
+2i1ca2r
+fi1ca2r
+ic1c4
+iccu4
+fic1c4
+ficcu4
+4ice
+fice
+i5ceo
+fi5ceo
+4i2ch
+fi2ch
+ich4i
+fich4i
+ich1in
+ich5i4ng
+fich1in
+fich5i4ng
+i1cho
+ich5ol
+fi1cho
+fich5ol
+i1c2i2
+4icin
+ficin
+i5c2io2
+fi5c2io2
+2ick1
+fick1
+icl2
+ic4lo
+ficl2
+fic4lo
+2i2c2o2
+fi2c2o2
+i3c2o3c
+fi3c2o3c
+ic5ol3a
+fic5ol3a
+icon1
+icon3o
+ficon1
+ficon3o
+i5cop
+fi5cop
+ic2ot
+i5coty
+icoty3le5
+fic2ot
+fi5coty
+ficoty3le5
+2i1cr2
+fi1cr2
+i4cri
+fi4cri
+i4cru
+fi4cru
+i4c2r2y2
+fi4c2r2y2
+i2ct
+ic1te
+ict4ed
+ic4te2dl4
+fi2ct
+fic1te
+fict4ed
+fic4te2dl4
+ic4ter1
+fic4ter1
+ict5ic
+fict5ic
+2icu
+ficu
+icu4lu
+ficu4lu
+ic3um
+fic3um
+i5cun4
+fi5cun4
+i5cut
+fi5cut
+2i1cy
+fi1cy
+i2d
+id1a
+fid1a
+i5d4ay
+fi5d4ay
+i1d4e4m
+fi1d4e4m
+id3enc
+fid3enc
+ider1
+id3era
+fider1
+fid3era
+i3derm5
+fi3derm5
+i3d2icu
+fi3d2icu
+id3i1f
+fid3i1f
+id3i2ff
+fid3i2ff
+id3i1fi
+fid3i1fi
+id4i2fl2
+fid4i2fl2
+i5d2ig
+fi5d2ig
+i5dil4
+fi5dil4
+i3dim
+fi3dim
+i2d1in
+idin4e
+id4ine4s
+fi2d1in
+fidin4e
+fid4ine4s
+i3d2i1o2
+idios4
+fi3d2i1o2
+fidios4
+id2ir4
+fid2ir4
+id1i4s4
+fid1i4s4
+id4ist2
+fid4ist2
+2i4d1it
+fi4d1it
+i1di4v2
+fi1di4v2
+i2dl4
+id3li
+fi2dl4
+fid3li
+i1do
+id3ol
+fi1do
+fid3ol
+idol3a
+fidol3a
+id2om
+4idom1i
+fid2om
+fidom1i
+id3ow
+fid3ow
+4idr2
+fidr2
+id5ri
+fid5ri
+i1du
+id3ul
+fi1du
+fid3ul
+ie2
+4iec
+fiec
+2ieg2
+fieg2
+ie3ga
+fie3ga
+ie5i
+fie5i
+i5ell2
+fi5ell2
+4iem
+fiem
+2i1en
+fi1en
+i2e4n2d
+fi2e4n2d
+i1er1
+i2er2e
+i3ere4s
+fi2er2e
+fi3ere4s
+i2eri
+fi2eri
+ier3i4n
+fier3i4n
+4ier2n2
+fier2n2
+ier2o
+fier2o
+i4ert2
+fi4ert2
+i3e2sc2
+fi3e2sc2
+ies3e4l
+fies3e4l
+i1es2t2
+fi1es2t2
+i3e4st.
+fi3e4st.
+2i1et
+fi1et
+i4et.
+fi4et.
+ie2t3ie2
+fie2t3ie2
+4ieu
+fieu
+i5eut3i
+fi5eut3i
+iev3a
+fiev3a
+iev3er1
+fiev3er1
+ie1v3o
+fie1v3o
+2i1f
+fi1f
+i2ff
+fi2ff
+2i1fi
+fi1fi
+4i2fl2
+fi2fl2
+i2fe
+fi2fe
+i2ff
+if4f2a
+iff2a
+fiff2a
+iffl2
+iff4le
+iff5ler1
+iffl2
+iffle
+iffler1
+fiffl2
+fiffle
+fiffler1
+i4f3ic.
+i4fic.
+fi4fic.
+i4fic3ac
+i4fic3ac
+fi4fic3ac
+i4f5i4c5s4
+i4fi4c5s4
+fi4fi4c5s4
+ifi4d
+ifi4d
+fifi4d
+i2fi4n
+i2fi4n
+fi2fi4n
+4i2fl2
+i3fo
+fi3fo
+i3f2oc5
+fi3f2oc5
+i2ft
+if5tee
+fi2ft
+fif5tee
+i3fy
+fi3fy
+2ig
+i3gad
+fi3gad
+iga2n
+ig3a4nd
+figa2n
+fig3a4nd
+3iga2r
+figa2r
+i1ge
+fi1ge
+i3ger1
+fi3ger1
+i2gh
+igh2t
+ighter1
+ight5er.
+fighter1
+fight5er.
+ight5e2r1s2
+fight5e2r1s2
+4i1g2i
+fi1g2i
+i2gn2
+ig1n1i
+ign5iz
+fi2gn2
+fig1n1i
+fign5iz
+ig2no
+ign2o5m
+fig2no
+fign2o5m
+i3gon
+fi3gon
+ig1or
+fig1or
+ig3ot
+fig3ot
+i1gr2
+ig4r2e
+i5gret
+fi1gr2
+fig4r2e
+fi5gret
+i4g5ro
+fi4g5ro
+ig2ui2
+i5gu5it4
+fig2ui2
+fi5gu5it4
+ig1u4r
+fig1u4r
+2i1h
+fi1h
+ih2y4
+fih2y4
+2ii
+fii
+i5in
+fi5in
+i1ja4
+fi1ja4
+4iju
+fiju
+2ik2
+fik2
+ik5a2n
+fik5a2n
+ike4b
+fike4b
+i2l3a
+fi2l3a
+ila4g
+fila4g
+ila4te
+ila5te2l
+fila4te
+fila5te2l
+i5l4ater1
+fi5l4ater1
+il4a4x
+fil4a4x
+il5dr2
+fil5dr2
+il4du
+fil4du
+i3len
+fi3len
+ilesi4
+filesi4
+il3f
+fil3f
+il3ff
+fil3ff
+il3fi
+fil3fi
+il3fl2
+fil3fl2
+il2i1a2
+il3ia.
+fil2i1a2
+fil3ia.
+il3ia2r
+fil3ia2r
+ili4arl
+fili4arl
+i3li1c2i2
+fi3li1c2i2
+ilie2
+i5l2i1en
+filie2
+fi5l2i1en
+ili4er1
+fili4er1
+il2i1f
+il4i4fe
+fil2i1f
+fil4i4fe
+il2i2ff
+fil2i2ff
+il2i1fi
+fil2i1fi
+il4i2fl2
+fil4i2fl2
+il4ific
+il4ific
+fil4ific
+il1in
+fil1in
+il4ine
+il5i2ne.
+fil4ine
+fil5i2ne.
+il2io2
+4ili3o4u2
+fil2io2
+fili3o4u2
+il2ip
+il5i4p1p2
+fil2ip
+fil5i4p1p2
+il5i1q
+fil5i1q
+il1it
+il4ite
+fil1it
+fil4ite
+ilit5u
+filit5u
+ilm2
+il4mo
+film2
+fil4mo
+i5lon
+fi5lon
+il3o4u2
+fil3o4u2
+ilth4
+filth4
+il2tr2
+fil2tr2
+4ilu
+filu
+il5ul
+fil5ul
+i5lum
+fi5lum
+ilu4r
+il5ur2e
+filu4r
+fil5ur2e
+il3v
+fil3v
+i2ly
+4ilym2
+fi2ly
+filym2
+ima4c
+fima4c
+im2ag
+fim2ag
+im3a4ge
+fim3a4ge
+im1al
+fim1al
+i2m5a2m
+fi2m5a2m
+i5m2as
+fi5m2as
+i4mat4ed
+fi4mat4ed
+i4ma2t3in
+fi4ma2t3in
+im2a2t5u
+fim2a2t5u
+im1i
+fim1i
+i3m2ie2
+fi3m2ie2
+im4ine
+fim4ine
+im5ino
+fim5ino
+i2m1m2
+imm2e
+im5me2s
+fi2m1m2
+fimm2e
+fim5me2s
+i2mo
+fi2mo
+i5m2o1g
+fi5m2o1g
+i3m4on
+fi3m4on
+im5oo
+fim5oo
+i3mos.
+fi3mos.
+im1p
+im3pa
+im1pa2r
+impar5a
+fim1p
+fim3pa
+fim1pa2r
+fimpar5a
+impar2ad5
+fimpar2ad5
+im2pi
+im5p2ie2
+fim2pi
+fim5p2ie2
+im3po
+imp2o2t5
+fim3po
+fimp2o2t5
+im5pr2
+fim5pr2
+im3pu4
+fim3pu4
+im1ul
+fim1ul
+im5um
+fim5um
+in1a
+in3ab
+fin3ab
+ina2c
+4inace
+fina2c
+finace
+in4a2do
+fin4a2do
+in5a2gl2
+fin5a2gl2
+in2ai2
+in3a2ir
+fin2ai2
+fin3a2ir
+ina4l
+4inal1it
+final1it
+i1n5a2m
+fi1n5a2m
+in3a2n
+fin3a2n
+in3ap
+fin3ap
+ina2r
+in4a2r2s2
+fina2r
+fin4a2r2s2
+in2as
+i3nas.
+fin2as
+fi3nas.
+4in2a2ta
+fin2a2ta
+ina2to
+inat1or5
+fina2to
+finat1or5
+in3au2
+fin3au2
+in4aw
+fin4aw
+2inc
+finc
+in2c1t
+inc1tu
+inc4t2u1a2
+fin2c1t
+finc1tu
+finc4t2u1a2
+2i4nd
+in2da
+in5da2r
+fin2da
+fin5da2r
+inde2
+inde5p
+finde2
+finde5p
+inde4s5
+finde4s5
+in1de3t
+fin1de3t
+indeter2
+indeterm5
+findeter2
+findeterm5
+indr2
+in5dro
+findr2
+fin5dro
+4inea2
+finea2
+4i2n2ed
+fi2n2ed
+in5ee
+fin5ee
+in5eg3a
+fin5eg3a
+4in5eo
+fin5eo
+ine4s
+fine4s
+in3esi
+fin3esi
+ine5te
+fine5te
+4ineu
+fineu
+inev5
+finev5
+in3f
+in1fi2l
+infilt5
+in3fi
+in1fi2l
+infilt5
+fin3fi
+fin1fi2l
+finfilt5
+fin3f
+in3ff
+fin3ff
+in3fl2
+fin3fl2
+in1fo4
+infol4
+fin1fo4
+finfol4
+4in3fu
+fin3fu
+i4ng
+4ing2a
+fing2a
+in5gal
+fin5gal
+4inge
+finge
+in2gh4
+ing5ha2
+fin2gh4
+fing5ha2
+4in2g2i
+fin2g2i
+in2gl2
+4ingle
+fin2gl2
+fingle
+4ingli
+fingli
+4in1go
+fin1go
+4in1gu
+fin1gu
+in2g3um
+fin2g3um
+2in1i
+in2i1a2
+in5ia.
+fin2i1a2
+fin5ia.
+4inic
+finic
+in4i1c2i2
+fin4i1c2i2
+in2io2
+in3ion
+fin2io2
+fin3ion
+in4itud
+fin4itud
+4i4n2k
+fi4n2k
+ink1in
+ink4ine
+fink1in
+fink4ine
+4i4n1l2
+fi4n1l2
+2in1n4
+2ino
+fino
+4i4no.
+fi4no.
+in3oi
+fin3oi
+i5nole
+fi5nole
+4inos
+finos
+i3n4os.
+fi3n4os.
+in5ose
+fin5ose
+in3osi
+fin3osi
+4in1q
+fin1q
+i4n1s2
+fi4n1s2
+ins2c2
+in4s2ch5
+fins2c2
+fin4s2ch5
+inse2
+finse2
+in5sec
+inse2ct5
+fin5sec
+finse2ct5
+insec5u
+finsec5u
+in3si
+fin3si
+5ins2k2
+fins2k2
+ins2ol
+insolv5
+fins2ol
+finsolv5
+in1te
+in4tee
+fin1te
+fin4tee
+in2t2es
+int5e4ss
+fin2t2es
+fint5e4ss
+int2i
+in3til
+fint2i
+fin3til
+in1tr2
+intr2e
+int5res
+fin1tr2
+fintr2e
+fint5res
+in1tu
+intu5m
+fin1tu
+fintu5m
+2in2u
+fin2u
+in5ul
+fin5ul
+in5um
+fin5um
+in3un1
+fin3un1
+in3u4r
+fin3u4r
+in3v2
+in1vo
+invo2l
+invol5u
+fin3v2
+fin1vo
+finvo2l
+finvol5u
+2io2
+fio2
+i2oa2
+io3a2ct4
+fi2oa2
+fio3a2ct4
+i1od
+fi1od
+iod3i4
+fiod3i4
+io2d5o
+fio2d5o
+ioe4
+fioe4
+i2o1g
+io3gr2
+fi2o1g
+fio3gr2
+4i1ol
+fi1ol
+i2om
+io3ma
+fi2om
+fio3ma
+io1ma2n
+i4oman1i
+fio1ma2n
+fi4oman1i
+io3mo
+fio3mo
+i5ope
+fi5ope
+io3ph
+fio3ph
+i5o1po
+fi5o1po
+io2p4s2
+fio2p4s2
+i1or
+fi1or
+ior1a
+ior2a4m4
+fior1a
+fior2a4m4
+4i2or2e
+fi2or2e
+ior1i
+4iorit
+fior1i
+fiorit
+5ior1iz
+fior1iz
+4iorl
+fiorl
+ior4n2
+fior4n2
+io3sc2
+fio3sc2
+i3ose
+fi3ose
+i3osi
+fi3osi
+i4oso
+fi4oso
+iost2
+i4o5sta
+fiost2
+fi4o5sta
+i3ot
+fi3ot
+iot4a
+fiot4a
+i4o5th
+fi4o5th
+iot5ic
+fiot5ic
+i4o5tr2
+fi4o5tr2
+i4oty
+fi4oty
+io4u2
+iou4r
+i4our.
+fio4u2
+fiou4r
+fi4our.
+i4ou2r2s2
+fi4ou2r2s2
+i5o4x
+fi5o4x
+2ip
+fip
+ip3al
+fip3al
+ip2ap4
+fip2ap4
+i1pa2r
+ipar3o
+fi1pa2r
+fipar3o
+ipart2
+ipart5ite
+fipart2
+fipart5ite
+ip1at
+fip1at
+i3p2e4nd
+fi3p2e4nd
+i1ph2e4
+fi1ph2e4
+iphen3
+fiphen3
+ipher1
+i5pheri
+fipher1
+fi5pheri
+iphi4
+fiphi4
+i4phu
+fi4phu
+ip3i2d
+fip3i2d
+i5p2il
+fi5p2il
+ip3in
+fip3in
+ip4in4e
+fip4in4e
+ip2ir4
+fip2ir4
+ip5is
+fip5is
+ip1i4t
+fip1i4t
+ip4iti
+fip4iti
+ip2l2
+ip3lin
+fip2l2
+fip3lin
+ip3lo
+fip3lo
+i3po
+fi3po
+i4p2o1g
+fi4p2o1g
+i4poli
+fi4poli
+i4p2om
+fi4p2om
+ip4o2n3
+fip4o2n3
+i4pow
+fi4pow
+i4p1p2
+ip2p2l2
+fi4p1p2
+fip2p2l2
+ip3pli
+fip3pli
+i1pr2
+ip4r2e
+fi1pr2
+fip4r2e
+i2pt2
+ipt1or
+ip5tor1i
+fi2pt2
+fipt1or
+fip5tor1i
+ip1ul
+fip1ul
+i5put
+fi5put
+i2p4y4
+fi2p4y4
+2iq
+fiq
+iqu4
+i3q2ua2
+fiqu4
+fi3q2ua2
+2ir
+ir1a
+fir1a
+ir1ab
+ir4abi
+fir1ab
+fir4abi
+ira4c
+fira4c
+ir4ae.
+fir4ae.
+ir4ag
+fir4ag
+ir4al1in
+fir4al1in
+irall2
+ir4al1li
+firall2
+fir4al1li
+iras2
+i5r2a3so
+firas2
+fi5r2a3so
+ira4ss2
+irassi4
+fira4ss2
+firassi4
+ir4ay4
+fir4ay4
+ird3i
+fird3i
+ir2e
+ire3a4
+fir2e
+fire3a4
+ir3ec
+fir3ec
+ir5ee
+fir5ee
+irel4
+firel4
+ire5li
+fire5li
+ires4
+fires4
+ir5e4ss
+fir5e4ss
+ir1i
+fir1i
+ir2i4d
+fir2i4d
+ir4im
+fir4im
+ir4is.
+fir4is.
+5ir1iz
+fir1iz
+irl5i4ng
+firl5i4ng
+ir2oc
+ir5o2ch
+fir2oc
+fir5o2ch
+ir5ol
+fir5ol
+ir3om
+fir3om
+ir4q
+fir4q
+i2r2s2
+fi2r2s2
+irt2
+ir5ta
+firt2
+fir5ta
+ir5tee
+fir5tee
+ir1w
+ir1wo
+ir3w2om
+irwo4m2e
+fir1w
+fir1wo
+fir3w2om
+firwo4m2e
+i4sa
+fi4sa
+is5ad
+fis5ad
+isa4g
+is3age
+fisa4g
+fis3age
+is1a2l
+fis1a2l
+is3a4m
+fis3a4m
+is1a2n
+fis1a2n
+is3a2r
+fis3a2r
+is5av
+fis5av
+4i4s3b
+fi4s3b
+i2s3c2
+fi2s3c2
+is2ch2
+is5chi
+fis2ch2
+fis5chi
+is1c2i2
+isci5c
+fis1c2i2
+fisci5c
+4i1sec
+fi1sec
+ise5cr2
+fise5cr2
+is3ell2
+fis3ell2
+4is3en
+fis3en
+is2er1
+fis2er1
+is5er2e
+fis5er2e
+i2s3et
+fi2s3et
+4iseu
+fiseu
+is2h
+isha2
+is3ha2r
+fis2h
+fisha2
+fis3ha2r
+ishe2
+ish5ee
+fishe2
+fish5ee
+4ish3io2
+fish3io2
+ish3op
+fish3op
+is5hor
+fis5hor
+2is2i1a2
+fis2i1a2
+is5ic
+fis5ic
+is3ie2
+fis3ie2
+4isim
+fisim
+i2sin
+is3inc
+fi2sin
+fis3inc
+4is1is2
+fis1is2
+is2k2
+is4ke2
+fis2k2
+fis4ke2
+i2s1l4
+fi2s1l4
+islun4
+fislun4
+i2s1m4
+2isma
+fi2s1m4
+fisma
+is1on
+fis1on
+is4o2ne
+is5on1er1
+fis4o2ne
+fis5on1er1
+is2o5p
+fis2o5p
+is1p
+fis1p
+i3s2ph2
+fi3s2ph2
+5is1pr2
+fis1pr2
+2i4s1s
+fi4s1s
+is1sa
+iss5ad
+fis1sa
+fiss5ad
+is4sa2l
+fis4sa2l
+is5sa2n
+fis5sa2n
+is4s4iv
+fis4s4iv
+is1s4o
+fis1s4o
+ist2
+4ista
+fist2
+fista
+is4tal
+fis4tal
+iste2
+ist5enc
+fiste2
+fist5enc
+ist5ent
+fist5ent
+ister1
+i4s2t2er2e4
+is5ter3er1
+fister1
+fi4s2t2er2e4
+fis5ter3er1
+4is1th
+fis1th
+is4t3ic
+fis4t3ic
+4i4s2tl
+fi4s2tl
+i4s1to
+fi4s1to
+4is4t2om
+fis4t2om
+is1tr2
+fis1tr2
+3is2t4r2y
+fis2t4r2y
+4is4ty
+fis4ty
+i5s2ul
+fi5s2ul
+is3u4r
+fis3u4r
+2is2y
+fis2y
+it1a
+i2t5ab
+fi2t5ab
+ita4c
+fita4c
+4i1t2ai2
+fi1t2ai2
+it3a2m
+fit3a2m
+ita2n
+it4an2a
+fita2n
+fit4an2a
+it4as
+fit4as
+it3at
+fit3at
+i3te2ct
+fi3te2ct
+it3ee
+it3enc
+fit3enc
+it3ent
+fit3ent
+iter1
+it3era
+fiter1
+fit3era
+2ith
+fith
+itha4
+itha5l
+fitha4
+fitha5l
+ith5i
+fith5i
+i5thol
+fi5thol
+i1t2h3r
+fi1t2h3r
+ith2y5
+fith2y5
+2i1t2i2a2
+fi1t2i2a2
+it1ic
+it2i4c2o2
+fit1ic
+fit2i4c2o2
+it5ic1u
+fit5ic1u
+it1ie2
+fit1ie2
+it3ig
+fit3ig
+4i1tim
+fi1tim
+it1in
+it4in.
+fit1in
+fit4in.
+i4t4i4n1s2
+fi4t4i4n1s2
+i1t2io2
+4itio.
+fi1t2io2
+fitio.
+4itio2ne
+fitio2ne
+i5t2i4q
+fi5t2i4q
+4i5tit
+fi5tit
+i2t3iv
+fi2t3iv
+i2tl
+it4li
+fi2tl
+fit4li
+it5lo
+fit5lo
+4i2to.
+fi2to.
+it5ol
+fit5ol
+2iton
+fiton
+it1o4u2
+fit1o4u2
+2itr2
+fitr2
+itr2e
+it5re4s4s
+fitr2e
+fit5re4s4s
+i4tric
+fi4tric
+2i2t1t4
+fi2t1t4
+it3ti
+it4tit
+fit3ti
+fit4tit
+it2u1a2
+itu1al
+itu4a4ls
+fit2u1a2
+fitu1al
+fitu4a4ls
+it5ua2r
+fit5ua2r
+4itue
+fitue
+it1ul
+fit1ul
+it1u4r
+fit1u4r
+it3us
+fit3us
+2i1u2
+fi1u2
+i3um
+fi3um
+iu4r
+iur5e
+fiu4r
+fiur5e
+2iva
+fiva
+iva2n
+iv5anc
+fiva2n
+fiv5anc
+iv1at
+fiv1at
+i4v2ed
+fi4v2ed
+i2vel
+iv5el.
+fi2vel
+fiv5el.
+iv5el3i4ng
+fiv5el3i4ng
+iv5e4ls
+fiv5e4ls
+iver1
+i4ver.
+fiver1
+fi4ver.
+iv3eri
+fiv3eri
+ive2r1s2
+i4vers.
+five2r1s2
+fi4vers.
+iver5sa2l
+fiver5sa2l
+ives4
+fives4
+iv3et
+fiv3et
+i4vie2
+fi4vie2
+iv3i1f
+fiv3i1f
+iv3i2ff
+fiv3i2ff
+iv3i1fi
+fiv3i1fi
+iv4i2fl2
+fiv4i2fl2
+ivi4l
+ivil3i
+i5vil1it
+fivi4l
+fivil3i
+fi5vil1it
+i2v5ist2
+5ivi4st.
+fi2v5ist2
+fivi4st.
+5ivi2s4t3s
+fivi2s4t3s
+iv1i2t
+fiv1i2t
+i2vo
+fi2vo
+iv2oc3
+fiv2oc3
+i5v2or2e
+fi5v2or2e
+2i1w
+fi1w
+2ix
+fix
+ix3o
+fix3o
+i5ye
+fi5ye
+1iz
+fiz
+iz1a1
+4iz2ah
+fiz1a1
+fiz2ah
+iz3i2
+fiz3i2
+2izo
+fizo
+iz5oi
+fiz5oi
+2izz2
+fizz2
+1ja
+2ja.
+3jac
+ja2c5o2
+jac3u
+jag5u
+jal4
+ja5lo
+j2ap
+j4apa
+ja5pa2n
+jell2
+jel5l2a
+jeo2
+jeop3
+4jes
+jeu4
+jew3
+2ji
+3j2ig
+jil4
+jill5
+5jis.
+3jo2
+4jo.
+j2oc
+jo1c5o2
+joc5u
+jol4e
+4jr
+4js
+ju1di
+j2ui4
+ju5l
+jun1
+ju3n2i
+j2usc2
+ju2s1cu4
+jut3a
+ju1v2
+k1ab
+k4abi
+k2a5bu
+ka2ch4
+k3a4g
+k2ai2
+kais5
+ka4l
+ka5lim
+kal4is
+k4a2n
+k2a3o
+k2ap4
+ka2r
+kar4i
+1kas.
+k2au2
+kau4r4
+k2av4
+k1b4
+k1c
+k1c2o2
+kc2om4
+k5d2
+k1do4
+kdol5
+4k2ed
+ke5da
+k5ede2
+3kee
+ke4g
+k2e4n4d
+ken1o4
+ke2p5t2
+ker1
+ker5a
+k4er2e
+k5erel
+k4er4j
+ker5o
+kes4i
+ket5a
+key3w
+key4wo
+k1f
+k2ff
+k1fi
+k1fl2
+k3fu
+kfu4r4
+k3ho
+5k2i1h
+ki2l
+kilo3
+k1in
+k2in.
+3k2i4nd
+kinema4
+kin5et
+k3i4ng
+k2in4i
+k2i4n1s2
+k2ir
+kir3m
+ki4r4r4
+kis4
+3kis.
+k1is2h
+ki2t5c2
+k2i4w
+kk4
+k5ker1
+k2l2
+k3l2a
+k5lea2
+k3ler1
+k3let
+k3li
+k3lo
+k1m
+kn2
+k2no
+1kn4ow
+k2o5a2
+kol4
+k2om
+ko5m1i
+ko5pe
+k1p
+k5ro4
+k3ru
+4k1s
+k3sl4
+k2s1m4
+ks2mi
+ks4t2
+k1t
+ku4r5
+k5v
+k1w
+3kyl
+l2a
+4la.
+fla.
+5la4a
+fla4a
+l1ab
+l2aba
+lab5a2r
+fl1ab
+fl2aba
+flab5a2r
+l2ab2e4
+la1bel4
+fl2ab2e4
+fla1bel4
+5lab1r4
+flab1r4
+l4ac
+fl4ac
+la2c2a
+fla2c2a
+la5ceo
+fla5ceo
+la5cer1
+fla5cer1
+la4ch
+fla4ch
+la2c2o2
+fla2c2o2
+5la5col
+fla5col
+lac5on1
+flac5on1
+la3cu
+fla3cu
+la4de
+fla4de
+l5a2d1m
+fl5a2d1m
+l4ae
+fl4ae
+l4af
+fl4af
+l4a2ff
+fl4a2ff
+l4afi
+fl4afi
+l4afl2
+fl4afl2
+la3ger1
+fla3ger1
+la1g2i
+la4g4i4s
+fla1g2i
+fla4g4i4s
+la2g3r2
+fla2g3r2
+5l2ah4
+fl2ah4
+l2ai2
+la1ic
+la4ic.
+fl2ai2
+fla1ic
+fla4ic.
+l4al
+fl4al
+4l2ale
+fl2ale
+l2a2m
+la1ma2n
+lama4n5d
+5laman3dr2
+fl2a2m
+fla1ma2n
+flama4n5d
+flaman3dr2
+lam2e
+lamell2
+la5mel1li
+flam2e
+flamell2
+fla5mel1li
+lam1i
+lam4ie2
+flam1i
+flam4ie2
+la1m1o
+fla1m1o
+l5amu
+fl5amu
+la2n
+lan2a
+lan3at
+fla2n
+flan2a
+flan3at
+la4n2d
+fla4n2d
+3land.
+fland.
+land3i
+fland3i
+3lan4d1s2
+flan4d1s2
+lan4er1
+flan4er1
+lan3et
+flan3et
+lant2i
+lant1in
+lan5tine
+flant2i
+flant1in
+flan5tine
+lan4t4r2
+flan4t4r2
+l2a4p
+fl2a4p
+lap1i4
+flap1i4
+la2r
+lar5a2n
+fla2r
+flar5a2n
+lar5de
+flar5de
+lar2e
+4la2r4ed
+flar2e
+fla2r4ed
+l4as
+fl4as
+l2a2ta
+lat5al
+fl2a2ta
+flat5al
+la4te
+fla4te
+la4t1i4l
+5latil1is
+fla4t1i4l
+flatil1is
+5latil1iz
+flatil1iz
+la2t3in
+5lat2in1i
+fla2t3in
+flat2in1i
+l2a2tu
+lat5us
+fl2a2tu
+flat5us
+l4au2
+fl4au2
+5lau4r
+flau4r
+l2av
+lav5at
+fl2av
+flav5at
+l4aw
+fl4aw
+4l2az2
+fl2az2
+l3b
+fl3b
+lb2e4
+flb2e4
+l4bit
+fl4bit
+l4by
+fl4by
+l1c2
+fl1c2
+l2c1at
+fl2c1at
+lce4
+flce4
+l1cen4
+fl1cen4
+lcer1
+l4c2er2e
+flcer1
+fl4c2er2e
+l2ch
+lch4e2
+fl2ch
+flch4e2
+l3da2r
+fl3da2r
+l3d2ed
+fl3d2ed
+l3de1h2
+fl3de1h2
+lder1
+l5dera
+flder1
+fl5dera
+ld3est2
+fld3est2
+l5dew
+fl5dew
+ldi2
+fldi2
+l3die2
+fl3die2
+l2d1in
+ld4in4e
+fl2d1in
+fld4in4e
+l5di5ne4s
+fl5di5ne4s
+ldi4s1
+ld3is2h
+fldi4s1
+fld3is2h
+l2dl4
+ld5li
+fl2dl4
+fld5li
+l3do
+fl3do
+4le.
+fle.
+lea2
+lea4g
+3leagu
+flea2
+flea4g
+fleagu
+le5a1t2io2
+fle5a1t2io2
+le2av
+leav5er1
+fle2av
+fleav5er1
+le1b
+le2br4
+l3eb5ra
+fle1b
+fle2br4
+fl3eb5ra
+le3c2a
+fle3c2a
+le2ch
+le5cha2
+fle2ch
+fle5cha2
+le2ct
+lect2i4c
+lect5ica
+fle2ct
+flect2i4c
+flect5ica
+2l2ed
+fl2ed
+le5dr2
+fle5dr2
+leg1a
+fleg1a
+l3ega2n
+fl3ega2n
+3le2g1g
+fle2g1g
+le1g2i
+le4gin
+fle1g2i
+fle4gin
+leg3o
+fleg3o
+le2gr2
+le3gra
+fle2gr2
+fle3gra
+lek4
+flek4
+l2ele
+4l4e4l2ed
+fl2ele
+fl4e4l2ed
+lel5o
+flel5o
+le1lu5
+fle1lu5
+le1m2e4
+le1men
+lem5enc
+fle1m2e4
+fle1men
+flem5enc
+lem3is
+flem3is
+l5em1iz
+fl5em1iz
+5le2m1m2
+fle2m1m2
+l3e4m1n2
+fl3e4m1n2
+le2mo
+fle2mo
+l4em5on
+fl4em5on
+l2e4nd
+l5en2da
+fl2e4nd
+fl5en2da
+len5da2r
+flen5da2r
+lend4e2
+flend4e2
+len4do
+flen4do
+l4e1ne
+fl4e1ne
+len1i
+le5n2ie2
+flen1i
+fle5n2ie2
+len3o
+flen3o
+lent2i
+4len1t2io2
+flent2i
+flen1t2io2
+l4en5u
+fl4en5u
+le3on
+fle3on
+leo4s2
+fleo4s2
+le5q
+fle5q
+2ler1
+fler1
+l2er2e
+le5rec
+fl2er2e
+fle5rec
+5l4er2i1a2
+fl4er2i1a2
+l4eric
+fl4eric
+le5r2ig
+fle5r2ig
+ler3om
+fler3om
+leros4
+fleros4
+ler3ot
+fler3ot
+4l4es.
+fl4es.
+le2sc2
+le3s2c2o2
+fle2sc2
+fle3s2c2o2
+3le4s4s
+fle4s4s
+1let
+flet
+letr2
+le5tra
+fletr2
+fle5tra
+le5tr2e
+fle5tr2e
+5le5tu5
+fle5tu5
+leu4r5
+fleu4r5
+2lev
+flev
+l3eva
+fl3eva
+5leve
+fleve
+levi2t
+lev5it2a
+flevi2t
+flev5it2a
+le4wi2
+fle4wi2
+l5ex1a
+fl5ex1a
+1ley
+fley
+lf5i2d
+lfi2d
+flfi2d
+l2fo
+fl2fo
+lf3o2n
+flf3o2n
+l1g2
+fl1g2
+l4gal
+fl4gal
+l4gem
+fl4gem
+l1g2i
+lg2i4a2
+fl1g2i
+flg2i4a2
+l4gi2d
+fl4gi2d
+l4g2oi
+fl4g2oi
+l3h
+fl3h
+4li.
+fli.
+l2i1a2
+lia2n
+li4an1i
+fl2i1a2
+flia2n
+fli4an1i
+lias4
+flias4
+lib1r4
+flib1r4
+l1ic.
+fl1ic.
+5l4i2ch
+fl4i2ch
+li1c2i2
+li4cie2
+fli1c2i2
+fli4cie2
+5li5c2io2
+fli5c2io2
+l2i2c2o2
+l3ic3on1
+fl2i2c2o2
+fl3ic3on1
+li2ct
+lict4o
+fli2ct
+flict4o
+l2i4cu
+fl2i4cu
+li2d
+l3id1a
+fli2d
+fl3id1a
+l4ida2r
+fl4ida2r
+5lid3i1f
+flid3i1f
+5lid3i2ff
+flid3i2ff
+5lid3i1fi
+flid3i1fi
+5lid4i2fl2
+fl2id4i2fl2
+lie2
+3l4ieu
+flie2
+fl4ieu
+l2i1f
+l4i2fe
+fl2i1f
+fl4i2fe
+l2i2ff
+fl2i2ff
+l2i1fi
+fl2i1fi
+l4i2fl2
+fl4i2fl2
+l4i3fo
+fl4i3fo
+li2ft
+lift5er1
+fli2ft
+flift5er1
+1l2ig
+fl2ig
+li1ge
+li5ger1
+fli1ge
+fli5ger1
+li2gh
+ligh2t
+light5i
+fli2gh
+fligh2t
+flight5i
+5l2i1h
+fl2i1h
+3l2ik2
+fl2ik2
+1l4il
+fl4il
+lil4i
+flil4i
+li2m2b
+fli2m2b
+lim2e
+li1me2t
+limet4e
+flim2e
+fli1me2t
+flimet4e
+lim4p
+flim4p
+lin1a
+l4i2na.
+flin1a
+fl4i2na.
+l4in2as
+fl4in2as
+l2i4n4d
+fl2i4n4d
+l4ine
+fl4ine
+5l4in3ea2
+fl4in3ea2
+lin1er1
+lin4er.
+flin1er1
+flin4er.
+lin4e2r1s2
+flin4e2r1s2
+li4ng
+l4inge
+lin4ger1
+fli4ng
+fl4inge
+flin4ger1
+l4in2g3i
+fl4in2g3i
+5lingt
+flingt
+3l4in1gu
+fl4in1gu
+3l4in1q
+fl4in1q
+lint5i
+flint5i
+l2io2
+3li2o1g
+fl2io2
+fli2o1g
+l4i4ol
+fl4i4ol
+li2o3m
+fli2o3m
+li3ot4
+fli3ot4
+li3o4u2
+fli3o4u2
+l2ip
+5liph
+fl2ip
+fliph
+li2pt5
+fli2pt5
+l2i1q
+fl2i1q
+3l2ir
+fl2ir
+l1is
+fl1is
+l4is2k2
+fl4is2k2
+l2i4s1s
+5lisse
+fl2i4s1s
+flisse
+l1it
+fl1it
+l2it.
+fl2it.
+l3it5a
+fl3it5a
+5liter1
+fliter1
+3l2ith
+fl2ith
+5l2i1t2i2a2
+fl2i1t2i2a2
+3l2itr2
+fl2itr2
+lit4u
+flit4u
+l4iv
+fl4iv
+l2iva
+l5iv1at
+fl2iva
+fl5iv1at
+liv3er1
+fliv3er1
+liv5i2d
+fliv5i2d
+lka4l
+lkal5o
+flka4l
+flkal5o
+lk5at
+flk5at
+lker1
+lk3er.
+flker1
+flk3er.
+lk3e2r1s2
+flk3e2r1s2
+ll2
+fll2
+l1l2a
+fl1l2a
+ll1ab
+ll2a4ba
+fll1ab
+fll2a4ba
+ll4ac
+lla2ct4
+fll4ac
+flla2ct4
+l5l4as
+fl5l4as
+l4l4aw
+fl4l4aw
+l5le1b
+fl5le1b
+l1lec
+fl1lec
+l1leg
+fl1leg
+l3lei
+fl3lei
+l1lel
+fl1lel
+lle5m
+flle5m
+l1len
+fl1len
+l3lep
+fl3lep
+l3leu
+fl3leu
+l3lev
+fl3lev
+ll3f
+fll3f
+ll3ff
+fll3ff
+ll3fi
+fll3fi
+ll3fl2
+fl2l3fl2
+l1li
+fl1li
+ll2i1a2
+lli5a2m
+fll2i1a2
+flli5a2m
+lli4a2n
+flli4a2n
+llib4e
+fllib4e
+llic4
+fllic4
+l4licl2
+fl4licl2
+ll2i5c2o2
+fll2i5c2o2
+l5lie2
+fl5lie2
+l1l2ig
+llig1at4
+fl1l2ig
+fllig1at4
+l2lin
+fl2lin
+l5lin.
+fl5lin.
+l3lin1a
+fl3lin1a
+l3l4ine
+fl3l4ine
+l5l2io2
+fl5l2io2
+ll4i5v
+fll4i5v
+ll3m2
+fll3m2
+l1lo
+fl1lo
+l1l2oc
+lloc3a
+fl1l2oc
+flloc3a
+lloc5u
+flloc5u
+l1lo2q
+fl1lo2q
+l4lov
+fl4lov
+llow5er1
+fllow5er1
+ll3p
+fll3p
+l4l3s
+fl4l3s
+ll5t
+fll5t
+l1lu
+fl1lu
+llun4
+fllun4
+l2ly
+l5ly1a2
+fl2ly
+fl5ly1a2
+l3ly1c
+fl3ly1c
+l3ly1g
+fl3ly1g
+l3ly1h
+fl3ly1h
+l3ly1i
+fl3ly1i
+l5lym2
+fl5lym2
+lm2
+flm2
+l1ma
+fl1ma
+l1m2e
+fl1m2e
+l4mer1
+fl4mer1
+lm3i4ng
+flm3i4ng
+l5m2i3p
+fl5m2i3p
+l1mo
+l2m3od1
+fl1mo
+fl2m3od1
+l1n4
+fl1n4
+l3ne
+fl3ne
+lneo4
+flneo4
+2lo.
+flo.
+l2oa2
+5load
+fl2oa2
+fload
+5l4ob3a
+fl4ob3a
+1l2oc
+fl2oc
+loc2a
+loc3al
+floc2a
+floc3al
+loc5ul
+floc5ul
+lo1cus
+lo4cus.
+flo1cus
+flo4cus.
+2lo1cy
+flo1cy
+l3od1i4s2
+fl3od1i4s2
+3lo3dr2
+flo3dr2
+1l2o1g
+fl2o1g
+lo2ga
+lo5ga2n
+flo2ga
+flo5ga2n
+l2oi
+4loi.
+fl2oi
+floi.
+l2om
+lo5m1i
+fl2om
+flo5m1i
+lo2m4m2
+flo2m4m2
+lon1a
+lon4al
+flon1a
+flon4al
+lo2n4e
+flo2n4e
+l5onel
+fl5onel
+lo5ney
+flo5ney
+lo4ng
+lon2g2i
+long5in
+flo4ng
+flon2g2i
+flong5in
+lon1i
+3l4o1n2i1a2
+flon1i
+fl4o1n2i1a2
+lon2i4e2
+flon2i4e2
+l3onis
+fl3onis
+l3on1iz
+fl3on1iz
+l2oo
+lo2o4m
+loom2e
+loom5er1
+fl2oo
+flo2o4m
+floom2e
+floom5er1
+lop4e
+flop4e
+5lo5pen
+flo5pen
+l3o2p1m
+fl3o2p1m
+1lo1q
+flo1q
+l2or2e
+l4o2r4ed
+fl2or2e
+fl4o2r4ed
+lor1i
+lor2i1a2
+lor5i3at
+flor2i1a2
+flor5i3at
+lor3i1f
+lor4i2fe
+flor3i1f
+flor4i2fe
+lor3i2ff
+flor3i2ff
+lor3i1fi
+flor3i1fi
+lor4i2fl2
+fl2or4i2fl2
+lo5rof
+flo5rof
+lo5ro2ff
+flo5ro2ff
+lo5rofi
+flo5rofi
+lo5rofl2
+fl2o5rofl2
+loros4
+floros4
+l4os.
+fl4os.
+lo1so
+flo1so
+lo4ss4
+flo4ss4
+los5sie2
+flos5sie2
+l2ot
+lot5at
+fl2ot
+flot5at
+l4oth
+loth4ie2
+fl4oth
+floth4ie2
+lo5tu
+flo5tu
+lo4u2
+5lo2up
+flo4u2
+flo2up
+lp1at
+flp1at
+lp3er1
+flp3er1
+lph2
+flph2
+l5phe4
+fl5phe4
+l3ph1i4n
+fl3ph1i4n
+l2pho
+fl2pho
+l3p2ie2
+fl3p2ie2
+l3pit
+fl3pit
+lr4
+flr4
+l3ri
+fl3ri
+l3ro
+fl3ro
+l5ru
+fl5ru
+4ls
+fls
+l5s2a4m
+fl5s2a4m
+ls5a2n
+fls5a2n
+ls2i1f4
+lsi4f2i1a2
+ls2i1fi
+lsi4fi1a2
+fls2i1fi
+flsi4fi1a2
+fls2i1f4
+ls2i2ff
+fls2i2ff
+ls4i2fl2
+fl2s4i2fl2
+lsi4m
+flsi4m
+ls4is2
+fls4is2
+l5s2k2
+fl5s2k2
+ls4p
+fls4p
+l1s2t2
+fl1s2t2
+lta2n
+lt4an3e
+flta2n
+flt4an3e
+l4ta4ng
+fl4ta4ng
+lt5ant
+flt5ant
+l5ta2r
+fl5ta2r
+l1te
+fl1te
+l4tei4
+fl4tei4
+lter1
+lter2n3
+flter1
+flter2n3
+lth3i
+flth3i
+lt1ic
+lt2i4c2i2
+flt1ic
+flt2i4c2i2
+l1tim
+ltim4a
+fl1tim
+fltim4a
+lt1in4
+flt1in4
+lti3t
+flti3t
+l3t4iv
+fl3t4iv
+lt4or
+flt4or
+l1tr2
+fl1tr2
+ltr2a2m
+ltra1mo
+ltra3m4on
+ltram2ont5
+fltr2a2m
+fltra1mo
+fltra3m4on
+fltram2ont5
+l1tu
+fl1tu
+l4tus
+fl4tus
+4lu.
+flu.
+l2u1a2
+fl2u1a2
+l4uc
+lu4ch4
+fl4uc
+flu4ch4
+lu2c5o2
+flu2c5o2
+lucr2
+luc5ra
+flucr2
+fluc5ra
+lu4cu
+flu4cu
+4lue
+flue
+lu1en
+flu1en
+lu5er1
+flu5er1
+l2u1i2
+fl2u1i2
+lu4it
+flu4it
+lu2m1b
+lumbr4
+lum4bri
+flu2m1b
+flumbr4
+flum4bri
+lu4mo
+flu4mo
+5lum2p
+flum2p
+lu2m5u
+flu2m5u
+lun1
+lun2ch
+lunche2
+lunch5eo
+flun1
+flun2ch
+flunche2
+flunch5eo
+5lune
+flune
+l3unta
+fl3unta
+lu3or1i
+flu3or1i
+5l2up
+fl2up
+lu4r
+3lur3o
+flu4r
+flur3o
+lus2k5
+flus2k5
+lu4ss4
+flu4ss4
+lut5a2n
+flut5a2n
+4lut5a2r
+flut5a2r
+lut2i
+lu3t2io2
+lution1i
+5lution1iz
+flut2i
+flu3t2io2
+flution1i
+flution1iz
+lut2o
+lu5t2oc
+flut2o
+flu5t2oc
+lut5r2
+flut5r2
+lu1v2
+flu1v2
+lv5ate
+flv5ate
+l5vet4
+fl5vet4
+l4vi
+fl4vi
+l1vo
+l4vor
+fl1vo
+fl4vor
+l3w
+fl3w
+lx4
+flx4
+2ly
+fly
+4ly.
+fly.
+ly1c
+fly1c
+ly4ca
+fly4ca
+lyc4l2
+flyc4l2
+ly1c2o2
+ly2c5os
+fly1c2o2
+fly2c5os
+lym2
+flym2
+lym1p
+lymph5
+flym1p
+flymph5
+l2yp2
+fl2yp2
+ly4pa
+fly4pa
+ly2pt2
+lypt5o
+fly2pt2
+flypt5o
+3lyr
+flyr
+l4y2s
+lys5er1
+fl4y2s
+flys5er1
+3ly3w
+fly3w
+3lyz
+flyz
+lz4
+flz4
+4ma.
+m4ac2a
+mac3ad
+ma2ch
+mach1in
+ma5ch2in2e
+5mach2y
+m2a1c2i2
+ma4cis
+ma2ct4
+4mad.
+4mada
+4ma4d1s2
+ma4ge
+5m4a2g1n2
+2mago4
+2m2ah
+ma5ho
+3m2a4i2
+4m4ai.
+mai2d3
+5m2ak
+mal2a
+mal3a4p
+mala2r
+mal5ar1i
+5m2ale2
+ma2l5ed
+mal3e1f
+mal3e2ff
+mal3e1fi
+mal3e1fl2
+m3al1g2
+m3al1is
+m4al4is.
+mall2
+mal3le
+mal4li
+2m2a2m
+mam2e
+ma3men
+mament4
+m5ament.
+1ma2n
+3m4an.
+man3a
+ma4nd
+man2da
+man5da2r
+man3dr2
+man1i
+man3ic4
+man4ica
+ma5n2il
+m4a4n2s
+man2te
+man3te2l5
+2m2ap
+m3aph
+1ma2r
+5mara2n
+mar5ol
+ma5ro4n
+ma3r2oo4
+m2a4r1r4
+mar5ri
+ma2r2s2
+mars2h
+mar4shi
+mar3v2
+m2aso
+ma3son
+ma4ss2
+massi4
+mas2s1in
+mass5i4ng
+3mas1t2
+maste2
+ma4s4t4ed
+mast4ic
+mas4t1in
+m4at.
+m4aten
+m4a3ter1
+mater5n4
+m4at1it
+mat4iti
+mat1iz
+m4atiz1a1
+ma2to
+m4a3t2o1g
+mat5om
+ma3top
+m4a4t1s
+3m4a2t1t4
+m2a2tu
+matu4r
+ma5tur2e
+m2av4
+2m1b
+mba2t4t4
+m2b4d
+mb2e
+m5bec
+mber1
+m2b2er2e
+m5ber3er1
+m4be2r2y
+m4be1s2
+mb2i
+m2bic
+m5b1il5
+m4b3i4ng
+m4b2is
+mb5ist2
+mb2iva
+mbival5
+m2bl2
+m5b2ler1
+m3bli
+mbr4
+mbru4
+mbu3l
+mbu4r4
+m1c
+m5d
+m2e
+2me.
+mea2
+mea5g
+mea2n
+me5a4nd
+me1b
+me4ba
+me4b2i
+2m2ed
+4med.
+3me1d2i1a2
+med5ic1at
+4medie2
+m5ed5ies
+3med1it
+me4do
+m5e2d2y
+me2g
+5meg2a1
+meg1a5t
+4m2ele
+mel5ee
+mell2
+mel5ler1
+mel3on
+mel4t
+mel1te
+melt5er1
+me2m
+4m5e1m2e4
+1men
+3men.
+2men1a
+men4ag
+m2e4nd
+mende2
+mend5er1
+men1d5o
+m4e1ne
+men2t2o
+ment5or
+5men4t1s
+5me2o1g
+me4p
+mer1
+m5era2n
+4m2er2e
+mer4i1a2
+2me2s
+mes5en
+me5s2i4a2
+mes5q
+mest2
+3me2sti4
+1me2t
+met2a
+meta3t
+met1e
+4met4ed
+me2th1
+meth4i
+met1i4c
+met5i1c2i2
+met3o
+metr2
+met3ri
+m1f
+m2ff
+m1fi
+m1fl2
+4m3h
+4mi.
+m1ic
+mi1c2i2
+m4i4cin
+m2i3c2o2
+m2i1cr2
+3micro
+m4i2ct
+m2icu
+mi3cul
+mi4cus
+mi2d
+m4idi
+mi2d4in
+mi1do
+mid5on
+m2i1f
+mi5fi
+m2i1fi
+m2i2ff
+m4i2fl2
+m2ig
+mig5a
+mi2gh
+migh2t
+migh5ti
+mi2gr2
+4mij
+m2ik2
+mi5ka
+m2il
+m3i2l3a
+mil4ad
+4m5ilie2
+mil5ies
+3mill2
+mi5lo
+mil4t
+3m2im
+mim5i
+5m2i4n4d
+minde2
+mind5er1
+min1er1
+min4er.
+min4e2r1s2
+mi4ng
+min2gl2
+m4ing5li
+m2in1i
+min5ie2
+m4init
+m2ino
+min3ol
+1m4int
+minth2
+minth5o
+m2i3o2
+m2i3p
+m2ir
+mir1a
+mir1ab4
+mira4c
+mi5r2acu
+m2is.
+m4i2s3c2
+mi4se
+4misem
+mis2h
+mis3ha2
+m2i4s1s
+5missi
+mist2
+m3i4st.
+mis4t1in
+m3i2s4t3s
+mi2t
+mit1a
+m5ita2n
+4mity
+3m2i1u2
+5m2ix
+4m1l
+m1l2oc
+mlo5cut2i
+mlun4
+2m1m2
+m1ma2n
+mma4n4d
+mmande2
+mmand5er1
+mm2e
+m2m2ed
+m3medi
+mmell2
+mmel5li
+m1me2t
+mmet4e
+mm2ig3
+mm2in3u
+mmis3
+m1mo
+mmob3
+m5m2oc
+mmor3
+mmut3a
+4m1n2
+mn1i
+mn2i1f4
+mn2i2ff
+mn2i1fi
+mn4i2fl2
+m4nin
+mn2i5o2
+mnis4
+mno5l
+1mo
+4mo.
+2m2oc
+mod1
+mod2i1f
+mod5ifie2
+mod2i1fi
+mod5ifie2
+mod2i2ff
+mod4i2fl2
+m2o1g
+mo2ga
+mo3ga4s
+mogast4
+mo4go
+mo1gr2
+mo2g5ri
+m2oi
+m5o2ir
+mok4i
+mol3a
+mo1lo
+mo1l2o1g
+4molog.
+4molo2g1s
+4molo2gu
+mo3ly
+m2o1m
+mom1i
+mo4mis
+m4on
+mon1a4
+mo2ne
+4m4o2n2ed
+mo4n1g
+mo4no
+mono1lo4
+mono1l2o1g
+monolo3g5i
+m4op
+mo5phi4l
+mophil5i
+m1o2p4t2
+mor1a
+m3or1ab
+m3orat4
+mor4a2to
+m5ord
+m2or2e
+mo5rel
+mor1i
+3mor2i1a2
+m5or1iz
+mor5on
+3morp
+mo2r1s2
+3mor2se
+m2ort2
+mor5tal
+m4o3sp
+5most2
+m4o3sta
+mo4u2
+2m1ous
+m1p
+m3pa
+mpa2n
+m4panc
+m4pant
+mp4a2th3
+mpell2
+mpel5li
+mper1
+m4p2er2e
+m5per3er1
+mp4er3i
+m3pet
+mpe2ti
+mpet5it
+mpha2
+mphal5o
+m4phe4
+m4p4h2l
+m2pi
+mp5i2d
+m5p2ig
+mp2il
+mp3i2ly
+mp1in
+m3p2ir
+mp3is
+m3po
+mpol5it
+mp2o2t
+mpov5
+m2pt2
+mp3to
+mp5tr2
+m3pu
+m5q
+m3r
+m4r2y
+4m1s
+m5sel5f
+m5sel5ff
+m5sel5fi
+m5sel5fl2
+m5si
+ms2ol4
+mtu4
+m4uc
+muck1
+muc4k4e
+muf2
+mu2ff4
+mu2ff
+mufi
+mu3fl2
+mul1t2
+mun1
+m5unc
+mun2i
+mu5n2io2
+mun3is
+m2usc2
+mus5c2o2
+mu4se
+mus2k2
+mus5ke2
+mut2i
+mu3til
+m1v
+m3w
+2my
+5my3c
+my4d4
+my3e
+3my1i
+m4y2s
+5mys1t4
+3myt
+n1a
+2na.
+na2c
+na2ch4
+n2a1c2i2
+nac2io2
+nacio4u2
+na5cious.
+na5ciou2sl4
+na2ct
+nac4te
+nac2t1iv
+nac5t2iva
+nacu1l2a
+nacula2r
+na5cular1i
+na4d4a
+nadi4
+na2do
+nad4op
+n2ae.
+na2ff
+naf1fi
+naf1fi2l4
+naffi
+naffi2l4
+na2ff
+nag4a
+n4a3gen
+nager1
+5n4a5geri
+na4g2i
+n5ago
+5n4a3gr2
+5n2ah
+n2ai2
+5nail
+na5iv
+n2ak2
+n2ale
+4na2l2ed
+n5al1g2
+n4al2i1a2
+n2a3ly4
+1n2a2m
+3nam2e
+na4m4n2
+na2n
+n1an2a
+na5n2as
+nan1n4
+nan5no
+nann2ot4
+nan4t2a
+nan2te
+nan5t4ed
+nan4t2o
+n2a5o
+na2r
+4n4ard
+nart2
+nar2t1is
+nartis2t2
+nar5tisti
+n2as
+nas5i
+nas5p
+na4s3s2
+nast2
+nas5te2
+n2a2ta
+nat5al
+na5ta3t4
+n4atee
+n4a2th
+na3the2
+nat4h4l
+nati4
+n4a4ti.
+nat5i2c
+na2to
+n4a2to.
+na3t2om
+na4tos4
+n2a2t4r2
+n2a2tu
+natu4r
+na5tur1i
+n2au2
+nau2gh
+naugh2t
+naugh5ti
+naus3
+3naut
+naut3i
+n2a2v
+na5vel
+n3b4
+nba2r
+nb2a4r1r4
+nbar3ri
+nbarric5
+nb2e
+n3bea2
+nbe2au4
+nbe4n
+nb4e1ne4
+nbet4
+nbit4
+n1c2a
+nc1al
+n4cal.
+n1ca2r
+ncar2n2
+ncarn1a
+ncarn5at
+ncel4i
+n1cen2
+n3cent
+ncen1tr2
+ncen4t5ri
+n1cep
+nce2pt2
+n4cept.
+n3cer1
+nc2er4e
+n4c4es.
+n5ce2t
+n5cey
+n2ch
+n3cha2
+nch4ie2
+n3cho
+nch5o1lo
+n3chu
+n1c2i2
+n4cic
+nci2d
+ncid5en
+n4c2i3f
+n4c2i3ff
+n4c2i3fi4
+n4c4i3fl2
+nc2ip
+ncip5ie2
+n1c2l2
+nc2le2
+n4cles
+n1c2o2
+n3c2oc4
+nco1pa
+nco5pat
+n1cr2
+n2c1t
+nc4t1in
+nc2t1iv
+nct4ivi
+nct2o
+n1cu
+ncu4lo
+n4cun1
+n1cu4r
+ncur1v2
+n4curvi
+n1cus
+nc4us4t2
+4nd
+n2da
+n3d2a4c
+n3dal
+n4d4ale
+n3d2a2m
+nda2n
+nd3anc
+nde2
+n3dea2
+n3dec
+nde3c2i2
+n1d2ed
+nde4l
+nd2ele
+ndeleg4
+nd3enc
+nde1p
+nde1pr2
+ndepr2e4
+nder1
+n3derl
+nde4s
+n5de2sc2
+ndes5cr2
+n5dez
+n4d1h
+nd4hi
+n1dic
+nd2ic5u
+n1di2d
+ndid5a
+n3die2
+ndil4
+nd5i2ly
+n2d1in
+nd4in4e
+ndi4s1
+nd3ise
+nd5is4i
+ndi2s1m4
+nd5ism.
+n2d5ity
+n2dl4
+nd3ler1
+nd1li
+n1do
+n5d2oc
+nd2or4
+n2do4u2
+nd5ou4r
+ndr2
+ndrag5
+n3dr2a2m4
+n5dron
+n1du
+ndu4b
+n3d4uc
+ndu2ct
+nduc2t5iv
+n4dun1
+n2d1w
+nd2we
+n2d2y
+n3dy1i
+2ne.
+nea2
+ne3alo
+n3ea2r
+ne1b
+ne2b3u
+5neck1
+ne4cl2
+ne2c2o2
+ne2ct
+n5ec1t2om
+2n2ed
+3nedi
+ne4du4
+neg3a
+ne3go
+5negu
+n4eis4
+2n2ele
+ne5l2i1a2
+ne1l2i4g
+n4e2ly
+ne2mo
+4n1en
+n3e4nd
+neo3l
+neon4
+ne2p
+n1er1
+n2er2e
+4n4e2r4ed
+ner3in
+5neri4ng
+ner5o
+ne4r4r5
+ner2v2
+ner2v5in
+2n4es.
+n1e2sc2
+ne3s2i1a2
+1ne4ss
+n1est2
+nes3t4r2
+net3a
+net3ic
+ne4t2o1g
+net1r2
+n4eum
+neu1ma
+neuma5to
+neut5r2
+nev5er1
+n4ew
+news3
+ne4y3s2
+n4eys.
+n3f
+n3ff
+n3fi
+n3fl2
+n1fo4
+n5f2orm
+nform2e
+nform5er1
+nf2ort2
+nfor1tu5
+n1fr2
+nfra2n3
+4ng
+ng2a
+n4gae
+n5gee
+nger1
+n3geri
+n5gero
+n2gh4
+n2g2i
+n5gic
+n3g2io2
+ngi2o4g
+n2gl2
+n5glem
+n3glie2
+n5gl2io2
+n2g1n2
+n1go
+n1gr2
+n4g2r2y
+n1gu
+n2gum
+n1h2
+nha2
+nh1ab3
+nho4
+nh2y2
+nhy1d5
+n1i
+4ni.
+n2i1a2
+3niac
+ni3ba
+n4ic1ab
+n4ice
+ni4cen2
+4nicl2
+ni2ct
+nic2t5a
+n2icu
+ni4cul4
+ni2d
+ni4d2i1o2
+n2ie2
+ni1er1
+ni4e2r1s2
+n2i1f
+ni2f4f
+n2i2ff
+n2i1fi
+n4i2fl2
+ni2ft4
+nif5ti
+n2i2g
+ni2gh
+nigh2t
+night5i
+n3i2g1m4
+3ni2gn2
+n2ik2
+nik5e
+n2il
+ni2l4a
+n3im1
+n4im2e
+5ni1me2t
+n4ine4s
+nin4j
+5n2in1n4
+n4in2u
+n2io2
+5n4i1ol
+ni1o4u2
+n2ip
+3nipu
+5n2iq
+n4is.
+n4is2k2
+ni2s4l4
+nis4o
+n5i4s1s
+nist2
+niste2
+nister1
+nis5ter.
+nis5te2r1s2
+ni2tc2
+nit2ch4
+ni4te
+n2ith
+ni3tho
+n4itos
+n2itr2
+ni5tra
+nitr2e
+nit5res
+ni3tri
+nit4u4r
+n2iv
+n2iv4a
+ni3vo
+niv2oc4
+n1iz
+niz5en
+n1j
+n1ja
+nj2a2m2
+nju4r
+njur5i
+4n2k
+nk5a2r
+nker1
+n5ker5o
+n3key
+nk5i1f
+nk5i2ff
+nk5i1fi
+nk5i2fl2
+nk5i2l
+4n1l2
+nl2a
+nla2n
+nla4n2d5
+n3le
+n1let4
+n3m
+nm4a3ter4
+n1mo
+nm2ort2
+nmor5ti
+n1n4
+nne4
+nnell2
+nnel5li
+nn1er1
+nner2v2
+nnerv5a
+n3n1i
+nn2ik2
+nni3ki
+nnov3
+n2ny2
+n5ny1i
+4no.
+n5ob2i
+no5b1il
+no2b4l2
+no5blem
+no4b1s2
+nobser4
+n2oc
+n5ocu1l2a
+no4di
+n4o2d2y
+noe4c
+no4f2a
+n2oi
+n4ois
+nois5i
+n5ol.
+no3l2a
+nol4i
+n2om
+no1ma
+no2m3al
+1nom1i
+no2mo
+4no2ne
+non1i
+3n2oni4c
+n2oo
+5nood
+nop5i
+nor1a
+nora4t
+nor5di
+nor1i
+nor4i1a2
+nor4is
+n2orm
+nor3ma
+n4oro
+n2or4t2
+n4os.
+nos4o
+n4o3sp
+n2ot
+not1a
+3note
+n1o4u2
+n4oug4
+3n2oun1
+2nous
+nou5v2
+nova4l
+nove2
+no2v3el
+no4v2el5e
+n4ow
+now5er1
+now3l
+n3p4
+np2il4
+np2l2
+n1pl2a4
+n1po
+np2oi
+npoin4
+npo5l2a
+n3p4os4
+n1pr2
+npri4
+n1q
+nqu4
+n4que1f
+n4que2ff
+n4que1fi
+n4que1fl2
+n1r
+nr2e
+nre4i4
+nre3m
+nrest2
+nres5t4r2
+4n1s
+ns2c2
+n2s2c2o2
+ns3c2ot
+n4s1cu
+n5sec
+nse2ct
+nsec4te
+n2s2es
+n5seu
+n3s2h2
+n2si
+n4s3ib
+n4sic
+n5s2ick1
+n3s4i2d
+n3sie2
+ns2i1f4
+ns5ifi
+ns2i1fi
+ns2i2ff
+ns4i2fl2
+n2sin
+ns3i4ng
+n3s2io4
+n3s2is2
+ns1i2t
+n4s3iv
+ns2ol
+nsolu4
+n5son
+n4s2or2e
+n4s3o2r2y
+n3sp2ir
+n3s2t2
+nsta4
+nstil4
+n3su
+nsu4r
+nsur4e
+nsw2
+n3swa
+n2t1ab
+ntab4u
+nt3age
+nt1al
+nta2n
+n4t3anc
+nt5a4nd
+nt4ane
+ntan5eo
+n4t3ant
+nta2r
+ntar1i
+nt4ar2i1u2
+ntas3i
+n5tas1is2
+nt3as4t2
+nt1at
+nt5a2th
+nt3ati
+nt5a2t1iv
+n5t2au2
+n1te
+n4tec
+n4tee.
+n4tees
+n3te2l
+nt2e4nd
+ntende2
+ntend5en
+n4te2o
+nter1
+n4ter.
+n3teri
+n5ter2n2
+ntern1a
+ntern5al
+nter5nat
+nth2
+n1the2
+nt4her5
+nth1in
+nth5in2e
+nt2i
+n2t4ib
+nt1ic
+n4t3ic.
+nt2i1c2i2
+n5ticis
+n5tic1iz
+n4ti4c5s4
+nt2ic4u4
+n3ti2d4
+n1tie2
+n1t2i1f2
+nti3fy
+n4tify.
+n4t2i2ff
+n1t2i1fi
+n1t4i2fl2
+n3t2ig
+nti2l3a
+nt5ilati
+n5t4ill2
+nt1in
+nt3i4ng
+nt5ing.
+n1t2i3p
+n4ti1pa2r
+n2t1is
+n4tis.
+nt3i2s1m4
+nt3is2t2
+n5ti1t2io2
+nt3iz
+n2tj
+n1t2o
+n3t2om
+nton1i4
+n5top
+n1tr2
+ntr2a3d
+nt3ral
+ntra2n
+n4tran2t
+n3trat
+ntr2e
+nt5re4s4s
+n2t3ril
+ntroll2
+ntrolle2
+ntrol5ler1
+n2t4r2y
+n5trym
+n1tu
+n3t2u1a2
+ntub5
+nt2up
+ntup2l2
+ntup5li
+n5tu4r
+n2ty
+n2u
+n2u1a2
+5n4uc
+3nud
+nud5i
+nu3en
+nug4a
+n2u3i2
+nu4is
+5nuk
+n4u1lo
+n3ult
+nul1tim5
+nu1m2e
+nu1men
+numen4t
+5numenta
+5numer1
+5nu1mi
+nun1
+3nunc
+nu3tat
+nut2i
+n5u2t1iv
+nu4t2o
+nu1tr2
+n3v2
+nve2
+n2vel3
+nv4e1n4e
+nven5o
+nver1
+nve2r1s2
+nver2s5a2n
+nvi4t
+n1vo
+nv2oc
+nvoc2a
+nvoc5at
+n5w
+nwi2
+nwin4
+n1wo
+n3w2om4
+n2x4
+2ny2
+5nyc
+nym5i2t
+nyth4
+n1z2
+nzy4
+2oa2
+o5ace
+o3a2ct
+oad5er1
+oad5i
+o3ag
+o2ak
+oak5er1
+o2ale
+o3ales
+oal4i
+oal5in
+o5al1it
+oa2n
+oan4t
+o2ap
+oap5i
+oa2r
+oar2e
+oar5er1
+oa2r2s2
+oar4se
+oast2
+oaste2
+oast5er1
+o2a2t5a
+oat5ee
+o4at5er1
+4oba
+ob2e
+o1be4l
+ob2i
+ob3i4ng
+2o1b2i3o2
+ob3it
+o2bl2
+o3bl2a
+ob1li
+4obo2
+ob3oc
+o5bol
+o5b2ot
+obr4
+o3bra
+obr2om4
+o2b5t
+ob3ul
+o3bus
+2oc
+oc2a
+o4c1ab
+o3cad
+oc5ag
+oc1al
+ocall2
+o5cal1li
+oc1at
+o4c5a2t1iv
+oc5a2to
+4o3ce2
+o4cea2
+o1cen2
+ocen5o
+o5ce4ss
+ocess4i
+o2ch
+och4e2
+och5in
+o1cho
+o3ch2o4n
+o3c2hr
+ochro4n
+o5chu
+o1c2i2
+oc2i1a2
+oci3ab
+oci4al
+o1cl2
+o2c2le2
+o1cr2
+oc2r2e3
+o2ct2
+oc2te
+oc1to
+ocu4lu
+ocum4
+oc5uo
+o1cus
+ocu4ss4
+ocus5si
+oc3ut5r2
+o1cy
+o5cy4t
+ocyt5o
+od3al.
+o3de4c
+o5de3g
+ode4ga
+o5d2e4n4d
+o3dent
+odes4
+od3ica
+o4d1ie2
+od2ig
+od3iga
+od4il4
+od1i4s2
+o3d2is5i1a2
+od5it
+5od1iz
+o2dl4
+od3li
+o2do
+od5o1lo
+odo4u2
+o2d5ous
+odr2
+o3dro
+od5ru
+o2du
+o3d4uc
+odu5cer1
+odu2ct
+o4duct.
+o4duc4t1s
+od3ul
+o2d2y
+o5dyt
+oe3a2
+oe1b
+oe4b2i
+oe5cu
+o2e4d
+o5ee
+oe5ic
+o2ele
+o3elec
+oell2
+oel1li4
+oelo4
+oe3o4p
+oep5
+o5eq
+o3er1
+oes3t2
+o1et
+o4et.
+oet3i
+oet4r2
+3oeu
+o3ev
+o3ex
+ofl2
+o3flu4
+ofl2
+o3flu4
+4o1fo
+o3fu
+o4ful
+ofun4
+2o1g
+o2ga
+o3g2a2m
+og5a2r5
+o3ga4s
+o3gen1
+o5gey
+o3g2i
+o4g2io2
+o2gn2
+og2n1a
+ogon1i4
+o4g2ot
+o1gr2
+o2gri
+o4g4ro
+o2g1s
+og4s2h
+o2gu
+o2gy
+o5gyr
+o1h2
+o3ha2
+oh1ab3
+o3he2
+oher1
+oh2er2e
+oher4er1
+o3ho4
+oh2y4
+2oi
+oi4c
+o3ic.
+o4i5ch
+o2i4d
+4oide
+o2ig4
+o2ik2
+oi5ki5
+oi2l3er1
+oil5i
+o2i4nd
+oin3de2
+o3i4ng
+oin1te
+oin4t5er1
+oin4tr2
+o2i4o2
+4ois
+o3i2s1m4
+oi4t
+oit1a
+oit4al
+o2ith4
+o1j
+ok1in
+ok4ine
+ok3l2
+ok5u
+ol2a
+ol4a4c
+o4lack1
+ol4al
+o5lali
+ol4a2n
+ola4n5d
+ol4as
+ol5ast2
+ola4te
+ol4at5er1
+ol1c2
+ol5ch
+ole2c4
+ol5e1c2i2
+ole1f
+ol5efi
+ole1fi
+ole2ff
+ole1fl2
+o3leo
+ole4on
+o3lep
+o2l1er1
+o3lest2
+o3leu
+o1l2i1a2
+ol3ica
+o3l4ice
+oli1c2i2
+ol5ic1iz
+ol5ick1
+ol3i4c5s4
+oli2d
+ol5id.
+oli2e2
+o3li1er1
+ol5i4es.
+o5l2i1f
+o5l2i2ff
+o5l2i1fi
+o5l4i2fl2
+ol4i4f3e
+o1l2ig
+oli5go
+o5lin1a
+ol3i4ng
+ol2io2
+oli5os
+ol5ip4
+ol1is4
+ol2it
+oll2
+olle2
+ol1li
+ollim3
+ol1lo
+ol4lop4e
+ol2ly
+ol4ly1i
+olm2
+ol3mi
+o1lo
+4o1l2oc
+ol2oi
+ol3o2i4d
+o4lon1a
+olo2n4e
+ol5on5el
+ol1or
+o3los
+ol1o4u2
+4ol1ub
+o3lu1mi
+olun1
+o5lun1te
+ol3us.
+o2ly
+ol2yp2
+oly3ph
+4olyt
+2om
+o1ma
+o4m1ab
+o2mac
+o2mal
+o1ma2n
+o4mane
+o3mas1t4
+o3mat
+o2m1b
+om4b2e
+om2e
+o2m2e4d
+ome4g
+o5meg5a1
+ome3li
+o1men
+o2m3en1a
+omen4t
+omer1
+o3meri
+om1i
+o3m2i1a2
+om1i2c
+om2i1c5r2
+omie2
+om4ie.
+om2il4
+om4i2ny2
+om2i4s1s4
+om2i2t
+o2m1m2
+omm2e4
+o4m1n2
+om2n1a
+omn1i3
+o1mo
+o4m2oi
+omoli3
+o2m4o4n
+om5o2ny2
+o4mos.
+om2ot
+omo2t5iv
+o2mo4u2
+om1p
+om2pi
+om5p2il
+om2pt2
+ompt5er1
+on1a
+ona4d
+on3ai2
+on2as
+o5nas.
+onast2
+onast5i
+onati4
+on5a2t1iv
+4on2au2
+on1c
+on1c2a
+onc1at3
+on2ch
+on4cho
+o4nd
+on2da
+5ond5a2r
+onde2
+ond5ent
+on3der1
+on3dr2
+on5d2y
+o2ne
+4onea2
+onec4r2
+4o2n2ed
+on1ee
+on5ell2
+o3neo
+o1n3e4ss
+on1et
+o4ng
+ong2a
+ong3at
+on4gu
+4on1h2
+on1i
+4o1n2i1a2
+on5ia2r
+2oni4c
+onic5a
+oni4c1al4
+on4i2d
+on2ie2
+on3ies
+on3i1f
+on3i2ff
+on3i1fi
+on4i2fl2
+o5n2i2g
+o1n2io2
+o4n2k
+on4k4s
+on1n4
+onne4
+4onnes
+on5o4di
+on5oi
+on2om
+o1no4m1i
+4o5nom1i2c
+ono3s
+on2ot
+o5not1a
+o4n1s2
+2ont
+onta2n
+ont4ane
+ont5a2ne.
+on1te
+on4ter1
+ont2i
+on1t2i1f2
+onti5fi
+on1t2i1fi
+on4t2i2ff
+on1t4i2fl2
+on1t2o
+onton5
+on1t4r2
+on4tr2e
+on2u
+on5u4r
+o5nus
+on3v2
+on1vo
+onvo2l
+onvo5lu
+on2z2
+2oo
+oof3er1
+o2o1i
+ook3er1
+ook3i
+oo4le
+ool5i2e2
+o2o4m
+oon3i
+oo2p
+oop1i
+oop4ie2
+o3o2p1t2
+oo4se
+oost2
+ooste2
+oost5er1
+o2o2t
+oot3er1
+o2oz
+ooz5er1
+o1pa
+o4p1ab
+o5pali
+o1pa2r
+opa5ra
+op4a2th5
+o5pec
+ope4n2s4
+op1er1
+3opera
+4opera4g
+o1pha2
+o4phe4
+oph4ie2
+o5phi4l
+o1pho
+op5hol
+o1ph2y
+o3phy2l
+ophy5l2a
+op1i
+op2ie2
+op3ies
+op5i4ng
+o3p2it
+4op2l2
+o1pl2a
+opl4as
+oplast4
+o1po
+o4p2oi
+opol3i
+op4o2n4
+o2p5o2ny2
+op5or1i
+opo4u2
+op2oun4
+o2p5ov
+o4p1p2
+op2p2l2
+op5pli
+o1pr2
+oprac4
+op3ra2n
+opr2e4
+opro4l
+op5r2op
+o2ps2
+op5so
+1o2p1t2
+op2ta
+op1u
+oqu4
+oq2ui2
+oqu2i1a2
+o5qui3al
+or1a
+or2ad
+or5a2do
+ora4g
+o5r2ai2
+or5al
+4ora4ls
+or2a2m4
+ora2n
+oran3e
+ora2to
+orat1or5
+or1b
+orb2i
+or2b3in
+or1c2
+or4ch
+orch3i
+or4du
+2or2e
+orea4
+or5ead
+ore5a2r
+ore5c2a
+ore3f
+ore3ff
+ore3fi
+ore3fl2
+ore3g
+or3ei4
+oreo5l
+or3e2sc2
+ore3s2h
+or3e4ss
+orest2
+orest5at
+or5este2
+or5e2t2t4
+ore4v
+5orex
+or1f
+or4fr2
+or2ff
+or1fi
+or1fl2
+or1g2
+or5gn2
+or1i
+4o4ri.
+or2i1a2
+or3ia.
+4oria2n
+ori4c2i2
+ori5ci2d
+orie2
+or2i1en4
+or3i1f
+or3i2ff
+or3i1fi
+or4i2fl2
+5or2ig
+ori5ga
+or4i4no
+or2i3o2
+4orio.
+or5ion
+4orios
+or2k
+ork5a
+2orm
+orm1i
+or2n2
+or3n4a
+orn1i
+5or1nis
+or3nit
+or3o2ne
+o5r2oo4
+or5ose
+or5oso
+or1o4u2
+o4r1r4
+orr2e
+orre2l3
+orres3
+o2r1s2
+or4sc2
+or2se
+or4sey
+orst2
+or4sti
+2ort2
+ort3a2n
+ort3at
+ort3er1
+or2t2es
+or5t4es.
+or3th2i
+or4t2h2r
+or4tit
+or2t3iz
+or1t4o
+or4t1or
+ortr2
+or5tra
+ort3r2e
+4or1u
+or4un1
+o2r2y
+or2y5p
+o3s2a5i2
+os3a2l
+osa2r5
+o1sc2
+os4ca
+os4ce
+o2s2ch2
+o4s1c2i2
+oscl2
+osc2le2
+osc2ler1
+osclero5s4
+o3sec
+osec3u
+ose5g
+os5enc
+o3se4n2s4
+os5eo
+oser4
+o2set
+os5eu
+o3s2i1a2
+osi4al
+osi4a2n
+os4i2d
+os5i4de
+osie2
+o3si1er1
+os5i1f4
+os5i2ff
+os5i1fi
+os5i2fl2
+o2s1in
+o4s1is2
+os2k2
+o5ske2
+o5son
+os2o2p
+o3soph
+os3o1po
+4osp
+o3spec
+os1pi
+o4ss
+os4sa
+oss5a2r
+os4s2it
+ost2
+4osta
+ost5age
+os4ta2r
+oste2
+os5tee
+os5ten
+osten5t
+ost1ic
+ost5ica
+os3til
+ost2om
+o5stom2e
+ost3or
+4osu
+os1u4r
+2ot
+ot3a4g
+o5tal1it
+ot3a2m
+ota2n
+otan1i
+ot4an3ic
+o3t2ap
+ot4a1t2io2
+o5t2a5v
+o3t4a4x
+o4t4ed
+oter1
+oter4m
+o2t2es
+otes4t2
+ot5est3a
+4oth
+otha4
+othal2a
+othal2a2m5
+othe2
+ot4her1
+oth5er3in
+o5therm
+otherm5a
+o5thor
+o5t2i2a2
+o5t4ill2
+ot1in
+ot2in1i
+5ot5in1iz
+o2t4iv
+o3t2iva
+o5tivi
+o1t2o
+o5to2n4e
+ot1or
+o4tor2n2
+o4to4u2
+4o1tr2
+otu4r
+otur1i4
+oty3le2
+o4u2
+5o2u3a2
+oub2
+ou5br4
+o4uc
+ou5c2a
+ou5c2o2
+oud5i
+4oue
+ou3e4t
+oug4
+ou5ga
+ou2gh
+ough2t
+ought5i
+ou5g2i
+oul4t
+oult5i
+ou3m
+2oun1
+ou4n2d
+oun2d5a
+ounde2
+ound5e4l
+ou4ng
+oun2g2i
+oun5gin
+oun3tr2
+o2up
+oup2l2
+oup5li
+ou4r
+our2e
+our3er1
+ou5sa2n
+2ouse
+5ous2i1a2
+ou4ss4
+out2i
+ou2t1is
+out5is2h
+ouv2
+ou4v5a
+o1v2a3le
+o5va2r
+4ovati
+o2vel
+ov5el3i4ng
+over1
+o4ver.
+o5ver3b
+ove2r3s2
+ov4ete
+ovi2d
+ovid5en
+o1vis
+ovis5o
+o1vo
+o2v5os
+ow3ag
+ow3a2n
+o5w4ay
+owd4i
+ow2d3l4
+ow1el
+owell2
+owel5li
+owh2
+ow5ha2
+owh2ith4
+ow1i2
+ow5in
+owi5n2e
+ows4
+ow5s2h
+ow5sl4
+ow5y2
+o4x
+ox3i
+oxi4c
+ox2i2c2o2
+oxic5ol
+ox5o
+2oy
+oy5a2
+o4y2s4
+2oz
+o1zo
+oz2o5i
+o3zy1g
+4pa.
+pa2ct
+pac4te
+pa2do
+pa5do4u2
+pad4r2
+pae4s4
+pa3ga2n
+4pag1at
+pag4ati
+p2ai2
+pain2
+pa2ir
+4pairm
+pal2a
+pa5la2n
+pal3in
+pa3lo
+p4a4ls
+pa2n
+pan2a
+pan5a2c
+pan1e
+pan3i
+p2ap
+p4a4pa
+pa3pe
+pap3u
+pa3p4y
+1pa2r
+para5s2
+par3l
+pa3r2oc
+pa3rol
+par5o4n
+1p4as
+pa4ss2
+pas4s1iv
+pass5ive
+pas1t2
+pas4t1in
+p4a3ter1
+pa2t3i4n
+p5a2to
+p2a2tr2
+pat1ri
+pat4ric
+patri1c2i2
+pa5tric2i1a2
+5p2au2
+paul5e
+pa2u3p
+p2av
+pa5vi4l
+5paw
+pawk4
+paw5ki
+2p1b
+p1c4
+p5d2
+2pe.
+pea2
+pea2r
+pear4l5i
+pe4c2o2
+pe2ct
+pec4tu
+2p2ed
+5ped3a
+3pede2
+3pedi
+ped3i4s1
+3pe4d1s2
+pe2du
+p4ee
+pe2f
+pe2ff
+pe2fi
+pe2fl2
+4p2ele
+pe5le3o
+pel5v4
+pen1a
+pen4at
+5p4enc
+p2e4nd
+pende2
+pend5er1
+pen5dr2
+pen1i
+pen4ic
+3p4en1n4
+pe4n2s
+pens2a1t
+pens5ati
+p4en5u
+pe5on
+per1
+5p2er1c2
+per1cen2
+per3cent5
+4p2er2e
+perem5i
+p4eri
+5p4er3n2
+p3eron
+per4os.
+pert2
+per5t1in
+per2t5is
+per3v2
+p4e2r2y
+2pes
+pe4s4s3
+pest2
+pe2sti
+pes5til
+3pet
+pet2a
+pet5all2
+pet3en
+pe2ti
+pet3r2
+pe4wa
+4pex
+p1f
+p2ff
+p1fi
+p1fl2
+p5g
+2ph.
+pha2
+4phae
+pha5g2e4d5
+ph5al.
+ph2a2n
+phan4t
+phant5i
+phe4
+ph5esi
+ph3et1
+3phib
+4ph1ic
+1phi4l
+ph1i4n
+ph1is
+ph2i5th
+p4h2l
+1pho
+4pho2bl2
+ph2o4n
+pho2ne
+4ph4o2n2ed
+3phor
+phor1i
+ph5or1iz
+ph4os3p
+ph3o4u2
+p2hr
+3phra
+4p2h1s
+1phu
+ph2u5i2
+ph2y
+2phy.
+3phy2l
+4pi.
+p2i1a2
+3pia2r
+4pica
+p5i4c1al
+p2i3c2o2
+p2i4cr2
+pi2ct4
+p2ie2
+p4i1es2t2
+p2i1et
+pi5eti
+p2i1f
+p5ifie2
+p2i1fi
+p5ifie2
+p2i2ff
+p4i2fl2
+p2ig
+pi2g3n2
+p2il
+3pile
+pill2
+pil1li
+pil2l5in
+5pilo
+pi3l2ot
+pim2
+pin4e
+pin5et
+pi4ng
+3p4inge
+p4in1n4
+5p4i4n1s2
+3p2i1o2
+p2ip
+pip4a
+pi4pe
+5p2iq
+p2ir
+pir1a
+pir5a4c
+pir4t2
+p4is.
+p4i2s3c2
+p2i4s2s
+pis1s5a
+pist2
+pis5til
+pis4tr2
+p2itu
+2p3k2
+p2l2
+1pl2a
+pla2n
+pla5n1o
+plan2te
+plant5er1
+pl4as
+plast2
+plast1ic
+plas5t2i1c2i2
+pla5t4o
+4p4le.
+p2l2ed
+4pled.
+3pleg
+3plen
+2ples
+pl1is
+4pli2s1m4
+4plist2
+plu2m
+plu2m1b
+plum4b2e
+plumb5er1
+p4ly
+2p1m
+2pn
+pnos4
+1po
+4po.
+p2oc
+po3c2a
+3pod
+4pof
+4po2ff
+4pofi
+4pofl2
+p2oi
+2p5o2i4d
+p4ois
+pois5i
+po5lem1ic
+po4ly1
+pol4y3s
+p2om
+po1ma
+po1ma2n5
+pom4e
+p4o2n
+pon1a
+pon4a2c
+pon1c
+pon4ce
+pon1i
+pon4i4e2
+3pon3i1f
+3pon3i2ff
+3pon3i1fi
+3pon4i2fl2
+p2ont
+pon5ta
+2po2ny2
+po4pa
+p4op2l2
+po5ple
+por1a
+4pora2to
+p2or2e
+por3ea4
+4po2r4ed
+por1i
+por3i4f
+por3i4ff
+por3i4fi
+por4i4fl2
+por3p
+3p2ort2
+por5tie2
+3p4os
+po4s1s2
+p2ot
+po1te
+po4u2
+poul4t
+poul1t5e
+p2oun1
+pou4n2d
+pounde2
+pound5er1
+pout5er1
+po4x
+p5ox3i
+5p2oy
+4p1p2
+p1pa2r3
+ppar1at5
+p4p4ene
+p3pet3
+pph4
+ppi4c
+pp2l2
+p4p2l2ed
+p5p2ler1
+p5p1let
+p1pr2
+ppr2e
+ppre4ss
+ppres2s5o
+ppr4ob5a
+1pr2
+prac1
+pr2a5d
+pra2r4
+pr2e
+4p4re.
+pre1b3
+p2r4e1d
+pre1f
+pre2fe
+prefer1
+pr2ef5er2e
+pre2ff
+pre1fi
+pre1fl2
+pre1l2a
+prel5a4te
+3prem
+pre5mat
+pren3
+pres3a
+pre2sc2
+pres1c2i2
+pre5scin
+p3rese
+pre4ss
+5pressi
+5pri1c2i2
+prie2
+pri4es
+4pri4m
+pri4ng
+pr4inge
+pring5er1
+pr4in2g5i
+4pr2i3o2
+p5r4i1ol
+pri4os
+pri2s5in
+pr2i4v2
+4pr2iva
+4p4ro.
+pr4o3bo2
+pr2oc
+p3roc3a
+pro4ch
+pro1l
+pron4a
+pr2op
+pro4ph5e4
+pro2p4y
+pro3pyl5
+pro3r2
+pros4i
+prost2
+pros5tr2
+pr2ot
+pr4o3th
+4p2r2y
+2ps2
+p3sac
+psa2l
+ps4al5t
+p3s2h
+p1si
+p2sin
+p5sin.
+p1s2o3m
+p1st2
+p1s2ul
+psul3i
+ps2y
+3psy1c
+2pt2
+p2t3ab
+p4tad
+p4ta2n
+p2ta2r
+pt5ar1c2
+p1t4ed
+p5ten1a
+pt5en1n4
+pter1
+5pte2r2y
+p5tet
+pt4ic
+p5tie2
+p3til
+p2t3in
+pt4ine
+p2t1is
+p3tise
+p5tisi
+p5t2om
+p4tr2
+p1tu
+pub1
+pu5b2e
+p4uc4
+pu4ch4
+pudi4c
+pu5er1
+puf2
+pu2ff
+puf1fe
+puff5er1
+pu2ff
+puffe
+puff5er1
+pufi
+pu3fl2
+pu1l2a
+pu4la2r
+pu5lar.
+pul2i
+pu5l1is
+p4u4m
+pu1m4o
+p4un1
+pu4n4a4
+3punc
+pu4ng
+pun5g2i
+pun3i
+pun2t
+p2up
+pu3pi
+pu4r
+pur5b
+pur3c2
+p4us
+pus2h
+push4ie2
+pu3tat
+put2i
+p5u5t1is
+pu3tr2
+4p1w
+2p4y
+py3e
+3py1g
+3pyl
+pyr3e
+py5t
+4qf
+4q2ff
+4qfi
+4qfl2
+qu4
+q2ua2
+5qu2ak
+4qua2r
+qua5t2io2
+2que.
+quer1
+3quer3a
+4qu2er2e
+4qu4es.
+1que4t
+q2ui2
+5quin1a
+5qu2ir
+3quito
+4quitu
+4ra.
+r1ab
+r2a3ba
+5r2ab2e4
+3r2a3bin
+r2abo2
+ra3bol
+rac4a
+r2acu
+rac5u1l2a
+ra5cu1lo
+r2ad
+ra4de
+ra2d1in
+rad4in4e
+ra2g5o4u2
+ra3gr2
+r2ai2
+3raill2
+ra5ist2
+4ral2i1a2
+r2a3ly4
+r2a2m
+r5a4m1n2
+ra3mu
+ra2n
+ra4nd
+r4andi
+randi4s1
+ran5dis2h
+ran4du
+ra5nee
+ra4ng
+ran4gen
+ran1i
+ra3n2i1a2
+ran1o
+ra3n2oi
+ran2t
+ran2te
+ran5t4ed
+5ran3te2l
+rant2i
+rant5in
+ran1t5o
+r2ap
+ra1po
+rapol5
+ra2pt2
+rap5to
+ra2r
+4rar1c2
+rar2e2
+rar3e1f
+rar3e2ff
+rar3e1fi
+rar3e1fl2
+rar1i
+rar2i1a2
+rar5ia.
+ras2
+r2as3c2
+r2as2e
+r4as2k2
+r2a3so
+ra4ss2
+ras1s5a
+ras2s5in
+rast2
+r4as5te2
+r2a2ta
+ra5t2a3p
+ra5ta3t4
+rat5eu
+r4a2th
+rath4e2
+ra2t3i1f2
+ra4t3i2ff
+ra2t3i1fi
+ra2t4i2fl2
+ra2t3in
+rat4in.
+ra2to
+ra5t2oc
+5r2a5tol
+4r4at2om
+ra4tos4
+r2a2tu
+ra5t2u1i2
+rat5u4m
+rat3u4r
+r2av
+rav5ai2
+ra2vel
+rav5eli
+rav3i2t
+rawn4
+r2az2
+raz1i
+ra3z2ie2
+r1b
+r2ba
+r4bag
+rb3ali
+rb1a2n
+rba2r3
+r2b2e
+rbe5c
+r3bel
+rbel5o
+rb3ent
+r4be1s2
+rb2i
+rbic4
+rb2ic5u
+r2bin
+r5bine
+rbit1
+rbo2
+r2bos
+r4bum
+rbu5t4
+r1c2
+rca2n
+rcant5
+rca4s
+r4c2ele
+r1cen2
+rc4ene
+rce2n5er1
+r3cent
+rcen1te
+rcen5ten1a
+r2ces
+r2ch
+rcha2
+r3ch2a3i2
+rch3al
+rcha2r
+rch5ar4d
+rch5ate
+rche2
+r3cheo
+r4ch1er1
+rchie2
+rch4i1er1
+r4ch1in
+rch3is
+r3chit
+r1c2i2
+r3cil4
+rc2ino
+rci5n2o1g
+rcis2
+rc1iz
+rciz4i2
+r2cl2
+r4c2le2
+r5clo
+r1c2o2
+rco1lo4
+rcr2
+rcrit5
+rcriti4
+r2ct4
+rc5ti
+r5d2a2m
+r4d1a2n4
+rd4an.
+r2da2r
+r5de4l
+r3de4n2s
+r4des
+rd5e4ss
+r1d2i1a2
+rd5ia2n
+r4die2
+r5d2ig
+r2d2in
+rd3i4ng
+r3d2i3o2
+rd1i4s2
+r2dl4
+rd5ler1
+rd3li
+r1do
+r4dol
+rdo4u2
+r2d5ous
+r2e
+4re.
+rea4
+r4ea.
+re1a2ct
+reac2t5iv
+re3af
+re3a2ff
+re3afi
+re3afl2
+re3a4g
+re5alt
+re2a2m
+re5a2m1b
+rea2n
+re3an5i
+re5ant
+re5asc2
+re2as3o
+r5e2au3
+3re2av
+re1b
+re2br4
+reb1ra
+r5ebrate
+re4b5uc
+rec2a
+re3c1al
+rec1c4
+rec4ce
+re3ce
+re2c2ed
+re3cede2
+reced5en
+re2ch
+re3cha2
+re1c2i2
+reci5si4
+r4e1c2r2
+re2ct
+rec4t3r2
+re3cu
+2r4ed
+re1de2
+re3di4s1
+re1do
+re4dol
+re1dr2
+re2ed
+reed5i
+ree3m
+3reer1
+re1f
+re2fe
+re2ff
+re1fi
+re1fl2
+re3fin
+re3fin
+re5gali
+re2gr2
+re5gra
+r2e3g4r2e
+reg3ri
+re3g4ro
+reg3ul
+rei4
+r4e3i1f
+r4e3i2ff
+r4e3i1fi
+r4e4i2fl2
+re1in
+r4e3is
+reit3
+reit4i
+re1l2a
+r2e1le
+4r4e4l2ed
+re3l2i1a2
+rel3ic
+re5l2ig
+rel2i4q
+rell2
+rel3li
+r5em.
+rem5ac
+re1ma2n
+rema4n4d
+rem5a2to
+r3em1p
+rem5ul
+ren1a4
+ren5at
+r2e4nd
+r4endi
+r4ene2
+ren4es
+r4en1i
+ren3ic5
+ren4it
+ren1te
+ren4ter1
+r4en2u
+re5num
+re3oc
+3re2o1g
+reo2l
+re5ol2a
+re3oli
+3reo1s2
+re1pe
+re4per1
+re5ph1
+rep5i2d
+re3pin
+rep2l2
+re3ple
+re1pr2
+r2e4pr2e
+re1q
+rer1
+rer4a
+r2er2e4
+re5rea4
+r2e3r2u
+2r4es.
+re2sc2
+re3scr2
+re3se4l
+re3sem
+re3ser1
+res1is2
+res5ist2
+re5s1it
+re3spe
+r3esq
+rest2
+re5stal
+reste2
+rest5er1
+re5s1tu
+ret2a
+3reta2r
+re3ten
+re4t4er3
+re5term
+re1t2o
+re5ton
+retr2
+re3tra
+r2e3tr2e
+re5t1ri
+re3tu
+re3un1
+reu4r4
+re1v
+re2v3el
+revi4t
+r1f
+r2ff
+r1fi
+rfl2
+rf4l2
+r3fu
+rfu4m
+r1g2
+r4gag
+rgal4
+r2ge
+r5gee
+r3gen
+r4g4ene
+r3ge4o
+r3ger1
+r2gl2
+rg5li
+rgu5f2
+rgu5ff
+rgu5fi
+rgu5fl2
+rh2
+rhe2
+r5hel4
+rhe5o2l
+rhos4
+3r2h2y
+4ri.
+r2i1a2
+ri3a2m
+ri5ap
+2r2ib
+r4i3bo2
+ric1at
+ric2a5t4u
+2r4ice
+r4i2ch
+ri1cho
+rich5om
+r2ick1
+ric4ke
+rick4en
+r4icl2
+ri5cli
+r2i2c2o2
+ri3col
+ri5cor
+r2i1cr2
+ri4cra
+2r2icu
+ri2d
+rid1a
+rid4al
+rid4e
+rie2
+ri5el
+ri3er1
+ri2es
+r2i1f
+ri2ft
+rift5er1
+r2i2ff
+r2i1fi
+r4i2fl2
+rif5tie2
+ri3fu
+5rifug4a
+r2ig
+ri5g2a2m
+riga2n
+rig5ant
+ri5l4a
+r4ile
+rill2
+ril2ler1
+rill5er.
+ril1li
+ril2lin
+rilli4ng
+rill5in2g1s
+4rim.
+ri2ma
+rim2a4g
+ri1m5a2n4
+rim3at
+r4i2m1b
+rim2e
+ri1men4
+4ri2m1m2
+4ri4m1s
+rin4e
+r4inet
+ri4ng
+r4in2g2i
+ring5ie2
+r4i4n2k
+rink5er1
+r4ino
+ri4n4s2
+rin3s5i
+rin1te
+rin4t5er1
+r2i3o2
+ri2o4g
+5rio2ne
+ri4op
+ri5or
+r2ip
+ri5p2a
+ri5p2ie2
+rip2l2
+rip5lica
+r2i5r
+ri2s4c2
+r4is4is2
+r2is1p
+ris4pa
+ris4pe
+rist2
+riste2
+ris5ter1
+4risti
+r2i3ton
+r5it5r2
+r2i4v
+r2iva
+riv4al
+ri5vall2
+ri2vel
+riv5eli
+riv3en
+riv3i4l
+r1iz
+5r2i5zo
+r1j
+r2k
+r5kas
+rk5ati
+r5kell2
+rk5en1i
+rk1er1
+r3ket
+r3key
+rkie2
+r3ki1er1
+r5ki1es2t2
+rk1in
+r5k2in.
+r5k2i4n1s2
+r4k1s
+rk2s1m4
+rks4m2e
+r1l2a
+rlat3
+r1le
+r3l4ic
+r3l4ine
+r5li4n1s2
+r4l1it
+r1lo
+r3mac
+rma5ce
+r5mad
+r2mal
+r1ma2n
+r4manc
+r4man1o
+r1ma2r
+r4mar1i
+r4ma2r2y
+rm4as
+r4m3ati
+rma2to
+rma5t2oc
+r5m2a5tol
+rm2e
+rme2a2
+r2m1ic
+rm4ica
+r5m2i2d
+rm4ie2
+r5m2ig
+rm2il5
+rmin4e
+rm3i4ng
+r4ming.
+rmi2t
+r4mi4te.
+r1mo
+r3m2oc
+rmol4
+r1mu
+rmu3l2i
+r2n2
+rn1a
+rn3ab
+r3na2c
+r5nad
+rn5a2r
+rn3ate
+rnati4
+rn5a2t3in
+r2n2ed
+rn5e2dl4
+r3nel
+r3ne4ss
+rn5est2
+r3net
+r3ney
+rn1i
+r5n2i1a2
+rn5ib
+r3nic
+rn3in
+rn4ine
+r1nis
+rn3ist2
+rn2i5v
+rn3iz
+rn5n4
+r3n2oc
+r5n2o1g
+rnt4
+rn2u
+r5n4uc4
+r5nut
+4ro.
+ro4b2e
+ro2bl2
+rob3le
+ro5br4
+r2oc
+5roc1c4
+ro3cu
+r2od
+ro3do
+ro2d2y
+ro3dy4n1
+ro1fe
+r2o1g
+ro3gn2
+4r2oi
+ro3i4c
+ro2i4d3
+ro3l2a
+r4o2l2ed
+rol2it
+rol5ite
+ro3ly
+r2om
+ro1ma
+ro1ma2n
+romant4
+rom2e
+ro5mel
+rom1i
+ro3m2i2t
+ro1mo
+romole2c5
+rom4p
+ro3mu
+ron1a
+ron4a2c
+4ronal
+ro5nate
+ron1c
+ron5ch
+ro4nd
+ron4do
+ro4ng
+ron2g5i
+ron3m
+r5onm2e
+ro1no
+r2ont
+ron1t2o
+ron4ton5
+r2oo4
+1ro2o4m
+5ro2o2t
+r2op
+4rop.
+ro3pel
+rop1i
+rop4in4e
+r4o1pr2
+r1o2p1t2
+r5opte
+ror5d
+4r2or2e
+r4osa
+ro3s2i4a2
+ro5s2ol
+4ro4ss
+rost2
+r4osta
+ro5stat
+ros4ti
+ros5tit
+r2ot
+ro3tat
+ro1te
+ro4ter1
+ro3tu
+ro4u2
+5r4oue
+roul3
+r2oun1
+rou4n2d
+rounde2
+round5er1
+r2ouse
+rou5sel
+4rou4ss4
+r4out
+r4ow
+row3er1
+4ro4x
+r1p4as
+rpa4ss2
+rpas2s5in
+rp3at
+rpe2
+r3pent
+rper1
+rp5er.
+r2ph
+rph5e4
+r1pho
+r3phol
+rp3i4ng
+rp5is
+r1po
+rpol3a
+r2p5o4u2
+r1pr2
+rpr2e4
+rpre4t5er3
+r3pu
+r1q
+4r1r4
+rr2a4h
+rra2n
+rra4ng
+rran5g2i
+rr2ap4
+rr2e
+rre2l
+r4reo4
+rrh2
+rrhe3
+r3ri
+rric4
+r2r2icu4
+rr2i1f
+rri3fy
+rri4fy.
+rr2i2ff
+rr2i1fi
+rr4i2fl2
+rri4ng
+rr4in5ge
+rr2i3o2
+rri4os
+rrob3
+rr2o1g5
+rr2o4t
+r5ru
+r2r2y5
+r3ry1i
+r3rym
+2r1s2
+r4sa4g
+r2sa2l
+r5sal1is
+r5sal1iz
+r2sa2n
+r4sa2r
+r2se
+r3se2a2
+r3sec
+rsel4
+rsell5
+rser1
+rs3er.
+2r1s3e2r1s2
+r3set
+rs2h
+r3sha2
+r3shi
+r4shie2
+r5s2i2a2
+r4s3ib
+r5sie2
+r4sil
+r2sin
+rs3i4ng
+r3s2io4
+r4s1it
+r4s3iv
+r2sl4
+rs5li
+rst2
+rst1or4
+rstr2
+rstrat4
+r3su
+r4sus
+rsw2
+rswea2
+rswea2r4
+rt2
+r2t3ab
+rta4g
+rt3age
+r3ta2r
+r4tar2e
+r2t3c2
+r1t4ed
+r4te2dl4
+r3te2l4
+r5t2e4nd
+rt3en1i
+rter1
+r2t2er2e4
+r5ter3er1
+r5tet
+r5teu
+rthe2
+r4th4ene
+rth2i
+rth1in
+rthi4ng
+rth5ing.
+r1t2h2r
+rth3ri4
+r1t4ic
+r4ticl2
+rtie2
+r5t2i1et
+r5ti2l3a
+r5t4ill2
+rtil5le
+rt5i2ly
+r2t1in
+r3tin1a
+rt3i4ng
+r3titi
+rti5tu
+r2t3iv
+r2t1iz
+r2tl
+rt5let
+rt3li
+r1t4o
+rto5l
+rtr2
+rt5ri2d
+r4t1s
+rt5s2i
+r1tu
+r4tus
+rt1w
+rt2wi2
+rtwis4
+r2u3a2
+r4ub2e
+rub3r4
+r4uc
+ru4ce
+r2ud
+rue4l
+r4uf2
+r4u2ff
+r4ufi
+r4u3fl2
+r2ui2
+ru3in
+ruis5i
+ru2l
+r4um2e
+r4u1mi
+ru1mo
+ru4m2or2e
+run1
+run4c2l2
+run1cu4
+runcul5
+ru4n2d4
+run2e
+ru5net
+ru4n4g
+run4t
+r2u2p
+rup2l2
+rup5lic
+ru3pu
+ru4r
+rur4i
+rus4p
+r4ust2
+rust5at
+ruste2
+rust5ee
+rus5t4ic
+rus4t5u
+ru3tal
+ru3t2i
+r1v2
+rva2n
+r4vanc
+r2ve
+r2vel
+rvel4i
+r3ven
+rv4e1n4e
+rver1
+rv5er.
+rve2r1s2
+rv5ers.
+r3vest2
+r3vet
+r3vey
+rvi4t
+r1w
+2r2y
+ry5er1
+ry1g
+5ry2g1m4
+ry4go
+ry2m4b
+ryn1
+ry4ng4
+3ryn1go
+4ryn4gol
+r2yp
+ryp5a
+ry2t
+ryth4i
+r2z
+2sa.
+2s1ab
+s3a2bl2
+5sack1
+sac4q
+s3a2ct
+sac4te
+sad5i
+sa2d5o
+5sae
+sa4g
+3s2ai2
+sain4t
+5s2ak
+sa2l
+sal2a
+sa5l4ac
+3s2ale
+sa3lie2
+s4al4t
+sa3lu
+s2a4m
+sam1i
+sa5min
+sa1m5o
+sam2p4
+sa2n
+san3a
+sa4nd
+sande2
+san4d2ed
+s4an4e
+sa4ng
+sang2a
+san5ga2r
+san1i
+san5i3f
+san5i3ff
+san5i3fi
+san5i3fl2
+2sant
+san1t4r2
+sant5ri
+s3ap
+sa2p3r2
+sa2r
+sa2r5s2
+3sas.
+sa4s3s2
+sassem4
+s2a1t
+sa2te
+s5a2t1iv
+sa2to
+sat1or
+s5a4to2r2y
+s2a2t1u
+1s2au2
+s4a4uc
+sau5c2i2
+sau4r5
+s2av
+savi2
+sa1vo
+sa3vo4u2
+4s3b
+sb2e
+s4bei
+sbe4s2
+s2by3
+sc2
+s1ca
+sc1al
+sc2ale
+sca5len
+s1c2a2p
+s1ca2r
+scar4c2
+sc2av3
+s1ce
+s4c2ed
+4scei
+4s4ces
+s2ch2
+s1c2i2
+sci2d5
+s2c2o2
+scof4
+sco2ff
+scofi
+scofl2
+s4c2oi
+3s4cop4e
+scop1i
+5scopic
+scr2
+scr2ip
+scri2pt2
+5scripti
+2s1cu
+s1cu4r
+scur1a
+4sc4u4ra.
+4scuras5
+2s1d2
+2se.
+se2a2
+s4e2a2m
+seas4
+sea3w
+sec4a
+sec5a2n
+se2c2o2
+secon4
+2s2ed
+se4da
+sed4it
+3se2ed
+3sei
+se2i3g2
+5sel2a
+4s2ele
+se3lec
+selen5
+5self
+5sel2ff
+5selfi
+5selfl2
+2s4e1m2e4
+sem2i
+semi5d
+se1m4o
+se4n5g
+3se4n2s
+sens2a1t
+sen5sati
+sen5sor1i
+sen1te
+sent5ee
+5sen4t3m
+seo2l
+seo1lo
+seo5l2o1g
+se2p
+se1p3a
+se2ps2
+sep4si
+3se2pt2
+sep3ti
+ser1
+ser4a2n
+s2er2e
+ser3en
+se5r4en4e2
+sert2
+ser4t4o
+ser1v2
+4ser1vo
+s2es
+4s4es.
+se5s2h
+sest2
+s5esta
+1set
+5s4eum
+3sev
+sev3e4n
+se1wo4
+3sex
+sex1o2
+3sey
+2s1f
+2s2ff
+sfi4
+2s1fl2
+s1f2a
+sfa2ct2
+sfac2t5o
+sfi4
+s1fo
+sf2or5e
+s1fr2
+sfra2n5
+2s1g4
+s2h
+sha2
+4sh1ab
+sh4abi
+she2
+sh1er1
+sh5et1
+shi4l
+shill2
+shil5li
+sh1in
+sh2in2e
+shine4s
+sh5i1ne4ss
+sh3io2
+5sh2i2p
+s3h2o4n
+4shu4
+sh2y
+sh4y2s4
+s2i1a2
+si4all2
+siast5
+4s1ib
+s3ic1at
+3sic1c4
+2s5icl2
+s2i4cu
+si5cul
+s4i2d
+4sid.
+si4de
+side5l
+sid3en
+sider1
+si1d5eri
+4si4d1s2
+si1du
+5sid5u4a2
+sie2
+si1er1
+si4e2r1s2
+s2i1f4
+si2ff
+s2i1fi
+s4i2fl2
+si2f5f
+s2i4g
+1sili
+sim1p
+simp2l2
+sim4p4ly
+2sin
+s2ine
+sin5et
+si4ng
+s4inge
+5sing5er1
+s2in3i
+5s4i4n2k
+s2ino
+si5nol
+s2in2u
+si3nus
+1s2io4
+4sio.
+si5o5s
+3s2ip
+si4pr2
+s1is2
+4sis2h
+4si2s1m4
+sist2
+s4ist3a
+si4s1t3o
+s1it
+si4te
+sit5om
+4s1iv
+5s2iva
+s1j
+s2k2
+4sk.
+s5ka2r
+ske2
+s3ket
+s5key
+skie2
+s3ki1er1
+s5ki1es2t2
+ski2l
+sk5i2ly
+sk1in
+sk5ine4s
+4s4k1s
+s3ky3l
+2sl4
+sl2a
+sla2n
+sla4ng
+slan2g5i
+s1lat
+3sl4au2
+sl2av
+slaver1
+slav5eri
+s2le
+s5lea2
+s3let
+s5ley
+s3l1it
+s1l2o3c
+slov5
+s5l4uc
+2s1m4
+s3ma2n
+smas4
+sm2e
+s3men
+sm2i3g
+smi2t
+3sm2ith
+s1mo
+smo4d1
+smu5ta1t2io2
+s1n2
+s2n1a
+2so.
+2s3od
+so2d3o
+so2d2y4
+3soe
+s2oi
+4s3o2i4d
+s2ol
+sol3a
+so5l4a2n
+so2l4er1
+so3lic
+3solve
+solv5er1
+1s2o2m
+so1ma
+so3mat
+soma5to
+som2e
+3so2me.
+so1me2t
+so5met1e
+so3mo
+s2on1a
+son5at
+s4o2ne
+son5or
+s2o2p
+sor1i
+4sor3ie2
+5sor2i3o2
+sor4it
+s5or1iz
+sor3o
+s3o2r2y
+sos4
+4sose
+s2ot
+s4o5th
+3so4u2
+sov5e
+so3vi
+s1p4as
+spas1t4
+spe4n2s
+spens5a
+4speo
+sper1
+3sperm
+s5pero
+spe2r1s2
+spers5a
+sph2
+s3pha2
+sphe4
+3spher1
+sp2icu
+spic5ul
+s2pi2d
+sp5id.
+sp2ie2
+s5pi1er1
+sp2il
+spil4l2
+s2pin
+sp3i4ng
+sp2i5n1i
+spit1a
+spital5
+s1p2l2
+sple2
+s4p4ly
+s2po
+5sp2om
+sp4o2n
+spo4ng
+spon5g2i
+3spo4n1s2
+sp2oo
+3spoon
+s1pr2
+spr2u5d
+s4p4y
+s1r
+sr2e2
+sreg5
+sre1p5u
+sre4s
+4ss
+s1sa
+s5s2a4m2
+s1sel
+s5se4n5g
+s3sent
+ssen1te
+ssent5er1
+sser1
+ss3er.
+s5seri
+ss3e2r1s2
+s5seu
+s3sev3
+s3s2i1a2
+s1sic
+s1s2i1f4
+s1s2i2ff
+s1s2i1fi
+s1s4i2fl2
+s2s1in
+ss4in.
+s4s2ine
+ss1is2
+ss4is.
+s3s2it
+s4s1iv
+ss4ivi
+s2sl4
+ss5li
+s2s3m4
+s4s1n2
+s1so
+ss2ol
+ssol3u
+ss4ol1u4b
+s4s2or2e
+ssor1i
+ssor2i1a2
+ssor5ial
+ss5po
+s1su
+ss3w2
+st2
+4st.
+s2t1ab2
+sta3bi
+4s1t2ak
+s4t2ale
+sta2n
+stant2i
+stan2t5iv
+s3tas.
+5stat1i2c
+s2t3c2
+ste2
+stea2
+ste5a2r
+ste5at
+s4te1b
+s4tec
+4s1t4ed
+s4te2dl4
+s4te4d1n2
+ster1
+4s2t2er2e4
+s1teri
+ster4i1a2
+ster2n2
+s4tern.
+s3tero
+s2t2es
+st5es4t2
+s1th
+s4tha4
+s4thu
+s3t2i3a2
+st1ic
+3st2ick1
+s3t2ic1u
+st4ill2
+stil5ler1
+s4ti2ly
+st1in
+st3i4ng
+5s4t2ir
+s5t1iz
+4s2tl
+st3ler1
+st3li
+s4toe
+3ston
+sto2n4e3
+ston1i
+ston4ie2
+st1or
+stor1a
+s5torat
+stor1i
+stor2i1a2
+st4or5ia2n
+s4tose
+s2to4u2
+str2
+s4tr4ay
+str2e4
+strep3
+3st4r4uc
+str2u5d
+2s4t3s
+s1tu
+s4tud
+stu4m
+stu4r
+stur4e
+4st1w
+s4ty
+1styl
+4su.
+s2ua2
+su5a2n
+su4b1
+su2b1t2
+s4uc
+su2ct4
+sud4a
+su3e4t
+suf2
+su2f3f
+su2ff
+sufi
+su3fl2
+sug3
+3s2ui2
+su2i5c
+su5i4ng
+1s2ul
+s4u2m
+su1m3i
+sun1
+su4n4a4
+s2up
+su5pe
+su3pin
+su2pr2
+supra3
+su4r
+sur1a
+sur4as5
+sur3c2
+s4ur1g2
+sur3p2l2
+su5su
+su5z
+2s3v
+sver1
+sve2r1s2
+svers5a
+sves4
+svest2
+sve2st5i
+sw2
+5swee
+swell2
+swel4l5i
+swer1
+sw2er2e
+4sw4e2r4ed
+2s1wo
+s2y
+4sy.
+s4y1b
+sy4b2i
+sy1c
+sy4ce
+sy2ch
+sy4c2hr
+sy4d4
+1syl
+3syn1
+syn5e
+s2yp
+sy2ph
+sy5pho
+syr5i
+2ta.
+2t1ab
+ta2bl2
+ta5blem
+3tabli4
+t2abo2
+ta3bol
+ta4bo4u2
+t4a3ce
+ta2ch
+ta1cho
+ta5ch2om
+ta3ch2y
+t2a1c2i2
+ta4ci2d
+t5ade
+tad4i
+5t2ad1j
+ta2do
+ta5d2or
+tad2r2
+tae5n
+taf4
+ta2ff
+tafi
+tafl2
+tage5o
+ta5g2o1g
+3ta2gr2
+3t2ah
+1t2ai2
+3tail
+2ta2ir
+t4ais
+1t2ak
+tal2c2
+t2ale
+tal5ent
+ta5lep
+t4al2i1a2
+t4al1in
+tall2
+tal4l3a
+5tal1lu
+t2alo4
+t2a3ly4
+t2a2m
+ta1ma2r
+tam5ar1i
+tam2e
+5ta3me2t
+ta1mo
+ta3morp
+tamor2ph5
+ta2n
+tan2a
+tan5at
+ta4nd
+tande2
+tand5er1
+t4ane
+5tanel
+tan1i
+tan5ie2
+t5an1iz
+tan2t2a
+ta2nt5a2n
+t2ap
+t4a4pa
+ta2r
+1tard
+tar1i
+tar2i1a2
+tar5ia.
+tar2k
+tark5i
+tar3n2
+3t2a4r1r4
+tas3i
+t3a2s1m4
+5ta4ss2
+tas4t2
+t2a3sta
+tast5i4c
+t4ateu
+3ta2t1is
+ta2to
+t4a2to.
+tat4o4u2
+t2a2t4r2
+t2a2tu
+ta1t3ut
+t2au2
+tau3t2o
+t5awa
+tawn4
+t4a4x
+4t3b
+2tc2
+t1ca
+tcas4
+t2ch
+tche2
+tchet1
+tch5e2t2t4
+tch5u
+4t1d4
+4te.
+te2ch
+te5cha2
+5tec2h1n2
+te3cr2
+t4ed
+te5d2a
+4ted1d4
+4te1do
+4tee1i
+te2g
+te1g2i
+5tegic
+t3ego
+te2g1r2
+teg3u
+tei4
+te2l
+t2ele
+4t4e4l2ed
+tel5iz
+1tell2
+4te3lo
+3te4ls
+tem3a
+4te1m2e4
+te1mo
+t4e5m4on
+ten1a
+ten4ag
+4te2n3a2r
+4t4ene
+t5en3m
+ten1n4
+5tenn1a
+4ten1o
+te5n2o1g
+tent4a
+te2o
+teo5l
+2tep
+te3pe
+tep5i
+ter1
+tera4c
+t4era4g
+t4era2to
+3ter3b
+5t2erd
+2t2er2e4
+ter3e1b
+ter5ec
+5terel
+te3reo
+3tere4s4
+1teri
+ter3i1a2
+ter5i2d
+ter5i1f
+ter5i2ff
+ter5i1fi
+ter5i2fl2
+t4er3in
+ter2i3o2
+teri5or
+terior1i
+ter5iorit
+t4er3i2t
+ter5k4
+ter2n2
+tern1i
+5tern3it
+ter5no
+3te4r1r4
+2t2es
+4t4es.
+tesi4
+t3esq
+te4ss
+t3ess.
+t5ess2es
+tes4t2
+test3a
+5teste2
+test5er1
+te2sti
+test5in
+test5or
+tes5tu
+teti4
+tet1r2
+tet1r5o
+te1wa
+tew3a2r
+3tex
+2t3f
+2t3ff
+2t3fi
+2t3fl2
+t3g
+2th.
+tha4
+th5al.
+thal3m2
+the2
+4t4he.
+4th2ea2
+th5eas
+4th2ed
+1th4ei
+3theo
+theo3l
+t4her1
+5ther2ap
+th5er1c2
+t5h2erd
+th2er2e
+4th4e2r4ed
+th3er2n2
+th3e2r2y
+4t2hi.
+thi4l
+t5hill2
+th1in
+3th4i4n2k
+5th4io2
+th4is.
+t4hl
+th5lo
+2t2h1m2
+th4mi
+th3oli
+4t5h2oo
+4th1o2p1t2
+th2or2e
+4thores
+3th2ot
+th2o4u2
+5thoug4
+1t2h2r
+2t2h1s
+5thu4r
+th2y
+5thy2m
+3thyr4
+th4y2s4
+4ti.
+1t2i2a2
+ti3ab
+2t3ib
+5t4i5bu
+t1ic
+t3ic.
+tic5as
+t2i1c2i2
+tic2i1a2
+tici5a2r
+3t4i3cin
+t4icity
+t2i2c2o2
+ti3col
+t2ic1u
+4ticule
+ti2d
+t3id.
+t4id1a
+3tidi
+ti3die2
+t5i4d1s2
+tie2
+3t2i2en
+1t2i1f2
+4ti2ff
+1t2i1fi
+1t4i2fl2
+ti3fe
+4ti2ff
+4ti4f3ic.
+4ti4fic.
+t2ig
+3t4i1g2i
+ti3g2i5o2
+4ti2g1m4
+5tigu
+t2ik2
+ti4ka
+ti4let
+5til1in
+t4ill2
+til1l2a
+til4l5ag
+t4ilt
+1tim
+tim1a
+tim2e
+5ti1me2t4
+t1in
+tin1a
+5ti5nad
+4t4i2n2ed
+tin3et
+ti4ng
+t4in2g2i
+ti4ng5i4ng
+3t2in1n4
+4ti4n1s2
+t4int
+tin4te
+tin5t4ed
+tint5er1
+t2in2u
+tin3ue
+1t2io2
+ti3oc
+t4i1ol
+tiol3a
+ti2om
+ti5o3mo
+tio2ne
+4tionem
+1t2ip
+tip2l2
+ti5plex
+ti3pli
+t2i4q
+tiqu4
+ti5q2ua2
+t2ir
+tir1i
+t3iris
+2t1is
+ti4sa
+3tis1a2n
+ti2s4c2
+tis2h
+tish5i
+3t2i4s1s
+tis2t2
+5t4iste2
+t4is1tr2
+tit1a
+ti5t4a2n
+t2ith
+tith4e2
+tit5il
+t3i2t1is
+3ti2tl
+t2itr2
+ti3tra
+3t2i1u2
+2t1iv
+t2iva
+tiv5all2
+t3ive
+tiv3is
+2tl
+t1l2a
+tla2n
+tlant4
+5tle1b
+t2l2ed
+5tle5dr2
+3tle1f
+3tle2ff
+3tle1fi
+3tle1fl2
+3tlem
+5tlen
+t1let
+5tletr2
+5tlew
+t1li
+tlin4
+4t3m
+tm2e
+t1me2t2
+t1mo
+tm2o4t5
+2t3n2
+tn1er1
+t4n2er2e
+2to.
+t2oa2
+toas4
+to1b
+t2oc
+4toc1c4
+to3de5c
+tod4i
+to5do
+3toe
+1t2o1g
+t2oi
+2t3o2i4d
+5tok
+4to2l2ed
+tol4l2
+tolu5
+to5ly
+t2om
+to1ma
+to2m3ac
+to1ma4n
+to3mat
+toma2to
+tom2at5ol
+to2m4b
+to1mo
+to4m2o1g
+tom5os
+to2n4e
+t4on5ea2
+3ton1n4
+to4n3s2
+top4e
+top1i
+to5p2i1a2
+to1po
+to4p4os
+t1or
+tor1a
+to5r2ad
+4t2or2e
+tor5er1
+tor1i
+tor2i1a2
+tori4as
+to4r5oi
+tor5p
+tor4q
+3tos.
+t4o3s4p
+tos4t2
+to5str2
+t2ot
+to5tal1is
+to5tal1iz
+to3tem
+tot5u
+to4u2
+tou4f2
+tou4ff
+tou4fi
+tou4fl2
+5tou4r
+t3ous
+4tov
+to3wa2r
+t3p
+tr2
+tra4c2o2
+tr2ad
+4trad1d4
+tr2ai2
+4tra5ist2
+tra5q
+tra2r
+t4rar1c2
+trar2ch4
+tr2av
+tra5ven
+traver1
+tra5ve2r1s2
+trav5est2
+3tr4ay
+tr2e
+4t4re.
+4t2r4ed
+tre4mo
+tren4
+tr2e4nd
+tr4end5i
+tre5pr2
+tre4s4s
+4trew
+t5r4icl2
+3t2r2icu
+t2rie2
+tr2i1f
+tr4i2fl2
+tri5fli
+tr4i2fl2
+tri5fli
+tr2i2ff
+tr2i1fi
+tri3fu
+t5rifu5g4a
+2tril
+tri3li
+tri3m2e
+t2rit
+4tr2ix
+t4r2od
+tro5f
+tro5ff
+tro5fi
+tro5fl2
+tr2oo4
+5troo2p
+tr2op
+tro4pha2
+tr4o3sp
+t2r2ot
+t5ro1t2o
+tro1v
+3tr2oy
+t4r4uc
+tr2u3i2
+2t4r2y
+tr4y2s4
+4t1s
+t2sc2
+ts4h
+ts2i
+t4sil
+tst2
+tst4ay4
+2t1t4
+tta4
+t3t1ab
+t5ta2n
+t5tas
+t3t4ed
+tter1
+t4t2er2e4
+t5ter3er1
+t2t2es
+t5tes4t2
+t3ti
+tti3tu
+ttitud4
+ttitu5di
+t2tl
+t3t2ler1
+t3t1li
+t5t2oi
+t5t1or
+t3tos
+t4t5s
+tt2up
+t4tu1pe
+t2ty
+4tu.
+t2u1a2
+tu1al
+tuall2
+tu4al5li
+tua2r
+tuar3i4
+tu1b2i
+tu4bin
+tu5bu
+tud4e
+tu5den
+tud5ie2
+tu5en
+4tuf2
+4tu2ff
+4tufi
+4tu3fl2
+t2u1i2
+tu4is
+2tum.
+3tu1mi
+4tu4m1s
+3tun1
+tu4n4a4
+tu4ne
+tun2i
+tun5it
+t2up
+tup2l2
+tup5let
+tup5lic
+tu4r
+tur1a
+tu5rac
+t4ura2n
+tur1b
+tur2b3a
+tur4d
+tur2f
+turf5i
+tur2fi
+tur2ff
+tur2fl2
+tur1i
+5turit
+tur4n2
+5tur5o
+1tut
+tut2i
+4tu2t4iv
+t1w
+t3wa4
+t2wi2
+twi5li
+t3wit
+t3wo
+twon4
+4ty.
+ty4a2
+5ty2ch
+tyle2
+ty4let
+tyl5i
+ty5mi
+1t2yp
+3type
+1tyr1
+2tz2
+tz1i
+t5z2i1a2
+t5z2ie2
+2ua2
+u2a3c2i2
+u2ag
+u2a5h
+u1al
+ua5lu
+ua2n
+uan4o
+uant2i
+uan2t5is
+uant5it
+ua2r
+uar3a
+uar2d
+uar3i
+uari4n
+uart2
+uarter1
+uar5te2r1s2
+uar4t5i
+u4ater1
+ua5ter2n2
+uba4
+u2b1b2
+ub2bl2
+ub5b2ly
+u1b2i
+u4b2icu
+u2bl2
+ub3lin
+ub5lo
+ubr4
+ub3ra
+4uc
+u1c2a
+uc1c4
+uc1cen5
+u1cen2
+u4c2e4nd
+u4ch
+u5c2hr
+uc3l2
+u1c2o2
+u4c2om
+uc2o5t
+u2ct
+uc2tr2
+uc3ub
+uc5ul
+u5cum
+u5d2ac
+ud1al
+ud4e
+ud5e1p
+u4der1
+udev4
+ud4g
+udi1c2i2
+ud4i4cin
+udie2
+ud3i2ed
+u2d1in
+ud2in1i
+u5dinis
+u3d2i3o2
+u5di1t2io2
+u2do
+u5d2oi
+ud5on
+u5d2or
+ue1b4
+u4ed
+uen4o
+uen1te
+uen4ter1
+uer1
+uer3a
+ue4s4s
+uest2
+uest4r2
+uest5rat
+ues5tri
+ue4t
+uf2
+u2ff
+ufi
+u3fl2
+3u1f2a
+u3fl2
+u4fo
+u2ft4
+uga4c
+u2gl2
+ug5l2i1f
+ug5l2i2ff
+ug5l2i1fi
+ug5l4i2fl2
+u2gn2
+ug2n1i
+u4go
+ug3ul
+ugu4r
+ug3ur1a
+uhe2
+uhem3
+2ui2
+u2i1a2
+ui3al
+u2ic
+u4ice
+ui1cen2
+ui3cent5
+ui2d
+ui1d5o
+ui2l4a
+uild5er1
+ui3lib
+uil4t
+u2inc
+uin1c5u
+ui4n4s2
+uint4
+uin4ta
+u2ip
+ui5pr2
+uis3er1
+uis4t2
+uisti4
+uit5er1
+u2iva
+ui5val5
+ui3vo
+u2iz
+4ul.
+u1l2a
+u4l1ab
+4ul4ac
+ula2r
+ul5ard
+u5lat
+ul3b
+ul4bo2
+ul1c2
+ul3ca
+ul4ch
+5ulch4e2
+ul3c2hr
+5ulchr2e4
+4ulea2
+u5lee
+u1len4
+4ulen1c2i2
+u5lent
+u1let4
+u2l4ev
+ul2f2a
+ul2i
+ul4i1a2
+u3l4ine
+ul3i4ng
+ul1is
+ul5is2h
+ul1it
+u5liti
+u5lity
+4ull2
+ul1l2a
+ul4lat
+ul1li
+ul4l5ib
+ul4l1is
+ul4l1it
+ul3m2
+u1lo
+u5l2om
+ulph2
+ulph3i
+ul2ph3o
+ulp5i4ng
+ul4po
+2u4ls
+ul3s2i1f4
+ul3s2i2ff
+ul3s2i1fi
+ul3s4i2fl2
+u1lu
+ul1v4
+u1ma
+u2m3a2m
+u1ma2r4
+u5mas
+u2m1b
+umba2r
+um4bar.
+um2b2i
+um2e
+u1men
+umen4t
+u1mi
+u4m1ic
+u2m5i1f
+u2m5i2ff
+u2m5i1fi
+u2m5i2fl2
+umi4fy
+um2il
+umi5l2i1a2
+umin1a
+umin4a2r
+u4m4i2n2ed
+u4m3i4ng
+u1mo
+u4mor1a
+u4mos
+um2p
+um4pa
+ump3er1
+ump2l2
+ump5li
+um2pt4
+ump5te
+u1mu
+umu4lo
+un1
+u4n3a4
+un5ab
+unabu4
+un4ae
+un2as
+un4as.
+un2ce
+u4nd
+un2da
+un4dal
+unde2
+un3d2ed
+un1de4t
+undeter2
+undeter5m
+un1di4c
+un4die2
+un3do
+un1du
+un4dus
+u3n2er1
+un1h2
+unho4
+unho5li
+un2i
+u1nic
+un4ie2
+un3in
+un4ine
+un2i5p
+uni3s4o
+un3ist2
+un2i1v
+un3iz
+u4n2k
+unker1
+unk5eri
+un5ket
+un3kn2
+2un1n4
+unn1a
+un4nag
+un5o
+un5r
+u4n3s4
+un5s2h2
+un2t2i
+until4
+un2u4
+un3us
+uo3de
+uo3dent4
+u5oros
+u3os
+u2ot
+uo5t4a1t2io2
+u1o4u2
+2up
+u1pat
+u1pe
+u5p4ee
+uper3
+u1ph
+u5pi2d
+up3i4ng
+u4po
+u5pol
+u2pr2
+upr2e4
+uqu4
+u5que4t
+u4r
+ur1a
+4u4ra.
+ur2a4c2i2
+4urae
+ura2g
+ura2n
+uran2t
+4urant2i
+uras5
+ur1b
+urb2i
+ur2bin
+urb5i4ng
+ur2c2
+urc3a
+ur5den.
+ur5den1i
+ur5die2
+ur4du
+ur2e
+ur3ea4
+ur5ee
+ur1er1
+ur3e2r1s2
+ur1e2t
+ur3e2t2t4
+ur2f
+ur2ff
+ur2fi
+ur2fl2
+ur3f2a
+ur1i
+u5r2i5cu
+urie2
+ur4ie.
+ur2i1f
+ur5ifie2
+ur2i1fi
+ur5ifie2
+ur2i2ff
+ur4i2fl2
+uril4
+ur4ili
+ur2i3o2
+ur5ion
+uri4os.
+ur1le
+ur2l5er1
+ur5lie2
+url5i4ng
+ur1m4
+ur2n2
+urn1a
+urn3al
+urn3er1
+ur4n5s
+ur1o
+ur2o4d
+ur5o4m
+ur5ot
+uroti4
+urpe2
+ur3pen5t
+ur2ph4
+u2r2s2
+ur2s5a2l
+ur2se
+urs5er1
+ur3s2h
+urs3or
+urt2
+ur5ta
+ur1te
+ur5t2es
+urth2
+ur3the2
+urti4
+ur1u
+ur1v2
+ur4va
+u3sad
+us3a4g
+us3a2l
+us4ap
+us3a1t
+2usc2
+us1ca
+us4ca2n
+us2h
+ush5a2
+us2i1a2
+us5ia2n
+usil5
+u4s1in
+us2k2
+uske2
+usk5er1
+us1p
+us4pa
+u4ss
+uss4e
+4ust2
+us3tac
+us5ta2n
+ust4ic
+us5t2i1c2i2
+ust5ig
+ust3il
+us1to4
+us1tr2
+us4tr2e4
+usu4r
+usur4e
+us5ur1i
+uta2n
+u3t4ane
+u2tc2
+ut2ch
+utch4e2
+ut5en1i
+u5te2o
+uter1
+u4t2er2e4
+ut2i
+u3tie2
+ut1in
+ut3i4ng
+u5t2in1i
+u3t2io2
+u2t1is
+ut5i2s1m4
+ut3is2t2
+5u5t1iz
+u2tl
+ut3le
+ut1li4
+ut2o
+u4to5s
+utr2
+u4t1ra
+u4t1s2
+ut5s1m4
+u2t1t4
+ut4to2n4e
+u3tu
+u4tul
+uu4
+uv2
+u4va
+uve2
+uven3
+uver1
+uv5eri
+u5v1in
+ux2o
+uy4a2
+uy5er1
+4va.
+2v3ab
+5vac
+va1c2a
+va5ceo
+vacu1
+v4ad
+3vag3a
+va4ge
+4va2g2e4d
+vager4
+va2g5r2
+v1al.
+1v2ale
+vali2
+va5lie2
+val1is
+val4ise
+5valu
+5val4v
+v2a2m
+vam4i
+va5mo
+va2n
+5van1n4
+van2t2a4
+4van2tl
+va2r
+var1i
+var4is
+4vas2e
+vas5el5
+v5a4so
+vast2
+v2ast3a
+v4at.
+5vatee
+va2t3in
+v4at4in1a
+4v2a2tu
+2ve.
+ve2ct4
+ve3g
+3vei
+2vel
+vel2a
+vel3at
+4v2ele
+v3e2l1er1
+ve5l4ine
+v1ell2
+v4el1l2a
+vel5ler1
+vel3li
+vel5op1i
+ven1a
+ve4n4al
+v2e4nd
+ven4do
+v4e1ne
+ven1i
+ve5n2i1a2
+ven2t5o
+ven4tr2
+4v4en2u
+v5en5ue
+5ve3o
+ver1
+5ver1b
+v2erd
+verde5v
+4v4er2e4
+ver5ea4
+ver3ei4
+v5er3ie2
+ver3m4
+ver2n2
+ver4ne
+ve2r1s2
+5ver2se
+4v4es.
+4vi.
+v2i1a2
+5vi3al1it
+vi3at
+vi4a2tr2
+vi1b4
+vic2
+vi4ca
+v2i1ca2r
+vi5car1i
+v4ice
+vice3r1
+5vi2ct2
+5v2icu
+vi2d
+5vider1
+v2ig
+vi2gn3
+vi4l
+vil3i
+3vil2i4a2
+vil1is
+v5ilise
+vil1iz
+v5ilize
+vill2
+vil1li
+vil5lin
+vim4
+5vim2e
+2v1in
+vin1a
+vin4a2c
+v2inc
+3vin1c2i2
+vin2e
+v2in1i
+5vinit
+v5in1iz
+vint4
+vin5ta
+3v2i1o2
+v4i1ol3
+vi5om
+5v2i3p
+v2ir
+vir2e4
+vir1i
+vi5r2i4d
+vir3u
+v4i1sec
+vise2ct
+5visecti
+5vi1s2io4
+v3i2s1m4
+2v5ist2
+vi2t
+vit2a
+vi3tal
+vi5te2l
+v5it1ie2
+v2it1r2
+vi3tu
+v3ity
+v2iva
+viv5al
+vi2vo
+viv5or
+v1iz
+v2i5zo
+1vo
+2vo.
+vo2l
+vol2it
+vo5li1t2io2
+v4ol1ub
+vol4u1b2i
+volv4
+4von
+vor1a
+vo5rac
+3vor1c2
+4v2or2e
+3voro
+v2ot
+vo3ta2r
+2vow
+vr4
+v5ra4
+v5ri
+v5ro
+vr2ot4
+4vs
+vu4r
+v3ur2e
+2vv2
+v5ver1
+v5vi
+4vy
+4w1ab
+wag3o
+w2ai2
+wais4
+w3al.
+wall2
+wal2l5er1
+w3a4ls
+wa2n
+wa4ng
+wan2gl2
+wan5gli
+wa4n2k
+wank5er1
+wa2r
+war5d2ed
+ward5er1
+ward5r2
+war4f
+war4ff
+war4fi
+war4fl2
+wart2
+war4te
+war2th
+war5th2i
+wa4ss4
+was4t2
+wa1te
+w2av
+wa2v1in
+wav4in2e
+w1b4
+wbo2
+w4bon
+w5c
+w5die2
+w3dr2
+we4b
+w4ed
+3we2ed
+5wei
+we2ig2
+wei2gh
+weigh2t
+weight5i
+we2ir4
+wel3i
+wel1iz4
+wel4iz3i2
+well2
+wel4li
+went4
+wes4
+west3
+w5e4st.
+w5f
+w5ff
+w5fi
+w5fl2
+wh2
+w5hi2d
+wi2
+wi2d
+wid4e
+wie2
+wi5er1
+will2
+wil1li
+wil2l5in
+wim2p
+win2e
+wi4ng
+w4inge
+wing5er1
+win4tr2
+3w4ise
+w2ith
+withe2
+wit4her1
+with5eri
+w3l2a
+w2l1er1
+wl1i
+wl4ie2
+w1m
+1wo
+wol4
+wol5ver1
+3w2om
+w2on2t
+word5i
+w2ot
+wo2tc2
+wot2ch4
+wo4u2
+w2oun4
+wp5in
+wra4
+w2sin
+ws5i4ng
+wst2
+wste2
+w5ster1
+wt4
+w5te
+w3to
+wy2
+wz4
+x1a
+x4a2ch
+x4ade
+x2ag
+x3a2g1g
+x2a2m
+xam2e
+xa5me2t
+x3am1i
+xa2n
+xa4n5d
+xan1o4
+x2as
+xas5p
+x3c4
+xc2av3
+x1c2o2
+xcor5
+xe4
+x1ec
+xec3r2
+xecut2i
+xe5cu3t2io2
+xecut5o
+x2e2d
+x5e2dl4
+x5e4d1n2
+x5eg
+x1em
+x3en
+xen1o
+xen4op
+x3er1
+xer4g2
+xer3o
+x1h
+xh2ort2
+xhort4a
+x1i
+x2i1a2
+x3ia.
+x4ias
+xi4c
+x2ig
+x5i1ge
+xim3a
+x4im2e
+xi1me2t4
+x3io2
+x2i4p
+x4it.
+x4i4t1s
+x1o
+x4ode
+x5om
+xo1ma
+xo4mat
+xo4n
+x4os
+x2ot
+x4o1tr2
+xotr2op4
+x3p
+xpel4
+x1po
+xp4o5n2
+xpo4u2
+xp2oun4
+x1s2
+x1t2
+x4t4ed
+xte4n2s
+xtens5o
+xter1
+x1ter3i
+xter4m3
+xter2n3
+x4th
+xti4
+xtr2
+xtr2a5d
+xtr2a3v
+xtr2e4
+xu4o
+x1u4r
+xur4b
+x5us
+x5w
+xx4
+x4y2s4
+xy3t
+y1a2
+y5ac
+1y2a2r
+3yard
+yas4i
+4y1b
+yb2i
+yc2a5m
+y2ch
+yche2
+y4ch2ed
+y5chede2
+ych5is
+y3cho
+y4chose
+yc1l2
+ycl2a
+ycl2a2m4
+y1c2o2
+y4coli
+y4coll2
+yc2om4
+y2cos
+y1d4
+yda4
+yder4
+ydr2
+ydro5s
+y4dro4u2
+y3ee
+yel5o
+y3en
+y1er1
+yest2
+y3e4st.
+yes5te2
+y5e2t2t4
+y5f
+y5ff
+y5fi
+y5fl2
+y1g
+y1g2i2
+yg2i5a2
+y3gl2
+yg2o4i
+y1h
+y1i
+y3in
+yle2
+yl2i4n4d
+ylin5de2
+yll2
+yl1l2a
+yll1ab
+yllab5i
+yl3os
+yl5o4u2
+y1m2e4
+y3men
+y5me2t
+y5m2i1a2
+ym5in
+y1mo
+ym2ot4
+ym1p
+ym4pha2
+yn1
+yn1a
+yn5ago4
+yna2n
+yna4nd5
+yn5ap4
+yn2as
+yn5ast2
+yn4c2i2
+y4nd4
+yn2e
+yn3er1
+y4ng4
+yn1go
+yn4gol
+yn1i
+yni4c
+y2n4y2
+y1o2
+yo3d
+y2o1g
+yo3g2i
+yo4g4i4s
+yo4u2
+y2oun4
+you4ng5
+2yp
+yp5al
+yper3
+y5p2er2e
+y4p4eri
+y4pero
+y4pet
+y2ph
+yph4e4
+yph3i
+y4p1i
+y2p1n
+y1po1
+y4po4x
+y2pr2
+yp5ri
+y2ps2
+yp4si
+yps2y
+yp5sy5f
+yp5sy5ff
+yp5sy5fi
+yp5sy5fl2
+y2pt2
+ypt3a
+y5pu
+y3rag
+yr3at
+yr3ic
+y5r2ig
+yr3is
+yr3i4t
+yr5o1lo
+y4r4r4
+y2r4s2
+yr5u
+4y2s
+ys5a4g
+ys5a1t
+y3s2c2
+y3s2h
+ys1ic
+y2s3in
+y1s2i4o4
+yso5
+y4ss
+ys4so
+ys1t2
+ys4to
+y3u
+yv4
+y3w
+yz5er1
+yzy4
+z1a1
+2za.
+z1ab
+za4bi
+z2a2i2
+z4as
+za4te
+zd4
+ze1b4
+z2e4d
+zen4a
+z5e4ng
+zer1
+zer5a
+z3et4
+z1i
+zib5
+5zic4
+z2ie2
+zi5m
+z2inc
+zin4c3i2
+z3i4ng
+z4in2g5i
+z4is
+3zlem
+z3ler1
+z3li
+4zo.
+5z2oa2
+zo3a2n
+3z2oo2
+zo3ol
+zo3on
+zo5o2p
+zo2o2t
+zo5oti
+zo5p
+z2ot2
+z5s
+5zum
+4zy.
+zz2
+zz1a1
+z3za2r
+z5z4as
+zz1i
+z3z2ie2
+zzo3
+z5z2ot2
+.un2i1v
+.univer1
+.unive2r1s2
+.univer4s1it
+.uni5ver5si4ty.
+.universit1ie2
+.uni5ver5sit5i4es.
+.however1
+.how5ever.
+.1ma2n
+.man2u
+.man2usc2
+.manuscr2
+.manuscr2ip
+.manuscri2pt2
+.ma5nu5script.
+.manuscrip4t1s
+.ma5nu5scripts.
+.re1c2i2
+.rec2ip
+.reci1pr2
+.recipr2oc
+.re1c2i2pro1c2i2
+.re5ci5pro5ci4ty.
+.1t2h2r
+.thro4u2
+.throug4
+.throu2gh
+.throug3ho
+.thro4u2gh2o4u2
+.through5out.
+.1s2o2m
+.som2e
+.so1me2t
+.some2th1
+.someth4i
+.someth1in
+.somethi4ng
+.some5thing.
+.afflat7u4s4es.
+.affl2
+.affl2a2tu
+.afflatus2es
+.afflu7en4ce.
+.afflu7en4c4es.
+.afflu7ence's.
+.affluenc8e8'8
+.affluence's8
+.afflu7ent.
+.afflu7ent4ly.
+.affluen2tl
+.affluent2ly
+.affor7e4st.
+.affo
+.aff2or2e
+.afforest2
+.affor7est7a7tion.
+.afforest5at
+.afforesta1t2io2
+.affor7est7a7tions.
+.afforestatio4n1s2
+.affor7est7a7tion's.
+.afforestatio8n8'8
+.afforestation's8
+.affor7est7ing.
+.affore2sti
+.afforest1in
+.afforest3i4ng
+.affor7ests.
+.affore2s4t3s
+.baker8sfield.
+.b2ak
+.baker1
+.bake2r1s2
+.bakersfi4
+.bakersfie2
+.bakersfiel4
+.baker8sfield's.
+.bakersfiel8d8'8
+.bakersfield's8
+.bar7fli4es.
+.barfl2
+.barflie2
+.bar7fly.
+.barfly
+.bar7fly's.
+.barfl8y8'8
+.barfly's8
+.be7atific7al4ly.
+.3bea2
+.be3a2t2i1fi
+.beatifi4c1al
+.beatificall2
+.beatifical2ly
+.cal7ci7fic7a7tion.
+.c1al
+.3cal1c2
+.cal1c2i2
+.calc2i1fi4
+.calcific1at
+.calcifica1t2io2
+.cal7ci7fic7a7tions.
+.calcificatio4n1s2
+.cal7ci7fic7a7tion's.
+.calcificatio8n8'8
+.calcification's8
+.cal7ci7fied.
+.calcifie2
+.calcifi2ed
+.cal7ci7fi4es.
+.cross7fi4re.
+.c4ro4ss
+.crossfi4
+.crossfir
+.crossfir2e
+.cross7fi2r4es.
+.crossfires4
+.cross7fire's.
+.crossfir8e8'8
+.crossfire's8
+.cru7ci7fiab4le.
+.cr4uc
+.cru1c2i2
+.cruc2i1fi4
+.crucifi1a2
+.crucifi1ab
+.crucifia4bl2
+.cru7ci7fied.
+.crucifie2
+.crucifi2ed
+.cru7ci7fier.
+.crucifi1er1
+.cru7ci7fiers.
+.crucifie2r1s2
+.cru7ci7fier's.
+.crucifie8r8'8
+.crucifier's8
+.cru7ci7fi4es.
+.cru7ci7fix.
+.crucifix
+.cru7ci7fix4es.
+.crucifixe4
+.cru7ci7fix7ion.
+.crucifix1i
+.crucifix3io2
+.cru7ci7fix7ions.
+.crucifixio4n1s2
+.cru7ci7fix7ion's.
+.crucifixio8n8'8
+.crucifixion's8
+.cru7ci7fix's.
+.crucifi8x8'8
+.crucifix's8
+.daffi7e4st.
+.daffi
+.daffie2
+.daffiest2
+.diffid7en4ce.
+.diffi
+.diffid7en4c4es.
+.diffid7ence's.
+.diffidenc8e8'8
+.diffidence's8
+.diffid7ent.
+.diffid7ent4ly.
+.diffiden2tl
+.diffident2ly
+.dis7sat7is7fied.
+.di4s1
+.3d2i4s1s
+.dis1sa
+.diss2a1t
+.dissa2t1is
+.dissatisfi4
+.dissatisfie2
+.dissatisfi2ed
+.dis7sat7is7fi4es.
+.effic7a7ci4es.
+.effi
+.effic
+.effic2a1c2i2
+.efficacie2
+.effic7a7cious.
+.efficac2io2
+.efficacio4u2
+.effic7a7cious4ly.
+.efficaciou2sl4
+.efficacious2ly
+.effic7a7cious7ness.
+.efficacious1n2
+.efficacious1ne4ss
+.effic7a7cious7ness's.
+.efficaciousnes8s8'8
+.efficaciousness's8
+.effic7a2cy.
+.effic7acy's.
+.efficac8y8'8
+.efficacy's8
+.efflu7en4ce.
+.effl2
+.efflu7en4c4es.
+.efflu7ence's.
+.effluenc8e8'8
+.effluence's8
+.efflu7ent.
+.efflu7ents.
+.effluen4t1s
+.efflu7ent's.
+.effluen8t8'8
+.effluent's8
+.efflu7via.
+.effluv2
+.effluv2i1a2
+.efflu7vium.
+.effluv2i1u2
+.effluvi3um
+.efflu7vium's.
+.effluviu8m8'8
+.effluvium's8
+.fault-find7ers.
+.f2au2
+.faul4t
+.faul8t8-8
+.fault-2fin
+.fault-fi4nd
+.fault-finde2
+.fault-finder1
+.fault-finde2r3s2
+.fluffi7e4st.
+.fl2
+.3flu
+.fluffi
+.fluffie2
+.fluffiest2
+.hor7rific7al4ly.
+.ho4r1r4
+.hor3ri
+.horr2i1fi
+.horrifi4c1al
+.horrificall2
+.horrifical2ly
+.horse7flesh.
+.ho2r1s2
+.hor2se
+.horsefl2
+.horsefle2s
+.horsefles2h
+.horse7flesh's.
+.horsefles8h8'8
+.horseflesh's8
+.horse7fli4es.
+.horseflie2
+.horse7fly.
+.horsefly
+.horse7fly's.
+.horsefl8y8'8
+.horsefly's8
+.huffi7e4st.
+.huffi
+.huffie2
+.huffiest2
+.iffi7e4st.
+.iffi
+.iffie2
+.iffiest2
+.in7effic7a7ci4es.
+.ineffi
+.ineffic
+.ineffic2a1c2i2
+.inefficacie2
+.in7effic7a7cious.
+.inefficac2io2
+.inefficacio4u2
+.in7effic7a7cious4ly.
+.inefficaciou2sl4
+.inefficacious2ly
+.in7effic7a7cious7ness.
+.inefficacious1n2
+.inefficacious1ne4ss
+.in7effic7a7cious7ness's.
+.inefficaciousnes8s8'8
+.inefficaciousness's8
+.in7effic7a2cy.
+.in7effic7acy's.
+.inefficac8y8'8
+.inefficacy's8
+.in7tens7i7fic7a7tion.
+.in1te
+.inte4n2s
+.inten2si
+.intens2i1fi
+.intensific1at
+.intensifica1t2io2
+.in7tens7i7fic7a7tions.
+.inte4n1sificatio4n1s2
+.in7tens7i7fic7a7tion's.
+.intensificatio8n8'8
+.intensification's8
+.in7tens7i7fied.
+.intensifie2
+.intensifi2ed
+.in7tens7i7fier.
+.intensifi1er1
+.in7tens7i7fi7ers.
+.intensifie2r1s2
+.in7tens7i7fier's.
+.intensifie8r8'8
+.intensifier's8
+.in7tens7i7fi4es.
+.mac7cle7s7field.
+.mac1c4
+.maccl2
+.macc2le3
+.macclesfi4
+.macclesfie2
+.macclesfiel4
+.mans7field.
+.m4a4n2s
+.mansfi4
+.mansfie2
+.mansfiel4
+.ol7efin.
+.ole1fi
+.ole2fin
+.ol7efin's.
+.olefi8n8'8
+.olefin's8
+.pa7cific7al4ly.
+.p2a1c2i2
+.pac2i3fi4
+.pacifi4c1al
+.pacificall2
+.pacifical2ly
+.par7affin.
+.paraffi
+.par7affins.
+.paraffi4n1s
+.par7affin's.
+.paraffi8n8'8
+.paraffin's8
+.pathfind7ers.
+.p4a2th
+.path1fi
+.path2fin
+.pathfi4nd
+.pathfinde2
+.pathfinder1
+.pathfinde2r3s2
+.per7si7fla2ge.
+.pers4i2fl2
+.persifl2a
+.per7si7fla2g4es.
+.per7si7flage's.
+.persiflag8e8'8
+.persiflage's8
+.pro7fi7cien7ci4es.
+.profi1c2i2
+.proficie2
+.profic2i1en
+.profi1c2i2en1c2i2
+.proficie2ncie2
+.pro7fi7cien2cy.
+.pro7fi7ciency's.
+.proficienc8y8'8
+.proficiency's8
+.pro7fi7cient.
+.pro7fi7cient4ly.
+.proficien2tl
+.proficient2ly
+.pro7lific7al4ly.
+.pro1l
+.pro5l2i1fi
+.prolifi4c1al
+.prolificall2
+.prolifical2ly
+.puffi7e4st.
+.puffi
+.puffie2
+.puffiest2
+.re7affirm.
+.rea4
+.reaffi
+.re7affirm7a7tion.
+.reaffir4m3ati
+.reaffirma1t2io2
+.re7affirm7a7tions.
+.reaffirmatio4n1s2
+.re7affirm7a7tion's.
+.reaffirmatio8n8'8
+.reaffirmation's8
+.re7affir4med.
+.reaffirm2e
+.reaffir2m2ed
+.re7affir4m7ing.
+.reaffirm3i4ng
+.re7affirms.
+.reaffir4m1s
+.re7affor7e4st.
+.re3a2ff
+.reaffo
+.r2eaff2or2e
+.reafforest2
+.re7affor7est7a7tion.
+.reafforest5at
+.reafforesta1t2io2
+.ri7bo7flavin.
+.r4i3bo2
+.ribofl2
+.ribofl2a
+.ribofl2av
+.ribofla2v1in
+.ri7bo7flavin's.
+.riboflavi8n8'8
+.riboflavin's8
+.sat7is7fiab7il7i4ty.
+.s2a1t
+.sa2t1is
+.satisfi4
+.satisfi1a2
+.satisfi1ab
+.satisfiab1il
+.satisfiabil1it
+.sat7is7fiab4le.
+.satisfia4bl2
+.sat7is7fied.
+.satisfie2
+.satisfi2ed
+.sat7is7fier.
+.satisfi1er1
+.sat7is7fiers.
+.satisfie2r1s2
+.sat7is7fier's.
+.satisfie8r8'8
+.satisfier's8
+.sat7is7fi4es.
+.sci7en7tific7al4ly.
+.sc2i1en
+.scient2i
+.scien1t2i1fi
+.scientifi4c1al
+.scientificall2
+.scientifical2ly
+.scruffi7e4st.
+.scr2
+.scruffi
+.scruffie2
+.scruffiest2
+.self-sat7is7fied.
+.5self
+.sel8f8-8
+.self-s8
+.self-s2a1t
+.self-sa2t1is
+.self-satisfi4
+.self-satisfie2
+.self-satisfi2ed
+.semi7final.
+.sem2i
+.sem2i1fi
+.semi2fi4n
+.semifin1a
+.semifina4l
+.semi7fin8al7i4st.
+.semifinal1is
+.semifinalist2
+.semi7fin8al7ists.
+.semifinali2s4t3s
+.semi7fin8al7ist's.
+.semifinalis8t8'8
+.semifinalist's8
+.semi7fin8als.
+.semifina4ls
+.semi7final's.
+.semifina8l8'8
+.semifinal's8
+.ser7iffed.
+.ser2i2ff
+.seriffe
+.seriff2ed1
+.sher7iff.
+.she2
+.sh1er1
+.sher2i2ff
+.sher7iffs.
+.sheriff3s
+.sher7iff's.
+.sheriff8'8
+.sheriff's8
+.spiffi7e4st.
+.spiffi
+.spiffie2
+.spiffiest2
+.stuffi7e4st.
+.s1tu
+.stuffi
+.stuffie2
+.st2uffiest2
+.suffoc7a4te.
+.su2ff
+.suffo
+.suff2oc
+.suffoc2a
+.suffoc1at
+.suffoc7ated.
+.suffocat4ed
+.suffoc7a4t4es.
+.suffoca2t2es
+.suffoc7at7ing.
+.suffoca2t3in
+.suffocat5i4ng
+.suffoc7at7ing4ly.
+.suffocatin2gl2
+.suffocating2ly
+.suffoc7a7tion.
+.suffoca1t2io2
+.suffoc7a7tions.
+.suffocatio4n1s2
+.tar7iff.
+.tar1i
+.tar2i2ff
+.tar7iffed.
+.tariffe
+.tariff2ed1
+.tar7iffs.
+.tariff3s
+.tar7iff's.
+.tariff8'8
+.tariff's8
+.ter7rific7al4ly.
+.3te4r1r4
+.ter3ri
+.terr2i1fi
+.terrifi4c1al
+.terrificall2
+.terrifical2ly
+.test7i7fied.
+.2t2es
+.tes4t2
+.te2sti
+.tes1t2i1fi
+.testifie2
+.testifi2ed
+.test7i7fier.
+.testifi1er1
+.test7i7fi7ers.
+.testifie2r1s2
+.test7i7fier's.
+.testifie8r8'8
+.testifier's8
+.test7i7fi4es.
+.trans7fig7ur7a7tion.
+.tra4n2s
+.transfi4
+.transfig
+.transfig1u4r
+.transfigur1a
+.transfigura1t2io2
+.trans7fig7ur7a7tions.
+.tra4n1sfiguratio4n1s2
+.trans7fig7ur7a7tion's.
+.transfiguratio8n8'8
+.transfiguration's8
+.trans7fig7u4re.
+.transfigur2e
+.trans7figured.
+.transfig4u2r4ed
+.trans7fig7u2r4es.
+.trans7fig7ur7ing.
+.transfigur1i
+.transfiguri4ng
+.trans7fix.
+.transfix
+.trans7fixed.
+.transfixe4
+.transfix2e2d
+.trans7fix4es.
+.trans7fix7ing.
+.transfix1i
+.transfixi4ng
+.un7sat7is7fied.
+.uns2a1t
+.unsa2t1is
+.unsatisfi4
+.unsatisfie2
+.unsatisfi2ed
+.un7scien7tific7al4ly.
+.uns2c2
+.uns1c2i2
+.unscie2
+.unsc2i1en
+.unscient2i
+.unscien1t2i1fi
+.unscientifi4c1al
+.unscientificall2
+.unscientifical2ly
+.view7find7ers.
+.vie2
+.view5fi
+.view2fin
+.viewfi4nd
+.viewfinde2
+.viewfinder1
+.viewfinde2r3s2
+.wed7nes7field.
+.w4ed
+.we4d1n2
+.wednesfi4
+.wednesfie2
+.wednesfiel4
+.white7fly.
+.wh2
+.whitefl2
+.whitefly
+.afflu7ence’s.
+.affluenc8e8’8
+.affluence’s8
+.affor7est7a7tion’s.
+.afforestatio8n8’8
+.afforestation’s8
+.bakersfield’s.
+.bakersfiel8d8’8
+.bakersfield’s8
+.bar7fly’s.
+.barfl8y8’8
+.barfly’s8
+.cal7ci7fic7a7tion’s.
+.calcificatio8n8’8
+.calcification’s8
+.cross7fire’s.
+.crossfir8e8’8
+.crossfire’s8
+.cru7ci7fier’s.
+.crucifie8r8’8
+.crucifier’s8
+.cru7ci7fix7ion’s.
+.crucifixio8n8’8
+.crucifixion’s8
+.cru7ci7fix’s.
+.crucifi8x8’8
+.crucifix’s8
+.diffid7ence’s.
+.diffidenc8e8’8
+.diffidence’s8
+.effic7a7cious7ness’s.
+.efficaciousnes8s8’8
+.efficaciousness’s8
+.effic7acy’s.
+.efficac8y8’8
+.efficacy’s8
+.efflu7ence’s.
+.effluenc8e8’8
+.effluence’s8
+.efflu7ent’s.
+.effluen8t8’8
+.effluent’s8
+.efflu7vium’s.
+.effluviu8m8’8
+.effluvium’s8
+.horse7flesh’s.
+.horsefles8h8’8
+.horseflesh’s8
+.horse7fly’s.
+.horsefl8y8’8
+.horsefly’s8
+.in7effic7a7cious7ness’s.
+.inefficaciousnes8s8’8
+.inefficaciousness’s8
+.in7effic7acy’s.
+.inefficac8y8’8
+.inefficacy’s8
+.in7tens7i7fic7a7tion’s.
+.intensificatio8n8’8
+.intensification’s8
+.in7tens7i7fier’s.
+.intensifie8r8’8
+.intensifier’s8
+.ol7efin’s.
+.olefi8n8’8
+.olefin’s8
+.par7affin’s.
+.paraffi8n8’8
+.paraffin’s8
+.per7si7flage’s.
+.persiflag8e8’8
+.persiflage’s8
+.pro7fi7ciency’s.
+.proficienc8y8’8
+.proficiency’s8
+.re7affirm7a7tion’s.
+.reaffirmatio8n8’8
+.reaffirmation’s8
+.ri7bo7flavin’s.
+.riboflavi8n8’8
+.riboflavin’s8
+.sat7is7fier’s.
+.satisfie8r8’8
+.satisfier’s8
+.semi7final7ist’s.
+.semifinalis8t8’8
+.semifinalist’s8
+.semi7final’s.
+.semifina8l8’8
+.semifinal’s8
+.sher7iff’s.
+.sheriff8’8
+.sheriff’s8
+.tar7iff’s.
+.tariff8’8
+.tariff’s8
+.test7i7fier’s.
+.testifie8r8’8
+.testifier’s8
+.trans7fig7ur7a7tion’s.
+.transfiguratio8n8’8
+.transfiguration’s8
diff --git a/dictionaries/en/hyph_en_US.dic b/dictionaries/en/hyph_en_US.dic
new file mode 100644
index 0000000..d7dd292
--- /dev/null
+++ b/dictionaries/en/hyph_en_US.dic
@@ -0,0 +1,11130 @@
+UTF-8
+LEFTHYPHENMIN 2
+RIGHTHYPHENMIN 3
+COMPOUNDLEFTHYPHENMIN 2
+COMPOUNDRIGHTHYPHENMIN 3
+.a2ch4
+.ad4der
+.a2d
+.ad1d4
+.a2f1t
+.a2f
+.a4l3t
+.am5at
+.4a1ma
+.an5c
+.a2n
+.2ang4
+.an1i5m
+.an1t4
+.an3te
+.anti5s
+.ant2i
+.a4r5s2
+.2a2r
+.ar4t2ie4
+.ar1ti
+.ar4ty
+.as3c
+.as1p
+.a2s1s
+.aster5
+.a2tom5
+.a1to
+.au1d
+.av4i
+.awn4
+.ba4g
+.ba5na
+.ba2n
+.bas4e
+.ber4
+.be5r1a
+.be3s1m
+.4bes4
+.b4e5s2to
+.bri2
+.but4ti
+.bu4t3t2
+.cam4pe
+.1ca
+.ca4m1p
+.can5c
+.ca2n
+.capa5b
+.ca1pa
+.car5ol
+.c2a2r
+.ca4t
+.ce4la
+.2ch4
+.chill5i
+.ch4il2
+.chil1l
+.1ci2
+.cit5r
+.2c1it
+.co3e2
+.1co
+.co4r
+.cor5n1er
+.corn2e
+.de4moi2
+.d4em
+.de1mo
+.de3o
+.de3r1a
+.de3r1i
+.de1s4c
+.des2
+.dic1t2io5
+.3di2c1t
+.do4t
+.1do
+.du4c
+.1du
+.du4m1b5
+.earth5
+.ear2t
+.e2a2r
+.eas3i
+.2e1b4
+.eer4
+.eg2
+.e2l5d
+.el3em
+.enam3
+.e1na
+.en3g
+.e2n3s2
+.eq5ui5t
+.e1q
+.equ2
+.eq2ui2
+.er4ri
+.er1r4
+.es3
+.4eu3
+.eye5
+.fes3
+.for5mer
+.1fo
+.fo2r
+.for1m
+.for2me
+.1ga2
+.ge2
+.gen3t4
+.1gen
+.ge5o2g
+.1geo
+.1g2i5a
+.gi4b
+.go4r
+.1go
+.hand5i
+.ha2n
+.h4and
+.ha4n5k2
+.he2
+.hero5i2
+.h2ero
+.h1es3
+.he4t3
+.hi3b
+.hi3er
+.h2ie4
+.hon5ey
+.ho2n
+.hon3o
+.hov5
+.id4l
+.2id
+.idol3
+.i1do
+.im3m
+.im5p1i2n
+.i4m1p
+.im2pi
+.in1
+.in3ci
+.2ine2
+.4i4n2k2
+.2i2n3s2
+.ir5r4
+.4ir
+.is4i
+.ju3r
+.la4cy
+.la4m
+.lat5er
+.l4ath5
+.le2
+.leg5e
+.len4
+.lep5
+.lev1
+.l2i4g
+.li1g5a
+.li2n
+.l2i3o
+.l1i4t
+.ma1g5a5
+.1ma
+.mal5o
+.ma1n5a
+.ma2n
+.mar5ti
+.m2a2r
+.me2
+.mer3c
+.me5ter
+.me1te
+.m2is1
+.mis4t5i
+.mon3e
+.1mo
+.mo2n
+.mo3ro
+.mo2r
+.mu5ta
+.1mu
+.mu2ta5b
+.ni4c
+.od2
+.od1d5
+.of5te
+.o2ft
+.or5a1to
+.o1ra
+.or3c
+.or1d
+.or3t
+.os3
+.os4tl
+.4oth3
+.out3
+.ou2
+.ped5al
+.2p2ed
+.p2e2d2a
+.pe5te
+.pe2t
+.pe5tit
+.p2i4e4
+.pio5n4
+.3p2i1o
+.pi2t
+.pre3m
+.pr2
+.ra4c
+.ran4t
+.ra2n
+.ratio5n1a
+.ratio2n4
+.ra1t2io
+.ree2
+.re5mit
+.res2
+.re5stat
+.res2t
+.res1ta
+.r2i4g
+.ri2t5u
+.ro4q
+.ros5t
+.row5d
+.ru4d
+.3s4c2i3e4
+.s1ci
+.5se2l2f5
+.5se2l4ff
+.5se2l2fi
+.5se2l2fl2
+.sel1l5
+.se2n
+.se5r2ie4
+.ser1i
+.s2h2
+.si2
+.s3ing4
+.2s1in
+.st4
+.sta5b2l2
+.s1ta
+.s2tab
+.s4y2
+.1ta4
+.te4
+.3ten5a2n
+.te1na
+.th2
+.ti2
+.til4
+.ti1m5o5
+.1tim
+.ting4
+.2t1in
+.t4i4n5k2
+.to1n4a
+.1to
+.to2n
+.to4p
+.top5i
+.to2u5s
+.tou2
+.trib5ut
+.tr4ib
+.u1n1a
+.un3ce
+.under5
+.un1de
+.u2n1e
+.u4n5k2
+.un5o
+.un3u4
+.up3
+.ure3
+.us5a2
+.2us
+.ven4de
+.ve5r1a
+.wil5i
+.wi2
+.wil2
+.ye4
+4ab.
+a5bal
+a5ba2n
+abe2
+ab5erd
+ab2i5a
+ab5i2t5ab
+abi2t
+abi1ta
+ab5lat
+ab2l2
+ab5o5l1iz
+abol2i
+4abr
+ab5rog
+ab3ul
+a4c2a2r
+a1ca
+ac5ard
+ac5aro
+a5ceou2
+ac1er
+a5che4t
+a2ch
+ache2
+4a2ci
+a3c2ie4
+a2c1in
+a3c2io
+ac5rob
+act5if2
+a2c1t
+act5i4ff
+act5i1fi
+act5i3fl2
+ac3ul
+ac4um
+a2d
+ad4d1in
+ad1d4
+ad5er.
+2adi
+a3d4i3a
+ad3i1ca
+adi4er
+ad2ie4
+a3d2io
+a3dit
+a5di1u
+ad4le
+ad3ow
+a1do
+ad5ra2n
+a1dr
+ad4su
+a2d1s2
+4a1du
+a3du2c
+ad5um
+ae4r
+aer2i4e4
+aer1i
+a2f
+a4ff4
+a2fi
+a2fl2
+a4f1f4
+a4gab
+a1ga
+aga4n
+ag5el1l
+a1ge4o
+4ag4eu
+ag1i
+4ag4l2
+ag1n
+a2go
+3a3g4o4g
+ag3o3ni
+ago2n2
+a5guer
+a2gue
+ag5ul
+a4gy
+a3ha
+a3he
+a4h4l4
+a3ho
+ai2
+a5i1a
+a3ic.
+ai5ly
+a4i4n
+ain5in
+a2ini
+a2i1n5o
+ait5en
+a2ite
+a1j
+ak1en
+al5ab
+al3a2d
+a4l2a2r
+4aldi4
+a2ld
+2ale
+al3end
+a4lent2i
+a1len1t
+a5le5o
+al1i
+al4ia.
+al2i1a
+al2i4e4
+al5lev
+al1l
+al2le
+4allic
+all2i
+4a2lm
+a5log.
+a4ly.
+a1ly
+4a2lys4
+5a5lys1t
+5alyt
+3alyz
+4a1ma
+a2m5ab
+am3ag
+ama5ra
+am2a2r
+am5asc
+a4ma3tis
+a4m5a1to
+am5er1a
+am3ic
+am5if
+am5i4ff
+am5i1fi
+am5i3fl2
+am5i1ly
+am1in
+am2i4no
+a2mo
+a5mo2n
+amor5i
+amo2r
+amp5en
+a4m1p
+a2n
+an3age
+a1na
+3ana1ly
+a3n2a2r
+an3ar3c
+anar4i
+a3nati
+an2at
+4and
+ande4s2
+an1de
+an3dis1
+an1dl
+an4dow
+an1do
+a5nee
+a3nen
+an5e2st.
+a1nes
+a2nest
+a3n4eu
+2ang
+ang5ie4
+an1gl2
+a4n1ic
+a3nies
+an2ie4
+an3i3f
+an3i4ff
+an3i3fi
+an3i3fl2
+an4ime
+an1im
+a5nim1i
+a5n2ine
+an1in
+an3i4o
+a3n2ip
+an3is2h
+an3it
+a3ni1u
+an4kli
+a4nk2
+an1k1l
+5anniz
+a4n1n2
+ano4
+an5ot
+an4oth5
+an2sa2
+a2n1s2
+an4s1co
+ans4c
+an4s1n4
+an2sp
+ans3po
+an4st
+an4su2r
+an1su
+anta2l4
+an1t
+an1ta
+an4t2ie4
+ant2i
+4an1to
+an2tr
+an4tw4
+an3u1a
+an3ul
+a5nur
+4ao
+ap2a2r4
+a1pa
+ap5at
+ap5er3o
+a3ph4er
+4aphi
+a4pilla
+apil1l
+ap5ill2a2r
+ap3i2n
+ap3i1ta
+a3pi2tu
+a2p2l2
+apo4c5
+ap5o1la
+apor5i
+a1p4or
+apos3t
+a1pos
+aps5e4s
+a2p1s2
+ap2se
+a3pu
+aque5
+aqu2
+2a2r
+ar3a2c1t
+a5rade
+ara2d
+ar5adis1
+ar2adi
+ar3al
+a5rame1te
+aram3et
+ar2an4g
+ara2n
+ara3p
+ar4at
+a5ra1t2io
+ar5a1t2iv
+a5rau
+ar5av4
+araw4
+arbal4
+ar1b
+ar4cha2n
+ar1c
+ar3cha
+ar2ch
+ar5d2ine
+ard2i
+ard1in4
+ar4dr
+ar5eas
+a3ree
+ar3en1t
+a5r2e2ss
+ar4fi
+ar1f
+ar4fi
+ar4f4l2
+ar4fl2
+ar1i
+ar5i2al
+ar2i3a
+ar3i2a2n
+a3ri5et
+ar2ie4
+ar4im
+ar5in2at
+ar2i1na
+ar3i1o
+ar2iz
+ar2mi
+ar1m
+ar5o5d
+a5roni
+aro2n
+a3roo2
+ar2p
+ar3q
+arre4
+ar1r4
+ar4sa2
+a4rs2
+ar2s2h
+4as.
+a2s4ab
+asa2
+as3an1t
+asa2n
+ashi4
+as2h
+a5sia.
+as2i1a
+a3si1b
+a3sic
+5a5si4t
+ask3i
+ask2
+as4l2
+a4soc
+a1so
+as5ph
+as4s2h
+a2ss
+as3ten
+as1t4r
+asu1r5a
+a1su
+asu2r
+a2ta
+at3ab2l2
+a2tab
+at5ac
+at3alo
+ata2l
+at5ap
+ate5c
+at5e2ch
+at3e1go
+ateg4
+at3en.
+at3er1a
+ater5n
+a5ter1na
+at3est
+at5ev
+4ath
+ath5em
+ath2e
+a5the2n
+at4ho
+ath5om
+4ati.
+a5t2i1a
+a2t5i5b
+at1ic
+at3if2
+at3i4ff
+at3i1fi
+at3i3fl2
+ation5a2r
+a1t2io
+atio2n
+atio1n1a
+at3i1tu
+a4tog
+a1to
+a2tom
+at5om2iz
+a4top
+a4tos2
+a1tr
+at5rop
+at4sk2
+a4t1s2
+at4tag
+a4t3t2
+at1ta
+at5te
+at4th
+a2tu
+at5u1a
+a4t5ue
+at3ul
+at3u1ra
+a2ty
+au4b
+augh3
+au3gu
+au4l2
+aun5d
+au3r
+au5si1b
+a2us
+a4ut5en
+au1th
+a2va
+av3ag4
+a5va2n
+av4e4no
+av3er1a
+av5ern
+av5ery
+av1i
+avi4er
+av2ie4
+av3ig
+av5oc
+a1vor
+3away
+aw3i2
+aw4ly
+aws4
+ax4i5c
+ax3i
+ax4id
+ay5al
+aye4
+ays4
+azi4er
+a2z1i
+az2ie4
+az2z5i
+a4z1z2
+5ba.
+bad5ger
+ba2d
+ba4ge
+bal1a
+ban5dag
+ba2n
+b4and
+ban1d2a
+ban4e
+ban3i
+barbi5
+b2a2r
+bar1b
+bar2i4a
+bar1i
+bas4si
+ba2ss
+1bat
+ba4z
+2b1b
+b2be
+b3ber
+bbi4na
+4b1d
+4be.
+beak4
+bea2t3
+4be2d
+b2e3d2a
+be3de
+b4e3di
+be3gi
+be5gu
+1bel
+be1l2i
+be3lo
+4be5m
+be5n2ig
+be5nu
+4bes4
+be3sp
+b2e5st4r
+3bet
+be1t5iz
+be5tr
+be3tw4
+be3w
+be5y1o4
+2bf
+2b4ff
+2b1fi
+2bfl2
+4b3h
+bi2b
+b2i4d
+3b2ie4
+bi5en
+bi4er
+2b3if
+2b3i4ff
+2b3i1fi
+2b3i3fl2
+1bil
+bi3l2iz
+bil1i
+bin2a5r4
+bi1na
+b4in4d
+bi5net
+b2ine
+bi3o2gr
+b2io
+bi5ou2
+bi2t
+3b2i3t2io
+bi1ti
+bi3tr
+3bit5u1a
+bi1tu
+b5i4tz
+b1j
+bk4
+b2l2
+bl4ath5
+b4le.
+blen4
+5ble1sp
+bles2
+b3lis
+b4lo
+blun4t
+4b1m
+4b3n
+bne5g
+3bod
+bod3i
+bo4e
+bol3ic
+bol2i
+bom4bi
+bo4m1b
+bo1n4a
+bo2n
+bon5at
+3boo2
+5bor.
+4b1o1ra
+bor5d
+5bore
+5bori
+5bos4
+b5o1ta
+b4oth5
+bo4to
+boun2d3
+bou2
+4bp
+4brit
+br4oth3
+2b5s2
+bsor4
+b1so
+2bt
+b2t4l
+b4to
+b3tr
+buf4fer1
+bu4f1f
+buffer1
+bu4ff
+bu4ga
+bu3l2i
+bu1mi4
+bu4n
+bunt4i
+bun1t
+bu3re
+bus5ie4
+b2us
+buss4e
+bu2ss
+5bust
+4bu1ta
+3bu1t2io
+b4u1t2i
+b5u1to
+b1v
+4b5w
+5by.
+bys4
+1ca
+cab3in
+ca1b2l2
+ca2ch4
+ca5den
+ca2d
+4cag4
+2c5ah
+ca3lat
+cal4la
+cal1l
+cal2l5in4
+call2i
+4calo
+c4an5d
+ca2n
+can4e
+ca4n4ic
+can5is
+can3iz
+can4ty
+can1t
+cany4
+ca5per
+car5om
+c2a2r
+cast5er
+cas5t2ig
+cast2i
+4cas4y
+c4a4th
+4ca1t2iv
+cav5al
+ca2va
+c3c
+ccha5
+c2ch
+c3c2i4a
+c1ci
+ccom1pa5
+c1co
+cco4m1p
+cco2n4
+ccou3t
+ccou2
+2ce.
+4ced.
+4ce1den
+3cei2
+5cel.
+3cel1l
+1cen
+3cenc
+2cen4e
+4ceni
+3cen1t
+3cep
+ce5ram
+cer1a
+4ce1s4a2
+3ces1si
+c2e2ss
+ces5si5b
+ces5t
+cet4
+c5e4ta
+cew4
+2ch
+4ch.
+4ch3ab
+5cha4n1ic
+cha2n
+ch5a5nis
+che2
+cheap3
+4ch4ed
+ch5e5lo
+3chemi
+ch5ene
+che2n
+ch3er.
+ch3e4r1s2
+4ch1in
+5chi2ne.
+ch2ine
+ch5i5n2e2ss
+chi1nes
+5ch2ini
+5ch2io
+3chit
+chi2z
+3cho2
+ch4ti
+1ci
+3c2i1a
+ci2a5b
+ci2a5r
+ci5c
+4cier
+c2ie4
+5c4i2f3ic.
+ci1fi
+5c4i2fic.
+ci1fi
+4c4i5i4
+ci4la
+3cil1i
+2cim
+2cin
+c4i1na
+3cin2at
+cin3em
+c2ine
+c1ing
+c5ing.
+5c2i1no
+cio2n4
+c2io
+4cipe4
+c2ip
+ci3ph
+4cip4ic
+cip3i
+4cis1ta
+4cis1t2i
+2c1it
+ci1t3iz
+ci1ti
+5ciz
+ck1
+ck3i
+1c4l4
+4cl2a2r
+c5la5ra1t2io
+clar4at
+5clare
+cle4m
+4clic
+clim4
+c1ly4
+c5n
+1co
+co5ag
+c4oa
+coe2
+2cog
+co4gr
+coi4
+co3inc
+col5i
+5colo
+col3o4r
+com5er
+co2me
+co1n4a
+co2n
+c4one
+con3g
+con5t
+co3pa
+cop3ic
+co4p2l2
+4cor1b
+coro3n
+cos4e
+cov1
+cove4
+cow5a
+co2z5e
+co5z1i
+c1q
+cras5t
+cr2as
+5crat.
+5crat1ic
+cre3a2t
+5c2r2ed
+4c3re1ta
+cre4v2
+cri2
+cri5f
+cri5ff
+cri5fi
+cri5fl2
+c4rin
+cr2is4
+5cri1ti
+cro4p2l2
+crop5o
+cros4e
+cru4d
+4c3s2
+2c1t
+c2ta4b
+c1ta
+ct5ang
+cta2n
+c5tan1t
+c2te
+c3ter
+c4t4ic1u
+ctim3i
+c1tim
+ctu4r
+c1tu
+c4tw4
+cud5
+c4uf
+c4u4ff
+c4u1fi
+c4u3fl2
+c4ui2
+cu5i1ty
+5cul2i
+cul4tis4
+cul1ti
+cu4lt
+3c4ul1tu2
+cu2ma
+c3ume
+cu4mi
+3cun
+cu3pi
+cu5py
+cu2r5a4b
+cu1ra
+cu5r2i3a
+1c2us
+cus1s4i
+cu2ss
+3c4ut
+cu4t2ie4
+c4u1t2i
+4c5u1t2iv
+4cutr
+1cy
+c2ze4
+1d2a
+5da.
+2d3a4b
+da2ch4
+4da2f
+4da4ff4
+4da2fi
+4da2fl2
+2dag
+da2m2
+d2an3g
+da2n
+dard5
+d2a2r
+dark5
+4dary
+3dat
+4da1t2iv
+4da1to
+5dav4
+dav5e
+5day
+d1b
+d5c
+d1d4
+2de.
+dea2f5
+dea4ff4
+dea2fi
+dea2fl2
+de4b5i2t
+d2e1b
+de4bo2n
+deca2n4
+de1ca
+de4cil
+de1c2i
+de5com
+de1co
+2d1ed
+4dee.
+de5if
+dei2
+de5i4ff
+de5i1fi
+de5i3fl2
+del2i4e4
+del2i
+de4l5i5q
+de5lo
+d4em
+5dem.
+3demic
+dem5ic.
+de5mil
+de4mo2n3s2
+de1mo
+demo2n
+demo2r5
+1den
+de4n2a2r
+de1na
+d4e3no
+denti5f2
+den1t
+dent2i
+denti5ff
+denti5fi
+denti5fl2
+de3nu
+de1p
+de3pa
+depi4
+de2pu
+d3e1q
+d4er1h4
+5der3m4
+d5ern5iz
+de4r5s2
+des2
+d2es.
+de1s2c
+de2s5o
+des3t2i
+d2e3st4r
+de4su
+de1t
+de2to
+de1v
+de2v3i4l
+de1vi
+4dey
+4d1f
+4d4ff
+4d1fi
+4d1fl2
+d4ga
+d3ge4t
+dg1i
+d2gy
+d1h2
+5di.
+1d4i3a
+dia5b
+d4i4cam
+di1ca
+d4ice
+3di2c1t
+3d2id
+5di3en
+d2ie4
+d1if
+d1i4ff
+d1i1fi
+d1i3fl2
+di3ge
+d2ig
+di4la1to
+di1la
+d1in
+1di1na
+3di2ne.
+d2ine
+5d2ini
+di5niz
+1d2io
+dio5g
+di4p2l2
+d2ip
+d4ir2
+di1re
+dir1t5i
+dis1
+5disi
+d4is3t
+d2i1ti
+1d2i1v
+d1j
+d5k2
+4d5la
+3dle.
+3dled
+3dles.
+dles2
+4d3l2e2ss
+2d3lo
+4d5lu
+2d1ly
+d1m
+4d1n4
+1do
+3do.
+do5de
+5doe
+2d5of
+2d5o4ff
+2d5o2fi
+2d5ofl2
+d4og
+do4la
+dol2i4
+do5lo4r
+dom5iz
+do3n2at
+do2n
+do1n1a
+doni4
+doo3d
+doo2
+do4p4p
+d4or
+3dos
+4d5out
+dou2
+do4v
+3dox
+d1p
+1dr
+drag5o2n2
+dra2go
+4dr2ai2
+dre4
+dre2a5r
+5dren
+dr4i4b
+dril4
+dro4p
+4drow
+5drupli
+dru3p2l2
+4dry
+2d1s2
+ds4p
+d4sw2
+d4s4y
+d2th
+1du
+d1u1a
+du2c
+d1u3ca
+duc5er
+4duct.
+du2c1t
+4duc4t1s2
+du5el
+du4g
+d3ul4e
+dum4be
+du4m1b
+du4n
+4dup
+du4pe
+d1v
+d1w
+d2y
+5dyn
+dy4s2e
+dys5p
+e1a4b
+e3a2c1t
+ea2d1
+ead5ie4
+e2adi
+ea4ge
+ea5ger
+ea4l
+eal5er
+e2ale
+eal3ou2
+eam3er
+e5and
+ea2n
+ear3a
+e2a2r
+ear4c
+ear5es
+ear4ic
+ear1i
+ear4il
+ear5k
+ear2t
+eart3e
+ea5sp
+e3a2ss
+east3
+ea2t
+eat5en
+eath3i
+e4ath
+e5at3if2
+e5at3i4ff
+e5at3i1fi
+e5at3i3fl2
+e4a3tu
+ea2v
+eav3en
+eav5i
+eav5o
+2e1b
+e4bel.
+e1bel
+e4be2l1s2
+e4ben
+e4bi2t
+e3br
+e4ca2d
+e1ca
+ecan5c
+eca2n
+ec1ca5
+ec3c
+e1ce
+ec5es1sa2
+ec2e2ss
+e1c2i
+e4cib
+ec5ificat
+eci1fi
+ecifi1ca
+ec5ificat
+eci1fi
+ecifi1ca
+ec5i3f2ie4
+ec5i3fie4
+ec5i1fy
+e2c3im
+e2c1i4t
+e5c2ite
+e4clam
+e1c4l4
+e4cl2us
+e2col
+e1co
+e4com1m
+e4compe
+eco4m1p
+e4con1c
+eco2n
+e2cor
+ec3o1ra
+eco5ro
+e1cr
+e4crem
+ec4ta2n
+e2c1t
+ec1ta
+ec4te
+e1cu
+e4cul
+ec3u1la
+2e2d2a
+4ed3d4
+e4d1er
+ede4s2
+4edi
+e3d4i3a
+ed3ib
+ed3i1ca
+ed3im
+ed1it
+edi5z
+4e1do
+e4dol
+edo2n2
+e4dri
+e1dr
+e4dul
+e1du
+ed5u1l4o
+ee2c
+e4ed3i
+ee2f
+e1e4ff
+ee2fi
+ee2fl2
+eel3i
+ee4ly
+ee2m
+ee4na
+ee4p1
+ee2s4
+eest4
+ee4ty
+e5ex
+e1f
+1e4ff
+e1fi
+e1fl2
+e4f3ere
+efer1
+1e4f1f
+e4fic
+e1fi
+e4fic
+5ef2i1c4i
+5efi1ci
+efil4
+efil4
+e3f2i2ne
+e2fin
+e3fine
+e2fin
+ef5i5n2ite
+ef2ini
+efin2it
+efi5n2ite
+efini
+efin2it
+3efit
+3efit
+efor5es
+e1fo
+efo2r
+e4fu4se.
+e3fu
+ef2us
+4egal
+e1ga
+eger4
+eg5ib
+eg4ic
+eg5ing
+e5git5
+eg5n
+e4go.
+e1go
+e4gos
+eg1ul
+e5gur
+5e1gy
+e1h4
+eher4
+ei2
+e5ic
+e2i5d
+e2ig2
+ei5g4l2
+e3i4m1b
+e3in3f
+e3in4ff
+e3in3fi
+e3in3fl2
+e1ing
+e5inst
+e2i2n1s2
+eir4d
+e4ir
+e2it3e
+e2i3th
+e5i1ty
+e1j
+e4jud
+ej5udi
+eki4n
+ek1i
+ek4la
+ek1l
+e1la
+e4la.
+e4lac
+e3l4an4d
+ela2n
+e4l5a1t2iv
+e4law
+elax1a4
+e3le2a
+el5ebra
+el2e1b
+ele3br
+5elec
+e4led
+el3e1ga
+e5len
+e4l1er
+e1les2
+e2l2f
+e2l4ff
+e2l2fi
+e2l2fl2
+el2i
+e3libe4
+e4l5ic.
+el3i1ca
+e3lier
+el2ie4
+el5i3gib
+el2ig
+el4igi
+e5lim
+e4l3ing
+e3l2io
+e2lis
+el5is2h
+e3l2iv3
+4ella
+el1l
+el4lab
+ell4o4
+e5loc
+el5og
+el3op.
+el2s2h
+e2l1s2
+el4ta
+e4lt
+e5lud
+el5ug
+e4mac
+e1ma
+e4mag
+e5ma2n
+em5a1na
+e4m5b
+e1me
+e2mel
+e4met
+em3i1ca
+em2i4e4
+em5igra
+em2ig4
+emi1gr
+em1in2
+em5ine
+em3i3ni
+e4m2is
+em5is2h
+e5m4i2s1s
+em3iz
+5emniz
+e4m1n
+emo4g
+e1mo
+emo3n2i5o
+emo2n
+em3pi
+e4m1p
+e4mul
+e1mu
+em5u1la
+emu3n2
+e3my
+en5a2mo
+e1na
+e4nan1t
+en2a2n
+ench4er
+en2ch
+enche2
+en3dic
+e5nea
+e5nee
+en3em
+en5ero
+en1er
+en5e1si
+e1nes
+e2n5est
+en3etr
+e3ne4w
+en5i4c3s2
+e5n2ie4
+e5nil
+e3n2i4o
+en3is2h
+en3it
+e5ni1u
+5eniz
+4e4n1n2
+4eno
+e4no4g
+e4nos
+en3ov
+en4sw2
+e2n1s2
+ent5age
+en1t
+en1ta
+4enth1es
+enth2e
+en3u1a
+en5uf
+en5u4ff
+en5u1fi
+en5u3fl2
+e3ny.
+4e4n3z
+e5of
+e5o4ff
+e5o2fi
+e5ofl2
+eo2g
+e4oi4
+e3ol
+eop3a2r
+eo2pa
+e1or
+eo3re
+eo5rol
+eos4
+e4ot
+eo4to
+e5out
+eou2
+e5ow
+e2pa
+e3p4ai2
+ep5anc
+epa2n
+e5pel
+e3pen1t
+ep5e5t2i1t2io
+epe2t
+epeti1ti
+ephe4
+e4pli
+e1p2l2
+e1po
+e4prec
+epr2
+ep5re1ca
+e4p2r2ed
+ep3re1h4
+e3pro
+e4prob
+ep4s4h
+e2p1s2
+ep5ti5b
+e2p1t
+e4pu2t
+ep5u1ta
+e1q
+equi3l
+equ2
+eq2ui2
+e4q3ui3s
+er1a
+e2ra4b
+4er4and
+era2n
+er3a2r
+4er4ati.
+2er1b
+er4b2l2
+er3ch
+er1c
+er4che2
+2e2re.
+e3re1a4l
+ere5co
+ere3in
+erei2
+er5el.
+er3e1mo
+er5e1na
+er5ence
+4erene
+er3en1t
+ere4q
+er5e2ss
+er3es2t
+eret4
+er1h4
+er1i
+e1r2i3a4
+5erick1
+e3rien
+er2ie4
+eri4er
+er3in4e
+e1r2i1o
+4erit
+er4i1u
+er2i4v
+e4ri1va
+er3m4
+er4nis4
+4er3n2it
+5erniz
+er3no4
+2ero
+er5ob
+e5r2oc
+ero4r
+er1ou2
+e4r1s2
+er3set
+er2se
+ert3er
+4er2tl
+er3tw4
+4eru
+eru4t
+5erwau
+er1w
+e1s4a2
+e4sa2ge.
+e4sages
+es2c
+e2s1ca
+es5ca2n
+e3scr
+es5cu
+e1s2e
+e2sec
+es5e1cr
+e4s5enc
+e4sert.
+e4ser4t1s2
+e4ser1va
+4es2h
+e3sha
+esh5e2n
+e1si
+e2sic
+e2s2id
+es5i1den
+e4s5ig1n4a
+es2ig
+e2s5im
+e2s4i4n
+esis4te
+e1sis
+e5si4u
+e5skin
+esk2
+esk1i
+es4mi
+e2s1m
+e2sol
+e1so
+es3olu
+e2so2n
+es5o1n1a4
+e1sp
+e2s3per
+es5pi1ra
+esp4ir
+es4pre
+espr2
+2e2ss
+es4si4b
+es1si
+esta2n4
+es1ta
+es3t2ig
+est2i
+es5tim
+4es2to
+e3sto2n
+2est4r
+e5stro
+estruc5
+e2su2r
+e1su
+es5ur1r4
+es4w2
+e2ta4b
+e1ta
+e3ten4d
+e3teo
+ethod3
+et1ic
+e5tide
+et2id
+e2t1in4
+et2i4no
+e5t4ir
+e5t2i1t2io
+eti1ti
+et5i1t2iv
+4e2t1n2
+et5o1n1a
+e1to
+eto2n
+e3tra
+e3tre
+et3ric
+et5rif
+et5ri4ff
+et5ri1fi
+et5ri3fl2
+et3rog
+et5ros
+et3u1a
+e1tu
+et5ym
+e1ty
+e4t5z
+4eu
+e5un
+e3up
+eu3ro
+e2us4
+eute4
+euti5l
+e4u1t2i
+eu5tr
+eva2p5
+e1va
+e2vas
+ev5ast
+e5vea
+ev3el1l
+eve4l3o
+e5veng
+even4i
+ev1er
+e5v2er1b
+e1vi
+ev3id
+e2vi4l
+e4v1in
+e3v2i4v
+e5voc
+e5vu
+e1wa
+e4wag
+e5wee
+e3wh
+ewil5
+ewi2
+ew3in4g
+e3wit
+1ex3p
+5ey1c
+5eye.
+eys4
+1fa
+4ff
+ffa
+fa3b2l2
+ffa3b2l2
+f4ab3r
+ff4ab3r
+fa4ce
+ffa4ce
+4fag
+ffag
+fa4i4n4
+fai2
+ffa4i4n4
+ffai2
+fal2l5e
+fal1l
+ffal2l5e
+ffal1l
+4f4a4ma
+ff4a4ma
+fam5is
+ffam5is
+5f2a2r
+ff2a2r
+far5th
+ffar5th
+fa3ta
+ffa3ta
+fa3th2e
+f4ath
+ffa3th2e
+ff4ath
+4fa1to
+ffa1to
+fau4lt5
+fau4l2
+ffau4lt5
+ffau4l2
+4f5b
+ff5b
+4fd
+ffd
+4fe.
+ffe.
+feas4
+ffeas4
+fe4ath3
+fea2t
+ffe4ath3
+ffea2t
+f2e4b
+ff2e4b
+4fe1ca
+ffe1ca
+5fe2c1t
+ffe2c1t
+2fed
+ffed
+fe3l2i
+ffe3l2i
+fe4mo
+ffe4mo
+fen2d
+ffen2d
+fen1d5e
+ffen1d5e
+fer1
+ffer1
+5fer1r4
+ffer1r4
+fev4
+ffev4
+4f1f
+f4fes
+ffes
+f4f2ie4
+f1fi
+ffie
+f5f2in.
+f2fin
+ffin.
+f2f5is
+ffis
+f4f2ly5
+ff4l2
+ffly
+f2fy
+ffy
+4fh
+ffh
+1fi
+1fi
+f2i3a
+fi1a
+2f3ic.
+2fic.
+4f3ical
+fi1ca
+4fical
+fi1ca
+f3ica2n
+fica2n
+4ficate
+4ficate
+f3i1cen
+fi1cen
+fi3cer
+fi3cer
+f2i1c4i
+fi1ci
+5fi3c2i1a
+5fi3c2i1a
+5fic2ie4
+5fic2ie4
+4fi4c3s2
+4fi4c3s2
+fi3cu
+fi3cu
+fi5del
+f2id
+fid
+fi5del
+fight5
+f2ig
+fig
+fight5
+fil5i
+fil1i
+fil2l5in4
+fil1l
+fill2i
+fil2l5in4
+fil1l
+fill2i
+4fi1ly
+4fi1ly
+2fin
+2fin
+5fi1na
+5fi1na
+f4in2d5
+find
+f2i2ne
+fine
+f1in3g
+fin3g
+f2i4n4n2
+fi4n1n2
+fis4t2i
+fis1t2i
+f4l2
+fl2
+f5l2e2ss
+fles2
+fles2
+fl2e2ss
+flin4
+flin4
+flo3re
+flo3re
+f2ly5
+fly
+4fm
+ffm
+4fn
+ffn
+1fo
+ffo
+5fo2n
+ffo2n
+fon4de
+f2ond
+ffon4de
+ff2ond
+fon4t
+ffon4t
+fo2r
+ffo2r
+fo5rat
+fo1ra
+ffo5rat
+ffo1ra
+for5ay
+ffor5ay
+fore5t
+ffore5t
+for4i
+ffor4i
+for1t5a
+ffor1t5a
+fos5
+ffos5
+4f5p
+ff5p
+fra4t
+ffra4t
+f5rea
+ff5rea
+fres5c
+ffres5c
+fri2
+ffri2
+fril4
+ffril4
+frol5
+ffrol5
+2f3s
+ff3s
+2ft
+fft
+f4to
+ff4to
+f2ty
+ff2ty
+3fu
+ffu
+fu5el
+ffu5el
+4fug
+ffug
+fu4min
+fu1mi
+ffu4min
+ffu1mi
+fu5ne
+ffu5ne
+fu3ri
+ffu3ri
+fusi4
+f2us
+ffusi4
+ff2us
+fu2s4s
+ffu2s4s
+4fu1ta
+ffu1ta
+1fy
+1ga
+ga2f4
+ga4ff4
+ga2fi
+ga2fl2
+5gal.
+3gal1i
+ga3lo
+2gam
+ga5met
+g5a2mo
+gan5is
+ga2n
+ga3niz
+gani5za1
+4gano4
+gar5n4
+g2a2r
+ga2ss4
+g4ath3
+4ga1t2iv
+4gaz
+g3b
+gd4
+2ge.
+2ged
+geez4
+gel4in
+gel2i
+ge5lis
+ge5l1iz
+4ge1ly
+1gen
+ge4n2at
+ge1na
+g5e5niz
+4g4eno
+4geny
+1geo
+ge3om
+g4ery
+5ge1si
+geth5
+4ge1to
+ge4ty
+ge4v
+4g1g2
+g2ge
+g3ger
+gglu5
+ggl2
+g1go4
+gh3in
+gh5out
+ghou2
+gh4to
+5gi.
+1g2i4a
+gi2a5r
+g1ic
+5gi3c2i1a
+g2i1ci
+g4i1co
+gien5
+g2ie4
+5gies.
+gil4
+g3i1men
+3g4in.
+g4in5ge
+5g4i2n1s2
+5g2io
+3g4ir
+gir4l
+g3is1l2
+gi4u
+5g2iv
+3giz
+gl2
+gla4
+gl2ad5i
+gla2d
+5glas
+1gle
+gli4b
+g3l2ig
+3glo
+glo3r
+g1m
+g4my
+g1n4a
+g4na.
+gne4t4t2
+g1ni
+g2n1in
+g4n2i4o
+g1no
+g4no4n
+1go
+3go.
+gob5
+5goe
+3g4o4g
+go3is
+goi2
+go2n2
+4g3o3n1a
+gon5do5
+g2ond
+go3ni
+5goo2
+go5riz
+gor5ou2
+5gos.
+gov1
+g3p
+1gr
+4gra1d2a
+gra2d
+g4r2ai2
+gra2n2
+5gra4ph.
+g5ra3ph4er
+5graph1ic
+gr4aphi
+4g3ra1phy
+4gray
+gre4n
+4gress.
+gr2e2ss
+4grit
+g4ro
+gruf4
+gru4ff
+gru1fi
+gru3fl2
+gs2
+g5ste
+gth3
+gu4a
+3guar2d
+gu2a2r
+2gue
+5gui5t
+g2ui2
+3gun
+3g2us
+4gu4t
+g3w
+1gy
+2g5y3n
+gy5ra
+h3ab4l2
+ha2ch4
+hae4m
+hae4t
+h5agu
+ha3la
+hala3m
+ha4m
+han4ci
+ha2n
+han4cy
+5hand.
+h4and
+h2an4g
+hang5er
+han1g5o
+h5a5niz
+ha4n4k2
+han4te
+han1t
+ha2p3l2
+ha2p5t
+ha3ra2n
+h2a2r
+ha5r2as
+har2d
+hard3e
+har4le4
+har1l
+harp5en
+har2p
+har5ter
+ha2s5s
+haun4
+5haz
+haz3a1
+h1b
+1hea2d1
+3he2a2r
+he4ca2n
+he1ca
+h5ecat
+h4ed
+h4e5do5
+he3l4i
+hel4lis
+hel1l
+hell2i
+hel4ly
+h5elo
+he4m4p
+he2n
+he1na4
+hen5at
+he1o5r
+hep5
+h4er1a
+hera3p
+her4ba
+h2er1b
+here5a
+h3ern
+h5er1ou2
+h2ero
+h3ery
+h1es
+he2s5p
+he4t
+he2t4ed
+h4eu4
+h1f
+h4ff
+h1fi
+h1fl2
+h1h
+hi5a2n
+h2i1a
+hi4co
+high5
+h2ig
+h4il2
+himer4
+h4i1na
+hion4e
+h2io
+hio2n
+h2i4p
+hir4l
+h4ir
+hi3ro
+hir4p
+hir4r4
+his3el
+h4ise
+h4i2s4s
+hith5er
+h2ith
+hith2e
+h2i2v
+4hk
+4h1l4
+hla2n4
+h2lo
+hlo3ri
+4h1m
+hmet4
+2h1n
+h5odiz
+h5o2d1s2
+ho4g
+ho1ge4
+hol5a2r
+ho1la
+3hol4e
+ho4ma
+ho2me3
+ho1n4a
+ho2n
+ho5ny
+3hood
+hoo2
+hoo2n4
+hor5at
+ho1ra
+ho5r2is
+hort3e
+ho5ru
+hos4e
+ho5sen
+hos1p
+1ho2us
+hou2
+house3
+hov5el
+4h5p
+4hr4
+hree5
+hro5niz
+hro2n
+hro3po
+4h1s2
+h4s2h
+h4t2a2r
+h1ta
+ht1en
+ht5es
+h4ty
+hu4g
+hu4min
+hu1mi
+hun5ke
+hu4nk2
+hun4t
+hus3t4
+h2us
+hu4t
+h1w
+h4war4t
+hw2a2r
+hy3pe
+hy3ph
+hy2s
+2i1a
+i2al
+fi2al
+iam4
+fiam4
+iam5e1te
+fiam5e1te
+i2a2n
+fi2a2n
+4ianc
+fianc
+ian3i
+fian3i
+4ian4t
+fian4t
+ia5pe
+fia5pe
+ia2ss4
+fia2ss4
+i4a1t2iv
+fi4a1t2iv
+ia4tric
+ia1tr
+fia4tric
+fia1tr
+i4a2tu
+fi4a2tu
+ibe4
+fibe4
+ib3er1a
+fib3er1a
+ib5ert
+fib5ert
+ib5i1a
+fib5i1a
+ib3in
+fib3in
+ib5it.
+ibi2t
+fib5it.
+fibi2t
+ib5ite
+fib5ite
+i1b2l2
+fi1b2l2
+ib3li
+fib3li
+i5bo
+fi5bo
+i1br
+fi1br
+i2b5ri
+fi2b5ri
+i5bu4n
+fi5bu4n
+4icam
+i1ca
+ficam
+5icap
+ficap
+4ic2a2r
+fic2a2r
+i4car.
+fi4car.
+i4cara
+fi4cara
+icas5
+ficas5
+i4cay
+fi4cay
+iccu4
+ic3c
+ficcu4
+fic3c
+4iceo
+ficeo
+4i2ch
+fi2ch
+2i1ci
+i5c2id
+fi5c2id
+ic5i1na
+i2cin
+fic5i1na
+fi2cin
+i2c2ip
+fi2c2ip
+ic3i1pa
+fic3i1pa
+i4c1ly4
+i1c4l4
+fi4c1ly4
+fi1c4l4
+i2c5oc
+i1co
+fi2c5oc
+fi1co
+4i1cr
+fi1cr
+5icra
+ficra
+i4cry
+fi4cry
+ic4te
+i2c1t
+fic4te
+fi2c1t
+ic1tu2
+fic1tu2
+ic4t3u1a
+fic4t3u1a
+ic3u1la
+fic3u1la
+ic4um
+fic4um
+ic5uo
+fic5uo
+i3cur
+fi3cur
+2id
+i4dai2
+i1d2a
+fi4dai2
+fi1d2a
+id5anc
+ida2n
+fid5anc
+fida2n
+id5d4
+fid5d4
+ide3a4l
+fide3a4l
+ide4s2
+fide4s2
+i2di
+fi2di
+id5i2a2n
+i1d4i3a
+fid5i2a2n
+fi1d4i3a
+idi4a2r
+fidi4a2r
+i5d2ie4
+fi5d2ie4
+i1d3io
+fi1d3io
+idi5ou2
+fidi5ou2
+id1it
+fid1it
+id5i1u
+fid5i1u
+i3dle
+fi3dle
+i4dom
+i1do
+fi4dom
+fi1do
+id3ow
+fid3ow
+i4dr
+fi4dr
+i2du
+fi2du
+id5uo
+fid5uo
+2ie4
+fie4
+ied4e
+fied4e
+5ie5ga
+fie5ga
+ie2ld3
+fie2ld3
+ie1n5a4
+fie1n5a4
+ien4e
+fien4e
+i5e4n1n2
+fi5e4n1n2
+i3ent2i
+ien1t
+fi3ent2i
+fien1t
+i1er.
+fi1er.
+i3es2c
+fi3es2c
+i1est
+fi1est
+i3et
+fi3et
+4if.
+fif.
+if5ero
+ifer1
+fif5ero
+fifer1
+iff5en
+i4f1f
+iff5en
+i4ff
+fiff5en
+fi4ff
+if4fr
+iffr
+fiffr
+4i2f3ic.
+i1fi
+4i2fic.
+i1fi
+fi2fic.
+1fi1fi
+i3f2ie4
+i3fie4
+fi3fie4
+i3f4l2
+i3fl2
+fi3fl2
+4i2ft
+fi2ft
+2ig
+iga5b
+i1ga
+figa5b
+fi1ga
+ig3er1a
+fig3er1a
+ight3i
+fight3i
+4igi
+figi
+i3gib
+fi3gib
+ig3il4
+fig3il4
+ig3in
+fig3in
+ig3it
+fig3it
+i4g4l2
+fi4g4l2
+i2go
+fi2go
+ig3or
+fig3or
+ig5ot
+fig5ot
+i5gre
+i1gr
+fi5gre
+fi1gr
+ig2u5i2
+fig2u5i2
+ig1ur
+fig1ur
+i3h
+fi3h
+4i5i4
+fi5i4
+i3j
+fi3j
+4ik
+fik
+i1la
+fi1la
+il3a4b
+fil3a4b
+i4l4ade
+ila2d
+fi4l4ade
+fila2d
+i2l5am
+fi2l5am
+ila5ra
+il2a2r
+fila5ra
+fil2a2r
+i3leg
+fi3leg
+il1er
+fil1er
+ilev4
+filev4
+i2l5f
+fi2l5f
+i2l5ff
+fi2l5ff
+i2l5fi
+1fi2l5fi
+i2l5fl2
+fi2l5fl2
+il1i
+il3i1a
+fil3i1a
+il2ib
+fil2ib
+il3io
+fil3io
+il4ist
+fil4ist
+2il1it
+fil1it
+il2iz
+fil2iz
+ill5ab
+il1l
+fill5ab
+4i2l1n2
+fi2l1n2
+il3o1q
+fil3o1q
+il4ty
+i4lt
+fil4ty
+fi4lt
+il5ur
+fil5ur
+il3v
+fil3v
+i4mag
+i1ma
+fi4mag
+fi1ma
+im3age
+fim3age
+ima5ry
+im2a2r
+fima5ry
+fim2a2r
+iment2a5r
+i1men
+i3men1t
+imen1ta
+fiment2a5r
+fi1men
+fi3men1t
+fimen1ta
+4imet
+fimet
+im1i
+fim1i
+im5i1d4a
+im2id
+fim5i1d4a
+fim2id
+imi5le
+fimi5le
+i5m2ini
+fi5m2ini
+4imit
+fimit
+im4ni
+i4m1n
+fim4ni
+fi4m1n
+i3mo2n
+i1mo
+fi3mo2n
+fi1mo
+i2mu
+fi2mu
+im3u1la
+fim3u1la
+2in.
+fin.
+i4n3au
+i1na
+fi4n3au
+4inav
+finav
+incel4
+fincel4
+in3cer
+fin3cer
+4ind
+in5dling
+fin5dling
+2ine
+i3nee
+fi3nee
+in4er4a2r
+in1er
+iner1a
+fin4er4a2r
+fin1er
+finer1a
+i5n2e2ss
+i1nes
+fi5n2e2ss
+fi1nes
+4in1ga
+fin1ga
+4inge
+finge
+in5gen
+fin5gen
+4ingi
+fingi
+in5gling
+ingl2
+fin5gling
+fingl2
+4in1go
+fin1go
+4in1gu
+fin1gu
+2ini
+fini
+i5ni.
+fi5ni.
+i4n4i1a
+fi4n4i1a
+in3i4o
+fin3i4o
+in1is
+fin1is
+i5ni4te.
+in2it
+in2ite
+fi5ni4te.
+fin2it
+fin2ite
+5i3n2i1t2io
+ini1ti
+fi3n2i1t2io
+fini1ti
+in3i1ty
+fin3i1ty
+4i4nk2
+fi4nk2
+4i4n1l
+fi4n1l
+2i4n1n2
+2i1no
+fi1no
+i4no4c
+fi4no4c
+ino4s
+fino4s
+i4not
+fi4not
+2i2n1s2
+fi2n1s2
+in3se
+fin3se
+insu1r5a
+in1su
+insu2r
+finsu1r5a
+fin1su
+finsu2r
+2int.
+in1t
+fint.
+fin1t
+2in4th
+fin4th
+in1u
+fin1u
+i5n2us
+fi5n2us
+4iny
+finy
+2io
+fio
+4io.
+fio.
+io1ge4
+fio1ge4
+io2gr
+fio2gr
+i1ol
+fi1ol
+io4m
+fio4m
+ion3at
+io2n
+io1n1a
+fion3at
+fio2n
+fio1n1a
+ion4ery
+ion1er
+fion4ery
+fion1er
+ion3i
+fion3i
+i2o5ph
+fi2o5ph
+ior3i
+fior3i
+i4os
+fi4os
+i4o5th
+fi4o5th
+i5oti
+fi5oti
+io4to
+fio4to
+i4our
+iou2
+fi4our
+fiou2
+2ip
+fip
+ipe4
+fipe4
+iphr2as4
+ip4hr4
+fiphr2as4
+fip4hr4
+ip3i
+fip3i
+ip4ic
+fip4ic
+ip4re4
+ipr2
+fip4re4
+fipr2
+ip3ul
+fip3ul
+i3qua
+iqu2
+fi3qua
+fiqu2
+iq5ue1f
+fiq5ue1f
+iq5u1e4ff
+fiq5u1e4ff
+iq5ue1fi
+1fiq5ue1fi
+iq5ue1fl2
+fiq5ue1fl2
+iq3u2id
+iq2ui2
+fiq3u2id
+fiq2ui2
+iq3ui3t
+fiq3ui3t
+4ir
+fir
+i1ra
+fi1ra
+i2ra4b
+fi2ra4b
+i4rac
+fi4rac
+ird5e
+fird5e
+ire4de
+i2r2ed
+fire4de
+fi2r2ed
+i4re1f
+fi4re1f
+i4r1e4ff
+fi4r1e4ff
+i4re3fi
+1fi4re3fi
+i4re1fl2
+fi4re1fl2
+i4rel4
+fi4rel4
+i4res
+fi4res
+ir5gi
+irg2
+fir5gi
+firg2
+ir1i
+fir1i
+iri5de
+ir2id
+firi5de
+fir2id
+ir4is
+fir4is
+iri3tu
+firi3tu
+5i5r2iz
+fi5r2iz
+ir4min
+ir1m
+fir4min
+fir1m
+iro4g
+firo4g
+5iron.
+iro2n
+firon.
+firo2n
+ir5ul
+fir5ul
+2is.
+fis.
+is5ag
+isa2
+fis5ag
+fisa2
+is3a2r
+fis3a2r
+isas5
+fisas5
+2is1c
+fis1c
+is3ch2
+fis3ch2
+4ise
+fise
+is3er
+fis3er
+3i4s3f
+fi4s3f
+3i4s4ff
+fi4s4ff
+3i4s3fi
+1fi4s3fi
+3i4s3fl2
+fi4s3fl2
+is5ha2n
+is2h
+fis5ha2n
+fis2h
+is3ho2n3
+isho4
+fis3ho2n3
+fisho4
+ish5op
+fish5op
+is3i1b
+fis3i1b
+is2i4d
+fis2i4d
+i5sis
+fi5sis
+is5i1t2iv
+isi1ti
+fis5i1t2iv
+fisi1ti
+4is4k2
+fis4k2
+isla2n4
+is1l2
+fisla2n4
+fis1l2
+4is4m1s2
+i2s1m
+fis4m1s2
+fi2s1m
+i2so
+fi2so
+iso5mer
+i3som
+iso2me
+fiso5mer
+fi3som
+fiso2me
+is1p
+fis1p
+is2pi
+fis2pi
+is4py
+fis4py
+4i2s1s
+fi2s1s
+is4sal
+is1sa2
+fis4sal
+fis1sa2
+issen4
+fissen4
+is4s1e4s
+fis4s1e4s
+is4ta.
+is1ta
+fis4ta.
+fis1ta
+is1te
+fis1te
+is1t2i
+ist4ly
+is2tl
+fist4ly
+fis2tl
+4istral
+ist4r
+is1tra
+fistral
+fist4r
+fis1tra
+i2su
+fi2su
+is5us
+fis5us
+4i3ta.
+i1ta
+fi3ta.
+fi1ta
+ita4bi
+i2tab
+fita4bi
+fi2tab
+i4tag
+fi4tag
+4ita5m
+fita5m
+i3ta2n
+fi3ta2n
+i3tat
+fi3tat
+2ite
+fite
+it3er1a
+fit3er1a
+i5ter1i
+fi5ter1i
+it4es
+fit4es
+2ith
+fith
+i1ti
+fi1ti
+4i1t2i1a
+fi1t2i1a
+4i2tic
+fi2tic
+it3i1ca
+fit3i1ca
+5i5tick1
+fi5tick1
+i2t3ig
+fi2t3ig
+it5il1l
+fit5il1l
+i2tim
+fi2tim
+2i1t2io
+fi1t2io
+4itis
+fitis
+i4ti2s4m
+fi4ti2s4m
+i2t5o5m
+i1to
+fi2t5o5m
+fi1to
+4ito2n
+fito2n
+i4tram
+i1tra
+fi4tram
+fi1tra
+it5ry
+fit5ry
+4i4t3t2
+fi4t3t2
+it3u1at
+i1tu
+itu1a
+fit3u1at
+fi1tu
+fitu1a
+i5tud2
+fi5tud2
+it3ul
+fit3ul
+4itz.
+i4tz
+fitz.
+fi4tz
+i1u
+fi1u
+2iv
+fiv
+iv3el1l
+fiv3el1l
+iv3en.
+fiv3en.
+i4v3er.
+fi4v3er.
+i4vers.
+ive4r1s2
+fi4vers.
+five4r1s2
+iv5il.
+i2vil
+fiv5il.
+fi2vil
+iv5io
+fiv5io
+iv1it
+fiv1it
+i5vore
+fi5vore
+iv3o3ro
+fiv3o3ro
+i4v3ot
+fi4v3ot
+4i5w
+fi5w
+ix4o
+fix4o
+4iy
+fiy
+4iz2a2r2
+iza1
+fiz2a2r2
+fiza1
+i2z1i4
+fi2z1i4
+5izon1t
+i1zo
+izo2n
+fizon1t
+fi1zo
+fizo2n
+5ja
+jac4q
+ja4p
+1je
+je4r5s2
+4jes4t2ie4
+jest2i
+4jes2ty
+jew3
+jo4p
+5judg
+3ka.
+k3ab
+k5ag
+kais4
+kai2
+kal4
+k1b
+k2ed
+1kee
+ke4g
+ke5l2i
+k3en4d
+k1er
+kes4
+k3e2st.
+ke4ty
+k3f
+k4ff
+k3fi
+k3fl2
+kh4
+k1i
+5ki.
+5k2ic
+k4il1l
+kilo5
+k4im
+k4in.
+kin4de
+k4ind
+k5i5n2e2ss
+k2ine
+ki1nes
+kin4g
+k2i4p
+kis4
+k5is2h
+kk4
+k1l
+4k3ley
+4k1ly
+k1m
+k5nes
+1k2no
+ko5r
+kos2h4
+k3ou2
+kro5n
+4k1s2
+k4sc
+ks4l2
+k4s4y
+k5t
+k1w
+lab3ic
+flab3ic
+l4abo
+fl4abo
+l4a2ci4
+fl4a2ci4
+l4ade
+la2d
+fl4ade
+fla2d
+la3d2y
+fla3d2y
+lag4n
+flag4n
+la2m3o
+fla2m3o
+3l4and
+la2n
+fl4and
+fla2n
+lan4dl
+flan4dl
+lan5et
+flan5et
+lan4te
+lan1t
+flan4te
+flan1t
+lar4g2
+l2a2r
+flar4g2
+fl2a2r
+lar3i
+flar3i
+las4e
+flas4e
+la5ta2n
+la2ta
+fla5ta2n
+fla2ta
+4latel2i4
+flatel2i4
+4la1t2iv
+fla1t2iv
+4lav
+flav
+la4v4a
+fla4v4a
+2l1b
+fl1b
+lbin4
+flbin4
+4l1c2
+fl1c2
+lce4
+flce4
+l3ci
+fl3ci
+2ld
+fld
+l2de
+fl2de
+ld4ere
+fld4ere
+ld4er1i
+fld4er1i
+ldi4
+fldi4
+ld5is1
+fld5is1
+l3dr
+fl3dr
+l4dri
+fl4dri
+le2a
+fle2a
+le4bi
+l2e1b
+fle4bi
+fl2e1b
+le2ft5
+le1f
+fle2ft5
+fle1f
+5leg.
+fleg.
+5le4g1g2
+fle4g1g2
+le4mat
+le1ma
+fle4mat
+fle1ma
+lem5at1ic
+flem5at1ic
+4len.
+flen.
+3lenc
+flenc
+5le2ne.
+fle2ne.
+1len1t
+flen1t
+le3ph
+fle3ph
+le4pr2
+fle4pr2
+le2ra5b
+ler1a
+fle2ra5b
+fler1a
+ler4e
+fler4e
+3lerg2
+flerg2
+3l4er1i
+fl4er1i
+l4ero
+fl4ero
+les2
+le5s1co
+les2c
+fle5s1co
+fles2c
+5lesq
+flesq
+3l2e2ss
+5less.
+fless.
+l3e1va
+fl3e1va
+lev4er.
+lev1er
+flev4er.
+flev1er
+lev4er1a
+flev4er1a
+lev4e4r1s2
+flev4e4r1s2
+3ley
+fley
+4leye
+fleye
+2lf
+flf
+2l4ff
+fl4ff
+2l1fi
+fl1fi
+2lfl2
+fl2fl2
+l5fr
+fl5fr
+4l1g4
+fl1g4
+l5ga
+fl5ga
+lg2a2r3
+flg2a2r3
+l4ges
+fl4ges
+l1go3
+fl1go3
+2l3h
+fl3h
+li4ag
+l2i1a
+fli4ag
+fl2i1a
+li2am4
+fli2am4
+liar5iz
+li2a2r
+liar1i
+fliar5iz
+fli2a2r
+fliar1i
+li4as
+fli4as
+li4a1to
+fli4a1to
+li5bi
+fli5bi
+5lic2io
+l2i1ci
+flic2io
+fl2i1ci
+li4cor
+li1co
+fli4cor
+fli1co
+4li4c3s2
+fli4c3s2
+4lict.
+li2c1t
+flict.
+fli2c1t
+l4icu
+fl4icu
+l3i1cy
+fl3i1cy
+l3i1d2a
+l2id
+fl3i1d2a
+fl2id
+lid5er
+flid5er
+3li2di
+fli2di
+lif3er1
+flif3er1
+l4i4f1f
+l4i4ff
+fl4i4ff
+li4f4l2
+li4fl2
+fl2i4fl2
+5ligate
+l2ig
+li1ga
+fligate
+fl2ig
+fli1ga
+3ligh
+fligh
+li4gra
+li1gr
+fli4gra
+fli1gr
+3l4ik
+fl4ik
+4l4i4l
+fl4i4l
+lim4b2l2
+li4m1b
+flim4b2l2
+fli4m1b
+lim3i
+flim3i
+li4mo
+fli4mo
+l4i4m4p
+fl4i4m4p
+l4i1na
+fl4i1na
+1l4ine
+fl4ine
+lin3ea
+flin3ea
+l2in3i
+fl2in3i
+link5er
+l4i4nk2
+flink5er
+fl4i4nk2
+li5og
+l2io
+fli5og
+fl2io
+4l4iq
+fl4iq
+lis4p
+flis4p
+l1it
+fl1it
+l2it.
+fl2it.
+5lit3i1ca
+li1ti
+l4i2tic
+flit3i1ca
+fli1ti
+fl4i2tic
+l5i5ti4c3s2
+fl5i5ti4c3s2
+liv3er
+l2iv
+fliv3er
+fl2iv
+l1iz
+fl1iz
+4lj
+flj
+lka3
+flka3
+l3kal4
+fl3kal4
+lka4t
+flka4t
+l1l
+fl1l
+l4law
+fl4law
+l2le
+fl2le
+l5le2a
+fl5le2a
+l3lec
+fl3lec
+l3leg
+fl3leg
+l3lel
+fl3lel
+l3le4n
+fl3le4n
+l3le4t
+fl3le4t
+ll2i
+fll2i
+l2lin4
+fl2lin4
+l5l4i1na
+fl5l4i1na
+ll4o
+fll4o
+lloq2ui5
+llo1q
+lloqu2
+flloq2ui5
+fllo1q
+flloqu2
+l2l5out
+llou2
+fl2l5out
+fllou2
+l5low
+fl5low
+2lm
+flm
+l5met
+fl5met
+lm3ing
+flm3ing
+l4mo2d1
+l1mo
+fl4mo2d1
+fl1mo
+lmo2n4
+flmo2n4
+2l1n2
+fl1n2
+3lo.
+flo.
+lob5al
+flob5al
+lo4ci
+flo4ci
+4lof
+flof
+4lo4ff
+flo4ff
+4lo2fi
+flo2fi
+4lofl2
+fl2ofl2
+3log1ic
+flog1ic
+l5o1go
+fl5o1go
+3logu
+flogu
+lom3er
+lo2me
+flom3er
+flo2me
+5long
+lo2n
+flong
+flo2n
+lon4i
+flon4i
+l3o3niz
+fl3o3niz
+lood5
+loo2
+flood5
+floo2
+5lo4pe.
+flo4pe.
+lop3i
+flop3i
+l3o4p1m
+fl3o4p1m
+lo1ra4
+flo1ra4
+lo4ra1to
+flo4ra1to
+lo5r2ie4
+flo5r2ie4
+lor5ou2
+flor5ou2
+5los.
+flos.
+los5et
+flos5et
+5los5o3phiz
+lo2so
+los4op
+los2oph
+flos5o3phiz
+flo2so
+flos4op
+flos2oph
+5los5o1phy
+flos5o1phy
+los4t
+flos4t
+lo4ta
+flo4ta
+loun5d
+lou2
+floun5d
+flou2
+2lout
+flout
+4lov
+flov
+2lp
+flp
+lpa5b
+l1pa
+flpa5b
+fl1pa
+l3pha
+fl3pha
+l5phi
+fl5phi
+lp5ing
+lpi2n
+flp5ing
+flpi2n
+l3pit
+fl3pit
+l4p2l2
+fl4p2l2
+l5pr2
+fl5pr2
+4l1r
+fl1r
+2l1s2
+fl1s2
+l4sc
+fl4sc
+l2se
+fl2se
+l4s2ie4
+fl4s2ie4
+4lt
+flt
+lt5ag
+l1ta
+flt5ag
+fl1ta
+ltane5
+lta2n
+fltane5
+flta2n
+l1te
+fl1te
+lten4
+flten4
+lter1a4
+flter1a4
+lth3i
+flth3i
+l5ties.
+lt2ie4
+fl5ties.
+flt2ie4
+ltis4
+fltis4
+l1tr
+fl1tr
+l1tu2
+fl1tu2
+ltu1r3a
+fltu1r3a
+lu5a
+flu5a
+lu3br
+flu3br
+lu2ch4
+flu2ch4
+lu3ci
+flu3ci
+lu3en
+flu3en
+luf4
+fluf4
+lu4ff
+flu4ff
+lu1fi
+flu1fi
+lu3fl2
+fl2u3fl2
+lu5id
+l2ui2
+flu5id
+fl2ui2
+lu4ma
+flu4ma
+5lu1mi
+flu1mi
+l5umn.
+lu4m1n
+fl5umn.
+flu4m1n
+5lum3n4i1a
+flum3n4i1a
+lu3o
+flu3o
+luo3r
+fluo3r
+4lup
+flup
+lu2ss4
+l2us
+flu2ss4
+fl2us
+lus3te
+flus3te
+1lut
+flut
+l5ven
+fl5ven
+l5vet4
+fl5vet4
+2l1w
+fl1w
+1ly
+4lya
+flya
+4ly1b
+fly1b
+ly5me4
+fly5me4
+ly3no
+fly3no
+2lys4
+flys4
+l5y3s2e
+fl5y3s2e
+1ma
+2mab
+ma2ca
+ma5ch2ine
+ma2ch
+ma4ch1in
+ma4c4l4
+mag5in
+mag1i
+5mag1n
+2mah
+ma2id5
+mai2
+4ma2ld
+ma3l2ig
+mal1i
+ma5lin
+mal4l2i
+mal1l
+mal4ty
+ma4lt
+5ma3n4i1a
+ma2n
+man5is
+man3iz
+4map
+ma5ri2ne.
+m2a2r
+mar1i
+mar2in4e
+ma5r2iz
+mar4ly
+mar1l
+mar3v
+ma5sce
+mas4e
+mas1t
+5mate
+m4ath3
+ma3tis
+4mati3za1
+ma1tiz
+4m1b
+m1ba4t5
+m5bil
+m4b3ing
+mb2i4v
+4m5c
+4me.
+2med
+4med.
+5me3d4i3a
+m4edi
+me3d2ie4
+m5e5d2y
+me2g
+mel5o2n
+me4l4t
+me2m
+me1m1o3
+1men
+me1n4a
+men5ac
+men4de
+4mene
+men4i
+me2n1s4
+men1su5
+3men1t
+men4te
+me5o2n
+m5er1sa2
+me4r1s2
+2mes
+3mest2i
+me4ta
+met3a2l
+me1te
+me5thi
+m4etr
+5met3ric
+me5tr2ie4
+me3try
+me4v
+4m1f
+4m4ff
+4m1fi
+4m1fl2
+2mh
+5mi.
+m2i3a
+mi1d4a
+m2id
+mid4g
+m2ig4
+3mil3i1a
+mil1i
+m5i5l2ie4
+m4il1l
+mi1n4a
+3m4ind
+m5i3nee
+m2ine
+m4ingl2
+min5gli
+m5ing1ly
+min4t
+m4in1u
+miot4
+m2io
+m2is
+mi4s4er.
+m4ise
+mis3er
+mis5l2
+mis4t2i
+m5i4stry
+mist4r
+4m2ith
+m2iz
+4mk
+4m1l
+m1m
+mma5ry
+m1ma
+mm2a2r
+4m1n
+m1n4a
+m4n1in
+mn4o
+1mo
+4mocr
+5moc5ra1tiz
+mo2d1
+mo4go
+mois2
+moi2
+mo4i5se
+4m2ok
+mo5lest
+moles2
+mo3me
+mon5et
+mo2n
+mon5ge
+mo3n4i3a
+mon4i2s1m
+mon1is
+mon4ist
+mo3niz
+monol4
+mo3ny.
+mo2r
+4mo5ra.
+mo1ra
+mos2
+mo5sey
+mo3sp
+m4oth3
+m5ouf
+mou2
+m5ou4ff
+m5ou1fi
+m5ou3fl2
+3mo2us
+mo2v
+4m1p
+mpara5
+m1pa
+mp2a2r
+mpa5rab
+mp4a4r5i
+m3pe2t
+mphas4
+m2pi
+mp2i4a
+mp5ies
+mp2ie4
+m4p1i2n
+m5p4ir
+mp5is
+mpo3ri
+m1p4or
+mpos5ite
+m1pos
+m4po2us
+mpou2
+mpov5
+mp4tr
+m2p1t
+m2py
+4m3r
+4m1s2
+m4s2h
+m5si
+4mt
+1mu
+mul2a5r4
+mu1la
+5mu4lt
+mul1ti3
+3mum
+mun2
+4mup
+mu4u
+4mw
+1na
+2n1a2b
+n4abu
+4nac.
+na4ca
+n5a2c1t
+nag5er.
+nak4
+na4l1i
+na5l2i1a
+4na4lt
+na5mit
+n2a2n
+nan1ci4
+nan4it
+na4nk4
+nar3c
+n2a2r
+4nare
+nar3i
+nar4l
+n5ar1m
+n4as
+nas4c
+nas5t2i
+n2at
+na3ta2l
+na2ta
+nat5o5m2iz
+na2tom
+na1to
+n2au
+nau3se
+na2us
+3naut
+nav4e
+4n1b4
+nc2a2r5
+n1ca
+n4ces.
+n3cha
+n2ch
+n5cheo
+nche2
+n5ch4il2
+n3chis
+n2c1in
+n1ci
+n2c4it
+ncou1r5a
+n1co
+ncou2
+n1cr
+n1cu
+n4dai2
+n1d2a
+n5da2n
+n1de
+nd5e2st.
+ndes2
+ndi4b
+n5d2if
+n5d2i4ff
+n5d2i1fi
+n5d2i3fl2
+n1dit
+n3diz
+n5du2c
+n1du
+ndu4r
+nd2we
+nd1w
+2ne.
+n3e2a2r
+n2e2b
+neb3u
+ne2c
+5neck1
+2ned
+ne4gat
+ne1ga
+ne4g5a1t2iv
+5nege
+ne4la
+nel5iz
+nel2i
+ne5mi
+ne4mo
+1nen
+4nene
+3neo
+ne4po
+ne2q
+n1er
+ne2ra5b
+ner1a
+n4er3a2r
+n2ere
+n4er5i
+ner4r4
+1nes
+2nes.
+4ne1sp
+2nest
+4nes4w2
+3net1ic
+ne4v
+n5eve
+ne4w
+n3f
+n4ff
+n3fi
+n3fl2
+n4gab
+n1ga
+n3gel
+nge4n4e
+n1gen
+n5gere
+n3ger1i
+ng5ha
+n3gib
+ng1in
+n5git
+n4gla4
+ngl2
+ngov4
+n1go
+ng5s2h
+ngs2
+n1gu
+n4gum
+n2gy
+4n1h4
+nha4
+nhab3
+nhe4
+3n4i1a
+ni3a2n
+ni4ap
+ni3ba
+ni4b2l2
+n2i4d
+ni5di
+ni4er
+n2ie4
+ni2fi
+ni2fi
+ni5ficat
+nifi1ca
+ni5ficat
+nifi1ca
+n5i1gr
+n2ig
+n4ik4
+n1im
+ni3m2iz
+nim1i
+n1in
+5ni2ne.
+n2ine
+nin4g
+n2i4o
+5n2is.
+nis4ta
+n2it
+n4ith
+3n2i1t2io
+ni1ti
+n3itor
+ni1to
+ni3tr
+n1j
+4nk2
+n5k2ero
+nk1er
+n3ket
+nk3in
+nk1i
+n1k1l
+4n1l
+n5m
+nme4
+nmet4
+4n1n2
+nne4
+nni3al
+n3n4i1a
+nn2i4v
+nob4l2
+no3ble
+n5o1c4l4
+4n3o2d
+3noe
+4nog
+no1ge4
+nois5i
+noi2
+no5l4i
+5nol1o1gis
+3nomic
+n5o5m2iz
+no4mo
+no3my
+no4n
+non4ag
+no1n1a
+non5i
+n5oniz
+4nop
+5nop5o5l2i
+no2r5ab
+no1ra
+no4rary
+nor2a2r
+4nos2c
+nos4e
+nos5t
+no5ta
+1nou2
+3noun
+nov3el3
+nowl3
+n1p4
+npi4
+npre4c
+npr2
+n1q
+n1r
+nru4
+2n1s2
+n2s5ab
+nsa2
+nsati4
+ns4c
+n2se
+n4s3e4s
+ns2id1
+ns2ig4
+n2s1l2
+n2s3m
+n4soc
+n1so
+ns4pe
+n5spi
+nsta5b2l2
+ns1ta
+ns2tab
+n1t
+n2ta4b
+n1ta
+nte4r3s2
+nt2i
+n5ti2b
+nti4er
+nt2ie4
+nti2f2
+nti4ff
+nti2fi
+nti3fl2
+n3t2ine
+n2t1in
+n4t3ing
+nt2i4p
+ntrol5l2i
+ntrol1l
+n4t4s2
+ntu3me
+n1tu
+n3tum
+nu1a
+nu4d
+nu5en
+nuf4fe
+nu4f1f
+nuffe
+nu4ff
+n3ui4n
+n2ui2
+3nu3it
+n4um
+nu1me
+n5u1mi
+3nu4n
+n3uo
+nu3tr
+n1v2
+n1w4
+nym4
+nyp4
+4nz
+n3za1
+4oa
+oa2d3
+o5a5les2
+o2ale
+oard3
+o2a2r
+oas4e
+oast5e
+oat5i
+ob3a3b
+o5b2a2r
+o1be4l
+o1bi
+o2bin
+ob5ing
+o3br
+ob3ul
+o1ce
+o2ch4
+o3che4t
+oche2
+ocif3
+o1ci
+oci4ff
+oci1fi
+oci3fl2
+o4cil
+o4clam
+o1c4l4
+o4cod
+o1co
+oc3rac
+oc5ra1tiz
+ocre3
+5ocrit
+ocri2
+octo2r5a
+o2c1t
+oc1to
+oc3u1la
+o5cure
+od5d1ed
+od1d4
+od3ic
+o1d2i3o
+o2do4
+od4or3
+o4d5uct.
+o1du
+odu2c
+odu2c1t
+o4d5uc4t1s2
+o4el
+o5eng
+o3er
+oe4ta
+o3ev
+o2fi
+o2fi
+of5ite
+ofite
+of4i4t4t2
+ofi4t4t2
+o2g5a5r
+o1ga
+o4g5a1t2iv
+o4ga1to
+o1ge
+o5gene
+o1gen
+o5geo
+o4ger
+o3g2ie4
+1o1gis
+og3it
+o4gl2
+o5g2ly
+3ogniz
+og1ni
+o4g4ro
+o1gr
+og2u5i2
+1o1gy
+2o2g5y3n
+o1h2
+ohab5
+oi2
+oic3es
+oi3der
+o2id
+oi4f1f4
+oi4ff4
+o2ig4
+oi5let
+o3ing
+oint5er
+oin1t
+o5i2s1m
+oi5so2n
+oi2so
+oist5en
+ois1te
+oi3ter
+o2ite
+o5j
+2ok
+o3ken
+ok5ie4
+ok1i
+o1la
+o4la2n
+ola2ss4
+o2l2d
+ol2d1e
+ol3er
+o3les2c
+oles2
+o3let
+ol4fi
+o2lf
+o2l4fi
+ol2i
+o3l2i1a
+o3lice
+ol5id.
+ol2id
+o3li4f
+o3l4i4ff
+o3li4fi
+o3li4fl2
+o5l4i4l
+ol3ing
+o5l2io
+o5l2is.
+ol3is2h
+o5l2ite
+ol1it
+o5l2i1t2io
+oli1ti
+o5l2iv
+oll2i4e4
+ol1l
+oll2i
+ol5o3giz
+olo4r
+ol5p2l2
+o2lp
+o4l2t
+ol3ub
+ol3ume
+ol3un
+o5l2us
+ol2v
+o2ly
+o2m5ah
+o1ma
+oma5l
+om5a1tiz
+om2be
+o4m1b
+om4b2l2
+o2me
+om3e1n4a
+o1men
+om5er2se
+ome4r1s2
+o4met
+om5e3try
+om4etr
+o3m2i3a
+om3ic.
+om3i1ca
+o5m2id
+om1in
+o5m2ini
+5ommend
+om1m
+om1men
+omo4ge
+o1mo
+o4mo2n
+om3pi
+o4m1p
+ompro5
+ompr2
+o2n
+o1n1a
+on4ac
+o3n2a2n
+on1c
+3oncil
+on1ci
+2ond
+on5do
+o3nen
+o2n5est
+o1nes
+on4gu
+on1ic
+o3n2i4o
+on1is
+o5ni1u
+on3key
+o4nk2
+on4odi
+o4n3o2d
+on3o3my
+o2n3s2
+on5spi4
+onspi1r5a
+onsp4ir
+on1su4
+onten4
+on1t
+on3t4i
+onti2f5
+onti4ff
+onti2fi
+onti3fl2
+on5um
+on1va5
+on1v2
+oo2
+ood5e
+ood5i
+o2o4k
+oop3i
+o3ord
+oost5
+o2pa
+o2p2e5d
+op1er
+3oper1a
+4op4erag
+2oph
+o5pha2n
+o5ph4er
+op3ing
+opi2n
+o3pit
+o5po2n
+o4posi
+o1pos
+o1pr2
+op1u
+opy5
+o1q
+o1ra
+o5ra.
+o4r3ag
+or5al1iz
+oral1i
+or5an4ge
+ora2n
+or2ang
+ore5a
+o5re1a4l
+or3ei2
+or4e5s2h
+or5e2st.
+ores2t
+orew4
+or4gu
+org2
+4o5r2i3a
+or3i1ca
+o5ril
+or1in
+o1r2i1o
+or3i1ty
+o3ri1u
+or2mi
+or1m
+orn2e
+o5rof
+o5ro4ff
+o5ro2fi
+o5rofl2
+or3oug
+orou2
+or5pe
+or1p
+3orrh4
+or1r4
+or4se
+o4rs2
+ors5en
+orst4
+or3thi
+or3thy
+or4ty
+o5rum
+o1ry
+os3al
+osa2
+os2c
+os4ce
+o3scop
+os1co
+4oscopi
+o5scr
+os4i4e4
+os5i1t2iv
+osi1ti
+os3i1to
+os3i1ty
+o5si4u
+os4l2
+o2so
+o2s4pa
+os4po
+os2ta
+o5stati
+os5til
+ost2i
+os5tit
+o4ta2n
+o1ta
+otele4g
+ot3er.
+ot5e4r1s2
+o4tes
+4oth
+oth5e1si
+oth2e
+oth1es
+oth3i4
+ot3ic.
+ot5i1ca
+o3tice
+o3tif2
+o3ti4ff
+o3ti1fi
+o3ti3fl2
+o3tis
+oto5s2
+o1to
+ou2
+ou3b2l2
+ouch5i
+ou2ch
+ou5et
+ou4l
+ounc5er
+oun2d
+ou5v2
+ov4en
+over4ne
+ove4r3s2
+ov4ert
+o3vis
+o4vi1ti4
+o5v4ol
+ow3der
+ow3el
+ow5est3
+ow1i2
+own5i
+o4wo2
+oy1a
+1pa
+pa4ca
+pa4ce
+pa2c4t
+p4a2d
+5paga4n
+pa1ga
+p3agat
+p4ai2
+pa4i4n4
+p4al
+pa1n4a
+pa2n
+pan3el
+pan4ty
+pan1t
+pa3ny
+pa1p
+pa4pu
+para5b2l2
+p2a2r
+pa2rab
+par5age
+par5d2i
+3pare
+par5el
+p4a4r1i
+par4is
+pa2te
+pa5ter
+5pathic
+p4ath
+pa5thy
+pa4tric
+pa1tr
+pav4
+3pay
+4p1b
+pd4
+4pe.
+3pe4a
+pear4l
+pe2a2r
+pe2c
+2p2ed
+3pede
+3p4edi
+pe3d4i3a4
+ped4ic
+p4ee
+pee4d
+pek4
+pe4la
+pel2i4e4
+pel2i
+pe4n2a2n
+pe1na
+p4enc
+pen4th
+pen1t
+pe5o2n
+p4era.
+per1a
+pera5b2l2
+pe2ra4b
+p4erag
+p4er1i
+peri5st
+per2is
+per4mal
+per3m4
+per1ma
+per2me5
+p4ern
+p2er3o
+per3ti
+p4e5ru
+per1v
+pe2t
+pe5ten
+pe5tiz
+4pf
+4p4ff
+4p1fi
+4pfl2
+4pg
+4ph.
+phar5i
+ph2a2r
+ph4e3no
+phe2n
+ph4er
+ph4es.
+ph1es
+ph1ic
+5ph2ie4
+ph5ing
+5phis1t2i
+3phiz
+p4h2l4
+3phob
+3phone
+pho2n
+5phoni
+pho4r
+4p4h1s2
+ph3t
+5phu
+1phy
+p2i3a
+pi2a2n4
+pi4c2ie4
+p2i1ci
+pi4cy
+p4id
+p5i1d2a
+pi3de
+5pi2di
+3piec
+p2ie4
+pi3en
+pi4grap
+p2ig
+pi1gr
+pi3lo
+pi2n
+p4in.
+p4ind4
+p4i1no
+3p2i1o
+pio2n4
+p3ith
+pi5tha
+pi2tu
+2p3k2
+1p2l2
+3pla2n
+plas5t
+pl2i3a
+pli5er
+pl2ie4
+4pl2ig
+pli4n
+ploi4
+plu4m
+plu4m4b
+4p1m
+2p3n
+po4c
+5pod.
+po5em
+po3et5
+5po4g
+poin2
+poi2
+5poin1t
+poly5t
+po2ly
+po4ni
+po2n
+po4p
+1p4or
+po4ry
+1pos
+po2s1s
+p4ot
+po4ta
+5poun
+pou2
+4p1p
+ppa5ra
+p1pa
+pp2a2r
+p2pe
+p4p2ed
+p5pel
+p3pen
+p3per
+p3pe2t
+ppo5s2ite
+p1pos
+pr2
+pray4e4
+5pre1c2i
+pre5co
+pre3e2m
+pre4f5ac
+pre1f
+pre1fa
+pre4la
+pr1e3r4
+p3re1s2e
+3pr2e2ss
+pre5ten
+pre3v2
+5pr2i4e4
+prin4t3
+pr2i4s
+pri2s3o
+p3ro1ca
+pr2oc
+prof5it
+pro2fi
+profit
+pro2fi
+pro3l
+pros3e
+pro1t
+2p1s2
+p2se
+ps4h
+p4si1b
+2p1t
+p2t5a4b
+p1ta
+p2te
+p2th
+p1ti3m
+ptu4r
+p1tu
+p4tw4
+pub3
+pue4
+puf4
+pu4ff
+pu1fi
+pu3fl2
+pu4l3c2
+pu4m
+pu2n
+pur4r4
+5p2us
+pu2t
+5pute
+put3er
+pu3tr
+put4t1ed
+pu4t3t2
+put4t1in
+p3w
+qu2
+qua5v4
+2que.
+3quer
+3quet
+2rab
+ra3bi
+rach4e2
+ra2ch
+r5a1c4l4
+raf5fi
+ra2f
+ra4f1f4
+raffi
+ra2f4t
+r2ai2
+ra4lo
+ram3et
+r2ami
+ra3ne5o
+ra2n
+ran4ge
+r2ang
+r4ani
+ra5no4
+rap3er
+3ra1phy
+rar5c
+r2a2r
+rare4
+rar5e1f
+rar5e4ff
+rar5e3fi
+rar5e1fl2
+4raril
+rar1i
+r2as
+ratio2n4
+ra1t2io
+rau4t
+ra5vai2
+ra2va
+rav3el
+ra5z2ie4
+ra2z1i
+r1b
+r4bab
+r4bag
+rbi2
+r2b3i4f
+r2b3i4ff
+r2b3i4fi
+r2b3i4fl2
+r2bin
+r5b2ine
+rb5ing.
+rb4o
+r1c
+r2ce
+r1cen4
+r3cha
+r2ch
+rch4er
+rche2
+r4ci4b
+r1ci
+r2c4it
+rcum3
+r4dal
+r1d2a
+rd2i
+r1d4i4a
+rdi4er
+rd2ie4
+rd1in4
+rd3ing
+2re.
+re1a4l
+re3a2n
+re5ar1r4
+re2a2r
+5rea2v
+re4aw
+r5ebrat
+r2e1b
+re3br
+rec5ol1l
+re2col
+re1co
+re4c5ompe
+reco4m1p
+re4cre
+re1cr
+2r2ed
+re1de
+re3dis1
+r4edi
+red5it
+re4fac
+re1f
+re1fa
+re2fe
+re5fer.
+refer1
+re3fi
+re3fi
+re4fy
+reg3is
+re5it
+rei2
+re1l2i
+re5lu
+r4en4ta
+ren1t
+ren4te
+re1o
+re5pi2n
+re4posi
+re1po
+re1pos
+re1pu
+r1er4
+r4er1i
+r2ero4
+r4e5ru
+r4es.
+re4spi
+re1sp
+res4s5i4b
+r2e2ss
+res1si
+res2t
+re5s2ta2l
+res1ta
+r2e3st4r
+re4ter
+re4ti4z
+re3tri
+r4eu2
+re5u1t2i
+rev2
+re4val
+re1va
+rev3el
+r5ev5er.
+rev1er
+re5ve4r1s2
+re5vert
+re5vi4l
+re1vi
+rev5olu
+re4wh
+r1f
+r4ff
+r1fi
+r1fl2
+r3fu4
+r4fy
+rg2
+rg3er
+r3get
+r3g1ic
+rgi4n
+rg3ing
+r5gis
+r5git
+r1gl2
+rgo4n2
+r1go
+r3gu
+rh4
+4rh.
+4rhal
+r2i3a
+ria4b
+ri4ag
+r4ib
+rib3a
+ric5as5
+ri1ca
+r4ice
+4r2i1ci
+5ri5c2id
+ri4c2ie4
+r4i1co
+rid5er
+r2id
+ri3enc
+r2ie4
+ri3en1t
+ri1er
+ri5et
+rig5a2n
+r2ig
+ri1ga
+5r4igi
+ril3iz
+ril1i
+5rima2n
+ri1ma
+rim5i
+3ri1mo
+rim4pe
+ri4m1p
+r2i1na
+5rina.
+r4in4d
+r2in4e
+rin4g
+r2i1o
+5riph
+r2ip
+riph5e
+ri2p2l2
+rip5lic
+r4iq
+r2is
+r4is.
+r2is4c
+r3is2h
+ris4p
+ri3ta3b
+ri1ta
+r5ited.
+r2ite
+ri2t1ed
+rit5er.
+rit5e4r1s2
+r4i2t3ic
+ri1ti
+ri2tu
+rit5ur
+riv5el
+r2iv
+riv3et
+riv3i
+r3j
+r3ket
+rk4le
+rk1l
+rk4lin
+r1l
+rle4
+r2led
+r4l2ig
+r4lis
+rl5is2h
+r3lo4
+r1m
+rma5c
+r1ma
+r2me
+r3men
+rm5e4r1s2
+rm3ing
+r4ming.
+r4m2io
+r3mit
+r4my
+r4n2a2r
+r1na
+r3nel
+r4n1er
+r5net
+r3ney
+r5nic
+r1nis4
+r3n2it
+r3n2iv
+rno4
+r4nou2
+r3nu
+rob3l2
+r2oc
+ro3cr
+ro4e
+ro1fe
+ro5fil
+ro2fi
+ro5fil
+ro2fi
+r2ok2
+ro5k1er
+5role.
+rom5e1te
+ro2me
+ro4met
+rom4i
+ro4m4p
+ron4al
+ro2n
+ro1n1a
+ron4e
+ro5n4is
+ron4ta
+ron1t
+1room
+roo2
+5root
+ro3pel
+rop3ic
+ror3i
+ro5ro
+ro2s5per
+ro2s4s
+ro4th2e
+r4oth
+ro4ty
+ro4va
+rov5el
+rox5
+r1p
+r4pe4a
+r5pen1t
+rp5er.
+r3pe2t
+rp4h4
+rp3ing
+rpi2n
+r3po
+r1r4
+rre4c
+rre4f
+rr1e4ff
+rre4fi
+rre4fl2
+r4re1o
+rre4s2t
+rr2i4o
+rr2i4v
+rro2n4
+rros4
+rrys4
+4rs2
+r1sa2
+rsa5ti
+rs4c
+r2se
+r3sec
+rse4cr
+r4s5er.
+rs3e4s
+r5se5v2
+r1s2h
+r5sha
+r1si
+r4si4b
+rso2n3
+r1so
+r1sp
+r5sw2
+rta2ch4
+r1ta
+r4tag
+r3t2e1b
+r3ten4d
+r1te5o
+r1ti
+r2t5i2b
+rt2i4d
+r4tier
+rt2ie4
+r3t2ig
+rtil3i
+rtil4l
+r4ti1ly
+r4tist
+r4t2iv
+r3tri
+rtr2oph4
+rt4s2h4
+r4t1s2
+ru3a
+ru3e4l
+ru3en
+ru4gl2
+ru3i4n
+r2ui2
+rum3p2l2
+ru4m2p
+ru2n
+ru4nk5
+run4ty
+run1t
+r5usc2
+r2us
+ru2t1i5n
+r4u1t2i
+rv4e
+rvel4i
+r3ven
+rv5er.
+r5vest
+rv4e2s
+r3vey
+r3vic
+r3v2i4v
+r3vo
+r1w
+ry4c
+5rynge
+ryn5g
+ry3t
+sa2
+2s1ab
+5sack1
+sac3ri2
+s3a2c1t
+5sai2
+sa4l2a2r4
+s4a2l4m
+sa5lo
+sa4l4t
+3sanc
+sa2n
+san4de
+s4and
+s1ap
+sa5ta
+5sa3t2io
+sa2t3u
+sau4
+sa5vor
+5saw
+4s5b
+scan4t5
+s1ca
+sca2n
+sca4p
+scav5
+s4ced
+4s3cei2
+s4ces
+s2ch2
+s4cho2
+3s4c2ie4
+s1ci
+5sc4in4d
+s2cin
+scle5
+s1c4l4
+s4cli
+scof4
+s1co
+sco4ff
+sco2fi
+scofl2
+4scopy5
+scou1r5a
+scou2
+s1cu
+4s5d
+4se.
+se4a
+seas4
+sea5w
+se2c3o
+3se2c1t
+4s4ed
+se4d4e
+s5edl
+se2g
+se1g3r
+5sei2
+se1le
+5se2l2f
+5se2l4ff
+5se2l2fi
+5se2l2fl2
+5selv
+4se1me
+se4mol
+se1mo
+sen5at
+se1na
+4senc
+sen4d
+s5e2ned
+sen5g
+s5en1in
+4sen4t1d
+sen1t
+4sen2tl
+se2p3a3
+4s1er.
+s4er1l
+s2er4o
+4ser3vo
+s1e4s
+s4e5s2h
+ses5t
+5se5um
+s4eu
+5sev
+sev3en
+sew4i2
+5sex
+4s3f
+4s4ff
+4s3fi
+4s3fl2
+2s3g
+s2h
+2sh.
+sh1er
+5shev
+sh1in
+sh3io
+3sh2i4p
+sh2i2v5
+sho4
+sh5o2l2d
+sho2n3
+shor4
+short5
+4sh1w
+si1b
+s5ic3c
+3si2de.
+s2id
+5side4s2
+5si2di
+si5diz
+4sig1n4a
+s2ig
+sil4e
+4si1ly
+2s1in
+s2i1na
+5si2ne.
+s2ine
+s3ing
+1s2io
+5sio2n
+sio1n5a
+s4i2r
+si1r5a
+1sis
+3s2i1t2io
+si1ti
+5si1u
+1s2iv
+5siz
+sk2
+4ske
+s3ket
+sk5ine
+sk1i
+sk5in4g
+s1l2
+s3lat
+s2le
+sl2ith5
+sl1it
+2s1m
+s3ma
+smal1l3
+sma2n3
+smel4
+s5men
+5s4m2ith
+smo2l5d4
+s1mo
+s1n4
+1so
+so4ce
+so2ft3
+so4lab
+so1la
+so2l3d2
+so3lic
+sol2i
+5sol2v
+3som
+3s4on.
+so2n
+so1n1a4
+son4g
+s4op
+5soph1ic
+s2oph
+s5o3phiz
+s5o1phy
+sor5c
+sor5d
+4sov
+so5vi
+2s1pa
+5sp4ai2
+spa4n
+spen4d
+2s5peo
+2sper
+s2phe
+3sph4er
+spho5
+spil4
+sp5ing
+spi2n
+4s3p2i1o
+s4p1ly
+s1p2l2
+s4po2n
+s1p4or4
+4sp4ot
+squal4l
+squ2
+s1r
+2ss
+s1sa2
+ssas3
+s2s5c
+s3sel
+s5sen5g
+s4ses.
+ss1e4s
+s5set
+s1si
+s4s2ie4
+ssi4er
+s4s5i1ly
+s4s1l2
+ss4li
+s4s1n4
+sspen4d4
+ss2t
+ssu1r5a
+s1su
+ssu2r
+ss5w2
+2st.
+s2tag
+s1ta
+s2ta2l
+stam4i
+5st4and
+sta2n
+s4ta4p
+5stat.
+s4t1ed
+stern5i
+s5t2ero
+ste2w
+ste1w5a
+s3th2e
+st2i
+s4ti.
+s5t2i1a
+s1tic
+5s4tick1
+s4t2ie4
+s3tif2
+s3ti4ff
+s3ti1fi
+s3ti3fl2
+st3ing
+s2t1in
+5st4ir
+s1tle
+s2tl
+5stock1
+s1to
+sto2m3a
+5stone
+sto2n
+s4top
+3store
+st4r
+s4tra2d
+s1tra
+5stra2tu
+s4tray
+s4tr2id
+4stry
+4st3w4
+s2ty
+1su
+su1al
+su4b3
+su2g3
+su5is
+s2ui2
+suit3
+s4ul
+su2m
+su1m3i
+su2n
+su2r
+4sv
+sw2
+4s1wo2
+s4y
+4sy1c
+3syl
+syn5o
+sy5rin
+1ta
+3ta.
+2tab
+ta5bles2
+tab2l2
+5tab5o5l1iz
+tabol2i
+4t4a2ci
+ta5do
+ta2d
+4ta2f4
+4ta4ff4
+4ta2fi
+4ta2fl2
+tai5lo
+tai2
+ta2l
+ta5la
+tal5en
+t2ale
+tal3i
+4talk
+tal4lis
+tal1l
+tall2i
+ta5log
+ta5mo
+tan4de
+ta2n
+t4and
+1tan1ta3
+tan1t
+ta5per
+ta5p2l2
+tar4a
+t2a2r
+4tar1c
+4tare
+ta3r2iz
+tar1i
+tas4e
+ta5s4y
+4tat1ic
+ta4tur
+ta2tu
+taun4
+tav4
+2taw
+tax4is
+tax3i
+2t1b
+4tc
+t4ch
+tch5e4t
+tche2
+4t1d
+4te.
+te2ad4i
+tea2d1
+4tea2t
+te1ce4
+5te2c1t
+2t1ed
+t4e5di
+1tee
+teg4
+te5ger4
+te5gi
+3tel.
+tel2i4
+5te2l1s2
+te2ma2
+tem3at
+3ten2a2n
+te1na
+3tenc
+3tend
+4te1nes
+1ten1t
+ten4tag
+ten1ta
+1teo
+te4p
+te5pe
+ter3c
+5ter3d
+1ter1i
+ter5ies
+ter2ie4
+ter3is
+teri5za1
+5t4er3n2it
+ter5v
+4tes.
+4t2e2ss
+t3ess.
+teth5e
+3t4eu
+3tex
+4tey
+2t1f
+2t4ff
+2t1fi
+2t1fl2
+4t1g
+2th.
+tha2n4
+th2e
+4thea
+th3eas
+the5a2t
+the3is
+thei2
+3the4t
+th5ic.
+th5i1ca
+4th4il2
+5th4i4nk2
+4t4h1l4
+th5ode
+5thod3ic
+4thoo2
+thor5it
+tho5riz
+2t4h1s2
+1t2i1a
+ti4ab
+ti4a1to
+2ti2b
+4tick1
+t4i1co
+t4ic1u
+5ti2di
+t2id
+3tien
+t2ie4
+tif2
+ti4ff
+ti1fi
+ti3fl2
+ti5fy
+2t2ig
+5tigu
+til2l5in4
+til1l
+till2i
+1tim
+4ti4m1p
+tim5ul
+ti2mu
+2t1in
+t2i1na
+3ti2ne.
+t2ine
+3t2ini
+1t2io
+ti5oc
+tion5ee
+tio2n
+5tiq
+ti3sa2
+3t4ise
+ti2s4m
+ti5so
+tis4p
+5tisti1ca
+tis1t2i
+tis1tic
+ti3tl
+ti4u
+1t2iv
+ti1v4a
+1tiz
+ti3za1
+ti3ze4n
+ti2ze
+2tl
+t5la
+tla2n4
+3tle.
+3tled
+3tles.
+tles2
+t5let.
+t5lo
+4t1m
+tme4
+2t1n2
+1to
+to3b
+to5crat
+4to2do4
+2tof
+2to4ff
+2to2fi
+2tofl2
+to2gr
+to5ic
+toi2
+to2ma
+to4m4b
+to3my
+ton4a4l1i
+to2n
+to1n1a
+to3n2at
+4tono
+4tony
+to2ra
+to3r2ie4
+tor5iz
+tos2
+5tour
+tou2
+4tout
+to3w2a2r
+4t1p
+1tra
+t2ra3b
+tra5ch
+tr4a2ci4
+tra2c4it
+trac4te
+tra2c1t
+tr2as4
+tra5ven
+trav5e2s5
+tre5f
+tr1e5ff
+tre5fi
+tre5fl2
+tre4m
+trem5i
+5tr2i3a
+tri5ces
+tr4ice
+5tri3c2i1a
+t4r2i1ci
+4tri4c3s2
+2trim
+tr2i4v
+tro5m4i
+tron5i
+tro2n
+4trony
+tro5phe
+tr2oph
+tro3sp
+tro3v
+tr2u5i2
+tr2us4
+4t1s2
+t4sc
+ts2h4
+t4sw2
+4t3t2
+t4tes
+t5to
+t1tu4
+1tu
+tu1a
+tu3a2r
+tu4b4i
+tud2
+4tue
+4tuf4
+4tu4ff
+4tu1fi
+4tu3fl2
+5t2u3i2
+3tum
+tu4nis
+tu1ni
+2t3up.
+3ture
+5turi
+tur3is
+tur5o
+tu5ry
+3t2us
+4tv
+tw4
+4t1wa
+twis4
+twi2
+4t1wo2
+1ty
+4tya
+2tyl
+type3
+ty5ph
+4tz
+t2z4e
+4uab
+uac4
+ua5na
+ua2n
+uan4i
+uar5an1t
+u2a2r
+uara2n
+uar2d
+uar3i
+uar3t
+u1at
+uav4
+ub4e
+u4bel
+u3ber
+u4b2ero
+u1b4i
+u4b5ing
+u3b4le.
+ub2l2
+u3ca
+uci4b
+u1ci
+u2c4it
+ucle3
+u1c4l4
+u3cr
+u3cu
+u4cy
+ud5d4
+ud3er
+ud5est
+udes2
+ude1v4
+u1dic
+ud3ied
+ud2ie4
+ud3ies
+ud5is1
+u5dit
+u4do2n
+u1do
+ud4si
+u2d1s2
+u4du
+u4ene
+ue2n1s4
+uen4te
+uen1t
+uer4il
+uer1i
+3u1fa
+u3f4l2
+u3fl2
+ugh3e2n
+ug5in
+2ui2
+uil5iz
+uil1i
+ui4n
+u1ing
+uir4m
+u4ir
+ui1ta4
+u2iv3
+ui4v4er.
+u5j
+4uk
+u1la
+ula5b
+u5lati
+ul2ch4
+u4l1c2
+5ulche2
+ul3der
+u2ld
+ul2de
+ul4e
+u1len
+ul4gi
+u4l1g4
+ul2i
+u5l2i1a
+ul3ing
+ul5is2h
+ul4l2a2r
+ul1l
+ul4li4b
+ull2i
+ul4lis
+4u2l3m
+u1l4o
+4u2l1s2
+uls5e4s
+ul2se
+ul1ti
+u4lt
+ul1tra3
+ul1tr
+4ul1tu2
+u3lu
+ul5ul
+ul5v
+u2m5ab
+u1ma
+um4bi
+u4m1b
+um4b1ly
+umb2l2
+u1mi
+u4m3ing
+umor5o
+u1mo
+umo2r
+u4m2p
+un2at4
+u1na
+u2ne
+un4er
+u1ni
+un4im
+u2n1in
+un5is2h
+un2i3v
+u2n3s4
+un4sw2
+un2t3a4b
+un1t
+un1ta
+un4ter.
+un4tes
+unu4
+un5y
+u4n5z
+u4o4rs2
+u5os
+u1ou2
+u1pe
+upe4r5s2
+u5p2i3a
+up3ing
+upi2n
+u3p2l2
+u4p3p
+upport5
+up1p4or
+up2t5i2b
+u2p1t
+up1tu4
+u1ra
+4ura.
+u4rag
+u4r2as
+ur4be
+ur1b
+ur1c4
+ur1d
+ure5a2t
+ur4fer1
+ur1f
+ur4fr
+u3rif
+u3ri4ff
+u3ri1fi
+u3ri3fl2
+uri4fic
+uri1fi
+uri4fic
+ur1in
+u3r2i1o
+u1rit
+ur3iz
+ur2l
+url5ing.
+ur4no4
+uros4
+ur4pe
+ur1p
+ur4pi
+urs5er
+u4rs2
+ur2se
+ur5tes
+ur3th2e
+ur1ti4
+ur4t2ie4
+u3ru
+2us
+u5sa2d
+usa2
+u5sa2n
+us4ap
+usc2
+us3ci
+use5a
+u5s2i1a
+u3sic
+us4lin
+us1l2
+us1p
+us5s1l2
+u2ss
+us5tere
+us1t4r
+u2su
+usu2r4
+u2ta4b
+u1ta
+u3tat
+4u4te.
+4utel
+4uten
+uten4i
+4u1t2i
+uti5l2iz
+util1i
+u3t2ine
+u2t1in
+ut3ing
+utio1n5a
+u1t2io
+utio2n
+u4tis
+5u5tiz
+u4t1l
+u2t5of
+u1to
+u2t5o4ff
+u2t5o2fi
+u2t5ofl2
+uto5g
+uto5mat1ic
+uto2ma
+u5to2n
+u4tou2
+u4t1s4
+u3u
+uu4m
+u1v2
+ux1u3
+u2z4e
+1va
+5va.
+2v1a4b
+vac5il
+v4a2ci
+vac3u
+vag4
+va4ge
+va5l2i4e4
+val1i
+val5o
+val1u
+va5mo
+va5niz
+va2n
+va5pi
+var5ied
+v2a2r
+var1i
+var2ie4
+3vat
+4ve.
+4ved
+veg3
+v3el.
+vel3l2i
+vel1l
+ve4lo
+v4e1ly
+ven3om
+v4eno
+v5enue
+v4erd
+5v2e2re.
+v4erel
+v3eren
+ver5enc
+v4eres
+ver3ie4
+ver1i
+vermi4n
+ver3m4
+3ver2se
+ve4r1s2
+ver3th
+v4e2s
+4ves.
+ves4te
+ve4te
+vet3er
+ve4ty
+vi5al1i
+v2i1a
+vi2al
+5vi2a2n
+5vi2de.
+v2id
+5vi2d1ed
+4v3i1den
+5vide4s2
+5vi2di
+v3if
+v3i4ff
+v3i1fi
+v3i3fl2
+vi5gn
+v2ig
+v4ik4
+2vil
+5v2il1it
+vil1i
+v3i3l2iz
+v1in
+4vi4na
+v2inc
+v4in5d
+4ving
+vi1o3l
+v2io
+v3io4r
+vi1ou2
+v2i4p
+vi5ro
+v4ir
+vis3it
+vi3so
+vi3su
+4vi1ti
+vit3r
+4vi1ty
+3v2iv
+5vo.
+voi4
+3v2ok
+vo4la
+v5ole
+5vo4l2t
+3vol2v
+vom5i
+vo2r5ab
+vo1ra
+vori4
+vo4ry
+vo4ta
+4vo1tee
+4vv4
+v4y
+w5ab2l2
+2wac
+wa5ger
+wa2g5o
+wait5
+wai2
+w5al.
+wam4
+war4t
+w2a2r
+was4t
+wa1te
+wa5ver
+w1b
+wea5r2ie4
+we2a2r
+wear1i
+we4ath3
+wea2t
+we4d4n4
+weet3
+wee5v
+wel4l
+w1er
+west3
+w3ev
+whi4
+wi2
+wil2
+wil2l5in4
+wil1l
+will2i
+win4de
+w4ind
+win4g
+w4ir4
+3w4ise
+w2ith3
+wiz5
+w4k
+wl4es2
+wl3in
+w4no
+1wo2
+wom1
+wo5v4en
+w5p
+wra4
+wri4
+wri1ta4
+w3s2h
+ws4l2
+ws4pe
+w5s4t
+4wt
+wy4
+x1a
+xac5e
+x4a2go
+xam3
+x4ap
+xas5
+x3c2
+x1e
+xe4cu1to
+xe1cu
+xe3c4ut
+x2ed
+xer4i
+x2e5ro
+x1h
+xhi2
+xh4il5
+xhu4
+x3i
+x2i5a
+xi5c
+xi5di
+x2id
+x4ime
+xi5m2iz
+xim1i
+x3o
+x4ob
+x3p
+xp4an4d
+x1pa
+xpa2n
+xpec1to5
+xpe2c
+xpe2c1t
+x2p2e3d
+x1t2
+x3ti
+x1u
+xu3a
+xx4
+y5ac
+3y2a2r4
+y5at
+y1b
+y1c
+y2ce
+yc5er
+y3ch
+ych4e2
+ycom4
+y1co
+ycot4
+y1d
+y5ee
+y1er
+y4er1f
+y4er4ff
+y4er1fi
+y4er1fl2
+yes4
+ye4t
+y5gi
+4y3h
+y1i
+y3la
+ylla5b2l2
+yl1l
+y3lo
+y5lu
+ymbol5
+y4m1b
+yme4
+ym1pa3
+y4m1p
+yn3c4hr4
+yn2ch
+yn5d
+yn5g
+yn5ic
+5ynx
+y1o4
+yo5d
+y4o5g
+yom4
+yo5net
+yo2n
+y4o2n3s2
+y4os
+y4p2ed
+yper5
+yp3i
+y3po
+y4po4c
+yp2ta
+y2p1t
+y5pu
+yra5m
+yr5i3a
+y3ro
+yr4r4
+ys4c
+y3s2e
+ys3i1ca
+y1s3io
+3y1sis
+y4so
+y2ss4
+ys1t
+ys3ta
+ysu2r4
+y1su
+y3thin
+yt3ic
+y1w
+za1
+z5a2b
+z2a2r2
+4zb
+2ze
+ze4n
+ze4p
+z1er
+z2e3ro
+zet4
+2z1i
+z4il
+z4is
+5zl
+4zm
+1zo
+zo4m
+zo5ol
+zoo2
+zte4
+4z1z2
+z4zy
+.as9s8o9c8i8a8te.
+.as1so
+.asso1ci
+.asso3c2i1a
+.as9s8o9c8i8a8t8es.
+.de8c9l8i9n8a9t8i8on.
+.de1c4l4
+.decl4i1na
+.declin2at
+.declina1t2io
+.declinatio2n
+.ob8l8i8g9a9t8o8ry.
+.ob2l2
+.obl2ig
+.obli1ga
+.obliga1to
+.obligato1ry
+.ph8i8l9a8n9t8h8r8o8p8ic.
+.ph4il2
+.phi1la
+.phila2n
+.philan1t
+.philant4hr4
+.philanthrop3ic
+.pr8e8s8e8nt.
+.p3re1s2e
+.presen1t
+.pr8e8s8e8n8ts.
+.presen4t4s2
+.pr8o8j8e8ct.
+.pro5j
+.pro1je
+.proje2c1t
+.pr8o8j8e8c8ts.
+.projec4t1s2
+.re8c9i9p8r8o8c9i9t8y.
+.re1c2i
+.rec2ip
+.recipr2
+.recipr2oc
+.re1cipro1ci
+.recipro2c1it
+.reciproci1ty
+.re9c8o8g9n8i9z8a8n8ce.
+.re1co
+.re2cog
+.rec3ogniz
+.recog1ni
+.recogniza1
+.recogniza2n
+.re8f9o8r9m8a9t8i8on.
+.re1f
+.re1fo
+.refo2r
+.refor1m
+.refor1ma
+.reforma1t2io
+.reformatio2n
+.re8t9r8i9b8u9t8i8on.
+.re3tri
+.retr4ib
+.retri3bu1t2io
+.retrib4u1t2i
+.retributio2n
+.ta9b8le.
+.2tab
+.tab2l2
+.ac8a8d9e9m8y.
+.a1ca
+.aca2d
+.acad4em
+.acade3my
+.ac8a8d9e9m8i8e8s.
+.academ2i4e4
+.ac9c8u9s8a9t8i8v8e.
+.ac3c
+.ac1c2us
+.accusa2
+.accusa1t2iv
+.ac8r8o9n8y8m.
+.acro2n
+.acronym4
+.ac8r8y8l9a8m8i8d8e.
+.acry3la
+.acrylam2id
+.ac8r8y8l9a8m8i8d8e8s.
+.acrylamide4s2
+.ac8r8y8l9a8l8d8e9h8y8d8e.
+.acryla2ld
+.acrylal2de
+.acrylalde1h4
+.acrylaldehy1d
+.ad8d9a9b8l8e.
+.ad1d2a
+.ad2d3a4b
+.addab2l2
+.ad8d9i9b8l8e.
+.addi1b2l2
+.ad8r8e8n9a9l8i8n8e.
+.a1dr
+.adre4
+.a5dren
+.adre1na
+.adrena4l1i
+.adrena1l4ine
+.ae8r8o9s8p8a8c8e.
+.ae4r
+.a2ero
+.aero2s4pa
+.aerospa4ce
+.af9t8e8r9t8h8o8u8g8h8t.
+.afterthou2
+.af9t8e8r9t8h8o8u8g8h8t8s.
+.afterthough4t1s2
+.ag8r8o8n9o9m8i8s8t.
+.a1gr
+.ag4ro
+.agro2n
+.agronom2is
+.ag8r8o8n9o9m8i8s8t8s.
+.agronomis4t1s2
+.al9g8e9b8r8a9i9c8a8l9l8y.
+.a4l1g4
+.alg2e1b
+.alge3br
+.algebr2ai2
+.algebrai1ca
+.algebraical1l
+.algebraical1ly
+.am9p8h8e8t9a9m8i8n8e.
+.a4m1p
+.amphe4t
+.amphe1ta
+.amphetam1in
+.amphetam2ine
+.am9p8h8e8t9a9m8i8n8e8s.
+.amphetami1nes
+.an9a9l8y8s8e.
+.3ana1ly
+.a1na
+.an4a2lys4
+.anal5y3s2e
+.an9a9l8y8s8e8d.
+.analy4s4ed
+.an8a8l8y9s8e8s.
+.analys1e4s
+.an9i8s8o9t8r8o8p9i8c.
+.ani2so
+.anisotrop3ic
+.an9i8s8o9t8r8o8p9i9c8a8l9l8y.
+.anisotropi1ca
+.anisotropical1l
+.anisotropical1ly
+.an9i8s8o8t9r8o9p8i8s8m.
+.anisotropi2s1m
+.an9i8s8o8t9r8o8p8y.
+.anisotropy5
+.an8o8m9a8l8y.
+.ano4
+.anoma5l
+.ano1ma
+.anoma1ly
+.an8o8m9a8l8i8e8s.
+.anomal1i
+.anomal2i4e4
+.an8t8i9d8e8r8i8v9a9t8i8v8e.
+.ant2id
+.antider1i
+.antider2i4v
+.antide4ri1va
+.antideri3vat
+.antider2iva1t2iv
+.an8t8i9d8e8r8i8v9a9t8i8v8e8s.
+.antiderivativ4e2s
+.an8t8i9h8o8l8o9m8o8r9p8h8i8c.
+.anti3h
+.antiholo1mo
+.antiholomo2r
+.antiholomor1p
+.antiholomorp4h4
+.antiholomorph1ic
+.an9t8i8n9o9m8y.
+.an2t1in
+.ant2i1no
+.antino3my
+.an9t8i8n9o9m8i8e8s.
+.antinom2ie4
+.an9t8i9n8u9c8l8e8a8r.
+.antin1u
+.antinucle3
+.antinu1c4l4
+.antinucle2a
+.antinucle2a2r
+.an9t8i9n8u9c8l8e9o8n.
+.antinucleo2n
+.an9t8i9r8e8v9o9l8u9t8i8o8n9a8r8y.
+.ant4ir
+.antirev2
+.antirev5olu
+.antirevo1lut
+.antirevol4u1t2i
+.antirevolutio1n5a
+.antirevolu1t2io
+.antirevolutio2n
+.antirevolution2a2r
+.ap8o8t8h9e9o9s8e8s.
+.ap4ot
+.ap4oth
+.apoth2e
+.apotheos4
+.apotheos1e4s
+.ap8o8t8h9e9o9s8i8s.
+.apotheo1sis
+.ap9p8e8n9d8i8x.
+.a4p1p
+.ap2pe
+.ap3pen
+.ar9c8h8i9m8e9d8e8a8n.
+.ar1c
+.ar2ch
+.archi2med
+.archimedea2n
+.ar9c8h8i9p8e8l9a8g8o.
+.arch2i4p
+.archipe4
+.archipe4la
+.archipela2go
+.ar9c8h8i9p8e8l9a9g8o8s.
+.ar9c8h8i8v8e.
+.arch2i2v
+.ar9c8h8i8v8e8s.
+.archiv4e2s
+.ar9c8h8i8v9i8n8g.
+.archiv1in
+.archi4ving
+.ar9c8h8i8v9i8s8t.
+.ar9c8h8i8v9i8s8t8s.
+.archivis4t1s2
+.ar9c8h8e9t8y8p9a8l.
+.arche2
+.arche4t
+.arche1ty
+.archety1pa
+.archetyp4al
+.ar9c8h8e9t8y8p9i9c8a8l.
+.archetyp3i
+.archetypi1ca
+.ar8c9t8a8n9g8e8n8t.
+.ar2c1t
+.arct5ang
+.arc1ta
+.arcta2n
+.arctan1gen
+.arctangen1t
+.ar8c9t8a8n9g8e8n8t8s.
+.arctangen4t4s2
+.as9s8i8g8n9a9b8l8e.
+.as1si
+.as4sig1n4a
+.ass2ig
+.assig2n1a2b
+.assignab2l2
+.as9s8i8g8n9o8r.
+.assig1no
+.as9s8i8g8n9o8r8s.
+.assigno4rs2
+.as9s8i8s8t9a8n8t9s8h8i8p.
+.as1sis
+.assis1ta
+.assista2n
+.assistan1t
+.assistan4t4s2
+.assistants2h4
+.assistant3sh2i4p
+.as9s8i8s8t9a8n8t9s8h8i8p8s.
+.assistantshi2p1s2
+.as8y8m8p9t8o9m8a8t8i8c.
+.as4y
+.asy4m1p
+.asym2p1t
+.asymp1to
+.asympto2ma
+.asymptomat1ic
+.as9y8m8p9t8o8t9i8c.
+.as8y8n9c8h8r8o9n8o8u8s.
+.asyn3c4hr4
+.asyn2ch
+.asynchro2n
+.asynchro1nou2
+.asynchrono2us
+.at8h9e8r9o9s8c8l8e9r8o9s8i8s.
+.4ath
+.ath2e
+.ath2ero
+.atheros2c
+.atheroscle5
+.atheros1c4l4
+.ath2eroscl4ero
+.atherosclero1sis
+.at9m8o8s9p8h8e8r8e.
+.a4t1m
+.at1mo
+.atmos2
+.atmo3sp
+.atmos2phe
+.atmo3sph4er
+.at9m8o8s9p8h8e8r8e8s.
+.at9t8r8i8b9u8t8e8d.
+.a4t3t2
+.attr4ib
+.attribu2t1ed
+.at9t8r8i8b9u8t9a8b8l8e.
+.attri4bu1ta
+.attribu2ta4b
+.attributab2l2
+.au9t8o9m8a9t8i8o8n.
+.au1to
+.auto2ma
+.automa1t2io
+.automatio2n
+.au9t8o8m9a9t8o8n.
+.au1toma1to
+.automato2n
+.au9t8o8m9a9t8a.
+.automa2ta
+.au9t8o9n8u8m9b8e8r9i8n8g.
+.au5to2n
+.auton5um
+.autonu4m1b
+.autonumber1i
+.autonumberin4g
+.au9t8o8n9o9m8o8u8s.
+.au4tono
+.autono4mo
+.autono3mo2us
+.autonomou2
+.au8t8o9r8o8u8n8d9i8n8g.
+.autorou2
+.autoroun2d
+.autoround1in
+.av9o8i8r9d8u9p8o8i8s.
+.avoi4
+.avo4ir
+.avoir1du
+.avoir4dup
+.avoi2rdupoi2
+.ba8n8d9l8e8a8d8e8r.
+.b4and
+.ban1dl
+.bandle2a
+.bandlea2d1
+.ba8n8d9l8e8a8d8e8r8s.
+.bandleade4r5s2
+.ba8n8k9r8u8p8t.
+.ba4nk2
+.bankru2p1t
+.ba8n8k9r8u8p8t9c8y.
+.bankrup4tc
+.bankrupt1cy
+.ba8n8k9r8u8p8t9c8i8e8s.
+.bankrupt1ci
+.bankruptc2ie4
+.ba8r9o8n8i8e8s.
+.b2a2r
+.ba5roni
+.baro2n
+.baron2ie4
+.ba8s8e9l8i8n8e9s8k8i8p.
+.basel2i
+.base1l4ine
+.baseli1nes
+.baselinesk2
+.baselinesk1i
+.baselinesk2i4p
+.ba9t8h8y8m9e9t8r8y.
+.1bat
+.b4ath
+.bathyme4
+.bathym4etr
+.bathyme3try
+.ba8t8h8y9s8c8a8p8h8e.
+.bathy2s
+.bathys4c
+.bathysca4p
+.bathys1ca
+.be8a8n9i8e8s.
+.bea2n
+.bea3nies
+.bean2ie4
+.be9h8a8v9i8o8u8r.
+.be1h4
+.behav1i
+.behavi1ou2
+.behav2io
+.behavi4our
+.be9h8a8v9i8o8u8r8s.
+.behaviou4rs2
+.be8v8i8e8s.
+.be1vi
+.bev2ie4
+.bi8b9l8i9o8g9r8a9p8h8y9s8t8y8l8e.
+.bi2b
+.bi1b2l2
+.bib3li
+.bibli5og
+.bibl2io
+.biblio2gr
+.biblio4g3ra1phy
+.bibliography2s
+.bibliographys1t
+.bibliographys2ty
+.bibliographys2tyl
+.bi9d8i8f9f8e8r9e8n9t8i8a8l.
+.b2i4d
+.bi2di
+.bid1if
+.bidi4f1f
+.bidiffer1
+.bidiffer3en1t
+.bidifferent2i
+.bidifferen1t2i1a
+.bidifferenti2al
+.bi9d8i8ff8e8r9e8n9t8i8a8l.
+.bid1i4ff
+.bidiffer1
+.bidiffer3en1t
+.bidifferent2i
+.bidifferen1t2i1a
+.bidifferenti2al
+.bi8g9g8e8s8t.
+.b2ig
+.bi4g1g2
+.big2ge
+.bi8l8l9a8b8l8e.
+.1bil
+.bill5ab
+.bil1l
+.billab2l2
+.bi8o9m8a8t8h9e9m8a8t9i8c8s.
+.b2io
+.bio4m
+.bio1ma
+.biom4ath3
+.biomath5em
+.biomath2e
+.bio1mathe1ma
+.biomathemat1ic
+.biomathemati4c3s2
+.bi8o9m8e8d9i9c8a8l.
+.bio2me
+.bio2med
+.biom4edi
+.biomed3i1ca
+.bi8o9m8e8d9i9c8i8n8e.
+.biomed2i1ci
+.biomedi2cin
+.biomedic2ine
+.bi8o9r8h8y8t8h8m8s.
+.biorh4
+.biorhyt4h1m
+.biorhyth4m1s2
+.bi8t9m8a8p.
+.bi2t
+.bi4t1m
+.bit1ma
+.bit4map
+.bi8t9m8a8p8s.
+.bitma2p1s2
+.bl8a8n8d9e8r.
+.b2l2
+.b3l4and
+.bla2n
+.blan1de
+.bl8a8n8d9e8s8t.
+.blande4s2
+.bl8i8n8d9e8r.
+.bl4ind
+.blin1de
+.bl8o8n8d8e8s.
+.b4lo
+.blo2n
+.bl2ond
+.blon1de
+.blondes2
+.bl8u8e9p8r8i8n8t.
+.bluepr2
+.blueprin4t3
+.bl8u8e9p8r8i8n8t8s.
+.blueprin4t4s2
+.bo9l8o8m9e9t8e8r.
+.bolo2me
+.bolo4met
+.bolome1te
+.bo8o8k9s8e8l8l9e8r.
+.3boo2
+.bo2o4k
+.boo4k1s2
+.booksel1l
+.booksel2le
+.bo8o8k9s8e8l8l9e8r8s.
+.bookselle4r1s2
+.bo8o8l9e8a8n.
+.boole2a
+.boolea2n
+.bo8o8l9e8a8n8s.
+.boolea2n1s2
+.bo8r9n8o9l8o8g9i9c8a8l.
+.borno4
+.borno3log1ic
+.bornologi1ca
+.bo8t9u9l8i8s8m.
+.bo1tu
+.botul2i
+.botuli2s1m
+.br8u8s8q8u8e8r.
+.br2us
+.brusqu2
+.brus3quer
+.bu8f9f8e8r.
+.buf4fer1
+.bu4f1f
+.bu8ff8e8r.
+.buffer1
+.bu4ff
+.bu8f9f8e8r8s.
+.buffe4r1s2
+.bu8ff8e8r8s.
+.buffe4r1s2
+.bu8s8i8e8r.
+.bus5ie4
+.b2us
+.bu8s8i8e8s8t.
+.busi1est
+.bu8s8s8i8n8g.
+.bu2ss
+.bus1si
+.bus2s1in
+.buss3ing
+.bu8t8t8e8d.
+.but2t1ed
+.bu8z8z9w8o8r8d.
+.bu4z1z2
+.buzz1wo2
+.bu8z8z9w8o8r8d8s.
+.buzzwor2d1s2
+.ca9c8o8p8h9o9n8y.
+.ca1co
+.cac2oph
+.cacopho5ny
+.cacopho2n
+.ca9c8o8p8h9o9n8i8e8s.
+.caco5phoni
+.cacophon2ie4
+.ca8l8l9e8r.
+.cal1l
+.cal2le
+.ca8l8l9e8r8s.
+.calle4r1s2
+.ca8m9e8r8a9m8e8n.
+.cam5er1a
+.camera1men
+.ca8r8t9w8h8e8e8l.
+.cartw4
+.ca8r8t9w8h8e8e8l8s.
+.cartwhee2l1s2
+.ca9t8a8r8r8h8s.
+.ca2ta
+.cat2a2r
+.catar1r4
+.catarrh4
+.catarr4h1s2
+.ca8t9a9s8t8r8o8p8h9i8c.
+.catas1t4r
+.catastr2oph
+.catastroph1ic
+.ca8t9a9s8t8r8o8p8h9i9c8a8l8l8y.
+.1catastrophi1ca
+.catastrophical1l
+.catastrophical1ly
+.ca8t9e9n8o8i8d.
+.cat4eno
+.catenoi2
+.cateno2id
+.ca8t9e9n8o8i8d8s.
+.catenoi2d1s2
+.ca8u9l8i9f8l8o8w9e8r.
+.cau4l2
+.caul2i
+.cauli4f4l2
+.cauliflow1er
+.ca8u9l8i9fl8o8w9e8r.
+.cauli4fl2
+.cauliflow1er
+.ch8a8p9a8r9r8a8l.
+.chap2a2r4
+.cha1pa
+.chapar1r4
+.ch8a8r9t8r8e8u8s8e.
+.ch2a2r
+.chartr4eu2
+.chartre2us4
+.ch8e8m8o9t8h8e8r9a8p8y.
+.che2
+.che1mo
+.chem4oth3
+.chemoth2e
+.chemoth4er1a
+.chemothera3p
+.ch8e8m8o9t8h8e8r9a9p8i8e8s.
+.chemotherap2ie4
+.ch8l8o8r8o9m8e8t8h9a8n8e.
+.c4h1l4
+.ch2lo
+.chloro2me
+.chloro4met
+.chlorometha2n4
+.ch8l8o8r8o9m8e8t8h9a8n8e8s.
+.chlorometha1nes
+.ch8o9l8e8s9t8e8r8i8c.
+.3cho2
+.c3hol4e
+.choles2
+.choles1ter1i
+.ci8g9a9r8e8t8t8e.
+.c2ig
+.ci1ga
+.cig2a2r
+.cigare4t3t2
+.ci8g9a9r8e8t8t8e8s.
+.cigaret4tes
+.ci8n8q8u8e9f8o8i8l.
+.2cin
+.cin1q
+.cinqu2
+.cinque1f
+.cinque1fo
+.cinquefoi2
+.co9a8s8s8o9c8i8a9t8i8v8e.
+.c4oa
+.coa2ss
+.coas1so
+.coasso1ci
+.coasso3c2i1a
+.coassoci4a1t2iv
+.co9g8n8a8c.
+.2cog
+.cog1n4a
+.co9g8n8a8c8s.
+.cogna4c3s2
+.co9k8e8r9n8e8l.
+.c2ok
+.cok1er
+.coker3nel
+.co9k8e8r9n8e8l8s.
+.cokerne2l1s2
+.co8l9l8i8n9e8a9t8i8o8n.
+.col1l
+.coll2i
+.col2lin4
+.col1l4ine
+.collin3ea
+.collinea2t
+.collinea1t2io
+.collineatio2n
+.co8l9u8m8n8s.
+.colu4m1n
+.colum2n1s2
+.co8m9p8a8r9a8n8d.
+.co4m1p
+.compara5
+.com1pa
+.comp2a2r
+.compara2n
+.compar4and
+.co8m9p8a8r9a8n8d8s.
+.comparan2d1s2
+.co8m9p8e8n9d8i8u8m.
+.compendi1u
+.co8m9p8o9n8e8n8t9w8i8s8e.
+.compo2n
+.compo3nen
+.componen1t
+.componentw4
+.componentwis4
+.componentwi2
+.component3w4ise
+.co8m8p9t8r8o8l9l8e8r.
+.comp4tr
+.com2p1t
+.comptrol1l
+.comptrol2le
+.co8m8p9t8r8o8l9l8e8r8s.
+.comptrolle4r1s2
+.co8n9f8o8r8m9a8b8l8e.
+.co2n
+.con3f
+.con1fo
+.confo2r
+.confor1m
+.confor1ma
+.confor2mab
+.conformab2l2
+.co8n9f8o8r8m9i8s8t.
+.confor2mi
+.conform2is
+.co8n9f8o8r8m9i8s8t8s.
+.conformis4t1s2
+.co8n9f8o8r8m9i8t8y.
+.confor3mit
+.conformi1ty
+.co8n9g8r8e8s8s.
+.con3g
+.con1gr
+.congr2e2ss
+.co8n9g8r8e8s8s8e8s.
+.congress1e4s
+.co8n9t8r8i8b9u8t8e.
+.con5t
+.contr4ib
+.co8n9t8r8i8b9u8t8e8s.
+.co8n9t8r8i8b9u8t8e8d.
+.contribu2t1ed
+.co9r8e9l8a9t8i8o8n.
+.core1la
+.corela1t2io
+.corelatio2n
+.co9r8e9l8a9t8i8o8n8s.
+.corelatio2n3s2
+.co9r8e9l8i9g8i8o8n9i8s8t.
+.core1l2i
+.corel2ig
+.corel4igi
+.coreli5g2io
+.coreligion3i
+.coreligio2n
+.coreligion1is
+.co9r8e9l8i9g8i8o8n9i8s8t8s.
+.coreligionis4t1s2
+.co9r8e9o8p9s8i8s.
+.core1o
+.coreo2p1s2
+.coreop1sis
+.co9r8e9s8p8o8n9d8e8n8t.
+.core1sp
+.cores4po2n
+.coresp2ond
+.corespon1de
+.corespon1den
+.coresponden1t
+.co9r8e9s8p8o8n9d8e8n8t8s.
+.coresponden4t4s2
+.co9s8e9c8a8n8t.
+.cos4e
+.cose1ca
+.coseca2n
+.cosecan1t
+.co9t8a8n9g8e8n8t.
+.co4ta2n
+.co1ta
+.cot2ang
+.cotan1gen
+.cotangen1t
+.co8u8r9s8e8s.
+.cou2
+.cou4rs2
+.cour2se
+.cours3e4s
+.co9w8o8r8k9e8r.
+.co4wo2
+.cowork1er
+.co9w8o8r8k9e8r8s.
+.coworke4r1s2
+.cr8a8n8k9c8a8s8e.
+.cra2n
+.cra4nk2
+.crank1ca
+.cr8a8n8k9s8h8a8f8t.
+.cran4k1s2
+.cranks2h
+.cranksha2f
+.cranksha2ft
+.cr8o8c9o9d8i8l8e.
+.cr2oc
+.cro4cod
+.cro1co
+.cr8o8c9o9d8i8l8e8s.
+.crocodiles2
+.cr8o8s8s9h8a8t8c8h.
+.cro2s4s
+.cross2h
+.crossha4tc
+.crosshat4ch
+.cr8o8s8s9h8a8t8c8h8e8d.
+.crosshatche2
+.crosshat4ch4ed
+.cr8o8s8s9o8v8e8r.
+.cros1so
+.cros4sov
+.cr8y8p9t8o9g8r8a8m.
+.cry2p1t
+.cryp1to
+.crypto2gr
+.cr8y8p9t8o9g8r8a8m8s.
+.cryptogra4m1s2
+.cu8f8f9l8i8n8k.
+.c4uf
+.cu4f1f
+.cuff4l2
+.cufflin4
+.cuffl4i4nk2
+.cu8ffl8i8n8k.
+.cuffl4i4nk2
+.cu8f8f9l8i8n8k8s.
+.cufflin4k1s2
+.cu8ffl8i8n8k8s.
+.cufflin4k1s2
+.cu9n8e8i9f8o8r8m.
+.3cun
+.cu2ne
+.cunei2
+.cunei1fo
+.cuneifo2r
+.cuneifor1m
+.cu8s9t8o8m9i8z9a9b8l8e.
+.1c2us
+.cus1to
+.custom2iz
+.customiza1
+.customiz5a2b
+.customizab2l2
+.cu8s9t8o8m9i8z8e.
+.customi2ze
+.cu8s9t8o8m9i8z8e8s.
+.cu8s9t8o8m9i8z8e8d.
+.da8c8h8s9h8u8n8d.
+.1d2a
+.da2ch4
+.dac4h1s2
+.dach4s2h
+.da8m9s8e8l9f8l8y.
+.da2m2
+.da4m1s2
+.dam5se2l2f
+.damself4l2
+.damself2ly5
+.da8m9s8e8l9fl8y.
+.dam5se2l2fl2
+.damselfly
+.da8m9s8e8l9f8l8i8e8s.
+.damselfl2ie4
+.da8m9s8e8l9fl8i8e8s.
+.damselfl2ie4
+.da8c8t8y8l9o9g8r8a8m.
+.da2c1t
+.dac1ty
+.dac2tyl
+.dacty3lo
+.dactylo1gr
+.da8c8t8y8l9o9g8r8a8p8h.
+.da8t8a9b8a8s8e.
+.3dat
+.da2ta
+.da2tab
+.da8t8a9b8a8s8e8s.
+.databas1e4s
+.da8t8a9p8a8t8h.
+.dat5ap
+.datap5at
+.data1pa
+.datap4ath
+.da8t8a9p8a8t8h8s.
+.datapa2t4h1s2
+.da8t8e9s8t8a8m8p.
+.dat3est
+.dates1ta
+.datesta4m1p
+.da8t8e9s8t8a8m8p8s.
+.datestam2p1s2
+.de9c8l8a8r9a8b8l8e.
+.de4cl2a2r
+.decla2rab
+.declarab2l2
+.de9f8i8n9i9t8i8v8e.
+.de1f
+.de1fi
+.de2fin
+.def2ini
+.defin2it
+.defini1ti
+.defini1t2iv
+.de9fi8n9i9t8i8v8e.
+.de1fi
+.de2fin
+.defini
+.defin2it
+.defini1ti
+.defini1t2iv
+.de9l8e8c9t8a9b8l8e.
+.d5elec
+.dele2c1t
+.delec2ta4b
+.delec1ta
+.delectab2l2
+.de8m8i9s8e8m8i9q8u8a9v8e8r.
+.de4m2is
+.dem4ise
+.demisemi3qua
+.demisemiqu2
+.demisemiqua5v4
+.de8m8i9s8e8m8i9q8u8a9v8e8r8s.
+.demisemiquave4r1s2
+.de9m8o8c9r8a9t8i8s8m.
+.de4mocr
+.democrati2s4m
+.de8m8o8s.
+.demos2
+.de9r8i8v9a9t8i8v8e.
+.der2i4v
+.de4ri1va
+.deri3vat
+.der2iva1t2iv
+.de9r8i8v9a9t8i8v8e8s.
+.derivativ4e2s
+.di8a9l8e8c9t8i8c.
+.1d4i3a
+.di2al
+.di2ale
+.diale2c1t
+.di8a9l8e8c9t8i8c8s.
+.dialecti4c3s2
+.di8a9l8e8c9t8i9c8i8a8n.
+.dialect2i1ci
+.d2i1alecti3c2i1a
+.dialectici2a2n
+.di8a9l8e8c9t8i9c8i8a8n8s.
+.dialecticia2n1s2
+.di9c8h8l8o8r8o9m8e8t8h9a8n8e.
+.d4i2ch
+.dic4h1l4
+.dich2lo
+.dichloro2me
+.dichloro4met
+.dichlorometha2n4
+.di8f9f8r8a8c8t.
+.d1if
+.dif4fr
+.di4f1f
+.diffra2c1t
+.di8ff8r8a8c8t.
+.d1i4ff
+.diffr
+.diffra2c1t
+.di8f9f8r8a8c8t8s.
+.diffrac4t1s2
+.di8ff8r8a8c8t8s.
+.diffrac4t1s2
+.di8f9f8r8a8c9t8i8o8n.
+.diffrac1t2io
+.diffractio2n
+.di8ff8r8a8c9t8i8o8n.
+.diffrac1t2io
+.diffractio2n
+.di8f9f8r8a8c9t8i8o8n8s.
+.diffractio2n3s2
+.di8ff8r8a8c9t8i8o8n8s.
+.diffractio2n3s2
+.di8r8e8r.
+.d4ir2
+.di1re
+.dir1er4
+.di8r8e9n8e8s8s.
+.dire1nes
+.diren2e2ss
+.di8s9p8a8r9a8n8d.
+.dis1
+.dis1p
+.di2s1pa
+.disp2a2r
+.dispara2n
+.dispar4and
+.di8s9p8a8r9a8n8d8s.
+.disparan2d1s2
+.di8s9t8r8a8u8g8h8t9l8y.
+.d4is3t
+.dist4r
+.dis1tra
+.distraugh3
+.distraugh2tl
+.distraught1ly
+.di8s9t8r8i8b9u8t8e.
+.distr4ib
+.di8s9t8r8i8b9u8t8e8s.
+.di8s9t8r8i8b9u8t8e8d.
+.distribu2t1ed
+.do8u9b8l8e9s8p8a8c8e.
+.dou2
+.dou3b2l2
+.dou5ble1sp
+.doubles2
+.double2s1pa
+.doublespa4ce
+.do8u9b8l8e9s8p8a8c9i8n8g.
+.doublesp4a2ci
+.doublespa2c1in
+.doublespac1ing
+.do8l8l9i8s8h.
+.dol1l
+.doll2i
+.dollis2h
+.dr8i8f8t9a8g8e.
+.1dr
+.dr4i2ft
+.drif1ta
+.dr8i8v9e8r8s.
+.dr2iv
+.drive4r1s2
+.dr8o8m9e9d8a8r8y.
+.dro2me
+.dro2med
+.drom2e2d2a
+.drome4dary
+.dromed2a2r
+.dr8o8m9e9d8a8r8i8e8s.
+.dromedar1i
+.dromedar2ie4
+.du9o8p9o9l8i8s8t.
+.duopol2i
+.du9o8p9o9l8i8s8t8s.
+.duopolis4t1s2
+.du9o8p9o8l8y.
+.duopo2ly
+.dy8s9l8e8x8i8a.
+.d2y
+.dys1l2
+.dys2le
+.dyslex3i
+.dyslex2i5a
+.dy8s9l8e8c9t8i8c.
+.dysle2c1t
+.ea8s8t9e8n8d9e8r8s.
+.east3
+.eas3ten
+.eas3tend
+.easten1de
+.eastende4r5s2
+.ec8o9n8o8m9i8c8s.
+.e1co
+.eco2n
+.eco3nomic
+.economi4c3s2
+.ec8o8n9o9m8i8s8t.
+.econom2is
+.ec8o8n9o9m8i8s8t8s.
+.economis4t1s2
+.ei9g8e8n9c8l8a8s8s.
+.ei2
+.e2ig2
+.ei1gen
+.eigen1c4l4
+.eigencla2ss
+.ei9g8e8n9c8l8a8s8s8e8s.
+.eigenclass1e4s
+.ei9g8e8n9v8a8l9u8e.
+.eigen1v2
+.eigen1va
+.eigenval1u
+.ei9g8e8n9v8a8l9u8e8s.
+.el8e8c8t8r8o9m8e8c8h8a8n9i9c8a8l.
+.5elec
+.ele2c1t
+.electro2me
+.electrome2ch
+.electrome5cha4n1ic
+.electromecha2n
+.electromechani1ca
+.el8e8c8t8r8o9m8e8c8h8a8n8o9a8c8o8u8s8t8i8c.
+.electromechano4
+.electromechan4oa
+.electromechanoa1co
+.electromechanoacou2
+.electromechanoaco2us
+.electromechanoacoust2i
+.electromechanoacous1tic
+.el8i8t9i8s8t.
+.el2i
+.el1it
+.eli1ti
+.el4itis
+.el8i8t9i8s8t8s.
+.elitis4t1s2
+.en9t8r8e9p8r8e9n8e8u8r.
+.en1t
+.entrepr2
+.entrepren4eu
+.en9t8r8e9p8r8e9n8e8u8r9i8a8l.
+.entrepreneur2i3a
+.entrepreneuri2al
+.ep9i9n8e8p8h9r8i8n8e.
+.epi2n
+.ep2ine
+.epinep4hr4
+.ep2inephr2in4e
+.eq8u8i9v8a8r8i9a8n8t.
+.equ2iv3
+.equi1va
+.equiv2a2r
+.equivar1i
+.equivar3i2a2n
+.equivar2i3a
+.equivar4ian4t
+.eq8u8i9v8a8r8i9a8n8c8e.
+.equivar4ianc
+.et8h9a8n8e.
+.etha2n4
+.et8h9y8l9e8n8e.
+.ev8e8r9s8i9b8l8e.
+.ev1er
+.eve4r1s2
+.ever1si
+.ever4si4b
+.eversi1b2l2
+.ev8e8r8t.
+.ev8e8r8t8s.
+.ever4t1s2
+.ev8e8r8t9e8d.
+.ever2t1ed
+.ev8e8r8t9i8n8g.
+.ever1ti
+.ever2t1in
+.ex9q8u8i8s9i8t8e.
+.exqu2
+.exq2ui2
+.exquis2ite
+.ex9t8r8a9o8r9d8i9n8a8r8y.
+.ex1t2
+.ex1tra
+.extr4ao
+.extraord2i
+.extraord1in4
+.extraor1di1na
+.extraordin2a2r
+.fa8l8l9i8n8g.
+.1fa
+.fal1l
+.fall2i
+.fal2lin4
+.fe8r8m8i9o8n8s.
+.fer1
+.fer3m4
+.fer4m2io
+.fermio2n
+.fermio2n3s2
+.fi9n8i8t8e9l8y.
+.1fi
+.2fin
+.f2ini
+.fin2it
+.fin2ite
+.finite1ly
+.fi9n8i8t8e9l8y.
+.1fi
+.2fin
+.fini
+.fin2it
+.fin2ite
+.finite1ly
+.fl8a9g8e8l9l8u8m.
+.f4l2
+.flag5el1l
+.fl8a9g8e8l9l8u8m.
+.fl2
+.flag5el1l
+.fl8a9g8e8l9l8a.
+.flag4ella
+.fl8a9g8e8l9l8a.
+.flag4ella
+.fl8a8m9m8a9b8l8e8s.
+.flam1m
+.flam1ma
+.flam2mab
+.flammab2l2
+.flammables2
+.fl8a8m9m8a9b8l8e8s.
+.flam1m
+.flam1ma
+.flam2mab
+.flammab2l2
+.flammables2
+.fl8e8d8g9l8i8n8g.
+.fledgl2
+.fl8e8d8g9l8i8n8g.
+.fledgl2
+.fl8o8w9c8h8a8r8t.
+.flow2ch
+.flowch2a2r
+.fl8o8w9c8h8a8r8t.
+.flow2ch
+.flowch2a2r
+.fl8o8w9c8h8a8r8t8s.
+.flowchar4t1s2
+.fl8o8w9c8h8a8r8t8s.
+.flowchar4t1s2
+.fl8u8o8r8o9c8a8r9b8o8n.
+.flu3o
+.fluo3r
+.fluor2oc
+.fluoro1ca
+.fluoroc2a2r
+.fluorocar1b
+.fluorocarb4o
+.fluorocarbo2n
+.fl8u8o8r8o9c8a8r9b8o8n.
+.flu3o
+.fluo3r
+.fluor2oc
+.fluoro1ca
+.fluoroc2a2r
+.fluorocar1b
+.fluorocarb4o
+.fluorocarbo2n
+.fo8r9m8i9d8a9b8l8e.
+.for2mi
+.formi1d4a
+.form2id
+.formi2d3a4b
+.formidab2l2
+.fo8r9m8i9d8a9b8l8y.
+.formidab1ly
+.fo8r9s8y8t8h9i8a.
+.fo4rs2
+.fors4y
+.forsyth2i1a
+.fo8r8t8h9r8i8g8h8t.
+.fort4hr4
+.forthr2ig
+.fr8e8e9l8o8a8d8e8r.
+.freel4oa
+.freeloa2d3
+.fr8e8e9l8o8a8d8e8r8s.
+.freeloade4r5s2
+.fr8i8e8n8d9l8i8e8r.
+.fri2
+.fr2ie4
+.fr2ie4ndl2ie4
+.fr8i9v8o8l9i8t8y.
+.fr2iv
+.frivol2i
+.frivol1it
+.frivoli1ty
+.fr8i9v8o8l9i9t8i8e8s.
+.frivoli1ti
+.frivolit2ie4
+.fr8i8v9o9l8o8u8s.
+.frivolou2
+.frivolo2us
+.ga9l8a8c9t8i8c.
+.gala2c1t
+.ga8l9a8x8y.
+.ga8l9a8x9i8e8s.
+.galax3i
+.galax2ie4
+.ga8s9o8m9e9t8e8r.
+.ga1so
+.ga3som
+.gaso2me
+.gaso4met
+.gasome1te
+.ge9o9d8e8s9i8c.
+.geodes2
+.geode1si
+.geode2sic
+.ge9o9d8e8t9i8c.
+.geode1t
+.geodet1ic
+.ge8o9m8e8t9r8i8c.
+.ge3om
+.geo2me
+.geo4met
+.geom4etr
+.geo5met3ric
+.ge8o9m8e8t9r8i8c8s.
+.geome4tri4c3s2
+.ge9o9s8t8r8o8p8h8i8c.
+.geos4
+.geost4r
+.geostr2oph
+.geostroph1ic
+.ge8o9t8h8e8r9m8a8l.
+.ge4ot
+.ge4oth
+.geoth2e
+.geother3m4
+.geother1ma
+.ge9o8t9r8o9p8i8s8m.
+.geotropi2s1m
+.gn8o9m8o8n.
+.g1no
+.gno4mo
+.gno4mo2n
+.gn8o9m8o8n8s.
+.gnomo2n3s2
+.gr8a8n8d9u8n8c8l8e.
+.1gr
+.gra2n2
+.gr4and
+.gran1du
+.grandu4n
+.grandun1c4l4
+.gr8a8n8d9u8n8c8l8e8s.
+.granduncles2
+.gr8i8e8v9a8n8c8e.
+.gr2ie4
+.grie1va
+.grieva2n
+.gr8i8e8v9a8n8c8e8s.
+.gr8i8e8v9o8u8s.
+.grievou2
+.grievo2us
+.gr8i8e8v9o8u8s9l8y.
+.grievous1l2
+.grievous1ly
+.ha8i8r9s8t8y8l8e.
+.hai2
+.ha4ir
+.hai4rs2
+.hairs2ty
+.hairs2tyl
+.ha8i8r9s8t8y8l8e8s.
+.hairstyles2
+.ha8i8r9s8t8y8l9i8s8t.
+.ha8i8r9s8t8y8l9i8s8t8s.
+.hairstylis4t1s2
+.ha8l8f9s8p8a8c8e.
+.ha2lf
+.hal2f3s
+.half2s1pa
+.halfspa4ce
+.ha8l8f9s8p8a8c8e8s.
+.ha8l8f9w8a8y.
+.ha8r9b8i8n9g8e8r.
+.h2a2r
+.har1b
+.harbi2
+.har2bin
+.harb4inge
+.ha8r9b8i8n9g8e8r8s.
+.harbinge4r1s2
+.ha8r9l8e9q8u8i8n.
+.har4le4
+.har1l
+.harle1q
+.harlequ2
+.harleq2ui2
+.harlequi4n
+.ha8r9l8e9q8u8i8n8s.
+.harlequ2i2n1s2
+.ha8t8c8h9e8r8i8e8s.
+.ha4tc
+.hat4ch
+.hatche2
+.hatcher1i
+.hatcher2ie4
+.he8m8i9d8e8m8i9s8e8m8i9q8u8a9v8e8r.
+.hem2id
+.hemid4em
+.hemide4m2is
+.hemidem4ise
+.hemidemisemi3qua
+.hemidemisemiqu2
+.hemidemisemiqua5v4
+.he8m8i9d8e8m8i9s8e8m8i9q8u8a9v8e8r8s.
+.hemidemisemiquave4r1s2
+.he9m8o9g8l8o9b8i8n.
+.hemo4g
+.he1mo
+.hemo4gl2
+.hemo3glo
+.hemoglo1bi
+.hemoglo2bin
+.he9m8o9p8h8i8l9i8a.
+.hem2oph
+.hemoph4il2
+.hemophil1i
+.hemophil3i1a
+.he9m8o9p8h8i8l9i8a8c.
+.he9m8o9p8h8i8l9i8a8c8s.
+.hemophilia4c3s2
+.he8m8o9r8h8e9o8l9o8g8y.
+.hemo2r
+.hemorh4
+.hemorhe3ol
+.hemorheol1o1gy
+.he9p8a8t9i8c.
+.hep5
+.he2pa
+.hepat1ic
+.he8r9m8a8p8h9r8o9d8i8t8e.
+.her3m4
+.her1ma
+.her4map
+.hermap4hr4
+.hermaphrod2ite
+.he8r9m8a8p8h9r8o9d8i8t9i8c.
+.hermaphrod2i1ti
+.hermaphrod4i2tic
+.he9r8o8e8s.
+.hero4e
+.he8x8a9d8e8c9i9m8a8l.
+.hex1a
+.hexa2d
+.hexade1c2i
+.hexade2c3im
+.hexadeci1ma
+.ho9l8o9n8o9m8y.
+.holo2n
+.holon3o3my
+.ho9m8e8o9m8o8r9p8h8i8c.
+.ho2me3
+.homeo1mo
+.homeomo2r
+.homeomor1p
+.homeomorp4h4
+.homeomorph1ic
+.ho9m8e8o9m8o8r9p8h8i8s8m.
+.homeomorphi2s1m
+.ho9m8o9t8h8e8t8i8c.
+.ho1mo
+.hom4oth3
+.homoth2e
+.homo3the4t
+.homothet1ic
+.ho8r8s8e9r8a8d9i8s8h.
+.hor4se
+.ho4rs2
+.horser1a
+.horsera2d
+.horser2adi
+.horseradis1
+.horseradis2h
+.ho8t9b8e8d.
+.ho2t1b
+.hot4be2d
+.ho8t9b8e8d8s.
+.hotbe2d1s2
+.hy9d8r8o9t8h8e8r9m8a8l.
+.hy1d
+.hy1dr
+.hydro4th2e
+.hydr4oth
+.hydrother3m4
+.hydrother1ma
+.hy9p8o9t8h8a8l9a9m8u8s.
+.hy3po
+.hyp4ot
+.hyp4oth
+.hypotha3la
+.hypothala3m
+.hypothala1mu
+.hypothalam2us
+.id8e8a8l8s.
+.ide3a4l
+.idea2l1s2
+.id8e8o9g8r8a8p8h8s.
+.ideo2g
+.ideo1gr
+.ideogra4p4h1s2
+.id8i8o9s8y8n9c8r8a8s8y.
+.i2di
+.i1d3io
+.idi4os
+.idios4y
+.idiosyn1cr
+.idiosyncr2as
+.idios4yncras4y
+.id8i8o9s8y8n9c8r8a9s8i8e8s.
+.idiosyncras2ie4
+.id8i8o9s8y8n9c8r8a8t8i8c.
+.idiosyn5crat1ic
+.id8i8o9s8y8n9c8r8a8t9i9c8a8l9l8y.
+.idiosyncrati1ca
+.idiosyncratical1l
+.idiosyncratical1ly
+.ig9n8i8t9e8r.
+.2ig
+.ig1ni
+.ign2it
+.ign2ite
+.ig9n8i8t9e8r8s.
+.ignite4r1s2
+.ig9n8i9t8o8r.
+.ign3itor
+.igni1to
+.ig8n8o8r8e9s8p8a8c8e8s.
+.ig1no
+.ignore1sp
+.ignore2s1pa
+.ignorespa4ce
+.im9p8e8d9a8n8c8e.
+.im2p2ed
+.imp2e2d2a
+.impeda2n
+.im9p8e8d9a8n8c8e8s.
+.in9d8u9b8i9t8a9b8l8e.
+.4ind
+.in1du
+.indu1b4i
+.indubi2t
+.indubi1ta
+.indubi2tab
+.indubitab2l2
+.in9f8i8n9i8t8e9l8y.
+.in3f
+.in1fi
+.in2fin
+.inf2ini
+.infin2it
+.infin2ite
+.infinite1ly
+.in9fi8n9i8t8e9l8y.
+.in3fi
+.in2fin
+.infini
+.infin2it
+.infin2ite
+.infinite1ly
+.in9f8i8n9i9t8e8s9i9m8a8l.
+.infinit4es
+.infinite1si
+.infinite2s5im
+.infinitesi1ma
+.in9fi8n9i9t8e8s9i9m8a8l.
+.infinit4es
+.infinite1si
+.infinite2s5im
+.infinitesi1ma
+.in9f8r8a9s8t8r8u8c9t8u8r8e.
+.infr2as
+.infras1t4r
+.infrastru2c1t
+.infrastructu4r
+.infrastruc1tu
+.infrastruc3ture
+.in9f8r8a9s8t8r8u8c9t8u8r8e8s.
+.in9s8t8a8l8l9e8r.
+.ins2ta2l
+.ins1ta
+.instal1l
+.instal2le
+.in9s8t8a8l8l9e8r8s.
+.installe4r1s2
+.in9t8e8r9d8i8s9c8i9p8l8i9n8a8r8y.
+.in1t
+.in5ter3d
+.interd2i
+.interdis1
+.interd2is1c
+.interdis1ci
+.interdisc2ip
+.interdisci1p2l2
+.interdiscipli4n
+.interdiscipl4i1na
+.interdisciplin2a2r
+.in9t8e8r9g8a9l8a8c9t8i8c.
+.interg2
+.inter1ga
+.intergala2c1t
+.in9u8t8i8l8e.
+.in1u
+.in4u1t2i
+.in9u8t8i8l9i9t8y.
+.inutil1i
+.inut2il1it
+.inutili1ty
+.ir9r8e9d8u8c9i8b8l8e.
+.ir2r2ed
+.irre1du
+.irredu2c
+.irreduci4b
+.irredu1ci
+.irreduci1b2l2
+.ir9r8e9d8u8c9i8b8l8y.
+.irreducib1ly
+.ir9r8e8v9o9c8a9b8l8e.
+.irrev2
+.irre5voc
+.irrevo1ca
+.irrevoca1b2l2
+.is8o8t9r8o8p8y.
+.i2so
+.isotropy5
+.is8o9t8r8o8p9i8c.
+.isotrop3ic
+.it8i8n9e8r9a8r8y.
+.i1ti
+.i2t1in
+.it2ine
+.itin4er4a2r
+.itin1er
+.itiner1a
+.it8i8n9e8r9a8r9i8e8s.
+.itinerar1i
+.itinerar2ie4
+.je9r8e9m8i9a8d8s.
+.1je
+.jerem2i3a
+.jeremia2d
+.jeremia2d1s2
+.ke8y9n8o8t8e.
+.ke8y9n8o8t8e8s.
+.keyno4tes
+.ke8y9s8t8r8o8k8e.
+.keys4
+.keys1t
+.keyst4r
+.keystr2ok2
+.ke8y9s8t8r8o8k8e8s.
+.keystrokes4
+.ki8l8n9i8n8g.
+.k1i
+.k4i2l1n2
+.kiln1in
+.kilnin4g
+.la8c9i9e8s8t.
+.l4a2ci4
+.la3c2ie4
+.laci1est
+.la8m9e8n9t8a9b8l8e.
+.la1men
+.la3men1t
+.lamen2ta4b
+.lamen1ta
+.lamentab2l2
+.la8n8d9s8c8a8p9e8r.
+.3l4and
+.la2n
+.lan2d1s2
+.landsca4p
+.lands1ca
+.landsca5per
+.la8n8d9s8c8a8p9e8r8s.
+.landscape4r1s2
+.la8r9c8e9n8y.
+.l2a2r
+.lar1c
+.lar2ce
+.lar1cen4
+.la8r9c8e9n9i8s8t.
+.lar4ceni
+.le8a8f9h8o8p9p8e8r.
+.le2a
+.lea2f
+.lea4fh
+.leafho4p1p
+.leafhop2pe
+.leafhop3per
+.le8a8f9h8o8p9p8e8r8s.
+.leafhoppe4r1s2
+.le8t9t8e8r9s8p8a8c9i8n8g.
+.le4t3t2
+.lette4r1s2
+.letter1sp
+.letter2s1pa
+.lettersp4a2ci
+.letterspa2c1in
+.letterspac1ing
+.li8f8e9s8p8a8n.
+.life1sp
+.life2s1pa
+.lifespa4n
+.li8f8e9s8p8a8n8s.
+.lifespa2n1s2
+.li8f8e9s8t8y8l8e.
+.lifes2ty
+.lifes2tyl
+.li8f8e9s8t8y8l8e8s.
+.lifestyles2
+.li8g8h8t9w8e8i8g8h8t.
+.3ligh
+.lightw4
+.lightwei2
+.l2ightwe2ig2
+.li8m9o8u9s8i8n8e8s.
+.li4mo
+.li3mo2us
+.limou2
+.limou2s1in
+.limous2ine
+.limousi1nes
+.li8n8e9b8a8c8k8e8r.
+.1l4ine
+.lin2e2b
+.lineback1
+.lineback1er
+.li8n8e9s8p8a8c8i8n8g.
+.li1nes
+.li4ne1sp
+.line2s1pa
+.linesp4a2ci
+.linespa2c1in
+.linespac1ing
+.li9o8n9e8s8s.
+.lio2n
+.lio1nes
+.lion2e2ss
+.li8t8h9o9g8r8a8p8h8e8d.
+.l2ith
+.litho4g
+.litho1gr
+.lithograph4ed
+.li8t8h9o9g8r8a8p8h8s.
+.lithogra4p4h1s2
+.lo9b8o8t9o8m8y.
+.lobo4to
+.loboto3my
+.lo9b8o8t9o8m9i8z8e.
+.lobotom2iz
+.lobotomi2ze
+.lo8g8e8s.
+.lo1ge
+.lo8n8g9e8s8t.
+.5long
+.lo2n
+.lo9q8u8a8c9i8t8y.
+.lo1q
+.loqu2
+.loquac4
+.loqu4a2ci
+.loqua2c1it
+.loquaci1ty
+.lo8v8e9s8t8r8u8c8k.
+.4lov
+.lov4e2s
+.lov2est4r
+.lovestruc5
+.lovestruck1
+.ma8c8r8o9e8c8o9n8o8m8i8c8s.
+.macro4e
+.macroe1co
+.macroeco2n
+.macroeco3nomic
+.macroeconomi4c3s2
+.ma8l9a9p8r8o8p9i8s8m.
+.malapr2
+.malapropi2s1m
+.ma8l9a9p8r8o8p9i8s8m8s.
+.malaprop4is4m1s2
+.ma8n9s8l8a8u8g8h9t8e8r.
+.ma2n1s2
+.man2s1l2
+.manslaugh3
+.ma8n9u9s8c8r8i8p8t.
+.man2us
+.manusc2
+.manuscri2
+.manuscr2ip
+.manuscri2p1t
+.ma8r9g8i8n9a8l.
+.marg2
+.margi4n
+.margi1na
+.ma8t8h9e9m8a9t8i9c8i8a8n.
+.m4ath3
+.math5em
+.math2e
+.1mathe1ma
+.mathemat1ic
+.mathemat2i1ci
+.mathemati3c2i1a
+.mathematici2a2n
+.ma8t8h9e9m8a9t8i9c8i8a8n8s.
+.mathematicia2n1s2
+.ma8t8t8e8s.
+.mat5te
+.ma4t3t2
+.mat4tes
+.me8d9i8c9a8i8d.
+.2med
+.m4edi
+.med3i1ca
+.medicai2
+.medica2id
+.me8d8i9o8c8r8e.
+.me1d2io
+.mediocre3
+.me8d8i9o8c9r8i9t8i8e8s.
+.medi5ocrit
+.mediocri2
+.medio5cri1ti
+.mediocrit2ie4
+.me8g8a9l8i8t8h.
+.me2g
+.m4egal
+.me1ga
+.me3gal1i
+.megal1it
+.megal2ith
+.me8g8a9l8i8t8h8s.
+.megali2t4h1s2
+.me8t8a9b8o8l9i8c.
+.me4ta
+.me2ta4b
+.metabol3ic
+.metabol2i
+.me9t8a8b9o9l8i8s8m.
+.metaboli2s1m
+.me9t8a8b9o9l8i8s8m8s.
+.metabol4is4m1s2
+.me9t8a8b9o9l8i8t8e.
+.metabo5l2ite
+.metabol1it
+.me9t8a8b9o9l8i8t8e8s.
+.metabolit4es
+.me8t8a9l8a8n9g8u8a8g8e.
+.met3a2l
+.meta5la
+.metala2n
+.metal2ang
+.metalan1gu
+.metalangu4a
+.me8t8a9l8a8n9g8u8a8g8e8s.
+.me8t8a9p8h8o8r9i8c.
+.metapho4r
+.me8t8h9a8n8e.
+.metha2n4
+.me9t8r8o8p9o9l8i8s.
+.m4etr
+.metropol2i
+.me9t8r8o8p9o9l8i8s8e8s.
+.metropol4ise
+.metropolis1e4s
+.me8t9r8o9p8o8l9i9t8a8n.
+.metropol1it
+.metropoli3ta2n
+.metropoli1ta
+.me8t9r8o9p8o8l9i9t8a8n8s.
+.metropolita2n1s2
+.mi8c8r8o9e8c8o9n8o8m8i8c8s.
+.m4i1cr
+.micro4e
+.microe1co
+.microeco2n
+.microeco3nomic
+.microeconomi4c3s2
+.mi9c8r8o9f8i8c8h8e.
+.micro2fi
+.microf4i2ch
+.microfiche2
+.mi9c8r8o9fi8c8h8e.
+.micro2fi
+.microfi2ch
+.microfiche2
+.mi9c8r8o9f8i8c8h8e8s.
+.microfich1es
+.mi9c8r8o9fi8c8h8e8s.
+.microfich1es
+.mi8c8r8o9o8r8g8a8n9i8s8m.
+.microo2
+.microorg2
+.microor1ga
+.microorgan5is
+.microorga2n
+.microorgani2s1m
+.mi8c8r8o9o8r8g8a8n9i8s8m8s.
+.microorgan4is4m1s2
+.mi8l8l9a8g8e.
+.m4il1l
+.mi8l9l8i9l8i8t8e8r.
+.mill2i
+.mil4l4i4l
+.millil1i
+.mill2il1it
+.millil2ite
+.mi8m8e8o9g8r8a8p8h8e8d.
+.mimeo2g
+.mimeo1gr
+.mimeograph4ed
+.mi8m8e8o9g8r8a8p8h8s.
+.mimeogra4p4h1s2
+.mi8m9i8c9r8i8e8s.
+.mim1i
+.mim4i1cr
+.mimicri2
+.mimicr2ie4
+.mi8n9i8s.
+.m2ini
+.min1is
+.mi8n8i9s8y8m9p8o9s8i8u8m.
+.minis4y
+.minisy4m1p
+.minisym1pos
+.minisympo5si4u
+.mi8n8i9s8y8m9p8o9s8i8a.
+.minisympos2i1a
+.mi9n8u8t9e8r.
+.m4in1u
+.mi9n8u8t9e8s8t.
+.mi8s9c8h8i8e9v8o8u8s9l8y.
+.m2is1c
+.mis3ch2
+.misch2ie4
+.mischievou2
+.mischievo2us
+.mischievous1l2
+.mischievous1ly
+.mi9s8e8r8s.
+.m4ise
+.mis3er
+.mise4r1s2
+.mi9s8o8g9a9m8y.
+.mi2so
+.miso1ga
+.miso2gam
+.mo8d9e8l9l8i8n8g.
+.mo2d1
+.model1l
+.modell2i
+.model2lin4
+.mo8l9e9c8u8l8e.
+.mole1cu
+.mole4cul
+.molecul4e
+.mo8l9e9c8u8l8e8s.
+.molecules2
+.mo8n9a8r8c8h8s.
+.mo1n1a
+.monar3c
+.mon2a2r
+.monar2ch
+.monarc4h1s2
+.mo8n8e8y9l8e8n9d8e8r.
+.moneylen1de
+.mo8n8e8y9l8e8n9d8e8r8s.
+.moneylende4r5s2
+.mo8n8o9c8h8r8o8m8e.
+.mono2ch4
+.monoc4hr4
+.monochro2me
+.mo8n8o9e8n9e8r9g8e8t8i8c.
+.mo3noe
+.monoen1er
+.monoenerg2
+.monoener3get
+.monoenerget1ic
+.mo8n9o8i8d.
+.monoi2
+.mono2id
+.mo8n8o9p8o8l8e.
+.mo4nop
+.mo8n8o9p8o8l8e8s.
+.monopoles2
+.mo9n8o8p9o8l8y.
+.monopo2ly
+.mo8n8o9s8p8l8i8n8e.
+.monos1p2l2
+.monospli4n
+.monosp1l4ine
+.mo8n8o9s8p8l8i8n8e8s.
+.monospli1nes
+.mo8n8o9s8t8r8o8f8i8c.
+.monos5t
+.monost4r
+.monostro2fi
+.mo8n8o9s8t8r8o8fi8c.
+.monostro2fi
+.mo9n8o8t9o9n8i8e8s.
+.mono1to
+.mo2noto2n
+.monoton2ie4
+.mo9n8o8t9o9n8o8u8s.
+.mono4tono
+.monoto1nou2
+.monotono2us
+.mo9r8o8n9i8s8m.
+.moro5n4is
+.moro2n
+.moroni2s1m
+.mo8s9q8u8i9t8o.
+.mos2
+.mosqu2
+.mosq2ui2
+.mosqui1to
+.mo8s9q8u8i9t8o8s.
+.mosquitos2
+.mo8s9q8u8i9t8o8e8s.
+.mu8d9r8o8o8m.
+.mu1dr
+.mud1room
+.mudroo2
+.mu8d9r8o8o8m8s.
+.mudroo4m1s2
+.mu8l9t8i9f8a8c9e8t8e8d.
+.5mu4lt
+.mul1ti3
+.multif2
+.multi1fa
+.multifa4ce
+.multifacet4
+.multiface2t1ed
+.mu8l9t8i9p8l8i8c9a8b8l8e.
+.mult2ip
+.multi1p2l2
+.multipli1ca
+.multiplica1b2l2
+.mu8l8t8i9u8s8e8r.
+.multi4u
+.multi2us
+.ne8o9f8i8e8l8d8s.
+.3neo
+.ne5of
+.neo2fi
+.neof2ie4
+.neofie2ld3
+.neofiel2d1s2
+.ne8o9fi8e8l8d8s.
+.ne5o2fi
+.neofie4
+.neofie2ld3
+.neofiel2d1s2
+.ne8o9n8a8z8i.
+.neo2n
+.neo1n1a
+.neona2z1i
+.ne8o9n8a8z8i8s.
+.neonaz4is
+.ne8p8h9e8w8s.
+.nephe4
+.ne8p8h9r8i8t8e.
+.nep4hr4
+.nephr2ite
+.ne8p8h9r8i8t8i8c.
+.nephr4i2t3ic
+.nephri1ti
+.ne8w9e8s8t.
+.ne4w
+.newest3
+.ne8w8s9l8e8t9t8e8r.
+.news4l2
+.news2le
+.newsle4t3t2
+.ne8w8s9l8e8t9t8e8r8s.
+.newslette4r1s2
+.ni8t8r8o9m8e8t8h9a8n8e.
+.n2it
+.ni3tr
+.nitro2me
+.nitro4met
+.nitrometha2n4
+.no9n8a8m8e.
+.no4n
+.no1n1a
+.no8n9a8r9i8t8h9m8e8t9i8c.
+.nonar3i
+.non2a2r
+.nonar2ith
+.nonarit4h1m
+.nonarithmet4
+.nonarithmet1ic
+.no8n9e8m8e8r9g8e8n8c8y.
+.none1me
+.nonemerg2
+.nonemer1gen
+.nonemergen1cy
+.no8n9e8q8u8i9v8a8r8i9a8n8c8e.
+.none2q
+.nonequ2
+.noneq2ui2
+.nonequ2iv3
+.nonequi1va
+.nonequiv2a2r
+.nonequivar1i
+.nonequivar3i2a2n
+.nonequivar2i3a
+.nonequivar4ianc
+.no8n8e9t8h8e9l8e8s8s.
+.noneth2e
+.nonethe1les2
+.nonethe3l2e2ss
+.no8n9e8u8c8l8i8d9e8a8n.
+.non4eu
+.noneu1c4l4
+.noneucl2id
+.noneuclidea2n
+.no8n9i8s8o9m8o8r9p8h8i8c.
+.non5i
+.non1is
+.noni2so
+.noni3som
+.noniso1mo
+.nonisomo2r
+.nonisomor1p
+.nonisomorp4h4
+.nonisomorph1ic
+.no8n9p8s8e8u8d8o9c8o8m9p8a8c8t.
+.non1p4
+.non2p1s2
+.nonp2se
+.nonps4eu
+.nonpseu1do
+.nonpseudo1co
+.nonpseudoco4m1p
+.nonpseudocom1pa
+.nonpseudocompa2c4t
+.no8n9s8m8o8o8t8h.
+.no2n3s2
+.non2s3m
+.nons1mo
+.nonsmoo2
+.nonsmo4oth
+.no8n9u8n8i9f8o8r8m.
+.no3nu4n
+.nonu1ni
+.nonuni1fo
+.nonunifo2r
+.nonunifor1m
+.no8n9u8n8i9f8o8r8m9l8y.
+.nonunifor4m1l
+.nonuniform1ly
+.no8r9e8p9i9n8e8p8h9r8i8n8e.
+.nore5pi2n
+.norep2ine
+.norepinep4hr4
+.norep2inephr2in4e
+.no8t9w8i8t8h9s8t8a8n8d9i8n8g.
+.notw4
+.notwi2
+.notw2ith3
+.notwi2t4h1s2
+.notwith5st4and
+.notwiths1ta
+.notwithsta2n
+.notwithstand1in
+.nu9c8l8e8o9t8i8d8e.
+.nucle3
+.nu1c4l4
+.nucle4ot
+.nucleot2id
+.nu9c8l8e8o9t8i8d8e8s.
+.nucleotide4s2
+.nu8t9c8r8a8c8k9e8r.
+.nu4tc
+.nutcrack1
+.nutcrack1er
+.nu8t9c8r8a8c8k9e8r8s.
+.nutcracke4r1s2
+.oe8r9s8t8e8d8s.
+.o3er
+.oe4r1s2
+.oers4t1ed
+.oerste2d1s2
+.of8f9l8i8n8e.
+.o4f1f
+.off4l2
+.offlin4
+.off1l4ine
+.offl8i8n8e.
+.offl2ine
+.of8f9l8o8a8d.
+.offl4oa
+.offloa2d3
+.offl8o8a8d.
+.offl4oa
+.offloa2d3
+.of8f9l8o8a8d8s.
+.offloa2d1s2
+.offl8o8a8d8s.
+.offloa2d1s2
+.of8f9l8o8a8d8e8d.
+.offloa2d1ed
+.offl8o8a8d8e8d.
+.offloa2d1ed
+.ol8i9g8o8p9o9l8i8s8t.
+.ol2i
+.ol2ig
+.oli2go
+.ol2igopol2i
+.ol8i9g8o8p9o9l8i8s8t8s.
+.oligopolis4t1s2
+.ol8i9g8o8p9o8l8y.
+.oligopo2ly
+.ol8i9g8o8p9o8l9i8e8s.
+.oligopol2ie4
+.op9e8r9a8n8d.
+.op1er
+.3oper1a
+.op4er4and
+.opera2n
+.op9e8r9a8n8d8s.
+.operan2d1s2
+.or8a8n8g9u8t8a8n.
+.ora2n
+.or2ang
+.oran1gu
+.oran4gu4t
+.orangu1ta
+.ora2nguta2n
+.or8a8n8g9u8t8a8n8s.
+.oranguta2n1s2
+.or9t8h8o9d8o8n9t8i8s8t.
+.ortho2do4
+.orthodo2n
+.orthodon3t4i
+.orthodon1t
+.or9t8h8o9d8o8n9t8i8s8t8s.
+.orthodontis4t1s2
+.or9t8h8o9k8e8r9a9t8o8l9o8g8y.
+.orth2ok
+.orthok1er
+.orthoker1a
+.orthokera1to
+.orthokeratol1o1gy
+.or8t8h8o9n8i8t8r8o9t8o8l8u8e8n8e.
+.ortho2n
+.orthon2it
+.orthoni3tr
+.orthonitro1to
+.orthonitrotolu3en
+.orthonitrotolu4ene
+.ov8e8r9v8i8e8w.
+.overv2ie4
+.ov8e8r9v8i8e8w8s.
+.ox9i8d9i8c.
+.ox3i
+.oxi5di
+.ox2id
+.pa8d9d8i8n8g.
+.1pa
+.p4a2d
+.pad4d1in
+.pad1d4
+.pa8i8n9l8e8s8s9l8y.
+.p4ai2
+.pa4i4n4
+.pa4i4n1l
+.painles2
+.pain3l2e2ss
+.painles4s1l2
+.painless1ly
+.pa8l9e8t8t8e.
+.p4al
+.p2ale
+.pale4t3t2
+.pa8l9e8t8t8e8s.
+.palet4tes
+.pa8r9a9b8o8l8a.
+.p2a2r
+.pa2rab
+.parabo1la
+.pa8r9a9b8o8l9i8c.
+.parabol3ic
+.parabol2i
+.pa9r8a8b9o9l8o8i8d.
+.paraboloi2
+.parabolo2id
+.pa8r9a9d8i8g8m.
+.para2d
+.par2adi
+.parad2ig
+.paradig1m
+.pa8r9a9d8i8g8m8s.
+.paradig4m1s2
+.pa8r8a9c8h8u8t8e.
+.para2ch
+.parachu4t
+.pa8r8a9c8h8u8t8e8s.
+.pa8r8a9d8i9m8e8t8h8y8l9b8e8n8z8e8n8e.
+.parad4imet
+.paradimethy2l1b
+.paradimethylb4e4n3z
+.paradimethylben2ze
+.paradimethylbenze4n
+.pa8r8a9f8l8u8o8r8o9t8o8l8u8e8n8e.
+.para2f
+.paraf4l2
+.paraflu3o
+.parafluo3r
+.parafluoro1to
+.parafluorotolu3en
+.parafluorotolu4ene
+.pa8r8a9fl8u8o8r8o9t8o8l8u8e8n8e.
+.para2fl2
+.paraflu3o
+.parafluo3r
+.parafluoro1to
+.parafluorotolu3en
+.parafluorotolu4ene
+.pa8r8a9g8r8a8p8h9e8r.
+.para1gr
+.parag5ra3ph4er
+.pa8r8a9l8e9g8a8l.
+.par3al
+.par2ale
+.paral4egal
+.parale1ga
+.pa8r9a8l9l8e8l9i8s8m.
+.paral1l
+.paral2le
+.paral3lel
+.parallel2i
+.paralle2lis
+.paralleli2s1m
+.pa8r8a9m8a8g9n8e8t9i8s8m.
+.par4a1ma
+.param3ag
+.para5mag1n
+.paramagneti2s4m
+.pa8r8a9m8e8d8i8c.
+.para2med
+.param4edi
+.pa8r8a9m8e8t8h8y8l9a8n8i8s8o8l8e.
+.param3et
+.paramethy3la
+.paramethyla2n
+.paramethylani2so
+.pa9r8a8m9e9t8r8i8z8e.
+.param4etr
+.parametri2ze
+.pa8r8a9m8i8l9i9t8a8r8y.
+.par2ami
+.paramil1i
+.param2il1it
+.paramili1ta
+.p2a2ramilit2a2r
+.pa8r8a9m8o8u8n8t.
+.para2mo
+.paramou2
+.paramoun1t
+.pa8t8h9o9g8e8n9i8c.
+.p4ath
+.pat4ho
+.patho4g
+.patho1ge4
+.patho1gen
+.pe8e8v9i8s8h.
+.p4ee
+.pee1vi
+.peevis2h
+.pe8e8v9i8s8h9n8e8s8s.
+.peevis2h1n
+.peevish1nes
+.peevishn2e2ss
+.pe8n9t8a9g8o8n.
+.pen1t
+.pen1ta
+.penta2go
+.pentago2n2
+.pe8n9t8a9g8o8n8s.
+.pentago2n3s2
+.pe9t8r8o9l8e9u8m.
+.petrol4eu
+.ph8e9n8o8m9e9n8o8n.
+.ph4e3no
+.phe2n
+.pheno2me
+.pheno1men
+.ph4enom4eno
+.phenomeno4n
+.ph8e8n8y8l9a8l8a9n8i8n8e.
+.pheny3la
+.phenylala2n
+.phenylala5n2ine
+.phenylalan1in
+.ph8i9l8a8t9e9l8i8s8t.
+.phi4latel2i4
+.philate2lis
+.ph8i9l8a8t9e9l8i8s8t8s.
+.philatelis4t1s2
+.ph8o9n8e8m8e.
+.3phone
+.pho2n
+.phone1me
+.ph8o9n8e8m8e8s.
+.phone2mes
+.ph8o9n8e9m8i8c.
+.phone5mi
+.ph8o8s9p8h8o8r9i8c.
+.phos1p
+.phospho5
+.phospho4r
+.ph8o9t8o9g8r8a8p8h8s.
+.pho1to
+.photo2gr
+.photogra4p4h1s2
+.ph8o9t8o9o8f8f9s8e8t.
+.photoo2
+.photoo4f1f
+.photoof2f3s
+.ph8o9t8o9o8ff9s8e8t.
+.photoo4ff
+.photooff3s
+.pi8c9a9d8o8r.
+.pi1ca
+.pica2d
+.pica1do
+.picad4or
+.pi8c9a9d8o8r8s.
+.picado4rs2
+.pi8p8e9l8i8n8e.
+.p2ip
+.pipe4
+.pipel2i
+.pipe1l4ine
+.pi8p8e9l8i8n8e8s.
+.pipeli1nes
+.pi8p8e9l8i8n9i8n8g.
+.pipel2in3i
+.pipelin1in
+.pipelinin4g
+.pi9r8a9n8h8a8s.
+.p4ir
+.pi1ra
+.pira2n
+.pira4n1h4
+.piranha4
+.pl8a8c8a9b8l8e.
+.1p2l2
+.pla1ca
+.placa1b2l2
+.pl8a8n8t9h8o8p9p8e8r.
+.3pla2n
+.plan1t
+.plantho4p1p
+.planthop2pe
+.planthop3per
+.pl8a8n8t9h8o8p9p8e8r8s.
+.planthoppe4r1s2
+.pl8e8a8s9a8n8c8e.
+.ple2a
+.pleasa2
+.plea3sanc
+.pleasa2n
+.pl8u8g9i8n.
+.plug5in
+.pl8u8g9i8n8s.
+.plu5g4i2n1s2
+.po8l9t8e8r9g8e8i8s8t.
+.po4l2t
+.pol1te
+.polterg2
+.poltergei2
+.po8l8y9e8n8e.
+.po2ly
+.po8l8y9e8t8h9y8l9e8n8e.
+.polye4t
+.po9l8y8g9a9m8i8s8t.
+.poly1ga
+.poly2gam
+.polygam2is
+.po9l8y8g9a9m8i8s8t8s.
+.polygamis4t1s2
+.po8l8y8g9o8n9i9z8a9t8i8o8n.
+.poly1go
+.polygo2n2
+.polygo3ni
+.polygoniza1
+.polygoniza1t2io
+.polygo2nizatio2n
+.po9l8y8p8h9o9n8o8u8s.
+.polypho2n
+.polypho1nou2
+.polyphono2us
+.po8l8y9s8t8y8r8e8n8e.
+.po2lys4
+.polys1t
+.polys2ty
+.po8m8e9g8r8a8n9a8t8e.
+.po2me
+.pome2g
+.pome1gr
+.pomegra2n2
+.pomegra1na
+.pomegran2at
+.po8r8o9e8l8a8s9t8i8c.
+.1p4or
+.poro4e
+.poro4el
+.poroe1la
+.poroelast2i
+.poroelas1tic
+.po8r9o8u8s.
+.porou2
+.poro2us
+.po8r9t8a9b8l8e.
+.por1ta
+.por2tab
+.portab2l2
+.po8s8t9a8m9b8l8e.
+.1pos
+.pos2ta
+.posta4m1b
+.postamb2l2
+.po8s8t9a8m9b8l8e8s.
+.postambles2
+.po8s8t9h8u9m8o8u8s.
+.posthu1mo
+.posthu3mo2us
+.posthumou2
+.po8s8t9s8c8r8i8p8t.
+.pos4t1s2
+.post4sc
+.postscri2
+.postscr2ip
+.postscri2p1t
+.po8s8t9s8c8r8i8p8t8s.
+.pos4t1s2crip4t1s2
+.po8s9t8u8r9a8l.
+.pos1tu
+.postu1ra
+.pr8e9a8m9b8l8e.
+.prea4m1b
+.preamb2l2
+.pr8e9a8m9b8l8e8s.
+.preambles2
+.pr8e9l8o8a8d8e8d.
+.prel4oa
+.preloa2d3
+.preloa2d1ed
+.pr8e9p8a8r9i8n8g.
+.pre2pa
+.prep4a4r1i
+.prep2a2r
+.preparin4g
+.pr8e9p8r8i8n8t.
+.pr2epr2
+.preprin4t3
+.pr8e9p8r8i8n8t8s.
+.preprin4t4s2
+.pr8e9p8r8o8c8e8s9s8o8r.
+.pre3pro
+.prepr2oc
+.prepro1ce
+.preproc2e2ss
+.preproces1so
+.pr8e9p8r8o8c8e8s9s8o8r8s.
+.preprocesso4rs2
+.pr8e9s8p8l8i8t9t8i8n8g.
+.pre1sp
+.pres1p2l2
+.prespl1it
+.prespl4i4t3t2
+.presplit2t1in
+.pr8e9w8r8a8p.
+.prewra4
+.pr8e9w8r8a8p8p8e8d.
+.prewra4p1p
+.prewrap2pe
+.prewrap4p2ed
+.pr8i8e8s8t9e8s8s8e8s.
+.5pr2i4e4
+.pri1est
+.pries4t2e2ss
+.priestess1e4s
+.pr8e8t9t8y9p8r8i8n9t8e8r.
+.pre4t3t2
+.pret1ty
+.pr2ettypr2
+.prettyprin4t3
+.pr8e8t9t8y9p8r8i8n9t8i8n8g.
+.prettyprint2i
+.prettyprin4t3ing
+.prettyprin2t1in
+.pr8o9c8e9d8u8r9a8l.
+.pr2oc
+.pro1ce
+.proce1du
+.procedu1ra
+.pr8o8c8e8s8s.
+.proc2e2ss
+.pr8o9c8u8r9a8n8c8e.
+.procu1ra
+.procura2n
+.pr8o8g9e9n8i8e8s.
+.pro1ge
+.pro1gen
+.proge5n2ie4
+.pr8o8g9e9n8y.
+.pro4geny
+.pr8o9g8r8a8m9m8a8b8l8e.
+.pro1gr
+.program1m
+.program1ma
+.program2mab
+.programmab2l2
+.pr8o8m9i9n8e8n8t.
+.prom4i
+.prom1in
+.prom2ine
+.promi1nen
+.prominen1t
+.pr8o9m8i8s9c8u9o8u8s.
+.prom2is
+.prom2is1c
+.promis1cu
+.promiscu1ou2
+.promiscuo2us
+.pr8o8m9i8s9s8o8r8y.
+.prom4i2s1s
+.promis1so
+.promisso1ry
+.pr8o8m9i8s8e.
+.prom4ise
+.pr8o8m9i8s8e8s.
+.promis1e4s
+.pr8o9p8e8l9l8e8r.
+.pro3pel
+.propel1l
+.propel2le
+.pr8o9p8e8l9l8e8r8s.
+.propelle4r1s2
+.pr8o9p8e8l9l8i8n8g.
+.propell2i
+.propel2lin4
+.pr8o9h8i8b9i9t8i8v8e.
+.pro1h2
+.prohibi2t
+.prohibi1ti
+.prohibi1t2iv
+.pr8o9h8i8b9i9t8i8v8e9l8y.
+.prohibitiv4e1ly
+.pr8o9s8c8i8u8t9t8o.
+.pros2c
+.pros1ci
+.prosci1u
+.prosciu4t3t2
+.prosciut5to
+.pr8o9t8e8s8t9e8r.
+.pro1t
+.pro4tes
+.pr8o9t8e8s8t9e8r8s.
+.proteste4r1s2
+.pr8o9t8e8s9t8o8r.
+.prot4es2to
+.pr8o9t8e8s9t8o8r8s.
+.protesto4rs2
+.pr8o9t8o9l8a8n9g8u8a8g8e.
+.pro1to
+.proto1la
+.proto4la2n
+.protol2ang
+.protolan1gu
+.protolangu4a
+.pr8o9t8o9t8y8p9a8l.
+.proto1ty
+.prototy1pa
+.prototyp4al
+.pr8o8v9i8n8c8e.
+.prov1in
+.prov2inc
+.pr8o8v9i8n8c8e8s.
+.pr8o9v8i8n9c8i8a8l.
+.provin1ci
+.provin3c2i1a
+.provinci2al
+.pr8o8w9e8s8s.
+.prow2e2ss
+.ps8e8u9d8o9d8i8f9f8e8r9e8n9t8i8a8l.
+.2p1s2
+.p2se
+.ps4eu
+.pseu1do
+.pseudod1if
+.pseudodi4f1f
+.pseudodiffer1
+.pseudodiffer3en1t
+.pseudodifferent2i
+.pseudodifferen1t2i1a
+.pseudodifferenti2al
+.ps8e8u9d8o9d8i8ff8e8r9e8n9t8i8a8l.
+.pseudod1i4ff
+.pseudodiffer1
+.pseudodiffer3en1t
+.pseudodifferent2i
+.pseudodifferen1t2i1a
+.pseudodifferenti2al
+.ps8e8u9d8o9f8i9n8i8t8e.
+.pseu2d5of
+.pseudo2fi
+.pseudo2fin
+.pseudof2ini
+.pseudofin2it
+.pseudofin2ite
+.ps8e8u9d8o9fi9n8i8t8e.
+.pseu2d5o2fi
+.pseudo2fin
+.pseudofini
+.pseudofin2it
+.pseudofin2ite
+.ps8e8u9d8o9f8i9n8i8t8e9l8y.
+.pseudofinite1ly
+.ps8e8u9d8o9fi9n8i8t8e9l8y.
+.pseudofinite1ly
+.ps8e8u9d8o9f8o8r8c8e8s.
+.pseudo1fo
+.pseudofo2r
+.pseudofor1c
+.pseudofor2ce
+.ps8e8u9d8o8g9r8a9p8h8e8r.
+.pseud4og
+.pseudo1gr
+.pseudog5ra3ph4er
+.ps8e8u9d8o9g8r8o8u8p.
+.pseudo4g4ro
+.pseudogrou2
+.ps8e8u9d8o9g8r8o8u8p8s.
+.2p1s2eudogrou2p1s2
+.ps8e8u9d8o9n8y8m.
+.pseu4do2n
+.pseudonym4
+.ps8e8u9d8o9n8y8m8s.
+.pseudony4m1s2
+.ps8e8u9d8o9w8o8r8d.
+.pseudo4wo2
+.ps8e8u9d8o9w8o8r8d8s.
+.pseudowor2d1s2
+.ps8y9c8h8e9d8e8l9i8c.
+.ps4y
+.p4sy1c
+.psy3ch
+.psych4e2
+.psy4ch4ed
+.psychedel2i
+.ps8y8c8h8s.
+.psyc4h1s2
+.pu9b8e8s9c8e8n8c8e.
+.pub3
+.pub4e
+.pu4bes4
+.pubes2c
+.pubes1cen
+.pubes3cenc
+.qu8a8d9d8i8n8g.
+.qu2
+.qua2d
+.quad4d1in
+.quad1d4
+.qu8a9d8r8a8t9i8c.
+.qua1dr
+.quadrat1ic
+.qu8a9d8r8a8t9i8c8s.
+.quadrati4c3s2
+.qu8a8d9r8a9t8u8r8e.
+.quadra2tu
+.quadra3ture
+.qu8a8d9r8i9p8l8e8g9i8c.
+.quadri2p2l2
+.quadr2ip
+.quadripleg4ic
+.qu8a8i8n8t9e8r.
+.quai2
+.qua4i4n
+.quain1t
+.qu8a8i8n8t9e8s8t.
+.qu8a9s8i9e8q8u8i8v9a9l8e8n8c8e.
+.quas2ie4
+.quasie1q
+.qu2asiequ2
+.quasieq2ui2
+.quasiequ2iv3
+.quasiequi1va
+.quasiequiv2ale
+.quasiequiva3lenc
+.qu8a9s8i9e8q8u8i8v9a9l8e8n8c8e8s.
+.qu8a9s8i9e8q8u8i8v9a9l8e8n8t.
+.quasiequiva1len1t
+.qu8a9s8i9h8y9p8o9n8o8r9m8a8l.
+.quasi3h
+.quasihy3po
+.quasihypo2n
+.quasihyponor1m
+.quasihyponor1ma
+.qu8a9s8i9r8a8d9i9c8a8l.
+.quas4i2r
+.quasi1r5a
+.quasira2d
+.quasir2adi
+.quasirad3i1ca
+.qu8a9s8i9r8e8s8i8d9u8a8l.
+.quasi4res
+.quasire1si
+.quasire2s2id
+.quasiresi2du
+.quasiresid1u1a
+.qu8a9s8i9s8m8o8o8t8h.
+.qua1sis
+.quasi2s1m
+.quasis1mo
+.quasismoo2
+.quasismo4oth
+.qu8a9s8i9s8t8a9t8i8o8n9a8r8y.
+.quasis1ta
+.quasistation5a2r
+.quasista1t2io
+.quasistatio2n
+.quasistatio1n1a
+.qu8a9s8i9t8o8p8o8s.
+.qu5a5si4t
+.quasi1to
+.quasito1pos
+.qu8a9s8i9t8r8i9a8n9g8u9l8a8r.
+.quasi5tr2i3a
+.quasitri2a2n
+.quasitri2ang
+.quasitrian1gu
+.quasitriangu1la
+.quasitriangul2a2r
+.qu8a9s8i9t8r8i8v9i8a8l.
+.quasitr2i4v
+.quasitriv3i
+.quasitriv2i1a
+.quasitrivi2al
+.qu8i8n9t8e8s9s8e8n8c8e.
+.q2ui2
+.qui4n
+.quin1t
+.quin4t2e2ss
+.quintes4senc
+.qu8i8n9t8e8s9s8e8n8c8e8s.
+.qu8i8n9t8e8s9s8e8n9t8i8a8l.
+.quin1tessen1t
+.quintessent2i
+.quintessen1t2i1a
+.quintessenti2al
+.ra8b9b8i8t9r8y.
+.2rab
+.ra2b1b
+.rabbi2t
+.rabbi3tr
+.rabbit5ry
+.ra9d8i9o8g9r8a9p8h8y.
+.ra2d
+.r2adi
+.ra3d2io
+.radio5g
+.radio2gr
+.radio4g3ra1phy
+.ra8f8f9i8s8h.
+.raf5fi
+.ra2f
+.ra4f1f4
+.raf2f5is
+.raffis2h
+.ra8ffi8s8h.
+.raffi
+.raffis
+.raffis2h
+.ra8f8f9i8s8h9l8y.
+.raffis4h1l4
+.raffish1ly
+.ra8ffi8s8h9l8y.
+.raffis4h1l4
+.raffish1ly
+.ra8m9s8h8a8c8k8l8e.
+.ra4m1s2
+.ram4s2h
+.ramshack1
+.ramshack1l
+.ra8v9e8n9o8u8s.
+.rav4e4no
+.rave1nou2
+.raveno2us
+.re9a8r8r8a8n8g8e9m8e8n8t.
+.re5ar1r4
+.re2a2r
+.rearran4ge
+.rearra2n
+.rearr2ang
+.rearrange1me
+.rearrange1men
+.rearrange3men1t
+.re9a8r8r8a8n8g8e9m8e8n8t8s.
+.rearrangemen4t4s2
+.re8c9i9p8r8o8c9i9t8i8e8s.
+.reciproci1ti
+.reciprocit2ie4
+.re8c9t8a8n9g8l8e.
+.rec4ta2n
+.re2c1t
+.rect5ang
+.rec1ta
+.rectan1gl2
+.rectan1gle
+.re8c9t8a8n9g8l8e8s.
+.rectangles2
+.re8c9t8a8n9g8u9l8a8r.
+.rectan1gu
+.rectangu1la
+.rectangul2a2r
+.re9d8i9r8e8c8t.
+.2r2ed
+.r4edi
+.red4ir2
+.redi1re
+.redire2c1t
+.re9d8i9r8e8c8t9i8o8n.
+.redirec1t2io
+.redirectio2n
+.re9d8u8c9i8b8l8e.
+.re1du
+.redu2c
+.reduci4b
+.redu1ci
+.reduci1b2l2
+.re9e8c8h8o.
+.ree2c
+.ree2ch
+.ree3cho2
+.re9p8h8r8a8s8e.
+.rep4hr4
+.rephr2as
+.re9p8h8r8a8s8e8s.
+.rephras1e4s
+.re9p8h8r8a8s8e8d.
+.rephra4s4ed
+.re9p8o9s8i9t8i8o8n.
+.re4posi
+.re1po
+.re1pos
+.repo3s2i1t2io
+.reposi1ti
+.repositio2n
+.re9p8o9s8i9t8i8o8n8s.
+.repositio2n3s2
+.re9p8r8i8n8t.
+.repr2
+.reprin4t3
+.re9p8r8i8n8t8s.
+.reprin4t4s2
+.re9s8t8o8r9a8b8l8e.
+.r4es2to
+.resto2ra
+.resto2rab
+.restorab2l2
+.re8t8r8o9f8i8t.
+.retro2fi
+.re8t8r8o9fi8t.
+.retro2fi
+.re8t8r8o9f8i8t9t8e8d.
+.retrof4i4t4t2
+.retrofit2t1ed
+.re8t8r8o9fi8t9t8e8d.
+.retrofi4t4t2
+.retrofit2t1ed
+.re9u8s9a8b8l8e.
+.r4eu2
+.re2us4
+.reusa2
+.reu2s1ab
+.reusab2l2
+.re9u8s8e.
+.re9w8i8r8e.
+.rewi2
+.rew4ir4
+.re9w8r8a8p.
+.rewra4
+.re9w8r8a8p8p8e8d.
+.rewra4p1p
+.rewrap2pe
+.rewrap4p2ed
+.re9w8r8i8t8e.
+.rewri4
+.rewr2ite
+.rh8i9n8o8c9e8r9o8s.
+.rh4
+.rh2i1no
+.rhi4no4c
+.rhino1ce
+.rhinoc2ero
+.ri8g8h8t9e8o8u8s.
+.righ1teo
+.righteou2
+.righteo2us
+.ri8g8h8t9e8o8u8s9n8e8s8s.
+.righteous1n4
+.righteous1nes
+.righteousn2e2ss
+.ri8n8g9l8e8a8d8e8r.
+.rin4g
+.ringl2
+.rin1gle
+.ringle2a
+.ringlea2d1
+.ri8n8g9l8e8a8d8e8r8s.
+.ringleade4r5s2
+.ro9b8o8t.
+.ro9b8o8t8s.
+.robo4t1s2
+.ro9b8o8t8i8c.
+.ro9b8o8t9i8c8s.
+.roboti4c3s2
+.ro8u8n8d9t8a8b8l8e.
+.rou2
+.roun2d
+.round1ta
+.round2tab
+.roundtab2l2
+.ro8u8n8d9t8a8b8l8e8s.
+.roundta5bles2
+.sa8l8e8s9c8l8e8r8k.
+.sa2
+.s2ale
+.sales2
+.sales2c
+.salescle5
+.sales1c4l4
+.sa8l8e8s9c8l8e8r8k8s.
+.salescler4k1s2
+.sa8l8e8s9w8o8m8a8n.
+.sales4w2
+.sale4s1wo2
+.saleswom1
+.saleswo1ma
+.saleswoma2n
+.sa8l8e8s9w8o8m8e8n.
+.saleswo2me
+.saleswo1men
+.sa8l9m8o9n8e8l9l8a.
+.s4a2l4m
+.salmo2n4
+.sal1mo
+.salmon4ella
+.salmonel1l
+.sa8l9t8a9t8i8o8n.
+.sa4l4t
+.sal1ta
+.salta1t2io
+.saltatio2n
+.sa8r9s8a9p8a8r9i8l9l8a.
+.s2a2r
+.sa2r4sa2
+.sa4rs2
+.sars1ap
+.s2a2rsap2a2r4
+.sarsa1pa
+.sarsap4a4r1i
+.sarsaparil1l
+.sa8u8e8r9k8r8a8u8t.
+.sau4
+.sauerkrau4t
+.sc8a8t9o9l8o8g9i9c8a8l.
+.s1ca
+.sca1to
+.scato3log1ic
+.s1catologi1ca
+.sc8h8e8d9u8l9i8n8g.
+.s2ch2
+.sche2
+.s4ch4ed
+.sche4dul
+.sche1du
+.schedul2i
+.schedul3ing
+.sc8h8i8z9o9p8h8r8e8n8i8c.
+.schi2z
+.schi1zo
+.schiz2oph
+.schizop4hr4
+.sc8h8n8a8u9z8e8r.
+.sc2h1n
+.sch1na
+.schn2au
+.schnau2z4e
+.schnauz1er
+.sc8h8o8o8l9c8h8i8l8d.
+.s4cho2
+.schoo2
+.schoo4l1c2
+.s2chool2ch
+.schoolch4il2
+.schoolchi2ld
+.sc8h8o8o8l9c8h8i8l8d9r8e8n.
+.schoolchil3dr
+.schoolchildre4
+.schoolchil5dren
+.sc8h8o8o8l9t8e8a8c8h8e8r.
+.schoo4l2t
+.school1te
+.s2chooltea2ch
+.schoolteache2
+.sc8h8o8o8l9t8e8a8c8h9e8r8s.
+.schoolteach3e4r1s2
+.sc8r8u9t8i9n8y.
+.scru2t1i5n
+.scr4u1t2i
+.scrut4iny
+.sc8y8t8h9i8n8g.
+.s1cy
+.scy3thin
+.se8l8l9e8r.
+.sel2le
+.se8l8l9e8r8s.
+.selle4r1s2
+.se8c9r8e9t8a8r9i8a8t.
+.se1cr
+.se4c3re1ta
+.secret2a2r
+.secretar1i
+.secretar2i3a
+.se8c9r8e9t8a8r9i8a8t8s.
+.secretaria4t1s2
+.se8m9a9p8h8o8r8e.
+.se1ma
+.se4map
+.semapho4r
+.se8m9a9p8h8o8r8e8s.
+.se9m8e8s9t8e8r.
+.4se1me
+.se2mes
+.se8m8i9d8e8f9i9n8i8t8e.
+.sem2id
+.semide1f
+.semidef5i5n2ite
+.semide1fi
+.semide2fin
+.semidef2ini
+.semidefin2it
+.se8m8i9d8e8fi9n8i8t8e.
+.semide1fi
+.semidefi5n2ite
+.semide2fin
+.semidefini
+.semidefin2it
+.se8m8i9d8i9r8e8c8t.
+.semi2di
+.semid4ir2
+.semidi1re
+.semidire2c1t
+.se8m8i9h8o9m8o9t8h8e8t9i8c.
+.semi3h
+.semiho1mo
+.semihom4oth3
+.semihomoth2e
+.semihomo3the4t
+.semihomothet1ic
+.se8m8i9r8i8n8g.
+.sem4ir
+.semir1i
+.semirin4g
+.se8m8i9r8i8n8g8s.
+.semirings2
+.se8m8i9s8i8m9p8l8e.
+.se4m2is
+.semisi4m1p
+.semisim1p2l2
+.se8m8i9s8k8i8l8l8e8d.
+.sem4is4k2
+.semisk1i
+.semisk4il1l
+.semiskil2le
+.se8r8o9e8p8i9d8e9m8i9o9l8o8g9i9c8a8l.
+.s2er4o
+.sero4e
+.seroep4id
+.seroepi3de
+.seroepid4em
+.seroepidem2io
+.seroepidemi1ol
+.seroepidemio3log1ic
+.seroepidemiologi1ca
+.se8r9v8o9m8e8c8h9a8n8i8s8m.
+.4ser3vo
+.servo2me
+.servome2ch
+.servomech5a5nis
+.servomecha2n
+.servomechani2s1m
+.se8r9v8o9m8e8c8h9a8n8i8s8m8s.
+.servomechan4is4m1s2
+.se8s9q8u8i9p8e9d8a9l8i8a8n.
+.s1e4s
+.sesqu2
+.sesq2ui2
+.sesqu2ip
+.sesquipe4
+.sesqui2p2ed
+.sesquip2e2d2a
+.sesquipedal1i
+.sesquipedal2i1a
+.sesquipedali2a2n
+.se8t9u8p.
+.se1tu
+.se8t9u8p8s.
+.setu2p1s2
+.se9v8e8r8e9l8y.
+.5sev
+.sev1er
+.sev4erel
+.severe1ly
+.sh8a8p8e9a8b8l8e.
+.sha3pe4a
+.shape1a4b
+.shapeab2l2
+.sh8o8e9s8t8r8i8n8g.
+.sho4
+.sho2est4r
+.shoestrin4g
+.sh8o8e9s8t8r8i8n8g8s.
+.shoestrings2
+.si8d8e9s8t8e8p.
+.5side4s2
+.s2id
+.sideste4p
+.si8d8e9s8t8e8p8s.
+.sideste2p1s2
+.si8d8e9s8w8i8p8e.
+.sides4w2
+.sideswi2
+.sidesw2ip
+.sideswipe4
+.sk8y9s8c8r8a8p8e8r.
+.sk2
+.skys4c
+.skyscrap3er
+.sk8y9s8c8r8a8p8e8r8s.
+.skyscrape4r1s2
+.sm8o8k8e9s8t8a8c8k.
+.2s1m
+.s1mo
+.s4m2ok
+.smokes4
+.smokes1ta
+.smokestack1
+.sm8o8k8e9s8t8a8c8k8s.
+.smokestac4k1s2
+.sn8o8r9k8e8l9i8n8g.
+.s1n4
+.snorke5l2i
+.snorke4l3ing
+.so9l8e9n8o8i8d.
+.1so
+.sol4eno
+.solenoi2
+.soleno2id
+.so9l8e9n8o8i8d8s.
+.solenoi2d1s2
+.so8l8u8t8e.
+.so1lut
+.so8l8u8t8e8s.
+.so8v9e8r9e8i8g8n.
+.4sov
+.soverei2
+.sovere2ig2
+.so8v9e8r9e8i8g8n8s.
+.sovereig2n1s2
+.sp8a9c8e8s.
+.2s1pa
+.spa4ce
+.sp8e9c8i8o8u8s.
+.spe2c
+.spe1c2i
+.spec2io
+.speciou2
+.specio2us
+.sp8e8l8l9e8r.
+.spel1l
+.spel2le
+.sp8e8l8l9e8r8s.
+.spelle4r1s2
+.sp8e8l8l9i8n8g.
+.spell2i
+.spel2lin4
+.sp8e9l8u8n8k9e8r.
+.spelu4nk2
+.spelunk1er
+.sp8e8n8d9t8h8r8i8f8t.
+.spen4d
+.spend2th
+.spendt4hr4
+.spendthr4i2ft
+.sp8h8e8r9o8i8d.
+.s2phe
+.3sph4er
+.sph2ero
+.spheroi2
+.sphero2id
+.sp8h8e8r9o8i8d9a8l.
+.spheroi1d2a
+.sp8h8i8n9g8e8s.
+.sph5ing
+.sph4inge
+.sp8i8c9i9l8y.
+.sp2i1ci
+.spici1ly
+.sp8i8n9o8r8s.
+.spi2n
+.sp4i1no
+.spino4rs2
+.sp8o8k8e8s9w8o8m8a8n.
+.sp2ok
+.spokes4
+.spokes4w2
+.spoke4s1wo2
+.spokeswom1
+.spokeswo1ma
+.spokeswoma2n
+.sp8o8k8e8s9w8o8m8e8n.
+.spokeswo2me
+.spokeswo1men
+.sp8o8r8t8s9c8a8s8t.
+.s1p4or4
+.spor4t1s2
+.sport4sc
+.sports1ca
+.sp8o8r8t8s9c8a8s8t9e8r.
+.sportscast5er
+.sp8o8r9t8i8v8e9l8y.
+.spor1ti
+.spor4t2iv
+.sportiv4e1ly
+.sp8o8r8t8s9w8e8a8r.
+.sport4sw2
+.sportswe2a2r
+.sp8o8r8t8s9w8r8i8t8e8r.
+.sportswri4
+.sportswr2ite
+.sp8o8r8t8s9w8r8i8t8e8r8s.
+.sportswrit5e4r1s2
+.sp8r8i8g8h8t9l8i8e8r.
+.spr2
+.spr2ig
+.sprigh2tl
+.sprightl2ie4
+.sq8u8e8a9m8i8s8h.
+.squ2
+.squeam2is
+.squeamis2h
+.st8a8n8d9a8l8o8n8e.
+.5st4and
+.sta2n
+.stan1d2a
+.standalo2n
+.st8a8r9t8l8i8n8g.
+.st2a2r
+.star2tl
+.st8a8r9t8l8i8n8g9l8y.
+.startlingl2
+.startling1ly
+.st8a9t8i8s9t8i8c8s.
+.statis1t2i
+.statis1tic
+.statisti4c3s2
+.st8e8a8l8t8h9i8l8y.
+.stea4l
+.stea4lt
+.stealth3i
+.steal4th4il2
+.stealthi1ly
+.st8e8e8p8l8e9c8h8a8s8e.
+.s1tee
+.stee4p1
+.stee1p2l2
+.steeple2ch
+.st8e8r8e8o9g8r8a8p8h9i8c.
+.stere1o
+.stereo2g
+.stereo1gr
+.stereo5graph1ic
+.stereogr4aphi
+.st8o9c8h8a8s9t8i8c.
+.s1to
+.sto2ch4
+.stochast2i
+.stochas1tic
+.st8r8a8n8g8e9n8e8s8s.
+.st4r
+.s1tra
+.stran4ge
+.stra2n
+.str2ang
+.strange4n4e
+.stran1gen
+.strange1nes
+.strangen2e2ss
+.st8r8a8p9h8a8n8g8e8r.
+.straph2an4g
+.straphang5er
+.strapha2n
+.st8r8a8t9a9g8e8m.
+.stra2ta
+.st8r8a8t9a9g8e8m8s.
+.stratage4m1s2
+.st8r8e8t8c8h9i9e8r.
+.stre4tc
+.stret4ch
+.stretch2ie4
+.st8r8i8p9t8e8a8s8e.
+.str2ip
+.stri2p1t
+.strip2te
+.st8r8o8n8g9h8o8l8d.
+.stro2n
+.strongho2l2d
+.st8r8o8n8g9e8s8t.
+.st8u9p8i8d9e8r.
+.s1tu
+.stup4id
+.stupi3de
+.st8u9p8i8d9e8s8t.
+.stupide4s2
+.su8b9d8i8f9f8e8r9e8n9t8i8a8l.
+.1su
+.su4b3
+.su4b1d
+.subd1if
+.subdi4f1f
+.subdiffer1
+.subdiffer3en1t
+.subdifferent2i
+.subdifferen1t2i1a
+.subdifferenti2al
+.su8b9d8i8ff8e8r9e8n9t8i8a8l.
+.subd1i4ff
+.subdiffer1
+.subdiffer3en1t
+.subdifferent2i
+.subdifferen1t2i1a
+.subdifferenti2al
+.su8b9e8x9p8r8e8s9s8i8o8n.
+.sub4e
+.sub1ex3p
+.subexpr2
+.subex3pr2e2ss
+.subexpres1si
+.subexpres1s2io
+.subexpres5sio2n
+.su8b9e8x9p8r8e8s9s8i8o8n8s.
+.subexpressio2n3s2
+.su8m9m8a9b8l8e.
+.su2m
+.sum1m
+.sum1ma
+.sum2mab
+.summab2l2
+.su8p8e8r9e8g8o.
+.su1pe
+.supere1go
+.su8p8e8r9e8g8o8s.
+.supere4gos
+.su9p8r8e8m9a9c8i8s8t.
+.supr2
+.supre4mac
+.supre1ma
+.suprem4a2ci
+.su9p8r8e8m9a9c8i8s8t8s.
+.supremacis4t1s2
+.su8r9v8e8i8l9l8a8n8c8e.
+.su2r
+.surv4e
+.survei2
+.surveil1l
+.surveilla2n
+.sw8i8m9m8i8n8g9l8y.
+.sw2
+.swi2
+.swim1m
+.swimm4ingl2
+.swimm5ing1ly
+.sy8m8p9t8o9m8a8t8i8c.
+.sy4m1p
+.sym2p1t
+.symp1to
+.sympto2ma
+.symptomat1ic
+.sy8n9c8h8r8o9m8e8s8h.
+.syn3c4hr4
+.syn2ch
+.synchro2me
+.synchro2mes
+.synchrom4es2h
+.sy8n9c8h8r8o9n8o8u8s.
+.synchro2n
+.synchro1nou2
+.synchrono2us
+.sy8n9c8h8r8o9t8r8o8n.
+.synchrotro2n
+.ta8f8f9r8a8i8l.
+.4ta2f4
+.ta4f1f4
+.taffr2ai2
+.ta8ff9r8a8i8l.
+.4ta4ff4
+.taffr2ai2
+.ta8l8k9a9t8i8v8e.
+.ta2l
+.4talk
+.talka3
+.talka4t
+.talka1t2iv
+.ta9p8e8s9t8r8y.
+.tap2est4r
+.tape4stry
+.ta9p8e8s9t8r8i8e8s.
+.tapestr2ie4
+.ta8r9p8a8u9l8i8n.
+.t2a2r
+.tar2p
+.tar1pa
+.tarpau4l2
+.tarpaul2i
+.ta8r9p8a8u9l8i8n8s.
+.tarpaul2i2n1s2
+.te9l8e8g9r8a9p8h8e8r.
+.tele1gr
+.teleg5ra3ph4er
+.te9l8e8g9r8a9p8h8e8r8s.
+.telegraphe4r1s2
+.te8l8e9k8i9n8e8t9i8c.
+.teleki4n
+.telek1i
+.telek2ine
+.teleki3net1ic
+.te8l8e9k8i9n8e8t9i8c8s.
+.telekineti4c3s2
+.te8l8e9r8o9b8o8t9i8c8s.
+.te4l1er
+.tel4ero
+.teler5ob
+.teleroboti4c3s2
+.te8l8l9e8r.
+.tel1l
+.tel2le
+.te8l8l9e8r8s.
+.telle4r1s2
+.te8m9p8o9r8a8r9i8l8y.
+.te4m1p
+.tem1p4or
+.tempo1ra
+.tempo4raril
+.tempor2a2r
+.temporar1i
+.temporari1ly
+.te8n9u8r8e.
+.te8s8t9b8e8d.
+.tes2t1b
+.test4be2d
+.te8x8t9w8i8d8t8h.
+.3tex
+.tex1t2
+.textw4
+.textwi2
+.textw2id
+.textwid2th
+.th8a8l9a9m8u8s.
+.tha3la
+.thala3m
+.thala1mu
+.thalam2us
+.th8e8r9m8o9e8l8a8s9t8i8c.
+.th2e
+.ther3m4
+.ther1mo
+.thermo4el
+.thermoe1la
+.thermoelast2i
+.thermoelas1tic
+.ti8m8e9s8t8a8m8p.
+.ti2mes
+.times1ta
+.timesta4m1p
+.ti8m8e9s8t8a8m8p8s.
+.timestam2p1s2
+.to8o8l9k8i8t.
+.too2
+.toolk1i
+.to8o8l9k8i8t8s.
+.toolki4t1s2
+.to8p8o9g8r8a8p8h9i9c8a8l.
+.to5po4g
+.topo1gr
+.topo5graph1ic
+.topogr4aphi
+.topographi1ca
+.to8q8u8e8s.
+.to1q
+.toqu2
+.tr8a8i9t8o8r9o8u8s.
+.1tra
+.tr2ai2
+.trai1to
+.traitorou2
+.traitoro2us
+.tr8a8n8s9c8e8i8v8e8r.
+.tra2n
+.tra2n1s2
+.trans4c
+.tran4s3cei2
+.transce2iv
+.tr8a8n8s9c8e8i8v8e8r8s.
+.transceive4r1s2
+.tr8a8n8s9g8r8e8s8s.
+.tran2s3g
+.trans1gr
+.transgr2e2ss
+.tr8a8n8s9v8e8r9s8a8l.
+.tran4sv
+.transve4r1s2
+.transver1sa2
+.tr8a8n8s9v8e8r9s8a8l8s.
+.transversa2l1s2
+.tr8a8n8s9v8e8s9t8i8t8e.
+.transv4e2s
+.transvest2i
+.transvest2ite
+.tr8a8n8s9v8e8s9t8i8t8e8s.
+.transvestit4es
+.tr8a9v8e8r8s9a9b8l8e.
+.trave4r1s2
+.traver1sa2
+.traver2s1ab
+.traversab2l2
+.tr8a9v8e8r9s8a8l.
+.tr8a9v8e8r9s8a8l8s.
+.traversa2l1s2
+.tr8i9e8t8h8y8l9a8m8i8n8e.
+.tri5et
+.tr2ie4
+.triethy3la
+.triethylam1in
+.triethylam2ine
+.tr8e8a8c8h9e8r8i8e8s.
+.trea2ch
+.treache2
+.treacher1i
+.treacher2ie4
+.tr8o8u9b8a9d8o8u8r.
+.trou2
+.trouba2d
+.trouba1do
+.trou2badou2
+.tu8r9k8e8y.
+.1tu
+.tu8r9k8e8y8s.
+.turkeys4
+.tu8r8n9a8r8o8u8n8d.
+.tur4n2a2r
+.tur1na
+.turnarou2
+.turnaroun2d
+.tu8r8n9a8r8o8u8n8d8s.
+.turnaroun2d1s2
+.ty8p9a8l.
+.1ty
+.ty1pa
+.typ4al
+.un9a8t9t8a8c8h8e8d.
+.un2at4
+.una4t3t2
+.unat1ta
+.unatta2ch
+.unattache2
+.unatta4ch4ed
+.un9e8r8r9i8n8g9l8y.
+.un4er
+.uner4r4
+.unerrin4g
+.unerringl2
+.unerring1ly
+.un9f8r8i8e8n8d9l8y.
+.un3f
+.unfri2
+.unfr2ie4
+.unfrien2d1ly
+.un9f8r8i8e8n8d9l8i9e8r.
+.unfr2ie4ndl2ie4
+.va8g8u8e8r.
+.1va
+.vag4
+.va5guer
+.va2gue
+.va8u8d8e9v8i8l8l8e.
+.vaude1v4
+.vaude2v3i4l
+.vaude1vi
+.vaudevil1l
+.vaudevil2le
+.vi8c9a8r8s.
+.v4ic2a2r
+.vi1ca
+.vica4rs2
+.vi8l9l8a8i8n9e8s8s.
+.2vil
+.vil1l
+.villai2
+.villa4i4n
+.villa2ine
+.villai5n2e2ss
+.villai1nes
+.vi8s9u8a8l.
+.vi3su
+.visu1al
+.vi8s9u8a8l9l8y.
+.visual1l
+.visual1ly
+.vi9v8i8p9a9r8o8u8s.
+.3v2iv
+.viv2i4p
+.vivi1pa
+.vivip2a2r
+.viviparou2
+.viviparo2us
+.vo8i8c8e9p8r8i8n8t.
+.voi4
+.voi3cep
+.voicepr2
+.voiceprin4t3
+.vs8p8a8c8e.
+.v2s1pa
+.vspa4ce
+.wa8d9d8i8n8g.
+.wa2d
+.wad4d1in
+.wad1d4
+.wa8l8l9f8l8o8w8e8r.
+.wal1l
+.wal2lf
+.wallf4l2
+.wallflow1er
+.wa8l8l9fl8o8w8e8r.
+.wal2lfl2
+.wallflow1er
+.wa8l8l9f8l8o8w9e8r8s.
+.wallflowe4r1s2
+.wa8l8l9fl8o8w9e8r8s.
+.wallflowe4r1s2
+.wa8r8m9e8s8t.
+.w2a2r
+.war1m
+.war2me
+.war2mes
+.wa8s8t8e9w8a8t8e8r.
+.was4t
+.waste2w
+.waste1w5a
+.wastewa1te
+.wa8v8e9g8u8i8d8e.
+.waveg3
+.waveg2ui2
+.wavegu2id
+.wa8v8e9g8u8i8d8e8s.
+.waveguide4s2
+.wa8v8e9l8e8t.
+.wa8v8e9l8e8t8s.
+.wavele4t1s2
+.we8b9l8i8k8e.
+.w2e1b
+.web2l2
+.web3l4ik
+.we8e8k9n8i8g8h8t.
+.weekn2ig
+.we8e8k9n8i8g8h8t8s.
+.weeknigh4t1s2
+.wh8e8e8l9c8h8a8i8r.
+.whee4l1c2
+.wheel2ch
+.wheelchai2
+.wheelcha4ir
+.wh8e8e8l9c8h8a8i8r8s.
+.wheelchai4rs2
+.wh8i8c8h9e8v8e8r.
+.whi4
+.wh4i2ch
+.whiche2
+.whichev1er
+.wh8i8t8e9s8i8d8e8d.
+.wh2ite
+.whit4es
+.white1si
+.white2s2id
+.whitesi2d1ed
+.wh8i8t8e9s8p8a8c8e.
+.white1sp
+.white2s1pa
+.whitespa4ce
+.wh8i8t8e9s8p8a8c8e8s.
+.wi8d8e9s8p8r8e8a8d.
+.w2id
+.wide4s2
+.wide1sp
+.wides4pre
+.widespr2
+.widesprea2d1
+.wi8n8g9s8p8a8n.
+.win4g
+.wings2
+.wing2s1pa
+.wingspa4n
+.wi8n8g9s8p8a8n8s.
+.wingspa2n1s2
+.wi8n8g9s8p8r8e8a8d.
+.wingspr2
+.wingsprea2d1
+.wi8t8c8h9c8r8a8f8t.
+.wi4tc
+.wit4ch
+.witchcra2f4t
+.witchcra2f
+.wo8r8d9s8p8a8c9i8n8g.
+.1wo2
+.wor2d1s2
+.words4p
+.word2s1pa
+.wordsp4a2ci
+.wordspa2c1in
+.wordspac1ing
+.wo8r8k9a8r8o8u8n8d.
+.work2a2r
+.workarou2
+.workaroun2d
+.wo8r8k9a8r8o8u8n8d8s.
+.workaroun2d1s2
+.wo8r8k9h8o8r8s8e.
+.workh4
+.workhor4se
+.workho4rs2
+.wo8r8k9h8o8r8s8e8s.
+.workhors3e4s
+.wr8a8p9a8r8o8u8n8d.
+.wra4
+.wrap2a2r4
+.wra1pa
+.wraparou2
+.wraparoun2d
+.wr8e8t8c8h9e8d.
+.wre4tc
+.wret4ch
+.wretche2
+.wret4ch4ed
+.wr8e8t8c8h9e8d9l8y.
+.wretche2d1ly
+.ye8s9t8e8r9y8e8a8r.
+.yes4
+.yesterye2a2r
+.al9g8e9b8r8a8i9s8c8h8e.
+.algebra2is1c
+.algebrais3ch2
+.algebraische2
+.al9l8e9g8h8e9n8y.
+.al1l
+.al2le
+.al3leg
+.alleghe2n
+.ar9k8a8n9s8a8s.
+.arka2n
+.arkan2sa2
+.arka2n1s2
+.at8p9a8s8e.
+.a4t1p
+.at1pa
+.at8p9a8s8e8s.
+.atpas1e4s
+.au8s9t8r8a8l9a8s8i8a8n.
+.a2us
+.aus1t4r
+.aus1tra
+.australas2i1a
+.australasi2a2n
+.au8t8o9m8a8t8i9s8i8e8r9t8e8r.
+.automa3tis
+.automatis2ie4
+.automatisiert3er
+.be9d8i8e9n8u8n8g.
+.4be2d
+.b4e3di
+.be5di3en
+.bed2ie4
+.bedie3nu4n
+.be8m8b8o.
+.4be5m
+.be4m5b
+.bi8b9l8i9o9g8r8a9p8h8i9s8c8h8e.
+.bibliogr4aphi
+.bibliograph2is1c
+.bibliographis3ch2
+.bibliographische2
+.bo8s9t8o8n.
+.5bos4
+.bos1to
+.bosto2n
+.br8o8w8n9i8a8n.
+.brown5i
+.brow3n4i1a
+.browni3a2n
+.br8u8n8s9w8i8c8k.
+.bru2n
+.bru2n3s4
+.brun4sw2
+.brunswi2
+.brunswick1
+.bu9d8a9p8e8s8t.
+.bu1d2a
+.ca8r9i8b9b8e8a8n.
+.car1i
+.car4ib
+.cari2b1b
+.carib2be
+.caribbea2n
+.ch8a8r8l8e8s9t8o8n.
+.char4le4
+.char1l
+.charles2
+.charl4es2to
+.charle3sto2n
+.ch8a8r9l8o8t8t8e8s9v8i8l8l8e.
+.char3lo4
+.charlo4t3t2
+.charlot4tes
+.charlotte4sv
+.charlottes2vil
+.charlottesvil1l
+.charlottesvil2le
+.co9l8u8m9b8i8a.
+.colum4bi
+.colu4m1b
+.columb2i1a
+.cz8e8c8h8o9s8l8o9v8a9k8i8a.
+.c2ze4
+.cze2ch
+.cze3cho2
+.czechos4l2
+.czechos4lov
+.czechoslo1va
+.czechoslovak1i
+.czechoslovak2i1a
+.de8l9a9w8a8r8e.
+.de1la
+.de4law
+.delaw2a2r
+.di8j8k9s8t8r8a.
+.di3j
+.dij4k1s2
+.dijkst4r
+.dijks1tra
+.du8a8n8e.
+.d1u1a
+.dua2n
+.dy9n8a9m8i9s8c8h8e.
+.5dyn
+.dy1na
+.dynam2is
+.dynam2is1c
+.dynamis3ch2
+.dynamische2
+.en8g9l8i8s8h.
+.engl2
+.englis2h
+.eu8l8e8r9i8a8n.
+.eul4e
+.eu3l4er1i
+.eule1r2i3a4
+.euleri2a2n
+.ev8a8n9s8t8o8n.
+.e1va
+.eva2n
+.evan4st
+.eva2n1s2
+.evans1to
+.evansto2n
+.fe8b9r8u9a8r8y.
+.f2e4b
+.fe3br
+.febru3a
+.febru2a2r
+.fe8s8t9s8c8h8r8i8f8t.
+.fes4t1s2
+.fest4sc
+.fests2ch2
+.festsc4hr4
+.festschr4i2ft
+.fl8o8r9i9d8a.
+.flor2id
+.flori1d2a
+.fl8o8r9i9d8a.
+.flor2id
+.flori1d2a
+.fl8o8r9i9d9i8a8n.
+.flori2di
+.florid5i2a2n
+.flori1d4i3a
+.fl8o8r9i9d9i8a8n.
+.flori2di
+.florid5i2a2n
+.flori1d4i3a
+.fo8r9s8c8h8u8n8g8s9i8n9s8t8i9t8u8t.
+.fors4c
+.fors2ch2
+.forschungs2
+.forschung2s1in
+.forschungs2i2n1s2
+.forschungsinst2i
+.forschungsinsti1tu
+.fr8e8e9b8s8d.
+.fre2e1b
+.free2b5s2
+.freeb4s5d
+.fu8n8k9t8s8i8o8n8a8l.
+.3fu
+.fu4nk2
+.funk5t
+.funk4t1s2
+.funkt1s2io
+.funkt5sio2n
+.funktsio1n5a
+.ga8u8s8s9i8a8n.
+.ga2us
+.gau2ss
+.gaus1si
+.gauss2i1a
+.gaussi2a2n
+.gh8o8s8t9s8c8r8i8p8t.
+.ghos4t1s2
+.ghost4sc
+.ghostscri2
+.ghostscr2ip
+.ghostscri2p1t
+.gh8o8s8t9v8i8e8w.
+.ghos4tv
+.ghostv2ie4
+.gr8a8s8s9m8a8n8n9i8a8n.
+.gr2as
+.gra2ss
+.gras2s1m
+.grass3ma
+.grassma2n3
+.grassma4n1n2
+.grassman3n4i1a
+.grassma2nni3a2n
+.gr8e8i8f8s9w8a8l8d.
+.grei2
+.grei2f3s
+.greifsw2
+.greifswa2ld
+.gr8o8t8h8e8n9d8i8e8c8k.
+.g4ro
+.gro4th2e
+.gr4oth
+.grothe2n
+.grothend2ie4
+.grothendieck1
+.gr8u8n8d9l8e8h9r8e8n.
+.gru2n
+.grundle1h4
+.grundle4hr4
+.ha9d8a9m8a8r8d.
+.ha2d
+.ha1d2a
+.hada2m2
+.had4a1ma
+.hadam2a2r
+.ha8i9f8a.
+.hai1fa
+.ha8m8i8l9t8o8n9i8a8n.
+.ha4m
+.hami4lt
+.hamil1to
+.hamilto2n
+.hamilto3n4i1a
+.hamiltoni3a2n
+.he8l9s8i8n8k8i.
+.he2l1s2
+.hel2s1in
+.hels4i4nk2
+.helsink1i
+.he8r9m8i8t9i8a8n.
+.her3mit
+.hermi1ti
+.herm4i1t2i1a
+.hermiti2a2n
+.hi8b8b8s.
+.hi2b1b
+.hib2b5s2
+.ho8k9k8a8i9d8o.
+.h2ok
+.hokk4
+.hokkai2
+.hokka2id
+.hokkai1do
+.ja8c9k8o8w9s8k8i.
+.5ja
+.jack1
+.jackowsk2
+.jackowsk1i
+.ja8n9u9a8r8y.
+.ja2n
+.jan3u1a
+.janu2a2r
+.ja9p8a9n8e8s8e.
+.ja4p
+.ja1pa
+.japa2n
+.japa1nes
+.japane1s2e
+.ka8d9o8m9t8s8e8v.
+.ka2d
+.ka1do
+.kado4mt
+.kadom4t1s2
+.kadomt5sev
+.ka8n9s8a8s.
+.ka2n
+.kan2sa2
+.ka2n1s2
+.ka8r8l8s9r8u8h8e.
+.k2a2r
+.kar1l
+.kar2l1s2
+.karls1r
+.ko8r9t8e9w8e8g.
+.ko5r
+.kr8i8s8h8n8a.
+.kr2is
+.kr3is2h
+.kris2h1n
+.krish1na
+.kr8i8s8h9n8a9i8s8m.
+.krishnai2
+.krishnai2s1m
+.kr8i8s8h9n8a8n.
+.krishn2a2n
+.la8n9c8a8s9t8e8r.
+.lan1ca
+.lancast5er
+.le9g8e8n8d8r8e.
+.le1gen
+.legen1dr
+.legendre4
+.le8i8c8e8s9t8e8r.
+.lei2
+.le5ic
+.leices5t
+.li8p9s8c8h8i8t8z.
+.l2ip
+.li2p1s2
+.lips2ch2
+.lips3chit
+.lipschi4tz
+.li8p9s8c8h8i8t8z9i8a8n.
+.lipschit2z1i
+.lipschitz2i1a
+.lipschitzi2a2n
+.lo8j9b8a8n.
+.lo5j
+.lojba2n
+.lo8u9i9s8i9a8n8a.
+.lou2
+.lo2ui2
+.louis2i1a
+.louisi2a2n
+.louisia1na
+.ma8c9o8s.
+.ma1co
+.ma8n9c8h8e8s9t8e8r.
+.man2ch
+.manche2
+.manch1es
+.ma8r9k8o8v9i8a8n.
+.marko5vi2a2n
+.markov2i1a
+.ma8r8k8t9o8b8e8r9d8o8r8f.
+.mark5t
+.mark1to
+.markto3b
+.marktober1do
+.marktoberd4or
+.marktoberdor1f
+.ma8s8s9a9c8h8u9s8e8t8t8s.
+.ma2ss
+.mas1sa2
+.massa2ch
+.massach2us
+.massachuse4t3t2
+.massachuset4t1s2
+.ma8x9w8e8l8l.
+.maxwel4l
+.mi9c8r8o9s8o8f8t.
+.micro2so
+.microso2ft3
+.mi8n9n8e9a8p9o9l8i8s.
+.m2i4n1n2
+.minne4
+.minneapol2i
+.mi8n9n8e9s8o8t8a.
+.min1nes
+.minne1so
+.minneso1ta
+.mo8s9c8o8w.
+.mos2c
+.mos1co
+.na8c8h9r8i8c8h8t8e8n.
+.1na
+.na2ch
+.nac4hr4
+.na2chr4i2ch
+.nachricht1en
+.na8s8h9v8i8l8l8e.
+.n4as
+.nas2h
+.nash2vil
+.nashvil1l
+.nashvil2le
+.ne8t9b8s8d.
+.ne2t1b
+.net2b5s2
+.netb4s5d
+.ne8t9s8c8a8p8e.
+.ne4t1s2
+.net4sc
+.netsca4p
+.nets1ca
+.ni8j9m8e9g8e8n.
+.ni3j
+.nijme2g
+.nijme1gen
+.no8e9t8h8e8r9i8a8n.
+.3noe
+.noeth2e
+.noether1i
+.noethe1r2i3a4
+.noetheri2a2n
+.no8o8r8d9w8i8j8k8e8r9h8o8u8t.
+.noo2
+.no3ord
+.noord1w
+.noordwi2
+.noordwi3j
+.noordwijk1er
+.noordwijker1h4
+.noordwijkerhou2
+.no9v8e8m9b8e8r.
+.nove4m5b
+.op8e8n9b8s8d.
+.ope4n1b4
+.open2b5s2
+.openb4s5d
+.op8e8n9o8f8f8i8c8e.
+.op4eno
+.openo4f1f
+.openof1fi
+.op8e8n9o8ffi8c8e.
+.pa8l8a9t8i8n8o.
+.pala2t1in
+.palat2i1no
+.pa9l8e8r9m8o.
+.paler3m4
+.paler1mo
+.pe9t8r8o8v9s8k8i.
+.petro3v
+.petrovsk2
+.petrovsk1i
+.pf8a8f8f9i8a8n.
+.4pf
+.p1fa
+.pfa2f
+.pfa4f1f4
+.pfaf1fi
+.pfaff2i3a
+.pfaffi2a2n
+.pf8a8ffi8a8n.
+.pfaffia2n
+.ph8i8l9a9d8e8l9p8h8i8a.
+.phi4l4ade
+.phila2d
+.philade2lp
+.philadel5phi
+.philadelph2i1a
+.ph8i8l9o9s8o8p8h9i9s8c8h8e.
+.philo2so
+.philos4op
+.philos2oph
+.philosoph2is1c
+.philosophis3ch2
+.philosophische2
+.po8i8n9c8a8r8e.
+.poin2
+.poi2
+.poinc2a2r5
+.poin1ca
+.po9t8e8n9t8i8a8l9g8l8e8i9c8h8u8n8g.
+.p4ot
+.po1ten1t
+.potent2i
+.poten1t2i1a
+.potenti2al
+.potentia4l1g4
+.potentialgl2
+.potential1gle
+.potentialglei2
+.potentialgle5ic
+.potentialgle4i2ch
+.ra9d8h8a9k8r8i8s8h9n8a8n.
+.rad1h2
+.radhakr2is
+.radhakr3is2h
+.radhakris2h1n
+.radhakrish1na
+.radhakrishn2a2n
+.ra8t8h8s9k8e8l9l8e8r.
+.r4ath
+.ra2t4h1s2
+.rathsk2
+.rath4ske
+.rathskel1l
+.rathskel2le
+.ri8e9m8a8n8n9i8a8n.
+.r2ie4
+.rie5ma2n
+.rie1ma
+.riema4n1n2
+.rieman3n4i1a
+.riema2nni3a2n
+.ry8d9b8e8r8g.
+.ry1d
+.ryd1b
+.rydberg2
+.sc8h8o8t9t8i8s8c8h8e.
+.scho4t3t2
+.schott2is1c
+.s2ch2ottis3ch2
+.schottische2
+.sc8h8r8o9d8i8n8g9e8r.
+.sc4hr4
+.schrod1in
+.schrod4inge
+.sc8h8w8a9b8a9c8h8e8r.
+.sch1w
+.s2chwaba2ch
+.schwabache2
+.sc8h8w8a8r8z9s8c8h8i8l8d.
+.schw2a2r
+.s2ch2warzs2ch2
+.schwarzsch4il2
+.schwarzschi2ld
+.se8p9t8e8m9b8e8r.
+.se2p1t
+.sep2te
+.septe4m5b
+.st8o8k8e8s9s8c8h8e.
+.st2ok
+.stokes4
+.stok2e2ss
+.stokes2s5c
+.stokess2ch2
+.stokessche2
+.st8u8t8t9g8a8r8t.
+.stu4t3t2
+.stut4t1g
+.stutt1ga
+.stuttg2a2r
+.su8s9q8u8e9h8a8n9n8a.
+.s2us
+.susqu2
+.susque1h4
+.susqueha2n
+.susqueha4n1n2
+.susquehan1na
+.ta8u9b8e8r9i8a8n.
+.tau4b
+.taub4e
+.tau3ber
+.tauber1i
+.taube1r2i3a4
+.tauberi2a2n
+.te8c8h9n8i9s8c8h8e.
+.te2ch
+.tec2h1n
+.techn2is1c
+.te2chnis3ch2
+.technische2
+.te8n9n8e8s9s8e8e.
+.t4e4n1n2
+.tenne4
+.ten1nes
+.tenn2e2ss
+.to9m8a9s8z8e8w9s8k8i.
+.to2ma
+.tomas2ze
+.tomaszewsk2
+.tomaszewsk1i
+.ty9p8o9g8r8a8p8h8i8q8u8e.
+.ty3po
+.ty5po4g
+.typo1gr
+.typogr4aphi
+.typographiqu2
+.uk8r8a8i8n9i8a8n.
+.4uk
+.ukr2ai2
+.ukra4i4n
+.ukra2ini
+.ukrai4n4i1a
+.ukraini3a2n
+.ve8r9a8l8l9g8e9m8e8i8n9e8r8t8e.
+.veral1l
+.veral4l1g4
+.verallge1me
+.verallgemei2
+.verallgeme2ine
+.verallgemein1er
+.ve8r9e8i8n9i9g8u8n8g.
+.vere3in
+.verei2
+.vere2ini
+.verein2ig
+.vereini3gun
+.ve8r9t8e8i9l8u8n9g8e8n.
+.vertei2
+.verteilun1gen
+.vi8i8i8t8h.
+.v4i5i4
+.v4i5i5i4
+.vii2ith
+.vi8i8t8h.
+.vi2ith
+.wa8h8r9s8c8h8e8i8n9l8i8c8h9k8e8i8t8s9t8h8e8o9r8i8e.
+.wa4hr4
+.wah4rs2
+.wahrs4c
+.wahrs2ch2
+.wahrsche2
+.wahrschei2
+.wahrsche4i4n1l
+.wahrs2cheinl4i2ch
+.wahrscheinlic4hk
+.wahrschei2nlichkei2
+.wahrscheinlichkei4t1s2
+.wahrscheinlichkeits3th2e
+.wahrscheinlichkeitsthe1o5r
+.wahrscheinlichkeitstheor2ie4
+.we8r9n8e8r.
+.w1er
+.wer4n1er
+.we8r9t8h8e8r9i8a8n.
+.werth2e
+.werther1i
+.werthe1r2i3a4
+.wertheri2a2n
+.wi8n9c8h8e8s9t8e8r.
+.win2ch
+.winche2
+.winch1es
+.wi8r8t9s8c8h8a8f8t.
+.w4ir4
+.wir4t1s2
+.wirt4sc
+.wirts2ch2
+.wirtscha2f
+.wirtscha2ft
+.wi8s9s8e8n9s8c8h8a8f8t9l8i8c8h.
+.w4i2s1s
+.wissen4
+.wisse2n1s2
+.wissens4c
+.wissens2ch2
+.wissenscha2f
+.wissenscha2ft
+.wissenschaf2tl
+.wissens2chaftl4i2ch
+.xv8i8i8i8t8h.
+.xv4i5i4
+.xv4i5i5i4
+.xvii2ith
+.xv8i8i8t8h.
+.xvi2ith
+.xx8i8i8i8r8d.
+.xx4
+.xx3i
+.xx4i5i4
+.xx4i5i5i4
+.xxii4ir
+.xx8i8i8n8d.
+.xxi4ind
+.yi8n8g9y8o8n8g.
+.y1i
+.yin2gy
+.yingy1o4
+.yingyo2n
+.sh8u9x8u8e.
+.shux1u3
+.ji9s8u8a8n.
+.ji2su
+.jisua2n
+.ze8a9l8a8n8d.
+.2ze
+.zea4l
+.zea3l4and
+.zeala2n
+.ze8i8t9s8c8h8r8i8f8t.
+.zei2
+.zei4t1s2
+.zeit4sc
+.zeits2ch2
+.zeitsc4hr4
+.zeitschr4i2ft
+.affin9i1ty
+.affin2it
+.affin9ity's8
+.affinit8y8'8
+.daffi9est
+.daffie
+.de9fi9ance
+.defi1a
+.defi2a2n
+.defianc
+.de9fi9ance's8
+.defianc8e8'8
+.de9fi9an4t
+.de9fi9ant1ly
+.defian2tl
+.defic8i4t1s2
+.de4fic
+.d5efi1ci
+.defi2c1it
+.de9fil9ing
+.defil4
+.defil1i
+.fi9ancé
+.fi1a
+.fi2a2n
+.fianc
+.fi9ancé's8
+.fiancé8'8
+.fi9ancée
+.fi9ancées
+.fi9ancés
+.fil9i9buster
+.fil1i
+.fil2ib
+.fili5bust
+.filib2us
+.fil9i9buster's8
+.filibuste8r8'8
+.fil9i9bus9te2r2ed
+.filibus5tere
+.fil9i9bus9ter9in4g
+.filibus1ter1i
+.fil9i9buste4r1s2
+.fil9i9gree
+.fil2ig
+.fili5gre
+.fili1gr
+.fil9i9gree's8
+.filigre8e8'8
+.fil9i9greed
+.fil9i9gree9ing
+.filigreei2
+.fil9i9gree2s4
+.fin8der
+.find
+.fin1de
+.fin8der's8
+.finde8r8'8
+.find9e4r5s2
+.fin8n1er
+.fi4n1n2
+.finne4
+.fin8ni4er
+.finn2ie4
+.fin8ni9est
+.fis8ticuff3s
+.fis1t2i
+.fis1tic
+.fist4ic1u
+.fistic4u4ff
+.fluffi9est
+.fluffie
+.fly9lea2f
+.fly
+.flyle2a
+.fly9leaf's8
+.flylea8f8'8
+.fly9leav4e2s
+.flylea2v
+.fly9sheet
+.flys4
+.flys2h
+.fly9speck1
+.flyspe2c
+.fly9speck's8
+.flyspec8k8'8
+.fly9speck2ed
+.fly9speck9in4g
+.flyspeck3i
+.fly9spec4k1s2
+.fly9swat9ter
+.flysw2
+.flyswat5te
+.flyswa4t3t2
+.fly9swat9te4r1s2
+.huffi9est
+.huffie
+.iffi9est
+.iffie
+.puffi9est
+.puffie
+.re9fil9ing
+.re3fi
+.refil4
+.refil1i
+.scruffi9est
+.scruffie
+.spiffi9est
+.spiffie
+.stuffi9est
+.stuffie
+.viewfin8der
+.v2ie4
+.view1fi
+.view2fin
+.viewfind
+.viewfin1de
+.viewfin8der's8
+.viewfinde8r8'8
+.viewfind9e4r5s2
+.affin9ity’s8
+.affinit8y8’8
+.de9fi9ance’s8
+.defianc8e8’8
+.fi9ancé’s8
+.fiancé8’8
+.fil9i9buster’s8
+.filibuste8r8’8
+.fil9i9gree’s8
+.filigre8e8’8
+.fin8der’s8
+.finde8r8’8
+.fly9leaf’s8
+.flylea8f8’8
+.fly9speck’s8
+.flyspec8k8’8
+.viewfin8der’s8
+.viewfinde8r8’8
diff --git a/dictionaries/en/license.txt b/dictionaries/en/license.txt
new file mode 100644
index 0000000..e37680c
--- /dev/null
+++ b/dictionaries/en/license.txt
@@ -0,0 +1,280 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
diff --git a/dictionaries/en/package-description.txt b/dictionaries/en/package-description.txt
new file mode 100755
index 0000000..db84d1b
--- /dev/null
+++ b/dictionaries/en/package-description.txt
@@ -0,0 +1,8 @@
+English dictionaries for LibreOffice 4.0+.
+
+It includes:
+- en_AU (Australian) (updated: 2020-12-07)
+- en_CA (Canadian) (updated: 2020-12-07)
+- en_GB (British) (updated: 2023-11-01)
+- en_US (American) (updated: 2020-12-07)
+- en_ZA (South African) (updated: 2023-02-01)
diff --git a/dictionaries/en/pythonpath/lightproof_en.py b/dictionaries/en/pythonpath/lightproof_en.py
new file mode 100644
index 0000000..05fca1d
--- /dev/null
+++ b/dictionaries/en/pythonpath/lightproof_en.py
@@ -0,0 +1,3 @@
+# -*- encoding: UTF-8 -*-
+dic = [[u'(?u)(?<![-\\w\u2013.,\xad])and and(?![-\\w\u2013\xad])', u'and', u'Did you mean:', False, 0], [u'(?u)(?<![-\\w\u2013.,\xad])or or(?![-\\w\u2013\xad])', u'or', u'Did you mean:', False, 0], [u'(?u)(?<![-\\w\u2013.,\xad])for for(?![-\\w\u2013\xad])', u'for', u'Did you mean:', False, 0], [u'(?u)(?<![-\\w\u2013.,\xad])the the(?![-\\w\u2013\xad])', u'the', u'Did you mean:', False, 0], [u'(?iu)(?<![-\\w\u2013.,\xad])[Yy][Ii][Nn][Gg] [Aa][Nn][Dd] [Yy][Aa][Nn][Gg](?![-\\w\u2013\xad])', u'yin and yang', u'Did you mean:', False, 0], [u'(?iu)(?<![-\\w\u2013.,\xad])[Ss][Cc][Oo][Tt] [Ff][Rr][Ee][Ee](?![-\\w\u2013\xad])', u'scot-free\\nscotfree', u'Did you mean:', False, 0], [u"(?iu)(?<![-\\w\u2013.,\xad])([Yy][Oo][Uu][Rr]|[Hh][Ee][Rr]|[Oo][Uu][Rr]|[Tt][Hh][Ee][Ii][Rr])['\u2019][Ss](?![-\\w\u2013\xad])", u'\\1s', u'Possessive pronoun: \\n http://en.wikipedia.org/wiki/Possessive_pronoun', False, 0], [u'(?u)(?<![-\\w\u2013.,\xad])(?P<a_1>[Aa])n(?P<_>[ ][\'\u2018"\u201c]?)(?P<vow_1>[aeiouAEIOU]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'\\g<a_1>\\g<_>\\g<vow_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'm.group("vow_1") in aA or m.group("vow_1").lower() in aA', 0], [u'(?u)(?<![-\\w\u2013.,\xad])a(?P<_>[ ][\'\u2018"\u201c]?)(?P<vow_1>[aeiouAEIOU]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'an\\g<_>\\g<vow_1>\\g<etc_1>', u'Bad article? \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'(m.group("vow_1") != m.group("vow_1").upper()) and not (m.group("vow_1") in aA or m.group("vow_1").lower() in aA) and spell(LOCALE,m.group("vow_1"))', 0], [u'(?u)(?<![-\\w\u2013.,\xad])a(?P<_>[ ][\'\u2018"\u201c]?)(?P<con_1>[bcdfghj-np-tv-zBCDFGHJ-NP-TV-Z]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'an\\g<_>\\g<con_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'm.group("con_1") in aAN or m.group("con_1").lower() in aAN', 0], [u'(?u)(?<![-\\w\u2013.,\xad])(?P<a_1>[Aa])n(?P<_>[ ][\'\u2018"\u201c]?)(?P<con_1>[bcdfghj-np-tv-zBCDFGHJ-NP-TV-Z]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'\\g<a_1>\\g<_>\\g<con_1>\\g<etc_1>', u'Bad article? \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'(m.group("con_1") != m.group("con_1").upper()) and not (m.group("con_1") in aA or m.group("con_1").lower() in aAN) and not m.group("con_1") in aB and spell(LOCALE,m.group("con_1"))', 0], [u'(?u)((?<=[!?.] )|^)A(?P<_>[ ][\'\u2018"\u201c]?)(?P<vow_1>[aeiouAEIOU]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'An\\g<_>\\g<vow_1>\\g<etc_1>', u'Bad article? \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'(m.group("vow_1") != m.group("vow_1").upper()) and not (m.group("vow_1") in aA or m.group("vow_1").lower() in aA) and spell(LOCALE,m.group("vow_1"))', 0], [u'(?u)((?<=[!?.] )|^)A(?P<_>[ ][\'\u2018"\u201c]?)(?P<con_1>[bcdfghj-np-tv-zBCDFGHJ-NP-TV-Z]\\w*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'An\\g<_>\\g<con_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'm.group("con_1") in aAN or m.group("con_1").lower() in aAN', 0], [u'(?u)(?<![-\\w\u2013.,\xad])a(?P<_>[ ][\'\u2018"\u201c]?)(?P<nvow_1>(8[0-9]*|1[18](000)*)(th)?)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'an\\g<_>\\g<nvow_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', False, 0], [u'(?u)((?<=[!?.] )|^)A(?P<_>[ ][\'\u2018"\u201c]?)(?P<nvow_1>(8[0-9]*|1[18](000)*)(th)?)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'An\\g<_>\\g<nvow_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', False, 0], [u'(?u)(?<![-\\w\u2013.,\xad])(?P<a_1>[Aa])n(?P<_>[ ][\'\u2018"\u201c]?)(?P<ncon_1>[0-79][0-9]*)(?P<etc_1>[-\u2013\'\u2019\\w]*)(?![-\\w\u2013\xad])', u'\\g<a_1>\\g<_>\\g<ncon_1>\\g<etc_1>', u'Did you mean: \\n http://en.wikipedia.org/wiki/English_articles#Distinction_between_a_and_an', u'not m.group("ncon_1")[:2] in ["11", "18"]', 0], [u'(?u)(?<![-\\w\u2013.,\xad])(^)(?P<low_1>[a-z]+)(?![-\\w\u2013\xad])', u'= m.group("low_1").capitalize()', u'Missing capitalization?', u'paralcap.search(TEXT) and not abbrev.search(TEXT)', 0], [u'(?u)((?<=[!?.] )|^)(?P<low_1>[a-z]+)(?![-\\w\u2013\xad])', u'= m.group("low_1").capitalize()', u'Missing capitalization?', u'option(LOCALE,"cap") and not abbrev.search(TEXT)', 0], [u'(?u) ([.?!,:;)\u201d\\]])\\b', u'\\1 ', u'Reversed space and punctuation?', False, 0], [u'(?u) +[.]', u'.', u'Extra space before the period?', u'LOCALE.Country == "US"', 0], [u'(?u) +[.]', u'.', u'Extra space before the full stop?', u'LOCALE.Country != "US"', 0], [u'(?u) +([?!,:;)\u201d\\]])', u'\\1', u'= "Extra space before the " + punct[m.group(1)] + "?"', False, 0], [u'(?u)([([\u201c]) ', u'\\1', u'= "Extra space after the " + punct[m.group(1)] + "?"', False, 0], [u'(?u)\\b(---?| --? )\\b', u' \u2013 \\n\u2014', u'En dash or em dash:', u'not option(LOCALE,"ndash") and not option(LOCALE,"mdash")', 0], [u'(?u)\\b(---?| --? |\u2014)\\b', u' \u2013 ', u'En dash:', u'option(LOCALE,"ndash") and not option(LOCALE,"mdash")', 0], [u'(?u)\\b(---?| --? | \u2013 )\\b', u'\u2014', u'Em dash:', u'option(LOCALE,"mdash")', 0], [u'(?u)(?P<number_1>\\d+([.]\\d+)?)(x| x )(?P<number_2>\\d+([.]\\d+)?)', u'\\g<number_1>\xd7\\g<number_2>', u'Multiplication sign. \\n http://en.wikipedia.org/wiki/Multiplication_sign', u'option(LOCALE,"times")', 0], [u'(?u)(?P<Abc_1>[a-zA-Z]+)(?P<pun_1>[?!,:;%\u2030\u2031\u02da\u201c\u201d\u2018])(?P<Abc_2>[a-zA-Z]+)', u'\\g<Abc_1>\\g<pun_1> \\g<Abc_2>', u'Missing space?', False, 0], [u'(?u)(?P<abc_1>[a-z]+)[.](?P<ABC_1>[A-Z]+)', u'\\g<abc_1>. \\g<ABC_1>', u'Missing space?', False, 0], [u'(?u)[)]', u'', u'Extra closing parenthesis?', u'option(LOCALE,"pair") and not "(" in TEXT', 0], [u'(?u)[(]', u'', u'Extra opening parenthesis?', u'option(LOCALE,"pair") and TEXT[-1] in u"?!;:\u201d\u2019" and not ")" in TEXT', 0], [u'(?u)(?<![0-9])\u201d', u'', u'Extra quotation mark?', u'option(LOCALE,"pair") and not u"\u201c" in TEXT', 0], [u'(?u)(?<=[0-9])\u201d', u'\u2033\\n', u'Bad double prime or extra quotation mark?', u'option(LOCALE,"apostrophe") and not u"\u201c" in TEXT', 0], [u'(?u)\u201c', u'', u'Extra quotation mark?', u'option(LOCALE,"pair") and TEXT[-1] in u"?!;:\u201d\u2019" and not u"\u201d" in TEXT', 0], [u'(?u)[.]{3}', u'\u2026', u'Ellipsis.', u'option(LOCALE,"ellipsis")', 0], [u'(?u)\\b {2,3}(\\b|$)', u'\\1 ', u'Extra space.', u'option(LOCALE,"spaces")', 0], [u'(?u)(^|\\b|(?P<pun_1>[?!,:;%\u2030\u2031\u02da\u201c\u201d\u2018])|[.]) {2,3}(\\b|$)', u'\\1 ', u'Extra space.', u'option(LOCALE,"spaces2")', 0], [u'(?u)(^|\\b|(?P<pun_1>[?!,:;%\u2030\u2031\u02da\u201c\u201d\u2018])|[.]) {4,}(\\b|$)', u'\\1 \\n\t', u'Change multiple spaces to a single space or a tabulator:', u'option(LOCALE,"spaces3")', 0], [u'(?iu)[\\"\u201c\u201d\u201f\u201e]((?P<abc_1>[a-zA-Z]+)[^\\"\u201c\u201d\u201f\u201e]*)[\\"\u201c\u201f]', u'\u201c\\1\u201d', u'Quotation marks.', u'option(LOCALE,"quotation")', 0], [u'(?iu)[\\"\u201d\u201f\u201e]((?P<abc_1>[a-zA-Z]+)[^\\"\u201c\u201d\u201f\u201e]*)[\\"\u201c\u201d\u201f]', u'\u201c\\1\u201d', u'Quotation marks.', u'option(LOCALE,"quotation")', 0], [u"(?iu)'(?P<abc_1>[a-zA-Z]+)'", u'\u2018\\g<abc_1>\u2019', u'Quotation marks.', u'option(LOCALE,"apostrophe")', 0], [u'(?iu)[\\"\u201d\u201f\u201e]((?P<abc_1>[a-zA-Z]+)[^\\"\u201c\u201d\u201f\u201e]*)[\\"\u201c\u201d\u201f]', u'\u201c\\1\u201d', u'Quotation marks.', u'option(LOCALE,"apostrophe")', 0], [u"(?iu)(?P<Abc_1>[a-zA-ZA-Z]+)'(?P<w_1>\\w*)", u'\\g<Abc_1>\u2019\\g<w_1>', u'Replace typewriter apostrophe or quotation mark:', u'option(LOCALE,"apostrophe")', 0], [u"(?u)(?<= )'(?P<Abc_1>[a-zA-Z]+)", u'\u2018\\g<Abc_1>\\n\u2019\\g<Abc_1>', u'Replace typewriter quotation mark or apostrophe:', u'option(LOCALE,"apostrophe")', 0], [u"(?u)^'(?P<Abc_1>[a-zA-Z]+)", u'\u2018\\g<Abc_1>\\n\u2019\\g<Abc_1>', u'Replace typewriter quotation mark or apostrophe:', u'option(LOCALE,"apostrophe")', 0], [u'(?u)\\b(?P<d2_1>\\d\\d)(?P<d_1>\\d\\d\\d)\\b', u'\\g<d2_1>,\\g<d_1>\\n\\g<d2_1>\u202f\\g<d_1>', u'Use thousand separator (common or ISO).', u'option(LOCALE,"numsep")', 0], [u'(?u)\\b(?P<D_1>\\d{1,3})(?P<d_1>\\d\\d\\d)(?P<d_2>\\d\\d\\d)\\b', u'\\g<D_1>,\\g<d_1>,\\g<d_2>\\n\\g<D_1>\u202f\\g<d_1>\u202f\\g<d_2>', u'Use thousand separators (common or ISO).', u'option(LOCALE,"numsep")', 0], [u'(?u)\\b(?P<D_1>\\d{1,3})(?P<d_1>\\d\\d\\d)(?P<d_2>\\d\\d\\d)(?P<d_3>\\d\\d\\d)\\b', u'\\g<D_1>,\\g<d_1>,\\g<d_2>,\\g<d_3>\\n\\g<D_1>\u202f\\g<d_1>\u202f\\g<d_2>\u202f\\g<d_3>', u'Use thousand separators (common or ISO).', u'option(LOCALE,"numsep")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])(?P<Abc_1>[a-zA-Z]+) \\1(?![-\\w\u2013\xad])', u'\\g<Abc_1>', u'Word duplication?', u'option(LOCALE,"dup")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([Tt])his (?P<abc_1>[a-z]+)(?![-\\w\u2013\xad])', u'\\1hese \\g<abc_1>\\n\\1his, \\g<abc_1>', u'Did you mean:', u'option(LOCALE,"grammar") and morph(LOCALE,m.group("abc_1"), "Ns")', 0], [u"(?u)(?<![-\\w\u2013.,\xad])with it['\u2019]s(?![-\\w\u2013\xad])", u'with its\\nwith, it\u2019s', u'Did you mean:', u'option(LOCALE,"grammar")', 0], [u"(?iu)(?<![-\\w\u2013.,\xad])([Ii][Tt]|[Ss]?[Hh][Ee]) [Dd][Oo][Nn]['\u2019][Tt](?![-\\w\u2013\xad])", u'\\1 doesn\u2019t', u'Did you mean:', u'option(LOCALE,"grammar")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) (\xb0F|Fahrenheit)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "F", "C", u" \xb0C", ".", ",")', u'Convert to Celsius:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) (\xb0C|Celsius)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "C", "F", u" \xb0F", ".", ",")', u'Convert to Fahrenheit:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*(?: 1/2| ?\xbd)?) (ft|foot|feet)(?! [1-9])(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "ft", "cm", " cm", ".", ",") + "\\n" + measurement(m.group(1), "ft", "m", " m", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*(?: 1/2| ?\xbd)?) ft[.]? ([0-9]+(?: 1/2| ?\xbd)?) in(?![-\\w\u2013\xad])', u'= measurement(m.group(1) + "*12+" + m.group(2), "in", "cm", " cm", ".", ",") + "\\n" + measurement(m.group(1) + "*12+" + m.group(2), "in", "m", " m", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*(?: 1/2| ?\xbd)?) in(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "in", "mm", " mm", ".", ",") + "\\n" + measurement(m.group(1), "in", "cm", " cm", ".", ",") + "\\n" + measurement(m.group(1), "in", "m", " m", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) mm(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "mm", "in", " in", ".", ",")', u'Convert from metric:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) cm(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "cm", "in", " in", ".", ",") + "\\n" + measurement(m.group(1), "cm", "ft", " ft", ".", ",")', u'Convert from metric:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) (m|meter|metre)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "m", "in", " in", ".", ",") + "\\n" + measurement(m.group(1), "m", "ft", " ft", ".", ",") + "\\n" + measurement(m.group(1), "m", "mi", " mi", ".", ",")', u'Convert from metric:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*(?: 1/2| ?\xbd)?) miles?(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "mi", "m", " m", ".", ",") + "\\n" + measurement(m.group(1), "mi", "km", " km", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) km(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "km", "mi", " mi", ".", ",")', u'Convert to miles:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:,\\d+)?) (yd|yards?)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "yd", "m", " m", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:,\\d+)?) (gal(lons?)?)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "gal", "l", " l", ".", ",") + "\\n" + measurement(m.group(1), "uk_gal", "l", " l (in UK)", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:,\\d+)?) (pint)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "pt", "dl", " dl", ".", ",") + "\\n" + measurement(m.group(1), "uk_pt", "dl", " dl (in UK)", ".", ",") + "\\n" + measurement(m.group(1), "pt", "l", " l", ".", ",") + "\\n" + measurement(m.group(1), "uk_pt", "l", " l (in UK)", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:,\\d+)?) (l|L|litres?|liters?)(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "l", "gal", " gal", ".", ",") + "\\n" + measurement(m.group(1), "l", "gal", " gal (in UK)", ".", ",")', u'Convert to gallons:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) lbs?[.]?(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "lbm", "kg", " kg", ".", ",")', u'Convert to metric:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) kg[.]?(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "kg", "lbm", " lb", ".", ",")', u'Convert to pounds:', u'option(LOCALE,"nonmetric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) mph(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "mph", "km/h", " km/h", ".", ",")', u'Convert to km/hour:', u'option(LOCALE,"metric")', 0], [u'(?u)(?<![-\\w\u2013.,\xad])([-\u2212]?\\d+(?:[,.]\\d+)*) km/h(?![-\\w\u2013\xad])', u'= measurement(m.group(1), "km/h", "mph", " mph", ".", ",")', u'Convert to miles/hour:', u'option(LOCALE,"nonmetric")', 0]]
+
diff --git a/dictionaries/en/pythonpath/lightproof_handler_en.py b/dictionaries/en/pythonpath/lightproof_handler_en.py
new file mode 100644
index 0000000..190abd0
--- /dev/null
+++ b/dictionaries/en/pythonpath/lightproof_handler_en.py
@@ -0,0 +1,119 @@
+import uno
+import unohelper
+import lightproof_opts_en
+from lightproof_impl_en import pkg
+
+from com.sun.star.lang import XServiceInfo
+from com.sun.star.awt import XContainerWindowEventHandler
+
+# options
+options = {}
+
+def load(context):
+ try:
+ l = LightproofOptionsEventHandler(context)
+ for i in lightproof_opts_en.lopts:
+ l.load(i)
+ except:
+ pass
+
+def get_option(page, option):
+ try:
+ return options[page + "," + option]
+ except:
+ try:
+ return options[page[:2] + "," + option]
+ except:
+ return 0
+
+def set_option(page, option, value):
+ options[page + "," + option] = int(value)
+
+class LightproofOptionsEventHandler( unohelper.Base, XServiceInfo, XContainerWindowEventHandler ):
+ def __init__( self, ctx ):
+ p = uno.createUnoStruct( "com.sun.star.beans.PropertyValue" )
+ p.Name = "nodepath"
+ p.Value = "/org.openoffice.Lightproof_%s/Leaves"%pkg
+ self.xConfig = ctx.ServiceManager.createInstance( 'com.sun.star.configuration.ConfigurationProvider' )
+ self.node = self.xConfig.createInstanceWithArguments( 'com.sun.star.configuration.ConfigurationUpdateAccess', (p, ) )
+ self.service = "org.libreoffice.comp.pyuno.LightproofOptionsEventHandler." + pkg
+ self.ImplementationName = self.service
+ self.services = (self.service, )
+
+ # XContainerWindowEventHandler
+ def callHandlerMethod(self, aWindow, aEventObject, sMethod):
+ if sMethod == "external_event":
+ return self.handleExternalEvent(aWindow, aEventObject)
+
+ def getSupportedMethodNames(self):
+ return ("external_event", )
+
+ def handleExternalEvent(self, aWindow, aEventObject):
+ sMethod = aEventObject
+ if sMethod == "ok":
+ self.saveData(aWindow)
+ elif sMethod == "back" or sMethod == "initialize":
+ self.loadData(aWindow)
+ return True
+
+ def load(self, sWindowName):
+ child = self.getChild(sWindowName)
+ for i in lightproof_opts_en.lopts[sWindowName]:
+ sValue = child.getPropertyValue(i)
+ if sValue == '':
+ if i in lightproof_opts_en.lopts_default[sWindowName]:
+ sValue = 1
+ else:
+ sValue = 0
+ set_option(sWindowName, i, sValue)
+
+ def loadData(self, aWindow):
+ sWindowName = self.getWindowName(aWindow)
+ if (sWindowName == None):
+ return
+ child = self.getChild(sWindowName)
+ for i in lightproof_opts_en.lopts[sWindowName]:
+ sValue = child.getPropertyValue(i)
+ if sValue == '':
+ if i in lightproof_opts_en.lopts_default[sWindowName]:
+ sValue = 1
+ else:
+ sValue = 0
+ xControl = aWindow.getControl(i)
+ xControl.State = sValue
+ set_option(sWindowName, i, sValue)
+
+ def saveData(self, aWindow):
+ sWindowName = self.getWindowName(aWindow)
+ if (sWindowName == None):
+ return
+ child = self.getChild(sWindowName)
+ for i in lightproof_opts_en.lopts[sWindowName]:
+ xControl = aWindow.getControl(i)
+ sValue = xControl.State
+ child.setPropertyValue(i, str(sValue))
+ set_option(sWindowName, i, sValue)
+ self.commitChanges()
+
+ def getWindowName(self, aWindow):
+ sName = aWindow.getModel().Name
+ if sName in lightproof_opts_en.lopts:
+ return sName
+ return None
+
+ # XServiceInfo method implementations
+ def getImplementationName (self):
+ return self.ImplementationName
+
+ def supportsService(self, ServiceName):
+ return (ServiceName in self.services)
+
+ def getSupportedServiceNames (self):
+ return self.services
+
+ def getChild(self, name):
+ return self.node.getByName(name)
+
+ def commitChanges(self):
+ self.node.commitChanges()
+ return True
diff --git a/dictionaries/en/pythonpath/lightproof_impl_en.py b/dictionaries/en/pythonpath/lightproof_impl_en.py
new file mode 100644
index 0000000..9f4729b
--- /dev/null
+++ b/dictionaries/en/pythonpath/lightproof_impl_en.py
@@ -0,0 +1,335 @@
+# -*- encoding: UTF-8 -*-
+import uno, re, sys, os, traceback
+from com.sun.star.text.TextMarkupType import PROOFREADING
+from com.sun.star.beans import PropertyValue
+
+pkg = "en"
+lang = "en"
+locales = {'en-GB': ['en', 'GB', ''], 'en-ZW': ['en', 'ZW', ''], 'en-PH': ['en', 'PH', ''], 'en-TT': ['en', 'TT', ''], 'en-BZ': ['en', 'BZ', ''], 'en-NA': ['en', 'NA', ''], 'en-IE': ['en', 'IE', ''], 'en-IL': ['en', 'IL', ''], 'en-GH': ['en', 'GH', ''], 'en-US': ['en', 'US', ''], 'en-IN': ['en', 'IN', ''], 'en-BS': ['en', 'BS', ''], 'en-JM': ['en', 'JM', ''], 'en-AU': ['en', 'AU', ''], 'en-NZ': ['en', 'NZ', ''], 'en-ZA': ['en', 'ZA', ''], 'en-CA': ['en', 'CA', '']}
+version = "0.4.3"
+author = "László Németh"
+name = "Lightproof grammar checker (English)"
+
+import lightproof_handler_en
+
+# loaded rules (check for Update mechanism of the editor)
+try:
+ langrule
+except NameError:
+ langrule = {}
+
+# ignored rules
+ignore = {}
+
+# cache for morphogical analyses
+analyses = {}
+stems = {}
+suggestions = {}
+
+# assign Calc functions
+calcfunc = None
+
+# check settings
+def option(lang, opt):
+ return lightproof_handler_en.get_option(lang.Language + "_" + lang.Country, opt)
+
+# filtering affix fields (ds, is, ts etc.)
+def onlymorph(st):
+ if st != None:
+ st = re.sub(r"^.*(st:|po:)", r"\\1", st) # keep last word part
+ st = re.sub(r"\\b(?=[dit][sp]:)","@", st) # and its affixes
+ st = re.sub(r"(?<!@)\\b\w\w:\w+","", st).replace('@','').strip()
+ return st
+
+# if the pattern matches all analyses of the input word,
+# return the last matched substring
+def _morph(rLoc, word, pattern, all, onlyaffix):
+ global analyses
+ if not word:
+ return None
+ if word not in analyses:
+ x = spellchecker.spell(u"<?xml?><query type='analyze'><word>" + word + "</word></query>", rLoc, ())
+ if not x:
+ return None
+ t = x.getAlternatives()
+ if not t:
+ t = [""]
+ analyses[word] = t[0].split("</a>")[:-1]
+ a = analyses[word]
+ result = None
+ p = re.compile(pattern)
+ for i in a:
+ if onlyaffix:
+ i = onlymorph(i)
+ result = p.search(i)
+ if result:
+ result = result.group(0)
+ if not all:
+ return result
+ elif all:
+ return None
+ return result
+
+def morph(rLoc, word, pattern, all=True):
+ return _morph(rLoc, word, pattern, all, False)
+
+def affix(rLoc, word, pattern, all=True):
+ return _morph(rLoc, word, pattern, all, True)
+
+def spell(rLoc, word):
+ if not word:
+ return None
+ return spellchecker.isValid(word, rLoc, ())
+
+# get the tuple of the stem of the word or an empty array
+def stem(rLoc, word):
+ global stems
+ if not word:
+ return []
+ if not word in stems:
+ x = spellchecker.spell(u"<?xml?><query type='stem'><word>" + word + "</word></query>", rLoc, ())
+ if not x:
+ return []
+ t = x.getAlternatives()
+ if not t:
+ t = []
+ stems[word] = list(t)
+ return stems[word]
+
+# get the tuple of the morphological generation of a word or an empty array
+def generate(rLoc, word, example):
+ if not word:
+ return []
+ x = spellchecker.spell(u"<?xml?><query type='generate'><word>" + word + "</word><word>" + example + "</word></query>", rLoc, ())
+ if not x:
+ return []
+ t = x.getAlternatives()
+ if not t:
+ t = []
+ return list(t)
+
+# get suggestions
+def suggest(rLoc, word):
+ global suggestions
+ if not word:
+ return word
+ if word not in suggestions:
+ x = spellchecker.spell("_" + word, rLoc, ())
+ if not x:
+ return word
+ t = x.getAlternatives()
+ suggestions[word] = "\\n".join(t)
+ return suggestions[word]
+
+# get the nth word of the input string or None
+def word(s, n):
+ a = re.match("(?u)( [-.\\w%%]+){" + str(n-1) + "}( [-.\\w%%]+)", s)
+ if not a:
+ return ''
+ return a.group(2)[1:]
+
+# get the (-)nth word of the input string or None
+def wordmin(s, n):
+ a = re.search("(?u)([-.\\w%%]+ )([-.\\w%%]+ ){" + str(n-1) + "}$", s)
+ if not a:
+ return ''
+ return a.group(1)[:-1]
+
+def calc(funcname, par):
+ global calcfunc
+ global SMGR
+ if calcfunc == None:
+ calcfunc = SMGR.createInstance( "com.sun.star.sheet.FunctionAccess")
+ if calcfunc == None:
+ return None
+ return calcfunc.callFunction(funcname, par)
+
+def proofread( nDocId, TEXT, LOCALE, nStartOfSentencePos, nSuggestedSentenceEndPos, rProperties ):
+ global ignore
+ aErrs = []
+ s = TEXT[nStartOfSentencePos:nSuggestedSentenceEndPos]
+ for i in get_rule(LOCALE).dic:
+ # 0: regex, 1: replacement, 2: message, 3: condition, 4: ngroup, (5: oldline), 6: case sensitive ?
+ if i[0] and not str(i[0]) in ignore:
+ for m in i[0].finditer(s):
+ try:
+ if not i[3] or eval(i[3]):
+ aErr = uno.createUnoStruct( "com.sun.star.linguistic2.SingleProofreadingError" )
+ aErr.nErrorStart = nStartOfSentencePos + m.start(i[4]) # nStartOfSentencePos
+ aErr.nErrorLength = m.end(i[4]) - m.start(i[4])
+ aErr.nErrorType = PROOFREADING
+ aErr.aRuleIdentifier = str(i[0])
+ iscap = (i[-1] and m.group(i[4])[0:1].isupper())
+ if i[1][0:1] == "=":
+ aErr.aSuggestions = tuple(cap(eval(i[1][1:]).replace('|', "\n").split("\n"), iscap, LOCALE))
+ elif i[1] == "_":
+ aErr.aSuggestions = ()
+ else:
+ aErr.aSuggestions = tuple(cap(m.expand(i[1]).replace('|', "\n").split("\n"), iscap, LOCALE))
+ comment = i[2]
+ if comment[0:1] == "=":
+ comment = eval(comment[1:])
+ else:
+ comment = m.expand(comment)
+ aErr.aShortComment = comment.replace('|', '\n').replace('\\n', '\n').split("\n")[0].strip()
+ aErr.aFullComment = comment.replace('|', '\n').replace('\\n', '\n').split("\n")[-1].strip()
+ if "://" in aErr.aFullComment:
+ p = PropertyValue()
+ p.Name = "FullCommentURL"
+ p.Value = aErr.aFullComment
+ aErr.aFullComment = aErr.aShortComment
+ aErr.aProperties = (p,)
+ else:
+ aErr.aProperties = ()
+ aErrs = aErrs + [aErr]
+ except Exception as e:
+ if len(i) == 7:
+ raise Exception(str(e), i[5])
+ raise
+
+ return tuple(aErrs)
+
+def cap(a, iscap, rLoc):
+ if iscap:
+ for i in range(0, len(a)):
+ if a[i][0:1] == "i":
+ if rLoc.Language == "tr" or rLoc.Language == "az":
+ a[i] = u"\u0130" + a[i][1:]
+ elif a[i][1:2] == "j" and rLoc.Language == "nl":
+ a[i] = "IJ" + a[i][2:]
+ else:
+ a[i] = "I" + a[i][1:]
+ else:
+ a[i] = a[i].capitalize()
+ return a
+
+def compile_rules(dic):
+ # compile regular expressions
+ for i in dic:
+ try:
+ if re.compile("[(][?]iu[)]").match(i[0]):
+ i += [True]
+ i[0] = re.sub("[(][?]iu[)]", "(?u)", i[0])
+ else:
+ i += [False]
+ i[0] = re.compile(i[0])
+ except:
+ if 'PYUNO_LOGLEVEL' in os.environ:
+ print("Lightproof: bad regular expression: ", traceback.format_exc())
+ i[0] = None
+
+def get_rule(loc):
+ try:
+ return langrule[pkg]
+ except:
+ langrule[pkg] = __import__("lightproof_" + pkg)
+ compile_rules(langrule[pkg].dic)
+ return langrule[pkg]
+
+def get_path():
+ return os.path.join(os.path.dirname(sys.modules[__name__].__file__), __name__ + ".py")
+
+# [code]
+
+# pattern matching for common English abbreviations
+abbrev = re.compile("(?i)\\b([a-z]|acct|approx|appt|apr|apt|assoc|asst|aug|ave|avg|co(nt|rp)?|ct|dec|defn|dept|dr|eg|equip|esp|est|etc|excl|ext|feb|fri|ft|govt?|hrs?|ib(id)?|ie|in(c|t)?|jan|jr|jul|lit|ln|mar|max|mi(n|sc)?|mon|Mrs?|mun|natl?|neg?|no(rm|s|v)?|nw|obj|oct|org|orig|pl|pos|prev|proj|psi|qty|rd|rec|rel|reqd?|resp|rev|sat|sci|se(p|pt)?|spec(if)?|sq|sr|st|subj|sun|sw|temp|thurs|tot|tues|univ|var|vs)\\.")
+
+# pattern for paragraph checking
+paralcap = re.compile(u"(?u)^[a-z].*[.?!] [A-Z].*[.?!][)\u201d]?$")
+
+
+punct = { "?": "question mark", "!": "exclamation mark",
+ ",": "comma", ":": "colon", ";": "semicolon",
+ "(": "opening parenthesis", ")": "closing parenthesis",
+ "[": "opening square bracket", "]": "closing square bracket",
+ u"\u201c": "opening quotation mark", u"\u201d": "closing quotation mark"}
+
+
+aA = set(["eucalypti", "eucalyptus", "Eucharist", "Eucharistic",
+"euchre", "euchred", "euchring", "Euclid", "euclidean", "Eudora",
+"eugene", "Eugenia", "eugenic", "eugenically", "eugenicist",
+"eugenicists", "eugenics", "Eugenio", "eukaryote", "Eula", "eulogies",
+"eulogist", "eulogists", "eulogistic", "eulogized", "eulogizer",
+"eulogizers", "eulogizing", "eulogy", "eulogies", "Eunice", "eunuch",
+"eunuchs", "Euphemia", "euphemism", "euphemisms", "euphemist",
+"euphemists", "euphemistic", "euphemistically", "euphonious",
+"euphoniously", "euphonium", "euphony", "euphoria", "euphoric",
+"Euphrates", "euphuism", "Eurasia", "Eurasian", "Eurasians", "eureka",
+"eurekas", "eurhythmic", "eurhythmy", "Euridyce", "Euripides", "euripus",
+"Euro", "Eurocentric", "Euroclydon", "Eurocommunism", "Eurocrat",
+"eurodollar", "Eurodollar", "Eurodollars", "Euromarket", "Europa",
+"Europe", "European", "Europeanisation", "Europeanise", "Europeanised",
+"Europeanization", "Europeanize", "Europeanized", "Europeans", "europium",
+"Eurovision", "Eustace", "Eustachian", "Eustacia", "euthanasia",
+"Ewart", "ewe", "Ewell", "ewer", "ewers", "Ewing", "once", "one",
+"oneness", "ones", "oneself", "onetime", "oneway", "oneyear", "u",
+"U", "UART", "ubiquitous", "ubiquity", "Udale", "Udall", "UEFA",
+"Uganda", "Ugandan", "ugric", "UK", "ukase", "Ukraine", "Ukrainian",
+"Ukrainians", "ukulele", "Ula", "ululated", "ululation", "Ulysses",
+"UN", "unanimity", "unanimous", "unanimously", "unary", "Unesco",
+"UNESCO", "UNHCR", "uni", "unicameral", "unicameralism", "Unicef",
+"UNICEF", "unicellular", "Unicode", "unicorn", "unicorns", "unicycle",
+"unicyclist", "unicyclists", "unidimensional", "unidirectional",
+"unidirectionality", "unifiable", "unification", "unified", "unifier",
+"unifilar", "uniform", "uniformally", "uniformed", "uniformer",
+"uniforming", "uniformisation", "uniformise", "uniformitarian",
+"uniformitarianism", "uniformity", "uniformly", "uniformness", "uniforms",
+"unify", "unifying", "unijugate", "unilateral", "unilateralisation",
+"unilateralise", "unilateralism", "unilateralist", "unilaterally",
+"unilinear", "unilingual", "uniliteral", "uniliteralism", "uniliteralist",
+"unimodal", "union", "unionism", "unionist", "unionists", "unionisation",
+"unionise", "unionised", "unionising", "unionization", "unionize",
+"unionized", "unionizing", "unions", "unipolar", "uniprocessor",
+"unique", "uniquely", "uniqueness", "uniquer", "Uniroyal", "unisex",
+"unison", "Unisys", "unit", "Unitarian", "Unitarianism", "Unitarians",
+"unitary", "unite", "united", "unitedly", "uniter", "unites", "uniting",
+"unitize", "unitizing", "unitless", "units", "unity", "univ", "Univac",
+"univalent", "univalve", "univariate", "universal", "universalisation",
+"universalise", "universalised", "universaliser", "universalisers",
+"universalising", "universalism", "universalist", "universalistic",
+"universality", "universalisation", "universalization", "universalize",
+"universalized", "universalizer", "universalizers", "universalizing",
+"universally", "universalness", "universe", "universes", "universities",
+"university", "univocal", "Unix", "uracil", "Urals", "uranium", "Uranus",
+"uranyl", "urate", "urea", "uremia", "uremic", "ureter", "urethane",
+"urethra", "urethral", "urethritis", "Urey", "Uri", "uric", "urinal",
+"urinalysis", "urinary", "urinated", "urinating", "urination", "urine",
+"urogenital", "urokinase", "urologist", "urologists", "urology",
+"Uruguay", "Uruguayan", "Uruguayans", "US", "USA", "usability",
+"usable", "usably", "usage",
+"usages", "use", "used", "useful", "usefulness", "usefully", "useless",
+"uselessly", "uselessness", "Usenet", "user", "users", "uses", "using",
+"usual", "usually", "usurer", "usurers", "usuress", "usurial", "usurious",
+"usurp", "usurpation", "usurped", "usurper", "usurping", "usurps",
+"usury", "Utah", "utensil", "utensils", "uterine", "uterus", "Utica",
+"utilitarian", "utilitarianism", "utilities", "utility", "utilizable",
+"utilization", "utilize", "utilized", "utilizes", "utilizing", "utopia",
+"utopian", "utopians", "utopias", "Utrecht", "Uttoxeter", "uvula",
+"uvular"])
+
+aAN = set(["f", "F", "FBI", "FDA", "heir", "heirdom", "heired",
+"heirer", "heiress", "heiring", "heirloom", "heirship", "honest",
+"honester", "honestly", "honesty", "honor", "honorable", "honorableness",
+"honorably", "honorarium", "honorary", "honored", "honorer", "honorific",
+"honoring", "honors", "honour", "honourable", "honourableness",
+"honourably", "honourarium", "honourary", "honoured", "honourer",
+"honourific", "honouring", "Honours", "hors", "hour", "hourglass", "hourlong",
+"hourly", "hours", "l", "L", "LCD", "m", "M", "MBA", "MP", "mpg", "mph",
+"MRI", "MSc", "MTV", "n", "N", "NBA", "NBC", "NFL", "NGO", "NHL", "r",
+"R", "s", "S", "SMS", "sos", "SOS", "SPF", "std", "STD", "SUV", "x",
+"X", "XML"])
+
+aB = set(["H", "habitual", "hallucination", "haute", "hauteur", "herb", "herbaceous", "herbal",
+"herbalist", "herbalism", "heroic", "hilarious", "historian", "historic", "historical",
+"homage", "homophone", "horrendous", "hospitable", "horrific", "hotel", "hypothesis", "Xmas"])
+
+def measurement(mnum, min, mout, mstr, decimal, remove):
+ if min == "ft" or min == "in" or min == "mi":
+ mnum = mnum.replace(" 1/2", ".5").replace(u" \xbd", ".5").replace(u"\xbd",".5")
+ m = calc("CONVERT", (float(eval(mnum.replace(remove, "").replace(decimal, ".").replace(u"\u2212", "-"))), min, mout))
+ a = list(set([str(calc("ROUND", (m, 0)))[:-2], str(calc("ROUND", (m, 1))), str(calc("ROUND", (m, 2))), str(m)])) # remove duplicated rounded items
+ a.sort(key=lambda x: len(x)) # sort by string length
+ return (mstr + "\n").join(a).replace(".", decimal).replace("-", u"\u2212") + mstr
+
+
+
diff --git a/dictionaries/en/pythonpath/lightproof_opts_en.py b/dictionaries/en/pythonpath/lightproof_opts_en.py
new file mode 100644
index 0000000..aa43156
--- /dev/null
+++ b/dictionaries/en/pythonpath/lightproof_opts_en.py
@@ -0,0 +1,4 @@
+lopts = {}
+lopts_default = {}
+lopts['en'] = [u'grammar', u'cap', u'dup', u'pair', u'spaces', u'mdash', u'quotation', u'times', u'spaces2', u'ndash', u'apostrophe', u'ellipsis', u'spaces3', u'minus', u'metric', u'numsep', u'nonmetric']
+lopts_default['en'] = [u'spaces', u'times']
diff --git a/dictionaries/en/th_en_US_v2.dat b/dictionaries/en/th_en_US_v2.dat
new file mode 100644
index 0000000..035f972
--- /dev/null
+++ b/dictionaries/en/th_en_US_v2.dat
@@ -0,0 +1,349814 @@
+UTF-8
+'s gravenhage|1
+(noun)|The Hague|'s Gravenhage|Den Haag|city (generic term)|metropolis (generic term)|urban center (generic term)
+'tween decks|1
+(adv)|between decks
+.22|1
+(noun)|twenty-two|firearm (generic term)|piece (generic term)|small-arm (generic term)
+.22-calibre|1
+(adj)|.22 caliber|.22-caliber|.22 calibre|diameter|diam (related term)
+.22 caliber|1
+(adj)|.22-caliber|.22 calibre|.22-calibre|diameter|diam (related term)
+.22 calibre|1
+(adj)|.22 caliber|.22-caliber|.22-calibre|diameter|diam (related term)
+.38-caliber|1
+(adj)|.38 caliber|.38 calibre|.38-calibre|diameter|diam (related term)
+.38-calibre|1
+(adj)|.38 caliber|.38-caliber|.38 calibre|diameter|diam (related term)
+.38 caliber|1
+(adj)|.38-caliber|.38 calibre|.38-calibre|diameter|diam (related term)
+.38 calibre|1
+(adj)|.38 caliber|.38-caliber|.38-calibre|diameter|diam (related term)
+.45-caliber|1
+(adj)|.45 caliber|.45 calibre|.45-calibre|diameter|diam (related term)
+.45-calibre|1
+(adj)|.45 caliber|.45-caliber|.45 calibre|diameter|diam (related term)
+.45 caliber|1
+(adj)|.45-caliber|.45 calibre|.45-calibre|diameter|diam (related term)
+.45 calibre|1
+(adj)|.45 caliber|.45-caliber|.45-calibre|diameter|diam (related term)
+0|2
+(adj)|zero|cardinal (similar term)
+(noun)|zero|nought|cipher|cypher|digit (generic term)|figure (generic term)
+1|2
+(adj)|one|i|ane|cardinal (similar term)
+(noun)|one|I|ace|single|unity|digit (generic term)|figure (generic term)
+1-dodecanol|1
+(noun)|lauryl alcohol|alcohol (generic term)
+1-hitter|1
+(noun)|one-hitter|baseball (generic term)|baseball game (generic term)
+10|2
+(adj)|ten|x|cardinal (similar term)
+(noun)|ten|X|tenner|decade|large integer (generic term)
+10-membered|1
+(adj)|ten-membered|membered (similar term)
+100|2
+(adj)|hundred|one hundred|c|cardinal (similar term)
+(noun)|hundred|C|century|one C|centred|large integer (generic term)
+1000|2
+(adj)|thousand|one thousand|m|k|cardinal (similar term)
+(noun)|thousand|one thousand|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+10000|1
+(noun)|ten thousand|myriad|large integer (generic term)
+100000|1
+(noun)|hundred thousand|lakh|large integer (generic term)
+1000000|1
+(noun)|million|one thousand thousand|meg|large integer (generic term)
+1000000000|1
+(noun)|billion|one thousand million|large integer (generic term)
+1000000000000|2
+(noun)|trillion|one million million|large integer (generic term)
+(noun)|billion|one million million|large integer (generic term)
+1000th|1
+(adj)|thousandth|ordinal (similar term)
+100th|1
+(adj)|hundredth|centesimal|ordinal (similar term)
+101|1
+(adj)|hundred and one|one hundred one|ci|cardinal (similar term)
+101st|1
+(adj)|hundred-and-first|ordinal (similar term)
+105|1
+(adj)|one hundred five|cv|cardinal (similar term)
+105th|1
+(adj)|hundred-and-fifth|ordinal (similar term)
+10th|1
+(adj)|tenth|ordinal (similar term)
+11|2
+(adj)|eleven|xi|cardinal (similar term)
+(noun)|eleven|XI|large integer (generic term)
+11-plus|1
+(noun)|eleven-plus|examination (generic term)|testing (generic term)
+110|1
+(adj)|one hundred ten|cx|cardinal (similar term)
+110th|1
+(adj)|hundred-and-tenth|ordinal (similar term)
+115|1
+(adj)|one hundred fifteen|cxv|cardinal (similar term)
+115th|1
+(adj)|hundred-and-fifteenth|ordinal (similar term)
+11 november|1
+(noun)|Martinmas|St Martin's Day|11 November|quarter day (generic term)
+11th|1
+(adj)|eleventh|ordinal (similar term)
+12|2
+(adj)|twelve|xii|dozen|cardinal (similar term)
+(noun)|twelve|XII|dozen|large integer (generic term)
+12-tone music|1
+(noun)|twelve-tone music|twelve-tone system|12-tone system|serialism (generic term)|serial music (generic term)
+12-tone system|1
+(noun)|twelve-tone music|12-tone music|twelve-tone system|serialism (generic term)|serial music (generic term)
+120|2
+(adj)|one hundred twenty|cxx|cardinal (similar term)
+(noun)|long hundred|great hundred|large integer (generic term)
+120th|1
+(adj)|hundred-and-twentieth|ordinal (similar term)
+125|1
+(adj)|one hundred twenty-five|cxxv|cardinal (similar term)
+125th|1
+(adj)|hundred-and-twenty-fifth|ordinal (similar term)
+12th|1
+(adj)|twelfth|ordinal (similar term)
+13|2
+(adj)|thirteen|xiii|cardinal (similar term)
+(noun)|thirteen|XIII|baker's dozen|long dozen|large integer (generic term)
+130|1
+(adj)|one hundred thirty|cxxx|cardinal (similar term)
+130th|1
+(adj)|hundred-and-thirtieth|ordinal (similar term)
+135|1
+(adj)|one hundred thirty-five|cxxxv|cardinal (similar term)
+135th|1
+(adj)|hundred-and-thirty-fifth|ordinal (similar term)
+13th|1
+(adj)|thirteenth|ordinal (similar term)
+14|2
+(adj)|fourteen|xiv|cardinal (similar term)
+(noun)|fourteen|XIV|large integer (generic term)
+140|1
+(adj)|one hundred forty|cxl|cardinal (similar term)
+140th|1
+(adj)|hundred-and-fortieth|ordinal (similar term)
+144|1
+(noun)|gross|large integer (generic term)
+145|1
+(adj)|one hundred forty-five|cxlv|cardinal (similar term)
+145th|1
+(adj)|hundred-and-forty-fifth|ordinal (similar term)
+14 july|1
+(noun)|Bastille Day|14 July|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+14th|1
+(adj)|fourteenth|ordinal (similar term)
+15|2
+(adj)|fifteen|xv|cardinal (similar term)
+(noun)|fifteen|XV|large integer (generic term)
+150|1
+(adj)|one hundred fifty|cl|cardinal (similar term)
+150th|1
+(adj)|hundred-and-fiftieth|ordinal (similar term)
+1530s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+155|1
+(adj)|one hundred fifty-five|clv|cardinal (similar term)
+155th|1
+(adj)|hundred-and-fifty-fifth|ordinal (similar term)
+15 august 1945|1
+(noun)|V-J Day|15 August 1945|V-day (generic term)|Victory Day (generic term)
+15 may organization|1
+(noun)|15 May Organization|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+15 minutes|1
+(noun)|quarter-hour|time unit (generic term)|unit of time (generic term)
+15th|1
+(adj)|fifteenth|ordinal (similar term)
+16|2
+(adj)|sixteen|xvi|cardinal (similar term)
+(noun)|sixteen|XVI|large integer (generic term)
+160|1
+(adj)|one hundred sixty|clx|cardinal (similar term)
+160th|1
+(adj)|hundred-and-sixtieth|ordinal (similar term)
+165|1
+(adj)|one hundred sixty-five|clxv|cardinal (similar term)
+165th|1
+(adj)|hundred-and-sixty-fifth|ordinal (similar term)
+16 pf|1
+(noun)|Sixteen Personality Factor Questionnaire|16 PF|self-report personality inventory (generic term)|self-report inventory (generic term)
+16th|1
+(adj)|sixteenth|ordinal (similar term)
+17|2
+(adj)|seventeen|xvii|cardinal (similar term)
+(noun)|seventeen|XVII|large integer (generic term)
+170|1
+(adj)|one hundred seventy|clxx|cardinal (similar term)
+170th|1
+(adj)|hundred-and-seventieth|ordinal (similar term)
+1728|1
+(noun)|great gross|large integer (generic term)
+175|1
+(adj)|one hundred seventy-five|clxxv|cardinal (similar term)
+1750s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+175th|1
+(adj)|hundred-and-seventy-fifth|ordinal (similar term)
+1760s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1770s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1780s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1790s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+17 november|1
+(noun)|Revolutionary Organization 17 November|17 November|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+17th|1
+(adj)|seventeenth|ordinal (similar term)
+18|2
+(adj)|eighteen|xviii|cardinal (similar term)
+(noun)|eighteen|XVIII|large integer (generic term)
+18-karat gold|1
+(noun)|alloy (generic term)|metal (generic term)
+180|1
+(adj)|one hundred eighty|clxxx|cardinal (similar term)
+180th|1
+(adj)|hundred-and-eightieth|ordinal (similar term)
+1820s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1830s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1840s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1850s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1860s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1870s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+1880s|1
+(noun)|eighties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1890s|1
+(noun)|nineties|decade (generic term)|decennary (generic term)|decennium (generic term)
+18th|1
+(adj)|eighteenth|ordinal (similar term)
+19|2
+(adj)|nineteen|xix|cardinal (similar term)
+(noun)|nineteen|XIX|large integer (generic term)
+190|1
+(adj)|one hundred ninety|xcl|cardinal (similar term)
+1900s|1
+(noun)|decade (generic term)|decennary (generic term)|decennium (generic term)
+190th|1
+(adj)|hundred-and-ninetieth|ordinal (similar term)
+1920s|1
+(noun)|twenties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1930s|1
+(noun)|thirties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1940s|1
+(noun)|forties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1950s|1
+(noun)|fifties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1960s|1
+(noun)|sixties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1970s|1
+(noun)|seventies|decade (generic term)|decennary (generic term)|decennium (generic term)
+1980s|1
+(noun)|eighties|decade (generic term)|decennary (generic term)|decennium (generic term)
+1990s|1
+(noun)|nineties|decade (generic term)|decennary (generic term)|decennium (generic term)
+19th|1
+(adj)|nineteenth|ordinal (similar term)
+1 chronicles|1
+(noun)|I Chronicles|1 Chronicles|book (generic term)
+1 esdras|1
+(noun)|I Esdra|1 Esdras|book (generic term)
+1 kings|1
+(noun)|I Kings|1 Kings|book (generic term)
+1 maccabees|1
+(noun)|I Maccabees|1 Maccabees|book (generic term)
+1 samuel|1
+(noun)|I Samuel|1 Samuel|book (generic term)
+1st|1
+(adj)|first|ordinal (similar term)
+1st-class mail|1
+(noun)|first class|1st class|first-class mail|mail (generic term)
+1st baron beaverbrook|1
+(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher (generic term)|newspaper publisher (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+1st baron verulam|1
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+1st class|1
+(noun)|first class|first-class mail|1st-class mail|mail (generic term)
+1st earl attlee|1
+(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman (generic term)|solon (generic term)|national leader (generic term)
+1st earl baldwin of bewdley|1
+(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman (generic term)|solon (generic term)|national leader (generic term)
+1st earl of balfour|1
+(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman (generic term)|solon (generic term)|national leader (generic term)
+1st viscount montgomery of alamein|1
+(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general (generic term)|full general (generic term)
+2|2
+(adj)|two|ii|cardinal (similar term)
+(noun)|two|II|deuce|digit (generic term)|figure (generic term)
+2-dimensional|1
+(adj)|two-dimensional|flat|multidimensional (similar term)
+2-hitter|1
+(noun)|two-hitter|baseball (generic term)|baseball game (generic term)
+2-hydroxybenzoic acid|1
+(noun)|salicylic acid|hydroxy acid (generic term)
+2-methylpropenoic acid|1
+(noun)|methacrylic acid|acid (generic term)
+20|2
+(adj)|twenty|xx|cardinal (similar term)
+(noun)|twenty|XX|large integer (generic term)
+200|1
+(adj)|two hundred|cc|cardinal (similar term)
+200th|1
+(adj)|two-hundredth|ordinal (similar term)
+20th|1
+(adj)|twentieth|ordinal (similar term)
+21|2
+(adj)|twenty-one|xxi|cardinal (similar term)
+(noun)|twenty-one|XXI|large integer (generic term)
+21st|1
+(adj)|twenty-first|ordinal (similar term)
+22|2
+(adj)|twenty-two|xxii|cardinal (similar term)
+(noun)|twenty-two|XXII|large integer (generic term)
+22-karat gold|1
+(noun)|alloy (generic term)|metal (generic term)
+22nd|1
+(adj)|twenty-second|ordinal (similar term)
+23|2
+(adj)|twenty-three|xxiii|cardinal (similar term)
+(noun)|twenty-three|XXIII|large integer (generic term)
+23rd|1
+(adj)|twenty-third|ordinal (similar term)
+24|2
+(adj)|twenty-four|xxiv|cardinal (similar term)
+(noun)|twenty-four|XXIV|two dozen|large integer (generic term)
+24-hour interval|1
+(noun)|day|twenty-four hours|twenty-four hour period|solar day|mean solar day|time unit (generic term)|unit of time (generic term)
+24-karat gold|1
+(noun)|pure gold|gold (generic term)|Au (generic term)|atomic number 79 (generic term)
+24/7|1
+(noun)|uptime (generic term)
+24th|1
+(adj)|twenty-fourth|ordinal (similar term)
+25|2
+(adj)|twenty-five|xxv|cardinal (similar term)
+(noun)|twenty-five|XXV|large integer (generic term)
+25th|1
+(adj)|twenty-fifth|ordinal (similar term)
+26|2
+(adj)|twenty-six|xxvi|cardinal (similar term)
+(noun)|twenty-six|XXVI|large integer (generic term)
+26th|1
+(adj)|twenty-sixth|ordinal (similar term)
+27|2
+(adj)|twenty-seven|xxvii|cardinal (similar term)
+(noun)|twenty-seven|XXVII|large integer (generic term)
+27th|1
+(adj)|twenty-seventh|ordinal (similar term)
+28|2
+(adj)|twenty-eight|xxviii|cardinal (similar term)
+(noun)|twenty-eight|XXVIII|large integer (generic term)
+28th|1
+(adj)|twenty-eighth|ordinal (similar term)
+29|2
+(adj)|twenty-nine|xxix|cardinal (similar term)
+(noun)|twenty-nine|XXIX|large integer (generic term)
+29th|1
+(adj)|twenty-ninth|ordinal (similar term)
+2 chronicles|1
+(noun)|II Chronicles|2 Chronicles|book (generic term)
+2 esdras|1
+(noun)|II Esdras|2 Esdras|book (generic term)
+2 kings|1
+(noun)|II Kings|2 Kings|book (generic term)
+2 maccabees|1
+(noun)|II Maccabees|2 Maccabees|book (generic term)
+2 samuel|1
+(noun)|II Samuel|2 Samuel|book (generic term)
+2d|1
+(adj)|second|2nd|ordinal (similar term)
+2nd|1
+(adj)|second|2d|ordinal (similar term)
+3|2
+(adj)|three|iii|cardinal (similar term)
+(noun)|three|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+3-d|2
+(noun)|three-D|3-D|3D|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+(noun)|three-D|3-D|3D|appearance (generic term)
+3-dimensional|1
+(adj)|three-dimensional|third-dimensional|three-d|multidimensional (similar term)
+3-hitter|1
+(noun)|three-hitter|baseball (generic term)|baseball game (generic term)
+3-membered|1
+(adj)|three-membered|membered (similar term)
+30|2
+(adj)|thirty|xxx|cardinal (similar term)
+(noun)|thirty|XXX|large integer (generic term)
+300|1
+(adj)|three hundred|ccc|cardinal (similar term)
+300th|1
+(adj)|three-hundredth|ordinal (similar term)
+30 minutes|1
+(noun)|half-hour|time unit (generic term)|unit of time (generic term)
+30th|1
+(adj)|thirtieth|ordinal (similar term)
+31|1
+(adj)|thirty-one|xxxi|cardinal (similar term)
+31st|1
+(adj)|thirty-first|ordinal (similar term)
+32|1
+(adj)|thirty-two|xxxii|cardinal (similar term)
+32nd|1
+(adj)|thirty-second|ordinal (similar term)
+33|1
+(adj)|thirty-three|xxxiii|cardinal (similar term)
+33rd|1
+(adj)|thirty-third|ordinal (similar term)
+34|1
+(adj)|thirty-four|xxxiv|cardinal (similar term)
+34th|1
+(adj)|thirty-fourth|ordinal (similar term)
+35|1
+(adj)|thirty-five|xxxv|cardinal (similar term)
+35th|1
+(adj)|thirty-fifth|ordinal (similar term)
+36|1
+(adj)|thirty-six|xxxvi|cardinal (similar term)
+365 days|1
+(noun)|common year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+366 days|1
+(noun)|leap year|intercalary year|bissextile year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+36th|1
+(adj)|thirty-sixth|ordinal (similar term)
+37|1
+(adj)|thirty-seven|xxxvii|cardinal (similar term)
+37th|1
+(adj)|thirty-seventh|ordinal (similar term)
+38|1
+(adj)|thirty-eight|xxxviii|cardinal (similar term)
+38th|1
+(adj)|thirty-eighth|ordinal (similar term)
+39|1
+(adj)|thirty-nine|ixl|cardinal (similar term)
+39th|1
+(adj)|thirty-ninth|ordinal (similar term)
+3d|2
+(noun)|three-D|3-D|3D|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+(noun)|three-D|3-D|3D|appearance (generic term)
+3d radar|1
+(noun)|three-dimensional radar|radar (generic term)|microwave radar (generic term)|radio detection and ranging (generic term)|radiolocation (generic term)
+3rd|1
+(adj)|third|tertiary|ordinal (similar term)
+3rd october organization|1
+(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+3tc|1
+(noun)|lamivudine|3TC|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+4|2
+(adj)|four|iv|cardinal (similar term)
+(noun)|four|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+4-dimensional|1
+(adj)|four-dimensional|multidimensional (similar term)
+4-hitter|1
+(noun)|four-hitter|baseball (generic term)|baseball game (generic term)
+4-membered|1
+(adj)|four-membered|membered (similar term)
+40|2
+(adj)|forty|xl|twoscore|cardinal (similar term)
+(noun)|forty|XL|large integer (generic term)
+400|1
+(adj)|four hundred|cd|cardinal (similar term)
+400th|1
+(adj)|four-hundredth|ordinal (similar term)
+401-k|1
+(noun)|401-k plan|pension plan (generic term)|pension account (generic term)|retirement plan (generic term)|retirement savings plan (generic term)|retirement savings account (generic term)|retirement account (generic term)|retirement program (generic term)
+401-k plan|1
+(noun)|401-k|pension plan (generic term)|pension account (generic term)|retirement plan (generic term)|retirement savings plan (generic term)|retirement savings account (generic term)|retirement account (generic term)|retirement program (generic term)
+40th|1
+(adj)|fortieth|ordinal (similar term)
+41|1
+(adj)|forty-one|xli|cardinal (similar term)
+41st|1
+(adj)|forty-first|ordinal (similar term)
+42|1
+(adj)|forty-two|xlii|cardinal (similar term)
+42nd|1
+(adj)|forty-second|ordinal (similar term)
+43|1
+(adj)|forty-three|xliii|cardinal (similar term)
+43rd|1
+(adj)|forty-third|ordinal (similar term)
+44|1
+(adj)|forty-four|xliv|cardinal (similar term)
+440 yards|1
+(noun)|quarter mile|linear unit (generic term)
+44th|1
+(adj)|forty-fourth|ordinal (similar term)
+45|1
+(adj)|forty-five|xlv|cardinal (similar term)
+45th|1
+(adj)|forty-fifth|ordinal (similar term)
+46|1
+(adj)|forty-six|xlvi|cardinal (similar term)
+46th|1
+(adj)|forty-sixth|ordinal (similar term)
+47|1
+(adj)|forty-seven|xlvii|cardinal (similar term)
+47th|1
+(adj)|forty-seventh|ordinal (similar term)
+48|1
+(adj)|forty-eight|xlviii|cardinal (similar term)
+48th|1
+(adj)|forty-eighth|ordinal (similar term)
+49|1
+(adj)|forty-nine|il|cardinal (similar term)
+49th|1
+(adj)|forty-ninth|ordinal (similar term)
+4th|1
+(adj)|fourth|quaternary|ordinal (similar term)
+4to|1
+(noun)|quarto|size (generic term)
+4wd|2
+(noun)|four-wheel drive|4WD|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|four-wheel drive|4WD|transmission (generic term)|transmission system (generic term)
+5|2
+(adj)|five|v|cardinal (similar term)
+(noun)|five|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+5-hitter|1
+(noun)|five-hitter|baseball (generic term)|baseball game (generic term)
+5-hydroxy-3-methylglutaryl-coenzyme a reductase|1
+(noun)|HMG-CoA reductase|5-hydroxy-3-methylglutaryl-coenzyme A reductase|reductase (generic term)
+5-hydroxytryptamine|1
+(noun)|serotonin|monoamine neurotransmitter (generic term)
+5-membered|1
+(adj)|five-membered|membered (similar term)
+50|2
+(adj)|fifty|l|cardinal (similar term)
+(noun)|fifty|L|large integer (generic term)
+500|2
+(adj)|five hundred|d|cardinal (similar term)
+(noun)|five hundred|D|large integer (generic term)
+500th|1
+(adj)|five-hundredth|ordinal (similar term)
+50th|1
+(adj)|fiftieth|ordinal (similar term)
+51|1
+(adj)|fifty-one|li|cardinal (similar term)
+52|1
+(adj)|fifty-two|lii|cardinal (similar term)
+53|1
+(adj)|fifty-three|liii|cardinal (similar term)
+54|1
+(adj)|fifty-four|liv|cardinal (similar term)
+55|1
+(adj)|fifty-five|lv|cardinal (similar term)
+55th|1
+(adj)|fifty-fifth|ordinal (similar term)
+56|1
+(adj)|fifty-six|lvi|cardinal (similar term)
+57|1
+(adj)|fifty-seven|lvii|cardinal (similar term)
+58|1
+(adj)|fifty-eight|lviii|cardinal (similar term)
+59|1
+(adj)|fifty-nine|ilx|cardinal (similar term)
+5th|1
+(adj)|fifth|ordinal (similar term)
+6|2
+(adj)|six|vi|half dozen|half-dozen|cardinal (similar term)
+(noun)|six|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+6-membered|1
+(adj)|six-membered|membered (similar term)
+60|2
+(adj)|sixty|lx|threescore|cardinal (similar term)
+(noun)|sixty|LX|large integer (generic term)
+60 minutes|1
+(noun)|hour|hr|time unit (generic term)|unit of time (generic term)
+60th|1
+(adj)|sixtieth|ordinal (similar term)
+61|1
+(adj)|sixty-one|lxi|cardinal (similar term)
+62|1
+(adj)|sixty-two|lxii|cardinal (similar term)
+63|1
+(adj)|sixty-three|lxiii|cardinal (similar term)
+64|1
+(adj)|sixty-four|lxiv|cardinal (similar term)
+64th|1
+(adj)|sixty-fourth|ordinal (similar term)
+65|1
+(adj)|sixty-five|lxv|cardinal (similar term)
+65th|1
+(adj)|sixty-fifth|ordinal (similar term)
+66|1
+(adj)|sixty-six|lxvi|cardinal (similar term)
+67|1
+(adj)|sixty-seven|lxvii|cardinal (similar term)
+68|1
+(adj)|sixty-eight|lxviii|cardinal (similar term)
+69|1
+(adj)|sixty-nine|ilxx|cardinal (similar term)
+6 june 1944|1
+(noun)|D-day|6 June 1944|date (generic term)|day of the month (generic term)
+6th|1
+(adj)|sixth|ordinal (similar term)
+7|2
+(adj)|seven|vii|cardinal (similar term)
+(noun)|seven|VII|sevener|heptad|septet|septenary|digit (generic term)|figure (generic term)
+7-membered|1
+(adj)|seven-membered|membered (similar term)
+70|2
+(adj)|seventy|lxx|cardinal (similar term)
+(noun)|seventy|LXX|large integer (generic term)
+70th|1
+(adj)|seventieth|ordinal (similar term)
+71|1
+(adj)|seventy-one|lxxi|cardinal (similar term)
+72|1
+(adj)|seventy-two|lxxii|cardinal (similar term)
+73|1
+(adj)|seventy-three|lxxiii|cardinal (similar term)
+74|1
+(adj)|seventy-four|lxxiv|cardinal (similar term)
+75|1
+(adj)|seventy-five|lxxv|cardinal (similar term)
+75th|1
+(adj)|seventy-fifth|ordinal (similar term)
+76|1
+(adj)|seventy-six|lxxvi|cardinal (similar term)
+77|1
+(adj)|seventy-seven|lxxvii|cardinal (similar term)
+78|3
+(adj)|seventy-eight|lxxviii|cardinal (similar term)
+(noun)|seventy-eight|LXXVIII|large integer (generic term)
+(noun)|seventy-eight|phonograph record (generic term)|phonograph recording (generic term)|record (generic term)|disk (generic term)|disc (generic term)|platter (generic term)
+79|1
+(adj)|seventy-nine|ilxxx|cardinal (similar term)
+7th|1
+(adj)|seventh|ordinal (similar term)
+8|2
+(adj)|eight|viii|cardinal (similar term)
+(noun)|eight|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+8-membered|1
+(adj)|eight-membered|membered (similar term)
+80|2
+(adj)|eighty|lxxx|fourscore|cardinal (similar term)
+(noun)|eighty|LXXX|fourscore|large integer (generic term)
+80th|1
+(adj)|eightieth|ordinal (similar term)
+81|1
+(adj)|eighty-one|lxxxi|cardinal (similar term)
+82|1
+(adj)|eighty-two|lxxxii|cardinal (similar term)
+83|1
+(adj)|eighty-three|lxxxiii|cardinal (similar term)
+84|1
+(adj)|eighty-four|lxxxiv|cardinal (similar term)
+85|1
+(adj)|eighty-five|lxxxv|cardinal (similar term)
+85th|1
+(adj)|eighty-fifth|ordinal (similar term)
+86|1
+(adj)|eighty-six|lxxxvi|cardinal (similar term)
+87|1
+(adj)|eighty-seven|lxxxvii|cardinal (similar term)
+88|1
+(adj)|eighty-eight|lxxxviii|cardinal (similar term)
+880 yards|1
+(noun)|half mile|linear unit (generic term)
+89|1
+(adj)|eighty-nine|ixc|cardinal (similar term)
+8 may 1945|1
+(noun)|V-E Day|8 May 1945|V-day (generic term)|Victory Day (generic term)
+8th|1
+(adj)|eighth|ordinal (similar term)
+8vo|1
+(noun)|octavo|eightvo|size (generic term)
+9|2
+(adj)|nine|ix|cardinal (similar term)
+(noun)|nine|IX|niner|Nina from Carolina|ennead|digit (generic term)|figure (generic term)
+9-11|1
+(noun)|9/11|September 11|Sept. 11|Sep 11|terrorist attack (generic term)
+9-membered|1
+(adj)|nine-membered|membered (similar term)
+9/11|1
+(noun)|9-11|September 11|Sept. 11|Sep 11|terrorist attack (generic term)
+90|2
+(adj)|ninety|xc|cardinal (similar term)
+(noun)|ninety|XC|large integer (generic term)
+90th|1
+(adj)|ninetieth|ordinal (similar term)
+91|1
+(adj)|ninety-one|xci|cardinal (similar term)
+92|1
+(adj)|ninety-two|xcii|cardinal (similar term)
+93|1
+(adj)|ninety-three|xciii|cardinal (similar term)
+94|1
+(adj)|ninety-four|xciv|cardinal (similar term)
+95|1
+(adj)|ninety-five|xcv|cardinal (similar term)
+95th|1
+(adj)|ninety-fifth|ordinal (similar term)
+96|1
+(adj)|ninety-six|xcvi|cardinal (similar term)
+97|1
+(adj)|ninety-seven|xcvii|cardinal (similar term)
+98|1
+(adj)|ninety-eight|xcviii|cardinal (similar term)
+99|1
+(adj)|ninety-nine|ic|cardinal (similar term)
+9th|1
+(adj)|ninth|ordinal (similar term)
+a|7
+(noun)|angstrom|angstrom unit|A|metric linear unit (generic term)
+(noun)|vitamin A|antiophthalmic factor|axerophthol|A|fat-soluble vitamin (generic term)
+(noun)|deoxyadenosine monophosphate|A|nucleotide (generic term)
+(noun)|adenine|A|purine (generic term)
+(noun)|ampere|amp|A|current unit (generic term)
+(noun)|A|letter a|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|A|type A|group A|blood group (generic term)|blood type (generic term)
+a'man|1
+(noun)|A'man|international intelligence agency (generic term)
+a-bomb|1
+(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon (generic term)|bomb (generic term)
+a-horizon|1
+(noun)|A-horizon|A horizon|soil horizon (generic term)
+a-line|1
+(noun)|A-line|woman's clothing (generic term)
+a-list|1
+(noun)|A-list|list (generic term)|listing (generic term)
+a-ok|1
+(adj)|a-okay|go (similar term)
+a-okay|1
+(adj)|a-ok|go (similar term)
+a-one|1
+(adj)|ace|A-one|crack|fantastic|first-rate|super|tiptop|topnotch|tops|superior (similar term)
+a-team|1
+(noun)|A-team|team (generic term)|squad (generic term)
+a. a. michelson|1
+(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist (generic term)
+a. a. milne|1
+(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer (generic term)|author (generic term)
+a. conan doyle|1
+(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer (generic term)|author (generic term)
+a. e. burnside|1
+(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general (generic term)|full general (generic term)
+a. e. housman|1
+(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet (generic term)
+a. e. kennelly|1
+(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer (generic term)
+a. e. w. mason|1
+(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer (generic term)|author (generic term)
+a. noam chomsky|1
+(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist (generic term)|linguistic scientist (generic term)
+a. testudineus|1
+(noun)|climbing perch|Anabas testudineus|A. testudineus|fish (generic term)
+a.d.|1
+(adv)|AD|A.D.|anno Domini
+a.e.|1
+(noun)|Russell|George William Russell|A.E.|writer (generic term)|author (generic term)
+a.k.a.|1
+(adv)|alias|also known as
+a.m.|2
+(adj)|ante meridiem|antemeridian (similar term)
+(adv)|ante meridiem|A.M.
+a battery|1
+(noun)|A battery|battery (generic term)|electric battery (generic term)
+a bit|1
+(adv)|a little|a trifle
+a capella singing|1
+(noun)|a cappella singing|singing (generic term)|vocalizing (generic term)
+a cappella|1
+(adj)|unaccompanied (similar term)
+a cappella singing|1
+(noun)|a capella singing|singing (generic term)|vocalizing (generic term)
+a couple of|1
+(adj)|a few|few (similar term)
+a few|1
+(adj)|a couple of|few (similar term)
+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|1
+(noun)|A-horizon|A horizon|soil horizon (generic term)
+a hundred times|1
+(adv)|hundredfold
+a kempis|1
+(noun)|a Kempis|Thomas a Kempis|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)
+a la carte|2
+(adj)|table d'hote (antonym)
+(noun)|menu (generic term)|bill of fare (generic term)|card (generic term)|carte du jour (generic term)|carte (generic term)
+a la mode|1
+(adj)|latest|in style|in vogue|modish|fashionable (similar term)|stylish (similar term)
+a level|1
+(noun)|A level|grade (generic term)|level (generic term)|tier (generic term)
+a little|1
+(adv)|a bit|a trifle
+a lot|1
+(adv)|a good deal|a great deal|much|very much
+a million times|1
+(adv)|millionfold
+a posteriori|3
+(adj)|inductive (related term)|synthetic (related term)|synthetical (related term)|a priori (antonym)
+(adj)|empirical (similar term)|empiric (similar term)
+(adv)|a priori (antonym)
+a priori|3
+(adj)|analytic (related term)|analytical (related term)|deductive (related term)|a posteriori (antonym)
+(adj)|theoretical (similar term)|theoretic (similar term)
+(adv)|a posteriori (antonym)
+a trifle|1
+(adv)|a bit|a little
+aa|3
+(noun)|lava (generic term)
+(noun)|Alcoholics Anonymous|AA|nongovernmental organization (generic term)|NGO (generic term)
+(noun)|Associate in Arts|AA|associate degree (generic term)|associate (generic term)
+aaa|1
+(noun)|abdominal aortic aneurysm|AAA|aortic aneurysm (generic term)
+aachen|1
+(noun)|Aachen|Aken|Aix-la-Chapelle|city (generic term)|metropolis (generic term)|urban center (generic term)
+aaland islands|1
+(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago (generic term)
+aalborg|1
+(noun)|Aalborg|Alborg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+aalii|1
+(noun)|tree (generic term)
+aalost|1
+(noun)|Alost|Aalost|town (generic term)
+aalto|1
+(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect (generic term)|designer (generic term)
+aar|1
+(noun)|Aare|Aar|Aare River|river (generic term)
+aardvark|1
+(noun)|ant bear|anteater|Orycteropus afer|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+aardwolf|1
+(noun)|Proteles cristata|hyena (generic term)|hyaena (generic term)
+aare|1
+(noun)|Aare|Aar|Aare River|river (generic term)
+aare river|1
+(noun)|Aare|Aar|Aare River|river (generic term)
+aarhus|1
+(noun)|Arhus|Aarhus|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+aaron|2
+(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer (generic term)|baseball player (generic term)
+(noun)|Aaron|priest (generic term)
+aaron's rod|1
+(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+aaron burr|1
+(noun)|Burr|Aaron Burr|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+aaron copland|1
+(noun)|Copland|Aaron Copland|composer (generic term)
+aaron montgomery ward|1
+(noun)|Ward|Montgomery Ward|Aaron Montgomery Ward|businessman (generic term)|man of affairs (generic term)
+aarp|1
+(noun)|Association for the Advancement of Retired Persons|AARP|association (generic term)
+aas|1
+(noun)|Associate in Applied Science|AAS|associate degree (generic term)|associate (generic term)
+ab|4
+(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree (generic term)|baccalaureate (generic term)
+(noun)|Ab|Av|Jewish calendar month (generic term)
+(noun)|abdominal|abdominal muscle|skeletal muscle (generic term)|striated muscle (generic term)
+(noun)|AB|type AB|group AB|blood group (generic term)|blood type (generic term)
+ab initio|1
+(adv)|initially|at first|at the start
+aba|2
+(noun)|overgarment (generic term)|outer garment (generic term)
+(noun)|aba cloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+aba cloth|1
+(noun)|aba|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+aba transit number|1
+(noun)|bank identification number|BIN|ABA transit number|number (generic term)|identification number (generic term)
+abaca|2
+(noun)|Manila hemp|Manilla hemp|hemp (generic term)
+(noun)|Manila hemp|Musa textilis|banana (generic term)|banana tree (generic term)
+abacinate|1
+(verb)|blind (generic term)
+abactinal|1
+(adj)|actinal (antonym)
+abacus|2
+(noun)|tablet (generic term)
+(noun)|calculator (generic term)|calculating machine (generic term)
+abadan|1
+(noun)|Abadan|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+abaft|1
+(adv)|aft|astern|fore (antonym)
+abalone|1
+(noun)|ear-shell|gastropod (generic term)|univalve (generic term)
+abamp|1
+(noun)|abampere|current unit (generic term)
+abampere|1
+(noun)|abamp|current unit (generic term)
+abandon|6
+(noun)|wantonness|unconstraint|unrestraint (generic term)
+(noun)|wildness|passion (generic term)|passionateness (generic term)
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|give up
+(verb)|vacate|empty|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|forsake|desolate|desert|leave (generic term)
+abandoned|2
+(adj)|derelict|uninhabited (similar term)
+(adj)|uninhibited (similar term)
+abandoned infant|1
+(noun)|foundling|baby (generic term)|babe (generic term)|infant (generic term)
+abandoned person|1
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+abandoned ship|1
+(noun)|derelict|ship (generic term)
+abandonment|3
+(noun)|forsaking|desertion|rejection (generic term)
+(noun)|desertion|defection|withdrawal (generic term)
+(noun)|disposal (generic term)|disposition (generic term)
+abarticulation|1
+(noun)|dislocation (generic term)
+abase|1
+(verb)|humiliate|mortify|chagrin|humble|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+abasement|2
+(noun)|degradation|abjection|humiliation (generic term)
+(noun)|humiliation|degradation (generic term)|debasement (generic term)
+abash|1
+(verb)|embarrass|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+abashed|1
+(adj)|chagrined|embarrassed|discomposed (similar term)
+abashment|1
+(noun)|bashfulness|embarrassment (generic term)
+abasia|1
+(noun)|disability of walking (generic term)
+abasia trepidans|1
+(noun)|abasia (generic term)
+abasic|1
+(adj)|abatic|disability of walking (related term)
+abatable|1
+(adj)|stoppable (similar term)
+abatable nuisance|1
+(noun)|nuisance (generic term)
+abate|2
+(verb)|slake|slack|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|let up|slack off|slack|die away|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+abatement|2
+(noun)|suspension|respite|reprieve|hiatus|interruption (generic term)|break (generic term)
+(noun)|moderation (generic term)|mitigation (generic term)
+abatement of a nuisance|1
+(noun)|nuisance abatement|abatement (generic term)
+abatic|1
+(adj)|abasic|disability of walking (related term)
+abatis|1
+(noun)|abattis|line of defense (generic term)|line of defence (generic term)
+abator|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+abattis|1
+(noun)|abatis|line of defense (generic term)|line of defence (generic term)
+abattoir|1
+(noun)|butchery|shambles|slaughterhouse|building (generic term)|edifice (generic term)
+abaxial|1
+(adj)|dorsal|adaxial (antonym)
+abaxially|1
+(adv)|adaxially (antonym)
+abaya|1
+(noun)|robe (generic term)
+abb|1
+(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+abbacy|1
+(noun)|jurisdiction (generic term)
+abbatial|1
+(adj)|monastery (related term)
+abbe|1
+(noun)|abbot (generic term)|archimandrite (generic term)
+abbe condenser|1
+(noun)|Abbe condenser|condenser (generic term)|optical condenser (generic term)
+abbess|1
+(noun)|mother superior|prioress|superior (generic term)
+abbey|3
+(noun)|church (generic term)|church building (generic term)
+(noun)|convent (generic term)
+(noun)|monastery (generic term)
+abbot|1
+(noun)|archimandrite|superior (generic term)
+abbott lawrence lowell|1
+(noun)|Lowell|Abbott Lawrence Lowell|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+abbreviate|2
+(verb)|reduce (generic term)
+(verb)|abridge|foreshorten|shorten|cut|contract|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+abbreviated|2
+(adj)|brief|short (similar term)
+(adj)|shortened|truncated|short (similar term)
+abbreviation|2
+(noun)|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(noun)|shortening (generic term)
+abbreviator|1
+(noun)|abridger|redact (generic term)|redactor (generic term)|reviser (generic term)|rewriter (generic term)|rewrite man (generic term)
+abc|1
+(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+abc's|1
+(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+abcoulomb|1
+(noun)|charge unit (generic term)|quantity unit (generic term)
+abcs|1
+(noun)|rudiment|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+abdias|2
+(noun)|Obadiah|Abdias|prophet (generic term)
+(noun)|Obadiah|Abdias|Book of Obadiah|book (generic term)
+abdicable|1
+(adj)|unwanted (similar term)
+abdicate|1
+(verb)|renounce|vacate (generic term)|resign (generic term)|renounce (generic term)|give up (generic term)
+abdication|1
+(noun)|stepping down|resignation (generic term)
+abdicator|1
+(noun)|quitter (generic term)
+abdomen|2
+(noun)|venter|stomach|belly|body part (generic term)
+(noun)|abdominal cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+abdominal|2
+(adj)|body part (related term)
+(noun)|abdominal muscle|ab|skeletal muscle (generic term)|striated muscle (generic term)
+abdominal actinomycosis|1
+(noun)|actinomycosis (generic term)
+abdominal aorta|1
+(noun)|aorta (generic term)
+abdominal aortic aneurysm|1
+(noun)|AAA|aortic aneurysm (generic term)
+abdominal breathing|1
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+abdominal cavity|1
+(noun)|abdomen|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+abdominal delivery|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|delivery (generic term)|obstetrical delivery (generic term)
+abdominal external oblique muscle|1
+(noun)|external oblique muscle|musculus obliquus externus abdominis|oblique|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+abdominal muscle|1
+(noun)|abdominal|ab|skeletal muscle (generic term)|striated muscle (generic term)
+abdominal nerve plexus|1
+(noun)|solar plexus|coeliac plexus|plexus celiacus|nerve plexus (generic term)
+abdominal pregnancy|1
+(noun)|ectopic pregnancy (generic term)|extrauterine pregnancy (generic term)|ectopic gestation (generic term)|extrauterine gestation (generic term)|eccyesis (generic term)|metacyesis (generic term)
+abdominal wall|1
+(noun)|wall (generic term)|paries (generic term)
+abdominocentesis|1
+(noun)|paracentesis|centesis (generic term)
+abdominoplasty|1
+(noun)|tummy tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+abdominous|1
+(adj)|paunchy|potbellied|fat (similar term)
+abdominousness|1
+(noun)|paunchiness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+abdominovesical|1
+(adj)|body part (related term)|bladder|vesica (related term)
+abduce|1
+(verb)|adduce|cite|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+abducens|1
+(noun)|abducent|abducent nerve|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve (generic term)
+abducens muscle|1
+(noun)|lateral rectus muscle|lateral rectus|rectus lateralis|ocular muscle (generic term)|eye muscle (generic term)
+abducens nerve|1
+(noun)|abducent|abducent nerve|abducens|nervus abducens|sixth cranial nerve|cranial nerve (generic term)
+abducent|2
+(adj)|abducting|adducent (antonym)
+(noun)|abducent nerve|abducens|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve (generic term)
+abducent nerve|1
+(noun)|abducent|abducens|abducens nerve|nervus abducens|sixth cranial nerve|cranial nerve (generic term)
+abduct|2
+(verb)|kidnap|nobble|snatch|seize (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)|adduct (antonym)
+abducted|1
+(adj)|kidnapped|kidnaped
+abducting|1
+(adj)|abducent|adducent (antonym)
+abduction|2
+(noun)|capture (generic term)|seizure (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+abductor|2
+(noun)|kidnapper|kidnaper|snatcher|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|captor (generic term)|capturer (generic term)
+(noun)|abductor muscle|skeletal muscle (generic term)|striated muscle (generic term)
+abductor muscle|1
+(noun)|abductor|skeletal muscle (generic term)|striated muscle (generic term)
+abecedarian|3
+(adj)|alphabetic (similar term)|alphabetical (similar term)
+(noun)|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|Abecedarian|sect (generic term)|religious sect (generic term)|religious order (generic term)
+abecedarius|1
+(noun)|poem (generic term)|verse form (generic term)
+abel|2
+(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician (generic term)
+(noun)|Abel|man (generic term)|adult male (generic term)
+abel janszoon tasman|1
+(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator (generic term)
+abel tasman|1
+(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator (generic term)
+abelard|1
+(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+abele|1
+(noun)|white poplar|white aspen|aspen poplar|silver-leaved poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+abelia|1
+(noun)|shrub (generic term)|bush (generic term)
+abelian group|1
+(noun)|Abelian group|commutative group|group (generic term)|mathematical group (generic term)
+abelmoschus|1
+(noun)|Abelmoschus|genus Abelmoschus|dilleniid dicot genus (generic term)
+abelmoschus esculentus|1
+(noun)|okra|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+abelmoschus moschatus|1
+(noun)|abelmosk|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow (generic term)
+abelmosk|1
+(noun)|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow (generic term)
+aberdare|1
+(noun)|Aberdare|town (generic term)
+aberdeen|3
+(noun)|Aberdeen|town (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|Aberdeen|town (generic term)
+(noun)|Aberdeen|city (generic term)|metropolis (generic term)|urban center (generic term)
+aberdeen angus|1
+(noun)|Aberdeen Angus|Angus|black Angus|beef (generic term)|beef cattle (generic term)
+aberdonian|1
+(adj)|Aberdonian|city|metropolis|urban center (related term)
+aberrance|1
+(noun)|aberrancy|aberration|deviance|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+aberrancy|1
+(noun)|aberrance|aberration|deviance|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+aberrant|2
+(adj)|deviant|deviate|abnormal (similar term)
+(noun)|anomaly (generic term)|unusual person (generic term)
+aberrate|1
+(verb)|deviate (generic term)|vary (generic term)|diverge (generic term)|depart (generic term)
+aberration|3
+(noun)|aberrance|aberrancy|deviance|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+(noun)|distortion|optical aberration|optical phenomenon (generic term)
+abet|1
+(verb)|assist (generic term)
+abetalipoproteinemia|1
+(noun)|hypobetalipoproteinemia (generic term)|lipidosis (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+abetment|1
+(noun)|abettal|instigation|encouragement (generic term)
+abettal|1
+(noun)|abetment|instigation|encouragement (generic term)
+abetter|1
+(noun)|abettor|accessory (generic term)|accessary (generic term)
+abettor|1
+(noun)|abetter|accessory (generic term)|accessary (generic term)
+abeyance|1
+(noun)|suspension|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+abeyant|1
+(adj)|suspended|delayed (similar term)
+abfarad|1
+(noun)|capacitance unit (generic term)
+abhenry|1
+(noun)|inductance unit (generic term)
+abhor|1
+(verb)|loathe|abominate|execrate|hate (generic term)|detest (generic term)
+abhorrence|1
+(noun)|abomination|detestation|execration|loathing|odium|hate (generic term)|hatred (generic term)|disgust (generic term)
+abhorrent|1
+(adj)|detestable|obscene|repugnant|repulsive|offensive (similar term)
+abhorrer|1
+(noun)|signer (generic term)|signatory (generic term)
+abidance|3
+(noun)|conformity|conformation|compliance|cooperation (generic term)|noncompliance (antonym)|nonconformity (antonym)
+(noun)|residency|residence|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|continuance (generic term)|continuation (generic term)
+abide|2
+(verb)|bide|stay|stay (generic term)|stay on (generic term)|continue (generic term)|remain (generic term)
+(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+abide by|2
+(verb)|comply|follow|obey (generic term)
+(verb)|respect|honor|honour|observe|accept (generic term)|disrespect (antonym)
+abiding|1
+(adj)|enduring|imperishable|permanent (similar term)|lasting (similar term)
+abidjan|1
+(noun)|Abidjan|city (generic term)|metropolis (generic term)|urban center (generic term)
+abience|1
+(noun)|urge (generic term)|impulse (generic term)|adience (antonym)
+abient|1
+(adj)|urge|impulse (related term)|adient (antonym)
+abies|1
+(noun)|Abies|genus Abies|gymnosperm genus (generic term)
+abies alba|1
+(noun)|European silver fir|Christmas tree|Abies alba|silver fir (generic term)
+abies amabilis|1
+(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+abies balsamea|1
+(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir (generic term)
+abies bracteata|1
+(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir (generic term)|fir tree (generic term)|true fir (generic term)
+abies concolor|1
+(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir (generic term)
+abies fraseri|1
+(noun)|Fraser fir|Abies fraseri|silver fir (generic term)
+abies grandis|1
+(noun)|lowland fir|lowland white fir|giant fir|grand fir|Abies grandis|silver fir (generic term)
+abies lasiocarpa|1
+(noun)|Alpine fir|subalpine fir|Abies lasiocarpa|silver fir (generic term)
+abies lowiana|1
+(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir (generic term)
+abies venusta|1
+(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir (generic term)|fir tree (generic term)|true fir (generic term)
+abila|1
+(noun)|Jebel Musa|Abila|Abyla|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+abilene|2
+(noun)|Abilene|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Abilene|town (generic term)
+ability|2
+(noun)|quality (generic term)|inability (antonym)
+(noun)|power|cognition (generic term)|knowledge (generic term)|noesis (generic term)|inability (antonym)
+abiogenesis|1
+(noun)|autogenesis|autogeny|spontaneous generation|organic phenomenon (generic term)
+abiogenetic|1
+(adj)|organic phenomenon (related term)
+abiogenist|1
+(noun)|believer (generic term)|truster (generic term)
+abiotrophy|1
+(noun)|degeneration (generic term)|retrogression (generic term)
+abject|4
+(adj)|low|low-down|miserable|scummy|scurvy|contemptible (similar term)
+(adj)|unfortunate (similar term)
+(adj)|resigned|unhopeful|hopeless (similar term)
+(adj)|submissive (similar term)
+abjection|1
+(noun)|abasement|degradation|humiliation (generic term)
+abjectly|1
+(adv)|resignedly
+abjuration|1
+(noun)|retraction|recantation|disavowal (generic term)|disclaimer (generic term)
+abjure|1
+(verb)|recant|forswear|retract|resile|renounce (generic term)|repudiate (generic term)
+abjurer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+abkhas|1
+(noun)|Abkhaz|Abkhas|Circassian (generic term)
+abkhasian|1
+(noun)|Abkhazian|Abkhasian|Circassian (generic term)
+abkhaz|2
+(noun)|Abkhaz|Abkhas|Circassian (generic term)
+(noun)|Abkhaz|Abkhazia|state (generic term)|province (generic term)
+abkhazia|1
+(noun)|Abkhaz|Abkhazia|state (generic term)|province (generic term)
+abkhazian|1
+(noun)|Abkhazian|Abkhasian|Circassian (generic term)
+ablactate|1
+(verb)|wean|deprive (generic term)
+ablactation|2
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|weaning|substitution (generic term)|exchange (generic term)|commutation (generic term)
+ablate|2
+(verb)|wear (generic term)|wear off (generic term)|wear out (generic term)|wear down (generic term)|wear thin (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+ablated|1
+(adj)|decreased (similar term)|reduced (similar term)
+ablation|2
+(noun)|extirpation|cutting out|excision|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+ablative|3
+(adj)|oblique|oblique case (related term)
+(adj)|subtractive (similar term)
+(noun)|ablative case|oblique (generic term)|oblique case (generic term)
+ablative absolute|1
+(noun)|constituent (generic term)|grammatical constituent (generic term)
+ablative case|1
+(noun)|ablative|oblique (generic term)|oblique case (generic term)
+ablaut|1
+(noun)|vowel (generic term)|vowel sound (generic term)
+ablaze|4
+(adj)|aflame|aroused|passionate (similar term)
+(adj)|afire|aflame|aflare|alight|blazing|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+(adj)|flaming|colorful (similar term)|colourful (similar term)
+(adj)|inflamed|reddened|light (similar term)
+able|4
+(adj)|unable (antonym)
+(adj)|capable|competent (similar term)
+(adj)|capable (similar term)
+(adj)|able-bodied|fit (similar term)|healthy (similar term)
+able-bodied|1
+(adj)|able|fit (similar term)|healthy (similar term)
+able-bodied seaman|1
+(noun)|able seaman|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+able-bodiedism|1
+(noun)|ableism|ablism|able-bodism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+able-bodism|1
+(noun)|ableism|ablism|able-bodiedism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+able seaman|1
+(noun)|able-bodied seaman|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+ableism|1
+(noun)|ablism|able-bodiedism|able-bodism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+ablepharia|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+ablism|1
+(noun)|ableism|able-bodiedism|able-bodism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+abloom|1
+(adj)|efflorescent|mature (similar term)
+abls|1
+(noun)|Bachelor of Arts in Library Science|ABLS|bachelor's degree (generic term)|baccalaureate (generic term)
+ablution|1
+(noun)|ritual (generic term)|wash (generic term)|washing (generic term)|lavation (generic term)
+ablutionary|1
+(adj)|cleansing|purifying (similar term)
+ably|1
+(adv)|competently|aptly|capably|with competence|incompetently (antonym)
+abm|1
+(noun)|antiballistic missile|ABM|guided missile (generic term)
+abnaki|2
+(noun)|Abnaki|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Abnaki|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+abnegate|3
+(verb)|deny|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|surrender (generic term)|relinquish (generic term)
+(verb)|deny (generic term)
+abnegation|2
+(noun)|denial (generic term)
+(noun)|self-abnegation|denial|self-denial|self-renunciation|selflessness (generic term)|self-sacrifice (generic term)|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+abnegator|1
+(noun)|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+abney level|1
+(noun)|Abney level|surveyor's level (generic term)
+abnormal|3
+(adj)|aberrant (similar term)|deviant (similar term)|deviate (similar term)|anomalous (similar term)|antidromic (similar term)|atypical (similar term)|irregular (similar term)|brachydactylic (similar term)|brachydactylous (similar term)|defective (similar term)|freakish (similar term)|kinky (similar term)|perverted (similar term)|subnormal (similar term)|supernormal (similar term)|vicarious (similar term)|insane (related term)|normal (antonym)
+(adj)|exceptional (similar term)|normal (antonym)
+(adj)|immoderate (similar term)
+abnormal condition|1
+(noun)|abnormality|abnormalcy|condition (generic term)|status (generic term)|normality (antonym)
+abnormal psychology|1
+(noun)|psychopathology|psychology (generic term)|psychological science (generic term)
+abnormalcy|1
+(noun)|abnormality|abnormal condition|condition (generic term)|status (generic term)|normality (antonym)
+abnormality|4
+(noun)|abnormalcy|abnormal condition|condition (generic term)|status (generic term)|normality (antonym)
+(noun)|mental defectiveness|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+(noun)|freakishness|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|irregularity|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+abo|1
+(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian (generic term)|Aussie (generic term)|ethnic group (generic term)|ethnos (generic term)
+abo antibodies|1
+(noun)|ABO antibodies|antibody (generic term)
+abo blood group system|1
+(noun)|ABO blood group system|ABO system|ABO group|classification system (generic term)
+abo group|1
+(noun)|ABO blood group system|ABO system|ABO group|classification system (generic term)
+abo system|1
+(noun)|ABO blood group system|ABO system|ABO group|classification system (generic term)
+aboard|3
+(adv)|onboard
+(adv)|on base
+(adv)|alongside
+abocclusion|1
+(noun)|disorder (generic term)|upset (generic term)
+abode|2
+(noun)|residence|address (generic term)
+(noun)|dwelling|home|domicile|habitation|dwelling house|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+abohm|1
+(noun)|resistance unit (generic term)
+abolish|1
+(verb)|get rid of|establish (antonym)
+abolishable|1
+(adj)|destructible (similar term)
+abolishment|1
+(noun)|abolition|termination (generic term)|ending (generic term)|conclusion (generic term)
+abolition|1
+(noun)|abolishment|termination (generic term)|ending (generic term)|conclusion (generic term)
+abolitionary|1
+(adj)|termination|ending|conclusion (related term)
+abolitionism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+abolitionist|1
+(noun)|emancipationist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+abomasal|1
+(adj)|stomach|tummy|tum|breadbasket (related term)
+abomasum|1
+(noun)|fourth stomach|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+abominable|2
+(adj)|detestable|execrable|odious|hateful (similar term)
+(adj)|atrocious|awful|dreadful|painful|terrible|unspeakable|bad (similar term)
+abominable snowman|1
+(noun)|yeti|legendary creature (generic term)
+abominably|2
+(adv)|detestably|repulsively|odiously
+(adv)|terribly|atrociously|awfully|abysmally|rottenly
+abominate|1
+(verb)|abhor|loathe|execrate|hate (generic term)|detest (generic term)
+abomination|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|abhorrence|detestation|execration|loathing|odium|hate (generic term)|hatred (generic term)|disgust (generic term)
+(noun)|transgression (generic term)|evildoing (generic term)
+abominator|1
+(noun)|loather|hater (generic term)
+abor|1
+(noun)|Miri|Mirish|Abor|Dafla|Kamarupan (generic term)
+aborad|1
+(adv)|orad (antonym)
+aboral|1
+(adj)|oral (antonym)
+aboriginal|4
+(adj)|Aboriginal|Australian|Aussie|ethnic group|ethnos (related term)
+(adj)|native|nonnative (antonym)
+(adj)|primal|primeval|primaeval|primordial|early (similar term)
+(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian (generic term)|Aussie (generic term)|ethnic group (generic term)|ethnos (generic term)
+aboriginal australian|1
+(noun)|Australian|Aboriginal Australian|Austronesian (generic term)|Austronesian language (generic term)
+aborigine|2
+(noun)|autochthon|primitive (generic term)|primitive person (generic term)
+(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian (generic term)|Aussie (generic term)|ethnic group (generic term)|ethnos (generic term)
+abort|4
+(noun)|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|end (generic term)|terminate (generic term)
+(verb)|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+(verb)|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+aborticide|2
+(noun)|abortifacient|abortion-inducing drug|drug (generic term)
+(noun)|feticide|induced abortion (generic term)
+abortifacient|2
+(adj)|causative (similar term)
+(noun)|aborticide|abortion-inducing drug|drug (generic term)
+abortion|2
+(noun)|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|miscarriage|failure (generic term)
+abortion-inducing drug|1
+(noun)|abortifacient|aborticide|drug (generic term)
+abortion pill|1
+(noun)|mifepristone|RU 486|abortifacient (generic term)|aborticide (generic term)|abortion-inducing drug (generic term)
+abortionist|1
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+abortive|1
+(adj)|stillborn|unsuccessful|unfruitful (similar term)
+abortus|1
+(noun)|fetus (generic term)|foetus (generic term)
+aboulia|1
+(noun)|abulia|psychological state (generic term)|mental state (generic term)
+aboulic|1
+(adj)|abulic|neurotic (similar term)|psychoneurotic (similar term)
+abound|2
+(verb)|be (generic term)|abound in (related term)
+(verb)|burst|bristle|have (generic term)|feature (generic term)
+abound in|1
+(verb)|teem in|pullulate with|occur (generic term)
+abounding|1
+(adj)|galore|abundant (similar term)
+about|4
+(adj)|astir|active (similar term)
+(adv)|approximately|close to|just about|some|roughly|more or less|around|or so
+(adv)|around
+(adv)|just about|almost|most|all but|nearly|near|nigh|virtually|well-nigh
+about-face|4
+(noun)|about turn|reversion (generic term)|reverse (generic term)|reversal (generic term)|turnabout (generic term)|turnaround (generic term)
+(noun)|volte-face|reversal|policy change|change (generic term)
+(verb)|turn (generic term)
+(verb)|rethink (generic term)
+about turn|1
+(noun)|about-face|reversion (generic term)|reverse (generic term)|reversal (generic term)|turnabout (generic term)|turnaround (generic term)
+above|4
+(adj)|preceding (similar term)
+(noun)|section (generic term)|subdivision (generic term)
+(adv)|supra|below (antonym)
+(adv)|higher up|in a higher place|to a higher place|below (antonym)
+above-mentioned|1
+(adj)|above-named|preceding (similar term)
+above-named|1
+(adj)|above-mentioned|preceding (similar term)
+above all|2
+(adv)|most importantly|most especially
+(adv)|first and last
+aboveboard|2
+(adj)|straightforward|straight (similar term)|square (similar term)
+(adv)|honestly|dishonestly (antonym)
+aboveground|1
+(adj)|surface (similar term)
+abracadabra|1
+(noun)|gibberish (generic term)|gibber (generic term)
+abrachia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+abradant|2
+(noun)|abrasive|abrasive material|material (generic term)|stuff (generic term)
+(noun)|abrader|tool (generic term)
+abrade|2
+(verb)|corrade|abrase|rub down|rub off|wear away (generic term)|wear off (generic term)
+(verb)|scour|rub (generic term)
+abrader|1
+(noun)|abradant|tool (generic term)
+abrading stone|1
+(noun)|abrader (generic term)|abradant (generic term)
+abraham|1
+(noun)|Abraham|Ibrahim|patriarch (generic term)
+abraham's bosom|1
+(noun)|Abraham's bosom|bosom of Abraham|Heaven (generic term)
+abraham lincoln|1
+(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer (generic term)|attorney (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+abraham stoker|1
+(noun)|Stoker|Bram Stoker|Abraham Stoker|writer (generic term)|author (generic term)
+abramis|1
+(noun)|Abramis|genus Abramis|fish genus (generic term)
+abramis brama|1
+(noun)|European bream|Abramis brama|freshwater bream (generic term)|bream (generic term)
+abranchial|1
+(adj)|abranchiate|abranchious|gill-less|branchiate (antonym)
+abranchiate|1
+(adj)|abranchial|abranchious|gill-less|branchiate (antonym)
+abranchious|1
+(adj)|abranchiate|abranchial|gill-less|branchiate (antonym)
+abrase|1
+(verb)|abrade|corrade|rub down|rub off|wear away (generic term)|wear off (generic term)
+abrasion|3
+(noun)|scratch|scrape|excoriation|wound (generic term)|lesion (generic term)
+(noun)|attrition|corrasion|detrition|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+(noun)|grinding|attrition|detrition|friction (generic term)|rubbing (generic term)
+abrasive|3
+(adj)|scratchy|rough (similar term)|unsmooth (similar term)
+(adj)|harsh|disagreeable (similar term)
+(noun)|abradant|abrasive material|material (generic term)|stuff (generic term)
+abrasive material|1
+(noun)|abrasive|abradant|material (generic term)|stuff (generic term)
+abrasiveness|2
+(noun)|harshness|scratchiness|roughness (generic term)|raggedness (generic term)
+(noun)|disagreeableness (generic term)
+abreact|1
+(verb)|still (generic term)|allay (generic term)|relieve (generic term)|ease (generic term)
+abreaction|1
+(noun)|catharsis|katharsis|purge (generic term)|purging (generic term)
+abreast|1
+(adj)|au courant|au fait|up on|informed (similar term)
+abridge|2
+(verb)|foreshorten|abbreviate|shorten|cut|contract|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+(verb)|restrict (generic term)|curtail (generic term)|curb (generic term)|cut back (generic term)
+abridged|1
+(adj)|cut (similar term)|shortened (similar term)|half-length (similar term)|potted (similar term)|short (related term)|unabridged (antonym)
+abridgement|1
+(noun)|condensation|abridgment|capsule|summary (generic term)|sum-up (generic term)
+abridger|1
+(noun)|abbreviator|redact (generic term)|redactor (generic term)|reviser (generic term)|rewriter (generic term)|rewrite man (generic term)
+abridgment|1
+(noun)|condensation|abridgement|capsule|summary (generic term)|sum-up (generic term)
+abroach|1
+(adj)|broached|tapped (similar term)
+abroad|3
+(adj)|overseas|foreign (similar term)
+(adv)|afield
+(adv)|overseas|beyond the sea|over the sea
+abrocoma|1
+(noun)|Abrocoma|genus Abrocoma|mammal genus (generic term)
+abrocome|1
+(noun)|chinchilla rat|rat chinchilla|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+abrogate|1
+(verb)|abolish (generic term)|get rid of (generic term)
+abrogation|1
+(noun)|repeal|annulment|cancellation (generic term)
+abrogator|1
+(noun)|authority (generic term)
+abronia|1
+(noun)|Abronia|genus Abronia|caryophylloid dicot genus (generic term)
+abronia elliptica|1
+(noun)|snowball|sweet sand verbena|Abronia elliptica|sand verbena (generic term)
+abronia fragrans|1
+(noun)|sweet sand verbena|Abronia fragrans|sand verbena (generic term)
+abronia latifolia|1
+(noun)|yellow sand verbena|Abronia latifolia|sand verbena (generic term)
+abronia maritima|1
+(noun)|beach pancake|Abronia maritima|sand verbena (generic term)
+abronia umbellata|1
+(noun)|beach sand verbena|pink sand verbena|Abronia umbellata|sand verbena (generic term)
+abronia villosa|1
+(noun)|desert sand verbena|Abronia villosa|sand verbena (generic term)
+abrupt|4
+(adj)|disconnected|staccato (similar term)|disconnected (similar term)
+(adj)|sudden (similar term)
+(adj)|precipitous|sharp|steep (similar term)
+(adj)|discourteous (similar term)
+abruptio placentae|1
+(noun)|disorder (generic term)|upset (generic term)
+abruption|1
+(noun)|breaking off|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+abruptly|1
+(adv)|suddenly|short|dead
+abruptly-pinnate|1
+(adj)|even-pinnate|paripinnate|compound (similar term)
+abruptly-pinnate leaf|1
+(noun)|even-pinnate leaf|pinnate leaf (generic term)
+abruptness|3
+(noun)|brusqueness|curtness|gruffness|shortness|discourtesy (generic term)|rudeness (generic term)
+(noun)|precipitousness|steepness|gradient (generic term)|slope (generic term)|gradualness (antonym)
+(noun)|precipitateness|precipitousness|precipitance|precipitancy|suddenness|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+abruzzi|1
+(noun)|Abruzzi|Abruzzi e Molise|Italian region (generic term)
+abruzzi e molise|1
+(noun)|Abruzzi|Abruzzi e Molise|Italian region (generic term)
+abs|1
+(noun)|acrylonitrile-butadiene-styrene|ABS|plastic (generic term)
+abscess|1
+(noun)|symptom (generic term)
+abscessed|1
+(adj)|septic (similar term)|infected (similar term)
+abscessed tooth|1
+(noun)|abscess (generic term)
+abscise|2
+(verb)|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+(verb)|cut off (generic term)|chop off (generic term)|lop off (generic term)
+abscissa|1
+(noun)|Cartesian coordinate (generic term)
+abscission|2
+(noun)|shedding (generic term)|sloughing (generic term)
+(noun)|cutting off|removal (generic term)|remotion (generic term)
+abscond|1
+(verb)|bolt|absquatulate|decamp|run off|go off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+absconder|1
+(noun)|fugitive (generic term)|fugitive from justice (generic term)
+abscondment|1
+(noun)|decampment|desertion (generic term)|abandonment (generic term)|defection (generic term)
+abseil|2
+(noun)|descent (generic term)
+(verb)|rappel|rope down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+abseiler|1
+(noun)|descender (generic term)
+absence|4
+(noun)|lack (generic term)|deficiency (generic term)|want (generic term)|presence (antonym)
+(noun)|nonattendance (generic term)|presence (antonym)
+(noun)|time interval (generic term)|interval (generic term)
+(noun)|petit mal epilepsy|epilepsy (generic term)
+absence without leave|1
+(noun)|unauthorized absence|desertion (generic term)|abandonment (generic term)|defection (generic term)
+absent|3
+(adj)|away (similar term)|gone (similar term)|departed (similar term)|devoid (similar term)|introuvable (similar term)|lacking (similar term)|missing (similar term)|nonexistent (similar term)|wanting (similar term)|truant (similar term)|awol (similar term)|present (antonym)
+(adj)|absentminded|abstracted|scatty|inattentive (similar term)
+(verb)|remove|disappear (generic term)|vanish (generic term)|go away (generic term)
+absentee|1
+(noun)|traveler (generic term)|traveller (generic term)
+absentee ballot|1
+(noun)|ballot (generic term)
+absentee rate|1
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+absenteeism|1
+(noun)|absence (generic term)
+absently|1
+(adv)|abstractedly|inattentively|absentmindedly
+absentminded|1
+(adj)|absent|abstracted|scatty|inattentive (similar term)
+absentmindedly|1
+(adv)|absently|abstractedly|inattentively
+absentmindedness|1
+(noun)|preoccupation (generic term)|preoccupancy (generic term)|absorption (generic term)|engrossment (generic term)
+absinth|1
+(noun)|absinthe|liqueur (generic term)|cordial (generic term)
+absinthe|2
+(noun)|common wormwood|old man|lad's love|Artemisia absinthium|wormwood (generic term)
+(noun)|absinth|liqueur (generic term)|cordial (generic term)
+absinthe oil|1
+(noun)|wormwood oil|essential oil (generic term)|volatile oil (generic term)
+absolute|7
+(adj)|dead (similar term)|utter (similar term)|direct (similar term)|implicit (similar term)|unquestioning (similar term)|independent (similar term)|infinite (similar term)|living (similar term)|relative (antonym)
+(adj)|downright|out-and-out|rank|right-down|sheer|complete (similar term)
+(adj)|arbitrary (similar term)
+(adj)|conclusive|unequivocal (similar term)|univocal (similar term)|unambiguous (similar term)
+(adj)|total|unconditioned|unconditional (similar term)
+(adj)|infrangible|inviolable|inalienable (similar term)|unalienable (similar term)
+(noun)|abstraction (generic term)|abstract (generic term)
+absolute alcohol|1
+(noun)|ethyl alcohol (generic term)|ethanol (generic term)|fermentation alcohol (generic term)|grain alcohol (generic term)
+absolute ceiling|1
+(noun)|ceiling (generic term)
+absolute frequency|1
+(noun)|frequency|cardinal number (generic term)|cardinal (generic term)
+absolute magnitude|1
+(noun)|magnitude (generic term)
+absolute majority|1
+(noun)|majority|relative quantity (generic term)
+absolute pitch|1
+(noun)|perfect pitch|hearing (generic term)|audition (generic term)|auditory sense (generic term)|sense of hearing (generic term)|auditory modality (generic term)
+absolute scale|1
+(noun)|Kelvin scale|temperature scale (generic term)
+absolute space|1
+(noun)|space (generic term)|infinite (generic term)
+absolute temperature|1
+(noun)|temperature (generic term)
+absolute threshold|1
+(noun)|threshold (generic term)|limen (generic term)
+absolute value|1
+(noun)|definite quantity (generic term)
+absolute viscosity|1
+(noun)|coefficient of viscosity|dynamic viscosity|coefficient (generic term)
+absolute zero|1
+(noun)|temperature (generic term)
+absolutely|1
+(adv)|perfectly|utterly|dead
+absoluteness|2
+(noun)|starkness|utterness|limit (generic term)|bound (generic term)|boundary (generic term)
+(noun)|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)
+absolution|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|remission|remittal|remission of sin|redemption (generic term)|salvation (generic term)
+absolutism|4
+(noun)|tyranny|despotism|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|dictatorship|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+(noun)|totalitarianism|totalism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+absolutist|2
+(adj)|absolutistic|political orientation|ideology|political theory (related term)
+(noun)|disciple (generic term)|adherent (generic term)
+absolutistic|1
+(adj)|absolutist|political orientation|ideology|political theory (related term)
+absolve|2
+(verb)|forgive (generic term)
+(verb)|justify|free|forgive (generic term)|blame (antonym)
+absolved|1
+(adj)|clear|cleared|exculpated|exonerated|vindicated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+absolver|1
+(noun)|pardoner (generic term)
+absolvitory|1
+(adj)|exonerative|forgiving|exculpatory (similar term)
+absorb|9
+(verb)|sorb (generic term)|take up (generic term)
+(verb)|assimilate|ingest|take in|learn (generic term)|larn (generic term)|acquire (generic term)
+(verb)|take over|fund (generic term)
+(verb)|suck|imbibe|soak up|sop up|suck up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|take in|emit (antonym)
+(verb)|steep|immerse|engulf|plunge|engross|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|receive (generic term)|take in (generic term)|invite (generic term)
+(verb)|engross|engage|occupy|interest (generic term)
+absorbable|1
+(adj)|absorbed (similar term)|adsorbable (antonym)
+absorbate|1
+(noun)|sorbate (generic term)
+absorbed|3
+(adj)|captive|engrossed|enwrapped|intent|wrapped|attentive (similar term)
+(adj)|unreflected (similar term)
+(adj)|absorbable (similar term)
+absorbefacient|1
+(adj)|sorbefacient|absorbent (similar term)|absorptive (similar term)
+absorbency|1
+(noun)|permeability (generic term)|permeableness (generic term)|nonabsorbency (antonym)
+absorbent|2
+(adj)|absorptive|absorbefacient (similar term)|sorbefacient (similar term)|assimilating (similar term)|assimilative (similar term)|assimilatory (similar term)|hygroscopic (similar term)|receptive (similar term)|shock-absorbent (similar term)|spongy (similar term)|spongelike (similar term)|thirsty (similar term)|nonabsorbent (antonym)
+(noun)|absorbent material|sorbent (generic term)|sorbent material (generic term)
+absorbent cotton|1
+(noun)|cotton (generic term)|cotton fiber (generic term)|cotton wool (generic term)|absorbent material (generic term)|absorbent (generic term)
+absorbent material|1
+(noun)|absorbent|sorbent (generic term)|sorbent material (generic term)
+absorber|1
+(noun)|absorbent material (generic term)|absorbent (generic term)
+absorbing|1
+(adj)|engrossing|fascinating|gripping|riveting|interesting (similar term)
+absorptance|1
+(noun)|absorption coefficient|coefficient of absorption|coefficient (generic term)
+absorption|6
+(noun)|soaking up|sorption (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|assimilation|social process (generic term)
+(noun)|assimilation|organic process (generic term)|biological process (generic term)
+(noun)|concentration|engrossment|immersion|attention (generic term)
+(noun)|preoccupation|preoccupancy|engrossment|cognitive state (generic term)|state of mind (generic term)
+absorption band|1
+(noun)|optical phenomenon (generic term)
+absorption coefficient|1
+(noun)|coefficient of absorption|absorptance|coefficient (generic term)
+absorption factor|1
+(noun)|absorptivity|physical property (generic term)
+absorption indicator|1
+(noun)|indicator (generic term)
+absorption spectrum|1
+(noun)|spectrum (generic term)
+absorption unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+absorptive|1
+(adj)|absorbent|absorbefacient (similar term)|sorbefacient (similar term)|assimilating (similar term)|assimilative (similar term)|assimilatory (similar term)|hygroscopic (similar term)|receptive (similar term)|shock-absorbent (similar term)|spongy (similar term)|spongelike (similar term)|thirsty (similar term)|nonabsorbent (antonym)
+absorptivity|1
+(noun)|absorption factor|physical property (generic term)
+absquatulate|1
+(verb)|abscond|bolt|decamp|run off|go off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+abstain|2
+(verb)|refrain (generic term)|forbear (generic term)
+(verb)|refrain|desist|consume (antonym)
+abstainer|2
+(noun)|ascetic|religious person (generic term)
+(noun)|abstinent|nondrinker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|drinker (antonym)
+abstemious|2
+(adj)|abstinent (similar term)|abstentious (similar term)|ascetic (similar term)|ascetical (similar term)|austere (similar term)|spartan (similar term)|nonindulgent (related term)|strict (related term)|gluttonous (antonym)
+(adj)|light|temperate (similar term)
+abstemiously|1
+(adv)|temperately
+abstemiousness|2
+(noun)|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+(noun)|temperance (generic term)|moderation (generic term)
+abstention|1
+(noun)|abstinence|self-discipline (generic term)|self-denial (generic term)
+abstentious|1
+(adj)|abstinent|abstemious (similar term)
+abstinence|2
+(noun)|abstention|self-discipline (generic term)|self-denial (generic term)
+(noun)|self-denial (generic term)|self-discipline (generic term)|self-control (generic term)
+abstinent|2
+(adj)|abstentious|abstemious (similar term)
+(noun)|abstainer|nondrinker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|drinker (antonym)
+abstract|9
+(adj)|conceptional (similar term)|ideational (similar term)|notional (similar term)|conceptual (similar term)|ideal (similar term)|intangible (related term)|impalpable (related term)|nonrepresentational (related term)|concrete (antonym)
+(adj)|abstractionist|nonfigurative|nonobjective|nonrepresentational (similar term)
+(adj)|theoretical (similar term)
+(noun)|abstraction|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|outline|synopsis|precis|summary (generic term)|sum-up (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|pilfer|cabbage|purloin|pinch|snarf|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+(verb)|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+(verb)|sum up (generic term)|summarize (generic term)|summarise (generic term)|resume (generic term)
+abstract art|1
+(noun)|abstractionism|genre (generic term)
+abstract artist|1
+(noun)|abstractionist|painter (generic term)
+abstract entity|1
+(noun)|entity (generic term)
+abstract expressionism|1
+(noun)|Abstract Expressionism|action painting|artistic movement (generic term)|art movement (generic term)
+abstract thought|1
+(noun)|reasoning|logical thinking|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+abstracted|2
+(adj)|removed|separate (similar term)
+(adj)|absent|absentminded|scatty|inattentive (similar term)
+abstractedly|1
+(adv)|absently|inattentively|absentmindedly
+abstractedness|1
+(noun)|abstraction|preoccupation (generic term)|preoccupancy (generic term)|absorption (generic term)|engrossment (generic term)
+abstracter|1
+(noun)|abstractor|writer (generic term)|author (generic term)
+abstraction|6
+(noun)|abstract|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|removal (generic term)|remotion (generic term)
+(noun)|generalization|generalisation|theorization (generic term)|theorisation (generic term)
+(noun)|painting (generic term)|picture (generic term)
+(noun)|abstractedness|preoccupation (generic term)|preoccupancy (generic term)|absorption (generic term)|engrossment (generic term)
+(noun)|abstract entity (generic term)
+abstractionism|2
+(noun)|abstract art|genre (generic term)
+(noun)|unrealism|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+abstractionist|2
+(adj)|abstract|nonfigurative|nonobjective|nonrepresentational (similar term)
+(noun)|abstract artist|painter (generic term)
+abstractive|1
+(adj)|theoretical (similar term)|theoretic (similar term)
+abstractly|1
+(adv)|concretely (antonym)
+abstractness|1
+(noun)|immateriality (generic term)|incorporeality (generic term)|concreteness (antonym)
+abstractor|1
+(noun)|abstracter|writer (generic term)|author (generic term)
+abstruse|1
+(adj)|deep|recondite|esoteric (similar term)
+abstruseness|2
+(noun)|obscureness|obscurity|reconditeness|incomprehensibility (generic term)|clarity (antonym)
+(noun)|reconditeness|abstrusity|profoundness|profundity|wisdom (generic term)
+abstrusity|1
+(noun)|reconditeness|abstruseness|profoundness|profundity|wisdom (generic term)
+absurd|3
+(adj)|illogical (similar term)|unlogical (similar term)
+(adj)|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish (similar term)
+(noun)|the absurd|situation (generic term)|state of affairs (generic term)
+absurdity|2
+(noun)|absurdness|ridiculousness|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|fatuity|fatuousness|silliness|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+absurdness|1
+(noun)|absurdity|ridiculousness|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+abu ali al-husain ibn abdallah ibn sina|1
+(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+abu dhabi|1
+(noun)|Abu Dhabi|United Arab Emirates's capital|national capital (generic term)
+abu hafs al-masri brigades|1
+(noun)|Abu Hafs al-Masri Brigades|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+abu sayyaf|1
+(noun)|Abu Sayyaf|Bearer of the Sword|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+abudefduf|1
+(noun)|Abudefduf|genus Abudefduf|fish genus (generic term)
+abudefduf saxatilis|1
+(noun)|sergeant major|Abudefduf saxatilis|damselfish (generic term)|demoiselle (generic term)
+abuja|1
+(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital (generic term)
+abukir|1
+(noun)|Abukir|Abukir Bay|bay (generic term)|embayment (generic term)
+abukir bay|1
+(noun)|Abukir|Abukir Bay|bay (generic term)|embayment (generic term)
+abul-walid mohammed ibn-ahmad ibn-mohammed ibn-roshd|1
+(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher (generic term)|lawyer (generic term)|attorney (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+abulia|1
+(noun)|aboulia|psychological state (generic term)|mental state (generic term)
+abulic|1
+(adj)|aboulic|neurotic (similar term)|psychoneurotic (similar term)
+abundance|2
+(noun)|copiousness|teemingness|quantity (generic term)|scarcity (antonym)
+(noun)|ratio (generic term)
+abundant|1
+(adj)|abounding (similar term)|galore (similar term)|ample (similar term)|copious (similar term)|plenteous (similar term)|plentiful (similar term)|rich (similar term)|bumper (similar term)|copious (similar term)|voluminous (similar term)|easy (similar term)|exuberant (similar term)|lush (similar term)|luxuriant (similar term)|profuse (similar term)|riotous (similar term)|thick (similar term)|long (similar term)|overabundant (similar term)|plethoric (similar term)|rife (similar term)|plentiful (similar term)|rampant (similar term)|rank (similar term)|superabundant (similar term)|teeming (similar term)|torrential (similar term)|verdant (similar term)|well endowed (similar term)|ample (related term)|rich (related term)|scarce (antonym)
+abundantly|1
+(adv)|copiously|profusely|extravagantly
+abuse|7
+(noun)|maltreatment|ill-treatment|ill-usage|mistreatment (generic term)
+(noun)|insult|revilement|contumely|vilification|disrespect (generic term)|discourtesy (generic term)
+(noun)|misuse|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(verb)|mistreat|maltreat|ill-use|step|ill-treat|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|pervert|misuse|use (generic term)|expend (generic term)
+(verb)|clapperclaw|blackguard|shout|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+(verb)|use (generic term)|expend (generic term)
+abused|2
+(adj)|misused (similar term)
+(adj)|ill-treated|maltreated|mistreated|battered (similar term)|unabused (antonym)
+abuser|1
+(noun)|maltreater|wrongdoer (generic term)|offender (generic term)
+abusive|2
+(adj)|insulting|opprobrious|scurrilous|offensive (similar term)
+(adj)|harmful (similar term)
+abut|1
+(verb)|border|adjoin|edge|march|butt|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+abutilon|1
+(noun)|Abutilon|genus Abutilon|dilleniid dicot genus (generic term)
+abutilon theophrasti|1
+(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+abutment|2
+(noun)|point (generic term)
+(noun)|support (generic term)
+abutment arch|1
+(noun)|arch (generic term)
+abutter|1
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+abutting|1
+(adj)|adjacent|adjoining|conterminous|contiguous|neighboring|connected (similar term)
+abuzz|1
+(adj)|buzzing|droning|noisy (similar term)
+abvolt|1
+(noun)|potential unit (generic term)
+abwatt|1
+(noun)|power unit (generic term)
+aby|1
+(verb)|expiate|abye|atone|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+aby moritz warburg|1
+(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian (generic term)
+aby warburg|1
+(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian (generic term)
+abydos|1
+(noun)|Abydos|town (generic term)
+abye|1
+(verb)|expiate|aby|atone|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+abyla|1
+(noun)|Jebel Musa|Abila|Abyla|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+abysm|1
+(noun)|abyss|chasm (generic term)
+abysmal|2
+(adj)|immeasurable (similar term)|unmeasurable (similar term)|immensurable (similar term)
+(adj)|abyssal|unfathomable|deep (similar term)
+abysmally|1
+(adv)|terribly|atrociously|awfully|abominably|rottenly
+abyss|1
+(noun)|abysm|chasm (generic term)
+abyssal|2
+(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones (related term)
+(adj)|abysmal|unfathomable|deep (similar term)
+abyssal zone|1
+(noun)|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+abyssinia|1
+(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country (generic term)|African nation (generic term)
+abyssinian|1
+(noun)|Abyssinian|Abyssinian cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+abyssinian banana|1
+(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb (generic term)|herbaceous plant (generic term)
+abyssinian cat|1
+(noun)|Abyssinian|Abyssinian cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+ac|2
+(noun)|actinium|Ac|atomic number 89|chemical element (generic term)|element (generic term)
+(noun)|alternating current|AC|electricity (generic term)|electrical energy (generic term)|direct current (antonym)
+acacia|1
+(noun)|tree (generic term)
+acacia auriculiformis|1
+(noun)|black wattle|Acacia auriculiformis|acacia (generic term)
+acacia cambegei|1
+(noun)|gidgee|stinking wattle|Acacia cambegei|acacia (generic term)
+acacia catechu|1
+(noun)|catechu|Jerusalem thorn|Acacia catechu|acacia (generic term)
+acacia dealbata|1
+(noun)|silver wattle|mimosa|Acacia dealbata|acacia (generic term)
+acacia farnesiana|1
+(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+acacia melanoxylon|1
+(noun)|lightwood|Acacia melanoxylon|blackwood (generic term)|blackwood tree (generic term)
+acacia pycnantha|1
+(noun)|golden wattle|Acacia pycnantha|acacia (generic term)
+acacia xanthophloea|1
+(noun)|fever tree|Acacia xanthophloea|acacia (generic term)
+academe|1
+(noun)|academia|world (generic term)|domain (generic term)
+academia|1
+(noun)|academe|world (generic term)|domain (generic term)
+academic|4
+(adj)|world|domain (related term)
+(adj)|theoretical (similar term)
+(adj)|donnish|pedantic|scholarly (similar term)
+(noun)|academician|faculty member|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+academic administrator|1
+(noun)|administrator (generic term)|decision maker (generic term)
+academic costume|1
+(noun)|costume (generic term)
+academic degree|1
+(noun)|degree|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+academic department|1
+(noun)|department (generic term)|section (generic term)
+academic freedom|1
+(noun)|freedom (generic term)
+academic gown|1
+(noun)|academic robe|judge's robe|gown (generic term)|robe (generic term)
+academic program|1
+(noun)|educational program (generic term)
+academic relation|1
+(noun)|professional relation (generic term)
+academic requirement|1
+(noun)|prerequisite (generic term)|requirement (generic term)
+academic robe|1
+(noun)|academic gown|judge's robe|gown (generic term)|robe (generic term)
+academic session|1
+(noun)|school term|academic term|session|term (generic term)
+academic term|1
+(noun)|school term|academic session|session|term (generic term)
+academic year|1
+(noun)|school year|year (generic term)
+academician|3
+(noun)|honoree (generic term)
+(noun)|schoolman|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|academic|faculty member|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+academicianship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+academicism|1
+(noun)|scholasticism|academism|traditionalism (generic term)|traditionality (generic term)
+academism|1
+(noun)|scholasticism|academicism|traditionalism (generic term)|traditionality (generic term)
+academy|4
+(noun)|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+(noun)|honorary society|institution (generic term)|establishment (generic term)
+(noun)|school (generic term)
+(noun)|establishment (generic term)
+academy award|1
+(noun)|Academy Award|Oscar|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+academy of motion picture arts and sciences|1
+(noun)|Academy of Motion Picture Arts and Sciences|academy (generic term)|honorary society (generic term)
+academy of television arts and sciences|1
+(noun)|Academy of Television Arts and Sciences|academy (generic term)|honorary society (generic term)
+acadia|1
+(noun)|Acadia|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+acadia national park|1
+(noun)|Acadia National Park|national park (generic term)
+acadian|1
+(noun)|Acadian|French Canadian (generic term)
+acalypha|1
+(noun)|Acalypha|genus Acalypha|rosid dicot genus (generic term)
+acalypha virginica|1
+(noun)|three-seeded mercury|Acalypha virginica|shrub (generic term)|bush (generic term)
+acantha|1
+(noun)|spur|spine|projection (generic term)
+acanthaceae|1
+(noun)|Acanthaceae|family Acanthaceae|acanthus family|asterid dicot family (generic term)
+acanthion|1
+(noun)|craniometric point (generic term)
+acanthisitta|1
+(noun)|Acanthisitta|genus Acanthisitta|bird genus (generic term)
+acanthisitta chloris|1
+(noun)|rifleman bird|Acanthisitta chloris|New Zealand wren (generic term)
+acanthisittidae|1
+(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family (generic term)
+acanthocephala|1
+(noun)|Acanthocephala|phylum Acanthocephala|phylum (generic term)
+acanthocephalan|1
+(noun)|spiny-headed worm|worm (generic term)
+acanthocereus|1
+(noun)|Acanthocereus|genus Acanthocereus|caryophylloid dicot genus (generic term)
+acanthocereus pentagonus|1
+(noun)|pitahaya cactus|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus (generic term)
+acanthocereus tetragonus|1
+(noun)|pitahaya cactus|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus (generic term)
+acanthocybium|1
+(noun)|Acanthocybium|genus Acanthocybium|fish genus (generic term)
+acanthocybium solandri|1
+(noun)|wahoo|Acanthocybium solandri|mackerel (generic term)
+acanthocyte|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+acanthocytosis|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+acanthoid|1
+(adj)|acanthous|spinous|pointed (similar term)
+acantholysis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+acanthoma|1
+(noun)|skin tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+acanthophis|1
+(noun)|Acanthophis|genus Acanthophis|reptile genus (generic term)
+acanthophis antarcticus|1
+(noun)|death adder|Acanthophis antarcticus|elapid (generic term)|elapid snake (generic term)
+acanthopterygian|1
+(noun)|spiny-finned fish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)|soft-finned fish (antonym)
+acanthopterygii|1
+(noun)|Acanthopterygii|superorder Acanthopterygii|animal order (generic term)
+acanthoscelides|1
+(noun)|Acanthoscelides|genus Acanthoscelides|arthropod genus (generic term)
+acanthoscelides obtectus|1
+(noun)|bean weevil|Acanthoscelides obtectus|seed beetle (generic term)|seed weevil (generic term)
+acanthosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+acanthosis nigricans|1
+(noun)|keratosis nigricans|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+acanthotic|1
+(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition (related term)
+acanthous|1
+(adj)|acanthoid|spinous|pointed (similar term)
+acanthuridae|1
+(noun)|Acanthuridae|family Acanthuridae|fish family (generic term)
+acanthurus|1
+(noun)|Acanthurus|genus Acanthurus|fish genus (generic term)
+acanthurus chirurgus|1
+(noun)|doctorfish|doctor-fish|Acanthurus chirurgus|surgeonfish (generic term)
+acanthus|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+acanthus family|1
+(noun)|Acanthaceae|family Acanthaceae|asterid dicot family (generic term)
+acanthus mollis|1
+(noun)|bear's breech|bear's breeches|sea holly|Acanthus mollis|acanthus (generic term)
+acapnia|1
+(noun)|hypocapnia|physiological state (generic term)|physiological condition (generic term)|hypercapnia (antonym)
+acapnial|1
+(adj)|acapnic|acapnotic|physiological state|physiological condition (related term)
+acapnic|1
+(adj)|acapnial|acapnotic|physiological state|physiological condition (related term)
+acapnotic|1
+(adj)|acapnic|acapnial|physiological state|physiological condition (related term)
+acapulco|1
+(noun)|Acapulco|Acapulco de Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+acapulco de juarez|1
+(noun)|Acapulco|Acapulco de Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+acapulco gold|1
+(noun)|Acapulco gold|Mexican green|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+acaracide|1
+(noun)|acaricide|pesticide (generic term)
+acardia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acariasis|1
+(noun)|acariosis|acaridiasis|infestation (generic term)
+acaricide|1
+(noun)|acaracide|pesticide (generic term)
+acarid|1
+(noun)|mite (generic term)
+acaridae|1
+(noun)|Acaridae|family Acaridae|arthropod family (generic term)
+acaridiasis|1
+(noun)|acariasis|acariosis|infestation (generic term)
+acarina|1
+(noun)|Acarina|order Acarina|animal order (generic term)
+acarine|1
+(noun)|arachnid (generic term)|arachnoid (generic term)
+acariosis|1
+(noun)|acariasis|acaridiasis|infestation (generic term)
+acaroid resin|1
+(noun)|accaroid resin|accroides|accroides resin|accroides gum|gum accroides|natural resin (generic term)
+acarophobia|1
+(noun)|zoophobia (generic term)
+acarpellous|1
+(adj)|acarpelous|carpellate (antonym)
+acarpelous|1
+(adj)|acarpellous|carpellate (antonym)
+acarpous|1
+(adj)|unfruitful (similar term)
+acarus|1
+(noun)|genus Acarus|mite (generic term)
+acaryote|1
+(noun)|akaryocyte|akaryote|cell (generic term)
+acatalectic|2
+(adj)|catalectic (antonym)|hypercatalectic (antonym)
+(noun)|line of poetry (generic term)|line of verse (generic term)
+acataphasia|1
+(noun)|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+acathexia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+acathexis|1
+(noun)|libidinal energy (generic term)
+acaudal|1
+(adj)|acaudate|anurous (similar term)|tailless (similar term)|caudate (antonym)
+acaudate|1
+(adj)|acaudal|anurous (similar term)|tailless (similar term)|caudate (antonym)
+acaulescent|1
+(adj)|stemless|caulescent (antonym)
+acc|1
+(noun)|Air Combat Command|ACC|command (generic term)
+accaroid resin|1
+(noun)|acaroid resin|accroides|accroides resin|accroides gum|gum accroides|natural resin (generic term)
+accede|3
+(verb)|submit|bow|defer|give in|yield (generic term)|give in (generic term)|succumb (generic term)|knuckle under (generic term)|buckle under (generic term)
+(verb)|enter|succeed (generic term)|come after (generic term)|follow (generic term)|take office (generic term)
+(verb)|assent|acquiesce|agree (generic term)|dissent (antonym)
+accelerando|2
+(adj)|increasing (similar term)
+(noun)|tempo (generic term)|pacing (generic term)
+accelerate|2
+(verb)|speed up|speed|quicken|intensify (generic term)|deepen (generic term)|decelerate (antonym)
+(verb)|speed|speed up|modify (generic term)|qualify (generic term)|decelerate (antonym)
+accelerated|2
+(adj)|speeded up|expedited (similar term)
+(adj)|fast (similar term)
+accelerating|1
+(adj)|fast (similar term)
+acceleration|3
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)|deceleration (antonym)
+(noun)|quickening|speedup|speed (generic term)|speeding (generic term)|hurrying (generic term)|deceleration (antonym)
+(noun)|rate (generic term)|deceleration (antonym)
+acceleration unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+accelerative|1
+(adj)|acceleratory|increasing (similar term)
+accelerator|4
+(noun)|accelerator pedal|gas pedal|gas|throttle|gun|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+(noun)|throttle|throttle valve|valve (generic term)
+(noun)|catalyst|activator (generic term)|anticatalyst (antonym)
+(noun)|particle accelerator|atom smasher|scientific instrument (generic term)
+accelerator factor|1
+(noun)|proaccelerin|prothrombin accelerator|factor V|coagulation factor (generic term)|clotting factor (generic term)
+accelerator pedal|1
+(noun)|accelerator|gas pedal|gas|throttle|gun|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+acceleratory|1
+(adj)|accelerative|increasing (similar term)
+accelerometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+accent|7
+(noun)|speech pattern|pronunciation (generic term)
+(noun)|emphasis|importance (generic term)|grandness (generic term)
+(noun)|dialect|idiom|non-standard speech (generic term)
+(noun)|stress|emphasis|prosody (generic term)|inflection (generic term)
+(noun)|accent mark|diacritical mark (generic term)|diacritic (generic term)
+(verb)|stress|emphasize|emphasise|punctuate|accentuate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|stress|accentuate|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+accent mark|1
+(noun)|accent|diacritical mark (generic term)|diacritic (generic term)
+accented|2
+(adj)|tonic|atonic (antonym)
+(adj)|stressed|emphatic (similar term)|emphasized (similar term)|emphasised (similar term)|masculine (similar term)|unstressed (antonym)
+accenting|1
+(noun)|emphasizing|accentuation|action (generic term)
+accentor|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+accentual|2
+(adj)|prosody|inflection (related term)
+(adj)|quantitative (antonym)|syllabic (antonym)
+accentual system|1
+(noun)|prosodic system|language system (generic term)
+accentuate|2
+(verb)|stress|emphasize|emphasise|punctuate|accent|express (generic term)|show (generic term)|evince (generic term)
+(verb)|stress|accent|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+accentuation|2
+(noun)|stress (generic term)|emphasis (generic term)|accent (generic term)
+(noun)|emphasizing|accenting|action (generic term)
+accept|10
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|reject (antonym)
+(verb)|take|have|get (generic term)|acquire (generic term)|take over (related term)|take over (related term)|take up (related term)|take in (related term)|refuse (antonym)
+(verb)|consent|go for|react (generic term)|respond (generic term)|refuse (antonym)
+(verb)|admit|take|take on|accept (generic term)|take (generic term)|have (generic term)
+(verb)|bear|take over|assume|take (generic term)
+(verb)|live with|swallow|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+(verb)|take|be (generic term)
+(verb)|receive (generic term)|have (generic term)
+(verb)|take
+(verb)|react (generic term)|respond (generic term)
+acceptability|1
+(noun)|acceptableness|satisfactoriness (generic term)|unacceptability (antonym)
+acceptable|4
+(adj)|bankable (similar term)|unexceptionable (similar term)|unimpeachable (similar term)|unobjectionable (similar term)|satisfactory (related term)|unacceptable (antonym)
+(adj)|accepted|standard (similar term)|received (similar term)
+(adj)|satisfactory|good (similar term)
+(adj)|fit (similar term)
+acceptableness|1
+(noun)|acceptability|satisfactoriness (generic term)|unacceptability (antonym)
+acceptably|1
+(adv)|tolerably|so-so|intolerably (antonym)|unacceptably (antonym)
+acceptance|7
+(noun)|credence|attitude (generic term)|mental attitude (generic term)
+(noun)|adoption|acceptation|espousal|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|situation (generic term)|state of affairs (generic term)|rejection (antonym)
+(noun)|assent (generic term)|acquiescence (generic term)
+(noun)|banker's acceptance|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+(noun)|toleration|sufferance|permissiveness (generic term)|tolerance (generic term)
+(noun)|acquisition (generic term)
+acceptance sampling|1
+(noun)|quality control (generic term)|sample distribution (generic term)|sample (generic term)|sampling (generic term)
+acceptant|1
+(adj)|acceptive|receptive (similar term)|open (similar term)
+acceptation|3
+(noun)|acceptance (generic term)
+(noun)|word meaning|word sense|sense (generic term)|signified (generic term)
+(noun)|adoption|acceptance|espousal|blessing (generic term)|approval (generic term)|approving (generic term)
+accepted|6
+(adj)|recognized|recognised|acknowledged (similar term)
+(adj)|undisputed|unchallenged|unquestioned|uncontroversial (similar term)|noncontroversial (similar term)
+(adj)|standard (similar term)
+(adj)|acceptable|standard (similar term)|received (similar term)
+(adj)|established (similar term)|constituted (similar term)
+(adj)|received|conventional (similar term)
+accepting|1
+(adj)|acceptive (similar term)
+acceptive|2
+(adj)|accepting (similar term)|rejective (antonym)
+(adj)|acceptant|receptive (similar term)|open (similar term)
+acceptor|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|drawee (generic term)
+acceptor rna|1
+(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid (generic term)|RNA (generic term)
+access|8
+(noun)|entree|accession|admittance|right (generic term)
+(noun)|right (generic term)
+(noun)|approach|way (generic term)
+(noun)|access code|code (generic term)
+(noun)|memory access|operation (generic term)
+(noun)|approach (generic term)|approaching (generic term)|coming (generic term)
+(verb)|recover (generic term)|retrieve (generic term)|find (generic term)|regain (generic term)
+(verb)|get at|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+access code|1
+(noun)|access|code (generic term)
+access road|1
+(noun)|slip road|road (generic term)|route (generic term)
+access time|1
+(noun)|time interval (generic term)|interval (generic term)
+accessary|1
+(noun)|accessory|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+accessibility|2
+(noun)|handiness|availability|availableness|convenience (generic term)|unavailability (antonym)|inaccessibility (antonym)
+(noun)|approachability|friendliness (generic term)|unapproachability (antonym)
+accessible|4
+(adj)|approachable (similar term)|reachable (similar term)|come-at-able (similar term)|get-at-able (similar term)|getatable (similar term)|convenient (similar term)|handy (similar term)|ready to hand (similar term)|in hand (similar term)|convenient (related term)|inaccessible (antonym)
+(adj)|approachable|comprehensible (similar term)|comprehendible (similar term)
+(adj)|available (similar term)
+(adj)|approachable (similar term)
+accession|7
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+(noun)|property right (generic term)
+(noun)|addition|acquisition (generic term)
+(noun)|assenting|agreement (generic term)
+(noun)|entree|access|admittance|right (generic term)
+(noun)|rise to power|attainment (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+accessional|1
+(adj)|acquisition (related term)
+accessorial|1
+(adj)|inessential (similar term)|unessential (similar term)
+accessory|4
+(adj)|adjunct|ancillary|adjuvant|appurtenant|auxiliary|subsidiary|supportive (similar term)
+(noun)|accoutrement|accouterment|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|appurtenance|supplement|add-on|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|accessary|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+accessory after the fact|1
+(noun)|accessory (generic term)|accessary (generic term)
+accessory before the fact|1
+(noun)|accessory (generic term)|accessary (generic term)
+accessory cephalic vein|1
+(noun)|vena cephalica accessoria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+accessory during the fact|1
+(noun)|accessory (generic term)|accessary (generic term)
+accessory fruit|1
+(noun)|pseudocarp|fruit (generic term)
+accessory hemiazygos vein|1
+(noun)|accessory hemiazygous vein|vena hemiazygos accessoria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+accessory hemiazygous vein|1
+(noun)|accessory hemiazygos vein|vena hemiazygos accessoria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+accessory nerve|1
+(noun)|spinal accessory|nervus accessorius|eleventh cranial nerve|cranial nerve (generic term)
+accessory vertebral vein|1
+(noun)|vena vertebralis accessoria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+accho|1
+(noun)|Acre|Akko|Akka|Accho|town (generic term)|port (generic term)
+acciaccatura|1
+(noun)|grace note|appoggiatura|note (generic term)|musical note (generic term)|tone (generic term)
+accidence|1
+(noun)|inflectional morphology|morphology (generic term)
+accident|2
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(noun)|fortuity|chance event|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+accident-prone|1
+(adj)|inclined (similar term)
+accident surgery|1
+(noun)|traumatology|medicine (generic term)|medical specialty (generic term)
+accidental|4
+(adj)|adventitious|extrinsic (similar term)
+(adj)|casual|chance|unplanned (similar term)
+(adj)|inadvertent|unintended (similar term)
+(noun)|musical notation (generic term)
+accidental injury|1
+(noun)|injury|accident (generic term)
+accidentally|3
+(adv)|by chance|circumstantially|unexpectedly|deliberately (antonym)
+(adv)|incidentally|by chance
+(adv)|unintentionally|deliberately (antonym)|intentionally (antonym)
+accipiter|1
+(noun)|Accipiter|genus Accipiter|bird genus (generic term)
+accipiter cooperii|1
+(noun)|Cooper's hawk|blue darter|Accipiter cooperii|hawk (generic term)
+accipiter gentilis|1
+(noun)|goshawk|Accipiter gentilis|hawk (generic term)
+accipiter nisus|1
+(noun)|sparrow hawk|Accipiter nisus|hawk (generic term)
+accipitridae|1
+(noun)|Accipitridae|family Accipitridae|bird family (generic term)
+accipitriformes|1
+(noun)|Accipitriformes|order Accipitriformes|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+accipitrine|1
+(adj)|bird genus (related term)
+acclaim|3
+(noun)|acclamation|plaudits|plaudit|eclat|approval (generic term)|commendation (generic term)
+(verb)|hail|herald|applaud (generic term)
+(verb)|applaud|clap|spat|gesticulate (generic term)|gesture (generic term)|motion (generic term)|boo (antonym)
+acclamation|1
+(noun)|acclaim|plaudits|plaudit|eclat|approval (generic term)|commendation (generic term)
+acclimate|1
+(verb)|acclimatize|acclimatise|adjust (generic term)|conform (generic term)|adapt (generic term)
+acclimation|1
+(noun)|acclimatization|acclimatisation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+acclimatisation|1
+(noun)|acclimatization|acclimation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+acclimatise|1
+(verb)|acclimatize|acclimate|adjust (generic term)|conform (generic term)|adapt (generic term)
+acclimatization|1
+(noun)|acclimatisation|acclimation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+acclimatize|1
+(verb)|acclimatise|acclimate|adjust (generic term)|conform (generic term)|adapt (generic term)
+acclivitous|1
+(adj)|rising|uphill|ascending (similar term)
+acclivity|1
+(noun)|ascent|rise|raise|climb|upgrade|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+accolade|1
+(noun)|award|honor|honour|laurels|symbol (generic term)
+accommodate|7
+(verb)|suit|fit|meet (generic term)|fit (generic term)|conform to (generic term)
+(verb)|adapt|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|hold|admit
+(verb)|lodge|house (generic term)|put up (generic term)|domiciliate (generic term)|lodge in (related term)
+(verb)|oblige|comply (generic term)|follow (generic term)|abide by (generic term)|disoblige (antonym)
+(verb)|reconcile|conciliate|harmonize (generic term)|harmonise (generic term)
+accommodating|2
+(adj)|accommodative|complaisant (similar term)|obliging (similar term)|good-natured (related term)|helpful (related term)|kind (related term)|unaccommodating (antonym)
+(adj)|helpful (similar term)
+accommodatingly|1
+(adv)|obligingly
+accommodation|6
+(noun)|adjustment|fitting|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|settlement (generic term)
+(noun)|developmental learning (generic term)
+(noun)|living quarters (generic term)|quarters (generic term)
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|alteration (generic term)|modification (generic term)|adjustment (generic term)
+accommodation endorser|1
+(noun)|endorser (generic term)|indorser (generic term)
+accommodation ladder|1
+(noun)|sea ladder (generic term)|sea steps (generic term)
+accommodation reflex|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+accommodational|1
+(adj)|alteration|modification|adjustment (related term)
+accommodative|3
+(adj)|accommodating|complaisant (similar term)|obliging (similar term)|good-natured (related term)|helpful (related term)|kind (related term)|unaccommodating (antonym)
+(adj)|cooperative|noncompetitive (similar term)
+(adj)|reconciling|adaptive (similar term)|adaptative (similar term)
+accommodator|1
+(noun)|obliger|benefactor (generic term)|helper (generic term)
+accompanied|1
+(adj)|attended|unaccompanied (antonym)
+accompaniment|3
+(noun)|concomitant|attendant|co-occurrence|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|musical accompaniment|backup|support|part (generic term)|voice (generic term)
+(noun)|escort|protection (generic term)
+accompanist|1
+(noun)|accompanyist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+accompany|4
+(verb)|attach to|come with|go with
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|play along|follow|play (generic term)
+(verb)|company|companion|keep company|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+accompanying|1
+(adj)|attendant|concomitant|incidental|incidental to|related (similar term)|related to (similar term)
+accompanying vein|1
+(noun)|vena comitans|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+accompanyist|1
+(noun)|accompanist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+accomplice|1
+(noun)|confederate|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+accomplish|2
+(verb)|carry through|execute|carry out|action|fulfill|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|achieve|attain|reach|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+accomplishable|1
+(adj)|achievable|doable|manageable|realizable|possible (similar term)
+accomplished|3
+(adj)|complete|skilled (similar term)
+(adj)|completed|realized|realised|complete (similar term)
+(adj)|effected|established|settled (similar term)
+accomplished fact|1
+(noun)|fait accompli|accomplishment (generic term)|achievement (generic term)
+accomplishment|2
+(noun)|achievement|action (generic term)
+(noun)|skill|acquirement|acquisition|attainment|ability (generic term)|power (generic term)
+accord|6
+(noun)|agreement|harmony (generic term)|concord (generic term)|concordance (generic term)|disagreement (antonym)
+(noun)|conformity|accordance|agreement (generic term)
+(noun)|treaty|pact|written agreement (generic term)
+(noun)|compatibility (generic term)
+(verb)|harmonize|harmonise|consort|concord|fit in|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|allot|grant|give (generic term)
+accord and satisfaction|1
+(noun)|settlement (generic term)
+accordance|2
+(noun)|accord|conformity|agreement (generic term)
+(noun)|accordance of rights|giving (generic term)|gift (generic term)
+accordance of rights|1
+(noun)|accordance|giving (generic term)|gift (generic term)
+accordant|2
+(adj)|according (similar term)|agreeable (similar term)|concordant (similar term)|concurring (similar term)|consensual (similar term)|consentaneous (similar term)|consentient (similar term)|unanimous (similar term)|discordant (antonym)
+(adj)|agreeable|conformable|consonant|concordant|consistent (similar term)
+according|2
+(adj)|reported (similar term)
+(adj)|accordant (similar term)
+accordingly|1
+(adv)|consequently
+accordion|1
+(noun)|piano accordion|squeeze box|free-reed instrument (generic term)
+accordion door|1
+(noun)|folding door|interior door (generic term)
+accordionist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+accost|2
+(verb)|address|come up to|come (generic term)|come up (generic term)
+(verb)|hook|solicit|offer (generic term)
+accouchement|1
+(noun)|childbirth|childbearing|vaginal birth|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+accoucheur|1
+(noun)|obstetrician|specialist (generic term)|medical specialist (generic term)
+accoucheuse|1
+(noun)|midwife|nurse (generic term)
+account|14
+(noun)|business relationship|relationship (generic term)
+(noun)|report|informing (generic term)|making known (generic term)
+(noun)|history|chronicle|story|record (generic term)
+(noun)|report|news report|story|write up|news (generic term)
+(noun)|accounting|account statement|statement (generic term)|financial statement (generic term)
+(noun)|explanation|statement (generic term)
+(noun)|bill|invoice|statement (generic term)|financial statement (generic term)
+(noun)|score|reason (generic term)|ground (generic term)
+(noun)|importance (generic term)
+(noun)|profit (generic term)|gain (generic term)
+(verb)|be (generic term)
+(verb)|calculate
+(verb)|report|describe|inform (generic term)
+(verb)|answer for|declare (generic term)
+account book|1
+(noun)|ledger|leger|book of account|book|record (generic term)
+account executive|1
+(noun)|account representative|registered representative|customer's broker|customer's man|businessperson (generic term)|bourgeois (generic term)
+account for|2
+(verb)|be (generic term)
+(verb)|explain (generic term)|explicate (generic term)
+account payable|1
+(noun)|payable|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+account representative|1
+(noun)|account executive|registered representative|customer's broker|customer's man|businessperson (generic term)|bourgeois (generic term)
+account statement|1
+(noun)|account|accounting|statement (generic term)|financial statement (generic term)
+accountability|1
+(noun)|answerability|answerableness|responsibility (generic term)|responsibleness (generic term)
+accountable|1
+(adj)|responsible (similar term)
+accountancy|1
+(noun)|accounting|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+accountant|1
+(noun)|comptroller|controller|businessperson (generic term)|bourgeois (generic term)
+accountantship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+accounting|5
+(noun)|explanation (generic term)|account (generic term)
+(noun)|system (generic term)|system of rules (generic term)
+(noun)|accountancy|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|accounting system|method of accounting|register (generic term)
+(noun)|account|account statement|statement (generic term)|financial statement (generic term)
+accounting data|1
+(noun)|data (generic term)|information (generic term)
+accounting entry|1
+(noun)|entry|ledger entry|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+accounting firm|1
+(noun)|firm (generic term)|house (generic term)|business firm (generic term)
+accounting principle|1
+(noun)|accounting standard|principle (generic term)
+accounting standard|1
+(noun)|accounting principle|principle (generic term)
+accounting system|1
+(noun)|accounting|method of accounting|register (generic term)
+accounts payable|1
+(noun)|liabilities (generic term)
+accounts receivable|1
+(noun)|assets (generic term)
+accouter|1
+(verb)|accoutre|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+accoutered|1
+(adj)|accoutred|equipped (similar term)|equipt (similar term)
+accouterment|1
+(noun)|accessory|accoutrement|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+accoutre|1
+(verb)|accouter|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+accoutred|1
+(adj)|accoutered|equipped (similar term)|equipt (similar term)
+accoutrement|1
+(noun)|accessory|accouterment|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+accra|1
+(noun)|Accra|capital of Ghana|national capital (generic term)
+accredit|3
+(verb)|recognize|recognise|license (generic term)|licence (generic term)|certify (generic term)
+(verb)|appoint (generic term)|charge (generic term)
+(verb)|credit|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+accreditation|1
+(noun)|certification (generic term)|enfranchisement (generic term)
+accredited|1
+(adj)|commissioned|licensed|licenced|authorized (similar term)|authorised (similar term)
+accrete|2
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|accumulate (generic term)|cumulate (generic term)|conglomerate (generic term)|pile up (generic term)|gather (generic term)|amass (generic term)
+accretion|4
+(noun)|accumulation|increase (generic term)|increment (generic term)|growth (generic term)
+(noun)|addition (generic term)|increase (generic term)|gain (generic term)
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+(noun)|inheritance (generic term)|heritage (generic term)
+accretionary|1
+(adj)|increasing (similar term)
+accretive|1
+(adj)|increasing (similar term)
+accroides|1
+(noun)|acaroid resin|accaroid resin|accroides resin|accroides gum|gum accroides|natural resin (generic term)
+accroides gum|1
+(noun)|acaroid resin|accaroid resin|accroides|accroides resin|gum accroides|natural resin (generic term)
+accroides resin|1
+(noun)|acaroid resin|accaroid resin|accroides|accroides gum|gum accroides|natural resin (generic term)
+accrual|1
+(noun)|accumulation|accruement|increase (generic term)|step-up (generic term)
+accrual basis|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)|cash basis (antonym)
+accrue|2
+(verb)|increase (generic term)
+(verb)|fall|change hands (generic term)|change owners (generic term)
+accrued|1
+(adj)|accumulated|increased (similar term)
+accruement|1
+(noun)|accumulation|accrual|increase (generic term)|step-up (generic term)
+acculturate|1
+(verb)|assimilate (generic term)
+acculturation|3
+(noun)|socialization|socialisation|enculturation|social control (generic term)
+(noun)|culture|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|assimilation|education (generic term)
+acculturational|1
+(adj)|acculturative|education (related term)
+acculturative|1
+(adj)|acculturational|education (related term)
+accumbent|1
+(adj)|decumbent|recumbent|reclining|unerect (similar term)
+accumulate|2
+(verb)|roll up|collect|pile up|amass|compile|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|cumulate|conglomerate|pile up|gather|amass|increase (generic term)
+accumulated|2
+(adj)|amassed|assembled|collected|congregate|massed|concentrated (similar term)
+(adj)|accrued|increased (similar term)
+accumulation|4
+(noun)|accretion|increase (generic term)|increment (generic term)|growth (generic term)
+(noun)|collection|aggregation|assemblage|group (generic term)|grouping (generic term)
+(noun)|accrual|accruement|increase (generic term)|step-up (generic term)
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+accumulative|2
+(adj)|cumulative|additive (similar term)
+(adj)|acquisitive (similar term)
+accumulator|3
+(noun)|collector|gatherer|holder (generic term)|bearer (generic term)
+(noun)|storage battery|voltaic battery (generic term)|galvanic battery (generic term)
+(noun)|accumulator register|register (generic term)
+accumulator register|1
+(noun)|accumulator|register (generic term)
+accuracy|2
+(noun)|truth|quality (generic term)|inaccuracy (antonym)
+(noun)|quality (generic term)
+accurate|2
+(adj)|close (similar term)|faithful (similar term)|dead-on (similar term)|high-fidelity (similar term)|hi-fi (similar term)|surgical (similar term)|straight (similar term)|true (similar term)|dead on target (similar term)|veracious (similar term)|correct (related term)|right (related term)|exact (related term)|precise (related term)|inaccurate (antonym)
+(adj)|exact|precise|correct (similar term)|right (similar term)
+accurately|1
+(adv)|inaccurately (antonym)
+accurse|1
+(verb)|execrate|anathemize|comminate|anathemise|anathematize|anathematise|deplore (generic term)
+accursed|1
+(adj)|accurst|maledict|cursed (similar term)|curst (similar term)
+accurst|1
+(adj)|accursed|maledict|cursed (similar term)|curst (similar term)
+accusal|1
+(noun)|accusation|charge (generic term)|complaint (generic term)
+accusation|2
+(noun)|accusal|charge (generic term)|complaint (generic term)
+(noun)|charge|assertion (generic term)|averment (generic term)|asseveration (generic term)
+accusative|3
+(adj)|accusatory|accusing|accusive|inculpatory (similar term)|inculpative (similar term)
+(adj)|objective|oblique|oblique case (related term)
+(noun)|accusative case|objective case|oblique (generic term)|oblique case (generic term)
+accusative case|1
+(noun)|accusative|objective case|oblique (generic term)|oblique case (generic term)
+accusatorial|1
+(adj)|disputant|controversialist|eristic (related term)|inquisitorial (antonym)
+accusatory|1
+(adj)|accusative|accusing|accusive|inculpatory (similar term)|inculpative (similar term)
+accuse|2
+(verb)|impeach|incriminate|criminate|charge (generic term)|accuse (generic term)
+(verb)|charge
+accused|1
+(noun)|defendant (generic term)|suspect (generic term)
+accuser|1
+(noun)|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+accusing|1
+(adj)|accusative|accusatory|accusive|inculpatory (similar term)|inculpative (similar term)
+accusive|1
+(adj)|accusative|accusatory|accusing|inculpatory (similar term)|inculpative (similar term)
+accustom|1
+(verb)|habituate|change (generic term)|alter (generic term)|modify (generic term)
+accustomed|2
+(adj)|used to (similar term)|wont to (similar term)|unaccustomed (antonym)
+(adj)|customary|habitual|wonted|usual (similar term)
+ace|10
+(adj)|A-one|crack|fantastic|first-rate|super|tiptop|topnotch|tops|superior (similar term)
+(noun)|one|1|I|single|unity|digit (generic term)|figure (generic term)
+(noun)|playing card (generic term)
+(noun)|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(noun)|Allied Command Europe|ACE|headquarters (generic term)
+(noun)|serve (generic term)|service (generic term)
+(verb)|breeze through|pass with flying colors|sweep through|sail through|nail|pass (generic term)|make it (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|play (generic term)
+(verb)|serve (generic term)
+ace inhibitor|1
+(noun)|ACE inhibitor|angiotensin-converting enzyme inhibitor|antihypertensive (generic term)|antihypertensive drug (generic term)
+ace of clubs|1
+(noun)|ace (generic term)
+ace of diamonds|1
+(noun)|ace (generic term)
+ace of hearts|1
+(noun)|ace (generic term)
+ace of spades|1
+(noun)|ace (generic term)
+acebutolol|1
+(noun)|Sectral|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+acedia|1
+(noun)|sloth|laziness|mortal sin (generic term)|deadly sin (generic term)
+acellular|1
+(adj)|noncellular|cell-free (similar term)|single-celled (similar term)|one-celled (similar term)|cellular (antonym)
+acellular slime mold|1
+(noun)|true slime mold|plasmodial slime mold|myxomycete|slime mold (generic term)|slime mould (generic term)
+acentric|2
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+(adj)|eccentric (similar term)|nonconcentric (similar term)
+acentric chromosome|1
+(noun)|chromosome (generic term)
+acephalia|1
+(noun)|acephaly|acephalism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acephalism|1
+(noun)|acephalia|acephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acephalous|1
+(adj)|headless (similar term)
+acephaly|1
+(noun)|acephalia|acephalism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acer|1
+(noun)|Acer|genus Acer|dicot genus (generic term)|magnoliopsid genus (generic term)
+acer argutum|1
+(noun)|pointed-leaf maple|Acer argutum|maple (generic term)
+acer campestre|1
+(noun)|hedge maple|field maple|Acer campestre|maple (generic term)
+acer circinatum|1
+(noun)|vine maple|Acer circinatum|maple (generic term)
+acer glabrum|1
+(noun)|dwarf maple|Rocky-mountain maple|Acer glabrum|maple (generic term)
+acer japonicum|1
+(noun)|Japanese maple|full moon maple|Acer japonicum|maple (generic term)
+acer macrophyllum|1
+(noun)|Oregon maple|big-leaf maple|Acer macrophyllum|maple (generic term)
+acer negundo|1
+(noun)|box elder|ash-leaved maple|Acer negundo|maple (generic term)
+acer negundo californicum|1
+(noun)|California box elder|Acer negundo Californicum|box elder (generic term)|ash-leaved maple (generic term)|Acer negundo (generic term)
+acer palmatum|1
+(noun)|Japanese maple|Acer palmatum|maple (generic term)
+acer pennsylvanicum|1
+(noun)|moosewood|moose-wood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple (generic term)
+acer platanoides|1
+(noun)|Norway maple|Acer platanoides|maple (generic term)
+acer pseudoplatanus|1
+(noun)|sycamore|great maple|scottish maple|Acer pseudoplatanus|maple (generic term)
+acer rubrum|1
+(noun)|red maple|scarlet maple|swamp maple|Acer rubrum|maple (generic term)
+acer saccharinum|1
+(noun)|silver maple|Acer saccharinum|maple (generic term)
+acer saccharum|1
+(noun)|sugar maple|rock maple|Acer saccharum|maple (generic term)
+acer spicatum|1
+(noun)|mountain maple|mountain alder|Acer spicatum|maple (generic term)
+aceraceae|1
+(noun)|Aceraceae|family Aceraceae|maple family|dicot family (generic term)|magnoliopsid family (generic term)
+acerate|1
+(adj)|acerose|acicular|needle-shaped|simple (similar term)|unsubdivided (similar term)
+acerate leaf|1
+(noun)|needle|simple leaf (generic term)
+acerb|2
+(adj)|acerbic|astringent|sour (similar term)
+(adj)|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+acerbate|2
+(verb)|embitter|envenom
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+acerbic|2
+(adj)|acerb|astringent|sour (similar term)
+(adj)|acerb|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+acerbity|3
+(noun)|bitterness (generic term)|bitter (generic term)
+(noun)|tartness|sourness (generic term)|sour (generic term)|acidity (generic term)
+(noun)|bitterness|acrimony|jaundice|tartness|thorniness|disagreeableness (generic term)
+acerola|2
+(noun)|barbados cherry|Surinam cherry|West Indian cherry|Malpighia glabra|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+(noun)|barbados cherry|surinam cherry|West Indian cherry|berry (generic term)
+acerose|1
+(adj)|acerate|acicular|needle-shaped|simple (similar term)|unsubdivided (similar term)
+acervate|1
+(adj)|fruiting body (related term)
+acervulus|1
+(noun)|fruiting body (generic term)
+acetabular|1
+(adj)|cotyloid|cotyloidal|concave (similar term)
+acetabulum|1
+(noun)|cotyloid cavity|socket (generic term)
+acetal|1
+(noun)|organic compound (generic term)
+acetaldehyde|1
+(noun)|ethanal|aldehyde (generic term)
+acetaldol|1
+(noun)|aldol (generic term)|aldehyde-alcohol (generic term)
+acetamide|1
+(noun)|ethanamide|amide (generic term)
+acetaminophen|1
+(noun)|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+acetanilid|1
+(noun)|acetanilide|phenylacetamide|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+acetanilide|1
+(noun)|acetanilid|phenylacetamide|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+acetate|2
+(noun)|ethanoate|salt (generic term)
+(noun)|acetate rayon|rayon (generic term)
+acetate disk|1
+(noun)|phonograph recording disk|disk (generic term)|disc (generic term)
+acetate rayon|1
+(noun)|acetate|rayon (generic term)
+acetic|1
+(adj)|carboxylic acid (related term)
+acetic acid|1
+(noun)|ethanoic acid|carboxylic acid (generic term)
+acetic anhydride|1
+(noun)|anhydride (generic term)
+acetify|2
+(verb)|sour|acidify|acidulate|change taste (generic term)|sweeten (antonym)
+(verb)|acidify|change state (generic term)|turn (generic term)|alkalize (antonym)
+acetin|1
+(noun)|acetate (generic term)|ethanoate (generic term)
+acetoacetic acid|1
+(noun)|ketone body (generic term)|acetone body (generic term)
+acetone|1
+(noun)|propanone|dimethyl ketone|ketone (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+acetone body|1
+(noun)|ketone body|ketone (generic term)
+acetonemia|1
+(noun)|ketonemia|ketosis|symptom (generic term)
+acetonic|1
+(adj)|ketone|solvent|dissolvent|dissolver|dissolving agent|resolvent (related term)
+acetonuria|1
+(noun)|ketonuria|ketoaciduria|symptom (generic term)
+acetophenetidin|1
+(noun)|acetphenetidin|phenacetin|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+acetose|1
+(adj)|acetous|vinegary|vinegarish|sour (similar term)
+acetous|1
+(adj)|acetose|vinegary|vinegarish|sour (similar term)
+acetphenetidin|1
+(noun)|acetophenetidin|phenacetin|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+acetum|2
+(noun)|acetic acid (generic term)|ethanoic acid (generic term)
+(noun)|vinegar|condiment (generic term)
+acetyl|1
+(noun)|acetyl group|acetyl radical|ethanoyl group|ethanoyl radical|acyl (generic term)|acyl group (generic term)
+acetyl chloride|1
+(noun)|ethanoyl chloride|acyl halide (generic term)|acid halide (generic term)
+acetyl group|1
+(noun)|acetyl|acetyl radical|ethanoyl group|ethanoyl radical|acyl (generic term)|acyl group (generic term)
+acetyl radical|1
+(noun)|acetyl|acetyl group|ethanoyl group|ethanoyl radical|acyl (generic term)|acyl group (generic term)
+acetylate|2
+(verb)|acetylize|acetylise|change (generic term)
+(verb)|acetylize|acetylise|change (generic term)|alter (generic term)|modify (generic term)
+acetylation|1
+(noun)|acylation (generic term)
+acetylcholine|1
+(noun)|neurotransmitter (generic term)
+acetylene|1
+(noun)|ethyne|alkyne|aliphatic compound (generic term)
+acetylenic|1
+(adj)|aliphatic compound (related term)
+acetylic|1
+(adj)|carboxylic acid (related term)
+acetylise|2
+(verb)|acetylate|acetylize|change (generic term)
+(verb)|acetylate|acetylize|change (generic term)|alter (generic term)|modify (generic term)
+acetylize|2
+(verb)|acetylate|acetylise|change (generic term)
+(verb)|acetylate|acetylise|change (generic term)|alter (generic term)|modify (generic term)
+acetylsalicylic acid|1
+(noun)|aspirin|Bayer|Empirin|St. Joseph|salicylate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+achaean|1
+(noun)|Achaean|Achaian|Greek (generic term)|Hellene (generic term)
+achaian|1
+(noun)|Achaean|Achaian|Greek (generic term)|Hellene (generic term)
+ache|4
+(noun)|aching|pain (generic term)|hurting (generic term)
+(verb)|hurt|suffer|perceive (generic term)|comprehend (generic term)
+(verb)|yearn|yen|pine|languish|hanker (generic term)|long (generic term)|yearn (generic term)
+(verb)|smart|hurt|cause to be perceived (generic term)
+achene|1
+(noun)|fruit (generic term)
+achenial|1
+(adj)|fruit (related term)
+acheron|1
+(noun)|Acheron|River Acheron|river (generic term)
+acheronian|1
+(adj)|Acheronian|Acherontic|Stygian|dark (similar term)
+acherontia|1
+(noun)|Acherontia|genus Acherontia|arthropod genus (generic term)
+acherontia atropos|1
+(noun)|death's-head moth|Acherontia atropos|hawkmoth (generic term)|hawk moth (generic term)|sphingid (generic term)|sphinx moth (generic term)|hummingbird moth (generic term)
+acherontic|1
+(adj)|Acheronian|Acherontic|Stygian|dark (similar term)
+acheson|1
+(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman (generic term)|solon (generic term)|national leader (generic term)
+acheson process|1
+(noun)|Acheson process|industrial process (generic term)
+acheta|1
+(noun)|Acheta|genus Acheta|arthropod genus (generic term)
+acheta assimilis|1
+(noun)|field cricket|Acheta assimilis|cricket (generic term)
+acheta domestica|1
+(noun)|European house cricket|Acheta domestica|cricket (generic term)
+achievability|1
+(noun)|attainability|attainableness|possibility (generic term)|possibleness (generic term)
+achievable|1
+(adj)|accomplishable|doable|manageable|realizable|possible (similar term)
+achieve|1
+(verb)|accomplish|attain|reach|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+achievement|1
+(noun)|accomplishment|action (generic term)
+achiever|1
+(noun)|winner|success|succeeder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|loser (antonym)
+achille ratti|1
+(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+achillea|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+achillea millefolium|1
+(noun)|yarrow|milfoil|Achillea millefolium|achillea (generic term)
+achillea ptarmica|1
+(noun)|sneezeweed yarrow|sneezewort|Achillea ptarmica|achillea (generic term)
+achilles|1
+(noun)|Achilles|mythical being (generic term)
+achilles' heel|1
+(noun)|Achilles' heel|weak part (generic term)|weak spot (generic term)|soft spot (generic term)
+achilles tendon|1
+(noun)|Achilles tendon|tendon of Achilles|tendon (generic term)|sinew (generic term)
+achimenes|1
+(noun)|hot water plant|flower (generic term)
+aching|2
+(adj)|achy|painful (similar term)
+(noun)|ache|pain (generic term)|hurting (generic term)
+achira|1
+(noun)|indian shot|arrowroot|Canna indica|Canna edulis|canna (generic term)
+achlamydeous|1
+(adj)|chlamydeous (antonym)
+achlorhydria|1
+(noun)|disorder (generic term)|upset (generic term)
+achlorhydric|1
+(adj)|acid (related term)
+achmad sukarno|1
+(noun)|Sukarno|Achmad Sukarno|statesman (generic term)|solon (generic term)|national leader (generic term)
+achoerodus|1
+(noun)|Achoerodus|genus Achoerodus|fish genus (generic term)
+achoerodus gouldii|1
+(noun)|pigfish|giant pigfish|Achoerodus gouldii|wrasse (generic term)
+acholia|1
+(noun)|cholestasis|disorder (generic term)|upset (generic term)
+achomawi|2
+(noun)|Achomawi|Hokan (generic term)|Hoka (generic term)
+(noun)|Achomawi|Shastan (generic term)
+achondrite|1
+(noun)|rock (generic term)|stone (generic term)
+achondritic|2
+(adj)|rock|stone (related term)
+(adj)|chondritic (antonym)
+achondroplasia|1
+(noun)|achondroplasty|osteosclerosis congenita|chondrodystrophy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+achondroplastic|1
+(adj)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition (related term)
+achondroplasty|1
+(noun)|achondroplasia|osteosclerosis congenita|chondrodystrophy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+achras|1
+(noun)|Achras|genus Achras|dicot genus (generic term)|magnoliopsid genus (generic term)
+achras zapota|1
+(noun)|sapodilla|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree (generic term)
+achromasia|1
+(noun)|lividness|lividity|luridness|paleness|pallidness|pallor|wanness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+achromatic|1
+(adj)|argent (similar term)|silver (similar term)|silvery (similar term)|silverish (similar term)|ash-grey (similar term)|ash-gray (similar term)|ashy (similar term)|blackish (similar term)|black-grey (similar term)|black-gray (similar term)|blackish-grey (similar term)|blackish-gray (similar term)|blue-white (similar term)|bluish-white (similar term)|cool-white (similar term)|blue-grey (similar term)|blue-gray (similar term)|bluish-grey (similar term)|bluish-gray (similar term)|blue-black (similar term)|bluish black (similar term)|brown-black (similar term)|brownish-black (similar term)|brown-grey (similar term)|brown-gray (similar term)|brownish-grey (similar term)|brownish-gray (similar term)|canescent (similar term)|chalky (similar term)|charcoal (similar term)|charcoal-grey (similar term)|charcoal-gray (similar term)|coal-black (similar term)|jet (similar term)|jet-black (similar term)|pitchy (similar term)|sooty (similar term)|cottony-white (similar term)|dull-white (similar term)|ebon (similar term)|ebony (similar term)|grey (similar term)|gray (similar term)|greyish (similar term)|grayish (similar term)|grey-black (similar term)|gray-black (similar term)|greyish-black (similar term)|grayish-black (similar term)|grey-white (similar term)|gray-white (similar term)|greyish-white (similar term)|grayish-white (similar term)|greenish-grey (similar term)|greenish-gray (similar term)|green-white (similar term)|greenish-white (similar term)|hueless (similar term)|ink-black (similar term)|inky (similar term)|inky-black (similar term)|iron-grey (similar term)|iron-gray (similar term)|lily-white (similar term)|milk-white (similar term)|olive-grey (similar term)|olive-gray (similar term)|oxford-grey (similar term)|oxford-gray (similar term)|dark-grey (similar term)|dark-gray (similar term)|neutral (similar term)|pearl grey (similar term)|pearl gray (similar term)|pearly (similar term)|pearly-white (similar term)|pinkish-white (similar term)|purple-black (similar term)|purplish-black (similar term)|purple-white (similar term)|purplish-white (similar term)|red-grey (similar term)|red-gray (similar term)|reddish-grey (similar term)|reddish-gray (similar term)|sable (similar term)|silver-grey (similar term)|silver-gray (similar term)|silvery-grey (similar term)|silvery-gray (similar term)|silver-white (similar term)|silvery-white (similar term)|slate-black (similar term)|slate-grey (similar term)|slate-gray (similar term)|slaty-grey (similar term)|slaty-gray (similar term)|slaty (similar term)|slatey (similar term)|stone-grey (similar term)|stone-gray (similar term)|snow-white (similar term)|snowy (similar term)|soot-black (similar term)|sooty-black (similar term)|violet-black (similar term)|white-flowered (similar term)|whitish (similar term)|off-white (similar term)|yellow-grey (similar term)|yellow-gray (similar term)|yellowish-grey (similar term)|yellowish-gray (similar term)|yellow-white (similar term)|yellowish-white (similar term)|colorless (related term)|colourless (related term)|chromatic (antonym)
+achromatic color|1
+(noun)|achromatic colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|chromatic color (antonym)
+achromatic colour|1
+(noun)|achromatic color|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|chromatic color (antonym)
+achromatic lens|1
+(noun)|compound lens (generic term)
+achromatic vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+achromaticity|1
+(noun)|colorlessness|colourlessness|achromatism|visual property (generic term)|color (antonym)
+achromatin|1
+(noun)|body substance (generic term)
+achromatinic|1
+(adj)|body substance (related term)|chromatinic (antonym)
+achromatise|1
+(verb)|achromatize|change (generic term)|alter (generic term)|modify (generic term)
+achromatism|1
+(noun)|colorlessness|colourlessness|achromaticity|visual property (generic term)|color (antonym)
+achromatize|1
+(verb)|achromatise|change (generic term)|alter (generic term)|modify (generic term)
+achromatous|1
+(adj)|uncolored (similar term)|uncoloured (similar term)
+achromia|1
+(noun)|colorlessness (generic term)|colourlessness (generic term)|achromatism (generic term)|achromaticity (generic term)
+achromic|1
+(adj)|achromous|uncolored (similar term)|uncoloured (similar term)
+achromous|1
+(adj)|achromic|uncolored (similar term)|uncoloured (similar term)
+achromycin|1
+(noun)|tetracycline|Achromycin|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+achy|1
+(adj)|aching|painful (similar term)
+achylia|1
+(noun)|achylia gastrica|disorder (generic term)|upset (generic term)
+achylia gastrica|1
+(noun)|achylia|disorder (generic term)|upset (generic term)
+acicula|1
+(noun)|part (generic term)|piece (generic term)
+acicular|1
+(adj)|acerate|acerose|needle-shaped|simple (similar term)|unsubdivided (similar term)
+aciculate|1
+(adj)|part|piece (related term)
+acid|5
+(adj)|acerb|acerbic|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|acidic|acidulent|acidulous|sour (similar term)
+(adj)|acidic (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+acid-base balance|1
+(noun)|acid-base equilibrium|chemical equilibrium (generic term)|equilibrium (generic term)
+acid-base equilibrium|1
+(noun)|acid-base balance|chemical equilibrium (generic term)|equilibrium (generic term)
+acid-base indicator|1
+(noun)|indicator (generic term)
+acid-fast|1
+(adj)|impervious (similar term)|imperviable (similar term)
+acid-forming|1
+(adj)|acidic (similar term)
+acid-loving|1
+(adj)|acidophilic (similar term)|acidophilous (similar term)|aciduric (similar term)|alkaline-loving (antonym)
+acid-tasting|1
+(adj)|sour-tasting|tasty (similar term)
+acid-wash|1
+(verb)|wash (generic term)|launder (generic term)
+acid anhydrides|1
+(noun)|acyl anhydrides|organic compound (generic term)
+acid dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+acid halide|1
+(noun)|acyl halide|organic compound (generic term)
+acid head|1
+(noun)|head (generic term)
+acid hydrogen|1
+(noun)|acidic hydrogen|hydrogen atom (generic term)
+acid precipitation|1
+(noun)|acid rain|air pollution (generic term)
+acid rain|1
+(noun)|acid precipitation|air pollution (generic term)
+acid rock|1
+(noun)|psychedelic rock|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+acid test|1
+(noun)|appraisal (generic term)|assessment (generic term)
+acid value|1
+(noun)|definite quantity (generic term)
+acidemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+acidic|2
+(adj)|acid (similar term)|acid-forming (similar term)|alkaline (antonym)|amphoteric (antonym)
+(adj)|acid|acidulent|acidulous|sour (similar term)
+acidic hydrogen|1
+(noun)|acid hydrogen|hydrogen atom (generic term)
+acidification|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+acidify|2
+(verb)|sour|acidulate|acetify|change taste (generic term)|sweeten (antonym)
+(verb)|acetify|change state (generic term)|turn (generic term)|alkalize (antonym)
+acidimetric|1
+(adj)|volumetric analysis (related term)
+acidimetry|1
+(noun)|volumetric analysis (generic term)
+acidity|3
+(noun)|sourness|sour|taste property (generic term)
+(noun)|acidulousness|sour (generic term)|sourness (generic term)|tartness (generic term)
+(noun)|pH (generic term)|pH scale (generic term)|alkalinity (antonym)
+acidophil|1
+(noun)|acidophile|bacteria (generic term)|bacterium (generic term)
+acidophile|1
+(noun)|acidophil|bacteria (generic term)|bacterium (generic term)
+acidophilic|1
+(adj)|acidophilous|aciduric|acid-loving (similar term)
+acidophilous|1
+(adj)|acidophilic|aciduric|acid-loving (similar term)
+acidophilus milk|1
+(noun)|milk (generic term)
+acidosis|1
+(noun)|pathology (generic term)
+acidotic|1
+(adj)|pathology (related term)
+acidulate|1
+(verb)|sour|acidify|acetify|change taste (generic term)|sweeten (antonym)
+acidulent|1
+(adj)|acidic|acid|acidulous|sour (similar term)
+acidulous|1
+(adj)|acidic|acid|acidulent|sour (similar term)
+acidulousness|1
+(noun)|acidity|sour (generic term)|sourness (generic term)|tartness (generic term)
+aciduric|1
+(adj)|acidophilic|acidophilous|acid-loving (similar term)
+acinar|2
+(adj)|acinous|acinose|acinic|sac (related term)
+(adj)|drupelet (related term)
+acinic|1
+(adj)|acinar|acinous|acinose|sac (related term)
+acinonyx|1
+(noun)|Acinonyx|genus Acinonyx|mammal genus (generic term)
+acinonyx jubatus|1
+(noun)|cheetah|chetah|Acinonyx jubatus|big cat (generic term)|cat (generic term)
+acinos|1
+(noun)|Acinos|genus Acinos|asterid dicot genus (generic term)
+acinos arvensis|1
+(noun)|basil thyme|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb (generic term)|herbaceous plant (generic term)
+acinose|1
+(adj)|acinar|acinous|acinic|sac (related term)
+acinous|1
+(adj)|acinar|acinose|acinic|sac (related term)
+acinus|2
+(noun)|drupelet (generic term)
+(noun)|sac (generic term)
+acipenser|1
+(noun)|Acipenser|genus Acipenser|fish genus (generic term)
+acipenser huso|1
+(noun)|beluga|hausen|white sturgeon|Acipenser huso|sturgeon (generic term)
+acipenser transmontanus|1
+(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon (generic term)
+acipenseridae|1
+(noun)|Acipenseridae|family Acipenseridae|fish family (generic term)
+ack-ack|1
+(noun)|antiaircraft|antiaircraft gun|flak|flack|pom-pom|ack-ack gun|gun (generic term)
+ack-ack gun|1
+(noun)|antiaircraft|antiaircraft gun|flak|flack|pom-pom|ack-ack|gun (generic term)
+ackee|1
+(noun)|akee|edible fruit (generic term)
+acknowledge|6
+(verb)|admit|declare (generic term)|adjudge (generic term)|hold (generic term)|deny (antonym)
+(verb)|receipt|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|notice|react (generic term)|respond (generic term)
+(verb)|recognize|recognise|thank (generic term)|give thanks (generic term)
+(verb)|accept (generic term)
+(verb)|recognize|recognise|know|accept (generic term)
+acknowledgeable|1
+(adj)|identifiable (similar term)
+acknowledged|2
+(adj)|accepted (similar term)|recognized (similar term)|recognised (similar term)|self-confessed (similar term)|assumed (similar term)|assumptive (similar term)|taken for granted (similar term)|declarable (similar term)|given (similar term)|granted (similar term)|putative (similar term)|purported (similar term)|reputed (similar term)|supposed (similar term)|known (related term)|unacknowledged (antonym)
+(adj)|unquestionable (similar term)
+acknowledgement|2
+(noun)|recognition|acknowledgment|acceptance (generic term)
+(noun)|acknowledgment|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+acknowledgment|3
+(noun)|recognition|acknowledgement|acceptance (generic term)
+(noun)|citation|cite|credit|reference|mention|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|acknowledgement|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+aclant|1
+(noun)|Allied Command Atlantic|ACLANT|headquarters (generic term)
+aclinic line|1
+(noun)|magnetic equator|line (generic term)
+acme|2
+(noun)|height|elevation|peak|pinnacle|summit|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|vertex|peak|apex|extreme point (generic term)|extreme (generic term)|extremum (generic term)
+acne|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)|inflammatory disease (generic term)
+acne rosacea|1
+(noun)|rosacea|acne (generic term)
+acne vulgaris|1
+(noun)|acne (generic term)
+acned|1
+(adj)|pimpled|pimply|pustulate|blemished (similar term)
+acneiform|1
+(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition|inflammatory disease (related term)
+acnidosporidia|1
+(noun)|Acnidosporidia|subclass Acnidosporidia|class (generic term)
+acocanthera|1
+(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus (generic term)|magnoliopsid genus (generic term)
+acocanthera oblongifolia|1
+(noun)|winter sweet|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub (generic term)|bush (generic term)
+acocanthera oppositifolia|1
+(noun)|bushman's poison|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub (generic term)|bush (generic term)
+acocanthera spectabilis|1
+(noun)|winter sweet|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub (generic term)|bush (generic term)
+acocanthera venenata|1
+(noun)|bushman's poison|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub (generic term)|bush (generic term)
+acokanthera|1
+(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus (generic term)|magnoliopsid genus (generic term)
+acold|1
+(adj)|cold (similar term)
+acolyte|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+aconcagua|1
+(noun)|Aconcagua|mountain peak (generic term)
+aconite|1
+(noun)|poisonous plant (generic term)
+aconitum|1
+(noun)|Aconitum|genus Aconitum|magnoliid dicot genus (generic term)
+aconitum lycoctonum|1
+(noun)|wolfsbane|wolfbane|wolf's bane|Aconitum lycoctonum|aconite (generic term)
+aconitum napellus|1
+(noun)|monkshood|helmetflower|helmet flower|Aconitum napellus|aconite (generic term)
+acoraceae|1
+(noun)|Acoraceae|subfamily Acoraceae|monocot family (generic term)|liliopsid family (generic term)
+acorea|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acores|1
+(noun)|Azores|Acores|island (generic term)
+acorn|1
+(noun)|fruit (generic term)
+acorn-shaped|1
+(adj)|formed (similar term)
+acorn barnacle|1
+(noun)|rock barnacle|Balanus balanoides|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+acorn cup|1
+(noun)|cupule|cup (generic term)
+acorn squash|2
+(noun)|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+acorn tube|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+acorus|1
+(noun)|Acorus|genus Acorus|monocot genus (generic term)|liliopsid genus (generic term)
+acorus calamus|1
+(noun)|sweet flag|calamus|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+acousma|1
+(noun)|auditory hallucination|hallucination (generic term)
+acoustic|2
+(adj)|acoustical|physics|physical science|natural philosophy (related term)
+(noun)|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+acoustic aphasia|1
+(noun)|auditory aphasia|word deafness|aphasia (generic term)
+acoustic buoy|1
+(noun)|buoy (generic term)
+acoustic delay line|1
+(noun)|sonic delay line|delay line (generic term)
+acoustic device|1
+(noun)|device (generic term)
+acoustic gramophone|1
+(noun)|gramophone|record player (generic term)|phonograph (generic term)
+acoustic guitar|1
+(noun)|guitar (generic term)
+acoustic impedance|1
+(noun)|acoustic resistance|acoustic reactance|resistance (generic term)
+acoustic meatus|1
+(noun)|auditory meatus|ear canal|auditory canal|external auditory canal|meatus (generic term)
+acoustic modem|1
+(noun)|modem (generic term)
+acoustic nerve|1
+(noun)|auditory nerve|vestibulocochlear nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve (generic term)
+acoustic phenomenon|1
+(noun)|physical phenomenon (generic term)
+acoustic power|1
+(noun)|sound pressure level|intensity (generic term)|strength (generic term)|intensity level (generic term)
+acoustic projection|1
+(noun)|projection|sound projection|acoustic phenomenon (generic term)
+acoustic radiation pressure|1
+(noun)|radiation pressure (generic term)|corpuscular-radiation pressure (generic term)
+acoustic reactance|1
+(noun)|acoustic resistance|acoustic impedance|resistance (generic term)
+acoustic resistance|1
+(noun)|acoustic impedance|acoustic reactance|resistance (generic term)
+acoustic spectrum|1
+(noun)|sound spectrum|spectrum (generic term)
+acoustic storage|1
+(noun)|memory device (generic term)|storage device (generic term)
+acoustic wave|1
+(noun)|sound wave|wave (generic term)|undulation (generic term)
+acoustical|1
+(adj)|acoustic|physics|physical science|natural philosophy (related term)
+acoustician|1
+(noun)|physicist (generic term)
+acousticophobia|1
+(noun)|phonophobia|simple phobia (generic term)
+acoustics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+acquaint|3
+(verb)|introduce|present|inform (generic term)
+(verb)|familiarize|familiarise|inform (generic term)
+(verb)|inform (generic term)
+acquaintance|3
+(noun)|familiarity|conversance|conversancy|information (generic term)
+(noun)|acquaintanceship|relationship (generic term)
+(noun)|friend|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+acquaintanceship|1
+(noun)|acquaintance|relationship (generic term)
+acquainted|1
+(adj)|acquainted with|familiar with|familiar (similar term)
+acquainted with|1
+(adj)|acquainted|familiar with|familiar (similar term)
+acquiesce|1
+(verb)|assent|accede|agree (generic term)|dissent (antonym)
+acquiescence|2
+(noun)|acceptance (generic term)
+(noun)|assent|agreement (generic term)
+acquiescent|1
+(adj)|biddable|obedient (similar term)
+acquirable|1
+(adj)|available (similar term)
+acquire|7
+(verb)|get
+(verb)|assume|adopt|take on|take|change (generic term)
+(verb)|grow|develop|produce|get|change (generic term)
+(verb)|situate (generic term)|locate (generic term)
+(verb)|win|gain|get (generic term)|acquire (generic term)|lose (antonym)
+(verb)|learn|larn
+(verb)|develop|evolve|change (generic term)
+acquired|1
+(adj)|noninheritable (similar term)|nonheritable (similar term)
+acquired hemochromatosis|1
+(noun)|hemochromatosis (generic term)|iron-storage disease (generic term)|iron overload (generic term)|bronzed diabetes (generic term)
+acquired immune deficiency syndrome|1
+(noun)|AIDS|immunodeficiency (generic term)|infectious disease (generic term)
+acquired immunity|1
+(noun)|immunity (generic term)|resistance (generic term)
+acquired reflex|1
+(noun)|conditional reflex|conditioned reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction (generic term)|learned response (generic term)
+acquired taste|1
+(noun)|preference (generic term)|penchant (generic term)|predilection (generic term)|taste (generic term)
+acquirement|1
+(noun)|skill|accomplishment|acquisition|attainment|ability (generic term)|power (generic term)
+acquirer|4
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+(noun)|merchant bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+acquiring|1
+(noun)|getting|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+acquisition|4
+(noun)|acquiring (generic term)|getting (generic term)
+(noun)|transferred property (generic term)|transferred possession (generic term)
+(noun)|learning|basic cognitive process (generic term)
+(noun)|skill|accomplishment|acquirement|attainment|ability (generic term)|power (generic term)
+acquisition agreement|1
+(noun)|merger agreement|contract (generic term)
+acquisitive|1
+(adj)|accumulative (similar term)|avaricious (similar term)|covetous (similar term)|grabby (similar term)|grasping (similar term)|greedy (similar term)|prehensile (similar term)|possessive (similar term)|plundering (similar term)|predaceous (similar term)|predacious (similar term)|predatory (similar term)|rapacious (similar term)|ravening (similar term)|voracious (similar term)|sordid (similar term)|unacquisitive (antonym)
+acquisitiveness|1
+(noun)|greed (generic term)
+acquit|2
+(verb)|assoil|clear|discharge|exonerate|exculpate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+(verb)|behave|bear|deport|conduct|comport|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+acquittal|1
+(noun)|final judgment (generic term)|final decision (generic term)|conviction (antonym)
+acquittance|1
+(noun)|release|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+acquitted|1
+(adj)|not guilty|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+acragas|1
+(noun)|Agrigento|Acragas|Girgenti|town (generic term)
+acrasiomycetes|1
+(noun)|Acrasiomycetes|class Acrasiomycetes|class (generic term)
+acre|3
+(noun)|area unit (generic term)|square measure (generic term)
+(noun)|Acre|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|Acre|Akko|Akka|Accho|town (generic term)|port (generic term)
+acre-foot|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+acre inch|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+acreage|1
+(noun)|land area|area (generic term)|expanse (generic term)|surface area (generic term)
+acres|1
+(noun)|estate|land|landed estate|demesne|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+acrid|2
+(adj)|pungent|tasty (similar term)
+(adj)|acerb|acerbic|acid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+acridid|1
+(noun)|short-horned grasshopper|grasshopper (generic term)|hopper (generic term)
+acrididae|1
+(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family (generic term)
+acridity|3
+(noun)|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(noun)|acridness|bitterness (generic term)|bitter (generic term)
+(noun)|acridness|disagreeableness (generic term)
+acridness|2
+(noun)|acridity|bitterness (generic term)|bitter (generic term)
+(noun)|acridity|disagreeableness (generic term)
+acridotheres|1
+(noun)|Acridotheres|genus Acridotheres|bird genus (generic term)
+acridotheres tristis|1
+(noun)|crested myna|Acridotheres tristis|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+acrilan|1
+(noun)|polypropenonitrile|Acrilan|acrylic (generic term)|acrylic resin (generic term)|acrylate resin (generic term)
+acrimonious|1
+(adj)|bitter|resentful (similar term)
+acrimony|1
+(noun)|bitterness|acerbity|jaundice|tartness|thorniness|disagreeableness (generic term)
+acris|1
+(noun)|Acris|genus Acris|amphibian genus (generic term)
+acris crepitans|1
+(noun)|northern cricket frog|Acris crepitans|cricket frog (generic term)
+acris gryllus|1
+(noun)|eastern cricket frog|Acris gryllus|cricket frog (generic term)
+acritical|1
+(adj)|noncritical (similar term)|noncrucial (similar term)
+acroanaesthesia|1
+(noun)|acroanesthesia|regional anesthesia (generic term)|regional anaesthesia (generic term)
+acroanesthesia|1
+(noun)|acroanaesthesia|regional anesthesia (generic term)|regional anaesthesia (generic term)
+acrobat|1
+(noun)|athlete (generic term)|jock (generic term)
+acrobates|1
+(noun)|Acrobates|genus Acrobates|mammal genus (generic term)
+acrobatic|1
+(adj)|athletic|gymnastic|active (similar term)
+acrobatic feat|1
+(noun)|acrobatic stunt|stunt (generic term)
+acrobatic stunt|1
+(noun)|acrobatic feat|stunt (generic term)
+acrobatics|2
+(noun)|tumbling|gymnastics (generic term)|gymanstic exercise (generic term)
+(noun)|aerobatics|stunting|stunt flying|flight (generic term)|flying (generic term)
+acrocarp|1
+(noun)|acrocarpous moss|moss (generic term)|pleurocarp (antonym)
+acrocarpous|1
+(adj)|pleurocarpous (antonym)
+acrocarpous moss|1
+(noun)|acrocarp|moss (generic term)|pleurocarp (antonym)
+acrocarpus|1
+(noun)|Acrocarpus|genus Acrocarpus|rosid dicot genus (generic term)
+acrocarpus fraxinifolius|1
+(noun)|shingle tree|Acrocarpus fraxinifolius|tree (generic term)
+acrocentric|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+acrocentric chromosome|1
+(noun)|chromosome (generic term)
+acrocephalus|1
+(noun)|Acrocephalus|genus Acrocephalus|bird genus (generic term)
+acrocephalus schoenobaenus|1
+(noun)|sedge warbler|sedge bird|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler (generic term)|true warbler (generic term)
+acrocephaly|1
+(noun)|oxycephaly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+acroclinium|1
+(noun)|Acroclinium|genus Acroclinium|asterid dicot genus (generic term)
+acroclinium roseum|1
+(noun)|pink-and-white everlasting|pink paper daisy|Acroclinium roseum|everlasting (generic term)|everlasting flower (generic term)
+acrocomia|1
+(noun)|Acrocomia|genus Acrocomia|monocot genus (generic term)|liliopsid genus (generic term)
+acrocomia aculeata|1
+(noun)|grugru|gri-gri|grugru palm|macamba|Acrocomia aculeata|feather palm (generic term)
+acrocomia vinifera|1
+(noun)|coyol|coyol palm|Acrocomia vinifera|feather palm (generic term)
+acrocyanosis|1
+(noun)|Raynaud's sign|cyanosis (generic term)
+acrodont|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+acrogen|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+acrogenic|1
+(adj)|acrogenous|plant|flora|plant life (related term)
+acrogenous|1
+(adj)|acrogenic|plant|flora|plant life (related term)
+acrolein|1
+(noun)|propenal|aldehyde (generic term)
+acromegalia|1
+(noun)|acromegaly|hypertrophy (generic term)
+acromegalic|1
+(adj)|pituitary|unshapely (similar term)
+acromegaly|1
+(noun)|acromegalia|hypertrophy (generic term)
+acromial process|1
+(noun)|acromion|process (generic term)|outgrowth (generic term)|appendage (generic term)
+acromicria|1
+(noun)|acromikria|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acromikria|1
+(noun)|acromicria|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acromion|1
+(noun)|acromial process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+acromphalus|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+acromyotonia|1
+(noun)|myotonia (generic term)
+acronym|1
+(noun)|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+acronymic|1
+(adj)|acronymous|form|word form|signifier|descriptor (related term)
+acronymous|1
+(adj)|acronymic|form|word form|signifier|descriptor (related term)
+acropetal|1
+(adj)|basipetal (antonym)
+acrophobia|1
+(noun)|simple phobia (generic term)
+acrophobic|1
+(adj)|afraid (similar term)
+acrophony|1
+(noun)|naming (generic term)
+acropolis|1
+(noun)|bastion (generic term)|citadel (generic term)
+acropora|1
+(noun)|Acropora|genus Acropora|coelenterate genus (generic term)
+acroscopic|1
+(adj)|basiscopic (antonym)
+acrosome|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+across|1
+(adv)|crosswise|crossways
+across-the-board|1
+(adj)|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+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 (generic term)
+(noun)|literary composition (generic term)|literary work (generic term)
+acrostichum|1
+(noun)|Acrostichum|genus Acrostichum|fern genus (generic term)
+acrostichum aureum|1
+(noun)|golden fern|leather fern|Acrostichum aureum|fern (generic term)
+acrylamide|1
+(noun)|amide (generic term)
+acrylate|1
+(noun)|propenoate|salt (generic term)
+acrylate resin|1
+(noun)|acrylic|acrylic resin|synthetic resin (generic term)
+acrylic|4
+(noun)|acrylic fiber|man-made fiber (generic term)|synthetic fiber (generic term)
+(noun)|acrylic resin|acrylate resin|synthetic resin (generic term)
+(noun)|acrylic paint|paint (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+acrylic acid|1
+(noun)|propenoic acid|carboxylic acid (generic term)
+acrylic fiber|1
+(noun)|acrylic|man-made fiber (generic term)|synthetic fiber (generic term)
+acrylic paint|1
+(noun)|acrylic|paint (generic term)
+acrylic resin|1
+(noun)|acrylic|acrylate resin|synthetic resin (generic term)
+acrylonitrile|1
+(noun)|propenonitrile|vinyl cyanide|nitrile (generic term)|nitril (generic term)|cyanide (generic term)
+acrylonitrile-butadiene-styrene|1
+(noun)|ABS|plastic (generic term)
+act|14
+(noun)|enactment|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|human action|human activity|event (generic term)
+(noun)|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|routine|number|turn|bit|performance (generic term)|public presentation (generic term)
+(noun)|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+(verb)|move|act on (related term)|act up (related term)|act upon (related term)|refrain (antonym)
+(verb)|behave|do|act up (related term)
+(verb)|play|represent|re-create (generic term)
+(verb)|serve (generic term)
+(verb)|play|act as|act (generic term)|behave (generic term)|do (generic term)
+(verb)|be (generic term)
+(verb)|work|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|dissemble|pretend
+(verb)|play|roleplay|playact|perform (generic term)
+act as|2
+(verb)|serve (generic term)|function (generic term)
+(verb)|act|play|act (generic term)|behave (generic term)|do (generic term)
+act involuntarily|1
+(verb)|act reflexively|act (generic term)|behave (generic term)|do (generic term)
+act of god|1
+(noun)|act of God|force majeure|vis major|inevitable accident|unavoidable casualty|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+act of terrorism|1
+(noun)|terrorism|terrorist act|coercion (generic term)
+act on|2
+(verb)|pursue|follow up on|react (generic term)|oppose (generic term)
+(verb)|act (generic term)|move (generic term)
+act out|2
+(verb)|act (generic term)|play (generic term)|represent (generic term)
+(verb)|enact|reenact|act (generic term)|play (generic term)|represent (generic term)
+act reflexively|1
+(verb)|act involuntarily|act (generic term)|behave (generic term)|do (generic term)
+act superior|1
+(verb)|lord it over|queen it over|put on airs|act (generic term)|move (generic term)
+act up|2
+(verb)|carry on|misbehave (generic term)|misconduct (generic term)|misdemean (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+act upon|1
+(verb)|influence|work|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+actable|1
+(adj)|unactable (antonym)
+actaea|1
+(noun)|Actaea|genus Actaea|magnoliid dicot genus (generic term)
+actaea alba|1
+(noun)|white baneberry|white cohosh|white bead|doll's eyes|Actaea alba|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+actaea rubra|1
+(noun)|red baneberry|redberry|red-berry|snakeberry|Actaea rubra|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+acth|1
+(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+actias|1
+(noun)|Actias|genus Actias|arthropod genus (generic term)
+actias luna|1
+(noun)|luna moth|Actias luna|saturniid (generic term)|saturniid moth (generic term)
+actifed|1
+(noun)|Actifed|antihistamine (generic term)|nasal decongestant (generic term)
+actin|1
+(noun)|simple protein (generic term)
+actinal|1
+(adj)|abactinal (antonym)
+actinaria|1
+(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order (generic term)
+acting|2
+(adj)|impermanent (similar term)|temporary (similar term)
+(noun)|playing|playacting|performing|activity (generic term)|performing arts (generic term)
+acting out|2
+(noun)|effusion (generic term)|gush (generic term)|outburst (generic term)|blowup (generic term)|ebullition (generic term)
+(noun)|display (generic term)
+actinia|2
+(noun)|Actinia|genus Actinia|coelenterate genus (generic term)
+(noun)|actinian|actiniarian|sea anemone (generic term)|anemone (generic term)
+actinian|1
+(noun)|actinia|actiniarian|sea anemone (generic term)|anemone (generic term)
+actiniaria|1
+(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order (generic term)
+actiniarian|1
+(noun)|actinia|actinian|sea anemone (generic term)|anemone (generic term)
+actinic|1
+(adj)|property (related term)
+actinic dermatitis|1
+(noun)|dermatitis (generic term)
+actinic keratosis|1
+(noun)|keratosis (generic term)
+actinic radiation|1
+(noun)|actinic ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+actinic ray|1
+(noun)|actinic radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+actinide|1
+(noun)|actinoid|actinon|group (generic term)|grouping (generic term)
+actinide series|1
+(noun)|series (generic term)
+actinidia|1
+(noun)|Actinidia|genus Actinidia|dilleniid dicot genus (generic term)
+actinidia arguta|1
+(noun)|bower actinidia|tara vine|Actinidia arguta|vine (generic term)
+actinidia chinensis|1
+(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine (generic term)
+actinidia deliciosa|1
+(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine (generic term)
+actinidia polygama|1
+(noun)|silvervine|silver vine|Actinidia polygama|vine (generic term)
+actinidiaceae|1
+(noun)|Actinidiaceae|family Actinidiaceae|dilleniid dicot family (generic term)
+actiniopteris|1
+(noun)|Actiniopteris|genus Actiniopteris|fern genus (generic term)
+actinism|1
+(noun)|property (generic term)
+actinium|1
+(noun)|Ac|atomic number 89|chemical element (generic term)|element (generic term)
+actinoid|2
+(adj)|actinomorphic (similar term)|actinomorphous (similar term)
+(noun)|actinide|actinon|group (generic term)|grouping (generic term)
+actinolite|1
+(noun)|amphibole (generic term)
+actinomeris|1
+(noun)|Actinomeris|genus Actinomeris|asterid dicot genus (generic term)
+actinomeris alternifolia|1
+(noun)|wingstem|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+actinometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+actinometric|1
+(adj)|actinometrical|measurement|measuring|measure|mensuration (related term)
+actinometrical|1
+(adj)|actinometric|measurement|measuring|measure|mensuration (related term)
+actinometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+actinomorphic|1
+(adj)|actinomorphous|actinoid (similar term)|zygomorphic (antonym)
+actinomorphous|1
+(adj)|actinomorphic|actinoid (similar term)|zygomorphic (antonym)
+actinomyces|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+actinomycetaceae|1
+(noun)|Actinomycetaceae|family Actinomycetaceae|bacteria family (generic term)
+actinomycetal|1
+(adj)|actinomycetous|eubacteria|eubacterium|true bacteria (related term)
+actinomycetales|1
+(noun)|Actinomycetales|order Actinomycetales|animal order (generic term)
+actinomycete|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+actinomycetous|1
+(adj)|actinomycetal|eubacteria|eubacterium|true bacteria (related term)
+actinomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+actinomycosis|1
+(noun)|zoonosis (generic term)|zoonotic disease (generic term)
+actinomycotic|1
+(adj)|zoonosis|zoonotic disease (related term)
+actinomyxidia|1
+(noun)|Actinomyxidia|order Actinomyxidia|animal order (generic term)
+actinomyxidian|1
+(noun)|sporozoan (generic term)
+actinon|1
+(noun)|actinoid|actinide|group (generic term)|grouping (generic term)
+actinopod|1
+(noun)|sarcodinian (generic term)|sarcodine (generic term)
+actinopoda|1
+(noun)|Actinopoda|subclass Actinopoda|class (generic term)
+actinotherapy|1
+(noun)|radiotherapy|radiation therapy|radiation|irradiation|therapy (generic term)
+actinozoa|1
+(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class (generic term)
+actinozoan|1
+(noun)|anthozoan|coelenterate (generic term)|cnidarian (generic term)
+action|12
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|activity|activeness|state (generic term)|inactiveness (antonym)|inactivity (antonym)|inaction (antonym)
+(noun)|legal action|action at law|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|group action (generic term)
+(noun)|military action|group action (generic term)
+(noun)|natural process|natural action|activity|process (generic term)|physical process (generic term)
+(noun)|plot (generic term)
+(noun)|action mechanism|mechanism (generic term)
+(noun)|drive (generic term)
+(noun)|work (generic term)
+(verb)|sue|litigate|process|challenge (generic term)
+(verb)|carry through|accomplish|execute|carry out|fulfill|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+action at law|1
+(noun)|legal action|action|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+action mechanism|1
+(noun)|action|mechanism (generic term)
+action officer|1
+(noun)|case officer (generic term)
+action painting|1
+(noun)|Abstract Expressionism|artistic movement (generic term)|art movement (generic term)
+action plant|1
+(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|humble plant|Mimosa pudica|mimosa (generic term)
+action potential|1
+(noun)|nerve impulse (generic term)|impulse (generic term)
+action replay|1
+(noun)|replay|reproduction (generic term)|replication (generic term)
+action spectrum|1
+(noun)|spectrum (generic term)
+actionable|1
+(adj)|unjust (similar term)
+actitis|1
+(noun)|Actitis|genus Actitis|bird genus (generic term)
+actitis hypoleucos|1
+(noun)|European sandpiper|Actitis hypoleucos|sandpiper (generic term)
+actitis macularia|1
+(noun)|spotted sandpiper|Actitis macularia|sandpiper (generic term)
+actium|2
+(noun)|Actium|town (generic term)
+(noun)|Actium|naval battle (generic term)
+activase|1
+(noun)|tissue plasminogen activator|Activase|thrombolytic (generic term)|thrombolytic agent (generic term)|clot buster (generic term)
+activate|4
+(verb)|trip|actuate|trigger|set off|spark off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|inactivate (antonym)
+(verb)|aerate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+activated|3
+(adj)|treated (similar term)
+(adj)|excited|reactive (similar term)
+(adj)|active (similar term)
+activated carbon|1
+(noun)|activated charcoal|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+activated charcoal|1
+(noun)|activated carbon|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+activating|2
+(adj)|actuating|causative (similar term)
+(noun)|energizing|activation|activity (generic term)
+activating agent|1
+(noun)|activator (generic term)
+activation|3
+(noun)|stimulation (generic term)|inactivation (antonym)
+(noun)|energizing|activating|activity (generic term)
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)|deactivation (antonym)
+activation energy|1
+(noun)|energy of activation|energy (generic term)
+activator|1
+(noun)|substance (generic term)|matter (generic term)|inhibitor (antonym)
+active|17
+(adj)|progressive (similar term)|inactive (antonym)
+(adj)|combat-ready|fighting|operational (similar term)
+(adj)|activist (similar term)|activistic (similar term)|hands-on (similar term)|proactive (similar term)|passive (antonym)
+(adj)|participating|involved (similar term)
+(adj)|about (similar term)|astir (similar term)|acrobatic (similar term)|athletic (similar term)|gymnastic (similar term)|agile (similar term)|nimble (similar term)|quick (similar term)|spry (similar term)|hot (similar term)|hyperactive (similar term)|overactive (similar term)|lively (similar term)|on the go (similar term)|sporty (similar term)|energetic (related term)|lively (related term)|inactive (antonym)
+(adj)|activated (similar term)|counteractive (similar term)|surface-active (similar term)|inactive (antonym)
+(adj)|brisk (similar term)|bustling (similar term)|busy (similar term)|going (similar term)|open (similar term)|springy (similar term)|inactive (antonym)
+(adj)|alive|existent (similar term)|existing (similar term)
+(adj)|quiet (antonym)
+(adj)|passive (antonym)
+(adj)|dynamic|stative (antonym)
+(adj)|alive (similar term)|live (similar term)|live (related term)|extinct (antonym)
+(adj)|eruptive (similar term)|dormant (antonym)
+(adj)|activated (similar term)|inactive (antonym)
+(noun)|active agent|chemical agent (generic term)
+(noun)|active voice|voice (generic term)|passive voice (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|contemplative (antonym)
+active agent|1
+(noun)|active|chemical agent (generic term)
+active air defense|1
+(noun)|air defense (generic term)
+active application|1
+(noun)|application (generic term)|application program (generic term)|applications programme (generic term)
+active birth|1
+(noun)|childbirth (generic term)|childbearing (generic term)|accouchement (generic term)|vaginal birth (generic term)
+active citizen|1
+(noun)|citizen (generic term)
+active immunity|1
+(noun)|acquired immunity (generic term)
+active matrix screen|1
+(noun)|liquid crystal display (generic term)|LCD (generic term)
+active placebo|1
+(noun)|placebo (generic term)
+active site|1
+(noun)|site (generic term)|situation (generic term)
+active transport|1
+(noun)|transport (generic term)
+active trust|1
+(noun)|trust (generic term)|passive trust (antonym)
+active voice|1
+(noun)|active|voice (generic term)|passive voice (antonym)
+actively|1
+(adv)|passively (antonym)
+activeness|2
+(noun)|action|activity|state (generic term)|inactiveness (antonym)|inactivity (antonym)|inaction (antonym)
+(noun)|activity|trait (generic term)|inactiveness (antonym)
+activewear|1
+(noun)|sportswear|athletic wear|attire (generic term)|garb (generic term)|dress (generic term)
+activism|1
+(noun)|policy (generic term)
+activist|2
+(adj)|activistic|active (similar term)
+(noun)|militant|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+activistic|1
+(adj)|activist|active (similar term)
+activity|6
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)|inactivity (antonym)
+(noun)|action|activeness|state (generic term)|inactiveness (antonym)|inactivity (antonym)|inaction (antonym)
+(noun)|bodily process|body process|bodily function|organic process (generic term)|biological process (generic term)
+(noun)|capability (generic term)|capacity (generic term)
+(noun)|natural process|natural action|action|process (generic term)|physical process (generic term)
+(noun)|activeness|trait (generic term)|inactiveness (antonym)
+actomyosin|1
+(noun)|protein (generic term)
+actor|2
+(noun)|histrion|player|thespian|role player|performer (generic term)|performing artist (generic term)
+(noun)|doer|worker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+actor's agent|1
+(noun)|theatrical agent|business agent (generic term)
+actor's assistant|1
+(noun)|dresser|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+actor's line|1
+(noun)|speech|words|line (generic term)
+actress|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+acts|1
+(noun)|Acts of the Apostles|Acts|book (generic term)
+acts of the apostles|1
+(noun)|Acts of the Apostles|Acts|book (generic term)
+actual|6
+(adj)|existent|actualized (similar term)|actualised (similar term)|effective (similar term)|potential (antonym)
+(adj)|real (similar term)|existent (similar term)
+(adj)|genuine|literal|real|true (similar term)
+(adj)|factual|real (similar term)|existent (similar term)
+(adj)|de facto|factual|de jure (antonym)
+(adj)|current (similar term)
+actual damages|1
+(noun)|compensatory damages|general damages|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+actual eviction|1
+(noun)|eviction (generic term)|dispossession (generic term)|legal ouster (generic term)
+actual possession|1
+(noun)|possession (generic term)|ownership (generic term)
+actual sin|1
+(noun)|sin (generic term)|sinning (generic term)|original sin (antonym)
+actualisation|1
+(noun)|realization|realisation|actualization|creating by mental acts (generic term)
+actualise|2
+(verb)|realize|realise|actualize|substantiate|make (generic term)|create (generic term)
+(verb)|actualize|represent (generic term)
+actualised|1
+(adj)|actualized|actual (similar term)|existent (similar term)
+actuality|1
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)
+actualization|1
+(noun)|realization|realisation|actualisation|creating by mental acts (generic term)
+actualize|2
+(verb)|realize|realise|actualise|substantiate|make (generic term)|create (generic term)
+(verb)|actualise|represent (generic term)
+actualized|1
+(adj)|actualised|actual (similar term)|existent (similar term)
+actually|2
+(adv)|really
+(adv)|in reality
+actuarial|1
+(adj)|calculator|reckoner|figurer|estimator|computer (related term)
+actuarial table|1
+(noun)|statistical table|table (generic term)|tabular array (generic term)
+actuary|1
+(noun)|statistician|calculator (generic term)|reckoner (generic term)|figurer (generic term)|estimator (generic term)|computer (generic term)
+actuate|2
+(verb)|trip|trigger|activate|set off|spark off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+(verb)|motivate|propel|move|prompt|incite|cause (generic term)|do (generic term)|make (generic term)
+actuated|1
+(adj)|motivated (similar term)
+actuating|1
+(adj)|activating|causative (similar term)
+actuation|1
+(noun)|propulsion|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+actuator|1
+(noun)|mechanism (generic term)
+actus reus|1
+(noun)|wrongdoing|wrongful conduct|misconduct|activity (generic term)
+acuate|1
+(adj)|acute|sharp|needlelike|pointed (similar term)
+acuity|2
+(noun)|visual acuity|sharp-sightedness|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+(noun)|acuteness|sharpness|keenness|intelligence (generic term)
+acular|1
+(noun)|ketorolac tromethamine|Acular|Toradol|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+aculea|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+aculeate|1
+(adj)|aculeated|stinger (related term)
+aculeated|1
+(adj)|aculeate|stinger (related term)
+aculeus|2
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|stinger (generic term)
+acumen|2
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|insightfulness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+acuminate|2
+(adj)|simple (similar term)|unsubdivided (similar term)
+(verb)|sharpen (generic term)|taper (generic term)|point (generic term)
+acuminate leaf|1
+(noun)|simple leaf (generic term)
+acupressure|1
+(noun)|G-Jo|shiatsu|treatment (generic term)
+acupuncture|1
+(noun)|stylostixis|treatment (generic term)
+acute|7
+(adj)|subacute (similar term)|chronic (antonym)
+(adj)|intense|sharp (similar term)
+(adj)|discriminating|incisive|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive (similar term)
+(adj)|obtuse (antonym)
+(adj)|acuate|sharp|needlelike|pointed (similar term)
+(adj)|critical (similar term)
+(noun)|acute accent|ague|accent (generic term)|accent mark (generic term)
+acute-angled triangle|1
+(noun)|acute triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+acute accent|1
+(noun)|acute|ague|accent (generic term)|accent mark (generic term)
+acute angle|1
+(noun)|oblique angle (generic term)
+acute anterior poliomyelitis|1
+(noun)|poliomyelitis|polio|infantile paralysis|infectious disease (generic term)
+acute brain disorder|1
+(noun)|acute organic brain syndrome|disorder (generic term)|upset (generic term)
+acute gastritis|1
+(noun)|gastritis (generic term)
+acute glaucoma|1
+(noun)|angle-closure glaucoma|glaucoma (generic term)
+acute glossitis|1
+(noun)|glossitis (generic term)
+acute hemorrhagic encephalitis|1
+(noun)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+acute inclusion body encephalitis|1
+(noun)|herpes simplex encephalitis|herpes encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+acute kidney failure|1
+(noun)|acute renal failure|renal failure (generic term)|kidney failure (generic term)
+acute leukemia|1
+(noun)|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+acute lymphoblastic leukemia|1
+(noun)|acute lymphocytic leukemia|acute leukemia (generic term)
+acute lymphocytic leukemia|1
+(noun)|acute lymphoblastic leukemia|acute leukemia (generic term)
+acute myelocytic leukemia|1
+(noun)|acute myeloid leukemia|myelocytic leukemia (generic term)|granulocytic leukemia (generic term)|acute leukemia (generic term)
+acute myeloid leukemia|1
+(noun)|acute myelocytic leukemia|myelocytic leukemia (generic term)|granulocytic leukemia (generic term)|acute leukemia (generic term)
+acute organic brain syndrome|1
+(noun)|acute brain disorder|disorder (generic term)|upset (generic term)
+acute pyelonephritis|1
+(noun)|pyelonephritis (generic term)
+acute renal failure|1
+(noun)|acute kidney failure|renal failure (generic term)|kidney failure (generic term)
+acute schizophrenic episode|1
+(noun)|reactive schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+acute triangle|1
+(noun)|acute-angled triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+acutely|3
+(adv)|chronically (antonym)
+(adv)|sharply|sharp
+(adv)|astutely|shrewdly|sagaciously|sapiently
+acuteness|3
+(noun)|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+(noun)|acuity|sharpness|keenness|intelligence (generic term)
+(noun)|sharpness (generic term)|keenness (generic term)|obtuseness (antonym)
+acyclic|2
+(adj)|cyclic (antonym)
+(adj)|open-chain|aliphatic (similar term)|cyclic (antonym)
+acyclovir|1
+(noun)|Zovirax|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+acyl|1
+(noun)|acyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+acyl anhydrides|1
+(noun)|acid anhydrides|organic compound (generic term)
+acyl group|1
+(noun)|acyl|group (generic term)|radical (generic term)|chemical group (generic term)
+acyl halide|1
+(noun)|acid halide|organic compound (generic term)
+acylation|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+acylglycerol|1
+(noun)|glyceride|glyceryl ester (generic term)|animal oil (generic term)
+ad|2
+(noun)|advertisement|advertizement|advertising|advertizing|advert|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(adv)|AD|A.D.|anno Domini
+ad-lib|4
+(adj)|spontaneous|unwritten|unscripted (similar term)
+(adj)|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared (similar term)
+(noun)|remark (generic term)|comment (generic term)
+(verb)|improvise|improvize|extemporize|extemporise|perform (generic term)|execute (generic term)|do (generic term)
+ad agency|1
+(noun)|advertising agency|agency (generic term)
+ad blitz|1
+(noun)|advertising campaign|ad campaign|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+ad campaign|1
+(noun)|advertising campaign|ad blitz|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+ad hoc|2
+(adj)|unplanned (similar term)
+(adj)|specific (similar term)
+ad hominem|1
+(adj)|personal (similar term)
+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 (generic term)|excise tax (generic term)
+ada|1
+(noun)|adenosine deaminase|ADA|enzyme (generic term)
+ada-scid|1
+(noun)|ADA-SCID|severe combined immunodeficiency (generic term)|severe combined immunodeficiency disease (generic term)|SCID (generic term)
+adactylia|1
+(noun)|adactyly|adactylism|meromelia (generic term)
+adactylism|1
+(noun)|adactylia|adactyly|meromelia (generic term)
+adactylous|1
+(adj)|meromelia (related term)
+adactyly|1
+(noun)|adactylia|adactylism|meromelia (generic term)
+adad|1
+(noun)|Adad|Semitic deity (generic term)
+adage|1
+(noun)|proverb|saw|byword|saying (generic term)|expression (generic term)|locution (generic term)
+adagio|3
+(adj)|slow (similar term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)|passage (generic term)|musical passage (generic term)
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+adalia|2
+(noun)|Antalya|Adalia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Adalia|genus Adalia|arthropod genus (generic term)
+adalia bipunctata|1
+(noun)|two-spotted ladybug|Adalia bipunctata|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+adam|3
+(noun)|Adam|man (generic term)|adult male (generic term)
+(noun)|Adam|Robert Adam|architect (generic term)|designer (generic term)
+(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+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 (generic term)|bush (generic term)
+(noun)|thyroid cartilage|Adam's apple|cartilage (generic term)|gristle (generic term)
+adam's needle|1
+(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca (generic term)
+adam's needle-and-thread|1
+(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca (generic term)
+adam's peak|1
+(noun)|Adam's Peak|Samanala|mountain peak (generic term)
+adam-and-eve|1
+(noun)|puttyroot|Aplectrum hyemale|orchid (generic term)|orchidaceous plant (generic term)
+adam smith|1
+(noun)|Smith|Adam Smith|economist (generic term)|economic expert (generic term)
+adamance|1
+(noun)|obduracy|unyieldingness|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+adamant|2
+(adj)|adamantine|inexorable|intransigent|inflexible (similar term)
+(noun)|diamond|carbon (generic term)|C (generic term)|atomic number 6 (generic term)|transparent gem (generic term)
+adamantine|3
+(adj)|carbon|C|atomic number 6|transparent gem (related term)
+(adj)|hard (similar term)
+(adj)|adamant|inexorable|intransigent|inflexible (similar term)
+adams|4
+(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader (generic term)
+(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Adams|Mount Adams|mountain peak (generic term)
+adams-stokes syndrome|1
+(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+adana|1
+(noun)|Adana|Seyhan|city (generic term)|metropolis (generic term)|urban center (generic term)
+adansonia|1
+(noun)|Adansonia|genus Adansonia|dilleniid dicot genus (generic term)
+adansonia digitata|1
+(noun)|baobab|monkey-bread tree|Adansonia digitata|angiospermous tree (generic term)|flowering tree (generic term)
+adansonia gregorii|1
+(noun)|cream-of-tartar tree|sour gourd|Adansonia gregorii|angiospermous tree (generic term)|flowering tree (generic term)
+adapa|1
+(noun)|Adapa|Semitic deity (generic term)
+adapid|1
+(noun)|Adapid|Adapid group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+adapid group|1
+(noun)|Adapid|Adapid group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+adapin|1
+(noun)|doxepin|doxepin hydrochloride|Adapin|Sinequan|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+adapt|2
+(verb)|accommodate|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|adjust|conform|change (generic term)
+adaptability|1
+(noun)|ability (generic term)|unadaptability (antonym)
+adaptable|1
+(adj)|adjustable (similar term)|all-mains (similar term)|convertible (similar term)|elastic (similar term)|flexible (similar term)|pliable (similar term)|pliant (similar term)|filmable (similar term)|universal (similar term)|variable (similar term)|unadaptable (antonym)
+adaptation|3
+(noun)|version|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|adaption|adjustment|organic process (generic term)|biological process (generic term)
+(noun)|alteration (generic term)|modification (generic term)|adjustment (generic term)
+adaptational|1
+(adj)|adaptive (similar term)|adaptative (similar term)
+adaptative|1
+(adj)|adaptive|accommodative (similar term)|reconciling (similar term)|adaptational (similar term)|adjustive (similar term)|maladaptive (antonym)
+adapted|1
+(adj)|altered|modified (similar term)
+adapter|2
+(noun)|arranger|transcriber|musician (generic term)
+(noun)|adaptor|device (generic term)
+adaption|1
+(noun)|adaptation|adjustment|organic process (generic term)|biological process (generic term)
+adaptive|1
+(adj)|adaptative|accommodative (similar term)|reconciling (similar term)|adaptational (similar term)|adjustive (similar term)|maladaptive (antonym)
+adaptive radiation|1
+(noun)|radiation (generic term)
+adaptor|1
+(noun)|adapter|device (generic term)
+adar|1
+(noun)|Adar|Jewish calendar month (generic term)
+adar sheni|1
+(noun)|Veadar|Adar Sheni|Jewish calendar month (generic term)
+adaxial|1
+(adj)|ventral|abaxial (antonym)
+adaxially|1
+(adv)|abaxially (antonym)
+add|7
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+(verb)|increase (generic term)|take away (antonym)
+(verb)|append|supply|state (generic term)|say (generic term)|tell (generic term)
+(verb)|lend|impart|bestow|contribute|bring|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|add together|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|add up (related term)|subtract (antonym)
+(verb)|total|tot|tot up|sum|sum up|summate|tote up|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+(verb)|form (generic term)|constitute (generic term)|make (generic term)
+add-in|1
+(noun)|circuit board|circuit card|board|card|plug-in|printed circuit (generic term)
+add-on|2
+(noun)|addition|improver|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|accessory|appurtenance|supplement|component (generic term)|constituent (generic term)|element (generic term)
+add on|2
+(verb)|add (generic term)
+(verb)|append|supplement|affix|attach (generic term)
+add to|1
+(verb)|increase (generic term)
+add together|2
+(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+(verb)|add|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|add up (related term)|subtract (antonym)
+add up|4
+(verb)|come|amount|become (generic term)|turn (generic term)
+(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|add together|tally|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+(verb)|total|number|come|amount|be (generic term)
+(verb)|make sense|be (generic term)
+addable|1
+(adj)|addible|additive (similar term)
+addax|1
+(noun)|Addax nasomaculatus|antelope (generic term)
+addax nasomaculatus|1
+(noun)|addax|Addax nasomaculatus|antelope (generic term)
+addend|1
+(noun)|number (generic term)
+addendum|1
+(noun)|supplement|postscript|matter (generic term)
+adder|3
+(noun)|calculator (generic term)|reckoner (generic term)|figurer (generic term)|estimator (generic term)|computer (generic term)
+(noun)|calculator (generic term)|calculating machine (generic term)
+(noun)|common viper|Vipera berus|viper (generic term)
+adder's fern|1
+(noun)|common polypody|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody (generic term)
+adder's tongue|1
+(noun)|adder's tongue fern|fern (generic term)
+adder's tongue fern|1
+(noun)|adder's tongue|fern (generic term)
+addible|1
+(adj)|addable|additive (similar term)
+addict|3
+(noun)|nut|freak|junkie|junky|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+(noun)|drug user (generic term)|substance abuser (generic term)|user (generic term)
+(verb)|hook|habituate (generic term)|accustom (generic term)
+addicted|1
+(adj)|alcoholic (similar term)|alcohol-dependent (similar term)|confirmed (similar term)|habitual (similar term)|inveterate (similar term)|dependent (similar term)|dependant (similar term)|drug-addicted (similar term)|hooked (similar term)|strung-out (similar term)|unaddicted (antonym)
+addiction|3
+(noun)|dependence|dependance|dependency|habituation|physiological state (generic term)|physiological condition (generic term)
+(noun)|craving (generic term)
+(noun)|award (generic term)|awarding (generic term)
+addictive|1
+(adj)|habit-forming|nonaddictive (antonym)
+adding machine|1
+(noun)|totalizer|totaliser|calculator (generic term)|calculating machine (generic term)
+addis ababa|1
+(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital (generic term)
+addison's disease|1
+(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|hypoadrenocorticism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+addison's syndrome|1
+(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|hypoadrenocorticism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+addition|6
+(noun)|add-on|improver|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|increase (generic term)|step-up (generic term)|subtraction (antonym)
+(noun)|increase|gain|indefinite quantity (generic term)
+(noun)|accession|acquisition (generic term)
+(noun)|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+(noun)|summation|plus|arithmetic operation (generic term)
+addition reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+additional|1
+(adj)|extra|additive (similar term)
+additionally|1
+(adv)|in addition|to boot
+additions to esther|1
+(noun)|Additions to Esther|book (generic term)
+additive|3
+(adj)|accumulative (similar term)|cumulative (similar term)|addable (similar term)|addible (similar term)|extra (similar term)|additional (similar term)|complemental (similar term)|complementary (similar term)|completing (similar term)|incremental (similar term)|intercalary (similar term)|summational (similar term)|summative (similar term)|supplementary (similar term)|supplemental (similar term)|subtractive (antonym)
+(adj)|linear|bilinear (similar term)|nonlinear (antonym)
+(noun)|addition (generic term)|add-on (generic term)|improver (generic term)
+additive inverse|1
+(noun)|inverse (generic term)|opposite (generic term)
+addle|2
+(verb)|muddle|puddle|jumble (generic term)|confuse (generic term)|mix up (generic term)
+(verb)|spoil (generic term)|go bad (generic term)
+addle-head|1
+(noun)|addlehead|loon|birdbrain|misfit (generic term)
+addlebrained|1
+(adj)|addlepated|potty|puddingheaded|muddleheaded|confused (similar term)
+addled|2
+(adj)|stale (similar term)
+(adj)|befuddled|muddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused (similar term)
+addlehead|1
+(noun)|addle-head|loon|birdbrain|misfit (generic term)
+addlepated|1
+(adj)|addlebrained|potty|puddingheaded|muddleheaded|confused (similar term)
+address|18
+(noun)|computer address|code (generic term)|computer code (generic term)
+(noun)|geographic point (generic term)|geographical point (generic term)
+(noun)|speech|speech act (generic term)
+(noun)|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|street sign (generic term)
+(noun)|destination|name and address|direction (generic term)|instruction (generic term)
+(noun)|stance (generic term)
+(noun)|savoir-faire|tact (generic term)|tactfulness (generic term)
+(verb)|turn to|communicate (generic term)|intercommunicate (generic term)
+(verb)|speak
+(verb)|direct|label (generic term)
+(verb)|target (generic term)|aim (generic term)|place (generic term)|direct (generic term)|point (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|call|address (generic term)|turn to (generic term)
+(verb)|access (generic term)
+(verb)|cover|treat|handle|plow|deal|broach (generic term)|initiate (generic term)
+(verb)|accost|come up to|come (generic term)|come up (generic term)
+(verb)|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+addressable|1
+(adj)|available (similar term)
+addressed|1
+(adj)|self-addressed (similar term)|unaddressed (antonym)
+addressee|1
+(noun)|recipient (generic term)|receiver (generic term)
+addressing machine|1
+(noun)|Addressograph|printer (generic term)|printing machine (generic term)
+addressograph|1
+(noun)|addressing machine|Addressograph|printer (generic term)|printing machine (generic term)
+adduce|1
+(verb)|abduce|cite|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+adducent|1
+(adj)|adductive|adducting|abducent (antonym)
+adducer|1
+(noun)|discussant (generic term)
+adducing|1
+(noun)|argument (generic term)|statement (generic term)
+adduct|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)|abduct (antonym)
+adducting|1
+(adj)|adducent|adductive|abducent (antonym)
+adduction|1
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+adductive|1
+(adj)|adducent|adducting|abducent (antonym)
+adductor|1
+(noun)|adductor muscle|skeletal muscle (generic term)|striated muscle (generic term)
+adductor muscle|1
+(noun)|adductor|skeletal muscle (generic term)|striated muscle (generic term)
+ade|1
+(noun)|fruit drink|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+adelaide|1
+(noun)|Adelaide|state capital (generic term)
+adelges|1
+(noun)|Adelges|genus Adelges|arthropod genus (generic term)
+adelges abietis|1
+(noun)|spruce gall aphid|Adelges abietis|adelgid (generic term)
+adelges piceae|1
+(noun)|balsam woolly aphid|Adelges piceae|adelgid (generic term)
+adelgid|1
+(noun)|plant louse (generic term)|louse (generic term)
+adelgidae|1
+(noun)|Adelgidae|family Adelgidae|arthropod family (generic term)
+adelie|1
+(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin (generic term)
+adelie coast|1
+(noun)|Adelie Land|Terre Adelie|Adelie Coast|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+adelie land|1
+(noun)|Adelie Land|Terre Adelie|Adelie Coast|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+adelie penguin|1
+(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin (generic term)
+adeline virginia stephen woolf|1
+(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer (generic term)|author (generic term)
+aden|1
+(noun)|Aden|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+aden-abyan islamic army|1
+(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+adenanthera|1
+(noun)|Adenanthera|genus Adenanthera|rosid dicot genus (generic term)
+adenanthera pavonina|1
+(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree (generic term)
+adenauer|1
+(noun)|Adenauer|Konrad Adenauer|statesman (generic term)|solon (generic term)|national leader (generic term)
+adenine|1
+(noun)|A|purine (generic term)
+adenitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+adenium|1
+(noun)|Adenium|genus Adenium|dicot genus (generic term)|magnoliopsid genus (generic term)
+adenium multiflorum|1
+(noun)|impala lily|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+adenium obesum|1
+(noun)|impala lily|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+adenocarcinoma|1
+(noun)|glandular cancer|glandular carcinoma|carcinoma (generic term)
+adenocarcinomatous|1
+(adj)|carcinoma (related term)
+adenohypophysis|1
+(noun)|anterior pituitary|anterior pituitary gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+adenoid|2
+(adj)|lymphatic tissue|lymphoid tissue (related term)
+(noun)|pharyngeal tonsil|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+adenoidal|2
+(adj)|lymphatic tissue|lymphoid tissue (related term)
+(adj)|pinched|nasal|high (similar term)|high-pitched (similar term)
+adenoidectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+adenoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+adenomatous polyp|1
+(noun)|polyp (generic term)|polypus (generic term)
+adenomegaly|1
+(noun)|hypertrophy (generic term)
+adenomyosarcoma|1
+(noun)|Wilms' tumor|Wilms tumour|nephroblastoma|embryoma of the kidney|sarcoma (generic term)
+adenomyosis|1
+(noun)|endometriosis|pathology (generic term)
+adenopathy|1
+(noun)|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+adenosine|1
+(noun)|nucleoside (generic term)
+adenosine deaminase|1
+(noun)|ADA|enzyme (generic term)
+adenosine diphosphate|1
+(noun)|ADP|nucleotide (generic term)
+adenosine monophosphate|1
+(noun)|AMP|adenylic acid|nucleotide (generic term)
+adenosine triphosphate|1
+(noun)|ATP|nucleotide (generic term)
+adenosis|1
+(noun)|glandular disease|gland disease|glandular disorder|disorder (generic term)|upset (generic term)
+adenota|1
+(noun)|Adenota|genus Adenota|mammal genus (generic term)
+adenota vardoni|1
+(noun)|puku|Adenota vardoni|antelope (generic term)
+adenovirus|1
+(noun)|animal virus (generic term)
+adenylic acid|1
+(noun)|adenosine monophosphate|AMP|nucleotide (generic term)
+adept|2
+(adj)|expert|good|practiced|proficient|skillful|skilful|skilled (similar term)
+(noun)|ace|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+adeptness|1
+(noun)|adroitness|deftness|facility|quickness|skillfulness (generic term)
+adequacy|2
+(noun)|adequateness|satisfactoriness (generic term)|inadequacy (antonym)
+(noun)|sufficiency|quality (generic term)|inadequacy (antonym)|insufficiency (antonym)
+adequate|3
+(adj)|adequate to (similar term)|capable (similar term)|equal to (similar term)|up to (similar term)|competent (similar term)|satisfactory (related term)|inadequate (antonym)
+(adj)|decent|enough|sufficient (similar term)
+(adj)|passable|fair to middling|tolerable|satisfactory (similar term)
+adequate to|1
+(adj)|capable|equal to|up to|adequate (similar term)
+adequately|1
+(adv)|inadequately (antonym)
+adequateness|1
+(noun)|adequacy|satisfactoriness (generic term)|inadequacy (antonym)
+ader wax|1
+(noun)|earth wax|mineral wax|ozokerite|ozocerite|mineral (generic term)
+adermin|1
+(noun)|vitamin B6|pyridoxine|pyridoxal|pyridoxamine|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+adh|1
+(noun)|vasopressin|antidiuretic hormone|ADH|Pitressin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+adhd|1
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+adhere|6
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|follow through (generic term)|follow up (generic term)|follow out (generic term)|carry out (generic term)|implement (generic term)|put through (generic term)|go through (generic term)
+(verb)|cling|cleave|stick|cohere|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|stick|adopt (generic term)|follow (generic term)|espouse (generic term)
+(verb)|stand by|stick by|stick|be (generic term)
+(verb)|hold fast|bond|bind|stick|stick to|attach (generic term)
+adherence|2
+(noun)|attachment|adhesion|support (generic term)
+(noun)|adhesiveness|adhesion|bond|stickiness (generic term)
+adherent|2
+(adj)|adhesive (similar term)
+(noun)|disciple|follower (generic term)
+adhesion|4
+(noun)|pathology (generic term)
+(noun)|scar tissue (generic term)
+(noun)|adhesiveness|adherence|bond|stickiness (generic term)
+(noun)|attachment|adherence|support (generic term)
+adhesion contract|1
+(noun)|contract of adhesion|contract (generic term)
+adhesive|2
+(adj)|adherent (similar term)|agglutinate (similar term)|agglutinative (similar term)|bondable (similar term)|coherent (similar term)|tenacious (similar term)|cohesive (similar term)|gluey (similar term)|glutinous (similar term)|gummy (similar term)|mucilaginous (similar term)|pasty (similar term)|sticky (similar term)|viscid (similar term)|viscous (similar term)|gooey (similar term)|icky (similar term)|gum-like (similar term)|gummed (similar term)|gummy (similar term)|pitchy (similar term)|resinous (similar term)|resiny (similar term)|tarry (similar term)|self-sealing (similar term)|stick-on (similar term)|sticky (similar term)|nonadhesive (antonym)
+(noun)|adhesive material|adhesive agent|material (generic term)|stuff (generic term)
+adhesive agent|1
+(noun)|adhesive material|adhesive|material (generic term)|stuff (generic term)
+adhesive bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+adhesive friction|1
+(noun)|grip|traction|friction (generic term)|rubbing (generic term)
+adhesive material|1
+(noun)|adhesive agent|adhesive|material (generic term)|stuff (generic term)
+adhesive plaster|1
+(noun)|plaster|sticking plaster|adhesive tape (generic term)
+adhesive tape|1
+(noun)|tape (generic term)
+adhesiveness|1
+(noun)|adhesion|adherence|bond|stickiness (generic term)
+adhocracy|1
+(noun)|organization (generic term)|organisation (generic term)
+adi granth|1
+(noun)|Adi Granth|Granth|Granth Sahib|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+adiabatic|1
+(adj)|diabatic (antonym)
+adiabatic process|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+adiantaceae|1
+(noun)|Adiantaceae|family Adiantaceae|fern family (generic term)
+adiantum|1
+(noun)|Adiantum|genus Adiantum|fern genus (generic term)
+adiantum bellum|1
+(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair (generic term)|maidenhair fern (generic term)
+adiantum capillus-veneris|1
+(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+adiantum pedatum|1
+(noun)|American maidenhair fern|five-fingered maidenhair fern|Adiantum pedatum|maidenhair (generic term)|maidenhair fern (generic term)
+adiantum tenerum|1
+(noun)|brittle maidenhair|brittle maidenhair fern|Adiantum tenerum|maidenhair (generic term)|maidenhair fern (generic term)
+adiantum tenerum farleyense|1
+(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair (generic term)|brittle maidenhair fern (generic term)|Adiantum tenerum (generic term)
+adience|1
+(noun)|urge (generic term)|impulse (generic term)|abience (antonym)
+adient|1
+(adj)|urge|impulse (related term)|abient (antonym)
+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 (generic term)|word of farewell (generic term)
+adige|1
+(noun)|Adige|River Adige|river (generic term)
+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 (generic term)|word of farewell (generic term)
+adipic acid|1
+(noun)|hexanedioic acid|carboxylic acid (generic term)
+adipose|1
+(adj)|fatty (similar term)|fat (similar term)
+adipose cell|1
+(noun)|fat cell|somatic cell (generic term)|vegetative cell (generic term)
+adipose tissue|1
+(noun)|fat|fatty tissue|animal tissue (generic term)
+adipose tumor|1
+(noun)|lipoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+adiposeness|1
+(noun)|adiposity|fattiness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+adiposis|1
+(noun)|corpulence|overweight|stoutness|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+adiposity|1
+(noun)|adiposeness|fattiness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+adirondack mountains|1
+(noun)|Adirondacks|Adirondack Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+adirondacks|1
+(noun)|Adirondacks|Adirondack Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+adit|1
+(noun)|passage (generic term)
+aditi|1
+(noun)|Aditi|Hindu deity (generic term)
+aditya|1
+(noun)|Aditya|Hindu deity (generic term)
+adjacency|1
+(noun)|contiguity|contiguousness|nearness (generic term)|closeness (generic term)
+adjacent|3
+(adj)|next|side by side|close (similar term)
+(adj)|abutting|adjoining|conterminous|contiguous|neighboring|connected (similar term)
+(adj)|near (similar term)|close (similar term)|nigh (similar term)
+adjectival|1
+(adj)|adjective|major form class (related term)
+adjective|4
+(adj)|adjectival|major form class (related term)
+(adj)|procedural|substantive (antonym)
+(noun)|modifier (generic term)|qualifier (generic term)
+(noun)|major form class (generic term)
+adjoin|3
+(verb)|border|edge|abut|march|butt|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|touch|meet|contact
+(verb)|add (generic term)
+adjoining|1
+(adj)|abutting|adjacent|conterminous|contiguous|neighboring|connected (similar term)
+adjoining room|1
+(noun)|hotel room (generic term)
+adjourn|2
+(verb)|recess|break up|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|withdraw|retire|close up (generic term)|close (generic term)|fold (generic term)|shut down (generic term)|close down (generic term)
+adjournment|2
+(noun)|dissolution|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|postponement (generic term)|deferment (generic term)|deferral (generic term)
+adjudge|1
+(verb)|declare|hold|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+adjudicate|2
+(verb)|judge|try|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|decide|settle|resolve|end (generic term)|terminate (generic term)
+adjudication|1
+(noun)|judgment (generic term)|judgement (generic term)|assessment (generic term)
+adjudicative|1
+(adj)|adjudicatory|judgment|judgement|assessment (related term)
+adjudicator|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+adjudicatory|1
+(adj)|adjudicative|judgment|judgement|assessment (related term)
+adjunct|5
+(adj)|accessory|ancillary|adjuvant|appurtenant|auxiliary|subsidiary|supportive (similar term)
+(adj)|assistant|subordinate (similar term)|low-level (similar term)
+(noun)|inessential (generic term)|nonessential (generic term)
+(noun)|associate (generic term)
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+adjunction|1
+(noun)|junction|joining (generic term)|connection (generic term)|connexion (generic term)
+adjunctive|1
+(adj)|connected (similar term)
+adjuration|1
+(noun)|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+adjuratory|2
+(adj)|beseeching (similar term)
+(adj)|imperative (similar term)
+adjure|2
+(verb)|bid|beseech|entreat|press|conjure|plead (generic term)
+(verb)|charge (generic term)|saddle (generic term)|burden (generic term)
+adjust|5
+(verb)|set|correct|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|align|aline|line up|reorient (generic term)|skew (antonym)
+(verb)|conform|adapt|change (generic term)
+(verb)|adapt (generic term)|accommodate (generic term)
+(verb)|decide (generic term)|settle (generic term)|resolve (generic term)|adjudicate (generic term)
+adjustable|2
+(adj)|adaptable (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+adjustable spanner|1
+(noun)|adjustable wrench|wrench (generic term)|spanner (generic term)
+adjustable wrench|1
+(noun)|adjustable spanner|wrench (generic term)|spanner (generic term)
+adjusted|4
+(adj)|attuned (similar term)|keyed (similar term)|tuned (similar term)|attuned (similar term)|tuned (similar term)|focused (similar term)|weighted (similar term)|unadjusted (antonym)
+(adj)|well-adjusted (similar term)|well-balanced (similar term)|maladjusted (antonym)
+(adj)|familiarized|familiarised|oriented (similar term)|orientated (similar term)
+(adj)|altered (similar term)
+adjuster|1
+(noun)|adjustor|claims adjuster|claims adjustor|claim agent|investigator (generic term)
+adjusting entry|1
+(noun)|entry (generic term)|accounting entry (generic term)|ledger entry (generic term)
+adjustive|1
+(adj)|adaptive (similar term)|adaptative (similar term)
+adjustment|5
+(noun)|accommodation|fitting|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|alteration|modification|change (generic term)
+(noun)|registration|readjustment|calibration (generic term)|standardization (generic term)|standardisation (generic term)
+(noun)|adaptation|adaption|organic process (generic term)|biological process (generic term)
+(noun)|allowance|recompense (generic term)
+adjustor|1
+(noun)|adjuster|claims adjuster|claims adjustor|claim agent|investigator (generic term)
+adjutant|2
+(noun)|aide|aide-de-camp|military officer (generic term)|officer (generic term)
+(noun)|adjutant bird|adjutant stork|Leptoptilus dubius|stork (generic term)
+adjutant bird|1
+(noun)|adjutant|adjutant stork|Leptoptilus dubius|stork (generic term)
+adjutant general|1
+(noun)|adjutant (generic term)|aide (generic term)|aide-de-camp (generic term)
+adjutant stork|1
+(noun)|adjutant bird|adjutant|Leptoptilus dubius|stork (generic term)
+adjuvant|3
+(adj)|accessory|adjunct|ancillary|appurtenant|auxiliary|subsidiary|supportive (similar term)
+(adj)|helpful (similar term)
+(noun)|additive (generic term)
+adlai ewing stevenson|1
+(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat (generic term)|diplomatist (generic term)
+adlai stevenson|1
+(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat (generic term)|diplomatist (generic term)
+adlumia|1
+(noun)|Adlumia|genus Adlumia|dilleniid dicot genus (generic term)
+adlumia fungosa|1
+(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine (generic term)
+adman|1
+(noun)|advertiser|advertizer|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+admass|1
+(noun)|populace (generic term)|public (generic term)|world (generic term)
+admeasure|1
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+administer|4
+(verb)|administrate|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|give (generic term)|apply (generic term)
+(verb)|distribute|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+(verb)|dispense|treat (generic term)|care for (generic term)
+administrable|1
+(adj)|manageable (similar term)
+administrate|1
+(verb)|administer|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+administration|4
+(noun)|disposal|management (generic term)|direction (generic term)
+(noun)|governance|governing body|establishment|brass|organization|organisation|body (generic term)
+(noun)|giving medication|medication (generic term)
+(noun)|presidency|presidential term|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+administrative|1
+(adj)|body (related term)
+administrative body|1
+(noun)|administrative unit|unit (generic term)|social unit (generic term)
+administrative data processing|1
+(noun)|business data processing|data processing (generic term)
+administrative district|1
+(noun)|administrative division|territorial division|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+administrative division|1
+(noun)|administrative district|territorial division|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+administrative hearing|1
+(noun)|hearing (generic term)
+administrative law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+administrative official|1
+(noun)|bureaucrat|official (generic term)|functionary (generic term)
+administrative unit|1
+(noun)|administrative body|unit (generic term)|social unit (generic term)
+administrator|3
+(noun)|decision maker|head (generic term)|chief (generic term)|top dog (generic term)
+(noun)|fiduciary (generic term)
+(noun)|executive|head (generic term)|chief (generic term)|top dog (generic term)
+administrivia|1
+(noun)|running (generic term)
+admirability|1
+(noun)|admirableness|wonderfulness|excellence (generic term)
+admirable|2
+(adj)|estimable (similar term)
+(adj)|pleasing (similar term)
+admirableness|1
+(noun)|admirability|wonderfulness|excellence (generic term)
+admirably|1
+(adv)|laudably|praiseworthily|commendable
+admiral|2
+(noun)|full admiral|flag officer (generic term)
+(noun)|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+admiral byrd|1
+(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer (generic term)|adventurer (generic term)|naval officer (generic term)
+admiral dewey|1
+(noun)|Dewey|George Dewey|Admiral Dewey|naval officer (generic term)
+admiral nelson|1
+(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral (generic term)|full admiral (generic term)
+admiral nimitz|1
+(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer (generic term)
+admiralty|2
+(noun)|government department (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+admiralty brass|1
+(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+admiralty island|1
+(noun)|Admiralty Island|island (generic term)
+admiralty islands|1
+(noun)|Admiralty Islands|archipelago (generic term)
+admiralty law|1
+(noun)|maritime law|marine law|international law (generic term)|law of nations (generic term)
+admiralty metal|1
+(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+admiralty mile|1
+(noun)|nautical mile|naut mi|mile|mi|geographical mile|Admiralty mile|nautical linear unit (generic term)
+admiralty range|1
+(noun)|Admiralty Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+admiration|3
+(noun)|esteem|liking (generic term)
+(noun)|wonder|wonderment|astonishment (generic term)|amazement (generic term)
+(noun)|appreciation|blessing (generic term)|approval (generic term)|approving (generic term)
+admire|2
+(verb)|look up to|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)|look down on (antonym)
+(verb)|look (generic term)
+admired|1
+(adj)|loved (similar term)
+admirer|3
+(noun)|supporter|protagonist|champion|booster|friend|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|adorer|lover (generic term)
+admiring|1
+(adj)|loving (similar term)
+admissibility|1
+(noun)|acceptability (generic term)|acceptableness (generic term)|inadmissibility (antonym)
+admissible|1
+(adj)|admittable (similar term)|admittible (similar term)|allowable (similar term)|permissible (similar term)|inadmissible (antonym)
+admission|3
+(noun)|admittance|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|entrance fee|admission charge|admission fee|admission price|price of admission|entrance money|fee (generic term)
+admission charge|1
+(noun)|entrance fee|admission|admission fee|admission price|price of admission|entrance money|fee (generic term)
+admission day|1
+(noun)|Admission Day|day (generic term)
+admission fee|1
+(noun)|entrance fee|admission|admission charge|admission price|price of admission|entrance money|fee (generic term)
+admission price|1
+(noun)|entrance fee|admission|admission charge|admission fee|price of admission|entrance money|fee (generic term)
+admissive|1
+(adj)|receptive (similar term)|open (similar term)
+admit|7
+(verb)|acknowledge|declare (generic term)|adjudge (generic term)|hold (generic term)|deny (antonym)
+(verb)|allow in|let in|intromit|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|reject (antonym)
+(verb)|let in|include|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|exclude (antonym)
+(verb)|accept|take|take on|accept (generic term)|take (generic term)|have (generic term)
+(verb)|allow
+(verb)|accommodate|hold
+(verb)|serve (generic term)|do (generic term)
+admittable|1
+(adj)|admittible|admissible (similar term)
+admittance|2
+(noun)|entree|access|accession|right (generic term)
+(noun)|admission|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+admittedly|1
+(adv)|true|avowedly|confessedly
+admittible|1
+(adj)|admittable|admissible (similar term)
+admix|1
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+admixture|3
+(noun)|alloy|impurity (generic term)|impureness (generic term)
+(noun)|intermixture|ingredient (generic term)
+(noun)|mix|commixture|mixture|intermixture|mixing|combination (generic term)|combining (generic term)|compounding (generic term)
+admonish|3
+(verb)|warn|discourage|monish|rede (generic term)|advise (generic term)|counsel (generic term)
+(verb)|caution|monish|warn (generic term)
+(verb)|reprove|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+admonished|1
+(adj)|chastened|rebuked|reprimanded|reproved|punished (similar term)
+admonisher|1
+(noun)|monitor|reminder|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+admonishing|1
+(adj)|admonitory|reproachful|reproving|unfavorable (similar term)|unfavourable (similar term)
+admonishment|1
+(noun)|admonition|monition|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+admonition|2
+(noun)|monition|warning|word of advice|advice (generic term)
+(noun)|admonishment|monition|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+admonitory|2
+(adj)|cautionary|exemplary|monitory|warning|dissuasive (similar term)
+(adj)|admonishing|reproachful|reproving|unfavorable (similar term)|unfavourable (similar term)
+adnate|1
+(adj)|connate (antonym)
+adnexa|1
+(noun)|annexa|body part (generic term)
+adnexal|1
+(adj)|annexal|body part (related term)
+adnoun|1
+(noun)|common noun (generic term)
+ado|1
+(noun)|bustle|hustle|flurry|fuss|stir|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+adobe|2
+(noun)|clay (generic term)
+(noun)|adobe brick|brick (generic term)
+adobe brick|1
+(noun)|adobe|brick (generic term)
+adobe house|1
+(noun)|sod house|soddy|house (generic term)
+adobe lily|1
+(noun)|pink fritillary|Fritillaria pluriflora|fritillary (generic term)|checkered lily (generic term)
+adobo|1
+(noun)|dish (generic term)
+adolesce|1
+(verb)|develop (generic term)
+adolescence|2
+(noun)|time of life (generic term)
+(noun)|immaturity (generic term)|immatureness (generic term)
+adolescent|5
+(adj)|time of life (related term)
+(adj)|teen|teenage|teenaged|young (similar term)|immature (similar term)
+(adj)|jejune|juvenile|puerile|immature (similar term)
+(adj)|immature (similar term)
+(noun)|stripling|teenager|teen|juvenile (generic term)|juvenile person (generic term)
+adolf eichmann|1
+(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi (generic term)|German Nazi (generic term)
+adolf hitler|1
+(noun)|Hitler|Adolf Hitler|Der Fuhrer|dictator (generic term)|potentate (generic term)|Nazi (generic term)|German Nazi (generic term)
+adolf loos|1
+(noun)|Loos|Adolf Loos|architect (generic term)|designer (generic term)
+adolf windaus|1
+(noun)|Windaus|Adolf Windaus|chemist (generic term)
+adolph simon ochs|1
+(noun)|Ochs|Adolph Simon Ochs|publisher (generic term)
+adolphe sax|1
+(noun)|Sax|Adolphe Sax|maker (generic term)|shaper (generic term)
+adonic|3
+(adj)|Adonic|daemon|demigod (related term)
+(adj)|Adonic|rhythmical (similar term)|rhythmic (similar term)
+(noun)|Adonic|Adonic line|verse (generic term)|verse line (generic term)
+adonic line|1
+(noun)|Adonic|Adonic line|verse (generic term)|verse line (generic term)
+adonis|3
+(noun)|man (generic term)|adult male (generic term)
+(noun)|Adonis|genus Adonis|magnoliid dicot genus (generic term)
+(noun)|Adonis|daemon (generic term)|demigod (generic term)
+adonis annua|1
+(noun)|pheasant's-eye|Adonis annua|flower (generic term)
+adopt|7
+(verb)|follow|espouse|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|borrow|take over|take up|accept (generic term)|take (generic term)|have (generic term)
+(verb)|assume|take on|take over|take office (generic term)
+(verb)|assume|acquire|take on|take|change (generic term)
+(verb)|take in|take (generic term)
+(verb)|dramatize|dramatise|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|espouse|embrace|sweep up|accept (generic term)
+adoptable|1
+(adj)|unadoptable (antonym)
+adopted|2
+(adj)|adoptive|native (antonym)
+(adj)|adoptive (similar term)
+adoptee|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+adopter|1
+(noun)|adoptive parent|parent (generic term)
+adoption|3
+(noun)|acceptance|acceptation|espousal|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|borrowing|appropriation (generic term)
+adoptive|2
+(adj)|adopted (similar term)|foster (similar term)|surrogate (similar term)|biological (antonym)
+(adj)|adopted|native (antonym)
+adoptive parent|1
+(noun)|adopter|parent (generic term)
+adorability|1
+(noun)|adorableness|attractiveness (generic term)
+adorable|1
+(adj)|endearing|lovely|lovable (similar term)|loveable (similar term)
+adorableness|1
+(noun)|adorability|attractiveness (generic term)
+adorably|1
+(adv)|endearingly
+adoration|3
+(noun)|worship|love (generic term)
+(noun)|idolization|idolisation|admiration (generic term)|appreciation (generic term)
+(noun)|latria|worship (generic term)
+adore|1
+(verb)|love (generic term)
+adored|1
+(adj)|idolized|idolised|worshipped|loved (similar term)
+adorer|1
+(noun)|admirer|lover (generic term)
+adoring|2
+(adj)|worshipful|reverent (similar term)
+(adj)|doting|fond|loving (similar term)
+adorn|3
+(verb)|decorate|grace|ornament|embellish|beautify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|deck|decorate|grace|embellish|beautify|be (generic term)
+(verb)|invest|clothe|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+adorned|2
+(adj)|decorated|beaded (similar term)|beady (similar term)|bejeweled (similar term)|bejewelled (similar term)|bespangled (similar term)|gemmed (similar term)|jeweled (similar term)|jewelled (similar term)|sequined (similar term)|spangled (similar term)|spangly (similar term)|bedaubed (similar term)|bespectacled (similar term)|monocled (similar term)|spectacled (similar term)|braided (similar term)|brocaded (similar term)|embossed (similar term)|raised (similar term)|buttony (similar term)|carbuncled (similar term)|champleve (similar term)|cloisonne (similar term)|enameled (similar term)|clinquant (similar term)|tinseled (similar term)|tinselly (similar term)|crested (similar term)|plumed (similar term)|crested (similar term)|topknotted (similar term)|tufted (similar term)|crested (similar term)|crocketed (similar term)|embellished (similar term)|ornamented (similar term)|ornate (similar term)|embroidered (similar term)|encircled (similar term)|ringed (similar term)|wreathed (similar term)|fancied up (similar term)|gussied (similar term)|gussied up (similar term)|tricked out (similar term)|feathery (similar term)|feathered (similar term)|plumy (similar term)|frilled (similar term)|frilly (similar term)|ruffled (similar term)|fringed (similar term)|gilt-edged (similar term)|hung (similar term)|inflamed (similar term)|inlaid (similar term)|inwrought (similar term)|laced (similar term)|mosaic (similar term)|tessellated (similar term)|mounted (similar term)|paneled (similar term)|wainscoted (similar term)|studded (similar term)|tapestried (similar term)|tasseled (similar term)|tasselled (similar term)|tricked-out (similar term)|tufted (similar term)|clothed (related term)|clad (related term)|fancy (related term)|unadorned (antonym)
+(adj)|bedecked|decked|decked out|clothed (similar term)|clad (similar term)
+adornment|2
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|decoration (generic term)
+adp|2
+(noun)|adenosine diphosphate|ADP|nucleotide (generic term)
+(noun)|automatic data processing|ADP|data processing (generic term)
+adp system|1
+(noun)|computer system|computing system|automatic data processing system|ADP system|ADPS|system (generic term)
+adpressed|1
+(adj)|appressed|close (similar term)
+adps|1
+(noun)|computer system|computing system|automatic data processing system|ADP system|ADPS|system (generic term)
+adrenal|3
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+(adj)|excretory organ|urinary organ (related term)
+(noun)|adrenal gland|suprarenal gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+adrenal cortex|1
+(noun)|cortex (generic term)|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+adrenal cortical steroid|1
+(noun)|corticosteroid|corticoid|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+adrenal gland|1
+(noun)|adrenal|suprarenal gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+adrenal medulla|1
+(noun)|medulla (generic term)|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+adrenalectomy|1
+(noun)|suprarenalectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+adrenalin|1
+(noun)|epinephrine|epinephrin|adrenaline|Adrenalin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|catecholamine (generic term)|neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+adrenaline|1
+(noun)|epinephrine|epinephrin|Adrenalin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|catecholamine (generic term)|neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+adrenarche|1
+(noun)|start (generic term)
+adrenergic|2
+(adj)|sympathomimetic|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive|pressor (related term)
+(noun)|adrenergic drug|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+adrenergic drug|1
+(noun)|adrenergic|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+adrenocortical|1
+(adj)|cortex|endocrine gland|endocrine|ductless gland (related term)
+adrenocorticotrophic|1
+(adj)|adrenocorticotropic|stimulative (similar term)
+adrenocorticotrophic hormone|1
+(noun)|adrenocorticotropic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+adrenocorticotrophin|1
+(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|corticotropin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+adrenocorticotropic|1
+(adj)|adrenocorticotrophic|stimulative (similar term)
+adrenocorticotropic hormone|1
+(noun)|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+adrenocorticotropin|1
+(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotrophin|corticotropin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+adrenosterone|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+adrian|2
+(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor (generic term)|Emperor of Rome (generic term)
+(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist (generic term)
+adrianople|1
+(noun)|Edirne|Adrianople|Adrianopolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+adrianopolis|1
+(noun)|Edirne|Adrianople|Adrianopolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+adriatic|1
+(noun)|Adriatic|Adriatic Sea|sea (generic term)
+adriatic sea|1
+(noun)|Adriatic|Adriatic Sea|sea (generic term)
+adrift|2
+(adj)|afloat|aimless|directionless|planless|rudderless|undirected|purposeless (similar term)
+(adj)|afloat (similar term)
+adroit|2
+(adj)|clever|ingenious|artful (similar term)
+(adj)|clean (similar term)|neat (similar term)|clever (similar term)|cunning (similar term)|ingenious (similar term)|coordinated (similar term)|co-ordinated (similar term)|deft (similar term)|dexterous (similar term)|dextrous (similar term)|handy (similar term)|light-fingered (similar term)|nimble-fingered (similar term)|quick-witted (similar term)|artful (related term)|maladroit (antonym)
+adroitly|1
+(adv)|with adroitness|maladroitly (antonym)
+adroitness|1
+(noun)|adeptness|deftness|facility|quickness|skillfulness (generic term)
+adscititious|2
+(adj)|extrinsic (similar term)
+(adj)|inessential (similar term)|unessential (similar term)
+adscript|2
+(adj)|superscript (antonym)|subscript (antonym)
+(adj)|adscripted|unfree (similar term)
+adscripted|1
+(adj)|adscript|unfree (similar term)
+adsorb|1
+(verb)|sorb (generic term)|take up (generic term)
+adsorbable|1
+(adj)|adsorbate|adsorbed (similar term)|absorbable (antonym)
+adsorbate|2
+(adj)|adsorbable|adsorbed (similar term)|absorbable (antonym)
+(noun)|sorbate (generic term)
+adsorbed|1
+(adj)|adsorbable (similar term)|adsorbate (similar term)
+adsorbent|2
+(adj)|adsorptive|surface-assimilative|chemisorptive (similar term)|chemosorptive (similar term)|nonadsorbent (antonym)
+(noun)|adsorbent material|sorbent (generic term)|sorbent material (generic term)
+adsorbent material|1
+(noun)|adsorbent|sorbent (generic term)|sorbent material (generic term)
+adsorption|1
+(noun)|surface assimilation|sorption (generic term)
+adsorptive|1
+(adj)|adsorbent|surface-assimilative|chemisorptive (similar term)|chemosorptive (similar term)|nonadsorbent (antonym)
+adsuki bean|1
+(noun)|adzuki bean|Vigna angularis|Phaseolus angularis|legume (generic term)|leguminous plant (generic term)
+adulate|1
+(verb)|flatter (generic term)|blandish (generic term)
+adulation|1
+(noun)|flattery (generic term)
+adulator|1
+(noun)|flatterer|follower (generic term)
+adulatory|1
+(adj)|flattering (similar term)
+adult|3
+(adj)|big|full-grown|fully grown|grown|grownup|mature (similar term)
+(noun)|grownup|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|juvenile (antonym)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+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 (generic term)|DM (generic term)
+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 (generic term)|DM (generic term)
+adult body|1
+(noun)|human body (generic term)|physical body (generic term)|material body (generic term)|soma (generic term)|build (generic term)|figure (generic term)|physique (generic term)|anatomy (generic term)|shape (generic term)|bod (generic term)|chassis (generic term)|frame (generic term)|form (generic term)|flesh (generic term)
+adult education|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+adult female|1
+(noun)|woman|female (generic term)|female person (generic term)|adult (generic term)|grownup (generic term)|man (antonym)
+adult female body|1
+(noun)|woman's body|adult body (generic term)|female body (generic term)
+adult intelligence|1
+(noun)|intelligence quotient (generic term)|IQ (generic term)|I.Q. (generic term)
+adult male|1
+(noun)|man|male (generic term)|male person (generic term)|woman (antonym)
+adult male body|1
+(noun)|man's body|adult body (generic term)|male body (generic term)
+adult respiratory distress syndrome|1
+(noun)|ARDS|wet lung|white lung|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+adult tooth|1
+(noun)|permanent tooth|tooth (generic term)
+adulterant|2
+(adj)|adulterating|extraneous (similar term)|foreign (similar term)|purifying (antonym)
+(noun)|adulterator|substance (generic term)|matter (generic term)
+adulterate|2
+(adj)|adulterated|debased|impure (similar term)
+(verb)|stretch|dilute|debase|corrupt (generic term)|spoil (generic term)
+adulterated|1
+(adj)|adulterate|debased|impure (similar term)
+adulterating|1
+(adj)|adulterant|extraneous (similar term)|foreign (similar term)|purifying (antonym)
+adulteration|2
+(noun)|debasement|impurity (generic term)|impureness (generic term)
+(noun)|change (generic term)
+adulterator|2
+(noun)|adulterant|substance (generic term)|matter (generic term)
+(noun)|changer (generic term)|modifier (generic term)
+adulterer|1
+(noun)|fornicator|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+adulteress|1
+(noun)|fornicatress|hussy|jade|loose woman|slut|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+adulterine|1
+(adj)|illegitimate (similar term)
+adulterous|2
+(adj)|extramarital|extracurricular|illicit (similar term)
+(adj)|cheating|two-timing|unfaithful (similar term)
+adultery|1
+(noun)|criminal conversation|fornication|extramarital sex (generic term)|free love (generic term)
+adulthood|2
+(noun)|maturity|time of life (generic term)
+(noun)|maturity (generic term)|matureness (generic term)
+adumbrate|2
+(verb)|sketch|outline|describe (generic term)|depict (generic term)|draw (generic term)
+(verb)|intimate|insinuate|hint (generic term)|suggest (generic term)
+adumbration|2
+(noun)|prefiguration|foreshadowing|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+(noun)|representation (generic term)
+adumbrative|1
+(adj)|foreshadowing|prefigurative|prophetic (similar term)|prophetical (similar term)
+adust|2
+(adj)|baked|parched|scorched|sunbaked|dry (similar term)
+(adj)|brunet (similar term)|brunette (similar term)
+advance|20
+(adj)|beforehand|early (similar term)
+(adj)|advanced|in advance|front (similar term)
+(noun)|progress|progression|change of location (generic term)|travel (generic term)
+(noun)|improvement|betterment|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|overture|approach|feeler|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|progress|progression|procession|advancement|forward motion|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|cash advance|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|rise|increase (generic term)|step-up (generic term)
+(verb)|progress|pass on|move on|march on|go on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+(verb)|throw out|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|boost|supercharge|increase (generic term)
+(verb)|promote|boost|further|encourage|support (generic term)|back up (generic term)
+(verb)|bring forward|move (generic term)|displace (generic term)|back (antonym)
+(verb)|gain|win|pull ahead|make headway|get ahead|gain ground|fall back (antonym)
+(verb)|progress|come on|come along|get on|get along|shape up|develop (generic term)|regress (antonym)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|promote|upgrade|kick upstairs|raise|elevate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+(verb)|lend (generic term)|loan (generic term)
+(verb)|set ahead|set (generic term)
+(verb)|gain|wax (generic term)|mount (generic term)|climb (generic term)|rise (generic term)
+advance death benefit|1
+(noun)|death benefit (generic term)
+advanced|8
+(adj)|precocious (similar term)
+(adj)|late (similar term)|later (similar term)
+(adj)|forward-looking|innovative|modern|progressive (similar term)
+(adj)|high (similar term)
+(adj)|sophisticated|high-tech (similar term)|hi-tech (similar term)
+(adj)|ripe|late (similar term)
+(adj)|civilized (similar term)|civilised (similar term)
+(adj)|advance|in advance|front (similar term)
+advanced research and development activity|1
+(noun)|Advanced Research and Development Activity|ARDA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+advancement|3
+(noun)|promotion|furtherance|encouragement (generic term)
+(noun)|progress|progression|procession|advance|forward motion|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|progress|development (generic term)
+advancer|1
+(noun)|mover (generic term)
+advancing|2
+(adj)|forward (similar term)|onward (similar term)|retreating (antonym)
+(adj)|forward|forward-moving|progressive (similar term)
+advantage|4
+(noun)|vantage|asset (generic term)|plus (generic term)|disadvantage (antonym)
+(noun)|point (generic term)
+(noun)|reward|benefit (generic term)|welfare (generic term)|penalty (antonym)
+(verb)|prefer (generic term)|favor (generic term)|favour (generic term)|disadvantage (antonym)
+advantaged|1
+(adj)|favored|privileged (similar term)
+advantageous|2
+(adj)|beneficial (similar term)|good (similar term)|plus (similar term)|positive (similar term)|profitable (similar term)|discriminatory (similar term)|preferential (similar term)|expedient (related term)|opportune (related term)|profitable (related term)|disadvantageous (antonym)
+(adj)|appropriate|expedient (similar term)
+advantageously|1
+(adv)|well|disadvantageously (antonym)|badly (antonym)
+advantageousness|1
+(noun)|favorableness|favourableness|positivity|positiveness|profitableness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+advect|1
+(verb)|transport (generic term)
+advection|1
+(noun)|temperature change (generic term)
+advective|1
+(adj)|temperature change (related term)
+advent|3
+(noun)|coming|arrival (generic term)|reaching (generic term)
+(noun)|Advent|season (generic term)
+(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation (generic term)
+advent sunday|1
+(noun)|Advent Sunday|Christian holy day (generic term)
+adventism|1
+(noun)|Adventism|Second Adventism|Christianity (generic term)|Christian religion (generic term)
+adventist|1
+(noun)|Adventist|Second Adventist|Christian (generic term)
+adventitia|1
+(noun)|tunic|tunica|membrane (generic term)|tissue layer (generic term)
+adventitial|1
+(adj)|membrane|tissue layer (related term)
+adventitious|1
+(adj)|accidental|extrinsic (similar term)
+adventitious root|1
+(noun)|root (generic term)
+adventive|1
+(adj)|foreign (similar term)|strange (similar term)
+adventure|3
+(noun)|escapade|risky venture|dangerous undertaking|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(verb)|gamble|chance|risk|hazard|take chances|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|venture|hazard|stake|jeopardize|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+adventure story|1
+(noun)|heroic tale|story (generic term)
+adventurer|2
+(noun)|venturer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|explorer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+adventuresome|1
+(adj)|adventurous|audacious (similar term)|daring (similar term)|venturesome (similar term)|venturous (similar term)|sporting (similar term)|swaggering (similar term)|swashbuckling (similar term)|bold (related term)|brave (related term)|courageous (related term)|incautious (related term)|unadventurous (antonym)
+adventuress|1
+(noun)|adventurer (generic term)|venturer (generic term)
+adventurism|1
+(noun)|recklessness (generic term)|foolhardiness (generic term)|rashness (generic term)
+adventuristic|1
+(adj)|recklessness|foolhardiness|rashness (related term)
+adventurous|1
+(adj)|adventuresome|audacious (similar term)|daring (similar term)|venturesome (similar term)|venturous (similar term)|sporting (similar term)|swaggering (similar term)|swashbuckling (similar term)|bold (related term)|brave (related term)|courageous (related term)|incautious (related term)|unadventurous (antonym)
+adventurousness|1
+(noun)|venturesomeness|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+adverb|2
+(noun)|major form class (generic term)
+(noun)|modifier (generic term)|qualifier (generic term)
+adverbial|2
+(adj)|major form class (related term)
+(noun)|adverb (generic term)
+adversary|1
+(noun)|antagonist|opponent|opposer|resister|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|agonist (antonym)
+adversative|1
+(adj)|oppositive|disjunctive (similar term)
+adversative conjunction|1
+(noun)|conjunction (generic term)
+adverse|2
+(adj)|harmful|inauspicious|untoward|unfavorable (similar term)|unfavourable (similar term)
+(adj)|contrary|unfavorable (similar term)|unfavourable (similar term)
+adverse opinion|1
+(noun)|opinion (generic term)|view (generic term)
+adverse witness|1
+(noun)|hostile witness|witness (generic term)
+adversity|2
+(noun)|hardship|hard knocks|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+(noun)|misfortune (generic term)|bad luck (generic term)
+advert|4
+(noun)|ad|advertisement|advertizement|advertising|advertizing|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(verb)|attend|hang|pay heed|give ear|listen (generic term)
+(verb)|allude|touch|hint (generic term)|suggest (generic term)
+(verb)|mention|bring up|cite|name|refer|think of (generic term)|have in mind (generic term)|mean (generic term)
+advertence|1
+(noun)|advertency|attentiveness (generic term)|heed (generic term)|regard (generic term)|paying attention (generic term)
+advertency|1
+(noun)|advertence|attentiveness (generic term)|heed (generic term)|regard (generic term)|paying attention (generic term)
+advertent|1
+(adj)|heedful|attentive (similar term)
+advertently|1
+(adv)|mindfully|heedfully|inadvertently (antonym)|unmindfully (antonym)
+advertise|2
+(verb)|publicize|advertize|publicise|announce (generic term)|denote (generic term)
+(verb)|advertize|promote|push|praise (generic term)
+advertised|1
+(adj)|publicized (similar term)|publicised (similar term)
+advertisement|1
+(noun)|ad|advertizement|advertising|advertizing|advert|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+advertiser|1
+(noun)|advertizer|adman|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+advertising|2
+(noun)|ad|advertisement|advertizement|advertizing|advert|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(noun)|publicizing|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+advertising agency|1
+(noun)|ad agency|agency (generic term)
+advertising campaign|1
+(noun)|ad campaign|ad blitz|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+advertising department|1
+(noun)|advertising division|business department (generic term)
+advertising division|1
+(noun)|advertising department|business department (generic term)
+advertize|2
+(verb)|advertise|promote|push|praise (generic term)
+(verb)|advertise|publicize|publicise|announce (generic term)|denote (generic term)
+advertizement|1
+(noun)|ad|advertisement|advertising|advertizing|advert|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+advertizer|1
+(noun)|advertiser|adman|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+advertizing|1
+(noun)|ad|advertisement|advertizement|advertising|advert|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+advertorial|1
+(noun)|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+advice|1
+(noun)|proposal (generic term)
+advice and consent|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+advil|1
+(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+advisability|1
+(noun)|wisdom (generic term)|wiseness (generic term)|soundness (generic term)|inadvisability (antonym)
+advisable|1
+(adj)|better (similar term)|best (similar term)|recommended (similar term)|suggested (similar term)|well (similar term)|prudent (related term)|wise (related term)|inadvisable (antonym)
+advise|3
+(verb)|rede|counsel|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|notify|give notice|send word|apprise|apprize|inform (generic term)
+(verb)|propose|suggest|declare (generic term)
+advised|2
+(adj)|well-advised|considered (similar term)|wise (related term)|ill-advised (antonym)
+(adj)|informed (similar term)
+advisedly|1
+(adv)|intentionally|deliberately|designedly|on purpose|purposely|by choice|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+advisee|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+advisement|1
+(noun)|deliberation|weighing|consideration (generic term)
+adviser|1
+(noun)|advisor|consultant|authority (generic term)
+advisor|1
+(noun)|adviser|consultant|authority (generic term)
+advisory|2
+(adj)|consultative|consultatory|consultive|informative (similar term)|informatory (similar term)
+(noun)|announcement (generic term)|promulgation (generic term)
+advisory board|1
+(noun)|planning board|board (generic term)
+advisory service|1
+(noun)|consulting service (generic term)
+advocacy|1
+(noun)|protagonism|support (generic term)
+advocate|4
+(noun)|advocator|proponent|exponent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|counsel|counselor|counsellor|counselor-at-law|pleader|lawyer (generic term)|attorney (generic term)
+(verb)|recommend|urge|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|preach|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)
+advocator|1
+(noun)|advocate|proponent|exponent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+advowson|1
+(noun)|right (generic term)
+adynamia|1
+(noun)|weakness (generic term)
+adynamic|2
+(adj)|undynamic|stagnant (similar term)|moribund (similar term)|static (similar term)|unchanging (similar term)|dynamic (antonym)
+(adj)|asthenic|debilitated|enervated|weak (similar term)
+adz|1
+(noun)|adze|edge tool (generic term)
+adze|1
+(noun)|adz|edge tool (generic term)
+adzhar|1
+(noun)|Adzhar|Adzharia|state (generic term)|province (generic term)
+adzharia|1
+(noun)|Adzhar|Adzharia|state (generic term)|province (generic term)
+adzuki bean|1
+(noun)|adsuki bean|Vigna angularis|Phaseolus angularis|legume (generic term)|leguminous plant (generic term)
+aec|1
+(noun)|Atomic Energy Commission|AEC|executive agency (generic term)
+aecial|1
+(adj)|fruiting body (related term)
+aeciospore|1
+(noun)|spore (generic term)
+aecium|1
+(noun)|fruiting body (generic term)
+aedes|1
+(noun)|Aedes|genus Aedes|arthropod genus (generic term)
+aedes aegypti|1
+(noun)|yellow-fever mosquito|Aedes aegypti|mosquito (generic term)
+aedes albopictus|1
+(noun)|Asian tiger mosquito|Aedes albopictus|mosquito (generic term)
+aegadean islands|1
+(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island (generic term)
+aegadean isles|2
+(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island (generic term)
+(noun)|Aegates Isles|Aegadean Isles|naval battle (generic term)
+aegates|1
+(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island (generic term)
+aegates isles|1
+(noun)|Aegates Isles|Aegadean Isles|naval battle (generic term)
+aegean|3
+(adj)|Aegean|culture|civilization|civilisation (related term)
+(adj)|Aegean|sea (related term)
+(noun)|Aegean|Aegean Sea|sea (generic term)
+aegean civilisation|1
+(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+aegean civilization|1
+(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+aegean culture|1
+(noun)|Aegean civilization|Aegean civilisation|Aegean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+aegean island|1
+(noun)|Aegean island|island (generic term)
+aegean sea|1
+(noun)|Aegean|Aegean Sea|sea (generic term)
+aegiceras|1
+(noun)|Aegiceras|genus Aegiceras|asterid dicot genus (generic term)
+aegiceras majus|1
+(noun)|black mangrove|Aegiceras majus|tree (generic term)
+aegilops|1
+(noun)|Aegilops|genus Aegilops|monocot genus (generic term)|liliopsid genus (generic term)
+aegilops triuncalis|1
+(noun)|goat grass|Aegilops triuncalis|grass (generic term)
+aegina|2
+(noun)|Aegina|Aigina|Aegean island (generic term)
+(noun)|Aegina|jellyfish (generic term)|medusa (generic term)|medusan (generic term)
+aegir|1
+(noun)|tidal bore|bore|eagre|eager|tidal flow (generic term)|tidal current (generic term)
+aegis|2
+(noun)|auspices|protection|endorsement (generic term)|indorsement (generic term)
+(noun)|breastplate|egis|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+aegisthus|1
+(noun)|Aegisthus|mythical being (generic term)
+aegospotami|2
+(noun)|Aegospotami|Aegospotamos|brook (generic term)|creek (generic term)
+(noun)|Aegospotami|Aegospotamos|naval battle (generic term)
+aegospotamos|2
+(noun)|Aegospotami|Aegospotamos|brook (generic term)|creek (generic term)
+(noun)|Aegospotami|Aegospotamos|naval battle (generic term)
+aegypiidae|1
+(noun)|Aegypiidae|family Aegypiidae|vulture (generic term)
+aegypius|1
+(noun)|Aegypius|genus Aegypius|bird genus (generic term)
+aegypius monachus|1
+(noun)|black vulture|Aegypius monachus|Old World vulture (generic term)
+aegyptopithecus|1
+(noun)|Aegyptopithecus|hominoid (generic term)
+aelfred|1
+(noun)|Alfred|AElfred|Alfred the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+aelius donatus|1
+(noun)|Donatus|Aelius Donatus|grammarian (generic term)|syntactician (generic term)
+aeneas|1
+(noun)|Aeneas|mythical being (generic term)
+aeneas silvius|1
+(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+aeneid|1
+(noun)|Aeneid|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+aengus|1
+(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity (generic term)
+aeolia|1
+(noun)|Aeolis|Aeolia|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+aeolian|3
+(adj)|weather|weather condition|atmospheric condition (related term)
+(adj)|Aeolian|Greek deity (related term)
+(noun)|Aeolian|Eolian|Greek (generic term)|Hellene (generic term)
+aeolian harp|1
+(noun)|aeolian lyre|wind harp|harp (generic term)
+aeolian lyre|1
+(noun)|aeolian harp|wind harp|harp (generic term)
+aeolic|1
+(noun)|Aeolic|Eolic|Ancient Greek (generic term)
+aeolis|1
+(noun)|Aeolis|Aeolia|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+aeolotropic|1
+(adj)|eolotropic|anisotropic (similar term)
+aeolus|1
+(noun)|Aeolus|Greek deity (generic term)
+aeon|3
+(noun)|eon|spiritual being (generic term)|supernatural being (generic term)
+(noun)|eon|geological time (generic term)|geologic time (generic term)
+(noun)|eon|long time (generic term)|age (generic term)|years (generic term)
+aeonian|2
+(adj)|eonian|geological time|geologic time (related term)
+(adj)|ageless|eonian|eternal|everlasting|perpetual|unending|unceasing|permanent (similar term)|lasting (similar term)
+aeonium|1
+(noun)|Aeonium|genus Aeonium|plant genus (generic term)
+aeonium haworthii|1
+(noun)|pinwheel|Aeonium haworthii|subshrub (generic term)|suffrutex (generic term)
+aepyceros|1
+(noun)|Aepyceros|genus Aepyceros|mammal genus (generic term)
+aepyceros melampus|1
+(noun)|impala|Aepyceros melampus|antelope (generic term)
+aepyornidae|1
+(noun)|Aepyornidae|family Aepyornidae|bird family (generic term)
+aepyorniformes|1
+(noun)|Aepyorniformes|order Aepyorniformes|animal order (generic term)
+aepyornis|1
+(noun)|elephant bird|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+aerate|3
+(verb)|air out|air|expose (generic term)
+(verb)|activate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|oxygenate|oxygenize|oxygenise|process (generic term)|treat (generic term)
+aerated|2
+(adj)|treated (similar term)
+(adj)|charged|effervescent (similar term)
+aeration|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|change of state (generic term)
+aerator|1
+(noun)|apparatus (generic term)|setup (generic term)
+aerial|4
+(adj)|air (similar term)
+(adj)|aeriform|airy|aery|ethereal|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+(noun)|forward pass|pass (generic term)|passing play (generic term)|passing game (generic term)|passing (generic term)
+(noun)|antenna|transmitting aerial|electrical device (generic term)
+aerial ladder|1
+(noun)|extension ladder (generic term)
+aerial ladder truck|1
+(noun)|ladder truck|fire engine (generic term)|fire truck (generic term)
+aerial torpedo|1
+(noun)|torpedo (generic term)
+aerial tramway|1
+(noun)|tramway|tram|cable tramway|ropeway|conveyance (generic term)|transport (generic term)
+aerialist|1
+(noun)|acrobat (generic term)
+aerially|1
+(adv)|via aircraft
+aerides|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+aerie|2
+(noun)|aery|eyrie|eyry|bird's nest (generic term)|bird nest (generic term)|birdnest (generic term)
+(noun)|aery|eyrie|eyry|habitation (generic term)
+aeriferous|1
+(adj)|gas (related term)
+aeriform|2
+(adj)|airlike|gaseous (similar term)
+(adj)|aerial|airy|aery|ethereal|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+aerify|1
+(verb)|gasify|vaporize|vaporise|change integrity (generic term)
+aerobacter|1
+(noun)|Aerobacter|genus Aerobacter|bacteria genus (generic term)
+aerobacter aerogenes|1
+(noun)|Aerobacter aerogenes|bacteria species (generic term)
+aerobatics|1
+(noun)|acrobatics|stunting|stunt flying|flight (generic term)|flying (generic term)
+aerobe|1
+(noun)|organism (generic term)|being (generic term)
+aerobic|2
+(adj)|aerophilic|aerophilous|aerobiotic (similar term)|oxidative (similar term)|anaerobic (antonym)
+(adj)|anaerobic (antonym)
+aerobic exercise|1
+(noun)|aerobics|cardiopulmonary exercise (generic term)
+aerobics|1
+(noun)|aerobic exercise|cardiopulmonary exercise (generic term)
+aerobiosis|1
+(noun)|life (generic term)
+aerobiotic|1
+(adj)|aerobic (similar term)|aerophilic (similar term)|aerophilous (similar term)
+aerodontalgia|1
+(noun)|toothache (generic term)|odontalgia (generic term)
+aerodrome|1
+(noun)|airport|airdrome|drome|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+aerodynamic|2
+(adj)|mechanics (related term)
+(adj)|streamlined|flowing|sleek|smooth (similar term)
+aerodynamic force|1
+(noun)|force (generic term)
+aerodynamic lift|1
+(noun)|lift|aerodynamic force (generic term)
+aerodynamics|1
+(noun)|aeromechanics|mechanics (generic term)
+aeroembolism|2
+(noun)|air embolism|gas embolism|embolism (generic term)
+(noun)|decompression sickness|air embolism|gas embolism|caisson disease|bends|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+aerofoil|1
+(noun)|airfoil|control surface|surface|device (generic term)
+aerogenerator|1
+(noun)|windmill|wind generator|generator (generic term)
+aerogram|1
+(noun)|airmail letter|air letter|aerogramme|letter (generic term)|missive (generic term)
+aerogramme|1
+(noun)|airmail letter|air letter|aerogram|letter (generic term)|missive (generic term)
+aerolite|1
+(noun)|meteorite (generic term)
+aerolitic|1
+(adj)|meteorite (related term)
+aerological|1
+(adj)|meteorology (related term)
+aerology|1
+(noun)|meteorology (generic term)
+aeromechanic|1
+(adj)|mechanics (related term)
+aeromechanics|1
+(noun)|aerodynamics|mechanics (generic term)
+aeromedical|1
+(adj)|biomedicine (related term)
+aeromedicine|1
+(noun)|aerospace medicine|aviation medicine|biomedicine (generic term)
+aeronaut|1
+(noun)|aviator|airman|flier|flyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+aeronautic|1
+(adj)|aeronautical|physics|physical science|natural philosophy (related term)
+aeronautical|1
+(adj)|aeronautic|physics|physical science|natural philosophy (related term)
+aeronautical engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+aeronautical engineering|2
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+(noun)|technology (generic term)|engineering (generic term)
+aeronautics|1
+(noun)|astronautics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+aerophagia|1
+(noun)|swallow (generic term)|drink (generic term)|deglutition (generic term)
+aerophilatelic|1
+(adj)|philately|stamp collecting|stamp collection (related term)
+aerophilately|1
+(noun)|philately (generic term)|stamp collecting (generic term)|stamp collection (generic term)
+aerophile|1
+(noun)|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+aerophilic|1
+(adj)|aerobic|aerophilous|aerobiotic (similar term)|oxidative (similar term)|anaerobic (antonym)
+aerophilous|1
+(adj)|aerobic|aerophilic|aerobiotic (similar term)|oxidative (similar term)|anaerobic (antonym)
+aerophyte|1
+(noun)|air plant|epiphyte|epiphytic plant|plant (generic term)|flora (generic term)|plant life (generic term)
+aeroplane|1
+(noun)|airplane|plane|heavier-than-air craft (generic term)
+aerosol|2
+(noun)|cloud (generic term)
+(noun)|aerosol container|aerosol can|aerosol bomb|spray can|dispenser (generic term)
+aerosol bomb|2
+(noun)|thermobaric bomb|fuel-air bomb|vacuum bomb|volume-detonation bomb|bomb (generic term)|fuel-air explosive (generic term)|FAE (generic term)
+(noun)|aerosol|aerosol container|aerosol can|spray can|dispenser (generic term)
+aerosol can|1
+(noun)|aerosol|aerosol container|aerosol bomb|spray can|dispenser (generic term)
+aerosol container|1
+(noun)|aerosol|aerosol can|aerosol bomb|spray can|dispenser (generic term)
+aerosolise|2
+(verb)|aerosolize|disperse (generic term)|dissipate (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|aerosolize|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+aerosolised|1
+(adj)|aerosolized|gaseous (similar term)
+aerosolize|2
+(verb)|aerosolise|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|aerosolise|disperse (generic term)|dissipate (generic term)|scatter (generic term)|spread out (generic term)
+aerosolized|1
+(adj)|aerosolised|gaseous (similar term)
+aerospace|1
+(noun)|region (generic term)|part (generic term)
+aerospace engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+aerospace medicine|1
+(noun)|aeromedicine|aviation medicine|biomedicine (generic term)
+aertex|1
+(noun)|Aertex|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+aery|3
+(adj)|aeriform|aerial|airy|ethereal|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+(noun)|aerie|eyrie|eyry|bird's nest (generic term)|bird nest (generic term)|birdnest (generic term)
+(noun)|aerie|eyrie|eyry|habitation (generic term)
+aeschylean|1
+(adj)|Aeschylean|dramatist|playwright (related term)
+aeschylus|1
+(noun)|Aeschylus|dramatist (generic term)|playwright (generic term)
+aeschynanthus|1
+(noun)|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+aeschynanthus radicans|1
+(noun)|lipstick plant|Aeschynanthus radicans|aeschynanthus (generic term)
+aesculapian|1
+(adj)|medical|Greco-Roman deity|Graeco-Roman deity (related term)
+aesculapius|1
+(noun)|Aesculapius|Asclepius|Asklepios|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+aesculus|1
+(noun)|Aesculus|genus Aesculus|dicot genus (generic term)|magnoliopsid genus (generic term)
+aesculus hippocastanum|1
+(noun)|horse chestnut|buckeye|Aesculus hippocastanum|angiospermous tree (generic term)|flowering tree (generic term)
+aesir|1
+(noun)|Aesir|Norse deity (generic term)
+aesop|1
+(noun)|Aesop|fabulist (generic term)
+aesop's fables|1
+(noun)|Aesop's fables|fable (generic term)|parable (generic term)|allegory (generic term)|apologue (generic term)
+aesthesia|1
+(noun)|sensibility|esthesia|consciousness (generic term)|insensibility (antonym)
+aesthesis|1
+(noun)|sensation|esthesis|sense experience|sense impression|sense datum|perception (generic term)
+aesthete|1
+(noun)|esthete|connoisseur (generic term)|cognoscenti (generic term)
+aesthetic|4
+(adj)|esthetic|philosophy (related term)
+(adj)|esthetic|aesthetical|esthetical|artistic (similar term)|beautiful (similar term)|cosmetic (similar term)|enhancive (similar term)|painterly (similar term)|sensuous (similar term)|inaesthetic (antonym)
+(adj)|esthetic|artistic|pleasing|tasteful (similar term)
+(noun)|esthetic|philosophical doctrine (generic term)|philosophical theory (generic term)
+aesthetical|1
+(adj)|aesthetic|esthetic|esthetical|artistic (similar term)|beautiful (similar term)|cosmetic (similar term)|enhancive (similar term)|painterly (similar term)|sensuous (similar term)|inaesthetic (antonym)
+aesthetically|1
+(adv)|esthetically
+aesthetician|2
+(noun)|esthetician|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|esthetician|philosopher (generic term)
+aesthetics|1
+(noun)|esthetics|philosophy (generic term)
+aestival|1
+(adj)|estival|summery (similar term)
+aestivate|1
+(verb)|estivate|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)|hibernate (antonym)|hibernate (antonym)
+aestivation|2
+(noun)|estivation|dormancy (generic term)|quiescence (generic term)|quiescency (generic term)
+(noun)|estivation|arrangement (generic term)
+aether|2
+(noun)|Aether|Greek deity (generic term)
+(noun)|ether|medium (generic term)
+aethionema|1
+(noun)|Aethionema|genus Aethionema|dilleniid dicot genus (generic term)
+aethusa|1
+(noun)|Aethusa|genus Aethusa|rosid dicot genus (generic term)
+aethusa cynapium|1
+(noun)|fool's parsley|lesser hemlock|Aethusa cynapium|poisonous plant (generic term)
+aetiologic|2
+(adj)|etiological|etiologic|aetiological|philosophy (related term)
+(adj)|etiological|etiologic|aetiological|cause (related term)
+aetiological|2
+(adj)|etiological|etiologic|aetiologic|philosophy (related term)
+(adj)|etiological|etiologic|aetiologic|cause (related term)
+aetiologist|1
+(noun)|etiologist|diagnostician (generic term)|pathologist (generic term)
+aetiology|2
+(noun)|etiology|cause (generic term)
+(noun)|etiology|philosophy (generic term)
+aetobatus|1
+(noun)|Aetobatus|genus Aetobatus|fish genus (generic term)
+aetobatus narinari|1
+(noun)|spotted eagle ray|spotted ray|Aetobatus narinari|eagle ray (generic term)
+afars and issas|1
+(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country (generic term)|African nation (generic term)
+afeard|1
+(adj)|afeared|afraid (similar term)
+afeared|1
+(adj)|afeard|afraid (similar term)
+afebrile|1
+(adj)|symptom (related term)|febrile (antonym)
+affability|1
+(noun)|affableness|amiability|amiableness|bonhomie|geniality|friendliness (generic term)
+affable|1
+(adj)|amiable|cordial|genial|friendly (similar term)
+affableness|1
+(noun)|affability|amiability|amiableness|bonhomie|geniality|friendliness (generic term)
+affably|1
+(adv)|amiably|genially
+affair|3
+(noun)|matter|thing|concern (generic term)
+(noun)|affaire|intimacy|liaison|involvement|amour|sexual relationship (generic term)
+(noun)|occasion|social occasion|function|social function|social event (generic term)
+affaire|1
+(noun)|affair|intimacy|liaison|involvement|amour|sexual relationship (generic term)
+affaire d'honneur|1
+(noun)|duel|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+affairs|2
+(noun)|personal business|personal matters|concern (generic term)
+(noun)|transaction (generic term)|dealing (generic term)|dealings (generic term)
+affect|6
+(noun)|feeling (generic term)
+(verb)|impact|bear upon|bear on|touch on|touch|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|involve|regard|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|feign|sham|pretend|dissemble|misrepresent (generic term)|belie (generic term)
+(verb)|impress|move|strike
+affectation|1
+(noun)|mannerism|pose|affectedness|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+affected|3
+(adj)|impressed (similar term)|smitten (similar term)|stricken (similar term)|struck (similar term)|stage-struck (similar term)|subject (similar term)|taken (similar term)|wonder-struck (similar term)|moved (related term)|affected (related term)|stirred (related term)|touched (related term)|unaffected (antonym)
+(adj)|unnatural|agonistic (similar term)|strained (similar term)|artificial (similar term)|contrived (similar term)|hokey (similar term)|stilted (similar term)|constrained (similar term)|forced (similar term)|strained (similar term)|elocutionary (similar term)|mannered (similar term)|plummy (similar term)|studied (related term)|deliberate (related term)|unaffected (antonym)
+(adj)|moved|stirred|touched|sick (similar term)|affected (related term)|emotional (related term)|unmoved (antonym)
+affected role|1
+(noun)|patient role|patient|semantic role (generic term)|participant role (generic term)
+affectedness|2
+(noun)|unnaturalness (generic term)|unaffectedness (antonym)
+(noun)|affectation|mannerism|pose|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+affecting|1
+(adj)|poignant|touching|moving (similar term)
+affectingly|1
+(adv)|poignantly|touchingly
+affection|1
+(noun)|affectionateness|fondness|tenderness|heart|warmness|warmheartedness|philia|feeling (generic term)
+affectional|1
+(adj)|affective|emotive|emotional (similar term)
+affectionate|1
+(adj)|caring|fond|lovesome|tender|warm|loving (similar term)
+affectionately|1
+(adv)|dearly|dear
+affectionateness|2
+(noun)|affection|fondness|tenderness|heart|warmness|warmheartedness|philia|feeling (generic term)
+(noun)|fondness|lovingness|warmth|emotionality (generic term)|emotionalism (generic term)
+affectioned|1
+(adj)|loving (similar term)
+affective|1
+(adj)|affectional|emotive|emotional (similar term)
+affective disorder|1
+(noun)|major affective disorder|emotional disorder|emotional disturbance|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+affenpinscher|1
+(noun)|monkey pinscher|monkey dog|pinscher (generic term)
+afferent|2
+(adj)|centripetal (similar term)|receptive (similar term)|sensory (similar term)|corticoafferent (similar term)|corticipetal (similar term)|efferent (antonym)
+(noun)|sensory nerve|afferent nerve|nerve (generic term)|nervus (generic term)
+afferent nerve|1
+(noun)|sensory nerve|afferent|nerve (generic term)|nervus (generic term)
+afferent neuron|1
+(noun)|sensory neuron|nerve cell (generic term)|neuron (generic term)
+affiance|1
+(verb)|betroth|engage|plight|vow (generic term)
+affianced|1
+(adj)|bespoken|betrothed|engaged|pledged|attached (similar term)|committed (similar term)
+affiant|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+affidavit|1
+(noun)|testimony (generic term)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+affiliate|4
+(noun)|associate (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(verb)|consort|associate|assort|interact (generic term)
+(verb)|join (generic term)|fall in (generic term)|get together (generic term)
+affiliated|1
+(adj)|attached|connected|related (similar term)|related to (similar term)
+affiliation|2
+(noun)|association|tie|tie-up|relationship (generic term)
+(noun)|association (generic term)
+affinal|1
+(adj)|affine|related (similar term)
+affine|3
+(adj)|transformation (related term)
+(adj)|affinal|related (similar term)
+(noun)|kin (generic term)|kinsperson (generic term)|family (generic term)
+affine geometry|1
+(noun)|geometry (generic term)
+affine transformation|1
+(noun)|transformation (generic term)
+affined|1
+(adj)|connected (similar term)
+affinity|7
+(noun)|chemical attraction|force (generic term)
+(noun)|attraction (generic term)|attractive force (generic term)
+(noun)|kinship (generic term)|family relationship (generic term)|relationship (generic term)|consanguinity (antonym)
+(noun)|phylogenetic relation|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|kinship|relation (generic term)
+(noun)|resemblance (generic term)
+(noun)|attraction (generic term)|attractiveness (generic term)
+affirm|2
+(verb)|confirm|corroborate|sustain|substantiate|support|negate (antonym)
+(verb)|verify|assert|avow|aver|swan|swear|declare (generic term)
+affirmable|1
+(adj)|assertable|possible (similar term)
+affirmation|4
+(noun)|avowal|avouchment|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|assertion|statement|speech act (generic term)
+(noun)|commitment (generic term)|dedication (generic term)
+(noun)|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|reversal (antonym)
+affirmative|4
+(adj)|affirmatory|assentient (similar term)|favorable (related term)|favourable (related term)|positive (related term)|negative (antonym)
+(adj)|optimistic|positive (similar term)
+(adj)|favoring|pro (similar term)
+(noun)|avowal (generic term)|avouchment (generic term)|affirmation (generic term)|negative (antonym)
+affirmative action|1
+(noun)|social action (generic term)
+affirmative pleading|1
+(noun)|pleading (generic term)
+affirmativeness|1
+(noun)|agreeableness (generic term)|agreeability (generic term)
+affirmatory|1
+(adj)|affirmative|assentient (similar term)|favorable (related term)|favourable (related term)|positive (related term)|negative (antonym)
+affirmed|1
+(noun)|Affirmed|thoroughbred (generic term)
+affirmer|1
+(noun)|asserter|declarer|asseverator|avower|communicator (generic term)
+affix|4
+(noun)|bound morpheme (generic term)|bound form (generic term)
+(verb)|stick on|attach (generic term)
+(verb)|append|add on|supplement|attach (generic term)
+(verb)|attach (generic term)
+affixal|1
+(adj)|affixial|bound morpheme|bound form (related term)
+affixation|3
+(noun)|morphology (generic term)|sound structure (generic term)|syllable structure (generic term)|word structure (generic term)
+(noun)|formation (generic term)
+(noun)|attachment|combination (generic term)|combining (generic term)|compounding (generic term)
+affixed|1
+(adj)|appendant (similar term)|basifixed (similar term)|glued (similar term)|pasted (similar term)|mounted (similar term)|unaffixed (antonym)
+affixial|1
+(adj)|affixal|bound morpheme|bound form (related term)
+afflatus|1
+(noun)|inspiration (generic term)
+afflict|3
+(verb)|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|smite|damage (generic term)
+(verb)|trouble|ail|pain|hurt (generic term)
+afflicted|2
+(adj)|stricken|ill (similar term)|sick (similar term)
+(adj)|impaired|unfit (similar term)
+affliction|3
+(noun)|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|trouble (generic term)
+afflictive|1
+(adj)|painful|sore|unpleasant (similar term)
+affluence|1
+(noun)|richness|wealth (generic term)|wealthiness (generic term)
+affluent|3
+(adj)|flush|loaded|moneyed|wealthy|rich (similar term)
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+(noun)|feeder|tributary|confluent|branch (generic term)|distributary (antonym)
+afford|3
+(verb)|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|yield|give|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|open|give
+affordable|1
+(adj)|low-cost|low-priced|cheap (similar term)|inexpensive (similar term)
+afforest|1
+(verb)|forest|plant (generic term)|set (generic term)
+afforestation|1
+(noun)|conversion (generic term)
+affranchise|1
+(verb)|enfranchise|liberate (generic term)|set free (generic term)
+affray|2
+(noun)|altercation|fracas|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+(noun)|disturbance|fray|ruffle|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+affricate|1
+(noun)|affricate consonant|affricative|obstruent (generic term)
+affricate consonant|1
+(noun)|affricate|affricative|obstruent (generic term)
+affrication|1
+(noun)|articulation (generic term)
+affricative|1
+(noun)|affricate|affricate consonant|obstruent (generic term)
+affright|2
+(noun)|panic|terror|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(verb)|frighten|fright|scare|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|frighten off (related term)|frighten away (related term)
+affront|2
+(noun)|insult|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+(verb)|diss|insult|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+affusion|1
+(noun)|baptism (generic term)
+afghan|6
+(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation (related term)
+(noun)|blanket (generic term)|cover (generic term)
+(noun)|Afghan|Afghanistani|Asian (generic term)|Asiatic (generic term)
+(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian (generic term)|Iranian language (generic term)
+(noun)|sheepskin coat|coat (generic term)
+(noun)|Afghan hound|Afghan|hound (generic term)|hound dog (generic term)
+afghan hound|1
+(noun)|Afghan hound|Afghan|hound (generic term)|hound dog (generic term)
+afghan monetary unit|1
+(noun)|Afghan monetary unit|monetary unit (generic term)
+afghani|3
+(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation (related term)
+(noun)|Afghan monetary unit (generic term)
+(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian (generic term)|Iranian language (generic term)
+afghanistan|1
+(noun)|Afghanistan|Islamic State of Afghanistan|Asian country (generic term)|Asian nation (generic term)
+afghanistani|2
+(adj)|Afghani|Afghan|Afghanistani|Asian country|Asian nation (related term)
+(noun)|Afghan|Afghanistani|Asian (generic term)|Asiatic (generic term)
+afibrinogenemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+aficionado|2
+(noun)|sports fan (generic term)|fan (generic term)|rooter (generic term)
+(noun)|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+afield|1
+(adv)|abroad
+afire|1
+(adj)|ablaze|aflame|aflare|alight|blazing|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+afisr|1
+(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+afl|1
+(noun)|American Federation of Labor|AFL|federation (generic term)
+afl-cio|1
+(noun)|American Federation of Labor and Congress of Industrial Organizations|AFL-CIO|federation (generic term)
+aflame|2
+(adj)|ablaze|aroused|passionate (similar term)
+(adj)|ablaze|afire|aflare|alight|blazing|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+aflare|2
+(adj)|flaring|flying|waving|moving (similar term)
+(adj)|ablaze|afire|aflame|alight|blazing|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+aflatoxin|1
+(noun)|mycotoxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+aflaxen|1
+(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+aflicker|1
+(adj)|flickering|unsteady (similar term)
+afloat|3
+(adj)|adrift|aimless|directionless|planless|rudderless|undirected|purposeless (similar term)
+(adj)|adrift (similar term)|floating (similar term)|waterborne (similar term)|aground (antonym)|sunken (antonym)
+(adj)|awash|flooded|inundated|overflowing|full (similar term)
+aflutter|1
+(adj)|nervous|excited (similar term)
+afoot|2
+(adj)|moving (similar term)
+(adj)|underway|current (similar term)
+aforementioned|1
+(adj)|aforesaid|said|same (similar term)
+aforesaid|1
+(adj)|aforementioned|said|same (similar term)
+aforethought|1
+(adj)|planned|plotted|premeditated (similar term)
+afoul|1
+(adj)|foul|fouled|tangled (similar term)
+afp|1
+(noun)|alpha fetoprotein|alpha foetoprotein|AFP|fetoprotein (generic term)|foetoprotein (generic term)
+afraid|3
+(adj)|acrophobic (similar term)|afeard (similar term)|afeared (similar term)|aghast (similar term)|appalled (similar term)|dismayed (similar term)|shocked (similar term)|agoraphobic (similar term)|alarmed (similar term)|algophobic (similar term)|apprehensive (similar term)|browbeaten (similar term)|bullied (similar term)|cowed (similar term)|hangdog (similar term)|intimidated (similar term)|claustrophobic (similar term)|fearful (similar term)|frightened (similar term)|scared (similar term)|horrified (similar term)|horror-stricken (similar term)|horror-struck (similar term)|hunted (similar term)|hydrophobic (similar term)|aquaphobic (similar term)|mysophobic (similar term)|panicky (similar term)|panicked (similar term)|panic-stricken (similar term)|panic-struck (similar term)|terrified (similar term)|frightened (similar term)|petrified (similar term)|numb (similar term)|shitless (similar term)|terror-stricken (similar term)|terror-struck (similar term)|triskaidekaphobic (similar term)|unnerved (similar term)|white-lipped (similar term)|xenophobic (similar term)|cowardly (related term)|fearful (related term)|timid (related term)|unafraid (antonym)
+(adj)|concerned (similar term)
+(adj)|disinclined (similar term)
+aframomum|1
+(noun)|Aframomum|genus Aframomum|plant genus (generic term)
+aframomum melegueta|1
+(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb (generic term)|herbaceous plant (generic term)
+afrasian|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+afrasian language|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+afresh|1
+(adv)|anew
+africa|1
+(noun)|Africa|continent (generic term)
+african|2
+(adj)|African|continent (related term)
+(noun)|African|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+african-american|2
+(adj)|African-American|Afro-American|black (similar term)
+(noun)|African-American|African American|Afro-American|Black American|American (generic term)
+african-american music|1
+(noun)|black music|African-American music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+african american|1
+(noun)|African-American|African American|Afro-American|Black American|American (generic term)
+african bowstring hemp|1
+(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria (generic term)|bowstring hemp (generic term)
+african chameleon|1
+(noun)|African chameleon|Chamaeleo chamaeleon|chameleon (generic term)|chamaeleon (generic term)
+african clawed frog|1
+(noun)|African clawed frog|Xenopus laevis|tongueless frog (generic term)
+african coral snake|1
+(noun)|African coral snake|Aspidelaps lubricus|coral snake (generic term)|Old World coral snake (generic term)
+african country|1
+(noun)|African country|African nation|country (generic term)|state (generic term)|land (generic term)
+african crocodile|1
+(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile (generic term)
+african daisy|2
+(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower (generic term)
+(noun)|African daisy|flower (generic term)
+african elephant|1
+(noun)|African elephant|Loxodonta africana|elephant (generic term)
+african gray|1
+(noun)|African grey|African gray|Psittacus erithacus|parrot (generic term)
+african green monkey|1
+(noun)|green monkey|African green monkey|Cercopithecus aethiops sabaeus|guenon (generic term)|guenon monkey (generic term)
+african grey|1
+(noun)|African grey|African gray|Psittacus erithacus|parrot (generic term)
+african hemp|2
+(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria (generic term)|bowstring hemp (generic term)
+(noun)|African hemp|Sparmannia africana|shrub (generic term)|bush (generic term)
+african holly|1
+(noun)|African holly|Solanum giganteum|nightshade (generic term)
+african hunting dog|1
+(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog (generic term)
+african lily|1
+(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus (generic term)|lily of the Nile (generic term)
+african love grass|1
+(noun)|weeping love grass|African love grass|Eragrostis curvula|love grass (generic term)|bay grass (generic term)
+african mahogany|1
+(noun)|African mahogany|mahogany (generic term)|mahogany tree (generic term)
+african marigold|1
+(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold (generic term)
+african millet|1
+(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet (generic term)
+african monitor|1
+(noun)|African monitor|Varanus niloticus|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+african nation|1
+(noun)|African country|African nation|country (generic term)|state (generic term)|land (generic term)
+african oil palm|1
+(noun)|African oil palm|Elaeis guineensis|oil palm (generic term)
+african sandalwood|1
+(noun)|camwood|African sandalwood|Baphia nitida|tree (generic term)
+african scented mahogany|1
+(noun)|African scented mahogany|cedar mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany (generic term)|mahogany tree (generic term)
+african tea|1
+(noun)|kat|khat|qat|quat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+african tulip|1
+(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus (generic term)|lily of the Nile (generic term)
+african violet|1
+(noun)|African violet|Saintpaulia ionantha|flower (generic term)
+african walnut|1
+(noun)|African walnut|Lovoa klaineana|tree (generic term)
+african wild ass|1
+(noun)|African wild ass|Equus asinus|wild ass (generic term)
+african yellowwood|1
+(noun)|cape yellowwood|African yellowwood|Podocarpus elongatus|conifer (generic term)|coniferous tree (generic term)
+africander|1
+(noun)|Africander|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+africanized bee|1
+(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee (generic term)|Apis mellifera (generic term)
+africanized honey bee|1
+(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee (generic term)|Apis mellifera (generic term)
+afrikaans|2
+(adj)|Afrikaans|Afrikaner|African country|African nation (related term)
+(noun)|Afrikaans|Taal|South African Dutch|Dutch (generic term)
+afrikander|1
+(noun)|Afrikaner|Afrikander|Boer|South African (generic term)
+afrikaner|2
+(adj)|Afrikaans|Afrikaner|African country|African nation (related term)
+(noun)|Afrikaner|Afrikander|Boer|South African (generic term)
+afrl|1
+(noun)|Air Force Research Laboratory|AFRL|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+afro|1
+(noun)|Afro|Afro hairdo|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+afro-american|2
+(adj)|African-American|Afro-American|black (similar term)
+(noun)|African-American|African American|Afro-American|Black American|American (generic term)
+afro-asian|1
+(adj)|Afro-Asian|continent (related term)
+afro-asiatic|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+afro-wig|1
+(noun)|Afro-wig|hairpiece (generic term)|false hair (generic term)|postiche (generic term)
+afro hairdo|1
+(noun)|Afro|Afro hairdo|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+afroasiatic|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+afroasiatic language|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+afrocarpus|1
+(noun)|Afrocarpus|genus Afrocarpus|gymnosperm genus (generic term)
+afrocarpus falcata|1
+(noun)|common yellowwood|bastard yellowwood|Afrocarpus falcata|gymnospermous yellowwood (generic term)
+afropavo|1
+(noun)|Congo peafowl|Afropavo congensis|pheasant (generic term)
+afropavo congensis|1
+(noun)|afropavo|Congo peafowl|Afropavo congensis|pheasant (generic term)
+afspc|1
+(noun)|Air Force Space Command|AFSPC|command (generic term)
+aft|2
+(adj)|after (similar term)|aftermost (similar term)|back (related term)|fore (antonym)
+(adv)|abaft|astern|fore (antonym)
+after|2
+(adj)|aft (similar term)
+(adv)|subsequently|later|afterwards|afterward|later on
+after-hours|1
+(adj)|late (similar term)
+after-school|1
+(adj)|outside (similar term)
+after-shave|1
+(noun)|after-shave lotion|lotion (generic term)
+after-shave lotion|1
+(noun)|after-shave|lotion (generic term)
+after part|1
+(noun)|stern|quarter|poop|tail|rear (generic term)|back (generic term)
+afterbirth|1
+(noun)|placenta (generic term)
+afterburner|1
+(noun)|device (generic term)
+aftercare|1
+(noun)|medical care (generic term)|medical aid (generic term)
+afterdamp|1
+(noun)|gas (generic term)
+afterdeck|1
+(noun)|deck (generic term)
+aftereffect|2
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|effect (generic term)
+afterglow|2
+(noun)|atmospheric phenomenon (generic term)
+(noun)|pleasantness (generic term)
+afterimage|1
+(noun)|aftersensation|memory image (generic term)
+afterlife|1
+(noun)|hereafter|life (generic term)|lifetime (generic term)|life-time (generic term)|lifespan (generic term)
+aftermath|2
+(noun)|wake|backwash|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|consequence|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+aftermost|1
+(adj)|aft (similar term)
+afternoon|2
+(noun)|day (generic term)|daytime (generic term)|daylight (generic term)
+(noun)|good afternoon|greeting (generic term)|salutation (generic term)|farewell (generic term)|word of farewell (generic term)
+afternoon tea|1
+(noun)|tea|teatime|meal (generic term)|repast (generic term)
+afterpains|1
+(noun)|pang (generic term)
+afterpiece|1
+(noun)|piece (generic term)
+afters|1
+(noun)|dessert|sweet|course (generic term)
+aftersensation|1
+(noun)|afterimage|memory image (generic term)
+aftershaft|1
+(noun)|feather (generic term)|plume (generic term)|plumage (generic term)
+aftershafted|1
+(adj)|feathered (similar term)
+aftershock|1
+(noun)|tremor (generic term)|earth tremor (generic term)|microseism (generic term)
+aftertaste|1
+(noun)|afterimage (generic term)|aftersensation (generic term)
+afterthought|2
+(noun)|reconsideration|second thought|rethink|reversal (generic term)|change of mind (generic term)|flip-flop (generic term)|turnabout (generic term)|turnaround (generic term)
+(noun)|addition (generic term)|add-on (generic term)|improver (generic term)
+afterward|1
+(adv)|subsequently|later|afterwards|after|later on
+afterwards|1
+(adv)|subsequently|later|afterward|after|later on
+afterworld|1
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+ag|1
+(noun)|silver|Ag|atomic number 47|noble metal (generic term)|conductor (generic term)
+aga|1
+(noun)|Aga|Agha|title (generic term)|title of respect (generic term)|form of address (generic term)
+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|downwind (antonym)
+against time|1
+(adv)|against the clock
+agal|1
+(noun)|cord (generic term)
+agalactia|1
+(noun)|agalactosis|physiological state (generic term)|physiological condition (generic term)
+agalactosis|1
+(noun)|agalactia|physiological state (generic term)|physiological condition (generic term)
+agalinis|1
+(noun)|Agalinis|genus Agalinis|asterid dicot genus (generic term)
+agama|1
+(noun)|agamid (generic term)|agamid lizard (generic term)
+agamemnon|1
+(noun)|Agamemnon|mythical being (generic term)
+agamete|1
+(noun)|reproductive structure (generic term)
+agamic|1
+(adj)|agamous|agamogenetic|apomictic|parthenogenetic|asexual (similar term)|nonsexual (similar term)
+agamid|1
+(noun)|agamid lizard|lizard (generic term)
+agamid lizard|1
+(noun)|agamid|lizard (generic term)
+agamidae|1
+(noun)|Agamidae|family Agamidae|reptile family (generic term)
+agammaglobulinemia|1
+(noun)|immunodeficiency (generic term)
+agamogenesis|1
+(noun)|asexual reproduction|reproduction (generic term)
+agamogenetic|1
+(adj)|agamic|agamous|apomictic|parthenogenetic|asexual (similar term)|nonsexual (similar term)
+agamous|1
+(adj)|agamic|agamogenetic|apomictic|parthenogenetic|asexual (similar term)|nonsexual (similar term)
+agapanthus|1
+(noun)|lily of the Nile|liliaceous plant (generic term)
+agapanthus africanus|1
+(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus (generic term)|lily of the Nile (generic term)
+agape|4
+(adj)|gaping|open (similar term)|opened (similar term)
+(noun)|love (generic term)
+(noun)|agape love|love (generic term)
+(noun)|love feast|religious ceremony (generic term)|religious ritual (generic term)
+agape love|1
+(noun)|agape|love (generic term)
+agapornis|1
+(noun)|Agapornis|genus Agapornis|bird genus (generic term)
+agar|2
+(noun)|nutrient agar|culture medium (generic term)|medium (generic term)
+(noun)|agar-agar|gum (generic term)
+agar-agar|1
+(noun)|agar|gum (generic term)
+agaric|2
+(noun)|Fomes igniarius|fungus (generic term)
+(noun)|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+agaricaceae|1
+(noun)|Agaricaceae|family Agaricaceae|fungus family (generic term)
+agaricales|1
+(noun)|Agaricales|order Agaricales|fungus order (generic term)
+agaricus|1
+(noun)|Agaricus|genus Agaricus|fungus genus (generic term)
+agaricus arvensis|1
+(noun)|horse mushroom|Agaricus arvensis|agaric (generic term)
+agaricus campestris|1
+(noun)|meadow mushroom|field mushroom|Agaricus campestris|agaric (generic term)
+agassiz|1
+(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist (generic term)|natural scientist (generic term)
+agastache|1
+(noun)|Agastache|genus Agastache|asterid dicot genus (generic term)
+agastache foeniculum|1
+(noun)|anise hyssop|Agastache foeniculum|giant hyssop (generic term)
+agastache mexicana|1
+(noun)|Mexican hyssop|Agastache mexicana|giant hyssop (generic term)
+agastache nepetoides|1
+(noun)|yellow giant hyssop|Agastache nepetoides|giant hyssop (generic term)
+agate|1
+(noun)|chalcedony (generic term)|calcedony (generic term)
+agate line|1
+(noun)|line|area unit (generic term)|square measure (generic term)
+agateware|1
+(noun)|pottery (generic term)|clayware (generic term)
+agatha christie|1
+(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer (generic term)|author (generic term)
+agathis|1
+(noun)|Agathis|genus Agathis|gymnosperm genus (generic term)
+agathis alba|1
+(noun)|amboina pine|amboyna pine|Agathis dammara|Agathis alba|kauri pine (generic term)|dammar pine (generic term)
+agathis australis|1
+(noun)|kauri|kaury|Agathis australis|kauri pine (generic term)|dammar pine (generic term)
+agathis dammara|1
+(noun)|amboina pine|amboyna pine|Agathis dammara|Agathis alba|kauri pine (generic term)|dammar pine (generic term)
+agathis lanceolata|1
+(noun)|red kauri|Agathis lanceolata|kauri pine (generic term)|dammar pine (generic term)
+agathis robusta|1
+(noun)|dundathu pine|queensland kauri|smooth bark kauri|Agathis robusta|kauri pine (generic term)|dammar pine (generic term)
+agavaceae|1
+(noun)|Agavaceae|family Agavaceae|agave family|sisal family|liliid monocot family (generic term)
+agave|1
+(noun)|century plant|American aloe|desert plant (generic term)|xerophyte (generic term)|xerophytic plant (generic term)|xerophile (generic term)|xerophilous plant (generic term)
+agave americana|1
+(noun)|American agave|Agave americana|agave (generic term)|century plant (generic term)|American aloe (generic term)
+agave atrovirens|1
+(noun)|maguey|Agave atrovirens|agave (generic term)|century plant (generic term)|American aloe (generic term)
+agave cantala|1
+(noun)|maguey|cantala|Agave cantala|agave (generic term)|century plant (generic term)|American aloe (generic term)
+agave family|1
+(noun)|Agavaceae|family Agavaceae|sisal family|liliid monocot family (generic term)
+agave sisalana|1
+(noun)|sisal|Agave sisalana|agave (generic term)|century plant (generic term)|American aloe (generic term)
+agave tequilana|1
+(noun)|Agave tequilana|agave (generic term)|century plant (generic term)|American aloe (generic term)
+agaze|1
+(adj)|staring|open (similar term)|opened (similar term)
+agdestis|1
+(noun)|Agdestis|genus Agdestis|caryophylloid dicot genus (generic term)
+agdistis|1
+(noun)|Agdistis|Rhea (generic term)
+age|8
+(noun)|property (generic term)
+(noun)|historic period|era (generic term)|epoch (generic term)
+(noun)|eld|time of life (generic term)
+(noun)|old age|years|eld|geezerhood|time of life (generic term)
+(noun)|long time|years|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|develop (generic term)
+(verb)|senesce|get on|mature|maturate|develop (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|rejuvenate (antonym)
+age-old|1
+(adj)|antique|old (similar term)
+age-related|1
+(adj)|related (similar term)|related to (similar term)
+age bracket|1
+(noun)|age group|cohort|people (generic term)
+age class|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+age group|1
+(noun)|age bracket|cohort|people (generic term)
+age limit|1
+(noun)|regulation (generic term)|ordinance (generic term)
+age norm|1
+(noun)|average (generic term)|norm (generic term)
+age of consent|1
+(noun)|age (generic term)|eld (generic term)
+age of fishes|1
+(noun)|Devonian|Devonian period|Age of Fishes|period (generic term)|geological period (generic term)
+age of mammals|1
+(noun)|Cenozoic|Cenozoic era|Age of Mammals|era (generic term)|geological era (generic term)
+age of man|1
+(noun)|Quaternary|Quaternary period|Age of Man|period (generic term)|geological period (generic term)
+age of reason|1
+(noun)|Enlightenment|Age of Reason|reform movement (generic term)
+age of reptiles|1
+(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era (generic term)|geological era (generic term)
+aged|6
+(adj)|elderly|older|senior|old (similar term)
+(adj)|worn (similar term)
+(adj)|of age|old (similar term)
+(adj)|ripened|ripe (similar term)|mature (similar term)
+(adj)|cured|preserved (similar term)
+(noun)|elderly|age group (generic term)|age bracket (generic term)|cohort (generic term)|young (antonym)
+agedness|1
+(noun)|senescence|oldness (generic term)
+agee|1
+(noun)|Agee|James Agee|novelist (generic term)
+ageing|3
+(adj)|aging|senescent|old (similar term)
+(noun)|ripening|aging|organic process (generic term)|biological process (generic term)
+(noun)|aging|senescence|organic process (generic term)|biological process (generic term)
+ageism|1
+(noun)|agism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+agelaius|1
+(noun)|Agelaius|genus Agelaius|bird genus (generic term)
+agelaius phoeniceus|1
+(noun)|red-winged blackbird|redwing|Agelaius phoeniceus|New World blackbird (generic term)|blackbird (generic term)
+ageless|1
+(adj)|aeonian|eonian|eternal|everlasting|perpetual|unending|unceasing|permanent (similar term)|lasting (similar term)
+agelessness|1
+(noun)|immutability (generic term)|immutableness (generic term)|fixity (generic term)
+agelong|1
+(adj)|long (similar term)
+agency|5
+(noun)|federal agency|government agency|bureau|office|authority|administrative unit (generic term)|administrative body (generic term)
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|representation|delegacy|state (generic term)
+(noun)|means|way|implementation (generic term)|effectuation (generic term)
+agency security|1
+(noun)|government security|security (generic term)|certificate (generic term)
+agenda|2
+(noun)|docket|schedule|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|agendum|order of business|list (generic term)|listing (generic term)
+agenda item|1
+(noun)|item (generic term)|point (generic term)
+agendum|1
+(noun)|agenda|order of business|list (generic term)|listing (generic term)
+agene|1
+(noun)|nitrogen trichloride|Agene|trichloride (generic term)
+agenesia|1
+(noun)|agenesis|nondevelopment (generic term)
+agenesis|1
+(noun)|agenesia|nondevelopment (generic term)
+agenise|1
+(verb)|Agenize|Agenise|process (generic term)|treat (generic term)
+agenize|1
+(verb)|Agenize|Agenise|process (generic term)|treat (generic term)
+agent|5
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|representative (generic term)
+(noun)|factor|broker|businessperson (generic term)|bourgeois (generic term)
+(noun)|federal agent|official (generic term)|functionary (generic term)
+(noun)|agentive role|semantic role (generic term)|participant role (generic term)
+agent-in-place|1
+(noun)|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+agent bank|2
+(noun)|lead bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+agent orange|1
+(noun)|Agent Orange|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+agent provocateur|1
+(noun)|provocateur|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+agential|1
+(adj)|representative (related term)
+agentive role|1
+(noun)|agent|semantic role (generic term)|participant role (generic term)
+agerasia|1
+(noun)|appearance (generic term)|visual aspect (generic term)
+ageratina|1
+(noun)|Ageratina|genus Ageratina|asterid dicot genus (generic term)
+ageratina altissima|1
+(noun)|white snakeroot|white sanicle|Ageratina altissima|Eupatorium rugosum|herb (generic term)|herbaceous plant (generic term)
+ageratum|2
+(noun)|mistflower|mist-flower|Conoclinium coelestinum|Eupatorium coelestinum|flower (generic term)
+(noun)|flower (generic term)
+ageratum houstonianum|1
+(noun)|common ageratum|Ageratum houstonianum|ageratum (generic term)
+aggeus|2
+(noun)|Haggai|Aggeus|prophet (generic term)
+(noun)|Haggai|Aggeus|Book of Haggai|book (generic term)
+agglomerate|4
+(adj)|agglomerated|agglomerative|clustered|collective (similar term)
+(noun)|volcanic rock (generic term)
+(noun)|pile|heap|mound|cumulation|cumulus|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|bunch (generic term)|bunch up (generic term)|bundle (generic term)|cluster (generic term)|clump (generic term)
+agglomerated|1
+(adj)|agglomerate|agglomerative|clustered|collective (similar term)
+agglomeration|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+agglomerative|1
+(adj)|agglomerate|agglomerated|clustered|collective (similar term)
+agglomerator|1
+(noun)|device (generic term)
+agglutinate|3
+(adj)|agglutinative|adhesive (similar term)
+(verb)|attach (generic term)
+(verb)|cling (generic term)|cleave (generic term)|adhere (generic term)|stick (generic term)|cohere (generic term)
+agglutinating activity|1
+(noun)|agglutination|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+agglutination|3
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|linguistic process (generic term)
+(noun)|agglutinating activity|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+agglutination test|1
+(noun)|blood test (generic term)
+agglutinative|2
+(adj)|polysynthetic|synthetic (similar term)
+(adj)|agglutinate|adhesive (similar term)
+agglutinin|1
+(noun)|antibody (generic term)
+agglutinogen|1
+(noun)|antigen (generic term)
+aggrade|1
+(verb)|grade (generic term)|degrade (antonym)
+aggrandise|1
+(verb)|embroider|pad|lard|embellish|aggrandize|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+aggrandisement|1
+(noun)|aggrandizement|elevation|increase (generic term)|step-up (generic term)
+aggrandize|1
+(verb)|embroider|pad|lard|embellish|aggrandise|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+aggrandizement|1
+(noun)|aggrandisement|elevation|increase (generic term)|step-up (generic term)
+aggravate|2
+(verb)|worsen|exacerbate|exasperate|change (generic term)|alter (generic term)|modify (generic term)|better (antonym)
+(verb)|exacerbate|exasperate|anger (generic term)
+aggravated|2
+(adj)|intense (similar term)
+(adj)|provoked|angry (similar term)
+aggravated assault|1
+(noun)|assault (generic term)
+aggravating|1
+(adj)|exacerbating|exasperating|intensifying (similar term)
+aggravation|3
+(noun)|exasperation|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|irritation|provocation|aggression (generic term)
+(noun)|exacerbation|intensification (generic term)
+aggravator|1
+(noun)|annoyance|unpleasant person (generic term)|disagreeable person (generic term)
+aggregate|6
+(adj)|aggregated|aggregative|mass|collective (similar term)
+(adj)|multiple (similar term)
+(noun)|congeries|conglomeration|sum (generic term)|summation (generic term)|sum total (generic term)
+(noun)|sum|total|totality|whole (generic term)|unit (generic term)
+(verb)|come (generic term)|add up (generic term)|amount (generic term)
+(verb)|combine|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+aggregate fruit|1
+(noun)|multiple fruit|syncarp|fruit (generic term)
+aggregated|1
+(adj)|aggregate|aggregative|mass|collective (similar term)
+aggregation|2
+(noun)|collection|accumulation|assemblage|group (generic term)|grouping (generic term)
+(noun)|collection|collecting|assembling|grouping (generic term)
+aggregative|1
+(adj)|aggregate|aggregated|mass|collective (similar term)
+aggregator|1
+(noun)|collector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+aggress|1
+(verb)|attack|act (generic term)|move (generic term)
+aggression|5
+(noun)|unfriendliness (generic term)
+(noun)|aggressiveness|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|hostility|action (generic term)
+(noun)|combat (generic term)|armed combat (generic term)
+(noun)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+aggressive|3
+(adj)|assertive (similar term)|self-asserting (similar term)|self-assertive (similar term)|battleful (similar term)|bellicose (similar term)|combative (similar term)|competitive (similar term)|militant (similar term)|hard-hitting (similar term)|high-pressure (similar term)|hostile (similar term)|in-your-face (similar term)|obstreperous (similar term)|predatory (similar term)|rapacious (similar term)|raptorial (similar term)|ravening (similar term)|vulturine (similar term)|vulturous (similar term)|pugnacious (similar term)|rough (similar term)|scrappy (similar term)|truculent (similar term)|assertive (related term)|hostile (related term)|offensive (related term)|unaggressive (antonym)
+(adj)|fast-growing|strong-growing|invasive (similar term)
+(adj)|belligerent|hostile (similar term)
+aggressively|1
+(adv)|sharply
+aggressiveness|3
+(noun)|drive (generic term)
+(noun)|aggression|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|belligerence|pugnacity|disagreeableness (generic term)
+aggressor|2
+(noun)|attacker|assailant|assaulter|wrongdoer (generic term)|offender (generic term)
+(noun)|instigator (generic term)|initiator (generic term)
+aggrieve|2
+(verb)|wrong (generic term)
+(verb)|grieve|afflict (generic term)
+aggro|1
+(noun)|aggravation (generic term)|irritation (generic term)|provocation (generic term)
+aggroup|1
+(verb)|group|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+agha|1
+(noun)|Aga|Agha|title (generic term)|title of respect (generic term)|form of address (generic term)
+aghan|1
+(noun)|Aghan|Margasivsa|Hindu calendar month (generic term)
+aghast|1
+(adj)|appalled|dismayed|shocked|afraid (similar term)
+agile|2
+(adj)|nimble|quick|spry|active (similar term)
+(adj)|nimble|intelligent (similar term)
+agilely|1
+(adv)|nimbly
+agility|1
+(noun)|legerity|lightness|lightsomeness|nimbleness|gracefulness (generic term)
+agincourt|1
+(noun)|Agincourt|pitched battle (generic term)
+aging|3
+(adj)|ageing|senescent|old (similar term)
+(noun)|ageing|senescence|organic process (generic term)|biological process (generic term)
+(noun)|ripening|ageing|organic process (generic term)|biological process (generic term)
+agio|1
+(noun)|agiotage|premium|exchange premium|charge (generic term)
+agiotage|1
+(noun)|agio|premium|exchange premium|charge (generic term)
+agism|1
+(noun)|ageism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+agitate|6
+(verb)|foment|stir up|provoke (generic term)|stimulate (generic term)
+(verb)|rouse|turn on|charge|commove|excite|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|crusade|fight|press|campaign|push|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|stir|shift|budge|move (generic term)
+(verb)|shake|move (generic term)
+(verb)|vex|disturb|commove|shake up|stir up|raise up|move (generic term)|displace (generic term)
+agitated|3
+(adj)|aroused (similar term)|emotional (similar term)|excited (similar term)|worked up (similar term)|demoniac (similar term)|demoniacal (similar term)|distraught (similar term)|overwrought (similar term)|jolted (similar term)|shaken (similar term)|feverish (similar term)|hectic (similar term)|frantic (similar term)|frenetic (similar term)|phrenetic (similar term)|frenzied (similar term)|hysterical (similar term)|psychedelic (similar term)|wild-eyed (similar term)|discomposed (related term)|excited (related term)|impatient (related term)|tense (related term)|unquiet (related term)|unsteady (related term)|unagitated (antonym)
+(adj)|bubbling (similar term)|foaming (similar term)|foamy (similar term)|frothing (similar term)|spumous (similar term)|spumy (similar term)|sudsy (similar term)|churning (similar term)|roiling (similar term)|roiled (similar term)|roily (similar term)|turbulent (similar term)|churning (similar term)|churned-up (similar term)|jolted (similar term)|rippled (similar term)|ruffled (similar term)|seething (similar term)|stirred (similar term)|unagitated (antonym)
+(adj)|tossing|moving (similar term)
+agitated depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+agitating|1
+(adj)|agitative|provoking|provocative (similar term)
+agitation|5
+(noun)|psychological state (generic term)|mental state (generic term)
+(noun)|ferment|fermentation|tempestuousness|unrest|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+(noun)|feeling (generic term)|calmness (antonym)
+(noun)|excitement|turmoil|upheaval|hullabaloo|disturbance (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+agitative|1
+(adj)|agitating|provoking|provocative (similar term)
+agitator|1
+(noun)|fomenter|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+agitprop|1
+(noun)|propaganda (generic term)
+agkistrodon|1
+(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus (generic term)
+agkistrodon contortrix|1
+(noun)|copperhead|Agkistrodon contortrix|pit viper (generic term)
+agkistrodon piscivorus|1
+(noun)|water moccasin|cottonmouth|cottonmouth moccasin|Agkistrodon piscivorus|pit viper (generic term)
+aglaia|1
+(noun)|Aglaia|Grace (generic term)
+aglaomorpha|1
+(noun)|Aglaomorpha|genus Aglaomorpha|fern genus (generic term)
+aglaomorpha meyeniana|1
+(noun)|bear's-paw fern|Aglaomorpha meyeniana|fern (generic term)
+aglaonema|1
+(noun)|Aglaonema|genus Aglaonema|monocot genus (generic term)|liliopsid genus (generic term)
+aglaonema modestum|1
+(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant (generic term)
+agleam|1
+(adj)|gleaming|nitid|bright (similar term)
+aglet|2
+(noun)|aiglet|sheath (generic term)
+(noun)|aiglet|aiguilette|braid (generic term)|gold braid (generic term)|braiding (generic term)
+aglitter|1
+(adj)|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+aglow|1
+(adj)|lambent|lucent|luminous|bright (similar term)
+agnail|1
+(noun)|hangnail|skin (generic term)|tegument (generic term)|cutis (generic term)
+agnate|2
+(adj)|agnatic|paternal|related (similar term)
+(noun)|patrikin|patrilineal kin|patrisib|patrilineal sib|relative (generic term)|relation (generic term)
+agnatha|1
+(noun)|Agnatha|superclass Agnatha|class (generic term)
+agnathan|1
+(noun)|jawless vertebrate|jawless fish|aquatic vertebrate (generic term)
+agnatic|1
+(adj)|agnate|paternal|related (similar term)
+agnation|1
+(noun)|patrilineage|unilateral descent (generic term)
+agnes de mille|1
+(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+agnes george de mille|1
+(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+agnes gonxha bojaxhiu|1
+(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun (generic term)|missionary (generic term)|missioner (generic term)
+agni|1
+(noun)|Agni|Hindu deity (generic term)
+agnise|1
+(verb)|recognize|recognise|realize|realise|agnize|know (generic term)|cognize (generic term)|cognise (generic term)
+agnize|1
+(verb)|recognize|recognise|realize|realise|agnise|know (generic term)|cognize (generic term)|cognise (generic term)
+agnomen|1
+(noun)|name (generic term)
+agnosia|1
+(noun)|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+agnostic|4
+(adj)|religious person (related term)|unbelief|disbelief (related term)
+(adj)|agnostical|nescient (similar term)|unbelieving (similar term)|gnostic (antonym)
+(noun)|doubter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|religious person (generic term)
+agnostical|1
+(adj)|agnostic|nescient (similar term)|unbelieving (similar term)|gnostic (antonym)
+agnosticism|2
+(noun)|religious orientation (generic term)
+(noun)|skepticism|scepticism|unbelief (generic term)|disbelief (generic term)
+agnus dei|2
+(noun)|Agnus Dei|Paschal Lamb|emblem (generic term)|allegory (generic term)
+(noun)|Agnus Dei|prayer (generic term)
+ago|1
+(adj)|agone|past (similar term)
+agog|1
+(adj)|excited (similar term)
+agon|1
+(noun)|celebration (generic term)|festivity (generic term)
+agonadal|1
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+agonal|1
+(adj)|suffering|hurt (related term)
+agone|1
+(adj)|ago|past (similar term)
+agonic line|1
+(noun)|line (generic term)
+agonidae|1
+(noun)|Agonidae|family Agonidae|fish family (generic term)
+agonise|2
+(verb)|agonize|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|agonize|suffer (generic term)
+agonised|1
+(adj)|agonized|painful (similar term)
+agonising|1
+(adj)|agonizing|excruciating|harrowing|torturing|torturous|torturesome|painful (similar term)
+agonist|4
+(noun)|protagonist|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|contestant (generic term)|antagonist (antonym)
+(noun)|antagonistic muscle (generic term)
+(noun)|drug (generic term)
+agonistic|3
+(adj)|celebration|festivity (related term)
+(adj)|agonistical|combative|competitive (similar term)|competitory (similar term)
+(adj)|strained|affected (similar term)|unnatural (similar term)
+agonistical|1
+(adj)|agonistic|combative|competitive (similar term)|competitory (similar term)
+agonize|2
+(verb)|agonise|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|agonise|suffer (generic term)
+agonized|1
+(adj)|agonised|painful (similar term)
+agonizing|1
+(adj)|agonising|excruciating|harrowing|torturing|torturous|torturesome|painful (similar term)
+agonizingly|1
+(adv)|excruciatingly|torturously
+agonus|1
+(noun)|Agonus|genus Agonus|fish genus (generic term)
+agonus cataphractus|1
+(noun)|pogge|armed bullhead|Agonus cataphractus|poacher (generic term)|sea poacher (generic term)|sea poker (generic term)
+agony|2
+(noun)|torment|torture|suffering (generic term)|hurt (generic term)
+(noun)|suffering|excruciation|pain (generic term)|hurting (generic term)
+agony aunt|1
+(noun)|newspaper columnist (generic term)
+agony column|1
+(noun)|column (generic term)|editorial (generic term)|newspaper column (generic term)
+agora|3
+(noun)|Israeli monetary unit (generic term)
+(noun)|marketplace (generic term)|mart (generic term)
+(noun)|public square|marketplace (generic term)|mart (generic term)
+agoraphobia|1
+(noun)|phobia (generic term)|phobic disorder (generic term)|phobic neurosis (generic term)
+agoraphobic|1
+(adj)|afraid (similar term)
+agouti|1
+(noun)|Dasyprocta aguti|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+agra|1
+(noun)|Agra|city (generic term)|metropolis (generic term)|urban center (generic term)
+agranulocytic|1
+(adj)|blood disease|blood disorder (related term)
+agranulocytosis|1
+(noun)|agranulosis|granulocytopenia|blood disease (generic term)|blood disorder (generic term)
+agranulosis|1
+(noun)|agranulocytosis|granulocytopenia|blood disease (generic term)|blood disorder (generic term)
+agrapha|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+agraphia|1
+(noun)|anorthography|logagraphia|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+agraphic|1
+(adj)|brain disorder|encephalopathy|brain disease (related term)
+agrarian|1
+(adj)|agricultural|farming|rural (similar term)
+agree|5
+(verb)|hold|concur|concord|disagree (antonym)
+(verb)|accept (generic term)|consent (generic term)|go for (generic term)
+(verb)|match|fit|correspond|check|jibe|gibe|tally|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|harmonize|harmonise|consort|accord|concord|fit in|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|suit (generic term)
+agreeability|1
+(noun)|agreeableness|disposition (generic term)|temperament (generic term)|disagreeableness (antonym)
+agreeable|3
+(adj)|good-natured (related term)|disagreeable (antonym)
+(adj)|accordant|conformable|consonant|concordant|consistent (similar term)
+(adj)|accordant (similar term)
+agreeableness|2
+(noun)|amenity|pleasantness (generic term)|sweetness (generic term)|disagreeableness (antonym)
+(noun)|agreeability|disposition (generic term)|temperament (generic term)|disagreeableness (antonym)
+agreeably|1
+(adv)|pleasantly|enjoyably|disagreeably (antonym)|unpleasantly (antonym)
+agreed|1
+(adj)|in agreement|united (similar term)
+agreed upon|1
+(adj)|stipulatory|uncontroversial (similar term)|noncontroversial (similar term)
+agreement|6
+(noun)|understanding|statement (generic term)
+(noun)|correspondence|compatibility (generic term)
+(noun)|accord|harmony (generic term)|concord (generic term)|concordance (generic term)|disagreement (antonym)
+(noun)|arrangement|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|concord|grammatical relation (generic term)
+(noun)|speech act (generic term)|disagreement (antonym)
+agrestic|2
+(adj)|rustic|rural (similar term)
+(adj)|unrefined (similar term)
+agribusiness|1
+(noun)|agriculture|factory farm|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+agricola|1
+(noun)|Agricola|Gnaeus Julius Agricola|general (generic term)|full general (generic term)
+agricultural|2
+(adj)|cultivation (related term)
+(adj)|agrarian|farming|rural (similar term)
+agricultural agent|1
+(noun)|county agent|extension agent|adviser (generic term)|advisor (generic term)|consultant (generic term)
+agricultural laborer|1
+(noun)|agricultural labourer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+agricultural labourer|1
+(noun)|agricultural laborer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+agriculturalist|1
+(noun)|agriculturist|cultivator|grower|raiser|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+agriculture|4
+(noun)|agribusiness|factory farm|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|farming|husbandry|cultivation (generic term)
+(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+agriculture department|1
+(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department (generic term)
+agriculture secretary|2
+(noun)|Secretary of Agriculture|Agriculture Secretary|secretary (generic term)
+(noun)|Secretary of Agriculture|Agriculture Secretary|secretaryship (generic term)
+agriculturist|1
+(noun)|agriculturalist|cultivator|grower|raiser|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+agrigento|1
+(noun)|Agrigento|Acragas|Girgenti|town (generic term)
+agrimonia|1
+(noun)|agrimony|herb (generic term)|herbaceous plant (generic term)
+agrimonia eupatoria|1
+(noun)|harvest-lice|Agrimonia eupatoria|agrimonia (generic term)|agrimony (generic term)
+agrimonia procera|1
+(noun)|fragrant agrimony|Agrimonia procera|agrimonia (generic term)|agrimony (generic term)
+agrimony|1
+(noun)|agrimonia|herb (generic term)|herbaceous plant (generic term)
+agriocharis|1
+(noun)|Agriocharis|genus Agriocharis|bird genus (generic term)
+agriocharis ocellata|1
+(noun)|ocellated turkey|Agriocharis ocellata|gallinaceous bird (generic term)|gallinacean (generic term)
+agrippa|1
+(noun)|Agrippa|Marcus Vipsanius Agrippa|statesman (generic term)|solon (generic term)|national leader (generic term)
+agrippina|2
+(noun)|Agrippina|Agrippina the Younger|Roman (generic term)
+(noun)|Agrippina|Agrippina the Elder|Roman (generic term)
+agrippina the elder|1
+(noun)|Agrippina|Agrippina the Elder|Roman (generic term)
+agrippina the younger|1
+(noun)|Agrippina|Agrippina the Younger|Roman (generic term)
+agrobacterium|1
+(noun)|Agrobacterium|genus Agrobacterium|bacteria genus (generic term)
+agrobacterium tumefaciens|1
+(noun)|Agrobacterium tumefaciens|bacteria species (generic term)
+agrobiologic|1
+(adj)|agrobiological|science|scientific discipline (related term)
+agrobiological|1
+(adj)|agrobiologic|science|scientific discipline (related term)
+agrobiology|1
+(noun)|science (generic term)|scientific discipline (generic term)
+agrologic|1
+(adj)|agrological|science|scientific discipline (related term)
+agrological|1
+(adj)|agrologic|science|scientific discipline (related term)
+agrology|1
+(noun)|science (generic term)|scientific discipline (generic term)
+agromania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+agronomic|1
+(adj)|agronomical|science|scientific discipline (related term)
+agronomical|1
+(adj)|agronomic|science|scientific discipline (related term)
+agronomist|1
+(noun)|expert (generic term)
+agronomy|1
+(noun)|scientific agriculture|science (generic term)|scientific discipline (generic term)
+agropyron|1
+(noun)|Agropyron|genus Agropyron|monocot genus (generic term)|liliopsid genus (generic term)
+agropyron cristatum|1
+(noun)|crested wheatgrass|crested wheat grass|fairway crested wheat grass|Agropyron cristatum|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron intermedium|1
+(noun)|intermediate wheatgrass|Agropyron intermedium|Elymus hispidus|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron pauciflorum|1
+(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron repens|1
+(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron smithii|1
+(noun)|western wheatgrass|bluestem wheatgrass|Agropyron smithii|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron subsecundum|1
+(noun)|bearded wheatgrass|Agropyron subsecundum|wheatgrass (generic term)|wheat-grass (generic term)
+agropyron trachycaulum|1
+(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass (generic term)|wheat-grass (generic term)
+agrostemma|1
+(noun)|Agrostemma|genus Agrostemma|caryophylloid dicot genus (generic term)
+agrostemma githago|1
+(noun)|corn cockle|corn campion|crown-of-the-field|Agrostemma githago|weed (generic term)
+agrostis|1
+(noun)|Agrostis|genus Agrostis|plant genus (generic term)
+agrostis alba|1
+(noun)|wood meadowgrass|Poa nemoralis|Agrostis alba|meadowgrass (generic term)|meadow grass (generic term)
+agrostis canina|1
+(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+agrostis nebulosa|1
+(noun)|cloud grass|Agrostis nebulosa|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+agrostis palustris|1
+(noun)|creeping bent|creeping bentgrass|Agrostis palustris|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+aground|1
+(adj)|beached (similar term)|high-and-dry (similar term)|shipwrecked (similar term)|stranded (similar term)|sunken (antonym)|afloat (antonym)
+agrypnia|1
+(noun)|vigil (generic term)|watch (generic term)
+agrypnotic|1
+(adj)|vigil|watch (related term)
+agua|1
+(noun)|agua toad|Bufo marinus|true toad (generic term)
+agua toad|1
+(noun)|agua|Bufo marinus|true toad (generic term)
+aguacate|1
+(noun)|avocado|alligator pear|avocado pear|edible fruit (generic term)
+ague|3
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|chills and fever|symptom (generic term)
+(noun)|acute accent|acute|accent (generic term)|accent mark (generic term)
+ague grass|1
+(noun)|ague root|Aletris farinosa|colicroot (generic term)|colic root (generic term)|crow corn (generic term)|star grass (generic term)|unicorn root (generic term)
+ague root|1
+(noun)|ague grass|Aletris farinosa|colicroot (generic term)|colic root (generic term)|crow corn (generic term)|star grass (generic term)|unicorn root (generic term)
+ague weed|1
+(noun)|agueweed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+agueweed|2
+(noun)|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+(noun)|boneset|thoroughwort|Eupatorium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+aguish|1
+(adj)|ill (similar term)|sick (similar term)
+agust von wassermann|1
+(noun)|Wassermann|Agust von Wassermann|bacteriologist (generic term)
+ahab|1
+(noun)|Ahab|king (generic term)|male monarch (generic term)|Rex (generic term)
+ahead|6
+(adj)|in the lead|leading|up (similar term)
+(adv)|in front|before
+(adv)|forward|backward (antonym)|back (antonym)
+(adv)|onward|onwards|forward|forwards|forrader
+(adv)|in advance|beforehand
+(adv)|out front|in the lead
+ahead of time|1
+(adv)|early|too soon|late (antonym)
+ahimsa|1
+(noun)|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+ahistorical|1
+(adj)|historical (antonym)
+ahmad shah masoud|1
+(noun)|Masoud|Ahmad Shah Masoud|leader (generic term)
+ahmed salman rushdie|1
+(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer (generic term)|author (generic term)
+ahmed zoki yamani|1
+(noun)|Yamani|Ahmed Zoki Yamani|minister (generic term)|government minister (generic term)
+ahorse|2
+(adj)|ahorseback|moving (similar term)
+(adv)|horseback|ahorseback
+ahorseback|2
+(adj)|ahorse|moving (similar term)
+(adv)|horseback|ahorse
+ahpcrc|1
+(noun)|Army High Performance Computing Research Center|AHPCRC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ahriman|1
+(noun)|Ahriman|Persian deity (generic term)
+ahuehuete|1
+(noun)|Ahuehuete|Tule tree|Montezuma cypress (generic term)|Mexican swamp cypress (generic term)|Taxodium mucronatum (generic term)
+ahura|1
+(noun)|Ahura|Hindu deity (generic term)
+ahura mazda|1
+(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity (generic term)
+ahvenanmaa|1
+(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago (generic term)
+ai|4
+(noun)|Army Intelligence|AI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+(noun)|artificial intelligence|AI|computer science (generic term)|computing (generic term)
+(noun)|three-toed sloth|Bradypus tridactylus|sloth (generic term)|tree sloth (generic term)
+(noun)|artificial insemination|AI|insemination (generic term)
+aiai|1
+(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+aid|6
+(noun)|assistance|help|resource (generic term)
+(noun)|assist|assistance|help|activity (generic term)
+(noun)|economic aid|gift (generic term)
+(noun)|care|attention|tending|work (generic term)
+(verb)|help|assist|support (generic term)|back up (generic term)
+(verb)|help|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+aid station|1
+(noun)|dressing station|first-aid station (generic term)
+aide|2
+(noun)|adjutant|aide-de-camp|military officer (generic term)|officer (generic term)
+(noun)|auxiliary|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+aide-de-camp|1
+(noun)|adjutant|aide|military officer (generic term)|officer (generic term)
+aide-memoire|1
+(noun)|position paper|memo (generic term)|memorandum (generic term)|memoranda (generic term)
+aided|1
+(adj)|assisted|motor-assisted (similar term)|power-assisted (similar term)|unassisted (antonym)
+aides|1
+(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity (generic term)
+aidoneus|1
+(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity (generic term)
+aids|1
+(noun)|AIDS|acquired immune deficiency syndrome|immunodeficiency (generic term)|infectious disease (generic term)
+aigina|1
+(noun)|Aegina|Aigina|Aegean island (generic term)
+aiglet|2
+(noun)|aglet|sheath (generic term)
+(noun)|aglet|aiguilette|braid (generic term)|gold braid (generic term)|braiding (generic term)
+aigret|1
+(noun)|aigrette|plume (generic term)
+aigrette|1
+(noun)|aigret|plume (generic term)
+aiguilette|1
+(noun)|aglet|aiglet|braid (generic term)|gold braid (generic term)|braiding (generic term)
+aiken|1
+(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer (generic term)|author (generic term)
+aikido|1
+(noun)|martial art (generic term)
+ail|3
+(noun)|garlic|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(verb)|suffer (generic term)|hurt (generic term)
+(verb)|afflict|trouble|pain|hurt (generic term)
+ailanthus|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+ailanthus altissima|1
+(noun)|tree of heaven|tree of the gods|Ailanthus altissima|ailanthus (generic term)
+ailanthus silkworm|1
+(noun)|Samia cynthia|silkworm (generic term)|giant silkworm (generic term)|wild wilkworm (generic term)
+aileron|1
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+ailey|1
+(noun)|Ailey|Alvin Ailey|choreographer (generic term)
+ailing|1
+(adj)|indisposed|peaked|poorly|sickly|unwell|under the weather|seedy|ill (similar term)|sick (similar term)
+ailment|1
+(noun)|complaint|ill|disorder (generic term)|upset (generic term)
+ailurophobia|1
+(noun)|zoophobia (generic term)
+ailuropoda|1
+(noun)|Ailuropoda|genus Ailuropoda|mammal genus (generic term)
+ailuropoda melanoleuca|1
+(noun)|giant panda|panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid (generic term)
+ailuropodidae|1
+(noun)|Ailuropodidae|family Ailuropodidae|mammal family (generic term)
+ailurus|1
+(noun)|Ailurus|genus Ailurus|mammal genus (generic term)
+ailurus fulgens|1
+(noun)|lesser panda|red panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid (generic term)
+aim|11
+(noun)|purpose|intent|intention|design|goal (generic term)|end (generic term)
+(noun)|object|objective|target|goal (generic term)|end (generic term)
+(noun)|steering (generic term)|guidance (generic term)|direction (generic term)
+(noun)|bearing|heading|direction (generic term)|way (generic term)
+(verb)|take|train|take aim|direct|position (generic term)
+(verb)|purpose|purport|propose|intend (generic term)|mean (generic term)|think (generic term)
+(verb)|drive|get|mean (generic term)|intend (generic term)
+(verb)|calculate|direct|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+(verb)|target|place|direct|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|mean (generic term)|intend (generic term)
+(verb)|draw a bead on|aspire|shoot for|plan (generic term)|be after (generic term)
+aimee semple mcpherson|1
+(noun)|McPherson|Aimee Semple McPherson|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+aimless|2
+(adj)|adrift|afloat|directionless|planless|rudderless|undirected|purposeless (similar term)
+(adj)|drifting|floating|vagabond|vagrant|unsettled (similar term)
+aimlessly|1
+(adv)|without aim
+aimlessness|1
+(noun)|purposelessness|meaninglessness (generic term)|purposefulness (antonym)
+ain|1
+(adj)|own|personal (similar term)
+aioli|1
+(noun)|aioli sauce|garlic sauce|sauce (generic term)
+aioli sauce|1
+(noun)|aioli|garlic sauce|sauce (generic term)
+air|15
+(adj)|aerial (similar term)|aerial (similar term)|flying (similar term)|free-flying (similar term)|land (antonym)|sea (antonym)
+(noun)|gas (generic term)
+(noun)|air travel|aviation|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|airwave|medium (generic term)
+(noun)|breeze|zephyr|gentle wind|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|aura|atmosphere|quality (generic term)
+(noun)|atmosphere|region (generic term)|part (generic term)
+(noun)|tune|melody|strain|melodic line|line|melodic phrase|music (generic term)
+(noun)|element (generic term)
+(verb)|air out|aerate|expose (generic term)
+(verb)|send|broadcast|beam|transmit|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|publicize|publicise|bare|tell (generic term)
+(verb)|dry (generic term)|dry out (generic term)
+(verb)|vent|ventilate|air out|refresh (generic term)|freshen (generic term)
+air-breathing|1
+(adj)|bodily process|body process|bodily function|activity (related term)
+air-condition|2
+(verb)|process (generic term)|treat (generic term)
+(verb)|air-cool|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+air-conditioned|1
+(adj)|cool (similar term)
+air-cool|1
+(verb)|air-condition|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+air-cooled|1
+(adj)|cool (similar term)
+air-dried|1
+(adj)|dry (similar term)
+air-drop|1
+(verb)|drop (generic term)|drop off (generic term)|set down (generic term)|put down (generic term)|unload (generic term)|discharge (generic term)
+air-dry|1
+(adj)|dry (similar term)
+air-filled|1
+(adj)|full (similar term)
+air-freight|1
+(verb)|air-ship|airfreight|freight (generic term)
+air-intake|1
+(noun)|duct (generic term)
+air-raid shelter|1
+(noun)|bomb shelter|bombproof|chamber (generic term)
+air-ship|1
+(verb)|airfreight|air-freight|freight (generic term)
+air-slake|1
+(verb)|slack (generic term)|slake (generic term)
+air-sleeve|1
+(noun)|windsock|wind sock|sock|air sock|wind sleeve|wind cone|drogue|visual signal (generic term)
+air-tight|2
+(adj)|airtight|invulnerable (similar term)
+(adj)|airtight|gas-tight|tight (similar term)
+air-to-air|1
+(adj)|surface-to-air (antonym)|air-to-surface (antonym)
+air-to-air missile|1
+(noun)|missile (generic term)
+air-to-ground|1
+(adj)|air-to-surface|air-to-air (antonym)|surface-to-air (antonym)
+air-to-ground missile|1
+(noun)|air-to-surface missile|missile (generic term)
+air-to-surface|1
+(adj)|air-to-ground|air-to-air (antonym)|surface-to-air (antonym)
+air-to-surface missile|1
+(noun)|air-to-ground missile|missile (generic term)
+air alert|3
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|alert (generic term)|qui vive (generic term)
+(noun)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+air attache|1
+(noun)|military attache (generic term)
+air attack|1
+(noun)|air raid|foray (generic term)|raid (generic term)|maraud (generic term)
+air bag|1
+(noun)|bag (generic term)|restraint (generic term)|constraint (generic term)
+air base|1
+(noun)|air station|base (generic term)|base of operations (generic term)
+air bladder|1
+(noun)|swim bladder|sac (generic term)
+air bubble|1
+(noun)|bubble (generic term)
+air castle|1
+(noun)|reverie|revery|daydream|daydreaming|oneirism|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+air cell|1
+(noun)|alveolus|air sac|sac (generic term)
+air cleaner|1
+(noun)|air filter|filter (generic term)
+air combat command|1
+(noun)|Air Combat Command|ACC|command (generic term)
+air compressor|1
+(noun)|compressor (generic term)
+air conditioner|1
+(noun)|air conditioning|cooling system (generic term)|cooling (generic term)
+air conditioning|1
+(noun)|air conditioner|cooling system (generic term)|cooling (generic term)
+air corps|1
+(noun)|Air Corps|air force (generic term)|airforce (generic term)
+air cover|1
+(noun)|protection (generic term)
+air crew|1
+(noun)|aircrew|crew (generic term)
+air current|1
+(noun)|wind|current of air|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+air cushion|3
+(noun)|compressed air (generic term)
+(noun)|air spring|shock absorber (generic term)|shock (generic term)|cushion (generic term)
+(noun)|inflatable cushion|cushion (generic term)
+air defense|1
+(noun)|defense (generic term)|defence (generic term)|defensive measure (generic term)
+air division|1
+(noun)|division|air unit (generic term)
+air duct|1
+(noun)|air passage|airway|duct (generic term)
+air embolism|2
+(noun)|aeroembolism|gas embolism|embolism (generic term)
+(noun)|decompression sickness|aeroembolism|gas embolism|caisson disease|bends|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+air filter|1
+(noun)|air cleaner|filter (generic term)
+air flow|1
+(noun)|airflow|flow of air|flow (generic term)|flowing (generic term)
+air force|2
+(noun)|airforce|military service (generic term)|armed service (generic term)|service (generic term)
+(noun)|United States Air Force|U. S. Air Force|US Air Force|Air Force|USAF|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+air force academy|1
+(noun)|academy (generic term)
+air force intelligence surveillance and reconnaissance|1
+(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+air force isr|1
+(noun)|Air Force Intelligence Surveillance and Reconnaissance|Air Force ISR|AFISR|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+air force officer|1
+(noun)|commander|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+air force research laboratory|1
+(noun)|Air Force Research Laboratory|AFRL|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+air force space command|1
+(noun)|Air Force Space Command|AFSPC|command (generic term)
+air gas|1
+(noun)|producer gas|gas (generic term)
+air group|1
+(noun)|air unit (generic term)
+air gun|1
+(noun)|airgun|air rifle|gun (generic term)
+air hammer|1
+(noun)|jackhammer|pneumatic hammer|hammer (generic term)|power hammer (generic term)
+air hole|2
+(noun)|air pocket|pocket|atmospheric phenomenon (generic term)
+(noun)|hole (generic term)
+air horn|2
+(noun)|horn (generic term)
+(noun)|intake (generic term)
+air hose|1
+(noun)|airline|hose (generic term)|hosepipe (generic term)
+air hostess|1
+(noun)|stewardess|hostess|steward (generic term)|flight attendant (generic term)
+air jacket|1
+(noun)|Mae West|life jacket (generic term)|life vest (generic term)|cork jacket (generic term)
+air lane|1
+(noun)|flight path|airway|skyway|path (generic term)|route (generic term)|itinerary (generic term)
+air letter|1
+(noun)|airmail letter|aerogram|aerogramme|letter (generic term)|missive (generic term)
+air lock|1
+(noun)|airlock|chamber (generic term)
+air mail|1
+(noun)|mail (generic term)|surface mail (antonym)
+air marshal|1
+(noun)|sky marshal|marshal (generic term)|marshall (generic term)
+air mass|1
+(noun)|atmosphere (generic term)|atmospheric state (generic term)
+air mattress|1
+(noun)|mattress (generic term)
+air medal|1
+(noun)|Air Medal|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+air mile|1
+(noun)|nautical mile|mile|mi|naut mi|knot|international nautical mile|nautical linear unit (generic term)
+air national guard|1
+(noun)|Air National Guard|ANG|National Guard (generic term)|home reserve (generic term)
+air out|2
+(verb)|air|aerate|expose (generic term)
+(verb)|vent|ventilate|air|refresh (generic term)|freshen (generic term)
+air passage|1
+(noun)|air duct|airway|duct (generic term)
+air plant|1
+(noun)|epiphyte|aerophyte|epiphytic plant|plant (generic term)|flora (generic term)|plant life (generic term)
+air pocket|1
+(noun)|pocket|air hole|atmospheric phenomenon (generic term)
+air pollution|1
+(noun)|pollution (generic term)
+air potato|1
+(noun)|Dioscorea bulbifera|yam (generic term)|yam plant (generic term)
+air power|1
+(noun)|aviation|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+air pressure|1
+(noun)|atmospheric pressure|gas pressure (generic term)
+air pump|1
+(noun)|vacuum pump|pump (generic term)
+air raid|1
+(noun)|air attack|foray (generic term)|raid (generic term)|maraud (generic term)
+air reconnaissance|1
+(noun)|reconnaissance (generic term)|reconnaissance mission (generic term)
+air rifle|1
+(noun)|air gun|airgun|gun (generic term)
+air sac|2
+(noun)|alveolus|air cell|sac (generic term)
+(noun)|sac (generic term)
+air search radar|1
+(noun)|naval radar (generic term)
+air shaft|1
+(noun)|air well|shaft (generic term)
+air sick|1
+(adj)|airsick|carsick|seasick|ill (similar term)|sick (similar term)
+air sickness|1
+(noun)|airsickness|motion sickness (generic term)|kinetosis (generic term)
+air sock|1
+(noun)|windsock|wind sock|sock|air-sleeve|wind sleeve|wind cone|drogue|visual signal (generic term)
+air space|1
+(noun)|airspace|space (generic term)
+air spring|1
+(noun)|air cushion|shock absorber (generic term)|shock (generic term)|cushion (generic term)
+air station|1
+(noun)|air base|base (generic term)|base of operations (generic term)
+air terminal|1
+(noun)|airport terminal|terminal (generic term)|terminus (generic term)|depot (generic term)
+air thermometer|1
+(noun)|gas thermometer|thermometer (generic term)
+air traffic|1
+(noun)|traffic (generic term)
+air transport|1
+(noun)|air transportation|transportation (generic term)|shipping (generic term)|transport (generic term)
+air transportation|1
+(noun)|air transport|transportation (generic term)|shipping (generic term)|transport (generic term)
+air transportation system|1
+(noun)|transportation system (generic term)|transportation (generic term)|transit (generic term)
+air travel|1
+(noun)|aviation|air|travel (generic term)|traveling (generic term)|travelling (generic term)
+air traveler|1
+(noun)|air traveller|traveler (generic term)|traveller (generic term)
+air traveller|1
+(noun)|air traveler|traveler (generic term)|traveller (generic term)
+air unit|1
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+air wave|1
+(noun)|sound wave (generic term)|acoustic wave (generic term)
+air well|1
+(noun)|air shaft|shaft (generic term)
+airborne|1
+(adj)|mobile (similar term)
+airborne patrol|1
+(noun)|patrol (generic term)
+airborne transmission|1
+(noun)|transmission mechanism (generic term)
+airbrake|2
+(noun)|dive brake|restraint (generic term)|constraint (generic term)
+(noun)|power brake (generic term)
+airbrush|2
+(noun)|atomizer (generic term)|atomiser (generic term)|spray (generic term)|sprayer (generic term)|nebulizer (generic term)|nebuliser (generic term)
+(verb)|paint (generic term)
+airburst|1
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+airbus|1
+(noun)|airliner (generic term)
+aircraft|1
+(noun)|craft (generic term)
+aircraft carrier|1
+(noun)|carrier|flattop|attack aircraft carrier|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+aircraft engine|1
+(noun)|engine (generic term)
+aircraft landing|1
+(noun)|airplane landing|landing (generic term)
+aircraftman|1
+(noun)|aircraftsman|noncommissioned officer (generic term)|noncom (generic term)
+aircraftsman|1
+(noun)|aircraftman|noncommissioned officer (generic term)|noncom (generic term)
+aircrew|1
+(noun)|air crew|crew (generic term)
+aircrewman|1
+(noun)|crewman (generic term)|crew member (generic term)
+airdock|1
+(noun)|hangar|repair shed|structure (generic term)|construction (generic term)
+airdrome|1
+(noun)|airport|aerodrome|drome|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+airdrop|1
+(noun)|delivery (generic term)|bringing (generic term)
+aire|1
+(noun)|Aire|River Aire|Aire River|river (generic term)
+aire river|1
+(noun)|Aire|River Aire|Aire River|river (generic term)
+aired|1
+(adj)|airy|ventilated (similar term)
+airedale|1
+(noun)|Airedale|Airedale terrier|terrier (generic term)
+airedale terrier|1
+(noun)|Airedale|Airedale terrier|terrier (generic term)
+airfare|1
+(noun)|fare (generic term)|transportation (generic term)
+airfield|1
+(noun)|landing field|flying field|field|facility (generic term)|installation (generic term)
+airflow|1
+(noun)|air flow|flow of air|flow (generic term)|flowing (generic term)
+airfoil|1
+(noun)|aerofoil|control surface|surface|device (generic term)
+airforce|1
+(noun)|air force|military service (generic term)|armed service (generic term)|service (generic term)
+airframe|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+airfreight|1
+(verb)|air-ship|air-freight|freight (generic term)
+airgun|1
+(noun)|air gun|air rifle|gun (generic term)
+airhead|2
+(noun)|simpleton (generic term)|simple (generic term)
+(noun)|bridgehead (generic term)|foothold (generic term)
+airheaded|1
+(adj)|dizzy|empty-headed|featherbrained|giddy|light-headed|lightheaded|silly|frivolous (similar term)
+airily|1
+(adv)|flippantly
+airiness|3
+(noun)|capaciousness (generic term)|roominess (generic term)|spaciousness (generic term)|commodiousness (generic term)
+(noun)|buoyancy|lightness (generic term)|weightlessness (generic term)
+(noun)|delicacy|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+airing|3
+(noun)|dissemination|public exposure|spreading|transmission (generic term)
+(noun)|excursion (generic term)|jaunt (generic term)|outing (generic term)|junket (generic term)|pleasure trip (generic term)|expedition (generic term)|sashay (generic term)
+(noun)|ventilation|improvement (generic term)
+airing cupboard|1
+(noun)|cupboard (generic term)|closet (generic term)
+airless|1
+(adj)|close|stuffy|unaired|unventilated (similar term)
+airlift|2
+(noun)|lift|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(verb)|lift|fly (generic term)
+airlike|1
+(adj)|aeriform|gaseous (similar term)
+airline|2
+(noun)|air hose|hose (generic term)|hosepipe (generic term)
+(noun)|airline business|airway|line (generic term)
+airline business|1
+(noun)|airline|airway|line (generic term)
+airliner|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+airlock|1
+(noun)|air lock|chamber (generic term)
+airmail|3
+(noun)|mail (generic term)
+(noun)|airpost|mail (generic term)|mail service (generic term)|postal service (generic term)|post (generic term)
+(verb)|mail (generic term)|post (generic term)|send (generic term)
+airmail letter|1
+(noun)|air letter|aerogram|aerogramme|letter (generic term)|missive (generic term)
+airmailer|1
+(noun)|mailer (generic term)
+airman|1
+(noun)|aviator|aeronaut|flier|flyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+airmanship|1
+(noun)|aviation|art (generic term)|artistry (generic term)|prowess (generic term)
+airplane|1
+(noun)|aeroplane|plane|heavier-than-air craft (generic term)
+airplane landing|1
+(noun)|aircraft landing|landing (generic term)
+airplane maneuver|1
+(noun)|flight maneuver|maneuver (generic term)|manoeuvre (generic term)|evasive action (generic term)
+airplane mechanics|1
+(noun)|trade (generic term)|craft (generic term)
+airplane pilot|1
+(noun)|pilot|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+airplane propeller|1
+(noun)|airscrew|prop|propeller (generic term)|propellor (generic term)
+airplane ticket|1
+(noun)|plane ticket|ticket (generic term)
+airport|1
+(noun)|airdrome|aerodrome|drome|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+airport terminal|1
+(noun)|air terminal|terminal (generic term)|terminus (generic term)|depot (generic term)
+airpost|1
+(noun)|airmail|mail (generic term)|mail service (generic term)|postal service (generic term)|post (generic term)
+airs|1
+(noun)|pose|affectedness (generic term)
+airscrew|1
+(noun)|airplane propeller|prop|propeller (generic term)|propellor (generic term)
+airship|1
+(noun)|dirigible|lighter-than-air craft (generic term)
+airsick|1
+(adj)|air sick|carsick|seasick|ill (similar term)|sick (similar term)
+airsickness|1
+(noun)|air sickness|motion sickness (generic term)|kinetosis (generic term)
+airspace|2
+(noun)|air space|space (generic term)
+(noun)|atmosphere (generic term)|air (generic term)
+airspeed|1
+(noun)|speed (generic term)|velocity (generic term)
+airstream|2
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|slipstream|race|backwash|wash|flow (generic term)
+airstrip|1
+(noun)|flight strip|landing strip|strip|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+airt|1
+(verb)|redirect|send (generic term)|direct (generic term)
+airtight|2
+(adj)|air-tight|invulnerable (similar term)
+(adj)|air-tight|gas-tight|tight (similar term)
+airwave|1
+(noun)|air|medium (generic term)
+airway|4
+(noun)|air passage|air duct|duct (generic term)
+(noun)|air lane|flight path|skyway|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|respiratory tract|tract (generic term)
+(noun)|airline|airline business|line (generic term)
+airwoman|1
+(noun)|aviatrix|aviatress|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+airworthiness|1
+(noun)|soundness (generic term)
+airworthy|1
+(adj)|unairworthy (antonym)
+airy|4
+(adj)|aired|ventilated (similar term)
+(adj)|impractical|visionary|Laputan|windy|utopian (similar term)
+(adj)|light (similar term)
+(adj)|aeriform|aerial|aery|ethereal|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+aisle|3
+(noun)|passage (generic term)
+(noun)|gangway|passageway (generic term)
+(noun)|area (generic term)
+aitchbone|1
+(noun)|cut of beef (generic term)
+aix|1
+(noun)|Aix|genus Aix|bird genus (generic term)
+aix-la-chapelle|1
+(noun)|Aachen|Aken|Aix-la-Chapelle|city (generic term)|metropolis (generic term)|urban center (generic term)
+aix galericulata|1
+(noun)|mandarin duck|Aix galericulata|duck (generic term)
+aix sponsa|1
+(noun)|wood duck|summer duck|wood widgeon|Aix sponsa|duck (generic term)
+aizoaceae|1
+(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family (generic term)
+ajaia|1
+(noun)|Ajaia|genus Ajaia|bird genus (generic term)
+ajaia ajaja|1
+(noun)|roseate spoonbill|Ajaia ajaja|spoonbill (generic term)
+ajar|1
+(adj)|open (similar term)|unfastened (similar term)
+ajax|1
+(noun)|Ajax|mythical being (generic term)
+ajuga|1
+(noun)|Ajuga|genus Ajuga|asterid dicot genus (generic term)
+ajuga chamaepitys|1
+(noun)|ground pine|yellow bugle|Ajuga chamaepitys|bugle (generic term)|bugleweed (generic term)
+ajuga genevensis|1
+(noun)|erect bugle|blue bugle|Ajuga genevensis|bugle (generic term)|bugleweed (generic term)
+ajuga pyramidalis|1
+(noun)|pyramid bugle|Ajuga pyramidalis|bugle (generic term)|bugleweed (generic term)
+ajuga reptans|1
+(noun)|creeping bugle|Ajuga reptans|bugle (generic term)|bugleweed (generic term)
+ak|1
+(noun)|Alaska|Last Frontier|AK|American state (generic term)
+akaba|1
+(noun)|Al Aqabah|Aqaba|Akaba|city (generic term)|metropolis (generic term)|urban center (generic term)
+akan|1
+(noun)|Akan|Kwa (generic term)
+akaryocyte|1
+(noun)|akaryote|acaryote|cell (generic term)
+akaryote|1
+(noun)|akaryocyte|acaryote|cell (generic term)
+akee|2
+(noun)|akee tree|Blighia sapida|fruit tree (generic term)
+(noun)|ackee|edible fruit (generic term)
+akee tree|1
+(noun)|akee|Blighia sapida|fruit tree (generic term)
+aken|1
+(noun)|Aachen|Aken|Aix-la-Chapelle|city (generic term)|metropolis (generic term)|urban center (generic term)
+akeridae|1
+(noun)|Akeridae|family Akeridae|mollusk family (generic term)
+akha|1
+(noun)|Hani|Akha|Loloish (generic term)
+akhbari|1
+(noun)|Akhbari|religious movement (generic term)
+akhenaten|1
+(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+akhenaton|1
+(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+akimbo|1
+(adj)|crooked (similar term)
+akin|2
+(adj)|kindred|related|similar (similar term)
+(adj)|blood-related|cognate|consanguine|consanguineous|consanguineal|kin|related (similar term)
+akinesia|1
+(noun)|akinesis|paralysis (generic term)|palsy (generic term)
+akinesis|1
+(noun)|akinesia|paralysis (generic term)|palsy (generic term)
+akinetic epilepsy|1
+(noun)|epilepsy (generic term)
+akira kurosawa|1
+(noun)|Kurosawa|Akira Kurosawa|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+akka|1
+(noun)|Acre|Akko|Akka|Accho|town (generic term)|port (generic term)
+akkadian|1
+(noun)|Akkadian|Semitic (generic term)
+akko|1
+(noun)|Acre|Akko|Akka|Accho|town (generic term)|port (generic term)
+akmola|1
+(noun)|Astana|Akmola|capital of Kazakhstan|capital (generic term)
+akron|1
+(noun)|Akron|city (generic term)|metropolis (generic term)|urban center (generic term)
+aksa martyrs brigades|1
+(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+aku|1
+(noun)|Yoruba|Aku|Kwa (generic term)
+akvavit|1
+(noun)|aquavit|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+akwa'ala|2
+(noun)|Akwa'ala|Hokan (generic term)|Hoka (generic term)
+(noun)|Akwa'ala|Yuman (generic term)
+al|2
+(noun)|aluminum|aluminium|Al|atomic number 13|metallic element (generic term)|metal (generic term)
+(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state (generic term)
+al-aksa martyrs brigades|1
+(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-asifa|1
+(noun)|al-Fatah|Fatah|al-Asifa|political movement (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-fatah|1
+(noun)|al-Fatah|Fatah|al-Asifa|political movement (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-gama'a al-islamiyya|1
+(noun)|al-Gama'a al-Islamiyya|Islamic Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-hakim|1
+(noun)|Al-hakim|religious leader (generic term)
+al-hasan ibn al-haytham|1
+(noun)|Alhazen|Alhacen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician (generic term)|physicist (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+al-haytham|1
+(noun)|Alhazen|Alhacen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician (generic term)|physicist (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+al-hudaydah|1
+(noun)|Hodeida|Al-Hudaydah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+al-iraq|1
+(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country (generic term)|Asian nation (generic term)
+al-itihaad al-islamiya|1
+(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-jihad|1
+(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-ma'unah|1
+(noun)|al-Ma'unah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-magrib|1
+(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country (generic term)|African nation (generic term)
+al-muhajiroun|1
+(noun)|al-Muhajiroun|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-mukalla|1
+(noun)|Mukalla|Al-Mukalla|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+al-qa'ida|1
+(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-qaeda|1
+(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-qaida|1
+(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-qur'an|1
+(noun)|Koran|Quran|al-Qur'an|Book|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+al-rashid trust|1
+(noun)|al-Rashid Trust|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-tawhid|1
+(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al-ummah|1
+(noun)|al-Ummah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al alamayn|1
+(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle (generic term)
+al aqabah|1
+(noun)|Al Aqabah|Aqaba|Akaba|city (generic term)|metropolis (generic term)|urban center (generic term)
+al capone|1
+(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster (generic term)|mobster (generic term)
+al dente|1
+(adj)|hard (similar term)
+al faran|1
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al gore|1
+(noun)|Gore|Al Gore|Albert Gore Jr.|Vice President of the United States (generic term)
+al hirschfeld|1
+(noun)|Hirschfeld|Al Hirschfeld|artist (generic term)|creative person (generic term)
+al itihaad al islamiya|1
+(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al jolson|1
+(noun)|Jolson|Al Jolson|Asa Yoelson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+al ladhiqiyah|1
+(noun)|Al Ladhiqiyah|Latakia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+al madinah|1
+(noun)|Medina|Al Madinah|city (generic term)|metropolis (generic term)|urban center (generic term)
+al nathir|1
+(noun)|Al Nathir|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al qahira|1
+(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital (generic term)|port (generic term)
+al qanoon|1
+(noun)|Lashkar-e-Omar|Al Qanoon|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al sunna wal jamma|1
+(noun)|al Sunna Wal Jamma|Followers of the Phrophet|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+al tawhid|1
+(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ala|2
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(noun)|wing (generic term)
+alabama|4
+(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state (generic term)
+(noun)|Alabama|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Alabama|Alabama River|river (generic term)
+(noun)|Alabama|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+alabama lip fern|1
+(noun)|smooth lip fern|Alabama lip fern|Cheilanthes alabamensis|lip fern (generic term)|lipfern (generic term)
+alabama river|1
+(noun)|Alabama|Alabama River|river (generic term)
+alabaman|1
+(noun)|Alabaman|Alabamian|American (generic term)
+alabamian|1
+(noun)|Alabaman|Alabamian|American (generic term)
+alabaster|4
+(adj)|alabastrine|gypsum (related term)
+(noun)|gypsum (generic term)
+(noun)|oriental alabaster|onyx marble|Mexican onyx|calcite (generic term)
+(noun)|white (generic term)|whiteness (generic term)
+alabastrine|1
+(adj)|alabaster|gypsum (related term)
+alacritous|1
+(adj)|fast (similar term)
+alacrity|1
+(noun)|briskness|smartness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+aladdin|1
+(noun)|Aladdin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+aladdin's lamp|1
+(noun)|Aladdin's lamp|lamp (generic term)
+alalia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+alamo|1
+(noun)|Alamo|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+alan alexander milne|1
+(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer (generic term)|author (generic term)
+alan bartlett shepard jr.|1
+(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+alan hodgkin|1
+(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist (generic term)
+alan jay lerner|1
+(noun)|Lerner|Alan Jay Lerner|lyricist (generic term)|lyrist (generic term)
+alan mathison turing|1
+(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician (generic term)
+alan paton|1
+(noun)|Paton|Alan Paton|Alan Stewart Paton|writer (generic term)|author (generic term)
+alan seeger|1
+(noun)|Seeger|Alan Seeger|poet (generic term)
+alan shepard|1
+(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+alan stewart paton|1
+(noun)|Paton|Alan Paton|Alan Stewart Paton|writer (generic term)|author (generic term)
+alan turing|1
+(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician (generic term)
+aland islands|1
+(noun)|Aland islands|Aaland islands|Ahvenanmaa|archipelago (generic term)
+alanine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+alar|3
+(adj)|axillary|angle (related term)
+(adj)|alary|aliform|wing-shaped|winged (similar term)
+(noun)|Alar|daminozide|chemical (generic term)|chemical substance (generic term)
+alaric|1
+(noun)|Alaric|king (generic term)|male monarch (generic term)|Rex (generic term)
+alarm|6
+(noun)|dismay|consternation|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|warning device|alarm system|device (generic term)
+(noun)|alert|warning signal|alarum|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|alarm clock|clock (generic term)
+(verb)|dismay|appal|appall|horrify|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+(verb)|alert|warn (generic term)
+alarm bell|1
+(noun)|tocsin|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+alarm clock|1
+(noun)|alarm|clock (generic term)
+alarm system|1
+(noun)|alarm|warning device|device (generic term)
+alarmed|1
+(adj)|afraid (similar term)
+alarming|1
+(adj)|appalling (similar term)|dismaying (similar term)|atrocious (similar term)|frightful (similar term)|horrifying (similar term)|horrible (similar term)|ugly (similar term)|awful (similar term)|dire (similar term)|direful (similar term)|dread (similar term)|dreaded (similar term)|dreadful (similar term)|fearful (similar term)|fearsome (similar term)|frightening (similar term)|horrendous (similar term)|horrific (similar term)|terrible (similar term)|baleful (similar term)|forbidding (similar term)|menacing (similar term)|minacious (similar term)|minatory (similar term)|ominous (similar term)|sinister (similar term)|threatening (similar term)|bloodcurdling (similar term)|hair-raising (similar term)|nightmarish (similar term)|chilling (similar term)|scarey (similar term)|scary (similar term)|shivery (similar term)|shuddery (similar term)|creepy (similar term)|creepy-crawly (similar term)|formidable (similar term)|redoubtable (similar term)|unnerving (similar term)|ghastly (similar term)|grim (similar term)|grisly (similar term)|gruesome (similar term)|macabre (similar term)|sick (similar term)|hairy (similar term)|petrifying (similar term)|stupefying (similar term)|terrific (similar term)|terrifying (similar term)|unalarming (antonym)
+alarmism|1
+(noun)|warning (generic term)
+alarmist|1
+(noun)|communicator (generic term)
+alarum|1
+(noun)|alarm|alert|warning signal|signal (generic term)|signaling (generic term)|sign (generic term)
+alary|1
+(adj)|alar|aliform|wing-shaped|winged (similar term)
+alas|1
+(adv)|unfortunately|unluckily|regrettably|luckily (antonym)|fortunately (antonym)
+alaska|1
+(noun)|Alaska|Last Frontier|AK|American state (generic term)
+alaska cedar|1
+(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar (generic term)|cedar tree (generic term)
+alaska cod|1
+(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod (generic term)|codfish (generic term)
+alaska crab|2
+(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab (generic term)|crabmeat (generic term)
+(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab (generic term)
+alaska fur seal|1
+(noun)|Alaska fur seal|Callorhinus ursinus|fur seal (generic term)
+alaska king crab|2
+(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab (generic term)|crabmeat (generic term)
+(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab (generic term)
+alaska native|1
+(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan (generic term)
+alaska peninsula|1
+(noun)|Alaska Peninsula|peninsula (generic term)
+alaska range|1
+(noun)|Alaska Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+alaska rein orchid|1
+(noun)|Alaska rein orchid|Habenaria unalascensis|rein orchid (generic term)|rein orchis (generic term)
+alaska standard time|1
+(noun)|Alaska Standard Time|Yukon Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+alaskan|2
+(adj)|Alaskan|American state (related term)|American (related term)
+(noun)|Alaskan|American (generic term)
+alaskan brown bear|1
+(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+alaskan king crab|2
+(noun)|Alaska king crab|Alaskan king crab|king crab|Alaska crab|crab (generic term)|crabmeat (generic term)
+(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab (generic term)
+alaskan malamute|1
+(noun)|malamute|malemute|Alaskan malamute|sled dog (generic term)|sledge dog (generic term)
+alaskan native|1
+(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan (generic term)
+alaskan pipeline|1
+(noun)|Alaskan pipeline|trans-Alaska pipeline|pipeline (generic term)|line (generic term)
+alastrim|1
+(noun)|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+alate|1
+(adj)|alated|winged (similar term)
+alated|1
+(adj)|alate|winged (similar term)
+alauda|1
+(noun)|Alauda|genus Alauda|bird genus (generic term)
+alauda arvensis|1
+(noun)|skylark|Alauda arvensis|lark (generic term)
+alaudidae|1
+(noun)|Alaudidae|family Alaudidae|bird family (generic term)
+alb|1
+(noun)|vestment (generic term)
+albacore|2
+(noun)|tuna (generic term)|tuna fish (generic term)|tunny (generic term)
+(noun)|long-fin tunny|Thunnus alalunga|tuna (generic term)|tunny (generic term)
+alban berg|1
+(noun)|Berg|Alban Berg|composer (generic term)
+albania|1
+(noun)|Albania|Republic of Albania|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+albanian|3
+(adj)|Albanian|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Albanian|European (generic term)
+(noun)|Albanian|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+albanian capital|1
+(noun)|Tirana|Albanian capital|national capital (generic term)
+albanian monetary unit|1
+(noun)|Albanian monetary unit|monetary unit (generic term)
+albany|2
+(noun)|Albany|capital of New York|state capital (generic term)
+(noun)|Albany|town (generic term)
+albatrellus|1
+(noun)|Albatrellus|genus Albatrellus|fungus genus (generic term)
+albatrellus dispansus|1
+(noun)|Albatrellus dispansus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+albatrellus ovinus|1
+(noun)|Albatrellus ovinus|sheep polypore|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+albatross|2
+(noun)|millstone|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|mollymawk|pelagic bird (generic term)|oceanic bird (generic term)
+albedo|1
+(noun)|reflective power|ratio (generic term)
+albee|1
+(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist (generic term)|playwright (generic term)
+alben barkley|1
+(noun)|Barkley|Alben Barkley|Alben William Barkley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+alben william barkley|1
+(noun)|Barkley|Alben Barkley|Alben William Barkley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+albers|1
+(noun)|Albers|Josef Albers|abstractionist (generic term)|abstract artist (generic term)
+albers-schonberg disease|1
+(noun)|osteopetrosis|Albers-Schonberg disease|marble bones disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+albert|1
+(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort (generic term)
+albert abraham michelson|1
+(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist (generic term)
+albert bruce sabin|1
+(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist (generic term)
+albert camus|1
+(noun)|Camus|Albert Camus|writer (generic term)|author (generic term)|existentialist (generic term)|existentialist philosopher (generic term)
+albert edward|1
+(noun)|Edward|Edward VII|Albert Edward|King of England (generic term)|King of Great Britain (generic term)
+albert einstein|1
+(noun)|Einstein|Albert Einstein|physicist (generic term)
+albert francis charles augustus emmanuel|1
+(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort (generic term)
+albert gore jr.|1
+(noun)|Gore|Al Gore|Albert Gore Jr.|Vice President of the United States (generic term)
+albert michelson|1
+(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist (generic term)
+albert sabin|1
+(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist (generic term)
+albert schweitzer|1
+(noun)|Schweitzer|Albert Schweitzer|missionary (generic term)|missioner (generic term)|philosopher (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|organist (generic term)
+albert speer|1
+(noun)|Speer|Albert Speer|architect (generic term)|designer (generic term)
+albert szent-gyorgyi|1
+(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist (generic term)
+albert von szent-gyorgyi|1
+(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist (generic term)
+alberta|1
+(noun)|Alberta|Canadian province (generic term)
+alberti|1
+(noun)|Alberti|Leon Battista Alberti|architect (generic term)|designer (generic term)|painter (generic term)
+alberto giacometti|1
+(noun)|Giacometti|Alberto Giacometti|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|painter (generic term)
+albescent|1
+(adj)|white (similar term)
+albigenses|1
+(noun)|Albigenses|Cathars|Cathari|sect (generic term)|religious sect (generic term)|religious order (generic term)
+albigensian|1
+(adj)|Albigensian|Christianity|Christian religion|heresy|unorthodoxy (related term)|sect|religious sect|religious order (related term)
+albigensianism|1
+(noun)|Albigensianism|Catharism|Christianity (generic term)|Christian religion (generic term)|heresy (generic term)|unorthodoxy (generic term)
+albinal|1
+(adj)|albinotic|albinic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+albinic|1
+(adj)|albinal|albinotic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+albinism|1
+(noun)|hypopigmentation (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+albinistic|1
+(adj)|albinal|albinotic|albinic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+albino|1
+(noun)|anomaly (generic term)|unusual person (generic term)
+albino luciano|1
+(noun)|John Paul I|Albino Luciano|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+albinotic|1
+(adj)|albinal|albinic|albinistic|hypopigmentation|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+albion|1
+(noun)|Albion|England (generic term)|Great Britain (generic term)
+albite|1
+(noun)|white feldspar|plagioclase (generic term)|oligoclase (generic term)
+albitic|1
+(adj)|plagioclase|oligoclase (related term)
+albizia|1
+(noun)|albizzia|tree (generic term)
+albizia julibrissin|1
+(noun)|silk tree|Albizia julibrissin|Albizzia julibrissin|albizzia (generic term)|albizia (generic term)
+albizia lebbeck|1
+(noun)|siris|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia (generic term)|albizia (generic term)
+albizia saman|1
+(noun)|rain tree|saman|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+albizzia|1
+(noun)|albizia|tree (generic term)
+albizzia julibrissin|1
+(noun)|silk tree|Albizia julibrissin|Albizzia julibrissin|albizzia (generic term)|albizia (generic term)
+albizzia lebbeck|1
+(noun)|siris|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia (generic term)|albizia (generic term)
+alborg|1
+(noun)|Aalborg|Alborg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+albrecht durer|1
+(noun)|Durer|Albrecht Durer|old master (generic term)|engraver (generic term)
+albrecht eusebius wenzel von wallenstein|1
+(noun)|Wallenstein|Albrecht Eusebius Wenzel von Wallenstein|general (generic term)|full general (generic term)
+albright's disease|1
+(noun)|Albright's disease|polyostotic fibrous dysplasia|fibrous dysplasia of bone (generic term)
+albuca|1
+(noun)|liliaceous plant (generic term)
+albuginaceae|1
+(noun)|Albuginaceae|family Albuginaceae|fungus family (generic term)
+albuginea|1
+(noun)|tunic (generic term)|tunica (generic term)|adventitia (generic term)
+albugo|1
+(noun)|Albugo|genus Albugo|fungus genus (generic term)
+albula|1
+(noun)|Albula|genus Albula|fish genus (generic term)
+albula vulpes|1
+(noun)|bonefish|Albula vulpes|soft-finned fish (generic term)|malacopterygian (generic term)
+albulidae|1
+(noun)|Albulidae|family Albulidae|fish family (generic term)
+album|2
+(noun)|record album|medium (generic term)
+(noun)|book (generic term)|volume (generic term)
+albumen|2
+(noun)|albumin|simple protein (generic term)
+(noun)|egg white|white|ovalbumin|ingredient (generic term)|fixings (generic term)
+albumin|1
+(noun)|albumen|simple protein (generic term)
+albuminoid|1
+(noun)|scleroprotein|simple protein (generic term)
+albuminous|1
+(adj)|simple protein (related term)
+albuminuria|1
+(noun)|proteinuria|symptom (generic term)
+albuminuric|1
+(adj)|symptom (related term)
+albuquerque|1
+(noun)|Albuquerque|city (generic term)|metropolis (generic term)|urban center (generic term)
+albuterol|1
+(noun)|Ventolin|Proventil|bronchodilator (generic term)
+alca|1
+(noun)|Alca|genus Alca|bird genus (generic term)
+alca torda|1
+(noun)|razorbill|razor-billed auk|Alca torda|auk (generic term)
+alcaeus|1
+(noun)|Alcaeus|poet (generic term)|Lesbian (generic term)
+alcahest|1
+(noun)|alkahest|universal solvent|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+alcaic|1
+(noun)|Alcaic|Alcaic verse|poem (generic term)|verse form (generic term)
+alcaic verse|1
+(noun)|Alcaic|Alcaic verse|poem (generic term)|verse form (generic term)
+alcalde|1
+(noun)|mayor (generic term)|city manager (generic term)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+alcalescent|1
+(adj)|alkalescent|alkaline (similar term)|alkalic (similar term)
+alcapton|1
+(noun)|alkapton|homogentisic acid|acid (generic term)
+alcaptonuria|1
+(noun)|alkaptonuria|metabolic disorder (generic term)
+alcazar|1
+(noun)|palace (generic term)|fortress (generic term)|fort (generic term)
+alcea|1
+(noun)|Alcea|genus Alcea|dilleniid dicot genus (generic term)
+alcea rosea|1
+(noun)|rose mallow|Alcea rosea|Althea rosea|hollyhock (generic term)
+alcedinidae|1
+(noun)|Alcedinidae|family Alcedinidae|bird family (generic term)
+alcedo|1
+(noun)|Alcedo|genus Alcedo|bird genus (generic term)
+alcedo atthis|1
+(noun)|Eurasian kingfisher|Alcedo atthis|kingfisher (generic term)
+alcelaphus|1
+(noun)|Alcelaphus|genus Alcelaphus|mammal genus (generic term)
+alces|1
+(noun)|Alces|genus Alces|mammal genus (generic term)
+alces alces|1
+(noun)|elk|European elk|moose|Alces alces|deer (generic term)|cervid (generic term)
+alchemic|1
+(adj)|alchemical|pseudoscience (related term)
+alchemical|1
+(adj)|alchemic|pseudoscience (related term)
+alchemise|1
+(verb)|alchemize|change (generic term)|alter (generic term)|modify (generic term)
+alchemist|1
+(noun)|intellectual (generic term)|intellect (generic term)
+alchemistic|1
+(adj)|alchemistical|intellectual|intellect (related term)
+alchemistical|1
+(adj)|alchemistic|intellectual|intellect (related term)
+alchemize|1
+(verb)|alchemise|change (generic term)|alter (generic term)|modify (generic term)
+alchemy|2
+(noun)|pseudoscience (generic term)
+(noun)|chemistry|interpersonal chemistry|social relation (generic term)
+alcibiades|1
+(noun)|Alcibiades|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)|Athenian (generic term)
+alcidae|1
+(noun)|Alcidae|family Alcidae|bird family (generic term)
+alcides|1
+(noun)|Hercules|Heracles|Herakles|Alcides|mythical being (generic term)
+alcohol|2
+(noun)|alcoholic beverage|intoxicant|inebriant|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)|drug of abuse (generic term)|street drug (generic term)
+(noun)|liquid (generic term)
+alcohol-dependent|1
+(adj)|alcoholic|addicted (similar term)
+alcohol-in-glass thermometer|1
+(noun)|alcohol thermometer|thermometer (generic term)
+alcohol-soluble|1
+(adj)|soluble (similar term)
+alcohol abuse|1
+(noun)|alcoholic abuse|alcoholism abuse|substance abuse (generic term)|drug abuse (generic term)|habit (generic term)
+alcohol addiction|1
+(noun)|alcoholism|inebriation|drunkenness|drug addiction (generic term)|white plague (generic term)
+alcohol amnestic disorder|1
+(noun)|alcoholic dementia|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia (generic term)|dementedness (generic term)
+alcohol group|1
+(noun)|alcohol radical|group (generic term)|radical (generic term)|chemical group (generic term)
+alcohol radical|1
+(noun)|alcohol group|group (generic term)|radical (generic term)|chemical group (generic term)
+alcohol thermometer|1
+(noun)|alcohol-in-glass thermometer|thermometer (generic term)
+alcoholic|3
+(adj)|dry (similar term)|hard (similar term)|strong (similar term)|intoxicant (similar term)|intoxicating (similar term)|spirituous (similar term)|spiritous (similar term)|wet (similar term)|nonalcoholic (antonym)
+(adj)|alcohol-dependent|addicted (similar term)
+(noun)|alky|dipsomaniac|boozer|lush|soaker|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+alcoholic abuse|1
+(noun)|alcohol abuse|alcoholism abuse|substance abuse (generic term)|drug abuse (generic term)|habit (generic term)
+alcoholic beverage|1
+(noun)|alcohol|intoxicant|inebriant|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)|drug of abuse (generic term)|street drug (generic term)
+alcoholic dementia|1
+(noun)|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|polyneuritic psychosis|dementia (generic term)|dementedness (generic term)
+alcoholics anonymous|1
+(noun)|Alcoholics Anonymous|AA|nongovernmental organization (generic term)|NGO (generic term)
+alcoholise|2
+(verb)|alcoholize|impregnate (generic term)|saturate (generic term)
+(verb)|alcoholize|change (generic term)|alter (generic term)|modify (generic term)
+alcoholism|2
+(noun)|alcohol addiction|inebriation|drunkenness|drug addiction (generic term)|white plague (generic term)
+(noun)|dipsomania|potomania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+alcoholism abuse|1
+(noun)|alcohol abuse|alcoholic abuse|substance abuse (generic term)|drug abuse (generic term)|habit (generic term)
+alcoholize|3
+(verb)|regale (generic term)|treat (generic term)
+(verb)|alcoholise|impregnate (generic term)|saturate (generic term)
+(verb)|alcoholise|change (generic term)|alter (generic term)|modify (generic term)
+alcott|1
+(noun)|Alcott|Louisa May Alcott|novelist (generic term)
+alcove|1
+(noun)|bay|recess (generic term)|niche (generic term)
+alcyonacea|1
+(noun)|Alcyonacea|suborder Alcyonacea|animal order (generic term)
+alcyonaria|1
+(noun)|Alcyonaria|order Alcyonaria|animal order (generic term)
+alcyone|1
+(noun)|Alcyone|Halcyon|mythical being (generic term)
+aldactone|1
+(noun)|spironolactone|Aldactone|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+aldebaran|1
+(noun)|Aldebaran|binary star (generic term)|binary (generic term)|double star (generic term)
+aldehyde|1
+(noun)|organic compound (generic term)
+aldehyde-alcohol|1
+(noun)|aldol|organic compound (generic term)
+aldehyde group|1
+(noun)|aldehyde radical|group (generic term)|radical (generic term)|chemical group (generic term)
+aldehyde radical|1
+(noun)|aldehyde group|group (generic term)|radical (generic term)|chemical group (generic term)
+aldehydic|1
+(adj)|organic compound (related term)
+alder|2
+(noun)|wood (generic term)
+(noun)|alder tree|tree (generic term)
+alder-leaved serviceberry|1
+(noun)|alderleaf Juneberry|Amelanchier alnifolia|Juneberry (generic term)|serviceberry (generic term)|service tree (generic term)|shadbush (generic term)|shadblow (generic term)
+alder blight|1
+(noun)|blight (generic term)
+alder buckthorn|1
+(noun)|alder dogwood|Rhamnus frangula|buckthorn (generic term)
+alder dogwood|1
+(noun)|alder buckthorn|Rhamnus frangula|buckthorn (generic term)
+alder fly|1
+(noun)|alderfly|Sialis lutaria|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+alder tree|1
+(noun)|alder|tree (generic term)
+alderfly|1
+(noun)|alder fly|Sialis lutaria|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+alderleaf juneberry|1
+(noun)|alderleaf Juneberry|alder-leaved serviceberry|Amelanchier alnifolia|Juneberry (generic term)|serviceberry (generic term)|service tree (generic term)|shadbush (generic term)|shadblow (generic term)
+alderman|1
+(noun)|representative (generic term)
+aldermanic|1
+(adj)|aldermanly|representative (related term)
+aldermanly|1
+(adj)|aldermanic|representative (related term)
+aldohexose|1
+(noun)|aldose (generic term)|hexose (generic term)
+aldol|1
+(noun)|aldehyde-alcohol|organic compound (generic term)
+aldol reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+aldomet|1
+(noun)|methyldopa|alpha methyl dopa|Aldomet|antihypertensive (generic term)|antihypertensive drug (generic term)
+aldose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+aldosterone|1
+(noun)|mineralocorticoid (generic term)
+aldosteronism|1
+(noun)|hyperaldosteronism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+aldous huxley|1
+(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer (generic term)|author (generic term)
+aldous leonard huxley|1
+(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer (generic term)|author (generic term)
+aldrovanda|1
+(noun)|Aldrovanda|genus Aldrovanda|dicot genus (generic term)|magnoliopsid genus (generic term)
+aldrovanda vesiculosa|1
+(noun)|waterwheel plant|Aldrovanda vesiculosa|carnivorous plant (generic term)
+ale|1
+(noun)|beer (generic term)
+ale drinker|1
+(noun)|beer drinker|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+aleatory|1
+(adj)|unpredictable (similar term)
+aleatory contract|1
+(noun)|contract (generic term)
+alec guinness|1
+(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+alecost|1
+(noun)|costmary|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+alectis|1
+(noun)|Alectis|genus Alectis|fish genus (generic term)
+alectis ciliaris|1
+(noun)|threadfish|thread-fish|Alectis ciliaris|jack (generic term)
+alecto|1
+(noun)|Alecto|Fury (generic term)|Eumenides (generic term)|Erinyes (generic term)
+alectoria|1
+(noun)|Alectoria|genus Alectoria|fungus genus (generic term)
+alectoris|1
+(noun)|Alectoris|genus Alectoris|bird genus (generic term)
+alectoris graeca|1
+(noun)|Greek partridge|rock partridge|Alectoris graeca|partridge (generic term)
+alectoris ruffa|1
+(noun)|red-legged partridge|Alectoris ruffa|partridge (generic term)
+alectura|1
+(noun)|Alectura|genus Alectura|bird genus (generic term)
+alectura lathami|1
+(noun)|brush turkey|Alectura lathami|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+alehoof|1
+(noun)|ground ivy|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+alehouse|1
+(noun)|public house (generic term)|pub (generic term)|saloon (generic term)|pothouse (generic term)|gin mill (generic term)|taphouse (generic term)
+aleksandr aleksandrovich blok|1
+(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet (generic term)
+aleksandr borodin|1
+(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer (generic term)
+aleksandr feodorovich kerensky|1
+(noun)|Kerensky|Aleksandr Feodorovich Kerensky|statesman (generic term)|solon (generic term)|national leader (generic term)
+aleksandr i. solzhenitsyn|1
+(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer (generic term)|author (generic term)|political dissident (generic term)
+aleksandr mikjailovich prokhorov|1
+(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist (generic term)
+aleksandr nikolayevich scriabin|1
+(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer (generic term)
+aleksandr pavlovich|1
+(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar (generic term)|tsar (generic term)|tzar (generic term)
+aleksandr porfirevich borodin|1
+(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer (generic term)
+aleksandr prokhorov|1
+(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist (generic term)
+aleksandr scriabin|1
+(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer (generic term)
+aleksandr sergeyevich pushkin|1
+(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet (generic term)
+aleksey maksimovich peshkov|1
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+aleksey maximovich peshkov|1
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+alembic|1
+(noun)|retort (generic term)
+alendronate|1
+(noun)|Fosamax|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+alep|1
+(noun)|Halab|Aleppo|Alep|city (generic term)|metropolis (generic term)|urban center (generic term)
+aleph|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+aleph-nought|1
+(noun)|aleph-null|aleph-zero|large integer (generic term)
+aleph-null|1
+(noun)|aleph-nought|aleph-zero|large integer (generic term)
+aleph-zero|1
+(noun)|aleph-null|aleph-nought|large integer (generic term)
+alepisaurus|1
+(noun)|Alepisaurus|genus Alepisaurus|fish genus (generic term)
+aleppa grass|1
+(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+aleppo|1
+(noun)|Halab|Aleppo|Alep|city (generic term)|metropolis (generic term)|urban center (generic term)
+aleppo boil|1
+(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+alert|8
+(adj)|argus-eyed (similar term)|open-eyed (similar term)|vigilant (similar term)|wakeful (similar term)|watchful (similar term)|fly (similar term)|heads-up (similar term)|wide-awake (similar term)|lidless (similar term)|sleepless (similar term)|on the alert (similar term)|on the job (similar term)|awake (related term)|lively (related term)|wary (related term)|unalert (antonym)
+(adj)|intelligent (similar term)
+(adj)|awake|conscious (similar term)
+(adj)|alive|awake|aware (similar term)|cognizant (similar term)|cognisant (similar term)
+(noun)|qui vive|readiness (generic term)|preparedness (generic term)|preparation (generic term)
+(noun)|alerting|warning (generic term)
+(noun)|alarm|warning signal|alarum|signal (generic term)|signaling (generic term)|sign (generic term)
+(verb)|alarm|warn (generic term)
+alerting|2
+(noun)|alertness|arousal (generic term)
+(noun)|alert|warning (generic term)
+alertness|3
+(noun)|watchfulness|wakefulness|vigilance|attention (generic term)
+(noun)|alerting|arousal (generic term)
+(noun)|sharp-sightedness|on the qui vive|attentiveness (generic term)
+alessandro di mariano dei filipepi|1
+(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master (generic term)
+alessandro farnese|1
+(noun)|Paul III|Alessandro Farnese|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+alessandro manzoni|1
+(noun)|Manzoni|Alessandro Manzoni|writer (generic term)|author (generic term)
+alethic logic|1
+(noun)|modal logic (generic term)
+aletris|1
+(noun)|Aletris|genus Aletris|liliid monocot genus (generic term)
+aletris aurea|1
+(noun)|yellow colicroot|Aletris aurea|colicroot (generic term)|colic root (generic term)|crow corn (generic term)|star grass (generic term)|unicorn root (generic term)
+aletris farinosa|1
+(noun)|ague root|ague grass|Aletris farinosa|colicroot (generic term)|colic root (generic term)|crow corn (generic term)|star grass (generic term)|unicorn root (generic term)
+aletta jacobs|1
+(noun)|Jacobs|Aletta Jacobs|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+aleuria aurantia|1
+(noun)|Aleuria aurantia|orange peel fungus|discomycete (generic term)|cup fungus (generic term)
+aleurites|1
+(noun)|Aleurites|genus Aleurites|rosid dicot genus (generic term)
+aleurites fordii|1
+(noun)|tung tree|tung|tung-oil tree|Aleurites fordii|angiospermous tree (generic term)|flowering tree (generic term)
+aleurites moluccana|1
+(noun)|candlenut|varnish tree|Aleurites moluccana|angiospermous tree (generic term)|flowering tree (generic term)
+aleurone|1
+(noun)|protein (generic term)
+aleuronic|1
+(adj)|protein (related term)
+aleut|2
+(noun)|Aleut|Aleutian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Aleut|Eskimo-Aleut (generic term)|Eskimo-Aleut language (generic term)
+aleutian|1
+(noun)|Aleut|Aleutian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+aleutian islands|1
+(noun)|Aleutian Islands|Aleutians|archipelago (generic term)
+aleutians|1
+(noun)|Aleutian Islands|Aleutians|archipelago (generic term)
+aleve|1
+(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+alewife|2
+(noun)|fish (generic term)
+(noun)|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish (generic term)|clupeid (generic term)
+alex boncayao brigade|1
+(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+alex haley|1
+(noun)|Haley|Alex Haley|writer (generic term)|author (generic term)
+alexander|2
+(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Alexander|Alexander the Great|conqueror (generic term)|vanquisher (generic term)
+alexander alexandrovich blok|1
+(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet (generic term)
+alexander archipelago|1
+(noun)|Alexander Archipelago|archipelago (generic term)
+alexander bell|1
+(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+alexander calder|1
+(noun)|Calder|Alexander Calder|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+alexander fleming|1
+(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist (generic term)
+alexander graham bell|1
+(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+alexander hamilton|1
+(noun)|Hamilton|Alexander Hamilton|statesman (generic term)|solon (generic term)|national leader (generic term)
+alexander i|1
+(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar (generic term)|tsar (generic term)|tzar (generic term)
+alexander ii|1
+(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar (generic term)|tsar (generic term)|tzar (generic term)
+alexander iii|1
+(noun)|Alexander III|Czar Alexander III|czar (generic term)|tsar (generic term)|tzar (generic term)
+alexander isayevich solzhenitsyn|1
+(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer (generic term)|author (generic term)|political dissident (generic term)
+alexander melville bell|1
+(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician (generic term)
+alexander pope|1
+(noun)|Pope|Alexander Pope|poet (generic term)
+alexander pushkin|1
+(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet (generic term)
+alexander selcraig|1
+(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor (generic term)|crewman (generic term)
+alexander selkirk|1
+(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor (generic term)|crewman (generic term)
+alexander the great|1
+(noun)|Alexander|Alexander the Great|conqueror (generic term)|vanquisher (generic term)
+alexander the liberator|1
+(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar (generic term)|tsar (generic term)|tzar (generic term)
+alexander vi|1
+(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+alexander wilson|1
+(noun)|Wilson|Alexander Wilson|ornithologist (generic term)|bird watcher (generic term)
+alexander woollcott|1
+(noun)|Woollcott|Alexander Woollcott|drama critic (generic term)|theater critic (generic term)|journalist (generic term)
+alexanders|1
+(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb (generic term)|herbaceous plant (generic term)
+alexandre dumas|1
+(noun)|Dumas|Alexandre Dumas|writer (generic term)|author (generic term)
+alexandre emile jean yersin|1
+(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist (generic term)
+alexandre gustave eiffel|1
+(noun)|Eiffel|Alexandre Gustave Eiffel|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+alexandre yersin|1
+(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist (generic term)
+alexandria|2
+(noun)|Alexandria|town (generic term)
+(noun)|Alexandria|El Iskandriyah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+alexandria senna|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+alexandrian|2
+(adj)|Alexandrian|conqueror|vanquisher (related term)
+(noun)|Alexandrian|resident (generic term)|occupant (generic term)|occupier (generic term)
+alexandrian laurel|1
+(noun)|Alexandrian laurel|Calophyllum inophyllum|poon (generic term)
+alexandrian senna|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+alexandrine|1
+(noun)|Alexandrine|line of poetry (generic term)|line of verse (generic term)
+alexandrite|1
+(noun)|chrysoberyl (generic term)
+alexia|1
+(noun)|visual aphasia|word blindness|aphasia (generic term)
+alexic|2
+(adj)|word-blind|aphasia (related term)
+(noun)|patient (generic term)
+alexis carrel|1
+(noun)|Carrel|Alexis Carrel|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)|biologist (generic term)|life scientist (generic term)
+alexis charles henri maurice de tocqueville|1
+(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer (generic term)|author (generic term)
+alexis de tocqueville|1
+(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer (generic term)|author (generic term)
+aleyrodes|1
+(noun)|Aleyrodes|genus Aleyrodes|arthropod genus (generic term)
+aleyrodidae|1
+(noun)|Aleyrodidae|family Aleyrodidae|arthropod family (generic term)
+alfalfa|2
+(noun)|lucerne|Medicago sativa|medic (generic term)|medick (generic term)|trefoil (generic term)
+(noun)|fodder (generic term)
+alfalfa sprout|1
+(noun)|sprout (generic term)
+alfilaria|1
+(noun)|redstem storksbill|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+alfileria|1
+(noun)|redstem storksbill|alfilaria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+alfonso borgia|1
+(noun)|Calixtus III|Borgia|Alfonso Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+alfred|1
+(noun)|Alfred|AElfred|Alfred the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+alfred alistair cooke|1
+(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist (generic term)
+alfred bernhard nobel|1
+(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist (generic term)|philanthropist (generic term)|altruist (generic term)
+alfred binet|1
+(noun)|Binet|Alfred Binet|psychologist (generic term)
+alfred charles kinsey|1
+(noun)|Kinsey|Alfred Charles Kinsey|zoologist (generic term)|animal scientist (generic term)
+alfred charles william harmsworth|1
+(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher (generic term)|newspaper publisher (generic term)
+alfred damon runyon|1
+(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer (generic term)|author (generic term)
+alfred de musset|1
+(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer (generic term)|author (generic term)|poet (generic term)
+alfred dreyfus|1
+(noun)|Dreyfus|Alfred Dreyfus|army officer (generic term)
+alfred edward housman|1
+(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet (generic term)
+alfred edward woodley mason|1
+(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer (generic term)|author (generic term)
+alfred eisenstaedt|1
+(noun)|Eisenstaedt|Alfred Eisenstaedt|photographer (generic term)|lensman (generic term)
+alfred habdank skarbek korzybski|1
+(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist (generic term)|semiotician (generic term)
+alfred hawthorne|1
+(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian (generic term)|comic (generic term)
+alfred hitchcock|1
+(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director (generic term)|director (generic term)
+alfred joseph hitchcock|1
+(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director (generic term)|director (generic term)
+alfred kastler|1
+(noun)|Kastler|Alfred Kastler|physicist (generic term)
+alfred korzybski|1
+(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist (generic term)|semiotician (generic term)
+alfred kroeber|1
+(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist (generic term)
+alfred krupp|1
+(noun)|Krupp|Alfred Krupp|arms manufacturer (generic term)
+alfred lord tennyson|1
+(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet (generic term)
+alfred lothar wegener|1
+(noun)|Wegener|Alfred Lothar Wegener|geophysicist (generic term)
+alfred louis kroeber|1
+(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist (generic term)
+alfred lunt|1
+(noun)|Lunt|Alfred Lunt|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+alfred nobel|1
+(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist (generic term)|philanthropist (generic term)|altruist (generic term)
+alfred north whitehead|1
+(noun)|Whitehead|Alfred North Whitehead|philosopher (generic term)|mathematician (generic term)
+alfred noyes|1
+(noun)|Noyes|Alfred Noyes|poet (generic term)
+alfred russel wallace|1
+(noun)|Wallace|Alfred Russel Wallace|naturalist (generic term)|natural scientist (generic term)
+alfred stieglitz|1
+(noun)|Stieglitz|Alfred Stieglitz|photographer (generic term)|lensman (generic term)
+alfred tennyson|1
+(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet (generic term)
+alfred thayer mahan|1
+(noun)|Mahan|Alfred Thayer Mahan|naval officer (generic term)|historian (generic term)|historiographer (generic term)
+alfred the great|1
+(noun)|Alfred|AElfred|Alfred the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+alfresco|2
+(adj)|open-air|outdoor (similar term)|out-of-door (similar term)|outside (similar term)
+(adv)|outside|outdoors|out of doors|indoors (antonym)|inside (antonym)
+alga|1
+(noun)|algae|protoctist (generic term)
+algae|1
+(noun)|alga|protoctist (generic term)
+algal|1
+(adj)|protoctist (related term)
+algarobilla|1
+(noun)|algarroba|algarrobilla|bean (generic term)
+algarroba|4
+(noun)|carob|carob bean|algarroba bean|locust bean|locust pod|bean (generic term)
+(noun)|carob|carob tree|carob bean tree|Ceratonia siliqua|bean tree (generic term)
+(noun)|algarrobilla|algarobilla|bean (generic term)
+(noun)|Prosopis juliflora|Prosopis juliiflora|mesquite (generic term)|mesquit (generic term)
+algarroba bean|1
+(noun)|carob|carob bean|algarroba|locust bean|locust pod|bean (generic term)
+algarrobilla|1
+(noun)|algarroba|algarobilla|bean (generic term)
+algebra|1
+(noun)|pure mathematics (generic term)
+algebraic|1
+(adj)|algebraical|pure mathematics (related term)
+algebraic language|1
+(noun)|algorithmic language (generic term)
+algebraic number|1
+(noun)|irrational number (generic term)|irrational (generic term)
+algebraical|1
+(adj)|algebraic|pure mathematics (related term)
+algebraist|1
+(noun)|mathematician (generic term)
+alger|1
+(noun)|Alger|Horatio Alger|writer (generic term)|author (generic term)
+algeria|1
+(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country (generic term)|African nation (generic term)
+algerian|2
+(adj)|Algerian|African country|African nation (related term)
+(noun)|Algerian|African (generic term)
+algerian capital|1
+(noun)|Algiers|Algerian capital|national capital (generic term)|port (generic term)
+algerian centime|1
+(noun)|Algerian centime|centime (generic term)
+algerian dinar|1
+(noun)|Algerian dinar|dinar|Algerian monetary unit (generic term)
+algerian monetary unit|1
+(noun)|Algerian monetary unit|monetary unit (generic term)
+algerie|1
+(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country (generic term)|African nation (generic term)
+algeripithecus|1
+(noun)|Algeripithecus|genus Algeripithecus|mammal genus (generic term)
+algeripithecus minutus|1
+(noun)|Algeripithecus minutus|hominoid (generic term)
+algernon charles swinburne|1
+(noun)|Swinburne|Algernon Charles Swinburne|poet (generic term)
+algid|1
+(adj)|cold (similar term)
+algiers|1
+(noun)|Algiers|Algerian capital|national capital (generic term)|port (generic term)
+algin|1
+(noun)|alginic acid|gum (generic term)
+alginic acid|1
+(noun)|algin|gum (generic term)
+algoid|1
+(adj)|protoctist (related term)
+algol|2
+(noun)|Algol|binary star (generic term)|binary (generic term)|double star (generic term)
+(noun)|ALGOL|algebraic language (generic term)
+algolagnia|1
+(noun)|algophilia|sexual pleasure (generic term)
+algolagnic|1
+(adj)|sexual pleasure (related term)
+algology|1
+(noun)|phycology|botany (generic term)|phytology (generic term)
+algometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+algometric|1
+(adj)|algometrical|measurement|measuring|measure|mensuration (related term)
+algometrical|1
+(adj)|algometric|measurement|measuring|measure|mensuration (related term)
+algometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+algonkian|3
+(adj)|Algonquian|Algonkian|Algonquin|Indian|American Indian|Red Indian (related term)
+(noun)|Algonkian|Algonkin|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Algonkian|Algonkin|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+algonkin|2
+(noun)|Algonkian|Algonkin|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Algonkian|Algonkin|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+algonquian|3
+(adj)|Algonquian|Algonkian|Algonquin|Indian|American Indian|Red Indian (related term)
+(noun)|Algonquian|Algonquin|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Algonquian|Algonquin|Algonquian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+algonquian language|1
+(noun)|Algonquian|Algonquin|Algonquian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+algonquin|3
+(adj)|Algonquian|Algonkian|Algonquin|Indian|American Indian|Red Indian (related term)
+(noun)|Algonquian|Algonquin|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Algonquian|Algonquin|Algonquian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+algophilia|1
+(noun)|algolagnia|sexual pleasure (generic term)
+algophobia|1
+(noun)|simple phobia (generic term)
+algophobic|1
+(adj)|afraid (similar term)
+algorism|2
+(noun)|decimal numeration system (generic term)|decimal number system (generic term)|decimal system (generic term)
+(noun)|arithmetic (generic term)
+algorithm|1
+(noun)|algorithmic rule|algorithmic program|rule (generic term)|formula (generic term)
+algorithm error|1
+(noun)|error (generic term)|computer error (generic term)
+algorithmic|1
+(adj)|recursive (similar term)|heuristic (antonym)
+algorithmic language|1
+(noun)|programming language (generic term)|programing language (generic term)
+algorithmic program|1
+(noun)|algorithm|algorithmic rule|rule (generic term)|formula (generic term)
+algorithmic rule|1
+(noun)|algorithm|algorithmic program|rule (generic term)|formula (generic term)
+algren|1
+(noun)|Algren|Nelson Algren|writer (generic term)|author (generic term)
+alhacen|1
+(noun)|Alhazen|Alhacen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician (generic term)|physicist (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+alhambra|1
+(noun)|Alhambra|palace (generic term)|fortress (generic term)|fort (generic term)
+alhazen|1
+(noun)|Alhazen|Alhacen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician (generic term)|physicist (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+ali|2
+(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter (generic term)|gladiator (generic term)
+(noun)|Ali|caliph (generic term)|calif (generic term)|kaliph (generic term)|kalif (generic term)|khalif (generic term)|khalifah (generic term)
+ali baba|1
+(noun)|Ali Baba|fictional character (generic term)|fictitious character (generic term)|character (generic term)|woodcutter (generic term)
+alias|2
+(noun)|assumed name|false name|name (generic term)
+(adv)|a.k.a.|also known as
+alibi|3
+(noun)|defense (generic term)|defence (generic term)|vindication (generic term)
+(noun)|excuse|exculpation|self-justification|defense (generic term)|defence (generic term)|vindication (generic term)
+(verb)|excuse (generic term)|explain (generic term)
+alice-josephine pons|1
+(noun)|Pons|Lily Pons|Alice-Josephine Pons|coloratura (generic term)|coloratura soprano (generic term)
+alice b. toklas|1
+(noun)|Toklas|Alice B. Toklas|writer (generic term)|author (generic term)
+alice hamilton|1
+(noun)|Hamilton|Alice Hamilton|toxicologist (generic term)
+alice malsenior walker|1
+(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer (generic term)|author (generic term)
+alice paul|1
+(noun)|Paul|Alice Paul|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+alice walker|1
+(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer (generic term)|author (generic term)
+alicia alonso|1
+(noun)|Alonso|Alicia Alonso|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+alicyclic compound|1
+(noun)|aliphatic compound (generic term)
+alidad|1
+(noun)|alidade|surveying instrument (generic term)|surveyor's instrument (generic term)
+alidade|1
+(noun)|alidad|surveying instrument (generic term)|surveyor's instrument (generic term)
+alien|7
+(adj)|foreign|extrinsic (similar term)
+(adj)|exotic|foreign (similar term)|strange (similar term)
+(noun)|foreigner|noncitizen|outlander|traveler (generic term)|traveller (generic term)|citizen (antonym)
+(noun)|stranger|unknown|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|extraterrestrial being|extraterrestrial|hypothetical creature (generic term)
+(verb)|alienate|transfer (generic term)
+(verb)|estrange|alienate|disaffect|change (generic term)|alter (generic term)|modify (generic term)
+alien absconder|1
+(noun)|absconder (generic term)
+alienable|1
+(adj)|appropriable (similar term)|assignable (similar term)|conveyable (similar term)|negotiable (similar term)|transferable (similar term)|transferrable (similar term)|inalienable (antonym)
+alienage|1
+(noun)|alienism|foreignness (generic term)|strangeness (generic term)|curiousness (generic term)
+alienate|3
+(verb)|estrange|alien|disaffect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|alien|transfer (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+alienated|2
+(adj)|anomic|disoriented|unoriented (similar term)
+(adj)|estranged|unloved (similar term)
+alienating|1
+(adj)|antagonistic (similar term)
+alienation|4
+(noun)|disaffection|estrangement|dislike (generic term)
+(noun)|estrangement|isolation (generic term)
+(noun)|transfer (generic term)|transference (generic term)
+(noun)|action (generic term)
+alienation of affection|1
+(noun)|tort (generic term)|civil wrong (generic term)
+alienator|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+alienee|1
+(noun)|grantee|recipient (generic term)|receiver (generic term)
+alienism|2
+(noun)|psychiatry (generic term)|psychopathology (generic term)|psychological medicine (generic term)
+(noun)|alienage|foreignness (generic term)|strangeness (generic term)|curiousness (generic term)
+alienist|1
+(noun)|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+alienor|1
+(noun)|grantor (generic term)
+aliform|1
+(adj)|alar|alary|wing-shaped|winged (similar term)
+alight|3
+(adj)|ablaze|afire|aflame|aflare|blazing|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+(verb)|light|perch|land (generic term)|set down (generic term)
+(verb)|climb down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+align|4
+(verb)|aline|line up|adjust|reorient (generic term)|skew (antonym)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|array|stand (generic term)
+(verb)|ordinate|coordinate|adjust (generic term)|set (generic term)|correct (generic term)
+aligned|2
+(adj)|allied (similar term)|nonaligned (antonym)
+(adj)|straight (similar term)
+aligning|1
+(adj)|positioning|orienting (similar term)|orientating (similar term)
+alignment|4
+(noun)|alliance|coalition|alinement|organization (generic term)|organisation (generic term)|nonalignment (antonym)
+(noun)|placement (generic term)|arrangement (generic term)
+(noun)|conjunction|meeting (generic term)|encounter (generic term)
+(noun)|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+alike|2
+(adj)|similar|like|unalike (antonym)
+(adv)|likewise
+alikeness|1
+(noun)|likeness|similitude|similarity (generic term)|dissimilitude (antonym)|unlikeness (antonym)
+aliment|2
+(noun)|nutriment|nourishment|nutrition|sustenance|alimentation|victuals|food (generic term)|nutrient (generic term)
+(verb)|nutrify|nourish|feed (generic term)|give (generic term)
+alimental|1
+(adj)|alimentary|nourishing|nutrient|nutritious|nutritive|wholesome (similar term)
+alimentary|1
+(adj)|alimental|nourishing|nutrient|nutritious|nutritive|wholesome (similar term)
+alimentary canal|1
+(noun)|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+alimentary paste|1
+(noun)|pasta|food (generic term)|solid food (generic term)
+alimentary tract|1
+(noun)|alimentary canal|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+alimentary tract smear|1
+(noun)|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+alimentation|2
+(noun)|nutriment|nourishment|nutrition|sustenance|aliment|victuals|food (generic term)|nutrient (generic term)
+(noun)|feeding|provision (generic term)|supply (generic term)|supplying (generic term)
+alimentative|1
+(adj)|provision|supply|supplying (related term)
+alimony|1
+(noun)|maintenance|support payment (generic term)
+aline|1
+(verb)|align|line up|adjust|reorient (generic term)|skew (antonym)
+alinement|1
+(noun)|alliance|coalition|alignment|organization (generic term)|organisation (generic term)|nonalignment (antonym)
+aliphatic|1
+(adj)|acyclic (similar term)|open-chain (similar term)
+aliphatic compound|1
+(noun)|organic compound (generic term)
+aliquant|1
+(noun)|aliquant part|divisor (generic term)|aliquot (antonym)
+aliquant part|1
+(noun)|aliquant|divisor (generic term)|aliquot (antonym)
+aliquot|2
+(adj)|fractional (similar term)
+(noun)|aliquot part|divisor (generic term)|aliquant (antonym)
+aliquot part|1
+(noun)|aliquot|divisor (generic term)|aliquant (antonym)
+alir|1
+(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+alisma|1
+(noun)|Alisma|genus Alisma|monocot genus (generic term)|liliopsid genus (generic term)
+alisma plantago-aquatica|1
+(noun)|water plantain|Alisma plantago-aquatica|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+alismales|1
+(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order (generic term)
+alismataceae|1
+(noun)|Alismataceae|family Alismataceae|water-plantain family|monocot family (generic term)|liliopsid family (generic term)
+alismatidae|1
+(noun)|Alismatidae|subclass Alismatidae|class (generic term)
+alistair cooke|1
+(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist (generic term)
+aliterate|1
+(noun)|aliterate person|ignoramus (generic term)|know nothing (generic term)|uneducated person (generic term)
+aliterate person|1
+(noun)|aliterate|ignoramus (generic term)|know nothing (generic term)|uneducated person (generic term)
+alive|7
+(adj)|live|liveborn (similar term)|viable (similar term)|vital (similar term)|animate (related term)|dead (antonym)
+(adj)|lively (similar term)
+(adj)|animated|enlivened (similar term)|spirited (similar term)|full of life (similar term)|lively (similar term)|vital (similar term)|reanimated (similar term)|revived (similar term)|unanimated (antonym)
+(adj)|sensitive (similar term)
+(adj)|active|existent (similar term)|existing (similar term)
+(adj)|alert|awake|aware (similar term)|cognizant (similar term)|cognisant (similar term)
+(adj)|live|active (similar term)
+aliveness|2
+(noun)|animation|life|living|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|animateness|liveness|physiological property (generic term)|inanimateness (antonym)
+aliyah|2
+(noun)|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|immigration (generic term)|in-migration (generic term)
+alizarin|1
+(noun)|alizarine|pigment (generic term)
+alizarin carmine|1
+(noun)|alizarin crimson|alizarin red|alizarin (generic term)|alizarine (generic term)
+alizarin crimson|1
+(noun)|alizarin carmine|alizarin red|alizarin (generic term)|alizarine (generic term)
+alizarin red|1
+(noun)|alizarin carmine|alizarin crimson|alizarin (generic term)|alizarine (generic term)
+alizarin yellow|1
+(noun)|dye (generic term)|dyestuff (generic term)
+alizarine|1
+(noun)|alizarin|pigment (generic term)
+alizarine red|1
+(noun)|Turkey red|red (generic term)|redness (generic term)
+alka-seltzer|1
+(noun)|Alka-seltzer|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+alkahest|1
+(noun)|alcahest|universal solvent|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+alkahestic|1
+(adj)|solvent|dissolvent|dissolver|dissolving agent|resolvent (related term)
+alkalating agent|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+alkalemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+alkalescent|1
+(adj)|alcalescent|alkaline (similar term)|alkalic (similar term)
+alkali|2
+(noun)|base|compound (generic term)|chemical compound (generic term)
+(noun)|salt (generic term)
+alkali bee|1
+(noun)|Nomia melanderi|bee (generic term)
+alkali grass|1
+(noun)|Zigadenus elegans|death camas (generic term)|zigadene (generic term)
+alkali metal|1
+(noun)|alkaline metal|metallic element (generic term)|metal (generic term)
+alkali poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+alkalic|1
+(adj)|alkaline|alkalescent (similar term)|alcalescent (similar term)|basic (similar term)|base-forming (similar term)|saltlike (similar term)|amphoteric (antonym)|acidic (antonym)
+alkalify|1
+(verb)|alkalize|alkalise|basify|change state (generic term)|turn (generic term)|acidify (antonym)
+alkalimetry|1
+(noun)|volumetric analysis (generic term)
+alkaline|1
+(adj)|alkalic|alkalescent (similar term)|alcalescent (similar term)|basic (similar term)|base-forming (similar term)|saltlike (similar term)|amphoteric (antonym)|acidic (antonym)
+alkaline-earth metal|1
+(noun)|alkaline earth|metallic element (generic term)|metal (generic term)
+alkaline-loving|1
+(adj)|acid-loving (antonym)
+alkaline earth|1
+(noun)|alkaline-earth metal|metallic element (generic term)|metal (generic term)
+alkaline metal|1
+(noun)|alkali metal|metallic element (generic term)|metal (generic term)
+alkalinise|2
+(verb)|alkalinize|change (generic term)
+(verb)|alkalinize|change (generic term)|alter (generic term)|modify (generic term)
+alkalinity|1
+(noun)|pH (generic term)|pH scale (generic term)|acidity (antonym)
+alkalinize|2
+(verb)|alkalinise|change (generic term)
+(verb)|alkalinise|change (generic term)|alter (generic term)|modify (generic term)
+alkalinuria|1
+(noun)|alkaluria|symptom (generic term)
+alkalise|1
+(verb)|alkalize|alkalify|basify|change state (generic term)|turn (generic term)|acidify (antonym)
+alkaliser|1
+(noun)|antacid|gastric antacid|alkalizer|antiacid|agent (generic term)
+alkalize|1
+(verb)|alkalise|alkalify|basify|change state (generic term)|turn (generic term)|acidify (antonym)
+alkalizer|1
+(noun)|antacid|gastric antacid|alkaliser|antiacid|agent (generic term)
+alkaloid|1
+(noun)|organic compound (generic term)
+alkaloidal|1
+(adj)|organic compound (related term)
+alkalosis|1
+(noun)|pathology (generic term)
+alkalotic|1
+(adj)|pathology (related term)
+alkaluria|1
+(noun)|alkalinuria|symptom (generic term)
+alkane|1
+(noun)|methane series|alkane series|paraffin series|paraffin|aliphatic compound (generic term)
+alkane series|1
+(noun)|methane series|alkane|paraffin series|paraffin|aliphatic compound (generic term)
+alkanet|1
+(noun)|bugloss|Anchusa officinalis|anchusa (generic term)
+alkapton|1
+(noun)|alcapton|homogentisic acid|acid (generic term)
+alkaptonuria|1
+(noun)|alcaptonuria|metabolic disorder (generic term)
+alkene|1
+(noun)|olefine|olefin|aliphatic compound (generic term)
+alkeran|1
+(noun)|melphalan|Alkeran|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+alky|1
+(noun)|alcoholic|dipsomaniac|boozer|lush|soaker|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+alkyd|1
+(noun)|alkyd resin|synthetic resin (generic term)
+alkyd resin|1
+(noun)|alkyd|synthetic resin (generic term)
+alkyl|1
+(noun)|alkyl group|alkyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+alkyl group|1
+(noun)|alkyl|alkyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+alkyl halide|1
+(noun)|haloalkane|organic compound (generic term)
+alkyl radical|1
+(noun)|alkyl|alkyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+alkylbenzene|1
+(noun)|organic compound (generic term)
+alkylbenzenesulfonate|1
+(noun)|sulfonate (generic term)
+alkylic|1
+(adj)|group|radical|chemical group (related term)
+alkyne|1
+(noun)|acetylene|ethyne|aliphatic compound (generic term)
+all|3
+(adj)|each (similar term)|every (similar term)|every last (similar term)|every (similar term)|some (antonym)|no (antonym)
+(adj)|complete (similar term)
+(adv)|wholly|entirely|completely|totally|altogether|whole|partly (antonym)
+all-around|1
+(adj)|all-round|well-rounded|comprehensive (similar term)
+all-day sucker|1
+(noun)|lollipop|sucker|candy (generic term)|confect (generic term)
+all-devouring|1
+(adj)|omnivorous (similar term)
+all-embracing|1
+(adj)|across-the-board|all-encompassing|all-inclusive|blanket|broad|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+all-encompassing|1
+(adj)|across-the-board|all-embracing|all-inclusive|blanket|broad|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+all-fired|2
+(adj)|immoderate (similar term)
+(adv)|bloody|damn
+all-important|1
+(adj)|all important|crucial|essential|of the essence|important (similar term)|of import (similar term)
+all-inclusive|1
+(adj)|across-the-board|all-embracing|all-encompassing|blanket|broad|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+all-knowing|1
+(adj)|omniscient|wise (similar term)
+all-mains|1
+(adj)|adaptable (similar term)
+all-metal|1
+(adj)|metallic (similar term)|metal (similar term)
+all-night|1
+(adj)|nightlong|overnight|long (similar term)
+all-or-none|1
+(adj)|all-or-nothing|complete (similar term)
+all-or-none law|1
+(noun)|law (generic term)|law of nature (generic term)
+all-or-nothing|1
+(adj)|all-or-none|complete (similar term)
+all-out|1
+(adj)|full-scale|complete (similar term)
+all-powerful|1
+(adj)|almighty|omnipotent|powerful (similar term)
+all-purpose|1
+(adj)|general-purpose|general (similar term)
+all-round|1
+(adj)|all-around|well-rounded|comprehensive (similar term)
+all-rounder|1
+(noun)|all arounder|expert (generic term)
+all-terrain bike|1
+(noun)|mountain bike|off-roader|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+all-time|1
+(adj)|incomparable (similar term)|uncomparable (similar term)
+all-victorious|1
+(adj)|unconquerable (similar term)
+all-weather|1
+(adj)|unrestricted (similar term)
+all along|1
+(adv)|right along
+all arounder|1
+(noun)|all-rounder|expert (generic term)
+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 (generic term)|signaling (generic term)|sign (generic term)
+(noun)|permission (generic term)
+all day long|1
+(adv)|daylong
+all fools' day|1
+(noun)|April Fools'|April Fools' day|All Fools' day|day (generic term)
+all fours|1
+(noun)|high-low-jack|card game (generic term)|cards (generic term)
+all get out|1
+(noun)|billyo|billyoh|billy-ho|large indefinite quantity (generic term)|large indefinite amount (generic term)
+all important|1
+(adj)|all-important|crucial|essential|of the essence|important (similar term)|of import (similar term)
+all in|1
+(adj)|beat|bushed|dead|tired (similar term)
+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 (similar term)
+(adv)|over
+(adv)|everywhere|everyplace
+all right|4
+(adj)|fine|o.k.|ok|okay|hunky-dory|satisfactory (similar term)
+(adv)|very well|fine|alright|OK
+(adv)|alright
+(adv)|okay|O.K.|alright
+all saints' day|1
+(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation (generic term)
+all souls' day|1
+(noun)|All Souls' Day|November 2|Christian holy day (generic term)
+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 (generic term)|musical time signature (generic term)
+alla nazimova|1
+(noun)|Nazimova|Alla Nazimova|actress (generic term)
+allah|1
+(noun)|Allah|God (generic term)|Supreme Being (generic term)
+allamanda|1
+(noun)|vine (generic term)
+allamanda cathartica|1
+(noun)|common allamanda|golden trumpet|Allamanda cathartica|allamanda (generic term)
+allantoic|1
+(adj)|fetal membrane (related term)
+allantoid|1
+(adj)|sausage-shaped|rounded (similar term)
+allantois|1
+(noun)|fetal membrane (generic term)
+allargando|1
+(adj)|decreasing (similar term)
+allay|2
+(verb)|still|relieve|ease|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)
+(verb)|quench|slake|assuage|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+allayer|1
+(noun)|reliever|comforter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+allegation|2
+(noun)|accusation (generic term)|accusal (generic term)
+(noun)|allegement|claim (generic term)
+allege|1
+(verb)|aver|say|assert (generic term)|asseverate (generic term)|maintain (generic term)
+alleged|2
+(adj)|declared (similar term)
+(adj)|so-called|supposed|questionable (similar term)
+allegement|1
+(noun)|allegation|claim (generic term)
+alleghany plum|1
+(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum (generic term)|wild plum tree (generic term)
+alleghenies|1
+(noun)|Alleghenies|Allegheny Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+allegheny|1
+(noun)|Allegheny|Allegheny River|river (generic term)
+allegheny chinkapin|1
+(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut (generic term)|chestnut tree (generic term)
+allegheny mountain spurge|1
+(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra (generic term)
+allegheny mountains|1
+(noun)|Alleghenies|Allegheny Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+allegheny plum|1
+(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum (generic term)|wild plum tree (generic term)
+allegheny river|1
+(noun)|Allegheny|Allegheny River|river (generic term)
+allegheny spurge|1
+(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra (generic term)
+allegheny vine|1
+(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine (generic term)
+allegiance|2
+(noun)|commitment|loyalty|dedication|cooperation (generic term)
+(noun)|fealty|loyalty (generic term)|trueness (generic term)
+allegiant|1
+(adj)|loyal (similar term)
+allegoric|1
+(adj)|allegorical|representative (similar term)
+allegorical|1
+(adj)|allegoric|representative (similar term)
+allegorise|2
+(verb)|allegorize|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|allegorize|change (generic term)|alter (generic term)|modify (generic term)
+allegoriser|1
+(noun)|allegorizer|communicator (generic term)
+allegorize|2
+(verb)|allegorise|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|allegorise|change (generic term)|alter (generic term)|modify (generic term)
+allegorizer|1
+(noun)|allegoriser|communicator (generic term)
+allegory|3
+(noun)|fable|parable|apologue|story (generic term)
+(noun)|emblem|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+allegretto|2
+(adj)|fast (similar term)
+(noun)|tempo (generic term)|pacing (generic term)
+allegro|3
+(adj)|fast (similar term)
+(noun)|tempo (generic term)|pacing (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)|passage (generic term)|musical passage (generic term)
+allegro con spirito|1
+(noun)|allegro (generic term)
+allele|1
+(noun)|allelomorph|gene (generic term)|cistron (generic term)|factor (generic term)
+allelic|1
+(adj)|allelomorphic|gene|cistron|factor (related term)
+allelomorph|1
+(noun)|allele|gene (generic term)|cistron (generic term)|factor (generic term)
+allelomorphic|1
+(adj)|allelic|gene|cistron|factor (related term)
+allemande|1
+(noun)|allemande sauce|sauce (generic term)
+allemande sauce|1
+(noun)|allemande|sauce (generic term)
+allen|3
+(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne (generic term)
+(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Allen|Ethan Allen|soldier (generic term)
+allen ginsberg|1
+(noun)|Ginsberg|Allen Ginsberg|poet (generic term)
+allen screw|1
+(noun)|Allen screw|screw (generic term)
+allen stewart konigsberg|1
+(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+allen tate|1
+(noun)|Tate|Allen Tate|John Orley Allen Tate|critic (generic term)|poet (generic term)
+allen wrench|1
+(noun)|Allen wrench|wrench (generic term)|spanner (generic term)
+allentown|1
+(noun)|Allentown|city (generic term)|metropolis (generic term)|urban center (generic term)
+allergen|1
+(noun)|substance (generic term)|matter (generic term)
+allergenic|1
+(adj)|substance|matter (related term)
+allergic|2
+(adj)|hypersensitivity reaction (related term)
+(adj)|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+allergic eczema|1
+(noun)|eczema (generic term)
+allergic reaction|1
+(noun)|allergy|hypersensitivity reaction (generic term)
+allergic rhinitis|1
+(noun)|rhinitis (generic term)|coryza (generic term)|hypersensitivity reaction (generic term)
+allergist|1
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+allergology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+allergy|1
+(noun)|allergic reaction|hypersensitivity reaction (generic term)
+allergy diet|1
+(noun)|diet (generic term)
+alleviant|1
+(noun)|palliative|alleviator|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+alleviate|2
+(verb)|relieve|palliate|assuage|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|facilitate|ease|help (generic term)|assist (generic term)|aid (generic term)
+alleviated|1
+(adj)|eased|relieved|mitigated (similar term)
+alleviation|2
+(noun)|relief|assuagement|comfort (generic term)
+(noun)|easing|easement|relief|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+alleviative|1
+(adj)|alleviatory|lenitive|mitigative|mitigatory|palliative|moderating (similar term)
+alleviator|2
+(noun)|therapist (generic term)|healer (generic term)
+(noun)|palliative|alleviant|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+alleviatory|1
+(adj)|alleviative|lenitive|mitigative|mitigatory|palliative|moderating (similar term)
+alley|2
+(noun)|alleyway|back street|street (generic term)
+(noun)|bowling alley|skittle alley|lane (generic term)
+alley cat|1
+(noun)|stray|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+alleyway|1
+(noun)|alley|back street|street (generic term)
+allgood|1
+(noun)|good-king-henry|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot (generic term)
+allhallows|1
+(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation (generic term)
+allhallows eve|1
+(noun)|Halloween|Hallowe'en|Allhallows Eve|day (generic term)
+allhallowtide|1
+(noun)|Allhallowtide|season (generic term)
+alliaceae|1
+(noun)|Alliaceae|family Alliaceae|liliid monocot family (generic term)
+alliaceous|2
+(adj)|liliid monocot genus (related term)
+(adj)|odorous (similar term)
+alliaceous plant|1
+(noun)|liliaceous plant (generic term)
+alliance|5
+(noun)|confederation|coalition (generic term)|fusion (generic term)
+(noun)|bond|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|coalition|alignment|alinement|organization (generic term)|organisation (generic term)|nonalignment (antonym)
+(noun)|treaty (generic term)|pact (generic term)|accord (generic term)
+(noun)|confederation|group action (generic term)
+alliaria|1
+(noun)|Alliaria|genus Alliaria|dilleniid dicot genus (generic term)
+alliaria officinalis|1
+(noun)|garlic mustard|hedge garlic|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer (generic term)|cruciferous plant (generic term)
+allice|1
+(noun)|allice shad|allis shad|allis|Alosa alosa|shad (generic term)
+allice shad|1
+(noun)|allis shad|allice|allis|Alosa alosa|shad (generic term)
+allied|4
+(adj)|related (similar term)
+(adj)|Allied|alliance|coalition|alignment|alinement (related term)
+(adj)|confederate|confederative|united (similar term)
+(adj)|aligned (similar term)
+allied command atlantic|1
+(noun)|Allied Command Atlantic|ACLANT|headquarters (generic term)
+allied command europe|1
+(noun)|Allied Command Europe|ACE|headquarters (generic term)
+allies|2
+(noun)|Allies|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+alligator|3
+(noun)|leather (generic term)
+(noun)|gator|crocodilian reptile (generic term)|crocodilian (generic term)
+(verb)|crack (generic term)
+alligator-like|1
+(adj)|animal (similar term)
+alligator clip|1
+(noun)|bulldog clip|clip (generic term)
+alligator grass|1
+(noun)|alligator weed|Alternanthera philoxeroides|weed (generic term)
+alligator lizard|1
+(noun)|anguid lizard (generic term)
+alligator mississipiensis|1
+(noun)|American alligator|Alligator mississipiensis|alligator (generic term)|gator (generic term)
+alligator pear|1
+(noun)|avocado|avocado pear|aguacate|edible fruit (generic term)
+alligator sinensis|1
+(noun)|Chinese alligator|Alligator sinensis|alligator (generic term)|gator (generic term)
+alligator snapper|1
+(noun)|alligator snapping turtle|Macroclemys temmincki|snapping turtle (generic term)
+alligator snapping turtle|1
+(noun)|alligator snapper|Macroclemys temmincki|snapping turtle (generic term)
+alligator weed|1
+(noun)|alligator grass|Alternanthera philoxeroides|weed (generic term)
+alligator wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+alligatored|1
+(adj)|cracked|rough (similar term)|unsmooth (similar term)
+alligatorfish|1
+(noun)|Aspidophoroides monopterygius|poacher (generic term)|sea poacher (generic term)|sea poker (generic term)
+alligatoridae|1
+(noun)|Alligatoridae|family Alligatoridae|reptile family (generic term)
+allionia|1
+(noun)|Allionia|genus Allionia|caryophylloid dicot genus (generic term)
+allionia incarnata|1
+(noun)|trailing four o'clock|trailing windmills|Allionia incarnata|wildflower (generic term)|wild flower (generic term)
+allioniaceae|1
+(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family (generic term)
+allis|1
+(noun)|allice shad|allis shad|allice|Alosa alosa|shad (generic term)
+allis shad|1
+(noun)|allice shad|allice|allis|Alosa alosa|shad (generic term)
+alliterate|1
+(verb)|rhyme (generic term)|rime (generic term)
+alliteration|1
+(noun)|initial rhyme|beginning rhyme|head rhyme|rhyme (generic term)|rime (generic term)
+alliterative|1
+(adj)|rhymed (similar term)|rhyming (similar term)|riming (similar term)
+alliterator|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)|writer (generic term)|author (generic term)
+allium|1
+(noun)|Allium|genus Allium|liliid monocot genus (generic term)
+allium acuminatum|1
+(noun)|Hooker's onion|Allium acuminatum|wild onion (generic term)
+allium ampeloprasum|1
+(noun)|wild leek|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant (generic term)
+allium ascalonicum|1
+(noun)|shallot|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+allium canadense|1
+(noun)|Canada garlic|meadow leek|rose leek|Allium canadense|alliaceous plant (generic term)
+allium carinatum|1
+(noun)|keeled garlic|Allium carinatum|alliaceous plant (generic term)
+allium cepa|1
+(noun)|onion|onion plant|Allium cepa|alliaceous plant (generic term)
+allium cepa aggregatum|1
+(noun)|shallot|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+allium cepa viviparum|1
+(noun)|tree onion|Egyptian onion|top onion|Allium cepa viviparum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+allium cernuum|1
+(noun)|nodding onion|nodding wild onion|lady's leek|Allium cernuum|wild onion (generic term)
+allium fistulosum|1
+(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+allium haematochiton|1
+(noun)|red-skinned onion|Allium haematochiton|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+allium neopolitanum|1
+(noun)|daffodil garlic|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant (generic term)
+allium paradoxum|1
+(noun)|few-flowered leek|Allium paradoxum|alliaceous plant (generic term)
+allium porrum|1
+(noun)|leek|scallion|Allium porrum|alliaceous plant (generic term)
+allium sativum|1
+(noun)|garlic|Allium sativum|alliaceous plant (generic term)
+allium schoenoprasum|1
+(noun)|chives|chive|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant (generic term)
+allium scorodoprasum|1
+(noun)|sand leek|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant (generic term)
+allium sphaerocephalum|1
+(noun)|round-headed leek|Allium sphaerocephalum|alliaceous plant (generic term)
+allium tricoccum|1
+(noun)|ramp|wild leek|Allium tricoccum|alliaceous plant (generic term)
+allium triquetrum|1
+(noun)|three-cornered leek|triquetrous leek|Allium triquetrum|alliaceous plant (generic term)
+allium tuberosum|1
+(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant (generic term)
+allium ursinum|1
+(noun)|wild garlic|wood garlic|Ramsons|Allium ursinum|alliaceous plant (generic term)
+allium vineale|1
+(noun)|crow garlic|false garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion (generic term)
+allmouth|1
+(noun)|goosefish|angler|anglerfish|angler fish|monkfish|lotte|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+alloantibody|1
+(noun)|isoantibody|antibody (generic term)
+allocable|1
+(adj)|allocatable|apportionable|distributive (similar term)
+allocatable|1
+(adj)|allocable|apportionable|distributive (similar term)
+allocate|1
+(verb)|apportion|assign (generic term)|allot (generic term)|portion (generic term)
+allocation|3
+(noun)|allotment|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|allotment|apportionment|apportioning|parceling|parcelling|assignation|distribution (generic term)
+(noun)|storage allocation|assignment (generic term)|assigning (generic term)
+allocation unit|1
+(noun)|computer memory unit (generic term)
+allocator|1
+(noun)|distributor|authority (generic term)
+allochronic|1
+(adj)|asynchronous (similar term)
+allochthonous|1
+(adj)|autochthonous (antonym)
+allocution|1
+(noun)|address (generic term)|speech (generic term)
+allogamous|1
+(adj)|cross-fertilization|cross-fertilisation (related term)
+allogamy|1
+(noun)|cross-fertilization (generic term)|cross-fertilisation (generic term)|autogamy (antonym)
+allogeneic|1
+(adj)|xenogeneic (antonym)
+allograft|1
+(noun)|homograft|graft (generic term)|transplant (generic term)
+allograph|2
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|signature (generic term)
+allographic|1
+(adj)|character|grapheme|graphic symbol (related term)
+allomerism|1
+(noun)|variation (generic term)|fluctuation (generic term)
+allomerous|1
+(adj)|variation|fluctuation (related term)
+allometric|1
+(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+allometry|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+allomorph|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|morpheme (generic term)
+allomorphic|1
+(adj)|morpheme (related term)
+allopathic|1
+(adj)|medical care|medical aid (related term)|homeopathic (antonym)
+allopathy|1
+(noun)|medical care (generic term)|medical aid (generic term)|homeopathy (antonym)
+allopatric|1
+(adj)|sympatric (antonym)
+allopatry|1
+(noun)|occurrence (generic term)|sympatry (antonym)
+allophone|1
+(noun)|phoneme (generic term)
+allophonic|1
+(adj)|phoneme (related term)
+allopurinol|1
+(noun)|Zyloprim|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+allosaur|1
+(noun)|allosaurus|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+allosaurus|1
+(noun)|allosaur|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+allot|3
+(verb)|assign|portion|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+(verb)|accord|grant|give (generic term)
+(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|dole out|give (generic term)
+allotment|2
+(noun)|allocation|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|apportionment|apportioning|allocation|parceling|parcelling|assignation|distribution (generic term)
+allotrope|1
+(noun)|chemical element (generic term)|element (generic term)
+allotropic|1
+(adj)|allotropical|chemical phenomenon (related term)
+allotropical|1
+(adj)|allotropic|chemical phenomenon (related term)
+allotropism|1
+(noun)|allotropy|chemical phenomenon (generic term)
+allotropy|1
+(noun)|allotropism|chemical phenomenon (generic term)
+allotted|1
+(adj)|assigned (similar term)
+allover|1
+(adj)|complete (similar term)
+allow|10
+(verb)|let|permit|prevent (antonym)
+(verb)|permit|let|countenance|accept (generic term)|consent (generic term)|go for (generic term)|disallow (antonym)|forbid (antonym)
+(verb)|grant|give (generic term)|deny (antonym)
+(verb)|appropriate|earmark|set aside|reserve|assign (generic term)|allot (generic term)|portion (generic term)
+(verb)|leave|allow for|provide|yield (generic term)|give (generic term)|afford (generic term)
+(verb)|take into account|calculate (generic term)|estimate (generic term)|reckon (generic term)|count on (generic term)|figure (generic term)|forecast (generic term)
+(verb)|admit
+(verb)|give up
+(verb)|discount (generic term)
+(verb)|permit|tolerate|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+allow for|1
+(verb)|leave|allow|provide|yield (generic term)|give (generic term)|afford (generic term)
+allow in|1
+(verb)|admit|let in|intromit|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|reject (antonym)
+allowable|3
+(adj)|deductible (similar term)
+(adj)|permissible|tolerable (related term)|impermissible (antonym)
+(adj)|admissible (similar term)
+allowably|1
+(adv)|permissibly|impermissibly (antonym)
+allowance|7
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|reimbursement (generic term)
+(noun)|adjustment|recompense (generic term)
+(noun)|leeway|margin|tolerance|discrepancy (generic term)|disagreement (generic term)|divergence (generic term)|variance (generic term)
+(noun)|valuation reserve|valuation account|allowance account|reserve account (generic term)|reserve fund (generic term)
+(noun)|license (generic term)|permission (generic term)|permit (generic term)
+(verb)|allow (generic term)|grant (generic term)
+allowance account|1
+(noun)|valuation reserve|valuation account|allowance|reserve account (generic term)|reserve fund (generic term)
+alloy|4
+(noun)|metal|mixture (generic term)
+(noun)|admixture|impurity (generic term)|impureness (generic term)
+(verb)|debase|devalue (generic term)
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+alloy cast iron|1
+(noun)|alloy iron|cast iron (generic term)
+alloy iron|1
+(noun)|alloy cast iron|cast iron (generic term)
+alloy steel|1
+(noun)|steel (generic term)
+alloyed|2
+(adj)|impure (similar term)
+(adj)|blended (similar term)
+allspice|3
+(noun)|allspice tree|pimento tree|Pimenta dioica|spice tree (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|spice (generic term)
+allspice tree|2
+(noun)|Pimenta officinalis|spice tree (generic term)
+(noun)|allspice|pimento tree|Pimenta dioica|spice tree (generic term)
+allude|1
+(verb)|touch|advert|hint (generic term)|suggest (generic term)
+allure|2
+(noun)|allurement|temptingness|attraction (generic term)|attractiveness (generic term)
+(verb)|tempt|invite (generic term)|bid (generic term)
+allurement|3
+(noun)|temptation (generic term)|enticement (generic term)
+(noun)|allure|temptingness|attraction (generic term)|attractiveness (generic term)
+(noun)|solicitation|enticement (generic term)|temptation (generic term)
+alluring|1
+(adj)|beguiling|enticing|tempting|seductive (similar term)
+allusion|1
+(noun)|mention (generic term)|reference (generic term)
+allusive|1
+(adj)|indirect (similar term)
+allusiveness|1
+(noun)|indirectness (generic term)
+alluvial|1
+(adj)|sediment|deposit (related term)
+alluvial cone|1
+(noun)|alluvial fan|geological phenomenon (generic term)
+alluvial deposit|1
+(noun)|alluvial sediment|alluvium|alluvion|sediment (generic term)|deposit (generic term)
+alluvial fan|1
+(noun)|alluvial cone|geological phenomenon (generic term)
+alluvial sediment|1
+(noun)|alluvial deposit|alluvium|alluvion|sediment (generic term)|deposit (generic term)
+alluvial soil|1
+(noun)|soil (generic term)|dirt (generic term)
+alluviation|1
+(noun)|deposit|sedimentation|geological phenomenon (generic term)
+alluvion|3
+(noun)|geological process (generic term)|geologic process (generic term)
+(noun)|flood|inundation|deluge|geological phenomenon (generic term)
+(noun)|alluvial sediment|alluvial deposit|alluvium|sediment (generic term)|deposit (generic term)
+alluvium|1
+(noun)|alluvial sediment|alluvial deposit|alluvion|sediment (generic term)|deposit (generic term)
+ally|3
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+(noun)|friend|associate (generic term)|foe (antonym)
+(verb)|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+ally with|1
+(verb)|unite (generic term)|unify (generic term)
+allyl|1
+(noun)|allyl group|allyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+allyl alcohol|1
+(noun)|propenyl alcohol|alcohol (generic term)
+allyl group|1
+(noun)|allyl|allyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+allyl radical|1
+(noun)|allyl|allyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+allyl resin|1
+(noun)|synthetic resin (generic term)
+allylic|1
+(adj)|group|radical|chemical group (related term)
+alma-ata|1
+(noun)|Almaty|Alma-Ata|city (generic term)|metropolis (generic term)|urban center (generic term)
+alma mater|1
+(noun)|school (generic term)
+almanac|2
+(noun)|farmer's calendar|annual (generic term)|yearly (generic term)|yearbook (generic term)
+(noun)|annual (generic term)|yearly (generic term)|yearbook (generic term)
+almandine|2
+(noun)|spinel ruby (generic term)|ruby spinel (generic term)
+(noun)|almandite|garnet (generic term)
+almandite|1
+(noun)|almandine|garnet (generic term)
+almaty|1
+(noun)|Almaty|Alma-Ata|city (generic term)|metropolis (generic term)|urban center (generic term)
+almighty|2
+(adj)|all-powerful|omnipotent|powerful (similar term)
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+almond|2
+(noun)|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree (generic term)
+(noun)|edible nut (generic term)|drupe (generic term)|stone fruit (generic term)
+almond-eyed|1
+(adj)|eyed (similar term)
+almond-leaves willow|1
+(noun)|peachleaf willow|peach-leaved willow|Salix amygdaloides|willow (generic term)|willow tree (generic term)
+almond-scented|1
+(adj)|odorous (similar term)
+almond-shaped|1
+(adj)|amygdaliform|amygdaloid|amygdaloidal|rounded (similar term)
+almond cookie|1
+(noun)|almond crescent|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+almond crescent|1
+(noun)|almond cookie|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+almond extract|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+almond moth|1
+(noun)|fig moth|Cadra cautella|pyralid (generic term)|pyralid moth (generic term)
+almond oil|1
+(noun)|expressed almond oil|sweet almond oil|oil (generic term)
+almond tree|1
+(noun)|fruit tree (generic term)
+almond willow|1
+(noun)|black Hollander|Salix triandra|Salix amygdalina|osier (generic term)
+almoner|1
+(noun)|medical social worker|social worker (generic term)|caseworker (generic term)|welfare worker (generic term)
+almoravid|1
+(noun)|Almoravid|Berber (generic term)
+almost|1
+(adv)|about|just about|most|all but|nearly|near|nigh|virtually|well-nigh
+alms|1
+(noun)|contribution (generic term)|donation (generic term)
+alms-giving|1
+(noun)|almsgiving|giving (generic term)|gift (generic term)
+alms box|1
+(noun)|poor box|mite box|box (generic term)
+alms dish|1
+(noun)|alms tray|tray (generic term)
+alms tray|1
+(noun)|alms dish|tray (generic term)
+almsgiver|1
+(noun)|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+almsgiving|1
+(noun)|alms-giving|giving (generic term)|gift (generic term)
+alnico|1
+(noun)|Alnico|alloy (generic term)|metal (generic term)
+alnus|1
+(noun)|Alnus|genus Alnus|hamamelid dicot genus (generic term)
+alnus crispa|1
+(noun)|green alder|Alnus veridis crispa|Alnus crispa|alder (generic term)|alder tree (generic term)
+alnus glutinosa|1
+(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder (generic term)|alder tree (generic term)
+alnus incana|1
+(noun)|grey alder|gray alder|Alnus incana|alder (generic term)|alder tree (generic term)
+alnus maritima|1
+(noun)|seaside alder|Alnus maritima|alder (generic term)|alder tree (generic term)
+alnus rhombifolia|1
+(noun)|white alder|mountain alder|Alnus rhombifolia|alder (generic term)|alder tree (generic term)
+alnus rubra|1
+(noun)|red alder|Oregon alder|Alnus rubra|alder (generic term)|alder tree (generic term)
+alnus rugosa|1
+(noun)|speckled alder|Alnus rugosa|alder (generic term)|alder tree (generic term)
+alnus serrulata|1
+(noun)|smooth alder|hazel alder|Alnus serrulata|alder (generic term)|alder tree (generic term)
+alnus veridis|1
+(noun)|green alder|Alnus veridis|alder (generic term)|alder tree (generic term)
+alnus veridis crispa|1
+(noun)|green alder|Alnus veridis crispa|Alnus crispa|alder (generic term)|alder tree (generic term)
+alnus vulgaris|1
+(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder (generic term)|alder tree (generic term)
+alocasia|1
+(noun)|elephant's ear|elephant ear|arum (generic term)|aroid (generic term)
+alocasia macrorrhiza|1
+(noun)|giant taro|Alocasia macrorrhiza|alocasia (generic term)|elephant's ear (generic term)|elephant ear (generic term)
+aloe|1
+(noun)|succulent (generic term)
+aloe family|1
+(noun)|Aloeaceae|family Aloeaceae|liliid monocot family (generic term)
+aloe ferox|1
+(noun)|cape aloe|Aloe ferox|aloe (generic term)
+aloe vera|1
+(noun)|burn plant|Aloe vera|aloe (generic term)
+aloeaceae|1
+(noun)|Aloeaceae|family Aloeaceae|aloe family|liliid monocot family (generic term)
+aloes|1
+(noun)|bitter aloes|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+aloha|1
+(noun)|ciao|acknowledgment (generic term)|acknowledgement (generic term)
+aloha state|1
+(noun)|Hawaii|Hawai'i|Aloha State|HI|American state (generic term)
+alois senefelder|1
+(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer (generic term)
+alone|6
+(adj)|unsocial (similar term)
+(adj)|lone|lonely|solitary|unaccompanied (similar term)
+(adj)|only|exclusive (similar term)
+(adj)|unique|unequaled|unequalled|unparalleled|incomparable (similar term)|uncomparable (similar term)
+(adv)|entirely|exclusively|solely|only
+(adv)|solo|unaccompanied
+aloneness|1
+(noun)|loneliness|lonesomeness|solitude|disposition (generic term)|temperament (generic term)
+along|1
+(adv)|on
+alongside|1
+(adv)|aboard
+alonso|1
+(noun)|Alonso|Alicia Alonso|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+aloof|1
+(adj)|distant|upstage|reserved (similar term)
+aloofness|2
+(noun)|distance|indifference (generic term)
+(noun)|remoteness|standoffishness|withdrawnness|unsociability (generic term)|unsociableness (generic term)
+alopecia|1
+(noun)|baldness (generic term)|phalacrosis (generic term)
+alopecia areata|1
+(noun)|alopecia (generic term)
+alopecic|1
+(adj)|baldness|phalacrosis (related term)
+alopecurus|1
+(noun)|Alopecurus|genus Alopecurus|monocot genus (generic term)|liliopsid genus (generic term)
+alopecurus pratensis|1
+(noun)|meadow foxtail|Alopecurus pratensis|foxtail (generic term)|foxtail grass (generic term)
+alopex|1
+(noun)|Alopex|genus Alopex|mammal genus (generic term)
+alopex lagopus|1
+(noun)|arctic fox|white fox|Alopex lagopus|fox (generic term)
+alopiidae|1
+(noun)|Alopiidae|family Alopiidae|fish family (generic term)
+alopius|1
+(noun)|Alopius|genus Alopius|fish genus (generic term)
+alopius vulpinus|1
+(noun)|thresher|thrasher|thresher shark|fox shark|Alopius vulpinus|shark (generic term)
+alosa|1
+(noun)|Alosa|genus Alosa|fish genus (generic term)
+alosa alosa|1
+(noun)|allice shad|allis shad|allice|allis|Alosa alosa|shad (generic term)
+alosa chrysocloris|1
+(noun)|river shad|Alosa chrysocloris|shad (generic term)
+alosa pseudoharengus|1
+(noun)|alewife|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish (generic term)|clupeid (generic term)
+alosa sapidissima|1
+(noun)|common American shad|Alosa sapidissima|shad (generic term)
+alost|1
+(noun)|Alost|Aalost|town (generic term)
+alouatta|1
+(noun)|Alouatta|genus Alouatta|mammal genus (generic term)
+aloud|2
+(adv)|out loud
+(adv)|loudly|loud|softly (antonym)
+aloys senefelder|1
+(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer (generic term)
+alp|1
+(noun)|mountain (generic term)|mount (generic term)
+alpaca|3
+(noun)|wool (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|Lama pacos|llama (generic term)
+alpena|1
+(noun)|Alpena|town (generic term)|port (generic term)
+alpenstock|1
+(noun)|staff (generic term)
+alpestrine|1
+(adj)|subalpine|upland (similar term)|highland (similar term)
+alpha|4
+(adj)|important (similar term)|of import (similar term)
+(adj)|exploratory (similar term)|explorative (similar term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|start (generic term)
+alpha-adrenergic blocker|1
+(noun)|alpha blocker|alpha-blocker|alpha-adrenergic blocking agent|blocker (generic term)|blocking agent (generic term)
+alpha-adrenergic blocking agent|1
+(noun)|alpha blocker|alpha-blocker|alpha-adrenergic blocker|blocker (generic term)|blocking agent (generic term)
+alpha-adrenergic receptor|1
+(noun)|alpha receptor|alpha-adrenoceptor|receptor (generic term)
+alpha-adrenoceptor|1
+(noun)|alpha receptor|alpha-adrenergic receptor|receptor (generic term)
+alpha-beta brass|1
+(noun)|Muntz metal|yellow metal|brass (generic term)
+alpha-blocker|1
+(noun)|alpha blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent|blocker (generic term)|blocking agent (generic term)
+alpha-interferon|1
+(noun)|interferon (generic term)
+alpha-linolenic acid|1
+(noun)|omega-3 fatty acid (generic term)|omega-3 (generic term)
+alpha-lipoprotein|1
+(noun)|high-density lipoprotein|HDL|lipoprotein (generic term)
+alpha-naphthol|1
+(noun)|naphthol (generic term)
+alpha-naphthol test|1
+(noun)|Molisch's test|Molisch test|Molisch reaction|indicator (generic term)
+alpha-tocopheral|1
+(noun)|vitamin E (generic term)|tocopherol (generic term)|E (generic term)
+alpha and omega|2
+(noun)|eternity (generic term)|infinity (generic term)
+(noun)|crux (generic term)|crux of the matter (generic term)
+alpha blocker|1
+(noun)|alpha-blocker|alpha-adrenergic blocker|alpha-adrenergic blocking agent|blocker (generic term)|blocking agent (generic term)
+alpha brass|1
+(noun)|brass (generic term)
+alpha bronze|1
+(noun)|bronze (generic term)
+alpha centauri|1
+(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star (generic term)|binary (generic term)|double star (generic term)
+alpha crucis|1
+(noun)|Alpha Crucis|star (generic term)
+alpha decay|1
+(noun)|decay (generic term)|radioactive decay (generic term)|disintegration (generic term)
+alpha fetoprotein|1
+(noun)|alpha foetoprotein|AFP|fetoprotein (generic term)|foetoprotein (generic term)
+alpha foetoprotein|1
+(noun)|alpha fetoprotein|AFP|fetoprotein (generic term)|foetoprotein (generic term)
+alpha geminorum|1
+(noun)|Castor|Alpha Geminorum|multiple star (generic term)
+alpha globulin|1
+(noun)|globulin (generic term)
+alpha iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+alpha methyl dopa|1
+(noun)|methyldopa|Aldomet|antihypertensive (generic term)|antihypertensive drug (generic term)
+alpha orionis|1
+(noun)|Betelgeuse|Alpha Orionis|supergiant (generic term)
+alpha particle|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+alpha privative|1
+(noun)|prefix (generic term)
+alpha radiation|1
+(noun)|alpha ray|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+alpha ray|1
+(noun)|alpha radiation|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+alpha receptor|1
+(noun)|alpha-adrenergic receptor|alpha-adrenoceptor|receptor (generic term)
+alpha rhythm|1
+(noun)|alpha wave|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+alpha software|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+alpha test|1
+(noun)|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+alpha wave|1
+(noun)|alpha rhythm|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+alphabet|2
+(noun)|character set (generic term)|script (generic term)
+(noun)|rudiment|first rudiment|first principle|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+alphabet soup|2
+(noun)|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|soup (generic term)
+alphabetic|2
+(adj)|alphabetical|character set|script (related term)|analphabetic (antonym)
+(adj)|alphabetical|abecedarian (similar term)|alphabetized (similar term)|alphabetised (similar term)|analphabetic (antonym)
+alphabetic character|1
+(noun)|letter|letter of the alphabet|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+alphabetic script|1
+(noun)|alphabetic writing|orthography (generic term)|writing system (generic term)
+alphabetic writing|1
+(noun)|alphabetic script|orthography (generic term)|writing system (generic term)
+alphabetical|2
+(adj)|alphabetic|character set|script (related term)|analphabetic (antonym)
+(adj)|alphabetic|abecedarian (similar term)|alphabetized (similar term)|alphabetised (similar term)|analphabetic (antonym)
+alphabetisation|1
+(noun)|alphabetization|order (generic term)|ordering (generic term)
+alphabetise|1
+(verb)|alphabetize|arrange (generic term)|set up (generic term)
+alphabetised|1
+(adj)|alphabetized|alphabetic (similar term)|alphabetical (similar term)
+alphabetiser|1
+(noun)|alphabetizer|literate (generic term)|literate person (generic term)
+alphabetization|1
+(noun)|alphabetisation|order (generic term)|ordering (generic term)
+alphabetize|2
+(verb)|alphabetise|arrange (generic term)|set up (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+alphabetized|1
+(adj)|alphabetised|alphabetic (similar term)|alphabetical (similar term)
+alphabetizer|1
+(noun)|alphabetiser|literate (generic term)|literate person (generic term)
+alphameric|1
+(adj)|alphanumeric|alphanumerical|alphamerical|character set (related term)
+alphamerical|1
+(adj)|alphanumeric|alphanumerical|alphameric|character set (related term)
+alphanumeric|1
+(adj)|alphanumerical|alphameric|alphamerical|character set (related term)
+alphanumeric characters|1
+(noun)|alphanumerics|character set (generic term)
+alphanumeric display|1
+(noun)|digital display|display (generic term)|video display (generic term)
+alphanumerical|1
+(adj)|alphanumeric|alphameric|alphamerical|character set (related term)
+alphanumerics|1
+(noun)|alphanumeric characters|character set (generic term)
+alphavirus|1
+(noun)|animal virus (generic term)
+alphonse bertillon|1
+(noun)|Bertillon|Alphonse Bertillon|criminologist (generic term)
+alphonse capone|1
+(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster (generic term)|mobster (generic term)
+alpine|3
+(adj)|mountain|mount (related term)
+(adj)|Alpine|range|mountain range|range of mountains|chain|mountain chain|chain of mountains (related term)
+(adj)|upland (similar term)|highland (similar term)
+alpine anemone|1
+(noun)|Alpine anemone|mountain anemone|Anemone tetonensis|anemone (generic term)|windflower (generic term)
+alpine ash|1
+(noun)|mountain oak|Eucalyptus delegatensis|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+alpine azalea|1
+(noun)|mountain azalea|Loiseleuria procumbens|shrub (generic term)|bush (generic term)
+alpine bearberry|1
+(noun)|black bearberry|Arctostaphylos alpina|bearberry (generic term)
+alpine besseya|1
+(noun)|Alpine besseya|Besseya alpina|kitten-tails (generic term)
+alpine celery pine|1
+(noun)|Alpine celery pine|Phyllocladus alpinus|celery pine (generic term)
+alpine clover|1
+(noun)|Trifolium alpinum|clover (generic term)|trefoil (generic term)
+alpine clubmoss|1
+(noun)|Lycopodium alpinum|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+alpine coltsfoot|1
+(noun)|Homogyne alpina|Tussilago alpina|herb (generic term)|herbaceous plant (generic term)
+alpine enchanter's nightshade|1
+(noun)|Alpine enchanter's nightshade|Circaea alpina|enchanter's nightshade (generic term)
+alpine fir|1
+(noun)|Alpine fir|subalpine fir|Abies lasiocarpa|silver fir (generic term)
+alpine glacier|1
+(noun)|Alpine glacier|Alpine type of glacier|glacier (generic term)
+alpine gold|1
+(noun)|alpine hulsea|Hulsea algida|wildflower (generic term)|wild flower (generic term)
+alpine golden chain|1
+(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub (generic term)
+alpine goldenrod|1
+(noun)|Solidago multiradiata|goldenrod (generic term)
+alpine hulsea|1
+(noun)|alpine gold|Hulsea algida|wildflower (generic term)|wild flower (generic term)
+alpine lady fern|1
+(noun)|Alpine lady fern|Athyrium distentifolium|lady fern (generic term)|Athyrium filix-femina (generic term)
+alpine lift|1
+(noun)|T-bar lift|T-bar|Alpine lift|surface lift (generic term)
+alpine milk vetch|1
+(noun)|Astragalus alpinus|milk vetch (generic term)|milk-vetch (generic term)
+alpine mouse-ear|1
+(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+alpine salamander|1
+(noun)|Salamandra atra|salamander (generic term)
+alpine scurvy|1
+(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+alpine sunflower|1
+(noun)|old man of the mountain|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower (generic term)|wild flower (generic term)
+alpine totara|1
+(noun)|Podocarpus nivalis|shrub (generic term)|bush (generic term)
+alpine type of glacier|1
+(noun)|Alpine glacier|Alpine type of glacier|glacier (generic term)
+alpine woodsia|1
+(noun)|Alpine woodsia|northern woodsia|flower-cup fern|Woodsia alpina|woodsia (generic term)
+alpinia|1
+(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus (generic term)
+alpinia galanga|1
+(noun)|galangal|Alpinia galanga|ginger (generic term)
+alpinia officinalis|1
+(noun)|lesser galangal|Alpinia officinarum|Alpinia officinalis|ginger (generic term)
+alpinia officinarum|1
+(noun)|lesser galangal|Alpinia officinarum|Alpinia officinalis|ginger (generic term)
+alpinia purpurata|1
+(noun)|red ginger|Alpinia purpurata|ginger (generic term)
+alpinia speciosa|1
+(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+alpinia zerumbet|1
+(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+alpinism|1
+(noun)|Alpinism|mountain climbing (generic term)|mountaineering (generic term)
+alpinist|1
+(noun)|mountaineer (generic term)|mountain climber (generic term)
+alprazolam|1
+(noun)|Xanax|benzodiazepine (generic term)
+alps|1
+(noun)|Alps|the Alps|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+already|1
+(adv)|not yet (antonym)
+alright|4
+(adj)|satisfactory (similar term)
+(adv)|all right
+(adv)|very well|fine|all right|OK
+(adv)|okay|O.K.|all right
+als|1
+(noun)|amyotrophic lateral sclerosis|ALS|Lou Gehrig's disease|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)|sclerosis (generic term)|induration (generic term)
+alsace|1
+(noun)|Alsace|Alsatia|Elsass|French region (generic term)
+alsatia|1
+(noun)|Alsace|Alsatia|Elsass|French region (generic term)
+alsatian|3
+(adj)|Alsatian|French region (related term)
+(noun)|Alsatian|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|German shepherd|German shepherd dog|German police dog|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+also|1
+(adv)|besides|too|likewise|as well
+also-ran|1
+(noun)|loser|contestant (generic term)|winner (antonym)
+also known as|1
+(adv)|alias|a.k.a.
+alsobia|1
+(noun)|Alsobia|genus Alsobia|asterid dicot genus (generic term)
+alsobia dianthiflora|1
+(noun)|lace-flower vine|Alsobia dianthiflora|Episcia dianthiflora|flower (generic term)
+alsophila|1
+(noun)|Alsophila|genus Alsophila|arthropod genus (generic term)
+alsophila pometaria|1
+(noun)|Alsophila pometaria|geometrid (generic term)|geometrid moth (generic term)
+alstonia|1
+(noun)|Alstonia|genus Alstonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+alstonia scholaris|1
+(noun)|dita|dita bark|devil tree|Alstonia scholaris|tree (generic term)
+alstroemeria|1
+(noun)|liliaceous plant (generic term)
+alstroemeria pelegrina|1
+(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria (generic term)
+alstroemeriaceae|1
+(noun)|Alstroemeriaceae|family Alstroemeriaceae|liliid monocot family (generic term)
+alt|1
+(noun)|elevation|EL|altitude|ALT|angular position (generic term)
+altai mountains|1
+(noun)|Altai Mountains|Altay Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+altaic|3
+(adj)|Altaic|Ural-Altaic (related term)
+(noun)|Altaic|Asian (generic term)|Asiatic (generic term)
+(noun)|Altaic|Altaic language|Ural-Altaic (generic term)
+altaic language|1
+(noun)|Altaic|Altaic language|Ural-Altaic (generic term)
+altair|1
+(noun)|Altair|binary star (generic term)|binary (generic term)|double star (generic term)
+altar|2
+(noun)|communion table|Lord's table|table (generic term)
+(noun)|structure (generic term)|construction (generic term)
+altar boy|1
+(noun)|male child (generic term)|boy (generic term)|acolyte (generic term)
+altar wine|1
+(noun)|sacramental wine|wine (generic term)|vino (generic term)
+altarpiece|1
+(noun)|reredos|screen (generic term)
+altay mountains|1
+(noun)|Altai Mountains|Altay Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+altazimuth|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+alter|5
+(verb)|change|modify
+(verb)|change|vary
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|interpolate|falsify|edit (generic term)|redact (generic term)
+(verb)|neuter|spay|castrate|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+alter ego|1
+(noun)|friend (generic term)
+alterability|1
+(noun)|mutability (generic term)|mutableness (generic term)|unalterability (antonym)
+alterable|2
+(adj)|unalterable (antonym)
+(adj)|commutable (similar term)
+alteration|3
+(noun)|change|modification|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|modification|adjustment|change (generic term)
+(noun)|revision|transformation (generic term)|translation (generic term)
+alterative|1
+(adj)|curative|healing|remedial|sanative|therapeutic|healthful (similar term)
+altercate|1
+(verb)|quarrel|dispute|scrap|argufy|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+altercation|1
+(noun)|affray|fracas|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+altered|3
+(adj)|adjusted (similar term)|changed (similar term)|emended (similar term)|edited (similar term)|paraphrastic (similar term)|revised (similar term)|unaltered (antonym)
+(adj)|neutered|castrated (similar term)|unsexed (similar term)
+(adj)|adapted|modified (similar term)
+altering|1
+(noun)|neutering|fixing|sterilization (generic term)|sterilisation (generic term)
+alternanthera|1
+(noun)|Alternanthera|genus Alternanthera|caryophylloid dicot genus (generic term)
+alternanthera philoxeroides|1
+(noun)|alligator weed|alligator grass|Alternanthera philoxeroides|weed (generic term)
+alternate|10
+(adj)|cyclic (similar term)|cyclical (similar term)
+(adj)|alternative|secondary (similar term)
+(adj)|alternating|cyclic (similar term)|cyclical (similar term)
+(adj)|opposite (antonym)
+(noun)|surrogate|replacement|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+(verb)|jump|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|exchange (generic term)
+(verb)|understudy|memorize (generic term)|memorise (generic term)|con (generic term)|learn (generic term)
+(verb)|interchange|tack|switch|flip|flip-flop|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|take turns|act (generic term)|move (generic term)
+alternating|2
+(adj)|direct (antonym)
+(adj)|alternate|cyclic (similar term)|cyclical (similar term)
+alternating current|1
+(noun)|AC|electricity (generic term)|electrical energy (generic term)|direct current (antonym)
+alternation|2
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+(noun)|succession (generic term)|sequence (generic term)
+alternation of generations|1
+(noun)|heterogenesis|xenogenesis|organic phenomenon (generic term)
+alternative|4
+(adj)|alternate|secondary (similar term)
+(adj)|mutually exclusive|disjunctive (similar term)
+(adj)|unconventional (similar term)
+(noun)|option|choice|decision making (generic term)|deciding (generic term)
+alternative birth|1
+(noun)|alternative birthing|childbirth (generic term)|childbearing (generic term)|accouchement (generic term)|vaginal birth (generic term)
+alternative birthing|1
+(noun)|alternative birth|childbirth (generic term)|childbearing (generic term)|accouchement (generic term)|vaginal birth (generic term)
+alternative energy|1
+(noun)|energy (generic term)
+alternative medicine|1
+(noun)|medicine (generic term)|practice of medicine (generic term)
+alternative pleading|1
+(noun)|pleading in the alternative|pleading (generic term)
+alternatively|1
+(adv)|as an alternative|instead|or else
+alternator|1
+(noun)|generator (generic term)
+althaea|1
+(noun)|althea|hollyhock|mallow (generic term)
+althea|1
+(noun)|althaea|hollyhock|mallow (generic term)
+althea gibson|1
+(noun)|Gibson|Althea Gibson|tennis player (generic term)
+althea officinalis|1
+(noun)|marsh mallow|white mallow|Althea officinalis|althea (generic term)|althaea (generic term)|hollyhock (generic term)
+althea rosea|1
+(noun)|rose mallow|Alcea rosea|Althea rosea|hollyhock (generic term)
+altimeter|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+altissimo|1
+(adj)|high (similar term)|high-pitched (similar term)
+altitude|3
+(noun)|height|elevation (generic term)
+(noun)|distance (generic term)|length (generic term)
+(noun)|elevation|EL|ALT|angular position (generic term)
+altitude sickness|1
+(noun)|hypoxia (generic term)
+altitudinal|1
+(adj)|elevation (related term)
+altitudinous|1
+(adj)|high (similar term)
+alto|7
+(adj)|contralto|low (similar term)|low-pitched (similar term)
+(adj)|countertenor|high (similar term)|high-pitched (similar term)
+(adj)|high (similar term)|high-pitched (similar term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|contralto|singing voice (generic term)
+(noun)|countertenor|singing voice (generic term)
+(noun)|pitch (generic term)
+alto clef|1
+(noun)|viola clef|clef (generic term)
+alto relievo|1
+(noun)|alto rilievo|high relief|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|low relief (antonym)
+alto rilievo|1
+(noun)|alto relievo|high relief|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|low relief (antonym)
+alto saxophonist|1
+(noun)|altoist|saxophonist (generic term)|saxist (generic term)
+altocumulus|1
+(noun)|altocumulus cloud|cumulus (generic term)|cumulus cloud (generic term)
+altocumulus cloud|1
+(noun)|altocumulus|cumulus (generic term)|cumulus cloud (generic term)
+altogether|4
+(noun)|raw|birthday suit|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+(adv)|wholly|entirely|completely|totally|all|whole|partly (antonym)
+(adv)|all told|in all
+(adv)|all in all|on the whole|tout ensemble
+altoist|1
+(noun)|alto saxophonist|saxophonist (generic term)|saxist (generic term)
+alton glenn miller|1
+(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader (generic term)
+altoona|1
+(noun)|Altoona|town (generic term)
+altostratus|1
+(noun)|altostratus cloud|stratus (generic term)|stratus cloud (generic term)
+altostratus cloud|1
+(noun)|altostratus|stratus (generic term)|stratus cloud (generic term)
+altricial|1
+(adj)|precocial (antonym)
+altruism|1
+(noun)|selflessness|unselfishness (generic term)|egoism (antonym)
+altruist|1
+(noun)|philanthropist|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+altruistic|1
+(adj)|selfless|unselfish (related term)|egoistic (antonym)
+altruistically|1
+(adv)|selflessly
+alula|2
+(noun)|calypter|squama (generic term)
+(noun)|bastard wing|spurious wing|feather (generic term)|plume (generic term)|plumage (generic term)
+alular|1
+(adj)|feather|plume|plumage (related term)
+alum|4
+(noun)|ammonia alum|ammonium alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+(noun)|potassium alum|potash alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+(noun)|alumnus|alumna|graduate|grad|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|astringent (generic term)|astringent drug (generic term)|styptic (generic term)
+alumbloom|1
+(noun)|alumroot|herb (generic term)|herbaceous plant (generic term)
+alumina|1
+(noun)|aluminum oxide|aluminium oxide|corundom (generic term)|corundum (generic term)
+aluminate|1
+(noun)|compound (generic term)|chemical compound (generic term)
+aluminiferous|1
+(adj)|metallic (similar term)|metal (similar term)
+aluminise|1
+(verb)|aluminize|cover (generic term)
+aluminium|1
+(noun)|aluminum|Al|atomic number 13|metallic element (generic term)|metal (generic term)
+aluminium bronze|1
+(noun)|aluminum bronze|copper-base alloy (generic term)
+aluminium chloride|1
+(noun)|aluminum chloride|chloride (generic term)
+aluminium foil|1
+(noun)|aluminum foil|tin foil|foil (generic term)
+aluminium hydroxide|1
+(noun)|aluminum hydroxide|hydrated aluminum oxide|hydrated aluminium oxide|hydroxide (generic term)|hydrated oxide (generic term)
+aluminium oxide|1
+(noun)|alumina|aluminum oxide|corundom (generic term)|corundum (generic term)
+aluminize|1
+(verb)|aluminise|cover (generic term)
+aluminous|1
+(adj)|metallic element|metal (related term)
+aluminum|1
+(noun)|aluminium|Al|atomic number 13|metallic element (generic term)|metal (generic term)
+aluminum bronze|1
+(noun)|aluminium bronze|copper-base alloy (generic term)
+aluminum business|1
+(noun)|aluminum industry|industry (generic term)
+aluminum chloride|1
+(noun)|aluminium chloride|chloride (generic term)
+aluminum foil|1
+(noun)|aluminium foil|tin foil|foil (generic term)
+aluminum hydroxide|1
+(noun)|aluminium hydroxide|hydrated aluminum oxide|hydrated aluminium oxide|hydroxide (generic term)|hydrated oxide (generic term)
+aluminum industry|1
+(noun)|aluminum business|industry (generic term)
+aluminum oxide|1
+(noun)|alumina|aluminium oxide|corundom (generic term)|corundum (generic term)
+alumna|1
+(noun)|alumnus|alum|graduate|grad|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+alumnus|1
+(noun)|alumna|alum|graduate|grad|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+alumroot|1
+(noun)|alumbloom|herb (generic term)|herbaceous plant (generic term)
+alundum|1
+(noun)|alumina (generic term)|aluminum oxide (generic term)|aluminium oxide (generic term)
+alupent|1
+(noun)|metaproterenol|Alupent|bronchodilator (generic term)
+alvar aalto|1
+(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect (generic term)|designer (generic term)
+alveolar|3
+(adj)|sac (related term)
+(adj)|process|outgrowth|appendage (related term)
+(noun)|alveolar consonant|dental consonant|dental|consonant (generic term)
+alveolar arch|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+alveolar artery|1
+(noun)|arteria alveolaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+alveolar bed|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+alveolar consonant|1
+(noun)|dental consonant|alveolar|dental|consonant (generic term)
+alveolar ectasia|1
+(noun)|ectasia (generic term)|ectasis (generic term)
+alveolar point|1
+(noun)|prosthion|prostheon|craniometric point (generic term)
+alveolar process|1
+(noun)|alveolar ridge|gum ridge|process (generic term)|outgrowth (generic term)|appendage (generic term)
+alveolar resorption|1
+(noun)|periodontal disease (generic term)|periodontitis (generic term)
+alveolar rhabdomyosarcoma|1
+(noun)|alveolar rhabdosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+alveolar rhabdosarcoma|1
+(noun)|alveolar rhabdomyosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+alveolar ridge|1
+(noun)|gum ridge|alveolar process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+alveolate|1
+(adj)|faveolate|cavitied|honeycombed|pitted|cellular (similar term)
+alveolitis|2
+(noun)|dry socket|inflammation (generic term)|redness (generic term)|rubor (generic term)
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+alveolus|2
+(noun)|air sac|air cell|sac (generic term)
+(noun)|tooth socket|socket (generic term)
+alvin ailey|1
+(noun)|Ailey|Alvin Ailey|choreographer (generic term)
+alvine|1
+(adj)|internal organ|viscus (related term)
+always|2
+(adv)|ever|e'er|never (antonym)
+(adv)|forever
+alyssum|2
+(noun)|madwort|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|Alyssum|genus Alyssum|dilleniid dicot genus (generic term)
+alytes|1
+(noun)|Alytes|genus Alytes|amphibian genus (generic term)
+alytes cisternasi|1
+(noun)|midwife toad|Alytes cisternasi|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+alytes obstetricans|1
+(noun)|obstetrical toad|midwife toad|Alytes obstetricans|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+alzheimer's|1
+(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia (generic term)
+alzheimer's disease|1
+(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia (generic term)
+alzheimers|1
+(noun)|Alzheimer's disease|Alzheimer's|Alzheimers|presenile dementia (generic term)
+am|3
+(noun)|americium|Am|atomic number 95|metallic element (generic term)|metal (generic term)
+(noun)|Master of Arts|MA|Artium Magister|AM|master's degree (generic term)
+(noun)|amplitude modulation|AM|modulation (generic term)
+amabilis fir|1
+(noun)|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+amadavat|1
+(noun)|avadavat|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+amaethon|1
+(noun)|Amaethon|Celtic deity (generic term)
+amah|2
+(noun)|wet nurse|wet-nurse|wetnurse|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+(noun)|maid|maidservant|housemaid|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+amalgam|2
+(noun)|dental amalgam|alloy (generic term)|metal (generic term)
+(noun)|combination (generic term)
+amalgamate|2
+(adj)|amalgamated|coalesced|consolidated|fused|united (similar term)
+(verb)|mix|mingle|commix|unify|change (generic term)|alter (generic term)|modify (generic term)
+amalgamated|2
+(adj)|amalgamate|coalesced|consolidated|fused|united (similar term)
+(adj)|intermingled|mixed|integrated|blended (similar term)
+amalgamation|1
+(noun)|merger|uniting|consolidation (generic term)|integration (generic term)
+amalgamative|1
+(adj)|consolidation|integration (related term)
+amalgamator|1
+(noun)|businessman (generic term)|man of affairs (generic term)
+amandine aurore lucie dupin|1
+(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer (generic term)|author (generic term)
+amanita|1
+(noun)|Amanita|genus Amanita|fungus genus (generic term)
+amanita caesarea|1
+(noun)|royal agaric|Caesar's agaric|Amanita caesarea|agaric (generic term)
+amanita mappa|1
+(noun)|false deathcap|Amanita mappa|agaric (generic term)
+amanita muscaria|1
+(noun)|fly agaric|Amanita muscaria|agaric (generic term)
+amanita phalloides|1
+(noun)|death cap|death cup|death angel|destroying angel|Amanita phalloides|agaric (generic term)
+amanita rubescens|1
+(noun)|blushing mushroom|blusher|Amanita rubescens|agaric (generic term)
+amanita verna|1
+(noun)|destroying angel|Amanita verna|agaric (generic term)
+amanuensis|1
+(noun)|stenographer|shorthand typist|secretary (generic term)|secretarial assistant (generic term)
+amaranth|2
+(noun)|grain (generic term)|caryopsis (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+amaranth family|1
+(noun)|Amaranthaceae|family Amaranthaceae|caryophylloid dicot family (generic term)
+amaranthaceae|1
+(noun)|Amaranthaceae|family Amaranthaceae|amaranth family|caryophylloid dicot family (generic term)
+amaranthine|2
+(adj)|herb|herbaceous plant (related term)
+(adj)|unfading|immortal (similar term)
+amaranthus|1
+(noun)|Amaranthus|genus Amaranthus|caryophylloid dicot genus (generic term)
+amaranthus albus|1
+(noun)|tumbleweed|Amaranthus albus|Amaranthus graecizans|amaranth (generic term)
+amaranthus caudatus|1
+(noun)|love-lies-bleeding|velvet flower|tassel flower|Amaranthus caudatus|amaranth (generic term)
+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 (generic term)
+amaranthus graecizans|1
+(noun)|tumbleweed|Amaranthus albus|Amaranthus graecizans|amaranth (generic term)
+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 (generic term)
+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 (generic term)
+amaranthus hypochondriacus|1
+(noun)|pigweed|Amaranthus hypochondriacus|amaranth (generic term)
+amaranthus spinosus|1
+(noun)|thorny amaranth|Amaranthus spinosus|herb (generic term)|herbaceous plant (generic term)
+amarelle|2
+(noun)|Prunus cerasus caproniana|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+(noun)|sour cherry (generic term)
+amaretto|1
+(noun)|liqueur (generic term)|cordial (generic term)
+amarillo|1
+(noun)|Amarillo|city (generic term)|metropolis (generic term)|urban center (generic term)
+amaryllidaceae|1
+(noun)|Amaryllidaceae|family Amaryllidaceae|amaryllis family|liliid monocot family (generic term)
+amaryllis|1
+(noun)|bulbous plant (generic term)
+amaryllis belladonna|1
+(noun)|belladonna lily|naked lady|Amaryllis belladonna|amaryllis (generic term)
+amaryllis family|1
+(noun)|Amaryllidaceae|family Amaryllidaceae|liliid monocot family (generic term)
+amass|2
+(verb)|accumulate|cumulate|conglomerate|pile up|gather|increase (generic term)
+(verb)|roll up|collect|accumulate|pile up|compile|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+amassed|1
+(adj)|accumulated|assembled|collected|congregate|massed|concentrated (similar term)
+amastia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+amaterasu|1
+(noun)|Amaterasu|Amaterasu Omikami|Japanese deity (generic term)
+amaterasu omikami|1
+(noun)|Amaterasu|Amaterasu Omikami|Japanese deity (generic term)
+amateur|4
+(adj)|recreational|unpaid|nonprofessional (similar term)
+(adj)|amateurish|inexpert|unskilled|unprofessional (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|athlete (generic term)|jock (generic term)|professional (antonym)
+amateurish|1
+(adj)|amateur|inexpert|unskilled|unprofessional (similar term)
+amateurishly|1
+(adv)|expertly (antonym)
+amateurishness|1
+(noun)|unskillfulness (generic term)
+amateurism|1
+(noun)|conviction (generic term)|strong belief (generic term)|article of faith (generic term)
+amati|2
+(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker (generic term)
+(noun)|Amati|violin (generic term)|fiddle (generic term)
+amative|1
+(adj)|amorous|loving (similar term)
+amativeness|1
+(noun)|amorousness|eroticism|erotism|sexiness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+amatory|1
+(adj)|amorous|romantic|loving (similar term)
+amatungulu|1
+(noun)|natal plum|Carissa macrocarpa|Carissa grandiflora|carissa (generic term)
+amauropelta|1
+(noun)|Amauropelta|genus Amauropelta|fern genus (generic term)
+amaurosis|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+amaurotic|1
+(adj)|visual impairment|visual defect|vision defect|visual disorder (related term)
+amaze|2
+(verb)|astonish|astound|surprise (generic term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+amazed|1
+(adj)|astonied|astonished|astounded|stunned|surprised (similar term)
+amazement|1
+(noun)|astonishment|feeling (generic term)
+amazing|2
+(adj)|astonishing|surprising (similar term)
+(adj)|awe-inspiring|awesome|awful|awing|impressive (similar term)
+amazingly|1
+(adv)|surprisingly|astonishingly
+amazon|4
+(noun)|virago|woman (generic term)|adult female (generic term)
+(noun)|Amazon|mythical being (generic term)
+(noun)|Amazon|Amazon River|river (generic term)
+(noun)|parrot (generic term)
+amazon ant|1
+(noun)|Amazon ant|Polyergus rufescens|slave-making ant (generic term)|slave-maker (generic term)
+amazon river|1
+(noun)|Amazon|Amazon River|river (generic term)
+amazona|1
+(noun)|Amazona|genus Amazona|bird genus (generic term)
+ambage|1
+(noun)|circumlocution|periphrasis|verboseness (generic term)|verbosity (generic term)
+ambages|1
+(noun)|way (generic term)|path (generic term)|way of life (generic term)
+ambagious|1
+(adj)|circumlocutious|circumlocutory|periphrastic|indirect (similar term)
+ambassador|2
+(noun)|embassador|diplomat (generic term)|diplomatist (generic term)
+(noun)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+ambassadorial|1
+(adj)|diplomat|diplomatist (related term)
+ambassadorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+ambassadress|1
+(noun)|ambassador (generic term)|embassador (generic term)
+amber|3
+(adj)|brownish-yellow|yellow-brown|chromatic (similar term)
+(noun)|gold|yellow (generic term)|yellowness (generic term)
+(noun)|natural resin (generic term)
+amber-green|1
+(adj)|chromatic (similar term)
+amber lily|1
+(noun)|Anthericum torreyi|liliaceous plant (generic term)
+amberbell|1
+(noun)|yellow adder's tongue|trout lily|Erythronium americanum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+amberboa|1
+(noun)|Amberboa|genus Amberboa|asterid dicot genus (generic term)
+amberboa moschata|1
+(noun)|sweet sultan|Amberboa moschata|Centaurea moschata|flower (generic term)
+amberfish|1
+(noun)|amberjack|jack (generic term)
+ambergris|1
+(noun)|animal product (generic term)
+amberjack|1
+(noun)|amberfish|jack (generic term)
+ambiance|2
+(noun)|atmosphere|ambience|condition (generic term)|status (generic term)
+(noun)|ambience|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+ambidexterity|1
+(noun)|ambidextrousness|handedness (generic term)|laterality (generic term)
+ambidextrous|2
+(adj)|two-handed|equipoised (similar term)|right-handed (antonym)|left-handed (antonym)
+(adj)|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+ambidextrousness|1
+(noun)|ambidexterity|handedness (generic term)|laterality (generic term)
+ambience|2
+(noun)|atmosphere|ambiance|condition (generic term)|status (generic term)
+(noun)|ambiance|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+ambient|1
+(adj)|close (similar term)
+ambiguity|2
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|equivocalness|unclearness (generic term)|unequivocalness (antonym)|unambiguity (antonym)
+ambiguous|3
+(adj)|equivocal|double (similar term)|forked (similar term)|evasive (similar term)|indeterminate (similar term)|ambiguous (related term)|unequivocal (antonym)
+(adj)|double-barreled (similar term)|double-barrelled (similar term)|double-edged (similar term)|enigmatic (similar term)|oracular (similar term)|left-handed (similar term)|multivalent (similar term)|multi-valued (similar term)|polysemous (similar term)|polysemantic (similar term)|uncertain (similar term)|equivocal (related term)|ambiguous (related term)|unclear (related term)|unambiguous (antonym)
+(adj)|unstructured (similar term)
+ambiguously|1
+(adv)|equivocally|unambiguously (antonym)
+ambit|1
+(noun)|scope|range|reach|orbit|compass|extent (generic term)
+ambition|3
+(noun)|aspiration|dream|desire (generic term)
+(noun)|ambitiousness|drive (generic term)
+(verb)|desire (generic term)|want (generic term)
+ambitionless|1
+(adj)|unambitious|shiftless (similar term)|unenterprising (related term)|nonenterprising (related term)|ambitious (antonym)
+ambitious|2
+(adj)|pushful (similar term)|pushing (similar term)|pushy (similar term)|aspirant (similar term)|aspiring (similar term)|wishful (similar term)|compulsive (similar term)|determined (similar term)|driven (similar term)|manque (similar term)|would-be (similar term)|overambitious (similar term)|enterprising (related term)|unambitious (antonym)
+(adj)|challenging|difficult (similar term)|hard (similar term)
+ambitiously|1
+(adv)|determinedly|with ambition|unambitiously (antonym)
+ambitiousness|1
+(noun)|ambition|drive (generic term)
+ambivalence|1
+(noun)|ambivalency|feeling (generic term)
+ambivalency|1
+(noun)|ambivalence|feeling (generic term)
+ambivalent|1
+(adj)|uncertain (similar term)|unsure (similar term)|incertain (similar term)
+ambiversion|1
+(noun)|sociability (generic term)|sociableness (generic term)|extraversion (antonym)|introversion (antonym)
+ambiversive|1
+(adj)|introversive (antonym)|extroversive (antonym)
+amble|2
+(noun)|promenade|saunter|stroll|perambulation|walk (generic term)
+(verb)|mosey|walk (generic term)
+ambler|1
+(noun)|saunterer|stroller|pedestrian (generic term)|walker (generic term)|footer (generic term)
+ambloplites|1
+(noun)|Ambloplites|genus Ambloplites|fish genus (generic term)
+ambloplites rupestris|1
+(noun)|rock bass|rock sunfish|Ambloplites rupestris|sunfish (generic term)|centrarchid (generic term)
+amblygonite|1
+(noun)|mineral (generic term)
+amblyopia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+amblyopic|1
+(adj)|visual impairment|visual defect|vision defect|visual disorder (related term)
+amblyrhynchus|1
+(noun)|Amblyrhynchus|genus Amblyrhynchus|reptile genus (generic term)
+amblyrhynchus cristatus|1
+(noun)|marine iguana|Amblyrhynchus cristatus|iguanid (generic term)|iguanid lizard (generic term)
+ambo|1
+(noun)|dais|podium|pulpit|rostrum|stump|soapbox|platform (generic term)
+amboina pine|1
+(noun)|amboyna pine|Agathis dammara|Agathis alba|kauri pine (generic term)|dammar pine (generic term)
+amboyna|2
+(noun)|Andaman redwood|rosewood (generic term)
+(noun)|padauk|padouk|Pterocarpus indicus|tree (generic term)
+amboyna pine|1
+(noun)|amboina pine|Agathis dammara|Agathis alba|kauri pine (generic term)|dammar pine (generic term)
+ambrogio damiano achille ratti|1
+(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+ambrose|1
+(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|composer (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+ambrose bierce|1
+(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer (generic term)|author (generic term)
+ambrose everett burnside|1
+(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general (generic term)|full general (generic term)
+ambrose gwinett bierce|1
+(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer (generic term)|author (generic term)
+ambrosia|4
+(noun)|beebread|composition (generic term)
+(noun)|ragweed|bitterweed|weed (generic term)
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+(noun)|nectar|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+ambrosia artemisiifolia|1
+(noun)|common ragweed|Ambrosia artemisiifolia|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+ambrosia psilostachya|1
+(noun)|western ragweed|perennial ragweed|Ambrosia psilostachya|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+ambrosia trifida|1
+(noun)|great ragweed|Ambrosia trifida|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+ambrosiaceae|1
+(noun)|Ambrosiaceae|family Ambrosiaceae|asterid dicot family (generic term)
+ambrosial|2
+(adj)|ambrosian|nectarous|tasty (similar term)
+(adj)|ambrosian|heavenly (similar term)
+ambrosian|3
+(adj)|Ambrosian|bishop|theologian|theologist|theologizer|theologiser|composer|Church Father|Father of the Church|Father|saint|Doctor of the Church|Doctor (related term)
+(adj)|ambrosial|nectarous|tasty (similar term)
+(adj)|ambrosial|heavenly (similar term)
+ambulacral|1
+(adj)|body part (related term)
+ambulacrum|1
+(noun)|body part (generic term)
+ambulance|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+ambulance chaser|1
+(noun)|lawyer (generic term)|attorney (generic term)
+ambulant|1
+(adj)|ambulatory|mobile (similar term)
+ambulant plague|1
+(noun)|ambulatory plague|pestis ambulans|bubonic plague (generic term)|pestis bubonica (generic term)|glandular plague (generic term)
+ambulate|1
+(verb)|walk (generic term)
+ambulation|1
+(noun)|walk (generic term)|walking (generic term)
+ambulatory|3
+(adj)|walk|walking (related term)
+(adj)|ambulant|mobile (similar term)
+(noun)|walk (generic term)|walkway (generic term)|paseo (generic term)
+ambulatory plague|1
+(noun)|ambulant plague|pestis ambulans|bubonic plague (generic term)|pestis bubonica (generic term)|glandular plague (generic term)
+ambuscade|2
+(noun)|ambush|lying in wait|trap|surprise attack (generic term)|coup de main (generic term)
+(verb)|ambush|scupper|bushwhack|waylay|lurk|lie in wait|wait (generic term)
+ambush|3
+(noun)|ambuscade|lying in wait|trap|surprise attack (generic term)|coup de main (generic term)
+(verb)|scupper|bushwhack|waylay|lurk|ambuscade|lie in wait|wait (generic term)
+(verb)|still-hunt|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+ambusher|1
+(noun)|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+ambystoma|1
+(noun)|Ambystoma|genus Ambystoma|amphibian genus (generic term)
+ambystoma maculatum|1
+(noun)|spotted salamander|Ambystoma maculatum|ambystomid (generic term)|ambystomid salamander (generic term)
+ambystoma mexicanum|1
+(noun)|axolotl|mud puppy|Ambystoma mexicanum|ambystomid (generic term)|ambystomid salamander (generic term)
+ambystoma talpoideum|1
+(noun)|mole salamander|Ambystoma talpoideum|ambystomid (generic term)|ambystomid salamander (generic term)
+ambystoma tigrinum|1
+(noun)|tiger salamander|Ambystoma tigrinum|ambystomid (generic term)|ambystomid salamander (generic term)
+ambystomatidae|1
+(noun)|Ambystomatidae|family Ambystomatidae|amphibian family (generic term)
+ambystomid|1
+(noun)|ambystomid salamander|salamander (generic term)
+ambystomid salamander|1
+(noun)|ambystomid|salamander (generic term)
+ameba|1
+(noun)|amoeba|rhizopod (generic term)|rhizopodan (generic term)
+ameba-like|1
+(adj)|amoeba-like|animal (similar term)
+ameban|1
+(adj)|amoebic|amebic|amoeban|amoebous|amebous|rhizopod|rhizopodan (related term)
+amebiasis|1
+(noun)|amoebiasis|amebiosis|amoebiosis|protozoal infection (generic term)
+amebic|1
+(adj)|amoebic|amoeban|ameban|amoebous|amebous|rhizopod|rhizopodan (related term)
+amebic dysentery|1
+(noun)|amoebic dysentery|amebiasis (generic term)|amoebiasis (generic term)|amebiosis (generic term)|amoebiosis (generic term)|dysentery (generic term)
+amebiosis|1
+(noun)|amebiasis|amoebiasis|amoebiosis|protozoal infection (generic term)
+ameboid|1
+(adj)|amoeboid|rhizopod|rhizopodan (related term)
+amebous|1
+(adj)|amoebic|amebic|amoeban|ameban|amoebous|rhizopod|rhizopodan (related term)
+amedeo avogadro|1
+(noun)|Avogadro|Amedeo Avogadro|physicist (generic term)
+amedeo modigliano|1
+(noun)|Modigliani|Amedeo Modigliano|painter (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+ameer|1
+(noun)|emir|amir|emeer|ruler (generic term)|swayer (generic term)
+ameiuridae|1
+(noun)|Ameiuridae|family Ameiuridae|fish family (generic term)
+ameiurus|1
+(noun)|Ameiurus|genus Ameiurus|fish genus (generic term)
+ameiurus melas|1
+(noun)|horned pout|hornpout|pout|Ameiurus Melas|bullhead (generic term)
+amelanchier|1
+(noun)|Amelanchier|genus Amelanchier|rosid dicot genus (generic term)
+amelanchier alnifolia|1
+(noun)|alderleaf Juneberry|alder-leaved serviceberry|Amelanchier alnifolia|Juneberry (generic term)|serviceberry (generic term)|service tree (generic term)|shadbush (generic term)|shadblow (generic term)
+amelanchier bartramiana|1
+(noun)|Bartram Juneberry|Amelanchier bartramiana|Juneberry (generic term)|serviceberry (generic term)|service tree (generic term)|shadbush (generic term)|shadblow (generic term)
+amelia|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+amelia earhart|1
+(noun)|Earhart|Amelia Earhart|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+ameliorate|2
+(verb)|better|improve|amend|meliorate|change (generic term)|alter (generic term)|modify (generic term)|worsen (antonym)
+(verb)|better|improve|meliorate|change state (generic term)|turn (generic term)|worsen (antonym)
+ameliorating|1
+(adj)|ameliorative|amelioratory|meliorative|bettering (similar term)
+amelioration|1
+(noun)|melioration|betterment|improvement (generic term)
+ameliorative|1
+(adj)|ameliorating|amelioratory|meliorative|bettering (similar term)
+amelioratory|1
+(adj)|ameliorating|ameliorative|meliorative|bettering (similar term)
+ameloblast|1
+(noun)|embryonic cell (generic term)|formative cell (generic term)
+amelogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+amen|1
+(noun)|Amen|Amon|Amun|Egyptian deity (generic term)
+amen-ra|1
+(noun)|Amen-Ra|Amon-Ra|Amun Ra|Egyptian deity (generic term)
+amen cadence|1
+(noun)|plagal cadence|cadence (generic term)
+amen corner|1
+(noun)|corner (generic term)|nook (generic term)
+amenability|1
+(noun)|amenableness|cooperativeness|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+amenable|4
+(adj)|conformable|compliant (similar term)
+(adj)|responsive|tractable|susceptible (similar term)
+(adj)|susceptible (similar term)
+(adj)|responsible (similar term)
+amenableness|1
+(noun)|amenability|cooperativeness|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+amend|3
+(verb)|revise (generic term)
+(verb)|better|improve|ameliorate|meliorate|change (generic term)|alter (generic term)|modify (generic term)|worsen (antonym)
+(verb)|rectify|remediate|remedy|repair|correct (generic term)|rectify (generic term)|right (generic term)
+amendable|1
+(adj)|correctable|corrigible (similar term)
+amendatory|1
+(adj)|bettering (similar term)
+amended|2
+(adj)|revised (similar term)|unamended (antonym)
+(adj)|better (similar term)
+amended return|1
+(noun)|tax return (generic term)|income tax return (generic term)|return (generic term)
+amendment|2
+(noun)|correction (generic term)|rectification (generic term)
+(noun)|statement (generic term)
+amends|2
+(noun)|damages|indemnity|indemnification|restitution|redress|compensation (generic term)
+(noun)|reparation|expiation (generic term)|atonement (generic term)|propitiation (generic term)
+amenhotep iv|1
+(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+amenia|1
+(noun)|amenorrhea|amenorrhoea|symptom (generic term)
+amenities|1
+(noun)|comforts|creature comforts|conveniences|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+amenity|1
+(noun)|agreeableness|pleasantness (generic term)|sweetness (generic term)|disagreeableness (antonym)
+amenorrhea|1
+(noun)|amenorrhoea|amenia|symptom (generic term)
+amenorrheal|1
+(adj)|amenorrheic|amenorrhoeic|amenorrhoeal|symptom (related term)
+amenorrheic|1
+(adj)|amenorrhoeic|amenorrheal|amenorrhoeal|symptom (related term)
+amenorrhoea|1
+(noun)|amenorrhea|amenia|symptom (generic term)
+amenorrhoeal|1
+(adj)|amenorrheic|amenorrhoeic|amenorrheal|symptom (related term)
+amenorrhoeic|1
+(adj)|amenorrheic|amenorrheal|amenorrhoeal|symptom (related term)
+ament|1
+(noun)|catkin|inflorescence (generic term)
+amentaceous|1
+(adj)|amentiferous|productive (similar term)
+amentia|1
+(noun)|idiocy|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+amentiferae|1
+(noun)|Amentiferae|group Amentiferae|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+amentiferous|1
+(adj)|amentaceous|productive (similar term)
+amerce|2
+(verb)|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|ticket (generic term)|fine (generic term)
+amercement|1
+(noun)|fine|mulct|penalty (generic term)
+amerciable|1
+(adj)|illegal (similar term)
+america|2
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+(noun)|America|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+american|4
+(adj)|American|North American country|North American nation (related term)
+(adj)|American|land|dry land|earth|ground|solid ground|terra firma (related term)
+(noun)|American English|American language|American|English (generic term)|English language (generic term)
+(noun)|American|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+american-indian language|1
+(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language (generic term)|tongue (generic term)
+american agave|1
+(noun)|American agave|Agave americana|agave (generic term)|century plant (generic term)|American aloe (generic term)
+american alligator|1
+(noun)|American alligator|Alligator mississipiensis|alligator (generic term)|gator (generic term)
+american aloe|1
+(noun)|agave|century plant|American aloe|desert plant (generic term)|xerophyte (generic term)|xerophytic plant (generic term)|xerophile (generic term)|xerophilous plant (generic term)
+american angelica tree|1
+(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub (generic term)|bush (generic term)
+american antelope|1
+(noun)|pronghorn|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant (generic term)
+american arborvitae|1
+(noun)|American arborvitae|northern white cedar|white cedar|Thuja occidentalis|arborvitae (generic term)
+american arrowroot|1
+(noun)|arrowroot|American arrowroot|obedience plant|Maranta arundinaceae|maranta (generic term)
+american aspen|1
+(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen (generic term)
+american badger|1
+(noun)|American badger|Taxidea taxus|badger (generic term)
+american baptist convention|1
+(noun)|American Baptist Convention|Northern Baptist Convention|association (generic term)
+american barberry|1
+(noun)|American barberry|Berberis canadensis|barberry (generic term)
+american basswood|1
+(noun)|American basswood|American lime|Tilia americana|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+american beech|1
+(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech (generic term)|beech tree (generic term)
+american bison|1
+(noun)|American bison|American buffalo|buffalo|Bison bison|bison (generic term)
+american bittern|1
+(noun)|American bittern|stake driver|Botaurus lentiginosus|bittern (generic term)
+american bittersweet|1
+(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+american black bear|1
+(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear (generic term)
+american blight|1
+(noun)|woolly apple aphid|American blight|Eriosoma lanigerum|woolly aphid (generic term)|woolly plant louse (generic term)
+american bog asphodel|1
+(noun)|American bog asphodel|Narthecium americanum|bog asphodel (generic term)
+american brooklime|1
+(noun)|brooklime|American brooklime|Veronica americana|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+american buffalo|1
+(noun)|American bison|American buffalo|buffalo|Bison bison|bison (generic term)
+american bugbane|1
+(noun)|American bugbane|summer cohosh|Cimicifuga americana|bugbane (generic term)
+american capital|1
+(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital (generic term)
+american centaury|1
+(noun)|marsh pink|rose pink|bitter floom|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+american chameleon|1
+(noun)|American chameleon|anole|Anolis carolinensis|iguanid (generic term)|iguanid lizard (generic term)
+american cheese|1
+(noun)|cheddar|cheddar cheese|Armerican cheddar|American cheese|cheese (generic term)
+american chestnut|1
+(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut (generic term)|chestnut tree (generic term)
+american civil war|1
+(noun)|American Civil War|United States Civil War|War between the States|civil war (generic term)
+american cockroach|1
+(noun)|American cockroach|Periplaneta americana|cockroach (generic term)|roach (generic term)
+american columbo|1
+(noun)|columbo|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb (generic term)|herbaceous plant (generic term)
+american coot|1
+(noun)|American coot|marsh hen|mud hen|water hen|Fulica americana|coot (generic term)
+american copper|1
+(noun)|American copper|Lycaena hypophlaeas|copper (generic term)
+american crab apple|1
+(noun)|American crab apple|garland crab|Malus coronaria|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+american cranberry|1
+(noun)|American cranberry|large cranberry|Vaccinium macrocarpon|cranberry (generic term)
+american cranberry bush|1
+(noun)|cranberry bush|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub (generic term)|bush (generic term)
+american crayfish|1
+(noun)|American crayfish|crayfish (generic term)|crawfish (generic term)|crawdad (generic term)|crawdaddy (generic term)
+american creeper|1
+(noun)|brown creeper|American creeper|Certhia americana|creeper (generic term)|tree creeper (generic term)
+american cress|1
+(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+american crow|1
+(noun)|American crow|Corvus brachyrhyncos|crow (generic term)
+american dewberry|2
+(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+(noun)|American dewberry|Rubus canadensis|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+american dog tick|1
+(noun)|wood tick|American dog tick|Dermacentor variabilis|hard tick (generic term)|ixodid (generic term)
+american dog violet|1
+(noun)|American dog violet|Viola conspersa|violet (generic term)
+american dogwood|1
+(noun)|red osier|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+american dream|1
+(noun)|American Dream|ambition (generic term)|aspiration (generic term)|dream (generic term)
+american dwarf birch|1
+(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch (generic term)|birch tree (generic term)
+american eagle|1
+(noun)|bald eagle|American eagle|Haliaeetus leucocephalus|eagle (generic term)|bird of Jove (generic term)
+american egret|1
+(noun)|American egret|great white heron|Egretta albus|egret (generic term)
+american elder|1
+(noun)|American elder|black elderberry|sweet elder|Sambucus canadensis|elder (generic term)|elderberry bush (generic term)
+american elk|1
+(noun)|wapiti|American elk|Cervus canadensis|deer (generic term)|cervid (generic term)
+american elm|1
+(noun)|American elm|white elm|water elm|rock elm|Ulmus americana|elm (generic term)|elm tree (generic term)
+american english|1
+(noun)|American English|American language|American|English (generic term)|English language (generic term)
+american falls|1
+(noun)|American Falls|waterfall (generic term)|falls (generic term)
+american featherfoil|1
+(noun)|water gillyflower|American featherfoil|Hottonia inflata|featherfoil (generic term)|feather-foil (generic term)
+american federalist party|1
+(noun)|Federalist Party|American Federalist Party|Federal Party|party (generic term)|political party (generic term)
+american federation of labor|1
+(noun)|American Federation of Labor|AFL|federation (generic term)
+american federation of labor and congress of industrial organizations|1
+(noun)|American Federation of Labor and Congress of Industrial Organizations|AFL-CIO|federation (generic term)
+american feverfew|1
+(noun)|American feverfew|wild quinine|prairie dock|Parthenium integrifolium|subshrub (generic term)|suffrutex (generic term)
+american flag|1
+(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag (generic term)
+american flagfish|1
+(noun)|flagfish|American flagfish|Jordanella floridae|killifish (generic term)
+american fly honeysuckle|1
+(noun)|American fly honeysuckle|fly honeysuckle|Lonicera canadensis|honeysuckle (generic term)
+american flying squirrel|1
+(noun)|American flying squirrel|squirrel (generic term)
+american football|1
+(noun)|American football|American football game|football (generic term)|football game (generic term)
+american football game|1
+(noun)|American football|American football game|football (generic term)|football game (generic term)
+american foxhound|1
+(noun)|American foxhound|foxhound (generic term)
+american frogbit|1
+(noun)|American frogbit|Limnodium spongia|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+american gallinule|1
+(noun)|American gallinule|Porphyrula martinica|purple gallinule (generic term)
+american gentian|1
+(noun)|columbo|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb (generic term)|herbaceous plant (generic term)
+american germander|1
+(noun)|American germander|wood sage|Teucrium canadense|germander (generic term)
+american ginseng|1
+(noun)|American ginseng|sang|Panax quinquefolius|herb (generic term)|herbaceous plant (generic term)
+american gray birch|1
+(noun)|grey birch|gray birch|American grey birch|American gray birch|Betula populifolia|birch (generic term)|birch tree (generic term)
+american green toad|1
+(noun)|American green toad|Bufo debilis|true toad (generic term)
+american grey birch|1
+(noun)|grey birch|gray birch|American grey birch|American gray birch|Betula populifolia|birch (generic term)|birch tree (generic term)
+american hackberry|1
+(noun)|American hackberry|Celtis occidentalis|hackberry (generic term)|nettle tree (generic term)
+american harvest mouse|1
+(noun)|American harvest mouse|harvest mouse|New World mouse (generic term)
+american hazel|1
+(noun)|American hazel|Corylus americana|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+american hellebore|1
+(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore (generic term)|false hellebore (generic term)
+american holly|1
+(noun)|American holly|Christmas holly|poisonous plant (generic term)|holly (generic term)
+american hop|1
+(noun)|American hop|Humulus americanus|hop (generic term)|hops (generic term)
+american hornbeam|1
+(noun)|American hornbeam|Carpinus caroliniana|hornbeam (generic term)
+american indian|2
+(noun)|Indian|American Indian|Red Indian|Amerindian (generic term)|Native American (generic term)
+(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language (generic term)|tongue (generic term)
+american indian day|1
+(noun)|American Indian Day|day (generic term)
+american ivy|1
+(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine (generic term)
+american kestrel|1
+(noun)|sparrow hawk|American kestrel|kestrel|Falco sparverius|falcon (generic term)
+american labor party|1
+(noun)|American Labor Party|party (generic term)|political party (generic term)
+american lady crab|1
+(noun)|American lady crab|lady crab|calico crab|Ovalipes ocellatus|swimming crab (generic term)
+american language|1
+(noun)|American English|American language|American|English (generic term)|English language (generic term)
+american larch|1
+(noun)|American larch|tamarack|black larch|Larix laricina|larch (generic term)|larch tree (generic term)
+american laurel|1
+(noun)|mountain laurel|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia (generic term)
+american legion|1
+(noun)|American Legion|association (generic term)
+american leishmaniasis|1
+(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+american licorice|1
+(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb (generic term)|herbaceous plant (generic term)
+american lime|1
+(noun)|American basswood|American lime|Tilia americana|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+american liquorice|1
+(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb (generic term)|herbaceous plant (generic term)
+american lobster|2
+(noun)|American lobster|Northern lobster|Maine lobster|lobster (generic term)
+(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster (generic term)
+american lotus|1
+(noun)|water chinquapin|American lotus|yanquapin|Nelumbo lutea|water lily (generic term)
+american magpie|1
+(noun)|American magpie|Pica pica hudsonia|magpie (generic term)
+american maidenhair fern|1
+(noun)|American maidenhair fern|five-fingered maidenhair fern|Adiantum pedatum|maidenhair (generic term)|maidenhair fern (generic term)
+american marten|1
+(noun)|American marten|American sable|Martes americana|marten (generic term)|marten cat (generic term)
+american mastodon|1
+(noun)|American mastodon|American mastodont|Mammut americanum|mastodon (generic term)|mastodont (generic term)
+american mastodont|1
+(noun)|American mastodon|American mastodont|Mammut americanum|mastodon (generic term)|mastodont (generic term)
+american merganser|1
+(noun)|American merganser|Mergus merganser americanus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+american mink|1
+(noun)|American mink|Mustela vison|mink (generic term)
+american mistletoe|2
+(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe (generic term)|false mistletoe (generic term)
+(noun)|American mistletoe|Arceuthobium pusillum|parasitic plant (generic term)
+american mountain ash|1
+(noun)|American mountain ash|Sorbus americana|mountain ash (generic term)
+american oil palm|1
+(noun)|American oil palm|Elaeis oleifera|oil palm (generic term)
+american olive|1
+(noun)|devilwood|American olive|Osmanthus americanus|tree (generic term)
+american organ|1
+(noun)|American organ|free-reed instrument (generic term)
+american oriole|1
+(noun)|New World oriole|American oriole|oriole|oscine (generic term)|oscine bird (generic term)
+american parasol|1
+(noun)|American parasol|Lepiota americana|lepiota (generic term)
+american parsley fern|1
+(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake (generic term)
+american party|1
+(noun)|American Party|Know-Nothing Party|party (generic term)|political party (generic term)
+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 (generic term)|pasque flower (generic term)
+american pennyroyal|1
+(noun)|pennyroyal|American pennyroyal|Hedeoma pulegioides|herb (generic term)|herbaceous plant (generic term)
+american persimmon|1
+(noun)|American persimmon|possumwood|Diospyros virginiana|persimmon (generic term)|persimmon tree (generic term)
+american pit bull terrier|1
+(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier (generic term)|bull terrier (generic term)
+american plaice|1
+(noun)|American plaice|Hippoglossoides platessoides|righteye flounder (generic term)|righteyed flounder (generic term)
+american plan|1
+(noun)|American plan|hotel plan (generic term)|meal plan (generic term)
+american plane|1
+(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+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 (generic term)|pasque flower (generic term)
+american quaking aspen|1
+(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen (generic term)
+american raspberry|1
+(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry (generic term)
+american rattlebox|1
+(noun)|American rattlebox|Crotalaria sagitallis|crotalaria (generic term)|rattlebox (generic term)
+american red elder|1
+(noun)|American red elder|red-berried elder|stinking elder|Sambucus pubens|elder (generic term)|elderberry bush (generic term)
+american red plum|1
+(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum (generic term)|wild plum tree (generic term)
+american red squirrel|1
+(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel (generic term)
+american redstart|1
+(noun)|American redstart|redstart|Setophaga ruticilla|flycatching warbler (generic term)
+american revised version|1
+(noun)|American Standard Version|American Revised Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+american revolution|1
+(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution (generic term)
+american revolutionary leader|1
+(noun)|American Revolutionary leader|nationalist leader (generic term)
+american revolutionary war|1
+(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution (generic term)
+american robin|1
+(noun)|robin|American robin|Turdus migratorius|thrush (generic term)
+american rock brake|1
+(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake (generic term)
+american sable|1
+(noun)|American marten|American sable|Martes americana|marten (generic term)|marten cat (generic term)
+american saddle horse|1
+(noun)|American saddle horse|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+american samoa|1
+(noun)|American Samoa|Eastern Samoa|AS|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+american shrew mole|1
+(noun)|American shrew mole|Neurotrichus gibbsii|shrew mole (generic term)
+american sign language|1
+(noun)|ASL|American sign language|sign language (generic term)|signing (generic term)
+american smelt|1
+(noun)|American smelt|rainbow smelt|smelt (generic term)
+american smokewood|1
+(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree (generic term)|smoke bush (generic term)
+american smooth dogfish|1
+(noun)|American smooth dogfish|Mustelus canis|smooth dogfish (generic term)
+american spicebush|1
+(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+american spikenard|1
+(noun)|American spikenard|petty morel|life-of-man|Aralia racemosa|subshrub (generic term)|suffrutex (generic term)
+american staffordshire terrier|1
+(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier (generic term)|bull terrier (generic term)
+american standard code for information interchange|1
+(noun)|American Standard Code for Information Interchange|ASCII|code (generic term)|computer code (generic term)
+american standard version|1
+(noun)|American Standard Version|American Revised Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+american star grass|1
+(noun)|American star grass|Hypoxis hirsuta|star grass (generic term)
+american state|1
+(noun)|American state|state (generic term)|province (generic term)
+american stock exchange|1
+(noun)|American Stock Exchange|AMEX|Curb|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+american sweet chestnut|1
+(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut (generic term)|chestnut tree (generic term)
+american sweet gum|1
+(noun)|sweet gum|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+american sycamore|1
+(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+american toad|1
+(noun)|American toad|Bufo americanus|true toad (generic term)
+american turkey oak|1
+(noun)|American turkey oak|turkey oak|Quercus laevis|oak (generic term)|oak tree (generic term)
+american twinflower|1
+(noun)|American twinflower|Linnaea borealis americana|twinflower (generic term)|Linnaea borealis (generic term)
+american virgin islands|1
+(noun)|United States Virgin Islands|American Virgin Islands|VI|possession (generic term)
+american wall fern|1
+(noun)|rock polypody|rock brake|American wall fern|Polypodium virgianum|polypody (generic term)
+american war of independence|1
+(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution (generic term)
+american water ouzel|1
+(noun)|American water ouzel|Cinclus mexicanus|water ouzel (generic term)|dipper (generic term)
+american water shrew|1
+(noun)|American water shrew|Sorex palustris|water shrew (generic term)
+american water spaniel|1
+(noun)|American water spaniel|water spaniel (generic term)
+american watercress|2
+(noun)|American watercress|mountain watercress|Cardamine rotundifolia|watercress (generic term)
+(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+american white birch|1
+(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+american white oak|1
+(noun)|American white oak|Quercus alba|white oak (generic term)
+american white pine|1
+(noun)|American white pine|eastern white pine|weymouth pine|Pinus strobus|white pine (generic term)
+american widgeon|1
+(noun)|American widgeon|baldpate|Anas americana|widgeon (generic term)|wigeon (generic term)|Anas penelope (generic term)
+american wistaria|1
+(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria (generic term)|wistaria (generic term)
+american wisteria|1
+(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria (generic term)|wistaria (generic term)
+american woodcock|1
+(noun)|American woodcock|woodcock snipe|Philohela minor|woodcock (generic term)
+american wormseed|1
+(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot (generic term)
+americana|1
+(noun)|Americana|artifact (generic term)|artefact (generic term)
+americanisation|1
+(noun)|Americanization|Americanisation|assimilation (generic term)|absorption (generic term)
+americanise|2
+(verb)|Americanize|Americanise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|Americanize|Americanise|change (generic term)
+americanism|3
+(noun)|Americanism|patriotism (generic term)|nationalism (generic term)
+(noun)|Americanism|formulation (generic term)|expression (generic term)
+(noun)|Americanism|custom (generic term)|usage (generic term)|usance (generic term)
+americanization|1
+(noun)|Americanization|Americanisation|assimilation (generic term)|absorption (generic term)
+americanize|2
+(verb)|Americanize|Americanise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|Americanize|Americanise|change (generic term)
+americium|1
+(noun)|Am|atomic number 95|metallic element (generic term)|metal (generic term)
+americus vespucius|1
+(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator (generic term)
+amerigo vespucci|1
+(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator (generic term)
+amerind|2
+(adj)|Indian|Amerind|Amerindic|Native American|Amerindian|Native American (related term)
+(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language (generic term)|tongue (generic term)
+amerindian|1
+(noun)|Amerindian|Native American|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+amerindian language|1
+(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language (generic term)|tongue (generic term)
+amerindian race|1
+(noun)|Indian race|Amerindian race|race (generic term)
+amerindic|1
+(adj)|Indian|Amerind|Amerindic|Native American|Amerindian|Native American (related term)
+ametabolic|2
+(adj)|ametabolous|metabolic (antonym)
+(adj)|nonmetamorphic (similar term)
+ametabolous|1
+(adj)|ametabolic|metabolic (antonym)
+amethopterin|1
+(noun)|methotrexate|methotrexate sodium|antimetabolite (generic term)|immunosuppressant (generic term)|immunosuppressor (generic term)|immunosuppressive drug (generic term)|immunosuppressive (generic term)|immune suppressant drug (generic term)
+amethyst|2
+(adj)|chromatic (similar term)
+(noun)|quartz (generic term)|transparent gem (generic term)
+amethystine|1
+(adj)|quartz|transparent gem (related term)
+amethystine python|1
+(noun)|python (generic term)
+ametria|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+ametropia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+ametropic|1
+(adj)|emmetropic (antonym)
+amex|1
+(noun)|American Stock Exchange|AMEX|Curb|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+amhara|1
+(noun)|Amhara|Ethiopian (generic term)
+amharic|2
+(adj)|Amharic|Semitic (related term)
+(noun)|Amharic|Ethiopian language|Semitic (generic term)
+amia|1
+(noun)|Amia|genus Amia|fish genus (generic term)
+amia calva|1
+(noun)|bowfin|grindle|dogfish|Amia calva|ganoid (generic term)|ganoid fish (generic term)
+amiability|2
+(noun)|good humor|good humour|good temper|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|ill humor (antonym)
+(noun)|affability|affableness|amiableness|bonhomie|geniality|friendliness (generic term)
+amiable|2
+(adj)|good-humored|good-humoured|good-natured (similar term)
+(adj)|affable|cordial|genial|friendly (similar term)
+amiableness|1
+(noun)|affability|affableness|amiability|bonhomie|geniality|friendliness (generic term)
+amiably|1
+(adv)|affably|genially
+amianthum|1
+(noun)|Amianthum|genus Amianthum|liliid monocot genus (generic term)
+amianthum muscaetoxicum|1
+(noun)|fly poison|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant (generic term)
+amianthum muscitoxicum|1
+(noun)|fly poison|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant (generic term)
+amicability|1
+(noun)|amicableness|friendliness (generic term)
+amicable|1
+(adj)|friendly (similar term)|unhostile (similar term)|well-meaning (similar term)|unthreatening (similar term)|friendly (related term)|lovable (related term)|loveable (related term)|peaceful (related term)|hostile (antonym)
+amicableness|1
+(noun)|amicability|friendliness (generic term)
+amicus curiae|1
+(noun)|friend of the court|adviser (generic term)|advisor (generic term)|consultant (generic term)
+amicus curiae brief|1
+(noun)|brief (generic term)|legal brief (generic term)
+amide|1
+(noun)|organic compound (generic term)
+amidopyrine|1
+(noun)|aminopyrine|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+amidship|2
+(adj)|central (similar term)
+(adv)|amidships|midships
+amidships|1
+(adv)|amidship|midships
+amigo|1
+(noun)|friend (generic term)
+amiidae|1
+(noun)|Amiidae|family Amiidae|fish family (generic term)
+amine|1
+(noun)|aminoalkane|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)
+aminic|1
+(adj)|amino|methane series|alkane series|alkane|paraffin series|paraffin (related term)
+amino|2
+(adj)|aminic|methane series|alkane series|alkane|paraffin series|paraffin (related term)
+(noun)|amino group|group (generic term)|radical (generic term)|chemical group (generic term)
+amino acid|1
+(noun)|aminoalkanoic acid|organic compound (generic term)
+amino group|1
+(noun)|amino|group (generic term)|radical (generic term)|chemical group (generic term)
+amino plastic|1
+(noun)|aminoplast|amino resin|plastic (generic term)
+amino resin|1
+(noun)|amino plastic|aminoplast|plastic (generic term)
+aminoaciduria|1
+(noun)|symptom (generic term)
+aminoalkane|1
+(noun)|amine|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)
+aminoalkanoic acid|1
+(noun)|amino acid|organic compound (generic term)
+aminobenzine|1
+(noun)|aniline|aniline oil|phenylamine|amine (generic term)|aminoalkane (generic term)
+aminobenzoic acid|1
+(noun)|acid (generic term)
+aminomethane|1
+(noun)|methyl (generic term)|methyl group (generic term)|methyl radical (generic term)
+aminopherase|1
+(noun)|transaminase|aminotransferase|transferase (generic term)
+aminophylline|1
+(noun)|bronchodilator (generic term)
+aminoplast|1
+(noun)|amino plastic|amino resin|plastic (generic term)
+aminopyrine|1
+(noun)|amidopyrine|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+aminotransferase|1
+(noun)|transaminase|aminopherase|transferase (generic term)
+amiodarone|1
+(noun)|Cordarone|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+amir|1
+(noun)|emir|emeer|ameer|ruler (generic term)|swayer (generic term)
+amish|1
+(noun)|Amish|Mennonite (generic term)
+amish sect|1
+(noun)|Amish sect|sect (generic term)|religious sect (generic term)|religious order (generic term)
+amiss|3
+(adj)|awry|haywire|wrong|malfunctioning (similar term)|nonfunctional (similar term)
+(adv)|awry
+(adv)|imperfectly|perfectly (antonym)
+amitosis|1
+(noun)|cell division (generic term)|cellular division (generic term)
+amitotic|1
+(adj)|cell division|cellular division (related term)
+amitriptyline|1
+(noun)|amitriptyline hydrochloride|Elavil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+amitriptyline hydrochloride|1
+(noun)|amitriptyline|Elavil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+amity|2
+(noun)|cordiality|friendliness (generic term)
+(noun)|peace (generic term)
+amlodipine besylate|1
+(noun)|Norvasc|vasodilator (generic term)|vasodilative (generic term)
+amman|1
+(noun)|Amman|capital of Jordan|national capital (generic term)
+ammeter|1
+(noun)|meter (generic term)
+ammine|1
+(noun)|compound (generic term)|chemical compound (generic term)
+ammino|1
+(adj)|compound|chemical compound (related term)
+ammo|1
+(noun)|ammunition|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+ammobium|1
+(noun)|flower (generic term)
+ammobium alatum|1
+(noun)|winged everlasting|Ammobium alatum|ammobium (generic term)
+ammodytes|1
+(noun)|Ammodytes|genus Ammodytes|fish genus (generic term)
+ammodytidae|1
+(noun)|Ammodytidae|family Ammodytidae|fish family (generic term)
+ammonia|2
+(noun)|binary compound (generic term)
+(noun)|ammonia water|ammonium hydroxide|liquid (generic term)
+ammonia alum|1
+(noun)|alum|ammonium alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+ammonia clock|1
+(noun)|atomic clock (generic term)
+ammonia water|1
+(noun)|ammonia|ammonium hydroxide|liquid (generic term)
+ammoniac|2
+(adj)|ammoniacal|binary compound (related term)
+(noun)|gum ammoniac|gum (generic term)
+ammoniacal|1
+(adj)|ammoniac|binary compound (related term)
+ammoniate|1
+(verb)|process (generic term)|treat (generic term)
+ammoniated|1
+(adj)|ammonia (related term)
+ammonification|1
+(noun)|permeation (generic term)|pervasion (generic term)|suffusion (generic term)
+ammonify|1
+(verb)|impregnate (generic term)|saturate (generic term)
+ammonite|1
+(noun)|ammonoid|fossil (generic term)
+ammonitic|1
+(adj)|fossil (related term)
+ammonium|1
+(noun)|ammonium ion|ammonia (generic term)
+ammonium alum|1
+(noun)|alum|ammonia alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+ammonium carbamate|1
+(noun)|carbamate (generic term)
+ammonium carbonate|1
+(noun)|carbonate (generic term)
+ammonium chloride|1
+(noun)|sal ammoniac|salt (generic term)
+ammonium hydroxide|1
+(noun)|ammonia water|ammonia|liquid (generic term)
+ammonium ion|1
+(noun)|ammonium|ammonia (generic term)
+ammonium nitrate|1
+(noun)|nitrate (generic term)
+ammoniuria|1
+(noun)|symptom (generic term)
+ammonoid|1
+(noun)|ammonite|fossil (generic term)
+ammotragus|1
+(noun)|Ammotragus|genus Ammotragus|mammal genus (generic term)
+ammotragus lervia|1
+(noun)|aoudad|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep (generic term)
+ammunition|3
+(noun)|ammo|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+(noun)|material (generic term)|stuff (generic term)
+(noun)|information (generic term)|info (generic term)
+ammunition chest|1
+(noun)|caisson|chest (generic term)
+amnesia|1
+(noun)|memory loss|blackout|cognitive state (generic term)|state of mind (generic term)
+amnesiac|2
+(adj)|amnesic|unmindful (similar term)|forgetful (similar term)|mindless (similar term)
+(noun)|amnesic|handicapped person (generic term)
+amnesic|3
+(adj)|amnestic|cognitive state|state of mind (related term)
+(adj)|amnesiac|unmindful (similar term)|forgetful (similar term)|mindless (similar term)
+(noun)|amnesiac|handicapped person (generic term)
+amnesic aphasia|1
+(noun)|nominal aphasia|anomic aphasia|anomia|amnestic aphasia|aphasia (generic term)
+amnestic|1
+(adj)|amnesic|cognitive state|state of mind (related term)
+amnestic aphasia|1
+(noun)|nominal aphasia|anomic aphasia|anomia|amnesic aphasia|aphasia (generic term)
+amnesty|4
+(noun)|exemption (generic term)|freedom (generic term)
+(noun)|pardon|warrant (generic term)
+(noun)|pardon|free pardon|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(verb)|pardon (generic term)
+amnic|1
+(adj)|amniotic|amnionic|sac (related term)
+amnio|1
+(noun)|amniocentesis|centesis (generic term)|prenatal diagnosis (generic term)
+amniocentesis|1
+(noun)|amnio|centesis (generic term)|prenatal diagnosis (generic term)
+amnion|1
+(noun)|amniotic sac|amnios|sac (generic term)
+amnionic|1
+(adj)|amniotic|amnic|sac (related term)
+amnionic fluid|1
+(noun)|amniotic fluid|waters|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+amnios|1
+(noun)|amnion|amniotic sac|sac (generic term)
+amniota|1
+(noun)|Amniota|vertebrate (generic term)|craniate (generic term)
+amniote|1
+(noun)|vertebrate (generic term)|craniate (generic term)
+amniotic|1
+(adj)|amnionic|amnic|sac (related term)
+amniotic cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+amniotic fluid|1
+(noun)|amnionic fluid|waters|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+amniotic sac|1
+(noun)|amnion|amnios|sac (generic term)
+amobarbital|1
+(noun)|barbiturate (generic term)|truth serum (generic term)|truth drug (generic term)
+amobarbital sodium|1
+(noun)|blue|blue angel|blue devil|Amytal|amobarbital (generic term)
+amoeba|1
+(noun)|ameba|rhizopod (generic term)|rhizopodan (generic term)
+amoeba-like|1
+(adj)|ameba-like|animal (similar term)
+amoeban|1
+(adj)|amoebic|amebic|ameban|amoebous|amebous|rhizopod|rhizopodan (related term)
+amoebiasis|1
+(noun)|amebiasis|amebiosis|amoebiosis|protozoal infection (generic term)
+amoebic|1
+(adj)|amebic|amoeban|ameban|amoebous|amebous|rhizopod|rhizopodan (related term)
+amoebic dysentery|1
+(noun)|amebic dysentery|amebiasis (generic term)|amoebiasis (generic term)|amebiosis (generic term)|amoebiosis (generic term)|dysentery (generic term)
+amoebida|1
+(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order (generic term)
+amoebina|1
+(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order (generic term)
+amoebiosis|1
+(noun)|amebiasis|amoebiasis|amebiosis|protozoal infection (generic term)
+amoeboid|1
+(adj)|ameboid|rhizopod|rhizopodan (related term)
+amoebous|1
+(adj)|amoebic|amebic|amoeban|ameban|amebous|rhizopod|rhizopodan (related term)
+amok|3
+(adj)|amuck|berserk|demoniac|demoniacal|possessed|insane (similar term)
+(adv)|amuck
+(adv)|amuck|murderously
+amon|1
+(noun)|Amen|Amon|Amun|Egyptian deity (generic term)
+amon-ra|1
+(noun)|Amen-Ra|Amon-Ra|Amun Ra|Egyptian deity (generic term)
+amontillado|1
+(noun)|Amontillado|sherry (generic term)
+amor|1
+(noun)|Cupid|Amor|Roman deity (generic term)
+amora|1
+(noun)|rabbi (generic term)
+amoral|1
+(adj)|unmoral|neutral (similar term)|nonmoral (similar term)|moral (antonym)|immoral (antonym)
+amoralism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+amoralist|1
+(noun)|disciple (generic term)|adherent (generic term)
+amorality|1
+(noun)|quality (generic term)
+amorally|1
+(adv)|immorally|morally (antonym)
+amorist|1
+(noun)|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+amoristic|1
+(adj)|fan|buff|devotee|lover (related term)
+amorous|2
+(adj)|amative|loving (similar term)
+(adj)|amatory|romantic|loving (similar term)
+amorously|1
+(adv)|with love
+amorousness|2
+(noun)|enamoredness|love (generic term)
+(noun)|eroticism|erotism|sexiness|amativeness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+amorpha|1
+(noun)|shrub (generic term)|bush (generic term)
+amorpha californica|1
+(noun)|false indigo|bastard indigo|Amorpha californica|amorpha (generic term)
+amorpha canescens|1
+(noun)|leadplant|lead plant|Amorpha canescens|amorpha (generic term)
+amorpha fruticosa|1
+(noun)|false indigo|bastard indigo|Amorpha fruticosa|amorpha (generic term)
+amorphophallus|1
+(noun)|arum (generic term)|aroid (generic term)
+amorphophallus campanulatus|1
+(noun)|pungapung|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum (generic term)|aroid (generic term)
+amorphophallus paeonifolius|1
+(noun)|pungapung|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum (generic term)|aroid (generic term)
+amorphophallus rivieri|1
+(noun)|devil's tongue|snake palm|umbrella arum|Amorphophallus rivieri|arum (generic term)|aroid (generic term)
+amorphophallus titanum|1
+(noun)|krubi|titan arum|Amorphophallus titanum|arum (generic term)|aroid (generic term)
+amorphous|3
+(adj)|formless|shapeless|unformed (similar term)
+(adj)|unstructured|inorganic (similar term)
+(adj)|uncrystallized|uncrystallised|noncrystalline (similar term)
+amorphous shape|1
+(noun)|shape (generic term)|form (generic term)
+amort|1
+(adj)|dejected (similar term)
+amortisation|2
+(noun)|amortization|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|amortization|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+amortise|1
+(verb)|amortize|liquidate (generic term)|pay off (generic term)
+amortization|2
+(noun)|amortisation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|amortisation|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+amortize|1
+(verb)|amortise|liquidate (generic term)|pay off (generic term)
+amos|2
+(noun)|Amos|prophet (generic term)
+(noun)|Amos|Book of Amos|book (generic term)
+amount|6
+(noun)|magnitude (generic term)
+(noun)|sum|sum of money|amount of money|assets (generic term)
+(noun)|measure|quantity|abstraction (generic term)
+(noun)|sum|total|quantity (generic term)
+(verb)|total|number|add up|come|be (generic term)
+(verb)|come|add up|become (generic term)|turn (generic term)
+amount of money|1
+(noun)|sum|sum of money|amount|assets (generic term)
+amour|1
+(noun)|affair|affaire|intimacy|liaison|involvement|sexual relationship (generic term)
+amour propre|1
+(noun)|conceit|self-love|vanity|pride (generic term)|pridefulness (generic term)
+amoxicillin|1
+(noun)|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+amoxil|1
+(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+amoy|1
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+amp|2
+(noun)|ampere|A|current unit (generic term)
+(noun)|adenosine monophosphate|AMP|adenylic acid|nucleotide (generic term)
+amperage|1
+(noun)|electrical phenomenon (generic term)
+ampere|2
+(noun)|international ampere|current unit (generic term)
+(noun)|amp|A|current unit (generic term)
+ampere-hour|1
+(noun)|charge unit (generic term)|quantity unit (generic term)
+ampere-minute|1
+(noun)|charge unit (generic term)|quantity unit (generic term)
+ampere-second|1
+(noun)|coulomb|C|charge unit (generic term)|quantity unit (generic term)
+ampere-turn|1
+(noun)|magnetomotive force unit (generic term)
+ampersand|1
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+amphetamine|1
+(noun)|pep pill|upper|speed|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)|drug of abuse (generic term)|street drug (generic term)
+amphetamine sulfate|1
+(noun)|amphetamine sulphate|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+amphetamine sulphate|1
+(noun)|amphetamine sulfate|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+amphibia|1
+(noun)|class Amphibia|class (generic term)
+amphibian|4
+(adj)|amphibious|class (related term)
+(noun)|amphibious vehicle|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|amphibious aircraft|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+(noun)|vertebrate (generic term)|craniate (generic term)
+amphibian family|1
+(noun)|family (generic term)
+amphibian genus|1
+(noun)|genus (generic term)
+amphibiotic|1
+(adj)|semiaquatic|amphibious (similar term)
+amphibious|2
+(adj)|amphibian|class (related term)
+(adj)|amphibiotic (similar term)|semiaquatic (similar term)|aquatic (antonym)|terrestrial (antonym)
+amphibious aircraft|1
+(noun)|amphibian|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+amphibious assault|1
+(noun)|amphibious operation (generic term)
+amphibious demonstration|1
+(noun)|amphibious operation (generic term)
+amphibious landing|1
+(noun)|landing (generic term)|military action (generic term)|action (generic term)
+amphibious operation|1
+(noun)|operation (generic term)|military operation (generic term)
+amphibious vehicle|1
+(noun)|amphibian|motor vehicle (generic term)|automotive vehicle (generic term)
+amphibole|1
+(noun)|mineral (generic term)
+amphibole group|1
+(noun)|mineral (generic term)
+amphibolips|1
+(noun)|Amphibolips|genus Amphibolips|arthropod genus (generic term)
+amphibolite|1
+(noun)|metamorphic rock (generic term)
+amphibology|1
+(noun)|amphiboly|ambiguity (generic term)
+amphiboly|1
+(noun)|amphibology|ambiguity (generic term)
+amphibrach|1
+(noun)|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+amphicarpa|1
+(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus (generic term)
+amphicarpa bracteata|1
+(noun)|hog peanut|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine (generic term)
+amphicarpaea|1
+(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus (generic term)
+amphicarpaea bracteata|1
+(noun)|hog peanut|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine (generic term)
+amphictyony|1
+(noun)|political unit (generic term)|political entity (generic term)
+amphidiploid|1
+(noun)|organism (generic term)|being (generic term)
+amphidiploidy|1
+(noun)|condition (generic term)
+amphigory|1
+(noun)|nonsense verse|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+amphimixis|2
+(noun)|sexual reproduction|reproduction (generic term)
+(noun)|union (generic term)
+amphineura|1
+(noun)|Amphineura|subclass Amphineura|class (generic term)
+amphioxidae|1
+(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family (generic term)
+amphioxus|1
+(noun)|lancelet|cephalochordate (generic term)
+amphipod|1
+(noun)|malacostracan crustacean (generic term)
+amphipoda|1
+(noun)|Amphipoda|order Amphipoda|animal order (generic term)
+amphiprion|1
+(noun)|Amphiprion|genus Amphiprion|fish genus (generic term)
+amphiprion percula|1
+(noun)|clown anemone fish|Amphiprion percula|anemone fish (generic term)
+amphiprostylar|1
+(adj)|amphiprostyle|amphistylar|porticoed|apteral (similar term)
+amphiprostyle|1
+(adj)|amphiprostylar|amphistylar|porticoed|apteral (similar term)
+amphiprotic|1
+(adj)|amphoteric|acidic (antonym)|alkaline (antonym)
+amphisbaena|2
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus (generic term)
+amphisbaenia|1
+(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus (generic term)
+amphisbaenidae|1
+(noun)|Amphisbaenidae|family Amphisbaenidae|reptile family (generic term)
+amphistylar|2
+(adj)|columned (similar term)
+(adj)|amphiprostylar|amphiprostyle|porticoed|apteral (similar term)
+amphitheater|2
+(noun)|amphitheatre|gallery (generic term)
+(noun)|amphitheatre|coliseum|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+amphitheatre|2
+(noun)|amphitheater|gallery (generic term)
+(noun)|amphitheater|coliseum|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+amphitheatric|1
+(adj)|amphitheatrical|stadium|bowl|arena|sports stadium (related term)
+amphitheatrical|1
+(adj)|amphitheatric|stadium|bowl|arena|sports stadium (related term)
+amphitheatrum flavium|1
+(noun)|Colosseum|Amphitheatrum Flavium|amphitheater (generic term)|amphitheatre (generic term)|coliseum (generic term)
+amphitropous|1
+(adj)|anatropous (antonym)
+amphitropous ovule|1
+(noun)|ovule (generic term)
+amphiuma|1
+(noun)|congo snake|congo eel|blind eel|salamander (generic term)
+amphiumidae|1
+(noun)|Amphiumidae|family Amphiumidae|amphibian family (generic term)
+amphora|1
+(noun)|jar (generic term)
+amphoric|1
+(adj)|listening|hearing|diagnostic procedure|diagnostic technique (related term)
+amphoteric|1
+(adj)|amphiprotic|acidic (antonym)|alkaline (antonym)
+amphotericin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+ampicillin|1
+(noun)|Principen|Polycillin|SK-Ampicillin|penicillin (generic term)
+ample|3
+(adj)|full (similar term)|good (similar term)|generous (similar term)|wide (similar term)|wide-cut (similar term)|full (similar term)|abundant (related term)|sufficient (related term)|meager (antonym)
+(adj)|copious|plenteous|plentiful|rich|abundant (similar term)
+(adj)|sizable|sizeable|large (similar term)|big (similar term)
+ampleness|2
+(noun)|sufficiency (generic term)|adequacy (generic term)
+(noun)|largeness (generic term)|bigness (generic term)
+amplexicaul leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+amplification|3
+(noun)|elaboration|expansion (generic term)|expanding upon (generic term)
+(noun)|gain|increase (generic term)|increment (generic term)
+(noun)|increase (generic term)|step-up (generic term)
+amplifier|1
+(noun)|electronic equipment (generic term)
+amplify|4
+(verb)|magnify|enlarge (generic term)
+(verb)|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|misinform (generic term)|mislead (generic term)|understate (antonym)
+(verb)|inflate|blow up|expand|increase (generic term)
+(verb)|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+amplitude|3
+(noun)|shift (generic term)|displacement (generic term)
+(noun)|bountifulness|bounty|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(noun)|magnitude (generic term)
+amplitude distortion|1
+(noun)|nonlinear distortion|distortion (generic term)
+amplitude level|1
+(noun)|degree (generic term)|grade (generic term)|level (generic term)
+amplitude modulation|1
+(noun)|AM|modulation (generic term)
+amply|2
+(adv)|richly|meagerly (antonym)
+(adv)|fully|meagerly (antonym)
+ampoule|1
+(noun)|phial|vial|ampule|ampul|bottle (generic term)
+ampul|1
+(noun)|phial|vial|ampule|ampoule|bottle (generic term)
+ampule|1
+(noun)|phial|vial|ampul|ampoule|bottle (generic term)
+ampulla|2
+(noun)|body part (generic term)
+(noun)|flask (generic term)
+ampullar|1
+(adj)|ampullary|body part (related term)
+ampullary|1
+(adj)|ampullar|body part (related term)
+amputate|1
+(verb)|cut off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+amputation|2
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+amputator|1
+(noun)|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+amputee|1
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+amrinone|1
+(noun)|Inocor|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+amsinckia|1
+(noun)|Amsinckia|genus Amsinckia|plant genus (generic term)
+amsinckia grandiflora|1
+(noun)|large-flowered fiddleneck|Amsinckia grandiflora|herb (generic term)|herbaceous plant (generic term)
+amsinckia intermedia|1
+(noun)|common amsinckia|Amsinckia intermedia|herb (generic term)|herbaceous plant (generic term)
+amsonia|1
+(noun)|Amsonia|genus Amsonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+amsonia tabernaemontana|1
+(noun)|blue star|Amsonia tabernaemontana|subshrub (generic term)|suffrutex (generic term)
+amsterdam|1
+(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital (generic term)
+amuck|3
+(adj)|amok|berserk|demoniac|demoniacal|possessed|insane (similar term)
+(adv)|amok
+(adv)|amok|murderously
+amulet|1
+(noun)|talisman|charm (generic term)|good luck charm (generic term)
+amun|1
+(noun)|Amen|Amon|Amun|Egyptian deity (generic term)
+amun ra|1
+(noun)|Amen-Ra|Amon-Ra|Amun Ra|Egyptian deity (generic term)
+amundsen|1
+(noun)|Amundsen|Roald Amundsen|explorer (generic term)|adventurer (generic term)
+amur|1
+(noun)|Amur|Amur River|Heilong Jiang|Heilong|river (generic term)
+amur privet|1
+(noun)|Amur privet|Ligustrum amurense|privet (generic term)
+amur river|1
+(noun)|Amur|Amur River|Heilong Jiang|Heilong|river (generic term)
+amusd|1
+(noun)|Doctor of Musical Arts|AMusD|doctor's degree (generic term)|doctorate (generic term)
+amuse|2
+(verb)|divert|disport|entertain (generic term)
+(verb)|cheer (generic term)|cheer up (generic term)|jolly along (generic term)|jolly up (generic term)
+amused|1
+(adj)|diverted|entertained|pleased (similar term)
+amusement|2
+(noun)|delight (generic term)|delectation (generic term)
+(noun)|entertainment|diversion (generic term)|recreation (generic term)
+amusement arcade|1
+(noun)|arcade (generic term)
+amusement park|1
+(noun)|funfair|pleasure ground|park (generic term)|commons (generic term)|common (generic term)|green (generic term)
+amusing|2
+(adj)|amusive|diverting|fun|entertaining (similar term)
+(adj)|comic|comical|funny|laughable|mirthful|risible|humorous (similar term)|humourous (similar term)
+amusingly|1
+(adv)|divertingly
+amusive|1
+(adj)|amusing|diverting|fun|entertaining (similar term)
+amy lowell|1
+(noun)|Lowell|Amy Lowell|poet (generic term)
+amy lyon|1
+(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+amygdala|1
+(noun)|amygdaloid nucleus|corpus amygdaloideum|basal ganglion (generic term)
+amygdalaceae|1
+(noun)|Amygdalaceae|family Amygdalaceae|dicot family (generic term)|magnoliopsid family (generic term)
+amygdaliform|1
+(adj)|almond-shaped|amygdaloid|amygdaloidal|rounded (similar term)
+amygdalin|1
+(noun)|glucoside (generic term)
+amygdaline|1
+(adj)|edible nut|drupe|stone fruit (related term)
+amygdaloid|2
+(adj)|almond-shaped|amygdaliform|amygdaloidal|rounded (similar term)
+(noun)|volcanic rock (generic term)
+amygdaloid nucleus|1
+(noun)|amygdala|corpus amygdaloideum|basal ganglion (generic term)
+amygdaloidal|1
+(adj)|almond-shaped|amygdaliform|amygdaloid|rounded (similar term)
+amygdalotomy|1
+(noun)|psychosurgery (generic term)
+amygdalus|1
+(noun)|Amygdalus|genus Amygdalus|rosid dicot genus (generic term)
+amygdalus communis|1
+(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree (generic term)
+amygdalus communis amara|1
+(noun)|bitter almond|Prunus dulcis amara|Amygdalus communis amara|almond tree (generic term)
+amyl|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+amyl alcohol|1
+(noun)|alcohol (generic term)
+amyl nitrate|1
+(noun)|vasodilator (generic term)|vasodilative (generic term)
+amylaceous|1
+(adj)|starchlike|amyloid|amyloidal|farinaceous|starchy (similar term)
+amylase|1
+(noun)|enzyme (generic term)
+amyloid|3
+(adj)|starchlike|amylaceous|amyloidal|farinaceous|starchy (similar term)
+(noun)|starch (generic term)|amylum (generic term)
+(noun)|protein (generic term)
+amyloid plaque|1
+(noun)|amyloid protein plaque|plaque (generic term)
+amyloid protein plaque|1
+(noun)|amyloid plaque|plaque (generic term)
+amyloidal|1
+(adj)|starchlike|amylaceous|amyloid|farinaceous|starchy (similar term)
+amyloidosis|1
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+amylolysis|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+amylolytic|1
+(adj)|chemical process|chemical change|chemical action (related term)
+amylum|1
+(noun)|starch|polysaccharide (generic term)|polyose (generic term)
+amyotonia|1
+(noun)|atonicity|atony|atonia|condition (generic term)|status (generic term)|tonicity (antonym)
+amyotrophia|1
+(noun)|amyotrophy|atrophy (generic term)|wasting (generic term)|wasting away (generic term)
+amyotrophic lateral sclerosis|1
+(noun)|ALS|Lou Gehrig's disease|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)|sclerosis (generic term)|induration (generic term)
+amyotrophy|1
+(noun)|amyotrophia|atrophy (generic term)|wasting (generic term)|wasting away (generic term)
+amytal|1
+(noun)|amobarbital sodium|blue|blue angel|blue devil|Amytal|amobarbital (generic term)
+amyxia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+an|1
+(noun)|Associate in Nursing|AN|associate degree (generic term)|associate (generic term)
+an nafud|1
+(noun)|Nefud|An Nefud|Nafud|An Nafud|desert (generic term)
+an nefud|1
+(noun)|Nefud|An Nefud|Nafud|An Nafud|desert (generic term)
+ana|2
+(noun)|Ana|Celtic deity (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+anabantidae|1
+(noun)|Anabantidae|family Anabantidae|fish family (generic term)
+anabaptism|1
+(noun)|Anabaptism|Protestantism (generic term)
+anabaptist|1
+(noun)|Anabaptist|Protestant (generic term)
+anabaptist denomination|1
+(noun)|Anabaptist denomination|Protestant denomination (generic term)
+anabas|1
+(noun)|Anabas|genus Anabas|fish genus (generic term)
+anabas testudineus|1
+(noun)|climbing perch|Anabas testudineus|A. testudineus|fish (generic term)
+anabatic|1
+(adj)|katabatic (antonym)
+anabiosis|1
+(noun)|suspended animation (generic term)
+anabiotic|1
+(adj)|suspended animation (related term)
+anabolic|2
+(adj)|assimilation|absorption (related term)
+(adj)|constructive-metabolic (similar term)|energy-storing (similar term)|catabolic (antonym)
+anabolic steroid|1
+(noun)|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+anabolism|1
+(noun)|constructive metabolism|assimilation (generic term)|absorption (generic term)|catabolism (antonym)
+anabrus|1
+(noun)|Anabrus|genus Anabrus|arthropod genus (generic term)
+anabrus simplex|1
+(noun)|mormon cricket|Anabrus simplex|katydid (generic term)
+anacanthini|1
+(noun)|Anacanthini|order Anacanthini|animal order (generic term)
+anacardiaceae|1
+(noun)|Anacardiaceae|family Anacardiaceae|sumac family|dicot family (generic term)|magnoliopsid family (generic term)
+anacardium|1
+(noun)|Anacardium|genus Anacardium|dicot genus (generic term)|magnoliopsid genus (generic term)
+anacardium occidentale|1
+(noun)|cashew|cashew tree|Anacardium occidentale|nut tree (generic term)
+anachronic|1
+(adj)|anachronous|anachronistic|asynchronous (similar term)
+anachronism|3
+(noun)|mistiming|misdating|timekeeping (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|anomaly (generic term)|unusual person (generic term)
+anachronistic|1
+(adj)|anachronic|anachronous|asynchronous (similar term)
+anachronous|1
+(adj)|anachronic|anachronistic|asynchronous (similar term)
+anacin iii|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+anaclinal|1
+(adj)|cataclinal (antonym)
+anaclisis|1
+(noun)|relationship (generic term)
+anaclitic|1
+(adj)|relationship (related term)
+anaclitic depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+anacoluthia|1
+(noun)|anacoluthon|rhetorical device (generic term)
+anacoluthic|1
+(adj)|rhetorical device (related term)
+anacoluthon|1
+(noun)|anacoluthia|rhetorical device (generic term)
+anaconda|1
+(noun)|Eunectes murinus|boa (generic term)
+anacyclus|1
+(noun)|Anacyclus|genus Anacyclus|asterid dicot genus (generic term)
+anacyclus pyrethrum|1
+(noun)|pellitory|pellitory-of-Spain|Anacyclus pyrethrum|herb (generic term)|herbaceous plant (generic term)
+anadama bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+anadenanthera|1
+(noun)|Anadenanthera|genus Anadenanthera|rosid dicot genus (generic term)
+anadenanthera colubrina|1
+(noun)|Anadenanthera colubrina|Piptadenia macrocarpa|shrub (generic term)|bush (generic term)
+anadiplosis|1
+(noun)|reduplication|repetition (generic term)
+anadromous|1
+(adj)|catadromous (antonym)|diadromous (antonym)
+anaemia|2
+(noun)|anemia|symptom (generic term)
+(noun)|anemia|blood disease (generic term)|blood disorder (generic term)
+anaemic|2
+(adj)|anemic|blood disease|blood disorder (related term)
+(adj)|anemic|weak (similar term)
+anaerobe|1
+(noun)|organism (generic term)|being (generic term)
+anaerobic|2
+(adj)|anaerobiotic|aerobic (antonym)
+(adj)|aerobic (antonym)
+anaerobic exercise|1
+(noun)|bodybuilding|muscle building|musclebuilding|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+anaerobiotic|1
+(adj)|anaerobic|aerobic (antonym)
+anaesthesia|1
+(noun)|anesthesia|physiological state (generic term)|physiological condition (generic term)
+anaesthetic|2
+(adj)|anesthetic|insensible (similar term)
+(noun)|anesthetic|anesthetic agent|anaesthetic agent|drug (generic term)
+anaesthetic agent|1
+(noun)|anesthetic|anaesthetic|anesthetic agent|drug (generic term)
+anaesthetise|1
+(verb)|anesthetize|anaesthetize|anesthetise|put to sleep|put under|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+anaesthetised|1
+(adj)|anesthetized|anesthetised|anaesthetized|insensible (similar term)
+anaesthetist|1
+(noun)|anesthesiologist|anesthetist|specialist (generic term)|medical specialist (generic term)
+anaesthetize|1
+(verb)|anesthetize|anesthetise|anaesthetise|put to sleep|put under|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+anaesthetized|1
+(adj)|anesthetized|anesthetised|anaesthetised|insensible (similar term)
+anagallis|1
+(noun)|Anagallis|genus Anagallis|dicot genus (generic term)|magnoliopsid genus (generic term)
+anagallis arvensis|1
+(noun)|scarlet pimpernel|red pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel (generic term)
+anagallis tenella|1
+(noun)|bog pimpernel|Anagallis tenella|pimpernel (generic term)
+anagasta|1
+(noun)|Anagasta|genus Anagasta|arthropod genus (generic term)
+anagasta kuehniella|1
+(noun)|Mediterranean flour moth|Anagasta kuehniella|pyralid (generic term)|pyralid moth (generic term)
+anaglyph|2
+(noun)|stereo (generic term)|stereoscopic picture (generic term)|stereoscopic photograph (generic term)
+(noun)|glyptic art (generic term)|glyptography (generic term)
+anaglyphic|1
+(adj)|anaglyphical|anaglyptic|anaglyptical|stereo|stereoscopic picture|stereoscopic photograph (related term)|glyptic art|glyptography (related term)
+anaglyphical|1
+(adj)|anaglyphic|anaglyptic|anaglyptical|stereo|stereoscopic picture|stereoscopic photograph (related term)|glyptic art|glyptography (related term)
+anaglyphy|1
+(noun)|photography (generic term)
+anaglyptic|1
+(adj)|anaglyphic|anaglyphical|anaglyptical|stereo|stereoscopic picture|stereoscopic photograph (related term)|glyptic art|glyptography (related term)
+anaglyptical|1
+(adj)|anaglyphic|anaglyphical|anaglyptic|stereo|stereoscopic picture|stereoscopic photograph (related term)|glyptic art|glyptography (related term)
+anagnost|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+anagoge|1
+(noun)|interpretation (generic term)|reading (generic term)|version (generic term)
+anagogic|1
+(adj)|anagogical|interpretation|reading|version (related term)
+anagogical|1
+(adj)|anagogic|interpretation|reading|version (related term)
+anagram|2
+(noun)|word (generic term)
+(verb)|anagrammatize|anagrammatise|read (generic term)
+anagrammatic|1
+(adj)|anagrammatical|word (related term)
+anagrammatical|1
+(adj)|anagrammatic|word (related term)
+anagrammatise|1
+(verb)|anagram|anagrammatize|read (generic term)
+anagrammatize|1
+(verb)|anagram|anagrammatise|read (generic term)
+anagrams|1
+(noun)|word game (generic term)
+anagyris|1
+(noun)|Anagyris|genus Anagyris|rosid dicot genus (generic term)
+anagyris foetida|1
+(noun)|bean trefoil|stinking bean trefoil|Anagyris foetida|shrub (generic term)|bush (generic term)
+anaheim|1
+(noun)|Anaheim|city (generic term)|metropolis (generic term)|urban center (generic term)
+anal|2
+(adj)|orifice|opening|porta (related term)
+(adj)|anal retentive|oral (antonym)
+anal intercourse|1
+(noun)|sodomy|buggery|anal sex|perversion (generic term)|sexual perversion (generic term)
+anal personality|1
+(noun)|anal retentive personality|personality (generic term)
+anal phase|1
+(noun)|anal stage|phase (generic term)|stage (generic term)
+anal retentive|1
+(adj)|anal|oral (antonym)
+anal retentive personality|1
+(noun)|anal personality|personality (generic term)
+anal sex|1
+(noun)|sodomy|buggery|anal intercourse|perversion (generic term)|sexual perversion (generic term)
+anal sphincter|1
+(noun)|sphincter ani|musculus sphincter ani|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+anal stage|1
+(noun)|anal phase|phase (generic term)|stage (generic term)
+analbuminemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+analecta|1
+(noun)|analects|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+analects|1
+(noun)|analecta|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+analeptic|2
+(adj)|stimulative (similar term)
+(noun)|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+analgesia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+analgesic|2
+(adj)|analgetic|anodyne|moderating (similar term)
+(noun)|anodyne|painkiller|pain pill|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+analgetic|1
+(adj)|analgesic|anodyne|moderating (similar term)
+analog|2
+(adj)|analogue|linear|digital (antonym)
+(noun)|analogue|parallel|similarity (generic term)
+analog-digital converter|1
+(noun)|digitizer|digitiser|analog-to-digital converter|data converter (generic term)
+analog-to-digital converter|1
+(noun)|digitizer|digitiser|analog-digital converter|data converter (generic term)
+analog clock|1
+(noun)|clock (generic term)
+analog computer|1
+(noun)|analogue computer|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+analog watch|1
+(noun)|watch (generic term)|ticker (generic term)
+analogical|1
+(adj)|figurative (similar term)|nonliteral (similar term)
+analogise|1
+(verb)|analogize|compare (generic term)
+analogist|1
+(noun)|reasoner (generic term)|ratiocinator (generic term)
+analogize|1
+(verb)|analogise|compare (generic term)
+analogous|2
+(adj)|correspondent|similar (similar term)
+(adj)|homologous (antonym)|heterologous (antonym)
+analogue|2
+(adj)|analog|linear|digital (antonym)
+(noun)|analog|parallel|similarity (generic term)
+analogue computer|1
+(noun)|analog computer|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+analogy|3
+(noun)|inference (generic term)|illation (generic term)
+(noun)|comparison (generic term)|comparing (generic term)
+(noun)|doctrine of analogy|religion (generic term)|faith (generic term)|religious belief (generic term)|apophatism (antonym)|cataphatism (antonym)
+analphabet|1
+(noun)|analphabetic|illiterate (generic term)|illiterate person (generic term)|nonreader (generic term)
+analphabetic|4
+(adj)|character set|script (related term)|alphabetic (antonym)
+(adj)|alphabetic (antonym)
+(adj)|unlettered|illiterate (similar term)
+(noun)|analphabet|illiterate (generic term)|illiterate person (generic term)|nonreader (generic term)
+analphabetism|1
+(noun)|illiteracy|inability (generic term)|literacy (antonym)
+analysand|1
+(noun)|patient (generic term)
+analyse|4
+(verb)|analyze|study|examine|canvass|canvas
+(verb)|analyze
+(verb)|analyze|break down|dissect|take apart|synthesize (antonym)
+(verb)|analyze|psychoanalyze|psychoanalyse|treat (generic term)|care for (generic term)
+analyser|1
+(noun)|analyzer|instrument (generic term)
+analysis|6
+(noun)|investigation (generic term)|investigating (generic term)
+(noun)|analytic thinking|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)|synthesis (antonym)
+(noun)|criticism (generic term)|literary criticism (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|calculus (generic term)|infinitesimal calculus (generic term)
+(noun)|psychoanalysis|depth psychology|psychotherapy (generic term)
+analysis of variance|1
+(noun)|ANOVA|multivariate analysis (generic term)
+analysis situs|1
+(noun)|topology|pure mathematics (generic term)
+analyst|2
+(noun)|expert (generic term)
+(noun)|psychoanalyst|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+analytic|4
+(adj)|calculus|infinitesimal calculus (related term)
+(adj)|analytical|synthetic (antonym)
+(adj)|uninflected|isolating (similar term)|synthetic (antonym)
+(adj)|analytical|a priori (related term)|deductive (related term)|logical (related term)|synthetic (antonym)
+analytic geometry|1
+(noun)|analytical geometry|coordinate geometry|geometry (generic term)
+analytic thinking|1
+(noun)|analysis|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)|synthesis (antonym)
+analytical|2
+(adj)|analytic|synthetic (antonym)
+(adj)|analytic|a priori (related term)|deductive (related term)|logical (related term)|synthetic (antonym)
+analytical balance|1
+(noun)|chemical balance|beam balance (generic term)
+analytical cubism|1
+(noun)|cubism (generic term)
+analytical geometry|1
+(noun)|analytic geometry|coordinate geometry|geometry (generic term)
+analytical review|1
+(noun)|review (generic term)|limited review (generic term)
+analyticity|1
+(noun)|property (generic term)
+analyzable|1
+(adj)|decomposable|complex (similar term)
+analyze|4
+(verb)|analyse|study|examine|canvass|canvas
+(verb)|analyse|break down|dissect|take apart|synthesize (antonym)
+(verb)|analyse
+(verb)|analyse|psychoanalyze|psychoanalyse|treat (generic term)|care for (generic term)
+analyzed|1
+(adj)|unanalyzed (antonym)
+analyzer|1
+(noun)|analyser|instrument (generic term)
+anamnesis|2
+(noun)|medical history|medical record|case history (generic term)
+(noun)|remembrance|recollection|memory (generic term)|retention (generic term)|retentiveness (generic term)|retentivity (generic term)
+anamnestic|1
+(adj)|memory|retention|retentiveness|retentivity (related term)
+anamnestic reaction|1
+(noun)|anamnestic response|immune response (generic term)|immune reaction (generic term)|immunologic response (generic term)
+anamnestic response|1
+(noun)|anamnestic reaction|immune response (generic term)|immune reaction (generic term)|immunologic response (generic term)
+anamorphic|2
+(adj)|evolution|organic evolution|phylogeny|phylogenesis (related term)
+(adj)|copy (related term)
+anamorphism|3
+(noun)|anamorphosis|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+(noun)|metamorphism (generic term)|katamorphism (antonym)
+(noun)|anamorphosis|copy (generic term)
+anamorphosis|2
+(noun)|anamorphism|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+(noun)|anamorphism|copy (generic term)
+ananas|2
+(noun)|Ananas|genus Ananas|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|pineapple|edible fruit (generic term)
+ananas comosus|1
+(noun)|pineapple|pineapple plant|Ananas comosus|herb (generic term)|herbaceous plant (generic term)
+ananias|1
+(noun)|Ananias|liar (generic term)|prevaricator (generic term)
+anapaest|1
+(noun)|anapest|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+anapaestic|1
+(adj)|anapestic|rhetorical (similar term)
+anapest|1
+(noun)|anapaest|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+anapestic|1
+(adj)|anapaestic|rhetorical (similar term)
+anaphalis|1
+(noun)|Anaphalis|genus Anaphalis|asterid dicot genus (generic term)
+anaphalis margaritacea|1
+(noun)|pearly everlasting|cottonweed|Anaphalis margaritacea|everlasting (generic term)|everlasting flower (generic term)
+anaphase|1
+(noun)|phase of cell division (generic term)
+anaphasic|1
+(adj)|phase of cell division (related term)
+anaphor|1
+(noun)|word (generic term)
+anaphora|2
+(noun)|repetition (generic term)
+(noun)|epanaphora|repetition (generic term)
+anaphoric|1
+(adj)|repetition (related term)
+anaphoric pronoun|1
+(noun)|pronoun (generic term)
+anaphoric relation|1
+(noun)|grammatical relation (generic term)
+anaphrodisia|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)|aphrodisia (antonym)
+anaphrodisiac|1
+(adj)|aphrodisiac (antonym)
+anaphylactic|1
+(adj)|hypersensitivity reaction (related term)
+anaphylactic shock|1
+(noun)|anaphylaxis (generic term)
+anaphylaxis|1
+(noun)|hypersensitivity reaction (generic term)
+anaplasia|1
+(noun)|dysplasia (generic term)
+anaplasmosis|1
+(noun)|animal disease (generic term)
+anaplastic|1
+(adj)|dysplasia (related term)
+anaplasty|1
+(noun)|plastic surgery|reconstructive surgery|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+anaprox|1
+(noun)|naproxen sodium|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+anapsid|1
+(noun)|anapsid reptile|reptile (generic term)|reptilian (generic term)|diapsid (antonym)
+anapsid reptile|1
+(noun)|anapsid|reptile (generic term)|reptilian (generic term)|diapsid (antonym)
+anapsida|1
+(noun)|Anapsida|subclass Anapsida|class (generic term)
+anapurna|2
+(noun)|Parvati|Anapurna|Annapurna|Hindu deity (generic term)
+(noun)|Annapurna|Anapurna|mountain peak (generic term)
+anarchic|1
+(adj)|anarchical|lawless|uncontrolled (similar term)
+anarchical|1
+(adj)|anarchic|lawless|uncontrolled (similar term)
+anarchism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+anarchist|1
+(noun)|nihilist|syndicalist|radical (generic term)
+anarchistic|1
+(adj)|political orientation|ideology|political theory (related term)
+anarchy|1
+(noun)|lawlessness|disorder (generic term)
+anarhichadidae|1
+(noun)|Anarhichadidae|family Anarhichadidae|fish family (generic term)
+anarhichas|1
+(noun)|Anarhichas|genus Anarhichas|fish genus (generic term)
+anarthria|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+anas|1
+(noun)|Anas|genus Anas|bird genus (generic term)
+anas acuta|1
+(noun)|pintail|pin-tailed duck|Anas acuta|duck (generic term)
+anas americana|1
+(noun)|American widgeon|baldpate|Anas americana|widgeon (generic term)|wigeon (generic term)|Anas penelope (generic term)
+anas clypeata|1
+(noun)|shoveler|shoveller|broadbill|Anas clypeata|duck (generic term)
+anas crecca|1
+(noun)|greenwing|green-winged teal|Anas crecca|teal (generic term)
+anas discors|1
+(noun)|bluewing|blue-winged teal|Anas discors|teal (generic term)
+anas penelope|1
+(noun)|widgeon|wigeon|Anas penelope|duck (generic term)
+anas platyrhynchos|1
+(noun)|mallard|Anas platyrhynchos|duck (generic term)
+anas querquedula|1
+(noun)|garganey|Anas querquedula|teal (generic term)
+anas rubripes|1
+(noun)|black duck|Anas rubripes|duck (generic term)
+anasa|1
+(noun)|Anasa|genus Anasa|arthropod genus (generic term)
+anasa tristis|1
+(noun)|squash bug|Anasa tristis|coreid bug (generic term)|coreid (generic term)
+anasarca|1
+(noun)|edema (generic term)|oedema (generic term)|hydrops (generic term)|dropsy (generic term)
+anasarcous|1
+(adj)|edema|oedema|hydrops|dropsy (related term)
+anasazi|1
+(noun)|Anasazi|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+anaspid|1
+(noun)|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+anaspida|1
+(noun)|Anaspida|order Anaspida|animal order (generic term)
+anastalsis|1
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)|peristalsis (antonym)
+anastatica|1
+(noun)|Anastatica|genus Anastatica|dilleniid dicot genus (generic term)
+anastatica hierochuntica|1
+(noun)|rose of Jericho|resurrection plant|Anastatica hierochuntica|crucifer (generic term)|cruciferous plant (generic term)
+anastigmat|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+anastigmatic|2
+(adj)|stigmatic|condition|status (related term)|lens|lense|lens system (related term)
+(adj)|stigmatic|astigmatic (antonym)
+anastigmatic lens|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+anastomose|2
+(verb)|inosculate|join (generic term)|conjoin (generic term)
+(verb)|inosculate|join (generic term)|bring together (generic term)
+anastomosis|1
+(noun)|inosculation|junction (generic term)|conjunction (generic term)|conjugation (generic term)|colligation (generic term)
+anastomotic|1
+(adj)|junction|conjunction|conjugation|colligation (related term)
+anastomotic vein|1
+(noun)|vena anastomotica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+anastomus|1
+(noun)|Anastomus|genus Anastomus|bird genus (generic term)
+anastrophe|1
+(noun)|inversion|rhetorical device (generic term)
+anastylosis|1
+(noun)|reassembly (generic term)|refabrication (generic term)
+anathema|2
+(noun)|bete noire|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|execration (generic term)|condemnation (generic term)|curse (generic term)
+anathematisation|1
+(noun)|anathematization|banishment (generic term)|proscription (generic term)
+anathematise|1
+(verb)|accurse|execrate|anathemize|comminate|anathemise|anathematize|deplore (generic term)
+anathematization|1
+(noun)|anathematisation|banishment (generic term)|proscription (generic term)
+anathematize|1
+(verb)|accurse|execrate|anathemize|comminate|anathemise|anathematise|deplore (generic term)
+anathemise|2
+(verb)|curse|beshrew|damn|bedamn|anathemize|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+(verb)|accurse|execrate|anathemize|comminate|anathematize|anathematise|deplore (generic term)
+anathemize|2
+(verb)|curse|beshrew|damn|bedamn|anathemise|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+(verb)|accurse|execrate|comminate|anathemise|anathematize|anathematise|deplore (generic term)
+anatidae|1
+(noun)|Anatidae|family Anatidae|bird family (generic term)
+anatole france|1
+(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer (generic term)|author (generic term)
+anatoli karpov|1
+(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master (generic term)
+anatoli yevgenevich karpov|1
+(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master (generic term)
+anatolia|1
+(noun)|Asia Minor|Anatolia|peninsula (generic term)
+anatolian|1
+(noun)|Anatolian|Anatolian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+anatolian language|1
+(noun)|Anatolian|Anatolian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+anatomic|2
+(adj)|anatomical|body|organic structure|physical structure (related term)
+(adj)|anatomical|morphology (related term)
+anatomical|3
+(adj)|anatomic|body|organic structure|physical structure (related term)
+(adj)|anatomic|morphology (related term)
+(noun)|anatomical reference|saying (generic term)|expression (generic term)|locution (generic term)
+anatomical reference|1
+(noun)|anatomical|saying (generic term)|expression (generic term)|locution (generic term)
+anatomical sphincter|1
+(noun)|sphincter|sphincter muscle|muscle (generic term)|musculus (generic term)
+anatomical structure|1
+(noun)|structure|complex body part|bodily structure|body structure|body part (generic term)
+anatomise|1
+(verb)|anatomize|dissect (generic term)
+anatomist|1
+(noun)|expert (generic term)
+anatomize|2
+(verb)|anatomise|dissect (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+anatomy|3
+(noun)|general anatomy|morphology (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|physique|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|analysis (generic term)
+anatotitan|1
+(noun)|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+anatoxin|1
+(noun)|toxoid|bacterial toxin (generic term)|antigen (generic term)
+anatropous|1
+(adj)|inverted|amphitropous (antonym)
+anatropous ovule|1
+(noun)|ovule (generic term)
+anaxagoras|1
+(noun)|Anaxagoras|philosopher (generic term)
+anaximander|1
+(noun)|Anaximander|philosopher (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+anaximenes|1
+(noun)|Anaximenes|philosopher (generic term)
+ancestor|1
+(noun)|ascendant|ascendent|antecedent|root|relative (generic term)|relation (generic term)|descendant (antonym)
+ancestor worship|1
+(noun)|worship (generic term)
+ancestral|2
+(adj)|hereditary|patrimonial|transmissible|inheritable (similar term)|heritable (similar term)
+(adj)|relative|relation (related term)
+ancestress|1
+(noun)|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+ancestry|2
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|lineage|derivation|filiation|inheritance (generic term)|hereditary pattern (generic term)
+anchor|5
+(noun)|ground tackle|hook (generic term)|claw (generic term)
+(noun)|mainstay|keystone|backbone|linchpin|lynchpin|support (generic term)
+(noun)|anchorman|anchorperson|television reporter (generic term)|television newscaster (generic term)|TV reporter (generic term)|TV newsman (generic term)
+(verb)|ground|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|cast anchor|drop anchor|fasten (generic term)|fix (generic term)|secure (generic term)
+anchor chain|1
+(noun)|chain (generic term)
+anchor light|1
+(noun)|riding light|riding lamp|light (generic term)|light source (generic term)
+anchor ring|1
+(noun)|ring|halo|annulus|anulus|doughnut|toroid (generic term)
+anchorage|5
+(noun)|condition (generic term)|status (generic term)
+(noun)|fee (generic term)
+(noun)|Anchorage|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|anchorage ground|area (generic term)|country (generic term)
+(noun)|arrival (generic term)
+anchorage ground|1
+(noun)|anchorage|area (generic term)|country (generic term)
+anchorite|1
+(noun)|hermit|eremite (generic term)
+anchoritic|1
+(adj)|eremitic|eremitical|hermitic|hermitical|unworldly (similar term)
+anchorman|1
+(noun)|anchor|anchorperson|television reporter (generic term)|television newscaster (generic term)|TV reporter (generic term)|TV newsman (generic term)
+anchorperson|1
+(noun)|anchor|anchorman|television reporter (generic term)|television newscaster (generic term)|TV reporter (generic term)|TV newsman (generic term)
+anchovy|2
+(noun)|fish (generic term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+anchovy butter|1
+(noun)|spread (generic term)|paste (generic term)
+anchovy dressing|1
+(noun)|dressing (generic term)|salad dressing (generic term)
+anchovy paste|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+anchovy pear|2
+(noun)|anchovy pear tree|Grias cauliflora|fruit tree (generic term)
+(noun)|river pear|edible fruit (generic term)
+anchovy pear tree|1
+(noun)|anchovy pear|Grias cauliflora|fruit tree (generic term)
+anchovy pizza|1
+(noun)|pizza (generic term)|pizza pie (generic term)
+anchovy sauce|1
+(noun)|sauce (generic term)
+anchusa|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+anchusa capensis|1
+(noun)|cape forget-me-not|Anchusa capensis|anchusa (generic term)
+anchusa officinalis|1
+(noun)|bugloss|alkanet|Anchusa officinalis|anchusa (generic term)
+anchusa riparia|1
+(noun)|cape forget-me-not|Anchusa riparia|anchusa (generic term)
+anchylosis|1
+(noun)|ankylosis|pathology (generic term)
+ancien regime|1
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+ancient|4
+(adj)|past (similar term)
+(adj)|old (similar term)
+(noun)|antediluvian|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+ancient greek|1
+(noun)|Ancient Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+ancient history|2
+(noun)|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+(noun)|common knowledge (generic term)
+ancient pine|1
+(noun)|Pinus longaeva|pine (generic term)|pine tree (generic term)|true pine (generic term)
+ancientness|1
+(noun)|antiquity|oldness (generic term)
+ancients|1
+(noun)|people (generic term)
+ancillary|1
+(adj)|accessory|adjunct|adjuvant|appurtenant|auxiliary|subsidiary|supportive (similar term)
+ancistrodon|1
+(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus (generic term)
+ancohuma|1
+(noun)|Ancohuma|mountain peak (generic term)
+anconeous muscle|1
+(noun)|musculus anconeus|skeletal muscle (generic term)|striated muscle (generic term)
+ancylidae|1
+(noun)|Ancylidae|family Ancylidae|mollusk family (generic term)
+ancylose|2
+(verb)|ankylose|join (generic term)|bring together (generic term)
+(verb)|ankylose|grow (generic term)
+ancylostomatidae|1
+(noun)|Ancylostomatidae|family Ancylostomatidae|worm family (generic term)
+ancylus|1
+(noun)|Ancylus|genus Ancylus|mollusk genus (generic term)
+ancylus fluviatilis|1
+(noun)|river limpet|freshwater limpet|Ancylus fluviatilis|gastropod (generic term)|univalve (generic term)
+and circuit|1
+(noun)|AND circuit|AND gate|gate (generic term)|logic gate (generic term)
+and gate|1
+(noun)|AND circuit|AND gate|gate (generic term)|logic gate (generic term)
+and how|1
+(adv)|you bet|you said it
+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 (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+andalusia|1
+(noun)|Andalusia|Andalucia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+andalusian|1
+(adj)|Andalusian|geographical area|geographic area|geographical region|geographic region (related term)
+andaman marble|1
+(noun)|marblewood|marble-wood|Andaman marble|Diospyros kurzii|tree (generic term)
+andaman redwood|1
+(noun)|amboyna|Andaman redwood|rosewood (generic term)
+andaman sea|1
+(noun)|Andaman Sea|bay (generic term)|embayment (generic term)
+andante|2
+(adj)|slow (similar term)
+(noun)|tempo (generic term)|pacing (generic term)
+andantino|1
+(adj)|fast (similar term)
+andean|1
+(adj)|Andean|range|mountain range|range of mountains|chain|mountain chain|chain of mountains (related term)
+andean condor|1
+(noun)|Andean condor|Vultur gryphus|condor (generic term)
+andelmin|1
+(noun)|angelim|tree (generic term)
+anders celsius|1
+(noun)|Celsius|Anders Celsius|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+andersen|1
+(noun)|Andersen|Hans Christian Andersen|writer (generic term)|author (generic term)
+anderson|5
+(noun)|Anderson|Sherwood Anderson|writer (generic term)|author (generic term)
+(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist (generic term)
+(noun)|Anderson|Maxwell Anderson|dramatist (generic term)|playwright (generic term)
+(noun)|Anderson|Marian Anderson|contralto (generic term)
+(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist (generic term)
+andes|1
+(noun)|Andes|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+andesite|1
+(noun)|igneous rock (generic term)
+andhra pradesh|1
+(noun)|Andhra Pradesh|state (generic term)|province (generic term)
+andira|1
+(noun)|Andira|genus Andira|rosid dicot genus (generic term)
+andira inermis|1
+(noun)|cabbage bark|cabbage-bark tree|cabbage tree|Andira inermis|angelim (generic term)|andelmin (generic term)
+andiron|1
+(noun)|firedog|dog|dog-iron|support (generic term)
+andorra|1
+(noun)|Andorra|Principality of Andorra|European country (generic term)|European nation (generic term)
+andorran|2
+(adj)|Andorran|European country|European nation (related term)
+(noun)|Andorran|European (generic term)
+andosite|1
+(noun)|igneous rock (generic term)
+andradite|1
+(noun)|garnet (generic term)
+andre derain|1
+(noun)|Derain|Andre Derain|painter (generic term)
+andre eglevsky|1
+(noun)|Eglevsky|Andre Eglevsky|ballet dancer (generic term)
+andre gide|1
+(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+andre le notre|1
+(noun)|Le Notre|Andre Le Notre|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+andre maginot|1
+(noun)|Maginot|Andre Maginot|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+andre malraux|1
+(noun)|Malraux|Andre Malraux|writer (generic term)|author (generic term)
+andre markoff|1
+(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician (generic term)
+andre maurois|1
+(noun)|Maurois|Andre Maurois|Emile Herzog|writer (generic term)|author (generic term)
+andre paul guillaume gide|1
+(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+andre weil|1
+(noun)|Weil|Andre Weil|mathematician (generic term)
+andrea guarneri|1
+(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker (generic term)
+andrea mantegna|1
+(noun)|Mantegna|Andrea Mantegna|painter (generic term)|engraver (generic term)
+andrea palladio|1
+(noun)|Palladio|Andrea Palladio|architect (generic term)|designer (generic term)
+andreaea|1
+(noun)|Andreaea|genus Andreaea|moss genus (generic term)
+andreaeales|1
+(noun)|Andreaeales|order Andreaeales|plant order (generic term)
+andreas vesalius|1
+(noun)|Vesalius|Andreas Vesalius|anatomist (generic term)
+andrei andreyevich gromyko|1
+(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador (generic term)|embassador (generic term)
+andrei arsenevich tarkovsky|1
+(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+andrei dimitrievich sakharov|1
+(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist (generic term)
+andrei gromyko|1
+(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador (generic term)|embassador (generic term)
+andrei markov|1
+(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician (generic term)
+andrei sakharov|1
+(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist (generic term)
+andrei tarkovsky|1
+(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+andrei voznesenski|1
+(noun)|Voznesenski|Andrei Voznesenski|poet (generic term)
+andrena|1
+(noun)|andrenid|mining bee|bee (generic term)
+andrenid|1
+(noun)|andrena|mining bee|bee (generic term)
+andrenidae|1
+(noun)|Andrenidae|family Andrenidae|arthropod family (generic term)
+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 (generic term)
+andres segovia|1
+(noun)|Segovia|Andres Segovia|guitarist (generic term)|guitar player (generic term)|composer (generic term)
+andrew|1
+(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle (generic term)|saint (generic term)
+andrew's clintonia|1
+(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia (generic term)|Clinton's lily (generic term)
+andrew carnegie|1
+(noun)|Carnegie|Andrew Carnegie|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+andrew d. white|1
+(noun)|White|Andrew D. White|Andrew Dickson White|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+andrew dickson white|1
+(noun)|White|Andrew D. White|Andrew Dickson White|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+andrew fielding huxley|1
+(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist (generic term)
+andrew huxley|1
+(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist (generic term)
+andrew jackson|1
+(noun)|Jackson|Andrew Jackson|Old Hickory|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+andrew jackson downing|1
+(noun)|Downing|Andrew Jackson Downing|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+andrew johnson|1
+(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+andrew lloyd webber|1
+(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer (generic term)
+andrew marvell|1
+(noun)|Marvell|Andrew Marvell|poet (generic term)
+andrew mellon|1
+(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+andrew w. mellon|1
+(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+andrew william mellon|1
+(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+andrew wyeth|1
+(noun)|Wyeth|Andrew Wyeth|painter (generic term)
+andrews|1
+(noun)|Andrews|Roy Chapman Andrews|naturalist (generic term)|natural scientist (generic term)
+andricus|1
+(noun)|Andricus|genus Andricus|arthropod genus (generic term)
+andrija mohorovicic|1
+(noun)|Mohorovicic|Andrija Mohorovicic|geophysicist (generic term)
+androecium|1
+(noun)|gametoecium (generic term)
+androgen|1
+(noun)|androgenic hormone|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+androgenesis|1
+(noun)|androgeny|parthenogenesis (generic term)|parthenogeny (generic term)|virgin birth (generic term)
+androgenetic|1
+(adj)|androgenous|parthenogenesis|parthenogeny|virgin birth (related term)
+androgenic|1
+(adj)|steroid hormone|steroid|sex hormone (related term)
+androgenic hormone|1
+(noun)|androgen|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+androgenous|1
+(adj)|androgenetic|parthenogenesis|parthenogeny|virgin birth (related term)
+androgeny|1
+(noun)|androgenesis|parthenogenesis (generic term)|parthenogeny (generic term)|virgin birth (generic term)
+androglossia|1
+(noun)|voice (generic term)
+androgyne|1
+(noun)|hermaphrodite|intersex|gynandromorph|epicine|epicine person|bisexual (generic term)|bisexual person (generic term)
+androgynous|2
+(adj)|bisexual|bisexual person (related term)
+(adj)|bisexual (similar term)|epicene (similar term)|gynandromorphic (similar term)|gynandromorphous (similar term)|hermaphroditic (similar term)|hermaphrodite (similar term)|intersexual (similar term)|pseudohermaphroditic (similar term)|pseudohermaphrodite (similar term)|unisex (similar term)|male (antonym)|female (antonym)
+androgyny|1
+(noun)|hermaphroditism|bisexuality|sex (generic term)|gender (generic term)|sexuality (generic term)
+android|1
+(noun)|humanoid|mechanical man|automaton (generic term)|robot (generic term)|golem (generic term)
+andromeda|4
+(noun)|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub (generic term)|bush (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|Andromeda|mythical being (generic term)
+(noun)|Andromeda|constellation (generic term)
+andromeda galaxy|1
+(noun)|Andromeda galaxy|spiral galaxy (generic term)|spiral nebula (generic term)
+andromeda glaucophylla|1
+(noun)|bog rosemary|moorwort|Andromeda glaucophylla|andromeda (generic term)
+andromeda polifolia|1
+(noun)|marsh andromeda|common bog rosemary|Andromeda polifolia|andromeda (generic term)
+androphobia|1
+(noun)|social phobia (generic term)
+andropogon|1
+(noun)|Andropogon|genus Andropogon|monocot genus (generic term)|liliopsid genus (generic term)
+andropogon furcatus|1
+(noun)|bluestem|blue stem|Andropogon furcatus|Andropogon gerardii|grass (generic term)
+andropogon gerardii|1
+(noun)|bluestem|blue stem|Andropogon furcatus|Andropogon gerardii|grass (generic term)
+andropogon scoparius|1
+(noun)|broom beard grass|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass (generic term)
+andropogon virginicus|1
+(noun)|broom sedge|Andropogon virginicus|broom grass (generic term)
+androsterone|1
+(noun)|androgen (generic term)|androgenic hormone (generic term)|ketosteroid (generic term)
+andryala|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+andrzej wajda|1
+(noun)|Wajda|Andrzej Wajda|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+andvari|1
+(noun)|Andvari|gnome (generic term)|dwarf (generic term)
+andy warhol|1
+(noun)|Warhol|Andy Warhol|painter (generic term)
+ane|1
+(adj)|one|1|i|cardinal (similar term)
+anecdotal|2
+(adj)|report|account (related term)
+(adj)|anecdotic|anecdotical|communicative (similar term)|communicatory (similar term)
+anecdote|1
+(noun)|report (generic term)|account (generic term)
+anecdotic|1
+(adj)|anecdotal|anecdotical|communicative (similar term)|communicatory (similar term)
+anecdotical|1
+(adj)|anecdotic|anecdotal|communicative (similar term)|communicatory (similar term)
+anecdotist|1
+(noun)|raconteur|narrator (generic term)|storyteller (generic term)|teller (generic term)
+anechoic|1
+(adj)|unreverberant (similar term)|nonresonant (similar term)
+anechoic chamber|1
+(noun)|room (generic term)
+aneides|1
+(noun)|Aneides|genus Aneides|amphibian genus (generic term)
+aneides lugubris|1
+(noun)|arboreal salamander|Aneides lugubris|climbing salamander (generic term)
+anele|1
+(verb)|anoint|inunct|oil|embrocate|bless (generic term)
+anemia|3
+(noun)|anaemia|blood disease (generic term)|blood disorder (generic term)
+(noun)|anaemia|symptom (generic term)
+(noun)|Anemia|genus Anemia|fern genus (generic term)
+anemia adiantifolia|1
+(noun)|pine fern|Anemia adiantifolia|fern (generic term)
+anemic|2
+(adj)|anaemic|weak (similar term)
+(adj)|anaemic|blood disease|blood disorder (related term)
+anemic anoxia|1
+(noun)|anoxia (generic term)
+anemic hypoxia|1
+(noun)|hypoxia (generic term)
+anemographic|1
+(adj)|measurement|measuring|measure|mensuration (related term)
+anemography|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+anemometer|1
+(noun)|wind gauge|wind gage|gauge (generic term)|gage (generic term)
+anemometric|1
+(adj)|anemometrical|measurement|measuring|measure|mensuration (related term)
+anemometrical|1
+(adj)|anemometric|measurement|measuring|measure|mensuration (related term)
+anemometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+anemone|2
+(noun)|windflower|flower (generic term)
+(noun)|sea anemone|anthozoan (generic term)|actinozoan (generic term)
+anemone canadensis|1
+(noun)|Canada anemone|Anemone Canadensis|anemone (generic term)|windflower (generic term)
+anemone cylindrica|1
+(noun)|thimbleweed|Anemone cylindrica|anemone (generic term)|windflower (generic term)
+anemone fish|1
+(noun)|damselfish (generic term)|demoiselle (generic term)
+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 (generic term)|pasque flower (generic term)
+anemone nemorosa|1
+(noun)|wood anemone|Anemone nemorosa|anemone (generic term)|windflower (generic term)
+anemone occidentalis|1
+(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower (generic term)|pasque flower (generic term)
+anemone pulsatilla|1
+(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower (generic term)|pasque flower (generic term)
+anemone quinquefolia|1
+(noun)|wood anemone|snowdrop|Anemone quinquefolia|anemone (generic term)|windflower (generic term)
+anemone riparia|1
+(noun)|longheaded thimbleweed|Anemone riparia|thimbleweed (generic term)|Anemone cylindrica (generic term)
+anemone sylvestris|1
+(noun)|snowdrop anemone|snowdrop windflower|Anemone sylvestris|anemone (generic term)|windflower (generic term)
+anemone tetonensis|1
+(noun)|Alpine anemone|mountain anemone|Anemone tetonensis|anemone (generic term)|windflower (generic term)
+anemone virginiana|1
+(noun)|Virginia thimbleweed|Anemone virginiana|thimbleweed (generic term)|Anemone cylindrica (generic term)
+anemonella|1
+(noun)|Anemonella|genus Anemonella|magnoliid dicot genus (generic term)
+anemonella thalictroides|1
+(noun)|rue anemone|Anemonella thalictroides|flower (generic term)
+anemophilous|1
+(adj)|entomophilous (antonym)
+anemopsis|1
+(noun)|Anemopsis|genus Anemopsis|dicot genus (generic term)|magnoliopsid genus (generic term)
+anemopsis californica|1
+(noun)|yerba mansa|Anemopsis californica|herb (generic term)|herbaceous plant (generic term)
+anencephalia|1
+(noun)|anencephaly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+anencephalic|1
+(adj)|anencephalous|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+anencephalous|1
+(adj)|anencephalic|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+anencephaly|1
+(noun)|anencephalia|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+anergy|2
+(noun)|immunological disorder (generic term)
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+aneroid|2
+(adj)|barometer (related term)
+(noun)|aneroid barometer|barometer (generic term)
+aneroid barometer|1
+(noun)|aneroid|barometer (generic term)
+anesthesia|1
+(noun)|anaesthesia|physiological state (generic term)|physiological condition (generic term)
+anesthesiologist|1
+(noun)|anesthetist|anaesthetist|specialist (generic term)|medical specialist (generic term)
+anesthesiology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+anesthetic|2
+(adj)|anaesthetic|insensible (similar term)
+(noun)|anaesthetic|anesthetic agent|anaesthetic agent|drug (generic term)
+anesthetic agent|1
+(noun)|anesthetic|anaesthetic|anaesthetic agent|drug (generic term)
+anesthetise|1
+(verb)|anesthetize|anaesthetize|anaesthetise|put to sleep|put under|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+anesthetised|1
+(adj)|anesthetized|anaesthetized|anaesthetised|insensible (similar term)
+anesthetist|1
+(noun)|anesthesiologist|anaesthetist|specialist (generic term)|medical specialist (generic term)
+anesthetize|1
+(verb)|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+anesthetized|1
+(adj)|anesthetised|anaesthetized|anaesthetised|insensible (similar term)
+anesthyl|1
+(noun)|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+anestric|1
+(adj)|anestrous|anoestrous|physiological state|physiological condition (related term)
+anestrous|2
+(adj)|anestric|anoestrous|physiological state|physiological condition (related term)
+(adj)|diestrous (similar term)|dioestrous (similar term)|diestrual (similar term)|dioestrual (similar term)|estrous (antonym)
+anestrum|1
+(noun)|anestrus|anoestrus|anoestrum|physiological state (generic term)|physiological condition (generic term)|estrus (antonym)
+anestrus|1
+(noun)|anestrum|anoestrus|anoestrum|physiological state (generic term)|physiological condition (generic term)|estrus (antonym)
+anethum|1
+(noun)|Anethum|genus Anethum|rosid dicot genus (generic term)
+anethum graveolens|1
+(noun)|dill|Anethum graveolens|herb (generic term)|herbaceous plant (generic term)
+aneuploid|1
+(adj)|abnormality|abnormalcy|abnormal condition (related term)
+aneuploidy|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+aneurin|1
+(noun)|vitamin B1|thiamine|thiamin|antiberiberi factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+aneurism|1
+(noun)|aneurysm|cardiovascular disease (generic term)
+aneurismal|1
+(adj)|aneurysmal|aneurysmatic|aneurismatic|cardiovascular disease (related term)
+aneurismatic|1
+(adj)|aneurysmal|aneurismal|aneurysmatic|cardiovascular disease (related term)
+aneurysm|1
+(noun)|aneurism|cardiovascular disease (generic term)
+aneurysmal|1
+(adj)|aneurismal|aneurysmatic|aneurismatic|cardiovascular disease (related term)
+aneurysmatic|1
+(adj)|aneurysmal|aneurismal|aneurismatic|cardiovascular disease (related term)
+anew|1
+(adv)|afresh
+anfractuous|1
+(adj)|crooked (similar term)
+ang|1
+(noun)|Air National Guard|ANG|National Guard (generic term)|home reserve (generic term)
+angara|1
+(noun)|Angara|Angara River|Tunguska|Upper Tunguska|river (generic term)
+angara river|1
+(noun)|Angara|Angara River|Tunguska|Upper Tunguska|river (generic term)
+angas|1
+(noun)|Angas|West Chadic (generic term)
+angel|4
+(noun)|spiritual being (generic term)|supernatural being (generic term)
+(noun)|saint|holy man|holy person|good person (generic term)
+(noun)|backer|patron (generic term)|sponsor (generic term)|supporter (generic term)
+(noun)|Angel|Angel Falls|waterfall (generic term)|falls (generic term)
+angel's trumpet|2
+(noun)|Brugmansia suaveolens|Datura suaveolens|shrub (generic term)|bush (generic term)
+(noun)|maikoa|Brugmansia arborea|Datura arborea|shrub (generic term)|bush (generic term)
+angel-wing begonia|1
+(noun)|Begonia cocchinea|begonia (generic term)
+angel cake|1
+(noun)|angel food cake|sponge cake (generic term)
+angel dust|1
+(noun)|phencyclidine|phencyclidine hydrochloride|PCP|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+angel falls|1
+(noun)|Angel|Angel Falls|waterfall (generic term)|falls (generic term)
+angel food cake|1
+(noun)|angel cake|sponge cake (generic term)
+angel shark|1
+(noun)|angelfish|Squatina squatina|monkfish|shark (generic term)
+angelfish|3
+(noun)|butterfly fish (generic term)
+(noun)|spadefish|Chaetodipterus faber|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|angel shark|Squatina squatina|monkfish|shark (generic term)
+angelic|3
+(adj)|angelical|beatific|saintlike|saintly|sainted|good (similar term)
+(adj)|angelical|spiritual being|supernatural being (related term)
+(adj)|angelical|cherubic|seraphic|sweet|lovable (similar term)|loveable (similar term)
+angelica|3
+(noun)|angelique|herb (generic term)|herbaceous plant (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|herb (generic term)
+angelica archangelica|1
+(noun)|garden angelica|archangel|Angelica Archangelica|angelica (generic term)|angelique (generic term)
+angelica sylvestris|1
+(noun)|wild angelica|Angelica sylvestris|angelica (generic term)|angelique (generic term)
+angelical|3
+(adj)|angelic|spiritual being|supernatural being (related term)
+(adj)|angelic|cherubic|seraphic|sweet|lovable (similar term)|loveable (similar term)
+(adj)|angelic|beatific|saintlike|saintly|sainted|good (similar term)
+angelim|1
+(noun)|andelmin|tree (generic term)
+angelique|1
+(noun)|angelica|herb (generic term)|herbaceous plant (generic term)
+angelo correr|1
+(noun)|Gregory|Gregory XII|Angelo Correr|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+angelo guiseppe roncalli|1
+(noun)|John XXIII|Angelo Guiseppe Roncalli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+angelology|1
+(noun)|theology (generic term)|divinity (generic term)
+angelus|2
+(noun)|angelus bell|bell (generic term)|toll (generic term)
+(noun)|Angelus|prayer (generic term)
+angelus bell|1
+(noun)|angelus|bell (generic term)|toll (generic term)
+anger|5
+(noun)|choler|ire|emotion (generic term)
+(noun)|angriness|emotional arousal (generic term)
+(noun)|wrath|ire|ira|mortal sin (generic term)|deadly sin (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|see red|feel (generic term)|experience (generic term)
+angered|1
+(adj)|enraged|furious|infuriated|maddened|angry (similar term)
+angevin|1
+(noun)|Angevin|Angevine|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+angevine|1
+(noun)|Angevin|Angevine|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+angiitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)|angiopathy (generic term)
+angina|2
+(noun)|inflammatory disease (generic term)
+(noun)|angina pectoris|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+angina pectoris|1
+(noun)|angina|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+anginal|1
+(adj)|anginose|anginous|heart disease|heart condition|cardiopathy (related term)
+anginose|1
+(adj)|anginal|anginous|heart disease|heart condition|cardiopathy (related term)
+anginous|1
+(adj)|anginal|anginose|heart disease|heart condition|cardiopathy (related term)
+angiocardiogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+angiocarp|1
+(noun)|angiosperm (generic term)|flowering plant (generic term)
+angiocarpic|1
+(adj)|angiocarpous|angiosperm|flowering plant (related term)
+angiocarpous|1
+(adj)|angiocarpic|angiosperm|flowering plant (related term)
+angiogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+angiogenesis inhibitor|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+angiogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+angiography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+angiohemophilia|1
+(noun)|von Willebrand's disease|vascular hemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+angiologist|1
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+angiology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+angioma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)|angiopathy (generic term)
+angiomatous|1
+(adj)|tumor|tumour|neoplasm|angiopathy (related term)
+angiopathy|1
+(noun)|pathology (generic term)
+angioplasty|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+angiopteris|1
+(noun)|giant fern|Angiopteris evecta|tree fern (generic term)
+angiopteris evecta|1
+(noun)|angiopteris|giant fern|Angiopteris evecta|tree fern (generic term)
+angiosarcoma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+angioscope|1
+(noun)|microscope (generic term)
+angiosperm|1
+(noun)|flowering plant|spermatophyte (generic term)|phanerogam (generic term)|seed plant (generic term)
+angiospermae|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+angiospermous|1
+(adj)|spermatophyte|phanerogam|seed plant (related term)
+angiospermous tree|1
+(noun)|flowering tree|tree (generic term)
+angiospermous yellowwood|1
+(noun)|yellowwood (generic term)|yellowwood tree (generic term)
+angiotelectasia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+angiotensin|1
+(noun)|angiotonin|Hypertensin|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+angiotensin-converting enzyme inhibitor|1
+(noun)|ACE inhibitor|antihypertensive (generic term)|antihypertensive drug (generic term)
+angiotensin converting enzyme|1
+(noun)|protease (generic term)|peptidase (generic term)|proteinase (generic term)|proteolytic enzyme (generic term)
+angiotensin i|1
+(noun)|angiotensin I|angiotensin (generic term)|angiotonin (generic term)|Hypertensin (generic term)
+angiotensin ii|1
+(noun)|angiotensin II|angiotensin (generic term)|angiotonin (generic term)|Hypertensin (generic term)
+angiotonin|1
+(noun)|angiotensin|Hypertensin|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+angle|8
+(noun)|space (generic term)
+(noun)|slant|point of view (generic term)|viewpoint (generic term)|stand (generic term)|standpoint (generic term)
+(noun)|Angle|European (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|lean|tilt|tip|slant|bend (generic term)|flex (generic term)|tip over (related term)|tip over (related term)|lean against (related term)|lean on (related term)
+(verb)|fish|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|fish (generic term)
+(verb)|slant|weight|bias (generic term)|predetermine (generic term)
+angle-closure glaucoma|1
+(noun)|acute glaucoma|glaucoma (generic term)
+angle-park|1
+(verb)|park (generic term)
+angle bracket|2
+(noun)|bracket|punctuation (generic term)|punctuation mark (generic term)
+(noun)|angle iron|bracket (generic term)
+angle iron|1
+(noun)|angle bracket|bracket (generic term)
+angle of attack|1
+(noun)|angle of incidence (generic term)|incidence angle (generic term)
+angle of dip|1
+(noun)|dip|magnetic dip|magnetic inclination|inclination|angle (generic term)
+angle of extinction|1
+(noun)|extinction angle|angle (generic term)
+angle of incidence|1
+(noun)|incidence angle|angle (generic term)
+angle of inclination|1
+(noun)|inclination|angle (generic term)
+angle of reflection|1
+(noun)|angle (generic term)
+angle of refraction|1
+(noun)|angle (generic term)
+angle of view|1
+(noun)|view angle|angle (generic term)
+angled|1
+(adj)|angular (similar term)|angulate (similar term)
+angled loofah|1
+(noun)|sing-kwa|Luffa acutangula|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+angledozer|1
+(noun)|bulldozer (generic term)|dozer (generic term)
+angler|3
+(noun)|schemer (generic term)|plotter (generic term)
+(noun)|troller|fisherman (generic term)|fisher (generic term)
+(noun)|goosefish|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+angler fish|1
+(noun)|goosefish|angler|anglerfish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+anglerfish|1
+(noun)|goosefish|angler|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+anglesea|1
+(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island (generic term)
+anglesea island|1
+(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island (generic term)
+anglesey|1
+(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island (generic term)
+anglesey island|1
+(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island (generic term)
+anglewing|1
+(noun)|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+angleworm|1
+(noun)|earthworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+anglia|1
+(noun)|Anglia|England (generic term)
+anglian|1
+(noun)|Anglian|Old English (generic term)|Anglo-Saxon (generic term)
+anglican|2
+(adj)|Anglican|Protestant denomination (related term)
+(noun)|Anglican|Protestant (generic term)|Nonconformist (antonym)
+anglican catholic|1
+(noun)|Anglican Catholic|Catholic (generic term)
+anglican church|1
+(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination (generic term)
+anglican communion|1
+(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination (generic term)
+anglicanism|1
+(noun)|Anglicanism|Protestantism (generic term)
+anglicisation|1
+(noun)|Anglicization|Anglicisation|assimilation (generic term)|absorption (generic term)
+anglicise|1
+(verb)|anglicize|adapt (generic term)|accommodate (generic term)
+anglicism|2
+(noun)|Anglicism|Briticism|Britishism|formulation (generic term)|expression (generic term)
+(noun)|Anglicism|Britishism|custom (generic term)|usage (generic term)|usance (generic term)
+anglicization|1
+(noun)|Anglicization|Anglicisation|assimilation (generic term)|absorption (generic term)
+anglicize|1
+(verb)|anglicise|adapt (generic term)|accommodate (generic term)
+angling|1
+(noun)|fishing (generic term)|sportfishing (generic term)
+anglo-american|1
+(noun)|Anglo-American|American (generic term)
+anglo-catholic|1
+(adj)|Anglo-catholic|Protestant denomination (related term)
+anglo-catholicism|1
+(noun)|Anglo-Catholicism|High Anglicanism|Anglicanism (generic term)
+anglo-french|1
+(noun)|Anglo-French|Anglo-Norman|French (generic term)
+anglo-indian|2
+(adj)|Anglo-Indian|Asian country|Asian nation (related term)
+(noun)|Anglo-Indian|English person (generic term)
+anglo-jewish|1
+(adj)|Anglo-Jewish|person|individual|someone|somebody|mortal|soul (related term)
+anglo-norman|1
+(noun)|Anglo-French|Anglo-Norman|French (generic term)
+anglo-saxon|3
+(adj)|Anglo-Saxon|English person (related term)
+(noun)|Anglo-Saxon|English person (generic term)
+(noun)|Old English|Anglo-Saxon|English (generic term)|English language (generic term)
+anglo-saxon deity|1
+(noun)|Anglo-Saxon deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+anglomania|1
+(noun)|Anglomania|enthusiasm (generic term)
+anglophil|1
+(noun)|anglophile|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+anglophile|1
+(noun)|anglophil|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+anglophilia|1
+(noun)|Anglophilia|admiration (generic term)|esteem (generic term)|Anglophobia (antonym)
+anglophilic|1
+(adj)|Anglophilic|admiration|esteem (related term)
+anglophobe|1
+(noun)|hater (generic term)
+anglophobia|1
+(noun)|Anglophobia|dislike (generic term)|Anglophilia (antonym)
+anglophobic|1
+(adj)|Anglophobic|dislike (related term)
+angola|1
+(noun)|Angola|Republic of Angola|African country (generic term)|African nation (generic term)
+angolan|2
+(adj)|Angolan|African country|African nation (related term)
+(noun)|Angolan|African (generic term)
+angolan capital|1
+(noun)|Luanda|Angolan capital|national capital (generic term)|port (generic term)
+angolan monetary unit|1
+(noun)|Angolan monetary unit|monetary unit (generic term)
+angolese|1
+(noun)|Angolese|Angolan (generic term)
+angora|4
+(noun)|Ankara|Turkish capital|capital of Turkey|Angora|national capital (generic term)
+(noun)|Angora|Angora goat|domestic goat (generic term)|Capra hircus (generic term)
+(noun)|Angora|Angora rabbit|rabbit (generic term)|coney (generic term)|cony (generic term)
+(noun)|Angora|Angora cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+angora cat|1
+(noun)|Angora|Angora cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+angora goat|1
+(noun)|Angora|Angora goat|domestic goat (generic term)|Capra hircus (generic term)
+angora rabbit|1
+(noun)|Angora|Angora rabbit|rabbit (generic term)|coney (generic term)|cony (generic term)
+angostura|1
+(noun)|angostura bark|bark (generic term)
+angostura bark|1
+(noun)|angostura|bark (generic term)
+angostura bridge|1
+(noun)|Angostura Bridge|suspension bridge (generic term)
+angoumois grain moth|1
+(noun)|angoumois moth|Sitotroga cerealella|grain moth (generic term)
+angoumois moth|1
+(noun)|angoumois grain moth|Sitotroga cerealella|grain moth (generic term)
+angraecum|1
+(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus (generic term)|liliopsid genus (generic term)
+angrecum|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+angriness|1
+(noun)|anger|emotional arousal (generic term)
+angry|3
+(adj)|aggravated (similar term)|provoked (similar term)|angered (similar term)|enraged (similar term)|furious (similar term)|infuriated (similar term)|maddened (similar term)|black (similar term)|choleric (similar term)|irascible (similar term)|hot under the collar (similar term)|huffy (similar term)|mad (similar term)|sore (similar term)|indignant (similar term)|incensed (similar term)|outraged (similar term)|umbrageous (similar term)|irate (similar term)|ireful (similar term)|livid (similar term)|smoldering (similar term)|smouldering (similar term)|wrathful (similar term)|wroth (similar term)|wrothful (similar term)|unangry (antonym)
+(adj)|furious|raging|tempestuous|wild|stormy (similar term)
+(adj)|unhealthy (similar term)
+angry walk|1
+(noun)|stalk|gait (generic term)
+angst|1
+(noun)|Angst|anxiety (generic term)
+angstrom|1
+(noun)|angstrom unit|A|metric linear unit (generic term)
+angstrom unit|1
+(noun)|angstrom|A|metric linear unit (generic term)
+anguid lizard|1
+(noun)|lizard (generic term)
+anguidae|1
+(noun)|Anguidae|family Anguidae|reptile family (generic term)
+anguilla|2
+(noun)|Anguilla|island (generic term)
+(noun)|Anguilla|genus Anguilla|fish genus (generic term)
+anguilla sucklandii|1
+(noun)|tuna|Anguilla sucklandii|eel (generic term)
+anguillan|2
+(adj)|Anguillan|island (related term)
+(noun)|Anguillan|West Indian (generic term)
+anguillidae|1
+(noun)|Anguillidae|family Anguillidae|fish family (generic term)
+anguilliformes|1
+(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order (generic term)
+anguillula|1
+(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus (generic term)
+anguillula aceti|1
+(noun)|vinegar eel|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm (generic term)
+anguine|1
+(adj)|diapsid|diapsid reptile (related term)
+anguis|1
+(noun)|Anguis|genus Anguis|reptile genus (generic term)
+anguis fragilis|1
+(noun)|blindworm|slowworm|Anguis fragilis|anguid lizard (generic term)
+anguish|4
+(noun)|torment|torture|distress (generic term)|hurt (generic term)|suffering (generic term)
+(noun)|distress (generic term)
+(verb)|suffer (generic term)
+(verb)|pain|hurt|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+anguished|1
+(adj)|tormented|tortured|sorrowful (similar term)
+angular|2
+(adj)|space (related term)
+(adj)|angulate|angled (similar term)|asteroid (similar term)|star-shaped (similar term)|bicuspid (similar term)|bicuspidate (similar term)|cuspate (similar term)|cuspated (similar term)|cusped (similar term)|cuspidal (similar term)|cuspidate (similar term)|cuspidated (similar term)|equiangular (similar term)|isogonic (similar term)|rectangular (similar term)|sharp-cornered (similar term)|sharp-angled (similar term)|square-shaped (similar term)|three-cornered (similar term)|triangular (similar term)|tricuspid (similar term)|tricuspidate (similar term)|unicuspid (similar term)|pointed (related term)|square (related term)|rounded (antonym)
+angular artery|1
+(noun)|arteria angularis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+angular distance|1
+(noun)|angle (generic term)
+angular momentum|1
+(noun)|momentum (generic term)
+angular position|1
+(noun)|position (generic term)|spatial relation (generic term)
+angular shape|1
+(noun)|angularity|shape (generic term)|form (generic term)
+angular unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+angular vein|1
+(noun)|vena angularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+angularity|2
+(noun)|angular shape|shape (generic term)|form (generic term)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|roundness (antonym)
+angulate|3
+(adj)|angular|angled (similar term)|asteroid (similar term)|star-shaped (similar term)|bicuspid (similar term)|bicuspidate (similar term)|cuspate (similar term)|cuspated (similar term)|cusped (similar term)|cuspidal (similar term)|cuspidate (similar term)|cuspidated (similar term)|equiangular (similar term)|isogonic (similar term)|rectangular (similar term)|sharp-cornered (similar term)|sharp-angled (similar term)|square-shaped (similar term)|three-cornered (similar term)|triangular (similar term)|tricuspid (similar term)|tricuspidate (similar term)|unicuspid (similar term)|pointed (related term)|square (related term)|rounded (antonym)
+(adj)|rough (similar term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+angulation|2
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+(noun)|change of shape (generic term)
+angus|2
+(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity (generic term)
+(noun)|Aberdeen Angus|Angus|black Angus|beef (generic term)|beef cattle (generic term)
+angus frank johnstone wilson|1
+(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer (generic term)|author (generic term)
+angus og|1
+(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity (generic term)
+angwantibo|1
+(noun)|golden potto|Arctocebus calabarensis|lemur (generic term)
+anhedonia|1
+(noun)|psychological state (generic term)|mental state (generic term)
+anhidrosis|1
+(noun)|anhydrosis|physiological state (generic term)|physiological condition (generic term)
+anhima|1
+(noun)|Anhima|genus Anhima|bird genus (generic term)
+anhima cornuta|1
+(noun)|horned screamer|Anhima cornuta|screamer (generic term)
+anhimidae|1
+(noun)|Anhimidae|family Anhimidae|bird family (generic term)
+anhinga|1
+(noun)|snakebird|darter|pelecaniform seabird (generic term)
+anhinga anhinga|1
+(noun)|water turkey|Anhinga anhinga|snakebird (generic term)|anhinga (generic term)|darter (generic term)
+anhingidae|1
+(noun)|Anhingidae|family Anhingidae|bird family (generic term)
+anhydride|1
+(noun)|compound (generic term)|chemical compound (generic term)
+anhydrosis|1
+(noun)|anhidrosis|physiological state (generic term)|physiological condition (generic term)
+anhydrous|1
+(adj)|hydrous (antonym)
+ani|1
+(noun)|cuckoo (generic term)
+anicius manlius severinus boethius|1
+(noun)|Boethius|Anicius Manlius Severinus Boethius|philosopher (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+anicteric|2
+(adj)|symptom (related term)
+(adj)|healthy (similar term)
+anigozanthus|1
+(noun)|Anigozanthus|genus Anigozanthus|monocot genus (generic term)|liliopsid genus (generic term)
+anigozanthus manglesii|1
+(noun)|kangaroo paw|kangaroo's paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+anil|2
+(noun)|indigo|indigotin|dye (generic term)|dyestuff (generic term)
+(noun)|Indigofera suffruticosa|Indigofera anil|indigo (generic term)|indigo plant (generic term)|Indigofera tinctoria (generic term)
+anile|1
+(adj)|old (similar term)
+aniline|1
+(noun)|aniline oil|aminobenzine|phenylamine|amine (generic term)|aminoalkane (generic term)
+aniline dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+aniline oil|1
+(noun)|aniline|aminobenzine|phenylamine|amine (generic term)|aminoalkane (generic term)
+anima|1
+(noun)|self (generic term)|ego (generic term)
+animadversion|1
+(noun)|censure|disapprobation (generic term)|condemnation (generic term)
+animadvert|2
+(verb)|opine|speak up|sound off|declare (generic term)
+(verb)|reprimand (generic term)|censure (generic term)|criminate (generic term)
+animal|3
+(adj)|carnal|fleshly|sensual|physical (similar term)
+(adj)|alligator-like (similar term)|amoeba-like (similar term)|ameba-like (similar term)|animallike (similar term)|animal-like (similar term)|antelope-like (similar term)|ant-like (similar term)|arachnid-like (similar term)|badger-like (similar term)|beaver-like (similar term)|bee-like (similar term)|birdlike (similar term)|bird-like (similar term)|carp-like (similar term)|catlike (similar term)|cat-like (similar term)|cicada-like (similar term)|cod-like (similar term)|cow-like (similar term)|cranelike (similar term)|crane-like (similar term)|cricket-like (similar term)|crocodile-like (similar term)|dace-like (similar term)|deer-like (similar term)|dinosaur-like (similar term)|duck-like (similar term)|eaglelike (similar term)|eagle-like (similar term)|elephant-like (similar term)|ferret-like (similar term)|finch-like (similar term)|fishlike (similar term)|fish-like (similar term)|foxlike (similar term)|fox-like (similar term)|frog-like (similar term)|goat-like (similar term)|grub-like (similar term)|gull-like (similar term)|hare-like (similar term)|hawklike (similar term)|hawk-like (similar term)|herring-like (similar term)|horselike (similar term)|horse-like (similar term)|insectlike (similar term)|insect-like (similar term)|lizard-like (similar term)|lobster-like (similar term)|mammal-like (similar term)|mongoose-like (similar term)|monkey-like (similar term)|mosquito-like (similar term)|moth-like (similar term)|mullet-like (similar term)|ostrich-like (similar term)|perch-like (similar term)|pigeon-like (similar term)|pig-like (similar term)|pike-like (similar term)|plover-like (similar term)|protozoa-like (similar term)|quail-like (similar term)|raccoon-like (similar term)|ray-like (similar term)|reptile-like (similar term)|rodent-like (similar term)|salmon-like (similar term)|sandpiper-like (similar term)|scorpion-like (similar term)|shad-like (similar term)|shrike-like (similar term)|shrimp-like (similar term)|siskin-like (similar term)|sloth-like (similar term)|snake-like (similar term)|snake-shaped (similar term)|snail-like (similar term)|sparrow-like (similar term)|spitz-like (similar term)|squirrel-like (similar term)|starfish-like (similar term)|stork-like (similar term)|tadpole-like (similar term)|thrush-like (similar term)|troutlike (similar term)|trout-like (similar term)|tuna-like (similar term)|turkey-like (similar term)|vole-like (similar term)|whippoorwill-like (similar term)|vegetable (antonym)|mineral (antonym)
+(noun)|animate being|beast|brute|creature|fauna|organism (generic term)|being (generic term)
+animal-like|1
+(adj)|animallike|animal (similar term)
+animal-worship|1
+(noun)|zoolatry|worship (generic term)
+animal black|1
+(noun)|bone black|bone char|animal charcoal|char (generic term)
+animal charcoal|1
+(noun)|bone black|bone char|animal black|char (generic term)
+animal communication|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+animal disease|1
+(noun)|disease (generic term)
+animal fancier|1
+(noun)|fancier (generic term)|enthusiast (generic term)
+animal fat|1
+(noun)|fat (generic term)|animal material (generic term)
+animal fiber|1
+(noun)|animal fibre|natural fiber (generic term)|natural fibre (generic term)|animal product (generic term)
+animal fibre|1
+(noun)|animal fiber|natural fiber (generic term)|natural fibre (generic term)|animal product (generic term)
+animal foot|1
+(noun)|foot|vertebrate foot (generic term)|pedal extremity (generic term)
+animal glue|1
+(noun)|glue (generic term)|gum (generic term)|mucilage (generic term)|animal product (generic term)
+animal group|1
+(noun)|biological group (generic term)
+animal husbandry|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+animal kingdom|1
+(noun)|Animalia|kingdom Animalia|kingdom (generic term)
+animal leg|1
+(noun)|leg (generic term)
+animal magnetism|1
+(noun)|bewitchery|beguilement|attractiveness (generic term)
+animal material|1
+(noun)|material (generic term)|stuff (generic term)
+animal nature|1
+(noun)|animality|nature (generic term)
+animal oil|1
+(noun)|oil (generic term)|animal material (generic term)
+animal order|1
+(noun)|order (generic term)
+animal pigment|1
+(noun)|pigment (generic term)
+animal product|1
+(noun)|animal material (generic term)
+animal psychology|1
+(noun)|comparative psychology|psychology (generic term)|psychological science (generic term)
+animal scientist|1
+(noun)|zoologist|biologist (generic term)|life scientist (generic term)
+animal skin|1
+(noun)|animal product (generic term)
+animal starch|1
+(noun)|glycogen|polysaccharide (generic term)|polyose (generic term)
+animal stuffer|1
+(noun)|taxidermist|stuffer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+animal tissue|1
+(noun)|tissue (generic term)
+animal toxin|1
+(noun)|zootoxin|toxin (generic term)
+animal trainer|1
+(noun)|handler|trainer (generic term)
+animal virus|1
+(noun)|virus (generic term)
+animalcule|1
+(noun)|animalculum|organism (generic term)|being (generic term)
+animalculum|1
+(noun)|animalcule|organism (generic term)|being (generic term)
+animalia|1
+(noun)|Animalia|kingdom Animalia|animal kingdom|kingdom (generic term)
+animalisation|1
+(noun)|brutalization|brutalisation|animalization|degradation (generic term)|debasement (generic term)
+animalise|3
+(verb)|animalize|represent (generic term)|interpret (generic term)
+(verb)|brutalize|brutalise|animalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|brutalize|brutalise|animalize|change (generic term)
+animalism|2
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|physicality|disposition (generic term)|temperament (generic term)
+animalistic|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+animality|1
+(noun)|animal nature|nature (generic term)
+animalization|2
+(noun)|delineation (generic term)|depiction (generic term)|limning (generic term)|line drawing (generic term)
+(noun)|brutalization|brutalisation|animalisation|degradation (generic term)|debasement (generic term)
+animalize|3
+(verb)|animalise|represent (generic term)|interpret (generic term)
+(verb)|brutalize|brutalise|animalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|brutalize|brutalise|animalise|change (generic term)
+animallike|1
+(adj)|animal-like|animal (similar term)
+animate|6
+(adj)|inanimate (antonym)
+(adj)|sentient|sensate (similar term)|insentient (antonym)
+(verb)|inspire|invigorate|enliven|exalt|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|animize|animise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|enliven|liven|liven up|invigorate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)|deaden (antonym)
+(verb)|recreate|reanimate|revive|renovate|repair|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+animate being|1
+(noun)|animal|beast|brute|creature|fauna|organism (generic term)|being (generic term)
+animate thing|1
+(noun)|living thing|object (generic term)|physical object (generic term)
+animated|2
+(adj)|alive|enlivened (similar term)|spirited (similar term)|full of life (similar term)|lively (similar term)|vital (similar term)|reanimated (similar term)|revived (similar term)|unanimated (antonym)
+(adj)|moving (similar term)
+animated cartoon|1
+(noun)|cartoon|toon|short subject (generic term)
+animated oat|1
+(noun)|wild red oat|Avene sterilis|oat (generic term)
+animateness|1
+(noun)|aliveness|liveness|physiological property (generic term)|inanimateness (antonym)
+animating|1
+(adj)|enlivening|invigorating (similar term)
+animation|6
+(noun)|life|living|aliveness|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|vitality|animateness (generic term)|aliveness (generic term)|liveness (generic term)
+(noun)|spiritedness|invigoration|brio|vivification|activeness (generic term)|activity (generic term)
+(noun)|vivification|invigoration|energizing (generic term)|activating (generic term)|activation (generic term)
+(noun)|filming (generic term)|cinematography (generic term)|motion-picture photography (generic term)
+(noun)|liveliness|activity (generic term)
+animatism|1
+(noun)|attribution (generic term)|ascription (generic term)
+animatistic|1
+(adj)|attribution|ascription (related term)
+animator|2
+(noun)|energizer|energiser|vitalizer|vitaliser|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|technician (generic term)
+animatronics|1
+(noun)|robotics (generic term)
+anime|2
+(noun)|Zanzibar copal|copal (generic term)
+(noun)|gum anime|natural resin (generic term)
+animise|1
+(verb)|animize|animate|change (generic term)|alter (generic term)|modify (generic term)
+animism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+animist|2
+(adj)|animistic|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(noun)|disciple (generic term)|adherent (generic term)
+animistic|1
+(adj)|animist|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+animize|1
+(verb)|animise|animate|change (generic term)|alter (generic term)|modify (generic term)
+animosity|1
+(noun)|animus|bad blood|hostility (generic term)|enmity (generic term)|ill will (generic term)
+animus|1
+(noun)|animosity|bad blood|hostility (generic term)|enmity (generic term)|ill will (generic term)
+anion|1
+(noun)|ion (generic term)
+anionic|2
+(adj)|ion (related term)|cationic (antonym)
+(noun)|anionic detergent|non-ionic detergent|detergent (generic term)
+anionic compound|1
+(noun)|compound (generic term)|chemical compound (generic term)
+anionic detergent|1
+(noun)|anionic|non-ionic detergent|detergent (generic term)
+anise|2
+(noun)|anise plant|Pimpinella anisum|herb (generic term)|herbaceous plant (generic term)
+(noun)|aniseed|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+anise-scented|1
+(adj)|odorous (similar term)
+anise cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+anise hyssop|1
+(noun)|Agastache foeniculum|giant hyssop (generic term)
+anise plant|1
+(noun)|anise|Pimpinella anisum|herb (generic term)|herbaceous plant (generic term)
+anise tree|1
+(noun)|tree (generic term)
+aniseed|1
+(noun)|anise|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+aniseikonia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+aniseikonic|1
+(adj)|visual impairment|visual defect|vision defect|visual disorder (related term)
+anisette|1
+(noun)|anisette de Bordeaux|liqueur (generic term)|cordial (generic term)
+anisette de bordeaux|1
+(noun)|anisette|anisette de Bordeaux|liqueur (generic term)|cordial (generic term)
+anisogamete|1
+(noun)|gamete (generic term)
+anisogametic|1
+(adj)|gamete (related term)
+anisogamic|1
+(adj)|anisogamous|sexual reproduction|amphimixis (related term)
+anisogamous|1
+(adj)|anisogamic|sexual reproduction|amphimixis (related term)
+anisogamy|1
+(noun)|sexual reproduction (generic term)|amphimixis (generic term)
+anisometric|1
+(adj)|unsymmetrical|unequal (similar term)
+anisometropia|1
+(noun)|eye condition (generic term)
+anisometropic|1
+(adj)|eye condition (related term)
+anisoptera|1
+(noun)|Anisoptera|suborder Anisoptera|animal order (generic term)
+anisotremus|1
+(noun)|Anisotremus|genus Anisotremus|fish genus (generic term)
+anisotremus surinamensis|1
+(noun)|pompon|black margate|Anisotremus surinamensis|grunt (generic term)
+anisotremus virginicus|1
+(noun)|porkfish|pork-fish|Anisotremus virginicus|grunt (generic term)
+anisotropic|2
+(adj)|property (related term)
+(adj)|aeolotropic (similar term)|eolotropic (similar term)|isotropic (antonym)
+anisotropy|1
+(noun)|property (generic term)|isotropy (antonym)
+anjou|2
+(noun)|Anjou|French region (generic term)
+(noun)|pear (generic term)
+ankara|1
+(noun)|Ankara|Turkish capital|capital of Turkey|Angora|national capital (generic term)
+ankle|1
+(noun)|ankle joint|mortise joint|articulatio talocruralis|gliding joint (generic term)|articulatio plana (generic term)
+ankle-deep|1
+(adj)|knee-deep|shallow (similar term)
+ankle brace|1
+(noun)|brace (generic term)
+ankle bracelet|1
+(noun)|anklet|bracelet (generic term)|bangle (generic term)
+ankle joint|1
+(noun)|ankle|mortise joint|articulatio talocruralis|gliding joint (generic term)|articulatio plana (generic term)
+anklebone|1
+(noun)|astragal|astragalus|talus|bone (generic term)|os (generic term)
+anklet|3
+(noun)|shoe (generic term)
+(noun)|anklets|bobbysock|bobbysocks|sock (generic term)
+(noun)|ankle bracelet|bracelet (generic term)|bangle (generic term)
+anklets|1
+(noun)|anklet|bobbysock|bobbysocks|sock (generic term)
+ankus|1
+(noun)|prod (generic term)|goad (generic term)
+ankyloglossia|1
+(noun)|tongue tie|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+ankylosaur|1
+(noun)|ankylosaurus|armored dinosaur (generic term)
+ankylosaurus|1
+(noun)|ankylosaur|armored dinosaur (generic term)
+ankylose|2
+(verb)|ancylose|join (generic term)|bring together (generic term)
+(verb)|ancylose|grow (generic term)
+ankylosing spondylitis|1
+(noun)|Marie-Strumpell disease|rheumatoid spondylitis|spondylitis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+ankylosis|1
+(noun)|anchylosis|pathology (generic term)
+ankylotic|1
+(adj)|pathology (related term)
+anlage|1
+(noun)|primordium|organ (generic term)
+ann arbor|1
+(noun)|Ann Arbor|city (generic term)|metropolis (generic term)|urban center (generic term)
+anna|1
+(noun)|Pakistani monetary unit (generic term)
+anna amalia mercouri|1
+(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress (generic term)
+anna eleanor roosevelt|1
+(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+anna howard shaw|1
+(noun)|Shaw|Anna Howard Shaw|suffragist (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+anna mary robertson moses|1
+(noun)|Moses|Grandma Moses|Anna Mary Robertson Moses|painter (generic term)
+anna pavlova|1
+(noun)|Pavlova|Anna Pavlova|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+annaba|1
+(noun)|Annaba|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+annalist|1
+(noun)|historian (generic term)|historiographer (generic term)
+annalistic|1
+(adj)|history|account|chronicle|story (related term)
+annals|2
+(noun)|journal (generic term)
+(noun)|chronological record|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+annam|1
+(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country (generic term)|Asian nation (generic term)
+annamese|2
+(noun)|Vietnamese|Annamese|Asian (generic term)|Asiatic (generic term)
+(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer (generic term)
+annamite|1
+(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer (generic term)
+annapolis|1
+(noun)|Annapolis|capital of Maryland|state capital (generic term)
+annapurna|2
+(noun)|Parvati|Anapurna|Annapurna|Hindu deity (generic term)
+(noun)|Annapurna|Anapurna|mountain peak (generic term)
+anne|1
+(noun)|Anne|Queen of England (generic term)
+anne boleyn|1
+(noun)|Boleyn|Anne Boleyn|queen (generic term)
+anne bradstreet|1
+(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet (generic term)
+anne bronte|1
+(noun)|Bronte|Anne Bronte|writer (generic term)|author (generic term)
+anne dudley bradstreet|1
+(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet (generic term)
+anne hathaway|1
+(noun)|Hathaway|Anne Hathaway|wife (generic term)|married woman (generic term)
+anne hutchinson|1
+(noun)|Hutchinson|Anne Hutchinson|settler (generic term)|colonist (generic term)
+anne mansfield sullivan|1
+(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+anne robert jacques turgot|1
+(noun)|Turgot|Anne Robert Jacques Turgot|economist (generic term)|economic expert (generic term)
+anne sexton|1
+(noun)|Sexton|Anne Sexton|poet (generic term)
+anne sullivan|1
+(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+anneal|1
+(verb)|temper|normalize|toughen (generic term)
+annealed|1
+(adj)|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+annealing|1
+(noun)|tempering|hardening (generic term)
+annelid|2
+(adj)|annelidan|phylum (related term)
+(noun)|annelid worm|segmented worm|worm (generic term)
+annelid worm|1
+(noun)|annelid|segmented worm|worm (generic term)
+annelida|1
+(noun)|Annelida|phylum Annelida|phylum (generic term)
+annelidan|1
+(adj)|annelid|phylum (related term)
+annex|3
+(noun)|annexe|extension|wing|addition (generic term)|add-on (generic term)|improver (generic term)
+(verb)|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+(verb)|append (generic term)|add on (generic term)|supplement (generic term)|affix (generic term)
+annexa|1
+(noun)|adnexa|body part (generic term)
+annexal|1
+(adj)|adnexal|body part (related term)
+annexation|2
+(noun)|appropriation|incorporation (generic term)
+(noun)|acquisition (generic term)
+annexational|1
+(adj)|acquisition (related term)
+annexe|1
+(noun)|annex|extension|wing|addition (generic term)|add-on (generic term)|improver (generic term)
+annie oakley|1
+(noun)|Oakley|Annie Oakley|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+anniellidae|1
+(noun)|Anniellidae|family Anniellidae|reptile family (generic term)
+annihilate|1
+(verb)|eliminate|extinguish|eradicate|wipe out|decimate|carry off|kill (generic term)
+annihilated|1
+(adj)|exterminated|wiped out|destroyed (similar term)
+annihilating|2
+(adj)|annihilative|devastating|withering|destructive (similar term)
+(adj)|devastating|withering|disrespectful (similar term)
+annihilation|2
+(noun)|obliteration|destruction (generic term)|devastation (generic term)
+(noun)|disintegration|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+annihilative|1
+(adj)|annihilating|devastating|withering|destructive (similar term)
+annihilator|1
+(noun)|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+anniversary|1
+(noun)|day of remembrance|day (generic term)
+anno domini|1
+(adv)|AD|A.D.|anno Domini
+annona|1
+(noun)|Annona|genus Annona|magnoliid dicot genus (generic term)
+annona cherimola|1
+(noun)|cherimoya|cherimoya tree|Annona cherimola|custard apple (generic term)|custard apple tree (generic term)
+annona diversifolia|1
+(noun)|ilama|ilama tree|Annona diversifolia|custard apple (generic term)|custard apple tree (generic term)
+annona glabra|1
+(noun)|pond apple|pond-apple tree|Annona glabra|custard apple (generic term)|custard apple tree (generic term)
+annona muricata|1
+(noun)|soursop|prickly custard apple|soursop tree|Annona muricata|custard apple (generic term)|custard apple tree (generic term)
+annona reticulata|1
+(noun)|bullock's heart|bullock's heart tree|bullock heart|Annona reticulata|custard apple (generic term)|custard apple tree (generic term)
+annona squamosa|1
+(noun)|sweetsop|sweetsop tree|Annona squamosa|custard apple (generic term)|custard apple tree (generic term)
+annonaceae|1
+(noun)|Annonaceae|family Annonaceae|custard-apple family|magnoliid dicot family (generic term)
+annotate|2
+(verb)|footnote|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|gloss|comment|rede (generic term)|interpret (generic term)
+annotating|1
+(noun)|annotation|expansion (generic term)|expanding upon (generic term)
+annotation|2
+(noun)|note|notation|comment (generic term)|commentary (generic term)
+(noun)|annotating|expansion (generic term)|expanding upon (generic term)
+annotator|1
+(noun)|observer (generic term)|commentator (generic term)
+announce|4
+(verb)|denote|inform (generic term)
+(verb)|declare|state (generic term)|say (generic term)|tell (generic term)
+(verb)|name (generic term)|identify (generic term)
+(verb)|annunciate|harbinger|foretell|herald|tell (generic term)
+announced|1
+(adj)|proclaimed|declared (similar term)
+announcement|2
+(noun)|proclamation|annunciation|declaration|statement (generic term)
+(noun)|promulgation|statement (generic term)
+announcer|2
+(noun)|communicator (generic term)
+(noun)|broadcaster (generic term)
+annoy|1
+(verb)|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+annoyance|5
+(noun)|irritation|vexation|botheration|psychological state (generic term)|mental state (generic term)
+(noun)|chafe|vexation|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|aggravator|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|bother|botheration|pain|infliction|pain in the neck|pain in the ass|negative stimulus (generic term)
+(noun)|annoying|irritation|vexation|mistreatment (generic term)
+annoyed|2
+(adj)|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+(adj)|harassed|harried|pestered|vexed|troubled (similar term)
+annoyer|1
+(noun)|tease|teaser|vexer|unwelcome person (generic term)|persona non grata (generic term)
+annoying|2
+(adj)|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+(noun)|annoyance|irritation|vexation|mistreatment (generic term)
+annual|4
+(adj)|yearly|time period|period of time|period (related term)
+(adj)|one-year|biennial (antonym)|perennial (antonym)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(noun)|yearly|yearbook|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+annual fern|1
+(noun)|Jersey fern|Anogramma leptophylla|fern (generic term)
+annual parallax|1
+(noun)|heliocentric parallax|parallax (generic term)
+annual ring|1
+(noun)|growth ring|organic phenomenon (generic term)
+annual salt-marsh aster|1
+(noun)|aster (generic term)
+annually|2
+(adv)|yearly|every year|each year
+(adv)|per annum|p.a.|per year|each year
+annualry|1
+(noun)|ring finger|finger (generic term)
+annuitant|1
+(noun)|recipient (generic term)|receiver (generic term)
+annuity|1
+(noun)|rente|regular payment (generic term)
+annuity in advance|1
+(noun)|annuity (generic term)|rente (generic term)
+annul|2
+(verb)|invalidate|quash|void|avoid|nullify|cancel (generic term)|strike down (generic term)|validate (antonym)
+(verb)|revoke|lift|countermand|reverse|repeal|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+annular|1
+(adj)|annulate|annulated|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded (similar term)
+annular eclipse|1
+(noun)|solar eclipse (generic term)
+annular scotoma|1
+(noun)|scotoma (generic term)
+annulate|1
+(adj)|annular|annulated|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded (similar term)
+annulated|1
+(adj)|annular|annulate|circinate|circular|ringed|ring-shaped|doughnut-shaped|rounded (similar term)
+annulet|3
+(noun)|roundel|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+(noun)|bandelet|bandelette|bandlet|square and rabbet|molding (generic term)|moulding (generic term)
+(noun)|ring (generic term)|band (generic term)
+annulment|3
+(noun)|revocation|state (generic term)
+(noun)|invalidation|dissolution (generic term)|breakup (generic term)
+(noun)|abrogation|repeal|cancellation (generic term)
+annulus|2
+(noun)|ring|halo|anulus|doughnut|anchor ring|toroid (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+annum|1
+(noun)|year (generic term)|twelvemonth (generic term)|yr (generic term)
+annunciate|1
+(verb)|announce|harbinger|foretell|herald|tell (generic term)
+annunciation|3
+(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day (generic term)
+(noun)|Annunciation|announcement (generic term)|promulgation (generic term)
+(noun)|announcement|proclamation|declaration|statement (generic term)
+annunciation day|1
+(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day (generic term)
+annunciation lily|1
+(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily (generic term)
+annunciator|1
+(noun)|indicator (generic term)
+annunciatory|1
+(adj)|statement (related term)
+annwfn|1
+(noun)|Annwfn|Annwn|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+annwn|1
+(noun)|Annwfn|Annwn|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+ano|1
+(noun)|Fatah Revolutionary Council|Fatah-RC|Abu Nidal Organization|ANO|Arab Revolutionary Brigades|Black September|Revolutionary Organization of Socialist Muslims|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+anoa|1
+(noun)|dwarf buffalo|Anoa depressicornis|Old World buffalo (generic term)|buffalo (generic term)
+anoa depressicornis|1
+(noun)|anoa|dwarf buffalo|Anoa depressicornis|Old World buffalo (generic term)|buffalo (generic term)
+anoa mindorensis|1
+(noun)|tamarau|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo (generic term)|buffalo (generic term)
+anobiidae|1
+(noun)|Anobiidae|family Anobiidae|arthropod family (generic term)
+anodal|1
+(adj)|anodic|electrode (related term)|cathodic (antonym)
+anode|2
+(noun)|electrode (generic term)|cathode (antonym)
+(noun)|terminal (generic term)|pole (generic term)|cathode (antonym)
+anodic|1
+(adj)|anodal|electrode (related term)|cathodic (antonym)
+anodise|1
+(verb)|anodize|coat (generic term)|surface (generic term)
+anodize|1
+(verb)|anodise|coat (generic term)|surface (generic term)
+anodonta|1
+(noun)|Anodonta|genus Anodonta|mollusk genus (generic term)
+anodyne|2
+(adj)|analgesic|analgetic|moderating (similar term)
+(noun)|analgesic|painkiller|pain pill|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anoectochilus|1
+(noun)|Anoectochilus|genus Anoectochilus|monocot genus (generic term)|liliopsid genus (generic term)
+anoestrous|1
+(adj)|anestrous|anestric|physiological state|physiological condition (related term)
+anoestrum|1
+(noun)|anestrus|anestrum|anoestrus|physiological state (generic term)|physiological condition (generic term)|estrus (antonym)
+anoestrus|1
+(noun)|anestrus|anestrum|anoestrum|physiological state (generic term)|physiological condition (generic term)|estrus (antonym)
+anogramma|1
+(noun)|Anogramma|genus Anogramma|fern genus (generic term)
+anogramma leptophylla|1
+(noun)|annual fern|Jersey fern|Anogramma leptophylla|fern (generic term)
+anoint|2
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|inunct|oil|anele|embrocate|bless (generic term)
+anointer|1
+(noun)|religious person (generic term)
+anointing|1
+(noun)|anointment|application (generic term)|coating (generic term)|covering (generic term)
+anointing of the sick|1
+(noun)|extreme unction|last rites|sacrament (generic term)
+anointment|1
+(noun)|anointing|application (generic term)|coating (generic term)|covering (generic term)
+anole|1
+(noun)|American chameleon|Anolis carolinensis|iguanid (generic term)|iguanid lizard (generic term)
+anolis|1
+(noun)|Anolis|genus Anolis|reptile genus (generic term)
+anolis carolinensis|1
+(noun)|American chameleon|anole|Anolis carolinensis|iguanid (generic term)|iguanid lizard (generic term)
+anomala|1
+(noun)|Anomala|genus Anomala|arthropod genus (generic term)
+anomala orientalis|1
+(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+anomalist|1
+(noun)|intellectual (generic term)|intellect (generic term)
+anomalistic month|1
+(noun)|month (generic term)
+anomalistic year|1
+(noun)|year (generic term)
+anomalopidae|1
+(noun)|Anomalopidae|family Anomalopidae|fish family (generic term)
+anomalops|1
+(noun)|flashlight fish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+anomalopteryx|1
+(noun)|Anomalopteryx oweni|moa (generic term)
+anomalopteryx oweni|1
+(noun)|anomalopteryx|Anomalopteryx oweni|moa (generic term)
+anomalous|1
+(adj)|abnormal (similar term)
+anomalous communication|1
+(noun)|psychic communication|psychical communication|communication (generic term)
+anomalousness|1
+(noun)|anomaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+anomaly|3
+(noun)|anomalousness|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|unusual person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|position (generic term)|place (generic term)
+anomia|2
+(noun)|nominal aphasia|anomic aphasia|amnesic aphasia|amnestic aphasia|aphasia (generic term)
+(noun)|Anomia|genus Anomia|mollusk genus (generic term)
+anomia ephippium|1
+(noun)|saddle oyster|Anomia ephippium|oyster (generic term)
+anomic|1
+(adj)|alienated|disoriented|unoriented (similar term)
+anomic aphasia|1
+(noun)|nominal aphasia|anomia|amnesic aphasia|amnestic aphasia|aphasia (generic term)
+anomie|2
+(noun)|anomy|isolation (generic term)
+(noun)|anomy|immorality (generic term)
+anomiidae|1
+(noun)|Anomiidae|family Anomiidae|mollusk family (generic term)
+anomy|2
+(noun)|anomie|isolation (generic term)
+(noun)|anomie|immorality (generic term)
+anon|1
+(noun)|sweetsop|sugar apple|custard apple (generic term)
+anon.|1
+(adj)|anonymous|nameless (similar term)|unidentified (similar term)|unknown (similar term)|unnamed (similar term)|onymous (antonym)
+anonym|1
+(noun)|pseudonym|nom de guerre|name (generic term)
+anonymity|1
+(noun)|namelessness|obscurity (generic term)
+anonymous|2
+(adj)|anon.|nameless (similar term)|unidentified (similar term)|unknown (similar term)|unnamed (similar term)|onymous (antonym)
+(adj)|faceless (similar term)
+anonymous file transfer protocol|1
+(noun)|anonymous ftp|file transfer protocol (generic term)|FTP (generic term)
+anonymous ftp|1
+(noun)|anonymous file transfer protocol|file transfer protocol (generic term)|FTP (generic term)
+anoperineal|1
+(adj)|orifice|opening|porta (related term)|area|region (related term)
+anopheles|1
+(noun)|Anopheles|genus Anopheles|arthropod genus (generic term)
+anopheline|2
+(adj)|arthropod genus (related term)
+(noun)|mosquito (generic term)
+anopia|1
+(noun)|blindness (generic term)|sightlessness (generic term)|cecity (generic term)
+anoplophora glabripennis|1
+(noun)|Asian longhorned beetle|Anoplophora glabripennis|beetle (generic term)
+anoplura|1
+(noun)|Anoplura|order Anoplura|animal order (generic term)
+anorak|1
+(noun)|parka|windbreaker|windcheater|jacket (generic term)
+anorchia|1
+(noun)|anorchism|anorchidism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+anorchidism|1
+(noun)|anorchism|anorchia|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+anorchism|1
+(noun)|anorchidism|anorchia|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+anorectal|1
+(adj)|orifice|opening|porta (related term)|body part (related term)
+anorectic|3
+(adj)|anorexic|thin (similar term)|lean (similar term)
+(adj)|anorexigenic|causative (similar term)
+(noun)|anorexic|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+anorexia|1
+(noun)|eating disorder (generic term)
+anorexia nervosa|1
+(noun)|anorexia (generic term)
+anorexic|2
+(adj)|anorectic|thin (similar term)|lean (similar term)
+(noun)|anorectic|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+anorexigenic|1
+(adj)|anorectic|causative (similar term)
+anorgasmia|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+anorthic|1
+(adj)|triclinic|monoclinic (antonym)
+anorthite|1
+(noun)|plagioclase (generic term)|oligoclase (generic term)
+anorthitic|1
+(adj)|plagioclase|oligoclase (related term)
+anorthography|1
+(noun)|agraphia|logagraphia|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+anorthopia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+anosmatic|1
+(adj)|anosmic|dysomia (related term)
+anosmia|1
+(noun)|dysomia (generic term)
+anosmic|2
+(adj)|anosmatic|dysomia (related term)
+(adj)|impaired (similar term)
+anostraca|1
+(noun)|Anostraca|order Anostraca|animal order (generic term)
+another|1
+(adj)|some other|other (similar term)
+anouilh|1
+(noun)|Anouilh|Jean Anouilh|dramatist (generic term)|playwright (generic term)
+anova|1
+(noun)|analysis of variance|ANOVA|multivariate analysis (generic term)
+anovulant|1
+(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+anovulation|1
+(noun)|organic process (generic term)|biological process (generic term)|ovulation (antonym)
+anovulatory drug|1
+(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+anoxemia|1
+(noun)|pathology (generic term)
+anoxemic|1
+(adj)|pathology (related term)
+anoxia|1
+(noun)|hypoxia (generic term)
+anoxic|1
+(adj)|hypoxia (related term)
+anoxic anoxia|1
+(noun)|anoxia (generic term)
+ans|1
+(noun)|autonomic nervous system|ANS|neural structure (generic term)
+ansaid|1
+(noun)|flurbiprofen|Ansaid|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ansar al-islam|1
+(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ansar al islam|1
+(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+anselm|1
+(noun)|Anselm|Saint Anselm|St. Anselm|archbishop (generic term)|saint (generic term)
+anser|1
+(noun)|Anser|genus Anser|bird genus (generic term)
+anser anser|1
+(noun)|greylag|graylag|greylag goose|graylag goose|Anser anser|goose (generic term)
+anser cygnoides|1
+(noun)|Chinese goose|Anser cygnoides|goose (generic term)
+anseres|1
+(noun)|Anseres|suborder Anseres|animal order (generic term)
+anseriform bird|1
+(noun)|waterfowl (generic term)|water bird (generic term)|waterbird (generic term)
+anseriformes|1
+(noun)|Anseriformes|order Anseriformes|animal order (generic term)
+anserinae|1
+(noun)|Anserinae|subfamily Anserinae|bird family (generic term)
+anserine|2
+(adj)|bird family (related term)
+(adj)|dopy|dopey|foolish|goosey|goosy|gooselike|jerky|stupid (similar term)
+anshar|1
+(noun)|Anshar|Semitic deity (generic term)
+answer|14
+(noun)|reply|response|statement (generic term)
+(noun)|solution|result|resolution|solvent|statement (generic term)
+(noun)|reply (generic term)|response (generic term)|question (antonym)
+(noun)|pleading (generic term)
+(noun)|reaction (generic term)|response (generic term)
+(verb)|reply|respond|state (generic term)|say (generic term)|tell (generic term)
+(verb)|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+(verb)|resolve|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+(verb)|refute (generic term)|rebut (generic term)
+(verb)|be (generic term)
+(verb)|suffice|do|serve|satisfy (generic term)|fulfill (generic term)|fulfil (generic term)|live up to (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|react (generic term)|respond (generic term)
+answer for|1
+(verb)|account|declare (generic term)
+answerability|1
+(noun)|accountability|answerableness|responsibility (generic term)|responsibleness (generic term)
+answerable|2
+(adj)|soluble (similar term)
+(adj)|responsible (similar term)
+answerableness|1
+(noun)|accountability|answerability|responsibility (generic term)|responsibleness (generic term)
+answerer|1
+(noun)|respondent|responder|communicator (generic term)
+answering|1
+(adj)|respondent|responsive (similar term)
+answering machine|1
+(noun)|electronic device (generic term)
+ant|1
+(noun)|emmet|pismire|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+ant-like|1
+(adj)|animal (similar term)
+ant bear|2
+(noun)|giant anteater|great anteater|tamanoir|Myrmecophaga jubata|anteater (generic term)|New World anteater (generic term)
+(noun)|aardvark|anteater|Orycteropus afer|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+ant bird|1
+(noun)|antbird|tyrannid (generic term)
+ant cow|1
+(noun)|aphid (generic term)
+ant lion|2
+(noun)|doodlebug|antlion|larva (generic term)
+(noun)|antlion|antlion fly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+ant shrike|1
+(noun)|antbird (generic term)|ant bird (generic term)
+ant thrush|1
+(noun)|antbird (generic term)|ant bird (generic term)
+antabuse|1
+(noun)|disulfiram|Antabuse|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antacid|2
+(adj)|antagonistic (similar term)|incompatible (similar term)
+(noun)|gastric antacid|alkalizer|alkaliser|antiacid|agent (generic term)
+antagonise|2
+(verb)|antagonize|counteract|act (generic term)|move (generic term)
+(verb)|antagonize|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+antagonism|4
+(noun)|hostility|enmity|state (generic term)
+(noun)|opposition (generic term)|oppositeness (generic term)
+(noun)|hostility (generic term)|enmity (generic term)|ill will (generic term)|dislike (generic term)
+(noun)|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+antagonist|3
+(noun)|adversary|opponent|opposer|resister|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|agonist (antonym)
+(noun)|antagonistic muscle (generic term)
+(noun)|drug (generic term)|synergist (antonym)
+antagonistic|5
+(adj)|counter|negative (similar term)
+(adj)|antipathetic|antipathetical|hostile (similar term)
+(adj)|alienating (similar term)|conciliatory (antonym)
+(adj)|incompatible|antacid (similar term)|antiphlogistic (similar term)|synergistic (antonym)
+(adj)|incompatible (similar term)
+antagonistic muscle|1
+(noun)|muscle (generic term)|musculus (generic term)
+antagonize|2
+(verb)|antagonise|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|antagonise|counteract|act (generic term)|move (generic term)
+antakiya|1
+(noun)|Antioch|Antakya|Antakiya|town (generic term)
+antakya|1
+(noun)|Antioch|Antakya|Antakiya|town (generic term)
+antalya|1
+(noun)|Antalya|Adalia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+antananarivo|1
+(noun)|Antananarivo|capital of Madagascar|national capital (generic term)
+antapex|1
+(noun)|celestial point (generic term)|apex (antonym)
+antarctic|3
+(adj)|continent (related term)
+(adj)|south-polar|Antarctic|polar (similar term)
+(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+antarctic circle|1
+(noun)|Antarctic Circle|polar circle (generic term)
+antarctic continent|1
+(noun)|Antarctica|Antarctic continent|continent (generic term)
+antarctic ocean|1
+(noun)|Antarctic Ocean|ocean (generic term)
+antarctic peninsula|1
+(noun)|Antarctic Peninsula|Palmer Peninsula|peninsula (generic term)
+antarctic zone|1
+(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+antarctica|1
+(noun)|Antarctica|Antarctic continent|continent (generic term)
+antares|1
+(noun)|Antares|binary star (generic term)|binary (generic term)|double star (generic term)
+antbird|1
+(noun)|ant bird|tyrannid (generic term)
+ante|2
+(noun)|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(verb)|bet on (generic term)|back (generic term)|gage (generic term)|stake (generic term)|game (generic term)|punt (generic term)
+ante meridiem|2
+(adj)|a.m.|antemeridian (similar term)
+(adv)|A.M.
+ante up|1
+(verb)|pay up|pay|pay (generic term)|default (antonym)
+anteater|5
+(noun)|pangolin|scaly anteater|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|New World anteater|edentate (generic term)
+(noun)|aardvark|ant bear|Orycteropus afer|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|numbat|banded anteater|Myrmecobius fasciatus|dasyurid marsupial (generic term)|dasyurid (generic term)
+(noun)|echidna|spiny anteater|monotreme (generic term)|egg-laying mammal (generic term)
+antebellum|1
+(adj)|nonmodern (similar term)
+antecede|1
+(verb)|predate|precede|forego|forgo|antedate|postdate (antonym)
+antecedence|1
+(noun)|priority|antecedency|anteriority|precedence|precedency|earliness (generic term)|posteriority (antonym)
+antecedency|1
+(noun)|priority|antecedence|anteriority|precedence|precedency|earliness (generic term)|posteriority (antonym)
+antecedent|5
+(adj)|preceding|anterior (similar term)|prior (similar term)|anticipatory (similar term)|prevenient (similar term)|preexistent (similar term)|pre-existent (similar term)|preexisting (similar term)|pre-existing (similar term)|preceding (related term)|subsequent (antonym)
+(noun)|ancestor|ascendant|ascendent|root|relative (generic term)|relation (generic term)|descendant (antonym)
+(noun)|cause (generic term)
+(noun)|forerunner|temporal relation (generic term)
+(noun)|referent (generic term)
+antecedently|1
+(adv)|previously
+antechamber|1
+(noun)|anteroom|entrance hall|hall|foyer|lobby|vestibule|room (generic term)
+antecubital|1
+(adj)|hinge joint|ginglymus|ginglymoid joint (related term)
+antedate|2
+(verb)|predate|precede|forego|forgo|antecede|postdate (antonym)
+(verb)|predate|foredate|chronologize (generic term)|chronologise (generic term)|postdate (antonym)
+antediluvial|1
+(adj)|antediluvian
+antediluvian|4
+(adj)|antediluvial
+(adj)|antiquated|archaic|old (similar term)
+(noun)|antediluvian patriarch|patriarch (generic term)
+(noun)|ancient|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+antediluvian patriarch|1
+(noun)|antediluvian|patriarch (generic term)
+antedon|1
+(noun)|Antedon|genus Antedon|echinoderm genus (generic term)
+antedonidae|1
+(noun)|Antedonidae|family Antedonidae|echinoderm family (generic term)
+antefix|1
+(noun)|architectural ornament (generic term)
+antelope|1
+(noun)|bovid (generic term)
+antelope-like|1
+(adj)|animal (similar term)
+antelope chipmunk|1
+(noun)|antelope squirrel|whitetail antelope squirrel|Citellus leucurus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+antelope squirrel|1
+(noun)|whitetail antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+antemeridian|1
+(adj)|ante meridiem (similar term)|a.m. (similar term)|postmeridian (antonym)
+antemortem|1
+(adj)|postmortem (antonym)
+antenatal|1
+(adj)|prenatal|antepartum|perinatal (antonym)|postnatal (antonym)
+antenna|3
+(noun)|aerial|transmitting aerial|electrical device (generic term)
+(noun)|feeler|sensitivity (generic term)|sensitiveness (generic term)
+(noun)|feeler|tentacle (generic term)
+antennal|1
+(adj)|antennary|tentacle (related term)
+antennaria|1
+(noun)|Antennaria|genus Antennaria|asterid dicot genus (generic term)
+antennaria dioica|1
+(noun)|cat's foot|cat's feet|pussytoes|Antennaria dioica|herb (generic term)|herbaceous plant (generic term)
+antennaria plantaginifolia|1
+(noun)|ladies' tobacco|lady's tobacco|Antennaria plantaginifolia|herb (generic term)|herbaceous plant (generic term)
+antennariidae|1
+(noun)|Antennariidae|family Antennariidae|fish family (generic term)
+antennary|1
+(adj)|antennal|tentacle (related term)
+antenuptial|1
+(adj)|prenuptial|premarital|ceremony|ceremonial|ceremonial occasion|observance (related term)|postnuptial (antonym)
+antepartum|1
+(adj)|prenatal|antenatal|perinatal (antonym)|postnatal (antonym)
+antepenult|1
+(noun)|antepenultima|antepenultimate|syllable (generic term)
+antepenultima|1
+(noun)|antepenult|antepenultimate|syllable (generic term)
+antepenultimate|2
+(adj)|last (similar term)
+(noun)|antepenult|antepenultima|syllable (generic term)
+anterior|3
+(adj)|frontal (similar term)|frontal (similar term)|prefrontal (similar term)|front (related term)|posterior (antonym)
+(adj)|prior|antecedent (similar term)|preceding (similar term)
+(noun)|front tooth|tooth (generic term)
+anterior cardinal vein|1
+(noun)|cardinal vein (generic term)
+anterior cerebral artery|1
+(noun)|cerebral artery (generic term)|arteria cerebri (generic term)
+anterior cerebral vein|1
+(noun)|vena cerebri anterior|cerebral vein (generic term)|vena cerebri (generic term)
+anterior crural nerve|1
+(noun)|femoral nerve|nervus femoralis|spinal nerve (generic term)|nervus spinalis (generic term)
+anterior facial vein|1
+(noun)|vena facialis anterior|facial vein (generic term)|vena facialis (generic term)
+anterior fontanelle|1
+(noun)|fontanelle (generic term)|fontanel (generic term)|soft spot (generic term)
+anterior jugular vein|1
+(noun)|jugular vein (generic term)|vena jugularis (generic term)|jugular (generic term)
+anterior labial veins|1
+(noun)|venae labiales anteriores|labial vein (generic term)|vena labialis (generic term)
+anterior meningeal artery|1
+(noun)|meningeal artery (generic term)|arteria meningea (generic term)
+anterior naris|1
+(noun)|nostril|naris (generic term)
+anterior pituitary|1
+(noun)|anterior pituitary gland|adenohypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+anterior pituitary gland|1
+(noun)|anterior pituitary|adenohypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+anterior serratus muscle|1
+(noun)|serratus anterior|musculus serratus anterior|serratus magnus|serratus (generic term)|serratus muscles (generic term)
+anterior synechia|1
+(noun)|synechia (generic term)
+anterior temporal artery|1
+(noun)|arteria temporalis anterior|temporal artery (generic term)
+anterior vertebral vein|1
+(noun)|vena vertebralis anterior|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+anteriority|2
+(noun)|position (generic term)|spatial relation (generic term)|posteriority (antonym)
+(noun)|priority|antecedence|antecedency|precedence|precedency|earliness (generic term)|posteriority (antonym)
+anterograde|1
+(adj)|retrograde (antonym)
+anterograde amnesia|1
+(noun)|posttraumatic amnesia|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+anteroom|1
+(noun)|antechamber|entrance hall|hall|foyer|lobby|vestibule|room (generic term)
+anthelminthic|2
+(adj)|anthelmintic|helminthic|parasiticidal|healthful (similar term)
+(noun)|vermifuge|anthelmintic|helminthic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anthelmintic|2
+(adj)|anthelminthic|helminthic|parasiticidal|healthful (similar term)
+(noun)|vermifuge|anthelminthic|helminthic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anthem|2
+(noun)|song (generic term)|vocal (generic term)
+(noun)|hymn|religious song (generic term)
+anthemis|1
+(noun)|Anthemis|genus Anthemis|asterid dicot genus (generic term)
+anthemis arvensis|1
+(noun)|corn chamomile|field chamomile|corn mayweed|Anthemis arvensis|composite (generic term)|composite plant (generic term)
+anthemis cotula|1
+(noun)|mayweed|dog fennel|stinking mayweed|stinking chamomile|Anthemis cotula|composite (generic term)|composite plant (generic term)
+anthemis nobilis|1
+(noun)|chamomile|camomile|Chamaemelum nobilis|Anthemis nobilis|herb (generic term)|herbaceous plant (generic term)
+anthemis tinctoria|1
+(noun)|yellow chamomile|golden marguerite|dyers' chamomile|Anthemis tinctoria|composite (generic term)|composite plant (generic term)
+anther|1
+(noun)|reproductive structure (generic term)
+antheraea|1
+(noun)|Antheraea|genus Antheraea|arthropod genus (generic term)
+antheraea mylitta|1
+(noun)|tussah|tusseh|tussur|tussore|tusser|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+antheraea pernyi|1
+(noun)|pernyi moth|Antheraea pernyi|saturniid (generic term)|saturniid moth (generic term)
+antheraea polyphemus|1
+(noun)|polyphemus moth|Antheraea polyphemus|saturniid (generic term)|saturniid moth (generic term)
+antheral|1
+(adj)|staminate|male (similar term)
+anthericum|1
+(noun)|Anthericum|genus Anthericum|liliid monocot genus (generic term)
+anthericum liliago|1
+(noun)|Saint-Bernard's-lily|Anthericum liliago|liliaceous plant (generic term)
+anthericum torreyi|1
+(noun)|amber lily|Anthericum torreyi|liliaceous plant (generic term)
+antheridial|1
+(adj)|reproductive structure (related term)
+antheridiophore|1
+(noun)|gametophore (generic term)
+antheridium|1
+(noun)|reproductive structure (generic term)
+antheropeas|1
+(noun)|Antheropeas|genus Antheropeas|asterid dicot genus (generic term)
+antheropeas wallacei|1
+(noun)|woolly daisy|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower (generic term)|wild flower (generic term)
+antherozoid|1
+(noun)|spermatozoid|gamete (generic term)
+anthesis|1
+(noun)|blossoming|flowering|florescence|inflorescence|efflorescence|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+anthidium|1
+(noun)|Anthidium|genus Anthidium|arthropod genus (generic term)
+anthill|1
+(noun)|formicary|knoll (generic term)|mound (generic term)|hillock (generic term)|hummock (generic term)|hammock (generic term)
+anthoceropsida|1
+(noun)|Anthoceropsida|class Anthoceropsida|class (generic term)
+anthoceros|1
+(noun)|Anthoceros|genus Anthoceros|moss genus (generic term)
+anthocerotaceae|1
+(noun)|Anthocerotaceae|family Anthocerotaceae|moss family (generic term)
+anthocerotales|1
+(noun)|Anthocerotales|order Anthocerotales|plant order (generic term)
+anthologise|1
+(verb)|anthologize|compose (generic term)|compile (generic term)
+anthologist|1
+(noun)|editor (generic term)|editor in chief (generic term)
+anthologize|1
+(verb)|anthologise|compose (generic term)|compile (generic term)
+anthology|1
+(noun)|collection (generic term)|compendium (generic term)
+anthonomus|1
+(noun)|Anthonomus|genus Anthonomus|arthropod genus (generic term)
+anthonomus grandis|1
+(noun)|boll weevil|Anthonomus grandis|weevil (generic term)
+anthony|2
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist (generic term)
+anthony burgess|1
+(noun)|Burgess|Anthony Burgess|writer (generic term)|author (generic term)
+anthony charles lynton blair|1
+(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman (generic term)|solon (generic term)|national leader (generic term)
+anthony comstock|1
+(noun)|Comstock|Anthony Comstock|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+anthony hopkins|1
+(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+anthony trollope|1
+(noun)|Trollope|Anthony Trollope|writer (generic term)|author (generic term)
+anthony vandyke|1
+(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master (generic term)
+anthony wayne|1
+(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general (generic term)|full general (generic term)
+anthophagous|1
+(adj)|anthophilous|herbivorous (similar term)
+anthophilous|1
+(adj)|anthophagous|herbivorous (similar term)
+anthophyllite|1
+(noun)|amphibole (generic term)
+anthophyta|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+anthozoa|1
+(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class (generic term)
+anthozoan|1
+(noun)|actinozoan|coelenterate (generic term)|cnidarian (generic term)
+anthracite|1
+(noun)|anthracite coal|hard coal|coal (generic term)
+anthracite coal|1
+(noun)|anthracite|hard coal|coal (generic term)
+anthracitic|1
+(adj)|coal (related term)
+anthracosis|1
+(noun)|black lung|black lung disease|coal miner's lung|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+anthrax|2
+(noun)|splenic fever|zoonosis (generic term)|zoonotic disease (generic term)
+(noun)|disease (generic term)
+anthrax bacillus|1
+(noun)|Bacillus anthracis|bacillus (generic term)|B (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+anthrax pneumonia|1
+(noun)|pulmonary anthrax|inhalation anthrax|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax (generic term)
+anthrenus scrophulariae|1
+(noun)|buffalo carpet beetle|Anthrenus scrophulariae|carpet beetle (generic term)|carpet bug (generic term)
+anthriscus|1
+(noun)|Anthriscus|genus Anthriscus|rosid dicot genus (generic term)
+anthriscus cereifolium|1
+(noun)|chervil|beaked parsley|Anthriscus cereifolium|herb (generic term)|herbaceous plant (generic term)
+anthriscus sylvestris|1
+(noun)|cow parsley|wild chervil|Anthriscus sylvestris|herb (generic term)|herbaceous plant (generic term)
+anthropic|1
+(adj)|anthropical|hominid (related term)
+anthropical|1
+(adj)|anthropic|hominid (related term)
+anthropocentric|1
+(adj)|partiality|partisanship (related term)
+anthropocentricity|1
+(noun)|anthropocentrism|partiality (generic term)|partisanship (generic term)
+anthropocentrism|1
+(noun)|anthropocentricity|partiality (generic term)|partisanship (generic term)
+anthropogenesis|1
+(noun)|anthropogeny|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+anthropogenetic|1
+(adj)|anthropogenic|evolution|organic evolution|phylogeny|phylogenesis (related term)
+anthropogenic|1
+(adj)|anthropogenetic|evolution|organic evolution|phylogeny|phylogenesis (related term)
+anthropogeny|1
+(noun)|anthropogenesis|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+anthropoid|4
+(adj)|anthropoidal|apelike|nonhuman (similar term)
+(adj)|manlike|human (similar term)
+(noun)|ape|misfit (generic term)
+(noun)|primate (generic term)
+anthropoid ape|1
+(noun)|ape (generic term)
+anthropoidal|1
+(adj)|anthropoid|apelike|nonhuman (similar term)
+anthropoidea|1
+(noun)|Anthropoidea|suborder Anthropoidea|animal order (generic term)
+anthropolatry|1
+(noun)|worship of man|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+anthropological|1
+(adj)|social science (related term)
+anthropologist|1
+(noun)|social scientist (generic term)
+anthropology|1
+(noun)|social science (generic term)
+anthropology department|1
+(noun)|department of anthropology|academic department (generic term)
+anthropometric|1
+(adj)|anthropometrical|measurement|measuring|measure|mensuration (related term)
+anthropometrical|1
+(adj)|anthropometric|measurement|measuring|measure|mensuration (related term)
+anthropometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+anthropomorphic|1
+(adj)|anthropomorphous|humanlike|human (similar term)
+anthropomorphise|1
+(verb)|anthropomorphize|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+anthropomorphism|1
+(noun)|theanthropism|representational process (generic term)
+anthropomorphize|1
+(verb)|anthropomorphise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+anthropomorphous|1
+(adj)|anthropomorphic|humanlike|human (similar term)
+anthropophagite|1
+(noun)|cannibal|man-eater|anthropophagus|savage (generic term)|barbarian (generic term)
+anthropophagous|1
+(adj)|savage|barbarian (related term)
+anthropophagus|1
+(noun)|cannibal|man-eater|anthropophagite|savage (generic term)|barbarian (generic term)
+anthropophagy|1
+(noun)|cannibalism (generic term)
+anthurium|1
+(noun)|tailflower|tail-flower|houseplant (generic term)
+anthurium andraeanum|1
+(noun)|flamingo flower|flamingo plant|Anthurium andraeanum|Anthurium scherzerianum|anthurium (generic term)|tailflower (generic term)|tail-flower (generic term)
+anthurium scherzerianum|1
+(noun)|flamingo flower|flamingo plant|Anthurium andraeanum|Anthurium scherzerianum|anthurium (generic term)|tailflower (generic term)|tail-flower (generic term)
+anthus|1
+(noun)|Anthus|genus Anthus|bird genus (generic term)
+anthus pratensis|1
+(noun)|meadow pipit|Anthus pratensis|pipit (generic term)|titlark (generic term)|lark (generic term)
+anthyllis|1
+(noun)|Anthyllis|genus Anthyllis|rosid dicot genus (generic term)
+anthyllis barba-jovis|1
+(noun)|Jupiter's beard|silverbush|silver-bush|Anthyllis barba-jovis|shrub (generic term)|bush (generic term)
+anthyllis vulneraria|1
+(noun)|kidney vetch|Anthyllis vulneraria|herb (generic term)|herbaceous plant (generic term)
+anti|2
+(adj)|opposed (similar term)|opposing (similar term)|pro (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+anti-american|2
+(adj)|anti-American|North American country|North American nation (related term)|pro-American (antonym)
+(noun)|anti-American|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+anti-catholicism|1
+(noun)|anti-Catholicism|religious orientation (generic term)
+anti-drug law|1
+(noun)|law (generic term)
+anti-dumping duty|1
+(noun)|protective tariff (generic term)
+anti-g suit|1
+(noun)|anti-G suit|G suit|pressure suit (generic term)
+anti-imperialist international brigade|1
+(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+anti-impotence drug|1
+(noun)|virility drug|drug (generic term)
+anti-inflammatory|1
+(noun)|anti-inflammatory drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anti-inflammatory drug|1
+(noun)|anti-inflammatory|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anti-intellectual|2
+(adj)|philistine|nonintellectual (similar term)
+(noun)|philistine|lowbrow|plebeian (generic term)|pleb (generic term)
+anti-masonic party|1
+(noun)|Anti-Masonic Party|party (generic term)|political party (generic term)
+anti-personnel bomb|1
+(noun)|fragmentation bomb|antipersonnel bomb|daisy cutter|bomb (generic term)
+anti-racketeering law|1
+(noun)|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law (generic term)
+anti-semite|2
+(adj)|racist|antiblack|anti-Semite|prejudiced (similar term)|discriminatory (similar term)
+(noun)|anti-Semite|Jew-baiter|hater (generic term)
+anti-semitic|1
+(adj)|antisemitic|racism (related term)
+anti-semitism|1
+(noun)|anti-Semitism|antisemitism|racism (generic term)
+anti-submarine rocket|1
+(noun)|shipboard system (generic term)
+anti-sway bar|1
+(noun)|stabilizer bar|bar (generic term)|stabilizer (generic term)|stabiliser (generic term)
+anti-takeover defense|1
+(noun)|resistance (generic term)|opposition (generic term)
+anti-tnf compound|1
+(noun)|anti-TNF compound|drug (generic term)
+anti-torque rotor|1
+(noun)|tail rotor|rotor (generic term)
+anti-virus program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+anti-war movement|1
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+antiacid|1
+(noun)|antacid|gastric antacid|alkalizer|alkaliser|agent (generic term)
+antiadrenergic|1
+(adj)|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive|pressor (related term)
+antiaircraft|2
+(adj)|defensive (similar term)
+(noun)|antiaircraft gun|flak|flack|pom-pom|ack-ack|ack-ack gun|gun (generic term)
+antiaircraft fire|1
+(noun)|fire (generic term)|firing (generic term)
+antiaircraft gun|1
+(noun)|antiaircraft|flak|flack|pom-pom|ack-ack|ack-ack gun|gun (generic term)
+antialiasing|1
+(noun)|technique (generic term)
+antianxiety agent|1
+(noun)|tranquilizer|tranquillizer|tranquilliser|ataractic drug|ataractic agent|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+antianxiety drug|1
+(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|anxiolytic|anxiolytic drug|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+antiapartheid|1
+(adj)|social policy (related term)
+antiarrhythmic|1
+(noun)|antiarrhythmic drug|antiarrhythmic medication|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiarrhythmic drug|1
+(noun)|antiarrhythmic|antiarrhythmic medication|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiarrhythmic medication|1
+(noun)|antiarrhythmic|antiarrhythmic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiauthoritarian|1
+(adj)|democratic (similar term)
+antibacterial|1
+(noun)|antibacterial drug|bactericide|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antibacterial drug|1
+(noun)|antibacterial|bactericide|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiballistic missile|1
+(noun)|ABM|guided missile (generic term)
+antibaryon|1
+(noun)|hadron (generic term)
+antiberiberi factor|1
+(noun)|vitamin B1|thiamine|thiamin|aneurin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+antibiosis|1
+(noun)|association (generic term)
+antibiotic|2
+(adj)|antibacterial|antibacterial drug|bactericide (related term)
+(noun)|antibiotic drug|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+antibiotic drug|1
+(noun)|antibiotic|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+antiblack|1
+(adj)|racist|anti-Semite|prejudiced (similar term)|discriminatory (similar term)
+antibody|1
+(noun)|protein (generic term)
+antic|3
+(adj)|fantastic|fantastical|grotesque|strange (similar term)|unusual (similar term)
+(noun)|joke|prank|trick|caper|put-on|diversion (generic term)|recreation (generic term)
+(verb)|clown|clown around|joke (generic term)|jest (generic term)
+anticancer|1
+(adj)|antineoplastic|antitumor|antitumour|growth (related term)|malignant tumor|malignant neoplasm|metastatic tumor (related term)
+anticatalyst|1
+(noun)|inhibitor (generic term)|catalyst (antonym)
+anticholinergic|2
+(adj)|cholinergic (antonym)
+(noun)|anticholinergic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticholinergic drug|1
+(noun)|anticholinergic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticholinesterase|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antichrist|1
+(noun)|Antichrist|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+anticipant|2
+(adj)|anticipative|expectant|hopeful (similar term)
+(noun)|anticipator|visionary (generic term)|illusionist (generic term)|seer (generic term)
+anticipate|6
+(verb)|expect|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|foresee|forestall|counter|act (generic term)|move (generic term)
+(verb)|previse|foreknow|foresee|know (generic term)
+(verb)|predict|foretell|prognosticate|call|forebode|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|look for|look to|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+anticipated|1
+(adj)|awaited|hoped-for|expected (similar term)
+anticipation|4
+(noun)|expectancy|expectation (generic term)
+(noun)|expectancy|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(noun)|prediction|prevision|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(noun)|expectation|hopefulness (generic term)
+anticipative|1
+(adj)|anticipant|expectant|hopeful (similar term)
+anticipator|1
+(noun)|anticipant|visionary (generic term)|illusionist (generic term)|seer (generic term)
+anticipatory|1
+(adj)|prevenient|antecedent (similar term)|preceding (similar term)
+anticipatory breach|1
+(noun)|constructive breach|breach of contract (generic term)
+anticlimactic|2
+(adj)|anticlimactical|conclusion|end|close|closing|ending (related term)
+(adj)|climactic (antonym)
+anticlimactical|1
+(adj)|anticlimactic|conclusion|end|close|closing|ending (related term)
+anticlimax|2
+(noun)|fall (generic term)|downfall (generic term)
+(noun)|bathos|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+anticlinal|1
+(adj)|synclinal (antonym)
+anticlockwise|2
+(adj)|counterclockwise|contraclockwise|levorotary (similar term)|levorotatory (similar term)|left-handed (similar term)|sinistral (related term)|clockwise (antonym)
+(adv)|counterclockwise|clockwise (antonym)
+anticoagulant|1
+(noun)|anticoagulant medication|decoagulant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticoagulant medication|1
+(noun)|anticoagulant|decoagulant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticoagulation|1
+(noun)|medical care (generic term)|medical aid (generic term)
+anticoagulative|1
+(adj)|medicine|medication|medicament|medicinal drug (related term)
+anticonvulsant|1
+(noun)|anticonvulsant drug|antiepileptic|antiepileptic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticonvulsant drug|1
+(noun)|anticonvulsant|antiepileptic|antiepileptic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+anticyclone|1
+(noun)|atmosphere (generic term)|atmospheric state (generic term)|cyclone (antonym)
+anticyclonic|1
+(adj)|atmosphere|atmospheric state (related term)
+antidepressant|1
+(noun)|antidepressant drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidepressant drug|1
+(noun)|antidepressant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiabetic|1
+(noun)|antidiabetic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiabetic drug|1
+(noun)|antidiabetic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiarrheal|1
+(noun)|antidiarrheal drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiarrheal drug|1
+(noun)|antidiarrheal|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiuretic|1
+(noun)|antidiuretic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiuretic drug|1
+(noun)|antidiuretic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antidiuretic hormone|1
+(noun)|vasopressin|ADH|Pitressin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+antido|1
+(noun)|Antido|artificial language (generic term)
+antidorcas|1
+(noun)|Antidorcas|genus Antidorcas|mammal genus (generic term)
+antidorcas euchore|1
+(noun)|springbok|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle (generic term)
+antidorcas marsupialis|1
+(noun)|springbok|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle (generic term)
+antidotal|1
+(adj)|remedy|curative|cure|therapeutic (related term)
+antidote|1
+(noun)|counterpoison|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+antidromic|1
+(adj)|abnormal (similar term)
+antielectron|1
+(noun)|positron|antilepton (generic term)
+antiemetic|1
+(noun)|antiemetic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiemetic drug|1
+(noun)|antiemetic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiepileptic|1
+(noun)|anticonvulsant|anticonvulsant drug|antiepileptic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiepileptic drug|1
+(noun)|anticonvulsant|anticonvulsant drug|antiepileptic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiestablishmentarianism|1
+(noun)|antiestablishmentism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+antiestablishmentism|1
+(noun)|antiestablishmentarianism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+antifeminism|1
+(noun)|male chauvinism|chauvinism|sexism (generic term)
+antifeminist|1
+(noun)|bigot (generic term)
+antiferromagnetic|1
+(adj)|magnetism|magnetic attraction|magnetic force (related term)
+antiferromagnetism|1
+(noun)|magnetism (generic term)|magnetic attraction (generic term)|magnetic force (generic term)
+antifertility|1
+(adj)|contraceptive|prophylactic|protective (similar term)
+antiflatulent|1
+(noun)|agent (generic term)
+antifouling|1
+(adj)|protective (similar term)
+antifreeze|1
+(noun)|liquid (generic term)
+antifungal|2
+(adj)|fungicidal|agent (related term)
+(noun)|antifungal agent|fungicide|antimycotic|antimycotic agent|agent (generic term)
+antifungal agent|1
+(noun)|antifungal|fungicide|antimycotic|antimycotic agent|agent (generic term)
+antigen|1
+(noun)|substance (generic term)|matter (generic term)
+antigenic|1
+(adj)|substance|matter (related term)
+antigenic determinant|1
+(noun)|determinant|epitope|site (generic term)|situation (generic term)
+antigone|1
+(noun)|Antigone|mythical being (generic term)
+antigonia|1
+(noun)|Antigonia|genus Antigonia|fish genus (generic term)
+antigonus|1
+(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general (generic term)|full general (generic term)|Macedonian (generic term)
+antigonus cyclops|1
+(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general (generic term)|full general (generic term)|Macedonian (generic term)
+antigram|1
+(noun)|anagram (generic term)
+antigua|1
+(noun)|Antigua|island (generic term)
+antigua and barbuda|1
+(noun)|Antigua and Barbuda|country (generic term)|state (generic term)|land (generic term)
+antiguan|2
+(adj)|Antiguan|island (related term)
+(noun)|Antiguan|West Indian (generic term)
+antihaemophilic factor|1
+(noun)|antihemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+antihaemophilic globulin|1
+(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+antihemophilic factor|1
+(noun)|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+antihemophilic globulin|1
+(noun)|antihemophilic factor|antihaemophilic factor|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+antihemorrhagic factor|1
+(noun)|vitamin K|naphthoquinone|fat-soluble vitamin (generic term)
+antiheretical|1
+(adj)|orthodox (similar term)
+antihero|1
+(noun)|protagonist (generic term)|agonist (generic term)
+antihistamine|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antihypertensive|1
+(noun)|antihypertensive drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antihypertensive drug|1
+(noun)|antihypertensive|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiknock|2
+(adj)|leaded (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+antilepton|1
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+antilles|1
+(noun)|Antilles|archipelago (generic term)
+antilocapra|1
+(noun)|Antilocapra|genus Antilocapra|mammal genus (generic term)
+antilocapra americana|1
+(noun)|pronghorn|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant (generic term)
+antilocapridae|1
+(noun)|Antilocapridae|family Antilocapridae|mammal family (generic term)
+antilog|1
+(noun)|antilogarithm|numeral (generic term)|number (generic term)
+antilogarithm|1
+(noun)|antilog|numeral (generic term)|number (generic term)
+antilope|1
+(noun)|Antilope|genus Antilope|mammal genus (generic term)
+antilope cervicapra|1
+(noun)|blackbuck|black buck|Antilope cervicapra|antelope (generic term)
+antimacassar|1
+(noun)|cloth covering (generic term)
+antimagnetic|1
+(adj)|magnetic (antonym)
+antimalarial|1
+(noun)|antimalarial drug|antiprotozoal (generic term)|antiprotozoal drug (generic term)
+antimalarial drug|1
+(noun)|antimalarial|antiprotozoal (generic term)|antiprotozoal drug (generic term)
+antimatter|1
+(noun)|substance (generic term)|matter (generic term)
+antimeson|1
+(noun)|hadron (generic term)
+antimetabolite|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+antimicrobial|2
+(adj)|antimicrobic|healthful (similar term)
+(noun)|disinfectant|germicide|antimicrobic|agent (generic term)
+antimicrobic|2
+(adj)|antimicrobial|healthful (similar term)
+(noun)|disinfectant|germicide|antimicrobial|agent (generic term)
+antimonial|1
+(adj)|metallic (similar term)|metal (similar term)
+antimonial lead|1
+(noun)|hard lead|lead (generic term)|Pb (generic term)|atomic number 82 (generic term)
+antimonic|1
+(adj)|antimonious|metallic element|metal (related term)
+antimonious|1
+(adj)|antimonic|metallic element|metal (related term)
+antimonopoly|1
+(adj)|antitrust|fair (similar term)|just (similar term)
+antimony|1
+(noun)|Sb|atomic number 51|metallic element (generic term)|metal (generic term)
+antimony potassium tartrate|1
+(noun)|tartar emetic|mordant (generic term)|tartrate (generic term)
+antimuon|1
+(noun)|positive muon|antilepton (generic term)
+antimycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+antimycotic|1
+(noun)|antifungal|antifungal agent|fungicide|antimycotic agent|agent (generic term)
+antimycotic agent|1
+(noun)|antifungal|antifungal agent|fungicide|antimycotic|agent (generic term)
+antineoplastic|2
+(adj)|anticancer|antitumor|antitumour|growth (related term)|malignant tumor|malignant neoplasm|metastatic tumor (related term)
+(noun)|antineoplastic drug|cancer drug|cytotoxic drug (generic term)
+antineoplastic antibiotic|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+antineoplastic drug|1
+(noun)|antineoplastic|cancer drug|cytotoxic drug (generic term)
+antineutrino|1
+(noun)|antilepton (generic term)
+antineutron|1
+(noun)|nucleon (generic term)
+antinode|1
+(noun)|point (generic term)|node (antonym)
+antinomasia|1
+(noun)|rhetorical device (generic term)
+antinomian|2
+(adj)|theological doctrine (related term)
+(noun)|disciple (generic term)|adherent (generic term)
+antinomianism|1
+(noun)|theological doctrine (generic term)
+antinomy|1
+(noun)|contradiction (generic term)|contradiction in terms (generic term)
+antioch|1
+(noun)|Antioch|Antakya|Antakiya|town (generic term)
+antiophthalmic factor|1
+(noun)|vitamin A|axerophthol|A|fat-soluble vitamin (generic term)
+antioxidant|1
+(noun)|inhibitor (generic term)
+antiparallel|1
+(adj)|parallel (similar term)
+antiparticle|1
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+antipasto|1
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+antipathetic|2
+(adj)|antipathetical|averse|indisposed|loath|loth|disinclined (similar term)
+(adj)|antagonistic|antipathetical|hostile (similar term)
+antipathetical|2
+(adj)|antipathetic|averse|indisposed|loath|loth|disinclined (similar term)
+(adj)|antagonistic|antipathetic|hostile (similar term)
+antipathy|2
+(noun)|aversion|distaste|dislike (generic term)
+(noun)|object (generic term)
+antipernicious anemia factor|1
+(noun)|vitamin B12|cobalamin|cyanocobalamin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+antipersonnel|1
+(adj)|offensive (similar term)
+antipersonnel bomb|1
+(noun)|fragmentation bomb|anti-personnel bomb|daisy cutter|bomb (generic term)
+antiperspirant|1
+(noun)|toiletry (generic term)|toilet article (generic term)
+antiphlogistic|1
+(adj)|antagonistic (similar term)|incompatible (similar term)
+antiphon|1
+(noun)|antiphony|religious music (generic term)|church music (generic term)
+antiphonal|3
+(adj)|responsive|religious music|church music (related term)|phrase (related term)
+(adj)|antiphonary|religious music|church music (related term)
+(noun)|antiphonary|religious music (generic term)|church music (generic term)
+antiphonary|2
+(adj)|antiphonal|religious music|church music (related term)
+(noun)|antiphonal|religious music (generic term)|church music (generic term)
+antiphony|2
+(noun)|music (generic term)
+(noun)|antiphon|religious music (generic term)|church music (generic term)
+antiphrasis|1
+(noun)|rhetorical device (generic term)
+antipodal|2
+(adj)|antipodean|region (related term)
+(noun)|antipodal opposition|diametrical opposition|opposition (generic term)
+antipodal opposition|1
+(noun)|antipodal|diametrical opposition|opposition (generic term)
+antipode|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+antipodean|1
+(adj)|antipodal|region (related term)
+antipodes|1
+(noun)|region (generic term)
+antipollution|1
+(adj)|environmental condition|impurity|impureness (related term)
+antipope|1
+(noun)|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+antiproton|1
+(noun)|nucleon (generic term)
+antiprotozoal|1
+(noun)|antiprotozoal drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiprotozoal drug|1
+(noun)|antiprotozoal|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antipruritic|1
+(noun)|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+antipsychotic|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+antipsychotic agent|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+antipsychotic drug|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+antipyresis|1
+(noun)|medication (generic term)
+antipyretic|2
+(adj)|pyretic (antonym)
+(noun)|febrifuge|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiquarian|3
+(adj)|expert (related term)
+(adj)|antiquity (related term)
+(noun)|antiquary|archaist|expert (generic term)
+antiquark|1
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+antiquary|1
+(noun)|antiquarian|archaist|expert (generic term)
+antiquate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|antique|change (generic term)|alter (generic term)|modify (generic term)
+antiquated|1
+(adj)|antediluvian|archaic|old (similar term)
+antique|7
+(adj)|old (similar term)
+(adj)|demode|ex|old-fashioned|old-hat|outmoded|passe|passee|unfashionable (similar term)|unstylish (similar term)
+(adj)|age-old|old (similar term)
+(noun)|old-timer|oldtimer|gaffer|old geezer|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+(noun)|antiquity (generic term)
+(verb)|shop (generic term)|browse (generic term)
+(verb)|antiquate|change (generic term)|alter (generic term)|modify (generic term)
+antiquity|3
+(noun)|historic period (generic term)|age (generic term)
+(noun)|ancientness|oldness (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+antiredeposition|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+antirrhinum|1
+(noun)|Antirrhinum|genus Antirrhinum|asterid dicot genus (generic term)
+antirrhinum coulterianum|1
+(noun)|white snapdragon|Antirrhinum coulterianum|snapdragon (generic term)
+antirrhinum filipes|1
+(noun)|yellow twining snapdragon|Antirrhinum filipes|snapdragon (generic term)
+antirrhinum majus|1
+(noun)|Mediterranean snapdragon|Antirrhinum majus|snapdragon (generic term)
+antisatellite|1
+(adj)|ASAT|equipment (related term)
+antisemitic|1
+(adj)|anti-semitic|racism (related term)
+antisemitism|1
+(noun)|anti-Semitism|racism (generic term)
+antisepsis|2
+(noun)|asepsis|sterility|sterileness|sanitariness (generic term)
+(noun)|asepsis|organic process (generic term)|biological process (generic term)
+antiseptic|6
+(adj)|aseptic (similar term)|sterile (similar term)|bactericidal (similar term)|disinfectant (similar term)|germicidal (similar term)|cleansing (similar term)|purifying (similar term)|nonpurulent (similar term)|uninfected (similar term)|clean (similar term)|clean (related term)|germfree (related term)|healthful (related term)|septic (antonym)
+(adj)|incorrupt (similar term)
+(adj)|purifying (similar term)
+(adj)|sterilized|sterilised|germfree (similar term)
+(adj)|clean (similar term)|unobjectionable (similar term)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antisepticize|1
+(verb)|disinfect (generic term)
+antiserum|1
+(noun)|serum (generic term)|blood serum (generic term)
+antisocial|2
+(adj)|unsociable (similar term)
+(adj)|asocial|unsocial (similar term)
+antisocial personality disorder|1
+(noun)|sociopathic personality|psychopathic personality|personality disorder (generic term)
+antispasmodic|1
+(noun)|spasmolytic|antispasmodic agent|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antispasmodic agent|1
+(noun)|antispasmodic|spasmolytic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antistrophe|1
+(noun)|stanza (generic term)
+antistrophic|1
+(adj)|stanza (related term)
+antisubmarine|1
+(adj)|defensive (similar term)
+antisyphilitic|1
+(noun)|drug (generic term)
+antitank|1
+(adj)|defensive (similar term)
+antitauon|1
+(noun)|tau-plus particle|antilepton (generic term)
+antithesis|2
+(noun)|opposition (generic term)|oppositeness (generic term)
+(noun)|rhetorical device (generic term)
+antithetic|1
+(adj)|antithetical|different (similar term)
+antithetical|1
+(adj)|antithetic|different (similar term)
+antitoxic|1
+(adj)|nontoxic (similar term)|atoxic (similar term)
+antitoxin|1
+(noun)|antibody (generic term)
+antitrade|1
+(noun)|antitrade wind|prevailing wind (generic term)
+antitrade wind|1
+(noun)|antitrade|prevailing wind (generic term)
+antitrades|1
+(noun)|prevailing wind (generic term)
+antitrust|1
+(adj)|antimonopoly|fair (similar term)|just (similar term)
+antitrust case|1
+(noun)|legal action (generic term)|action (generic term)|action at law (generic term)
+antitrust law|1
+(noun)|antitrust legislation|law (generic term)
+antitrust legislation|1
+(noun)|antitrust law|law (generic term)
+antitumor|1
+(adj)|anticancer|antineoplastic|antitumour|growth (related term)|malignant tumor|malignant neoplasm|metastatic tumor (related term)
+antitumour|1
+(adj)|anticancer|antineoplastic|antitumor|growth (related term)|malignant tumor|malignant neoplasm|metastatic tumor (related term)
+antitussive|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antitype|2
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)|type (antonym)
+antitypic|1
+(adj)|antitypical|representation|mental representation|internal representation (related term)
+antitypical|1
+(adj)|antitypic|representation|mental representation|internal representation (related term)
+antivenene|1
+(noun)|antivenin|antitoxin (generic term)
+antivenin|1
+(noun)|antivenene|antitoxin (generic term)
+antivert|1
+(noun)|meclizine|meclizine hydrochloride|Antivert|antihistamine (generic term)
+antiviral|2
+(adj)|medicine|medication|medicament|medicinal drug (related term)
+(noun)|antiviral agent|antiviral drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiviral agent|1
+(noun)|antiviral|antiviral drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antiviral drug|1
+(noun)|antiviral|antiviral agent|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+antler|1
+(noun)|horn (generic term)
+antler-like|1
+(adj)|horned (similar term)
+antler moth|1
+(noun)|Cerapteryx graminis|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+antlered|1
+(adj)|horned (similar term)
+antlia|1
+(noun)|Antlia|constellation (generic term)
+antlion|2
+(noun)|doodlebug|ant lion|larva (generic term)
+(noun)|ant lion|antlion fly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+antlion fly|1
+(noun)|ant lion|antlion|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+antofagasta|1
+(noun)|Antofagasta|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+antoine domino|1
+(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+antoine henri becquerel|1
+(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist (generic term)
+antoine laurent de jussieu|1
+(noun)|Jussieu|Antoine Laurent de Jussieu|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+antoine laurent lavoisier|1
+(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist (generic term)
+antoine lavoisier|1
+(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist (generic term)
+anton bruckner|1
+(noun)|Bruckner|Anton Bruckner|composer (generic term)|organist (generic term)
+anton chekhov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+anton chekov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+anton gregor rubinstein|1
+(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer (generic term)|pianist (generic term)|piano player (generic term)
+anton grigorevich rubinstein|1
+(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer (generic term)|pianist (generic term)|piano player (generic term)
+anton pavlovich chekhov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+anton pavlovich chekov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+anton rubenstein|1
+(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer (generic term)|pianist (generic term)|piano player (generic term)
+anton van leeuwenhoek|1
+(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist (generic term)
+anton van leuwenhoek|1
+(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist (generic term)
+antonin dvorak|1
+(noun)|Dvorak|Antonin Dvorak|composer (generic term)
+antonine wall|1
+(noun)|Antonine Wall|rampart (generic term)|bulwark (generic term)|wall (generic term)
+antoninus|1
+(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+antonio allegri da correggio|1
+(noun)|Correggio|Antonio Allegri da Correggio|old master (generic term)
+antonio gaudi|1
+(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect (generic term)|designer (generic term)
+antonio gaudi i cornet|1
+(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect (generic term)|designer (generic term)
+antonio ghislieri|1
+(noun)|Pius V|Antonio Ghislieri|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+antonio lopez de santa ana|1
+(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general (generic term)|full general (generic term)
+antonio lopez de santa anna|1
+(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general (generic term)|full general (generic term)
+antonio lucio vivaldi|1
+(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer (generic term)|violinist (generic term)|fiddler (generic term)
+antonio pignatelli|1
+(noun)|Innocent XII|Antonio Pignatelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+antonio stradivari|1
+(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker (generic term)
+antonio vivaldi|1
+(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer (generic term)|violinist (generic term)|fiddler (generic term)
+antonius|1
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+antonius pius|1
+(noun)|Antonius Pius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+antonius stradivarius|1
+(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker (generic term)
+antony|1
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+antony tudor|1
+(noun)|Tudor|Antony Tudor|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+antonym|1
+(noun)|opposite word|opposite|word (generic term)|synonym (antonym)
+antonymous|1
+(adj)|complementary (similar term)|contradictory (similar term)|contrary (similar term)|contrastive (similar term)|incompatible (similar term)|converse (similar term)|synonymous (antonym)
+antonymy|1
+(noun)|semantic relation (generic term)
+antrorse|1
+(adj)|retrorse (antonym)
+antrozous|1
+(noun)|Antrozous|genus Antrozous|mammal genus (generic term)
+antrozous pallidus|1
+(noun)|pallid bat|cave bat|Antrozous pallidus|vespertilian bat (generic term)|vespertilionid (generic term)
+antrum|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+antsy|1
+(adj)|fidgety|fretful|itchy|restless|unquiet (similar term)
+antum|1
+(noun)|Antum|Semitic deity (generic term)
+antwerp|1
+(noun)|Antwerpen|Antwerp|Anvers|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+antwerpen|1
+(noun)|Antwerpen|Antwerp|Anvers|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+anu|1
+(noun)|Anu|Semitic deity (generic term)
+anubis|1
+(noun)|Anubis|Egyptian deity (generic term)
+anulus|1
+(noun)|ring|halo|annulus|doughnut|anchor ring|toroid (generic term)
+anunnaki|1
+(noun)|Anunnaki|Enuki|Semitic deity (generic term)
+anura|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+anuran|2
+(adj)|batrachian|salientian|animal order (related term)
+(noun)|frog|toad|toad frog|batrachian|salientian|amphibian (generic term)
+anuresis|1
+(noun)|anuria|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+anuretic|1
+(adj)|anuric|illness|unwellness|malady|sickness (related term)
+anuria|1
+(noun)|anuresis|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+anuric|1
+(adj)|anuretic|illness|unwellness|malady|sickness (related term)
+anurous|1
+(adj)|tailless|acaudate (similar term)|acaudal (similar term)
+anus|1
+(noun)|arse|arsehole|asshole|orifice (generic term)|opening (generic term)|porta (generic term)
+anvers|1
+(noun)|Antwerpen|Antwerp|Anvers|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+anvil|2
+(noun)|block (generic term)
+(noun)|incus|auditory ossicle (generic term)
+anwar el-sadat|1
+(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman (generic term)|solon (generic term)|national leader (generic term)
+anwar sadat|1
+(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman (generic term)|solon (generic term)|national leader (generic term)
+anxiety|2
+(noun)|anxiousness|psychological state (generic term)|mental state (generic term)
+(noun)|emotion (generic term)
+anxiety attack|1
+(noun)|attack (generic term)
+anxiety disorder|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+anxiety hysteria|1
+(noun)|hysteria (generic term)|hysterical neurosis (generic term)
+anxiety neurosis|1
+(noun)|neurosis (generic term)|neuroticism (generic term)|psychoneurosis (generic term)
+anxiety reaction|1
+(noun)|generalized anxiety disorder|GAD|anxiety disorder (generic term)
+anxiolytic|2
+(adj)|psychological state|mental state (related term)
+(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic drug|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+anxiolytic drug|1
+(noun)|minor tranquilizer|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+anxious|2
+(adj)|dying|eager (similar term)
+(adj)|nervous|queasy|uneasy|unquiet|troubled (similar term)
+anxiously|1
+(adv)|uneasily|apprehensively
+anxiousness|2
+(noun)|anxiety|psychological state (generic term)|mental state (generic term)
+(noun)|disquiet|anxiety (generic term)
+any|1
+(adj)|whatever|whatsoever|some (similar term)
+any-and-all bid|1
+(noun)|takeover bid (generic term)
+any longer|1
+(adv)|anymore
+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 (generic term)
+anyway|2
+(adv)|anyhow|in any case|at any rate|in any event
+(adv)|anyhow
+anywhere|1
+(adv)|anyplace
+anzac|1
+(noun)|Anzac|soldier (generic term)
+anzio|1
+(noun)|Anzio|town (generic term)
+ao dai|1
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+aorist|1
+(noun)|tense (generic term)
+aoristic|1
+(adj)|tense (related term)
+aorta|1
+(noun)|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+aortal|1
+(adj)|aortic|artery|arteria|arterial blood vessel (related term)
+aortic|1
+(adj)|aortal|artery|arteria|arterial blood vessel (related term)
+aortic aneurysm|1
+(noun)|aneurysm (generic term)|aneurism (generic term)
+aortic arch|1
+(noun)|aorta (generic term)
+aortic orifice|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+aortic plexus|1
+(noun)|plexus (generic term)|rete (generic term)
+aortic stenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)|valvular heart disease (generic term)
+aortic valve|1
+(noun)|semilunar valve (generic term)
+aortitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+aotus|1
+(noun)|Aotus|genus Aotus|mammal genus (generic term)
+aotus trivirgatus|1
+(noun)|douroucouli|Aotus trivirgatus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+aoudad|1
+(noun)|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep (generic term)
+apace|1
+(adv)|quickly|rapidly|speedily|chop-chop|slowly (antonym)
+apache|3
+(noun)|Apache|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|gangster (generic term)|mobster (generic term)
+(noun)|Apache|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+apache dance|1
+(noun)|stage dancing (generic term)|choreography (generic term)
+apache devil dance|1
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+apadana|1
+(noun)|great hall (generic term)
+apalachicola|1
+(noun)|Apalachicola|Apalachicola River|river (generic term)
+apalachicola river|1
+(noun)|Apalachicola|Apalachicola River|river (generic term)
+apalachicola rosemary|1
+(noun)|Apalachicola rosemary|Conradina glabra|shrub (generic term)|bush (generic term)
+apanage|2
+(noun)|appanage|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+(noun)|appanage|grant (generic term)|assignment (generic term)
+apar|1
+(noun)|three-banded armadillo|Tolypeutes tricinctus|armadillo (generic term)
+apart|5
+(adj)|isolated|obscure|unconnected (similar term)
+(adj)|separate|separated|divided (similar term)
+(adj)|separate (similar term)
+(adv)|aside
+(adv)|asunder
+apartheid|1
+(noun)|social policy (generic term)
+apartment|1
+(noun)|flat|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+apartment building|1
+(noun)|apartment house|building (generic term)|edifice (generic term)
+apartment house|1
+(noun)|apartment building|building (generic term)|edifice (generic term)
+apatetic coloration|1
+(noun)|protective coloration (generic term)
+apathetic|2
+(adj)|spiritless (similar term)
+(adj)|indifferent|uninterested (similar term)
+apathy|2
+(noun)|feeling (generic term)
+(noun)|indifference|numbness|spiritlessness|passivity (generic term)|passiveness (generic term)
+apatite|1
+(noun)|mineral (generic term)
+apatosaur|1
+(noun)|apatosaurus|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+apatosaurus|1
+(noun)|apatosaur|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+apatosaurus excelsus|1
+(noun)|apatosaur|apatosaurus|brontosaur|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+apatura|1
+(noun)|Apatura|genus Apatura|arthropod genus (generic term)
+apatura iris|1
+(noun)|purple emperor|Apatura iris|emperor butterfly (generic term)|emperor (generic term)
+apc|2
+(noun)|armored personnel carrier|armoured personnel carrier|APC|armored vehicle (generic term)|armoured vehicle (generic term)
+(noun)|APC|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+ape|5
+(noun)|primate (generic term)
+(noun)|copycat|imitator|emulator|aper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|anthropoid|misfit (generic term)
+(verb)|imitate (generic term)
+(verb)|caricature|mock (generic term)
+ape-man|2
+(noun)|missing link|primitive (generic term)|primitive person (generic term)
+(noun)|wild man (generic term)|feral man (generic term)
+apeldoorn|1
+(noun)|Apeldoorn|city (generic term)|metropolis (generic term)|urban center (generic term)
+apelike|2
+(adj)|anthropoid|anthropoidal|nonhuman (similar term)
+(adj)|apish|imitative (similar term)
+apennines|1
+(noun)|Apennines|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+aper|1
+(noun)|copycat|imitator|emulator|ape|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+apercu|1
+(noun)|outline (generic term)|synopsis (generic term)|abstract (generic term)|precis (generic term)
+aperea|1
+(noun)|wild cavy|Cavia porcellus|cavy (generic term)
+aperient|2
+(adj)|laxative (similar term)
+(noun)|purgative|cathartic|physic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+aperiodic|1
+(adj)|nonperiodic|noncyclic (similar term)|nonoscillatory (similar term)|periodic (antonym)
+aperitif|1
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+apertif|1
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+aperture|3
+(noun)|regulator (generic term)
+(noun)|hole (generic term)
+(noun)|opening (generic term)
+apery|1
+(noun)|mimicry|impersonation (generic term)|personation (generic term)
+apetalous|1
+(adj)|petalless|petalous (antonym)
+apetalous flower|1
+(noun)|flower (generic term)|bloom (generic term)|blossom (generic term)
+apex|2
+(noun)|vertex|peak|acme|extreme point (generic term)|extreme (generic term)|extremum (generic term)
+(noun)|solar apex|apex of the sun's way|celestial point (generic term)|antapex (antonym)
+apex of the sun's way|1
+(noun)|apex|solar apex|celestial point (generic term)|antapex (antonym)
+apgar score|1
+(noun)|Apgar score|assay (generic term)|check (generic term)
+aphaeresis|1
+(noun)|apheresis|omission (generic term)|deletion (generic term)
+aphaeretic|1
+(adj)|apheretic|omission|deletion (related term)
+aphagia|1
+(noun)|pathology (generic term)
+aphakia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+aphakic|2
+(adj)|visual impairment|visual defect|vision defect|visual disorder (related term)
+(noun)|visually impaired person (generic term)
+aphanite|1
+(noun)|rock (generic term)|stone (generic term)
+aphanitic|1
+(adj)|rock|stone (related term)
+aphasia|1
+(noun)|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+aphasic|3
+(adj)|brain disorder|encephalopathy|brain disease (related term)
+(adj)|inarticulate (similar term)|unarticulate (similar term)
+(noun)|handicapped person (generic term)
+aphasmidia|1
+(noun)|Aphasmidia|class Aphasmidia|class (generic term)
+aphelion|1
+(noun)|apoapsis (generic term)|point of apoapsis (generic term)|perihelion (antonym)
+apheresis|2
+(noun)|aphaeresis|omission (generic term)|deletion (generic term)
+(noun)|pheresis|dialysis (generic term)
+apheretic|1
+(adj)|aphaeretic|omission|deletion (related term)
+aphesis|1
+(noun)|omission (generic term)|deletion (generic term)
+aphetic|1
+(adj)|omission|deletion (related term)
+aphid|1
+(noun)|plant louse (generic term)|louse (generic term)
+aphid lion|1
+(noun)|aphis lion|larva (generic term)
+aphididae|1
+(noun)|Aphididae|family Aphididae|arthropod family (generic term)
+aphidoidea|1
+(noun)|Aphidoidea|superfamily Aphidoidea|arthropod family (generic term)
+aphis|1
+(noun)|Aphis|genus Aphis|arthropod genus (generic term)
+aphis fabae|1
+(noun)|blackfly|bean aphid|Aphis fabae|aphid (generic term)
+aphis lion|1
+(noun)|aphid lion|larva (generic term)
+aphis pomi|1
+(noun)|apple aphid|green apple aphid|Aphis pomi|aphid (generic term)
+aphonia|1
+(noun)|voicelessness|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+aphonic|1
+(adj)|voiceless|inarticulate (similar term)|unarticulate (similar term)
+aphorise|1
+(verb)|aphorize|communicate (generic term)|intercommunicate (generic term)
+aphorism|1
+(noun)|apothegm|apophthegm|maxim (generic term)|axiom (generic term)
+aphorist|1
+(noun)|intellectual (generic term)|intellect (generic term)
+aphoristic|2
+(adj)|axiomatic|saying|expression|locution (related term)
+(adj)|apothegmatic|epigrammatic|concise (similar term)
+aphorize|1
+(verb)|aphorise|communicate (generic term)|intercommunicate (generic term)
+aphotic|1
+(adj)|dark (similar term)
+aphriza|1
+(noun)|Aphriza|genus Aphriza|bird genus (generic term)
+aphriza virgata|1
+(noun)|surfbird|Aphriza virgata|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+aphrodisia|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)|anaphrodisia (antonym)
+aphrodisiac|2
+(adj)|aphrodisiacal|sexy|anaphrodisiac (antonym)
+(noun)|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+aphrodisiacal|1
+(adj)|aphrodisiac|sexy|anaphrodisiac (antonym)
+aphrodite|1
+(noun)|Aphrodite|Cytherea|Greek deity (generic term)
+aphrophora|1
+(noun)|Aphrophora|genus Aphrophora|arthropod genus (generic term)
+aphrophora saratogensis|1
+(noun)|Saratoga spittlebug|Aphrophora saratogensis|spittle insect (generic term)|spittlebug (generic term)
+aphthous ulcer|1
+(noun)|ulcer (generic term)|ulceration (generic term)
+aphyllanthaceae|1
+(noun)|Aphyllanthaceae|family Aphyllanthaceae|liliid monocot family (generic term)
+aphyllanthes|1
+(noun)|Aphyllanthes|genus Aphyllanthes|liliid monocot genus (generic term)
+aphyllophorales|1
+(noun)|Aphyllophorales|order Aphyllophorales|fungus order (generic term)
+aphyllous|1
+(adj)|leafless (similar term)
+apia|1
+(noun)|Apia|capital of Western Samoa|national capital (generic term)
+apiaceae|1
+(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family (generic term)
+apian|1
+(adj)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter (related term)
+apiarian|1
+(adj)|farmer|husbandman|granger|sodbuster (related term)
+apiarist|1
+(noun)|beekeeper|apiculturist|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+apiary|1
+(noun)|bee house|shed (generic term)
+apical|1
+(adj)|top (similar term)
+apical placentation|1
+(noun)|placentation (generic term)
+apiculate|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+apicultural|1
+(adj)|cultivation (related term)
+apiculture|1
+(noun)|beekeeping|cultivation (generic term)
+apiculturist|1
+(noun)|beekeeper|apiarist|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+apidae|1
+(noun)|Apidae|family Apidae|arthropod family (generic term)
+apiece|1
+(adv)|each|to each one|for each one|from each one
+apios|1
+(noun)|Apios|genus Apios|rosid dicot genus (generic term)
+apios americana|1
+(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+apios tuberosa|1
+(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+apis|1
+(noun)|Apis|genus Apis|arthropod genus (generic term)
+apis mellifera|1
+(noun)|honeybee|Apis mellifera|bee (generic term)
+apis mellifera adansonii|1
+(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee (generic term)|Apis mellifera (generic term)
+apis mellifera scutellata|1
+(noun)|Africanized bee|Africanized honey bee|killer bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee (generic term)|Apis mellifera (generic term)
+apish|1
+(adj)|apelike|imitative (similar term)
+apishamore|1
+(noun)|saddle blanket (generic term)|saddlecloth (generic term)|horse blanket (generic term)
+apium|1
+(noun)|Apium|genus Apium|rosid dicot genus (generic term)
+apium graveolens|1
+(noun)|wild celery|Apium graveolens|herb (generic term)|herbaceous plant (generic term)
+apium graveolens dulce|1
+(noun)|celery|cultivated celery|Apium graveolens dulce|herb (generic term)|herbaceous plant (generic term)
+apium graveolens rapaceum|1
+(noun)|celeriac|celery root|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+apivorous|1
+(adj)|insectivorous (similar term)
+aplacental|1
+(adj)|placental (antonym)
+aplacophora|1
+(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order (generic term)
+aplacophoran|1
+(noun)|solenogaster|gastropod (generic term)|univalve (generic term)
+aplanatic|1
+(adj)|corrected (similar term)
+aplasia|1
+(noun)|dysplasia (generic term)
+aplastic anaemia|1
+(noun)|aplastic anemia|anemia (generic term)|anaemia (generic term)
+aplastic anemia|1
+(noun)|aplastic anaemia|anemia (generic term)|anaemia (generic term)
+aplectrum|1
+(noun)|Aplectrum|genus Aplectrum|monocot genus (generic term)|liliopsid genus (generic term)
+aplectrum hyemale|1
+(noun)|puttyroot|adam-and-eve|Aplectrum hyemale|orchid (generic term)|orchidaceous plant (generic term)
+aplite|1
+(noun)|igneous rock (generic term)
+aplitic|1
+(adj)|igneous rock (related term)
+aplodontia|1
+(noun)|Aplodontia|genus Aplodontia|mammal genus (generic term)
+aplodontia rufa|1
+(noun)|mountain beaver|sewellel|Aplodontia rufa|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+aplodontiidae|1
+(noun)|Aplodontiidae|family Aplodontiidae|mammal family (generic term)
+aplomb|1
+(noun)|assuredness|cool|poise|sang-froid|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+aplysia|1
+(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus (generic term)
+aplysia punctata|1
+(noun)|sea hare|Aplysia punctata|gastropod (generic term)|univalve (generic term)
+aplysiidae|1
+(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family (generic term)
+apnea|1
+(noun)|symptom (generic term)
+apneic|1
+(adj)|apnoeic|symptom (related term)
+apnoeic|1
+(adj)|apneic|symptom (related term)
+apoapsis|1
+(noun)|point of apoapsis|celestial point (generic term)|point of periapsis (antonym)|periapsis (antonym)
+apocalypse|2
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book (generic term)
+apocalyptic|2
+(adj)|apocalyptical|revelatory|prophetic (similar term)|prophetical (similar term)
+(adj)|calamity|catastrophe|disaster|tragedy|cataclysm (related term)
+apocalyptical|1
+(adj)|apocalyptic|revelatory|prophetic (similar term)|prophetical (similar term)
+apocarpous|1
+(adj)|syncarpous (antonym)
+apochromatic|1
+(adj)|corrected (similar term)
+apocope|1
+(noun)|abbreviation (generic term)
+apocrine|1
+(adj)|eccrine (antonym)
+apocrine gland|1
+(noun)|sweat gland (generic term)|sudoriferous gland (generic term)
+apocrypha|1
+(noun)|Apocrypha|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+apocryphal|2
+(adj)|questionable (similar term)
+(adj)|Apocryphal|sacred text|sacred writing|religious writing|religious text (related term)
+apocynaceae|1
+(noun)|Apocynaceae|family Apocynaceae|dogbane family|dicot family (generic term)|magnoliopsid family (generic term)
+apocynaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+apocynum|1
+(noun)|Apocynum|genus Apocynum|dicot genus (generic term)|magnoliopsid genus (generic term)
+apocynum androsaemifolium|1
+(noun)|common dogbane|spreading dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane (generic term)
+apocynum cannabinum|1
+(noun)|Indian hemp|rheumatism weed|Apocynum cannabinum|dogbane (generic term)
+apocynum pumilum|1
+(noun)|Rocky Mountain dogbane|Apocynum pumilum|dogbane (generic term)
+apodal|1
+(adj)|apodous|footless (similar term)
+apodeictic|1
+(adj)|apodictic|true (similar term)
+apodeme|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+apodemus|1
+(noun)|Apodemus|genus Apodemus|mammal genus (generic term)
+apodemus sylvaticus|1
+(noun)|European wood mouse|Apodemus sylvaticus|field mouse (generic term)|fieldmouse (generic term)
+apodictic|1
+(adj)|apodeictic|true (similar term)
+apodidae|1
+(noun)|Apodidae|family Apodidae|bird family (generic term)
+apodiform bird|1
+(noun)|bird (generic term)
+apodiformes|1
+(noun)|Apodiformes|order Apodiformes|animal order (generic term)
+apodous|1
+(adj)|apodal|footless (similar term)
+apoenzyme|1
+(noun)|protein (generic term)
+apogametic|1
+(adj)|apogamic|apogamous|apomixis (related term)
+apogamic|1
+(adj)|apogametic|apogamous|apomixis (related term)
+apogamous|1
+(adj)|apogamic|apogametic|apomixis (related term)
+apogamy|1
+(noun)|apomixis (generic term)
+apogean|1
+(adj)|apoapsis|point of apoapsis (related term)
+apogee|2
+(noun)|culmination|phase (generic term)|stage (generic term)
+(noun)|apoapsis (generic term)|point of apoapsis (generic term)|perigee (antonym)
+apogon|1
+(noun)|Apogon|genus Apogon|fish genus (generic term)
+apogon maculatus|1
+(noun)|flame fish|flamefish|Apogon maculatus|cardinalfish (generic term)
+apogonidae|1
+(noun)|Apogonidae|family Apogonidae|fish family (generic term)
+apoidea|1
+(noun)|Apoidea|superfamily Apoidea|arthropod family (generic term)
+apojove|1
+(noun)|apoapsis (generic term)|point of apoapsis (generic term)|perijove (antonym)
+apolemia|1
+(noun)|siphonophore (generic term)
+apolitical|1
+(adj)|unpolitical|nonpolitical (similar term)
+apollinaire|1
+(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet (generic term)
+apollo|1
+(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity (generic term)
+apollo asteroid|1
+(noun)|Apollo asteroid|asteroid (generic term)
+apollo program|1
+(noun)|Apollo program|space program (generic term)
+apologetic|1
+(adj)|excusatory|contrite (similar term)|defensive (similar term)|justificative (similar term)|justificatory (similar term)|self-deprecating (similar term)|unapologetic (antonym)
+apologetics|1
+(noun)|theology (generic term)|divinity (generic term)
+apologia|1
+(noun)|apology|defense (generic term)|defence (generic term)|vindication (generic term)
+apologise|2
+(verb)|apologize|excuse|justify|rationalize|rationalise|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|apologize
+apologist|1
+(noun)|vindicator|justifier|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+apologize|2
+(verb)|apologise
+(verb)|apologise|excuse|justify|rationalize|rationalise|defend (generic term)|support (generic term)|fend for (generic term)
+apologue|1
+(noun)|fable|parable|allegory|story (generic term)
+apology|3
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|apologia|defense (generic term)|defence (generic term)|vindication (generic term)
+(noun)|excuse|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+apolune|1
+(noun)|aposelene|apoapsis (generic term)|point of apoapsis (generic term)|perilune (antonym)|periselene (antonym)
+apomict|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+apomictic|2
+(adj)|apomictical|plant|flora|plant life (related term)
+(adj)|agamic|agamous|agamogenetic|parthenogenetic|asexual (similar term)|nonsexual (similar term)
+apomictical|1
+(adj)|apomictic|plant|flora|plant life (related term)
+apomixis|1
+(noun)|asexual reproduction (generic term)|agamogenesis (generic term)
+apomorphine|1
+(noun)|morphine (generic term)|morphia (generic term)
+aponeurosis|1
+(noun)|fascia (generic term)|facia (generic term)
+aponeurotic|1
+(adj)|fascia|facia (related term)
+apopemptic|1
+(adj)|departure|going|going away|leaving (related term)
+apophasis|1
+(noun)|rhetorical device (generic term)
+apophatic|1
+(adj)|religion|faith|religious belief (related term)
+apophatism|1
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)|cataphatism (antonym)|doctrine of analogy (antonym)
+apophthegm|1
+(noun)|aphorism|apothegm|maxim (generic term)|axiom (generic term)
+apophyseal|1
+(adj)|process|outgrowth|appendage (related term)|plant process|enation (related term)
+apophysis|2
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+apoplectic|1
+(adj)|attack (related term)
+apoplectiform|1
+(adj)|apoplectoid|attack (related term)
+apoplectoid|1
+(adj)|apoplectiform|attack (related term)
+apoplexy|1
+(noun)|stroke|cerebrovascular accident|CVA|attack (generic term)
+apoptosis|1
+(noun)|programmed cell death|caspase-mediated cell death|necrobiosis (generic term)|cell death (generic term)
+aporocactus|1
+(noun)|Aporocactus|genus Aporocactus|caryophylloid dicot genus (generic term)
+aporocactus flagelliformis|1
+(noun)|rattail cactus|rat's-tail cactus|Aporocactus flagelliformis|cactus (generic term)
+aposelene|1
+(noun)|apolune|apoapsis (generic term)|point of apoapsis (generic term)|perilune (antonym)|periselene (antonym)
+aposematic coloration|1
+(noun)|warning coloration|protective coloration (generic term)
+aposiopesis|1
+(noun)|rhetorical device (generic term)
+aposiopetic|1
+(adj)|rhetorical device (related term)
+apostasy|2
+(noun)|renunciation|defection|rejection (generic term)
+(noun)|tergiversation|abandonment (generic term)|forsaking (generic term)|desertion (generic term)
+apostate|2
+(adj)|unfaithful (similar term)
+(noun)|deserter|renegade|turncoat|recreant|ratter|quitter (generic term)
+apostatise|1
+(verb)|apostatize|tergiversate|renounce (generic term)|repudiate (generic term)
+apostatize|1
+(verb)|apostatise|tergiversate|renounce (generic term)|repudiate (generic term)
+apostelic father|1
+(noun)|Apostle|Apostelic Father|Christian (generic term)
+apostle|3
+(noun)|believer (generic term)|truster (generic term)
+(noun)|Apostle|Apostelic Father|Christian (generic term)
+(noun)|Apostle|Christian (generic term)|disciple (generic term)|adherent (generic term)
+apostle of germany|1
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+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 (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+apostle paul|1
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+apostleship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+apostolic|2
+(adj)|apostolical|Christian|disciple|adherent (related term)
+(adj)|papal|apostolical|pontifical|spiritual leader|Catholic (related term)
+apostolic delegate|1
+(noun)|delegate (generic term)
+apostolical|2
+(adj)|papal|apostolic|pontifical|spiritual leader|Catholic (related term)
+(adj)|apostolic|Christian|disciple|adherent (related term)
+apostrophe|2
+(noun)|rhetorical device (generic term)
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+apostrophic|1
+(adj)|rhetorical device (related term)
+apostrophise|1
+(verb)|apostrophize|write (generic term)
+apostrophize|1
+(verb)|apostrophise|write (generic term)
+apothecaries' ounce|1
+(noun)|ounce|troy ounce|apothecaries' unit (generic term)|apothecaries' weight (generic term)|troy unit (generic term)
+apothecaries' pound|1
+(noun)|troy pound|apothecaries' unit (generic term)|apothecaries' weight (generic term)|troy unit (generic term)
+apothecaries' unit|1
+(noun)|apothecaries' weight|weight unit (generic term)|weight (generic term)
+apothecaries' weight|1
+(noun)|apothecaries' unit|weight unit (generic term)|weight (generic term)
+apothecary|1
+(noun)|pharmacist|druggist|chemist|pill pusher|pill roller|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+apothecary's shop|1
+(noun)|drugstore|chemist's|chemist's shop|pharmacy|shop (generic term)|store (generic term)
+apothecial|1
+(adj)|ascocarp (related term)
+apothecium|1
+(noun)|ascocarp (generic term)
+apothegm|1
+(noun)|aphorism|apophthegm|maxim (generic term)|axiom (generic term)
+apothegmatic|2
+(adj)|apothegmatical|maxim|axiom (related term)
+(adj)|aphoristic|epigrammatic|concise (similar term)
+apothegmatical|1
+(adj)|apothegmatic|maxim|axiom (related term)
+apotheose|1
+(verb)|apotheosize|apotheosise|deify (generic term)
+apotheosis|2
+(noun)|ideal|paragon|nonpareil|saint|nonesuch|nonsuch|model (generic term)|role model (generic term)
+(noun)|deification|exaltation|worship (generic term)
+apotheosise|1
+(verb)|apotheosize|apotheose|deify (generic term)
+apotheosize|1
+(verb)|apotheosise|apotheose|deify (generic term)
+apotropaic|1
+(adj)|lucky (similar term)
+appal|2
+(verb)|shock|offend|scandalize|scandalise|appall|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+(verb)|dismay|alarm|appall|horrify|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+appalachia|1
+(noun)|Appalachia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+appalachian|2
+(adj)|Appalachian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Appalachian|American (generic term)
+appalachian mountains|1
+(noun)|Appalachians|Appalachian Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+appalachians|1
+(noun)|Appalachians|Appalachian Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+appall|2
+(verb)|shock|offend|scandalize|scandalise|appal|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+(verb)|dismay|alarm|appal|horrify|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+appalled|1
+(adj)|aghast|dismayed|shocked|afraid (similar term)
+appalling|2
+(adj)|dismaying|alarming (similar term)
+(noun)|experience (generic term)
+appaloosa|1
+(noun)|Appaloosa|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+appanage|2
+(noun)|apanage|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+(noun)|apanage|grant (generic term)|assignment (generic term)
+apparatus|2
+(noun)|setup|equipment (generic term)
+(noun)|body part (generic term)
+apparatus urogenitalis|1
+(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|system (generic term)
+apparel|2
+(noun)|wearing apparel|dress|clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|change state (generic term)|turn (generic term)|undress (antonym)
+apparel chain|1
+(noun)|chain (generic term)
+apparel industry|1
+(noun)|garment industry|fashion industry|fashion business|rag trade|industry (generic term)
+appareled|1
+(adj)|attired|dressed|garbed|garmented|habilimented|robed|clothed (similar term)|clad (similar term)
+apparency|1
+(noun)|apparentness|obviousness (generic term)|noticeability (generic term)|noticeableness (generic term)|patency (generic term)
+apparent|2
+(adj)|evident|manifest|patent|plain|unmistakable|obvious (similar term)
+(adj)|ostensible|seeming|superficial (similar term)
+apparent horizon|1
+(noun)|horizon|visible horizon|sensible horizon|skyline|line (generic term)
+apparent motion|1
+(noun)|motion|apparent movement|movement|optical illusion (generic term)
+apparent movement|1
+(noun)|apparent motion|motion|movement|optical illusion (generic term)
+apparently|2
+(adv)|seemingly|ostensibly|on the face of it
+(adv)|obviously|evidently|manifestly|patently|plainly|plain
+apparentness|1
+(noun)|apparency|obviousness (generic term)|noticeability (generic term)|noticeableness (generic term)|patency (generic term)
+apparition|3
+(noun)|phantom|phantasm|phantasma|fantasm|specter|spectre|spirit (generic term)|disembodied spirit (generic term)
+(noun)|phantom|phantasm|phantasma|fantasm|shadow|illusion (generic term)|semblance (generic term)
+(noun)|appearance (generic term)
+apparitional|1
+(adj)|ghostlike|ghostly|phantasmal|spectral|spiritual|supernatural (similar term)
+appeal|9
+(noun)|entreaty|prayer|request (generic term)|asking (generic term)
+(noun)|appealingness|charm|attractiveness (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|solicitation|collection|ingathering|request (generic term)|petition (generic term)|postulation (generic term)
+(verb)|challenge (generic term)
+(verb)|invoke|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|attract|repel (antonym)
+(verb)|challenge (generic term)|take exception (generic term)
+(verb)|invoke|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+appeal board|1
+(noun)|appeals board|board of appeals|board (generic term)
+appealable|1
+(adj)|unappealable (antonym)
+appealing|3
+(adj)|attention-getting (similar term)|catchy (similar term)|attractive (similar term)|unappealing (antonym)
+(adj)|sympathetic|likeable|likable|unsympathetic (antonym)
+(adj)|imploring|importunate|pleading|beseeching (similar term)
+appealingly|1
+(adv)|unappealingly (antonym)
+appealingness|1
+(noun)|appeal|charm|attractiveness (generic term)
+appeals board|1
+(noun)|appeal board|board of appeals|board (generic term)
+appeals court|1
+(noun)|appellate court|court of appeals|court (generic term)|tribunal (generic term)|judicature (generic term)
+appear|6
+(verb)|look|seem|be (generic term)
+(verb)|disappear (antonym)
+(verb)|come out|happen (generic term)|materialize (generic term)|materialise (generic term)
+(verb)|seem|be (generic term)
+(verb)|come along|disappear (antonym)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+appearance|6
+(noun)|visual aspect|quality (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|disappearance (antonym)
+(noun)|appearing|coming into court|attendance (generic term)|attending (generic term)
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|arrival (generic term)|disappearance (antonym)
+(noun)|show|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+appearing|1
+(noun)|appearance|coming into court|attendance (generic term)|attending (generic term)
+appeasable|1
+(adj)|conciliable|placable (similar term)
+appease|3
+(verb)|pacify|lenify|conciliate|assuage|mollify|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|quell|stay|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|propitiate|reconcile (generic term)|patch up (generic term)|make up (generic term)|conciliate (generic term)|settle (generic term)
+appeasement|1
+(noun)|calming|social control (generic term)
+appeaser|1
+(noun)|conciliator (generic term)|make-peace (generic term)|pacifier (generic term)|peacemaker (generic term)|reconciler (generic term)
+appeasing|1
+(adj)|placating|placative|placatory|conciliatory (similar term)|conciliative (similar term)
+appellant|2
+(adj)|appellate|proceeding|legal proceeding|proceedings (related term)
+(noun)|plaintiff in error|litigant (generic term)|litigator (generic term)
+appellate|1
+(adj)|appellant|proceeding|legal proceeding|proceedings (related term)
+appellate court|1
+(noun)|appeals court|court of appeals|court (generic term)|tribunal (generic term)|judicature (generic term)
+appellation|1
+(noun)|denomination|designation|appellative|name (generic term)
+appellative|3
+(adj)|content word|open-class word|substantive (related term)
+(adj)|naming|denotative (similar term)|denotive (similar term)
+(noun)|appellation|denomination|designation|name (generic term)
+append|3
+(verb)|add on|supplement|affix|attach (generic term)
+(verb)|tag on|tack on|tack|hang on|attach (generic term)
+(verb)|add|supply|state (generic term)|say (generic term)|tell (generic term)
+appendage|3
+(noun)|extremity|member|external body part (generic term)
+(noun)|process|outgrowth|body part (generic term)
+(noun)|part (generic term)|portion (generic term)
+appendaged|1
+(adj)|unappendaged (antonym)
+appendant|1
+(adj)|affixed (similar term)
+appendectomy|1
+(noun)|appendicectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+appendicectomy|1
+(noun)|appendectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+appendicitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+appendicle|1
+(noun)|appendage (generic term)
+appendicular|1
+(adj)|external body part (related term)
+appendicular artery|1
+(noun)|arteria appendicularis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+appendicular skeleton|1
+(noun)|skeletal structure (generic term)
+appendicular vein|1
+(noun)|vena appendicularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+appendicularia|1
+(noun)|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+appendix|2
+(noun)|addendum (generic term)|supplement (generic term)|postscript (generic term)
+(noun)|vermiform appendix|vermiform process|cecal appendage|process (generic term)|outgrowth (generic term)|appendage (generic term)
+apperceive|1
+(verb)|perceive (generic term)|comprehend (generic term)
+apperception|1
+(noun)|basic cognitive process (generic term)
+apperceptive|1
+(adj)|perceptive (similar term)
+appertain|1
+(verb)|pertain|dwell (generic term)|consist (generic term)|lie (generic term)|belong (generic term)|lie in (generic term)
+appetence|1
+(noun)|appetite|appetency|craving (generic term)
+appetency|1
+(noun)|appetite|appetence|craving (generic term)
+appetent|1
+(adj)|desirous (similar term)|wishful (similar term)
+appetiser|1
+(noun)|appetizer|starter|course (generic term)
+appetising|1
+(adj)|appetizing|mouth-watering (similar term)|savory (similar term)|savoury (similar term)|palatable (related term)|toothsome (related term)|tasty (related term)|unappetizing (antonym)
+appetisingness|1
+(noun)|appetizingness|palatability (generic term)|palatableness (generic term)|unappetizingness (antonym)
+appetite|1
+(noun)|appetency|appetence|craving (generic term)
+appetite suppressant|1
+(noun)|suppressant|drug (generic term)
+appetitive|1
+(adj)|craving (related term)
+appetizer|1
+(noun)|appetiser|starter|course (generic term)
+appetizing|1
+(adj)|appetising|mouth-watering (similar term)|savory (similar term)|savoury (similar term)|palatable (related term)|toothsome (related term)|tasty (related term)|unappetizing (antonym)
+appetizingness|1
+(noun)|appetisingness|palatability (generic term)|palatableness (generic term)|unappetizingness (antonym)
+appian way|1
+(noun)|Appian Way|highway (generic term)|main road (generic term)
+applaud|2
+(verb)|clap|spat|acclaim|gesticulate (generic term)|gesture (generic term)|motion (generic term)|boo (antonym)
+(verb)|praise (generic term)
+applaudable|1
+(adj)|commendable|laudable|praiseworthy|worthy (similar term)
+applauder|1
+(noun)|clapper|laudator (generic term)|lauder (generic term)|extoller (generic term)
+applause|1
+(noun)|hand clapping|clapping|approval (generic term)|commendation (generic term)
+apple|2
+(noun)|edible fruit (generic term)|pome (generic term)|false fruit (generic term)
+(noun)|orchard apple tree|Malus pumila|apple tree (generic term)
+apple-scented|1
+(adj)|odorous (similar term)
+apple-shaped|1
+(adj)|round (similar term)|circular (similar term)
+apple-sized|1
+(adj)|sized (similar term)
+apple aphid|1
+(noun)|green apple aphid|Aphis pomi|aphid (generic term)
+apple blight|1
+(noun)|apple canker|blight (generic term)
+apple butter|1
+(noun)|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+apple canker|1
+(noun)|apple blight|blight (generic term)
+apple dumpling|1
+(noun)|dumpling (generic term)
+apple fritter|1
+(noun)|fritter (generic term)
+apple geranium|1
+(noun)|nutmeg geranium|Pelargonium odoratissimum|geranium (generic term)
+apple jelly|1
+(noun)|jelly (generic term)
+apple juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+apple maggot|1
+(noun)|railroad worm|Rhagoletis pomonella|fruit fly (generic term)|pomace fly (generic term)
+apple mint|1
+(noun)|applemint|Mentha rotundifolia|Mentha suaveolens|mint (generic term)
+apple nut|1
+(noun)|ivory nut|vegetable ivory|seed (generic term)
+apple of discord|1
+(noun)|trophy (generic term)|prize (generic term)
+apple of peru|2
+(noun)|apple of Peru|shoo fly|Nicandra physaloides|herb (generic term)|herbaceous plant (generic term)
+(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple (generic term)
+apple orchard|1
+(noun)|grove (generic term)|woodlet (generic term)|orchard (generic term)|plantation (generic term)
+apple pie|1
+(noun)|pie (generic term)
+apple polisher|1
+(noun)|bootlicker|fawner|groveller|groveler|truckler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+apple rust|1
+(noun)|cedar-apple rust|Gymnosporangium juniperi-virginianae|rust (generic term)|rust fungus (generic term)
+apple sauce|1
+(noun)|applesauce|dish (generic term)
+apple tart|1
+(noun)|tart (generic term)
+apple tree|1
+(noun)|fruit tree (generic term)
+apple turnover|1
+(noun)|turnover (generic term)
+applecart|2
+(noun)|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+applejack|1
+(noun)|brandy (generic term)
+applemint|1
+(noun)|apple mint|Mentha rotundifolia|Mentha suaveolens|mint (generic term)
+applesauce|2
+(noun)|apple sauce|dish (generic term)
+(noun)|folderol|rubbish|tripe|trumpery|trash|wish-wash|codswallop|drivel (generic term)|garbage (generic term)
+applesauce cake|1
+(noun)|cake (generic term)
+applet|1
+(noun)|application (generic term)|application program (generic term)|applications programme (generic term)
+appleton|2
+(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist (generic term)
+(noun)|Appleton|town (generic term)
+appleton layer|1
+(noun)|Appleton layer|F layer|F region|region (generic term)|part (generic term)
+applewood|1
+(noun)|fruitwood (generic term)
+appliance|2
+(noun)|contraption|contrivance|convenience|gadget|gizmo|gismo|widget|device (generic term)
+(noun)|durables (generic term)|durable goods (generic term)|consumer durables (generic term)
+applicability|1
+(noun)|pertinence|pertinency|relevance (generic term)|relevancy (generic term)|inapplicability (antonym)
+applicable|2
+(adj)|relevant (similar term)
+(adj)|applicative|applicatory|practical (similar term)
+applicant|1
+(noun)|applier|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+application|6
+(noun)|request (generic term)|petition (generic term)|postulation (generic term)
+(noun)|practical application|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(noun)|application program|applications programme|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|coating|covering|manual labor (generic term)|manual labour (generic term)
+(noun)|lotion|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|diligence|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+application-oriented language|1
+(noun)|problem-oriented language|source language (generic term)
+application form|1
+(noun)|form (generic term)
+application program|1
+(noun)|application|applications programme|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+applications programme|1
+(noun)|application|application program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+applicative|1
+(adj)|applicable|applicatory|practical (similar term)
+applicator|1
+(noun)|applier|device (generic term)
+applicatory|1
+(adj)|applicable|applicative|practical (similar term)
+applied|2
+(adj)|practical (similar term)|theoretical (antonym)
+(adj)|practical (similar term)
+applied anatomy|1
+(noun)|clinical anatomy|anatomy (generic term)|general anatomy (generic term)
+applied math|1
+(noun)|applied mathematics|mathematics (generic term)|math (generic term)|maths (generic term)
+applied mathematics|1
+(noun)|applied math|mathematics (generic term)|math (generic term)|maths (generic term)
+applied psychology|1
+(noun)|industrial psychology|psychology (generic term)|psychological science (generic term)
+applied science|1
+(noun)|engineering|engineering science|technology|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+applied scientist|1
+(noun)|engineer|technologist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+applier|2
+(noun)|applicant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|applicator|device (generic term)
+applique|2
+(noun)|sewing (generic term)|stitchery (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+apply|10
+(verb)|use|utilize|utilise|employ
+(verb)|hold|go for|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|put on|cover (generic term)
+(verb)|lend oneself|defy (antonym)
+(verb)|give|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+(verb)|practice|use
+(verb)|enforce|implement|compel (generic term)|oblige (generic term)|obligate (generic term)|exempt (antonym)
+(verb)|denote (generic term)|refer (generic term)
+(verb)|give (generic term)|dedicate (generic term)|consecrate (generic term)|commit (generic term)|devote (generic term)
+appoggiatura|1
+(noun)|grace note|acciaccatura|note (generic term)|musical note (generic term)|tone (generic term)
+appoint|3
+(verb)|name|nominate|constitute|establish (generic term)|found (generic term)|plant (generic term)|constitute (generic term)|institute (generic term)
+(verb)|charge
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+appointed|4
+(adj)|appointive|nominated (similar term)|nominative (similar term)|nonelective (similar term)|non-elective (similar term)|nonelected (similar term)|elective (antonym)
+(adj)|assigned (similar term)
+(adj)|decreed|ordained|prescribed|settled (similar term)
+(adj)|furnished (similar term)|equipped (similar term)
+appointee|2
+(noun)|official (generic term)|functionary (generic term)
+(noun)|appointment|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+appointive|2
+(adj)|decision|determination|conclusion (related term)
+(adj)|appointed|nominated (similar term)|nominative (similar term)|nonelective (similar term)|non-elective (similar term)|nonelected (similar term)|elective (antonym)
+appointment|6
+(noun)|assignment|designation|naming|decision (generic term)|determination (generic term)|conclusion (generic term)
+(noun)|date|engagement|meeting (generic term)|get together (generic term)
+(noun)|fitting|furnishing (generic term)
+(noun)|appointee|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|disposal (generic term)|disposition (generic term)
+appointment book|1
+(noun)|appointment calendar|book (generic term)
+appointment calendar|1
+(noun)|appointment book|book (generic term)
+apportion|2
+(verb)|allocate|assign (generic term)|allot (generic term)|portion (generic term)
+(verb)|share|divvy up|portion out|deal|distribute (generic term)|give out (generic term)|hand out (generic term)|pass out (generic term)
+apportionable|1
+(adj)|allocable|allocatable|distributive (similar term)
+apportioned|1
+(adj)|dealt out|doled out|meted out|parceled out|distributed (similar term)
+apportioning|1
+(noun)|allotment|apportionment|allocation|parceling|parcelling|assignation|distribution (generic term)
+apportionment|1
+(noun)|allotment|apportioning|allocation|parceling|parcelling|assignation|distribution (generic term)
+apposable|1
+(adj)|opposable|unopposable (antonym)
+appose|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+apposite|1
+(adj)|appropriate|apt|pertinent|apropos (similar term)
+appositeness|1
+(noun)|aptness|appropriateness (generic term)|inappositeness (antonym)|inaptness (antonym)
+apposition|3
+(noun)|modification (generic term)|qualifying (generic term)|limiting (generic term)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|juxtaposition|collocation|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+appositional|1
+(adj)|appositive|modification|qualifying|limiting (related term)
+appositive|1
+(adj)|appositional|modification|qualifying|limiting (related term)
+appositively|1
+(adv)|in apposition
+appraisal|2
+(noun)|assessment|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+(noun)|estimate|estimation|commercial document (generic term)|commercial instrument (generic term)
+appraise|2
+(verb)|measure|evaluate|valuate|assess|value|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|survey|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+appraiser|2
+(noun)|valuator|evaluator (generic term)|judge (generic term)
+(noun)|authenticator|critic (generic term)
+appraising|1
+(adj)|evaluative|critical (similar term)
+appreciable|1
+(adj)|considerable (similar term)
+appreciate|5
+(verb)|acknowledge (generic term)|recognize (generic term)|recognise (generic term)
+(verb)|take account|understand (generic term)|realize (generic term)|realise (generic term)|see (generic term)
+(verb)|prize|value|treasure|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|apprize|apprise|revalue|increase (generic term)|depreciate (antonym)
+(verb)|apprize|apprise|revalue (generic term)|depreciate (antonym)
+appreciated|2
+(adj)|gratifying|pleasing|satisfying|rewarding (similar term)
+(adj)|apprehended|comprehended|understood (similar term)
+appreciation|5
+(noun)|grasp|hold|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|taste|discernment|perceptiveness|discrimination (generic term)|secernment (generic term)
+(noun)|thanks (generic term)
+(noun)|admiration|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|increase (generic term)|step-up (generic term)|depreciation (antonym)
+appreciative|2
+(adj)|grateful (similar term)|thankful (similar term)
+(adj)|discriminating (similar term)
+appreciatively|1
+(adv)|gratefully|ungratefully (antonym)|unappreciatively (antonym)
+appreciativeness|1
+(noun)|gratefulness|thankfulness|gratitude (generic term)
+appreciator|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+apprehend|3
+(verb)|grok|get the picture|comprehend|savvy|dig|grasp|compass|understand (generic term)
+(verb)|collar|nail|arrest|pick up|nab|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|quail at|anticipate (generic term)|look for (generic term)|look to (generic term)
+apprehended|1
+(adj)|appreciated|comprehended|understood (similar term)
+apprehender|2
+(noun)|knower|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+apprehensible|1
+(adj)|intelligible|graspable|perceivable|understandable|comprehensible (similar term)|comprehendible (similar term)
+apprehension|4
+(noun)|apprehensiveness|dread|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|understanding|discernment|savvy|knowing (generic term)
+(noun)|misgiving|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(noun)|arrest|catch|collar|pinch|taking into custody|capture (generic term)|gaining control (generic term)|seizure (generic term)
+apprehensive|3
+(adj)|discerning|perceptive (similar term)
+(adj)|worried|uneasy (similar term)
+(adj)|afraid (similar term)
+apprehensively|1
+(adv)|anxiously|uneasily
+apprehensiveness|1
+(noun)|apprehension|dread|fear (generic term)|fearfulness (generic term)|fright (generic term)
+apprentice|2
+(noun)|learner|prentice|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(verb)|train (generic term)|prepare (generic term)
+apprenticed|1
+(adj)|articled|bound|indentured|unfree (similar term)
+apprenticeship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+appressed|1
+(adj)|adpressed|close (similar term)
+apprisal|1
+(noun)|telling|notification|informing (generic term)|making known (generic term)
+apprise|4
+(verb)|advise|notify|give notice|send word|apprize|inform (generic term)
+(verb)|instruct|apprize|inform (generic term)
+(verb)|appreciate|apprize|revalue|increase (generic term)|depreciate (antonym)
+(verb)|appreciate|apprize|revalue (generic term)|depreciate (antonym)
+apprize|4
+(verb)|advise|notify|give notice|send word|apprise|inform (generic term)
+(verb)|instruct|apprise|inform (generic term)
+(verb)|appreciate|apprise|revalue|increase (generic term)|depreciate (antonym)
+(verb)|appreciate|apprise|revalue (generic term)|depreciate (antonym)
+appro|1
+(noun)|approval (generic term)|favorable reception (generic term)|favourable reception (generic term)
+approach|14
+(noun)|attack|plan of attack|conceptualization (generic term)|conceptualisation (generic term)|formulation (generic term)
+(noun)|approaching|coming|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|access|way (generic term)
+(noun)|approach path|glide path|glide slope|air lane (generic term)|flight path (generic term)|airway (generic term)|skyway (generic term)
+(noun)|approaching|movement (generic term)|motion (generic term)
+(noun)|overture|advance|feeler|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|approaching|coming|timing (generic term)
+(noun)|similarity (generic term)
+(noun)|approach shot|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(verb)|near|come on|go up|draw near|draw close|come near|come (generic term)|come up (generic term)
+(verb)|border on|approximate (generic term)|come close (generic term)
+(verb)|set about|go about|act (generic term)|move (generic term)
+(verb)|come near|come (generic term)|come up (generic term)
+(verb)|address (generic term)|accost (generic term)|come up to (generic term)
+approach path|1
+(noun)|approach|glide path|glide slope|air lane (generic term)|flight path (generic term)|airway (generic term)|skyway (generic term)
+approach pattern|1
+(noun)|traffic pattern|pattern|path (generic term)|route (generic term)|itinerary (generic term)
+approach shot|1
+(noun)|approach|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+approach trench|1
+(noun)|communication trench|trench (generic term)
+approachability|1
+(noun)|accessibility|friendliness (generic term)|unapproachability (antonym)
+approachable|3
+(adj)|accessible|comprehensible (similar term)|comprehendible (similar term)
+(adj)|accessible (similar term)|unapproachable (antonym)
+(adj)|reachable|accessible (similar term)
+approaching|4
+(adj)|coming|forthcoming|upcoming|future (similar term)
+(noun)|approach|movement (generic term)|motion (generic term)
+(noun)|approach|coming|timing (generic term)
+(noun)|approach|coming|motion (generic term)|movement (generic term)|move (generic term)
+approbate|2
+(verb)|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)
+(verb)|accept (generic term)|reprobate (antonym)
+approbation|2
+(noun)|approval (generic term)
+(noun)|approval (generic term)|commendation (generic term)|disapprobation (antonym)
+approbative|1
+(adj)|approving|approbatory|plausive|favorable (similar term)|favourable (similar term)
+approbatory|1
+(adj)|approving|approbative|plausive|favorable (similar term)|favourable (similar term)
+appropriable|1
+(adj)|alienable (similar term)
+appropriate|7
+(adj)|befitting (similar term)|grade-appropriate (similar term)|pat (similar term)|proper (similar term)|right (similar term)|suitable (similar term)|suited (similar term)|apropos (related term)|proper (related term)|inappropriate (antonym)
+(adj)|advantageous|expedient (similar term)
+(adj)|suitable|suited|fit (similar term)
+(adj)|harmonious|congruous (similar term)|congruent (similar term)
+(adj)|apposite|apt|pertinent|apropos (similar term)
+(verb)|allow|earmark|set aside|reserve|assign (generic term)|allot (generic term)|portion (generic term)
+(verb)|capture|seize|conquer|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+appropriated|1
+(adj)|condemned|confiscate|confiscated|seized|taken over|taken (similar term)
+appropriately|1
+(adv)|suitably|fittingly|befittingly|fitly|unsuitably (antonym)|inappropriately (antonym)
+appropriateness|2
+(noun)|rightness|propriety (generic term)|properness (generic term)|correctitude (generic term)|inappropriateness (antonym)
+(noun)|suitability (generic term)|suitableness (generic term)|inappropriateness (antonym)
+appropriation|3
+(noun)|money (generic term)
+(noun)|annexation|incorporation (generic term)
+(noun)|acquiring (generic term)|getting (generic term)
+appropriation bill|1
+(noun)|bill (generic term)|measure (generic term)
+appropriative|1
+(adj)|acquiring|getting (related term)
+appropriator|1
+(noun)|acquirer (generic term)
+approval|4
+(noun)|blessing|approving|support (generic term)|disapproval (antonym)
+(noun)|liking (generic term)|disapproval (antonym)
+(noun)|favorable reception|favourable reception|acceptance (generic term)
+(noun)|commendation|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)|disapproval (antonym)
+approve|2
+(verb)|O.K.|okay|sanction|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|disapprove (antonym)
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|disapprove (antonym)
+approved|2
+(adj)|sanctioned|authorized (similar term)|authorised (similar term)
+(adj)|disapproved (antonym)
+approver|1
+(noun)|authority (generic term)
+approving|2
+(adj)|approbative|approbatory|plausive|favorable (similar term)|favourable (similar term)
+(noun)|blessing|approval|support (generic term)|disapproval (antonym)
+approvingly|1
+(adv)|with approval|disapprovingly (antonym)
+approximate|5
+(adj)|approximative|rough|inexact (similar term)
+(adj)|near|close (similar term)
+(adj)|close together|close (similar term)
+(verb)|come close|resemble (generic term)
+(verb)|estimate|gauge|guess|judge|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|overestimate (related term)|underestimate (related term)
+approximate range|1
+(noun)|ballpark|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+approximately|1
+(adv)|about|close to|just about|some|roughly|more or less|around|or so
+approximation|4
+(noun)|estimate|estimation|idea|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|similarity (generic term)
+(noun)|version (generic term)
+(noun)|bringing close together|joining (generic term)|connection (generic term)|connexion (generic term)
+approximative|1
+(adj)|approximate|rough|inexact (similar term)
+appurtenance|2
+(noun)|gear|paraphernalia|equipment (generic term)
+(noun)|accessory|supplement|add-on|component (generic term)|constituent (generic term)|element (generic term)
+appurtenant|1
+(adj)|accessory|adjunct|ancillary|adjuvant|auxiliary|subsidiary|supportive (similar term)
+apr|1
+(noun)|April|Apr|Gregorian calendar month (generic term)
+apractic|1
+(adj)|apraxic|unfit (similar term)
+apraxia|1
+(noun)|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+apraxic|1
+(adj)|apractic|unfit (similar term)
+apresoline|1
+(noun)|hydralazine|Apresoline|antihypertensive (generic term)|antihypertensive drug (generic term)|vasodilator (generic term)|vasodilative (generic term)
+apricot|3
+(noun)|apricot tree|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+(noun)|yellowish pink|peach|salmon pink|pink (generic term)
+apricot bar|1
+(noun)|fruit bar (generic term)
+apricot sauce|1
+(noun)|sauce (generic term)
+apricot tree|1
+(noun)|apricot|fruit tree (generic term)
+april|1
+(noun)|April|Apr|Gregorian calendar month (generic term)
+april 14|1
+(noun)|Pan American Day|April 14|day (generic term)
+april fool|2
+(noun)|April fool|butt (generic term)|goat (generic term)|laughingstock (generic term)|stooge (generic term)
+(noun)|April fool|practical joke (generic term)
+april fools'|1
+(noun)|April Fools'|April Fools' day|All Fools' day|day (generic term)
+april fools' day|1
+(noun)|April Fools'|April Fools' day|All Fools' day|day (generic term)
+apron|4
+(noun)|protective garment (generic term)
+(noun)|site (generic term)|land site (generic term)
+(noun)|proscenium|forestage|stage (generic term)
+(noun)|paved surface (generic term)
+apron string|1
+(noun)|cord (generic term)
+apropos|3
+(adj)|apposite (similar term)|appropriate (similar term)|apt (similar term)|pertinent (similar term)|appropriate (related term)|malapropos (antonym)
+(adv)|incidentally
+(adv)|seasonably|timely|well-timed
+apse|1
+(noun)|apsis|recess (generic term)|niche (generic term)
+apsidal|1
+(adj)|recess|niche (related term)
+apsis|1
+(noun)|apse|recess (generic term)|niche (generic term)
+apsu|1
+(noun)|Apsu|Semitic deity (generic term)
+apt|4
+(adj)|liable|likely (similar term)
+(adj)|clever|intelligent (similar term)
+(adj)|disposed|given|minded|tending|inclined (similar term)
+(adj)|apposite|appropriate|pertinent|apropos (similar term)
+aptenodytes|1
+(noun)|Aptenodytes|genus Aptenodytes|bird genus (generic term)
+aptenodytes forsteri|1
+(noun)|emperor penguin|Aptenodytes forsteri|penguin (generic term)
+aptenodytes patagonica|1
+(noun)|king penguin|Aptenodytes patagonica|penguin (generic term)
+apteral|2
+(adj)|amphiprostylar (similar term)|amphiprostyle (similar term)|amphistylar (similar term)|porticoed (similar term)|prostyle (similar term)|pseudoprostyle (similar term)|peripteral (antonym)
+(adj)|apterous|wingless (similar term)
+apterous|1
+(adj)|apteral|wingless (similar term)
+apterygidae|1
+(noun)|Apterygidae|family Apterygidae|bird family (generic term)
+apterygiformes|1
+(noun)|Apterygiformes|order Apterygiformes|animal order (generic term)
+apteryx|1
+(noun)|kiwi|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+aptitude|1
+(noun)|ability (generic term)|power (generic term)|inaptitude (antonym)
+aptitudinal|1
+(adj)|ability|power (related term)
+aptly|1
+(adv)|competently|ably|capably|with competence|incompetently (antonym)
+aptness|2
+(noun)|propensity|disposition (generic term)
+(noun)|appositeness|appropriateness (generic term)|inappositeness (antonym)|inaptness (antonym)
+apulia|1
+(noun)|Puglia|Apulia|Italian region (generic term)
+apus|2
+(noun)|Apus|constellation (generic term)
+(noun)|Apus|genus Apus|bird genus (generic term)
+apus apus|1
+(noun)|European swift|Apus apus|swift (generic term)
+apyretic tetanus|1
+(noun)|tetany|tetanilla|intermittent tetanus|intermittent cramp|syndrome (generic term)
+aqaba|1
+(noun)|Al Aqabah|Aqaba|Akaba|city (generic term)|metropolis (generic term)|urban center (generic term)
+aqua|1
+(noun)|greenish blue|aquamarine|turquoise|cobalt blue|peacock blue|blue (generic term)|blueness (generic term)
+aqua-lung|1
+(noun)|aqualung|Aqua-Lung|scuba|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+aqua fortis|1
+(noun)|nitric acid|acid (generic term)
+aqua regia|1
+(noun)|nitrohydrochloric acid|acid (generic term)
+aqua vitae|1
+(noun)|ardent spirits|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+aquacultural|1
+(adj)|aquicultural|hydroponic|farming|agriculture|husbandry (related term)
+aquaculture|1
+(noun)|cultivation (generic term)
+aqualung|1
+(noun)|Aqua-Lung|scuba|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+aquamarine|2
+(noun)|transparent gem (generic term)|beryl (generic term)
+(noun)|greenish blue|aqua|turquoise|cobalt blue|peacock blue|blue (generic term)|blueness (generic term)
+aquanaut|2
+(noun)|skin-diver|swimmer (generic term)|natator (generic term)|bather (generic term)
+(noun)|oceanaut|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+aquaphobia|1
+(noun)|simple phobia (generic term)
+aquaphobic|1
+(adj)|hydrophobic|afraid (similar term)
+aquaplane|2
+(noun)|board (generic term)
+(verb)|plane (generic term)|skim (generic term)
+aquarium|1
+(noun)|fish tank|marine museum|vivarium (generic term)|tank (generic term)|storage tank (generic term)
+aquarius|3
+(noun)|Aquarius|Water Bearer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Aquarius|constellation (generic term)
+(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+aquarius the water bearer|1
+(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+aquatic|3
+(adj)|binary compound|liquid (related term)
+(adj)|marine (similar term)|semiaquatic (similar term)|subaquatic (similar term)|subaqueous (similar term)|subaquatic (similar term)|submerged (similar term)|submersed (similar term)|underwater (similar term)|terrestrial (antonym)|amphibious (antonym)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+aquatic bird|1
+(noun)|bird (generic term)
+aquatic fern|1
+(noun)|water fern|fern (generic term)
+aquatic mammal|1
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+aquatic plant|1
+(noun)|water plant|hydrophyte|hydrophytic plant|vascular plant (generic term)|tracheophyte (generic term)
+aquatic vertebrate|1
+(noun)|vertebrate (generic term)|craniate (generic term)
+aquatics|1
+(noun)|water sport|sport (generic term)|athletics (generic term)
+aquatint|3
+(noun)|etching (generic term)
+(noun)|engraving (generic term)|etching (generic term)
+(verb)|etch (generic term)
+aquavit|1
+(noun)|akvavit|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+aqueduct|1
+(noun)|conduit (generic term)
+aqueductus cerebri|1
+(noun)|cerebral aqueduct|Sylvian aqueduct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+aqueous|2
+(adj)|binary compound|liquid (related term)
+(adj)|sedimentary|igneous (antonym)
+aqueous humor|1
+(noun)|aqueous humour|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+aqueous humour|1
+(noun)|aqueous humor|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+aqueous solution|1
+(noun)|solution (generic term)
+aquicultural|1
+(adj)|aquacultural|hydroponic|farming|agriculture|husbandry (related term)
+aquiculture|1
+(noun)|hydroponics|tank farming|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+aquifer|1
+(noun)|geological formation (generic term)|formation (generic term)
+aquiferous|1
+(adj)|geological formation|formation (related term)
+aquifoliaceae|1
+(noun)|Aquifoliaceae|family Aquifoliaceae|holly family|dicot family (generic term)|magnoliopsid family (generic term)
+aquila|3
+(noun)|Aquila|constellation (generic term)
+(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Aquila|genus Aquila|bird genus (generic term)
+aquila chrysaetos|1
+(noun)|golden eagle|Aquila chrysaetos|eagle (generic term)|bird of Jove (generic term)
+aquila degli abruzzi|1
+(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city (generic term)|metropolis (generic term)|urban center (generic term)
+aquila rapax|1
+(noun)|tawny eagle|Aquila rapax|eagle (generic term)|bird of Jove (generic term)
+aquilege|1
+(noun)|columbine|aquilegia|flower (generic term)
+aquilegia|1
+(noun)|columbine|aquilege|flower (generic term)
+aquilegia canadensis|1
+(noun)|meeting house|honeysuckle|Aquilegia canadensis|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+aquilegia coerulia|1
+(noun)|blue columbine|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+aquilegia scopulorum calcarea|1
+(noun)|blue columbine|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+aquilegia vulgaris|1
+(noun)|granny's bonnets|Aquilegia vulgaris|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+aquiline|1
+(adj)|hooked|crooked (similar term)
+aquinas|1
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+aquitaine|1
+(noun)|Aquitaine|Aquitania|French region (generic term)
+aquitania|1
+(noun)|Aquitaine|Aquitania|French region (generic term)
+ar|3
+(noun)|argon|Ar|atomic number 18|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+(noun)|are|area unit (generic term)|square measure (generic term)
+(noun)|Arkansas|Land of Opportunity|AR|American state (generic term)
+ar rimsal|1
+(noun)|Rub al-Khali|Ar Rimsal|Dahna|Great Sandy Desert|desert (generic term)
+ara|2
+(noun)|Ara|constellation (generic term)
+(noun)|Ara|genus Ara|bird genus (generic term)
+arab|2
+(noun)|Arab|Arabian|Semite (generic term)
+(noun)|Arabian|Arab|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+arab-berber|1
+(noun)|Berber|Arab-Berber|ethnic minority (generic term)
+arab-israeli war|2
+(noun)|Arab-Israeli War|Yom Kippur War|war (generic term)|warfare (generic term)
+(noun)|Arab-Israeli War|Six-Day War|Six Day War|war (generic term)|warfare (generic term)
+arab chief|1
+(noun)|sheik|tribal sheik|sheikh|tribal sheikh|Arab chief|ruler (generic term)|swayer (generic term)
+arab league|1
+(noun)|Arab League|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+arab republic of egypt|1
+(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country (generic term)|African nation (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+arabesque|2
+(noun)|ballet position (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+arabia|1
+(noun)|Arabian Peninsula|Arabia|peninsula (generic term)
+arabian|4
+(adj)|Arabian|peninsula (related term)
+(adj)|Arabian|saddle horse|riding horse|mount (related term)
+(noun)|Arab|Arabian|Semite (generic term)
+(noun)|Arabian|Arab|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+arabian camel|1
+(noun)|Arabian camel|dromedary|Camelus dromedarius|camel (generic term)
+arabian coffee|1
+(noun)|Arabian coffee|Coffea arabica|coffee (generic term)|coffee tree (generic term)
+arabian desert|2
+(noun)|Arabian Desert|Eastern Desert|desert (generic term)
+(noun)|Arabian Desert|Great Arabian Desert|desert (generic term)
+arabian gulf|1
+(noun)|Persian Gulf|Arabian Gulf|gulf (generic term)
+arabian jasmine|1
+(noun)|Arabian jasmine|Jasminum sambac|jasmine (generic term)
+arabian nights|1
+(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale (generic term)|folk tale (generic term)
+arabian nights' entertainment|1
+(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale (generic term)|folk tale (generic term)
+arabian peninsula|1
+(noun)|Arabian Peninsula|Arabia|peninsula (generic term)
+arabian sea|1
+(noun)|Arabian Sea|sea (generic term)
+arabian tea|1
+(noun)|kat|khat|qat|quat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+arabic|2
+(adj)|Arabic|Semite (related term)
+(noun)|Arabic|Arabic language|Semitic (generic term)
+arabic alphabet|1
+(noun)|Arabic alphabet|alphabet (generic term)
+arabic language|1
+(noun)|Arabic|Arabic language|Semitic (generic term)
+arabic numeral|1
+(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral (generic term)|number (generic term)|Roman numeral (antonym)
+arabidopsis|1
+(noun)|Arabidopsis|genus Arabidopsis|dilleniid dicot genus (generic term)
+arabidopsis lyrata|1
+(noun)|Arabidopsis lyrata|cress (generic term)|cress plant (generic term)
+arabidopsis thaliana|1
+(noun)|Arabidopsis thaliana|mouse-ear cress|cress (generic term)|cress plant (generic term)
+arability|1
+(noun)|quality (generic term)
+arabis|1
+(noun)|Arabis|genus Arabis|dilleniid dicot genus (generic term)
+arabis canadensis|1
+(noun)|sicklepod|Arabis Canadensis|rock cress (generic term)|rockcress (generic term)
+arabis glabra|1
+(noun)|tower mustard|tower cress|Turritis glabra|Arabis glabra|cress (generic term)|cress plant (generic term)
+arabis turrita|1
+(noun)|tower cress|tower mustard|Arabis turrita|rock cress (generic term)|rockcress (generic term)
+arabist|1
+(noun)|Arabist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+arable|1
+(adj)|cultivable|cultivatable|tillable|productive (similar term)
+araceae|1
+(noun)|Araceae|family Araceae|arum family|monocot family (generic term)|liliopsid family (generic term)
+araceous|1
+(adj)|aroid|monocot family|liliopsid family (related term)
+arachis|1
+(noun)|Arachis|genus Arachis|rosid dicot genus (generic term)
+arachis hypogaea|1
+(noun)|peanut|peanut vine|Arachis hypogaea|legume (generic term)|leguminous plant (generic term)
+arachnid|1
+(noun)|arachnoid|arthropod (generic term)
+arachnid-like|1
+(adj)|animal (similar term)
+arachnida|1
+(noun)|Arachnida|class Arachnida|class (generic term)
+arachnidian|1
+(adj)|arachnoid|spidery|spiderlike|spiderly|class (related term)
+arachnoid|3
+(adj)|arachnidian|spidery|spiderlike|spiderly|class (related term)
+(noun)|arachnoid membrane|meninx (generic term)|meninges (generic term)
+(noun)|arachnid|arthropod (generic term)
+arachnoid membrane|1
+(noun)|arachnoid|meninx (generic term)|meninges (generic term)
+arachnophobia|1
+(noun)|zoophobia (generic term)
+arafat|1
+(noun)|Arafat|Yasser Arafat|statesman (generic term)|solon (generic term)|national leader (generic term)
+arafura sea|1
+(noun)|Arafura Sea|sea (generic term)
+aragon|2
+(noun)|Aragon|Louis Aragon|writer (generic term)|author (generic term)
+(noun)|Aragon|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+aragonite|1
+(noun)|mineral (generic term)
+araguaia|1
+(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river (generic term)
+araguaia river|1
+(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river (generic term)
+araguaya|1
+(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river (generic term)
+araguaya river|1
+(noun)|Araguaia|Araguaia River|Araguaya|Araguaya River|river (generic term)
+arak|1
+(noun)|arrack|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+aral sea|1
+(noun)|Lake Aral|Aral Sea|lake (generic term)
+arales|1
+(noun)|Arales|order Arales|plant order (generic term)
+aralia|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+aralia elata|1
+(noun)|Japanese angelica tree|Aralia elata|shrub (generic term)|bush (generic term)
+aralia hispida|1
+(noun)|bristly sarsaparilla|bristly sarsparilla|dwarf elder|Aralia hispida|subshrub (generic term)|suffrutex (generic term)
+aralia nudicaulis|1
+(noun)|wild sarsaparilla|false sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub (generic term)|suffrutex (generic term)
+aralia racemosa|1
+(noun)|American spikenard|petty morel|life-of-man|Aralia racemosa|subshrub (generic term)|suffrutex (generic term)
+aralia spinosa|1
+(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub (generic term)|bush (generic term)
+aralia stipulata|1
+(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub (generic term)|bush (generic term)
+araliaceae|1
+(noun)|Araliaceae|family Araliaceae|ivy family|rosid dicot family (generic term)
+aram|1
+(noun)|Aram|Syria (generic term)|Syrian Arab Republic (generic term)
+aram ilich khachaturian|1
+(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer (generic term)
+aram kachaturian|1
+(noun)|Kachaturian|Aram Kachaturian|composer (generic term)
+aram khachaturian|1
+(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer (generic term)
+aramaean|2
+(adj)|Aramean|Aramaean|Syria|Syrian Arab Republic (related term)
+(noun)|Aramean|Aramaean|Semite (generic term)
+aramaic|3
+(adj)|Aramaic|Semitic (related term)
+(noun)|Aramaic|Semitic (generic term)
+(noun)|Aramaic|Aramaic script|script (generic term)
+aramaic script|1
+(noun)|Aramaic|Aramaic script|script (generic term)
+arame|1
+(noun)|seaweed (generic term)
+aramean|2
+(adj)|Aramean|Aramaean|Syria|Syrian Arab Republic (related term)
+(noun)|Aramean|Aramaean|Semite (generic term)
+aramus|1
+(noun)|Aramus|genus Aramus|bird genus (generic term)
+aramus guarauna|1
+(noun)|courlan|Aramus guarauna|wading bird (generic term)|wader (generic term)
+aramus pictus|1
+(noun)|limpkin|Aramus pictus|wading bird (generic term)|wader (generic term)
+aran islands|1
+(noun)|Aran Islands|island (generic term)
+aranea|1
+(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus (generic term)
+aranea diademata|1
+(noun)|garden spider|Aranea diademata|spider (generic term)
+araneae|1
+(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order (generic term)
+araneida|1
+(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order (generic term)
+araneidal|1
+(adj)|araneidan|animal order (related term)
+araneidan|1
+(adj)|araneidal|animal order (related term)
+araneus|1
+(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus (generic term)
+araneus cavaticus|1
+(noun)|barn spider|Araneus cavaticus|spider (generic term)
+aranyaka|1
+(noun)|Aranyaka|Vedic literature (generic term)|Veda (generic term)
+arapaho|2
+(noun)|Arapaho|Arapahoe|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Arapaho|Arapahoe|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+arapahoe|2
+(noun)|Arapaho|Arapahoe|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Arapaho|Arapahoe|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+ararat|1
+(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak (generic term)
+arariba|1
+(noun)|Centrolobium robustum|zebrawood (generic term)|zebrawood tree (generic term)
+araroba|1
+(noun)|Goa powder|chrysarobin|powder (generic term)
+aras|1
+(noun)|Aras|Araxes|river (generic term)
+arauca|1
+(noun)|Arauca|river (generic term)
+araucaria|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+araucaria araucana|1
+(noun)|monkey puzzle|chile pine|Araucaria araucana|araucaria (generic term)
+araucaria bidwillii|1
+(noun)|bunya bunya|bunya bunya tree|Araucaria bidwillii|araucaria (generic term)
+araucaria columnaris|1
+(noun)|new caledonian pine|Araucaria columnaris|araucaria (generic term)
+araucaria cunninghamii|1
+(noun)|hoop pine|Moreton Bay pine|Araucaria cunninghamii|araucaria (generic term)
+araucaria excelsa|1
+(noun)|norfolk island pine|Araucaria heterophylla|Araucaria excelsa|araucaria (generic term)
+araucaria family|1
+(noun)|Araucariaceae|family Araucariaceae|gymnosperm family (generic term)
+araucaria heterophylla|1
+(noun)|norfolk island pine|Araucaria heterophylla|Araucaria excelsa|araucaria (generic term)
+araucariaceae|1
+(noun)|Araucariaceae|family Araucariaceae|araucaria family|gymnosperm family (generic term)
+araujia|1
+(noun)|Araujia|genus Araujia|dicot genus (generic term)|magnoliopsid genus (generic term)
+araujia sericofera|1
+(noun)|cruel plant|Araujia sericofera|vine (generic term)
+arava|1
+(noun)|leflunomide|Arava|anti-TNF compound (generic term)
+arawak|2
+(noun)|Arawak|Arawakan|Amerindian (generic term)|Native American (generic term)
+(noun)|Arawak|Arawakan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+arawakan|3
+(adj)|Arawakan|Amerindian|Native American (related term)|Amerind|Amerindian language|American-Indian language|American Indian|Indian (related term)
+(noun)|Arawak|Arawakan|Amerindian (generic term)|Native American (generic term)
+(noun)|Arawak|Arawakan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+arawn|1
+(noun)|Arawn|Celtic deity (generic term)
+araxes|1
+(noun)|Aras|Araxes|river (generic term)
+arb|1
+(noun)|arbitrageur|arbitrager|businessman (generic term)|man of affairs (generic term)
+arbalest|1
+(noun)|catapult|arbalist|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+arbalist|1
+(noun)|catapult|arbalest|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+arbiter|2
+(noun)|supreme authority|expert (generic term)
+(noun)|arbitrator|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+arbitrable|1
+(adj)|nonarbitrable (antonym)
+arbitrage|2
+(noun)|investing (generic term)|investment (generic term)
+(verb)|trade (generic term)|merchandise (generic term)
+arbitrager|1
+(noun)|arbitrageur|arb|businessman (generic term)|man of affairs (generic term)
+arbitrageur|1
+(noun)|arbitrager|arb|businessman (generic term)|man of affairs (generic term)
+arbitral|1
+(adj)|arbitrational|mediation (related term)
+arbitrament|1
+(noun)|arbitration|arbitrement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+arbitrarily|1
+(adv)|randomly|indiscriminately|haphazardly|willy-nilly|at random|every which way
+arbitrariness|1
+(noun)|flightiness|whimsicality|whimsy|whimsey|capriciousness|irresponsibility (generic term)|irresponsibleness (generic term)
+arbitrary|1
+(adj)|absolute (similar term)|capricious (similar term)|impulsive (similar term)|whimsical (similar term)|discretionary (similar term)|discretional (similar term)|nonarbitrary (antonym)
+arbitrate|1
+(verb)|intercede|mediate|intermediate|liaise|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+arbitration|2
+(noun)|mediation (generic term)
+(noun)|arbitrament|arbitrement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+arbitration clause|1
+(noun)|article (generic term)|clause (generic term)
+arbitrational|1
+(adj)|arbitral|mediation (related term)
+arbitrative|1
+(adj)|mediation (related term)
+arbitrator|1
+(noun)|arbiter|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+arbitrement|1
+(noun)|arbitration|arbitrament|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+arbor|3
+(noun)|tree (generic term)
+(noun)|spindle|mandrel|mandril|rotating shaft (generic term)|shaft (generic term)
+(noun)|arbour|bower|pergola|framework (generic term)|frame (generic term)|framing (generic term)
+arbor day|1
+(noun)|Arbor Day|day (generic term)
+arboraceous|1
+(adj)|arboreous|woodsy|woody|wooded (similar term)
+arborary|1
+(adj)|arborical|arboreal|arborous|woody plant|ligneous plant (related term)
+arboreal|3
+(adj)|arborical|arborary|arborous|woody plant|ligneous plant (related term)
+(adj)|arboreous|tree-living|nonarboreal (antonym)
+(adj)|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+arboreal salamander|1
+(noun)|Aneides lugubris|climbing salamander (generic term)
+arboreous|3
+(adj)|arboreal|tree-living|nonarboreal (antonym)
+(adj)|arboraceous|woodsy|woody|wooded (similar term)
+(adj)|arboreal|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+arborescent|1
+(adj)|arboreal|arboreous|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+arborescent plant|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+arboresque|1
+(adj)|arboreal|arboreous|arborescent|arboriform|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+arboretum|1
+(noun)|botanical garden|facility (generic term)|installation (generic term)
+arborical|1
+(adj)|arboreal|arborary|arborous|woody plant|ligneous plant (related term)
+arboriculture|1
+(noun)|tree farming|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+arboriculturist|1
+(noun)|forester|tree farmer|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+arboriform|1
+(adj)|arboreal|arboreous|arborescent|arboresque|dendriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+arborise|1
+(verb)|arborize|branch (generic term)|ramify (generic term)|fork (generic term)|furcate (generic term)|separate (generic term)
+arborist|1
+(noun)|tree surgeon|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+arborize|1
+(verb)|arborise|branch (generic term)|ramify (generic term)|fork (generic term)|furcate (generic term)|separate (generic term)
+arborolatry|1
+(noun)|tree-worship|worship (generic term)
+arborous|1
+(adj)|arborical|arboreal|arborary|woody plant|ligneous plant (related term)
+arborvirus|1
+(noun)|arbovirus|virus (generic term)
+arborvitae|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+arbour|1
+(noun)|arbor|bower|pergola|framework (generic term)|frame (generic term)|framing (generic term)
+arbovirus|1
+(noun)|arborvirus|virus (generic term)
+arbutus|1
+(noun)|shrub (generic term)|bush (generic term)
+arbutus menziesii|1
+(noun)|madrona|madrono|manzanita|Arbutus menziesii|arbutus (generic term)
+arbutus unedo|1
+(noun)|strawberry tree|Irish strawberry|Arbutus unedo|arbutus (generic term)
+arc|4
+(noun)|discharge|spark|electric arc|electric discharge|electrical conduction (generic term)
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|bow|curve (generic term)|curved shape (generic term)
+(verb)|arch|curve|bend (generic term)|flex (generic term)
+arc-boutant|1
+(noun)|flying buttress|buttress (generic term)|buttressing (generic term)
+arc cosecant|1
+(noun)|arccosecant|inverse cosecant|trigonometric function (generic term)|circular function (generic term)
+arc cosine|1
+(noun)|arccosine|arccos|inverse cosine|trigonometric function (generic term)|circular function (generic term)
+arc cotangent|1
+(noun)|arccotangent|inverse cotangent|trigonometric function (generic term)|circular function (generic term)
+arc lamp|1
+(noun)|arc light|electric lamp (generic term)
+arc light|1
+(noun)|arc lamp|electric lamp (generic term)
+arc secant|1
+(noun)|arcsecant|arcsec|inverse secant|trigonometric function (generic term)|circular function (generic term)
+arc sine|1
+(noun)|arcsine|arcsin|inverse sine|trigonometric function (generic term)|circular function (generic term)
+arc tangent|1
+(noun)|arctangent|arctan|inverse tangent|trigonometric function (generic term)|circular function (generic term)
+arca|1
+(noun)|Arca|genus Arca|mollusk genus (generic term)
+arcade|2
+(noun)|passageway (generic term)
+(noun)|colonnade|structure (generic term)|construction (generic term)
+arcadia|1
+(noun)|Arcadia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+arcadian|2
+(adj)|bucolic|pastoral|rustic|rural (similar term)
+(noun)|Arcadian|Greek (generic term)|Hellene (generic term)
+arcadic|1
+(noun)|Arcadic|Ancient Greek (generic term)
+arcane|1
+(adj)|esoteric (similar term)
+arcangelo corelli|1
+(noun)|Corelli|Arcangelo Corelli|violinist (generic term)|fiddler (generic term)|composer (generic term)
+arcanum|1
+(noun)|secret|information (generic term)|info (generic term)
+arccos|1
+(noun)|arc cosine|arccosine|inverse cosine|trigonometric function (generic term)|circular function (generic term)
+arccosecant|1
+(noun)|arc cosecant|inverse cosecant|trigonometric function (generic term)|circular function (generic term)
+arccosine|1
+(noun)|arc cosine|arccos|inverse cosine|trigonometric function (generic term)|circular function (generic term)
+arccotangent|1
+(noun)|arc cotangent|inverse cotangent|trigonometric function (generic term)|circular function (generic term)
+arcdegree|1
+(noun)|degree|angular unit (generic term)
+arced|1
+(adj)|arched|arching|arciform|arcuate|bowed|curved (similar term)|curving (similar term)
+arcella|1
+(noun)|protozoan (generic term)|protozoon (generic term)
+arcellidae|1
+(noun)|Arcellidae|family Arcellidae|protoctist family (generic term)
+arceuthobium|1
+(noun)|Arceuthobium|genus Arceuthobium|dilleniid dicot genus (generic term)
+arceuthobium pusillum|1
+(noun)|American mistletoe|Arceuthobium pusillum|parasitic plant (generic term)
+arch|7
+(adj)|condescending|patronizing|patronising|superior (similar term)
+(adj)|skilled (similar term)
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|skeletal structure (generic term)
+(noun)|archway|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(verb)|curve|arc|bend (generic term)|flex (generic term)
+arch over|1
+(verb)|overarch
+arch support|1
+(noun)|support (generic term)
+archaean|1
+(adj)|archean|early (similar term)
+archaebacteria|1
+(noun)|archaebacterium|archaeobacteria|archeobacteria|moneran (generic term)|moneron (generic term)
+archaebacterium|1
+(noun)|archaebacteria|archaeobacteria|archeobacteria|moneran (generic term)|moneron (generic term)
+archaeobacteria|1
+(noun)|archaebacteria|archaebacterium|archeobacteria|moneran (generic term)|moneron (generic term)
+archaeologic|1
+(adj)|archaeological|archeological|archeologic|anthropology (related term)
+archaeological|1
+(adj)|archeological|archaeologic|archeologic|anthropology (related term)
+archaeologist|1
+(noun)|archeologist|anthropologist (generic term)
+archaeology|1
+(noun)|archeology|anthropology (generic term)
+archaeopteryx|1
+(noun)|archeopteryx|Archaeopteryx lithographica|bird (generic term)
+archaeopteryx lithographica|1
+(noun)|archaeopteryx|archeopteryx|Archaeopteryx lithographica|bird (generic term)
+archaeornis|1
+(noun)|bird (generic term)
+archaeornithes|1
+(noun)|Archaeornithes|subclass Archaeornithes|class (generic term)
+archaeozoic|2
+(adj)|archeozoic|early (similar term)
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archaeozoic aeon|1
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archaic|2
+(adj)|antediluvian|antiquated|old (similar term)
+(adj)|primitive|early (similar term)
+archaicism|1
+(noun)|archaism|formulation (generic term)|expression (generic term)
+archaise|1
+(verb)|archaize|change (generic term)|alter (generic term)|modify (generic term)
+archaism|1
+(noun)|archaicism|formulation (generic term)|expression (generic term)
+archaist|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|antiquary|antiquarian|expert (generic term)
+archaistic|1
+(adj)|formulation|expression (related term)
+archaize|1
+(verb)|archaise|change (generic term)|alter (generic term)|modify (generic term)
+archangel|2
+(noun)|angel (generic term)
+(noun)|garden angelica|Angelica Archangelica|angelica (generic term)|angelique (generic term)
+archangelic|1
+(adj)|archangelical|angel (related term)
+archangelical|1
+(adj)|archangelic|angel (related term)
+archbishop|1
+(noun)|bishop (generic term)
+archbishopric|1
+(noun)|jurisdiction (generic term)
+archdeacon|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+archdeaconry|1
+(noun)|jurisdiction (generic term)
+archdiocesan|1
+(adj)|diocese|bishopric|episcopate (related term)
+archdiocese|1
+(noun)|diocese (generic term)|bishopric (generic term)|episcopate (generic term)
+archducal|1
+(adj)|prince (related term)
+archduchess|1
+(noun)|princess (generic term)
+archduchy|1
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+archduke|1
+(noun)|prince (generic term)
+archean|2
+(adj)|archaean|early (similar term)
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archean aeon|1
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archean eon|1
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+arched|2
+(adj)|structure|construction (related term)
+(adj)|arced|arching|arciform|arcuate|bowed|curved (similar term)|curving (similar term)
+archegonial|1
+(adj)|archegoniate|plant organ (related term)
+archegoniate|1
+(adj)|archegonial|plant organ (related term)
+archegonium|1
+(noun)|plant organ (generic term)
+archenteron|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+archeobacteria|1
+(noun)|archaebacteria|archaebacterium|archaeobacteria|moneran (generic term)|moneron (generic term)
+archeologic|1
+(adj)|archaeological|archeological|archaeologic|anthropology (related term)
+archeological|1
+(adj)|archaeological|archaeologic|archeologic|anthropology (related term)
+archeological remains|1
+(noun)|remains (generic term)|relic (generic term)
+archeological site|1
+(noun)|dig|excavation|site (generic term)|land site (generic term)
+archeologist|1
+(noun)|archaeologist|anthropologist (generic term)
+archeology|1
+(noun)|archaeology|anthropology (generic term)
+archeopteryx|1
+(noun)|archaeopteryx|Archaeopteryx lithographica|bird (generic term)
+archeozoic|2
+(adj)|archaeozoic|early (similar term)
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archeozoic eon|1
+(noun)|Archean|Archean eon|Archean aeon|Archeozoic|Archaeozoic|Archeozoic eon|Archaeozoic aeon|eon (generic term)|aeon (generic term)
+archepiscopal|1
+(adj)|archiepiscopal|bishop (related term)
+archer|3
+(noun)|bowman|expert (generic term)
+(noun)|Sagittarius|Archer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+archerfish|1
+(noun)|Toxotes jaculatrix|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+archery|1
+(noun)|sport (generic term)|athletics (generic term)
+arches national park|1
+(noun)|Arches National Park|national park (generic term)
+archespore|1
+(noun)|archesporium|cell (generic term)
+archesporial|1
+(adj)|cell (related term)
+archesporium|1
+(noun)|archespore|cell (generic term)
+archetypal|1
+(adj)|archetypical|prototypal|prototypic|prototypical|first (similar term)
+archetype|1
+(noun)|original|pilot|model (generic term)|example (generic term)
+archetypical|1
+(adj)|archetypal|prototypal|prototypic|prototypical|first (similar term)
+archiannelid|1
+(noun)|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+archiannelida|1
+(noun)|Archiannelida|class Archiannelida|class (generic term)
+archibald macleish|1
+(noun)|MacLeish|Archibald MacLeish|poet (generic term)
+archibald percival wavell|1
+(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general (generic term)|full general (generic term)|field marshal (generic term)
+archidiaconal|1
+(adj)|clergyman|reverend|man of the cloth (related term)
+archidiaconate|1
+(noun)|rank (generic term)
+archidiskidon|1
+(noun)|Archidiskidon|genus Archidiskidon|mammal genus (generic term)
+archidiskidon imperator|1
+(noun)|imperial mammoth|imperial elephant|Archidiskidon imperator|mammoth (generic term)
+archiepiscopal|1
+(adj)|archepiscopal|bishop (related term)
+archil|2
+(noun)|orchil|cudbear|dye (generic term)|dyestuff (generic term)
+(noun)|orchil|lecanora (generic term)
+archilochus|1
+(noun)|Archilochus|genus Archilochus|bird genus (generic term)
+archilochus colubris|1
+(noun)|Archilochus colubris|hummingbird (generic term)
+archimandrite|1
+(noun)|abbot|superior (generic term)
+archimedes|1
+(noun)|Archimedes|mathematician (generic term)|physicist (generic term)
+archimedes' principle|1
+(noun)|Archimedes' principle|law of Archimedes|law (generic term)|law of nature (generic term)
+archine|1
+(noun)|linear unit (generic term)
+arching|1
+(adj)|arced|arched|arciform|arcuate|bowed|curved (similar term)|curving (similar term)
+archipallium|1
+(noun)|paleocortex|cerebral cortex (generic term)|cerebral mantle (generic term)|pallium (generic term)|cortex (generic term)
+archipelagic|1
+(adj)|land|dry land|earth|ground|solid ground|terra firma (related term)
+archipelago|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+architect|1
+(noun)|designer|creator (generic term)
+architectonic|1
+(adj)|tectonic|science|scientific discipline (related term)
+architectonics|1
+(noun)|tectonics|science (generic term)|scientific discipline (generic term)
+architectural|1
+(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|fine arts|beaux arts (related term)
+architectural engineering|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+architectural ornament|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+architectural plan|1
+(noun)|plan|drawing (generic term)
+architectural style|1
+(noun)|style of architecture|type of architecture|art form (generic term)
+architecture|4
+(noun)|building (generic term)|edifice (generic term)
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)|fine arts (generic term)|beaux arts (generic term)
+(noun)|profession (generic term)
+(noun)|computer architecture|structure (generic term)
+architeuthis|1
+(noun)|giant squid|squid (generic term)
+architrave|2
+(noun)|molding (generic term)|moulding (generic term)
+(noun)|support (generic term)
+archival|1
+(adj)|depository|deposit|depositary|repository (related term)
+archive|2
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(verb)|file away|collect (generic term)|pull in (generic term)
+archives|1
+(noun)|collection (generic term)|compendium (generic term)
+archivist|1
+(noun)|collector (generic term)|aggregator (generic term)
+archly|1
+(adv)|in an arch manner
+archness|1
+(noun)|impertinence|perkiness|pertness|sauciness|playfulness (generic term)|fun (generic term)
+archosargus|1
+(noun)|Archosargus|genus Archosargus|fish genus (generic term)
+archosargus probatocephalus|1
+(noun)|sheepshead|Archosargus probatocephalus|sparid (generic term)|sparid fish (generic term)
+archosargus rhomboidalis|1
+(noun)|Atlantic sea bream|Archosargus rhomboidalis|sea bream (generic term)|bream (generic term)
+archosaur|1
+(noun)|archosaurian|archosaurian reptile|diapsid (generic term)|diapsid reptile (generic term)
+archosauria|1
+(noun)|Archosauria|subclass Archosauria|class (generic term)
+archosaurian|2
+(adj)|class (related term)
+(noun)|archosaur|archosaurian reptile|diapsid (generic term)|diapsid reptile (generic term)
+archosaurian reptile|1
+(noun)|archosaur|archosaurian|diapsid (generic term)|diapsid reptile (generic term)
+archpriest|1
+(noun)|hierarch|high priest|prelate|primate|priest (generic term)
+archway|1
+(noun)|arch|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+arcidae|1
+(noun)|Arcidae|family Arcidae|mollusk family (generic term)
+arciform|1
+(adj)|arced|arched|arching|arcuate|bowed|curved (similar term)|curving (similar term)
+arcminute|1
+(noun)|minute|minute of arc|angular unit (generic term)
+arcsec|1
+(noun)|arc secant|arcsecant|inverse secant|trigonometric function (generic term)|circular function (generic term)
+arcsecant|1
+(noun)|arc secant|arcsec|inverse secant|trigonometric function (generic term)|circular function (generic term)
+arcsecond|1
+(noun)|second|angular unit (generic term)
+arcsin|1
+(noun)|arc sine|arcsine|inverse sine|trigonometric function (generic term)|circular function (generic term)
+arcsine|1
+(noun)|arc sine|arcsin|inverse sine|trigonometric function (generic term)|circular function (generic term)
+arctan|1
+(noun)|arc tangent|arctangent|inverse tangent|trigonometric function (generic term)|circular function (generic term)
+arctangent|1
+(noun)|arc tangent|arctan|inverse tangent|trigonometric function (generic term)|circular function (generic term)
+arctic|5
+(adj)|north-polar|Arctic|polar (similar term)
+(adj)|Frigid Zone|polar zone|polar region (related term)
+(adj)|frigid|gelid|glacial|icy|polar|cold (similar term)
+(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+(noun)|galosh|golosh|rubber|gumshoe|overshoe (generic term)
+arctic archipelago|1
+(noun)|Arctic Archipelago|archipelago (generic term)
+arctic char|1
+(noun)|Arctic char|Salvelinus alpinus|char (generic term)|charr (generic term)
+arctic circle|1
+(noun)|Arctic Circle|polar circle (generic term)
+arctic fox|1
+(noun)|white fox|Alopex lagopus|fox (generic term)
+arctic ground squirrel|1
+(noun)|Arctic ground squirrel|parka squirrel|Citellus parryi|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+arctic hare|1
+(noun)|polar hare|Arctic hare|Lepus arcticus|hare (generic term)
+arctic moss|1
+(noun)|reindeer moss|reindeer lichen|Cladonia rangiferina|lichen (generic term)
+arctic mouse-ear|1
+(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+arctic ocean|1
+(noun)|Arctic Ocean|ocean (generic term)
+arctic poppy|1
+(noun)|Iceland poppy|Papaver nudicaule|poppy (generic term)
+arctic skua|1
+(noun)|parasitic jaeger|Stercorarius parasiticus|jaeger (generic term)
+arctic willow|1
+(noun)|Salix arctica|willow (generic term)|willow tree (generic term)
+arctic wolf|1
+(noun)|white wolf|Arctic wolf|Canis lupus tundrarum|wolf (generic term)
+arctic zone|1
+(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+arctictis|1
+(noun)|Arctictis|genus Arctictis|mammal genus (generic term)
+arctictis bintourong|1
+(noun)|binturong|bearcat|Arctictis bintourong|civet (generic term)|civet cat (generic term)
+arctiid|1
+(noun)|arctiid moth|moth (generic term)
+arctiid moth|1
+(noun)|arctiid|moth (generic term)
+arctiidae|1
+(noun)|Arctiidae|family Arctiidae|arthropod family (generic term)
+arctium|1
+(noun)|Arctium|genus Arctium|asterid dicot genus (generic term)
+arctium lappa|1
+(noun)|great burdock|greater burdock|cocklebur|Arctium lappa|burdock (generic term)|clotbur (generic term)
+arctium minus|1
+(noun)|common burdock|lesser burdock|Arctium minus|burdock (generic term)|clotbur (generic term)
+arctocebus|1
+(noun)|Arctocebus|genus Arctocebus|mammal genus (generic term)
+arctocebus calabarensis|1
+(noun)|angwantibo|golden potto|Arctocebus calabarensis|lemur (generic term)
+arctocephalus|1
+(noun)|Arctocephalus|genus Arctocephalus|mammal genus (generic term)
+arctocephalus philippi|1
+(noun)|guadalupe fur seal|Arctocephalus philippi|fur seal (generic term)
+arctonyx|1
+(noun)|Arctonyx|genus Arctonyx|mammal genus (generic term)
+arctonyx collaris|1
+(noun)|hog badger|hog-nosed badger|sand badger|Arctonyx collaris|badger (generic term)
+arctostaphylos|1
+(noun)|Arctostaphylos|genus Arctostaphylos|dilleniid dicot genus (generic term)
+arctostaphylos alpina|1
+(noun)|alpine bearberry|black bearberry|Arctostaphylos alpina|bearberry (generic term)
+arctostaphylos andersonii|1
+(noun)|heartleaf manzanita|Arctostaphylos andersonii|manzanita (generic term)
+arctostaphylos manzanita|1
+(noun)|Parry manzanita|Arctostaphylos manzanita|manzanita (generic term)
+arctostaphylos tomentosa|1
+(noun)|downy manzanita|woolly manzanita|Arctostaphylos tomentosa|manzanita (generic term)
+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 (generic term)
+arctotis|1
+(noun)|Arctotis|genus Arctotis|asterid dicot genus (generic term)
+arctotis stoechadifolia|1
+(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower (generic term)
+arctotis venusta|1
+(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower (generic term)
+arcturus|1
+(noun)|Arcturus|giant star (generic term)|giant (generic term)
+arcuate|1
+(adj)|arced|arched|arching|arciform|bowed|curved (similar term)|curving (similar term)
+arcuate artery|1
+(noun)|arteria arcuata|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arcuate artery of the kidney|1
+(noun)|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arcuate vein of the kidney|1
+(noun)|vena arcuata renis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+arcus|1
+(noun)|arcus senilis|cornea (generic term)
+arcus senilis|1
+(noun)|arcus|cornea (generic term)
+arcus zygomaticus|1
+(noun)|zygoma|zygomatic arch|bone (generic term)|os (generic term)
+arda|1
+(noun)|Advanced Research and Development Activity|ARDA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ardea|1
+(noun)|Ardea|genus Ardea|bird genus (generic term)
+ardea herodius|1
+(noun)|great blue heron|Ardea herodius|heron (generic term)
+ardea occidentalis|1
+(noun)|great white heron|Ardea occidentalis|heron (generic term)
+ardeb|1
+(noun)|dry unit (generic term)|dry measure (generic term)
+ardeidae|1
+(noun)|Ardeidae|family Ardeidae|bird family (generic term)
+ardennes|1
+(noun)|Ardennes|tableland (generic term)|plateau (generic term)
+ardennes counteroffensive|1
+(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle (generic term)
+ardent|3
+(adj)|burning|fervent|fervid|fiery|impassioned|perfervid|torrid|passionate (similar term)
+(adj)|warm|enthusiastic (similar term)
+(adj)|bright (similar term)
+ardent spirits|1
+(noun)|aqua vitae|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+ardisia|1
+(noun)|Ardisia|genus Ardisia|dicot genus (generic term)|magnoliopsid genus (generic term)
+ardisia crenata|1
+(noun)|coralberry|spiceberry|Ardisia crenata|shrub (generic term)|bush (generic term)
+ardisia escallonoides|1
+(noun)|marlberry|Ardisia escallonoides|Ardisia paniculata|shrub (generic term)|bush (generic term)
+ardisia paniculata|1
+(noun)|marlberry|Ardisia escallonoides|Ardisia paniculata|shrub (generic term)|bush (generic term)
+ardor|3
+(noun)|ardour|elan|zeal|eagerness (generic term)|avidity (generic term)|avidness (generic term)|keenness (generic term)
+(noun)|ardour|love (generic term)
+(noun)|ardour|fervor|fervour|fervency|fire|fervidness|passion (generic term)|passionateness (generic term)
+ardour|3
+(noun)|ardor|elan|zeal|eagerness (generic term)|avidity (generic term)|avidness (generic term)|keenness (generic term)
+(noun)|ardor|love (generic term)
+(noun)|ardor|fervor|fervour|fervency|fire|fervidness|passion (generic term)|passionateness (generic term)
+ards|1
+(noun)|adult respiratory distress syndrome|ARDS|wet lung|white lung|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+arduous|3
+(adj)|backbreaking|grueling|gruelling|hard|heavy|laborious|operose|punishing|toilsome|effortful (similar term)
+(adj)|straining|strenuous|effortful (similar term)
+(adj)|difficult (similar term)|hard (similar term)
+arduousness|1
+(noun)|strenuousness|effortfulness (generic term)
+are|1
+(noun)|ar|area unit (generic term)|square measure (generic term)
+area|6
+(noun)|country|region (generic term)
+(noun)|sphere|domain|orbit|field|arena|environment (generic term)
+(noun)|topic (generic term)|subject (generic term)|issue (generic term)|matter (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|region|body part (generic term)
+(noun)|expanse|surface area|extent (generic term)
+area bombing|1
+(noun)|carpet bombing|saturation bombing|bombing (generic term)|bombardment (generic term)
+area code|1
+(noun)|code (generic term)
+area of cardiac dullness|1
+(noun)|area (generic term)|region (generic term)
+area unit|1
+(noun)|square measure|unit of measurement (generic term)|unit (generic term)
+areal|1
+(adj)|region (related term)
+areaway|1
+(noun)|passageway (generic term)
+areca|1
+(noun)|feather palm (generic term)
+areca catechu|1
+(noun)|betel palm|Areca catechu|areca (generic term)
+areca nut|1
+(noun)|betel nut|edible seed (generic term)
+arecaceae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+arecidae|1
+(noun)|Arecidae|subclass Arecidae|class (generic term)
+areflexia|1
+(noun)|symptom (generic term)
+arena|4
+(noun)|sphere|domain|area|orbit|field|environment (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|stadium|bowl|sports stadium|structure (generic term)|construction (generic term)
+(noun)|scene of action|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+arena theater|1
+(noun)|theater in the round|theater (generic term)|theatre (generic term)|house (generic term)
+arenaceous|1
+(adj)|sandy|sandlike|argillaceous (antonym)
+arenaceous rock|1
+(noun)|sedimentary rock (generic term)
+arenaria|2
+(noun)|Arenaria|genus Arenaria|caryophylloid dicot genus (generic term)
+(noun)|Arenaria|genus Arenaria|bird genus (generic term)
+arenaria-melanocephala|1
+(noun)|black turnstone|Arenaria-Melanocephala|turnstone (generic term)
+arenaria caroliniana|1
+(noun)|pine-barren sandwort|longroot|Arenaria caroliniana|sandwort (generic term)
+arenaria groenlandica|1
+(noun)|mountain sandwort|mountain starwort|mountain daisy|Arenaria groenlandica|sandwort (generic term)
+arenaria interpres|1
+(noun)|ruddy turnstone|Arenaria interpres|turnstone (generic term)
+arenaria peploides|1
+(noun)|seabeach sandwort|Arenaria peploides|sandwort (generic term)
+arenaria serpyllifolia|1
+(noun)|thyme-leaved sandwort|Arenaria serpyllifolia|sandwort (generic term)
+arenaria stricta|1
+(noun)|rock sandwort|Arenaria stricta|sandwort (generic term)
+arenaviridae|1
+(noun)|Arenaviridae|arbovirus (generic term)|arborvirus (generic term)
+arenavirus|1
+(noun)|animal virus (generic term)
+arendt|1
+(noun)|Arendt|Hannah Arendt|historian (generic term)|historiographer (generic term)|philosopher (generic term)
+arenga|1
+(noun)|Arenga|genus Arenga|plant genus (generic term)
+arenga pinnata|1
+(noun)|sugar palm|gomuti|gomuti palm|Arenga pinnata|sago palm (generic term)
+arenicolous|1
+(adj)|soil|dirt (related term)
+areola|2
+(noun)|interstice (generic term)
+(noun)|ring of color|area (generic term)|region (generic term)
+areolar|1
+(adj)|areolate|interstice (related term)
+areolar tissue|1
+(noun)|connective tissue (generic term)
+areolate|1
+(adj)|areolar|interstice (related term)
+areopagite|1
+(noun)|Areopagite|member (generic term)
+areopagus|2
+(noun)|Areopagus|hill (generic term)
+(noun)|Areopagus|assembly (generic term)
+arequipa|1
+(noun)|Arequipa|city (generic term)|metropolis (generic term)|urban center (generic term)
+arere|1
+(noun)|obeche|obechi|samba|Triplochiton scleroxcylon|tree (generic term)
+ares|1
+(noun)|Ares|Greek deity (generic term)
+arete|1
+(noun)|ridge (generic term)|ridgeline (generic term)
+areteria cervicalis|1
+(noun)|cervical artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arethusa|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+arethusa bulbosa|1
+(noun)|bog rose|wild pink|dragon's mouth|Arethusa bulbosa|arethusa (generic term)
+argal|1
+(noun)|argali|Ovis ammon|wild sheep (generic term)
+argali|1
+(noun)|argal|Ovis ammon|wild sheep (generic term)
+argasid|1
+(noun)|soft tick|tick (generic term)
+argasidae|1
+(noun)|Argasidae|family Argasidae|arthropod family (generic term)
+argemone|1
+(noun)|prickly poppy|white thistle|devil's fig|herb (generic term)|herbaceous plant (generic term)
+argemone mexicana|1
+(noun)|Mexican poppy|Argemone mexicana|prickly poppy (generic term)|argemone (generic term)|white thistle (generic term)|devil's fig (generic term)
+argent|2
+(adj)|silver|silvery|silverish|achromatic (similar term)
+(noun)|tincture (generic term)
+argentic|1
+(adj)|noble metal|conductor (related term)
+argentiferous|1
+(adj)|metallic (similar term)|metal (similar term)
+argentina|2
+(noun)|Argentina|Argentine Republic|South American country (generic term)|South American nation (generic term)
+(noun)|Argentina|genus Argentina|fish genus (generic term)
+argentine|2
+(adj)|Argentine|Argentinian|South American country|South American nation (related term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+argentine hemorrhagic fever|1
+(noun)|Argentine hemorrhagic fever|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+argentine monetary unit|1
+(noun)|Argentine monetary unit|monetary unit (generic term)
+argentine republic|1
+(noun)|Argentina|Argentine Republic|South American country (generic term)|South American nation (generic term)
+argentinian|2
+(adj)|Argentine|Argentinian|South American country|South American nation (related term)
+(noun)|Argentinian|South American (generic term)
+argentinidae|1
+(noun)|Argentinidae|family Argentinidae|fish family (generic term)
+argentinosaur|1
+(noun)|dinosaur (generic term)
+argentite|1
+(noun)|mineral (generic term)
+argentous|1
+(adj)|noble metal|conductor (related term)
+argil|1
+(noun)|clay (generic term)
+argillaceous|1
+(adj)|clayey|arenaceous (antonym)
+argillaceous rock|1
+(noun)|sedimentary rock (generic term)
+argillite|1
+(noun)|sedimentary rock (generic term)
+arginine|1
+(noun)|essential amino acid (generic term)
+argiope|1
+(noun)|Argiope|genus Argiope|arthropod genus (generic term)
+argiope aurantia|1
+(noun)|black and gold garden spider|Argiope aurantia|spider (generic term)
+argiopidae|1
+(noun)|Argiopidae|family Argiopidae|orb-weaver|arthropod family (generic term)
+argive|2
+(adj)|Argive|city|metropolis|urban center (related term)
+(noun)|Argive|Greek (generic term)|Hellene (generic term)
+argle-bargle|1
+(noun)|argy-bargy|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+argo|1
+(noun)|Argo|constellation (generic term)
+argon|1
+(noun)|Ar|atomic number 18|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+argonaut|3
+(noun)|adventurer (generic term)|venturer (generic term)
+(noun)|Argonaut|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|paper nautilus|nautilus|Argonaut|Argonauta argo|octopod (generic term)
+argonauta|1
+(noun)|Argonauta|genus Argonauta|mollusk genus (generic term)
+argonauta argo|1
+(noun)|paper nautilus|nautilus|Argonaut|Argonauta argo|octopod (generic term)
+argonautidae|1
+(noun)|Argonautidae|family Argonautidae|mollusk family (generic term)
+argonne|1
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+argonne forest|1
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+argonon|1
+(noun)|noble gas|inert gas|chemical element (generic term)|element (generic term)|gas (generic term)
+argos|1
+(noun)|Argos|city (generic term)|metropolis (generic term)|urban center (generic term)
+argosy|1
+(noun)|fleet (generic term)
+argot|1
+(noun)|slang|cant|jargon|lingo|patois|vernacular|non-standard speech (generic term)
+arguable|2
+(adj)|plausible (similar term)
+(adj)|debatable|disputable|moot|controversial (similar term)
+argue|3
+(verb)|reason|present (generic term)|represent (generic term)|lay out (generic term)
+(verb)|contend|debate|fence|converse (generic term)|discourse (generic term)
+(verb)|indicate|present (generic term)|represent (generic term)|lay out (generic term)
+arguer|1
+(noun)|debater|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+argufy|1
+(verb)|quarrel|dispute|scrap|altercate|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+arguing|1
+(noun)|controversy|contention|contestation|disputation|disceptation|tilt|argument|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+argument|5
+(noun)|statement|evidence (generic term)
+(noun)|controversy|contention|contestation|disputation|disceptation|tilt|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|argumentation|debate|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|literary argument|summary (generic term)|sum-up (generic term)
+(noun)|variable (generic term)|variable quantity (generic term)
+argumentation|2
+(noun)|argument|debate|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|logical argument|line of reasoning|line|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+argumentative|1
+(adj)|quarrelsome (similar term)|contentious (similar term)|combative (similar term)|disputatious (similar term)|disputative (similar term)|litigious (similar term)|eristic (similar term)|eristical (similar term)|unargumentative (antonym)
+argumentatively|1
+(adv)|disputatiously
+argun|1
+(noun)|Argun|Argun River|Ergun He|river (generic term)
+argun river|1
+(noun)|Argun|Argun River|Ergun He|river (generic term)
+argus|2
+(noun)|Argus|giant (generic term)
+(noun)|argus pheasant|pheasant (generic term)
+argus-eyed|2
+(adj)|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted (similar term)
+(adj)|open-eyed|vigilant|wakeful|watchful|alert (similar term)
+argus pheasant|1
+(noun)|argus|pheasant (generic term)
+argusianus|1
+(noun)|Argusianus|genus Argusianus|bird genus (generic term)
+argy-bargy|1
+(noun)|argle-bargle|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+argyle|3
+(noun)|argyll|gravy boat (generic term)|gravy holder (generic term)|sauceboat (generic term)|boat (generic term)
+(noun)|argyll|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|argyll|sock (generic term)
+argyll|3
+(noun)|argyle|gravy boat (generic term)|gravy holder (generic term)|sauceboat (generic term)|boat (generic term)
+(noun)|argyle|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|argyle|sock (generic term)
+argynnis|1
+(noun)|Argynnis|genus Argynnis|arthropod genus (generic term)
+argyranthemum|1
+(noun)|Argyranthemum|genus Argyranthemum|asterid dicot genus (generic term)
+argyranthemum frutescens|1
+(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub (generic term)|suffrutex (generic term)
+argyreia|1
+(noun)|Argyreia|genus Argyreia|dicot genus (generic term)|magnoliopsid genus (generic term)
+argyrodite|1
+(noun)|mineral (generic term)
+argyrol|1
+(noun)|mild silver protein|Argyrol|antiseptic (generic term)
+argyrotaenia|1
+(noun)|Argyrotaenia|genus Argyrotaenia|arthropod genus (generic term)
+argyrotaenia citrana|1
+(noun)|orange tortrix|tortrix|Argyrotaenia citrana|tortricid (generic term)|tortricid moth (generic term)
+argyroxiphium|1
+(noun)|Argyroxiphium|genus Argyroxiphium|asterid dicot genus (generic term)
+argyroxiphium sandwicense|1
+(noun)|silversword|Argyroxiphium sandwicense|shrub (generic term)|bush (generic term)
+arhant|1
+(noun)|Arhat|Arhant|lohan|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+arhat|1
+(noun)|Arhat|Arhant|lohan|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+arhus|1
+(noun)|Arhus|Aarhus|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+aria|1
+(noun)|song (generic term)|vocal (generic term)
+ariadne|1
+(noun)|Ariadne|Greek deity (generic term)
+ariana|1
+(noun)|Ariana|city (generic term)|metropolis (generic term)|urban center (generic term)
+arianism|1
+(noun)|Arianism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)|Athanasianism (antonym)
+arianist|1
+(noun)|Christian (generic term)
+arianrhod|1
+(noun)|Arianrhod|Arianrod|Celtic deity (generic term)
+arianrod|1
+(noun)|Arianrhod|Arianrod|Celtic deity (generic term)
+aricara|2
+(noun)|Arikara|Aricara|Caddo (generic term)
+(noun)|Arikara|Aricara|Caddo (generic term)|Caddoan (generic term)|Caddoan language (generic term)
+arid|2
+(adj)|waterless|dry (similar term)
+(adj)|desiccate|desiccated|dull (similar term)
+aridity|2
+(noun)|fruitlessness|barrenness|quality (generic term)|fruitfulness (antonym)
+(noun)|aridness|thirstiness|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+aridness|1
+(noun)|aridity|thirstiness|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+aries|3
+(noun)|Aries|Ram|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Aries|constellation (generic term)
+(noun)|Aries|Aries the Ram|Ram|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+aries the ram|1
+(noun)|Aries|Aries the Ram|Ram|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+arietta|1
+(noun)|short aria|aria (generic term)
+aright|1
+(adv)|correctly|right|wrongly (antonym)|incorrectly (antonym)
+ariidae|1
+(noun)|Ariidae|family Ariidae|fish family (generic term)
+arikara|2
+(noun)|Arikara|Aricara|Caddo (generic term)
+(noun)|Arikara|Aricara|Caddo (generic term)|Caddoan (generic term)|Caddoan language (generic term)
+aril|1
+(noun)|plant part (generic term)|plant structure (generic term)
+ariled|1
+(adj)|arillate|covered (similar term)
+arillate|1
+(adj)|ariled|covered (similar term)
+arilus|1
+(noun)|Arilus|genus Arilus|arthropod genus (generic term)
+arilus cristatus|1
+(noun)|wheel bug|Arilus cristatus|assassin bug (generic term)|reduviid (generic term)
+ariocarpus|1
+(noun)|Ariocarpus|genus Ariocarpus|caryophylloid dicot genus (generic term)
+ariocarpus fissuratus|1
+(noun)|living rock|Ariocarpus fissuratus|cactus (generic term)
+ariomma|1
+(noun)|Ariomma|genus Ariomma|fish genus (generic term)
+ariose|1
+(adj)|songlike|melodious (similar term)|melodic (similar term)|musical (similar term)
+arioso|1
+(noun)|recitative (generic term)
+arisaema|1
+(noun)|Arisaema|genus Arisaema|monocot genus (generic term)|liliopsid genus (generic term)
+arisaema atrorubens|1
+(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum (generic term)|aroid (generic term)
+arisaema dracontium|1
+(noun)|green dragon|Arisaema dracontium|arum (generic term)|aroid (generic term)
+arisaema triphyllum|1
+(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum (generic term)|aroid (generic term)
+arisarum|1
+(noun)|Arisarum|genus Arisarum|monocot genus (generic term)|liliopsid genus (generic term)
+arisarum vulgare|1
+(noun)|friar's-cowl|Arisarum vulgare|arum (generic term)|aroid (generic term)
+arise|7
+(verb)|originate|rise|develop|uprise|spring up|grow|become (generic term)
+(verb)|come up|bob up|become (generic term)
+(verb)|rise|uprise|get up|stand up|change posture (generic term)|sit down (antonym)|lie down (antonym)
+(verb)|come up|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|rise|lift|move up|go up|come up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|rebel|rise|rise up|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|get up|turn out|uprise|rise|turn in (antonym)|go to bed (antonym)
+arishth|1
+(noun)|neem|neem tree|nim tree|margosa|Azadirachta indica|Melia Azadirachta|tree (generic term)
+arista|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+aristarchus|2
+(noun)|Aristarchus|grammarian (generic term)|syntactician (generic term)
+(noun)|Aristarchus|lunar crater (generic term)
+aristarchus of samos|1
+(noun)|Aristarchus of Samos|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+aristide maillol|1
+(noun)|Maillol|Aristide Maillol|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+aristocort|1
+(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+aristocracy|2
+(noun)|nobility|elite (generic term)|elite group (generic term)
+(noun)|gentry|upper class (generic term)|upper crust (generic term)
+aristocrat|1
+(noun)|blue blood|patrician|leader (generic term)
+aristocratic|1
+(adj)|aristocratical|blue|blue-blooded|gentle|patrician|noble (similar term)
+aristocratical|1
+(adj)|aristocratic|blue|blue-blooded|gentle|patrician|noble (similar term)
+aristolochia|1
+(noun)|Aristolochia|genus Aristolochia|dicot genus (generic term)|magnoliopsid genus (generic term)
+aristolochia clematitis|1
+(noun)|birthwort|Aristolochia clematitis|vine (generic term)
+aristolochia durior|1
+(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort (generic term)|Aristolochia clematitis (generic term)
+aristolochia macrophylla|1
+(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort (generic term)|Aristolochia clematitis (generic term)
+aristolochia serpentaria|1
+(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort (generic term)|Aristolochia clematitis (generic term)
+aristolochiaceae|1
+(noun)|Aristolochiaceae|family Aristolochiaceae|birthwort family|dicot family (generic term)|magnoliopsid family (generic term)
+aristolochiales|1
+(noun)|Aristolochiales|order Aristolochiales|plant order (generic term)
+aristopak|1
+(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+aristophanes|1
+(noun)|Aristophanes|dramatist (generic term)|playwright (generic term)
+aristotelean|2
+(adj)|Aristotelian|Aristotelean|Aristotelic|peripatetic|philosopher (related term)
+(noun)|Aristotelian|Aristotelean|Peripatetic|disciple (generic term)|adherent (generic term)
+aristotelia|1
+(noun)|Aristotelia|genus Aristotelia|dilleniid dicot genus (generic term)
+aristotelia racemosa|1
+(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub (generic term)|bush (generic term)
+aristotelia serrata|1
+(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub (generic term)|bush (generic term)
+aristotelian|2
+(adj)|Aristotelian|Aristotelean|Aristotelic|peripatetic|philosopher (related term)
+(noun)|Aristotelian|Aristotelean|Peripatetic|disciple (generic term)|adherent (generic term)
+aristotelian logic|1
+(noun)|Aristotelian logic|logic (generic term)|logical system (generic term)|system of logic (generic term)
+aristotelianism|1
+(noun)|Aristotelianism|philosophical doctrine (generic term)|philosophical theory (generic term)
+aristotelic|1
+(adj)|Aristotelian|Aristotelean|Aristotelic|peripatetic|philosopher (related term)
+aristotle|1
+(noun)|Aristotle|philosopher (generic term)
+arithmancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+arithmetic|2
+(adj)|arithmetical|pure mathematics (related term)
+(noun)|pure mathematics (generic term)
+arithmetic mean|1
+(noun)|first moment|expectation|expected value|mean (generic term)|mean value (generic term)
+arithmetic operation|1
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+arithmetic progression|1
+(noun)|progression (generic term)|patterned advance (generic term)
+arithmetical|1
+(adj)|arithmetic|pure mathematics (related term)
+arithmetician|1
+(noun)|mathematician (generic term)
+arity|1
+(noun)|number (generic term)
+arius|2
+(noun)|Arius|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|Arius|genus Arius|fish genus (generic term)
+arizona|2
+(noun)|Arizona|Grand Canyon State|AZ|American state (generic term)
+(noun)|Arizona|genus Arizona|reptile genus (generic term)
+arizona ash|1
+(noun)|Arizona ash|Fraxinus velutina|ash (generic term)|ash tree (generic term)
+arizona cypress|1
+(noun)|Arizona cypress|Cupressus arizonica|cypress (generic term)|cypress tree (generic term)
+arizona elegans|1
+(noun)|glossy snake|Arizona elegans|colubrid snake (generic term)|colubrid (generic term)
+arizona sycamore|1
+(noun)|Arizona sycamore|Platanus wrightii|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+arizona white oak|1
+(noun)|Arizona white oak|Quercus arizonica|white oak (generic term)
+arizona wild cotton|1
+(noun)|wild cotton|Arizona wild cotton|Gossypium thurberi|cotton (generic term)|cotton plant (generic term)
+arizonan|1
+(noun)|Arizonan|Arizonian|American (generic term)
+arizonian|1
+(noun)|Arizonan|Arizonian|American (generic term)
+arjuna|1
+(noun)|Arjuna|mythical being (generic term)
+ark|2
+(noun)|Ark|Ark of the Covenant|chest (generic term)
+(noun)|boat (generic term)
+ark of the covenant|1
+(noun)|Ark|Ark of the Covenant|chest (generic term)
+ark shell|1
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+arkansan|1
+(noun)|Arkansan|Arkansawyer|American (generic term)
+arkansas|2
+(noun)|Arkansas|Land of Opportunity|AR|American state (generic term)
+(noun)|Arkansas|Arkansas River|river (generic term)
+arkansas kingbird|1
+(noun)|Arkansas kingbird|western kingbird|kingbird (generic term)|Tyrannus tyrannus (generic term)
+arkansas river|1
+(noun)|Arkansas|Arkansas River|river (generic term)
+arkansawyer|1
+(noun)|Arkansan|Arkansawyer|American (generic term)
+arles|1
+(noun)|earnest money|earnest (generic term)
+arlington|1
+(noun)|Arlington|city (generic term)|metropolis (generic term)|urban center (generic term)
+arm|8
+(noun)|limb (generic term)
+(noun)|weapon|weapon system|instrument (generic term)
+(noun)|branch|subdivision|division (generic term)
+(noun)|branch|limb|projection (generic term)
+(noun)|armrest (generic term)
+(noun)|sleeve|cloth covering (generic term)
+(verb)|build up|fortify|gird|disarm (antonym)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+arm's length|1
+(noun)|distance (generic term)|length (generic term)
+arm-twisting|1
+(noun)|persuasion (generic term)|suasion (generic term)
+arm band|1
+(noun)|armlet|band (generic term)
+arm bone|1
+(noun)|long bone (generic term)|os longum (generic term)
+arm exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+arm guard|1
+(noun)|arm pad|protective garment (generic term)
+arm pad|1
+(noun)|arm guard|protective garment (generic term)
+armada|1
+(noun)|fleet (generic term)
+armadillidiidae|1
+(noun)|Armadillidiidae|family Armadillidiidae|arthropod family (generic term)
+armadillidium|1
+(noun)|Armadillidium|genus Armadillidium|arthropod genus (generic term)
+armadillo|1
+(noun)|edentate (generic term)
+armageddon|2
+(noun)|Armageddon|battlefield (generic term)|battleground (generic term)|field of battle (generic term)|field of honor (generic term)|field (generic term)
+(noun)|Armageddon|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+armagnac|1
+(noun)|Armagnac|brandy (generic term)
+armament|2
+(noun)|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+(noun)|arming|equipping|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)|disarmament (antonym)|disarming (antonym)
+armamentarium|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+armand jean du plessis|1
+(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+armata corsa|1
+(noun)|Armata Corsa|Corsican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+armature|1
+(noun)|coil (generic term)
+armband|2
+(noun)|visual signal (generic term)
+(noun)|band (generic term)
+armchair|1
+(noun)|chair (generic term)
+armchair liberal|1
+(noun)|liberal (generic term)|liberalist (generic term)|progressive (generic term)
+armed|3
+(adj)|equipped (similar term)|weaponed (similar term)|light-armed (similar term)|militarized (similar term)|militarised (similar term)|unarmed (antonym)
+(adj)|armlike (similar term)|brachiate (similar term)|long-armed (similar term)|one-armed (similar term)|armless (antonym)
+(adj)|barbed (similar term)|barbellate (similar term)|briary (similar term)|briery (similar term)|bristled (similar term)|bristly (similar term)|burred (similar term)|burry (similar term)|prickly (similar term)|setose (similar term)|setaceous (similar term)|spiny (similar term)|thorny (similar term)|bristlelike (similar term)|brushlike (similar term)|thistlelike (similar term)|clawed (similar term)|taloned (similar term)|unarmed (antonym)
+armed bullhead|1
+(noun)|pogge|Agonus cataphractus|poacher (generic term)|sea poacher (generic term)|sea poker (generic term)
+armed combat|1
+(noun)|combat|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+armed forces|1
+(noun)|military|armed services|military machine|war machine|force (generic term)|personnel (generic term)
+armed forces censorship|1
+(noun)|military censorship (generic term)
+armed forces day|1
+(noun)|Armed Forces Day|day (generic term)
+armed islamic group|1
+(noun)|Armed Islamic Group|GIA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+armed robbery|1
+(noun)|heist|holdup|stickup|robbery (generic term)
+armed service|1
+(noun)|military service|service|force (generic term)|personnel (generic term)
+armed services|1
+(noun)|military|armed forces|military machine|war machine|force (generic term)|personnel (generic term)
+armenia|1
+(noun)|Armenia|Republic of Armenia|Hayastan|Asian country (generic term)|Asian nation (generic term)
+armenian|5
+(adj)|Armenian|Asian country|Asian nation (related term)
+(noun)|Armenian|Asian (generic term)|Asiatic (generic term)
+(noun)|Armenian|ethnic group (generic term)|ethnos (generic term)
+(noun)|Armenian|Armenian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+(noun)|Armenian|Armenian alphabet|alphabet (generic term)
+armenian alphabet|1
+(noun)|Armenian|Armenian alphabet|alphabet (generic term)
+armenian apostolic orthodox church|1
+(noun)|Armenian Church|Armenian Apostolic Orthodox Church|church (generic term)|Christian church (generic term)
+armenian church|1
+(noun)|Armenian Church|Armenian Apostolic Orthodox Church|church (generic term)|Christian church (generic term)
+armenian language|1
+(noun)|Armenian|Armenian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+armenian monetary unit|1
+(noun)|Armenian monetary unit|monetary unit (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+armeria|1
+(noun)|Armeria|genus Armeria|dicot genus (generic term)|magnoliopsid genus (generic term)
+armeria maritima|1
+(noun)|cliff rose|sea pink|Armeria maritima|thrift (generic term)
+armerican cheddar|1
+(noun)|cheddar|cheddar cheese|Armerican cheddar|American cheese|cheese (generic term)
+armet|1
+(noun)|helmet (generic term)
+armful|1
+(noun)|containerful (generic term)
+armguard|1
+(noun)|bracer|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+armhole|1
+(noun)|hole (generic term)
+armiger|2
+(noun)|armor-bearer|squire (generic term)
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+armilla|2
+(noun)|armillary sphere|celestial globe (generic term)
+(noun)|bracelet (generic term)|bangle (generic term)
+armillaria|1
+(noun)|Armillaria|genus Armillaria|fungus genus (generic term)
+armillaria caligata|1
+(noun)|Armillaria caligata|booted armillaria|agaric (generic term)
+armillaria ponderosa|1
+(noun)|Armillaria ponderosa|white matsutake|agaric (generic term)
+armillaria zelleri|1
+(noun)|Armillaria zelleri|agaric (generic term)
+armillariella|1
+(noun)|Armillariella|genus Armillariella|fungus genus (generic term)
+armillariella mellea|1
+(noun)|honey mushroom|honey fungus|Armillariella mellea|agaric (generic term)
+armillary|1
+(adj)|jewelry|jewellery (related term)
+armillary sphere|1
+(noun)|armilla|celestial globe (generic term)
+armin|1
+(noun)|Arminius|Armin|Hermann|hero (generic term)|German (generic term)
+arming|1
+(noun)|armament|equipping|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)|disarmament (antonym)|disarming (antonym)
+arminian|2
+(adj)|Arminian|Protestantism (related term)
+(noun)|Arminian|disciple (generic term)|adherent (generic term)
+arminian baptist|1
+(noun)|Arminian Baptist|General Baptist|Baptist denomination (generic term)
+arminian church|1
+(noun)|Arminian Church|Protestant denomination (generic term)
+arminianism|1
+(noun)|Arminianism|Protestantism (generic term)
+arminius|2
+(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|Arminius|Armin|Hermann|hero (generic term)|German (generic term)
+armistice|1
+(noun)|cease-fire|truce|peace (generic term)
+armistice day|1
+(noun)|Veterans Day|Veterans' Day|Armistice Day|November 11|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+armless|1
+(adj)|armed (antonym)
+armlet|1
+(noun)|arm band|band (generic term)
+armlike|1
+(adj)|armed (similar term)
+armoire|1
+(noun)|wardrobe (generic term)|closet (generic term)|press (generic term)
+armor|4
+(noun)|armour|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|armour|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|armour|protective covering (generic term)
+(verb)|armour|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+armor-bearer|1
+(noun)|armiger|squire (generic term)
+armor-clad|1
+(adj)|armour-clad|armor-plated|armour-plated|steel-plated|armored (similar term)|armoured (similar term)
+armor-like|1
+(adj)|armour-like|armored (similar term)|armoured (similar term)
+armor-plated|1
+(adj)|armor-clad|armour-clad|armour-plated|steel-plated|armored (similar term)|armoured (similar term)
+armor plate|1
+(noun)|armour plate|armor plating|plate armor|plate armour|plate (generic term)|scale (generic term)|shell (generic term)
+armor plating|1
+(noun)|armor plate|armour plate|plate armor|plate armour|plate (generic term)|scale (generic term)|shell (generic term)
+armoracia|1
+(noun)|Armoracia|genus Armoracia|dilleniid dicot genus (generic term)
+armoracia rusticana|1
+(noun)|horseradish|horse radish|red cole|Armoracia rusticana|herb (generic term)|herbaceous plant (generic term)
+armored|3
+(adj)|armoured|armor-clad (similar term)|armour-clad (similar term)|armor-plated (similar term)|armour-plated (similar term)|steel-plated (similar term)|bony-plated (similar term)|bulletproof (similar term)|lightly armored (similar term)|lightly armoured (similar term)|mail-cheeked (similar term)|mail-clad (similar term)|mailed (similar term)|panzer (similar term)|scaled (similar term)|unarmored (antonym)
+(adj)|armoured|armor-like (similar term)|armour-like (similar term)|bone-covered (similar term)|scaly (similar term)|scaley (similar term)|scaled (similar term)|silver-scaled (similar term)|unarmored (antonym)
+(adj)|panoplied|equipped (similar term)|equipt (similar term)
+armored car|1
+(noun)|armoured car|armored vehicle (generic term)|armoured vehicle (generic term)
+armored catfish|1
+(noun)|catfish (generic term)|siluriform fish (generic term)
+armored combat vehicle|1
+(noun)|tank|army tank|armoured combat vehicle|military vehicle (generic term)|armored vehicle (generic term)|armoured vehicle (generic term)|tracked vehicle (generic term)
+armored dinosaur|1
+(noun)|ornithischian (generic term)|ornithischian dinosaur (generic term)
+armored personnel carrier|1
+(noun)|armoured personnel carrier|APC|armored vehicle (generic term)|armoured vehicle (generic term)
+armored scale|1
+(noun)|scale insect (generic term)
+armored sea robin|1
+(noun)|armored searobin|Peristedion miniatum|sea robin (generic term)|searobin (generic term)
+armored searobin|1
+(noun)|armored sea robin|Peristedion miniatum|sea robin (generic term)|searobin (generic term)
+armored vehicle|1
+(noun)|armoured vehicle|self-propelled vehicle (generic term)
+armorer|3
+(noun)|armourer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|armourer|artificer|enlisted man (generic term)
+(noun)|armourer|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+armorial|1
+(adj)|heraldry (related term)
+armorial bearing|1
+(noun)|charge|bearing|heraldic bearing|heraldry (generic term)
+armory|4
+(noun)|armoury|inventory|resource (generic term)|resourcefulness (generic term)|imagination (generic term)
+(noun)|arsenal|armoury|armament (generic term)
+(noun)|arsenal|armoury|military installation (generic term)
+(noun)|armoury|arsenal|foundry (generic term)|metalworks (generic term)
+armour|4
+(noun)|armor|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|armor|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|armor|protective covering (generic term)
+(verb)|armor|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+armour-clad|1
+(adj)|armor-clad|armor-plated|armour-plated|steel-plated|armored (similar term)|armoured (similar term)
+armour-like|1
+(adj)|armor-like|armored (similar term)|armoured (similar term)
+armour-plated|1
+(adj)|armor-clad|armour-clad|armor-plated|steel-plated|armored (similar term)|armoured (similar term)
+armour plate|1
+(noun)|armor plate|armor plating|plate armor|plate armour|plate (generic term)|scale (generic term)|shell (generic term)
+armoured|2
+(adj)|armored|armor-like (similar term)|armour-like (similar term)|bone-covered (similar term)|scaly (similar term)|scaley (similar term)|scaled (similar term)|silver-scaled (similar term)|unarmored (antonym)
+(adj)|armored|armor-clad (similar term)|armour-clad (similar term)|armor-plated (similar term)|armour-plated (similar term)|steel-plated (similar term)|bony-plated (similar term)|bulletproof (similar term)|lightly armored (similar term)|lightly armoured (similar term)|mail-cheeked (similar term)|mail-clad (similar term)|mailed (similar term)|panzer (similar term)|scaled (similar term)|unarmored (antonym)
+armoured car|1
+(noun)|armored car|armored vehicle (generic term)|armoured vehicle (generic term)
+armoured combat vehicle|1
+(noun)|tank|army tank|armored combat vehicle|military vehicle (generic term)|armored vehicle (generic term)|armoured vehicle (generic term)|tracked vehicle (generic term)
+armoured personnel carrier|1
+(noun)|armored personnel carrier|APC|armored vehicle (generic term)|armoured vehicle (generic term)
+armoured vehicle|1
+(noun)|armored vehicle|self-propelled vehicle (generic term)
+armourer|3
+(noun)|armorer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|armorer|artificer|enlisted man (generic term)
+(noun)|armorer|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+armoury|4
+(noun)|armory|inventory|resource (generic term)|resourcefulness (generic term)|imagination (generic term)
+(noun)|arsenal|armory|armament (generic term)
+(noun)|arsenal|armory|military installation (generic term)
+(noun)|armory|arsenal|foundry (generic term)|metalworks (generic term)
+armpit|1
+(noun)|axilla|axillary cavity|axillary fossa|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+armrest|1
+(noun)|rest (generic term)
+arms|2
+(noun)|weaponry|implements of war|weapons system|munition|instrumentality (generic term)|instrumentation (generic term)
+(noun)|coat of arms|blazon|blazonry|heraldry (generic term)
+arms-runner|1
+(noun)|gunrunner|smuggler (generic term)|runner (generic term)|contrabandist (generic term)|moon curser (generic term)|moon-curser (generic term)
+arms control|1
+(noun)|limitation (generic term)|restriction (generic term)
+arms deal|1
+(noun)|deal (generic term)|trade (generic term)|business deal (generic term)
+arms industry|1
+(noun)|munitions industry|industry (generic term)
+arms manufacturer|1
+(noun)|manufacturer (generic term)|producer (generic term)
+arms race|1
+(noun)|race (generic term)
+armstrong|2
+(noun)|Armstrong|Neil Armstrong|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician (generic term)|jazzman (generic term)|trumpeter (generic term)|cornetist (generic term)
+army|3
+(noun)|regular army|ground forces|military service (generic term)|armed service (generic term)|service (generic term)
+(noun)|crowd (generic term)
+(noun)|United States Army|US Army|U. S. Army|Army|USA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+army ant|1
+(noun)|driver ant|legionary ant|ant (generic term)|emmet (generic term)|pismire (generic term)
+army attache|1
+(noun)|military attache (generic term)
+army base|1
+(noun)|base (generic term)|base of operations (generic term)
+army brat|1
+(noun)|child (generic term)|kid (generic term)
+army corps|1
+(noun)|corps|army unit (generic term)
+army cutworm|1
+(noun)|Chorizagrotis auxiliaris|cutworm (generic term)
+army engineer|1
+(noun)|military engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+army for the liberation of rwanda|1
+(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+army high performance computing research center|1
+(noun)|Army High Performance Computing Research Center|AHPCRC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+army hut|1
+(noun)|hut|field hut|shelter (generic term)
+army intelligence|1
+(noun)|Army Intelligence|AI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+army national guard|1
+(noun)|Army National Guard|ARNG|National Guard (generic term)|home reserve (generic term)
+army of muhammad|1
+(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+army of the confederacy|1
+(noun)|Confederate Army|Army of the Confederacy|army (generic term)|regular army (generic term)|ground forces (generic term)|grey (generic term)|gray (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+army officer|1
+(noun)|military officer (generic term)|officer (generic term)
+army tank|1
+(noun)|tank|armored combat vehicle|armoured combat vehicle|military vehicle (generic term)|armored vehicle (generic term)|armoured vehicle (generic term)|tracked vehicle (generic term)
+army unit|1
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+army worm|1
+(noun)|armyworm|Pseudaletia unipuncta|caterpillar (generic term)
+armyworm|3
+(noun)|army worm|Pseudaletia unipuncta|caterpillar (generic term)
+(noun)|Pseudaletia unipuncta|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+(noun)|fungus gnat (generic term)|sciara (generic term)|sciarid (generic term)
+arna wendell bontemps|1
+(noun)|Bontemps|Arna Wendell Bontemps|writer (generic term)|author (generic term)
+arng|1
+(noun)|Army National Guard|ARNG|National Guard (generic term)|home reserve (generic term)
+arnhem|1
+(noun)|Arnhem|city (generic term)|metropolis (generic term)|urban center (generic term)
+arnica|3
+(noun)|tincture (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+arnica bud|1
+(noun)|fall dandelion|Leontodon autumnalis|hawkbit (generic term)
+arnica cordifolia|1
+(noun)|heartleaf arnica|Arnica cordifolia|wildflower (generic term)|wild flower (generic term)
+arnica montana|1
+(noun)|Arnica montana|wildflower (generic term)|wild flower (generic term)
+arno|1
+(noun)|Arno|Arno River|River Arno|river (generic term)
+arno river|1
+(noun)|Arno|Arno River|River Arno|river (generic term)
+arnold|2
+(noun)|Arnold|Matthew Arnold|poet (generic term)|literary critic (generic term)
+(noun)|Arnold|Benedict Arnold|general (generic term)|full general (generic term)|traitor (generic term)|treasonist (generic term)
+arnold-chiari deformity|1
+(noun)|Arnold-Chiari deformity|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+arnold daniel palmer|1
+(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer (generic term)|golf player (generic term)|linksman (generic term)
+arnold gesell|1
+(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist (generic term)
+arnold joseph toynbee|1
+(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian (generic term)|historiographer (generic term)
+arnold lucius gesell|1
+(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist (generic term)
+arnold of brescia|1
+(noun)|Arnold of Brescia|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+arnold palmer|1
+(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer (generic term)|golf player (generic term)|linksman (generic term)
+arnold schoenberg|1
+(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer (generic term)
+arnold schonberg|1
+(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer (generic term)
+arnold toynbee|1
+(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian (generic term)|historiographer (generic term)
+arnoseris|1
+(noun)|Arnoseris|genus Arnoseris|asterid dicot genus (generic term)
+arnoseris minima|1
+(noun)|lamb succory|dwarf nipplewort|Arnoseris minima|herb (generic term)|herbaceous plant (generic term)
+aroeira blanca|1
+(noun)|Schinus chichita|tree (generic term)
+aroid|2
+(adj)|araceous|monocot family|liliopsid family (related term)
+(noun)|arum|herb (generic term)|herbaceous plant (generic term)
+arolla pine|1
+(noun)|Swiss pine|Swiss stone pine|cembra nut tree|Pinus cembra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+aroma|2
+(noun)|olfactory property|smell|odor|odour|scent|property (generic term)
+(noun)|fragrance|perfume|scent|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+aromatic|2
+(adj)|hydrocarbon (related term)
+(adj)|redolent|fragrant (similar term)
+aromatic aster|1
+(noun)|aster (generic term)
+aromatic compound|1
+(noun)|hydrocarbon (generic term)
+aromatic hydrocarbon|1
+(noun)|hydrocarbon (generic term)
+aromatise|1
+(verb)|perfume|aromatize|odorize (generic term)|odourise (generic term)|scent (generic term)
+aromatize|1
+(verb)|perfume|aromatise|odorize (generic term)|odourise (generic term)|scent (generic term)
+arouet|1
+(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer (generic term)|author (generic term)
+around|3
+(adv)|approximately|about|close to|just about|some|roughly|more or less|or so
+(adv)|about
+(adv)|round
+around-the-clock|1
+(adj)|day-and-night|nonstop|round-the-clock|continuous (similar term)|uninterrupted (similar term)
+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 (similar term)
+around the clock|1
+(adv)|for 24 hours|round the clock
+arousal|4
+(noun)|rousing|change of state (generic term)
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|wakefulness (generic term)
+(noun)|foreplay|stimulation|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+arouse|7
+(verb)|elicit|enkindle|kindle|evoke|fire|raise|provoke|make (generic term)|create (generic term)
+(verb)|wake up|awake|awaken|wake|come alive|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|stimulate|brace|energize|energise|perk up|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+(verb)|awaken|wake|waken|rouse|wake up|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+(verb)|stir|move (generic term)
+(verb)|sex|excite|turn on|wind up|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+aroused|6
+(adj)|awakened (similar term)
+(adj)|stimulated|stirred|stirred up|excited (similar term)
+(adj)|wound up|tense (similar term)
+(adj)|horny|randy|ruttish|steamy|turned on|sexy (similar term)
+(adj)|ablaze|aflame|passionate (similar term)
+(adj)|emotional|excited|worked up|agitated (similar term)
+arouser|1
+(noun)|waker|rouser|attendant (generic term)|attender (generic term)|tender (generic term)
+arp|1
+(noun)|Arp|Jean Arp|Hans Arp|artist (generic term)|creative person (generic term)|poet (generic term)
+arpeggio|1
+(noun)|chord (generic term)
+arpent|1
+(noun)|area unit (generic term)|square measure (generic term)
+arquebus|1
+(noun)|harquebus|hackbut|hagbut|muzzle loader (generic term)
+arrack|1
+(noun)|arak|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+arraign|1
+(verb)|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+arraignment|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+arrange|7
+(verb)|set up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|disarrange (antonym)
+(verb)|fix up|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|stage|initiate (generic term)|pioneer (generic term)
+(verb)|format|change (generic term)
+(verb)|dress|set|do|coif|coiffe|coiffure|groom (generic term)|neaten (generic term)
+(verb)|set|compose (generic term)|write (generic term)
+(verb)|set up|put|order|organize (generic term)|organise (generic term)
+arranged|3
+(adj)|ordered|laid (similar term)|set (similar term)|placed (similar term)|disarranged (antonym)
+(adj)|organized (similar term)
+(adj)|staged|artificial (similar term)|unreal (similar term)
+arrangement|6
+(noun)|agreement|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|group (generic term)|grouping (generic term)
+(noun)|organization|organisation|system|structure (generic term)
+(noun)|placement|position (generic term)|spatial relation (generic term)
+(noun)|musical arrangement|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|arranging|transcription|composing (generic term)|composition (generic term)
+arranger|2
+(noun)|organizer|organiser|thinker (generic term)
+(noun)|adapter|transcriber|musician (generic term)
+arranging|1
+(noun)|arrangement|transcription|composing (generic term)|composition (generic term)
+arrant|1
+(adj)|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+arras|1
+(noun)|tapestry|hanging (generic term)|wall hanging (generic term)
+array|6
+(noun)|arrangement (generic term)
+(noun)|display (generic term)
+(noun)|raiment|regalia|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|directional antenna (generic term)
+(verb)|range|lay out|set out|arrange (generic term)|set up (generic term)
+(verb)|align|stand (generic term)
+arrayed|1
+(adj)|panoplied|clothed (similar term)|clad (similar term)
+arrears|2
+(noun)|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+(noun)|debt (generic term)
+arrest|6
+(noun)|apprehension|catch|collar|pinch|taking into custody|capture (generic term)|gaining control (generic term)|seizure (generic term)
+(noun)|check|halt|hitch|stay|stop|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(verb)|collar|nail|apprehend|pick up|nab|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|check|turn back|stop|contain|hold back|defend (generic term)
+(verb)|catch|get|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|halt|hold|stop (generic term)
+arrest warrant|1
+(noun)|bench warrant|warrant (generic term)
+arrested|1
+(adj)|in remission|inactive (similar term)
+arrested development|1
+(noun)|fixation|infantile fixation|regression|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+arrester|1
+(noun)|arrester hook|restraint (generic term)|constraint (generic term)
+arrester hook|1
+(noun)|arrester|restraint (generic term)|constraint (generic term)
+arresting|1
+(adj)|sensational|stunning|impressive (similar term)
+arrhenatherum|1
+(noun)|Arrhenatherum|genus Arrhenatherum|plant genus (generic term)
+arrhenatherum elatius|1
+(noun)|tall oat grass|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass (generic term)
+arrhenius|1
+(noun)|Arrhenius|Svante August Arrhenius|chemist (generic term)|physicist (generic term)
+arrhenius theory of dissociation|1
+(noun)|theory of dissociation|theory of electrolytic dissociation|Arrhenius theory of dissociation|scientific theory (generic term)
+arrhythmia|1
+(noun)|cardiac arrhythmia|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+arrhythmic|2
+(adj)|jerking|jerky|unsteady (similar term)
+(adj)|arrhythmical|unrhythmical (similar term)|unrhythmic (similar term)
+arrhythmical|1
+(adj)|arrhythmic|unrhythmical (similar term)|unrhythmic (similar term)
+arriere pensee|1
+(noun)|mental reservation|reservation|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+arrival|3
+(noun)|reaching|accomplishment (generic term)|achievement (generic term)
+(noun)|action (generic term)
+(noun)|arriver|comer|traveler (generic term)|traveller (generic term)
+arrival gate|1
+(noun)|gate (generic term)
+arrival time|1
+(noun)|time of arrival|point (generic term)|point in time (generic term)
+arrive|2
+(verb)|get|come|leave (antonym)
+(verb)|make it|get in|go far|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+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 (generic term)|word of farewell (generic term)
+arriver|1
+(noun)|arrival|comer|traveler (generic term)|traveller (generic term)
+arriviste|1
+(noun)|upstart|parvenu|nouveau-riche|unpleasant person (generic term)|disagreeable person (generic term)
+arroba|2
+(noun)|weight unit (generic term)|weight (generic term)
+(noun)|liquid unit (generic term)|liquid measure (generic term)
+arrogance|1
+(noun)|haughtiness|hauteur|high-handedness|lordliness|pride (generic term)
+arrogant|1
+(adj)|chesty|self-important|proud (similar term)
+arrogate|3
+(verb)|claim|lay claim|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)|forfeit (antonym)
+(verb)|assign|claim (generic term)|lay claim (generic term)|arrogate (generic term)
+(verb)|assume|usurp|seize|take over|take (generic term)
+arrogated|1
+(adj)|assumed|taken (similar term)
+arrogation|1
+(noun)|confiscation|seizure (generic term)
+arrogator|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+arrow|2
+(noun)|pointer|mark (generic term)
+(noun)|projectile (generic term)|missile (generic term)
+arrow-grass family|1
+(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|monocot family (generic term)|liliopsid family (generic term)
+arrow-shaped|1
+(adj)|sagittate|sagittiform|simple (similar term)|unsubdivided (similar term)
+arrow arum|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+arrow grass|1
+(noun)|Triglochin maritima|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+arrow leaved aster|1
+(noun)|aster (generic term)
+arrow wood|2
+(noun)|Viburnum recognitum|shrub (generic term)|bush (generic term)
+(noun)|southern arrow wood|Viburnum dentatum|shrub (generic term)|bush (generic term)
+arrowhead|1
+(noun)|point (generic term)
+arrowleaf groundsel|1
+(noun)|Senecio triangularis|wildflower (generic term)|wild flower (generic term)
+arrowroot|3
+(noun)|starch (generic term)|amylum (generic term)
+(noun)|American arrowroot|obedience plant|Maranta arundinaceae|maranta (generic term)
+(noun)|achira|indian shot|Canna indica|Canna edulis|canna (generic term)
+arrowroot family|1
+(noun)|Marantaceae|family Marantaceae|monocot family (generic term)|liliopsid family (generic term)
+arrowsmith|1
+(noun)|smith (generic term)
+arrowworm|1
+(noun)|chaetognath|worm (generic term)
+arroyo|1
+(noun)|gully (generic term)
+arroyo willow|1
+(noun)|Salix lasiolepis|willow (generic term)|willow tree (generic term)
+arroz con pollo|1
+(noun)|chicken and rice (generic term)
+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 (generic term)
+(noun)|anus|arsehole|asshole|orifice (generic term)|opening (generic term)|porta (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|horse around|fool around|fool|play (generic term)|joke (generic term)|jest (generic term)
+arsehole|1
+(noun)|anus|arse|asshole|orifice (generic term)|opening (generic term)|porta (generic term)
+arsenal|3
+(noun)|armory|armoury|armament (generic term)
+(noun)|armory|armoury|military installation (generic term)
+(noun)|armory|armoury|foundry (generic term)|metalworks (generic term)
+arsenate|1
+(noun)|salt (generic term)
+arsenic|2
+(noun)|As|atomic number 33|chemical element (generic term)|element (generic term)
+(noun)|arsenic trioxide|arsenous anhydride|arsenous oxide|white arsenic|ratsbane|trioxide (generic term)
+arsenic acid|1
+(noun)|acid (generic term)
+arsenic group|1
+(noun)|cacodyl|cacodyl group|cacodyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+arsenic trioxide|1
+(noun)|arsenic|arsenous anhydride|arsenous oxide|white arsenic|ratsbane|trioxide (generic term)
+arsenical|2
+(adj)|pesticide|drug (related term)
+(noun)|pesticide (generic term)|drug (generic term)
+arsenide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+arsenious|1
+(adj)|chemical element|element (related term)
+arsenopyrite|1
+(noun)|mispickel|mineral (generic term)
+arsenous anhydride|1
+(noun)|arsenic|arsenic trioxide|arsenous oxide|white arsenic|ratsbane|trioxide (generic term)
+arsenous oxide|1
+(noun)|arsenic|arsenic trioxide|arsenous anhydride|white arsenic|ratsbane|trioxide (generic term)
+arsine|1
+(noun)|gas (generic term)
+arson|1
+(noun)|incendiarism|fire-raising|burning (generic term)|combustion (generic term)
+arsonist|1
+(noun)|incendiary|firebug|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+art|4
+(noun)|fine art|creation (generic term)
+(noun)|artistic creation|artistic production|creation (generic term)|creative activity (generic term)
+(noun)|artistry|prowess|superior skill (generic term)
+(noun)|artwork|graphics|nontextual matter|visual communication (generic term)
+art class|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+art collection|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+art critic|1
+(noun)|critic (generic term)
+art dealer|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+art deco|1
+(noun)|deco|artistic movement (generic term)|art movement (generic term)
+art department|1
+(noun)|academic department (generic term)
+art director|1
+(noun)|stage director (generic term)
+art editor|1
+(noun)|editor (generic term)|editor in chief (generic term)
+art exhibition|1
+(noun)|exhibition (generic term)|exposition (generic term)|expo (generic term)
+art form|1
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+art gallery|1
+(noun)|gallery|picture gallery|room (generic term)
+art historian|1
+(noun)|historian (generic term)|historiographer (generic term)
+art history|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+art movement|1
+(noun)|artistic movement|movement (generic term)|social movement (generic term)|front (generic term)
+art nouveau|1
+(noun)|school (generic term)|artistic movement (generic term)|art movement (generic term)
+art object|1
+(noun)|objet d'art|piece|work of art (generic term)
+art paper|1
+(noun)|paper (generic term)
+art rock|1
+(noun)|progressive rock|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+art school|1
+(noun)|conservatory (generic term)|conservatoire (generic term)
+art student|1
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+art tatum|1
+(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician (generic term)|jazzman (generic term)
+art teacher|1
+(noun)|teacher (generic term)|instructor (generic term)
+artamidae|1
+(noun)|Artamidae|family Artamidae|bird family (generic term)
+artamus|1
+(noun)|Artamus|genus Artamus|bird genus (generic term)
+artaxerxes|2
+(noun)|Artaxerxes II|Artaxerxes|king (generic term)|male monarch (generic term)|Rex (generic term)|Irani (generic term)|Iranian (generic term)|Persian (generic term)
+(noun)|Artaxerxes I|Artaxerxes|king (generic term)|male monarch (generic term)|Rex (generic term)|Irani (generic term)|Iranian (generic term)|Persian (generic term)
+artaxerxes i|1
+(noun)|Artaxerxes I|Artaxerxes|king (generic term)|male monarch (generic term)|Rex (generic term)|Irani (generic term)|Iranian (generic term)|Persian (generic term)
+artaxerxes ii|1
+(noun)|Artaxerxes II|Artaxerxes|king (generic term)|male monarch (generic term)|Rex (generic term)|Irani (generic term)|Iranian (generic term)|Persian (generic term)
+artefact|1
+(noun)|artifact|whole (generic term)|unit (generic term)|natural object (antonym)
+artefactual|1
+(adj)|artifactual|whole|unit (related term)
+artemia|1
+(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus (generic term)
+artemia salina|1
+(noun)|brine shrimp|Artemia salina|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+artemis|1
+(noun)|Artemis|Cynthia|Greek deity (generic term)
+artemis pontica|1
+(noun)|Roman wormwood|Artemis pontica|wormwood (generic term)
+artemis spinescens|1
+(noun)|bud brush|bud sagebrush|Artemis spinescens|sagebrush (generic term)|sage brush (generic term)
+artemisia|1
+(noun)|shrub (generic term)|bush (generic term)
+artemisia abrotanum|1
+(noun)|southernwood|Artemisia abrotanum|wormwood (generic term)
+artemisia absinthium|1
+(noun)|common wormwood|absinthe|old man|lad's love|Artemisia absinthium|wormwood (generic term)
+artemisia annua|1
+(noun)|sweet wormwood|Artemisia annua|wormwood (generic term)
+artemisia californica|1
+(noun)|California sagebrush|California sage|Artemisia californica|sagebrush (generic term)|sage brush (generic term)
+artemisia campestris|1
+(noun)|field wormwood|Artemisia campestris|wormwood (generic term)
+artemisia cana|1
+(noun)|silver sage|silver sagebrush|grey sage|gray sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+artemisia dracunculus|1
+(noun)|tarragon|estragon|Artemisia dracunculus|artemisia (generic term)
+artemisia filifolia|1
+(noun)|sand sage|silvery wormwood|Artemisia filifolia|sagebrush (generic term)|sage brush (generic term)
+artemisia frigida|1
+(noun)|wormwood sage|prairie sagewort|Artemisia frigida|wormwood (generic term)
+artemisia gnaphalodes|1
+(noun)|western mugwort|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+artemisia ludoviciana|1
+(noun)|western mugwort|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+artemisia maritima|1
+(noun)|sea wormwood|Seriphidium maritimum|Artemisia maritima|wormwood (generic term)
+artemisia stelleriana|1
+(noun)|dusty miller|beach wormwood|old woman|Artemisia stelleriana|wormwood (generic term)
+artemisia tridentata|1
+(noun)|big sagebrush|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush (generic term)|sage brush (generic term)
+artemisia vulgaris|1
+(noun)|common mugwort|Artemisia vulgaris|mugwort (generic term)
+artemision at ephesus|1
+(noun)|Artemision at Ephesus|temple (generic term)
+artemus ward|1
+(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer (generic term)|author (generic term)
+arteria|1
+(noun)|artery|arterial blood vessel|blood vessel (generic term)
+arteria alveolaris|1
+(noun)|alveolar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria alveolaris inferior|1
+(noun)|inferior alveolar artery|alveolar artery (generic term)|arteria alveolaris (generic term)
+arteria alveolaris superior|1
+(noun)|superior alveolar artery|alveolar artery (generic term)|arteria alveolaris (generic term)
+arteria angularis|1
+(noun)|angular artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria appendicularis|1
+(noun)|appendicular artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria arcuata|1
+(noun)|arcuate artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ascendens|1
+(noun)|ascending artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria auricularis|1
+(noun)|auricular artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria axillaris|1
+(noun)|axillary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria basilaris|1
+(noun)|basilar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria brachialis|1
+(noun)|brachial artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria buccalis|1
+(noun)|buccal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria bulbi penis|1
+(noun)|artery of the penis bulb|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria bulbi vestibuli|1
+(noun)|artery of the vestibule bulb|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria carotis|1
+(noun)|carotid artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria celiaca|1
+(noun)|celiac trunk|celiac artery|truncus celiacus|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria centralis retinae|1
+(noun)|central artery of the retina|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria cerebelli|1
+(noun)|cerebellar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria cerebri|1
+(noun)|cerebral artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria choroidea|1
+(noun)|choroidal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ciliaris|1
+(noun)|ciliary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria circumflexa femoris|1
+(noun)|circumflex artery of the thigh|circumflex artery (generic term)
+arteria circumflexa humeri|1
+(noun)|circumflex humeral artery|circumflex artery (generic term)
+arteria circumflexa ilium|1
+(noun)|circumflex iliac artery|circumflex artery (generic term)
+arteria circumflexa scapulae|1
+(noun)|circumflex scapular artery|circumflex artery (generic term)
+arteria colica|1
+(noun)|colic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria communicans|1
+(noun)|communicating artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria coronaria|1
+(noun)|coronary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria cystica|1
+(noun)|cystic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria digitalis|1
+(noun)|digital arteries|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria epigastrica|1
+(noun)|epigastric artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ethmoidalis|1
+(noun)|ethmoidal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria facialis|1
+(noun)|facial artery|external maxillary artery|maxillary artery (generic term)|arteria maxillaris (generic term)
+arteria femoralis|1
+(noun)|femoral artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria gastrica|1
+(noun)|gastric artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria gastrica breves|1
+(noun)|short gastric artery|vasa brevis|gastric artery (generic term)|arteria gastrica (generic term)
+arteria gastrica sinistra|1
+(noun)|left gastric artery|gastric artery (generic term)|arteria gastrica (generic term)
+arteria glutes|1
+(noun)|gluteal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria hepatica|1
+(noun)|hepatic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ileocolica|1
+(noun)|ileocolic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ileum|1
+(noun)|ileal artery|intestinal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria iliaca|1
+(noun)|iliac artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria iliolumbalis|1
+(noun)|iliolumbar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria infraorbitalis|1
+(noun)|infraorbital artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria intercostalis|1
+(noun)|intercostal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria labialis|1
+(noun)|labial artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria labialis inferior|1
+(noun)|inferior labial artery|labial artery (generic term)|arteria labialis (generic term)
+arteria labialis superior|1
+(noun)|superior labial artery|labial artery (generic term)|arteria labialis (generic term)
+arteria lacrimalis|1
+(noun)|lacrimal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria laryngea|1
+(noun)|laryngeal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria lienalis|1
+(noun)|lienal artery|splenic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria lingualis|1
+(noun)|lingual artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria lumbalis|1
+(noun)|lumbar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria maxillaris|1
+(noun)|maxillary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria meningea|1
+(noun)|meningeal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria mesenterica|1
+(noun)|mesenteric artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria metacarpea|1
+(noun)|metacarpal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria metatarsea|1
+(noun)|metatarsal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria musculophrenica|1
+(noun)|musculophrenic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria nutricia|1
+(noun)|nutrient artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ophthalmica|1
+(noun)|ophthalmic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ovarica|1
+(noun)|ovarian artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria palatina|1
+(noun)|palatine artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria pancreatica|1
+(noun)|pancreatic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria perinealis|1
+(noun)|perineal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria poplitea|1
+(noun)|popliteal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria pudenda|1
+(noun)|pudendal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria pulmonalis|1
+(noun)|pulmonary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria radialis|1
+(noun)|radial artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria rectalis|1
+(noun)|rectal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria renalis|1
+(noun)|renal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria subclavia|1
+(noun)|subclavian artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria temporalis anterior|1
+(noun)|anterior temporal artery|temporal artery (generic term)
+arteria temporalis intermedia|1
+(noun)|intermediate temporal artery|temporal artery (generic term)
+arteria temporalis posterior|1
+(noun)|posterior temporal artery|temporal artery (generic term)
+arteria testicularis|1
+(noun)|testicular artery|internal spermatic artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria ulnaris|1
+(noun)|ulnar artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria uterina|1
+(noun)|uterine artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria vaginalis|1
+(noun)|vaginal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteria vertebralis|1
+(noun)|vertebral artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arterial|1
+(adj)|blood vessel (related term)
+arterial blood|1
+(noun)|blood (generic term)
+arterial blood gases|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+arterial blood vessel|1
+(noun)|artery|arteria|blood vessel (generic term)
+arterial plaque|1
+(noun)|plaque (generic term)
+arterial pressure|1
+(noun)|blood pressure (generic term)
+arterial road|1
+(noun)|highway (generic term)|main road (generic term)
+arterial sclerosis|1
+(noun)|arteriosclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease|sclerosis (generic term)|induration (generic term)
+arterialise|1
+(verb)|arterialize|change (generic term)|alter (generic term)|modify (generic term)
+arterialize|1
+(verb)|arterialise|change (generic term)|alter (generic term)|modify (generic term)
+arteriectasia|1
+(noun)|arteriectasis|pathology (generic term)
+arteriectasis|1
+(noun)|arteriectasia|pathology (generic term)
+arteriogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+arteriography|1
+(noun)|arthrography (generic term)
+arteriola|1
+(noun)|arteriole|capillary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteriolar|1
+(adj)|artery|arteria|arterial blood vessel (related term)
+arteriole|1
+(noun)|arteriola|capillary artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+arteriolosclerosis|1
+(noun)|sclerosis (generic term)|induration (generic term)
+arteriosclerosis|1
+(noun)|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease|sclerosis (generic term)|induration (generic term)
+arteriosclerosis obliterans|1
+(noun)|arteriosclerosis (generic term)|arterial sclerosis (generic term)|hardening of the arteries (generic term)|induration of the arteries (generic term)|coronary-artery disease (generic term)
+arteriosclerotic|1
+(adj)|sclerosis|induration (related term)
+arteriovenous|1
+(adj)|blood vessel (related term)
+arteritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+artery|2
+(noun)|arteria|arterial blood vessel|blood vessel (generic term)
+(noun)|thoroughfare (generic term)
+artery of the labyrinth|1
+(noun)|labyrinthine artery|internal auditory artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+artery of the penis bulb|1
+(noun)|arteria bulbi penis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+artery of the vestibule bulb|1
+(noun)|arteria bulbi vestibuli|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+artesian|1
+(adj)|flowing|subartesian (antonym)
+artesian well|1
+(noun)|well (generic term)
+artful|2
+(adj)|disingenuous|distorted (similar term)|misrepresented (similar term)|perverted (similar term)|twisted (similar term)|insincere (related term)|ingenuous (antonym)
+(adj)|adroit (similar term)|clever (similar term)|ingenious (similar term)|Byzantine (similar term)|crafty (similar term)|cunning (similar term)|dodgy (similar term)|foxy (similar term)|guileful (similar term)|knavish (similar term)|slick (similar term)|sly (similar term)|tricksy (similar term)|tricky (similar term)|wily (similar term)|cute (similar term)|precious (similar term)|designing (similar term)|scheming (similar term)|deep (similar term)|elusive (similar term)|evasive (similar term)|manipulative (similar term)|pawky (similar term)|adroit (related term)|artless (antonym)
+artfully|2
+(adv)|disingenuously
+(adv)|craftily|cunningly|foxily|knavishly|slyly|trickily
+artfulness|1
+(noun)|disingenuousness (generic term)|artlessness (antonym)
+arthralgia|1
+(noun)|pain (generic term)|hurting (generic term)
+arthralgic|1
+(adj)|pain|hurting (related term)
+arthritic|2
+(adj)|creaky|rheumatic|rheumatoid|rheumy|unhealthy (similar term)
+(noun)|patient (generic term)
+arthritis|1
+(noun)|inflammatory disease (generic term)
+arthrocentesis|1
+(noun)|centesis (generic term)
+arthrodesis|1
+(noun)|arthroplasty (generic term)
+arthrogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+arthrography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+arthromere|1
+(noun)|external body part (generic term)
+arthromeric|1
+(adj)|external body part (related term)
+arthropathy|1
+(noun)|pathology (generic term)
+arthroplasty|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+arthropod|1
+(noun)|invertebrate (generic term)
+arthropod family|1
+(noun)|family (generic term)
+arthropod genus|1
+(noun)|genus (generic term)
+arthropoda|1
+(noun)|Arthropoda|phylum Arthropoda|phylum (generic term)
+arthropodal|1
+(adj)|arthropodan|arthropodous|phylum (related term)
+arthropodan|1
+(adj)|arthropodal|arthropodous|phylum (related term)
+arthropodous|1
+(adj)|arthropodal|arthropodan|phylum (related term)
+arthropteris|1
+(noun)|Arthropteris|genus Arthropteris|fern genus (generic term)
+arthroscope|1
+(noun)|endoscope (generic term)
+arthroscopy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+arthrospore|1
+(noun)|cell (generic term)
+arthrosporic|1
+(adj)|arthrosporous|cell (related term)
+arthrosporous|1
+(adj)|arthrosporic|cell (related term)
+arthur|2
+(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Arthur|King Arthur|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+arthur ashe|1
+(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player (generic term)
+arthur compton|1
+(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist (generic term)
+arthur conan doyle|1
+(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer (generic term)|author (generic term)
+arthur edwin kennelly|1
+(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer (generic term)
+arthur evans|1
+(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist (generic term)|archaeologist (generic term)
+arthur fiedler|1
+(noun)|Fiedler|Arthur Fiedler|conductor (generic term)|music director (generic term)|director (generic term)
+arthur garfield hays|1
+(noun)|Hays|Arthur Garfield Hays|lawyer (generic term)|attorney (generic term)
+arthur holly compton|1
+(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist (generic term)
+arthur holmes|1
+(noun)|Holmes|Arthur Holmes|geologist (generic term)
+arthur honegger|1
+(noun)|Honegger|Arthur Honegger|composer (generic term)
+arthur jacob arshawsky|1
+(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+arthur james balfour|1
+(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman (generic term)|solon (generic term)|national leader (generic term)
+arthur john gielgud|1
+(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+arthur koestler|1
+(noun)|Koestler|Arthur Koestler|writer (generic term)|author (generic term)
+arthur laffer|1
+(noun)|Laffer|Arthur Laffer|economist (generic term)|economic expert (generic term)
+arthur marx|1
+(noun)|Marx|Arthur Marx|Harpo|comedian (generic term)|comic (generic term)
+arthur meier schlesinger|1
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian (generic term)|historiographer (generic term)
+arthur meier schlesinger jr.|1
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian (generic term)|historiographer (generic term)
+arthur miller|1
+(noun)|Miller|Arthur Miller|dramatist (generic term)|playwright (generic term)
+arthur mitchell|1
+(noun)|Mitchell|Arthur Mitchell|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+arthur neville chamberlain|1
+(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman (generic term)|solon (generic term)|national leader (generic term)
+arthur rimbaud|1
+(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet (generic term)
+arthur robert ashe|1
+(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player (generic term)
+arthur rubinstein|1
+(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist (generic term)|piano player (generic term)
+arthur schlesinger|2
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian (generic term)|historiographer (generic term)
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian (generic term)|historiographer (generic term)
+arthur schlesinger jr.|1
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian (generic term)|historiographer (generic term)
+arthur schopenhauer|1
+(noun)|Schopenhauer|Arthur Schopenhauer|philosopher (generic term)
+arthur seymour sullivan|1
+(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer (generic term)
+arthur stanley jefferson laurel|1
+(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian (generic term)|comic (generic term)
+arthur sullivan|1
+(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer (generic term)
+arthur symons|1
+(noun)|Symons|Arthur Symons|poet (generic term)
+arthur tappan|1
+(noun)|Tappan|Arthur Tappan|abolitionist (generic term)|emancipationist (generic term)
+arthur tatum|1
+(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician (generic term)|jazzman (generic term)
+arthur wellesley|1
+(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|Iron Duke|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+arthurian|1
+(adj)|Arthurian|fictional character|fictitious character|character (related term)
+arthurian legend|1
+(noun)|Arthurian legend|legend (generic term)|fable (generic term)
+artichoke|2
+(noun)|globe artichoke|artichoke plant|Cynara scolymus|vegetable (generic term)
+(noun)|globe artichoke|vegetable (generic term)|veggie (generic term)
+artichoke heart|1
+(noun)|vegetable (generic term)|veggie (generic term)
+artichoke plant|1
+(noun)|artichoke|globe artichoke|Cynara scolymus|vegetable (generic term)
+article|5
+(noun)|nonfiction (generic term)|nonfictional prose (generic term)|piece (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|clause|section (generic term)|subdivision (generic term)
+(noun)|determiner (generic term)|determinative (generic term)
+(verb)|oblige (generic term)|bind (generic term)|hold (generic term)|obligate (generic term)
+article of clothing|1
+(noun)|clothing|vesture|wear|wearable|habiliment|covering (generic term)|consumer goods (generic term)
+article of commerce|1
+(noun)|ware (generic term)|article (generic term)
+article of faith|2
+(noun)|credendum|dogma (generic term)|tenet (generic term)
+(noun)|conviction|strong belief|belief (generic term)
+article of furniture|1
+(noun)|furniture|piece of furniture|furnishing (generic term)
+articled|1
+(adj)|apprenticed|bound|indentured|unfree (similar term)
+articles of agreement|1
+(noun)|shipping articles|contract (generic term)
+articles of confederation|1
+(noun)|Articles of Confederation|written agreement (generic term)
+articles of incorporation|1
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+articular|1
+(adj)|articulary|body part (related term)
+articular muscle|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+articulary|1
+(adj)|articular|body part (related term)
+articulate|6
+(adj)|articulated (similar term)|eloquent (similar term)|facile (similar term)|fluent (similar term)|silver (similar term)|silver-tongued (similar term)|smooth-spoken (similar term)|pronounced (similar term)|speech-endowed (similar term)|well-spoken (similar term)|communicative (related term)|communicatory (related term)|spoken (related term)|inarticulate (antonym)
+(adj)|articulated|jointed (similar term)|unarticulated (antonym)
+(verb)|joint|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|give voice|formulate|word|phrase|express (generic term)|show (generic term)|evince (generic term)
+(verb)|pronounce|enounce|sound out|enunciate|say
+(verb)|enunciate|vocalize|vocalise|state (generic term)|say (generic term)|tell (generic term)
+articulated|2
+(adj)|articulate|jointed (similar term)|unarticulated (antonym)
+(adj)|articulate (similar term)
+articulated lorry|1
+(noun)|trailer truck|tractor trailer|trucking rig|rig|semi|truck (generic term)|motortruck (generic term)
+articulately|2
+(adv)|eloquently|inarticulately (antonym)|ineloquently (antonym)
+(adv)|eloquently|inarticulately (antonym)
+articulateness|1
+(noun)|fluency|volubility|communicativeness (generic term)
+articulatio|1
+(noun)|joint|articulation|body part (generic term)
+articulatio coxae|1
+(noun)|hip|hip joint|coxa|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+articulatio cubiti|1
+(noun)|elbow|elbow joint|human elbow|cubitus|cubital joint|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+articulatio genus|1
+(noun)|knee|knee joint|human knee|genu|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+articulatio humeri|1
+(noun)|shoulder|shoulder joint|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+articulatio plana|1
+(noun)|gliding joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+articulatio radiocarpea|1
+(noun)|wrist|carpus|wrist joint|radiocarpal joint|gliding joint (generic term)|articulatio plana (generic term)
+articulatio spheroidea|1
+(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+articulatio synovialis|1
+(noun)|synovial joint|diarthrosis|joint (generic term)|articulation (generic term)|articulatio (generic term)
+articulatio talocruralis|1
+(noun)|ankle|ankle joint|mortise joint|gliding joint (generic term)|articulatio plana (generic term)
+articulatio temporomandibularis|1
+(noun)|mandibular joint|temporomandibular joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+articulatio trochoidea|1
+(noun)|pivot joint|rotary joint|rotatory joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+articulation|5
+(noun)|pronunciation (generic term)
+(noun)|join|joint|juncture|junction|connection (generic term)|connexion (generic term)|link (generic term)
+(noun)|voice|expression (generic term)|verbal expression (generic term)|verbalism (generic term)
+(noun)|joint|articulatio|body part (generic term)
+(noun)|joining (generic term)|connection (generic term)|connexion (generic term)
+articulative|1
+(adj)|articulatory|pronunciation (related term)
+articulator|2
+(noun)|communicator (generic term)
+(noun)|speech organ (generic term)|vocal organ (generic term)|organ of speech (generic term)
+articulatory|1
+(adj)|articulative|pronunciation (related term)
+articulatory system|1
+(noun)|system (generic term)
+artie shaw|1
+(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+artifact|1
+(noun)|artefact|whole (generic term)|unit (generic term)|natural object (antonym)
+artifactual|1
+(adj)|artefactual|whole|unit (related term)
+artifice|1
+(noun)|ruse|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+artificer|3
+(noun)|inventor|discoverer|creator (generic term)
+(noun)|craftsman|artisan|journeyman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|armorer|armourer|enlisted man (generic term)
+artificial|3
+(adj)|unreal|arranged (similar term)|staged (similar term)|bionic (similar term)|bleached (similar term)|colored (similar term)|coloured (similar term)|dyed (similar term)|cardboard (similar term)|unlifelike (similar term)|celluloid (similar term)|synthetic (similar term)|conventionalized (similar term)|conventionalised (similar term)|stylized (similar term)|stylised (similar term)|dummy (similar term)|ersatz (similar term)|substitute (similar term)|factitious (similar term)|fake (similar term)|false (similar term)|faux (similar term)|imitation (similar term)|simulated (similar term)|man-made (similar term)|semisynthetic (similar term)|synthetic (similar term)|near (similar term)|painted (similar term)|counterfeit (related term)|imitative (related term)|unreal (related term)|natural (antonym)
+(adj)|contrived|hokey|stilted|affected (similar term)|unnatural (similar term)
+(adj)|inorganic (similar term)
+artificial additive|1
+(noun)|food additive|additive (generic term)
+artificial blood|1
+(noun)|liquid (generic term)
+artificial flower|1
+(noun)|art (generic term)|fine art (generic term)
+artificial heart|1
+(noun)|implant (generic term)
+artificial horizon|1
+(noun)|gyro horizon|flight indicator|navigational instrument (generic term)
+artificial insemination|1
+(noun)|AI|insemination (generic term)
+artificial intelligence|1
+(noun)|AI|computer science (generic term)|computing (generic term)
+artificial joint|1
+(noun)|implant (generic term)
+artificial kidney|1
+(noun)|hemodialyzer|dialyzer (generic term)|dialysis machine (generic term)
+artificial lake|1
+(noun)|reservoir|lake (generic term)
+artificial language|1
+(noun)|language (generic term)|linguistic communication (generic term)|natural language (antonym)
+artificial pacemaker|1
+(noun)|pacemaker|electronic device (generic term)
+artificial respiration|1
+(noun)|emergency procedure (generic term)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+artificial satellite|1
+(noun)|satellite|orbiter|equipment (generic term)
+artificial skin|1
+(noun)|covering (generic term)
+artificiality|1
+(noun)|unnaturalness (generic term)
+artificially|1
+(adv)|unnaturally|by artificial means|naturally (antonym)
+artillery|3
+(noun)|heavy weapon|gun|ordnance|armament (generic term)
+(noun)|artillery unit|army unit (generic term)
+(noun)|weapon|persuasion (generic term)|suasion (generic term)
+artillery fire|1
+(noun)|cannon fire|fire (generic term)|firing (generic term)
+artillery plant|1
+(noun)|Pilea microphylla|nettle (generic term)
+artillery shell|1
+(noun)|shell (generic term)
+artillery unit|1
+(noun)|artillery|army unit (generic term)
+artilleryman|1
+(noun)|cannoneer|gunner|machine gunner|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+artiodactyl|2
+(adj)|artiodactylous|even-toed|animal order (related term)
+(noun)|even-toed ungulate|artiodactyl mammal|ungulate (generic term)|hoofed mammal (generic term)|odd-toed ungulate (antonym)
+artiodactyl mammal|1
+(noun)|even-toed ungulate|artiodactyl|ungulate (generic term)|hoofed mammal (generic term)|odd-toed ungulate (antonym)
+artiodactyla|1
+(noun)|Artiodactyla|order Artiodactyla|animal order (generic term)
+artiodactylous|1
+(adj)|artiodactyl|even-toed|animal order (related term)
+artisan|1
+(noun)|craftsman|journeyman|artificer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+artisan's lien|1
+(noun)|lien (generic term)
+artist|1
+(noun)|creative person|creator (generic term)
+artist's loft|1
+(noun)|loft (generic term)|artist's workroom (generic term)|atelier (generic term)
+artist's model|1
+(noun)|sitter|model (generic term)|poser (generic term)
+artist's workroom|1
+(noun)|atelier|studio (generic term)
+artiste|1
+(noun)|performer (generic term)|performing artist (generic term)
+artistic|3
+(adj)|creator (related term)
+(adj)|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+(adj)|aesthetic|esthetic|pleasing|tasteful (similar term)
+artistic creation|1
+(noun)|art|artistic production|creation (generic term)|creative activity (generic term)
+artistic movement|1
+(noun)|art movement|movement (generic term)|social movement (generic term)|front (generic term)
+artistic production|1
+(noun)|art|artistic creation|creation (generic term)|creative activity (generic term)
+artistic style|1
+(noun)|idiom|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+artistry|1
+(noun)|art|prowess|superior skill (generic term)
+artium baccalaurens|1
+(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree (generic term)|baccalaureate (generic term)
+artium magister|1
+(noun)|Master of Arts|MA|Artium Magister|AM|master's degree (generic term)
+artless|4
+(adj)|ingenuous|candid (similar term)|open (similar term)|heart-to-heart (similar term)|undistorted (similar term)|naive (related term)|naif (related term)|sincere (related term)|disingenuous (antonym)
+(adj)|careless (similar term)|guileless (similar term)|honest (similar term)|natural (related term)|artful (antonym)
+(adj)|unskilled (similar term)
+(adj)|uncultivated|uncultured|unrefined (similar term)
+artlessly|2
+(adv)|crudely|inexpertly
+(adv)|ingenuously
+artlessness|2
+(noun)|innocence|ingenuousness|naturalness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|ingenuousness (generic term)|artfulness (antonym)
+artocarpus|1
+(noun)|Artocarpus|genus Artocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+artocarpus altilis|1
+(noun)|breadfruit|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree (generic term)
+artocarpus communis|1
+(noun)|breadfruit|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree (generic term)
+artocarpus heterophyllus|1
+(noun)|jackfruit|jackfruit tree|Artocarpus heterophyllus|fruit tree (generic term)
+artocarpus odoratissima|1
+(noun)|marang|marang tree|Artocarpus odoratissima|fruit tree (generic term)
+artois|1
+(noun)|Artois|French region (generic term)
+arts|1
+(noun)|humanistic discipline|humanities|liberal arts|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+arts and crafts|1
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+artsd|1
+(noun)|Doctor of Arts|ArtsD|honorary degree (generic term)|honoris causa (generic term)
+artsy-craftsy|1
+(adj)|arty-crafty|pretentious (similar term)
+artur rubinstein|1
+(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist (generic term)|piano player (generic term)
+artur schnabel|1
+(noun)|Schnabel|Artur Schnabel|composer (generic term)|pianist (generic term)|piano player (generic term)
+arturo toscanini|1
+(noun)|Toscanini|Arturo Toscanini|conductor (generic term)|music director (generic term)|director (generic term)
+artwork|1
+(noun)|art|graphics|nontextual matter|visual communication (generic term)
+arty|1
+(adj)|pretentious (similar term)
+arty-crafty|1
+(adj)|artsy-craftsy|pretentious (similar term)
+aruba|1
+(noun)|Aruba|island (generic term)
+arugula|1
+(noun)|rocket|roquette|garden rocket|rocket salad|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+arui|1
+(noun)|aoudad|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep (generic term)
+arulo|1
+(noun)|Arulo|artificial language (generic term)
+arum|2
+(noun)|starch (generic term)|amylum (generic term)
+(noun)|aroid|herb (generic term)|herbaceous plant (generic term)
+arum family|1
+(noun)|Araceae|family Araceae|monocot family (generic term)|liliopsid family (generic term)
+arum lily|1
+(noun)|calla lily|calla|Zantedeschia aethiopica|flower (generic term)
+arum maculatum|1
+(noun)|cuckoopint|lords-and-ladies|jack-in-the-pulpit|Arum maculatum|arum (generic term)|aroid (generic term)
+arum palaestinum|1
+(noun)|black calla|Arum palaestinum|arum (generic term)|aroid (generic term)
+arundinaceous|1
+(adj)|monocot genus|liliopsid genus (related term)
+arundinaria|1
+(noun)|Arundinaria|genus Arundinaria|monocot genus (generic term)|liliopsid genus (generic term)
+arundinaria gigantea|1
+(noun)|giant cane|cane reed|Arundinaria gigantea|bamboo (generic term)
+arundinaria tecta|1
+(noun)|small cane|switch cane|Arundinaria tecta|bamboo (generic term)
+arundo|1
+(noun)|Arundo|genus Arundo|monocot genus (generic term)|liliopsid genus (generic term)
+arundo conspicua|1
+(noun)|toetoe|toitoi|Arundo conspicua|Chionochloa conspicua|reed (generic term)
+arundo donax|1
+(noun)|giant reed|Arundo donax|reed (generic term)
+arundo richardii|1
+(noun)|plumed tussock|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass (generic term)
+aruru|1
+(noun)|Aruru|Semitic deity (generic term)
+arvicola|1
+(noun)|Arvicola|genus Arvicola|mammal genus (generic term)
+arvicola amphibius|1
+(noun)|water vole|water rat|Arvicola amphibius|vole (generic term)|field mouse (generic term)
+aryan|3
+(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person (related term)
+(noun)|Aryan|White (generic term)|white person (generic term)|Caucasian (generic term)
+(noun)|Aryan|Indo-European|primitive (generic term)|primitive person (generic term)
+arytaenoid|1
+(noun)|arytenoid|arytenoid cartilage|cartilage (generic term)|gristle (generic term)
+arytenoid|1
+(noun)|arytaenoid|arytenoid cartilage|cartilage (generic term)|gristle (generic term)
+arytenoid cartilage|1
+(noun)|arytenoid|arytaenoid|cartilage (generic term)|gristle (generic term)
+as|3
+(noun)|arsenic|As|atomic number 33|chemical element (generic term)|element (generic term)
+(noun)|American Samoa|Eastern Samoa|AS|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(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 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|unluckily (antonym)|unfortunately (antonym)
+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 (generic term)
+asa gray|1
+(noun)|Gray|Asa Gray|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+asa yoelson|1
+(noun)|Jolson|Al Jolson|Asa Yoelson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+asadha|1
+(noun)|Asarh|Asadha|Hindu calendar month (generic term)
+asafetida|1
+(noun)|asafoetida|natural resin (generic term)
+asafoetida|1
+(noun)|asafetida|natural resin (generic term)
+asahikawa|1
+(noun)|Asahikawa|city (generic term)|metropolis (generic term)|urban center (generic term)
+asala|1
+(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+asama|1
+(noun)|Asama|Mount Asama|volcano (generic term)
+asamiya|1
+(noun)|Assamese|Asamiya|Magadhan (generic term)
+asana|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+asanga|1
+(noun)|Asanga|religious leader (generic term)
+asap|1
+(adv)|ASAP
+asaph hall|1
+(noun)|Hall|Asaph Hall|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+asarabacca|1
+(noun)|Asarum europaeum|wild ginger (generic term)
+asarh|1
+(noun)|Asarh|Asadha|Hindu calendar month (generic term)
+asarum|1
+(noun)|Asarum|genus Asarum|dicot genus (generic term)|magnoliopsid genus (generic term)
+asarum canadense|1
+(noun)|Canada ginger|black snakeroot|Asarum canadense|wild ginger (generic term)
+asarum europaeum|1
+(noun)|asarabacca|Asarum europaeum|wild ginger (generic term)
+asarum shuttleworthii|1
+(noun)|heartleaf|heart-leaf|Asarum shuttleworthii|herb (generic term)|herbaceous plant (generic term)
+asarum virginicum|1
+(noun)|heartleaf|heart-leaf|Asarum virginicum|wild ginger (generic term)
+asat|1
+(adj)|antisatellite|ASAT|equipment (related term)
+asbat al-ansar|1
+(noun)|Asbat al-Ansar|Band of Partisans|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+asbestos|1
+(noun)|amphibole (generic term)
+asbestos abatement|1
+(noun)|abatement of a nuisance (generic term)|nuisance abatement (generic term)
+asbestosis|1
+(noun)|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+ascaphidae|1
+(noun)|Ascaphidae|family Ascaphidae|amphibian family (generic term)
+ascaphus|1
+(noun)|Ascaphus|genus Ascaphus|amphibian genus (generic term)
+ascaphus trui|1
+(noun)|tailed frog|bell toad|ribbed toad|tailed toad|Ascaphus trui|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+ascariasis|1
+(noun)|infestation (generic term)
+ascaridae|1
+(noun)|Ascaridae|family Ascaridae|worm family (generic term)
+ascaridia|1
+(noun)|Ascaridia|genus Ascaridia|worm genus (generic term)
+ascaridia galli|1
+(noun)|chicken roundworm|Ascaridia galli|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+ascaris|1
+(noun)|Ascaris|genus Ascaris|worm genus (generic term)
+ascaris lumbricoides|1
+(noun)|common roundworm|Ascaris lumbricoides|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+ascend|6
+(verb)|go up|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|descend (antonym)
+(verb)|go back (generic term)|date back (generic term)|date from (generic term)
+(verb)|accede (generic term)|enter (generic term)
+(verb)|follow (generic term)|travel along (generic term)
+(verb)|slope (generic term)|incline (generic term)|pitch (generic term)
+(verb)|rise|come up|uprise|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|set (antonym)
+ascendable|1
+(adj)|ascendible|climbable|scalable (similar term)
+ascendance|1
+(noun)|dominance|ascendence|ascendancy|ascendency|control|condition (generic term)|status (generic term)
+ascendancy|1
+(noun)|dominance|ascendance|ascendence|ascendency|control|condition (generic term)|status (generic term)
+ascendant|4
+(adj)|ascendent|ascensive|ascending (similar term)
+(adj)|ascendent|dominating|dominant (similar term)
+(noun)|ascendent|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|ancestor|ascendent|antecedent|root|relative (generic term)|relation (generic term)|descendant (antonym)
+ascendence|1
+(noun)|dominance|ascendance|ascendancy|ascendency|control|condition (generic term)|status (generic term)
+ascendency|1
+(noun)|dominance|ascendance|ascendence|ascendancy|control|condition (generic term)|status (generic term)
+ascendent|4
+(adj)|ascendant|ascensive|ascending (similar term)
+(adj)|ascendant|dominating|dominant (similar term)
+(noun)|ascendant|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|ancestor|ascendant|antecedent|root|relative (generic term)|relation (generic term)|descendant (antonym)
+ascender|3
+(noun)|mover (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|line (generic term)
+ascendible|1
+(adj)|ascendable|climbable|scalable (similar term)
+ascending|2
+(adj)|acclivitous (similar term)|rising (similar term)|uphill (similar term)|ascendant (similar term)|ascendent (similar term)|ascensive (similar term)|assurgent (similar term)|assurgent (similar term)|scandent (similar term)|highflying (similar term)|up (similar term)|upward (similar term)|up (related term)|descending (antonym)
+(noun)|rise|ascent|ascension|motion (generic term)|movement (generic term)|move (generic term)
+ascending aorta|1
+(noun)|aorta (generic term)
+ascending artery|1
+(noun)|arteria ascendens|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ascending colon|1
+(noun)|colon (generic term)
+ascending node|1
+(noun)|node (generic term)|descending node (antonym)
+ascension|5
+(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation (generic term)
+(noun)|rise|rising|ascent|change of location (generic term)|travel (generic term)|fall (antonym)
+(noun)|Ascension|Ascension of Christ|miracle (generic term)
+(noun)|change of location (generic term)|travel (generic term)
+(noun)|rise|ascent|ascending|motion (generic term)|movement (generic term)|move (generic term)
+ascension day|1
+(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation (generic term)
+ascension of christ|1
+(noun)|Ascension|Ascension of Christ|miracle (generic term)
+ascension of the lord|1
+(noun)|Ascension|Ascension Day|Ascension of the Lord|holy day of obligation (generic term)
+ascensional|1
+(adj)|motion|movement|move (related term)
+ascensive|1
+(adj)|ascendant|ascendent|ascending (similar term)
+ascent|3
+(noun)|acclivity|rise|raise|climb|upgrade|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+(noun)|rise|rising|ascension|change of location (generic term)|travel (generic term)|fall (antonym)
+(noun)|rise|ascension|ascending|motion (generic term)|movement (generic term)|move (generic term)
+ascertain|4
+(verb)|determine|find|find out
+(verb)|see|check|insure|see to it|ensure|control|assure|verify (generic term)
+(verb)|determine|check|find out|see|watch|learn
+(verb)|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)
+ascertainable|1
+(adj)|discoverable|determinable (similar term)
+ascertained|1
+(adj)|discovered|observed|determined (similar term)
+ascesis|1
+(noun)|asceticism|self-denial (generic term)|self-discipline (generic term)|self-control (generic term)
+ascetic|3
+(adj)|ascetical|religious person (related term)
+(adj)|ascetical|austere|spartan|abstemious (similar term)
+(noun)|abstainer|religious person (generic term)
+ascetical|2
+(adj)|ascetic|religious person (related term)
+(adj)|ascetic|austere|spartan|abstemious (similar term)
+asceticism|3
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|austerity|nonindulgence|self-discipline (generic term)|self-denial (generic term)
+(noun)|ascesis|self-denial (generic term)|self-discipline (generic term)|self-control (generic term)
+asch|1
+(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer (generic term)|author (generic term)
+aschelminthes|1
+(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum (generic term)
+ascidiaceae|1
+(noun)|Ascidiaceae|class Ascidiaceae|class (generic term)
+ascidian|1
+(noun)|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+ascidian tadpole|1
+(noun)|larva (generic term)
+ascii|1
+(noun)|American Standard Code for Information Interchange|ASCII|code (generic term)|computer code (generic term)
+ascii character|1
+(noun)|ASCII character|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+ascii character set|1
+(noun)|ASCII character set|character set (generic term)
+ascii control character|1
+(noun)|control character|ASCII control character|ASCII character (generic term)
+ascii text file|1
+(noun)|ASCII text file|text file (generic term)|document (generic term)
+ascites|1
+(noun)|pathology (generic term)
+ascitic|1
+(adj)|pathology (related term)
+asclepia meadii|1
+(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed (generic term)|silkweed (generic term)
+asclepiad|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+asclepiadaceae|1
+(noun)|Asclepiadaceae|family Asclepiadaceae|milkweed family|dicot family (generic term)|magnoliopsid family (generic term)
+asclepiadaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+asclepias|1
+(noun)|Asclepias|genus Asclepias|dicot genus (generic term)|magnoliopsid genus (generic term)
+asclepias albicans|1
+(noun)|white milkweed|Asclepias albicans|milkweed (generic term)|silkweed (generic term)
+asclepias curassavica|1
+(noun)|blood flower|swallowwort|Asclepias curassavica|milkweed (generic term)|silkweed (generic term)
+asclepias exaltata|1
+(noun)|poke milkweed|Asclepias exaltata|milkweed (generic term)|silkweed (generic term)
+asclepias incarnata|1
+(noun)|swamp milkweed|Asclepias incarnata|milkweed (generic term)|silkweed (generic term)
+asclepias meadii|1
+(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed (generic term)|silkweed (generic term)
+asclepias purpurascens|1
+(noun)|purple silkweed|Asclepias purpurascens|milkweed (generic term)|silkweed (generic term)
+asclepias speciosa|1
+(noun)|showy milkweed|Asclepias speciosa|milkweed (generic term)|silkweed (generic term)
+asclepias subverticillata|1
+(noun)|poison milkweed|horsetail milkweed|Asclepias subverticillata|milkweed (generic term)|silkweed (generic term)
+asclepias tuberosa|1
+(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+asclepias verticillata|1
+(noun)|whorled milkweed|Asclepias verticillata|milkweed (generic term)|silkweed (generic term)
+asclepius|1
+(noun)|Aesculapius|Asclepius|Asklepios|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+ascocarp|1
+(noun)|fruiting body (generic term)
+ascocarpous|1
+(adj)|fruiting body (related term)
+ascolichen|1
+(noun)|lichen (generic term)
+ascoma|1
+(noun)|ascocarp (generic term)
+ascomycete|1
+(noun)|ascomycetous fungus|fungus (generic term)
+ascomycetes|1
+(noun)|Ascomycetes|class Ascomycetes|class (generic term)
+ascomycetous|1
+(adj)|fungus (related term)
+ascomycetous fungus|1
+(noun)|ascomycete|fungus (generic term)
+ascomycota|1
+(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division (generic term)
+ascomycotina|1
+(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division (generic term)
+ascophyllum|1
+(noun)|Ascophyllum|genus Ascophyllum|protoctist genus (generic term)
+ascophyllum nodosum|1
+(noun)|bladderwrack|Ascophyllum nodosum|rockweed (generic term)
+ascorbic acid|1
+(noun)|vitamin C|water-soluble vitamin (generic term)|antioxidant (generic term)
+ascospore|1
+(noun)|spore (generic term)
+ascosporic|1
+(adj)|ascosporous|spore (related term)
+ascosporous|1
+(adj)|ascosporic|spore (related term)
+ascot|1
+(noun)|cravat (generic term)
+ascribable|1
+(adj)|due to|imputable|referable|attributable (similar term)
+ascribe|1
+(verb)|impute|assign|attribute|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+ascription|1
+(noun)|attribution|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+ascus|1
+(noun)|reproductive structure (generic term)
+asdic|1
+(noun)|sonar|echo sounder|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|navigational instrument (generic term)
+asea|1
+(adv)|seaward|seawards|toward the sea
+asean|1
+(noun)|Association of Southeast Asian Nations|ASEAN|association (generic term)
+asepsis|2
+(noun)|antisepsis|sterility|sterileness|sanitariness (generic term)
+(noun)|antisepsis|organic process (generic term)|biological process (generic term)
+aseptic|1
+(adj)|sterile|antiseptic (similar term)
+asexual|1
+(adj)|nonsexual|agamic (similar term)|agamous (similar term)|agamogenetic (similar term)|apomictic (similar term)|parthenogenetic (similar term)|fissiparous (similar term)|neuter (similar term)|sexless (similar term)|vegetal (similar term)|vegetative (similar term)|sexual (antonym)
+asexual reproduction|1
+(noun)|agamogenesis|reproduction (generic term)
+asexuality|1
+(noun)|sexlessness|physiological property (generic term)
+asgard|1
+(noun)|Asgard|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+ash|4
+(noun)|residue (generic term)
+(noun)|ash tree|tree (generic term)
+(noun)|wood (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+ash-bin|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+ash-blonde|1
+(adj)|platinum-blonde|towheaded|blond (similar term)|blonde (similar term)|light-haired (similar term)
+ash-gray|1
+(adj)|ash-grey|ashy|achromatic (similar term)
+ash-grey|1
+(adj)|ash-gray|ashy|achromatic (similar term)
+ash-key|1
+(noun)|seed (generic term)
+ash-leaved maple|1
+(noun)|box elder|Acer negundo|maple (generic term)
+ash-pan|1
+(noun)|receptacle (generic term)
+ash bin|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+ash cake|1
+(noun)|ashcake|corn tash|cornbread (generic term)
+ash can|1
+(noun)|Ash Can|Ashcan school|artistic movement (generic term)|art movement (generic term)
+ash gray|1
+(noun)|ash grey|silver|silver grey|silver gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+ash grey|1
+(noun)|ash gray|silver|silver grey|silver gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+ash tree|1
+(noun)|ash|tree (generic term)
+ash wednesday|1
+(noun)|Ash Wednesday|Christian holy day (generic term)
+ashamed|1
+(adj)|discredited (similar term)|disgraced (similar term)|dishonored (similar term)|shamed (similar term)|embarrassed (similar term)|humiliated (similar term)|mortified (similar term)|guilty (similar term)|hangdog (similar term)|shamefaced (similar term)|shamed (similar term)|shamefaced (similar term)|sheepish (similar term)|penitent (related term)|repentant (related term)|unashamed (antonym)
+ashamedly|1
+(adv)|unashamedly (antonym)
+ashbin|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|dustbin|trash barrel|trash bin|bin (generic term)
+ashcake|1
+(noun)|ash cake|corn tash|cornbread (generic term)
+ashcan|1
+(noun)|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+ashcan school|2
+(noun)|Ashcan School|Eight|school (generic term)|artistic movement (generic term)|art movement (generic term)
+(noun)|Ash Can|Ashcan school|artistic movement (generic term)|art movement (generic term)
+ashe|1
+(noun)|Ashe|Arthur Ashe|Arthur Robert Ashe|tennis player (generic term)
+ashen|2
+(adj)|blanched|bloodless|livid|white|colorless (similar term)|colourless (similar term)
+(adj)|woody (similar term)
+asheville|1
+(noun)|Asheville|town (generic term)
+ashir|1
+(noun)|Ashur|Ashir|Semitic deity (generic term)
+ashkenazi|1
+(noun)|Ashkenazi|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+ashkhabad|1
+(noun)|Ashkhabad|capital of Turkmenistan|capital (generic term)
+ashlar|1
+(noun)|stone (generic term)|building block (generic term)
+ashley montagu|1
+(noun)|Montagu|Ashley Montagu|anthropologist (generic term)
+ashore|1
+(adv)|on land|toward land|onto land
+ashram|1
+(noun)|retreat (generic term)
+ashton|1
+(noun)|Ashton|Sir Frederick Ashton|choreographer (generic term)
+ashtoreth|1
+(noun)|Astarte|Ashtoreth|Semitic deity (generic term)
+ashtray|1
+(noun)|receptacle (generic term)
+ashur|2
+(noun)|Ashur|Ashir|Semitic deity (generic term)
+(noun)|Assur|Asur|Ashur|city (generic term)|metropolis (generic term)|urban center (generic term)
+ashurbanipal|1
+(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king (generic term)|male monarch (generic term)|Rex (generic term)
+ashy|1
+(adj)|ash-grey|ash-gray|achromatic (similar term)
+asia|2
+(noun)|Asia|continent (generic term)
+(noun)|Asia|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+asia minor|1
+(noun)|Asia Minor|Anatolia|peninsula (generic term)
+asian|3
+(adj)|Asian|Asiatic|continent (related term)
+(adj)|Asian|oriental|eastern (similar term)
+(noun)|Asian|Asiatic|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)|person of color (generic term)|person of colour (generic term)
+asian american|1
+(noun)|Asian American|American (generic term)
+asian black grouse|1
+(noun)|Asian black grouse|Lyrurus mlokosiewiczi|black grouse (generic term)
+asian coral snake|1
+(noun)|Asian coral snake|coral snake (generic term)|Old World coral snake (generic term)
+asian country|1
+(noun)|Asian country|Asian nation|country (generic term)|state (generic term)|land (generic term)
+asian crocodile|1
+(noun)|Asian crocodile|Crocodylus porosus|crocodile (generic term)
+asian horseshoe crab|1
+(noun)|Asian horseshoe crab|arthropod (generic term)
+asian influenza|1
+(noun)|Asian influenza|Asiatic flu|influenza (generic term)|flu (generic term)|grippe (generic term)
+asian longhorned beetle|1
+(noun)|Asian longhorned beetle|Anoplophora glabripennis|beetle (generic term)
+asian nation|1
+(noun)|Asian country|Asian nation|country (generic term)|state (generic term)|land (generic term)
+asian russia|1
+(noun)|Asian Russia|Russia (generic term)|Russian Federation (generic term)
+asian shamanism|1
+(noun)|shamanism|Asian shamanism|religion (generic term)|faith (generic term)|religious belief (generic term)
+asian tiger mosquito|1
+(noun)|Asian tiger mosquito|Aedes albopictus|mosquito (generic term)
+asian wild ox|1
+(noun)|Asian wild ox|ox (generic term)|wild ox (generic term)
+asiatic|2
+(adj)|Asian|Asiatic|continent (related term)
+(noun)|Asian|Asiatic|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)|person of color (generic term)|person of colour (generic term)
+asiatic beetle|1
+(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+asiatic black bear|1
+(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear (generic term)
+asiatic buffalo|1
+(noun)|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo (generic term)|buffalo (generic term)
+asiatic cholera|1
+(noun)|cholera|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease (generic term)
+asiatic cockroach|1
+(noun)|oriental cockroach|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach (generic term)|roach (generic term)
+asiatic flu|1
+(noun)|Asian influenza|Asiatic flu|influenza (generic term)|flu (generic term)|grippe (generic term)
+asiatic flying squirrel|1
+(noun)|Asiatic flying squirrel|squirrel (generic term)
+asiatic shrew mole|1
+(noun)|Asiatic shrew mole|Uropsilus soricipes|shrew mole (generic term)
+asiatic sweetleaf|1
+(noun)|Asiatic sweetleaf|sapphire berry|Symplocus paniculata|flowering shrub (generic term)
+aside|5
+(noun)|actor's line (generic term)|speech (generic term)|words (generic term)
+(noun)|digression|excursus|divagation|parenthesis|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(adv)|away
+(adv)|apart
+(adv)|by|away
+asilidae|1
+(noun)|Asilidae|family Asilidae|arthropod family (generic term)
+asimina|1
+(noun)|Asimina|genus Asimina|magnoliid dicot genus (generic term)
+asimina triloba|1
+(noun)|pawpaw|papaw|papaw tree|Asimina triloba|custard apple (generic term)|custard apple tree (generic term)
+asimov|1
+(noun)|Asimov|Isaac Asimov|writer (generic term)|author (generic term)
+asin|1
+(noun)|Asin|Asvina|Hindu calendar month (generic term)
+asinine|1
+(adj)|fatuous|inane|mindless|vacuous|foolish (similar term)
+asininity|1
+(noun)|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+asio|1
+(noun)|Asio|genus Asio|bird genus (generic term)
+asio otus|1
+(noun)|long-eared owl|Asio otus|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+ask|7
+(verb)|inquire|enquire|communicate (generic term)|intercommunicate (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)|ask in (related term)|ask over (related term)|ask round (related term)|ask out (related term)
+(verb)|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|require|expect|demand (generic term)
+(verb)|demand (generic term)
+(verb)|address (generic term)|turn to (generic term)
+(verb)|necessitate|postulate|need|require|take|involve|call for|demand|obviate (antonym)
+ask for|1
+(verb)|invite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+ask for it|1
+(verb)|ask for trouble|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+ask for trouble|1
+(verb)|ask for it|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+ask in|1
+(verb)|invite|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+ask jeeves|1
+(noun)|Ask Jeeves|search engine (generic term)
+ask out|1
+(verb)|invite out|take out|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+ask over|1
+(verb)|invite|ask round|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+ask round|1
+(verb)|invite|ask over|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+askance|1
+(adj)|askant|asquint|squint|squint-eyed|squinty|sidelong|indirect (similar term)
+askant|1
+(adj)|askance|asquint|squint|squint-eyed|squinty|sidelong|indirect (similar term)
+asker|1
+(noun)|inquirer|enquirer|questioner|querier|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+askew|2
+(adj)|awry|cockeyed|lopsided|wonky|skew-whiff|crooked (similar term)
+(adv)|awry|skew-whiff
+asking|2
+(adj)|interrogative|interrogatory|declaratory (antonym)|declarative (antonym)
+(noun)|request|speech act (generic term)
+asking price|1
+(noun)|selling price|price (generic term)|terms (generic term)|damage (generic term)
+asklepios|1
+(noun)|Aesculapius|Asclepius|Asklepios|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+asl|1
+(noun)|ASL|American sign language|sign language (generic term)|signing (generic term)
+aslant|2
+(adj)|aslope|diagonal|slanted|slanting|sloped|sloping|inclined (similar term)
+(adv)|obliquely|athwart
+asleep|3
+(adj)|at rest (similar term)|dormant (similar term)|hibernating (similar term)|torpid (similar term)|drowsy (similar term)|drowsing (similar term)|dozy (similar term)|fast asleep (similar term)|sound asleep (similar term)|hypnoid (similar term)|sleepy (similar term)|sleepy-eyed (similar term)|sleepyheaded (similar term)|slumberous (similar term)|slumbery (similar term)|slumbrous (similar term)|somnolent (similar term)|unawakened (similar term)|unaware (related term)|incognizant (related term)|unconscious (related term)|awake (antonym)
+(adj)|benumbed|numb|insensible (similar term)
+(adj)|at peace|at rest|deceased|departed|gone|dead (similar term)
+aslope|1
+(adj)|aslant|diagonal|slanted|slanting|sloped|sloping|inclined (similar term)
+asmara|1
+(noun)|Asmara|Asmera|national capital (generic term)
+asmera|1
+(noun)|Asmara|Asmera|national capital (generic term)
+asocial|2
+(adj)|unsocial (similar term)
+(adj)|antisocial|unsocial (similar term)
+asp|2
+(noun)|asp viper|Vipera aspis|viper (generic term)
+(noun)|Egyptian cobra|Naja haje|cobra (generic term)
+asp viper|1
+(noun)|asp|Vipera aspis|viper (generic term)
+aspadana|1
+(noun)|Isfahan|Esfahan|Aspadana|city (generic term)|metropolis (generic term)|urban center (generic term)
+aspalathus|1
+(noun)|Aspalathus|genus Aspalathus|rosid dicot genus (generic term)
+aspalathus cedcarbergensis|1
+(noun)|rooibos|Aspalathus linearis|Aspalathus cedcarbergensis|shrub (generic term)|bush (generic term)
+aspalathus linearis|1
+(noun)|rooibos|Aspalathus linearis|Aspalathus cedcarbergensis|shrub (generic term)|bush (generic term)
+asparagaceae|1
+(noun)|Asparagaceae|family Asparagaceae|liliid monocot family (generic term)
+asparaginase|1
+(noun)|Elspar|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+asparagine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+asparagus|2
+(noun)|edible asparagus|Asparagus officinales|herb (generic term)|herbaceous plant (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+asparagus asparagoides|1
+(noun)|smilax|Asparagus asparagoides|vine (generic term)
+asparagus bean|1
+(noun)|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume (generic term)|leguminous plant (generic term)
+asparagus bed|1
+(noun)|bed (generic term)
+asparagus fern|1
+(noun)|Asparagus setaceous|Asparagus plumosus|herb (generic term)|herbaceous plant (generic term)
+asparagus officinales|1
+(noun)|asparagus|edible asparagus|Asparagus officinales|herb (generic term)|herbaceous plant (generic term)
+asparagus pea|1
+(noun)|winged pea|Lotus tetragonolobus|herb (generic term)|herbaceous plant (generic term)
+asparagus plumosus|1
+(noun)|asparagus fern|Asparagus setaceous|Asparagus plumosus|herb (generic term)|herbaceous plant (generic term)
+asparagus setaceous|1
+(noun)|asparagus fern|Asparagus setaceous|Asparagus plumosus|herb (generic term)|herbaceous plant (generic term)
+aspartame|1
+(noun)|sweetening (generic term)|sweetener (generic term)
+aspartic acid|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+aspect|5
+(noun)|facet|feature (generic term)|characteristic (generic term)
+(noun)|characteristic (generic term)
+(noun)|view|prospect|scene|vista|panorama|visual percept (generic term)|visual image (generic term)
+(noun)|grammatical relation (generic term)
+(noun)|expression|look|facial expression|face|countenance (generic term)|visage (generic term)
+aspect ratio|1
+(noun)|ratio (generic term)
+aspectual|1
+(adj)|grammatical relation (related term)
+aspen|1
+(noun)|poplar (generic term)|poplar tree (generic term)
+aspen poplar|1
+(noun)|white poplar|white aspen|abele|silver-leaved poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+asper|1
+(noun)|Turkish monetary unit (generic term)
+aspergill|1
+(noun)|aspersorium|device (generic term)
+aspergillaceae|1
+(noun)|Aspergillaceae|family Aspergillaceae|fungus family (generic term)
+aspergillales|1
+(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order (generic term)
+aspergillosis|3
+(noun)|brooder pneumonia|animal disease (generic term)
+(noun)|opportunistic infection (generic term)
+(noun)|disease (generic term)
+aspergillus|1
+(noun)|Aspergillus|genus Aspergillus|fungus genus (generic term)
+aspergillus fumigatus|1
+(noun)|Aspergillus fumigatus|fungus (generic term)
+asperity|2
+(noun)|grimness|hardship|rigor|rigour|severity|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|sharpness|ill nature (generic term)|dullness (antonym)
+asperse|1
+(verb)|defame|slander|smirch|denigrate|calumniate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+aspersion|3
+(noun)|slur|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|calumny|slander|defamation|denigration|attack (generic term)
+(noun)|sprinkling|baptism (generic term)
+aspersorium|2
+(noun)|basin (generic term)
+(noun)|aspergill|device (generic term)
+asperula|1
+(noun)|Asperula|genus Asperula|asterid dicot genus (generic term)
+asperula odorata|1
+(noun)|sweet woodruff|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw (generic term)
+asperula tinctoria|1
+(noun)|dyer's woodruff|Asperula tinctoria|woodruff (generic term)
+asphalt|3
+(noun)|paving material (generic term)
+(noun)|mineral pitch|mineral (generic term)
+(verb)|pave (generic term)
+asphaltic|1
+(adj)|mineral (similar term)
+aspheric|1
+(adj)|aspherical|rounded (similar term)
+aspherical|1
+(adj)|aspheric|rounded (similar term)
+asphodel|1
+(noun)|liliaceous plant (generic term)
+asphodelaceae|1
+(noun)|Asphodelaceae|family Asphodelaceae|liliid monocot family (generic term)
+asphodeline|1
+(noun)|Asphodeline|genus Asphodeline|liliid monocot genus (generic term)
+asphodeline lutea|1
+(noun)|king's spear|yellow asphodel|Asphodeline lutea|asphodel (generic term)
+asphodelus|1
+(noun)|Asphodelus|genus Asphodelus|liliid monocot genus (generic term)
+asphyxia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+asphyxiate|3
+(verb)|smother|suffocate|kill (generic term)
+(verb)|suffocate|stifle|choke|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|suffocate|stifle|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+asphyxiated|1
+(adj)|physiological state|physiological condition (related term)
+asphyxiating|1
+(adj)|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+asphyxiation|2
+(noun)|suffocation|hypoxia (generic term)
+(noun)|suffocation|killing (generic term)|kill (generic term)|putting to death (generic term)
+asphyxiator|1
+(noun)|fire extinguisher|extinguisher|device (generic term)
+aspic|1
+(noun)|gelatin (generic term)|jelly (generic term)
+aspidelaps|1
+(noun)|Aspidelaps|genus Aspidelaps|reptile genus (generic term)
+aspidelaps lubricus|1
+(noun)|African coral snake|Aspidelaps lubricus|coral snake (generic term)|Old World coral snake (generic term)
+aspidiotus|1
+(noun)|Aspidiotus|genus Aspidiotus|arthropod genus (generic term)
+aspidiotus perniciosus|1
+(noun)|San Jose scale|Aspidiotus perniciosus|armored scale (generic term)
+aspidistra|1
+(noun)|cast-iron plant|bar-room plant|Aspidistra elatio|herb (generic term)|herbaceous plant (generic term)
+aspidistra elatio|1
+(noun)|aspidistra|cast-iron plant|bar-room plant|Aspidistra elatio|herb (generic term)|herbaceous plant (generic term)
+aspidophoroides|1
+(noun)|Aspidophoroides|genus Aspidophoroides|fish genus (generic term)
+aspidophoroides monopterygius|1
+(noun)|alligatorfish|Aspidophoroides monopterygius|poacher (generic term)|sea poacher (generic term)|sea poker (generic term)
+aspinwall|1
+(noun)|Colon|Aspinwall|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+aspirant|2
+(adj)|aspiring|wishful|ambitious (similar term)
+(noun)|aspirer|hopeful|wannabe|wannabee|applicant (generic term)|applier (generic term)
+aspirate|4
+(noun)|consonant (generic term)
+(verb)|draw out|suck out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+aspiration|4
+(noun)|ambition (generic term)|ambitiousness (generic term)
+(noun)|ambition|dream|desire (generic term)
+(noun)|articulation (generic term)
+(noun)|inhalation|inspiration|breathing in|breath (generic term)
+aspiration pneumonia|1
+(noun)|bronchopneumonia (generic term)|bronchial pneumonia (generic term)
+aspirator|1
+(noun)|pump (generic term)
+aspire|1
+(verb)|draw a bead on|aim|shoot for|plan (generic term)|be after (generic term)
+aspirer|1
+(noun)|aspirant|hopeful|wannabe|wannabee|applicant (generic term)|applier (generic term)
+aspirin|1
+(noun)|acetylsalicylic acid|Bayer|Empirin|St. Joseph|salicylate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+aspirin powder|1
+(noun)|headache powder|aspirin (generic term)|acetylsalicylic acid (generic term)|Bayer (generic term)|Empirin (generic term)|St. Joseph (generic term)|powder (generic term)
+aspiring|1
+(adj)|aspirant|wishful|ambitious (similar term)
+aspis|1
+(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus (generic term)
+aspleniaceae|1
+(noun)|Aspleniaceae|family Aspleniaceae|fern family (generic term)
+asplenium|1
+(noun)|Asplenium|genus Asplenium|fern genus (generic term)
+asplenium adiantum-nigrum|1
+(noun)|black spleenwort|Asplenium adiantum-nigrum|spleenwort (generic term)
+asplenium billotii|1
+(noun)|lanceolate spleenwort|Asplenium billotii|spleenwort (generic term)
+asplenium bradleyi|1
+(noun)|Bradley's spleenwort|Asplenium bradleyi|spleenwort (generic term)
+asplenium ceterach|1
+(noun)|scale fern|scaly fern|Asplenium ceterach|Ceterach officinarum|fern (generic term)
+asplenium montanum|1
+(noun)|mountain spleenwort|Asplenium montanum|spleenwort (generic term)
+asplenium nidus|1
+(noun)|bird's nest fern|Asplenium nidus|fern (generic term)
+asplenium nigripes|1
+(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern (generic term)
+asplenium pinnatifidum|1
+(noun)|lobed spleenwort|Asplenium pinnatifidum|spleenwort (generic term)
+asplenium platyneuron|1
+(noun)|ebony spleenwort|Scott's Spleenwort|Asplenium platyneuron|spleenwort (generic term)
+asplenium rhizophyllum|1
+(noun)|walking fern|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort (generic term)
+asplenium ruta-muraria|1
+(noun)|wall rue|wall rue spleenwort|Asplenium ruta-muraria|spleenwort (generic term)
+asplenium scolopendrium|1
+(noun)|hart's-tongue|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern (generic term)
+asplenium trichomanes|1
+(noun)|maidenhair spleenwort|Asplenium trichomanes|spleenwort (generic term)
+asplenium viride|1
+(noun)|green spleenwort|Asplenium viride|spleenwort (generic term)
+asquint|1
+(adj)|askance|askant|squint|squint-eyed|squinty|sidelong|indirect (similar term)
+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 (generic term)
+(noun)|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|equine (generic term)|equid (generic term)
+(noun)|fuck|fucking|screw|screwing|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+ass-kisser|1
+(noun)|apple polisher|bootlicker|fawner|groveller|groveler|truckler|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+assagai|1
+(noun)|assegai|spear (generic term)|lance (generic term)|shaft (generic term)
+assail|3
+(verb)|assault|set on|attack
+(verb)|attack|contend (generic term)|fight (generic term)|struggle (generic term)|defend (antonym)
+(verb)|attack|round|lash out|snipe|assault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+assailability|1
+(noun)|vulnerability (generic term)
+assailable|1
+(adj)|undefendable|undefended|open|vulnerable (similar term)
+assailant|1
+(noun)|attacker|aggressor|assaulter|wrongdoer (generic term)|offender (generic term)
+assam|1
+(noun)|Assam|state (generic term)|province (generic term)
+assam fever|1
+(noun)|visceral leishmaniasis|kala-azar|Assam fever|dumdum fever|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+assam rubber|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree (generic term)
+assamese|3
+(adj)|Assamese|state|province (related term)
+(noun)|Assamese|Indian (generic term)
+(noun)|Assamese|Asamiya|Magadhan (generic term)
+assassin|2
+(noun)|assassinator|bravo|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|Muslim (generic term)|Moslem (generic term)
+assassin bug|1
+(noun)|reduviid|heteropterous insect (generic term)
+assassinate|2
+(verb)|kill (generic term)
+(verb)|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+assassinated|1
+(adj)|dead (similar term)
+assassination|2
+(noun)|character assassination|blackwash|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+assassinator|1
+(noun)|assassin|bravo|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+assault|7
+(noun)|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+(noun)|attack (generic term)|attempt (generic term)
+(noun)|Assault|thoroughbred (generic term)
+(noun)|rape|violation|ravishment|sexual assault (generic term)|sexual abuse (generic term)|sex crime (generic term)|sex offense (generic term)
+(verb)|assail|set on|attack
+(verb)|rape|ravish|violate|dishonor|dishonour|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|attack|round|assail|lash out|snipe|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+assault and battery|1
+(noun)|battery|assault (generic term)
+assault gun|2
+(noun)|assault rifle|automatic rifle (generic term)|automatic (generic term)|machine rifle (generic term)
+(noun)|armored vehicle (generic term)|armoured vehicle (generic term)
+assault rifle|1
+(noun)|assault gun|automatic rifle (generic term)|automatic (generic term)|machine rifle (generic term)
+assaulter|1
+(noun)|attacker|aggressor|assailant|wrongdoer (generic term)|offender (generic term)
+assaultive|1
+(adj)|attacking|offensive (similar term)
+assay|6
+(noun)|check|appraisal (generic term)|assessment (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+(noun)|test (generic term)|trial (generic term)|run (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|try|seek|attempt|essay|act (generic term)|move (generic term)|try out (related term)
+assay-mark|1
+(noun)|authentication|hallmark|marker (generic term)|marking (generic term)|mark (generic term)
+assayer|1
+(noun)|analyst (generic term)
+assegai|1
+(noun)|assagai|spear (generic term)|lance (generic term)|shaft (generic term)
+assemblage|4
+(noun)|gathering|social group (generic term)
+(noun)|hookup|system (generic term)
+(noun)|assembly|gathering|group action (generic term)|disassembly (antonym)
+(noun)|collection|aggregation|accumulation|group (generic term)|grouping (generic term)
+assemble|3
+(verb)|piece|put together|set up|tack|tack together|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+(verb)|meet|gather|forgather|foregather|interact (generic term)
+(verb)|gather|get together
+assembled|2
+(adj)|accumulated|amassed|collected|congregate|massed|concentrated (similar term)
+(adj)|built|made-up|collective (similar term)
+assembler|1
+(noun)|assembly program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+assemblies of god|1
+(noun)|Assemblies of God|Protestant denomination (generic term)
+assembling|1
+(noun)|collection|collecting|aggregation|grouping (generic term)
+assembly|5
+(noun)|machine (generic term)
+(noun)|fabrication|construction (generic term)|building (generic term)|disassembly (antonym)
+(noun)|forum|meeting place|facility (generic term)|installation (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|assemblage|gathering|group action (generic term)|disassembly (antonym)
+assembly hall|1
+(noun)|auditorium (generic term)
+assembly language|1
+(noun)|programming language (generic term)|programing language (generic term)
+assembly line|1
+(noun)|production line|line|mechanical system (generic term)
+assembly plant|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+assembly program|1
+(noun)|assembler|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+assemblyman|1
+(noun)|representative (generic term)
+assemblywoman|1
+(noun)|representative (generic term)
+assent|2
+(noun)|acquiescence|agreement (generic term)
+(verb)|accede|acquiesce|agree (generic term)|dissent (antonym)
+assenter|1
+(noun)|respondent (generic term)|responder (generic term)|answerer (generic term)
+assentient|1
+(adj)|affirmative (similar term)|affirmatory (similar term)
+assenting|1
+(noun)|accession|agreement (generic term)
+assert|4
+(verb)|asseverate|maintain|insist (generic term)|take a firm stand (generic term)
+(verb)|affirm|verify|avow|aver|swan|swear|declare (generic term)
+(verb)|put forward|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|insist|postulate (generic term)|posit (generic term)
+assert oneself|1
+(verb)|behave (generic term)|comport (generic term)
+assertable|1
+(adj)|affirmable|possible (similar term)
+asserted|1
+(adj)|declared (similar term)
+asserter|1
+(noun)|declarer|affirmer|asseverator|avower|communicator (generic term)
+asserting|1
+(adj)|declarative|declaratory|interrogatory (antonym)|interrogative (antonym)
+assertion|2
+(noun)|averment|asseveration|declaration (generic term)
+(noun)|affirmation|statement|speech act (generic term)
+assertive|2
+(adj)|cocky (similar term)|emphatic (similar term)|forceful (similar term)|aggressive (related term)|imperative (related term)|unassertive (antonym)
+(adj)|self-asserting|self-assertive|aggressive (similar term)
+assertively|1
+(adv)|unassertively (antonym)
+assertiveness|1
+(noun)|self-assertiveness|positivity (generic term)|positiveness (generic term)|positivism (generic term)
+assertiveness training|1
+(noun)|behavior therapy (generic term)|behavior modification (generic term)
+assess|4
+(verb)|measure|evaluate|valuate|appraise|value|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|charge (generic term)|bill (generic term)
+(verb)|tax|determine (generic term)|set (generic term)
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+assessable|2
+(adj)|taxable (similar term)|nonexempt (similar term)
+(adj)|ponderable (similar term)
+assessee|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+assessment|4
+(noun)|appraisal|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+(noun)|charge (generic term)
+(noun)|monetary value (generic term)|price (generic term)|cost (generic term)
+(noun)|judgment|judgement|act (generic term)|human action (generic term)|human activity (generic term)
+assessor|1
+(noun)|tax assessor|bureaucrat (generic term)|administrative official (generic term)
+asset|1
+(noun)|plus|quality (generic term)|liability (antonym)
+assets|1
+(noun)|possession (generic term)
+asseverate|1
+(verb)|assert|maintain|insist (generic term)|take a firm stand (generic term)
+asseveration|1
+(noun)|assertion|averment|declaration (generic term)
+asseverator|1
+(noun)|asserter|declarer|affirmer|avower|communicator (generic term)
+asshole|2
+(noun)|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|anus|arse|arsehole|orifice (generic term)|opening (generic term)|porta (generic term)
+assibilate|2
+(verb)|sibilate (generic term)
+(verb)|change (generic term)
+assibilation|2
+(noun)|development (generic term)|evolution (generic term)
+(noun)|sibilation|pronunciation (generic term)
+assiduity|1
+(noun)|assiduousness|concentration|diligence (generic term)|industriousness (generic term)|industry (generic term)
+assiduous|1
+(adj)|sedulous|diligent (similar term)
+assiduousness|1
+(noun)|assiduity|concentration|diligence (generic term)|industriousness (generic term)|industry (generic term)
+assign|8
+(verb)|delegate|designate|depute|appoint (generic term)|charge (generic term)
+(verb)|allot|portion|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+(verb)|impute|ascribe|attribute|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|specify|set apart|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|put|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|arrogate|claim (generic term)|lay claim (generic term)|arrogate (generic term)
+(verb)|transfer (generic term)
+(verb)|attribute|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+assignable|1
+(adj)|conveyable|negotiable|transferable|transferrable|alienable (similar term)
+assignation|2
+(noun)|tryst|rendezvous (generic term)
+(noun)|allotment|apportionment|apportioning|allocation|parceling|parcelling|distribution (generic term)
+assigned|1
+(adj)|allotted (similar term)|appointed (similar term)|unassigned (antonym)
+assignee|1
+(noun)|party (generic term)|recipient (generic term)|receiver (generic term)
+assigning|1
+(noun)|assignment|distribution (generic term)
+assignment|6
+(noun)|duty assignment|duty (generic term)
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|assigning|distribution (generic term)
+(noun)|grant|transferred property (generic term)|transferred possession (generic term)
+(noun)|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|appointment|designation|naming|decision (generic term)|determination (generic term)|conclusion (generic term)
+assignor|1
+(noun)|party (generic term)
+assimilable|1
+(adj)|digestible (similar term)
+assimilate|5
+(verb)|absorb|ingest|take in|learn (generic term)|larn (generic term)|acquire (generic term)
+(verb)|adjust (generic term)|conform (generic term)|adapt (generic term)|dissimilate (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|dissimilate (antonym)
+(verb)|imbibe|absorb (generic term)
+(verb)|change (generic term)|dissimilate (antonym)
+assimilating|1
+(adj)|assimilative|assimilatory|absorbent (similar term)|absorptive (similar term)
+assimilation|6
+(noun)|relationship (generic term)
+(noun)|absorption|social process (generic term)
+(noun)|absorption|organic process (generic term)|biological process (generic term)
+(noun)|linguistic process (generic term)
+(noun)|acculturation|education (generic term)
+(noun)|developmental learning (generic term)
+assimilative|2
+(adj)|receptive (similar term)|open (similar term)
+(adj)|assimilating|assimilatory|absorbent (similar term)|absorptive (similar term)
+assimilator|1
+(noun)|learner|scholar|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+assimilatory|1
+(adj)|assimilating|assimilative|absorbent (similar term)|absorptive (similar term)
+assist|5
+(noun)|aid|assistance|help|activity (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(verb)|help|aid|support (generic term)|back up (generic term)
+(verb)|work (generic term)
+(verb)|serve|attend to|wait on|attend|help (generic term)|assist (generic term)|aid (generic term)
+assistance|2
+(noun)|aid|assist|help|activity (generic term)
+(noun)|aid|help|resource (generic term)
+assistant|2
+(adj)|adjunct|subordinate (similar term)|low-level (similar term)
+(noun)|helper|help|supporter|worker (generic term)
+assistant foreman|1
+(noun)|straw boss|foreman (generic term)|chief (generic term)|gaffer (generic term)|honcho (generic term)|boss (generic term)
+assistant professor|1
+(noun)|professor (generic term)|prof (generic term)
+assisted|1
+(adj)|aided|motor-assisted (similar term)|power-assisted (similar term)|unassisted (antonym)
+assisted suicide|1
+(noun)|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+assistive|1
+(adj)|helpful (similar term)
+assize|2
+(noun)|regulation (generic term)|ordinance (generic term)
+(noun)|writ (generic term)|judicial writ (generic term)
+assizes|1
+(noun)|court of assize|court of assize and nisi prius|court (generic term)|tribunal (generic term)|judicature (generic term)
+associability|1
+(noun)|associableness|capability (generic term)|capableness (generic term)
+associable|1
+(adj)|associative (similar term)|associatory (similar term)
+associableness|1
+(noun)|associability|capability (generic term)|capableness (generic term)
+associate|8
+(adj)|subordinate (similar term)|low-level (similar term)
+(noun)|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|companion|comrade|fellow|familiar|friend (generic term)
+(noun)|accompaniment (generic term)|concomitant (generic term)|attendant (generic term)|co-occurrence (generic term)
+(noun)|associate degree|academic degree (generic term)|degree (generic term)
+(verb)|tie in|relate|link|colligate|link up|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+(verb)|consort|affiliate|assort|interact (generic term)
+(verb)|consociate|unite (generic term)|unify (generic term)
+associate degree|1
+(noun)|associate|academic degree (generic term)|degree (generic term)
+associate in applied science|1
+(noun)|Associate in Applied Science|AAS|associate degree (generic term)|associate (generic term)
+associate in arts|1
+(noun)|Associate in Arts|AA|associate degree (generic term)|associate (generic term)
+associate in nursing|1
+(noun)|Associate in Nursing|AN|associate degree (generic term)|associate (generic term)
+associate professor|1
+(noun)|professor (generic term)|prof (generic term)
+associated|2
+(adj)|connected|related (similar term)|related to (similar term)
+(adj)|joint (similar term)
+associated state|1
+(noun)|protectorate|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+associateship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+association|8
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|social activity (generic term)
+(noun)|union (generic term)|unification (generic term)|disassociation (antonym)
+(noun)|affiliation|tie|tie-up|relationship (generic term)
+(noun)|connection|connexion|memory (generic term)|remembering (generic term)
+(noun)|relation (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|group (generic term)|grouping (generic term)
+association area|1
+(noun)|association cortex|cortical area (generic term)|cortical region (generic term)
+association cortex|1
+(noun)|association area|cortical area (generic term)|cortical region (generic term)
+association football|1
+(noun)|soccer|football (generic term)|football game (generic term)
+association for the advancement of retired persons|1
+(noun)|Association for the Advancement of Retired Persons|AARP|association (generic term)
+association of islamic groups and communities|1
+(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+association of orangemen|1
+(noun)|Orange Order|Association of Orangemen|organization (generic term)|organisation (generic term)
+association of southeast asian nations|1
+(noun)|Association of Southeast Asian Nations|ASEAN|association (generic term)
+association theory|1
+(noun)|associationism|scientific theory (generic term)
+associational|1
+(adj)|memory|remembering (related term)|scientific theory (related term)
+associationism|1
+(noun)|association theory|scientific theory (generic term)
+associative|1
+(adj)|associatory|associable (similar term)|nonassociative (antonym)
+associative aphasia|1
+(noun)|conduction aphasia|aphasia (generic term)
+associatory|1
+(adj)|associative|associable (similar term)|nonassociative (antonym)
+assoil|1
+(verb)|acquit|clear|discharge|exonerate|exculpate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+assonance|1
+(noun)|vowel rhyme|rhyme (generic term)|rime (generic term)
+assonant|2
+(adj)|same (similar term)
+(adj)|rhymed (similar term)|rhyming (similar term)|riming (similar term)
+assonate|1
+(verb)|rhyme (generic term)|rime (generic term)
+assort|2
+(verb)|consort|associate|affiliate|interact (generic term)
+(verb)|classify|class|sort|sort out|separate|categorize (generic term)|categorise (generic term)
+assortative mating|1
+(noun)|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)|disassortative mating (antonym)
+assorted|2
+(adj)|miscellaneous|mixed|motley|sundry|heterogeneous (similar term)|heterogenous (similar term)
+(adj)|various|different (similar term)
+assortment|2
+(noun)|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|categorization|categorisation|classification|compartmentalization|compartmentalisation|grouping (generic term)
+assouan|1
+(noun)|Aswan|Assuan|Assouan|city (generic term)|metropolis (generic term)|urban center (generic term)
+assuage|3
+(verb)|pacify|lenify|conciliate|appease|mollify|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|quench|slake|allay|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|relieve|alleviate|palliate|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+assuagement|1
+(noun)|relief|alleviation|comfort (generic term)
+assuan|1
+(noun)|Aswan|Assuan|Assouan|city (generic term)|metropolis (generic term)|urban center (generic term)
+assuasive|1
+(adj)|calming|pacifying|soothing|reassuring (similar term)
+assume|9
+(verb)|presume|take for granted|expect (generic term)|anticipate (generic term)
+(verb)|adopt|take on|take over|take office (generic term)
+(verb)|acquire|adopt|take on|take|change (generic term)
+(verb)|bear|take over|accept|take (generic term)
+(verb)|take|strike|take up|move (generic term)
+(verb)|usurp|seize|take over|arrogate|take (generic term)
+(verb)|simulate|sham|feign|dissemble (generic term)|pretend (generic term)|act (generic term)
+(verb)|receive (generic term)|take in (generic term)|invite (generic term)
+(verb)|wear|put on|get into|don|dress (generic term)|get dressed (generic term)
+assumed|3
+(adj)|assumptive|taken for granted|acknowledged (similar term)
+(adj)|arrogated|taken (similar term)
+(adj)|false|fictitious|fictive|pretended|put on|sham|counterfeit (similar term)|imitative (similar term)
+assumed name|1
+(noun)|alias|false name|name (generic term)
+assuming|1
+(adj)|assumptive|presumptuous|forward (similar term)
+assumption|7
+(noun)|premise|premiss|postulate (generic term)|posit (generic term)
+(noun)|supposition|supposal|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|laying claim|acquisition (generic term)
+(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation (generic term)
+(noun)|presumption|presumptuousness|effrontery|audacity (generic term)|audaciousness (generic term)
+(noun)|Assumption|miracle (generic term)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+assumption of mary|1
+(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation (generic term)
+assumptive|2
+(adj)|assuming|presumptuous|forward (similar term)
+(adj)|assumed|taken for granted|acknowledged (similar term)
+assur|1
+(noun)|Assur|Asur|Ashur|city (generic term)|metropolis (generic term)|urban center (generic term)
+assurance|4
+(noun)|self-assurance|confidence|self-confidence|authority|sureness|certainty (generic term)
+(noun)|pledge|commitment (generic term)|dedication (generic term)
+(noun)|statement (generic term)
+(noun)|insurance (generic term)
+assurbanipal|1
+(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king (generic term)|male monarch (generic term)|Rex (generic term)
+assure|6
+(verb)|guarantee|ensure|insure|secure
+(verb)|tell|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+(verb)|persuade (generic term)
+(verb)|see|check|insure|see to it|ensure|control|ascertain|verify (generic term)
+(verb)|reassure|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)|worry (antonym)
+(verb)|promise|declare (generic term)
+assured|2
+(adj)|confident (similar term)
+(adj)|secure (similar term)
+assuredness|1
+(noun)|aplomb|cool|poise|sang-froid|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+assurgent|1
+(adj)|ascending (similar term)
+assuring|1
+(adj)|reassuring (similar term)
+assyria|1
+(noun)|Assyria|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+assyrian|2
+(noun)|Assyrian|Semite (generic term)
+(noun)|Assyrian|Akkadian (generic term)
+assyriology|1
+(noun)|Assyriology|archeology (generic term)|archaeology (generic term)
+astacidae|1
+(noun)|Astacidae|family Astacidae|Astacura|arthropod family (generic term)
+astacura|1
+(noun)|Astacidae|family Astacidae|Astacura|arthropod family (generic term)
+astacus|1
+(noun)|Astacus|genus Astacus|arthropod genus (generic term)
+astaire|1
+(noun)|Astaire|Fred Astaire|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+astana|1
+(noun)|Astana|Akmola|capital of Kazakhstan|capital (generic term)
+astarte|1
+(noun)|Astarte|Ashtoreth|Semitic deity (generic term)
+astasia|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+astatic|1
+(adj)|changeable (similar term)|changeful (similar term)
+astatic coils|1
+(noun)|coil (generic term)
+astatic galvanometer|1
+(noun)|galvanometer (generic term)
+astatine|1
+(noun)|At|atomic number 85|chemical element (generic term)|element (generic term)|halogen (generic term)
+aster|2
+(noun)|flower (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+aster acuminatus|1
+(noun)|whorled aster|Aster acuminatus|aster (generic term)
+aster arenosus|1
+(noun)|heath aster|Aster arenosus|aster (generic term)
+aster cordifolius|1
+(noun)|heart-leaved aster|Aster cordifolius|wood aster (generic term)
+aster divaricatus|1
+(noun)|white wood aster|Aster divaricatus|wood aster (generic term)
+aster dumosus|1
+(noun)|bushy aster|Aster dumosus|aster (generic term)
+aster ericoides|1
+(noun)|heath aster|Aster ericoides|aster (generic term)
+aster falcatus|1
+(noun)|white prairie aster|Aster falcatus|aster (generic term)
+aster family|1
+(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|asterid dicot family (generic term)
+aster linarifolius|1
+(noun)|stiff aster|Aster linarifolius|aster (generic term)
+aster linosyris|1
+(noun)|goldilocks|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster (generic term)
+aster macrophyllus|1
+(noun)|large-leaved aster|Aster macrophyllus|wood aster (generic term)
+aster novae-angliae|1
+(noun)|New England aster|Aster novae-angliae|aster (generic term)
+aster novi-belgii|1
+(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster (generic term)
+aster ptarmicoides|1
+(noun)|upland white aster|Aster ptarmicoides|aster (generic term)
+aster shortii|1
+(noun)|Short's aster|Aster shortii|aster (generic term)
+aster tripolium|1
+(noun)|sea aster|sea starwort|Aster tripolium|aster (generic term)
+aster turbinellis|1
+(noun)|prairie aster|Aster turbinellis|aster (generic term)
+asteraceae|1
+(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family (generic term)
+astereognosis|1
+(noun)|tactile agnosia|agnosia (generic term)
+asteriated|1
+(adj)|star (related term)
+asterid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+asterid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+asteridae|1
+(noun)|Asteridae|subclass Asteridae|class (generic term)
+asterion|1
+(noun)|craniometric point (generic term)
+asterisk|2
+(noun)|star|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(verb)|star|mark (generic term)
+asterisked|1
+(adj)|starred|marked (similar term)
+asterism|2
+(noun)|star (generic term)
+(noun)|natural object (generic term)
+asterismal|1
+(adj)|natural object (related term)
+astern|1
+(adv)|aft|abaft|fore (antonym)
+asternal|1
+(adj)|unconnected (similar term)
+asteroid|2
+(adj)|star-shaped|angular (similar term)|angulate (similar term)
+(noun)|minor planet (generic term)|planetoid (generic term)
+asteroid belt|1
+(noun)|belt (generic term)
+asteroidal|1
+(adj)|minor planet|planetoid (related term)
+asteroidea|1
+(noun)|Asteroidea|class Asteroidea|class (generic term)
+asterope|2
+(noun)|Sterope|Asterope|nymph (generic term)
+(noun)|Sterope|Asterope|star (generic term)
+asthenia|1
+(noun)|astheny|infirmity (generic term)|frailty (generic term)|debility (generic term)|feebleness (generic term)|frailness (generic term)|valetudinarianism (generic term)
+asthenic|2
+(adj)|adynamic|debilitated|enervated|weak (similar term)
+(adj)|ectomorphic (similar term)
+asthenic type|1
+(noun)|ectomorphy|body type (generic term)|somatotype (generic term)
+asthenopia|1
+(noun)|eyestrain|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+asthenosphere|1
+(noun)|layer (generic term)
+astheny|1
+(noun)|asthenia|infirmity (generic term)|frailty (generic term)|debility (generic term)|feebleness (generic term)|frailness (generic term)|valetudinarianism (generic term)
+asthma|1
+(noun)|asthma attack|bronchial asthma|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+asthma attack|1
+(noun)|asthma|bronchial asthma|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+asthmatic|2
+(adj)|wheezing|wheezy|unhealthy (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+astigmatic|1
+(adj)|anastigmatic (antonym)
+astigmatism|2
+(noun)|astigmia|ametropia (generic term)
+(noun)|astigmia|condition (generic term)|status (generic term)|stigmatism (antonym)
+astigmia|2
+(noun)|astigmatism|ametropia (generic term)
+(noun)|astigmatism|condition (generic term)|status (generic term)|stigmatism (antonym)
+astilbe|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+astilbe biternata|1
+(noun)|false goatsbeard|Astilbe biternata|astilbe (generic term)
+astilbe chinensis pumila|1
+(noun)|dwarf astilbe|Astilbe chinensis pumila|astilbe (generic term)
+astilbe japonica|1
+(noun)|spirea|spiraea|Astilbe japonica|astilbe (generic term)
+astir|2
+(adj)|up|awake (similar term)
+(adj)|about|active (similar term)
+astomatous|1
+(adj)|mouthless|stomatous (antonym)
+astonied|1
+(adj)|amazed|astonished|astounded|stunned|surprised (similar term)
+astonish|1
+(verb)|amaze|astound|surprise (generic term)
+astonished|1
+(adj)|amazed|astonied|astounded|stunned|surprised (similar term)
+astonishing|2
+(adj)|amazing|surprising (similar term)
+(adj)|astounding|staggering|stupefying|impressive (similar term)
+astonishingly|1
+(adv)|amazingly|surprisingly
+astonishment|1
+(noun)|amazement|feeling (generic term)
+astor|2
+(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Astor|John Jacob Astor|capitalist (generic term)
+astound|1
+(verb)|amaze|astonish|surprise (generic term)
+astounded|1
+(adj)|amazed|astonied|astonished|stunned|surprised (similar term)
+astounding|2
+(adj)|dumbfounding|dumfounding|incredible (similar term)|unbelievable (similar term)
+(adj)|astonishing|staggering|stupefying|impressive (similar term)
+astraddle|1
+(adv)|astride
+astragal|2
+(noun)|anklebone|astragalus|talus|bone (generic term)|os (generic term)
+(noun)|beading|bead|beadwork|molding (generic term)|moulding (generic term)
+astragalar|1
+(adj)|bone|os (related term)
+astragalus|2
+(noun)|Astragalus|genus Astragalus|rosid dicot genus (generic term)
+(noun)|anklebone|astragal|talus|bone (generic term)|os (generic term)
+astragalus alpinus|1
+(noun)|alpine milk vetch|Astragalus alpinus|milk vetch (generic term)|milk-vetch (generic term)
+astragalus danicus|1
+(noun)|purple milk vetch|Astragalus danicus|milk vetch (generic term)|milk-vetch (generic term)
+astragalus glycyphyllos|1
+(noun)|wild licorice|wild liquorice|Astragalus glycyphyllos|milk vetch (generic term)|milk-vetch (generic term)
+astrakhan|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|Astrakhan|city (generic term)|metropolis (generic term)|urban center (generic term)
+astral|1
+(adj)|stellar|celestial body|heavenly body (related term)
+astrantia|1
+(noun)|masterwort|herb (generic term)|herbaceous plant (generic term)
+astrantia major|1
+(noun)|greater masterwort|Astrantia major|astrantia (generic term)|masterwort (generic term)
+astraphobia|1
+(noun)|simple phobia (generic term)
+astray|1
+(adv)|wide
+astreus|1
+(noun)|Astreus|genus Astreus|fungus genus (generic term)
+astreus hygrometricus|1
+(noun)|Astreus hygrometricus|earthstar (generic term)
+astreus pteridis|1
+(noun)|Astreus pteridis|earthstar (generic term)
+astride|1
+(adv)|astraddle
+astringe|2
+(verb)|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|constrict (generic term)|constringe (generic term)|narrow (generic term)
+astringence|1
+(noun)|astringency|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+astringency|2
+(noun)|astringence|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|stypsis|contractility (generic term)
+astringent|3
+(adj)|acerb|acerbic|sour (similar term)
+(adj)|styptic (similar term)|hemostatic (similar term)|nonastringent (antonym)
+(noun)|astringent drug|styptic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+astringent drug|1
+(noun)|astringent|styptic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+astrobiology|1
+(noun)|exobiology|space biology|biology (generic term)|biological science (generic term)
+astrocyte|1
+(noun)|neurogliacyte (generic term)|neuroglial cell (generic term)|glial cell (generic term)
+astrocytic|1
+(adj)|neurogliacyte|neuroglial cell|glial cell (related term)
+astrodome|1
+(noun)|dome (generic term)
+astrodynamics|1
+(noun)|astronomy (generic term)|uranology (generic term)
+astrogate|2
+(verb)|navigate (generic term)|pilot (generic term)
+(verb)|voyage (generic term)|sail (generic term)|navigate (generic term)
+astrogator|1
+(noun)|navigator (generic term)
+astroglia|1
+(noun)|macroglia|neuroglia (generic term)|glia (generic term)
+astrolabe|1
+(noun)|sextant (generic term)
+astrolatry|1
+(noun)|worship of heavenly bodies|worship (generic term)
+astrologer|1
+(noun)|astrologist|forecaster (generic term)|predictor (generic term)|prognosticator (generic term)|soothsayer (generic term)
+astrological|1
+(adj)|pseudoscience (related term)
+astrologist|1
+(noun)|astrologer|forecaster (generic term)|predictor (generic term)|prognosticator (generic term)|soothsayer (generic term)
+astrology|1
+(noun)|star divination|pseudoscience (generic term)
+astroloma|1
+(noun)|Astroloma|genus Astroloma|dilleniid dicot genus (generic term)
+astroloma humifusum|1
+(noun)|native cranberry|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+astrometry|1
+(noun)|astronomy (generic term)|uranology (generic term)
+astronaut|1
+(noun)|spaceman|cosmonaut|traveler (generic term)|traveller (generic term)
+astronautic|1
+(adj)|astronautical|physics|physical science|natural philosophy (related term)|traveler|traveller (related term)
+astronautical|1
+(adj)|astronautic|physics|physical science|natural philosophy (related term)|traveler|traveller (related term)
+astronautics|1
+(noun)|aeronautics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+astronavigation|1
+(noun)|celestial navigation|navigation (generic term)|pilotage (generic term)|piloting (generic term)
+astronium|1
+(noun)|Astronium|genus Astronium|dicot genus (generic term)|magnoliopsid genus (generic term)
+astronium fraxinifolium|1
+(noun)|goncalo alves|Astronium fraxinifolium|zebrawood (generic term)|zebrawood tree (generic term)
+astronomer|1
+(noun)|uranologist|stargazer|physicist (generic term)
+astronomic|2
+(adj)|astronomical|physics|physical science|natural philosophy (related term)
+(adj)|astronomical|galactic|large (similar term)|big (similar term)
+astronomical|2
+(adj)|astronomic|physics|physical science|natural philosophy (related term)
+(adj)|astronomic|galactic|large (similar term)|big (similar term)
+astronomical telescope|1
+(noun)|telescope (generic term)|scope (generic term)
+astronomical unit|1
+(noun)|Astronomical Unit|AU|astronomy unit (generic term)
+astronomical year|1
+(noun)|solar year|tropical year|equinoctial year|year (generic term)
+astronomy|1
+(noun)|uranology|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+astronomy satellite|1
+(noun)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+astronomy unit|1
+(noun)|linear unit (generic term)
+astrophysical|1
+(adj)|astronomy|uranology (related term)
+astrophysicist|1
+(noun)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+astrophysics|1
+(noun)|astronomy (generic term)|uranology (generic term)
+astrophyton|1
+(noun)|Astrophyton|genus Astrophyton|echinoderm genus (generic term)
+astrophyton muricatum|1
+(noun)|Astrophyton muricatum|basket star (generic term)|basket fish (generic term)
+astropogon|1
+(noun)|Astropogon|genus Astropogon|fish genus (generic term)
+astropogon stellatus|1
+(noun)|conchfish|Astropogon stellatus|cardinalfish (generic term)
+astute|1
+(adj)|sharp|shrewd|smart (similar term)
+astutely|1
+(adv)|shrewdly|sagaciously|sapiently|acutely
+astuteness|2
+(noun)|shrewdness|perspicacity|perspicaciousness|intelligence (generic term)
+(noun)|profundity|profoundness|depth|deepness|wisdom (generic term)|sapience (generic term)
+astylar|1
+(adj)|noncolumned (similar term)|uncolumned (similar term)
+asuncion|1
+(noun)|Asuncion|capital of Paraguay|national capital (generic term)|port (generic term)
+asunder|2
+(adj)|separate (similar term)
+(adv)|apart
+asur|1
+(noun)|Assur|Asur|Ashur|city (generic term)|metropolis (generic term)|urban center (generic term)
+asura|1
+(noun)|Asura|Hindu deity (generic term)
+asurbanipal|1
+(noun)|Ashurbanipal|Assurbanipal|Asurbanipal|king (generic term)|male monarch (generic term)|Rex (generic term)
+asvina|1
+(noun)|Asin|Asvina|Hindu calendar month (generic term)
+asvins|1
+(noun)|Asvins|Hindu deity (generic term)
+aswan|1
+(noun)|Aswan|Assuan|Assouan|city (generic term)|metropolis (generic term)|urban center (generic term)
+aswan dam|1
+(noun)|Aswan High Dam|Aswan Dam|High Dam|dam (generic term)|dike (generic term)|dyke (generic term)
+aswan high dam|1
+(noun)|Aswan High Dam|Aswan Dam|High Dam|dam (generic term)|dike (generic term)|dyke (generic term)
+asylum|2
+(noun)|refuge|sanctuary|shelter (generic term)
+(noun)|mental hospital|psychiatric hospital|mental institution|institution|mental home|insane asylum|hospital (generic term)|infirmary (generic term)
+asymmetric|1
+(adj)|asymmetrical|lopsided (similar term)|noninterchangeable (similar term)|unsymmetric (similar term)|unsymmetrical (similar term)|irregular (related term)|symmetrical (antonym)
+asymmetrical|2
+(adj)|asymmetric|lopsided (similar term)|noninterchangeable (similar term)|unsymmetric (similar term)|unsymmetrical (similar term)|irregular (related term)|symmetrical (antonym)
+(adj)|crooked|irregular (similar term)
+asymmetrically|1
+(adv)|unsymmetrically|symmetrically (antonym)
+asymmetry|1
+(noun)|dissymmetry|imbalance|spatial property (generic term)|spatiality (generic term)|symmetry (antonym)
+asymptomatic|1
+(adj)|symptomless|well (similar term)
+asymptote|1
+(noun)|straight line (generic term)
+asymptotic|1
+(adj)|straight line (related term)
+asynchronism|1
+(noun)|asynchrony|desynchronization|desynchronisation|desynchronizing|temporal relation (generic term)|synchronizing (antonym)|synchronization (antonym)|synchronism (antonym)
+asynchronous|2
+(adj)|synchronous (antonym)
+(adj)|allochronic (similar term)|anachronic (similar term)|anachronous (similar term)|anachronistic (similar term)|nonsynchronous (similar term)|unsynchronized (similar term)|unsynchronised (similar term)|unsynchronous (similar term)|serial (similar term)|in series (similar term)|nonparallel (similar term)|synchronous (antonym)
+asynchronous operation|1
+(noun)|operation (generic term)|synchronous operation (antonym)
+asynchronous transfer mode|1
+(noun)|ATM|digital communication (generic term)|data communication (generic term)
+asynchrony|1
+(noun)|asynchronism|desynchronization|desynchronisation|desynchronizing|temporal relation (generic term)|synchronizing (antonym)|synchronization (antonym)|synchronism (antonym)
+asynclitism|1
+(noun)|obliquity|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+asyndetic|1
+(adj)|syndetic (antonym)
+asyndeton|1
+(noun)|rhetorical device (generic term)
+asynergia|1
+(noun)|asynergy|pathology (generic term)
+asynergic|1
+(adj)|pathology (related term)
+asynergy|1
+(noun)|asynergia|pathology (generic term)
+asystole|1
+(noun)|cardiac arrest|cardiopulmonary arrest|pathology (generic term)
+at|2
+(noun)|astatine|At|atomic number 85|chemical element (generic term)|element (generic term)|halogen (generic term)
+(noun)|Laotian monetary unit (generic term)
+at-bat|1
+(noun)|bat|turn (generic term)|play (generic term)
+at a loss|1
+(adj)|nonplused|nonplussed|puzzled|perplexed (similar term)
+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|above (antonym)
+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 (similar term)
+at best|1
+(adv)|at the best|at worst (antonym)
+at bottom|1
+(adv)|at heart|deep down|inside|in spite of appearance
+at close range|1
+(adv)|close up
+at ease|1
+(adj)|comfortable (similar term)
+at fault|1
+(adj)|guilty (similar term)
+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 hand|2
+(adj)|close at hand|close (similar term)
+(adj)|close at hand|imminent|impendent|impending|close (similar term)
+at heart|1
+(adv)|at bottom|deep down|inside|in spite of appearance
+at home|1
+(noun)|reception (generic term)
+at issue|1
+(adj)|in dispute|in hand|in question|under consideration|relevant (similar term)
+at large|2
+(adj)|escaped|loose|on the loose|free (similar term)
+(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 the most (antonym)|at most (antonym)
+at leisure|1
+(adv)|leisurely
+at length|2
+(adv)|finally|eventually
+(adv)|lengthily
+at loggerheads|1
+(adj)|hostile (similar term)
+at long last|1
+(adv)|ultimately|finally|in the end|at last
+at most|1
+(adv)|at the most|at the least (antonym)|at least (antonym)
+at odds|1
+(adj)|conflicting|contradictory|self-contradictory|inconsistent (similar term)
+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 (similar term)
+at present|1
+(adv)|now
+at random|1
+(adv)|randomly|indiscriminately|haphazardly|willy-nilly|arbitrarily|every which way
+at rest|2
+(adj)|asleep (similar term)
+(adj)|asleep|at peace|deceased|departed|gone|dead (similar term)
+at sea|1
+(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|perplexed (similar term)
+at that place|1
+(adv)|there|in that location|here (antonym)
+at the best|1
+(adv)|at best|at worst (antonym)
+at the least|1
+(adv)|at least|at the most (antonym)|at most (antonym)
+at the most|1
+(adv)|at most|at the least (antonym)|at least (antonym)
+at the ready|1
+(adj)|ready (similar term)
+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 best (antonym)
+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 (similar term)
+at work|1
+(adj)|busy (similar term)
+at worst|1
+(adv)|at the worst|at best (antonym)
+atabrine|1
+(noun)|quinacrine|quinacrine hydrochloride|mepacrine|Atabrine|antimalarial (generic term)|antimalarial drug (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+atacama desert|1
+(noun)|Atacama Desert|desert (generic term)
+atacama trench|1
+(noun)|Atacama Trench|trench (generic term)|deep (generic term)|oceanic abyss (generic term)
+atactic|1
+(adj)|ataxic|nervous disorder|neurological disorder|neurological disease (related term)
+atactic abasia|1
+(noun)|ataxic abasia|abasia (generic term)
+atakapa|2
+(noun)|Atakapa|Attacapan|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+atakapan|1
+(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+atar|1
+(noun)|attar|athar|ottar|essential oil (generic term)|volatile oil (generic term)
+ataractic|2
+(adj)|ataraxic|sedative|tranquilizing|tranquilising|depressant (similar term)
+(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+ataractic agent|1
+(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+ataractic drug|1
+(noun)|tranquilizer|tranquillizer|tranquilliser|antianxiety agent|ataractic agent|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+atarax|1
+(noun)|hydroxyzine hydrochloride|hydroxyzine|Atarax|Vistaril|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+ataraxia|1
+(noun)|repose (generic term)|quiet (generic term)|placidity (generic term)|serenity (generic term)|tranquillity (generic term)|tranquility (generic term)
+ataraxic|1
+(adj)|ataractic|sedative|tranquilizing|tranquilising|depressant (similar term)
+ataraxis|1
+(noun)|peace|peacefulness|peace of mind|repose|serenity|heartsease|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+ataturk|1
+(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman (generic term)|solon (generic term)|national leader (generic term)
+atavism|1
+(noun)|reversion|throwback|recurrence (generic term)|return (generic term)
+atavist|1
+(noun)|throwback|organism (generic term)|being (generic term)
+atavistic|1
+(adj)|throwback|regressive (similar term)
+ataxia|1
+(noun)|ataxy|dyssynergia|motor ataxia|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+ataxic|1
+(adj)|atactic|nervous disorder|neurological disorder|neurological disease (related term)
+ataxic abasia|1
+(noun)|atactic abasia|abasia (generic term)
+ataxic aphasia|1
+(noun)|motor aphasia|Broca's aphasia|expressive aphasia|nonfluent aphasia|aphasia (generic term)
+ataxy|1
+(noun)|ataxia|dyssynergia|motor ataxia|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+atayalic|1
+(noun)|Tayalic|Atayalic|Formosan (generic term)
+ate|1
+(noun)|Ate|Greek deity (generic term)
+atelectasis|1
+(noun)|pathology (generic term)
+ateleiosis|1
+(noun)|ateliosis|infantilism (generic term)
+ateleiotic|1
+(adj)|infantilism (related term)
+ateles|1
+(noun)|Ateles|genus Ateles|mammal genus (generic term)
+ateles geoffroyi|1
+(noun)|spider monkey|Ateles geoffroyi|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+atelier|1
+(noun)|artist's workroom|studio (generic term)
+ateliosis|1
+(noun)|ateleiosis|infantilism (generic term)
+aten|1
+(noun)|Aten|Aton|Egyptian deity (generic term)
+atenolol|1
+(noun)|Tenormin|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+ateria gastrica dextra|1
+(noun)|right gastric artery|gastric artery (generic term)|arteria gastrica (generic term)
+atf|1
+(noun)|Bureau of Alcohol Tobacco and Firearms|ATF|law enforcement agency (generic term)
+athabascan|2
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+athabaskan|2
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+athanasian creed|1
+(noun)|Athanasian Creed|creed (generic term)|credo (generic term)
+athanasianism|1
+(noun)|Athanasianism|theological doctrine (generic term)|Arianism (antonym)
+athanasius|1
+(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+athanasius the great|1
+(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+athanor|1
+(noun)|furnace (generic term)
+athapascan|2
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+athapaskan|2
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+athapaskan language|1
+(noun)|Athapaskan|Athapascan|Athabaskan|Athabascan|Athapaskan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+athar|1
+(noun)|attar|atar|ottar|essential oil (generic term)|volatile oil (generic term)
+atharva-veda|1
+(noun)|Atharva-Veda|Samhita (generic term)
+atheism|2
+(noun)|godlessness|religious orientation (generic term)|theism (antonym)
+(noun)|unbelief (generic term)|disbelief (generic term)
+atheist|2
+(adj)|atheistic|atheistical|religious orientation (related term)
+(noun)|disbeliever (generic term)|nonbeliever (generic term)|unbeliever (generic term)
+atheistic|2
+(adj)|atheistical|unbelieving|irreligious (similar term)
+(adj)|atheist|atheistical|religious orientation (related term)
+atheistical|2
+(adj)|atheist|atheistic|religious orientation (related term)
+(adj)|atheistic|unbelieving|irreligious (similar term)
+athelstan|1
+(noun)|Athelstan|king (generic term)|male monarch (generic term)|Rex (generic term)|Saxon (generic term)
+athena|1
+(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity (generic term)
+athenaeum|2
+(noun)|atheneum|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|atheneum|library (generic term)|depository library (generic term)
+athene|2
+(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity (generic term)
+(noun)|Athene|genus Athene|bird genus (generic term)
+athene noctua|1
+(noun)|little owl|Athene noctua|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+atheneum|2
+(noun)|athenaeum|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|athenaeum|library (generic term)|depository library (generic term)
+athenian|2
+(adj)|Athenian|national capital (related term)
+(noun)|Athenian|Greek (generic term)|Hellene (generic term)
+athens|2
+(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital (generic term)
+(noun)|Athens|town (generic term)
+atherinidae|1
+(noun)|Atherinidae|family Atherinidae|fish family (generic term)
+atherinopsis|1
+(noun)|Atherinopsis|genus Atherinopsis|fish genus (generic term)
+atherinopsis californiensis|1
+(noun)|jacksmelt|Atherinopsis californiensis|silversides (generic term)|silverside (generic term)
+atherodyde|1
+(noun)|ramjet|ramjet engine|athodyd|flying drainpipe|jet engine (generic term)
+atherogenesis|1
+(noun)|pathology (generic term)
+atheroma|1
+(noun)|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+atheromatic|1
+(adj)|atheromatous|adipose tissue|fat|fatty tissue (related term)
+atheromatous|1
+(adj)|atheromatic|adipose tissue|fat|fatty tissue (related term)
+atherosclerosis|1
+(noun)|coronary artery disease|arteriosclerosis (generic term)|arterial sclerosis (generic term)|hardening of the arteries (generic term)|induration of the arteries (generic term)|coronary-artery disease (generic term)
+atherosclerotic|1
+(adj)|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|coronary-artery disease (related term)
+atherurus|1
+(noun)|Atherurus|genus Atherurus|mammal genus (generic term)
+athetosis|1
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+athinai|1
+(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital (generic term)
+athiorhodaceae|1
+(noun)|Athiorhodaceae|family Athiorhodaceae|bacteria family (generic term)
+athirst|1
+(adj)|hungry|thirsty|desirous (similar term)|wishful (similar term)
+athlete|1
+(noun)|jock|contestant (generic term)
+athlete's foot|1
+(noun)|tinea pedis|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+athlete's heart|1
+(noun)|heart (generic term)|pump (generic term)|ticker (generic term)
+athletic|3
+(adj)|diversion|recreation (related term)
+(adj)|acrobatic|gymnastic|active (similar term)
+(adj)|mesomorphic (similar term)|muscular (similar term)
+athletic competition|1
+(noun)|athletic contest|athletics|contest (generic term)|competition (generic term)
+athletic contest|1
+(noun)|athletic competition|athletics|contest (generic term)|competition (generic term)
+athletic facility|1
+(noun)|facility (generic term)|installation (generic term)
+athletic field|1
+(noun)|playing field|playing area|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+athletic game|1
+(noun)|sport (generic term)|athletics (generic term)|game (generic term)
+athletic sock|1
+(noun)|sweat sock|varsity sock|sock (generic term)
+athletic supporter|1
+(noun)|supporter|suspensor|jockstrap|jock|protective garment (generic term)|man's clothing (generic term)
+athletic training|1
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+athletic type|1
+(noun)|mesomorphy|body type (generic term)|somatotype (generic term)
+athletic wear|1
+(noun)|sportswear|activewear|attire (generic term)|garb (generic term)|dress (generic term)
+athleticism|1
+(noun)|strenuosity|energy (generic term)|vigor (generic term)|vigour (generic term)|zip (generic term)
+athletics|3
+(noun)|sport|diversion (generic term)|recreation (generic term)
+(noun)|athletic contest|athletic competition|contest (generic term)|competition (generic term)
+(noun)|extracurricular activity (generic term)
+athodyd|1
+(noun)|ramjet|ramjet engine|atherodyde|flying drainpipe|jet engine (generic term)
+athol fugard|1
+(noun)|Fugard|Athol Fugard|dramatist (generic term)|playwright (generic term)
+athos|1
+(noun)|Athos|Mount Athos|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+athrotaxis|1
+(noun)|Athrotaxis|genus Athrotaxis|gymnosperm genus (generic term)
+athrotaxis selaginoides|1
+(noun)|King William pine|Athrotaxis selaginoides|conifer (generic term)|coniferous tree (generic term)
+athwart|1
+(adv)|obliquely|aslant
+athyriaceae|1
+(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family (generic term)
+athyrium|1
+(noun)|Athyrium|genus Athyrium|fern genus (generic term)
+athyrium distentifolium|1
+(noun)|Alpine lady fern|Athyrium distentifolium|lady fern (generic term)|Athyrium filix-femina (generic term)
+athyrium filix-femina|1
+(noun)|lady fern|Athyrium filix-femina|fern (generic term)
+athyrium pycnocarpon|1
+(noun)|silvery spleenwort|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern (generic term)
+athyrium thelypteroides|1
+(noun)|silvery spleenwort|Deparia acrostichoides|Athyrium thelypteroides|fern (generic term)
+atilt|1
+(adj)|canted|leaning|tilted|tipped|inclined (similar term)
+ativan|1
+(noun)|lorazepam|Ativan|benzodiazepine (generic term)
+atlanta|2
+(noun)|Atlanta|capital of Georgia|state capital (generic term)
+(noun)|Atlanta|battle of Atlanta|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+atlantic|2
+(adj)|Atlantic|ocean (related term)
+(noun)|Atlantic|Atlantic Ocean|ocean (generic term)
+atlantic bonito|1
+(noun)|skipjack|Atlantic bonito|Sarda sarda|bonito (generic term)
+atlantic bottlenose dolphin|1
+(noun)|Atlantic bottlenose dolphin|Tursiops truncatus|bottlenose dolphin (generic term)|bottle-nosed dolphin (generic term)|bottlenose (generic term)
+atlantic city|1
+(noun)|Atlantic City|city (generic term)|metropolis (generic term)|urban center (generic term)
+atlantic coast|1
+(noun)|Atlantic Coast|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+atlantic cod|1
+(noun)|Atlantic cod|Gadus morhua|cod (generic term)|codfish (generic term)
+atlantic croaker|1
+(noun)|Atlantic croaker|Micropogonias undulatus|croaker (generic term)
+atlantic halibut|1
+(noun)|Atlantic halibut|Hippoglossus hippoglossus|righteye flounder (generic term)|righteyed flounder (generic term)
+atlantic herring|1
+(noun)|Atlantic herring|Clupea harengus harengus|herring (generic term)|Clupea harangus (generic term)
+atlantic manta|1
+(noun)|Atlantic manta|Manta birostris|manta (generic term)|manta ray (generic term)|devilfish (generic term)
+atlantic moonfish|1
+(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+atlantic ocean|1
+(noun)|Atlantic|Atlantic Ocean|ocean (generic term)
+atlantic puffin|1
+(noun)|Atlantic puffin|Fratercula arctica|puffin (generic term)
+atlantic ridley|1
+(noun)|Atlantic ridley|bastard ridley|bastard turtle|Lepidochelys kempii|ridley (generic term)
+atlantic sailfish|1
+(noun)|Atlantic sailfish|Istiophorus albicans|sailfish (generic term)
+atlantic salmon|2
+(noun)|Atlantic salmon|salmon (generic term)
+(noun)|Atlantic salmon|Salmo salar|salmon (generic term)
+atlantic sea bream|1
+(noun)|Atlantic sea bream|Archosargus rhomboidalis|sea bream (generic term)|bream (generic term)
+atlantic spiny dogfish|1
+(noun)|Atlantic spiny dogfish|Squalus acanthias|spiny dogfish (generic term)
+atlantic standard time|1
+(noun)|Atlantic Time|Atlantic Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+atlantic time|1
+(noun)|Atlantic Time|Atlantic Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+atlantic tripletail|1
+(noun)|Atlantic tripletail|Lobotes surinamensis|tripletail (generic term)
+atlantic walrus|1
+(noun)|Atlantic walrus|Odobenus rosmarus|walrus (generic term)|seahorse (generic term)|sea horse (generic term)
+atlantic white cedar|1
+(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+atlantides|1
+(noun)|Hesperides|Atlantides|nymph (generic term)
+atlantis|1
+(noun)|Atlantis|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+atlas|4
+(noun)|Atlas|Titan (generic term)
+(noun)|book of maps|map collection|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+(noun)|atlas vertebra|cervical vertebra (generic term)|neck bone (generic term)
+(noun)|telamon|column (generic term)|pillar (generic term)
+atlas cedar|1
+(noun)|Atlas cedar|Cedrus atlantica|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+atlas moth|1
+(noun)|Atticus atlas|giant silkworm moth (generic term)|silkworm moth (generic term)
+atlas mountains|1
+(noun)|Atlas Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+atlas vertebra|1
+(noun)|atlas|cervical vertebra (generic term)|neck bone (generic term)
+atm|3
+(noun)|standard atmosphere|atmosphere|standard pressure|pressure unit (generic term)
+(noun)|asynchronous transfer mode|ATM|digital communication (generic term)|data communication (generic term)
+(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine (generic term)
+atmometer|1
+(noun)|evaporometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+atmosphere|6
+(noun)|ambiance|ambience|condition (generic term)|status (generic term)
+(noun)|standard atmosphere|atm|standard pressure|pressure unit (generic term)
+(noun)|air|region (generic term)|part (generic term)
+(noun)|atmospheric state|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|gas (generic term)
+(noun)|air|aura|quality (generic term)
+atmospheric|1
+(adj)|atmospherical|region|part (related term)
+atmospheric condition|1
+(noun)|weather|weather condition|atmospheric phenomenon (generic term)
+atmospheric electricity|1
+(noun)|electrical discharge (generic term)|atmospheric phenomenon (generic term)
+atmospheric phenomenon|1
+(noun)|physical phenomenon (generic term)
+atmospheric pressure|1
+(noun)|air pressure|gas pressure (generic term)
+atmospheric state|1
+(noun)|atmosphere|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+atmospheric static|1
+(noun)|static|atmospherics|noise (generic term)|interference (generic term)|disturbance (generic term)
+atmospherical|1
+(adj)|atmospheric|region|part (related term)
+atmospherics|1
+(noun)|static|atmospheric static|noise (generic term)|interference (generic term)|disturbance (generic term)
+atole|1
+(noun)|mush (generic term)|cornmeal mush (generic term)
+atoll|1
+(noun)|coral reef (generic term)
+atom|2
+(noun)|substance (generic term)|matter (generic term)
+(noun)|molecule|particle|corpuscle|mote|speck|material (generic term)|stuff (generic term)
+atom-bomb|1
+(verb)|nuke|bombard (generic term)|bomb (generic term)
+atom bomb|1
+(noun)|atomic bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon (generic term)|bomb (generic term)
+atom smasher|1
+(noun)|accelerator|particle accelerator|scientific instrument (generic term)
+atomic|3
+(adj)|substance|matter (related term)
+(adj)|nuclear|thermonuclear (similar term)|conventional (antonym)
+(adj)|atomlike|minute|microscopic (similar term)|microscopical (similar term)
+atomic bomb|1
+(noun)|atom bomb|A-bomb|fission bomb|plutonium bomb|nuclear weapon (generic term)|bomb (generic term)
+atomic clock|1
+(noun)|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+atomic cocktail|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+atomic energy|1
+(noun)|nuclear energy|energy (generic term)
+atomic energy commission|1
+(noun)|Atomic Energy Commission|AEC|executive agency (generic term)
+atomic explosion|1
+(noun)|nuclear explosion|bomb blast (generic term)
+atomic mass|1
+(noun)|mass (generic term)
+atomic mass unit|1
+(noun)|mass unit (generic term)
+atomic number|1
+(noun)|number (generic term)
+atomic number 1|1
+(noun)|hydrogen|H|chemical element (generic term)|element (generic term)|gas (generic term)
+atomic number 10|1
+(noun)|neon|Ne|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 100|1
+(noun)|fermium|Fm|metallic element (generic term)|metal (generic term)
+atomic number 101|1
+(noun)|mendelevium|Md|Mv|chemical element (generic term)|element (generic term)
+atomic number 102|1
+(noun)|nobelium|No|chemical element (generic term)|element (generic term)
+atomic number 103|1
+(noun)|lawrencium|Lr|chemical element (generic term)|element (generic term)
+atomic number 104|1
+(noun)|rutherfordium|Rf|unnilquadium|Unq|element 104|chemical element (generic term)|element (generic term)
+atomic number 105|1
+(noun)|dubnium|Db|hahnium|element 105|chemical element (generic term)|element (generic term)
+atomic number 106|1
+(noun)|seaborgium|Sg|element 106|chemical element (generic term)|element (generic term)
+atomic number 107|1
+(noun)|bohrium|Bh|element 107|chemical element (generic term)|element (generic term)
+atomic number 108|1
+(noun)|hassium|Hs|element 108|chemical element (generic term)|element (generic term)
+atomic number 109|1
+(noun)|meitnerium|Mt|element 109|chemical element (generic term)|element (generic term)
+atomic number 11|1
+(noun)|sodium|Na|metallic element (generic term)|metal (generic term)
+atomic number 110|1
+(noun)|darmstadtium|Ds|element 110|chemical element (generic term)|element (generic term)
+atomic number 111|1
+(noun)|roentgenium|Rg|element 111|chemical element (generic term)|element (generic term)
+atomic number 112|1
+(noun)|ununbium|Uub|element 112|chemical element (generic term)|element (generic term)
+atomic number 113|1
+(noun)|ununtrium|Uut|element 113|chemical element (generic term)|element (generic term)
+atomic number 114|1
+(noun)|ununquadium|Uuq|element 114|chemical element (generic term)|element (generic term)
+atomic number 115|1
+(noun)|ununpentium|Uup|element 115|chemical element (generic term)|element (generic term)
+atomic number 116|1
+(noun)|ununhexium|Uuh|element 116|chemical element (generic term)|element (generic term)
+atomic number 12|1
+(noun)|magnesium|Mg|metallic element (generic term)|metal (generic term)
+atomic number 13|1
+(noun)|aluminum|aluminium|Al|metallic element (generic term)|metal (generic term)
+atomic number 14|1
+(noun)|silicon|Si|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+atomic number 15|1
+(noun)|phosphorus|P|chemical element (generic term)|element (generic term)
+atomic number 16|1
+(noun)|sulfur|S|sulphur|chemical element (generic term)|element (generic term)
+atomic number 17|1
+(noun)|chlorine|Cl|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+atomic number 18|1
+(noun)|argon|Ar|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 19|1
+(noun)|potassium|K|metallic element (generic term)|metal (generic term)
+atomic number 2|1
+(noun)|helium|He|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 20|1
+(noun)|calcium|Ca|metallic element (generic term)|metal (generic term)
+atomic number 21|1
+(noun)|scandium|Sc|metallic element (generic term)|metal (generic term)
+atomic number 22|1
+(noun)|titanium|Ti|metallic element (generic term)|metal (generic term)
+atomic number 23|1
+(noun)|vanadium|V|metallic element (generic term)|metal (generic term)
+atomic number 24|1
+(noun)|chromium|Cr|metallic element (generic term)|metal (generic term)
+atomic number 25|1
+(noun)|manganese|Mn|metallic element (generic term)|metal (generic term)
+atomic number 26|1
+(noun)|iron|Fe|metallic element (generic term)|metal (generic term)
+atomic number 27|1
+(noun)|cobalt|Co|metallic element (generic term)|metal (generic term)
+atomic number 28|1
+(noun)|nickel|Ni|metallic element (generic term)|metal (generic term)
+atomic number 29|1
+(noun)|copper|Cu|metallic element (generic term)|metal (generic term)|conductor (generic term)
+atomic number 3|1
+(noun)|lithium|Li|metallic element (generic term)|metal (generic term)
+atomic number 30|1
+(noun)|zinc|Zn|metallic element (generic term)|metal (generic term)
+atomic number 31|1
+(noun)|gallium|Ga|metallic element (generic term)|metal (generic term)
+atomic number 32|1
+(noun)|germanium|Ge|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+atomic number 33|1
+(noun)|arsenic|As|chemical element (generic term)|element (generic term)
+atomic number 34|1
+(noun)|selenium|Se|chemical element (generic term)|element (generic term)|antioxidant (generic term)
+atomic number 35|1
+(noun)|bromine|Br|chemical element (generic term)|element (generic term)|halogen (generic term)
+atomic number 36|1
+(noun)|krypton|Kr|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 37|1
+(noun)|rubidium|Rb|metallic element (generic term)|metal (generic term)
+atomic number 38|1
+(noun)|strontium|Sr|metallic element (generic term)|metal (generic term)
+atomic number 39|1
+(noun)|yttrium|Y|metallic element (generic term)|metal (generic term)
+atomic number 4|1
+(noun)|beryllium|Be|glucinium|metallic element (generic term)|metal (generic term)
+atomic number 40|1
+(noun)|zirconium|Zr|metallic element (generic term)|metal (generic term)
+atomic number 41|1
+(noun)|niobium|Nb|metallic element (generic term)|metal (generic term)
+atomic number 42|1
+(noun)|molybdenum|Mo|metallic element (generic term)|metal (generic term)
+atomic number 43|1
+(noun)|technetium|Tc|metallic element (generic term)|metal (generic term)
+atomic number 44|1
+(noun)|ruthenium|Ru|metallic element (generic term)|metal (generic term)
+atomic number 45|1
+(noun)|rhodium|Rh|metallic element (generic term)|metal (generic term)
+atomic number 46|1
+(noun)|palladium|Pd|metallic element (generic term)|metal (generic term)
+atomic number 47|1
+(noun)|silver|Ag|noble metal (generic term)|conductor (generic term)
+atomic number 48|1
+(noun)|cadmium|Cd|metallic element (generic term)|metal (generic term)
+atomic number 49|1
+(noun)|indium|In|metallic element (generic term)|metal (generic term)
+atomic number 5|1
+(noun)|boron|B|chemical element (generic term)|element (generic term)
+atomic number 50|1
+(noun)|tin|Sn|metallic element (generic term)|metal (generic term)
+atomic number 51|1
+(noun)|antimony|Sb|metallic element (generic term)|metal (generic term)
+atomic number 52|1
+(noun)|tellurium|Te|chemical element (generic term)|element (generic term)
+atomic number 53|1
+(noun)|iodine|iodin|I|chemical element (generic term)|element (generic term)|halogen (generic term)
+atomic number 54|1
+(noun)|xenon|Xe|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 55|1
+(noun)|cesium|caesium|Cs|metallic element (generic term)|metal (generic term)
+atomic number 56|1
+(noun)|barium|Ba|metallic element (generic term)|metal (generic term)
+atomic number 57|1
+(noun)|lanthanum|La|metallic element (generic term)|metal (generic term)
+atomic number 58|1
+(noun)|cerium|Ce|metallic element (generic term)|metal (generic term)
+atomic number 59|1
+(noun)|praseodymium|Pr|metallic element (generic term)|metal (generic term)
+atomic number 6|1
+(noun)|carbon|C|chemical element (generic term)|element (generic term)
+atomic number 60|1
+(noun)|neodymium|Nd|metallic element (generic term)|metal (generic term)
+atomic number 61|1
+(noun)|promethium|Pm|metallic element (generic term)|metal (generic term)
+atomic number 62|1
+(noun)|samarium|Sm|metallic element (generic term)|metal (generic term)
+atomic number 63|1
+(noun)|europium|Eu|metallic element (generic term)|metal (generic term)
+atomic number 64|1
+(noun)|gadolinium|Gd|metallic element (generic term)|metal (generic term)
+atomic number 65|1
+(noun)|terbium|Tb|metallic element (generic term)|metal (generic term)
+atomic number 66|1
+(noun)|dysprosium|Dy|metallic element (generic term)|metal (generic term)
+atomic number 67|1
+(noun)|holmium|Ho|metallic element (generic term)|metal (generic term)
+atomic number 68|1
+(noun)|erbium|Er|metallic element (generic term)|metal (generic term)
+atomic number 69|1
+(noun)|thulium|Tm|metallic element (generic term)|metal (generic term)
+atomic number 7|1
+(noun)|nitrogen|N|chemical element (generic term)|element (generic term)|gas (generic term)
+atomic number 70|1
+(noun)|ytterbium|Yb|metallic element (generic term)|metal (generic term)
+atomic number 71|1
+(noun)|lutetium|lutecium|Lu|metallic element (generic term)|metal (generic term)
+atomic number 72|1
+(noun)|hafnium|Hf|metallic element (generic term)|metal (generic term)
+atomic number 73|1
+(noun)|tantalum|Ta|metallic element (generic term)|metal (generic term)
+atomic number 74|1
+(noun)|tungsten|wolfram|W|metallic element (generic term)|metal (generic term)
+atomic number 75|1
+(noun)|rhenium|Re|metallic element (generic term)|metal (generic term)
+atomic number 76|1
+(noun)|osmium|Os|metallic element (generic term)|metal (generic term)
+atomic number 77|1
+(noun)|iridium|Ir|metallic element (generic term)|metal (generic term)
+atomic number 78|1
+(noun)|platinum|Pt|noble metal (generic term)
+atomic number 79|1
+(noun)|gold|Au|noble metal (generic term)
+atomic number 8|1
+(noun)|oxygen|O|chemical element (generic term)|element (generic term)|gas (generic term)
+atomic number 80|1
+(noun)|mercury|quicksilver|hydrargyrum|Hg|metallic element (generic term)|metal (generic term)
+atomic number 81|1
+(noun)|thallium|Tl|metallic element (generic term)|metal (generic term)
+atomic number 82|1
+(noun)|lead|Pb|metallic element (generic term)|metal (generic term)
+atomic number 83|1
+(noun)|bismuth|Bi|metallic element (generic term)|metal (generic term)
+atomic number 84|1
+(noun)|polonium|Po|metallic element (generic term)|metal (generic term)
+atomic number 85|1
+(noun)|astatine|At|chemical element (generic term)|element (generic term)|halogen (generic term)
+atomic number 86|1
+(noun)|radon|Rn|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+atomic number 87|1
+(noun)|francium|Fr|metallic element (generic term)|metal (generic term)
+atomic number 88|1
+(noun)|radium|Ra|metallic element (generic term)|metal (generic term)
+atomic number 89|1
+(noun)|actinium|Ac|chemical element (generic term)|element (generic term)
+atomic number 9|1
+(noun)|fluorine|F|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+atomic number 90|1
+(noun)|thorium|Th|metallic element (generic term)|metal (generic term)
+atomic number 91|1
+(noun)|protactinium|protoactinium|Pa|metallic element (generic term)|metal (generic term)
+atomic number 92|1
+(noun)|uranium|U|metallic element (generic term)|metal (generic term)
+atomic number 93|1
+(noun)|neptunium|Np|metallic element (generic term)|metal (generic term)
+atomic number 94|1
+(noun)|plutonium|Pu|chemical element (generic term)|element (generic term)
+atomic number 95|1
+(noun)|americium|Am|metallic element (generic term)|metal (generic term)
+atomic number 96|1
+(noun)|curium|Cm|metallic element (generic term)|metal (generic term)
+atomic number 97|1
+(noun)|berkelium|Bk|metallic element (generic term)|metal (generic term)
+atomic number 98|1
+(noun)|californium|Cf|metallic element (generic term)|metal (generic term)
+atomic number 99|1
+(noun)|einsteinium|Es|E|metallic element (generic term)|metal (generic term)
+atomic physics|1
+(noun)|nuclear physics|nucleonics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+atomic pile|1
+(noun)|atomic reactor|pile|chain reactor|nuclear reactor (generic term)|reactor (generic term)
+atomic power|1
+(noun)|nuclear power|atomic energy (generic term)|nuclear energy (generic term)
+atomic reactor|1
+(noun)|atomic pile|pile|chain reactor|nuclear reactor (generic term)|reactor (generic term)
+atomic spectrum|1
+(noun)|spectrum (generic term)
+atomic theory|2
+(noun)|scientific theory (generic term)
+(noun)|atomism|atomist theory|atomistic theory|theory (generic term)|holism (antonym)
+atomic warhead|1
+(noun)|nuclear warhead|thermonuclear warhead|nuke|warhead (generic term)|payload (generic term)|load (generic term)
+atomic weight|1
+(noun)|relative atomic mass|mass (generic term)
+atomisation|2
+(noun)|atomization|fragmentation|division (generic term)
+(noun)|atomization|annihilation (generic term)|obliteration (generic term)
+atomise|3
+(verb)|atomize|spray (generic term)
+(verb)|nuke|atomize|zap|bombard (generic term)|bomb (generic term)
+(verb)|atomize|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+atomiser|1
+(noun)|atomizer|spray|sprayer|nebulizer|nebuliser|dispenser (generic term)
+atomism|2
+(noun)|scientific theory (generic term)
+(noun)|atomic theory|atomist theory|atomistic theory|theory (generic term)|holism (antonym)
+atomist theory|1
+(noun)|atomism|atomic theory|atomistic theory|theory (generic term)|holism (antonym)
+atomistic|1
+(adj)|atomistical|holistic (antonym)
+atomistic theory|1
+(noun)|atomism|atomic theory|atomist theory|theory (generic term)|holism (antonym)
+atomistical|1
+(adj)|atomistic|holistic (antonym)
+atomization|2
+(noun)|atomisation|fragmentation|division (generic term)
+(noun)|atomisation|annihilation (generic term)|obliteration (generic term)
+atomize|3
+(verb)|atomise|spray (generic term)
+(verb)|nuke|atomise|zap|bombard (generic term)|bomb (generic term)
+(verb)|atomise|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+atomizer|1
+(noun)|atomiser|spray|sprayer|nebulizer|nebuliser|dispenser (generic term)
+atomlike|1
+(adj)|atomic|minute|microscopic (similar term)|microscopical (similar term)
+aton|1
+(noun)|Aten|Aton|Egyptian deity (generic term)
+atonal|1
+(adj)|unkeyed|tonal (antonym)
+atonalism|1
+(noun)|atonality|musical notation (generic term)|tonality (antonym)
+atonalistic|1
+(adj)|musical notation (related term)
+atonality|1
+(noun)|atonalism|musical notation (generic term)|tonality (antonym)
+atone|2
+(verb)|expiate|aby|abye|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+(verb)|repent
+atonement|2
+(noun)|expiation|satisfaction|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+(noun)|expiation|propitiation|redemption (generic term)|salvation (generic term)
+atonia|1
+(noun)|atonicity|atony|amyotonia|condition (generic term)|status (generic term)|tonicity (antonym)
+atonic|2
+(adj)|condition|status (related term)
+(adj)|unaccented|tonic (antonym)
+atonicity|1
+(noun)|atony|atonia|amyotonia|condition (generic term)|status (generic term)|tonicity (antonym)
+atony|1
+(noun)|atonicity|atonia|amyotonia|condition (generic term)|status (generic term)|tonicity (antonym)
+atopic allergy|1
+(noun)|immediate allergy|atopy|type I allergic reaction|allergy (generic term)|allergic reaction (generic term)
+atopic dermatitis|1
+(noun)|atopic eczema|dermatitis (generic term)
+atopic eczema|1
+(noun)|atopic dermatitis|dermatitis (generic term)
+atopognosia|1
+(noun)|atopognosis|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+atopognosis|1
+(noun)|atopognosia|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+atopy|1
+(noun)|immediate allergy|atopic allergy|type I allergic reaction|allergy (generic term)|allergic reaction (generic term)
+atorvastatin|1
+(noun)|Lipitor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+atoxic|1
+(adj)|nontoxic|antitoxic (similar term)|harmless (similar term)|nonpoisonous (similar term)|non-poisonous (similar term)|nonvenomous (similar term)|harmless (related term)|toxic (antonym)
+atp|1
+(noun)|adenosine triphosphate|ATP|nucleotide (generic term)
+atrabilious|1
+(adj)|bilious|dyspeptic|liverish|ill-natured (similar term)
+atrazine|1
+(noun)|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+atresia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+atreus|1
+(noun)|Atreus|mythical being (generic term)
+atrial|1
+(adj)|chamber (related term)
+atrial artery|1
+(noun)|coronary artery (generic term)|arteria coronaria (generic term)
+atrial auricle|1
+(noun)|auricle|auricula atrii|pouch (generic term)|pocket (generic term)
+atrial fibrillation|1
+(noun)|fibrillation (generic term)|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+atrial septal defect|1
+(noun)|septal defect (generic term)
+atrichornis|1
+(noun)|Atrichornis|genus Atrichornis|bird genus (generic term)
+atrichornithidae|1
+(noun)|Atrichornithidae|family Atrichornithidae|bird family (generic term)
+atrioventricular|1
+(adj)|auriculoventricular|pouch|pocket (related term)|chamber (related term)
+atrioventricular block|1
+(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+atrioventricular bundle|1
+(noun)|bundle of His|atrioventricular trunk|truncus atrioventricularis|cardiac muscle (generic term)|heart muscle (generic term)
+atrioventricular nodal rhythm|1
+(noun)|nodal rhythm|cardiac rhythm (generic term)|heart rhythm (generic term)
+atrioventricular node|1
+(noun)|cardiac muscle (generic term)|heart muscle (generic term)
+atrioventricular trunk|1
+(noun)|atrioventricular bundle|bundle of His|truncus atrioventricularis|cardiac muscle (generic term)|heart muscle (generic term)
+atrioventricular valve|1
+(noun)|heart valve (generic term)|cardiac valve (generic term)
+atrip|1
+(adj)|aweigh|free (similar term)
+atriplex|1
+(noun)|Atriplex|genus Atriplex|caryophylloid dicot genus (generic term)
+atriplex hortensis|1
+(noun)|garden orache|mountain spinach|Atriplex hortensis|orach (generic term)|orache (generic term)
+atriplex hymenelytra|1
+(noun)|desert holly|Atriplex hymenelytra|saltbush (generic term)
+atriplex lentiformis|1
+(noun)|quail bush|quail brush|white thistle|Atriplex lentiformis|saltbush (generic term)
+atriplex mexicana|1
+(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot (generic term)
+atrium|2
+(noun)|chamber (generic term)
+(noun)|court (generic term)|courtyard (generic term)
+atrium cordis|1
+(noun)|atrium of the heart|atrium (generic term)
+atrium dextrum|1
+(noun)|right atrium|right atrium of the heart|atrium cordis (generic term)|atrium of the heart (generic term)
+atrium of the heart|1
+(noun)|atrium cordis|atrium (generic term)
+atrium sinistrum|1
+(noun)|left atrium|left atrium of the heart|atrium cordis (generic term)|atrium of the heart (generic term)
+atrocious|3
+(adj)|flagitious|grievous|heinous|monstrous|evil (similar term)
+(adj)|abominable|awful|dreadful|painful|terrible|unspeakable|bad (similar term)
+(adj)|frightful|horrifying|horrible|ugly|alarming (similar term)
+atrociously|2
+(adv)|terribly|awfully|abominably|abysmally|rottenly
+(adv)|outrageously
+atrociousness|1
+(noun)|atrocity|barbarity|barbarousness|heinousness|inhumaneness (generic term)|inhumanity (generic term)
+atrocity|2
+(noun)|atrociousness|barbarity|barbarousness|heinousness|inhumaneness (generic term)|inhumanity (generic term)
+(noun)|inhumanity|cruelty (generic term)|inhuman treatment (generic term)
+atromid-s|1
+(noun)|clofibrate|Atromid-S|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+atropa|1
+(noun)|Atropa|genus Atropa|asterid dicot genus (generic term)
+atropa belladonna|1
+(noun)|belladonna|belladonna plant|deadly nightshade|Atropa belladonna|herb (generic term)|herbaceous plant (generic term)
+atrophic|1
+(adj)|symptom (related term)
+atrophic arthritis|1
+(noun)|rheumatoid arthritis|rheumatism|arthritis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+atrophied|1
+(adj)|wasted|diminished|hypertrophied (antonym)
+atrophy|3
+(noun)|wasting|wasting away|symptom (generic term)
+(noun)|withering|weakening (generic term)
+(verb)|shrivel (generic term)|shrivel up (generic term)|shrink (generic term)|wither (generic term)
+atropidae|1
+(noun)|Atropidae|family Atropidae|arthropod family (generic term)
+atropine|1
+(noun)|alkaloid (generic term)|antispasmodic (generic term)|spasmolytic (generic term)|antispasmodic agent (generic term)|poison (generic term)|toxicant (generic term)|poisonous substance (generic term)|mydriatic (generic term)|mydriatic drug (generic term)|antidote (generic term)|counterpoison (generic term)
+atropos|1
+(noun)|Atropos|Greek deity (generic term)
+atrovent|1
+(noun)|ipratropium bromide|Atrovent|bronchodilator (generic term)
+atsugewi|2
+(noun)|Atsugewi|Hokan (generic term)|Hoka (generic term)
+(noun)|Atsugewi|Shastan (generic term)
+attacapa|1
+(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+attacapan|2
+(noun)|Atakapa|Attacapan|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Atakapa|Atakapan|Attacapa|Attacapan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+attach|5
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|detach (antonym)
+(verb)|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)|attach to (related term)
+(verb)|join (generic term)|conjoin (generic term)|attach to (related term)|detach (antonym)
+(verb)|bind|tie|bond|relate (generic term)
+(verb)|impound|sequester|confiscate|seize|take (generic term)
+attach to|2
+(verb)|accompany|come with|go with
+(verb)|inhere in|include (generic term)
+attachable|1
+(adj)|bindable (similar term)|bondable (similar term)|clip-on (similar term)|tie-on (similar term)|detachable (antonym)
+attache|2
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+(noun)|attache case|briefcase (generic term)
+attache case|1
+(noun)|attache|briefcase (generic term)
+attached|5
+(adj)|connected (similar term)
+(adj)|affiliated|connected|related (similar term)|related to (similar term)
+(adj)|detached (antonym)
+(adj)|sessile|vagile (antonym)
+(adj)|committed|affianced (similar term)|bespoken (similar term)|betrothed (similar term)|engaged (similar term)|pledged (similar term)|intended (similar term)|involved (similar term)|loving (related term)|unattached (antonym)
+attachment|7
+(noun)|fond regard|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+(noun)|addition (generic term)|add-on (generic term)|improver (generic term)
+(noun)|writ (generic term)|judicial writ (generic term)
+(noun)|bond|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|adherence|adhesion|support (generic term)
+(noun)|affixation|combination (generic term)|combining (generic term)|compounding (generic term)
+(noun)|fastening|joining (generic term)|connection (generic term)|connexion (generic term)
+attack|15
+(noun)|onslaught|onset|onrush|operation (generic term)|military operation (generic term)
+(noun)|affliction (generic term)
+(noun)|fire|flak|flack|blast|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|attempt|crime (generic term)|law-breaking (generic term)
+(noun)|turn (generic term)|play (generic term)
+(noun)|degeneration (generic term)|devolution (generic term)
+(noun)|approach|plan of attack|conceptualization (generic term)|conceptualisation (generic term)|formulation (generic term)
+(noun)|tone-beginning|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+(verb)|assail|contend (generic term)|fight (generic term)|struggle (generic term)|defend (antonym)
+(verb)|round|assail|lash out|snipe|assault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|aggress|act (generic term)|move (generic term)
+(verb)|assail|assault|set on
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|affect (generic term)
+attack aircraft|1
+(noun)|fighter|fighter aircraft|airplane (generic term)|aeroplane (generic term)|plane (generic term)|warplane (generic term)|military plane (generic term)
+attack aircraft carrier|1
+(noun)|aircraft carrier|carrier|flattop|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+attack dog|1
+(noun)|watchdog (generic term)|guard dog (generic term)
+attack submarine|1
+(noun)|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+attacker|1
+(noun)|aggressor|assailant|assaulter|wrongdoer (generic term)|offender (generic term)
+attacking|1
+(adj)|assaultive|offensive (similar term)
+attain|4
+(verb)|achieve|accomplish|reach|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|reach|hit|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|fall upon|strike|come upon|light upon|chance upon|come across|chance on|happen upon|discover|find (generic term)|regain (generic term)
+(verb)|reach|make|hit|arrive at|gain
+attainability|1
+(noun)|achievability|attainableness|possibility (generic term)|possibleness (generic term)
+attainable|1
+(adj)|come-at-able|possible (similar term)
+attainableness|1
+(noun)|achievability|attainability|possibility (generic term)|possibleness (generic term)
+attainder|1
+(noun)|civil death|cancellation (generic term)
+attained|1
+(adj)|earned (similar term)
+attainment|3
+(noun)|accomplishment (generic term)|achievement (generic term)
+(noun)|arrival (generic term)|reaching (generic term)
+(noun)|skill|accomplishment|acquirement|acquisition|ability (generic term)|power (generic term)
+attaint|2
+(verb)|dishonor|disgrace|dishonour|shame|honor (antonym)
+(verb)|condemn (generic term)
+attalea|1
+(noun)|Attalea|genus Attalea|monocot genus (generic term)|liliopsid genus (generic term)
+attalea funifera|1
+(noun)|piassava palm|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm (generic term)
+attar|1
+(noun)|atar|athar|ottar|essential oil (generic term)|volatile oil (generic term)
+attar of roses|1
+(noun)|rose oil|attar (generic term)|atar (generic term)|athar (generic term)|ottar (generic term)
+attemper|1
+(verb)|modify (generic term)
+attempt|4
+(noun)|effort|endeavor|endeavour|try|activity (generic term)
+(noun)|attack|crime (generic term)|law-breaking (generic term)
+(verb)|try|seek|essay|assay|act (generic term)|move (generic term)|try out (related term)
+(verb)|undertake|set about|initiate (generic term)|pioneer (generic term)
+attempted|1
+(adj)|unsuccessful (similar term)
+attempter|1
+(noun)|trier|essayer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+attend|5
+(verb)|go to|be (generic term)|miss (antonym)
+(verb)|take care|look|see|care (generic term)|give care (generic term)
+(verb)|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+(verb)|serve|attend to|wait on|assist|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|hang|advert|pay heed|give ear|listen (generic term)
+attend to|2
+(verb)|take to heart|mind (generic term)|bear in mind (generic term)|neglect (antonym)
+(verb)|serve|wait on|attend|assist|help (generic term)|assist (generic term)|aid (generic term)
+attendance|3
+(noun)|attending|group action (generic term)|nonattendance (antonym)
+(noun)|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+(noun)|company (generic term)
+attendance check|1
+(noun)|roll call (generic term)
+attendant|5
+(adj)|accompanying|concomitant|incidental|incidental to|related (similar term)|related to (similar term)
+(adj)|attending|in attendance|present (similar term)
+(noun)|attender|tender|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|attender|attendee|meeter|participant (generic term)
+(noun)|accompaniment|concomitant|co-occurrence|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+attended|2
+(adj)|accompanied|unaccompanied (antonym)
+(adj)|tended to|cared-for (similar term)
+attendee|1
+(noun)|attendant|attender|meeter|participant (generic term)
+attender|3
+(noun)|hearer|listener|auditor|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|attendant|tender|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|attendant|attendee|meeter|participant (generic term)
+attending|4
+(adj)|attendant|in attendance|present (similar term)
+(adj)|ministering|ministrant|helpful (similar term)
+(noun)|attention|basic cognitive process (generic term)|inattention (antonym)
+(noun)|attendance|group action (generic term)|nonattendance (antonym)
+attention|6
+(noun)|attending|basic cognitive process (generic term)|inattention (antonym)
+(noun)|care|aid|tending|work (generic term)
+(noun)|attraction (generic term)|attractor (generic term)|attracter (generic term)|attractive feature (generic term)|magnet (generic term)
+(noun)|courtesy (generic term)
+(noun)|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|stance (generic term)
+attention-getting|2
+(adj)|eye-catching|conspicuous (similar term)
+(adj)|catchy|appealing (similar term)
+attention deficit disorder|1
+(noun)|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+attention deficit hyperactivity disorder|1
+(noun)|attention deficit disorder|ADD|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+attention span|1
+(noun)|span (generic term)
+attentional|1
+(adj)|basic cognitive process (related term)
+attentive|2
+(adj)|captive (similar term)|absorbed (similar term)|engrossed (similar term)|enwrapped (similar term)|intent (similar term)|wrapped (similar term)|advertent (similar term)|heedful (similar term)|observant (similar term)|oversolicitous (similar term)|solicitous (similar term)|concerned (related term)|inattentive (antonym)
+(adj)|heedful|thoughtful|paying attention|heedless (antonym)
+attentively|1
+(adv)|with attention|paying attention
+attentiveness|3
+(noun)|heed|regard|paying attention|attention (generic term)|attending (generic term)|inattentiveness (antonym)
+(noun)|consideration (generic term)|considerateness (generic term)|thoughtfulness (generic term)
+(noun)|trait (generic term)|inattentiveness (antonym)
+attenuate|3
+(adj)|attenuated|faded|weakened|decreased (similar term)|reduced (similar term)
+(verb)|rarefy|weaken (generic term)
+(verb)|weaken (generic term)
+attenuated|2
+(adj)|decreased (similar term)|reduced (similar term)
+(adj)|attenuate|faded|weakened|decreased (similar term)|reduced (similar term)
+attenuation|2
+(noun)|fading|weakening (generic term)
+(noun)|weakness (generic term)
+attenuator|1
+(noun)|electrical device (generic term)
+attest|4
+(verb)|certify|manifest|demonstrate|evidence|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+(verb)|testify|take the stand|bear witness|declare (generic term)
+(verb)|show (generic term)
+attestant|2
+(noun)|witness|attestor|attestator|signer (generic term)|signatory (generic term)
+(noun)|attester|witness (generic term)|witnesser (generic term)|informant (generic term)
+attestation|2
+(noun)|testimony (generic term)
+(noun)|evidence (generic term)
+attestation report|1
+(noun)|attestation service|consulting service (generic term)
+attestation service|1
+(noun)|attestation report|consulting service (generic term)
+attestator|1
+(noun)|witness|attestant|attestor|signer (generic term)|signatory (generic term)
+attested|1
+(adj)|authenticated|documented|genuine (similar term)|echt (similar term)
+attester|1
+(noun)|attestant|witness (generic term)|witnesser (generic term)|informant (generic term)
+attestor|1
+(noun)|witness|attestant|attestator|signer (generic term)|signatory (generic term)
+attic|5
+(adj)|Attic|district|territory|territorial dominion|dominion (related term)
+(noun)|loft|garret|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|Attic|Classical Greek|Ancient Greek (generic term)
+(noun)|bean|bonce|noodle|noggin|dome|human head (generic term)
+(noun)|wall (generic term)
+attic fan|1
+(noun)|exhaust fan (generic term)
+attica|1
+(noun)|Attica|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+atticus|1
+(noun)|Atticus|genus Atticus|arthropod genus (generic term)
+atticus atlas|1
+(noun)|atlas moth|Atticus atlas|giant silkworm moth (generic term)|silkworm moth (generic term)
+attila|1
+(noun)|Attila|Attila the Hun|Scourge of God|Scourge of the Gods|king (generic term)|male monarch (generic term)|Rex (generic term)
+attila the hun|1
+(noun)|Attila|Attila the Hun|Scourge of God|Scourge of the Gods|king (generic term)|male monarch (generic term)|Rex (generic term)
+attire|2
+(noun)|garb|dress|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+attired|1
+(adj)|appareled|dressed|garbed|garmented|habilimented|robed|clothed (similar term)|clad (similar term)
+attitude|4
+(noun)|mental attitude|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|position|posture|bodily property (generic term)
+(noun)|affectation (generic term)|mannerism (generic term)|pose (generic term)|affectedness (generic term)
+(noun)|orientation (generic term)
+attitudinal|1
+(adj)|cognition|knowledge|noesis (related term)
+attitudinise|1
+(verb)|attitudinize|pose (generic term)|posture (generic term)
+attitudinize|1
+(verb)|attitudinise|pose (generic term)|posture (generic term)
+attlee|1
+(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman (generic term)|solon (generic term)|national leader (generic term)
+attorn|1
+(verb)|admit (generic term)|acknowledge (generic term)
+attorney|1
+(noun)|lawyer|professional (generic term)|professional person (generic term)
+attorney-client privilege|1
+(noun)|privilege (generic term)
+attorney-client relation|1
+(noun)|lawyer-client relation|fiduciary relation (generic term)
+attorney general|3
+(noun)|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|Attorney General|United States Attorney General|US Attorney General|secretary (generic term)
+(noun)|Attorney General|Attorney General of the United States|secretaryship (generic term)
+attorney general of the united states|1
+(noun)|Attorney General|Attorney General of the United States|secretaryship (generic term)
+attorneyship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+attosecond|1
+(noun)|time unit (generic term)|unit of time (generic term)
+attract|3
+(verb)|pull|pull in|draw|draw in|pull (generic term)|draw (generic term)|force (generic term)|repel (antonym)
+(verb)|pull (generic term)
+(verb)|appeal|repel (antonym)
+attractable|1
+(adj)|magnetic (similar term)|magnetized (similar term)|magnetised (similar term)
+attracter|3
+(noun)|drawing card|draw|attraction|attractor|entertainer (generic term)
+(noun)|attractor|point (generic term)
+(noun)|attraction|attractor|attractive feature|magnet|feature (generic term)|characteristic (generic term)
+attraction|5
+(noun)|attractive force|force (generic term)|repulsion (antonym)
+(noun)|show (generic term)
+(noun)|attractiveness|quality (generic term)
+(noun)|attractor|attracter|attractive feature|magnet|feature (generic term)|characteristic (generic term)
+(noun)|drawing card|draw|attractor|attracter|entertainer (generic term)
+attractive|3
+(adj)|bewitching (similar term)|captivating (similar term)|enchanting (similar term)|enthralling (similar term)|entrancing (similar term)|fascinating (similar term)|charismatic (similar term)|magnetic (similar term)|cunning (similar term)|cute (similar term)|dinky (similar term)|engaging (similar term)|piquant (similar term)|fetching (similar term)|taking (similar term)|winning (similar term)|hypnotic (similar term)|mesmeric (similar term)|mesmerizing (similar term)|spellbinding (similar term)|irresistible (similar term)|personable (similar term)|photogenic (similar term)|prepossessing (similar term)|winsome (similar term)|beautiful (related term)|inviting (related term)|pleasing (related term)|seductive (related term)|unattractive (antonym)
+(adj)|appealing (similar term)
+(adj)|magnetic|repulsive (antonym)
+attractive feature|1
+(noun)|attraction|attractor|attracter|magnet|feature (generic term)|characteristic (generic term)
+attractive force|1
+(noun)|attraction|force (generic term)|repulsion (antonym)
+attractive nuisance|1
+(noun)|nuisance (generic term)
+attractively|1
+(adv)|beautifully|unattractively (antonym)
+attractiveness|2
+(noun)|attraction|quality (generic term)
+(noun)|beauty (generic term)|unattractiveness (antonym)
+attractor|3
+(noun)|drawing card|draw|attraction|attracter|entertainer (generic term)
+(noun)|attracter|point (generic term)
+(noun)|attraction|attracter|attractive feature|magnet|feature (generic term)|characteristic (generic term)
+attributable|1
+(adj)|ascribable (similar term)|due to (similar term)|imputable (similar term)|referable (similar term)|credited (similar term)|traceable (similar term)|unattributable (antonym)
+attribute|4
+(noun)|property|dimension|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|abstraction (generic term)
+(verb)|impute|ascribe|assign|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|assign|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+attribution|1
+(noun)|ascription|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+attributive|1
+(adj)|prenominal|attributive genitive (similar term)|predicative (antonym)
+attributive genitive|1
+(adj)|attributive (similar term)|prenominal (similar term)
+attrited|1
+(adj)|worn (similar term)
+attrition|5
+(noun)|abrasion|corrasion|detrition|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+(noun)|grinding|abrasion|detrition|friction (generic term)|rubbing (generic term)
+(noun)|contrition|contriteness|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+(noun)|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+(noun)|friction (generic term)|detrition (generic term)|rubbing (generic term)
+attrition rate|1
+(noun)|rate of attrition|rate (generic term)
+attritional|1
+(adj)|decrease|lessening|drop-off (related term)
+attune|1
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+attuned|2
+(adj)|tuned|adjusted (similar term)
+(adj)|keyed|tuned|adjusted (similar term)
+atypical|2
+(adj)|untypical|unrepresentative (similar term)|abnormal (related term)|uncharacteristic (related term)|uncharacteristic of (related term)|typical (antonym)
+(adj)|irregular|abnormal (similar term)
+atypical pneumonia|1
+(noun)|primary atypical pneumonia|mycoplasmal pneumonia|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+atypicality|1
+(noun)|untypicality|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)|typicality (antonym)
+atypically|1
+(adv)|untypically|typically (antonym)
+au|2
+(noun)|gold|Au|atomic number 79|noble metal (generic term)
+(noun)|Astronomical Unit|AU|astronomy unit (generic term)
+au courant|1
+(adj)|abreast|au fait|up on|informed (similar term)
+au fait|1
+(adj)|abreast|au courant|up on|informed (similar term)
+au fond|1
+(adv)|basically|fundamentally|essentially|in essence
+au gratin|1
+(adj)|cooked (similar term)
+au jus|1
+(adj)|juicy (similar term)
+au naturel|1
+(adj)|bare|naked|nude|unclothed (similar term)
+au pair|1
+(noun)|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+au pair girl|1
+(noun)|au pair (generic term)
+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 (generic term)|word of farewell (generic term)
+auberge|1
+(noun)|hostel|hostelry|inn|lodge|hotel (generic term)
+aubergine|2
+(noun)|eggplant|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+(noun)|eggplant|mad apple|solanaceous vegetable (generic term)
+auburn|1
+(adj)|chromatic (similar term)
+auc|1
+(noun)|United Self-Defense Force of Colombia|United Self-Defense Group of Colombia|Autodefensas Unidas de Colombia|AUC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+auchincloss|1
+(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer (generic term)|author (generic term)
+auckland|1
+(noun)|Auckland|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+auction|3
+(noun)|auction bridge|bridge (generic term)
+(noun)|auction sale|vendue|sale (generic term)
+(verb)|auction off|auctioneer|sell (generic term)
+auction block|1
+(noun)|block|platform (generic term)
+auction bridge|1
+(noun)|auction|bridge (generic term)
+auction house|1
+(noun)|firm (generic term)|house (generic term)|business firm (generic term)
+auction off|1
+(verb)|auction|auctioneer|sell (generic term)
+auction pitch|1
+(noun)|pitch|all fours (generic term)|high-low-jack (generic term)
+auction sale|1
+(noun)|auction|vendue|sale (generic term)
+auctioneer|2
+(noun)|agent (generic term)|factor (generic term)|broker (generic term)
+(verb)|auction|auction off|sell (generic term)
+auctorial|1
+(adj)|authorial|communicator (related term)
+aucuba|1
+(noun)|Aucuba|genus Aucuba|rosid dicot genus (generic term)
+audacious|3
+(adj)|brave|dauntless|fearless|intrepid|unfearing|bold (similar term)
+(adj)|barefaced|bodacious|bald-faced|brassy|brazen|brazen-faced|insolent|unashamed (similar term)
+(adj)|daring|venturesome|venturous|adventurous (similar term)|adventuresome (similar term)
+audaciousness|2
+(noun)|audacity|temerity|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+(noun)|audacity|boldness (generic term)|nerve (generic term)|brass (generic term)|face (generic term)|cheek (generic term)
+audacity|2
+(noun)|audaciousness|temerity|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+(noun)|audaciousness|boldness (generic term)|nerve (generic term)|brass (generic term)|face (generic term)|cheek (generic term)
+audad|1
+(noun)|aoudad|arui|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep (generic term)
+auden|1
+(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet (generic term)
+audenesque|1
+(adj)|Audenesque|poet (related term)
+audibility|1
+(noun)|audibleness|perceptibility (generic term)|inaudibility (antonym)
+audible|2
+(adj)|hearable|clunky (similar term)|sonic (similar term)|sounding (similar term)|loud (related term)|perceptible (related term)|inaudible (antonym)
+(noun)|football play (generic term)
+audibleness|1
+(noun)|audibility|perceptibility (generic term)|inaudibility (antonym)
+audibly|1
+(adv)|inaudibly (antonym)
+audience|4
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|multitude (generic term)|masses (generic term)|mass (generic term)|hoi polloi (generic term)|people (generic term)|the great unwashed (generic term)
+(noun)|hearing|opportunity (generic term)|chance (generic term)
+(noun)|consultation|interview|conference (generic term)|group discussion (generic term)
+audile|2
+(adj)|auditory|auditive|modality|sense modality|sensory system|exteroception (related term)
+(noun)|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+audio|3
+(noun)|sound|auditory communication (generic term)
+(noun)|audio frequency|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+audio-lingual|1
+(adj)|communication (related term)
+audio amplifier|1
+(noun)|amplifier (generic term)
+audio cd|1
+(noun)|audio CD|audio compact disc|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+audio compact disc|1
+(noun)|audio CD|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+audio frequency|1
+(noun)|audio|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+audio lingual acquisition|1
+(noun)|language learning (generic term)
+audio recording|1
+(noun)|sound recording|recording (generic term)
+audio system|1
+(noun)|sound system|electronic equipment (generic term)|system (generic term)
+audiocassette|1
+(noun)|cassette (generic term)
+audiogram|1
+(noun)|representation (generic term)
+audiology|1
+(noun)|audiometry|otology (generic term)
+audiometer|1
+(noun)|sonometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+audiometric|1
+(adj)|measurement|measuring|measure|mensuration (related term)
+audiometry|2
+(noun)|audiology|otology (generic term)
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+audiotape|2
+(noun)|tape (generic term)|tape recording (generic term)|taping (generic term)|sound recording (generic term)|audio recording (generic term)
+(noun)|magnetic tape (generic term)|mag tape (generic term)|tape (generic term)
+audiovisual|2
+(adj)|teaching aid (related term)
+(noun)|audiovisual aid|teaching aid (generic term)
+audiovisual aid|1
+(noun)|audiovisual|teaching aid (generic term)
+audit|4
+(noun)|audited account|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+(noun)|examination (generic term)|scrutiny (generic term)
+(verb)|scrutinize|scrutinise|inspect|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+audit program|1
+(noun)|audit programme|plan (generic term)|program (generic term)|programme (generic term)
+audit programme|1
+(noun)|audit program|plan (generic term)|program (generic term)|programme (generic term)
+audited account|1
+(noun)|audit|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+audition|3
+(noun)|hearing|auditory sense|sense of hearing|auditory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+(noun)|tryout|test (generic term)|trial (generic term)|run (generic term)
+(verb)|try out|perform (generic term)
+auditive|1
+(adj)|auditory|audile|modality|sense modality|sensory system|exteroception (related term)
+auditor|3
+(noun)|hearer|listener|attender|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|accountant (generic term)|comptroller (generic term)|controller (generic term)
+auditorium|1
+(noun)|area (generic term)
+auditory|1
+(adj)|audile|auditive|modality|sense modality|sensory system|exteroception (related term)
+auditory agnosia|1
+(noun)|agnosia (generic term)
+auditory aphasia|1
+(noun)|acoustic aphasia|word deafness|aphasia (generic term)
+auditory apparatus|1
+(noun)|apparatus (generic term)
+auditory area|1
+(noun)|auditory cortex|cortical area (generic term)|cortical region (generic term)
+auditory canal|1
+(noun)|auditory meatus|acoustic meatus|ear canal|external auditory canal|meatus (generic term)
+auditory center|1
+(noun)|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+auditory communication|1
+(noun)|communication (generic term)
+auditory cortex|1
+(noun)|auditory area|cortical area (generic term)|cortical region (generic term)
+auditory hallucination|1
+(noun)|acousma|hallucination (generic term)
+auditory hyperesthesia|1
+(noun)|hyperacusis|hyperacusia|hearing impairment (generic term)|hearing disorder (generic term)
+auditory image|1
+(noun)|image (generic term)|mental image (generic term)
+auditory meatus|1
+(noun)|acoustic meatus|ear canal|auditory canal|external auditory canal|meatus (generic term)
+auditory modality|1
+(noun)|hearing|audition|auditory sense|sense of hearing|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+auditory nerve|1
+(noun)|acoustic nerve|vestibulocochlear nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve (generic term)
+auditory ossicle|1
+(noun)|ossicle (generic term)|bonelet (generic term)|ossiculum (generic term)
+auditory perception|1
+(noun)|sound perception|perception (generic term)
+auditory sensation|1
+(noun)|sound|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+auditory sense|1
+(noun)|hearing|audition|sense of hearing|auditory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+auditory system|1
+(noun)|sensory system (generic term)
+auditory tube|1
+(noun)|Eustachian tube|salpinx (generic term)
+audubon|1
+(noun)|Audubon|John James Audubon|ornithologist (generic term)|bird watcher (generic term)|artist (generic term)|creative person (generic term)
+audubon's caracara|1
+(noun)|Audubon's caracara|Polyborus cheriway audubonii|caracara (generic term)
+audubon's warbler|1
+(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler (generic term)|wood warbler (generic term)
+audubon warbler|1
+(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler (generic term)|wood warbler (generic term)
+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 (generic term)|word of farewell (generic term)
+aug|1
+(noun)|August|Aug|Gregorian calendar month (generic term)
+augean|1
+(adj)|Augean|dirty (similar term)|soiled (similar term)|unclean (similar term)
+augean stables|1
+(noun)|Augean stables|stable (generic term)|stalls (generic term)|horse barn (generic term)
+augeas|1
+(noun)|Augeas|mythical being (generic term)
+augend|1
+(noun)|number (generic term)
+auger|2
+(noun)|plumber's snake|snake (generic term)|hand tool (generic term)
+(noun)|gimlet|screw auger|wimble|drill (generic term)
+aught|1
+(noun)|nothing|nil|nix|nada|null|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+augite|1
+(noun)|mineral (generic term)
+augitic|1
+(adj)|mineral (related term)
+augment|2
+(verb)|increase (generic term)
+(verb)|grow (generic term)
+augmentation|3
+(noun)|increase (generic term)
+(noun)|statement (generic term)|diminution (antonym)
+(noun)|increase (generic term)|step-up (generic term)
+augmentative|2
+(adj)|increasing (similar term)
+(adj)|enhancive|intensifying (similar term)
+augmented|1
+(adj)|increased (similar term)
+augmentin|1
+(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+augsburg confession|1
+(noun)|Augsburg Confession|confession (generic term)
+augur|3
+(noun)|auspex|prophet (generic term)|prophesier (generic term)|oracle (generic term)|seer (generic term)|vaticinator (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+(verb)|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+augury|1
+(noun)|sign|foretoken|preindication|experience (generic term)
+august|3
+(adj)|grand|lordly|noble (similar term)
+(adj)|revered|venerable|honorable (similar term)|honourable (similar term)
+(noun)|August|Aug|Gregorian calendar month (generic term)
+august 1|1
+(noun)|Lammas|Lammas Day|August 1|quarter day (generic term)
+august 15|1
+(noun)|Assumption|Assumption of Mary|August 15|holy day of obligation (generic term)
+august 6|1
+(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day (generic term)
+august f. mobius|1
+(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician (generic term)
+august ferdinand mobius|1
+(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician (generic term)
+august friedrich leopold weismann|1
+(noun)|Weismann|August Friedrich Leopold Weismann|geneticist (generic term)
+august plum|1
+(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum (generic term)|wild plum tree (generic term)
+august strindberg|1
+(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist (generic term)|playwright (generic term)
+august wilhelm von hoffmann|1
+(noun)|Hoffmann|August Wilhelm von Hoffmann|chemist (generic term)
+augusta|2
+(noun)|Augusta|capital of Maine|state capital (generic term)
+(noun)|Augusta|city (generic term)|metropolis (generic term)|urban center (generic term)
+augustan|1
+(adj)|Augustan|statesman|solon|national leader|Roman Emperor|Emperor of Rome (related term)
+auguste comte|1
+(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher (generic term)
+auguste rodin|1
+(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+augustin eugene scribe|1
+(noun)|Scribe|Augustin Eugene Scribe|dramatist (generic term)|playwright (generic term)
+augustin jean fresnel|1
+(noun)|Fresnel|Augustin Jean Fresnel|physicist (generic term)
+augustine|1
+(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+augustine of hippo|1
+(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+augustinian|1
+(noun)|Augustinian|friar (generic term)|mendicant (generic term)
+augustinian canons|1
+(noun)|Augustinian Canons|Augustinian order (generic term)
+augustinian hermits|1
+(noun)|Augustinian Hermits|Augustinian order (generic term)
+augustinian order|1
+(noun)|Augustinian order|order (generic term)|monastic order (generic term)
+augustus|1
+(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman (generic term)|solon (generic term)|national leader (generic term)|Roman Emperor (generic term)|Emperor of Rome (generic term)
+augustus welby northmore pugin|1
+(noun)|Pugin|Augustus Welby Northmore Pugin|architect (generic term)|designer (generic term)
+auk|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+auklet|1
+(noun)|auk (generic term)
+aulacorhyncus|1
+(noun)|Aulacorhyncus|genus Aulacorhyncus|bird genus (generic term)
+auld|1
+(adj)|old (similar term)
+auld langsyne|1
+(noun)|langsyne|old times|good old days|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+aulostomidae|1
+(noun)|Aulostomidae|family Aulostomidae|fish family (generic term)
+aulostomus|1
+(noun)|Aulostomus|genus Aulostomus|fish genus (generic term)
+aulostomus maculatus|1
+(noun)|trumpetfish|Aulostomus maculatus|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+aum|1
+(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+aum shinrikyo|1
+(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+aunt|1
+(noun)|auntie|aunty|kinswoman (generic term)|uncle (antonym)
+auntie|1
+(noun)|aunt|aunty|kinswoman (generic term)|uncle (antonym)
+aunty|1
+(noun)|aunt|auntie|kinswoman (generic term)|uncle (antonym)
+aura|3
+(noun)|symptom (generic term)
+(noun)|aureole|halo|nimbus|glory|gloriole|light (generic term)|lightness (generic term)
+(noun)|air|atmosphere|quality (generic term)
+aural|2
+(adj)|sense organ|sensory receptor|receptor (related term)
+(adj)|quality (related term)
+aureate|2
+(adj)|florid|flamboyant|fancy (similar term)
+(adj)|gilded|gilt|gold|golden|chromatic (similar term)
+aurelius|1
+(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+aureolaria|1
+(noun)|Aureolaria|genus Aureolaria|asterid dicot genus (generic term)
+aureolaria pedicularia|1
+(noun)|false foxglove|Aureolaria pedicularia|Gerardia pedicularia|herb (generic term)|herbaceous plant (generic term)
+aureolaria virginica|1
+(noun)|false foxglove|Aureolaria virginica|Gerardia virginica|herb (generic term)|herbaceous plant (generic term)
+aureole|2
+(noun)|corona|radiance (generic term)|glow (generic term)|glowing (generic term)
+(noun)|aura|halo|nimbus|glory|gloriole|light (generic term)|lightness (generic term)
+aureomycin|1
+(noun)|chlortetracycline|Aureomycin|antibiotic (generic term)|antibiotic drug (generic term)
+auric|1
+(adj)|aurous|noble metal (related term)
+auricle|2
+(noun)|atrial auricle|auricula atrii|pouch (generic term)|pocket (generic term)
+(noun)|pinna|ear|cartilaginous structure (generic term)
+auricula|2
+(noun)|bear's ear|Primula auricula|primrose (generic term)|primula (generic term)
+(noun)|auricular appendage|auricular appendix|pouch (generic term)|pocket (generic term)
+auricula atrii|1
+(noun)|auricle|atrial auricle|pouch (generic term)|pocket (generic term)
+auricular|3
+(adj)|otic|cartilaginous structure (related term)|sense organ|sensory receptor|receptor (related term)
+(adj)|cartilaginous structure (related term)
+(adj)|pouch|pocket (related term)
+auricular appendage|1
+(noun)|auricula|auricular appendix|pouch (generic term)|pocket (generic term)
+auricular appendix|1
+(noun)|auricula|auricular appendage|pouch (generic term)|pocket (generic term)
+auricular artery|1
+(noun)|arteria auricularis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+auricular point|1
+(noun)|auriculare|craniometric point (generic term)
+auricular vein|1
+(noun)|vena auricularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+auriculare|1
+(noun)|auricular point|craniometric point (generic term)
+auricularia|1
+(noun)|Auricularia|genus Auricularia|fungus genus (generic term)
+auricularia auricula|1
+(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus (generic term)
+auriculariaceae|1
+(noun)|Auriculariaceae|family Auriculariaceae|fungus family (generic term)
+auriculariales|1
+(noun)|Auriculariales|order Auriculariales|fungus order (generic term)
+auriculate|1
+(adj)|auriculated|eared (similar term)
+auriculated|1
+(adj)|auriculate|eared (similar term)
+auriculoventricular|1
+(adj)|atrioventricular|pouch|pocket (related term)|chamber (related term)
+auriferous|1
+(adj)|gold-bearing|metallic (similar term)|metal (similar term)
+auriform|1
+(adj)|ear-shaped|ear-like|rounded (similar term)
+aurify|2
+(verb)|transform (generic term)|transmute (generic term)|metamorphose (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+auriga|1
+(noun)|Auriga|Charioteer|constellation (generic term)
+auriparus|1
+(noun)|Auriparus|genus Auriparus|bird genus (generic term)
+auriparus flaviceps|1
+(noun)|verdin|Auriparus flaviceps|titmouse (generic term)|tit (generic term)
+auriscope|1
+(noun)|otoscope|auroscope|medical instrument (generic term)
+aurochs|2
+(noun)|wisent|Bison bonasus|bison (generic term)
+(noun)|urus|Bos primigenius|ox (generic term)|wild ox (generic term)
+aurora|3
+(noun)|dawn|dawning|morning|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+(noun)|atmospheric phenomenon (generic term)
+(noun)|Aurora|Roman deity (generic term)
+aurora australis|1
+(noun)|southern lights|aurora (generic term)
+aurora borealis|1
+(noun)|northern lights|aurora (generic term)
+auroral|2
+(adj)|atmospheric phenomenon (related term)
+(adj)|aurorean|hour|time of day (related term)
+aurorean|1
+(adj)|auroral|hour|time of day (related term)
+auroscope|1
+(noun)|otoscope|auriscope|medical instrument (generic term)
+aurous|1
+(adj)|auric|noble metal (related term)
+auschwitz|1
+(noun)|Auschwitz|concentration camp (generic term)|stockade (generic term)
+auscultate|1
+(verb)|examine (generic term)|see (generic term)
+auscultation|1
+(noun)|listening (generic term)|hearing (generic term)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+auscultatory|1
+(adj)|listening|hearing|diagnostic procedure|diagnostic technique (related term)
+auspex|1
+(noun)|augur|prophet (generic term)|prophesier (generic term)|oracle (generic term)|seer (generic term)|vaticinator (generic term)
+auspicate|2
+(verb)|bode|portend|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+auspice|1
+(noun)|omen (generic term)|portent (generic term)|presage (generic term)|prognostic (generic term)|prognostication (generic term)|prodigy (generic term)
+auspices|1
+(noun)|protection|aegis|endorsement (generic term)|indorsement (generic term)
+auspicious|1
+(adj)|bright (similar term)|promising (similar term)|fortunate (similar term)|hopeful (similar term)|rosy (similar term)|propitious (related term)|inauspicious (antonym)
+auspiciously|1
+(adv)|propitiously|unpropitiously (antonym)|inauspiciously (antonym)
+auspiciousness|1
+(noun)|propitiousness|favorableness (generic term)|favourableness (generic term)|advantageousness (generic term)|positivity (generic term)|positiveness (generic term)|profitableness (generic term)|unpropitiousness (antonym)|inauspiciousness (antonym)
+aussie|1
+(noun)|Australian|Aussie|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+austen|1
+(noun)|Austen|Jane Austen|writer (generic term)|author (generic term)
+austenite|1
+(noun)|solid solution (generic term)|primary solid solution (generic term)
+austenitic|1
+(adj)|solid solution|primary solid solution (related term)
+austenitic manganese steel|1
+(noun)|manganese steel|alloy steel (generic term)
+austenitic steel|1
+(noun)|steel (generic term)
+austere|3
+(adj)|severe|stark|stern|plain (similar term)
+(adj)|stern|nonindulgent (similar term)|strict (similar term)
+(adj)|ascetic|ascetical|spartan|abstemious (similar term)
+austereness|1
+(noun)|severity|severeness|plainness (generic term)
+austerity|1
+(noun)|asceticism|nonindulgence|self-discipline (generic term)|self-denial (generic term)
+austerlitz|2
+(noun)|Austerlitz|town (generic term)
+(noun)|Austerlitz|battle of Austerlitz|pitched battle (generic term)
+austin|1
+(noun)|Austin|capital of Texas|state capital (generic term)
+austin friar|1
+(noun)|Austin Friar|Augustinian (generic term)
+austin friars|1
+(noun)|Austin Friars|Augustinian order (generic term)
+austral|3
+(adj)|cardinal compass point (related term)
+(adj)|southern (similar term)
+(noun)|Argentine monetary unit (generic term)
+austral islands|1
+(noun)|Tubuai Islands|Austral Islands|archipelago (generic term)
+australasia|1
+(noun)|Australasia|archipelago (generic term)
+australasian|1
+(adj)|Australasian|archipelago (related term)
+australia|2
+(noun)|Australia|Commonwealth of Australia|country (generic term)|state (generic term)|land (generic term)
+(noun)|Australia|continent (generic term)
+australian|3
+(adj)|Australian|continent (related term)
+(noun)|Australian|Aussie|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Australian|Aboriginal Australian|Austronesian (generic term)|Austronesian language (generic term)
+australian aborigine|1
+(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian (generic term)|Aussie (generic term)|ethnic group (generic term)|ethnos (generic term)
+australian alps|1
+(noun)|Australian Alps|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+australian blacksnake|1
+(noun)|Australian blacksnake|Pseudechis porphyriacus|elapid (generic term)|elapid snake (generic term)
+australian capital|1
+(noun)|Canberra|Australian capital|capital of Australia|national capital (generic term)
+australian chestnut|1
+(noun)|Moreton Bay chestnut|Australian chestnut|bean tree (generic term)
+australian cockroach|1
+(noun)|Australian cockroach|Periplaneta australasiae|cockroach (generic term)|roach (generic term)
+australian coral snake|1
+(noun)|Australian coral snake|Rhynchoelaps australis|coral snake (generic term)|Old World coral snake (generic term)
+australian crawl|1
+(noun)|crawl|front crawl|Australian crawl|swimming stroke (generic term)
+australian desert|1
+(noun)|Australian Desert|Great Australian Desert|desert (generic term)
+australian dollar|1
+(noun)|Australian dollar|dollar (generic term)
+australian grass tree|2
+(noun)|grass tree|Australian grass tree|arborescent plant (generic term)
+(noun)|Australian grass tree|Richea dracophylla|Australian heath (generic term)
+australian hare's foot|1
+(noun)|Australian hare's foot|Davallia pyxidata|hare's-foot fern (generic term)
+australian heath|1
+(noun)|Australian heath|shrub (generic term)|bush (generic term)
+australian honeysuckle|1
+(noun)|honeysuckle|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia (generic term)
+australian magpie|1
+(noun)|Australian magpie|oscine (generic term)|oscine bird (generic term)
+australian nettle|1
+(noun)|Australian nettle|Australian nettle tree|tree (generic term)
+australian nettle tree|1
+(noun)|Australian nettle|Australian nettle tree|tree (generic term)
+australian pea|1
+(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine (generic term)
+australian pine|1
+(noun)|Australian pine|Casuarina equisetfolia|beefwood (generic term)
+australian pitcher plant|1
+(noun)|Australian pitcher plant|Cephalotus follicularis|herb (generic term)|herbaceous plant (generic term)
+australian reed grass|1
+(noun)|Australian reed grass|Calamagrostic quadriseta|reed grass (generic term)
+australian sea lion|1
+(noun)|Australian sea lion|Zalophus lobatus|sea lion (generic term)
+australian state|1
+(noun)|Australian state|state (generic term)|province (generic term)
+australian stilt|1
+(noun)|stilt|Australian stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+australian sumac|1
+(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood (generic term)
+australian sword lily|1
+(noun)|kangaroo paw|kangaroo's paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+australian terrier|1
+(noun)|Australian terrier|terrier (generic term)
+australian turtledove|1
+(noun)|Australian turtledove|turtledove|Stictopelia cuneata|dove (generic term)
+australopithecine|2
+(adj)|mammal genus (related term)
+(noun)|hominid (generic term)
+australopithecus|1
+(noun)|genus Australopithecus|Australopithecus|mammal genus (generic term)
+australopithecus afarensis|1
+(noun)|Australopithecus afarensis|australopithecine (generic term)
+australopithecus africanus|1
+(noun)|Australopithecus africanus|australopithecine (generic term)
+australopithecus boisei|1
+(noun)|Australopithecus boisei|australopithecine (generic term)
+australopithecus robustus|1
+(noun)|Australopithecus robustus|australopithecine (generic term)
+austria|1
+(noun)|Austria|Republic of Austria|Oesterreich|European country (generic term)|European nation (generic term)
+austria-hungary|1
+(noun)|Austria-Hungary|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+austrian|2
+(adj)|Austrian|European country|European nation (related term)
+(noun)|Austrian|European (generic term)
+austrian capital|1
+(noun)|Vienna|Austrian capital|capital of Austria|national capital (generic term)
+austrian monetary unit|1
+(noun)|Austrian monetary unit|monetary unit (generic term)
+austrian schilling|1
+(noun)|schilling|Austrian schilling|Austrian monetary unit (generic term)
+austrian winter pea|1
+(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea (generic term)|pea plant (generic term)
+austro-asiatic|1
+(noun)|Austro-Asiatic|Austro-Asiatic language|Munda-Mon-Khmer|natural language (generic term)|tongue (generic term)
+austro-asiatic language|1
+(noun)|Austro-Asiatic|Austro-Asiatic language|Munda-Mon-Khmer|natural language (generic term)|tongue (generic term)
+austrocedrus|1
+(noun)|Austrocedrus|genus Austrocedrus|gymnosperm genus (generic term)
+austrocedrus chilensis|1
+(noun)|Chilean cedar|Austrocedrus chilensis|cedar (generic term)|cedar tree (generic term)
+austronesia|1
+(noun)|Austronesia|archipelago (generic term)
+austronesian|3
+(adj)|Austronesian|archipelago (related term)
+(noun)|Austronesian|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Austronesian|Austronesian language|natural language (generic term)|tongue (generic term)
+austronesian language|1
+(noun)|Austronesian|Austronesian language|natural language (generic term)|tongue (generic term)
+austrotaxus|1
+(noun)|Austrotaxus|genus Austrotaxus|gymnosperm genus (generic term)
+austrotaxus spicata|1
+(noun)|New Caledonian yew|Austrotaxus spicata|yew (generic term)
+autacoid|1
+(noun)|autocoid|secretion (generic term)
+autacoidal|1
+(adj)|secretion (related term)
+autarchic|1
+(adj)|autarchical|autarkical|political system|form of government (related term)
+autarchical|1
+(adj)|autarchic|autarkical|political system|form of government (related term)
+autarchy|2
+(noun)|autarky|independence (generic term)|independency (generic term)
+(noun)|autocracy|political system (generic term)|form of government (generic term)
+autarkic|1
+(adj)|autarkical|independent (similar term)
+autarkical|2
+(adj)|autarchic|autarchical|political system|form of government (related term)
+(adj)|autarkic|independent (similar term)
+autarky|1
+(noun)|autarchy|independence (generic term)|independency (generic term)
+auteur|1
+(noun)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+authentic|2
+(adj)|reliable|trustworthy (similar term)|trusty (similar term)
+(adj)|bona fide|unquestionable|veritable|genuine (similar term)|echt (similar term)
+authentically|1
+(adv)|genuinely
+authenticate|1
+(verb)|attest (generic term)|certify (generic term)|manifest (generic term)|demonstrate (generic term)|evidence (generic term)
+authenticated|1
+(adj)|attested|documented|genuine (similar term)|echt (similar term)
+authentication|2
+(noun)|hallmark|assay-mark|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|certification|validation (generic term)|proof (generic term)|substantiation (generic term)
+authenticator|1
+(noun)|appraiser|critic (generic term)
+authenticity|1
+(noun)|genuineness|legitimacy|credibility (generic term)|credibleness (generic term)|believability (generic term)
+author|3
+(noun)|writer|communicator (generic term)
+(noun)|generator|source|maker (generic term)|shaper (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+author's name|1
+(noun)|writer's name|name (generic term)
+authoress|1
+(noun)|writer (generic term)|author (generic term)
+authorial|1
+(adj)|auctorial|communicator (related term)
+authoring language|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+authorisation|4
+(noun)|mandate|authorization|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|authority|authorization|potency|dominance|say-so|control (generic term)
+(noun)|authority|authorization|sanction|permission (generic term)
+(noun)|authorization|empowerment|management (generic term)|direction (generic term)
+authorise|2
+(verb)|empower|authorize|appoint (generic term)|charge (generic term)
+(verb)|authorize|pass|clear|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+authorised|2
+(adj)|authorized|accredited (similar term)|commissioned (similar term)|licensed (similar term)|licenced (similar term)|approved (similar term)|sanctioned (similar term)|canonized (similar term)|canonised (similar term)|glorified (similar term)|empowered (similar term)|sceptered (similar term)|sceptred (similar term)|lawful (related term)|legitimate (related term)|official (related term)|unauthorized (antonym)
+(adj)|authoritative|authorized|official (similar term)
+authoriser|1
+(noun)|authorizer|authority (generic term)
+authoritarian|4
+(adj)|autocratic|dictatorial|despotic|tyrannical|undemocratic (similar term)
+(adj)|dictatorial|unpermissive (similar term)
+(adj)|dictatorial|overbearing|domineering (similar term)
+(noun)|dictator|oppressor (generic term)
+authoritarianism|1
+(noun)|dictatorship|absolutism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+authoritative|3
+(adj)|important|influential (similar term)
+(adj)|classical|definitive|standard (similar term)
+(adj)|authorized|authorised|official (similar term)
+authoritatively|1
+(adv)|magisterially
+authorities|1
+(noun)|government|regime|polity (generic term)
+authority|7
+(noun)|authorization|authorisation|potency|dominance|say-so|control (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|expert (generic term)
+(noun)|assurance|self-assurance|confidence|self-confidence|sureness|certainty (generic term)
+(noun)|agency|federal agency|government agency|bureau|office|administrative unit (generic term)|administrative body (generic term)
+(noun)|authorization|authorisation|sanction|permission (generic term)
+(noun)|book (generic term)
+authority figure|1
+(noun)|authority (generic term)
+authorization|4
+(noun)|mandate|authorisation|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|authority|authorisation|potency|dominance|say-so|control (generic term)
+(noun)|authority|authorisation|sanction|permission (generic term)
+(noun)|authorisation|empowerment|management (generic term)|direction (generic term)
+authorize|2
+(verb)|authorise|pass|clear|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|empower|authorise|appoint (generic term)|charge (generic term)
+authorized|2
+(adj)|authorised|accredited (similar term)|commissioned (similar term)|licensed (similar term)|licenced (similar term)|approved (similar term)|sanctioned (similar term)|canonized (similar term)|canonised (similar term)|glorified (similar term)|empowered (similar term)|sceptered (similar term)|sceptred (similar term)|lawful (related term)|legitimate (related term)|official (related term)|unauthorized (antonym)
+(adj)|authoritative|authorised|official (similar term)
+authorized shares|1
+(noun)|authorized stock|capital stock|stock (generic term)
+authorized stock|1
+(noun)|authorized shares|capital stock|stock (generic term)
+authorized version|1
+(noun)|Authorized Version|King James Version|King James Bible|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+authorizer|1
+(noun)|authoriser|authority (generic term)
+authorship|2
+(noun)|writing|composition|penning|verbal creation (generic term)
+(noun)|paternity|initiation (generic term)|founding (generic term)|foundation (generic term)|institution (generic term)|origination (generic term)|creation (generic term)|innovation (generic term)|introduction (generic term)|instauration (generic term)
+autism|1
+(noun)|syndrome (generic term)
+autistic|1
+(adj)|ill (similar term)|sick (similar term)
+auto|1
+(noun)|car|automobile|machine|motorcar|motor vehicle (generic term)|automotive vehicle (generic term)
+auto-changer|1
+(noun)|record changer|changer|mechanical device (generic term)
+auto-da-fe|1
+(noun)|burning (generic term)|burning at the stake (generic term)
+auto-mechanic|1
+(noun)|automobile mechanic|car-mechanic|mechanic|grease monkey|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+auto accessory|1
+(noun)|accessory (generic term)|appurtenance (generic term)|supplement (generic term)|add-on (generic term)
+auto company|1
+(noun)|car company|company (generic term)
+auto factory|1
+(noun)|automobile factory|car factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+auto limitation|1
+(noun)|social control (generic term)
+auto loan|1
+(noun)|automobile loan|car loan|personal loan (generic term)|consumer loan (generic term)
+auto maker|1
+(noun)|car manufacturer|car maker|carmaker|auto manufacturer|automaker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+auto manufacturer|1
+(noun)|car manufacturer|car maker|carmaker|auto maker|automaker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+auto mechanics|1
+(noun)|trade (generic term)|craft (generic term)
+auto part|1
+(noun)|car part|component (generic term)|constituent (generic term)|element (generic term)
+auto race|1
+(noun)|automobile race|car race|race (generic term)
+auto racing|1
+(noun)|car racing|racing (generic term)
+auto tire|1
+(noun)|car tire|automobile tire|rubber tire|tire (generic term)|tyre (generic term)
+autoantibody|1
+(noun)|antibody (generic term)
+autobahn|1
+(noun)|expressway (generic term)|freeway (generic term)|motorway (generic term)|pike (generic term)|state highway (generic term)|superhighway (generic term)|throughway (generic term)|thruway (generic term)
+autobiographer|1
+(noun)|biographer (generic term)
+autobiographic|2
+(adj)|autobiographical|biographer (related term)
+(adj)|autobiographical|biography|life|life story|life history (related term)
+autobiographical|2
+(adj)|autobiographic|biographer (related term)
+(adj)|autobiographic|biography|life|life story|life history (related term)
+autobiography|1
+(noun)|biography (generic term)|life (generic term)|life story (generic term)|life history (generic term)
+autobus|1
+(noun)|bus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+autocatalysis|1
+(noun)|catalysis (generic term)|contact action (generic term)
+autocatalytic|1
+(adj)|catalysis|contact action (related term)
+autochthon|1
+(noun)|aborigine|primitive (generic term)|primitive person (generic term)
+autochthonal|1
+(adj)|autochthonic|autochthonous|endemic|indigenous|native (similar term)
+autochthonic|1
+(adj)|autochthonal|autochthonous|endemic|indigenous|native (similar term)
+autochthonous|2
+(adj)|allochthonous (antonym)
+(adj)|autochthonal|autochthonic|endemic|indigenous|native (similar term)
+autochthony|1
+(noun)|indigenousness|endemism|nativeness (generic term)
+autoclave|2
+(noun)|sterilizer|steriliser|vessel (generic term)
+(verb)|sterilize (generic term)|sterilise (generic term)
+autocoid|1
+(noun)|autacoid|secretion (generic term)
+autocracy|2
+(noun)|autarchy|political system (generic term)|form of government (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+autocrat|1
+(noun)|tyrant|despot|dictator (generic term)|potentate (generic term)
+autocratic|2
+(adj)|bossy|dominating|high-and-mighty|magisterial|peremptory|domineering (similar term)
+(adj)|authoritarian|dictatorial|despotic|tyrannical|undemocratic (similar term)
+autocratically|1
+(adv)|dictatorially|magisterially
+autocue|1
+(noun)|prompter|device (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+autodidact|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+autodidactic|1
+(adj)|person|individual|someone|somebody|mortal|soul (related term)
+autoecious|1
+(adj)|homoecious|heteroecious (antonym)
+autoerotic|1
+(adj)|sexy (similar term)
+autoeroticism|1
+(noun)|autoerotism|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+autoerotism|1
+(noun)|autoeroticism|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+autofluorescence|1
+(noun)|fluorescence (generic term)
+autofluorescent|1
+(adj)|light (similar term)
+autofocus|1
+(noun)|optical device (generic term)
+autogamic|1
+(adj)|autogamous|self-fertilized (similar term)|self-fertilised (similar term)|self-pollinated (similar term)|endogamous (antonym)|exogamous (antonym)
+autogamous|1
+(adj)|autogamic|self-fertilized (similar term)|self-fertilised (similar term)|self-pollinated (similar term)|endogamous (antonym)|exogamous (antonym)
+autogamy|1
+(noun)|self-fertilization (generic term)|self-fertilisation (generic term)|allogamy (antonym)
+autogenesis|1
+(noun)|abiogenesis|autogeny|spontaneous generation|organic phenomenon (generic term)
+autogenetic|1
+(adj)|organic phenomenon (related term)
+autogenic|1
+(adj)|autogenous|self-generated (similar term)|self-produced (similar term)|self-induced (similar term)|heterogenous (antonym)
+autogenic therapy|1
+(noun)|autogenic training|autogenics|treatment (generic term)
+autogenic training|1
+(noun)|autogenic therapy|autogenics|treatment (generic term)
+autogenics|1
+(noun)|autogenic therapy|autogenic training|treatment (generic term)
+autogenous|1
+(adj)|autogenic|self-generated (similar term)|self-produced (similar term)|self-induced (similar term)|heterogenous (antonym)
+autogeny|1
+(noun)|abiogenesis|autogenesis|spontaneous generation|organic phenomenon (generic term)
+autogiro|1
+(noun)|autogyro|gyroplane|heavier-than-air craft (generic term)
+autograft|1
+(noun)|autoplasty|graft (generic term)|transplant (generic term)
+autograph|3
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|John Hancock|signature (generic term)
+(verb)|inscribe|sign (generic term)
+autograph album|1
+(noun)|album (generic term)
+autographed|1
+(adj)|signed (similar term)
+autographic|1
+(adj)|writing|written material|piece of writing (related term)
+autogyro|1
+(noun)|autogiro|gyroplane|heavier-than-air craft (generic term)
+autoicous|1
+(adj)|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+autoimmune|1
+(adj)|reaction|response (related term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+autoimmune disease|1
+(noun)|autoimmune disorder|disease (generic term)
+autoimmune disorder|1
+(noun)|autoimmune disease|disease (generic term)
+autoimmunity|1
+(noun)|pathology (generic term)
+autoinjector|1
+(noun)|hypodermic syringe (generic term)|hypodermic (generic term)|hypo (generic term)
+autolatry|1
+(noun)|idiolatry|self-worship|worship (generic term)
+autoloader|1
+(noun)|self-loader|firearm (generic term)|piece (generic term)|small-arm (generic term)
+autoloading|1
+(adj)|self-loading|semiautomatic|automatic (similar term)
+autologous|1
+(adj)|homologous (antonym)|heterologous (antonym)
+autolysis|1
+(noun)|self-digestion|lysis (generic term)
+autolytic|1
+(adj)|lysis (related term)
+automaker|1
+(noun)|car manufacturer|car maker|carmaker|auto manufacturer|auto maker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+automat|2
+(noun)|vending machine (generic term)
+(noun)|cafeteria (generic term)
+automate|1
+(verb)|automatize|automatise|change (generic term)|alter (generic term)|modify (generic term)
+automated|1
+(adj)|machine-controlled|machine-driven|automatic (similar term)
+automated teller|1
+(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automatic teller|ATM|machine (generic term)
+automated teller machine|1
+(noun)|cash machine|cash dispenser|automatic teller machine|automated teller|automatic teller|ATM|machine (generic term)
+automatic|5
+(adj)|autoloading (similar term)|self-loading (similar term)|semiautomatic (similar term)|automated (similar term)|machine-controlled (similar term)|machine-driven (similar term)|self-acting (similar term)|self-activating (similar term)|self-moving (similar term)|self-regulating (similar term)|self-locking (similar term)|self-winding (similar term)|semiautomatic (similar term)|smart (similar term)|mechanical (related term)|manual (antonym)
+(adj)|automatonlike|machinelike|robotlike|mechanical (similar term)
+(adj)|reflex|reflexive|involuntary (similar term)
+(noun)|automatic rifle|machine rifle|automatic firearm (generic term)|machine gun (generic term)
+(noun)|automatic pistol|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)|automatic firearm (generic term)
+automatic choke|1
+(noun)|choke (generic term)
+automatic data processing|1
+(noun)|ADP|data processing (generic term)
+automatic data processing system|1
+(noun)|computer system|computing system|ADP system|ADPS|system (generic term)
+automatic drive|1
+(noun)|automatic transmission|transmission (generic term)|transmission system (generic term)
+automatic face recognition|1
+(noun)|face recognition|facial recognition|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+automatic firearm|1
+(noun)|autoloader (generic term)|self-loader (generic term)
+automatic pilot|2
+(noun)|autopilot|unconsciousness (generic term)
+(noun)|autopilot|robot pilot|device (generic term)
+automatic pistol|1
+(noun)|automatic|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)|automatic firearm (generic term)
+automatic rifle|1
+(noun)|automatic|machine rifle|automatic firearm (generic term)|machine gun (generic term)
+automatic teller|1
+(noun)|cash machine|cash dispenser|automated teller machine|automatic teller machine|automated teller|ATM|machine (generic term)
+automatic teller machine|1
+(noun)|cash machine|cash dispenser|automated teller machine|automated teller|automatic teller|ATM|machine (generic term)
+automatic transmission|1
+(noun)|automatic drive|transmission (generic term)|transmission system (generic term)
+automatic washer|1
+(noun)|washer|washing machine|white goods (generic term)
+automatically|1
+(adv)|mechanically
+automation|3
+(noun)|mechanization|mechanisation|high technology (generic term)|high tech (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|equipment (generic term)
+automatise|2
+(verb)|automatize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|automatize|automate|change (generic term)|alter (generic term)|modify (generic term)
+automatism|1
+(noun)|reaction (generic term)|response (generic term)
+automatize|2
+(verb)|automatise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|automatise|automate|change (generic term)|alter (generic term)|modify (generic term)
+automaton|2
+(noun)|zombi|zombie|anomaly (generic term)|unusual person (generic term)
+(noun)|robot|golem|mechanism (generic term)
+automatonlike|1
+(adj)|automatic|machinelike|robotlike|mechanical (similar term)
+automeris|1
+(noun)|Automeris|genus Automeris|arthropod genus (generic term)
+automeris io|1
+(noun)|io moth|Automeris io|saturniid (generic term)|saturniid moth (generic term)
+automobile|2
+(noun)|car|auto|machine|motorcar|motor vehicle (generic term)|automotive vehicle (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+automobile battery|1
+(noun)|car battery|lead-acid battery (generic term)|lead-acid accumulator (generic term)
+automobile driver|1
+(noun)|racer|race driver|driver (generic term)
+automobile engine|1
+(noun)|engine (generic term)
+automobile factory|1
+(noun)|auto factory|car factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+automobile horn|1
+(noun)|car horn|motor horn|horn|hooter|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+automobile industry|1
+(noun)|industry (generic term)
+automobile insurance|1
+(noun)|car insurance|insurance (generic term)
+automobile loan|1
+(noun)|auto loan|car loan|personal loan (generic term)|consumer loan (generic term)
+automobile mechanic|1
+(noun)|auto-mechanic|car-mechanic|mechanic|grease monkey|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+automobile race|1
+(noun)|auto race|car race|race (generic term)
+automobile tire|1
+(noun)|car tire|auto tire|rubber tire|tire (generic term)|tyre (generic term)
+automobile traffic|1
+(noun)|car traffic|vehicular traffic (generic term)|vehicle traffic (generic term)
+automobile trunk|1
+(noun)|luggage compartment|trunk|compartment (generic term)
+automobilist|1
+(noun)|motorist|driver (generic term)
+automotive|2
+(adj)|motor vehicle|automotive vehicle (related term)
+(adj)|self-propelled|self-propelling|moving (similar term)
+automotive engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+automotive engineering|1
+(noun)|automotive technology|technology (generic term)|engineering (generic term)
+automotive technology|1
+(noun)|automotive engineering|technology (generic term)|engineering (generic term)
+automotive vehicle|1
+(noun)|motor vehicle|self-propelled vehicle (generic term)
+automysophobia|1
+(noun)|simple phobia (generic term)
+autonomic|1
+(adj)|involuntary (similar term)
+autonomic ganglion|1
+(noun)|ganglion (generic term)
+autonomic nervous system|1
+(noun)|ANS|neural structure (generic term)
+autonomic plexus|1
+(noun)|plexus autonomici|nerve plexus (generic term)
+autonomous|3
+(adj)|independent|self-governing|sovereign|free (similar term)
+(adj)|independent (similar term)
+(adj)|self-directed|self-reliant|independent (similar term)
+autonomy|2
+(noun)|liberty|independence (generic term)|independency (generic term)
+(noun)|self-direction|self-reliance|self-sufficiency|independence (generic term)|independency (generic term)
+autophyte|1
+(noun)|autophytic plant|autotroph|autotrophic organism|plant (generic term)|flora (generic term)|plant life (generic term)
+autophytic|1
+(adj)|autotrophic|plant|flora|plant life (related term)|heterotrophic (antonym)
+autophytic plant|1
+(noun)|autophyte|autotroph|autotrophic organism|plant (generic term)|flora (generic term)|plant life (generic term)
+autopilot|2
+(noun)|automatic pilot|unconsciousness (generic term)
+(noun)|automatic pilot|robot pilot|device (generic term)
+autoplastic|1
+(adj)|plastic surgery|reconstructive surgery|anaplasty (related term)
+autoplasty|2
+(noun)|autograft|graft (generic term)|transplant (generic term)
+(noun)|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+autopsy|2
+(noun)|necropsy|postmortem|post-mortem|PM|postmortem examination|post-mortem examination|examination (generic term)|scrutiny (generic term)
+(verb)|examine (generic term)|see (generic term)
+autoradiograph|1
+(noun)|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+autoradiographic|1
+(adj)|radiography|skiagraphy (related term)
+autoradiography|1
+(noun)|radiography (generic term)|skiagraphy (generic term)
+autoregulation|1
+(noun)|organic process (generic term)|biological process (generic term)
+autosemantic|1
+(adj)|categorematic (similar term)
+autosexing|1
+(noun)|breeding (generic term)
+autosomal|1
+(adj)|chromosome (related term)
+autosomal dominant disease|1
+(noun)|autosomal dominant disorder|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+autosomal dominant disorder|1
+(noun)|autosomal dominant disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+autosomal recessive defect|1
+(noun)|autosomal recessive disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+autosomal recessive disease|1
+(noun)|autosomal recessive defect|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+autosome|1
+(noun)|somatic chromosome|chromosome (generic term)
+autostrada|1
+(noun)|expressway (generic term)|freeway (generic term)|motorway (generic term)|pike (generic term)|state highway (generic term)|superhighway (generic term)|throughway (generic term)|thruway (generic term)
+autosuggestion|1
+(noun)|self-hypnosis|self-suggestion|hypnosis (generic term)
+autotelic|1
+(adj)|belief (related term)
+autotelism|1
+(noun)|belief (generic term)
+autotomic|1
+(adj)|removal|remotion (related term)
+autotomise|1
+(verb)|autotomize|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+autotomize|1
+(verb)|autotomise|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+autotomy|1
+(noun)|removal (generic term)|remotion (generic term)
+autotroph|1
+(noun)|autophyte|autophytic plant|autotrophic organism|plant (generic term)|flora (generic term)|plant life (generic term)
+autotrophic|1
+(adj)|autophytic|plant|flora|plant life (related term)|heterotrophic (antonym)
+autotrophic organism|1
+(noun)|autophyte|autophytic plant|autotroph|plant (generic term)|flora (generic term)|plant life (generic term)
+autotype|2
+(noun)|autotypy|photography (generic term)
+(noun)|facsimile|copy (generic term)
+autotypic|1
+(adj)|photography (related term)
+autotypy|1
+(noun)|autotype|photography (generic term)
+autumn|1
+(noun)|fall|season (generic term)|time of year (generic term)
+autumn-blooming|1
+(adj)|autumn-flowering|fall-flowering|fall-blooming|late-flowering|late-blooming|autumnal (similar term)
+autumn-flowering|1
+(adj)|autumn-blooming|fall-flowering|fall-blooming|late-flowering|late-blooming|autumnal (similar term)
+autumn crocus|1
+(noun)|meadow saffron|naked lady|Colchicum autumnale|bulbous plant (generic term)
+autumn pumpkin|1
+(noun)|pumpkin|pumpkin vine|Cucurbita pepo|squash (generic term)|squash vine (generic term)
+autumn sneezeweed|1
+(noun)|Helenium autumnale|sneezeweed (generic term)
+autumnal|2
+(adj)|autumn-flowering (similar term)|autumn-blooming (similar term)|fall-flowering (similar term)|fall-blooming (similar term)|late-flowering (similar term)|late-blooming (similar term)|late-ripening (similar term)|wintry (antonym)|vernal (antonym)|summery (antonym)
+(adj)|mature (similar term)
+autumnal equinox|2
+(noun)|September equinox|fall equinox|equinox (generic term)|vernal equinox (antonym)
+(noun)|equinoctial point (generic term)|equinox (generic term)
+auvergne|1
+(noun)|Auvergne|French region (generic term)
+auxesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+auxetic|1
+(adj)|growth|growing|maturation|development|ontogeny|ontogenesis (related term)
+auxiliary|3
+(adj)|subsidiary|supplemental|supplementary|secondary (similar term)
+(adj)|accessory|adjunct|ancillary|adjuvant|appurtenant|subsidiary|supportive (similar term)
+(noun)|aide|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+auxiliary airfield|1
+(noun)|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+auxiliary boiler|1
+(noun)|donkey boiler|boiler (generic term)|steam boiler (generic term)
+auxiliary cell|1
+(noun)|terrorist cell (generic term)|radical cell (generic term)
+auxiliary engine|1
+(noun)|donkey engine|engine (generic term)
+auxiliary equipment|1
+(noun)|off-line equipment|electronic equipment (generic term)
+auxiliary operation|1
+(noun)|off-line operation|operation (generic term)
+auxiliary pump|1
+(noun)|donkey pump|pump (generic term)
+auxiliary research submarine|1
+(noun)|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+auxiliary storage|1
+(noun)|external storage|secondary storage|memory device (generic term)|storage device (generic term)
+auxiliary verb|1
+(noun)|verb (generic term)
+auxin|1
+(noun)|phytohormone (generic term)|plant hormone (generic term)|growth regulator (generic term)
+auxinic|1
+(adj)|phytohormone|plant hormone|growth regulator (related term)
+av|1
+(noun)|Ab|Av|Jewish calendar month (generic term)
+avadavat|1
+(noun)|amadavat|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+avahi|1
+(noun)|Avahi|genus Avahi|mammal genus (generic term)
+avahi laniger|1
+(noun)|woolly indris|Avahi laniger|lemur (generic term)
+avail|4
+(noun)|help|service|helpfulness (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|help|exploit (generic term)|work (generic term)
+availability|1
+(noun)|handiness|accessibility|availableness|convenience (generic term)|unavailability (antonym)|inaccessibility (antonym)
+available|3
+(adj)|accessible (similar term)|acquirable (similar term)|addressable (similar term)|easy (similar term)|forthcoming (similar term)|gettable (similar term)|getable (similar term)|obtainable (similar term)|procurable (similar term)|in stock (similar term)|lendable (similar term)|visible (similar term)|on hand (similar term)|on tap (similar term)|on tap (similar term)|open (similar term)|purchasable (similar term)|for sale (similar term)|ready (similar term)|unavailable (antonym)
+(adj)|uncommitted|free (similar term)
+(adj)|usable|useable|disposable (similar term)
+availableness|1
+(noun)|handiness|accessibility|availability|convenience (generic term)|unavailability (antonym)|inaccessibility (antonym)
+avalanche|3
+(noun)|slide (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|roll down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+avalanche lily|1
+(noun)|Erythronium montanum|liliaceous plant (generic term)
+avalokiteshvara|1
+(noun)|Avalokitesvara|Avalokiteshvara|Bodhisattva (generic term)|Boddhisatva (generic term)
+avalokitesvara|1
+(noun)|Avalokitesvara|Avalokiteshvara|Bodhisattva (generic term)|Boddhisatva (generic term)
+avant-garde|2
+(adj)|daring|original (similar term)
+(noun)|vanguard|van|new wave|artistic movement (generic term)|art movement (generic term)
+avaram|1
+(noun)|tanner's cassia|Senna auriculata|Cassia auriculata|senna (generic term)
+avarice|2
+(noun)|greed|covetousness|rapacity|avaritia|mortal sin (generic term)|deadly sin (generic term)
+(noun)|avariciousness|covetousness|cupidity|greed (generic term)
+avaricious|1
+(adj)|covetous|grabby|grasping|greedy|prehensile|acquisitive (similar term)
+avariciously|1
+(adv)|covetously|greedily
+avariciousness|1
+(noun)|avarice|covetousness|cupidity|greed (generic term)
+avaritia|1
+(noun)|avarice|greed|covetousness|rapacity|mortal sin (generic term)|deadly sin (generic term)
+avascular|1
+(adj)|vascular (antonym)
+avatar|2
+(noun)|embodiment|incarnation|personification (generic term)
+(noun)|Hindu deity (generic term)
+ave maria|1
+(noun)|Ave Maria|Hail Mary|prayer (generic term)
+avellan|1
+(adj)|avellane|hazelnut|hazel|hazelnut tree (related term)
+avellane|1
+(adj)|avellan|hazelnut|hazel|hazelnut tree (related term)
+avena|1
+(noun)|Avena|genus Avena|plant genus (generic term)
+avena barbata|1
+(noun)|slender wild oat|Avena barbata|oat (generic term)
+avena fatua|1
+(noun)|wild oat|wild oat grass|Avena fatua|oat (generic term)
+avena sativa|1
+(noun)|cereal oat|Avena sativa|oat (generic term)
+avene sterilis|1
+(noun)|wild red oat|animated oat|Avene sterilis|oat (generic term)
+avenge|1
+(verb)|revenge|retaliate|punish (generic term)|penalize (generic term)|penalise (generic term)
+avenged|1
+(adj)|unavenged (antonym)
+avenger|1
+(noun)|retaliator|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+avens|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+aventail|1
+(noun)|camail|ventail|hood (generic term)
+aventurine|1
+(noun)|sunstone|quartz (generic term)|transparent gem (generic term)
+avenue|2
+(noun)|approach (generic term)|attack (generic term)|plan of attack (generic term)
+(noun)|boulevard|street (generic term)
+aver|2
+(verb)|allege|say|assert (generic term)|asseverate (generic term)|maintain (generic term)
+(verb)|affirm|verify|assert|avow|swan|swear|declare (generic term)
+average|10
+(adj)|mean|normal (similar term)
+(adj)|ordinary|common (similar term)
+(adj)|fair|mediocre|middling|ordinary (similar term)
+(adj)|intermediate|medium|moderate (similar term)
+(adj)|modal|normal (similar term)
+(adj)|median|normal (similar term)
+(noun)|norm|statistic (generic term)
+(verb)|average out|total (generic term)|number (generic term)|add up (generic term)|come (generic term)|amount (generic term)
+(verb)|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|average out|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+average cost|1
+(noun)|monetary value (generic term)|price (generic term)|cost (generic term)
+average out|2
+(verb)|average|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|average|total (generic term)|number (generic term)|add up (generic term)|come (generic term)|amount (generic term)
+averageness|2
+(noun)|normality (generic term)|normalcy (generic term)
+(noun)|mediocrity|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)
+averell harriman|1
+(noun)|Harriman|Averell Harriman|William Averell Harriman|financier (generic term)|moneyman (generic term)|diplomat (generic term)|diplomatist (generic term)
+averment|1
+(noun)|assertion|asseveration|declaration (generic term)
+averrhoa|1
+(noun)|Averrhoa|genus Averrhoa|rosid dicot genus (generic term)
+averrhoa bilimbi|1
+(noun)|bilimbi|Averrhoa bilimbi|fruit tree (generic term)
+averrhoa carambola|1
+(noun)|carambola|carambola tree|Averrhoa carambola|fruit tree (generic term)
+averroes|1
+(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher (generic term)|lawyer (generic term)|attorney (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+averse|1
+(adj)|antipathetic|antipathetical|indisposed|loath|loth|disinclined (similar term)
+aversion|2
+(noun)|antipathy|distaste|dislike (generic term)
+(noun)|averting|avoidance (generic term)|turning away (generic term)|shunning (generic term)|dodging (generic term)
+aversion therapy|1
+(noun)|behavior therapy (generic term)|behavior modification (generic term)
+aversive|1
+(adj)|dislike (related term)
+aversive conditioning|1
+(noun)|conditioning (generic term)
+aversive stimulus|1
+(noun)|negative stimulus (generic term)
+avert|2
+(verb)|debar|obviate|deflect|head off|stave off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|turn away|turn (generic term)
+avertable|1
+(adj)|evitable|avoidable|avertible|inevitable (antonym)
+avertible|1
+(adj)|evitable|avoidable|avertable|inevitable (antonym)
+averting|2
+(noun)|prevention (generic term)|bar (generic term)
+(noun)|aversion|avoidance (generic term)|turning away (generic term)|shunning (generic term)|dodging (generic term)
+aves|1
+(noun)|Aves|class Aves|class (generic term)
+avesta|1
+(noun)|Avesta|Zend-Avesta|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+avestan|3
+(adj)|Avestan|sacred text|sacred writing|religious writing|religious text (related term)
+(noun)|Avestan|Zend|Iranian (generic term)|Iranian language (generic term)
+(noun)|Avestan|script (generic term)
+avian|1
+(adj)|vertebrate|craniate (related term)
+avianise|1
+(verb)|avianize|change (generic term)|alter (generic term)|vary (generic term)
+avianize|1
+(verb)|avianise|change (generic term)|alter (generic term)|vary (generic term)
+aviary|1
+(noun)|bird sanctuary|volary|building (generic term)|edifice (generic term)
+aviate|1
+(verb)|fly|pilot|operate (generic term)|control (generic term)
+aviation|4
+(noun)|air power|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|industry (generic term)
+(noun)|airmanship|art (generic term)|artistry (generic term)|prowess (generic term)
+(noun)|air travel|air|travel (generic term)|traveling (generic term)|travelling (generic term)
+aviation medicine|1
+(noun)|aeromedicine|aerospace medicine|biomedicine (generic term)
+aviator|1
+(noun)|aeronaut|airman|flier|flyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+aviatress|1
+(noun)|aviatrix|airwoman|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+aviatrix|1
+(noun)|airwoman|aviatress|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+avicenna|1
+(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+avicennia|1
+(noun)|Avicennia|genus Avicennia|asterid dicot genus (generic term)
+avicennia marina|1
+(noun)|black mangrove|Avicennia marina|blackwood (generic term)|blackwood tree (generic term)
+avicennia officinalis|1
+(noun)|white mangrove|Avicennia officinalis|tree (generic term)
+avicenniaceae|1
+(noun)|Avicenniaceae|family Avicenniaceae|asterid dicot family (generic term)
+avid|2
+(adj)|devouring|esurient|greedy|desirous (similar term)|wishful (similar term)
+(adj)|great|eager|zealous|enthusiastic (similar term)
+avidity|1
+(noun)|eagerness|avidness|keenness|enthusiasm (generic term)
+avidness|1
+(noun)|eagerness|avidity|keenness|enthusiasm (generic term)
+avifauna|1
+(noun)|fauna (generic term)|zoology (generic term)
+avifaunal|1
+(adj)|avifaunistic|fauna|zoology (related term)
+avifaunistic|1
+(adj)|avifaunal|fauna|zoology (related term)
+avignon|1
+(noun)|Avignon|town (generic term)
+avionic|1
+(adj)|aeronautics|astronautics (related term)
+avionics|1
+(noun)|aeronautics (generic term)|astronautics (generic term)
+avirulent|1
+(adj)|virulent (antonym)
+avitaminosis|1
+(noun)|hypovitaminosis|malnutrition (generic term)
+avitaminotic|1
+(adj)|malnutrition (related term)
+avo|1
+(noun)|Macao monetary unit (generic term)
+avocado|3
+(adj)|chromatic (similar term)
+(noun)|alligator pear|avocado pear|aguacate|edible fruit (generic term)
+(noun)|avocado tree|Persea Americana|fruit tree (generic term)
+avocado pear|1
+(noun)|avocado|alligator pear|aguacate|edible fruit (generic term)
+avocado tree|1
+(noun)|avocado|Persea Americana|fruit tree (generic term)
+avocation|1
+(noun)|by-line|hobby|pursuit|sideline|spare-time activity|pastime (generic term)|interest (generic term)|pursuit (generic term)
+avocational|1
+(adj)|pastime|interest|pursuit (related term)
+avocet|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+avogadro|1
+(noun)|Avogadro|Amedeo Avogadro|physicist (generic term)
+avogadro's hypothesis|1
+(noun)|Avogadro's law|Avogadro's hypothesis|law (generic term)|law of nature (generic term)
+avogadro's law|1
+(noun)|Avogadro's law|Avogadro's hypothesis|law (generic term)|law of nature (generic term)
+avogadro's number|1
+(noun)|Avogadro's number|Avogadro number|constant (generic term)
+avogadro number|1
+(noun)|Avogadro's number|Avogadro number|constant (generic term)
+avoid|4
+(verb)|confront (antonym)
+(verb)|debar|obviate|deflect|avert|head off|stave off|fend off|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|keep off|abstain (generic term)|refrain (generic term)|desist (generic term)
+(verb)|invalidate|annul|quash|void|nullify|cancel (generic term)|strike down (generic term)|validate (antonym)
+avoidable|1
+(adj)|evitable|avertible|avertable|inevitable (antonym)
+avoidance|1
+(noun)|turning away|shunning|dodging|rejection (generic term)
+avoirdupois|2
+(noun)|avoirdupois weight|system of weights (generic term)|weight (generic term)
+(noun)|fatness|fat|blubber|bodily property (generic term)|leanness (antonym)
+avoirdupois unit|1
+(noun)|mass unit (generic term)
+avoirdupois weight|1
+(noun)|avoirdupois|system of weights (generic term)|weight (generic term)
+avon|3
+(noun)|Avon|River Avon|river (generic term)
+(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river (generic term)
+(noun)|Avon|county (generic term)
+avouch|1
+(verb)|avow|admit (generic term)|acknowledge (generic term)|disavow (antonym)
+avouchment|1
+(noun)|avowal|affirmation|assertion (generic term)|averment (generic term)|asseveration (generic term)
+avow|2
+(verb)|affirm|verify|assert|aver|swan|swear|declare (generic term)
+(verb)|avouch|admit (generic term)|acknowledge (generic term)|disavow (antonym)
+avowal|1
+(noun)|avouchment|affirmation|assertion (generic term)|averment (generic term)|asseveration (generic term)
+avowed|1
+(adj)|professed|declared (similar term)
+avowedly|2
+(adv)|professedly
+(adv)|true|admittedly|confessedly
+avower|2
+(noun)|communicator (generic term)
+(noun)|asserter|declarer|affirmer|asseverator|communicator (generic term)
+avulse|1
+(verb)|separate (generic term)
+avulsion|2
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|separation (generic term)
+avuncular|2
+(adj)|kinsman (related term)
+(adj)|cousinly (similar term)
+await|1
+(verb)|expect|look|wait
+awaited|1
+(adj)|anticipated|hoped-for|expected (similar term)
+awake|4
+(adj)|astir (similar term)|up (similar term)|awakened (similar term)|insomniac (similar term)|sleepless (similar term)|watchful (similar term)|unsleeping (similar term)|wide-awake (similar term)|waking (similar term)|wakeful (similar term)|alert (related term)|aware (related term)|cognizant (related term)|cognisant (related term)|conscious (related term)|asleep (antonym)
+(adj)|alert|conscious (similar term)
+(adj)|alert|alive|aware (similar term)|cognizant (similar term)|cognisant (similar term)
+(verb)|wake up|arouse|awaken|wake|come alive|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+awaken|3
+(verb)|wake|waken|rouse|wake up|arouse|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+(verb)|wake up|awake|arouse|wake|come alive|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+awakened|2
+(adj)|aroused (similar term)|unawakened (antonym)
+(adj)|awake (similar term)
+awakening|1
+(noun)|wakening|waking up|arousal (generic term)|rousing (generic term)
+award|5
+(noun)|awarding|grant (generic term)|subsidization (generic term)|subsidisation (generic term)
+(noun)|accolade|honor|honour|laurels|symbol (generic term)
+(noun)|prize|gift (generic term)
+(verb)|present|allocate (generic term)|apportion (generic term)
+(verb)|grant|give (generic term)
+award-winning|1
+(adj)|victory|triumph (related term)
+awarding|1
+(noun)|award|grant (generic term)|subsidization (generic term)|subsidisation (generic term)
+aware|3
+(adj)|cognizant|cognisant|alert (similar term)|alive (similar term)|awake (similar term)|conscious (similar term)|sensible (similar term)|awake (related term)|conscious (related term)|sensible (related term)|sensitive (related term)|unaware (antonym)
+(adj)|mindful|careful (similar term)|heedful (similar term)|evocative (similar term)|redolent (similar term)|remindful (similar term)|reminiscent (similar term)|unmindful (antonym)
+(adj)|witting|unwitting (antonym)
+awareness|2
+(noun)|consciousness|cognizance|cognisance|knowingness|knowing (generic term)|incognizance (antonym)
+(noun)|sentience|consciousness (generic term)
+awash|1
+(adj)|afloat|flooded|inundated|overflowing|full (similar term)
+away|8
+(adj)|gone|departed|absent (similar term)
+(adj)|home (antonym)
+(adj)|outside|inaccurate (similar term)
+(adv)|off|forth
+(adv)|out
+(adv)|off
+(adv)|aside
+(adv)|aside|by
+away game|1
+(noun)|road game|game (generic term)|home game (antonym)
+awayness|1
+(noun)|absence (generic term)
+awe|3
+(noun)|wonder (generic term)|wonderment (generic term)|admiration (generic term)
+(noun)|fear|reverence|veneration|emotion (generic term)
+(verb)|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+awe-inspiring|1
+(adj)|amazing|awesome|awful|awing|impressive (similar term)
+aweary|1
+(adj)|weary|tired (similar term)
+awed|2
+(adj)|awful|reverent (similar term)
+(adj)|awestruck|awestricken|in awe of|overawed (similar term)|unawed (antonym)
+aweigh|2
+(adj)|up (similar term)
+(adj)|atrip|free (similar term)
+aweless|2
+(adj)|awless|unawed (similar term)
+(adj)|awless|disrespectful|irreverent (similar term)
+awesome|1
+(adj)|amazing|awe-inspiring|awful|awing|impressive (similar term)
+awestricken|1
+(adj)|awed|awestruck|in awe of|overawed (similar term)|unawed (antonym)
+awestruck|1
+(adj)|awed|awestricken|in awe of|overawed (similar term)|unawed (antonym)
+awful|7
+(adj)|atrocious|abominable|dreadful|painful|terrible|unspeakable|bad (similar term)
+(adj)|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+(adj)|nasty|dirty (similar term)|filthy (similar term)|lousy (similar term)|grotty (similar term)|hateful (similar term)|mean (similar term)|unpleasant (related term)|nice (antonym)
+(adj)|awed|reverent (similar term)
+(adj)|frightful|terrible|tremendous|extraordinary (similar term)
+(adj)|amazing|awe-inspiring|awesome|awing|impressive (similar term)
+(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 (generic term)
+awheel|1
+(adj)|riding|moving (similar term)
+awhile|1
+(adv)|for a while
+awing|1
+(adj)|amazing|awe-inspiring|awesome|awful|impressive (similar term)
+awkward|6
+(adj)|inconvenient (similar term)
+(adj)|gawky (similar term)|clumsy (similar term)|clunky (similar term)|ungainly (similar term)|unwieldy (similar term)|graceless (similar term)|ungraceful (similar term)|labored (similar term)|laboured (similar term)|strained (similar term)|wooden (similar term)|maladroit (related term)|ugly (related term)|graceful (antonym)
+(adj)|bunglesome|clumsy|ungainly|unwieldy (similar term)|unmanageable (similar term)
+(adj)|clumsy|cumbersome|inapt|inept|ill-chosen|infelicitous (similar term)
+(adj)|embarrassing|sticky|unenviable|difficult (similar term)|hard (similar term)
+(adj)|ill at ease|uneasy|uncomfortable (similar term)
+awkwardness|5
+(noun)|clumsiness|ineptness|ineptitude|maladroitness|slowness|unskillfulness (generic term)
+(noun)|nuisance value|disadvantage (generic term)
+(noun)|clumsiness|carriage (generic term)|bearing (generic term)|posture (generic term)|gracefulness (antonym)
+(noun)|clumsiness|gracelessness|stiffness|inelegance (generic term)
+(noun)|cumbersomeness|unwieldiness|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+awl|1
+(noun)|hand tool (generic term)
+awl-shaped|1
+(adj)|formed (similar term)
+awless|2
+(adj)|aweless|unawed (similar term)
+(adj)|aweless|disrespectful|irreverent (similar term)
+awlwort|1
+(noun)|Subularia aquatica|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+awn|1
+(noun)|beard (generic term)
+awned|1
+(adj)|awny|bearded (similar term)|awnless (antonym)
+awning|1
+(noun)|sunshade|sunblind|canopy (generic term)
+awning deck|1
+(noun)|hurricane deck|hurricane roof|promenade deck|deck (generic term)
+awninged|1
+(adj)|covered (similar term)
+awnless|1
+(adj)|awned (antonym)
+awnless bromegrass|1
+(noun)|Bromus inermis|brome (generic term)|bromegrass (generic term)
+awny|1
+(adj)|awned|bearded (similar term)|awnless (antonym)
+awol|3
+(adj)|truant|absent (similar term)
+(adj)|disloyal (similar term)
+(noun)|AWOL|absentee (generic term)
+awry|4
+(adj)|askew|cockeyed|lopsided|wonky|skew-whiff|crooked (similar term)
+(adj)|amiss|haywire|wrong|malfunctioning (similar term)|nonfunctional (similar term)
+(adv)|amiss
+(adv)|askew|skew-whiff
+ax|3
+(noun)|axe|edge tool (generic term)
+(verb)|axe|chop (generic term)|hack (generic term)
+(verb)|axe|end (generic term)|terminate (generic term)
+ax handle|1
+(noun)|axe handle|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+ax head|1
+(noun)|axe head|wedge (generic term)
+axe|3
+(noun)|ax|edge tool (generic term)
+(verb)|ax|chop (generic term)|hack (generic term)
+(verb)|ax|end (generic term)|terminate (generic term)
+axe handle|1
+(noun)|ax handle|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+axe head|1
+(noun)|ax head|wedge (generic term)
+axenic|2
+(adj)|germfree (similar term)
+(adj)|pure (similar term)
+axerophthol|1
+(noun)|vitamin A|antiophthalmic factor|A|fat-soluble vitamin (generic term)
+axial|3
+(adj)|mechanism (related term)
+(adj)|axile|stalk|stem (related term)
+(adj)|lengthwise (similar term)|lengthways (similar term)
+axial motion|1
+(noun)|axial rotation|roll|rotation (generic term)|revolution (generic term)|gyration (generic term)
+axial muscle|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+axial rotation|1
+(noun)|axial motion|roll|rotation (generic term)|revolution (generic term)|gyration (generic term)
+axial skeleton|1
+(noun)|skeletal structure (generic term)
+axil|1
+(noun)|angle (generic term)
+axile|1
+(adj)|axial|stalk|stem (related term)
+axile placentation|1
+(noun)|placentation (generic term)
+axilla|1
+(noun)|armpit|axillary cavity|axillary fossa|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+axillary|2
+(adj)|alar|angle (related term)
+(adj)|cavity|bodily cavity|cavum (related term)
+axillary artery|1
+(noun)|arteria axillaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+axillary cavity|1
+(noun)|armpit|axilla|axillary fossa|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+axillary fossa|1
+(noun)|armpit|axilla|axillary cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+axillary node|1
+(noun)|lymph node (generic term)|lymph gland (generic term)|node (generic term)
+axillary vein|1
+(noun)|vena axillaris|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+axiological|1
+(adj)|philosophy (related term)
+axiology|1
+(noun)|philosophy (generic term)
+axiom|2
+(noun)|maxim|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|proposition (generic term)
+axiomatic|3
+(adj)|self-evident|taken for granted|obvious (similar term)
+(adj)|aphoristic|saying|expression|locution (related term)
+(adj)|axiomatical|postulational|proposition (related term)
+axiomatical|1
+(adj)|axiomatic|postulational|proposition (related term)
+axis|6
+(noun)|line (generic term)
+(noun)|axis of rotation|mechanism (generic term)
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|Axis|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|bloc|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|axis vertebra|cervical vertebra (generic term)|neck bone (generic term)
+axis of rotation|1
+(noun)|axis|mechanism (generic term)
+axis vertebra|1
+(noun)|axis|cervical vertebra (generic term)|neck bone (generic term)
+axle|1
+(noun)|shaft (generic term)
+axle bar|1
+(noun)|axletree (generic term)
+axle grease|1
+(noun)|grease (generic term)|lubricating oil (generic term)
+axletree|1
+(noun)|dead axle (generic term)
+axolemma|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+axolotl|1
+(noun)|mud puppy|Ambystoma mexicanum|ambystomid (generic term)|ambystomid salamander (generic term)
+axon|1
+(noun)|axone|nerve fiber (generic term)|nerve fibre (generic term)
+axonal|1
+(adj)|nerve fiber|nerve fibre (related term)
+axone|1
+(noun)|axon|nerve fiber (generic term)|nerve fibre (generic term)
+axseed|1
+(noun)|crown vetch|Coronilla varia|coronilla (generic term)
+ayah|1
+(noun)|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+ayapana|1
+(noun)|Ayapana triplinervis|Eupatorium aya-pana|herb (generic term)|herbaceous plant (generic term)
+ayapana triplinervis|1
+(noun)|ayapana|Ayapana triplinervis|Eupatorium aya-pana|herb (generic term)|herbaceous plant (generic term)
+ayatollah|1
+(noun)|religious leader (generic term)
+ayatollah khomeini|1
+(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader (generic term)
+ayatollah ruholla khomeini|1
+(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader (generic term)
+aye-aye|1
+(noun)|Daubentonia madagascariensis|lemur (generic term)
+ayin|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+ayn rand|1
+(noun)|Rand|Ayn Rand|writer (generic term)|author (generic term)
+ayr|1
+(noun)|Ayr|town (generic term)|port (generic term)
+ayrshire|1
+(noun)|Ayrshire|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+aythya|1
+(noun)|Aythya|genus Aythya|bird genus (generic term)
+aythya affinis|1
+(noun)|lesser scaup|lesser scaup duck|lake duck|Aythya affinis|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+aythya americana|1
+(noun)|redhead|Aythya americana|duck (generic term)
+aythya ferina|1
+(noun)|pochard|Aythya ferina|duck (generic term)
+aythya marila|1
+(noun)|greater scaup|Aythya marila|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+aythya valisineria|1
+(noun)|canvasback|canvasback duck|Aythya valisineria|duck (generic term)
+ayurveda|1
+(noun)|Ayurveda|writing (generic term)|written material (generic term)|piece of writing (generic term)
+az|2
+(noun)|azimuth|AZ|angle (generic term)
+(noun)|Arizona|Grand Canyon State|AZ|American state (generic term)
+az zarqa|1
+(noun)|Az Zarqa|Zarqa|city (generic term)|metropolis (generic term)|urban center (generic term)
+azactam|1
+(noun)|aztreonam|Azactam|antibiotic (generic term)|antibiotic drug (generic term)
+azadirachta|1
+(noun)|Azadirachta|genus Azadirachta|rosid dicot genus (generic term)
+azadirachta indica|1
+(noun)|neem|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+azadirachtin|1
+(noun)|organic compound (generic term)
+azalea|1
+(noun)|rhododendron (generic term)
+azaleastrum|1
+(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus (generic term)
+azathioprine|1
+(noun)|Imuran|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+azedarach|1
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|Melia azederach|Melia azedarach|tree (generic term)
+azederach|1
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+azerbaijan|1
+(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country (generic term)|Asian nation (generic term)
+azerbaijani|3
+(adj)|Azerbaijani|Asian country|Asian nation (related term)
+(noun)|Azerbaijani|Turki (generic term)
+(noun)|Azerbaijani|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+azerbaijani monetary unit|1
+(noun)|Azerbaijani monetary unit|monetary unit (generic term)
+azerbaijani republic|1
+(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country (generic term)|Asian nation (generic term)
+azerbajdzhan|1
+(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country (generic term)|Asian nation (generic term)
+azerbajdzhan republic|1
+(noun)|Azerbaijan|Azerbaijani Republic|Azerbajdzhan|Azerbajdzhan Republic|Asian country (generic term)|Asian nation (generic term)
+azeri|1
+(noun)|Azeri|ethnic group (generic term)|ethnos (generic term)
+azide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+azido|1
+(adj)|group|radical|chemical group (related term)
+azido group|1
+(noun)|azido radical|group (generic term)|radical (generic term)|chemical group (generic term)
+azido radical|1
+(noun)|azido group|group (generic term)|radical (generic term)|chemical group (generic term)
+azimuth|1
+(noun)|AZ|angle (generic term)
+azimuthal|1
+(adj)|angle (related term)
+azo|1
+(adj)|group|radical|chemical group (related term)
+azo dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+azo group|1
+(noun)|azo radical|group (generic term)|radical (generic term)|chemical group (generic term)
+azo radical|1
+(noun)|azo group|group (generic term)|radical (generic term)|chemical group (generic term)
+azoic|1
+(adj)|early (similar term)
+azoimide|1
+(noun)|hydrazoic acid|hydrogen azide|HN|hydride (generic term)|explosive (generic term)
+azolla|1
+(noun)|Azolla|genus Azolla|fern genus (generic term)
+azolla caroliniana|1
+(noun)|mosquito fern|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern (generic term)|water fern (generic term)
+azollaceae|1
+(noun)|Azollaceae|family Azollaceae|fern family (generic term)
+azonal|1
+(adj)|azonic (similar term)|zonal (antonym)
+azonic|1
+(adj)|azonal (similar term)
+azores|1
+(noun)|Azores|Acores|island (generic term)
+azotaemia|1
+(noun)|uremia|uraemia|azotemia|pathology (generic term)
+azote|1
+(noun)|nitrogen (generic term)|N (generic term)|atomic number 7 (generic term)
+azotemia|1
+(noun)|uremia|uraemia|azotaemia|pathology (generic term)
+azotemic|1
+(adj)|uremic|uraemic|pathology (related term)
+azotic|1
+(adj)|nitric|nitrous|chemical element|element|gas (related term)|nitrogen|N|atomic number 7 (related term)
+azoturia|1
+(noun)|pathology (generic term)
+azt|1
+(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+aztec|1
+(noun)|Aztec|Nahuatl (generic term)
+aztec lily|1
+(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis (generic term)
+aztec marigold|1
+(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold (generic term)
+aztecan|1
+(noun)|Aztecan|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+aztreonam|1
+(noun)|Azactam|antibiotic (generic term)|antibiotic drug (generic term)
+azure|3
+(adj)|cerulean|sky-blue|bright blue|chromatic (similar term)
+(noun)|cerulean|sapphire|lazuline|sky-blue|blue (generic term)|blueness (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+azure aster|1
+(noun)|aster (generic term)
+azurite|1
+(noun)|malachite (generic term)
+azygos|1
+(adj)|azygous|single (similar term)
+azygos vein|1
+(noun)|azygous vein|vena azygos|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+azygous|1
+(adj)|azygos|single (similar term)
+azygous vein|1
+(noun)|azygos vein|vena azygos|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+azymia|1
+(noun)|pathology (generic term)
+b|7
+(noun)|bacillus|B|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+(noun)|boron|B|atomic number 5|chemical element (generic term)|element (generic term)
+(noun)|Bel|B|sound unit (generic term)
+(noun)|barn|area unit (generic term)|square measure (generic term)
+(noun)|B|letter b|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|B|type B|group B|blood group (generic term)|blood type (generic term)
+b-52|1
+(noun)|B-52|bomber (generic term)
+b-complex vitamin|1
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+b-flat clarinet|1
+(noun)|B-flat clarinet|licorice stick|clarinet (generic term)
+b-girl|1
+(noun)|B-girl|bar girl|woman (generic term)|adult female (generic term)
+b-horizon|1
+(noun)|B-horizon|B horizon|soil horizon (generic term)
+b-meson|1
+(noun)|meson (generic term)|mesotron (generic term)
+b. b. king|1
+(noun)|King|B. B. King|Riley B King|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)
+b. f. skinner|1
+(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist (generic term)
+b.c.|1
+(adv)|BC|B.C.|before Christ
+b.c.e.|1
+(adv)|BCE|B.C.E.
+b.o.|1
+(noun)|body odor|body odour|B.O.|malodorousness (generic term)|stinkiness (generic term)|foulness (generic term)|rankness (generic term)|fetidness (generic term)
+b.t.u.|1
+(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+b.th.u.|1
+(noun)|British thermal unit|BTU|B.Th.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+b battery|1
+(noun)|B battery|battery (generic term)|electric battery (generic term)
+b cell|1
+(noun)|B cell|B lymphocyte|lymphocyte (generic term)|lymph cell (generic term)
+b complex|1
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+b horizon|1
+(noun)|B-horizon|B horizon|soil horizon (generic term)
+b lymphocyte|1
+(noun)|B cell|B lymphocyte|lymphocyte (generic term)|lymph cell (generic term)
+b vitamin|1
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+ba|2
+(noun)|barium|Ba|atomic number 56|metallic element (generic term)|metal (generic term)
+(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree (generic term)|baccalaureate (generic term)
+baa|2
+(noun)|cry (generic term)
+(verb)|bleat|blate|blat|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+baa-lamb|1
+(noun)|lamb (generic term)
+baader-meinhof gang|1
+(noun)|Baader Meinhof Gang|Baader-Meinhof Gang|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+baader meinhof gang|1
+(noun)|Baader Meinhof Gang|Baader-Meinhof Gang|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+baal|1
+(noun)|Baal|Semitic deity (generic term)
+baal merodach|1
+(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity (generic term)
+baas|1
+(noun)|foreman (generic term)|chief (generic term)|gaffer (generic term)|honcho (generic term)|boss (generic term)
+baba|1
+(noun)|cake (generic term)
+baba au rhum|1
+(noun)|rum baba|baba (generic term)
+babacu oil|1
+(noun)|babassu oil|oil (generic term)
+babar|1
+(noun)|Babar|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+babassu|1
+(noun)|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+babassu nut|1
+(noun)|seed (generic term)
+babassu oil|1
+(noun)|babacu oil|oil (generic term)
+babassu palm|1
+(noun)|babassu|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+babbitt|2
+(noun)|Babbitt metal|alloy (generic term)|metal (generic term)
+(verb)|line (generic term)
+babbitt metal|1
+(noun)|Babbitt metal|babbitt|alloy (generic term)|metal (generic term)
+babbitting|1
+(noun)|lining (generic term)|facing (generic term)
+babble|5
+(noun)|babbling|lallation|gibberish (generic term)|gibber (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|blather|smatter|blether|blither|chatter (generic term)|piffle (generic term)|palaver (generic term)|prate (generic term)|tittle-tattle (generic term)|twaddle (generic term)|clack (generic term)|maunder (generic term)|prattle (generic term)|blab (generic term)|gibber (generic term)|tattle (generic term)|blabber (generic term)|gabble (generic term)
+(verb)|ripple|guggle|burble|bubble|gurgle|sound (generic term)|go (generic term)
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+babble out|1
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+babbler|2
+(noun)|chatterer|prater|chatterbox|magpie|spouter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|cackler|oscine (generic term)|oscine bird (generic term)
+babbling|2
+(adj)|blathering|blithering|jabbering|voluble (similar term)
+(noun)|babble|lallation|gibberish (generic term)|gibber (generic term)
+babe|1
+(noun)|baby|infant|child (generic term)|kid (generic term)
+babe didrikson|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+babe ruth|1
+(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer (generic term)|baseball player (generic term)
+babe zaharias|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+babel|2
+(noun)|confusion (generic term)
+(noun)|Tower of Babel|Babel|ziggurat (generic term)|zikkurat (generic term)|zikurat (generic term)
+babelike|1
+(adj)|dependent (similar term)
+babesiidae|1
+(noun)|Babesiidae|family Babesiidae|protoctist family (generic term)
+babies'-breath|1
+(noun)|baby's breath|Gypsophila paniculata|flower (generic term)
+babies' slippers|1
+(noun)|bird's foot trefoil|bird's foot clover|bacon and eggs|Lotus corniculatus|subshrub (generic term)|suffrutex (generic term)
+babinski|1
+(noun)|Babinski|Babinski reflex|Babinski sign|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+babinski reflex|1
+(noun)|Babinski|Babinski reflex|Babinski sign|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+babinski sign|1
+(noun)|Babinski|Babinski reflex|Babinski sign|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+babiroussa|1
+(noun)|babirusa|babirussa|Babyrousa Babyrussa|swine (generic term)
+babirusa|1
+(noun)|babiroussa|babirussa|Babyrousa Babyrussa|swine (generic term)
+babirussa|1
+(noun)|babirusa|babiroussa|Babyrousa Babyrussa|swine (generic term)
+babka|1
+(noun)|coffeecake (generic term)|coffee cake (generic term)
+baboo|1
+(noun)|babu|man (generic term)|adult male (generic term)
+baboon|1
+(noun)|Old World monkey (generic term)|catarrhine (generic term)
+baboonish|1
+(adj)|Old World monkey|catarrhine (related term)
+babu|1
+(noun)|baboo|man (generic term)|adult male (generic term)
+babushka|1
+(noun)|headscarf (generic term)
+baby|7
+(noun)|babe|infant|child (generic term)|kid (generic term)
+(noun)|sister|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|young mammal (generic term)
+(noun)|offspring (generic term)|progeny (generic term)|issue (generic term)
+(noun)|child|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(verb)|pamper|featherbed|cosset|cocker|coddle|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+baby's bed|1
+(noun)|baby bed|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+baby's breath|1
+(noun)|babies'-breath|Gypsophila paniculata|flower (generic term)
+baby's dummy|1
+(noun)|comforter|pacifier|teething ring|device (generic term)
+baby's room|1
+(noun)|nursery|child's room (generic term)
+baby's tears|1
+(noun)|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover (generic term)|ground cover (generic term)
+baby-boom generation|1
+(noun)|baby boom|generation (generic term)
+baby-faced|1
+(adj)|faced (similar term)
+baby-like|1
+(adv)|baby-wise
+baby-sit|2
+(verb)|guard (generic term)
+(verb)|sit|guard (generic term)
+baby-sitter|1
+(noun)|babysitter|sitter|keeper (generic term)
+baby-walker|1
+(noun)|walker|go-cart|framework (generic term)|frame (generic term)|framing (generic term)
+baby-wise|1
+(adv)|baby-like
+baby bed|1
+(noun)|baby's bed|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+baby bird|1
+(noun)|nestling|young bird (generic term)
+baby blue-eyes|1
+(noun)|Nemophila menziesii|herb (generic term)|herbaceous plant (generic term)
+baby boom|1
+(noun)|baby-boom generation|generation (generic term)
+baby boomer|1
+(noun)|boomer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+baby buggy|1
+(noun)|baby carriage|carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+baby buster|1
+(noun)|buster|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+baby carriage|1
+(noun)|baby buggy|carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+baby doc|1
+(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator (generic term)|potentate (generic term)
+baby doctor|1
+(noun)|pediatrician|pediatrist|paediatrician|specialist (generic term)|medical specialist (generic term)
+baby farmer|1
+(noun)|keeper (generic term)
+baby grand|1
+(noun)|baby grand piano|parlor grand|parlor grand piano|parlour grand|parlour grand piano|grand piano (generic term)|grand (generic term)
+baby grand piano|1
+(noun)|baby grand|parlor grand|parlor grand piano|parlour grand|parlour grand piano|grand piano (generic term)|grand (generic term)
+baby minder|1
+(noun)|babyminder|minder|keeper (generic term)
+baby oil|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+baby powder|1
+(noun)|powder (generic term)
+baby rose|1
+(noun)|multiflora|multiflora rose|Japanese rose|Rosa multiflora|rose (generic term)|rosebush (generic term)
+baby shoe|1
+(noun)|shoe (generic term)
+baby sitting|1
+(noun)|babysitting|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+baby talk|2
+(noun)|babytalk|motherese|non-standard speech (generic term)
+(noun)|babytalk|non-standard speech (generic term)
+baby tears|1
+(noun)|baby's tears|Helxine soleirolia|Soleirolia soleirolii|groundcover (generic term)|ground cover (generic term)
+baby tooth|1
+(noun)|primary tooth|deciduous tooth|milk tooth|tooth (generic term)
+babyhood|2
+(noun)|infancy|early childhood|time of life (generic term)
+(noun)|infancy|immaturity (generic term)|immatureness (generic term)
+babyish|1
+(adj)|immature (similar term)
+babylon|1
+(noun)|Babylon|city (generic term)|metropolis (generic term)|urban center (generic term)
+babylonia|1
+(noun)|Babylonia|Chaldaea|Chaldea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+babylonian|3
+(adj)|Babylonian|city|metropolis|urban center (related term)
+(noun)|Babylonian|Semite (generic term)
+(noun)|Babylonian|cuneiform (generic term)
+babylonian captivity|1
+(noun)|Babylonian Captivity|exile (generic term)|deportation (generic term)|expatriation (generic term)|transportation (generic term)
+babylonian weeping willow|1
+(noun)|weeping willow|Babylonian weeping willow|Salix babylonica|willow (generic term)|willow tree (generic term)
+babyminder|1
+(noun)|baby minder|minder|keeper (generic term)
+babyrousa|1
+(noun)|Babyrousa|genus Babyrousa|mammal genus (generic term)
+babyrousa babyrussa|1
+(noun)|babirusa|babiroussa|babirussa|Babyrousa Babyrussa|swine (generic term)
+babysitter|1
+(noun)|baby-sitter|sitter|keeper (generic term)
+babysitting|1
+(noun)|baby sitting|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+babytalk|2
+(noun)|baby talk|motherese|non-standard speech (generic term)
+(noun)|baby talk|non-standard speech (generic term)
+bacca|1
+(noun)|simple fruit|berry (generic term)
+baccalaureate|2
+(noun)|sermon (generic term)|discourse (generic term)|preaching (generic term)
+(noun)|bachelor's degree|academic degree (generic term)|degree (generic term)
+baccarat|1
+(noun)|chemin de fer|card game (generic term)|cards (generic term)
+baccate|2
+(adj)|berrylike|berry (related term)
+(adj)|berried|bacciferous|fruitful (similar term)
+bacchanal|4
+(adj)|bacchanalian|bacchic|carousing|orgiastic|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+(noun)|drunken reveler|drunken reveller|bacchant|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|bacchant|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+bacchanalia|2
+(noun)|Dionysia|Bacchanalia|festival (generic term)|fete (generic term)
+(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanal|drunken revelry|revel (generic term)|revelry (generic term)
+bacchanalian|1
+(adj)|bacchanal|bacchic|carousing|orgiastic|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+bacchant|3
+(noun)|drunken reveler|drunken reveller|bacchanal|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|bacchanal|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+(noun)|votary (generic term)
+bacchante|1
+(noun)|votary (generic term)
+bacchantic|1
+(adj)|fan|buff|devotee|lover (related term)
+baccharis|1
+(noun)|Baccharis|genus Baccharis|asterid dicot genus (generic term)
+baccharis halimifolia|1
+(noun)|groundsel tree|groundsel bush|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub (generic term)|bush (generic term)
+baccharis pilularis|1
+(noun)|coyote brush|coyote bush|chaparral broom|kidney wort|Baccharis pilularis|shrub (generic term)|bush (generic term)
+baccharis viminea|1
+(noun)|mule fat|Baccharis viminea|shrub (generic term)|bush (generic term)
+bacchic|1
+(adj)|bacchanalian|bacchanal|carousing|orgiastic|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+bacchus|1
+(noun)|Bacchus|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+bacciferous|1
+(adj)|berried|baccate|fruitful (similar term)
+baccivorous|1
+(adj)|herbivorous (similar term)
+baccy|1
+(noun)|tobacco|plant product (generic term)|drug of abuse (generic term)|street drug (generic term)
+bach|3
+(noun)|Bach|Johann Sebastian Bach|organist (generic term)|composer (generic term)
+(noun)|Bach|music (generic term)
+(verb)|bachelor|live (generic term)
+bachelor|3
+(noun)|unmarried man|man (generic term)|adult male (generic term)
+(noun)|knight bachelor|bachelor-at-arms|knight (generic term)
+(verb)|bach|live (generic term)
+bachelor's button|2
+(noun)|cornflower|bluebottle|Centaurea cyanus|flower (generic term)
+(noun)|globe amaranth|Gomphrena globosa|flower (generic term)
+bachelor's degree|1
+(noun)|baccalaureate|academic degree (generic term)|degree (generic term)
+bachelor-at-arms|1
+(noun)|knight bachelor|bachelor|knight (generic term)
+bachelor girl|1
+(noun)|bachelorette|woman (generic term)|adult female (generic term)
+bachelor of arts|1
+(noun)|Bachelor of Arts|BA|Artium Baccalaurens|AB|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of arts in library science|1
+(noun)|Bachelor of Arts in Library Science|ABLS|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of arts in nursing|1
+(noun)|Bachelor of Arts in Nursing|BAN|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of divinity|1
+(noun)|Bachelor of Divinity|BD|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of laws|1
+(noun)|Bachelor of Laws|LLB|law degree (generic term)
+bachelor of literature|1
+(noun)|Bachelor of Literature|BLitt|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of medicine|1
+(noun)|Bachelor of Medicine|MB|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of music|1
+(noun)|Bachelor of Music|BMus|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of naval science|1
+(noun)|Bachelor of Naval Science|BNS|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of science|1
+(noun)|Bachelor of Science|BS|SB|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of science in architecture|1
+(noun)|Bachelor of Science in Architecture|BSArch|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of science in engineering|1
+(noun)|Bachelor of Science in Engineering|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor of theology|1
+(noun)|Bachelor of Theology|ThB|bachelor's degree (generic term)|baccalaureate (generic term)
+bachelor party|1
+(noun)|stag party (generic term)|smoker (generic term)
+bachelorette|1
+(noun)|bachelor girl|woman (generic term)|adult female (generic term)
+bachelorhood|2
+(noun)|time of life (generic term)
+(noun)|marital status (generic term)
+bacillaceae|1
+(noun)|Bacillaceae|family Bacillaceae|bacteria family (generic term)
+bacillar|2
+(adj)|bacillary|eubacteria|eubacterium|true bacteria (related term)
+(adj)|bacillary|bacilliform|baculiform|rod-shaped|formed (similar term)
+bacillariophyceae|1
+(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class (generic term)
+bacillary|2
+(adj)|bacillar|eubacteria|eubacterium|true bacteria (related term)
+(adj)|bacillar|bacilliform|baculiform|rod-shaped|formed (similar term)
+bacillary dysentery|1
+(noun)|shigellosis|dysentery (generic term)
+bacillary white diarrhea|1
+(noun)|pullorum disease|bacillary white diarrhoea|animal disease (generic term)
+bacillary white diarrhoea|1
+(noun)|pullorum disease|bacillary white diarrhea|animal disease (generic term)
+bacilliform|1
+(adj)|bacillar|bacillary|baculiform|rod-shaped|formed (similar term)
+bacillus|1
+(noun)|B|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+bacillus anthracis|1
+(noun)|Bacillus anthracis|anthrax bacillus|bacillus (generic term)|B (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+bacillus globigii|1
+(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|hay bacillus|bacillus (generic term)|B (generic term)
+bacillus subtilis|1
+(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|hay bacillus|bacillus (generic term)|B (generic term)
+bacitracin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+back|25
+(adj)|backmost (similar term)|hindermost (similar term)|hindmost (similar term)|rearmost (similar term)|rear (similar term)|rearward (similar term)|aft (related term)|posterior (related term)|front (antonym)
+(adj)|hind|hinder|posterior (similar term)
+(adj)|noncurrent (similar term)
+(noun)|dorsum|body part (generic term)
+(noun)|rear|side (generic term)|front (antonym)
+(noun)|rear|position (generic term)|place (generic term)|front (antonym)
+(noun)|football player (generic term)|footballer (generic term)
+(noun)|spinal column|vertebral column|spine|backbone|rachis|skeletal structure (generic term)
+(noun)|binding|book binding|cover|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|cloth covering (generic term)
+(noun)|backrest|support (generic term)
+(noun)|position (generic term)
+(verb)|endorse|indorse|plump for|plunk for|support|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|back up (related term)|back off (related term)|back down (related term)|back out (related term)
+(verb)|second|endorse|indorse|support (generic term)|back up (generic term)
+(verb)|advance (antonym)
+(verb)|finance (generic term)
+(verb)|lie (generic term)|front (antonym)
+(verb)|bet on|gage|stake|game|punt|bet (generic term)|wager (generic term)|play (generic term)
+(verb)|switch (generic term)|change over (generic term)|shift (generic term)|veer (antonym)
+(verb)|back up|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)
+(verb)|strengthen (generic term)
+(adv)|backward|backwards|rearward|rearwards|forward (antonym)
+(adv)|backward|forward (antonym)|ahead (antonym)
+(adv)|in reply
+back-blast|1
+(noun)|backblast|blowback (generic term)|backfire (generic term)
+back-channel|1
+(adj)|channel|communication channel|line (related term)
+back-formation|1
+(noun)|word (generic term)
+back-geared|1
+(adj)|double-geared|geared (similar term)
+back-number|1
+(noun)|has-been|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+back-to-back|1
+(adj)|consecutive|succeeding (similar term)
+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 (generic term)
+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 (generic term)|LSD (generic term)
+back burner|1
+(noun)|precedence (generic term)|precedency (generic term)|priority (generic term)|front burner (antonym)
+back channel|1
+(noun)|channel (generic term)|communication channel (generic term)|line (generic term)
+back circle|1
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+back country|1
+(noun)|backwoods|boondocks|hinterland|country (generic term)|rural area (generic term)
+back door|3
+(noun)|backdoor|access (generic term)
+(noun)|backdoor|access (generic term)|access code (generic term)
+(noun)|backdoor|back entrance|exterior door (generic term)|outside door (generic term)
+back down|2
+(verb)|back up|back off|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)
+(verb)|chicken out|back off|pull out|bow out|retire (generic term)|withdraw (generic term)
+back end|1
+(noun)|rear|backside|side (generic term)|face (generic term)|front (antonym)
+back entrance|1
+(noun)|back door|backdoor|exterior door (generic term)|outside door (generic term)
+back exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+back judge|1
+(noun)|football official (generic term)
+back matter|1
+(noun)|end matter|matter (generic term)
+back of beyond|1
+(noun)|depth (generic term)
+back off|2
+(verb)|back up|back down|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)
+(verb)|chicken out|pull out|back down|bow out|retire (generic term)|withdraw (generic term)
+back out|2
+(verb)|back (generic term)
+(verb)|retreat|pull back|back away|crawfish|crawfish out|pull in one's horns|withdraw
+back pack|1
+(noun)|backpack|knapsack|packsack|rucksack|haversack|bag (generic term)
+back porch|1
+(noun)|porch (generic term)
+back room|1
+(noun)|room (generic term)
+back saw|1
+(noun)|backsaw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+back street|1
+(noun)|alley|alleyway|street (generic term)
+back talk|1
+(noun)|sass|sassing|backtalk|lip|mouth|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+back tooth|1
+(noun)|posterior|tooth (generic term)
+back up|5
+(verb)|support
+(verb)|back off|back down|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)
+(verb)|back|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+(verb)|clog|choke off|clog up|congest|choke|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+backache|1
+(noun)|ache (generic term)|aching (generic term)
+backband|1
+(noun)|band (generic term)
+backbeat|1
+(noun)|rhythm (generic term)|beat (generic term)|musical rhythm (generic term)
+backbench|1
+(noun)|seat (generic term)
+backbencher|1
+(noun)|legislator (generic term)
+backbend|1
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+backbite|1
+(verb)|bitch|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+backbiter|1
+(noun)|defamer|maligner|slanderer|vilifier|libeler|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+backblast|1
+(noun)|back-blast|blowback (generic term)|backfire (generic term)
+backboard|2
+(noun)|basketball backboard|game equipment (generic term)
+(noun)|support (generic term)
+backbone|5
+(noun)|anchor|mainstay|keystone|linchpin|lynchpin|support (generic term)
+(noun)|grit|guts|moxie|sand|gumption|fortitude (generic term)
+(noun)|spinal column|vertebral column|spine|back|rachis|skeletal structure (generic term)
+(noun)|spine|part (generic term)|portion (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+backbreaking|1
+(adj)|arduous|grueling|gruelling|hard|heavy|laborious|operose|punishing|toilsome|effortful (similar term)
+backchat|1
+(noun)|banter|raillery|give-and-take|repartee (generic term)
+backcloth|1
+(noun)|backdrop|background|scenery (generic term)|scene (generic term)
+backcross|1
+(verb)|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+backdate|1
+(verb)|effect (generic term)
+backdoor|3
+(noun)|back door|access (generic term)|access code (generic term)
+(noun)|back door|back entrance|exterior door (generic term)|outside door (generic term)
+(noun)|back door|access (generic term)
+backdown|1
+(noun)|withdrawal|climb-down|retraction (generic term)|abjuration (generic term)|recantation (generic term)
+backdrop|1
+(noun)|background|backcloth|scenery (generic term)|scene (generic term)
+backed|3
+(adj)|hardbacked (similar term)|hardback (similar term)|hardbound (similar term)|hardcover (similar term)|high-backed (similar term)|low-backed (similar term)|razorback (similar term)|razor-backed (similar term)|spiny-backed (similar term)|stiff-backed (similar term)|straight-backed (similar term)|backless (antonym)
+(adj)|backed up|supported (similar term)
+(adj)|coated (similar term)
+backed up|1
+(adj)|backed|supported (similar term)
+backer|1
+(noun)|angel|patron (generic term)|sponsor (generic term)|supporter (generic term)
+backfield|1
+(noun)|formation (generic term)
+backfire|7
+(noun)|blowback|explosion (generic term)|detonation (generic term)|blowup (generic term)
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+(noun)|fire (generic term)
+(noun)|boomerang|miscalculation (generic term)|misreckoning (generic term)|misestimation (generic term)
+(verb)|backlash|recoil|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|burn (generic term)|fire (generic term)|burn down (generic term)
+backflow|1
+(noun)|backflowing|flow (generic term)|flowing (generic term)
+backflowing|1
+(noun)|backflow|flow (generic term)|flowing (generic term)
+backgammon|1
+(noun)|board game (generic term)
+backgammon board|1
+(noun)|board (generic term)|gameboard (generic term)
+background|9
+(noun)|inheritance (generic term)|heritage (generic term)
+(noun)|ground|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|background knowledge|information (generic term)
+(noun)|background signal|noise (generic term)|interference (generic term)|disturbance (generic term)
+(noun)|accompaniment (generic term)|concomitant (generic term)|attendant (generic term)|co-occurrence (generic term)
+(noun)|setting|scope|environment (generic term)
+(noun)|desktop|screen background|screen (generic term)|CRT screen (generic term)
+(noun)|backdrop|backcloth|scenery (generic term)|scene (generic term)
+(verb)|play down|downplay|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)|play up (antonym)|foreground (antonym)
+background knowledge|1
+(noun)|background|information (generic term)
+background level|1
+(noun)|noise level|amplitude (generic term)
+background noise|1
+(noun)|ground noise|background (generic term)|background signal (generic term)
+background processing|1
+(noun)|backgrounding|priority processing (generic term)
+background radiation|1
+(noun)|background (generic term)|background signal (generic term)
+background signal|1
+(noun)|background|noise (generic term)|interference (generic term)|disturbance (generic term)
+backgrounder|1
+(noun)|press conference (generic term)|news conference (generic term)
+backgrounding|1
+(noun)|background processing|priority processing (generic term)
+backhand|4
+(adj)|backhanded|forehand (antonym)
+(adj)|left-slanting|written (similar term)
+(noun)|backhand stroke|backhand shot|return (generic term)
+(verb)|hit (generic term)
+backhand drive|1
+(noun)|drive (generic term)
+backhand shot|1
+(noun)|backhand|backhand stroke|return (generic term)
+backhand stroke|1
+(noun)|backhand|backhand shot|return (generic term)
+backhanded|2
+(adj)|backhand|forehand (antonym)
+(adj)|indirect (similar term)
+backhander|1
+(noun)|blow (generic term)
+backhoe|1
+(noun)|power shovel (generic term)|excavator (generic term)|digger (generic term)|shovel (generic term)
+backing|3
+(noun)|backup|championship|patronage|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|mount|layer (generic term)|bed (generic term)|strengthener (generic term)|reinforcement (generic term)
+(noun)|support|financial support|funding|financial backing|resource (generic term)
+backlash|3
+(noun)|recoil|repercussion|rebound|movement (generic term)|motion (generic term)
+(noun)|reaction (generic term)
+(verb)|backfire|recoil|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+backless|1
+(adj)|low-cut (similar term)|backed (antonym)
+backlighting|1
+(noun)|lighting (generic term)
+backlog|4
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|log|firewood (generic term)
+(noun)|reserve|stockpile|accumulation (generic term)
+(verb)|accumulate (generic term)|cumulate (generic term)|conglomerate (generic term)|pile up (generic term)|gather (generic term)|amass (generic term)
+backmost|1
+(adj)|hindermost|hindmost|rearmost|back (similar term)
+backpack|2
+(noun)|back pack|knapsack|packsack|rucksack|haversack|bag (generic term)
+(verb)|pack|hike (generic term)
+backpacker|1
+(noun)|packer|hiker (generic term)|tramp (generic term)|tramper (generic term)
+backpacking|1
+(noun)|packing|carry (generic term)
+backpacking tent|1
+(noun)|pack tent|tent (generic term)|collapsible shelter (generic term)
+backpedal|3
+(verb)|bicycle (generic term)|cycle (generic term)|bike (generic term)|pedal (generic term)|wheel (generic term)
+(verb)|step (generic term)
+(verb)|rethink (generic term)
+backplate|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+backrest|1
+(noun)|back|support (generic term)
+backroom|1
+(noun)|facility (generic term)|installation (generic term)
+backroom boy|1
+(noun)|brain truster|adviser (generic term)|advisor (generic term)|consultant (generic term)
+backsaw|1
+(noun)|back saw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+backscatter|1
+(verb)|break up (generic term)|disperse (generic term)|scatter (generic term)
+backscratcher|2
+(noun)|opportunist (generic term)|self-seeker (generic term)
+(noun)|scratcher (generic term)
+backseat|2
+(noun)|inferiority (generic term)|lower status (generic term)|lower rank (generic term)
+(noun)|seat (generic term)
+backseat driver|1
+(noun)|meddler (generic term)
+backsheesh|1
+(noun)|gratuity|tip|pourboire|baksheesh|bakshish|bakshis|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+backside|2
+(noun)|rear|back end|side (generic term)|face (generic term)|front (antonym)
+(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 (generic term)
+backslap|1
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+backslapper|1
+(noun)|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+backslide|1
+(verb)|lapse|slip (generic term)|drop off (generic term)|drop away (generic term)|fall away (generic term)
+backslider|1
+(noun)|recidivist|reversionist|wrongdoer (generic term)|offender (generic term)
+backsliding|1
+(noun)|lapse|lapsing|relapse|relapsing|reversion|reverting|failure (generic term)
+backspace|2
+(noun)|backspace key|backspacer|key (generic term)
+(verb)|type (generic term)|typewrite (generic term)
+backspace character|1
+(noun)|control character (generic term)|ASCII control character (generic term)
+backspace key|1
+(noun)|backspace|backspacer|key (generic term)
+backspacer|1
+(noun)|backspace key|backspace|key (generic term)
+backspin|1
+(noun)|spin (generic term)
+backstage|2
+(adj)|private (similar term)
+(noun)|wing|offstage|stage (generic term)
+backstair|1
+(adj)|backstairs|furtive|covert (similar term)
+backstairs|2
+(adj)|backstair|furtive|covert (similar term)
+(noun)|stairway (generic term)|staircase (generic term)
+backstay|1
+(noun)|stay (generic term)
+backstitch|2
+(noun)|stitch (generic term)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+backstop|4
+(noun)|catcher|infielder (generic term)
+(noun)|fence (generic term)|fencing (generic term)
+(noun)|precaution (generic term)|safeguard (generic term)|guard (generic term)
+(verb)|play (generic term)
+backstroke|2
+(noun)|swimming stroke (generic term)
+(verb)|swim (generic term)
+backstroker|1
+(noun)|swimmer (generic term)
+backswept|1
+(adj)|sweptback|backward (similar term)
+backswimmer|1
+(noun)|Notonecta undulata|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+backsword|2
+(noun)|singlestick|fencing stick|stick (generic term)
+(noun)|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+backtalk|1
+(noun)|sass|sassing|back talk|lip|mouth|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+backtrack|1
+(verb)|turn back|double back|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+backup|5
+(noun)|accretion (generic term)|accumulation (generic term)
+(noun)|stand-in|substitute|relief|reliever|backup man|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|accompaniment|musical accompaniment|support|part (generic term)|voice (generic term)
+(noun)|computer backup|duplicate (generic term)|duplication (generic term)
+(noun)|backing|championship|patronage|blessing (generic term)|approval (generic term)|approving (generic term)
+backup file|1
+(noun)|computer file (generic term)
+backup man|1
+(noun)|stand-in|substitute|relief|reliever|backup|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+backup system|1
+(noun)|computer system (generic term)|computing system (generic term)|automatic data processing system (generic term)|ADP system (generic term)|ADPS (generic term)
+backward|6
+(adj)|backswept (similar term)|sweptback (similar term)|cacuminal (similar term)|retroflex (similar term)|converse (similar term)|reversed (similar term)|transposed (similar term)|inverse (similar term)|reverse (similar term)|rearward (similar term)|reverse (similar term)|receding (similar term)|reflexive (similar term)|self-referent (similar term)|regardant (similar term)|retracted (similar term)|retral (similar term)|retrograde (similar term)|retroflex (similar term)|retroflexed (similar term)|returning (similar term)|reversive (similar term)|regressive (related term)|retrospective (related term)|forward (antonym)
+(adj)|bashful (similar term)|blate (similar term)|timid (related term)|forward (antonym)
+(adj)|feebleminded|retarded (similar term)
+(adv)|back|backwards|rearward|rearwards|forward (antonym)
+(adv)|backwards
+(adv)|back|forward (antonym)|ahead (antonym)
+backward and forward|1
+(adv)|back and forth|to and fro
+backwardness|1
+(noun)|retardation|mental retardation|slowness|subnormality|stupidity (generic term)
+backwards|2
+(adv)|back|backward|rearward|rearwards|forward (antonym)
+(adv)|backward
+backwash|3
+(noun)|slipstream|airstream|race|wash|flow (generic term)
+(noun)|aftermath|wake|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|wake|wave (generic term)|moving ridge (generic term)
+backwater|2
+(noun)|body of water (generic term)|water (generic term)
+(noun)|region (generic term)
+backwoods|1
+(noun)|back country|boondocks|hinterland|country (generic term)|rural area (generic term)
+backwoodsman|1
+(noun)|frontiersman|mountain man|pioneer (generic term)
+backyard|1
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+bacon|3
+(noun)|cut of pork (generic term)
+(noun)|Bacon|Roger Bacon|monk (generic term)|monastic (generic term)|scientist (generic term)|man of science (generic term)
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+bacon-lettuce-tomato sandwich|1
+(noun)|BLT|sandwich (generic term)
+bacon and eggs|2
+(noun)|bird's foot trefoil|bird's foot clover|babies' slippers|Lotus corniculatus|subshrub (generic term)|suffrutex (generic term)
+(noun)|dish (generic term)
+bacon rind|1
+(noun)|rind (generic term)
+bacon strip|1
+(noun)|bacon (generic term)
+bacteremia|1
+(noun)|bacteriemia|bacteriaemia|pathology (generic term)
+bacteremic|1
+(adj)|pathology (related term)
+bacteria|1
+(noun)|bacterium|microorganism (generic term)|micro-organism (generic term)
+bacteria bed|1
+(noun)|filter (generic term)
+bacteria family|1
+(noun)|family (generic term)
+bacteria genus|1
+(noun)|genus (generic term)
+bacteria order|1
+(noun)|ordering (generic term)|order (generic term)|ordination (generic term)
+bacteria species|1
+(noun)|species (generic term)
+bacteriacide|1
+(noun)|bactericide|chemical (generic term)|chemical substance (generic term)
+bacteriaemia|1
+(noun)|bacteremia|bacteriemia|pathology (generic term)
+bacterial|1
+(adj)|microorganism|micro-organism (related term)
+bacterial plaque|1
+(noun)|dental plaque|plaque (generic term)
+bacterial toxin|1
+(noun)|toxin (generic term)
+bactericidal|1
+(adj)|disinfectant|germicidal|antiseptic (similar term)
+bactericide|2
+(noun)|bacteriacide|chemical (generic term)|chemical substance (generic term)
+(noun)|antibacterial|antibacterial drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+bacteriemia|1
+(noun)|bacteremia|bacteriaemia|pathology (generic term)
+bacteriochlorophyll|1
+(noun)|pigment (generic term)
+bacterioid|1
+(adj)|bacteroidal|bacteroid|bacterioidal|microorganism|micro-organism (related term)
+bacterioidal|1
+(adj)|bacteroidal|bacteroid|bacterioid|microorganism|micro-organism (related term)
+bacteriologic|1
+(adj)|bacteriological|medicine|medical specialty (related term)
+bacteriological|1
+(adj)|bacteriologic|medicine|medical specialty (related term)
+bacteriological warfare|1
+(noun)|germ warfare|biological warfare (generic term)|BW (generic term)|biological attack (generic term)|biologic attack (generic term)|bioattack (generic term)
+bacteriologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+bacteriology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+bacteriolysis|1
+(noun)|lysis (generic term)
+bacteriolytic|1
+(adj)|lysis (related term)
+bacteriophage|1
+(noun)|phage|virus (generic term)
+bacteriophagic|1
+(adj)|bacteriophagous|virus (related term)
+bacteriophagous|1
+(adj)|bacteriophagic|virus (related term)
+bacteriostasis|1
+(noun)|organic process (generic term)|biological process (generic term)
+bacteriostat|1
+(noun)|agent (generic term)
+bacteriostatic|1
+(adj)|organic process|biological process (related term)
+bacterise|1
+(verb)|bacterize|subject (generic term)
+bacterium|1
+(noun)|bacteria|microorganism (generic term)|micro-organism (generic term)
+bacterize|1
+(verb)|bacterise|subject (generic term)
+bacteroid|2
+(adj)|bacteroidal|bacterioidal|bacterioid|microorganism|micro-organism (related term)
+(noun)|bacteria (generic term)|bacterium (generic term)
+bacteroidaceae|1
+(noun)|Bacteroidaceae|family Bacteroidaceae|bacteria family (generic term)
+bacteroidal|1
+(adj)|bacteroid|bacterioidal|bacterioid|microorganism|micro-organism (related term)
+bacteroides|1
+(noun)|Bacteroides|genus Bacteroides|bacteria genus (generic term)
+bactrian camel|1
+(noun)|Bactrian camel|Camelus bactrianus|camel (generic term)
+baculiform|1
+(adj)|bacillar|bacillary|bacilliform|rod-shaped|formed (similar term)
+bad|16
+(adj)|atrocious (similar term)|abominable (similar term)|awful (similar term)|dreadful (similar term)|painful (similar term)|terrible (similar term)|unspeakable (similar term)|corked (similar term)|corky (similar term)|deplorable (similar term)|distressing (similar term)|lamentable (similar term)|pitiful (similar term)|sad (similar term)|sorry (similar term)|fearful (similar term)|frightful (similar term)|hard (similar term)|tough (similar term)|hopeless (similar term)|horrid (similar term)|icky (similar term)|crappy (similar term)|lousy (similar term)|rotten (similar term)|shitty (similar term)|stinking (similar term)|stinky (similar term)|ill (similar term)|incompetent (similar term)|unskilled (similar term)|mediocre (similar term)|mischievous (similar term)|naughty (similar term)|negative (similar term)|poor (similar term)|pretty (similar term)|rubber (similar term)|no-good (similar term)|severe (similar term)|swingeing (similar term)|uncool (similar term)|unfavorable (similar term)|unfavourable (similar term)|unsuitable (similar term)|disobedient (related term)|evil (related term)|unfavorable (related term)|unfavourable (related term)|worse (related term)|worst (related term)|good (antonym)
+(adj)|big|intense (similar term)
+(adj)|tough|uncomfortable (similar term)
+(adj)|spoiled|spoilt|stale (similar term)
+(adj)|regretful|sorry|penitent (related term)|repentant (related term)|unregretful (antonym)
+(adj)|uncollectible|invalid (similar term)
+(adj)|inferior (similar term)
+(adj)|nonstandard (similar term)
+(adj)|risky|high-risk|speculative|unsound (similar term)
+(adj)|unfit|unsound|unhealthy (similar term)
+(adj)|harmful (similar term)
+(adj)|immoral|evil (similar term)
+(adj)|forged|counterfeit (similar term)|imitative (similar term)
+(adj)|defective|malfunctioning (similar term)|nonfunctional (similar term)
+(noun)|badness|quality (generic term)|goodness (antonym)|good (antonym)
+(adv)|badly
+bad-mannered|1
+(adj)|ill-mannered|rude|unmannered|unmannerly|impolite (similar term)
+bad-tempered|1
+(adj)|crabbed|crabby|cross|fussy|grouchy|grumpy|ill-tempered|ill-natured (similar term)
+bad block|1
+(noun)|block (generic term)
+bad blood|1
+(noun)|animosity|animus|hostility (generic term)|enmity (generic term)|ill will (generic term)
+bad check|1
+(noun)|bad cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+bad cheque|1
+(noun)|bad check|check (generic term)|bank check (generic term)|cheque (generic term)
+bad condition|1
+(noun)|unfitness|softness|poor shape|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|fitness (antonym)
+bad debt|1
+(noun)|debt (generic term)
+bad egg|1
+(noun)|bad person (generic term)|good egg (antonym)
+bad fairy|1
+(noun)|evil spirit (generic term)
+bad guy|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|good guy (antonym)
+bad hat|1
+(noun)|troublemaker|trouble maker|troubler|mischief-maker|unwelcome person (generic term)|persona non grata (generic term)
+bad lands|1
+(noun)|Bad Lands|Badlands|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+bad luck|3
+(noun)|misfortune|tough luck|ill luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|good luck (antonym)|good fortune (antonym)
+(noun)|mischance|mishap|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+(noun)|misfortune|trouble (generic term)
+bad manners|1
+(noun)|ill-breeding|impoliteness (generic term)
+bad person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|good person (antonym)
+bad temper|1
+(noun)|ill temper|anger (generic term)|choler (generic term)|ire (generic term)
+bad weather|1
+(noun)|inclemency|inclementness|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)|good weather (antonym)
+badaga|2
+(noun)|Badaga|Dravidian (generic term)
+(noun)|Badaga|Kannada (generic term)|Kanarese (generic term)
+baddeleyite|1
+(noun)|mineral (generic term)
+baddie|1
+(noun)|villain|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+bade|1
+(noun)|Bade|West Chadic (generic term)
+badge|3
+(noun)|emblem (generic term)|allegory (generic term)
+(noun)|feature (generic term)|characteristic (generic term)
+(verb)|tag (generic term)|label (generic term)|mark (generic term)
+badger|4
+(noun)|Wisconsinite|Badger|American (generic term)
+(noun)|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+(verb)|tease|pester|bug|beleaguer|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|persuade (generic term)
+badger-like|1
+(adj)|animal (similar term)
+badger dog|1
+(noun)|dachshund|dachsie|hunting dog (generic term)
+badger skunk|1
+(noun)|hog-nosed skunk|hognosed skunk|rooter skunk|Conepatus leuconotus|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+badger state|1
+(noun)|Wisconsin|Badger State|WI|American state (generic term)
+badgerer|1
+(noun)|heckler|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+badgering|1
+(noun)|worrying|torment|bedevilment|harassment (generic term)|molestation (generic term)
+badinage|1
+(noun)|banter (generic term)|raillery (generic term)|give-and-take (generic term)|backchat (generic term)
+badlands|2
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|Bad Lands|Badlands|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+badlands national park|1
+(noun)|Badlands National Park|national park (generic term)
+badly|7
+(adv)|severely|gravely|seriously
+(adv)|ill|poorly|well (antonym)
+(adv)|mischievously|naughtily
+(adv)|bad
+(adv)|disadvantageously|advantageously (antonym)|well (antonym)
+(adv)|ill|well (antonym)
+(adv)|well (antonym)
+badminton|1
+(noun)|court game (generic term)
+badminton court|1
+(noun)|court (generic term)
+badminton equipment|1
+(noun)|sports equipment (generic term)
+badminton racket|1
+(noun)|badminton racquet|battledore|racket (generic term)|racquet (generic term)
+badminton racquet|1
+(noun)|badminton racket|battledore|racket (generic term)|racquet (generic term)
+badmouth|1
+(verb)|malign|traduce|drag through the mud|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+badness|3
+(noun)|bad|quality (generic term)|goodness (antonym)|good (antonym)
+(noun)|severity|severeness|intensity (generic term)|intensiveness (generic term)
+(noun)|naughtiness|mischievousness|disobedience (generic term)
+baeda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+baedeker|2
+(noun)|Baedeker|Karl Baedeker|publisher (generic term)
+(noun)|travel guidebook (generic term)|itinerary (generic term)
+baffin bay|1
+(noun)|Baffin Bay|sea (generic term)
+baffin island|1
+(noun)|Baffin Island|island (generic term)
+baffle|4
+(noun)|baffle board|plate (generic term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|regulate|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+baffle board|1
+(noun)|baffle|plate (generic term)
+baffled|2
+(adj)|befuddled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed (similar term)
+(noun)|people (generic term)
+bafflement|1
+(noun)|bewilderment|obfuscation|puzzlement|befuddlement|mystification|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+baffling|1
+(adj)|knotty|problematic|problematical|tough|difficult (similar term)|hard (similar term)
+bag|14
+(noun)|container (generic term)
+(noun)|indefinite quantity (generic term)
+(noun)|base|baseball equipment (generic term)
+(noun)|handbag|pocketbook|purse|container (generic term)
+(noun)|bagful|containerful (generic term)
+(noun)|traveling bag|grip|suitcase|baggage (generic term)|luggage (generic term)
+(noun)|old bag|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|udder|mammary gland (generic term)|mamma (generic term)
+(noun)|cup of tea|dish|activity (generic term)
+(verb)|capture (generic term)|catch (generic term)
+(verb)|sag (generic term)|droop (generic term)|swag (generic term)|flag (generic term)
+(verb)|bulge|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+(verb)|pocket|steal (generic term)
+(verb)|pack (generic term)
+bag-shaped|1
+(adj)|formed (similar term)
+bag lady|1
+(noun)|homeless (generic term)|homeless person (generic term)
+bag of tricks|1
+(noun)|know-how (generic term)
+bagascosis|1
+(noun)|bagassosis|alveolitis (generic term)
+bagasse|1
+(noun)|pulp (generic term)
+bagassosis|1
+(noun)|bagascosis|alveolitis (generic term)
+bagatelle|3
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|fluff|frippery|frivolity|triviality (generic term)|trivia (generic term)|trifle (generic term)|small beer (generic term)
+(noun)|bar billiards|table game (generic term)
+bagdad|1
+(noun)|Baghdad|Bagdad|capital of Iraq|national capital (generic term)
+bagel|1
+(noun)|beigel|bun (generic term)|roll (generic term)
+bagful|1
+(noun)|bag|containerful (generic term)
+baggage|3
+(noun)|luggage|case (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+(noun)|materiel (generic term)|equipage (generic term)
+baggage car|1
+(noun)|luggage van|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+baggage claim|1
+(noun)|area (generic term)
+baggageman|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+bagger|2
+(noun)|packer|boxer|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|machine (generic term)
+bagging|1
+(noun)|sacking|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+baggy|1
+(adj)|loose-fitting|sloppy|loose (similar term)
+baghdad|1
+(noun)|Baghdad|Bagdad|capital of Iraq|national capital (generic term)
+bagman|2
+(noun)|traveling salesman|travelling salesman|commercial traveler|commercial traveller|roadman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|racketeer (generic term)
+bagnio|2
+(noun)|whorehouse|brothel|bordello|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+(noun)|bathhouse|house (generic term)
+bagpipe|1
+(noun)|pipe|wind instrument (generic term)|wind (generic term)
+bagpiper|1
+(noun)|piper|musician (generic term)|instrumentalist (generic term)|player (generic term)
+baguet|1
+(noun)|baguette|French bread (generic term)
+baguette|1
+(noun)|baguet|French bread (generic term)
+bahai|2
+(adj)|Bahai|religion|faith|religious belief (related term)
+(noun)|Bahai|disciple (generic term)|adherent (generic term)|teacher (generic term)|instructor (generic term)
+bahaism|1
+(noun)|Bahaism|religion (generic term)|faith (generic term)|religious belief (generic term)
+bahama grass|1
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+bahama islands|1
+(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country (generic term)|state (generic term)|land (generic term)
+bahamas|1
+(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country (generic term)|state (generic term)|land (generic term)
+bahamian|2
+(adj)|Bahamian|country|state|land (related term)
+(noun)|Bahamian|West Indian (generic term)
+bahamian dollar|1
+(noun)|Bahamian dollar|dollar (generic term)
+bahasa|1
+(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay (generic term)
+bahasa indonesia|1
+(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay (generic term)
+bahasa kebangsaan|1
+(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay (generic term)
+bahasa malaysia|1
+(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay (generic term)
+bahasa melayu|1
+(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay (generic term)
+bahia blanca|1
+(noun)|Bahia Blanca|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bahia coquilla|1
+(noun)|piassava palm|pissaba palm|Bahia piassava|Attalea funifera|feather palm (generic term)
+bahia grass|1
+(noun)|Bahia grass|Paspalum notatum|grass (generic term)
+bahia piassava|1
+(noun)|piassava palm|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm (generic term)
+bahrain|2
+(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island (generic term)
+(noun)|Bahrain|State of Bahrain|Bahrein|Asian country (generic term)|Asian nation (generic term)
+bahrain dinar|1
+(noun)|Bahrain dinar|dinar|Bahrainian monetary unit (generic term)
+bahrain island|1
+(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island (generic term)
+bahraini|2
+(adj)|Bahraini|island (related term)
+(noun)|Bahraini|Bahreini|Arab (generic term)|Arabian (generic term)
+bahrainian monetary unit|1
+(noun)|Bahrainian monetary unit|monetary unit (generic term)
+bahrein|2
+(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island (generic term)
+(noun)|Bahrain|State of Bahrain|Bahrein|Asian country (generic term)|Asian nation (generic term)
+bahrein island|1
+(noun)|Bahrain|Bahrain Island|Bahrein|Bahrein Island|island (generic term)
+bahreini|1
+(noun)|Bahraini|Bahreini|Arab (generic term)|Arabian (generic term)
+baht|1
+(noun)|tical|Thai monetary unit (generic term)
+bai|1
+(noun)|Bai|Baic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+baic|1
+(noun)|Bai|Baic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+bail|7
+(noun)|bail bond|bond|recognizance (generic term)|recognisance (generic term)
+(noun)|legal system (generic term)
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)
+(verb)|hand over (generic term)|fork over (generic term)|fork out (generic term)|fork up (generic term)|turn in (generic term)|get in (generic term)|deliver (generic term)|render (generic term)
+(verb)|guarantee (generic term)|vouch (generic term)
+(verb)|empty (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+bail bond|1
+(noun)|bail|bond|recognizance (generic term)|recognisance (generic term)
+bail out|2
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)
+(verb)|bale out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+bailable|2
+(adj)|permissive (similar term)
+(adj)|eligible (similar term)
+bailee|1
+(noun)|agent (generic term)
+bailey|4
+(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer (generic term)|lexicologist (generic term)
+(noun)|court (generic term)|courtyard (generic term)
+(noun)|rampart (generic term)|bulwark (generic term)|wall (generic term)
+bailey bridge|1
+(noun)|Bailey bridge|bridge (generic term)|span (generic term)
+bailiff|1
+(noun)|official (generic term)|functionary (generic term)
+bailiffship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+bailiwick|2
+(noun)|jurisdiction (generic term)
+(noun)|discipline|subject|subject area|subject field|field|field of study|study|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+bailment|1
+(noun)|delivery (generic term)|livery (generic term)|legal transfer (generic term)
+bailor|1
+(noun)|deliverer (generic term)
+bain-marie|1
+(noun)|pan (generic term)
+baiomys|1
+(noun)|Baiomys|genus Baiomys|mammal genus (generic term)
+baiomys taylori|1
+(noun)|pygmy mouse|Baiomys taylori|wood mouse (generic term)
+bairava|1
+(noun)|Bairava|Siva (generic term)|Shiva (generic term)
+bairdiella|1
+(noun)|Bairdiella|genus Bairdiella|fish genus (generic term)
+bairdiella chrysoura|1
+(noun)|silver perch|mademoiselle|Bairdiella chrysoura|drum (generic term)|drumfish (generic term)
+bairiki|1
+(noun)|Tarawa|Bairiki|national capital (generic term)
+bairn|1
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+baisa|1
+(noun)|baiza|Omani monetary unit (generic term)
+baisakh|1
+(noun)|Baisakh|Vaisakha|Hindu calendar month (generic term)
+bait|5
+(noun)|come-on|hook|lure|sweetener|temptation (generic term)|enticement (generic term)
+(noun)|decoy|lure|device (generic term)
+(verb)|tease|razz|rag|cod|tantalize|tantalise|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+bait and switch|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+bait casting|1
+(noun)|casting (generic term)|cast (generic term)
+baiting|1
+(noun)|harassment (generic term)|molestation (generic term)
+baiza|1
+(noun)|baisa|Omani monetary unit (generic term)
+baize|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+baja california|1
+(noun)|Lower California|Baja California|peninsula (generic term)
+bake|3
+(verb)|cook (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|broil|heat (generic term)|heat up (generic term)
+bakeapple|1
+(noun)|cloudberry|dwarf mulberry|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+baked|3
+(adj)|adust|parched|scorched|sunbaked|dry (similar term)
+(adj)|cooked (similar term)
+(adj)|burned|burnt|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+baked-apple berry|1
+(noun)|cloudberry|dwarf mulberry|bakeapple|salmonberry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+baked alaska|1
+(noun)|baked Alaska|dessert (generic term)|sweet (generic term)|afters (generic term)
+baked egg|1
+(noun)|shirred egg|egg en cocotte|dish (generic term)
+baked goods|1
+(noun)|food (generic term)|solid food (generic term)
+baked potato|1
+(noun)|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+bakehouse|1
+(noun)|bakery|bakeshop|workplace (generic term)|work (generic term)|shop (generic term)|store (generic term)
+bakelite|1
+(noun)|Bakelite|plastic (generic term)
+baker|2
+(noun)|merchant (generic term)|merchandiser (generic term)
+(noun)|bread maker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+baker's dozen|1
+(noun)|thirteen|13|XIII|long dozen|large integer (generic term)
+baker's eczema|1
+(noun)|allergic eczema (generic term)
+baker's yeast|1
+(noun)|brewer's yeast|Saccharomyces cerevisiae|yeast (generic term)
+bakersfield|1
+(noun)|Bakersfield|city (generic term)|metropolis (generic term)|urban center (generic term)
+bakery|1
+(noun)|bakeshop|bakehouse|workplace (generic term)|work (generic term)|shop (generic term)|store (generic term)
+bakeshop|1
+(noun)|bakery|bakehouse|workplace (generic term)|work (generic term)|shop (generic term)|store (generic term)
+baking|3
+(adj)|baking hot|hot (similar term)
+(noun)|creating from raw materials (generic term)
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+baking-powder biscuit|1
+(noun)|biscuit (generic term)
+baking chocolate|1
+(noun)|bitter chocolate|cooking chocolate|chocolate (generic term)
+baking hot|1
+(adj)|baking|hot (similar term)
+baking powder|1
+(noun)|leaven (generic term)|leavening (generic term)
+baking soda|1
+(noun)|bicarbonate of soda|sodium hydrogen carbonate|sodium bicarbonate|saleratus|bicarbonate (generic term)|hydrogen carbonate (generic term)
+bakke decision|1
+(noun)|Bakke decision|opinion (generic term)|ruling (generic term)
+baklava|1
+(noun)|pastry (generic term)
+baksheesh|1
+(noun)|gratuity|tip|pourboire|bakshish|bakshis|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+bakshis|1
+(noun)|gratuity|tip|pourboire|baksheesh|bakshish|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+bakshish|1
+(noun)|gratuity|tip|pourboire|baksheesh|bakshis|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+baku|1
+(noun)|Baku|capital of Azerbaijan|capital (generic term)|port (generic term)
+bakunin|1
+(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+balaclava|1
+(noun)|balaclava helmet|cap (generic term)
+balaclava helmet|1
+(noun)|balaclava|cap (generic term)
+balaena|1
+(noun)|Balaena|genus Balaena|mammal genus (generic term)
+balaena mysticetus|1
+(noun)|bowhead|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale (generic term)|whalebone whale (generic term)
+balaeniceps|1
+(noun)|Balaeniceps|genus Balaeniceps|bird genus (generic term)
+balaeniceps rex|1
+(noun)|shoebill|shoebird|Balaeniceps rex|wading bird (generic term)|wader (generic term)
+balaenicipitidae|1
+(noun)|Balaenicipitidae|family Balaenicipitidae|bird family (generic term)
+balaenidae|1
+(noun)|Balaenidae|family Balaenidae|mammal family (generic term)
+balaenoptera|1
+(noun)|Balaenoptera|genus Balaenoptera|mammal genus (generic term)
+balaenoptera acutorostrata|1
+(noun)|lesser rorqual|piked whale|minke whale|Balaenoptera acutorostrata|rorqual (generic term)|razorback (generic term)
+balaenoptera borealis|1
+(noun)|sei whale|Balaenoptera borealis|rorqual (generic term)|razorback (generic term)
+balaenoptera musculus|1
+(noun)|blue whale|sulfur bottom|Balaenoptera musculus|baleen whale (generic term)|whalebone whale (generic term)
+balaenoptera physalus|1
+(noun)|finback|finback whale|fin whale|common rorqual|Balaenoptera physalus|rorqual (generic term)|razorback (generic term)
+balaenopteridae|1
+(noun)|Balaenopteridae|family Balaenopteridae|mammal family (generic term)
+balagan|1
+(noun)|chaos (generic term)|pandemonium (generic term)|bedlam (generic term)|topsy-turvydom (generic term)|topsy-turvyness (generic term)
+balalaika|1
+(noun)|chordophone (generic term)
+balance|16
+(noun)|equilibrium (generic term)|imbalance (antonym)
+(noun)|scale (generic term)|weighing machine (generic term)
+(noun)|equality (generic term)
+(noun)|proportion|proportionality|placement (generic term)|arrangement (generic term)
+(noun)|equilibrium|equipoise|counterbalance|structure (generic term)|construction (generic term)
+(noun)|remainder|residual|residue|residuum|rest|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|remainder (generic term)|difference (generic term)
+(noun)|Libra|Balance|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|symmetry|symmetricalness|correspondence|spatial property (generic term)|spatiality (generic term)|asymmetry (antonym)
+(noun)|counterweight|counterbalance|counterpoise|equalizer|equaliser|weight (generic term)
+(noun)|balance wheel|wheel (generic term)
+(verb)|equilibrate|equilibrize|equilibrise|match (generic term)|fit (generic term)|unbalance (antonym)
+(verb)|account (generic term)|calculate (generic term)
+(verb)|poise|hold (generic term)|carry (generic term)|bear (generic term)
+(verb)|be (generic term)
+balance-of-payments problem|1
+(noun)|problem (generic term)|job (generic term)
+balance beam|1
+(noun)|beam|gymnastic apparatus (generic term)|exerciser (generic term)
+balance of international payments|1
+(noun)|balance of payments|accounting (generic term)
+balance of payments|1
+(noun)|balance of international payments|accounting (generic term)
+balance of power|1
+(noun)|equilibrium (generic term)
+balance of trade|1
+(noun)|trade balance|visible balance|trade gap|balance (generic term)
+balance sheet|1
+(noun)|record (generic term)
+balance wheel|1
+(noun)|balance|wheel (generic term)
+balanced|2
+(adj)|counterbalanced (similar term)|counterpoised (similar term)|harmonious (similar term)|proportionate (similar term)|symmetrical (similar term)|poised (similar term)|self-balancing (similar term)|stable (similar term)|well-balanced (similar term)|unbalanced (antonym)
+(adj)|equal (similar term)
+balanced budget|1
+(noun)|budget (generic term)
+balanced diet|1
+(noun)|diet (generic term)
+balancer|2
+(noun)|acrobat (generic term)
+(noun)|halter|haltere|wing (generic term)
+balanchine|1
+(noun)|Balanchine|George Balanchine|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+balancing|1
+(noun)|reconciliation|equalization (generic term)|equalisation (generic term)|leveling (generic term)
+balanidae|1
+(noun)|Balanidae|family Balanidae|arthropod family (generic term)
+balanitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+balanoposthitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+balanus|1
+(noun)|Balanus|genus Balanus|arthropod genus (generic term)
+balanus balanoides|1
+(noun)|acorn barnacle|rock barnacle|Balanus balanoides|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+balarama|1
+(noun)|Balarama|Rama (generic term)
+balas|1
+(noun)|balas ruby|spinel ruby (generic term)|ruby spinel (generic term)
+balas ruby|1
+(noun)|balas|spinel ruby (generic term)|ruby spinel (generic term)
+balata|2
+(noun)|gutta balata|gum (generic term)
+(noun)|balata tree|beefwood|bully tree|Manilkara bidentata|tree (generic term)
+balata tree|1
+(noun)|balata|beefwood|bully tree|Manilkara bidentata|tree (generic term)
+balaton|1
+(noun)|Balaton|Lake Balaton|Plattensee|lake (generic term)
+balboa|2
+(noun)|Panamanian monetary unit (generic term)
+(noun)|Balboa|Vasco Nunez de Balboa|navigator (generic term)
+balbriggan|1
+(noun)|knit (generic term)|knitted fabric (generic term)
+balconied|1
+(adj)|unbalconied (antonym)
+balcony|1
+(noun)|structure (generic term)|construction (generic term)
+bald|4
+(adj)|barefaced|overt (similar term)|open (similar term)
+(adj)|bald-headed|bald-pated|hairless (similar term)
+(adj)|denuded|denudate|bare (similar term)
+(verb)|turn (generic term)|grow (generic term)
+bald-faced|2
+(adj)|faced (similar term)
+(adj)|audacious|barefaced|bodacious|brassy|brazen|brazen-faced|insolent|unashamed (similar term)
+bald-faced hornet|1
+(noun)|white-faced hornet|Vespula maculata|hornet (generic term)
+bald-headed|1
+(adj)|bald|bald-pated|hairless (similar term)
+bald-pated|1
+(adj)|bald|bald-headed|hairless (similar term)
+bald cypress|2
+(noun)|pond cypress|Taxodium ascendens|cypress (generic term)
+(noun)|swamp cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress (generic term)
+bald eagle|1
+(noun)|American eagle|Haliaeetus leucocephalus|eagle (generic term)|bird of Jove (generic term)
+baldachin|1
+(noun)|canopy (generic term)
+balder|1
+(noun)|Balder|Baldr|Norse deity (generic term)
+balderdash|1
+(noun)|fiddle-faddle|piffle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+baldhead|1
+(noun)|baldpate|baldy|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+balding|1
+(adj)|hairless (similar term)
+baldness|1
+(noun)|phalacrosis|hairlessness (generic term)|depilation (generic term)
+baldpate|2
+(noun)|baldhead|baldy|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|American widgeon|Anas americana|widgeon (generic term)|wigeon (generic term)|Anas penelope (generic term)
+baldr|1
+(noun)|Balder|Baldr|Norse deity (generic term)
+baldric|1
+(noun)|baldrick|belt (generic term)
+baldrick|1
+(noun)|baldric|belt (generic term)
+baldwin|3
+(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer (generic term)|author (generic term)
+(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Baldwin|eating apple (generic term)|dessert apple (generic term)
+baldy|1
+(noun)|baldhead|baldpate|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bale|3
+(noun)|bundle (generic term)|sheaf (generic term)
+(noun)|Basel|Basle|Bale|city (generic term)|metropolis (generic term)|urban center (generic term)
+(verb)|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+bale out|1
+(verb)|bail out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+balearic islands|1
+(noun)|Balearic Islands|archipelago (generic term)
+baleen|1
+(noun)|whalebone|horn (generic term)
+baleen whale|1
+(noun)|whalebone whale|whale (generic term)
+balefire|1
+(noun)|bonfire|fire (generic term)
+baleful|2
+(adj)|baneful|maleficent (similar term)
+(adj)|forbidding|menacing|minacious|minatory|ominous|sinister|threatening|alarming (similar term)
+balefulness|1
+(noun)|maleficence|mischief|evil (generic term)|evilness (generic term)|beneficence (antonym)
+balenciaga|1
+(noun)|Balenciaga|Cristobal Balenciaga|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+balfour|1
+(noun)|Balfour|Arthur James Balfour|1st Earl of Balfour|statesman (generic term)|solon (generic term)|national leader (generic term)
+bali|1
+(noun)|Bali|island (generic term)
+balibago|1
+(noun)|mahoe|majagua|mahagua|purau|Hibiscus tiliaceus|hibiscus (generic term)
+balinese|1
+(noun)|Balinese|Indonesian (generic term)|Bahasa Indonesia (generic term)|Bahasa (generic term)
+baling wire|1
+(noun)|wire (generic term)
+balistes|1
+(noun)|Balistes|genus Balistes|fish genus (generic term)
+balistes vetula|1
+(noun)|queen triggerfish|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish (generic term)
+balistidae|1
+(noun)|Balistidae|family Balistidae|fish family (generic term)
+balk|5
+(noun)|baulk|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|hindrance|hinderance|deterrent|impediment|baulk|check|handicap|difficulty (generic term)
+(noun)|rafter|baulk|beam (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+(verb)|resist|baulk|jib|disobey (generic term)
+balkan|2
+(adj)|Balkan|European country|European nation (related term)|European (related term)|peninsula (related term)|range|mountain range|range of mountains|chain|mountain chain|chain of mountains (related term)
+(noun)|Balkan|European (generic term)
+balkan country|1
+(noun)|Balkan country|Balkan nation|Balkan state|European country (generic term)|European nation (generic term)
+balkan mountain range|1
+(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+balkan mountains|1
+(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+balkan nation|1
+(noun)|Balkan country|Balkan nation|Balkan state|European country (generic term)|European nation (generic term)
+balkan peninsula|1
+(noun)|Balkan Peninsula|Balkans|peninsula (generic term)
+balkan state|1
+(noun)|Balkan country|Balkan nation|Balkan state|European country (generic term)|European nation (generic term)
+balkan wars|1
+(noun)|Balkan Wars|war (generic term)|warfare (generic term)
+balkanise|1
+(verb)|Balkanize|Balkanise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+balkanize|1
+(verb)|Balkanize|Balkanise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+balkans|3
+(noun)|Balkans|Balkan Mountains|Balkan Mountain Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+(noun)|Balkan Peninsula|Balkans|peninsula (generic term)
+(noun)|Balkans|European country (generic term)|European nation (generic term)
+balker|1
+(noun)|baulker|noncompliant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+balkiness|1
+(noun)|intractability (generic term)|intractableness (generic term)
+balking|1
+(adj)|balky|intractable (similar term)
+balkline|1
+(noun)|baulk-line|string line|line (generic term)
+balky|1
+(adj)|balking|intractable (similar term)
+ball|13
+(noun)|game equipment (generic term)
+(noun)|musket ball|shot (generic term)|pellet (generic term)
+(noun)|globe|orb|sphere (generic term)
+(noun)|dance (generic term)
+(noun)|testis|testicle|orchis|ballock|bollock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+(noun)|Ball|Lucille Ball|actress (generic term)|comedienne (generic term)
+(noun)|clod|glob|lump|clump|chunk|agglomeration (generic term)
+(noun)|formal|dance (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|baseball (generic term)|baseball game (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+(verb)|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)
+ball-and-socket joint|2
+(noun)|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+(noun)|joint (generic term)
+ball-breaker|2
+(noun)|ball-buster|woman (generic term)|adult female (generic term)
+(noun)|ball-buster|job (generic term)|task (generic term)|chore (generic term)
+ball-buster|2
+(noun)|ball-breaker|woman (generic term)|adult female (generic term)
+(noun)|ball-breaker|job (generic term)|task (generic term)|chore (generic term)
+ball-hawking|1
+(adj)|skilled (similar term)
+ball-peen hammer|1
+(noun)|hammer (generic term)
+ball-shaped|1
+(adj)|global|globose|globular|orbicular|spheric|spherical|round (similar term)|circular (similar term)
+ball and chain|1
+(noun)|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+ball bearing|1
+(noun)|needle bearing|roller bearing|bearing (generic term)
+ball boy|1
+(noun)|male child (generic term)|boy (generic term)
+ball carrier|1
+(noun)|football player (generic term)|footballer (generic term)
+ball cartridge|1
+(noun)|cartridge (generic term)
+ball club|1
+(noun)|baseball club|club|nine|baseball team (generic term)
+ball cock|1
+(noun)|ballcock|regulator (generic term)
+ball fern|1
+(noun)|squirrel's-foot fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia (generic term)
+ball field|1
+(noun)|baseball field|diamond|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+ball game|1
+(noun)|ballgame|field game (generic term)
+ball gown|1
+(noun)|gown (generic term)
+ball hawk|1
+(noun)|athlete (generic term)|jock (generic term)
+ball hawking|1
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+ball nettle|1
+(noun)|horse nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade (generic term)
+ball nightshade|1
+(noun)|horse nettle|ball nettle|bull nettle|Solanum carolinense|nightshade (generic term)
+ball of fire|2
+(noun)|powerhouse|human dynamo|fireball|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|go-getter|whizz-kid|whiz-kid|actor (generic term)|doer (generic term)|worker (generic term)
+ball over|1
+(verb)|shock|stun|floor|blow out of the water|take aback|surprise (generic term)
+ball up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+ball valve|1
+(noun)|valve (generic term)
+ballad|2
+(noun)|lay|song (generic term)|vocal (generic term)
+(noun)|lay|poem (generic term)|verse form (generic term)
+ballad maker|1
+(noun)|songwriter|songster|composer (generic term)
+ballade|1
+(noun)|poem (generic term)|verse form (generic term)
+balladeer|1
+(noun)|crooner|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+ballast|6
+(noun)|substance (generic term)|matter (generic term)
+(noun)|gravel (generic term)|crushed rock (generic term)
+(noun)|attribute (generic term)
+(noun)|ballast resistor|barretter|resistor (generic term)|resistance (generic term)
+(noun)|light ballast|electrical device (generic term)
+(verb)|brace (generic term)|steady (generic term)|stabilize (generic term)|stabilise (generic term)
+ballast resistor|1
+(noun)|ballast|barretter|resistor (generic term)|resistance (generic term)
+ballcock|1
+(noun)|ball cock|regulator (generic term)
+balldress|1
+(noun)|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+ballerina|1
+(noun)|danseuse|ballet dancer (generic term)
+ballet|2
+(noun)|concert dance|stage dancing (generic term)|choreography (generic term)
+(noun)|music (generic term)
+ballet company|1
+(noun)|company (generic term)|troupe (generic term)
+ballet dancer|1
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+ballet master|1
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+ballet mistress|1
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+ballet position|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+ballet skirt|1
+(noun)|tutu|skirt (generic term)
+balletic|1
+(adj)|music (related term)
+balletomane|1
+(noun)|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+balletomania|1
+(noun)|enthusiasm (generic term)
+ballgame|2
+(noun)|new ballgame|situation (generic term)|state of affairs (generic term)
+(noun)|ball game|field game (generic term)
+ballista|1
+(noun)|catapult|arbalest|arbalist|bricole|mangonel|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+ballistic|1
+(adj)|trajectory|flight (related term)
+ballistic capsule|1
+(noun)|spacecraft|space vehicle|craft (generic term)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+ballistic fingerprinting|1
+(noun)|ballistic identification|bullet fingerprinting|identification (generic term)
+ballistic galvanometer|1
+(noun)|moving-coil galvanometer (generic term)
+ballistic identification|1
+(noun)|ballistic fingerprinting|bullet fingerprinting|identification (generic term)
+ballistic missile|1
+(noun)|missile (generic term)
+ballistic missile defense organization|1
+(noun)|Ballistic Missile Defense Organization|BMDO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ballistic pendulum|1
+(noun)|physical pendulum (generic term)|compound pendulum (generic term)
+ballistic trajectory|1
+(noun)|ballistics|trajectory (generic term)|flight (generic term)
+ballistics|2
+(noun)|ballistic trajectory|trajectory (generic term)|flight (generic term)
+(noun)|dynamics (generic term)|kinetics (generic term)
+ballistite|1
+(noun)|smokeless powder|Ballistite|explosive (generic term)
+ballistocardiogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+ballistocardiograph|1
+(noun)|cardiograph|medical instrument (generic term)
+ballock|1
+(noun)|testis|testicle|orchis|ball|bollock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+balloon|4
+(noun)|plaything (generic term)|toy (generic term)
+(noun)|lighter-than-air craft (generic term)
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+(verb)|inflate|billow|expand (generic term)
+balloon bomb|1
+(noun)|Fugo|bomb (generic term)
+balloon flower|1
+(noun)|scented penstemon|Penstemon palmeri|wildflower (generic term)|wild flower (generic term)
+balloon sail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+balloon seat|1
+(noun)|bell seat|seat (generic term)
+balloon vine|1
+(noun)|heart pea|Cardiospermum halicacabum|soapberry vine (generic term)
+balloonfish|1
+(noun)|Diodon holocanthus|spiny puffer (generic term)
+ballooning|1
+(noun)|flight (generic term)|flying (generic term)
+balloonist|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+ballot|3
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|vote|voting|balloting|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+(verb)|vote (generic term)
+ballot box|1
+(noun)|box (generic term)
+ballota|1
+(noun)|Ballota|genus Ballota|asterid dicot genus (generic term)
+ballota nigra|1
+(noun)|black horehound|black archangel|fetid horehound|stinking horehound|Ballota nigra|herb (generic term)|herbaceous plant (generic term)
+balloting|1
+(noun)|vote|ballot|voting|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+ballottement|1
+(noun)|palpation (generic term)|tactual exploration (generic term)
+ballpark|2
+(noun)|park|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+(noun)|approximate range|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+ballpen|1
+(noun)|ballpoint|ballpoint pen|Biro|pen (generic term)
+ballplayer|1
+(noun)|baseball player|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+ballpoint|1
+(noun)|ballpoint pen|ballpen|Biro|pen (generic term)
+ballpoint pen|1
+(noun)|ballpoint|ballpen|Biro|pen (generic term)
+ballroom|1
+(noun)|dance hall|dance palace|room (generic term)
+ballroom dance|1
+(noun)|ballroom dancing|social dancing (generic term)
+ballroom dancing|1
+(noun)|ballroom dance|social dancing (generic term)
+ballroom music|1
+(noun)|dance music|danceroom music|popular music (generic term)|popular music genre (generic term)
+balls-up|1
+(noun)|ballup|cockup|mess-up|mistake (generic term)|error (generic term)|fault (generic term)
+ballup|1
+(noun)|balls-up|cockup|mess-up|mistake (generic term)|error (generic term)|fault (generic term)
+bally|1
+(adj)|blinking|bloody|blooming|crashing|flaming|fucking|unmitigated (similar term)
+ballyhoo|2
+(noun)|hoopla|hype|plug|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(verb)|advertise (generic term)|publicize (generic term)|advertize (generic term)|publicise (generic term)
+ballyhoo artist|1
+(noun)|sensationalist|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+ballyrag|1
+(verb)|strong-arm|bully|browbeat|bullyrag|boss around|hector|push around|intimidate (generic term)
+balm|2
+(noun)|balsam (generic term)
+(noun)|ointment|unction|unguent|salve|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+balm of gilead|3
+(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir (generic term)
+(noun)|balm of Gilead|balm (generic term)
+(noun)|Commiphora meccanensis|incense tree (generic term)
+balmily|1
+(adv)|daftly|dottily|nuttily|wackily
+balminess|1
+(noun)|softness|mildness (generic term)|clemency (generic term)
+balmoral|2
+(noun)|shoe (generic term)
+(noun)|Balmoral|bluebonnet|cap (generic term)
+balmoral castle|1
+(noun)|Balmoral Castle|castle (generic term)
+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 (similar term)
+(adj)|mild|soft|clement (similar term)
+balochi|1
+(noun)|Balochi|Baluchi|Iranian (generic term)|Iranian language (generic term)
+baloney|1
+(noun)|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+balsa|2
+(noun)|balsa wood|wood (generic term)
+(noun)|Ochroma lagopus|angiospermous tree (generic term)|flowering tree (generic term)
+balsa raft|1
+(noun)|Kon Tiki|raft (generic term)
+balsa wood|1
+(noun)|balsa|wood (generic term)
+balsam|3
+(noun)|spermatophyte (generic term)|phanerogam (generic term)|seed plant (generic term)
+(noun)|oleoresin (generic term)
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+balsam-scented|1
+(adj)|odorous (similar term)
+balsam apple|1
+(noun)|Momordica balsamina|gourd (generic term)|gourd vine (generic term)
+balsam capivi|1
+(noun)|copaiba|copaiba balsam|oleoresin (generic term)
+balsam family|1
+(noun)|Balsaminaceae|family Balsaminaceae|rosid dicot family (generic term)
+balsam fir|1
+(noun)|balm of Gilead|Canada balsam|Abies balsamea|silver fir (generic term)
+balsam herb|1
+(noun)|costmary|alecost|bible leaf|mint geranium|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+balsam of peru|1
+(noun)|balsam of Peru|tolu (generic term)|balsam of tolu (generic term)|tolu balsam (generic term)
+balsam of tolu|1
+(noun)|tolu|tolu balsam|balsam (generic term)
+balsam pear|1
+(noun)|Momordica charantia|gourd (generic term)|gourd vine (generic term)
+balsam poplar|1
+(noun)|hackmatack|tacamahac|Populus balsamifera|poplar (generic term)|poplar tree (generic term)
+balsam willow|1
+(noun)|Salix pyrifolia|willow (generic term)|willow tree (generic term)
+balsam woolly aphid|1
+(noun)|Adelges piceae|adelgid (generic term)
+balsamic|1
+(adj)|balsamy|oleoresin (related term)
+balsaminaceae|1
+(noun)|Balsaminaceae|family Balsaminaceae|balsam family|rosid dicot family (generic term)
+balsamorhiza|1
+(noun)|Balsamorhiza|genus Balsamorhiza|asterid dicot genus (generic term)
+balsamroot|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+balsamy|1
+(adj)|balsamic|oleoresin (related term)
+balthasar|1
+(noun)|Balthazar|Balthasar|sage (generic term)
+balthazar|1
+(noun)|Balthazar|Balthasar|sage (generic term)
+baltic|4
+(adj)|Baltic|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|Baltic|sea (related term)
+(noun)|Baltic|Baltic Sea|sea (generic term)
+(noun)|Baltic|Baltic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+baltic-finnic|1
+(noun)|Baltic-Finnic|Fennic (generic term)|Finnic (generic term)|Non-Ugric (generic term)
+baltic language|1
+(noun)|Baltic|Baltic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+baltic republic|1
+(noun)|Baltic State|Baltic Republic|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+baltic sea|1
+(noun)|Baltic|Baltic Sea|sea (generic term)
+baltic state|1
+(noun)|Baltic State|Baltic Republic|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+baltimore|1
+(noun)|Baltimore|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+baltimore bird|1
+(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole (generic term)|Icterus galbula (generic term)
+baltimore oriole|1
+(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole (generic term)|Icterus galbula (generic term)
+balto-slavic|1
+(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+balto-slavic language|1
+(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+balto-slavonic|1
+(noun)|Balto-Slavic|Balto-Slavic language|Balto-Slavonic|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+baluchi|1
+(noun)|Balochi|Baluchi|Iranian (generic term)|Iranian language (generic term)
+baluster|1
+(noun)|support (generic term)
+balusters|1
+(noun)|bannister|banister|balustrade|handrail|barrier (generic term)
+balustrade|1
+(noun)|bannister|banister|balusters|handrail|barrier (generic term)
+balzac|1
+(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist (generic term)
+balzacian|1
+(adj)|Balzacian|novelist (related term)
+bam|2
+(noun)|Bam|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|bang|clap|eruption|blast|noise (generic term)
+bamako|1
+(noun)|Bamako|national capital (generic term)
+bambino|1
+(noun)|toddler|yearling|tot|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+bamboo|2
+(noun)|wood (generic term)
+(noun)|gramineous plant (generic term)|graminaceous plant (generic term)
+bamboo curtain|1
+(noun)|ideological barrier (generic term)
+bamboo fern|1
+(noun)|Coniogramme japonica|fern (generic term)
+bamboo palm|2
+(noun)|miniature fan palm|fern rhapis|Rhapis excelsa|lady palm (generic term)
+(noun)|Raffia vinifera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+bamboo shoot|1
+(noun)|vegetable (generic term)|veggie (generic term)
+bamboozle|1
+(verb)|snow|hoodwink|pull the wool over someone's eyes|lead by the nose|play false|deceive (generic term)|betray (generic term)|lead astray (generic term)
+bambusa|1
+(noun)|Bambusa|genus Bambusa|monocot genus (generic term)|liliopsid genus (generic term)
+bambusa vulgaris|1
+(noun)|common bamboo|Bambusa vulgaris|bamboo (generic term)
+bambuseae|1
+(noun)|Bambuseae|tribe Bambuseae|tribe (generic term)
+ban|9
+(noun)|prohibition|proscription|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|Moldovan monetary unit (generic term)
+(noun)|Romanian monetary unit (generic term)
+(noun)|banning|forbiddance|forbidding|prohibition (generic term)
+(noun)|Bachelor of Arts in Nursing|BAN|bachelor's degree (generic term)|baccalaureate (generic term)
+(verb)|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)
+(verb)|censor|outlaw (generic term)|criminalize (generic term)|criminalise (generic term)|illegalize (generic term)|illegalise (generic term)
+(verb)|banish|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|banish|ostracize|ostracise|shun|cast out|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+banal|1
+(adj)|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+banality|1
+(noun)|platitude|cliche|commonplace|bromide|remark (generic term)|comment (generic term)|truism (generic term)
+banana|2
+(noun)|banana tree|herb (generic term)|herbaceous plant (generic term)
+(noun)|edible fruit (generic term)
+banana-like|1
+(adj)|vegetable (similar term)
+banana boat|1
+(noun)|cargo ship (generic term)|cargo vessel (generic term)
+banana bread|1
+(noun)|quick bread (generic term)
+banana family|1
+(noun)|Musaceae|family Musaceae|monocot family (generic term)|liliopsid family (generic term)
+banana oil|1
+(noun)|ester (generic term)
+banana passion fruit|1
+(noun)|Passiflora mollissima|passionflower (generic term)|passionflower vine (generic term)
+banana peel|1
+(noun)|banana skin|peel (generic term)|skin (generic term)
+banana quit|1
+(noun)|honeycreeper (generic term)
+banana republic|1
+(noun)|country (generic term)|state (generic term)|land (generic term)
+banana skin|1
+(noun)|banana peel|peel (generic term)|skin (generic term)
+banana split|1
+(noun)|split (generic term)
+banana tree|1
+(noun)|banana|herb (generic term)|herbaceous plant (generic term)
+banausic|1
+(adj)|ordinary (similar term)
+band|14
+(noun)|set|circle|lot|social group (generic term)
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|banding|stria|striation|stripe (generic term)|streak (generic term)
+(noun)|banding|stripe|adornment (generic term)
+(noun)|dance band|dance orchestra|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|range (generic term)
+(noun)|strip (generic term)|slip (generic term)
+(noun)|isthmus|tissue (generic term)
+(noun)|ring|jewelry (generic term)|jewellery (generic term)
+(noun)|strip (generic term)|slip (generic term)|loop (generic term)
+(noun)|ring|strip (generic term)|slip (generic term)
+(noun)|restraint (generic term)|constraint (generic term)
+(verb)|tie (generic term)|bind (generic term)
+(verb)|ring|attach (generic term)
+band-tail pigeon|1
+(noun)|band-tailed pigeon|bandtail|Columba fasciata|pigeon (generic term)
+band-tailed pigeon|1
+(noun)|band-tail pigeon|bandtail|Columba fasciata|pigeon (generic term)
+band aid|2
+(noun)|Band Aid|adhesive bandage (generic term)
+(noun)|quick fix|quickie|quicky|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+band of partisans|1
+(noun)|Asbat al-Ansar|Band of Partisans|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+band oneself|1
+(verb)|league together|join (generic term)|fall in (generic term)|get together (generic term)
+band saw|1
+(noun)|bandsaw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+band together|1
+(verb)|confederate|unite (generic term)|unify (generic term)
+bandage|3
+(noun)|patch|dressing (generic term)|medical dressing (generic term)
+(verb)|bind|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|dress (generic term)
+bandaged|1
+(adj)|bound|treated (similar term)
+bandaging|1
+(noun)|dressing|binding|medical care (generic term)|medical aid (generic term)
+bandana|1
+(noun)|bandanna|handkerchief (generic term)|hankie (generic term)|hanky (generic term)|hankey (generic term)
+bandanna|1
+(noun)|bandana|handkerchief (generic term)|hankie (generic term)|hanky (generic term)|hankey (generic term)
+bandbox|1
+(noun)|box (generic term)
+bandeau|1
+(noun)|brassiere|bra|undergarment (generic term)|unmentionable (generic term)|woman's clothing (generic term)
+banded|3
+(adj)|unbanded (antonym)
+(adj)|patterned (similar term)
+(adj)|belted (similar term)
+banded adder|1
+(noun)|banded krait|Bungarus fasciatus|krait (generic term)
+banded anteater|1
+(noun)|numbat|anteater|Myrmecobius fasciatus|dasyurid marsupial (generic term)|dasyurid (generic term)
+banded gecko|1
+(noun)|gecko (generic term)
+banded krait|1
+(noun)|banded adder|Bungarus fasciatus|krait (generic term)
+banded palm civet|1
+(noun)|Hemigalus hardwickii|civet (generic term)|civet cat (generic term)
+banded purple|1
+(noun)|white admiral|Limenitis arthemis|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+banded rattlesnake|1
+(noun)|timber rattlesnake|Crotalus horridus horridus|rattlesnake (generic term)|rattler (generic term)
+banded rudderfish|1
+(noun)|rudderfish|Seriola zonata|jack (generic term)
+banded sand snake|1
+(noun)|Chilomeniscus cinctus|sand snake (generic term)
+banded stilt|1
+(noun)|Cladorhyncus leucocephalum|stilt (generic term)|Australian stilt (generic term)
+banded water snake|1
+(noun)|common water snake|Natrix sipedon|Nerodia sipedon|water snake (generic term)
+bandelet|1
+(noun)|annulet|bandelette|bandlet|square and rabbet|molding (generic term)|moulding (generic term)
+bandelette|1
+(noun)|annulet|bandelet|bandlet|square and rabbet|molding (generic term)|moulding (generic term)
+banderilla|1
+(noun)|dart (generic term)
+banderillero|1
+(noun)|bullfighter (generic term)|toreador (generic term)
+bandicoot|1
+(noun)|marsupial (generic term)|pouched mammal (generic term)
+bandicoot rat|1
+(noun)|mole rat|rat (generic term)
+banding|2
+(noun)|band|stria|striation|stripe (generic term)|streak (generic term)
+(noun)|band|stripe|adornment (generic term)
+bandit|1
+(noun)|brigand|thief (generic term)|stealer (generic term)
+banditry|1
+(noun)|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+bandleader|1
+(noun)|conductor (generic term)|music director (generic term)|director (generic term)
+bandlet|1
+(noun)|annulet|bandelet|bandelette|square and rabbet|molding (generic term)|moulding (generic term)
+bandmaster|1
+(noun)|conductor (generic term)|music director (generic term)|director (generic term)
+bandoleer|1
+(noun)|bandolier|cartridge belt (generic term)
+bandolier|1
+(noun)|bandoleer|cartridge belt (generic term)
+bandsaw|1
+(noun)|band saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+bandsman|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+bandstand|1
+(noun)|outdoor stage|stand|platform (generic term)
+bandtail|1
+(noun)|band-tailed pigeon|band-tail pigeon|Columba fasciata|pigeon (generic term)
+bandung|1
+(noun)|Bandung|city (generic term)|metropolis (generic term)|urban center (generic term)
+bandwagon|2
+(noun)|vogue (generic term)|trend (generic term)|style (generic term)
+(noun)|wagon (generic term)|waggon (generic term)
+bandwagon effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+bandwidth|1
+(noun)|information measure (generic term)
+bandy|4
+(adj)|bandy-legged|bowed|bowleg|bowlegged|unfit (similar term)
+(verb)|play (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|kick around|hash out (generic term)|discuss (generic term)|talk over (generic term)
+bandy-legged|1
+(adj)|bandy|bowed|bowleg|bowlegged|unfit (similar term)
+bandy about|1
+(verb)|hash out (generic term)|discuss (generic term)|talk over (generic term)
+bandy legs|1
+(noun)|bow leg|bow legs|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+bane|1
+(noun)|curse|scourge|nemesis|affliction (generic term)
+baneberry|2
+(noun)|berry (generic term)
+(noun)|cohosh|herb Christopher|poisonous plant (generic term)
+baneful|2
+(adj)|deadly|pernicious|pestilent|noxious (similar term)|harmful (similar term)
+(adj)|baleful|maleficent (similar term)
+banefully|1
+(adv)|perniciously
+banff|1
+(noun)|Banff|city (generic term)|metropolis (generic term)|urban center (generic term)
+bang|12
+(noun)|knock|bash|smash|belt|blow (generic term)|bump (generic term)
+(noun)|clap|eruption|blast|bam|noise (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|boot|charge|rush|flush|thrill|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|hit|smash|smasher|strike|success (generic term)
+(verb)|slam|hit (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|slam|close (generic term)|shut (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|spang|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(adv)|slap|slapdash|smack|bolt
+bang's disease|1
+(noun)|brucellosis|contagious abortion|Bang's disease|zoonosis (generic term)|zoonotic disease (generic term)
+bang-up|1
+(adj)|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+bang out|1
+(verb)|play (generic term)|spiel (generic term)
+bang up|2
+(verb)|smash up|smash|damage (generic term)
+(verb)|impregnate|knock up|prang up|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+bangalore|1
+(noun)|Bangalore|city (generic term)|metropolis (generic term)|urban center (generic term)
+bangalore torpedo|1
+(noun)|torpedo (generic term)
+banger|2
+(noun)|pork sausage (generic term)
+(noun)|firecracker|cracker|firework (generic term)|pyrotechnic (generic term)
+bangiaceae|1
+(noun)|Bangiaceae|family Bangiaceae|protoctist family (generic term)
+banging|3
+(adj)|humongous|thumping|whopping|walloping|large (similar term)|big (similar term)
+(noun)|noise (generic term)
+(noun)|battering|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+bangkok|1
+(noun)|Bangkok|capital of Thailand|Krung Thep|national capital (generic term)|port (generic term)
+bangla desh|1
+(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country (generic term)|Asian nation (generic term)
+bangladesh|1
+(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country (generic term)|Asian nation (generic term)
+bangladeshi|2
+(adj)|Bangladeshi|East Pakistani|Asian country|Asian nation (related term)
+(noun)|Bangladeshi|Asian (generic term)|Asiatic (generic term)
+bangladeshi monetary unit|1
+(noun)|Bangladeshi monetary unit|monetary unit (generic term)
+bangle|2
+(noun)|bracelet|jewelry (generic term)|jewellery (generic term)
+(noun)|bauble|gaud|gewgaw|novelty|fallal|trinket|adornment (generic term)
+bangor|1
+(noun)|Bangor|town (generic term)
+bangtail|1
+(noun)|racehorse|race horse|horse (generic term)|Equus caballus (generic term)
+bangui|1
+(noun)|Bangui|capital of Central Africa|national capital (generic term)
+banian|2
+(noun)|banyan|banyan tree|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+(noun)|banyan|jacket (generic term)
+banian tree|1
+(noun)|banyan|banyan tree|banian|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+banish|4
+(verb)|ban|ostracize|ostracise|shun|cast out|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|ban|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|relegate|bar|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+banishment|2
+(noun)|ostracism|Coventry|exclusion (generic term)
+(noun)|proscription|rejection (generic term)
+banister|1
+(noun)|bannister|balustrade|balusters|handrail|barrier (generic term)
+banjo|1
+(noun)|stringed instrument (generic term)
+banjul|1
+(noun)|Banjul|capital of Gambia|national capital (generic term)|port (generic term)
+bank|18
+(noun)|depository financial institution|banking concern|banking company|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+(noun)|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|reserve (generic term)|backlog (generic term)|stockpile (generic term)
+(noun)|bank building|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(noun)|array (generic term)
+(noun)|savings bank|coin bank|money box|container (generic term)
+(noun)|ridge (generic term)
+(noun)|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+(noun)|cant|camber|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|flight maneuver (generic term)|airplane maneuver (generic term)
+(verb)|tip (generic term)
+(verb)|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|transact (generic term)
+(verb)|act (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|deposit|give (generic term)|withdraw (antonym)
+(verb)|cover (generic term)
+(verb)|trust|swear|rely|believe (generic term)|mistrust (antonym)|distrust (antonym)
+bank-depositor relation|1
+(noun)|fiduciary relation (generic term)
+bank account|1
+(noun)|account (generic term)|business relationship (generic term)
+bank bill|1
+(noun)|bill|note|government note|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+bank building|1
+(noun)|bank|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+bank card|1
+(noun)|credit card (generic term)|charge card (generic term)|charge plate (generic term)
+bank charter|1
+(noun)|charter (generic term)
+bank check|1
+(noun)|check|cheque|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+bank clerk|1
+(noun)|teller|cashier|banker (generic term)
+bank closing|1
+(noun)|closure (generic term)|closedown (generic term)|closing (generic term)|shutdown (generic term)
+bank commissioner|1
+(noun)|commissioner (generic term)
+bank deposit|1
+(noun)|deposit|fund (generic term)|monetary fund (generic term)
+bank discount|1
+(noun)|discount rate|discount|interest rate (generic term)|rate of interest (generic term)
+bank draft|1
+(noun)|banker's draft|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+bank examination|1
+(noun)|examination (generic term)|scrutiny (generic term)
+bank examiner|1
+(noun)|examiner (generic term)|inspector (generic term)
+bank failure|1
+(noun)|failure (generic term)
+bank gravel|1
+(noun)|pit-run gravel|pit run|gravel (generic term)|crushed rock (generic term)
+bank guard|1
+(noun)|watchman (generic term)|watcher (generic term)|security guard (generic term)
+bank holding company|1
+(noun)|holding company (generic term)
+bank holiday|1
+(noun)|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+bank identification number|1
+(noun)|BIN|ABA transit number|number (generic term)|identification number (generic term)
+bank line|1
+(noun)|credit line|line of credit|line|personal credit line|personal line of credit|credit (generic term)
+bank loan|1
+(noun)|loan (generic term)
+bank manager|1
+(noun)|director (generic term)|manager (generic term)|managing director (generic term)
+bank martin|1
+(noun)|bank swallow|sand martin|Riparia riparia|martin (generic term)
+bank note|1
+(noun)|bill|note|government note|bank bill|banker's bill|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+bank of england|1
+(noun)|Bank of England|central bank (generic term)
+bank of japan|1
+(noun)|Bank of Japan|central bank (generic term)
+bank rate|1
+(noun)|discount rate (generic term)|discount (generic term)|bank discount (generic term)
+bank robber|1
+(noun)|robber (generic term)
+bank run|1
+(noun)|bank withdrawal (generic term)
+bank shot|1
+(noun)|basketball shot (generic term)
+bank statement|1
+(noun)|statement (generic term)|financial statement (generic term)
+bank swallow|1
+(noun)|bank martin|sand martin|Riparia riparia|martin (generic term)
+bank vault|1
+(noun)|vault|strongroom (generic term)
+bank withdrawal|1
+(noun)|withdrawal (generic term)
+bankable|2
+(adj)|profitable (similar term)
+(adj)|acceptable (similar term)
+bankbook|1
+(noun)|passbook|record (generic term)
+banker|2
+(noun)|financier (generic term)|moneyman (generic term)
+(noun)|money handler (generic term)|money dealer (generic term)
+banker's acceptance|1
+(noun)|acceptance|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+banker's bill|1
+(noun)|bill|note|government note|bank bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+banker's check|1
+(noun)|traveler's check|traveller's check|traveler's letter of credit (generic term)|traveller's letter of credit (generic term)
+banker's draft|1
+(noun)|bank draft|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+bankhead|1
+(noun)|Bankhead|Tallulah Bankhead|actress (generic term)
+bankia|1
+(noun)|Bankia|genus Bankia|mollusk genus (generic term)
+bankia setaceae|1
+(noun)|giant northwest shipworm|Bankia setaceae|shipworm (generic term)|teredinid (generic term)
+banking|1
+(noun)|finance (generic term)
+banking company|1
+(noun)|depository financial institution|bank|banking concern|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+banking concern|1
+(noun)|depository financial institution|bank|banking company|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+banking game|1
+(noun)|game of chance (generic term)|gambling game (generic term)
+banking industry|1
+(noun)|banking system|industry (generic term)
+banking system|1
+(noun)|banking industry|industry (generic term)
+banknote|1
+(noun)|bill|note|government note|bank bill|banker's bill|bank note|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+bankroll|2
+(noun)|roll|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+(verb)|fund (generic term)
+bankrupt|3
+(adj)|belly-up|insolvent (similar term)
+(noun)|insolvent|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+(verb)|ruin|break|smash|impoverish (generic term)
+bankruptcy|3
+(noun)|failure (generic term)
+(noun)|failure|insolvency (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+banks|1
+(noun)|Banks|Sir Joseph Banks|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+banksia|1
+(noun)|shrub (generic term)|bush (generic term)
+banksia integrifolia|1
+(noun)|honeysuckle|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia (generic term)
+banksia rose|1
+(noun)|Rosa banksia|rose (generic term)|rosebush (generic term)
+banned|1
+(adj)|prohibited|illegal (similar term)
+banner|3
+(adj)|superior (similar term)
+(noun)|streamer|flag (generic term)
+(noun)|streamer|headline (generic term)|newspaper headline (generic term)
+banneret|1
+(noun)|knight banneret|knight of the square flag|knight (generic term)
+banning|1
+(noun)|ban|forbiddance|forbidding|prohibition (generic term)
+banning-order|1
+(noun)|prohibition (generic term)|ban (generic term)|proscription (generic term)
+bannister|2
+(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man (generic term)
+(noun)|banister|balustrade|balusters|handrail|barrier (generic term)
+bannock|1
+(noun)|flatbread (generic term)
+bannockburn|1
+(noun)|Bannockburn|pitched battle (generic term)
+banns|1
+(noun)|announcement (generic term)|promulgation (generic term)
+banquet|4
+(noun)|feast|dinner (generic term)|dinner party (generic term)
+(noun)|feast|spread|meal (generic term)|repast (generic term)
+(verb)|feast|junket|host (generic term)
+(verb)|feast|junket|eat (generic term)
+banquet song|1
+(noun)|scolion|song (generic term)|vocal (generic term)
+banqueting|1
+(noun)|feasting|eating (generic term)|feeding (generic term)
+banquette|1
+(noun)|bench (generic term)
+banshee|1
+(noun)|banshie|spirit (generic term)|disembodied spirit (generic term)
+banshie|1
+(noun)|banshee|spirit (generic term)|disembodied spirit (generic term)
+bantam|2
+(adj)|diminutive|lilliputian|midget|petite|tiny|flyspeck|small (similar term)|little (similar term)
+(noun)|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+bantamweight|2
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|boxer (generic term)|pugilist (generic term)
+banteng|1
+(noun)|banting|tsine|Bos banteng|ox (generic term)|wild ox (generic term)
+banter|2
+(noun)|raillery|give-and-take|backchat|repartee (generic term)
+(verb)|kid|chaff|jolly|josh|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+bantering|1
+(adj)|facetious|tongue-in-cheek|humorous (similar term)|humourous (similar term)
+banteringly|1
+(adv)|tongue-in-cheek
+banti's disease|1
+(noun)|Banti's disease|Banti's syndrome|blood disease (generic term)|blood disorder (generic term)
+banti's syndrome|1
+(noun)|Banti's disease|Banti's syndrome|blood disease (generic term)|blood disorder (generic term)
+banting|2
+(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist (generic term)
+(noun)|banteng|tsine|Bos banteng|ox (generic term)|wild ox (generic term)
+bantoid|1
+(adj)|Bantoid|Niger-Congo (related term)
+bantoid language|1
+(noun)|Bantu|Bantoid language|Niger-Congo (generic term)
+bantu|3
+(adj)|Bantu|African (related term)
+(noun)|Bantu|African (generic term)
+(noun)|Bantu|Bantoid language|Niger-Congo (generic term)
+bantu-speaking|2
+(adj)|Bantu-speaking|Niger-Congo (related term)
+(adj)|Bantu-speaking|communicative (similar term)|communicatory (similar term)
+banyan|2
+(noun)|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+(noun)|banian|jacket (generic term)
+banyan tree|1
+(noun)|banyan|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+banzai|1
+(noun)|cheer (generic term)
+banzai attack|1
+(noun)|banzai charge|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+banzai charge|1
+(noun)|banzai attack|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+baobab|1
+(noun)|monkey-bread tree|Adansonia digitata|angiospermous tree (generic term)|flowering tree (generic term)
+bap|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+baphia|1
+(noun)|Baphia|genus Baphia|rosid dicot genus (generic term)
+baphia nitida|1
+(noun)|camwood|African sandalwood|Baphia nitida|tree (generic term)
+baptise|1
+(verb)|baptize|christen|name (generic term)|call (generic term)
+baptised|1
+(adj)|baptized|unbaptized (antonym)
+baptisia|1
+(noun)|Baptisia|genus Baptisia|rosid dicot genus (generic term)
+baptisia australis|1
+(noun)|blue false indigo|Baptisia australis|wild indigo (generic term)|false indigo (generic term)
+baptisia lactea|1
+(noun)|white false indigo|Baptisia lactea|wild indigo (generic term)|false indigo (generic term)
+baptisia tinctoria|1
+(noun)|indigo broom|horsefly weed|rattle weed|Baptisia tinctoria|wild indigo (generic term)|false indigo (generic term)
+baptism|1
+(noun)|sacrament (generic term)
+baptismal|1
+(adj)|sacrament (related term)
+baptismal font|1
+(noun)|baptistry|baptistery|font|basin (generic term)
+baptismal name|1
+(noun)|Christian name|first name (generic term)|given name (generic term)|forename (generic term)
+baptist|2
+(adj)|Baptist|Baptistic|Protestant denomination (related term)
+(noun)|Baptist|Protestant (generic term)
+baptist church|1
+(noun)|Baptist Church|Baptists|Protestant denomination (generic term)
+baptist denomination|1
+(noun)|Baptist denomination|Protestant denomination (generic term)
+baptistery|1
+(noun)|baptismal font|baptistry|font|basin (generic term)
+baptistic|1
+(adj)|Baptist|Baptistic|Protestant denomination (related term)
+baptistic doctrine|1
+(noun)|Baptistic doctrine|Protestantism (generic term)
+baptistry|1
+(noun)|baptismal font|baptistery|font|basin (generic term)
+baptists|1
+(noun)|Baptist Church|Baptists|Protestant denomination (generic term)
+baptize|1
+(verb)|baptise|christen|name (generic term)|call (generic term)
+baptized|1
+(adj)|baptised|unbaptized (antonym)
+bar|18
+(noun)|barroom|saloon|ginmill|taproom|room (generic term)
+(noun)|counter (generic term)
+(noun)|implement (generic term)
+(noun)|measure|musical notation (generic term)
+(noun)|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|prevention|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+(noun)|pressure unit (generic term)
+(noun)|ridge (generic term)|barrier (generic term)
+(noun)|legal profession|legal community|profession (generic term)|community (generic term)
+(noun)|cake|block (generic term)
+(noun)|Browning automatic rifle|BAR|automatic rifle (generic term)|automatic (generic term)|machine rifle (generic term)
+(noun)|support (generic term)
+(noun)|heating element (generic term)
+(noun)|railing (generic term)|rail (generic term)
+(verb)|debar|exclude|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)
+(verb)|barricade|block|blockade|stop|block off|block up|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|banish|relegate|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unbar (antonym)
+bar-room plant|1
+(noun)|aspidistra|cast-iron plant|Aspidistra elatio|herb (generic term)|herbaceous plant (generic term)
+bar-shaped|1
+(adj)|formed (similar term)
+bar absolute|1
+(noun)|barye|microbar|pressure unit (generic term)
+bar billiards|1
+(noun)|bagatelle|table game (generic term)
+bar bit|1
+(noun)|bit (generic term)
+bar chart|1
+(noun)|bar graph|chart (generic term)
+bar code|1
+(noun)|Universal Product Code|code (generic term)
+bar exam|1
+(noun)|bar examination|examination (generic term)|exam (generic term)|test (generic term)
+bar examination|1
+(noun)|bar exam|examination (generic term)|exam (generic term)|test (generic term)
+bar fly|1
+(noun)|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+bar girl|1
+(noun)|B-girl|woman (generic term)|adult female (generic term)
+bar graph|1
+(noun)|bar chart|chart (generic term)
+bar hop|1
+(verb)|pub-crawl|drink (generic term)|booze (generic term)|fuddle (generic term)
+bar line|1
+(noun)|line (generic term)|musical notation (generic term)
+bar magnet|1
+(noun)|magnet (generic term)
+bar mask|1
+(noun)|catcher's mask (generic term)
+bar mitzvah|2
+(noun)|initiation (generic term)|induction (generic term)|installation (generic term)
+(verb)|covenant (generic term)
+bar printer|1
+(noun)|impact printer (generic term)
+bar sinister|2
+(noun)|bastardy|illegitimacy|status (generic term)|position (generic term)
+(noun)|bend sinister|mark (generic term)|stigma (generic term)|brand (generic term)|stain (generic term)|ordinary (generic term)
+bar soap|1
+(noun)|soap (generic term)
+baraka|1
+(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer (generic term)|author (generic term)
+baranduki|1
+(noun)|baronduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+barany|1
+(noun)|Barany|Robert Barany|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+barb|4
+(noun)|shot|shaft|slam|dig|jibe|gibe|remark (generic term)|comment (generic term)
+(noun)|point (generic term)
+(noun)|fibril (generic term)|filament (generic term)|strand (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+barbacan|1
+(noun)|barbican|tower (generic term)
+barbadian|2
+(adj)|Barbadian|island (related term)
+(noun)|Barbadian|West Indian (generic term)
+barbados|2
+(noun)|Barbados|country (generic term)|state (generic term)|land (generic term)
+(noun)|Barbados|island (generic term)
+barbados-gooseberry vine|1
+(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine (generic term)
+barbados cherry|2
+(noun)|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+(noun)|acerola|surinam cherry|West Indian cherry|berry (generic term)
+barbados dollar|1
+(noun)|Barbados dollar|dollar (generic term)
+barbados gooseberry|2
+(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine (generic term)
+(noun)|Barbados gooseberry|blade apple|edible fruit (generic term)
+barbados maidenhair|1
+(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair (generic term)|brittle maidenhair fern (generic term)|Adiantum tenerum (generic term)
+barbados pride|1
+(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree (generic term)
+barbara hepworth|1
+(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+barbara tuchman|1
+(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian (generic term)|historiographer (generic term)
+barbara ward|1
+(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist (generic term)|economic expert (generic term)|environmentalist (generic term)|conservationist (generic term)
+barbara wertheim tuchman|1
+(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian (generic term)|historiographer (generic term)
+barbarea|1
+(noun)|Barbarea|genus Barbarea|dilleniid dicot genus (generic term)
+barbarea praecox|1
+(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+barbarea verna|1
+(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+barbarea vulgaris|1
+(noun)|yellow rocket|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed (generic term)
+barbarian|3
+(adj)|barbaric|savage|uncivilized|uncivilised|wild|noncivilized (similar term)|noncivilised (similar term)
+(noun)|savage|primitive (generic term)|primitive person (generic term)
+(noun)|peasant|boor|churl|Goth|tyke|tike|unpleasant person (generic term)|disagreeable person (generic term)
+barbaric|2
+(adj)|barbarian|savage|uncivilized|uncivilised|wild|noncivilized (similar term)|noncivilised (similar term)
+(adj)|tasteless (similar term)
+barbarisation|1
+(noun)|barbarization|degradation (generic term)|debasement (generic term)
+barbarise|2
+(verb)|barbarize|change (generic term)
+(verb)|barbarize|change (generic term)|alter (generic term)|modify (generic term)
+barbarism|1
+(noun)|brutality|barbarity|savagery|atrocity (generic term)|inhumanity (generic term)
+barbarity|2
+(noun)|atrocity|atrociousness|barbarousness|heinousness|inhumaneness (generic term)|inhumanity (generic term)
+(noun)|brutality|barbarism|savagery|atrocity (generic term)|inhumanity (generic term)
+barbarization|1
+(noun)|barbarisation|degradation (generic term)|debasement (generic term)
+barbarize|2
+(verb)|barbarise|change (generic term)
+(verb)|barbarise|change (generic term)|alter (generic term)|modify (generic term)
+barbarossa|2
+(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor (generic term)
+(noun)|Barbarossa|Khayr ad-Din|corsair (generic term)|Barbary pirate (generic term)
+barbarous|2
+(adj)|brutal|cruel|fell|roughshod|savage|vicious|inhumane (similar term)
+(adj)|noncivilized (similar term)|noncivilised (similar term)
+barbarousness|1
+(noun)|atrocity|atrociousness|barbarity|heinousness|inhumaneness (generic term)|inhumanity (generic term)
+barbary|1
+(noun)|Barbary|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+barbary ape|1
+(noun)|Barbary ape|Macaca sylvana|macaque (generic term)
+barbary coast|2
+(noun)|Barbary Coast|city district (generic term)
+(noun)|Barbary Coast|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+barbary pirate|1
+(noun)|corsair|Barbary pirate|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+barbary sheep|1
+(noun)|aoudad|arui|audad|Barbary sheep|maned sheep|Ammotragus lervia|wild sheep (generic term)
+barbasco|1
+(noun)|joewood|Jacquinia keyensis|shrub (generic term)|bush (generic term)
+barbate|1
+(adj)|bearded|bewhiskered|whiskered|whiskery|unshaven (similar term)|unshaved (similar term)
+barbecue|4
+(noun)|barbeque|dish (generic term)
+(noun)|barbeque|cookout (generic term)
+(noun)|barbeque|rack (generic term)
+(verb)|barbeque|cook out|grill (generic term)
+barbecue pit|1
+(noun)|pit (generic term)|cavity (generic term)
+barbecue sauce|1
+(noun)|sauce (generic term)
+barbecued|1
+(adj)|grilled|cooked (similar term)
+barbecued spareribs|1
+(noun)|spareribs|dish (generic term)
+barbecued wing|1
+(noun)|dish (generic term)
+barbecuing|1
+(noun)|roasting (generic term)
+barbed|2
+(adj)|biting|nipping|pungent|mordacious|sarcastic (similar term)
+(adj)|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+barbed wire|1
+(noun)|barbwire|wire (generic term)
+barbel|1
+(noun)|feeler|tentacle (generic term)
+barbell|1
+(noun)|weight (generic term)|free weight (generic term)|exercising weight (generic term)
+barbellate|1
+(adj)|barbed|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+barbeque|4
+(noun)|barbecue|dish (generic term)
+(noun)|barbecue|cookout (generic term)
+(noun)|barbecue|rack (generic term)
+(verb)|barbecue|cook out|grill (generic term)
+barber|3
+(noun)|Barber|Samuel Barber|composer (generic term)
+(noun)|hairdresser (generic term)|hairstylist (generic term)|stylist (generic term)|styler (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+barber's itch|1
+(noun)|tinea barbae|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+barber's pole|1
+(noun)|visual signal (generic term)
+barber chair|1
+(noun)|chair (generic term)
+barberry|1
+(noun)|shrub (generic term)|bush (generic term)
+barberry family|1
+(noun)|Berberidaceae|family Berberidaceae|magnoliid dicot family (generic term)
+barbershop|1
+(noun)|shop (generic term)|store (generic term)
+barbershop quartet|1
+(noun)|quartet (generic term)|quartette (generic term)
+barberton daisy|1
+(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy (generic term)
+barbet|1
+(noun)|piciform bird (generic term)
+barbette|1
+(noun)|mound (generic term)|hill (generic term)
+barbette carriage|1
+(noun)|gun carriage (generic term)
+barbican|1
+(noun)|barbacan|tower (generic term)
+barbital|1
+(noun)|veronal|barbitone|diethylbarbituric acid|diethylmalonylurea|barbiturate (generic term)
+barbitone|1
+(noun)|barbital|veronal|diethylbarbituric acid|diethylmalonylurea|barbiturate (generic term)
+barbiturate|1
+(noun)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+barbituric acid|1
+(noun)|malonylurea|acid (generic term)
+barbra joan streisand|1
+(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+barbra streisand|1
+(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+barbu|1
+(noun)|Polydactylus virginicus|threadfin (generic term)
+barbuda|1
+(noun)|Barbuda|island (generic term)
+barbwire|1
+(noun)|barbed wire|wire (generic term)
+barcarole|1
+(noun)|barcarolle|song (generic term)|vocal (generic term)
+barcarolle|1
+(noun)|barcarole|song (generic term)|vocal (generic term)
+barcelona|1
+(noun)|Barcelona|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bard|3
+(noun)|poet (generic term)
+(noun)|caparison (generic term)|trapping (generic term)|housing (generic term)
+(verb)|caparison|barde|dress up|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+bard of avon|1
+(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|Bard of Avon|dramatist (generic term)|playwright (generic term)|poet (generic term)
+barde|1
+(verb)|caparison|bard|dress up|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+bardeen|1
+(noun)|Bardeen|John Bardeen|physicist (generic term)
+bardic|1
+(adj)|poet (related term)
+bardolatry|1
+(noun)|idolization (generic term)|idolisation (generic term)
+bare|13
+(adj)|au naturel|naked|nude|unclothed (similar term)
+(adj)|scanty|spare|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+(adj)|unsheathed|sheathed (antonym)
+(adj)|bald (similar term)|denuded (similar term)|denudate (similar term)|naked (similar term)|undraped (similar term)|unroofed (similar term)|covered (antonym)
+(adj)|marginal|narrow (similar term)
+(adj)|mere|simple|plain (similar term)
+(adj)|unfinished|unpainted (similar term)
+(adj)|barren|bleak|desolate|stark|inhospitable (similar term)
+(adj)|stripped|empty (similar term)
+(adj)|plain|spare|unembellished|unornamented|unadorned (similar term)|undecorated (similar term)
+(verb)|uncover (generic term)|expose (generic term)
+(verb)|publicize|publicise|air|tell (generic term)
+(verb)|denude|denudate|strip|clear (generic term)
+bare-ass|1
+(adj)|bare-assed|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed (similar term)
+bare-assed|1
+(adj)|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|stark naked|unclothed (similar term)
+bare-breasted|1
+(adj)|braless|topless|unclothed (similar term)
+bare-knuckle|1
+(adj)|rough-and-tumble|bare-knuckled|disorderly (similar term)
+bare-knuckled|1
+(adj)|rough-and-tumble|bare-knuckle|disorderly (similar term)
+bare bone|1
+(noun)|bone (generic term)|os (generic term)
+bare bones|1
+(noun)|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+bareback|2
+(adj)|barebacked|unsaddled (similar term)
+(adv)|barebacked
+barebacked|2
+(adj)|bareback|unsaddled (similar term)
+(adv)|bareback
+bareboat|1
+(noun)|vessel (generic term)|watercraft (generic term)
+bareboating|1
+(noun)|boating (generic term)|yachting (generic term)
+bared|1
+(adj)|bareheaded|unclothed (similar term)
+barefaced|2
+(adj)|bald|overt (similar term)|open (similar term)
+(adj)|audacious|bodacious|bald-faced|brassy|brazen|brazen-faced|insolent|unashamed (similar term)
+barefacedly|1
+(adv)|unashamedly|shamelessly|ashamedly (antonym)
+barefoot|2
+(adj)|barefooted|shoeless|unshod (similar term)|unshoed (similar term)
+(adv)|barefooted
+barefooted|2
+(adj)|barefoot|shoeless|unshod (similar term)|unshoed (similar term)
+(adv)|barefoot
+barehanded|1
+(adj)|unarmed (similar term)
+bareheaded|1
+(adj)|bared|unclothed (similar term)
+barelegged|1
+(adj)|unclothed (similar term)
+barely|2
+(adv)|hardly|just|scarcely|scarce
+(adv)|scantily
+bareness|3
+(noun)|bleakness|desolation|nakedness|gloom (generic term)|gloominess (generic term)|glumness (generic term)
+(noun)|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+(noun)|starkness|plainness (generic term)
+barents sea|1
+(noun)|Barents Sea|sea (generic term)
+barf|2
+(noun)|vomit|vomitus|puke|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+bargain|4
+(noun)|deal|agreement (generic term)|understanding (generic term)
+(noun)|buy|steal|purchase (generic term)
+(verb)|dicker|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+(verb)|agree (generic term)
+bargain-priced|1
+(adj)|cut-rate|cut-price|cheap (similar term)|inexpensive (similar term)
+bargain down|1
+(verb)|beat down|haggle (generic term)|higgle (generic term)|chaffer (generic term)|huckster (generic term)
+bargain hunter|1
+(noun)|shopper (generic term)
+bargain rate|1
+(noun)|cheapness|cut rate|cut price|inexpensiveness (generic term)
+bargainer|2
+(noun)|trader|dealer|monger|merchant (generic term)|merchandiser (generic term)
+(noun)|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+bargaining|1
+(noun)|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+bargaining chip|1
+(noun)|leverage (generic term)
+barge|3
+(noun)|flatboat|hoy|lighter|boat (generic term)
+(verb)|thrust ahead|push forward|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|barge in (related term)
+(verb)|transport (generic term)|send (generic term)|ship (generic term)
+barge in|2
+(verb)|crash|gate-crash|intrude (generic term)|irrupt (generic term)
+(verb)|chime in|cut in|put in|butt in|chisel in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+barge pole|1
+(noun)|pole (generic term)
+bargee|1
+(noun)|lighterman|bargeman|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bargello|1
+(noun)|flame stitch|stitch (generic term)
+bargeman|1
+(noun)|lighterman|bargee|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bari|1
+(noun)|Bari|city (generic term)|metropolis (generic term)|urban center (generic term)
+baric|1
+(adj)|metallic element|metal (related term)
+barilla|2
+(noun)|saltwort|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+(noun)|Halogeton souda|herb (generic term)|herbaceous plant (generic term)
+baring|1
+(noun)|denudation|stripping|uncovering|husking|removal (generic term)|remotion (generic term)
+barish|1
+(noun)|Bodo-Garo|Barish|Kamarupan (generic term)
+barite|1
+(noun)|heavy spar|barytes|barium sulphate|mineral (generic term)
+baritone|4
+(adj)|low (similar term)|low-pitched (similar term)
+(noun)|barytone|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|baritone voice|singing voice (generic term)
+(noun)|baritone horn|brass (generic term)|brass instrument (generic term)
+baritone horn|1
+(noun)|baritone|brass (generic term)|brass instrument (generic term)
+baritone voice|1
+(noun)|baritone|singing voice (generic term)
+barium|1
+(noun)|Ba|atomic number 56|metallic element (generic term)|metal (generic term)
+barium dioxide|1
+(noun)|barium peroxide|baryta (generic term)
+barium enema|1
+(noun)|enema (generic term)|clyster (generic term)
+barium hydroxide|1
+(noun)|baryta (generic term)
+barium monoxide|1
+(noun)|barium oxide|barium protoxide|baryta (generic term)
+barium oxide|1
+(noun)|barium monoxide|barium protoxide|baryta (generic term)
+barium peroxide|1
+(noun)|barium dioxide|baryta (generic term)
+barium protoxide|1
+(noun)|barium monoxide|barium oxide|baryta (generic term)
+barium sulfate|1
+(noun)|barium sulphate|blanc fixe|sulfate (generic term)|sulphate (generic term)
+barium sulphate|2
+(noun)|barium sulfate|blanc fixe|sulfate (generic term)|sulphate (generic term)
+(noun)|heavy spar|barite|barytes|mineral (generic term)
+bark|9
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|noise (generic term)
+(noun)|barque|sailing vessel (generic term)|sailing ship (generic term)
+(noun)|cry (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|cover (generic term)
+(verb)|skin|strip (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|tan (generic term)
+bark-louse|1
+(noun)|bark louse|psocid (generic term)
+bark beetle|1
+(noun)|beetle (generic term)
+bark louse|1
+(noun)|bark-louse|psocid (generic term)
+barkeep|1
+(noun)|bartender|barman|barkeeper|mixologist|employee (generic term)
+barkeeper|1
+(noun)|bartender|barman|barkeep|mixologist|employee (generic term)
+barker|2
+(noun)|promoter (generic term)|booster (generic term)|plugger (generic term)
+(noun)|pooch|doggie|doggy|bow-wow|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+barking deer|1
+(noun)|muntjac|deer (generic term)|cervid (generic term)
+barking frog|1
+(noun)|robber frog|Hylactophryne augusti|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+barkley|1
+(noun)|Barkley|Alben Barkley|Alben William Barkley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+barky|1
+(adj)|rough (similar term)|unsmooth (similar term)
+barley|2
+(noun)|barleycorn|grain (generic term)|food grain (generic term)|cereal (generic term)
+(noun)|cereal (generic term)|cereal grass (generic term)
+barley-sugar|1
+(noun)|barley candy|hard candy (generic term)
+barley candy|1
+(noun)|barley-sugar|hard candy (generic term)
+barley grass|1
+(noun)|wall barley|Hordeum murinum|barley (generic term)
+barley water|1
+(noun)|broth (generic term)
+barleycorn|2
+(noun)|grain (generic term)|caryopsis (generic term)
+(noun)|barley|grain (generic term)|food grain (generic term)|cereal (generic term)
+barm|1
+(noun)|yeast|leaven (generic term)|leavening (generic term)
+barmaid|1
+(noun)|bartender (generic term)|barman (generic term)|barkeep (generic term)|barkeeper (generic term)|mixologist (generic term)
+barman|1
+(noun)|bartender|barkeep|barkeeper|mixologist|employee (generic term)
+barmbrack|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+barmy|2
+(adj)|zestful|yeasty|zesty|spirited (similar term)
+(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 (similar term)
+barn|2
+(noun)|farm building (generic term)
+(noun)|b|area unit (generic term)|square measure (generic term)
+barn dance|1
+(noun)|dance (generic term)
+barn door|1
+(noun)|sliding door (generic term)
+barn grass|1
+(noun)|barnyard grass|barn millet|Echinochloa crusgalli|millet (generic term)
+barn millet|1
+(noun)|barnyard grass|barn grass|Echinochloa crusgalli|millet (generic term)
+barn owl|1
+(noun)|Tyto alba|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+barn spider|1
+(noun)|Araneus cavaticus|spider (generic term)
+barn swallow|1
+(noun)|chimney swallow|Hirundo rustica|swallow (generic term)
+barnaba chiaramonti|1
+(noun)|Pius VII|Barnaba Chiaramonti|Luigi Barnaba Gregorio Chiaramonti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+barnaby's thistle|1
+(noun)|Barnaby's thistle|yellow star-thistle|Centaurea solstitialis|weed (generic term)
+barnacle|2
+(noun)|cerriped|cerripede|crustacean (generic term)
+(noun)|barnacle goose|Branta leucopsis|goose (generic term)
+barnacle goose|1
+(noun)|barnacle|Branta leucopsis|goose (generic term)
+barnacled|1
+(adj)|covered (similar term)
+barnburner|2
+(noun)|arsonist (generic term)|incendiary (generic term)|firebug (generic term)
+(noun)|success (generic term)
+barndoor|1
+(noun)|flap (generic term)
+barndoor skate|1
+(noun)|Raja laevis|skate (generic term)
+barney oldfield|1
+(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer (generic term)|race driver (generic term)|automobile driver (generic term)
+barnful|1
+(noun)|containerful (generic term)
+barnstorm|1
+(verb)|perform (generic term)
+barnstormer|2
+(noun)|playactor|play-actor|trouper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|stunt flier|stunt pilot|pilot (generic term)|airplane pilot (generic term)
+barnum|1
+(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman (generic term)|promoter (generic term)|impresario (generic term)
+barnyard|1
+(noun)|yard (generic term)
+barnyard grass|1
+(noun)|barn grass|barn millet|Echinochloa crusgalli|millet (generic term)
+barograph|1
+(noun)|barometer (generic term)
+barographic|1
+(adj)|barometer (related term)
+barometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+barometric|1
+(adj)|barometrical|measuring instrument|measuring system|measuring device (related term)
+barometric pressure|1
+(noun)|atmospheric pressure (generic term)|air pressure (generic term)
+barometrical|1
+(adj)|barometric|measuring instrument|measuring system|measuring device (related term)
+baron|3
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|peer (generic term)
+(noun)|big businessman|business leader|king|magnate|mogul|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+baron adrian|1
+(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist (generic term)
+baron alexander von humboldt|1
+(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist (generic term)|natural scientist (generic term)
+baron clive|1
+(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+baron clive of plassey|1
+(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+baron de la brede et de montesquieu|1
+(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher (generic term)
+baron friedrich heinrich alexander von humboldt|1
+(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist (generic term)|natural scientist (generic term)
+baron friedrich wilhelm ludolf gerhard augustin von steuben|1
+(noun)|Steuben|Baron Friedrich Wilhelm Ludolf Gerhard Augustin von Steuben|American Revolutionary leader (generic term)
+baron georges cuvier|1
+(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist (generic term)|natural scientist (generic term)
+baron hermann ludwig ferdinand von helmholtz|1
+(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist (generic term)|physicist (generic term)
+baron hugh caswall tremenheere dowding|1
+(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+baron jean baptiste joseph fourier|1
+(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician (generic term)|physicist (generic term)
+baron karl maria friedrich ernst von weber|1
+(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+baron karl wilhelm von humboldt|1
+(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist (generic term)|philologue (generic term)
+baron lister|1
+(noun)|Lister|Joseph Lister|Baron Lister|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+baron lloyd webber of sydmonton|1
+(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer (generic term)
+baron munchausen|1
+(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist (generic term)|raconteur (generic term)
+baron olivier of birghton|1
+(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+baron richard von krafft-ebing|1
+(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist (generic term)|brain doctor (generic term)
+baron snow of leicester|1
+(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer (generic term)|author (generic term)
+baron verulam|1
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+baron wilhelm von humboldt|1
+(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist (generic term)|philologue (generic term)
+baronage|1
+(noun)|peerage|nobility (generic term)|aristocracy (generic term)
+baronduki|1
+(noun)|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+baroness|1
+(noun)|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+baroness dudevant|1
+(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer (generic term)|author (generic term)
+baroness emmusca orczy|1
+(noun)|Orczy|Baroness Emmusca Orczy|writer (generic term)|author (generic term)
+baroness jackson of lodsworth|1
+(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist (generic term)|economic expert (generic term)|environmentalist (generic term)|conservationist (generic term)
+baroness karen blixen|1
+(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer (generic term)|author (generic term)
+baroness thatcher of kesteven|1
+(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman (generic term)
+baronet|1
+(noun)|Bart|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+baronetage|2
+(noun)|nobility (generic term)|aristocracy (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+baronetcy|2
+(noun)|barony|rank (generic term)
+(noun)|title (generic term)
+baronetise|1
+(verb)|baronetize|ennoble (generic term)|gentle (generic term)|entitle (generic term)
+baronetize|1
+(verb)|baronetise|ennoble (generic term)|gentle (generic term)|entitle (generic term)
+barong|1
+(noun)|knife (generic term)
+baronial|1
+(adj)|imposing|noble|stately|impressive (similar term)
+baronne anne louise germaine necker de steal-holstein|1
+(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer (generic term)|author (generic term)
+barony|3
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|baronetcy|rank (generic term)
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+baroque|2
+(adj)|churrigueresque|churrigueresco|fancy (similar term)
+(noun)|baroqueness|artistic style (generic term)|idiom (generic term)
+baroqueness|1
+(noun)|baroque|artistic style (generic term)|idiom (generic term)
+baroreceptor|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+barosaur|1
+(noun)|barosaurus|sauropod (generic term)|sauropod dinosaur (generic term)
+barosaurus|1
+(noun)|barosaur|sauropod (generic term)|sauropod dinosaur (generic term)
+barouche|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+barque|1
+(noun)|bark|sailing vessel (generic term)|sailing ship (generic term)
+barrack|4
+(noun)|military quarters (generic term)
+(verb)|lodge (generic term)|accommodate (generic term)
+(verb)|cheer|inspire|urge|urge on|exhort|pep up|encourage (generic term)
+(verb)|jeer|scoff|flout|gibe|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+barracking|1
+(noun)|heckling|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+barracuda|1
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+barrage|3
+(noun)|bombardment|outpouring|onslaught|language (generic term)|linguistic communication (generic term)
+(noun)|barrage fire|battery|bombardment|shelling|fire (generic term)|firing (generic term)
+(verb)|bombard|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+barrage balloon|1
+(noun)|airship (generic term)|dirigible (generic term)
+barrage fire|1
+(noun)|barrage|battery|bombardment|shelling|fire (generic term)|firing (generic term)
+barrage jam|1
+(verb)|jam (generic term)|block (generic term)
+barrage jamming|1
+(noun)|jamming (generic term)|electronic jamming (generic term)|jam (generic term)
+barramunda|1
+(noun)|barramundi|Neoceratodus forsteri|lungfish (generic term)
+barramundi|1
+(noun)|barramunda|Neoceratodus forsteri|lungfish (generic term)
+barranquilla|1
+(noun)|Barranquilla|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+barrater|1
+(noun)|barrator|wrongdoer (generic term)|offender (generic term)
+barrator|1
+(noun)|barrater|wrongdoer (generic term)|offender (generic term)
+barratry|4
+(noun)|simony|traffic (generic term)
+(noun)|bribery (generic term)|graft (generic term)
+(noun)|fraud (generic term)
+(noun)|crime (generic term)|law-breaking (generic term)
+barred|2
+(adj)|bolted|fast|latched|locked|secured|fastened (similar term)
+(adj)|barricaded|blockaded|obstructed (similar term)
+barred owl|1
+(noun)|Strix varia|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+barred pickerel|1
+(noun)|redfin pickerel|Esox americanus|pickerel (generic term)
+barrel|6
+(noun)|gun barrel|tube (generic term)|tubing (generic term)
+(noun)|cask|vessel (generic term)
+(noun)|drum|cylinder (generic term)
+(noun)|barrelful|containerful (generic term)
+(noun)|bbl|United States liquid unit (generic term)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+barrel-shaped|1
+(adj)|round (similar term)|circular (similar term)
+barrel cactus|2
+(noun)|cactus (generic term)
+(noun)|echinocactus|cactus (generic term)
+barrel knot|1
+(noun)|blood knot|knot (generic term)
+barrel maker|1
+(noun)|cooper|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+barrel organ|1
+(noun)|grind organ|hand organ|hurdy gurdy|hurdy-gurdy|street organ|musical instrument (generic term)|instrument (generic term)
+barrel roll|1
+(noun)|roll (generic term)
+barrel vault|1
+(noun)|vault (generic term)
+barreled|2
+(adj)|barrelled|unbarreled (antonym)
+(adj)|barrelled|pointed (similar term)
+barrelfish|1
+(noun)|black rudderfish|Hyperglyphe perciformis|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+barrelful|1
+(noun)|barrel|containerful (generic term)
+barrelhouse|1
+(noun)|honky-tonk|barroom (generic term)|bar (generic term)|saloon (generic term)|ginmill (generic term)|taproom (generic term)
+barrelled|2
+(adj)|barreled|unbarreled (antonym)
+(adj)|barreled|pointed (similar term)
+barrels|1
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+barren|5
+(adj)|bare|bleak|desolate|stark|inhospitable (similar term)
+(adj)|destitute|devoid|innocent|empty (similar term)
+(adj)|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+(adj)|dead (similar term)
+(noun)|waste|wasteland|wilderness (generic term)|wild (generic term)
+barren ground caribou|1
+(noun)|Rangifer arcticus|caribou (generic term)|reindeer (generic term)|Greenland caribou (generic term)|Rangifer tarandus (generic term)
+barrenness|2
+(noun)|sterility (generic term)|infertility (generic term)
+(noun)|fruitlessness|aridity|quality (generic term)|fruitfulness (antonym)
+barrenwort|1
+(noun)|bishop's hat|Epimedium grandiflorum|herb (generic term)|herbaceous plant (generic term)
+barrette|1
+(noun)|pin (generic term)
+barretter|1
+(noun)|ballast resistor|ballast|resistor (generic term)|resistance (generic term)
+barricade|5
+(noun)|roadblock|barrier (generic term)
+(noun)|barrier (generic term)
+(verb)|block|blockade|stop|block off|block up|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|barricado|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+barricaded|1
+(adj)|barred|blockaded|obstructed (similar term)
+barricado|1
+(verb)|barricade|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+barrie|1
+(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist (generic term)|playwright (generic term)
+barrier|3
+(noun)|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|roadblock|obstacle (generic term)|obstruction (generic term)
+(noun)|mechanism (generic term)
+barrier island|1
+(noun)|island (generic term)
+barrier reef|1
+(noun)|coral reef (generic term)
+barrier strip|1
+(noun)|junction barrier|junction (generic term)|conjunction (generic term)
+barring|1
+(noun)|blackball|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+barrio|2
+(noun)|quarter (generic term)
+(noun)|urban area (generic term)|populated area (generic term)
+barrister|1
+(noun)|lawyer (generic term)|attorney (generic term)
+barroom|1
+(noun)|bar|saloon|ginmill|taproom|room (generic term)
+barrow|3
+(noun)|barrowful|containerful (generic term)
+(noun)|burial mound|grave mound|tumulus|mound (generic term)|hill (generic term)
+(noun)|garden cart|lawn cart|wheelbarrow|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+barrow's goldeneye|1
+(noun)|Barrow's goldeneye|Bucephala islandica|goldeneye (generic term)|whistler (generic term)|Bucephela clangula (generic term)
+barrow-boy|1
+(noun)|costermonger|barrow-man|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+barrow-man|1
+(noun)|costermonger|barrow-boy|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+barrowful|1
+(noun)|barrow|containerful (generic term)
+barrymore|5
+(noun)|Barrymore|John Barrymore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Barrymore|Ethel Barrymore|actress (generic term)
+(noun)|Barrymore|Lionel Barrymore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress (generic term)
+(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+bars|1
+(noun)|parallel bars|gymnastic apparatus (generic term)|exerciser (generic term)
+barstow|1
+(noun)|Barstow|town (generic term)
+bart|1
+(noun)|baronet|Bart|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+bartender|1
+(noun)|barman|barkeep|barkeeper|mixologist|employee (generic term)
+barter|2
+(noun)|swap|swop|trade|exchange (generic term)|interchange (generic term)
+(verb)|exchange (generic term)|change (generic term)|interchange (generic term)
+barter away|1
+(verb)|trade (generic term)|trade in (generic term)
+barterer|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+barth|2
+(noun)|Barth|Karl Barth|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|Barth|John Barth|John Simmons Barth|writer (generic term)|author (generic term)
+barthelme|1
+(noun)|Barthelme|Donald Barthelme|writer (generic term)|author (generic term)
+barthold george niebuhr|1
+(noun)|Niebuhr|Barthold George Niebuhr|historian (generic term)|historiographer (generic term)
+bartholdi|1
+(noun)|Bartholdi|Frederic Auguste Bartholdi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+bartholin|1
+(noun)|Bartholin|Caspar Bartholin|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+bartholin's gland|1
+(noun)|Bartholin's gland|vestibular gland (generic term)
+bartholomeu dias|1
+(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator (generic term)
+bartholomeu diaz|1
+(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator (generic term)
+bartholomew roberts|1
+(noun)|Roberts|Bartholomew Roberts|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+bartle frere|1
+(noun)|Bartle Frere|genus Bartle-Frere|green dinosaur|dicot genus (generic term)|magnoliopsid genus (generic term)
+bartlesville|1
+(noun)|Bartlesville|town (generic term)
+bartlett|3
+(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer (generic term)|adventurer (generic term)
+(noun)|Bartlett|John Bartlett|publisher (generic term)
+(noun)|bartlett pear|pear (generic term)
+bartlett pear|1
+(noun)|bartlett|pear (generic term)
+bartok|1
+(noun)|Bartok|Bela Bartok|composer (generic term)|pianist (generic term)|piano player (generic term)
+bartolome esteban murillo|1
+(noun)|Murillo|Bartolome Esteban Murillo|painter (generic term)
+bartolomeo alberto capillari|1
+(noun)|Gregory|Gregory XVI|Bartolomeo Alberto Capillari|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+bartolomeo prignano|1
+(noun)|Urban VI|Bartolomeo Prignano|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+bartolomeo vanzetti|1
+(noun)|Vanzetti|Bartolomeo Vanzetti|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+bartolommeo eustachio|1
+(noun)|Eustachio|Bartolommeo Eustachio|anatomist (generic term)
+bartonia|1
+(noun)|Mentzelia lindleyi|flower (generic term)
+bartram juneberry|1
+(noun)|Bartram Juneberry|Amelanchier bartramiana|Juneberry (generic term)|serviceberry (generic term)|service tree (generic term)|shadbush (generic term)|shadblow (generic term)
+bartramia|1
+(noun)|Bartramia|genus Bartramia|bird genus (generic term)
+bartramia longicauda|1
+(noun)|upland sandpiper|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper (generic term)
+bartramian sandpiper|1
+(noun)|upland sandpiper|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper (generic term)
+baruch|3
+(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier (generic term)|moneyman (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Baruch|disciple (generic term)|adherent (generic term)
+(noun)|Baruch|Book of Baruch|book (generic term)
+baruch de spinoza|1
+(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher (generic term)
+barunduki|1
+(noun)|baronduki|baranduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+barycenter|1
+(noun)|center of mass (generic term)|centre of mass (generic term)
+barye|1
+(noun)|bar absolute|microbar|pressure unit (generic term)
+baryon|1
+(noun)|heavy particle|hadron (generic term)|fermion (generic term)
+baryon number|1
+(noun)|number (generic term)
+baryshnikov|1
+(noun)|Baryshnikov|Mikhail Baryshnikov|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+baryta|1
+(noun)|barium (generic term)|Ba (generic term)|atomic number 56 (generic term)
+barytes|1
+(noun)|heavy spar|barite|barium sulphate|mineral (generic term)
+barytic|1
+(adj)|barium|Ba|atomic number 56 (related term)
+barytone|1
+(noun)|baritone|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+bas bleu|1
+(noun)|bluestocking|woman (generic term)|adult female (generic term)
+bas mitzvah|1
+(noun)|bat mitzvah|bath mitzvah|initiation (generic term)|induction (generic term)|installation (generic term)
+bas relief|1
+(noun)|low relief|basso relievo|basso rilievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|high relief (antonym)
+basal|3
+(adj)|radical|cauline (antonym)
+(adj)|base|basic (similar term)
+(adj)|primary|essential (similar term)
+basal body temperature|1
+(noun)|basal temperature|body temperature (generic term)|blood heat (generic term)
+basal body temperature method|1
+(noun)|basal body temperature method of family planning|natural family planning (generic term)
+basal body temperature method of family planning|1
+(noun)|basal body temperature method|natural family planning (generic term)
+basal ganglion|1
+(noun)|ganglion (generic term)
+basal metabolic rate|1
+(noun)|BMR|metabolic rate (generic term)
+basal metabolism|1
+(noun)|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+basal placentation|1
+(noun)|placentation (generic term)
+basal temperature|1
+(noun)|basal body temperature|body temperature (generic term)|blood heat (generic term)
+basal vein|1
+(noun)|vena basalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+basalt|1
+(noun)|volcanic rock (generic term)
+basaltic|1
+(adj)|volcanic rock (related term)
+bascule|1
+(noun)|structure (generic term)|construction (generic term)
+base|29
+(adj)|basal|basic (similar term)
+(adj)|inferior (similar term)
+(adj)|baseborn|humble|lowly|lowborn (similar term)
+(adj)|dishonorable|dishonourable|immoral|unethical|wrong (similar term)
+(adj)|mean|meanspirited|ignoble (similar term)
+(adj)|baseborn|illegitimate (similar term)
+(adj)|counterfeit (similar term)|imitative (similar term)
+(noun)|alkali|compound (generic term)|chemical compound (generic term)
+(noun)|base of operations|military installation (generic term)
+(noun)|foundation|fundament|foot|groundwork|substructure|understructure|support (generic term)
+(noun)|bag|baseball equipment (generic term)
+(noun)|radix|number (generic term)
+(noun)|part (generic term)|piece (generic term)
+(noun)|bottom (generic term)
+(noun)|floor|control (generic term)
+(noun)|basis|foundation|fundament|groundwork|cornerstone|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|pedestal|stand|support (generic term)
+(noun)|flank (generic term)
+(noun)|basis|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|home|location (generic term)
+(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|root|root word|stem|theme|radical|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(noun)|infrastructure|store (generic term)|stock (generic term)|fund (generic term)
+(noun)|ingredient (generic term)
+(noun)|bottom (generic term)|underside (generic term)|undersurface (generic term)
+(noun)|electrode (generic term)
+(verb)|establish|ground|found
+(verb)|free-base|drug (generic term)|do drugs (generic term)
+(verb)|station|post|send|place|move (generic term)|displace (generic term)
+base-forming|1
+(adj)|alkaline (similar term)|alkalic (similar term)
+base hit|1
+(noun)|safety|hit (generic term)
+base metal|1
+(noun)|metallic element (generic term)|metal (generic term)
+base of operations|1
+(noun)|base|military installation (generic term)
+base on balls|1
+(noun)|walk|pass|accomplishment (generic term)|achievement (generic term)
+base pair|1
+(noun)|nucleotide (generic term)
+base rate|1
+(noun)|interest rate (generic term)|rate of interest (generic term)
+base runner|1
+(noun)|runner|ballplayer (generic term)|baseball player (generic term)
+baseball|2
+(noun)|baseball game|ball game (generic term)|ballgame (generic term)
+(noun)|ball (generic term)|baseball equipment (generic term)
+baseball bat|1
+(noun)|lumber|bat (generic term)|baseball equipment (generic term)
+baseball cap|1
+(noun)|jockey cap|golf cap|cap (generic term)
+baseball card|1
+(noun)|trading card (generic term)
+baseball clinic|1
+(noun)|clinic (generic term)
+baseball club|1
+(noun)|ball club|club|nine|baseball team (generic term)
+baseball coach|1
+(noun)|baseball manager|coach (generic term)|manager (generic term)|handler (generic term)
+baseball diamond|1
+(noun)|diamond|infield|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|outfield (antonym)
+baseball equipment|1
+(noun)|sports equipment (generic term)
+baseball field|1
+(noun)|ball field|diamond|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+baseball game|1
+(noun)|baseball|ball game (generic term)|ballgame (generic term)
+baseball glove|1
+(noun)|glove|baseball mitt|mitt|baseball equipment (generic term)
+baseball league|1
+(noun)|league (generic term)|conference (generic term)
+baseball manager|1
+(noun)|baseball coach|coach (generic term)|manager (generic term)|handler (generic term)
+baseball mitt|1
+(noun)|baseball glove|glove|mitt|baseball equipment (generic term)
+baseball play|1
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+baseball player|1
+(noun)|ballplayer|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+baseball score|1
+(noun)|score (generic term)
+baseball season|1
+(noun)|season (generic term)
+baseball swing|1
+(noun)|swing|cut|stroke (generic term)|shot (generic term)
+baseball team|1
+(noun)|team (generic term)|squad (generic term)
+baseboard|1
+(noun)|mopboard|skirting board|molding (generic term)|moulding (generic term)
+baseborn|2
+(adj)|base|humble|lowly|lowborn (similar term)
+(adj)|base|illegitimate (similar term)
+based|3
+(adj)|supported (similar term)
+(adj)|founded|supported (similar term)
+(adj)|settled (similar term)
+based on|1
+(adj)|supported (similar term)
+basel|1
+(noun)|Basel|Basle|Bale|city (generic term)|metropolis (generic term)|urban center (generic term)
+baseless|1
+(adj)|groundless|idle|unfounded|unwarranted|wild|unsupported (similar term)
+baseline|3
+(noun)|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|service line|line (generic term)
+(noun)|line (generic term)
+basely|1
+(adv)|meanly|scurvily
+basement|2
+(noun)|cellar|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|support (generic term)
+baseness|1
+(noun)|sordidness|contemptibility|despicableness|despicability|unworthiness (generic term)
+basenji|1
+(noun)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+bash|3
+(noun)|knock|bang|smash|belt|blow (generic term)|bump (generic term)
+(noun)|do|brawl|party (generic term)
+(verb)|sock|bop|whop|whap|bonk|hit (generic term)
+bashful|2
+(adj)|timid (similar term)
+(adj)|blate|backward (similar term)
+bashfully|1
+(adv)|shyly|timidly
+bashfulness|1
+(noun)|abashment|embarrassment (generic term)
+basia|1
+(noun)|Basra|Basia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+basic|6
+(adj)|basal (similar term)|base (similar term)|elementary (similar term)|elemental (similar term)|primary (similar term)|fundamental (similar term)|rudimentary (similar term)|underlying (similar term)|grassroots (similar term)|radical (similar term)|incidental (antonym)
+(adj)|canonic|canonical|standard (similar term)
+(adj)|introductory|first (similar term)
+(adj)|alkaline (similar term)|alkalic (similar term)
+(noun)|BASIC|programming language (generic term)|programing language (generic term)
+(noun)|staple|commodity (generic term)|trade good (generic term)|good (generic term)
+basic assumption|1
+(noun)|constatation|self-evident truth|assumption (generic term)|supposition (generic term)|supposal (generic term)
+basic cognitive process|1
+(noun)|process (generic term)|cognitive process (generic term)|mental process (generic term)|operation (generic term)|cognitive operation (generic term)
+basic dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+basic english|1
+(noun)|Basic English|artificial language (generic term)
+basic iron|1
+(noun)|pig iron (generic term)
+basic point defense missile system|1
+(noun)|shipboard system (generic term)
+basic principle|1
+(noun)|fundamentals|basics|fundamental principle|bedrock|principle (generic term)
+basic slag|1
+(noun)|slag (generic term)|scoria (generic term)|dross (generic term)
+basic training|1
+(noun)|military training (generic term)
+basically|1
+(adv)|fundamentally|essentially|in essence|au fond
+basics|2
+(noun)|rudiments|fact (generic term)
+(noun)|fundamentals|fundamental principle|basic principle|bedrock|principle (generic term)
+basidial|1
+(adj)|reproductive structure (related term)
+basidiocarp|1
+(noun)|fruiting body (generic term)
+basidiolichen|1
+(noun)|lichen (generic term)
+basidiomycete|1
+(noun)|basidiomycetous fungi|fungus (generic term)
+basidiomycetes|1
+(noun)|Basidiomycetes|class Basidiomycetes|class (generic term)
+basidiomycetous|1
+(adj)|fungus (related term)
+basidiomycetous fungi|1
+(noun)|basidiomycete|fungus (generic term)
+basidiomycota|1
+(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division (generic term)
+basidiomycotina|1
+(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division (generic term)
+basidiospore|1
+(noun)|spore (generic term)
+basidiosporous|1
+(adj)|spore (related term)
+basidium|1
+(noun)|reproductive structure (generic term)
+basifixed|1
+(adj)|affixed (similar term)
+basify|1
+(verb)|alkalize|alkalise|alkalify|change state (generic term)|turn (generic term)|acidify (antonym)
+basil|3
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+(noun)|sweet basil|herb (generic term)
+basil balm|2
+(noun)|Monarda clinopodia|monarda (generic term)|wild bergamot (generic term)
+(noun)|basil thyme|mother of thyme|Acinos arvensis|Satureja acinos|herb (generic term)|herbaceous plant (generic term)
+basil mint|1
+(noun)|Pycnanthemum virginianum|mountain mint (generic term)
+basil of caesarea|1
+(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+basil the great|1
+(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+basil thyme|1
+(noun)|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb (generic term)|herbaceous plant (generic term)
+basilar|1
+(adj)|basilary|bottom (related term)
+basilar artery|1
+(noun)|arteria basilaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+basilar membrane|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+basilary|1
+(adj)|basilar|bottom (related term)
+basileus|1
+(noun)|ruler (generic term)|swayer (generic term)
+basilic vein|1
+(noun)|vena basilica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+basilica|2
+(noun)|church (generic term)|church building (generic term)
+(noun)|Roman basilica|Roman building (generic term)
+basilican|1
+(adj)|Roman building (related term)
+basilicata|1
+(noun)|Basilicata|Lucania|Italian region (generic term)
+basiliscus|1
+(noun)|Basiliscus|genus Basiliscus|reptile genus (generic term)
+basilisk|3
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+(noun)|cannon (generic term)
+(noun)|iguanid (generic term)|iguanid lizard (generic term)
+basin|5
+(noun)|vessel (generic term)
+(noun)|basinful|containerful (generic term)
+(noun)|natural depression (generic term)|depression (generic term)
+(noun)|river basin|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|washbasin|washbowl|washstand|lavatory|sink (generic term)
+basinal|1
+(adj)|natural depression|depression (related term)
+basined|1
+(adj)|enclosed (similar term)
+basinet|1
+(noun)|helmet (generic term)
+basinful|1
+(noun)|basin|containerful (generic term)
+basipetal|1
+(adj)|acropetal (antonym)
+basis|3
+(noun)|footing|ground|foundation (generic term)
+(noun)|base|foundation|fundament|groundwork|cornerstone|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|base|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+basiscopic|1
+(adj)|acroscopic (antonym)
+basivertebral vein|1
+(noun)|vena basivertebralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+bask|2
+(verb)|enjoy|relish|savor|savour
+(verb)|lie (generic term)
+basket|4
+(noun)|handbasket|container (generic term)
+(noun)|basketful|containerful (generic term)
+(noun)|basketball hoop|hoop|goal (generic term)|basketball equipment (generic term)
+(noun)|field goal|score (generic term)
+basket-handle arch|1
+(noun)|three-centered arch|round arch (generic term)
+basket-shaped|1
+(adj)|formed (similar term)
+basket ash|1
+(noun)|black ash|brown ash|hoop ash|Fraxinus nigra|ash (generic term)|ash tree (generic term)
+basket fern|2
+(noun)|toothed sword fern|Nephrolepis pectinata|sword fern (generic term)
+(noun)|Drynaria rigidula|fern (generic term)
+basket fish|1
+(noun)|basket star|echinoderm (generic term)
+basket flower|1
+(noun)|Centaurea americana|centaury (generic term)
+basket hilt|1
+(noun)|hilt (generic term)
+basket maker|1
+(noun)|Basket Maker|primitive (generic term)|primitive person (generic term)
+basket oak|1
+(noun)|cow oak|Quercus prinus|Quercus montana|chestnut oak (generic term)
+basket rummy|1
+(noun)|canasta|meld|rummy (generic term)|rum (generic term)
+basket spikemoss|1
+(noun)|meadow spikemoss|Selaginella apoda|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+basket star|1
+(noun)|basket fish|echinoderm (generic term)
+basket weave|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+basket willow|1
+(noun)|purple willow|red willow|red osier|purple osier|Salix purpurea|osier (generic term)
+basketball|2
+(noun)|basketball game|hoops|court game (generic term)
+(noun)|ball (generic term)|basketball equipment (generic term)
+basketball backboard|1
+(noun)|backboard|game equipment (generic term)
+basketball clinic|1
+(noun)|clinic (generic term)
+basketball coach|1
+(noun)|coach (generic term)|manager (generic term)|handler (generic term)
+basketball court|1
+(noun)|court (generic term)
+basketball equipment|1
+(noun)|sports equipment (generic term)
+basketball game|1
+(noun)|basketball|hoops|court game (generic term)
+basketball hoop|1
+(noun)|basket|hoop|goal (generic term)|basketball equipment (generic term)
+basketball league|1
+(noun)|league (generic term)|conference (generic term)
+basketball play|1
+(noun)|play (generic term)
+basketball player|1
+(noun)|basketeer|cager|athlete (generic term)|jock (generic term)
+basketball score|1
+(noun)|score (generic term)
+basketball season|1
+(noun)|season (generic term)
+basketball shot|1
+(noun)|shot (generic term)
+basketball team|1
+(noun)|five|team (generic term)|squad (generic term)
+basketeer|1
+(noun)|basketball player|cager|athlete (generic term)|jock (generic term)
+basketful|1
+(noun)|basket|containerful (generic term)
+basketmaker|1
+(noun)|basketweaver|maker (generic term)|shaper (generic term)
+basketry|1
+(noun)|trade (generic term)|craft (generic term)
+basketweaver|1
+(noun)|basketmaker|maker (generic term)|shaper (generic term)
+basking shark|1
+(noun)|Cetorhinus maximus|mackerel shark (generic term)
+basle|1
+(noun)|Basel|Basle|Bale|city (generic term)|metropolis (generic term)|urban center (generic term)
+basophil|1
+(noun)|basophile|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+basophile|1
+(noun)|basophil|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+basophilia|1
+(noun)|stainability (generic term)
+basophilic|1
+(adj)|stainability (related term)
+basotho|1
+(noun)|Basotho|African (generic term)
+basque|2
+(noun)|Basque|European (generic term)
+(noun)|Basque|natural language (generic term)|tongue (generic term)
+basque fatherland and liberty|1
+(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+basque homeland and freedom|1
+(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+basra|1
+(noun)|Basra|Basia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bass|9
+(adj)|deep|low (similar term)|low-pitched (similar term)
+(noun)|pitch (generic term)
+(noun)|bass part|part (generic term)|voice (generic term)
+(noun)|basso|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|sea bass|saltwater fish (generic term)
+(noun)|freshwater bass|freshwater fish (generic term)
+(noun)|bass voice|basso|singing voice (generic term)
+(noun)|musical instrument (generic term)|instrument (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+bass clarinet|1
+(noun)|clarinet (generic term)
+bass clef|1
+(noun)|F clef|clef (generic term)
+bass drum|1
+(noun)|gran casa|drum (generic term)|membranophone (generic term)|tympan (generic term)
+bass fiddle|1
+(noun)|bass viol|bull fiddle|double bass|contrabass|string bass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+bass guitar|1
+(noun)|guitar (generic term)|bass (generic term)
+bass horn|1
+(noun)|sousaphone|tuba|brass (generic term)|brass instrument (generic term)|bass (generic term)
+bass part|1
+(noun)|bass|part (generic term)|voice (generic term)
+bass viol|2
+(noun)|viola da gamba|gamba|viol (generic term)
+(noun)|bass fiddle|bull fiddle|double bass|contrabass|string bass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+bass voice|1
+(noun)|bass|basso|singing voice (generic term)
+bassariscidae|1
+(noun)|Bassariscidae|subfamily Bassariscidae|mammal family (generic term)
+bassariscus|1
+(noun)|Bassariscus|genus Bassariscus|mammal genus (generic term)
+bassariscus astutus|1
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+bassarisk|1
+(noun)|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+basse-normandie|1
+(noun)|Basse-Normandie|Lower-Normandy|French region (generic term)
+basset|2
+(noun)|basset hound|hound (generic term)|hound dog (generic term)
+(verb)|crop out|appear (generic term)
+basset horn|1
+(noun)|clarinet (generic term)
+basset hound|1
+(noun)|basset|hound (generic term)|hound dog (generic term)
+basset oboe|1
+(noun)|heckelphone|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+basseterre|1
+(noun)|Basseterre|national capital (generic term)
+bassia|1
+(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus (generic term)
+bassia scoparia|1
+(noun)|summer cypress|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+bassine|1
+(noun)|fiber (generic term)|fibre (generic term)
+bassinet|2
+(noun)|baby bed (generic term)|baby's bed (generic term)
+(noun)|baby buggy (generic term)|baby carriage (generic term)|carriage (generic term)|perambulator (generic term)|pram (generic term)|stroller (generic term)|go-cart (generic term)|pushchair (generic term)|pusher (generic term)
+bassist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+basso|2
+(noun)|bass|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|bass|bass voice|singing voice (generic term)
+basso continuo|1
+(noun)|figured bass|continuo|thorough bass|bass (generic term)|bass part (generic term)
+basso profundo|1
+(noun)|bass (generic term)|bass voice (generic term)|basso (generic term)
+basso relievo|1
+(noun)|bas relief|low relief|basso rilievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|high relief (antonym)
+basso rilievo|1
+(noun)|bas relief|low relief|basso relievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|high relief (antonym)
+bassoon|1
+(noun)|double-reed instrument (generic term)|double reed (generic term)
+bassoonist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+basswood|2
+(noun)|linden|wood (generic term)
+(noun)|linden|linden tree|lime|lime tree|tree (generic term)
+bast|3
+(noun)|bast fiber|natural fiber (generic term)|natural fibre (generic term)
+(noun)|phloem|vascular tissue (generic term)
+(noun)|Bast|Egyptian deity (generic term)
+bast fiber|1
+(noun)|bast|natural fiber (generic term)|natural fibre (generic term)
+bastard|4
+(adj)|bogus|fake|phony|phoney|counterfeit (similar term)|imitative (similar term)
+(noun)|asshole|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|by-blow|love child|illegitimate child|illegitimate|whoreson|offspring (generic term)|progeny (generic term)|issue (generic term)
+(noun)|mongrel|variation (generic term)
+bastard feverfew|1
+(noun)|Parthenium hysterophorus|weed (generic term)
+bastard indigo|3
+(noun)|Tephrosia purpurea|hoary pea (generic term)
+(noun)|false indigo|Amorpha fruticosa|amorpha (generic term)
+(noun)|false indigo|Amorpha californica|amorpha (generic term)
+bastard lignum vitae|1
+(noun)|Guaiacum sanctum|angiospermous tree (generic term)|flowering tree (generic term)
+bastard pennyroyal|1
+(noun)|Trichostema dichotomum|blue curls (generic term)
+bastard pimpernel|1
+(noun)|chaffweed|false pimpernel|subshrub (generic term)|suffrutex (generic term)
+bastard ridley|1
+(noun)|Atlantic ridley|bastard turtle|Lepidochelys kempii|ridley (generic term)
+bastard title|1
+(noun)|half title|page (generic term)
+bastard toadflax|1
+(noun)|Comandra pallida|parasitic plant (generic term)
+bastard turtle|1
+(noun)|Atlantic ridley|bastard ridley|Lepidochelys kempii|ridley (generic term)
+bastard wing|1
+(noun)|alula|spurious wing|feather (generic term)|plume (generic term)|plumage (generic term)
+bastard yellowwood|1
+(noun)|common yellowwood|Afrocarpus falcata|gymnospermous yellowwood (generic term)
+bastardisation|1
+(noun)|bastardization|degradation (generic term)|debasement (generic term)
+bastardise|2
+(verb)|bastardize|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|bastardize|declare (generic term)|adjudge (generic term)|hold (generic term)
+bastardised|1
+(adj)|bastardized|impure (similar term)
+bastardization|2
+(noun)|declaration (generic term)
+(noun)|bastardisation|degradation (generic term)|debasement (generic term)
+bastardize|2
+(verb)|bastardise|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|bastardise|declare (generic term)|adjudge (generic term)|hold (generic term)
+bastardized|1
+(adj)|bastardised|impure (similar term)
+bastardly|2
+(adj)|misbegot|misbegotten|spurious|illegitimate (similar term)
+(adj)|mean|contemptible (similar term)
+bastardy|1
+(noun)|illegitimacy|bar sinister|status (generic term)|position (generic term)
+bastardy proceeding|1
+(noun)|paternity suit|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+baste|4
+(noun)|basting|tacking|stitch (generic term)
+(verb)|moisten (generic term)|wash (generic term)|dampen (generic term)
+(verb)|clobber|batter|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|tack|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+baster|3
+(noun)|roaster (generic term)
+(noun)|tacker|sewer (generic term)
+(noun)|cooking utensil (generic term)|cookware (generic term)
+bastille|2
+(noun)|Bastille|fortress (generic term)|fort (generic term)
+(noun)|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)|prison (generic term)|prison house (generic term)
+bastille day|1
+(noun)|Bastille Day|14 July|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+bastinado|3
+(noun)|cudgel (generic term)
+(noun)|falanga|torture (generic term)|torturing (generic term)
+(verb)|beat (generic term)
+basting|2
+(noun)|baste|tacking|stitch (generic term)
+(noun)|moistening (generic term)|dampening (generic term)
+bastion|3
+(noun)|defense (generic term)|defence (generic term)|defense force (generic term)|defence force (generic term)
+(noun)|citadel|stronghold (generic term)|fastness (generic term)
+(noun)|fortification (generic term)|munition (generic term)
+bastioned|1
+(adj)|fortified|protected (similar term)|secure (similar term)
+bastnaesite|1
+(noun)|bastnasite|mineral (generic term)
+bastnasite|1
+(noun)|bastnaesite|mineral (generic term)
+basuco|1
+(noun)|cocaine (generic term)|cocain (generic term)
+basuto|1
+(noun)|Sesotho|Basuto|Sotho (generic term)
+basutoland|1
+(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country (generic term)|African nation (generic term)
+bat|8
+(noun)|chiropteran|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|at-bat|turn (generic term)|play (generic term)
+(noun)|squash racket|squash racquet|racket (generic term)|racquet (generic term)
+(noun)|cricket bat|cricket equipment (generic term)
+(noun)|club (generic term)
+(verb)|flutter|blink (generic term)|wink (generic term)|nictitate (generic term)|nictate (generic term)
+(verb)|hit (generic term)
+(verb)|cream|clobber|drub|thrash|lick|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+bat boy|1
+(noun)|male child (generic term)|boy (generic term)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+bat mitzvah|2
+(noun)|bath mitzvah|bas mitzvah|initiation (generic term)|induction (generic term)|installation (generic term)
+(verb)|covenant (generic term)
+bata|1
+(noun)|Bata|Biu-Mandara (generic term)
+bataan|1
+(noun)|Bataan|Corregidor|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+batch|4
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|clutch|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|group (generic term)
+batch processing|1
+(noun)|execution (generic term)|instruction execution (generic term)
+bate|3
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|beat (generic term)|flap (generic term)
+(verb)|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+bateau bridge|1
+(noun)|pontoon bridge|floating bridge|bridge (generic term)|span (generic term)
+bated|2
+(adj)|restrained (similar term)
+(adj)|decreased (similar term)|reduced (similar term)
+batfish|1
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+batfowl|1
+(verb)|capture (generic term)|catch (generic term)
+bath|7
+(noun)|vessel (generic term)
+(noun)|washup (generic term)|bathing (generic term)
+(noun)|bathtub|bathing tub|tub|vessel (generic term)
+(noun)|liquid unit (generic term)|liquid measure (generic term)
+(noun)|Bath|town (generic term)
+(noun)|bathroom|room (generic term)
+(verb)|bathe|cleanse (generic term)|clean (generic term)
+bath asparagus|1
+(noun)|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem (generic term)
+bath chair|1
+(noun)|wheelchair (generic term)
+bath linen|1
+(noun)|linen (generic term)
+bath mat|1
+(noun)|bath linen (generic term)
+bath mitzvah|1
+(noun)|bat mitzvah|bas mitzvah|initiation (generic term)|induction (generic term)|installation (generic term)
+bath oil|1
+(noun)|toiletry (generic term)|toilet article (generic term)
+bath powder|1
+(noun)|toilet powder|dusting powder|powder (generic term)
+bath salts|1
+(noun)|toiletry (generic term)|toilet article (generic term)
+bath soap|1
+(noun)|toilet soap|face soap|soap (generic term)
+bath towel|1
+(noun)|towel (generic term)|bath linen (generic term)
+bath water|1
+(noun)|water (generic term)|H2O (generic term)
+bathe|4
+(noun)|swimming (generic term)|swim (generic term)
+(verb)|cleanse (generic term)|clean (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|bath|cleanse (generic term)|clean (generic term)
+bather|2
+(noun)|swimmer|natator|traveler (generic term)|traveller (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bathetic|1
+(adj)|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+bathhouse|2
+(noun)|bathing machine|building (generic term)|edifice (generic term)
+(noun)|bagnio|house (generic term)
+bathing|2
+(noun)|diversion (generic term)|recreation (generic term)
+(noun)|washup|wash (generic term)|washing (generic term)|lavation (generic term)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+bathing cap|1
+(noun)|swimming cap|cap (generic term)
+bathing costume|1
+(noun)|swimsuit|swimwear|bathing suit|swimming costume|garment (generic term)
+bathing machine|1
+(noun)|bathhouse|building (generic term)|edifice (generic term)
+bathing suit|1
+(noun)|swimsuit|swimwear|swimming costume|bathing costume|garment (generic term)
+bathing trunks|1
+(noun)|swimming trunks|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+bathing tub|1
+(noun)|bathtub|bath|tub|vessel (generic term)
+batholite|1
+(noun)|batholith|pluton|plutonic rock|igneous rock (generic term)
+batholith|1
+(noun)|batholite|pluton|plutonic rock|igneous rock (generic term)
+batholithic|1
+(adj)|batholitic|igneous rock (related term)
+batholitic|1
+(adj)|batholithic|igneous rock (related term)
+bathometer|1
+(noun)|bathymeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+bathos|3
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|mawkishness|sentimentality (generic term)
+(noun)|anticlimax|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+bathrobe|1
+(noun)|robe (generic term)
+bathroom|2
+(noun)|bath|room (generic term)
+(noun)|toilet|lavatory|lav|can|john|privy|room (generic term)
+bathroom cleaner|1
+(noun)|cleansing agent (generic term)|cleanser (generic term)|cleaner (generic term)
+bathroom fixture|1
+(noun)|fixture (generic term)
+bathroom tissue|1
+(noun)|toilet tissue|toilet paper|tissue (generic term)|tissue paper (generic term)
+bathsheba|1
+(noun)|Bathsheba|wife (generic term)|married woman (generic term)
+bathtub|1
+(noun)|bathing tub|bath|tub|vessel (generic term)
+bathtub gin|1
+(noun)|gin (generic term)
+bathyal|1
+(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones (related term)
+bathyal district|1
+(noun)|continental slope|bathyal zone|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+bathyal zone|1
+(noun)|continental slope|bathyal district|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+bathyergidae|1
+(noun)|Bathyergidae|family Bathyergidae|mammal family (generic term)
+bathyergus|1
+(noun)|Bathyergus|genus Bathyergus|mammal genus (generic term)
+bathymeter|1
+(noun)|bathometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+bathymetric|1
+(adj)|bathymetrical|measurement|measuring|measure|mensuration (related term)
+bathymetrical|1
+(adj)|bathymetric|measurement|measuring|measure|mensuration (related term)
+bathymetry|1
+(noun)|plumbing|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+bathyscape|1
+(noun)|bathyscaphe|bathyscaph|submersible (generic term)
+bathyscaph|1
+(noun)|bathyscaphe|bathyscape|submersible (generic term)
+bathyscaphe|1
+(noun)|bathyscaph|bathyscape|submersible (generic term)
+bathysphere|1
+(noun)|submersible (generic term)
+batidaceae|1
+(noun)|Batidaceae|family Batidaceae|saltwort family|caryophylloid dicot family (generic term)
+batik|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|hand-dye (generic term)
+batis|1
+(noun)|Batis|genus Batis|caryophylloid dicot genus (generic term)
+batis maritima|1
+(noun)|saltwort|Batis maritima|shrub (generic term)|bush (generic term)
+batiste|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+batman|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+batna|1
+(noun)|Batna|town (generic term)
+batoidei|1
+(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order (generic term)
+batoko palm|1
+(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|Flacourtia indica|shrub (generic term)|bush (generic term)
+baton|5
+(noun)|wand|rod (generic term)
+(noun)|truncheon|nightstick|billy|billystick|billy club|club (generic term)
+(noun)|staff (generic term)
+(noun)|rod (generic term)
+(noun)|sports implement (generic term)
+baton rouge|1
+(noun)|Baton Rouge|capital of Louisiana|state capital (generic term)
+baton rouge bridge|1
+(noun)|Baton Rouge Bridge|cantilever bridge (generic term)
+baton twirler|1
+(noun)|twirler|performer (generic term)|performing artist (generic term)
+batrachia|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+batrachian|2
+(adj)|anuran|salientian|animal order (related term)
+(noun)|frog|toad|toad frog|anuran|salientian|amphibian (generic term)
+batrachoididae|1
+(noun)|Batrachoididae|family Batrachoididae|fish family (generic term)
+batrachomyomachia|1
+(noun)|affray (generic term)|altercation (generic term)|fracas (generic term)
+batrachoseps|1
+(noun)|Batrachoseps|genus Batrachoseps|amphibian genus (generic term)
+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 (similar term)
+batsman|1
+(noun)|batter|hitter|slugger|ballplayer (generic term)|baseball player (generic term)
+batswana|1
+(noun)|Tswana|Bechuana|Batswana|Bantu (generic term)
+battalion|2
+(noun)|army unit (generic term)
+(noun)|large number|multitude|plurality|pack|large indefinite quantity (generic term)|large indefinite amount (generic term)
+batten|4
+(noun)|batting|stuffing (generic term)
+(noun)|strip (generic term)
+(verb)|batten down|secure|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+batten down|1
+(verb)|batten|secure|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+batter|5
+(noun)|hitter|slugger|batsman|ballplayer (generic term)|baseball player (generic term)
+(noun)|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(verb)|buffet|knock about|strike (generic term)
+(verb)|clobber|baste|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|dinge|change shape (generic term)|change form (generic term)|deform (generic term)
+batter's box|1
+(noun)|box (generic term)
+batter-fried|1
+(adj)|cooked (similar term)
+batter bread|1
+(noun)|spoon bread|cornbread (generic term)
+battercake|1
+(noun)|pancake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake (generic term)
+battered|3
+(adj)|beat-up|beaten-up|damaged (similar term)
+(adj)|worn (similar term)
+(adj)|abused (similar term)|ill-treated (similar term)|maltreated (similar term)|mistreated (similar term)
+battering|1
+(noun)|banging|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+battering ram|1
+(noun)|ram (generic term)
+battery|7
+(noun)|artillery (generic term)|artillery unit (generic term)
+(noun)|electric battery|electrical device (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|team (generic term)|squad (generic term)
+(noun)|stamp battery|stamp mill (generic term)|stamping mill (generic term)
+(noun)|barrage|barrage fire|bombardment|shelling|fire (generic term)|firing (generic term)
+(noun)|assault and battery|assault (generic term)
+battery-acid|1
+(noun)|acid|back breaker|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+battery-powered|1
+(adj)|powered (similar term)
+battery acid|1
+(noun)|electrolyte acid|vitriol (generic term)|oil of vitriol (generic term)|sulfuric acid (generic term)|sulphuric acid (generic term)
+battery charger|1
+(noun)|charger|device (generic term)
+batting|2
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|batten|stuffing (generic term)
+batting average|2
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+(noun)|proportion (generic term)
+batting cage|1
+(noun)|cage|baseball equipment (generic term)
+batting coach|1
+(noun)|baseball coach (generic term)|baseball manager (generic term)
+batting glove|1
+(noun)|glove (generic term)|baseball equipment (generic term)
+batting helmet|1
+(noun)|helmet (generic term)|baseball equipment (generic term)
+batting order|1
+(noun)|card|lineup|roll (generic term)|roster (generic term)
+battle|4
+(noun)|conflict|fight|engagement|military action (generic term)|action (generic term)
+(noun)|struggle|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|conflict|struggle|group action (generic term)
+(verb)|combat|contend (generic term)|fight (generic term)|struggle (generic term)
+battle-ax|2
+(noun)|battle-axe|broadax (generic term)|broadaxe (generic term)
+(noun)|battle-axe|wife (generic term)|married woman (generic term)
+battle-axe|2
+(noun)|battle-ax|wife (generic term)|married woman (generic term)
+(noun)|battle-ax|broadax (generic term)|broadaxe (generic term)
+battle-scarred|1
+(adj)|injured (similar term)
+battle born state|1
+(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state (generic term)
+battle cruiser|1
+(noun)|cruiser (generic term)
+battle cry|2
+(noun)|war cry|war whoop|rallying cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|war cry|rallying cry|cry|watchword|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+battle damage|1
+(noun)|combat casualty|damage (generic term)|equipment casualty (generic term)
+battle dress|1
+(noun)|military uniform (generic term)
+battle fatigue|1
+(noun)|combat fatigue|combat neurosis|shell shock|posttraumatic stress disorder (generic term)|PTSD (generic term)
+battle flag|1
+(noun)|flag (generic term)
+battle fleet|1
+(noun)|fleet (generic term)
+battle group|1
+(noun)|army unit (generic term)
+battle line|1
+(noun)|line (generic term)
+battle of atlanta|1
+(noun)|Atlanta|battle of Atlanta|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+battle of austerlitz|1
+(noun)|Austerlitz|battle of Austerlitz|pitched battle (generic term)
+battle of boyne|1
+(noun)|Boyne|battle of Boyne|pitched battle (generic term)
+battle of britain|1
+(noun)|Battle of Britain|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+battle of brunanburh|1
+(noun)|Brunanburh|battle of Brunanburh|pitched battle (generic term)
+battle of bull run|1
+(noun)|Bull Run|Battle of Bull Run|pitched battle (generic term)
+battle of bunker hill|1
+(noun)|Bunker Hill|battle of Bunker Hill|pitched battle (generic term)
+battle of caporetto|1
+(noun)|Caporetto|battle of Caporetto|pitched battle (generic term)
+battle of chattanooga|1
+(noun)|Chattanooga|battle of Chattanooga|pitched battle (generic term)
+battle of chickamauga|1
+(noun)|Chickamauga|battle of Chickamauga|pitched battle (generic term)
+battle of cowpens|1
+(noun)|Cowpens|battle of Cowpens|pitched battle (generic term)
+battle of crecy|1
+(noun)|Crecy|battle of Crecy|pitched battle (generic term)
+battle of cunaxa|1
+(noun)|Cunaxa|battle of Cunaxa|pitched battle (generic term)
+battle of cynoscephalae|1
+(noun)|Cynoscephalae|battle of Cynoscephalae|pitched battle (generic term)
+battle of el alamein|1
+(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle (generic term)
+battle of flodden field|1
+(noun)|Flodden|Battle of Flodden Field|pitched battle (generic term)
+battle of fontenoy|1
+(noun)|Fontenoy|Battle of Fontenoy|pitched battle (generic term)
+battle of fredericksburg|1
+(noun)|Fredericksburg|Battle of Fredericksburg|pitched battle (generic term)
+battle of gettysburg|1
+(noun)|Gettysburg|Battle of Gettysburg|pitched battle (generic term)
+battle of granicus river|1
+(noun)|Granicus|Battle of Granicus River|pitched battle (generic term)
+battle of guadalcanal|1
+(noun)|Guadalcanal|Battle of Guadalcanal|pitched battle (generic term)
+battle of hastings|1
+(noun)|Hastings|battle of Hastings|pitched battle (generic term)
+battle of hohenlinden|1
+(noun)|Hohenlinden|battle of Hohenlinden|pitched battle (generic term)
+battle of ipsus|1
+(noun)|Ipsus|battle of Ipsus|pitched battle (generic term)
+battle of issus|1
+(noun)|Issus|battle of Issus|pitched battle (generic term)
+battle of ivry|1
+(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle (generic term)
+battle of jena|1
+(noun)|Jena|Battle of Jena|pitched battle (generic term)
+battle of jutland|1
+(noun)|Jutland|battle of Jutland|naval battle (generic term)
+battle of kerbala|1
+(noun)|Battle of Kerbala|pitched battle (generic term)
+battle of lake trasimenus|1
+(noun)|Lake Trasimenus|Battle of Lake Trasimenus|pitched battle (generic term)
+battle of langside|1
+(noun)|Langside|battle of Langside|pitched battle (generic term)
+battle of lepanto|1
+(noun)|Lepanto|Battle of Lepanto|naval battle (generic term)
+battle of leuctra|1
+(noun)|Leuctra|battle of Leuctra|pitched battle (generic term)
+battle of little bighorn|1
+(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+battle of lule burgas|1
+(noun)|Lule Burgas|battle of Lule Burgas|pitched battle (generic term)
+battle of lutzen|1
+(noun)|Lutzen|battle of Lutzen|pitched battle (generic term)
+battle of magenta|1
+(noun)|Magenta|Battle of Magenta|pitched battle (generic term)
+battle of maldon|1
+(noun)|Maldon|Battle of Maldon|pitched battle (generic term)
+battle of marathon|1
+(noun)|Marathon|battle of Marathon|pitched battle (generic term)
+battle of marston moor|1
+(noun)|Marston Moor|battle of Marston Moor|pitched battle (generic term)
+battle of midway|1
+(noun)|Midway|Battle of Midway|naval battle (generic term)
+battle of minden|1
+(noun)|Minden|battle of Minden|pitched battle (generic term)
+battle of monmouth|1
+(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle (generic term)
+battle of monmouth court house|1
+(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle (generic term)
+battle of naseby|1
+(noun)|Naseby|Battle of Naseby|pitched battle (generic term)
+battle of navarino|1
+(noun)|Navarino|battle of Navarino|naval battle (generic term)
+battle of omdurman|1
+(noun)|Omdurman|battle of Omdurman|pitched battle (generic term)
+battle of panipat|1
+(noun)|Panipat|battle of Panipat|pitched battle (generic term)
+battle of pharsalus|1
+(noun)|Pharsalus|battle of Pharsalus|pitched battle (generic term)
+battle of philippi|1
+(noun)|Philippi|battle of Philippi|pitched battle (generic term)
+battle of pittsburgh landing|1
+(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle (generic term)
+battle of plassey|1
+(noun)|Plassey|battle of Plassey|pitched battle (generic term)
+battle of plataea|1
+(noun)|Plataea|battle of Plataea|pitched battle (generic term)
+battle of poitiers|1
+(noun)|Poitiers|battle of Poitiers|pitched battle (generic term)
+battle of puebla|1
+(noun)|Battle of Puebla|pitched battle (generic term)
+battle of pydna|1
+(noun)|Pydna|Battle of Pydna|pitched battle (generic term)
+battle of ravenna|1
+(noun)|Ravenna|Battle of Ravenna|pitched battle (generic term)
+battle of rocroi|1
+(noun)|Rocroi|Battle of Rocroi|pitched battle (generic term)
+battle of rossbach|1
+(noun)|Rossbach|battle of Rossbach|pitched battle (generic term)
+battle of saratoga|1
+(noun)|Saratoga|battle of Saratoga|pitched battle (generic term)
+battle of sempatch|1
+(noun)|Sempatch|battle of Sempatch|pitched battle (generic term)
+battle of shiloh|1
+(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle (generic term)
+battle of soissons-reims|1
+(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle (generic term)
+battle of solferino|1
+(noun)|Solferino|battle of Solferino|pitched battle (generic term)
+battle of spotsylvania courthouse|1
+(noun)|Spotsylvania|battle of Spotsylvania Courthouse|pitched battle (generic term)
+battle of st mihiel|1
+(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle (generic term)
+battle of tannenberg|1
+(noun)|Tannenberg|battle of Tannenberg|pitched battle (generic term)
+battle of tertry|1
+(noun)|Tertry|battle of Tertry|pitched battle (generic term)
+battle of teutoburger wald|1
+(noun)|Teutoburger Wald|battle of Teutoburger Wald|pitched battle (generic term)
+battle of tewkesbury|1
+(noun)|Tewkesbury|battle of Tewkesbury|pitched battle (generic term)
+battle of the aisne|1
+(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle (generic term)
+battle of the ardennes bulge|1
+(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle (generic term)
+battle of the bismarck sea|1
+(noun)|Bismarck Sea|battle of the Bismarck Sea|naval battle (generic term)
+battle of the bulge|1
+(noun)|Battle of the Ardennes Bulge|Battle of the Bulge|Ardennes counteroffensive|pitched battle (generic term)
+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 (generic term)
+battle of the coral sea|1
+(noun)|Coral Sea|battle of the Coral Sea|naval battle (generic term)
+battle of the little bighorn|1
+(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+battle of the marne|1
+(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle (generic term)
+battle of the philippine sea|1
+(noun)|Philippine Sea|battle of the Philippine Sea|naval battle (generic term)
+battle of the somme|1
+(noun)|Somme|Somme River|Battle of the Somme|pitched battle (generic term)
+battle of the spanish armada|1
+(noun)|Battle of the Spanish Armada|naval battle (generic term)
+battle of thermopylae|1
+(noun)|Thermopylae|battle of Thermopylae|pitched battle (generic term)
+battle of trafalgar|1
+(noun)|Trafalgar|battle of Trafalgar|naval battle (generic term)
+battle of trasimeno|1
+(noun)|Trasimeno|battle of Trasimeno|pitched battle (generic term)
+battle of valmy|1
+(noun)|Valmy|battle of Valmy|pitched battle (generic term)
+battle of verdun|1
+(noun)|Verdun|battle of Verdun|pitched battle (generic term)
+battle of wagram|1
+(noun)|Wagram|battle of Wagram|pitched battle (generic term)
+battle of wake|1
+(noun)|Battle of Wake|Battle of Wake Island|amphibious assault (generic term)
+battle of wake island|1
+(noun)|Battle of Wake|Battle of Wake Island|amphibious assault (generic term)
+battle of waterloo|1
+(noun)|Waterloo|Battle of Waterloo|pitched battle (generic term)
+battle of wits|1
+(noun)|contest (generic term)
+battle of ypres|3
+(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle (generic term)
+(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle (generic term)
+(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle (generic term)
+battle of zama|1
+(noun)|Zama|battle of Zama|pitched battle (generic term)
+battle plan|1
+(noun)|plan of action (generic term)
+battle royal|1
+(noun)|melee|scrimmage|disturbance (generic term)
+battle sight|1
+(noun)|battlesight|gunsight (generic term)|gun-sight (generic term)
+battledore|2
+(noun)|badminton racket|badminton racquet|racket (generic term)|racquet (generic term)
+(noun)|battledore and shuttlecock|badminton (generic term)
+battledore and shuttlecock|1
+(noun)|battledore|badminton (generic term)
+battlefield|1
+(noun)|battleground|field of battle|field of honor|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+battlefront|1
+(noun)|front|front line|line (generic term)
+battleful|1
+(adj)|bellicose|combative|aggressive (similar term)
+battleground|1
+(noun)|battlefield|field of battle|field of honor|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+battlement|1
+(noun)|crenelation|crenellation|rampart (generic term)|bulwark (generic term)|wall (generic term)
+battlemented|2
+(adj)|protected (similar term)|secure (similar term)
+(adj)|embattled|castled|castellated|crenelated|crenellated|crenelate|crenellate|indented|fancy (similar term)
+battler|1
+(noun)|combatant|belligerent|fighter|scrapper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+battleship|1
+(noun)|battlewagon|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+battlesight|1
+(noun)|battle sight|gunsight (generic term)|gun-sight (generic term)
+battlewagon|1
+(noun)|battleship|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+battue|2
+(noun)|hunt (generic term)|hunting (generic term)
+(noun)|bloodbath|bloodletting|bloodshed|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+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 (similar term)
+batwing|2
+(adj)|winged (similar term)
+(noun)|swing door (generic term)|swinging door (generic term)
+bauble|2
+(noun)|scepter (generic term)|sceptre (generic term)|verge (generic term)|wand (generic term)
+(noun)|bangle|gaud|gewgaw|novelty|fallal|trinket|adornment (generic term)
+baud|1
+(noun)|baud rate|information measure (generic term)
+baud rate|1
+(noun)|baud|information measure (generic term)
+baudelaire|1
+(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet (generic term)
+bauhaus|1
+(noun)|Bauhaus|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+bauhinia|1
+(noun)|Bauhinia|genus Bauhinia|rosid dicot genus (generic term)
+bauhinia monandra|1
+(noun)|butterfly flower|Bauhinia monandra|shrub (generic term)|bush (generic term)
+bauhinia variegata|1
+(noun)|mountain ebony|orchid tree|Bauhinia variegata|angiospermous tree (generic term)|flowering tree (generic term)
+baulk|4
+(noun)|balk|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|hindrance|hinderance|deterrent|impediment|balk|check|handicap|difficulty (generic term)
+(noun)|rafter|balk|beam (generic term)
+(verb)|resist|balk|jib|disobey (generic term)
+baulk-line|1
+(noun)|balkline|string line|line (generic term)
+baulker|1
+(noun)|balker|noncompliant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+baum|1
+(noun)|Baum|Frank Baum|Lyman Frank Brown|writer (generic term)|author (generic term)
+bauxite|1
+(noun)|mineral (generic term)
+bauxitic|1
+(adj)|mineral (related term)
+bavaria|1
+(noun)|Bavaria|state (generic term)|province (generic term)
+bavarian|2
+(adj)|Bavarian|state|province (related term)
+(noun)|Bavarian|German (generic term)
+bavarian blue|1
+(noun)|Bavarian blue|bleu (generic term)|blue cheese (generic term)
+bavarian cream|1
+(noun)|Bavarian cream|custard (generic term)
+bawbee|1
+(noun)|coin (generic term)
+bawd|1
+(noun)|prostitute|cocotte|whore|harlot|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+bawdiness|1
+(noun)|obscenity|lewdness|salaciousness|salacity|indecency (generic term)
+bawdry|1
+(noun)|bawdy|obscenity (generic term)|smut (generic term)|vulgarism (generic term)|filth (generic term)|dirty word (generic term)
+bawdy|2
+(adj)|off-color|ribald|dirty (similar term)
+(noun)|bawdry|obscenity (generic term)|smut (generic term)|vulgarism (generic term)|filth (generic term)|dirty word (generic term)
+bawdyhouse|1
+(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|cathouse|sporting house|building (generic term)|edifice (generic term)
+bawl|3
+(verb)|bellow|shout (generic term)
+(verb)|yawp|roar (generic term)|howl (generic term)
+(verb)|cry (generic term)|weep (generic term)
+bawl out|1
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|remonstrate|chew out|chew up|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+bawler|2
+(noun)|roarer|bellower|screamer|screecher|shouter|yeller|communicator (generic term)
+(noun)|weeper (generic term)|crier (generic term)
+bawling|1
+(noun)|wailing|crying (generic term)|weeping (generic term)|tears (generic term)
+bawling out|1
+(noun)|castigation|earful|chewing out|upbraiding|going-over|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+bay|9
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|embayment|body of water (generic term)|water (generic term)
+(noun)|cry (generic term)
+(noun)|true laurel|bay laurel|bay tree|Laurus nobilis|laurel (generic term)
+(noun)|compartment (generic term)
+(noun)|alcove|recess (generic term)|niche (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|quest|bark (generic term)
+bay-leaved caper|1
+(noun)|caper tree|Capparis flexuosa|caper (generic term)
+bay-rum tree|1
+(noun)|bayberry|Jamaica bayberry|wild cinnamon|Pimenta acris|tree (generic term)
+bay grass|1
+(noun)|love grass|grass (generic term)
+bay laurel|1
+(noun)|true laurel|bay|bay tree|Laurus nobilis|laurel (generic term)
+bay leaf|1
+(noun)|herb (generic term)
+bay lynx|1
+(noun)|bobcat|Lynx rufus|lynx (generic term)|catamount (generic term)
+bay myrtle|1
+(noun)|puckerbush|Myrica cerifera|wax myrtle (generic term)
+bay of bengal|1
+(noun)|Bay of Bengal|bay (generic term)|embayment (generic term)
+bay of biscay|1
+(noun)|Bay of Biscay|bay (generic term)|embayment (generic term)
+bay of campeche|1
+(noun)|Gulf of Campeche|Golfo de Campeche|Bay of Campeche|gulf (generic term)
+bay of fundy|1
+(noun)|Bay of Fundy|bay (generic term)|embayment (generic term)
+bay of naples|1
+(noun)|Bay of Naples|bay (generic term)|embayment (generic term)
+bay of ob|1
+(noun)|Gulf of Ob|Bay of Ob|gulf (generic term)
+bay rum|1
+(noun)|after-shave (generic term)|after-shave lotion (generic term)
+bay scallop|2
+(noun)|scallop (generic term)|scollop (generic term)|escallop (generic term)
+(noun)|Pecten irradians|scallop (generic term)|scollop (generic term)|escallop (generic term)
+bay state|1
+(noun)|Massachusetts|Bay State|Old Colony|MA|American state (generic term)
+bay stater|1
+(noun)|Bay Stater|American (generic term)
+bay tree|1
+(noun)|true laurel|bay|bay laurel|Laurus nobilis|laurel (generic term)
+bay willow|1
+(noun)|laurel willow|Salix pentandra|willow (generic term)|willow tree (generic term)
+bay window|2
+(noun)|pot|potbelly|corporation|tummy|belly (generic term)|paunch (generic term)
+(noun)|bow window|window (generic term)
+bay wreath|1
+(noun)|laurel|laurel wreath|wreath (generic term)|garland (generic term)|coronal (generic term)|chaplet (generic term)|lei (generic term)
+baya|1
+(noun)|Ploceus philippinus|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+bayard|1
+(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier (generic term)
+bayat|1
+(noun)|oath (generic term)
+bayberry|2
+(noun)|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree (generic term)
+(noun)|candleberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle (generic term)
+bayberry tallow|1
+(noun)|bayberry wax|wax (generic term)
+bayberry wax|1
+(noun)|bayberry tallow|wax (generic term)
+baycol|1
+(noun)|cerivastatin|Baycol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+bayer|1
+(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin|St. Joseph|salicylate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+bayes|1
+(noun)|Bayes|Thomas Bayes|mathematician (generic term)
+bayes' postulate|1
+(noun)|Bayes' postulate|postulate (generic term)|posit (generic term)
+bayes' theorem|1
+(noun)|Bayes' theorem|theorem (generic term)
+bayesian|1
+(adj)|Bayesian|theorem (related term)
+bayonet|2
+(noun)|knife (generic term)
+(verb)|knife (generic term)|stab (generic term)
+bayonne|1
+(noun)|Bayonne|city (generic term)|metropolis (generic term)|urban center (generic term)
+bayonne bridge|1
+(noun)|Bayonne Bridge|steel arch bridge (generic term)
+bayou|1
+(noun)|lake (generic term)
+bayrut|1
+(noun)|Bayrut|Beirut|capital of Lebanon|national capital (generic term)
+bayt lahm|1
+(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town (generic term)
+bazaar|3
+(noun)|bazar|shop (generic term)|store (generic term)
+(noun)|bazar|marketplace (generic term)|mart (generic term)
+(noun)|fair|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+bazar|2
+(noun)|bazaar|marketplace (generic term)|mart (generic term)
+(noun)|bazaar|shop (generic term)|store (generic term)
+bazooka|1
+(noun)|launcher (generic term)|rocket launcher (generic term)
+bb|1
+(noun)|BB|BB shot|shot (generic term)|pellet (generic term)
+bb gun|1
+(noun)|BB gun|air gun (generic term)|airgun (generic term)|air rifle (generic term)
+bb shot|1
+(noun)|BB|BB shot|shot (generic term)|pellet (generic term)
+bbl|1
+(noun)|barrel|United States liquid unit (generic term)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+bbs|1
+(noun)|bulletin board system|bulletin board|electronic bulletin board|digital computer (generic term)
+bc|1
+(adv)|BC|B.C.|before Christ
+bce|1
+(adv)|BCE|B.C.E.
+bd|1
+(noun)|Bachelor of Divinity|BD|bachelor's degree (generic term)|baccalaureate (generic term)
+bdellium|1
+(noun)|gum resin (generic term)
+be|10
+(noun)|beryllium|Be|glucinium|atomic number 4|metallic element (generic term)|metal (generic term)
+(verb)|exist
+(verb)|equal|differ (antonym)
+(verb)|constitute|represent|make up|comprise
+(verb)|follow
+(verb)|embody|personify|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+(verb)|take (generic term)|occupy (generic term)|use up (generic term)
+(verb)|live
+(verb)|stay (generic term)|remain (generic term)|rest (generic term)
+(verb)|cost|be (generic term)
+be-all and end-all|1
+(noun)|be all and end all|component (generic term)|constituent (generic term)|element (generic term)|factor (generic term)|ingredient (generic term)
+be active|1
+(verb)|move|rest (antonym)
+be adrift|1
+(verb)|float|drift|blow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+be after|1
+(verb)|plan|intend (generic term)|mean (generic term)|think (generic term)
+be all and end all|1
+(noun)|be-all and end-all|component (generic term)|constituent (generic term)|element (generic term)|factor (generic term)|ingredient (generic term)
+be amiss|1
+(verb)|misconstrue|misinterpret|misconceive|misunderstand|misapprehend|interpret (generic term)|construe (generic term)|see (generic term)
+be at pains|1
+(verb)|take pains|endeavor (generic term)|endeavour (generic term)|strive (generic term)
+be born|1
+(verb)|change state (generic term)|turn (generic term)|die (antonym)
+be due|1
+(verb)|flow from|result (generic term)|ensue (generic term)
+be full|1
+(verb)|starve (antonym)
+be given|1
+(verb)|tend|lean|incline|run|be (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+be on|1
+(verb)|get on|air (generic term)
+be on cloud nine|1
+(verb)|exult|walk on air|jump for joy|rejoice (generic term)|joy (generic term)
+be on the ball|1
+(verb)|know the score|be with it|know what's going on|know what's what|know (generic term)
+be quiet|1
+(verb)|close up|clam up|dummy up|shut up|belt up|button up|keep mum|open up (antonym)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+be well|1
+(verb)|be (generic term)|suffer (antonym)
+be with it|1
+(verb)|know the score|be on the ball|know what's going on|know what's what|know (generic term)
+beach|2
+(noun)|geological formation (generic term)|formation (generic term)
+(verb)|land (generic term)|set down (generic term)
+beach aster|1
+(noun)|seaside daisy|Erigeron glaucous|fleabane (generic term)
+beach ball|1
+(noun)|beachball|ball (generic term)
+beach buggy|1
+(noun)|dune buggy|recreational vehicle (generic term)|RV (generic term)|R.V. (generic term)
+beach chair|1
+(noun)|deck chair|folding chair (generic term)
+beach erosion|1
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+beach flea|1
+(noun)|sand hopper|sandhopper|sand flea|amphipod (generic term)
+beach goldenrod|1
+(noun)|seaside goldenrod|Solidago sempervirens|goldenrod (generic term)
+beach grass|1
+(noun)|grass (generic term)
+beach heather|1
+(noun)|poverty grass|Hudsonia tomentosa|subshrub (generic term)|suffrutex (generic term)
+beach house|1
+(noun)|house (generic term)
+beach morning glory|1
+(noun)|railroad vine|Ipomoea pes-caprae|morning glory (generic term)
+beach pancake|1
+(noun)|Abronia maritima|sand verbena (generic term)
+beach pea|1
+(noun)|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea (generic term)
+beach plum|2
+(noun)|beach plum bush|Prunus maritima|wild plum (generic term)|wild plum tree (generic term)
+(noun)|plum (generic term)
+beach plum bush|1
+(noun)|beach plum|Prunus maritima|wild plum (generic term)|wild plum tree (generic term)
+beach sand verbena|1
+(noun)|pink sand verbena|Abronia umbellata|sand verbena (generic term)
+beach strawberry|1
+(noun)|Chilean strawberry|Fragaria chiloensis|strawberry (generic term)
+beach towel|1
+(noun)|towel (generic term)
+beach waggon|1
+(noun)|beach wagon|station wagon|wagon|station waggon|waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+beach wagon|1
+(noun)|station wagon|wagon|beach waggon|station waggon|waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+beach wormwood|1
+(noun)|dusty miller|old woman|Artemisia stelleriana|wormwood (generic term)
+beachball|1
+(noun)|beach ball|ball (generic term)
+beachcomber|1
+(noun)|vagrant (generic term)|drifter (generic term)|floater (generic term)|vagabond (generic term)
+beached|1
+(adj)|high-and-dry|aground (similar term)
+beachfront|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+beachhead|2
+(noun)|bridgehead (generic term)|foothold (generic term)
+(noun)|foothold|accomplishment (generic term)|achievement (generic term)
+beachlike|1
+(adj)|beachy|sandy (similar term)|gravelly (similar term)|pebbly (similar term)|shingly (similar term)|cliffy (antonym)
+beachwear|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+beachy|1
+(adj)|beachlike|sandy (similar term)|gravelly (similar term)|pebbly (similar term)|shingly (similar term)|cliffy (antonym)
+beacon|5
+(noun)|beacon fire|visual signal (generic term)
+(noun)|radio beacon|radio station (generic term)
+(noun)|lighthouse|beacon light|pharos|tower (generic term)
+(verb)|shine (generic term)|beam (generic term)
+(verb)|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+beacon fire|1
+(noun)|beacon|visual signal (generic term)
+beacon hill|1
+(noun)|Beacon Hill|city district (generic term)
+beacon light|1
+(noun)|beacon|lighthouse|pharos|tower (generic term)
+bead|6
+(noun)|jewelry (generic term)|jewellery (generic term)
+(noun)|drop|pearl|sphere (generic term)
+(noun)|beading|beadwork|astragal|molding (generic term)|moulding (generic term)
+(verb)|form (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|string (generic term)|thread (generic term)|draw (generic term)
+bead and quirk|1
+(noun)|quirk bead|beading (generic term)|bead (generic term)|beadwork (generic term)|astragal (generic term)
+bead fern|1
+(noun)|sensitive fern|Onoclea sensibilis|fern (generic term)
+bead tree|1
+(noun)|jumby bean|jumby tree|Ormosia monosperma|necklace tree (generic term)
+beaded|2
+(adj)|covered (similar term)
+(adj)|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+beaded lizard|1
+(noun)|Mexican beaded lizard|Heloderma horridum|venomous lizard (generic term)
+beading|2
+(noun)|beadwork|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|bead|beadwork|astragal|molding (generic term)|moulding (generic term)
+beading plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+beadle|2
+(noun)|official (generic term)|functionary (generic term)
+(noun)|Beadle|George Beadle|George Wells Beadle|biologist (generic term)|life scientist (generic term)
+beadlike|1
+(adj)|beady|buttony|buttonlike|bright (similar term)
+beads|1
+(noun)|string of beads|string (generic term)
+beadsman|1
+(noun)|bedesman|prayer (generic term)|supplicant (generic term)
+beadwork|2
+(noun)|beading|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|beading|bead|astragal|molding (generic term)|moulding (generic term)
+beady|2
+(adj)|beadlike|buttony|buttonlike|bright (similar term)
+(adj)|beaded|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+beady-eyed|1
+(adj)|malicious (similar term)
+beagle|1
+(noun)|hound (generic term)|hound dog (generic term)
+beagling|1
+(noun)|hunt (generic term)|hunting (generic term)
+beak|4
+(noun)|mouth (generic term)
+(noun)|bill|neb|nib|pecker|mouth (generic term)
+(noun)|honker|hooter|nozzle|snoot|snout|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+(verb)|peck|pick|strike (generic term)
+beaked|1
+(adj)|beaklike (similar term)|billed (similar term)|duckbill (similar term)|duck-billed (similar term)|rostrate (similar term)|short-beaked (similar term)|short-billed (similar term)|stout-billed (similar term)|straight-billed (similar term)|thick-billed (similar term)|beakless (antonym)
+beaked hazelnut|1
+(noun)|Corylus cornuta|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+beaked parsley|1
+(noun)|chervil|Anthriscus cereifolium|herb (generic term)|herbaceous plant (generic term)
+beaked salmon|1
+(noun)|sandfish|Gonorhynchus gonorhynchus|soft-finned fish (generic term)|malacopterygian (generic term)
+beaked whale|1
+(noun)|toothed whale (generic term)
+beaker|2
+(noun)|jar (generic term)
+(noun)|cup (generic term)
+beakless|1
+(adj)|beaked (antonym)
+beaklike|1
+(adj)|beaked (similar term)
+beam|12
+(noun)|radio beam|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|structural member (generic term)
+(noun)|beam of light|light beam|ray|ray of light|shaft|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|ray|electron beam|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+(noun)|width (generic term)|breadth (generic term)
+(noun)|balance beam|gymnastic apparatus (generic term)|exerciser (generic term)
+(verb)|smile (generic term)
+(verb)|shine
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|air|send|broadcast|transmit|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|glow|radiate|shine|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|glow|radiate|shine|feel (generic term)|experience (generic term)
+beam-ends|1
+(noun)|side (generic term)|face (generic term)
+beam balance|1
+(noun)|balance (generic term)
+beam of light|1
+(noun)|beam|light beam|ray|ray of light|shaft|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+beam scale|1
+(noun)|steelyard|lever scale|balance (generic term)
+beaming|3
+(adj)|glad|cheerful (similar term)
+(adj)|proud (similar term)
+(adj)|beamy|effulgent|radiant|refulgent|bright (similar term)
+beamish|1
+(adj)|smiling|twinkly|cheerful (similar term)
+beamy|2
+(adj)|wide (similar term)|broad (similar term)
+(adj)|beaming|effulgent|radiant|refulgent|bright (similar term)
+bean|5
+(noun)|edible bean|legume (generic term)
+(noun)|seed (generic term)
+(noun)|bean plant|legume (generic term)|leguminous plant (generic term)
+(noun)|attic|bonce|noodle|noggin|dome|human head (generic term)
+(verb)|hit (generic term)
+bean-caper family|1
+(noun)|Zygophyllaceae|family Zygophyllaceae|rosid dicot family (generic term)
+bean-like|1
+(adj)|vegetable (similar term)
+bean-shaped|1
+(adj)|rounded (similar term)
+bean aphid|1
+(noun)|blackfly|Aphis fabae|aphid (generic term)
+bean beetle|1
+(noun)|Mexican bean beetle|Epilachna varivestis|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+bean blight|1
+(noun)|halo blight|halo spot|blight (generic term)
+bean caper|1
+(noun)|Syrian bean caper|Zygophyllum fabago|shrub (generic term)|bush (generic term)
+bean counter|1
+(noun)|accountant (generic term)|comptroller (generic term)|controller (generic term)|bureaucrat (generic term)|administrative official (generic term)
+bean curd|1
+(noun)|tofu|curd (generic term)
+bean dip|1
+(noun)|dip (generic term)
+bean plant|1
+(noun)|bean|legume (generic term)|leguminous plant (generic term)
+bean sprout|1
+(noun)|sprout (generic term)
+bean tostada|1
+(noun)|tostada (generic term)
+bean town|1
+(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital (generic term)
+bean tree|1
+(noun)|tree (generic term)
+bean trefoil|1
+(noun)|stinking bean trefoil|Anagyris foetida|shrub (generic term)|bush (generic term)
+bean weevil|1
+(noun)|Acanthoscelides obtectus|seed beetle (generic term)|seed weevil (generic term)
+beanbag|1
+(noun)|bag (generic term)
+beanball|1
+(noun)|beaner|pitch (generic term)|delivery (generic term)
+beaner|1
+(noun)|beanball|pitch (generic term)|delivery (generic term)
+beanfeast|1
+(noun)|dinner (generic term)|dinner party (generic term)
+beanie|1
+(noun)|beany|skullcap (generic term)
+beano|1
+(noun)|lotto|bingo|keno|board game (generic term)
+beanstalk|1
+(noun)|stalk (generic term)|stem (generic term)
+beantown|1
+(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital (generic term)
+beany|1
+(noun)|beanie|skullcap (generic term)
+bear|15
+(noun)|carnivore (generic term)
+(noun)|investor (generic term)|bull (antonym)
+(verb)|have (generic term)|feature (generic term)
+(verb)|give birth|deliver|birth|have|produce (generic term)|bring forth (generic term)
+(verb)|digest|endure|stick out|stomach|stand|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|turn out|make (generic term)|create (generic term)|bear out (related term)
+(verb)|take over|accept|assume|take (generic term)
+(verb)|hold|carry|contain|include (generic term)
+(verb)|yield|pay|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|wear|have (generic term)|feature (generic term)
+(verb)|behave|acquit|deport|conduct|comport|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+(verb)|hold|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|hold|carry
+(verb)|have a bun in the oven|carry|gestate|expect|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+bear's-paw fern|1
+(noun)|Aglaomorpha meyeniana|fern (generic term)
+bear's breech|1
+(noun)|bear's breeches|sea holly|Acanthus mollis|acanthus (generic term)
+bear's breeches|1
+(noun)|bear's breech|sea holly|Acanthus mollis|acanthus (generic term)
+bear's ear|1
+(noun)|auricula|Primula auricula|primrose (generic term)|primula (generic term)
+bear's foot|1
+(noun)|stinking hellebore|setterwort|Helleborus foetidus|hellebore (generic term)
+bear's grape|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+bear-sized|1
+(adj)|large (similar term)|big (similar term)
+bear away|1
+(verb)|take away|bear off|carry away|carry off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|bring (antonym)
+bear cat|1
+(noun)|lesser panda|red panda|panda|cat bear|Ailurus fulgens|procyonid (generic term)
+bear claw|3
+(noun)|bear paw|sweet roll (generic term)|coffee roll (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|claw (generic term)
+bear cub|1
+(noun)|cub (generic term)|young carnivore (generic term)|bear (generic term)
+bear down|6
+(verb)|drag down|bear down on|press down on|weigh down|press (generic term)
+(verb)|charge|rush (generic term)
+(verb)|overbear|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|charge (generic term)|saddle (generic term)|burden (generic term)
+bear down on|2
+(verb)|bear down upon|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+(verb)|drag down|bear down|press down on|weigh down|press (generic term)
+bear down upon|1
+(verb)|bear down on|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+bear grass|4
+(noun)|Yucca smalliana|yucca (generic term)
+(noun)|Yucca glauca|yucca (generic term)
+(noun)|Nolina microcarpa|agave (generic term)|century plant (generic term)|American aloe (generic term)
+(noun)|squaw grass|Xerophyllum tenax|liliaceous plant (generic term)
+bear hug|2
+(noun)|wrestling hold (generic term)
+(noun)|takeover attempt (generic term)
+bear in mind|1
+(verb)|mind|remember (generic term)|think of (generic term)|forget (antonym)
+bear market|1
+(noun)|market (generic term)|securities industry (generic term)
+bear oak|1
+(noun)|Quercus ilicifolia|scrub oak (generic term)
+bear off|1
+(verb)|take away|bear away|carry away|carry off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|bring (antonym)
+bear on|4
+(verb)|refer|pertain|relate|concern|come to|touch|touch on
+(verb)|affect|impact|bear upon|touch on|touch|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|push|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)
+(verb)|continue|uphold|carry on|preserve|keep (generic term)|maintain (generic term)|hold (generic term)|discontinue (antonym)
+bear out|1
+(verb)|corroborate|underpin|support|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+bear paw|1
+(noun)|bear claw|sweet roll (generic term)|coffee roll (generic term)
+bear up|1
+(verb)|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+bear upon|1
+(verb)|affect|impact|bear on|touch on|touch|change (generic term)|alter (generic term)|modify (generic term)
+bear witness|2
+(verb)|testify|prove|evidence|show|inform (generic term)
+(verb)|testify|attest|take the stand|declare (generic term)
+bearable|1
+(adj)|endurable|sufferable|supportable|tolerable (similar term)
+bearberry|3
+(noun)|cascara buckthorn|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn (generic term)
+(noun)|possum haw|winterberry|Ilex decidua|holly (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+bearberry willow|1
+(noun)|Salix uva-ursi|willow (generic term)|willow tree (generic term)
+bearcat|1
+(noun)|binturong|Arctictis bintourong|civet (generic term)|civet cat (generic term)
+beard|6
+(noun)|face fungus|whiskers|hair (generic term)
+(noun)|hair (generic term)|fuzz (generic term)|tomentum (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|hair (generic term)
+(noun)|byssus|fiber (generic term)|fibre (generic term)
+(verb)|rim (generic term)
+beard lichen|1
+(noun)|beard moss|Usnea barbata|lichen (generic term)
+beard moss|1
+(noun)|beard lichen|Usnea barbata|lichen (generic term)
+beard worm|1
+(noun)|pogonophoran|worm (generic term)
+bearded|2
+(adj)|barbate|bewhiskered|whiskered|whiskery|unshaven (similar term)|unshaved (similar term)
+(adj)|awned (similar term)|awny (similar term)
+bearded darnel|1
+(noun)|darnel|tare|cheat|Lolium temulentum|rye grass (generic term)|ryegrass (generic term)
+bearded iris|1
+(noun)|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+bearded seal|1
+(noun)|squareflipper square flipper|Erignathus barbatus|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+bearded vulture|1
+(noun)|lammergeier|lammergeyer|Gypaetus barbatus|Old World vulture (generic term)
+bearded wheatgrass|1
+(noun)|Agropyron subsecundum|wheatgrass (generic term)|wheat-grass (generic term)
+beardless|2
+(adj)|whiskerless|shaven (similar term)|shaved (similar term)
+(adj)|smooth-faced|hairless (similar term)
+beardless iris|1
+(noun)|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+beardown|1
+(adj)|strong (similar term)
+bearer|4
+(noun)|carrier|toter|traveler (generic term)|traveller (generic term)
+(noun)|messenger (generic term)|courier (generic term)
+(noun)|pallbearer|mourner (generic term)|griever (generic term)|sorrower (generic term)|lamenter (generic term)
+(noun)|holder|capitalist (generic term)
+bearer bond|1
+(noun)|coupon bond|bond (generic term)|bond certificate (generic term)
+bearer of the sword|1
+(noun)|Abu Sayyaf|Bearer of the Sword|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+bearing|8
+(adj)|load-bearing (similar term)|supporting (similar term)|nonbearing (antonym)
+(adj)|productive (similar term)
+(noun)|relatedness (generic term)
+(noun)|heading|aim|direction (generic term)|way (generic term)
+(noun)|comportment|presence|mien|manner (generic term)|personal manner (generic term)
+(noun)|carriage|posture|bodily property (generic term)
+(noun)|charge|heraldic bearing|armorial bearing|heraldry (generic term)
+(noun)|support (generic term)
+bearing brass|1
+(noun)|brass (generic term)
+bearing false witness|1
+(noun)|perjury|lying under oath|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+bearing metal|1
+(noun)|white metal|alloy (generic term)|metal (generic term)
+bearing rein|1
+(noun)|checkrein|rein (generic term)
+bearing wall|1
+(noun)|wall (generic term)|support (generic term)
+bearish|1
+(adj)|pessimistic (similar term)
+bearnaise|1
+(noun)|sauce (generic term)
+bearskin|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|busby|shako|hat (generic term)|chapeau (generic term)|lid (generic term)
+bearwood|1
+(noun)|cascara buckthorn|bearberry|chittamwood|chittimwood|Rhamnus purshianus|buckthorn (generic term)
+beast|2
+(noun)|animal|animate being|brute|creature|fauna|organism (generic term)|being (generic term)
+(noun)|wolf|savage|brute|wildcat|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+beast of burden|1
+(noun)|jument|work animal (generic term)
+beastliness|2
+(noun)|meanness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+(noun)|nastiness (generic term)
+beastly|2
+(adj)|hellish|god-awful|unpleasant (similar term)
+(adj)|bestial|brute|brutish|inhumane (similar term)
+beat|32
+(adj)|all in|bushed|dead|tired (similar term)
+(noun)|round|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|pulse|pulsation|heartbeat|periodic event (generic term)|recurrent event (generic term)
+(noun)|rhythm|musical rhythm|musical time (generic term)
+(noun)|oscillation (generic term)|vibration (generic term)
+(noun)|beatnik|nonconformist (generic term)|recusant (generic term)
+(noun)|sound (generic term)
+(noun)|meter|metre|measure|cadence|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+(noun)|pace (generic term)|rate (generic term)
+(noun)|stroke (generic term)
+(noun)|sailing (generic term)
+(verb)|beat out|crush|shell|trounce|vanquish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|beat up|work over
+(verb)|pound|thump|move (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|drum|thrum|sound (generic term)|go (generic term)
+(verb)|glare (generic term)
+(verb)|flap|move (generic term)|displace (generic term)
+(verb)|sail (generic term)
+(verb)|scramble|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+(verb)|strike (generic term)
+(verb)|be (generic term)
+(verb)|bunk|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|tick|ticktock|ticktack|sound (generic term)|go (generic term)
+(verb)|flap|move (generic term)
+(verb)|pulsate|quiver|move (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|play (generic term)
+(verb)|beat (generic term)
+(verb)|outwit|overreach|outsmart|outfox|circumvent|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|exhaust|wash up|tucker|tucker out|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+beat-up|1
+(adj)|battered|beaten-up|damaged (similar term)
+beat a retreat|1
+(verb)|depart (generic term)|take leave (generic term)|quit (generic term)
+beat about|1
+(verb)|cast about|cast around|research (generic term)|search (generic term)|explore (generic term)
+beat around the bush|1
+(verb)|equivocate|tergiversate|prevaricate|palter|misinform (generic term)|mislead (generic term)
+beat back|1
+(verb)|repel|drive|repulse|force back|push back|push (generic term)|force (generic term)|attract (antonym)
+beat down|3
+(verb)|bargain down|haggle (generic term)|higgle (generic term)|chaffer (generic term)|huckster (generic term)
+(verb)|shine (generic term)|beam (generic term)
+(verb)|shift (generic term)|dislodge (generic term)|reposition (generic term)
+beat generation|1
+(noun)|beats|beatniks|youth subculture (generic term)
+beat in|1
+(verb)|hammer in|drill in|ram down|drill (generic term)
+beat out|2
+(verb)|beat|crush|shell|trounce|vanquish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|tap out|thump out|beat (generic term)
+beat up|2
+(verb)|beat|work over
+(verb)|drum up|rally|collect (generic term)|pull in (generic term)
+beatable|1
+(adj)|vanquishable|vincible|conquerable (similar term)
+beaten|1
+(adj)|familiar (similar term)
+beaten-up|1
+(adj)|battered|beat-up|damaged (similar term)
+beater|2
+(noun)|worker (generic term)
+(noun)|implement (generic term)
+beatific|2
+(adj)|joyful (similar term)
+(adj)|angelic|angelical|saintlike|saintly|sainted|good (similar term)
+beatification|3
+(noun)|blessedness|beatitude|happiness (generic term)|felicity (generic term)
+(noun)|action (generic term)
+(noun)|sanctification (generic term)
+beatified|1
+(adj)|blessed|holy (similar term)
+beatify|3
+(verb)|exhilarate|inebriate|thrill|exalt|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+(verb)|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+(verb)|declare (generic term)|adjudge (generic term)|hold (generic term)
+beating|3
+(adj)|pulsating|pulsing|rhythmical (similar term)|rhythmic (similar term)
+(noun)|whipping|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|thrashing|licking|drubbing|lacing|trouncing|whacking|corporal punishment (generic term)
+beating-reed instrument|1
+(noun)|reed instrument|reed|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+beatitude|2
+(noun)|blessedness|beatification|happiness (generic term)|felicity (generic term)
+(noun)|Beatitude|saying (generic term)|expression (generic term)|locution (generic term)
+beatles|1
+(noun)|Beatles|rock group (generic term)|rock band (generic term)
+beatnik|1
+(noun)|beat|nonconformist (generic term)|recusant (generic term)
+beatniks|1
+(noun)|beat generation|beats|youth subculture (generic term)
+beatrice|1
+(noun)|Beatrice|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+beatrice lillie|1
+(noun)|Lillie|Beatrice Lillie|Lady Peel|actress (generic term)
+beatrice webb|1
+(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer (generic term)|author (generic term)
+beats|1
+(noun)|beat generation|beatniks|youth subculture (generic term)
+beats per minute|1
+(noun)|bpm|metronome marking|M.M.|pace (generic term)|gait (generic term)
+beau|2
+(noun)|boyfriend|fellow|swain|young man|man (generic term)|adult male (generic term)|lover (generic term)
+(noun)|dandy|dude|fop|gallant|sheik|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+beau brummell|1
+(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+beau geste|1
+(noun)|gesture (generic term)
+beau ideal|1
+(noun)|paragon|idol|perfection|ideal (generic term)
+beau monde|1
+(noun)|society|high society|smart set|bon ton|elite (generic term)|elite group (generic term)
+beaufort scale|2
+(noun)|Beaufort scale|wind scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+(noun)|Beaufort scale|system of measurement (generic term)|metric (generic term)
+beaufort sea|1
+(noun)|Beaufort Sea|sea (generic term)
+beaugregory|1
+(noun)|Pomacentrus leucostictus|damselfish (generic term)|demoiselle (generic term)
+beaujolais|1
+(noun)|Beaujolais|Burgundy (generic term)|Burgundy wine (generic term)|red wine (generic term)
+beaumont|3
+(noun)|Beaumont|William Beaumont|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|Beaumont|Francis Beaumont|dramatist (generic term)|playwright (generic term)
+(noun)|Beaumont|city (generic term)|metropolis (generic term)|urban center (generic term)
+beaumontia|1
+(noun)|Beaumontia|genus Beaumontia|dicot genus (generic term)|magnoliopsid genus (generic term)
+beaumontia grandiflora|1
+(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine (generic term)
+beaut|1
+(noun)|beauty|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+beauteous|1
+(adj)|beautiful (similar term)
+beauteousness|1
+(noun)|comeliness|fairness|loveliness|beauty (generic term)
+beautician|1
+(noun)|cosmetician|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+beautification|1
+(noun)|change of state (generic term)
+beautiful|3
+(adj)|beauteous (similar term)|bonny (similar term)|bonnie (similar term)|comely (similar term)|fair (similar term)|sightly (similar term)|dishy (similar term)|exquisite (similar term)|fine-looking (similar term)|good-looking (similar term)|better-looking (similar term)|handsome (similar term)|well-favored (similar term)|well-favoured (similar term)|glorious (similar term)|resplendent (similar term)|splendid (similar term)|splendiferous (similar term)|gorgeous (similar term)|lovely (similar term)|picturesque (similar term)|pretty (similar term)|pretty-pretty (similar term)|pulchritudinous (similar term)|ravishing (similar term)|scenic (similar term)|stunning (similar term)|attractive (related term)|graceful (related term)|pleasing (related term)|ugly (antonym)
+(adj)|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+(adj)|pleasant (similar term)
+beautifully|1
+(adv)|attractively|unattractively (antonym)
+beautify|3
+(verb)|fancify|embellish|prettify|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|uglify (antonym)
+(verb)|deck|adorn|decorate|grace|embellish|be (generic term)
+(verb)|decorate|adorn|grace|ornament|embellish|change (generic term)|alter (generic term)|modify (generic term)
+beauty|3
+(noun)|appearance (generic term)|visual aspect (generic term)|ugliness (antonym)
+(noun)|smasher|stunner|knockout|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+(noun)|beaut|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+beauty bush|1
+(noun)|Kolkwitzia amabilis|shrub (generic term)|bush (generic term)
+beauty consultant|1
+(noun)|adviser (generic term)|advisor (generic term)|consultant (generic term)
+beauty parlor|1
+(noun)|salon|beauty salon|beauty parlour|beauty shop|shop (generic term)|store (generic term)
+beauty parlour|1
+(noun)|salon|beauty salon|beauty parlor|beauty shop|shop (generic term)|store (generic term)
+beauty quark|1
+(noun)|bottom quark|quark (generic term)
+beauty salon|1
+(noun)|salon|beauty parlor|beauty parlour|beauty shop|shop (generic term)|store (generic term)
+beauty shop|1
+(noun)|salon|beauty salon|beauty parlor|beauty parlour|shop (generic term)|store (generic term)
+beauty sleep|1
+(noun)|sleep (generic term)|nap (generic term)
+beauty spot|1
+(noun)|adornment (generic term)
+beauty treatment|1
+(noun)|beautification (generic term)
+beauvoir|1
+(noun)|Beauvoir|Simone de Beauvoir|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)|existentialist (generic term)|existentialist philosopher (generic term)|writer (generic term)|author (generic term)
+beaux arts|1
+(noun)|fine arts|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+beaver|8
+(noun)|beaver fur|fur (generic term)|pelt (generic term)
+(noun)|Oregonian|Beaver|American (generic term)
+(noun)|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|top hat|topper|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|castor|fur hat (generic term)
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(verb)|beaver away|work (generic term)
+beaver-like|1
+(adj)|animal (similar term)
+beaver away|1
+(verb)|beaver|work (generic term)
+beaver board|1
+(noun)|wallboard (generic term)|drywall (generic term)
+beaver fur|1
+(noun)|beaver|fur (generic term)|pelt (generic term)
+beaver rat|1
+(noun)|water rat (generic term)
+beaver state|1
+(noun)|Oregon|Beaver State|OR|American state (generic term)
+beaverbrook|1
+(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher (generic term)|newspaper publisher (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+bebop|2
+(noun)|bop|jazz (generic term)
+(verb)|bop|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+becalm|1
+(verb)|steady|calm|stabilize (generic term)|stabilise (generic term)
+becalmed|1
+(adj)|nonmoving (similar term)|unmoving (similar term)
+bechamel|1
+(noun)|white sauce|bechamel sauce|sauce (generic term)
+bechamel sauce|1
+(noun)|white sauce|bechamel|sauce (generic term)
+bechance|2
+(verb)|befall|betide|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|happen|befall|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+becharm|2
+(verb)|charm|control (generic term)|command (generic term)
+(verb)|capture|enamour|trance|catch|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+bechtel crab|1
+(noun)|Bechtel crab|flowering crab|Iowa crab (generic term)|Iowa crab apple (generic term)|prairie crab (generic term)|western crab apple (generic term)|Malus ioensis (generic term)
+bechuana|1
+(noun)|Tswana|Bechuana|Batswana|Bantu (generic term)
+beck|1
+(noun)|gesture (generic term)|motion (generic term)
+becker muscular dystrophy|1
+(noun)|Becker muscular dystrophy|muscular dystrophy (generic term)|dystrophy (generic term)
+becket|2
+(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop (generic term)|martyr (generic term)|saint (generic term)
+(noun)|line (generic term)
+becket bend|1
+(noun)|sheet bend|weaver's knot|weaver's hitch|hitch (generic term)
+beckett|1
+(noun)|Beckett|Samuel Beckett|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+beckley|1
+(noun)|Beckley|city (generic term)|metropolis (generic term)|urban center (generic term)
+beckman thermometer|1
+(noun)|Beckman thermometer|mercury thermometer (generic term)|mercury-in-glass thermometer (generic term)
+beckon|3
+(verb)|wave|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|attract (generic term)|appeal (generic term)
+(verb)|summon (generic term)
+becloud|1
+(verb)|obscure|befog|obnubilate|haze over|fog|cloud|mist|hide (generic term)|conceal (generic term)
+become|3
+(verb)|go|get|change state (generic term)|turn (generic term)|get on (related term)|get along (related term)|get over (related term)|get ahead (related term)
+(verb)|turn|transform (generic term)|transmute (generic term)|metamorphose (generic term)
+(verb)|suit|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+become flat|1
+(verb)|die|pall|change (generic term)
+becoming|2
+(adj)|comely|comme il faut|decent|decorous|seemly|proper (similar term)
+(adj)|flattering (similar term)
+becomingness|1
+(noun)|decorum (generic term)|decorousness (generic term)|unbecomingness (antonym)
+becquerel|1
+(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist (generic term)
+bed|13
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|plot (generic term)|plot of ground (generic term)|patch (generic term)
+(noun)|bottom|natural depression (generic term)|depression (generic term)
+(noun)|stratum (generic term)
+(noun)|seam|stratum (generic term)
+(noun)|layer|sheet (generic term)|flat solid (generic term)
+(noun)|surface (generic term)
+(noun)|foundation (generic term)|base (generic term)|fundament (generic term)|foot (generic term)|groundwork (generic term)|substructure (generic term)|understructure (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|plant (generic term)|set (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|go to bed|turn in|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+bed-and-breakfast|1
+(noun)|bed and breakfast|boarding house (generic term)|boardinghouse (generic term)
+bed-ground|1
+(noun)|bed ground|bedground|area (generic term)|country (generic term)
+bed-hop|1
+(verb)|bedhop|fornicate (generic term)
+bed-wetting|1
+(noun)|enuresis (generic term)|urinary incontinence (generic term)
+bed and breakfast|1
+(noun)|bed-and-breakfast|boarding house (generic term)|boardinghouse (generic term)
+bed bug|1
+(noun)|bedbug|chinch|Cimex lectularius|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+bed check|1
+(noun)|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+bed clothing|1
+(noun)|bedclothes|bedding|cloth covering (generic term)
+bed cover|1
+(noun)|bedspread|bedcover|bed covering|counterpane|spread|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+bed covering|1
+(noun)|bedspread|bedcover|bed cover|counterpane|spread|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+bed down|1
+(verb)|bunk down|go to bed (generic term)|turn in (generic term)|bed (generic term)|crawl in (generic term)|kip down (generic term)|hit the hay (generic term)|hit the sack (generic term)|sack out (generic term)|go to sleep (generic term)|retire (generic term)
+bed ground|1
+(noun)|bed-ground|bedground|area (generic term)|country (generic term)
+bed jacket|1
+(noun)|jacket (generic term)
+bed linen|1
+(noun)|linen (generic term)
+bed of flowers|1
+(noun)|flowerbed|flower bed|bed (generic term)
+bed of roses|1
+(noun)|rose bed|flowerbed (generic term)|flower bed (generic term)|bed of flowers (generic term)
+bed pillow|1
+(noun)|pillow (generic term)
+bed rest|1
+(noun)|bedrest|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+bed sheet|1
+(noun)|sheet|bed linen (generic term)
+bed wetter|1
+(noun)|bedwetter|wetter|pisser (generic term)|urinator (generic term)
+beda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+bedamn|1
+(verb)|curse|beshrew|damn|anathemize|anathemise|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+bedaub|1
+(verb)|besmear|cover (generic term)
+bedaubed|1
+(adj)|adorned (similar term)|decorated (similar term)
+bedaze|1
+(verb)|stun|daze|desensitize (generic term)|desensitise (generic term)
+bedazzle|1
+(verb)|dazzle|daze|blind (generic term)
+bedbug|1
+(noun)|bed bug|chinch|Cimex lectularius|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+bedchamber|1
+(noun)|bedroom|sleeping room|chamber|room (generic term)
+bedclothes|1
+(noun)|bed clothing|bedding|cloth covering (generic term)
+bedcover|1
+(noun)|bedspread|bed cover|bed covering|counterpane|spread|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+bedded|2
+(adj)|stratified|foliate (similar term)|foliated (similar term)|foliaceous (similar term)|laminar (similar term)|laminal (similar term)|layered (similar term)|superimposed (similar term)|sheetlike (similar term)|unstratified (antonym)
+(adj)|double-bedded (similar term)|single-bedded (similar term)|twin-bedded (similar term)|bedless (antonym)
+bedder|1
+(noun)|bedding plant|garden plant (generic term)
+bedding|2
+(noun)|bedclothes|bed clothing|cloth covering (generic term)
+(noun)|bedding material|litter|substance (generic term)|matter (generic term)
+bedding geranium|1
+(noun)|fish geranium|zonal pelargonium|Pelargonium hortorum|geranium (generic term)
+bedding material|1
+(noun)|bedding|litter|substance (generic term)|matter (generic term)
+bedding plant|1
+(noun)|bedder|garden plant (generic term)
+bede|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+bedeck|1
+(verb)|deck|bedight|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+bedecked|1
+(adj)|adorned|decked|decked out|clothed (similar term)|clad (similar term)
+bedesman|1
+(noun)|beadsman|prayer (generic term)|supplicant (generic term)
+bedevil|2
+(verb)|torment|rag|crucify|dun|frustrate|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|confuse|throw|fox|befuddle|fuddle|confound|discombobulate|be (generic term)
+bedevilment|1
+(noun)|badgering|worrying|torment|harassment (generic term)|molestation (generic term)
+bedew|1
+(verb)|wet (generic term)
+bedewed|1
+(adj)|dewy|wet (similar term)
+bedfast|1
+(adj)|bedridden|bedrid|sick-abed|ill (similar term)|sick (similar term)
+bedfellow|2
+(noun)|associate (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bedford cord|1
+(noun)|Bedford cord|cord (generic term)|corduroy (generic term)
+bedframe|1
+(noun)|bedstead|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+bedground|1
+(noun)|bed ground|bed-ground|area (generic term)|country (generic term)
+bedhop|1
+(verb)|bed-hop|fornicate (generic term)
+bedight|1
+(verb)|deck|bedeck|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+bedim|2
+(verb)|obscure|benight|darken (generic term)
+(verb)|obscure|overcloud|change (generic term)|alter (generic term)|modify (generic term)
+bedimmed|1
+(adj)|indistinct (similar term)
+bedizen|2
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|dizen|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+bedlam|2
+(noun)|chaos|pandemonium|topsy-turvydom|topsy-turvyness|confusion (generic term)
+(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|snake pit|mental hospital (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+bedlamite|1
+(noun)|lunatic (generic term)|madman (generic term)|maniac (generic term)
+bedless|1
+(adj)|bedded (antonym)
+bedlington terrier|1
+(noun)|Bedlington terrier|terrier (generic term)
+bedloe's island|1
+(noun)|Liberty Island|Bedloe's Island|island (generic term)
+bedouin|1
+(noun)|Bedouin|Beduin|nomad (generic term)|Arab (generic term)|Arabian (generic term)
+bedpan|1
+(noun)|vessel (generic term)
+bedpost|1
+(noun)|support (generic term)
+bedraggle|1
+(verb)|draggle|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+bedraggled|2
+(adj)|draggled|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|broken-down|derelict|dilapidated|ramshackle|tatterdemalion|tumble-down|damaged (similar term)
+bedrest|1
+(noun)|bed rest|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+bedrich smetana|1
+(noun)|Smetana|Bedrich Smetana|composer (generic term)
+bedrid|1
+(adj)|bedfast|bedridden|sick-abed|ill (similar term)|sick (similar term)
+bedridden|1
+(adj)|bedfast|bedrid|sick-abed|ill (similar term)|sick (similar term)
+bedrock|2
+(noun)|rock (generic term)|stone (generic term)
+(noun)|fundamentals|basics|fundamental principle|basic principle|principle (generic term)
+bedroll|1
+(noun)|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+bedroom|1
+(noun)|sleeping room|chamber|bedchamber|room (generic term)
+bedroom community|1
+(noun)|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+bedroom furniture|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+bedroom set|1
+(noun)|bedroom suite|suite (generic term)
+bedroom suite|1
+(noun)|bedroom set|suite (generic term)
+bedside|1
+(noun)|side (generic term)
+bedside manner|1
+(noun)|manner (generic term)|personal manner (generic term)
+bedsit|1
+(noun)|bedsitting room|bedsitter|apartment (generic term)|flat (generic term)
+bedsitter|1
+(noun)|bedsitting room|bedsit|apartment (generic term)|flat (generic term)
+bedsitting room|1
+(noun)|bedsitter|bedsit|apartment (generic term)|flat (generic term)
+bedsore|1
+(noun)|pressure sore|decubitus ulcer|ulcer (generic term)|ulceration (generic term)
+bedspread|1
+(noun)|bedcover|bed cover|bed covering|counterpane|spread|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+bedspring|1
+(noun)|spring (generic term)
+bedstead|1
+(noun)|bedframe|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+bedstraw|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bedtime|1
+(noun)|hour (generic term)|time of day (generic term)
+beduin|1
+(noun)|Bedouin|Beduin|nomad (generic term)|Arab (generic term)|Arabian (generic term)
+bedwetter|1
+(noun)|bed wetter|wetter|pisser (generic term)|urinator (generic term)
+bee|2
+(noun)|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+(noun)|social gathering (generic term)|social affair (generic term)
+bee-like|1
+(adj)|animal (similar term)
+bee balm|3
+(noun)|beebalm|Monarda fistulosa|monarda (generic term)|wild bergamot (generic term)
+(noun)|beebalm|bergamot mint|oswego tea|Monarda didyma|monarda (generic term)|wild bergamot (generic term)
+(noun)|lemon balm|garden balm|sweet balm|beebalm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+bee beetle|1
+(noun)|clerid beetle (generic term)|clerid (generic term)
+bee eater|1
+(noun)|coraciiform bird (generic term)
+bee fly|1
+(noun)|fly (generic term)
+bee house|1
+(noun)|apiary|shed (generic term)
+bee killer|1
+(noun)|robber fly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+bee moth|1
+(noun)|wax moth|Galleria mellonella|pyralid (generic term)|pyralid moth (generic term)
+bee orchid|1
+(noun)|Ophrys apifera|orchid (generic term)|orchidaceous plant (generic term)
+bee sting|1
+(noun)|sting (generic term)|bite (generic term)|insect bite (generic term)
+beebalm|3
+(noun)|bee balm|Monarda fistulosa|monarda (generic term)|wild bergamot (generic term)
+(noun)|bee balm|bergamot mint|oswego tea|Monarda didyma|monarda (generic term)|wild bergamot (generic term)
+(noun)|lemon balm|garden balm|sweet balm|bee balm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+beebread|1
+(noun)|ambrosia|composition (generic term)
+beech|2
+(noun)|beech tree|tree (generic term)
+(noun)|beechwood|wood (generic term)
+beech family|1
+(noun)|Fagaceae|family Fagaceae|hamamelid dicot family (generic term)
+beech fern|1
+(noun)|fern (generic term)
+beech marten|1
+(noun)|stone marten|Martes foina|marten (generic term)|marten cat (generic term)
+beech tree|1
+(noun)|beech|tree (generic term)
+beechen|1
+(adj)|woody (similar term)
+beecher|1
+(noun)|Beecher|Henry Ward Beecher|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|abolitionist (generic term)|emancipationist (generic term)
+beechnut|1
+(noun)|edible nut (generic term)
+beechwood|1
+(noun)|beech|wood (generic term)
+beef|4
+(noun)|beef cattle|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(noun)|boeuf|meat (generic term)
+(noun)|gripe|kick|bitch|squawk|objection (generic term)
+(verb)|gripe|grouse|crab|squawk|bellyache|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+beef bourguignonne|1
+(noun)|beef Bourguignonne|boeuf Bourguignonne|dish (generic term)
+beef broth|1
+(noun)|beef stock|broth (generic term)|stock (generic term)
+beef burrito|1
+(noun)|burrito (generic term)
+beef cattle|1
+(noun)|beef|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+beef fondue|1
+(noun)|boeuf fondu bourguignon|fondue (generic term)|fondu (generic term)
+beef goulash|1
+(noun)|goulash (generic term)|Hungarian goulash (generic term)|gulyas (generic term)
+beef jerky|1
+(noun)|jerky (generic term)|jerked meat (generic term)|jerk (generic term)
+beef loin|1
+(noun)|cut of beef (generic term)
+beef man|1
+(noun)|cattleman|cow man|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+beef neck|1
+(noun)|cut of beef (generic term)
+beef patty|1
+(noun)|chopped steak|chop steak|chopsteak|hamburger steak|beefsteak (generic term)
+beef plant|1
+(noun)|beefsteak plant|Iresine herbstii|Iresine reticulata|bloodleaf (generic term)
+beef roast|1
+(noun)|roast beef|roast (generic term)|joint (generic term)
+beef stew|1
+(noun)|stew (generic term)
+beef stock|1
+(noun)|beef broth|broth (generic term)|stock (generic term)
+beef stroganoff|1
+(noun)|beef Stroganoff|dish (generic term)
+beef tallow|1
+(noun)|tallow (generic term)
+beef tea|1
+(noun)|Bovril|infusion (generic term)|extract (generic term)
+beef tenderloin|1
+(noun)|tenderloin (generic term)|undercut (generic term)
+beef tongue|1
+(noun)|tongue (generic term)
+beef up|1
+(verb)|strengthen|fortify|change (generic term)|alter (generic term)|modify (generic term)|weaken (antonym)
+beef wellington|1
+(noun)|beef Wellington|filet de boeuf en croute|dish (generic term)
+beefalo|1
+(noun)|cattalo|beef (generic term)|beef cattle (generic term)
+beefburger|1
+(noun)|hamburger|burger|sandwich (generic term)
+beefcake|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+beefeater|1
+(noun)|yeoman|yeoman of the guard|bodyguard (generic term)|escort (generic term)
+beefed-up|1
+(adj)|strong (similar term)
+beefsteak|1
+(noun)|steak (generic term)
+beefsteak begonia|1
+(noun)|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia (generic term)
+beefsteak fungus|1
+(noun)|Fistulina hepatica|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+beefsteak geranium|1
+(noun)|rex begonia|king begonia|painted-leaf begonia|Begonia rex|begonia (generic term)
+beefsteak morel|1
+(noun)|Gyromitra esculenta|brain mushroom|gyromitra (generic term)
+beefsteak plant|2
+(noun)|Perilla frutescens crispa|herb (generic term)|herbaceous plant (generic term)
+(noun)|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf (generic term)
+beefsteak tomato|1
+(noun)|tomato (generic term)
+beefwood|5
+(noun)|balata|balata tree|bully tree|Manilkara bidentata|tree (generic term)
+(noun)|wood (generic term)
+(noun)|casuarina (generic term)
+(noun)|scrub beefwood|Stenocarpus salignus|tree (generic term)
+(noun)|Grevillea striata|silk oak (generic term)
+beefy|1
+(adj)|burly|husky|strapping|buirdly|robust (similar term)
+beehive|4
+(noun)|workplace (generic term)|work (generic term)
+(noun)|hive|nest (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|hive|receptacle (generic term)
+beehive state|1
+(noun)|Utah|Beehive State|Mormon State|UT|American state (generic term)
+beekeeper|1
+(noun)|apiarist|apiculturist|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+beekeeping|1
+(noun)|apiculture|cultivation (generic term)
+beeline|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+beelzebub|1
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+beep|3
+(noun)|bleep|sound (generic term)
+(verb)|honk|blare|claxon|toot|sound (generic term)|go (generic term)
+(verb)|call (generic term)|send for (generic term)
+beeper|1
+(noun)|pager|electronic device (generic term)
+beer|1
+(noun)|brew (generic term)|brewage (generic term)
+beer barrel|1
+(noun)|beer keg|barrel (generic term)|cask (generic term)
+beer bottle|1
+(noun)|bottle (generic term)
+beer can|1
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+beer drinker|1
+(noun)|ale drinker|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+beer garden|1
+(noun)|tavern (generic term)|tap house (generic term)
+beer glass|1
+(noun)|glass (generic term)|drinking glass (generic term)
+beer hall|1
+(noun)|hall (generic term)
+beer keg|1
+(noun)|beer barrel|barrel (generic term)|cask (generic term)
+beer maker|1
+(noun)|brewer|maker (generic term)|shaper (generic term)
+beer mat|1
+(noun)|drip mat (generic term)
+beer mug|1
+(noun)|stein|mug (generic term)
+beerbohm|1
+(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer (generic term)|author (generic term)|caricaturist (generic term)
+beery|1
+(adj)|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+beeswax|2
+(noun)|wax (generic term)|animal product (generic term)
+(verb)|wax (generic term)
+beet|2
+(noun)|common beet|Beta vulgaris|vegetable (generic term)
+(noun)|beetroot|root vegetable (generic term)
+beet armyworm|1
+(noun)|Spodoptera exigua|caterpillar (generic term)
+beet blight|1
+(noun)|blight (generic term)
+beet green|1
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+beet sugar|2
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+(noun)|sugar (generic term)|refined sugar (generic term)
+beethoven|2
+(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer (generic term)
+(noun)|Beethoven|music (generic term)
+beethovenian|1
+(adj)|Beethovenian|composer (related term)
+beetle|6
+(adj)|beetling|protrusive (similar term)
+(noun)|insect (generic term)
+(noun)|mallet|hammer (generic term)
+(verb)|overhang|hang (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|beat (generic term)
+beetle-browed|1
+(adj)|scowling|unfriendly (similar term)
+beetle off|1
+(verb)|run off|run out|bolt|bolt out|leave (generic term)|go forth (generic term)|go away (generic term)
+beetleweed|1
+(noun)|galax|galaxy|wandflower|coltsfoot|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+beetling|1
+(adj)|beetle|protrusive (similar term)
+beetroot|2
+(noun)|Beta vulgaris rubra|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|beet|root vegetable (generic term)
+befall|2
+(verb)|bechance|betide|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|happen|bechance|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+befit|1
+(verb)|suit|beseem|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+befitting|1
+(adj)|appropriate (similar term)
+befittingly|1
+(adv)|appropriately|suitably|fittingly|fitly|unsuitably (antonym)|inappropriately (antonym)
+befog|1
+(verb)|obscure|becloud|obnubilate|haze over|fog|cloud|mist|hide (generic term)|conceal (generic term)
+befogged|1
+(adj)|befuddled|confused (similar term)
+befool|2
+(verb)|fool|gull|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|gull|dupe|slang|cod|fool|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+befooling|1
+(noun)|stultification|derision (generic term)
+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 (similar term)
+(adv)|ahead|in advance
+befoul|1
+(verb)|foul|defile|maculate|dishonor (generic term)|disgrace (generic term)|dishonour (generic term)|attaint (generic term)|shame (generic term)
+befouled|1
+(adj)|fouled|dirty (similar term)|soiled (similar term)|unclean (similar term)
+befoulment|1
+(noun)|defilement|pollution|dirtiness (generic term)|uncleanness (generic term)
+befriend|1
+(verb)|bind (generic term)|tie (generic term)|attach (generic term)|bond (generic term)
+befuddle|2
+(verb)|confuse|throw|fox|fuddle|bedevil|confound|discombobulate|be (generic term)
+(verb)|fuddle|intoxicate (generic term)|soak (generic term)|inebriate (generic term)
+befuddled|3
+(adj)|befogged|confused (similar term)
+(adj)|baffled|bemused|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed (similar term)
+(adj)|addled|muddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused (similar term)
+befuddlement|1
+(noun)|bewilderment|obfuscation|puzzlement|mystification|bafflement|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+beg|3
+(verb)|implore|pray|plead (generic term)|beg off (related term)
+(verb)|solicit|tap|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+beg off|1
+(verb)|excuse|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+beget|1
+(verb)|get|engender|father|mother|sire|generate|bring forth|make (generic term)|create (generic term)
+begetter|1
+(noun)|father|male parent|parent (generic term)|female parent (antonym)|mother (antonym)
+beggar|3
+(noun)|mendicant|pauper (generic term)|poor man (generic term)
+(verb)|defy (generic term)|resist (generic term)|refuse (generic term)
+(verb)|pauperize|pauperise|impoverish (generic term)
+beggar's-ticks|1
+(noun)|bur marigold|burr marigold|beggar-ticks|sticktight|subshrub (generic term)|suffrutex (generic term)
+beggar's lice|2
+(noun)|beggar lice|stickweed (generic term)
+(noun)|tick trefoil|beggar lice|subshrub (generic term)|suffrutex (generic term)
+beggar-my-neighbor|1
+(noun)|beggar-my-neighbour|strip-Jack-naked|card game (generic term)|cards (generic term)
+beggar-my-neighbor policy|1
+(noun)|beggar-my-neighbour policy|beggar-my-neighbor strategy|beggar-my-neighbour strategy|policy (generic term)
+beggar-my-neighbor strategy|1
+(noun)|beggar-my-neighbor policy|beggar-my-neighbour policy|beggar-my-neighbour strategy|policy (generic term)
+beggar-my-neighbour|1
+(noun)|beggar-my-neighbor|strip-Jack-naked|card game (generic term)|cards (generic term)
+beggar-my-neighbour policy|1
+(noun)|beggar-my-neighbor policy|beggar-my-neighbor strategy|beggar-my-neighbour strategy|policy (generic term)
+beggar-my-neighbour strategy|1
+(noun)|beggar-my-neighbor policy|beggar-my-neighbour policy|beggar-my-neighbor strategy|policy (generic term)
+beggar-ticks|2
+(noun)|Spanish needles|bur (generic term)|burr (generic term)
+(noun)|bur marigold|burr marigold|beggar's-ticks|sticktight|subshrub (generic term)|suffrutex (generic term)
+beggar lice|2
+(noun)|beggar's lice|stickweed (generic term)
+(noun)|tick trefoil|beggar's lice|subshrub (generic term)|suffrutex (generic term)
+beggarly|2
+(adj)|mean|poor (similar term)
+(adj)|mean|stingy (similar term)|ungenerous (similar term)
+beggarman|1
+(noun)|beggar (generic term)|mendicant (generic term)
+beggarweed|1
+(noun)|Desmodium tortuosum|Desmodium purpureum|tick trefoil (generic term)|beggar lice (generic term)|beggar's lice (generic term)
+beggarwoman|1
+(noun)|beggar (generic term)|mendicant (generic term)
+beggary|2
+(noun)|begging|mendicancy|solicitation (generic term)
+(noun)|mendicancy|mendicity|indigence (generic term)|need (generic term)|penury (generic term)|pauperism (generic term)|pauperization (generic term)
+begging|1
+(noun)|beggary|mendicancy|solicitation (generic term)
+begild|1
+(verb)|gild|engild|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+begin|9
+(noun)|Begin|Menachem Begin|statesman (generic term)|solon (generic term)|national leader (generic term)
+(verb)|get down|get|start out|start|set about|set out|commence|end (antonym)
+(verb)|start|end (antonym)
+(verb)|lead off|start|commence|end (antonym)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|be (generic term)
+(verb)|start|be (generic term)
+(verb)|start|act (generic term)|move (generic term)
+(verb)|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+beginner|2
+(noun)|novice|tyro|tiro|initiate|unskilled person (generic term)
+(noun)|founder|founding father|father|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+beginning|6
+(adj)|first|opening (similar term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|ending (antonym)
+(noun)|commencement|first|outset|get-go|start|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|part (generic term)|section (generic term)|division (generic term)|middle (antonym)|end (antonym)
+(noun)|origin|root|rootage|source|point (generic term)
+(noun)|start|commencement|change of state (generic term)|finish (antonym)
+beginning rhyme|1
+(noun)|alliteration|initial rhyme|head rhyme|rhyme (generic term)|rime (generic term)
+begird|1
+(verb)|girth|girt|gird|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+begonia|1
+(noun)|flower (generic term)
+begonia cheimantha|1
+(noun)|Christmas begonia|blooming-fool begonia|Begonia cheimantha|begonia (generic term)
+begonia cocchinea|1
+(noun)|angel-wing begonia|Begonia cocchinea|begonia (generic term)
+begonia dregei|1
+(noun)|grape-leaf begonia|maple-leaf begonia|Begonia dregei|begonia (generic term)
+begonia erythrophylla|1
+(noun)|beefsteak begonia|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia (generic term)
+begonia family|1
+(noun)|Begoniaceae|family Begoniaceae|dilleniid dicot family (generic term)
+begonia feastii|1
+(noun)|beefsteak begonia|kidney begonia|Begonia erythrophylla|Begonia feastii|begonia (generic term)
+begonia heracleifolia|1
+(noun)|star begonia|star-leaf begonia|Begonia heracleifolia|begonia (generic term)
+begonia rex|1
+(noun)|rex begonia|king begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia (generic term)
+begonia semperflorens|1
+(noun)|wax begonia|Begonia semperflorens|begonia (generic term)
+begonia socotrana|1
+(noun)|Socotra begonia|Begonia socotrana|begonia (generic term)
+begonia tuberhybrida|1
+(noun)|hybrid tuberous begonia|Begonia tuberhybrida|tuberous begonia (generic term)
+begoniaceae|1
+(noun)|Begoniaceae|family Begoniaceae|begonia family|dilleniid dicot family (generic term)
+begotten|1
+(adj)|biological (similar term)
+begrime|1
+(verb)|dirty|soil|grime|colly|bemire|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+begrimed|1
+(adj)|dingy|grimy|grubby|grungy|raunchy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+begrudge|2
+(verb)|envy|desire (generic term)|want (generic term)
+(verb)|resent|wish (antonym)
+beguile|2
+(verb)|juggle|hoodwink|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+beguiled|1
+(adj)|captivated|charmed|delighted|enthralled|entranced|enchanted (similar term)
+beguilement|2
+(noun)|bewitchery|animal magnetism|attractiveness (generic term)
+(noun)|distraction|entertainment (generic term)|amusement (generic term)
+beguiler|2
+(noun)|deceiver|cheat|cheater|trickster|slicker|wrongdoer (generic term)|offender (generic term)
+(noun)|charmer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+beguiling|2
+(adj)|alluring|enticing|tempting|seductive (similar term)
+(adj)|dishonest (similar term)|dishonorable (similar term)
+beguine|3
+(noun)|Beguine|sister (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+begum|1
+(noun)|lady (generic term)|Muslim (generic term)|Moslem (generic term)
+behalf|2
+(noun)|stead (generic term)|position (generic term)|place (generic term)|lieu (generic term)
+(noun)|sake (generic term)|interest (generic term)
+behave|3
+(verb)|act|do|act up (related term)
+(verb)|acquit|bear|deport|conduct|comport|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+(verb)|comport|act (generic term)|move (generic term)|misbehave (antonym)
+behavior|4
+(noun)|behaviour|conduct|doings|activity (generic term)
+(noun)|behaviour|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|demeanor|demeanour|behaviour|conduct|deportment|trait (generic term)
+(noun)|behaviour|activity (generic term)
+behavior modification|1
+(noun)|behavior therapy|psychotherapy (generic term)
+behavior therapy|1
+(noun)|behavior modification|psychotherapy (generic term)
+behavioral|1
+(adj)|behavioural|activity (related term)
+behaviorism|1
+(noun)|behaviourism|behavioristic psychology|behaviouristic psychology|experimental psychology (generic term)|psychonomics (generic term)
+behaviorist|2
+(adj)|behavioristic|behaviouristic|behaviourist|experimental psychology|psychonomics (related term)
+(noun)|behaviourist|psychologist (generic term)
+behavioristic|1
+(adj)|behaviorist|behaviouristic|behaviourist|experimental psychology|psychonomics (related term)
+behavioristic psychology|1
+(noun)|behaviorism|behaviourism|behaviouristic psychology|experimental psychology (generic term)|psychonomics (generic term)
+behaviour|4
+(noun)|behavior|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|demeanor|demeanour|behavior|conduct|deportment|trait (generic term)
+(noun)|behavior|activity (generic term)
+(noun)|behavior|conduct|doings|activity (generic term)
+behavioural|1
+(adj)|behavioral|activity (related term)
+behaviourism|1
+(noun)|behaviorism|behavioristic psychology|behaviouristic psychology|experimental psychology (generic term)|psychonomics (generic term)
+behaviourist|2
+(adj)|behavioristic|behaviorist|behaviouristic|experimental psychology|psychonomics (related term)
+(noun)|behaviorist|psychologist (generic term)
+behaviouristic|1
+(adj)|behavioristic|behaviorist|behaviourist|experimental psychology|psychonomics (related term)
+behaviouristic psychology|1
+(noun)|behaviorism|behaviourism|behavioristic psychology|experimental psychology (generic term)|psychonomics (generic term)
+behead|1
+(verb)|decapitate|decollate|kill (generic term)
+beheaded|1
+(adj)|decapitated|headless (similar term)
+beheading|2
+(noun)|decapitation|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|decapitation|killing (generic term)|kill (generic term)|putting to death (generic term)
+behemoth|2
+(noun)|giant|goliath|monster|colossus|anomaly (generic term)|unusual person (generic term)
+(noun)|colossus|giant|heavyweight|titan|important person (generic term)|influential person (generic term)|personage (generic term)
+behest|1
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+behind|4
+(adj)|down (similar term)
+(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 (generic term)
+(adv)|slow
+(adv)|behindhand|in arrears
+behind-the-scenes|1
+(adj)|sub-rosa|under-the-table|covert (similar term)
+behindhand|2
+(adj)|unpunctual (similar term)
+(adv)|behind|in arrears
+behmen|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+behmenism|1
+(noun)|Boehmenism|Behmenism|theological doctrine (generic term)
+behold|1
+(verb)|lay eyes on|see (generic term)
+beholden|1
+(adj)|obligated (similar term)
+beholder|1
+(noun)|perceiver|percipient|observer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+beholding|1
+(noun)|visual perception|seeing|perception (generic term)
+behoove|1
+(verb)|behove|meet (generic term)|fit (generic term)|conform to (generic term)
+behove|1
+(verb)|behoove|meet (generic term)|fit (generic term)|conform to (generic term)
+behrens|1
+(noun)|Behrens|Peter Behrens|architect (generic term)|designer (generic term)
+behring|1
+(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator (generic term)
+beige|2
+(adj)|chromatic (similar term)
+(noun)|ecru|light brown (generic term)
+beigel|1
+(noun)|bagel|bun (generic term)|roll (generic term)
+beignet|1
+(noun)|French fritter|friedcake (generic term)
+beijing|1
+(noun)|Beijing|Peking|Peiping|capital of Red China|national capital (generic term)
+beijing dialect|1
+(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese (generic term)
+being|2
+(noun)|beingness|existence|state (generic term)|nonexistence (antonym)|nonbeing (antonym)
+(noun)|organism|living thing (generic term)|animate thing (generic term)
+beingness|1
+(noun)|being|existence|state (generic term)|nonexistence (antonym)|nonbeing (antonym)
+beira|1
+(noun)|Beira|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+beirut|1
+(noun)|Bayrut|Beirut|capital of Lebanon|national capital (generic term)
+bejewel|1
+(verb)|jewel|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+bejeweled|1
+(adj)|beaded|beady|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+bejewelled|1
+(adj)|beaded|beady|bejeweled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+bel|2
+(noun)|Bel|B|sound unit (generic term)
+(noun)|Bel|Semitic deity (generic term)
+bel-merodach|1
+(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity (generic term)
+bel and the dragon|1
+(noun)|Bel and the Dragon|book (generic term)
+bel canto|1
+(noun)|singing (generic term)|vocalizing (generic term)
+bel esprit|1
+(noun)|intellectual (generic term)|intellect (generic term)
+bela bartok|1
+(noun)|Bartok|Bela Bartok|composer (generic term)|pianist (generic term)|piano player (generic term)
+bela ferenc blasko|1
+(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+bela lugosi|1
+(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+belabor|3
+(verb)|belabour|work at (generic term)|work on (generic term)
+(verb)|belabour|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|belabour|beat (generic term)|beat up (generic term)|work over (generic term)
+belabour|3
+(verb)|belabor|work at (generic term)|work on (generic term)
+(verb)|belabor|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|belabor|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+belamcanda|1
+(noun)|Belamcanda|genus Belamcanda|liliid monocot genus (generic term)
+belamcanda chinensis|1
+(noun)|blackberry-lily|leopard lily|Belamcanda chinensis|iridaceous plant (generic term)
+belarus|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+belarusian|2
+(adj)|Belarusian|European country|European nation (related term)
+(noun)|Belarusian|Byelorussian|White Russian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+belarusian monetary unit|1
+(noun)|Belarusian monetary unit|monetary unit (generic term)
+belated|1
+(adj)|late|tardy|unpunctual (similar term)
+belatedly|1
+(adv)|late|tardily|early (antonym)
+belau|1
+(noun)|Palau|Palau Islands|Belau|Pelew|archipelago (generic term)
+belay|2
+(noun)|outcrop (generic term)|outcropping (generic term)|rock outcrop (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+belaying pin|1
+(noun)|bar (generic term)
+belch|3
+(noun)|belching|burp|burping|eructation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+(verb)|burp|bubble|eruct|emit (generic term)|breathe (generic term)|pass off (generic term)
+(verb)|erupt|extravasate|explode (generic term)|burst (generic term)
+belching|2
+(noun)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+(noun)|belch|burp|burping|eructation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+beldam|2
+(noun)|hag|beldame|witch|crone|old woman (generic term)
+(noun)|beldame|old woman (generic term)
+beldame|2
+(noun)|hag|beldam|witch|crone|old woman (generic term)
+(noun)|beldam|old woman (generic term)
+beleaguer|2
+(verb)|tease|badger|pester|bug|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|besiege|surround|hem in|circumvent|attack (generic term)|assail (generic term)
+beleaguering|1
+(noun)|siege|besieging|military blockade|blockade (generic term)|encirclement (generic term)
+belem|1
+(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+belemnite|1
+(noun)|fossil (generic term)
+belemnitic|1
+(adj)|fossil (related term)
+belemnitidae|1
+(noun)|Belemnitidae|family Belemnitidae|mollusk family (generic term)
+belemnoidea|1
+(noun)|Belemnoidea|order Belemnoidea|animal order (generic term)
+belfast|1
+(noun)|Belfast|capital of Northern Ireland|capital (generic term)
+belfry|2
+(noun)|campanile|bell tower (generic term)
+(noun)|room (generic term)
+belgian|2
+(adj)|Belgian|European country|European nation (related term)
+(noun)|Belgian|European (generic term)
+belgian beef stew|1
+(noun)|carbonnade flamande|Belgian beef stew|dish (generic term)
+belgian capital|1
+(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital (generic term)
+belgian congo|1
+(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country (generic term)|African nation (generic term)
+belgian endive|1
+(noun)|Belgian endive|French endive|witloof|chicory escarole (generic term)|endive (generic term)|escarole (generic term)
+belgian franc|1
+(noun)|Belgian franc|franc (generic term)
+belgian griffon|1
+(noun)|griffon|Brussels griffon|Belgian griffon|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+belgian hare|1
+(noun)|Belgian hare|leporide|rabbit (generic term)|coney (generic term)|cony (generic term)
+belgian sheepdog|1
+(noun)|Belgian sheepdog|Belgian shepherd|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+belgian shepherd|1
+(noun)|Belgian sheepdog|Belgian shepherd|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+belgian waffle|1
+(noun)|Belgian waffle|waffle (generic term)
+belgique|1
+(noun)|Belgium|Kingdom of Belgium|Belgique|European country (generic term)|European nation (generic term)
+belgium|1
+(noun)|Belgium|Kingdom of Belgium|Belgique|European country (generic term)|European nation (generic term)
+belgrade|1
+(noun)|Belgrade|Beograd|capital of Serbia and Montenegro|national capital (generic term)
+belie|2
+(verb)|contradict|negate|deviate (generic term)|vary (generic term)|diverge (generic term)|depart (generic term)
+(verb)|misrepresent|represent (generic term)
+belief|2
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)|unbelief (antonym)
+(noun)|impression|feeling|notion|opinion|idea (generic term)|thought (generic term)
+believability|1
+(noun)|credibility|credibleness|quality (generic term)|incredibility (antonym)
+believable|1
+(adj)|credible|likely (similar term)|presumptive (similar term)|plausible (related term)|thinkable (related term)|incredible (antonym)
+believably|2
+(adv)|unbelievably (antonym)|unbelievably (antonym)
+(adv)|credibly|plausibly|probably|incredibly (antonym)
+believe|5
+(verb)|accept (generic term)|disbelieve (antonym)
+(verb)|think|consider|conceive|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|trust|expect (generic term)|anticipate (generic term)
+(verb)|believe (generic term)
+(verb)|credit (generic term)
+believe in|1
+(verb)|believe (generic term)
+believer|2
+(noun)|truster|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|worshiper|worshipper|religious person (generic term)
+believing|1
+(noun)|basic cognitive process (generic term)
+believingly|1
+(adv)|credulously|unbelievingly (antonym)|incredulously (antonym)
+belike|1
+(adv)|probably|likely|in all likelihood|in all probability
+belisarius|1
+(noun)|Belisarius|general (generic term)|full general (generic term)
+belittle|3
+(verb)|minimize|denigrate|derogate|disparage (generic term)|belittle (generic term)|pick at (generic term)
+(verb)|disparage|pick at|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)|flatter (antonym)
+(verb)|diminish|decrease (generic term)|lessen (generic term)|minify (generic term)
+belittled|1
+(adj)|diminished|small|decreased (similar term)|reduced (similar term)
+belittling|3
+(adj)|deprecating|deprecative|deprecatory|depreciative|depreciatory|slighting|uncomplimentary (similar term)
+(noun)|denigration|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|disparagement (generic term)|dispraise (generic term)
+belize|1
+(noun)|Belize|British Honduras|Central American country (generic term)|Central American nation (generic term)
+belize dollar|1
+(noun)|Belize dollar|dollar (generic term)
+bell|11
+(noun)|acoustic device (generic term)|signaling device (generic term)
+(noun)|doorbell|buzzer|push button (generic term)|push (generic term)|button (generic term)
+(noun)|toll|sound (generic term)
+(noun)|ship's bell|time unit (generic term)|unit of time (generic term)
+(noun)|bell shape|campana|curve (generic term)|curved shape (generic term)
+(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician (generic term)
+(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter (generic term)
+(noun)|Bell|Alexander Bell|Alexander Graham Bell|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|chime|gong|percussion instrument (generic term)|percussive instrument (generic term)
+(noun)|opening (generic term)
+(verb)|attach (generic term)
+bell-bottom|1
+(adj)|bell-bottomed|bellbottom|bottomed (similar term)
+bell-bottomed|1
+(adj)|bell-bottom|bellbottom|bottomed (similar term)
+bell-bottoms|1
+(noun)|bellbottom trousers|bellbottom pants|trouser (generic term)|pant (generic term)
+bell-like call|1
+(noun)|birdcall (generic term)|call (generic term)|birdsong (generic term)|song (generic term)
+bell-shaped|1
+(adj)|convex (similar term)|bulging (similar term)
+bell-shaped curve|1
+(noun)|normal curve|Gaussian curve|Gaussian shape|curve (generic term)|curved shape (generic term)
+bell apple|1
+(noun)|sweet cup|water lemon|yellow granadilla|passion fruit (generic term)
+bell arch|1
+(noun)|round arch (generic term)
+bell book|1
+(noun)|logbook (generic term)
+bell buoy|1
+(noun)|gong buoy|acoustic buoy (generic term)
+bell captain|1
+(noun)|supervisor (generic term)
+bell cot|1
+(noun)|bell cote|shelter (generic term)
+bell cote|1
+(noun)|bell cot|shelter (generic term)
+bell deck|1
+(noun)|floor (generic term)|flooring (generic term)
+bell founder|1
+(noun)|founder (generic term)
+bell foundry|1
+(noun)|foundry (generic term)|metalworks (generic term)
+bell gable|1
+(noun)|gable (generic term)|gable end (generic term)|gable wall (generic term)
+bell glass|1
+(noun)|bell jar|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+bell heather|2
+(noun)|cross-leaved heath|Erica tetralix|erica (generic term)|true heath (generic term)
+(noun)|heather bell|fine-leaved heath|Erica cinerea|erica (generic term)|true heath (generic term)
+bell jar|1
+(noun)|bell glass|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+bell magpie|1
+(noun)|currawong|Australian magpie (generic term)
+bell metal|1
+(noun)|bronze (generic term)
+bell morel|1
+(noun)|Verpa|morel (generic term)
+bell pepper|2
+(noun)|sweet pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|sweet pepper (generic term)
+bell push|1
+(noun)|push button (generic term)|push (generic term)|button (generic term)
+bell ringer|3
+(noun)|toller|ringer|signaler (generic term)|signaller (generic term)
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|bull's eye|mark|home run|success (generic term)
+bell ringing|3
+(noun)|ring (generic term)|ringing (generic term)|tintinnabulation (generic term)
+(noun)|electioneering|canvassing|persuasion (generic term)|suasion (generic term)
+(noun)|carillon|carillon playing|music (generic term)
+bell seat|1
+(noun)|balloon seat|seat (generic term)
+bell shape|1
+(noun)|bell|campana|curve (generic term)|curved shape (generic term)
+bell tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+bell the cat|1
+(verb)|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+bell toad|1
+(noun)|tailed frog|ribbed toad|tailed toad|Ascaphus trui|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+bell tower|1
+(noun)|tower (generic term)
+bella sombra|1
+(noun)|ombu|Phytolacca dioica|pokeweed (generic term)
+belladonna|2
+(noun)|belladonna plant|deadly nightshade|Atropa belladonna|herb (generic term)|herbaceous plant (generic term)
+(noun)|atropine (generic term)
+belladonna lily|1
+(noun)|naked lady|Amaryllis belladonna|amaryllis (generic term)
+belladonna plant|1
+(noun)|belladonna|deadly nightshade|Atropa belladonna|herb (generic term)|herbaceous plant (generic term)
+bellarmine|2
+(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|longbeard|long-beard|greybeard|jug (generic term)
+bellarmino|1
+(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+bellbird|1
+(noun)|cotinga (generic term)|chatterer (generic term)
+bellbottom|1
+(adj)|bell-bottomed|bell-bottom|bottomed (similar term)
+bellbottom pants|1
+(noun)|bellbottom trousers|bell-bottoms|trouser (generic term)|pant (generic term)
+bellbottom trousers|1
+(noun)|bell-bottoms|bellbottom pants|trouser (generic term)|pant (generic term)
+bellboy|1
+(noun)|bellman|bellhop|attendant (generic term)|attender (generic term)|tender (generic term)
+belle|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+belle de nuit|1
+(noun)|moonflower|Ipomoea alba|morning glory (generic term)
+belle isle cress|1
+(noun)|Belle Isle cress|early winter cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+belle miriam silverman|1
+(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano (generic term)
+belleau wood|1
+(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle (generic term)
+bellerophon|1
+(noun)|Bellerophon|mythical being (generic term)
+belles-lettres|1
+(noun)|belles lettres|literary composition (generic term)|literary work (generic term)
+belles lettres|1
+(noun)|belles-lettres|literary composition (generic term)|literary work (generic term)
+belletristic|1
+(adj)|literate (similar term)
+bellflower|1
+(noun)|campanula|herb (generic term)|herbaceous plant (generic term)
+bellflower family|1
+(noun)|Campanulaceae|family Campanulaceae|plant family (generic term)
+bellhop|1
+(noun)|bellboy|bellman|attendant (generic term)|attender (generic term)|tender (generic term)
+bellicose|1
+(adj)|battleful|combative|aggressive (similar term)
+bellicoseness|1
+(noun)|bellicosity|aggressiveness (generic term)|belligerence (generic term)|pugnacity (generic term)
+bellicosity|1
+(noun)|bellicoseness|aggressiveness (generic term)|belligerence (generic term)|pugnacity (generic term)
+bellied|2
+(adj)|big-bellied (similar term)|great bellied (similar term)|bellyless (antonym)
+(adj)|bellying|bulbous|bulging|bulgy|protuberant|protrusive (similar term)
+belligerence|2
+(noun)|belligerency|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|aggressiveness|pugnacity|disagreeableness (generic term)
+belligerency|2
+(noun)|belligerence|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|hostilities|combat (generic term)|armed combat (generic term)
+belligerent|3
+(adj)|aggressive|hostile (similar term)
+(adj)|fighting|militant|war-ridden|warring|unpeaceful (similar term)
+(noun)|combatant|battler|fighter|scrapper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+belligerently|1
+(adv)|hostilely|with hostility
+belling|1
+(noun)|shivaree|chivaree|charivari|callithump|callathump|serenade (generic term)
+bellingham|1
+(noun)|Bellingham|town (generic term)|port of entry (generic term)|point of entry (generic term)
+bellini|1
+(noun)|Bellini|Vincenzo Bellini|composer (generic term)
+bellis|1
+(noun)|Bellis|genus Bellis|asterid dicot genus (generic term)
+bellis perennis|1
+(noun)|common daisy|English daisy|Bellis perennis|daisy (generic term)
+bellman|1
+(noun)|bellboy|bellhop|attendant (generic term)|attender (generic term)|tender (generic term)
+belloc|1
+(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer (generic term)|author (generic term)
+bellow|4
+(noun)|bellowing|holla|holler|hollering|hollo|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|Bellow|Saul Bellow|writer (generic term)|author (generic term)
+(verb)|bawl|shout (generic term)
+(verb)|roar|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+bellower|1
+(noun)|roarer|bawler|screamer|screecher|shouter|yeller|communicator (generic term)
+bellowing|1
+(noun)|bellow|holla|holler|hollering|hollo|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+bellows|1
+(noun)|blower (generic term)
+bellows fish|1
+(noun)|snipefish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+bellpull|1
+(noun)|pull (generic term)
+bells of ireland|1
+(noun)|molucca balm|bells of Ireland|Molucella laevis|herb (generic term)|herbaceous plant (generic term)
+bellwether|2
+(noun)|leader (generic term)
+(noun)|wether (generic term)
+bellwort|1
+(noun)|merry bells|wild oats|flower (generic term)
+belly|6
+(noun)|abdomen|venter|stomach|body part (generic term)
+(noun)|paunch|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|inside (generic term)|interior (generic term)
+(noun)|underpart (generic term)
+(verb)|belly out|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+belly-flop|1
+(verb)|dive (generic term)
+belly-land|1
+(verb)|land (generic term)|set down (generic term)
+belly-up|1
+(adj)|bankrupt|insolvent (similar term)
+belly dance|2
+(noun)|belly dancing|danse du ventre|stage dancing (generic term)|choreography (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+belly dancer|1
+(noun)|exotic belly dancer|exotic dancer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+belly dancing|1
+(noun)|belly dance|danse du ventre|stage dancing (generic term)|choreography (generic term)
+belly flop|1
+(noun)|belly flopper|belly whop|belly whopper|dive (generic term)|diving (generic term)
+belly flopper|1
+(noun)|belly flop|belly whop|belly whopper|dive (generic term)|diving (generic term)
+belly laugh|2
+(noun)|guffaw|laugh (generic term)|laughter (generic term)
+(noun)|sidesplitter|howler|thigh-slapper|scream|wow|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+belly out|1
+(verb)|belly|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+belly whop|1
+(noun)|belly flop|belly flopper|belly whopper|dive (generic term)|diving (generic term)
+belly whopper|1
+(noun)|belly flop|belly flopper|belly whop|dive (generic term)|diving (generic term)
+bellyache|2
+(noun)|stomachache|stomach ache|gastralgia|ache (generic term)|aching (generic term)
+(verb)|gripe|grouse|crab|beef|squawk|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+bellyacher|1
+(noun)|whiner|complainer|moaner|sniveller|crybaby|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+bellyband|2
+(noun)|band (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+bellybutton|1
+(noun)|navel|umbilicus|omphalos|omphalus|point (generic term)
+bellyful|1
+(noun)|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+bellying|1
+(adj)|bellied|bulbous|bulging|bulgy|protuberant|protrusive (similar term)
+bellylaugh|1
+(verb)|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+bellyless|1
+(adj)|flat-bellied|bellied (antonym)
+belmont|1
+(noun)|Belmont Park|Belmont|dirt track (generic term)
+belmont park|1
+(noun)|Belmont Park|Belmont|dirt track (generic term)
+belmont stakes|1
+(noun)|Belmont Stakes|thoroughbred race (generic term)
+belo horizonte|1
+(noun)|Belo Horizonte|city (generic term)|metropolis (generic term)|urban center (generic term)
+belong|3
+(verb)|dwell|consist|lie|lie in|exist (generic term)|be (generic term)
+(verb)|go|be (generic term)
+(verb)|be (generic term)
+belonging|1
+(noun)|happiness (generic term)
+belongings|1
+(noun)|property|holding|material possession|possession (generic term)
+belonidae|1
+(noun)|Belonidae|family Belonidae|fish family (generic term)
+belorussia|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+belorussian|1
+(noun)|Byelorussian|Belorussian|White Russian|European (generic term)
+belostomatidae|1
+(noun)|Belostomatidae|family Belostomatidae|arthropod family (generic term)
+beloved|2
+(adj)|darling|dear|loved (similar term)
+(noun)|dear|dearest|loved one|honey|love|lover (generic term)
+below|5
+(adv)|at a lower place|to a lower place|beneath|above (antonym)
+(adv)|above (antonym)
+(adv)|infra
+(adv)|downstairs|down the stairs|on a lower floor|upstairs (antonym)
+(adv)|under
+below the belt|2
+(adj)|unfair (similar term)|unjust (similar term)
+(adv)|unfairly|fairly (antonym)
+belowground|2
+(adj)|underground|subsurface (similar term)
+(adj)|buried (similar term)|inhumed (similar term)|interred (similar term)
+belsen|1
+(noun)|Belsen|concentration camp (generic term)|stockade (generic term)
+belshazzar|1
+(noun)|Belshazzar|general (generic term)|full general (generic term)
+belt|9
+(noun)|loop (generic term)
+(noun)|accessory (generic term)|accoutrement (generic term)|accouterment (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|knock|bash|bang|smash|blow (generic term)|bump (generic term)
+(noun)|swath|path (generic term)|track (generic term)|course (generic term)
+(noun)|knock|rap|whack|whang|blow (generic term)
+(verb)|belt out|sing (generic term)
+(verb)|hit (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unbelt (antonym)
+belt-fed|1
+(adj)|belted (similar term)
+belt-like|1
+(adj)|beltlike|belted (similar term)
+belt-shaped|1
+(adj)|formed (similar term)
+belt along|1
+(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+belt ammunition|1
+(noun)|belted ammunition|ammunition (generic term)|ammo (generic term)
+belt bag|1
+(noun)|waist pack|pouch (generic term)
+belt buckle|1
+(noun)|buckle (generic term)
+belt down|1
+(verb)|toss off|pop|bolt down|pour down|down|drink down|kill|drink (generic term)|imbibe (generic term)
+belt maker|1
+(noun)|maker (generic term)|shaper (generic term)
+belt out|1
+(verb)|belt|sing (generic term)
+belt up|1
+(verb)|close up|clam up|dummy up|shut up|button up|be quiet|keep mum|open up (antonym)
+belted|1
+(adj)|banded (similar term)|belt-fed (similar term)|beltlike (similar term)|belt-like (similar term)|unbelted (antonym)
+belted ammunition|1
+(noun)|belt ammunition|ammunition (generic term)|ammo (generic term)
+belted kingfisher|1
+(noun)|Ceryle alcyon|kingfisher (generic term)
+belted sandfish|1
+(noun)|Serranus subligarius|sea bass (generic term)
+belting|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+beltless|1
+(adj)|unbelted|belted (antonym)
+beltlike|1
+(adj)|belt-like|belted (similar term)
+beluga|2
+(noun)|hausen|white sturgeon|Acipenser huso|sturgeon (generic term)
+(noun)|white whale|Delphinapterus leucas|dolphin (generic term)
+beluga caviar|1
+(noun)|caviar (generic term)|caviare (generic term)
+belvedere|2
+(noun)|summer cypress|burning bush|fire bush|fire-bush|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+(noun)|gazebo (generic term)|summerhouse (generic term)
+bema|1
+(noun)|chancel|sanctuary|area (generic term)
+bemidji|1
+(noun)|Bemidji|town (generic term)
+bemire|1
+(verb)|dirty|soil|begrime|grime|colly|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+bemisia|1
+(noun)|Bemisia|genus Bemisia|arthropod genus (generic term)
+bemisia tabaci|1
+(noun)|superbug|Bemisia tabaci|poinsettia strain|sweet-potato whitefly (generic term)
+bemoan|1
+(verb)|deplore|lament|bewail|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+bemock|1
+(verb)|mock|treat (generic term)|handle (generic term)|do by (generic term)
+bemuse|1
+(verb)|bewilder|discombobulate|throw|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+bemused|2
+(adj)|deep in thought|lost|preoccupied|thoughtful (similar term)
+(adj)|baffled|befuddled|bewildered|confounded|confused|lost|mazed|mixed-up|at sea|perplexed (similar term)
+bemusement|1
+(noun)|bewilderment|obfuscation|puzzlement|befuddlement|mystification|bafflement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+ben|1
+(noun)|mountain (generic term)|mount (generic term)
+ben gurion|1
+(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman (generic term)|solon (generic term)|national leader (generic term)
+ben hecht|1
+(noun)|Hecht|Ben Hecht|writer (generic term)|author (generic term)
+ben hogan|1
+(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer (generic term)|golf player (generic term)|linksman (generic term)
+ben jonson|1
+(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist (generic term)|playwright (generic term)|poet (generic term)
+ben shahn|1
+(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter (generic term)
+ben sira|1
+(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book (generic term)
+benadryl|1
+(noun)|diphenhydramine|Benadryl|antihistamine (generic term)
+bench|8
+(noun)|subgroup (generic term)
+(noun)|terrace|tableland (generic term)|plateau (generic term)
+(noun)|judiciary|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+(noun)|workbench|work bench|worktable (generic term)|work table (generic term)
+(noun)|Bench|assembly (generic term)
+(noun)|seat (generic term)
+(verb)|remove (generic term)
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)
+bench clamp|1
+(noun)|clamp (generic term)|clinch (generic term)
+bench hook|1
+(noun)|catch (generic term)|stop (generic term)
+bench lathe|1
+(noun)|lathe (generic term)
+bench mark|1
+(noun)|benchmark|reference point (generic term)|point of reference (generic term)|reference (generic term)
+bench press|2
+(noun)|weightlift (generic term)|weightlifting (generic term)
+(noun)|punch press (generic term)
+bench vise|1
+(noun)|vise|holding device (generic term)
+bench warmer|1
+(noun)|substitute (generic term)|reserve (generic term)|second-stringer (generic term)
+bench warrant|1
+(noun)|arrest warrant|warrant (generic term)
+benchley|1
+(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+benchmark|2
+(noun)|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|bench mark|reference point (generic term)|point of reference (generic term)|reference (generic term)
+bend|12
+(noun)|crook|twist|turn|curve (generic term)|curved shape (generic term)
+(noun)|bending|movement (generic term)|motion (generic term)
+(noun)|curve|section (generic term)|segment (generic term)
+(noun)|fold|crease|plication|flexure|crimp|angular shape (generic term)|angularity (generic term)
+(noun)|Bend|town (generic term)
+(noun)|bend dexter|ordinary (generic term)
+(verb)|flex|change shape (generic term)|change form (generic term)|deform (generic term)|straighten (antonym)
+(verb)|turn (generic term)
+(verb)|flex|deform|twist|turn|change shape (generic term)|change form (generic term)|deform (generic term)|unbend (antonym)
+(verb)|crouch|stoop|bow|bend (generic term)|flex (generic term)|stoop to (related term)
+(verb)|deflect|turn away|turn (generic term)
+(verb)|flex|move (generic term)
+bend dexter|1
+(noun)|bend|ordinary (generic term)
+bend over backwards|1
+(verb)|fall over backwards|act (generic term)|behave (generic term)|do (generic term)
+bend sinister|1
+(noun)|bar sinister|mark (generic term)|stigma (generic term)|brand (generic term)|stain (generic term)|ordinary (generic term)
+bendability|1
+(noun)|pliability|flexibility (generic term)|flexibleness (generic term)
+bendable|1
+(adj)|pliable|pliant|flexible (similar term)|flexile (similar term)
+benday|1
+(verb)|engrave (generic term)
+benday process|1
+(noun)|Benday process|technique (generic term)
+bended|1
+(adj)|bent|unerect (similar term)
+bender|3
+(noun)|tool (generic term)
+(noun)|carouse|carousal|toot|booze-up|revel (generic term)|revelry (generic term)
+(noun)|curve|curve ball|breaking ball|pitch (generic term)|delivery (generic term)
+bending|4
+(adj)|crooked (similar term)
+(noun)|bend|movement (generic term)|motion (generic term)
+(noun)|deflection|deflexion|physical property (generic term)
+(noun)|change of shape (generic term)
+bendopa|1
+(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa (generic term)|dihydroxyphenylalanine (generic term)
+bends|1
+(noun)|decompression sickness|aeroembolism|air embolism|gas embolism|caisson disease|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+bendy tree|1
+(noun)|portia tree|seaside mahoe|Thespesia populnea|tulipwood tree (generic term)
+beneath|1
+(adv)|below|at a lower place|to a lower place|above (antonym)
+benedetto caetani|1
+(noun)|Boniface VIII|Benedetto Caetani|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+benedetto odescalchi|1
+(noun)|Innocent XI|Benedetto Odescalchi|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+benedick|1
+(noun)|benedict|husband (generic term)|hubby (generic term)|married man (generic term)
+benedict|3
+(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist (generic term)
+(noun)|Benedict|Saint Benedict|St. Benedict|monk (generic term)|monastic (generic term)|saint (generic term)
+(noun)|benedick|husband (generic term)|hubby (generic term)|married man (generic term)
+benedict arnold|1
+(noun)|Arnold|Benedict Arnold|general (generic term)|full general (generic term)|traitor (generic term)|treasonist (generic term)
+benedict de spinoza|1
+(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher (generic term)
+benedict xiv|1
+(noun)|Benedict XIV|Prospero Lambertini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+benedict xv|1
+(noun)|Benedict XV|Giacomo della Chiesa|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+benedictine|4
+(adj)|Benedictine|monk|monastic|saint (related term)
+(adj)|Benedictine|religious (related term)
+(noun)|Benedictine|religious (generic term)
+(noun)|liqueur (generic term)|cordial (generic term)
+benedictine order|1
+(noun)|Benedictine order|order of Saint Benedict|order (generic term)|monastic order (generic term)
+benediction|2
+(noun)|blessing|prayer (generic term)|supplication (generic term)
+(noun)|blessing|prayer (generic term)|petition (generic term)|orison (generic term)
+benedictive|1
+(adj)|benedictory|prayer|petition|orison (related term)
+benedictory|1
+(adj)|benedictive|prayer|petition|orison (related term)
+benefact|1
+(verb)|help (generic term)|assist (generic term)|aid (generic term)
+benefaction|2
+(noun)|contribution (generic term)|donation (generic term)
+(noun)|benevolence|kindness (generic term)|benignity (generic term)
+benefactive role|1
+(noun)|beneficiary|semantic role (generic term)|participant role (generic term)
+benefactor|1
+(noun)|helper|good person (generic term)
+benefactress|1
+(noun)|benefactor (generic term)|helper (generic term)
+benefic|1
+(adj)|beneficent (similar term)
+benefice|2
+(noun)|ecclesiastical benefice|spiritualty (generic term)|spirituality (generic term)|church property (generic term)
+(verb)|endow (generic term)|dower (generic term)
+beneficed|1
+(adj)|unbeneficed (antonym)
+beneficence|2
+(noun)|benevolence (generic term)|maleficence (antonym)
+(noun)|good (generic term)|goodness (generic term)|maleficence (antonym)
+beneficent|2
+(adj)|benefic (similar term)|kind (related term)|maleficent (antonym)
+(adj)|benevolent|eleemosynary|philanthropic|charitable (similar term)
+beneficial|2
+(adj)|good|advantageous (similar term)
+(adj)|good|salutary|healthful (similar term)
+beneficiary|3
+(adj)|spiritualty|spirituality|church property (related term)
+(noun)|donee|recipient (generic term)|receiver (generic term)
+(noun)|benefactive role|semantic role (generic term)|participant role (generic term)
+beneficiate|1
+(verb)|process (generic term)|treat (generic term)
+beneficiation|1
+(noun)|mineral extraction|mineral processing|mineral dressing|ore processing|ore dressing|extraction (generic term)
+benefit|5
+(noun)|payment (generic term)
+(noun)|welfare|good (generic term)|goodness (generic term)
+(noun)|performance (generic term)|public presentation (generic term)
+(verb)|profit|gain|get (generic term)|acquire (generic term)
+(verb)|do good|help (generic term)|aid (generic term)
+benefit album|1
+(noun)|tribute album|concept album (generic term)
+benefit concert|1
+(noun)|benefit (generic term)
+benefit of clergy|1
+(noun)|sanction (generic term)
+benelux|1
+(noun)|Benelux|customs union (generic term)
+benet|2
+(noun)|Benet|Stephen Vincent Benet|poet (generic term)
+(noun)|Benet|William Rose Benet|writer (generic term)|author (generic term)
+benevolence|3
+(noun)|love (generic term)|malevolence (antonym)
+(noun)|kindness (generic term)
+(noun)|benefaction|kindness (generic term)|benignity (generic term)
+benevolent|4
+(adj)|kindness|benignity (related term)
+(adj)|charitable|kindly|sympathetic|good-hearted|openhearted|large-hearted|kind (similar term)
+(adj)|freehearted|generous (similar term)
+(adj)|beneficent|eleemosynary|philanthropic|charitable (similar term)
+benevolently|1
+(adv)|malevolently (antonym)
+benficiate|1
+(verb)|deoxidize (generic term)|deoxidise (generic term)|reduce (generic term)
+benford's law|1
+(noun)|Benford's law|law (generic term)|law of nature (generic term)
+bengal|1
+(noun)|Bengal|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+bengal bean|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+bengal kino|1
+(noun)|gum butea|butea gum|butea kino|Bengal kino|gum (generic term)
+bengal light|1
+(noun)|Bengal light|flare (generic term)|flash (generic term)
+bengal rose|1
+(noun)|China rose|Bengal rose|Rosa chinensis|rose (generic term)|rosebush (generic term)
+bengal tiger|1
+(noun)|Bengal tiger|tiger (generic term)|Panthera tigris (generic term)
+bengali|4
+(adj)|Bengali|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Bengali|Asian (generic term)|Asiatic (generic term)
+(noun)|Bengali|ethnic group (generic term)|ethnos (generic term)
+(noun)|Bengali|Magadhan (generic term)
+benghal bean|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+benghazi|1
+(noun)|Benghazi|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+benight|3
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|obscure|bedim|darken (generic term)
+benighted|2
+(adj)|nighted|unpunctual (similar term)
+(adj)|dark|unenlightened (similar term)
+benign|3
+(adj)|malignant (antonym)
+(adj)|benignant|harmless (similar term)|nonmalignant (similar term)|kindly (similar term)|harmless (related term)|kind (related term)|malign (antonym)
+(adj)|kind (similar term)
+benign prostatic hyperplasia|1
+(noun)|BPH|hyperplasia (generic term)
+benign tumor|1
+(noun)|benign tumour|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+benign tumour|1
+(noun)|benign tumor|nonmalignant tumor|nonmalignant tumour|nonmalignant neoplasm|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+benignancy|1
+(noun)|benignity|graciousness|good (generic term)|goodness (generic term)|malignancy (antonym)|malignity (antonym)
+benignant|2
+(adj)|benign|harmless (similar term)|nonmalignant (similar term)|kindly (similar term)|harmless (related term)|kind (related term)|malign (antonym)
+(adj)|gracious|kind (similar term)
+benignantly|1
+(adv)|benignly
+benignity|2
+(noun)|benignancy|graciousness|good (generic term)|goodness (generic term)|malignancy (antonym)|malignity (antonym)
+(noun)|kindness|action (generic term)
+benignly|1
+(adv)|benignantly
+benin|1
+(noun)|Benin|Republic of Benin|Dahomey|African country (generic term)|African nation (generic term)
+benin franc|1
+(noun)|Benin franc|franc (generic term)
+beninese|2
+(adj)|Beninese|African country|African nation (related term)
+(noun)|Beninese|African (generic term)
+benison|1
+(noun)|benediction (generic term)|blessing (generic term)
+benito mussolini|1
+(noun)|Mussolini|Benito Mussolini|Il Duce|dictator (generic term)|potentate (generic term)
+benjamin|2
+(noun)|benzoin|gum benzoin|gum benjamin|asa dulcis|gum resin (generic term)
+(noun)|Benjamin|patriarch (generic term)
+benjamin britten|1
+(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+benjamin bush|1
+(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+benjamin david goodman|1
+(noun)|Goodman|Benny Goodman|Benjamin David Goodman|King of Swing|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+benjamin disraeli|1
+(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman (generic term)|solon (generic term)|national leader (generic term)
+benjamin franklin|1
+(noun)|Franklin|Benjamin Franklin|printer (generic term)|pressman (generic term)|writer (generic term)|author (generic term)|American Revolutionary leader (generic term)|scientist (generic term)|man of science (generic term)
+benjamin franklin bridge|1
+(noun)|Benjamin Franklin Bridge|suspension bridge (generic term)
+benjamin franklin norris jr.|1
+(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer (generic term)|author (generic term)
+benjamin harris|1
+(noun)|Harris|Benjamin Harris|publisher (generic term)|newspaper publisher (generic term)
+benjamin harrison|1
+(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+benjamin henry latrobe|1
+(noun)|Latrobe|Benjamin Henry Latrobe|architect (generic term)|designer (generic term)
+benjamin jonson|1
+(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist (generic term)|playwright (generic term)|poet (generic term)
+benjamin jowett|1
+(noun)|Jowett|Benjamin Jowett|classicist (generic term)|classical scholar (generic term)|interpreter (generic term)|translator (generic term)
+benjamin kubelsky|1
+(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian (generic term)|comic (generic term)
+benjamin peirce|1
+(noun)|Peirce|Benjamin Peirce|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+benjamin ricketson tucker|1
+(noun)|Tucker|Benjamin Ricketson Tucker|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+benjamin rush|1
+(noun)|Rush|Benjamin Rush|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|American Revolutionary leader (generic term)
+benjamin shahn|1
+(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter (generic term)
+benjamin spock|1
+(noun)|Spock|Benjamin Spock|baby doctor (generic term)|pediatrician (generic term)|pediatrist (generic term)|paediatrician (generic term)
+benjamin thompson|1
+(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist (generic term)
+benjamin west|1
+(noun)|West|Benjamin West|painter (generic term)
+benne|1
+(noun)|sesame|benni|benny|Sesamum indicum|herb (generic term)|herbaceous plant (generic term)
+bennet|2
+(noun)|white avens|Geum virginianum|avens (generic term)
+(noun)|white avens|Geum canadense|avens (generic term)
+bennett|1
+(noun)|Bennett|Floyd Bennett|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+bennettitaceae|1
+(noun)|Bennettitaceae|family Bennettitaceae|gymnosperm family (generic term)
+bennettitales|1
+(noun)|Bennettitales|order Bennettitales|plant order (generic term)
+bennettitis|1
+(noun)|Bennettitis|genus Bennettitis|gymnosperm genus (generic term)
+benni|1
+(noun)|sesame|benne|benny|Sesamum indicum|herb (generic term)|herbaceous plant (generic term)
+bennie|1
+(noun)|Benzedrine|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+bennington|1
+(noun)|Bennington|town (generic term)
+benniseed|1
+(noun)|sesame seed|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+benny|2
+(noun)|sesame|benne|benni|Sesamum indicum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian (generic term)|comic (generic term)
+benny goodman|1
+(noun)|Goodman|Benny Goodman|Benjamin David Goodman|King of Swing|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+benny hill|1
+(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian (generic term)|comic (generic term)
+benoit mandelbrot|1
+(noun)|Mandelbrot|Benoit Mandelbrot|mathematician (generic term)
+bent|9
+(adj)|crooked (similar term)
+(adj)|bent on|dead set|intent on|out to|resolute (similar term)
+(adj)|bended|unerect (similar term)
+(adj)|bowed|inclined|unerect (similar term)
+(adj)|crumpled|dented|damaged (similar term)
+(noun)|set|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|bent grass|bent-grass|grass (generic term)
+(noun)|grassland (generic term)
+(noun)|knack|hang|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+bent-grass|1
+(noun)|bent|bent grass|grass (generic term)
+bent grass|1
+(noun)|bent|bent-grass|grass (generic term)
+bent hang|1
+(noun)|hang (generic term)
+bent on|1
+(adj)|bent|dead set|intent on|out to|resolute (similar term)
+benthal|1
+(adj)|benthic|benthonic|biogeographical region (related term)
+bentham|1
+(noun)|Bentham|Jeremy Bentham|philosopher (generic term)|jurist (generic term)|legal expert (generic term)
+benthic|1
+(adj)|benthal|benthonic|biogeographical region (related term)
+benthic division|1
+(noun)|benthos|benthonic zone|biogeographical region (generic term)
+benthonic|1
+(adj)|benthic|benthal|biogeographical region (related term)
+benthonic zone|1
+(noun)|benthos|benthic division|biogeographical region (generic term)
+benthos|2
+(noun)|benthic division|benthonic zone|biogeographical region (generic term)
+(noun)|organism (generic term)|being (generic term)
+benton|2
+(noun)|Benton|Thomas Hart Benton|painter (generic term)
+(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator (generic term)
+bentonite|1
+(noun)|clay (generic term)
+bentonitic|1
+(adj)|clay (related term)
+bentwood|1
+(noun)|wood (generic term)
+benumb|1
+(verb)|numb|blunt|dull|desensitize (generic term)|desensitise (generic term)
+benumbed|2
+(adj)|asleep|numb|insensible (similar term)
+(adj)|dulled|uninterested (similar term)
+benvenuto cellini|1
+(noun)|Cellini|Benvenuto Cellini|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+benweed|1
+(noun)|ragwort|tansy ragwort|ragweed|Senecio jacobaea|weed (generic term)
+benzedrine|1
+(noun)|Benzedrine|bennie|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+benzene|1
+(noun)|benzine|benzol|aromatic hydrocarbon (generic term)
+benzene formula|1
+(noun)|benzene ring|benzene nucleus|Kekule formula|benzene (generic term)|benzine (generic term)|benzol (generic term)
+benzene nucleus|1
+(noun)|benzene formula|benzene ring|Kekule formula|benzene (generic term)|benzine (generic term)|benzol (generic term)
+benzene ring|1
+(noun)|benzene formula|benzene nucleus|Kekule formula|benzene (generic term)|benzine (generic term)|benzol (generic term)
+benzenoid|1
+(adj)|aromatic hydrocarbon (related term)
+benzine|1
+(noun)|benzene|benzol|aromatic hydrocarbon (generic term)
+benzoate|1
+(noun)|salt (generic term)
+benzoate of soda|1
+(noun)|sodium benzoate|benzoate (generic term)
+benzocaine|1
+(noun)|ethyl aminobenzoate|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+benzodiazepine|1
+(noun)|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)|muscle relaxant (generic term)
+benzofuran|1
+(noun)|coumarone|cumarone|compound (generic term)|chemical compound (generic term)
+benzoic|1
+(adj)|carboxylic acid (related term)|gum resin (related term)
+benzoic acid|1
+(noun)|carboxylic acid (generic term)
+benzoin|2
+(noun)|gum benzoin|benjamin|gum benjamin|asa dulcis|gum resin (generic term)
+(noun)|Benzoin|genus Benzoin|magnoliid dicot genus (generic term)
+benzoin odoriferum|1
+(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+benzol|1
+(noun)|benzene|benzine|aromatic hydrocarbon (generic term)
+benzoquinone|1
+(noun)|quinone|compound (generic term)|chemical compound (generic term)
+benzoyl group|1
+(noun)|benzoyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+benzoyl peroxide|1
+(noun)|peroxide (generic term)|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+benzoyl radical|1
+(noun)|benzoyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+benzyl|1
+(noun)|benzyl group|benzyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+benzyl group|1
+(noun)|benzyl|benzyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+benzyl radical|1
+(noun)|benzyl|benzyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+benzylic|1
+(adj)|group|radical|chemical group (related term)
+benzylpenicillin|1
+(noun)|penicillin G|penicillin (generic term)
+beograd|1
+(noun)|Belgrade|Beograd|capital of Serbia and Montenegro|national capital (generic term)
+beowulf|1
+(noun)|Beowulf|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+beplaster|1
+(verb)|plaster|cover (generic term)
+bequeath|1
+(verb)|will|leave|give (generic term)|gift (generic term)|present (generic term)|disinherit (antonym)
+bequest|1
+(noun)|legacy|gift (generic term)|inheritance (generic term)|heritage (generic term)
+berate|1
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+berating|1
+(noun)|blowing up|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+berber|3
+(noun)|Berber|Muslim (generic term)|Moslem (generic term)
+(noun)|Berber|Arab-Berber|ethnic minority (generic term)
+(noun)|Berber|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+berberidaceae|1
+(noun)|Berberidaceae|family Berberidaceae|barberry family|magnoliid dicot family (generic term)
+berberis|1
+(noun)|Berberis|genus Berberis|magnoliid dicot genus (generic term)
+berberis canadensis|1
+(noun)|American barberry|Berberis canadensis|barberry (generic term)
+berberis thunbergii|1
+(noun)|Japanese barberry|Berberis thunbergii|barberry (generic term)
+berberis vulgaris|1
+(noun)|common barberry|European barberry|Berberis vulgaris|barberry (generic term)
+berceuse|1
+(noun)|lullaby|cradlesong|song (generic term)|vocal (generic term)
+bercy|1
+(noun)|Bercy|Bercy butter|sauce (generic term)
+bercy butter|1
+(noun)|Bercy|Bercy butter|sauce (generic term)
+bereave|1
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+bereaved|2
+(adj)|bereft|grief-stricken|grieving|mourning|sorrowing|sorrowful (similar term)
+(noun)|bereaved person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bereaved person|1
+(noun)|bereaved|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bereavement|1
+(noun)|mourning|sadness (generic term)|sorrow (generic term)|sorrowfulness (generic term)
+bereft|2
+(adj)|lovelorn|unbeloved|unloved (similar term)
+(adj)|bereaved|grief-stricken|grieving|mourning|sorrowing|sorrowful (similar term)
+beret|1
+(noun)|cap (generic term)
+berg|2
+(noun)|iceberg|ice mass (generic term)|floater (generic term)
+(noun)|Berg|Alban Berg|composer (generic term)
+bergall|1
+(noun)|cunner|Tautogolabrus adspersus|wrasse (generic term)
+bergamot|1
+(noun)|bergamot orange|Citrus bergamia|orange (generic term)|orange tree (generic term)
+bergamot mint|2
+(noun)|bee balm|beebalm|oswego tea|Monarda didyma|monarda (generic term)|wild bergamot (generic term)
+(noun)|lemon mint|eau de cologne mint|Mentha citrata|mint (generic term)
+bergamot orange|1
+(noun)|bergamot|Citrus bergamia|orange (generic term)|orange tree (generic term)
+bergen|1
+(noun)|Bergen|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bergenia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bergman|2
+(noun)|Bergman|Ingrid Bergman|actress (generic term)
+(noun)|Bergman|Ingmar Bergman|film director (generic term)|director (generic term)
+bergson|1
+(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher (generic term)
+beria|1
+(noun)|Beria|Lavrenti Pavlovich Beria|captain (generic term)|police captain (generic term)|police chief (generic term)
+beriberi|1
+(noun)|avitaminosis (generic term)|hypovitaminosis (generic term)
+bering|1
+(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator (generic term)
+bering sea|1
+(noun)|Bering Sea|sea (generic term)
+bering standard time|1
+(noun)|Bering Time|Bering Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+bering strait|1
+(noun)|Bering Strait|strait (generic term)|sound (generic term)
+bering time|1
+(noun)|Bering Time|Bering Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+berit|1
+(noun)|Berith|Berit|Brith|Bris|Briss|circumcision (generic term)
+berith|1
+(noun)|Berith|Berit|Brith|Bris|Briss|circumcision (generic term)
+berk|1
+(noun)|stupid (generic term)|stupid person (generic term)|stupe (generic term)|dullard (generic term)|dolt (generic term)|pudding head (generic term)|pudden-head (generic term)|poor fish (generic term)|pillock (generic term)
+berkeley|2
+(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher (generic term)|bishop (generic term)
+(noun)|Berkeley|city (generic term)|metropolis (generic term)|urban center (generic term)
+berkelium|1
+(noun)|Bk|atomic number 97|metallic element (generic term)|metal (generic term)
+berkshire|1
+(noun)|Berkshire|county (generic term)
+berkshire hills|1
+(noun)|Berkshires|Berkshire Hills|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+berkshires|1
+(noun)|Berkshires|Berkshire Hills|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+berlage|1
+(noun)|Berlage|Hendrik Petrus Berlage|architect (generic term)|designer (generic term)
+berlin|3
+(noun)|Berlin|German capital|national capital (generic term)
+(noun)|Berlin|Irving Berlin|Israel Baline|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+(noun)|limousine (generic term)|limo (generic term)
+berlin airlift|1
+(noun)|Berlin airlift|airlift (generic term)|lift (generic term)
+berlin doughnut|1
+(noun)|Berlin doughnut|bismark|jelly doughnut|raised doughnut (generic term)
+berliner|1
+(noun)|Berliner|German (generic term)
+berlioz|1
+(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer (generic term)
+berm|2
+(noun)|ledge (generic term)|shelf (generic term)
+(noun)|shoulder|edge (generic term)|margin (generic term)
+bermuda|1
+(noun)|Bermuda|Bermudas|island (generic term)
+bermuda buttercup|1
+(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+bermuda cedar|1
+(noun)|Bermuda cedar|Juniperus bermudiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+bermuda chub|1
+(noun)|Bermuda chub|rudderfish|Kyphosus sectatrix|sea chub (generic term)
+bermuda dollar|1
+(noun)|Bermuda dollar|dollar (generic term)
+bermuda grass|1
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+bermuda lily|1
+(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily (generic term)
+bermuda maidenhair|1
+(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair (generic term)|maidenhair fern (generic term)
+bermuda maidenhair fern|1
+(noun)|Bermuda maidenhair|Bermuda maidenhair fern|Adiantum bellum|maidenhair (generic term)|maidenhair fern (generic term)
+bermuda onion|1
+(noun)|Bermuda onion|onion (generic term)
+bermuda plan|1
+(noun)|Bermuda plan|hotel plan (generic term)|meal plan (generic term)
+bermuda rig|1
+(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig (generic term)|rigging (generic term)
+bermuda shorts|1
+(noun)|Bermuda shorts|Jamaica shorts|short pants (generic term)|shorts (generic term)|trunks (generic term)
+bermuda triangle|1
+(noun)|Bermuda Triangle|area (generic term)|country (generic term)|Atlantic (generic term)|Atlantic Ocean (generic term)
+bermudan|2
+(adj)|Bermudan|island (related term)
+(noun)|Bermudan|Bermudian|North American (generic term)
+bermudan rig|1
+(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig (generic term)|rigging (generic term)
+bermudas|1
+(noun)|Bermuda|Bermudas|island (generic term)
+bermudian|1
+(noun)|Bermudan|Bermudian|North American (generic term)
+bermudian rig|1
+(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig (generic term)|rigging (generic term)
+bern|1
+(noun)|Bern|Berne|capital of Switzerland|national capital (generic term)
+berna eli oldfield|1
+(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer (generic term)|race driver (generic term)|automobile driver (generic term)
+bernanrd arthur owen williams|1
+(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher (generic term)
+bernard|1
+(noun)|Bernard|Claude Bernard|physiologist (generic term)
+bernard baruch|1
+(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier (generic term)|moneyman (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+bernard hinault|1
+(noun)|Hinault|Bernard Hinault|cyclist (generic term)|bicyclist (generic term)|bicycler (generic term)|wheeler (generic term)
+bernard law montgomery|1
+(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general (generic term)|full general (generic term)
+bernard malamud|1
+(noun)|Malamud|Bernard Malamud|writer (generic term)|author (generic term)
+bernard mannes baruch|1
+(noun)|Baruch|Bernard Baruch|Bernard Mannes Baruch|financier (generic term)|moneyman (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+bernardo bertolucci|1
+(noun)|Bertolucci|Bernardo Bertolucci|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+bernd heinrich wilhelm von kleist|1
+(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist (generic term)|playwright (generic term)
+berne|1
+(noun)|Bern|Berne|capital of Switzerland|national capital (generic term)
+bernese mountain dog|1
+(noun)|Bernese mountain dog|working dog (generic term)
+bernhard riemann|1
+(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician (generic term)
+bernhardt|1
+(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress (generic term)
+bernini|1
+(noun)|Bernini|Giovanni Lorenzo Bernini|architect (generic term)|designer (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+bernoulli|3
+(noun)|Bernoulli|Daniel Bernoulli|physicist (generic term)
+(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician (generic term)
+(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician (generic term)
+bernoulli's law|1
+(noun)|Bernoulli's law|law of large numbers|law (generic term)|law of nature (generic term)
+bernoulli distribution|1
+(noun)|binomial distribution|Bernoulli distribution|distribution (generic term)|statistical distribution (generic term)
+bernstein|1
+(noun)|Bernstein|Leonard Bernstein|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+beroe|1
+(noun)|ctenophore (generic term)|comb jelly (generic term)
+berra|1
+(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer (generic term)|baseball player (generic term)
+berretta|1
+(noun)|biretta|birretta|cap (generic term)
+berried|1
+(adj)|baccate|bacciferous|fruitful (similar term)
+berry|4
+(noun)|edible fruit (generic term)
+(noun)|fruit (generic term)
+(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star (generic term)
+(verb)|pick (generic term)|pluck (generic term)|cull (generic term)
+berry fern|1
+(noun)|bulblet fern|bulblet bladder fern|Cystopteris bulbifera|bladder fern (generic term)
+berrylike|1
+(adj)|baccate|berry (related term)
+berserk|2
+(adj)|amuck|amok|demoniac|demoniacal|possessed|insane (similar term)
+(noun)|berserker|Scandinavian (generic term)|Norse (generic term)|Northman (generic term)
+berserker|1
+(noun)|berserk|Scandinavian (generic term)|Norse (generic term)|Northman (generic term)
+berteroa|1
+(noun)|Berteroa|genus Berteroa|dilleniid dicot genus (generic term)
+berteroa incana|1
+(noun)|hoary alison|hoary alyssum|Berteroa incana|herb (generic term)|herbaceous plant (generic term)
+berth|6
+(noun)|position|post|office|spot|billet|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|mooring|moorage|slip|anchorage (generic term)|anchorage ground (generic term)
+(noun)|bunk|built in bed|bed (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|moor|tie up|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|moor|wharf|dock (generic term)
+bertholletia|1
+(noun)|Bertholletia|genus Bertholletia|dicot genus (generic term)|magnoliopsid genus (generic term)
+bertholletia excelsa|1
+(noun)|brazil nut|brazil-nut tree|Bertholletia excelsa|nut tree (generic term)
+bertillon|1
+(noun)|Bertillon|Alphonse Bertillon|criminologist (generic term)
+bertillon system|1
+(noun)|Bertillon system|procedure (generic term)|process (generic term)
+bertolt brecht|1
+(noun)|Brecht|Bertolt Brecht|dramatist (generic term)|playwright (generic term)|poet (generic term)
+bertolucci|1
+(noun)|Bertolucci|Bernardo Bertolucci|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+bertram brockhouse|1
+(noun)|Brockhouse|Bertram Brockhouse|physicist (generic term)
+bertrand arthur william russell|1
+(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician (generic term)|logistician (generic term)|philosopher (generic term)
+bertrand russell|1
+(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician (generic term)|logistician (generic term)|philosopher (generic term)
+berycomorphi|1
+(noun)|Berycomorphi|order Berycomorphi|animal order (generic term)
+beryl|1
+(noun)|mineral (generic term)
+beryllium|1
+(noun)|Be|glucinium|atomic number 4|metallic element (generic term)|metal (generic term)
+beryllium bronze|1
+(noun)|bronze (generic term)
+berzelius|1
+(noun)|Berzelius|Jons Jakob Berzelius|chemist (generic term)
+beseech|1
+(verb)|bid|entreat|adjure|press|conjure|plead (generic term)
+beseeching|1
+(adj)|adjuratory (similar term)|appealing (similar term)|imploring (similar term)|importunate (similar term)|pleading (similar term)|mendicant (similar term)|petitionary (similar term)|precatory (similar term)|precative (similar term)|suppliant (similar term)|supplicant (similar term)|supplicatory (similar term)|imperative (antonym)
+beseechingly|1
+(adv)|importunately|imploringly|pleadingly|entreatingly
+beseem|1
+(verb)|befit|suit|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+beset|3
+(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|set upon|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|encrust|incrust|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+beshrew|1
+(verb)|curse|damn|bedamn|anathemize|anathemise|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+besides|2
+(adv)|in any case
+(adv)|too|also|likewise|as well
+besiege|3
+(verb)|beleaguer|surround|hem in|circumvent|attack (generic term)|assail (generic term)
+(verb)|distress (generic term)
+(verb)|importune (generic term)|insist (generic term)
+besieged|1
+(adj)|enclosed (similar term)
+besieger|2
+(noun)|enemy (generic term)|foe (generic term)|foeman (generic term)|opposition (generic term)
+(noun)|petitioner (generic term)|suppliant (generic term)|supplicant (generic term)|requester (generic term)
+besieging|1
+(noun)|siege|beleaguering|military blockade|blockade (generic term)|encirclement (generic term)
+besmear|1
+(verb)|bedaub|cover (generic term)
+besmirch|2
+(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|sully|charge (generic term)|accuse (generic term)
+(verb)|smirch|smear (generic term)
+besmirched|1
+(adj)|damaged|flyblown|spotted|stained|sullied|tainted|tarnished|blemished (similar term)
+besom|1
+(noun)|broom (generic term)
+besot|1
+(verb)|stupefy|desensitize (generic term)|desensitise (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+bespangle|2
+(verb)|spangle|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+bespangled|1
+(adj)|beaded|beady|bejeweled|bejewelled|gemmed|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+bespatter|1
+(verb)|spatter|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+bespattered|1
+(adj)|spattered|besplashed|splashed|dirty (similar term)|soiled (similar term)|unclean (similar term)
+bespeak|2
+(verb)|betoken|indicate|point|signal|tell (generic term)
+(verb)|request|call for|quest|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+bespeckle|1
+(verb)|speckle|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+bespectacled|1
+(adj)|monocled|spectacled|adorned (similar term)|decorated (similar term)
+besplashed|1
+(adj)|bespattered|spattered|splashed|dirty (similar term)|soiled (similar term)|unclean (similar term)
+bespoke|1
+(adj)|bespoken|made-to-order|tailored|tailor-made|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+bespoken|2
+(adj)|bespoke|made-to-order|tailored|tailor-made|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+(adj)|affianced|betrothed|engaged|pledged|attached (similar term)|committed (similar term)
+bespot|1
+(verb)|mark (generic term)
+besprent|1
+(adj)|sprinkled|wet (similar term)
+besprinkle|1
+(verb)|sprinkle|sparge|wet (generic term)
+bessel|1
+(noun)|Bessel|Friedrich Wilhelm Bessel|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+bessemer|1
+(noun)|Bessemer|Sir Henry Bessemer|metallurgist (generic term)|metallurgical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+bessemer converter|1
+(noun)|Bessemer converter|converter (generic term)|convertor (generic term)
+bessemer process|1
+(noun)|Bessemer process|industrial process (generic term)|steel production (generic term)
+bessera|1
+(noun)|Bessera|genus Bessera|liliid monocot genus (generic term)
+bessera elegans|1
+(noun)|coral drops|Bessera elegans|flower (generic term)
+besseya|1
+(noun)|Besseya|genus Besseya|asterid dicot genus (generic term)
+besseya alpina|1
+(noun)|Alpine besseya|Besseya alpina|kitten-tails (generic term)
+bessie smith|1
+(noun)|Smith|Bessie Smith|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+bessy cerca|1
+(noun)|queen triggerfish|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish (generic term)
+best|7
+(adj)|champion (similar term)|prizewinning (similar term)|high-grade (similar term)|top-quality (similar term)|top-grade (similar term)|first (similar term)|foremost (similar term)|world-class (similar term)|go-to-meeting (similar term)|Sunday-go-to-meeting (similar term)|optimum (similar term)|optimal (similar term)|primo (similar term)|record-breaking (similar term)|second-best (similar term)|superfine (similar term)|unexcelled (similar term)|unexceeded (similar term)|unsurpassed (similar term)|unsurpassable (similar term)|good (related term)|incomparable (related term)|uncomparable (related term)|superior (related term)|top (related term)|worst (antonym)
+(adj)|better|advisable (similar term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)|worst (antonym)
+(noun)|topper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Best|C. H. Best|Charles Herbert Best|physiologist (generic term)
+(verb)|outdo|outflank|trump|scoop|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(adv)|better
+best-known|1
+(adj)|known (similar term)
+best-loved|1
+(adj)|favored|favorite|favourite|pet|preferred|preferent|loved (similar term)
+best-selling|1
+(adj)|popular (similar term)
+best and greatest|1
+(noun)|Jupiter Optimus Maximus|Best and Greatest|Jupiter (generic term)|Jove (generic term)
+best evidence rule|1
+(noun)|rule of evidence (generic term)
+best friend|1
+(noun)|friend (generic term)
+best man|1
+(noun)|groomsman (generic term)
+best seller|1
+(noun)|bestseller|trade book (generic term)|trade edition (generic term)
+bestial|1
+(adj)|beastly|brute|brutish|inhumane (similar term)
+bestialise|1
+(verb)|bestialize|change (generic term)|alter (generic term)|modify (generic term)
+bestiality|2
+(noun)|inhumaneness (generic term)|inhumanity (generic term)
+(noun)|zooerastia|zooerasty|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+bestialize|1
+(verb)|bestialise|change (generic term)|alter (generic term)|modify (generic term)
+bestially|1
+(adv)|brutishly|in a beastly manner
+bestiary|1
+(noun)|book (generic term)
+bestir|1
+(verb)|rouse|be active (generic term)|move (generic term)
+bestir oneself|1
+(verb)|get cracking|get going|get moving|get weaving|get started|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+bestow|3
+(verb)|confer|award (generic term)|present (generic term)
+(verb)|give (generic term)
+(verb)|lend|impart|contribute|add|bring|change (generic term)|alter (generic term)|modify (generic term)
+bestowal|2
+(noun)|bestowment|conferral|conferment|giving (generic term)|gift (generic term)
+(noun)|bestowment|gift (generic term)
+bestowed|1
+(adj)|conferred|presented|given (similar term)
+bestower|1
+(noun)|donor|giver|presenter|conferrer|benefactor (generic term)|helper (generic term)
+bestowment|2
+(noun)|bestowal|gift (generic term)
+(noun)|bestowal|conferral|conferment|giving (generic term)|gift (generic term)
+bestrew|1
+(verb)|strew (generic term)|straw (generic term)
+bestride|1
+(verb)|hop on|mount|mount up|get on|jump on|climb on|move (generic term)|hop out (antonym)
+bestseller|1
+(noun)|best seller|trade book (generic term)|trade edition (generic term)
+bestubbled|1
+(adj)|stubbled|stubbly|unshaven (similar term)|unshaved (similar term)
+bet|5
+(noun)|stake|stakes|wager|gamble (generic term)
+(noun)|wager|gambling (generic term)|gaming (generic term)|play (generic term)
+(verb)|wager|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)|bet on (related term)
+(verb)|wager|play|gamble (generic term)
+(verb)|count|depend|look|calculate|reckon|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+bet on|1
+(verb)|back|gage|stake|game|punt|bet (generic term)|wager (generic term)|play (generic term)
+beta|4
+(adj)|important (similar term)|of import (similar term)
+(adj)|exploratory (similar term)|explorative (similar term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|Beta|genus Beta|caryophylloid dicot genus (generic term)|Chenopodiaceae (generic term)|family Chenopodiaceae (generic term)|goosefoot family (generic term)
+beta-adrenergic blocker|1
+(noun)|beta blocker|beta-adrenergic blocking agent|blocker (generic term)|blocking agent (generic term)
+beta-adrenergic blocking agent|1
+(noun)|beta blocker|beta-adrenergic blocker|blocker (generic term)|blocking agent (generic term)
+beta-adrenergic receptor|1
+(noun)|beta receptor|beta-adrenoceptor|receptor (generic term)
+beta-adrenoceptor|1
+(noun)|beta receptor|beta-adrenergic receptor|receptor (generic term)
+beta-carotene|1
+(noun)|provitamin A (generic term)|carotene (generic term)|carotin (generic term)|carotenoid (generic term)
+beta-hydroxybutyric acid|1
+(noun)|ketone body (generic term)|acetone body (generic term)|hydroxybutyric acid (generic term)|oxybutyric acid (generic term)
+beta-interferon|1
+(noun)|interferon (generic term)
+beta-lactamase|1
+(noun)|penicillinase|enzyme (generic term)
+beta-lipoprotein|1
+(noun)|low-density lipoprotein|LDL|lipoprotein (generic term)
+beta-naphthol|1
+(noun)|naphthol (generic term)|antioxidant (generic term)
+beta blocker|1
+(noun)|beta-adrenergic blocker|beta-adrenergic blocking agent|blocker (generic term)|blocking agent (generic term)
+beta cell|1
+(noun)|cell (generic term)
+beta centauri|1
+(noun)|Beta Centauri|star (generic term)
+beta crucis|1
+(noun)|Beta Crucis|star (generic term)
+beta decay|1
+(noun)|decay (generic term)|radioactive decay (generic term)|disintegration (generic term)
+beta endorphin|1
+(noun)|endorphin (generic term)
+beta globulin|1
+(noun)|transferrin|siderophilin|globulin (generic term)
+beta iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+beta orionis|1
+(noun)|Rigel|Beta Orionis|binary star (generic term)|binary (generic term)|double star (generic term)
+beta particle|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+beta radiation|1
+(noun)|beta ray|electron radiation|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+beta ray|1
+(noun)|beta radiation|electron radiation|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+beta receptor|1
+(noun)|beta-adrenergic receptor|beta-adrenoceptor|receptor (generic term)
+beta rhythm|1
+(noun)|beta wave|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+beta software|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+beta test|1
+(noun)|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+beta vulgaris|1
+(noun)|beet|common beet|Beta vulgaris|vegetable (generic term)
+beta vulgaris cicla|1
+(noun)|chard|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+beta vulgaris rubra|1
+(noun)|beetroot|Beta vulgaris rubra|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+beta vulgaris vulgaris|1
+(noun)|mangel-wurzel|mangold-wurzel|mangold|Beta vulgaris vulgaris|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+beta wave|1
+(noun)|beta rhythm|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+betaine|1
+(noun)|alkaloid (generic term)
+betake oneself|1
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+betatron|1
+(noun)|induction accelerator|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+bete noire|1
+(noun)|anathema|unpleasant person (generic term)|disagreeable person (generic term)
+betel|1
+(noun)|betel pepper|Piper betel|true pepper (generic term)|pepper vine (generic term)
+betel nut|1
+(noun)|areca nut|edible seed (generic term)
+betel palm|1
+(noun)|Areca catechu|areca (generic term)
+betel pepper|1
+(noun)|betel|Piper betel|true pepper (generic term)|pepper vine (generic term)
+betelgeuse|1
+(noun)|Betelgeuse|Alpha Orionis|supergiant (generic term)
+beth|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+bethe|1
+(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist (generic term)
+bethel|1
+(noun)|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+bethink|1
+(verb)|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+bethlehem|2
+(noun)|Bethlehem|town (generic term)
+(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town (generic term)
+bethlehem-judah|1
+(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town (generic term)
+bethlehem ephrathah|1
+(noun)|Bethlehem|Bayt Lahm|Bethlehem Ephrathah|Bethlehem-Judah|town (generic term)
+bethune|1
+(noun)|Bethune|Mary McLeod Bethune|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+betide|1
+(verb)|befall|bechance|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+betimes|1
+(adv)|early
+betise|1
+(noun)|stupidity|folly|foolishness|imbecility|mistake (generic term)|error (generic term)|fault (generic term)
+betoken|2
+(verb)|bespeak|indicate|point|signal|tell (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+betray|6
+(verb)|bewray|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|sell|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|fail|disappoint (generic term)|let down (generic term)
+(verb)|cheat on|cheat|cuckold|wander|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|denounce|tell on|give away|rat|grass|shit|shop|snitch|stag|inform (generic term)
+(verb)|deceive|lead astray|misinform (generic term)|mislead (generic term)|undeceive (antonym)
+betrayal|2
+(noun)|treachery|treason|perfidy|dishonesty (generic term)|knavery (generic term)
+(noun)|treason (generic term)|subversiveness (generic term)|traitorousness (generic term)
+betrayer|2
+(noun)|informer|rat|squealer|blabber|informant (generic term)|source (generic term)
+(noun)|double-crosser|double-dealer|two-timer|traitor|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+betraying|1
+(adj)|revealing (similar term)
+betroth|1
+(verb)|engage|affiance|plight|vow (generic term)
+betrothal|2
+(noun)|troth|engagement|promise (generic term)
+(noun)|espousal|ritual (generic term)|rite (generic term)
+betrothed|2
+(adj)|affianced|bespoken|engaged|pledged|attached (similar term)|committed (similar term)
+(noun)|lover (generic term)
+betsy griscom ross|1
+(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker (generic term)|modiste (generic term)|needlewoman (generic term)|seamstress (generic term)|sempstress (generic term)
+betsy ross|1
+(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker (generic term)|modiste (generic term)|needlewoman (generic term)|seamstress (generic term)|sempstress (generic term)
+bette davis|1
+(noun)|Davis|Bette Davis|actress (generic term)
+better|11
+(adj)|amended (similar term)|finer (similar term)|improved (similar term)|worse (antonym)
+(adj)|fitter (similar term)|healthier (similar term)|worse (antonym)
+(adj)|best|advisable (similar term)
+(adj)|major (similar term)
+(noun)|bettor|wagerer|punter|gambler (generic term)
+(noun)|superior (generic term)|higher-up (generic term)|superordinate (generic term)
+(noun)|good (generic term)|goodness (generic term)
+(verb)|break|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|improve|amend|ameliorate|meliorate|change (generic term)|alter (generic term)|modify (generic term)|worsen (antonym)
+(verb)|improve|ameliorate|meliorate|change state (generic term)|turn (generic term)|worsen (antonym)
+(adv)|best
+better-known|1
+(adj)|known (similar term)
+better-looking|1
+(adj)|fine-looking|good-looking|handsome|well-favored|well-favoured|beautiful (similar term)
+better half|1
+(noun)|spouse|partner|married person|mate|relative (generic term)|relation (generic term)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+better off|1
+(adj)|fortunate (similar term)
+bettering|1
+(adj)|ameliorating (similar term)|ameliorative (similar term)|amelioratory (similar term)|meliorative (similar term)|amendatory (similar term)|corrective (similar term)|remedial (similar term)|worsening (antonym)
+betterment|3
+(noun)|improvement|advance|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|improvement (generic term)|melioration (generic term)
+(noun)|amelioration|melioration|improvement (generic term)
+betting|1
+(adj)|dissipated|card-playing|sporting|indulgent (similar term)
+betting odds|1
+(noun)|odds|ratio (generic term)
+betting shop|1
+(noun)|shop (generic term)|store (generic term)
+bettong|1
+(noun)|rat kangaroo (generic term)|kangaroo rat (generic term)
+bettongia|1
+(noun)|Bettongia|genus Bettongia|mammal genus (generic term)
+bettor|1
+(noun)|better|wagerer|punter|gambler (generic term)
+betty friedan|1
+(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+betty naomi friedan|1
+(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+betula|1
+(noun)|Betula|genus Betula|hamamelid dicot genus (generic term)
+betula alleghaniensis|1
+(noun)|yellow birch|Betula alleghaniensis|Betula leutea|birch (generic term)|birch tree (generic term)
+betula cordifolia|1
+(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+betula fontinalis|1
+(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+betula glandulosa|1
+(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch (generic term)|birch tree (generic term)
+betula lenta|1
+(noun)|sweet birch|cherry birch|black birch|Betula lenta|birch (generic term)|birch tree (generic term)
+betula leutea|1
+(noun)|yellow birch|Betula alleghaniensis|Betula leutea|birch (generic term)|birch tree (generic term)
+betula neoalaskana|1
+(noun)|Yukon white birch|Betula neoalaskana|birch (generic term)|birch tree (generic term)
+betula nigra|1
+(noun)|black birch|river birch|red birch|Betula nigra|birch (generic term)|birch tree (generic term)
+betula papyrifera|1
+(noun)|American white birch|paper birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+betula pendula|1
+(noun)|silver birch|common birch|European white birch|Betula pendula|birch (generic term)|birch tree (generic term)
+betula populifolia|1
+(noun)|grey birch|gray birch|American grey birch|American gray birch|Betula populifolia|birch (generic term)|birch tree (generic term)
+betula pubescens|1
+(noun)|downy birch|white birch|Betula pubescens|birch (generic term)|birch tree (generic term)
+betulaceae|1
+(noun)|Betulaceae|family Betulaceae|birch family|hamamelid dicot family (generic term)
+betulaceous|1
+(adj)|hamamelid dicot family (related term)
+between|2
+(adv)|betwixt
+(adv)|'tween
+between decks|1
+(adv)|'tween decks
+betweenbrain|1
+(noun)|diencephalon|interbrain|thalmencephalon|neural structure (generic term)
+betwixt|1
+(adv)|between
+beurre noisette|1
+(noun)|brown butter|butter (generic term)
+bevatron|1
+(noun)|cyclotron (generic term)
+bevel|3
+(noun)|cant|chamfer|edge (generic term)
+(noun)|bevel square|hand tool (generic term)
+(verb)|chamfer|cut (generic term)
+bevel gear|1
+(noun)|pinion and crown wheel|pinion and ring gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+bevel square|1
+(noun)|bevel|hand tool (generic term)
+beverage|1
+(noun)|drink|drinkable|potable|food (generic term)|nutrient (generic term)|liquid (generic term)
+beveridge|1
+(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist (generic term)|economic expert (generic term)
+beverly hills|1
+(noun)|Beverly Hills|city (generic term)|metropolis (generic term)|urban center (generic term)
+beverly sills|1
+(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano (generic term)
+bevin|1
+(noun)|Bevin|Ernest Bevin|statesman (generic term)|solon (generic term)|national leader (generic term)
+bevy|2
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|flock (generic term)
+bewail|1
+(verb)|deplore|lament|bemoan|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+beware|1
+(verb)|mind|watch (generic term)|look out (generic term)|watch out (generic term)
+bewhisker|1
+(verb)|whisker|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+bewhiskered|1
+(adj)|bearded|barbate|whiskered|whiskery|unshaven (similar term)|unshaved (similar term)
+bewick's swan|1
+(noun)|Bewick's swan|Cygnus columbianus bewickii|tundra swan (generic term)|Cygnus columbianus (generic term)
+bewilder|2
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|bemuse|discombobulate|throw|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+bewildered|1
+(adj)|baffled|befuddled|bemused|confounded|confused|lost|mazed|mixed-up|at sea|perplexed (similar term)
+bewildering|1
+(adj)|unclear (similar term)
+bewilderingly|1
+(adv)|confusingly
+bewilderment|1
+(noun)|obfuscation|puzzlement|befuddlement|mystification|bafflement|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+bewitch|3
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|entrance|enchant|attract (generic term)|appeal (generic term)
+(verb)|magnetize|mesmerize|mesmerise|magnetise|spellbind|charm (generic term)|influence (generic term)|tempt (generic term)
+(verb)|hex|glamour|witch|enchant|jinx|charm (generic term)|becharm (generic term)
+bewitched|1
+(adj)|ensorcelled|enchanted (similar term)
+bewitchery|1
+(noun)|beguilement|animal magnetism|attractiveness (generic term)
+bewitching|1
+(adj)|captivating|enchanting|enthralling|entrancing|fascinating|attractive (similar term)
+bewitchingly|1
+(adv)|captivatingly|enchantingly|enthrallingly
+bewitchment|1
+(noun)|enchantment|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+bewray|1
+(verb)|betray|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+bey|2
+(noun)|man (generic term)|adult male (generic term)
+(noun)|governor (generic term)
+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|in hand (antonym)
+beyond doubt|1
+(adj)|indubitable|unquestionable (similar term)
+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 (generic term)
+bezel|1
+(noun)|edge (generic term)
+bezique|1
+(noun)|pinochle|pinocle|penuchle|card game (generic term)|cards (generic term)
+bezoar goat|1
+(noun)|pasang|Capra aegagrus|wild goat (generic term)
+bezzant|1
+(noun)|bezant|byzant|solidus|coin (generic term)
+bh|1
+(noun)|bohrium|Bh|element 107|atomic number 107|chemical element (generic term)|element (generic term)
+bhadon|1
+(noun)|Bhadon|Bhadrapada|Hindu calendar month (generic term)
+bhadrapada|1
+(noun)|Bhadon|Bhadrapada|Hindu calendar month (generic term)
+bhaga|1
+(noun)|Bhaga|Hindu deity (generic term)
+bhagavad-gita|1
+(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+bhagavadgita|1
+(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+bhakti|1
+(noun)|devotion (generic term)
+bhang|1
+(noun)|soft drug (generic term)
+bharat|1
+(noun)|India|Republic of India|Bharat|Asian country (generic term)|Asian nation (generic term)
+bhumi devi|1
+(noun)|Bhumi Devi|Hindu deity (generic term)
+bhutan|1
+(noun)|Bhutan|Kingdom of Bhutan|Asian country (generic term)|Asian nation (generic term)
+bhutanese|2
+(adj)|Bhutanese|Asian country|Asian nation (related term)
+(noun)|Bhutanese|Bhutani|Asian (generic term)|Asiatic (generic term)
+bhutanese monetary unit|1
+(noun)|Bhutanese monetary unit|monetary unit (generic term)
+bhutani|1
+(noun)|Bhutanese|Bhutani|Asian (generic term)|Asiatic (generic term)
+bi|1
+(noun)|bismuth|Bi|atomic number 83|metallic element (generic term)|metal (generic term)
+bi-fold door|1
+(noun)|interior door (generic term)
+bialy|1
+(noun)|bialystoker|onion roll (generic term)
+bialystoker|1
+(noun)|bialy|onion roll (generic term)
+biannual|1
+(adj)|semiannual|biyearly|time period|period of time|period (related term)
+bias|5
+(adj)|oblique (similar term)
+(noun)|prejudice|preconception|partiality (generic term)|partisanship (generic term)
+(noun)|diagonal|straight line (generic term)
+(verb)|prejudice (generic term)|prepossess (generic term)
+(verb)|predetermine|prejudice (generic term)|prepossess (generic term)
+biased|1
+(adj)|colored|coloured|one-sided|slanted|partial (similar term)|unfair (similar term)
+biaural|1
+(adj)|binaural|two-eared (similar term)|stereophonic (similar term)|stereo (similar term)|two-channel (similar term)|monaural (antonym)
+biauriculate heart|1
+(noun)|heart (generic term)|pump (generic term)|ticker (generic term)
+biaxal|1
+(adj)|biaxial|biaxate|line (related term)
+biaxate|1
+(adj)|biaxial|biaxal|line (related term)
+biaxial|1
+(adj)|biaxal|biaxate|line (related term)
+bib|3
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(noun)|napkin (generic term)|table napkin (generic term)|serviette (generic term)
+(verb)|tipple|drink (generic term)|booze (generic term)|fuddle (generic term)
+bib-and-tucker|1
+(noun)|outfit (generic term)|getup (generic term)|rig (generic term)|turnout (generic term)
+bibb lettuce|1
+(noun)|Bibb lettuce|butterhead lettuce (generic term)
+bibbed|1
+(adj)|bibless (antonym)
+bible|2
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+bible-worship|1
+(noun)|bibliolatry|Bible-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+bible belt|1
+(noun)|Bible Belt|belt (generic term)
+bible leaf|1
+(noun)|costmary|alecost|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+bibless|1
+(adj)|bibbed (antonym)
+biblical|2
+(adj)|scriptural|sacred text|sacred writing|religious writing|religious text (related term)
+(adj)|sacred text|sacred writing|religious writing|religious text (related term)
+biblical aramaic|1
+(noun)|Biblical Aramaic|Aramaic (generic term)
+biblical latin|1
+(noun)|Late Latin|Biblical Latin|Latin (generic term)
+bibliographer|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+bibliographic|1
+(adj)|bibliographical|list|listing (related term)
+bibliographical|1
+(adj)|bibliographic|list|listing (related term)
+bibliography|1
+(noun)|list (generic term)|listing (generic term)
+bibliolatrous|1
+(adj)|idolatry|devotion|veneration|cultism (related term)
+bibliolatry|1
+(noun)|Bible-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+bibliomania|1
+(noun)|acquisitiveness (generic term)
+bibliomaniacal|1
+(adj)|acquisitiveness (related term)
+bibliophile|1
+(noun)|booklover|book lover|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+bibliophilic|1
+(adj)|scholar|scholarly person|bookman|student (related term)
+bibliopole|1
+(noun)|bibliopolist|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+bibliopolic|1
+(adj)|trader|bargainer|dealer|monger (related term)
+bibliopolist|1
+(noun)|bibliopole|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+bibliothec|1
+(noun)|librarian|professional (generic term)|professional person (generic term)
+bibliotheca|1
+(noun)|library (generic term)
+bibliothecal|1
+(adj)|bibliothecarial|library (related term)|professional|professional person (related term)
+bibliothecarial|1
+(adj)|bibliothecal|library (related term)|professional|professional person (related term)
+bibliotic|1
+(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+bibliotics|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+bibliotist|1
+(noun)|scientist (generic term)|man of science (generic term)
+bibos|1
+(noun)|Bibos|genus Bibos|mammal genus (generic term)
+bibos frontalis|1
+(noun)|gayal|mithan|Bibos frontalis|Asian wild ox (generic term)
+bibos gaurus|1
+(noun)|gaur|Bibos gaurus|Asian wild ox (generic term)
+bibulous|1
+(adj)|boozy|drunken|sottish|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+bicameral|2
+(adj)|unicameral (antonym)
+(adj)|two-chambered|divided (similar term)
+bicapsular|1
+(adj)|pericarp|seed vessel (related term)
+bicarbonate|1
+(noun)|hydrogen carbonate|carbonate (generic term)
+bicarbonate of soda|1
+(noun)|sodium hydrogen carbonate|sodium bicarbonate|baking soda|saleratus|bicarbonate (generic term)|hydrogen carbonate (generic term)
+bicentenary|2
+(adj)|bicentennial|anniversary|day of remembrance (related term)
+(noun)|bicentennial|anniversary (generic term)|day of remembrance (generic term)
+bicentennial|2
+(adj)|bicentenary|anniversary|day of remembrance (related term)
+(noun)|bicentenary|anniversary (generic term)|day of remembrance (generic term)
+bicentric|1
+(adj)|central (similar term)
+bicephalous|1
+(adj)|headed (similar term)
+biceps|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+biceps brachii|1
+(noun)|musculus biceps brachii|biceps humeri|biceps (generic term)
+biceps humeri|1
+(noun)|biceps brachii|musculus biceps brachii|biceps (generic term)
+bichloride|1
+(noun)|dichloride|chloride (generic term)
+bichloride of mercury|1
+(noun)|mercuric chloride|mercury chloride|corrosive sublimate|sublimate (generic term)
+bichromate|1
+(noun)|dichromate|salt (generic term)
+bichromated|1
+(adj)|salt (related term)
+bichrome|1
+(adj)|bicolor|bicolour|bicolored|bicoloured|dichromatic|colored (similar term)|coloured (similar term)|colorful (similar term)
+bicipital|1
+(adj)|skeletal muscle|striated muscle (related term)
+bicker|2
+(noun)|bickering|spat|tiff|squabble|pettifoggery|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+(verb)|quibble|niggle|pettifog|squabble|brabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+bickering|1
+(noun)|bicker|spat|tiff|squabble|pettifoggery|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+bicolor|1
+(adj)|bicolour|bicolored|bicoloured|bichrome|dichromatic|colored (similar term)|coloured (similar term)|colorful (similar term)
+bicolor lespediza|1
+(noun)|ezo-yama-hagi|Lespedeza bicolor|bush clover (generic term)|lespedeza (generic term)
+bicolored|1
+(adj)|bicolor|bicolour|bicoloured|bichrome|dichromatic|colored (similar term)|coloured (similar term)|colorful (similar term)
+bicolour|1
+(adj)|bicolor|bicolored|bicoloured|bichrome|dichromatic|colored (similar term)|coloured (similar term)|colorful (similar term)
+bicoloured|1
+(adj)|bicolor|bicolour|bicolored|bichrome|dichromatic|colored (similar term)|coloured (similar term)|colorful (similar term)
+biconcave|1
+(adj)|concavo-concave|concave (similar term)
+biconvex|1
+(adj)|convexo-convex|lenticular|lentiform|convex (similar term)|bulging (similar term)
+bicorn|2
+(adj)|bicorned|bicornate|bicornuate|bicornuous|horned (similar term)
+(noun)|bicorne|cocked hat (generic term)
+bicornate|1
+(adj)|bicorn|bicorned|bicornuate|bicornuous|horned (similar term)
+bicorne|1
+(noun)|bicorn|cocked hat (generic term)
+bicorned|1
+(adj)|bicorn|bicornate|bicornuate|bicornuous|horned (similar term)
+bicornuate|1
+(adj)|bicorn|bicorned|bicornate|bicornuous|horned (similar term)
+bicornuous|1
+(adj)|bicorn|bicorned|bicornate|bicornuate|horned (similar term)
+bicuspid|2
+(adj)|bicuspidate|angular (similar term)|angulate (similar term)
+(noun)|premolar|tooth (generic term)
+bicuspid valve|1
+(noun)|mitral valve|left atrioventricular valve|atrioventricular valve (generic term)
+bicuspidate|1
+(adj)|bicuspid|angular (similar term)|angulate (similar term)
+bicycle|2
+(noun)|bike|wheel|cycle|wheeled vehicle (generic term)
+(verb)|cycle|bike|pedal|wheel|ride (generic term)
+bicycle-built-for-two|1
+(noun)|tandem bicycle|tandem|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+bicycle chain|1
+(noun)|chain (generic term)
+bicycle clip|1
+(noun)|trouser clip|clip (generic term)
+bicycle pump|1
+(noun)|pump (generic term)
+bicycle race|1
+(noun)|race (generic term)
+bicycle rack|1
+(noun)|rack (generic term)
+bicycle seat|1
+(noun)|saddle|seat (generic term)
+bicycle traffic|1
+(noun)|vehicular traffic (generic term)|vehicle traffic (generic term)
+bicycle wheel|1
+(noun)|wheel (generic term)
+bicycler|1
+(noun)|cyclist|bicyclist|wheeler|pedaler (generic term)|pedaller (generic term)
+bicyclic|1
+(adj)|cyclic (similar term)
+bicycling|1
+(noun)|cycling (generic term)
+bicyclist|1
+(noun)|cyclist|bicycler|wheeler|pedaler (generic term)|pedaller (generic term)
+bicylindrical|1
+(adj)|round shape (related term)
+bid|10
+(noun)|command|bidding|dictation|speech act (generic term)
+(noun)|play|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|tender|offer (generic term)|offering (generic term)
+(noun)|bidding|statement (generic term)
+(verb)|offer|tender
+(verb)|wish|greet (generic term)|recognize (generic term)|recognise (generic term)
+(verb)|beseech|entreat|adjure|press|conjure|plead (generic term)
+(verb)|call|play (generic term)
+(verb)|seek (generic term)
+(verb)|invite|request (generic term)
+bid price|1
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+bida|1
+(noun)|Doha|Bida|El Beda|capital of Qatar|national capital (generic term)|port (generic term)
+biddable|1
+(adj)|acquiescent|obedient (similar term)
+bidder|2
+(noun)|applicant (generic term)|applier (generic term)
+(noun)|bridge player (generic term)|hand (generic term)
+bidding|3
+(noun)|command|bid|dictation|speech act (generic term)
+(noun)|summons|invitation (generic term)
+(noun)|bid|statement (generic term)
+bidding contest|1
+(noun)|contest (generic term)
+biddy|2
+(noun)|hen|chicken (generic term)|Gallus gallus (generic term)
+(noun)|chick|chicken (generic term)|Gallus gallus (generic term)|young bird (generic term)
+bide|1
+(verb)|abide|stay|stay (generic term)|stay on (generic term)|continue (generic term)|remain (generic term)
+bidens|1
+(noun)|Bidens|genus Bidens|asterid dicot genus (generic term)
+bidens bipinnata|1
+(noun)|Spanish needles|Bidens bipinnata|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+bidens connata|1
+(noun)|swampy beggar-ticks|Bidens connata|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+bidens coronata|1
+(noun)|tickseed sunflower|Bidens coronata|Bidens trichosperma|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+bidens trichosperma|1
+(noun)|tickseed sunflower|Bidens coronata|Bidens trichosperma|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+bidens tripartita|1
+(noun)|European beggar-ticks|trifid beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+bidentate|1
+(adj)|rough (similar term)
+bidet|1
+(noun)|basin (generic term)
+bidirectional|1
+(adj)|biface (similar term)|bifacial (similar term)|duplex (similar term)|two-way (similar term)|unidirectional (antonym)
+biedermeier|1
+(adj)|Biedermeier|furnishing (related term)
+biennial|3
+(adj)|biyearly|time period|period of time|period (related term)
+(adj)|two-year|perennial (antonym)|annual (antonym)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+biennially|1
+(adv)|biyearly
+bier|2
+(noun)|coffin (generic term)|casket (generic term)
+(noun)|rack (generic term)|stand (generic term)
+bierce|1
+(noun)|Bierce|Ambrose Bierce|Ambrose Gwinett Bierce|writer (generic term)|author (generic term)
+biface|1
+(adj)|bifacial|bidirectional (similar term)
+bifacial|1
+(adj)|biface|bidirectional (similar term)
+biff|2
+(noun)|punch|clout|poke|lick|blow (generic term)
+(verb)|pummel|pommel|hit (generic term)
+bifid|1
+(adj)|divided (similar term)
+bifocal|1
+(adj)|central (similar term)
+bifocals|1
+(noun)|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+bifoliate|1
+(adj)|leafy (similar term)
+biform|1
+(adj)|formed (similar term)
+bifurcate|3
+(adj)|biramous|branched|forked|fork-like|forficate|pronged|prongy|divided (similar term)
+(verb)|diverge (generic term)
+(verb)|branch (generic term)|ramify (generic term)|fork (generic term)|furcate (generic term)|separate (generic term)
+bifurcated|1
+(adj)|divided (similar term)
+bifurcation|3
+(noun)|branch (generic term)|leg (generic term)|ramification (generic term)
+(noun)|furcation (generic term)|forking (generic term)
+(noun)|branching (generic term)|ramification (generic term)|fork (generic term)|forking (generic term)
+big|15
+(adj)|large|ample (similar term)|sizable (similar term)|sizeable (similar term)|astronomic (similar term)|astronomical (similar term)|galactic (similar term)|bear-sized (similar term)|bigger (similar term)|larger (similar term)|biggish (similar term)|largish (similar term)|blown-up (similar term)|enlarged (similar term)|bouffant (similar term)|puffy (similar term)|broad (similar term)|spacious (similar term)|wide (similar term)|bulky (similar term)|capacious (similar term)|colossal (similar term)|prodigious (similar term)|stupendous (similar term)|deep (similar term)|double (similar term)|enormous (similar term)|tremendous (similar term)|cosmic (similar term)|elephantine (similar term)|gargantuan (similar term)|giant (similar term)|jumbo (similar term)|epic (similar term)|heroic (similar term)|larger-than-life (similar term)|extensive (similar term)|extended (similar term)|gigantic (similar term)|mammoth (similar term)|great (similar term)|grand (similar term)|huge (similar term)|immense (similar term)|vast (similar term)|Brobdingnagian (similar term)|hulking (similar term)|hulky (similar term)|humongous (similar term)|banging (similar term)|thumping (similar term)|whopping (similar term)|walloping (similar term)|king-size (similar term)|king-sized (similar term)|large-mouthed (similar term)|large-scale (similar term)|large-scale (similar term)|life-size (similar term)|lifesize (similar term)|life-sized (similar term)|full-size (similar term)|macro (similar term)|man-sized (similar term)|massive (similar term)|monolithic (similar term)|monumental (similar term)|massive (similar term)|medium-large (similar term)|monstrous (similar term)|mountainous (similar term)|outsize (similar term)|outsized (similar term)|oversize (similar term)|oversized (similar term)|overlarge (similar term)|too large (similar term)|plumping (similar term)|queen-size (similar term)|queen-sized (similar term)|rangy (similar term)|super (similar term)|titanic (similar term)|volumed (similar term)|voluminous (similar term)|whacking (similar term)|wide-ranging (similar term)|little (antonym)|small (antonym)
+(adj)|important (similar term)|of import (similar term)
+(adj)|large|prominent|conspicuous (similar term)
+(adj)|bad|intense (similar term)
+(adj)|loud (similar term)
+(adj)|heavy|intemperate (similar term)
+(adj)|adult|full-grown|fully grown|grown|grownup|mature (similar term)
+(adj)|heavy (similar term)
+(adj)|swelled|vainglorious|proud (similar term)
+(adj)|boastful|braggart|bragging|braggy|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+(adj)|large|magnanimous|generous (similar term)
+(adj)|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous (similar term)
+(adj)|enceinte|expectant|gravid|great|large|heavy|with child|pregnant (similar term)
+(adv)|boastfully|vauntingly|large
+(adv)|small (antonym)
+big-bang theory|1
+(noun)|big bang theory|scientific theory (generic term)
+big-bellied|1
+(adj)|great bellied|bellied (similar term)
+big-boned|1
+(adj)|robust (similar term)
+big-bud hickory|1
+(noun)|mockernut|mockernut hickory|black hickory|white-heart hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+big-chested|1
+(adj)|chesty|robust (similar term)
+big-cone douglas fir|1
+(noun)|big-cone spruce|Pseudotsuga macrocarpa|douglas fir (generic term)
+big-cone spruce|1
+(noun)|big-cone douglas fir|Pseudotsuga macrocarpa|douglas fir (generic term)
+big-eared bat|1
+(noun)|Megaderma lyra|false vampire (generic term)|false vampire bat (generic term)
+big-eyed scad|1
+(noun)|bigeye scad|goggle-eye|Selar crumenophthalmus|scad (generic term)
+big-leaf maple|1
+(noun)|Oregon maple|Acer macrophyllum|maple (generic term)
+big-shouldered|1
+(adj)|broad-shouldered|square-shouldered|robust (similar term)
+big-ticket|1
+(adj)|high-ticket|expensive (similar term)
+big-toothed aspen|1
+(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+big-tree plum|1
+(noun)|Prunus mexicana|plum (generic term)|plum tree (generic term)
+big band|1
+(noun)|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+big bang|1
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+big bang theory|1
+(noun)|big-bang theory|scientific theory (generic term)
+big bedbug|1
+(noun)|conenose|cone-nosed bug|conenose bug|kissing bug|assassin bug (generic term)|reduviid (generic term)
+big ben|1
+(noun)|Big Ben|clock (generic term)
+big bend|1
+(noun)|Big Bend|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+big bend national park|1
+(noun)|Big Bend National Park|national park (generic term)
+big bill haywood|1
+(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader (generic term)|socialist (generic term)
+big bill tilden|1
+(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player (generic term)
+big blue|1
+(noun)|Big Blue|BLU-82|fragmentation bomb (generic term)|antipersonnel bomb (generic term)|anti-personnel bomb (generic term)|daisy cutter (generic term)
+big board|2
+(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+(noun)|display panel (generic term)|display board (generic term)|board (generic term)
+big brother|2
+(noun)|Big Brother|authoritarian (generic term)|dictator (generic term)
+(noun)|brother (generic term)|blood brother (generic term)
+big brown bat|1
+(noun)|Eptesicus fuscus|vespertilian bat (generic term)|vespertilionid (generic term)
+big bucks|1
+(noun)|pile|bundle|megabucks|big money|money (generic term)
+big business|1
+(noun)|business (generic term)|business sector (generic term)
+big businessman|1
+(noun)|baron|business leader|king|magnate|mogul|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+big cat|1
+(noun)|cat|feline (generic term)|felid (generic term)
+big cheese|1
+(noun)|big shot|big gun|big wheel|big deal|big enchilada|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+big deal|2
+(noun)|big shot|big gun|big wheel|big cheese|big enchilada|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|importance (generic term)
+big dipper|2
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+(noun)|roller coaster|chute-the-chute|elevated railway (generic term)|elevated railroad (generic term)|elevated (generic term)|el (generic term)|overhead railway (generic term)|ride (generic term)
+big enchilada|1
+(noun)|big shot|big gun|big wheel|big cheese|big deal|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+big fish|1
+(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+big game|1
+(noun)|game (generic term)
+big gun|1
+(noun)|big shot|big wheel|big cheese|big deal|big enchilada|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+big h|1
+(noun)|big H|hell dust|nose drops|smack|thunder|skag|scag|heroin (generic term)|diacetylmorphine (generic term)
+big hand|1
+(noun)|minute hand|hand (generic term)
+big league|1
+(noun)|major league|majors|league (generic term)|conference (generic term)
+big leaguer|1
+(noun)|major leaguer|ballplayer (generic term)|baseball player (generic term)
+big marigold|1
+(noun)|African marigold|Aztec marigold|Tagetes erecta|marigold (generic term)
+big money|1
+(noun)|pile|bundle|big bucks|megabucks|money (generic term)
+big sagebrush|1
+(noun)|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush (generic term)|sage brush (generic term)
+big science|1
+(noun)|scientific research (generic term)|research project (generic term)
+big shagbark|1
+(noun)|big shellbark|big shellbark hickory|king nut|king nut hickory|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+big shellbark|1
+(noun)|big shellbark hickory|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+big shellbark hickory|1
+(noun)|big shellbark|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+big shot|1
+(noun)|big gun|big wheel|big cheese|big deal|big enchilada|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+big sioux river|1
+(noun)|Big Sioux River|river (generic term)
+big sister|1
+(noun)|sister (generic term)|sis (generic term)
+big spender|1
+(noun)|high roller|spendthrift (generic term)|spend-all (generic term)|spender (generic term)|scattergood (generic term)
+big stick|1
+(noun)|display (generic term)|show (generic term)
+big sur|1
+(noun)|Big Sur|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+big time|1
+(noun)|success (generic term)
+big toe|1
+(noun)|great toe|hallux|toe (generic term)
+big top|1
+(noun)|circus tent|round top|top|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+big tree|1
+(noun)|giant sequoia|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+big wheel|1
+(noun)|big shot|big gun|big cheese|big deal|big enchilada|big fish|head honcho|important person (generic term)|influential person (generic term)|personage (generic term)
+bigamist|1
+(noun)|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+bigamous|1
+(adj)|polygamous (similar term)
+bigamy|2
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+(noun)|statutory offense (generic term)|statutory offence (generic term)|regulatory offense (generic term)|regulatory offence (generic term)
+bigarade|1
+(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+bigeminal|1
+(adj)|multiple (similar term)
+bigeneric|1
+(adj)|crossbred (similar term)
+bigeye|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+bigeye scad|1
+(noun)|big-eyed scad|goggle-eye|Selar crumenophthalmus|scad (generic term)
+bigfoot|1
+(noun)|Bigfoot|Sasquatch|legendary creature (generic term)
+bigger|1
+(adj)|larger|large (similar term)|big (similar term)
+biggin|1
+(noun)|cap (generic term)
+biggish|1
+(adj)|largish|large (similar term)|big (similar term)
+bighead|1
+(noun)|animal disease (generic term)
+bigheaded|1
+(adj)|persnickety|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud (similar term)
+bighearted|1
+(adj)|big|bounteous|bountiful|freehanded|handsome|giving|liberal|openhanded|generous (similar term)
+bigheartedness|1
+(noun)|generosity (generic term)|generousness (generic term)
+bighorn|2
+(noun)|Bighorn|Bighorn River|river (generic term)
+(noun)|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+bighorn river|1
+(noun)|Bighorn|Bighorn River|river (generic term)
+bighorn sheep|1
+(noun)|bighorn|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+bight|5
+(noun)|loop (generic term)
+(noun)|bend (generic term)|crook (generic term)|twist (generic term)|turn (generic term)
+(noun)|bay (generic term)|embayment (generic term)
+(noun)|center (generic term)|centre (generic term)|midpoint (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+bight of benin|1
+(noun)|Bight of Benin|bight (generic term)
+bigmouthed|1
+(adj)|blabbermouthed|blabby|talkative|indiscreet (similar term)
+bigness|1
+(noun)|largeness|size (generic term)|littleness (antonym)|smallness (antonym)
+bignonia|1
+(noun)|Bignonia|genus Bignonia|asterid dicot genus (generic term)
+bignonia capreolata|1
+(noun)|cross vine|trumpet flower|quartervine|quarter-vine|Bignonia capreolata|vine (generic term)
+bignoniaceae|1
+(noun)|Bignoniaceae|family Bignoniaceae|asterid dicot family (generic term)
+bignoniaceous|1
+(adj)|asterid dicot family (related term)
+bignoniad|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+bigos|1
+(noun)|stew (generic term)
+bigot|1
+(noun)|partisan (generic term)|zealot (generic term)|drumbeater (generic term)
+bigoted|1
+(adj)|intolerant (similar term)
+bigotry|1
+(noun)|dogmatism|intolerance (generic term)
+bigram|1
+(noun)|written word (generic term)
+bigtooth aspen|1
+(noun)|Canadian aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+bigtoothed aspen|1
+(noun)|Canadian aspen|bigtooth aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+bigwig|1
+(noun)|kingpin|top banana|important person (generic term)|influential person (generic term)|personage (generic term)
+bihar|1
+(noun)|Bihar|state (generic term)|province (generic term)
+bihari|1
+(noun)|Bihari|Sanskrit (generic term)|Sanskritic language (generic term)
+bijou|1
+(noun)|jewelry (generic term)|jewellery (generic term)
+bijugate leaf|1
+(noun)|bijugous leaf|twice-pinnate|pinnate leaf (generic term)
+bijugous leaf|1
+(noun)|bijugate leaf|twice-pinnate|pinnate leaf (generic term)
+bike|3
+(noun)|motorcycle|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|bicycle|wheel|cycle|wheeled vehicle (generic term)
+(verb)|bicycle|cycle|pedal|wheel|ride (generic term)
+bikers|1
+(noun)|rockers|youth subculture (generic term)
+bikini|2
+(noun)|Bikini|atoll (generic term)
+(noun)|two-piece|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+bikini pants|1
+(noun)|underpants (generic term)
+bilabial|1
+(noun)|labial consonant (generic term)|labial (generic term)
+bilabiate|1
+(adj)|two-lipped|lipped (similar term)
+bilateral|3
+(adj)|isobilateral|bilaterally symmetrical|bilaterally symmetric|symmetrical (similar term)|symmetric (similar term)
+(adj)|reciprocal (similar term)|mutual (similar term)
+(adj)|two-sided|multilateral (similar term)|many-sided (similar term)
+bilateral contract|1
+(noun)|contract (generic term)
+bilateral descent|1
+(noun)|descent (generic term)|line of descent (generic term)|lineage (generic term)|filiation (generic term)
+bilateral symmetry|1
+(noun)|bilaterality|bilateralism|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)
+bilateralism|1
+(noun)|bilaterality|bilateral symmetry|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)
+bilaterality|1
+(noun)|bilateralism|bilateral symmetry|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)
+bilaterally|1
+(adv)|unilaterally (antonym)
+bilaterally symmetric|1
+(adj)|bilateral|isobilateral|bilaterally symmetrical|symmetrical (similar term)|symmetric (similar term)
+bilaterally symmetrical|2
+(adj)|zygomorphic|zygomorphous|actinomorphic (antonym)
+(adj)|bilateral|isobilateral|bilaterally symmetric|symmetrical (similar term)|symmetric (similar term)
+bilberry|3
+(noun)|whortleberry|whinberry|blaeberry|Viccinium myrtillus|blueberry (generic term)|blueberry bush (generic term)
+(noun)|thin-leaved bilberry|mountain blue berry|Viccinium membranaceum|blueberry (generic term)|blueberry bush (generic term)
+(noun)|whortleberry|European blueberry|berry (generic term)
+bilby|1
+(noun)|rabbit-eared bandicoot|rabbit bandicoot|Macrotis lagotis|bandicoot (generic term)
+bile|1
+(noun)|gall|digestive juice (generic term)|digestive fluid (generic term)
+bile acid|1
+(noun)|steroid (generic term)
+bile duct|1
+(noun)|common bile duct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+bile salt|1
+(noun)|salt (generic term)
+bilestone|1
+(noun)|gallstone|calculus (generic term)|concretion (generic term)
+bilge|4
+(noun)|bilge water|water (generic term)|H2O (generic term)
+(noun)|bottom (generic term)|underside (generic term)|undersurface (generic term)
+(verb)|damage (generic term)
+(verb)|take in water|leak (generic term)
+bilge keel|1
+(noun)|keel (generic term)
+bilge pump|1
+(noun)|pump (generic term)
+bilge water|1
+(noun)|bilge|water (generic term)|H2O (generic term)
+bilge well|1
+(noun)|well (generic term)
+bilges|1
+(noun)|bilge (generic term)
+bilgewater|1
+(noun)|baloney|boloney|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+bilgy|1
+(adj)|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+bilharzia|1
+(noun)|schistosomiasis|bilharziasis|infestation (generic term)|infection (generic term)
+bilharziasis|1
+(noun)|schistosomiasis|bilharzia|infestation (generic term)|infection (generic term)
+biliary|2
+(adj)|bilious|digestive juice|digestive fluid (related term)
+(adj)|bladder|vesica (related term)
+biliary ductule|1
+(noun)|ductule (generic term)|ductulus (generic term)
+bilimbi|1
+(noun)|Averrhoa bilimbi|fruit tree (generic term)
+bilinear|1
+(adj)|linear (similar term)|additive (similar term)
+bilingual|2
+(adj)|multilingual (similar term)
+(noun)|bilingualist|linguist (generic term)|polyglot (generic term)
+bilingual dictionary|1
+(noun)|dictionary (generic term)|lexicon (generic term)
+bilingualism|1
+(noun)|ability (generic term)|power (generic term)
+bilingualist|1
+(noun)|bilingual|linguist (generic term)|polyglot (generic term)
+bilious|3
+(adj)|biliary|digestive juice|digestive fluid (related term)
+(adj)|liverish|livery|ill (similar term)|sick (similar term)
+(adj)|atrabilious|dyspeptic|liverish|ill-natured (similar term)
+biliousness|2
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|temper|irritability|peevishness|pettishness|snappishness|surliness|ill nature (generic term)
+bilirubin|1
+(noun)|hematoidin|haematoidin|animal pigment (generic term)
+bilk|4
+(verb)|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|thwart|queer|spoil|scotch|foil|cross|frustrate|baffle|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|deprive (generic term)
+(verb)|elude|evade|escape (generic term)|get away (generic term)|break loose (generic term)
+bill|13
+(noun)|measure|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|account|invoice|statement (generic term)|financial statement (generic term)
+(noun)|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+(noun)|program (generic term)|programme (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|circular|handbill|broadside|broadsheet|flier|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|beak|neb|nib|pecker|mouth (generic term)
+(noun)|poster|posting|placard|notice|card|sign (generic term)
+(noun)|billhook|saw (generic term)
+(noun)|peak|eyeshade|visor|vizor|brim (generic term)
+(verb)|charge|account (generic term)|calculate (generic term)
+(verb)|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|placard|post (generic term)
+bill-me order|1
+(noun)|credit order|order (generic term)|purchase order (generic term)
+bill clinton|1
+(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+bill gates|1
+(noun)|Gates|Bill Gates|William Henry Gates|computer scientist (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+bill haley|1
+(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star (generic term)
+bill mauldin|1
+(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist (generic term)
+bill of attainder|1
+(noun)|bill (generic term)|measure (generic term)
+bill of entry|1
+(noun)|bill (generic term)
+bill of exchange|1
+(noun)|draft|order of payment|negotiable instrument (generic term)
+bill of fare|1
+(noun)|menu|card|carte du jour|carte|bill (generic term)
+bill of goods|2
+(noun)|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|bill (generic term)
+bill of health|1
+(noun)|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+bill of indictment|1
+(noun)|indictment|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+bill of lading|1
+(noun)|waybill|receipt (generic term)
+bill of particulars|1
+(noun)|bill of Particulars|allegation (generic term)|allegement (generic term)
+bill of review|1
+(noun)|review (generic term)
+bill of rights|1
+(noun)|Bill of Rights|statement (generic term)
+bill of sale|1
+(noun)|deed (generic term)|deed of conveyance (generic term)|title (generic term)
+bill poster|1
+(noun)|poster|bill sticker|worker (generic term)
+bill russell|1
+(noun)|Russell|Bill Russell|William Felton Russell|center (generic term)
+bill sticker|1
+(noun)|bill poster|poster|worker (generic term)
+billabong|2
+(noun)|pool (generic term)|puddle (generic term)
+(noun)|branch (generic term)
+billboard|1
+(noun)|hoarding|signboard (generic term)|sign (generic term)
+billed|1
+(adj)|beaked (similar term)
+billet|4
+(noun)|note|short letter|line|personal letter (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|position|post|berth|office|spot|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(verb)|quarter|canton|lodge (generic term)|accommodate (generic term)
+billet doux|1
+(noun)|love letter|personal letter (generic term)
+billfish|4
+(noun)|gar|garfish|garpike|Lepisosteus osseus|ganoid (generic term)|ganoid fish (generic term)
+(noun)|scombroid (generic term)|scombroid fish (generic term)
+(noun)|saury|Scomberesox saurus|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+(noun)|needlefish|gar|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+billfold|1
+(noun)|wallet|notecase|pocketbook|case (generic term)
+billhook|1
+(noun)|bill|saw (generic term)
+billiard|1
+(adj)|table game (related term)
+billiard ball|1
+(noun)|ball (generic term)
+billiard hall|1
+(noun)|billiard room|billiard saloon|billiard parlor|billiard parlour|room (generic term)
+billiard marker|1
+(noun)|device (generic term)
+billiard parlor|1
+(noun)|billiard room|billiard saloon|billiard parlour|billiard hall|room (generic term)
+billiard parlour|1
+(noun)|billiard room|billiard saloon|billiard parlor|billiard hall|room (generic term)
+billiard player|1
+(noun)|player (generic term)|participant (generic term)
+billiard room|1
+(noun)|billiard saloon|billiard parlor|billiard parlour|billiard hall|room (generic term)
+billiard saloon|1
+(noun)|billiard room|billiard parlor|billiard parlour|billiard hall|room (generic term)
+billiard table|1
+(noun)|pool table|snooker table|table (generic term)|game equipment (generic term)
+billiards|1
+(noun)|table game (generic term)
+billie jean king|1
+(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player (generic term)
+billie jean moffitt king|1
+(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player (generic term)
+billie the kid|1
+(noun)|Bonney|William H. Bonney|Billie the Kid|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+billing|1
+(noun)|charge|request (generic term)|asking (generic term)
+billings|1
+(noun)|Billings|city (generic term)|metropolis (generic term)|urban center (generic term)
+billingsgate|1
+(noun)|scurrility|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+billion|4
+(adj)|cardinal (similar term)
+(noun)|one million million|1000000000000|large integer (generic term)
+(noun)|million|trillion|zillion|jillion|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|one thousand million|1000000000|large integer (generic term)
+billion-dollar grass|1
+(noun)|Japanese millet|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet (generic term)
+billionaire|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+billionth|3
+(adj)|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-billionth|common fraction (generic term)|simple fraction (generic term)
+billow|5
+(noun)|surge|wave (generic term)|moving ridge (generic term)
+(verb)|wallow|soar (generic term)|soar up (generic term)|soar upwards (generic term)|surge (generic term)|zoom (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|surge|heave|inflate (generic term)|blow up (generic term)
+(verb)|balloon|inflate|expand (generic term)
+billowing|2
+(adj)|rolling|tumbling|moving (similar term)
+(adj)|billowy|surging|stormy (similar term)
+billowy|1
+(adj)|billowing|surging|stormy (similar term)
+billy|2
+(noun)|truncheon|nightstick|baton|billystick|billy club|club (generic term)
+(noun)|billy goat|he-goat|goat (generic term)|caprine animal (generic term)
+billy-ho|1
+(noun)|billyo|billyoh|all get out|large indefinite quantity (generic term)|large indefinite amount (generic term)
+billy buttons|1
+(noun)|flower (generic term)
+billy club|1
+(noun)|truncheon|nightstick|baton|billy|billystick|club (generic term)
+billy goat|1
+(noun)|billy|he-goat|goat (generic term)|caprine animal (generic term)
+billy graham|1
+(noun)|Graham|Billy Graham|William Franklin Graham|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+billy mitchell|1
+(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+billy sunday|1
+(noun)|Sunday|Billy Sunday|William Ashley Sunday|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+billy wilder|1
+(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+billyo|1
+(noun)|billyoh|billy-ho|all get out|large indefinite quantity (generic term)|large indefinite amount (generic term)
+billyoh|1
+(noun)|billyo|billy-ho|all get out|large indefinite quantity (generic term)|large indefinite amount (generic term)
+billystick|1
+(noun)|truncheon|nightstick|baton|billy|billy club|club (generic term)
+bilobate|1
+(adj)|bilobated|bilobed|compound (similar term)
+bilobated|1
+(adj)|bilobate|bilobed|compound (similar term)
+bilobed|1
+(adj)|bilobate|bilobated|compound (similar term)
+bilocation|1
+(noun)|location (generic term)
+bilocular|1
+(adj)|biloculate|divided (similar term)
+bilocular capsule|1
+(noun)|capsule (generic term)
+biloculate|1
+(adj)|bilocular|divided (similar term)
+biloxi|3
+(noun)|Biloxi|Sioux (generic term)|Siouan (generic term)
+(noun)|Biloxi|town (generic term)
+(noun)|Biloxi|Siouan (generic term)|Siouan language (generic term)
+bilsted|1
+(noun)|sweet gum|sweet gum tree|red gum|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+biltong|1
+(noun)|jerky (generic term)|jerked meat (generic term)|jerk (generic term)
+bimanual|1
+(adj)|two-handed|handed (similar term)
+bimbo|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+bimester|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+bimestrial|2
+(adj)|bimonthly|time period|period of time|period (related term)|time unit|unit of time (related term)
+(adj)|long (similar term)
+bimetal|2
+(adj)|bimetallic|metallic (similar term)|metal (similar term)
+(noun)|material (generic term)|stuff (generic term)
+bimetallic|2
+(adj)|bimetallistic|standard|monetary standard (related term)
+(adj)|bimetal|metallic (similar term)|metal (similar term)
+bimetallic strip|1
+(noun)|electrical device (generic term)
+bimetallism|1
+(noun)|standard (generic term)|monetary standard (generic term)
+bimetallist|1
+(noun)|monetarist (generic term)
+bimetallistic|1
+(adj)|bimetallic|standard|monetary standard (related term)
+bimillenary|2
+(noun)|bimillennium|anniversary (generic term)|day of remembrance (generic term)
+(noun)|bimillennium|time period (generic term)|period of time (generic term)|period (generic term)
+bimillenial|1
+(adj)|time period|period of time|period (related term)
+bimillennium|2
+(noun)|bimillenary|anniversary (generic term)|day of remembrance (generic term)
+(noun)|bimillenary|time period (generic term)|period of time (generic term)|period (generic term)
+bimli|1
+(noun)|kenaf|kanaf|deccan hemp|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+bimli hemp|1
+(noun)|kenaf|kanaf|deccan hemp|bimli|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+bimodal|1
+(adj)|unimodal (antonym)
+bimolecular|1
+(adj)|unit|building block (related term)
+bimonthly|4
+(adj)|semimonthly|time unit|unit of time (related term)
+(adj)|bimestrial|time period|period of time|period (related term)|time unit|unit of time (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|semimonthly
+bimotored|1
+(adj)|motorized (similar term)|motorised (similar term)|motored (similar term)
+bin|4
+(noun)|container (generic term)
+(noun)|binful|containerful (generic term)
+(noun)|bank identification number|BIN|ABA transit number|number (generic term)|identification number (generic term)
+(verb)|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+bin laden|1
+(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist (generic term)
+bin liner|1
+(noun)|plastic bag (generic term)
+binary|3
+(adj)|positional notation|positional representation system (related term)
+(adj)|multiple (similar term)
+(noun)|binary star|double star|star (generic term)
+binary arithmetic operation|1
+(noun)|boolean operation|binary operation|operation (generic term)
+binary code|1
+(noun)|code (generic term)|computer code (generic term)
+binary compound|1
+(noun)|compound (generic term)|chemical compound (generic term)
+binary digit|1
+(noun)|digit (generic term)|figure (generic term)
+binary file|1
+(noun)|computer file (generic term)
+binary notation|1
+(noun)|mathematical notation (generic term)
+binary number system|1
+(noun)|binary numeration system|pure binary numeration system|binary system|positional notation (generic term)|positional representation system (generic term)
+binary numeration system|1
+(noun)|pure binary numeration system|binary number system|binary system|positional notation (generic term)|positional representation system (generic term)
+binary operation|1
+(noun)|boolean operation|binary arithmetic operation|operation (generic term)
+binary star|1
+(noun)|binary|double star|star (generic term)
+binary system|1
+(noun)|binary numeration system|pure binary numeration system|binary number system|positional notation (generic term)|positional representation system (generic term)
+binate|1
+(adj)|compound (similar term)
+binaural|1
+(adj)|biaural|two-eared (similar term)|stereophonic (similar term)|stereo (similar term)|two-channel (similar term)|monaural (antonym)
+binaurally|1
+(adv)|to both ears|in both ears|monaurally (antonym)
+bind|11
+(noun)|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(verb)|adhere|hold fast|bond|stick|stick to|attach (generic term)
+(verb)|tie|attach|bond|relate (generic term)
+(verb)|attach (generic term)|unbind (antonym)
+(verb)|bandage|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|tie down|tie up|truss|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|oblige|hold|obligate|relate (generic term)
+(verb)|adhere (generic term)|hold fast (generic term)|bond (generic term)|bind (generic term)|stick (generic term)|stick to (generic term)
+(verb)|cover (generic term)
+(verb)|tie|fasten (generic term)|fix (generic term)|secure (generic term)|tie down (related term)|tie up (related term)|untie (antonym)
+(verb)|constipate|indispose (generic term)
+bind off|1
+(verb)|tie up|tie (generic term)|bind (generic term)
+bind over|1
+(verb)|confine (generic term)|detain (generic term)
+bindable|1
+(adj)|bondable|attachable (similar term)
+binder|4
+(noun)|reaper binder|harvester (generic term)|reaper (generic term)
+(noun)|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+(noun)|ring-binder|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|ligature|ligament (generic term)
+binder's board|1
+(noun)|binder board|cardboard (generic term)|composition board (generic term)
+binder board|1
+(noun)|binder's board|cardboard (generic term)|composition board (generic term)
+bindery|1
+(noun)|workshop (generic term)|shop (generic term)
+binding|7
+(adj)|valid (similar term)
+(adj)|constricting|tight (similar term)
+(adj)|constipating|costive (similar term)
+(noun)|attraction (generic term)|attractiveness (generic term)
+(noun)|sewing (generic term)|stitchery (generic term)
+(noun)|dressing|bandaging|medical care (generic term)|medical aid (generic term)
+(noun)|book binding|cover|back|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+binding energy|1
+(noun)|separation energy|energy (generic term)
+bindweed|1
+(noun)|vine (generic term)
+bine|1
+(noun)|common hop|common hops|European hop|Humulus lupulus|hop (generic term)|hops (generic term)
+binet|1
+(noun)|Binet|Alfred Binet|psychologist (generic term)
+binet-simon scale|1
+(noun)|Binet-Simon Scale|intelligence test (generic term)|IQ test (generic term)
+binful|1
+(noun)|bin|containerful (generic term)
+bing cherry|1
+(noun)|sweet cherry (generic term)|black cherry (generic term)
+bing crosby|1
+(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+binge|3
+(noun)|orgy|splurge|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+(noun)|bust|tear|bout|revel (generic term)|revelry (generic term)
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|pig out|satiate|scarf out|eat (generic term)
+binge-eating syndrome|1
+(noun)|bulimia|eating disorder (generic term)
+binge-purge syndrome|1
+(noun)|bulimarexia|binge-vomit syndrome|bulima nervosa|eating disorder (generic term)
+binge-vomit syndrome|1
+(noun)|bulimarexia|binge-purge syndrome|bulima nervosa|eating disorder (generic term)
+binger|1
+(noun)|crack addict|drug addict (generic term)|junkie (generic term)|junky (generic term)
+binghamton|1
+(noun)|Binghamton|city (generic term)|metropolis (generic term)|urban center (generic term)
+bingle|1
+(noun)|single|base hit (generic term)|safety (generic term)
+bingo|1
+(noun)|lotto|beano|keno|board game (generic term)
+binnacle|1
+(noun)|housing (generic term)
+binocular|1
+(adj)|sense organ|sensory receptor|receptor (related term)
+binocular microscope|1
+(noun)|light microscope (generic term)
+binocular vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+binoculars|1
+(noun)|field glasses|opera glasses|optical instrument (generic term)
+binomial|3
+(adj)|quantity (related term)
+(adj)|language unit|linguistic unit (related term)
+(noun)|quantity (generic term)
+binomial distribution|1
+(noun)|Bernoulli distribution|distribution (generic term)|statistical distribution (generic term)
+binomial theorem|1
+(noun)|theorem (generic term)
+binturong|1
+(noun)|bearcat|Arctictis bintourong|civet (generic term)|civet cat (generic term)
+binuclear|1
+(adj)|binucleate|binucleated|trinucleate (antonym)|mononuclear (antonym)
+binucleate|1
+(adj)|binuclear|binucleated|trinucleate (antonym)|mononuclear (antonym)
+binucleated|1
+(adj)|binucleate|binuclear|trinucleate (antonym)|mononuclear (antonym)
+bio-assay|1
+(noun)|bioassay|assay (generic term)
+bio lab|1
+(noun)|biology lab|biology laboratory|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+bioarm|1
+(noun)|bioweapon|biological weapon|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)
+bioassay|2
+(noun)|bio-assay|assay (generic term)
+(verb)|assay (generic term)
+bioattack|1
+(noun)|biological warfare|BW|biological attack|biologic attack|war (generic term)|warfare (generic term)
+biocatalyst|1
+(noun)|catalyst (generic term)|accelerator (generic term)
+biocatalytic|1
+(adj)|catalyst|accelerator (related term)
+biochemical|1
+(adj)|organic chemistry (related term)
+biochemical mechanism|1
+(noun)|mechanism (generic term)|chemical mechanism (generic term)
+biochemist|1
+(noun)|chemist (generic term)
+biochemistry|1
+(noun)|organic chemistry (generic term)
+biochip|1
+(noun)|chip (generic term)|microchip (generic term)|micro chip (generic term)|silicon chip (generic term)
+bioclimatic|1
+(adj)|climatology (related term)
+bioclimatology|1
+(noun)|climatology (generic term)
+biodefence|1
+(noun)|biological defense|biological defence|biodefense|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biodefense|1
+(noun)|biological defense|biological defence|biodefence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biodegradable|1
+(adj)|perishable (similar term)
+biodegradable pollution|1
+(noun)|pollution (generic term)|nonbiodegradable pollution (antonym)
+biodegrade|1
+(verb)|decompose (generic term)|rot (generic term)|molder (generic term)|moulder (generic term)
+biodiversity|1
+(noun)|diverseness (generic term)|diversity (generic term)|multifariousness (generic term)|variety (generic term)
+bioelectricity|1
+(noun)|organic phenomenon (generic term)
+bioengineering|1
+(noun)|biotechnology|ergonomics|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+bioethics|1
+(noun)|ethics (generic term)|moral philosophy (generic term)
+biofeedback|1
+(noun)|training program (generic term)
+bioflavinoid|1
+(noun)|vitamin P|citrin|water-soluble vitamin (generic term)
+biogenesis|2
+(noun)|biosynthesis|synthesis (generic term)
+(noun)|biogeny|generation (generic term)|multiplication (generic term)|propagation (generic term)
+biogenetic|1
+(adj)|generation|multiplication|propagation (related term)
+biogenic|2
+(adj)|life (related term)
+(adj)|essential (similar term)
+biogenous|1
+(adj)|generation|multiplication|propagation (related term)
+biogeny|1
+(noun)|biogenesis|generation (generic term)|multiplication (generic term)|propagation (generic term)
+biogeographic|1
+(adj)|biogeographical|biology|biological science (related term)
+biogeographical|1
+(adj)|biogeographic|biology|biological science (related term)
+biogeographical region|1
+(noun)|region (generic term)
+biogeography|1
+(noun)|biology (generic term)|biological science (generic term)
+biographer|1
+(noun)|writer (generic term)|author (generic term)
+biographic|1
+(adj)|biographical|history|account|chronicle|story (related term)
+biographical|1
+(adj)|biographic|history|account|chronicle|story (related term)
+biography|1
+(noun)|life|life story|life history|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+biohazard|2
+(noun)|health hazard (generic term)
+(noun)|biological agent|agent (generic term)
+biohazard suit|1
+(noun)|protective garment (generic term)
+bioko|1
+(noun)|Bioko|island (generic term)
+biologic|1
+(adj)|biological|life (related term)
+biologic attack|1
+(noun)|biological warfare|BW|biological attack|bioattack|war (generic term)|warfare (generic term)
+biological|2
+(adj)|biologic|life (related term)
+(adj)|begotten (similar term)|natural (similar term)|adoptive (antonym)
+biological agent|1
+(noun)|biohazard|agent (generic term)
+biological attack|1
+(noun)|biological warfare|BW|biologic attack|bioattack|war (generic term)|warfare (generic term)
+biological clock|1
+(noun)|mechanism (generic term)
+biological defence|1
+(noun)|biological defense|biodefense|biodefence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biological defense|1
+(noun)|biological defence|biodefense|biodefence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biological group|1
+(noun)|group (generic term)|grouping (generic term)
+biological process|1
+(noun)|organic process|process (generic term)|physical process (generic term)
+biological research|1
+(noun)|scientific research (generic term)|research project (generic term)
+biological science|1
+(noun)|biology|life science (generic term)|bioscience (generic term)
+biological terrorism|1
+(noun)|bioterrorism|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+biological time|1
+(noun)|time (generic term)
+biological warfare|1
+(noun)|BW|biological attack|biologic attack|bioattack|war (generic term)|warfare (generic term)
+biological warfare defence|1
+(noun)|biological warfare defense|BW defense|BW defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biological warfare defense|1
+(noun)|biological warfare defence|BW defense|BW defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+biological weapon|1
+(noun)|bioweapon|bioarm|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)
+biologism|1
+(noun)|practice (generic term)|pattern (generic term)
+biologist|1
+(noun)|life scientist|scientist (generic term)|man of science (generic term)
+biologistic|1
+(adj)|practice|pattern (related term)
+biology|3
+(noun)|biological science|life science (generic term)|bioscience (generic term)
+(noun)|life (generic term)
+(noun)|biota|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+biology class|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+biology department|1
+(noun)|department of biology|academic department (generic term)
+biology lab|1
+(noun)|biology laboratory|bio lab|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+biology laboratory|1
+(noun)|biology lab|bio lab|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+bioluminescence|1
+(noun)|luminescence (generic term)
+bioluminescent|1
+(adj)|light (similar term)
+biomass|2
+(noun)|fuel (generic term)
+(noun)|mass (generic term)
+biome|1
+(noun)|community (generic term)|biotic community (generic term)
+biomedical|1
+(adj)|medicine|medical specialty (related term)
+biomedical cloning|1
+(noun)|therapeutic cloning|somatic cell nuclear transplantation (generic term)|somatic cell nuclear transfer (generic term)|SCNT (generic term)|nuclear transplantation (generic term)|cloning (generic term)
+biomedical science|1
+(noun)|life science (generic term)|bioscience (generic term)
+biomedicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+biometric authentication|1
+(noun)|biometric identification|identity verification|identification (generic term)
+biometric identification|1
+(noun)|biometric authentication|identity verification|identification (generic term)
+biometrics|1
+(noun)|biometry|biostatistics|life science (generic term)|bioscience (generic term)|statistics (generic term)
+biometry|1
+(noun)|biometrics|biostatistics|life science (generic term)|bioscience (generic term)|statistics (generic term)
+bionic|2
+(adj)|engineering|engineering science|applied science|technology (related term)
+(adj)|artificial (similar term)|unreal (similar term)
+bionic man|1
+(noun)|cyborg|bionic woman|machine (generic term)
+bionic woman|1
+(noun)|cyborg|bionic man|machine (generic term)
+bionics|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+bionomic|1
+(adj)|ecological|ecologic|bionomical|biology|biological science (related term)
+bionomical|1
+(adj)|ecological|ecologic|bionomic|biology|biological science (related term)
+bionomics|1
+(noun)|ecology|environmental science|biology (generic term)|biological science (generic term)
+biont|1
+(noun)|living thing (generic term)|animate thing (generic term)
+biophysicist|1
+(noun)|physicist (generic term)
+biophysics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+biopiracy|1
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+biopsy|1
+(noun)|diagnostic test (generic term)|diagnostic assay (generic term)
+bioremediation|2
+(noun)|biotechnology (generic term)
+(noun)|treatment (generic term)|handling (generic term)
+biosafety|1
+(noun)|safety (generic term)
+biosafety level|1
+(noun)|grade (generic term)|level (generic term)|tier (generic term)
+biosafety level 1|1
+(noun)|biosafety level (generic term)
+biosafety level 2|1
+(noun)|biosafety level (generic term)
+biosafety level 3|1
+(noun)|biosafety level (generic term)
+biosafety level 4|1
+(noun)|biosafety level (generic term)
+bioscience|1
+(noun)|life science|natural science (generic term)
+bioscope|2
+(noun)|cinema (generic term)|movie theater (generic term)|movie theatre (generic term)|movie house (generic term)|picture palace (generic term)
+(noun)|movie projector (generic term)|cine projector (generic term)|film projector (generic term)
+biosphere|1
+(noun)|region (generic term)|part (generic term)
+biostatistics|1
+(noun)|biometrics|biometry|life science (generic term)|bioscience (generic term)|statistics (generic term)
+biosynthesis|1
+(noun)|biogenesis|synthesis (generic term)
+biosynthetic|1
+(adj)|synthesis (related term)
+biosystematic|1
+(adj)|systematics (related term)
+biosystematics|1
+(noun)|biosystematy|systematics (generic term)
+biosystematy|1
+(noun)|biosystematics|systematics (generic term)
+biota|1
+(noun)|biology|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+biotechnology|2
+(noun)|molecular biology (generic term)
+(noun)|bioengineering|ergonomics|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+bioterrorism|1
+(noun)|biological terrorism|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+biotic|1
+(adj)|organic phenomenon (related term)
+biotic community|1
+(noun)|community|group (generic term)|grouping (generic term)
+biotin|1
+(noun)|vitamin H|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+biotite|1
+(noun)|mica (generic term)|isinglass (generic term)
+biotitic|1
+(adj)|mica|isinglass (related term)
+biotype|1
+(noun)|genotype (generic term)
+biotypic|1
+(adj)|genotype (related term)
+biovular|1
+(adj)|fraternal|identical (antonym)
+bioweapon|1
+(noun)|biological weapon|bioarm|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)
+biparous|1
+(adj)|twinning|multiparous (similar term)
+bipartisan|1
+(adj)|bipartizan|two-party|two-way|nonpartisan (similar term)|nonpartizan (similar term)
+bipartite|2
+(adj)|compound (similar term)
+(adj)|two-part|two-way|multilateral (similar term)|many-sided (similar term)
+bipartizan|1
+(adj)|bipartisan|two-party|two-way|nonpartisan (similar term)|nonpartizan (similar term)
+biped|2
+(adj)|bipedal|two-footed|quadruped (antonym)|quadrupedal (antonym)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+bipedal|1
+(adj)|biped|two-footed|quadruped (antonym)|quadrupedal (antonym)
+bipedalism|1
+(noun)|bodily property (generic term)
+bipinnate|1
+(adj)|compound (similar term)
+bipinnate leaf|1
+(noun)|pinnate leaf (generic term)
+bipinnatifid|1
+(adj)|compound (similar term)
+biplane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+biplane flying fish|1
+(noun)|four-wing flying fish|flying fish (generic term)
+bipolar|2
+(adj)|affective disorder|major affective disorder|emotional disorder|emotional disturbance (related term)
+(adj)|Janus-faced (similar term)|unipolar (antonym)
+bipolar disorder|1
+(noun)|manic depression|manic depressive illness|manic-depressive psychosis|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+biprism|1
+(noun)|optical device (generic term)
+biquadrate|1
+(noun)|biquadratic|quartic|fourth power|number (generic term)
+biquadratic|4
+(adj)|number (related term)
+(noun)|biquadrate|quartic|fourth power|number (generic term)
+(noun)|biquadratic equation|equation (generic term)
+(noun)|biquadratic polynomial|quartic polynomial|polynomial (generic term)|multinomial (generic term)
+biquadratic equation|1
+(noun)|biquadratic|equation (generic term)
+biquadratic polynomial|1
+(noun)|biquadratic|quartic polynomial|polynomial (generic term)|multinomial (generic term)
+biracial|1
+(adj)|racial (similar term)
+biradial|1
+(adj)|symmetrical (similar term)|symmetric (similar term)
+biramous|1
+(adj)|bifurcate|branched|forked|fork-like|forficate|pronged|prongy|divided (similar term)
+birch|5
+(adj)|birchen|birken|woody (similar term)
+(noun)|wood (generic term)
+(noun)|birch tree|tree (generic term)
+(noun)|birch rod|switch (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+birch bark|1
+(noun)|birchbark canoe|birchbark|canoe (generic term)
+birch beer|1
+(noun)|soft drink (generic term)
+birch family|1
+(noun)|Betulaceae|family Betulaceae|hamamelid dicot family (generic term)
+birch leaf miner|1
+(noun)|Fenusa pusilla|sawfly (generic term)
+birch oil|1
+(noun)|methyl salicylate|sweet-birch oil|salicylate (generic term)
+birch rod|1
+(noun)|birch|switch (generic term)
+birch tree|1
+(noun)|birch|tree (generic term)
+birchbark|1
+(noun)|birchbark canoe|birch bark|canoe (generic term)
+birchbark canoe|1
+(noun)|birchbark|birch bark|canoe (generic term)
+birchen|1
+(adj)|birch|birken|woody (similar term)
+bird|6
+(noun)|vertebrate (generic term)|craniate (generic term)
+(noun)|fowl|meat (generic term)
+(noun)|dame|doll|wench|skirt|chick|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|razz|snort|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|shuttlecock|birdie|shuttle|badminton equipment (generic term)
+(verb)|birdwatch|observe (generic term)
+bird's-eye|1
+(adj)|panoramic|wide (similar term)|broad (similar term)
+bird's-eye bush|1
+(noun)|Ochna serrulata|shrub (generic term)|bush (generic term)
+bird's-eye maple|1
+(noun)|maple (generic term)
+bird's-foot fern|1
+(noun)|Pellaea mucronata|Pellaea ornithopus|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+bird's-foot violet|1
+(noun)|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet (generic term)
+bird's-nest fungus|1
+(noun)|fungus (generic term)
+bird's eye|1
+(noun)|germander speedwell|Veronica chamaedrys|veronica (generic term)|speedwell (generic term)
+bird's eye view|1
+(noun)|panoramic view|position (generic term)|view (generic term)|perspective (generic term)
+bird's foot|1
+(noun)|animal foot (generic term)|foot (generic term)
+bird's foot clover|1
+(noun)|bird's foot trefoil|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub (generic term)|suffrutex (generic term)
+bird's foot trefoil|2
+(noun)|Trigonella ornithopodioides|herb (generic term)|herbaceous plant (generic term)
+(noun)|bird's foot clover|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub (generic term)|suffrutex (generic term)
+bird's nest|1
+(noun)|bird nest|birdnest|nest (generic term)
+bird's nest fern|1
+(noun)|Asplenium nidus|fern (generic term)
+bird-footed dinosaur|1
+(noun)|theropod|theropod dinosaur|saurischian (generic term)|saurischian dinosaur (generic term)
+bird-like|1
+(adj)|birdlike|animal (similar term)
+bird-nest|1
+(verb)|birdnest|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+bird-on-the-wing|1
+(noun)|flowering wintergreen|gaywings|fringed polygala|Polygala paucifolia|milkwort (generic term)
+bird-scarer|1
+(noun)|scarecrow|straw man|strawman|scarer|effigy (generic term)|image (generic term)|simulacrum (generic term)
+bird cherry|1
+(noun)|bird cherry tree|wild cherry (generic term)|wild cherry tree (generic term)
+bird cherry tree|1
+(noun)|bird cherry|wild cherry (generic term)|wild cherry tree (generic term)
+bird dog|1
+(noun)|sporting dog (generic term)|gun dog (generic term)
+bird family|1
+(noun)|family (generic term)
+bird fancier|1
+(noun)|fancier (generic term)|enthusiast (generic term)
+bird feed|1
+(noun)|bird food|birdseed|feed (generic term)|provender (generic term)
+bird feeder|1
+(noun)|birdfeeder|feeder|device (generic term)
+bird food|1
+(noun)|bird feed|birdseed|feed (generic term)|provender (generic term)
+bird genus|1
+(noun)|genus (generic term)
+bird louse|1
+(noun)|biting louse|louse|insect (generic term)
+bird nest|1
+(noun)|bird's nest|birdnest|nest (generic term)
+bird of jove|1
+(noun)|eagle|bird of Jove|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+bird of juno|1
+(noun)|peafowl|bird of Juno|pheasant (generic term)
+bird of minerva|1
+(noun)|owl|bird of Minerva|bird of night|hooter|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+bird of night|1
+(noun)|owl|bird of Minerva|hooter|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+bird of paradise|3
+(noun)|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub (generic term)
+(noun)|Strelitzia reginae|herb (generic term)|herbaceous plant (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+bird of passage|2
+(noun)|wanderer|roamer|rover|traveler (generic term)|traveller (generic term)
+(noun)|bird (generic term)
+bird of prey|1
+(noun)|raptor|raptorial bird|bird (generic term)
+bird parker|1
+(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist (generic term)|saxist (generic term)
+bird pepper|1
+(noun)|Capsicum frutescens baccatum|Capsicum baccatum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+bird sanctuary|1
+(noun)|aviary|volary|building (generic term)|edifice (generic term)
+bird shot|1
+(noun)|buckshot|duck shot|shot (generic term)|pellet (generic term)
+bird vetch|1
+(noun)|tufted vetch|Calnada pea|Vicia cracca|vetch (generic term)
+bird watcher|2
+(noun)|ornithologist|zoologist (generic term)|animal scientist (generic term)
+(noun)|birder|amateur (generic term)
+birdbath|1
+(noun)|basin (generic term)
+birdbrain|1
+(noun)|addle-head|addlehead|loon|misfit (generic term)
+birdcage|1
+(noun)|cage (generic term)|coop (generic term)
+birdcage mask|1
+(noun)|catcher's mask (generic term)
+birdcall|2
+(noun)|call|birdsong|song|animal communication (generic term)
+(noun)|acoustic device (generic term)
+birder|1
+(noun)|bird watcher|amateur (generic term)
+birdfeeder|1
+(noun)|bird feeder|feeder|device (generic term)
+birdhouse|1
+(noun)|shelter (generic term)
+birdie|3
+(noun)|score (generic term)
+(noun)|shuttlecock|bird|shuttle|badminton equipment (generic term)
+(verb)|shoot (generic term)
+birdlike|1
+(adj)|bird-like|animal (similar term)
+birdlime|2
+(noun)|lime|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+(verb)|lime|spread (generic term)|scatter (generic term)|spread out (generic term)
+birdnest|2
+(noun)|bird's nest|bird nest|nest (generic term)
+(verb)|bird-nest|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+birdnesting|1
+(noun)|hunt (generic term)|hunting (generic term)
+birdseed|1
+(noun)|bird feed|bird food|feed (generic term)|provender (generic term)
+birdseed grass|1
+(noun)|canary grass|Phalaris canariensis|grass (generic term)
+birdsong|1
+(noun)|birdcall|call|song|animal communication (generic term)
+birdwatch|1
+(verb)|bird|observe (generic term)
+birefringence|1
+(noun)|double refraction|refraction (generic term)
+birefringent|1
+(adj)|refraction (related term)
+biretta|1
+(noun)|berretta|birretta|cap (generic term)
+biriani|1
+(noun)|biryani|dish (generic term)
+birken|1
+(adj)|birch|birchen|woody (similar term)
+birl|2
+(verb)|birle|rotate (generic term)|circumvolve (generic term)
+(verb)|whirl|spin|twirl|rotate (generic term)|circumvolve (generic term)
+birle|1
+(verb)|birl|rotate (generic term)|circumvolve (generic term)
+birling|1
+(noun)|logrolling|spin (generic term)|twirl (generic term)|twist (generic term)|twisting (generic term)|whirl (generic term)
+birmingham|2
+(noun)|Birmingham|Pittsburgh of the South|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Birmingham|Brummagem|city (generic term)|metropolis (generic term)|urban center (generic term)
+biro|1
+(noun)|ballpoint|ballpoint pen|ballpen|Biro|pen (generic term)
+birr|3
+(noun)|Ethiopian monetary unit (generic term)
+(noun)|whir|whirr|whirring|sound (generic term)
+(verb)|whizz|whiz|whirr|whir|purr|sound (generic term)|go (generic term)
+birretta|1
+(noun)|biretta|berretta|cap (generic term)
+birth|5
+(noun)|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)|death (antonym)
+(noun)|nativity|nascency|nascence|change (generic term)|alteration (generic term)|modification (generic term)|death (antonym)
+(noun)|parturition|giving birth|birthing|organic process (generic term)|biological process (generic term)
+(noun)|parentage|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(verb)|give birth|deliver|bear|have|produce (generic term)|bring forth (generic term)
+birth-control campaigner|1
+(noun)|birth-control reformer|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+birth-control reformer|1
+(noun)|birth-control campaigner|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+birth canal|1
+(noun)|passage (generic term)|passageway (generic term)
+birth certificate|1
+(noun)|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+birth control|1
+(noun)|birth prevention|family planning|planning (generic term)
+birth control device|1
+(noun)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|device (generic term)
+birth control pill|1
+(noun)|pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+birth defect|1
+(noun)|congenital anomaly|congenital defect|congenital disorder|congenital abnormality|defect (generic term)|anomaly (generic term)|anomalousness (generic term)
+birth pangs|1
+(noun)|labor pains|labour pains|pang (generic term)
+birth prevention|1
+(noun)|birth control|family planning|planning (generic term)
+birth rate|1
+(noun)|birthrate|fertility|fertility rate|natality|rate (generic term)
+birth trauma|2
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|trauma (generic term)|psychic trauma (generic term)
+birthday|2
+(noun)|anniversary (generic term)|day of remembrance (generic term)
+(noun)|natal day|date (generic term)|day of the month (generic term)
+birthday cake|1
+(noun)|cake (generic term)
+birthday card|1
+(noun)|greeting card (generic term)
+birthday gift|1
+(noun)|birthday present|present (generic term)
+birthday party|1
+(noun)|party (generic term)
+birthday present|1
+(noun)|birthday gift|present (generic term)
+birthday suit|1
+(noun)|raw|altogether|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+birthing|1
+(noun)|parturition|birth|giving birth|organic process (generic term)|biological process (generic term)
+birthmark|1
+(noun)|nevus|blemish (generic term)|defect (generic term)|mar (generic term)
+birthplace|2
+(noun)|place of birth|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|cradle|place of origin|provenance|provenience|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+birthrate|1
+(noun)|birth rate|fertility|fertility rate|natality|rate (generic term)
+birthright|2
+(noun)|patrimony|inheritance (generic term)|heritage (generic term)
+(noun)|inheritance (generic term)|heritage (generic term)
+birthroot|1
+(noun)|purple trillium|red trillium|Trillium erectum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+birthwort|1
+(noun)|Aristolochia clematitis|vine (generic term)
+birthwort family|1
+(noun)|Aristolochiaceae|family Aristolochiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+biryani|1
+(noun)|biriani|dish (generic term)
+bisayan|1
+(noun)|Visayan|Bisayan|Filipino (generic term)
+bisayas|1
+(noun)|Visayan Islands|Bisayas|island (generic term)
+biscayne bay|1
+(noun)|Biscayne Bay|bay (generic term)|embayment (generic term)
+biscayne national park|1
+(noun)|Biscayne National Park|national park (generic term)
+biscuit|2
+(noun)|quick bread (generic term)
+(noun)|cookie|cooky|cake (generic term)
+biscutalla laevigata|1
+(noun)|buckler mustard|Biscutalla laevigata|shrub (generic term)|bush (generic term)
+biscutella|1
+(noun)|Biscutella|genus Biscutella|dilleniid dicot genus (generic term)
+bise|1
+(noun)|bize|north wind (generic term)|northerly (generic term)|norther (generic term)|boreas (generic term)
+bisect|1
+(verb)|cut (generic term)
+bisection|1
+(noun)|division (generic term)
+bisectional|1
+(adj)|division (related term)
+biserial correlation|1
+(noun)|biserial correlation coefficient|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+biserial correlation coefficient|1
+(noun)|biserial correlation|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+biserrate|1
+(adj)|rough (similar term)
+bisexual|3
+(adj)|heterosexual (antonym)|homosexual (antonym)
+(adj)|epicene|androgynous (similar term)
+(noun)|bisexual person|sensualist (generic term)
+bisexual person|1
+(noun)|bisexual|sensualist (generic term)
+bisexuality|2
+(noun)|androgyny|hermaphroditism|sex (generic term)|gender (generic term)|sexuality (generic term)
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+bishkek|1
+(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital (generic term)
+bishop|3
+(noun)|priest (generic term)
+(noun)|mulled wine (generic term)
+(noun)|chessman (generic term)|chess piece (generic term)
+bishop's cap|1
+(noun)|miterwort|mitrewort|herb (generic term)|herbaceous plant (generic term)
+bishop's hat|1
+(noun)|barrenwort|Epimedium grandiflorum|herb (generic term)|herbaceous plant (generic term)
+bishop's pine|1
+(noun)|bishop pine|Pinus muricata|pinon (generic term)|pinyon (generic term)
+bishop's throne|1
+(noun)|cathedra|throne (generic term)
+bishop berkeley|1
+(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher (generic term)|bishop (generic term)
+bishop of rome|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+bishop pine|1
+(noun)|bishop's pine|Pinus muricata|pinon (generic term)|pinyon (generic term)
+bishop ulfila|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+bishop ulfilas|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+bishop wulfila|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+bishopric|1
+(noun)|diocese|episcopate|jurisdiction (generic term)
+bishopry|1
+(noun)|episcopate|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+biskek|1
+(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital (generic term)
+bismarck|2
+(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Bismarck|capital of North Dakota|state capital (generic term)
+bismarck archipelago|1
+(noun)|Bismarck Archipelago|archipelago (generic term)
+bismarck sea|2
+(noun)|Bismarck Sea|sea (generic term)
+(noun)|Bismarck Sea|battle of the Bismarck Sea|naval battle (generic term)
+bismarckian|1
+(adj)|Bismarckian|statesman|solon|national leader (related term)
+bismark|1
+(noun)|Berlin doughnut|jelly doughnut|raised doughnut (generic term)
+bismuth|1
+(noun)|Bi|atomic number 83|metallic element (generic term)|metal (generic term)
+bismuthal|1
+(adj)|metallic element|metal (related term)
+bismuthic|1
+(adj)|metallic element|metal (related term)
+bison|1
+(noun)|bovid (generic term)
+bison bison|1
+(noun)|American bison|American buffalo|buffalo|Bison bison|bison (generic term)
+bison bonasus|1
+(noun)|wisent|aurochs|Bison bonasus|bison (generic term)
+bisontine|1
+(adj)|bovid (related term)
+bisque|1
+(noun)|soup (generic term)
+bissau|1
+(noun)|Bissau|capital of Guinea-Bissau|national capital (generic term)
+bissextile day|1
+(noun)|leap day|February 29|day (generic term)
+bissextile year|1
+(noun)|leap year|intercalary year|366 days|year (generic term)|twelvemonth (generic term)|yr (generic term)
+bister|1
+(noun)|bistre|pigment (generic term)
+bistered|1
+(adj)|bistred|pigment (related term)
+bistre|1
+(noun)|bister|pigment (generic term)
+bistred|1
+(adj)|bistered|pigment (related term)
+bistro|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+bistroic|1
+(adj)|restaurant|eating house|eating place (related term)
+bisulcate|1
+(adj)|cloven|cleft|divided (similar term)
+bit|10
+(noun)|spot|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|chip|flake|fleck|scrap|fragment (generic term)
+(noun)|moment|minute|second|time (generic term)
+(noun)|piece|case (generic term)|instance (generic term)|example (generic term)
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(noun)|unit of measurement (generic term)|unit (generic term)
+(noun)|morsel|bite|taste (generic term)|mouthful (generic term)
+(noun)|snatch|fragment (generic term)
+(noun)|act|routine|number|turn|performance (generic term)|public presentation (generic term)
+(noun)|cutting implement (generic term)
+bit-by-bit|1
+(adj)|in small stages|piecemeal|step-by-step|stepwise|gradual (similar term)
+bit by bit|2
+(adv)|piecemeal|little by little|in stages
+(adv)|gradually|step by step
+bit field|1
+(noun)|field (generic term)
+bit part|1
+(noun)|minor role|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+bitartrate|1
+(noun)|tartrate (generic term)
+bitch|5
+(noun)|difficulty (generic term)
+(noun)|cunt|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|gripe|kick|beef|squawk|objection (generic term)
+(noun)|canine (generic term)|canid (generic term)
+(verb)|backbite|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+bitchery|1
+(noun)|aggression (generic term)
+bitchiness|1
+(noun)|cattiness|spite|spitefulness|nastiness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+bitchy|1
+(adj)|catty|cattish|malicious (similar term)
+bite|13
+(noun)|wound (generic term)|lesion (generic term)
+(noun)|morsel|bit|taste (generic term)|mouthful (generic term)
+(noun)|sting|insect bite|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|collation|snack|meal (generic term)|repast (generic term)
+(noun)|success (generic term)
+(noun)|pungency|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|pungency|sharpness|raciness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|chomp|eating (generic term)|feeding (generic term)
+(noun)|subtraction (generic term)|deduction (generic term)
+(verb)|seize with teeth|grip (generic term)|bite off (related term)
+(verb)|sting|burn|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|pierce (generic term)
+(verb)|sting|prick|pierce (generic term)
+bite off|1
+(verb)|snap at|bite (generic term)|seize with teeth (generic term)
+bite out|1
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+bite plate|1
+(noun)|biteplate|dental appliance (generic term)
+biteplate|1
+(noun)|bite plate|dental appliance (generic term)
+biter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bitewing|1
+(noun)|X-ray film (generic term)
+bithynia|1
+(noun)|Bithynia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+biting|2
+(adj)|barbed|nipping|pungent|mordacious|sarcastic (similar term)
+(adj)|bitter|painful (similar term)
+biting louse|1
+(noun)|bird louse|louse|insect (generic term)
+biting midge|1
+(noun)|punkie|punky|punkey|no-see-um|gnat (generic term)
+bitingly|1
+(adv)|piercingly|bitterly|bitter
+bitis|1
+(noun)|Bitis|genus Bitis|reptile genus (generic term)
+bitis arietans|1
+(noun)|puff adder|Bitis arietans|viper (generic term)
+bitis gabonica|1
+(noun)|gaboon viper|Bitis gabonica|viper (generic term)
+bitmap|1
+(noun)|electronic image|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+bitok|1
+(noun)|dish (generic term)
+bits per inch|1
+(noun)|bpi|concentration (generic term)|density (generic term)|denseness (generic term)|tightness (generic term)|compactness (generic term)
+bits per second|1
+(noun)|bps|rate (generic term)
+bitstock|1
+(noun)|brace|stock (generic term)
+bitt|2
+(noun)|bollard|post (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+bitt pin|1
+(noun)|pin (generic term)
+bittacidae|1
+(noun)|Bittacidae|family Bittacidae|family (generic term)
+bitter|12
+(adj)|acrimonious|resentful (similar term)
+(adj)|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+(adj)|acerb|acerbic|acid|acrid|blistering|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|sorrowful (similar term)
+(adj)|hostile (similar term)
+(adj)|tasty (similar term)
+(adj)|biting|painful (similar term)
+(noun)|ale (generic term)
+(noun)|bitterness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|bitterness|taste property (generic term)
+(verb)|change taste (generic term)
+(adv)|piercingly|bitterly|bitingly
+bitter-bark|1
+(noun)|fever tree|Georgia bark|Pinckneya pubens|shrub (generic term)|bush (generic term)
+bitter almond|1
+(noun)|Prunus dulcis amara|Amygdalus communis amara|almond tree (generic term)
+bitter almond oil|1
+(noun)|essential oil (generic term)|volatile oil (generic term)
+bitter aloes|1
+(noun)|aloes|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+bitter betch|1
+(noun)|Vicia orobus|vetch (generic term)
+bitter cassava|1
+(noun)|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+bitter chocolate|1
+(noun)|baking chocolate|cooking chocolate|chocolate (generic term)
+bitter cress|1
+(noun)|bittercress|cress (generic term)|cress plant (generic term)
+bitter dock|1
+(noun)|broad-leaved dock|yellow dock|Rumex obtusifolius|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+bitter end|2
+(noun)|extremity (generic term)
+(noun)|end (generic term)
+bitter floom|1
+(noun)|marsh pink|rose pink|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+bitter hickory|1
+(noun)|bitternut|bitternut hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+bitter lemon|1
+(noun)|soft drink (generic term)
+bitter orange|2
+(noun)|sour orange|Seville orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+(noun)|Seville orange|sour orange|orange (generic term)
+bitter orange tree|1
+(noun)|sour orange|Seville orange|bitter orange|bigarade|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+bitter pea|1
+(noun)|shrub (generic term)|bush (generic term)
+bitter pecan|1
+(noun)|water hickory|water bitternut|Carya aquatica|hickory (generic term)|hickory tree (generic term)
+bitter pignut|1
+(noun)|bitternut|bitternut hickory|bitter hickory|swamp hickory|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+bitter principle|1
+(noun)|compound (generic term)|chemical compound (generic term)
+bitter salts|1
+(noun)|Epsom salts|magnesium sulfate (generic term)
+bitter spar|1
+(noun)|dolomite|mineral (generic term)
+bittercress|1
+(noun)|bitter cress|cress (generic term)|cress plant (generic term)
+bitterish|1
+(adj)|sharp-tasting|tasty (similar term)
+bitterly|2
+(adv)|with bitterness
+(adv)|piercingly|bitingly|bitter
+bittern|1
+(noun)|heron (generic term)
+bitterness|4
+(noun)|resentment|gall|rancor|rancour|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|acrimony|acerbity|jaundice|tartness|thorniness|disagreeableness (generic term)
+(noun)|bitter|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|bitter|taste property (generic term)
+bitternut|1
+(noun)|bitternut hickory|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+bitternut hickory|1
+(noun)|bitternut|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+bitterroot|1
+(noun)|Lewisia rediviva|wildflower (generic term)|wild flower (generic term)
+bitters|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+bittersweet|4
+(adj)|sad (similar term)
+(adj)|semisweet|tasty (similar term)
+(noun)|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+(noun)|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+bittersweet chocolate|1
+(noun)|semi-sweet chocolate|dark chocolate|chocolate (generic term)
+bittersweet nightshade|1
+(noun)|bittersweet|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+bitterweed|2
+(noun)|oxtongue|bristly oxtongue|bugloss|Picris echioides|weed (generic term)
+(noun)|ragweed|ambrosia|weed (generic term)
+bitterwood|3
+(noun)|quassia|Quassia amara|bitterwood tree (generic term)
+(noun)|Jamaica quassia|Picrasma excelsa|Picrasma excelsum|bitterwood tree (generic term)
+(noun)|paradise tree|Simarouba glauca|bitterwood tree (generic term)
+bitterwood tree|1
+(noun)|tree (generic term)
+bitthead|1
+(noun)|end (generic term)
+bittie|1
+(adj)|bitty|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+bitty|1
+(adj)|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+bitumastic|1
+(noun)|coating (generic term)|coat (generic term)
+bitumen|1
+(noun)|hydrocarbon (generic term)
+bitumenoid|1
+(adj)|bituminoid|hydrocarbon (related term)
+bituminise|1
+(verb)|bituminize|process (generic term)|treat (generic term)
+bituminize|1
+(verb)|bituminise|process (generic term)|treat (generic term)
+bituminoid|1
+(adj)|bitumenoid|hydrocarbon (related term)
+bituminous|1
+(adj)|hydrocarbon (related term)
+bituminous coal|1
+(noun)|soft coal|coal (generic term)
+biu-mandara|1
+(noun)|Biu-Mandara|Chad (generic term)|Chadic (generic term)|Chadic language (generic term)
+bivalent|2
+(adj)|divalent|power|powerfulness (related term)
+(adj)|double|multivalent (antonym)|univalent (antonym)
+bivalve|2
+(adj)|bivalved|lamellibranch (similar term)|pelecypod (similar term)|pelecypodous (similar term)|univalve (antonym)
+(noun)|pelecypod|lamellibranch|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+bivalved|1
+(adj)|bivalve|lamellibranch (similar term)|pelecypod (similar term)|pelecypodous (similar term)|univalve (antonym)
+bivalvia|1
+(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class (generic term)
+bivariate|1
+(adj)|quantity (related term)
+bivouac|3
+(noun)|camp|encampment|cantonment|military quarters (generic term)
+(noun)|campsite|campground|camping site|camping ground|encampment|camping area|site (generic term)|land site (generic term)
+(verb)|camp|encamp|camp out|tent|dwell (generic term)|live (generic term)|inhabit (generic term)
+bivouacking|1
+(noun)|camping|encampment|tenting|inhabitancy (generic term)|inhabitation (generic term)|habitation (generic term)
+biweekly|5
+(adj)|semiweekly|time period|period of time|period (related term)
+(adj)|fortnightly|time period|period of time|period (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|semiweekly
+(adv)|fortnightly
+biyearly|4
+(adj)|biennial|time period|period of time|period (related term)
+(adj)|semiannual|biannual|time period|period of time|period (related term)
+(adv)|biennially
+(adv)|semiannually
+biz|1
+(noun)|game|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+bizarre|1
+(adj)|eccentric|freakish|freaky|flaky|flakey|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+bizarreness|1
+(noun)|outlandishness|weirdness|unfamiliarity (generic term)|strangeness (generic term)
+bize|1
+(noun)|bise|north wind (generic term)|northerly (generic term)|norther (generic term)|boreas (generic term)
+bizet|1
+(noun)|Bizet|Georges Bizet|composer (generic term)
+bizonal|1
+(adj)|region|part (related term)
+bja|1
+(noun)|Bureau of Justice Assistance|BJA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bjs|1
+(noun)|Bureau of Justice Statistics|BJS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bk|1
+(noun)|berkelium|Bk|atomic number 97|metallic element (generic term)|metal (generic term)
+blab|2
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|peach|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blab out|1
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|babble out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+blabber|2
+(noun)|informer|betrayer|rat|squealer|informant (generic term)|source (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blabbermouth|1
+(noun)|tattletale|tattler|taleteller|talebearer|telltale|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+blabbermouthed|2
+(adj)|bigmouthed|blabby|talkative|indiscreet (similar term)
+(adj)|leaky|talebearing|tattling|communicative (similar term)|communicatory (similar term)
+blabby|1
+(adj)|bigmouthed|blabbermouthed|talkative|indiscreet (similar term)
+blaberus|1
+(noun)|Blaberus|genus Blaberus|arthropod genus (generic term)
+black|23
+(adj)|dark (related term)|white (antonym)
+(adj)|African-American (similar term)|Afro-American (similar term)|colored (similar term)|coloured (similar term)|dark (similar term)|dark-skinned (similar term)|non-white (similar term)|negro (similar term)|negroid (similar term)|white (antonym)
+(adj)|angry (similar term)
+(adj)|dark|sinister|evil (similar term)
+(adj)|bleak|dim|hopeless (similar term)
+(adj)|calamitous|disastrous|fatal|fateful|unfortunate (similar term)
+(adj)|blackened|colored (similar term)|coloured (similar term)|colorful (similar term)
+(adj)|pitch-black|pitch-dark|dark (similar term)
+(adj)|grim|mordant|sarcastic (similar term)
+(adj)|covert (similar term)
+(adj)|bootleg|black-market|contraband|smuggled|illegal (similar term)
+(adj)|disgraceful|ignominious|inglorious|opprobrious|shameful|dishonorable (similar term)|dishonourable (similar term)
+(adj)|undiluted (similar term)
+(adj)|clothed (similar term)|clad (similar term)
+(adj)|smutty|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(noun)|blackness|inkiness|achromatic color (generic term)|achromatic colour (generic term)|white (antonym)
+(noun)|total darkness|lightlessness|blackness|pitch blackness|dark (generic term)|darkness (generic term)
+(noun)|Black|Joseph Black|chemist (generic term)
+(noun)|Black|Shirley Temple Black|Shirley Temple|actress (generic term)
+(noun)|Black|Black person|blackamoor|Negro|Negroid|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+(noun)|man (generic term)|piece (generic term)|white (antonym)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|blacken|melanize|melanise|nigrify|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|whiten (antonym)
+black-and-blue|1
+(adj)|livid|injured (similar term)
+black-and-tan|1
+(adj)|patterned (similar term)
+black-and-tan coonhound|1
+(noun)|coonhound (generic term)
+black-and-tan terrier|1
+(noun)|Manchester terrier|rat terrier (generic term)|ratter (generic term)
+black-and-white|4
+(adj)|visual property (related term)
+(adj)|black and white|color (antonym)
+(adj)|divided (similar term)
+(adj)|patched|spotty|spotted|patterned (similar term)
+black-backed gull|1
+(noun)|great black-backed gull|cob|Larus marinus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+black-barred|1
+(adj)|patterned (similar term)
+black-billed cuckoo|1
+(noun)|Coccyzus erythropthalmus|cuckoo (generic term)
+black-body radiation|1
+(noun)|blackbody radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+black-capped chickadee|1
+(noun)|blackcap|Parus atricapillus|chickadee (generic term)
+black-coated|1
+(adj)|coated (similar term)
+black-crowned night heron|1
+(noun)|Nycticorax nycticorax|night heron (generic term)|night raven (generic term)
+black-eyed pea|2
+(noun)|cowpea|cowpea plant|Vigna unguiculata|Vigna sinensis|legume (generic term)|leguminous plant (generic term)
+(noun)|cowpea|legume (generic term)
+black-eyed susan|3
+(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine (generic term)
+(noun)|flower-of-an-hour|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus (generic term)
+(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower (generic term)
+black-eyed susan vine|1
+(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine (generic term)
+black-footed albatross|1
+(noun)|gooney|gooney bird|goonie|goony|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+black-footed ferret|1
+(noun)|ferret|Mustela nigripes|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+black-fronted bush shrike|1
+(noun)|Chlorophoneus nigrifrons|bush shrike (generic term)
+black-gray|1
+(adj)|black-grey|blackish-grey|blackish-gray|achromatic (similar term)
+black-grey|1
+(adj)|black-gray|blackish-grey|blackish-gray|achromatic (similar term)
+black-haired|1
+(adj)|dark-haired|brown-haired|brunet (similar term)|brunette (similar term)
+black-headed snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+black-legged tick|1
+(noun)|Ixodes scapularis|hard tick (generic term)|ixodid (generic term)
+black-marked|1
+(adj)|patterned (similar term)
+black-market|1
+(adj)|bootleg|black|contraband|smuggled|illegal (similar term)
+black-necked cobra|1
+(noun)|spitting cobra|Naja nigricollis|cobra (generic term)
+black-necked grebe|1
+(noun)|eared grebe|Podiceps nigricollis|grebe (generic term)
+black-necked stilt|1
+(noun)|Himantopus mexicanus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+black-necked stork|1
+(noun)|policeman bird|jabiru|Xenorhyncus asiaticus|stork (generic term)
+black-seeded|1
+(adj)|seedy (similar term)
+black-stem spleenwort|1
+(noun)|black-stemmed spleenwort|little ebony spleenwort|spleenwort (generic term)
+black-stemmed spleenwort|1
+(noun)|black-stem spleenwort|little ebony spleenwort|spleenwort (generic term)
+black-tailed deer|1
+(noun)|blacktail deer|blacktail|Odocoileus hemionus columbianus|mule deer (generic term)|burro deer (generic term)|Odocoileus hemionus (generic term)
+black-tie|1
+(adj)|semiformal|semi-formal|formal (similar term)
+black-winged stilt|1
+(noun)|Himantopus himantopus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+black africa|1
+(noun)|Sub-Saharan Africa|Black Africa|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+black african|1
+(noun)|Black African|African (generic term)
+black american|1
+(noun)|African-American|African American|Afro-American|Black American|American (generic term)
+black and gold garden spider|1
+(noun)|Argiope aurantia|spider (generic term)
+black and tan|1
+(noun)|Black and Tan|recruit (generic term)|military recruit (generic term)
+black and white|3
+(adj)|black-and-white|color (antonym)
+(noun)|print|written communication (generic term)|written language (generic term)
+(noun)|monochrome|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+black angus|1
+(noun)|Aberdeen Angus|Angus|black Angus|beef (generic term)|beef cattle (generic term)
+black apricot|1
+(noun)|purple apricot|Prunus dasycarpa|apricot (generic term)|apricot tree (generic term)
+black archangel|1
+(noun)|black horehound|fetid horehound|stinking horehound|Ballota nigra|herb (generic term)|herbaceous plant (generic term)
+black art|1
+(noun)|sorcery|black magic|necromancy|magic (generic term)|thaumaturgy (generic term)
+black ash|1
+(noun)|basket ash|brown ash|hoop ash|Fraxinus nigra|ash (generic term)|ash tree (generic term)
+black bamboo|1
+(noun)|kuri-chiku|Phyllostachys nigra|bamboo (generic term)
+black bass|2
+(noun)|black sea bass|Centropistes striata|sea bass (generic term)
+(noun)|sunfish (generic term)|centrarchid (generic term)
+black bead|1
+(noun)|cat's-claw|catclaw|Pithecellodium unguis-cati|shrub (generic term)|bush (generic term)
+black bean|1
+(noun)|turtle bean|common bean (generic term)
+black bear|2
+(noun)|Asiatic black bear|Ursus thibetanus|Selenarctos thibetanus|bear (generic term)
+(noun)|American black bear|Ursus americanus|Euarctos americanus|bear (generic term)
+black bearberry|1
+(noun)|alpine bearberry|Arctostaphylos alpina|bearberry (generic term)
+black bee|1
+(noun)|German bee|honeybee (generic term)|Apis mellifera (generic term)
+black beech|1
+(noun)|Nothofagus solanderi|southern beech (generic term)|evergreen beech (generic term)
+black belt|2
+(noun)|expert (generic term)
+(noun)|badge (generic term)
+black bile|1
+(noun)|melancholy|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+black bindweed|1
+(noun)|black bryony|Tamus communis|vine (generic term)
+black birch|2
+(noun)|sweet birch|cherry birch|Betula lenta|birch (generic term)|birch tree (generic term)
+(noun)|river birch|red birch|Betula nigra|birch (generic term)|birch tree (generic term)
+black body|1
+(noun)|blackbody|full radiator|natural object (generic term)
+black book|1
+(noun)|blacklist|shitlist|list (generic term)|listing (generic term)
+black box|1
+(noun)|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+black bread|1
+(noun)|pumpernickel|rye bread (generic term)
+black bream|1
+(noun)|Chrysophrys australis|sea bream (generic term)|bream (generic term)
+black bryony|1
+(noun)|black bindweed|Tamus communis|vine (generic term)
+black buck|1
+(noun)|blackbuck|Antilope cervicapra|antelope (generic term)
+black buffalo|1
+(noun)|Ictiobus niger|buffalo fish (generic term)|buffalofish (generic term)
+black calla|1
+(noun)|Arum palaestinum|arum (generic term)|aroid (generic term)
+black caraway|1
+(noun)|nutmeg flower|Roman coriander|Nigella sativa|nigella (generic term)
+black carpet beetle|1
+(noun)|carpet beetle (generic term)|carpet bug (generic term)
+black cat|1
+(noun)|fisher|pekan|fisher cat|Martes pennanti|marten (generic term)|marten cat (generic term)
+black catechu|1
+(noun)|catechu|infusion (generic term)|extract (generic term)
+black cherry|2
+(noun)|black cherry tree|rum cherry|Prunus serotina|wild cherry (generic term)|wild cherry tree (generic term)
+(noun)|sweet cherry|cherry (generic term)
+black cherry tree|1
+(noun)|black cherry|rum cherry|Prunus serotina|wild cherry (generic term)|wild cherry tree (generic term)
+black cock|1
+(noun)|blackcock|black grouse (generic term)
+black cohosh|1
+(noun)|black snakeroot|rattle-top|Cimicifuga racemosa|bugbane (generic term)
+black comedy|1
+(noun)|comedy (generic term)
+black cottonwood|2
+(noun)|swamp cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood (generic term)
+(noun)|Western balsam poplar|Populus trichocarpa|cottonwood (generic term)
+black crappie|1
+(noun)|Pomoxis nigromaculatus|crappie (generic term)
+black currant|2
+(noun)|European black currant|Ribes nigrum|currant (generic term)|currant bush (generic term)
+(noun)|currant (generic term)
+black cypress pine|1
+(noun)|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine (generic term)
+black death|1
+(noun)|Black Death|Black Plague|bubonic plague (generic term)|pestis bubonica (generic term)|glandular plague (generic term)
+black diamond|1
+(noun)|carbonado|diamond (generic term)|adamant (generic term)
+black disease|1
+(noun)|sheep rot|liver rot|distomatosis|animal disease (generic term)
+black duck|1
+(noun)|Anas rubripes|duck (generic term)
+black economy|1
+(noun)|sector (generic term)
+black elder|1
+(noun)|bourtree|common elder|elderberry|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+black elderberry|1
+(noun)|American elder|sweet elder|Sambucus canadensis|elder (generic term)|elderberry bush (generic term)
+black english|1
+(noun)|Black English|Black English Vernacular|Ebonics|American English (generic term)|American language (generic term)|American (generic term)
+black english vernacular|1
+(noun)|Black English|Black English Vernacular|Ebonics|American English (generic term)|American language (generic term)|American (generic term)
+black eye|3
+(noun)|shiner|mouse|bruise (generic term)|contusion (generic term)
+(noun)|repute (generic term)|reputation (generic term)
+(noun)|reverse|reversal|setback|blow|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+black felt cup|1
+(noun)|Sarcosomataceae (generic term)
+black flag|1
+(noun)|pirate flag|Jolly Roger|blackjack|flag (generic term)
+black fly|1
+(noun)|blackfly|buffalo gnat|gnat (generic term)
+black forest|1
+(noun)|Black Forest|Schwarzwald|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+black fox|1
+(noun)|red fox (generic term)|Vulpes vulpes (generic term)
+black friar|1
+(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar (generic term)|mendicant (generic term)
+black fritillary|1
+(noun)|mission bells|Fritillaria biflora|fritillary (generic term)|checkered lily (generic term)
+black grama|1
+(noun)|Bouteloua eriopoda|grama (generic term)|grama grass (generic term)|gramma (generic term)|gramma grass (generic term)
+black greasewood|1
+(noun)|greasewood|Sarcobatus vermiculatus|shrub (generic term)|bush (generic term)
+black grouse|1
+(noun)|grouse (generic term)
+black guillemot|1
+(noun)|Cepphus grylle|guillemot (generic term)
+black gum|2
+(noun)|sour gum|pepperidge|Nyssa sylvatica|tupelo (generic term)|tupelo tree (generic term)
+(noun)|black mallee|black sally|Eucalytus stellulata|mallee (generic term)
+black hand|1
+(noun)|Black Hand|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+black haw|2
+(noun)|false buckthorn|chittamwood|chittimwood|shittimwood|Bumelia lanuginosa|buckthorn (generic term)
+(noun)|Viburnum prunifolium|shrub (generic term)|bush (generic term)
+black hawk|1
+(noun)|Black Hawk|Makataimeshekiakiak|Indian chief (generic term)|Indian chieftain (generic term)|Sauk (generic term)|Sac (generic term)
+black hellebore|2
+(noun)|lenten rose|Helleborus orientalis|hellebore (generic term)
+(noun)|Christmas rose|winter rose|Helleborus niger|hellebore (generic term)
+black hemlock|1
+(noun)|mountain hemlock|Tsuga mertensiana|hemlock (generic term)|hemlock tree (generic term)
+black henbane|1
+(noun)|henbane|stinking nightshade|Hyoscyamus niger|herb (generic term)|herbaceous plant (generic term)
+black hickory|3
+(noun)|mockernut|mockernut hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+(noun)|pignut|pignut hickory|brown hickory|Carya glabra|hickory (generic term)|hickory tree (generic term)
+(noun)|black walnut|black walnut tree|Juglans nigra|walnut (generic term)|walnut tree (generic term)
+black hills|2
+(noun)|Black Hills|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+(noun)|Black Hills|mountain (generic term)|mount (generic term)
+black hole|1
+(noun)|region (generic term)|part (generic term)
+black hole of calcutta|1
+(noun)|Black Hole of Calcutta|keep (generic term)|donjon (generic term)|dungeon (generic term)
+black hollander|1
+(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier (generic term)
+black horehound|1
+(noun)|black archangel|fetid horehound|stinking horehound|Ballota nigra|herb (generic term)|herbaceous plant (generic term)
+black huckleberry|1
+(noun)|Gaylussacia baccata|huckleberry (generic term)
+black humor|1
+(noun)|black humour|expressive style (generic term)|style (generic term)
+black humour|1
+(noun)|black humor|expressive style (generic term)|style (generic term)
+black ice|1
+(noun)|ice (generic term)|water ice (generic term)
+black jack pershing|1
+(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general (generic term)|full general (generic term)
+black kite|1
+(noun)|Milvus migrans|kite (generic term)
+black knapweed|1
+(noun)|lesser knapweed|hardheads|Centaurea nigra|knapweed (generic term)
+black knot|1
+(noun)|plant disease (generic term)
+black larch|1
+(noun)|American larch|tamarack|Larix laricina|larch (generic term)|larch tree (generic term)
+black lead|1
+(noun)|graphite|plumbago|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+black letter|1
+(noun)|Gothic|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+black locust|2
+(noun)|wood (generic term)
+(noun)|yellow locust|Robinia pseudoacacia|locust tree (generic term)|locust (generic term)
+black lotion|1
+(noun)|blackwash|lotion (generic term)|application (generic term)
+black lovage|1
+(noun)|Alexander|Alexanders|horse parsley|Smyrnium olusatrum|herb (generic term)|herbaceous plant (generic term)
+black lung|1
+(noun)|anthracosis|black lung disease|coal miner's lung|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+black lung disease|1
+(noun)|anthracosis|black lung|coal miner's lung|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+black magic|1
+(noun)|sorcery|black art|necromancy|magic (generic term)|thaumaturgy (generic term)
+black maire|1
+(noun)|Olea cunninghamii|olive tree (generic term)
+black mallee|1
+(noun)|black sally|black gum|Eucalytus stellulata|mallee (generic term)
+black mamba|1
+(noun)|Dendroaspis augusticeps|mamba (generic term)
+black man|1
+(noun)|Black man|man (generic term)|adult male (generic term)|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+black mangrove|2
+(noun)|Aegiceras majus|tree (generic term)
+(noun)|Avicennia marina|blackwood (generic term)|blackwood tree (generic term)
+black margate|1
+(noun)|pompon|Anisotremus surinamensis|grunt (generic term)
+black maria|2
+(noun)|police van|police wagon|paddy wagon|patrol wagon|wagon|black Maria|van (generic term)
+(noun)|hearts|Black Maria|whist (generic term)|long whist (generic term)|short whist (generic term)
+black market|3
+(noun)|market (generic term)
+(noun)|market (generic term)|marketplace (generic term)
+(verb)|run|trade (generic term)|merchandise (generic term)
+black marketeer|2
+(noun)|supplier (generic term)|provider (generic term)
+(verb)|deal (generic term)|sell (generic term)|trade (generic term)
+black marlin|1
+(noun)|Makaira mazara|Makaira marlina|marlin (generic term)
+black medick|1
+(noun)|hop clover|yellow trefoil|nonesuch clover|Medicago lupulina|medic (generic term)|medick (generic term)|trefoil (generic term)
+black morel|1
+(noun)|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel (generic term)
+black moss|1
+(noun)|Spanish moss|old man's beard|long moss|Tillandsia usneoides|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+black mulberry|1
+(noun)|Morus nigra|mulberry (generic term)|mulberry tree (generic term)
+black music|1
+(noun)|African-American music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+black muslim|1
+(noun)|Black Muslim|militant (generic term)|activist (generic term)
+black mustard|1
+(noun)|Brassica nigra|mustard (generic term)
+black nightshade|1
+(noun)|common nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade (generic term)
+black oak|1
+(noun)|yellow oak|quercitron|quercitron oak|Quercus velutina|oak (generic term)|oak tree (generic term)
+black olive|1
+(noun)|ripe olive|olive (generic term)
+black opal|1
+(noun)|opal (generic term)
+black operation|1
+(noun)|covert operation (generic term)
+black out|4
+(verb)|snuff out (generic term)|blow out (generic term)|extinguish (generic term)|quench (generic term)
+(verb)|blacken out|darken (generic term)
+(verb)|edit (generic term)|redact (generic term)
+(verb)|zonk out|pass out|change state (generic term)|turn (generic term)
+black panther|1
+(noun)|Black Panther|militant (generic term)|activist (generic term)
+black panthers|1
+(noun)|Black Panthers|party (generic term)|political party (generic term)
+black pea|1
+(noun)|Lathyrus niger|vetchling (generic term)
+black pepper|2
+(noun)|pepper|common pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+(noun)|pepper (generic term)|peppercorn (generic term)
+black person|1
+(noun)|Black|Black person|blackamoor|Negro|Negroid|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+black pine|5
+(noun)|matai|Prumnopitys taxifolia|Podocarpus spicata|conifer (generic term)|coniferous tree (generic term)
+(noun)|miro|Prumnopitys ferruginea|Podocarpus ferruginea|conifer (generic term)|coniferous tree (generic term)
+(noun)|Japanese black pine|Pinus thunbergii|pine (generic term)|pine tree (generic term)|true pine (generic term)
+(noun)|Jeffrey pine|Jeffrey's pine|Pinus jeffreyi|pine (generic term)|pine tree (generic term)|true pine (generic term)
+(noun)|Pinus nigra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+black plague|1
+(noun)|Black Death|Black Plague|bubonic plague (generic term)|pestis bubonica (generic term)|glandular plague (generic term)
+black poplar|1
+(noun)|Populus nigra|poplar (generic term)|poplar tree (generic term)
+black prince|1
+(noun)|Edward|Black Prince|Prince of Wales (generic term)
+black pudding|1
+(noun)|blood sausage|blood pudding|sausage (generic term)
+black race|1
+(noun)|Black race|Negroid race|Negro race|race (generic term)
+black racer|1
+(noun)|blacksnake|Coluber constrictor|racer (generic term)
+black raspberry|1
+(noun)|blackcap|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry (generic term)|raspberry bush (generic term)
+black rat|1
+(noun)|roof rat|Rattus rattus|rat (generic term)
+black rat snake|1
+(noun)|blacksnake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake (generic term)
+black rhinoceros|1
+(noun)|Diceros bicornis|rhinoceros (generic term)|rhino (generic term)
+black rock desert|1
+(noun)|Black Rock Desert|desert (generic term)
+black rockweed|1
+(noun)|bladderwrack|bladder fucus|tang|Fucus vesiculosus|rockweed (generic term)
+black root rot fungus|1
+(noun)|Xylaria mali|fungus (generic term)
+black rot|1
+(noun)|plant disease (generic term)
+black rudderfish|1
+(noun)|barrelfish|Hyperglyphe perciformis|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+black sage|1
+(noun)|wooly blue curls|California romero|Trichostema lanatum|blue curls (generic term)
+black sally|1
+(noun)|black mallee|black gum|Eucalytus stellulata|mallee (generic term)
+black salsify|2
+(noun)|viper's grass|scorzonera|Scorzonera hispanica|herb (generic term)|herbaceous plant (generic term)
+(noun)|scorzonera|salsify (generic term)
+black saltwort|1
+(noun)|sea milkwort|sea trifoly|Glaux maritima|herb (generic term)|herbaceous plant (generic term)
+black sea|1
+(noun)|Black Sea|Euxine Sea|sea (generic term)
+black sea bass|1
+(noun)|black bass|Centropistes striata|sea bass (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+black september movement|1
+(noun)|Black September Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+black sheep|2
+(noun)|scapegrace|reprobate (generic term)|miscreant (generic term)
+(noun)|sheep (generic term)
+black snakeroot|2
+(noun)|Canada ginger|Asarum canadense|wild ginger (generic term)
+(noun)|black cohosh|rattle-top|Cimicifuga racemosa|bugbane (generic term)
+black spleenwort|1
+(noun)|Asplenium adiantum-nigrum|spleenwort (generic term)
+black spot|1
+(noun)|plant disease (generic term)
+black spruce|1
+(noun)|Picea mariana|spruce pine|spruce (generic term)
+black squirrel|1
+(noun)|tree squirrel (generic term)
+black stork|1
+(noun)|Ciconia nigra|stork (generic term)
+black sumac|1
+(noun)|dwarf sumac|mountain sumac|shining sumac|Rhus copallina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+black swan|1
+(noun)|Cygnus atratus|swan (generic term)
+black tai|1
+(noun)|Tai Dam|Black Tai|Tai (generic term)
+black tea|1
+(noun)|tea (generic term)|tea leaf (generic term)
+black tie|2
+(noun)|dinner jacket|tux|tuxedo|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+(noun)|bow tie (generic term)|bow-tie (generic term)|bowtie (generic term)
+black tongue|1
+(noun)|hairy tongue|furry tongue|side effect (generic term)
+black tree fern|1
+(noun)|silver tree fern|sago fern|Cyathea medullaris|tree fern (generic term)
+black turnstone|1
+(noun)|Arenaria-Melanocephala|turnstone (generic term)
+black vomit|1
+(noun)|yellow jack|yellow fever|infectious disease (generic term)
+black vulture|2
+(noun)|carrion crow|Coragyps atratus|New World vulture (generic term)|cathartid (generic term)
+(noun)|Aegypius monachus|Old World vulture (generic term)
+black walnut|2
+(noun)|black walnut tree|black hickory|Juglans nigra|walnut (generic term)|walnut tree (generic term)
+(noun)|walnut (generic term)
+black walnut tree|1
+(noun)|black walnut|black hickory|Juglans nigra|walnut (generic term)|walnut tree (generic term)
+black wattle|1
+(noun)|Acacia auriculiformis|acacia (generic term)
+black weevil|1
+(noun)|rice weevil|Sitophylus oryzae|weevil (generic term)
+black whale|2
+(noun)|pilot whale|common blackfish|blackfish|Globicephala melaena|dolphin (generic term)
+(noun)|sperm whale|cachalot|Physeter catodon|toothed whale (generic term)
+black widow|1
+(noun)|Latrodectus mactans|spider (generic term)
+black willow|1
+(noun)|swamp willow|Salix nigra|willow (generic term)|willow tree (generic term)
+black woman|1
+(noun)|Black woman|woman (generic term)|adult female (generic term)|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+blackamoor|1
+(noun)|Black|Black person|Negro|Negroid|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+blackback flounder|1
+(noun)|winter flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder (generic term)|righteyed flounder (generic term)
+blackball|3
+(noun)|barring|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+(verb)|banish|ban|ostracize|ostracise|shun|cast out|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|veto|negative|oppose (generic term)|controvert (generic term)|contradict (generic term)
+blackbeard|1
+(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+blackbeetle|1
+(noun)|oriental cockroach|oriental roach|Asiatic cockroach|Blatta orientalis|cockroach (generic term)|roach (generic term)
+blackberry|3
+(noun)|berry (generic term)|drupelet (generic term)
+(noun)|blackberry bush|bramble bush (generic term)
+(verb)|berry (generic term)
+blackberry-like|1
+(adj)|vegetable (similar term)
+blackberry-lily|1
+(noun)|leopard lily|Belamcanda chinensis|iridaceous plant (generic term)
+blackberry bush|1
+(noun)|blackberry|bramble bush (generic term)
+blackbird|2
+(noun)|New World blackbird|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+(noun)|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush (generic term)
+blackboard|1
+(noun)|chalkboard|sheet (generic term)|flat solid (generic term)
+blackboard eraser|1
+(noun)|eraser (generic term)
+blackbody|1
+(noun)|black body|full radiator|natural object (generic term)
+blackbody radiation|1
+(noun)|black-body radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+blackbuck|1
+(noun)|black buck|Antilope cervicapra|antelope (generic term)
+blackburn|1
+(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler (generic term)|wood warbler (generic term)
+blackburnian warbler|1
+(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler (generic term)|wood warbler (generic term)
+blackcap|4
+(noun)|black raspberry|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry (generic term)|raspberry bush (generic term)
+(noun)|laughing gull|pewit|pewit gull|Larus ridibundus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+(noun)|black-capped chickadee|Parus atricapillus|chickadee (generic term)
+(noun)|Silvia atricapilla|Old World warbler (generic term)|true warbler (generic term)
+blackcap raspberry|1
+(noun)|black raspberry|blackcap|thimbleberry|Rubus occidentalis|raspberry (generic term)|raspberry bush (generic term)
+blackcock|1
+(noun)|black cock|black grouse (generic term)
+blackdamp|1
+(noun)|chokedamp|carbon dioxide (generic term)|CO2 (generic term)|carbonic acid gas (generic term)
+blacken|2
+(verb)|melanize|melanise|nigrify|black|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|whiten (antonym)
+(verb)|char|sear|scorch|burn (generic term)
+blacken out|1
+(verb)|black out|darken (generic term)
+blackened|2
+(adj)|smoky (similar term)
+(adj)|black|colored (similar term)|coloured (similar term)|colorful (similar term)
+blackening|1
+(noun)|darkening|change of color (generic term)
+blackface|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+blackfish|3
+(noun)|tautog|Tautoga onitis|wrasse (generic term)
+(noun)|salmon (generic term)
+(noun)|pilot whale|black whale|common blackfish|Globicephala melaena|dolphin (generic term)
+blackfly|2
+(noun)|bean aphid|Aphis fabae|aphid (generic term)
+(noun)|black fly|buffalo gnat|gnat (generic term)
+blackfoot|2
+(noun)|Blackfoot|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Blackfoot|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+blackfoot daisy|1
+(noun)|Melampodium leucanthum|wildflower (generic term)|wild flower (generic term)
+blackfriar|1
+(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar (generic term)|mendicant (generic term)
+blackguard|3
+(noun)|cad|bounder|dog|hound|heel|villain (generic term)|scoundrel (generic term)
+(verb)|ridicule|roast|guy|laugh at|jest at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+(verb)|abuse|clapperclaw|shout|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+blackguardly|1
+(adj)|rascally|roguish|scoundrelly|dishonest (similar term)|dishonorable (similar term)
+blackhead|1
+(noun)|comedo|blemish (generic term)|defect (generic term)|mar (generic term)
+blackheart|2
+(noun)|plant disease (generic term)
+(noun)|blackheart cherry|heart cherry (generic term)|oxheart (generic term)|oxheart cherry (generic term)
+blackheart cherry|1
+(noun)|blackheart|heart cherry (generic term)|oxheart (generic term)|oxheart cherry (generic term)
+blacking|1
+(noun)|shoe polish|polish (generic term)
+blackish|1
+(adj)|achromatic (similar term)
+blackish-brown|1
+(adj)|chromatic (similar term)
+blackish-gray|1
+(adj)|black-grey|black-gray|blackish-grey|achromatic (similar term)
+blackish-grey|1
+(adj)|black-grey|black-gray|blackish-gray|achromatic (similar term)
+blackish-red|1
+(adj)|chromatic (similar term)
+blackjack|5
+(noun)|blackjack oak|jack oak|Quercus marilandica|scrub oak (generic term)
+(noun)|cosh|sap|bludgeon (generic term)
+(noun)|black flag|pirate flag|Jolly Roger|flag (generic term)
+(noun)|twenty-one|vingt-et-un|card game (generic term)|cards (generic term)
+(verb)|blackmail|pressure|influence (generic term)|act upon (generic term)|work (generic term)
+blackjack oak|1
+(noun)|blackjack|jack oak|Quercus marilandica|scrub oak (generic term)
+blacklead|1
+(verb)|cover (generic term)
+blackleg|2
+(noun)|scab|strikebreaker|rat|worker (generic term)
+(verb)|fink|scab|rat|work (generic term)|do work (generic term)
+blacklist|2
+(noun)|black book|shitlist|list (generic term)|listing (generic term)
+(verb)|list (generic term)
+blackmail|3
+(noun)|extortion (generic term)
+(verb)|blackjack|pressure|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|extort (generic term)
+blackmailer|1
+(noun)|extortioner|extortionist|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+blackmouth bass|1
+(noun)|Synagrops bellus|sea bass (generic term)
+blackness|2
+(noun)|black|inkiness|achromatic color (generic term)|achromatic colour (generic term)|white (antonym)
+(noun)|total darkness|lightlessness|pitch blackness|black|dark (generic term)|darkness (generic term)
+blackout|5
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|brownout|dimout|dark (generic term)|darkness (generic term)
+(noun)|power outage (generic term)|power failure (generic term)
+(noun)|unconsciousness (generic term)
+(noun)|amnesia|memory loss|cognitive state (generic term)|state of mind (generic term)
+blackpoll|1
+(noun)|Dendroica striate|New World warbler (generic term)|wood warbler (generic term)
+blackpool|1
+(noun)|Blackpool|town (generic term)
+blacksburg|1
+(noun)|Blacksburg|town (generic term)
+blackseed|1
+(noun)|smut grass|carpet grass|Sporobolus poiretii|dropseed (generic term)|drop-seed (generic term)
+blackshirt|1
+(noun)|Blackshirt|fascist (generic term)
+blacksmith|1
+(noun)|smith (generic term)|metalworker (generic term)
+blacksnake|2
+(noun)|black rat snake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake (generic term)
+(noun)|black racer|Coluber constrictor|racer (generic term)
+blacktail|1
+(noun)|black-tailed deer|blacktail deer|Odocoileus hemionus columbianus|mule deer (generic term)|burro deer (generic term)|Odocoileus hemionus (generic term)
+blacktail deer|1
+(noun)|black-tailed deer|blacktail|Odocoileus hemionus columbianus|mule deer (generic term)|burro deer (generic term)|Odocoileus hemionus (generic term)
+blacktail jackrabbit|1
+(noun)|Lepus californicus|jackrabbit (generic term)
+blacktail prairie dog|1
+(noun)|Cynomys ludovicianus|prairie dog (generic term)|prairie marmot (generic term)
+blackthorn|2
+(noun)|sloe|Prunus spinosa|shrub (generic term)|bush (generic term)
+(noun)|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn (generic term)|haw (generic term)
+blacktip shark|1
+(noun)|sandbar shark|Carcharhinus limbatus|requiem shark (generic term)
+blacktop|2
+(noun)|blacktopping|paving material (generic term)
+(verb)|coat (generic term)|surface (generic term)
+blacktopping|1
+(noun)|blacktop|paving material (generic term)
+blackwall hitch|1
+(noun)|Blackwall hitch|hitch (generic term)
+blackwash|5
+(noun)|character assassination|assassination|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|black lotion|lotion (generic term)|application (generic term)
+(noun)|wash (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+blackwater|1
+(noun)|disease (generic term)
+blackwater fever|1
+(noun)|malaria (generic term)
+blackwood|2
+(noun)|wood (generic term)
+(noun)|blackwood tree|tree (generic term)
+blackwood tree|1
+(noun)|blackwood|tree (generic term)
+bladder|2
+(noun)|vesica|sac (generic term)
+(noun)|bag (generic term)
+bladder campion|2
+(noun)|Silene uniflora|Silene vulgaris|silene (generic term)|campion (generic term)|catchfly (generic term)
+(noun)|white campion|evening lychnis|white cockle|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+bladder cherry|1
+(noun)|Chinese lantern plant|winter cherry|Physalis alkekengi|ground cherry (generic term)|husk tomato (generic term)
+bladder disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+bladder fern|1
+(noun)|fern (generic term)
+bladder fucus|1
+(noun)|bladderwrack|black rockweed|tang|Fucus vesiculosus|rockweed (generic term)
+bladder ketmia|1
+(noun)|flower-of-an-hour|flowers-of-an-hour|black-eyed Susan|Hibiscus trionum|hibiscus (generic term)
+bladder senna|1
+(noun)|Colutea arborescens|shrub (generic term)|bush (generic term)
+bladder sphincter|1
+(noun)|musculus sphincter vesicae|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+bladder stone|1
+(noun)|cystolith|calculus (generic term)|concretion (generic term)
+bladder worm|1
+(noun)|larva (generic term)
+bladderlike|1
+(adj)|bladdery|bag (related term)
+bladdernose|1
+(noun)|hooded seal|Cystophora cristata|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+bladdernut family|1
+(noun)|Staphylaceae|family Staphylaceae|dicot family (generic term)|magnoliopsid family (generic term)
+bladderpod|2
+(noun)|Indian tobacco|Lobelia inflata|lobelia (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bladderwort|1
+(noun)|carnivorous plant (generic term)
+bladderwort family|1
+(noun)|Lentibulariaceae|family Lentibulariaceae|plant family (generic term)
+bladderwrack|2
+(noun)|Ascophyllum nodosum|rockweed (generic term)
+(noun)|black rockweed|bladder fucus|tang|Fucus vesiculosus|rockweed (generic term)
+bladdery|1
+(adj)|bladderlike|bag (related term)
+blade|9
+(noun)|leaf blade|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+(noun)|ribbon (generic term)|thread (generic term)
+(noun)|sword|brand|steel|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|cut of beef (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|runner (generic term)
+(noun)|vane|rotating mechanism (generic term)
+(noun)|cutting implement (generic term)
+blade apple|1
+(noun)|Barbados gooseberry|edible fruit (generic term)
+blade bit|1
+(noun)|fishtail bit|drilling bit (generic term)|drill bit (generic term)
+blade roast|1
+(noun)|roast (generic term)|joint (generic term)
+bladed|3
+(adj)|weapon|arm|weapon system (related term)
+(adj)|leaf|leafage|foliage (related term)
+(adj)|thin (similar term)
+bladelike|1
+(adj)|ensiform|sword-shaped|swordlike|simple (similar term)|unsubdivided (similar term)
+blae|1
+(adj)|chromatic (similar term)
+blaeberry|1
+(noun)|bilberry|whortleberry|whinberry|Viccinium myrtillus|blueberry (generic term)|blueberry bush (generic term)
+blah|1
+(noun)|bombast|fustian|rant|claptrap|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+blahs|1
+(noun)|boredom (generic term)|ennui (generic term)|tedium (generic term)
+blaia zimondal|1
+(noun)|Blaia Zimondal|artificial language (generic term)
+blain|1
+(noun)|sore (generic term)
+blair|1
+(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman (generic term)|solon (generic term)|national leader (generic term)
+blaise pascal|1
+(noun)|Pascal|Blaise Pascal|mathematician (generic term)|philosopher (generic term)
+blake|1
+(noun)|Blake|William Blake|poet (generic term)|painter (generic term)
+blamable|1
+(adj)|blameworthy|blameable|blameful|censurable|culpable|guilty (similar term)
+blame|6
+(adj)|blasted|blamed|blessed|damn|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+(noun)|incrimination|inculpation|accusation (generic term)|accusal (generic term)
+(noun)|rap|reproach (generic term)
+(verb)|fault|charge (generic term)|accuse (generic term)|absolve (antonym)
+(verb)|find fault|pick|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|charge|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+blameable|1
+(adj)|blameworthy|blamable|blameful|censurable|culpable|guilty (similar term)
+blamed|1
+(adj)|blasted|blame|blessed|damn|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+blameful|1
+(adj)|blameworthy|blamable|blameable|censurable|culpable|guilty (similar term)
+blameless|1
+(adj)|inculpable|irreproachable|unimpeachable|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+blamelessly|1
+(adv)|irreproachably
+blamelessness|1
+(noun)|inculpability|inculpableness|guiltlessness|innocence (generic term)
+blameworthiness|1
+(noun)|culpability|culpableness|guilt (generic term)|guiltiness (generic term)
+blameworthy|1
+(adj)|blamable|blameable|blameful|censurable|culpable|guilty (similar term)
+blanc|1
+(noun)|white sauce (generic term)|bechamel sauce (generic term)|bechamel (generic term)
+blanc fixe|1
+(noun)|barium sulphate|barium sulfate|sulfate (generic term)|sulphate (generic term)
+blanch|2
+(verb)|pale|blench|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|parboil|cook (generic term)
+blanched|2
+(adj)|ashen|bloodless|livid|white|colorless (similar term)|colourless (similar term)
+(adj)|etiolate|etiolated|colorless (similar term)|colourless (similar term)
+blanching agent|1
+(noun)|bleaching agent|bleach|whitener|agent (generic term)
+blancmange|1
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+bland|3
+(adj)|flat|flavorless|flavourless|insipid|savorless|savourless|vapid|tasteless (similar term)
+(adj)|flat|unstimulating (similar term)|unexciting (similar term)
+(adj)|politic|smooth|suave|diplomatic (similar term)|diplomatical (similar term)
+bland diet|1
+(noun)|ulcer diet|diet (generic term)
+blandfordia|1
+(noun)|Blandfordia|genus Blandfordia|liliid monocot genus (generic term)
+blandish|1
+(verb)|flatter|praise (generic term)|disparage (antonym)
+blandishment|2
+(noun)|cajolery|palaver|flattery (generic term)
+(noun)|wheedling|enticement (generic term)|temptation (generic term)
+blandness|3
+(noun)|unemotionality (generic term)|emotionlessness (generic term)
+(noun)|insipidity|insipidness|unappetizingness (generic term)|unappetisingness (generic term)
+(noun)|suavity|suaveness|smoothness|graciousness (generic term)
+blank|9
+(adj)|clean|white|empty (similar term)
+(adj)|vacuous|uncommunicative (similar term)|incommunicative (similar term)
+(adj)|unloaded (similar term)
+(noun)|space|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|euphemism (generic term)
+(noun)|lacuna|gap (generic term)|crack (generic term)
+(noun)|sheet (generic term)|flat solid (generic term)
+(noun)|dummy|blank shell|cartridge (generic term)
+(verb)|prevent (generic term)|keep (generic term)
+blank check|2
+(noun)|free hand|freedom (generic term)
+(noun)|blank cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+blank cheque|1
+(noun)|blank check|check (generic term)|bank check (generic term)|cheque (generic term)
+blank endorsement|1
+(noun)|endorsement in blank|endorsement (generic term)|indorsement (generic term)
+blank out|2
+(verb)|forget|block|draw a blank|remember (antonym)
+(verb)|edit (generic term)|redact (generic term)
+blank shell|1
+(noun)|blank|dummy|cartridge (generic term)
+blank space|1
+(noun)|space|place|area (generic term)|expanse (generic term)|surface area (generic term)
+blank verse|1
+(noun)|poem (generic term)|verse form (generic term)
+blanket|6
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|broad|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+(noun)|cover|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|mantle|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|layer (generic term)|bed (generic term)
+(verb)|cover (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+blanket flower|1
+(noun)|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia (generic term)
+blanket jam|1
+(verb)|jam (generic term)|block (generic term)
+blanket stitch|1
+(noun)|stitch (generic term)
+blanketed|1
+(adj)|covered (similar term)
+blankly|1
+(adv)|without expression
+blankness|1
+(noun)|emptiness (generic term)
+blanquillo|1
+(noun)|tilefish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+blantyre|1
+(noun)|Blantyre|city (generic term)|metropolis (generic term)|urban center (generic term)
+blare|3
+(noun)|blaring|cacophony|clamor|din|noise (generic term)
+(verb)|blast|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|honk|beep|claxon|toot|sound (generic term)|go (generic term)
+blare out|1
+(verb)|blat out|announce (generic term)|denote (generic term)
+blarina|1
+(noun)|Blarina|genus Blarina|mammal genus (generic term)
+blarina brevicauda|1
+(noun)|short-tailed shrew|Blarina brevicauda|shrew (generic term)|shrewmouse (generic term)
+blaring|2
+(adj)|blasting|loud (similar term)
+(noun)|blare|cacophony|clamor|din|noise (generic term)
+blarney|2
+(noun)|coaxing|soft soap|sweet talk|flattery (generic term)
+(verb)|wheedle|cajole|palaver|coax|sweet-talk|inveigle|persuade (generic term)
+blarney stone|1
+(noun)|Blarney Stone|stone (generic term)
+blase|3
+(adj)|worldly|sophisticated (similar term)
+(adj)|bored|uninterested (similar term)
+(adj)|unconcerned (similar term)
+blaspheme|2
+(verb)|curse|cuss|swear|imprecate|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|talk of (generic term)|talk about (generic term)
+blasphemer|1
+(noun)|nonreligious person (generic term)
+blasphemous|2
+(adj)|profane|sacrilegious|irreverent (similar term)
+(adj)|blue|profane|dirty (similar term)
+blasphemy|2
+(noun)|profanity (generic term)|disrespect (generic term)|discourtesy (generic term)
+(noun)|profanation|desecration|sacrilege|irreverence (generic term)|violation (generic term)
+blast|9
+(noun)|fly (generic term)|fly ball (generic term)
+(noun)|bang|clap|eruption|bam|noise (generic term)
+(noun)|gust|blow|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+(noun)|good time|experience (generic term)
+(noun)|fire|attack|flak|flack|criticism (generic term)|unfavorable judgment (generic term)
+(verb)|blare|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|smash|nail|boom|hit (generic term)
+(verb)|shell|bombard (generic term)|bomb (generic term)
+blast furnace|1
+(noun)|furnace (generic term)
+blast off|1
+(verb)|launch (generic term)
+blast trauma|1
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+blast wave|1
+(noun)|shock wave|wave (generic term)|undulation (generic term)
+blasted|1
+(adj)|blame|blamed|blessed|damn|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+blastema|1
+(noun)|cell (generic term)
+blastemal|1
+(adj)|blastematic|blastemic|cell (related term)
+blastematic|1
+(adj)|blastemal|blastemic|cell (related term)
+blastemic|1
+(adj)|blastemal|blastematic|cell (related term)
+blaster|1
+(noun)|chargeman|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+blasting|2
+(adj)|ruinous|destructive (similar term)
+(adj)|blaring|loud (similar term)
+blasting cap|1
+(noun)|detonator (generic term)|detonating device (generic term)|cap (generic term)
+blasting gelatin|1
+(noun)|explosive mixture (generic term)
+blastocele|1
+(noun)|blastocoel|blastocoele|segmentation cavity|cleavage cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+blastocladia|1
+(noun)|Blastocladia|genus Blastocladia|fungus genus (generic term)
+blastocladiales|1
+(noun)|Blastocladiales|order Blastocladiales|fungus order (generic term)
+blastocoel|1
+(noun)|blastocoele|blastocele|segmentation cavity|cleavage cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+blastocoele|1
+(noun)|blastocoel|blastocele|segmentation cavity|cleavage cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+blastocoelic|1
+(adj)|cavity|bodily cavity|cavum (related term)
+blastocyst|1
+(noun)|blastosphere|blastula (generic term)|blastodermic vesicle (generic term)
+blastocyte|1
+(noun)|embryonic cell (generic term)|formative cell (generic term)
+blastocytoma|1
+(noun)|blastoma|embryonal carcinosarcoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+blastoderm|1
+(noun)|germinal disc|blastodisc|germinal area|layer (generic term)
+blastodermatic|1
+(adj)|blastodermic|layer (related term)
+blastodermic|1
+(adj)|blastodermatic|layer (related term)
+blastodermic vesicle|1
+(noun)|blastula|embryo (generic term)|conceptus (generic term)|fertilized egg (generic term)
+blastodiaceae|1
+(noun)|Blastodiaceae|family Blastodiaceae|fungus family (generic term)
+blastodisc|1
+(noun)|blastoderm|germinal disc|germinal area|layer (generic term)
+blastoff|1
+(noun)|shot|rocket firing (generic term)|rocket launching (generic term)
+blastogenesis|2
+(noun)|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|theory (generic term)
+blastogenetic|1
+(adj)|asexual reproduction|agamogenesis (related term)
+blastoma|1
+(noun)|blastocytoma|embryonal carcinosarcoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+blastomere|1
+(noun)|cell (generic term)
+blastomeric|1
+(adj)|cell (related term)
+blastomyces|1
+(noun)|Blastomyces|genus Blastomyces|fungus genus (generic term)
+blastomycete|1
+(noun)|fungus (generic term)
+blastomycosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+blastomycotic|1
+(adj)|fungal infection|mycosis (related term)
+blastoporal|1
+(adj)|blastoporic|orifice|opening|porta (related term)
+blastopore|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+blastoporic|1
+(adj)|blastoporal|orifice|opening|porta (related term)
+blastosphere|1
+(noun)|blastocyst|blastula (generic term)|blastodermic vesicle (generic term)
+blastospheric|1
+(adj)|blastular|embryo|conceptus|fertilized egg (related term)|blastula|blastodermic vesicle (related term)
+blastula|1
+(noun)|blastodermic vesicle|embryo (generic term)|conceptus (generic term)|fertilized egg (generic term)
+blastular|1
+(adj)|blastospheric|embryo|conceptus|fertilized egg (related term)|blastula|blastodermic vesicle (related term)
+blat|1
+(verb)|bleat|blate|baa|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+blat out|1
+(verb)|blare out|announce (generic term)|denote (generic term)
+blatancy|1
+(noun)|obviousness (generic term)|noticeability (generic term)|noticeableness (generic term)|patency (generic term)|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+blatant|2
+(adj)|blazing|conspicuous|unconcealed (similar term)
+(adj)|clamant|clamorous|strident|vociferous|noisy (similar term)
+blate|2
+(adj)|bashful|backward (similar term)
+(verb)|bleat|blat|baa|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+blather|2
+(noun)|blatherskite|gibberish (generic term)|gibber (generic term)
+(verb)|babble|smatter|blether|blither|chatter (generic term)|piffle (generic term)|palaver (generic term)|prate (generic term)|tittle-tattle (generic term)|twaddle (generic term)|clack (generic term)|maunder (generic term)|prattle (generic term)|blab (generic term)|gibber (generic term)|tattle (generic term)|blabber (generic term)|gabble (generic term)
+blathering|1
+(adj)|blithering|jabbering|babbling|voluble (similar term)
+blatherskite|1
+(noun)|blather|gibberish (generic term)|gibber (generic term)
+blatta|1
+(noun)|Blatta|genus Blatta|arthropod genus (generic term)
+blatta orientalis|1
+(noun)|oriental cockroach|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach (generic term)|roach (generic term)
+blattaria|1
+(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order (generic term)
+blattella|1
+(noun)|Blattella|genus Blattella|arthropod genus (generic term)
+blattella germanica|1
+(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach (generic term)|roach (generic term)
+blattidae|1
+(noun)|Blattidae|family Blattidae|arthropod family (generic term)
+blattodea|1
+(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order (generic term)
+blaze|10
+(noun)|blazing|fire (generic term)|flame (generic term)|flaming (generic term)
+(noun)|hell|trouble (generic term)
+(noun)|hell|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)
+(noun)|glare|brilliance|brightness (generic term)
+(noun)|marking (generic term)
+(verb)|shine (generic term)|beam (generic term)
+(verb)|blaze away|shoot (generic term)
+(verb)|burn (generic term)|combust (generic term)|blaze up (related term)
+(verb)|blaze out|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+(verb)|mark (generic term)
+blaze away|3
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|blaze|shoot (generic term)
+(verb)|address (generic term)|speak (generic term)
+blaze out|1
+(verb)|blaze|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+blaze up|1
+(verb)|flare|flame up|burn up|burn (generic term)|combust (generic term)
+blazer|1
+(noun)|sport jacket|sport coat|sports jacket|sports coat|jacket (generic term)
+blazing|4
+(adj)|blinding|dazzling|fulgent|glaring|glary|bright (similar term)
+(adj)|ablaze|afire|aflame|aflare|alight|burning|flaming|on fire|lighted (similar term)|lit (similar term)
+(adj)|blatant|conspicuous|unconcealed (similar term)
+(noun)|blaze|fire (generic term)|flame (generic term)|flaming (generic term)
+blazing star|2
+(noun)|Mentzelia livicaulis|Mentzelia laevicaulis|flower (generic term)
+(noun)|button snakeroot|gayfeather|gay-feather|snakeroot|wildflower (generic term)|wild flower (generic term)
+blazon|2
+(noun)|coat of arms|arms|blazonry|heraldry (generic term)
+(verb)|emblazon|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+blazon out|1
+(verb)|cry|announce (generic term)|denote (generic term)
+blazonry|1
+(noun)|coat of arms|arms|blazon|heraldry (generic term)
+bleach|5
+(noun)|white (generic term)|whiteness (generic term)
+(noun)|bleaching agent|blanching agent|whitener|agent (generic term)
+(noun)|whitening (generic term)|lightening (generic term)
+(verb)|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+(verb)|whiten (generic term)|white (generic term)
+bleach liquor|1
+(noun)|solution (generic term)
+bleach out|1
+(verb)|bleach|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+bleached|2
+(adj)|faded|washed-out|washy|colorless (similar term)|colourless (similar term)
+(adj)|colored|coloured|dyed|artificial (similar term)|unreal (similar term)
+bleacher|1
+(noun)|worker (generic term)
+bleachers|1
+(noun)|stand (generic term)
+bleaching agent|1
+(noun)|bleach|blanching agent|whitener|agent (generic term)
+bleaching clay|1
+(noun)|bleaching earth|mud (generic term)|clay (generic term)
+bleaching earth|1
+(noun)|bleaching clay|mud (generic term)|clay (generic term)
+bleaching powder|1
+(noun)|chlorinated lime|chloride of lime|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+bleak|3
+(adj)|black|dim|hopeless (similar term)
+(adj)|bare|barren|desolate|stark|inhospitable (similar term)
+(adj)|cutting|raw|cold (similar term)
+bleakness|1
+(noun)|desolation|bareness|nakedness|gloom (generic term)|gloominess (generic term)|glumness (generic term)
+blear|2
+(adj)|bleary|bleary-eyed|blear-eyed|tired (similar term)
+(verb)|blur|change (generic term)|alter (generic term)|modify (generic term)|focus (antonym)
+blear-eyed|1
+(adj)|bleary|blear|bleary-eyed|tired (similar term)
+bleary|2
+(adj)|blear|bleary-eyed|blear-eyed|tired (similar term)
+(adj)|blurred|blurry|foggy|fuzzy|hazy|muzzy|indistinct (similar term)
+bleary-eyed|1
+(adj)|bleary|blear|blear-eyed|tired (similar term)
+bleat|3
+(noun)|cry (generic term)
+(verb)|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|blate|blat|baa|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+bleb|1
+(noun)|blister|bulla|vesicle (generic term)|cyst (generic term)
+blebbed|1
+(adj)|blebby|blemished (similar term)
+blebby|2
+(adj)|blistery|unhealthy (similar term)
+(adj)|blebbed|blemished (similar term)
+blechnaceae|1
+(noun)|Blechnaceae|family Blechnaceae|fern family (generic term)
+blechnum|1
+(noun)|Blechnum|genus Blechnum|fern genus (generic term)
+blechnum spicant|1
+(noun)|deer fern|Blechnum spicant|hard fern (generic term)
+bleed|5
+(verb)|shed blood|hemorrhage|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|leech|phlebotomize|phlebotomise|treat (generic term)|care for (generic term)
+(verb)|extort (generic term)|squeeze (generic term)|rack (generic term)|gouge (generic term)|wring (generic term)
+(verb)|run|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|empty (generic term)
+bleeder|1
+(noun)|hemophiliac|haemophiliac|hemophile|haemophile|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+bleeder's disease|1
+(noun)|hemophilia|haemophilia|blood disease (generic term)|blood disorder (generic term)|sex-linked disorder (generic term)
+bleeding|1
+(noun)|hemorrhage|haemorrhage|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+bleeding heart|2
+(noun)|lyreflower|lyre-flower|Dicentra spectabilis|herb (generic term)|herbaceous plant (generic term)
+(noun)|sympathizer (generic term)|sympathiser (generic term)|well-wisher (generic term)
+bleeding tooth|1
+(noun)|Nerita peloronta|neritid (generic term)|neritid gastropod (generic term)
+bleep|2
+(noun)|beep|sound (generic term)
+(verb)|sound (generic term)|go (generic term)
+blemish|4
+(noun)|defect|mar|appearance (generic term)|visual aspect (generic term)
+(verb)|deface|disfigure|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|spot|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|flaw|damage (generic term)
+blemished|2
+(adj)|acned (similar term)|pimpled (similar term)|pimply (similar term)|pustulate (similar term)|blebbed (similar term)|blebby (similar term)|blotchy (similar term)|besmirched (similar term)|damaged (similar term)|flyblown (similar term)|spotted (similar term)|stained (similar term)|sullied (similar term)|tainted (similar term)|tarnished (similar term)|marred (similar term)|scarred (similar term)|pocked (similar term)|pockmarked (similar term)|damaged (related term)|imperfect (related term)|unblemished (antonym)
+(adj)|flawed|imperfect (similar term)
+blench|1
+(verb)|pale|blanch|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+blend|6
+(noun)|mix (generic term)|mixture (generic term)
+(noun)|portmanteau word|portmanteau|neologism (generic term)|neology (generic term)|coinage (generic term)
+(noun)|blending|combination (generic term)|combining (generic term)|compounding (generic term)
+(verb)|intermix|immingle|intermingle|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+(verb)|go|blend in|harmonize (generic term)|harmonise (generic term)|consort (generic term)|accord (generic term)|concord (generic term)|fit in (generic term)|agree (generic term)
+(verb)|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+blend in|2
+(verb)|blend|go|harmonize (generic term)|harmonise (generic term)|consort (generic term)|accord (generic term)|concord (generic term)|fit in (generic term)|agree (generic term)
+(verb)|mix in|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+blende|1
+(noun)|zinc blende|sphalerite|mineral (generic term)
+blended|1
+(adj)|alloyed (similar term)|amalgamated (similar term)|intermingled (similar term)|mixed (similar term)|integrated (similar term)|blending (similar term)|merging (similar term)|mingling (similar term)|emulsified (similar term)|homogenized (similar term)|homogenised (similar term)|unblended (antonym)
+blended whiskey|1
+(noun)|blended whisky|whiskey (generic term)|whisky (generic term)
+blended whisky|1
+(noun)|blended whiskey|whiskey (generic term)|whisky (generic term)
+blender|1
+(noun)|liquidizer|liquidiser|mixer (generic term)
+blending|3
+(adj)|merging|mingling|blended (similar term)
+(noun)|blend|combination (generic term)|combining (generic term)|compounding (generic term)
+(noun)|shading|gradation (generic term)|graduation (generic term)
+blenheim|1
+(noun)|Blenheim|pitched battle (generic term)
+blenheim spaniel|1
+(noun)|Blenheim spaniel|English toy spaniel (generic term)
+blenniidae|1
+(noun)|Blenniidae|family Blenniidae|fish family (generic term)
+blennioid|1
+(noun)|blennioid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+blennioid fish|1
+(noun)|blennioid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+blennioidea|1
+(noun)|Blennioidea|suborder Blennioidea|animal order (generic term)
+blennius|1
+(noun)|Blennius|genus Blennius|fish genus (generic term)
+blennius pholis|1
+(noun)|shanny|Blennius pholis|blenny (generic term)|combtooth blenny (generic term)
+blenny|1
+(noun)|combtooth blenny|blennioid fish (generic term)|blennioid (generic term)
+blepharism|1
+(noun)|twitch (generic term)|twitching (generic term)|vellication (generic term)
+blepharitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+blepharospasm|1
+(noun)|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+blephilia|1
+(noun)|Blephilia|genus Blephilia|asterid dicot genus (generic term)
+blephilia celiata|1
+(noun)|downy wood mint|Blephilia celiata|wood mint (generic term)
+blephilia hirsuta|1
+(noun)|hairy wood mint|Blephilia hirsuta|wood mint (generic term)
+bleriot|1
+(noun)|Bleriot|Louis Bleriot|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+bless|4
+(verb)|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|curse (antonym)
+(verb)|confer (generic term)|bestow (generic term)
+(verb)|sign|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|consecrate|hallow|sanctify|declare (generic term)|desecrate (antonym)
+blessed|7
+(adj)|blest|favored (similar term)|fortunate (similar term)|golden (similar term)|glorious (similar term)|cursed (antonym)
+(adj)|Blessed|holy (similar term)
+(adj)|blasted|blame|blamed|damn|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+(adj)|beatified|holy (similar term)
+(adj)|saved (similar term)
+(adj)|happy (similar term)
+(adj)|blessed with|endued with|endowed (similar term)
+blessed event|1
+(noun)|happy event|live birth (generic term)
+blessed thistle|2
+(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+(noun)|sweet sultan|Cnicus benedictus|thistle (generic term)
+blessed trinity|1
+(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+blessed virgin|1
+(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess (generic term)|mother (generic term)|female parent (generic term)
+blessed with|1
+(adj)|blessed|endued with|endowed (similar term)
+blessedness|1
+(noun)|beatitude|beatification|happiness (generic term)|felicity (generic term)
+blessing|5
+(noun)|approval|approving|support (generic term)|disapproval (antonym)
+(noun)|boon|good fortune (generic term)|luckiness (generic term)|good luck (generic term)
+(noun)|grace|thanksgiving|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|benediction|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|benediction|prayer (generic term)|supplication (generic term)
+blest|1
+(adj)|blessed|favored (similar term)|fortunate (similar term)|golden (similar term)|glorious (similar term)|cursed (antonym)
+blether|2
+(noun)|prate|prattle|idle talk|chin music|yak (generic term)|yack (generic term)|yakety-yak (generic term)|chatter (generic term)|cackle (generic term)
+(verb)|babble|blather|smatter|blither|chatter (generic term)|piffle (generic term)|palaver (generic term)|prate (generic term)|tittle-tattle (generic term)|twaddle (generic term)|clack (generic term)|maunder (generic term)|prattle (generic term)|blab (generic term)|gibber (generic term)|tattle (generic term)|blabber (generic term)|gabble (generic term)
+bletia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+bletia striata|1
+(noun)|Bletilla striata|Bletia striata|orchid (generic term)|orchidaceous plant (generic term)
+bletilla|1
+(noun)|Bletilla|genus Bletilla|monocot genus (generic term)|liliopsid genus (generic term)
+bletilla striata|1
+(noun)|Bletilla striata|Bletia striata|orchid (generic term)|orchidaceous plant (generic term)
+bleu|1
+(noun)|blue cheese|cheese (generic term)
+bleu cheese dressing|1
+(noun)|blue cheese dressing|dressing (generic term)|salad dressing (generic term)
+blewits|1
+(noun)|Clitocybe nuda|agaric (generic term)
+blida|1
+(noun)|Blida|city (generic term)|metropolis (generic term)|urban center (generic term)
+bligh|1
+(noun)|Bligh|William Bligh|Captain Bligh|admiral (generic term)|full admiral (generic term)
+blighia|1
+(noun)|Blighia|genus Blighia|dicot genus (generic term)|magnoliopsid genus (generic term)
+blighia sapida|1
+(noun)|akee|akee tree|Blighia sapida|fruit tree (generic term)
+blight|3
+(noun)|devastation (generic term)|desolation (generic term)
+(noun)|plant disease (generic term)
+(verb)|plague|afflict (generic term)|smite (generic term)
+blight canker|1
+(noun)|fire blight (generic term)|pear blight (generic term)
+blighted|1
+(adj)|spoilt|destroyed (similar term)
+blighter|2
+(noun)|pest|cuss|pesterer|gadfly|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+(noun)|chap|fellow|feller|lad|gent|fella|cuss|male (generic term)|male person (generic term)
+blighty|1
+(noun)|Blighty|England (generic term)
+blighty wound|1
+(noun)|wound (generic term)|injury (generic term)|combat injury (generic term)
+blimp|2
+(noun)|Colonel Blimp|Blimp|reactionary (generic term)|ultraconservative (generic term)|extreme right-winger (generic term)
+(noun)|sausage balloon|sausage|airship (generic term)|dirigible (generic term)
+blimpish|1
+(adj)|conservative (similar term)
+blind|9
+(adj)|unsighted|blinded (similar term)|blindfold (similar term)|blindfolded (similar term)|color-blind (similar term)|colour-blind (similar term)|dazzled (similar term)|deuteranopic (similar term)|green-blind (similar term)|dim-sighted (similar term)|near-blind (similar term)|purblind (similar term)|sand-blind (similar term)|visually impaired (similar term)|visually challenged (similar term)|eyeless (similar term)|sightless (similar term)|unseeing (similar term)|protanopic (similar term)|red-blind (similar term)|snow-blind (similar term)|snow-blinded (similar term)|stone-blind (similar term)|tritanopic (similar term)|blue-blind (similar term)|sighted (antonym)
+(adj)|unperceptive (similar term)|unperceiving (similar term)
+(adj)|unreasoning|irrational (similar term)
+(noun)|people (generic term)
+(noun)|screen (generic term)|cover (generic term)|covert (generic term)|concealment (generic term)
+(noun)|screen|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|subterfuge|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|dim|darken (generic term)
+blind alley|2
+(noun)|cul de sac|dead-end street|impasse|thoroughfare (generic term)
+(noun)|course (generic term)|course of action (generic term)
+blind bend|1
+(noun)|blind curve|bend (generic term)|curve (generic term)
+blind corner|1
+(noun)|corner (generic term)|street corner (generic term)|turning point (generic term)
+blind curve|1
+(noun)|blind bend|bend (generic term)|curve (generic term)
+blind date|2
+(noun)|date (generic term)|escort (generic term)
+(noun)|date (generic term)|appointment (generic term)|engagement (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+blind eel|1
+(noun)|amphiuma|congo snake|congo eel|salamander (generic term)
+blind flying|1
+(noun)|blind landing|flight (generic term)|flying (generic term)
+blind gentian|2
+(noun)|closed gentian|Gentiana clausa|gentian (generic term)
+(noun)|closed gentian|bottle gentian|Gentiana andrewsii|gentian (generic term)
+blind gut|1
+(noun)|cecum|caecum|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+blind landing|1
+(noun)|blind flying|flight (generic term)|flying (generic term)
+blind person|1
+(noun)|visually impaired person (generic term)
+blind side|1
+(noun)|side (generic term)
+blind snake|1
+(noun)|worm snake|snake (generic term)|serpent (generic term)|ophidian (generic term)
+blind spot|2
+(noun)|topic (generic term)|subject (generic term)|issue (generic term)|matter (generic term)
+(noun)|optic disc|optic disk|point (generic term)
+blind staggers|1
+(noun)|staggers|animal disease (generic term)
+blind stitching|1
+(noun)|sewing (generic term)|stitching (generic term)
+blind trust|1
+(noun)|trust (generic term)
+blinded|1
+(adj)|blind (similar term)|unsighted (similar term)
+blinder|1
+(noun)|winker|blinker|blind (generic term)|screen (generic term)
+blindfold|3
+(adj)|blindfolded|blind (similar term)|unsighted (similar term)
+(noun)|cloth covering (generic term)
+(verb)|cover (generic term)
+blindfolded|1
+(adj)|blindfold|blind (similar term)|unsighted (similar term)
+blinding|1
+(adj)|blazing|dazzling|fulgent|glaring|glary|bright (similar term)
+blindman's bluff|1
+(noun)|blindman's buff|child's game (generic term)
+blindman's buff|1
+(noun)|blindman's bluff|child's game (generic term)
+blindness|1
+(noun)|sightlessness|cecity|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+blindside|2
+(verb)|surprise (generic term)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+blindworm|2
+(noun)|slowworm|Anguis fragilis|anguid lizard (generic term)
+(noun)|caecilian|amphibian (generic term)
+blini|1
+(noun)|bliny|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+blink|4
+(noun)|eye blink|blinking|wink|winking|nictitation|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|wink|nictitate|nictate|act involuntarily (generic term)|act reflexively (generic term)
+(verb)|wink|blink away|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|flash|wink|twinkle|winkle|radiate (generic term)
+blink away|1
+(verb)|wink|blink|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+blink of an eye|1
+(noun)|flash|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+blinker|4
+(noun)|flasher|light (generic term)|light source (generic term)
+(noun)|turn signal|turn indicator|trafficator|visual signal (generic term)
+(noun)|winker|blinder|blind (generic term)|screen (generic term)
+(verb)|cover (generic term)
+blinking|3
+(adj)|winking|closed (similar term)|shut (similar term)
+(adj)|bally|bloody|blooming|crashing|flaming|fucking|unmitigated (similar term)
+(noun)|blink|eye blink|wink|winking|nictitation|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+blinking chickweed|1
+(noun)|blinks|water chickweed|Montia lamprosperma|Indian lettuce (generic term)
+blinks|1
+(noun)|blinking chickweed|water chickweed|Montia lamprosperma|Indian lettuce (generic term)
+blintz|1
+(noun)|blintze|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+blintze|1
+(noun)|blintz|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+bliny|1
+(noun)|blini|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+blip|2
+(noun)|shock (generic term)|blow (generic term)
+(noun)|pip|radar target|radar echo (generic term)
+bliss|1
+(noun)|blissfulness|cloud nine|seventh heaven|walking on air|elation (generic term)
+blissful|1
+(adj)|happy (similar term)
+blissfulness|1
+(noun)|bliss|cloud nine|seventh heaven|walking on air|elation (generic term)
+blissus|1
+(noun)|Blissus|genus Blissus|arthropod genus (generic term)
+blissus leucopterus|1
+(noun)|chinch bug|Blissus leucopterus|lygaeid (generic term)|lygaeid bug (generic term)
+blister|4
+(noun)|bulla|bleb|vesicle (generic term)|cyst (generic term)
+(verb)|vesicate|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+(verb)|scald|whip|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+blister beetle|1
+(noun)|meloid|beetle (generic term)
+blister blight|1
+(noun)|blight (generic term)
+blister copper|1
+(noun)|copper (generic term)|Cu (generic term)|atomic number 29 (generic term)
+blister pack|1
+(noun)|bubble pack|packing material (generic term)|packing (generic term)|wadding (generic term)
+blister rust|2
+(noun)|white-pine rust|white pine blister rust|rust (generic term)
+(noun)|Cronartium ribicola|rust (generic term)|rust fungus (generic term)
+blistered|1
+(adj)|injured (similar term)
+blistering|5
+(adj)|acerb|acerbic|acid|acrid|bitter|caustic|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|blistery|hot (similar term)
+(adj)|hot|red-hot|fast (similar term)
+(adj)|scathing|scalding|vituperative|critical (similar term)
+(noun)|vesiculation|vesication|organic process (generic term)|biological process (generic term)
+blistering agent|1
+(noun)|mustard gas|mustard agent|dichloroethyl sulfide|sulfur mustard|poison gas (generic term)|vesicant (generic term)|vesicatory (generic term)
+blistery|2
+(adj)|blistering|hot (similar term)
+(adj)|blebby|unhealthy (similar term)
+blithe|2
+(adj)|unconcerned (similar term)
+(adj)|blithesome|lighthearted|lightsome|light-hearted|cheerful (similar term)
+blithely|1
+(adv)|happily|merrily|mirthfully|gayly|jubilantly|with happiness|unhappily (antonym)
+blitheness|1
+(noun)|cheerfulness|happiness (generic term)|cheerlessness (antonym)
+blither|1
+(verb)|babble|blather|smatter|blether|chatter (generic term)|piffle (generic term)|palaver (generic term)|prate (generic term)|tittle-tattle (generic term)|twaddle (generic term)|clack (generic term)|maunder (generic term)|prattle (generic term)|blab (generic term)|gibber (generic term)|tattle (generic term)|blabber (generic term)|gabble (generic term)
+blithering|1
+(adj)|blathering|jabbering|babbling|voluble (similar term)
+blithesome|1
+(adj)|blithe|lighthearted|lightsome|light-hearted|cheerful (similar term)
+blitt|1
+(noun)|Bachelor of Literature|BLitt|bachelor's degree (generic term)|baccalaureate (generic term)
+blitz|3
+(noun)|safety blitz|linebacker blitzing|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(noun)|blitzkrieg|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(verb)|attack (generic term)|assail (generic term)
+blitzkrieg|2
+(noun)|blitz|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(verb)|war (generic term)
+blitzstein|1
+(noun)|Blitzstein|Marc Blitzstein|pianist (generic term)|piano player (generic term)|composer (generic term)
+blixen|1
+(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer (generic term)|author (generic term)
+blizzard|2
+(noun)|snowstorm|storm (generic term)|violent storm (generic term)
+(noun)|rash|series (generic term)
+bloat|3
+(noun)|swelling (generic term)|puffiness (generic term)|lump (generic term)
+(verb)|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+(verb)|swell (generic term)
+bloated|1
+(adj)|distended|puffed|puffy|swollen|intumescent|tumescent|tumid|turgid|unhealthy (similar term)
+bloater|1
+(noun)|herring (generic term)
+blob|2
+(noun)|amorphous shape (generic term)
+(verb)|spot|fleck|blot|change surface (generic term)
+bloc|1
+(noun)|axis|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+blocadren|1
+(noun)|timolol|Blocadren|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+bloch|1
+(noun)|Bloch|Ernest Bloch|composer (generic term)
+block|27
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|city block|area (generic term)|country (generic term)
+(noun)|cube|solid (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|computer memory unit (generic term)
+(noun)|mental block|inability (generic term)
+(noun)|pulley|pulley-block|machine (generic term)|simple machine (generic term)
+(noun)|engine block|cylinder block|cast (generic term)|casting (generic term)
+(noun)|blockage|closure|occlusion|stop|stoppage|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|auction block|platform (generic term)
+(noun)|blocking|obstruction (generic term)
+(verb)|barricade|blockade|stop|block off|block up|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|obstruct|blockade|hinder|stymie|stymy|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|stop|halt|kibosh|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|jam|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|operate (generic term)|run (generic term)
+(verb)|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+(verb)|obstruct|hide (generic term)|conceal (generic term)
+(verb)|emboss (generic term)|boss (generic term)|stamp (generic term)
+(verb)|stuff|lug|choke up|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)|unstuff (antonym)
+(verb)|obstruct|obturate|impede|occlude|jam|close up|impede (generic term)|hinder (generic term)|free (antonym)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|parry|deflect|fence (generic term)
+(verb)|forget|blank out|draw a blank|remember (antonym)
+(verb)|shape (generic term)|form (generic term)
+(verb)|freeze|immobilize|immobilise|withhold (generic term)|keep back (generic term)|unblock (antonym)|unfreeze (antonym)
+block anaesthesia|1
+(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|anesthesia (generic term)|anaesthesia (generic term)
+block and tackle|1
+(noun)|hoist (generic term)
+block anesthesia|1
+(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+block capital|1
+(noun)|block letter|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+block diagram|1
+(noun)|diagram (generic term)
+block grant|1
+(noun)|grant (generic term)|subsidization (generic term)|subsidisation (generic term)
+block letter|1
+(noun)|block capital|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+block of metal|1
+(noun)|ingot|metal bar|block (generic term)
+block off|3
+(verb)|blockade|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|barricade|block|blockade|stop|block up|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|shut off|close off|barricade (generic term)|block (generic term)|blockade (generic term)|stop (generic term)|block off (generic term)|block up (generic term)|bar (generic term)
+block out|4
+(verb)|lay out (generic term)
+(verb)|screen|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|mask|cover (generic term)
+(verb)|sketch (generic term)|outline (generic term)|adumbrate (generic term)
+block plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+block up|1
+(verb)|barricade|block|blockade|stop|block off|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+block vote|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+blockade|6
+(noun)|encirclement|military action (generic term)|action (generic term)
+(noun)|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(verb)|obstruct|block|hinder|stymie|stymy|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|barricade|block|stop|block off|block up|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|block off|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|seal off|besiege (generic term)|beleaguer (generic term)|surround (generic term)|hem in (generic term)|circumvent (generic term)
+blockade-runner|1
+(noun)|ship (generic term)
+blockaded|1
+(adj)|barricaded|barred|obstructed (similar term)
+blockading|1
+(adj)|preventive (similar term)|preventative (similar term)
+blockage|3
+(noun)|obstruction|physiological state (generic term)|physiological condition (generic term)
+(noun)|block|closure|occlusion|stop|stoppage|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|closure|occlusion|obstruction (generic term)
+blockbuster|2
+(noun)|general-purpose bomb (generic term)|GP bomb (generic term)
+(noun)|megahit|smash hit|hit (generic term)|smash (generic term)|smasher (generic term)|strike (generic term)|bang (generic term)
+blocked|2
+(adj)|out of use|closed (similar term)
+(adj)|plugged|obstructed (similar term)
+blocker|2
+(noun)|football player (generic term)|footballer (generic term)
+(noun)|blocking agent|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+blockhead|1
+(noun)|dunce|dunderhead|numskull|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+blockheaded|1
+(adj)|boneheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid (similar term)
+blockhouse|1
+(noun)|stronghold (generic term)|fastness (generic term)
+blocking|1
+(noun)|block|obstruction (generic term)
+blocking agent|1
+(noun)|blocker|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+blockish|1
+(adj)|blocky|cubic (similar term)|three-dimensional (similar term)
+blocky|1
+(adj)|blockish|cubic (similar term)|three-dimensional (similar term)
+bloemfontein|1
+(noun)|Bloemfontein|city (generic term)|metropolis (generic term)|urban center (generic term)
+blog|2
+(noun)|web log|diary (generic term)|journal (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+blogger|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+blok|1
+(noun)|Blok|Alexander Alexandrovich Blok|Aleksandr Aleksandrovich Blok|poet (generic term)
+bloke|1
+(noun)|geezer|man (generic term)|adult male (generic term)
+blolly|1
+(noun)|West Indian snowberry|Chiococca alba|shrub (generic term)|bush (generic term)
+blond|3
+(adj)|blonde|light-haired|ash-blonde (similar term)|platinum-blonde (similar term)|towheaded (similar term)|fair (similar term)|fairish (similar term)|flaxen (similar term)|sandy (similar term)|nordic (similar term)|redheaded (similar term)|brunet (antonym)
+(noun)|blonde|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|blonde|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+blonde|3
+(adj)|blond|light-haired|ash-blonde (similar term)|platinum-blonde (similar term)|towheaded (similar term)|fair (similar term)|fairish (similar term)|flaxen (similar term)|sandy (similar term)|nordic (similar term)|redheaded (similar term)|brunet (antonym)
+(noun)|blond|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|blond|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+blonde lilian|1
+(noun)|white dogtooth violet|white dog's-tooth violet|Erythronium albidum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+blondness|1
+(noun)|paleness|fairness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+blood|6
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|disposition (generic term)|temperament (generic term)
+(noun)|rake|rakehell|profligate|rip|roue|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|people (generic term)
+(verb)|daub (generic term)|smear (generic term)
+blood-and-guts|1
+(adj)|intense (similar term)
+blood-brain barrier|1
+(noun)|barrier (generic term)
+blood-filled|1
+(adj)|bloody (similar term)
+blood-oxygenation level dependent functional magnetic resonance imaging|1
+(noun)|BOLD FMRI|functional magnetic resonance imaging (generic term)|fMRI (generic term)
+blood-red|1
+(adj)|red|reddish|ruddy|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+blood-related|1
+(adj)|akin|cognate|consanguine|consanguineous|consanguineal|kin|related (similar term)
+blood-twig|1
+(noun)|common European dogwood|red dogwood|pedwood|Cornus sanguinea|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+blood agar|1
+(noun)|agar (generic term)|nutrient agar (generic term)
+blood bank|1
+(noun)|bank (generic term)
+blood berry|1
+(noun)|bloodberry|rougeberry|rouge plant|Rivina humilis|houseplant (generic term)
+blood blister|1
+(noun)|blister (generic term)|bulla (generic term)|bleb (generic term)
+blood brother|2
+(noun)|brother|male sibling (generic term)|sister (antonym)
+(noun)|ally (generic term)|friend (generic term)
+blood brotherhood|1
+(noun)|friendship (generic term)|friendly relationship (generic term)
+blood cell|1
+(noun)|blood corpuscle|corpuscle|somatic cell (generic term)|vegetative cell (generic term)
+blood clam|1
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+blood clot|1
+(noun)|grume|blood (generic term)
+blood clotting|1
+(noun)|blood coagulation|curdling (generic term)|clotting (generic term)|coagulation (generic term)
+blood coagulation|1
+(noun)|blood clotting|curdling (generic term)|clotting (generic term)|coagulation (generic term)
+blood corpuscle|1
+(noun)|blood cell|corpuscle|somatic cell (generic term)|vegetative cell (generic term)
+blood count|2
+(noun)|count (generic term)
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+blood cup|1
+(noun)|fairy cup|Peziza coccinea|discomycete (generic term)|cup fungus (generic term)
+blood cyst|1
+(noun)|hemorrhagic cyst|hematocyst|cyst (generic term)
+blood disease|1
+(noun)|blood disorder|blood dyscrasia (generic term)
+blood disorder|1
+(noun)|blood disease|blood dyscrasia (generic term)
+blood donor|1
+(noun)|donor (generic term)
+blood dyscrasia|1
+(noun)|dyscrasia (generic term)
+blood extravasation|1
+(noun)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)|extravasation (generic term)
+blood feud|1
+(noun)|vendetta|feud (generic term)
+blood flower|1
+(noun)|swallowwort|Asclepias curassavica|milkweed (generic term)|silkweed (generic term)
+blood fluke|1
+(noun)|schistosome|fluke (generic term)|trematode (generic term)|trematode worm (generic term)
+blood glucose|1
+(noun)|blood sugar|glucose (generic term)
+blood group|1
+(noun)|blood type|blood (generic term)
+blood heat|1
+(noun)|body temperature|vital sign (generic term)|temperature (generic term)
+blood kinship|1
+(noun)|consanguinity|cognation|kinship (generic term)|family relationship (generic term)|relationship (generic term)|affinity (antonym)
+blood knot|1
+(noun)|barrel knot|knot (generic term)
+blood lily|1
+(noun)|bulbous plant (generic term)
+blood line|1
+(noun)|lineage|line|line of descent|descent|bloodline|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+blood meal|1
+(noun)|feed (generic term)|provender (generic term)
+blood money|3
+(noun)|compensation (generic term)
+(noun)|reward (generic term)
+(noun)|payment (generic term)
+blood plasma|1
+(noun)|plasma (generic term)|plasm (generic term)
+blood platelet|1
+(noun)|platelet|thrombocyte|protoplasm (generic term)|living substance (generic term)
+blood poisoning|1
+(noun)|septicemia|septicaemia|sepsis (generic term)|blood disease (generic term)|blood disorder (generic term)
+blood pressure|1
+(noun)|vital sign (generic term)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+blood profile|1
+(noun)|complete blood count|CBC|blood count (generic term)
+blood pudding|1
+(noun)|blood sausage|black pudding|sausage (generic term)
+blood relation|1
+(noun)|blood relative|cognate|sib|relative (generic term)|relation (generic term)
+blood relative|1
+(noun)|blood relation|cognate|sib|relative (generic term)|relation (generic term)
+blood sausage|1
+(noun)|blood pudding|black pudding|sausage (generic term)
+blood serum|1
+(noun)|serum|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+blood spavin|1
+(noun)|spavin (generic term)
+blood sport|1
+(noun)|sport (generic term)|athletics (generic term)
+blood sugar|1
+(noun)|blood glucose|glucose (generic term)
+blood test|1
+(noun)|biopsy (generic term)
+blood transfusion|1
+(noun)|transfusion|insertion (generic term)|introduction (generic term)|intromission (generic term)
+blood type|1
+(noun)|blood group|blood (generic term)
+blood typing|1
+(noun)|diagnosis (generic term)|diagnosing (generic term)
+blood vessel|1
+(noun)|vessel (generic term)|vas (generic term)
+bloodbath|1
+(noun)|bloodletting|bloodshed|battue|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+bloodberry|1
+(noun)|blood berry|rougeberry|rouge plant|Rivina humilis|houseplant (generic term)
+bloodcurdling|1
+(adj)|hair-raising|nightmarish|alarming (similar term)
+blooded|1
+(adj)|full-blooded|full-blood|purebred (similar term)
+bloodguilt|1
+(noun)|guilt (generic term)|guiltiness (generic term)
+bloodguilty|1
+(adj)|guilty (similar term)
+bloodhound|1
+(noun)|sleuthhound|hound (generic term)|hound dog (generic term)
+bloodied|1
+(adj)|bloody (similar term)
+bloodily|1
+(adv)|bloodlessly (antonym)
+bloodiness|2
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|bloodthirstiness|disposition (generic term)|temperament (generic term)
+bloodleaf|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+bloodless|5
+(adj)|exsanguine|exsanguinous|dead (similar term)
+(adj)|nonviolent (similar term)|unbloody (similar term)|unbloodied (similar term)|bloody (antonym)
+(adj)|spiritless (similar term)
+(adj)|nonhuman (similar term)
+(adj)|ashen|blanched|livid|white|colorless (similar term)|colourless (similar term)
+bloodless revolution|1
+(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution (generic term)
+bloodlessly|1
+(adv)|without bloodshed|bloodily (antonym)
+bloodletting|2
+(noun)|medical care (generic term)|medical aid (generic term)
+(noun)|bloodbath|bloodshed|battue|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+bloodline|2
+(noun)|lineage|line|line of descent|descent|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|pedigree|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+bloodlust|1
+(noun)|desire (generic term)
+bloodmobile|1
+(noun)|motor vehicle (generic term)|automotive vehicle (generic term)
+bloodroot|1
+(noun)|puccoon|redroot|tetterwort|Sanguinaria canadensis|herb (generic term)|herbaceous plant (generic term)
+bloodshed|2
+(noun)|gore|murder (generic term)|slaying (generic term)|execution (generic term)
+(noun)|bloodbath|bloodletting|battue|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+bloodshot|1
+(adj)|unhealthy (similar term)
+bloodstain|1
+(noun)|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+bloodstained|1
+(adj)|gory|bloody (similar term)
+bloodstock|1
+(noun)|breed (generic term)|strain (generic term)|stock (generic term)
+bloodstone|1
+(noun)|heliotrope|chalcedony (generic term)|calcedony (generic term)
+bloodstream|1
+(noun)|blood (generic term)
+bloodsucker|1
+(noun)|leech|hirudinean|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+bloodsucking|2
+(adj)|bloody (similar term)
+(adj)|parasitic|parasitical|leechlike|dependent (similar term)
+bloodthirstiness|1
+(noun)|bloodiness|disposition (generic term)|temperament (generic term)
+bloodthirsty|1
+(adj)|bloody-minded|sanguinary|bloody (similar term)
+bloodwood tree|2
+(noun)|kiaat|Pterocarpus angolensis|tree (generic term)
+(noun)|logwood|logwood tree|campeachy|Haematoxylum campechianum|blackwood (generic term)|blackwood tree (generic term)
+bloodworm|1
+(noun)|polychaete (generic term)|polychete (generic term)|polychaete worm (generic term)|polychete worm (generic term)
+bloodwort|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bloodwort family|1
+(noun)|Haemodoraceae|family Haemodoraceae|monocot family (generic term)|liliopsid family (generic term)
+bloody|4
+(adj)|blood-filled (similar term)|bloodied (similar term)|bloodstained (similar term)|gory (similar term)|bloodsucking (similar term)|bloodthirsty (similar term)|bloody-minded (similar term)|sanguinary (similar term)|crimson (similar term)|red (similar term)|violent (similar term)|homicidal (similar term)|murderous (similar term)|gory (similar term)|sanguinary (similar term)|sanguineous (similar term)|slaughterous (similar term)|butcherly (similar term)|internecine (similar term)|mutually ruinous (similar term)|red (similar term)|merciless (related term)|unmerciful (related term)|bloodless (antonym)
+(adj)|bally|blinking|blooming|crashing|flaming|fucking|unmitigated (similar term)
+(verb)|cover (generic term)|spread over (generic term)
+(adv)|damn|all-fired
+bloody-minded|2
+(adj)|cantankerous|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|bloodthirsty|sanguinary|bloody (similar term)
+bloody mary|2
+(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England (generic term)
+(noun)|Bloody Mary|cocktail (generic term)
+bloody shame|1
+(noun)|Virgin Mary|Bloody Mary (generic term)
+bloom|7
+(noun)|blooming|organic process (generic term)|biological process (generic term)
+(noun)|flower|blossom|reproductive structure (generic term)
+(noun)|bloom of youth|salad days|time of life (generic term)
+(noun)|blush|flush|rosiness|good health (generic term)|healthiness (generic term)
+(noun)|flower|prime|peak|heyday|blossom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|efflorescence|crystallization (generic term)|crystallisation (generic term)|crystallizing (generic term)
+(verb)|blossom|flower|develop (generic term)
+bloom of youth|1
+(noun)|bloom|salad days|time of life (generic term)
+bloomer|2
+(noun)|flower (generic term)
+(noun)|blunder|blooper|bungle|pratfall|foul-up|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+bloomeria|1
+(noun)|Bloomeria|genus Bloomeria|liliid monocot genus (generic term)
+bloomeria crocea|1
+(noun)|golden star|golden stars|Bloomeria crocea|liliaceous plant (generic term)
+bloomers|1
+(noun)|pants|drawers|knickers|underpants (generic term)
+bloomfield|1
+(noun)|Bloomfield|Leonard Bloomfield|linguist (generic term)|linguistic scientist (generic term)
+blooming|2
+(adj)|bally|blinking|bloody|crashing|flaming|fucking|unmitigated (similar term)
+(noun)|bloom|organic process (generic term)|biological process (generic term)
+blooming-fool begonia|1
+(noun)|Christmas begonia|Begonia cheimantha|begonia (generic term)
+bloomington|1
+(noun)|Bloomington|town (generic term)
+bloomsbury|1
+(noun)|Bloomsbury|city district (generic term)
+bloomsbury group|1
+(noun)|Bloomsbury Group|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+blooper|1
+(noun)|blunder|bloomer|bungle|pratfall|foul-up|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+blossom|4
+(noun)|flower|bloom|reproductive structure (generic term)
+(noun)|flower|prime|peak|heyday|bloom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|bloom|flower|develop (generic term)
+(verb)|blossom out|blossom forth|unfold|develop (generic term)
+blossom forth|1
+(verb)|blossom|blossom out|unfold|develop (generic term)
+blossom out|1
+(verb)|blossom|blossom forth|unfold|develop (generic term)
+blossoming|1
+(noun)|flowering|florescence|inflorescence|anthesis|efflorescence|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+blot|4
+(noun)|smudge|spot|daub|smear|smirch|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|smear|smirch|spot|stain|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|absorb (generic term)|suck (generic term)|imbibe (generic term)|soak up (generic term)|sop up (generic term)|suck up (generic term)|draw (generic term)|take in (generic term)|take up (generic term)
+(verb)|spot|fleck|blob|change surface (generic term)
+blot out|1
+(verb)|obscure|obliterate|veil|hide|change (generic term)|alter (generic term)|modify (generic term)
+blotch|2
+(noun)|splodge|splotch|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+(verb)|mottle|streak|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+blotched|1
+(adj)|blotchy|splotched|patterned (similar term)
+blotchy|2
+(adj)|blotched|splotched|patterned (similar term)
+(adj)|blemished (similar term)
+blotted out|1
+(adj)|obliterate|obliterated|destroyed (similar term)
+blotter|2
+(noun)|blotting paper|paper (generic term)
+(noun)|day book|police blotter|rap sheet|charge sheet|written record (generic term)|written account (generic term)
+blotting paper|1
+(noun)|blotter|paper (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+blouse|1
+(noun)|top (generic term)
+bloviate|1
+(verb)|orate (generic term)
+blow|27
+(noun)|stroke (generic term)
+(noun)|bump|impact (generic term)
+(noun)|reverse|reversal|setback|black eye|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|shock|surprise (generic term)
+(noun)|gust|blast|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|coke|nose candy|snow|C|cocaine (generic term)|cocain (generic term)
+(noun)|puff|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+(verb)|exhale (generic term)|expire (generic term)|breathe out (generic term)
+(verb)|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|float|drift|be adrift|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|waste|squander|use (generic term)|expend (generic term)|conserve (antonym)
+(verb)|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|sound (generic term)
+(verb)|fellate|go down on|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|send (generic term)|direct (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|spurt (generic term)|spirt (generic term)|gush (generic term)|spout (generic term)
+(verb)|shove off|shove along|go (generic term)|go away (generic term)|depart (generic term)
+(verb)|lay (generic term)|put down (generic term)|repose (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|boast|tout|swash|shoot a line|brag|gas|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|rest (generic term)
+(verb)|blow out|burn out|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+(verb)|burst (generic term)|split (generic term)|break open (generic term)
+blow-by-blow|1
+(adj)|careful (similar term)
+blow-dry|1
+(verb)|dry (generic term)|dry out (generic term)
+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 (generic term)
+blow drier|1
+(noun)|hand blower|blow dryer|hair dryer|hair drier|blower (generic term)|dryer (generic term)|drier (generic term)
+blow dryer|1
+(noun)|hand blower|blow drier|hair dryer|hair drier|blower (generic term)|dryer (generic term)|drier (generic term)
+blow fly|1
+(noun)|blowfly|fly (generic term)
+blow gas|1
+(noun)|blowing gas|gas (generic term)
+blow off|1
+(verb)|detach (generic term)|come off (generic term)|come away (generic term)
+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 (generic term)
+blow out|3
+(verb)|burn out|blow|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+(verb)|snuff out|extinguish|quench|ignite (antonym)
+(verb)|erupt (generic term)|ignite (generic term)|catch fire (generic term)|take fire (generic term)|combust (generic term)|conflagrate (generic term)
+blow out of the water|1
+(verb)|shock|stun|floor|ball over|take aback|surprise (generic term)
+blow over|1
+(verb)|evanesce|fade|pass off|fleet|pass|disappear (generic term)|vanish (generic term)|go away (generic term)
+blow tube|2
+(noun)|blowtube|blowpipe|tube (generic term)|tubing (generic term)
+(noun)|blowgun|blowpipe|blowtube|tube (generic term)|tubing (generic term)
+blow up|8
+(verb)|explode|detonate|set off|change integrity (generic term)
+(verb)|enlarge|magnify|increase (generic term)|reduce (antonym)
+(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 (generic term)
+(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|detonate|explode
+(verb)|inflate|expand|amplify|increase (generic term)
+(verb)|inflate|expand (generic term)|deflate (antonym)
+(verb)|puff|puff up|puff out|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+blowback|2
+(noun)|backfire|explosion (generic term)|detonation (generic term)|blowup (generic term)
+(noun)|misinformation (generic term)
+blowball|1
+(noun)|dandelion|herb (generic term)|herbaceous plant (generic term)
+blower|3
+(noun)|device (generic term)
+(noun)|electric fan|fan (generic term)
+(noun)|cetacean|cetacean mammal|aquatic mammal (generic term)
+blowfish|2
+(noun)|sea squab|puffer|pufferfish|saltwater fish (generic term)
+(noun)|puffer|pufferfish|globefish|plectognath (generic term)|plectognath fish (generic term)
+blowfly|1
+(noun)|blow fly|fly (generic term)
+blowgun|1
+(noun)|blowpipe|blowtube|blow tube|tube (generic term)|tubing (generic term)
+blowhard|1
+(noun)|bragger|braggart|boaster|line-shooter|vaunter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+blowhole|2
+(noun)|spiracle (generic term)
+(noun)|vent|venthole|vent-hole|hole (generic term)
+blowing|1
+(noun)|processing (generic term)
+blowing gas|1
+(noun)|blow gas|gas (generic term)
+blowing up|1
+(noun)|berating|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+blowjob|1
+(noun)|cock sucking|fellatio (generic term)|fellation (generic term)
+blowlamp|1
+(noun)|blowtorch|torch|burner (generic term)
+blown|3
+(adj)|moving (similar term)
+(adj)|formed (similar term)
+(adj)|gasping|out of breath|panting|pursy|short-winded|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+blown-up|2
+(adj)|blown up|inflated (similar term)
+(adj)|enlarged|large (similar term)|big (similar term)
+blown up|1
+(adj)|blown-up|inflated (similar term)
+blowout|3
+(noun)|runaway|romp|laugher|shoo-in|walkaway|victory (generic term)|triumph (generic term)
+(noun)|malfunction (generic term)
+(noun)|gala|gala affair|jamboree|celebration (generic term)|festivity (generic term)
+blowpipe|2
+(noun)|blowtube|blow tube|tube (generic term)|tubing (generic term)
+(noun)|blowgun|blowtube|blow tube|tube (generic term)|tubing (generic term)
+blowsy|1
+(adj)|blowzy|slatternly|sluttish|untidy (similar term)
+blowtorch|1
+(noun)|torch|blowlamp|burner (generic term)
+blowtube|2
+(noun)|blow tube|blowpipe|tube (generic term)|tubing (generic term)
+(noun)|blowgun|blowpipe|blow tube|tube (generic term)|tubing (generic term)
+blowup|3
+(noun)|explosion|detonation|discharge (generic term)
+(noun)|effusion|gush|outburst|ebullition|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+(noun)|enlargement|magnification|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+blowy|1
+(adj)|breezy|windy|stormy (similar term)
+blowzy|1
+(adj)|blowsy|slatternly|sluttish|untidy (similar term)
+blt|1
+(noun)|bacon-lettuce-tomato sandwich|BLT|sandwich (generic term)
+blu-82|1
+(noun)|Big Blue|BLU-82|fragmentation bomb (generic term)|antipersonnel bomb (generic term)|anti-personnel bomb (generic term)|daisy cutter (generic term)
+blub|1
+(verb)|snivel|sniffle|blubber|snuffle|cry (generic term)|weep (generic term)
+blubber|4
+(noun)|animal oil (generic term)
+(noun)|fatness|fat|avoirdupois|bodily property (generic term)|leanness (antonym)
+(verb)|snivel|sniffle|blub|snuffle|cry (generic term)|weep (generic term)
+(verb)|blubber out|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blubber out|1
+(verb)|blubber|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blubberer|1
+(noun)|weeper (generic term)|crier (generic term)
+blubbery|1
+(adj)|fat (similar term)
+blucher|2
+(noun)|Blucher|von Blucher|G. L. von Blucher|Gebhard Leberecht von Blucher|general (generic term)|full general (generic term)
+(noun)|shoe (generic term)
+bludgeon|3
+(noun)|club (generic term)
+(verb)|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|club|hit (generic term)
+bludgeoner|1
+(noun)|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+blue|16
+(adj)|bluish|blueish|chromatic (similar term)
+(adj)|northern (similar term)
+(adj)|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected (similar term)
+(adj)|blasphemous|profane|dirty (similar term)
+(adj)|gamy|gamey|juicy|naughty|racy|risque|spicy|sexy (similar term)
+(adj)|aristocratic|aristocratical|blue-blooded|gentle|patrician|noble (similar term)
+(adj)|puritan|puritanic|puritanical|nonindulgent (similar term)|strict (similar term)
+(adj)|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(noun)|blueness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|blue sky|blue air|wild blue yonder|sky (generic term)
+(noun)|bluing|blueing|dye (generic term)|dyestuff (generic term)
+(noun)|amobarbital sodium|blue angel|blue devil|Amytal|amobarbital (generic term)
+(noun)|lycaenid (generic term)|lycaenid butterfly (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+blue-belly|1
+(noun)|western fence lizard|swift|Sceloporus occidentalis|fence lizard (generic term)
+blue-black|1
+(adj)|bluish black|achromatic (similar term)
+blue-blind|1
+(adj)|tritanopic|blind (similar term)|unsighted (similar term)
+blue-blindness|1
+(noun)|tritanopia|yellow-blue dichromacy (generic term)|yellow-blue color blindness (generic term)
+blue-blooded|1
+(adj)|aristocratic|aristocratical|blue|gentle|patrician|noble (similar term)
+blue-chip|1
+(adj)|valuable (similar term)
+blue-chip stock|1
+(noun)|blue chip|common stock (generic term)|common shares (generic term)|ordinary shares (generic term)
+blue-collar|2
+(adj)|industrial (similar term)|manual (similar term)|wage-earning (similar term)|working-class (similar term)|unskilled (related term)|white-collar (antonym)
+(adj)|propertyless|wage-earning|working-class|lower-class (similar term)|low-class (similar term)
+blue-eyed|2
+(adj)|fair-haired|white-haired|loved (similar term)
+(adj)|eyed (similar term)
+blue-eyed african daisy|1
+(noun)|blue-eyed African daisy|Arctotis stoechadifolia|Arctotis venusta|flower (generic term)
+blue-eyed grass|1
+(noun)|iridaceous plant (generic term)
+blue-eyed mary|1
+(noun)|blue-eyed Mary|Collinsia verna|wildflower (generic term)|wild flower (generic term)
+blue-flowered|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+blue-fruited|1
+(adj)|fruitful (similar term)
+blue-gray|1
+(adj)|blue-grey|bluish-grey|bluish-gray|achromatic (similar term)
+blue-green|1
+(adj)|bluish green|cyan|teal|chromatic (similar term)
+blue-green algae|1
+(noun)|cyanobacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+blue-grey|1
+(adj)|blue-gray|bluish-grey|bluish-gray|achromatic (similar term)
+blue-headed vireo|1
+(noun)|Vireo solitarius solitarius|vireo (generic term)
+blue-lilac|1
+(adj)|bluish-lilac|chromatic (similar term)
+blue-pencil|1
+(verb)|edit|delete|censor (generic term)
+blue-purple|1
+(adj)|bluish-purple|chromatic (similar term)
+blue-ribbon|1
+(adj)|select|superior (similar term)
+blue-sky|1
+(adj)|noncommercial (similar term)
+blue-violet|1
+(adj)|bluish-violet|chromatic (similar term)
+blue-white|1
+(adj)|bluish-white|cool-white|achromatic (similar term)
+blue-winged teal|1
+(noun)|bluewing|Anas discors|teal (generic term)
+blue african lily|1
+(noun)|African lily|African tulip|blue African lily|Agapanthus africanus|agapanthus (generic term)|lily of the Nile (generic term)
+blue air|1
+(noun)|blue sky|blue|wild blue yonder|sky (generic term)
+blue angel|1
+(noun)|amobarbital sodium|blue|blue devil|Amytal|amobarbital (generic term)
+blue ash|1
+(noun)|Fraxinus quadrangulata|ash (generic term)|ash tree (generic term)
+blue baby|1
+(noun)|baby (generic term)|babe (generic term)|infant (generic term)
+blue blood|1
+(noun)|aristocrat|patrician|leader (generic term)
+blue book|3
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+(noun)|directory (generic term)
+(noun)|booklet (generic term)|brochure (generic term)|folder (generic term)|leaflet (generic term)|pamphlet (generic term)
+blue bugle|1
+(noun)|erect bugle|Ajuga genevensis|bugle (generic term)|bugleweed (generic term)
+blue bull|1
+(noun)|nilgai|nylghai|nylghau|Boselaphus tragocamelus|antelope (generic term)
+blue cardinal flower|1
+(noun)|great lobelia|Lobelia siphilitica|lobelia (generic term)
+blue cat|1
+(noun)|blue catfish|blue channel catfish|blue channel cat|channel catfish (generic term)|channel cat (generic term)|Ictalurus punctatus (generic term)
+blue catfish|1
+(noun)|blue cat|blue channel catfish|blue channel cat|channel catfish (generic term)|channel cat (generic term)|Ictalurus punctatus (generic term)
+blue channel cat|1
+(noun)|blue catfish|blue cat|blue channel catfish|channel catfish (generic term)|channel cat (generic term)|Ictalurus punctatus (generic term)
+blue channel catfish|1
+(noun)|blue catfish|blue cat|blue channel cat|channel catfish (generic term)|channel cat (generic term)|Ictalurus punctatus (generic term)
+blue cheese|1
+(noun)|bleu|cheese (generic term)
+blue cheese dressing|2
+(noun)|Roquefort dressing|dressing (generic term)|salad dressing (generic term)
+(noun)|bleu cheese dressing|dressing (generic term)|salad dressing (generic term)
+blue chip|2
+(noun)|blue-chip stock|common stock (generic term)|common shares (generic term)|ordinary shares (generic term)
+(noun)|chip (generic term)|poker chip (generic term)
+blue cohosh|1
+(noun)|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+blue columbine|1
+(noun)|Aquilegia coerulia|Aquilegia scopulorum calcarea|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+blue copperas|1
+(noun)|blue vitriol|blue stone|chalcanthite|copper sulfate (generic term)|copper sulphate (generic term)|cupric sulfate (generic term)|cupric sulphate (generic term)
+blue crab|2
+(noun)|crab (generic term)|crabmeat (generic term)
+(noun)|Callinectes sapidus|swimming crab (generic term)
+blue curls|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+blue daisy|1
+(noun)|blue marguerite|Felicia amelloides|flower (generic term)
+blue darter|1
+(noun)|Cooper's hawk|Accipiter cooperii|hawk (generic term)
+blue devil|2
+(noun)|blueweed|blue thistle|viper's bugloss|Echium vulgare|herb (generic term)|herbaceous plant (generic term)
+(noun)|amobarbital sodium|blue|blue angel|Amytal|amobarbital (generic term)
+blue devils|1
+(noun)|blues|megrims|vapors|vapours|depression (generic term)
+blue elder|1
+(noun)|blue elderberry|Sambucus caerulea|elder (generic term)|elderberry bush (generic term)
+blue elderberry|1
+(noun)|blue elder|Sambucus caerulea|elder (generic term)|elderberry bush (generic term)
+blue false indigo|1
+(noun)|Baptisia australis|wild indigo (generic term)|false indigo (generic term)
+blue fig|2
+(noun)|quandong|fruit (generic term)
+(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|Elaeocarpus grandis|tree (generic term)
+blue flag|1
+(noun)|Iris versicolor|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+blue fleabane|1
+(noun)|Erigeron acer|fleabane (generic term)
+blue fox|1
+(noun)|arctic fox (generic term)|white fox (generic term)|Alopex lagopus (generic term)
+blue funk|1
+(noun)|funk|depression (generic term)
+blue goose|1
+(noun)|Chen caerulescens|goose (generic term)
+blue grama|1
+(noun)|Bouteloua gracilis|grama (generic term)|grama grass (generic term)|gramma (generic term)|gramma grass (generic term)
+blue grass|1
+(noun)|bluegrass|grass (generic term)
+blue green|1
+(noun)|bluish green|teal|green (generic term)|greenness (generic term)|viridity (generic term)
+blue gum|1
+(noun)|fever tree|Eucalyptus globulus|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+blue jack|1
+(noun)|coho|cohoe|coho salmon|silver salmon|Oncorhynchus kisutch|salmon (generic term)
+blue jasmine|1
+(noun)|blue jessamine|curly clematis|marsh clematis|Clematis crispa|clematis (generic term)
+blue jay|1
+(noun)|jaybird|Cyanocitta cristata|New World jay (generic term)
+blue jean|1
+(noun)|jean|denim|trouser (generic term)|pant (generic term)|workwear (generic term)
+blue jessamine|1
+(noun)|blue jasmine|curly clematis|marsh clematis|Clematis crispa|clematis (generic term)
+blue jets|1
+(noun)|jets|atmospheric electricity (generic term)
+blue joke|1
+(noun)|dirty joke|dirty story|blue story|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+blue law|1
+(noun)|law (generic term)
+blue lotus|2
+(noun)|Nymphaea stellata|water lily (generic term)
+(noun)|Nymphaea caerulea|water lily (generic term)
+blue mahoe|1
+(noun)|Cuban bast|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus (generic term)
+blue marguerite|1
+(noun)|blue daisy|Felicia amelloides|flower (generic term)
+blue marlin|1
+(noun)|Makaira nigricans|marlin (generic term)
+blue mockingbird|1
+(noun)|Melanotis caerulescens|oscine (generic term)|oscine bird (generic term)
+blue mold fungus|1
+(noun)|Peronospora tabacina|downy mildew (generic term)|false mildew (generic term)
+blue moon|1
+(noun)|long time (generic term)|age (generic term)|years (generic term)
+blue mountain tea|1
+(noun)|Blue Mountain tea|sweet goldenrod|Solidago odora|goldenrod (generic term)
+blue murder|1
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+blue nile|1
+(noun)|Blue Nile|headstream (generic term)
+blue note|1
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+blue orchid|1
+(noun)|Vanda coerulea|vanda (generic term)
+blue pea|1
+(noun)|butterfly pea|Clitoria turnatea|vine (generic term)
+blue peafowl|1
+(noun)|Pavo cristatus|peafowl (generic term)|bird of Juno (generic term)
+blue peter|1
+(noun)|code flag (generic term)|nautical signal flag (generic term)
+blue pickerel|1
+(noun)|blue pike|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye (generic term)|walleyed pike (generic term)|jack salmon (generic term)|dory (generic term)|Stizostedion vitreum (generic term)
+blue pike|1
+(noun)|blue pickerel|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye (generic term)|walleyed pike (generic term)|jack salmon (generic term)|dory (generic term)|Stizostedion vitreum (generic term)
+blue pikeperch|1
+(noun)|blue pike|blue pickerel|blue walleye|Strizostedion vitreum glaucum|walleye (generic term)|walleyed pike (generic term)|jack salmon (generic term)|dory (generic term)|Stizostedion vitreum (generic term)
+blue pimpernel|1
+(noun)|blue skullcap|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb (generic term)|herbaceous plant (generic term)
+blue point|2
+(noun)|bluepoint|huitre (generic term)|oyster (generic term)
+(noun)|bluepoint|oyster (generic term)
+blue point siamese|1
+(noun)|blue point Siamese|Siamese cat (generic term)|Siamese (generic term)
+blue pointed|1
+(noun)|bonito shark|Isurus glaucus|mako (generic term)|mako shark (generic term)
+blue poppy|1
+(noun)|Meconopsis betonicifolia|poppy (generic term)
+blue racer|1
+(noun)|Coluber constrictor flaviventris|blacksnake (generic term)|black racer (generic term)|Coluber constrictor (generic term)
+blue ribbon|1
+(noun)|cordon bleu|badge (generic term)
+blue ribbon commission|1
+(noun)|blue ribbon committee|committee (generic term)|commission (generic term)
+blue ribbon committee|1
+(noun)|blue ribbon commission|committee (generic term)|commission (generic term)
+blue ribbon jury|1
+(noun)|special jury|jury (generic term)
+blue ridge|1
+(noun)|Blue Ridge Mountains|Blue Ridge|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+blue ridge mountains|1
+(noun)|Blue Ridge Mountains|Blue Ridge|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+blue runner|1
+(noun)|runner|Caranx crysos|jack (generic term)
+blue sage|4
+(noun)|Salvia reflexa|Salvia lancifolia|sage (generic term)|salvia (generic term)
+(noun)|mealy sage|Salvia farinacea|sage (generic term)|salvia (generic term)
+(noun)|Salvia azurea|sage (generic term)|salvia (generic term)
+(noun)|big sagebrush|Seriphidium tridentatum|Artemisia tridentata|sagebrush (generic term)|sage brush (generic term)
+blue shark|1
+(noun)|great blue shark|Prionace glauca|requiem shark (generic term)
+blue skullcap|1
+(noun)|blue pimpernel|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb (generic term)|herbaceous plant (generic term)
+blue sky|1
+(noun)|blue|blue air|wild blue yonder|sky (generic term)
+blue sky law|1
+(noun)|law (generic term)
+blue star|1
+(noun)|Amsonia tabernaemontana|subshrub (generic term)|suffrutex (generic term)
+blue stem|1
+(noun)|bluestem|Andropogon furcatus|Andropogon gerardii|grass (generic term)
+blue stone|1
+(noun)|blue vitriol|blue copperas|chalcanthite|copper sulfate (generic term)|copper sulphate (generic term)|cupric sulfate (generic term)|cupric sulphate (generic term)
+blue story|1
+(noun)|dirty joke|dirty story|blue joke|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+blue succory|1
+(noun)|cupid's dart|Catananche caerula|catananche (generic term)
+blue thistle|1
+(noun)|blueweed|blue devil|viper's bugloss|Echium vulgare|herb (generic term)|herbaceous plant (generic term)
+blue tit|1
+(noun)|tomtit|Parus caeruleus|titmouse (generic term)|tit (generic term)
+blue toadflax|1
+(noun)|old-field toadflax|Linaria canadensis|toadflax (generic term)|butter-and-eggs (generic term)|wild snapdragon (generic term)|devil's flax (generic term)|Linaria vulgaris (generic term)
+blue tulip|1
+(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|prairie anemone|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower (generic term)|pasque flower (generic term)
+blue vitriol|1
+(noun)|blue copperas|blue stone|chalcanthite|copper sulfate (generic term)|copper sulphate (generic term)|cupric sulfate (generic term)|cupric sulphate (generic term)
+blue wall|1
+(noun)|blue wall of silence|wall of silence|cover-up (generic term)
+blue wall of silence|1
+(noun)|blue wall|wall of silence|cover-up (generic term)
+blue walleye|1
+(noun)|blue pike|blue pickerel|blue pikeperch|Strizostedion vitreum glaucum|walleye (generic term)|walleyed pike (generic term)|jack salmon (generic term)|dory (generic term)|Stizostedion vitreum (generic term)
+blue whale|1
+(noun)|sulfur bottom|Balaenoptera musculus|baleen whale (generic term)|whalebone whale (generic term)
+blueback salmon|1
+(noun)|sockeye|sockeye salmon|red salmon|Oncorhynchus nerka|salmon (generic term)
+bluebeard|1
+(noun)|Bluebeard|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+bluebell|3
+(noun)|wild hyacinth|wood hyacinth|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+(noun)|prairie gentian|tulip gentian|Eustoma grandiflorum|wildflower (generic term)|wild flower (generic term)
+(noun)|harebell|Campanula rotundifolia|campanula (generic term)|bellflower (generic term)
+blueberry|2
+(noun)|blueberry bush|shrub (generic term)|bush (generic term)
+(noun)|berry (generic term)
+blueberry bush|1
+(noun)|blueberry|shrub (generic term)|bush (generic term)
+blueberry pie|1
+(noun)|pie (generic term)
+blueberry root|1
+(noun)|blue cohosh|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+blueberry yogurt|1
+(noun)|yogurt (generic term)|yoghurt (generic term)|yoghourt (generic term)
+bluebill|1
+(noun)|scaup|scaup duck|broadbill|duck (generic term)
+bluebird|2
+(noun)|fairy bluebird|oscine (generic term)|oscine bird (generic term)
+(noun)|thrush (generic term)
+bluebonnet|2
+(noun)|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine (generic term)|lupin (generic term)
+(noun)|Balmoral|cap (generic term)
+bluebottle|2
+(noun)|cornflower|bachelor's button|Centaurea cyanus|flower (generic term)
+(noun)|Calliphora vicina|blowfly (generic term)|blow fly (generic term)
+bluecoat|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bluefin|2
+(noun)|bluefin tuna|tuna (generic term)|tuna fish (generic term)|tunny (generic term)
+(noun)|bluefin tuna|horse mackerel|Thunnus thynnus|tuna (generic term)|tunny (generic term)
+bluefin tuna|2
+(noun)|bluefin|tuna (generic term)|tuna fish (generic term)|tunny (generic term)
+(noun)|bluefin|horse mackerel|Thunnus thynnus|tuna (generic term)|tunny (generic term)
+bluefish|2
+(noun)|Pomatomus saltatrix|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|saltwater fish (generic term)
+bluegill|1
+(noun)|Lepomis macrochirus|freshwater bream (generic term)|bream (generic term)
+bluegrass|3
+(noun)|blue grass|grass (generic term)
+(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|country music (generic term)|country and western (generic term)|C and W (generic term)
+bluegrass country|1
+(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+bluegrass region|1
+(noun)|Bluegrass|Bluegrass Country|Bluegrass Region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+bluegrass state|1
+(noun)|Kentucky|Bluegrass State|KY|American state (generic term)
+bluegrass stater|1
+(noun)|Kentuckian|Bluegrass Stater|American (generic term)
+bluehead|1
+(noun)|Thalassoma bifasciatum|wrasse (generic term)
+blueing|2
+(noun)|bluing|blue|dye (generic term)|dyestuff (generic term)
+(noun)|bluing|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+blueish|1
+(adj)|blue|bluish|chromatic (similar term)
+bluejack oak|1
+(noun)|turkey oak|Quercus incana|oak (generic term)|oak tree (generic term)
+bluejacket|1
+(noun)|navy man|sailor|sailor boy|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+blueness|1
+(noun)|blue|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+bluenose|1
+(noun)|Nova Scotian|Canadian (generic term)
+bluepoint|2
+(noun)|blue point|huitre (generic term)|oyster (generic term)
+(noun)|blue point|oyster (generic term)
+blueprint|3
+(noun)|design|pattern|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(verb)|draft|draught|design (generic term)|plan (generic term)
+blueprint paper|1
+(noun)|paper (generic term)
+blues|2
+(noun)|black music (generic term)|African-American music (generic term)|folk song (generic term)|folksong (generic term)|folk ballad (generic term)
+(noun)|blue devils|megrims|vapors|vapours|depression (generic term)
+bluestem|1
+(noun)|blue stem|Andropogon furcatus|Andropogon gerardii|grass (generic term)
+bluestem wheatgrass|1
+(noun)|western wheatgrass|Agropyron smithii|wheatgrass (generic term)|wheat-grass (generic term)
+bluestocking|1
+(noun)|bas bleu|woman (generic term)|adult female (generic term)
+bluestone|1
+(noun)|sandstone (generic term)
+bluethroat|1
+(noun)|Erithacus svecicus|thrush (generic term)
+bluethroat pikeblenny|1
+(noun)|Chaenopsis ocellata|pikeblenny (generic term)
+bluetick|1
+(noun)|hound (generic term)|hound dog (generic term)
+bluetongue|1
+(noun)|catarrhal fever (generic term)
+blueweed|1
+(noun)|blue devil|blue thistle|viper's bugloss|Echium vulgare|herb (generic term)|herbaceous plant (generic term)
+bluewing|1
+(noun)|blue-winged teal|Anas discors|teal (generic term)
+bluff|7
+(adj)|bold|sheer|steep (similar term)
+(adj)|direct (similar term)
+(noun)|bank (generic term)
+(noun)|pretense (generic term)|pretence (generic term)|feigning (generic term)|dissembling (generic term)
+(noun)|four flush|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(verb)|bluff out|move (generic term)|go (generic term)
+(verb)|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+bluff out|1
+(verb)|bluff|move (generic term)|go (generic term)
+bluffer|1
+(noun)|four-flusher|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+bluffly|1
+(adv)|bluntly|brusquely|flat out|roundly
+bluffness|1
+(noun)|frankness (generic term)|outspokenness (generic term)
+bluing|2
+(noun)|blueing|blue|dye (generic term)|dyestuff (generic term)
+(noun)|blueing|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+bluish|1
+(adj)|blue|blueish|chromatic (similar term)
+bluish-gray|1
+(adj)|blue-grey|blue-gray|bluish-grey|achromatic (similar term)
+bluish-grey|1
+(adj)|blue-grey|blue-gray|bluish-gray|achromatic (similar term)
+bluish-lilac|1
+(adj)|blue-lilac|chromatic (similar term)
+bluish-purple|1
+(adj)|blue-purple|chromatic (similar term)
+bluish-violet|1
+(adj)|blue-violet|chromatic (similar term)
+bluish-white|1
+(adj)|blue-white|cool-white|achromatic (similar term)
+bluish black|1
+(adj)|blue-black|achromatic (similar term)
+bluish green|2
+(adj)|blue-green|cyan|teal|chromatic (similar term)
+(noun)|blue green|teal|green (generic term)|greenness (generic term)|viridity (generic term)
+blunder|4
+(noun)|blooper|bloomer|bungle|pratfall|foul-up|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|sin|boob|goof|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|fumble|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|blurt out|blurt|blunder out|ejaculate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blunder out|1
+(verb)|blurt out|blurt|blunder|ejaculate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blunderbuss|1
+(noun)|musket (generic term)
+blunderer|1
+(noun)|bungler|fumbler|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+blunt|9
+(adj)|pointless (similar term)|unpointed (similar term)
+(adj)|dull (similar term)
+(adj)|candid|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+(adj)|crude|stark|unconditional (similar term)
+(verb)|weaken (generic term)
+(verb)|numb|benumb|dull|desensitize (generic term)|desensitise (generic term)
+(verb)|dull|change (generic term)|alter (generic term)|modify (generic term)|sharpen (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|deaden|change (generic term)|alter (generic term)|modify (generic term)|enliven (antonym)
+blunt-leaf heath|1
+(noun)|common heath|Epacris obtusifolia|epacris (generic term)
+blunt file|1
+(noun)|file (generic term)|taper file (antonym)
+blunt trauma|1
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+blunted|1
+(adj)|dulled|dull (similar term)
+bluntly|1
+(adv)|bluffly|brusquely|flat out|roundly
+bluntness|2
+(noun)|inconsideration (generic term)|inconsiderateness (generic term)|thoughtlessness (generic term)
+(noun)|dullness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|sharpness (antonym)|sharpness (antonym)
+blur|7
+(noun)|fuzz|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(verb)|film over|glaze over
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|focus (antonym)
+(verb)|confuse|obscure|obnubilate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|smear|smudge|smutch|rub (generic term)
+(verb)|blear|change (generic term)|alter (generic term)|modify (generic term)|focus (antonym)
+(verb)|dim|slur|weaken (generic term)|slur over (related term)|focus (antonym)
+blurb|1
+(noun)|endorsement|indorsement|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+blurred|2
+(adj)|bleary|blurry|foggy|fuzzy|hazy|muzzy|indistinct (similar term)
+(adj)|clouded|unclear (similar term)
+blurriness|1
+(noun)|indistinctness|softness|fogginess|fuzziness|opacity (generic term)|opaqueness (generic term)|sharpness (antonym)|distinctness (antonym)
+blurry|1
+(adj)|bleary|blurred|foggy|fuzzy|hazy|muzzy|indistinct (similar term)
+blurt|1
+(verb)|blurt out|blunder out|blunder|ejaculate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blurt out|1
+(verb)|blurt|blunder out|blunder|ejaculate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+blush|4
+(noun)|bloom|flush|rosiness|good health (generic term)|healthiness (generic term)
+(noun)|flush|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|crimson|flush|redden|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|redden (generic term)
+blush wine|1
+(noun)|pink wine|rose|rose wine|wine (generic term)|vino (generic term)
+blusher|2
+(noun)|blushing mushroom|Amanita rubescens|agaric (generic term)
+(noun)|rouge|paint|makeup (generic term)|make-up (generic term)|war paint (generic term)
+blushful|2
+(adj)|blushing|red-faced|discomposed (similar term)
+(adj)|rosy|chromatic (similar term)
+blushing|1
+(adj)|blushful|red-faced|discomposed (similar term)
+blushing mushroom|1
+(noun)|blusher|Amanita rubescens|agaric (generic term)
+bluster|7
+(noun)|confusion (generic term)
+(noun)|bravado|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+(noun)|gust (generic term)|blast (generic term)|blow (generic term)
+(noun)|braggadocio|rodomontade|rhodomontade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(verb)|blow (generic term)
+(verb)|boast|tout|swash|shoot a line|brag|gas|blow|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|swagger|swash|act (generic term)|behave (generic term)|do (generic term)
+blusterer|1
+(noun)|loudmouth|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+blustering|1
+(adj)|blusterous|blustery|stormy (similar term)
+blusterous|1
+(adj)|blustering|blustery|stormy (similar term)
+blustery|2
+(adj)|blustering|blusterous|stormy (similar term)
+(adj)|bullying|domineering (similar term)
+bm|2
+(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|bowel movement|movement|defecation (generic term)|laxation (generic term)|shitting (generic term)
+bmdo|1
+(noun)|Ballistic Missile Defense Organization|BMDO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bmr|1
+(noun)|basal metabolic rate|BMR|metabolic rate (generic term)
+bmus|1
+(noun)|Bachelor of Music|BMus|bachelor's degree (generic term)|baccalaureate (generic term)
+bns|1
+(noun)|Bachelor of Naval Science|BNS|bachelor's degree (generic term)|baccalaureate (generic term)
+bo's'n|1
+(noun)|boatswain|bos'n|bosun|bo'sun|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bo'sun|1
+(noun)|boatswain|bos'n|bo's'n|bosun|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bo tree|1
+(noun)|pipal|pipal tree|pipul|peepul|sacred fig|Ficus religiosa|fig tree (generic term)
+boa|2
+(noun)|feather boa|scarf (generic term)
+(noun)|constrictor (generic term)
+boa constrictor|1
+(noun)|Constrictor constrictor|boa (generic term)
+boann|1
+(noun)|Boann|Celtic deity (generic term)
+boar|2
+(noun)|wild boar|Sus scrofa|swine (generic term)
+(noun)|swine (generic term)
+boar thistle|1
+(noun)|bull thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle (generic term)|plumed thistle (generic term)
+board|13
+(noun)|committee (generic term)|commission (generic term)
+(noun)|sheet (generic term)|flat solid (generic term)
+(noun)|plank|lumber (generic term)|timber (generic term)
+(noun)|display panel|display board|display (generic term)|video display (generic term)
+(noun)|gameboard|surface (generic term)
+(noun)|table|fare (generic term)
+(noun)|control panel|instrument panel|control board|panel|electrical device (generic term)
+(noun)|circuit board|circuit card|card|plug-in|add-in|printed circuit (generic term)
+(noun)|dining table|table (generic term)
+(verb)|get on|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|get off (antonym)
+(verb)|room|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|use (generic term)|habituate (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+board foot|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+board game|1
+(noun)|parlor game (generic term)|parlour game (generic term)
+board measure|1
+(noun)|system of measurement (generic term)|metric (generic term)
+board meeting|1
+(noun)|committee meeting|meeting (generic term)|group meeting (generic term)
+board member|1
+(noun)|member (generic term)
+board of appeals|1
+(noun)|appeal board|appeals board|board (generic term)
+board of directors|1
+(noun)|directorate|board (generic term)
+board of education|1
+(noun)|school board|board (generic term)
+board of regents|1
+(noun)|governing board (generic term)
+board of selectmen|1
+(noun)|board (generic term)
+board of trade unit|1
+(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+board of trustees|1
+(noun)|governing board (generic term)
+board rule|1
+(noun)|measuring stick (generic term)|measure (generic term)|measuring rod (generic term)
+board up|1
+(verb)|cover (generic term)
+boarder|3
+(noun)|lodger|roomer|tenant (generic term)|renter (generic term)
+(noun)|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|schoolchild (generic term)|school-age child (generic term)|pupil (generic term)
+boarding|2
+(noun)|embarkation|embarkment|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)|disembarkation (antonym)
+(noun)|structure (generic term)|construction (generic term)
+boarding card|1
+(noun)|boarding pass|pass (generic term)|laissez passer (generic term)
+boarding house|1
+(noun)|boardinghouse|house (generic term)
+boarding pass|1
+(noun)|boarding card|pass (generic term)|laissez passer (generic term)
+boarding school|1
+(noun)|private school (generic term)|day school (antonym)
+boardinghouse|1
+(noun)|boarding house|house (generic term)
+boardroom|1
+(noun)|council chamber|room (generic term)
+boards|2
+(noun)|theater stage (generic term)|theatre stage (generic term)
+(noun)|boarding (generic term)
+boardwalk|1
+(noun)|walk (generic term)|walkway (generic term)|paseo (generic term)
+boarfish|2
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+(noun)|Capros aper|spiny-finned fish (generic term)|acanthopterygian (generic term)
+boarhound|1
+(noun)|hound (generic term)|hound dog (generic term)
+boast|3
+(noun)|boasting|self-praise|jactitation|speech act (generic term)
+(verb)|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|sport|feature|have (generic term)|feature (generic term)
+boaster|1
+(noun)|bragger|braggart|blowhard|line-shooter|vaunter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+boastful|1
+(adj)|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+boastfully|1
+(adv)|vauntingly|big|large
+boastfulness|1
+(noun)|vainglory|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+boasting|1
+(noun)|boast|self-praise|jactitation|speech act (generic term)
+boat|3
+(noun)|vessel (generic term)|watercraft (generic term)
+(noun)|gravy boat|gravy holder|sauceboat|dish (generic term)
+(verb)|ride (generic term)
+boat-billed heron|1
+(noun)|boatbill|broadbill|Cochlearius cochlearius|heron (generic term)
+boat-race|1
+(verb)|race (generic term)|run (generic term)
+boat-shaped|1
+(adj)|concave (similar term)
+boat bug|1
+(noun)|water boatman|water bug (generic term)
+boat club|1
+(noun)|yacht club|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+boat deck|1
+(noun)|upper deck (generic term)
+boat hook|1
+(noun)|hook (generic term)
+boat paddle|1
+(noun)|paddle|oar (generic term)
+boat race|1
+(noun)|race (generic term)
+boat racing|1
+(noun)|racing (generic term)
+boat train|1
+(noun)|train (generic term)|railroad train (generic term)
+boat whistle|1
+(noun)|whistle (generic term)
+boatbill|1
+(noun)|boat-billed heron|broadbill|Cochlearius cochlearius|heron (generic term)
+boatbuilder|1
+(noun)|builder (generic term)|constructor (generic term)
+boater|2
+(noun)|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+(noun)|boatman|waterman|worker (generic term)
+boathouse|1
+(noun)|house (generic term)
+boating|1
+(noun)|yachting|water travel (generic term)|seafaring (generic term)
+boatload|1
+(noun)|shipload|carload|large indefinite quantity (generic term)|large indefinite amount (generic term)
+boatman|1
+(noun)|boater|waterman|worker (generic term)
+boatmanship|1
+(noun)|seamanship (generic term)
+boatswain|1
+(noun)|bos'n|bo's'n|bosun|bo'sun|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+boatswain's chair|1
+(noun)|bosun's chair|seat (generic term)
+boatswain bird|1
+(noun)|tropic bird|tropicbird|pelecaniform seabird (generic term)
+bob|12
+(noun)|British shilling|shilling|British monetary unit (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|bobsled|bobsleigh|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(noun)|weight (generic term)
+(noun)|bobber|cork|bobfloat|float (generic term)
+(noun)|bobtail|dock|tail (generic term)
+(noun)|inclination (generic term)|inclining (generic term)
+(verb)|move (generic term)
+(verb)|bobsled|sled (generic term)|sleigh (generic term)
+(verb)|dock|tail|cut (generic term)
+(verb)|curtsy|greet (generic term)|recognize (generic term)|recognise (generic term)
+(verb)|dress (generic term)|arrange (generic term)|set (generic term)|do (generic term)|coif (generic term)|coiffe (generic term)|coiffure (generic term)
+bob about|1
+(verb)|bob around|bob (generic term)
+bob around|1
+(verb)|bob about|bob (generic term)
+bob dylan|1
+(noun)|Dylan|Bob Dylan|songwriter (generic term)|songster (generic term)|ballad maker (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+bob hope|1
+(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian (generic term)|comic (generic term)
+bob marley|1
+(noun)|Marley|Robert Nesta Marley|Bob Marley|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+bob mathias|1
+(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete (generic term)|jock (generic term)
+bob under|1
+(verb)|vanish (generic term)|disappear (generic term)|go away (generic term)
+bob up|1
+(verb)|arise|come up|become (generic term)
+bob woodward|1
+(noun)|Woodward|Bob Woodward|Robert Woodward|Robert Burns Woodward|chemist (generic term)
+bobber|1
+(noun)|bob|cork|bobfloat|float (generic term)
+bobbin|1
+(noun)|spool|reel|winder (generic term)
+bobbin lace|1
+(noun)|pillow lace|lace (generic term)
+bobble|2
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+bobby|1
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+bobby-socker|1
+(noun)|bobbysoxer|lass (generic term)|lassie (generic term)|young girl (generic term)|jeune fille (generic term)
+bobby fischer|1
+(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master (generic term)
+bobby jones|1
+(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer (generic term)|golf player (generic term)|linksman (generic term)
+bobby orr|1
+(noun)|Orr|Bobby Orr|Robert Orr|hockey player (generic term)|ice-hockey player (generic term)
+bobby pin|1
+(noun)|hairgrip|grip|hairpin (generic term)
+bobbysock|1
+(noun)|anklet|anklets|bobbysocks|sock (generic term)
+bobbysocks|1
+(noun)|anklet|anklets|bobbysock|sock (generic term)
+bobbysoxer|1
+(noun)|bobby-socker|lass (generic term)|lassie (generic term)|young girl (generic term)|jeune fille (generic term)
+bobcat|1
+(noun)|bay lynx|Lynx rufus|lynx (generic term)|catamount (generic term)
+bobfloat|1
+(noun)|bob|bobber|cork|float (generic term)
+bobolink|1
+(noun)|ricebird|reedbird|Dolichonyx oryzivorus|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+bobsled|3
+(noun)|bobsleigh|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(noun)|bobsleigh|bob|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(verb)|bob|sled (generic term)|sleigh (generic term)
+bobsledding|1
+(noun)|sledding (generic term)
+bobsleigh|2
+(noun)|bobsled|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(noun)|bobsled|bob|sled (generic term)|sledge (generic term)|sleigh (generic term)
+bobtail|3
+(adj)|bobtailed|caudate (similar term)|caudated (similar term)
+(noun)|bob|dock|tail (generic term)
+(noun)|Old English sheepdog|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+bobtailed|1
+(adj)|bobtail|caudate (similar term)|caudated (similar term)
+bobwhite|1
+(noun)|bobwhite quail|partridge|quail (generic term)
+bobwhite quail|1
+(noun)|bobwhite|partridge|quail (generic term)
+boccaccio|1
+(noun)|Boccaccio|Giovanni Boccaccio|poet (generic term)
+bocce|1
+(noun)|bocci|boccie|bowling (generic term)
+bocce ball|1
+(noun)|bocci ball|boccie ball|ball (generic term)
+bocci|1
+(noun)|bocce|boccie|bowling (generic term)
+bocci ball|1
+(noun)|bocce ball|boccie ball|ball (generic term)
+boccie|1
+(noun)|bocce|bocci|bowling (generic term)
+boccie ball|1
+(noun)|bocce ball|bocci ball|ball (generic term)
+bocconia|2
+(noun)|plume poppy|Macleaya cordata|poppy (generic term)
+(noun)|tree celandine|Bocconia frutescens|angiospermous tree (generic term)|flowering tree (generic term)
+bocconia frutescens|1
+(noun)|bocconia|tree celandine|Bocconia frutescens|angiospermous tree (generic term)|flowering tree (generic term)
+boche|1
+(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German (generic term)
+bock|1
+(noun)|bock beer|lager (generic term)|lager beer (generic term)
+bock beer|1
+(noun)|bock|lager (generic term)|lager beer (generic term)
+bod|1
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+bodacious|2
+(adj)|unmitigated (similar term)
+(adj)|audacious|barefaced|bald-faced|brassy|brazen|brazen-faced|insolent|unashamed (similar term)
+boddhisatva|1
+(noun)|Bodhisattva|Boddhisatva|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+bode|1
+(verb)|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+bodega|1
+(noun)|shop (generic term)|store (generic term)
+bodensee|1
+(noun)|Constance|Lake Constance|Bodensee|lake (generic term)
+bodge|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|fuck up|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+bodhisattva|1
+(noun)|Bodhisattva|Boddhisatva|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+bodice|1
+(noun)|top (generic term)
+bodice ripper|1
+(noun)|romance (generic term)
+bodied|2
+(adj)|incarnate (similar term)|lithe-bodied (similar term)|long-bodied (similar term)|narrow-bodied (similar term)|oval-bodied (similar term)|short-bodied (similar term)|silver-bodied (similar term)|silvery-bodied (similar term)|slim-bodied (similar term)|thin-bodied (similar term)|slender-bodied (similar term)|smooth-bodied (similar term)|thick-bodied (similar term)|corporeal (related term)|material (related term)|unbodied (antonym)
+(adj)|corporal|corporate|embodied|incarnate|corporeal (similar term)|material (similar term)
+bodiless|2
+(adj)|discorporate|unembodied|unbodied|disembodied|incorporeal (similar term)|immaterial (similar term)
+(adj)|bodyless|unbodied (similar term)
+bodily|3
+(adj)|natural object (related term)
+(adj)|corporal|corporeal|somatic|physical (similar term)
+(adj)|corporeal (similar term)|material (similar term)
+bodily cavity|1
+(noun)|cavity|cavum|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+bodily fluid|1
+(noun)|liquid body substance|body fluid|humor|humour|body substance (generic term)
+bodily function|1
+(noun)|bodily process|body process|activity|organic process (generic term)|biological process (generic term)
+bodily process|1
+(noun)|body process|bodily function|activity|organic process (generic term)|biological process (generic term)
+bodily property|1
+(noun)|property (generic term)
+bodily structure|1
+(noun)|structure|anatomical structure|complex body part|body structure|body part (generic term)
+boding|1
+(noun)|foreboding|premonition|presentiment|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+bodkin|4
+(noun)|poniard|dagger (generic term)|sticker (generic term)
+(noun)|hairpin (generic term)
+(noun)|hand tool (generic term)
+(noun)|threader|hand tool (generic term)
+bodo-garo|1
+(noun)|Bodo-Garo|Barish|Kamarupan (generic term)
+bodoni|2
+(noun)|Bodoni|Gianbattista Bodoni|printer (generic term)|pressman (generic term)
+(noun)|modern|modern font|Bodoni|Bodoni font|proportional font (generic term)|old style (antonym)
+bodoni font|1
+(noun)|modern|modern font|Bodoni|Bodoni font|proportional font (generic term)|old style (antonym)
+body|10
+(noun)|organic structure|physical structure|natural object (generic term)
+(noun)|dead body|natural object (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|torso|trunk|body part (generic term)
+(noun)|natural object (generic term)
+(noun)|system (generic term)|scheme (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|consistency|consistence|property (generic term)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(verb)|personify|embody (generic term)|be (generic term)|personify (generic term)
+body-build|1
+(noun)|physique|build|habitus|bodily property (generic term)
+body-surf|1
+(verb)|glide (generic term)
+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 (generic term)|armour (generic term)
+body armour|1
+(noun)|body armor|suit of armor|suit of armour|coat of mail|cataphract|armor (generic term)|armour (generic term)
+body bag|1
+(noun)|personnel pouch|human remains pouch|bag (generic term)
+body count|1
+(noun)|count (generic term)
+body covering|1
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+body english|1
+(noun)|body English|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+body fluid|1
+(noun)|liquid body substance|bodily fluid|humor|humour|body substance (generic term)
+body forth|1
+(verb)|incarnate|embody|substantiate|be (generic term)
+body guard|1
+(verb)|protect (generic term)
+body hair|1
+(noun)|hair (generic term)
+body language|1
+(noun)|visual communication (generic term)
+body length|1
+(noun)|linear unit (generic term)
+body lotion|1
+(noun)|lotion (generic term)
+body louse|1
+(noun)|cootie|Pediculus corporis|louse (generic term)|sucking louse (generic term)
+body odor|1
+(noun)|body odour|B.O.|malodorousness (generic term)|stinkiness (generic term)|foulness (generic term)|rankness (generic term)|fetidness (generic term)
+body odour|1
+(noun)|body odor|B.O.|malodorousness (generic term)|stinkiness (generic term)|foulness (generic term)|rankness (generic term)|fetidness (generic term)
+body of water|1
+(noun)|water|thing (generic term)
+body of work|1
+(noun)|oeuvre|work|end product (generic term)|output (generic term)
+body pad|1
+(noun)|protective garment (generic term)
+body part|1
+(noun)|part (generic term)|piece (generic term)
+body plethysmograph|1
+(noun)|plethysmograph (generic term)
+body politic|1
+(noun)|state|nation|country|land|commonwealth|res publica|political unit (generic term)|political entity (generic term)
+body process|1
+(noun)|bodily process|bodily function|activity|organic process (generic term)|biological process (generic term)
+body servant|1
+(noun)|servant (generic term)|retainer (generic term)
+body snatcher|1
+(noun)|graverobber|ghoul|thief (generic term)|stealer (generic term)
+body stocking|1
+(noun)|undergarment (generic term)|unmentionable (generic term)
+body structure|1
+(noun)|structure|anatomical structure|complex body part|bodily structure|body part (generic term)
+body substance|1
+(noun)|substance (generic term)|matter (generic term)
+body suit|1
+(noun)|leotard|unitard|cat suit|garment (generic term)
+body temperature|1
+(noun)|blood heat|vital sign (generic term)|temperature (generic term)
+body type|1
+(noun)|somatotype|physique (generic term)|build (generic term)|body-build (generic term)|habitus (generic term)
+body waste|1
+(noun)|excretion|excreta|excrement|excretory product|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+body weight|1
+(noun)|weight (generic term)
+bodybuilder|1
+(noun)|muscle builder|muscle-builder|musclebuilder|muscleman|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bodybuilding|1
+(noun)|anaerobic exercise|muscle building|musclebuilding|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+bodyguard|2
+(noun)|escort|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|guard|detachment (generic term)
+bodyless|1
+(adj)|bodiless|unbodied (similar term)
+bodypaint|1
+(verb)|paint (generic term)
+bodywork|2
+(noun)|body (generic term)
+(noun)|manual labor (generic term)|manual labour (generic term)
+boehm|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+boehme|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+boehmenism|1
+(noun)|Boehmenism|Behmenism|theological doctrine (generic term)
+boehmeria|1
+(noun)|Boehmeria|genus Boehmeria|dicot genus (generic term)|magnoliopsid genus (generic term)
+boehmeria nivea|1
+(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle (generic term)|bog hemp (generic term)
+boeotia|1
+(noun)|Boeotia|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+boeotian|1
+(adj)|Boeotian|district|territory|territorial dominion|dominion (related term)
+boer|1
+(noun)|Afrikaner|Afrikander|Boer|South African (generic term)
+boer war|1
+(noun)|Boer War|war (generic term)|warfare (generic term)
+boethius|1
+(noun)|Boethius|Anicius Manlius Severinus Boethius|philosopher (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+boeuf|1
+(noun)|beef|meat (generic term)
+boeuf bourguignonne|1
+(noun)|beef Bourguignonne|boeuf Bourguignonne|dish (generic term)
+boeuf fondu bourguignon|1
+(noun)|beef fondue|fondue (generic term)|fondu (generic term)
+boffin|1
+(noun)|research worker (generic term)|researcher (generic term)|investigator (generic term)
+boffo|1
+(adj)|successful (similar term)
+bofors gun|1
+(noun)|Bofors gun|antiaircraft (generic term)|antiaircraft gun (generic term)|flak (generic term)|flack (generic term)|pom-pom (generic term)|ack-ack (generic term)|ack-ack gun (generic term)
+bog|3
+(noun)|peat bog|wetland (generic term)
+(verb)|bog down|slow (generic term)|slow down (generic term)|slow up (generic term)
+(verb)|bog down|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+bog asphodel|1
+(noun)|liliaceous plant (generic term)
+bog aster|1
+(noun)|aster (generic term)
+bog bilberry|1
+(noun)|bog whortleberry|moor berry|Vaccinium uliginosum alpinum|blueberry (generic term)|blueberry bush (generic term)
+bog candles|1
+(noun)|bog rein orchid|Habenaria dilatata|rein orchid (generic term)|rein orchis (generic term)
+bog down|4
+(verb)|bog|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|mire
+(verb)|grind to a halt|get stuck|mire|stand still (generic term)
+(verb)|bog|slow (generic term)|slow down (generic term)|slow up (generic term)
+bog hemp|1
+(noun)|false nettle|herb (generic term)|herbaceous plant (generic term)
+bog kalmia|1
+(noun)|swamp laurel|bog laurel|Kalmia polifolia|kalmia (generic term)
+bog laurel|1
+(noun)|swamp laurel|bog kalmia|Kalmia polifolia|kalmia (generic term)
+bog moss|1
+(noun)|sphagnum|sphagnum moss|peat moss|moss (generic term)
+bog myrtle|1
+(noun)|water shamrock|buckbean|bogbean|marsh trefoil|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+bog pimpernel|1
+(noun)|Anagallis tenella|pimpernel (generic term)
+bog plant|1
+(noun)|marsh plant|swamp plant|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+bog rein orchid|1
+(noun)|bog candles|Habenaria dilatata|rein orchid (generic term)|rein orchis (generic term)
+bog rhubarb|1
+(noun)|butterbur|Petasites hybridus|Petasites vulgaris|herb (generic term)|herbaceous plant (generic term)
+bog rose|1
+(noun)|wild pink|dragon's mouth|Arethusa bulbosa|arethusa (generic term)
+bog rosemary|1
+(noun)|moorwort|Andromeda glaucophylla|andromeda (generic term)
+bog soil|1
+(noun)|soil (generic term)|dirt (generic term)
+bog spavin|1
+(noun)|spavin (generic term)
+bog star|1
+(noun)|Parnassia palustris|parnassia (generic term)|grass-of-Parnassus (generic term)
+bog whortleberry|1
+(noun)|bog bilberry|moor berry|Vaccinium uliginosum alpinum|blueberry (generic term)|blueberry bush (generic term)
+bogart|1
+(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+bogartian|1
+(adj)|Bogartian|actor|histrion|player|thespian|role player (related term)
+bogbean|1
+(noun)|water shamrock|buckbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+bogey|4
+(noun)|bogy|bogie|evil spirit (generic term)
+(noun)|score (generic term)
+(noun)|bogy|bogie|aircraft (generic term)
+(verb)|shoot (generic term)
+bogeyman|1
+(noun)|bugbear|bugaboo|boogeyman|booger|monster (generic term)
+boggle|3
+(verb)|startle (generic term)|jump (generic term)|start (generic term)
+(verb)|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|flabbergast|bowl over|surprise (generic term)
+boggy|1
+(adj)|marshy|miry|mucky|muddy|quaggy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+bogie|2
+(noun)|bogey|bogy|evil spirit (generic term)
+(noun)|bogy|bogey|aircraft (generic term)
+bogmat|1
+(noun)|mud midget|Wolffiella gladiata|duckweed (generic term)
+bogota|1
+(noun)|Bogota|capital of Colombia|national capital (generic term)
+bogus|1
+(adj)|fake|phony|phoney|bastard|counterfeit (similar term)|imitative (similar term)
+bogy|2
+(noun)|bogie|bogey|aircraft (generic term)
+(noun)|bogey|bogie|evil spirit (generic term)
+bohemia|2
+(noun)|Bohemia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+bohemian|5
+(adj)|Bohemian|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|unconventional (similar term)
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+(noun)|Bohemian|European (generic term)
+(noun)|nonconformist (generic term)|recusant (generic term)
+bohemian waxwing|1
+(noun)|Bohemian waxwing|Bombycilla garrulus|waxwing (generic term)
+bohemianism|1
+(noun)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+bohme|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+bohr|1
+(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist (generic term)
+bohr theory|1
+(noun)|Bohr theory|atomic theory (generic term)
+bohrium|1
+(noun)|Bh|element 107|atomic number 107|chemical element (generic term)|element (generic term)
+boidae|1
+(noun)|Boidae|family Boidae|reptile family (generic term)
+boil|7
+(noun)|furuncle|staphylococcal infection (generic term)
+(noun)|boiling point|temperature (generic term)
+(verb)|change state (generic term)|turn (generic term)|freeze (antonym)
+(verb)|cook (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|churn|moil|roil|move (generic term)
+(verb)|seethe|be (generic term)
+boil down|3
+(verb)|reduce|come down|become (generic term)|turn (generic term)
+(verb)|reduce|decoct|concentrate|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|reduce|concentrate|decrease (generic term)|lessen (generic term)|minify (generic term)
+boil over|1
+(verb)|overboil|boil (generic term)
+boil smut|1
+(noun)|Ustilago maydis|cornsmut (generic term)|corn smut (generic term)
+boiled|1
+(adj)|poached|stewed|cooked (similar term)
+boiled dinner|1
+(noun)|New England boiled dinner|dish (generic term)
+boiled egg|1
+(noun)|coddled egg|dish (generic term)
+boiler|2
+(noun)|steam boiler|vessel (generic term)
+(noun)|kettle|pot (generic term)
+boilerplate|2
+(noun)|formulation (generic term)|expression (generic term)
+(noun)|plate iron (generic term)
+boilers suit|1
+(noun)|overall|boilersuit|coverall (generic term)
+boilersuit|1
+(noun)|overall|boilers suit|coverall (generic term)
+boiling|2
+(noun)|heating (generic term)|warming (generic term)|vaporization (generic term)|vaporisation (generic term)|vapor (generic term)|vapour (generic term)|evaporation (generic term)
+(noun)|stewing|simmering|cooking (generic term)|cookery (generic term)|preparation (generic term)
+boiling point|2
+(noun)|boil|temperature (generic term)
+(noun)|excitability (generic term)|excitableness (generic term)|volatility (generic term)
+boiling water reactor|1
+(noun)|BWR|water-cooled reactor (generic term)
+boise|1
+(noun)|Boise|capital of Idaho|state capital (generic term)
+boisterous|3
+(adj)|rambunctious|robustious|rumbustious|unruly|disorderly (similar term)
+(adj)|knockabout|spirited (similar term)
+(adj)|fierce|rough|stormy (similar term)
+boisterously|1
+(adv)|rollickingly
+boisterousness|2
+(noun)|storminess (generic term)
+(noun)|noisiness (generic term)|racketiness (generic term)
+bok choi|2
+(noun)|bok choy|pakchoi|pak choi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|bok choy|cabbage (generic term)|chou (generic term)
+bok choy|2
+(noun)|bok choi|pakchoi|pak choi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|bok choi|cabbage (generic term)|chou (generic term)
+bokkos|1
+(noun)|Ron|Bokkos|Daffo|West Chadic (generic term)
+bokmal|1
+(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian (generic term)
+bola|2
+(noun)|bolo tie|bolo|bola tie|necktie (generic term)|tie (generic term)
+(noun)|rope (generic term)
+bola tie|1
+(noun)|bolo tie|bolo|bola|necktie (generic term)|tie (generic term)
+bolanci|1
+(noun)|Bole|Bolanci|West Chadic (generic term)
+bolbitis|1
+(noun)|Bolbitis|genus Bolbitis|fern genus (generic term)
+bold|4
+(adj)|audacious (similar term)|brave (similar term)|dauntless (similar term)|fearless (similar term)|intrepid (similar term)|unfearing (similar term)|daredevil (similar term)|temerarious (similar term)|emboldened (similar term)|foolhardy (similar term)|heady (similar term)|rash (similar term)|reckless (similar term)|heroic (similar term)|heroical (similar term)|nervy (similar term)|overreaching (similar term)|vaulting (similar term)|overvaliant (similar term)|adventurous (related term)|adventuresome (related term)|brave (related term)|courageous (related term)|forward (related term)|unafraid (related term)|fearless (related term)|timid (antonym)
+(adj)|conspicuous (similar term)
+(adj)|bluff|sheer|steep (similar term)
+(noun)|boldface|bold face|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+bold face|1
+(noun)|boldface|bold|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+bold fmri|1
+(noun)|blood-oxygenation level dependent functional magnetic resonance imaging|BOLD FMRI|functional magnetic resonance imaging (generic term)|fMRI (generic term)
+boldface|2
+(noun)|bold face|bold|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+(verb)|print (generic term)|impress (generic term)
+boldly|1
+(adv)|with boldness
+boldness|3
+(noun)|daring|hardiness|hardihood|fearlessness (generic term)|timidity (antonym)
+(noun)|nerve|brass|face|cheek|aggressiveness (generic term)
+(noun)|strikingness|conspicuousness (generic term)
+bole|3
+(noun)|pigment (generic term)|soil (generic term)|dirt (generic term)
+(noun)|trunk|tree trunk|stalk (generic term)|stem (generic term)
+(noun)|Bole|Bolanci|West Chadic (generic term)
+bolero|3
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|jacket (generic term)
+(noun)|stage dancing (generic term)|choreography (generic term)
+boletaceae|1
+(noun)|Boletaceae|family Boletaceae|fungus family (generic term)
+bolete|1
+(noun)|fungus (generic term)
+boletellus|1
+(noun)|Boletellus|genus Boletellus|fungus genus (generic term)
+boletellus russellii|1
+(noun)|Boletellus russellii|bolete (generic term)
+boletus|1
+(noun)|Boletus|genus Boletus|fungus genus (generic term)
+boletus chrysenteron|1
+(noun)|Boletus chrysenteron|bolete (generic term)
+boletus edulis|1
+(noun)|Boletus edulis|bolete (generic term)
+boletus frostii|1
+(noun)|Frost's bolete|Boletus frostii|bolete (generic term)
+boletus luridus|1
+(noun)|Boletus luridus|bolete (generic term)
+boletus mirabilis|1
+(noun)|Boletus mirabilis|bolete (generic term)
+boletus pallidus|1
+(noun)|Boletus pallidus|bolete (generic term)
+boletus pulcherrimus|1
+(noun)|Boletus pulcherrimus|bolete (generic term)
+boletus pulverulentus|1
+(noun)|Boletus pulverulentus|bolete (generic term)
+boletus roxanae|1
+(noun)|Boletus roxanae|bolete (generic term)
+boletus subvelutipes|1
+(noun)|Boletus subvelutipes|bolete (generic term)
+boletus variipes|1
+(noun)|Boletus variipes|bolete (generic term)
+boletus zelleri|1
+(noun)|Boletus zelleri|bolete (generic term)
+boleyn|1
+(noun)|Boleyn|Anne Boleyn|queen (generic term)
+bolide|1
+(noun)|fireball|meteor (generic term)|shooting star (generic term)
+bolingbroke|1
+(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England (generic term)|King of Great Britain (generic term)
+bolivar|2
+(noun)|Venezuelan monetary unit (generic term)
+(noun)|Bolivar|Simon Bolivar|El Libertador|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+bolivia|2
+(noun)|Bolivia|Republic of Bolivia|South American country (generic term)|South American nation (generic term)
+(noun)|canasta (generic term)|basket rummy (generic term)|meld (generic term)
+bolivian|2
+(adj)|Bolivian|South American country|South American nation (related term)
+(noun)|Bolivian|South American (generic term)
+bolivian monetary unit|1
+(noun)|Bolivian monetary unit|monetary unit (generic term)
+boliviano|1
+(noun)|Bolivian monetary unit (generic term)
+boll|2
+(noun)|capsule (generic term)
+(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer (generic term)|author (generic term)
+boll weevil|1
+(noun)|Anthonomus grandis|weevil (generic term)
+bollard|1
+(noun)|bitt|post (generic term)
+bollix|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+bollix up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+bollock|2
+(noun)|testis|testicle|orchis|ball|ballock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+(noun)|bullock block|pulley (generic term)|pulley-block (generic term)|block (generic term)
+bollocks|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+bollocks up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+bollworm|1
+(noun)|caterpillar (generic term)
+bollywood|1
+(noun)|Bollywood|film industry (generic term)|movie industry (generic term)|screenland (generic term)
+bolo|2
+(noun)|bolo tie|bola tie|bola|necktie (generic term)|tie (generic term)
+(noun)|bolo knife|knife (generic term)
+bolo knife|1
+(noun)|bolo|knife (generic term)
+bolo tie|1
+(noun)|bolo|bola tie|bola|necktie (generic term)|tie (generic term)
+bologna|2
+(noun)|Bologna|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Bologna sausage|sausage (generic term)
+bologna sausage|1
+(noun)|bologna|Bologna sausage|sausage (generic term)
+bolognese pasta sauce|1
+(noun)|spaghetti sauce (generic term)|pasta sauce (generic term)
+bologram|1
+(noun)|bolograph|recording (generic term)
+bolograph|1
+(noun)|bologram|recording (generic term)
+bolographic|1
+(adj)|recording (related term)
+bolometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+bolometric|1
+(adj)|measuring instrument|measuring system|measuring device (related term)
+boloney|1
+(noun)|baloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+bolshevik|3
+(adj)|Bolshevik|Bolshevist|Bolshevistic|communism (related term)
+(noun)|Bolshevik|Marxist|red|bolshie|bolshy|radical (generic term)
+(noun)|Bolshevik|Bolshevist|communist (generic term)|commie (generic term)
+bolshevise|1
+(verb)|communize|communise|bolshevize|change (generic term)|alter (generic term)|modify (generic term)
+bolshevism|1
+(noun)|Bolshevism|collectivism|sovietism|communism (generic term)
+bolshevist|2
+(adj)|Bolshevik|Bolshevist|Bolshevistic|communism (related term)
+(noun)|Bolshevik|Bolshevist|communist (generic term)|commie (generic term)
+bolshevistic|1
+(adj)|Bolshevik|Bolshevist|Bolshevistic|communism (related term)
+bolshevize|1
+(verb)|communize|communise|bolshevise|change (generic term)|alter (generic term)|modify (generic term)
+bolshie|1
+(noun)|Bolshevik|Marxist|red|bolshy|radical (generic term)
+bolshy|2
+(adj)|stroppy|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(noun)|Bolshevik|Marxist|red|bolshie|radical (generic term)
+bolster|4
+(noun)|long pillow|pillow (generic term)
+(verb)|bolster up|reinforce (generic term)|reenforce (generic term)
+(verb)|prop up (generic term)|prop (generic term)|shore up (generic term)|shore (generic term)
+(verb)|pad|fill (generic term)|fill up (generic term)|make full (generic term)
+bolster up|1
+(verb)|bolster|reinforce (generic term)|reenforce (generic term)
+bolt|16
+(noun)|thunderbolt|bolt of lightning|lightning (generic term)
+(noun)|bar (generic term)
+(noun)|deadbolt|bar (generic term)
+(noun)|dash|haste (generic term)|hurry (generic term)|rush (generic term)|rushing (generic term)
+(noun)|roll (generic term)
+(noun)|screw (generic term)
+(noun)|abandonment (generic term)|forsaking (generic term)|desertion (generic term)
+(verb)|move (generic term)
+(verb)|lock (generic term)|unbolt (antonym)
+(verb)|swallow (generic term)|get down (generic term)
+(verb)|abscond|absquatulate|decamp|run off|go off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|run off|run out|bolt out|beetle off|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|gobble|eat (generic term)|gobble up (related term)
+(verb)|roll up (generic term)|furl (generic term)
+(adv)|rigidly|stiffly
+(adv)|bang|slap|slapdash|smack
+bolt-hole|1
+(noun)|hole (generic term)
+bolt cutter|1
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+bolt down|2
+(verb)|toss off|pop|belt down|pour down|down|drink down|kill|drink (generic term)|imbibe (generic term)
+(verb)|garbage down|gobble up|shovel in|eat (generic term)
+bolt of lightning|1
+(noun)|thunderbolt|bolt|lightning (generic term)
+bolt out|1
+(verb)|run off|run out|bolt|beetle off|leave (generic term)|go forth (generic term)|go away (generic term)
+bolted|1
+(adj)|barred|fast|latched|locked|secured|fastened (similar term)
+bolti|1
+(noun)|Tilapia nilotica|cichlid (generic term)|cichlid fish (generic term)
+boltonia|1
+(noun)|Boltonia|genus Boltonia|asterid dicot genus (generic term)
+boltzmann|1
+(noun)|Boltzmann|Ludwig Boltzmann|physicist (generic term)
+boltzmann's constant|1
+(noun)|Boltzmann's constant|constant (generic term)
+boltzmann distribution law|1
+(noun)|Maxwell-Boltzmann distribution law|Boltzmann distribution law|distribution law (generic term)
+bolus|2
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+(noun)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+bolzano|1
+(noun)|Bolzano|city (generic term)|metropolis (generic term)|urban center (generic term)
+bomarea|1
+(noun)|Bomarea|genus Bomarea|liliid monocot genus (generic term)
+bomarea edulis|1
+(noun)|salsilla|Bomarea edulis|vine (generic term)
+bomarea salsilla|1
+(noun)|salsilla|Bomarea salsilla|vine (generic term)
+bomb|5
+(noun)|explosive device (generic term)|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+(noun)|bomb calorimeter|calorimeter (generic term)
+(noun)|turkey|dud|flop (generic term)|bust (generic term)|fizzle (generic term)
+(verb)|bombard|attack (generic term)|assail (generic term)
+(verb)|fail|flunk|flush it|pass (antonym)
+bomb blast|1
+(noun)|blast (generic term)
+bomb calorimeter|1
+(noun)|bomb|calorimeter (generic term)
+bomb out|1
+(verb)|bombard (generic term)|bomb (generic term)
+bomb rack|1
+(noun)|carrier (generic term)
+bomb shelter|1
+(noun)|air-raid shelter|bombproof|chamber (generic term)
+bomb site|1
+(noun)|site (generic term)|land site (generic term)
+bomb up|1
+(verb)|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+bombacaceae|1
+(noun)|Bombacaceae|family Bombacaceae|dilleniid dicot family (generic term)
+bombard|4
+(noun)|bombardon|shawm (generic term)|bass (generic term)
+(verb)|pelt|throw (generic term)
+(verb)|bomb|attack (generic term)|assail (generic term)
+(verb)|barrage|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+bombardier|2
+(noun)|noncommissioned officer (generic term)|noncom (generic term)
+(noun)|aircrewman (generic term)
+bombardier beetle|1
+(noun)|ground beetle (generic term)|carabid beetle (generic term)
+bombardment|4
+(noun)|radiation (generic term)
+(noun)|barrage|outpouring|onslaught|language (generic term)|linguistic communication (generic term)
+(noun)|barrage|barrage fire|battery|shelling|fire (generic term)|firing (generic term)
+(noun)|bombing|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+bombardon|2
+(noun)|helicon|bass horn (generic term)|sousaphone (generic term)|tuba (generic term)
+(noun)|bombard|shawm (generic term)|bass (generic term)
+bombast|1
+(noun)|fustian|rant|claptrap|blah|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+bombastic|1
+(adj)|declamatory|large|orotund|tumid|turgid|rhetorical (similar term)
+bombastically|2
+(adv)|turgidly
+(adv)|grandiosely
+bombax|1
+(noun)|Bombax|genus Bombax|dilleniid dicot genus (generic term)
+bombax ceiba|1
+(noun)|red silk-cotton tree|simal|Bombax ceiba|Bombax malabarica|tree (generic term)
+bombax malabarica|1
+(noun)|red silk-cotton tree|simal|Bombax ceiba|Bombax malabarica|tree (generic term)
+bombay|1
+(noun)|Mumbai|Bombay|city (generic term)|metropolis (generic term)|urban center (generic term)
+bombay ceiba|1
+(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+bombay hemp|1
+(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+bombazine|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+bomber|3
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)|warplane (generic term)|military plane (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+bomber aircrew|1
+(noun)|bomber crew|aircrew (generic term)|air crew (generic term)
+bomber crew|1
+(noun)|bomber aircrew|aircrew (generic term)|air crew (generic term)
+bomber harris|1
+(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+bomber jacket|1
+(noun)|jacket (generic term)
+bombie|1
+(noun)|bomblet (generic term)|cluster bomblet (generic term)
+bombilate|1
+(verb)|buzz|bombinate|sound (generic term)|go (generic term)
+bombilation|1
+(noun)|buzz|bombination|sound (generic term)
+bombina|1
+(noun)|Bombina|genus Bombina|amphibian genus (generic term)
+bombina bombina|1
+(noun)|fire-bellied toad|Bombina bombina|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+bombinate|1
+(verb)|buzz|bombilate|sound (generic term)|go (generic term)
+bombination|1
+(noun)|buzz|bombilation|sound (generic term)
+bombing|2
+(noun)|bombardment|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|sabotage (generic term)
+bombing run|1
+(noun)|bombing (generic term)|bombardment (generic term)
+bomblet|1
+(noun)|cluster bomblet|bomb (generic term)
+bombproof|3
+(adj)|shellproof|invulnerable (similar term)
+(noun)|bomb shelter|air-raid shelter|chamber (generic term)
+(verb)|proof (generic term)
+bombshell|3
+(noun)|entertainer (generic term)
+(noun)|thunderbolt|thunderclap|surprise (generic term)
+(noun)|bomb (generic term)
+bombsight|1
+(noun)|sight (generic term)
+bombus|1
+(noun)|Bombus|genus Bombus|arthropod genus (generic term)
+bombycid|1
+(noun)|bombycid moth|silkworm moth|moth (generic term)
+bombycid moth|1
+(noun)|bombycid|silkworm moth|moth (generic term)
+bombycidae|1
+(noun)|Bombycidae|family Bombycidae|arthropod family (generic term)
+bombycilla|1
+(noun)|Bombycilla|genus bombycilla|bird genus (generic term)
+bombycilla cedrorun|1
+(noun)|cedar waxwing|cedarbird|Bombycilla cedrorun|waxwing (generic term)
+bombycilla garrulus|1
+(noun)|Bohemian waxwing|Bombycilla garrulus|waxwing (generic term)
+bombycillidae|1
+(noun)|Bombycillidae|family Bombycillidae|bird family (generic term)
+bombyliidae|1
+(noun)|Bombyliidae|family Bombyliidae|arthropod family (generic term)
+bombyx|1
+(noun)|Bombyx|genus Bombyx|arthropod genus (generic term)
+bombyx mori|1
+(noun)|domestic silkworm moth|Bombyx mori|bombycid (generic term)|bombycid moth (generic term)|silkworm moth (generic term)
+bon mot|1
+(noun)|mot|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+bon ton|1
+(noun)|society|high society|beau monde|smart set|elite (generic term)|elite group (generic term)
+bon vivant|1
+(noun)|epicure|gourmet|gastronome|epicurean|foodie|sensualist (generic term)
+bon voyage|1
+(noun)|send-off|farewell (generic term)|word of farewell (generic term)
+bona fide|2
+(adj)|sincere (similar term)
+(adj)|authentic|unquestionable|veritable|genuine (similar term)|echt (similar term)
+bonaire|1
+(noun)|Bonaire|island (generic term)
+bonanza|2
+(noun)|vein (generic term)|mineral vein (generic term)
+(noun)|boom|gold rush|gravy|godsend|manna from heaven|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+bonaparte|1
+(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|Little Corporal|general (generic term)|full general (generic term)|emperor (generic term)
+bonasa|1
+(noun)|Bonasa|genus Bonasa|bird genus (generic term)
+bonasa umbellus|1
+(noun)|ruffed grouse|partridge|Bonasa umbellus|grouse (generic term)
+bonavist|1
+(noun)|hyacinth bean|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+bonbon|1
+(noun)|candy (generic term)|confect (generic term)
+bonce|1
+(noun)|attic|bean|noodle|noggin|dome|human head (generic term)
+bond|15
+(adj)|enslaved|enthralled|in bondage|slave (similar term)
+(noun)|chemical bond|attraction (generic term)|attractive force (generic term)
+(noun)|bond certificate|debt instrument (generic term)|certificate of indebtedness (generic term)|security (generic term)|certificate (generic term)
+(noun)|alliance|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|bail|bail bond|recognizance (generic term)|recognisance (generic term)
+(noun)|shackle|hamper|trammel|restraint (generic term)|constraint (generic term)
+(noun)|attachment|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|bond paper|writing paper (generic term)
+(noun)|Bond|Julian Bond|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|Bond|James Bond|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|adhesiveness|adhesion|adherence|stickiness (generic term)
+(verb)|adhere|hold fast|bind|stick|stick to|attach (generic term)
+(verb)|bind|tie|attach|relate (generic term)
+(verb)|mortgage (generic term)
+(verb)|bring together|draw together|unite (generic term)|unify (generic term)
+bond-trading activity|1
+(noun)|bond trading|trading (generic term)
+bond certificate|1
+(noun)|bond|debt instrument (generic term)|certificate of indebtedness (generic term)|security (generic term)|certificate (generic term)
+bond issue|1
+(noun)|bond (generic term)|bond certificate (generic term)
+bond paper|1
+(noun)|bond|writing paper (generic term)
+bond rating|1
+(noun)|evaluation (generic term)|valuation (generic term)|rating (generic term)
+bond servant|1
+(noun)|slave (generic term)
+bond trading|1
+(noun)|bond-trading activity|trading (generic term)
+bondable|2
+(adj)|bindable|attachable (similar term)
+(adj)|adhesive (similar term)
+bondage|3
+(noun)|subjugation (generic term)|subjection (generic term)
+(noun)|slavery|thrall|thralldom|thraldom|subjugation (generic term)|subjection (generic term)
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+bonded|1
+(adj)|guaranteed|secured|warranted|secure (similar term)
+bonded labor|1
+(noun)|bondage (generic term)|slavery (generic term)|thrall (generic term)|thralldom (generic term)|thraldom (generic term)
+bonderise|1
+(verb)|bonderize|coat (generic term)|surface (generic term)
+bonderize|1
+(verb)|bonderise|coat (generic term)|surface (generic term)
+bondholder|1
+(noun)|investor (generic term)
+bonding|3
+(noun)|soldering|fastening (generic term)|attachment (generic term)
+(noun)|personal relation (generic term)|personal relationship (generic term)
+(noun)|technique (generic term)
+bondmaid|2
+(noun)|bondwoman|bondswoman|bond servant (generic term)
+(noun)|bondwoman|bondswoman|slave (generic term)
+bondman|2
+(noun)|bondsman|bond servant (generic term)
+(noun)|bondsman|slave (generic term)
+bondsman|3
+(noun)|bondman|slave (generic term)
+(noun)|bondswoman|benefactor (generic term)|helper (generic term)
+(noun)|bondman|bond servant (generic term)
+bondswoman|3
+(noun)|bondsman|benefactor (generic term)|helper (generic term)
+(noun)|bondwoman|bondmaid|bond servant (generic term)
+(noun)|bondwoman|bondmaid|slave (generic term)
+bonduc|2
+(noun)|Kentucky coffee tree|chicot|Gymnocladus dioica|tree (generic term)
+(noun)|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree (generic term)
+bonduc nut|1
+(noun)|nicker nut|nicker seed|seed (generic term)
+bonduc tree|1
+(noun)|bonduc|Caesalpinia bonduc|Caesalpinia bonducella|tree (generic term)
+bondwoman|2
+(noun)|bondswoman|bondmaid|bond servant (generic term)
+(noun)|bondswoman|bondmaid|slave (generic term)
+bone|6
+(adj)|bony (similar term)|boney (similar term)
+(noun)|os|connective tissue (generic term)
+(noun)|osseous tissue|animal material (generic term)
+(noun)|ivory|pearl|off-white|white (generic term)|whiteness (generic term)
+(verb)|cram|grind away|drum|bone up|swot|get up|mug up|swot up|study (generic term)|hit the books (generic term)
+(verb)|debone|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+bone-ash cup|1
+(noun)|cupel|refractory pot|vessel (generic term)
+bone-covered|1
+(adj)|armored (similar term)|armoured (similar term)
+bone-dry|1
+(adj)|bone dry|dry (similar term)
+bone-forming cell|1
+(noun)|osteoblast|embryonic cell (generic term)|formative cell (generic term)
+bone-headed dinosaur|1
+(noun)|ornithischian (generic term)|ornithischian dinosaur (generic term)
+bone-idle|1
+(adj)|bone-lazy|idle (similar term)
+bone-lazy|1
+(adj)|bone-idle|idle (similar term)
+bone age|1
+(noun)|age (generic term)
+bone ash|1
+(noun)|ash (generic term)
+bone black|1
+(noun)|bone char|animal black|animal charcoal|char (generic term)
+bone cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+bone char|1
+(noun)|bone black|animal black|animal charcoal|char (generic term)
+bone china|1
+(noun)|china (generic term)
+bone dry|1
+(adj)|bone-dry|dry (similar term)
+bone fat|1
+(noun)|animal fat (generic term)
+bone marrow|2
+(noun)|marrow|connective tissue (generic term)
+(noun)|marrow|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+bone of contention|1
+(noun)|subject (generic term)|topic (generic term)|theme (generic term)
+bone oil|2
+(noun)|animal oil (generic term)
+(noun)|Dippel's oil|animal oil (generic term)
+bone spavin|1
+(noun)|spavin (generic term)
+bone up|1
+(verb)|cram|grind away|drum|swot|get up|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+boned|2
+(adj)|deboned|boneless (similar term)
+(adj)|bony (similar term)|boney (similar term)
+bonefish|1
+(noun)|Albula vulpes|soft-finned fish (generic term)|malacopterygian (generic term)
+bonehead|1
+(noun)|dunce|dunderhead|numskull|blockhead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+boneheaded|1
+(adj)|blockheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid (similar term)
+boneless|1
+(adj)|boned (similar term)|deboned (similar term)|bony (antonym)
+bonelet|1
+(noun)|ossicle|ossiculum|bone (generic term)|os (generic term)
+bonelike|1
+(adj)|bony (similar term)|boney (similar term)
+bonemeal|1
+(noun)|organic (generic term)|organic fertilizer (generic term)|organic fertiliser (generic term)
+boner|1
+(noun)|blunder|blooper|bloomer|bungle|pratfall|foul-up|fuckup|flub|botch|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+bones|1
+(noun)|castanets|clappers|finger cymbals|maraca|percussion instrument (generic term)|percussive instrument (generic term)
+boneset|2
+(noun)|common comfrey|Symphytum officinale|comfrey (generic term)|cumfrey (generic term)
+(noun)|agueweed|thoroughwort|Eupatorium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+bonesetter|1
+(noun)|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+boneshaker|1
+(noun)|wheeled vehicle (generic term)
+bonete|1
+(noun)|Bonete|mountain peak (generic term)
+boney|2
+(adj)|bony|bone (similar term)|boned (similar term)|bonelike (similar term)|ridge-like (similar term)|strong-boned (similar term)|boneless (antonym)
+(adj)|scraggy|scrawny|skinny|underweight|weedy|thin (similar term)|lean (similar term)
+bonfire|1
+(noun)|balefire|fire (generic term)
+bonfire night|1
+(noun)|Bonfire Night|Guy Fawkes Night|November 5 (generic term)
+bong|2
+(noun)|sound (generic term)
+(verb)|resound (generic term)|echo (generic term)|ring (generic term)|reverberate (generic term)
+bongo|2
+(noun)|bongo drum|drum (generic term)|membranophone (generic term)|tympan (generic term)
+(noun)|Tragelaphus eurycerus|Boocercus eurycerus|antelope (generic term)
+bongo drum|1
+(noun)|bongo|drum (generic term)|membranophone (generic term)|tympan (generic term)
+bonheur|1
+(noun)|happiness (generic term)
+bonhoeffer|1
+(noun)|Bonhoeffer|Dietrich Bonhoeffer|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+bonhomie|1
+(noun)|affability|affableness|amiability|amiableness|geniality|friendliness (generic term)
+boniface|2
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+(noun)|host|innkeeper|patron (generic term)
+boniface viii|1
+(noun)|Boniface VIII|Benedetto Caetani|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+boniness|1
+(noun)|bonyness|emaciation|gauntness|maceration|leanness (generic term)|thinness (generic term)|spareness (generic term)
+bonito|3
+(noun)|tuna (generic term)|tuna fish (generic term)|tunny (generic term)
+(noun)|oceanic bonito|Katsuwonus pelamis|scombroid (generic term)|scombroid fish (generic term)
+(noun)|scombroid (generic term)|scombroid fish (generic term)
+bonito shark|1
+(noun)|blue pointed|Isurus glaucus|mako (generic term)|mako shark (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|sock|bop|whop|whap|bash|hit (generic term)
+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 (similar term)
+bonn|1
+(noun)|Bonn|city (generic term)|metropolis (generic term)|urban center (generic term)
+bonnet|3
+(noun)|poke bonnet|hat (generic term)|chapeau (generic term)|lid (generic term)
+(noun)|hood|cowl|cowling|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|hat (generic term)
+bonnet macaque|1
+(noun)|bonnet monkey|capped macaque|crown monkey|Macaca radiata|macaque (generic term)
+bonnet monkey|1
+(noun)|bonnet macaque|capped macaque|crown monkey|Macaca radiata|macaque (generic term)
+bonnet shark|1
+(noun)|shovelhead|bonnethead|Sphyrna tiburo|hammerhead (generic term)|hammerhead shark (generic term)
+bonnethead|1
+(noun)|shovelhead|bonnet shark|Sphyrna tiburo|hammerhead (generic term)|hammerhead shark (generic term)
+bonney|1
+(noun)|Bonney|William H. Bonney|Billie the Kid|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+bonnie|1
+(adj)|bonny|comely|fair|sightly|beautiful (similar term)
+bonny|1
+(adj)|bonnie|comely|fair|sightly|beautiful (similar term)
+bonobo|1
+(noun)|pygmy chimpanzee|Pan paniscus|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+bonsai|1
+(noun)|tree (generic term)
+bontemps|1
+(noun)|Bontemps|Arna Wendell Bontemps|writer (generic term)|author (generic term)
+bonus|2
+(noun)|fillip|positive stimulus (generic term)
+(noun)|incentive|payment (generic term)
+bonxie|1
+(noun)|skua|jaeger (generic term)
+bony|3
+(adj)|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|wasted|thin (similar term)|lean (similar term)
+(adj)|osseous|osteal|animal material (related term)
+(adj)|boney|bone (similar term)|boned (similar term)|bonelike (similar term)|ridge-like (similar term)|strong-boned (similar term)|boneless (antonym)
+bony-plated|1
+(adj)|armored (similar term)|armoured (similar term)
+bony fish|1
+(noun)|fish (generic term)
+bony labyrinth|1
+(noun)|osseous labyrinth|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+bonyness|1
+(noun)|boniness|emaciation|gauntness|maceration|leanness (generic term)|thinness (generic term)|spareness (generic term)
+bonzer|1
+(adj)|extraordinary (similar term)
+boo|2
+(noun)|hoot|Bronx cheer|hiss|raspberry|razzing|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|hiss|condemn (generic term)|applaud (antonym)
+boo-boo|1
+(noun)|blunder|blooper|bloomer|bungle|pratfall|foul-up|fuckup|flub|botch|boner|mistake (generic term)|error (generic term)|fault (generic term)
+boob|3
+(noun)|dumbbell|dummy|dope|booby|pinhead|simpleton (generic term)|simple (generic term)
+(noun)|breast|bosom|knocker|tit|titty|mammary gland (generic term)|mamma (generic term)
+(verb)|sin|blunder|goof|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+boob tube|1
+(noun)|television receiver|television|television set|tv|tv set|idiot box|telly|goggle box|receiver (generic term)|receiving system (generic term)
+booboisie|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+booby|2
+(noun)|dumbbell|dummy|dope|boob|pinhead|simpleton (generic term)|simple (generic term)
+(noun)|gannet (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+booby prize|1
+(noun)|trophy (generic term)|prize (generic term)
+booby trap|2
+(noun)|land mine|ground-emplaced mine|mine (generic term)
+(noun)|pitfall|difficulty (generic term)
+boocercus eurycerus|1
+(noun)|bongo|Tragelaphus eurycerus|Boocercus eurycerus|antelope (generic term)
+boodle|2
+(noun)|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|Michigan|Chicago|Newmarket|stops|card game (generic term)|cards (generic term)
+booger|2
+(noun)|bogeyman|bugbear|bugaboo|boogeyman|monster (generic term)
+(noun)|mucus (generic term)|mucous secretion (generic term)
+boogeyman|1
+(noun)|bogeyman|bugbear|bugaboo|booger|monster (generic term)
+boogie|2
+(noun)|boogie-woogie|jazz (generic term)|blues (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+boogie-woogie|1
+(noun)|boogie|jazz (generic term)|blues (generic term)
+boojum tree|1
+(noun)|cirio|Fouquieria columnaris|Idria columnaris|candlewood (generic term)
+book|15
+(noun)|publication (generic term)
+(noun)|volume|product (generic term)|production (generic term)
+(noun)|ledger|leger|account book|book of account|record (generic term)
+(noun)|product (generic term)|production (generic term)
+(noun)|record|record book|fact (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|script|playscript|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|rule book|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|Koran|Quran|al-Qur'an|Book|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|reserve|hold|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|schedule (generic term)
+(verb)|register (generic term)
+book agent|1
+(noun)|salesman (generic term)
+book bag|1
+(noun)|bag (generic term)
+book binding|1
+(noun)|binding|cover|back|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+book fair|2
+(noun)|bookfair|fair (generic term)
+(noun)|bookfair|bazaar (generic term)|fair (generic term)
+book jacket|1
+(noun)|dust cover|dust jacket|dust wrapper|jacket (generic term)
+book louse|1
+(noun)|booklouse|deathwatch|Liposcelis divinatorius|psocopterous insect (generic term)
+book lover|1
+(noun)|bibliophile|booklover|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+book lung|1
+(noun)|respiratory organ (generic term)
+book matches|1
+(noun)|safety match|match (generic term)|lucifer (generic term)|friction match (generic term)
+book of account|1
+(noun)|ledger|leger|account book|book|record (generic term)
+book of amos|1
+(noun)|Amos|Book of Amos|book (generic term)
+book of baruch|1
+(noun)|Baruch|Book of Baruch|book (generic term)
+book of common prayer|1
+(noun)|Book of Common Prayer|service book (generic term)
+book of daniel|1
+(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book (generic term)
+book of deuteronomy|1
+(noun)|Deuteronomy|Book of Deuteronomy|book (generic term)
+book of ecclesiastes|1
+(noun)|Ecclesiastes|Book of Ecclesiastes|book (generic term)
+book of esther|1
+(noun)|Esther|Book of Esther|book (generic term)
+book of exodus|1
+(noun)|Exodus|Book of Exodus|book (generic term)
+book of ezekiel|1
+(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book (generic term)
+book of ezra|1
+(noun)|Ezra|Book of Ezra|book (generic term)
+book of facts|1
+(noun)|reference book|reference|reference work|book (generic term)
+book of genesis|1
+(noun)|Genesis|Book of Genesis|book (generic term)
+book of habakkuk|1
+(noun)|Habakkuk|Habacuc|Book of Habakkuk|book (generic term)
+book of haggai|1
+(noun)|Haggai|Aggeus|Book of Haggai|book (generic term)
+book of hosea|1
+(noun)|Hosea|Book of Hosea|book (generic term)
+book of instructions|1
+(noun)|instruction manual|instructions|operating instructions|manual (generic term)
+book of isaiah|1
+(noun)|Isaiah|Book of Isaiah|book (generic term)
+book of jeremiah|1
+(noun)|Jeremiah|Book of Jeremiah|book (generic term)
+book of job|1
+(noun)|Job|Book of Job|book (generic term)
+book of joel|1
+(noun)|Joel|Book of Joel|book (generic term)
+book of jonah|1
+(noun)|Jonah|Book of Jonah|book (generic term)
+book of joshua|1
+(noun)|Joshua|Josue|Book of Joshua|book (generic term)
+book of judges|1
+(noun)|Judges|Book of Judges|book (generic term)
+book of judith|1
+(noun)|Judith|Book of Judith|book (generic term)
+book of knowledge|1
+(noun)|encyclopedia (generic term)|cyclopedia (generic term)|encyclopaedia (generic term)|cyclopaedia (generic term)
+book of lamentations|1
+(noun)|Lamentations|Book of Lamentations|book (generic term)
+book of leviticus|1
+(noun)|Leviticus|Book of Leviticus|book (generic term)
+book of malachi|1
+(noun)|Malachi|Malachias|Book of Malachi|book (generic term)
+book of maps|1
+(noun)|atlas|map collection|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+book of micah|1
+(noun)|Micah|Micheas|Book of Micah|book (generic term)
+book of mormon|1
+(noun)|Book of Mormon|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+book of nahum|1
+(noun)|Nahum|Book of Nahum|book (generic term)
+book of nehemiah|1
+(noun)|Nehemiah|Book of Nehemiah|book (generic term)
+book of numbers|1
+(noun)|Numbers|Book of Numbers|book (generic term)
+book of obadiah|1
+(noun)|Obadiah|Abdias|Book of Obadiah|book (generic term)
+book of proverbs|1
+(noun)|Proverbs|Book of Proverbs|book (generic term)
+book of psalms|2
+(noun)|Psalms|Book of Psalms|book (generic term)
+(noun)|Psalter|Book of Psalms|prayer book (generic term)|prayerbook (generic term)
+book of revelation|1
+(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book (generic term)
+book of ruth|1
+(noun)|Ruth|Book of Ruth|book (generic term)
+book of susanna|1
+(noun)|Susanna|Book of Susanna|book (generic term)
+book of the prophet daniel|1
+(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book (generic term)
+book of tobit|1
+(noun)|Tobit|Book of Tobit|book (generic term)
+book of zachariah|1
+(noun)|Zechariah|Zacharias|Book of Zachariah|book (generic term)
+book of zephaniah|1
+(noun)|Zephaniah|Sophonias|Book of Zephaniah|book (generic term)
+book review|1
+(noun)|review (generic term)|critique (generic term)|critical review (generic term)|review article (generic term)
+book scorpion|1
+(noun)|Chelifer cancroides|false scorpion (generic term)|pseudoscorpion (generic term)
+book seller|1
+(noun)|bookdealer|merchant (generic term)|merchandiser (generic term)
+book token|1
+(noun)|coupon (generic term)|voucher (generic term)
+book up|1
+(verb)|reserve (generic term)
+book value|1
+(noun)|value (generic term)
+bookable|1
+(adj)|reserved (similar term)
+bookbinder|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+bookbindery|1
+(noun)|workshop (generic term)|shop (generic term)
+bookbinding|1
+(noun)|handicraft (generic term)
+bookcase|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+bookclub|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+bookdealer|1
+(noun)|book seller|merchant (generic term)|merchandiser (generic term)
+booked|1
+(adj)|engaged|set-aside|reserved (similar term)
+bookend|1
+(noun)|support (generic term)
+booker|1
+(noun)|booking agent|agent (generic term)
+booker t. washington|1
+(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+booker taliaferro washington|1
+(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+bookfair|2
+(noun)|book fair|fair (generic term)
+(noun)|book fair|bazaar (generic term)|fair (generic term)
+bookie|1
+(noun)|bookmaker|gambler (generic term)
+booking|2
+(noun)|engagement|employment (generic term)|work (generic term)
+(noun)|reservation|employment (generic term)|engagement (generic term)
+booking agent|1
+(noun)|booker|agent (generic term)
+booking clerk|1
+(noun)|ticket agent|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+bookish|1
+(adj)|studious|scholarly (similar term)
+bookishness|1
+(noun)|studiousness (generic term)
+bookkeeper|1
+(noun)|accountant (generic term)|comptroller (generic term)|controller (generic term)
+bookkeeping|1
+(noun)|clerking|accountancy (generic term)|accounting (generic term)
+booklet|1
+(noun)|brochure|folder|leaflet|pamphlet|book (generic term)
+booklouse|1
+(noun)|book louse|deathwatch|Liposcelis divinatorius|psocopterous insect (generic term)
+booklover|1
+(noun)|bibliophile|book lover|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+bookmaker|2
+(noun)|maker (generic term)|shaper (generic term)
+(noun)|bookie|gambler (generic term)
+bookman|1
+(noun)|scholar|scholarly person|student|intellectual (generic term)|intellect (generic term)
+bookmark|1
+(noun)|bookmarker|marker (generic term)
+bookmarker|1
+(noun)|bookmark|marker (generic term)
+bookmobile|1
+(noun)|van (generic term)
+bookplate|1
+(noun)|ex libris|gummed label (generic term)|sticker (generic term)|paster (generic term)
+bookseller|1
+(noun)|owner (generic term)|proprietor (generic term)
+bookshelf|1
+(noun)|shelf (generic term)
+bookshop|1
+(noun)|bookstore|bookstall|shop (generic term)|store (generic term)
+bookstall|1
+(noun)|bookshop|bookstore|shop (generic term)|store (generic term)
+bookstore|1
+(noun)|bookshop|bookstall|shop (generic term)|store (generic term)
+bookworm|2
+(noun)|pedant|scholastic|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|reader (generic term)
+boole|1
+(noun)|Boole|George Boole|mathematician (generic term)
+boolean|1
+(adj)|Boolean|mathematician (related term)
+boolean algebra|1
+(noun)|Boolean logic|Boolean algebra|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+boolean logic|1
+(noun)|Boolean logic|Boolean algebra|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+boolean operation|1
+(noun)|binary operation|binary arithmetic operation|operation (generic term)
+boom|10
+(noun)|roar|roaring|thunder|noise (generic term)
+(noun)|prosperity (generic term)
+(noun)|bonanza|gold rush|gravy|godsend|manna from heaven|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|microphone boom|pole (generic term)
+(noun)|spar (generic term)
+(verb)|din|sound (generic term)|go (generic term)
+(verb)|smash|nail|blast|hit (generic term)
+(verb)|thunder
+(verb)|boom out|sound (generic term)|go (generic term)
+(verb)|prosper|thrive|get ahead|flourish|expand|grow (generic term)
+boom box|1
+(noun)|ghetto blaster|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+boom out|1
+(verb)|boom|sound (generic term)|go (generic term)
+boom town|1
+(noun)|town (generic term)
+boomer|1
+(noun)|baby boomer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+boomerang|3
+(noun)|throwing stick|throw stick|projectile (generic term)|missile (generic term)
+(noun)|backfire|miscalculation (generic term)|misreckoning (generic term)|misestimation (generic term)
+(verb)|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+booming|2
+(adj)|flourishing|palmy|prospering|prosperous|roaring|thriving|successful (similar term)
+(adj)|stentorian|full (similar term)
+boon|2
+(adj)|close (similar term)
+(noun)|blessing|good fortune (generic term)|luckiness (generic term)|good luck (generic term)
+boondocks|1
+(noun)|backwoods|back country|hinterland|country (generic term)|rural area (generic term)
+boondoggle|2
+(noun)|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+(verb)|work (generic term)
+boone|1
+(noun)|Boone|Daniel Boone|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)
+boor|1
+(noun)|peasant|barbarian|churl|Goth|tyke|tike|unpleasant person (generic term)|disagreeable person (generic term)
+boorish|1
+(adj)|loutish|neanderthal|neandertal|oafish|swinish|unrefined (similar term)
+boorishness|2
+(noun)|discourtesy (generic term)|rudeness (generic term)
+(noun)|uncouthness|inelegance (generic term)
+boost|8
+(noun)|encouragement|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|rise|hike|cost increase|increase (generic term)|increment (generic term)
+(noun)|push (generic term)|pushing (generic term)
+(verb)|hike|hike up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|increase (generic term)
+(verb)|promote|advance|further|encourage|support (generic term)|back up (generic term)
+(verb)|advance|supercharge|increase (generic term)
+(verb)|thrust (generic term)
+boost up|1
+(verb)|push up (generic term)
+booster|6
+(noun)|supporter|protagonist|champion|admirer|friend|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|promoter|plugger|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+(noun)|shoplifter|lifter|thief (generic term)|stealer (generic term)
+(noun)|booster amplifier|booster station|relay link|relay station|relay transmitter|amplifier (generic term)
+(noun)|booster rocket|booster unit|takeoff booster|takeoff rocket|rocket (generic term)|rocket engine (generic term)
+(noun)|booster dose|booster shot|recall dose|dose (generic term)
+booster amplifier|1
+(noun)|booster|booster station|relay link|relay station|relay transmitter|amplifier (generic term)
+booster cable|1
+(noun)|jumper cable|jumper lead|lead|jumper (generic term)|wire (generic term)|conducting wire (generic term)
+booster dose|1
+(noun)|booster|booster shot|recall dose|dose (generic term)
+booster rocket|1
+(noun)|booster|booster unit|takeoff booster|takeoff rocket|rocket (generic term)|rocket engine (generic term)
+booster shot|1
+(noun)|booster|booster dose|recall dose|dose (generic term)
+booster station|1
+(noun)|booster|booster amplifier|relay link|relay station|relay transmitter|amplifier (generic term)
+booster unit|1
+(noun)|booster|booster rocket|takeoff booster|takeoff rocket|rocket (generic term)|rocket engine (generic term)
+boot|9
+(noun)|footwear (generic term)|footgear (generic term)
+(noun)|luggage compartment (generic term)|automobile trunk (generic term)|trunk (generic term)
+(noun)|bang|charge|rush|flush|thrill|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|shell (generic term)|case (generic term)|casing (generic term)
+(noun)|the boot|iron boot|iron heel|instrument of torture (generic term)
+(noun)|torture (generic term)|torturing (generic term)
+(noun)|kick|kicking|blow (generic term)
+(verb)|kick (generic term)|boot out (related term)
+(verb)|reboot|bring up|resuscitate (generic term)|revive (generic term)
+boot-shaped|1
+(adj)|formed (similar term)
+boot camp|1
+(noun)|camp (generic term)|encampment (generic term)|cantonment (generic term)|bivouac (generic term)
+boot maker|1
+(noun)|bootmaker|cobbler (generic term)|shoemaker (generic term)
+boot out|2
+(verb)|oust|throw out|drum out|kick out|expel|remove (generic term)
+(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|turn out|move (generic term)|displace (generic term)
+boot sale|1
+(noun)|car boot sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+bootblack|1
+(noun)|shoeblack|unskilled person (generic term)
+bootboys|1
+(noun)|skinheads|youth subculture (generic term)
+booted|1
+(adj)|shod (similar term)|shodden (similar term)|shoed (similar term)
+booted armillaria|1
+(noun)|Armillaria caligata|agaric (generic term)
+bootee|1
+(noun)|bootie|slipper (generic term)|carpet slipper (generic term)
+bootes|1
+(noun)|Bootes|constellation (generic term)
+booth|4
+(noun)|table (generic term)
+(noun)|cubicle|stall|kiosk|closet (generic term)
+(noun)|Booth|John Wilkes Booth|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|assassin (generic term)|assassinator (generic term)|bravo (generic term)
+(noun)|shop (generic term)|store (generic term)
+boothose|1
+(noun)|stocking (generic term)
+bootie|1
+(noun)|bootee|slipper (generic term)|carpet slipper (generic term)
+bootjack|1
+(noun)|device (generic term)
+bootlace|1
+(noun)|lace (generic term)|lacing (generic term)
+bootleg|5
+(adj)|black|black-market|contraband|smuggled|illegal (similar term)
+(noun)|moonshine|corn liquor|corn whiskey (generic term)|corn whisky (generic term)|corn (generic term)
+(noun)|covering (generic term)
+(verb)|sell (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+bootlegger|1
+(noun)|moonshiner|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+bootlegging|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+bootless|1
+(adj)|fruitless|futile|sleeveless|vain|unproductive (similar term)
+bootlick|1
+(verb)|fawn|toady|truckle|kowtow|kotow|suck up|flatter (generic term)|blandish (generic term)
+bootlicker|1
+(noun)|apple polisher|fawner|groveller|groveler|truckler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+bootlicking|2
+(adj)|fawning|obsequious|sycophantic|toadyish|insincere (similar term)
+(adj)|fawning|sycophantic|toadyish|servile (similar term)
+bootmaker|1
+(noun)|boot maker|cobbler (generic term)|shoemaker (generic term)
+bootstrap|2
+(noun)|strap (generic term)
+(verb)|help (generic term)|assist (generic term)|aid (generic term)
+boott's goldenrod|1
+(noun)|Boott's goldenrod|goldenrod (generic term)
+booty|1
+(noun)|loot|pillage|plunder|prize|swag|dirty money|stolen property (generic term)
+booyong|1
+(noun)|red beech|brown oak|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+booze|2
+(noun)|liquor|spirits|hard drink|hard liquor|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(verb)|drink|fuddle|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+booze-up|1
+(noun)|carouse|carousal|bender|toot|revel (generic term)|revelry (generic term)
+boozer|1
+(noun)|alcoholic|alky|dipsomaniac|lush|soaker|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+boozing|1
+(noun)|drink|drinking|drunkenness|crapulence|intemperance (generic term)|intemperateness (generic term)
+boozy|1
+(adj)|bibulous|drunken|sottish|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+bop|4
+(noun)|Federal Bureau of Prisons|BoP|law enforcement agency (generic term)
+(noun)|bebop|jazz (generic term)
+(verb)|bebop|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|sock|whop|whap|bonk|bash|hit (generic term)
+bopeep|1
+(noun)|peekaboo|child's game (generic term)
+boracic|1
+(adj)|boric|chemical element|element (related term)
+boracic acid|1
+(noun)|boric acid|acid (generic term)
+borage|2
+(noun)|tailwort|Borago officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+borage family|1
+(noun)|Boraginaceae|family Boraginaceae|plant family (generic term)
+boraginaceae|1
+(noun)|Boraginaceae|family Boraginaceae|borage family|plant family (generic term)
+borago|1
+(noun)|Borago|genus Borago|plant genus (generic term)
+borago officinalis|1
+(noun)|borage|tailwort|Borago officinalis|herb (generic term)|herbaceous plant (generic term)
+borassus|1
+(noun)|Borassus|genus Borassus|monocot genus (generic term)|liliopsid genus (generic term)
+borassus flabellifer|1
+(noun)|palmyra|palmyra palm|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm (generic term)
+borate|1
+(noun)|salt (generic term)
+borated|1
+(adj)|mineral (related term)
+borax|1
+(noun)|mineral (generic term)
+bordeaux|2
+(noun)|Bordeaux|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Bordeaux|Bordeaux wine|wine (generic term)|vino (generic term)
+bordeaux mixture|1
+(noun)|Bordeaux mixture|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+bordeaux wine|1
+(noun)|Bordeaux|Bordeaux wine|wine (generic term)|vino (generic term)
+bordelaise|1
+(noun)|sauce (generic term)
+bordello|1
+(noun)|whorehouse|brothel|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+border|10
+(noun)|boundary line|borderline|delimitation|mete|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|margin|perimeter|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|edge|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|molding|moulding|edge (generic term)|margin (generic term)
+(noun)|edge (generic term)|margin (generic term)
+(verb)|surround|skirt|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|bound|enclose (generic term)|hold in (generic term)|confine (generic term)|border on (related term)
+(verb)|frame|frame in|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|edge|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|adjoin|edge|abut|march|butt|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+border collie|1
+(noun)|Border collie|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+border district|1
+(noun)|borderland|march|marchland|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+border on|1
+(verb)|approach|approximate (generic term)|come close (generic term)
+border patrol|1
+(noun)|patrol (generic term)
+border patrolman|1
+(noun)|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+border terrier|1
+(noun)|Border terrier|terrier (generic term)
+bordered|1
+(adj)|boxed (similar term)|deckled (similar term)|deckle-edged (similar term)|featheredged (similar term)|edged (similar term)|fringed (similar term)|lined (similar term)|sawtoothed-edged (similar term)|seagirt (similar term)|spiny-edged (similar term)|white-edged (similar term)|finite (related term)|unbordered (antonym)
+borderer|1
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+borderland|1
+(noun)|border district|march|marchland|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+borderline|2
+(adj)|marginal|minimal (similar term)|minimum (similar term)
+(noun)|boundary line|border|delimitation|mete|boundary (generic term)|bound (generic term)|bounds (generic term)
+borderline intelligence|1
+(noun)|intelligence quotient (generic term)|IQ (generic term)|I.Q. (generic term)
+borderline schizophrenia|1
+(noun)|latent schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+bore|6
+(noun)|dullard|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|tidal bore|eagre|aegir|eager|tidal flow (generic term)|tidal current (generic term)
+(noun)|gauge|caliber|calibre|diameter (generic term)|diam (generic term)
+(noun)|bore-hole|drill hole|excavation (generic term)
+(verb)|tire|interest (antonym)
+(verb)|drill|cut (generic term)
+bore-hole|1
+(noun)|bore|drill hole|excavation (generic term)
+bore bit|1
+(noun)|borer|rock drill|stone drill|drill (generic term)
+boreal|3
+(adj)|wind|air current|current of air (related term)
+(adj)|cardinal compass point (related term)
+(adj)|circumboreal|northern (similar term)
+boreas|2
+(noun)|north wind|northerly|norther|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|Boreas|Greek deity (generic term)
+borecole|1
+(noun)|kale|kail|cole|colewort|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+bored|2
+(adj)|world-weary|tired (similar term)
+(adj)|blase|uninterested (similar term)
+boredom|1
+(noun)|ennui|tedium|dissatisfaction (generic term)
+borer|2
+(noun)|bore bit|rock drill|stone drill|drill (generic term)
+(noun)|woodborer|invertebrate (generic term)
+borges|1
+(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer (generic term)|author (generic term)
+borgia|4
+(noun)|Calixtus III|Borgia|Alfonso Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+(noun)|Borgia|Cesare Borgia|cardinal (generic term)|soldier (generic term)
+(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+boric|1
+(adj)|boracic|chemical element|element (related term)
+boric acid|2
+(noun)|orthoboric acid|acid (generic term)
+(noun)|boracic acid|acid (generic term)
+boring|3
+(adj)|deadening|dull|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting (similar term)
+(noun)|drilling|creating by removal (generic term)
+(noun)|drilling|oil production|production (generic term)
+boringly|1
+(adv)|tediously|tiresomely
+boringness|1
+(noun)|dreariness|insipidness|insipidity|dullness (generic term)
+boris fyodorovich godunov|1
+(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar (generic term)|tsar (generic term)|tzar (generic term)
+boris godunov|1
+(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar (generic term)|tsar (generic term)|tzar (generic term)
+boris karloff|1
+(noun)|Karloff|Boris Karloff|William Henry Pratt|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+boris leonidovich pasternak|1
+(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer (generic term)|author (generic term)
+boris pasternak|1
+(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer (generic term)|author (generic term)
+boris spassky|1
+(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master (generic term)
+boris vasilevich spassky|1
+(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master (generic term)
+born|3
+(adj)|given birth (similar term)|hatched (similar term)|dropped (similar term)|whelped (similar term)|foaled (similar term)|calved (similar term)|unborn (antonym)
+(adj)|natural|innate|intelligent (similar term)
+(noun)|Born|Max Born|nuclear physicist (generic term)
+born-again|1
+(adj)|converted|reborn|regenerate (similar term)
+born-again christian|1
+(noun)|born-again Christian|Christian (generic term)
+borne in upon|1
+(adj)|causative (similar term)
+bornean|1
+(noun)|Bornean|Malaysian (generic term)
+borneo|1
+(noun)|Borneo|Kalimantan|island (generic term)
+bornholm disease|1
+(noun)|epidemic pleurodynia|epidemic myalgia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease (generic term)
+bornite|1
+(noun)|peacock ore|mineral (generic term)
+borodin|1
+(noun)|Borodin|Aleksandr Borodin|Aleksandr Porfirevich Borodin|composer (generic term)
+borodino|1
+(noun)|Borodino|pitched battle (generic term)
+boron|1
+(noun)|B|atomic number 5|chemical element (generic term)|element (generic term)
+boron chamber|1
+(noun)|ionization chamber (generic term)|ionization tube (generic term)
+boron counter tube|1
+(noun)|proportional counter tube (generic term)|proportional counter (generic term)
+boron trifluoride|1
+(noun)|fluoride (generic term)
+boronic|1
+(adj)|chemical element|element (related term)
+borosilicate|1
+(noun)|salt (generic term)
+borough|2
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|town (generic term)|townspeople (generic term)|townsfolk (generic term)
+borough english|1
+(noun)|borough English|inheritance (generic term)|heritage (generic term)
+borrelia|1
+(noun)|spirochete (generic term)|spirochaete (generic term)
+borrelia burgdorferi|1
+(noun)|Borrelia burgdorferi|Lime disease spirochete|spirochete (generic term)|spirochaete (generic term)
+borrow|2
+(verb)|get (generic term)|acquire (generic term)|lend (antonym)
+(verb)|adopt|take over|take up|accept (generic term)|take (generic term)|have (generic term)
+borrow pit|1
+(noun)|pit (generic term)|cavity (generic term)
+borrower|1
+(noun)|recipient (generic term)|receiver (generic term)|lender (antonym)
+borrower's card|1
+(noun)|library card|card (generic term)|identity card (generic term)
+borrowing|2
+(noun)|adoption|appropriation (generic term)
+(noun)|transaction (generic term)|dealing (generic term)|dealings (generic term)
+borrowing cost|1
+(noun)|cost (generic term)
+borsch|1
+(noun)|borsh|borscht|borsht|borshch|bortsch|soup (generic term)
+borscht|1
+(noun)|borsch|borsh|borsht|borshch|bortsch|soup (generic term)
+borscht belt|1
+(noun)|borscht circuit|borsht circuit|borsht belt|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+borscht circuit|1
+(noun)|borsht circuit|borscht belt|borsht belt|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+borsh|1
+(noun)|borsch|borscht|borsht|borshch|bortsch|soup (generic term)
+borshch|1
+(noun)|borsch|borsh|borscht|borsht|bortsch|soup (generic term)
+borsht|1
+(noun)|borsch|borsh|borscht|borshch|bortsch|soup (generic term)
+borsht belt|1
+(noun)|borscht circuit|borsht circuit|borscht belt|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+borsht circuit|1
+(noun)|borscht circuit|borscht belt|borsht belt|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+borstal|1
+(noun)|Borstal|reformatory (generic term)|reform school (generic term)|training school (generic term)
+bortsch|1
+(noun)|borsch|borsh|borscht|borsht|borshch|soup (generic term)
+borzoi|1
+(noun)|Russian wolfhound|wolfhound (generic term)
+bos|1
+(noun)|Bos|genus Bos|mammal genus (generic term)
+bos'n|1
+(noun)|boatswain|bo's'n|bosun|bo'sun|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bos banteng|1
+(noun)|banteng|banting|tsine|Bos banteng|ox (generic term)|wild ox (generic term)
+bos grunniens|1
+(noun)|yak|Bos grunniens|ox (generic term)|wild ox (generic term)
+bos indicus|1
+(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine (generic term)
+bos primigenius|1
+(noun)|aurochs|urus|Bos primigenius|ox (generic term)|wild ox (generic term)
+bos taurus|1
+(noun)|cattle|cows|kine|oxen|Bos taurus|bovine (generic term)
+bosc|1
+(noun)|pear (generic term)
+bosch|1
+(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master (generic term)
+bose|1
+(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist (generic term)
+bose-einstein statistics|1
+(noun)|Bose-Einstein statistics|law (generic term)|law of nature (generic term)
+boselaphus|1
+(noun)|Boselaphus|genus Boselaphus|mammal genus (generic term)
+boselaphus tragocamelus|1
+(noun)|nilgai|nylghai|nylghau|blue bull|Boselaphus tragocamelus|antelope (generic term)
+bosh|1
+(noun)|baloney|boloney|bilgewater|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+bosie|1
+(noun)|googly|wrong 'un|bosie ball|bowling (generic term)
+bosie ball|1
+(noun)|googly|wrong 'un|bosie|bowling (generic term)
+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 (generic term)
+bosk|1
+(noun)|forest (generic term)|wood (generic term)|woods (generic term)
+boskop man|1
+(noun)|Boskop man|Homo sapiens (generic term)
+boskopoid|1
+(adj)|Homo sapiens (related term)
+bosky|1
+(adj)|brushy|wooded (similar term)
+bosna i hercegovina|1
+(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country (generic term)|European nation (generic term)
+bosnia|2
+(noun)|Bosnia|state (generic term)|province (generic term)
+(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country (generic term)|European nation (generic term)
+bosnia-herzegovina|1
+(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country (generic term)|European nation (generic term)
+bosnia and herzegovina|1
+(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country (generic term)|European nation (generic term)
+bosnian|1
+(adj)|Bosnian|European country|European nation (related term)
+bosom|8
+(noun)|privacy (generic term)|privateness (generic term)|secrecy (generic term)|concealment (generic term)
+(noun)|breast (generic term)
+(noun)|cloth covering (generic term)
+(noun)|embrace|adoption (generic term)|acceptance (generic term)|acceptation (generic term)|espousal (generic term)
+(noun)|heart|intuition (generic term)|hunch (generic term)|suspicion (generic term)
+(noun)|breast|knocker|boob|tit|titty|mammary gland (generic term)|mamma (generic term)
+(verb)|hide (generic term)|conceal (generic term)
+(verb)|embrace|hug|squeeze|clasp (generic term)
+bosom of abraham|1
+(noun)|Abraham's bosom|bosom of Abraham|Heaven (generic term)
+bosomed|1
+(adj)|breasted (similar term)
+bosomy|1
+(adj)|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+boson|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+bosporus|1
+(noun)|Bosporus|strait (generic term)|sound (generic term)
+bosporus bridge|1
+(noun)|Bosporus Bridge|suspension bridge (generic term)
+boss|7
+(adj)|brag|superior (similar term)
+(noun)|foreman|chief|gaffer|honcho|supervisor (generic term)
+(noun)|hirer|employer (generic term)
+(noun)|leader (generic term)
+(noun)|party boss|political boss|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|knob|projection (generic term)
+(verb)|emboss|stamp|impress (generic term)|imprint (generic term)
+boss-eyed|1
+(adj)|cross-eyed (similar term)
+boss around|1
+(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|hector|push around|intimidate (generic term)
+bossism|1
+(noun)|domination (generic term)
+bossy|1
+(adj)|autocratic|dominating|high-and-mighty|magisterial|peremptory|domineering (similar term)
+boston|1
+(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital (generic term)
+boston baked beans|1
+(noun)|Boston baked beans|dish (generic term)
+boston brown bread|1
+(noun)|brown bread|Boston brown bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+boston bull|1
+(noun)|Boston bull|Boston terrier|terrier (generic term)
+boston cream pie|1
+(noun)|Boston cream pie|cake (generic term)
+boston fern|1
+(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern (generic term)
+boston harbor|1
+(noun)|Boston Harbor|seaport (generic term)|haven (generic term)|harbor (generic term)|harbour (generic term)
+boston ivy|1
+(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine (generic term)
+boston lettuce|1
+(noun)|Boston lettuce|butterhead lettuce (generic term)
+boston rocker|1
+(noun)|Boston rocker|rocking chair (generic term)|rocker (generic term)
+boston tea party|1
+(noun)|Boston Tea Party|demonstration (generic term)|manifestation (generic term)
+boston terrier|1
+(noun)|Boston bull|Boston terrier|terrier (generic term)
+bostonian|1
+(noun)|Bostonian|American (generic term)
+bosun|1
+(noun)|boatswain|bos'n|bo's'n|bo'sun|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+bosun's chair|1
+(noun)|boatswain's chair|seat (generic term)
+boswell|2
+(noun)|Boswell|James Boswell|writer (generic term)|author (generic term)
+(noun)|Boswell|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+boswellia|1
+(noun)|Boswellia|genus Boswellia|rosid dicot genus (generic term)
+boswellia carteri|1
+(noun)|Boswellia carteri|incense tree (generic term)
+boswellia serrata|1
+(noun)|salai|Boswellia serrata|incense tree (generic term)
+bosworth field|1
+(noun)|Bosworth Field|pitched battle (generic term)
+bot|1
+(noun)|larva (generic term)
+bota|1
+(noun)|wine bottle (generic term)
+botanic|1
+(adj)|botanical|biology|biological science (related term)
+botanical|2
+(adj)|botanic|biology|biological science (related term)
+(noun)|drug (generic term)
+botanical garden|1
+(noun)|arboretum|facility (generic term)|installation (generic term)
+botanical medicine|1
+(noun)|phytotherapy|herbal therapy|therapy (generic term)
+botanise|1
+(verb)|botanize|analyze (generic term)|analyse (generic term)|break down (generic term)|dissect (generic term)|take apart (generic term)
+botanist|1
+(noun)|phytologist|plant scientist|biologist (generic term)|life scientist (generic term)
+botanize|1
+(verb)|botanise|analyze (generic term)|analyse (generic term)|break down (generic term)|dissect (generic term)|take apart (generic term)
+botany|2
+(noun)|vegetation|flora|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|fauna (antonym)
+(noun)|phytology|biology (generic term)|biological science (generic term)
+botany bay fig|1
+(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree (generic term)
+botaurus|1
+(noun)|Botaurus|genus Botaurus|bird genus (generic term)
+botaurus lentiginosus|1
+(noun)|American bittern|stake driver|Botaurus lentiginosus|bittern (generic term)
+botaurus stellaris|1
+(noun)|European bittern|Botaurus stellaris|bittern (generic term)
+botch|2
+(noun)|blunder|blooper|bloomer|bungle|pratfall|foul-up|fuckup|flub|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+botch up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+botched|1
+(adj)|bungled|unskilled (similar term)
+botcher|1
+(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+botchy|1
+(adj)|butcherly|unskillful|unskilled (similar term)
+botfly|1
+(noun)|gadfly (generic term)
+both|1
+(adj)|some (similar term)
+bother|8
+(noun)|fuss|trouble|hassle|perturbation (generic term)|disturbance (generic term)
+(noun)|annoyance|botheration|pain|infliction|pain in the neck|pain in the ass|negative stimulus (generic term)
+(verb)|trouble oneself|trouble|inconvenience oneself|strive (generic term)|reach (generic term)|strain (generic term)
+(verb)|annoy|rag|get to|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+(verb)|trouble|put out|inconvenience|disoblige|discommode|incommode|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|intrude (generic term)|irrupt (generic term)
+(verb)|agitate (generic term)|rouse (generic term)|turn on (generic term)|charge (generic term)|commove (generic term)|excite (generic term)|charge up (generic term)
+(verb)|confuse (generic term)|flurry (generic term)|disconcert (generic term)|put off (generic term)
+botheration|2
+(noun)|irritation|annoyance|vexation|psychological state (generic term)|mental state (generic term)
+(noun)|annoyance|bother|pain|infliction|pain in the neck|pain in the ass|negative stimulus (generic term)
+bothered|1
+(adj)|daunted|fazed|discomposed (similar term)
+bothersome|1
+(adj)|annoying|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+bothidae|1
+(noun)|Bothidae|family Bothidae|fish family (generic term)
+bothrops|1
+(noun)|Bothrops|genus Bothrops|reptile genus (generic term)
+bothrops atrops|1
+(noun)|fer-de-lance|Bothrops atrops|pit viper (generic term)
+botonee|1
+(adj)|botonnee|buttoned (similar term)|fastened (similar term)
+botonnee|1
+(adj)|botonee|buttoned (similar term)|fastened (similar term)
+botox|1
+(noun)|botulinum toxin A|Botox|botulinum toxin (generic term)
+botrychium|1
+(noun)|Botrychium|genus Botrychium|fern genus (generic term)
+botrychium lunaria|1
+(noun)|moonwort|common moonwort|Botrychium lunaria|grape fern (generic term)
+botrychium matricariifolium|1
+(noun)|daisyleaf grape fern|daisy-leaved grape fern|Botrychium matricariifolium|grape fern (generic term)
+botrychium multifidum|1
+(noun)|leathery grape fern|Botrychium multifidum|grape fern (generic term)
+botrychium virginianum|1
+(noun)|rattlesnake fern|Botrychium virginianum|grape fern (generic term)
+botryoid|1
+(adj)|botryoidal|boytrose|vine (related term)
+botryoidal|1
+(adj)|botryoid|boytrose|vine (related term)
+botswana|1
+(noun)|Botswana|Republic of Botswana|African country (generic term)|African nation (generic term)
+botswana monetary unit|1
+(noun)|Botswana monetary unit|monetary unit (generic term)
+botswanan|1
+(adj)|Botswanan|African country|African nation (related term)
+botticelli|1
+(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master (generic term)
+bottle|5
+(noun)|vessel (generic term)
+(noun)|bottleful|containerful (generic term)
+(noun)|feeding bottle|nursing bottle|vessel (generic term)
+(verb)|store (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+bottle-fed|1
+(adj)|breast-fed (antonym)
+bottle-feed|1
+(verb)|breastfeed|suckle|suck|nurse|wet-nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+bottle-grass|1
+(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+bottle-green|1
+(adj)|chromatic (similar term)
+bottle-nosed dolphin|1
+(noun)|bottlenose dolphin|bottlenose|dolphin (generic term)
+bottle-nosed whale|1
+(noun)|bottlenose whale|bottlenose|Hyperoodon ampullatus|beaked whale (generic term)
+bottle-shaped|1
+(adj)|formed (similar term)
+bottle-tree|1
+(noun)|bottle tree|tree (generic term)
+bottle bank|1
+(noun)|recycling bin (generic term)
+bottle bill|1
+(noun)|bill (generic term)|measure (generic term)
+bottle collection|3
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+(noun)|recycling (generic term)
+bottle cork|1
+(noun)|cork|plug (generic term)|stopper (generic term)|stopple (generic term)
+bottle gentian|1
+(noun)|closed gentian|blind gentian|Gentiana andrewsii|gentian (generic term)
+bottle gourd|1
+(noun)|calabash|Lagenaria siceraria|gourd (generic term)|gourd vine (generic term)
+bottle grass|1
+(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle-grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+bottle green|1
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+bottle opener|1
+(noun)|opener (generic term)
+bottle screw|1
+(noun)|corkscrew|bottle opener (generic term)
+bottle tree|1
+(noun)|bottle-tree|tree (generic term)
+bottle up|1
+(verb)|suppress|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+bottlebrush|1
+(noun)|brush (generic term)
+bottlebrush buckeye|1
+(noun)|dwarf buckeye|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+bottlecap|1
+(noun)|cap (generic term)
+bottled gas|1
+(noun)|liquefied petroleum gas|gas (generic term)|hydrocarbon (generic term)
+bottled water|1
+(noun)|drinking water (generic term)
+bottlefeed|1
+(verb)|feed (generic term)|give (generic term)|breastfeed (antonym)
+bottleful|1
+(noun)|bottle|containerful (generic term)
+bottleneck|4
+(noun)|constriction|chokepoint|narrowing (generic term)
+(noun)|part (generic term)|portion (generic term)
+(verb)|obstruct (generic term)|blockade (generic term)|block (generic term)|hinder (generic term)|stymie (generic term)|stymy (generic term)|embarrass (generic term)
+(verb)|narrow (generic term)|contract (generic term)
+bottlenose|2
+(noun)|bottlenose dolphin|bottle-nosed dolphin|dolphin (generic term)
+(noun)|bottle-nosed whale|bottlenose whale|Hyperoodon ampullatus|beaked whale (generic term)
+bottlenose dolphin|1
+(noun)|bottle-nosed dolphin|bottlenose|dolphin (generic term)
+bottlenose whale|1
+(noun)|bottle-nosed whale|bottlenose|Hyperoodon ampullatus|beaked whale (generic term)
+bottler|1
+(noun)|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+bottling plant|1
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+bottom|12
+(adj)|bottommost (similar term)|lowermost (similar term)|nethermost (similar term)|inferior (similar term)|nether (similar term)|side (antonym)|top (antonym)
+(adj)|worst (similar term)
+(noun)|underside|undersurface|side (generic term)|face (generic term)
+(noun)|region (generic term)|part (generic term)
+(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 (generic term)
+(noun)|bottom of the inning|turn (generic term)|bout (generic term)|round (generic term)|top (antonym)
+(noun)|bed|natural depression (generic term)|depression (generic term)
+(noun)|bottomland|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|freighter|merchantman|merchant ship|cargo ship (generic term)|cargo vessel (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|penetrate|fathom|understand (generic term)
+bottom-dweller|1
+(noun)|bottom-feeder|fish (generic term)
+bottom-dwelling|1
+(adj)|fish (related term)
+bottom-feeder|2
+(noun)|scavenger (generic term)
+(noun)|bottom-dweller|fish (generic term)
+bottom-feeding|1
+(adj)|fish (related term)
+bottom-up|1
+(adj)|top-down (antonym)
+bottom dog|1
+(noun)|subordinate (generic term)|subsidiary (generic term)|underling (generic term)|foot soldier (generic term)
+bottom feeder|1
+(noun)|opportunist (generic term)|self-seeker (generic term)
+bottom fermentation|1
+(noun)|zymosis (generic term)|zymolysis (generic term)|fermentation (generic term)|fermenting (generic term)|ferment (generic term)
+bottom fermenting yeast|1
+(noun)|brewer's yeast (generic term)
+bottom fish|1
+(noun)|groundfish|food fish (generic term)
+bottom line|2
+(noun)|line (generic term)
+(noun)|point (generic term)
+bottom lurkers|1
+(noun)|fish (generic term)
+bottom of the inning|1
+(noun)|bottom|turn (generic term)|bout (generic term)|round (generic term)|top (antonym)
+bottom out|2
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)|top out (antonym)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+bottom quark|1
+(noun)|beauty quark|quark (generic term)
+bottom rot|1
+(noun)|plant disease (generic term)
+bottom rot fungus|1
+(noun)|Corticium solani|fungus (generic term)
+bottom round|1
+(noun)|pot roast (generic term)
+bottomed|1
+(adj)|bell-bottomed (similar term)|bell-bottom (similar term)|bellbottom (similar term)|copper-bottomed (similar term)|flat-bottomed (similar term)|flat-bottom (similar term)|round-bottomed (similar term)|round-bottom (similar term)|bottomless (antonym)
+bottomland|1
+(noun)|bottom|land (generic term)|ground (generic term)|soil (generic term)
+bottomless|4
+(adj)|deep (similar term)
+(adj)|bottomed (antonym)
+(adj)|unlimited (similar term)|limitless (similar term)
+(adj)|unclothed (similar term)
+bottomlessness|1
+(noun)|deepness (generic term)|profundity (generic term)|profoundness (generic term)
+bottommost|1
+(adj)|lowermost|nethermost|bottom (similar term)
+botuliform|1
+(adj)|formed (similar term)
+botulin|1
+(noun)|botulinus toxin|botulismotoxin|bacterial toxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+botulinal|1
+(adj)|eubacteria|eubacterium|true bacteria (related term)
+botulinum|1
+(noun)|botulinus|Clostridium botulinum|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+botulinum toxin|1
+(noun)|neurotoxin (generic term)|neurolysin (generic term)
+botulinum toxin a|1
+(noun)|botulinum toxin A|Botox|botulinum toxin (generic term)
+botulinus|1
+(noun)|botulinum|Clostridium botulinum|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+botulinus toxin|1
+(noun)|botulin|botulismotoxin|bacterial toxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+botulism|1
+(noun)|food poisoning (generic term)|gastrointestinal disorder (generic term)
+botulismotoxin|1
+(noun)|botulin|botulinus toxin|bacterial toxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+bouchee|1
+(noun)|patty shell|pastry (generic term)
+boucle|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+boudoir|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+bouffant|2
+(adj)|puffy|large (similar term)|big (similar term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+bouffe|1
+(noun)|comic opera|opera bouffe|opera comique|opera (generic term)
+bougainvillaea|1
+(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus (generic term)
+bougainville|2
+(noun)|Bougainville|Louis Antoine de Bougainville|explorer (generic term)|adventurer (generic term)
+(noun)|Bougainville|island (generic term)
+bougainville trench|1
+(noun)|Bougainville Trench|trench (generic term)|deep (generic term)|oceanic abyss (generic term)
+bougainvillea|1
+(noun)|vine (generic term)
+bougainvillea glabra|1
+(noun)|paper flower|Bougainvillea glabra|bougainvillea (generic term)
+bough|1
+(noun)|limb (generic term)|tree branch (generic term)
+boughed|1
+(adj)|limbed (similar term)
+boughless|1
+(adj)|limbless (similar term)
+boughten|1
+(adj)|store-bought|factory-made (similar term)
+bouillabaisse|1
+(noun)|fish stew (generic term)
+bouillon|1
+(noun)|broth (generic term)
+bouillon cube|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+boulder|2
+(noun)|bowlder|rock (generic term)|stone (generic term)
+(noun)|Boulder|town (generic term)
+boulder clay|1
+(noun)|till|soil (generic term)|dirt (generic term)
+boulder fern|1
+(noun)|hay-scented|hay-scented fern|scented fern|Dennstaedtia punctilobula|fern (generic term)
+bouldered|1
+(adj)|rocky|bouldery|stony|rough (similar term)|unsmooth (similar term)
+bouldery|1
+(adj)|rocky|bouldered|stony|rough (similar term)|unsmooth (similar term)
+boule|1
+(noun)|boulle|buhl|embellishment (generic term)
+boulevard|1
+(noun)|avenue|street (generic term)
+boulevardier|1
+(noun)|visitor (generic term)|visitant (generic term)
+boulez|1
+(noun)|Boulez|Pierre Boulez|composer (generic term)
+boulle|1
+(noun)|boule|buhl|embellishment (generic term)
+bounce|10
+(noun)|bounciness|elasticity (generic term)|snap (generic term)
+(noun)|leap|leaping|spring|saltation|bound|jump (generic term)|jumping (generic term)
+(noun)|bouncing|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+(verb)|resile|take a hop|spring|bound|rebound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|hit (generic term)
+(verb)|jounce|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)|clear (antonym)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|refuse (generic term)|reject (generic term)|pass up (generic term)|turn down (generic term)|decline (generic term)
+(verb)|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+bounce back|1
+(verb)|get well|get over|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|get worse (antonym)
+bounce out|1
+(verb)|bounce (generic term)
+bouncer|1
+(noun)|chucker-out|guard (generic term)
+bounciness|1
+(noun)|bounce|elasticity (generic term)|snap (generic term)
+bouncing|3
+(adj)|healthy (similar term)
+(adj)|bouncy|peppy|spirited|zippy|lively (similar term)
+(noun)|bounce|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+bouncing bess|1
+(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower (generic term)
+bouncing bet|1
+(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower (generic term)
+bouncing betty|1
+(noun)|land mine (generic term)|ground-emplaced mine (generic term)|booby trap (generic term)
+bouncing putty|1
+(noun)|silicone (generic term)|silicone polymer (generic term)
+bouncy|2
+(adj)|live|lively|resilient|springy|elastic (similar term)
+(adj)|bouncing|peppy|spirited|zippy|lively (similar term)
+bound|17
+(adj)|conjugate (similar term)|conjugated (similar term)|conjugate (similar term)|conjugated (similar term)|free (antonym)
+(adj)|chained (similar term)|enchained (similar term)|in chains (similar term)|fettered (similar term)|in bonds (similar term)|in fetters (similar term)|shackled (similar term)|furled (similar term)|rolled (similar term)|pinioned (similar term)|tethered (similar term)|trussed (similar term)|tied (similar term)|wired (similar term)|unfree (related term)|unbound (antonym)
+(adj)|brassbound (similar term)|cased (similar term)|half-bound (similar term)|paperback (similar term)|paperbacked (similar term)|well-bound (similar term)|unbound (antonym)
+(adj)|destined|certain (similar term)|sure (similar term)
+(adj)|bandaged|treated (similar term)
+(adj)|destined|oriented (similar term)|orientated (similar term)
+(adj)|sworn (similar term)
+(adj)|apprenticed|articled|indentured|unfree (similar term)
+(adj)|constipated (similar term)
+(noun)|boundary|edge|line (generic term)
+(noun)|boundary|bounds|extremity (generic term)
+(noun)|limit|boundary|extent (generic term)
+(noun)|leap|leaping|spring|saltation|bounce|jump (generic term)|jumping (generic term)
+(verb)|jump|leap|spring|move (generic term)|leap out (related term)|jump on (related term)
+(verb)|border|enclose (generic term)|hold in (generic term)|confine (generic term)|border on (related term)
+(verb)|restrict|restrain|trammel|limit|confine|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|bounce|resile|take a hop|spring|rebound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+bound form|1
+(noun)|bound morpheme|morpheme (generic term)
+bound morpheme|1
+(noun)|bound form|morpheme (generic term)
+bound off|1
+(verb)|skip|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+bound up|2
+(adj)|related (similar term)|related to (similar term)
+(adj)|wrapped up|committed (similar term)
+boundary|3
+(noun)|bound|bounds|extremity (generic term)
+(noun)|edge|bound|line (generic term)
+(noun)|limit|bound|extent (generic term)
+boundary condition|1
+(noun)|condition (generic term)|precondition (generic term)|stipulation (generic term)
+boundary layer|1
+(noun)|physical phenomenon (generic term)
+boundary line|1
+(noun)|border|borderline|delimitation|mete|boundary (generic term)|bound (generic term)|bounds (generic term)
+bounded|1
+(adj)|delimited|finite (similar term)
+bounded interval|1
+(noun)|closed interval|interval (generic term)|open interval (antonym)
+boundedness|1
+(noun)|finiteness|finitude|quality (generic term)|infiniteness (antonym)
+bounden|1
+(adj)|obligatory (similar term)
+bounder|2
+(noun)|cad|blackguard|dog|hound|heel|villain (generic term)|scoundrel (generic term)
+(noun)|leaper|jumper (generic term)
+bounderish|1
+(adj)|ill-bred|lowbred|rude|underbred|yokelish|unrefined (similar term)
+boundless|1
+(adj)|unbounded|limitless|infinite (similar term)
+boundlessly|1
+(adv)|immeasurably|infinitely
+boundlessness|1
+(noun)|infiniteness|infinitude|unboundedness|limitlessness|quality (generic term)|finiteness (antonym)
+bounds|1
+(noun)|boundary|bound|extremity (generic term)
+bounteous|1
+(adj)|big|bighearted|bountiful|freehanded|handsome|giving|liberal|openhanded|generous (similar term)
+bounteously|1
+(adv)|bountifully|plentifully|plenteously
+bounteousness|1
+(noun)|bounty|generosity (generic term)|generousness (generic term)
+bountied|1
+(adj)|rewarding (similar term)
+bountiful|2
+(adj)|big|bighearted|bounteous|freehanded|handsome|giving|liberal|openhanded|generous (similar term)
+(adj)|plentiful|fruitful (similar term)
+bountifully|1
+(adv)|bounteously|plentifully|plenteously
+bountifulness|1
+(noun)|amplitude|bounty|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+bounty|4
+(noun)|premium|reward (generic term)
+(noun)|amplitude|bountifulness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(noun)|bounteousness|generosity (generic term)|generousness (generic term)
+(noun)|Bounty|H.M.S. Bounty|ship (generic term)
+bounty hunter|2
+(noun)|pursuer (generic term)|chaser (generic term)
+(noun)|hunter (generic term)|huntsman (generic term)
+bouquet|2
+(noun)|corsage|posy|nosegay|flower arrangement (generic term)
+(noun)|fragrance|fragrancy|redolence|sweetness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+bourbon|4
+(noun)|Bourbon|reactionary (generic term)|ultraconservative (generic term)|extreme right-winger (generic term)
+(noun)|whiskey (generic term)|whisky (generic term)
+(noun)|Bourbon|ruler (generic term)|swayer (generic term)
+(noun)|Bourbon|Bourbon dynasty|dynasty (generic term)
+bourbon dynasty|1
+(noun)|Bourbon|Bourbon dynasty|dynasty (generic term)
+bourdon|1
+(noun)|drone|drone pipe|pipe (generic term)|tabor pipe (generic term)
+bourgeois|5
+(adj)|capitalistic (similar term)|capitalist (similar term)
+(adj)|conservative|materialistic|middle-class (similar term)
+(adj)|middle-class (similar term)
+(noun)|businessperson|capitalist (generic term)
+(noun)|burgher|commoner (generic term)|common man (generic term)|common person (generic term)
+bourgeoisie|1
+(noun)|middle class|class (generic term)|social class (generic term)|socio-economic class (generic term)
+bourgeon|1
+(verb)|shoot|spud|germinate|pullulate|burgeon forth|sprout|grow (generic term)
+bourgogne|1
+(noun)|Bourgogne|Burgundy|French region (generic term)
+bourguignon|1
+(noun)|bourguignon sauce|Burgundy sauce|sauce (generic term)
+bourguignon sauce|1
+(noun)|bourguignon|Burgundy sauce|sauce (generic term)
+bourn|2
+(noun)|bourne|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|bourne|goal (generic term)|end (generic term)
+bourne|2
+(noun)|bourn|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|bourn|goal (generic term)|end (generic term)
+bourse|1
+(noun)|Bourse|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+bourtree|1
+(noun)|black elder|common elder|elderberry|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+bouse|1
+(verb)|bowse|haul (generic term)|hale (generic term)|cart (generic term)|drag (generic term)
+boustrophedon|1
+(noun)|orthography (generic term)|writing system (generic term)
+boustrophedonic|1
+(adj)|orthography|writing system (related term)
+bout|4
+(noun)|turn|round|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|bust|tear|binge|revel (generic term)|revelry (generic term)
+bouteloua|1
+(noun)|Bouteloua|genus Bouteloua|monocot genus (generic term)|liliopsid genus (generic term)
+bouteloua eriopoda|1
+(noun)|black grama|Bouteloua eriopoda|grama (generic term)|grama grass (generic term)|gramma (generic term)|gramma grass (generic term)
+bouteloua gracilis|1
+(noun)|blue grama|Bouteloua gracilis|grama (generic term)|grama grass (generic term)|gramma (generic term)|gramma grass (generic term)
+boutique|1
+(noun)|dress shop|shop (generic term)|store (generic term)
+boutonneuse fever|1
+(noun)|Marseilles fever|Kenya fever|Indian tick fever|disease (generic term)
+boutonniere|1
+(noun)|adornment (generic term)
+bouvet island|1
+(noun)|Bouvet Island|island (generic term)
+bouvier des flandres|1
+(noun)|Bouvier des Flandres|Bouviers des Flandres|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+bouviers des flandres|1
+(noun)|Bouvier des Flandres|Bouviers des Flandres|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+bouvines|1
+(noun)|Bouvines|pitched battle (generic term)
+bouyei|1
+(noun)|Bouyei|Buyi|Tai (generic term)
+bovid|2
+(adj)|bovine|mammal genus (related term)
+(noun)|ruminant (generic term)
+bovidae|1
+(noun)|Bovidae|family Bovidae|mammal family (generic term)
+bovinae|1
+(noun)|Bovinae|subfamily Bovinae|mammal family (generic term)
+bovine|3
+(adj)|bovid|mammal genus (related term)
+(adj)|dull (similar term)
+(noun)|bovid (generic term)
+bovine spongiform encephalitis|1
+(noun)|BSE|mad cow disease|animal disease (generic term)
+bovini|1
+(noun)|Bovini|tribe Bovini|tribe (generic term)
+bovril|1
+(noun)|beef tea|Bovril|infusion (generic term)|extract (generic term)
+bow|14
+(noun)|bowknot|knot (generic term)
+(noun)|stick (generic term)
+(noun)|fore|prow|stem|front (generic term)
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|arc|curve (generic term)|curved shape (generic term)
+(noun)|bowing|obeisance|gesture (generic term)|motion (generic term)
+(noun)|curtain call|thanks (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|stroke (generic term)
+(verb)|bow down|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|submit|defer|accede|give in|yield (generic term)|give in (generic term)|succumb (generic term)|knuckle under (generic term)|buckle under (generic term)
+(verb)|change posture (generic term)|bow down (related term)
+(verb)|crouch|stoop|bend|bend (generic term)|flex (generic term)|stoop to (related term)
+(verb)|play (generic term)
+bow-tie|1
+(noun)|bow tie|bowtie|necktie (generic term)|tie (generic term)
+bow-wow|2
+(noun)|bark (generic term)
+(noun)|pooch|doggie|doggy|barker|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+bow and arrow|1
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+bow down|2
+(verb)|prostrate|lie down (generic term)|lie (generic term)
+(verb)|bow|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+bow leg|1
+(noun)|bow legs|bandy legs|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+bow legs|1
+(noun)|bow leg|bandy legs|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+bow out|2
+(verb)|chicken out|back off|pull out|back down|retire (generic term)|withdraw (generic term)
+(verb)|withdraw|retire (generic term)
+bow tie|1
+(noun)|bow-tie|bowtie|necktie (generic term)|tie (generic term)
+bow window|1
+(noun)|bay window|window (generic term)
+bow wood|1
+(noun)|osage orange|mock orange|Maclura pomifera|angiospermous yellowwood (generic term)
+bowditch|1
+(noun)|Bowditch|Nathaniel Bowditch|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+bowdler|1
+(noun)|Bowdler|Thomas Bowdler|editor (generic term)|editor in chief (generic term)
+bowdlerisation|2
+(noun)|bowdlerization|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|bowdlerization|expurgation (generic term)|castration (generic term)
+bowdlerise|1
+(verb)|bowdlerize|expurgate|castrate|shorten|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+bowdleriser|1
+(noun)|expurgator|bowdlerizer|editor (generic term)|editor in chief (generic term)
+bowdlerism|1
+(noun)|Bowdlerism|censoring (generic term)|censorship (generic term)
+bowdlerization|2
+(noun)|bowdlerisation|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|bowdlerisation|expurgation (generic term)|castration (generic term)
+bowdlerize|1
+(verb)|bowdlerise|expurgate|castrate|shorten|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+bowdlerizer|1
+(noun)|expurgator|bowdleriser|editor (generic term)|editor in chief (generic term)
+bowed|5
+(adj)|bent|inclined|unerect (similar term)
+(adj)|plucked (antonym)
+(adj)|arced|arched|arching|arciform|arcuate|curved (similar term)|curving (similar term)
+(adj)|bandy|bandy-legged|bowleg|bowlegged|unfit (similar term)
+(adj)|bowing|submissive (similar term)
+bowed down|1
+(adj)|loaded down|overburdened|weighed down|burdened (similar term)
+bowed stringed instrument|1
+(noun)|string|stringed instrument (generic term)
+bowel|1
+(noun)|intestine|gut|internal organ (generic term)|viscus (generic term)
+bowel movement|1
+(noun)|movement|bm|defecation (generic term)|laxation (generic term)|shitting (generic term)
+bowelless|1
+(adj)|cutthroat|fierce|merciless (similar term)|unmerciful (similar term)
+bowels|1
+(noun)|center (generic term)|centre (generic term)|midpoint (generic term)
+bower|2
+(noun)|arbor|arbour|pergola|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|embower|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+bower actinidia|1
+(noun)|tara vine|Actinidia arguta|vine (generic term)
+bowerbird|1
+(noun)|catbird|oscine (generic term)|oscine bird (generic term)
+bowery|2
+(adj)|leafy (similar term)
+(noun)|Bowery|street (generic term)
+bowfin|1
+(noun)|grindle|dogfish|Amia calva|ganoid (generic term)|ganoid fish (generic term)
+bowfront|1
+(adj)|rounded (similar term)
+bowhead|1
+(noun)|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale (generic term)|whalebone whale (generic term)
+bowhead whale|1
+(noun)|bowhead|Greenland whale|Balaena mysticetus|baleen whale (generic term)|whalebone whale (generic term)
+bowie|1
+(noun)|Bowie|Jim Bowie|James Bowie|pioneer (generic term)
+bowie knife|1
+(noun)|Bowie knife|knife (generic term)
+bowiea|1
+(noun)|Bowiea|genus Bowiea|liliid monocot genus (generic term)
+bowiea volubilis|1
+(noun)|climbing onion|Bowiea volubilis|herb (generic term)|herbaceous plant (generic term)
+bowing|3
+(adj)|bowed|submissive (similar term)
+(noun)|bow|obeisance|gesture (generic term)|motion (generic term)
+(noun)|playing (generic term)
+bowknot|1
+(noun)|bow|knot (generic term)
+bowl|10
+(noun)|vessel (generic term)
+(noun)|trough|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|dish (generic term)
+(noun)|bowlful|containerful (generic term)
+(noun)|stadium|arena|sports stadium|structure (generic term)|construction (generic term)
+(noun)|bowling ball|ball (generic term)
+(noun)|ball (generic term)
+(noun)|pipe bowl|container (generic term)
+(verb)|wheel (generic term)|roll (generic term)
+(verb)|play (generic term)
+bowl-shaped|1
+(adj)|concave (similar term)
+bowl over|2
+(verb)|overturn|tip over|turn over|upset|knock over|tump over|move (generic term)|displace (generic term)
+(verb)|flabbergast|boggle|surprise (generic term)
+bowlder|1
+(noun)|boulder|rock (generic term)|stone (generic term)
+bowleg|2
+(adj)|bandy|bandy-legged|bowed|bowlegged|unfit (similar term)
+(noun)|genu varum|tibia vara|leg (generic term)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+bowlegged|1
+(adj)|bandy|bandy-legged|bowed|bowleg|unfit (similar term)
+bowler|3
+(noun)|cricketer (generic term)
+(noun)|player (generic term)|participant (generic term)
+(noun)|bowler hat|derby hat|derby|plug hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+bowler hat|1
+(noun)|bowler|derby hat|derby|plug hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+bowlful|1
+(noun)|bowl|containerful (generic term)
+bowline|1
+(noun)|bowline knot|loop knot (generic term)
+bowline knot|1
+(noun)|bowline|loop knot (generic term)
+bowling|3
+(noun)|game (generic term)
+(noun)|throw (generic term)
+(noun)|playing (generic term)
+bowling alley|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|alley|skittle alley|lane (generic term)
+bowling ball|1
+(noun)|bowl|ball (generic term)
+bowling equipment|1
+(noun)|game equipment (generic term)
+bowling green|2
+(noun)|Bowling Green|town (generic term)
+(noun)|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+bowling league|1
+(noun)|league (generic term)|conference (generic term)
+bowling pin|1
+(noun)|pin|bowling equipment (generic term)
+bowling score|1
+(noun)|score (generic term)
+bowling shoe|1
+(noun)|shoe (generic term)
+bowls|1
+(noun)|lawn bowling|bowling (generic term)
+bowman|1
+(noun)|archer|expert (generic term)
+bowman's capsule|1
+(noun)|Bowman's capsule|glomerular capsule|capsula glomeruli|membrane (generic term)|tissue layer (generic term)
+bowse|1
+(verb)|bouse|haul (generic term)|hale (generic term)|cart (generic term)|drag (generic term)
+bowsprit|1
+(noun)|spar (generic term)
+bowstring|1
+(noun)|cord (generic term)
+bowstring hemp|3
+(noun)|hemp (generic term)
+(noun)|natural fiber (generic term)|natural fibre (generic term)
+(noun)|sansevieria|agave (generic term)|century plant (generic term)|American aloe (generic term)
+bowtie|1
+(noun)|bow tie|bow-tie|necktie (generic term)|tie (generic term)
+bowtie pasta|1
+(noun)|farfalle|pasta (generic term)|alimentary paste (generic term)
+box|13
+(noun)|container (generic term)
+(noun)|loge|compartment (generic term)
+(noun)|boxful|containerful (generic term)
+(noun)|corner|predicament (generic term)|quandary (generic term)|plight (generic term)
+(noun)|rectangle (generic term)
+(noun)|boxwood|shrub (generic term)|bush (generic term)
+(noun)|area (generic term)
+(noun)|box seat|seat (generic term)
+(noun)|compartment (generic term)
+(noun)|blow (generic term)
+(verb)|package|encase (generic term)|incase (generic term)|case (generic term)|unbox (antonym)
+(verb)|hit (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+box-shaped|1
+(adj)|boxlike|boxy|cubic (similar term)|three-dimensional (similar term)
+box beam|1
+(noun)|box girder|beam (generic term)
+box calf|1
+(noun)|calf (generic term)|calfskin (generic term)
+box camera|1
+(noun)|box Kodak|camera (generic term)|photographic camera (generic term)
+box coat|1
+(noun)|coat (generic term)
+box elder|1
+(noun)|ash-leaved maple|Acer negundo|maple (generic term)
+box end wrench|1
+(noun)|box wrench|wrench (generic term)|spanner (generic term)
+box family|1
+(noun)|Buxaceae|family Buxaceae|dicot family (generic term)|magnoliopsid family (generic term)
+box girder|1
+(noun)|box beam|beam (generic term)
+box huckleberry|1
+(noun)|Gaylussacia brachycera|huckleberry (generic term)
+box in|1
+(verb)|box up|enclose (generic term)|hold in (generic term)|confine (generic term)
+box kite|1
+(noun)|kite (generic term)
+box kodak|1
+(noun)|box camera|box Kodak|camera (generic term)|photographic camera (generic term)
+box number|2
+(noun)|post-office box number|PO box number|PO Box No|mailing address (generic term)
+(noun)|mailing address (generic term)
+box office|2
+(noun)|gross (generic term)|revenue (generic term)|receipts (generic term)
+(noun)|ticket office|ticket booth|office (generic term)|business office (generic term)
+box pleat|1
+(noun)|pleat (generic term)|plait (generic term)
+box seat|2
+(noun)|seat (generic term)
+(noun)|box|seat (generic term)
+box spring|1
+(noun)|bedspring (generic term)
+box tortoise|1
+(noun)|box turtle|turtle (generic term)
+box turtle|1
+(noun)|box tortoise|turtle (generic term)
+box up|1
+(verb)|box in|enclose (generic term)|hold in (generic term)|confine (generic term)
+box white oak|1
+(noun)|post oak|brash oak|iron oak|Quercus stellata|oak (generic term)|oak tree (generic term)
+box wrench|1
+(noun)|box end wrench|wrench (generic term)|spanner (generic term)
+boxberry|2
+(noun)|partridgeberry|twinberry|Mitchella repens|vine (generic term)
+(noun)|wintergreen|checkerberry|teaberry|spiceberry|berry (generic term)
+boxcar|1
+(noun)|freight car (generic term)
+boxcars|1
+(noun)|twelve (generic term)|12 (generic term)|XII (generic term)|dozen (generic term)
+boxed|2
+(adj)|bordered (similar term)
+(adj)|boxed-in|boxed in|enclosed (similar term)
+boxed-in|1
+(adj)|boxed|boxed in|enclosed (similar term)
+boxed in|1
+(adj)|boxed|boxed-in|enclosed (similar term)
+boxer|4
+(noun)|pugilist|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|packer|bagger|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|Boxer|Chinese (generic term)
+(noun)|working dog (generic term)
+boxers|1
+(noun)|drawers|underdrawers|shorts|boxershorts|underpants (generic term)
+boxershorts|1
+(noun)|drawers|underdrawers|shorts|boxers|underpants (generic term)
+boxfish|1
+(noun)|trunkfish|plectognath (generic term)|plectognath fish (generic term)
+boxful|1
+(noun)|box|containerful (generic term)
+boxing|2
+(noun)|pugilism|fisticuffs|contact sport (generic term)
+(noun)|packing|enclosure (generic term)|enclosing (generic term)|envelopment (generic term)|inclosure (generic term)
+boxing day|1
+(noun)|Boxing Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+boxing equipment|1
+(noun)|sports equipment (generic term)
+boxing glove|1
+(noun)|glove|boxing equipment (generic term)
+boxing match|1
+(noun)|match (generic term)
+boxing ring|1
+(noun)|prize ring|ring (generic term)
+boxlike|1
+(adj)|boxy|box-shaped|cubic (similar term)|three-dimensional (similar term)
+boxthorn|1
+(noun)|matrimony vine|shrub (generic term)|bush (generic term)
+boxwood|2
+(noun)|Turkish boxwood|wood (generic term)
+(noun)|box|shrub (generic term)|bush (generic term)
+boxy|1
+(adj)|boxlike|box-shaped|cubic (similar term)|three-dimensional (similar term)
+boy|4
+(noun)|male child|male (generic term)|male person (generic term)|girl (antonym)|female child (antonym)
+(noun)|man (generic term)|adult male (generic term)
+(noun)|son|male offspring (generic term)|man-child (generic term)|girl (antonym)|daughter (antonym)
+(noun)|Black man (generic term)
+boy orator of the platte|1
+(noun)|Bryan|William Jennings Bryan|Great Commoner|Boy Orator of the Platte|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|lawyer (generic term)|attorney (generic term)
+boy scout|2
+(noun)|Boy Scout|Scout (generic term)
+(noun)|innocent (generic term)|inexperienced person (generic term)
+boy scouts|1
+(noun)|Boy Scouts|movement (generic term)|social movement (generic term)|front (generic term)
+boy scouts of america|1
+(noun)|Boy Scouts of America|corporation (generic term)|corp (generic term)
+boy wonder|1
+(noun)|prodigy (generic term)|male (generic term)|male person (generic term)
+boycott|2
+(noun)|protest (generic term)|objection (generic term)|dissent (generic term)
+(verb)|ostracize (generic term)|ostracise (generic term)|patronize (antonym)|patronise (antonym)
+boyfriend|1
+(noun)|fellow|beau|swain|young man|man (generic term)|adult male (generic term)|lover (generic term)
+boyhood|1
+(noun)|childhood (generic term)
+boyish|1
+(adj)|boylike|schoolboyish|young (similar term)|immature (similar term)
+boyishly|1
+(adv)|boylike
+boyishness|1
+(noun)|masculinity (generic term)
+boykinia|1
+(noun)|Boykinia|genus Boykinia|rosid dicot genus (generic term)
+boykinia elata|1
+(noun)|coast boykinia|Boykinia elata|Boykinia occidentalis|wildflower (generic term)|wild flower (generic term)
+boykinia occidentalis|1
+(noun)|coast boykinia|Boykinia elata|Boykinia occidentalis|wildflower (generic term)|wild flower (generic term)
+boyle|2
+(noun)|Boyle|Robert Boyle|chemist (generic term)
+(noun)|Boyle|Kay Boyle|writer (generic term)|author (generic term)
+boyle's law|1
+(noun)|Boyle's law|Mariotte's law|law (generic term)|law of nature (generic term)
+boylike|2
+(adj)|boyish|schoolboyish|young (similar term)|immature (similar term)
+(adv)|boyishly
+boyne|1
+(noun)|Boyne|battle of Boyne|pitched battle (generic term)
+boys-and-girls|1
+(noun)|herb mercury|herbs mercury|Mercurialis annua|herb (generic term)|herbaceous plant (generic term)
+boysenberry|2
+(noun)|boysenberry bush|western blackberry (generic term)|western dewberry (generic term)|Rubus ursinus (generic term)
+(noun)|berry (generic term)
+boysenberry bush|1
+(noun)|boysenberry|western blackberry (generic term)|western dewberry (generic term)|Rubus ursinus (generic term)
+boytrose|1
+(adj)|botryoid|botryoidal|vine (related term)
+bozeman|1
+(noun)|Bozeman|town (generic term)
+bozo|2
+(noun)|fathead|goof|goofball|jackass|goose|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|guy|cat|hombre|man (generic term)|adult male (generic term)
+bph|1
+(noun)|benign prostatic hyperplasia|BPH|hyperplasia (generic term)
+bpi|1
+(noun)|bits per inch|concentration (generic term)|density (generic term)|denseness (generic term)|tightness (generic term)|compactness (generic term)
+bpm|1
+(noun)|beats per minute|metronome marking|M.M.|pace (generic term)|gait (generic term)
+bps|1
+(noun)|bits per second|rate (generic term)
+br|2
+(noun)|bromine|Br|atomic number 35|chemical element (generic term)|element (generic term)|halogen (generic term)
+(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+bra|1
+(noun)|brassiere|bandeau|undergarment (generic term)|unmentionable (generic term)|woman's clothing (generic term)
+brabancon griffon|1
+(noun)|Brabancon griffon|griffon (generic term)|Brussels griffon (generic term)|Belgian griffon (generic term)
+brabble|1
+(verb)|quibble|niggle|pettifog|bicker|squabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+brace|13
+(noun)|support (generic term)|strengthener (generic term)|reinforcement (generic term)
+(noun)|couple|pair|twosome|twain|span|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|pair|set (generic term)
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+(noun)|rope (generic term)
+(noun)|suspender|gallus|man's clothing (generic term)
+(noun)|braces|orthodontic braces|dental appliance (generic term)
+(noun)|bitstock|stock (generic term)
+(noun)|bracing|structural member (generic term)|strengthener (generic term)|reinforcement (generic term)
+(verb)|poise|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|steady|stabilize|stabilise|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|stimulate|arouse|energize|energise|perk up|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+brace and bit|1
+(noun)|drill (generic term)
+brace oneself for|1
+(verb)|steel oneself against|steel onself for|prepare for|inure (generic term)|harden (generic term)|indurate (generic term)
+brace up|1
+(verb)|undergird|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+brace wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+braced|2
+(adj)|prepared (similar term)
+(adj)|buttressed|supported (similar term)
+bracelet|2
+(noun)|watchband|watchstrap|wristband|watch bracelet|band (generic term)
+(noun)|bangle|jewelry (generic term)|jewellery (generic term)
+bracelet wood|1
+(noun)|Jacquinia armillaris|shrub (generic term)|bush (generic term)
+bracer|2
+(noun)|armguard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|pick-me-up|tonic (generic term)|restorative (generic term)
+bracero|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+braces|1
+(noun)|brace|orthodontic braces|dental appliance (generic term)
+brachial|1
+(adj)|limb (related term)
+brachial artery|1
+(noun)|arteria brachialis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+brachial plexus|1
+(noun)|plexus brachialis|nerve plexus (generic term)
+brachial vein|1
+(noun)|vena brachialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+brachiate|3
+(adj)|branchy (similar term)
+(adj)|armed (similar term)
+(verb)|swing (generic term)|sway (generic term)
+brachiation|1
+(noun)|locomotion (generic term)|travel (generic term)
+brachinus|1
+(noun)|Brachinus|genus Brachinus|arthropod genus (generic term)
+brachiocephalic vein|1
+(noun)|innominate vein|vena brachiocephalica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+brachiopod|2
+(adj)|brachiopodous|phylum (related term)
+(noun)|lamp shell|lampshell|invertebrate (generic term)
+brachiopoda|1
+(noun)|Brachiopoda|phylum Brachiopoda|phylum (generic term)
+brachiopodous|1
+(adj)|brachiopod|phylum (related term)
+brachium|1
+(noun)|branch (generic term)|leg (generic term)|ramification (generic term)
+brachycephalic|2
+(adj)|brachycranial|brachycranic|broad-headed (similar term)|roundheaded (similar term)|short-headed (similar term)|bullet-headed (similar term)|dolichocephalic (antonym)
+(noun)|adult (generic term)|grownup (generic term)
+brachycephalism|1
+(noun)|brachycephaly|quality (generic term)
+brachycephaly|1
+(noun)|brachycephalism|quality (generic term)
+brachychiton|1
+(noun)|Brachychiton|genus Brachychiton|dilleniid dicot genus (generic term)
+brachychiton acerifolius|1
+(noun)|flame tree|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree (generic term)|bottle tree (generic term)
+brachychiton australis|1
+(noun)|flame tree|broad-leaved bottletree|Brachychiton australis|bottle-tree (generic term)|bottle tree (generic term)
+brachychiton populneus|1
+(noun)|kurrajong|currajong|Brachychiton populneus|bottle-tree (generic term)|bottle tree (generic term)
+brachychiton rupestris|1
+(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree (generic term)|bottle tree (generic term)
+brachycome|1
+(noun)|Brachycome|genus Brachycome|asterid dicot genus (generic term)
+brachycome iberidifolia|1
+(noun)|Swan River daisy|Brachycome Iberidifolia|flower (generic term)
+brachycranial|1
+(adj)|brachycephalic|brachycranic|broad-headed (similar term)|roundheaded (similar term)|short-headed (similar term)|bullet-headed (similar term)|dolichocephalic (antonym)
+brachycranic|1
+(adj)|brachycephalic|brachycranial|broad-headed (similar term)|roundheaded (similar term)|short-headed (similar term)|bullet-headed (similar term)|dolichocephalic (antonym)
+brachydactylia|1
+(noun)|brachydactyly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+brachydactylic|1
+(adj)|brachydactylous|abnormal (similar term)
+brachydactylous|1
+(adj)|brachydactylic|abnormal (similar term)
+brachydactyly|1
+(noun)|brachydactylia|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+brachypterous|1
+(adj)|short-winged|winged (similar term)
+brachystegia|1
+(noun)|Brachystegia|genus Brachystegia|rosid dicot genus (generic term)
+brachystegia speciformis|1
+(noun)|msasa|Brachystegia speciformis|tree (generic term)
+brachyura|1
+(noun)|Brachyura|suborder Brachyura|animal order (generic term)
+brachyuran|1
+(noun)|crustacean (generic term)
+brachyurous|1
+(adj)|animal order (related term)
+bracing|2
+(adj)|brisk|energizing|energising|fresh|refreshing|refreshful|tonic|invigorating (similar term)
+(noun)|brace|structural member (generic term)|strengthener (generic term)|reinforcement (generic term)
+bracken|2
+(noun)|Pteridium esculentum|fern (generic term)
+(noun)|pasture brake|brake|Pteridium aquilinum|fern (generic term)
+bracket|7
+(noun)|set (generic term)
+(noun)|angle bracket|punctuation (generic term)|punctuation mark (generic term)
+(noun)|square bracket|punctuation (generic term)|punctuation mark (generic term)
+(noun)|support (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|bracket out|edit (generic term)|redact (generic term)
+(verb)|group (generic term)
+bracket creep|1
+(noun)|income tax (generic term)
+bracket fungus|1
+(noun)|shelf fungus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+bracket out|1
+(verb)|bracket|edit (generic term)|redact (generic term)
+bracketed blenny|1
+(noun)|gunnel|blennioid fish (generic term)|blennioid (generic term)
+brackish|2
+(adj)|unpalatable (similar term)
+(adj)|briny|salty (similar term)
+brackishness|1
+(noun)|saltiness (generic term)
+bract|1
+(noun)|husk (generic term)
+bracteal|1
+(adj)|husk (related term)
+bracteate|1
+(adj)|bracted|husk (related term)|ebracteate (antonym)
+bracted|1
+(adj)|bracteate|husk (related term)|ebracteate (antonym)
+bracteolate|1
+(adj)|bract (related term)
+bracteole|1
+(noun)|bractlet|bract (generic term)
+bractlet|1
+(noun)|bracteole|bract (generic term)
+brad|2
+(noun)|nail (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+bradawl|1
+(noun)|pricker|awl (generic term)
+bradbury|1
+(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer (generic term)|author (generic term)
+bradford|1
+(noun)|Bradford|William Bradford|printer (generic term)|pressman (generic term)
+bradley|2
+(noun)|Bradley|Thomas Bradley|Tom Bradley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general (generic term)|full general (generic term)
+bradley's spleenwort|1
+(noun)|Bradley's spleenwort|Asplenium bradleyi|spleenwort (generic term)
+bradley method|1
+(noun)|Bradley method of childbirth|Bradley method|natural childbirth (generic term)
+bradley method of childbirth|1
+(noun)|Bradley method of childbirth|Bradley method|natural childbirth (generic term)
+bradstreet|1
+(noun)|Bradstreet|Anne Bradstreet|Anne Dudley Bradstreet|poet (generic term)
+brady|2
+(noun)|Brady|Mathew B. Brady|photographer (generic term)|lensman (generic term)
+(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier (generic term)|moneyman (generic term)
+bradycardia|1
+(noun)|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+bradypodidae|1
+(noun)|Bradypodidae|family Bradypodidae|mammal family (generic term)
+bradypus|1
+(noun)|Bradypus|genus Bradypus|mammal genus (generic term)
+bradypus tridactylus|1
+(noun)|three-toed sloth|ai|Bradypus tridactylus|sloth (generic term)|tree sloth (generic term)
+brae|1
+(noun)|hillside (generic term)
+brag|3
+(adj)|boss|superior (similar term)
+(noun)|bragging|crow|crowing|vaporing|line-shooting|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(verb)|boast|tout|swash|shoot a line|gas|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+braga|1
+(noun)|Braga|city (generic term)|metropolis (generic term)|urban center (generic term)
+brage|1
+(noun)|Bragi|Brage|Norse deity (generic term)
+bragg|1
+(noun)|Bragg|Braxton Bragg|general (generic term)|full general (generic term)
+braggadocio|1
+(noun)|bluster|rodomontade|rhodomontade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+braggart|2
+(adj)|boastful|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+(noun)|bragger|boaster|blowhard|line-shooter|vaunter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+bragger|1
+(noun)|braggart|boaster|blowhard|line-shooter|vaunter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+bragging|2
+(adj)|boastful|braggart|braggy|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+(noun)|brag|crow|crowing|vaporing|line-shooting|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+braggy|1
+(adj)|boastful|braggart|bragging|big|cock-a-hoop|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+bragi|1
+(noun)|Bragi|Brage|Norse deity (generic term)
+brahe|1
+(noun)|Brahe|Tycho Brahe|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+brahma|2
+(noun)|Brahma|Hindu deity (generic term)
+(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine (generic term)
+brahman|4
+(noun)|brahmin|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+(noun)|brahmin|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+(noun)|brahmin|varna (generic term)
+(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine (generic term)
+brahmana|1
+(noun)|Brahmana|Vedic literature (generic term)|Veda (generic term)
+brahmanism|2
+(noun)|Brahmanism|Brahminism|Hinduism (generic term)|Hindooism (generic term)
+(noun)|Brahmanism|Brahminism|religion (generic term)|faith (generic term)|religious belief (generic term)
+brahmaputra|1
+(noun)|Brahmaputra|Brahmaputra River|river (generic term)
+brahmaputra river|1
+(noun)|Brahmaputra|Brahmaputra River|river (generic term)
+brahmi|1
+(noun)|Brahmi|script (generic term)
+brahmin|4
+(noun)|brahman|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+(noun)|brahman|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+(noun)|brahman|varna (generic term)
+(noun)|Brahman|Brahma|Brahmin|Bos indicus|bovine (generic term)
+brahminic|1
+(adj)|brahminical|aristocrat|blue blood|patrician (related term)
+brahminical|1
+(adj)|brahminic|aristocrat|blue blood|patrician (related term)
+brahminism|2
+(noun)|Brahmanism|Brahminism|Hinduism (generic term)|Hindooism (generic term)
+(noun)|Brahmanism|Brahminism|religion (generic term)|faith (generic term)|religious belief (generic term)
+brahms|2
+(noun)|Brahms|Johannes Brahms|composer (generic term)
+(noun)|Brahms|music (generic term)
+brahui|2
+(noun)|Brahui|Pakistani (generic term)
+(noun)|Brahui|North Dravidian (generic term)
+braid|5
+(noun)|plait|tress|twist|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|gold braid|braiding|trimming (generic term)|trim (generic term)|passementerie (generic term)
+(verb)|lace|plait|weave (generic term)|tissue (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|pleach|weave (generic term)|interweave (generic term)|unbraid (antonym)
+braided|1
+(adj)|adorned (similar term)|decorated (similar term)
+braiding|1
+(noun)|braid|gold braid|trimming (generic term)|trim (generic term)|passementerie (generic term)
+brail|4
+(noun)|net (generic term)
+(noun)|rope (generic term)
+(verb)|roll up (generic term)|furl (generic term)
+(verb)|fish (generic term)
+braille|3
+(noun)|Braille|Louis Braille|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|point system (generic term)
+(verb)|transliterate (generic term)|transcribe (generic term)
+brain|7
+(noun)|encephalon|neural structure (generic term)
+(noun)|brainpower|learning ability|mental capacity|mentality|wit|intelligence (generic term)
+(noun)|mind|head|psyche|nous|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|genius|mastermind|brainiac|Einstein|intellectual (generic term)|intellect (generic term)
+(noun)|variety meat (generic term)|organs (generic term)
+(verb)|hit (generic term)
+(verb)|kill (generic term)
+brain-fag|1
+(noun)|mental exhaustion|exhaustion (generic term)
+brain-stem|1
+(noun)|brainstem|brain stem|neural structure (generic term)
+brain-teaser|1
+(noun)|riddle|conundrum|enigma|problem (generic term)
+brain-worker|1
+(noun)|brainworker|thinker (generic term)
+brain cell|1
+(noun)|nerve cell (generic term)|neuron (generic term)
+brain coral|1
+(noun)|stony coral (generic term)|madrepore (generic term)|madriporian coral (generic term)
+brain dead|1
+(adj)|dead (similar term)
+brain death|1
+(noun)|cerebral death|death (generic term)
+brain disease|1
+(noun)|brain disorder|encephalopathy|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+brain disorder|1
+(noun)|encephalopathy|brain disease|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+brain doctor|1
+(noun)|neurologist|specialist (generic term)|medical specialist (generic term)
+brain drain|1
+(noun)|drain (generic term)
+brain fever|1
+(noun)|cerebrospinal meningitis|epidemic meningitis|cerebrospinal fever|meningitis (generic term)
+brain mushroom|1
+(noun)|Gyromitra esculenta|beefsteak morel|gyromitra (generic term)
+brain science|1
+(noun)|neuroscience (generic term)
+brain stem|1
+(noun)|brainstem|brain-stem|neural structure (generic term)
+brain sugar|1
+(noun)|galactose|sucrose (generic term)|saccharose (generic term)
+brain surgeon|1
+(noun)|neurosurgeon|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+brain surgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+brain truster|1
+(noun)|backroom boy|adviser (generic term)|advisor (generic term)|consultant (generic term)
+brain tumor|1
+(noun)|brain tumour|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+brain tumour|1
+(noun)|brain tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+brain wave|1
+(noun)|brainwave|cortical potential|bioelectricity (generic term)
+braincase|1
+(noun)|cranium|brainpan|bone (generic term)|os (generic term)
+brainchild|1
+(noun)|inspiration|product (generic term)|production (generic term)
+brainiac|1
+(noun)|genius|mastermind|brain|Einstein|intellectual (generic term)|intellect (generic term)
+brainish|1
+(adj)|hotheaded|impulsive|impetuous|madcap|tearaway|incautious (similar term)
+brainless|1
+(adj)|headless|unintelligent (similar term)|stupid (similar term)
+brainpan|1
+(noun)|cranium|braincase|bone (generic term)|os (generic term)
+brainpower|1
+(noun)|brain|learning ability|mental capacity|mentality|wit|intelligence (generic term)
+brainsick|1
+(adj)|crazy|demented|distracted|disturbed|mad|sick|unbalanced|unhinged|insane (similar term)
+brainstem|1
+(noun)|brain-stem|brain stem|neural structure (generic term)
+brainstorm|2
+(noun)|insight|brainwave|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+brainstorming|1
+(noun)|group action (generic term)
+brainwash|2
+(verb)|persuade (generic term)
+(verb)|indoctrinate (generic term)
+brainwashed|1
+(adj)|unbrainwashed (antonym)
+brainwashing|1
+(noun)|indoctrination (generic term)
+brainwave|2
+(noun)|brain wave|cortical potential|bioelectricity (generic term)
+(noun)|insight|brainstorm|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+brainworker|1
+(noun)|brain-worker|thinker (generic term)
+brainy|1
+(adj)|brilliant|smart as a whip|intelligent (similar term)
+braise|1
+(verb)|cook (generic term)
+braised|1
+(adj)|cooked (similar term)
+braising|1
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+brake|6
+(noun)|restraint (generic term)|constraint (generic term)
+(noun)|fern (generic term)
+(noun)|bracken|pasture brake|Pteridium aquilinum|fern (generic term)
+(noun)|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+(verb)|stop (generic term)|halt (generic term)
+(verb)|stop (generic term)
+brake band|1
+(noun)|band (generic term)
+brake cylinder|1
+(noun)|hydraulic brake cylinder|master cylinder|cylinder (generic term)|piston chamber (generic term)
+brake disk|1
+(noun)|disk (generic term)|disc (generic term)
+brake drum|1
+(noun)|drum|cylinder (generic term)
+brake failure|1
+(noun)|breakdown (generic term)|equipment failure (generic term)
+brake light|1
+(noun)|stoplight|visual signal (generic term)
+brake lining|1
+(noun)|lining (generic term)
+brake pad|1
+(noun)|restraint (generic term)|constraint (generic term)
+brake pedal|1
+(noun)|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+brake shoe|1
+(noun)|shoe|skid|restraint (generic term)|constraint (generic term)
+brake system|1
+(noun)|the brakes|brake (generic term)
+brakeman|1
+(noun)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)
+braky|2
+(adj)|brambly|wooded (similar term)
+(adj)|ferned (similar term)|ferny (similar term)
+braless|1
+(adj)|bare-breasted|topless|unclothed (similar term)
+bram stoker|1
+(noun)|Stoker|Bram Stoker|Abraham Stoker|writer (generic term)|author (generic term)
+brama|1
+(noun)|Brama|genus Brama|fish genus (generic term)
+brama raii|1
+(noun)|pomfret|Brama raii|sea bream (generic term)|bream (generic term)
+bramante|1
+(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect (generic term)|designer (generic term)
+bramble|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+bramble bush|1
+(noun)|bramble (generic term)
+brambling|1
+(noun)|Fringilla montifringilla|finch (generic term)
+brambly|1
+(adj)|braky|wooded (similar term)
+bramidae|1
+(noun)|Bramidae|family Bramidae|fish family (generic term)
+bramley's seedling|1
+(noun)|Bramley's Seedling|cooking apple (generic term)
+bran|2
+(noun)|chaff (generic term)|husk (generic term)|shuck (generic term)|stalk (generic term)|straw (generic term)|stubble (generic term)
+(noun)|roughage (generic term)
+bran-new|1
+(adj)|brand-new|spic-and-span|spick-and-span|new (similar term)
+bran flake|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+bran muffin|1
+(noun)|muffin (generic term)|gem (generic term)
+branch|8
+(noun)|subdivision|arm|division (generic term)
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|leg|ramification|subfigure (generic term)
+(noun)|outgrowth|offshoot|offset|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|stream (generic term)|watercourse (generic term)
+(noun)|arm|limb|projection (generic term)
+(verb)|ramify|grow (generic term)
+(verb)|ramify|fork|furcate|separate|diverge (generic term)|branch out (related term)
+branch-like|1
+(adj)|branchlike|vegetable (similar term)
+branch line|1
+(noun)|spur track|spur|line (generic term)|railway line (generic term)|rail line (generic term)
+branch of knowledge|1
+(noun)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|knowledge domain (generic term)|knowledge base (generic term)
+branch out|1
+(verb)|diversify|broaden|change (generic term)|alter (generic term)|vary (generic term)|specialize (antonym)|specialise (antonym)
+branch water|1
+(noun)|water (generic term)
+branched|2
+(adj)|bifurcate|biramous|forked|fork-like|forficate|pronged|prongy|divided (similar term)
+(adj)|branching|ramose|ramous|ramate|branchy (similar term)
+branched chain|1
+(noun)|open chain (generic term)
+branched chain ketoaciduria|1
+(noun)|maple syrup urine disease|ketonuria (generic term)|ketoaciduria (generic term)|acetonuria (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+branchia|1
+(noun)|gill|respiratory organ (generic term)
+branchial|1
+(adj)|respiratory organ (related term)
+branchial arch|1
+(noun)|gill arch|gill bar|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+branchial cleft|1
+(noun)|gill slit|gill cleft|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+branchiate|1
+(adj)|gilled|abranchiate (antonym)
+branching|3
+(adj)|branched|ramose|ramous|ramate|branchy (similar term)
+(adj)|divergent (similar term)|diverging (similar term)
+(noun)|ramification|fork|forking|division (generic term)
+branchiobdella|1
+(noun)|Branchiobdella|genus Branchiobdella|worm genus (generic term)
+branchiobdellidae|1
+(noun)|Branchiobdellidae|family Branchiobdellidae|worm family (generic term)
+branchiopod|2
+(adj)|branchiopodan|branchiopodous|class (related term)
+(noun)|branchiopod crustacean|branchiopodan|crustacean (generic term)
+branchiopod crustacean|1
+(noun)|branchiopod|branchiopodan|crustacean (generic term)
+branchiopoda|1
+(noun)|Branchiopoda|subclass Branchiopoda|class (generic term)
+branchiopodan|2
+(adj)|branchiopod|branchiopodous|class (related term)
+(noun)|branchiopod crustacean|branchiopod|crustacean (generic term)
+branchiopodous|1
+(adj)|branchiopod|branchiopodan|class (related term)
+branchiostegidae|1
+(noun)|Branchiostegidae|family Branchiostegidae|fish family (generic term)
+branchiostomidae|1
+(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family (generic term)
+branchiura|1
+(noun)|Branchiura|order Branchiura|animal order (generic term)
+branchless|1
+(adj)|palmlike (similar term)|unbranched (similar term)|unbranching (similar term)|branchy (antonym)
+branchlet|1
+(noun)|twig|sprig|branch (generic term)
+branchlike|1
+(adj)|branch-like|vegetable (similar term)
+branchy|1
+(adj)|arboreal (similar term)|arboreous (similar term)|arborescent (similar term)|arboresque (similar term)|arboriform (similar term)|dendriform (similar term)|dendroid (similar term)|dendroidal (similar term)|treelike (similar term)|tree-shaped (similar term)|brachiate (similar term)|branched (similar term)|branching (similar term)|ramose (similar term)|ramous (similar term)|ramate (similar term)|bushy (similar term)|long-branched (similar term)|maplelike (similar term)|maple-like (similar term)|mop-headed (similar term)|stiff-branched (similar term)|thick-branched (similar term)|well-branched (similar term)|branchless (antonym)
+brancusi|1
+(noun)|Brancusi|Constantin Brancusi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+brand|9
+(noun)|trade name|brand name|marque|name (generic term)
+(noun)|make|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|firebrand|firewood (generic term)
+(noun)|mark|stigma|stain|symbol (generic term)
+(noun)|sword|blade|steel|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(verb)|mark (generic term)
+(verb)|stigmatize|stigmatise|denounce|mark|label (generic term)
+(verb)|post|call (generic term)
+brand-name drug|1
+(noun)|proprietary drug|drug (generic term)|generic drug (antonym)
+brand-new|1
+(adj)|bran-new|spic-and-span|spick-and-span|new (similar term)
+brand-newness|1
+(noun)|newness (generic term)
+brand name|1
+(noun)|trade name|brand|marque|name (generic term)
+branded|2
+(adj)|proprietary (similar term)
+(adj)|unbranded (antonym)
+brandenburg|1
+(noun)|Brandenburg|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+branding|1
+(noun)|stigmatization|stigmatisation|disapproval (generic term)
+branding iron|1
+(noun)|iron|implement (generic term)
+brandish|3
+(noun)|flourish|wave (generic term)|waving (generic term)|wafture (generic term)
+(verb)|flourish|wave|move (generic term)|displace (generic term)
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)
+brandt|1
+(noun)|Brandt|Willy Brandt|statesman (generic term)|solon (generic term)|national leader (generic term)
+brandy|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+brandy glass|1
+(noun)|snifter|brandy snifter|glass (generic term)|drinking glass (generic term)
+brandy nose|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+brandy snifter|1
+(noun)|snifter|brandy glass|glass (generic term)|drinking glass (generic term)
+brandyball|1
+(noun)|candy (generic term)|confect (generic term)
+brandysnap|1
+(noun)|gingersnap (generic term)|ginger snap (generic term)|snap (generic term)|ginger nut (generic term)
+brant|1
+(noun)|brant goose|brent|brent goose|goose (generic term)
+brant goose|1
+(noun)|brant|brent|brent goose|goose (generic term)
+branta|1
+(noun)|Branta|genus Branta|bird genus (generic term)
+branta bernicla|1
+(noun)|common brant goose|Branta bernicla|brant (generic term)|brant goose (generic term)|brent (generic term)|brent goose (generic term)
+branta canadensis|1
+(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose (generic term)
+branta leucopsis|1
+(noun)|barnacle goose|barnacle|Branta leucopsis|goose (generic term)
+braque|1
+(noun)|Braque|Georges Braque|painter (generic term)
+brasenia|1
+(noun)|Brasenia|genus Brasenia|magnoliid dicot genus (generic term)
+brasenia schreberi|1
+(noun)|water-shield|Brasenia schreberi|water-target|water lily (generic term)
+brash|1
+(adj)|cheeky|nervy|forward (similar term)
+brash oak|1
+(noun)|post oak|box white oak|iron oak|Quercus stellata|oak (generic term)|oak tree (generic term)
+brashly|1
+(adv)|cheekily|nervily
+brashness|2
+(noun)|flashiness|garishness|gaudiness|loudness|meretriciousness|tawdriness|glitz|tastelessness (generic term)
+(noun)|recklessness (generic term)|foolhardiness (generic term)|rashness (generic term)
+brasier|1
+(noun)|brazier|heater (generic term)|warmer (generic term)
+brasil|1
+(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country (generic term)|South American nation (generic term)
+brasilia|1
+(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital (generic term)
+brass|7
+(noun)|copper-base alloy (generic term)
+(noun)|brass instrument|wind instrument (generic term)|wind (generic term)
+(noun)|administration|governance|governing body|establishment|organization|organisation|body (generic term)
+(noun)|boldness|nerve|face|cheek|aggressiveness (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|brass section|section (generic term)
+(noun)|memorial tablet|plaque|memorial (generic term)|monument (generic term)
+brass band|1
+(noun)|band (generic term)
+brass buttons|1
+(noun)|Cotula coronopifolia|flower (generic term)
+brass family|1
+(noun)|class (generic term)|category (generic term)|family (generic term)
+brass hat|1
+(noun)|military officer (generic term)|officer (generic term)
+brass instrument|1
+(noun)|brass|wind instrument (generic term)|wind (generic term)
+brass knuckles|1
+(noun)|brass knucks|knucks|knuckles|knuckle duster|weapon (generic term)|arm (generic term)|weapon system (generic term)
+brass knucks|1
+(noun)|knucks|brass knuckles|knuckles|knuckle duster|weapon (generic term)|arm (generic term)|weapon system (generic term)
+brass monkey|1
+(noun)|base (generic term)|pedestal (generic term)|stand (generic term)
+brass ring|1
+(noun)|opportunity (generic term)|chance (generic term)
+brass section|1
+(noun)|brass|section (generic term)
+brassaia actinophylla|1
+(noun)|umbrella tree|Schefflera actinophylla|Brassaia actinophylla|shrub (generic term)|bush (generic term)
+brassard|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+brassavola|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+brassbound|2
+(adj)|ironclad|inflexible (similar term)
+(adj)|bound (similar term)
+brasserie|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+brassia|1
+(noun)|Brassia|genus Brassia|monocot genus (generic term)|liliopsid genus (generic term)
+brassia lawrenceana|1
+(noun)|spider orchid|Brassia lawrenceana|orchid (generic term)|orchidaceous plant (generic term)
+brassia verrucosa|1
+(noun)|spider orchid|Brassia verrucosa|orchid (generic term)|orchidaceous plant (generic term)
+brassica|1
+(noun)|Brassica|genus Brassica|dilleniid dicot genus (generic term)
+brassica hirta|1
+(noun)|white mustard|Brassica hirta|Sinapis alba|mustard (generic term)
+brassica juncea|1
+(noun)|chinese mustard|indian mustard|leaf mustard|gai choi|Brassica juncea|mustard (generic term)
+brassica kaber|1
+(noun)|field mustard|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+brassica napus|1
+(noun)|rape|colza|Brassica napus|mustard (generic term)
+brassica napus napobrassica|1
+(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant (generic term)
+brassica nigra|1
+(noun)|black mustard|Brassica nigra|mustard (generic term)
+brassica oleracea|2
+(noun)|cabbage|cultivated cabbage|Brassica oleracea|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|wild cabbage|Brassica oleracea|crucifer (generic term)|cruciferous plant (generic term)
+brassica oleracea acephala|1
+(noun)|kale|kail|cole|borecole|colewort|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+brassica oleracea botrytis|1
+(noun)|cauliflower|Brassica oleracea botrytis|crucifer (generic term)|cruciferous plant (generic term)
+brassica oleracea capitata|1
+(noun)|head cabbage|head cabbage plant|Brassica oleracea capitata|cabbage (generic term)|cultivated cabbage (generic term)|Brassica oleracea (generic term)
+brassica oleracea gemmifera|1
+(noun)|brussels sprout|Brassica oleracea gemmifera|crucifer (generic term)|cruciferous plant (generic term)
+brassica oleracea gongylodes|1
+(noun)|kohlrabi|Brassica oleracea gongylodes|crucifer (generic term)|cruciferous plant (generic term)
+brassica oleracea italica|1
+(noun)|broccoli|Brassica oleracea italica|crucifer (generic term)|cruciferous plant (generic term)
+brassica perviridis|1
+(noun)|tendergreen|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer (generic term)|cruciferous plant (generic term)
+brassica rapa|1
+(noun)|turnip|white turnip|Brassica rapa|turnip plant (generic term)
+brassica rapa chinensis|1
+(noun)|bok choy|bok choi|pakchoi|pak choi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+brassica rapa pekinensis|1
+(noun)|Chinese cabbage|celery cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer (generic term)|cruciferous plant (generic term)
+brassica rapa perviridis|1
+(noun)|tendergreen|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer (generic term)|cruciferous plant (generic term)
+brassica rapa ruvo|1
+(noun)|broccoli raab|broccoli rabe|Brassica rapa ruvo|crucifer (generic term)|cruciferous plant (generic term)
+brassicaceae|1
+(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family (generic term)
+brassie|1
+(noun)|wood (generic term)
+brassiere|1
+(noun)|bra|bandeau|undergarment (generic term)|unmentionable (generic term)|woman's clothing (generic term)
+brasslike|1
+(adj)|brassy|wind instrument|wind (related term)
+brassy|3
+(adj)|brasslike|wind instrument|wind (related term)
+(adj)|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|audacious|barefaced|bodacious|bald-faced|brazen|brazen-faced|insolent|unashamed (similar term)
+brat|2
+(noun)|terror|little terror|holy terror|imp (generic term)|scamp (generic term)|monkey (generic term)|rascal (generic term)|rapscallion (generic term)|scalawag (generic term)|scallywag (generic term)
+(noun)|bratwurst|pork sausage (generic term)
+bratislava|1
+(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital (generic term)
+brattice|2
+(noun)|partition (generic term)|divider (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+brattish|1
+(adj)|bratty|impolite (similar term)
+brattle|1
+(verb)|clatter|clack|make noise (generic term)|resound (generic term)|noise (generic term)
+brattleboro|1
+(noun)|Brattleboro|town (generic term)
+bratty|1
+(adj)|brattish|impolite (similar term)
+bratwurst|1
+(noun)|brat|pork sausage (generic term)
+braun|2
+(noun)|Braun|Eva Braun|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer (generic term)|rocket scientist (generic term)
+braun's holly fern|1
+(noun)|Braun's holly fern|prickly shield fern|Polystichum braunii|holly fern (generic term)
+braunschweig|1
+(noun)|Braunschweig|Brunswick|city (generic term)|metropolis (generic term)|urban center (generic term)
+bravado|1
+(noun)|bluster|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+bravais lattice|1
+(noun)|space lattice|crystal lattice|Bravais lattice|lattice (generic term)
+brave|6
+(adj)|courageous|desperate (similar term)|heroic (similar term)|gallant (similar term)|game (similar term)|gamy (similar term)|gamey (similar term)|gritty (similar term)|mettlesome (similar term)|spirited (similar term)|spunky (similar term)|lionhearted (similar term)|stalwart (similar term)|stouthearted (similar term)|undaunted (similar term)|valiant (similar term)|valorous (similar term)|adventurous (related term)|adventuresome (related term)|bold (related term)|resolute (related term)|unafraid (related term)|fearless (related term)|cowardly (antonym)
+(adj)|audacious|dauntless|fearless|intrepid|unfearing|bold (similar term)
+(adj)|braw|gay|colorful (similar term)|colourful (similar term)
+(noun)|warrior (generic term)
+(noun)|people (generic term)|timid (antonym)
+(verb)|weather|endure|brave out|defy (generic term)|withstand (generic term)|hold (generic term)|hold up (generic term)
+brave out|1
+(verb)|weather|endure|brave|defy (generic term)|withstand (generic term)|hold (generic term)|hold up (generic term)
+bravely|1
+(adv)|courageously
+braveness|1
+(noun)|courage|courageousness|bravery|spirit (generic term)|cowardice (antonym)
+bravery|2
+(noun)|courage|courageousness|braveness|spirit (generic term)|cowardice (antonym)
+(noun)|fearlessness|feeling (generic term)|fear (antonym)
+bravo|3
+(noun)|assassin|assassinator|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|cheer (generic term)
+(verb)|applaud (generic term)|clap (generic term)|spat (generic term)|acclaim (generic term)
+bravura|1
+(noun)|virtuosity (generic term)
+braw|1
+(adj)|brave|gay|colorful (similar term)|colourful (similar term)
+brawl|3
+(noun)|bash|do|party (generic term)
+(noun)|free-for-all|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|wrangle|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+brawler|1
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+brawling|1
+(adj)|fighting|disorderly (similar term)
+brawn|1
+(noun)|brawniness|muscle|muscularity|sinew|heftiness|strength (generic term)
+brawniness|1
+(noun)|brawn|muscle|muscularity|sinew|heftiness|strength (generic term)
+brawny|1
+(adj)|hefty|muscular|powerful|sinewy|strong (similar term)
+braxton-hicks contraction|1
+(noun)|Braxton-Hicks contraction|false labor|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+braxton bragg|1
+(noun)|Bragg|Braxton Bragg|general (generic term)|full general (generic term)
+bray|4
+(noun)|cry (generic term)
+(verb)|hee-haw|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|grind|mash|crunch|comminute|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+braze|1
+(verb)|solder (generic term)
+brazen|3
+(adj)|audacious|barefaced|bodacious|bald-faced|brassy|brazen-faced|insolent|unashamed (similar term)
+(adj)|copper-base alloy (related term)
+(verb)|defy (generic term)|dare (generic term)
+brazen-faced|1
+(adj)|audacious|barefaced|bodacious|bald-faced|brassy|brazen|insolent|unashamed (similar term)
+brazenness|1
+(noun)|shamelessness|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+brazier|1
+(noun)|brasier|heater (generic term)|warmer (generic term)
+brazil|2
+(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country (generic term)|South American nation (generic term)
+(noun)|brazil nut|edible nut (generic term)
+brazil-nut tree|1
+(noun)|brazil nut|Bertholletia excelsa|nut tree (generic term)
+brazil nut|2
+(noun)|brazil-nut tree|Bertholletia excelsa|nut tree (generic term)
+(noun)|brazil|edible nut (generic term)
+brazilian|2
+(adj)|Brazilian|South American country|South American nation (related term)
+(noun)|Brazilian|South American (generic term)
+brazilian capital|1
+(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital (generic term)
+brazilian guava|1
+(noun)|Brazilian guava|Psidium guineense|fruit tree (generic term)
+brazilian ironwood|1
+(noun)|Caesalpinia ferrea|tree (generic term)
+brazilian monetary unit|1
+(noun)|Brazilian monetary unit|monetary unit (generic term)
+brazilian pepper tree|1
+(noun)|Brazilian pepper tree|Schinus terebinthifolius|tree (generic term)
+brazilian potato tree|1
+(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub (generic term)|bush (generic term)
+brazilian rosewood|1
+(noun)|Brazilian rosewood|caviuna wood|jacaranda|Dalbergia nigra|rosewood (generic term)|rosewood tree (generic term)
+brazilian trumpeter|1
+(noun)|Brazilian trumpeter|Psophia crepitans|trumpeter (generic term)
+brazilwood|2
+(noun)|wood (generic term)
+(noun)|peachwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree (generic term)
+brazos|1
+(noun)|Brazos|Brazos River|river (generic term)
+brazos river|1
+(noun)|Brazos|Brazos River|river (generic term)
+brazzaville|1
+(noun)|Brazzaville|national capital (generic term)
+breach|5
+(noun)|failure (generic term)
+(noun)|opening (generic term)|gap (generic term)
+(noun)|rupture|break|severance|rift|falling out|separation (generic term)|breakup (generic term)|detachment (generic term)
+(verb)|transgress|offend|infract|violate|go against|break|disrespect (generic term)|keep (antonym)
+(verb)|gap|open (generic term)|open up (generic term)
+breach of contract|1
+(noun)|breach (generic term)
+breach of duty|1
+(noun)|breach (generic term)
+breach of promise|1
+(noun)|breach of contract (generic term)
+breach of the covenant of warranty|1
+(noun)|breach of contract (generic term)
+breach of the peace|1
+(noun)|disorderly conduct|disorderly behavior|disturbance of the peace|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+breach of trust|1
+(noun)|breach of contract (generic term)
+breach of trust with fraudulent intent|1
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+breach of warranty|1
+(noun)|breach of contract (generic term)
+bread|3
+(noun)|breadstuff|staff of life|baked goods (generic term)
+(noun)|boodle|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(verb)|cover (generic term)
+bread-bin|1
+(noun)|breadbox|container (generic term)
+bread-stick|1
+(noun)|breadstick|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+bread and butter|1
+(noun)|support|keep|livelihood|living|sustenance|resource (generic term)
+bread and butter pickle|1
+(noun)|sweet pickle (generic term)
+bread board|1
+(noun)|breadboard|board (generic term)
+bread dough|1
+(noun)|dough (generic term)
+bread knife|1
+(noun)|knife (generic term)
+bread line|1
+(noun)|breadline|queue (generic term)|waiting line (generic term)
+bread maker|1
+(noun)|baker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+bread mold|1
+(noun)|Rhizopus nigricans|rhizopus (generic term)
+bread sauce|1
+(noun)|sauce (generic term)
+breadbasket|3
+(noun)|region (generic term)
+(noun)|stomach|tummy|tum|internal organ (generic term)|viscus (generic term)
+(noun)|basket (generic term)|handbasket (generic term)
+breadboard|1
+(noun)|bread board|board (generic term)
+breadbox|1
+(noun)|bread-bin|container (generic term)
+breadcrumb|1
+(noun)|crumb (generic term)
+breadfruit|2
+(noun)|breadfruit tree|Artocarpus communis|Artocarpus altilis|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+breadfruit tree|1
+(noun)|breadfruit|Artocarpus communis|Artocarpus altilis|fruit tree (generic term)
+breadline|1
+(noun)|bread line|queue (generic term)|waiting line (generic term)
+breadroot|1
+(noun)|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb (generic term)|herbaceous plant (generic term)
+breadstick|1
+(noun)|bread-stick|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+breadstuff|2
+(noun)|bread|staff of life|baked goods (generic term)
+(noun)|foodstuff (generic term)|food product (generic term)
+breadth|2
+(noun)|comprehensiveness|largeness|intelligence (generic term)
+(noun)|width|dimension (generic term)
+breadth index|1
+(noun)|cephalic index|cranial index|ratio (generic term)
+breadthways|1
+(adv)|breadthwise|broadwise
+breadthwise|1
+(adv)|breadthways|broadwise
+breadwinner|1
+(noun)|earner (generic term)|wage earner (generic term)
+break|71
+(noun)|interruption|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|good luck|happy chance|accident (generic term)|fortuity (generic term)|chance event (generic term)
+(noun)|fault|faulting|geological fault|shift|fracture|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|rupture|breach|severance|rift|falling out|separation (generic term)|breakup (generic term)|detachment (generic term)
+(noun)|respite|recess|time out|pause (generic term)
+(noun)|breakage|breaking|change of integrity (generic term)
+(noun)|pause|intermission|interruption|suspension|time interval (generic term)|interval (generic term)
+(noun)|fracture|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|separation (generic term)|breakup (generic term)|detachment (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|stroke (generic term)|shot (generic term)
+(noun)|break of serve|score (generic term)
+(noun)|interruption|disruption|gap|delay (generic term)|holdup (generic term)
+(noun)|dash (generic term)|sprint (generic term)
+(noun)|open frame|score (generic term)
+(noun)|breakout|jailbreak|gaolbreak|prisonbreak|prison-breaking|escape (generic term)|flight (generic term)
+(verb)|interrupt|end (generic term)|terminate (generic term)
+(verb)|separate|split up|fall apart|come apart|change integrity (generic term)|break up (related term)
+(verb)|separate (generic term)|divide (generic term)
+(verb)|damage (generic term)
+(verb)|bust|destroy (generic term)|ruin (generic term)|bust up (related term)|break up (related term)|break apart (related term)|break off (related term)|break up (related term)|break down (related term)|repair (antonym)
+(verb)|transgress|offend|infract|violate|go against|breach|disrespect (generic term)|keep (antonym)
+(verb)|break out|break away|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|disperse (generic term)|dissipate (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|burst|erupt|express emotion (generic term)|express feelings (generic term)
+(verb)|break off|discontinue|stop|end (generic term)|terminate (generic term)
+(verb)|break in|trespass (generic term)|intrude (generic term)
+(verb)|break in|domesticate (generic term)|domesticize (generic term)|domesticise (generic term)|reclaim (generic term)|tame (generic term)
+(verb)|violate|go against|conform to (antonym)
+(verb)|better|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|expose|divulge|impart|give away|let out|tell (generic term)
+(verb)|become (generic term)|go (generic term)|get (generic term)
+(verb)|fail|go bad|give way|die|give out|conk out|go|break down|change (generic term)
+(verb)|break away|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|dampen|damp|soften|weaken|deaden (generic term)|blunt (generic term)
+(verb)|change (generic term)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|come forth (generic term)|emerge (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|ruin (generic term)|make (antonym)
+(verb)|invalidate (generic term)|annul (generic term)|quash (generic term)|void (generic term)|avoid (generic term)|nullify (generic term)
+(verb)|separate|part|split up|split|break up
+(verb)|demote|bump|relegate|kick downstairs|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|bump off (related term)|promote (antonym)
+(verb)|bankrupt|ruin|smash|impoverish (generic term)
+(verb)|appear (generic term)
+(verb)|collapse|fall in|cave in|give|give way|founder|change (generic term)
+(verb)|break dance|break-dance|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+(verb)|break up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|shoot (generic term)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|wear|wear out|bust|fall apart|decay (generic term)|crumble (generic term)|delapidate (generic term)|wear away (related term)|wear off (related term)|wear away (related term)|break away (related term)|break off (related term)|break up (related term)|break apart (related term)
+(verb)|break off|snap off|detach (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+(verb)|get out|get around
+(verb)|pause|intermit|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|diphthongize (generic term)|diphthongise (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+(verb)|switch (generic term)|shift (generic term)|change (generic term)
+(verb)|recrudesce|develop|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|break out (related term)|break through (related term)
+(verb)|crack|check|change (generic term)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|fracture|injure (generic term)|wound (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|weaken (generic term)
+break-axe|1
+(noun)|breakax|breakaxe|Sloanea jamaicensis|tree (generic term)
+break-dance|1
+(verb)|break dance|break|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+break-in|1
+(noun)|housebreaking|breaking and entering|burglary (generic term)
+break apart|3
+(verb)|disassemble|dismantle|take apart|break up|destroy (generic term)|destruct (generic term)|assemble (antonym)
+(verb)|crash|break up|disintegrate (generic term)
+(verb)|disunify|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)|unify (antonym)
+break away|5
+(verb)|chip|chip off|come off|break off|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|break|break out|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|break|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|secede|splinter|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|leave (generic term)|go forth (generic term)|go away (generic term)
+break bread|1
+(verb)|eat (generic term)
+break camp|1
+(verb)|decamp|depart (generic term)|take leave (generic term)|quit (generic term)
+break dance|2
+(noun)|break dancing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(verb)|break-dance|break|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+break dancing|1
+(noun)|break dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+break down|8
+(verb)|analyze|analyse|dissect|take apart|synthesize (antonym)
+(verb)|crush|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|lose it|snap|act (generic term)|behave (generic term)|do (generic term)
+(verb)|fail|go bad|give way|die|give out|conk out|go|break|change (generic term)
+(verb)|decompose|break up|separate (generic term)
+(verb)|crumble|crumple|tumble|collapse|change integrity (generic term)
+(verb)|break (generic term)|bust (generic term)
+(verb)|collapse|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+break even|2
+(verb)|profit (antonym)|lose (antonym)
+(verb)|reach (generic term)|hit (generic term)|attain (generic term)
+break in|6
+(verb)|break|trespass (generic term)|intrude (generic term)
+(verb)|chime in|cut in|put in|butt in|chisel in|barge in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|intrude (generic term)|irrupt (generic term)
+(verb)|break (generic term)
+(verb)|break|domesticate (generic term)|domesticize (generic term)|domesticise (generic term)|reclaim (generic term)|tame (generic term)
+break into|2
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|change (generic term)
+break loose|2
+(verb)|explode|burst forth|change state (generic term)|turn (generic term)
+(verb)|escape|get away|flee (generic term)|fly (generic term)|take flight (generic term)
+break of day|1
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+break of serve|1
+(noun)|break|score (generic term)
+break of the day|1
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+break off|5
+(verb)|cut short|break short|interrupt (generic term)|break (generic term)
+(verb)|break|discontinue|stop|end (generic term)|terminate (generic term)
+(verb)|chip|chip off|come off|break away|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|break|snap off|detach (generic term)
+(verb)|chip|knap|cut off|cut (generic term)|chip at (related term)
+break one's back|1
+(verb)|slave|buckle down|knuckle down|work (generic term)|do work (generic term)
+break open|3
+(verb)|open (generic term)|open up (generic term)
+(verb)|burst|split|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|erupt|irrupt|flare up|flare|burst out|intensify (generic term)|deepen (generic term)
+break out|5
+(verb)|erupt|begin (generic term)|start (generic term)
+(verb)|begin (generic term)|start (generic term)
+(verb)|break|break away|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|unpack (generic term)|take out (generic term)
+(verb)|erupt|recrudesce|afflict (generic term)|trouble (generic term)|ail (generic term)|pain (generic term)
+break seal|1
+(noun)|seal (generic term)
+break short|1
+(verb)|cut short|break off|interrupt (generic term)|break (generic term)
+break someone's heart|1
+(verb)|pain (generic term)|anguish (generic term)|hurt (generic term)
+break through|3
+(verb)|crack|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|come through|appear (generic term)
+(verb)|erupt|come out|push through|appear (generic term)
+break up|18
+(verb)|disperse|dissipate|dispel|scatter|separate (generic term)|divide (generic term)
+(verb)|separate|part|split up|split|break
+(verb)|separate (generic term)|part (generic term)|split (generic term)
+(verb)|crash|break apart|disintegrate (generic term)
+(verb)|interrupt|disrupt|cut off|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|dissolve|resolve|change integrity (generic term)
+(verb)|crack up|crack|crock up|collapse|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+(verb)|disassemble|dismantle|take apart|break apart|destroy (generic term)|destruct (generic term)|assemble (antonym)
+(verb)|break|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sever|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|pick|pierce (generic term)
+(verb)|calve|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|adjourn|recess|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|dissolve|end (generic term)|terminate (generic term)
+(verb)|fragment|fragmentize|fragmentise|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|disperse|scatter|change integrity (generic term)
+(verb)|decompose|break down|separate (generic term)
+(verb)|crack up|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+break water|1
+(verb)|fin|swim (generic term)
+break wind|1
+(verb)|fart|act involuntarily (generic term)|act reflexively (generic term)
+break with|1
+(verb)|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+breakability|1
+(noun)|fragility|frangibleness|frangibility|vulnerability (generic term)
+breakable|2
+(adj)|brittle (similar term)|brickle (similar term)|brickly (similar term)|crumbly (similar term)|short (similar term)|friable (similar term)|delicate (similar term)|fragile (similar term)|frail (similar term)|frangible (similar term)|splintery (similar term)|unbreakable (antonym)
+(noun)|article (generic term)
+breakableness|1
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|unbreakableness (antonym)
+breakage|3
+(noun)|indefinite quantity (generic term)
+(noun)|reimbursement (generic term)
+(noun)|break|breaking|change of integrity (generic term)
+breakaway|2
+(adj)|fissiparous|separatist|independent (similar term)
+(noun)|breaking away|secession (generic term)|withdrawal (generic term)
+breakax|1
+(noun)|breakaxe|break-axe|Sloanea jamaicensis|tree (generic term)
+breakaxe|1
+(noun)|breakax|break-axe|Sloanea jamaicensis|tree (generic term)
+breakbone fever|1
+(noun)|dengue|dengue fever|dandy fever|infectious disease (generic term)
+breakdown|4
+(noun)|dislocation|disruption (generic term)|perturbation (generic term)
+(noun)|crack-up|collapse (generic term)
+(noun)|equipment failure|failure (generic term)
+(noun)|partitioning|analysis (generic term)|analytic thinking (generic term)
+breaker|3
+(noun)|ledgeman|quarryman (generic term)|quarrier (generic term)
+(noun)|surf|breakers|wave (generic term)|moving ridge (generic term)
+(noun)|circuit breaker|fuse (generic term)|electrical fuse (generic term)|safety fuse (generic term)
+breaker point|1
+(noun)|distributor point|point|contact (generic term)|tangency (generic term)
+breakers|1
+(noun)|surf|breaker|wave (generic term)|moving ridge (generic term)
+breakfast|3
+(noun)|meal (generic term)|repast (generic term)
+(verb)|eat (generic term)
+(verb)|feed (generic term)|give (generic term)
+breakfast area|1
+(noun)|breakfast nook|area (generic term)
+breakfast food|1
+(noun)|food (generic term)|solid food (generic term)
+breakfast nook|1
+(noun)|breakfast area|area (generic term)
+breakfast table|1
+(noun)|table (generic term)
+breakfast time|1
+(noun)|mealtime (generic term)
+breaking|1
+(noun)|breakage|break|change of integrity (generic term)
+breaking and entering|1
+(noun)|housebreaking|break-in|burglary (generic term)
+breaking away|2
+(noun)|breakaway|secession (generic term)|withdrawal (generic term)
+(noun)|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+breaking ball|1
+(noun)|curve|curve ball|bender|pitch (generic term)|delivery (generic term)
+breaking off|1
+(noun)|abruption|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+breaking point|2
+(noun)|tension (generic term)|tenseness (generic term)|stress (generic term)
+(noun)|stress (generic term)
+breaking wind|1
+(noun)|fart|farting|flatus|wind|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+breakneck|1
+(adj)|dangerous (similar term)|unsafe (similar term)
+breakout|1
+(noun)|break|jailbreak|gaolbreak|prisonbreak|prison-breaking|escape (generic term)|flight (generic term)
+breakstone|1
+(noun)|saxifrage|rockfoil|herb (generic term)|herbaceous plant (generic term)
+breakthrough|3
+(noun)|discovery|find|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|discovery (generic term)|find (generic term)|uncovering (generic term)
+(noun)|penetration (generic term)|incursion (generic term)
+breakup|2
+(noun)|dissolution|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|separation|detachment|change (generic term)|alteration (generic term)|modification (generic term)
+breakwater|1
+(noun)|groin|groyne|mole|bulwark|seawall|jetty|barrier (generic term)
+bream|5
+(noun)|freshwater bream|freshwater fish (generic term)
+(noun)|sea bream|saltwater fish (generic term)
+(noun)|sea bream|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|freshwater bream|sunfish (generic term)|centrarchid (generic term)
+(verb)|clean (generic term)|make clean (generic term)
+breast|6
+(noun)|body part (generic term)
+(noun)|bosom|knocker|boob|tit|titty|mammary gland (generic term)|mamma (generic term)
+(noun)|white meat|helping (generic term)|portion (generic term)|serving (generic term)
+(verb)|converge (generic term)|meet (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|front|confront (generic term)|face (generic term)
+breast-deep|1
+(adv)|breast-high
+breast-fed|1
+(adj)|nursed (similar term)|suckled (similar term)|bottle-fed (antonym)
+breast-high|1
+(adv)|breast-deep
+breast cancer|1
+(noun)|carcinoma (generic term)
+breast drill|1
+(noun)|drill (generic term)
+breast feeding|1
+(noun)|nursing|infant feeding (generic term)
+breast implant|1
+(noun)|implant (generic term)
+breast of lamb|1
+(noun)|poitrine d'agneau|cut of lamb (generic term)
+breast of veal|1
+(noun)|veal roast (generic term)|roast veal (generic term)
+breast pocket|1
+(noun)|pocket (generic term)
+breastbone|1
+(noun)|sternum|bone (generic term)|os (generic term)
+breasted|1
+(adj)|bosomed (similar term)|breastless (antonym)
+breastfeed|1
+(verb)|bottle-feed|suckle|suck|nurse|wet-nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+breastless|1
+(adj)|breasted (antonym)
+breastpin|1
+(noun)|brooch|broach|pin (generic term)
+breastplate|1
+(noun)|aegis|egis|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+breaststroke|2
+(noun)|swimming stroke (generic term)
+(verb)|swim (generic term)
+breaststroker|1
+(noun)|swimmer (generic term)
+breastwork|1
+(noun)|parapet|fortification (generic term)|munition (generic term)
+breath|5
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|air (generic term)
+(noun)|breather|breathing place|breathing space|breathing spell|breathing time|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+(noun)|hint|intimation|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+breath of fresh air|1
+(noun)|easing (generic term)|moderation (generic term)|relief (generic term)
+breathalyse|1
+(verb)|breathalyze|check (generic term)
+breathalyser|1
+(noun)|breathalyzer|device (generic term)
+breathalyze|1
+(verb)|breathalyse|check (generic term)
+breathalyzer|1
+(noun)|breathalyser|device (generic term)
+breathe|9
+(verb)|take a breath|respire|suspire|breathe out (related term)|breathe in (related term)
+(verb)|exist (generic term)|survive (generic term)|live (generic term)|subsist (generic term)
+(verb)|instill (generic term)|transfuse (generic term)
+(verb)|be (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|convey (generic term)|impart (generic term)
+(verb)|rest|catch one's breath|take a breather|pause (generic term)|intermit (generic term)|break (generic term)
+(verb)|oxidize (generic term)|oxidise (generic term)|oxidate (generic term)
+(verb)|emit|pass off|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+breathe in|1
+(verb)|inhale|inspire|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|exhale (antonym)
+breathe out|1
+(verb)|exhale|expire|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|inhale (antonym)
+breathed|1
+(adj)|voiceless|inaudible (similar term)|unhearable (similar term)
+breather|2
+(noun)|breath|breathing place|breathing space|breathing spell|breathing time|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+(noun)|snorkel|schnorkel|schnorchel|snorkel breather|air passage (generic term)|air duct (generic term)|airway (generic term)
+breathing|2
+(adj)|eupneic|eupnoeic|sweet-breathed (similar term)|snoring (similar term)|snorting (similar term)|breathless (antonym)
+(noun)|external respiration|respiration|ventilation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+breathing apparatus|1
+(noun)|breathing device|breathing machine|ventilator|device (generic term)
+breathing device|1
+(noun)|breathing apparatus|breathing machine|ventilator|device (generic term)
+breathing in|1
+(noun)|inhalation|inspiration|aspiration|breath (generic term)
+breathing machine|1
+(noun)|breathing device|breathing apparatus|ventilator|device (generic term)
+breathing out|1
+(noun)|exhalation|expiration|breath (generic term)
+breathing place|1
+(noun)|breath|breather|breathing space|breathing spell|breathing time|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+breathing room|1
+(noun)|breathing space|room (generic term)|way (generic term)|elbow room (generic term)
+breathing space|2
+(noun)|breath|breather|breathing place|breathing spell|breathing time|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+(noun)|breathing room|room (generic term)|way (generic term)|elbow room (generic term)
+breathing spell|1
+(noun)|breath|breather|breathing place|breathing space|breathing time|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+breathing time|1
+(noun)|breath|breather|breathing place|breathing space|breathing spell|respite (generic term)|rest (generic term)|relief (generic term)|rest period (generic term)
+breathless|3
+(adj)|dyspneic|dyspnoeic|dyspneal|dyspnoeal|asphyxiating (similar term)|smothering (similar term)|suffocating (similar term)|suffocative (similar term)|blown (similar term)|gasping (similar term)|out of breath (similar term)|panting (similar term)|pursy (similar term)|short-winded (similar term)|winded (similar term)|unventilated (related term)|breathing (antonym)
+(adj)|breathtaking|exciting (similar term)
+(adj)|inanimate|pulseless|dead (similar term)
+breathlessly|1
+(adv)|gaspingly
+breathlessness|1
+(noun)|shortness of breath|SOB|dyspnea (generic term)|dyspnoea (generic term)
+breathtaking|1
+(adj)|breathless|exciting (similar term)
+breccia|1
+(noun)|rudaceous rock (generic term)
+brecciate|2
+(verb)|form (generic term)
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+brecht|1
+(noun)|Brecht|Bertolt Brecht|dramatist (generic term)|playwright (generic term)|poet (generic term)
+breech|1
+(noun)|rear of barrel|rear of tube|opening (generic term)
+breech-loading|1
+(adj)|gun (related term)
+breech birth|1
+(noun)|breech delivery|breech presentation|delivery (generic term)|obstetrical delivery (generic term)
+breech closer|1
+(noun)|breechblock|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+breech delivery|1
+(noun)|breech birth|breech presentation|delivery (generic term)|obstetrical delivery (generic term)
+breech presentation|1
+(noun)|breech delivery|breech birth|delivery (generic term)|obstetrical delivery (generic term)
+breechblock|1
+(noun)|breech closer|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+breechcloth|1
+(noun)|breechclout|loincloth|garment (generic term)
+breechclout|1
+(noun)|breechcloth|loincloth|garment (generic term)
+breeched|1
+(adj)|pantalooned|trousered|clothed (similar term)|clad (similar term)
+breeches|1
+(noun)|knee breeches|knee pants|knickerbockers|knickers|trouser (generic term)|pant (generic term)
+breeches buoy|1
+(noun)|life buoy (generic term)|lifesaver (generic term)|life belt (generic term)|life ring (generic term)
+breechloader|1
+(noun)|gun (generic term)
+breed|8
+(noun)|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+(noun)|strain|stock|variety (generic term)|animal group (generic term)
+(noun)|half-breed|half-caste (generic term)
+(noun)|strain|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+(verb)|engender|spawn|cause (generic term)|do (generic term)|make (generic term)
+(verb)|cover|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|multiply|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+breed's hill|1
+(noun)|Breed's Hill|hill (generic term)
+breeder|1
+(noun)|stock breeder|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+breeder reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)
+breeding|6
+(adj)|fruitful (similar term)
+(noun)|genteelness|gentility|elegance (generic term)
+(noun)|education|training|upbringing (generic term)
+(noun)|bringing up|fostering|fosterage|nurture|raising|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+(noun)|production (generic term)
+(noun)|reproduction|procreation|facts of life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+breeding ground|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+breeze|4
+(noun)|zephyr|gentle wind|air|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|cinch|picnic|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(verb)|blow (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|breeze through (related term)
+breeze block|1
+(noun)|cinder block|clinker block|building block (generic term)
+breeze through|1
+(verb)|ace|pass with flying colors|sweep through|sail through|nail|pass (generic term)|make it (generic term)
+breeziness|2
+(noun)|windiness|storminess (generic term)
+(noun)|jauntiness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+breezy|2
+(adj)|lively (similar term)
+(adj)|blowy|windy|stormy (similar term)
+bregma|1
+(noun)|craniometric point (generic term)
+bregmatic|1
+(adj)|craniometric point (related term)
+breiz|1
+(noun)|Bretagne|Brittany|Breiz|French region (generic term)
+bremen|1
+(noun)|Bremen|city (generic term)|metropolis (generic term)|urban center (generic term)
+bremerhaven|1
+(noun)|Bremerhaven|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bren|1
+(noun)|Bren|Bren gun|submachine gun (generic term)
+bren gun|1
+(noun)|Bren|Bren gun|submachine gun (generic term)
+brenner pass|1
+(noun)|Brenner Pass|pass (generic term)|mountain pass (generic term)|notch (generic term)
+brent|1
+(noun)|brant|brant goose|brent goose|goose (generic term)
+brent goose|1
+(noun)|brant|brant goose|brent|goose (generic term)
+brer rabbit|1
+(noun)|Brer Rabbit|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+brescia|1
+(noun)|Brescia|city (generic term)|metropolis (generic term)|urban center (generic term)
+breslau|1
+(noun)|Wroclaw|Breslau|city (generic term)|metropolis (generic term)|urban center (generic term)
+brest|1
+(noun)|Brest|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bret harte|1
+(noun)|Harte|Bret Harte|writer (generic term)|author (generic term)
+bretagne|1
+(noun)|Bretagne|Brittany|Breiz|French region (generic term)
+brethren|1
+(noun)|sect (generic term)|religious sect (generic term)|religious order (generic term)
+breton|2
+(noun)|Breton|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+(noun)|Breton|Brythonic (generic term)|Brittanic (generic term)
+breuer|1
+(noun)|Breuer|Marcel Lajos Breuer|architect (generic term)|designer (generic term)
+breughel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+breughel the elder|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+breve|1
+(noun)|diacritical mark (generic term)|diacritic (generic term)
+brevet|2
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(verb)|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+breviary|1
+(noun)|prayer book (generic term)|prayerbook (generic term)
+brevibloc|1
+(noun)|esmolol|Brevibloc|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+brevicipitidae|1
+(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family (generic term)
+brevity|2
+(noun)|terseness (generic term)
+(noun)|briefness|transience|duration (generic term)|length (generic term)
+brevoortia|1
+(noun)|Brevoortia|genus Brevoortia|fish genus (generic term)
+brevoortia tyrannis|1
+(noun)|menhaden|Brevoortia tyrannis|clupeid fish (generic term)|clupeid (generic term)
+brew|3
+(noun)|brewage|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|soak (generic term)|imbue (generic term)
+brewage|1
+(noun)|brew|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+brewer|2
+(noun)|beer maker|maker (generic term)|shaper (generic term)
+(noun)|manufacturer (generic term)|producer (generic term)
+brewer's mole|1
+(noun)|hair-tailed mole|Parascalops breweri|mole (generic term)
+brewer's mountain heather|1
+(noun)|purple heather|Brewer's mountain heather|Phyllodoce breweri|heath (generic term)
+brewer's spruce|1
+(noun)|weeping spruce|Brewer's spruce|Picea breweriana|spruce (generic term)
+brewer's yeast|2
+(noun)|yeast (generic term)|barm (generic term)
+(noun)|baker's yeast|Saccharomyces cerevisiae|yeast (generic term)
+brewery|1
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+brewing|1
+(noun)|production (generic term)
+brewpub|1
+(noun)|brewery (generic term)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+brezhnev|1
+(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman (generic term)|solon (generic term)|national leader (generic term)
+briar|4
+(noun)|sweetbrier|sweetbriar|brier|eglantine|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|brier|Smilax rotundifolia|vine (generic term)
+(noun)|tree heath|brier|Erica arborea|erica (generic term)|true heath (generic term)
+(noun)|briar pipe|pipe (generic term)|tobacco pipe (generic term)
+briar pipe|1
+(noun)|briar|pipe (generic term)|tobacco pipe (generic term)
+briard|1
+(noun)|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+briarroot|1
+(noun)|root (generic term)
+briarwood|1
+(noun)|brierwood|brier-wood|wood (generic term)
+briary|1
+(adj)|barbed|barbellate|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+bribable|1
+(adj)|corruptible|dishonest|purchasable|venal|corrupt (similar term)
+bribe|2
+(noun)|payoff|payment (generic term)
+(verb)|corrupt|buy|grease one's palms|pay (generic term)
+briber|1
+(noun)|suborner|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+bribery|1
+(noun)|graft|felony (generic term)
+bric-a-brac|1
+(noun)|knickknack|nicknack|knickknackery|whatnot|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+brick|2
+(noun)|ceramic (generic term)|building material (generic term)
+(noun)|good person (generic term)
+brick-shaped|1
+(adj)|cubic (similar term)|three-dimensional (similar term)
+brick cheese|1
+(noun)|cheese (generic term)
+brick in|1
+(verb)|brick up|brick over|wall in (generic term)|wall up (generic term)
+brick over|1
+(verb)|brick in|brick up|wall in (generic term)|wall up (generic term)
+brick red|1
+(noun)|reddish brown (generic term)|sepia (generic term)|burnt sienna (generic term)|Venetian red (generic term)
+brick trowel|1
+(noun)|mason's trowel|trowel (generic term)
+brick up|1
+(verb)|brick in|brick over|wall in (generic term)|wall up (generic term)
+brickbat|2
+(noun)|fragment (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+brickellia|1
+(noun)|Brickellia|genus Brickelia|asterid dicot genus (generic term)
+brickfield|1
+(noun)|brickyard|workshop (generic term)|shop (generic term)
+brickkiln|1
+(noun)|kiln (generic term)
+bricklayer|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+bricklayer's hammer|1
+(noun)|hammer (generic term)
+bricklaying|1
+(noun)|masonry (generic term)
+brickle|1
+(adj)|brittle|brickly|breakable (similar term)
+brickly|1
+(adj)|brittle|brickle|breakable (similar term)
+bricks and mortar|1
+(noun)|building material (generic term)
+brickwork|1
+(noun)|masonry (generic term)
+brickyard|1
+(noun)|brickfield|workshop (generic term)|shop (generic term)
+bricole|1
+(noun)|catapult|arbalest|arbalist|ballista|mangonel|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+bridal|3
+(adj)|nuptial|spousal|ceremony|ceremonial|ceremonial occasion|observance (related term)|marriage|wedding|marriage ceremony (related term)
+(adj)|participant (related term)
+(noun)|espousal|marriage (generic term)|wedding (generic term)|marriage ceremony (generic term)
+bridal-wreath|2
+(noun)|bridal wreath|Francoa ramosa|shrub (generic term)|bush (generic term)
+(noun)|bridal wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea (generic term)|spiraea (generic term)
+bridal gown|1
+(noun)|wedding gown|wedding dress|gown (generic term)
+bridal wreath|2
+(noun)|bridal-wreath|Francoa ramosa|shrub (generic term)|bush (generic term)
+(noun)|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea (generic term)|spiraea (generic term)
+bride|3
+(noun)|newlywed (generic term)|honeymooner (generic term)
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+(noun)|participant (generic term)
+bride's bonnet|1
+(noun)|queen's cup|Clintonia uniflora|clintonia (generic term)|Clinton's lily (generic term)
+bride-gift|1
+(noun)|wedding present (generic term)|wedding gift (generic term)
+bride-to-be|1
+(noun)|fiancee|betrothed (generic term)
+bride price|1
+(noun)|gift (generic term)
+bridecake|1
+(noun)|wedding cake|cake (generic term)
+bridegroom|2
+(noun)|groom|newlywed (generic term)|honeymooner (generic term)
+(noun)|groom|participant (generic term)
+bridesmaid|1
+(noun)|maid of honor|attendant (generic term)|attender (generic term)|tender (generic term)|woman (generic term)|adult female (generic term)
+bridge|12
+(noun)|span|structure (generic term)|construction (generic term)
+(noun)|bridge circuit|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|card game (generic term)|cards (generic term)
+(noun)|support (generic term)
+(noun)|bridgework|denture (generic term)|dental plate (generic term)|plate (generic term)
+(noun)|nosepiece|link (generic term)|linkup (generic term)|tie (generic term)|tie-in (generic term)
+(noun)|bridge deck|upper deck (generic term)
+(verb)|bridge over|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|bridge over (related term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+bridge agent|1
+(noun)|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+bridge circuit|1
+(noun)|bridge|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+bridge deck|1
+(noun)|bridge|upper deck (generic term)
+bridge hand|1
+(noun)|hand (generic term)|deal (generic term)
+bridge over|2
+(verb)|tide over|keep going|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|bridge|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|bridge over (related term)
+bridge partner|1
+(noun)|bridge player (generic term)|hand (generic term)|collaborator (generic term)|cooperator (generic term)|partner (generic term)|pardner (generic term)
+bridge player|1
+(noun)|hand|card player (generic term)
+bridge whist|1
+(noun)|bridge (generic term)
+bridgeable|1
+(adj)|unbridgeable (antonym)
+bridged-t|1
+(noun)|bridged-T|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+bridgehead|2
+(noun)|foothold|combat zone (generic term)|combat area (generic term)
+(noun)|post (generic term)|station (generic term)
+bridgeport|1
+(noun)|Bridgeport|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bridges|1
+(noun)|Bridges|Harry Bridges|labor leader (generic term)
+bridget|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+bridgetown|1
+(noun)|Bridgetown|capital of Barbados|capital (generic term)|port (generic term)
+bridgework|1
+(noun)|bridge|denture (generic term)|dental plate (generic term)|plate (generic term)
+bridle|4
+(noun)|headgear (generic term)
+(noun)|check|curb|restraint (generic term)
+(verb)|restrain (generic term)|encumber (generic term)|cumber (generic term)|constrain (generic term)|unbridle (antonym)
+(verb)|answer (generic term)|reply (generic term)|respond (generic term)
+bridle at|1
+(verb)|bristle at|bridle up|bristle up|mind (generic term)
+bridle path|1
+(noun)|bridle road|path (generic term)
+bridle road|1
+(noun)|bridle path|path (generic term)
+bridle up|1
+(verb)|bristle at|bridle at|bristle up|mind (generic term)
+bridoon|1
+(noun)|bit (generic term)
+brie|1
+(noun)|Brie|cheese (generic term)
+brief|6
+(adj)|little|short (similar term)
+(adj)|concise (similar term)
+(adj)|abbreviated|short (similar term)
+(noun)|legal brief|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|outline (generic term)|synopsis (generic term)|abstract (generic term)|precis (generic term)
+(verb)|instruct (generic term)|apprise (generic term)|apprize (generic term)
+briefcase|1
+(noun)|case (generic term)
+briefcase bomb|1
+(noun)|bomb (generic term)
+briefcase computer|1
+(noun)|portable computer (generic term)
+briefing|1
+(noun)|informing (generic term)|making known (generic term)
+briefless|1
+(adj)|unpatronized (similar term)|unpatronised (similar term)|patronless (similar term)
+briefly|1
+(adv)|concisely|shortly|in brief|in short
+briefness|2
+(noun)|shortness (generic term)
+(noun)|brevity|transience|duration (generic term)|length (generic term)
+briefs|1
+(noun)|Jockey shorts|underpants (generic term)
+brier|5
+(noun)|brierpatch|brier patch|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|branchlet (generic term)|twig (generic term)|sprig (generic term)
+(noun)|sweetbrier|sweetbriar|briar|eglantine|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|briar|Smilax rotundifolia|vine (generic term)
+(noun)|tree heath|briar|Erica arborea|erica (generic term)|true heath (generic term)
+brier-wood|1
+(noun)|briarwood|brierwood|wood (generic term)
+brier patch|1
+(noun)|brier|brierpatch|vegetation (generic term)|flora (generic term)|botany (generic term)
+brierpatch|1
+(noun)|brier|brier patch|vegetation (generic term)|flora (generic term)|botany (generic term)
+brierwood|1
+(noun)|briarwood|brier-wood|wood (generic term)
+briery|1
+(adj)|barbed|barbellate|briary|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+brig|2
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+(noun)|penal institution (generic term)|penal facility (generic term)
+brigade|2
+(noun)|army unit (generic term)
+(verb)|group (generic term)|aggroup (generic term)
+brigadier|1
+(noun)|brigadier general|general officer (generic term)
+brigadier general|1
+(noun)|brigadier|general officer (generic term)
+brigand|1
+(noun)|bandit|thief (generic term)|stealer (generic term)
+brigandine|1
+(noun)|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+brigantine|1
+(noun)|hermaphrodite brig|sailing vessel (generic term)|sailing ship (generic term)
+brigate rosse|1
+(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+brigham young|1
+(noun)|Young|Brigham Young|religious leader (generic term)
+bright|12
+(adj)|agleam (similar term)|gleaming (similar term)|nitid (similar term)|aglow (similar term)|lambent (similar term)|lucent (similar term)|luminous (similar term)|aglitter (similar term)|coruscant (similar term)|fulgid (similar term)|glinting (similar term)|glistering (similar term)|glittering (similar term)|glittery (similar term)|scintillant (similar term)|scintillating (similar term)|sparkly (similar term)|beady (similar term)|beadlike (similar term)|buttony (similar term)|buttonlike (similar term)|beaming (similar term)|beamy (similar term)|effulgent (similar term)|radiant (similar term)|refulgent (similar term)|blazing (similar term)|blinding (similar term)|dazzling (similar term)|fulgent (similar term)|glaring (similar term)|glary (similar term)|bright as a new penny (similar term)|brilliant (similar term)|ardent (similar term)|flashing (similar term)|glimmering (similar term)|glimmery (similar term)|glistening (similar term)|glossy (similar term)|lustrous (similar term)|sheeny (similar term)|shiny (similar term)|shining (similar term)|iridescent (similar term)|nacreous (similar term)|opalescent (similar term)|opaline (similar term)|pearlescent (similar term)|lurid (similar term)|noctilucent (similar term)|self-luminous (similar term)|shimmery (similar term)|silver (similar term)|silvern (similar term)|silvery (similar term)|twinkling (similar term)|dull (antonym)
+(adj)|brilliant|vivid|colorful (similar term)|colourful (similar term)
+(adj)|smart|intelligent (similar term)
+(adj)|light (similar term)
+(adj)|burnished|lustrous|shining|shiny|polished (similar term)
+(adj)|glorious (similar term)
+(adj)|undimmed|dimmed (antonym)
+(adj)|brilliant|reverberant (similar term)|ringing (similar term)
+(adj)|happy (similar term)
+(adj)|shining|shiny|sunshiny|sunny|clear (similar term)
+(adj)|promising|auspicious (similar term)
+(adv)|brilliantly|brightly
+bright's disease|1
+(noun)|nephritis|Bright's disease|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+bright-red|1
+(adj)|raspberry-red|chromatic (similar term)
+bright as a new penny|1
+(adj)|bright (similar term)
+bright blue|1
+(adj)|azure|cerulean|sky-blue|chromatic (similar term)
+bright side|1
+(noun)|silver lining|consolation (generic term)|solace (generic term)|solacement (generic term)
+brighten|4
+(verb)|lighten up|lighten|change (generic term)|alter (generic term)|modify (generic term)|darken (antonym)
+(verb)|clear up|clear|light up|overcast (antonym)
+(verb)|change intensity (generic term)|darken (antonym)
+(verb)|lighten|change (generic term)|darken (antonym)
+brightly|1
+(adv)|brilliantly|bright
+brightly-colored|1
+(adj)|brightly-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+brightly-coloured|1
+(adj)|brightly-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+brightness|3
+(noun)|light (generic term)|lightness (generic term)|dullness (antonym)
+(noun)|cleverness|smartness|intelligence (generic term)
+(noun)|luminosity|brightness level|luminance|luminousness|light|physical property (generic term)
+brightness constancy|1
+(noun)|constancy (generic term)|perceptual constancy (generic term)
+brightness level|1
+(noun)|luminosity|brightness|luminance|luminousness|light|physical property (generic term)
+brighton|1
+(noun)|Brighton|city (generic term)|metropolis (generic term)|urban center (generic term)
+brigid|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+brigit|1
+(noun)|Brigit|Celtic deity (generic term)
+brigit nilsson|1
+(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano (generic term)
+brihaspati|1
+(noun)|Brihaspati|Hindu deity (generic term)
+brill|1
+(noun)|Scophthalmus rhombus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+brilliance|3
+(noun)|glare|blaze|brightness (generic term)
+(noun)|magnificence|splendor|splendour|grandeur|grandness|elegance (generic term)
+(noun)|genius|intelligence (generic term)
+brilliancy|1
+(noun)|luster|lustre|splendor|splendour|brightness (generic term)
+brilliant|6
+(adj)|superb|superior (similar term)
+(adj)|brainy|smart as a whip|intelligent (similar term)
+(adj)|glorious|magnificent|splendid|impressive (similar term)
+(adj)|bright|vivid|colorful (similar term)|colourful (similar term)
+(adj)|bright (similar term)
+(adj)|bright|reverberant (similar term)|ringing (similar term)
+brilliant pebble|1
+(noun)|heat-seeking missile (generic term)
+brilliantine|1
+(noun)|pomade (generic term)|pomatum (generic term)
+brilliantly|1
+(adv)|brightly|bright
+brim|4
+(noun)|rim|lip|edge (generic term)
+(noun)|projection (generic term)
+(verb)|have (generic term)|feature (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+brim over|1
+(verb)|overflow|overrun|well over|run over|spill (generic term)|run out (generic term)
+brimful|1
+(adj)|brimfull|brimming|full (similar term)
+brimfull|1
+(adj)|brimful|brimming|full (similar term)
+brimless|1
+(adj)|projection (related term)
+brimming|1
+(adj)|brimful|brimfull|full (similar term)
+brimstone|1
+(noun)|native sulfur|native sulphur|sulfur (generic term)|S (generic term)|sulphur (generic term)|atomic number 16 (generic term)
+brinded|1
+(adj)|brindled|brindle|tabby|patterned (similar term)
+brindisi|1
+(noun)|Brindisi|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+brindle|1
+(adj)|brindled|brinded|tabby|patterned (similar term)
+brindled|1
+(adj)|brindle|brinded|tabby|patterned (similar term)
+brine|3
+(noun)|seawater|saltwater|water (generic term)|H2O (generic term)|fresh water (antonym)
+(noun)|solution (generic term)
+(verb)|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+brine-cured|1
+(adj)|salted|salt-cured|preserved (similar term)
+brine shrimp|1
+(noun)|Artemia salina|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+brinell number|1
+(noun)|Brinell number|unit of measurement (generic term)|unit (generic term)
+bring|10
+(verb)|convey|take|transport (generic term)|carry (generic term)|bring forward (related term)|bring down (related term)|bring down (related term)|bring up (related term)|bring on (related term)|bring out (related term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|bring together (related term)|bring out (related term)
+(verb)|work|play|wreak|make for|make (generic term)|create (generic term)|bring on (related term)|bring off (related term)|bring up (related term)
+(verb)|get|convey|fetch|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|take away (antonym)
+(verb)|land|change (generic term)|alter (generic term)|modify (generic term)|bring down (related term)|bring up (related term)
+(verb)|lend|impart|bestow|contribute|add|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|institute|make (generic term)|create (generic term)
+(verb)|fetch|bring in
+(verb)|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+bring about|2
+(verb)|turn (generic term)
+(verb)|produce|give rise|make (generic term)|create (generic term)
+bring around|3
+(verb)|bring round|persuade (generic term)
+(verb)|cure|heal|help (generic term)|aid (generic term)
+(verb)|bring to|bring back|bring round|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)|anesthetize (antonym)
+bring back|2
+(verb)|return|take back|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|bring to|bring round|bring around|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)|anesthetize (antonym)
+bring down|6
+(verb)|lower|take down|let down|get down|move (generic term)|displace (generic term)|raise (antonym)
+(verb)|overthrow|subvert|overturn|depose (generic term)|force out (generic term)
+(verb)|inflict|visit|impose|communicate (generic term)|intercommunicate (generic term)
+(verb)|land|put down|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|enthuse (generic term)
+(verb)|reduce|cut down|cut back|trim|trim down|trim back|cut|decrease (generic term)|lessen (generic term)|minify (generic term)
+bring forth|4
+(verb)|generate|make (generic term)|create (generic term)
+(verb)|produce|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|produce|make (generic term)|create (generic term)
+(verb)|beget|get|engender|father|mother|sire|generate|make (generic term)|create (generic term)
+bring forward|2
+(verb)|advance|move (generic term)|displace (generic term)|back (antonym)
+(verb)|call up|raise (generic term)
+bring home|2
+(verb)|show (generic term)|demo (generic term)|exhibit (generic term)|present (generic term)|demonstrate (generic term)
+(verb)|take home|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+bring home the bacon|2
+(verb)|succeed|win|come through|deliver the goods|fail (antonym)
+(verb)|provide|support (generic term)
+bring in|5
+(verb)|introduce
+(verb)|gain|take in|clear|make|earn|realize|realise|pull in|get (generic term)|acquire (generic term)
+(verb)|fetch|bring
+(verb)|present (generic term)|submit (generic term)
+(verb)|conduct (generic term)|transmit (generic term)|convey (generic term)|carry (generic term)|channel (generic term)
+bring off|1
+(verb)|pull off|negociate|carry off|manage|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+bring on|2
+(verb)|induce|generate (generic term)|bring forth (generic term)
+(verb)|produce|bring out
+bring oneself|1
+(verb)|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+bring out|9
+(verb)|uncover|unveil|reveal|show (generic term)
+(verb)|let out|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+(verb)|publish|put out|issue|release|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|set off|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|produce|bring on
+(verb)|encourage (generic term)
+(verb)|get out|unpack (generic term)|take out (generic term)
+(verb)|introduce|introduce (generic term)|present (generic term)|acquaint (generic term)
+(verb)|unwrap|disclose|let on|reveal|discover|expose|divulge|impart|break|give away|let out|tell (generic term)
+bring outside|1
+(verb)|exteriorize|move (generic term)|displace (generic term)
+bring round|2
+(verb)|bring around|persuade (generic term)
+(verb)|bring to|bring back|bring around|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)|anesthetize (antonym)
+bring through|1
+(verb)|save|carry through|pull through
+bring to|1
+(verb)|bring back|bring round|bring around|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)|anesthetize (antonym)
+bring to bear|1
+(verb)|effect (generic term)
+bring together|2
+(verb)|join|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|disjoin (antonym)
+(verb)|bond|draw together|unite (generic term)|unify (generic term)
+bring up|8
+(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|put forward|call forth|make (generic term)|create (generic term)
+(verb)|rear|raise|nurture|parent
+(verb)|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+(verb)|raise|lift|elevate|get up|move (generic term)|displace (generic term)|lift up (related term)|lower (antonym)
+(verb)|stop (generic term)
+(verb)|raise|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|mention|advert|cite|name|refer|think of (generic term)|have in mind (generic term)|mean (generic term)
+(verb)|boot|reboot|resuscitate (generic term)|revive (generic term)
+bringing|1
+(noun)|delivery|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+bringing close together|1
+(noun)|approximation|joining (generic term)|connection (generic term)|connexion (generic term)
+bringing up|1
+(noun)|breeding|fostering|fosterage|nurture|raising|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+brininess|1
+(noun)|salinity|saltiness (generic term)
+brinjal|1
+(noun)|eggplant|aubergine|eggplant bush|garden egg|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+brink|3
+(noun)|threshold|verge|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|edge (generic term)|border (generic term)
+(noun)|verge|limit (generic term)|bound (generic term)|boundary (generic term)
+brinkmanship|1
+(noun)|foreign policy (generic term)
+brinton|1
+(noun)|Brinton|Daniel Garrison Brinton|anthropologist (generic term)
+briny|2
+(adj)|brackish|salty (similar term)
+(noun)|main|body of water (generic term)|water (generic term)
+brio|1
+(noun)|animation|spiritedness|invigoration|vivification|activeness (generic term)|activity (generic term)
+brioche|1
+(noun)|bun (generic term)|roll (generic term)
+briony|1
+(noun)|bryony|vine (generic term)
+brioschi|1
+(noun)|Brioschi|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+briquet|1
+(noun)|briquette|block (generic term)
+briquette|1
+(noun)|briquet|block (generic term)
+bris|1
+(noun)|Berith|Berit|Brith|Bris|Briss|circumcision (generic term)
+brisance|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+brisant|1
+(adj)|consequence|effect|outcome|result|event|issue|upshot (related term)
+brisbane|1
+(noun)|Brisbane|state capital (generic term)
+brisbane quandong|1
+(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree (generic term)
+brisk|4
+(adj)|lively|merry|rattling|snappy|spanking|zippy|energetic (similar term)
+(adj)|bracing|energizing|energising|fresh|refreshing|refreshful|tonic|invigorating (similar term)
+(adj)|active (similar term)
+(verb)|brisk up|brisken|accelerate (generic term)|speed up (generic term)|speed (generic term)|quicken (generic term)
+brisk up|1
+(verb)|brisk|brisken|accelerate (generic term)|speed up (generic term)|speed (generic term)|quicken (generic term)
+brisken|1
+(verb)|brisk|brisk up|accelerate (generic term)|speed up (generic term)|speed (generic term)|quicken (generic term)
+brisket|1
+(noun)|cut (generic term)|cut of meat (generic term)
+briskness|1
+(noun)|alacrity|smartness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+brisling|2
+(noun)|sprat|herring (generic term)
+(noun)|sprat|Clupea sprattus|sardine (generic term)
+briss|1
+(noun)|Berith|Berit|Brith|Bris|Briss|circumcision (generic term)
+bristle|5
+(noun)|fiber (generic term)|fibre (generic term)
+(noun)|hair (generic term)
+(verb)|abound|burst|have (generic term)|feature (generic term)
+(verb)|uprise|stand up
+(verb)|react (generic term)|respond (generic term)
+bristle-pointed|1
+(adj)|pointed (similar term)
+bristle at|1
+(verb)|bridle at|bridle up|bristle up|mind (generic term)
+bristle brush|1
+(noun)|brush (generic term)
+bristle fern|1
+(noun)|filmy fern|fern (generic term)
+bristle grass|1
+(noun)|bristlegrass|foxtail (generic term)|foxtail grass (generic term)
+bristle up|1
+(verb)|bristle at|bridle at|bridle up|mind (generic term)
+bristlecone fir|1
+(noun)|Santa Lucia fir|Abies bracteata|Abies venusta|fir (generic term)|fir tree (generic term)|true fir (generic term)
+bristlecone pine|1
+(noun)|Rocky Mountain bristlecone pine|Pinus aristata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+bristled|1
+(adj)|barbed|barbellate|briary|briery|bristly|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+bristlegrass|1
+(noun)|bristle grass|foxtail (generic term)|foxtail grass (generic term)
+bristlelike|1
+(adj)|armed (similar term)
+bristletail|1
+(noun)|thysanuran insect (generic term)|thysanuron (generic term)
+bristliness|1
+(noun)|prickliness|spininess|thorniness|roughness (generic term)|raggedness (generic term)
+bristly|2
+(adj)|prickly|splenetic|waspish|ill-natured (similar term)
+(adj)|barbed|barbellate|briary|briery|bristled|burred|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+bristly locust|1
+(noun)|rose acacia|moss locust|Robinia hispida|shrub (generic term)|bush (generic term)
+bristly oxtongue|1
+(noun)|oxtongue|bitterweed|bugloss|Picris echioides|weed (generic term)
+bristly sarsaparilla|1
+(noun)|bristly sarsparilla|dwarf elder|Aralia hispida|subshrub (generic term)|suffrutex (generic term)
+bristly sarsparilla|1
+(noun)|bristly sarsaparilla|dwarf elder|Aralia hispida|subshrub (generic term)|suffrutex (generic term)
+bristol|1
+(noun)|Bristol|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+bristol channel|1
+(noun)|Bristol Channel|inlet (generic term)|recess (generic term)
+brit|3
+(noun)|Britisher|Briton|Brit|European (generic term)
+(noun)|britt|young fish (generic term)
+(noun)|britt|copepod (generic term)|copepod crustacean (generic term)
+britain|1
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+britannia metal|1
+(noun)|Britannia metal|alloy (generic term)|metal (generic term)
+britannic|1
+(adj)|Britannic|nation|land|country (related term)
+britches|1
+(noun)|breeches (generic term)|knee breeches (generic term)|knee pants (generic term)|knickerbockers (generic term)|knickers (generic term)
+brith|1
+(noun)|Berith|Berit|Brith|Bris|Briss|circumcision (generic term)
+briticism|1
+(noun)|Anglicism|Briticism|Britishism|formulation (generic term)|expression (generic term)
+british|2
+(adj)|British|island (related term)
+(noun)|British|British people|Brits|nation (generic term)|land (generic term)|country (generic term)
+british cabinet|1
+(noun)|British Cabinet|cabinet (generic term)
+british capacity unit|1
+(noun)|British capacity unit|Imperial capacity unit|liquid unit (generic term)|liquid measure (generic term)|dry unit (generic term)|dry measure (generic term)
+british capital|1
+(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital (generic term)
+british columbia|1
+(noun)|British Columbia|Canadian province (generic term)
+british commonwealth|1
+(noun)|British Commonwealth|Commonwealth of Nations|commonwealth (generic term)
+british crown|1
+(noun)|British Crown|Crown (generic term)
+british empire|1
+(noun)|British Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+british empiricism|1
+(noun)|British empiricism|empiricism (generic term)|empiricist philosophy (generic term)|sensationalism (generic term)
+british guiana|1
+(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country (generic term)|South American nation (generic term)
+british honduras|1
+(noun)|Belize|British Honduras|Central American country (generic term)|Central American nation (generic term)
+british house of commons|1
+(noun)|House of Commons|British House of Commons|house (generic term)
+british house of lords|1
+(noun)|House of Lords|British House of Lords|house (generic term)
+british imperial system|1
+(noun)|British Imperial System|English system|British system|system of weights and measures (generic term)
+british isles|1
+(noun)|British Isles|island (generic term)
+british monetary unit|1
+(noun)|British monetary unit|monetary unit (generic term)
+british parliament|1
+(noun)|British Parliament|parliament (generic term)
+british people|1
+(noun)|British|British people|Brits|nation (generic term)|land (generic term)|country (generic term)
+british pound|1
+(noun)|British pound|pound|British pound sterling|pound sterling|quid|British monetary unit (generic term)
+british pound sterling|1
+(noun)|British pound|pound|British pound sterling|pound sterling|quid|British monetary unit (generic term)
+british shilling|1
+(noun)|British shilling|shilling|bob|British monetary unit (generic term)
+british system|1
+(noun)|British Imperial System|English system|British system|system of weights and measures (generic term)
+british thermal unit|1
+(noun)|British thermal unit|BTU|B.Th.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+british virgin islands|1
+(noun)|British Virgin Islands|possession (generic term)
+britisher|1
+(noun)|Britisher|Briton|Brit|European (generic term)
+britishism|2
+(noun)|Anglicism|Briticism|Britishism|formulation (generic term)|expression (generic term)
+(noun)|Anglicism|Britishism|custom (generic term)|usage (generic term)|usance (generic term)
+briton|3
+(adj)|Briton|Celt|Kelt (related term)
+(noun)|Britisher|Briton|Brit|European (generic term)
+(noun)|Briton|Celt (generic term)|Kelt (generic term)
+brits|1
+(noun)|British|British people|Brits|nation (generic term)|land (generic term)|country (generic term)
+britt|2
+(noun)|brit|young fish (generic term)
+(noun)|brit|copepod (generic term)|copepod crustacean (generic term)
+brittanic|1
+(noun)|Brythonic|Brittanic|Celtic (generic term)|Celtic language (generic term)
+brittany|1
+(noun)|Bretagne|Brittany|Breiz|French region (generic term)
+brittany spaniel|1
+(noun)|Brittany spaniel|spaniel (generic term)
+britten|1
+(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+brittle|4
+(adj)|brickle|brickly|breakable (similar term)
+(adj)|coldhearted (similar term)
+(adj)|unannealed|untempered (similar term)|unhardened (similar term)
+(noun)|toffee|toffy|candy (generic term)|confect (generic term)
+brittle-star|1
+(noun)|brittle star|serpent star|echinoderm (generic term)
+brittle bladder fern|1
+(noun)|brittle fern|fragile fern|Cystopteris fragilis|bladder fern (generic term)
+brittle bush|1
+(noun)|brittlebush|incienso|Encelia farinosa|wildflower (generic term)|wild flower (generic term)
+brittle fern|1
+(noun)|brittle bladder fern|fragile fern|Cystopteris fragilis|bladder fern (generic term)
+brittle maidenhair|1
+(noun)|brittle maidenhair fern|Adiantum tenerum|maidenhair (generic term)|maidenhair fern (generic term)
+brittle maidenhair fern|1
+(noun)|brittle maidenhair|Adiantum tenerum|maidenhair (generic term)|maidenhair fern (generic term)
+brittle star|1
+(noun)|brittle-star|serpent star|echinoderm (generic term)
+brittle willow|1
+(noun)|crack willow|snap willow|Salix fragilis|willow (generic term)|willow tree (generic term)
+brittlebush|1
+(noun)|brittle bush|incienso|Encelia farinosa|wildflower (generic term)|wild flower (generic term)
+brittleness|1
+(noun)|crispness|crispiness|breakableness (generic term)
+brix scale|1
+(noun)|Brix scale|system of measurement (generic term)|metric (generic term)
+brno|1
+(noun)|Brno|Brunn|city (generic term)|metropolis (generic term)|urban center (generic term)
+broach|2
+(noun)|brooch|breastpin|pin (generic term)
+(verb)|initiate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+broached|1
+(adj)|abroach|tapped (similar term)
+broad|9
+(adj)|wide|beamy (similar term)|bird's-eye (similar term)|panoramic (similar term)|broad-brimmed (similar term)|deep (similar term)|fanlike (similar term)|sweeping (similar term)|wide-screen (similar term)|comprehensive (related term)|thick (related term)|narrow (antonym)
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|encompassing|extensive|panoptic|wide|comprehensive (similar term)
+(adj)|unspecific|general (similar term)
+(adj)|unsubtle|clear (similar term)
+(adj)|full|high (similar term)
+(adj)|spacious|wide|large (similar term)|big (similar term)
+(adj)|noticeable (similar term)
+(adj)|large-minded|liberal|tolerant|broad-minded (similar term)
+(noun)|woman (generic term)|adult female (generic term)
+broad-bean|1
+(noun)|broad bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+broad-bean plant|1
+(noun)|broad bean|broad-bean|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+broad-brimmed|1
+(adj)|wide (similar term)|broad (similar term)
+broad-headed|1
+(adj)|roundheaded|short-headed|brachycephalic (similar term)|brachycranial (similar term)|brachycranic (similar term)
+broad-leafed|1
+(adj)|broadleaf|broad-leaved|deciduous (similar term)
+broad-leaved|1
+(adj)|broadleaf|broad-leafed|deciduous (similar term)
+broad-leaved bottletree|1
+(noun)|flame tree|Brachychiton australis|bottle-tree (generic term)|bottle tree (generic term)
+broad-leaved dock|1
+(noun)|bitter dock|yellow dock|Rumex obtusifolius|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+broad-leaved everlasting pea|1
+(noun)|perennial pea|Lathyrus latifolius|everlasting pea (generic term)
+broad-leaved montia|1
+(noun)|Montia cordifolia|Indian lettuce (generic term)
+broad-leaved plantain|2
+(noun)|rugel's plantain|Plantago rugelii|plantain (generic term)
+(noun)|common plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain (generic term)
+broad-leaved twayblade|1
+(noun)|Listera convallarioides|orchid (generic term)|orchidaceous plant (generic term)
+broad-minded|2
+(adj)|unshockable|shockable (antonym)
+(adj)|broad (similar term)|large-minded (similar term)|liberal (similar term)|tolerant (similar term)|catholic (similar term)|free-thinking (similar term)|latitudinarian (similar term)|undogmatic (similar term)|undogmatical (similar term)|open-minded (similar term)|narrow-minded (antonym)
+broad-mindedly|1
+(adv)|narrow-mindedly (antonym)
+broad-mindedness|1
+(noun)|tolerance (generic term)|narrow-mindedness (antonym)
+broad-shouldered|1
+(adj)|big-shouldered|square-shouldered|robust (similar term)
+broad arrow|3
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|mark (generic term)
+(noun)|arrow (generic term)
+broad bean|4
+(noun)|fava bean|horsebean|bean (generic term)
+(noun)|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+(noun)|horse bean|fodder (generic term)
+(noun)|fava bean|shell bean (generic term)
+broad beech fern|1
+(noun)|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern (generic term)
+broad buckler-fern|1
+(noun)|Dryopteris dilatata|shield fern (generic term)|buckler fern (generic term)
+broad gauge|1
+(noun)|railroad track (generic term)|railroad (generic term)|railway (generic term)|gauge (generic term)
+broad hatchet|1
+(noun)|hatchet (generic term)
+broad interpretation|1
+(noun)|judicial activism|interpretation (generic term)|interpreting (generic term)|rendition (generic term)|rendering (generic term)
+broad jump|2
+(noun)|long jump|field event (generic term)
+(noun)|long jump|jumping (generic term)
+broad leaved centaury|1
+(noun)|centaury (generic term)
+broad leaved goldenrod|1
+(noun)|zigzag goldenrod|goldenrod (generic term)
+broadax|1
+(noun)|broadaxe|ax (generic term)|axe (generic term)
+broadaxe|1
+(noun)|broadax|ax (generic term)|axe (generic term)
+broadband|2
+(adj)|system (related term)
+(adj)|wideband|band (related term)
+broadbill|4
+(noun)|boatbill|boat-billed heron|Cochlearius cochlearius|heron (generic term)
+(noun)|scaup|scaup duck|bluebill|duck (generic term)
+(noun)|shoveler|shoveller|Anas clypeata|duck (generic term)
+(noun)|passerine (generic term)|passeriform bird (generic term)
+broadcast|5
+(noun)|message (generic term)
+(noun)|program|programme|show (generic term)
+(verb)|air|send|beam|transmit|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|sow (generic term)|sough (generic term)|seed (generic term)
+(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+broadcast area|1
+(noun)|area (generic term)|country (generic term)
+broadcast journalist|1
+(noun)|broadcaster (generic term)|journalist (generic term)
+broadcast medium|1
+(noun)|broadcasting|medium (generic term)|mass medium (generic term)
+broadcaster|2
+(noun)|communicator (generic term)
+(noun)|spreader|mechanical device (generic term)
+broadcasting|2
+(noun)|broadcast medium|medium (generic term)|mass medium (generic term)
+(noun)|telecommunication (generic term)|telecom (generic term)
+broadcasting company|1
+(noun)|company (generic term)
+broadcasting studio|1
+(noun)|studio (generic term)
+broadcloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+broaden|4
+(verb)|widen (generic term)|broaden (generic term)|extend (generic term)
+(verb)|widen|extend|increase (generic term)
+(verb)|diversify|branch out|change (generic term)|alter (generic term)|vary (generic term)|specialize (antonym)|specialise (antonym)
+(verb)|increase (generic term)
+broadening|3
+(noun)|widening|change of shape (generic term)|narrowing (antonym)
+(noun)|development (generic term)
+(noun)|widening|increase (generic term)|increment (generic term)|growth (generic term)|narrowing (antonym)
+broadleaf|1
+(adj)|broad-leafed|broad-leaved|deciduous (similar term)
+broadloom|2
+(adj)|seamless (similar term)
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+broadly|1
+(adv)|loosely|broadly speaking|generally|narrowly (antonym)
+broadly speaking|1
+(adv)|broadly|loosely|generally|narrowly (antonym)
+broadness|1
+(noun)|wideness|width (generic term)|breadth (generic term)|narrowness (antonym)
+broadnosed|1
+(adj)|platyrrhine|platyrrhinian|platyrhine|platyrhinian|platyrrhinic|catarrhine (antonym)|leptorrhine (antonym)
+broadsheet|1
+(noun)|circular|handbill|bill|broadside|flier|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+broadside|7
+(adj)|side (similar term)
+(noun)|circular|handbill|bill|broadsheet|flier|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|tirade|philippic|denunciation (generic term)|denouncement (generic term)|declamation (generic term)
+(noun)|armament (generic term)
+(noun)|side (generic term)
+(noun)|fire (generic term)|firing (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+broadsword|1
+(noun)|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+broadtail|2
+(noun)|lambskin (generic term)
+(noun)|caracul|karakul|domestic sheep (generic term)|Ovis aries (generic term)
+broadway|1
+(noun)|Broadway|Great White Way|street (generic term)
+broadwise|1
+(adv)|breadthwise|breadthways
+brobdingnag|1
+(noun)|Brobdingnag|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+brobdingnagian|2
+(adj)|Brobdingnagian|imaginary place|mythical place|fictitious place (related term)
+(adj)|huge|immense|vast|Brobdingnagian|large (similar term)|big (similar term)
+broca|1
+(noun)|Broca|Pierre-Paul Broca|anthropologist (generic term)
+broca's aphasia|1
+(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|expressive aphasia|nonfluent aphasia|aphasia (generic term)
+broca's area|1
+(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+broca's center|1
+(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+broca's convolution|1
+(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+broca's gyrus|1
+(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+brocade|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|weave (generic term)|tissue (generic term)
+brocaded|1
+(adj)|embossed|raised|adorned (similar term)|decorated (similar term)
+brocadopa|1
+(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa (generic term)|dihydroxyphenylalanine (generic term)
+broccoli|2
+(noun)|Brassica oleracea italica|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|cruciferous vegetable (generic term)
+broccoli raab|2
+(noun)|broccoli rabe|Brassica rapa ruvo|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|broccoli rabe|cruciferous vegetable (generic term)
+broccoli rabe|2
+(noun)|broccoli raab|Brassica rapa ruvo|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|broccoli raab|cruciferous vegetable (generic term)
+brochette|1
+(noun)|spit (generic term)
+brochure|1
+(noun)|booklet|folder|leaflet|pamphlet|book (generic term)
+brocket|2
+(noun)|deer (generic term)|cervid (generic term)
+(noun)|red deer (generic term)|Cervus elaphus (generic term)
+brockhouse|1
+(noun)|Brockhouse|Bertram Brockhouse|physicist (generic term)
+brodiaea|1
+(noun)|liliaceous plant (generic term)
+brodiaea elegans|1
+(noun)|elegant brodiaea|Brodiaea elegans|brodiaea (generic term)
+brodmann's area|1
+(noun)|Brodmann's area|cortical area (generic term)|cortical region (generic term)
+brogan|1
+(noun)|brogue|clodhopper|work shoe|shoe (generic term)
+broglie|1
+(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist (generic term)
+brogue|1
+(noun)|brogan|clodhopper|work shoe|shoe (generic term)
+broider|1
+(verb)|embroider|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+broil|3
+(noun)|broiling|grilling|cooking (generic term)|cookery (generic term)|preparation (generic term)
+(verb)|oven broil|grill (generic term)
+(verb)|bake|heat (generic term)|heat up (generic term)
+broiled|1
+(adj)|grilled|cooked (similar term)
+broiler|2
+(noun)|oven (generic term)
+(noun)|chicken (generic term)|poulet (generic term)|volaille (generic term)
+broiling|1
+(noun)|broil|grilling|cooking (generic term)|cookery (generic term)|preparation (generic term)
+broke|1
+(adj)|bust|skint|stone-broke|stony-broke|poor (similar term)
+broken|13
+(adj)|damaged (related term)|imperfect (related term)|injured (related term)|unsound (related term)|unbroken (antonym)
+(adj)|broken-field (similar term)|dashed (similar term)|dotted (similar term)|fitful (similar term)|interrupted (similar term)|off-and-on (similar term)|halting (similar term)|discontinuous (related term)|noncontinuous (related term)|unbroken (antonym)
+(adj)|crushed|humbled|humiliated|low|humble (similar term)
+(adj)|unkept|unbroken (antonym)
+(adj)|broken in|tame (similar term)|tamed (similar term)
+(adj)|rugged|rough (similar term)|unsmooth (similar term)
+(adj)|imperfect (similar term)
+(adj)|confused|disordered|upset|disorganized (similar term)|disorganised (similar term)
+(adj)|impaired (similar term)
+(adj)|wiped out|impoverished|destroyed (similar term)
+(adj)|busted|damaged (similar term)
+(adj)|distributed (similar term)
+(adj)|incomplete (similar term)|uncomplete (similar term)
+broken-backed|3
+(adj)|damaged (similar term)
+(adj)|unfit (similar term)
+(adj)|hogged|convex (similar term)|bulging (similar term)
+broken-down|2
+(adj)|bedraggled|derelict|dilapidated|ramshackle|tatterdemalion|tumble-down|damaged (similar term)
+(adj)|unserviceable (similar term)
+broken-field|1
+(adj)|broken (similar term)
+broken arch|1
+(noun)|arch (generic term)
+broken heart|1
+(noun)|sorrow (generic term)
+broken home|1
+(noun)|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+broken in|1
+(adj)|broken|tame (similar term)|tamed (similar term)
+broken wind|1
+(noun)|heaves|animal disease (generic term)
+brokenhearted|1
+(adj)|heartbroken|heartsick|sorrowful (similar term)
+brokenheartedness|1
+(noun)|grief|heartache|heartbreak|sorrow (generic term)
+broker|2
+(noun)|agent|factor|businessperson (generic term)|bourgeois (generic term)
+(verb)|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+broker-dealer|1
+(noun)|principal (generic term)|dealer (generic term)
+brokerage|3
+(noun)|brokerage firm|securities firm|nondepository financial institution (generic term)
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|brokerage house|workplace (generic term)|work (generic term)
+brokerage account|1
+(noun)|account (generic term)|business relationship (generic term)
+brokerage firm|1
+(noun)|brokerage|securities firm|nondepository financial institution (generic term)
+brokerage house|1
+(noun)|brokerage|workplace (generic term)|work (generic term)
+brolly|1
+(noun)|gamp|umbrella (generic term)
+bromate|2
+(verb)|brominate|react (generic term)
+(verb)|brominate|process (generic term)|treat (generic term)
+bromberg|1
+(noun)|Bydgoszcz|Bromberg|city (generic term)|metropolis (generic term)|urban center (generic term)
+brome|1
+(noun)|bromegrass|grass (generic term)
+bromegrass|1
+(noun)|brome|grass (generic term)
+bromelia|1
+(noun)|Bromelia|monocot genus (generic term)|liliopsid genus (generic term)
+bromeliaceae|1
+(noun)|Bromeliaceae|family Bromeliaceae|pineapple family|monocot family (generic term)|liliopsid family (generic term)
+bromeosin|1
+(noun)|eosin|fluorescein (generic term)|fluoresceine (generic term)|fluorescent dye (generic term)|resorcinolphthalein (generic term)
+bromic|1
+(adj)|chemical element|element|halogen (related term)
+bromic acid|1
+(noun)|acid (generic term)
+bromide|2
+(noun)|halide (generic term)
+(noun)|platitude|cliche|banality|commonplace|remark (generic term)|comment (generic term)|truism (generic term)
+bromidic|2
+(adj)|remark|comment|truism (related term)
+(adj)|corny|platitudinal|platitudinous|unoriginal (similar term)
+brominate|2
+(verb)|bromate|react (generic term)
+(verb)|bromate|process (generic term)|treat (generic term)
+bromine|1
+(noun)|Br|atomic number 35|chemical element (generic term)|element (generic term)|halogen (generic term)
+bromo-seltzer|1
+(noun)|Bromo-seltzer|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+bromoform|1
+(noun)|tribromomethane|haloform (generic term)
+bromophenol blue|1
+(noun)|bromphenol blue|tetrabromo-phenolsulfonephthalein|dye (generic term)|dyestuff (generic term)|acid-base indicator (generic term)
+bromothymol blue|1
+(noun)|bromthymol blue|dye (generic term)|dyestuff (generic term)|acid-base indicator (generic term)
+brompheniramine maleate|1
+(noun)|Dimetane|antihistamine (generic term)
+bromphenol blue|1
+(noun)|bromophenol blue|tetrabromo-phenolsulfonephthalein|dye (generic term)|dyestuff (generic term)|acid-base indicator (generic term)
+brompton stock|1
+(noun)|Matthiola incana|stock (generic term)|gillyflower (generic term)
+bromthymol blue|1
+(noun)|bromothymol blue|dye (generic term)|dyestuff (generic term)|acid-base indicator (generic term)
+bromus|1
+(noun)|Bromus|genus Bromus|monocot genus (generic term)|liliopsid genus (generic term)
+bromus arvensis|1
+(noun)|field brome|Bromus arvensis|brome (generic term)|bromegrass (generic term)
+bromus inermis|1
+(noun)|awnless bromegrass|Bromus inermis|brome (generic term)|bromegrass (generic term)
+bromus japonicus|1
+(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome (generic term)|bromegrass (generic term)
+bromus secalinus|1
+(noun)|chess|cheat|Bromus secalinus|brome (generic term)|bromegrass (generic term)
+bromus tectorum|1
+(noun)|downy brome|downy bromegrass|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+bronc|1
+(noun)|bronco|broncho|mustang (generic term)
+bronchial|1
+(adj)|cartilaginous tube (related term)
+bronchial artery|1
+(noun)|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+bronchial asthma|1
+(noun)|asthma|asthma attack|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+bronchial pneumonia|1
+(noun)|bronchopneumonia|pneumonia (generic term)
+bronchial tube|1
+(noun)|bronchus|cartilaginous tube (generic term)
+bronchial vein|1
+(noun)|vena bronchialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+bronchiolar|1
+(adj)|duct|epithelial duct|canal|channel (related term)
+bronchiole|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+bronchiolitis|1
+(noun)|bronchitis (generic term)
+bronchitic|1
+(adj)|ill (similar term)|sick (similar term)
+bronchitis|1
+(noun)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+broncho|1
+(noun)|bronco|bronc|mustang (generic term)
+bronchodilator|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+bronchopneumonia|1
+(noun)|bronchial pneumonia|pneumonia (generic term)
+bronchoscope|1
+(noun)|medical instrument (generic term)
+bronchoscopic|1
+(adj)|medical instrument (related term)
+bronchoscopic smear|1
+(noun)|lower respiratory tract smear|sputum smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+bronchospasm|1
+(noun)|spasm (generic term)
+bronchus|1
+(noun)|bronchial tube|cartilaginous tube (generic term)
+bronco|1
+(noun)|bronc|broncho|mustang (generic term)
+bronco buster|1
+(noun)|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+bronco busting|1
+(noun)|riding (generic term)|horseback riding (generic term)
+broncobuster|1
+(noun)|buster|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+bronislaw kasper malinowski|1
+(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist (generic term)
+bronislaw malinowski|1
+(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist (generic term)
+bronte|3
+(noun)|Bronte|Anne Bronte|writer (generic term)|author (generic term)
+(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer (generic term)|author (generic term)
+(noun)|Bronte|Charlotte Bronte|writer (generic term)|author (generic term)
+bronte sisters|1
+(noun)|Bronte sisters|family (generic term)|family unit (generic term)
+brontosaur|1
+(noun)|apatosaur|apatosaurus|brontosaurus|thunder lizard|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+brontosaurus|1
+(noun)|apatosaur|apatosaurus|brontosaur|thunder lizard|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+bronx|1
+(noun)|Bronx|borough (generic term)
+bronx-whitestone bridge|1
+(noun)|Bronx-Whitestone Bridge|suspension bridge (generic term)
+bronx cheer|1
+(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+bronze|6
+(adj)|bronzy|chromatic (similar term)
+(adj)|metallic (similar term)|metal (similar term)
+(noun)|copper-base alloy (generic term)
+(noun)|sculpture (generic term)
+(verb)|dye (generic term)
+(verb)|tan|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+bronze-red|1
+(adj)|chromatic (similar term)
+bronze age|2
+(noun)|Bronze Age|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+bronze medal|1
+(noun)|trophy (generic term)|prize (generic term)
+bronze star|1
+(noun)|Bronze Star Medal|Bronze Star|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+bronze star medal|1
+(noun)|Bronze Star Medal|Bronze Star|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+bronzed|1
+(adj)|suntanned|tanned|brunet (similar term)|brunette (similar term)
+bronzed diabetes|1
+(noun)|hemochromatosis|iron-storage disease|iron overload|pathology (generic term)
+bronzy|1
+(adj)|bronze|chromatic (similar term)
+brooch|2
+(noun)|broach|breastpin|pin (generic term)
+(verb)|clasp|fasten (generic term)|fix (generic term)|secure (generic term)
+brood|6
+(noun)|animal group (generic term)
+(verb)|dwell|worry (generic term)|care (generic term)|dwell on (related term)
+(verb)|hover|loom|bulk large|hang (generic term)
+(verb)|sulk|pout
+(verb)|grizzle|stew|sulk (generic term)|pout (generic term)|brood (generic term)
+(verb)|hatch|cover|incubate|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+brood bitch|1
+(noun)|bitch (generic term)
+brood hen|1
+(noun)|broody|broody hen|setting hen|sitter|hen (generic term)|biddy (generic term)
+brooder|1
+(noun)|incubator|apparatus (generic term)|setup (generic term)
+brooder pneumonia|1
+(noun)|aspergillosis|animal disease (generic term)
+brooding|3
+(adj)|broody|contemplative|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful (similar term)
+(noun)|incubation|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|pensiveness|melancholy (generic term)
+broodmare|1
+(noun)|stud mare|mare (generic term)|female horse (generic term)
+broody|3
+(adj)|oviparous (similar term)
+(adj)|brooding|contemplative|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful (similar term)
+(noun)|brood hen|broody hen|setting hen|sitter|hen (generic term)|biddy (generic term)
+broody hen|1
+(noun)|brood hen|broody|setting hen|sitter|hen (generic term)|biddy (generic term)
+brook|2
+(noun)|creek|stream (generic term)|watercourse (generic term)
+(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+brook thistle|1
+(noun)|Cirsium rivulare|plume thistle (generic term)|plumed thistle (generic term)
+brook trout|2
+(noun)|speckled trout|freshwater fish (generic term)
+(noun)|speckled trout|Salvelinus fontinalis|trout (generic term)
+brooke|1
+(noun)|Brooke|Rupert Brooke|poet (generic term)
+brooklet|1
+(noun)|brook (generic term)|creek (generic term)
+brooklime|2
+(noun)|European brooklime|Veronica beccabunga|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|American brooklime|Veronica americana|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+brooklyn|1
+(noun)|Brooklyn|borough (generic term)
+brooklyn bridge|1
+(noun)|Brooklyn Bridge|suspension bridge (generic term)
+brooks|1
+(noun)|Brooks|Van Wyck Brooks|literary critic (generic term)
+brookweed|2
+(noun)|Samolus parviflorus|Samolus floribundus|water pimpernel (generic term)
+(noun)|Samolus valerandii|water pimpernel (generic term)
+broom|5
+(noun)|cleaning implement (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|heather|ling|Scots heather|Calluna vulgaris|heath (generic term)
+(verb)|sweep|wipe (generic term)|pass over (generic term)
+(verb)|finish (generic term)
+broom-weed|1
+(noun)|broomweed|Gutierrezia texana|matchweed (generic term)|matchbush (generic term)
+broom beard grass|1
+(noun)|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass (generic term)
+broom closet|1
+(noun)|cupboard (generic term)|closet (generic term)
+broom grass|1
+(noun)|grass (generic term)
+broom handle|1
+(noun)|broomstick|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+broom palm|1
+(noun)|thatch palm|thatch tree|silver thatch|Thrinax parviflora|fan palm (generic term)
+broom sedge|1
+(noun)|Andropogon virginicus|broom grass (generic term)
+broom snakeroot|1
+(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+broom snakeweed|1
+(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+broom tree|1
+(noun)|needle furze|petty whin|Genista anglica|broom (generic term)
+broomcorn|1
+(noun)|Sorghum vulgare technicum|sorghum (generic term)
+broomcorn millet|1
+(noun)|hog millet|Panicum miliaceum|panic grass (generic term)
+broomrape family|1
+(noun)|Orobanchaceae|family Orobanchaceae|dicot family (generic term)|magnoliopsid family (generic term)
+broomstick|1
+(noun)|broom handle|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+broomweed|1
+(noun)|broom-weed|Gutierrezia texana|matchweed (generic term)|matchbush (generic term)
+brosme brosme|1
+(noun)|cusk|torsk|Brosme brosme|gadoid (generic term)|gadoid fish (generic term)
+brosmius|1
+(noun)|Brosmius|genus Browmius|fish genus (generic term)
+broth|2
+(noun)|stock|soup (generic term)
+(noun)|soup (generic term)
+broth of a boy|1
+(noun)|broth of a man|boy (generic term)
+broth of a man|1
+(noun)|broth of a boy|boy (generic term)
+brothel|1
+(noun)|whorehouse|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+brothel keeper|1
+(noun)|madam|businesswoman (generic term)
+brother|5
+(noun)|blood brother|male sibling (generic term)|sister (antonym)
+(noun)|member (generic term)
+(noun)|buddy|chum|crony|pal|sidekick|friend (generic term)
+(noun)|comrade|friend (generic term)
+(noun)|Brother|monk (generic term)|monastic (generic term)
+brother-in-law|1
+(noun)|in-law (generic term)|relative-in-law (generic term)
+brotherhood|4
+(noun)|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|fraternity|sodality|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|friendliness (generic term)
+(noun)|union|labor union|trade union|trades union|organization (generic term)|organisation (generic term)
+brotherlike|1
+(adj)|brotherly|fraternal|sisterly (antonym)
+brotherly|1
+(adj)|brotherlike|fraternal|sisterly (antonym)
+brotherly love|1
+(noun)|charity|benevolence (generic term)|theological virtue (generic term)|supernatural virtue (generic term)
+brotula|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+brotulidae|1
+(noun)|Brotulidae|family Brotulidae|fish family (generic term)
+brougham|2
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|sedan (generic term)
+brought about|1
+(adj)|established (similar term)|constituted (similar term)
+brouhaha|2
+(noun)|hubbub|uproar|katzenjammer|noise (generic term)
+(noun)|furor (generic term)|furore (generic term)
+broussonetia|1
+(noun)|Broussonetia|genus Broussonetia|dicot genus (generic term)|magnoliopsid genus (generic term)
+broussonetia papyrifera|1
+(noun)|paper mulberry|Broussonetia papyrifera|angiospermous tree (generic term)|flowering tree (generic term)
+brow|3
+(noun)|forehead|feature (generic term)|lineament (generic term)
+(noun)|eyebrow|supercilium|hair (generic term)
+(noun)|hilltop|peak (generic term)|crown (generic term)|crest (generic term)|top (generic term)|tip (generic term)|summit (generic term)
+brow ptosis|1
+(noun)|ptosis (generic term)
+browallia|1
+(noun)|bush violet|flower (generic term)
+browbeat|2
+(verb)|strong-arm|bully|bullyrag|ballyrag|boss around|hector|push around|intimidate (generic term)
+(verb)|bully|swagger|wheedle (generic term)|cajole (generic term)|palaver (generic term)|blarney (generic term)|coax (generic term)|sweet-talk (generic term)|inveigle (generic term)
+browbeaten|1
+(adj)|bullied|cowed|hangdog|intimidated|afraid (similar term)
+brown|7
+(adj)|brownish|chocolate-brown|dark-brown|chromatic (similar term)
+(adj)|browned|brunet (similar term)|brunette (similar term)
+(noun)|brownness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|Brown|Robert Brown|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+(noun)|Brown|John Brown|abolitionist (generic term)|emancipationist (generic term)
+(noun)|Brown University|Brown|university (generic term)
+(verb)|cook (generic term)
+brown-black|1
+(adj)|brownish-black|achromatic (similar term)
+brown-gray|1
+(adj)|brown-grey|brownish-grey|brownish-gray|achromatic (similar term)
+brown-green|1
+(adj)|brownish-green|chromatic (similar term)
+brown-grey|1
+(adj)|brown-gray|brownish-grey|brownish-gray|achromatic (similar term)
+brown-haired|1
+(adj)|dark-haired|black-haired|brunet (similar term)|brunette (similar term)
+brown-nose|1
+(verb)|butter up|flatter (generic term)|blandish (generic term)
+brown-purple|1
+(adj)|brownish-purple|chromatic (similar term)
+brown-speckled|1
+(adj)|brownish-speckled|patterned (similar term)
+brown-striped|1
+(adj)|brownish-striped|patterned (similar term)
+brown-tail moth|1
+(noun)|browntail|Euproctis phaeorrhoea|lymantriid (generic term)|tussock moth (generic term)
+brown algae|1
+(noun)|alga (generic term)|algae (generic term)
+brown ash|1
+(noun)|black ash|basket ash|hoop ash|Fraxinus nigra|ash (generic term)|ash tree (generic term)
+brown bat|1
+(noun)|carnivorous bat (generic term)|microbat (generic term)
+brown bear|1
+(noun)|bruin|Ursus arctos|bear (generic term)
+brown bells|1
+(noun)|Fritillaria micrantha|Fritillaria parviflora|fritillary (generic term)|checkered lily (generic term)
+brown bent|1
+(noun)|velvet bent|velvet bent grass|Rhode Island bent|dog bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+brown betty|1
+(noun)|brown Betty|pudding (generic term)
+brown bread|2
+(noun)|dark bread|whole wheat bread|whole meal bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|Boston brown bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+brown bullhead|1
+(noun)|bullhead (generic term)
+brown butter|1
+(noun)|beurre noisette|butter (generic term)
+brown coal|1
+(noun)|lignite|wood coal|coal (generic term)|humate (generic term)
+brown creeper|1
+(noun)|American creeper|Certhia americana|creeper (generic term)|tree creeper (generic term)
+brown cup|1
+(noun)|sclerotinia (generic term)
+brown hickory|1
+(noun)|pignut|pignut hickory|black hickory|Carya glabra|hickory (generic term)|hickory tree (generic term)
+brown hyena|1
+(noun)|strand wolf|Hyaena brunnea|hyena (generic term)|hyaena (generic term)
+brown lacewing|1
+(noun)|hemerobiid|hemerobiid fly|lacewing (generic term)|lacewing fly (generic term)
+brown lemming|1
+(noun)|Lemmus trimucronatus|lemming (generic term)
+brown oak|1
+(noun)|red beech|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+brown onion sauce|1
+(noun)|Lyonnaise sauce|sauce (generic term)
+brown pine|1
+(noun)|Rockingham podocarp|Podocarpus elatus|conifer (generic term)|coniferous tree (generic term)
+brown rat|1
+(noun)|Norway rat|Rattus norvegicus|rat (generic term)
+brown rice|1
+(noun)|rice (generic term)
+brown root rot fungus|1
+(noun)|Thielavia basicola|fungus (generic term)
+brown rot|1
+(noun)|plant disease (generic term)
+brown rot gummosis|1
+(noun)|gummosis|brown rot (generic term)
+brown sauce|2
+(noun)|Chinese brown sauce|sauce (generic term)
+(noun)|sauce Espagnole|sauce (generic term)
+brown snail|1
+(noun)|Helix aspersa|garden snail (generic term)
+brown soft scale|1
+(noun)|Coccus hesperidum|soft scale (generic term)
+brown study|1
+(noun)|reverie (generic term)|revery (generic term)
+brown sugar|1
+(noun)|sugar (generic term)|refined sugar (generic term)
+brown swiss|1
+(noun)|Brown Swiss|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+brown thrasher|1
+(noun)|brown thrush|Toxostoma rufums|thrasher (generic term)|mocking thrush (generic term)
+brown thrush|1
+(noun)|brown thrasher|Toxostoma rufums|thrasher (generic term)|mocking thrush (generic term)
+brown trout|1
+(noun)|salmon trout|Salmo trutta|trout (generic term)
+brown university|1
+(noun)|Brown University|Brown|university (generic term)
+browne|2
+(noun)|Browne|Hablot Knight Browne|Phiz|illustrator (generic term)
+(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer (generic term)|author (generic term)
+browned|1
+(adj)|brown|brunet (similar term)|brunette (similar term)
+browned off|1
+(adj)|exasperated|cheesed off|displeased (similar term)
+brownian motion|1
+(noun)|Brownian movement|Brownian motion|pedesis|movement (generic term)|motion (generic term)
+brownian movement|1
+(noun)|Brownian movement|Brownian motion|pedesis|movement (generic term)|motion (generic term)
+brownie|3
+(noun)|Brownie|Girl Scout (generic term)
+(noun)|elf|hob|gremlin|pixie|pixy|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+brownie mix|1
+(noun)|ready-mix (generic term)
+browning|4
+(noun)|Browning|John M. Browning|John Moses Browning|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Browning|Robert Browning|poet (generic term)
+(noun)|Browning|Elizabeth Barrett Browning|poet (generic term)
+(noun)|toasting|cooking (generic term)|cookery (generic term)|preparation (generic term)
+browning automatic rifle|1
+(noun)|Browning automatic rifle|BAR|automatic rifle (generic term)|automatic (generic term)|machine rifle (generic term)
+browning machine gun|1
+(noun)|Browning machine gun|Peacemaker|machine gun (generic term)
+brownish|1
+(adj)|brown|chocolate-brown|dark-brown|chromatic (similar term)
+brownish-black|1
+(adj)|brown-black|achromatic (similar term)
+brownish-gray|1
+(adj)|brown-grey|brown-gray|brownish-grey|achromatic (similar term)
+brownish-green|1
+(adj)|brown-green|chromatic (similar term)
+brownish-grey|1
+(adj)|brown-grey|brown-gray|brownish-gray|achromatic (similar term)
+brownish-orange|1
+(adj)|sorrel|chromatic (similar term)
+brownish-purple|1
+(adj)|brown-purple|chromatic (similar term)
+brownish-red|1
+(adj)|maroon|chromatic (similar term)
+brownish-speckled|1
+(adj)|brown-speckled|patterned (similar term)
+brownish-striped|1
+(adj)|brown-striped|patterned (similar term)
+brownish-yellow|1
+(adj)|amber|yellow-brown|chromatic (similar term)
+brownish yellow|1
+(noun)|yellow (generic term)|yellowness (generic term)
+brownness|1
+(noun)|brown|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+brownout|1
+(noun)|blackout|dimout|dark (generic term)|darkness (generic term)
+brownshirt|1
+(noun)|Brownshirt|Nazi (generic term)|German Nazi (generic term)
+brownstone|2
+(noun)|sandstone (generic term)
+(noun)|row house (generic term)|town house (generic term)
+brownsville|1
+(noun)|Brownsville|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+browntail|1
+(noun)|brown-tail moth|Euproctis phaeorrhoea|lymantriid (generic term)|tussock moth (generic term)
+browse|6
+(noun)|browsing|reading (generic term)
+(noun)|browsing|eating (generic term)|feeding (generic term)
+(verb)|shop|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|crop|graze|range|pasture|feed (generic term)|eat (generic term)
+(verb)|surf|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|graze|nosh (generic term)|snack (generic term)
+browser|2
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+(noun)|web browser|application (generic term)|application program (generic term)|applications programme (generic term)
+browsing|2
+(noun)|browse|reading (generic term)
+(noun)|browse|eating (generic term)|feeding (generic term)
+bruce|2
+(noun)|Bruce|David Bruce|Sir David Bruce|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|bacteriologist (generic term)
+(noun)|Bruce|Robert the Bruce|Robert I|king (generic term)|male monarch (generic term)|Rex (generic term)
+bruce lee|1
+(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+brucella|1
+(noun)|Brucella|coccobacillus (generic term)
+brucellosis|2
+(noun)|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+(noun)|contagious abortion|Bang's disease|zoonosis (generic term)|zoonotic disease (generic term)
+bruch|1
+(noun)|Bruch|Max Bruch|composer (generic term)
+bruchidae|1
+(noun)|Bruchidae|family Bruchidae|arthropod family (generic term)
+bruchus|1
+(noun)|Bruchus|genus Bruchus|arthropod genus (generic term)
+bruchus pisorum|1
+(noun)|pea weevil|Bruchus pisorum|seed beetle (generic term)|seed weevil (generic term)
+brucine|1
+(noun)|plant toxin (generic term)|phytotoxin (generic term)|alkaloid (generic term)
+bruckenthalia|1
+(noun)|Bruckenthalia|genus Bruckenthalia|dilleniid dicot genus (generic term)
+bruckenthalia spiculifolia|1
+(noun)|spike heath|Bruckenthalia spiculifolia|heath (generic term)
+bruckner|1
+(noun)|Bruckner|Anton Bruckner|composer (generic term)|organist (generic term)
+bruegel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+brueghel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+bruges|1
+(noun)|Bruges|City of Bridges|city (generic term)|metropolis (generic term)|urban center (generic term)
+brugmansia|1
+(noun)|Brugmansia|genus Brugmansia|asterid dicot genus (generic term)
+brugmansia arborea|1
+(noun)|angel's trumpet|maikoa|Brugmansia arborea|Datura arborea|shrub (generic term)|bush (generic term)
+brugmansia sanguinea|1
+(noun)|red angel's trumpet|Brugmansia sanguinea|Datura sanguinea|shrub (generic term)|bush (generic term)
+brugmansia suaveolens|1
+(noun)|angel's trumpet|Brugmansia suaveolens|Datura suaveolens|shrub (generic term)|bush (generic term)
+bruin|2
+(noun)|bear (generic term)
+(noun)|brown bear|Ursus arctos|bear (generic term)
+bruise|5
+(noun)|contusion|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(verb)|contuse|injure (generic term)|wound (generic term)
+(verb)|hurt|wound|injure|offend|spite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|crush (generic term)
+(verb)|damage (generic term)
+bruised|1
+(adj)|contused|contusioned|injured (similar term)
+bruiser|1
+(noun)|bull|strapper|Samson|man (generic term)|adult male (generic term)
+bruising|2
+(adj)|harmful (similar term)
+(adj)|forceful (similar term)
+bruit|1
+(verb)|rumor|rumour|dish the dirt (generic term)|gossip (generic term)
+brule|1
+(noun)|Brule|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+brumaire|1
+(noun)|Brumaire|Revolutionary calendar month (generic term)
+brumal|1
+(adj)|hibernal|hiemal|wintry (similar term)|wintery (similar term)
+brummagem|2
+(adj)|Brummagem|tasteless (similar term)
+(noun)|Birmingham|Brummagem|city (generic term)|metropolis (generic term)|urban center (generic term)
+brummell|1
+(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+brummie|1
+(noun)|Brummie|Brummy|English person (generic term)
+brummy|1
+(noun)|Brummie|Brummy|English person (generic term)
+brumous|1
+(adj)|foggy|hazy|misty|cloudy (similar term)
+brunanburh|1
+(noun)|Brunanburh|battle of Brunanburh|pitched battle (generic term)
+brunch|2
+(noun)|meal (generic term)|repast (generic term)
+(verb)|eat (generic term)
+brunch coat|1
+(noun)|negligee (generic term)|neglige (generic term)|peignoir (generic term)|wrapper (generic term)|housecoat (generic term)
+brunei|1
+(noun)|Brunei|Negara Brunei Darussalam|sultanate (generic term)
+brunei dollar|1
+(noun)|Brunei dollar|dollar (generic term)
+bruneian|2
+(adj)|Bruneian|sultanate (related term)
+(noun)|Bruneian|Bornean (generic term)
+brunelleschi|1
+(noun)|Brunelleschi|Filippo Brunelleschi|architect (generic term)|designer (generic term)
+brunet|2
+(adj)|brunette|adust (similar term)|bronzed (similar term)|suntanned (similar term)|tanned (similar term)|brown (similar term)|browned (similar term)|dark (similar term)|dark-haired (similar term)|black-haired (similar term)|brown-haired (similar term)|dark-skinned (similar term)|dusky (similar term)|swart (similar term)|swarthy (similar term)|grizzled (similar term)|nutbrown (similar term)|blond (antonym)
+(noun)|brunette|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+brunette|2
+(adj)|brunet|adust (similar term)|bronzed (similar term)|suntanned (similar term)|tanned (similar term)|brown (similar term)|browned (similar term)|dark (similar term)|dark-haired (similar term)|black-haired (similar term)|brown-haired (similar term)|dark-skinned (similar term)|dusky (similar term)|swart (similar term)|swarthy (similar term)|grizzled (similar term)|nutbrown (similar term)|blond (antonym)
+(noun)|brunet|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+brunfelsia|1
+(noun)|Brunfelsia|genus Brunfelsia|asterid dicot genus (generic term)
+brunfelsia americana|1
+(noun)|lady-of-the-night|Brunfelsia americana|shrub (generic term)|bush (generic term)
+brunhild|1
+(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie (generic term)
+brunn|1
+(noun)|Brno|Brunn|city (generic term)|metropolis (generic term)|urban center (generic term)
+brunnhilde|1
+(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie (generic term)
+bruno|3
+(noun)|Leo IX|Bruno|Bruno of Toul|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Bruno|Saint Bruno|St. Bruno|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)|saint (generic term)
+(noun)|Bruno|Giordano Bruno|philosopher (generic term)
+bruno of toul|1
+(noun)|Leo IX|Bruno|Bruno of Toul|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+bruno walter|1
+(noun)|Walter|Bruno Walter|conductor (generic term)|music director (generic term)|director (generic term)
+brunswick|3
+(noun)|Brunswick|town (generic term)
+(noun)|Brunswick|town (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|Braunschweig|Brunswick|city (generic term)|metropolis (generic term)|urban center (generic term)
+brunswick stew|1
+(noun)|Brunswick stew|stew (generic term)
+brunt|1
+(noun)|force (generic term)|forcefulness (generic term)|strength (generic term)
+brusa|1
+(noun)|Bursa|Brusa|city (generic term)|metropolis (generic term)|urban center (generic term)
+brush|14
+(noun)|brushwood|coppice|copse|thicket|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|implement (generic term)
+(noun)|light touch|touch (generic term)|touching (generic term)
+(noun)|electrical device (generic term)
+(noun)|clash|encounter|skirmish|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|brushing|dental care (generic term)
+(noun)|brushing|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+(noun)|contact (generic term)
+(verb)|rub (generic term)
+(verb)|touch (generic term)
+(verb)|clean (generic term)|make clean (generic term)
+(verb)|sweep|move (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|cover (generic term)
+brush-footed butterfly|1
+(noun)|nymphalid|nymphalid butterfly|four-footed butterfly|butterfly (generic term)
+brush-off|1
+(noun)|rejection (generic term)
+brush-tail porcupine|1
+(noun)|brush-tailed porcupine|Old World porcupine (generic term)
+brush-tailed phalanger|1
+(noun)|Trichosurus vulpecula|phalanger (generic term)|opossum (generic term)|possum (generic term)
+brush-tailed porcupine|1
+(noun)|brush-tail porcupine|Old World porcupine (generic term)
+brush aside|1
+(verb)|dismiss|disregard|brush off|discount|push aside|ignore|reject (generic term)
+brush cut|1
+(noun)|haircut (generic term)
+brush discharge|1
+(noun)|discharge (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+brush down|1
+(verb)|tell off|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+brush fire|1
+(noun)|fire (generic term)
+brush kangaroo|1
+(noun)|wallaby|kangaroo (generic term)
+brush off|1
+(verb)|dismiss|disregard|brush aside|discount|push aside|ignore|reject (generic term)
+brush on|1
+(verb)|coat (generic term)|surface (generic term)
+brush turkey|1
+(noun)|Alectura lathami|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+brush up|2
+(verb)|review|refresh|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+(verb)|polish|round|round off|polish up|perfect (generic term)|hone (generic term)
+brush wolf|1
+(noun)|coyote|prairie wolf|Canis latrans|wolf (generic term)
+brushed|3
+(adj)|touched (similar term)
+(adj)|groomed (similar term)
+(adj)|fleecy|napped|soft (similar term)
+brushing|2
+(noun)|brush|dental care (generic term)
+(noun)|brush|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+brushlike|1
+(adj)|armed (similar term)
+brushup|1
+(noun)|review|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+brushwood|2
+(noun)|wood (generic term)
+(noun)|brush|coppice|copse|thicket|vegetation (generic term)|flora (generic term)|botany (generic term)
+brushwork|1
+(noun)|proficiency (generic term)|technique (generic term)
+brushy|1
+(adj)|bosky|wooded (similar term)
+brusk|1
+(adj)|brusque|curt|short|discourteous (similar term)
+brusque|1
+(adj)|brusk|curt|short|discourteous (similar term)
+brusquely|1
+(adv)|bluffly|bluntly|flat out|roundly
+brusqueness|1
+(noun)|abruptness|curtness|gruffness|shortness|discourtesy (generic term)|rudeness (generic term)
+brussels|1
+(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital (generic term)
+brussels biscuit|1
+(noun)|zwieback|rusk|Brussels biscuit|twice-baked bread|toast (generic term)
+brussels carpet|1
+(noun)|Brussels carpet|rug (generic term)|carpet (generic term)|carpeting (generic term)
+brussels griffon|1
+(noun)|griffon|Brussels griffon|Belgian griffon|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+brussels lace|1
+(noun)|Brussels lace|lace (generic term)
+brussels sprout|1
+(noun)|Brassica oleracea gemmifera|crucifer (generic term)|cruciferous plant (generic term)
+brussels sprouts|1
+(noun)|cruciferous vegetable (generic term)
+brut|1
+(adj)|dry (similar term)
+brutal|2
+(adj)|cruel|inhumane (similar term)
+(adj)|barbarous|cruel|fell|roughshod|savage|vicious|inhumane (similar term)
+brutalisation|3
+(noun)|brutalization|condition (generic term)|status (generic term)
+(noun)|brutalization|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|brutalization|animalization|animalisation|degradation (generic term)|debasement (generic term)
+brutalise|3
+(verb)|brutalize|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|brutalize|animalize|animalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|brutalize|animalize|animalise|change (generic term)
+brutality|2
+(noun)|ferociousness|viciousness|savagery|cruelty (generic term)|cruelness (generic term)|harshness (generic term)
+(noun)|barbarity|barbarism|savagery|atrocity (generic term)|inhumanity (generic term)
+brutalization|3
+(noun)|brutalisation|condition (generic term)|status (generic term)
+(noun)|brutalisation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|brutalisation|animalization|animalisation|degradation (generic term)|debasement (generic term)
+brutalize|3
+(verb)|brutalise|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|brutalise|animalize|animalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|brutalise|animalize|animalise|change (generic term)
+brutally|1
+(adv)|viciously|savagely
+brute|3
+(adj)|beastly|bestial|brutish|inhumane (similar term)
+(noun)|beast|wolf|savage|wildcat|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|animal|animate being|beast|creature|fauna|organism (generic term)|being (generic term)
+brutish|1
+(adj)|beastly|bestial|brute|inhumane (similar term)
+brutishly|1
+(adv)|bestially|in a beastly manner
+brutus|1
+(noun)|Brutus|Marcus Junius Brutus|statesman (generic term)|solon (generic term)|national leader (generic term)
+bruxelles|1
+(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital (generic term)
+bruxism|1
+(noun)|action (generic term)
+brya|1
+(noun)|Brya|genus Brya|rosid dicot genus (generic term)
+brya ebenus|1
+(noun)|granadilla tree|granadillo|Brya ebenus|tree (generic term)
+bryaceae|1
+(noun)|Bryaceae|family Bryaceae|moss family (generic term)
+bryales|1
+(noun)|Bryales|order Bryales|plant order (generic term)
+bryan|2
+(noun)|Bryan|William Jennings Bryan|Great Commoner|Boy Orator of the Platte|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|lawyer (generic term)|attorney (generic term)
+(noun)|Bryan|town (generic term)
+bryan donkin|1
+(noun)|Donkin|Bryan Donkin|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+bryanthus|1
+(noun)|shrub (generic term)|bush (generic term)
+bryanthus taxifolius|1
+(noun)|mountain heath|Phyllodoce caerulea|Bryanthus taxifolius|heath (generic term)
+bryce canyon national park|1
+(noun)|Bryce Canyon National Park|national park (generic term)
+brynhild|1
+(noun)|Brunhild|Brunnhilde|Brynhild|Valkyrie (generic term)
+bryonia alba|1
+(noun)|white bryony|devil's turnip|Bryonia alba|bryony (generic term)|briony (generic term)
+bryonia dioica|1
+(noun)|red bryony|wild hop|Bryonia dioica|bryony (generic term)|briony (generic term)
+bryony|1
+(noun)|briony|vine (generic term)
+bryophyta|1
+(noun)|Bryophyta|division Bryophyta|division (generic term)
+bryophyte|1
+(noun)|nonvascular plant|nonvascular organism (generic term)
+bryophytic|1
+(adj)|nonvascular organism (related term)
+bryopsida|1
+(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class (generic term)
+bryozoa|1
+(noun)|Bryozoa|phylum Bryozoa|polyzoa|phylum (generic term)
+bryozoan|1
+(noun)|polyzoan|sea mat|sea moss|moss animal|invertebrate (generic term)
+brythonic|1
+(noun)|Brythonic|Brittanic|Celtic (generic term)|Celtic language (generic term)
+bryum|1
+(noun)|Bryum|genus Bryum|moss genus (generic term)
+bs|1
+(noun)|Bachelor of Science|BS|SB|bachelor's degree (generic term)|baccalaureate (generic term)
+bsarch|1
+(noun)|Bachelor of Science in Architecture|BSArch|bachelor's degree (generic term)|baccalaureate (generic term)
+bse|1
+(noun)|bovine spongiform encephalitis|BSE|mad cow disease|animal disease (generic term)
+btu|1
+(noun)|British thermal unit|BTU|B.Th.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+bubaline|1
+(adj)|bison (related term)
+bubalus|1
+(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus (generic term)
+bubalus bubalis|1
+(noun)|water buffalo|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo (generic term)|buffalo (generic term)
+bubalus mindorensis|1
+(noun)|tamarau|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo (generic term)|buffalo (generic term)
+bubble|7
+(noun)|globule (generic term)
+(noun)|house of cards|scheme (generic term)|strategy (generic term)
+(noun)|illusion (generic term)|fantasy (generic term)|phantasy (generic term)|fancy (generic term)
+(noun)|covering (generic term)
+(verb)|emit (generic term)|breathe (generic term)|pass off (generic term)|bubble over (related term)
+(verb)|ripple|babble|guggle|burble|gurgle|sound (generic term)|go (generic term)
+(verb)|burp|belch|eruct|emit (generic term)|breathe (generic term)|pass off (generic term)
+bubble-jet printer|1
+(noun)|bubble jet printer|bubblejet|ink-jet printer (generic term)
+bubble and squeak|1
+(noun)|dish (generic term)
+bubble bath|1
+(noun)|bath (generic term)
+bubble chamber|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+bubble dance|1
+(noun)|nude dancing (generic term)
+bubble gum|1
+(noun)|chewing gum (generic term)|gum (generic term)
+bubble gum dermatitis|1
+(noun)|contact dermatitis (generic term)
+bubble jet printer|1
+(noun)|bubble-jet printer|bubblejet|ink-jet printer (generic term)
+bubble over|1
+(verb)|overflow|spill over|seethe (generic term)|boil (generic term)
+bubble pack|1
+(noun)|blister pack|packing material (generic term)|packing (generic term)|wadding (generic term)
+bubble shell|1
+(noun)|gastropod (generic term)|univalve (generic term)
+bubble up|1
+(verb)|intumesce|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+bubblejet|1
+(noun)|bubble jet printer|bubble-jet printer|ink-jet printer (generic term)
+bubbler|2
+(noun)|drinking fountain|water fountain|fountain (generic term)
+(noun)|device (generic term)
+bubbliness|1
+(noun)|effervescence|frothiness|gaseousness (generic term)
+bubbling|3
+(adj)|bubbly|foaming|foamy|frothy|effervescing|effervescent (similar term)
+(adj)|effervescent|scintillating|sparkly|lively (similar term)
+(adj)|foaming|foamy|frothing|spumous|spumy|sudsy|agitated (similar term)
+bubbly|3
+(adj)|bubbling|foaming|foamy|frothy|effervescing|effervescent (similar term)
+(adj)|lively (similar term)
+(noun)|champagne|sparkling wine (generic term)
+buber|1
+(noun)|Buber|Martin Buber|philosopher (generic term)
+bubo|2
+(noun)|lymph node (generic term)|lymph gland (generic term)|node (generic term)|symptom (generic term)
+(noun)|Bubo|genus Bubo|bird genus (generic term)
+bubo virginianus|1
+(noun)|great horned owl|Bubo virginianus|horned owl (generic term)
+bubonic|1
+(adj)|lymph node|lymph gland|node|symptom (related term)
+bubonic plague|1
+(noun)|pestis bubonica|glandular plague|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+bubulcus|1
+(noun)|Bubulcus|genus Bubulcus|bird genus (generic term)
+bubulcus ibis|1
+(noun)|cattle egret|Bubulcus ibis|egret (generic term)
+buccal|2
+(adj)|feature|lineament (related term)
+(adj)|oral (similar term)
+buccal artery|1
+(noun)|arteria buccalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+buccal cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+buccaneer|2
+(noun)|pirate|sea robber|sea rover|plunderer (generic term)|pillager (generic term)|looter (generic term)|spoiler (generic term)|despoiler (generic term)|raider (generic term)|freebooter (generic term)
+(verb)|live (generic term)
+buccaneering|1
+(noun)|piracy|highjacking (generic term)|hijacking (generic term)
+buccinator muscle|1
+(noun)|cheek muscle|musculus buccinator|facial muscle (generic term)
+buccinidae|1
+(noun)|Buccinidae|family Buccinidae|mollusk family (generic term)
+bucconidae|1
+(noun)|Bucconidae|family Bucconidae|bird family (generic term)
+buccula|1
+(noun)|double chin|chin (generic term)|mentum (generic term)
+bucephala|1
+(noun)|Bucephala|genus Bucephala|bird genus (generic term)
+bucephala islandica|1
+(noun)|Barrow's goldeneye|Bucephala islandica|goldeneye (generic term)|whistler (generic term)|Bucephela clangula (generic term)
+bucephela albeola|1
+(noun)|bufflehead|butterball|dipper|Bucephela albeola|duck (generic term)
+bucephela clangula|1
+(noun)|goldeneye|whistler|Bucephela clangula|duck (generic term)
+buceros|1
+(noun)|Buceros|genus Buceros|bird genus (generic term)
+bucerotidae|1
+(noun)|Bucerotidae|family Bucerotidae|bird family (generic term)
+buchanan|1
+(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+bucharest|1
+(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital (generic term)
+bucharesti|1
+(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital (generic term)
+buchenwald|1
+(noun)|Buchenwald|concentration camp (generic term)|stockade (generic term)
+buchloe|1
+(noun)|Buchloe|genus Buchloe|monocot genus (generic term)|liliopsid genus (generic term)
+buchloe dactyloides|1
+(noun)|buffalo grass|Buchloe dactyloides|grass (generic term)
+buchner|1
+(noun)|Buchner|Eduard Buchner|chemist (generic term)
+buck|9
+(noun)|vaulting horse|long horse|horse (generic term)|gymnastic horse (generic term)
+(noun)|dollar|dollar bill|one dollar bill|clam|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer (generic term)|author (generic term)|missionary (generic term)|missioner (generic term)
+(noun)|sawhorse|horse|sawbuck|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(verb)|endeavor (generic term)|endeavour (generic term)|strive (generic term)
+(verb)|go against|react (generic term)|oppose (generic term)
+(verb)|tear|shoot|shoot down|charge|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|shoot up (related term)
+(verb)|jerk|hitch|move (generic term)
+buck-and-wing|1
+(noun)|tap dancing (generic term)|tap dance (generic term)
+buck-toothed|1
+(adj)|toothed (similar term)
+buck fever|1
+(noun)|fever (generic term)
+buck private|1
+(noun)|private|common soldier|enlisted man (generic term)
+buck sergeant|1
+(noun)|police sergeant (generic term)|sergeant (generic term)
+buck up|1
+(verb)|take heart|cheer (generic term)|hearten (generic term)|recreate (generic term)|embolden (generic term)
+buckaroo|1
+(noun)|vaquero|buckeroo|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+buckbean|1
+(noun)|water shamrock|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+buckbean family|1
+(noun)|Menyanthaceae|family Menyanthaceae|dicot family (generic term)|magnoliopsid family (generic term)
+buckboard|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+bucked up|1
+(adj)|encouraged|pleased (similar term)
+buckeroo|1
+(noun)|vaquero|buckaroo|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+bucket|4
+(noun)|pail|vessel (generic term)
+(noun)|bucketful|containerful (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|transport (generic term)|carry (generic term)
+bucket along|1
+(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+bucket seat|1
+(noun)|seat (generic term)
+bucket shop|2
+(noun)|brokerage (generic term)|brokerage firm (generic term)|securities firm (generic term)
+(noun)|tavern (generic term)|tap house (generic term)
+bucketful|1
+(noun)|bucket|containerful (generic term)
+buckeye|3
+(noun)|horse chestnut|conker|seed (generic term)
+(noun)|horse chestnut|Aesculus hippocastanum|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Ohioan|Buckeye|American (generic term)
+buckeye state|1
+(noun)|Ohio|Buckeye State|OH|American state (generic term)
+bucking bronco|1
+(noun)|bronco (generic term)|bronc (generic term)|broncho (generic term)
+buckingham palace|1
+(noun)|Buckingham Palace|palace (generic term)|castle (generic term)
+buckle|5
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|warp|distorted shape (generic term)|distortion (generic term)
+(verb)|clasp|fasten (generic term)|fix (generic term)|secure (generic term)|unbuckle (antonym)
+(verb)|crumple|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|heave|warp|change surface (generic term)
+buckle down|1
+(verb)|slave|break one's back|knuckle down|work (generic term)|do work (generic term)
+buckle under|1
+(verb)|yield|give in|succumb|knuckle under|accept (generic term)|consent (generic term)|go for (generic term)
+buckler|1
+(noun)|shield|armor (generic term)|armour (generic term)
+buckler fern|1
+(noun)|shield fern|fern (generic term)
+buckler mustard|1
+(noun)|Biscutalla laevigata|shrub (generic term)|bush (generic term)
+buckleya|1
+(noun)|Buckleya distichophylla|parasitic plant (generic term)
+buckleya distichophylla|1
+(noun)|buckleya|Buckleya distichophylla|parasitic plant (generic term)
+buckminster fuller|1
+(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect (generic term)|designer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+buckminsterfullerene|1
+(noun)|buckyball|fullerene (generic term)
+buckram|3
+(adj)|starchy|stiff|formal (similar term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|stiffen (generic term)
+bucksaw|1
+(noun)|saw (generic term)
+buckshee|1
+(adj)|unpaid (similar term)
+buckshot|1
+(noun)|bird shot|duck shot|shot (generic term)|pellet (generic term)
+buckskin|2
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(noun)|leather (generic term)
+buckskins|1
+(noun)|breeches (generic term)|knee breeches (generic term)|knee pants (generic term)|knickerbockers (generic term)|knickers (generic term)
+buckthorn|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|Plantago lanceolata|plantain (generic term)
+buckthorn berry|1
+(noun)|yellow berry|fruit (generic term)
+buckthorn family|1
+(noun)|Rhamnaceae|family Rhamnaceae|dicot family (generic term)|magnoliopsid family (generic term)
+bucktooth|1
+(noun)|front tooth (generic term)|anterior (generic term)
+buckwheat|2
+(noun)|Polygonum fagopyrum|Fagopyrum esculentum|herb (generic term)|herbaceous plant (generic term)
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+buckwheat cake|1
+(noun)|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+buckwheat family|1
+(noun)|Polygonaceae|family Polygonaceae|dicot family (generic term)|magnoliopsid family (generic term)
+buckwheat tree|1
+(noun)|titi|Cliftonia monophylla|angiospermous tree (generic term)|flowering tree (generic term)
+buckyball|1
+(noun)|buckminsterfullerene|fullerene (generic term)
+bucolic|4
+(adj)|arcadian|pastoral|rustic|rural (similar term)
+(adj)|pastoral|herder|herdsman|drover (related term)
+(noun)|peasant|provincial|rustic (generic term)
+(noun)|eclogue|idyll|pastoral (generic term)
+bucuresti|1
+(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital (generic term)
+bud|4
+(noun)|flower (generic term)|bloom (generic term)|blossom (generic term)
+(noun)|sprout (generic term)
+(verb)|develop (generic term)
+(verb)|begin (generic term)|start (generic term)
+bud brush|1
+(noun)|bud sagebrush|Artemis spinescens|sagebrush (generic term)|sage brush (generic term)
+bud sagebrush|1
+(noun)|bud brush|Artemis spinescens|sagebrush (generic term)|sage brush (generic term)
+budapest|1
+(noun)|Budapest|Hungarian capital|capital of Hungary|national capital (generic term)
+buddha|2
+(noun)|Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic (generic term)|religious mystic (generic term)
+(noun)|Buddha|saint (generic term)|holy man (generic term)|holy person (generic term)|angel (generic term)
+buddhism|2
+(noun)|Buddhism|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Buddhism|religion (generic term)|faith (generic term)|religious belief (generic term)
+buddhist|2
+(adj)|Buddhist|Buddhistic|religion|faith|religious belief (related term)
+(noun)|Buddhist|religious person (generic term)
+buddhistic|1
+(adj)|Buddhist|Buddhistic|religion|faith|religious belief (related term)
+budding|2
+(adj)|undeveloped (similar term)
+(noun)|asexual reproduction (generic term)|agamogenesis (generic term)
+buddleia|1
+(noun)|butterfly bush|shrub (generic term)|bush (generic term)
+buddy|1
+(noun)|brother|chum|crony|pal|sidekick|friend (generic term)
+buddy-buddy|1
+(adj)|chummy|thick|close (similar term)
+buddy holly|1
+(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+buddy system|1
+(noun)|pairing (generic term)
+budge|2
+(noun)|Budge|Don Budge|John Donald Budge|tennis player (generic term)
+(verb)|stir|shift|agitate|move (generic term)
+budgereegah|1
+(noun)|budgerigar|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+budgerigar|1
+(noun)|budgereegah|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+budgerygah|1
+(noun)|budgerigar|budgereegah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+budget|3
+(noun)|fund (generic term)|monetary fund (generic term)
+(noun)|plan (generic term)|program (generic term)|programme (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+budget cut|1
+(noun)|cut (generic term)
+budget deficit|1
+(noun)|deficit (generic term)
+budget for|1
+(verb)|allow (generic term)|take into account (generic term)
+budget items|1
+(noun)|operating expense|operating cost|overhead|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+budgetary|1
+(adj)|fund|monetary fund (related term)
+budgie|1
+(noun)|budgerigar|budgereegah|budgerygah|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+budorcas|1
+(noun)|Budorcas|genus Budorcas|mammal genus (generic term)
+budorcas taxicolor|1
+(noun)|takin|gnu goat|Budorcas taxicolor|goat antelope (generic term)
+buena vista|1
+(noun)|Buena Vista|pitched battle (generic term)
+buenos aires|1
+(noun)|Buenos Aires|capital of Argentina|national capital (generic term)|port (generic term)
+buff|8
+(adj)|chromatic (similar term)
+(noun)|fan|devotee|lover|follower (generic term)
+(noun)|leather (generic term)
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+(noun)|yellowish brown|raw sienna|caramel|caramel brown|brown (generic term)|brownness (generic term)
+(noun)|buffer|implement (generic term)
+(verb)|buffet|hit (generic term)
+(verb)|burnish|furbish|flush|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+buff-brown|1
+(adj)|chromatic (similar term)
+buff-colored|1
+(adj)|buff-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+buff-coloured|1
+(adj)|buff-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+buffalo|5
+(noun)|American bison|American buffalo|Bison bison|bison (generic term)
+(noun)|Buffalo|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|game (generic term)
+(noun)|Old World buffalo|bovid (generic term)
+(verb)|overawe (generic term)|cow (generic term)
+buffalo bill|1
+(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman (generic term)|promoter (generic term)|impresario (generic term)
+buffalo bill's wild west show|1
+(noun)|Wild West Show|Buffalo Bill's Wild West Show|show (generic term)
+buffalo bill cody|1
+(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman (generic term)|promoter (generic term)|impresario (generic term)
+buffalo bur|1
+(noun)|Solanum rostratum|nightshade (generic term)
+buffalo carpet beetle|1
+(noun)|Anthrenus scrophulariae|carpet beetle (generic term)|carpet bug (generic term)
+buffalo chip|1
+(noun)|chip|cow chip|cow dung|droppings (generic term)|dung (generic term)|muck (generic term)
+buffalo clover|2
+(noun)|bluebonnet|Texas bluebonnet|Lupinus subcarnosus|lupine (generic term)|lupin (generic term)
+(noun)|Trifolium reflexum|Trifolium stoloniferum|clover (generic term)|trefoil (generic term)
+buffalo fish|1
+(noun)|buffalofish|sucker (generic term)
+buffalo gnat|1
+(noun)|blackfly|black fly|gnat (generic term)
+buffalo gourd|1
+(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+buffalo grass|2
+(noun)|St. Augustine grass|Stenotaphrum secundatum|grass (generic term)
+(noun)|Buchloe dactyloides|grass (generic term)
+buffalo indian|1
+(noun)|Plains Indian|Buffalo Indian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+buffalo nut|2
+(noun)|elk nut|oil nut|fruit (generic term)
+(noun)|rabbitwood|Pyrularia pubera|parasitic plant (generic term)
+buffalo wing|1
+(noun)|dish (generic term)
+buffalofish|2
+(noun)|freshwater fish (generic term)
+(noun)|buffalo fish|sucker (generic term)
+buffel grass|1
+(noun)|Cenchrus ciliaris|Pennisetum cenchroides|burgrass (generic term)|bur grass (generic term)
+buffer|8
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|fender|cowcatcher|pilot|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|buffer storage|buffer store|memory device (generic term)|storage device (generic term)
+(noun)|polisher|power tool (generic term)
+(noun)|fender|device (generic term)
+(noun)|buff|implement (generic term)
+(verb)|modify (generic term)
+(verb)|cushion|soften|modify (generic term)
+buffer country|1
+(noun)|buffer state|country (generic term)|state (generic term)|land (generic term)
+buffer solution|1
+(noun)|solution (generic term)
+buffer state|1
+(noun)|buffer country|country (generic term)|state (generic term)|land (generic term)
+buffer storage|1
+(noun)|buffer|buffer store|memory device (generic term)|storage device (generic term)
+buffer store|1
+(noun)|buffer|buffer storage|memory device (generic term)|storage device (generic term)
+buffered aspirin|1
+(noun)|Bufferin|aspirin (generic term)|acetylsalicylic acid (generic term)|Bayer (generic term)|Empirin (generic term)|St. Joseph (generic term)
+bufferin|1
+(noun)|buffered aspirin|Bufferin|aspirin (generic term)|acetylsalicylic acid (generic term)|Bayer (generic term)|Empirin (generic term)|St. Joseph (generic term)
+buffet|5
+(noun)|counter|sideboard|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|meal (generic term)|repast (generic term)
+(noun)|snack bar|snack counter|bar (generic term)
+(verb)|knock about|batter|strike (generic term)
+(verb)|buff|hit (generic term)
+buffet car|1
+(noun)|dining car|diner|dining compartment|passenger car (generic term)|coach (generic term)|carriage (generic term)
+buffeted|1
+(adj)|storm-tossed|tempest-tossed|tempest-tost|tempest-swept|troubled (similar term)
+buffeting|1
+(noun)|pounding|blow (generic term)|bump (generic term)
+buffing wheel|1
+(noun)|wheel (generic term)
+bufflehead|1
+(noun)|butterball|dipper|Bucephela albeola|duck (generic term)
+buffoon|2
+(noun)|clown|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|clown|merry andrew|comedian (generic term)|comic (generic term)
+buffoonery|1
+(noun)|clowning|japery|frivolity|harlequinade|prank|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+buffoonish|1
+(adj)|clownish|clownlike|zany|humorous (similar term)|humourous (similar term)
+bufo|1
+(noun)|true toad (generic term)
+bufo americanus|1
+(noun)|American toad|Bufo americanus|true toad (generic term)
+bufo boreas|1
+(noun)|western toad|Bufo boreas|true toad (generic term)
+bufo bufo|1
+(noun)|European toad|Bufo bufo|true toad (generic term)
+bufo calamita|1
+(noun)|natterjack|Bufo calamita|true toad (generic term)
+bufo canorus|1
+(noun)|Yosemite toad|Bufo canorus|true toad (generic term)
+bufo debilis|1
+(noun)|American green toad|Bufo debilis|true toad (generic term)
+bufo marinus|1
+(noun)|agua|agua toad|Bufo marinus|true toad (generic term)
+bufo microscaphus|1
+(noun)|southwestern toad|Bufo microscaphus|true toad (generic term)
+bufo speciosus|1
+(noun)|Texas toad|Bufo speciosus|true toad (generic term)
+bufo viridis|1
+(noun)|Eurasian green toad|Bufo viridis|true toad (generic term)
+bufonidae|1
+(noun)|Bufonidae|family Bufonidae|amphibian family (generic term)
+bug|7
+(noun)|insect (generic term)
+(noun)|glitch|defect (generic term)|fault (generic term)|flaw (generic term)
+(noun)|microphone (generic term)|mike (generic term)
+(noun)|hemipterous insect|hemipteran|hemipteron|insect (generic term)
+(noun)|microbe|germ|microorganism (generic term)|micro-organism (generic term)
+(verb)|tease|badger|pester|beleaguer|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|wiretap|tap|intercept|listen in (generic term)|eavesdrop (generic term)
+bug-hunter|1
+(noun)|entomologist|bugologist|zoologist (generic term)|animal scientist (generic term)
+bug out|1
+(verb)|start|protrude|pop|pop out|bulge|bulge out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+bugaboo|2
+(noun)|bogeyman|bugbear|boogeyman|booger|monster (generic term)
+(noun)|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+buganda|1
+(noun)|Buganda|state (generic term)|province (generic term)
+bugbane|2
+(noun)|white hellebore|American hellebore|Indian poke|Veratrum viride|hellebore (generic term)|false hellebore (generic term)
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+bugbear|2
+(noun)|bogeyman|bugaboo|boogeyman|booger|monster (generic term)
+(noun)|hobgoblin|object (generic term)
+bugged|1
+(adj)|wired (similar term)
+bugger|2
+(noun)|sodomite|sodomist|sod|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+(verb)|sodomize|sodomise|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+bugger all|1
+(noun)|fuck all|Fanny Adams|sweet Fanny Adams|nothing (generic term)|nil (generic term)|nix (generic term)|nada (generic term)|null (generic term)|aught (generic term)|cipher (generic term)|cypher (generic term)|goose egg (generic term)|naught (generic term)|zero (generic term)|zilch (generic term)|zip (generic term)|zippo (generic term)
+bugger off|1
+(verb)|scram|buzz off|fuck off|get|leave (generic term)|go forth (generic term)|go away (generic term)
+buggery|1
+(noun)|sodomy|anal sex|anal intercourse|perversion (generic term)|sexual perversion (generic term)
+bugginess|1
+(noun)|defectiveness (generic term)|faultiness (generic term)
+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 (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(noun)|roadster|carriage (generic term)|equipage (generic term)|rig (generic term)
+buggy whip|1
+(noun)|horsewhip (generic term)
+bugle|4
+(noun)|brass (generic term)|brass instrument (generic term)
+(noun)|bugleweed|herb (generic term)|herbaceous plant (generic term)
+(noun)|bead (generic term)
+(verb)|play (generic term)|spiel (generic term)
+bugle call|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+bugler|1
+(noun)|trumpeter (generic term)|cornetist (generic term)
+bugleweed|2
+(noun)|Lycopus virginicus|herb (generic term)|herbaceous plant (generic term)
+(noun)|bugle|herb (generic term)|herbaceous plant (generic term)
+bugloss|2
+(noun)|alkanet|Anchusa officinalis|anchusa (generic term)
+(noun)|oxtongue|bristly oxtongue|bitterweed|Picris echioides|weed (generic term)
+bugologist|1
+(noun)|entomologist|bug-hunter|zoologist (generic term)|animal scientist (generic term)
+bugology|1
+(noun)|entomology|zoology (generic term)|zoological science (generic term)
+buhl|1
+(noun)|boulle|boule|embellishment (generic term)
+build|12
+(noun)|physique|body-build|habitus|bodily property (generic term)
+(noun)|human body|physical body|material body|soma|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(verb)|construct|make|make (generic term)|create (generic term)
+(verb)|build up|work up|progress|develop (generic term)
+(verb)|establish|make (generic term)|create (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|oversee (generic term)|supervise (generic term)|superintend (generic term)|manage (generic term)
+(verb)|develop (generic term)
+(verb)|create (generic term)
+(verb)|establish (generic term)|base (generic term)|ground (generic term)|found (generic term)
+(verb)|build up|work up|ramp up|increase (generic term)
+(verb)|intensify (generic term)|deepen (generic term)
+build in|1
+(verb)|integrate (generic term)|incorporate (generic term)
+build on|1
+(verb)|repose on|rest on|build upon|depend on (generic term)|devolve on (generic term)|depend upon (generic term)|ride (generic term)|turn on (generic term)|hinge on (generic term)|hinge upon (generic term)
+build up|5
+(verb)|increase (generic term)
+(verb)|work up|build|progress|develop (generic term)
+(verb)|arm|fortify|gird|disarm (antonym)
+(verb)|work up|build|ramp up|increase (generic term)
+(verb)|develop|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+build upon|1
+(verb)|repose on|rest on|build on|depend on (generic term)|devolve on (generic term)|depend upon (generic term)|ride (generic term)|turn on (generic term)|hinge on (generic term)|hinge upon (generic term)
+builder|3
+(noun)|detergent builder|material (generic term)|stuff (generic term)
+(noun)|creator (generic term)
+(noun)|constructor|contractor (generic term)
+building|4
+(noun)|edifice|structure (generic term)|construction (generic term)
+(noun)|construction|creating from raw materials (generic term)
+(noun)|construction|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+building block|2
+(noun)|unit|thing (generic term)
+(noun)|building material (generic term)
+building code|1
+(noun)|code (generic term)|codification (generic term)
+building complex|1
+(noun)|complex|structure (generic term)|construction (generic term)
+building department|1
+(noun)|plant department|business department (generic term)
+building material|1
+(noun)|artifact (generic term)|artefact (generic term)
+building permit|1
+(noun)|license (generic term)|licence (generic term)|permit (generic term)
+building site|1
+(noun)|vacant lot|lot (generic term)
+building society|1
+(noun)|savings and loan (generic term)|savings and loan association (generic term)
+building supply house|1
+(noun)|building supply store|shop (generic term)|store (generic term)
+building supply store|1
+(noun)|building supply house|shop (generic term)|store (generic term)
+buildup|3
+(noun)|accumulation (generic term)|accrual (generic term)|accruement (generic term)
+(noun)|accretion (generic term)|accumulation (generic term)
+(noun)|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+built|3
+(adj)|reinforced|improved (similar term)
+(adj)|assembled|made-up|collective (similar term)
+(adj)|stacked|well-stacked|shapely (similar term)
+built-in|1
+(adj)|constitutional|inbuilt|inherent|integral|intrinsic (similar term)|intrinsical (similar term)
+built-in bed|1
+(noun)|bed (generic term)
+built-soap powder|1
+(noun)|soap powder|washing powder|soap (generic term)
+built-up|1
+(adj)|settled (similar term)
+built in bed|1
+(noun)|berth|bunk|bed (generic term)
+buirdly|1
+(adj)|beefy|burly|husky|strapping|robust (similar term)
+bujumbura|1
+(noun)|Bujumbura|Usumbura|capital of Burundi|national capital (generic term)
+bukharin|1
+(noun)|Bukharin|Nikolai Ivanovich Bukharin|Bolshevik (generic term)|Bolshevist (generic term)
+bulawayo|1
+(noun)|Bulawayo|city (generic term)|metropolis (generic term)|urban center (generic term)
+bulb|5
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|light bulb|lightbulb|incandescent lamp|electric light|electric-light bulb|electric lamp (generic term)
+(noun)|part (generic term)|portion (generic term)
+(noun)|medulla oblongata|medulla|neural structure (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+bulb-shaped|1
+(adj)|bulblike|bulbous|round (similar term)|circular (similar term)
+bulbaceous|1
+(adj)|stalk|stem (related term)
+bulbar|1
+(adj)|neural structure (related term)
+bulbar conjunctiva|1
+(noun)|conjunctival layer of bulb|tunica conjunctiva bulbi|conjunctiva (generic term)
+bulbed|1
+(adj)|stalk|stem (related term)
+bulbil|1
+(noun)|bulblet|bulb (generic term)
+bulblet|1
+(noun)|bulbil|bulb (generic term)
+bulblet bladder fern|1
+(noun)|bulblet fern|berry fern|Cystopteris bulbifera|bladder fern (generic term)
+bulblet fern|1
+(noun)|bulblet bladder fern|berry fern|Cystopteris bulbifera|bladder fern (generic term)
+bulblike|1
+(adj)|bulbous|bulb-shaped|round (similar term)|circular (similar term)
+bulbourethral gland|1
+(noun)|Cowper's gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+bulbous|2
+(adj)|bulblike|bulb-shaped|round (similar term)|circular (similar term)
+(adj)|bellied|bellying|bulging|bulgy|protuberant|protrusive (similar term)
+bulbous iris|1
+(noun)|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+bulbous plant|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+bulbul|1
+(noun)|nightingale (generic term)|Luscinia megarhynchos (generic term)
+bulgaria|1
+(noun)|Bulgaria|Republic of Bulgaria|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+bulgarian|3
+(adj)|Bulgarian|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Bulgarian|European (generic term)
+(noun)|Bulgarian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+bulgarian capital|1
+(noun)|Sofia|Serdica|Bulgarian capital|national capital (generic term)
+bulgarian monetary unit|1
+(noun)|Bulgarian monetary unit|monetary unit (generic term)
+bulge|5
+(noun)|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+(verb)|pouch|protrude|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|bag|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+(verb)|start|protrude|pop|pop out|bulge out|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|bulk|swell (generic term)
+bulge out|1
+(verb)|start|protrude|pop|pop out|bulge|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+bulghur|1
+(noun)|bulgur|bulgur wheat|wheat (generic term)|wheat berry (generic term)
+bulginess|1
+(noun)|roundedness|convexity (generic term)|convexness (generic term)
+bulging|2
+(adj)|convex|bell-shaped (similar term)|biconvex (similar term)|convexo-convex (similar term)|lenticular (similar term)|lentiform (similar term)|broken-backed (similar term)|hogged (similar term)|convexo-concave (similar term)|gibbous (similar term)|gibbose (similar term)|helmet-shaped (similar term)|nipple-shaped (similar term)|planoconvex (similar term)|umbellate (similar term)|umbel-like (similar term)|protrusive (related term)|concave (antonym)
+(adj)|bellied|bellying|bulbous|bulgy|protuberant|protrusive (similar term)
+bulgur|1
+(noun)|bulghur|bulgur wheat|wheat (generic term)|wheat berry (generic term)
+bulgur pilaf|1
+(noun)|pilaf (generic term)|pilaff (generic term)|pilau (generic term)|pilaw (generic term)
+bulgur wheat|1
+(noun)|bulgur|bulghur|wheat (generic term)|wheat berry (generic term)
+bulgy|1
+(adj)|bellied|bellying|bulbous|bulging|protuberant|protrusive (similar term)
+bulima nervosa|1
+(noun)|bulimarexia|binge-purge syndrome|binge-vomit syndrome|eating disorder (generic term)
+bulimarexia|1
+(noun)|binge-purge syndrome|binge-vomit syndrome|bulima nervosa|eating disorder (generic term)
+bulimia|2
+(noun)|binge-eating syndrome|eating disorder (generic term)
+(noun)|hunger (generic term)|hungriness (generic term)
+bulimic|2
+(adj)|hunger|hungriness (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+bulk|5
+(noun)|majority|number (generic term)|figure (generic term)|minority (antonym)
+(noun)|mass|volume|magnitude (generic term)
+(noun)|mass (generic term)
+(verb)|bulge (generic term)|pouch (generic term)|protrude (generic term)
+(verb)|bulge|swell (generic term)
+bulk large|1
+(verb)|brood|hover|loom|hang (generic term)
+bulk mail|1
+(noun)|mail (generic term)
+bulk modulus|1
+(noun)|coefficient of elasticity (generic term)|modulus of elasticity (generic term)|elastic modulus (generic term)
+bulkhead|1
+(noun)|partition (generic term)|divider (generic term)
+bulkiness|1
+(noun)|massiveness|largeness (generic term)|bigness (generic term)
+bulky|1
+(adj)|large (similar term)|big (similar term)
+bull|15
+(noun)|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(noun)|bruiser|strapper|Samson|man (generic term)|adult male (generic term)
+(noun)|bullshit|Irish bull|horseshit|shit|crap|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(noun)|cop|copper|fuzz|pig|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|investor (generic term)|bear (antonym)
+(noun)|Taurus|Bull|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|bull's eye|center (generic term)|centre (generic term)|midpoint (generic term)
+(noun)|papal bull|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(verb)|bull through|push (generic term)|bear on (generic term)
+(verb)|speculate (generic term)|job (generic term)
+(verb)|bullshit|fake|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+(verb)|rise (generic term)|go up (generic term)|climb (generic term)
+bull's eye|3
+(noun)|score (generic term)
+(noun)|bull|center (generic term)|centre (generic term)|midpoint (generic term)
+(noun)|bell ringer|mark|home run|success (generic term)
+bull-snake|1
+(noun)|bull snake|colubrid snake (generic term)|colubrid (generic term)
+bull bay|1
+(noun)|southern magnolia|evergreen magnolia|large-flowering magnolia|Magnolia grandiflora|magnolia (generic term)
+bull fiddle|1
+(noun)|bass fiddle|bass viol|double bass|contrabass|string bass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+bull market|1
+(noun)|market (generic term)|securities industry (generic term)
+bull mastiff|1
+(noun)|working dog (generic term)
+bull moose party|1
+(noun)|Progressive Party|Bull Moose Party|party (generic term)|political party (generic term)
+bull neck|1
+(noun)|neck (generic term)|cervix (generic term)
+bull nettle|1
+(noun)|horse nettle|ball nettle|ball nightshade|Solanum carolinense|nightshade (generic term)
+bull nose|1
+(noun)|animal disease (generic term)
+bull pine|1
+(noun)|ponderosa|ponderosa pine|western yellow pine|Pinus ponderosa|yellow pine (generic term)
+bull run|2
+(noun)|Bull Run|brook (generic term)|creek (generic term)
+(noun)|Bull Run|Battle of Bull Run|pitched battle (generic term)
+bull session|1
+(noun)|conference (generic term)|group discussion (generic term)
+bull shark|1
+(noun)|cub shark|Carcharhinus leucas|requiem shark (generic term)
+bull snake|1
+(noun)|bull-snake|colubrid snake (generic term)|colubrid (generic term)
+bull terrier|1
+(noun)|bullterrier|terrier (generic term)
+bull thistle|1
+(noun)|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle (generic term)|plumed thistle (generic term)
+bull through|1
+(verb)|bull|push (generic term)|bear on (generic term)
+bull tongue|1
+(noun)|plow (generic term)|plough (generic term)
+bulla|2
+(noun)|blister|bleb|vesicle (generic term)|cyst (generic term)
+(noun)|seal (generic term)|stamp (generic term)
+bullace|1
+(noun)|Prunus insititia|plum (generic term)|plum tree (generic term)
+bullace grape|1
+(noun)|muscadine|grape (generic term)
+bullate|1
+(adj)|rough (similar term)|unsmooth (similar term)
+bullbat|1
+(noun)|nighthawk|mosquito hawk|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+bullbrier|1
+(noun)|greenbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine (generic term)
+bulldog|3
+(noun)|English bulldog|working dog (generic term)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|overcome (generic term)|get over (generic term)|subdue (generic term)|surmount (generic term)|master (generic term)
+bulldog ant|1
+(noun)|ant (generic term)|emmet (generic term)|pismire (generic term)
+bulldog clip|1
+(noun)|alligator clip|clip (generic term)
+bulldog wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+bulldoze|1
+(verb)|level (generic term)|raze (generic term)|rase (generic term)|dismantle (generic term)|tear down (generic term)|take down (generic term)|pull down (generic term)
+bulldozer|1
+(noun)|dozer|tractor (generic term)
+bullet|3
+(noun)|slug|projectile (generic term)|missile (generic term)
+(noun)|bullet train|passenger train (generic term)
+(noun)|fastball|heater|smoke|hummer|pitch (generic term)|delivery (generic term)
+bullet-headed|2
+(adj)|bullheaded|pigheaded|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|brachycephalic (similar term)|brachycranial (similar term)|brachycranic (similar term)
+bullet fingerprinting|1
+(noun)|ballistic identification|ballistic fingerprinting|identification (generic term)
+bullet hole|1
+(noun)|hole (generic term)
+bullet train|1
+(noun)|bullet|passenger train (generic term)
+bullet vote|1
+(verb)|vote (generic term)
+bullethead|1
+(noun)|human head (generic term)
+bulletin|2
+(noun)|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+(verb)|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+bulletin board|2
+(noun)|bulletin board system|electronic bulletin board|bbs|digital computer (generic term)
+(noun)|notice board|board (generic term)
+bulletin board system|1
+(noun)|bulletin board|electronic bulletin board|bbs|digital computer (generic term)
+bulletproof|3
+(adj)|unassailable|unshakable|watertight|incontestable (similar term)|incontestible (similar term)
+(adj)|armored (similar term)|armoured (similar term)
+(verb)|proof (generic term)
+bulletproof vest|1
+(noun)|vest (generic term)|waistcoat (generic term)|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+bullfight|1
+(noun)|corrida|spectacle (generic term)
+bullfighter|1
+(noun)|toreador|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+bullfighting|1
+(noun)|tauromachy|blood sport (generic term)
+bullfinch|2
+(noun)|Bullfinch|Charles Bullfinch|architect (generic term)|designer (generic term)
+(noun)|Pyrrhula pyrrhula|finch (generic term)
+bullfrog|1
+(noun)|Rana catesbeiana|true frog (generic term)|ranid (generic term)
+bullhead|2
+(noun)|sculpin (generic term)
+(noun)|catfish (generic term)|siluriform fish (generic term)
+bullheaded|1
+(adj)|bullet-headed|pigheaded|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+bullheadedness|1
+(noun)|stubbornness|obstinacy|obstinance|pigheadedness|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+bullhorn|1
+(noun)|loud-hailer|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+bullied|1
+(adj)|browbeaten|cowed|hangdog|intimidated|afraid (similar term)
+bullion|2
+(noun)|precious metal (generic term)
+(noun)|ingot (generic term)|metal bar (generic term)|block of metal (generic term)
+bullish|1
+(adj)|optimistic (similar term)
+bullnecked|1
+(adj)|strong (similar term)
+bullnose|1
+(noun)|bullnosed plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+bullnosed plane|1
+(noun)|bullnose|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+bullock|2
+(noun)|bull (generic term)|young mammal (generic term)
+(noun)|steer|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)|male (generic term)
+bullock's heart|2
+(noun)|bullock's heart tree|bullock heart|Annona reticulata|custard apple (generic term)|custard apple tree (generic term)
+(noun)|Jamaica apple|custard apple (generic term)
+bullock's heart tree|1
+(noun)|bullock's heart|bullock heart|Annona reticulata|custard apple (generic term)|custard apple tree (generic term)
+bullock's oriole|1
+(noun)|Bullock's oriole|Icterus galbula bullockii|northern oriole (generic term)|Icterus galbula (generic term)
+bullock block|1
+(noun)|bollock|pulley (generic term)|pulley-block (generic term)|block (generic term)
+bullock heart|1
+(noun)|bullock's heart|bullock's heart tree|Annona reticulata|custard apple (generic term)|custard apple tree (generic term)
+bullocky|1
+(adj)|strong (similar term)
+bullpen|2
+(noun)|area (generic term)
+(noun)|detention cell|detention centre|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+bullring|1
+(noun)|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+bullrush|2
+(noun)|cat's-tail|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail (generic term)
+(noun)|bulrush|common rush|soft rush|Juncus effusus|rush (generic term)
+bullshit|2
+(noun)|bull|Irish bull|horseshit|shit|crap|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+(verb)|bull|fake|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+bullshot|1
+(noun)|cocktail (generic term)
+bullterrier|1
+(noun)|bull terrier|terrier (generic term)
+bully|4
+(adj)|bang-up|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(noun)|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(verb)|strong-arm|browbeat|bullyrag|ballyrag|boss around|hector|push around|intimidate (generic term)
+(verb)|browbeat|swagger|wheedle (generic term)|cajole (generic term)|palaver (generic term)|blarney (generic term)|coax (generic term)|sweet-talk (generic term)|inveigle (generic term)
+bully beef|1
+(noun)|corned beef|corn beef|beef (generic term)|boeuf (generic term)
+bully off|1
+(verb)|face off|play (generic term)
+bully pulpit|1
+(noun)|public office (generic term)
+bully tree|1
+(noun)|balata|balata tree|beefwood|Manilkara bidentata|tree (generic term)
+bullyboy|1
+(noun)|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+bullying|2
+(adj)|blustery|domineering (similar term)
+(noun)|intimidation|aggression (generic term)
+bullyrag|1
+(verb)|strong-arm|bully|browbeat|ballyrag|boss around|hector|push around|intimidate (generic term)
+bulnesia|1
+(noun)|Bulnesia|genus Bulnesia|rosid dicot genus (generic term)
+bulnesia sarmienti|1
+(noun)|palo santo|Bulnesia sarmienti|angiospermous tree (generic term)|flowering tree (generic term)
+bulrush|2
+(noun)|cat's-tail|bullrush|nailrod|reed mace|reedmace|Typha latifolia|cattail (generic term)
+(noun)|bullrush|common rush|soft rush|Juncus effusus|rush (generic term)
+bulrush millet|1
+(noun)|pearl millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal (generic term)|cereal grass (generic term)
+bultmann|1
+(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+bulwark|4
+(noun)|rampart|wall|embankment (generic term)
+(noun)|barrier (generic term)
+(noun)|breakwater|groin|groyne|mole|seawall|jetty|barrier (generic term)
+(verb)|defend (generic term)
+bulwer-lytton|1
+(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer (generic term)|author (generic term)
+bum|7
+(adj)|cheap|cheesy|chintzy|crummy|punk|sleazy|tinny|inferior (similar term)
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|tramp|hobo|vagrant (generic term)|drifter (generic term)|floater (generic term)|vagabond (generic term)
+(noun)|idler|loafer|do-nothing|layabout|nonworker (generic term)
+(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 (generic term)
+(verb)|mooch|cadge|grub|sponge|obtain (generic term)
+(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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+bumble|3
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|stumble|falter|walk (generic term)
+(verb)|stutter|stammer|falter|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+bumblebee|1
+(noun)|humblebee|bee (generic term)
+bumbler|1
+(noun)|bungler|blunderer|fumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+bumbling|1
+(adj)|bungling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit (similar term)
+bumboat|1
+(noun)|boat (generic term)
+bumelia|1
+(noun)|Bumelia|genus Bumelia|dicot genus (generic term)|magnoliopsid genus (generic term)
+bumelia lanuginosa|1
+(noun)|false buckthorn|chittamwood|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn (generic term)
+bumelia lycioides|1
+(noun)|southern buckthorn|shittimwood|shittim|mock orange|Bumelia lycioides|buckthorn (generic term)
+bumf|1
+(noun)|bumph|toilet tissue (generic term)|toilet paper (generic term)|bathroom tissue (generic term)
+bummer|2
+(noun)|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(noun)|effect (generic term)
+bump|8
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|bulge|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+(noun)|blow|impact (generic term)
+(verb)|knock|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)|knock against (related term)|knock about (related term)|bump into (related term)
+(verb)|find|happen|chance|encounter
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|demote|relegate|break|kick downstairs|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|bump off (related term)|promote (antonym)
+(verb)|dislodge|displace|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+bump around|1
+(verb)|jar|shake up|move (generic term)|displace (generic term)
+bump into|1
+(verb)|run into|jar against|butt against|knock against|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+bump off|1
+(verb)|murder|slay|hit|dispatch|off|polish off|remove|kill (generic term)
+bump up|1
+(verb)|raise (generic term)
+bumper|3
+(adj)|abundant (similar term)
+(noun)|glass (generic term)|drinking glass (generic term)
+(noun)|mechanical device (generic term)
+bumper-to-bumper|1
+(adj)|slow (similar term)
+bumper car|1
+(noun)|Dodgem|vehicle (generic term)
+bumper guard|1
+(noun)|mechanical device (generic term)
+bumper jack|1
+(noun)|jack (generic term)
+bumph|1
+(noun)|bumf|toilet tissue (generic term)|toilet paper (generic term)|bathroom tissue (generic term)
+bumpiness|1
+(noun)|roughness (generic term)|raggedness (generic term)
+bumpkin|1
+(noun)|yokel|rube|hick|yahoo|hayseed|chawbacon|rustic (generic term)
+bumpkinly|1
+(adj)|hick|rustic|unsophisticated|provincial (similar term)
+bumptious|1
+(adj)|self-assertive|forward (similar term)
+bumptiousness|1
+(noun)|cockiness|pushiness|forwardness|assertiveness (generic term)|self-assertiveness (generic term)
+bumpy|2
+(adj)|rough|rocky|jolty|jolting|jumpy|smooth (antonym)
+(adj)|rough (similar term)|unsmooth (similar term)
+bun|1
+(noun)|roll|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+bun-fight|1
+(noun)|bunfight|party (generic term)
+buna rubber|1
+(noun)|rubber (generic term)|synthetic rubber (generic term)
+bunce|1
+(noun)|boom|bonanza|gold rush|gravy|godsend|manna from heaven|windfall|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+bunch|5
+(noun)|clump|cluster|clustering|agglomeration (generic term)
+(noun)|crowd|crew|gang|gathering (generic term)|assemblage (generic term)
+(noun)|lot|caboodle|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|bunch together|bunch up|cluster (generic term)|constellate (generic term)|flock (generic term)|clump (generic term)
+(verb)|bunch up|bundle|cluster|clump|form (generic term)
+bunch grass|1
+(noun)|bunchgrass|grass (generic term)
+bunch together|1
+(verb)|bunch|bunch up|cluster (generic term)|constellate (generic term)|flock (generic term)|clump (generic term)
+bunch up|2
+(verb)|bunch together|bunch|cluster (generic term)|constellate (generic term)|flock (generic term)|clump (generic term)
+(verb)|bunch|bundle|cluster|clump|form (generic term)
+bunchberry|1
+(noun)|dwarf cornel|crackerberry|pudding berry|Cornus canadensis|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+bunche|1
+(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat (generic term)|diplomatist (generic term)
+bunched|1
+(adj)|bunchy|clustered|concentrated (similar term)
+bunchgrass|1
+(noun)|bunch grass|grass (generic term)
+bunchy|1
+(adj)|bunched|clustered|concentrated (similar term)
+bunco|2
+(noun)|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+bunco game|1
+(noun)|bunco|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+buncombe|1
+(noun)|bunk|bunkum|guff|rot|hogwash|drivel (generic term)|garbage (generic term)
+bundesbank|1
+(noun)|Bundesbank|central bank (generic term)
+bundle|7
+(noun)|package|packet|parcel|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|sheaf|package (generic term)|parcel (generic term)
+(noun)|pile|big bucks|megabucks|big money|money (generic term)
+(verb)|bundle up|roll up|pack (generic term)
+(verb)|bunch|bunch up|cluster|clump|form (generic term)
+(verb)|pack|wad|compact|arrange (generic term)|set up (generic term)|bundle off (related term)
+(verb)|practice bundling|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+bundle of his|1
+(noun)|atrioventricular bundle|bundle of His|atrioventricular trunk|truncus atrioventricularis|cardiac muscle (generic term)|heart muscle (generic term)
+bundle off|1
+(verb)|dispatch (generic term)|despatch (generic term)|send off (generic term)
+bundle up|2
+(verb)|bundle|roll up|pack (generic term)
+(verb)|dress (generic term)|get dressed (generic term)
+bundled-up|1
+(adj)|clothed (similar term)|clad (similar term)
+bundling|3
+(noun)|courtship (generic term)|wooing (generic term)|courting (generic term)|suit (generic term)
+(noun)|packing (generic term)|boxing (generic term)
+(noun)|shove (generic term)
+bunfight|1
+(noun)|bun-fight|party (generic term)
+bung|3
+(noun)|spile|plug (generic term)|stopper (generic term)|stopple (generic term)
+(verb)|tip|fee|give (generic term)|gift (generic term)|present (generic term)
+(verb)|close (generic term)|shut (generic term)
+bungaloid|1
+(adj)|house (related term)
+bungalow|1
+(noun)|cottage|house (generic term)
+bungarus|1
+(noun)|Bungarus|genus Bungarus|reptile genus (generic term)
+bungarus fasciatus|1
+(noun)|banded krait|banded adder|Bungarus fasciatus|krait (generic term)
+bungee|1
+(noun)|bungee cord|rope (generic term)
+bungee cord|1
+(noun)|bungee|rope (generic term)
+bunghole|1
+(noun)|hole (generic term)
+bungle|3
+(noun)|blunder|blooper|bloomer|pratfall|foul-up|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+bungled|1
+(adj)|botched|unskilled (similar term)
+bungler|1
+(noun)|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+bunglesome|1
+(adj)|awkward|clumsy|ungainly|unwieldy (similar term)|unmanageable (similar term)
+bungling|2
+(adj)|clumsy|fumbling|incompetent|unskilled (similar term)
+(adj)|bumbling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit (similar term)
+bunion|1
+(noun)|swelling (generic term)|puffiness (generic term)|lump (generic term)
+bunji-bunji|1
+(noun)|Flindersia schottiana|silver ash (generic term)
+bunk|9
+(noun)|feed bunk|manger (generic term)|trough (generic term)
+(noun)|berth|built in bed|bed (generic term)
+(noun)|bed (generic term)
+(noun)|bunkum|buncombe|guff|rot|hogwash|drivel (generic term)|garbage (generic term)
+(noun)|nonsense|nonsensicality|meaninglessness|hokum|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|bunk bed|bed (generic term)
+(verb)|beat|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|bed (generic term)
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+bunk bed|1
+(noun)|bunk|bed (generic term)
+bunk down|1
+(verb)|bed down|go to bed (generic term)|turn in (generic term)|bed (generic term)|crawl in (generic term)|kip down (generic term)|hit the hay (generic term)|hit the sack (generic term)|sack out (generic term)|go to sleep (generic term)|retire (generic term)
+bunk off|1
+(verb)|play hooky|cut (generic term)|skip (generic term)
+bunker|6
+(noun)|sand trap|trap|hazard (generic term)
+(noun)|container (generic term)
+(noun)|dugout|fortification (generic term)|munition (generic term)
+(verb)|hit (generic term)
+(verb)|fuel (generic term)
+(verb)|transfer (generic term)|shift (generic term)
+bunker buster|1
+(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb (generic term)|LGB (generic term)
+bunker hill|1
+(noun)|Bunker Hill|battle of Bunker Hill|pitched battle (generic term)
+bunker mentality|1
+(noun)|defensiveness (generic term)
+bunkmate|1
+(noun)|acquaintance (generic term)|friend (generic term)
+bunko|1
+(noun)|bunco|bunco game|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+bunko game|1
+(noun)|bunco|bunco game|bunko|con|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+bunkum|1
+(noun)|bunk|buncombe|guff|rot|hogwash|drivel (generic term)|garbage (generic term)
+bunny|2
+(noun)|bunny girl|waitress (generic term)
+(noun)|bunny rabbit|rabbit (generic term)|coney (generic term)|cony (generic term)
+bunny girl|1
+(noun)|bunny|waitress (generic term)
+bunny hug|1
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+bunny rabbit|1
+(noun)|bunny|rabbit (generic term)|coney (generic term)|cony (generic term)
+buns|1
+(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 (generic term)
+bunsen|2
+(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist (generic term)
+(noun)|bunsen burner|etna|gas burner (generic term)|gas jet (generic term)
+bunsen burner|1
+(noun)|bunsen|etna|gas burner (generic term)|gas jet (generic term)
+bunt|6
+(noun)|hit (generic term)|hitting (generic term)|striking (generic term)
+(noun)|stinking smut|smut (generic term)
+(noun)|stinking smut|Tilletia foetida|smut (generic term)|smut fungus (generic term)
+(noun)|Tilletia caries|smut (generic term)|smut fungus (generic term)
+(verb)|drag a bunt|hit (generic term)
+(verb)|butt|strike (generic term)|butt against (related term)
+buntal|1
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+bunter|1
+(noun)|batter (generic term)|hitter (generic term)|slugger (generic term)|batsman (generic term)
+bunting|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|finch (generic term)
+bunuel|1
+(noun)|Bunuel|Luis Bunuel|film director (generic term)|director (generic term)
+bunya bunya|2
+(noun)|bunya bunya tree|Araucaria bidwillii|araucaria (generic term)
+(noun)|edible nut (generic term)
+bunya bunya tree|1
+(noun)|bunya bunya|Araucaria bidwillii|araucaria (generic term)
+bunyan|2
+(noun)|Bunyan|John Bunyan|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)|writer (generic term)|author (generic term)
+(noun)|Bunyan|Paul Bunyan|fictional character (generic term)|fictitious character (generic term)|character (generic term)|lumberman (generic term)|lumberjack (generic term)|logger (generic term)|feller (generic term)|faller (generic term)
+bunyaviridae|1
+(noun)|Bunyaviridae|arbovirus (generic term)|arborvirus (generic term)
+bunyavirus|1
+(noun)|animal virus (generic term)
+buoy|4
+(noun)|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(verb)|float (generic term)|swim (generic term)
+(verb)|buoy up|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|mark (generic term)
+buoy up|3
+(verb)|lighten|lighten up|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+(verb)|lighten|lighten up|cheer (generic term)|weigh down (antonym)
+(verb)|buoy|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+buoyancy|4
+(noun)|perkiness|cheerfulness (generic term)|blitheness (generic term)
+(noun)|airiness|lightness (generic term)|weightlessness (generic term)
+(noun)|tendency (generic term)|inclination (generic term)
+(noun)|irrepressibility|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+buoyant|2
+(adj)|floaty|light (similar term)
+(adj)|chirpy|perky|cheerful (similar term)
+buoyantly|1
+(adv)|chirpily
+buphthalmum|1
+(noun)|Buphthalmum|genus Buphthalmum|asterid dicot genus (generic term)
+buphthalmum salicifolium|1
+(noun)|woodland oxeye|Buphthalmum salicifolium|oxeye (generic term)
+bur|3
+(noun)|burr|pericarp (generic term)|seed vessel (generic term)
+(noun)|burr|bit (generic term)
+(verb)|burr|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+bur-reed family|1
+(noun)|Sparganiaceae|family Sparganiaceae|monocot family (generic term)|liliopsid family (generic term)
+bur grass|1
+(noun)|burgrass|grass (generic term)
+bur marigold|1
+(noun)|burr marigold|beggar-ticks|beggar's-ticks|sticktight|subshrub (generic term)|suffrutex (generic term)
+bur oak|1
+(noun)|burr oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak (generic term)
+bur reed|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bura|1
+(noun)|Bura|Pabir|Biu-Mandara (generic term)
+burbage|1
+(noun)|Burbage|Richard Burbage|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+burbank|1
+(noun)|Burbank|Luther Burbank|horticulturist (generic term)|plantsman (generic term)
+burberry|1
+(noun)|Burberry|raincoat (generic term)|waterproof (generic term)
+burble|1
+(verb)|ripple|babble|guggle|bubble|gurgle|sound (generic term)|go (generic term)
+burbling|1
+(adj)|burbly|effusive|gushing|lively (similar term)
+burbly|1
+(adj)|burbling|effusive|gushing|lively (similar term)
+burbot|1
+(noun)|eelpout|ling|cusk|Lota lota|cod (generic term)|codfish (generic term)
+burchell's zebra|1
+(noun)|common zebra|Burchell's zebra|Equus Burchelli|zebra (generic term)
+burden|6
+(noun)|load|encumbrance|incumbrance|onus|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+(noun)|load|loading|weight (generic term)
+(noun)|effect|essence|core|gist|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|idea (generic term)|thought (generic term)
+(verb)|burthen|weight|weight down|charge (generic term)|unburden (antonym)
+(verb)|charge|saddle|command (generic term)|require (generic term)|compel (generic term)
+burden of proof|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+burdened|2
+(adj)|bowed down (similar term)|loaded down (similar term)|overburdened (similar term)|weighed down (similar term)|laden (similar term)|oppressed (similar term)|saddled (similar term)|unburdened (antonym)
+(adj)|heavy-laden|loaded down|encumbered (similar term)
+burdenless|1
+(adj)|unburdened|unencumbered (similar term)
+burdensome|1
+(adj)|onerous|taxing|heavy (similar term)
+burdensomeness|1
+(noun)|heaviness|onerousness|oppressiveness|difficulty (generic term)|difficultness (generic term)
+burdock|1
+(noun)|clotbur|subshrub (generic term)|suffrutex (generic term)
+bureau|2
+(noun)|agency|federal agency|government agency|office|authority|administrative unit (generic term)|administrative body (generic term)
+(noun)|chest of drawers|chest|dresser|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+bureau de change|1
+(noun)|company (generic term)
+bureau of alcohol tobacco and firearms|1
+(noun)|Bureau of Alcohol Tobacco and Firearms|ATF|law enforcement agency (generic term)
+bureau of customs|1
+(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of diplomatic security|1
+(noun)|Bureau of Diplomatic Security|DS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of engraving and printing|1
+(noun)|Bureau of Engraving and Printing|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of intelligence and research|1
+(noun)|Bureau of Intelligence and Research|INR|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of justice assistance|1
+(noun)|Bureau of Justice Assistance|BJA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of justice statistics|1
+(noun)|Bureau of Justice Statistics|BJS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureau of the census|1
+(noun)|Bureau of the Census|Census Bureau|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+bureaucracy|3
+(noun)|bureaucratism|government officials (generic term)|officialdom (generic term)
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+bureaucrat|1
+(noun)|administrative official|official (generic term)|functionary (generic term)
+bureaucratic|1
+(adj)|official|functionary (related term)|government officials|officialdom (related term)
+bureaucratic procedure|1
+(noun)|red tape|procedure (generic term)
+bureaucratism|1
+(noun)|bureaucracy|government officials (generic term)|officialdom (generic term)
+buret|1
+(noun)|burette|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+burette|1
+(noun)|buret|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+burg|1
+(noun)|town (generic term)
+burgeon|1
+(verb)|grow (generic term)
+burgeon forth|1
+(verb)|shoot|spud|germinate|pullulate|bourgeon|sprout|grow (generic term)
+burger|2
+(noun)|Burger|Warren Burger|Warren E. Burger|Warren Earl Burger|chief justice (generic term)
+(noun)|hamburger|beefburger|sandwich (generic term)
+burgess|2
+(noun)|Burgess|Anthony Burgess|writer (generic term)|author (generic term)
+(noun)|burgher|Englishman (generic term)
+burgh|1
+(noun)|borough (generic term)
+burgher|2
+(noun)|burgess|Englishman (generic term)
+(noun)|bourgeois|commoner (generic term)|common man (generic term)|common person (generic term)
+burglar|1
+(noun)|thief (generic term)|stealer (generic term)
+burglar alarm|2
+(noun)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+burglarious|1
+(adj)|felony (related term)
+burglarise|1
+(verb)|burglarize|burgle|heist|steal (generic term)
+burglarize|1
+(verb)|burglarise|burgle|heist|steal (generic term)
+burglarproof|1
+(adj)|protected (similar term)|secure (similar term)
+burglary|1
+(noun)|felony (generic term)
+burgle|1
+(verb)|burglarize|burglarise|heist|steal (generic term)
+burgomaster|1
+(noun)|mayor (generic term)|city manager (generic term)
+burgoo|3
+(noun)|oatmeal|porridge (generic term)
+(noun)|cookout (generic term)
+(noun)|stew (generic term)
+burgoyne|1
+(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general (generic term)|full general (generic term)
+burgrass|1
+(noun)|bur grass|grass (generic term)
+burgrave|2
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|military governor (generic term)
+burgundy|3
+(noun)|Bourgogne|Burgundy|French region (generic term)
+(noun)|Burgundy|Burgundy wine|wine (generic term)|vino (generic term)
+(noun)|dark red (generic term)
+burgundy sauce|1
+(noun)|bourguignon|bourguignon sauce|Burgundy sauce|sauce (generic term)
+burgundy wine|1
+(noun)|Burgundy|Burgundy wine|wine (generic term)|vino (generic term)
+burhinidae|1
+(noun)|Burhinidae|family Burhinidae|bird family (generic term)
+burhinus|1
+(noun)|Burhinus|genus Burhinus|bird genus (generic term)
+burhinus oedicnemus|1
+(noun)|stone curlew|thick-knee|Burhinus oedicnemus|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+burial|2
+(noun)|entombment|inhumation|interment|sepulture|funeral (generic term)
+(noun)|burying|concealment (generic term)|concealing (generic term)|hiding (generic term)
+burial chamber|1
+(noun)|sepulcher|sepulchre|sepulture|grave (generic term)|tomb (generic term)|chamber (generic term)
+burial garment|1
+(noun)|cloth covering (generic term)
+burial ground|1
+(noun)|cemetery|graveyard|burial site|burying ground|memorial park|necropolis|site (generic term)|land site (generic term)
+burial mound|1
+(noun)|grave mound|barrow|tumulus|mound (generic term)|hill (generic term)
+burial site|1
+(noun)|cemetery|graveyard|burial ground|burying ground|memorial park|necropolis|site (generic term)|land site (generic term)
+burial vault|1
+(noun)|vault|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+buried|1
+(adj)|inhumed|interred|belowground (similar term)|unburied (antonym)
+burin|1
+(noun)|chisel (generic term)
+burk|1
+(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman (generic term)
+burka|1
+(noun)|burqa|garment (generic term)
+burke|4
+(noun)|Burke|Edmund Burke|statesman (generic term)|solon (generic term)|national leader (generic term)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman (generic term)
+(verb)|murder (generic term)|slay (generic term)|hit (generic term)|dispatch (generic term)|bump off (generic term)|off (generic term)|polish off (generic term)|remove (generic term)
+(verb)|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+burked|1
+(adj)|suppressed (similar term)
+burkina faso|1
+(noun)|Burkina Faso|Upper Volta|country (generic term)|state (generic term)|land (generic term)
+burkina faso franc|1
+(noun)|Burkina Faso franc|franc (generic term)
+burl|4
+(noun)|wood (generic term)
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|slub|knot|roughness (generic term)|raggedness (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+burlap|1
+(noun)|gunny|sacking (generic term)|bagging (generic term)
+burlap bag|1
+(noun)|gunnysack|gunny sack|bag (generic term)
+burled|1
+(adj)|patterned (similar term)
+burlesque|4
+(adj)|show (related term)
+(noun)|show (generic term)
+(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(verb)|spoof|parody|mock (generic term)
+burlington|1
+(noun)|Burlington|city (generic term)|metropolis (generic term)|urban center (generic term)
+burly|1
+(adj)|beefy|husky|strapping|buirdly|robust (similar term)
+burma|1
+(noun)|Myanmar|Union of Burma|Burma|Asian country (generic term)|Asian nation (generic term)
+burma padauk|1
+(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree (generic term)
+burmannia|1
+(noun)|Burmannia|genus Burmannia|monocot genus (generic term)|liliopsid genus (generic term)
+burmanniaceae|1
+(noun)|Burmanniaceae|family Burmanniaceae|monocot family (generic term)|liliopsid family (generic term)
+burmeisteria|1
+(noun)|Burmeisteria|genus Burmeisteria|mammal genus (generic term)
+burmeisteria retusa|1
+(noun)|greater pichiciego|Burmeisteria retusa|armadillo (generic term)
+burmese|3
+(adj)|Burmese|Asian country|Asian nation (related term)
+(noun)|Burmese|Asian (generic term)|Asiatic (generic term)
+(noun)|Burmese|Lolo-Burmese (generic term)|Burmese-Yi (generic term)
+burmese-yi|1
+(noun)|Lolo-Burmese|Burmese-Yi|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+burmese cat|1
+(noun)|Burmese cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+burmese rosewood|1
+(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree (generic term)
+burn|20
+(noun)|burning|pain (generic term)|hurting (generic term)
+(noun)|tan|suntan|sunburn|hyperpigmentation (generic term)
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|burn mark|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+(verb)|fire|burn down|destroy (generic term)|ruin (generic term)
+(verb)|glow|shine (generic term)|beam (generic term)
+(verb)|combust|change state (generic term)|turn (generic term)
+(verb)|bite|sting|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|combust
+(verb)|feel (generic term)|experience (generic term)
+(verb)|incinerate|change integrity (generic term)
+(verb)|execute (generic term)|put to death (generic term)
+(verb)|waste (generic term)|blow (generic term)|squander (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|cauterize|cauterise|treat (generic term)|care for (generic term)
+(verb)|sunburn|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|cut|produce (generic term)|make (generic term)|create (generic term)
+(verb)|burn off|burn up|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|damage (generic term)
+burn bag|1
+(noun)|bag (generic term)
+burn center|1
+(noun)|center (generic term)|centre (generic term)
+burn down|2
+(verb)|burn up|go up|burn (generic term)|combust (generic term)
+(verb)|burn|fire|destroy (generic term)|ruin (generic term)
+burn mark|1
+(noun)|burn|blemish (generic term)|defect (generic term)|mar (generic term)
+burn off|2
+(verb)|burn|burn up|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|denude (generic term)|bare (generic term)|denudate (generic term)|strip (generic term)
+burn out|1
+(verb)|blow out|blow|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+burn plant|1
+(noun)|Aloe vera|aloe (generic term)
+burn up|3
+(verb)|flare|flame up|blaze up|burn (generic term)|combust (generic term)
+(verb)|burn off|burn|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|burn down|go up|burn (generic term)|combust (generic term)
+burnability|1
+(noun)|combustibility|combustibleness|quality (generic term)
+burnable|1
+(adj)|ignitable|ignitible|combustible (similar term)
+burned|6
+(adj)|burnt|unburned (antonym)
+(adj)|injured (similar term)
+(adj)|burnt|treated (similar term)
+(adj)|baked|burnt|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+(adj)|burnt|burned-over|burned-out|burnt-out|destroyed (similar term)
+(adj)|burnt|cooked (similar term)
+burned-out|3
+(adj)|burnt-out|tired (similar term)
+(adj)|burnt-out|unserviceable (similar term)
+(adj)|burned|burnt|burned-over|burnt-out|destroyed (similar term)
+burned-over|1
+(adj)|burned|burnt|burned-out|burnt-out|destroyed (similar term)
+burner|2
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|heating element (generic term)
+burnet bloodwort|1
+(noun)|salad burnet|pimpernel|Poterium sanguisorba|herb (generic term)|herbaceous plant (generic term)
+burnett|1
+(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer (generic term)|author (generic term)
+burnham|1
+(noun)|Burnham|Daniel Hudson Burnham|architect (generic term)|designer (generic term)
+burning|12
+(adj)|painful (similar term)
+(adj)|hot (similar term)
+(adj)|ardent|fervent|fervid|fiery|impassioned|perfervid|torrid|passionate (similar term)
+(adj)|ablaze|afire|aflame|aflare|alight|blazing|flaming|on fire|lighted (similar term)|lit (similar term)
+(adj)|important (similar term)|of import (similar term)
+(adj)|fueled (similar term)
+(noun)|combustion|change of integrity (generic term)
+(noun)|burn|pain (generic term)|hurting (generic term)
+(noun)|combustion|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+(noun)|electrocution|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|burning at the stake|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|torture (generic term)|torturing (generic term)
+burning at the stake|1
+(noun)|burning|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+burning bush|4
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|wahoo|Euonymus atropurpureus|shrub (generic term)|bush (generic term)
+(noun)|fraxinella|dittany|gas plant|Dictamnus alba|herb (generic term)|herbaceous plant (generic term)
+(noun)|summer cypress|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+burnish|2
+(noun)|polish|gloss|glossiness|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)|smoothness (generic term)
+(verb)|buff|furbish|flush|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+burnished|1
+(adj)|bright|lustrous|shining|shiny|polished (similar term)
+burnoose|1
+(noun)|burnous|burnouse|cloak (generic term)
+burnous|1
+(noun)|burnoose|burnouse|cloak (generic term)
+burnouse|1
+(noun)|burnous|burnoose|cloak (generic term)
+burns|2
+(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian (generic term)|comedian (generic term)|comic (generic term)
+(noun)|Burns|Robert Burns|poet (generic term)
+burnside|2
+(noun)|Burnside|A. E. Burnside|Ambrose Everett Burnside|general (generic term)|full general (generic term)
+(noun)|sideburn|mutton chop|side-whiskers|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+burnt|5
+(adj)|burned|cooked (similar term)
+(adj)|burned|unburned (antonym)
+(adj)|burned|treated (similar term)
+(adj)|baked|burned|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+(adj)|burned|burned-over|burned-out|burnt-out|destroyed (similar term)
+burnt-out|3
+(adj)|burned-out|tired (similar term)
+(adj)|burned-out|unserviceable (similar term)
+(adj)|burned|burnt|burned-over|burned-out|destroyed (similar term)
+burnt lime|1
+(noun)|calcium oxide|quicklime|lime|calx|calcined lime|fluxing lime|unslaked lime|oxide (generic term)
+burnt sienna|2
+(noun)|reddish brown|sepia|Venetian red|brown (generic term)|brownness (generic term)
+(noun)|sienna (generic term)
+burnt umber|2
+(noun)|umber (generic term)
+(noun)|chocolate|coffee|deep brown|umber|brown (generic term)|brownness (generic term)
+burnup|2
+(noun)|race (generic term)
+(noun)|consumption (generic term)|using up (generic term)|expenditure (generic term)
+burp|2
+(noun)|belch|belching|burping|eructation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+(verb)|bubble|belch|eruct|emit (generic term)|breathe (generic term)|pass off (generic term)
+burp gun|1
+(noun)|machine pistol|submachine gun (generic term)
+burping|1
+(noun)|belch|belching|burp|eructation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+burqa|1
+(noun)|burka|garment (generic term)
+burr|6
+(noun)|bur|pericarp (generic term)|seed vessel (generic term)
+(noun)|projection (generic term)
+(noun)|Burr|Aaron Burr|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|power tool (generic term)
+(noun)|bur|bit (generic term)
+(verb)|bur|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+burr-headed|1
+(adj)|headed (similar term)
+burr drill|1
+(noun)|dentist's drill|drill (generic term)
+burr marigold|1
+(noun)|bur marigold|beggar-ticks|beggar's-ticks|sticktight|subshrub (generic term)|suffrutex (generic term)
+burr oak|1
+(noun)|bur oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak (generic term)
+burrawong|1
+(noun)|Macrozamia communis|Macrozamia spiralis|cycad (generic term)
+burred|1
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burry|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+burrfish|1
+(noun)|spiny puffer (generic term)
+burrhus frederic skinner|1
+(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist (generic term)
+burrill bernard crohn|1
+(noun)|Crohn|Burrill Bernard Crohn|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+burrito|1
+(noun)|dish (generic term)
+burrlike|1
+(adj)|pericarp|seed vessel (related term)
+burro|1
+(noun)|domestic ass (generic term)|donkey (generic term)|Equus asinus (generic term)
+burro deer|1
+(noun)|mule deer|Odocoileus hemionus|deer (generic term)|cervid (generic term)
+burroughs|3
+(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer (generic term)|author (generic term)
+(noun)|Burroughs|William Seward Burroughs|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Burroughs|Edgar Rice Burroughs|writer (generic term)|author (generic term)
+burrow|2
+(noun)|tunnel|hole (generic term)|hollow (generic term)
+(verb)|tunnel|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+burry|1
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|prickly|setose|setaceous|spiny|thorny|armed (similar term)
+bursa|2
+(noun)|Bursa|Brusa|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|sac (generic term)
+bursa omentalis|1
+(noun)|omental bursa|lesser peritoneal cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+bursal|1
+(adj)|sac (related term)
+bursar|1
+(noun)|treasurer (generic term)|financial officer (generic term)
+bursary|1
+(noun)|treasury (generic term)|exchequer (generic term)
+bursera|1
+(noun)|Bursera|genus Bursera|rosid dicot genus (generic term)
+bursera microphylla|1
+(noun)|elephant tree|Bursera microphylla|incense tree (generic term)
+bursera simaruba|1
+(noun)|gumbo-limbo|Bursera simaruba|incense tree (generic term)
+burseraceae|1
+(noun)|Burseraceae|family Burseraceae|torchwood family|rosid dicot family (generic term)
+bursiform|1
+(adj)|pouch-shaped|pouchlike|saclike|concave (similar term)
+bursitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+burst|13
+(adj)|ruptured|busted|damaged (similar term)
+(noun)|explosion|change of integrity (generic term)
+(noun)|fusillade|salvo|volley|fire (generic term)|firing (generic term)
+(noun)|fit|activity (generic term)
+(noun)|outburst|flare-up|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|split|break open|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|break|erupt|express emotion (generic term)|express feelings (generic term)
+(verb)|explode|change integrity (generic term)|implode (antonym)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|abound|bristle|have (generic term)|feature (generic term)
+(verb)|emerge (generic term)
+(verb)|collapse
+(verb)|bust|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+burst forth|3
+(verb)|leap out|rush out|sally out|appear (generic term)
+(verb)|explode|break loose|change state (generic term)|turn (generic term)
+(verb)|effloresce|bloom (generic term)|blossom (generic term)|flower (generic term)
+burst in on|1
+(verb)|burst upon|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+burst out|3
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|pop out|appear (generic term)
+(verb)|erupt|irrupt|flare up|flare|break open|intensify (generic term)|deepen (generic term)
+burst upon|1
+(verb)|burst in on|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+burster|1
+(noun)|charge|bursting charge|explosive charge|explosive (generic term)
+bursting charge|1
+(noun)|charge|burster|explosive charge|explosive (generic term)
+bursting explosive|1
+(noun)|disrupting explosive|high explosive (generic term)
+burt|1
+(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist (generic term)
+burthen|2
+(noun)|load (generic term)|loading (generic term)|burden (generic term)
+(verb)|burden|weight|weight down|charge (generic term)|unburden (antonym)
+burton|3
+(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer (generic term)|adventurer (generic term)
+(noun)|Burton|Richard Burton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Burton|ale (generic term)
+burundi|2
+(adj)|Burundi|Burundian|African country|African nation (related term)
+(noun)|Burundi|Republic of Burundi|African country (generic term)|African nation (generic term)
+burundi franc|1
+(noun)|Burundi franc|franc (generic term)
+burundian|2
+(adj)|Burundi|Burundian|African country|African nation (related term)
+(noun)|Burundian|African (generic term)
+burunduki|1
+(noun)|baronduki|baranduki|barunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+burweed marsh elder|1
+(noun)|false ragweed|Iva xanthifolia|marsh elder (generic term)|iva (generic term)
+bury|6
+(verb)|hide (generic term)|conceal (generic term)
+(verb)|entomb|inhume|inter|lay to rest|lay (generic term)|put down (generic term)|repose (generic term)
+(verb)|situate (generic term)|fix (generic term)|posit (generic term)|deposit (generic term)
+(verb)|immerse|swallow|swallow up|eat up|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|sink|implant (generic term)|engraft (generic term)|embed (generic term)|imbed (generic term)|plant (generic term)
+(verb)|forget|remember (antonym)
+burying|1
+(noun)|burial|concealment (generic term)|concealing (generic term)|hiding (generic term)
+burying ground|1
+(noun)|cemetery|graveyard|burial site|burial ground|memorial park|necropolis|site (generic term)|land site (generic term)
+bus|7
+(noun)|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+(noun)|bus topology|topology (generic term)|network topology (generic term)
+(noun)|busbar|conductor (generic term)
+(noun)|jalopy|heap|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)|dysphemism (generic term)
+(verb)|transport (generic term)
+(verb)|ride (generic term)
+(verb)|take away (generic term)|take out (generic term)
+bus company|1
+(noun)|bus service|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)|transportation company (generic term)
+bus depot|1
+(noun)|bus terminal|bus station|coach station|terminal (generic term)|terminus (generic term)|depot (generic term)
+bus driver|1
+(noun)|busman|driver (generic term)
+bus fare|1
+(noun)|carfare|fare (generic term)|transportation (generic term)
+bus lane|1
+(noun)|traffic lane (generic term)
+bus line|1
+(noun)|transit line (generic term)
+bus route|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+bus service|1
+(noun)|bus company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)|transportation company (generic term)
+bus station|1
+(noun)|bus terminal|bus depot|coach station|terminal (generic term)|terminus (generic term)|depot (generic term)
+bus stop|1
+(noun)|stop (generic term)
+bus terminal|1
+(noun)|bus depot|bus station|coach station|terminal (generic term)|terminus (generic term)|depot (generic term)
+bus ticket|1
+(noun)|ticket (generic term)
+bus topology|1
+(noun)|bus|topology (generic term)|network topology (generic term)
+bus traffic|1
+(noun)|vehicular traffic (generic term)|vehicle traffic (generic term)
+busbar|1
+(noun)|bus|conductor (generic term)
+busboy|1
+(noun)|waiter's assistant|dining-room attendant (generic term)|restaurant attendant (generic term)
+busby|1
+(noun)|bearskin|shako|hat (generic term)|chapeau (generic term)|lid (generic term)
+bush|9
+(adj)|bush-league|inferior (similar term)
+(noun)|shrub|woody plant (generic term)|ligneous plant (generic term)
+(noun)|wilderness (generic term)|wild (generic term)
+(noun)|scrub|chaparral|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|Bush|George Bush|George W. Bush|George Walker Bush|President Bush|President George W. Bush|Dubyuh|Dubya|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Bush|Vannevar Bush|electrical engineer (generic term)
+(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|pubic hair|crotch hair|hair (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+bush-league|1
+(adj)|bush|inferior (similar term)
+bush administration|1
+(noun)|Bush administration|executive (generic term)
+bush baby|1
+(noun)|galago|bushbaby|lemur (generic term)
+bush bean|1
+(noun)|bean (generic term)|bean plant (generic term)
+bush clover|1
+(noun)|lespedeza|woody plant (generic term)|ligneous plant (generic term)
+bush hibiscus|1
+(noun)|Radyera farragei|Hibiscus farragei|shrub (generic term)|bush (generic term)
+bush honeysuckle|3
+(noun)|Tartarian honeysuckle|Lonicera tatarica|honeysuckle (generic term)
+(noun)|Diervilla sessilifolia|shrub (generic term)|bush (generic term)
+(noun)|Diervilla lonicera|shrub (generic term)|bush (generic term)
+bush jacket|1
+(noun)|jacket (generic term)
+bush lawyer|1
+(noun)|lawyerbush|lawyer bush|Rubus cissoides|Rubus australis|bramble bush (generic term)
+bush league|1
+(noun)|minor league|minors|league (generic term)|conference (generic term)
+bush leaguer|1
+(noun)|minor leaguer|ballplayer (generic term)|baseball player (generic term)
+bush nasturtium|1
+(noun)|Tropaeolum minus|nasturtium (generic term)
+bush out|1
+(verb)|expand (generic term)|spread out (generic term)
+bush pea|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+bush poppy|1
+(noun)|tree poppy|shrub (generic term)|bush (generic term)
+bush shrike|1
+(noun)|shrike (generic term)
+bush tit|1
+(noun)|bushtit|titmouse (generic term)|tit (generic term)
+bush vetch|1
+(noun)|Vicia sepium|vetch (generic term)
+bush violet|1
+(noun)|browallia|flower (generic term)
+bush willow|2
+(noun)|Combretum erythrophyllum|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Combretum appiculatum|angiospermous tree (generic term)|flowering tree (generic term)
+bushbaby|1
+(noun)|galago|bush baby|lemur (generic term)
+bushbuck|1
+(noun)|guib|Tragelaphus scriptus|harnessed antelope (generic term)
+bushed|1
+(adj)|all in|beat|dead|tired (similar term)
+bushel|3
+(noun)|United States dry unit (generic term)
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(verb)|repair|mend|fix|doctor|furbish up|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+bushel basket|1
+(noun)|basket (generic term)|handbasket (generic term)
+bushido|1
+(noun)|Bushido|code (generic term)|codification (generic term)
+bushing|2
+(noun)|insulator (generic term)|dielectric (generic term)|nonconductor (generic term)
+(noun)|cylindrical lining|lining (generic term)
+bushman|2
+(noun)|Bushman|nomad (generic term)
+(noun)|pioneer (generic term)
+bushman's poison|1
+(noun)|ordeal tree|Acocanthera oppositifolia|Acocanthera venenata|shrub (generic term)|bush (generic term)
+bushnell|1
+(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+bushtit|1
+(noun)|bush tit|titmouse (generic term)|tit (generic term)
+bushwhack|3
+(verb)|ambush|scupper|waylay|lurk|ambuscade|lie in wait|wait (generic term)
+(verb)|live (generic term)
+(verb)|make (generic term)|work (generic term)
+bushwhacker|2
+(noun)|hillbilly|rustic (generic term)
+(noun)|Confederate soldier (generic term)
+bushwhacking|1
+(adj)|concealed (similar term)
+bushy|2
+(adj)|shaggy|shaggy-haired|shaggy-coated|ungroomed (similar term)
+(adj)|branchy (similar term)
+bushy aster|1
+(noun)|Aster dumosus|aster (generic term)
+bushytail woodrat|1
+(noun)|packrat|pack rat|trade rat|Neotoma cinerea|wood rat (generic term)|wood-rat (generic term)
+business|9
+(noun)|concern|business concern|business organization|business organisation|enterprise (generic term)
+(noun)|commercial enterprise|business enterprise|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|business sector|sector (generic term)
+(noun)|business activity (generic term)|commercial activity (generic term)
+(noun)|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+(noun)|occupation|job|line of work|line|activity (generic term)
+(noun)|aim (generic term)|object (generic term)|objective (generic term)|target (generic term)
+(noun)|stage business|byplay|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+(noun)|clientele|patronage|people (generic term)
+business activity|1
+(noun)|commercial activity|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+business address|1
+(noun)|address (generic term)
+business agent|1
+(noun)|agent (generic term)
+business card|1
+(noun)|card (generic term)|identity card (generic term)
+business college|1
+(noun)|college (generic term)
+business community|1
+(noun)|businessmen|profession (generic term)|community (generic term)
+business concern|1
+(noun)|business|concern|business organization|business organisation|enterprise (generic term)
+business cycle|1
+(noun)|trade cycle|variation (generic term)|fluctuation (generic term)
+business data processing|1
+(noun)|administrative data processing|data processing (generic term)
+business deal|1
+(noun)|deal|trade|transaction (generic term)|dealing (generic term)|dealings (generic term)
+business deduction|1
+(noun)|tax write-off (generic term)|tax deduction (generic term)|deduction (generic term)
+business department|1
+(noun)|department (generic term)|section (generic term)
+business district|1
+(noun)|downtown|city district (generic term)
+business editor|1
+(noun)|newspaper editor (generic term)
+business enterprise|1
+(noun)|commercial enterprise|business|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+business establishment|1
+(noun)|place of business|establishment (generic term)
+business executive|1
+(noun)|corporate executive|executive (generic term)|executive director (generic term)
+business expense|1
+(noun)|trade expense|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+business firm|1
+(noun)|firm|house|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+business index|1
+(noun)|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+business interruption insurance|1
+(noun)|insurance (generic term)
+business leader|1
+(noun)|baron|big businessman|king|magnate|mogul|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+business letter|1
+(noun)|letter (generic term)|missive (generic term)
+business life|1
+(noun)|professional life|career (generic term)|calling (generic term)|vocation (generic term)
+business line|1
+(noun)|line|product line|line of products|line of merchandise|line of business|merchandise (generic term)|ware (generic term)|product (generic term)
+business loan|1
+(noun)|commercial loan|bank loan (generic term)
+business lunch|1
+(noun)|lunch (generic term)|luncheon (generic term)|tiffin (generic term)|dejeuner (generic term)
+business news|1
+(noun)|news (generic term)
+business office|1
+(noun)|office|place of business (generic term)|business establishment (generic term)
+business organisation|1
+(noun)|business|concern|business concern|business organization|enterprise (generic term)
+business organization|1
+(noun)|business|concern|business concern|business organisation|enterprise (generic term)
+business people|1
+(noun)|businesspeople|people (generic term)
+business relation|1
+(noun)|relation (generic term)
+business relationship|1
+(noun)|account|relationship (generic term)
+business school|1
+(noun)|graduate school (generic term)|grad school (generic term)
+business sector|1
+(noun)|business|sector (generic term)
+business suit|1
+(noun)|suit (generic term)|suit of clothes (generic term)
+business traveler|1
+(noun)|traveler (generic term)|traveller (generic term)
+businesslike|2
+(adj)|efficient (similar term)
+(adj)|earnest|purposeful (similar term)
+businessman|1
+(noun)|man of affairs|businessperson (generic term)|bourgeois (generic term)
+businessmen|1
+(noun)|business community|profession (generic term)|community (generic term)
+businesspeople|1
+(noun)|business people|people (generic term)
+businessperson|1
+(noun)|bourgeois|capitalist (generic term)
+businesswoman|1
+(noun)|businessperson (generic term)|bourgeois (generic term)
+busker|1
+(noun)|entertainer (generic term)
+buskin|1
+(noun)|combat boot|desert boot|half boot|top boot|boot (generic term)
+busload|1
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+busman|1
+(noun)|bus driver|driver (generic term)
+busman's holiday|1
+(noun)|vacationing (generic term)
+buspar|1
+(noun)|buspirone|BuSpar|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+buspirone|1
+(noun)|BuSpar|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+buss|2
+(noun)|kiss|osculation|touch (generic term)|touching (generic term)
+(verb)|kiss|osculate|touch (generic term)
+bust|10
+(adj)|broke|skint|stone-broke|stony-broke|poor (similar term)
+(noun)|flop|fizzle|failure (generic term)
+(noun)|female chest|thorax (generic term)|chest (generic term)|pectus (generic term)
+(noun)|sculpture (generic term)
+(noun)|tear|binge|bout|revel (generic term)|revelry (generic term)
+(verb)|break|destroy (generic term)|ruin (generic term)|bust up (related term)|break up (related term)|break apart (related term)|break off (related term)|break up (related term)|break down (related term)|repair (antonym)
+(verb)|raid|attack (generic term)|assail (generic term)
+(verb)|tear|rupture|snap|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|tear up (related term)|tear apart (related term)|tear down (related term)
+(verb)|break|wear|wear out|fall apart|decay (generic term)|crumble (generic term)|delapidate (generic term)|wear away (related term)|wear off (related term)|wear away (related term)|break away (related term)|break off (related term)|break up (related term)|break apart (related term)
+(verb)|burst|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+bust-up|1
+(noun)|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+bust-up takeover|1
+(noun)|leveraged buyout (generic term)
+bust up|1
+(verb)|wreck|wrack|destroy (generic term)|ruin (generic term)
+bustard|1
+(noun)|wading bird (generic term)|wader (generic term)
+bustard quail|1
+(noun)|button quail|button-quail|hemipode|wading bird (generic term)|wader (generic term)
+busted|2
+(adj)|burst|ruptured|damaged (similar term)
+(adj)|broken|damaged (similar term)
+buster|5
+(noun)|fellow|dude|man (generic term)|adult male (generic term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(noun)|broncobuster|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|baby buster|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+buster keaton|1
+(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian (generic term)|comic (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+bustier|1
+(noun)|top (generic term)
+bustle|3
+(noun)|hustle|flurry|ado|fuss|stir|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|bustle about|hustle|move (generic term)
+bustle about|1
+(verb)|bustle|hustle|move (generic term)
+bustling|1
+(adj)|active (similar term)
+busty|1
+(adj)|bosomy|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+busy|6
+(adj)|at work (similar term)|drudging (similar term)|laboring (similar term)|labouring (similar term)|toiling (similar term)|engaged (similar term)|occupied (similar term)|overbusy (similar term)|tied up (similar term)|up to (similar term)|diligent (related term)|employed (related term)|idle (antonym)
+(adj)|fussy|fancy (similar term)
+(adj)|interfering|meddlesome|meddling|officious|busybodied|intrusive (similar term)
+(adj)|active (similar term)
+(adj)|engaged|in use|occupied (similar term)
+(verb)|occupy|work (generic term)
+busy bee|1
+(noun)|eager beaver|live wire|sharpie|sharpy|actor (generic term)|doer (generic term)|worker (generic term)
+busybodied|1
+(adj)|interfering|meddlesome|meddling|officious|busy|intrusive (similar term)
+busybody|1
+(noun)|nosy-parker|nosey-parker|quidnunc|meddler (generic term)
+busyness|1
+(noun)|hum|action (generic term)|activity (generic term)|activeness (generic term)
+busywork|1
+(noun)|make-work|work (generic term)
+but|1
+(adv)|merely|simply|just|only
+but then|1
+(adv)|on the other hand|then again|on the one hand (antonym)
+butacaine|1
+(noun)|butacaine sulfate|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+butacaine sulfate|1
+(noun)|butacaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+butadiene|1
+(noun)|hydrocarbon (generic term)
+butane|1
+(noun)|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)|gas (generic term)|fuel (generic term)
+butanoic acid|1
+(noun)|butyric acid|saturated fatty acid (generic term)
+butanol|1
+(noun)|butyl alcohol|alcohol (generic term)
+butanone|1
+(noun)|methyl ethyl ketone|ketone (generic term)
+butat|1
+(noun)|butut|Gambian monetary unit (generic term)
+butazolidin|1
+(noun)|phenylbutazone|Butazolidin|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+butch|3
+(adj)|macho|masculine (similar term)
+(adj)|homosexual (similar term)
+(noun)|dike|dyke|lesbian (generic term)|tribade (generic term)|gay woman (generic term)
+butcher|5
+(noun)|meatman|merchant (generic term)|merchandiser (generic term)
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|slaughterer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+(verb)|slaughter|kill (generic term)
+butcher's broom|1
+(noun)|Ruscus aculeatus|shrub (generic term)|bush (generic term)
+butcher block|1
+(noun)|butcher board|slab (generic term)
+butcher board|1
+(noun)|butcher block|slab (generic term)
+butcher cumberland|1
+(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general (generic term)|full general (generic term)
+butcher knife|1
+(noun)|knife (generic term)
+butcher paper|1
+(noun)|wrapping paper (generic term)
+butcher shop|1
+(noun)|meat market|shop (generic term)|store (generic term)
+butcherbird|2
+(noun)|shrike (generic term)
+(noun)|Australian magpie (generic term)
+butchering|1
+(noun)|butchery|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+butcherly|2
+(adj)|botchy|unskillful|unskilled (similar term)
+(adj)|gory|sanguinary|sanguineous|slaughterous|bloody (similar term)
+butchery|3
+(noun)|abattoir|shambles|slaughterhouse|building (generic term)|edifice (generic term)
+(noun)|butchering|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|slaughter|massacre|mass murder|carnage|murder (generic term)|slaying (generic term)|execution (generic term)
+butea|1
+(noun)|Butea|genus Butea|rosid dicot genus (generic term)
+butea frondosa|1
+(noun)|dhak|dak|palas|Butea frondosa|Butea monosperma|tree (generic term)
+butea gum|1
+(noun)|gum butea|butea kino|Bengal kino|gum (generic term)
+butea kino|1
+(noun)|gum butea|butea gum|Bengal kino|gum (generic term)
+butea monosperma|1
+(noun)|dhak|dak|palas|Butea frondosa|Butea monosperma|tree (generic term)
+butene|1
+(noun)|butylene|gas (generic term)
+buteo|1
+(noun)|Buteo|genus Buteo|bird genus (generic term)
+buteo buteo|1
+(noun)|buzzard|Buteo buteo|hawk (generic term)
+buteo jamaicensis|1
+(noun)|redtail|red-tailed hawk|Buteo jamaicensis|hawk (generic term)
+buteo lagopus|1
+(noun)|rough-legged hawk|roughleg|Buteo lagopus|hawk (generic term)
+buteo lineatus|1
+(noun)|red-shouldered hawk|Buteo lineatus|hawk (generic term)
+buteonine|2
+(adj)|bird genus (related term)
+(noun)|hawk (generic term)
+butler|3
+(noun)|pantryman|manservant (generic term)
+(noun)|Butler|Samuel Butler|writer (generic term)|author (generic term)
+(noun)|Butler|Samuel Butler|poet (generic term)
+butt|12
+(noun)|butt end|stock (generic term)
+(noun)|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|goat|laughingstock|stooge|victim (generic term)|dupe (generic term)
+(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 (generic term)
+(noun)|target|sports equipment (generic term)
+(noun)|cigarette|cigaret|coffin nail|fag|roll of tobacco (generic term)|smoke (generic term)
+(noun)|butt joint|joint (generic term)
+(noun)|barrel (generic term)|cask (generic term)
+(noun)|stub|part (generic term)|portion (generic term)
+(verb)|border|adjoin|edge|abut|march|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|bunt|strike (generic term)|butt against (related term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+butt-weld|2
+(noun)|butt weld|butt joint (generic term)|butt (generic term)
+(verb)|buttweld|weld (generic term)
+butt-welding|1
+(noun)|butt welding|welding (generic term)
+butt against|2
+(verb)|border|adjoin|edge|abut|march|butt|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|run into|bump into|jar against|knock against|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+butt end|1
+(noun)|butt|stock (generic term)
+butt hinge|1
+(noun)|hinge (generic term)|flexible joint (generic term)
+butt in|1
+(verb)|chime in|cut in|put in|chisel in|barge in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+butt joint|1
+(noun)|butt|joint (generic term)
+butt on|1
+(verb)|border|adjoin|edge|abut|march|butt|butt against|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+butt pack|1
+(noun)|fanny pack|waist pack (generic term)|belt bag (generic term)
+butt shaft|1
+(noun)|arrow (generic term)
+butt weld|1
+(noun)|butt-weld|butt joint (generic term)|butt (generic term)
+butt welding|1
+(noun)|butt-welding|welding (generic term)
+butte|2
+(noun)|hill (generic term)
+(noun)|Butte|town (generic term)
+butter|3
+(noun)|dairy product (generic term)|food (generic term)|solid food (generic term)
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(verb)|cover (generic term)
+butter-and-eggs|1
+(noun)|toadflax|wild snapdragon|devil's flax|Linaria vulgaris|flower (generic term)
+butter-bean plant|1
+(noun)|sieva bean|butter bean|lima bean|Phaseolus lunatus|shell bean (generic term)|shell bean plant (generic term)
+butter-flower|1
+(noun)|buttercup|butterflower|crowfoot|goldcup|kingcup|herb (generic term)|herbaceous plant (generic term)
+butter-print|1
+(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|China jute|Abutilon theophrasti|mallow (generic term)
+butter bean|2
+(noun)|sieva bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean (generic term)|shell bean plant (generic term)
+(noun)|sieva bean|butterbean|civet bean|shell bean (generic term)
+butter churn|1
+(noun)|churn|vessel (generic term)
+butter cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+butter daisy|1
+(noun)|cowpen daisy|golden crownbeard|golden crown beard|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+butter dish|1
+(noun)|dish (generic term)
+butter knife|1
+(noun)|table knife (generic term)
+butter up|1
+(verb)|brown-nose|flatter (generic term)|blandish (generic term)
+butterball|2
+(noun)|fatso|fatty|fat person|roly-poly|large person (generic term)|thin person (antonym)
+(noun)|bufflehead|dipper|Bucephela albeola|duck (generic term)
+butterbean|1
+(noun)|sieva bean|butter bean|civet bean|shell bean (generic term)
+butterbur|1
+(noun)|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb (generic term)|herbaceous plant (generic term)
+buttercrunch|1
+(noun)|butterhead lettuce (generic term)
+buttercup|1
+(noun)|butterflower|butter-flower|crowfoot|goldcup|kingcup|herb (generic term)|herbaceous plant (generic term)
+buttercup family|1
+(noun)|Ranunculaceae|family Ranunculaceae|crowfoot family|magnoliid dicot family (generic term)
+buttercup squash|2
+(noun)|turban squash (generic term)|Cucurbita maxima turbaniformis (generic term)
+(noun)|turban squash (generic term)
+butterfat|1
+(noun)|animal fat (generic term)
+butterfield|1
+(noun)|Butterfield|William Butterfield|architect (generic term)|designer (generic term)
+butterfingered|1
+(adj)|bumbling|bungling|ham-fisted|ham-handed|handless|heavy-handed|left-handed|maladroit (similar term)
+butterfingers|1
+(noun)|clumsy person (generic term)
+butterfish|3
+(noun)|saltwater fish (generic term)
+(noun)|stromateid fish|stromateid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|rock gunnel|Pholis gunnellus|gunnel (generic term)|bracketed blenny (generic term)
+butterflower|1
+(noun)|buttercup|butter-flower|crowfoot|goldcup|kingcup|herb (generic term)|herbaceous plant (generic term)
+butterfly|5
+(noun)|lepidopterous insect (generic term)|lepidopteron (generic term)|lepidopteran (generic term)
+(noun)|butterfly stroke|swimming stroke (generic term)
+(verb)|flit (generic term)|flutter (generic term)|fleet (generic term)|dart (generic term)
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)
+(verb)|chat up|flirt|dally|coquet|coquette|romance|philander|mash|talk (generic term)|speak (generic term)
+butterfly-shaped|1
+(adj)|formed (similar term)
+butterfly bush|1
+(noun)|buddleia|shrub (generic term)|bush (generic term)
+butterfly collector|1
+(noun)|lepidopterist|lepidopterologist|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+butterfly effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+butterfly fish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+butterfly flower|2
+(noun)|poor man's orchid|schizanthus|flower (generic term)
+(noun)|Bauhinia monandra|shrub (generic term)|bush (generic term)
+butterfly nut|1
+(noun)|wing nut|wing-nut|wing screw|thumbnut|nut (generic term)
+butterfly orchid|5
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|oncidium|dancing lady orchid|butterfly plant|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Encyclia tampensis|Epidendrum tampense|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|butterfly orchis|Orchis papilionaceae|orchis (generic term)
+butterfly orchis|2
+(noun)|butterfly orchid|Epidendrum venosum|Encyclia venosa|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|butterfly orchid|Orchis papilionaceae|orchis (generic term)
+butterfly pea|3
+(noun)|blue pea|Clitoria turnatea|vine (generic term)
+(noun)|Clitoria mariana|vine (generic term)
+(noun)|Centrosema virginianum|vine (generic term)
+butterfly plant|2
+(noun)|Phalaenopsis amabilis|moth orchid (generic term)|moth plant (generic term)
+(noun)|oncidium|dancing lady orchid|butterfly orchid|orchid (generic term)|orchidaceous plant (generic term)
+butterfly ray|1
+(noun)|stingray (generic term)
+butterfly stroke|1
+(noun)|butterfly|swimming stroke (generic term)
+butterfly valve|1
+(noun)|valve (generic term)
+butterfly weed|1
+(noun)|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+butterflyfish|1
+(noun)|flying gurnard|flying robin|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+butterhead lettuce|1
+(noun)|lettuce (generic term)
+buttermilk|1
+(noun)|milk (generic term)
+buttermilk biscuit|1
+(noun)|soda biscuit|biscuit (generic term)
+buttermilk pancake|1
+(noun)|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+butternut|2
+(noun)|butternut tree|white walnut|Juglans cinerea|walnut (generic term)|walnut tree (generic term)
+(noun)|edible nut (generic term)
+butternut squash|2
+(noun)|Cucurbita maxima|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+butternut tree|1
+(noun)|butternut|white walnut|Juglans cinerea|walnut (generic term)|walnut tree (generic term)
+butterscotch|1
+(noun)|candy (generic term)|confect (generic term)
+butterweed|2
+(noun)|ragwort|Senecio glabellus|wildflower (generic term)|wild flower (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+butterwort|1
+(noun)|carnivorous plant (generic term)
+buttery|4
+(adj)|fulsome|oily|oleaginous|smarmy|soapy|unctuous|insincere (similar term)
+(adj)|fatty (similar term)|fat (similar term)
+(noun)|pantry|larder|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+(noun)|teashop (generic term)|teahouse (generic term)|tearoom (generic term)|tea parlor (generic term)|tea parlour (generic term)
+buttinsky|1
+(noun)|meddler (generic term)
+buttock|1
+(noun)|cheek|body part (generic term)
+buttocks|1
+(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 (generic term)
+button|9
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|push button|push|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|badge (generic term)
+(noun)|clitoris|clit|erectile organ (generic term)
+(noun)|release|device (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(verb)|add (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unbutton (antonym)
+button-down|2
+(adj)|buttoned-down|conservative|conventional (similar term)
+(adj)|buttoned (similar term)|fastened (similar term)
+button-quail|1
+(noun)|button quail|bustard quail|hemipode|wading bird (generic term)|wader (generic term)
+button-shaped|1
+(adj)|formed (similar term)
+button fern|2
+(noun)|Pellaea rotundifolia|fern (generic term)
+(noun)|Tectaria cicutaria|fern (generic term)
+button hole|1
+(noun)|buttonhole|hole (generic term)
+button mangrove|1
+(noun)|button tree|Conocarpus erectus|tree (generic term)
+button pink|1
+(noun)|Dianthus latifolius|pink (generic term)|garden pink (generic term)
+button quail|1
+(noun)|button-quail|bustard quail|hemipode|wading bird (generic term)|wader (generic term)
+button snakeroot|3
+(noun)|rattlesnake master|rattlesnake's master|Eryngium yuccifolium|perennial (generic term)
+(noun)|Eryngium aquaticum|herb (generic term)|herbaceous plant (generic term)
+(noun)|blazing star|gayfeather|gay-feather|snakeroot|wildflower (generic term)|wild flower (generic term)
+button tree|1
+(noun)|button mangrove|Conocarpus erectus|tree (generic term)
+button up|1
+(verb)|close up|clam up|dummy up|shut up|belt up|be quiet|keep mum|open up (antonym)
+buttoned|1
+(adj)|fastened|botonee (similar term)|botonnee (similar term)|button-down (similar term)|unbuttoned (antonym)
+buttoned-down|1
+(adj)|button-down|conservative|conventional (similar term)
+buttoned-up|2
+(adj)|taciturn (similar term)
+(adj)|conservative (similar term)
+buttonhole|2
+(noun)|button hole|hole (generic term)
+(verb)|lobby|solicit (generic term)|beg (generic term)|tap (generic term)
+buttonhole stitch|1
+(noun)|stitch (generic term)
+buttonhook|1
+(noun)|hook (generic term)
+buttonlike|1
+(adj)|beady|beadlike|buttony|bright (similar term)
+buttonwood|1
+(noun)|American sycamore|American plane|Platanus occidentalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+buttony|2
+(adj)|beady|beadlike|buttonlike|bright (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+buttress|3
+(noun)|buttressing|support (generic term)
+(verb)|reinforce (generic term)|reenforce (generic term)
+(verb)|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+buttressed|1
+(adj)|braced|supported (similar term)
+buttressing|1
+(noun)|buttress|support (generic term)
+buttweld|1
+(verb)|butt-weld|weld (generic term)
+butty|1
+(noun)|sandwich (generic term)
+butut|1
+(noun)|butat|Gambian monetary unit (generic term)
+butyl|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+butyl alcohol|1
+(noun)|butanol|alcohol (generic term)
+butyl nitrite|1
+(noun)|isobutyl nitrite|vasodilator (generic term)|vasodilative (generic term)|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+butyl rubber|1
+(noun)|rubber (generic term)|synthetic rubber (generic term)
+butylate|1
+(verb)|add (generic term)
+butylene|1
+(noun)|butene|gas (generic term)
+butyraceous|1
+(adj)|animal fat (related term)
+butyric|1
+(adj)|saturated fatty acid (related term)
+butyric acid|1
+(noun)|butanoic acid|saturated fatty acid (generic term)
+butyrin|1
+(noun)|glyceryl ester (generic term)
+buxaceae|1
+(noun)|Buxaceae|family Buxaceae|box family|dicot family (generic term)|magnoliopsid family (generic term)
+buxom|2
+(adj)|bosomy|busty|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+(adj)|chubby|embonpoint|plump|zaftig|zoftig|fat (similar term)
+buxomly|1
+(adv)|curvaceously
+buxomness|1
+(noun)|plumpness (generic term)|embonpoint (generic term)|roundness (generic term)
+buxus|1
+(noun)|Buxus|genus Buxus|dicot genus (generic term)|magnoliopsid genus (generic term)
+buxus sempervirens|1
+(noun)|common box|European box|Buxus sempervirens|box (generic term)|boxwood (generic term)
+buy|6
+(noun)|bargain|steal|purchase (generic term)
+(verb)|purchase|get (generic term)|acquire (generic term)|buy in (related term)|buy up (related term)|buy out (related term)|sell (antonym)
+(verb)|bribe|corrupt|grease one's palms|pay (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|believe (generic term)
+(verb)|be (generic term)
+buy-and-bust operation|1
+(noun)|undercover operation (generic term)
+buy at|1
+(verb)|patronize|patronise|shop|shop at|frequent|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+buy back|1
+(verb)|repurchase|buy (generic term)|purchase (generic term)
+buy food|1
+(verb)|take out|buy (generic term)|purchase (generic term)
+buy in|1
+(verb)|stock|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+buy into|1
+(verb)|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+buy it|1
+(verb)|pip out|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+buy off|1
+(verb)|pay off|bribe (generic term)|corrupt (generic term)|buy (generic term)|grease one's palms (generic term)
+buy out|1
+(verb)|take over|buy up|buy (generic term)|purchase (generic term)
+buy the farm|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+buy time|1
+(verb)|delay (generic term)|detain (generic term)|hold up (generic term)
+buy up|1
+(verb)|take over|buy out|buy (generic term)|purchase (generic term)
+buyback|1
+(noun)|redemption|repurchase|purchase (generic term)
+buyer|1
+(noun)|purchaser|emptor|vendee|customer (generic term)|client (generic term)
+buyer's market|1
+(noun)|buyers' market|soft market|market (generic term)|marketplace (generic term)
+buyers' market|1
+(noun)|buyer's market|soft market|market (generic term)|marketplace (generic term)
+buyi|1
+(noun)|Bouyei|Buyi|Tai (generic term)
+buying|1
+(noun)|purchasing|purchase (generic term)
+buyout|1
+(noun)|acquisition (generic term)
+buyout bid|1
+(noun)|bid (generic term)|tender (generic term)
+buzz|6
+(noun)|bombilation|bombination|sound (generic term)
+(noun)|activity (generic term)
+(verb)|bombinate|bombilate|sound (generic term)|go (generic term)
+(verb)|fly (generic term)|wing (generic term)
+(verb)|hum|seethe|be (generic term)
+(verb)|summon (generic term)
+buzz bomb|1
+(noun)|robot bomb|flying bomb|doodlebug|V-1|guided missile (generic term)
+buzz off|1
+(verb)|scram|fuck off|get|bugger off|leave (generic term)|go forth (generic term)|go away (generic term)
+buzz saw|1
+(noun)|circular saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+buzzard|2
+(noun)|turkey buzzard|turkey vulture|Cathartes aura|New World vulture (generic term)|cathartid (generic term)
+(noun)|Buteo buteo|hawk (generic term)
+buzzards bay|1
+(noun)|Buzzards Bay|bay (generic term)|embayment (generic term)
+buzzer|2
+(noun)|doorbell|bell|push button (generic term)|push (generic term)|button (generic term)
+(noun)|signaling device (generic term)
+buzzing|1
+(adj)|abuzz|droning|noisy (similar term)
+buzzword|1
+(noun)|cant|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+bvd|1
+(noun)|BVD|BVD's|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+bvd's|1
+(noun)|BVD|BVD's|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+bw|1
+(noun)|biological warfare|BW|biological attack|biologic attack|bioattack|war (generic term)|warfare (generic term)
+bw defence|1
+(noun)|biological warfare defense|biological warfare defence|BW defense|BW defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+bw defense|1
+(noun)|biological warfare defense|biological warfare defence|BW defense|BW defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+bwr|1
+(noun)|boiling water reactor|BWR|water-cooled reactor (generic term)
+by|2
+(adv)|past
+(adv)|aside|away
+by-and-by|1
+(noun)|future (generic term)|hereafter (generic term)|futurity (generic term)|time to come (generic term)
+by-bid|1
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)
+by-blow|1
+(noun)|bastard|love child|illegitimate child|illegitimate|whoreson|offspring (generic term)|progeny (generic term)|issue (generic term)
+by-catch|1
+(noun)|bycatch|marine animal (generic term)|marine creature (generic term)|sea animal (generic term)|sea creature (generic term)
+by-line|2
+(noun)|credit line|line (generic term)
+(noun)|avocation|hobby|pursuit|sideline|spare-time activity|pastime (generic term)|interest (generic term)|pursuit (generic term)
+by-product|2
+(noun)|byproduct|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|byproduct|spin-off|product (generic term)|production (generic term)
+by all means|1
+(adv)|by no means (antonym)
+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|naturally (antonym)
+by chance|4
+(adv)|incidentally|accidentally
+(adv)|perchance
+(adv)|haply|by luck
+(adv)|accidentally|circumstantially|unexpectedly|deliberately (antonym)
+by choice|2
+(adj)|voluntary (similar term)
+(adv)|intentionally|deliberately|designedly|on purpose|purposely|advisedly|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+by design|1
+(adv)|intentionally|deliberately|designedly|on purpose|purposely|advisedly|by choice|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+by election|1
+(noun)|bye election|election (generic term)
+by experimentation|1
+(adv)|experimentally|through an experiment
+by far|1
+(adv)|far and away|out and away
+by hand|1
+(adv)|by machine (antonym)
+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 machine|1
+(adv)|by hand (antonym)
+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 all means (antonym)
+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|theoretically (antonym)
+by word of mouth|2
+(adv)|viva voce
+(adv)|orally
+byblos|1
+(noun)|Byblos|dig (generic term)|excavation (generic term)|archeological site (generic term)
+bycatch|1
+(noun)|by-catch|marine animal (generic term)|marine creature (generic term)|sea animal (generic term)|sea creature (generic term)
+bydgoszcz|1
+(noun)|Bydgoszcz|Bromberg|city (generic term)|metropolis (generic term)|urban center (generic term)
+bye|2
+(noun)|pass|concession (generic term)|conceding (generic term)|yielding (generic term)
+(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye-bye|cheerio|good-by|goodby|good-bye|goodbye|good day|sayonara|so long|farewell (generic term)|word of farewell (generic term)
+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 (generic term)|word of farewell (generic term)
+bye election|1
+(noun)|by election|election (generic term)
+bye law|1
+(noun)|bylaw|rule (generic term)|prescript (generic term)
+byelarus|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+byelorussia|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+byelorussian|2
+(noun)|Byelorussian|Belorussian|White Russian|European (generic term)
+(noun)|Belarusian|Byelorussian|White Russian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+bygone|2
+(adj)|bypast|departed|foregone|gone|past (similar term)
+(noun)|water under the bridge|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+bylaw|1
+(noun)|bye law|rule (generic term)|prescript (generic term)
+byname|1
+(noun)|nickname|moniker|cognomen|sobriquet|soubriquet|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+bypass|4
+(noun)|circumferential|ring road|road (generic term)|route (generic term)
+(noun)|shunt (generic term)
+(noun)|shunt|electrical shunt|conductor (generic term)
+(verb)|short-circuit|go around|get around|avoid (generic term)
+bypass capacitor|1
+(noun)|bypass condenser|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+bypass condenser|1
+(noun)|bypass capacitor|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+bypast|1
+(adj)|bygone|departed|foregone|gone|past (similar term)
+bypath|1
+(noun)|byway|byroad|road (generic term)|route (generic term)
+byplay|1
+(noun)|business|stage business|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+byproduct|2
+(noun)|by-product|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|by-product|spin-off|product (generic term)|production (generic term)
+byrd|2
+(noun)|Byrd|William Byrd|organist (generic term)|composer (generic term)
+(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer (generic term)|adventurer (generic term)|naval officer (generic term)
+byre|1
+(noun)|cowbarn|cowshed|cow barn|cowhouse|barn (generic term)
+byrnie|1
+(noun)|hauberk|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+byroad|1
+(noun)|byway|bypath|road (generic term)|route (generic term)
+byron|1
+(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet (generic term)
+byssus|1
+(noun)|beard|fiber (generic term)|fibre (generic term)
+bystander|1
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+byte|1
+(noun)|computer memory unit (generic term)
+byway|1
+(noun)|bypath|byroad|road (generic term)|route (generic term)
+byword|1
+(noun)|proverb|adage|saw|saying (generic term)|expression (generic term)|locution (generic term)
+byzant|1
+(noun)|bezant|bezzant|solidus|coin (generic term)
+byzantine|5
+(adj)|Byzantine|Catholic Church (related term)
+(adj)|Byzantine|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|Byzantine|convoluted|involved|knotty|tangled|tortuous|complex (similar term)
+(adj)|Byzantine|artful (similar term)
+(noun)|Byzantine|Asian (generic term)|Asiatic (generic term)
+byzantine architecture|1
+(noun)|Byzantine architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+byzantine church|1
+(noun)|Eastern Church|Byzantine Church|Catholic Church (generic term)
+byzantine empire|1
+(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+byzantine greek|1
+(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+byzantinism|1
+(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine (generic term)
+byzantium|2
+(noun)|Byzantium|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+c|12
+(adj)|hundred|one hundred|100|cardinal (similar term)
+(noun)|degree centigrade|degree Celsius|C|degree (generic term)
+(noun)|speed of light|light speed|speed (generic term)|velocity (generic term)|constant (generic term)
+(noun)|deoxycytidine monophosphate|C|nucleotide (generic term)
+(noun)|cytosine|C|pyrimidine (generic term)
+(noun)|carbon|C|atomic number 6|chemical element (generic term)|element (generic term)
+(noun)|hundred|100|C|century|one C|centred|large integer (generic term)
+(noun)|coulomb|C|ampere-second|charge unit (generic term)|quantity unit (generic term)
+(noun)|C|programming language (generic term)|programing language (generic term)
+(noun)|C|tonic (generic term)|keynote (generic term)
+(noun)|C|letter c|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|coke|blow|nose candy|snow|C|cocaine (generic term)|cocain (generic term)
+c-clamp|1
+(noun)|C-clamp|clamp (generic term)|clinch (generic term)
+c-horizon|1
+(noun)|C-horizon|C horizon|soil horizon (generic term)
+c-note|1
+(noun)|hundred dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+c-ration|1
+(noun)|C-ration|field ration (generic term)
+c-reactive protein|1
+(noun)|C-reactive protein|CRP|serum globulin (generic term)
+c-section|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+c. d. gibson|1
+(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator (generic term)
+c. diphtheriae|1
+(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium (generic term)
+c. h. best|1
+(noun)|Best|C. H. Best|Charles Herbert Best|physiologist (generic term)
+c. k. ogden|1
+(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist (generic term)|semanticist (generic term)|semiotician (generic term)
+c. northcote parkinson|1
+(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian (generic term)|historiographer (generic term)
+c. p. snow|1
+(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer (generic term)|author (generic term)
+c. psittaci|1
+(noun)|Chlamydia psittaci|C. psittaci|chlamydia (generic term)
+c. s. forester|1
+(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer (generic term)|author (generic term)
+c. s. lewis|1
+(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer (generic term)|author (generic term)
+c. trachomatis|1
+(noun)|Chlamydia trachomatis|C. trachomatis|chlamydia (generic term)
+c. vann woodward|1
+(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian (generic term)|historiographer (generic term)
+c. w. post|1
+(noun)|Post|C. W. Post|Charles William Post|food manufacturer (generic term)
+c.e.|1
+(adv)|CE|C.E.|Common Era
+c.o.d.|1
+(adv)|C.O.D.|COD|cash on delivery
+c.p.u.|1
+(noun)|central processing unit|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+c2h6|1
+(noun)|ethane|C2H6|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)|hydrocarbon (generic term)
+c and w|1
+(noun)|country music|country and western|C and W|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+c battery|1
+(noun)|C battery|battery (generic term)|electric battery (generic term)
+c clef|1
+(noun)|C clef|clef (generic term)
+c compiler|1
+(noun)|C compiler|compiler (generic term)|compiling program (generic term)
+c horizon|1
+(noun)|C-horizon|C horizon|soil horizon (generic term)
+c major|1
+(noun)|C major|C major scale|scale of C major|major scale (generic term)|major diatonic scale (generic term)
+c major scale|1
+(noun)|C major|C major scale|scale of C major|major scale (generic term)|major diatonic scale (generic term)
+c program|1
+(noun)|C program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+ca|2
+(noun)|calcium|Ca|atomic number 20|metallic element (generic term)|metal (generic term)
+(noun)|California|Golden State|CA|Calif.|American state (generic term)
+ca-ca|1
+(verb)|stool|defecate|shit|take a shit|take a crap|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+caaba|1
+(noun)|Kaaba|Caaba|shrine (generic term)
+cab|4
+(noun)|compartment (generic term)
+(noun)|cabriolet|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|hack|taxi|taxicab|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(verb)|taxi|ride (generic term)
+cab fare|1
+(noun)|taxi fare|fare (generic term)|transportation (generic term)
+cabal|3
+(noun)|faction|junto|camarilla|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+(noun)|conspiracy|plot (generic term)|secret plan (generic term)|game (generic term)
+(verb)|conspire|complot|conjure|machinate|plot (generic term)
+cabala|2
+(noun)|cabbala|cabbalah|kabala|kabbala|kabbalah|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+cabalism|2
+(noun)|Kabbalism|Cabalism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|kabbalism|attachment (generic term)|adherence (generic term)|adhesion (generic term)
+cabalist|3
+(noun)|member (generic term)
+(noun)|kabbalist|expert (generic term)
+(noun)|Cabalist|Kabbalist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+cabalistic|1
+(adj)|kabbalistic|qabalistic|cryptic|cryptical|sibylline|esoteric (similar term)
+cabana|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+cabaret|2
+(noun)|nightclub|club|nightspot|spot (generic term)
+(noun)|floorshow|floor show|show (generic term)
+cabasset|1
+(noun)|morion|helmet (generic term)
+cabassous|1
+(noun)|tatouay|Cabassous unicinctus|armadillo (generic term)
+cabassous unicinctus|1
+(noun)|tatouay|cabassous|Cabassous unicinctus|armadillo (generic term)
+cabbage|4
+(noun)|chou|cruciferous vegetable (generic term)
+(noun)|boodle|bread|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|cultivated cabbage|Brassica oleracea|crucifer (generic term)|cruciferous plant (generic term)
+(verb)|pilfer|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+cabbage-bark tree|1
+(noun)|cabbage bark|cabbage tree|Andira inermis|angelim (generic term)|andelmin (generic term)
+cabbage-like|1
+(adj)|vegetable (similar term)
+cabbage bark|1
+(noun)|cabbage-bark tree|cabbage tree|Andira inermis|angelim (generic term)|andelmin (generic term)
+cabbage butterfly|1
+(noun)|pierid (generic term)|pierid butterfly (generic term)
+cabbage palm|4
+(noun)|cabbage palmetto|Sabal palmetto|palmetto (generic term)
+(noun)|Roystonea oleracea|palm (generic term)|palm tree (generic term)
+(noun)|cabbage tree|Livistona australis|palm (generic term)|palm tree (generic term)
+(noun)|Euterpe oleracea|palm (generic term)|palm tree (generic term)
+cabbage palmetto|1
+(noun)|cabbage palm|Sabal palmetto|palmetto (generic term)
+cabbage tree|3
+(noun)|cabbage palm|Livistona australis|palm (generic term)|palm tree (generic term)
+(noun)|cabbage bark|cabbage-bark tree|Andira inermis|angelim (generic term)|andelmin (generic term)
+(noun)|grass tree|Cordyline australis|tree (generic term)
+cabbageworm|1
+(noun)|Pieris rapae|caterpillar (generic term)
+cabbala|2
+(noun)|cabala|cabbalah|kabala|kabbala|kabbalah|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+cabbalah|2
+(noun)|cabala|cabbala|kabala|kabbala|kabbalah|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+cabby|1
+(noun)|taxidriver|taximan|cabdriver|cabman|hack driver|hack-driver|livery driver|driver (generic term)
+cabdriver|1
+(noun)|taxidriver|taximan|cabman|cabby|hack driver|hack-driver|livery driver|driver (generic term)
+cabell|1
+(noun)|Cabell|James Branch Cabell|writer (generic term)|author (generic term)
+caber|1
+(noun)|pole (generic term)
+cabernet|1
+(noun)|Cabernet|Cabernet Sauvignon|red wine (generic term)
+cabernet sauvignon|1
+(noun)|Cabernet|Cabernet Sauvignon|red wine (generic term)
+cabernet sauvignon grape|1
+(noun)|Cabernet Sauvignon grape|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+cabg|1
+(noun)|coronary bypass|coronary bypass surgery|coronary artery bypass graft|CABG|open-heart surgery (generic term)
+cabin|3
+(noun)|house (generic term)
+(noun)|compartment (generic term)
+(verb)|confine (generic term)
+cabin boy|1
+(noun)|servant (generic term)|retainer (generic term)
+cabin car|1
+(noun)|caboose|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+cabin class|1
+(noun)|Cabin class|second class|accommodation (generic term)
+cabin cruiser|1
+(noun)|cruiser|pleasure boat|pleasure craft|motorboat (generic term)|powerboat (generic term)
+cabin liner|1
+(noun)|liner (generic term)|ocean liner (generic term)
+cabinet|4
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|advisory board (generic term)|planning board (generic term)
+(noun)|locker|storage locker|compartment (generic term)
+(noun)|console|housing (generic term)
+cabinet minister|2
+(noun)|minister (generic term)|government minister (generic term)
+(noun)|minister (generic term)
+cabinet wood|1
+(noun)|wood (generic term)
+cabinetmaker|1
+(noun)|furniture maker|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+cabinetmaking|1
+(noun)|joinery|carpentry (generic term)|woodworking (generic term)|woodwork (generic term)
+cabinetry|1
+(noun)|cabinetwork|carpentry (generic term)|woodworking (generic term)|woodwork (generic term)
+cabinetwork|2
+(noun)|woodwork (generic term)
+(noun)|cabinetry|carpentry (generic term)|woodworking (generic term)|woodwork (generic term)
+cable|8
+(noun)|cablegram|overseas telegram|telegram (generic term)|wire (generic term)
+(noun)|line|transmission line|conductor (generic term)
+(noun)|rope (generic term)
+(noun)|cable length|cable's length|linear unit (generic term)
+(noun)|cable television|television (generic term)|telecasting (generic term)|TV (generic term)|video (generic term)
+(noun)|cable television|cable system|cable television service|television (generic term)|television system (generic term)
+(verb)|telegraph|wire|telecommunicate (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+cable's length|1
+(noun)|cable|cable length|linear unit (generic term)
+cable car|1
+(noun)|car|compartment (generic term)
+cable length|1
+(noun)|cable|cable's length|linear unit (generic term)
+cable railway|1
+(noun)|funicular|funicular railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+cable system|1
+(noun)|cable|cable television|cable television service|television (generic term)|television system (generic term)
+cable television|2
+(noun)|cable|television (generic term)|telecasting (generic term)|TV (generic term)|video (generic term)
+(noun)|cable|cable system|cable television service|television (generic term)|television system (generic term)
+cable television service|1
+(noun)|cable|cable television|cable system|television (generic term)|television system (generic term)
+cable tramway|1
+(noun)|tramway|tram|aerial tramway|ropeway|conveyance (generic term)|transport (generic term)
+cablegram|1
+(noun)|cable|overseas telegram|telegram (generic term)|wire (generic term)
+cabman|1
+(noun)|taxidriver|taximan|cabdriver|cabby|hack driver|hack-driver|livery driver|driver (generic term)
+cabochon|1
+(noun)|gem (generic term)|gemstone (generic term)|stone (generic term)
+cabomba|1
+(noun)|Cabomba|genus Cabomba|magnoliid dicot genus (generic term)
+cabomba caroliniana|1
+(noun)|water-shield|fanwort|Cabomba caroliniana|water lily (generic term)
+cabombaceae|1
+(noun)|Cabombaceae|subfamily Cabombaceae|water-shield family|magnoliid dicot family (generic term)
+caboodle|1
+(noun)|bunch|lot|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+caboose|2
+(noun)|galley|ship's galley|cookhouse|kitchen (generic term)
+(noun)|cabin car|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+cabot|2
+(noun)|Cabot|Sebastian Cabot|explorer (generic term)|adventurer (generic term)|cartographer (generic term)|map maker (generic term)
+(noun)|Cabot|John Cabot|Giovanni Cabato|navigator (generic term)
+cabotage|2
+(noun)|right (generic term)
+(noun)|seafaring (generic term)|navigation (generic term)|sailing (generic term)
+cabriolet|1
+(noun)|cab|carriage (generic term)|equipage (generic term)|rig (generic term)
+cabstand|1
+(noun)|taxistand|taxi rank|stand (generic term)
+cacajao|1
+(noun)|Cacajao|genus Cacajao|mammal genus (generic term)
+cacalia|1
+(noun)|Cacalia|genus Cacalia|asterid dicot genus (generic term)
+cacalia javanica|1
+(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+cacalia lutea|1
+(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+cacao|1
+(noun)|cacao tree|chocolate tree|Theobroma cacao|angiospermous tree (generic term)|flowering tree (generic term)
+cacao bean|1
+(noun)|cocoa bean|cacao (generic term)|cacao tree (generic term)|chocolate tree (generic term)|Theobroma cacao (generic term)
+cacao moth|1
+(noun)|tobacco moth|Ephestia elutella|pyralid (generic term)|pyralid moth (generic term)
+cacao tree|1
+(noun)|cacao|chocolate tree|Theobroma cacao|angiospermous tree (generic term)|flowering tree (generic term)
+cacatua|1
+(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus (generic term)
+cacatua galerita|1
+(noun)|sulphur-crested cockatoo|Kakatoe galerita|Cacatua galerita|cockatoo (generic term)
+cachalot|1
+(noun)|sperm whale|black whale|Physeter catodon|toothed whale (generic term)
+cache|4
+(noun)|storage space (generic term)
+(noun)|hoard|stash|store (generic term)|stock (generic term)|fund (generic term)
+(noun)|memory cache|buffer (generic term)|buffer storage (generic term)|buffer store (generic term)
+(verb)|hoard|stash|lay away|hive up|squirrel away|save (generic term)|lay aside (generic term)|save up (generic term)
+cachectic|1
+(adj)|infirmity|frailty|debility|feebleness|frailness|valetudinarianism (related term)
+cachet|3
+(noun)|seal|seal of approval|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|lettre de cachet|warrant (generic term)
+(noun)|seal (generic term)|stamp (generic term)
+cachexia|1
+(noun)|cachexy|wasting|infirmity (generic term)|frailty (generic term)|debility (generic term)|feebleness (generic term)|frailness (generic term)|valetudinarianism (generic term)
+cachexy|1
+(noun)|cachexia|wasting|infirmity (generic term)|frailty (generic term)|debility (generic term)|feebleness (generic term)|frailness (generic term)|valetudinarianism (generic term)
+cachi|1
+(noun)|Cachi|mountain peak (generic term)
+cachinnate|1
+(verb)|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+cachinnation|1
+(noun)|laugh (generic term)|laughter (generic term)
+cachou|1
+(noun)|lozenge (generic term)
+cacicus|1
+(noun)|Cacicus|genus Cacicus|bird genus (generic term)
+cacique|1
+(noun)|cazique|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+cackel|1
+(verb)|sound (generic term)
+cackle|6
+(noun)|cry (generic term)
+(noun)|yak|yack|yakety-yak|chatter|talk (generic term)|talking (generic term)
+(noun)|laugh (generic term)|laughter (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+cackler|2
+(noun)|hen (generic term)|biddy (generic term)
+(noun)|babbler|oscine (generic term)|oscine bird (generic term)
+cackly|1
+(adj)|squawky|cacophonous (similar term)|cacophonic (similar term)
+cacodaemon|1
+(noun)|cacodemon|evil spirit (generic term)|eudemon (antonym)
+cacodaemonic|1
+(adj)|cacodemonic|evil spirit (related term)
+cacodemon|1
+(noun)|cacodaemon|evil spirit (generic term)|eudemon (antonym)
+cacodemonic|1
+(adj)|cacodaemonic|evil spirit (related term)
+cacodyl|2
+(noun)|tetramethyldiarsine|organic compound (generic term)
+(noun)|cacodyl group|cacodyl radical|arsenic group|group (generic term)|radical (generic term)|chemical group (generic term)
+cacodyl group|1
+(noun)|cacodyl|cacodyl radical|arsenic group|group (generic term)|radical (generic term)|chemical group (generic term)
+cacodyl radical|1
+(noun)|cacodyl|cacodyl group|arsenic group|group (generic term)|radical (generic term)|chemical group (generic term)
+cacodylic|1
+(adj)|group|radical|chemical group (related term)
+cacoethes|1
+(noun)|mania|passion|irrational motive (generic term)
+cacogenesis|1
+(noun)|sterility (generic term)|infertility (generic term)
+cacogenic|1
+(adj)|dysgenic|life science|bioscience (related term)|eugenic (antonym)
+cacogenics|1
+(noun)|dysgenics|life science (generic term)|bioscience (generic term)|eugenics (antonym)
+cacography|1
+(noun)|scribble|scratch|scrawl|handwriting (generic term)|hand (generic term)|script (generic term)
+cacomistle|1
+(noun)|bassarisk|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+cacomixle|1
+(noun)|bassarisk|cacomistle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+cacophonic|1
+(adj)|cacophonous|cackly (similar term)|squawky (similar term)|croaking (similar term)|croaky (similar term)|guttural (similar term)|grating (similar term)|gravel (similar term)|gravelly (similar term)|rasping (similar term)|raspy (similar term)|rough (similar term)|scratchy (similar term)|gruff (similar term)|hoarse (similar term)|husky (similar term)|jangling (similar term)|jangly (similar term)|jarring (similar term)|piercing (similar term)|raucous (similar term)|strident (similar term)|rending (similar term)|ripping (similar term)|splitting (similar term)|noisy (related term)|euphonious (antonym)
+cacophonous|1
+(adj)|cacophonic|cackly (similar term)|squawky (similar term)|croaking (similar term)|croaky (similar term)|guttural (similar term)|grating (similar term)|gravel (similar term)|gravelly (similar term)|rasping (similar term)|raspy (similar term)|rough (similar term)|scratchy (similar term)|gruff (similar term)|hoarse (similar term)|husky (similar term)|jangling (similar term)|jangly (similar term)|jarring (similar term)|piercing (similar term)|raucous (similar term)|strident (similar term)|rending (similar term)|ripping (similar term)|splitting (similar term)|noisy (related term)|euphonious (antonym)
+cacophony|2
+(noun)|blare|blaring|clamor|din|noise (generic term)
+(noun)|dissonance (generic term)
+cactaceae|1
+(noun)|Cactaceae|family Cactaceae|cactus family|caryophylloid dicot family (generic term)
+cactus|1
+(noun)|succulent (generic term)
+cactus euphorbia|1
+(noun)|naboom|Euphorbia ingens|spurge (generic term)
+cactus family|1
+(noun)|Cactaceae|family Cactaceae|caryophylloid dicot family (generic term)
+cactus mouse|1
+(noun)|Peromyscus eremicus|wood mouse (generic term)
+cactus wren|1
+(noun)|wren (generic term)|jenny wren (generic term)
+cacuminal|1
+(adj)|retroflex|backward (similar term)
+cad|2
+(noun)|bounder|blackguard|dog|hound|heel|villain (generic term)|scoundrel (generic term)
+(noun)|computer-aided design|CAD|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+cadaster|1
+(noun)|cadastre|register (generic term)|registry (generic term)
+cadastral|1
+(adj)|register|registry (related term)
+cadastre|1
+(noun)|cadaster|register (generic term)|registry (generic term)
+cadaver|1
+(noun)|corpse|stiff|clay|remains|body (generic term)|dead body (generic term)
+cadaveric|1
+(adj)|cadaverous|body|dead body (related term)
+cadaverine|1
+(noun)|ptomaine (generic term)|ptomain (generic term)
+cadaverous|2
+(adj)|bony|emaciated|gaunt|haggard|pinched|skeletal|wasted|thin (similar term)|lean (similar term)
+(adj)|cadaveric|body|dead body (related term)
+caddice-fly|1
+(noun)|caddis fly|caddis-fly|caddice fly|trichopterous insect (generic term)|trichopteran (generic term)|trichopteron (generic term)
+caddice fly|1
+(noun)|caddis fly|caddis-fly|caddice-fly|trichopterous insect (generic term)|trichopteran (generic term)|trichopteron (generic term)
+caddie|2
+(noun)|golf caddie|attendant (generic term)|attender (generic term)|tender (generic term)
+(verb)|caddy|serve (generic term)
+caddis-fly|1
+(noun)|caddis fly|caddice fly|caddice-fly|trichopterous insect (generic term)|trichopteran (generic term)|trichopteron (generic term)
+caddis fly|1
+(noun)|caddis-fly|caddice fly|caddice-fly|trichopterous insect (generic term)|trichopteran (generic term)|trichopteron (generic term)
+caddish|1
+(adj)|unchivalrous|ungallant|discourteous (similar term)
+caddisworm|1
+(noun)|strawworm|caseworm (generic term)
+caddo|2
+(noun)|Caddo|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Caddo|Caddoan|Caddoan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+caddoan|1
+(noun)|Caddo|Caddoan|Caddoan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+caddoan language|1
+(noun)|Caddo|Caddoan|Caddoan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+caddy|2
+(noun)|tea caddy|can (generic term)|tin (generic term)|tin can (generic term)
+(verb)|caddie|serve (generic term)
+cadence|3
+(noun)|meter|metre|measure|beat|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+(noun)|passage (generic term)|musical passage (generic term)
+(noun)|cadency|rhythmicity (generic term)
+cadenced|1
+(adj)|cadent|rhythmical (similar term)|rhythmic (similar term)
+cadency|1
+(noun)|cadence|rhythmicity (generic term)
+cadent|1
+(adj)|cadenced|rhythmical (similar term)|rhythmic (similar term)
+cadenza|1
+(noun)|passage (generic term)|musical passage (generic term)
+cadet|1
+(noun)|plebe|trainee (generic term)
+cadetship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+cadge|2
+(verb)|mooch|bum|grub|sponge|obtain (generic term)
+(verb)|schnorr|shnorr|scrounge|beg (generic term)
+cadger|1
+(noun)|moocher|mooch|scrounger|beggar (generic term)|mendicant (generic term)
+cadiz|1
+(noun)|Cadiz|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cadmium|1
+(noun)|Cd|atomic number 48|metallic element (generic term)|metal (generic term)
+cadmium cell|1
+(noun)|Weston cell|standard cell (generic term)
+cadmium orange|1
+(noun)|cadmium yellow (generic term)
+cadmium sulfide|1
+(noun)|sulfide (generic term)|sulphide (generic term)
+cadmium sulphide|1
+(noun)|greenockite|mineral (generic term)
+cadmium yellow|1
+(noun)|pigment (generic term)
+cadmium yellow pale|1
+(noun)|cadmium yellow (generic term)
+cadra|1
+(noun)|Cadra|genus Cadra|arthropod genus (generic term)
+cadra cautella|1
+(noun)|almond moth|fig moth|Cadra cautella|pyralid (generic term)|pyralid moth (generic term)
+cadra figulilella|1
+(noun)|raisin moth|Cadra figulilella|pyralid (generic term)|pyralid moth (generic term)
+cadre|2
+(noun)|cell|political unit (generic term)|political entity (generic term)
+(noun)|core (generic term)|nucleus (generic term)|core group (generic term)
+caducean|1
+(adj)|insignia (related term)
+caduceus|1
+(noun)|insignia (generic term)
+caducous|1
+(adj)|shed|deciduous (similar term)|persistent (antonym)
+caecal|1
+(adj)|cecal|cavity|bodily cavity|cavum (related term)
+caeciliadae|1
+(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family (generic term)
+caecilian|2
+(adj)|amphibian family (related term)
+(noun)|blindworm|amphibian (generic term)
+caeciliidae|1
+(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family (generic term)
+caecum|1
+(noun)|cecum|blind gut|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+caelum|1
+(noun)|Caelum|constellation (generic term)
+caenogenesis|1
+(noun)|cenogenesis|kenogenesis|cainogenesis|kainogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|palingenesis (antonym)
+caenolestes|1
+(noun)|Caenolestes|genus Caenolestes|mammal genus (generic term)
+caenolestidae|1
+(noun)|Caenolestidae|family Caenolestidae|mammal family (generic term)
+caesalpinia|1
+(noun)|Caesalpinia|genus Caesalpinia|rosid dicot genus (generic term)
+caesalpinia bonduc|1
+(noun)|bonduc|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree (generic term)
+caesalpinia bonducella|1
+(noun)|bonduc|bonduc tree|Caesalpinia bonduc|Caesalpinia bonducella|tree (generic term)
+caesalpinia coriaria|1
+(noun)|divi-divi|Caesalpinia coriaria|tree (generic term)
+caesalpinia decapetala|1
+(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub (generic term)|bush (generic term)
+caesalpinia echinata|1
+(noun)|brazilwood|peachwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree (generic term)
+caesalpinia ferrea|1
+(noun)|brazilian ironwood|Caesalpinia ferrea|tree (generic term)
+caesalpinia gilliesii|1
+(noun)|bird of paradise|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub (generic term)
+caesalpinia pulcherrima|1
+(noun)|pride of barbados|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub (generic term)
+caesalpinia sepiaria|1
+(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub (generic term)|bush (generic term)
+caesalpiniaceae|1
+(noun)|Caesalpiniaceae|family Caesalpiniaceae|rosid dicot family (generic term)
+caesalpinioideae|1
+(noun)|Caesalpinioideae|subfamily Caesalpinioideae|rosid dicot family (generic term)
+caesar|2
+(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian (generic term)|comic (generic term)
+caesar's agaric|1
+(noun)|royal agaric|Caesar's agaric|Amanita caesarea|agaric (generic term)
+caesar salad|1
+(noun)|Caesar salad|tossed salad (generic term)
+caesarea|1
+(noun)|Caesarea|seaport (generic term)|haven (generic term)|harbor (generic term)|harbour (generic term)
+caesarean|3
+(adj)|cesarean|cesarian|caesarian|delivery|obstetrical delivery (related term)
+(adj)|Caesarian|Caesarean|general|full general|statesman|solon|national leader (related term)
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarean delivery|1
+(noun)|cesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarean section|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarian|3
+(adj)|cesarean|cesarian|caesarean|delivery|obstetrical delivery (related term)
+(adj)|Caesarian|Caesarean|general|full general|statesman|solon|national leader (related term)
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarian delivery|1
+(noun)|cesarean delivery|caesarean delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarian section|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+caesarism|1
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+caesaropapism|1
+(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine (generic term)
+caesium|1
+(noun)|cesium|Cs|atomic number 55|metallic element (generic term)|metal (generic term)
+caesium clock|1
+(noun)|atomic clock (generic term)
+caespitose|1
+(adj)|cespitose|tufted|ungregarious (similar term)
+caesura|2
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|prosody (generic term)|inflection (generic term)
+caesural|1
+(adj)|prosody|inflection (related term)
+cafe|1
+(noun)|coffeehouse|coffee shop|coffee bar|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+cafe au lait|1
+(noun)|coffee (generic term)|java (generic term)
+cafe noir|1
+(noun)|demitasse|coffee (generic term)|java (generic term)
+cafe royale|1
+(noun)|coffee royal|coffee (generic term)|java (generic term)
+cafeteria|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+cafeteria facility|1
+(noun)|facility (generic term)|installation (generic term)
+cafeteria tray|1
+(noun)|tray (generic term)
+caff|1
+(noun)|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+caffe latte|1
+(noun)|latte|espresso (generic term)
+caffein|1
+(noun)|caffeine|alkaloid (generic term)
+caffein addict|1
+(noun)|caffeine addict|addict (generic term)
+caffein addiction|1
+(noun)|drug addiction (generic term)|white plague (generic term)
+caffeine|1
+(noun)|caffein|alkaloid (generic term)
+caffeine addict|1
+(noun)|caffein addict|addict (generic term)
+caffeinic|1
+(adj)|alkaloid (related term)
+caffeinism|1
+(noun)|caffiene intoxication|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+caffer|1
+(noun)|kaffir|kafir|caffre|Black African (generic term)
+caffer cat|1
+(noun)|kaffir cat|Felis ocreata|wildcat (generic term)
+caffiene intoxication|1
+(noun)|caffeinism|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+caffre|1
+(noun)|kaffir|kafir|caffer|Black African (generic term)
+caftan|2
+(noun)|kaftan|dress (generic term)|frock (generic term)
+(noun)|kaftan|cloak (generic term)
+cage|6
+(noun)|coop|enclosure (generic term)
+(noun)|constraint (generic term)|restraint (generic term)
+(noun)|Cage|John Cage|John Milton Cage Jr.|composer (generic term)
+(noun)|net (generic term)
+(noun)|batting cage|baseball equipment (generic term)
+(verb)|cage in|confine (generic term)|detain (generic term)
+cage in|1
+(verb)|cage|confine (generic term)|detain (generic term)
+cager|1
+(noun)|basketball player|basketeer|athlete (generic term)|jock (generic term)
+cagey|2
+(adj)|cagy|canny|clever|smart (similar term)
+(adj)|cagy|chary|cautious (similar term)
+cagily|1
+(adv)|circumspectly
+cagliostro|1
+(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+cagney|1
+(noun)|Cagney|Jimmy Cagney|James Cagney|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+cagoule|1
+(noun)|parka (generic term)|windbreaker (generic term)|windcheater (generic term)|anorak (generic term)
+cagy|2
+(adj)|cagey|canny|clever|smart (similar term)
+(adj)|cagey|chary|cautious (similar term)
+cahita|2
+(noun)|Cahita|Taracahitian (generic term)
+(noun)|Cahita|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+cahoot|1
+(noun)|connivance (generic term)|collusion (generic term)
+caiman|1
+(noun)|cayman|crocodilian reptile (generic term)|crocodilian (generic term)
+caiman lizard|1
+(noun)|teiid lizard (generic term)|teiid (generic term)
+caiman sclerops|1
+(noun)|spectacled caiman|Caiman sclerops|cayman (generic term)|caiman (generic term)
+caimitillo|1
+(noun)|satinleaf|satin leaf|damson plum|Chrysophyllum oliviforme|angiospermous tree (generic term)|flowering tree (generic term)
+caimito|1
+(noun)|star apple|Chrysophyllum cainito|fruit tree (generic term)
+cain|1
+(noun)|Cain|man (generic term)|adult male (generic term)
+cainogenesis|1
+(noun)|cenogenesis|kenogenesis|caenogenesis|kainogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|palingenesis (antonym)
+cairene|1
+(noun)|Cairene|Egyptian (generic term)
+cairina|1
+(noun)|Cairina|genus Cairina|bird genus (generic term)
+cairina moschata|1
+(noun)|muscovy duck|musk duck|Cairina moschata|duck (generic term)
+cairn|2
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|cairn terrier|terrier (generic term)
+cairn terrier|1
+(noun)|cairn|terrier (generic term)
+cairned|1
+(adj)|marker|marking|mark (related term)
+cairngorm|1
+(noun)|smoky quartz|quartz (generic term)
+cairo|2
+(noun)|Cairo|town (generic term)
+(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital (generic term)|port (generic term)
+caisson|4
+(noun)|coffer|lacuna|panel (generic term)
+(noun)|military vehicle (generic term)
+(noun)|ammunition chest|chest (generic term)
+(noun)|pneumatic caisson|cofferdam|chamber (generic term)
+caisson disease|1
+(noun)|decompression sickness|aeroembolism|air embolism|gas embolism|bends|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+caitiff|2
+(adj)|cowardly (similar term)|fearful (similar term)
+(noun)|cur (generic term)
+caitra|1
+(noun)|Chait|Caitra|Hindu calendar month (generic term)
+cajan pea|2
+(noun)|pigeon pea|pigeon-pea plant|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+(noun)|pigeon pea|dahl|pea (generic term)
+cajanus|1
+(noun)|Cajanus|genus Cajanus|rosid dicot genus (generic term)
+cajanus cajan|1
+(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+cajole|1
+(verb)|wheedle|palaver|blarney|coax|sweet-talk|inveigle|persuade (generic term)
+cajolery|1
+(noun)|blandishment|palaver|flattery (generic term)
+cajolingly|1
+(adv)|coaxingly
+cajun|1
+(noun)|Cajun|Acadian (generic term)
+cakchiquel|2
+(noun)|Cakchiquel|Mayan (generic term)|Maya (generic term)
+(noun)|Cakchiquel|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+cake|4
+(noun)|bar|block (generic term)
+(noun)|patty|dish (generic term)
+(noun)|baked goods (generic term)
+(verb)|coat|cover (generic term)|spread over (generic term)
+cake mix|1
+(noun)|ready-mix (generic term)
+cakehole|1
+(noun)|trap|hole|maw|yap|gob|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+cakewalk|3
+(noun)|stage dancing (generic term)|choreography (generic term)
+(noun)|accomplishment (generic term)|achievement (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+cakile|1
+(noun)|Cakile|genus Cakile|dilleniid dicot genus (generic term)
+cakile maritima|1
+(noun)|sea-rocket|Cakile maritima|herb (generic term)|herbaceous plant (generic term)
+calaba|1
+(noun)|Santa Maria tree|Calophyllum calaba|tree (generic term)
+calabar-bean vine|1
+(noun)|Physostigma venenosum|vine (generic term)
+calabar bean|1
+(noun)|ordeal bean|bean (generic term)
+calabash|5
+(noun)|gourd (generic term)
+(noun)|calabash tree|Crescentia cujete|tree (generic term)
+(noun)|bottle gourd|Lagenaria siceraria|gourd (generic term)|gourd vine (generic term)
+(noun)|gourd|bottle (generic term)
+(noun)|calabash pipe|pipe (generic term)|tobacco pipe (generic term)
+calabash pipe|1
+(noun)|calabash|pipe (generic term)|tobacco pipe (generic term)
+calabash tree|1
+(noun)|calabash|Crescentia cujete|tree (generic term)
+calabazilla|1
+(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+calabria|1
+(noun)|Calabria|Italian region (generic term)
+calabur tree|1
+(noun)|Jamaican cherry|calabura|silk wood|silkwood|Muntingia calabura|tree (generic term)
+calabura|1
+(noun)|Jamaican cherry|calabur tree|silk wood|silkwood|Muntingia calabura|tree (generic term)
+caladenia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+caladenia cairnsiana|1
+(noun)|zebra orchid|Caladenia cairnsiana|caladenia (generic term)
+caladium|1
+(noun)|arum (generic term)|aroid (generic term)
+caladium bicolor|1
+(noun)|Caladium bicolor|caladium (generic term)
+calais|1
+(noun)|Calais|town (generic term)|port (generic term)
+calamagrostic quadriseta|1
+(noun)|Australian reed grass|Calamagrostic quadriseta|reed grass (generic term)
+calamagrostis|1
+(noun)|Calamagrostis|genus Calamagrostis|monocot genus (generic term)|liliopsid genus (generic term)|Gramineae (generic term)|family Gramineae (generic term)|Graminaceae (generic term)|family Graminaceae (generic term)|Poaceae (generic term)|family Poaceae (generic term)|grass family (generic term)
+calamagrostis acutiflora|1
+(noun)|feather reed grass|feathertop|Calamagrostis acutiflora|reed grass (generic term)
+calamari|1
+(noun)|squid|calamary|seafood (generic term)
+calamary|1
+(noun)|squid|calamari|seafood (generic term)
+calamine|1
+(noun)|hemimorphite|mineral (generic term)
+calamine lotion|1
+(noun)|lotion (generic term)|application (generic term)
+calamint|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+calamintha|1
+(noun)|Calamintha|genus Calamintha|asterid dicot genus (generic term)
+calamintha grandiflora|1
+(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint (generic term)
+calamintha nepeta|1
+(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+calamintha nepeta glantulosa|1
+(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+calamintha sylvatica|1
+(noun)|common calamint|Calamintha sylvatica|Satureja calamintha officinalis|calamint (generic term)
+calamitous|1
+(adj)|black|disastrous|fatal|fateful|unfortunate (similar term)
+calamity|1
+(noun)|catastrophe|disaster|tragedy|cataclysm|misfortune (generic term)|bad luck (generic term)
+calamity jane|1
+(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman (generic term)
+calamus|5
+(noun)|palm (generic term)|palm tree (generic term)
+(noun)|root (generic term)
+(noun)|sweet flag|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|Calamus|genus Calamus|fish genus (generic term)
+(noun)|quill|shaft|rib (generic term)
+calamus australis|1
+(noun)|lawyer cane|Calamus australis|calamus (generic term)
+calamus oil|1
+(noun)|oil (generic term)
+calamus penna|1
+(noun)|sheepshead porgy|Calamus penna|porgy (generic term)
+calamus rotang|1
+(noun)|rattan|rattan palm|Calamus rotang|calamus (generic term)
+calan|1
+(noun)|verapamil|Calan|Isoptin|calcium blocker (generic term)|calcium-channel blocker (generic term)
+calando|1
+(adj)|decreasing (similar term)
+calandrinia|1
+(noun)|Calandrinia|genus Calandrinia|caryophylloid dicot genus (generic term)
+calandrinia ciliata|1
+(noun)|red maids|redmaids|Calandrinia ciliata|wildflower (generic term)|wild flower (generic term)
+calanthe|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+calapooya|1
+(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian (generic term)
+calapuya|1
+(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian (generic term)
+calash|2
+(noun)|caleche|hood (generic term)
+(noun)|caleche|calash top|hood (generic term)
+calash top|1
+(noun)|calash|caleche|hood (generic term)
+calathian violet|1
+(noun)|marsh gentian|Gentiana pneumonanthe|gentian (generic term)
+calc-tufa|1
+(noun)|tufa|rock (generic term)|stone (generic term)
+calcaneal|1
+(adj)|bone|os (related term)
+calcaneus|1
+(noun)|heelbone|os tarsi fibulare|bone (generic term)|os (generic term)
+calcareous|1
+(adj)|chalky|carbonate (related term)
+calcarine fissure|1
+(noun)|calcarine sulcus|sulcus (generic term)
+calcarine sulcus|1
+(noun)|calcarine fissure|sulcus (generic term)
+calced|1
+(adj)|shod|discalced (antonym)
+calcedony|1
+(noun)|chalcedony|quartz (generic term)|transparent gem (generic term)
+calceiform|1
+(adj)|calceolate|shoe (related term)
+calceolaria|1
+(noun)|slipperwort|flower (generic term)
+calceolate|1
+(adj)|calceiform|shoe (related term)
+calceus|1
+(noun)|shoe (generic term)
+calcic|1
+(adj)|metallic element|metal (related term)
+calcicolous|1
+(adj)|calcifugous (antonym)
+calciferol|1
+(noun)|vitamin D|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin (generic term)
+calciferous|1
+(adj)|metallic element|metal (related term)
+calcific|1
+(adj)|hardening (related term)
+calcification|3
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|hardening (generic term)
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+calcifugous|1
+(adj)|calcicolous (antonym)
+calcify|4
+(verb)|harden (generic term)|indurate (generic term)|decalcify (antonym)
+(verb)|change (generic term)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+calcimine|2
+(noun)|water-base paint (generic term)|wash (generic term)
+(verb)|whitewash (generic term)
+calcination|1
+(noun)|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+calcine|1
+(verb)|heat (generic term)|heat up (generic term)
+calcined lime|1
+(noun)|calcium oxide|quicklime|lime|calx|fluxing lime|unslaked lime|burnt lime|oxide (generic term)
+calcite|1
+(noun)|spar (generic term)
+calcitic|1
+(adj)|spar (related term)
+calcitonin|1
+(noun)|thyrocalcitonin|thyroid hormone (generic term)
+calcium|1
+(noun)|Ca|atomic number 20|metallic element (generic term)|metal (generic term)
+calcium-channel blocker|1
+(noun)|calcium blocker|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+calcium-cyanamide|1
+(noun)|cyanamide|compound (generic term)|chemical compound (generic term)
+calcium bicarbonate|1
+(noun)|bicarbonate (generic term)|hydrogen carbonate (generic term)
+calcium blocker|1
+(noun)|calcium-channel blocker|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+calcium carbide|1
+(noun)|binary compound (generic term)|carbide (generic term)
+calcium carbonate|1
+(noun)|carbonate (generic term)
+calcium chloride|1
+(noun)|salt (generic term)
+calcium hydrate|1
+(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|caustic lime|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+calcium hydride|1
+(noun)|hydrolith|hydride (generic term)
+calcium hydroxide|1
+(noun)|lime|slaked lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+calcium hypochlorite|1
+(noun)|hypochlorite (generic term)|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+calcium ion|1
+(noun)|factor IV|calcium (generic term)|Ca (generic term)|atomic number 20 (generic term)|coagulation factor (generic term)|clotting factor (generic term)
+calcium lactate|1
+(noun)|salt (generic term)
+calcium light|1
+(noun)|limelight|lamp (generic term)
+calcium nitrate|1
+(noun)|nitrate (generic term)
+calcium octadecanoate|1
+(noun)|calcium stearate|salt (generic term)
+calcium oxide|1
+(noun)|quicklime|lime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide (generic term)
+calcium phosphate|1
+(noun)|phosphate (generic term)|orthophosphate (generic term)|inorganic phosphate (generic term)
+calcium stearate|1
+(noun)|calcium octadecanoate|salt (generic term)
+calcium sulfate|1
+(noun)|calcium sulphate|salt (generic term)
+calcium sulphate|1
+(noun)|calcium sulfate|salt (generic term)
+calculable|1
+(adj)|computable (similar term)|estimable (similar term)|countable (similar term)|denumerable (similar term)|enumerable (similar term)|numerable (similar term)|determinable (related term)|incalculable (antonym)
+calculate|6
+(verb)|cipher|cypher|compute|work out|reckon|figure|reason (generic term)|figure out (related term)|reckon (related term)
+(verb)|estimate|reckon|count on|figure|forecast|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|account
+(verb)|forecast|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|aim|direct|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+(verb)|count|bet|depend|look|reckon|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+calculated|1
+(adj)|deliberate|measured|premeditated (similar term)
+calculating|1
+(adj)|calculative|conniving|scheming|shrewd|hard (similar term)
+calculating machine|1
+(noun)|calculator|machine (generic term)
+calculation|3
+(noun)|computation|computing|procedure (generic term)|process (generic term)
+(noun)|computation|figuring|reckoning|problem solving (generic term)
+(noun)|deliberation|planning (generic term)|preparation (generic term)|provision (generic term)
+calculative|1
+(adj)|calculating|conniving|scheming|shrewd|hard (similar term)
+calculator|2
+(noun)|calculating machine|machine (generic term)
+(noun)|reckoner|figurer|estimator|computer|expert (generic term)
+calculous|1
+(adj)|rock|stone (related term)
+calculus|3
+(noun)|concretion|rock (generic term)|stone (generic term)
+(noun)|tartar|tophus|crust (generic term)|incrustation (generic term)|encrustation (generic term)
+(noun)|infinitesimal calculus|pure mathematics (generic term)
+calculus of variations|1
+(noun)|calculus (generic term)|infinitesimal calculus (generic term)
+calcutta|1
+(noun)|Kolkata|Calcutta|city (generic term)|metropolis (generic term)|urban center (generic term)
+calcuttan|1
+(adj)|Calcuttan|city|metropolis|urban center (related term)
+calder|1
+(noun)|Calder|Alexander Calder|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+caldera|1
+(noun)|volcanic crater (generic term)|crater (generic term)
+calderon|1
+(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist (generic term)|playwright (generic term)|poet (generic term)
+calderon de la barca|1
+(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist (generic term)|playwright (generic term)|poet (generic term)
+caldron|1
+(noun)|cauldron|pot (generic term)
+caldwell|1
+(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer (generic term)|author (generic term)
+calean|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+caleche|2
+(noun)|calash|hood (generic term)
+(noun)|calash|calash top|hood (generic term)
+caledonia|1
+(noun)|Caledonia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+caledonian canal|1
+(noun)|Caledonian Canal|canal (generic term)
+calefacient|1
+(adj)|warming|hot (similar term)
+calefaction|1
+(noun)|incalescence|hotness (generic term)|heat (generic term)|high temperature (generic term)
+calefactive|1
+(adj)|calefactory|hot (similar term)
+calefactory|1
+(adj)|calefactive|hot (similar term)
+calendar|4
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|table (generic term)|tabular array (generic term)
+(verb)|schedule (generic term)
+calendar day|1
+(noun)|civil day|time period (generic term)|period of time (generic term)|period (generic term)
+calendar method|1
+(noun)|rhythm method of birth control|rhythm method|rhythm|calendar method of birth control|natural family planning (generic term)
+calendar method of birth control|1
+(noun)|rhythm method of birth control|rhythm method|rhythm|calendar method|natural family planning (generic term)
+calendar month|1
+(noun)|month|time period (generic term)|period of time (generic term)|period (generic term)
+calendar week|1
+(noun)|week|time period (generic term)|period of time (generic term)|period (generic term)
+calendar year|1
+(noun)|civil year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+calender|2
+(noun)|machine (generic term)
+(verb)|press (generic term)
+calendered|1
+(adj)|glossy|glazed (similar term)|shiny (similar term)
+calendric|1
+(adj)|calendrical|arrangement|organization|organisation|system (related term)
+calendrical|1
+(adj)|calendric|arrangement|organization|organisation|system (related term)
+calendula|1
+(noun)|flower (generic term)
+calendula officinalis|1
+(noun)|common marigold|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula (generic term)
+caley pea|1
+(noun)|singletary pea|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea (generic term)
+calf|3
+(noun)|sura|skeletal muscle (generic term)|striated muscle (generic term)
+(noun)|calfskin|leather (generic term)
+(noun)|young mammal (generic term)
+calf's-foot jelly|1
+(noun)|gelatin (generic term)|jelly (generic term)
+calf's brain|1
+(noun)|brain (generic term)
+calf's liver|1
+(noun)|calves' liver|liver (generic term)
+calf's tongue|1
+(noun)|tongue (generic term)
+calf bone|1
+(noun)|fibula|leg bone (generic term)
+calf love|1
+(noun)|puppy love|crush|infatuation|love (generic term)
+calf roping|1
+(noun)|roping (generic term)
+calfskin|1
+(noun)|calf|leather (generic term)
+calgary|1
+(noun)|Calgary|city (generic term)|metropolis (generic term)|urban center (generic term)
+cali|1
+(noun)|Cali|city (generic term)|metropolis (generic term)|urban center (generic term)
+cali cartel|1
+(noun)|Cali cartel|drug cartel (generic term)
+caliber|2
+(noun)|quality|calibre|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|bore|gauge|calibre|diameter (generic term)|diam (generic term)
+calibrate|3
+(verb)|graduate|fine-tune|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|tag (generic term)|label (generic term)|mark (generic term)
+(verb)|measure (generic term)|mensurate (generic term)|measure out (generic term)
+calibrated|1
+(adj)|graduated
+calibration|1
+(noun)|standardization|standardisation|activity (generic term)
+calibre|2
+(noun)|quality|caliber|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|bore|gauge|caliber|diameter (generic term)|diam (generic term)
+caliche|2
+(noun)|hardpan|soil (generic term)|dirt (generic term)
+(noun)|rock (generic term)|stone (generic term)
+caliche-topped|1
+(adj)|unpaved (similar term)
+calico|3
+(adj)|fabric|cloth|material|textile (related term)
+(adj)|motley|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+calico aster|1
+(noun)|starved aster|aster (generic term)
+calico bush|1
+(noun)|mountain laurel|wood laurel|American laurel|Kalmia latifolia|kalmia (generic term)
+calico cat|1
+(noun)|tortoiseshell|tortoiseshell-cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+calico crab|1
+(noun)|American lady crab|lady crab|Ovalipes ocellatus|swimming crab (generic term)
+calicular|1
+(adj)|calycular|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+caliculus|1
+(noun)|calyculus|calycle|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+calidris|1
+(noun)|Calidris|genus Calidris|bird genus (generic term)
+calidris canutus|1
+(noun)|knot|greyback|grayback|Calidris canutus|sandpiper (generic term)
+calidris ferruginea|1
+(noun)|curlew sandpiper|Calidris Ferruginea|sandpiper (generic term)
+calidris melanotos|1
+(noun)|pectoral sandpiper|jacksnipe|Calidris melanotos|sandpiper (generic term)
+calif|1
+(noun)|caliph|kaliph|kalif|khalif|khalifah|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+calif.|1
+(noun)|California|Golden State|CA|Calif.|American state (generic term)
+california|1
+(noun)|California|Golden State|CA|Calif.|American state (generic term)
+california allspice|1
+(noun)|spicebush|California allspice|Calycanthus occidentalis|allspice (generic term)
+california bay tree|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+california beauty|1
+(noun)|flannelbush|flannel bush|California beauty|shrub (generic term)|bush (generic term)
+california black oak|1
+(noun)|California black oak|Quercus kelloggii|oak (generic term)|oak tree (generic term)
+california black walnut|1
+(noun)|California black walnut|Juglans californica|walnut (generic term)|walnut tree (generic term)
+california bluebell|2
+(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+(noun)|California bluebell|Phacelia campanularia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+california box elder|1
+(noun)|California box elder|Acer negundo Californicum|box elder (generic term)|ash-leaved maple (generic term)|Acer negundo (generic term)
+california buckthorn|1
+(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn (generic term)
+california buckwheat|1
+(noun)|wild buckwheat|California buckwheat|Erigonum fasciculatum|eriogonum (generic term)
+california coffee|1
+(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn (generic term)
+california condor|1
+(noun)|California condor|Gymnogyps californianus|condor (generic term)
+california dandelion|1
+(noun)|cat's-ear|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed (generic term)
+california false morel|1
+(noun)|Gyromitra californica|California false morel|gyromitra (generic term)
+california fern|1
+(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+california four o'clock|1
+(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock (generic term)
+california fuchsia|1
+(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet (generic term)
+california lady's slipper|1
+(noun)|California lady's slipper|Cypripedium californicum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+california laurel|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+california live oak|1
+(noun)|coast live oak|California live oak|Quercus agrifolia|live oak (generic term)
+california newt|1
+(noun)|California newt|Taricha torosa|Pacific newt (generic term)
+california nutmeg|1
+(noun)|California nutmeg|nutmeg-yew|Torreya californica|yew (generic term)
+california olive|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+california personality inventory|1
+(noun)|California Personality Inventory|CPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+california pitcher plant|1
+(noun)|California pitcher plant|Darlingtonia californica|pitcher plant (generic term)
+california pompano|1
+(noun)|palometa|California pompano|Palometa simillima|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+california poppy|1
+(noun)|California poppy|Eschscholtzia californica|poppy (generic term)
+california privet|1
+(noun)|California privet|Ligustrum ovalifolium|privet (generic term)
+california quail|1
+(noun)|California quail|Lofortyx californicus|quail (generic term)
+california redbud|1
+(noun)|western redbud|California redbud|Cercis occidentalis|shrub (generic term)|bush (generic term)
+california redwood|1
+(noun)|California redwood|coast redwood|Sequoia sempervirens|sequoia (generic term)|redwood (generic term)
+california romero|1
+(noun)|black sage|wooly blue curls|California romero|Trichostema lanatum|blue curls (generic term)
+california sage|1
+(noun)|California sagebrush|California sage|Artemisia californica|sagebrush (generic term)|sage brush (generic term)
+california sagebrush|1
+(noun)|California sagebrush|California sage|Artemisia californica|sagebrush (generic term)|sage brush (generic term)
+california sea lion|1
+(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion (generic term)
+california single-leaf pinyon|1
+(noun)|California single-leaf pinyon|Pinus californiarum|pinon (generic term)|pinyon (generic term)
+california sycamore|1
+(noun)|California sycamore|Platanus racemosa|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+california tree poppy|1
+(noun)|matilija poppy|California tree poppy|Romneya coulteri|subshrub (generic term)|suffrutex (generic term)
+california whipsnake|1
+(noun)|California whipsnake|striped racer|Masticophis lateralis|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+california white fir|1
+(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir (generic term)
+california white oak|1
+(noun)|California white oak|valley oak|valley white oak|roble|Quercus lobata|white oak (generic term)
+california wine|1
+(noun)|California wine|wine (generic term)|vino (generic term)
+california yellow bells|1
+(noun)|yellow bells|California yellow bells|whispering bells|Emmanthe penduliflora|herb (generic term)|herbaceous plant (generic term)
+california yew|1
+(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew (generic term)
+californian|2
+(adj)|Californian|American state (related term)
+(noun)|Californian|American (generic term)
+californium|1
+(noun)|Cf|atomic number 98|metallic element (generic term)|metal (generic term)
+caliginous|1
+(adj)|dark (similar term)
+caligula|1
+(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor (generic term)|Emperor of Rome (generic term)
+caliper|2
+(noun)|calliper|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|calliper|measure (generic term)|mensurate (generic term)|measure out (generic term)
+caliph|1
+(noun)|calif|kaliph|kalif|khalif|khalifah|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+caliphate|3
+(noun)|Caliphate|era (generic term)|epoch (generic term)
+(noun)|jurisdiction (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+caliphate state|1
+(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+calisaya|1
+(noun)|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona (generic term)|chinchona (generic term)
+calisthenic|1
+(adj)|practice|pattern (related term)
+calisthenics|2
+(noun)|callisthenics|practice (generic term)|pattern (generic term)
+(noun)|callisthenics|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+calixtus ii|1
+(noun)|Calixtus II|Guy of Burgundy|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+calixtus iii|1
+(noun)|Calixtus III|Borgia|Alfonso Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+calk|4
+(noun)|calkin|cleat (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|caulk|seal (generic term)|seal off (generic term)
+(verb)|injure (generic term)|wound (generic term)
+calkin|1
+(noun)|calk|cleat (generic term)
+call|38
+(noun)|phone call|telephone call|telephone (generic term)|telephony (generic term)
+(noun)|Call|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|cry|outcry|yell|shout|vociferation|utterance (generic term)|vocalization (generic term)
+(noun)|claim|demand (generic term)
+(noun)|birdcall|birdsong|song|animal communication (generic term)
+(noun)|margin call|demand (generic term)
+(noun)|demand (generic term)
+(noun)|request (generic term)|asking (generic term)
+(noun)|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+(noun)|visit (generic term)
+(noun)|decision (generic term)|determination (generic term)|conclusion (generic term)
+(noun)|call option|option (generic term)|put option (antonym)
+(verb)|name|label (generic term)
+(verb)|telephone|call up|phone|ring|telecommunicate (generic term)
+(verb)|label (generic term)
+(verb)|send for|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)|call forth (related term)|call forth (related term)|call up (related term)
+(verb)|shout|shout out|cry|yell|scream|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|visit|call in|meet (generic term)|get together (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|order (generic term)
+(verb)|request (generic term)
+(verb)|indicate (generic term)
+(verb)|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+(verb)|read (generic term)
+(verb)|telecommunicate (generic term)
+(verb)|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|predict|foretell|prognosticate|forebode|anticipate|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|call in|demand (generic term)|exact (generic term)
+(verb)|call off
+(verb)|address|address (generic term)|turn to (generic term)
+(verb)|stop (generic term)|stop over (generic term)
+(verb)|bid|play (generic term)
+(verb)|ask (generic term)|require (generic term)|expect (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+(verb)|challenge (generic term)|dispute (generic term)|gainsay (generic term)
+(verb)|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)
+call-back|2
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+(noun)|employment (generic term)|engagement (generic term)
+call-board|1
+(noun)|bulletin board (generic term)|notice board (generic term)
+call-in|1
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+call-out|1
+(noun)|challenge (generic term)
+call at|1
+(verb)|out in|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+call attention|1
+(verb)|signalize|signalise|point out|indicate (generic term)|point (generic term)|show (generic term)
+call back|4
+(verb)|recall|call in|withdraw|take (generic term)
+(verb)|remember|retrieve|recall|call up|recollect|think|think back (related term)|forget (antonym)
+(verb)|answer (generic term)|reply (generic term)|respond (generic term)
+(verb)|recall|call (generic term)|send for (generic term)
+call box|2
+(noun)|telephone booth|phone booth|telephone box|telephone kiosk|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+(noun)|Post-Office box|PO Box|POB|letter box|compartment (generic term)
+call center|1
+(noun)|call centre|center (generic term)|centre (generic term)
+call centre|1
+(noun)|call center|center (generic term)|centre (generic term)
+call down|2
+(verb)|raise|conjure|conjure up|invoke|evoke|stir|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+call fire|1
+(noun)|fire (generic term)|firing (generic term)
+call for|4
+(verb)|request|bespeak|quest|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|necessitate|ask|postulate|need|require|take|involve|demand|obviate (antonym)
+(verb)|invite|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|collect|pick up|gather up|get (generic term)|acquire (generic term)
+call forth|2
+(verb)|provoke|evoke|kick up|cause (generic term)|do (generic term)|make (generic term)
+(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|make (generic term)|create (generic term)
+call forwarding|1
+(noun)|telephone (generic term)|telephony (generic term)
+call girl|1
+(noun)|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+call in|7
+(verb)|invite (generic term)|ask in (generic term)
+(verb)|call (generic term)|send for (generic term)
+(verb)|visit|call|meet (generic term)|get together (generic term)
+(verb)|take out (generic term)|move out (generic term)|remove (generic term)
+(verb)|call (generic term)|telephone (generic term)|call up (generic term)|phone (generic term)|ring (generic term)
+(verb)|call|demand (generic term)|exact (generic term)
+(verb)|recall|call back|withdraw|take (generic term)
+call into question|1
+(verb)|question|oppugn|challenge (generic term)
+call it a day|1
+(verb)|call it quits|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+call it quits|1
+(verb)|call it a day|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+call loan|1
+(noun)|demand loan|loan (generic term)
+call mark|1
+(noun)|call number|pressmark|mark (generic term)
+call number|1
+(noun)|call mark|pressmark|mark (generic term)
+call off|2
+(verb)|cancel|scratch|scrub
+(verb)|call
+call on|1
+(verb)|turn|appeal (generic term)|invoke (generic term)
+call on the carpet|1
+(verb)|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+call one's bluff|1
+(verb)|challenge (generic term)
+call option|2
+(noun)|stock option (generic term)
+(noun)|call|option (generic term)|put option (antonym)
+call out|3
+(verb)|exclaim|cry|cry out|outcry|shout|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|challenge (generic term)
+call the shots|1
+(verb)|call the tune|wear the trousers|control (generic term)|command (generic term)
+call the tune|1
+(verb)|call the shots|wear the trousers|control (generic term)|command (generic term)
+call to order|1
+(verb)|open (generic term)
+call up|5
+(noun)|summons (generic term)
+(verb)|bring forward|raise (generic term)
+(verb)|call|telephone|phone|ring|telecommunicate (generic term)
+(verb)|remember|retrieve|recall|call back|recollect|think|think back (related term)|forget (antonym)
+(verb)|mobilize|mobilise|rally|call (generic term)|send for (generic term)|demobilize (antonym)
+call waiting|1
+(noun)|telephone (generic term)|telephony (generic term)
+calla|2
+(noun)|calla lily|arum lily|Zantedeschia aethiopica|flower (generic term)
+(noun)|Calla|genus Calla|monocot genus (generic term)|liliopsid genus (generic term)
+calla lily|1
+(noun)|calla|arum lily|Zantedeschia aethiopica|flower (generic term)
+calla palustris|1
+(noun)|wild calla|water arum|Calla palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+callable|1
+(adj)|due (similar term)|owed (similar term)
+callas|1
+(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura (generic term)|coloratura soprano (generic term)
+callathump|2
+(noun)|callithump|callithump parade|parade (generic term)
+(noun)|shivaree|chivaree|charivari|callithump|belling|serenade (generic term)
+callback|1
+(noun)|recall|request (generic term)|asking (generic term)
+called|2
+(adj)|named|titled (similar term)
+(adj)|known as|titled (similar term)
+caller|9
+(adj)|cool (similar term)
+(adj)|fresh (similar term)
+(noun)|company|visitor (generic term)|visitant (generic term)
+(noun)|investor (generic term)
+(noun)|bettor (generic term)|better (generic term)|wagerer (generic term)|punter (generic term)
+(noun)|caller-out|announcer (generic term)
+(noun)|announcer (generic term)
+(noun)|leader (generic term)
+(noun)|caller-up|phoner|telephoner|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+caller-out|1
+(noun)|caller|announcer (generic term)
+caller-up|1
+(noun)|caller|phoner|telephoner|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+caller id|1
+(noun)|caller ID|display (generic term)|video display (generic term)
+calliandra|1
+(noun)|shrub (generic term)|bush (generic term)
+callicebus|1
+(noun)|Callicebus|genus Callicebus|mammal genus (generic term)
+calligraph|1
+(verb)|write (generic term)
+calligrapher|1
+(noun)|calligraphist|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+calligraphic|1
+(adj)|calligraphical|handwriting|hand|script (related term)
+calligraphical|1
+(adj)|calligraphic|handwriting|hand|script (related term)
+calligraphist|1
+(noun)|calligrapher|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+calligraphy|1
+(noun)|penmanship|chirography|handwriting (generic term)|hand (generic term)|script (generic term)
+callimorpha|1
+(noun)|Callimorpha|genus Callimorpha|arthropod genus (generic term)
+callimorpha jacobeae|1
+(noun)|cinnabar|cinnabar moth|Callimorpha jacobeae|arctiid (generic term)|arctiid moth (generic term)
+callinectes|1
+(noun)|Callinectes|genus Callinectes|arthropod genus (generic term)
+callinectes sapidus|1
+(noun)|blue crab|Callinectes sapidus|swimming crab (generic term)
+calling|1
+(noun)|career|vocation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+calling card|3
+(noun)|phone card|credit card (generic term)|charge card (generic term)|charge plate (generic term)
+(noun)|visiting card|card|greeting (generic term)|salutation (generic term)
+(noun)|peculiarity (generic term)|distinctive feature (generic term)|distinguishing characteristic (generic term)
+calling into question|1
+(noun)|demand for explanation|challenge (generic term)
+calling together|1
+(noun)|convocation|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+callionymidae|1
+(noun)|Callionymidae|family Callionymidae|fish family (generic term)
+calliope|2
+(noun)|Calliope|Muse (generic term)
+(noun)|steam organ|musical instrument (generic term)|instrument (generic term)
+calliophis|1
+(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus (generic term)
+calliopsis|1
+(noun)|Coreopsis tinctoria|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+calliper|2
+(noun)|caliper|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|caliper|measure (generic term)|mensurate (generic term)|measure out (generic term)
+calliphora|1
+(noun)|Calliphora|genus Calliphora|arthropod genus (generic term)
+calliphora vicina|1
+(noun)|bluebottle|Calliphora vicina|blowfly (generic term)|blow fly (generic term)
+calliphoridae|1
+(noun)|Calliphoridae|family Calliphoridae|arthropod family (generic term)
+callipygian|1
+(adj)|callipygous|shapely (similar term)
+callipygous|1
+(adj)|callipygian|shapely (similar term)
+callirhoe|1
+(noun)|Callirhoe|genus Callirhoe|dilleniid dicot genus (generic term)
+callirhoe digitata|1
+(noun)|fringed poppy mallow|Callirhoe digitata|poppy mallow (generic term)
+callirhoe involucrata|1
+(noun)|purple poppy mallow|Callirhoe involucrata|poppy mallow (generic term)
+callirhoe triangulata|1
+(noun)|clustered poppy mallow|Callirhoe triangulata|poppy mallow (generic term)
+callisaurus|1
+(noun)|Callisaurus|genus Callisaurus|reptile genus (generic term)
+callisaurus draconoides|1
+(noun)|zebra-tailed lizard|gridiron-tailed lizard|Callisaurus draconoides|iguanid (generic term)|iguanid lizard (generic term)
+callistephus|1
+(noun)|Callistephus|genus Callistephus|asterid dicot genus (generic term)
+callistephus chinensis|1
+(noun)|China aster|Callistephus chinensis|flower (generic term)
+callisthenics|2
+(noun)|calisthenics|practice (generic term)|pattern (generic term)
+(noun)|calisthenics|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+callisto|1
+(noun)|Callisto|Galilean satellite (generic term)|Galilean (generic term)
+callithricidae|1
+(noun)|Callithricidae|family Callithricidae|mammal family (generic term)
+callithrix|1
+(noun)|Callithrix|genus Callithrix|mammal genus (generic term)
+callithump|2
+(noun)|callathump|callithump parade|parade (generic term)
+(noun)|shivaree|chivaree|charivari|callathump|belling|serenade (generic term)
+callithump parade|1
+(noun)|callithump|callathump|parade (generic term)
+callithumpian|1
+(adj)|parade (related term)
+callitrichaceae|1
+(noun)|Callitrichaceae|family Callitrichaceae|rosid dicot family (generic term)
+callitriche|1
+(noun)|Callitriche|genus Callitriche|rosid dicot genus (generic term)
+callitris|1
+(noun)|Callitris|genus Callitris|gymnosperm genus (generic term)
+callitris calcarata|1
+(noun)|black cypress pine|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine (generic term)
+callitris cupressiformis|1
+(noun)|Port Jackson pine|Callitris cupressiformis|cypress pine (generic term)
+callitris endlicheri|1
+(noun)|black cypress pine|red cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine (generic term)
+callitris glauca|1
+(noun)|white cypress pine|Callitris glaucophylla|Callitris glauca|cypress pine (generic term)
+callitris glaucophylla|1
+(noun)|white cypress pine|Callitris glaucophylla|Callitris glauca|cypress pine (generic term)
+callitris parlatorei|1
+(noun)|stringybark pine|Callitris parlatorei|cypress pine (generic term)
+callitris quadrivalvis|1
+(noun)|sandarac|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress (generic term)
+callophis|1
+(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus (generic term)
+callorhinus|1
+(noun)|Callorhinus|genus Callorhinus|mammal genus (generic term)
+callorhinus ursinus|1
+(noun)|Alaska fur seal|Callorhinus ursinus|fur seal (generic term)
+callosectomy|1
+(noun)|callosotomy|psychosurgery (generic term)
+callosity|2
+(noun)|callus|hardening (generic term)
+(noun)|unfeelingness|callousness|hardness|insensibility|insensitivity (generic term)|insensitiveness (generic term)
+callosotomy|1
+(noun)|callosectomy|psychosurgery (generic term)
+callous|3
+(adj)|indurate|pachydermatous|insensitive (similar term)
+(adj)|calloused|thickened|tough (similar term)|toughened (similar term)
+(verb)|cauterize|cauterise|inure (generic term)|harden (generic term)|indurate (generic term)
+calloused|1
+(adj)|callous|thickened|tough (similar term)|toughened (similar term)
+callously|1
+(adv)|unfeelingly
+callousness|1
+(noun)|unfeelingness|callosity|hardness|insensibility|insensitivity (generic term)|insensitiveness (generic term)
+callow|1
+(adj)|fledgling|unfledged|inexperienced (similar term)|inexperient (similar term)
+callowness|1
+(noun)|jejuneness|juvenility|immaturity (generic term)|immatureness (generic term)
+calluna|1
+(noun)|Calluna|genus Calluna|dilleniid dicot genus (generic term)
+calluna vulgaris|1
+(noun)|heather|ling|Scots heather|broom|Calluna vulgaris|heath (generic term)
+callus|4
+(noun)|callosity|hardening (generic term)
+(noun)|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+(noun)|plant process (generic term)|enation (generic term)
+(verb)|harden (generic term)|indurate (generic term)
+calm|8
+(adj)|unagitated|serene|tranquil|composed (similar term)
+(adj)|placid (similar term)|quiet (similar term)|still (similar term)|tranquil (similar term)|smooth (similar term)|unruffled (similar term)|settled (similar term)|windless (similar term)|peaceful (related term)|stormy (antonym)
+(adj)|easygoing|placid|contented (similar term)|content (similar term)
+(noun)|composure|calmness|equanimity|disposition (generic term)|temperament (generic term)|discomposure (antonym)
+(verb)|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|steady|becalm|stabilize (generic term)|stabilise (generic term)
+(verb)|calm down|cool off|chill out|simmer down|settle down|cool it|change state (generic term)|turn (generic term)
+(verb)|sedate|tranquilize|tranquillize|tranquillise|affect (generic term)|stimulate (antonym)
+calm air|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+calm down|3
+(verb)|calm|cool off|chill out|simmer down|settle down|cool it|change state (generic term)|turn (generic term)
+(verb)|calm|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|lull|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+calming|3
+(adj)|lulling|quietening|unalarming (similar term)
+(adj)|assuasive|pacifying|soothing|reassuring (similar term)
+(noun)|appeasement|social control (generic term)
+calmly|1
+(adv)|sedately
+calmness|3
+(noun)|composure|calm|equanimity|disposition (generic term)|temperament (generic term)|discomposure (antonym)
+(noun)|good weather (generic term)
+(noun)|feeling (generic term)|agitation (antonym)
+calnada pea|1
+(noun)|tufted vetch|bird vetch|Calnada pea|Vicia cracca|vetch (generic term)
+calocarpum|1
+(noun)|Calocarpum|genus Calocarpum|dicot genus (generic term)|magnoliopsid genus (generic term)
+calocarpum zapota|1
+(noun)|marmalade tree|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree (generic term)
+calocedrus|1
+(noun)|Calocedrus|genus Calocedrus|gymnosperm genus (generic term)
+calocedrus decurrens|1
+(noun)|incense cedar|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar (generic term)|cedar tree (generic term)
+calochortus|1
+(noun)|Calochortus|genus Calochortus|liliid monocot genus (generic term)
+calochortus albus|1
+(noun)|white globe lily|white fairy lantern|Calochortus albus|globe lily (generic term)|fairy lantern (generic term)
+calochortus amabilis|1
+(noun)|yellow globe lily|golden fairy lantern|Calochortus amabilis|globe lily (generic term)|fairy lantern (generic term)
+calochortus amoenus|1
+(noun)|rose globe lily|Calochortus amoenus|globe lily (generic term)|fairy lantern (generic term)
+calochortus elegans|1
+(noun)|star tulip|elegant cat's ears|Calochortus elegans|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+calochortus kennedyi|1
+(noun)|desert mariposa tulip|Calochortus kennedyi|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+calochortus luteus|1
+(noun)|yellow mariposa tulip|Calochortus luteus|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+calochortus macrocarpus|1
+(noun)|sagebrush mariposa tulip|Calochortus macrocarpus|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+calochortus nuttallii|1
+(noun)|sego lily|Calochortus nuttallii|liliaceous plant (generic term)
+calomel|1
+(noun)|mercurous chloride|chloride (generic term)
+caloocan|1
+(noun)|Caloocan|city (generic term)|metropolis (generic term)|urban center (generic term)
+caloosahatchee|1
+(noun)|Caloosahatchee|Caloosahatchee River|river (generic term)
+caloosahatchee canal|1
+(noun)|Caloosahatchee Canal|canal (generic term)
+caloosahatchee river|1
+(noun)|Caloosahatchee|Caloosahatchee River|river (generic term)
+calophyllum|1
+(noun)|Calophyllum|genus Calophyllum|dilleniid dicot genus (generic term)
+calophyllum calaba|1
+(noun)|calaba|Santa Maria tree|Calophyllum calaba|tree (generic term)
+calophyllum candidissimum|1
+(noun)|laurelwood|lancewood tree|Calophyllum candidissimum|tree (generic term)
+calophyllum inophyllum|1
+(noun)|Alexandrian laurel|Calophyllum inophyllum|poon (generic term)
+calophyllum longifolium|1
+(noun)|Maria|Calophyllum longifolium|tree (generic term)
+calopogon|1
+(noun)|Calopogon|genus Calopogon|monocot genus (generic term)|liliopsid genus (generic term)
+calopogon pulchellum|1
+(noun)|grass pink|Calopogon pulchellum|Calopogon tuberosum|orchid (generic term)|orchidaceous plant (generic term)
+calopogon tuberosum|1
+(noun)|grass pink|Calopogon pulchellum|Calopogon tuberosum|orchid (generic term)|orchidaceous plant (generic term)
+caloric|2
+(adj)|thermal|thermic|energy (related term)|nonthermal (antonym)
+(adj)|work unit|heat unit|energy unit (related term)
+calorie|2
+(noun)|gram calorie|small calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+(noun)|Calorie|kilogram calorie|kilocalorie|large calorie|nutritionist's calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+calorie-free|1
+(adj)|light|lite|low-cal|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+calorie chart|1
+(noun)|list (generic term)|listing (generic term)
+calorifacient|1
+(adj)|hot (similar term)
+calorific|1
+(adj)|hot (similar term)
+calorimeter|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+calorimetric|1
+(adj)|measurement|measuring|measure|mensuration (related term)
+calorimetry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+caloscypha fulgens|1
+(noun)|Caloscypha fulgens|discomycete (generic term)|cup fungus (generic term)
+calosoma|1
+(noun)|ground beetle (generic term)|carabid beetle (generic term)
+calosoma scrutator|1
+(noun)|searcher|searcher beetle|Calosoma scrutator|calosoma (generic term)
+calostoma cinnabarina|1
+(noun)|Calostoma cinnabarina|gasteromycete (generic term)|gastromycete (generic term)
+calostoma lutescens|1
+(noun)|Calostoma lutescens|gasteromycete (generic term)|gastromycete (generic term)
+calostoma ravenelii|1
+(noun)|Calostoma ravenelii|gasteromycete (generic term)|gastromycete (generic term)
+calostomataceae|1
+(noun)|Calostomataceae|family Calostomataceae|fungus family (generic term)
+calpac|1
+(noun)|calpack|kalpac|cap (generic term)
+calpack|1
+(noun)|calpac|kalpac|cap (generic term)
+calpe|1
+(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony (generic term)|settlement (generic term)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+calque|1
+(noun)|calque formation|loan translation|saying (generic term)|expression (generic term)|locution (generic term)
+calque formation|1
+(noun)|calque|loan translation|saying (generic term)|expression (generic term)|locution (generic term)
+caltha|1
+(noun)|Caltha|genus Caltha|magnoliid dicot genus (generic term)
+caltha palustris|1
+(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+caltrop|3
+(noun)|devil's weed|Tribulus terestris|subshrub (generic term)|suffrutex (generic term)
+(noun)|water chestnut|water chestnut plant|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|star-thistle|Centauria calcitrapa|centaury (generic term)
+calumet|1
+(noun)|peace pipe|pipe of peace|pipe (generic term)|tobacco pipe (generic term)
+calumniate|1
+(verb)|defame|slander|smirch|asperse|denigrate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+calumniation|1
+(noun)|defamation|calumny|obloquy|traducement|hatchet job|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+calumniatory|1
+(adj)|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful (similar term)
+calumnious|1
+(adj)|calumniatory|defamatory|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful (similar term)
+calumniously|1
+(adv)|slanderously
+calumny|2
+(noun)|defamation|calumniation|obloquy|traducement|hatchet job|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|aspersion|slander|defamation|denigration|attack (generic term)
+calvados|1
+(noun)|Calvados|brandy (generic term)
+calvaria|1
+(noun)|skullcap|bone (generic term)|os (generic term)
+calvary|2
+(noun)|Calvary|Golgotha|hill (generic term)
+(noun)|martyrdom|affliction (generic term)
+calvary clover|1
+(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic (generic term)|medick (generic term)|trefoil (generic term)
+calvary cross|1
+(noun)|Calvary cross|cross of Calvary|Cross (generic term)
+calvatia|1
+(noun)|Calvatia|genus Calvatia|fungus genus (generic term)
+calvatia gigantea|1
+(noun)|giant puffball|Calvatia gigantea|puffball (generic term)|true puffball (generic term)
+calve|2
+(verb)|break up|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|have young|litter (generic term)
+calved|1
+(adj)|born (similar term)
+calvert vaux|1
+(noun)|Vaux|Calvert Vaux|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+calves' feet|1
+(noun)|veal (generic term)|veau (generic term)
+calves' liver|1
+(noun)|calf's liver|liver (generic term)
+calvin|2
+(noun)|Calvin|Melvin Calvin|chemist (generic term)
+(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+calvin coolidge|1
+(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+calvin klein|1
+(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+calvin richard klein|1
+(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+calving|1
+(noun)|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+calvinism|1
+(noun)|Calvinism|Protestantism (generic term)
+calvinist|2
+(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism (related term)
+(noun)|Calvinist|Genevan|necessitarian (generic term)
+calvinistic|1
+(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism (related term)
+calvinistic baptist|1
+(noun)|Calvinistic Baptist|Particular Baptist|Baptist denomination (generic term)
+calvinistical|1
+(adj)|Calvinist|Calvinistic|Calvinistical|Protestantism (related term)
+calvino|1
+(noun)|Calvino|Italo Calvino|writer (generic term)|author (generic term)
+calx|1
+(noun)|calcium oxide|quicklime|lime|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide (generic term)
+calycanthaceae|1
+(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|strawberry-shrub family|magnoliid dicot family (generic term)
+calycanthus|1
+(noun)|Calycanthus|genus Calycanthus|magnoliid dicot genus (generic term)
+calycanthus family|1
+(noun)|Calycanthaceae|family Calycanthaceae|strawberry-shrub family|magnoliid dicot family (generic term)
+calycanthus floridus|1
+(noun)|Carolina allspice|strawberry shrub|strawberry bush|sweet shrub|Calycanthus floridus|allspice (generic term)
+calycanthus occidentalis|1
+(noun)|spicebush|California allspice|Calycanthus occidentalis|allspice (generic term)
+calyceal|1
+(adj)|calycine|calycinal|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll (related term)
+calycinal|1
+(adj)|calyceal|calycine|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll (related term)
+calycine|1
+(adj)|calyceal|calycinal|coil|whorl|roll|curl|curlicue|ringlet|gyre|scroll (related term)
+calycle|2
+(noun)|epicalyx|false calyx|calyculus|bract (generic term)
+(noun)|calyculus|caliculus|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+calycled|1
+(adj)|calyculate|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+calycophyllum|1
+(noun)|Calycophyllum|genus Calycophyllum|asterid dicot genus (generic term)
+calycophyllum candidissimum|1
+(noun)|dagame|lemonwood tree|Calycophyllum candidissimum|tree (generic term)
+calycular|1
+(adj)|calicular|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+calyculate|1
+(adj)|calycled|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+calyculus|2
+(noun)|epicalyx|false calyx|calycle|bract (generic term)
+(noun)|caliculus|calycle|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+calymmatobacterium|1
+(noun)|Calymmatobacterium|genus Calymmatobacterium|bacteria (generic term)|bacterium (generic term)
+calymmatobacterium granulomatis|1
+(noun)|Calymmatobacterium granulomatis|bacteria species (generic term)
+calypso|2
+(noun)|fairy-slipper|Calypso bulbosa|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Calypso|sea nymph (generic term)
+calypso bulbosa|1
+(noun)|calypso|fairy-slipper|Calypso bulbosa|orchid (generic term)|orchidaceous plant (generic term)
+calypter|1
+(noun)|alula|squama (generic term)
+calyptra|1
+(noun)|plant part (generic term)|plant structure (generic term)
+calyptrate|2
+(adj)|squama (related term)
+(adj)|plant part|plant structure (related term)
+calyptridium umbellatum|1
+(noun)|pussy-paw|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower (generic term)|wild flower (generic term)
+calystegia|1
+(noun)|Calystegia|genus Calystegia|dicot genus (generic term)|magnoliopsid genus (generic term)
+calystegia sepium|1
+(noun)|hedge bindweed|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed (generic term)
+calyx|1
+(noun)|coil (generic term)|whorl (generic term)|roll (generic term)|curl (generic term)|curlicue (generic term)|ringlet (generic term)|gyre (generic term)|scroll (generic term)
+calyx tube|1
+(noun)|hypanthium|floral cup|plant organ (generic term)
+cam|2
+(noun)|Cam|River Cam|Cam River|river (generic term)
+(noun)|rotating mechanism (generic term)
+cam river|1
+(noun)|Cam|River Cam|Cam River|river (generic term)
+cam stroke|1
+(noun)|throw|stroke|movement (generic term)|motion (generic term)
+camachile|1
+(noun)|manila tamarind|huamachil|wild tamarind|Pithecellobium dulce|tree (generic term)
+camail|1
+(noun)|aventail|ventail|hood (generic term)
+camaraderie|1
+(noun)|chumminess|comradeliness|comradery|comradeship|sociability (generic term)|sociableness (generic term)
+camarilla|1
+(noun)|cabal|faction|junto|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+camas|1
+(noun)|camass|quamash|camosh|camash|liliaceous plant (generic term)
+camash|1
+(noun)|camas|camass|quamash|camosh|liliaceous plant (generic term)
+camass|1
+(noun)|camas|quamash|camosh|camash|liliaceous plant (generic term)
+camassia|1
+(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus (generic term)
+camassia leichtlinii|1
+(noun)|Leichtlin's camas|Camassia leichtlinii|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+camassia quamash|1
+(noun)|common camas|Camassia quamash|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+camassia scilloides|1
+(noun)|wild hyacinth|indigo squill|Camassia scilloides|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+cambarus|1
+(noun)|Cambarus|genus Cambarus|arthropod genus (generic term)
+camber|4
+(noun)|convex shape (generic term)|convexity (generic term)
+(noun)|bank|cant|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|alignment (generic term)
+(verb)|arch (generic term)|curve (generic term)|arc (generic term)
+camber arch|1
+(noun)|arch (generic term)
+camberwell beauty|1
+(noun)|mourning cloak|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+cambial|1
+(adj)|vascular tissue (related term)
+cambium|2
+(noun)|vascular tissue (generic term)
+(noun)|stratum (generic term)
+cambodia|1
+(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country (generic term)|Asian nation (generic term)
+cambodian|2
+(adj)|Cambodian|Kampuchean|Asian country|Asian nation (related term)
+(noun)|Cambodian|Kampuchean|Asian (generic term)|Asiatic (generic term)
+cambodian capital|1
+(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital (generic term)
+cambodian monetary unit|1
+(noun)|Cambodian monetary unit|monetary unit (generic term)
+cambria|1
+(noun)|Wales|Cymru|Cambria|principality (generic term)|princedom (generic term)
+cambrian|3
+(adj)|Welsh|Cambrian|principality|princedom (related term)
+(noun)|Cambrian|Cambrian period|period (generic term)|geological period (generic term)
+(noun)|Welshman|Welsh|Cambrian|Cymry|European (generic term)
+cambrian mountains|1
+(noun)|Cambrian Mountains|tableland (generic term)|plateau (generic term)
+cambrian period|1
+(noun)|Cambrian|Cambrian period|period (generic term)|geological period (generic term)
+cambric|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+cambric tea|1
+(noun)|tea (generic term)
+cambridge|2
+(noun)|Cambridge University|Cambridge|university (generic term)
+(noun)|Cambridge|city (generic term)|metropolis (generic term)|urban center (generic term)
+cambridge university|1
+(noun)|Cambridge University|Cambridge|university (generic term)
+camcorder|1
+(noun)|television camera (generic term)|tv camera (generic term)|camera (generic term)
+camden|1
+(noun)|Camden|city (generic term)|metropolis (generic term)|urban center (generic term)
+camel|1
+(noun)|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+camel's hair|1
+(noun)|camelhair|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+camel racing|1
+(noun)|racing (generic term)
+camelhair|1
+(noun)|camel's hair|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+camelia|1
+(noun)|camellia|shrub (generic term)|bush (generic term)
+camelidae|1
+(noun)|Camelidae|family Camelidae|mammal family (generic term)
+camelina|1
+(noun)|Camelina|genus Camelina|dilleniid dicot genus (generic term)
+camelina sativa|1
+(noun)|gold of pleasure|Camelina sativa|crucifer (generic term)|cruciferous plant (generic term)
+camellia|1
+(noun)|camelia|shrub (generic term)|bush (generic term)
+camellia japonica|1
+(noun)|japonica|Camellia japonica|camellia (generic term)|camelia (generic term)
+camellia sinensis|1
+(noun)|tea|Camellia sinensis|shrub (generic term)|bush (generic term)
+camellia state|1
+(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state (generic term)
+camelopard|1
+(noun)|giraffe|Giraffa camelopardalis|ruminant (generic term)
+camelot|1
+(noun)|Camelot|capital (generic term)
+camelpox|1
+(noun)|animal disease (generic term)
+camelus|1
+(noun)|Camelus|genus Camelus|mammal genus (generic term)
+camelus bactrianus|1
+(noun)|Bactrian camel|Camelus bactrianus|camel (generic term)
+camelus dromedarius|1
+(noun)|Arabian camel|dromedary|Camelus dromedarius|camel (generic term)
+camembert|1
+(noun)|Camembert|cheese (generic term)
+cameo|1
+(noun)|anaglyph (generic term)
+camera|2
+(noun)|photographic camera|photographic equipment (generic term)
+(noun)|television camera|tv camera|television equipment (generic term)|video equipment (generic term)
+camera angle|1
+(noun)|point of view (generic term)
+camera care|1
+(noun)|care (generic term)|maintenance (generic term)|upkeep (generic term)
+camera lens|1
+(noun)|optical lens|lens (generic term)|lense (generic term)|lens system (generic term)
+camera lucida|1
+(noun)|optical device (generic term)
+camera obscura|1
+(noun)|chamber (generic term)
+camera operator|1
+(noun)|cameraman|cinematographer|photographer (generic term)|lensman (generic term)
+camera tripod|1
+(noun)|tripod (generic term)
+cameraman|1
+(noun)|camera operator|cinematographer|photographer (generic term)|lensman (generic term)
+cameroon|2
+(noun)|Cameroon|volcano (generic term)
+(noun)|Cameroon|Republic of Cameroon|Cameroun|African country (generic term)|African nation (generic term)
+cameroon franc|1
+(noun)|Cameroon franc|franc (generic term)
+cameroonian|2
+(adj)|Cameroonian|African country|African nation (related term)
+(noun)|Cameroonian|African (generic term)
+cameroun|1
+(noun)|Cameroon|Republic of Cameroon|Cameroun|African country (generic term)|African nation (generic term)
+camillo golgi|1
+(noun)|Golgi|Camillo Golgi|histologist (generic term)
+camion|2
+(noun)|lorry|truck (generic term)|motortruck (generic term)
+(noun)|dray|horse cart (generic term)|horse-cart (generic term)
+camise|1
+(noun)|shirt (generic term)
+camisole|2
+(noun)|underbodice|undergarment (generic term)|unmentionable (generic term)
+(noun)|negligee (generic term)|neglige (generic term)|peignoir (generic term)|wrapper (generic term)|housecoat (generic term)
+camlan|1
+(noun)|Camlan|battlefield (generic term)|battleground (generic term)|field of battle (generic term)|field of honor (generic term)|field (generic term)
+camlet|2
+(noun)|garment (generic term)
+(noun)|camlet fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+camlet fabric|1
+(noun)|camlet|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+camo|1
+(noun)|camouflage|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+camomile|1
+(noun)|chamomile|Chamaemelum nobilis|Anthemis nobilis|herb (generic term)|herbaceous plant (generic term)
+camomile tea|1
+(noun)|tisane (generic term)
+camorra|1
+(noun)|Camorra|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+camosh|1
+(noun)|camas|camass|quamash|camash|liliaceous plant (generic term)
+camouflage|5
+(noun)|disguise|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+(noun)|camo|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|screen (generic term)|cover (generic term)|covert (generic term)|concealment (generic term)
+(noun)|disguise|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(verb)|disguise (generic term)
+camouflaged|1
+(adj)|invisible (similar term)|unseeable (similar term)
+camp|12
+(adj)|campy|tasteless (similar term)
+(noun)|encampment|cantonment|bivouac|military quarters (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|clique|coterie|ingroup|inner circle|pack|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|prison (generic term)|prison house (generic term)
+(noun)|triteness (generic term)|staleness (generic term)
+(noun)|refugee camp|shelter (generic term)
+(noun)|summer camp|site (generic term)|land site (generic term)
+(verb)|encamp|camp out|bivouac|tent|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|camp down|pitch (generic term)|set up (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+camp-made|1
+(adj)|handmade (similar term)|hand-crafted (similar term)
+camp bed|1
+(noun)|cot|bed (generic term)
+camp chair|1
+(noun)|folding chair (generic term)
+camp david|1
+(noun)|Camp David|retreat (generic term)
+camp down|1
+(verb)|camp|pitch (generic term)|set up (generic term)
+camp follower|2
+(noun)|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+(noun)|follower (generic term)
+camp meeting|1
+(noun)|meeting (generic term)|group meeting (generic term)
+camp out|1
+(verb)|camp|encamp|bivouac|tent|dwell (generic term)|live (generic term)|inhabit (generic term)
+camp robber|1
+(noun)|Canada jay|grey jay|gray jay|whisker jack|Perisoreus canadensis|jay (generic term)
+campaign|7
+(noun)|political campaign|run|race (generic term)
+(noun)|cause|crusade|drive|movement|effort|venture (generic term)
+(noun)|military campaign|operation (generic term)|military operation (generic term)
+(noun)|hunting expedition|safari|expedition (generic term)
+(verb)|run|race (generic term)|run (generic term)
+(verb)|crusade|fight|press|push|agitate|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|take the field
+campaign for governor|1
+(noun)|governor's race|political campaign (generic term)|campaign (generic term)|run (generic term)
+campaign hat|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+campaigner|1
+(noun)|candidate|nominee|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+campaigning|1
+(noun)|candidacy|candidature|electioneering|political campaign|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+campana|1
+(noun)|bell|bell shape|curve (generic term)|curved shape (generic term)
+campania|1
+(noun)|Campania|Italian region (generic term)
+campanile|1
+(noun)|belfry|bell tower (generic term)
+campanula|1
+(noun)|bellflower|herb (generic term)|herbaceous plant (generic term)
+campanula americana|1
+(noun)|tall bellflower|Campanula americana|campanula (generic term)|bellflower (generic term)
+campanula aparinoides|1
+(noun)|marsh bellflower|Campanula aparinoides|campanula (generic term)|bellflower (generic term)
+campanula carpatica|1
+(noun)|tussock bellflower|spreading bellflower|Campanula carpatica|campanula (generic term)|bellflower (generic term)
+campanula divaricata|1
+(noun)|southern harebell|Campanula divaricata|campanula (generic term)|bellflower (generic term)
+campanula glomerata|1
+(noun)|clustered bellflower|Campanula glomerata|campanula (generic term)|bellflower (generic term)
+campanula medium|1
+(noun)|Canterbury bell|cup and saucer|Campanula medium|campanula (generic term)|bellflower (generic term)
+campanula persicifolia|1
+(noun)|peach bells|peach bell|willow bell|Campanula persicifolia|campanula (generic term)|bellflower (generic term)
+campanula pyramidalis|1
+(noun)|chimney plant|chimney bellflower|Campanula pyramidalis|campanula (generic term)|bellflower (generic term)
+campanula rapunculoides|1
+(noun)|creeping bellflower|Campanula rapunculoides|campanula (generic term)|bellflower (generic term)
+campanula rapunculus|1
+(noun)|rampion|rampion bellflower|Campanula rapunculus|campanula (generic term)|bellflower (generic term)
+campanula rotundifolia|1
+(noun)|harebell|bluebell|Campanula rotundifolia|campanula (generic term)|bellflower (generic term)
+campanula trachelium|1
+(noun)|throatwort|nettle-leaved bellflower|Campanula trachelium|campanula (generic term)|bellflower (generic term)
+campanulaceae|1
+(noun)|Campanulaceae|family Campanulaceae|bellflower family|plant family (generic term)
+campanulales|1
+(noun)|Campanulales|order Campanulales|plant order (generic term)
+campanular|1
+(adj)|campanulate|campanulated|curve|curved shape (related term)
+campanulate|1
+(adj)|campanular|campanulated|curve|curved shape (related term)
+campanulated|1
+(adj)|campanulate|campanular|curve|curved shape (related term)
+campbell|1
+(noun)|Campbell|Joseph Campbell|mythologist (generic term)
+campeachy|1
+(noun)|logwood|logwood tree|bloodwood tree|Haematoxylum campechianum|blackwood (generic term)|blackwood tree (generic term)
+campeche|2
+(noun)|Campeche|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Campeche|state (generic term)|province (generic term)
+campephilus|1
+(noun)|Campephilus|genus Campephilus|bird genus (generic term)
+campephilus principalis|1
+(noun)|ivorybill|ivory-billed woodpecker|Campephilus principalis|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+camper|2
+(noun)|vacationer (generic term)|vacationist (generic term)
+(noun)|camping bus|motor home|recreational vehicle (generic term)|RV (generic term)|R.V. (generic term)
+camper trailer|1
+(noun)|trailer (generic term)|house trailer (generic term)
+campestral|1
+(adj)|rural (similar term)
+campfire|1
+(noun)|fire (generic term)
+campfire girl|1
+(noun)|Campfire Girl|female child (generic term)|girl (generic term)|little girl (generic term)
+campground|1
+(noun)|campsite|camping site|camping ground|bivouac|encampment|camping area|site (generic term)|land site (generic term)
+camphor|1
+(noun)|natural resin (generic term)
+camphor ball|1
+(noun)|mothball|ball (generic term)|globe (generic term)|orb (generic term)
+camphor daisy|1
+(noun)|Haplopappus phyllocephalus|goldenbush (generic term)
+camphor dune tansy|1
+(noun)|Tanacetum camphoratum|herb (generic term)|herbaceous plant (generic term)
+camphor ice|1
+(noun)|cerate (generic term)
+camphor oil|1
+(noun)|oil (generic term)
+camphor tree|1
+(noun)|Cinnamomum camphora|laurel (generic term)
+camphoraceous|1
+(adj)|natural resin (related term)
+camphorate|1
+(verb)|process (generic term)|treat (generic term)
+camphorated|1
+(adj)|uncamphorated (antonym)
+camphorated tincture of opium|1
+(noun)|paregoric|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+camphoric|1
+(adj)|natural resin (related term)
+camphorweed|1
+(noun)|turpentine camphor weed|vinegarweed|Trichostema lanceolatum|blue curls (generic term)
+camping|1
+(noun)|encampment|bivouacking|tenting|inhabitancy (generic term)|inhabitation (generic term)|habitation (generic term)
+camping area|1
+(noun)|campsite|campground|camping site|camping ground|bivouac|encampment|site (generic term)|land site (generic term)
+camping bus|1
+(noun)|camper|motor home|recreational vehicle (generic term)|RV (generic term)|R.V. (generic term)
+camping ground|1
+(noun)|campsite|campground|camping site|bivouac|encampment|camping area|site (generic term)|land site (generic term)
+camping site|1
+(noun)|campsite|campground|camping ground|bivouac|encampment|camping area|site (generic term)|land site (generic term)
+campion|1
+(noun)|silene|catchfly|flower (generic term)
+campmate|1
+(noun)|acquaintance (generic term)|friend (generic term)
+campong|1
+(noun)|kampong|village (generic term)|hamlet (generic term)
+camponotus|1
+(noun)|Camponotus|genus Camponotus|arthropod genus (generic term)
+campsis radicans|1
+(noun)|trumpet creeper|trumpet vine|Campsis radicans|Bignoniaceae (generic term)|family Bignoniaceae (generic term)
+campsite|1
+(noun)|campground|camping site|camping ground|bivouac|encampment|camping area|site (generic term)|land site (generic term)
+campstool|1
+(noun)|stool (generic term)
+camptosorus|1
+(noun)|Camptosorus|genus Camptosorus|fern genus (generic term)
+camptosorus rhizophyllus|1
+(noun)|walking fern|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort (generic term)
+campus|1
+(noun)|field (generic term)
+campy|1
+(adj)|camp|tasteless (similar term)
+campyloneurum|1
+(noun)|Campyloneurum|genus Campyloneurum|fern genus (generic term)
+campyloneurum augustifolium|1
+(noun)|Central American strap fern|narrow-leaved strap fern|Campyloneurum augustifolium|strap fern (generic term)
+campylorhynchus|1
+(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus (generic term)
+campylotropous|1
+(adj)|orthotropous (antonym)
+campylotropous ovule|1
+(noun)|ovule (generic term)
+camshaft|1
+(noun)|rotating shaft (generic term)|shaft (generic term)
+camus|1
+(noun)|Camus|Albert Camus|writer (generic term)|author (generic term)|existentialist (generic term)|existentialist philosopher (generic term)
+camwood|1
+(noun)|African sandalwood|Baphia nitida|tree (generic term)
+can|8
+(noun)|tin|tin can|container (generic term)
+(noun)|canful|containerful (generic term)
+(noun)|can buoy|buoy (generic term)
+(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 (generic term)
+(noun)|toilet|commode|crapper|pot|potty|stool|throne|plumbing fixture (generic term)
+(noun)|toilet|lavatory|lav|john|privy|bathroom|room (generic term)
+(verb)|tin|put up|preserve (generic term)|keep (generic term)
+(verb)|fire|give notice|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+can-do|1
+(adj)|dynamic (similar term)|dynamical (similar term)
+can buoy|1
+(noun)|can|buoy (generic term)
+can of worms|1
+(noun)|trouble (generic term)|problem (generic term)
+can opener|1
+(noun)|tin opener|opener (generic term)
+canaan|1
+(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+canaanite|2
+(noun)|Canaanite|Semite (generic term)
+(noun)|Canaanite|Canaanitic (generic term)|Canaanitic language (generic term)
+canaanitic|1
+(noun)|Canaanitic|Canaanitic language|Semitic (generic term)
+canaanitic language|1
+(noun)|Canaanitic|Canaanitic language|Semitic (generic term)
+canachites|1
+(noun)|Canachites|genus Canachites|bird genus (generic term)
+canachites canadensis|1
+(noun)|spruce grouse|Canachites canadensis|grouse (generic term)
+canada|1
+(noun)|Canada|North American country (generic term)|North American nation (generic term)
+canada anemone|1
+(noun)|Canada anemone|Anemone Canadensis|anemone (generic term)|windflower (generic term)
+canada balsam|2
+(noun)|Canada balsam|oleoresin (generic term)
+(noun)|balsam fir|balm of Gilead|Canada balsam|Abies balsamea|silver fir (generic term)
+canada garlic|1
+(noun)|Canada garlic|meadow leek|rose leek|Allium canadense|alliaceous plant (generic term)
+canada ginger|1
+(noun)|Canada ginger|black snakeroot|Asarum canadense|wild ginger (generic term)
+canada goose|1
+(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose (generic term)
+canada jay|1
+(noun)|Canada jay|grey jay|gray jay|camp robber|whisker jack|Perisoreus canadensis|jay (generic term)
+canada lily|1
+(noun)|Canada lily|wild yellow lily|meadow lily|wild meadow lily|Lilium canadense|lily (generic term)
+canada lynx|1
+(noun)|Canada lynx|Lynx canadensis|lynx (generic term)|catamount (generic term)
+canada moonseed|1
+(noun)|common moonseed|Canada moonseed|yellow parilla|Menispermum canadense|moonseed (generic term)
+canada plum|1
+(noun)|Canada plum|Prunus nigra|plum (generic term)|plum tree (generic term)
+canada porcupine|1
+(noun)|Canada porcupine|Erethizon dorsatum|New World porcupine (generic term)
+canada thistle|1
+(noun)|Canada thistle|creeping thistle|Cirsium arvense|plume thistle (generic term)|plumed thistle (generic term)
+canada violet|1
+(noun)|Canada violet|tall white violet|white violet|Viola canadensis|violet (generic term)
+canada wild rye|1
+(noun)|Canada wild rye|Elymus canadensis|wild rye (generic term)
+canadian|3
+(adj)|Canadian|North American country|North American nation (related term)
+(noun)|Canadian|North American (generic term)
+(noun)|Canadian|Canadian River|river (generic term)
+canadian aspen|1
+(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+canadian bacon|1
+(noun)|Canadian bacon|bacon (generic term)
+canadian capital|1
+(noun)|Ottawa|Canadian capital|capital of Canada|national capital (generic term)
+canadian dollar|1
+(noun)|Canadian dollar|dollar (generic term)
+canadian falls|1
+(noun)|Canadian Falls|Horseshoe Falls|waterfall (generic term)|falls (generic term)
+canadian fleabane|1
+(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed (generic term)
+canadian french|1
+(noun)|Canadian French|French (generic term)
+canadian goldenrod|1
+(noun)|meadow goldenrod|Canadian goldenrod|Solidago canadensis|goldenrod (generic term)
+canadian goose|1
+(noun)|honker|Canada goose|Canadian goose|Branta canadensis|goose (generic term)
+canadian hemlock|1
+(noun)|eastern hemlock|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock (generic term)|hemlock tree (generic term)
+canadian maritime provinces|1
+(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+canadian pondweed|1
+(noun)|Canadian pondweed|Elodea canadensis|waterweed (generic term)
+canadian province|1
+(noun)|Canadian province|state (generic term)|province (generic term)
+canadian red pine|1
+(noun)|red pine|Canadian red pine|Pinus resinosa|pine (generic term)|pine tree (generic term)|true pine (generic term)
+canadian river|1
+(noun)|Canadian|Canadian River|river (generic term)
+canadian security intelligence service|1
+(noun)|Canadian Security Intelligence Service|CSIS|international intelligence agency (generic term)
+canafistola|1
+(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistula|Cassia fistula|cassia (generic term)
+canafistula|1
+(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistola|Cassia fistula|cassia (generic term)
+canakkale bogazi|1
+(noun)|Dardanelles|Canakkale Bogazi|Hellespont|strait (generic term)|sound (generic term)
+canal|4
+(noun)|channel (generic term)
+(noun)|duct|epithelial duct|channel|passage (generic term)|passageway (generic term)
+(noun)|watercourse (generic term)|waterway (generic term)
+(verb)|canalize|canalise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+canal boat|1
+(noun)|narrow boat|narrowboat|boat (generic term)
+canal of schlemm|1
+(noun)|canal of Schlemm|Schlemm's canal|sinus venosus sclerae|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+canal zone|1
+(noun)|Panama Canal Zone|Canal Zone|zone (generic term)
+canalicular|1
+(adj)|duct|epithelial duct|canal|channel (related term)
+canaliculate|1
+(adj)|furrowed (similar term)
+canaliculus|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+canalis cervicis uteri|1
+(noun)|cervical canal|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+canalis inguinalis|1
+(noun)|inguinal canal|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+canalis vertebralis|1
+(noun)|spinal canal|vertebral canal|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+canalisation|2
+(noun)|canalization|production (generic term)
+(noun)|channelization|channelisation|canalization|management (generic term)|direction (generic term)
+canalise|2
+(verb)|canal|canalize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|channel|canalize|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+canalization|2
+(noun)|canalisation|production (generic term)
+(noun)|channelization|channelisation|canalisation|management (generic term)|direction (generic term)
+canalize|2
+(verb)|canal|canalise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|channel|canalise|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+canandaigua lake|1
+(noun)|Canandaigua Lake|Lake Canandaigua|lake (generic term)
+cananga|1
+(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus (generic term)
+cananga odorata|1
+(noun)|ilang-ilang|ylang-ylang|Cananga odorata|angiospermous tree (generic term)|flowering tree (generic term)
+canangium|1
+(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus (generic term)
+canape|1
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+canara|1
+(noun)|Kanara|Canara|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+canard|1
+(noun)|fabrication (generic term)|fiction (generic term)|fable (generic term)
+canarese|1
+(noun)|Kanarese|Canarese|Dravidian (generic term)
+canaries|1
+(noun)|Canary Islands|Canaries|island (generic term)
+canary|5
+(adj)|canary-yellow|chromatic (similar term)
+(noun)|fink|snitch|snitcher|stoolpigeon|stool pigeon|stoolie|sneak|sneaker|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|canary yellow|yellow (generic term)|yellowness (generic term)
+(noun)|canary bird|finch (generic term)
+canary-yellow|1
+(adj)|canary|chromatic (similar term)
+canary bird|1
+(noun)|canary|finch (generic term)
+canary creeper|1
+(noun)|canarybird flower|canarybird vine|Tropaeolum peregrinum|nasturtium (generic term)
+canary grass|1
+(noun)|birdseed grass|Phalaris canariensis|grass (generic term)
+canary island hare's foot fern|1
+(noun)|Canary Island hare's foot fern|Davallia canariensis|hare's-foot fern (generic term)
+canary islands|1
+(noun)|Canary Islands|Canaries|island (generic term)
+canary seed|1
+(noun)|bird feed (generic term)|bird food (generic term)|birdseed (generic term)
+canary whitewood|1
+(noun)|tulip tree|tulip poplar|yellow poplar|Liriodendron tulipifera|angiospermous tree (generic term)|flowering tree (generic term)
+canary wine|1
+(noun)|Canary wine|white wine (generic term)
+canary yellow|1
+(noun)|canary|yellow (generic term)|yellowness (generic term)
+canarybird flower|1
+(noun)|canarybird vine|canary creeper|Tropaeolum peregrinum|nasturtium (generic term)
+canarybird vine|1
+(noun)|canarybird flower|canary creeper|Tropaeolum peregrinum|nasturtium (generic term)
+canasta|1
+(noun)|basket rummy|meld|rummy (generic term)|rum (generic term)
+canavalia|1
+(noun)|Canavalia|genus Canavalia|rosid dicot genus (generic term)
+canavalia ensiformis|1
+(noun)|jack bean|wonder bean|giant stock bean|Canavalia ensiformis|vine (generic term)
+canavalia gladiata|1
+(noun)|sword bean|Canavalia gladiata|vine (generic term)
+canavanine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+canberra|1
+(noun)|Canberra|Australian capital|capital of Australia|national capital (generic term)
+cancan|1
+(noun)|stage dancing (generic term)|choreography (generic term)
+cancel|6
+(noun)|natural|musical notation (generic term)
+(verb)|call off|scratch|scrub
+(verb)|offset|set off|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|strike down|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|delete|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|invalidate|score (generic term)|mark (generic term)
+cancel out|1
+(verb)|wipe out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+cancellate|2
+(adj)|cancellated|clathrate|reticulate (similar term)|reticular (similar term)
+(adj)|cancellated|cancellous|cellular (similar term)
+cancellated|2
+(adj)|cancellate|clathrate|reticulate (similar term)|reticular (similar term)
+(adj)|cancellate|cancellous|cellular (similar term)
+cancellation|2
+(noun)|nullification (generic term)|override (generic term)
+(noun)|negation (generic term)
+cancelled|1
+(adj)|off|on (antonym)
+cancellous|1
+(adj)|cancellate|cancellated|cellular (similar term)
+cancer|5
+(noun)|malignant neoplastic disease|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+(noun)|Cancer|Crab|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Cancer|constellation (generic term)
+(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|Cancer|genus Cancer|arthropod genus (generic term)
+cancer body|1
+(noun)|Russell's body|inclusion body (generic term)|cellular inclusion (generic term)|inclusion (generic term)
+cancer borealis|1
+(noun)|Jonah crab|Cancer borealis|crab (generic term)
+cancer cell|1
+(noun)|neoplastic cell (generic term)
+cancer drug|1
+(noun)|antineoplastic|antineoplastic drug|cytotoxic drug (generic term)
+cancer irroratus|1
+(noun)|rock crab|Cancer irroratus|crab (generic term)
+cancer juice|1
+(noun)|juice (generic term)|succus (generic term)
+cancer magister|1
+(noun)|Dungeness crab|Cancer magister|crab (generic term)
+cancer of the blood|1
+(noun)|leukemia|leukaemia|leucaemia|cancer (generic term)|malignant neoplastic disease (generic term)
+cancer of the liver|1
+(noun)|liver cancer|liver disease (generic term)|carcinoma (generic term)
+cancer the crab|1
+(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+cancer weed|1
+(noun)|cancerweed|Salvia lyrata|sage (generic term)|salvia (generic term)
+cancerous|2
+(adj)|malignant (similar term)
+(adj)|malign (similar term)
+cancerweed|1
+(noun)|cancer weed|Salvia lyrata|sage (generic term)|salvia (generic term)
+cancridae|1
+(noun)|Cancridae|family Cancridae|arthropod family (generic term)
+cancroid|2
+(adj)|skin cancer (related term)
+(noun)|squamous cell carcinoma|skin cancer (generic term)
+cancun|1
+(noun)|Cancun|city (generic term)|metropolis (generic term)|urban center (generic term)
+candela|1
+(noun)|candle|cd|standard candle|luminous intensity unit (generic term)|candlepower unit (generic term)
+candelabra|1
+(noun)|candelabrum|candlestick (generic term)|candle holder (generic term)
+candelabrum|1
+(noun)|candelabra|candlestick (generic term)|candle holder (generic term)
+candelilla|2
+(noun)|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge (generic term)|slipper plant (generic term)
+(noun)|Euphorbia antisyphilitica|spurge (generic term)
+candelilla wax|1
+(noun)|wax (generic term)
+candent|1
+(adj)|incandescent|light (similar term)
+candescent|1
+(adj)|light (similar term)
+candid|3
+(adj)|blunt|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+(adj)|unstudied (similar term)|uncontrived (similar term)
+(adj)|open|heart-to-heart|ingenuous (similar term)|artless (similar term)
+candid camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+candida|1
+(noun)|fungus (generic term)
+candida albicans|1
+(noun)|Candida albicans|Monilia albicans|candida (generic term)
+candidacy|1
+(noun)|campaigning|candidature|electioneering|political campaign|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+candidate|2
+(noun)|campaigner|nominee|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|prospect|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+candidature|1
+(noun)|campaigning|candidacy|electioneering|political campaign|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+candidiasis|1
+(noun)|moniliasis|monilia disease|fungal infection (generic term)|mycosis (generic term)
+candidly|1
+(adv)|honestly|frankly
+candidness|1
+(noun)|candor|candour|frankness|directness|forthrightness|honesty (generic term)|honestness (generic term)
+candied|2
+(adj)|sugar-coated|sugary (similar term)
+(adj)|crystalized|crystalised|glace|preserved (similar term)
+candied apple|1
+(noun)|candy apple|taffy apple|caramel apple|toffee apple|sweet (generic term)|confection (generic term)
+candied citrus peel|1
+(noun)|candied fruit (generic term)|crystallized fruit (generic term)
+candied fruit|1
+(noun)|crystallized fruit|confiture (generic term)
+candle|3
+(noun)|taper|wax light|lamp (generic term)
+(noun)|candela|cd|standard candle|luminous intensity unit (generic term)|candlepower unit (generic term)
+(verb)|examine (generic term)|see (generic term)
+candle flame|1
+(noun)|candlelight|light (generic term)|visible light (generic term)|visible radiation (generic term)
+candle holder|1
+(noun)|candlestick|holder (generic term)
+candleberry|1
+(noun)|bayberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle (generic term)
+candlelight|1
+(noun)|candle flame|light (generic term)|visible light (generic term)|visible radiation (generic term)
+candlemaker|1
+(noun)|chandler (generic term)
+candlemas|1
+(noun)|Candlemas|Candlemas Day|Feb 2|quarter day (generic term)
+candlemas day|1
+(noun)|Candlemas|Candlemas Day|Feb 2|quarter day (generic term)
+candlenut|2
+(noun)|varnish tree|Aleurites moluccana|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|oilseed (generic term)|oil-rich seed (generic term)
+candlepin|1
+(noun)|bowling pin (generic term)|pin (generic term)
+candlepin bowling|1
+(noun)|candlepins|bowling (generic term)
+candlepins|1
+(noun)|candlepin bowling|bowling (generic term)
+candlepower|1
+(noun)|light intensity|intensity (generic term)|strength (generic term)|intensity level (generic term)
+candlepower unit|1
+(noun)|luminous intensity unit|light unit (generic term)
+candlesnuffer|1
+(noun)|implement (generic term)
+candlestick|1
+(noun)|candle holder|holder (generic term)
+candlestick tulip|1
+(noun)|lady tulip|Tulipa clusiana|tulip (generic term)
+candlewick|2
+(noun)|wick (generic term)|taper (generic term)
+(noun)|embroidery (generic term)|fancywork (generic term)
+candlewood|1
+(noun)|shrub (generic term)|bush (generic term)
+candor|2
+(noun)|fairness|fair-mindedness|candour|impartiality (generic term)|nonpartisanship (generic term)|unfairness (antonym)
+(noun)|candour|candidness|frankness|directness|forthrightness|honesty (generic term)|honestness (generic term)
+candour|2
+(noun)|candor|candidness|frankness|directness|forthrightness|honesty (generic term)|honestness (generic term)
+(noun)|fairness|fair-mindedness|candor|impartiality (generic term)|nonpartisanship (generic term)|unfairness (antonym)
+candy|2
+(noun)|confect|sweet (generic term)|confection (generic term)
+(verb)|sugarcoat|glaze|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+candy-like|1
+(adj)|cooked (similar term)
+candy-scented|1
+(adj)|odorous (similar term)
+candy apple|1
+(noun)|candied apple|taffy apple|caramel apple|toffee apple|sweet (generic term)|confection (generic term)
+candy bar|1
+(noun)|candy (generic term)|confect (generic term)
+candy cane|1
+(noun)|candy (generic term)|confect (generic term)
+candy corn|1
+(noun)|candy (generic term)|confect (generic term)
+candy egg|1
+(noun)|Easter egg (generic term)
+candy kiss|1
+(noun)|kiss|candy (generic term)|confect (generic term)
+candy store|1
+(noun)|confectionery|confectionary|shop (generic term)|store (generic term)
+candy striper|1
+(noun)|volunteer (generic term)|unpaid worker (generic term)
+candy thermometer|1
+(noun)|thermometer (generic term)
+candyfloss|1
+(noun)|cotton candy|spun sugar|candy (generic term)|confect (generic term)
+candymaker|1
+(noun)|confectioner|maker (generic term)|shaper (generic term)
+candytuft|1
+(noun)|flower (generic term)
+candyweed|1
+(noun)|orange milkwort|yellow milkwort|yellow bachelor's button|Polygala lutea|milkwort (generic term)
+cane|4
+(noun)|walking stick (generic term)
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|switch (generic term)
+(verb)|flog|lambaste|lambast|beat (generic term)|beat up (generic term)|work over (generic term)
+cane blight|1
+(noun)|blight (generic term)
+cane reed|1
+(noun)|giant cane|Arundinaria gigantea|bamboo (generic term)
+cane sugar|2
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+(noun)|sugar (generic term)|refined sugar (generic term)
+canebrake|1
+(noun)|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+canebrake rattler|1
+(noun)|canebrake rattlesnake|Crotalus horridus atricaudatus|timber rattlesnake (generic term)|banded rattlesnake (generic term)|Crotalus horridus horridus (generic term)
+canebrake rattlesnake|1
+(noun)|canebrake rattler|Crotalus horridus atricaudatus|timber rattlesnake (generic term)|banded rattlesnake (generic term)|Crotalus horridus horridus (generic term)
+canecutter|1
+(noun)|swamp rabbit|swamp hare|Sylvilagus aquaticus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+canella|1
+(noun)|canella bark|white cinnamon|bark (generic term)
+canella-alba|1
+(noun)|wild cinnamon|white cinnamon tree|Canella winterana|Canella-alba|shrub (generic term)|bush (generic term)
+canella bark|1
+(noun)|canella|white cinnamon|bark (generic term)
+canella family|1
+(noun)|Canellaceae|family Canellaceae|dilleniid dicot family (generic term)
+canella winterana|1
+(noun)|wild cinnamon|white cinnamon tree|Canella winterana|Canella-alba|shrub (generic term)|bush (generic term)
+canellaceae|1
+(noun)|Canellaceae|family Canellaceae|canella family|dilleniid dicot family (generic term)
+canescent|2
+(adj)|achromatic (similar term)
+(adj)|hoary|hairy (similar term)|haired (similar term)|hirsute (similar term)
+canetti|1
+(noun)|Canetti|Elias Canetti|writer (generic term)|author (generic term)
+canfield|1
+(noun)|solitaire (generic term)|patience (generic term)
+canful|1
+(noun)|can|containerful (generic term)
+cangue|1
+(noun)|instrument of punishment (generic term)
+canicola fever|1
+(noun)|swamp fever (generic term)|leptospirosis (generic term)
+canicula|1
+(noun)|Sirius|Dog Star|Canicula|Sothis|binary star (generic term)|binary (generic term)|double star (generic term)
+canicular|2
+(adj)|time period|period of time|period (related term)
+(adj)|binary star|binary|double star (related term)
+canicular days|1
+(noun)|dog days|canicule|time period (generic term)|period of time (generic term)|period (generic term)
+canicule|1
+(noun)|dog days|canicular days|time period (generic term)|period of time (generic term)|period (generic term)
+canid|1
+(noun)|canine|carnivore (generic term)
+canidae|1
+(noun)|Canidae|family Canidae|mammal family (generic term)
+canine|4
+(adj)|laniary|tooth (related term)
+(adj)|mammal family (related term)
+(noun)|canine tooth|eyetooth|eye tooth|dogtooth|cuspid|tooth (generic term)
+(noun)|canid|carnivore (generic term)
+canine chorea|1
+(noun)|chorea|animal disease (generic term)
+canine distemper|1
+(noun)|distemper (generic term)
+canine tooth|1
+(noun)|canine|eyetooth|eye tooth|dogtooth|cuspid|tooth (generic term)
+caning|1
+(noun)|wicker|wickerwork|work (generic term)|piece of work (generic term)
+canis|1
+(noun)|Canis|genus Canis|mammal genus (generic term)
+canis aureus|1
+(noun)|jackal|Canis aureus|canine (generic term)|canid (generic term)
+canis dingo|1
+(noun)|dingo|warrigal|warragal|Canis dingo|wild dog (generic term)
+canis familiaris|1
+(noun)|dog|domestic dog|Canis familiaris|canine (generic term)|canid (generic term)
+canis latrans|1
+(noun)|coyote|prairie wolf|brush wolf|Canis latrans|wolf (generic term)
+canis lupus|1
+(noun)|timber wolf|grey wolf|gray wolf|Canis lupus|wolf (generic term)
+canis lupus tundrarum|1
+(noun)|white wolf|Arctic wolf|Canis lupus tundrarum|wolf (generic term)
+canis major|1
+(noun)|Canis Major|Great Dog|constellation (generic term)
+canis minor|1
+(noun)|Canis Minor|Little Dog|constellation (generic term)
+canis niger|1
+(noun)|red wolf|maned wolf|Canis rufus|Canis niger|wolf (generic term)
+canis rufus|1
+(noun)|red wolf|maned wolf|Canis rufus|Canis niger|wolf (generic term)
+canistel|2
+(noun)|canistel tree|Pouteria campechiana nervosa|fruit tree (generic term)
+(noun)|eggfruit|edible fruit (generic term)
+canistel tree|1
+(noun)|canistel|Pouteria campechiana nervosa|fruit tree (generic term)
+canister|2
+(noun)|case shot|canister shot|ammunition (generic term)|ammo (generic term)
+(noun)|cannister|tin|container (generic term)
+canister shot|1
+(noun)|case shot|canister|ammunition (generic term)|ammo (generic term)
+canker|5
+(noun)|plant disease (generic term)
+(noun)|canker sore|ulcer (generic term)|ulceration (generic term)
+(noun)|pestilence|influence (generic term)
+(verb)|sicken (generic term)|come down (generic term)
+(verb)|infect (generic term)
+canker brake|1
+(noun)|Christmas fern|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern (generic term)
+canker sore|1
+(noun)|canker|ulcer (generic term)|ulceration (generic term)
+cankerous|1
+(adj)|ulcerated|ulcerous|unhealthy (similar term)
+cankerweed|1
+(noun)|white lettuce|Nabalus alba|Prenanthes alba|rattlesnake root (generic term)
+cankerworm|1
+(noun)|caterpillar (generic term)
+canna|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+canna edulis|1
+(noun)|achira|indian shot|arrowroot|Canna indica|Canna edulis|canna (generic term)
+canna generalis|1
+(noun)|canna lily|Canna generalis|canna (generic term)
+canna indica|1
+(noun)|achira|indian shot|arrowroot|Canna indica|Canna edulis|canna (generic term)
+canna lily|1
+(noun)|Canna generalis|canna (generic term)
+cannabidaceae|1
+(noun)|Cannabidaceae|family Cannabidaceae|hemp family|dicot family (generic term)|magnoliopsid family (generic term)
+cannabin|1
+(noun)|cannabis resin|natural resin (generic term)
+cannabis|2
+(noun)|hemp|shrub (generic term)|bush (generic term)
+(noun)|marijuana|marihuana|ganja|soft drug (generic term)|controlled substance (generic term)
+cannabis indica|1
+(noun)|Indian hemp|Cannabis indica|cannabis (generic term)|hemp (generic term)
+cannabis resin|1
+(noun)|cannabin|natural resin (generic term)
+cannabis sativa|1
+(noun)|marijuana|marihuana|ganja|Cannabis sativa|cannabis (generic term)|hemp (generic term)
+cannaceae|1
+(noun)|Cannaceae|family Cannaceae|monocot family (generic term)|liliopsid family (generic term)
+cannae|1
+(noun)|Cannae|pitched battle (generic term)
+canned|2
+(adj)|transcribed|recorded (similar term)
+(adj)|tinned|preserved (similar term)
+canned food|1
+(noun)|canned foods|canned goods|tinned goods|foodstuff (generic term)|food product (generic term)
+canned foods|1
+(noun)|canned food|canned goods|tinned goods|foodstuff (generic term)|food product (generic term)
+canned goods|1
+(noun)|canned food|canned foods|tinned goods|foodstuff (generic term)|food product (generic term)
+canned hunt|1
+(noun)|hunt (generic term)|hunting (generic term)
+canned meat|1
+(noun)|tinned meat|canned food (generic term)|canned foods (generic term)|canned goods (generic term)|tinned goods (generic term)
+cannel coal|1
+(noun)|bituminous coal (generic term)|soft coal (generic term)
+cannelloni|1
+(noun)|pasta (generic term)
+cannery|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+cannes|1
+(noun)|Cannes|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cannibal|1
+(noun)|man-eater|anthropophagus|anthropophagite|savage (generic term)|barbarian (generic term)
+cannibal mound|1
+(noun)|steak tartare|tartar steak|dish (generic term)
+cannibalic|1
+(adj)|inhumane (similar term)
+cannibalise|2
+(verb)|cannibalize|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|cannibalize|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+cannibalism|1
+(noun)|practice (generic term)|pattern (generic term)
+cannibalistic|1
+(adj)|savage|barbarian (related term)|practice|pattern (related term)
+cannibalize|2
+(verb)|cannibalise|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|cannibalise|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+cannikin|2
+(noun)|bucket (generic term)|pail (generic term)
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+cannily|1
+(adv)|presciently
+cannister|1
+(noun)|canister|tin|container (generic term)
+cannon|7
+(noun)|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|gun (generic term)
+(noun)|shank|body part (generic term)
+(noun)|carom|stroke (generic term)|shot (generic term)
+(verb)|hit (generic term)
+(verb)|discharge (generic term)|muster out (generic term)
+cannon ball|1
+(noun)|cannonball|round shot|projectile (generic term)|missile (generic term)
+cannon bone|1
+(noun)|bone (generic term)|os (generic term)
+cannon cracker|1
+(noun)|firecracker (generic term)|cracker (generic term)|banger (generic term)
+cannon fire|1
+(noun)|artillery fire|fire (generic term)|firing (generic term)
+cannon fodder|1
+(noun)|fresh fish|soldier (generic term)
+cannonade|2
+(noun)|drumfire|artillery fire (generic term)|cannon fire (generic term)
+(verb)|attack (generic term)|assail (generic term)
+cannonball|1
+(noun)|cannon ball|round shot|projectile (generic term)|missile (generic term)
+cannonball along|1
+(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|rush along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+cannoneer|1
+(noun)|artilleryman|gunner|machine gunner|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+cannula|1
+(noun)|tube (generic term)|tubing (generic term)
+cannular|1
+(adj)|tubular|tubelike|tube-shaped|vasiform|hollow (similar term)
+cannulate|1
+(verb)|cannulize|cannulise|intubate|canulate|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+cannulation|1
+(noun)|canulation|cannulization|cannulisation|canulization|canulisation|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+cannulisation|1
+(noun)|cannulation|canulation|cannulization|canulization|canulisation|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+cannulise|1
+(verb)|cannulate|cannulize|intubate|canulate|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+cannulization|1
+(noun)|cannulation|canulation|cannulisation|canulization|canulisation|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+cannulize|1
+(verb)|cannulate|cannulise|intubate|canulate|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+canny|1
+(adj)|cagey|cagy|clever|smart (similar term)
+canoe|2
+(noun)|small boat (generic term)
+(verb)|boat (generic term)
+canoe birch|1
+(noun)|American white birch|paper birch|paperbark birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+canoe cedar|1
+(noun)|western red cedar|red cedar|Thuja plicata|arborvitae (generic term)
+canoeist|1
+(noun)|paddler|boatman (generic term)|boater (generic term)|waterman (generic term)
+canola oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+canon|6
+(noun)|rule (generic term)|prescript (generic term)
+(noun)|priest (generic term)
+(noun)|canyon|ravine (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|scripture (generic term)|sacred scripture (generic term)
+canon law|1
+(noun)|ecclesiastical law|law (generic term)|jurisprudence (generic term)
+canonic|4
+(adj)|canonical|rule|prescript (related term)
+(adj)|canonical|law|jurisprudence (related term)
+(adj)|basic|canonical|standard (similar term)
+(adj)|canonical|sanctioned|orthodox (similar term)
+canonical|4
+(adj)|canonic|rule|prescript (related term)
+(adj)|canonic|law|jurisprudence (related term)
+(adj)|basic|canonic|standard (similar term)
+(adj)|canonic|sanctioned|orthodox (similar term)
+canonical hour|1
+(noun)|hour (generic term)|time of day (generic term)
+canonisation|1
+(noun)|canonization|sanctification (generic term)
+canonise|2
+(verb)|canonize|laud (generic term)|extol (generic term)|exalt (generic term)|glorify (generic term)|proclaim (generic term)
+(verb)|canonize|saint|declare (generic term)|adjudge (generic term)|hold (generic term)
+canonised|1
+(adj)|canonized|glorified|authorized (similar term)|authorised (similar term)
+canonist|2
+(adj)|rule|prescript (related term)
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+canonization|1
+(noun)|canonisation|sanctification (generic term)
+canonize|2
+(verb)|canonise|saint|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|canonise|laud (generic term)|extol (generic term)|exalt (generic term)|glorify (generic term)|proclaim (generic term)
+canonized|1
+(adj)|canonised|glorified|authorized (similar term)|authorised (similar term)
+canoodle|1
+(verb)|pet (generic term)
+canopic jar|1
+(noun)|canopic vase|jar (generic term)
+canopic vase|1
+(noun)|canopic jar|jar (generic term)
+canopied|1
+(adj)|covered (similar term)
+canopus|1
+(noun)|Canopus|supergiant (generic term)
+canopy|4
+(noun)|covering (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|shelter (generic term)
+(verb)|cover (generic term)
+canorous|1
+(adj)|songful|melodious (similar term)|melodic (similar term)|musical (similar term)
+cant|6
+(noun)|buzzword|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|bank|camber|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|slang|jargon|lingo|argot|patois|vernacular|non-standard speech (generic term)
+(noun)|pious platitude|talk (generic term)|talking (generic term)
+(noun)|bevel|chamfer|edge (generic term)
+(verb)|cant over|tilt|slant|pitch|move (generic term)
+cant dog|1
+(noun)|peavey|peavy|lever (generic term)
+cant hook|1
+(noun)|peavey (generic term)|peavy (generic term)|cant dog (generic term)
+cant over|1
+(verb)|cant|tilt|slant|pitch|move (generic term)
+cantabile|1
+(adj)|singing|melodious (similar term)|melodic (similar term)|musical (similar term)
+cantabrian mountains|1
+(noun)|Cantabrian Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cantabrigian|1
+(noun)|Cantabrigian|English person (generic term)
+cantala|2
+(noun)|Cebu maguey|manila maguey|fiber (generic term)|fibre (generic term)
+(noun)|maguey|Agave cantala|agave (generic term)|century plant (generic term)|American aloe (generic term)
+cantaloup|2
+(noun)|cantaloupe|cantaloupe vine|cantaloup vine|Cucumis melo cantalupensis|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|cantaloupe|muskmelon (generic term)|sweet melon (generic term)
+cantaloup vine|1
+(noun)|cantaloupe|cantaloup|cantaloupe vine|Cucumis melo cantalupensis|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+cantaloupe|2
+(noun)|cantaloup|cantaloupe vine|cantaloup vine|Cucumis melo cantalupensis|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|cantaloup|muskmelon (generic term)|sweet melon (generic term)
+cantaloupe vine|1
+(noun)|cantaloupe|cantaloup|cantaloup vine|Cucumis melo cantalupensis|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+cantankerous|2
+(adj)|bloody-minded|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|crotchety|ornery|ill-natured (similar term)
+cantata|1
+(noun)|oratorio|classical music (generic term)|classical (generic term)|serious music (generic term)
+canted|1
+(adj)|atilt|leaning|tilted|tipped|inclined (similar term)
+canteen|5
+(noun)|flask (generic term)
+(noun)|shop (generic term)|store (generic term)
+(noun)|mobile canteen|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+(noun)|recreation room (generic term)|rec room (generic term)
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+canter|4
+(noun)|lope|gait (generic term)
+(verb)|ride horseback (generic term)
+(verb)|pace (generic term)
+(verb)|ride (generic term)|sit (generic term)
+canterbury|1
+(noun)|Canterbury|town (generic term)
+canterbury bell|2
+(noun)|Canterbury bell|Gloxinia perennis|gloxinia (generic term)
+(noun)|Canterbury bell|cup and saucer|Campanula medium|campanula (generic term)|bellflower (generic term)
+canterbury tales|1
+(noun)|Canterbury Tales|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+cantering rhythm|1
+(noun)|gallop rhythm|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+cantharellus|1
+(noun)|Cantharellus|genus Cantharellus|fungus genus (generic term)
+cantharellus cibarius|1
+(noun)|chanterelle|chantarelle|Cantharellus cibarius|agaric (generic term)
+cantharellus cinnabarinus|1
+(noun)|cinnabar chanterelle|Cantharellus cinnabarinus|agaric (generic term)
+cantharellus clavatus|1
+(noun)|pig's ears|Cantharellus clavatus|agaric (generic term)
+cantharellus floccosus|1
+(noun)|floccose chanterelle|Cantharellus floccosus|agaric (generic term)
+canthus|1
+(noun)|corner (generic term)
+canticle|1
+(noun)|hymn (generic term)|anthem (generic term)
+canticle of canticles|1
+(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book (generic term)
+canticle of simeon|1
+(noun)|Canticle of Simeon|Nunc dimittis|prayer (generic term)
+canticles|1
+(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book (generic term)
+cantilever|3
+(noun)|beam (generic term)
+(verb)|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+cantilever bridge|1
+(noun)|bridge (generic term)|span (generic term)
+cantillate|1
+(verb)|chant|intone|intonate|sing (generic term)
+cantillation|1
+(noun)|intonation (generic term)|chanting (generic term)
+cantle|1
+(noun)|back (generic term)|backrest (generic term)
+canto|2
+(noun)|voice part (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+canton|4
+(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(verb)|quarter|billet|lodge (generic term)|accommodate (generic term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+canton crepe|1
+(noun)|Canton crepe|crepe (generic term)|crape (generic term)
+canton flannel|1
+(noun)|cotton flannel|Canton flannel|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+canton ginger|1
+(noun)|common ginger|Canton ginger|stem ginger|Zingiber officinale|ginger (generic term)
+canton river|1
+(noun)|Zhu Jiang|Canton River|Chu Kiang|Pearl River|river (generic term)
+cantonal|1
+(adj)|city|metropolis|urban center|port (related term)
+cantonese|1
+(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese (generic term)
+cantonese dialect|1
+(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese (generic term)
+cantonment|1
+(noun)|camp|encampment|bivouac|military quarters (generic term)
+cantor|2
+(noun)|choirmaster|precentor|musician (generic term)
+(noun)|hazan|spiritual leader (generic term)
+cantus firmus|1
+(noun)|plainsong (generic term)|plainchant (generic term)|Gregorian chant (generic term)
+canty|1
+(adj)|energetic (similar term)
+canuck|1
+(noun)|Canuck|French Canadian (generic term)
+canulate|1
+(verb)|cannulate|cannulize|cannulise|intubate|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+canulation|1
+(noun)|cannulation|cannulization|cannulisation|canulization|canulisation|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+canulisation|1
+(noun)|cannulation|canulation|cannulization|cannulisation|canulization|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+canulization|1
+(noun)|cannulation|canulation|cannulization|cannulisation|canulisation|intubation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+canute|1
+(noun)|Canute|Cnut|Knut|Canute the Great|King of England (generic term)|King of Great Britain (generic term)
+canute the great|1
+(noun)|Canute|Cnut|Knut|Canute the Great|King of England (generic term)|King of Great Britain (generic term)
+canvas|10
+(noun)|canvas fabric|canvass|canvass fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|canvass|oil painting (generic term)
+(noun)|canvass|setting (generic term)|background (generic term)|scope (generic term)
+(noun)|canvas tent|canvass|tent (generic term)|collapsible shelter (generic term)
+(noun)|sail|canvass|sheet|piece of cloth (generic term)|piece of material (generic term)
+(noun)|canvass|mat (generic term)|gym mat (generic term)
+(verb)|canvass|solicit (generic term)|beg (generic term)|tap (generic term)
+(verb)|poll|canvass|survey (generic term)
+(verb)|cover (generic term)
+(verb)|analyze|analyse|study|examine|canvass
+canvas fabric|1
+(noun)|canvas|canvass|canvass fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+canvas tent|1
+(noun)|canvas|canvass|tent (generic term)|collapsible shelter (generic term)
+canvasback|1
+(noun)|canvasback duck|Aythya valisineria|duck (generic term)
+canvasback duck|1
+(noun)|canvasback|Aythya valisineria|duck (generic term)
+canvass|10
+(noun)|canvas|setting (generic term)|background (generic term)|scope (generic term)
+(noun)|poll|opinion poll|public opinion poll|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|sail|canvas|sheet|piece of cloth (generic term)|piece of material (generic term)
+(noun)|canvas tent|canvas|tent (generic term)|collapsible shelter (generic term)
+(noun)|canvas|oil painting (generic term)
+(noun)|canvas|mat (generic term)|gym mat (generic term)
+(noun)|canvas|canvas fabric|canvass fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|poll|canvas|survey (generic term)
+(verb)|canvas|solicit (generic term)|beg (generic term)|tap (generic term)
+(verb)|analyze|analyse|study|examine|canvas
+canvass fabric|1
+(noun)|canvas|canvas fabric|canvass|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+canvasser|4
+(noun)|solicitor|petitioner (generic term)|suppliant (generic term)|supplicant (generic term)|requester (generic term)
+(noun)|scrutineer|examiner (generic term)|inspector (generic term)
+(noun)|pollster|poll taker|headcounter|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+(noun)|teller (generic term)|vote counter (generic term)
+canvassing|1
+(noun)|electioneering|bell ringing|persuasion (generic term)|suasion (generic term)
+canyon|1
+(noun)|canon|ravine (generic term)
+canyon live oak|1
+(noun)|canyon oak|maul oak|iron oak|Quercus chrysolepis|live oak (generic term)
+canyon oak|1
+(noun)|canyon live oak|maul oak|iron oak|Quercus chrysolepis|live oak (generic term)
+canyon treefrog|1
+(noun)|Hyla arenicolor|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+canyonlands national park|1
+(noun)|Canyonlands National Park|national park (generic term)
+canyonside|1
+(noun)|slope (generic term)|incline (generic term)|side (generic term)
+caoutchouc|1
+(noun)|rubber|natural rubber|India rubber|gum elastic|latex (generic term)
+caoutchouc tree|1
+(noun)|para rubber tree|Hevea brasiliensis|angiospermous tree (generic term)|flowering tree (generic term)
+cap|10
+(noun)|headdress (generic term)|headgear (generic term)
+(noun)|top (generic term)|cover (generic term)
+(noun)|detonator|detonating device|explosive device (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|pileus|plant part (generic term)|plant structure (generic term)
+(noun)|ceiling|control (generic term)
+(noun)|crownwork|dental appliance (generic term)
+(noun)|capital|chapiter|top (generic term)
+(verb)|crest|lie (generic term)
+(verb)|limit (generic term)|circumscribe (generic term)|confine (generic term)
+cap-a-pie|1
+(adv)|from head to toe
+cap off|1
+(verb)|get through (generic term)|wrap up (generic term)|finish off (generic term)|mop up (generic term)|polish off (generic term)|clear up (generic term)|finish up (generic term)
+cap opener|1
+(noun)|bottle opener (generic term)
+cap screw|1
+(noun)|screw (generic term)
+capability|3
+(noun)|capableness|ability (generic term)|incapableness (antonym)|incapability (antonym)
+(noun)|capacity|susceptibility (generic term)|susceptibleness (generic term)
+(noun)|capableness|potentiality|aptitude (generic term)|incapability (antonym)
+capable|5
+(adj)|able (similar term)|confident (similar term)|surefooted (similar term)|sure-footed (similar term)|resourceful (similar term)|competent (related term)|incapable (antonym)
+(adj)|open|subject|susceptible (similar term)
+(adj)|incapable (antonym)
+(adj)|adequate to|equal to|up to|adequate (similar term)
+(adj)|able|competent (similar term)
+capableness|2
+(noun)|capability|potentiality|aptitude (generic term)|incapability (antonym)
+(noun)|capability|ability (generic term)|incapableness (antonym)|incapability (antonym)
+capably|1
+(adv)|competently|aptly|ably|with competence|incompetently (antonym)
+capacious|1
+(adj)|large (similar term)|big (similar term)
+capaciousness|2
+(noun)|roominess|breadth (generic term)|comprehensiveness (generic term)|largeness (generic term)
+(noun)|roominess|spaciousness|commodiousness|largeness (generic term)|bigness (generic term)
+capacitance|2
+(noun)|electrical capacity|capacity|electrical phenomenon (generic term)
+(noun)|capacitor|condenser|electrical condenser|electrical device (generic term)
+capacitance unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+capacitate|3
+(verb)|qualify (generic term)
+(verb)|change (generic term)
+(verb)|qualify (generic term)|dispose (generic term)
+capacitive|1
+(adj)|electrical phenomenon (related term)
+capacitor|1
+(noun)|capacitance|condenser|electrical condenser|electrical device (generic term)
+capacitor microphone|1
+(noun)|condenser microphone|microphone (generic term)|mike (generic term)
+capacity|9
+(noun)|capability (generic term)|capableness (generic term)|incapacity (antonym)
+(noun)|capability|susceptibility (generic term)|susceptibleness (generic term)
+(noun)|content|volume (generic term)
+(noun)|production (generic term)
+(noun)|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+(noun)|indefinite quantity (generic term)
+(noun)|capacitance|electrical capacity|electrical phenomenon (generic term)
+(noun)|mental ability|ability (generic term)|power (generic term)|incapacity (antonym)
+(noun)|tolerance (generic term)
+capacity measure|1
+(noun)|volume unit|capacity unit|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+capacity unit|1
+(noun)|volume unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+caparison|2
+(noun)|trapping|housing|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(verb)|bard|barde|dress up|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+caparisoned|1
+(adj)|clothed (similar term)|clad (similar term)
+cape|2
+(noun)|ness|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|mantle|cloak (generic term)
+cape aloe|1
+(noun)|Aloe ferox|aloe (generic term)
+cape ann|1
+(noun)|Cape Ann|peninsula (generic term)
+cape breton island|1
+(noun)|Cape Breton Island|island (generic term)
+cape buffalo|1
+(noun)|Cape buffalo|Synercus caffer|Old World buffalo (generic term)|buffalo (generic term)
+cape canaveral|1
+(noun)|Cape Canaveral|Cape Kennedy|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+cape cod|1
+(noun)|Cape Cod|peninsula (generic term)
+cape cod bay|1
+(noun)|Cape Cod Bay|bay (generic term)|embayment (generic term)
+cape cod canal|1
+(noun)|Cape Cod Canal|canal (generic term)
+cape colony|1
+(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state (generic term)|province (generic term)
+cape dagga|1
+(noun)|dagga|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb (generic term)|herbaceous plant (generic term)
+cape fear|1
+(noun)|Cape Fear|cape (generic term)|ness (generic term)
+cape fear river|1
+(noun)|Cape Fear River|river (generic term)
+cape flattery|1
+(noun)|Cape Flattery|cape (generic term)|ness (generic term)
+cape forget-me-not|2
+(noun)|Anchusa riparia|anchusa (generic term)
+(noun)|Anchusa capensis|anchusa (generic term)
+cape froward|1
+(noun)|Cape Froward|cape (generic term)|ness (generic term)
+cape girardeau|1
+(noun)|Cape Girardeau|town (generic term)
+cape gooseberry|1
+(noun)|purple ground cherry|Physalis peruviana|ground cherry (generic term)|husk tomato (generic term)
+cape hatteras|1
+(noun)|Cape Hatteras|cape (generic term)|ness (generic term)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+cape horn|1
+(noun)|Cape Horn|cape (generic term)|ness (generic term)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+cape hunting dog|1
+(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog (generic term)
+cape hyacinth|1
+(noun)|summer hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth (generic term)
+cape jasmine|1
+(noun)|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia (generic term)
+cape jessamine|1
+(noun)|cape jasmine|Gardenia jasminoides|Gardenia augusta|gardenia (generic term)
+cape kafferboom|1
+(noun)|kaffir boom|Cape kafferboom|Erythrina caffra|coral tree (generic term)|erythrina (generic term)
+cape kennedy|1
+(noun)|Cape Canaveral|Cape Kennedy|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+cape lobster|1
+(noun)|Cape lobster|Homarus capensis|true lobster (generic term)
+cape marigold|1
+(noun)|sun marigold|star of the veldt|flower (generic term)
+cape may|1
+(noun)|Cape May|cape (generic term)|ness (generic term)
+cape may warbler|1
+(noun)|Cape May warbler|Dendroica tigrina|New World warbler (generic term)|wood warbler (generic term)
+cape of good hope|2
+(noun)|Cape of Good Hope|cape (generic term)|ness (generic term)
+(noun)|Cape of Good Hope|state (generic term)|province (generic term)
+cape of good hope province|1
+(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state (generic term)|province (generic term)
+cape passero|2
+(noun)|Cape Passero|Passero Cape|cape (generic term)|ness (generic term)
+(noun)|Passero|Cape Passero|naval battle (generic term)
+cape periwinkle|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+cape primrose|1
+(noun)|Cape primrose|streptocarpus (generic term)
+cape province|1
+(noun)|Cape Province|Cape of Good Hope Province|Cape Colony|state (generic term)|province (generic term)
+cape sable|2
+(noun)|Cape Sable|cape (generic term)|ness (generic term)
+(noun)|Cape Sable|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+cape town|1
+(noun)|Cape Town|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cape trafalgar|1
+(noun)|Cape Trafalgar|cape (generic term)|ness (generic term)
+cape tulip|1
+(noun)|Cape tulip|Haemanthus coccineus|blood lily (generic term)
+cape verde|1
+(noun)|Cape Verde|Republic of Cape Verde|country (generic term)|state (generic term)|land (generic term)
+cape verde escudo|1
+(noun)|Cape Verde escudo|escudo|Cape Verde monetary unit (generic term)
+cape verde islands|1
+(noun)|Cape Verde Islands|archipelago (generic term)
+cape verde monetary unit|1
+(noun)|Cape Verde monetary unit|monetary unit (generic term)
+cape yellowwood|1
+(noun)|African yellowwood|Podocarpus elongatus|conifer (generic term)|coniferous tree (generic term)
+cape york|1
+(noun)|Cape York|cape (generic term)|ness (generic term)
+cape york peninsula|1
+(noun)|Cape York Peninsula|peninsula (generic term)
+capek|1
+(noun)|Capek|Karel Capek|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+capelan|1
+(noun)|capelin|caplin|smelt (generic term)
+capelin|1
+(noun)|capelan|caplin|smelt (generic term)
+capeline bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+capella|2
+(noun)|Capella|giant star (generic term)|giant (generic term)
+(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus (generic term)
+caper|7
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|pickle (generic term)
+(noun)|job|robbery (generic term)
+(noun)|capriole|leap (generic term)|leaping (generic term)|spring (generic term)|saltation (generic term)|bound (generic term)|bounce (generic term)
+(noun)|play|frolic|romp|gambol|diversion (generic term)|recreation (generic term)
+(noun)|antic|joke|prank|trick|put-on|diversion (generic term)|recreation (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+caper family|1
+(noun)|Capparidaceae|family Capparidaceae|dilleniid dicot family (generic term)
+caper sauce|1
+(noun)|sauce (generic term)
+caper spurge|1
+(noun)|myrtle spurge|mole plant|Euphorbia lathyris|spurge (generic term)
+caper tree|2
+(noun)|bay-leaved caper|Capparis flexuosa|caper (generic term)
+(noun)|Jamaica caper tree|Capparis cynophallophora|caper (generic term)
+capercaillie|1
+(noun)|capercailzie|horse of the wood|Tetrao urogallus|grouse (generic term)
+capercailzie|1
+(noun)|capercaillie|horse of the wood|Tetrao urogallus|grouse (generic term)
+capet|1
+(noun)|Capet|Hugh Capet|King of France (generic term)
+capetian|2
+(adj)|Capetian|dynasty (related term)
+(noun)|Capetian|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+capetian dynasty|1
+(noun)|Capetian dynasty|dynasty (generic term)
+capeweed|1
+(noun)|cat's-ear|California dandelion|gosmore|Hypochaeris radicata|weed (generic term)
+capful|1
+(noun)|containerful (generic term)
+capibara|1
+(noun)|capybara|Hydrochoerus hydrochaeris|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+capillarity|1
+(noun)|capillary action|surface tension (generic term)
+capillary|4
+(adj)|body covering (related term)
+(adj)|hairlike|thin (similar term)
+(noun)|capillary tube|capillary tubing|tube (generic term)|tubing (generic term)
+(noun)|capillary vessel|blood vessel (generic term)
+capillary action|1
+(noun)|capillarity|surface tension (generic term)
+capillary artery|1
+(noun)|arteriole|arteriola|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+capillary bed|1
+(noun)|animal tissue (generic term)
+capillary fracture|1
+(noun)|hairline fracture|fracture (generic term)|break (generic term)
+capillary tube|1
+(noun)|capillary|capillary tubing|tube (generic term)|tubing (generic term)
+capillary tubing|1
+(noun)|capillary|capillary tube|tube (generic term)|tubing (generic term)
+capillary vein|1
+(noun)|venule|venula|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+capillary vessel|1
+(noun)|capillary|blood vessel (generic term)
+capital|11
+(adj)|superior (similar term)
+(adj)|primary (similar term)
+(adj)|great|majuscule|uppercase (similar term)
+(noun)|working capital|assets (generic term)
+(noun)|assets (generic term)
+(noun)|seat (generic term)
+(noun)|capital letter|uppercase|upper-case letter|majuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|lowercase (antonym)
+(noun)|center (generic term)|centre (generic term)
+(noun)|Capital|Washington|federal government (generic term)
+(noun)|Das Kapital|Capital|book (generic term)
+(noun)|chapiter|cap|top (generic term)
+capital account|1
+(noun)|account (generic term)|accounting (generic term)|account statement (generic term)
+capital cost|1
+(noun)|cost of capital|opportunity cost (generic term)
+capital expenditure|1
+(noun)|cost (generic term)
+capital gain|1
+(noun)|financial gain (generic term)
+capital gains tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+capital letter|1
+(noun)|capital|uppercase|upper-case letter|majuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|lowercase (antonym)
+capital levy|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+capital loss|1
+(noun)|financial loss (generic term)
+capital of afghanistan|1
+(noun)|Kabul|capital of Afghanistan|national capital (generic term)
+capital of alabama|1
+(noun)|Montgomery|capital of Alabama|state capital (generic term)
+capital of alaska|1
+(noun)|Juneau|capital of Alaska|state capital (generic term)
+capital of antigua and barbuda|1
+(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital (generic term)
+capital of argentina|1
+(noun)|Buenos Aires|capital of Argentina|national capital (generic term)|port (generic term)
+capital of arizona|1
+(noun)|Phoenix|capital of Arizona|state capital (generic term)
+capital of arkansas|1
+(noun)|Little Rock|capital of Arkansas|state capital (generic term)
+capital of armenia|1
+(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital (generic term)
+capital of australia|1
+(noun)|Canberra|Australian capital|capital of Australia|national capital (generic term)
+capital of austria|1
+(noun)|Vienna|Austrian capital|capital of Austria|national capital (generic term)
+capital of azerbaijan|1
+(noun)|Baku|capital of Azerbaijan|capital (generic term)|port (generic term)
+capital of bahrain|1
+(noun)|Manama|capital of Bahrain|national capital (generic term)
+capital of bangladesh|1
+(noun)|Dhaka|Dacca|capital of Bangladesh|national capital (generic term)
+capital of barbados|1
+(noun)|Bridgetown|capital of Barbados|capital (generic term)|port (generic term)
+capital of belarus|1
+(noun)|Minsk|capital of Belarus|capital (generic term)
+capital of belgium|1
+(noun)|Bruxelles|Brussels|Belgian capital|capital of Belgium|national capital (generic term)
+capital of benin|1
+(noun)|Porto Novo|capital of Benin|national capital (generic term)
+capital of botswana|1
+(noun)|Gaborone|capital of Botswana|national capital (generic term)
+capital of brazil|1
+(noun)|Brasilia|Brazilian capital|capital of Brazil|national capital (generic term)
+capital of burundi|1
+(noun)|Bujumbura|Usumbura|capital of Burundi|national capital (generic term)
+capital of california|1
+(noun)|Sacramento|capital of California|state capital (generic term)
+capital of cameroon|1
+(noun)|Yaounde|capital of Cameroon|national capital (generic term)
+capital of canada|1
+(noun)|Ottawa|Canadian capital|capital of Canada|national capital (generic term)
+capital of cape verde|1
+(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital (generic term)
+capital of central africa|1
+(noun)|Bangui|capital of Central Africa|national capital (generic term)
+capital of chad|1
+(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital (generic term)
+capital of chile|1
+(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital (generic term)
+capital of colombia|1
+(noun)|Bogota|capital of Colombia|national capital (generic term)
+capital of colorado|1
+(noun)|Denver|Mile-High City|capital of Colorado|state capital (generic term)
+capital of connecticut|1
+(noun)|Hartford|capital of Connecticut|state capital (generic term)
+capital of costa rica|1
+(noun)|San Jose|capital of Costa Rica|national capital (generic term)
+capital of cuba|1
+(noun)|Havana|capital of Cuba|Cuban capital|national capital (generic term)
+capital of cyprus|1
+(noun)|Nicosia|capital of Cyprus|national capital (generic term)
+capital of delaware|1
+(noun)|Dover|capital of Delaware|state capital (generic term)
+capital of djibouti|1
+(noun)|Djibouti|capital of Djibouti|national capital (generic term)|port (generic term)
+capital of ecuador|1
+(noun)|Quito|capital of Ecuador|national capital (generic term)
+capital of egypt|1
+(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital (generic term)|port (generic term)
+capital of estonia|1
+(noun)|Tallinn|Tallin|capital of Estonia|capital (generic term)|port (generic term)
+capital of ethiopia|1
+(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital (generic term)
+capital of finland|1
+(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital (generic term)|port (generic term)
+capital of florida|1
+(noun)|Tallahassee|capital of Florida|state capital (generic term)
+capital of france|1
+(noun)|Paris|City of Light|French capital|capital of France|national capital (generic term)
+capital of gabon|1
+(noun)|Libreville|capital of Gabon|national capital (generic term)
+capital of gambia|1
+(noun)|Banjul|capital of Gambia|national capital (generic term)|port (generic term)
+capital of georgia|2
+(noun)|Atlanta|capital of Georgia|state capital (generic term)
+(noun)|Tbilisi|Tiflis|capital of Georgia|capital (generic term)
+capital of ghana|1
+(noun)|Accra|capital of Ghana|national capital (generic term)
+capital of greece|1
+(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital (generic term)
+capital of grenada|1
+(noun)|St. George's|capital of Grenada|national capital (generic term)
+capital of guatemala|1
+(noun)|Guatemala City|capital of Guatemala|national capital (generic term)
+capital of guinea|1
+(noun)|Conakry|Konakri|capital of Guinea|national capital (generic term)|port (generic term)
+capital of guinea-bissau|1
+(noun)|Bissau|capital of Guinea-Bissau|national capital (generic term)
+capital of hawaii|1
+(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital (generic term)|port (generic term)
+capital of hungary|1
+(noun)|Budapest|Hungarian capital|capital of Hungary|national capital (generic term)
+capital of iceland|1
+(noun)|Reykjavik|capital of Iceland|national capital (generic term)|port (generic term)
+capital of idaho|1
+(noun)|Boise|capital of Idaho|state capital (generic term)
+capital of illinois|1
+(noun)|Springfield|capital of Illinois|state capital (generic term)
+capital of india|1
+(noun)|New Delhi|Indian capital|capital of India|national capital (generic term)
+capital of indiana|1
+(noun)|Indianapolis|capital of Indiana|state capital (generic term)
+capital of indonesia|1
+(noun)|Jakarta|Djakarta|capital of Indonesia|national capital (generic term)
+capital of iowa|1
+(noun)|Des Moines|capital of Iowa|state capital (generic term)
+capital of iran|1
+(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital (generic term)
+capital of iraq|1
+(noun)|Baghdad|Bagdad|capital of Iraq|national capital (generic term)
+capital of ireland|1
+(noun)|Dublin|Irish capital|capital of Ireland|national capital (generic term)|port (generic term)
+capital of israel|1
+(noun)|Jerusalem|capital of Israel|national capital (generic term)
+capital of italy|1
+(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital (generic term)
+capital of jamaica|1
+(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital (generic term)
+capital of japan|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+capital of jordan|1
+(noun)|Amman|capital of Jordan|national capital (generic term)
+capital of kansas|1
+(noun)|Topeka|capital of Kansas|state capital (generic term)
+capital of kazakhstan|1
+(noun)|Astana|Akmola|capital of Kazakhstan|capital (generic term)
+capital of kentucky|1
+(noun)|Frankfort|capital of Kentucky|state capital (generic term)
+capital of kenya|1
+(noun)|Nairobi|capital of Kenya|national capital (generic term)
+capital of kuwait|1
+(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital (generic term)
+capital of kyrgyzstan|1
+(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital (generic term)
+capital of laos|1
+(noun)|Vientiane|Laotian capital|capital of Laos|national capital (generic term)
+capital of latvia|1
+(noun)|Riga|capital of Latvia|capital (generic term)|port (generic term)
+capital of lebanon|1
+(noun)|Bayrut|Beirut|capital of Lebanon|national capital (generic term)
+capital of lesotho|1
+(noun)|Maseru|capital of Lesotho|national capital (generic term)
+capital of liberia|1
+(noun)|Monrovia|Liberian capital|capital of Liberia|national capital (generic term)|port (generic term)
+capital of libya|1
+(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital (generic term)
+capital of liechtenstein|1
+(noun)|Vaduz|capital of Liechtenstein|national capital (generic term)
+capital of lithuania|1
+(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital (generic term)
+capital of louisiana|1
+(noun)|Baton Rouge|capital of Louisiana|state capital (generic term)
+capital of luxembourg|1
+(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital (generic term)
+capital of madagascar|1
+(noun)|Antananarivo|capital of Madagascar|national capital (generic term)
+capital of maine|1
+(noun)|Augusta|capital of Maine|state capital (generic term)
+capital of malawi|1
+(noun)|Lilongwe|capital of Malawi|national capital (generic term)
+capital of malaysia|1
+(noun)|Putrajaya|capital of Malaysia|city (generic term)|metropolis (generic term)|urban center (generic term)
+capital of malta|1
+(noun)|Valletta|Valetta|capital of Malta|national capital (generic term)
+capital of maryland|1
+(noun)|Annapolis|capital of Maryland|state capital (generic term)
+capital of massachusetts|1
+(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital (generic term)
+capital of mexico|1
+(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital (generic term)
+capital of michigan|1
+(noun)|Lansing|capital of Michigan|state capital (generic term)
+capital of minnesota|1
+(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital (generic term)
+capital of mississippi|1
+(noun)|Jackson|capital of Mississippi|state capital (generic term)
+capital of missouri|1
+(noun)|Jefferson City|capital of Missouri|state capital (generic term)
+capital of moldova|1
+(noun)|Kishinev|Chisinau|capital of Moldova|capital (generic term)
+capital of mongolia|1
+(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital (generic term)
+capital of montana|1
+(noun)|Helena|capital of Montana|state capital (generic term)
+capital of morocco|1
+(noun)|Rabat|capital of Morocco|national capital (generic term)
+capital of mozambique|1
+(noun)|Maputo|capital of Mozambique|national capital (generic term)
+capital of nebraska|1
+(noun)|Lincoln|capital of Nebraska|state capital (generic term)
+capital of nepal|1
+(noun)|Kathmandu|Katmandu|capital of Nepal|national capital (generic term)
+capital of nevada|1
+(noun)|Carson City|capital of Nevada|state capital (generic term)
+capital of new hampshire|1
+(noun)|Concord|capital of New Hampshire|state capital (generic term)
+capital of new jersey|1
+(noun)|Trenton|capital of New Jersey|state capital (generic term)
+capital of new mexico|1
+(noun)|Santa Fe|capital of New Mexico|state capital (generic term)
+capital of new york|1
+(noun)|Albany|capital of New York|state capital (generic term)
+capital of new zealand|1
+(noun)|Wellington|capital of New Zealand|national capital (generic term)
+capital of nicaragua|1
+(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital (generic term)
+capital of niger|1
+(noun)|Niamey|capital of Niger|national capital (generic term)
+capital of nigeria|1
+(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital (generic term)
+capital of north carolina|1
+(noun)|Raleigh|capital of North Carolina|state capital (generic term)
+capital of north dakota|1
+(noun)|Bismarck|capital of North Dakota|state capital (generic term)
+capital of north korea|1
+(noun)|Pyongyang|capital of North Korea|national capital (generic term)
+capital of northern ireland|1
+(noun)|Belfast|capital of Northern Ireland|capital (generic term)
+capital of norway|1
+(noun)|Oslo|Christiania|capital of Norway|national capital (generic term)|port (generic term)
+capital of ohio|1
+(noun)|Columbus|capital of Ohio|state capital (generic term)
+capital of oklahoma|1
+(noun)|Oklahoma City|capital of Oklahoma|state capital (generic term)
+capital of oman|1
+(noun)|Muscat|Masqat|capital of Oman|national capital (generic term)|port (generic term)
+capital of oregon|1
+(noun)|Salem|capital of Oregon|state capital (generic term)
+capital of pakistan|1
+(noun)|Islamabad|capital of Pakistan|national capital (generic term)
+capital of panama|1
+(noun)|Panama City|capital of Panama|Panamanian capital|national capital (generic term)
+capital of papua new guinea|1
+(noun)|Port Moresby|capital of Papua New Guinea|national capital (generic term)
+capital of paraguay|1
+(noun)|Asuncion|capital of Paraguay|national capital (generic term)|port (generic term)
+capital of pennsylvania|1
+(noun)|Harrisburg|capital of Pennsylvania|state capital (generic term)
+capital of peru|1
+(noun)|Lima|capital of Peru|national capital (generic term)
+capital of poland|1
+(noun)|Warszawa|Warsaw|capital of Poland|national capital (generic term)
+capital of portugal|1
+(noun)|Lisbon|Lisboa|capital of Portugal|national capital (generic term)|port (generic term)
+capital of qatar|1
+(noun)|Doha|Bida|El Beda|capital of Qatar|national capital (generic term)|port (generic term)
+capital of red china|1
+(noun)|Beijing|Peking|Peiping|capital of Red China|national capital (generic term)
+capital of rhode island|1
+(noun)|Providence|capital of Rhode Island|state capital (generic term)
+capital of romania|1
+(noun)|Bucharest|Bucharesti|Bucuresti|capital of Romania|national capital (generic term)
+capital of rwanda|1
+(noun)|Kigali|capital of Rwanda|national capital (generic term)
+capital of san marino|1
+(noun)|San Marino|capital of San Marino|national capital (generic term)
+capital of saudi arabia|1
+(noun)|Riyadh|capital of Saudi Arabia|national capital (generic term)
+capital of senegal|1
+(noun)|Dakar|capital of Senegal|national capital (generic term)|port (generic term)
+capital of serbia and montenegro|1
+(noun)|Belgrade|Beograd|capital of Serbia and Montenegro|national capital (generic term)
+capital of seychelles|1
+(noun)|Victoria|capital of Seychelles|national capital (generic term)|port (generic term)
+capital of sierra leone|1
+(noun)|Freetown|capital of Sierra Leone|national capital (generic term)|port (generic term)
+capital of singapore|1
+(noun)|Singapore|capital of Singapore|national capital (generic term)
+capital of slovakia|1
+(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital (generic term)
+capital of somalia|1
+(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital (generic term)|port (generic term)
+capital of south africa|1
+(noun)|Pretoria|capital of South Africa|national capital (generic term)
+capital of south carolina|1
+(noun)|Columbia|capital of South Carolina|state capital (generic term)
+capital of south dakota|1
+(noun)|Pierre|capital of South Dakota|state capital (generic term)
+capital of south korea|1
+(noun)|Seoul|capital of South Korea|national capital (generic term)
+capital of spain|1
+(noun)|Madrid|capital of Spain|Spanish capital|national capital (generic term)
+capital of sri lanka|1
+(noun)|Colombo|capital of Sri Lanka|national capital (generic term)
+capital of sudan|1
+(noun)|Khartoum|capital of Sudan|national capital (generic term)
+capital of suriname|1
+(noun)|Paramaribo|capital of Suriname|national capital (generic term)|port (generic term)
+capital of swaziland|1
+(noun)|Mbabane|capital of Swaziland|national capital (generic term)
+capital of sweden|1
+(noun)|Stockholm|capital of Sweden|national capital (generic term)
+capital of switzerland|1
+(noun)|Bern|Berne|capital of Switzerland|national capital (generic term)
+capital of syria|1
+(noun)|Dimash|Damascus|capital of Syria|national capital (generic term)
+capital of taiwan|1
+(noun)|Taipei|Taipeh|capital of Taiwan|national capital (generic term)
+capital of tajikistan|1
+(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital (generic term)
+capital of tanzania|1
+(noun)|Dar es Salaam|capital of Tanzania|national capital (generic term)|port (generic term)
+capital of tennessee|1
+(noun)|Nashville|capital of Tennessee|state capital (generic term)
+capital of texas|1
+(noun)|Austin|capital of Texas|state capital (generic term)
+capital of thailand|1
+(noun)|Bangkok|capital of Thailand|Krung Thep|national capital (generic term)|port (generic term)
+capital of the bahamas|1
+(noun)|Nassau|capital of the Bahamas|national capital (generic term)
+capital of the dominican republic|1
+(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital (generic term)
+capital of the netherlands|1
+(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital (generic term)
+capital of the philippines|1
+(noun)|Manila|capital of the Philippines|national capital (generic term)
+capital of the russian federation|1
+(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital (generic term)
+capital of the ukraine|1
+(noun)|Kyyiv|Kiev|capital of the Ukraine|capital (generic term)
+capital of the united kingdom|1
+(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital (generic term)
+capital of the united states|1
+(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital (generic term)
+capital of tibet|1
+(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital (generic term)
+capital of togo|1
+(noun)|Lome|capital of Togo|national capital (generic term)
+capital of trinidad and tobago|1
+(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital (generic term)
+capital of tunisia|1
+(noun)|Tunis|capital of Tunisia|national capital (generic term)|port (generic term)
+capital of turkey|1
+(noun)|Ankara|Turkish capital|capital of Turkey|Angora|national capital (generic term)
+capital of turkmenistan|1
+(noun)|Ashkhabad|capital of Turkmenistan|capital (generic term)
+capital of uganda|1
+(noun)|Kampala|capital of Uganda|national capital (generic term)
+capital of uruguay|1
+(noun)|Montevideo|capital of Uruguay|national capital (generic term)
+capital of utah|1
+(noun)|Salt Lake City|capital of Utah|state capital (generic term)
+capital of uzbek|1
+(noun)|Tashkent|Taskent|capital of Uzbek|capital (generic term)
+capital of vanuatu|1
+(noun)|Port Vila|Vila|capital of Vanuatu|national capital (generic term)
+capital of venezuela|1
+(noun)|Caracas|capital of Venezuela|national capital (generic term)
+capital of vermont|1
+(noun)|Montpelier|capital of Vermont|state capital (generic term)
+capital of vietnam|1
+(noun)|Hanoi|capital of Vietnam|national capital (generic term)
+capital of virginia|1
+(noun)|Richmond|capital of Virginia|state capital (generic term)
+capital of washington|1
+(noun)|Olympia|capital of Washington|state capital (generic term)
+capital of west virginia|1
+(noun)|Charleston|capital of West Virginia|state capital (generic term)
+capital of western samoa|1
+(noun)|Apia|capital of Western Samoa|national capital (generic term)
+capital of wisconsin|1
+(noun)|Madison|capital of Wisconsin|state capital (generic term)
+capital of wyoming|1
+(noun)|Cheyenne|capital of Wyoming|state capital (generic term)
+capital of zambia|1
+(noun)|Lusaka|capital of Zambia|national capital (generic term)
+capital of zimbabwe|1
+(noun)|Harare|Salisbury|capital of Zimbabwe|national capital (generic term)
+capital offense|1
+(noun)|crime (generic term)|law-breaking (generic term)
+capital punishment|1
+(noun)|execution|executing|death penalty|corporal punishment (generic term)
+capital ship|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+capital stock|2
+(noun)|authorized shares|authorized stock|stock (generic term)
+(noun)|book value (generic term)
+capitalisation|4
+(noun)|capitalization|writing (generic term)
+(noun)|capitalization|estimate (generic term)|estimation (generic term)
+(noun)|capitalization|exploitation (generic term)|development (generic term)
+(noun)|capitalization|selling (generic term)|merchandising (generic term)|marketing (generic term)
+capitalise|6
+(verb)|capitalize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|capitalize|take advantage|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|capitalize|write (generic term)
+(verb)|capitalize|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|capitalize|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|capitalize|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+capitalism|1
+(noun)|capitalist economy|market economy (generic term)|free enterprise (generic term)|private enterprise (generic term)|laissez-faire economy (generic term)|socialism (antonym)
+capitalist|4
+(adj)|capitalistic|market economy|free enterprise|private enterprise|laissez-faire economy (related term)
+(adj)|capitalistic|bourgeois (similar term)|competitive (similar term)|free-enterprise (similar term)|private-enterprise (similar term)|individualistic (similar term)|laissez-faire (similar term)|socialistic (antonym)
+(noun)|conservative (generic term)|conservativist (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+capitalist economy|1
+(noun)|capitalism|market economy (generic term)|free enterprise (generic term)|private enterprise (generic term)|laissez-faire economy (generic term)|socialism (antonym)
+capitalistic|2
+(adj)|capitalist|bourgeois (similar term)|competitive (similar term)|free-enterprise (similar term)|private-enterprise (similar term)|individualistic (similar term)|laissez-faire (similar term)|socialistic (antonym)
+(adj)|capitalist|market economy|free enterprise|private enterprise|laissez-faire economy (related term)
+capitalization|4
+(noun)|capitalisation|writing (generic term)
+(noun)|capitalisation|estimate (generic term)|estimation (generic term)
+(noun)|capitalisation|exploitation (generic term)|development (generic term)
+(noun)|capitalisation|selling (generic term)|merchandising (generic term)|marketing (generic term)
+capitalize|6
+(verb)|capitalise|take advantage|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|capitalise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|capitalise|write (generic term)
+(verb)|capitalise|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|capitalise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|capitalise|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+capitate|2
+(adj)|round (similar term)|circular (similar term)
+(noun)|capitate bone|os capitatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+capitate bone|1
+(noun)|capitate|os capitatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+capitation|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+capitol|2
+(noun)|government building (generic term)
+(noun)|Capitol|Capitol Building|government building (generic term)
+capitol building|1
+(noun)|Capitol|Capitol Building|government building (generic term)
+capitol hill|1
+(noun)|Capitol Hill|the Hill|hill (generic term)
+capitol reef national park|1
+(noun)|Capitol Reef National Park|national park (generic term)
+capitonidae|1
+(noun)|Capitonidae|family Capitonidae|bird family (generic term)
+capitualtion|1
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+capitular|1
+(adj)|capitulary|assembly (related term)
+capitulary|1
+(adj)|capitular|assembly (related term)
+capitulate|1
+(verb)|surrender (generic term)|give up (generic term)
+capitulation|2
+(noun)|summary (generic term)|sum-up (generic term)
+(noun)|fall|surrender|loss (generic term)
+capitulum|3
+(noun)|head|plant organ (generic term)
+(noun)|ear|spike|fruit (generic term)
+(noun)|crown|treetop|top (generic term)
+capiz|1
+(noun)|window oyster|windowpane oyster|Placuna placenta|oyster (generic term)
+caplin|1
+(noun)|capelin|capelan|smelt (generic term)
+capo|1
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+capon|2
+(noun)|chicken (generic term)|poulet (generic term)|volaille (generic term)
+(noun)|chicken (generic term)|Gallus gallus (generic term)
+capone|1
+(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster (generic term)|mobster (generic term)
+caponise|1
+(verb)|caponize|emasculate (generic term)|castrate (generic term)|demasculinize (generic term)|demasculinise (generic term)
+caponize|1
+(verb)|caponise|emasculate (generic term)|castrate (generic term)|demasculinize (generic term)|demasculinise (generic term)
+caporetto|1
+(noun)|Caporetto|battle of Caporetto|pitched battle (generic term)
+capote|2
+(noun)|hooded coat|greatcoat (generic term)|overcoat (generic term)|topcoat (generic term)
+(noun)|hooded cloak|cloak (generic term)
+capoten|1
+(noun)|captopril|Capoten|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+cappadocia|1
+(noun)|Cappadocia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+cappadocian|1
+(adj)|Cappadocian|geographical area|geographic area|geographical region|geographic region (related term)
+capparidaceae|1
+(noun)|Capparidaceae|family Capparidaceae|caper family|dilleniid dicot family (generic term)
+capparis|1
+(noun)|Capparis|genus Capparis|dilleniid dicot genus (generic term)
+capparis arborea|1
+(noun)|native pomegranate|Capparis arborea|caper (generic term)
+capparis cynophallophora|1
+(noun)|caper tree|Jamaica caper tree|Capparis cynophallophora|caper (generic term)
+capparis flexuosa|1
+(noun)|caper tree|bay-leaved caper|Capparis flexuosa|caper (generic term)
+capparis mitchellii|1
+(noun)|native orange|Capparis mitchellii|caper (generic term)
+capparis spinosa|1
+(noun)|common caper|Capparis spinosa|caper (generic term)
+capped|1
+(adj)|crowned (similar term)
+capped macaque|1
+(noun)|bonnet macaque|bonnet monkey|crown monkey|Macaca radiata|macaque (generic term)
+cappelletti|1
+(noun)|ravioli|pasta (generic term)|alimentary paste (generic term)
+cappuccino|1
+(noun)|cappuccino coffee|coffee cappuccino|coffee (generic term)|java (generic term)
+cappuccino coffee|1
+(noun)|cappuccino|coffee cappuccino|coffee (generic term)|java (generic term)
+capra|2
+(noun)|Capra|Frank Capra|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Capra|genus Capra|mammal genus (generic term)
+capra aegagrus|1
+(noun)|bezoar goat|pasang|Capra aegagrus|wild goat (generic term)
+capra falconeri|1
+(noun)|markhor|markhoor|Capra falconeri|wild goat (generic term)
+capra hircus|1
+(noun)|domestic goat|Capra hircus|goat (generic term)|caprine animal (generic term)
+capra ibex|1
+(noun)|ibex|Capra ibex|wild goat (generic term)
+caprella|1
+(noun)|Caprella|genus Caprella|arthropod genus (generic term)
+capreolus|1
+(noun)|Capreolus|genus Capreolus|mammal genus (generic term)
+capreolus capreolus|1
+(noun)|roe deer|Capreolus capreolus|deer (generic term)|cervid (generic term)
+capri|1
+(noun)|Capri|island (generic term)
+capric acid|1
+(noun)|decanoic acid|saturated fatty acid (generic term)
+capriccio|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+caprice|1
+(noun)|impulse|whim|desire (generic term)
+capricious|2
+(adj)|freakish|unpredictable (similar term)
+(adj)|impulsive|whimsical|arbitrary (similar term)
+capriciously|1
+(adv)|freakishly
+capriciousness|2
+(noun)|unpredictability|inconstancy (generic term)|changefulness (generic term)
+(noun)|flightiness|arbitrariness|whimsicality|whimsy|whimsey|irresponsibility (generic term)|irresponsibleness (generic term)
+capricorn|3
+(noun)|Capricorn|Goat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Capricornus|Capricorn|constellation (generic term)
+(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+capricorn the goat|1
+(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+capricornis|1
+(noun)|Capricornis|genus Capricornis|mammal genus (generic term)
+capricornus|1
+(noun)|Capricornus|Capricorn|constellation (generic term)
+caprifig|1
+(noun)|Ficus carica sylvestris|fig (generic term)|common fig (generic term)|common fig tree (generic term)|Ficus carica (generic term)
+caprifoliaceae|1
+(noun)|Caprifoliaceae|family Caprifoliaceae|honeysuckle family|asterid dicot family (generic term)
+caprimulgid|1
+(noun)|goatsucker|nightjar|caprimulgiform bird (generic term)
+caprimulgidae|1
+(noun)|Caprimulgidae|family Caprimulgidae|bird family (generic term)
+caprimulgiform bird|1
+(noun)|bird (generic term)
+caprimulgiformes|1
+(noun)|Caprimulgiformes|order Caprimulgiformes|animal order (generic term)
+caprimulgus|1
+(noun)|Caprimulgus|genus Caprimulgus|bird genus (generic term)
+caprimulgus carolinensis|1
+(noun)|chuck-will's-widow|Caprimulgus carolinensis|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+caprimulgus europaeus|1
+(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+caprimulgus vociferus|1
+(noun)|whippoorwill|Caprimulgus vociferus|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+caprine|1
+(adj)|bovid (related term)
+caprine animal|1
+(noun)|goat|bovid (generic term)
+capriole|4
+(noun)|jump (generic term)|jumping (generic term)
+(noun)|caper|leap (generic term)|leaping (generic term)|spring (generic term)|saltation (generic term)|bound (generic term)|bounce (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|dance (generic term)
+caproic acid|1
+(noun)|hexanoic acid|saturated fatty acid (generic term)
+caproidae|1
+(noun)|Caproidae|family Caproidae|fish family (generic term)
+capromyidae|1
+(noun)|Capromyidae|family Capromyidae|mammal family (generic term)
+capros|1
+(noun)|Capros|genus Capros|fish genus (generic term)
+capros aper|1
+(noun)|boarfish|Capros aper|spiny-finned fish (generic term)|acanthopterygian (generic term)
+caprylic acid|1
+(noun)|saturated fatty acid (generic term)
+capsaicin|1
+(noun)|chemical irritant (generic term)
+capsella|1
+(noun)|Capsella|genus Capsella|dilleniid dicot genus (generic term)
+capsella bursa-pastoris|1
+(noun)|shepherd's purse|shepherd's pouch|Capsella bursa-pastoris|crucifer (generic term)|cruciferous plant (generic term)
+capsicum|2
+(noun)|pepper|capsicum pepper plant|shrub (generic term)|bush (generic term)
+(noun)|genus Capsicum|Capsicum|asterid dicot genus (generic term)
+capsicum annuum cerasiforme|1
+(noun)|cherry pepper|Capsicum annuum cerasiforme|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum annuum conoides|1
+(noun)|cone pepper|Capsicum annuum conoides|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum annuum grossum|1
+(noun)|sweet pepper|bell pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum annuum longum|1
+(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum baccatum|1
+(noun)|bird pepper|Capsicum frutescens baccatum|Capsicum baccatum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum frutescens|1
+(noun)|tabasco pepper|hot pepper|tabasco plant|Capsicum frutescens|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum frutescens baccatum|1
+(noun)|bird pepper|Capsicum frutescens baccatum|Capsicum baccatum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+capsicum pepper plant|1
+(noun)|capsicum|pepper|shrub (generic term)|bush (generic term)
+capsid|2
+(noun)|mirid bug|mirid|leaf bug (generic term)|plant bug (generic term)
+(noun)|protein (generic term)
+capsidae|1
+(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family (generic term)
+capsize|1
+(verb)|turtle|turn turtle|overturn (generic term)|turn over (generic term)|tip over (generic term)|tump over (generic term)
+capsizing|1
+(noun)|shipwreck (generic term)|wreck (generic term)
+capstan|1
+(noun)|winch (generic term)|windlass (generic term)
+capstone|2
+(noun)|finishing touch|copestone|touch (generic term)
+(noun)|copestone|coping stone|stretcher|stone (generic term)
+capsula glomeruli|1
+(noun)|Bowman's capsule|glomerular capsule|membrane (generic term)|tissue layer (generic term)
+capsular|2
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+(adj)|pericarp|seed vessel (related term)
+capsulate|2
+(adj)|capsulated|enclosed (similar term)
+(verb)|capsule|capsulize|capsulise|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+capsulated|1
+(adj)|capsulate|enclosed (similar term)
+capsule|9
+(noun)|container (generic term)
+(noun)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+(noun)|pericarp (generic term)|seed vessel (generic term)
+(noun)|condensation|abridgement|abridgment|summary (generic term)|sum-up (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|space capsule|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+(noun)|ejection seat|ejector seat|seat (generic term)
+(verb)|capsulate|capsulize|capsulise|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|encapsulate|capsulize|capsulise|digest (generic term)|condense (generic term)|concentrate (generic term)
+capsulise|2
+(verb)|capsule|capsulate|capsulize|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|encapsulate|capsule|capsulize|digest (generic term)|condense (generic term)|concentrate (generic term)
+capsulize|2
+(verb)|capsule|capsulate|capsulise|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|encapsulate|capsule|capsulise|digest (generic term)|condense (generic term)|concentrate (generic term)
+captain|8
+(noun)|commissioned military officer (generic term)
+(noun)|skipper|commissioned naval officer (generic term)
+(noun)|police captain|police chief|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|master|sea captain|skipper|officer (generic term)|ship's officer (generic term)
+(noun)|chieftain|leader (generic term)
+(noun)|senior pilot|pilot (generic term)|airplane pilot (generic term)
+(noun)|headwaiter|maitre d'hotel|maitre d'|dining-room attendant (generic term)|restaurant attendant (generic term)
+(verb)|head (generic term)|lead (generic term)
+captain's chair|1
+(noun)|armchair (generic term)
+captain bligh|1
+(noun)|Bligh|William Bligh|Captain Bligh|admiral (generic term)|full admiral (generic term)
+captain bob|1
+(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer (generic term)|adventurer (generic term)
+captain cook|1
+(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator (generic term)
+captain hicks|1
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+captain horatio hornblower|1
+(noun)|Horatio Hornblower|Captain Horatio Hornblower|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+captain james cook|1
+(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator (generic term)
+captain john smith|1
+(noun)|Smith|John Smith|Captain John Smith|explorer (generic term)|adventurer (generic term)
+captain kidd|1
+(noun)|Kidd|William Kidd|Captain Kidd|master (generic term)|captain (generic term)|sea captain (generic term)|skipper (generic term)
+captaincy|1
+(noun)|captainship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+captainship|1
+(noun)|captaincy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+caption|4
+(noun)|exception (generic term)
+(noun)|subtitle|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|legend|title (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+captious|1
+(adj)|faultfinding|critical (similar term)
+captivate|1
+(verb)|capture|enamour|trance|catch|becharm|enamor|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+captivated|2
+(adj)|charmed|loving (similar term)
+(adj)|beguiled|charmed|delighted|enthralled|entranced|enchanted (similar term)
+captivating|1
+(adj)|bewitching|enchanting|enthralling|entrancing|fascinating|attractive (similar term)
+captivatingly|1
+(adv)|bewitchingly|enchantingly|enthrallingly
+captivation|2
+(noun)|fascination|enchantment (generic term)|spell (generic term)|trance (generic term)
+(noun)|enchantment|enthrallment|fascination|liking (generic term)
+captive|5
+(adj)|confined|imprisoned|jailed|unfree (similar term)
+(adj)|absorbed|engrossed|enwrapped|intent|wrapped|attentive (similar term)
+(noun)|prisoner|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|emotional person (generic term)
+captive finance company|1
+(noun)|finance company (generic term)
+captivity|2
+(noun)|imprisonment|incarceration|immurement|confinement (generic term)
+(noun)|enslavement|subjugation (generic term)|subjection (generic term)
+captopril|1
+(noun)|Capoten|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+captor|1
+(noun)|capturer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|liberator (antonym)
+capture|10
+(noun)|gaining control|seizure|acquiring (generic term)|getting (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|seizure|felony (generic term)
+(noun)|chess move (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+(verb)|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+(verb)|get|catch|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|appropriate|seize|conquer|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+(verb)|catch|get (generic term)|acquire (generic term)
+capturer|1
+(noun)|captor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|liberator (antonym)
+capuchin|2
+(noun)|cloak (generic term)
+(noun)|ringtail|Cebus capucinus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+capulin|2
+(noun)|capulin tree|Prunus capuli|cherry (generic term)|cherry tree (generic term)
+(noun)|Mexican black cherry|cherry (generic term)
+capulin tree|1
+(noun)|capulin|Prunus capuli|cherry (generic term)|cherry tree (generic term)
+caput|2
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|head|external body part (generic term)
+capybara|1
+(noun)|capibara|Hydrochoerus hydrochaeris|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+car|5
+(noun)|auto|automobile|machine|motorcar|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|railcar|railway car|railroad car|wheeled vehicle (generic term)
+(noun)|cable car|compartment (generic term)
+(noun)|gondola|compartment (generic term)
+(noun)|elevator car|compartment (generic term)
+car-ferry|1
+(noun)|ferry (generic term)|ferryboat (generic term)
+car-mechanic|1
+(noun)|automobile mechanic|auto-mechanic|mechanic|grease monkey|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+car battery|1
+(noun)|automobile battery|lead-acid battery (generic term)|lead-acid accumulator (generic term)
+car bomb|1
+(noun)|bomb (generic term)
+car boot sale|1
+(noun)|boot sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+car care|1
+(noun)|care (generic term)|maintenance (generic term)|upkeep (generic term)
+car carrier|1
+(noun)|trailer (generic term)
+car company|1
+(noun)|auto company|company (generic term)
+car dealer|1
+(noun)|dealer (generic term)
+car door|1
+(noun)|door (generic term)
+car factory|1
+(noun)|automobile factory|auto factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+car horn|1
+(noun)|automobile horn|motor horn|horn|hooter|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+car insurance|1
+(noun)|automobile insurance|insurance (generic term)
+car loan|1
+(noun)|automobile loan|auto loan|personal loan (generic term)|consumer loan (generic term)
+car maker|1
+(noun)|car manufacturer|carmaker|auto manufacturer|auto maker|automaker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+car manufacturer|1
+(noun)|car maker|carmaker|auto manufacturer|auto maker|automaker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+car mirror|1
+(noun)|mirror (generic term)
+car park|1
+(noun)|parking lot|park|parking area|lot (generic term)
+car part|1
+(noun)|auto part|component (generic term)|constituent (generic term)|element (generic term)
+car pool|1
+(noun)|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+car port|1
+(noun)|carport|garage (generic term)
+car race|1
+(noun)|automobile race|auto race|race (generic term)
+car racing|1
+(noun)|auto racing|racing (generic term)
+car rental|1
+(noun)|hire car|rent-a-car|self-drive|u-drive|you-drive|lease (generic term)|rental (generic term)|letting (generic term)
+car seat|1
+(noun)|seat (generic term)
+car sickness|1
+(noun)|motion sickness (generic term)|kinetosis (generic term)
+car tire|1
+(noun)|automobile tire|auto tire|rubber tire|tire (generic term)|tyre (generic term)
+car traffic|1
+(noun)|automobile traffic|vehicular traffic (generic term)|vehicle traffic (generic term)
+car train|1
+(noun)|train (generic term)|railroad train (generic term)
+car transporter|1
+(noun)|transporter|truck (generic term)|motortruck (generic term)
+car wheel|1
+(noun)|wheel (generic term)
+car window|1
+(noun)|window (generic term)
+carabao|1
+(noun)|water buffalo (generic term)|water ox (generic term)|Asiatic buffalo (generic term)|Bubalus bubalis (generic term)
+carabid beetle|1
+(noun)|ground beetle|beetle (generic term)
+carabidae|1
+(noun)|Carabidae|family Carabidae|arthropod family (generic term)
+carabineer|1
+(noun)|carbineer|carabinier|rifleman (generic term)
+carabiner|1
+(noun)|karabiner|snap ring|hoop (generic term)|ring (generic term)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+carabinier|1
+(noun)|carbineer|carabineer|rifleman (generic term)
+caracal|1
+(noun)|desert lynx|Lynx caracal|lynx (generic term)|catamount (generic term)
+caracara|1
+(noun)|falcon (generic term)
+caracas|1
+(noun)|Caracas|capital of Venezuela|national capital (generic term)
+carack|1
+(noun)|carrack|galleon (generic term)
+caracole|1
+(verb)|turn (generic term)
+caracolito|1
+(noun)|Ruptiliocarpon caracolito|tree (generic term)
+caracul|1
+(noun)|broadtail|karakul|domestic sheep (generic term)|Ovis aries (generic term)
+carafate|1
+(noun)|sucralfate|Carafate|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+carafe|1
+(noun)|decanter|bottle (generic term)
+caragana|1
+(noun)|pea tree|shrub (generic term)|bush (generic term)
+caragana arborescens|1
+(noun)|Siberian pea tree|Caragana arborescens|pea tree (generic term)|caragana (generic term)
+caragana sinica|1
+(noun)|Chinese pea tree|Caragana sinica|pea tree (generic term)|caragana (generic term)
+carageen|1
+(noun)|Irish moss|carrageen|carragheen|Chondrus crispus|red algae (generic term)
+carambola|2
+(noun)|carambola tree|Averrhoa carambola|fruit tree (generic term)
+(noun)|star fruit|edible fruit (generic term)
+carambola tree|1
+(noun)|carambola|Averrhoa carambola|fruit tree (generic term)
+caramel|4
+(adj)|caramel brown|chromatic (similar term)
+(noun)|candy (generic term)|confect (generic term)
+(noun)|caramelized sugar|sugar (generic term)|refined sugar (generic term)
+(noun)|yellowish brown|raw sienna|buff|caramel brown|brown (generic term)|brownness (generic term)
+caramel apple|1
+(noun)|candied apple|candy apple|taffy apple|toffee apple|sweet (generic term)|confection (generic term)
+caramel brown|2
+(adj)|caramel|chromatic (similar term)
+(noun)|yellowish brown|raw sienna|buff|caramel|brown (generic term)|brownness (generic term)
+caramel bun|1
+(noun)|honey bun|sticky bun|schnecken|sweet roll (generic term)|coffee roll (generic term)
+caramelise|1
+(verb)|caramelize|convert (generic term)
+caramelize|1
+(verb)|caramelise|convert (generic term)
+caramelized sugar|1
+(noun)|caramel|sugar (generic term)|refined sugar (generic term)
+carancha|1
+(noun)|Polyborus plancus|caracara (generic term)
+caranda|1
+(noun)|caranday|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+caranda palm|1
+(noun)|caranday|caranda|wax palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+caranday|1
+(noun)|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+carangid|2
+(adj)|fish family (related term)
+(noun)|carangid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+carangid fish|1
+(noun)|carangid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+carangidae|1
+(noun)|Carangidae|family Carangidae|fish family (generic term)
+caranx|1
+(noun)|Caranx|genus Caranx|fish genus (generic term)
+caranx bartholomaei|1
+(noun)|yellow jack|Caranx bartholomaei|jack (generic term)
+caranx crysos|1
+(noun)|runner|blue runner|Caranx crysos|jack (generic term)
+caranx hippos|1
+(noun)|crevalle jack|jack crevalle|Caranx hippos|jack (generic term)
+carapace|1
+(noun)|shell|cuticle|shield|scute (generic term)
+carapidae|1
+(noun)|Carapidae|family Carapidae|fish family (generic term)
+carassius|1
+(noun)|Carassius|genus Carassius|fish genus (generic term)
+carassius auratus|1
+(noun)|goldfish|Carassius auratus|cyprinid (generic term)|cyprinid fish (generic term)
+carassius carassius|1
+(noun)|crucian carp|Carassius carassius|Carassius vulgaris|cyprinid (generic term)|cyprinid fish (generic term)
+carassius vulgaris|1
+(noun)|crucian carp|Carassius carassius|Carassius vulgaris|cyprinid (generic term)|cyprinid fish (generic term)
+carat|2
+(noun)|metric weight unit (generic term)|weight unit (generic term)
+(noun)|karat|kt|unit of measurement (generic term)|unit (generic term)
+caravaggio|1
+(noun)|Caravaggio|Michelangelo Merisi da Caravaggio|old master (generic term)
+caravan|3
+(noun)|train|wagon train|procession (generic term)
+(noun)|van|camper (generic term)|camping bus (generic term)|motor home (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+caravan inn|1
+(noun)|caravansary|caravanserai|khan|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+caravanning|1
+(noun)|vacationing (generic term)
+caravansary|1
+(noun)|caravanserai|khan|caravan inn|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+caravanserai|1
+(noun)|caravansary|khan|caravan inn|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+caraway|2
+(noun)|Carum carvi|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+caraway seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+caraway seed bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+carbamate|1
+(noun)|salt (generic term)
+carbamic acid|1
+(noun)|acid (generic term)
+carbamide|1
+(noun)|urea|organic compound (generic term)
+carbide|1
+(noun)|inorganic compound (generic term)
+carbine|1
+(noun)|rifle (generic term)
+carbineer|1
+(noun)|carabineer|carabinier|rifleman (generic term)
+carbo loading|1
+(noun)|carbohydrate loading|diet (generic term)
+carbocyclic|1
+(adj)|chemical element|element (related term)
+carbohydrate|1
+(noun)|saccharide|sugar|macromolecule (generic term)|supermolecule (generic term)
+carbohydrate loading|1
+(noun)|carbo loading|diet (generic term)
+carbolated|1
+(adj)|acid|solvent|dissolvent|dissolver|dissolving agent|resolvent (related term)
+carbolic acid|1
+(noun)|phenol|hydroxybenzene|oxybenzene|phenylic acid|acid (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+carboloy|1
+(noun)|Carboloy|alloy (generic term)|metal (generic term)
+carbomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+carbon|3
+(noun)|C|atomic number 6|chemical element (generic term)|element (generic term)
+(noun)|carbon paper|paper (generic term)
+(noun)|carbon copy|copy (generic term)
+carbon-14 dating|1
+(noun)|radiocarbon dating|carbon dating|dating (generic term)|geological dating (generic term)
+carbon 14|1
+(noun)|radiocarbon|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+carbon arc|1
+(noun)|carbon arc lamp|arc lamp (generic term)|arc light (generic term)
+carbon arc lamp|1
+(noun)|carbon arc|arc lamp (generic term)|arc light (generic term)
+carbon atom|1
+(noun)|atom (generic term)
+carbon black|1
+(noun)|lampblack|soot|smut|crock|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+carbon copy|1
+(noun)|carbon|copy (generic term)
+carbon cycle|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|thermonuclear reaction (generic term)
+carbon dating|1
+(noun)|radiocarbon dating|carbon-14 dating|dating (generic term)|geological dating (generic term)
+carbon dichloride|1
+(noun)|tetrachlorethylene|tetrachloroethylene|ethylene tetrachloride|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+carbon dioxide|1
+(noun)|CO2|carbonic acid gas|dioxide (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+carbon dioxide acidosis|1
+(noun)|respiratory acidosis|acidosis (generic term)
+carbon disulfide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+carbon monoxide|1
+(noun)|carbon monoxide gas|CO|monoxide (generic term)
+carbon monoxide gas|1
+(noun)|carbon monoxide|CO|monoxide (generic term)
+carbon monoxide poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+carbon nanotube|1
+(noun)|nanotube|fullerene (generic term)
+carbon paper|1
+(noun)|carbon|paper (generic term)
+carbon process|1
+(noun)|printing (generic term)|printing process (generic term)
+carbon steel|1
+(noun)|steel (generic term)
+carbon tet|1
+(noun)|carbon tetrachloride|tetrachloromethane|perchloromethane|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)|tetrachloride (generic term)
+carbon tetrachloride|1
+(noun)|carbon tet|tetrachloromethane|perchloromethane|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)|tetrachloride (generic term)
+carbon tetrahalide|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+carbonaceous|1
+(adj)|carbonous|carbonic|carboniferous|chemical element|element (related term)
+carbonado|2
+(noun)|black diamond|diamond (generic term)|adamant (generic term)
+(noun)|meat (generic term)
+carbonara|1
+(noun)|spaghetti sauce (generic term)|pasta sauce (generic term)
+carbonate|3
+(noun)|salt (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|change (generic term)
+carbonated|1
+(adj)|effervescent (similar term)
+carbonated water|1
+(noun)|soda water|club soda|seltzer|sparkling water|drinking water (generic term)
+carbonation|1
+(noun)|permeation (generic term)|pervasion (generic term)|suffusion (generic term)
+carbondale|1
+(noun)|Carbondale|town (generic term)
+carbonic|1
+(adj)|carbonaceous|carbonous|carboniferous|chemical element|element (related term)
+carbonic acid|1
+(noun)|acid (generic term)
+carbonic acid gas|1
+(noun)|carbon dioxide|CO2|dioxide (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+carboniferous|3
+(adj)|period|geological period (related term)
+(adj)|carbonaceous|carbonous|carbonic|chemical element|element (related term)
+(noun)|Carboniferous|Carboniferous period|period (generic term)|geological period (generic term)
+carboniferous period|1
+(noun)|Carboniferous|Carboniferous period|period (generic term)|geological period (generic term)
+carbonisation|1
+(noun)|carbonization|destructive distillation (generic term)
+carbonise|2
+(verb)|carbonize|carburize|carburise|change state (generic term)|turn (generic term)
+(verb)|carbonize|change state (generic term)|turn (generic term)
+carbonization|1
+(noun)|carbonisation|destructive distillation (generic term)
+carbonize|2
+(verb)|carbonise|carburize|carburise|change state (generic term)|turn (generic term)
+(verb)|carbonise|change state (generic term)|turn (generic term)
+carbonnade flamande|1
+(noun)|Belgian beef stew|dish (generic term)
+carbonous|1
+(adj)|carbonaceous|carbonic|carboniferous|chemical element|element (related term)
+carbonyl|2
+(adj)|carbonylic|group|radical|chemical group (related term)
+(noun)|compound (generic term)|chemical compound (generic term)
+carbonyl group|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+carbonylic|1
+(adj)|carbonyl|group|radical|chemical group (related term)
+carborundum|1
+(noun)|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+carboxyl|2
+(adj)|carboxylic|group|radical|chemical group (related term)
+(noun)|carboxyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+carboxyl group|1
+(noun)|carboxyl|group (generic term)|radical (generic term)|chemical group (generic term)
+carboxylate|1
+(verb)|process (generic term)|treat (generic term)
+carboxylic|1
+(adj)|carboxyl|group|radical|chemical group (related term)
+carboxylic acid|1
+(noun)|acid (generic term)
+carboxymethyl cellulose|1
+(noun)|cellulose (generic term)
+carboy|1
+(noun)|bottle (generic term)
+carbuncle|2
+(noun)|garnet (generic term)
+(noun)|staphylococcal infection (generic term)
+carbuncled|2
+(adj)|carbuncular|unhealthy (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+carbuncular|1
+(adj)|carbuncled|unhealthy (similar term)
+carburet|1
+(verb)|compound (generic term)|combine (generic term)
+carburetor|1
+(noun)|carburettor|mechanical device (generic term)
+carburettor|1
+(noun)|carburetor|mechanical device (generic term)
+carburise|1
+(verb)|carbonize|carbonise|carburize|change state (generic term)|turn (generic term)
+carburize|1
+(verb)|carbonize|carbonise|carburise|change state (generic term)|turn (generic term)
+carcajou|1
+(noun)|wolverine|skunk bear|Gulo luscus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+carcase|1
+(noun)|carcass|body (generic term)|dead body (generic term)
+carcass|1
+(noun)|carcase|body (generic term)|dead body (generic term)
+carcharhinidae|1
+(noun)|Carcharhinidae|family Carcharhinidae|fish family (generic term)
+carcharhinus|1
+(noun)|Carcharhinus|genus Carcharhinus|fish genus (generic term)
+carcharhinus leucas|1
+(noun)|bull shark|cub shark|Carcharhinus leucas|requiem shark (generic term)
+carcharhinus limbatus|1
+(noun)|blacktip shark|sandbar shark|Carcharhinus limbatus|requiem shark (generic term)
+carcharhinus obscurus|1
+(noun)|dusky shark|Carcharhinus obscurus|requiem shark (generic term)
+carcharhinus plumbeus|1
+(noun)|sandbar shark|Carcharhinus plumbeus|requiem shark (generic term)
+carcharias|1
+(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus (generic term)
+carcharias taurus|1
+(noun)|sand tiger|sand shark|Carcharias taurus|Odontaspis taurus|shark (generic term)
+carchariidae|1
+(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family (generic term)
+carcharinus longimanus|1
+(noun)|whitetip shark|oceanic whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark (generic term)
+carcharodon|1
+(noun)|Carcharodon|genus Carcharodon|fish genus (generic term)
+carcharodon carcharias|1
+(noun)|great white shark|white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark (generic term)
+carcinogen|1
+(noun)|substance (generic term)|matter (generic term)
+carcinogenic|1
+(adj)|cancer|malignant neoplastic disease (related term)
+carcinoid|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+carcinoma|1
+(noun)|cancer (generic term)|malignant neoplastic disease (generic term)
+carcinoma in situ|1
+(noun)|preinvasive cancer|carcinoma (generic term)
+carcinomatous|1
+(adj)|cancer|malignant neoplastic disease (related term)
+carcinomatous myopathy|1
+(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|disease of the neuromuscular junction (generic term)
+carcinosarcoma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+card|13
+(noun)|paper (generic term)
+(noun)|identity card|positive identification (generic term)
+(noun)|correspondence (generic term)
+(noun)|cardboard (generic term)|composition board (generic term)
+(noun)|wag|wit|humorist (generic term)|humourist (generic term)
+(noun)|poster|posting|placard|notice|bill|sign (generic term)
+(noun)|calling card|visiting card|greeting (generic term)|salutation (generic term)
+(noun)|scorecard|record (generic term)|record book (generic term)|book (generic term)
+(noun)|menu|bill of fare|carte du jour|carte|bill (generic term)
+(noun)|batting order|lineup|roll (generic term)|roster (generic term)
+(noun)|circuit board|circuit card|board|plug-in|add-in|printed circuit (generic term)
+(verb)|tease|separate (generic term)
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+card-house|1
+(noun)|house of cards|cardhouse|cardcastle|structure (generic term)|construction (generic term)
+card-playing|1
+(adj)|dissipated|betting|sporting|indulgent (similar term)
+card catalog|2
+(noun)|card catalogue|library catalog (generic term)|library catalogue (generic term)
+(noun)|card index|card catalogue|file (generic term)|file cabinet (generic term)|filing cabinet (generic term)
+card catalogue|2
+(noun)|card catalog|library catalog (generic term)|library catalogue (generic term)
+(noun)|card index|card catalog|file (generic term)|file cabinet (generic term)|filing cabinet (generic term)
+card game|1
+(noun)|cards|game (generic term)
+card index|1
+(noun)|card catalog|card catalogue|file (generic term)|file cabinet (generic term)|filing cabinet (generic term)
+card player|1
+(noun)|player (generic term)|participant (generic term)
+card shark|1
+(noun)|cardsharp|card sharp|cardsharper|card sharper|sharper|sharpie|sharpy|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+card sharp|1
+(noun)|cardsharp|cardsharper|card sharper|sharper|sharpie|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+card sharper|1
+(noun)|cardsharp|card sharp|cardsharper|sharper|sharpie|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+card table|1
+(noun)|table (generic term)
+card trick|1
+(noun)|magic trick (generic term)|conjuring trick (generic term)|trick (generic term)|magic (generic term)|legerdemain (generic term)|conjuration (generic term)|thaumaturgy (generic term)|illusion (generic term)|deception (generic term)
+cardamine|1
+(noun)|Cardamine|genus Cardamine|dilleniid dicot genus (generic term)
+cardamine bulbifera|1
+(noun)|coral-root bittercress|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress (generic term)|bitter cress (generic term)
+cardamine bulbosa|1
+(noun)|spring cress|Cardamine bulbosa|bittercress (generic term)|bitter cress (generic term)
+cardamine diphylla|1
+(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+cardamine douglasii|1
+(noun)|purple cress|Cardamine douglasii|bittercress (generic term)|bitter cress (generic term)
+cardamine pratensis|1
+(noun)|lady's smock|cuckooflower|cuckoo flower|meadow cress|Cardamine pratensis|bittercress (generic term)|bitter cress (generic term)
+cardamine rotundifolia|1
+(noun)|American watercress|mountain watercress|Cardamine rotundifolia|watercress (generic term)
+cardamom|2
+(noun)|cardamon|Elettaria cardamomum|herb (generic term)|herbaceous plant (generic term)
+(noun)|cardamon|cardamum|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+cardamon|2
+(noun)|cardamom|Elettaria cardamomum|herb (generic term)|herbaceous plant (generic term)
+(noun)|cardamom|cardamum|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+cardamum|1
+(noun)|cardamom|cardamon|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+cardboard|2
+(adj)|unlifelike|artificial (similar term)|unreal (similar term)
+(noun)|composition board|paper (generic term)|packing material (generic term)|packing (generic term)|wadding (generic term)
+cardcase|1
+(noun)|case (generic term)
+cardcastle|1
+(noun)|house of cards|cardhouse|card-house|structure (generic term)|construction (generic term)
+cardholder|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|card player (generic term)
+cardhouse|1
+(noun)|house of cards|card-house|cardcastle|structure (generic term)|construction (generic term)
+cardia|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+cardiac|1
+(adj)|internal organ|viscus (related term)
+cardiac arrest|1
+(noun)|asystole|cardiopulmonary arrest|pathology (generic term)
+cardiac arrhythmia|1
+(noun)|arrhythmia|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+cardiac cycle|1
+(noun)|cycle (generic term)|oscillation (generic term)
+cardiac glucoside|1
+(noun)|cardiac glycoside|steroid (generic term)
+cardiac glycoside|1
+(noun)|cardiac glucoside|steroid (generic term)
+cardiac insufficiency|1
+(noun)|coronary insufficiency|insufficiency (generic term)
+cardiac massage|1
+(noun)|heart massage|emergency procedure (generic term)|massage (generic term)
+cardiac monitor|1
+(noun)|heart monitor|monitor (generic term)
+cardiac murmur|1
+(noun)|heart murmur|murmur|symptom (generic term)
+cardiac muscle|1
+(noun)|heart muscle|muscle (generic term)|muscular tissue (generic term)
+cardiac output|1
+(noun)|flow (generic term)|flow rate (generic term)|rate of flow (generic term)
+cardiac pacemaker|1
+(noun)|pacemaker|sinoatrial node|SA node|cardiac muscle (generic term)|heart muscle (generic term)
+cardiac plexus|1
+(noun)|plexus cardiacus|nerve plexus (generic term)
+cardiac resuscitation|1
+(noun)|cardiopulmonary resuscitation|CPR|mouth-to-mouth resuscitation|kiss of life|resuscitation (generic term)|emergency procedure (generic term)
+cardiac rhythm|1
+(noun)|heart rhythm|rhythm (generic term)|regular recurrence (generic term)
+cardiac sphincter|1
+(noun)|physiological sphincter (generic term)
+cardiac tamponade|1
+(noun)|tamponade (generic term)|tamponage (generic term)
+cardiac valve|1
+(noun)|heart valve|valve (generic term)
+cardiff|1
+(noun)|Cardiff|capital (generic term)
+cardigan|2
+(noun)|sweater (generic term)
+(noun)|Cardigan|Cardigan Welsh corgi|corgi (generic term)|Welsh corgi (generic term)
+cardigan welsh corgi|1
+(noun)|Cardigan|Cardigan Welsh corgi|corgi (generic term)|Welsh corgi (generic term)
+cardiidae|1
+(noun)|Cardiidae|family Cardiidae|mollusk family (generic term)
+cardinal|6
+(adj)|central|fundamental|key|primal|important (similar term)|of import (similar term)
+(adj)|zero (similar term)|0 (similar term)|non-zero (similar term)|one (similar term)|1 (similar term)|i (similar term)|ane (similar term)|two (similar term)|2 (similar term)|ii (similar term)|three (similar term)|3 (similar term)|iii (similar term)|four (similar term)|4 (similar term)|iv (similar term)|five (similar term)|5 (similar term)|v (similar term)|six (similar term)|6 (similar term)|vi (similar term)|half dozen (similar term)|half-dozen (similar term)|seven (similar term)|7 (similar term)|vii (similar term)|eight (similar term)|8 (similar term)|viii (similar term)|nine (similar term)|9 (similar term)|ix (similar term)|ten (similar term)|10 (similar term)|x (similar term)|eleven (similar term)|11 (similar term)|xi (similar term)|twelve (similar term)|12 (similar term)|xii (similar term)|dozen (similar term)|thirteen (similar term)|13 (similar term)|xiii (similar term)|fourteen (similar term)|14 (similar term)|xiv (similar term)|fifteen (similar term)|15 (similar term)|xv (similar term)|sixteen (similar term)|16 (similar term)|xvi (similar term)|seventeen (similar term)|17 (similar term)|xvii (similar term)|eighteen (similar term)|18 (similar term)|xviii (similar term)|nineteen (similar term)|19 (similar term)|xix (similar term)|twenty (similar term)|20 (similar term)|xx (similar term)|twenty-one (similar term)|21 (similar term)|xxi (similar term)|twenty-two (similar term)|22 (similar term)|xxii (similar term)|twenty-three (similar term)|23 (similar term)|xxiii (similar term)|twenty-four (similar term)|24 (similar term)|xxiv (similar term)|twenty-five (similar term)|25 (similar term)|xxv (similar term)|twenty-six (similar term)|26 (similar term)|xxvi (similar term)|twenty-seven (similar term)|27 (similar term)|xxvii (similar term)|twenty-eight (similar term)|28 (similar term)|xxviii (similar term)|twenty-nine (similar term)|29 (similar term)|xxix (similar term)|thirty (similar term)|30 (similar term)|xxx (similar term)|thirty-one (similar term)|31 (similar term)|xxxi (similar term)|thirty-two (similar term)|32 (similar term)|xxxii (similar term)|thirty-three (similar term)|33 (similar term)|xxxiii (similar term)|thirty-four (similar term)|34 (similar term)|xxxiv (similar term)|thirty-five (similar term)|35 (similar term)|xxxv (similar term)|thirty-six (similar term)|36 (similar term)|xxxvi (similar term)|thirty-seven (similar term)|37 (similar term)|xxxvii (similar term)|thirty-eight (similar term)|38 (similar term)|xxxviii (similar term)|thirty-nine (similar term)|39 (similar term)|ixl (similar term)|forty (similar term)|40 (similar term)|xl (similar term)|twoscore (similar term)|forty-one (similar term)|41 (similar term)|xli (similar term)|forty-two (similar term)|42 (similar term)|xlii (similar term)|forty-three (similar term)|43 (similar term)|xliii (similar term)|forty-four (similar term)|44 (similar term)|xliv (similar term)|forty-five (similar term)|45 (similar term)|xlv (similar term)|forty-six (similar term)|46 (similar term)|xlvi (similar term)|forty-seven (similar term)|47 (similar term)|xlvii (similar term)|forty-eight (similar term)|48 (similar term)|xlviii (similar term)|forty-nine (similar term)|49 (similar term)|il (similar term)|fifty (similar term)|50 (similar term)|l (similar term)|fifty-one (similar term)|51 (similar term)|li (similar term)|fifty-two (similar term)|52 (similar term)|lii (similar term)|fifty-three (similar term)|53 (similar term)|liii (similar term)|fifty-four (similar term)|54 (similar term)|liv (similar term)|fifty-five (similar term)|55 (similar term)|lv (similar term)|fifty-six (similar term)|56 (similar term)|lvi (similar term)|fifty-seven (similar term)|57 (similar term)|lvii (similar term)|fifty-eight (similar term)|58 (similar term)|lviii (similar term)|fifty-nine (similar term)|59 (similar term)|ilx (similar term)|sixty (similar term)|60 (similar term)|lx (similar term)|threescore (similar term)|sixty-one (similar term)|61 (similar term)|lxi (similar term)|sixty-two (similar term)|62 (similar term)|lxii (similar term)|sixty-three (similar term)|63 (similar term)|lxiii (similar term)|sixty-four (similar term)|64 (similar term)|lxiv (similar term)|sixty-five (similar term)|65 (similar term)|lxv (similar term)|sixty-six (similar term)|66 (similar term)|lxvi (similar term)|sixty-seven (similar term)|67 (similar term)|lxvii (similar term)|sixty-eight (similar term)|68 (similar term)|lxviii (similar term)|sixty-nine (similar term)|69 (similar term)|ilxx (similar term)|seventy (similar term)|70 (similar term)|lxx (similar term)|seventy-one (similar term)|71 (similar term)|lxxi (similar term)|seventy-two (similar term)|72 (similar term)|lxxii (similar term)|seventy-three (similar term)|73 (similar term)|lxxiii (similar term)|seventy-four (similar term)|74 (similar term)|lxxiv (similar term)|seventy-five (similar term)|75 (similar term)|lxxv (similar term)|seventy-six (similar term)|76 (similar term)|lxxvi (similar term)|seventy-seven (similar term)|77 (similar term)|lxxvii (similar term)|seventy-eight (similar term)|78 (similar term)|lxxviii (similar term)|seventy-nine (similar term)|79 (similar term)|ilxxx (similar term)|eighty (similar term)|80 (similar term)|lxxx (similar term)|fourscore (similar term)|eighty-one (similar term)|81 (similar term)|lxxxi (similar term)|eighty-two (similar term)|82 (similar term)|lxxxii (similar term)|eighty-three (similar term)|83 (similar term)|lxxxiii (similar term)|eighty-four (similar term)|84 (similar term)|lxxxiv (similar term)|eighty-five (similar term)|85 (similar term)|lxxxv (similar term)|eighty-six (similar term)|86 (similar term)|lxxxvi (similar term)|eighty-seven (similar term)|87 (similar term)|lxxxvii (similar term)|eighty-eight (similar term)|88 (similar term)|lxxxviii (similar term)|eighty-nine (similar term)|89 (similar term)|ixc (similar term)|ninety (similar term)|90 (similar term)|xc (similar term)|ninety-one (similar term)|91 (similar term)|xci (similar term)|ninety-two (similar term)|92 (similar term)|xcii (similar term)|ninety-three (similar term)|93 (similar term)|xciii (similar term)|ninety-four (similar term)|94 (similar term)|xciv (similar term)|ninety-five (similar term)|95 (similar term)|xcv (similar term)|ninety-six (similar term)|96 (similar term)|xcvi (similar term)|ninety-seven (similar term)|97 (similar term)|xcvii (similar term)|ninety-eight (similar term)|98 (similar term)|xcviii (similar term)|ninety-nine (similar term)|99 (similar term)|ic (similar term)|hundred (similar term)|one hundred (similar term)|100 (similar term)|c (similar term)|hundred and one (similar term)|one hundred one (similar term)|101 (similar term)|ci (similar term)|one hundred five (similar term)|105 (similar term)|cv (similar term)|one hundred ten (similar term)|110 (similar term)|cx (similar term)|one hundred fifteen (similar term)|115 (similar term)|cxv (similar term)|one hundred twenty (similar term)|120 (similar term)|cxx (similar term)|one hundred twenty-five (similar term)|125 (similar term)|cxxv (similar term)|one hundred thirty (similar term)|130 (similar term)|cxxx (similar term)|one hundred thirty-five (similar term)|135 (similar term)|cxxxv (similar term)|one hundred forty (similar term)|140 (similar term)|cxl (similar term)|one hundred forty-five (similar term)|145 (similar term)|cxlv (similar term)|one hundred fifty (similar term)|150 (similar term)|cl (similar term)|one hundred fifty-five (similar term)|155 (similar term)|clv (similar term)|one hundred sixty (similar term)|160 (similar term)|clx (similar term)|one hundred sixty-five (similar term)|165 (similar term)|clxv (similar term)|one hundred seventy (similar term)|170 (similar term)|clxx (similar term)|one hundred seventy-five (similar term)|175 (similar term)|clxxv (similar term)|one hundred eighty (similar term)|180 (similar term)|clxxx (similar term)|one hundred ninety (similar term)|190 (similar term)|xcl (similar term)|two hundred (similar term)|200 (similar term)|cc (similar term)|three hundred (similar term)|300 (similar term)|ccc (similar term)|four hundred (similar term)|400 (similar term)|cd (similar term)|five hundred (similar term)|500 (similar term)|d (similar term)|thousand (similar term)|one thousand (similar term)|1000 (similar term)|m (similar term)|k (similar term)|ten thousand (similar term)|hundred thousand (similar term)|million (similar term)|billion (similar term)|billion (similar term)|trillion (similar term)|trillion (similar term)|zillion (similar term)|ordinal (antonym)
+(noun)|bishop (generic term)
+(noun)|cardinal number|number (generic term)
+(noun)|carmine|red (generic term)|redness (generic term)
+(noun)|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch (generic term)
+cardinal bellarmine|1
+(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+cardinal compass point|1
+(noun)|compass point (generic term)|point (generic term)
+cardinal flower|1
+(noun)|Indian pink|Lobelia cardinalis|lobelia (generic term)
+cardinal grosbeak|1
+(noun)|cardinal|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch (generic term)
+cardinal newman|1
+(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+cardinal number|1
+(noun)|cardinal|number (generic term)
+cardinal richelieu|1
+(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+cardinal tetra|1
+(noun)|Paracheirodon axelrodi|characin (generic term)|characin fish (generic term)|characid (generic term)
+cardinal vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cardinal virtue|1
+(noun)|virtue (generic term)
+cardinalate|1
+(noun)|clergy (generic term)
+cardinalfish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cardinalis cardinalis|1
+(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch (generic term)
+cardinality|1
+(noun)|number (generic term)
+cardinalship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+cardiogenic shock|1
+(noun)|shock (generic term)
+cardiogram|1
+(noun)|electrocardiogram|EKG|ECG|graph (generic term)|graphical record (generic term)
+cardiograph|2
+(noun)|electrocardiograph|medical instrument (generic term)
+(noun)|ballistocardiograph|medical instrument (generic term)
+cardiographic|1
+(adj)|medical instrument (related term)
+cardiography|1
+(noun)|electrocardiography|diagnostic procedure (generic term)|diagnostic technique (generic term)
+cardioid|1
+(noun)|epicycloid (generic term)
+cardioid microphone|1
+(noun)|directional microphone (generic term)
+cardiologic|1
+(adj)|medicine|medical specialty (related term)
+cardiologist|1
+(noun)|heart specialist|heart surgeon|specialist (generic term)|medical specialist (generic term)
+cardiology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+cardiomegaly|1
+(noun)|megalocardia|megacardia|enlarged heart|symptom (generic term)
+cardiomyopathy|1
+(noun)|myocardiopathy|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+cardiopathy|1
+(noun)|heart disease|heart condition|cardiovascular disease (generic term)
+cardiopulmonary|1
+(adj)|cardiorespiratory|internal organ|viscus (related term)|metabolism|metabolic process|metastasis (related term)|respiratory organ (related term)
+cardiopulmonary arrest|1
+(noun)|asystole|cardiac arrest|pathology (generic term)
+cardiopulmonary exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+cardiopulmonary resuscitation|1
+(noun)|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|kiss of life|resuscitation (generic term)|emergency procedure (generic term)
+cardiorespiratory|1
+(adj)|cardiopulmonary|internal organ|viscus (related term)|metabolism|metabolic process|metastasis (related term)|respiratory organ (related term)
+cardiospasm|1
+(noun)|spasm (generic term)
+cardiospermum|1
+(noun)|Cardiospermum|genus Cardiospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+cardiospermum grandiflorum|1
+(noun)|heartseed|Cardiospermum grandiflorum|soapberry vine (generic term)
+cardiospermum halicacabum|1
+(noun)|balloon vine|heart pea|Cardiospermum halicacabum|soapberry vine (generic term)
+cardiovascular|1
+(adj)|vessel|vas (related term)
+cardiovascular disease|1
+(noun)|disorder (generic term)|upset (generic term)
+cardiovascular system|1
+(noun)|circulatory system|vascular system (generic term)
+carditis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cardium|1
+(noun)|Cardium|genus Cardium|mollusk genus (generic term)
+cardium edule|1
+(noun)|edible cockle|Cardium edule|cockle (generic term)
+cardizem|1
+(noun)|diltiazem|Cardizem|calcium blocker (generic term)|calcium-channel blocker (generic term)
+cardoon|2
+(noun)|Cynara cardunculus|vegetable (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+cardroom|1
+(noun)|room (generic term)
+cards|1
+(noun)|card game|game (generic term)
+cardsharp|1
+(noun)|card sharp|cardsharper|card sharper|sharper|sharpie|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+cardsharper|1
+(noun)|cardsharp|card sharp|card sharper|sharper|sharpie|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+carducci|1
+(noun)|Carducci|Giosue Carducci|poet (generic term)
+carduelinae|1
+(noun)|Carduelinae|subfamily Carduelinae|bird family (generic term)
+carduelis|1
+(noun)|Carduelis|genus Carduelis|bird genus (generic term)
+carduelis cannabina|1
+(noun)|linnet|lintwhite|Carduelis cannabina|finch (generic term)
+carduelis carduelis|1
+(noun)|goldfinch|Carduelis carduelis|finch (generic term)
+carduelis cucullata|1
+(noun)|red siskin|Carduelis cucullata|finch (generic term)
+carduelis flammea|1
+(noun)|redpoll|Carduelis flammea|finch (generic term)
+carduelis hornemanni|1
+(noun)|redpoll|Carduelis hornemanni|finch (generic term)
+carduelis spinus|1
+(noun)|siskin|Carduelis spinus|finch (generic term)
+carduus|1
+(noun)|Carduus|genus Carduus|asterid dicot genus (generic term)
+carduus crispus|1
+(noun)|welted thistle|Carduus crispus|thistle (generic term)
+carduus nutans|1
+(noun)|musk thistle|nodding thistle|Carduus nutans|thistle (generic term)
+care|11
+(noun)|attention|aid|tending|work (generic term)
+(noun)|caution|precaution|forethought|judiciousness (generic term)
+(noun)|concern|fear|anxiety (generic term)
+(noun)|predicament (generic term)|quandary (generic term)|plight (generic term)
+(noun)|charge|tutelage|guardianship|protection (generic term)
+(noun)|maintenance|upkeep|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(verb)|feel for (generic term)|pity (generic term)|compassionate (generic term)|condole with (generic term)|sympathize with (generic term)|care (related term)|care for (related term)
+(verb)|give care|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|wish|like|desire (generic term)|want (generic term)
+(verb)|manage|deal|handle|control (generic term)|command (generic term)
+(verb)|worry|mind (generic term)
+care-laden|1
+(adj)|heavy-laden|troubled (similar term)
+care a hang|1
+(verb)|give a hoot|give a hang|give a damn
+care delivery|1
+(noun)|healthcare delivery|health care delivery|provision (generic term)|supply (generic term)|supplying (generic term)
+care for|3
+(verb)|like (generic term)
+(verb)|cherish|hold dear|treasure|love (generic term)
+(verb)|treat
+cared-for|1
+(adj)|attended (similar term)|tended to (similar term)|uncared-for (antonym)
+careen|3
+(noun)|rock|sway|tilt|lurch (generic term)|pitch (generic term)|pitching (generic term)
+(verb)|stagger|reel|keel|lurch|swag|walk (generic term)
+(verb)|wobble|shift|tilt|move (generic term)
+career|3
+(noun)|calling|vocation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|life history|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+career counseling|1
+(noun)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+career girl|1
+(noun)|careerist (generic term)
+career man|1
+(noun)|careerist (generic term)
+careerism|1
+(noun)|practice (generic term)|pattern (generic term)
+careerist|1
+(noun)|professional (generic term)|professional person (generic term)
+carefree|2
+(adj)|unworried|untroubled (similar term)
+(adj)|devil-may-care|freewheeling|happy-go-lucky|harum-scarum|slaphappy|irresponsible (similar term)
+carefreeness|2
+(noun)|insouciance|lightheartedness|lightsomeness|cheerfulness (generic term)|blitheness (generic term)
+(noun)|irresponsibility (generic term)|irresponsibleness (generic term)
+careful|5
+(adj)|blow-by-blow (similar term)|cautious (similar term)|certain (similar term)|sure (similar term)|close (similar term)|conscientious (similar term)|painstaking (similar term)|scrupulous (similar term)|detailed (similar term)|elaborate (similar term)|elaborated (similar term)|minute (similar term)|narrow (similar term)|overcareful (similar term)|too-careful (similar term)|particular (similar term)|protective (similar term)|studious (similar term)|thorough (similar term)|cautious (related term)|diligent (related term)|prudent (related term)|careless (antonym)
+(adj)|heedful|mindful (similar term)|aware (similar term)
+(adj)|deliberate|measured|unhurried (similar term)
+(adj)|troubled (similar term)
+(adj)|thrifty|provident (similar term)
+carefully|1
+(adv)|cautiously|with kid gloves|carelessly (antonym)|incautiously (antonym)
+carefulness|2
+(noun)|caution|cautiousness|attentiveness (generic term)|incaution (antonym)
+(noun)|attentiveness (generic term)|carelessness (antonym)
+caregiver|2
+(noun)|health professional|health care provider|professional (generic term)|professional person (generic term)
+(noun)|adult (generic term)|grownup (generic term)
+careless|3
+(adj)|casual (similar term)|cursory (similar term)|passing (similar term)|perfunctory (similar term)|haphazard (similar term)|slapdash (similar term)|slipshod (similar term)|sloppy (similar term)|heedless (similar term)|reckless (similar term)|incautious (similar term)|negligent (similar term)|offhand (similar term)|offhanded (similar term)|imprudent (related term)|inattentive (related term)|incautious (related term)|negligent (related term)|superficial (related term)|unconcerned (related term)|careful (antonym)
+(adj)|artless (similar term)
+(adj)|regardless|heedless (similar term)|thoughtless (similar term)|unheeding (similar term)
+carelessly|3
+(adv)|heedlessly
+(adv)|incautiously|carefully (antonym)|cautiously (antonym)
+(adv)|rakishly|raffishly
+carelessness|2
+(noun)|sloppiness|inattentiveness (generic term)|carefulness (antonym)
+(noun)|negligence|neglect|nonperformance|nonaccomplishment (generic term)|nonachievement (generic term)
+carelian|2
+(noun)|Karelian|Carelian|Russian (generic term)
+(noun)|Karelian|Carelian|Baltic-Finnic (generic term)
+caress|2
+(noun)|stroke (generic term)|stroking (generic term)
+(verb)|touch (generic term)
+caressing|2
+(adj)|caressive|loving (similar term)
+(noun)|cuddling|fondling|hugging|kissing|necking|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+caressive|1
+(adj)|caressing|loving (similar term)
+caret|1
+(noun)|mark (generic term)
+caretaker|2
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+(noun)|official (generic term)|functionary (generic term)
+caretta|1
+(noun)|Caretta|genus Caretta|reptile genus (generic term)
+caretta caretta|1
+(noun)|loggerhead|loggerhead turtle|Caretta caretta|sea turtle (generic term)|marine turtle (generic term)
+carew|1
+(noun)|Carew|Thomas Carew|poet (generic term)
+careworn|1
+(adj)|drawn|haggard|raddled|worn|tired (similar term)
+carex|1
+(noun)|Carex|genus Carex|monocot genus (generic term)|liliopsid genus (generic term)
+carex arenaria|1
+(noun)|sand sedge|sand reed|Carex arenaria|sedge (generic term)
+carex pseudocyperus|1
+(noun)|cypress sedge|Carex pseudocyperus|sedge (generic term)
+carfare|1
+(noun)|bus fare|fare (generic term)|transportation (generic term)
+carful|1
+(noun)|containerful (generic term)
+cargo|1
+(noun)|lading|freight|load|loading|payload|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+cargo area|1
+(noun)|cargo deck|cargo hold|hold|storage area|enclosure (generic term)
+cargo container|1
+(noun)|container (generic term)
+cargo cult|1
+(noun)|cult (generic term)
+cargo deck|1
+(noun)|cargo area|cargo hold|hold|storage area|enclosure (generic term)
+cargo door|1
+(noun)|door (generic term)
+cargo hatch|1
+(noun)|hatch (generic term)
+cargo helicopter|1
+(noun)|helicopter (generic term)|chopper (generic term)|whirlybird (generic term)|eggbeater (generic term)
+cargo hold|1
+(noun)|cargo area|cargo deck|hold|storage area|enclosure (generic term)
+cargo liner|1
+(noun)|liner (generic term)|ocean liner (generic term)
+cargo ship|1
+(noun)|cargo vessel|ship (generic term)
+cargo ships|1
+(noun)|shipping|merchant marine|merchant vessels|conveyance (generic term)|transport (generic term)
+cargo vessel|1
+(noun)|cargo ship|ship (generic term)
+carhop|1
+(noun)|waiter (generic term)|server (generic term)
+cariama|1
+(noun)|Cariama|genus Cariama|bird genus (generic term)
+cariama cristata|1
+(noun)|crested cariama|seriema|Cariama cristata|wading bird (generic term)|wader (generic term)
+cariamidae|1
+(noun)|Cariamidae|family Cariamidae|bird family (generic term)
+carib|2
+(noun)|Carib|Carib Indian|Amerindian (generic term)|Native American (generic term)
+(noun)|Carib|Caribbean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+carib indian|1
+(noun)|Carib|Carib Indian|Amerindian (generic term)|Native American (generic term)
+carib wood|1
+(noun)|Sabinea carinalis|tree (generic term)
+caribbean|2
+(noun)|Caribbean|Caribbean Sea|sea (generic term)
+(noun)|Caribbean|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+caribbean island|1
+(noun)|Caribbean Island|island (generic term)
+caribbean language|1
+(noun)|Carib|Caribbean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+caribbean sea|1
+(noun)|Caribbean|Caribbean Sea|sea (generic term)
+caribe|1
+(noun)|piranha|pirana|characin (generic term)|characin fish (generic term)|characid (generic term)
+caribees|1
+(noun)|Lesser Antilles|Caribees|archipelago (generic term)
+caribou|1
+(noun)|reindeer|Greenland caribou|Rangifer tarandus|deer (generic term)|cervid (generic term)
+carica|1
+(noun)|Carica|genus Carica|dilleniid dicot genus (generic term)
+carica papaya|1
+(noun)|papaya|papaia|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree (generic term)
+caricaceae|1
+(noun)|Caricaceae|family Caricaceae|papaya family|dilleniid dicot family (generic term)
+caricature|2
+(noun)|imitation|impersonation|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(verb)|ape|mock (generic term)
+caricature plant|1
+(noun)|Graptophyllum pictum|shrub (generic term)|bush (generic term)
+caricaturist|1
+(noun)|parodist (generic term)|lampooner (generic term)
+caries|1
+(noun)|cavity|dental caries|tooth decay|decay (generic term)
+carillon|2
+(noun)|chime (generic term)|bell (generic term)|gong (generic term)
+(noun)|bell ringing|carillon playing|music (generic term)
+carillon playing|1
+(noun)|bell ringing|carillon|music (generic term)
+carillonneur|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+carina|2
+(noun)|Carina|constellation (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+carina fornicis|1
+(noun)|carina (generic term)
+carinal|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+carinate|2
+(adj)|ridged|carinated|keeled
+(noun)|carinate bird|flying bird|bird (generic term)|ratite (antonym)
+carinate bird|1
+(noun)|carinate|flying bird|bird (generic term)|ratite (antonym)
+carinated|1
+(adj)|ridged|carinate|keeled
+caring|4
+(adj)|protective|tender (similar term)
+(adj)|affectionate|fond|lovesome|tender|warm|loving (similar term)
+(adj)|compassionate (similar term)
+(noun)|lovingness|love (generic term)
+carioca|3
+(noun)|Carioca|Brazilian (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+carious|1
+(adj)|unhealthy (similar term)
+carissa|1
+(noun)|shrub (generic term)|bush (generic term)
+carissa bispinosa|1
+(noun)|hedge thorn|natal plum|Carissa bispinosa|carissa (generic term)
+carissa grandiflora|1
+(noun)|natal plum|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa (generic term)
+carissa macrocarpa|1
+(noun)|natal plum|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa (generic term)
+carissa plum|1
+(noun)|natal plum|edible fruit (generic term)
+carjack|1
+(verb)|commandeer (generic term)|hijack (generic term)|highjack (generic term)|pirate (generic term)
+carjacking|1
+(noun)|hijack (generic term)|highjack (generic term)
+cark|1
+(verb)|perturb|unhinge|disquiet|trouble|distract|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+carl anderson|1
+(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist (generic term)
+carl august nielson|1
+(noun)|Nielson|Carl Nielson|Carl August Nielson|composer (generic term)
+carl clinton van doren|1
+(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer (generic term)|author (generic term)|literary critic (generic term)
+carl david anderson|1
+(noun)|Anderson|Carl Anderson|Carl David Anderson|nuclear physicist (generic term)
+carl gustaf mossander|1
+(noun)|Mosander|Carl Gustaf Mossander|chemist (generic term)
+carl gustav jung|1
+(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist (generic term)
+carl jung|1
+(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist (generic term)
+carl lewis|1
+(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter (generic term)|jumper (generic term)
+carl maria von weber|1
+(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+carl nielson|1
+(noun)|Nielson|Carl Nielson|Carl August Nielson|composer (generic term)
+carl orff|1
+(noun)|Orff|Carl Orff|musician (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+carl rogers|1
+(noun)|Rogers|Carl Rogers|psychologist (generic term)
+carl sandburg|1
+(noun)|Sandburg|Carl Sandburg|writer (generic term)|author (generic term)
+carl van doren|1
+(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer (generic term)|author (generic term)|literary critic (generic term)
+carl von linne|1
+(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+carl xvi gustaf|1
+(noun)|Carl XVI Gustav|Carl XVI Gustaf|king (generic term)|male monarch (generic term)|Rex (generic term)
+carl xvi gustav|1
+(noun)|Carl XVI Gustav|Carl XVI Gustaf|king (generic term)|male monarch (generic term)|Rex (generic term)
+carl yastrzemski|1
+(noun)|Yastrzemski|Carl Yastrzemski|ballplayer (generic term)|baseball player (generic term)
+carlina|1
+(noun)|Carlina|genus Carlina|asterid dicot genus (generic term)
+carlina acaulis|1
+(noun)|stemless carline thistle|Carlina acaulis|carline thistle (generic term)
+carlina vulgaris|1
+(noun)|common carline thistle|Carlina vulgaris|carline thistle (generic term)
+carline thistle|1
+(noun)|thistle (generic term)
+carling float|1
+(noun)|life raft|Carling float|raft (generic term)
+carlo goldoni|1
+(noun)|Goldoni|Carlo Goldoni|dramatist (generic term)|playwright (generic term)
+carload|2
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|boatload|shipload|large indefinite quantity (generic term)|large indefinite amount (generic term)
+carlos|1
+(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist (generic term)
+carlos chavez|1
+(noun)|Chavez|Carlos Chavez|composer (generic term)
+carlos fuentes|1
+(noun)|Fuentes|Carlos Fuentes|writer (generic term)|author (generic term)
+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 (generic term)
+carlovingian|1
+(noun)|Carolingian|Carlovingian|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+carlovingian dynasty|1
+(noun)|Carolingian dynasty|Carlovingian dynasty|dynasty (generic term)
+carlsbad|1
+(noun)|Carlsbad|town (generic term)
+carlsbad caverns|1
+(noun)|Carlsbad Caverns|cavern (generic term)
+carlsbad caverns national park|1
+(noun)|Carlsbad Caverns National Park|national park (generic term)
+carlyle|1
+(noun)|Carlyle|Thomas Carlyle|historian (generic term)|historiographer (generic term)
+carmaker|1
+(noun)|car manufacturer|car maker|auto manufacturer|auto maker|automaker|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+carmelite|2
+(adj)|Carmelite|friar|mendicant (related term)
+(noun)|Carmelite|White Friar|friar (generic term)|mendicant (generic term)
+carmelite order|1
+(noun)|Carmelite order|Order of Our Lady of Mount Carmel|order (generic term)|monastic order (generic term)
+carmichael|1
+(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+carminative|2
+(adj)|flatus-relieving|healthful (similar term)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+carmine|3
+(adj)|red|reddish|ruddy|blood-red|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+(noun)|cardinal|red (generic term)|redness (generic term)
+(verb)|redden (generic term)
+carnage|1
+(noun)|slaughter|massacre|mass murder|butchery|murder (generic term)|slaying (generic term)|execution (generic term)
+carnal|2
+(adj)|animal|fleshly|sensual|physical (similar term)
+(adj)|animal tissue (related term)
+carnal abuse|2
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|statutory rape|rape (generic term)|violation (generic term)|assault (generic term)|ravishment (generic term)
+carnal knowledge|1
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+carnalise|1
+(verb)|sensualize|sensualise|carnalize|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+carnality|1
+(noun)|prurience|pruriency|lasciviousness|lubricity|amorousness (generic term)|eroticism (generic term)|erotism (generic term)|sexiness (generic term)|amativeness (generic term)
+carnalize|3
+(verb)|sensualize|represent (generic term)|interpret (generic term)
+(verb)|sensualize|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|sensualize|sensualise|carnalise|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+carnallite|1
+(noun)|mineral (generic term)
+carnassial|1
+(adj)|sharp (similar term)
+carnassial tooth|1
+(noun)|tooth (generic term)
+carnation|3
+(adj)|chromatic (similar term)
+(noun)|clove pink|gillyflower|Dianthus caryophyllus|pink (generic term)|garden pink (generic term)
+(noun)|pink (generic term)
+carnation family|1
+(noun)|Caryophyllaceae|family Caryophyllaceae|pink family|caryophylloid dicot family (generic term)
+carnauba|2
+(noun)|carnauba wax|wax (generic term)
+(noun)|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm (generic term)
+carnauba palm|1
+(noun)|carnauba|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm (generic term)
+carnauba wax|1
+(noun)|carnauba|wax (generic term)
+carnegie|2
+(noun)|Carnegie|Dale Carnegie|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|Carnegie|Andrew Carnegie|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+carnegie mellon university|1
+(noun)|Carnegie Mellon University|university (generic term)
+carnegiea|1
+(noun)|Carnegiea|genus Carnegiea|caryophylloid dicot genus (generic term)
+carnegiea gigantea|1
+(noun)|saguaro|sahuaro|Carnegiea gigantea|cactus (generic term)
+carnelian|1
+(noun)|cornelian|chalcedony (generic term)|calcedony (generic term)
+carnify|1
+(verb)|change state (generic term)|turn (generic term)
+carniolan bee|1
+(noun)|Carniolan bee|honeybee (generic term)|Apis mellifera (generic term)
+carnival|3
+(noun)|festival (generic term)|fete (generic term)
+(noun)|circus|disturbance (generic term)
+(noun)|fair|funfair|show (generic term)
+carnivora|1
+(noun)|Carnivora|order Carnivora|animal order (generic term)
+carnivore|2
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|predator (generic term)|predatory animal (generic term)
+carnivorous|2
+(adj)|placental|placental mammal|eutherian|eutherian mammal (related term)
+(adj)|flesh-eating (similar term)|meat-eating (similar term)|zoophagous (similar term)|piscivorous (similar term)|predacious (similar term)|predaceous (similar term)|herbivorous (antonym)|omnivorous (antonym)|insectivorous (antonym)
+carnivorous bat|1
+(noun)|microbat|bat (generic term)|chiropteran (generic term)
+carnivorous plant|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+carnosaur|1
+(noun)|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+carnosaura|1
+(noun)|Carnosaura|suborder Carnosaura|animal order (generic term)
+carnot|1
+(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist (generic term)
+carnot's ideal cycle|1
+(noun)|Carnot cycle|Carnot's ideal cycle|cycle (generic term)|oscillation (generic term)
+carnot cycle|1
+(noun)|Carnot cycle|Carnot's ideal cycle|cycle (generic term)|oscillation (generic term)
+carnotite|1
+(noun)|uranium ore (generic term)
+carob|3
+(noun)|carob bean|algarroba bean|algarroba|locust bean|locust pod|bean (generic term)
+(noun)|carob tree|carob bean tree|algarroba|Ceratonia siliqua|bean tree (generic term)
+(noun)|carob powder|Saint-John's-bread|foodstuff (generic term)|food product (generic term)
+carob bar|1
+(noun)|candy (generic term)|confect (generic term)
+carob bean|1
+(noun)|carob|algarroba bean|algarroba|locust bean|locust pod|bean (generic term)
+carob bean tree|1
+(noun)|carob|carob tree|algarroba|Ceratonia siliqua|bean tree (generic term)
+carob powder|1
+(noun)|carob|Saint-John's-bread|foodstuff (generic term)|food product (generic term)
+carob tree|1
+(noun)|carob|carob bean tree|algarroba|Ceratonia siliqua|bean tree (generic term)
+caroche|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+carol|3
+(noun)|Christmas carol|religious song (generic term)
+(noun)|song (generic term)|strain (generic term)
+(verb)|sing (generic term)
+carolean|1
+(adj)|Caroline|Carolean|King of England|King of Great Britain (related term)|Holy Roman Emperor|Carolingian|Carlovingian (related term)
+caroler|1
+(noun)|caroller|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+carolina|1
+(noun)|Carolina|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+carolina allspice|1
+(noun)|Carolina allspice|strawberry shrub|strawberry bush|sweet shrub|Calycanthus floridus|allspice (generic term)
+carolina buckthorn|1
+(noun)|Carolina buckthorn|indian cherry|Rhamnus carolinianus|buckthorn (generic term)
+carolina chickadee|1
+(noun)|Carolina chickadee|Parus carolinensis|chickadee (generic term)
+carolina hemlock|1
+(noun)|Carolina hemlock|Tsuga caroliniana|hemlock (generic term)|hemlock tree (generic term)
+carolina jasmine|1
+(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine (generic term)
+carolina lupine|1
+(noun)|Carolina lupine|Thermopsis villosa|bush pea (generic term)
+carolina moonseed|1
+(noun)|Carolina moonseed|Cocculus carolinus|moonseed (generic term)
+carolina parakeet|1
+(noun)|Carolina parakeet|Conuropsis carolinensis|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+carolina pond fern|1
+(noun)|mosquito fern|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern (generic term)|water fern (generic term)
+carolina spring beauty|1
+(noun)|Carolina spring beauty|Claytonia caroliniana|flower (generic term)
+carolina wren|1
+(noun)|Carolina wren|Thryothorus ludovicianus|wren (generic term)|jenny wren (generic term)
+caroline|1
+(adj)|Caroline|Carolean|King of England|King of Great Britain (related term)|Holy Roman Emperor|Carolingian|Carlovingian (related term)
+caroline islands|1
+(noun)|Caroline Islands|archipelago (generic term)
+caroling|1
+(noun)|singing (generic term)|vocalizing (generic term)
+carolingian|2
+(adj)|Carolingian|dynasty (related term)
+(noun)|Carolingian|Carlovingian|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+carolingian dynasty|1
+(noun)|Carolingian dynasty|Carlovingian dynasty|dynasty (generic term)
+carolinian|1
+(noun)|Carolinian|American (generic term)
+caroller|1
+(noun)|caroler|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+carolus|1
+(noun)|Charlemagne|Carolus|Charles|Charles I|Charles the Great|Holy Roman Emperor (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+carolus linnaeus|1
+(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+carom|4
+(noun)|ricochet|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+(noun)|cannon|stroke (generic term)|shot (generic term)
+(verb)|glance|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+(verb)|shoot (generic term)
+carotene|2
+(noun)|provitamin A|carotin|provitamin (generic term)
+(noun)|carotenoid (generic term)
+carotenemia|1
+(noun)|xanthemia|pathology (generic term)
+carotenoid|1
+(noun)|pigment (generic term)|antioxidant (generic term)
+carothers|1
+(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist (generic term)
+carotid|1
+(adj)|artery|arteria|arterial blood vessel (related term)
+carotid artery|1
+(noun)|arteria carotis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+carotid body|1
+(noun)|chemoreceptor (generic term)
+carotid plexus|1
+(noun)|plexus caroticus|nerve plexus (generic term)
+carotin|1
+(noun)|provitamin A|carotene|provitamin (generic term)
+carousal|1
+(noun)|carouse|bender|toot|booze-up|revel (generic term)|revelry (generic term)
+carouse|2
+(noun)|carousal|bender|toot|booze-up|revel (generic term)|revelry (generic term)
+(verb)|roister|riot|revel (generic term)|racket (generic term)|make whoopie (generic term)|make merry (generic term)|make happy (generic term)|whoop it up (generic term)|jollify (generic term)|wassail (generic term)
+carousel|2
+(noun)|carrousel|luggage carousel|luggage carrousel|conveyer belt (generic term)|conveyor belt (generic term)|conveyer (generic term)|conveyor (generic term)|transporter (generic term)
+(noun)|carrousel|merry-go-round|roundabout|whirligig|ride (generic term)
+carouser|1
+(noun)|wassailer|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+carousing|1
+(adj)|bacchanalian|bacchanal|bacchic|orgiastic|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+carp|3
+(noun)|freshwater fish (generic term)
+(noun)|cyprinid (generic term)|cyprinid fish (generic term)
+(verb)|cavil|chicane|object (generic term)
+carp-like|1
+(adj)|animal (similar term)
+carpal|2
+(adj)|gliding joint|articulatio plana (related term)
+(noun)|carpal bone|wrist bone|bone (generic term)|os (generic term)
+carpal bone|1
+(noun)|carpal|wrist bone|bone (generic term)|os (generic term)
+carpal tunnel|1
+(noun)|passage (generic term)|passageway (generic term)
+carpal tunnel syndrome|1
+(noun)|nerve entrapment (generic term)
+carpathian mountains|1
+(noun)|Carpathians|Carpathian Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+carpathians|1
+(noun)|Carpathians|Carpathian Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+carpel|1
+(noun)|pistil (generic term)
+carpellary|1
+(adj)|pistil (related term)
+carpellate|1
+(adj)|pistillate|acarpelous (antonym)
+carpentaria|1
+(noun)|Gulf of Carpentaria|Carpentaria|gulf (generic term)|Australia (generic term)
+carpenter|2
+(noun)|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+(verb)|work (generic term)
+carpenter's hammer|1
+(noun)|claw hammer|clawhammer|hammer (generic term)
+carpenter's kit|1
+(noun)|tool kit|kit (generic term)|outfit (generic term)
+carpenter's level|1
+(noun)|bar (generic term)
+carpenter's mallet|1
+(noun)|mallet (generic term)|beetle (generic term)
+carpenter's plane|1
+(noun)|plane|woodworking plane|edge tool (generic term)|hand tool (generic term)
+carpenter's rule|1
+(noun)|rule (generic term)|ruler (generic term)
+carpenter's saw|1
+(noun)|handsaw|hand saw|saw (generic term)
+carpenter's square|1
+(noun)|square (generic term)
+carpenter ant|1
+(noun)|ant (generic term)|emmet (generic term)|pismire (generic term)
+carpenter bee|1
+(noun)|bee (generic term)
+carpenteria|1
+(noun)|Carpenteria californica|hydrangea (generic term)
+carpenteria californica|1
+(noun)|carpenteria|Carpenteria californica|hydrangea (generic term)
+carpentry|1
+(noun)|woodworking|woodwork|trade (generic term)|craft (generic term)
+carper|1
+(noun)|niggler|critic (generic term)
+carpet|3
+(noun)|rug|carpeting|floor cover (generic term)|floor covering (generic term)|furnishing (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+(verb)|cover (generic term)
+carpet-like|1
+(adj)|carpeted (similar term)
+carpet beater|1
+(noun)|rug beater|beater (generic term)
+carpet beetle|1
+(noun)|carpet bug|beetle (generic term)
+carpet bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+carpet bombing|1
+(noun)|area bombing|saturation bombing|bombing (generic term)|bombardment (generic term)
+carpet bug|1
+(noun)|carpet beetle|beetle (generic term)
+carpet grass|1
+(noun)|smut grass|blackseed|Sporobolus poiretii|dropseed (generic term)|drop-seed (generic term)
+carpet knight|1
+(noun)|knight (generic term)
+carpet loom|1
+(noun)|loom (generic term)
+carpet moth|1
+(noun)|tapestry moth|Trichophaga tapetzella|tineid (generic term)|tineid moth (generic term)
+carpet pad|1
+(noun)|rug pad|underlay|underlayment|pad (generic term)
+carpet shark|1
+(noun)|Orectolobus barbatus|shark (generic term)
+carpet slipper|1
+(noun)|slipper|footwear (generic term)|footgear (generic term)
+carpet snake|1
+(noun)|Python variegatus|Morelia spilotes variegatus|python (generic term)
+carpet sweeper|1
+(noun)|sweeper|cleaning implement (generic term)
+carpet tack|1
+(noun)|tack (generic term)
+carpetbag|2
+(adj)|opportunist|self-seeker (related term)
+(noun)|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+carpetbagger|1
+(noun)|opportunist (generic term)|self-seeker (generic term)
+carpeted|1
+(adj)|carpet-like (similar term)|uncarpeted (antonym)
+carpeting|1
+(noun)|rug|carpet|floor cover (generic term)|floor covering (generic term)|furnishing (generic term)
+carpetweed|1
+(noun)|Indian chickweed|Molluga verticillata|weed (generic term)
+carpetweed family|1
+(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|caryophylloid dicot family (generic term)
+carphophis|1
+(noun)|Carphophis|genus Carphophis|reptile genus (generic term)
+carphophis amoenus|1
+(noun)|thunder snake|worm snake|Carphophis amoenus|colubrid snake (generic term)|colubrid (generic term)
+carpinaceae|1
+(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family (generic term)
+carping|2
+(adj)|caviling|nitpicking|pettifogging|quibbling|critical (similar term)
+(noun)|faultfinding|criticism (generic term)|unfavorable judgment (generic term)
+carpinus|1
+(noun)|Carpinus|genus Carpinus|hamamelid dicot genus (generic term)
+carpinus betulus|1
+(noun)|European hornbeam|Carpinus betulus|hornbeam (generic term)
+carpinus caroliniana|1
+(noun)|American hornbeam|Carpinus caroliniana|hornbeam (generic term)
+carpobrotus|1
+(noun)|Carpobrotus|genus Carpobrotus|caryophylloid dicot genus (generic term)
+carpobrotus edulis|1
+(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent (generic term)
+carpocapsa|1
+(noun)|Carpocapsa|genus Carpocapsa|arthropod genus (generic term)
+carpocapsa pomonella|1
+(noun)|codling moth|codlin moth|Carpocapsa pomonella|tortricid (generic term)|tortricid moth (generic term)
+carpodacus|1
+(noun)|Carpodacus|genus Carpodacus|bird genus (generic term)
+carpodacus mexicanus|1
+(noun)|house finch|linnet|Carpodacus mexicanus|finch (generic term)
+carpodacus purpureus|1
+(noun)|purple finch|Carpodacus purpureus|finch (generic term)
+carpophagous|1
+(adj)|fruit-eating|herbivorous (similar term)
+carpophore|1
+(noun)|stalk (generic term)|stem (generic term)
+carport|1
+(noun)|car port|garage (generic term)
+carpospore|1
+(noun)|spore (generic term)
+carposporic|1
+(adj)|spore (related term)
+carposporous|1
+(adj)|spore (related term)
+carpus|1
+(noun)|wrist|wrist joint|radiocarpal joint|articulatio radiocarpea|gliding joint (generic term)|articulatio plana (generic term)
+carrack|1
+(noun)|carack|galleon (generic term)
+carrageen|1
+(noun)|Irish moss|carageen|carragheen|Chondrus crispus|red algae (generic term)
+carrageenan|1
+(noun)|carrageenin|gum (generic term)
+carrageenin|1
+(noun)|carrageenan|gum (generic term)
+carragheen|1
+(noun)|Irish moss|carrageen|carageen|Chondrus crispus|red algae (generic term)
+carrefour|1
+(noun)|intersection|crossroad|crossway|crossing|junction (generic term)
+carrel|2
+(noun)|Carrel|Alexis Carrel|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)|biologist (generic term)|life scientist (generic term)
+(noun)|carrell|cubicle|stall|alcove (generic term)|bay (generic term)
+carrell|1
+(noun)|carrel|cubicle|stall|alcove (generic term)|bay (generic term)
+carrere|1
+(noun)|Carrere|John Merven Carrere|architect (generic term)|designer (generic term)
+carriage|5
+(noun)|passenger car|coach|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+(noun)|equipage|rig|horse-drawn vehicle (generic term)
+(noun)|bearing|posture|bodily property (generic term)
+(noun)|mechanism (generic term)
+(noun)|baby buggy|baby carriage|perambulator|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+carriage bolt|1
+(noun)|bolt (generic term)
+carriage dog|1
+(noun)|dalmatian|coach dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+carriage house|1
+(noun)|coach house|remise|outbuilding (generic term)
+carriage return|1
+(noun)|printing operation (generic term)
+carriage trade|1
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+carriage wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+carriageway|1
+(noun)|roadway (generic term)
+carrick bend|1
+(noun)|knot (generic term)
+carrick bitt|1
+(noun)|post (generic term)
+carrier|11
+(noun)|bearer|toter|traveler (generic term)|traveller (generic term)
+(noun)|self-propelled vehicle (generic term)
+(noun)|aircraft carrier|flattop|attack aircraft carrier|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|common carrier|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|carrier wave|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+(noun)|mailman|postman|mail carrier|letter carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+(noun)|newsboy|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+(noun)|immune carrier|immune (generic term)|vector (generic term)|transmitter (generic term)
+(noun)|rack (generic term)
+(noun)|organism (generic term)|being (generic term)
+carrier bag|1
+(noun)|sack|poke|paper bag|bag (generic term)
+carrier electrophoresis|1
+(noun)|paper electrophoresis|electrophoresis (generic term)|cataphoresis (generic term)|dielectrolysis (generic term)|ionophoresis (generic term)
+carrier pigeon|1
+(noun)|homing pigeon (generic term)|homer (generic term)
+carrier wave|1
+(noun)|carrier|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+carrion|1
+(noun)|body (generic term)|dead body (generic term)
+carrion crow|1
+(noun)|black vulture|Coragyps atratus|New World vulture (generic term)|cathartid (generic term)
+carrion flower|1
+(noun)|stapelia|starfish flower|herb (generic term)|herbaceous plant (generic term)
+carrion fungus|1
+(noun)|stinkhorn|fungus (generic term)
+carrizo|1
+(noun)|ditch reed|common reed|Phragmites communis|reed (generic term)
+carroll|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+carron oil|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+carrot|4
+(noun)|root (generic term)
+(noun)|cultivated carrot|Daucus carota sativa|herb (generic term)|herbaceous plant (generic term)
+(noun)|root vegetable (generic term)
+(noun)|reward (generic term)|reinforcement (generic term)
+carrot family|1
+(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|rosid dicot family (generic term)
+carrot juice|1
+(noun)|juice (generic term)
+carrot pudding|1
+(noun)|pudding (generic term)
+carrot stick|1
+(noun)|crudites (generic term)
+carrottop|1
+(noun)|redhead|redheader|red-header|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+carroty|1
+(adj)|root vegetable (related term)
+carrousel|2
+(noun)|carousel|luggage carousel|luggage carrousel|conveyer belt (generic term)|conveyor belt (generic term)|conveyer (generic term)|conveyor (generic term)|transporter (generic term)
+(noun)|carousel|merry-go-round|roundabout|whirligig|ride (generic term)
+carry|38
+(noun)|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(verb)|transport|move (generic term)|displace (generic term)
+(verb)|pack|take|have (generic term)|feature (generic term)
+(verb)|conduct|transmit|convey|channel|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|convey|express|communicate (generic term)|intercommunicate (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|hold|bear
+(verb)|hold|bear|contain|include (generic term)
+(verb)|effect (generic term)
+(verb)|extend|continue (generic term)
+(verb)|imply (generic term)|involve (generic term)
+(verb)|include (generic term)
+(verb)|behave|acquit|bear|deport|conduct|comport|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+(verb)|stock|stockpile|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|run|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|dribble|hit (generic term)
+(verb)|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|range (generic term)
+(verb)|sustain (generic term)|keep (generic term)|maintain (generic term)
+(verb)|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|persuade|sway|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|compensate (generic term)|counterbalance (generic term)|correct (generic term)|make up (generic term)|even out (generic term)|even off (generic term)|even up (generic term)
+(verb)|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|bear (generic term)
+(verb)|appropriate (generic term)|capture (generic term)|seize (generic term)|conquer (generic term)
+(verb)|post|transfer (generic term)
+(verb)|transfer (generic term)|shift (generic term)
+(verb)|follow (generic term)
+(verb)|grow (generic term)|raise (generic term)|farm (generic term)|produce (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|hold|drink (generic term)|booze (generic term)|fuddle (generic term)
+(verb)|nourish (generic term)|nurture (generic term)|sustain (generic term)
+(verb)|have (generic term)|feature (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|obtain (generic term)
+(verb)|win (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|have a bun in the oven|bear|gestate|expect|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+carry-forward|1
+(noun)|carry-over|balance (generic term)
+carry-over|2
+(noun)|transfer|transfer of training|learning (generic term)|acquisition (generic term)
+(noun)|carry-forward|balance (generic term)
+carry-the can|1
+(verb)|face the music|bear (generic term)|take over (generic term)|accept (generic term)|assume (generic term)
+carry amelia moore nation|1
+(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry (generic term)|prohibitionist (generic term)
+carry away|1
+(verb)|take away|bear off|bear away|carry off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|bring (antonym)
+carry back|1
+(verb)|deduce (generic term)|infer (generic term)|deduct (generic term)|derive (generic term)
+carry forward|1
+(verb)|carry over|transfer (generic term)|shift (generic term)
+carry nation|1
+(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry (generic term)|prohibitionist (generic term)
+carry off|3
+(verb)|pull off|negociate|bring off|manage|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+(verb)|take away|bear off|bear away|carry away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|bring (antonym)
+(verb)|eliminate|annihilate|extinguish|eradicate|wipe out|decimate|kill (generic term)
+carry on|4
+(verb)|conduct|deal|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|continue|uphold|bear on|preserve|keep (generic term)|maintain (generic term)|hold (generic term)|discontinue (antonym)
+(verb)|continue|go on|proceed|talk (generic term)|speak (generic term)
+(verb)|act up|misbehave (generic term)|misconduct (generic term)|misdemean (generic term)
+carry out|2
+(verb)|carry through|accomplish|execute|action|fulfill|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|follow through|follow up|follow out|implement|put through|go through|complete (generic term)|finish (generic term)
+carry over|4
+(verb)|prevail (generic term)|persist (generic term)|die hard (generic term)|run (generic term)|endure (generic term)
+(verb)|transport (generic term)
+(verb)|hold over|keep (generic term)|hold on (generic term)
+(verb)|carry forward|transfer (generic term)|shift (generic term)
+carry through|2
+(verb)|accomplish|execute|carry out|action|fulfill|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|save|pull through|bring through
+carry to term|1
+(verb)|miscarry (antonym)
+carry weight|1
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+carryall|1
+(noun)|holdall|tote|tote bag|bag (generic term)
+carrycot|1
+(noun)|baby bed (generic term)|baby's bed (generic term)
+carrying charge|2
+(noun)|charge (generic term)
+(noun)|carrying cost|opportunity cost (generic term)
+carrying cost|1
+(noun)|carrying charge|opportunity cost (generic term)
+carrying into action|1
+(noun)|performance|execution|carrying out|action (generic term)
+carrying out|2
+(noun)|execution|implementation|enforcement (generic term)
+(noun)|performance|execution|carrying into action|action (generic term)
+carsick|1
+(adj)|airsick|air sick|seasick|ill (similar term)|sick (similar term)
+carson|2
+(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist (generic term)|life scientist (generic term)|environmentalist (generic term)|conservationist (generic term)
+(noun)|Carson|Kit Carson|Christopher Carson|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)
+carson city|1
+(noun)|Carson City|capital of Nevada|state capital (generic term)
+carson mccullers|1
+(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer (generic term)|author (generic term)
+carson smith mccullers|1
+(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer (generic term)|author (generic term)
+cart|4
+(noun)|wagon (generic term)|waggon (generic term)
+(noun)|handcart|pushcart|go-cart|wheeled vehicle (generic term)
+(verb)|haul|hale|drag|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|transport (generic term)|carry (generic term)
+cart-track plant|1
+(noun)|broad-leaved plantain|common plantain|white-man's foot|whiteman's foot|Plantago major|plantain (generic term)
+cart away|1
+(verb)|cart off|haul off|haul away|take away (generic term)|take out (generic term)
+cart horse|1
+(noun)|carthorse|drayhorse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+cart off|1
+(verb)|cart away|haul off|haul away|take away (generic term)|take out (generic term)
+cart track|1
+(noun)|track|cartroad|road (generic term)|route (generic term)
+cartage|1
+(noun)|carting|hauling (generic term)|trucking (generic term)|truckage (generic term)
+cartagena|1
+(noun)|Cartagena|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cartagena bark|1
+(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona (generic term)|chinchona (generic term)
+carte|1
+(noun)|menu|bill of fare|card|carte du jour|bill (generic term)
+carte blanche|1
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+carte du jour|1
+(noun)|menu|bill of fare|card|carte|bill (generic term)
+cartel|1
+(noun)|trust|corporate trust|combine|consortium (generic term)|pool (generic term)|syndicate (generic term)
+carter|3
+(noun)|Carter|Howard Carter|Egyptologist (generic term)
+(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|worker (generic term)
+carter administration|1
+(noun)|Carter administration|executive (generic term)
+cartesian|2
+(adj)|Cartesian|mathematician|philosopher (related term)
+(noun)|Cartesian|follower (generic term)
+cartesian coordinate|1
+(noun)|Cartesian coordinate|coordinate (generic term)|co-ordinate (generic term)
+cartesian coordinate system|1
+(noun)|coordinate system (generic term)|frame of reference (generic term)|reference system (generic term)|reference frame (generic term)
+cartesian plane|1
+(noun)|plane (generic term)|sheet (generic term)
+cartesian product|1
+(noun)|intersection|product|set (generic term)
+carthage|1
+(noun)|Carthage|city state (generic term)|city-state (generic term)
+carthaginian|2
+(adj)|Carthaginian|Punic|city state|city-state (related term)
+(noun)|Carthaginian|African (generic term)
+carthamus|1
+(noun)|Carthamus|genus Carthamus|asterid dicot genus (generic term)
+carthamus tinctorius|1
+(noun)|safflower|false saffron|Carthamus tinctorius|herb (generic term)|herbaceous plant (generic term)
+carthorse|1
+(noun)|cart horse|drayhorse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+carthusian|2
+(adj)|Carthusian|order|monastic order (related term)
+(noun)|Carthusian|monk (generic term)|monastic (generic term)
+carthusian order|1
+(noun)|Carthusian order|order (generic term)|monastic order (generic term)
+cartier|1
+(noun)|Cartier|Jacques Cartier|navigator (generic term)
+cartilage|1
+(noun)|gristle|animal tissue (generic term)
+cartilage bone|1
+(noun)|bone (generic term)|os (generic term)
+cartilaginification|1
+(noun)|pathology (generic term)
+cartilaginous|2
+(adj)|animal tissue (related term)
+(adj)|gristly|rubbery|tough (similar term)
+cartilaginous fish|1
+(noun)|chondrichthian|fish (generic term)
+cartilaginous structure|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cartilaginous tube|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+carting|1
+(noun)|cartage|hauling (generic term)|trucking (generic term)|truckage (generic term)
+cartload|1
+(noun)|containerful (generic term)
+cartographer|1
+(noun)|map maker|geographer (generic term)
+cartographic|1
+(adj)|cartographical|devising|fashioning|making (related term)
+cartographical|1
+(adj)|cartographic|devising|fashioning|making (related term)
+cartography|1
+(noun)|mapmaking|devising (generic term)|fashioning (generic term)|making (generic term)
+carton|2
+(noun)|cartonful|containerful (generic term)
+(noun)|box (generic term)
+cartonful|1
+(noun)|carton|containerful (generic term)
+cartoon|3
+(noun)|sketch|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|animated cartoon|toon|short subject (generic term)
+(verb)|draw (generic term)
+cartoon strip|1
+(noun)|comic strip|strip|funnies|cartoon (generic term)|sketch (generic term)
+cartoonist|1
+(noun)|draftsman (generic term)|drawer (generic term)
+cartouch|1
+(noun)|cartouche|cartridge (generic term)
+cartouche|1
+(noun)|cartouch|cartridge (generic term)
+cartridge|4
+(noun)|ammunition (generic term)|ammo (generic term)
+(noun)|magazine|supply chamber (generic term)
+(noun)|module (generic term)
+(noun)|pickup|electro-acoustic transducer (generic term)
+cartridge belt|1
+(noun)|belt (generic term)
+cartridge brass|1
+(noun)|brass (generic term)
+cartridge clip|1
+(noun)|cartridge holder|clip|magazine|supply chamber (generic term)
+cartridge ejector|1
+(noun)|ejector|mechanism (generic term)
+cartridge extractor|1
+(noun)|cartridge remover|extractor|mechanism (generic term)
+cartridge font|1
+(noun)|font cartridge|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+cartridge fuse|1
+(noun)|fuse (generic term)|electrical fuse (generic term)|safety fuse (generic term)
+cartridge holder|1
+(noun)|cartridge clip|clip|magazine|supply chamber (generic term)
+cartridge paper|2
+(noun)|drawing paper (generic term)
+(noun)|paper (generic term)
+cartridge remover|1
+(noun)|cartridge extractor|extractor|mechanism (generic term)
+cartroad|1
+(noun)|track|cart track|road (generic term)|route (generic term)
+cartwheel|4
+(noun)|wheel (generic term)
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+(noun)|silver dollar|dollar (generic term)
+(verb)|wheel (generic term)|wheel around (generic term)
+cartwright|2
+(noun)|Cartwright|Edmund Cartwright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|wright (generic term)
+carum|1
+(noun)|Carum|genus Carum|rosid dicot genus (generic term)
+carum carvi|1
+(noun)|caraway|Carum carvi|herb (generic term)|herbaceous plant (generic term)
+caruncle|1
+(noun)|caruncula|process (generic term)|outgrowth (generic term)|appendage (generic term)
+caruncula|1
+(noun)|caruncle|process (generic term)|outgrowth (generic term)|appendage (generic term)
+caruncular|1
+(adj)|carunculous|process|outgrowth|appendage (related term)
+carunculate|1
+(adj)|carunculated|process|outgrowth|appendage (related term)
+carunculated|1
+(adj)|carunculate|process|outgrowth|appendage (related term)
+carunculous|1
+(adj)|caruncular|process|outgrowth|appendage (related term)
+caruso|1
+(noun)|Caruso|Enrico Caruso|tenor (generic term)
+carve|3
+(verb)|cut (generic term)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|chip at|cut (generic term)|chip (related term)
+(verb)|cut up|cut (generic term)|carve up (related term)
+carve up|1
+(verb)|divide|split|split up|separate|dissever|change integrity (generic term)|unite (antonym)
+carved|1
+(adj)|carven|engraved (similar term)|etched (similar term)|graven (similar term)|incised (similar term)|inscribed (similar term)|graven (similar term)|sculpted (similar term)|sculptured (similar term)|lapidarian (similar term)|sliced (similar term)|uncarved (antonym)
+carved in stone|1
+(adj)|set in stone|unchangeable (similar term)
+carvedilol|1
+(noun)|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+carvel-built|1
+(adj)|flush-seamed (similar term)|clinker-built (antonym)
+carven|1
+(adj)|carved|engraved (similar term)|etched (similar term)|graven (similar term)|incised (similar term)|inscribed (similar term)|graven (similar term)|sculpted (similar term)|sculptured (similar term)|lapidarian (similar term)|sliced (similar term)|uncarved (antonym)
+carver|4
+(noun)|Carver|George Washington Carver|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)|chemist (generic term)
+(noun)|woodcarver|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+(noun)|sculptor|sculpturer|statue maker|artist (generic term)|creative person (generic term)
+(noun)|cutter|diner (generic term)
+carving|3
+(noun)|sculpture (generic term)
+(noun)|cutting|creating by removal (generic term)
+(noun)|sculpture|art (generic term)|artistic creation (generic term)|artistic production (generic term)|fine arts (generic term)|beaux arts (generic term)
+carving fork|1
+(noun)|fork (generic term)
+carving knife|1
+(noun)|knife (generic term)
+cary grant|1
+(noun)|Grant|Cary Grant|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+carya|1
+(noun)|Carya|genus Carya|dicot genus (generic term)|magnoliopsid genus (generic term)
+carya aquatica|1
+(noun)|water hickory|bitter pecan|water bitternut|Carya aquatica|hickory (generic term)|hickory tree (generic term)
+carya cordiformis|1
+(noun)|bitternut|bitternut hickory|bitter hickory|bitter pignut|swamp hickory|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+carya glabra|1
+(noun)|pignut|pignut hickory|brown hickory|black hickory|Carya glabra|hickory (generic term)|hickory tree (generic term)
+carya illinoensis|1
+(noun)|pecan|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree (generic term)
+carya illinoinsis|1
+(noun)|pecan|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree (generic term)
+carya laciniosa|1
+(noun)|big shellbark|big shellbark hickory|big shagbark|king nut|king nut hickory|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+carya myristicaeformis|1
+(noun)|nutmeg hickory|Carya myristicaeformis|Carya myristiciformis|hickory (generic term)|hickory tree (generic term)
+carya myristiciformis|1
+(noun)|nutmeg hickory|Carya myristicaeformis|Carya myristiciformis|hickory (generic term)|hickory tree (generic term)
+carya ovata|1
+(noun)|shagbark|shagbark hickory|shellbark|shellbark hickory|Carya ovata|hickory (generic term)|hickory tree (generic term)
+carya tomentosa|1
+(noun)|mockernut|mockernut hickory|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+caryatid|1
+(noun)|column (generic term)|pillar (generic term)
+caryocar|1
+(noun)|Caryocar|genus Caryocar|dilleniid dicot genus (generic term)
+caryocar nuciferum|1
+(noun)|souari|souari nut|souari tree|Caryocar nuciferum|tree (generic term)
+caryocaraceae|1
+(noun)|Caryocaraceae|family Caryocaraceae|dilleniid dicot family (generic term)
+caryophyllaceae|1
+(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|pink family|caryophylloid dicot family (generic term)
+caryophyllaceous|1
+(adj)|caryophylloid dicot family (related term)
+caryophyllaceous plant|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+caryophyllales|1
+(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order (generic term)
+caryophyllidae|1
+(noun)|Caryophyllidae|subclass Caryophyllidae|class (generic term)
+caryophylloid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+caryophylloid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+caryopsis|1
+(noun)|grain|seed (generic term)
+caryota|1
+(noun)|Caryota|genus Caryota|monocot genus (generic term)|liliopsid genus (generic term)
+caryota urens|1
+(noun)|wine palm|jaggery palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm (generic term)
+casaba|1
+(noun)|casaba melon|winter melon (generic term)
+casaba melon|1
+(noun)|casaba|winter melon (generic term)
+casablanca|1
+(noun)|Casablanca|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+casals|1
+(noun)|Casals|Pablo Casals|cellist (generic term)|violoncellist (generic term)
+casanova|2
+(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer (generic term)|venturer (generic term)
+(noun)|Casanova|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+casanova de seingalt|1
+(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer (generic term)|venturer (generic term)
+casava|1
+(noun)|cassava|shrub (generic term)|bush (generic term)
+casbah|1
+(noun)|kasbah|quarter (generic term)
+cascabel|1
+(noun)|sleigh bell|bell (generic term)
+cascade|5
+(noun)|waterfall (generic term)|falls (generic term)
+(noun)|succession (generic term)
+(noun)|shower|descent (generic term)
+(verb)|cascade down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+cascade down|1
+(verb)|cascade|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+cascade everlasting|1
+(noun)|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting (generic term)|everlasting flower (generic term)
+cascade liquefier|1
+(noun)|apparatus (generic term)|setup (generic term)
+cascade mountains|1
+(noun)|Cascades|Cascade Range|Cascade Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cascade penstemon|1
+(noun)|Penstemon serrulatus|wildflower (generic term)|wild flower (generic term)
+cascade range|1
+(noun)|Cascades|Cascade Range|Cascade Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cascade transformer|1
+(noun)|step-up transformer (generic term)
+cascades|1
+(noun)|Cascades|Cascade Range|Cascade Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cascades frog|1
+(noun)|Rana cascadae|true frog (generic term)|ranid (generic term)
+cascading menu|1
+(noun)|hierarchical menu|submenu|menu (generic term)|computer menu (generic term)
+cascara|1
+(noun)|cascara sagrada|chittam bark|chittem bark|bark (generic term)
+cascara buckthorn|1
+(noun)|bearberry|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn (generic term)
+cascara sagrada|1
+(noun)|cascara|chittam bark|chittem bark|bark (generic term)
+cascarilla|1
+(noun)|Croton eluteria|croton (generic term)|Croton tiglium (generic term)
+cascarilla bark|1
+(noun)|eleuthra bark|sweetwood bark|bark (generic term)
+case|20
+(noun)|lawsuit|suit|cause|causa|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|instance|example|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|event|circumstance (generic term)
+(noun)|problem (generic term)
+(noun)|fact (generic term)
+(noun)|argument (generic term)|statement (generic term)
+(noun)|container (generic term)
+(noun)|subject|guinea pig|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|caseful|containerful (generic term)
+(noun)|display case|showcase|vitrine|container (generic term)
+(noun)|state of mind (generic term)|frame of mind (generic term)
+(noun)|grammatical case|grammatical category (generic term)|syntactic category (generic term)
+(noun)|shell|casing|housing (generic term)
+(noun)|character|eccentric|type|adult (generic term)|grownup (generic term)
+(noun)|sheath|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|casing|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|pillowcase|slip|pillow slip|bed linen (generic term)
+(verb)|inspect (generic term)
+(verb)|encase|incase|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+case-by-case|1
+(adj)|individual|item-by-item|independent (similar term)
+case-fatality proportion|1
+(noun)|proportion (generic term)
+case-hardened|1
+(adj)|hardened|hard-boiled|hard (similar term)
+case-hardened steel|1
+(noun)|steel (generic term)
+case-to-infection proportion|1
+(noun)|case-to-infection ratio|proportion (generic term)
+case-to-infection ratio|1
+(noun)|case-to-infection proportion|proportion (generic term)
+case agreement|1
+(noun)|agreement (generic term)|concord (generic term)
+case history|1
+(noun)|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+case in point|1
+(noun)|precedent|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+case knife|2
+(noun)|table knife (generic term)
+(noun)|sheath knife|knife (generic term)
+case law|2
+(noun)|common law|precedent|law (generic term)|jurisprudence (generic term)
+(noun)|precedent|common law|civil law (generic term)
+case load|1
+(noun)|workload (generic term)
+case officer|1
+(noun)|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+case shot|1
+(noun)|canister|canister shot|ammunition (generic term)|ammo (generic term)
+case study|2
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+(noun)|analysis (generic term)
+caseate|1
+(verb)|change (generic term)
+casebook|2
+(adj)|textbook|standard (similar term)
+(noun)|written record (generic term)|written account (generic term)
+cased|2
+(adj)|encased|incased|sheathed (similar term)
+(adj)|bound (similar term)
+caseful|1
+(noun)|case|containerful (generic term)
+casein|2
+(noun)|phosphoprotein (generic term)
+(noun)|casein paint|water-base paint (generic term)
+casein glue|1
+(noun)|glue (generic term)|gum (generic term)|mucilage (generic term)
+casein paint|1
+(noun)|casein|water-base paint (generic term)
+casemaking clothes moth|1
+(noun)|Tinea pellionella|clothes moth (generic term)
+casement|1
+(noun)|sash (generic term)|window sash (generic term)
+casement window|1
+(noun)|window (generic term)
+caseous|1
+(adj)|unhealthy (similar term)
+casern|1
+(noun)|barrack (generic term)
+casework|1
+(noun)|welfare work (generic term)|social service (generic term)
+caseworker|1
+(noun)|social worker|welfare worker|public servant (generic term)
+caseworm|1
+(noun)|larva (generic term)
+casey jones|1
+(noun)|Jones|Casey Jones|John Luther Jones|engineer (generic term)|locomotive engineer (generic term)|railroad engineer (generic term)|engine driver (generic term)
+casey stengel|1
+(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach (generic term)|baseball manager (generic term)
+cash|4
+(noun)|hard cash|hard currency|currency (generic term)
+(noun)|immediate payment|payment (generic term)|credit (antonym)
+(noun)|Cash|Johnny Cash|John Cash|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(verb)|cash in|exchange (generic term)|change (generic term)|interchange (generic term)|cash in on (related term)
+cash-and-carry|1
+(adj)|payment (related term)
+cash account|1
+(noun)|brokerage account (generic term)|margin account (antonym)
+cash advance|1
+(noun)|advance|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+cash bar|1
+(noun)|bar (generic term)
+cash basis|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)|accrual basis (antonym)
+cash card|1
+(noun)|cashcard|credit card (generic term)|charge card (generic term)|charge plate (generic term)
+cash cow|1
+(noun)|moneymaker|money-spinner|project (generic term)|projection (generic term)
+cash crop|1
+(noun)|crop (generic term)
+cash dispenser|1
+(noun)|cash machine|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine (generic term)
+cash equivalent|1
+(noun)|debt instrument (generic term)|certificate of indebtedness (generic term)
+cash flow|1
+(noun)|income (generic term)
+cash in|1
+(verb)|cash|exchange (generic term)|change (generic term)|interchange (generic term)|cash in on (related term)
+cash in hand|1
+(noun)|funds|finances|monetary resource|pecuniary resource|assets (generic term)
+cash in on|1
+(verb)|profit (generic term)|gain (generic term)|benefit (generic term)
+cash in one's chips|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+cash machine|1
+(noun)|cash dispenser|automated teller machine|automatic teller machine|automated teller|automatic teller|ATM|machine (generic term)
+cash on delivery|1
+(adv)|C.O.D.|COD
+cash out|1
+(verb)|live (generic term)
+cash price|1
+(noun)|spot price|price (generic term)|terms (generic term)|damage (generic term)
+cash register|1
+(noun)|register|cashbox (generic term)|money box (generic term)|till (generic term)
+cash surrender value|1
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+cashable|1
+(adj)|redeemable|convertible (similar term)|exchangeable (similar term)
+cashbox|1
+(noun)|money box|till|strongbox (generic term)|deedbox (generic term)
+cashcard|1
+(noun)|cash card|credit card (generic term)|charge card (generic term)|charge plate (generic term)
+cashed|1
+(adj)|paid (similar term)
+cashew|2
+(noun)|cashew tree|Anacardium occidentale|nut tree (generic term)
+(noun)|cashew nut|edible nut (generic term)
+cashew nut|1
+(noun)|cashew|edible nut (generic term)
+cashew tree|1
+(noun)|cashew|Anacardium occidentale|nut tree (generic term)
+cashier|4
+(noun)|teller|bank clerk|banker (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|abolish (generic term)|get rid of (generic term)
+(verb)|free (generic term)|discharge (generic term)
+cashier's check|1
+(noun)|treasurer's check|cashier's cheque|treasurer's cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+cashier's cheque|1
+(noun)|cashier's check|treasurer's check|treasurer's cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+cashmere|3
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|wool (generic term)
+(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+cashmere goat|1
+(noun)|Cashmere goat|Kashmir goat|domestic goat (generic term)|Capra hircus (generic term)
+casimir funk|1
+(noun)|Funk|Casimir Funk|biochemist (generic term)
+casing|3
+(noun)|shell|case|housing (generic term)
+(noun)|covering (generic term)
+(noun)|case|framework (generic term)|frame (generic term)|framing (generic term)
+casino|2
+(noun)|gambling casino|gambling house (generic term)|gambling den (generic term)|gambling hell (generic term)|gaming house (generic term)
+(noun)|cassino|card game (generic term)|cards (generic term)
+casino-hotel|2
+(noun)|hotel-casino|place of business (generic term)|business establishment (generic term)
+(noun)|hotel-casino|building (generic term)|edifice (generic term)
+cask|2
+(noun)|caskful|containerful (generic term)
+(noun)|barrel|vessel (generic term)
+casket|3
+(noun)|coffin|box (generic term)
+(noun)|jewel casket|box (generic term)
+(verb)|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+caskful|1
+(noun)|cask|containerful (generic term)
+casmerodius|1
+(noun)|Casmerodius|genus Casmerodius|bird genus (generic term)
+casmerodius albus|1
+(noun)|great white heron|Casmerodius albus|egret (generic term)
+caspar|1
+(noun)|Caspar|Gaspar|sage (generic term)
+caspar bartholin|1
+(noun)|Bartholin|Caspar Bartholin|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+caspase|1
+(noun)|protease (generic term)|peptidase (generic term)|proteinase (generic term)|proteolytic enzyme (generic term)
+caspase-mediated cell death|1
+(noun)|apoptosis|programmed cell death|necrobiosis (generic term)|cell death (generic term)
+casper|1
+(noun)|Casper|city (generic term)|metropolis (generic term)|urban center (generic term)
+caspian|2
+(adj)|Caspian|lake (related term)
+(noun)|Caspian|Caspian Sea|lake (generic term)
+caspian sea|1
+(noun)|Caspian|Caspian Sea|lake (generic term)
+casque|1
+(noun)|helmet (generic term)
+casquet|1
+(noun)|casquetel|casque (generic term)
+casquetel|1
+(noun)|casquet|casque (generic term)
+cass gilbert|1
+(noun)|Gilbert|Cass Gilbert|architect (generic term)|designer (generic term)
+cassandra|1
+(noun)|Cassandra|prophetess (generic term)
+cassareep|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+cassava|3
+(noun)|cassava starch|manioc|manioca|starch (generic term)|amylum (generic term)
+(noun)|manioc|root (generic term)
+(noun)|casava|shrub (generic term)|bush (generic term)
+cassava starch|1
+(noun)|cassava|manioc|manioca|starch (generic term)|amylum (generic term)
+cassegrainian telescope|1
+(noun)|Cassegrainian telescope|Gregorian telescope|reflecting telescope (generic term)|reflector (generic term)
+casserole|1
+(noun)|dish (generic term)
+cassette|1
+(noun)|container (generic term)
+cassette deck|1
+(noun)|tape deck (generic term)
+cassette player|1
+(noun)|electronic equipment (generic term)
+cassette recorder|1
+(noun)|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+cassette tape|1
+(noun)|magnetic tape (generic term)|mag tape (generic term)|tape (generic term)
+cassia|3
+(noun)|tree (generic term)
+(noun)|genus Cassia|Cassia|rosid dicot genus (generic term)
+(noun)|cassia-bark tree|Cinnamomum cassia|laurel (generic term)
+cassia-bark tree|1
+(noun)|cassia|Cinnamomum cassia|laurel (generic term)
+cassia acutifolia|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+cassia alata|1
+(noun)|ringworm bush|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna (generic term)
+cassia augustifolia|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+cassia auriculata|1
+(noun)|avaram|tanner's cassia|Senna auriculata|Cassia auriculata|senna (generic term)
+cassia bark|1
+(noun)|Chinese cinnamon|bark (generic term)
+cassia fasciculata|1
+(noun)|partridge pea|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub (generic term)|suffrutex (generic term)
+cassia fistula|1
+(noun)|golden shower tree|drumstick tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia (generic term)
+cassia grandis|1
+(noun)|pink shower|pink shower tree|horse cassia|Cassia grandis|cassia (generic term)
+cassia javonica|1
+(noun)|rainbow shower|Cassia javonica|cassia (generic term)
+cassia marginata|1
+(noun)|horse cassia|Cassia roxburghii|Cassia marginata|cassia (generic term)
+cassia marilandica|1
+(noun)|wild senna|Senna marilandica|Cassia marilandica|herb (generic term)|herbaceous plant (generic term)
+cassia occidentalis|1
+(noun)|coffee senna|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+cassia roxburghii|1
+(noun)|horse cassia|Cassia roxburghii|Cassia marginata|cassia (generic term)
+cassia tora|1
+(noun)|sicklepod|Senna obtusifolia|Cassia tora|subshrub (generic term)|suffrutex (generic term)
+cassie|1
+(noun)|huisache|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+cassin's kingbird|1
+(noun)|Cassin's kingbird|Tyrannus vociferans|kingbird (generic term)|Tyrannus tyrannus (generic term)
+cassino|1
+(noun)|casino|card game (generic term)|cards (generic term)
+cassiope|1
+(noun)|Cassiope|genus Cassiope|dilleniid dicot genus (generic term)
+cassiope mertensiana|1
+(noun)|white heather|Cassiope mertensiana|heath (generic term)
+cassiopeia|2
+(noun)|Cassiopeia|mythical being (generic term)
+(noun)|Cassiopeia|constellation (generic term)
+cassirer|1
+(noun)|Cassirer|Ernst Cassirer|philosopher (generic term)
+cassiri|1
+(noun)|brew (generic term)|brewage (generic term)
+cassite|2
+(noun)|Kassite|Cassite|natural language (generic term)|tongue (generic term)
+(noun)|Kassite|Cassite|White (generic term)|white person (generic term)|Caucasian (generic term)
+cassiterite|1
+(noun)|mineral (generic term)
+cassius|1
+(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman (generic term)|solon (generic term)|national leader (generic term)
+cassius clay|1
+(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter (generic term)|gladiator (generic term)
+cassius longinus|1
+(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman (generic term)|solon (generic term)|national leader (generic term)
+cassius marcellus clay|1
+(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter (generic term)|gladiator (generic term)
+cassock|1
+(noun)|vestment (generic term)
+cassocked|1
+(adj)|clothed (similar term)|clad (similar term)
+cassowary|1
+(noun)|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+cast|20
+(adj)|formed (similar term)
+(noun)|cast of characters|dramatis personae|gathering (generic term)|assemblage (generic term)
+(noun)|mold|mould|container (generic term)
+(noun)|mold|stamp|solid (generic term)
+(noun)|form|shape|appearance (generic term)|visual aspect (generic term)
+(noun)|plaster cast|plaster bandage|bandage (generic term)|patch (generic term)
+(noun)|casting|copy (generic term)
+(noun)|roll|throw (generic term)
+(noun)|casting|fishing (generic term)|sportfishing (generic term)
+(noun)|hurl|throw (generic term)
+(verb)|project|contrive|throw|send (generic term)|direct (generic term)
+(verb)|give (generic term)
+(verb)|hurl|hurtle|throw (generic term)|cast anchor (related term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|roll|wander|swan|stray|tramp|roam|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|mold|mould|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|shed|cast off|shake off|throw|throw off|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|draw|move (generic term)|go (generic term)
+(verb)|frame|redact|put|couch|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|vomit|vomit up|purge|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+cast-iron|1
+(adj)|iron|robust (similar term)
+cast-iron plant|1
+(noun)|aspidistra|bar-room plant|Aspidistra elatio|herb (generic term)|herbaceous plant (generic term)
+cast-off|1
+(adj)|discarded|throwaway|thrown-away|unwanted (similar term)
+cast about|1
+(verb)|beat about|cast around|research (generic term)|search (generic term)|explore (generic term)
+cast anchor|1
+(verb)|anchor|drop anchor|fasten (generic term)|fix (generic term)|secure (generic term)
+cast around|1
+(verb)|cast about|beat about|research (generic term)|search (generic term)|explore (generic term)
+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 (generic term)|remove (generic term)
+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 (generic term)|remove (generic term)
+cast down|1
+(verb)|depress|deject|get down|dismay|dispirit|demoralize|demoralise|discourage (generic term)|elate (antonym)
+cast iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+cast of characters|1
+(noun)|cast|dramatis personae|gathering (generic term)|assemblage (generic term)
+cast off|2
+(verb)|shed|cast|shake off|throw|throw off|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)|cast on (antonym)
+cast on|1
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)|cast off (antonym)
+cast out|2
+(verb)|banish|ban|ostracize|ostracise|shun|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|throw away|cast away|put away|get rid of (generic term)|remove (generic term)
+castanea|1
+(noun)|Castanea|genus Castanea|hamamelid dicot genus (generic term)
+castanea chrysophylla|1
+(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree (generic term)
+castanea crenata|1
+(noun)|Japanese chestnut|Castanea crenata|chestnut (generic term)|chestnut tree (generic term)
+castanea dentata|1
+(noun)|American chestnut|American sweet chestnut|Castanea dentata|chestnut (generic term)|chestnut tree (generic term)
+castanea mollissima|1
+(noun)|Chinese chestnut|Castanea mollissima|chestnut (generic term)|chestnut tree (generic term)
+castanea ozarkensis|1
+(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut (generic term)|chestnut tree (generic term)
+castanea pumila|1
+(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut (generic term)|chestnut tree (generic term)
+castanea sativa|1
+(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut (generic term)|chestnut tree (generic term)
+castanets|1
+(noun)|bones|clappers|finger cymbals|maraca|percussion instrument (generic term)|percussive instrument (generic term)
+castanopsis|1
+(noun)|Castanopsis|genus Castanopsis|hamamelid dicot genus (generic term)
+castanopsis chrysophylla|1
+(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree (generic term)
+castanospermum|1
+(noun)|Castanospermum|genus Castanospermum|rosid dicot genus (generic term)
+castaway|2
+(noun)|outcast|pariah|Ishmael|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|shipwreck survivor|abandoned person (generic term)
+caste|2
+(noun)|status (generic term)|position (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+caste system|1
+(noun)|class structure (generic term)
+casteless|1
+(adj)|outcaste|unwanted (similar term)
+castellated|1
+(adj)|embattled|battlemented|castled|crenelated|crenellated|crenelate|crenellate|indented|fancy (similar term)
+caster|3
+(noun)|worker (generic term)
+(noun)|castor|shaker (generic term)
+(noun)|castor|roller (generic term)
+caster sugar|1
+(noun)|castor sugar|powdered sugar (generic term)
+castigate|2
+(verb)|chastise|objurgate|chasten|correct|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+(verb)|punish (generic term)|penalize (generic term)|penalise (generic term)
+castigation|2
+(noun)|earful|bawling out|chewing out|upbraiding|going-over|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|chastisement|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+castile|1
+(noun)|Castile|Castilla|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+castile soap|1
+(noun)|soap (generic term)
+castilian|1
+(noun)|Castilian|Spanish (generic term)
+castilla|1
+(noun)|Castile|Castilla|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+castilleia|1
+(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus (generic term)
+castilleja|1
+(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus (generic term)
+castilleja chromosa|1
+(noun)|desert paintbrush|Castilleja chromosa|Indian paintbrush (generic term)|painted cup (generic term)
+castilleja miniata|1
+(noun)|giant red paintbrush|Castilleja miniata|Indian paintbrush (generic term)|painted cup (generic term)
+castilleja sessiliflora|1
+(noun)|great plains paintbrush|Castilleja sessiliflora|Indian paintbrush (generic term)|painted cup (generic term)
+castilleja sulphurea|1
+(noun)|sulfur paintbrush|Castilleja sulphurea|Indian paintbrush (generic term)|painted cup (generic term)
+castillian|1
+(noun)|Castillian|Spaniard (generic term)
+casting|4
+(noun)|cast|copy (generic term)
+(noun)|molding|creating from raw materials (generic term)
+(noun)|cast|fishing (generic term)|sportfishing (generic term)
+(noun)|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+casting lots|1
+(noun)|drawing lots|sortition|decision (generic term)|determination (generic term)|conclusion (generic term)
+casting vote|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+castle|5
+(noun)|palace|mansion (generic term)|mansion house (generic term)|manse (generic term)|hall (generic term)|residence (generic term)
+(noun)|fortification (generic term)|munition (generic term)
+(noun)|rook|chessman (generic term)|chess piece (generic term)
+(noun)|castling|chess move (generic term)
+(verb)|move (generic term)|go (generic term)
+castle in spain|1
+(noun)|reverie|revery|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+castle in the air|1
+(noun)|reverie|revery|daydream|daydreaming|oneirism|air castle|castle in Spain|dream (generic term)|dreaming (generic term)
+castled|1
+(adj)|embattled|battlemented|castellated|crenelated|crenellated|crenelate|crenellate|indented|fancy (similar term)
+castling|1
+(noun)|castle|chess move (generic term)
+castor|5
+(noun)|Castor|Alpha Geminorum|multiple star (generic term)
+(noun)|caster|shaker (generic term)
+(noun)|caster|roller (generic term)
+(noun)|beaver|fur hat (generic term)
+(noun)|Castor|genus Castor|mammal genus (generic term)
+castor-oil plant|1
+(noun)|castor bean plant|palma christi|palma christ|Ricinus communis|shrub (generic term)|bush (generic term)
+castor bean|1
+(noun)|oilseed (generic term)|oil-rich seed (generic term)
+castor bean plant|1
+(noun)|castor-oil plant|palma christi|palma christ|Ricinus communis|shrub (generic term)|bush (generic term)
+castor canadensis|1
+(noun)|New World beaver|Castor canadensis|beaver (generic term)
+castor fiber|1
+(noun)|Old World beaver|Castor fiber|beaver (generic term)
+castor oil|1
+(noun)|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+castor sugar|1
+(noun)|caster sugar|powdered sugar (generic term)
+castoridae|1
+(noun)|Castoridae|family Castoridae|mammal family (generic term)
+castoroides|1
+(noun)|Castoroides|genus Castoroides|mammal genus (generic term)
+castrate|5
+(noun)|eunuch|man (generic term)|adult male (generic term)
+(verb)|emasculate|weaken (generic term)
+(verb)|bowdlerize|bowdlerise|expurgate|shorten|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+(verb)|emasculate|demasculinize|demasculinise|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+(verb)|alter|neuter|spay|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+castrated|1
+(adj)|unsexed|altered (similar term)|neutered (similar term)|cut (similar term)|emasculated (similar term)|gelded (similar term)|spayed (similar term)|uncastrated (antonym)
+castration|3
+(noun)|emasculation|neutering (generic term)|fixing (generic term)|altering (generic term)
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|expurgation|deletion (generic term)
+castration anxiety|1
+(noun)|anxiety (generic term)|anxiousness (generic term)
+castrato|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+castries|1
+(noun)|Castries|national capital (generic term)|port (generic term)
+castro|1
+(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist (generic term)
+castroism|1
+(noun)|Castroism|communism (generic term)
+casual|9
+(adj)|insouciant|nonchalant|unconcerned (similar term)
+(adj)|unplanned (similar term)
+(adj)|everyday|informal (similar term)
+(adj)|accidental|chance|unplanned (similar term)
+(adj)|cursory|passing|perfunctory|careless (similar term)
+(adj)|occasional|irregular (similar term)
+(adj)|fooling|light (similar term)
+(adj)|free-and-easy|informal (similar term)
+(adj)|effortless|easy (similar term)
+casually|1
+(adv)|nonchalantly
+casualness|1
+(noun)|familiarity|informality (generic term)
+casualty|4
+(noun)|victim (generic term)
+(noun)|injured party|victim (generic term)
+(noun)|fatal accident|fatality (generic term)|human death (generic term)|accident (generic term)
+(noun)|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+casualty care research center|1
+(noun)|Casualty Care Research Center|CCRC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+casuaridae|1
+(noun)|Casuaridae|family Casuaridae|bird family (generic term)
+casuariiformes|1
+(noun)|Casuariiformes|order Casuariiformes|animal order (generic term)
+casuarina|1
+(noun)|tree (generic term)
+casuarina equisetfolia|1
+(noun)|Australian pine|Casuarina equisetfolia|beefwood (generic term)
+casuarinaceae|1
+(noun)|Casuarinaceae|family Casuarinaceae|dicot family (generic term)|magnoliopsid family (generic term)
+casuarinales|1
+(noun)|Casuarinales|order Casuarinales|plant order (generic term)
+casuarius|1
+(noun)|Casuarius|genus Casuarius|bird genus (generic term)
+casuist|1
+(noun)|sophist|reasoner (generic term)|ratiocinator (generic term)
+casuistic|2
+(adj)|casuistical|argumentation|logical argument|line of reasoning|line (related term)
+(adj)|casuistical|ethics|moral philosophy (related term)
+casuistical|2
+(adj)|casuistic|argumentation|logical argument|line of reasoning|line (related term)
+(adj)|casuistic|ethics|moral philosophy (related term)
+casuistry|2
+(noun)|argumentation (generic term)|logical argument (generic term)|line of reasoning (generic term)|line (generic term)
+(noun)|ethics (generic term)|moral philosophy (generic term)
+casus belli|1
+(noun)|beginning (generic term)
+cat|10
+(noun)|true cat|feline (generic term)|felid (generic term)
+(noun)|guy|hombre|bozo|man (generic term)|adult male (generic term)
+(noun)|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)|woman (generic term)|adult female (generic term)
+(noun)|kat|khat|qat|quat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+(noun)|cat-o'-nine-tails|whip (generic term)
+(noun)|Caterpillar|tracked vehicle (generic term)
+(noun)|big cat|feline (generic term)|felid (generic term)
+(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+cat's-claw|1
+(noun)|catclaw|black bead|Pithecellodium unguis-cati|shrub (generic term)|bush (generic term)
+cat's-ear|2
+(noun)|liliaceous plant (generic term)
+(noun)|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed (generic term)
+cat's-paw|2
+(noun)|instrument|pawn|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|hitch (generic term)
+cat's-tail|1
+(noun)|bullrush|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail (generic term)
+cat's cradle|1
+(noun)|child's game (generic term)
+cat's eye|1
+(noun)|opaque gem (generic term)
+cat's feet|1
+(noun)|cat's foot|pussytoes|Antennaria dioica|herb (generic term)|herbaceous plant (generic term)
+cat's foot|1
+(noun)|cat's feet|pussytoes|Antennaria dioica|herb (generic term)|herbaceous plant (generic term)
+cat-like|1
+(adj)|catlike|animal (similar term)
+cat-o'-nine-tails|1
+(noun)|cat|whip (generic term)
+cat and mouse|1
+(noun)|cat and rat|child's game (generic term)
+cat and rat|1
+(noun)|cat and mouse|child's game (generic term)
+cat bear|1
+(noun)|lesser panda|red panda|panda|bear cat|Ailurus fulgens|procyonid (generic term)
+cat box|1
+(noun)|receptacle (generic term)
+cat burglar|1
+(noun)|housebreaker|burglar (generic term)
+cat chow|1
+(noun)|cat food|petfood (generic term)|pet-food (generic term)|pet food (generic term)
+cat cracker|1
+(noun)|catalytic cracker|chemical reactor (generic term)
+cat fancier|1
+(noun)|animal fancier (generic term)
+cat flea|1
+(noun)|Ctenocephalides felis|flea (generic term)
+cat food|1
+(noun)|cat chow|petfood (generic term)|pet-food (generic term)|pet food (generic term)
+cat rig|1
+(noun)|rig (generic term)|rigging (generic term)
+cat scan|1
+(noun)|scan|CAT scan|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+cat scanner|1
+(noun)|computerized axial tomography scanner|CAT scanner|tomograph (generic term)
+cat scratch disease|1
+(noun)|disease (generic term)
+cat shark|1
+(noun)|shark (generic term)
+cat sleep|1
+(noun)|nap|catnap|forty winks|short sleep|snooze|sleeping (generic term)
+cat squirrel|2
+(noun)|red squirrel|Sciurus vulgaris|tree squirrel (generic term)
+(noun)|eastern grey squirrel|eastern gray squirrel|Sciurus carolinensis|tree squirrel (generic term)
+cat suit|1
+(noun)|leotard|unitard|body suit|garment (generic term)
+cat thyme|1
+(noun)|marum|Teucrium marum|germander (generic term)
+cat valium|1
+(noun)|K|jet|super acid|special K|honey oil|green|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+cata-cornered|1
+(adj)|catacorner|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique (similar term)
+catabatic|1
+(adj)|katabatic|anabatic (antonym)
+catabatic wind|1
+(noun)|katabatic wind|wind (generic term)|air current (generic term)|current of air (generic term)
+catabiosis|1
+(noun)|aging (generic term)|ageing (generic term)|senescence (generic term)
+catabolic|2
+(adj)|katabolic|organic process|biological process (related term)
+(adj)|katabolic|destructive-metabolic (similar term)|energy-releasing (similar term)|anabolic (antonym)
+catabolise|1
+(verb)|catabolize|oxidize (generic term)|oxidise (generic term)|oxidate (generic term)
+catabolism|1
+(noun)|katabolism|dissimilation|destructive metabolism|organic process (generic term)|biological process (generic term)|anabolism (antonym)
+catabolize|1
+(verb)|catabolise|oxidize (generic term)|oxidise (generic term)|oxidate (generic term)
+catacala|1
+(noun)|Catacala|genus Catacala|arthropod genus (generic term)
+catachresis|1
+(noun)|rhetorical device (generic term)
+catachrestic|1
+(adj)|catachrestical|rhetorical device (related term)
+catachrestical|1
+(adj)|catachrestic|rhetorical device (related term)
+cataclinal|1
+(adj)|anaclinal (antonym)
+cataclysm|2
+(noun)|catastrophe|geological phenomenon (generic term)
+(noun)|calamity|catastrophe|disaster|tragedy|misfortune (generic term)|bad luck (generic term)
+cataclysmal|1
+(adj)|cataclysmic|destructive (similar term)
+cataclysmic|1
+(adj)|cataclysmal|destructive (similar term)
+catacomb|1
+(noun)|tunnel (generic term)
+catacorner|1
+(adj)|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique (similar term)
+catadromous|1
+(adj)|diadromous (antonym)|anadromous (antonym)
+catafalque|1
+(noun)|bier (generic term)
+cataflam|1
+(noun)|diclofenac potassium|Cataflam|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+catalan|4
+(adj)|Catalan|district|territory|territorial dominion|dominion (related term)
+(adj)|Catalan|Romance|Romance language|Latinian language (related term)
+(noun)|Catalan|Spaniard (generic term)
+(noun)|Catalan|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+catalase|1
+(noun)|enzyme (generic term)
+catalatic|1
+(adj)|enzyme (related term)
+catalectic|2
+(adj)|hypercatalectic (antonym)|acatalectic (antonym)
+(noun)|line of poetry (generic term)|line of verse (generic term)
+catalepsy|1
+(noun)|hypersomnia (generic term)
+cataleptic|2
+(adj)|hypersomnia (related term)
+(noun)|psychotic (generic term)|psychotic person (generic term)|psycho (generic term)
+catalexis|1
+(noun)|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+catalina cherry|1
+(noun)|Catalina cherry|Prunus lyonii|cherry (generic term)|cherry tree (generic term)
+catalina island|1
+(noun)|Santa Catalina|Catalina Island|island (generic term)
+catalog|4
+(noun)|catalogue|book (generic term)
+(noun)|catalogue|list (generic term)|listing (generic term)
+(verb)|catalogue|compose (generic term)|compile (generic term)
+(verb)|catalogue|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+catalog buying|1
+(noun)|mail-order buying|buying (generic term)|purchasing (generic term)
+cataloged procedure|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+cataloger|1
+(noun)|cataloguer|librarian (generic term)|bibliothec (generic term)
+catalogue|4
+(noun)|catalog|list (generic term)|listing (generic term)
+(noun)|catalog|book (generic term)
+(verb)|catalog|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|catalog|compose (generic term)|compile (generic term)
+catalogued|1
+(adj)|listed (similar term)
+cataloguer|1
+(noun)|cataloger|librarian (generic term)|bibliothec (generic term)
+catalonia|1
+(noun)|Catalonia|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+catalpa|1
+(noun)|Indian bean|bean tree (generic term)
+catalpa bignioides|1
+(noun)|Catalpa bignioides|catalpa (generic term)|Indian bean (generic term)
+catalpa speciosa|1
+(noun)|Catalpa speciosa|catalpa (generic term)|Indian bean (generic term)
+catalufa|1
+(noun)|Priacanthus arenatus|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+catalyse|1
+(verb)|catalyze|change state (generic term)|turn (generic term)
+catalysis|1
+(noun)|contact action|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+catalyst|2
+(noun)|accelerator|activator (generic term)|anticatalyst (antonym)
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+catalytic|1
+(adj)|chemical process|chemical change|chemical action (related term)
+catalytic converter|1
+(noun)|converter (generic term)|convertor (generic term)
+catalytic cracker|1
+(noun)|cat cracker|chemical reactor (generic term)
+catalyze|1
+(verb)|catalyse|change state (generic term)|turn (generic term)
+catamaran|1
+(noun)|sailboat (generic term)|sailing boat (generic term)
+catamenia|1
+(noun)|menstruation|menses|menstruum|period|flow|discharge (generic term)|emission (generic term)|expelling (generic term)
+catamenial|1
+(adj)|menstrual|discharge|emission|expelling (related term)
+catamite|1
+(noun)|male child (generic term)|boy (generic term)
+catamount|2
+(noun)|lynx|wildcat (generic term)
+(noun)|cougar|puma|mountain lion|painter|panther|Felis concolor|wildcat (generic term)
+catamountain|1
+(noun)|European wildcat|Felis silvestris|wildcat (generic term)
+catananche|1
+(noun)|flower (generic term)
+catananche caerula|1
+(noun)|blue succory|cupid's dart|Catananche caerula|catananche (generic term)
+cataphasia|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+cataphatic|1
+(adj)|religion|faith|religious belief (related term)
+cataphatism|1
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)|apophatism (antonym)|doctrine of analogy (antonym)
+cataphoresis|1
+(noun)|electrophoresis|dielectrolysis|ionophoresis|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+cataphoretic|1
+(adj)|electrophoretic|natural process|natural action|action|activity (related term)
+cataphract|1
+(noun)|body armor|body armour|suit of armor|suit of armour|coat of mail|armor (generic term)|armour (generic term)
+cataphyll|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+cataplasia|1
+(noun)|degeneration (generic term)|retrogression (generic term)
+cataplasm|1
+(noun)|poultice|plaster|dressing (generic term)|medical dressing (generic term)
+cataplastic|1
+(adj)|degeneration|retrogression (related term)
+catapres|1
+(noun)|clonidine|Catapres|antihypertensive (generic term)|antihypertensive drug (generic term)
+catapult|5
+(noun)|slingshot|sling|plaything (generic term)|toy (generic term)
+(noun)|launcher|device (generic term)
+(noun)|arbalest|arbalist|ballista|bricole|mangonel|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|sling|hurl (generic term)|hurtle (generic term)|cast (generic term)
+catapultian|1
+(adj)|catapultic|artillery|heavy weapon|gun|ordnance (related term)
+catapultic|1
+(adj)|catapultian|artillery|heavy weapon|gun|ordnance (related term)
+cataract|2
+(noun)|eye disease (generic term)
+(noun)|waterfall (generic term)|falls (generic term)
+cataract canyon|1
+(noun)|Cataract Canyon|gorge (generic term)
+catarrh|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+catarrhal|1
+(adj)|inflammation|redness|rubor (related term)
+catarrhal fever|1
+(noun)|animal disease (generic term)
+catarrhine|2
+(adj)|catarrhinian|leptorrhine (antonym)|platyrrhine (antonym)
+(noun)|Old World monkey|monkey (generic term)
+catarrhinian|1
+(adj)|catarrhine|leptorrhine (antonym)|platyrrhine (antonym)
+catasetum|1
+(noun)|Catasetum|genus Catasetum|monocot genus (generic term)|liliopsid genus (generic term)
+catasetum macrocarpum|1
+(noun)|jumping orchid|Catasetum macrocarpum|orchid (generic term)|orchidaceous plant (generic term)
+catastrophe|3
+(noun)|calamity|disaster|tragedy|cataclysm|misfortune (generic term)|bad luck (generic term)
+(noun)|disaster|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|cataclysm|geological phenomenon (generic term)
+catastrophic|1
+(adj)|ruinous|harmful (similar term)
+catastrophic illness|1
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+catatonia|2
+(noun)|tonicity (generic term)|tonus (generic term)|tone (generic term)
+(noun)|catatonic schizophrenia|catatonic type schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+catatonic|1
+(adj)|tonicity|tonus|tone (related term)
+catatonic schizophrenia|1
+(noun)|catatonic type schizophrenia|catatonia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+catatonic type schizophrenia|1
+(noun)|catatonic schizophrenia|catatonia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+catawba|3
+(noun)|Catawba|Sioux (generic term)|Siouan (generic term)
+(noun)|Catawba|fox grape (generic term)
+(noun)|Catawba|Siouan (generic term)|Siouan language (generic term)
+catbird|2
+(noun)|bowerbird|oscine (generic term)|oscine bird (generic term)
+(noun)|grey catbird|gray catbird|Dumetella carolinensis|oscine (generic term)|oscine bird (generic term)
+catboat|1
+(noun)|sailboat (generic term)|sailing boat (generic term)
+catbrier|1
+(noun)|bullbrier|greenbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine (generic term)
+catcall|2
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|deride (generic term)
+catch|38
+(noun)|gimmick|drawback (generic term)
+(noun)|haul|indefinite quantity (generic term)
+(noun)|match|adult (generic term)|grownup (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|stop|restraint (generic term)|constraint (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|game (generic term)
+(noun)|grab|snatch|snap|touch (generic term)|touching (generic term)
+(noun)|apprehension|arrest|collar|pinch|taking into custody|capture (generic term)|gaining control (generic term)|seizure (generic term)
+(verb)|surprise (generic term)
+(verb)|pick up|perceive (generic term)|comprehend (generic term)
+(verb)|get|hit (generic term)
+(verb)|grab|take hold of|seize (generic term)|prehend (generic term)|clutch (generic term)|catch up (related term)
+(verb)|get|capture|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|hitch|attach (generic term)|unhitch (antonym)
+(verb)|arrest|get|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|capture|get (generic term)|acquire (generic term)
+(verb)|board (generic term)|get on (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|overtake|catch up with
+(verb)|change (generic term)
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|take in|overhear|hear (generic term)
+(verb)|watch|view|see|take in|watch (generic term)
+(verb)|trip up|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)
+(verb)|get|understand (generic term)
+(verb)|contract (generic term)|take (generic term)|get (generic term)
+(verb)|erupt (generic term)|ignite (generic term)|catch fire (generic term)|take fire (generic term)|combust (generic term)|conflagrate (generic term)
+(verb)|get|hear (generic term)
+(verb)|get|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|capture|enamour|trance|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+(verb)|get|reproduce (generic term)
+(verb)|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|spread (generic term)|propagate (generic term)
+(verb)|play (generic term)
+(verb)|witness (generic term)|find (generic term)|see (generic term)
+(verb)|delay (generic term)|detain (generic term)|hold up (generic term)
+catch a glimpse|1
+(verb)|get a look|see (generic term)
+catch a wink|1
+(verb)|nap|catnap|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+catch cold|1
+(verb)|catch (generic term)
+catch crop|1
+(noun)|crop (generic term)
+catch fire|1
+(verb)|erupt|ignite|take fire|combust|conflagrate|change state (generic term)|turn (generic term)
+catch on|2
+(verb)|get wise|get onto|tumble|latch on|cotton on|twig|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+(verb)|change (generic term)
+catch one's breath|1
+(verb)|rest|breathe|take a breather|pause (generic term)|intermit (generic term)|break (generic term)
+catch out|1
+(verb)|find out|detect (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+catch phrase|1
+(noun)|catchphrase|phrase (generic term)|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+catch some z's|1
+(verb)|sleep|kip|slumber|log Z's|catch some Z's|rest (generic term)|sleep in (related term)|sleep late (related term)|sleep in (related term)|sleep out (related term)|wake (antonym)
+catch up|2
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|learn (generic term)|larn (generic term)|acquire (generic term)
+catch up with|2
+(verb)|overtake|catch
+(verb)|make up|recover (generic term)|recoup (generic term)|recuperate (generic term)
+catchall|1
+(noun)|enclosure (generic term)|receptacle (generic term)
+catcher|2
+(noun)|backstop|infielder (generic term)
+(noun)|position (generic term)
+catcher's mask|1
+(noun)|face mask (generic term)|baseball equipment (generic term)
+catchfly|2
+(noun)|silene|campion|flower (generic term)
+(noun)|lychnis|flower (generic term)
+catching|4
+(adj)|communicable|contagious|contractable|transmissible|transmittable|infectious (similar term)
+(noun)|playing (generic term)
+(noun)|detection|espial|spying|spotting|discovery (generic term)|find (generic term)|uncovering (generic term)
+(noun)|contracting|acquiring (generic term)|getting (generic term)
+catchment|1
+(noun)|structure (generic term)|construction (generic term)
+catchment area|1
+(noun)|catchment basin|drainage area|drainage basin|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+catchment basin|1
+(noun)|catchment area|drainage area|drainage basin|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+catchpenny|1
+(adj)|cheap (similar term)|inexpensive (similar term)
+catchphrase|1
+(noun)|catch phrase|phrase (generic term)|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+catchweed|1
+(noun)|cleavers|clivers|goose grass|spring cleavers|Galium aparine|bedstraw (generic term)
+catchword|2
+(noun)|motto|slogan|shibboleth|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|guide word|guideword|word (generic term)
+catchy|2
+(adj)|tricky|difficult (similar term)|hard (similar term)
+(adj)|attention-getting|appealing (similar term)
+catclaw|1
+(noun)|cat's-claw|black bead|Pithecellodium unguis-cati|shrub (generic term)|bush (generic term)
+catechesis|1
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+catechetic|2
+(adj)|catechistic|interrogation|examination|interrogatory (related term)
+(adj)|catechetical|teaching|instruction|pedagogy (related term)
+catechetical|1
+(adj)|catechetic|teaching|instruction|pedagogy (related term)
+catechetical instruction|1
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+catechin|1
+(noun)|tannin (generic term)|tannic acid (generic term)
+catechise|2
+(verb)|catechize|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|catechize|examine (generic term)
+catechism|2
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+(noun)|book (generic term)
+catechismal|1
+(adj)|book (related term)
+catechist|1
+(noun)|teacher (generic term)|instructor (generic term)
+catechistic|1
+(adj)|catechetic|interrogation|examination|interrogatory (related term)
+catechize|2
+(verb)|catechise|examine (generic term)
+(verb)|catechise|teach (generic term)|learn (generic term)|instruct (generic term)
+catecholamine|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+catechu|2
+(noun)|black catechu|infusion (generic term)|extract (generic term)
+(noun)|Jerusalem thorn|Acacia catechu|acacia (generic term)
+catechumen|1
+(noun)|neophyte|student (generic term)|pupil (generic term)|educatee (generic term)
+categorem|1
+(noun)|categoreme|term (generic term)|syncategoreme (antonym)|syncategorem (antonym)
+categorematic|1
+(adj)|autosemantic (similar term)|syncategorematic (antonym)
+categoreme|1
+(noun)|categorem|term (generic term)|syncategoreme (antonym)|syncategorem (antonym)
+categorial|1
+(adj)|concept|conception|construct (related term)
+categoric|2
+(adj)|categorical|collection|aggregation|accumulation|assemblage (related term)
+(adj)|categorical|flat|unconditional|unqualified (similar term)
+categorical|2
+(adj)|categoric|collection|aggregation|accumulation|assemblage (related term)
+(adj)|categoric|flat|unconditional|unqualified (similar term)
+categorical imperative|1
+(noun)|moral principle (generic term)
+categorically|1
+(adv)|flatly|unconditionally
+categorisation|3
+(noun)|classification|categorization|arrangement (generic term)
+(noun)|classification|categorization|sorting|basic cognitive process (generic term)
+(noun)|categorization|classification|compartmentalization|compartmentalisation|assortment|grouping (generic term)
+categorise|1
+(verb)|categorize|reason (generic term)
+categorised|1
+(adj)|categorized|classified (similar term)
+categorization|3
+(noun)|classification|categorisation|arrangement (generic term)
+(noun)|classification|categorisation|sorting|basic cognitive process (generic term)
+(noun)|categorisation|classification|compartmentalization|compartmentalisation|assortment|grouping (generic term)
+categorize|1
+(verb)|categorise|reason (generic term)
+categorized|1
+(adj)|categorised|classified (similar term)
+category|2
+(noun)|class|family|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+catena|1
+(noun)|chain (generic term)|concatenation (generic term)
+catenary|1
+(noun)|curve (generic term)|curved shape (generic term)
+catenate|1
+(verb)|catenulate|arrange (generic term)|set up (generic term)
+catenulate|2
+(adj)|chainlike|formed (similar term)
+(verb)|catenate|arrange (generic term)|set up (generic term)
+cater|2
+(verb)|provide|supply|ply|give (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+cater-cornered|1
+(adj)|catacorner|cata-cornered|catercorner|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique (similar term)
+catercorner|1
+(adj)|catacorner|cata-cornered|cater-cornered|catty-corner|catty-cornered|kitty-corner|kitty-cornered|oblique (similar term)
+caterer|1
+(noun)|supplier (generic term)|provider (generic term)
+catering|1
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+caterpillar|2
+(noun)|larva (generic term)
+(noun)|Caterpillar|cat|tracked vehicle (generic term)
+caterpillar-tracked|1
+(adj)|tracked (similar term)
+caterpillar track|1
+(noun)|track|caterpillar tread|belt (generic term)
+caterpillar tread|1
+(noun)|track|caterpillar track|belt (generic term)
+caterwaul|2
+(noun)|cry (generic term)
+(verb)|yowl|shriek (generic term)|shrill (generic term)|pipe up (generic term)|pipe (generic term)
+catfish|3
+(noun)|mudcat|freshwater fish (generic term)
+(noun)|wolffish|wolf fish|blennioid fish (generic term)|blennioid (generic term)
+(noun)|siluriform fish|soft-finned fish (generic term)|malacopterygian (generic term)
+catgut|2
+(noun)|goat's rue|wild sweet pea|Tephrosia virginiana|hoary pea (generic term)
+(noun)|gut|cord (generic term)
+catha|1
+(noun)|Catha|genus Catha|gymnosperm genus (generic term)
+catha edulis|1
+(noun)|Catha edulis|shrub (generic term)|bush (generic term)
+catharacta|1
+(noun)|Catharacta|genus Catharacta|bird genus (generic term)
+catharacta skua|1
+(noun)|great skua|Catharacta skua|skua (generic term)|bonxie (generic term)
+catharanthus|1
+(noun)|Catharanthus|genus Catharanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+catharanthus roseus|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+cathari|1
+(noun)|Albigenses|Cathars|Cathari|sect (generic term)|religious sect (generic term)|religious order (generic term)
+catharism|1
+(noun)|Albigensianism|Catharism|Christianity (generic term)|Christian religion (generic term)|heresy (generic term)|unorthodoxy (generic term)
+cathars|1
+(noun)|Albigenses|Cathars|Cathari|sect (generic term)|religious sect (generic term)|religious order (generic term)
+catharsis|2
+(noun)|katharsis|abreaction|purge (generic term)|purging (generic term)
+(noun)|katharsis|purgation|purge (generic term)|purging (generic term)
+cathartes|1
+(noun)|Cathartes|genus Cathartes|bird genus (generic term)
+cathartes aura|1
+(noun)|buzzard|turkey buzzard|turkey vulture|Cathartes aura|New World vulture (generic term)|cathartid (generic term)
+cathartic|4
+(adj)|psychotherapeutic|healthful (similar term)
+(adj)|releasing|emotional (similar term)
+(adj)|evacuant|purgative|laxative (similar term)
+(noun)|purgative|physic|aperient|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+cathartid|1
+(noun)|New World vulture|vulture (generic term)
+cathartidae|1
+(noun)|Cathartidae|family Cathartidae|bird family (generic term)
+cathay|1
+(noun)|Cathay|China (generic term)|People's Republic of China (generic term)|mainland China (generic term)|Communist China (generic term)|Red China (generic term)|PRC (generic term)
+cathaya|1
+(noun)|Cathaya|conifer (generic term)|coniferous tree (generic term)
+cathect|1
+(verb)|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+cathectic|1
+(adj)|libidinal energy (related term)
+cathedra|1
+(noun)|bishop's throne|throne (generic term)
+cathedral|3
+(adj)|throne (related term)
+(noun)|church (generic term)|church building (generic term)
+(noun)|duomo|church (generic term)|church building (generic term)
+cather|1
+(noun)|Cather|Willa Cather|Willa Sibert Cather|writer (generic term)|author (generic term)
+catherine|2
+(noun)|Catherine of Aragon|Catherine|wife (generic term)|married woman (generic term)
+(noun)|Catherine II|Catherine|Catherine the Great|empress (generic term)
+catherine de medicis|1
+(noun)|Catherine de Medicis|queen (generic term)|regent (generic term)
+catherine howard|1
+(noun)|Howard|Catherine Howard|queen (generic term)
+catherine i|1
+(noun)|Catherine I|empress (generic term)
+catherine ii|1
+(noun)|Catherine II|Catherine|Catherine the Great|empress (generic term)
+catherine of aragon|1
+(noun)|Catherine of Aragon|Catherine|wife (generic term)|married woman (generic term)
+catherine parr|1
+(noun)|Parr|Catherine Parr|queen (generic term)
+catherine the great|1
+(noun)|Catherine II|Catherine|Catherine the Great|empress (generic term)
+catherine wheel|1
+(noun)|pinwheel|firework (generic term)|pyrotechnic (generic term)
+catheter|1
+(noun)|tube (generic term)|tubing (generic term)
+catheterisation|1
+(noun)|catheterization|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+catheterise|1
+(verb)|catheterize|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+catheterization|1
+(noun)|catheterisation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+catheterize|1
+(verb)|catheterise|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+cathexis|1
+(noun)|charge|libidinal energy (generic term)
+cathode|2
+(noun)|electrode (generic term)|anode (antonym)
+(noun)|terminal (generic term)|terminus (generic term)|depot (generic term)|anode (antonym)
+cathode-ray oscilloscope|1
+(noun)|oscilloscope|scope|CRO|electronic equipment (generic term)
+cathode-ray tube|1
+(noun)|CRT|gas-discharge tube (generic term)
+cathode ray|1
+(noun)|beam (generic term)|ray (generic term)|electron beam (generic term)
+cathodic|1
+(adj)|electrode (related term)|anodic (antonym)
+catholic|3
+(adj)|Catholic|Christianity|Christian religion (related term)
+(adj)|broad-minded (similar term)
+(noun)|Catholic|Christian (generic term)
+catholic church|1
+(noun)|Catholic Church|church (generic term)|Christian church (generic term)
+catholic pope|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+catholic reaction force|1
+(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+catholic school|1
+(noun)|Catholic school|church school (generic term)|parochial school (generic term)
+catholicise|1
+(verb)|catholicize|latinize|latinise|convert (generic term)
+catholicism|1
+(noun)|Catholicism|Catholicity|Christianity (generic term)|Christian religion (generic term)
+catholicity|2
+(noun)|Catholicism|Catholicity|Christianity (generic term)|Christian religion (generic term)
+(noun)|universality|generality (generic term)
+catholicize|1
+(verb)|catholicise|latinize|latinise|convert (generic term)
+catholicon|1
+(noun)|panacea|nostrum|cure-all|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+catholicos|1
+(noun)|Catholicos|spiritual leader (generic term)
+cathouse|1
+(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|sporting house|building (generic term)|edifice (generic term)
+cation|1
+(noun)|ion (generic term)
+cationic|1
+(adj)|ion (related term)|anionic (antonym)
+cationic detergent|1
+(noun)|invert soap|detergent (generic term)
+catjang pea|1
+(noun)|pigeon pea|pigeon-pea plant|cajan pea|red gram|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+catkin|1
+(noun)|ament|inflorescence (generic term)
+catkinate|1
+(adj)|inflorescence (related term)
+catlike|1
+(adj)|cat-like|animal (similar term)
+catling|1
+(noun)|surgical knife (generic term)
+catmint|1
+(noun)|catnip|Nepeta cataria|herb (generic term)|herbaceous plant (generic term)
+catnap|2
+(noun)|nap|cat sleep|forty winks|short sleep|snooze|sleeping (generic term)
+(verb)|nap|catch a wink|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+catnip|1
+(noun)|catmint|Nepeta cataria|herb (generic term)|herbaceous plant (generic term)
+catocala nupta|1
+(noun)|red underwing|Catocala nupta|underwing (generic term)
+catoptric|1
+(adj)|catoptrical|optics (related term)
+catoptrical|1
+(adj)|catoptric|optics (related term)
+catoptrics|1
+(noun)|optics (generic term)
+catoptrophorus|1
+(noun)|Catoptrophorus|genus Catoptrophorus|bird genus (generic term)
+catoptrophorus semipalmatus|1
+(noun)|willet|Catoptrophorus semipalmatus|tattler (generic term)
+catostomid|1
+(noun)|cypriniform fish (generic term)
+catostomidae|1
+(noun)|Catostomidae|family Catostomidae|fish family (generic term)
+catostomus|1
+(noun)|Catostomus|genus Catostomus|fish genus (generic term)
+catskill mountains|1
+(noun)|Catskills|Catskill Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+catskills|1
+(noun)|Catskills|Catskill Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+catsup|1
+(noun)|ketchup|cetchup|tomato ketchup|condiment (generic term)
+catsup bottle|1
+(noun)|ketchup bottle|bottle (generic term)
+cattail|1
+(noun)|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+cattail family|1
+(noun)|Typhaceae|family Typhaceae|monocot family (generic term)|liliopsid family (generic term)
+cattail millet|1
+(noun)|pearl millet|bulrush millet|Pennisetum glaucum|Pennisetum Americanum|cereal (generic term)|cereal grass (generic term)
+cattalo|1
+(noun)|beefalo|beef (generic term)|beef cattle (generic term)
+cattell|2
+(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist (generic term)
+(noun)|Cattell|James McKeen Cattell|psychologist (generic term)|editor (generic term)|editor in chief (generic term)
+cattie|1
+(noun)|catty|weight unit (generic term)|weight (generic term)
+cattiness|1
+(noun)|bitchiness|spite|spitefulness|nastiness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+cattish|1
+(adj)|bitchy|catty|malicious (similar term)
+cattle|1
+(noun)|cows|kine|oxen|Bos taurus|bovine (generic term)
+cattle boat|1
+(noun)|cattleship|cargo ship (generic term)|cargo vessel (generic term)
+cattle breeding|1
+(noun)|breeding (generic term)
+cattle cake|1
+(noun)|feed (generic term)|provender (generic term)
+cattle car|1
+(noun)|freight car (generic term)
+cattle drive|1
+(noun)|drive (generic term)
+cattle egret|1
+(noun)|Bubulcus ibis|egret (generic term)
+cattle farm|1
+(noun)|ranch|spread|cattle ranch|farm (generic term)
+cattle grid|1
+(noun)|cattle guard|bridge (generic term)|span (generic term)
+cattle guard|1
+(noun)|cattle grid|bridge (generic term)|span (generic term)
+cattle pen|1
+(noun)|cow pen|corral|pen (generic term)
+cattle plague|1
+(noun)|rinderpest|animal disease (generic term)
+cattle ranch|1
+(noun)|ranch|spread|cattle farm|farm (generic term)
+cattle thief|1
+(noun)|rustler|thief (generic term)|stealer (generic term)
+cattle trail|1
+(noun)|trail (generic term)
+cattleman|2
+(noun)|cow man|beef man|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+(noun)|cowboy|cowpuncher|puncher|cowman|cowpoke|cowhand|cowherd|ranch hand (generic term)
+cattleship|1
+(noun)|cattle boat|cargo ship (generic term)|cargo vessel (generic term)
+cattley guava|1
+(noun)|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree (generic term)
+cattleya|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+cattleya citrina|1
+(noun)|tulip orchid|Encyclia citrina|Cattleya citrina|orchid (generic term)|orchidaceous plant (generic term)
+catty|2
+(adj)|bitchy|cattish|malicious (similar term)
+(noun)|cattie|weight unit (generic term)|weight (generic term)
+catty-corner|1
+(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-cornered|kitty-corner|kitty-cornered|oblique (similar term)
+catty-cornered|1
+(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|kitty-corner|kitty-cornered|oblique (similar term)
+catullus|1
+(noun)|Catullus|Gaius Valerius Catullus|poet (generic term)
+catwalk|2
+(noun)|platform (generic term)
+(noun)|walk (generic term)|walkway (generic term)|paseo (generic term)
+caucasia|1
+(noun)|Caucasia|Caucasus|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+caucasian|4
+(adj)|Caucasian|Caucasic|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|Caucasian|Caucasoid|white (similar term)
+(noun)|White|white person|Caucasian|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Caucasian|Caucasian language|natural language (generic term)|tongue (generic term)
+caucasian language|1
+(noun)|Caucasian|Caucasian language|natural language (generic term)|tongue (generic term)
+caucasian race|1
+(noun)|White race|White people|Caucasoid race|Caucasian race|race (generic term)
+caucasian walnut|1
+(noun)|Caucasian walnut|Pterocarya fraxinifolia|wing nut (generic term)|wing-nut (generic term)
+caucasic|1
+(adj)|Caucasian|Caucasic|geographical area|geographic area|geographical region|geographic region (related term)
+caucasoid|1
+(adj)|Caucasian|Caucasoid|white (similar term)
+caucasoid race|1
+(noun)|White race|White people|Caucasoid race|Caucasian race|race (generic term)
+caucasus|2
+(noun)|Caucasus|Caucasus Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+(noun)|Caucasia|Caucasus|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+caucasus mountains|1
+(noun)|Caucasus|Caucasus Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+caucus|2
+(noun)|meeting (generic term)|group meeting (generic term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+cauda|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+caudal|4
+(adj)|process|outgrowth|appendage (related term)|cephalic (antonym)
+(adj)|taillike|caudate (similar term)|caudated (similar term)
+(adj)|posterior (similar term)
+(adv)|caudally
+caudal anaesthesia|1
+(noun)|caudal anesthesia|caudal block|regional anesthesia (generic term)|regional anaesthesia (generic term)
+caudal anesthesia|1
+(noun)|caudal anaesthesia|caudal block|regional anesthesia (generic term)|regional anaesthesia (generic term)
+caudal appendage|1
+(noun)|tail (generic term)
+caudal block|1
+(noun)|caudal anesthesia|caudal anaesthesia|regional anesthesia (generic term)|regional anaesthesia (generic term)
+caudal fin|1
+(noun)|tail fin|fin (generic term)
+caudal vertebra|1
+(noun)|coccygeal vertebra|vertebra (generic term)
+caudally|1
+(adv)|caudal
+caudata|1
+(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order (generic term)
+caudate|4
+(adj)|caudated|bobtail (similar term)|bobtailed (similar term)|caudal (similar term)|taillike (similar term)|tailed (similar term)|scaly-tailed (similar term)|scissor-tailed (similar term)|short-tailed (similar term)|square-tailed (similar term)|stiff-tailed (similar term)|swallow-tailed (similar term)|tail-shaped (similar term)|acaudate (antonym)
+(adj)|simple (similar term)|unsubdivided (similar term)
+(noun)|caudate nucleus|basal ganglion (generic term)
+(noun)|urodele|amphibian (generic term)
+caudate nucleus|1
+(noun)|caudate|basal ganglion (generic term)
+caudated|1
+(adj)|caudate|bobtail (similar term)|bobtailed (similar term)|caudal (similar term)|taillike (similar term)|tailed (similar term)|scaly-tailed (similar term)|scissor-tailed (similar term)|short-tailed (similar term)|square-tailed (similar term)|stiff-tailed (similar term)|swallow-tailed (similar term)|tail-shaped (similar term)|acaudate (antonym)
+caudex|2
+(noun)|stock|stalk (generic term)|stem (generic term)
+(noun)|stalk (generic term)|stem (generic term)
+caudine forks|1
+(noun)|Caudine Forks|pitched battle (generic term)
+caught up|1
+(adj)|involved (similar term)
+caul|2
+(noun)|greater omentum|gastrocolic omentum|omentum (generic term)
+(noun)|veil|embryonic membrane|fetal membrane (generic term)
+cauldron|1
+(noun)|caldron|pot (generic term)
+caulescent|1
+(adj)|cauline|stemmed|cylindrical-stemmed (similar term)|leafy-stemmed (similar term)|multi-stemmed (similar term)|short-stemmed (similar term)|spiny-stemmed (similar term)|stout-stemmed (similar term)|thick-stemmed (similar term)|weak-stemmed (similar term)|wiry-stemmed (similar term)|woolly-stemmed (similar term)|woody-stemmed (similar term)|acaulescent (antonym)
+cauliflower|2
+(noun)|Brassica oleracea botrytis|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|cruciferous vegetable (generic term)
+cauliflower ear|1
+(noun)|auricle (generic term)|pinna (generic term)|ear (generic term)
+cauline|2
+(adj)|caulescent|stemmed|cylindrical-stemmed (similar term)|leafy-stemmed (similar term)|multi-stemmed (similar term)|short-stemmed (similar term)|spiny-stemmed (similar term)|stout-stemmed (similar term)|thick-stemmed (similar term)|weak-stemmed (similar term)|wiry-stemmed (similar term)|woolly-stemmed (similar term)|woody-stemmed (similar term)|acaulescent (antonym)
+(adj)|radical (antonym)
+caulk|2
+(noun)|caulking|sealant (generic term)|sealer (generic term)
+(verb)|calk|seal (generic term)|seal off (generic term)
+caulked|1
+(adj)|chinked (similar term)|stopped-up (similar term)|weather-stripped (similar term)|uncaulked (antonym)
+caulking|1
+(noun)|caulk|sealant (generic term)|sealer (generic term)
+caulophyllum|1
+(noun)|Caulophyllum|genus Caulophyllum|magnoliid dicot genus (generic term)
+caulophyllum thalictrioides|1
+(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+caulophyllum thalictroides|1
+(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+causa|1
+(noun)|lawsuit|suit|case|cause|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+causal|1
+(adj)|causative (similar term)
+causal agency|1
+(noun)|causal agent|cause|physical entity (generic term)
+causal agent|1
+(noun)|cause|causal agency|physical entity (generic term)
+causal factor|1
+(noun)|determinant|determiner|determinative|determining factor|cognitive factor (generic term)
+causalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+causality|1
+(noun)|relation (generic term)
+causation|1
+(noun)|causing|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+causative|1
+(adj)|abortifacient (similar term)|activating (similar term)|actuating (similar term)|anorectic (similar term)|anorexigenic (similar term)|borne in upon (similar term)|causal (similar term)|conducive (similar term)|contributing (similar term)|contributive (similar term)|contributory (similar term)|tributary (similar term)|errhine (similar term)|inductive (similar term)|inducive (similar term)|motivative (similar term)|motive (similar term)|motivating (similar term)|motive (similar term)|motor (similar term)|precipitating (similar term)|responsible (similar term)|responsible for (similar term)|sternutatory (similar term)|sternutative (similar term)|noncausative (antonym)
+cause|7
+(noun)|origin (generic term)|origination (generic term)|inception (generic term)
+(noun)|reason|grounds|justification (generic term)
+(noun)|campaign|crusade|drive|movement|effort|venture (generic term)
+(noun)|causal agent|causal agency|physical entity (generic term)
+(noun)|lawsuit|suit|case|causa|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(verb)|do|make|make (generic term)|create (generic term)
+(verb)|induce|stimulate|have|get|make
+cause celebre|1
+(noun)|incident (generic term)
+cause of action|1
+(noun)|claim (generic term)
+cause of death|1
+(noun)|killer|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+cause to sleep|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|awaken (antonym)
+causeless|2
+(adj)|reasonless|unmotivated (similar term)
+(adj)|fortuitous|uncaused|unintended (similar term)
+causerie|1
+(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+causeway|3
+(noun)|road (generic term)|route (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|pave (generic term)
+causing|1
+(noun)|causation|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+caustic|3
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|sulfurous|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|corrosive|erosive|vitriolic|mordant|destructive (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+caustic lime|1
+(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|calcium hydrate|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+caustic potash|1
+(noun)|potash|potassium hydroxide|hydroxide (generic term)|hydrated oxide (generic term)|lye (generic term)
+caustic remark|1
+(noun)|sarcasm|irony|satire|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+caustic soda|1
+(noun)|sodium hydroxide|hydroxide (generic term)|hydrated oxide (generic term)|lye (generic term)
+caustically|1
+(adv)|vitriolically
+cauterant|1
+(noun)|cautery|instrument (generic term)
+cauterisation|1
+(noun)|cautery|cauterization|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+cauterise|2
+(verb)|cauterize|burn|treat (generic term)|care for (generic term)
+(verb)|callous|cauterize|inure (generic term)|harden (generic term)|indurate (generic term)
+cauterization|1
+(noun)|cautery|cauterisation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+cauterize|2
+(verb)|cauterise|burn|treat (generic term)|care for (generic term)
+(verb)|callous|cauterise|inure (generic term)|harden (generic term)|indurate (generic term)
+cautery|2
+(noun)|cauterant|instrument (generic term)
+(noun)|cauterization|cauterisation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+caution|5
+(noun)|cautiousness|carefulness|attentiveness (generic term)|incaution (antonym)
+(noun)|caveat|warning (generic term)
+(noun)|precaution|care|forethought|judiciousness (generic term)
+(noun)|circumspection|discretion (generic term)|discernment (generic term)
+(verb)|admonish|monish|warn (generic term)
+cautionary|2
+(adj)|preventive|prophylactic|protective (similar term)
+(adj)|admonitory|exemplary|monitory|warning|dissuasive (similar term)
+cautious|4
+(adj)|cagey (similar term)|cagy (similar term)|chary (similar term)|fabian (similar term)|dilatory (similar term)|gingerly (similar term)|guarded (similar term)|restrained (similar term)|overcautious (similar term)|careful (related term)|unadventurous (related term)|incautious (antonym)
+(adj)|conservative|moderate (similar term)
+(adj)|careful (similar term)
+(noun)|timid|people (generic term)|brave (antonym)
+cautious statement|1
+(noun)|statement (generic term)
+cautiously|2
+(adv)|carefully|with kid gloves|carelessly (antonym)|incautiously (antonym)
+(adv)|conservatively|guardedly
+cautiousness|1
+(noun)|caution|carefulness|attentiveness (generic term)|incaution (antonym)
+cavalcade|1
+(noun)|procession (generic term)
+cavalier|3
+(adj)|high-handed|domineering (similar term)
+(noun)|chevalier|male aristocrat (generic term)
+(noun)|Cavalier|Royalist|monarchist (generic term)|royalist (generic term)
+cavalier hat|1
+(noun)|slouch hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+cavalierly|1
+(adv)|disdainfully
+cavalla|1
+(noun)|king mackerel|cero|Scomberomorus cavalla|Spanish mackerel (generic term)
+cavalry|2
+(noun)|horse cavalry|horse|military personnel (generic term)|soldiery (generic term)|troops (generic term)
+(noun)|army unit (generic term)
+cavalry horse|1
+(noun)|warhorse (generic term)
+cavalry sword|1
+(noun)|saber|sabre|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+cavalryman|1
+(noun)|trooper|soldier (generic term)
+cave|3
+(noun)|geological formation (generic term)|formation (generic term)
+(verb)|undermine|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|spelunk|explore (generic term)
+cave bat|1
+(noun)|pallid bat|Antrozous pallidus|vespertilian bat (generic term)|vespertilionid (generic term)
+cave dweller|1
+(noun)|caveman|cave man|troglodyte|primitive (generic term)|primitive person (generic term)
+cave in|2
+(noun)|subsidence|collapse (generic term)
+(verb)|collapse|fall in|give|give way|break|founder|change (generic term)
+cave man|1
+(noun)|caveman|cave dweller|troglodyte|primitive (generic term)|primitive person (generic term)
+cave myotis|1
+(noun)|Myotis velifer|vespertilian bat (generic term)|vespertilionid (generic term)
+caveat|2
+(noun)|caution|warning (generic term)
+(noun)|notice (generic term)
+caveat emptor|1
+(noun)|principle (generic term)|precept (generic term)
+cavell|1
+(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse (generic term)
+caveman|1
+(noun)|cave man|cave dweller|troglodyte|primitive (generic term)|primitive person (generic term)
+cavendish|1
+(noun)|Cavendish|Henry Cavendish|chemist (generic term)|physicist (generic term)
+cavern|3
+(noun)|enclosure (generic term)|natural enclosure (generic term)
+(noun)|cave (generic term)
+(verb)|cavern out|hollow (generic term)|hollow out (generic term)|core out (generic term)
+cavern out|1
+(verb)|cavern|hollow (generic term)|hollow out (generic term)|core out (generic term)
+cavernous|2
+(adj)|hollow (similar term)
+(adj)|erectile|expansive (similar term)
+cavernous sinus|1
+(noun)|sinus cavernosus|venous sinus (generic term)|sinus (generic term)
+cavetto|1
+(noun)|molding (generic term)|moulding (generic term)
+cavia|1
+(noun)|Cavia|genus Cavia|mammal genus (generic term)
+cavia cobaya|1
+(noun)|guinea pig|Cavia cobaya|cavy (generic term)
+cavia porcellus|1
+(noun)|aperea|wild cavy|Cavia porcellus|cavy (generic term)
+caviar|1
+(noun)|caviare|roe (generic term)|hard roe (generic term)
+caviare|1
+(noun)|caviar|roe (generic term)|hard roe (generic term)
+caviidae|1
+(noun)|Caviidae|family Caviidae|mammal family (generic term)
+cavil|2
+(noun)|quibble|quiddity|evasion (generic term)|equivocation (generic term)
+(verb)|carp|chicane|object (generic term)
+caviler|1
+(noun)|quibbler|caviller|pettifogger|malcontent (generic term)
+caviling|1
+(adj)|carping|nitpicking|pettifogging|quibbling|critical (similar term)
+caviller|1
+(noun)|quibbler|caviler|pettifogger|malcontent (generic term)
+cavitied|1
+(adj)|alveolate|faveolate|honeycombed|pitted|cellular (similar term)
+cavity|4
+(noun)|pit|hole (generic term)|hollow (generic term)
+(noun)|enclosed space|space (generic term)
+(noun)|caries|dental caries|tooth decay|decay (generic term)
+(noun)|bodily cavity|cavum|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cavity resonator|1
+(noun)|resonator|resonating chamber|chamber (generic term)
+cavity wall|1
+(noun)|wall (generic term)
+caviuna wood|1
+(noun)|Brazilian rosewood|jacaranda|Dalbergia nigra|rosewood (generic term)|rosewood tree (generic term)
+cavort|1
+(verb)|frolic|lark|rollick|skylark|disport|sport|gambol|frisk|romp|run around|lark about|play (generic term)
+cavum|1
+(noun)|cavity|bodily cavity|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cavy|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+caw|2
+(noun)|cry (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+caxton|1
+(noun)|Caxton|William Caxton|printer (generic term)|pressman (generic term)
+cay|1
+(noun)|key|Florida key|coral reef (generic term)
+cayenne|3
+(noun)|cayenne pepper|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|cayenne pepper|red pepper|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|cayenne pepper|chili (generic term)|chili pepper (generic term)|chilli (generic term)|chilly (generic term)|chile (generic term)
+cayenne jasmine|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+cayenne pepper|3
+(noun)|cayenne|chili pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|cayenne|red pepper|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|cayenne|chili (generic term)|chili pepper (generic term)|chilli (generic term)|chilly (generic term)|chile (generic term)
+cayman|1
+(noun)|caiman|crocodilian reptile (generic term)|crocodilian (generic term)
+cayman islands|1
+(noun)|Cayman Islands|island (generic term)
+cayman islands dollar|1
+(noun)|Cayman Islands dollar|dollar (generic term)
+cayuga|2
+(noun)|Cayuga|Iroquois (generic term)
+(noun)|Cayuga|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+cayuga lake|1
+(noun)|Cayuga Lake|Lake Cayuga|lake (generic term)
+cayuse|1
+(noun)|Indian pony|pony (generic term)
+cazique|1
+(noun)|cacique|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+cbc|1
+(noun)|complete blood count|CBC|blood profile|blood count (generic term)
+cbr|1
+(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation (generic term)
+cc|2
+(adj)|two hundred|200|cardinal (similar term)
+(noun)|milliliter|millilitre|mil|ml|cubic centimeter|cubic centimetre|metric capacity unit (generic term)
+ccc|1
+(adj)|three hundred|300|cardinal (similar term)
+ccrc|1
+(noun)|Casualty Care Research Center|CCRC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+cd|5
+(adj)|four hundred|400|cardinal (similar term)
+(noun)|cadmium|Cd|atomic number 48|metallic element (generic term)|metal (generic term)
+(noun)|candle|candela|standard candle|luminous intensity unit (generic term)|candlepower unit (generic term)
+(noun)|certificate of deposit|CD|debt instrument (generic term)|certificate of indebtedness (generic term)
+(noun)|compact disk|compact disc|CD|optical disk (generic term)|optical disc (generic term)|recording (generic term)
+cd-r|1
+(noun)|CD-R|compact disc recordable|CD-WO|compact disc write-once|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+cd-rom|1
+(noun)|CD-ROM|compact disc read-only memory|compact disk (generic term)|compact disc (generic term)|CD (generic term)|read-only memory (generic term)|ROM (generic term)|read-only storage (generic term)|fixed storage (generic term)
+cd-rom drive|1
+(noun)|CD-ROM drive|drive (generic term)
+cd-wo|1
+(noun)|CD-R|compact disc recordable|CD-WO|compact disc write-once|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+cd4|1
+(noun)|cluster of differentiation 4|CD4|glycoprotein (generic term)
+cd4 cell|1
+(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell (generic term)|T lymphocyte (generic term)
+cd4 t cell|1
+(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell (generic term)|T lymphocyte (generic term)
+cd8|1
+(noun)|cluster of differentiation 8|CD8|glycoprotein (generic term)
+cd8 cell|1
+(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell (generic term)|T lymphocyte (generic term)
+cd8 t cell|1
+(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell (generic term)|T lymphocyte (generic term)
+cd burner|1
+(noun)|compact-disk burner|CD burner|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+cd drive|1
+(noun)|CD drive|drive (generic term)
+cd player|1
+(noun)|CD player|electronic equipment (generic term)
+cdc|1
+(noun)|Center for Disease Control and Prevention|CDC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+cdna|1
+(noun)|complementary DNA|cDNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+ce|2
+(noun)|cerium|Ce|atomic number 58|metallic element (generic term)|metal (generic term)
+(adv)|CE|C.E.|Common Era
+cease|3
+(noun)|end (generic term)|ending (generic term)
+(verb)|discontinue|stop|give up|quit|lay off|continue (antonym)
+(verb)|end|stop|finish|terminate|begin (antonym)
+cease-fire|1
+(noun)|armistice|truce|peace (generic term)
+cease and desist order|1
+(noun)|injunction|enjoining|enjoinment|prohibition (generic term)|ban (generic term)|proscription (generic term)
+ceaseless|1
+(adj)|constant|incessant|never-ending|perpetual|unceasing|unremitting|continuous (similar term)|uninterrupted (similar term)
+ceaselessly|1
+(adv)|endlessly|incessantly|unceasingly|unendingly|continuously
+ceaselessness|1
+(noun)|continuousness|incessancy|incessantness|endlessness (generic term)
+cebidae|1
+(noun)|Cebidae|family Cebidae|mammal family (generic term)
+cebu|2
+(noun)|Cebu|Cebu City|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Cebu|island (generic term)
+cebu city|1
+(noun)|Cebu|Cebu City|city (generic term)|metropolis (generic term)|urban center (generic term)
+cebu maguey|1
+(noun)|cantala|Cebu maguey|manila maguey|fiber (generic term)|fibre (generic term)
+cebuan|2
+(noun)|Cebuan|Visayan (generic term)|Bisayan (generic term)
+(noun)|Cebuan|Cebuano|Philippine (generic term)|Filipino (generic term)
+cebuano|1
+(noun)|Cebuan|Cebuano|Philippine (generic term)|Filipino (generic term)
+cebuella|1
+(noun)|Cebuella|genus Cebuella|mammal genus (generic term)
+cebuella pygmaea|1
+(noun)|pygmy marmoset|Cebuella pygmaea|marmoset (generic term)
+cebus|1
+(noun)|Cebus|genus Cebus|mammal genus (generic term)
+cebus capucinus|1
+(noun)|capuchin|ringtail|Cebus capucinus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+cecal|1
+(adj)|caecal|cavity|bodily cavity|cavum (related term)
+cecal appendage|1
+(noun)|appendix|vermiform appendix|vermiform process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+cecidomyidae|1
+(noun)|Cecidomyidae|family Cecidomyidae|arthropod family (generic term)
+cecil b. demille|1
+(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+cecil blount demille|1
+(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+cecil frank powell|1
+(noun)|Powell|Cecil Frank Powell|physicist (generic term)
+cecil j. rhodes|1
+(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier (generic term)|moneyman (generic term)|colonizer (generic term)|coloniser (generic term)
+cecil john rhodes|1
+(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier (generic term)|moneyman (generic term)|colonizer (generic term)|coloniser (generic term)
+cecil rhodes|1
+(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier (generic term)|moneyman (generic term)|colonizer (generic term)|coloniser (generic term)
+cecil scott forester|1
+(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer (generic term)|author (generic term)
+cecity|1
+(noun)|blindness|sightlessness|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+cecropia|2
+(noun)|Cecropia|genus Cecropia|dicot genus (generic term)|magnoliopsid genus (generic term)
+(noun)|cecropia moth|Hyalophora cecropia|saturniid (generic term)|saturniid moth (generic term)
+cecropia moth|1
+(noun)|cecropia|Hyalophora cecropia|saturniid (generic term)|saturniid moth (generic term)
+cecropia peltata|1
+(noun)|trumpetwood|trumpet-wood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+cecropiaceae|1
+(noun)|Cecropiaceae|family Cecropiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+cecum|1
+(noun)|caecum|blind gut|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+cedar|3
+(noun)|cedar tree|conifer (generic term)|coniferous tree (generic term)
+(noun)|cedarwood|wood (generic term)
+(noun)|cedar tree|true cedar|conifer (generic term)|coniferous tree (generic term)
+cedar-apple rust|1
+(noun)|apple rust|Gymnosporangium juniperi-virginianae|rust (generic term)|rust fungus (generic term)
+cedar-scented|1
+(adj)|odorous (similar term)
+cedar chest|1
+(noun)|chest (generic term)
+cedar elm|1
+(noun)|Ulmus crassifolia|elm (generic term)|elm tree (generic term)
+cedar mahogany|1
+(noun)|African scented mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany (generic term)|mahogany tree (generic term)
+cedar nut|1
+(noun)|cembra nut|nut (generic term)
+cedar of goa|1
+(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress (generic term)|cypress tree (generic term)
+cedar of lebanon|1
+(noun)|cedar of Lebanon|Cedrus libani|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+cedar rapids|1
+(noun)|Cedar Rapids|city (generic term)|metropolis (generic term)|urban center (generic term)
+cedar tree|2
+(noun)|cedar|conifer (generic term)|coniferous tree (generic term)
+(noun)|cedar|true cedar|conifer (generic term)|coniferous tree (generic term)
+cedar waxwing|1
+(noun)|cedarbird|Bombycilla cedrorun|waxwing (generic term)
+cedarbird|1
+(noun)|cedar waxwing|Bombycilla cedrorun|waxwing (generic term)
+cedarn|1
+(adj)|woody (similar term)
+cedarwood|1
+(noun)|cedar|wood (generic term)
+cede|2
+(verb)|concede|yield|grant|give (generic term)
+(verb)|surrender|deliver|give up|give (generic term)|gift (generic term)|present (generic term)
+cedi|1
+(noun)|Ghanian monetary unit (generic term)
+cedilla|1
+(noun)|diacritical mark (generic term)|diacritic (generic term)
+ceding|1
+(noun)|cession|relinquishment (generic term)|relinquishing (generic term)
+ceding back|1
+(noun)|recession|cession (generic term)|ceding (generic term)
+cedrela|1
+(noun)|Cedrela|genus Cedrela|rosid dicot genus (generic term)
+cedrela calantas|1
+(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany (generic term)|mahogany tree (generic term)
+cedrela odorata|1
+(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany (generic term)|mahogany tree (generic term)
+cedrus|1
+(noun)|Cedrus|genus Cedrus|gymnosperm genus (generic term)
+cedrus atlantica|1
+(noun)|Atlas cedar|Cedrus atlantica|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+cedrus deodara|1
+(noun)|deodar|deodar cedar|Himalayan cedar|Cedrus deodara|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+cedrus libani|1
+(noun)|cedar of Lebanon|Cedrus libani|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+cefadroxil|1
+(noun)|Ultracef|cephalosporin (generic term)|Mefoxin (generic term)
+cefobid|1
+(noun)|cefoperazone|Cefobid|cephalosporin (generic term)|Mefoxin (generic term)
+cefoperazone|1
+(noun)|Cefobid|cephalosporin (generic term)|Mefoxin (generic term)
+cefotaxime|1
+(noun)|Claforan|cephalosporin (generic term)|Mefoxin (generic term)
+ceftazidime|1
+(noun)|Fortaz|Tazicef|cephalosporin (generic term)|Mefoxin (generic term)
+ceftin|1
+(noun)|cefuroxime|Ceftin|Zinacef|cephalosporin (generic term)|Mefoxin (generic term)
+ceftriaxone|1
+(noun)|Rocephin|cephalosporin (generic term)|Mefoxin (generic term)
+cefuroxime|1
+(noun)|Ceftin|Zinacef|cephalosporin (generic term)|Mefoxin (generic term)
+ceiba|1
+(noun)|Ceiba|genus Ceiba|dilleniid dicot genus (generic term)
+ceiba pentandra|1
+(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+ceiba tree|1
+(noun)|kapok|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+ceibo|1
+(noun)|crybaby tree|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree (generic term)|erythrina (generic term)
+ceilidh|1
+(noun)|party (generic term)
+ceiling|3
+(noun)|upper surface (generic term)
+(noun)|cap|control (generic term)
+(noun)|altitude (generic term)|height (generic term)
+ceilinged|1
+(adj)|high-ceilinged (similar term)|low-ceilinged (similar term)|raftered (similar term)|floored (antonym)
+celandine|2
+(noun)|jewelweed|lady's earrings|orange balsam|touch-me-not|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+(noun)|greater celandine|swallowwort|swallow wort|Chelidonium majus|poppy (generic term)
+celandine poppy|1
+(noun)|wood poppy|Stylophorum diphyllum|poppy (generic term)
+celastraceae|1
+(noun)|Celastraceae|family Celastraceae|spindle-tree family|staff-tree family|dicot family (generic term)|magnoliopsid family (generic term)
+celastric articulatus|1
+(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine (generic term)
+celastrus|1
+(noun)|Celastrus|genus Celastrus|dicot genus (generic term)|magnoliopsid genus (generic term)
+celastrus orbiculatus|1
+(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine (generic term)
+celastrus scandens|1
+(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+celebes|1
+(noun)|Celebes|Sulawesi|island (generic term)
+celebrant|2
+(noun)|celebrator|celebrater|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|priest (generic term)
+celebrate|3
+(verb)|observe|keep
+(verb)|fete|meet (generic term)|get together (generic term)
+(verb)|lionize|lionise|respect (generic term)|honor (generic term)|honour (generic term)|abide by (generic term)|observe (generic term)
+celebrated|2
+(adj)|famed|far-famed|famous|illustrious|notable|noted|renowned|known (similar term)
+(adj)|historied|storied|glorious (similar term)
+celebrater|1
+(noun)|celebrant|celebrator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+celebration|3
+(noun)|jubilation|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+(noun)|festivity|diversion (generic term)|recreation (generic term)
+(noun)|solemnization|solemnisation|ritual (generic term)
+celebrator|1
+(noun)|celebrant|celebrater|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+celebratory|1
+(adj)|affair|occasion|social occasion|function|social function (related term)
+celebrex|1
+(noun)|celecoxib|Celebrex|Cox-2 inhibitor (generic term)
+celebrity|2
+(noun)|famous person|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|fame|renown|honor (generic term)|honour (generic term)|laurels (generic term)|infamy (antonym)
+celecoxib|1
+(noun)|Celebrex|Cox-2 inhibitor (generic term)
+celeriac|2
+(noun)|celery root|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+(noun)|celery root|root vegetable (generic term)
+celerity|1
+(noun)|quickness|rapidity|rapidness|speediness|pace (generic term)|rate (generic term)
+celery|2
+(noun)|cultivated celery|Apium graveolens dulce|herb (generic term)|herbaceous plant (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+celery-leaved buttercup|1
+(noun)|cursed crowfoot|Ranunculus sceleratus|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+celery-topped pine|1
+(noun)|celery top pine|Phyllocladus asplenifolius|celery pine (generic term)
+celery blight|1
+(noun)|late blight (generic term)
+celery cabbage|2
+(noun)|Chinese cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|Chinese cabbage|Chinese celery|cabbage (generic term)|chou (generic term)
+celery pine|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+celery root|2
+(noun)|celeriac|knob celery|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+(noun)|celeriac|root vegetable (generic term)
+celery salt|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+celery seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+celery stick|1
+(noun)|crudites (generic term)
+celery top pine|1
+(noun)|celery-topped pine|Phyllocladus asplenifolius|celery pine (generic term)
+celesta|1
+(noun)|musical instrument (generic term)|instrument (generic term)
+celestial|3
+(adj)|heavenly|atmosphere (related term)
+(adj)|heavenly|imaginary place|mythical place|fictitious place (related term)
+(adj)|ethereal|supernal|heavenly (similar term)
+celestial body|1
+(noun)|heavenly body|natural object (generic term)
+celestial city|1
+(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven (generic term)
+celestial equator|1
+(noun)|equinoctial circle|equinoctial line|equinoctial|great circle (generic term)
+celestial globe|1
+(noun)|globe (generic term)
+celestial guidance|1
+(noun)|steering (generic term)|guidance (generic term)|direction (generic term)
+celestial hierarchy|1
+(noun)|hierarchy (generic term)
+celestial horizon|1
+(noun)|horizon|great circle (generic term)
+celestial latitude|1
+(noun)|declination|dec|angular distance (generic term)
+celestial longitude|1
+(noun)|right ascension|RA|angular distance (generic term)
+celestial mechanics|1
+(noun)|astronomy (generic term)|uranology (generic term)
+celestial navigation|1
+(noun)|astronavigation|navigation (generic term)|pilotage (generic term)|piloting (generic term)
+celestial orbit|1
+(noun)|orbit|path (generic term)|route (generic term)|itinerary (generic term)
+celestial point|1
+(noun)|point (generic term)
+celestial pole|1
+(noun)|pole|celestial point (generic term)
+celestial sphere|1
+(noun)|sphere|empyrean|firmament|heavens|vault of heaven|welkin|surface (generic term)
+celestite|1
+(noun)|mineral (generic term)
+celiac|2
+(adj)|disorder|upset (related term)
+(adj)|coeliac|cavity|bodily cavity|cavum (related term)
+celiac artery|1
+(noun)|celiac trunk|truncus celiacus|arteria celiaca|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+celiac disease|1
+(noun)|disorder (generic term)|upset (generic term)
+celiac trunk|1
+(noun)|celiac artery|truncus celiacus|arteria celiaca|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+celibacy|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|chastity|sexual abstention|abstinence (generic term)
+celibate|2
+(adj)|continent|chaste (similar term)
+(noun)|religious person (generic term)
+celiocentesis|1
+(noun)|centesis (generic term)
+celioma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+celioscopy|1
+(noun)|endoscopy (generic term)
+cell|7
+(noun)|compartment (generic term)
+(noun)|living thing (generic term)|animate thing (generic term)
+(noun)|electric cell|electrical device (generic term)
+(noun)|cadre|political unit (generic term)|political entity (generic term)
+(noun)|cellular telephone|cellular phone|cellphone|mobile phone|radiotelephone (generic term)|radiophone (generic term)|wireless telephone (generic term)
+(noun)|cubicle|room (generic term)
+(noun)|jail cell|prison cell|room (generic term)
+cell-free|1
+(adj)|noncellular (similar term)|acellular (similar term)
+cell-like|1
+(adj)|cellular (similar term)
+cell-mediated immune response|1
+(noun)|immune response (generic term)|immune reaction (generic term)|immunologic response (generic term)
+cell death|1
+(noun)|necrobiosis|death (generic term)
+cell division|1
+(noun)|cellular division|organic process (generic term)|biological process (generic term)
+cell doctrine|1
+(noun)|cell theory|scientific theory (generic term)
+cell membrane|1
+(noun)|cytomembrane|plasma membrane|semipermeable membrane (generic term)
+cell nucleus|1
+(noun)|nucleus|karyon|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+cell organ|1
+(noun)|organelle|cell organelle|organ (generic term)
+cell organelle|1
+(noun)|organelle|cell organ|organ (generic term)
+cell phone|1
+(verb)|call (generic term)|telephone (generic term)|call up (generic term)|phone (generic term)|ring (generic term)
+cell theory|1
+(noun)|cell doctrine|scientific theory (generic term)
+cell wall|1
+(noun)|layer (generic term)
+cellar|3
+(noun)|basement|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|root cellar|excavation (generic term)|storage space (generic term)
+(noun)|wine cellar|storage space (generic term)
+cellarage|2
+(noun)|fee (generic term)
+(noun)|basement (generic term)|cellar (generic term)
+cellaret|1
+(noun)|minibar|buffet (generic term)|counter (generic term)|sideboard (generic term)
+cellblock|1
+(noun)|ward|block (generic term)
+cellini|1
+(noun)|Cellini|Benvenuto Cellini|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+cellist|1
+(noun)|violoncellist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+cello|1
+(noun)|violoncello|bowed stringed instrument (generic term)|string (generic term)
+cellophane|1
+(noun)|plastic wrap (generic term)
+cellphone|1
+(noun)|cellular telephone|cellular phone|cell|mobile phone|radiotelephone (generic term)|radiophone (generic term)|wireless telephone (generic term)
+cellular|2
+(adj)|living thing|animate thing (related term)
+(adj)|cancellate (similar term)|cancellated (similar term)|cancellous (similar term)|alveolate (similar term)|faveolate (similar term)|cavitied (similar term)|honeycombed (similar term)|pitted (similar term)|cell-like (similar term)|lymphoblast-like (similar term)|multicellular (similar term)|noncellular (antonym)
+cellular division|1
+(noun)|cell division|organic process (generic term)|biological process (generic term)
+cellular inclusion|1
+(noun)|inclusion body|inclusion|body (generic term)
+cellular phone|1
+(noun)|cellular telephone|cellphone|cell|mobile phone|radiotelephone (generic term)|radiophone (generic term)|wireless telephone (generic term)
+cellular respiration|1
+(noun)|respiration|internal respiration|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+cellular slime mold|1
+(noun)|slime mold (generic term)|slime mould (generic term)
+cellular telephone|1
+(noun)|cellular phone|cellphone|cell|mobile phone|radiotelephone (generic term)|radiophone (generic term)|wireless telephone (generic term)
+cellularity|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+cellulite|1
+(noun)|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+cellulitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+celluloid|3
+(adj)|synthetic|artificial (similar term)|unreal (similar term)
+(noun)|thermoplastic (generic term)|thermoplastic resin (generic term)
+(noun)|film|cinema|medium (generic term)
+cellulose|1
+(noun)|polysaccharide (generic term)|polyose (generic term)
+cellulose acetate|1
+(noun)|cellulose ester (generic term)
+cellulose ester|1
+(noun)|ester (generic term)
+cellulose nitrate|1
+(noun)|nitrocellulose|guncotton|nitrocotton|cellulose ester (generic term)|nitrate (generic term)
+cellulose tape|1
+(noun)|Scotch tape|Sellotape|adhesive tape (generic term)
+cellulose triacetate|1
+(noun)|triacetate|cellulose acetate (generic term)
+cellulose xanthate|1
+(noun)|viscose|cellulose ester (generic term)|xanthate (generic term)
+cellulosic|1
+(noun)|plastic (generic term)
+cellulosid|1
+(adj)|polysaccharide|polyose (related term)
+celom|1
+(noun)|coelom|celoma|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+celoma|1
+(noun)|celom|coelom|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+celosia|1
+(noun)|Celosia|genus Celosia|caryophylloid dicot genus (generic term)
+celosia argentea|1
+(noun)|red fox|Celosia argentea|herb (generic term)|herbaceous plant (generic term)
+celosia argentea cristata|1
+(noun)|cockscomb|common cockscomb|Celosia cristata|Celosia argentea cristata|herb (generic term)|herbaceous plant (generic term)
+celosia cristata|1
+(noun)|cockscomb|common cockscomb|Celosia cristata|Celosia argentea cristata|herb (generic term)|herbaceous plant (generic term)
+celsius|1
+(noun)|Celsius|Anders Celsius|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+celsius scale|1
+(noun)|Celsius scale|international scale|centigrade scale|temperature scale (generic term)
+celt|1
+(noun)|Celt|Kelt|European (generic term)
+celtic|2
+(adj)|Celtic|Gaelic|European (related term)
+(noun)|Celtic|Celtic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+celtic cross|1
+(noun)|Celtic cross|Cross (generic term)
+celtic deity|1
+(noun)|Celtic deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+celtic language|1
+(noun)|Celtic|Celtic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+celtis|1
+(noun)|Celtis|genus Celtis|dicot genus (generic term)|magnoliopsid genus (generic term)
+celtis australis|1
+(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry (generic term)|nettle tree (generic term)
+celtis laevigata|1
+(noun)|sugarberry|Celtis laevigata|hackberry (generic term)|nettle tree (generic term)
+celtis occidentalis|1
+(noun)|American hackberry|Celtis occidentalis|hackberry (generic term)|nettle tree (generic term)
+celtuce|2
+(noun)|stem lettuce|Lactuca sativa asparagina|lettuce (generic term)
+(noun)|salad green (generic term)|salad greens (generic term)
+cembalo|1
+(noun)|harpsichord|clavier (generic term)|Klavier (generic term)
+cembra nut|1
+(noun)|cedar nut|nut (generic term)
+cembra nut tree|1
+(noun)|Swiss pine|Swiss stone pine|arolla pine|Pinus cembra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+cement|8
+(noun)|concrete (generic term)
+(noun)|building material (generic term)
+(noun)|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+(noun)|filling (generic term)|fill (generic term)
+(noun)|cementum|solid body substance (generic term)
+(verb)|bind (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+cement mixer|1
+(noun)|concrete mixer|machine (generic term)
+cementite|1
+(noun)|iron carbide|compound (generic term)|chemical compound (generic term)
+cementitious|1
+(adj)|building material (related term)
+cementum|1
+(noun)|cement|solid body substance (generic term)
+cemetery|1
+(noun)|graveyard|burial site|burial ground|burying ground|memorial park|necropolis|site (generic term)|land site (generic term)
+cenchrus|1
+(noun)|Cenchrus|genus Cenchrus|monocot genus (generic term)|liliopsid genus (generic term)
+cenchrus ciliaris|1
+(noun)|buffel grass|Cenchrus ciliaris|Pennisetum cenchroides|burgrass (generic term)|bur grass (generic term)
+cenchrus tribuloides|1
+(noun)|sandbur|sandspur|field sandbur|Cenchrus tribuloides|grass (generic term)
+cenobite|1
+(noun)|coenobite|religious (generic term)|eremite (antonym)
+cenobitic|1
+(adj)|coenobitic|cenobitical|coenobitical|religious (related term)|eremitic (antonym)
+cenobitical|1
+(adj)|cenobitic|coenobitic|coenobitical|religious (related term)|eremitic (antonym)
+cenogenesis|1
+(noun)|kenogenesis|caenogenesis|cainogenesis|kainogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|palingenesis (antonym)
+cenogenetic|1
+(adj)|growth|growing|maturation|development|ontogeny|ontogenesis (related term)|palingenetic (antonym)
+cenotaph|1
+(noun)|memorial (generic term)|monument (generic term)
+cenozoic|2
+(adj)|Cenozoic|era|geological era (related term)
+(noun)|Cenozoic|Cenozoic era|Age of Mammals|era (generic term)|geological era (generic term)
+cenozoic era|1
+(noun)|Cenozoic|Cenozoic era|Age of Mammals|era (generic term)|geological era (generic term)
+cense|1
+(verb)|incense|thurify|odorize (generic term)|odourise (generic term)|scent (generic term)
+censer|1
+(noun)|thurible|vessel (generic term)
+censor|4
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|official (generic term)|functionary (generic term)
+(verb)|ban|outlaw (generic term)|criminalize (generic term)|criminalise (generic term)|illegalize (generic term)|illegalise (generic term)
+(verb)|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+censored|1
+(adj)|expurgated (similar term)|uncensored (antonym)
+censorial|1
+(adj)|official|functionary (related term)
+censoring|2
+(noun)|censorship|security review|counterintelligence (generic term)
+(noun)|censorship|deletion (generic term)
+censorious|1
+(adj)|critical (similar term)
+censorship|2
+(noun)|censoring|security review|counterintelligence (generic term)
+(noun)|censoring|deletion (generic term)
+censurable|1
+(adj)|blameworthy|blamable|blameable|blameful|culpable|guilty (similar term)
+censure|3
+(noun)|animadversion|disapprobation (generic term)|condemnation (generic term)
+(noun)|excommunication|exclusion|rejection (generic term)
+(verb)|reprimand|criminate|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+censured|2
+(adj)|punished (similar term)
+(adj)|condemned|disapproved (similar term)
+census|2
+(noun)|nose count|nosecount|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+(verb)|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+census bureau|1
+(noun)|Bureau of the Census|Census Bureau|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+census taker|1
+(noun)|enumerator|official (generic term)|functionary (generic term)
+cent|2
+(noun)|fractional monetary unit (generic term)|subunit (generic term)|Sri Lanka rupee (generic term)|rupee (generic term)
+(noun)|penny|centime|coin (generic term)
+cental|1
+(noun)|hundredweight|cwt|short hundredweight|centner|quintal|avoirdupois unit (generic term)
+centare|1
+(noun)|square meter|square metre|area unit (generic term)|square measure (generic term)
+centas|1
+(noun)|Lithuanian monetary unit (generic term)
+centaur|2
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+(noun)|Centaurus|Centaur|constellation (generic term)
+centaurea|1
+(noun)|Centaurea|genus Centaurea|asterid dicot genus (generic term)
+centaurea americana|1
+(noun)|basket flower|Centaurea americana|centaury (generic term)
+centaurea cineraria|1
+(noun)|dusty miller|Centaurea cineraria|Centaurea gymnocarpa|centaury (generic term)
+centaurea cyanus|1
+(noun)|cornflower|bachelor's button|bluebottle|Centaurea cyanus|flower (generic term)
+centaurea gymnocarpa|1
+(noun)|dusty miller|Centaurea cineraria|Centaurea gymnocarpa|centaury (generic term)
+centaurea imperialis|1
+(noun)|sweet sultan|Centaurea imperialis|flower (generic term)
+centaurea moschata|1
+(noun)|sweet sultan|Amberboa moschata|Centaurea moschata|flower (generic term)
+centaurea nigra|1
+(noun)|lesser knapweed|black knapweed|hardheads|Centaurea nigra|knapweed (generic term)
+centaurea scabiosa|1
+(noun)|great knapweed|greater knapweed|Centaurea scabiosa|knapweed (generic term)
+centaurea solstitialis|1
+(noun)|Barnaby's thistle|yellow star-thistle|Centaurea solstitialis|weed (generic term)
+centauria calcitrapa|1
+(noun)|star-thistle|caltrop|Centauria calcitrapa|centaury (generic term)
+centaurium|1
+(noun)|Centaurium|genus Centaurium|dicot genus (generic term)|magnoliopsid genus (generic term)
+centaurium calycosum|1
+(noun)|rosita|Centaurium calycosum|centaury (generic term)
+centaurium minus|1
+(noun)|lesser centaury|Centaurium minus|centaury (generic term)
+centaurium scilloides|1
+(noun)|tufted centaury|Centaurium scilloides|centaury (generic term)
+centaurus|1
+(noun)|Centaurus|Centaur|constellation (generic term)
+centaury|2
+(noun)|flower (generic term)
+(noun)|subshrub (generic term)|suffrutex (generic term)
+centavo|1
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+centenarian|2
+(adj)|old (similar term)
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+centenary|2
+(adj)|centennial|time period|period of time|period (related term)
+(noun)|centennial|anniversary (generic term)|day of remembrance (generic term)
+centennial|2
+(adj)|centenary|time period|period of time|period (related term)
+(noun)|centenary|anniversary (generic term)|day of remembrance (generic term)
+centennial state|1
+(noun)|Colorado|Centennial State|CO|American state (generic term)
+center|22
+(adj)|halfway|middle|midway|central (similar term)
+(adj)|centrist (similar term)|middle-of-the-road (similar term)|right (antonym)|left (antonym)
+(noun)|centre|middle|heart|eye|area (generic term)|country (generic term)
+(noun)|center field|centerfield|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|centre|building (generic term)|edifice (generic term)
+(noun)|centre|midpoint|point (generic term)
+(noun)|kernel|substance|core|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|center of attention|object (generic term)
+(noun)|centre|nerve center|nerve centre|neural structure (generic term)
+(noun)|formation (generic term)
+(noun)|basketball player (generic term)|basketeer (generic term)|cager (generic term)
+(noun)|snapper|lineman (generic term)
+(noun)|centre|place (generic term)|property (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|centre|sweet (generic term)|confection (generic term)
+(noun)|plaza|mall|shopping mall|shopping center|shopping centre|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+(noun)|lineman (generic term)
+(noun)|position (generic term)
+(verb)|focus on|center on|revolve around|revolve about|concentrate on|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|concentrate|focus|centre|pore|rivet|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|centre|move (generic term)|displace (generic term)|center on (related term)
+center bit|1
+(noun)|centre bit|bit (generic term)
+center field|2
+(noun)|centerfield|center|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|centerfield|position (generic term)
+center fielder|1
+(noun)|centerfielder|outfielder (generic term)
+center for disease control and prevention|1
+(noun)|Center for Disease Control and Prevention|CDC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+center line|1
+(noun)|centerline|line (generic term)
+center of attention|1
+(noun)|center|object (generic term)
+center of buoyancy|1
+(noun)|centre of buoyancy|center of immersion|centre of immersion|center of mass (generic term)|centre of mass (generic term)
+center of curvature|1
+(noun)|centre of curvature|center (generic term)|centre (generic term)|midpoint (generic term)
+center of flotation|1
+(noun)|centre of flotation|center of gravity (generic term)|centre of gravity (generic term)
+center of gravity|1
+(noun)|centre of gravity|center (generic term)|centre (generic term)|midpoint (generic term)
+center of immersion|1
+(noun)|center of buoyancy|centre of buoyancy|centre of immersion|center of mass (generic term)|centre of mass (generic term)
+center of mass|1
+(noun)|centre of mass|center (generic term)|centre (generic term)|midpoint (generic term)
+center on|2
+(verb)|focus on|revolve around|revolve about|concentrate on|center|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|be (generic term)
+center punch|2
+(noun)|punch (generic term)|puncher (generic term)
+(verb)|pierce (generic term)|thrust (generic term)
+center spread|1
+(noun)|centre spread|spread (generic term)|spread head (generic term)|spreadhead (generic term)|facing pages (generic term)
+center stage|2
+(noun)|centre stage|high status (generic term)
+(noun)|centre stage|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+centerboard|1
+(noun)|centreboard|drop keel|sliding keel|fin keel (generic term)
+centered|2
+(adj)|central (similar term)
+(adj)|centred|centralized|centralised|focused|concentrated (similar term)
+centerfield|2
+(noun)|center field|center|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|center field|position (generic term)
+centerfielder|1
+(noun)|center fielder|outfielder (generic term)
+centerfold|1
+(noun)|centrefold|spread (generic term)|spread head (generic term)|spreadhead (generic term)|facing pages (generic term)|foldout (generic term)|gatefold (generic term)
+centering|2
+(noun)|focus|focusing|focussing|focal point|direction|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+(noun)|snap|pass (generic term)|toss (generic term)|flip (generic term)
+centerline|1
+(noun)|center line|line (generic term)
+centerpiece|2
+(noun)|centrepiece|feature (generic term)|characteristic (generic term)
+(noun)|centrepiece|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+centesimal|2
+(adj)|common fraction|simple fraction (related term)
+(adj)|hundredth|100th|ordinal (similar term)
+centesimo|1
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+centesis|1
+(noun)|puncture (generic term)
+centigrade|1
+(adj)|temperature scale (related term)
+centigrade scale|1
+(noun)|Celsius scale|international scale|temperature scale (generic term)
+centigrade thermometer|1
+(noun)|Centigrade thermometer|thermometer (generic term)
+centile|1
+(noun)|percentile|mark (generic term)|grade (generic term)|score (generic term)
+centiliter|1
+(noun)|centilitre|cl|metric capacity unit (generic term)
+centilitre|1
+(noun)|centiliter|cl|metric capacity unit (generic term)
+centime|2
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+(noun)|penny|cent|coin (generic term)
+centimeter|1
+(noun)|centimetre|cm|metric linear unit (generic term)
+centimetre|1
+(noun)|centimeter|cm|metric linear unit (generic term)
+centimo|1
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+centipede|1
+(noun)|arthropod (generic term)
+centner|3
+(noun)|hundredweight|metric hundredweight|doppelzentner|metric weight unit (generic term)|weight unit (generic term)
+(noun)|metric weight unit (generic term)|weight unit (generic term)
+(noun)|hundredweight|cwt|short hundredweight|cental|quintal|avoirdupois unit (generic term)
+central|5
+(adj)|cardinal|fundamental|key|primal|important (similar term)|of import (similar term)
+(adj)|amidship (similar term)|bicentric (similar term)|bifocal (similar term)|center (similar term)|halfway (similar term)|middle (similar term)|midway (similar term)|centered (similar term)|centric (similar term)|centrical (similar term)|focal (similar term)|median (similar term)|medial (similar term)|middlemost (similar term)|midmost (similar term)|nuclear (similar term)|peripheral (antonym)
+(adj)|point (related term)
+(adj)|inner (similar term)
+(noun)|telephone exchange|exchange|workplace (generic term)|work (generic term)
+central africa|1
+(noun)|Central African Republic|Central Africa|African country (generic term)|African nation (generic term)
+central african republic|1
+(noun)|Central African Republic|Central Africa|African country (generic term)|African nation (generic term)
+central african republic franc|1
+(noun)|Central African Republic franc|franc (generic term)
+central america|2
+(noun)|Central America|isthmus (generic term)
+(noun)|Central America|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+central american|2
+(adj)|Central American|isthmus (related term)
+(noun)|Central American|North American (generic term)
+central american country|1
+(noun)|Central American country|Central American nation|North American country (generic term)|North American nation (generic term)
+central american nation|1
+(noun)|Central American country|Central American nation|North American country (generic term)|North American nation (generic term)
+central american strap fern|1
+(noun)|Central American strap fern|narrow-leaved strap fern|Campyloneurum augustifolium|strap fern (generic term)
+central artery of the retina|1
+(noun)|arteria centralis retinae|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+central bank|1
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+central body|1
+(noun)|centrosome|cytoplasm (generic term)|cytol (generic term)
+central chimpanzee|1
+(noun)|Pan troglodytes troglodytes|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+central city|1
+(noun)|city center|city centre|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+central dravidian|1
+(noun)|Central Dravidian|Dravidian (generic term)|Dravidic (generic term)|Dravidian language (generic term)
+central gyrus|1
+(noun)|gyrus (generic term)|convolution (generic term)
+central heating|1
+(noun)|heating system (generic term)|heating plant (generic term)|heating (generic term)|heat (generic term)
+central intelligence agency|1
+(noun)|Central Intelligence Agency|CIA|United States intelligence agency (generic term)|independent agency (generic term)
+central intelligence machinery|1
+(noun)|Central Intelligence Machinery|CIM|international intelligence agency (generic term)
+central nervous system|1
+(noun)|CNS|systema nervosum centrale|system (generic term)
+central office|1
+(noun)|headquarters|main office|home office|home base|office (generic term)|business office (generic term)
+central park|1
+(noun)|Central Park|park (generic term)|commons (generic term)|common (generic term)|green (generic term)
+central powers|1
+(noun)|Central Powers|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+central processing unit|1
+(noun)|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+central processor|1
+(noun)|central processing unit|CPU|C.P.U.|processor|mainframe|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+central scotoma|1
+(noun)|scotoma (generic term)
+central standard time|1
+(noun)|Central Time|Central Standard Time|CST|civil time (generic term)|standard time (generic term)|local time (generic term)
+central sulcus|1
+(noun)|fissure of Rolando|Rolando's fissure|sulcus centralis|sulcus (generic term)
+central thai|1
+(noun)|Thai|Siamese|Central Thai|Tai (generic term)
+central time|1
+(noun)|Central Time|Central Standard Time|CST|civil time (generic term)|standard time (generic term)|local time (generic term)
+central vein of retina|1
+(noun)|vena centrales retinae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+central vein of suprarenal gland|1
+(noun)|vena centralis glandulae suprarenalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+central veins of liver|1
+(noun)|venae centrales hepatis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+central vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+centralisation|2
+(noun)|centralization|consolidation (generic term)|integration (generic term)|decentralization (antonym)
+(noun)|centralization|gather (generic term)|gathering (generic term)
+centralise|1
+(verb)|centralize|concentrate|change (generic term)|alter (generic term)|modify (generic term)|deconcentrate (antonym)|decentralise (antonym)|decentralize (antonym)
+centralised|2
+(adj)|centralized|decentralized (antonym)
+(adj)|centered|centred|centralized|focused|concentrated (similar term)
+centralising|1
+(adj)|centralizing|centripetal (similar term)|unifying (similar term)|consolidative (similar term)|integrative (similar term)|decentralizing (antonym)
+centralism|1
+(noun)|policy (generic term)
+centralist|1
+(adj)|centralistic|consolidation|integration (related term)
+centralistic|1
+(adj)|centralist|consolidation|integration (related term)
+centrality|1
+(noun)|position (generic term)|spatial relation (generic term)|marginality (antonym)
+centralization|2
+(noun)|centralisation|consolidation (generic term)|integration (generic term)|decentralization (antonym)
+(noun)|centralisation|gather (generic term)|gathering (generic term)
+centralize|1
+(verb)|centralise|concentrate|change (generic term)|alter (generic term)|modify (generic term)|deconcentrate (antonym)|decentralise (antonym)|decentralize (antonym)
+centralized|2
+(adj)|centralised|decentralized (antonym)
+(adj)|centered|centred|centralised|focused|concentrated (similar term)
+centralizing|1
+(adj)|centralising|centripetal (similar term)|unifying (similar term)|consolidative (similar term)|integrative (similar term)|decentralizing (antonym)
+centrally|1
+(adv)|peripherally (antonym)
+centranthus|1
+(noun)|Centranthus|genus Centranthus|asterid dicot genus (generic term)
+centranthus ruber|1
+(noun)|red valerian|French honeysuckle|Centranthus ruber|flower (generic term)
+centrarchid|1
+(noun)|sunfish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+centrarchidae|1
+(noun)|Centrarchidae|family Centrarchidae|fish family (generic term)
+centre|9
+(noun)|Centre|French region (generic term)
+(noun)|center|middle|heart|eye|area (generic term)|country (generic term)
+(noun)|center|midpoint|point (generic term)
+(noun)|center|place (generic term)|property (generic term)
+(noun)|center|sweet (generic term)|confection (generic term)
+(noun)|center|nerve center|nerve centre|neural structure (generic term)
+(noun)|center|building (generic term)|edifice (generic term)
+(verb)|center|move (generic term)|displace (generic term)|center on (related term)
+(verb)|concentrate|focus|center|pore|rivet|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+centre bit|1
+(noun)|center bit|bit (generic term)
+centre for international crime prevention|1
+(noun)|United Nations Crime Prevention and Criminal Justice|Centre for International Crime Prevention|United Nations agency (generic term)|UN agency (generic term)
+centre of buoyancy|1
+(noun)|center of buoyancy|center of immersion|centre of immersion|center of mass (generic term)|centre of mass (generic term)
+centre of curvature|1
+(noun)|center of curvature|center (generic term)|centre (generic term)|midpoint (generic term)
+centre of flotation|1
+(noun)|center of flotation|center of gravity (generic term)|centre of gravity (generic term)
+centre of gravity|1
+(noun)|center of gravity|center (generic term)|centre (generic term)|midpoint (generic term)
+centre of immersion|1
+(noun)|center of buoyancy|centre of buoyancy|center of immersion|center of mass (generic term)|centre of mass (generic term)
+centre of mass|1
+(noun)|center of mass|center (generic term)|centre (generic term)|midpoint (generic term)
+centre spread|1
+(noun)|center spread|spread (generic term)|spread head (generic term)|spreadhead (generic term)|facing pages (generic term)
+centre stage|2
+(noun)|center stage|high status (generic term)
+(noun)|center stage|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+centreboard|1
+(noun)|centerboard|drop keel|sliding keel|fin keel (generic term)
+centred|2
+(adj)|centered|centralized|centralised|focused|concentrated (similar term)
+(noun)|hundred|100|C|century|one C|large integer (generic term)
+centrefold|1
+(noun)|centerfold|spread (generic term)|spread head (generic term)|spreadhead (generic term)|facing pages (generic term)|foldout (generic term)|gatefold (generic term)
+centrepiece|2
+(noun)|centerpiece|feature (generic term)|characteristic (generic term)
+(noun)|centerpiece|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+centrex|1
+(noun)|central (generic term)|telephone exchange (generic term)|exchange (generic term)
+centric|1
+(adj)|centrical|central (similar term)
+centrical|1
+(adj)|centric|central (similar term)
+centrifugal|3
+(adj)|outward-developing (similar term)|outward-moving (similar term)|centripetal (antonym)
+(adj)|decentralizing (similar term)|decentralising (similar term)
+(adj)|motor|efferent (similar term)|motorial (similar term)
+centrifugal force|1
+(noun)|force (generic term)|centripetal force (antonym)
+centrifugal pump|1
+(noun)|pump (generic term)
+centrifugate|1
+(verb)|centrifuge|spin (generic term)
+centrifugation|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+centrifuge|2
+(noun)|extractor|separator|apparatus (generic term)|setup (generic term)
+(verb)|centrifugate|spin (generic term)
+centriole|1
+(noun)|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+centripetal|3
+(adj)|inward-developing (similar term)|inward-moving (similar term)|centrifugal (antonym)
+(adj)|unifying|centralizing (similar term)|centralising (similar term)
+(adj)|receptive|sensory|afferent (similar term)
+centripetal acceleration|1
+(noun)|acceleration (generic term)
+centripetal force|1
+(noun)|force (generic term)|centrifugal force (antonym)
+centriscidae|1
+(noun)|Centriscidae|family Centriscidae|fish family (generic term)
+centrism|1
+(noun)|moderatism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+centrist|2
+(adj)|middle-of-the-road|center (similar term)
+(noun)|middle of the roader|moderate|moderationist|adult (generic term)|grownup (generic term)
+centrocercus|1
+(noun)|Centrocercus|genus Centrocercus|bird genus (generic term)
+centrocercus urophasianus|1
+(noun)|sage grouse|sage hen|Centrocercus urophasianus|grouse (generic term)
+centroid|1
+(noun)|center of mass (generic term)|centre of mass (generic term)
+centroidal|1
+(adj)|center of mass|centre of mass (related term)
+centrolobium|1
+(noun)|Centrolobium|genus Centrolobium|rosid dicot genus (generic term)
+centrolobium robustum|1
+(noun)|arariba|Centrolobium robustum|zebrawood (generic term)|zebrawood tree (generic term)
+centromere|1
+(noun)|kinetochore|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+centromeric|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+centropistes striata|1
+(noun)|black sea bass|black bass|Centropistes striata|sea bass (generic term)
+centropomidae|1
+(noun)|Centropomidae|family Centropomidae|fish family (generic term)
+centropomus|1
+(noun)|Centropomus|genus Centropomus|fish genus (generic term)
+centropristis|1
+(noun)|Centropristis|genus Centropristis|fish genus (generic term)
+centropristis philadelphica|1
+(noun)|rock sea bass|rock bass|Centropristis philadelphica|sea bass (generic term)
+centropus|1
+(noun)|Centropus|genus Centropus|bird genus (generic term)
+centropus phasianinus|1
+(noun)|pheasant coucal|pheasant cuckoo|Centropus phasianinus|coucal (generic term)
+centropus sinensis|1
+(noun)|crow pheasant|Centropus sinensis|coucal (generic term)
+centrosema|1
+(noun)|Centrosema|genus Centrosema|rosid dicot genus (generic term)
+centrosema virginianum|1
+(noun)|butterfly pea|Centrosema virginianum|vine (generic term)
+centrosome|1
+(noun)|central body|cytoplasm (generic term)|cytol (generic term)
+centrosomic|1
+(adj)|cytoplasm|cytol (related term)
+centrospermae|1
+(noun)|Centrospermae|group Centrospermae|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+centrosymmetric|1
+(adj)|radially symmetrical|symmetrical (similar term)|symmetric (similar term)
+centrum|1
+(noun)|bone (generic term)|os (generic term)
+centunculus|1
+(noun)|Centunculus|genus Centunculus|dicot genus (generic term)|magnoliopsid genus (generic term)
+centurion|1
+(noun)|warrior (generic term)
+century|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|hundred|100|C|one C|centred|large integer (generic term)
+century plant|1
+(noun)|agave|American aloe|desert plant (generic term)|xerophyte (generic term)|xerophytic plant (generic term)|xerophile (generic term)|xerophilous plant (generic term)
+ceo|1
+(noun)|chief executive officer|CEO|chief operating officer|corporate executive (generic term)|business executive (generic term)
+cephalalgia|1
+(noun)|headache|head ache|ache (generic term)|aching (generic term)
+cephalanthera|1
+(noun)|Cephalanthera|genus Cephalanthera|monocot genus (generic term)|liliopsid genus (generic term)
+cephalanthera rubra|1
+(noun)|red helleborine|Cephalanthera rubra|helleborine (generic term)
+cephalaspid|1
+(noun)|osteostracan|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+cephalaspida|1
+(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order (generic term)
+cephalexin|1
+(noun)|Keflex|Keflin|Keftab|cephalosporin (generic term)|Mefoxin (generic term)
+cephalhematoma|1
+(noun)|cephalohematoma|hemorrhagic cyst (generic term)|blood cyst (generic term)|hematocyst (generic term)
+cephalic|1
+(adj)|external body part (related term)|caudal (antonym)
+cephalic index|1
+(noun)|breadth index|cranial index|ratio (generic term)
+cephalic vein|1
+(noun)|vena cephalica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cephalitis|1
+(noun)|encephalitis|phrenitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cephalobidae|1
+(noun)|Cephalobidae|family Cephalobidae|worm family (generic term)
+cephalochordata|1
+(noun)|Cephalochordata|subphylum Cephalochordata|phylum (generic term)
+cephalochordate|1
+(noun)|chordate (generic term)
+cephaloglycin|1
+(noun)|Kafocin|antibiotic (generic term)|antibiotic drug (generic term)
+cephalohematoma|1
+(noun)|cephalhematoma|hemorrhagic cyst (generic term)|blood cyst (generic term)|hematocyst (generic term)
+cephalometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+cephalopod|2
+(adj)|cephalopodan|class (related term)
+(noun)|cephalopod mollusk|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+cephalopod mollusk|1
+(noun)|cephalopod|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+cephalopoda|1
+(noun)|Cephalopoda|class Cephalopoda|class (generic term)
+cephalopodan|1
+(adj)|cephalopod|class (related term)
+cephalopterus|1
+(noun)|Cephalopterus|genus Cephalopterus|bird genus (generic term)
+cephalopterus ornatus|1
+(noun)|umbrella bird|Cephalopterus ornatus|cotinga (generic term)|chatterer (generic term)
+cephaloridine|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+cephalosporin|1
+(noun)|Mefoxin|antibiotic (generic term)|antibiotic drug (generic term)
+cephalotaceae|1
+(noun)|Cephalotaceae|family Cephalotaceae|rosid dicot family (generic term)
+cephalotaxaceae|1
+(noun)|Cephalotaxaceae|family Cephalotaxaceae|plum-yew family|gymnosperm family (generic term)
+cephalotaxus|1
+(noun)|Cephalotaxus|genus Cephalotaxus|gymnosperm genus (generic term)
+cephalothin|1
+(noun)|cephalosporin (generic term)|Mefoxin (generic term)
+cephalotus|1
+(noun)|Cephalotus|genus Cephalotus|rosid dicot genus (generic term)
+cephalotus follicularis|1
+(noun)|Australian pitcher plant|Cephalotus follicularis|herb (generic term)|herbaceous plant (generic term)
+cepheus|2
+(noun)|Cepheus|mythical being (generic term)
+(noun)|Cepheus|constellation (generic term)
+cepphus|1
+(noun)|Cepphus|genus Cepphus|bird genus (generic term)
+cepphus columba|1
+(noun)|pigeon guillemot|Cepphus columba|guillemot (generic term)
+cepphus grylle|1
+(noun)|black guillemot|Cepphus grylle|guillemot (generic term)
+cer|1
+(noun)|conditioned emotional response|CER|conditioned emotion|emotion (generic term)
+ceraceous|1
+(adj)|waxlike|wax-coated|waxy|smooth (similar term)
+cerambycidae|1
+(noun)|Cerambycidae|family Cerambycidae|arthropod family (generic term)
+ceramic|2
+(adj)|instrumentality|instrumentation (related term)
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+ceramic ware|1
+(noun)|utensil (generic term)
+ceramicist|1
+(noun)|potter|thrower|ceramist|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+ceramics|1
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+ceramist|1
+(noun)|potter|thrower|ceramicist|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+cerapteryx|1
+(noun)|Cerapteryx|genus Cerapteryx|arthropod genus (generic term)
+cerapteryx graminis|1
+(noun)|antler moth|Cerapteryx graminis|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+ceras|1
+(noun)|gill (generic term)|branchia (generic term)
+cerastes|1
+(noun)|horned viper|sand viper|horned asp|Cerastes cornutus|viper (generic term)
+cerastes cornutus|1
+(noun)|horned viper|cerastes|sand viper|horned asp|Cerastes cornutus|viper (generic term)
+cerastium|1
+(noun)|Cerastium|genus Cerastium|caryophylloid dicot genus (generic term)
+cerastium alpinum|1
+(noun)|Alpine mouse-ear|Arctic mouse-ear|Cerastium alpinum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+cerastium arvense|1
+(noun)|field chickweed|field mouse-ear|Cerastium arvense|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+cerastium tomentosum|1
+(noun)|snow-in-summer|love-in-a-mist|Cerastium tomentosum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+cerate|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+ceratin|1
+(noun)|keratin|scleroprotein (generic term)|albuminoid (generic term)
+ceratitis|1
+(noun)|Ceratitis|genus Ceratitis|arthropod genus (generic term)
+ceratitis capitata|1
+(noun)|Mediterranean fruit fly|medfly|Ceratitis capitata|fruit fly (generic term)|pomace fly (generic term)
+ceratodontidae|1
+(noun)|Ceratodontidae|family Ceratodontidae|fish family (generic term)
+ceratodus|1
+(noun)|lungfish (generic term)
+ceratonia|1
+(noun)|Ceratonia|genus Ceratonia|rosid dicot genus (generic term)
+ceratonia siliqua|1
+(noun)|carob|carob tree|carob bean tree|algarroba|Ceratonia siliqua|bean tree (generic term)
+ceratopetalum|1
+(noun)|Ceratopetalum|genus Ceratopetalum|rosid dicot genus (generic term)
+ceratopetalum gummiferum|1
+(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree (generic term)
+ceratophyllaceae|1
+(noun)|Ceratophyllaceae|family Ceratophyllaceae|magnoliid dicot family (generic term)
+ceratophyllum|1
+(noun)|Ceratophyllum|genus Ceratophyllum|magnoliid dicot genus (generic term)
+ceratopogon|1
+(noun)|Ceratopogon|genus Ceratopogon|arthropod genus (generic term)
+ceratopogonidae|1
+(noun)|Ceratopogonidae|family Ceratopogonidae|arthropod family (generic term)
+ceratopsia|1
+(noun)|Ceratopsia|suborder Ceratopsia|animal order (generic term)
+ceratopsian|1
+(noun)|horned dinosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+ceratopsidae|1
+(noun)|Ceratopsidae|family Ceratopsidae|reptile family (generic term)
+ceratopteris|1
+(noun)|Ceratopteris|genus Ceratopteris|fern genus (generic term)
+ceratopteris pteridioides|1
+(noun)|floating fern|water sprite|Ceratopteris pteridioides|aquatic fern (generic term)|water fern (generic term)
+ceratopteris thalictroides|1
+(noun)|floating fern|Ceratopteris thalictroides|aquatic fern (generic term)|water fern (generic term)
+ceratosaur|1
+(noun)|ceratosaurus|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+ceratosaurus|1
+(noun)|ceratosaur|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+ceratostomataceae|1
+(noun)|Ceratostomataceae|family Ceratostomataceae|fungus family (generic term)
+ceratostomella|1
+(noun)|Ceratostomella|genus Ceratostomella|fungus genus (generic term)
+ceratostomella ulmi|1
+(noun)|Dutch elm fungus|Ceratostomella ulmi|fungus (generic term)
+ceratotherium|1
+(noun)|Ceratotherium|genus Ceratotherium|mammal genus (generic term)
+ceratotherium simum|1
+(noun)|white rhinoceros|Ceratotherium simum|Diceros simus|rhinoceros (generic term)|rhino (generic term)
+ceratozamia|1
+(noun)|cycad (generic term)
+cerberus|1
+(noun)|Cerberus|hellhound|mythical monster (generic term)|mythical creature (generic term)
+cercaria|1
+(noun)|larva (generic term)
+cercarial|1
+(adj)|larva (related term)
+cercidiphyllaceae|1
+(noun)|Cercidiphyllaceae|family Cercidiphyllaceae|magnoliid dicot family (generic term)
+cercidiphyllum|1
+(noun)|Cercidiphyllum|genus Cercidiphyllum|magnoliid dicot genus (generic term)
+cercidiphyllum japonicum|1
+(noun)|katsura tree|Cercidiphyllum japonicum|angiospermous tree (generic term)|flowering tree (generic term)
+cercidium|1
+(noun)|Cercidium|genus Cercidium|rosid dicot genus (generic term)
+cercidium floridum|1
+(noun)|palo verde|Parkinsonia florida|Cercidium floridum|tree (generic term)
+cercis|1
+(noun)|Cercis|genus Cercis|rosid dicot genus (generic term)
+cercis canadenis|1
+(noun)|redbud|Cercis canadenis|angiospermous tree (generic term)|flowering tree (generic term)
+cercis occidentalis|1
+(noun)|western redbud|California redbud|Cercis occidentalis|shrub (generic term)|bush (generic term)
+cercocebus|1
+(noun)|Cercocebus|genus Cercocebus|mammal genus (generic term)
+cercopidae|1
+(noun)|Cercopidae|family Cercopidae|arthropod family (generic term)
+cercopithecidae|1
+(noun)|Cercopithecidae|family Cercopithecidae|mammal family (generic term)
+cercopithecus|1
+(noun)|Cercopithecus|genus Cercopithecus|mammal genus (generic term)
+cercopithecus aethiops|1
+(noun)|grivet|Cercopithecus aethiops|guenon (generic term)|guenon monkey (generic term)
+cercopithecus aethiops pygerythrus|1
+(noun)|vervet|vervet monkey|Cercopithecus aethiops pygerythrus|guenon (generic term)|guenon monkey (generic term)
+cercopithecus aethiops sabaeus|1
+(noun)|green monkey|African green monkey|Cercopithecus aethiops sabaeus|guenon (generic term)|guenon monkey (generic term)
+cercopithecus talapoin|1
+(noun)|talapoin|Cercopithecus talapoin|guenon (generic term)|guenon monkey (generic term)
+cercospora|1
+(noun)|Cercospora|genus Cercospora|fungus genus (generic term)
+cercospora kopkei|1
+(noun)|yellow spot fungus|Cercospora kopkei|fungus (generic term)
+cercosporella|1
+(noun)|Cercosporella|genus Cercosporella|fungus genus (generic term)
+cere|1
+(verb)|wrap (generic term)|wrap up (generic term)
+cereal|4
+(adj)|seed (related term)
+(noun)|cereal grass|grass (generic term)
+(noun)|grain|food grain|foodstuff (generic term)|food product (generic term)
+(noun)|breakfast food (generic term)
+cereal bowl|1
+(noun)|bowl (generic term)
+cereal box|1
+(noun)|box (generic term)
+cereal grass|1
+(noun)|cereal|grass (generic term)
+cereal oat|1
+(noun)|Avena sativa|oat (generic term)
+cerebellar|1
+(adj)|neural structure (related term)
+cerebellar artery|1
+(noun)|arteria cerebelli|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+cerebellar hemisphere|1
+(noun)|neural structure (generic term)
+cerebellar vein|1
+(noun)|vena cerebellum|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cerebellum|1
+(noun)|neural structure (generic term)
+cerebral|2
+(adj)|intellectual|emotional (antonym)
+(adj)|neural structure (related term)
+cerebral aneurysm|1
+(noun)|aneurysm (generic term)|aneurism (generic term)
+cerebral aqueduct|1
+(noun)|Sylvian aqueduct|aqueductus cerebri|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+cerebral artery|1
+(noun)|arteria cerebri|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+cerebral cortex|1
+(noun)|cerebral mantle|pallium|cortex|neural structure (generic term)
+cerebral death|1
+(noun)|brain death|death (generic term)
+cerebral hemisphere|1
+(noun)|hemisphere|neural structure (generic term)
+cerebral hemorrhage|1
+(noun)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+cerebral mantle|1
+(noun)|cerebral cortex|pallium|cortex|neural structure (generic term)
+cerebral palsy|1
+(noun)|spastic paralysis|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+cerebral peduncle|1
+(noun)|peduncle|nerve pathway (generic term)|tract (generic term)|nerve tract (generic term)|pathway (generic term)
+cerebral thrombosis|1
+(noun)|thrombosis (generic term)
+cerebral vein|1
+(noun)|vena cerebri|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cerebrate|1
+(verb)|think|cogitate|think over (related term)|think out (related term)|think up (related term)
+cerebration|1
+(noun)|thinking|thought|thought process|intellection|mentation|higher cognitive process (generic term)
+cerebromeningitis|1
+(noun)|meningoencephalitis|encephalomeningitis|meningitis (generic term)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+cerebrospinal|1
+(adj)|neural structure|funiculus (related term)|neural structure (related term)
+cerebrospinal fever|1
+(noun)|cerebrospinal meningitis|epidemic meningitis|brain fever|meningitis (generic term)
+cerebrospinal fluid|1
+(noun)|spinal fluid|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+cerebrospinal meningitis|1
+(noun)|epidemic meningitis|brain fever|cerebrospinal fever|meningitis (generic term)
+cerebrovascular|1
+(adj)|vessel|vas (related term)|neural structure (related term)
+cerebrovascular accident|1
+(noun)|stroke|apoplexy|CVA|attack (generic term)
+cerebrum|1
+(noun)|neural structure (generic term)
+cerecloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+cerement|1
+(noun)|pall|shroud|winding-sheet|winding-clothes|burial garment (generic term)
+ceremonial|2
+(adj)|formal (similar term)
+(noun)|ceremony|ceremonial occasion|observance|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+ceremonial dance|1
+(noun)|ritual dancing|ritual dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+ceremonial occasion|1
+(noun)|ceremony|ceremonial|observance|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+ceremonially|2
+(adv)|ceremoniously|unceremoniously (antonym)
+(adv)|ritually
+ceremonious|2
+(adj)|pompous|activity (related term)|elegance (related term)
+(adj)|conventional|formal (similar term)
+ceremoniously|1
+(adv)|ceremonially|unceremoniously (antonym)
+ceremoniousness|1
+(noun)|formality (generic term)|formalness (generic term)|unceremoniousness (antonym)
+ceremony|2
+(noun)|ceremonial|ceremonial occasion|observance|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+(noun)|activity (generic term)
+ceres|2
+(noun)|Ceres|Roman deity (generic term)
+(noun)|Ceres|asteroid (generic term)
+ceresin|1
+(noun)|wax (generic term)
+cereus|1
+(noun)|Cereus|genus Cereus|caryophylloid dicot genus (generic term)
+ceric|1
+(adj)|metallic element|metal (related term)
+ceriman|2
+(noun)|Monstera deliciosa|monstera (generic term)
+(noun)|monstera|edible fruit (generic term)
+cerise|2
+(adj)|red|reddish|ruddy|blood-red|carmine|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+(noun)|cherry|cherry red|red (generic term)|redness (generic term)
+cerium|1
+(noun)|Ce|atomic number 58|metallic element (generic term)|metal (generic term)
+cerivastatin|1
+(noun)|Baycol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+cernuous|1
+(adj)|drooping|nodding|pendulous|unerect (similar term)
+cero|2
+(noun)|pintado|kingfish|Scomberomorus regalis|Spanish mackerel (generic term)
+(noun)|king mackerel|cavalla|Scomberomorus cavalla|Spanish mackerel (generic term)
+cerotic acid|1
+(noun)|hexacosanoic acid|acid (generic term)
+cerous|1
+(adj)|metallic element|metal (related term)
+ceroxylon|1
+(noun)|Ceroxylon|genus Ceroxylon|monocot genus (generic term)|liliopsid genus (generic term)
+ceroxylon alpinum|1
+(noun)|wax palm|Ceroxylon andicola|Ceroxylon alpinum|feather palm (generic term)
+ceroxylon andicola|1
+(noun)|wax palm|Ceroxylon andicola|Ceroxylon alpinum|feather palm (generic term)
+cerriped|1
+(noun)|barnacle|cerripede|crustacean (generic term)
+cerripede|1
+(noun)|barnacle|cerriped|crustacean (generic term)
+cert|1
+(noun)|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+certain|7
+(adj)|definite (similar term)
+(adj)|sure|convinced (similar term)|positive (similar term)|confident (similar term)|unsure (antonym)|uncertain (antonym)
+(adj)|definite (similar term)|indisputable (similar term)|sure (similar term)|sure as shooting (similar term)|uncertain (antonym)
+(adj)|sure|bound (similar term)|destined (similar term)|doomed (similar term)|fated (similar term)|foreordained (similar term)|predestinate (similar term)|predestined (similar term)|in for (similar term)|predictable (related term)|uncertain (antonym)
+(adj)|sealed|unsealed (antonym)
+(adj)|sure|reliable (similar term)|dependable (similar term)
+(adj)|sure|careful (similar term)
+certainly|1
+(adv)|surely|sure|for sure|for certain|sure enough|sure as shooting
+certainty|2
+(noun)|cognitive state (generic term)|state of mind (generic term)|uncertainty (antonym)
+(noun)|sure thing|foregone conclusion|quality (generic term)|uncertainty (antonym)
+certhia|1
+(noun)|Certhia|genus Certhia|bird genus (generic term)
+certhia americana|1
+(noun)|brown creeper|American creeper|Certhia americana|creeper (generic term)|tree creeper (generic term)
+certhia familiaris|1
+(noun)|European creeper|Certhia familiaris|creeper (generic term)|tree creeper (generic term)
+certhiidae|1
+(noun)|Certhiidae|family Certhiidae|bird family (generic term)
+certifiable|2
+(adj)|certified|insane (similar term)
+(adj)|certified (similar term)
+certificate|4
+(noun)|certification|credential|credentials|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|security|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(verb)|award (generic term)|present (generic term)
+(verb)|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)
+certificate of deposit|1
+(noun)|CD|debt instrument (generic term)|certificate of indebtedness (generic term)
+certificate of incorporation|1
+(noun)|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+certificate of indebtedness|1
+(noun)|debt instrument|document (generic term)
+certificated|1
+(adj)|credentialed|documented|certified (similar term)
+certification|4
+(noun)|enfranchisement|authorization (generic term)|authorisation (generic term)|empowerment (generic term)|disenfranchisement (antonym)
+(noun)|documentation|corroboration|confirmation (generic term)
+(noun)|certificate|credential|credentials|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|authentication|validation (generic term)|proof (generic term)|substantiation (generic term)
+certificatory|1
+(adj)|supportive (similar term)
+certified|4
+(adj)|certifiable (similar term)|certificated (similar term)|credentialed (similar term)|documented (similar term)|uncertified (antonym)
+(adj)|secure (similar term)
+(adj)|certifiable|insane (similar term)
+(adj)|qualified|registered (similar term)
+certified check|1
+(noun)|certified cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+certified cheque|1
+(noun)|certified check|check (generic term)|bank check (generic term)|cheque (generic term)
+certified milk|1
+(noun)|milk (generic term)
+certified public accountant|1
+(noun)|CPA|accountant (generic term)|comptroller (generic term)|controller (generic term)
+certify|5
+(verb)|attest|manifest|demonstrate|evidence|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|secure (generic term)
+(verb)|license|licence|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|decertify (antonym)
+(verb)|endorse|indorse|guarantee (generic term)|warrant (generic term)
+(verb)|declare (generic term)|adjudge (generic term)|hold (generic term)
+certiorari|1
+(noun)|writ of certiorari|writ (generic term)|judicial writ (generic term)
+certitude|1
+(noun)|cocksureness|overconfidence|certainty (generic term)
+cerulean|2
+(adj)|azure|sky-blue|bright blue|chromatic (similar term)
+(noun)|azure|sapphire|lazuline|sky-blue|blue (generic term)|blueness (generic term)
+cerulean blue|1
+(noun)|pigment (generic term)
+cerumen|1
+(noun)|earwax|wax (generic term)
+ceruminous|1
+(adj)|wax (related term)
+ceruse|1
+(noun)|white lead|lead carbonate|pigment (generic term)
+cerussite|1
+(noun)|white lead ore|mineral (generic term)
+cervantes|1
+(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+cervantes saavedra|1
+(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+cervical|2
+(adj)|orifice|opening|porta (related term)
+(adj)|external body part (related term)
+cervical artery|1
+(noun)|areteria cervicalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+cervical canal|1
+(noun)|canalis cervicis uteri|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+cervical cap|1
+(noun)|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+cervical disc syndrome|1
+(noun)|cervical root syndrome|syndrome (generic term)
+cervical glands|1
+(noun)|cervical glands of the uterus|glandulae cervicales uteri|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+cervical glands of the uterus|1
+(noun)|cervical glands|glandulae cervicales uteri|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+cervical nerve|1
+(noun)|spinal nerve (generic term)|nervus spinalis (generic term)
+cervical plexus|1
+(noun)|plexus cervicalis|nerve plexus (generic term)
+cervical root syndrome|1
+(noun)|cervical disc syndrome|syndrome (generic term)
+cervical smear|1
+(noun)|Pap smear|Papanicolaou smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+cervical vein|1
+(noun)|deep cervical vein|vena cervicalis profunda|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cervical vertebra|1
+(noun)|neck bone|vertebra (generic term)
+cervicitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cervicofacial actinomycosis|1
+(noun)|lumpy jaw|actinomycosis (generic term)
+cervid|1
+(noun)|deer|ruminant (generic term)
+cervidae|1
+(noun)|Cervidae|family Cervidae|mammal family (generic term)
+cervine|1
+(adj)|ruminant (related term)
+cervix|2
+(noun)|neck|external body part (generic term)
+(noun)|uterine cervix|cervix uteri|orifice (generic term)|opening (generic term)|porta (generic term)
+cervix uteri|1
+(noun)|cervix|uterine cervix|orifice (generic term)|opening (generic term)|porta (generic term)
+cervus|1
+(noun)|Cervus|genus Cervus|mammal genus (generic term)
+cervus canadensis|1
+(noun)|wapiti|American elk|Cervus canadensis|deer (generic term)|cervid (generic term)
+cervus elaphus|1
+(noun)|red deer|Cervus elaphus|deer (generic term)|cervid (generic term)
+cervus nipon|1
+(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer (generic term)|cervid (generic term)
+cervus sika|1
+(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer (generic term)|cervid (generic term)
+cervus unicolor|1
+(noun)|sambar|sambur|Cervus unicolor|deer (generic term)|cervid (generic term)
+ceryle|1
+(noun)|Ceryle|genus Ceryle|bird genus (generic term)
+ceryle alcyon|1
+(noun)|belted kingfisher|Ceryle alcyon|kingfisher (generic term)
+cesar chavez|1
+(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader (generic term)
+cesar estrada chavez|1
+(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader (generic term)
+cesar franck|1
+(noun)|Franck|Cesar Franck|composer (generic term)
+cesar ritz|1
+(noun)|Ritz|Cesar Ritz|hotelier (generic term)|hotelkeeper (generic term)|hotel manager (generic term)|hotelman (generic term)|hosteller (generic term)
+cesare borgia|1
+(noun)|Borgia|Cesare Borgia|cardinal (generic term)|soldier (generic term)
+cesarean|2
+(adj)|cesarian|caesarean|caesarian|delivery|obstetrical delivery (related term)
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+cesarean delivery|1
+(noun)|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+cesarean section|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarian section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+cesarian|2
+(adj)|cesarean|caesarean|caesarian|delivery|obstetrical delivery (related term)
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|cesarian section|caesarean section|caesarian section|C-section|cesarean|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+cesarian section|1
+(noun)|cesarean delivery|caesarean delivery|caesarian delivery|cesarean section|caesarean section|caesarian section|C-section|cesarean|cesarian|caesarean|caesarian|abdominal delivery|delivery (generic term)|obstetrical delivery (generic term)
+cesium|1
+(noun)|caesium|Cs|atomic number 55|metallic element (generic term)|metal (generic term)
+cesium 137|1
+(noun)|cesium (generic term)|caesium (generic term)|Cs (generic term)|atomic number 55 (generic term)
+cespitose|1
+(adj)|caespitose|tufted|ungregarious (similar term)
+cessation|1
+(noun)|surcease|stop (generic term)|halt (generic term)
+cession|1
+(noun)|ceding|relinquishment (generic term)|relinquishing (generic term)
+cesspit|1
+(noun)|cesspool|sink|sump|cistern (generic term)
+cesspool|1
+(noun)|cesspit|sink|sump|cistern (generic term)
+cestida|1
+(noun)|Cestida|order Cestida|animal order (generic term)
+cestidae|1
+(noun)|Cestidae|family Cestidae|ctenophore family (generic term)
+cestoda|1
+(noun)|Cestoda|class Cestoda|class (generic term)
+cestode|1
+(noun)|tapeworm|flatworm (generic term)|platyhelminth (generic term)
+cestrum|1
+(noun)|Cestrum|genus Cestrum|asterid dicot genus (generic term)
+cestrum diurnum|1
+(noun)|day jessamine|Cestrum diurnum|shrub (generic term)|bush (generic term)
+cestrum nocturnum|1
+(noun)|night jasmine|night jessamine|Cestrum nocturnum|shrub (generic term)|bush (generic term)
+cestum|1
+(noun)|Cestum|genus Cestum|ctenophore genus (generic term)
+cestum veneris|1
+(noun)|Venus's girdle|Cestum veneris|ctenophore (generic term)|comb jelly (generic term)
+cetacea|1
+(noun)|Cetacea|order Cetacea|animal order (generic term)
+cetacean|2
+(adj)|cetaceous|animal order (related term)
+(noun)|cetacean mammal|blower|aquatic mammal (generic term)
+cetacean mammal|1
+(noun)|cetacean|blower|aquatic mammal (generic term)
+cetaceous|1
+(adj)|cetacean|animal order (related term)
+cetchup|1
+(noun)|catsup|ketchup|tomato ketchup|condiment (generic term)
+ceterach|1
+(noun)|Ceterach|genus Ceterach|fern genus (generic term)
+ceterach officinarum|1
+(noun)|scale fern|scaly fern|Asplenium ceterach|Ceterach officinarum|fern (generic term)
+cetonia|1
+(noun)|Cetonia|genus Cetonia|arthropod genus (generic term)
+cetonia aurata|1
+(noun)|rose chafer|rose beetle|Cetonia aurata|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+cetoniidae|1
+(noun)|Cetoniidae|subfamily Cetoniidae|arthropod family (generic term)
+cetorhinidae|1
+(noun)|Cetorhinidae|family Cetorhinidae|fish family (generic term)
+cetorhinus|1
+(noun)|Cetorhinus|genus Cetorhinus|fish genus (generic term)
+cetorhinus maximus|1
+(noun)|basking shark|Cetorhinus maximus|mackerel shark (generic term)
+cetraria|1
+(noun)|Cetraria|genus Cetraria|fungus genus (generic term)
+cetraria islandica|1
+(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen (generic term)
+cetrimide|1
+(noun)|cationic detergent (generic term)|invert soap (generic term)|disinfectant (generic term)|germicide (generic term)|antimicrobic (generic term)|antimicrobial (generic term)
+cetus|1
+(noun)|Cetus|constellation (generic term)
+ceylon|2
+(noun)|Ceylon|island (generic term)
+(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country (generic term)|state (generic term)|land (generic term)
+ceylon bowstring hemp|1
+(noun)|Ceylon bowstring hemp|Sansevieria zeylanica|sansevieria (generic term)|bowstring hemp (generic term)
+ceylon cinnamon|1
+(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel (generic term)
+ceylon cinnamon tree|1
+(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel (generic term)
+ceylon gooseberry|1
+(noun)|ketembilla|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+ceylonese|1
+(adj)|Sri Lankan|Ceylonese|island (related term)
+ceylonite|1
+(noun)|Ceylonite|pleonaste|spinel (generic term)
+cezanne|1
+(noun)|Cezanne|Paul Cezanne|painter (generic term)
+cf|3
+(noun)|californium|Cf|atomic number 98|metallic element (generic term)|metal (generic term)
+(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|mucoviscidosis|fibrosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+(adv)|cf.
+cf.|1
+(adv)|cf
+cfc|1
+(noun)|chlorofluorocarbon|CFC|fluorocarbon (generic term)|pollutant (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+cfo|1
+(noun)|chief financial officer|CFO|corporate executive (generic term)|business executive (generic term)
+cgs|1
+(noun)|cgs system|metric system (generic term)
+cgs system|1
+(noun)|cgs|metric system (generic term)
+ch'i|1
+(noun)|qi|chi|ki|energy (generic term)|vim (generic term)|vitality (generic term)
+ch'ing|1
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+ch'ing dynasty|1
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+cha-cha|2
+(noun)|cha-cha-cha|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+cha-cha-cha|1
+(noun)|cha-cha|ballroom dancing (generic term)|ballroom dance (generic term)
+chabad|2
+(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement (generic term)
+(noun)|Chabad|Chabad Hasidism|Hasidism (generic term)|Hassidism (generic term)|Chasidism (generic term)|Chassidism (generic term)
+chabad-lubavitch|1
+(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement (generic term)
+chabad hasidism|1
+(noun)|Chabad|Chabad Hasidism|Hasidism (generic term)|Hassidism (generic term)|Chasidism (generic term)|Chassidism (generic term)
+chabasite|1
+(noun)|chabazite|zeolite (generic term)
+chabazite|1
+(noun)|chabasite|zeolite (generic term)
+chablis|2
+(noun)|Chablis|town (generic term)
+(noun)|Chablis|white Burgundy|Burgundy (generic term)|Burgundy wine (generic term)|white wine (generic term)
+chachalaca|1
+(noun)|gallinaceous bird (generic term)|gallinacean (generic term)
+chachka|2
+(noun)|tchotchke|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+(noun)|tchotchke|collectible (generic term)|collectable (generic term)
+chacma|1
+(noun)|chacma baboon|Papio ursinus|baboon (generic term)
+chacma baboon|1
+(noun)|chacma|Papio ursinus|baboon (generic term)
+chad|4
+(noun)|paper (generic term)
+(noun)|Lake Chad|Chad|lake (generic term)
+(noun)|Chad|Republic of Chad|Tchad|African country (generic term)|African nation (generic term)
+(noun)|Chad|Chadic|Chadic language|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+chadar|1
+(noun)|chador|chaddar|chuddar|head covering (generic term)|veil (generic term)
+chaddar|1
+(noun)|chador|chadar|chuddar|head covering (generic term)|veil (generic term)
+chadian|2
+(adj)|Chadian|African country|African nation (related term)
+(noun)|Chadian|African (generic term)
+chadian franc|1
+(noun)|Chadian franc|franc (generic term)
+chadic|1
+(noun)|Chad|Chadic|Chadic language|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+chadic language|1
+(noun)|Chad|Chadic|Chadic language|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+chadlock|1
+(noun)|field mustard|wild mustard|charlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+chador|1
+(noun)|chadar|chaddar|chuddar|head covering (generic term)|veil (generic term)
+chaenactis|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+chaenomeles|1
+(noun)|Chaenomeles|genus Chaenomeles|rosid dicot genus (generic term)
+chaenomeles japonica|1
+(noun)|japonica|maule's quince|Chaenomeles japonica|flowering quince (generic term)
+chaenomeles speciosa|1
+(noun)|Japanese quince|Chaenomeles speciosa|flowering quince (generic term)
+chaenopsis|1
+(noun)|Chaenopsis|genus Chaenopsis|fish genus (generic term)
+chaenopsis ocellata|1
+(noun)|bluethroat pikeblenny|Chaenopsis ocellata|pikeblenny (generic term)
+chaeronea|1
+(noun)|Chaeronea|pitched battle (generic term)
+chaeta|1
+(noun)|seta (generic term)
+chaetal|1
+(adj)|seta (related term)
+chaetodipterus|1
+(noun)|Chaetodipterus|genus Chaetodipterus|fish genus (generic term)
+chaetodipterus faber|1
+(noun)|spadefish|angelfish|Chaetodipterus faber|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+chaetodon|1
+(noun)|butterfly fish (generic term)
+chaetodontidae|1
+(noun)|Chaetodontidae|family Chaetodontidae|fish family (generic term)
+chaetognath|1
+(noun)|arrowworm|worm (generic term)
+chaetognatha|1
+(noun)|Chaetognatha|phylum Chaetognatha|phylum (generic term)
+chaetognathan|1
+(adj)|chaetognathous|phylum (related term)
+chaetognathous|1
+(adj)|chaetognathan|phylum (related term)
+chafe|8
+(noun)|tenderness (generic term)|soreness (generic term)|rawness (generic term)
+(noun)|annoyance|vexation|anger (generic term)|choler (generic term)|ire (generic term)
+(verb)|gall|fret|irritate (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|devil|displease (generic term)
+(verb)|excoriate|abrade (generic term)|corrade (generic term)|abrase (generic term)|rub down (generic term)|rub off (generic term)
+(verb)|rub|fray|fret|scratch|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|warm (generic term)
+chafed|1
+(adj)|galled|painful (similar term)
+chafeweed|1
+(noun)|wood cudweed|Gnaphalium sylvaticum|cudweed (generic term)
+chaff|3
+(noun)|husk|shuck|stalk|straw|stubble|plant material (generic term)
+(noun)|foil (generic term)
+(verb)|kid|jolly|josh|banter|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+chaffer|2
+(verb)|haggle|higgle|huckster|dicker (generic term)|bargain (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+chaffinch|1
+(noun)|Fringilla coelebs|finch (generic term)
+chafflike|1
+(adj)|chaffy|plant material (related term)
+chaffweed|1
+(noun)|bastard pimpernel|false pimpernel|subshrub (generic term)|suffrutex (generic term)
+chaffy|2
+(adj)|chafflike|plant material (related term)
+(adj)|worthless (similar term)
+chafing|1
+(noun)|tenderness (generic term)|soreness (generic term)|rawness (generic term)
+chafing dish|1
+(noun)|cooking utensil (generic term)|cookware (generic term)
+chafing gear|1
+(noun)|covering (generic term)
+chaga|1
+(noun)|Kichaga|Chaga|Chagga|Bantu (generic term)|Bantoid language (generic term)
+chagall|1
+(noun)|Chagall|Marc Chagall|painter (generic term)
+chagatai|1
+(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+chagga|1
+(noun)|Kichaga|Chaga|Chagga|Bantu (generic term)|Bantoid language (generic term)
+chagrin|2
+(noun)|humiliation|mortification|embarrassment (generic term)
+(verb)|humiliate|mortify|humble|abase|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+chagrined|1
+(adj)|abashed|embarrassed|discomposed (similar term)
+chahta|1
+(noun)|Choctaw|Chahta|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+chaim azriel weizmann|1
+(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman (generic term)|solon (generic term)|national leader (generic term)
+chaim soutine|1
+(noun)|Soutine|Chaim Soutine|painter (generic term)
+chaim weizmann|1
+(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman (generic term)|solon (generic term)|national leader (generic term)
+chain|11
+(noun)|concatenation|series (generic term)
+(noun)|chemical chain|unit (generic term)|building block (generic term)
+(noun)|ligament (generic term)
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|restraint (generic term)|constraint (generic term)
+(noun)|linear unit (generic term)
+(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist (generic term)
+(noun)|range|mountain range|range of mountains|mountain chain|chain of mountains|geological formation (generic term)|formation (generic term)
+(noun)|string|strand|necklace (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unchain (antonym)
+chain-smoke|1
+(verb)|smoke (generic term)
+chain-smoker|1
+(noun)|smoker (generic term)|tobacco user (generic term)
+chain armor|1
+(noun)|chain mail|ring mail|mail|chain armour|ring armor|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+chain armour|1
+(noun)|chain mail|ring mail|mail|chain armor|ring armor|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+chain fern|1
+(noun)|fern (generic term)
+chain gang|1
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+chain letter|1
+(noun)|letter (generic term)|missive (generic term)
+chain lightning|1
+(noun)|forked lightning|lightning (generic term)
+chain mail|1
+(noun)|ring mail|mail|chain armor|chain armour|ring armor|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+chain of mountains|1
+(noun)|range|mountain range|range of mountains|chain|mountain chain|geological formation (generic term)|formation (generic term)
+chain pickerel|1
+(noun)|chain pike|Esox niger|pickerel (generic term)
+chain pike|1
+(noun)|chain pickerel|Esox niger|pickerel (generic term)
+chain printer|1
+(noun)|impact printer (generic term)
+chain reaction|2
+(noun)|chemical reaction (generic term)|reaction (generic term)
+(noun)|nuclear reaction (generic term)
+chain reactor|1
+(noun)|atomic pile|atomic reactor|pile|nuclear reactor (generic term)|reactor (generic term)
+chain saw|1
+(noun)|chainsaw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+chain stitch|2
+(noun)|crochet stitch (generic term)
+(noun)|machine stitch (generic term)|sewing-machine stitch (generic term)
+chain store|1
+(noun)|shop (generic term)|store (generic term)
+chain tongs|1
+(noun)|pipe wrench (generic term)|tube wrench (generic term)
+chain up|1
+(verb)|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+chain wrench|1
+(noun)|chain tongs (generic term)
+chained|1
+(adj)|enchained|in chains|bound (similar term)
+chainlike|1
+(adj)|catenulate|formed (similar term)
+chainlink fence|1
+(noun)|fence (generic term)|fencing (generic term)
+chains|1
+(noun)|irons|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+chainsaw|1
+(noun)|chain saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+chair|6
+(noun)|seat (generic term)
+(noun)|professorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+(noun)|president|chairman|chairwoman|chairperson|presiding officer (generic term)
+(noun)|electric chair|death chair|hot seat|instrument of execution (generic term)
+(verb)|chairman|head (generic term)|lead (generic term)
+(verb)|moderate|lead|hash out (generic term)|discuss (generic term)|talk over (generic term)
+chair car|1
+(noun)|parlor car|parlour car|drawing-room car|palace car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+chair lift|1
+(noun)|chairlift|ski tow (generic term)|ski lift (generic term)|lift (generic term)
+chairlift|1
+(noun)|chair lift|ski tow (generic term)|ski lift (generic term)|lift (generic term)
+chairman|2
+(noun)|president|chairwoman|chair|chairperson|presiding officer (generic term)
+(verb)|chair|head (generic term)|lead (generic term)
+chairman of the board|1
+(noun)|corporate executive (generic term)|business executive (generic term)
+chairmanship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chairperson|1
+(noun)|president|chairman|chairwoman|chair|presiding officer (generic term)
+chairwoman|1
+(noun)|president|chairman|chair|chairperson|presiding officer (generic term)
+chaise|2
+(noun)|chaise longue|daybed|chair (generic term)
+(noun)|shay|carriage (generic term)|equipage (generic term)|rig (generic term)
+chaise longue|1
+(noun)|chaise|daybed|chair (generic term)
+chait|1
+(noun)|Chait|Caitra|Hindu calendar month (generic term)
+chaja|1
+(noun)|Chauna torquata|crested screamer (generic term)
+chalaza|2
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|animal tissue (generic term)
+chalazion|1
+(noun)|Meibomian cyst|sebaceous cyst (generic term)|pilar cyst (generic term)|wen (generic term)|steatocystoma (generic term)
+chalcanthite|1
+(noun)|blue vitriol|blue copperas|blue stone|copper sulfate (generic term)|copper sulphate (generic term)|cupric sulfate (generic term)|cupric sulphate (generic term)
+chalcedon|2
+(noun)|Chalcedon|Kadikoy|town (generic term)
+(noun)|Chalcedon|Council of Chalcedon|ecumenical council (generic term)
+chalcedony|1
+(noun)|calcedony|quartz (generic term)|transparent gem (generic term)
+chalcid|1
+(noun)|chalcid fly|chalcidfly|chalcid wasp|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+chalcid fly|1
+(noun)|chalcidfly|chalcid|chalcid wasp|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+chalcid wasp|1
+(noun)|chalcid fly|chalcidfly|chalcid|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+chalcidae|1
+(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family (generic term)
+chalcidfly|1
+(noun)|chalcid fly|chalcid|chalcid wasp|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+chalcididae|1
+(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family (generic term)
+chalcis|1
+(noun)|Chalcis|genus Chalcis|arthropod genus (generic term)
+chalcis fly|1
+(noun)|chalcid fly (generic term)|chalcidfly (generic term)|chalcid (generic term)|chalcid wasp (generic term)
+chalcocite|1
+(noun)|copper glance|mineral (generic term)
+chalcopyrite|1
+(noun)|copper pyrites|mineral (generic term)
+chalcostigma|1
+(noun)|Chalcostigma|genus Chalcostigma|bird genus (generic term)
+chaldaea|2
+(noun)|Chaldea|Chaldaea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Babylonia|Chaldaea|Chaldea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+chaldaean|3
+(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Chaldean|Chaldaean|Chaldee|occultist (generic term)
+(noun)|Chaldean|Chaldaean|Chaldee|Semite (generic term)
+chaldea|2
+(noun)|Chaldea|Chaldaea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Babylonia|Chaldaea|Chaldea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+chaldean|3
+(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Chaldean|Chaldaean|Chaldee|occultist (generic term)
+(noun)|Chaldean|Chaldaean|Chaldee|Semite (generic term)
+chaldee|3
+(adj)|Chaldean|Chaldaean|Chaldee|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Chaldean|Chaldaean|Chaldee|occultist (generic term)
+(noun)|Chaldean|Chaldaean|Chaldee|Semite (generic term)
+chaldron|1
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+chalet|1
+(noun)|house (generic term)
+chalice|1
+(noun)|goblet|cup (generic term)
+chalice vine|1
+(noun)|trumpet flower|cupflower|Solandra guttata|shrub (generic term)|bush (generic term)
+chalk|5
+(noun)|calcite (generic term)
+(noun)|white (generic term)|whiteness (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+(noun)|writing implement (generic term)
+(verb)|draw (generic term)
+chalk dust|1
+(noun)|dust (generic term)
+chalk line|1
+(noun)|snap line|snapline|string (generic term)|twine (generic term)
+chalk out|1
+(verb)|sketch|draw (generic term)
+chalk pit|1
+(noun)|chalkpit|pit (generic term)|quarry (generic term)|stone pit (generic term)
+chalk talk|1
+(noun)|talk (generic term)
+chalk up|2
+(verb)|run up|owe (generic term)
+(verb)|tally|record (generic term)|enter (generic term)|put down (generic term)
+chalkboard|1
+(noun)|blackboard|sheet (generic term)|flat solid (generic term)
+chalkpit|1
+(noun)|chalk pit|pit (generic term)|quarry (generic term)|stone pit (generic term)
+chalkstone|1
+(noun)|tophus|urate (generic term)
+chalky|2
+(adj)|calcareous|carbonate (related term)
+(adj)|achromatic (similar term)
+challah|1
+(noun)|hallah|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+challenge|9
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|speech act (generic term)
+(noun)|questioning (generic term)|inquiring (generic term)
+(noun)|objection (generic term)
+(noun)|demand (generic term)
+(verb)|dispute|gainsay|contest (generic term)|contend (generic term)|repugn (generic term)
+(verb)|invite (generic term)|bid (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|take exception|object (generic term)
+challengeable|1
+(adj)|contestable (similar term)
+challenger|1
+(noun)|rival|competitor|competition|contender|contestant (generic term)
+challenging|3
+(adj)|ambitious|difficult (similar term)|hard (similar term)
+(adj)|thought-provoking|stimulating (similar term)
+(adj)|intriguing|provocative (similar term)
+challis|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chalons|1
+(noun)|Chalons|Chalons-sur-Marne|pitched battle (generic term)
+chalons-sur-marne|1
+(noun)|Chalons|Chalons-sur-Marne|pitched battle (generic term)
+chalybeate|1
+(adj)|metallic element|metal (related term)
+chalybite|1
+(noun)|siderite|iron ore (generic term)
+chamaea|1
+(noun)|Chamaea|genus Chamaea|bird genus (generic term)
+chamaea fasciata|1
+(noun)|wren-tit|Chamaea fasciata|titmouse (generic term)|tit (generic term)
+chamaecrista|1
+(noun)|Chamaecrista|genus Chamaecrista|rosid dicot genus (generic term)
+chamaecrista fasciculata|1
+(noun)|partridge pea|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub (generic term)|suffrutex (generic term)
+chamaecyparis|1
+(noun)|Chamaecyparis|genus Chamaecyparis|gymnosperm genus (generic term)
+chamaecyparis lawsoniana|1
+(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar (generic term)|cedar tree (generic term)
+chamaecyparis nootkatensis|1
+(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar (generic term)|cedar tree (generic term)
+chamaecyparis thyoides|1
+(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+chamaecytisus|1
+(noun)|Chamaecytisus|genus Chamaecytisus|rosid dicot genus (generic term)
+chamaecytisus palmensis|1
+(noun)|tagasaste|Chamaecytisus palmensis|Cytesis proliferus|shrub (generic term)|bush (generic term)
+chamaedaphne|1
+(noun)|Chamaedaphne|genus Chamaedaphne|dilleniid dicot genus (generic term)
+chamaedaphne calyculata|1
+(noun)|leatherleaf|Chamaedaphne calyculata|shrub (generic term)|bush (generic term)
+chamaeleo|1
+(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus (generic term)
+chamaeleo chamaeleon|1
+(noun)|African chameleon|Chamaeleo chamaeleon|chameleon (generic term)|chamaeleon (generic term)
+chamaeleo oweni|1
+(noun)|horned chameleon|Chamaeleo oweni|chameleon (generic term)|chamaeleon (generic term)
+chamaeleon|2
+(noun)|Chamaeleon|Chameleon|constellation (generic term)
+(noun)|chameleon|lizard (generic term)
+chamaeleonidae|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+chamaeleontidae|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+chamaemelum|1
+(noun)|Chamaemelum|genus Chamaemelum|asterid dicot genus (generic term)
+chamaemelum nobilis|1
+(noun)|chamomile|camomile|Chamaemelum nobilis|Anthemis nobilis|herb (generic term)|herbaceous plant (generic term)
+chamber|6
+(noun)|enclosure (generic term)
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|room (generic term)
+(noun)|assembly (generic term)
+(noun)|bedroom|sleeping room|bedchamber|room (generic term)
+(verb)|house (generic term)|put up (generic term)|domiciliate (generic term)
+chamber music|1
+(noun)|classical music (generic term)|classical (generic term)|serious music (generic term)
+chamber of commerce|1
+(noun)|association (generic term)
+chamber orchestra|1
+(noun)|orchestra (generic term)
+chambered|1
+(adj)|divided (similar term)
+chambered nautilus|1
+(noun)|pearly nautilus|nautilus|cephalopod (generic term)|cephalopod mollusk (generic term)
+chamberlain|3
+(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|treasurer (generic term)|financial officer (generic term)
+(noun)|steward (generic term)
+chambermaid|1
+(noun)|fille de chambre|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+chamberpot|1
+(noun)|potty|thunder mug|receptacle (generic term)
+chambers|1
+(noun)|Chambers|William Chambers|Sir William Chambers|architect (generic term)|designer (generic term)
+chambray|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chameleon|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Chamaeleon|Chameleon|constellation (generic term)
+(noun)|chamaeleon|lizard (generic term)
+chameleon tree frog|1
+(noun)|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+chamfer|3
+(noun)|bevel|cant|edge (generic term)
+(verb)|bevel|cut (generic term)
+(verb)|furrow|chase|cut (generic term)
+chamfer bit|1
+(noun)|bit (generic term)
+chamfer plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+chamfron|1
+(noun)|chanfron|testiere|frontstall|front-stall|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+chammy|1
+(noun)|chamois|chamois leather|chammy leather|shammy|shammy leather|leather (generic term)
+chammy leather|1
+(noun)|chamois|chamois leather|chammy|shammy|shammy leather|leather (generic term)
+chamois|2
+(noun)|chamois leather|chammy|chammy leather|shammy|shammy leather|leather (generic term)
+(noun)|Rupicapra rupicapra|goat antelope (generic term)
+chamois cloth|1
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+chamois cress|1
+(noun)|Pritzelago alpina|Lepidium alpina|herb (generic term)|herbaceous plant (generic term)
+chamois leather|1
+(noun)|chamois|chammy|chammy leather|shammy|shammy leather|leather (generic term)
+chamomile|1
+(noun)|camomile|Chamaemelum nobilis|Anthemis nobilis|herb (generic term)|herbaceous plant (generic term)
+chamosite|1
+(noun)|iron ore (generic term)
+champ|3
+(noun)|champion|title-holder|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(verb)|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+(verb)|chomp|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+champagne|2
+(noun)|bubbly|sparkling wine (generic term)
+(noun)|Champagne|Champagne-Ardenne|French region (generic term)
+champagne-ardenne|1
+(noun)|Champagne|Champagne-Ardenne|French region (generic term)
+champagne cup|1
+(noun)|cup (generic term)
+champagne flute|1
+(noun)|flute|flute glass|wineglass (generic term)
+champaign|2
+(noun)|plain|field|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|Champaign|town (generic term)
+champerty|1
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+champion|6
+(adj)|prizewinning|best (similar term)
+(noun)|champ|title-holder|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|fighter|hero|paladin|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|supporter|protagonist|admirer|booster|friend|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|ace|adept|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(verb)|defend|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+champion lode|1
+(noun)|mother lode|lode (generic term)|load (generic term)
+championship|3
+(noun)|title|high status (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|backing|backup|patronage|blessing (generic term)|approval (generic term)|approving (generic term)
+champlain|2
+(noun)|Champlain|Samuel de Champlain|explorer (generic term)|adventurer (generic term)
+(noun)|Lake Champlain|Champlain|lake (generic term)
+champleve|1
+(adj)|cloisonne|adorned (similar term)|decorated (similar term)
+champollion|1
+(noun)|Champollion|Jean Francois Champollion|Egyptologist (generic term)
+champs elysees|1
+(noun)|Champs Elysees|street (generic term)
+chanal|1
+(noun)|chanar|Geoffroea decorticans|shrub (generic term)|bush (generic term)
+chanar|1
+(noun)|chanal|Geoffroea decorticans|shrub (generic term)|bush (generic term)
+chance|9
+(adj)|accidental|casual|unplanned (similar term)
+(noun)|opportunity|possibility (generic term)|possibleness (generic term)
+(noun)|luck|fortune|hazard|phenomenon (generic term)
+(noun)|risk (generic term)|peril (generic term)|danger (generic term)
+(noun)|probability|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|prospect|potential (generic term)|potentiality (generic term)|potency (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|gamble|risk|hazard|take chances|adventure|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|find|happen|bump|encounter
+chance-half correlation|1
+(noun)|split-half correlation|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+chance-medley|1
+(noun)|manslaughter (generic term)
+chance event|1
+(noun)|accident|fortuity|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+chance on|1
+(verb)|fall upon|strike|come upon|light upon|chance upon|come across|happen upon|attain|discover|find (generic term)|regain (generic term)
+chance upon|1
+(verb)|fall upon|strike|come upon|light upon|come across|chance on|happen upon|attain|discover|find (generic term)|regain (generic term)
+chance variable|1
+(noun)|random variable|variate|variant|stochastic variable|variable (generic term)|variable quantity (generic term)
+chanceful|1
+(adj)|chancy|dicey|dodgy|dangerous (similar term)|unsafe (similar term)
+chancel|1
+(noun)|sanctuary|bema|area (generic term)
+chancellery|1
+(noun)|government building (generic term)
+chancellor|2
+(noun)|premier|prime minister|head of state (generic term)|chief of state (generic term)
+(noun)|principal (generic term)|school principal (generic term)|head teacher (generic term)|head (generic term)
+chancellor of the exchequer|1
+(noun)|Chancellor of the Exchequer|cabinet minister (generic term)
+chancellorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chancellorsville|2
+(noun)|Chancellorsville|village (generic term)|hamlet (generic term)
+(noun)|Chancellorsville|pitched battle (generic term)
+chancery|2
+(noun)|court of chancery|court (generic term)|tribunal (generic term)|judicature (generic term)
+(noun)|archive (generic term)
+chancre|1
+(noun)|sore (generic term)
+chancroid|1
+(noun)|ulcer (generic term)|ulceration (generic term)
+chancroidal|1
+(adj)|ulcer|ulceration (related term)
+chancrous|1
+(adj)|sore (related term)
+chancy|2
+(adj)|chanceful|dicey|dodgy|dangerous (similar term)|unsafe (similar term)
+(adj)|fluky|flukey|iffy|uncertain (similar term)
+chandelier|1
+(noun)|pendant|pendent|lighting fixture (generic term)
+chandelle|2
+(noun)|flight maneuver (generic term)|airplane maneuver (generic term)
+(verb)|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+chandi|1
+(noun)|Chandi|Hindu deity (generic term)
+chandler|3
+(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer (generic term)|author (generic term)
+(noun)|retailer (generic term)|retail merchant (generic term)
+(noun)|maker (generic term)|shaper (generic term)
+chandlery|2
+(noun)|candle (generic term)|taper (generic term)|wax light (generic term)
+(noun)|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+chanfron|1
+(noun)|chamfron|testiere|frontstall|front-stall|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+chang|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+chang jiang|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+chang kuo|1
+(noun)|Chang Kuo|Chang Kuo-lao|Chinese deity (generic term)
+chang kuo-lao|1
+(noun)|Chang Kuo|Chang Kuo-lao|Chinese deity (generic term)
+changan|1
+(noun)|Xian|Sian|Singan|Changan|Hsian|city (generic term)|metropolis (generic term)|urban center (generic term)
+change|19
+(noun)|alteration|modification|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|relation (generic term)
+(noun)|action (generic term)
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|thing (generic term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|coin (generic term)
+(noun)|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+(noun)|variety|difference (generic term)
+(verb)|stay (antonym)
+(verb)|alter|modify
+(verb)|alter|vary
+(verb)|switch|shift
+(verb)|dress (generic term)|get dressed (generic term)
+(verb)|exchange|commute|convert|replace (generic term)
+(verb)|exchange|interchange|transfer (generic term)
+(verb)|transfer|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|deepen|change (generic term)
+(verb)|replace (generic term)
+change-of-pace|1
+(noun)|change-up|change-of-pace ball|off-speed pitch|pitch (generic term)|delivery (generic term)
+change-of-pace ball|1
+(noun)|change-up|change-of-pace|off-speed pitch|pitch (generic term)|delivery (generic term)
+change-up|1
+(noun)|change-of-pace|change-of-pace ball|off-speed pitch|pitch (generic term)|delivery (generic term)
+change by reversal|1
+(verb)|turn|reverse|change (generic term)|turn on (related term)|turn off (related term)
+change course|1
+(verb)|jibe|gybe|jib|sail (generic term)
+change form|1
+(verb)|change shape|deform|change (generic term)
+change hands|1
+(verb)|change owners|move (generic term)|displace (generic term)
+change integrity|1
+(verb)|change (generic term)
+change intensity|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+change magnitude|1
+(verb)|change (generic term)
+change of color|1
+(noun)|change of state (generic term)
+change of course|1
+(noun)|change of direction (generic term)|reorientation (generic term)
+change of direction|1
+(noun)|reorientation|change (generic term)
+change of integrity|1
+(noun)|change (generic term)
+change of life|1
+(noun)|menopause|climacteric|biological time (generic term)
+change of location|1
+(noun)|travel|movement (generic term)|motion (generic term)
+change of magnitude|1
+(noun)|change (generic term)
+change of mind|1
+(noun)|reversal|flip-flop|turnabout|turnaround|decision making (generic term)|deciding (generic term)
+change of shape|1
+(noun)|change (generic term)
+change of state|1
+(noun)|change (generic term)
+change over|2
+(verb)|switch|shift|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|convert|change (generic term)|alter (generic term)|modify (generic term)
+change owners|1
+(verb)|change hands|move (generic term)|displace (generic term)
+change posture|1
+(verb)|change (generic term)
+change ringing|1
+(noun)|bell ringing (generic term)|carillon (generic term)|carillon playing (generic term)
+change shape|1
+(verb)|change form|deform|change (generic term)
+change state|1
+(verb)|turn|change (generic term)|turn around (related term)|turn off (related term)
+change surface|1
+(verb)|change (generic term)
+change taste|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+changeability|1
+(noun)|changeableness|quality (generic term)|changelessness (antonym)
+changeable|4
+(adj)|mutable|immutable (antonym)
+(adj)|changeful|adjustable (similar term)|astatic (similar term)|checkered (similar term)|distortable (similar term)|erratic (similar term)|fickle (similar term)|mercurial (similar term)|quicksilver (similar term)|fluid (similar term)|unstable (similar term)|fluid (similar term)|mobile (similar term)|jittering (similar term)|kaleidoscopic (similar term)|kaleidoscopical (similar term)|mobile (similar term)|open-ended (similar term)|quick-change (similar term)|quick-drying (similar term)|reversible (similar term)|volatile (similar term)|exchangeable (related term)|inconstant (related term)|unchangeable (antonym)
+(adj)|uncertain|unsettled|variable (similar term)
+(adj)|chatoyant|iridescent|shot|colorful (similar term)|colourful (similar term)
+changeableness|1
+(noun)|changeability|quality (generic term)|changelessness (antonym)
+changed|3
+(adj)|denatured (similar term)|denaturized (similar term)|denaturised (similar term)|exchanged (similar term)|transformed (similar term)|varied (similar term)|unchanged (antonym)
+(adj)|altered (similar term)
+(adj)|metamorphic (similar term)
+changeful|1
+(adj)|changeable|adjustable (similar term)|astatic (similar term)|checkered (similar term)|distortable (similar term)|erratic (similar term)|fickle (similar term)|mercurial (similar term)|quicksilver (similar term)|fluid (similar term)|unstable (similar term)|fluid (similar term)|mobile (similar term)|jittering (similar term)|kaleidoscopic (similar term)|kaleidoscopical (similar term)|mobile (similar term)|open-ended (similar term)|quick-change (similar term)|quick-drying (similar term)|reversible (similar term)|volatile (similar term)|exchangeable (related term)|inconstant (related term)|unchangeable (antonym)
+changefulness|1
+(noun)|inconstancy|changeableness (generic term)|changeability (generic term)|constancy (antonym)
+changeless|3
+(adj)|immutable|mutable (antonym)
+(adj)|constant|invariant|unvarying|invariable (similar term)
+(adj)|unalterable|unchangeable (similar term)
+changelessness|2
+(noun)|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)
+(noun)|unchangeability|unchangeableness|unchangingness|quality (generic term)|changeableness (antonym)
+changeling|2
+(noun)|idiot|imbecile|cretin|moron|half-wit|retard|simpleton (generic term)|simple (generic term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+changeover|1
+(noun)|conversion|transition|transformation (generic term)|transmutation (generic term)|shift (generic term)
+changer|2
+(noun)|modifier|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|record changer|auto-changer|mechanical device (generic term)
+changing|1
+(adj)|ever-changing|dynamic (similar term)|dynamical (similar term)
+changjiang|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+changtzu|1
+(noun)|Changtzu|mountain peak (generic term)
+channel|11
+(noun)|transmission channel|transmission (generic term)
+(noun)|passage (generic term)
+(noun)|groove|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|body of water (generic term)|water (generic term)
+(noun)|communication channel|line|communication (generic term)|communicating (generic term)
+(noun)|duct|epithelial duct|canal|passage (generic term)|passageway (generic term)
+(noun)|television channel|TV channel|television station (generic term)|TV station (generic term)
+(noun)|distribution channel|marketing (generic term)
+(verb)|conduct|transmit|convey|carry|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|canalize|canalise|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|transmit|transfer|transport|channelize|channelise|move (generic term)|displace (generic term)
+channel-surf|1
+(verb)|surf|switch (generic term)|shift (generic term)|change (generic term)
+channel bass|1
+(noun)|red drum|redfish|Sciaenops ocellatus|drum (generic term)|drumfish (generic term)
+channel capacity|1
+(noun)|data rate (generic term)
+channel cat|1
+(noun)|channel catfish|Ictalurus punctatus|catfish (generic term)|siluriform fish (generic term)
+channel catfish|1
+(noun)|channel cat|Ictalurus punctatus|catfish (generic term)|siluriform fish (generic term)
+channel island|1
+(noun)|Channel Island|island (generic term)
+channel islands national park|1
+(noun)|Channel Islands National Park|national park (generic term)
+channel tunnel|1
+(noun)|chunnel|Channel Tunnel|railroad tunnel (generic term)
+channelisation|1
+(noun)|channelization|canalization|canalisation|management (generic term)|direction (generic term)
+channelise|4
+(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|control (generic term)|command (generic term)
+(verb)|channelize|construct (generic term)|build (generic term)|make (generic term)
+(verb)|transmit|transfer|transport|channel|channelize|move (generic term)|displace (generic term)
+(verb)|channelize|straighten (generic term)|straighten out (generic term)
+channelization|1
+(noun)|channelisation|canalization|canalisation|management (generic term)|direction (generic term)
+channelize|4
+(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelise|control (generic term)|command (generic term)
+(verb)|channelise|construct (generic term)|build (generic term)|make (generic term)
+(verb)|transmit|transfer|transport|channel|channelise|move (generic term)|displace (generic term)
+(verb)|channelise|straighten (generic term)|straighten out (generic term)
+channels|1
+(noun)|transmission (generic term)
+channidae|1
+(noun)|Channidae|class Channidae|class (generic term)
+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 (generic term)
+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 (generic term)
+chanoyu|1
+(noun)|tea ceremony|ceremony (generic term)
+chanson de geste|1
+(noun)|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+chant|3
+(noun)|religious song (generic term)
+(verb)|intone|intonate|cantillate|sing (generic term)
+(verb)|tone|intone|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+chantarelle|1
+(noun)|chanterelle|Cantharellus cibarius|agaric (generic term)
+chanted|1
+(adj)|musical (similar term)
+chanter|1
+(noun)|melody pipe|pipe (generic term)|tabor pipe (generic term)
+chanterelle|1
+(noun)|chantarelle|Cantharellus cibarius|agaric (generic term)
+chantey|1
+(noun)|chanty|sea chantey|shanty|work song (generic term)
+chanting|1
+(noun)|intonation|singing (generic term)|vocalizing (generic term)
+chantlike|1
+(adj)|intoned|singsong|rhythmical (similar term)|rhythmic (similar term)
+chantry|2
+(noun)|endowment (generic term)|endowment fund (generic term)
+(noun)|chapel (generic term)
+chanty|1
+(noun)|chantey|sea chantey|shanty|work song (generic term)
+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 (generic term)
+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 (generic term)
+chao phraya|1
+(noun)|Chao Phraya|river (generic term)
+chaos|4
+(noun)|pandemonium|bedlam|topsy-turvydom|topsy-turvyness|confusion (generic term)
+(noun)|physical phenomenon (generic term)
+(noun)|Chaos|Greek deity (generic term)
+(noun)|dynamical system (generic term)
+chaotic|3
+(adj)|helter-skelter|disorganized (similar term)|disorganised (similar term)
+(adj)|disorderly|wild (similar term)
+(adj)|dynamical system (related term)
+chaotic attractor|1
+(noun)|strange attractor|attractor (generic term)|attracter (generic term)
+chap|5
+(noun)|fellow|feller|lad|gent|fella|blighter|cuss|male (generic term)|male person (generic term)
+(noun)|crevice|cranny|crack|fissure|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|legging (generic term)|legin (generic term)|leg covering (generic term)
+(verb)|crack (generic term)
+chaparral|1
+(noun)|scrub|bush|vegetation (generic term)|flora (generic term)|botany (generic term)
+chaparral broom|1
+(noun)|coyote brush|coyote bush|kidney wort|Baccharis pilularis|shrub (generic term)|bush (generic term)
+chaparral cock|1
+(noun)|roadrunner|Geococcyx californianus|cuckoo (generic term)
+chaparral mallow|1
+(noun)|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow (generic term)
+chaparral pea|1
+(noun)|stingaree-bush|Pickeringia montana|shrub (generic term)|bush (generic term)
+chaparral sage|1
+(noun)|purple sage|Salvia leucophylla|sage (generic term)|salvia (generic term)
+chapati|1
+(noun)|chapatti|flatbread (generic term)
+chapatti|1
+(noun)|chapati|flatbread (generic term)
+chapeau|1
+(noun)|hat|lid|headdress (generic term)|headgear (generic term)
+chapel|2
+(noun)|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+(noun)|chapel service|service (generic term)|religious service (generic term)|divine service (generic term)
+chapel hill|1
+(noun)|Chapel Hill|town (generic term)
+chapel service|1
+(noun)|chapel|service (generic term)|religious service (generic term)|divine service (generic term)
+chapelgoer|1
+(noun)|Nonconformist|Protestant (generic term)|Anglican (antonym)
+chaperon|2
+(noun)|chaperone|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(verb)|chaperone|escort (generic term)
+chaperone|2
+(noun)|chaperon|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(verb)|chaperon|escort (generic term)
+chapfallen|1
+(adj)|chopfallen|crestfallen|deflated|dejected (similar term)
+chapiter|1
+(noun)|capital|cap|top (generic term)
+chaplain|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+chaplaincy|1
+(noun)|chaplainship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chaplainship|1
+(noun)|chaplaincy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chaplet|1
+(noun)|wreath|garland|coronal|lei|flower arrangement (generic term)
+chapleted|1
+(adj)|crowned (similar term)
+chaplin|1
+(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian (generic term)|comic (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+chapman|2
+(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer (generic term)
+(noun)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)
+chapped|1
+(adj)|cracked|roughened|rough (similar term)|unsmooth (similar term)
+chapter|5
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|phase (generic term)|stage (generic term)
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|assembly (generic term)
+(noun)|episode (generic term)
+chapterhouse|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|fraternity house|frat house|house (generic term)
+chapultepec|1
+(noun)|Chapultepec|pitched battle (generic term)
+char|5
+(noun)|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(noun)|charwoman|cleaning woman|cleaning lady|woman|cleaner (generic term)
+(noun)|charr|salmonid (generic term)
+(verb)|coal|burn (generic term)|combust (generic term)
+(verb)|blacken|sear|scorch|burn (generic term)
+chara|1
+(noun)|Chara|genus Chara|protoctist genus (generic term)
+charabanc|1
+(noun)|bus|autobus|coach|double-decker|jitney|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+characeae|1
+(noun)|Characeae|family Characeae|protoctist family (generic term)
+characid|1
+(noun)|characin|characin fish|cypriniform fish (generic term)
+characidae|1
+(noun)|Characidae|family Characidae|fish family (generic term)
+characin|1
+(noun)|characin fish|characid|cypriniform fish (generic term)
+characin fish|1
+(noun)|characin|characid|cypriniform fish (generic term)
+characinidae|1
+(noun)|Characinidae|family Characinidae|fish family (generic term)
+character|10
+(noun)|fictional character|fictitious character|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|quality|lineament|property (generic term)|attribute (generic term)|dimension (generic term)
+(noun)|fiber|fibre|trait (generic term)
+(noun)|role|theatrical role|part|persona|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+(noun)|eccentric|type|case|adult (generic term)|grownup (generic term)
+(noun)|repute (generic term)|reputation (generic term)
+(noun)|reference|character reference|recommendation (generic term)|testimonial (generic term)|good word (generic term)
+(noun)|grapheme|graphic symbol|written symbol (generic term)|printed symbol (generic term)
+(noun)|attribute (generic term)
+(verb)|scratch (generic term)|engrave (generic term)|grave (generic term)|inscribe (generic term)
+character-at-a-time printer|1
+(noun)|character printer|serial printer|printer (generic term)|printing machine (generic term)
+character actor|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+character assassination|1
+(noun)|assassination|blackwash|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+character printer|1
+(noun)|character-at-a-time printer|serial printer|printer (generic term)|printing machine (generic term)
+character reference|1
+(noun)|character|reference|recommendation (generic term)|testimonial (generic term)|good word (generic term)
+character set|1
+(noun)|list (generic term)|listing (generic term)
+character witness|1
+(noun)|witness (generic term)
+characterisation|2
+(noun)|word picture|word-painting|delineation|depiction|picture|characterization|description (generic term)|verbal description (generic term)
+(noun)|characterization|description (generic term)
+characterise|2
+(verb)|characterize|distinguish (generic term)|mark (generic term)|differentiate (generic term)
+(verb)|qualify|characterize|remember (generic term)|think of (generic term)
+characterised|1
+(adj)|characterized|defined (similar term)
+characterisic function|1
+(noun)|characteristic curve|graph (generic term)|graphical record (generic term)
+characteristic|5
+(adj)|diagnostic (similar term)|symptomatic (similar term)|distinctive (similar term)|typical (similar term)|distinguishing (similar term)|identifying (similar term)|peculiar (similar term)|typical (related term)|uncharacteristic (antonym)
+(noun)|feature|property (generic term)|attribute (generic term)|dimension (generic term)
+(noun)|quality (generic term)
+(noun)|integer (generic term)|whole number (generic term)
+(noun)|device characteristic|property (generic term)
+characteristic curve|1
+(noun)|characterisic function|graph (generic term)|graphical record (generic term)
+characteristic root of a square matrix|1
+(noun)|eigenvalue|eigenvalue of a matrix|eigenvalue of a square matrix|value (generic term)
+characteristically|1
+(adv)|uncharacteristically (antonym)
+characterization|3
+(noun)|word picture|word-painting|delineation|depiction|picture|characterisation|description (generic term)|verbal description (generic term)
+(noun)|characterisation|description (generic term)
+(noun)|portrayal|enactment|personation|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+characterize|2
+(verb)|qualify|characterise|remember (generic term)|think of (generic term)
+(verb)|characterise|distinguish (generic term)|mark (generic term)|differentiate (generic term)
+characterized|1
+(adj)|characterised|defined (similar term)
+characterless|1
+(adj)|nondescript|ordinary (similar term)
+charade|2
+(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(noun)|word (generic term)
+charades|1
+(noun)|guessing game (generic term)
+charadrii|1
+(noun)|Charadrii|suborder Charadrii|animal order (generic term)
+charadriidae|1
+(noun)|Charadriidae|family Charadriidae|bird family (generic term)
+charadriiformes|1
+(noun)|Charadriiformes|order Charadriiformes|animal order (generic term)
+charadrius|1
+(noun)|Charadrius|genus Charadrius|bird genus (generic term)
+charadrius melodus|1
+(noun)|piping plover|Charadrius melodus|plover (generic term)
+charadrius morinellus|1
+(noun)|dotterel|dotrel|Charadrius morinellus|Eudromias morinellus|plover (generic term)
+charadrius vociferus|1
+(noun)|killdeer|kildeer|killdeer plover|Charadrius vociferus|plover (generic term)
+charales|1
+(noun)|Charales|order Charales|protoctist order (generic term)
+charcoal|6
+(adj)|charcoal-grey|charcoal-gray|achromatic (similar term)
+(noun)|wood coal|fuel (generic term)|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(noun)|fusain|writing implement (generic term)
+(noun)|charcoal grey|charcoal gray|oxford grey|oxford gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+(noun)|drawing (generic term)
+(verb)|draw (generic term)
+charcoal-gray|1
+(adj)|charcoal|charcoal-grey|achromatic (similar term)
+charcoal-grey|1
+(adj)|charcoal|charcoal-gray|achromatic (similar term)
+charcoal burner|2
+(noun)|worker (generic term)
+(noun)|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+charcoal gray|1
+(noun)|charcoal|charcoal grey|oxford grey|oxford gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+charcoal grey|1
+(noun)|charcoal|charcoal gray|oxford grey|oxford gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+charcot|1
+(noun)|Charcot|Jean Martin Charcot|neurologist (generic term)|brain doctor (generic term)
+charcot-marie-tooth disease|1
+(noun)|Charcot-Marie-Tooth disease|hereditary motor and sensory neuropathy|neuropathy (generic term)
+charcuterie|1
+(noun)|delicatessen (generic term)|deli (generic term)|food shop (generic term)
+chard|2
+(noun)|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|Swiss chard|spinach beet|leaf beet|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+chard plant|1
+(noun)|chard|Swiss chard|spinach beet|leaf beet|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+chardonnay|2
+(noun)|Chardonnay|chardonnay grape|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Chardonnay|Pinot Chardonnay|white wine (generic term)
+chardonnay grape|1
+(noun)|Chardonnay|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+charge|39
+(noun)|complaint|pleading (generic term)
+(noun)|cost (generic term)
+(noun)|accusation|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|billing|request (generic term)|asking (generic term)
+(noun)|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|electric charge|electrical phenomenon (generic term)
+(noun)|liabilities (generic term)
+(noun)|dependant (generic term)|dependent (generic term)
+(noun)|care|tutelage|guardianship|protection (generic term)
+(noun)|mission|commission|assignment (generic term)|duty assignment (generic term)
+(noun)|commission|direction|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|burster|bursting charge|explosive charge|explosive (generic term)
+(noun)|bang|boot|rush|flush|thrill|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|cathexis|libidinal energy (generic term)
+(noun)|bearing|heraldic bearing|armorial bearing|heraldry (generic term)
+(verb)|bear down|rush (generic term)
+(verb)|accuse
+(verb)|bill|account (generic term)|calculate (generic term)
+(verb)|tear|shoot|shoot down|buck|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|shoot up (related term)
+(verb)|appoint
+(verb)|lodge|file|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+(verb)|claim (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|discharge (antonym)
+(verb)|debit (generic term)
+(verb)|commit|institutionalize|institutionalise|send|transfer (generic term)
+(verb)|consign|entrust (generic term)|intrust (generic term)|trust (generic term)|confide (generic term)|commit (generic term)
+(verb)|pay (generic term)|pay cash (antonym)
+(verb)|lie down (generic term)|lie (generic term)
+(verb)|agitate|rouse|turn on|commove|excite|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|paint (generic term)
+(verb)|load|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|level|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|saddle|burden|command (generic term)|require (generic term)|compel (generic term)
+(verb)|instruct (generic term)
+(verb)|blame|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|determine (generic term)|set (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|impregnate (generic term)|saturate (generic term)
+charge-exchange accelerator|1
+(noun)|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+charge account|1
+(noun)|credit account|open account|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)
+charge account credit|1
+(noun)|open-end credit|revolving credit|consumer credit (generic term)
+charge card|1
+(noun)|credit card|charge plate|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)|positive identification (generic term)
+charge d'affaires|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+charge of quarters|1
+(noun)|enlisted man (generic term)
+charge per unit|1
+(noun)|rate|charge (generic term)
+charge plate|1
+(noun)|credit card|charge card|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)|positive identification (generic term)
+charge sheet|1
+(noun)|blotter|day book|police blotter|rap sheet|written record (generic term)|written account (generic term)
+charge unit|1
+(noun)|quantity unit|electromagnetic unit (generic term)|emu (generic term)
+charge up|1
+(verb)|agitate|rouse|turn on|charge|commove|excite|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+chargeable|1
+(adj)|indictable|guilty (similar term)
+charged|4
+(adj)|hot (similar term)|live (similar term)|negatively charged (similar term)|positively charged (similar term)|polar (similar term)|uncharged (antonym)
+(adj)|supercharged|emotional (similar term)
+(adj)|aerated|effervescent (similar term)
+(adj)|provocative (similar term)
+chargeman|1
+(noun)|blaster|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+charger|2
+(noun)|courser|warhorse (generic term)
+(noun)|battery charger|device (generic term)
+chari|1
+(noun)|Shari|Shari River|Chari|Chari River|river (generic term)
+chari-nile|1
+(noun)|Chari-Nile|Nilo-Saharan (generic term)|Nilo-Saharan language (generic term)
+chari river|1
+(noun)|Shari|Shari River|Chari|Chari River|river (generic term)
+charina|1
+(noun)|Charina|genus Charina|reptile genus (generic term)
+charina bottae|1
+(noun)|rubber boa|tow-headed snake|Charina bottae|boa (generic term)
+chariness|1
+(noun)|wariness|circumspection (generic term)|caution (generic term)|unwariness (antonym)
+chariot|4
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|horse-drawn vehicle (generic term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|ride (generic term)
+chariot race|1
+(noun)|race (generic term)
+charioteer|2
+(noun)|driver (generic term)
+(noun)|Auriga|Charioteer|constellation (generic term)
+charisma|1
+(noun)|personal appeal|personal magnetism|attractiveness (generic term)|interest (generic term)|interestingness (generic term)
+charismatic|1
+(adj)|magnetic|attractive (similar term)
+charitable|3
+(adj)|giving|gift (related term)
+(adj)|beneficent (similar term)|benevolent (similar term)|eleemosynary (similar term)|philanthropic (similar term)|generous (related term)|uncharitable (antonym)
+(adj)|benevolent|kindly|sympathetic|good-hearted|openhearted|large-hearted|kind (similar term)
+charitable trust|1
+(noun)|public trust|trust (generic term)
+charitableness|1
+(noun)|generosity (generic term)|generousness (generic term)
+charity|5
+(noun)|foundation (generic term)
+(noun)|brotherly love|benevolence (generic term)|theological virtue (generic term)|supernatural virtue (generic term)
+(noun)|giving (generic term)|gift (generic term)
+(noun)|Jacob's ladder|Greek valerian|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+(noun)|institution (generic term)|establishment (generic term)
+charity case|1
+(noun)|welfare case|case (generic term)
+charity shot|1
+(noun)|foul shot|free throw|penalty free throw|charity toss|charity throw|basketball shot (generic term)
+charity throw|1
+(noun)|foul shot|free throw|penalty free throw|charity toss|charity shot|basketball shot (generic term)
+charity toss|1
+(noun)|foul shot|free throw|penalty free throw|charity throw|charity shot|basketball shot (generic term)
+charivari|1
+(noun)|shivaree|chivaree|callithump|callathump|belling|serenade (generic term)
+charlatan|1
+(noun)|mountebank|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+charlatanism|1
+(noun)|quackery|dishonesty (generic term)|knavery (generic term)
+charlemagne|1
+(noun)|Charlemagne|Carolus|Charles|Charles I|Charles the Great|Holy Roman Emperor (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+charleroi|1
+(noun)|Charleroi|city (generic term)|metropolis (generic term)|urban center (generic term)
+charles|9
+(noun)|Charles|Charles IX|King of France (generic term)
+(noun)|Charles|Charles VII|King of France (generic term)
+(noun)|Charles|Charles II|Charles I|Charles the Bald|Holy Roman Emperor (generic term)|King of France (generic term)
+(noun)|Charles|Charles II|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Charles|Charles I|Charles Stuart|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Charles|Prince Charles|Prince of Wales (generic term)
+(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist (generic term)
+(noun)|Charlemagne|Carolus|Charles|Charles I|Charles the Great|Holy Roman Emperor (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+(noun)|Charles|Charles River|river (generic term)
+charles's law|1
+(noun)|Gay-Lussac's law|Charles's law|law of volumes|law (generic term)|law of nature (generic term)
+charles's wain|1
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+charles a. lindbergh|1
+(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+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 (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles augustin de coulomb|1
+(noun)|Coulomb|Charles Augustin de Coulomb|physicist (generic term)
+charles augustus lindbergh|1
+(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+charles baudelaire|1
+(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet (generic term)
+charles bullfinch|1
+(noun)|Bullfinch|Charles Bullfinch|architect (generic term)|designer (generic term)
+charles camille saint-saens|1
+(noun)|Saint-Saens|Charles Camille Saint-Saens|pianist (generic term)|piano player (generic term)|composer (generic term)
+charles christopher parker|1
+(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist (generic term)|saxist (generic term)
+charles cornwallis|1
+(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer (generic term)|general (generic term)|full general (generic term)
+charles dana gibson|1
+(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator (generic term)
+charles darwin|1
+(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist (generic term)|natural scientist (generic term)
+charles de gaulle|1
+(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles dickens|1
+(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer (generic term)|author (generic term)
+charles digby harrod|1
+(noun)|Harrod|Charles Digby Harrod|merchant (generic term)|merchandiser (generic term)
+charles dillon stengel|1
+(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach (generic term)|baseball manager (generic term)
+charles dodgson|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+charles dudley warner|1
+(noun)|Warner|Charles Dudley Warner|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+charles eames|1
+(noun)|Eames|Charles Eames|interior designer (generic term)|designer (generic term)|interior decorator (generic term)|house decorator (generic term)|room decorator (generic term)|decorator (generic term)
+charles edouard jeanneret|1
+(noun)|Le Corbusier|Charles Edouard Jeanneret|architect (generic term)|designer (generic term)
+charles edward berry|1
+(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star (generic term)
+charles edward ives|1
+(noun)|Ives|Charles Edward Ives|composer (generic term)
+charles evans hughes|1
+(noun)|Hughes|Charles Evans Hughes|chief justice (generic term)
+charles farrar browne|1
+(noun)|Browne|Charles Farrar Browne|Artemus Ward|writer (generic term)|author (generic term)
+charles follen mckim|1
+(noun)|McKim|Charles Follen McKim|architect (generic term)|designer (generic term)
+charles fourier|1
+(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist (generic term)
+charles francis hall|1
+(noun)|Hall|Charles Francis Hall|explorer (generic term)|adventurer (generic term)
+charles francois gounod|1
+(noun)|Gounod|Charles Francois Gounod|composer (generic term)
+charles franklin kettering|1
+(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+charles franklin peirce|1
+(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher (generic term)|logician (generic term)|logistician (generic term)
+charles frederick menninger|1
+(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+charles frederick worth|1
+(noun)|Worth|Charles Frederick Worth|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+charles goodyear|1
+(noun)|Goodyear|Charles Goodyear|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+charles grey|1
+(noun)|Grey|Charles Grey|Second Earl Grey|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles hardin holley|1
+(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+charles henry harrod|1
+(noun)|Harrod|Charles Henry Harrod|merchant (generic term)|merchandiser (generic term)
+charles herbert best|1
+(noun)|Best|C. H. Best|Charles Herbert Best|physiologist (generic term)
+charles i|3
+(noun)|Charles|Charles II|Charles I|Charles the Bald|Holy Roman Emperor (generic term)|King of France (generic term)
+(noun)|Charles|Charles I|Charles Stuart|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Charlemagne|Carolus|Charles|Charles I|Charles the Great|Holy Roman Emperor (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+charles ii|2
+(noun)|Charles|Charles II|Charles I|Charles the Bald|Holy Roman Emperor (generic term)|King of France (generic term)
+(noun)|Charles|Charles II|King of England (generic term)|King of Great Britain (generic term)
+charles ix|1
+(noun)|Charles|Charles IX|King of France (generic term)
+charles james fox|1
+(noun)|Fox|Charles James Fox|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles john huffam dickens|1
+(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer (generic term)|author (generic term)
+charles joseph clark|1
+(noun)|Clark|Joe Clark|Charles Joseph Clark|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+charles kay ogden|1
+(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist (generic term)|semanticist (generic term)|semiotician (generic term)
+charles kettering|1
+(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+charles l'enfant|1
+(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect (generic term)|designer (generic term)
+charles lamb|1
+(noun)|Lamb|Charles Lamb|Elia|essayist (generic term)|litterateur (generic term)
+charles laughton|1
+(noun)|Laughton|Charles Laughton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+charles lindbergh|1
+(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+charles liston|1
+(noun)|Liston|Sonny Liston|Charles Liston|prizefighter (generic term)|gladiator (generic term)
+charles louis de secondat|1
+(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher (generic term)
+charles louis napoleon bonaparte|1
+(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|emperor (generic term)
+charles lutwidge dodgson|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+charles m. schulz|1
+(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist (generic term)
+charles martin hall|1
+(noun)|Hall|Charles Martin Hall|chemist (generic term)
+charles maurice de talleyrand|1
+(noun)|Talleyrand|Charles Maurice de Talleyrand|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles menninger|1
+(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+charles munroe schulz|1
+(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist (generic term)
+charles peirce|1
+(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher (generic term)|logician (generic term)|logistician (generic term)
+charles percy snow|1
+(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer (generic term)|author (generic term)
+charles pierre baudelaire|1
+(noun)|Baudelaire|Charles Baudelaire|Charles Pierre Baudelaire|poet (generic term)
+charles proteus steinmetz|1
+(noun)|Steinmetz|Charles Proteus Steinmetz|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+charles ringling|1
+(noun)|Ringling|Charles Ringling|showman (generic term)|promoter (generic term)|impresario (generic term)
+charles river|1
+(noun)|Charles|Charles River|river (generic term)
+charles robert darwin|1
+(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist (generic term)|natural scientist (generic term)
+charles robert redford|1
+(noun)|Redford|Robert Redford|Charles Robert Redford|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+charles schulz|1
+(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist (generic term)
+charles stewart parnell|1
+(noun)|Parnell|Charles Stewart Parnell|nationalist leader (generic term)
+charles stuart|1
+(noun)|Charles|Charles I|Charles Stuart|King of England (generic term)|King of Great Britain (generic term)
+charles taze russell|1
+(noun)|Russell|Charles Taze Russell|religious leader (generic term)
+charles the bald|1
+(noun)|Charles|Charles II|Charles I|Charles the Bald|Holy Roman Emperor (generic term)|King of France (generic term)
+charles the great|1
+(noun)|Charlemagne|Carolus|Charles|Charles I|Charles the Great|Holy Roman Emperor (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+charles thomson rees wilson|1
+(noun)|Wilson|Charles Thomson Rees Wilson|nuclear physicist (generic term)
+charles vii|1
+(noun)|Charles|Charles VII|King of France (generic term)
+charles watson-wentworth|1
+(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman (generic term)|solon (generic term)|national leader (generic term)
+charles wesley|1
+(noun)|Wesley|Charles Wesley|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+charles wilkes|1
+(noun)|Wilkes|Charles Wilkes|explorer (generic term)|adventurer (generic term)
+charles william post|1
+(noun)|Post|C. W. Post|Charles William Post|food manufacturer (generic term)
+charleston|4
+(noun)|Charleston|capital of West Virginia|state capital (generic term)
+(noun)|Charleston|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Charleston|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|Charleston|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+charlestown|1
+(noun)|Charlestown|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+charlestown navy yard|1
+(noun)|Charlestown Navy Yard|navy yard (generic term)|naval shipyard (generic term)
+charley-horse|1
+(noun)|charley horse|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+charley horse|1
+(noun)|charley-horse|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+charlie chaplin|1
+(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian (generic term)|comic (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+charlie parker|1
+(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist (generic term)|saxist (generic term)
+charlock|1
+(noun)|field mustard|wild mustard|chadlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+charlotte|2
+(noun)|Charlotte|Queen City|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+charlotte anna perkins gilman|1
+(noun)|Gilman|Charlotte Anna Perkins Gilman|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+charlotte bronte|1
+(noun)|Bronte|Charlotte Bronte|writer (generic term)|author (generic term)
+charlotte corday|1
+(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+charlotte russe|1
+(noun)|charlotte (generic term)
+charlottetown|1
+(noun)|Charlottetown|provincial capital (generic term)
+charm|8
+(noun)|appeal|appealingness|attractiveness (generic term)
+(noun)|spell|magic spell|magical spell|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|good luck charm|object (generic term)|physical object (generic term)
+(noun)|flavor (generic term)|flavour (generic term)
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+(verb)|becharm|control (generic term)|command (generic term)
+(verb)|protect (generic term)
+(verb)|influence|tempt|persuade (generic term)
+charm campaign|1
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+charm quark|1
+(noun)|quark (generic term)
+charmed|2
+(adj)|captivated|loving (similar term)
+(adj)|beguiled|captivated|delighted|enthralled|entranced|enchanted (similar term)
+charmer|2
+(noun)|smoothie|smoothy|sweet talker|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+(noun)|beguiler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+charming|2
+(adj)|pleasing (similar term)
+(adj)|magic|magical|sorcerous|witching|wizard|wizardly|supernatural (similar term)
+charnel|2
+(adj)|ghastly|sepulchral|offensive (similar term)
+(noun)|charnel house|vault (generic term)|burial vault (generic term)
+charnel house|1
+(noun)|charnel|vault (generic term)|burial vault (generic term)
+charolais|1
+(noun)|Charolais|beef (generic term)|beef cattle (generic term)
+charon|1
+(noun)|Charon|ferryman (generic term)
+charophyceae|1
+(noun)|Charophyceae|class Charophyceae|class (generic term)
+charr|1
+(noun)|char|salmonid (generic term)
+charred pancake cup|1
+(noun)|Sarcosomataceae (generic term)
+charronia|1
+(noun)|Charronia|genus Charronia|mammal genus (generic term)
+charronia flavigula|1
+(noun)|yellow-throated marten|Charronia flavigula|marten (generic term)|marten cat (generic term)
+chart|5
+(noun)|visual communication (generic term)
+(noun)|map (generic term)
+(verb)|map (generic term)
+(verb)|plan (generic term)
+(verb)|graph|represent (generic term)|interpret (generic term)
+chartaceous|1
+(adj)|papery|paperlike|material|stuff (related term)
+charter|5
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|contract (generic term)
+(verb)|rent|hire|lease|contract (generic term)|undertake (generic term)
+(verb)|license (generic term)|licence (generic term)|certify (generic term)
+(verb)|lease|rent|hire|engage|take|get (generic term)|acquire (generic term)
+charter member|1
+(noun)|member (generic term)
+charter school|1
+(noun)|public school (generic term)
+chartered|1
+(adj)|hired|leased|unchartered (antonym)
+chartered accountant|1
+(noun)|accountant (generic term)|comptroller (generic term)|controller (generic term)
+charterhouse|1
+(noun)|monastery (generic term)
+chartism|1
+(noun)|Chartism|ethic (generic term)|moral principle (generic term)|value-system (generic term)|value orientation (generic term)
+chartist|2
+(noun)|Chartist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(noun)|market analyst (generic term)
+chartless|1
+(adj)|uncharted|unmapped|unknown (similar term)
+chartreuse|3
+(adj)|chromatic (similar term)
+(noun)|Chartreuse|liqueur (generic term)|cordial (generic term)
+(noun)|yellow green|yellowish green|Paris green|pea green|green (generic term)|greenness (generic term)|viridity (generic term)
+charwoman|1
+(noun)|char|cleaning woman|cleaning lady|woman|cleaner (generic term)
+chary|1
+(adj)|cagey|cagy|cautious (similar term)
+charybdis|1
+(noun)|Charybdis|whirlpool (generic term)|vortex (generic term)|maelstrom (generic term)
+chase|6
+(noun)|pursuit|pursual|following|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|Chase|Salmon P. Chase|Salmon Portland Chase|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|chief justice (generic term)
+(verb)|chase after|trail|tail|tag|give chase|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|chase after|woo (generic term)|court (generic term)|romance (generic term)|solicit (generic term)
+(verb)|cut (generic term)
+(verb)|furrow|chamfer|cut (generic term)
+chase after|2
+(verb)|chase|woo (generic term)|court (generic term)|romance (generic term)|solicit (generic term)
+(verb)|chase|trail|tail|tag|give chase|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+chase away|1
+(verb)|drive out|turn back|drive away|dispel|drive off|run off|move (generic term)|displace (generic term)
+chased|1
+(noun)|pursued|hunted person (generic term)
+chaser|2
+(noun)|pursuer|follower (generic term)
+(noun)|drink (generic term)
+chasid|1
+(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew (generic term)
+chasidic|1
+(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism (related term)|Orthodox Judaism|Jewish Orthodoxy (related term)
+chasidim|1
+(noun)|Hasidim|Hassidim|Hasidism|Chasidim|Chassidim|Orthodox Judaism (generic term)|Jewish Orthodoxy (generic term)
+chasidism|1
+(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism (generic term)
+chasm|1
+(noun)|opening (generic term)|gap (generic term)
+chasse|2
+(noun)|sashay|dance step (generic term)|step (generic term)
+(verb)|sashay|dance (generic term)
+chassid|1
+(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew (generic term)
+chassidic|1
+(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism (related term)|Orthodox Judaism|Jewish Orthodoxy (related term)
+chassidim|1
+(noun)|Hasidim|Hassidim|Hasidism|Chasidim|Chassidim|Orthodox Judaism (generic term)|Jewish Orthodoxy (generic term)
+chassidism|1
+(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism (generic term)
+chassis|3
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|mounting (generic term)
+(noun)|skeleton (generic term)|skeletal frame (generic term)|frame (generic term)|underframe (generic term)
+chaste|3
+(adj)|celibate (similar term)|continent (similar term)|pure (similar term)|vestal (similar term)|virgin (similar term)|virginal (similar term)|virtuous (similar term)|moral (related term)|pure (related term)|virtuous (related term)|unchaste (antonym)
+(adj)|plain (similar term)
+(adj)|moral (similar term)
+chastely|1
+(adv)|virtuously
+chasten|3
+(verb)|chastise|castigate|objurgate|correct|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+(verb)|moderate|temper|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tame|subdue|change (generic term)|alter (generic term)|modify (generic term)
+chastened|1
+(adj)|admonished|rebuked|reprimanded|reproved|punished (similar term)
+chasteness|1
+(noun)|restraint|simplicity|simpleness|plainness (generic term)
+chastening|1
+(noun)|correction|chastisement|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+chastise|1
+(verb)|castigate|objurgate|chasten|correct|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+chastised|1
+(adj)|corrected|disciplined|punished (similar term)
+chastisement|2
+(noun)|castigation|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(noun)|correction|chastening|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+chastity|2
+(noun)|celibacy|sexual abstention|abstinence (generic term)
+(noun)|virtue|sexual morality|morality (generic term)
+chasuble|1
+(noun)|vestment (generic term)
+chat|4
+(noun)|confab|confabulation|schmooze|schmoose|conversation (generic term)
+(noun)|New World chat|New World warbler (generic term)|wood warbler (generic term)
+(noun)|Old World chat|thrush (generic term)
+(verb)|chew the fat|shoot the breeze|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+chat room|1
+(noun)|chatroom|web site (generic term)|website (generic term)|internet site (generic term)|site (generic term)
+chat show|1
+(noun)|talk show|broadcast (generic term)|program (generic term)|programme (generic term)
+chat up|2
+(verb)|flirt|dally|butterfly|coquet|coquette|romance|philander|mash|talk (generic term)|speak (generic term)
+(verb)|persuade (generic term)
+chateau|1
+(noun)|country house (generic term)
+chateau-thierry|1
+(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle (generic term)
+chateaubriand|2
+(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+(noun)|Chateaubriand|fillet (generic term)|filet (generic term)
+chatelaine|2
+(noun)|mistress (generic term)
+(noun)|chain (generic term)
+chateura|1
+(noun)|Chateura|genus Chateura|bird genus (generic term)
+chateura pelagica|1
+(noun)|chimney swift|chimney swallow|Chateura pelagica|swift (generic term)
+chatoyant|1
+(adj)|changeable|iridescent|shot|colorful (similar term)|colourful (similar term)
+chatroom|1
+(noun)|chat room|web site (generic term)|website (generic term)|internet site (generic term)|site (generic term)
+chattahoochee|1
+(noun)|Chattahoochee|Chattahoochee River|river (generic term)
+chattahoochee river|1
+(noun)|Chattahoochee|Chattahoochee River|river (generic term)
+chattanooga|2
+(noun)|Chattanooga|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Chattanooga|battle of Chattanooga|pitched battle (generic term)
+chattel|1
+(noun)|personal chattel|movable|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+chattel mortgage|1
+(noun)|mortgage (generic term)
+chatter|7
+(noun)|yak|yack|yakety-yak|cackle|talk (generic term)|talking (generic term)
+(noun)|chattering|noise (generic term)
+(verb)|click|sound (generic term)|go (generic term)
+(verb)|cut (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+(verb)|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+chatter mark|2
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+(noun)|blemish (generic term)|defect (generic term)|mar (generic term)
+chatterbox|2
+(noun)|stream orchid|giant helleborine|Epipactis gigantea|helleborine (generic term)
+(noun)|chatterer|babbler|prater|magpie|spouter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+chatterer|2
+(noun)|babbler|prater|chatterbox|magpie|spouter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|cotinga|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+chattering|1
+(noun)|chatter|noise (generic term)
+chattily|1
+(adv)|volubly
+chatty|2
+(adj)|gabby|garrulous|loquacious|talkative|talky|voluble (similar term)
+(adj)|gossipy|newsy|communicative (similar term)|communicatory (similar term)
+chaucer|1
+(noun)|Chaucer|Geoffrey Chaucer|poet (generic term)
+chauffeur|2
+(noun)|driver (generic term)
+(verb)|drive around|drive (generic term)
+chauffeuse|1
+(noun)|chauffeur (generic term)
+chaulmoogra|1
+(noun)|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+chaulmoogra oil|1
+(noun)|oil (generic term)
+chaulmoogra tree|1
+(noun)|chaulmoogra|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+chaulmugra|1
+(noun)|chaulmoogra|chaulmoogra tree|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+chauna|1
+(noun)|Chauna|genus Chauna|bird genus (generic term)
+chauna torquata|1
+(noun)|chaja|Chauna torquata|crested screamer (generic term)
+chauvinism|2
+(noun)|jingoism|superpatriotism|ultranationalism|patriotism (generic term)|nationalism (generic term)
+(noun)|male chauvinism|antifeminism|sexism (generic term)
+chauvinist|2
+(noun)|bigot (generic term)
+(noun)|jingoist|jingo|flag-waver|hundred-percenter|patrioteer|patriot (generic term)|nationalist (generic term)
+chauvinistic|2
+(adj)|patriot|nationalist (related term)
+(adj)|flag-waving|jingoistic|nationalistic|ultranationalistic|superpatriotic|patriotic (similar term)|loyal (similar term)
+chavez|2
+(noun)|Chavez|Carlos Chavez|composer (generic term)
+(noun)|Chavez|Cesar Chavez|Cesar Estrada Chavez|labor leader (generic term)
+chaw|2
+(noun)|chew|cud|quid|plug|wad|morsel (generic term)|bit (generic term)|bite (generic term)
+(verb)|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+chawbacon|1
+(noun)|yokel|rube|hick|yahoo|hayseed|bumpkin|rustic (generic term)
+che guevara|1
+(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+cheap|4
+(adj)|inexpensive|bargain-priced (similar term)|cut-rate (similar term)|cut-price (similar term)|catchpenny (similar term)|dirt cheap (similar term)|low-budget (similar term)|low-cost (similar term)|low-priced (similar term)|affordable (similar term)|nickel-and-dime (similar term)|sixpenny (similar term)|threepenny (similar term)|twopenny (similar term)|tuppeny (similar term)|two-a-penny (similar term)|twopenny-halfpenny (similar term)|expensive (antonym)
+(adj)|brassy|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|bum|cheesy|chintzy|crummy|punk|sleazy|tinny|inferior (similar term)
+(adj)|chinchy|chintzy|stingy (similar term)|ungenerous (similar term)
+cheap-jack|1
+(noun)|huckster|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+cheap money|1
+(noun)|credit (generic term)
+cheap shot|2
+(noun)|shot (generic term)|shaft (generic term)|slam (generic term)|dig (generic term)|barb (generic term)|jibe (generic term)|gibe (generic term)
+(noun)|shot (generic term)
+cheapen|1
+(verb)|degrade|worsen (generic term)|aggravate (generic term)|exacerbate (generic term)|exasperate (generic term)
+cheapjack|2
+(adj)|shoddy|tawdry|inferior (similar term)
+(noun)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)
+cheaply|3
+(adv)|stingily|chintzily
+(adv)|tattily|inexpensively|expensively (antonym)
+(adv)|inexpensively
+cheapness|2
+(noun)|bargain rate|cut rate|cut price|inexpensiveness (generic term)
+(noun)|tackiness|tat|sleaze|tastelessness (generic term)
+cheapskate|1
+(noun)|tightwad|miser (generic term)
+cheat|9
+(noun)|darnel|tare|bearded darnel|Lolium temulentum|rye grass (generic term)|ryegrass (generic term)
+(noun)|chess|Bromus secalinus|brome (generic term)|bromegrass (generic term)
+(noun)|deceiver|cheater|trickster|beguiler|slicker|wrongdoer (generic term)|offender (generic term)
+(noun)|swindle|rig|fraud (generic term)
+(noun)|cheating|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(verb)|rip off|chisel|victimize (generic term)|victimise (generic term)
+(verb)|chouse|shaft|screw|chicane|jockey|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|chisel|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|cheat on|cuckold|betray|wander|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+cheat on|1
+(verb)|cheat|cuckold|betray|wander|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+cheater|1
+(noun)|deceiver|cheat|trickster|beguiler|slicker|wrongdoer (generic term)|offender (generic term)
+cheatgrass|1
+(noun)|downy brome|downy bromegrass|downy cheat|downy chess|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+cheating|3
+(adj)|adulterous|two-timing|unfaithful (similar term)
+(adj)|dirty|foul|unsporting|unsportsmanlike|unfair (similar term)|unjust (similar term)
+(noun)|cheat|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+chebab|1
+(noun)|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+chechen|3
+(adj)|Chechen|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Chechen|Russian (generic term)
+(noun)|Chechen|Caucasian (generic term)|Caucasian language (generic term)
+chechen republic|1
+(noun)|Chechnya|Chechenia|Chechen Republic|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+chechenia|1
+(noun)|Chechnya|Chechenia|Chechen Republic|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+chechnya|1
+(noun)|Chechnya|Chechenia|Chechen Republic|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+check|35
+(noun)|bank check|cheque|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+(noun)|assay|appraisal (generic term)|assessment (generic term)
+(noun)|chit|tab|bill (generic term)|account (generic term)|invoice (generic term)
+(noun)|arrest|halt|hitch|stay|stop|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|confirmation|verification|substantiation|proof (generic term)|cogent evidence (generic term)
+(noun)|checkout|check-out procedure|inspection (generic term)|review (generic term)
+(noun)|check mark|tick|mark (generic term)
+(noun)|hindrance|hinderance|deterrent|impediment|balk|baulk|handicap|difficulty (generic term)
+(noun)|chip|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|weave (generic term)
+(noun)|bridle|curb|restraint (generic term)
+(noun)|obstruction (generic term)
+(noun)|chess move (generic term)
+(verb)|check up on|look into|check out|suss out|check over|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|examine (generic term)|see (generic term)
+(verb)|see|insure|see to it|ensure|control|ascertain|assure|verify (generic term)
+(verb)|control|hold in|hold|contain|curb|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|check off|mark|mark off|tick off|tick|verify (generic term)
+(verb)|retard|delay|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|check out
+(verb)|match|fit|correspond|jibe|gibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|obstruct (generic term)|blockade (generic term)|block (generic term)|hinder (generic term)|stymie (generic term)|stymy (generic term)|embarrass (generic term)
+(verb)|discipline|train|condition|develop (generic term)|make grow (generic term)
+(verb)|consign (generic term)|charge (generic term)
+(verb)|stop (generic term)|halt (generic term)
+(verb)|checker|chequer|draw (generic term)
+(verb)|move (generic term)|go (generic term)
+(verb)|turn back|arrest|stop|contain|hold back|defend (generic term)
+(verb)|attack (generic term)|aggress (generic term)
+(verb)|write out (generic term)|issue (generic term)|make out (generic term)|cut (generic term)
+(verb)|determine|find out|see|ascertain|watch|learn
+(verb)|verify (generic term)
+(verb)|stop (generic term)
+(verb)|chink|crack (generic term)
+(verb)|crack|break|change (generic term)
+check-in|1
+(noun)|arrival (generic term)
+check-out procedure|1
+(noun)|check|checkout|inspection (generic term)|review (generic term)
+check bit|1
+(noun)|parity bit|parity|bit (generic term)
+check character|1
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+check girl|1
+(noun)|hatcheck girl|checker (generic term)|chequer (generic term)
+check in|1
+(verb)|sign in|report (generic term)|check out (antonym)
+check into|1
+(verb)|check|check up on|look into|check out|suss out|check over|go over|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+check mark|1
+(noun)|check|tick|mark (generic term)
+check off|1
+(verb)|check|mark|mark off|tick off|tick|verify (generic term)
+check out|6
+(verb)|check|check up on|look into|suss out|check over|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|report (generic term)|check in (antonym)
+(verb)|check
+(verb)|run down|pursue (generic term)|follow up on (generic term)|act on (generic term)
+(verb)|cheque|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+(verb)|sound out|feel out|question (generic term)|query (generic term)
+check over|1
+(verb)|check|check up on|look into|check out|suss out|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+check overdraft credit|1
+(noun)|overdraft credit|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)
+check register|1
+(noun)|register (generic term)|registry (generic term)
+check stub|1
+(noun)|stub|counterfoil|record (generic term)
+check up on|1
+(verb)|check|look into|check out|suss out|check over|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+checkbook|1
+(noun)|chequebook|record (generic term)
+checked|2
+(adj)|curbed|restrained (similar term)
+(adj)|checkered|chequered|patterned (similar term)
+checker|5
+(noun)|chequer|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|examiner (generic term)|inspector (generic term)
+(noun)|man (generic term)|piece (generic term)
+(verb)|check|chequer|draw (generic term)
+(verb)|chequer|vary (generic term)|variegate (generic term)|motley (generic term)
+checker board|1
+(noun)|checkerboard|board (generic term)|gameboard (generic term)
+checkerberry|2
+(noun)|teaberry|wintergreen|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+(noun)|wintergreen|boxberry|teaberry|spiceberry|berry (generic term)
+checkerbloom|1
+(noun)|wild hollyhock|Sidalcea malviflora|mallow (generic term)
+checkerboard|1
+(noun)|checker board|board (generic term)|gameboard (generic term)
+checkered|2
+(adj)|checked|chequered|patterned (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+checkered adder|1
+(noun)|milk snake|house snake|milk adder|Lampropeltis triangulum|king snake (generic term)|kingsnake (generic term)
+checkered daffodil|1
+(noun)|snake's head fritillary|guinea-hen flower|leper lily|Fritillaria meleagris|fritillary (generic term)|checkered lily (generic term)
+checkered lily|1
+(noun)|fritillary|bulbous plant (generic term)
+checkered whiptail|1
+(noun)|Cnemidophorus tesselatus|whiptail (generic term)|whiptail lizard (generic term)
+checkers|1
+(noun)|draughts|board game (generic term)
+checking account|1
+(noun)|bank account (generic term)
+checking program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+checklist|1
+(noun)|list (generic term)|listing (generic term)
+checkmate|3
+(noun)|victory (generic term)|triumph (generic term)
+(noun)|mate|chess move (generic term)
+(verb)|mate|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+checkout|3
+(noun)|check|check-out procedure|inspection (generic term)|review (generic term)
+(noun)|checkout time|departure time (generic term)|time of departure (generic term)
+(noun)|checkout counter|counter (generic term)
+checkout counter|1
+(noun)|checkout|counter (generic term)
+checkout line|1
+(noun)|queue (generic term)|waiting line (generic term)
+checkout time|1
+(noun)|checkout|departure time (generic term)|time of departure (generic term)
+checkpoint|1
+(noun)|stop (generic term)
+checkrein|1
+(noun)|bearing rein|rein (generic term)
+checkroom|1
+(noun)|left-luggage office|room (generic term)
+checkrow|1
+(verb)|plant (generic term)|set (generic term)
+checksum|1
+(noun)|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+checkup|1
+(noun)|medical checkup|medical examination|medical exam|medical|health check|examination (generic term)|scrutiny (generic term)
+cheddar|2
+(noun)|Cheddar|village (generic term)|hamlet (generic term)
+(noun)|cheddar cheese|Armerican cheddar|American cheese|cheese (generic term)
+cheddar cheese|1
+(noun)|cheddar|Armerican cheddar|American cheese|cheese (generic term)
+cheddar pink|1
+(noun)|Diangus gratianopolitanus|pink (generic term)|garden pink (generic term)
+cheek|5
+(noun)|feature (generic term)|lineament (generic term)
+(noun)|impudence|impertinence|disrespect (generic term)|discourtesy (generic term)
+(noun)|buttock|body part (generic term)
+(noun)|boldness|nerve|brass|face|aggressiveness (generic term)
+(verb)|talk (generic term)|speak (generic term)
+cheek muscle|1
+(noun)|buccinator muscle|musculus buccinator|facial muscle (generic term)
+cheek pouch|1
+(noun)|pouch (generic term)|pocket (generic term)
+cheekbone|1
+(noun)|zygomatic bone|zygomatic|malar|malar bone|jugal bone|os zygomaticum|bone (generic term)|os (generic term)
+cheekily|1
+(adv)|nervily|brashly
+cheekiness|1
+(noun)|crust|gall|impertinence|impudence|insolence|freshness|discourtesy (generic term)|rudeness (generic term)
+cheekpiece|1
+(noun)|strap (generic term)
+cheeky|1
+(adj)|brash|nervy|forward (similar term)
+cheep|2
+(noun)|peep|cry (generic term)
+(verb)|peep|twirp|chirp|chirrup|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+cheer|7
+(noun)|approval (generic term)|commendation (generic term)
+(noun)|cheerfulness|sunniness|sunshine|attribute (generic term)|uncheerfulness (antonym)
+(verb)|hearten|recreate|embolden|encourage (generic term)|dishearten (antonym)
+(verb)|applaud (generic term)
+(verb)|cheer up|jolly along|jolly up
+(verb)|cheer up|chirk up|rejoice (generic term)|joy (generic term)|complain (antonym)
+(verb)|inspire|urge|barrack|urge on|exhort|pep up|encourage (generic term)
+cheer up|2
+(verb)|cheer|jolly along|jolly up
+(verb)|cheer|chirk up|rejoice (generic term)|joy (generic term)|complain (antonym)
+cheerer|1
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+cheerful|2
+(adj)|beaming (similar term)|glad (similar term)|beamish (similar term)|smiling (similar term)|twinkly (similar term)|blithe (similar term)|blithesome (similar term)|lighthearted (similar term)|lightsome (similar term)|light-hearted (similar term)|buoyant (similar term)|chirpy (similar term)|perky (similar term)|cheering (similar term)|cheery (similar term)|gay (similar term)|sunny (similar term)|chipper (similar term)|debonair (similar term)|debonaire (similar term)|jaunty (similar term)|glad (related term)|happy (related term)|cheerless (antonym)
+(adj)|pollyannaish|upbeat|optimistic (similar term)
+cheerfully|1
+(adv)|cheerlessly (antonym)
+cheerfulness|2
+(noun)|cheer|sunniness|sunshine|attribute (generic term)|uncheerfulness (antonym)
+(noun)|blitheness|happiness (generic term)|cheerlessness (antonym)
+cheerily|1
+(adv)|pleasantly|sunnily
+cheering|3
+(adj)|comforting|satisfying|satisfactory (similar term)
+(adj)|cheerful (similar term)
+(noun)|shouting|encouragement (generic term)
+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 (generic term)|word of farewell (generic term)
+cheerlead|1
+(verb)|cheer (generic term)|inspire (generic term)|urge (generic term)|barrack (generic term)|urge on (generic term)|exhort (generic term)|pep up (generic term)
+cheerleader|2
+(noun)|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|leader (generic term)
+cheerless|1
+(adj)|uncheerful|blue (similar term)|dark (similar term)|depressing (similar term)|dingy (similar term)|disconsolate (similar term)|dismal (similar term)|dispiriting (similar term)|gloomy (similar term)|grim (similar term)|sorry (similar term)|drab (similar term)|drear (similar term)|dreary (similar term)|somber (similar term)|sombre (similar term)|melancholy (similar term)|joyless (related term)|unhappy (related term)|cheerful (antonym)
+cheerlessly|1
+(adv)|cheerfully (antonym)
+cheerlessness|1
+(noun)|uncheerfulness|sadness (generic term)|unhappiness (generic term)|cheerfulness (antonym)
+cheery|1
+(adj)|gay|sunny|cheerful (similar term)
+cheese|4
+(noun)|dairy product (generic term)|food (generic term)|solid food (generic term)
+(noun)|tall mallow|high mallow|cheeseflower|Malva sylvestris|mallow (generic term)
+(verb)|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|spool (generic term)
+cheese cutter|1
+(noun)|kitchen utensil (generic term)
+cheese dip|1
+(noun)|dip (generic term)
+cheese fondue|1
+(noun)|fondue (generic term)|fondu (generic term)
+cheese pizza|1
+(noun)|pizza (generic term)|pizza pie (generic term)
+cheese press|1
+(noun)|press (generic term)|mechanical press (generic term)
+cheese rind|1
+(noun)|rind (generic term)
+cheese sauce|1
+(noun)|white sauce (generic term)|bechamel sauce (generic term)|bechamel (generic term)
+cheese souffle|1
+(noun)|souffle (generic term)
+cheese spread|1
+(noun)|spread (generic term)|paste (generic term)
+cheese tray|1
+(noun)|cheeseboard|tray (generic term)
+cheeseboard|1
+(noun)|cheese tray|tray (generic term)
+cheeseburger|1
+(noun)|hamburger (generic term)|beefburger (generic term)|burger (generic term)
+cheesecake|2
+(noun)|cake (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+cheesecloth|1
+(noun)|gauze (generic term)|netting (generic term)|veiling (generic term)
+cheesed off|1
+(adj)|exasperated|browned off|displeased (similar term)
+cheeseflower|1
+(noun)|tall mallow|high mallow|cheese|Malva sylvestris|mallow (generic term)
+cheeselike|1
+(adj)|soft (similar term)
+cheesemonger|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+cheeseparing|1
+(adj)|close|near|penny-pinching|skinny|stingy (similar term)|ungenerous (similar term)
+cheesy|1
+(adj)|bum|cheap|chintzy|crummy|punk|sleazy|tinny|inferior (similar term)
+cheetah|1
+(noun)|chetah|Acinonyx jubatus|big cat (generic term)|cat (generic term)
+cheever|1
+(noun)|Cheever|John Cheever|writer (generic term)|author (generic term)
+cheewink|1
+(noun)|chewink|Pipilo erythrophthalmus|towhee (generic term)
+chef|1
+(noun)|cook (generic term)
+chef's salad|1
+(noun)|combination salad (generic term)
+chef-d'oeuvre|1
+(noun)|masterpiece|work (generic term)|piece of work (generic term)
+cheilanthes|1
+(noun)|Cheilanthes|genus Cheilanthes|fern genus (generic term)
+cheilanthes alabamensis|1
+(noun)|smooth lip fern|Alabama lip fern|Cheilanthes alabamensis|lip fern (generic term)|lipfern (generic term)
+cheilanthes eatonii|1
+(noun)|southwestern lip fern|Cheilanthes eatonii|lip fern (generic term)|lipfern (generic term)
+cheilanthes gracillima|1
+(noun)|lace fern|Cheilanthes gracillima|fern (generic term)
+cheilanthes lanosa|1
+(noun)|wooly lip fern|hairy lip fern|Cheilanthes lanosa|lip fern (generic term)|lipfern (generic term)
+cheilitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cheiloschisis|1
+(noun)|cleft lip|harelip|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+cheilosis|1
+(noun)|perleche|disorder (generic term)|upset (generic term)
+cheiranthus|1
+(noun)|Cheiranthus|genus Cheiranthus|dilleniid dicot genus (generic term)
+cheiranthus allionii|1
+(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower (generic term)
+cheiranthus asperus|1
+(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower (generic term)
+cheiranthus cheiri|1
+(noun)|wallflower|Cheiranthus cheiri|Erysimum cheiri|flower (generic term)
+chekhov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+chekov|1
+(noun)|Chekhov|Chekov|Anton Chekhov|Anton Chekov|Anton Pavlovich Chekhov|Anton Pavlovich Chekov|dramatist (generic term)|playwright (generic term)
+chela|2
+(noun)|Hindu (generic term)|Hindoo (generic term)
+(noun)|claw|nipper|pincer|extremity (generic term)|appendage (generic term)|member (generic term)
+chelate|4
+(adj)|chelated|chemical process|chemical change|chemical action (related term)
+(adj)|extremity|appendage|member (related term)
+(noun)|chelate compound|heterocyclic compound (generic term)|heterocyclic (generic term)|heterocycle (generic term)
+(verb)|form (generic term)|constitute (generic term)|make (generic term)
+chelate compound|1
+(noun)|chelate|heterocyclic compound (generic term)|heterocyclic (generic term)|heterocycle (generic term)
+chelated|1
+(adj)|chelate|chemical process|chemical change|chemical action (related term)
+chelation|2
+(noun)|process (generic term)|physical process (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+chelicera|1
+(noun)|extremity (generic term)|appendage (generic term)|member (generic term)
+cheliceral|1
+(adj)|chelicerate|extremity|appendage|member (related term)
+chelicerata|1
+(noun)|Chelicerata|superclass Chelicerata|class (generic term)
+chelicerate|1
+(adj)|cheliceral|extremity|appendage|member (related term)
+chelicerous|1
+(adj)|extremity|appendage|member (related term)
+chelidonium|1
+(noun)|Chelidonium|genus Chelidonium|dilleniid dicot genus (generic term)
+chelidonium majus|1
+(noun)|celandine|greater celandine|swallowwort|swallow wort|Chelidonium majus|poppy (generic term)
+chelifer|1
+(noun)|Chelifer|genus Chelifer|arthropod genus (generic term)
+chelifer cancroides|1
+(noun)|book scorpion|Chelifer cancroides|false scorpion (generic term)|pseudoscorpion (generic term)
+cheliferous|1
+(adj)|extremity|appendage|member (related term)
+cheloid|1
+(noun)|keloid|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+chelone|1
+(noun)|Chelone|genus Chelone|asterid dicot genus (generic term)
+chelone glabra|1
+(noun)|shellflower|shell-flower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+chelonethida|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+chelonia|2
+(noun)|Chelonia|genus Chelonia|reptile genus (generic term)
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+chelonia mydas|1
+(noun)|green turtle|Chelonia mydas|sea turtle (generic term)|marine turtle (generic term)
+chelonian|2
+(adj)|animal order (related term)
+(noun)|chelonian reptile|anapsid (generic term)|anapsid reptile (generic term)
+chelonian reptile|1
+(noun)|chelonian|anapsid (generic term)|anapsid reptile (generic term)
+chelonidae|1
+(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family (generic term)
+cheloniidae|1
+(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family (generic term)
+chelyabinsk|1
+(noun)|Chelyabinsk|city (generic term)|metropolis (generic term)|urban center (generic term)
+chelydra|1
+(noun)|Chelydra|genus Chelydra|reptile genus (generic term)
+chelydra serpentina|1
+(noun)|common snapping turtle|snapper|Chelydra serpentina|snapping turtle (generic term)
+chelydridae|1
+(noun)|Chelydridae|family Chelydridae|reptile family (generic term)
+chem lab|1
+(noun)|chemistry lab|chemistry laboratory|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+chemakuan|1
+(noun)|Chemakuan|Mosan (generic term)
+chemakum|1
+(noun)|Chemakum|Chemakuan (generic term)
+chemic|1
+(adj)|chemical|natural science (related term)
+chemical|3
+(adj)|chemic|natural science (related term)
+(adj)|material|stuff (related term)
+(noun)|chemical substance|material (generic term)|stuff (generic term)
+chemical action|1
+(noun)|chemical process|chemical change|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+chemical agent|1
+(noun)|agent (generic term)
+chemical analysis|1
+(noun)|qualitative analysis|analysis (generic term)
+chemical attraction|1
+(noun)|affinity|force (generic term)
+chemical balance|1
+(noun)|analytical balance|beam balance (generic term)
+chemical bomb|1
+(noun)|gas bomb|bomb (generic term)|chemical weapon (generic term)
+chemical bond|1
+(noun)|bond|attraction (generic term)|attractive force (generic term)
+chemical chain|1
+(noun)|chain|unit (generic term)|building block (generic term)
+chemical change|1
+(noun)|chemical process|chemical action|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+chemical compound|1
+(noun)|compound|substance (generic term)|matter (generic term)
+chemical decomposition reaction|1
+(noun)|decomposition|decomposition reaction|chemical reaction (generic term)|reaction (generic term)
+chemical defence|1
+(noun)|chemical defense|defense (generic term)|defence (generic term)|defensive measure (generic term)
+chemical defense|1
+(noun)|chemical defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+chemical diabetes|1
+(noun)|latent diabetes|diabetes mellitus (generic term)|DM (generic term)
+chemical element|1
+(noun)|element|substance (generic term)|matter (generic term)
+chemical energy|1
+(noun)|energy (generic term)
+chemical engineering|2
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+(noun)|technology (generic term)|engineering (generic term)
+chemical equilibrium|1
+(noun)|equilibrium|chemical reaction (generic term)|reaction (generic term)
+chemical formula|1
+(noun)|formula|statement (generic term)
+chemical group|1
+(noun)|group|radical|unit (generic term)|building block (generic term)
+chemical industry|1
+(noun)|industry (generic term)
+chemical irritant|1
+(noun)|substance (generic term)|matter (generic term)
+chemical mace|1
+(noun)|Mace|Chemical Mace|chloroacetophenone (generic term)|CN gas (generic term)
+chemical mechanism|1
+(noun)|mechanism|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+chemical notation|1
+(noun)|notation (generic term)|notational system (generic term)
+chemical operations|1
+(noun)|chemical warfare|war (generic term)|warfare (generic term)
+chemical phenomenon|1
+(noun)|natural phenomenon (generic term)
+chemical plant|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+chemical process|1
+(noun)|chemical change|chemical action|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+chemical property|1
+(noun)|property (generic term)
+chemical reaction|1
+(noun)|reaction|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+chemical reactor|1
+(noun)|apparatus (generic term)|setup (generic term)
+chemical science|1
+(noun)|chemistry|natural science (generic term)
+chemical substance|1
+(noun)|chemical|material (generic term)|stuff (generic term)
+chemical terrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+chemical warfare|1
+(noun)|chemical operations|war (generic term)|warfare (generic term)
+chemical weapon|1
+(noun)|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)
+chemical weapons convention|1
+(noun)|Chemical Weapons Convention|convention (generic term)
+chemically|1
+(adv)|with chemicals
+chemiluminescence|1
+(noun)|luminescence (generic term)
+chemiluminescent|1
+(adj)|luminescence (related term)
+chemin de fer|1
+(noun)|baccarat|card game (generic term)|cards (generic term)
+chemise|2
+(noun)|shimmy|shift|slip|teddy|undergarment (generic term)|unmentionable (generic term)
+(noun)|sack|shift|dress (generic term)|frock (generic term)
+chemisorb|1
+(verb)|sorb (generic term)|take up (generic term)
+chemisorption|1
+(noun)|chemosorption|adsorption (generic term)|surface assimilation (generic term)
+chemisorptive|1
+(adj)|chemosorptive|adsorbent (similar term)|adsorptive (similar term)|surface-assimilative (similar term)
+chemist|2
+(noun)|scientist (generic term)|man of science (generic term)
+(noun)|pharmacist|druggist|apothecary|pill pusher|pill roller|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+chemist's|1
+(noun)|drugstore|apothecary's shop|chemist's shop|pharmacy|shop (generic term)|store (generic term)
+chemist's shop|1
+(noun)|drugstore|apothecary's shop|chemist's|pharmacy|shop (generic term)|store (generic term)
+chemistry|2
+(noun)|chemical science|natural science (generic term)
+(noun)|interpersonal chemistry|alchemy|social relation (generic term)
+chemistry class|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+chemistry department|1
+(noun)|department of chemistry|academic department (generic term)
+chemistry lab|1
+(noun)|chemistry laboratory|chem lab|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+chemistry laboratory|1
+(noun)|chemistry lab|chem lab|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+chemnitz|1
+(noun)|Chemnitz|Karl-Marx-Stadt|city (generic term)|metropolis (generic term)|urban center (generic term)
+chemoimmunology|1
+(noun)|immunochemistry|chemistry (generic term)|chemical science (generic term)|immunology (generic term)
+chemoreceptive|1
+(adj)|sense organ|sensory receptor|receptor (related term)
+chemoreceptor|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+chemosis|1
+(noun)|edema (generic term)|oedema (generic term)|hydrops (generic term)|dropsy (generic term)
+chemosorption|1
+(noun)|chemisorption|adsorption (generic term)|surface assimilation (generic term)
+chemosorptive|1
+(adj)|chemisorptive|adsorbent (similar term)|adsorptive (similar term)|surface-assimilative (similar term)
+chemosurgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+chemosynthesis|1
+(noun)|synthesis (generic term)
+chemotaxis|1
+(noun)|taxis (generic term)
+chemotherapeutic|1
+(adj)|chemotherapeutical|therapy (related term)
+chemotherapeutical|1
+(adj)|chemotherapeutic|therapy (related term)
+chemotherapy|1
+(noun)|therapy (generic term)
+chemulpo|1
+(noun)|Inchon|Incheon|Chemulpo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+chen|1
+(noun)|Chen|subgenus Chen|bird genus (generic term)
+chen caerulescens|1
+(noun)|blue goose|Chen caerulescens|goose (generic term)
+chen n. yang|1
+(noun)|Yang Chen Ning|Chen N. Yang|physicist (generic term)
+chenfish|1
+(noun)|white croaker|kingfish|Genyonemus lineatus|croaker (generic term)
+chenille|2
+(noun)|chenille cord|cord (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chenille cord|1
+(noun)|chenille|cord (generic term)
+chenin blanc|2
+(noun)|Chenin blanc|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Chenin blanc|white wine (generic term)
+chennai|1
+(noun)|Chennai|Madras|city (generic term)|metropolis (generic term)|urban center (generic term)
+chenopodiaceae|1
+(noun)|Chenopodiaceae|family Chenopodiaceae|goosefoot family|caryophylloid dicot family (generic term)
+chenopodiales|1
+(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order (generic term)
+chenopodium|1
+(noun)|Chenopodium|genus Chenopodium|caryophylloid dicot genus (generic term)
+chenopodium album|1
+(noun)|lamb's-quarters|pigweed|wild spinach|Chenopodium album|goosefoot (generic term)
+chenopodium ambrosioides|1
+(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot (generic term)
+chenopodium bonus-henricus|1
+(noun)|good-king-henry|allgood|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot (generic term)
+chenopodium botrys|1
+(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot (generic term)
+chenopodium capitatum|1
+(noun)|strawberry blite|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot (generic term)
+chenopodium glaucum|1
+(noun)|oak-leaved goosefoot|oakleaf goosefoot|Chenopodium glaucum|goosefoot (generic term)
+chenopodium hybridum|1
+(noun)|sowbane|red goosefoot|Chenopodium hybridum|goosefoot (generic term)
+chenopodium murale|1
+(noun)|nettle-leaved goosefoot|nettleleaf goosefoot|Chenopodium murale|goosefoot (generic term)
+chenopodium rubrum|1
+(noun)|red goosefoot|French spinach|Chenopodium rubrum|goosefoot (generic term)
+chenopodium vulvaria|1
+(noun)|stinking goosefoot|Chenopodium vulvaria|goosefoot (generic term)
+cheoplastic metal|1
+(noun)|alloy (generic term)|metal (generic term)
+cheops|1
+(noun)|Cheops|Khufu|Pharaoh (generic term)|Pharaoh of Egypt (generic term)
+cheque|2
+(noun)|check|bank check|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+(verb)|check out|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+chequebook|1
+(noun)|checkbook|record (generic term)
+chequer|3
+(noun)|checker|attendant (generic term)|attender (generic term)|tender (generic term)
+(verb)|check|checker|draw (generic term)
+(verb)|checker|vary (generic term)|variegate (generic term)|motley (generic term)
+chequered|1
+(adj)|checked|checkered|patterned (similar term)
+cherbourg|1
+(noun)|Cherbourg|town (generic term)|port (generic term)
+cheremis|2
+(noun)|Cheremis|Cheremiss|Mari|Russian (generic term)
+(noun)|Cheremis|Cheremiss|Mari|Volgaic (generic term)
+cheremiss|2
+(noun)|Cheremis|Cheremiss|Mari|Russian (generic term)
+(noun)|Cheremis|Cheremiss|Mari|Volgaic (generic term)
+cherepovets|1
+(noun)|Cherepovets|city (generic term)|metropolis (generic term)|urban center (generic term)
+cherimolla|1
+(noun)|cherimoya|custard apple (generic term)
+cherimoya|2
+(noun)|cherimoya tree|Annona cherimola|custard apple (generic term)|custard apple tree (generic term)
+(noun)|cherimolla|custard apple (generic term)
+cherimoya tree|1
+(noun)|cherimoya|Annona cherimola|custard apple (generic term)|custard apple tree (generic term)
+cherish|1
+(verb)|care for|hold dear|treasure|love (generic term)
+cherished|1
+(adj)|precious|treasured|wanted|loved (similar term)
+chermidae|1
+(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family (generic term)
+chernobyl|1
+(noun)|Chernobyl|city (generic term)|metropolis (generic term)|urban center (generic term)
+chernozemic soil|1
+(noun)|loam (generic term)
+cherokee|2
+(noun)|Cherokee|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+(noun)|Cherokee|Iroquois (generic term)
+cherokee rose|1
+(noun)|Cherokee rose|Rosa laevigata|rose (generic term)|rosebush (generic term)
+cheroot|1
+(noun)|cigar (generic term)
+cherry|5
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+(noun)|wood (generic term)
+(noun)|cherry tree|fruit tree (generic term)
+(noun)|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+(noun)|cerise|cherry red|red (generic term)|redness (generic term)
+cherry-like|1
+(adj)|vegetable (similar term)
+cherry-red|1
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+cherry-sized|1
+(adj)|sized (similar term)
+cherry-tree gum|1
+(noun)|gum (generic term)
+cherry apple|1
+(noun)|Siberian crab|Siberian crab apple|cherry crab|Malus baccata|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+cherry birch|1
+(noun)|sweet birch|black birch|Betula lenta|birch (generic term)|birch tree (generic term)
+cherry bomb|1
+(noun)|firecracker (generic term)|cracker (generic term)|banger (generic term)
+cherry crab|1
+(noun)|Siberian crab|Siberian crab apple|cherry apple|Malus baccata|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+cherry laurel|2
+(noun)|laurel cherry|Prunus laurocerasus|shrub (generic term)|bush (generic term)
+(noun)|laurel cherry|mock orange|wild orange|Prunus caroliniana|angiospermous tree (generic term)|flowering tree (generic term)
+cherry pepper|1
+(noun)|Capsicum annuum cerasiforme|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+cherry plum|1
+(noun)|myrobalan|myrobalan plum|Prunus cerasifera|plum (generic term)|plum tree (generic term)
+cherry red|1
+(noun)|cerise|cherry|red (generic term)|redness (generic term)
+cherry stone|1
+(noun)|stone (generic term)|pit (generic term)|endocarp (generic term)
+cherry tomato|2
+(noun)|Lycopersicon esculentum cerasiforme|tomato (generic term)|love apple (generic term)|tomato plant (generic term)|Lycopersicon esculentum (generic term)
+(noun)|tomato (generic term)
+cherry tree|1
+(noun)|cherry|fruit tree (generic term)
+cherrystone|2
+(noun)|cherrystone clam|quahaug (generic term)|quahog (generic term)|hard-shell clam (generic term)|round clam (generic term)
+(noun)|cherrystone clam|quahog (generic term)|quahaug (generic term)|hard-shell clam (generic term)|hard clam (generic term)|round clam (generic term)|Venus mercenaria (generic term)|Mercenaria mercenaria (generic term)
+cherrystone clam|2
+(noun)|cherrystone|quahaug (generic term)|quahog (generic term)|hard-shell clam (generic term)|round clam (generic term)
+(noun)|cherrystone|quahog (generic term)|quahaug (generic term)|hard-shell clam (generic term)|hard clam (generic term)|round clam (generic term)|Venus mercenaria (generic term)|Mercenaria mercenaria (generic term)
+chert|1
+(noun)|silica (generic term)|silicon oxide (generic term)|silicon dioxide (generic term)
+cherty|1
+(adj)|silica|silicon oxide|silicon dioxide (related term)
+cherub|2
+(noun)|baby (generic term)|babe (generic term)|infant (generic term)
+(noun)|angel (generic term)
+cherubic|1
+(adj)|angelic|angelical|seraphic|sweet|lovable (similar term)|loveable (similar term)
+cherubini|1
+(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer (generic term)
+chervil|2
+(noun)|beaked parsley|Anthriscus cereifolium|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+chesapeake bay|1
+(noun)|Chesapeake Bay|bay (generic term)|embayment (generic term)
+chesapeake bay retriever|1
+(noun)|Chesapeake Bay retriever|retriever (generic term)
+cheshire cat|1
+(noun)|Cheshire cat|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+cheshire cheese|1
+(noun)|Cheshire cheese|cheese (generic term)
+chess|2
+(noun)|cheat|Bromus secalinus|brome (generic term)|bromegrass (generic term)
+(noun)|chess game|board game (generic term)
+chess board|1
+(noun)|chessboard|checkerboard (generic term)|checker board (generic term)
+chess club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+chess game|1
+(noun)|chess|board game (generic term)
+chess master|1
+(noun)|chess player (generic term)
+chess match|1
+(noun)|match (generic term)
+chess move|1
+(noun)|move (generic term)
+chess opening|1
+(noun)|opening|succession (generic term)|sequence (generic term)
+chess piece|1
+(noun)|chessman|man (generic term)|piece (generic term)
+chess player|1
+(noun)|player (generic term)|participant (generic term)
+chess set|1
+(noun)|set (generic term)
+chessboard|1
+(noun)|chess board|checkerboard (generic term)|checker board (generic term)
+chessman|1
+(noun)|chess piece|man (generic term)|piece (generic term)
+chest|3
+(noun)|thorax|pectus|body part (generic term)
+(noun)|box (generic term)
+(noun)|chest of drawers|bureau|dresser|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+chest cavity|1
+(noun)|thoracic cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+chest of drawers|1
+(noun)|chest|bureau|dresser|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+chest pain|1
+(noun)|pain (generic term)|hurting (generic term)
+chest protector|1
+(noun)|protective garment (generic term)
+chest register|1
+(noun)|chest voice|chest tone|register (generic term)
+chest tone|1
+(noun)|chest register|chest voice|register (generic term)
+chest voice|1
+(noun)|chest register|chest tone|register (generic term)
+chester|1
+(noun)|Chester|city (generic term)|metropolis (generic term)|urban center (generic term)
+chester a. arthur|1
+(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+chester alan arthur|1
+(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+chester nimitz|1
+(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer (generic term)
+chester william nimitz|1
+(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer (generic term)
+chesterfield|3
+(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|davenport (generic term)
+(noun)|greatcoat (generic term)|overcoat (generic term)|topcoat (generic term)
+chesterton|1
+(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer (generic term)|author (generic term)
+chestnut|6
+(adj)|chromatic (similar term)
+(noun)|wood (generic term)
+(noun)|chestnut tree|tree (generic term)
+(noun)|edible nut (generic term)
+(noun)|callus (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+chestnut-bark disease|1
+(noun)|chestnut blight|chestnut canker|blight (generic term)
+chestnut-brown|1
+(adj)|chromatic (similar term)
+chestnut-colored|1
+(adj)|chestnut-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+chestnut-coloured|1
+(adj)|chestnut-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+chestnut blight|1
+(noun)|chestnut canker|chestnut-bark disease|blight (generic term)
+chestnut canker|1
+(noun)|chestnut blight|chestnut-bark disease|blight (generic term)
+chestnut oak|1
+(noun)|oak (generic term)|oak tree (generic term)
+chestnut tree|1
+(noun)|chestnut|tree (generic term)
+chesty|2
+(adj)|big-chested|robust (similar term)
+(adj)|arrogant|self-important|proud (similar term)
+chetah|1
+(noun)|cheetah|Acinonyx jubatus|big cat (generic term)|cat (generic term)
+chetrum|1
+(noun)|Bhutanese monetary unit (generic term)
+cheval-de-frise|1
+(noun)|chevaux-de-frise|defensive structure (generic term)|defense (generic term)|defence (generic term)
+cheval glass|1
+(noun)|mirror (generic term)
+chevalier|2
+(noun)|Chevalier|Maurice Chevalier|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|cavalier|male aristocrat (generic term)
+chevalier de bayard|1
+(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier (generic term)
+chevalier de lamarck|1
+(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist (generic term)|natural scientist (generic term)
+chevaux-de-frise|1
+(noun)|cheval-de-frise|defensive structure (generic term)|defense (generic term)|defence (generic term)
+cheviot|1
+(noun)|Cheviot|domestic sheep (generic term)|Ovis aries (generic term)
+cheviot hills|1
+(noun)|Cheviots|Cheviot Hills|hill (generic term)
+cheviots|1
+(noun)|Cheviots|Cheviot Hills|hill (generic term)
+chevre|1
+(noun)|goat cheese|cheese (generic term)
+chevron|2
+(noun)|stripe|stripes|grade insignia|badge (generic term)
+(noun)|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+chevrotain|1
+(noun)|mouse deer|ruminant (generic term)
+chevvy|1
+(verb)|harass|hassle|harry|chivy|chivvy|chevy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+chevy|1
+(verb)|harass|hassle|harry|chivy|chivvy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+chew|3
+(noun)|chaw|cud|quid|plug|wad|morsel (generic term)|bit (generic term)|bite (generic term)
+(noun)|chewing|mastication|manduction|change of state (generic term)
+(verb)|masticate|manducate|jaw|grate (generic term)|grind (generic term)
+chew out|1
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew up|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+chew over|1
+(verb)|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+chew the fat|1
+(verb)|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+chew up|1
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+chewa|1
+(noun)|Chewa|African (generic term)
+chewable|1
+(adj)|cuttable|tender (similar term)
+chewer|1
+(noun)|consumer (generic term)
+chewing|1
+(noun)|chew|mastication|manduction|change of state (generic term)
+chewing gum|2
+(noun)|gum (generic term)
+(noun)|gum|sweet (generic term)|confection (generic term)
+chewing out|1
+(noun)|castigation|earful|bawling out|upbraiding|going-over|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+chewink|1
+(noun)|cheewink|Pipilo erythrophthalmus|towhee (generic term)
+chewy|2
+(adj)|tough (similar term)
+(adj)|elastic (similar term)
+cheyenne|3
+(noun)|Cheyenne|capital of Wyoming|state capital (generic term)
+(noun)|Cheyenne|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+(noun)|Cheyenne|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+cheyne-stokes respiration|1
+(noun)|periodic breathing|Cheyne-Stokes respiration|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+chi|2
+(noun)|qi|ch'i|ki|energy (generic term)|vim (generic term)|vitality (generic term)
+(noun)|khi|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+chiacoan peccary|1
+(noun)|Chiacoan peccary|peccary (generic term)|musk hog (generic term)
+chian|1
+(adj)|Chian|Aegean island (related term)
+chian turpentine|1
+(noun)|Chian turpentine|turpentine (generic term)|gum terpentine (generic term)
+chiang chung-cheng|1
+(noun)|Chiang Kai-shek|Chiang Chung-cheng|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+chiang kai-shek|1
+(noun)|Chiang Kai-shek|Chiang Chung-cheng|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+chianti|1
+(noun)|Chianti|red wine (generic term)
+chiaroscuro|1
+(noun)|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+chiasm|1
+(noun)|chiasma|decussation|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+chiasma|1
+(noun)|chiasm|decussation|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+chiasma opticum|1
+(noun)|optic chiasma|optic chiasm|chiasma (generic term)|chiasm (generic term)|decussation (generic term)
+chiasmal|1
+(adj)|chiasmic|chiasmatic|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+chiasmatic|1
+(adj)|chiasmal|chiasmic|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+chiasmic|1
+(adj)|chiasmal|chiasmatic|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+chiasmus|1
+(noun)|rhetorical device (generic term)
+chic|2
+(adj)|smart|voguish|stylish (similar term)|fashionable (similar term)
+(noun)|chicness|chichi|modishness|smartness|stylishness|swank|last word|elegance (generic term)
+chicago|2
+(noun)|Chicago|Windy City|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game (generic term)|cards (generic term)
+chicane|5
+(noun)|bridge hand (generic term)
+(noun)|movable barrier (generic term)
+(noun)|trickery|chicanery|guile|wile|shenanigan|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(verb)|cheat|chouse|shaft|screw|jockey|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|cavil|carp|object (generic term)
+chicanery|1
+(noun)|trickery|chicane|guile|wile|shenanigan|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+chicano|1
+(noun)|Chicano|Mexican (generic term)
+chicha|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+chichewa|1
+(noun)|Chichewa|Bantu (generic term)|Bantoid language (generic term)
+chichi|3
+(adj)|stylish (similar term)|fashionable (similar term)
+(noun)|dresser (generic term)
+(noun)|chic|chicness|modishness|smartness|stylishness|swank|last word|elegance (generic term)
+chichipe|1
+(noun)|Lemaireocereus chichipe|cactus (generic term)
+chick|2
+(noun)|biddy|chicken (generic term)|Gallus gallus (generic term)|young bird (generic term)
+(noun)|dame|doll|wench|skirt|bird|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+chickadee|1
+(noun)|titmouse (generic term)|tit (generic term)
+chickamauga|1
+(noun)|Chickamauga|battle of Chickamauga|pitched battle (generic term)
+chickasaw|2
+(noun)|Chickasaw|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Chickasaw|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+chickasaw plum|1
+(noun)|hog plum|hog plum bush|Prunus angustifolia|wild plum (generic term)|wild plum tree (generic term)
+chicken|5
+(adj)|chickenhearted|lily-livered|white-livered|yellow|yellow-bellied|cowardly (similar term)|fearful (similar term)
+(noun)|poulet|volaille|poultry (generic term)
+(noun)|Gallus gallus|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+(noun)|wimp|crybaby|weakling (generic term)|doormat (generic term)|wuss (generic term)
+(noun)|contest (generic term)|competition (generic term)
+chicken-breasted|1
+(adj)|pigeon-breasted|unshapely (similar term)
+chicken-fight|1
+(verb)|chickenfight|contend (generic term)|fight (generic term)|struggle (generic term)
+chicken and rice|1
+(noun)|dish (generic term)
+chicken breast|1
+(noun)|pigeon breast|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+chicken broth|1
+(noun)|chicken stock|broth (generic term)|stock (generic term)
+chicken cacciatora|1
+(noun)|chicken cacciatore|hunter's chicken|chicken casserole (generic term)
+chicken cacciatore|1
+(noun)|chicken cacciatora|hunter's chicken|chicken casserole (generic term)
+chicken casserole|1
+(noun)|casserole (generic term)
+chicken coop|1
+(noun)|coop|hencoop|henhouse|farm building (generic term)
+chicken cordon bleu|1
+(noun)|dish (generic term)
+chicken drumstick|1
+(noun)|chicken leg|drumstick (generic term)
+chicken farm|1
+(noun)|farm (generic term)
+chicken feed|2
+(noun)|scratch|mash (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+chicken hawk|1
+(noun)|hen hawk|hawk (generic term)
+chicken kiev|1
+(noun)|chicken Kiev|dish (generic term)
+chicken leg|1
+(noun)|chicken drumstick|drumstick (generic term)
+chicken little|1
+(noun)|Chicken Little|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+chicken liver|1
+(noun)|liver (generic term)
+chicken louse|1
+(noun)|shaft louse|Menopon palladum|Menopon gallinae|bird louse (generic term)|biting louse (generic term)|louse (generic term)
+chicken manure|1
+(noun)|manure (generic term)
+chicken marengo|1
+(noun)|chicken Marengo|dish (generic term)
+chicken mousse|1
+(noun)|mousse (generic term)
+chicken out|1
+(verb)|back off|pull out|back down|bow out|retire (generic term)|withdraw (generic term)
+chicken paprika|1
+(noun)|chicken paprikash|dish (generic term)
+chicken paprikash|1
+(noun)|chicken paprika|dish (generic term)
+chicken purloo|1
+(noun)|purloo|poilu|stew (generic term)
+chicken roundworm|1
+(noun)|Ascaridia galli|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+chicken run|1
+(noun)|chicken yard|hen yard|fowl run|yard (generic term)
+chicken salad|1
+(noun)|salad (generic term)
+chicken sandwich|1
+(noun)|sandwich (generic term)
+chicken scratch|1
+(noun)|scribble (generic term)|scratch (generic term)|scrawl (generic term)|cacography (generic term)
+chicken snake|1
+(noun)|rat snake (generic term)
+chicken soup|1
+(noun)|soup (generic term)
+chicken stew|1
+(noun)|fricassee (generic term)
+chicken stock|1
+(noun)|chicken broth|broth (generic term)|stock (generic term)
+chicken taco|1
+(noun)|taco (generic term)
+chicken tetrazzini|1
+(noun)|chicken Tetrazzini|Tetrazzini (generic term)
+chicken wing|1
+(noun)|wing (generic term)
+chicken wire|1
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+chicken yard|1
+(noun)|hen yard|chicken run|fowl run|yard (generic term)
+chickenfeed|1
+(noun)|small change|chump change|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+chickenfight|1
+(verb)|chicken-fight|contend (generic term)|fight (generic term)|struggle (generic term)
+chickenhearted|1
+(adj)|chicken|lily-livered|white-livered|yellow|yellow-bellied|cowardly (similar term)|fearful (similar term)
+chickenpox|1
+(noun)|varicella|pox (generic term)
+chickenshit|1
+(noun)|drivel (generic term)|garbage (generic term)
+chickeree|1
+(noun)|Douglas squirrel|Tamiasciurus douglasi|tree squirrel (generic term)
+chickpea|2
+(noun)|chickpea plant|Egyptian pea|Cicer arietinum|legume (generic term)|leguminous plant (generic term)
+(noun)|garbanzo|legume (generic term)
+chickpea plant|1
+(noun)|chickpea|Egyptian pea|Cicer arietinum|legume (generic term)|leguminous plant (generic term)
+chickweed|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|mouse-ear chickweed|mouse eared chickweed|mouse ear|clammy chickweed|herb (generic term)|herbaceous plant (generic term)
+chickweed phlox|1
+(noun)|sand phlox|Phlox bifida|Phlox stellaria|phlox (generic term)
+chicle|1
+(noun)|chicle gum|gum (generic term)
+chicle gum|1
+(noun)|chicle|gum (generic term)
+chicness|1
+(noun)|chic|chichi|modishness|smartness|stylishness|swank|last word|elegance (generic term)
+chico|1
+(noun)|Marx|Leonard Marx|Chico|comedian (generic term)|comic (generic term)
+chicory|4
+(noun)|chicory root|root (generic term)
+(noun)|succory|chicory plant|Cichorium intybus|herb (generic term)|herbaceous plant (generic term)
+(noun)|chicory root|coffee substitute (generic term)
+(noun)|curly endive|salad green (generic term)|salad greens (generic term)
+chicory escarole|1
+(noun)|endive|escarole|salad green (generic term)|salad greens (generic term)
+chicory plant|1
+(noun)|chicory|succory|Cichorium intybus|herb (generic term)|herbaceous plant (generic term)
+chicory root|2
+(noun)|chicory|root (generic term)
+(noun)|chicory|coffee substitute (generic term)
+chicot|1
+(noun)|Kentucky coffee tree|bonduc|Gymnocladus dioica|tree (generic term)
+chide|1
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+chiding|1
+(noun)|scolding|objurgation|tongue-lashing|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+chief|3
+(adj)|main|primary|principal|important (similar term)|of import (similar term)
+(noun)|head|top dog|leader (generic term)
+(noun)|foreman|gaffer|honcho|boss|supervisor (generic term)
+chief assistant|1
+(noun)|right-hand man|man Friday|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+chief constable|1
+(noun)|Chief Constable|captain (generic term)|police captain (generic term)|police chief (generic term)
+chief executive|2
+(noun)|President of the United States|United States President|President|Chief Executive|head of state (generic term)|chief of state (generic term)
+(noun)|President of the United States|President|Chief Executive|presidency (generic term)|presidentship (generic term)
+chief executive officer|1
+(noun)|CEO|chief operating officer|corporate executive (generic term)|business executive (generic term)
+chief financial officer|1
+(noun)|CFO|corporate executive (generic term)|business executive (generic term)
+chief joseph|1
+(noun)|Joseph|Chief Joseph|Indian chief (generic term)|Indian chieftain (generic term)|Nez Perce (generic term)
+chief justice|1
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+chief of staff|1
+(noun)|military officer (generic term)|officer (generic term)
+chief of state|1
+(noun)|head of state|representative (generic term)
+chief operating officer|1
+(noun)|chief executive officer|CEO|corporate executive (generic term)|business executive (generic term)
+chief petty officer|1
+(noun)|noncommissioned officer (generic term)|noncom (generic term)
+chief secretary|1
+(noun)|Chief Secretary|cabinet minister (generic term)
+chiefly|1
+(adv)|principally|primarily|mainly|in the main
+chieftain|2
+(noun)|captain|leader (generic term)
+(noun)|headman|tribal chief|leader (generic term)
+chieftaincy|1
+(noun)|chieftainship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chieftainship|1
+(noun)|chieftaincy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+chiffon|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chiffon cake|1
+(noun)|cake (generic term)
+chiffonier|1
+(noun)|commode|chest of drawers (generic term)|chest (generic term)|bureau (generic term)|dresser (generic term)
+chigetai|1
+(noun)|dziggetai|Equus hemionus hemionus|onager (generic term)|Equus hemionus (generic term)
+chigger|2
+(noun)|chigoe|chigoe flea|Tunga penetrans|flea (generic term)
+(noun)|harvest mite|jigger|redbug|trombiculiid (generic term)
+chigger flower|1
+(noun)|butterfly weed|orange milkweed|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+chiggerflower|1
+(noun)|butterfly weed|orange milkweed|chigger flower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+chignon|1
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+chigoe|1
+(noun)|chigger|chigoe flea|Tunga penetrans|flea (generic term)
+chigoe flea|1
+(noun)|chigoe|chigger|Tunga penetrans|flea (generic term)
+chihuahua|3
+(noun)|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Chihuahua|state (generic term)|province (generic term)
+(noun)|Chihuahua|toy dog (generic term)|toy (generic term)
+chihuahuan desert|1
+(noun)|Chihuahuan Desert|desert (generic term)
+chihuahuan spotted whiptail|1
+(noun)|Chihuahuan spotted whiptail|Cnemidophorus exsanguis|whiptail (generic term)|whiptail lizard (generic term)
+chilblain|1
+(noun)|chilblains|pernio|blain (generic term)
+chilblained|1
+(adj)|unhealthy (similar term)
+chilblains|1
+(noun)|chilblain|pernio|blain (generic term)
+child|4
+(noun)|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+(noun)|kid|offspring (generic term)|progeny (generic term)|issue (generic term)|parent (antonym)
+(noun)|baby|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|descendant (generic term)|descendent (generic term)
+child's body|1
+(noun)|juvenile body (generic term)
+child's game|1
+(noun)|game (generic term)
+child's play|2
+(noun)|cinch|breeze|picnic|snap|duck soup|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|play|diversion (generic term)|recreation (generic term)
+child's room|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+child-centered|1
+(adj)|humane (similar term)
+child-proof|1
+(verb)|childproof|proof (generic term)
+child abuse|1
+(noun)|maltreatment (generic term)|ill-treatment (generic term)|ill-usage (generic term)|abuse (generic term)
+child care|1
+(noun)|childcare|service (generic term)
+child molester|1
+(noun)|pederast|paederast|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+child neglect|1
+(noun)|maltreatment (generic term)|ill-treatment (generic term)|ill-usage (generic term)|abuse (generic term)
+child pornography|1
+(noun)|kiddie porn|kiddy porn|pornography (generic term)|porno (generic term)|porn (generic term)|erotica (generic term)|smut (generic term)
+child prodigy|1
+(noun)|infant prodigy|wonder child|prodigy (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+child psychology|1
+(noun)|developmental psychology|genetic psychology|psychology (generic term)|psychological science (generic term)
+child support|1
+(noun)|support payment (generic term)
+child welfare agency|1
+(noun)|child welfare service|administrative unit (generic term)|administrative body (generic term)
+child welfare service|1
+(noun)|child welfare agency|administrative unit (generic term)|administrative body (generic term)
+childbearing|2
+(adj)|parturition|birth|giving birth|birthing (related term)
+(noun)|childbirth|accouchement|vaginal birth|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+childbed|1
+(noun)|parturiency|labor|labour|confinement|lying-in|travail|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+childbed fever|1
+(noun)|puerperal fever|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+childbirth|1
+(noun)|childbearing|accouchement|vaginal birth|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+childbirth-preparation class|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+childcare|1
+(noun)|child care|service (generic term)
+childe hassam|1
+(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter (generic term)
+childhood|2
+(noun)|time of life (generic term)
+(noun)|puerility|immaturity (generic term)|immatureness (generic term)
+childish|1
+(adj)|infantile|immature (similar term)
+childishness|1
+(noun)|puerility|youngness (generic term)
+childless|1
+(adj)|unfruitful (similar term)
+childlessness|1
+(noun)|situation (generic term)|state of affairs (generic term)
+childlike|2
+(adj)|childly|young (similar term)|immature (similar term)
+(adj)|wide-eyed|round-eyed|dewy-eyed|simple|naive (similar term)|naif (similar term)
+childly|1
+(adj)|childlike|young (similar term)|immature (similar term)
+childproof|1
+(verb)|child-proof|proof (generic term)
+chile|2
+(noun)|Chile|Republic of Chile|South American country (generic term)|South American nation (generic term)
+(noun)|chili|chili pepper|chilli|chilly|hot pepper (generic term)
+chile bonito|1
+(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito (generic term)
+chile hazel|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+chile nut|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+chile pine|1
+(noun)|monkey puzzle|Araucaria araucana|araucaria (generic term)
+chile tarweed|1
+(noun)|melosa|Chile tarweed|madia oil plant|Madia sativa|tarweed (generic term)
+chilean|2
+(adj)|Chilean|South American country|South American nation (related term)
+(noun)|Chilean|South American (generic term)
+chilean bonito|1
+(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito (generic term)
+chilean cedar|1
+(noun)|Chilean cedar|Austrocedrus chilensis|cedar (generic term)|cedar tree (generic term)
+chilean firebush|1
+(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub (generic term)|bush (generic term)
+chilean flameflower|1
+(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub (generic term)|bush (generic term)
+chilean hazelnut|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+chilean jasmine|1
+(noun)|Chilean jasmine|Mandevilla laxa|liana (generic term)
+chilean monetary unit|1
+(noun)|Chilean monetary unit|monetary unit (generic term)
+chilean nut|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+chilean peso|1
+(noun)|Chilean peso|peso|Chilean monetary unit (generic term)
+chilean rimu|1
+(noun)|Chilean rimu|Lepidothamnus fonkii|shrub (generic term)|bush (generic term)
+chilean strawberry|1
+(noun)|beach strawberry|Chilean strawberry|Fragaria chiloensis|strawberry (generic term)
+chili|2
+(noun)|chili con carne|dish (generic term)
+(noun)|chili pepper|chilli|chilly|chile|hot pepper (generic term)
+chili con carne|1
+(noun)|chili|dish (generic term)
+chili dog|1
+(noun)|hotdog (generic term)|hot dog (generic term)|red hot (generic term)
+chili pepper|2
+(noun)|cayenne|cayenne pepper|chilli pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|chili|chilli|chilly|chile|hot pepper (generic term)
+chili powder|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+chili sauce|1
+(noun)|condiment (generic term)
+chili vinegar|1
+(noun)|vinegar (generic term)|acetum (generic term)
+chiliad|1
+(noun)|thousand|one thousand|1000|M|K|G|grand|thou|yard|large integer (generic term)
+chiliasm|1
+(noun)|millenarianism|millenarism|millenniumism|theological doctrine (generic term)
+chiliast|1
+(noun)|millenarian|millenarist|optimist (generic term)
+chiliastic|1
+(adj)|millenarian|time period|period of time|period (related term)
+chill|8
+(adj)|chilly|cool (similar term)
+(noun)|iciness|gelidity|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|frisson|shiver|quiver|shudder|thrill|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|shivering|symptom (generic term)
+(noun)|pall|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(verb)|depress (generic term)|deject (generic term)|cast down (generic term)|get down (generic term)|dismay (generic term)|dispirit (generic term)|demoralize (generic term)|demoralise (generic term)
+(verb)|cool|cool down|change (generic term)|alter (generic term)|modify (generic term)|heat (antonym)
+(verb)|cool|cool down|change state (generic term)|turn (generic term)|heat (antonym)
+chill out|1
+(verb)|calm|calm down|cool off|simmer down|settle down|cool it|change state (generic term)|turn (generic term)
+chiller|1
+(noun)|hair-raiser|excitation (generic term)|excitement (generic term)
+chilli|1
+(noun)|chili|chili pepper|chilly|chile|hot pepper (generic term)
+chilli pepper|1
+(noun)|cayenne|cayenne pepper|chili pepper|long pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+chilliness|2
+(noun)|coolness|nip|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|coldness|coolness|frigidity|frigidness|iciness|unemotionality (generic term)|emotionlessness (generic term)
+chilling|2
+(adj)|scarey|scary|shivery|shuddery|alarming (similar term)
+(noun)|cooling|temperature reduction|temperature change (generic term)
+chills and fever|1
+(noun)|ague|symptom (generic term)
+chilly|4
+(adj)|chill|cool (similar term)
+(adj)|unemotional (similar term)
+(adj)|unfriendly (similar term)
+(noun)|chili|chili pepper|chilli|chile|hot pepper (generic term)
+chiloe|1
+(noun)|Chiloe|island (generic term)
+chilomastix|1
+(noun)|Chilomastix|genus Chilomastix|protoctist genus (generic term)
+chilomeniscus|1
+(noun)|Chilomeniscus|genus Chilomeniscus|reptile genus (generic term)
+chilomeniscus cinctus|1
+(noun)|banded sand snake|Chilomeniscus cinctus|sand snake (generic term)
+chilomycterus|1
+(noun)|Chilomycterus|genus Chilomycterus|fish genus (generic term)
+chilopoda|1
+(noun)|Chilopoda|class Chilopoda|class (generic term)
+chilopsis|1
+(noun)|Chilopsis|genus Chilopsis|asterid dicot genus (generic term)
+chilopsis linearis|1
+(noun)|desert willow|Chilopsis linearis|shrub (generic term)|bush (generic term)
+chimaera|3
+(noun)|Chimera|Chimaera|mythical monster (generic term)|mythical creature (generic term)
+(noun)|chimera|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|holocephalan (generic term)
+chimaera monstrosa|1
+(noun)|rabbitfish|Chimaera monstrosa|chimaera (generic term)
+chimaeridae|1
+(noun)|Chimaeridae|family Chimaeridae|fish family (generic term)
+chimakum|1
+(noun)|Chimakum|Salish (generic term)
+chimaphila|1
+(noun)|Chimaphila|genus Chimaphila|dilleniid dicot genus (generic term)
+chimaphila corymbosa|1
+(noun)|love-in-winter|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa (generic term)|prince's pine (generic term)
+chimaphila umbellata|1
+(noun)|love-in-winter|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa (generic term)|prince's pine (generic term)
+chimariko|1
+(noun)|Chimariko|Hokan (generic term)|Hoka (generic term)
+chimborazo|1
+(noun)|Chimborazo|mountain peak (generic term)
+chime|2
+(noun)|bell|gong|percussion instrument (generic term)|percussive instrument (generic term)
+(verb)|sound (generic term)|go (generic term)|chime in (related term)
+chime in|1
+(verb)|cut in|put in|butt in|chisel in|barge in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+chimera|2
+(noun)|Chimera|Chimaera|mythical monster (generic term)|mythical creature (generic term)
+(noun)|chimaera|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+chimeral|1
+(adj)|chimeric|chimerical|mythical monster|mythical creature (related term)
+chimeric|1
+(adj)|chimerical|chimeral|mythical monster|mythical creature (related term)
+chimerical|2
+(adj)|chimeric|chimeral|mythical monster|mythical creature (related term)
+(adj)|unrealistic (similar term)
+chimney|2
+(noun)|flue (generic term)
+(noun)|lamp chimney|flue (generic term)
+chimney bellflower|1
+(noun)|chimney plant|Campanula pyramidalis|campanula (generic term)|bellflower (generic term)
+chimney breast|1
+(noun)|wall (generic term)
+chimney corner|1
+(noun)|inglenook|corner (generic term)|nook (generic term)
+chimney plant|1
+(noun)|chimney bellflower|Campanula pyramidalis|campanula (generic term)|bellflower (generic term)
+chimney swallow|2
+(noun)|chimney swift|Chateura pelagica|swift (generic term)
+(noun)|barn swallow|Hirundo rustica|swallow (generic term)
+chimney swift|1
+(noun)|chimney swallow|Chateura pelagica|swift (generic term)
+chimneypiece|1
+(noun)|mantel|mantelpiece|mantle|mantlepiece|shelf (generic term)
+chimneypot|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+chimneystack|1
+(noun)|flue (generic term)
+chimneysweep|1
+(noun)|chimneysweeper|sweep|cleaner (generic term)
+chimneysweeper|1
+(noun)|chimneysweep|sweep|cleaner (generic term)
+chimonanthus|1
+(noun)|Chimonanthus|genus Chimonanthus|magnoliid dicot genus (generic term)
+chimonanthus praecox|1
+(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub (generic term)|bush (generic term)
+chimp|1
+(noun)|chimpanzee|Pan troglodytes|great ape (generic term)|pongid (generic term)
+chimpanzee|1
+(noun)|chimp|Pan troglodytes|great ape (generic term)|pongid (generic term)
+chimwini|1
+(noun)|ChiMwini|Bantu (generic term)|Bantoid language (generic term)
+chin|3
+(noun)|mentum|feature (generic term)|lineament (generic term)
+(noun)|Kuki|Chin|Kuki-Chin|Kamarupan (generic term)
+(verb)|chin up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+chin-up|1
+(noun)|pull-up|arm exercise (generic term)
+chin-wag|1
+(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+chin-wagging|1
+(noun)|chitchat|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+chin music|1
+(noun)|prate|prattle|idle talk|blether|yak (generic term)|yack (generic term)|yakety-yak (generic term)|chatter (generic term)|cackle (generic term)
+chin rest|1
+(noun)|rest (generic term)
+chin strap|1
+(noun)|strap (generic term)
+chin up|1
+(verb)|chin|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+china|4
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+(noun)|porcelain (generic term)
+(noun)|Taiwan|China|Nationalist China|Republic of China|island (generic term)
+(noun)|chinaware|crockery (generic term)|dishware (generic term)
+china aster|1
+(noun)|China aster|Callistephus chinensis|flower (generic term)
+china cabinet|1
+(noun)|china closet|cabinet (generic term)
+china clay|1
+(noun)|china stone|kaolin|kaoline|porcelain clay|terra alba|clay (generic term)
+china closet|1
+(noun)|china cabinet|cabinet (generic term)
+china fleece vine|1
+(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine (generic term)
+china grass|1
+(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle (generic term)|bog hemp (generic term)
+china jute|1
+(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+china pink|1
+(noun)|rainbow pink|Dianthus chinensis|pink (generic term)|garden pink (generic term)
+china rose|2
+(noun)|China rose|Bengal rose|Rosa chinensis|rose (generic term)|rosebush (generic term)
+(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus (generic term)
+china stone|1
+(noun)|china clay|kaolin|kaoline|porcelain clay|terra alba|clay (generic term)
+china tree|2
+(noun)|China tree|false dogwood|jaboncillo|chinaberry|Sapindus saponaria|soapberry (generic term)|soapberry tree (generic term)
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+chinaberry|2
+(noun)|China tree|false dogwood|jaboncillo|Sapindus saponaria|soapberry (generic term)|soapberry tree (generic term)
+(noun)|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+chinaberry tree|1
+(noun)|chinaberry|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+chinaman|2
+(noun)|chink|Chinaman|Chinese (generic term)
+(noun)|Chinaman|bowling (generic term)
+chinaware|1
+(noun)|china|crockery (generic term)|dishware (generic term)
+chincapin|1
+(noun)|chinkapin|chinquapin|edible nut (generic term)
+chinch|1
+(noun)|bedbug|bed bug|Cimex lectularius|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+chinch bug|1
+(noun)|Blissus leucopterus|lygaeid (generic term)|lygaeid bug (generic term)
+chincherinchee|1
+(noun)|wonder flower|Ornithogalum thyrsoides|star-of-Bethlehem (generic term)
+chinchilla|3
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|coating (generic term)
+(noun)|Chinchilla laniger|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+chinchilla laniger|1
+(noun)|chinchilla|Chinchilla laniger|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+chinchilla rat|1
+(noun)|abrocome|rat chinchilla|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+chinchillidae|1
+(noun)|Chinchillidae|family Chinchillidae|mammal family (generic term)
+chinchillon|1
+(noun)|viscacha|Lagostomus maximus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+chinchona|1
+(noun)|cinchona|tree (generic term)
+chinchy|1
+(adj)|cheap|chintzy|stingy (similar term)|ungenerous (similar term)
+chine|3
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|spinal column (generic term)|vertebral column (generic term)|spine (generic term)|backbone (generic term)|back (generic term)|rachis (generic term)
+(verb)|butcher (generic term)|slaughter (generic term)
+chinese|4
+(adj)|Chinese|island (related term)
+(adj)|Taiwanese|Chinese|Formosan|island (related term)
+(noun)|Chinese|Sinitic (generic term)|Sinitic language (generic term)
+(noun)|Chinese|Asian (generic term)|Asiatic (generic term)
+chinese-red|1
+(adj)|vermilion|vermillion|cinnabar|Chinese-red|chromatic (similar term)
+chinese alligator|1
+(noun)|Chinese alligator|Alligator sinensis|alligator (generic term)|gator (generic term)
+chinese angelica|1
+(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub (generic term)|bush (generic term)
+chinese angelica tree|1
+(noun)|Chinese angelica|Chinese angelica tree|Aralia stipulata|shrub (generic term)|bush (generic term)
+chinese anise|2
+(noun)|star anise|Chinese anise|Illicium verum|anise tree (generic term)
+(noun)|Chinese anise|star anise|star aniseed|spice (generic term)
+chinese black mushroom|1
+(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+chinese brown sauce|1
+(noun)|Chinese brown sauce|brown sauce|sauce (generic term)
+chinese cabbage|2
+(noun)|Chinese cabbage|celery cabbage|napa|pe-tsai|Brassica rapa pekinensis|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|Chinese cabbage|celery cabbage|Chinese celery|cabbage (generic term)|chou (generic term)
+chinese celery|1
+(noun)|Chinese cabbage|celery cabbage|Chinese celery|cabbage (generic term)|chou (generic term)
+chinese checkers|1
+(noun)|Chinese checkers|Chinese chequers|board game (generic term)
+chinese chequers|1
+(noun)|Chinese checkers|Chinese chequers|board game (generic term)
+chinese chestnut|1
+(noun)|Chinese chestnut|Castanea mollissima|chestnut (generic term)|chestnut tree (generic term)
+chinese chive|1
+(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant (generic term)
+chinese cinnamon|1
+(noun)|cassia bark|Chinese cinnamon|bark (generic term)
+chinese cork oak|1
+(noun)|Chinese cork oak|Quercus variabilis|oak (generic term)|oak tree (generic term)
+chinese date|1
+(noun)|jujube|Chinese date|Chinese jujube|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+chinese deity|1
+(noun)|Chinese deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+chinese elm|2
+(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm (generic term)|elm tree (generic term)
+(noun)|Chinese elm|Ulmus parvifolia|elm (generic term)|elm tree (generic term)
+chinese evergreen|1
+(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant (generic term)
+chinese forget-me-not|1
+(noun)|Chinese forget-me-not|Cynoglossum amabile|herb (generic term)|herbaceous plant (generic term)
+chinese fried rice|1
+(noun)|fried rice|Chinese fried rice|dish (generic term)
+chinese goose|1
+(noun)|Chinese goose|Anser cygnoides|goose (generic term)
+chinese gooseberry|2
+(noun)|Chinese gooseberry|kiwi|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine (generic term)
+(noun)|kiwi|kiwi fruit|Chinese gooseberry|edible fruit (generic term)
+chinese hibiscus|1
+(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus (generic term)
+chinese holly|1
+(noun)|Chinese holly|Ilex cornuta|shrub (generic term)|bush (generic term)
+chinese jujube|1
+(noun)|jujube|Chinese date|Chinese jujube|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+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 (generic term)
+chinese lantern|1
+(noun)|Chinese lantern|lantern (generic term)
+chinese lantern plant|1
+(noun)|Chinese lantern plant|winter cherry|bladder cherry|Physalis alkekengi|ground cherry (generic term)|husk tomato (generic term)
+chinese magnolia|1
+(noun)|saucer magnolia|Chinese magnolia|Magnolia soulangiana|magnolia (generic term)
+chinese monetary unit|1
+(noun)|Chinese monetary unit|monetary unit (generic term)
+chinese mushroom|1
+(noun)|straw mushroom|Chinese mushroom|Volvariella volvacea|agaric (generic term)
+chinese mustard|2
+(noun)|indian mustard|leaf mustard|gai choi|Brassica juncea|mustard (generic term)
+(noun)|Chinese mustard|mustard (generic term)|table mustard (generic term)
+chinese paddlefish|1
+(noun)|Chinese paddlefish|Psephurus gladis|ganoid (generic term)|ganoid fish (generic term)
+chinese parasol|1
+(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree (generic term)
+chinese parasol tree|1
+(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree (generic term)
+chinese parsley|2
+(noun)|coriander|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb (generic term)|herbaceous plant (generic term)
+(noun)|coriander|Chinese parsley|cilantro|herb (generic term)
+chinese pea tree|1
+(noun)|Chinese pea tree|Caragana sinica|pea tree (generic term)|caragana (generic term)
+chinese primrose|1
+(noun)|Chinese primrose|Primula sinensis|primrose (generic term)|primula (generic term)
+chinese privet|1
+(noun)|Chinese privet|white wax tree|Ligustrum lucidum|privet (generic term)
+chinese puzzle|1
+(noun)|Chinese puzzle|puzzle (generic term)
+chinese restaurant syndrome|1
+(noun)|Chinese restaurant syndrome|syndrome (generic term)
+chinese revolution|1
+(noun)|Chinese Revolution|revolution (generic term)
+chinese rhubarb|1
+(noun)|Chinese rhubarb|Rheum palmatum|rhubarb (generic term)|rhubarb plant (generic term)
+chinese scholar tree|1
+(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree (generic term)
+chinese scholartree|1
+(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree (generic term)
+chinese shan|1
+(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai (generic term)
+chinese silk plant|1
+(noun)|ramie|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle (generic term)|bog hemp (generic term)
+chinese wall|1
+(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart (generic term)|bulwark (generic term)|wall (generic term)
+chinese water chestnut|1
+(noun)|water chestnut|Chinese water chestnut|Eleocharis dulcis|spike rush (generic term)
+chinese white cabbage|1
+(noun)|bok choy|bok choi|pakchoi|pak choi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+chinese wistaria|1
+(noun)|Chinese wistaria|Wisteria chinensis|wisteria (generic term)|wistaria (generic term)
+chinese wood oil|1
+(noun)|tung oil|Chinese wood oil|oil (generic term)
+chinese yam|1
+(noun)|cinnamon vine|Chinese yam|Dioscorea batata|yam (generic term)|yam plant (generic term)
+chingpo|1
+(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin (generic term)|Kachinic (generic term)
+chink|6
+(noun)|Chinaman|Chinese (generic term)
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|click|clink|sound (generic term)
+(verb)|tinkle|tink|clink|sound (generic term)|go (generic term)
+(verb)|plug (generic term)|stop up (generic term)|secure (generic term)
+(verb)|check|crack (generic term)
+chinkapin|1
+(noun)|chincapin|chinquapin|edible nut (generic term)
+chinkapin oak|1
+(noun)|chinquapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak (generic term)
+chinked|1
+(adj)|stopped-up|caulked (similar term)
+chinless|1
+(adj)|opisthognathous (similar term)
+chinning bar|1
+(noun)|bar (generic term)
+chino|2
+(noun)|trouser (generic term)|pant (generic term)
+(noun)|chino cloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chino-japanese war|1
+(noun)|Chino-Japanese War|Sino-Japanese War|war (generic term)|warfare (generic term)
+chino cloth|1
+(noun)|chino|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chinoiserie|1
+(noun)|genre (generic term)
+chinook|5
+(noun)|chinook wind|snow eater|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|Chinook|Penutian (generic term)
+(noun)|chinook salmon|king salmon|salmon (generic term)
+(noun)|Chinookan|Chinook|Penutian (generic term)
+(noun)|chinook salmon|king salmon|quinnat salmon|Oncorhynchus tshawytscha|salmon (generic term)
+chinook jargon|1
+(noun)|Chinook Jargon|Oregon Jargon|pidgin (generic term)
+chinook salmon|2
+(noun)|chinook|king salmon|salmon (generic term)
+(noun)|chinook|king salmon|quinnat salmon|Oncorhynchus tshawytscha|salmon (generic term)
+chinook wind|1
+(noun)|chinook|snow eater|wind (generic term)|air current (generic term)|current of air (generic term)
+chinookan|1
+(noun)|Chinookan|Chinook|Penutian (generic term)
+chinquapin|3
+(noun)|Ozark chinkapin|Ozark chinquapin|Castanea ozarkensis|chestnut (generic term)|chestnut tree (generic term)
+(noun)|Allegheny chinkapin|eastern chinquapin|dwarf chestnut|Castanea pumila|chestnut (generic term)|chestnut tree (generic term)
+(noun)|chincapin|chinkapin|edible nut (generic term)
+chinquapin oak|1
+(noun)|chinkapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak (generic term)
+chintz|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+chintzily|1
+(adv)|stingily|cheaply
+chintzy|2
+(adj)|bum|cheap|cheesy|crummy|punk|sleazy|tinny|inferior (similar term)
+(adj)|cheap|chinchy|stingy (similar term)|ungenerous (similar term)
+chiococca|1
+(noun)|Chiococca|genus Chiococca|asterid dicot genus (generic term)
+chiococca alba|1
+(noun)|blolly|West Indian snowberry|Chiococca alba|shrub (generic term)|bush (generic term)
+chionanthus|1
+(noun)|Chionanthus|genus Chionanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+chionanthus virginicus|1
+(noun)|fringe bush|Chionanthus virginicus|fringe tree (generic term)
+chionochloa conspicua|1
+(noun)|toetoe|toitoi|Arundo conspicua|Chionochloa conspicua|reed (generic term)
+chios|1
+(noun)|Chios|Khios|Aegean island (generic term)
+chip|14
+(noun)|bit|flake|fleck|scrap|fragment (generic term)
+(noun)|float (generic term)
+(noun)|cow chip|cow dung|buffalo chip|droppings (generic term)|dung (generic term)|muck (generic term)
+(noun)|crisp|potato chip|Saratoga chip|snack food (generic term)
+(noun)|check|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|poker chip|counter (generic term)
+(noun)|microchip|micro chip|silicon chip|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+(noun)|chip shot|approach (generic term)|approach shot (generic term)
+(noun)|chipping|splintering|breakage (generic term)|break (generic term)|breaking (generic term)
+(verb)|chip off|come off|break away|break off|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|nick|cut (generic term)
+(verb)|shoot (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|knap|cut off|break off|cut (generic term)|chip at (related term)
+chip at|1
+(verb)|carve|cut (generic term)|chip (related term)
+chip away|1
+(verb)|chip away at|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+chip away at|1
+(verb)|chip away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+chip in|1
+(verb)|contribute|give|kick in|give (generic term)
+chip off|1
+(verb)|chip|come off|break away|break off|separate (generic term)|divide (generic term)|part (generic term)
+chip shot|1
+(noun)|chip|approach (generic term)|approach shot (generic term)
+chipboard|1
+(noun)|hardboard|board (generic term)|plank (generic term)
+chipewyan|2
+(noun)|Chipewyan|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+chipmunk|1
+(noun)|squirrel (generic term)
+chipolata|1
+(noun)|sausage (generic term)
+chipotle|1
+(noun)|jalapeno (generic term)|jalapeno pepper (generic term)
+chippendale|2
+(adj)|Chippendale|cabinetmaker|furniture maker (related term)
+(noun)|Chippendale|Thomas Chippendale|cabinetmaker (generic term)|furniture maker (generic term)
+chipper|1
+(adj)|debonair|debonaire|jaunty|cheerful (similar term)
+chippewa|2
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+chippewaian|1
+(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+chippewyan|1
+(noun)|Chipewyan|Chippewyan|Chippewaian|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+chipping|1
+(noun)|chip|splintering|breakage (generic term)|break (generic term)|breaking (generic term)
+chipping sparrow|1
+(noun)|Spizella passerina|New World sparrow (generic term)
+chiralgia|1
+(noun)|pain (generic term)|hurting (generic term)
+chiricahua apache|1
+(noun)|Chiricahua Apache|Apache (generic term)
+chirico|1
+(noun)|Chirico|Giorgio de Chirico|painter (generic term)
+chirk|1
+(verb)|voice (generic term)|sound (generic term)|vocalize (generic term)|vocalise (generic term)
+chirk up|1
+(verb)|cheer|cheer up|rejoice (generic term)|joy (generic term)|complain (antonym)
+chirocephalus|1
+(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus (generic term)
+chirography|1
+(noun)|calligraphy|penmanship|handwriting (generic term)|hand (generic term)|script (generic term)
+chirology|1
+(noun)|palmistry|palm reading|chiromancy|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+chiromance|1
+(verb)|divine (generic term)
+chiromancer|1
+(noun)|palmist|palmister|fortuneteller (generic term)|fortune teller (generic term)
+chiromancy|1
+(noun)|palmistry|palm reading|chirology|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+chiromantic|1
+(adj)|divination|foretelling|soothsaying|fortune telling (related term)
+chiron|2
+(noun)|Chiron|centaur (generic term)
+(noun)|Chiron|asteroid (generic term)
+chironomidae|1
+(noun)|Chironomidae|family Chironomidae|arthropod family (generic term)
+chironomus|1
+(noun)|Chironomus|genus Chironomus|arthropod genus (generic term)
+chiropodist|1
+(noun)|foot doctor|podiatrist|specialist (generic term)|medical specialist (generic term)
+chiropody|1
+(noun)|podiatry|medicine (generic term)|medical specialty (generic term)
+chiropractic|1
+(noun)|treatment (generic term)
+chiropractor|1
+(noun)|therapist (generic term)|healer (generic term)
+chiroptera|1
+(noun)|Chiroptera|order Chiroptera|animal order (generic term)
+chiropteran|1
+(noun)|bat|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+chirp|3
+(noun)|sound (generic term)
+(verb)|peep|twirp|cheep|chirrup|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|tweedle|sing (generic term)
+chirpily|1
+(adv)|buoyantly
+chirpiness|1
+(noun)|animation (generic term)|spiritedness (generic term)|invigoration (generic term)|brio (generic term)|vivification (generic term)
+chirpy|2
+(adj)|sound (related term)
+(adj)|buoyant|perky|cheerful (similar term)
+chirr|1
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+chirrup|2
+(noun)|twitter|sound (generic term)
+(verb)|peep|twirp|cheep|chirp|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+chisel|4
+(noun)|edge tool (generic term)
+(verb)|cheat|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|cheat|rip off|victimize (generic term)|victimise (generic term)
+(verb)|carve (generic term)|cut up (generic term)
+chisel-like|1
+(adj)|sharp (similar term)
+chisel in|1
+(verb)|chime in|cut in|put in|butt in|barge in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+chisel steel|1
+(noun)|steel (generic term)
+chiseled|1
+(adj)|well-defined|distinct (similar term)
+chiseler|1
+(noun)|swindler|defrauder|chiseller|gouger|scammer|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+chiseller|1
+(noun)|swindler|defrauder|chiseler|gouger|scammer|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+chisholm trail|1
+(noun)|Chisholm Trail|cattle trail (generic term)
+chishona|1
+(noun)|Chishona|Bantu (generic term)|Bantoid language (generic term)
+chisinau|1
+(noun)|Kishinev|Chisinau|capital of Moldova|capital (generic term)
+chislev|1
+(noun)|Kislev|Chislev|Jewish calendar month (generic term)
+chit|1
+(noun)|check|tab|bill (generic term)|account (generic term)|invoice (generic term)
+chitchat|2
+(noun)|small talk|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+chitin|1
+(noun)|polysaccharide (generic term)|polyose (generic term)
+chitinous|1
+(adj)|polysaccharide|polyose (related term)
+chitlings|1
+(noun)|chitterlings|chitlins|variety meat (generic term)|organs (generic term)
+chitlins|1
+(noun)|chitterlings|chitlings|variety meat (generic term)|organs (generic term)
+chiton|2
+(noun)|tunic (generic term)
+(noun)|coat-of-mail shell|sea cradle|polyplacophore|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+chittagong|1
+(noun)|Chittagong|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+chittam bark|1
+(noun)|cascara|cascara sagrada|chittem bark|bark (generic term)
+chittamwood|3
+(noun)|cascara buckthorn|bearberry|bearwood|chittimwood|Rhamnus purshianus|buckthorn (generic term)
+(noun)|false buckthorn|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn (generic term)
+(noun)|American smokewood|Cotinus americanus|Cotinus obovatus|smoke tree (generic term)|smoke bush (generic term)
+chittem bark|1
+(noun)|cascara|cascara sagrada|chittam bark|bark (generic term)
+chitter|1
+(verb)|twitter|peep (generic term)|twirp (generic term)|cheep (generic term)|chirp (generic term)|chirrup (generic term)
+chitterlings|1
+(noun)|chitlins|chitlings|variety meat (generic term)|organs (generic term)
+chittimwood|2
+(noun)|cascara buckthorn|bearberry|bearwood|chittamwood|Rhamnus purshianus|buckthorn (generic term)
+(noun)|false buckthorn|chittamwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn (generic term)
+chivalric|1
+(adj)|knightly|medieval|past (similar term)
+chivalrous|1
+(adj)|gallant|knightly|courteous (similar term)
+chivalrously|1
+(adv)|gallantly|unchivalrously (antonym)
+chivalry|2
+(noun)|gallantry|politesse|courtesy (generic term)|good manners (generic term)
+(noun)|knightliness|principle (generic term)
+chivaree|1
+(noun)|shivaree|charivari|callithump|callathump|belling|serenade (generic term)
+chive|1
+(noun)|chives|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant (generic term)
+chives|2
+(noun)|chive|cive|schnittlaugh|Allium schoenoprasum|alliaceous plant (generic term)
+(noun)|herb (generic term)
+chivvy|1
+(verb)|harass|hassle|harry|chivy|chevy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+chivy|1
+(verb)|harass|hassle|harry|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+chiwere|1
+(noun)|Chiwere|Siouan (generic term)|Siouan language (generic term)
+chlamydeous|1
+(adj)|achlamydeous (antonym)
+chlamydera|1
+(noun)|Chlamydera|genus Chlamydera|bird genus (generic term)
+chlamydera nuchalis|1
+(noun)|great bowerbird|Chlamydera nuchalis|bowerbird (generic term)|catbird (generic term)
+chlamydia|2
+(noun)|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+chlamydia psittaci|1
+(noun)|Chlamydia psittaci|C. psittaci|chlamydia (generic term)
+chlamydia trachomatis|1
+(noun)|Chlamydia trachomatis|C. trachomatis|chlamydia (generic term)
+chlamydiaceae|1
+(noun)|Chlamydiaceae|family Chlamydiaceae|bacteria family (generic term)
+chlamydial|1
+(adj)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose (related term)|eubacteria|eubacterium|true bacteria (related term)
+chlamydomonadaceae|1
+(noun)|Chlamydomonadaceae|family Chlamydomonadaceae|protoctist family (generic term)
+chlamydomonas|1
+(noun)|Chlamydomonas|genus Chlamydomonas|protoctist genus (generic term)
+chlamydosaurus|1
+(noun)|Chlamydosaurus|genus Chlamydosaurus|reptile genus (generic term)
+chlamydosaurus kingi|1
+(noun)|frilled lizard|Chlamydosaurus kingi|agamid (generic term)|agamid lizard (generic term)
+chlamydospore|1
+(noun)|spore (generic term)
+chlamyphore|1
+(noun)|pichiciago|pichiciego|fairy armadillo|Chlamyphorus truncatus|armadillo (generic term)
+chlamyphorus|1
+(noun)|Chlamyphorus|genus Chlamyphorus|mammal genus (generic term)
+chlamyphorus truncatus|1
+(noun)|pichiciago|pichiciego|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo (generic term)
+chlamys|2
+(noun)|perianth|floral envelope|perigone|perigonium|plant organ (generic term)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|cape (generic term)|mantle (generic term)
+chloasma|1
+(noun)|melasma|mask of pregnancy|symptom (generic term)
+chloe anthony wofford|1
+(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer (generic term)|author (generic term)
+chlor-trimeton|1
+(noun)|chlorpheniramine maleate|Coricidin|Chlor-Trimeton|antihistamine (generic term)
+chloral hydrate|1
+(noun)|sedative (generic term)|sedative drug (generic term)|depressant (generic term)|downer (generic term)
+chlorambucil|1
+(noun)|Leukeran|alkalating agent (generic term)
+chloramine|1
+(noun)|chloramine-T|antiseptic (generic term)
+chloramine-t|1
+(noun)|chloramine|chloramine-T|antiseptic (generic term)
+chloramphenicol|1
+(noun)|Chloromycetin|antibiotic (generic term)|antibiotic drug (generic term)
+chloranthaceae|1
+(noun)|Chloranthaceae|family Chloranthaceae|dicot family (generic term)|magnoliopsid family (generic term)
+chloranthus|1
+(noun)|Chloranthus|genus Chloranthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+chlorate|1
+(noun)|salt (generic term)
+chlordiazepoxide|1
+(noun)|Librium|Libritabs|benzodiazepine (generic term)
+chlorella|1
+(noun)|alga (generic term)|algae (generic term)
+chlorenchyma|1
+(noun)|parenchyma (generic term)
+chlorhexidine|1
+(noun)|antiseptic (generic term)
+chloric acid|1
+(noun)|acid (generic term)
+chloride|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|halide (generic term)
+chloride of lime|1
+(noun)|bleaching powder|chlorinated lime|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+chlorinate|2
+(verb)|process (generic term)|treat (generic term)
+(verb)|disinfect (generic term)
+chlorinated lime|1
+(noun)|bleaching powder|chloride of lime|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+chlorination|2
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|disinfection (generic term)
+chlorine|1
+(noun)|Cl|atomic number 17|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+chlorine dioxide|1
+(noun)|dioxide (generic term)|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+chlorine water|1
+(noun)|solution (generic term)|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+chlorinity|1
+(noun)|definite quantity (generic term)
+chloris|1
+(noun)|Chloris|genus Chloris|monocot genus (generic term)|liliopsid genus (generic term)
+chloris gayana|1
+(noun)|Rhodes grass|Chloris gayana|finger grass (generic term)
+chloris truncata|1
+(noun)|windmill grass|creeping windmill grass|star grass|Chloris truncata|finger grass (generic term)
+chlorite|1
+(noun)|mineral (generic term)
+chloroacetophenone|1
+(noun)|CN gas|tear gas (generic term)|teargas (generic term)|lacrimator (generic term)|lachrymator (generic term)
+chlorobenzene|1
+(noun)|hydrocarbon (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+chlorobenzylidenemalononitrile|1
+(noun)|CS gas|tear gas (generic term)|teargas (generic term)|lacrimator (generic term)|lachrymator (generic term)
+chlorococcales|1
+(noun)|Chlorococcales|order Chlorococcales|protoctist order (generic term)
+chlorococcum|1
+(noun)|Chlorococcum|genus Chlorococcum|protoctist genus (generic term)
+chlorofluorocarbon|1
+(noun)|CFC|fluorocarbon (generic term)|pollutant (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+chloroform|2
+(noun)|trichloromethane|haloform (generic term)|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+(verb)|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+chlorofucin|1
+(noun)|chlorophyll c|chlorophyll (generic term)|chlorophyl (generic term)
+chlorohydric acid|1
+(noun)|hydrochloric acid|acid (generic term)
+chloromycetin|1
+(noun)|chloramphenicol|Chloromycetin|antibiotic (generic term)|antibiotic drug (generic term)
+chlorophis|1
+(noun)|Chlorophis|genus Chlorophis|reptile genus (generic term)
+chlorophoneus|1
+(noun)|Chlorophoneus|genus Chlorophoneus|bird genus (generic term)
+chlorophoneus nigrifrons|1
+(noun)|black-fronted bush shrike|Chlorophoneus nigrifrons|bush shrike (generic term)
+chlorophthalmidae|1
+(noun)|Chlorophthalmidae|family Chlorophthalmidae|fish family (generic term)
+chlorophyceae|1
+(noun)|Chlorophyceae|class Chlorophyceae|class (generic term)
+chlorophyl|1
+(noun)|chlorophyll|pigment (generic term)
+chlorophyll|1
+(noun)|chlorophyl|pigment (generic term)
+chlorophyll a|1
+(noun)|chlorophyll (generic term)|chlorophyl (generic term)
+chlorophyll b|1
+(noun)|chlorophyll (generic term)|chlorophyl (generic term)
+chlorophyll c|1
+(noun)|chlorofucin|chlorophyll (generic term)|chlorophyl (generic term)
+chlorophyll d|1
+(noun)|chlorophyll (generic term)|chlorophyl (generic term)
+chlorophyllose|1
+(adj)|chlorophyllous|pigment (related term)
+chlorophyllous|1
+(adj)|chlorophyllose|pigment (related term)
+chlorophyllum molybdites|1
+(noun)|Chlorophyllum molybdites|agaric (generic term)
+chlorophyta|1
+(noun)|Chlorophyta|division Chlorophyta|division (generic term)
+chlorophyte|1
+(noun)|green algae|alga (generic term)|algae (generic term)
+chloropicrin|1
+(noun)|nitrochloroform|compound (generic term)|chemical compound (generic term)
+chloroplast|1
+(noun)|plastid (generic term)
+chloroprene|1
+(noun)|butadiene (generic term)
+chloroquine|1
+(noun)|antimalarial (generic term)|antimalarial drug (generic term)
+chlorosis|1
+(noun)|greensickness|iron deficiency anemia (generic term)|iron deficiency anaemia (generic term)
+chlorothiazide|1
+(noun)|Diuril|thiazide (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+chlorotic|1
+(adj)|greensick|iron deficiency anemia|iron deficiency anaemia (related term)
+chlorous acid|1
+(noun)|acid (generic term)
+chloroxylon|1
+(noun)|Chloroxylon|genus Chloroxylon|rosid dicot genus (generic term)
+chloroxylon swietenia|1
+(noun)|satinwood|satinwood tree|Chloroxylon swietenia|tree (generic term)
+chlorpheniramine maleate|1
+(noun)|Coricidin|Chlor-Trimeton|antihistamine (generic term)
+chlorpromazine|1
+(noun)|Thorazine|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)|phenothiazine (generic term)|thiodiphenylamine (generic term)
+chlorpyrifos|1
+(noun)|organophosphate (generic term)
+chlortetracycline|1
+(noun)|Aureomycin|antibiotic (generic term)|antibiotic drug (generic term)
+chlorthalidone|1
+(noun)|Hygroton|Thalidone|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+chlorura|1
+(noun)|Chlorura|genus Chlorura|bird genus (generic term)
+chlorura chlorura|1
+(noun)|green-tailed towhee|Chlorura chlorura|towhee (generic term)
+choanocyte|1
+(noun)|collar cell|flagellated cell (generic term)
+choc|1
+(noun)|chocolate candy (generic term)
+choc-ice|1
+(noun)|chocolate ice cream (generic term)
+chock|4
+(noun)|wedge|block (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(adv)|chock-a-block
+chock-a-block|1
+(adv)|chock
+chock-full|1
+(adj)|chockablock|chockful|choke-full|chuck-full|cram full|full (similar term)
+chock up|1
+(verb)|jam|jampack|ram|cram|wad|stuff (generic term)
+chockablock|1
+(adj)|chock-full|chockful|choke-full|chuck-full|cram full|full (similar term)
+chockful|1
+(adj)|chockablock|chock-full|choke-full|chuck-full|cram full|full (similar term)
+chocolate|3
+(noun)|cocoa|hot chocolate|drinking chocolate|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|food (generic term)|solid food (generic term)
+(noun)|coffee|deep brown|umber|burnt umber|brown (generic term)|brownness (generic term)
+chocolate-brown|1
+(adj)|brown|brownish|dark-brown|chromatic (similar term)
+chocolate-colored|1
+(adj)|chocolate-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+chocolate-coloured|1
+(adj)|chocolate-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+chocolate bar|1
+(noun)|chocolate candy (generic term)
+chocolate cake|1
+(noun)|cake (generic term)
+chocolate candy|1
+(noun)|chocolate (generic term)
+chocolate chip cookie|1
+(noun)|Toll House cookie|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+chocolate eclair|1
+(noun)|eclair (generic term)
+chocolate egg|1
+(noun)|Easter egg (generic term)
+chocolate fondue|1
+(noun)|fondue (generic term)|fondu (generic term)
+chocolate fudge|1
+(noun)|fudge (generic term)
+chocolate ice cream|1
+(noun)|ice cream (generic term)|icecream (generic term)
+chocolate kiss|1
+(noun)|kiss (generic term)|candy kiss (generic term)|chocolate candy (generic term)
+chocolate liquor|1
+(noun)|chocolate (generic term)
+chocolate milk|1
+(noun)|milk (generic term)
+chocolate mousse|1
+(noun)|mousse (generic term)
+chocolate pudding|1
+(noun)|pudding (generic term)
+chocolate root|1
+(noun)|water avens|Indian chocolate|purple avens|Geum rivale|avens (generic term)
+chocolate sauce|1
+(noun)|chocolate syrup|sauce (generic term)
+chocolate syrup|1
+(noun)|chocolate sauce|sauce (generic term)
+chocolate tree|1
+(noun)|cacao|cacao tree|Theobroma cacao|angiospermous tree (generic term)|flowering tree (generic term)
+chocolate truffle|1
+(noun)|truffle|candy (generic term)|confect (generic term)
+choctaw|2
+(noun)|Choctaw|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Choctaw|Chahta|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+choeronycteris|1
+(noun)|Choeronycteris|genus Choeronycteris|mammal genus (generic term)
+choeronycteris mexicana|1
+(noun)|hognose bat|Choeronycteris mexicana|leafnose bat (generic term)|leaf-nosed bat (generic term)
+choice|5
+(adj)|prime|prize|quality|select|superior (similar term)
+(adj)|tasty (similar term)
+(noun)|pick|selection|decision making (generic term)|deciding (generic term)
+(noun)|selection|option|pick|action (generic term)
+(noun)|option|alternative|decision making (generic term)|deciding (generic term)
+choice morsel|1
+(noun)|tidbit|titbit|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+choice of words|1
+(noun)|wording|diction|phrasing|phraseology|verbiage|formulation (generic term)|expression (generic term)
+choiceness|1
+(noun)|fineness|superiority (generic term)|high quality (generic term)
+choir|4
+(noun)|chorus (generic term)
+(noun)|consort|set (generic term)
+(noun)|area (generic term)
+(verb)|chorus|sing (generic term)
+choir loft|1
+(noun)|gallery (generic term)
+choir school|1
+(noun)|schola cantorum|preparatory school (generic term)|prep school (generic term)
+choirboy|1
+(noun)|chorister (generic term)
+choirmaster|1
+(noun)|precentor|cantor|musician (generic term)
+choke|16
+(noun)|choke coil|choking coil|coil (generic term)
+(noun)|valve (generic term)
+(verb)|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+(verb)|gag|fret|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|scrag|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|strangle|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|gag|strangle|suffocate|suffer (generic term)|hurt (generic term)
+(verb)|fail (generic term)|neglect (generic term)
+(verb)|bottle up (generic term)|suppress (generic term)
+(verb)|clog|choke off|clog up|back up|congest|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+(verb)|suffocate|stifle|asphyxiate|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|suffocate|become (generic term)|turn (generic term)
+(verb)|suffocate|stifle (generic term)|dampen (generic term)
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|throttle|enrich (generic term)
+(verb)|gag|sicken (generic term)
+choke-full|1
+(adj)|chockablock|chock-full|chockful|chuck-full|cram full|full (similar term)
+choke back|1
+(verb)|choke off|choke down|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+choke coil|1
+(noun)|choke|choking coil|coil (generic term)
+choke down|1
+(verb)|choke off|choke back|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+choke hold|1
+(noun)|chokehold|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+choke off|2
+(verb)|choke down|choke back|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|clog|clog up|back up|congest|choke|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+choke up|1
+(verb)|stuff|lug|block|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)|unstuff (antonym)
+chokecherry|2
+(noun)|fruit (generic term)
+(noun)|chokecherry tree|Prunus virginiana|cherry (generic term)|cherry tree (generic term)
+chokecherry tree|1
+(noun)|chokecherry|Prunus virginiana|cherry (generic term)|cherry tree (generic term)
+choked|1
+(adj)|clogged|obstructed (similar term)
+chokedamp|1
+(noun)|blackdamp|carbon dioxide (generic term)|CO2 (generic term)|carbonic acid gas (generic term)
+chokehold|2
+(noun)|stranglehold|throttlehold|power (generic term)|powerfulness (generic term)
+(noun)|choke hold|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+chokepoint|2
+(noun)|constriction|bottleneck|narrowing (generic term)
+(noun)|point (generic term)
+choker|4
+(noun)|garroter|garrotter|strangler|throttler|killer (generic term)|slayer (generic term)
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|collar|dog collar|neckband|necklace (generic term)
+(noun)|ruff|ruffle|neck ruff|collar (generic term)|neckband (generic term)
+chokey|1
+(noun)|choky|prison (generic term)|prison house (generic term)
+choking|2
+(noun)|disorder (generic term)|upset (generic term)
+(noun)|strangling|strangulation|throttling|suffocation (generic term)|asphyxiation (generic term)
+choking coil|1
+(noun)|choke|choke coil|coil (generic term)
+choky|2
+(adj)|tight (similar term)
+(noun)|chokey|prison (generic term)|prison house (generic term)
+cholangiography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+cholangitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cholecarciferol|1
+(noun)|vitamin D|calciferol|viosterol|ergocalciferol|D|fat-soluble vitamin (generic term)
+cholecystectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+cholecystitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cholelithiasis|1
+(noun)|lithiasis (generic term)
+cholelithotomy|1
+(noun)|lithotomy (generic term)
+choler|3
+(noun)|irritability|crossness|fretfulness|fussiness|peevishness|petulance|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|anger|ire|emotion (generic term)
+(noun)|yellow bile|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+cholera|1
+(noun)|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease (generic term)
+cholera infantum|1
+(noun)|gastroenteritis (generic term)|stomach flu (generic term)|intestinal flu (generic term)
+cholera morbus|1
+(noun)|collywobbles|gastroenteritis (generic term)|stomach flu (generic term)|intestinal flu (generic term)
+choleraic|1
+(adj)|infectious disease (related term)
+choleric|3
+(adj)|passionate (similar term)
+(adj)|irascible|hotheaded|hot-tempered|quick-tempered|short-tempered|ill-natured (similar term)
+(adj)|irascible|angry (similar term)
+cholestasis|1
+(noun)|acholia|disorder (generic term)|upset (generic term)
+cholesterin|1
+(noun)|cholesterol|sterol (generic term)|steroid alcohol (generic term)
+cholesterol|1
+(noun)|cholesterin|sterol (generic term)|steroid alcohol (generic term)
+cholesterosis cutis|1
+(noun)|xanthomatosis|xanthoma multiplex|lipid granulomatosis|lipoid granulomatosis|xanthoma (generic term)
+cholic acid|1
+(noun)|bile acid (generic term)
+choline|1
+(noun)|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+cholinergic|1
+(adj)|anticholinergic (antonym)
+cholinesterase|1
+(noun)|enzyme (generic term)
+cholla|1
+(noun)|Opuntia cholla|cactus (generic term)
+choloepus|1
+(noun)|Choloepus|genus Choloepus|mammal genus (generic term)
+choloepus didactylus|1
+(noun)|two-toed sloth|unau|unai|Choloepus didactylus|sloth (generic term)|tree sloth (generic term)
+choloepus hoffmanni|1
+(noun)|two-toed sloth|unau|unai|Choloepus hoffmanni|sloth (generic term)|tree sloth (generic term)
+chomp|2
+(noun)|bite|eating (generic term)|feeding (generic term)
+(verb)|champ|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+chomping|1
+(noun)|chew (generic term)|chewing (generic term)|mastication (generic term)|manduction (generic term)
+chomsky|1
+(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist (generic term)|linguistic scientist (generic term)
+chon|2
+(noun)|South Korean monetary unit (generic term)
+(noun)|North Korean monetary unit (generic term)
+chondrichthian|1
+(noun)|cartilaginous fish|fish (generic term)
+chondrichthyes|1
+(noun)|Chondrichthyes|class Chondrichthyes|class (generic term)
+chondrify|1
+(verb)|change state (generic term)|turn (generic term)
+chondrin|1
+(noun)|scleroprotein (generic term)|albuminoid (generic term)
+chondriosome|1
+(noun)|mitochondrion|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+chondrite|1
+(noun)|rock (generic term)|stone (generic term)
+chondritic|1
+(adj)|granular|achondritic (antonym)
+chondrodystrophy|1
+(noun)|achondroplasia|achondroplasty|osteosclerosis congenita|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+chondroma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+chondrosarcoma|1
+(noun)|sarcoma (generic term)
+chondrule|1
+(noun)|granule (generic term)
+chondrus|1
+(noun)|Chondrus|genus Chondrus|protoctist genus (generic term)
+chondrus crispus|1
+(noun)|Irish moss|carrageen|carageen|carragheen|Chondrus crispus|red algae (generic term)
+chongqing|1
+(noun)|Chongqing|Chungking|city (generic term)|metropolis (generic term)|urban center (generic term)
+choo-choo|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+choose|3
+(verb)|take|select|pick out|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|prefer|opt
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+choose up|1
+(verb)|form (generic term)|organize (generic term)|organise (generic term)
+chooser|1
+(noun)|picker|selector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+choosey|1
+(adj)|choosy|fastidious (similar term)
+choosy|1
+(adj)|choosey|fastidious (similar term)
+chop|10
+(noun)|physical phenomenon (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|jaw (generic term)
+(noun)|chop shot|return (generic term)
+(noun)|chopper|grounder (generic term)|ground ball (generic term)|groundball (generic term)|hopper (generic term)
+(verb)|chop up|cut (generic term)
+(verb)|move (generic term)
+(verb)|strike (generic term)
+(verb)|hack|cut (generic term)|chop down (related term)|chop up (related term)|chop off (related term)
+(verb)|strike (generic term)|hit (generic term)
+chop-chop|1
+(adv)|quickly|rapidly|speedily|apace|slowly (antonym)
+chop-suey greens|2
+(noun)|tong ho|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum (generic term)
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+chop down|1
+(verb)|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+chop off|1
+(verb)|cut off|lop off|detach (generic term)|come off (generic term)|come away (generic term)
+chop shop|1
+(noun)|workshop (generic term)|shop (generic term)
+chop shot|1
+(noun)|chop|return (generic term)
+chop steak|1
+(noun)|chopped steak|chopsteak|hamburger steak|beef patty|beefsteak (generic term)
+chop suey|1
+(noun)|dish (generic term)
+chop up|1
+(verb)|chop|cut (generic term)
+chopfallen|1
+(adj)|chapfallen|crestfallen|deflated|dejected (similar term)
+chophouse|1
+(noun)|steakhouse|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+chopin|3
+(noun)|Chopin|music (generic term)
+(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer (generic term)|author (generic term)
+(noun)|Chopin|Frederic Francois Chopin|composer (generic term)|pianist (generic term)|piano player (generic term)
+chopine|1
+(noun)|platform|shoe (generic term)
+chopped|1
+(adj)|shredded|sliced|cut (similar term)
+chopped steak|1
+(noun)|chop steak|chopsteak|hamburger steak|beef patty|beefsteak (generic term)
+chopper|4
+(noun)|chop|grounder (generic term)|ground ball (generic term)|groundball (generic term)|hopper (generic term)
+(noun)|pearly|tooth (generic term)
+(noun)|helicopter|whirlybird|eggbeater|heavier-than-air craft (generic term)
+(noun)|cleaver|meat cleaver|knife (generic term)
+choppiness|1
+(noun)|roughness|rough water|storminess (generic term)
+chopping block|1
+(noun)|block (generic term)
+chopping board|1
+(noun)|cutting board|board (generic term)
+choppy|2
+(adj)|jerky|sudden (similar term)
+(adj)|stormy (similar term)
+chopsteak|1
+(noun)|chopped steak|chop steak|hamburger steak|beef patty|beefsteak (generic term)
+chopstick|1
+(noun)|tableware (generic term)
+choragic|1
+(adj)|leader (related term)
+choragus|1
+(noun)|leader (generic term)
+choral|2
+(adj)|musical organization|musical organisation|musical group (related term)
+(noun)|chorale|hymn (generic term)|anthem (generic term)
+choral ode|1
+(noun)|ode (generic term)
+chorale|1
+(noun)|choral|hymn (generic term)|anthem (generic term)
+chorale prelude|1
+(noun)|prelude (generic term)
+chord|4
+(noun)|straight line (generic term)
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+(verb)|play (generic term)
+(verb)|harmonize|harmonise|change (generic term)|alter (generic term)|modify (generic term)
+chordal|1
+(adj)|note|musical note|tone (related term)
+chordamesoderm|1
+(noun)|chordomesoderm|mesoderm (generic term)|mesoblast (generic term)
+chordata|1
+(noun)|Chordata|phylum Chordata|phylum (generic term)
+chordate|2
+(adj)|phylum (related term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+chordate family|1
+(noun)|family (generic term)
+chordate genus|1
+(noun)|genus (generic term)
+chordeiles|1
+(noun)|Chordeiles|genus Chordeiles|bird genus (generic term)
+chorditis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+chordomesoderm|1
+(noun)|chordamesoderm|mesoderm (generic term)|mesoblast (generic term)
+chordophone|1
+(noun)|stringed instrument (generic term)
+chordospartium|1
+(noun)|Chordospartium|genus Chordospartium|rosid dicot genus (generic term)
+chore|1
+(noun)|job|task|duty (generic term)
+chorea|2
+(noun)|canine chorea|animal disease (generic term)
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)|degenerative disorder (generic term)
+choreic abasia|1
+(noun)|abasia (generic term)
+choreograph|2
+(verb)|make (generic term)|create (generic term)
+(verb)|mastermind (generic term)|engineer (generic term)|direct (generic term)|organize (generic term)|organise (generic term)|orchestrate (generic term)
+choreographer|1
+(noun)|creator (generic term)
+choreographic|1
+(adj)|dance (related term)
+choreography|3
+(noun)|stage dancing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)|show (generic term)
+(noun)|dance (generic term)
+(noun)|notation (generic term)|notational system (generic term)
+choric|1
+(adj)|company|troupe (related term)
+chorine|1
+(noun)|chorus girl|showgirl|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+chorioallantoic membrane|1
+(noun)|chorioallantois|membrane (generic term)|tissue layer (generic term)
+chorioallantois|1
+(noun)|chorioallantoic membrane|membrane (generic term)|tissue layer (generic term)
+choriomeningitis|1
+(noun)|meningitis (generic term)
+chorion|1
+(noun)|sac (generic term)
+chorionic|1
+(adj)|sac (related term)
+chorionic villus|1
+(noun)|villus (generic term)
+chorionic villus biopsy|1
+(noun)|chorionic villus sampling|biopsy (generic term)
+chorionic villus sampling|1
+(noun)|chorionic villus biopsy|biopsy (generic term)
+chorioretinitis|1
+(noun)|retinitis (generic term)
+choriotis|1
+(noun)|Choriotis|genus Choriotis|bird genus (generic term)
+choriotis australis|1
+(noun)|plain turkey|Choriotis australis|bustard (generic term)
+chorister|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+chorizagrotis|1
+(noun)|Chorizagrotis|genus Chorizagrotis|arthropod genus (generic term)
+chorizagrotis auxiliaris|1
+(noun)|army cutworm|Chorizagrotis auxiliaris|cutworm (generic term)
+chorizema|1
+(noun)|Chorizema|genus Chorizema|rosid dicot genus (generic term)
+chorizo|1
+(noun)|sausage (generic term)
+choroid|1
+(noun)|choroid coat|membrane (generic term)|tissue layer (generic term)
+choroid coat|1
+(noun)|choroid|membrane (generic term)|tissue layer (generic term)
+choroid plexus|1
+(noun)|plexus choroideus|plexus (generic term)|rete (generic term)
+choroid vein|1
+(noun)|vena choroidea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+choroidal artery|1
+(noun)|arteria choroidea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+choropleth map|1
+(noun)|map (generic term)
+chortle|2
+(noun)|chuckle|laugh (generic term)|laughter (generic term)
+(verb)|chuckle|laugh softly|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+chorus|7
+(noun)|sound (generic term)
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|refrain|music (generic term)
+(noun)|chorus line|line (generic term)
+(noun)|Greek chorus|company (generic term)|troupe (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|choir|sing (generic term)
+chorus frog|1
+(noun)|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+chorus girl|1
+(noun)|showgirl|chorine|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+chorus line|1
+(noun)|chorus|line (generic term)
+chosen|4
+(adj)|selected (similar term)
+(noun)|darling (generic term)|favorite (generic term)|favourite (generic term)|pet (generic term)|dearie (generic term)|deary (generic term)|ducky (generic term)
+(noun)|Chosen|Korea (generic term)|Korean Peninsula (generic term)|Dae-Han-Min-Gook (generic term)|Han-Gook (generic term)
+(noun)|elect|elite (generic term)|elite group (generic term)
+chosen people|1
+(noun)|people (generic term)
+chou|3
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+(noun)|cabbage|cruciferous vegetable (generic term)
+(noun)|cream puff|puff (generic term)
+chou dynasty|1
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+chou en-lai|1
+(noun)|Zhou En-lai|Chou En-lai|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|communist (generic term)|commie (generic term)
+chough|1
+(noun)|corvine bird (generic term)
+chouse|1
+(verb)|cheat|shaft|screw|chicane|jockey|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+chow|3
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+(noun)|chuck|eats|grub|fare (generic term)
+(noun)|chow chow|spitz (generic term)
+chow chow|1
+(noun)|chow|spitz (generic term)
+chow dynasty|1
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+chow line|1
+(noun)|queue (generic term)|waiting line (generic term)
+chow mein|1
+(noun)|dish (generic term)
+chowchow|2
+(noun)|relish (generic term)
+(noun)|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+chowder|1
+(noun)|soup (generic term)
+chrestomathy|1
+(noun)|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+chris evert|1
+(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player (generic term)
+chrism|1
+(noun)|chrisom|sacramental oil|holy oil|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+chrisom|1
+(noun)|chrism|sacramental oil|holy oil|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+chrissie evert|1
+(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player (generic term)
+christ|2
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+(noun)|messiah|savior (generic term)|saviour (generic term)|rescuer (generic term)|deliverer (generic term)
+christ's-thorn|2
+(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub (generic term)|bush (generic term)
+(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub (generic term)|bush (generic term)
+christ's resurrection|1
+(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle (generic term)
+christ plant|1
+(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge (generic term)
+christ thorn|1
+(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge (generic term)
+christ within|1
+(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+christchurch|1
+(noun)|Christchurch|city (generic term)|metropolis (generic term)|urban center (generic term)
+christella|1
+(noun)|fern (generic term)
+christen|1
+(verb)|baptize|baptise|name (generic term)|call (generic term)
+christendom|1
+(noun)|Christendom|Christianity|body (generic term)
+christening|1
+(noun)|baptism (generic term)
+christiaan eijkman|1
+(noun)|Eijkman|Christiaan Eijkman|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+christiaan huygens|1
+(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist (generic term)
+christian|3
+(adj)|Christian|religion|faith|religious belief (related term)
+(adj)|christianly (similar term)|christlike (similar term)|christly (similar term)|unchristian (antonym)
+(noun)|Christian|religious person (generic term)
+christian bible|1
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+christian church|2
+(noun)|church|Christian church|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Christian Church|Disciples of Christ|Protestant denomination (generic term)
+christian dior|1
+(noun)|Dior|Christian Dior|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+christian era|1
+(noun)|Christian era|Common era|era (generic term)|epoch (generic term)
+christian friedrich hebbel|1
+(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist (generic term)|playwright (generic term)
+christian friedrich schonbein|1
+(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist (generic term)
+christian holy day|1
+(noun)|Christian holy day|religious holiday (generic term)|holy day (generic term)
+christian huygens|1
+(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist (generic term)
+christian johann doppler|1
+(noun)|Doppler|Christian Johann Doppler|physicist (generic term)
+christian liturgy|1
+(noun)|Christian liturgy|liturgy (generic term)
+christian name|1
+(noun)|Christian name|baptismal name|first name (generic term)|given name (generic term)|forename (generic term)
+christian religion|1
+(noun)|Christianity|Christian religion|religion (generic term)|faith (generic term)|religious belief (generic term)
+christian schonbein|1
+(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist (generic term)
+christian science|2
+(noun)|Christian Science|Church of Christ Scientist|Protestant denomination (generic term)
+(noun)|Christian Science|Protestantism (generic term)
+christian scientist|1
+(noun)|Christian Scientist|Protestant (generic term)
+christian theology|1
+(noun)|Christian theology|theology (generic term)|theological system (generic term)
+christian year|1
+(noun)|church year|Christian year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+christiania|1
+(noun)|Oslo|Christiania|capital of Norway|national capital (generic term)|port (generic term)
+christianisation|1
+(noun)|Christianization|Christianisation|conversion (generic term)
+christianise|1
+(verb)|Christianize|Christianise|convert (generic term)
+christianity|2
+(noun)|Christianity|Christian religion|religion (generic term)|faith (generic term)|religious belief (generic term)
+(noun)|Christendom|Christianity|body (generic term)
+christianization|1
+(noun)|Christianization|Christianisation|conversion (generic term)
+christianize|2
+(verb)|Christianize|adapt (generic term)|accommodate (generic term)
+(verb)|Christianize|Christianise|convert (generic term)
+christianly|1
+(adj)|christian (similar term)
+christie|1
+(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer (generic term)|author (generic term)
+christine marie evert|1
+(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player (generic term)
+christless|1
+(adj)|nonchristian|unchristian (similar term)
+christlike|1
+(adj)|christly|christian (similar term)
+christly|1
+(adj)|christlike|christian (similar term)
+christmas|3
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|holy day of obligation (generic term)|quarter day (generic term)|feast day (generic term)|fete day (generic term)
+(verb)|spend (generic term)|pass (generic term)
+christmas begonia|1
+(noun)|Christmas begonia|blooming-fool begonia|Begonia cheimantha|begonia (generic term)
+christmas bells|1
+(noun)|Christmas bells|flower (generic term)
+christmas berry|2
+(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub (generic term)|bush (generic term)
+(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+christmas box|1
+(noun)|Christmas box|gratuity (generic term)|tip (generic term)|pourboire (generic term)|baksheesh (generic term)|bakshish (generic term)|bakshis (generic term)|backsheesh (generic term)
+christmas bush|1
+(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree (generic term)
+christmas cactus|1
+(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus (generic term)
+christmas cake|1
+(noun)|Christmas cake|fruitcake (generic term)
+christmas card|1
+(noun)|Christmas card|greeting card (generic term)
+christmas carol|1
+(noun)|carol|Christmas carol|religious song (generic term)
+christmas day|1
+(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|holy day of obligation (generic term)|quarter day (generic term)|feast day (generic term)|fete day (generic term)
+christmas disease|1
+(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+christmas eve|1
+(noun)|Christmas Eve|Dec 24|holiday (generic term)
+christmas factor|1
+(noun)|Christmas factor|factor IX|coagulation factor (generic term)|clotting factor (generic term)
+christmas fern|1
+(noun)|Christmas fern|canker brake|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern (generic term)
+christmas flower|1
+(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+christmas gift|1
+(noun)|Christmas present|Christmas gift|present (generic term)
+christmas green|1
+(noun)|ground pine|Christmas green|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+christmas holly|1
+(noun)|American holly|Christmas holly|poisonous plant (generic term)|holly (generic term)
+christmas present|1
+(noun)|Christmas present|Christmas gift|present (generic term)
+christmas pudding|1
+(noun)|plum pudding|Christmas pudding|pudding (generic term)
+christmas rose|1
+(noun)|Christmas rose|winter rose|black hellebore|Helleborus niger|hellebore (generic term)
+christmas star|1
+(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+christmas stocking|1
+(noun)|Christmas stocking|stocking (generic term)
+christmas tree|5
+(noun)|Christmas bush|Christmas tree|Ceratopetalum gummiferum|tree (generic term)
+(noun)|flame tree|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant (generic term)
+(noun)|European silver fir|Christmas tree|Abies alba|silver fir (generic term)
+(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+(noun)|Christmas tree|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+christmasberry|2
+(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub (generic term)|bush (generic term)
+(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+christmastide|1
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+christmastime|1
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+christological|1
+(adj)|Christological|Christian theology (related term)|theological doctrine (related term)
+christology|2
+(noun)|Christology|theological doctrine (generic term)
+(noun)|Christology|Christian theology (generic term)
+christoph willibald von gluck|1
+(noun)|Gluck|Christoph Willibald von Gluck|composer (generic term)
+christopher|1
+(noun)|Christopher|Saint Christopher|St. Christopher|patron saint (generic term)
+christopher carson|1
+(noun)|Carson|Kit Carson|Christopher Carson|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)
+christopher columbus|1
+(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator (generic term)
+christopher fry|1
+(noun)|Fry|Christopher Fry|dramatist (generic term)|playwright (generic term)
+christopher isherwood|1
+(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer (generic term)|author (generic term)
+christopher marlowe|1
+(noun)|Marlowe|Christopher Marlowe|dramatist (generic term)|playwright (generic term)|poet (generic term)
+christopher william bradshaw isherwood|1
+(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer (generic term)|author (generic term)
+chroma|1
+(noun)|saturation|intensity|vividness|color property (generic term)
+chromaesthesia|1
+(noun)|chromesthesia|synesthesia (generic term)|synaesthesia (generic term)
+chromate|1
+(noun)|salt (generic term)
+chromatic|3
+(adj)|visual property (related term)
+(adj)|diatonic (antonym)
+(adj)|amber (similar term)|brownish-yellow (similar term)|yellow-brown (similar term)|amber-green (similar term)|amethyst (similar term)|auburn (similar term)|aureate (similar term)|gilded (similar term)|gilt (similar term)|gold (similar term)|golden (similar term)|avocado (similar term)|azure (similar term)|cerulean (similar term)|sky-blue (similar term)|bright blue (similar term)|beige (similar term)|blackish-brown (similar term)|blackish-red (similar term)|blae (similar term)|blue (similar term)|bluish (similar term)|blueish (similar term)|bluish green (similar term)|blue-green (similar term)|cyan (similar term)|teal (similar term)|blue-lilac (similar term)|bluish-lilac (similar term)|blue-purple (similar term)|bluish-purple (similar term)|blue-violet (similar term)|bluish-violet (similar term)|blushful (similar term)|rosy (similar term)|bottle-green (similar term)|bright-red (similar term)|raspberry-red (similar term)|bronze (similar term)|bronzy (similar term)|bronze-red (similar term)|brown (similar term)|brownish (similar term)|chocolate-brown (similar term)|dark-brown (similar term)|brown-green (similar term)|brownish-green (similar term)|brown-purple (similar term)|brownish-purple (similar term)|buff (similar term)|buff-brown (similar term)|canary (similar term)|canary-yellow (similar term)|caramel (similar term)|caramel brown (similar term)|carnation (similar term)|chartreuse (similar term)|chestnut (similar term)|chestnut-brown (similar term)|coppery (similar term)|copper colored (similar term)|coral (similar term)|coral-red (similar term)|creamy (similar term)|creamy-yellow (similar term)|cress green (similar term)|cresson (similar term)|watercress (similar term)|crimson-magenta (similar term)|crimson-purple (similar term)|crimson-yellow (similar term)|dark-blue (similar term)|deep-pink (similar term)|deep-yellow (similar term)|dull-purple (similar term)|dun (similar term)|earthlike (similar term)|fuscous (similar term)|taupe (similar term)|golden-yellow (similar term)|golden-brown (similar term)|golden-green (similar term)|grey-blue (similar term)|gray-blue (similar term)|greyish-blue (similar term)|grayish-blue (similar term)|grey-brown (similar term)|gray-brown (similar term)|greyish-brown (similar term)|grayish-brown (similar term)|grey-green (similar term)|gray-green (similar term)|greyish-green (similar term)|grayish-green (similar term)|grey-pink (similar term)|gray-pink (similar term)|greyish-pink (similar term)|grayish-pink (similar term)|green (similar term)|greenish (similar term)|light-green (similar term)|dark-green (similar term)|greenish-brown (similar term)|hazel (similar term)|hazel-brown (similar term)|honey (similar term)|jade (similar term)|jade-green (similar term)|khaki (similar term)|lavender (similar term)|lilac (similar term)|lilac-colored (similar term)|lavender-tinged (similar term)|light-blue (similar term)|pale blue (similar term)|lilac-blue (similar term)|violet-blue (similar term)|lilac-pink (similar term)|lavender-pink (similar term)|violet-pink (similar term)|lilac-purple (similar term)|magenta (similar term)|magenta pink (similar term)|maroon (similar term)|brownish-red (similar term)|maroon-purple (similar term)|mauve (similar term)|mauve-blue (similar term)|mauve-pink (similar term)|moss green (similar term)|mosstone (similar term)|mousy (similar term)|mousey (similar term)|mouse-colored (similar term)|mouselike (similar term)|ocher (similar term)|ochre (similar term)|olive-brown (similar term)|olive-drab (similar term)|drab (similar term)|olive (similar term)|orange (similar term)|orangish (similar term)|orange-red (similar term)|orangish-red (similar term)|orange-brown (similar term)|peachy (similar term)|peachy-colored (similar term)|peachy-coloured (similar term)|peacock-blue (similar term)|pea-green (similar term)|pink (similar term)|pinkish (similar term)|pink-lavender (similar term)|pinkish-lavender (similar term)|pink-orange (similar term)|pinkish-orange (similar term)|salmon (similar term)|pink-red (similar term)|pink-tinged (similar term)|pink-purple (similar term)|pinkish-purple (similar term)|powder blue (similar term)|powdery-blue (similar term)|purple (similar term)|violet (similar term)|purplish (similar term)|purple-blue (similar term)|purplish-blue (similar term)|purple-brown (similar term)|purplish-brown (similar term)|purple-green (similar term)|purplish-green (similar term)|purple-lilac (similar term)|purplish-lilac (similar term)|purple-red (similar term)|purplish-red (similar term)|purple-tinged (similar term)|purple-tinted (similar term)|red (similar term)|reddish (similar term)|ruddy (similar term)|blood-red (similar term)|carmine (similar term)|cerise (similar term)|cherry (similar term)|cherry-red (similar term)|crimson (similar term)|ruby (similar term)|ruby-red (similar term)|scarlet (similar term)|red-brown (similar term)|reddish-brown (similar term)|mahogany-red (similar term)|red-lavender (similar term)|reddish-lavender (similar term)|reddish-pink (similar term)|red-orange (similar term)|reddish-orange (similar term)|flame-orange (similar term)|red-purple (similar term)|reddisn-purple (similar term)|red-violet (similar term)|reddish-violet (similar term)|rose (similar term)|roseate (similar term)|rosaceous (similar term)|rose-red (similar term)|rose-lilac (similar term)|rose-lavender (similar term)|rose-mauve (similar term)|rose-purple (similar term)|rosy-purple (similar term)|rose-tinted (similar term)|rose-tinged (similar term)|russet (similar term)|rust (similar term)|rusty (similar term)|rust-brown (similar term)|rust-red (similar term)|rusty-red (similar term)|rusty-brown (similar term)|sage (similar term)|sage-green (similar term)|sapphire (similar term)|scarlet-crimson (similar term)|scarlet-pink (similar term)|sea-green (similar term)|silver-blue (similar term)|silvery-blue (similar term)|silver-green (similar term)|silvery-green (similar term)|snuff (similar term)|snuff-brown (similar term)|mummy-brown (similar term)|chukker-brown (similar term)|sorrel (similar term)|brownish-orange (similar term)|stone (similar term)|straw (similar term)|sulfur-yellow (similar term)|sulphur-yellow (similar term)|tan (similar term)|tannish (similar term)|tangerine (similar term)|tawny (similar term)|tawny-brown (similar term)|ultramarine (similar term)|umber (similar term)|vermilion (similar term)|vermillion (similar term)|cinnabar (similar term)|Chinese-red (similar term)|vinaceous (similar term)|violet-tinged (similar term)|violet-tinted (similar term)|white-pink (similar term)|wine-red (similar term)|yellow (similar term)|yellowish (similar term)|xanthous (similar term)|yellow-beige (similar term)|yellowish-beige (similar term)|yellow-green (similar term)|yellow-orange (similar term)|yellowish-orange (similar term)|yellow-tinged (similar term)|chestnut (related term)|colored (related term)|coloured (related term)|colorful (related term)|achromatic (antonym)
+chromatic aberration|1
+(noun)|aberration (generic term)|distortion (generic term)|optical aberration (generic term)
+chromatic color|1
+(noun)|chromatic colour|spectral color|spectral colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|achromatic color (antonym)
+chromatic colour|1
+(noun)|chromatic color|spectral color|spectral colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|achromatic color (antonym)
+chromatic scale|1
+(noun)|scale (generic term)|musical scale (generic term)
+chromatic vision|1
+(noun)|color vision|trichromacy|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+chromaticity|1
+(noun)|hue|color property (generic term)
+chromatid|1
+(noun)|fibril (generic term)|filament (generic term)|strand (generic term)
+chromatin|1
+(noun)|chromatin granule|body substance (generic term)
+chromatin granule|1
+(noun)|chromatin|body substance (generic term)
+chromatinic|1
+(adj)|body substance (related term)|achromatinic (antonym)
+chromatism|2
+(noun)|visual hallucination (generic term)
+(noun)|pigmentation (generic term)
+chromatogram|1
+(noun)|recording (generic term)
+chromatographic|1
+(adj)|chromatographical|natural process|natural action|action|activity (related term)
+chromatographical|1
+(adj)|chromatographic|natural process|natural action|action|activity (related term)
+chromatography|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+chromatography column|1
+(noun)|column|tube (generic term)|tubing (generic term)
+chrome|3
+(noun)|chromium (generic term)|Cr (generic term)|atomic number 24 (generic term)
+(verb)|chromium-plate|plate (generic term)
+(verb)|process (generic term)|treat (generic term)
+chrome-nickel steel|1
+(noun)|Elinvar|alloy steel (generic term)
+chrome-tungsten steel|1
+(noun)|alloy steel (generic term)
+chrome alum|1
+(noun)|mordant (generic term)|salt (generic term)
+chrome green|2
+(noun)|pigment (generic term)
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+chrome red|1
+(noun)|red (generic term)|redness (generic term)
+chrome yellow|1
+(noun)|pigment (generic term)
+chromesthesia|1
+(noun)|chromaesthesia|synesthesia (generic term)|synaesthesia (generic term)
+chromic acid|1
+(noun)|acid (generic term)
+chromite|1
+(noun)|mineral (generic term)
+chromium|1
+(noun)|Cr|atomic number 24|metallic element (generic term)|metal (generic term)
+chromium-plate|1
+(verb)|chrome|plate (generic term)
+chromium steel|1
+(noun)|stainless steel|stainless|alloy steel (generic term)
+chromoblastomycosis|1
+(noun)|blastomycosis (generic term)
+chromogen|1
+(noun)|compound (generic term)|chemical compound (generic term)
+chromolithography|1
+(noun)|lithography (generic term)
+chromophore|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+chromoplast|1
+(noun)|plastid (generic term)
+chromosomal|1
+(adj)|body (related term)
+chromosomal aberration|1
+(noun)|chromosomal anomaly|chrosomal abnormality|chromosonal disorder|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+chromosomal anomaly|1
+(noun)|chromosomal aberration|chrosomal abnormality|chromosonal disorder|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+chromosomal mutation|1
+(noun)|mutation|genetic mutation|change (generic term)|alteration (generic term)|modification (generic term)
+chromosome|1
+(noun)|body (generic term)
+chromosome mapping|1
+(noun)|mapping|procedure (generic term)|process (generic term)
+chromosonal disorder|1
+(noun)|chromosomal aberration|chromosomal anomaly|chrosomal abnormality|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+chromosphere|1
+(noun)|layer (generic term)
+chronic|1
+(adj)|degenerative (similar term)|prolonged (similar term)|acute (antonym)
+chronic bronchitis|1
+(noun)|bronchitis (generic term)
+chronic eczema|1
+(noun)|lichtenoid eczema|eczema hypertrophicum|eczema (generic term)
+chronic gastritis|1
+(noun)|gastritis (generic term)
+chronic glaucoma|1
+(noun)|open-angle glaucoma|glaucoma (generic term)
+chronic glossitis|1
+(noun)|glossitis (generic term)
+chronic kidney failure|1
+(noun)|chronic renal failure|renal failure (generic term)|kidney failure (generic term)
+chronic leukemia|1
+(noun)|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+chronic lymphocytic leukemia|1
+(noun)|chronic leukemia (generic term)
+chronic myelocytic leukemia|1
+(noun)|myeloid leukemia|myelocytic leukemia (generic term)|granulocytic leukemia (generic term)|chronic leukemia (generic term)
+chronic obstructive pulmonary disease|1
+(noun)|emphysema (generic term)|pulmonary emphysema (generic term)|chronic bronchitis (generic term)
+chronic pyelonephritis|1
+(noun)|pyelonephritis (generic term)
+chronic renal failure|1
+(noun)|chronic kidney failure|renal failure (generic term)|kidney failure (generic term)
+chronic wasting disease|1
+(noun)|animal disease (generic term)
+chronically|2
+(adv)|inveterately
+(adv)|acutely (antonym)
+chronicle|2
+(noun)|history|account|story|record (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+chronicler|1
+(noun)|historian (generic term)|historiographer (generic term)
+chronograph|1
+(noun)|timer (generic term)
+chronological|1
+(adj)|written record|written account (related term)
+chronological age|1
+(noun)|age (generic term)
+chronological record|1
+(noun)|annals|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+chronological sequence|1
+(noun)|sequence|succession|successiveness|chronological succession|temporal arrangement (generic term)|temporal order (generic term)
+chronological succession|1
+(noun)|sequence|chronological sequence|succession|successiveness|temporal arrangement (generic term)|temporal order (generic term)
+chronologise|1
+(verb)|chronologize|date (generic term)
+chronologize|1
+(verb)|chronologise|date (generic term)
+chronology|3
+(noun)|temporal relation (generic term)
+(noun)|written record (generic term)|written account (generic term)
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+chronometer|1
+(noun)|clock (generic term)
+chronoperates|1
+(noun)|Chronoperates|genus Chronoperates|reptile genus (generic term)
+chronoperates paradoxus|1
+(noun)|Chronoperates paradoxus|therapsid (generic term)|protomammal (generic term)
+chronoscope|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+chrosomal abnormality|1
+(noun)|chromosomal aberration|chromosomal anomaly|chromosonal disorder|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+chrysalis|1
+(noun)|pupa (generic term)
+chrysanthemum|2
+(noun)|flower (generic term)|bloom (generic term)|blossom (generic term)
+(noun)|flower (generic term)
+chrysanthemum balsamita|1
+(noun)|costmary|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+chrysanthemum cinerariifolium|1
+(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb (generic term)|herbaceous plant (generic term)
+chrysanthemum coccineum|1
+(noun)|painted daisy|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower (generic term)
+chrysanthemum coronarium|1
+(noun)|crown daisy|Chrysanthemum coronarium|chrysanthemum (generic term)
+chrysanthemum coronarium spatiosum|1
+(noun)|chop-suey greens|tong ho|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum (generic term)
+chrysanthemum dog|1
+(noun)|Tibetan terrier|terrier (generic term)
+chrysanthemum frutescens|1
+(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub (generic term)|suffrutex (generic term)
+chrysanthemum lacustre|1
+(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite (generic term)|composite plant (generic term)
+chrysanthemum leucanthemum|1
+(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+chrysanthemum maximum|1
+(noun)|oxeye daisy|Leucanthemum maximum|Chrysanthemum maximum|composite (generic term)|composite plant (generic term)
+chrysanthemum maximum maximum|1
+(noun)|shasta daisy|Leucanthemum superbum|Chrysanthemum maximum maximum|composite (generic term)|composite plant (generic term)
+chrysanthemum morifolium|1
+(noun)|florist's chrysanthemum|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum (generic term)
+chrysanthemum parthenium|1
+(noun)|feverfew|Tanacetum parthenium|Chrysanthemum parthenium|herb (generic term)|herbaceous plant (generic term)
+chrysanthemum ptarmiciflorum|1
+(noun)|dusty miller|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite (generic term)|composite plant (generic term)
+chrysanthemum segetum|1
+(noun)|corn marigold|field marigold|Chrysanthemum segetum|chrysanthemum (generic term)
+chrysaora|1
+(noun)|Chrysaora|genus Chrysaora|coelenterate genus (generic term)
+chrysaora quinquecirrha|1
+(noun)|Chrysaora quinquecirrha|jellyfish (generic term)|medusa (generic term)|medusan (generic term)
+chrysarobin|1
+(noun)|araroba|Goa powder|powder (generic term)
+chrysemys|1
+(noun)|Chrysemys|genus Chrysemys|reptile genus (generic term)
+chrysemys picta|1
+(noun)|painted turtle|painted terrapin|painted tortoise|Chrysemys picta|turtle (generic term)
+chrysobalanus|1
+(noun)|Chrysobalanus|genus Chrysobalanus|rosid dicot genus (generic term)
+chrysobalanus icaco|1
+(noun)|coco plum|coco plum tree|cocoa plum|icaco|Chrysobalanus icaco|fruit tree (generic term)
+chrysoberyl|1
+(noun)|mineral (generic term)|opaque gem (generic term)
+chrysochloridae|1
+(noun)|Chrysochloridae|family Chrysochloridae|mammal family (generic term)
+chrysochloris|1
+(noun)|Chrysochloris|genus Chrysochloris|mammal genus (generic term)
+chrysolepis|1
+(noun)|Chrysolepis|genus Chrysolepis|hamamelid dicot genus (generic term)
+chrysolepis chrysophylla|1
+(noun)|giant chinkapin|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree (generic term)
+chrysolepis sempervirens|1
+(noun)|dwarf golden chinkapin|Chrysolepis sempervirens|shrub (generic term)|bush (generic term)
+chrysolite|1
+(noun)|olivine (generic term)|transparent gem (generic term)
+chrysolophus|1
+(noun)|Chrysolophus|genus Chrysolophus|bird genus (generic term)
+chrysolophus pictus|1
+(noun)|golden pheasant|Chrysolophus pictus|pheasant (generic term)
+chrysomelid|1
+(noun)|leaf beetle|beetle (generic term)
+chrysomelidae|1
+(noun)|Chrysomelidae|family Chrysomelidae|arthropod family (generic term)
+chrysophrys|1
+(noun)|Chrysophrys|genus Chrysophrys|fish genus (generic term)
+chrysophrys auratus|1
+(noun)|snapper|Chrysophrys auratus|sparid (generic term)|sparid fish (generic term)
+chrysophrys australis|1
+(noun)|black bream|Chrysophrys australis|sea bream (generic term)|bream (generic term)
+chrysophyceae|1
+(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class (generic term)
+chrysophyllum|1
+(noun)|Chrysophyllum|genus Chrysophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+chrysophyllum cainito|1
+(noun)|star apple|caimito|Chrysophyllum cainito|fruit tree (generic term)
+chrysophyllum oliviforme|1
+(noun)|satinleaf|satin leaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree (generic term)|flowering tree (generic term)
+chrysophyta|1
+(noun)|Chrysophyta|division Chrysophyta|division (generic term)
+chrysopid|1
+(noun)|green lacewing|stink fly|lacewing (generic term)|lacewing fly (generic term)
+chrysopidae|1
+(noun)|Chrysopidae|family Chrysopidae|arthropod family (generic term)
+chrysoprase|1
+(noun)|transparent gem (generic term)|chalcedony (generic term)|calcedony (generic term)
+chrysopsis|1
+(noun)|Chrysopsis|genus Chrysopsis|asterid dicot genus (generic term)
+chrysopsis mariana|1
+(noun)|Maryland golden aster|Chrysopsis mariana|golden aster (generic term)
+chrysopsis villosa|1
+(noun)|hairy golden aster|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower (generic term)|wild flower (generic term)
+chrysosplenium|1
+(noun)|Chrysosplenium|genus Chrysosplenium|rosid dicot genus (generic term)
+chrysosplenium americanum|1
+(noun)|water carpet|water mat|Chrysosplenium americanum|golden saxifrage (generic term)|golden spleen (generic term)
+chrysothamnus|1
+(noun)|Chrysothamnus|genus Chrysothamnus|asterid dicot genus (generic term)
+chrysothamnus nauseosus|1
+(noun)|rabbit brush|rabbit bush|Chrysothamnus nauseosus|goldenbush (generic term)
+chrysotherapy|1
+(noun)|chemotherapy (generic term)
+chrysotile|1
+(noun)|asbestos (generic term)
+chthonian|1
+(adj)|chthonic|nether|infernal (similar term)
+chthonic|1
+(adj)|chthonian|nether|infernal (similar term)
+chu kiang|1
+(noun)|Zhu Jiang|Canton River|Chu Kiang|Pearl River|river (generic term)
+chuang-tzu|1
+(noun)|Chuang-tzu|mystic (generic term)|religious mystic (generic term)
+chub|1
+(noun)|Leuciscus cephalus|cyprinid (generic term)|cyprinid fish (generic term)
+chub mackerel|1
+(noun)|tinker|Scomber japonicus|mackerel (generic term)
+chubbiness|1
+(noun)|pudginess|tubbiness|rolypoliness|plumpness (generic term)|embonpoint (generic term)|roundness (generic term)
+chubby|1
+(adj)|buxom|embonpoint|plump|zaftig|zoftig|fat (similar term)
+chuck|7
+(noun)|chow|eats|grub|fare (generic term)
+(noun)|cut of beef (generic term)
+(noun)|holding device (generic term)
+(verb)|toss|throw (generic term)
+(verb)|ditch|abandon (generic term)
+(verb)|pat|caress (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+chuck-full|1
+(adj)|chockablock|chock-full|chockful|choke-full|cram full|full (similar term)
+chuck-will's-widow|1
+(noun)|Caprimulgus carolinensis|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+chuck berry|1
+(noun)|Berry|Chuck Berry|Charles Edward Berry|rock star (generic term)
+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 (generic term)|remove (generic term)
+(verb)|expel|eject|exclude|throw out|kick out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+chuck short ribs|1
+(noun)|cut of beef (generic term)
+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|enter (antonym)
+chuck wagon|1
+(noun)|wagon (generic term)|waggon (generic term)
+chucker-out|1
+(noun)|bouncer|guard (generic term)
+chuckhole|1
+(noun)|pothole|hole (generic term)|hollow (generic term)
+chuckle|2
+(noun)|chortle|laugh (generic term)|laughter (generic term)
+(verb)|chortle|laugh softly|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+chuckwalla|1
+(noun)|Sauromalus obesus|iguanid (generic term)|iguanid lizard (generic term)
+chuddar|1
+(noun)|chador|chadar|chaddar|head covering (generic term)|veil (generic term)
+chufa|1
+(noun)|yellow nutgrass|earth almond|ground almond|rush nut|Cyperus esculentus|sedge (generic term)
+chuff|1
+(verb)|puff|huff|blow (generic term)
+chuffed|1
+(adj)|pleased (similar term)
+chug|2
+(noun)|noise (generic term)
+(verb)|sound (generic term)|go (generic term)
+chukaku-ha|1
+(noun)|Chukaku-Ha|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+chukchi|2
+(noun)|Chukchi|Siberian (generic term)
+(noun)|Chukchi|Chukchi language|natural language (generic term)|tongue (generic term)
+chukchi language|1
+(noun)|Chukchi|Chukchi language|natural language (generic term)|tongue (generic term)
+chukchi peninsula|1
+(noun)|Chukchi Peninsula|peninsula (generic term)
+chukchi sea|1
+(noun)|Chukchi Sea|sea (generic term)
+chukka|2
+(noun)|chukker|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|chukka boot|shoe (generic term)
+chukka boot|1
+(noun)|chukka|shoe (generic term)
+chukker|1
+(noun)|chukka|playing period (generic term)|period of play (generic term)|play (generic term)
+chukker-brown|1
+(adj)|snuff|snuff-brown|mummy-brown|chromatic (similar term)
+chula vista|1
+(noun)|Chula Vista|city (generic term)|metropolis (generic term)|urban center (generic term)
+chum|3
+(noun)|buddy|brother|crony|pal|sidekick|friend (generic term)
+(noun)|bait (generic term)|decoy (generic term)|lure (generic term)
+(noun)|chum salmon|Oncorhynchus keta|salmon (generic term)
+chum salmon|1
+(noun)|chum|Oncorhynchus keta|salmon (generic term)
+chum up|1
+(verb)|pal|pal up|befriend (generic term)
+chumminess|1
+(noun)|camaraderie|comradeliness|comradery|comradeship|sociability (generic term)|sociableness (generic term)
+chummy|2
+(adj)|matey|pally|palsy-walsy|friendly (similar term)
+(adj)|buddy-buddy|thick|close (similar term)
+chump|1
+(noun)|fool|gull|mark|patsy|fall guy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+chump change|1
+(noun)|small change|chickenfeed|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+chunga|1
+(noun)|seriema|Chunga burmeisteri|wading bird (generic term)|wader (generic term)
+chunga burmeisteri|1
+(noun)|chunga|seriema|Chunga burmeisteri|wading bird (generic term)|wader (generic term)
+chungking|1
+(noun)|Chongqing|Chungking|city (generic term)|metropolis (generic term)|urban center (generic term)
+chunk|4
+(noun)|ball|clod|glob|lump|clump|agglomeration (generic term)
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(verb)|lump|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|collocate|lump|group (generic term)
+chunking|1
+(noun)|unitization|unitisation|configuration (generic term)|constellation (generic term)
+chunky|2
+(adj)|lumpy|unshapely (similar term)
+(adj)|dumpy|low-set|squat|squatty|stumpy|short (similar term)
+chunnel|1
+(noun)|Channel Tunnel|railroad tunnel (generic term)
+church|5
+(noun)|Christian church|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|church building|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+(noun)|church service|service (generic term)|religious service (generic term)|divine service (generic term)
+(noun)|body (generic term)
+(verb)|perform (generic term)
+church-state|1
+(noun)|theocracy (generic term)
+church bell|1
+(noun)|bell (generic term)
+church bench|1
+(noun)|pew|bench (generic term)
+church building|1
+(noun)|church|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+church calendar|1
+(noun)|ecclesiastical calendar|Gregorian calendar (generic term)|New Style calendar (generic term)
+church doctrine|1
+(noun)|religious doctrine|gospel|creed|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+church father|1
+(noun)|Church Father|Father of the Church|Father|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+church festival|1
+(noun)|religious festival|festival (generic term)
+church hat|1
+(noun)|millinery (generic term)|woman's hat (generic term)
+church key|1
+(noun)|can opener (generic term)|tin opener (generic term)
+church member|1
+(noun)|churchgoer|religious person (generic term)
+church mode|1
+(noun)|ecclesiastical mode|Gregorian mode|medieval mode|mode (generic term)|musical mode (generic term)
+church mouse|1
+(noun)|fictional animal (generic term)
+church music|1
+(noun)|religious music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+church of christ scientist|1
+(noun)|Christian Science|Church of Christ Scientist|Protestant denomination (generic term)
+church of england|1
+(noun)|Anglican Church|Anglican Communion|Church of England|Protestant denomination (generic term)
+church of ireland|1
+(noun)|Church of Ireland|Anglican Church (generic term)|Anglican Communion (generic term)|Church of England (generic term)
+church of jesus christ of latter-day saints|1
+(noun)|Church of Jesus Christ of Latter-Day Saints|Mormon Church|Mormons|Protestant denomination (generic term)
+church of rome|1
+(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church (generic term)
+church of scientology|1
+(noun)|Scientology|Church of Scientology|religion (generic term)|faith (generic term)|organized religion (generic term)
+church of the brethren|1
+(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination (generic term)
+church officer|1
+(noun)|official (generic term)|functionary (generic term)
+church property|1
+(noun)|spiritualty|spirituality|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+church roll|1
+(noun)|roll (generic term)|roster (generic term)
+church school|1
+(noun)|parochial school|religious school (generic term)
+church service|1
+(noun)|church|service (generic term)|religious service (generic term)|divine service (generic term)
+church slavic|1
+(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+church tower|1
+(noun)|tower (generic term)
+church year|1
+(noun)|Christian year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+churchgoer|1
+(noun)|church member|religious person (generic term)
+churchgoing|1
+(adj)|religious (similar term)
+churchill|3
+(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general (generic term)|full general (generic term)
+(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+(noun)|Churchill|town (generic term)
+churchill downs|1
+(noun)|Churchill Downs|dirt track (generic term)
+churchillian|1
+(adj)|Churchillian|statesman|solon|national leader|writer|author (related term)
+churchlike|1
+(adj)|churchly|religious (similar term)
+churchly|1
+(adj)|churchlike|religious (similar term)
+churchman|1
+(noun)|cleric|divine|ecclesiastic|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+churchwarden|1
+(noun)|church officer (generic term)
+churchyard|1
+(noun)|God's acre|yard (generic term)
+churidars|1
+(noun)|trouser (generic term)|pant (generic term)
+churl|3
+(noun)|peasant|barbarian|boor|Goth|tyke|tike|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|niggard|skinflint|scrooge|hoarder (generic term)
+(noun)|grouch|grump|crank|crosspatch|unpleasant person (generic term)|disagreeable person (generic term)
+churlish|2
+(adj)|ungracious (similar term)
+(adj)|ill-natured (similar term)
+churlishly|1
+(adv)|surlily
+churn|3
+(noun)|butter churn|vessel (generic term)
+(verb)|stir (generic term)
+(verb)|boil|moil|roil|move (generic term)
+churn out|2
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+churn up|1
+(verb)|disgust|revolt|nauseate|sicken|repel (generic term)|repulse (generic term)
+churned-up|1
+(adj)|churning|agitated (similar term)
+churning|2
+(adj)|churned-up|agitated (similar term)
+(adj)|roiling|roiled|roily|turbulent|agitated (similar term)
+churr|1
+(verb)|whirr|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+churrigueresco|1
+(adj)|baroque|churrigueresque|fancy (similar term)
+churrigueresque|1
+(adj)|baroque|churrigueresco|fancy (similar term)
+chute|3
+(noun)|parachute|rescue equipment (generic term)
+(noun)|slide|slideway|sloping trough|gutter (generic term)|trough (generic term)
+(verb)|parachute|jump|dive (generic term)|plunge (generic term)|plunk (generic term)
+chute-the-chute|1
+(noun)|roller coaster|big dipper|elevated railway (generic term)|elevated railroad (generic term)|elevated (generic term)|el (generic term)|overhead railway (generic term)|ride (generic term)
+chutney|1
+(noun)|Indian relish|condiment (generic term)
+chutzpa|1
+(noun)|chutzpah|hutzpah|crust (generic term)|gall (generic term)|impertinence (generic term)|impudence (generic term)|insolence (generic term)|cheekiness (generic term)|freshness (generic term)
+chutzpah|1
+(noun)|chutzpa|hutzpah|crust (generic term)|gall (generic term)|impertinence (generic term)|impudence (generic term)|insolence (generic term)|cheekiness (generic term)|freshness (generic term)
+chutzpanik|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+chuvash|2
+(noun)|Chuvash|Turki (generic term)
+(noun)|Chuvash|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+chylaceous|1
+(adj)|chylous|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chyle|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+chylifactive|1
+(adj)|chylific|chylifactory|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chylifactory|1
+(adj)|chylific|chylifactive|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chyliferous|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chylific|1
+(adj)|chylifactive|chylifactory|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chyloderma|1
+(noun)|elephantiasis scroti|elephantiasis (generic term)
+chylomicron|1
+(noun)|atom (generic term)|molecule (generic term)|particle (generic term)|corpuscle (generic term)|mote (generic term)|speck (generic term)
+chylous|1
+(adj)|chylaceous|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+chyme|1
+(noun)|food (generic term)|nutrient (generic term)
+chymosin|1
+(noun)|rennin|enzyme (generic term)|coagulase (generic term)
+chytridiaceae|1
+(noun)|Chytridiaceae|family Chytridiaceae|fungus family (generic term)
+chytridiales|1
+(noun)|Chytridiales|order Chytridiales|fungus order (generic term)
+chytridiomycetes|1
+(noun)|Chytridiomycetes|class Chytridiomycetes|class (generic term)
+ci|2
+(adj)|hundred and one|one hundred one|101|cardinal (similar term)
+(noun)|curie|Ci|radioactivity unit (generic term)
+cia|1
+(noun)|Central Intelligence Agency|CIA|United States intelligence agency (generic term)|independent agency (generic term)
+cialis|1
+(noun)|tadalafil|Cialis|virility drug (generic term)|anti-impotence drug (generic term)
+ciao|1
+(noun)|aloha|acknowledgment (generic term)|acknowledgement (generic term)
+ciardi|1
+(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet (generic term)|literary critic (generic term)
+cibotium|1
+(noun)|Cibotium|genus Cibotium|fern genus (generic term)
+cibotium barometz|1
+(noun)|Scythian lamb|Cibotium barometz|tree fern (generic term)
+cicada|1
+(noun)|cicala|homopterous insect (generic term)|homopteran (generic term)
+cicada-like|1
+(adj)|animal (similar term)
+cicada killer|1
+(noun)|Sphecius speciosis|digger wasp (generic term)
+cicadellidae|1
+(noun)|Cicadellidae|family Cicadellidae|arthropod family (generic term)
+cicadidae|1
+(noun)|Cicadidae|family Cicadidae|arthropod family (generic term)
+cicala|1
+(noun)|cicada|homopterous insect (generic term)|homopteran (generic term)
+cicatrice|1
+(noun)|scar|cicatrix|symptom (generic term)
+cicatrise|1
+(verb)|cicatrize|scar (generic term)|mark (generic term)|pock (generic term)|pit (generic term)
+cicatrix|1
+(noun)|scar|cicatrice|symptom (generic term)
+cicatrize|1
+(verb)|cicatrise|scar (generic term)|mark (generic term)|pock (generic term)|pit (generic term)
+cicer|1
+(noun)|Cicer|genus Cicer|rosid dicot genus (generic term)
+cicer arietinum|1
+(noun)|chickpea|chickpea plant|Egyptian pea|Cicer arietinum|legume (generic term)|leguminous plant (generic term)
+cicero|2
+(noun)|linear unit (generic term)
+(noun)|Cicero|Marcus Tullius Cicero|Tully|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+cicerone|1
+(noun)|guide (generic term)
+cichlid|1
+(noun)|cichlid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cichlid fish|1
+(noun)|cichlid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cichlidae|1
+(noun)|Cichlidae|family Cichlidae|fish family (generic term)
+cichorium|1
+(noun)|Cichorium|genus Cichorium|asterid dicot genus (generic term)
+cichorium endivia|1
+(noun)|endive|witloof|Cichorium endivia|herb (generic term)|herbaceous plant (generic term)
+cichorium intybus|1
+(noun)|chicory|succory|chicory plant|Cichorium intybus|herb (generic term)|herbaceous plant (generic term)
+cicily isabel fairfield|1
+(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer (generic term)|author (generic term)
+cicindelidae|1
+(noun)|Cicindelidae|family Cicindelidae|arthropod family (generic term)
+ciconia|1
+(noun)|Ciconia|genus Ciconia|bird genus (generic term)
+ciconia ciconia|1
+(noun)|white stork|Ciconia ciconia|stork (generic term)
+ciconia nigra|1
+(noun)|black stork|Ciconia nigra|stork (generic term)
+ciconiidae|1
+(noun)|Ciconiidae|family Ciconiidae|bird family (generic term)
+ciconiiformes|1
+(noun)|Ciconiiformes|order Ciconiiformes|animal order (generic term)
+cicuta|1
+(noun)|Cicuta|genus Cicuta|rosid dicot genus (generic term)
+cicuta verosa|1
+(noun)|water hemlock|Cicuta verosa|poisonous plant (generic term)
+cid|1
+(noun)|Criminal Investigation Command|CID|law enforcement agency (generic term)
+cidade de praia|1
+(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital (generic term)
+cider|1
+(noun)|cyder|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+cider gum|1
+(noun)|Eucalypt gunnii|flooded gum (generic term)
+cider mill|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+cider vinegar|1
+(noun)|vinegar (generic term)|acetum (generic term)
+ciderpress|1
+(noun)|press (generic term)|mechanical press (generic term)
+cigar|1
+(noun)|roll of tobacco (generic term)|smoke (generic term)
+cigar-box cedar|1
+(noun)|mahogany (generic term)
+cigar-shaped|1
+(adj)|fusiform|spindle-shaped|pointed (similar term)
+cigar band|1
+(noun)|band (generic term)|banding (generic term)|stripe (generic term)
+cigar box|1
+(noun)|box (generic term)
+cigar butt|1
+(noun)|butt (generic term)|stub (generic term)
+cigar cutter|1
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+cigar lighter|1
+(noun)|cigarette lighter|pocket lighter|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+cigar smoker|1
+(noun)|smoker (generic term)|tobacco user (generic term)
+cigaret|1
+(noun)|cigarette|coffin nail|butt|fag|roll of tobacco (generic term)|smoke (generic term)
+cigarette|1
+(noun)|cigaret|coffin nail|butt|fag|roll of tobacco (generic term)|smoke (generic term)
+cigarette burn|1
+(noun)|burn (generic term)|burn mark (generic term)
+cigarette butt|1
+(noun)|butt (generic term)|stub (generic term)
+cigarette case|1
+(noun)|case (generic term)
+cigarette holder|1
+(noun)|tube (generic term)|tubing (generic term)
+cigarette lighter|1
+(noun)|cigar lighter|pocket lighter|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+cigarette paper|1
+(noun)|rolling paper|tissue (generic term)|tissue paper (generic term)
+cigarette smoker|1
+(noun)|smoker (generic term)|tobacco user (generic term)
+cigarfish|1
+(noun)|round scad|quiaquia|Decapterus punctatus|scad (generic term)
+cigarillo|1
+(noun)|cigar (generic term)
+cilantro|2
+(noun)|coriander|coriander plant|Chinese parsley|Coriandrum sativum|herb (generic term)|herbaceous plant (generic term)
+(noun)|coriander|Chinese parsley|herb (generic term)
+cilial|1
+(adj)|ciliary|ciliate|organelle|cell organelle|cell organ (related term)
+ciliary|3
+(adj)|membrane|tissue layer (related term)
+(adj)|ciliate|cilial|organelle|cell organelle|cell organ (related term)
+(adj)|ciliate|hair (related term)
+ciliary artery|1
+(noun)|arteria ciliaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ciliary body|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+ciliary veins|1
+(noun)|venae ciliares|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ciliata|1
+(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class (generic term)
+ciliate|4
+(adj)|ciliary|cilial|organelle|cell organelle|cell organ (related term)
+(adj)|ciliary|hair (related term)
+(adj)|ciliated|rough (similar term)
+(noun)|ciliated protozoan|ciliophoran|protozoan (generic term)|protozoon (generic term)
+ciliated|1
+(adj)|ciliate|rough (similar term)
+ciliated protozoan|1
+(noun)|ciliate|ciliophoran|protozoan (generic term)|protozoon (generic term)
+cilioflagellata|1
+(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order (generic term)
+ciliophora|1
+(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class (generic term)
+ciliophoran|1
+(noun)|ciliate|ciliated protozoan|protozoan (generic term)|protozoon (generic term)
+cilium|2
+(noun)|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+(noun)|eyelash|lash|hair (generic term)
+cim|1
+(noun)|Central Intelligence Machinery|CIM|international intelligence agency (generic term)
+cimabue|1
+(noun)|Cimabue|Giovanni Cimabue|old master (generic term)
+cimarron|2
+(noun)|Cimarron|Cimarron River|river (generic term)
+(noun)|bighorn|bighorn sheep|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+cimarron river|1
+(noun)|Cimarron|Cimarron River|river (generic term)
+cimetidine|1
+(noun)|Tagamet|histamine blocker (generic term)|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+cimex|1
+(noun)|Cimex|genus Cimex|arthropod genus (generic term)
+cimex lectularius|1
+(noun)|bedbug|bed bug|chinch|Cimex lectularius|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+cimicidae|1
+(noun)|Cimicidae|family Cimicidae|arthropod family (generic term)
+cimicifuga|1
+(noun)|Cimicifuga|genus Cimicifuga|magnoliid dicot genus (generic term)
+cimicifuga americana|1
+(noun)|American bugbane|summer cohosh|Cimicifuga americana|bugbane (generic term)
+cimicifuga foetida|1
+(noun)|fetid bugbane|foetid bugbane|Cimicifuga foetida|bugbane (generic term)
+cimicifuga racemosa|1
+(noun)|black cohosh|black snakeroot|rattle-top|Cimicifuga racemosa|bugbane (generic term)
+cimmerian|1
+(adj)|Cimmerian|dark (similar term)
+cinch|6
+(noun)|breeze|picnic|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|girth|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(noun)|all fours (generic term)|high-low-jack (generic term)
+(verb)|girth|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+(verb)|master (generic term)|control (generic term)
+cinchona|2
+(noun)|cinchona bark|Peruvian bark|Jesuit's bark|bark (generic term)
+(noun)|chinchona|tree (generic term)
+cinchona bark|1
+(noun)|cinchona|Peruvian bark|Jesuit's bark|bark (generic term)
+cinchona calisaya|1
+(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona (generic term)|chinchona (generic term)
+cinchona cordifolia|1
+(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona (generic term)|chinchona (generic term)
+cinchona lancifolia|1
+(noun)|Cartagena bark|Cinchona cordifolia|Cinchona lancifolia|cinchona (generic term)|chinchona (generic term)
+cinchona ledgeriana|1
+(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona (generic term)|chinchona (generic term)
+cinchona officinalis|1
+(noun)|calisaya|Cinchona officinalis|Cinchona ledgeriana|Cinchona calisaya|cinchona (generic term)|chinchona (generic term)
+cinchona pubescens|1
+(noun)|cinchona tree|Cinchona pubescens|cinchona (generic term)|chinchona (generic term)
+cinchona tree|1
+(noun)|Cinchona pubescens|cinchona (generic term)|chinchona (generic term)
+cinchonine|1
+(noun)|alkaloid (generic term)
+cincinnati|1
+(noun)|Cincinnati|city (generic term)|metropolis (generic term)|urban center (generic term)
+cincinnatus|1
+(noun)|Cincinnatus|Lucius Quinctius Cincinnatus|statesman (generic term)|solon (generic term)|national leader (generic term)
+cinclidae|1
+(noun)|Cinclidae|family Cinclidae|bird family (generic term)
+cinclus|1
+(noun)|Cinclus|genus Cinclus|bird genus (generic term)
+cinclus aquaticus|1
+(noun)|European water ouzel|Cinclus aquaticus|water ouzel (generic term)|dipper (generic term)
+cinclus mexicanus|1
+(noun)|American water ouzel|Cinclus mexicanus|water ouzel (generic term)|dipper (generic term)
+cinco de mayo|1
+(noun)|Cinco de Mayo|day (generic term)
+cincture|1
+(noun)|girdle|sash|waistband|waistcloth|band (generic term)
+cinder|1
+(noun)|clinker|fragment (generic term)
+cinder block|1
+(noun)|clinker block|breeze block|building block (generic term)
+cinder pig|1
+(noun)|pig iron (generic term)
+cinder track|1
+(noun)|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+cinderella|2
+(noun)|Cinderella|woman (generic term)|adult female (generic term)
+(noun)|Cinderella|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+cine-camera|1
+(noun)|motion-picture camera|movie camera|camera (generic term)|photographic camera (generic term)
+cine-film|1
+(noun)|motion-picture film|movie film|film (generic term)|photographic film (generic term)
+cine projector|1
+(noun)|movie projector|film projector|projector (generic term)
+cinema|2
+(noun)|film|celluloid|medium (generic term)
+(noun)|movie theater|movie theatre|movie house|picture palace|theater (generic term)|theatre (generic term)|house (generic term)
+cinema verite|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+cinematic|1
+(adj)|medium (related term)
+cinematise|1
+(verb)|cinematize|film (generic term)
+cinematize|1
+(verb)|cinematise|film (generic term)
+cinematographer|1
+(noun)|cameraman|camera operator|photographer (generic term)|lensman (generic term)
+cinematography|1
+(noun)|filming|motion-picture photography|photography (generic term)|picture taking (generic term)
+cineraria|1
+(noun)|Pericallis cruenta|Senecio cruentus|flower (generic term)
+cineraria maritima|1
+(noun)|dusty miller|Senecio cineraria|Cineraria maritima|shrub (generic term)|bush (generic term)
+cinerarium|1
+(noun)|columbarium|recess (generic term)|niche (generic term)
+cinerary|1
+(adj)|recess|niche (related term)
+cingulate gyrus|1
+(noun)|gyrus cinguli|neural structure (generic term)
+cingulum|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cinnabar|3
+(adj)|vermilion|vermillion|Chinese-red|chromatic (similar term)
+(noun)|mineral (generic term)
+(noun)|cinnabar moth|Callimorpha jacobeae|arctiid (generic term)|arctiid moth (generic term)
+cinnabar chanterelle|1
+(noun)|Cantharellus cinnabarinus|agaric (generic term)
+cinnabar moth|1
+(noun)|cinnabar|Callimorpha jacobeae|arctiid (generic term)|arctiid moth (generic term)
+cinnamene|1
+(noun)|styrene|phenylethylene|vinylbenzene|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+cinnamomum|1
+(noun)|Cinnamomum|genus Cinnamomum|magnoliid dicot genus (generic term)
+cinnamomum camphora|1
+(noun)|camphor tree|Cinnamomum camphora|laurel (generic term)
+cinnamomum cassia|1
+(noun)|cassia|cassia-bark tree|Cinnamomum cassia|laurel (generic term)
+cinnamomum loureirii|1
+(noun)|Saigon cinnamon|Cinnamomum loureirii|laurel (generic term)
+cinnamomum zeylanicum|1
+(noun)|cinnamon|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel (generic term)
+cinnamon|3
+(noun)|cinnamon bark|bark (generic term)
+(noun)|Ceylon cinnamon|Ceylon cinnamon tree|Cinnamomum zeylanicum|laurel (generic term)
+(noun)|spice (generic term)
+cinnamon-coloured|1
+(adj)|cinnnamon colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+cinnamon-red|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+cinnamon-scented|1
+(adj)|odorous (similar term)
+cinnamon bark|2
+(noun)|bark (generic term)
+(noun)|cinnamon|bark (generic term)
+cinnamon bear|1
+(noun)|American black bear (generic term)|black bear (generic term)|Ursus americanus (generic term)|Euarctos americanus (generic term)
+cinnamon bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+cinnamon bun|1
+(noun)|cinnamon roll|cinnamon snail|sweet roll (generic term)|coffee roll (generic term)
+cinnamon fern|1
+(noun)|fiddlehead|fiddlehead fern|Osmunda cinnamonea|flowering fern (generic term)|osmund (generic term)
+cinnamon roll|1
+(noun)|cinnamon bun|cinnamon snail|sweet roll (generic term)|coffee roll (generic term)
+cinnamon snail|1
+(noun)|cinnamon roll|cinnamon bun|sweet roll (generic term)|coffee roll (generic term)
+cinnamon stone|1
+(noun)|essonite|hessonite|garnet (generic term)
+cinnamon toast|1
+(noun)|toast (generic term)
+cinnamon vine|1
+(noun)|Chinese yam|Dioscorea batata|yam (generic term)|yam plant (generic term)
+cinnnamon colored|1
+(adj)|cinnamon-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+cinque|1
+(noun)|five|5|V|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+cinquefoil|2
+(noun)|five-finger|shrub (generic term)|bush (generic term)
+(noun)|carving (generic term)
+cio|1
+(noun)|Congress of Industrial Organizations|CIO|federation (generic term)
+cipher|7
+(noun)|cypher|message (generic term)
+(noun)|zero|0|nought|cypher|digit (generic term)|figure (generic term)
+(noun)|nothing|nil|nix|nada|null|aught|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+(noun)|cypher|nobody|nonentity|commoner (generic term)|common man (generic term)|common person (generic term)
+(noun)|cypher|cryptograph|secret code|code (generic term)
+(verb)|encode|code|encipher|cypher|encrypt|inscribe|write in code|write (generic term)|decode (antonym)
+(verb)|calculate|cypher|compute|work out|reckon|figure|reason (generic term)|figure out (related term)|reckon (related term)
+cipro|1
+(noun)|ciprofloxacin|Cipro|antibiotic (generic term)|antibiotic drug (generic term)
+ciprofloxacin|1
+(noun)|Cipro|antibiotic (generic term)|antibiotic drug (generic term)
+cira|1
+(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+circadian|1
+(adj)|time unit|unit of time (related term)
+circadian rhythm|1
+(noun)|biological time (generic term)
+circaea|1
+(noun)|Circaea|genus Circaea|rosid dicot genus (generic term)
+circaea alpina|1
+(noun)|Alpine enchanter's nightshade|Circaea alpina|enchanter's nightshade (generic term)
+circaea lutetiana|1
+(noun)|Circaea lutetiana|enchanter's nightshade (generic term)
+circaetus|1
+(noun)|Circaetus|genus Circaetus|bird genus (generic term)
+circassian|2
+(noun)|Circassian|White (generic term)|white person (generic term)|Caucasian (generic term)
+(noun)|Circassian|Caucasian (generic term)|Caucasian language (generic term)
+circassian walnut|1
+(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut (generic term)|walnut tree (generic term)
+circe|1
+(noun)|Circe|sorceress (generic term)
+circinate|1
+(adj)|annular|annulate|annulated|circular|ringed|ring-shaped|doughnut-shaped|rounded (similar term)
+circinus|1
+(noun)|Circinus|constellation (generic term)
+circis siliquastrum|1
+(noun)|Judas tree|love tree|Circis siliquastrum|angiospermous tree (generic term)|flowering tree (generic term)
+circle|12
+(noun)|ellipse (generic term)|oval (generic term)
+(noun)|set|band|lot|social group (generic term)
+(noun)|shape (generic term)|form (generic term)
+(noun)|lap|circuit|locomotion (generic term)|travel (generic term)
+(noun)|traffic circle|rotary|roundabout|junction (generic term)
+(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|flunitrazepan (generic term)|Rohypnol (generic term)
+(noun)|dress circle|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+(noun)|round|rotating mechanism (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|circulate|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|surround|environ|encircle|round|ring|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|encircle|shape (generic term)|form (generic term)
+circle around|1
+(verb)|revolve around|circle round|circle (generic term)
+circle of curvature|1
+(noun)|osculating circle|circle (generic term)
+circle of willis|1
+(noun)|circle of Willis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+circle round|1
+(verb)|revolve around|circle around|circle (generic term)
+circlet|2
+(noun)|circle (generic term)
+(noun)|adornment (generic term)
+circuit|7
+(noun)|electrical circuit|electric circuit|electrical device (generic term)
+(noun)|tour|journey (generic term)|journeying (generic term)
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|group (generic term)|grouping (generic term)
+(noun)|racing circuit|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+(noun)|lap|circle|locomotion (generic term)|travel (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+circuit board|1
+(noun)|circuit card|board|card|plug-in|add-in|printed circuit (generic term)
+circuit breaker|1
+(noun)|breaker|fuse (generic term)|electrical fuse (generic term)|safety fuse (generic term)
+circuit card|1
+(noun)|circuit board|board|card|plug-in|add-in|printed circuit (generic term)
+circuit court of appeals|1
+(noun)|appellate court (generic term)|appeals court (generic term)|court of appeals (generic term)
+circuitous|2
+(adj)|roundabout|indirect (similar term)
+(adj)|devious|roundabout|indirect (similar term)
+circuitry|1
+(noun)|electronic equipment (generic term)
+circular|4
+(adj)|round|apple-shaped (similar term)|ball-shaped (similar term)|global (similar term)|globose (similar term)|globular (similar term)|orbicular (similar term)|spheric (similar term)|spherical (similar term)|barrel-shaped (similar term)|bulblike (similar term)|bulbous (similar term)|bulb-shaped (similar term)|capitate (similar term)|coccoid (similar term)|cumuliform (similar term)|discoid (similar term)|discoidal (similar term)|disklike (similar term)|disclike (similar term)|disk-shaped (similar term)|disc-shaped (similar term)|goblet-shaped (similar term)|moonlike (similar term)|moon-round (similar term)|nutlike (similar term)|pancake-like (similar term)|pear-shaped (similar term)|pinwheel-shaped (similar term)|ringlike (similar term)|roundish (similar term)|wheel-like (similar term)|rounded (related term)|square (antonym)
+(adj)|annular|annulate|annulated|circinate|ringed|ring-shaped|doughnut-shaped|rounded (similar term)
+(adj)|rotary|cyclic (similar term)|cyclical (similar term)
+(noun)|handbill|bill|broadside|broadsheet|flier|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+circular-knit|1
+(adj)|seamless (similar term)
+circular file|1
+(noun)|wastepaper basket|waste-paper basket|wastebasket|waste basket|container (generic term)
+circular function|1
+(noun)|trigonometric function|function (generic term)|mathematical function (generic term)
+circular measure|1
+(noun)|system of measurement (generic term)|metric (generic term)
+circular plane|1
+(noun)|compass plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+circular saw|1
+(noun)|buzz saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+circularisation|1
+(noun)|circularization|advertising (generic term)|publicizing (generic term)
+circularise|3
+(verb)|circularize|poll (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|circularize|send around (generic term)
+(verb)|circulate|circularize|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+circularity|1
+(noun)|disk shape|roundness (generic term)
+circularization|1
+(noun)|circularisation|advertising (generic term)|publicizing (generic term)
+circularize|5
+(verb)|circularise|poll (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|canvass (generic term)|canvas (generic term)
+(verb)|circularise|send around (generic term)
+(verb)|circulate|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+circulate|8
+(verb)|go around|spread|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|pass around|pass on|distribute|move (generic term)|displace (generic term)
+(verb)|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|circle|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|mobilize|mobilise|move (generic term)|displace (generic term)
+circulating|1
+(adj)|current (similar term)
+circulating decimal|1
+(noun)|recurring decimal|repeating decimal|decimal fraction (generic term)|decimal (generic term)
+circulating library|1
+(noun)|lending library|library (generic term)|depository library (generic term)
+circulation|5
+(noun)|dissemination (generic term)|airing (generic term)|public exposure (generic term)|spreading (generic term)
+(noun)|organic phenomenon (generic term)
+(noun)|count (generic term)
+(noun)|change of location (generic term)|travel (generic term)
+(noun)|spread (generic term)|spreading (generic term)
+circulative|1
+(adj)|circulatory|change of location|travel (related term)
+circulatory|2
+(adj)|circulative|change of location|travel (related term)
+(adj)|vascular system (related term)
+circulatory failure|1
+(noun)|cardiovascular disease (generic term)
+circulatory system|1
+(noun)|cardiovascular system|vascular system (generic term)
+circumambulate|1
+(verb)|walk around|circle (generic term)
+circumboreal|1
+(adj)|boreal|northern (similar term)
+circumcise|2
+(verb)|cut (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+circumcision|3
+(noun)|Circumcision|Feast of the Circumcision|January 1|feast day (generic term)|fete day (generic term)
+(noun)|rite (generic term)|religious rite (generic term)
+(noun)|abscission (generic term)|cutting off (generic term)
+circumduction|1
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+circumference|3
+(noun)|perimeter|size (generic term)
+(noun)|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+(noun)|length (generic term)
+circumferent|1
+(adj)|encompassing|surrounding|close (similar term)
+circumferential|2
+(adj)|peripheral (similar term)
+(noun)|bypass|ring road|road (generic term)|route (generic term)
+circumflex|1
+(noun)|diacritical mark (generic term)|diacritic (generic term)
+circumflex artery|1
+(noun)|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+circumflex artery of the thigh|1
+(noun)|arteria circumflexa femoris|circumflex artery (generic term)
+circumflex femoral vein|1
+(noun)|vena circumflexus femoris|circumflex vein (generic term)|vena circumflexa (generic term)
+circumflex humeral artery|1
+(noun)|arteria circumflexa humeri|circumflex artery (generic term)
+circumflex iliac artery|1
+(noun)|arteria circumflexa ilium|circumflex artery (generic term)
+circumflex iliac vein|1
+(noun)|vena circumflexa ilium|circumflex vein (generic term)|vena circumflexa (generic term)
+circumflex scapular artery|1
+(noun)|arteria circumflexa scapulae|circumflex artery (generic term)
+circumflex vein|1
+(noun)|vena circumflexa|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+circumfuse|1
+(verb)|spread (generic term)|scatter (generic term)|spread out (generic term)
+circumlocution|2
+(noun)|periphrasis|ambage|verboseness (generic term)|verbosity (generic term)
+(noun)|indirect expression|evasion (generic term)|equivocation (generic term)
+circumlocutious|1
+(adj)|circumlocutory|periphrastic|ambagious|indirect (similar term)
+circumlocutory|1
+(adj)|circumlocutious|periphrastic|ambagious|indirect (similar term)
+circumnavigate|1
+(verb)|compass|circle (generic term)
+circumnavigation|1
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+circumpolar|2
+(adj)|visible (similar term)|seeable (similar term)
+(adj)|polar (similar term)
+circumscribe|2
+(verb)|limit|confine|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|trace (generic term)|draw (generic term)|line (generic term)|describe (generic term)|delineate (generic term)
+circumscribed|2
+(adj)|limited|restricted (similar term)
+(adj)|delimited|defined (similar term)
+circumscription|1
+(noun)|restriction (generic term)
+circumspect|1
+(adj)|discreet|prudent (similar term)
+circumspection|2
+(noun)|discretion|discreetness|prudence|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|caution|discretion (generic term)|discernment (generic term)
+circumspectly|1
+(adv)|cagily
+circumstance|4
+(noun)|condition (generic term)|status (generic term)
+(noun)|context|environment (generic term)
+(noun)|condition|consideration|information (generic term)
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+circumstances|3
+(noun)|fortune|destiny|fate|luck|lot|portion|condition (generic term)
+(noun)|wealth (generic term)|wealthiness (generic term)
+(noun)|possession (generic term)
+circumstantial|1
+(adj)|specific (similar term)
+circumstantial evidence|1
+(noun)|indirect evidence|evidence (generic term)|direct evidence (antonym)
+circumstantially|2
+(adv)|minutely
+(adv)|by chance|accidentally|unexpectedly|deliberately (antonym)
+circumstantiate|1
+(verb)|validate (generic term)|corroborate (generic term)
+circumvallate|1
+(verb)|wall (generic term)|palisade (generic term)|fence (generic term)|fence in (generic term)|surround (generic term)
+circumvent|3
+(verb)|besiege|beleaguer|surround|hem in|attack (generic term)|assail (generic term)
+(verb)|outwit|overreach|outsmart|outfox|beat|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|hedge|fudge|evade|put off|parry|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+circumvention|1
+(noun)|evasion (generic term)|escape (generic term)|dodging (generic term)
+circumvolute|1
+(verb)|wind (generic term)|twist (generic term)|curve (generic term)
+circumvolution|1
+(noun)|rotation (generic term)|rotary motion (generic term)
+circumvolve|1
+(verb)|rotate|turn (generic term)
+circus|6
+(noun)|company (generic term)|troupe (generic term)
+(noun)|show (generic term)
+(noun)|carnival|disturbance (generic term)
+(noun)|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+(noun)|arena (generic term)|scene of action (generic term)
+(noun)|Circus|genus Circus|bird genus (generic term)
+circus acrobat|1
+(noun)|acrobat (generic term)
+circus aeruginosus|1
+(noun)|marsh harrier|Circus Aeruginosus|harrier (generic term)
+circus cyaneus|1
+(noun)|marsh hawk|northern harrier|hen harrier|Circus cyaneus|harrier (generic term)
+circus pygargus|1
+(noun)|Montagu's harrier|Circus pygargus|harrier (generic term)
+circus tent|1
+(noun)|big top|round top|top|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+cirio|1
+(noun)|boojum tree|Fouquieria columnaris|Idria columnaris|candlewood (generic term)
+cirque|1
+(noun)|corrie|cwm|basin (generic term)
+cirrhosis|1
+(noun)|cirrhosis of the liver|liver disease (generic term)
+cirrhosis of the liver|1
+(noun)|cirrhosis|liver disease (generic term)
+cirrhus|1
+(noun)|cirrus|tendril (generic term)
+cirripedia|1
+(noun)|Cirripedia|subclass Cirripedia|class (generic term)
+cirrocumulus|1
+(noun)|cirrocumulus cloud|cloud (generic term)
+cirrocumulus cloud|1
+(noun)|cirrocumulus|cloud (generic term)
+cirrostratus|1
+(noun)|cirrostratus cloud|cloud (generic term)
+cirrostratus cloud|1
+(noun)|cirrostratus|cloud (generic term)
+cirrus|3
+(noun)|cirrhus|tendril (generic term)
+(noun)|cirrus cloud|cloud (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+cirrus cloud|1
+(noun)|cirrus|cloud (generic term)
+cirsium|1
+(noun)|Cirsium|genus Cirsium|asterid dicot genus (generic term)
+cirsium arvense|1
+(noun)|Canada thistle|creeping thistle|Cirsium arvense|plume thistle (generic term)|plumed thistle (generic term)
+cirsium discolor|1
+(noun)|field thistle|Cirsium discolor|thistle (generic term)
+cirsium eriophorum|1
+(noun)|European woolly thistle|Cirsium eriophorum|woolly thistle (generic term)|Cirsium flodmanii (generic term)
+cirsium flodmanii|1
+(noun)|woolly thistle|Cirsium flodmanii|plume thistle (generic term)|plumed thistle (generic term)
+cirsium helenioides|1
+(noun)|melancholy thistle|Cirsium heterophylum|Cirsium helenioides|thistle (generic term)
+cirsium heterophylum|1
+(noun)|melancholy thistle|Cirsium heterophylum|Cirsium helenioides|thistle (generic term)
+cirsium lanceolatum|1
+(noun)|bull thistle|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle (generic term)|plumed thistle (generic term)
+cirsium rivulare|1
+(noun)|brook thistle|Cirsium rivulare|plume thistle (generic term)|plumed thistle (generic term)
+cirsium vulgare|1
+(noun)|bull thistle|boar thistle|spear thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle (generic term)|plumed thistle (generic term)
+cis|1
+(noun)|Commonwealth of Independent States|CIS|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+cisalpine|1
+(adj)|ultramontane|cismontane (similar term)
+cisc|2
+(noun)|Criminal Intelligence Services of Canada|CISC|international intelligence agency (generic term)
+(noun)|complex instruction set computing|complex instruction set computer|CISC|computer architecture (generic term)|architecture (generic term)|RISC (antonym)|reduced instruction set computer (antonym)|reduced instruction set computing (antonym)
+cisco|2
+(noun)|lake herring|whitefish (generic term)
+(noun)|lake herring|Coregonus artedi|whitefish (generic term)
+cislunar|1
+(adj)|sublunar|sublunary|satellite (related term)
+cismontane|1
+(adj)|cisalpine (similar term)|ultramontane (similar term)|tramontane (antonym)
+cissy|1
+(adj)|effeminate|emasculate|epicene|sissified|sissyish|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+cistaceae|1
+(noun)|Cistaceae|family Cistaceae|rockrose family|dilleniid dicot family (generic term)
+cistercian|1
+(noun)|Trappist|Cistercian|monk (generic term)|monastic (generic term)
+cistern|3
+(noun)|cisterna|sac (generic term)
+(noun)|water tank|tank (generic term)|storage tank (generic term)
+(noun)|reservoir (generic term)|pool (generic term)
+cisterna|1
+(noun)|cistern|sac (generic term)
+cistothorus|1
+(noun)|Cistothorus|genus Cistothorus|bird genus (generic term)
+cistothorus palustris|1
+(noun)|long-billed marsh wren|Cistothorus palustris|marsh wren (generic term)
+cistothorus platensis|1
+(noun)|sedge wren|short-billed marsh wren|Cistothorus platensis|marsh wren (generic term)
+cistron|1
+(noun)|gene|factor|sequence (generic term)
+cistus|1
+(noun)|Cistus|genus Cistus|dilleniid dicot genus (generic term)
+cistus albidus|1
+(noun)|white-leaved rockrose|Cistus albidus|rockrose (generic term)|rock rose (generic term)
+cistus ladanifer|1
+(noun)|common gum cistus|Cistus ladanifer|Cistus ladanum|rockrose (generic term)|rock rose (generic term)
+cistus ladanum|1
+(noun)|common gum cistus|Cistus ladanifer|Cistus ladanum|rockrose (generic term)|rock rose (generic term)
+citadel|1
+(noun)|bastion|stronghold (generic term)|fastness (generic term)
+citation|6
+(noun)|commendation|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|speech act (generic term)
+(noun)|cite|acknowledgment|credit|reference|mention|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|quotation|quote|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|summons (generic term)|process (generic term)
+(noun)|Citation|thoroughbred (generic term)
+citation form|1
+(noun)|main entry word|entry word|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+cite|8
+(noun)|citation|acknowledgment|credit|reference|mention|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(verb)|mention|advert|bring up|name|refer|think of (generic term)|have in mind (generic term)|mean (generic term)
+(verb)|mention|notice (generic term)|acknowledge (generic term)
+(verb)|reference|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|quote|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|quote|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|adduce|abduce|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|summon|summons|call (generic term)|send for (generic term)
+citellus|1
+(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus (generic term)
+citellus citellus|1
+(noun)|suslik|souslik|Citellus citellus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citellus lateralis|1
+(noun)|mantled ground squirrel|Citellus lateralis|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citellus leucurus|1
+(noun)|antelope squirrel|whitetail antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citellus parryi|1
+(noun)|Arctic ground squirrel|parka squirrel|Citellus parryi|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citellus richardsoni|1
+(noun)|flickertail|Richardson ground squirrel|Citellus richardsoni|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citellus variegatus|1
+(noun)|rock squirrel|Citellus variegatus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+citharichthys|1
+(noun)|Citharichthys|genus Citharichthys|fish genus (generic term)
+citharichthys cornutus|1
+(noun)|horned whiff|Citharichthys cornutus|whiff (generic term)
+cither|2
+(noun)|zither|zithern|stringed instrument (generic term)
+(noun)|cittern|cithern|citole|gittern|guitar (generic term)
+cithern|1
+(noun)|cittern|cither|citole|gittern|guitar (generic term)
+citified|1
+(adj)|cityfied|city-bred|city-born|urban (similar term)
+citify|1
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+citizen|1
+(noun)|national (generic term)|subject (generic term)|noncitizen (antonym)
+citizen genet|1
+(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat (generic term)|diplomatist (generic term)
+citizenry|1
+(noun)|people|group (generic term)|grouping (generic term)
+citizens committee|1
+(noun)|committee|nongovernmental organization (generic term)|NGO (generic term)
+citizenship|2
+(noun)|legal status (generic term)
+(noun)|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)
+citizenship day|1
+(noun)|Citizenship Day|September 17|day (generic term)
+citlaltepetl|1
+(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano (generic term)
+citole|1
+(noun)|cittern|cithern|cither|gittern|guitar (generic term)
+citrange|2
+(noun)|citrange tree|Citroncirus webberi|citrus (generic term)|citrus tree (generic term)
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+citrange tree|1
+(noun)|citrange|Citroncirus webberi|citrus (generic term)|citrus tree (generic term)
+citrate|2
+(noun)|salt (generic term)|ester (generic term)
+(verb)|change state (generic term)|turn (generic term)
+citric|1
+(adj)|acid (related term)
+citric acid|1
+(noun)|acid (generic term)
+citric acid cycle|1
+(noun)|Krebs cycle|Krebs citric acid cycle|tricarboxylic acid cycle|organic process (generic term)|biological process (generic term)
+citrin|1
+(noun)|vitamin P|bioflavinoid|water-soluble vitamin (generic term)
+citrine|1
+(noun)|quartz (generic term)|transparent gem (generic term)
+citron|2
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+(noun)|citron tree|Citrus medica|citrus (generic term)|citrus tree (generic term)
+citron tree|1
+(noun)|citron|Citrus medica|citrus (generic term)|citrus tree (generic term)
+citroncirus|1
+(noun)|Citroncirus|genus Citroncirus|rosid dicot genus (generic term)
+citroncirus webberi|1
+(noun)|citrange|citrange tree|Citroncirus webberi|citrus (generic term)|citrus tree (generic term)
+citronwood|2
+(noun)|wood (generic term)
+(noun)|sandarac|wood (generic term)
+citrophilous mealybug|1
+(noun)|citrophilus mealybug|Pseudococcus fragilis|mealybug (generic term)|mealy bug (generic term)
+citrophilus mealybug|1
+(noun)|citrophilous mealybug|Pseudococcus fragilis|mealybug (generic term)|mealy bug (generic term)
+citrous|2
+(adj)|fruit tree (related term)
+(adj)|edible fruit (related term)
+citrous fruit|1
+(noun)|citrus|citrus fruit|edible fruit (generic term)
+citrulline|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+citrullus|1
+(noun)|Citrullus|genus Citrullus|dicot genus (generic term)|magnoliopsid genus (generic term)
+citrullus vulgaris|1
+(noun)|watermelon|watermelon vine|Citrullus vulgaris|melon (generic term)|melon vine (generic term)
+citrus|2
+(noun)|citrus fruit|citrous fruit|edible fruit (generic term)
+(noun)|citrus tree|fruit tree (generic term)
+citrus aurantifolia|1
+(noun)|lime|lime tree|Citrus aurantifolia|citrus (generic term)|citrus tree (generic term)
+citrus aurantium|1
+(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+citrus bergamia|1
+(noun)|bergamot|bergamot orange|Citrus bergamia|orange (generic term)|orange tree (generic term)
+citrus decumana|1
+(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+citrus fruit|1
+(noun)|citrus|citrous fruit|edible fruit (generic term)
+citrus grandis|1
+(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+citrus limetta|1
+(noun)|sweet lemon|sweet lime|Citrus limetta|lemon (generic term)|lemon tree (generic term)|Citrus limon (generic term)|genus Citrus (generic term)
+citrus limon|1
+(noun)|lemon|lemon tree|Citrus limon|citrus (generic term)|citrus tree (generic term)
+citrus limonia|1
+(noun)|rangpur|rangpur lime|lemanderin|Citrus limonia|citrus (generic term)|citrus tree (generic term)
+citrus maxima|1
+(noun)|pomelo|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+citrus mealybug|1
+(noun)|Planococcus citri|mealybug (generic term)|mealy bug (generic term)
+citrus medica|1
+(noun)|citron|citron tree|Citrus medica|citrus (generic term)|citrus tree (generic term)
+citrus nobilis|1
+(noun)|temple orange|temple orange tree|tangor|king orange|Citrus nobilis|orange (generic term)|orange tree (generic term)
+citrus paradisi|1
+(noun)|grapefruit|Citrus paradisi|citrus (generic term)|citrus tree (generic term)
+citrus reticulata|1
+(noun)|mandarin|mandarin orange|mandarin orange tree|Citrus reticulata|citrus (generic term)|citrus tree (generic term)
+citrus sinensis|1
+(noun)|sweet orange|sweet orange tree|Citrus sinensis|orange (generic term)|orange tree (generic term)
+citrus tangelo|1
+(noun)|tangelo|tangelo tree|ugli fruit|Citrus tangelo|citrus (generic term)|citrus tree (generic term)
+citrus tree|1
+(noun)|citrus|fruit tree (generic term)
+citrus whitefly|1
+(noun)|Dialeurodes citri|whitefly (generic term)
+citta del vaticano|1
+(noun)|Vatican City|Citta del Vaticano|city (generic term)|metropolis (generic term)|urban center (generic term)
+cittern|1
+(noun)|cithern|cither|citole|gittern|guitar (generic term)
+city|3
+(noun)|metropolis|urban center|municipality (generic term)
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|metropolis|municipality (generic term)
+city-born|1
+(adj)|citified|cityfied|city-bred|urban (similar term)
+city-bred|1
+(adj)|citified|cityfied|city-born|urban (similar term)
+city-like|1
+(adj)|urban (similar term)
+city-state|1
+(noun)|city state|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+city block|1
+(noun)|block|area (generic term)|country (generic term)
+city boy|1
+(noun)|city slicker|slicker (generic term)
+city center|1
+(noun)|city centre|central city|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+city centre|1
+(noun)|city center|central city|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+city council|1
+(noun)|council (generic term)
+city desk|1
+(noun)|city room|editorial department (generic term)
+city district|1
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+city editor|1
+(noun)|newspaper editor (generic term)
+city father|1
+(noun)|official (generic term)|functionary (generic term)
+city hall|1
+(noun)|hall (generic term)
+city limit|1
+(noun)|city limits|limit (generic term)|demarcation (generic term)|demarcation line (generic term)
+city limits|1
+(noun)|city limit|limit (generic term)|demarcation (generic term)|demarcation line (generic term)
+city line|1
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+city man|1
+(noun)|financier (generic term)|moneyman (generic term)
+city manager|1
+(noun)|mayor|civil authority (generic term)|politician (generic term)
+city of bridges|1
+(noun)|Bruges|City of Bridges|city (generic term)|metropolis (generic term)|urban center (generic term)
+city of brotherly love|1
+(noun)|Philadelphia|City of Brotherly Love|city (generic term)|metropolis (generic term)|urban center (generic term)
+city of god|1
+(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven (generic term)
+city of light|1
+(noun)|Paris|City of Light|French capital|capital of France|national capital (generic term)
+city of london|1
+(noun)|City of London|the City|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+city of the angels|1
+(noun)|Los Angeles|City of the Angels|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+city of westminster|1
+(noun)|Westminster|City of Westminster|borough (generic term)
+city planning|1
+(noun)|town planning|urban planning|planning (generic term)
+city room|1
+(noun)|city desk|editorial department (generic term)
+city slicker|1
+(noun)|city boy|slicker (generic term)
+city state|1
+(noun)|city-state|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+city university|1
+(noun)|university (generic term)
+cityfied|1
+(adj)|citified|city-bred|city-born|urban (similar term)
+cityscape|2
+(noun)|point of view (generic term)|viewpoint (generic term)|stand (generic term)|standpoint (generic term)
+(noun)|painting (generic term)|picture (generic term)
+citywide|1
+(adj)|comprehensive (similar term)
+ciudad de mexico|1
+(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital (generic term)
+ciudad juarez|1
+(noun)|Ciudad Juarez|Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)
+ciudad trujillo|1
+(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital (generic term)
+ciudad victoria|1
+(noun)|Ciudad Victoria|city (generic term)|metropolis (generic term)|urban center (generic term)
+cive|1
+(noun)|chives|chive|schnittlaugh|Allium schoenoprasum|alliaceous plant (generic term)
+civet|1
+(noun)|civet cat|viverrine (generic term)|viverrine mammal (generic term)
+civet bean|1
+(noun)|sieva bean|butter bean|butterbean|shell bean (generic term)
+civet cat|2
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+(noun)|civet|viverrine (generic term)|viverrine mammal (generic term)
+civic|2
+(adj)|administrative district|administrative division|territorial division (related term)
+(adj)|civil|national|subject (related term)
+civic center|2
+(noun)|community center|center (generic term)|centre (generic term)
+(noun)|municipal center|down town|hub (generic term)
+civic duty|1
+(noun)|civic responsibility|duty (generic term)|responsibility (generic term)|obligation (generic term)
+civic leader|1
+(noun)|civil leader|leader (generic term)
+civic pride|1
+(noun)|civic spirit|pride (generic term)
+civic responsibility|1
+(noun)|civic duty|duty (generic term)|responsibility (generic term)|obligation (generic term)
+civic spirit|1
+(noun)|civic pride|pride (generic term)
+civics|1
+(noun)|social science (generic term)
+civies|1
+(noun)|civvies|civilian clothing (generic term)|civilian dress (generic term)|civilian garb (generic term)|plain clothes (generic term)
+civil|6
+(adj)|civilian (similar term)
+(adj)|polite|uncivil (antonym)
+(adj)|political unit|political entity (related term)
+(adj)|civic|national|subject (related term)
+(adj)|sidereal (antonym)
+(adj)|civilized (similar term)|civilised (similar term)
+civil-libertarian|1
+(adj)|liberal (similar term)
+civil action|1
+(noun)|legal action (generic term)|action (generic term)|action at law (generic term)
+civil authority|1
+(noun)|authority (generic term)
+civil censorship|1
+(noun)|military censorship (generic term)
+civil contempt|1
+(noun)|contempt of court (generic term)
+civil day|1
+(noun)|calendar day|time period (generic term)|period of time (generic term)|period (generic term)
+civil death|2
+(noun)|legal status (generic term)
+(noun)|attainder|cancellation (generic term)
+civil defense|1
+(noun)|protection (generic term)
+civil disobedience|1
+(noun)|direct action (generic term)
+civil engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+civil engineering|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+civil law|2
+(noun)|law (generic term)|jurisprudence (generic term)|international law (antonym)
+(noun)|Roman law|Justinian code|jus civile|legal code (generic term)
+civil leader|1
+(noun)|civic leader|leader (generic term)
+civil liberty|2
+(noun)|political liberty|freedom (generic term)
+(noun)|civil right (generic term)
+civil list|1
+(noun)|Civil List|budget (generic term)
+civil marriage|1
+(noun)|marriage (generic term)|wedding (generic term)|marriage ceremony (generic term)
+civil order|1
+(noun)|polity|order (generic term)
+civil right|1
+(noun)|human right (generic term)
+civil rights activist|1
+(noun)|civil rights leader|civil rights worker|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+civil rights leader|1
+(noun)|civil rights worker|civil rights activist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+civil rights movement|1
+(noun)|Civil Rights movement|movement (generic term)|social movement (generic term)|front (generic term)
+civil rights worker|1
+(noun)|civil rights leader|civil rights activist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+civil servant|1
+(noun)|official (generic term)|functionary (generic term)
+civil service|1
+(noun)|government officials (generic term)|officialdom (generic term)
+civil suit|1
+(noun)|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+civil time|1
+(noun)|standard time|local time|time (generic term)
+civil union|1
+(noun)|marital status (generic term)
+civil war|1
+(noun)|war (generic term)|warfare (generic term)
+civil wrong|1
+(noun)|tort|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+civil year|1
+(noun)|calendar year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+civilian|2
+(adj)|civil (similar term)|noncombatant (similar term)|military (antonym)
+(noun)|citizen (generic term)|serviceman (antonym)
+civilian clothing|1
+(noun)|civilian dress|civilian garb|plain clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+civilian dress|1
+(noun)|civilian clothing|civilian garb|plain clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+civilian garb|1
+(noun)|civilian clothing|civilian dress|plain clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+civilisation|4
+(noun)|civilization|social process (generic term)
+(noun)|culture|civilization|society (generic term)
+(noun)|civilization|society (generic term)
+(noun)|refinement|civilization|excellence (generic term)
+civilise|2
+(verb)|educate|school|train|cultivate|civilize|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+(verb)|civilize|change (generic term)|alter (generic term)|modify (generic term)
+civilised|2
+(adj)|civilized|advanced (similar term)|civil (similar term)|humane (similar term)|educated (related term)|humane (related term)|industrial (related term)|refined (related term)|noncivilized (antonym)
+(adj)|civilized|cultivated|cultured|genteel|polite|refined (similar term)
+civility|2
+(noun)|courtesy (generic term)|good manners (generic term)|incivility (antonym)
+(noun)|politeness|formality (generic term)
+civilization|4
+(noun)|civilisation|society (generic term)
+(noun)|civilisation|social process (generic term)
+(noun)|culture|civilisation|society (generic term)
+(noun)|refinement|civilisation|excellence (generic term)
+civilize|2
+(verb)|educate|school|train|cultivate|civilise|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+(verb)|civilise|change (generic term)|alter (generic term)|modify (generic term)
+civilized|2
+(adj)|civilised|advanced (similar term)|civil (similar term)|humane (similar term)|educated (related term)|humane (related term)|industrial (related term)|refined (related term)|noncivilized (antonym)
+(adj)|civilised|cultivated|cultured|genteel|polite|refined (similar term)
+civilly|1
+(adv)|uncivilly (antonym)
+civvies|1
+(noun)|civies|civilian clothing (generic term)|civilian dress (generic term)|civilian garb (generic term)|plain clothes (generic term)
+cjd|1
+(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+cl|3
+(adj)|one hundred fifty|150|cardinal (similar term)
+(noun)|chlorine|Cl|atomic number 17|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+(noun)|centiliter|centilitre|metric capacity unit (generic term)
+clabber|2
+(noun)|dairy product (generic term)
+(verb)|curdle|clot|change state (generic term)|turn (generic term)|homogenize (antonym)|homogenise (antonym)|homogenise (antonym)
+clack|5
+(noun)|clap|noise (generic term)
+(noun)|clack valve|clapper valve|valve (generic term)
+(verb)|clatter|brattle|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|cluck|click|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+clack valve|1
+(noun)|clack|clapper valve|valve (generic term)
+clad|2
+(adj)|clothed|adorned (similar term)|bedecked (similar term)|decked (similar term)|decked out (similar term)|appareled (similar term)|attired (similar term)|dressed (similar term)|garbed (similar term)|garmented (similar term)|habilimented (similar term)|robed (similar term)|arrayed (similar term)|panoplied (similar term)|black (similar term)|breeched (similar term)|pantalooned (similar term)|trousered (similar term)|bundled-up (similar term)|caparisoned (similar term)|cassocked (similar term)|coated (similar term)|costumed (similar term)|cowled (similar term)|dighted (similar term)|dressed (similar term)|dressed-up (similar term)|dressed to the nines (similar term)|dressed to kill (similar term)|dolled up (similar term)|spruced up (similar term)|spiffed up (similar term)|togged up (similar term)|gowned (similar term)|habited (similar term)|heavy-coated (similar term)|overdressed (similar term)|petticoated (similar term)|red-coated (similar term)|lobster-backed (similar term)|suited (similar term)|surpliced (similar term)|togged (similar term)|turned out (similar term)|tuxedoed (similar term)|underdressed (similar term)|uniformed (similar term)|vestmented (similar term)|adorned (related term)|decorated (related term)|unclothed (antonym)
+(adj)|sheathed (similar term)
+cladding|1
+(noun)|facing|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+clade|1
+(noun)|biological group (generic term)
+cladistic analysis|1
+(noun)|cladistics|taxonomy (generic term)
+cladistics|1
+(noun)|cladistic analysis|taxonomy (generic term)
+cladode|1
+(noun)|cladophyll|phylloclad|phylloclade|stalk (generic term)|stem (generic term)
+cladogram|1
+(noun)|tree (generic term)|tree diagram (generic term)
+cladonia|1
+(noun)|Cladonia|genus Cladonia|fungus genus (generic term)
+cladonia rangiferina|1
+(noun)|reindeer moss|reindeer lichen|arctic moss|Cladonia rangiferina|lichen (generic term)
+cladoniaceae|1
+(noun)|Cladoniaceae|family Cladoniaceae|fungus family (generic term)
+cladophyll|1
+(noun)|cladode|phylloclad|phylloclade|stalk (generic term)|stem (generic term)
+cladorhyncus|1
+(noun)|Cladorhyncus|genus Cladorhyncus|bird genus (generic term)
+cladorhyncus leucocephalum|1
+(noun)|banded stilt|Cladorhyncus leucocephalum|stilt (generic term)|Australian stilt (generic term)
+cladrastis|1
+(noun)|Cladrastis|genus Cladrastis|rosid dicot genus (generic term)
+cladrastis kentukea|1
+(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood (generic term)
+cladrastis lutea|1
+(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood (generic term)
+claes oldenberg|1
+(noun)|Oldenberg|Claes Oldenberg|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+claforan|1
+(noun)|cefotaxime|Claforan|cephalosporin (generic term)|Mefoxin (generic term)
+claim|10
+(noun)|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|demand (generic term)
+(noun)|title|right (generic term)
+(noun)|title|legal right (generic term)
+(noun)|call|demand (generic term)
+(verb)|affirm (generic term)|disclaim (antonym)
+(verb)|lay claim|arrogate|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)|forfeit (antonym)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|take|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)|disclaim (antonym)
+(verb)|take|exact|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+claim agent|1
+(noun)|adjuster|adjustor|claims adjuster|claims adjustor|investigator (generic term)
+claim form|1
+(noun)|form (generic term)
+claim jumper|1
+(noun)|usurper (generic term)|supplanter (generic term)
+claimant|1
+(noun)|applicant (generic term)|applier (generic term)
+claiming race|1
+(noun)|horse race (generic term)
+claims adjuster|1
+(noun)|adjuster|adjustor|claims adjustor|claim agent|investigator (generic term)
+claims adjustor|1
+(noun)|adjuster|adjustor|claims adjuster|claim agent|investigator (generic term)
+clairvoyance|1
+(noun)|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+clairvoyant|3
+(adj)|extrasensory (similar term)|paranormal (similar term)
+(adj)|precognitive|second-sighted|prophetic (similar term)|prophetical (similar term)
+(noun)|psychic (generic term)
+clam|4
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(noun)|dollar|dollar bill|one dollar bill|buck|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+(noun)|shellfish (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+clam chowder|1
+(noun)|chowder (generic term)
+clam dip|1
+(noun)|dip (generic term)
+clam up|1
+(verb)|close up|dummy up|shut up|belt up|button up|be quiet|keep mum|open up (antonym)
+clamant|2
+(adj)|blatant|clamorous|strident|vociferous|noisy (similar term)
+(adj)|crying|exigent|insistent|instant|imperative (similar term)
+clamatores|1
+(noun)|Clamatores|suborder Clamatores|animal order (generic term)
+clamatorial|1
+(adj)|animal order (related term)
+clambake|1
+(noun)|cookout (generic term)
+clamber|2
+(noun)|climb (generic term)|mount (generic term)
+(verb)|scramble|shin|shinny|skin|struggle|sputter|climb (generic term)
+clamminess|1
+(noun)|dankness|damp (generic term)|dampness (generic term)|moistness (generic term)
+clammy|1
+(adj)|dank|wet (similar term)
+clammy chickweed|1
+(noun)|mouse-ear chickweed|mouse eared chickweed|mouse ear|chickweed|herb (generic term)|herbaceous plant (generic term)
+clammy locust|1
+(noun)|Robinia viscosa|locust tree (generic term)|locust (generic term)
+clammyweed|1
+(noun)|Polanisia graveolens|Polanisia dodecandra|herb (generic term)|herbaceous plant (generic term)
+clamor|5
+(noun)|blare|blaring|cacophony|din|noise (generic term)
+(noun)|clamoring|clamour|clamouring|hue and cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|clamour|demand (generic term)
+(verb)|clamour|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|compel (generic term)|oblige (generic term)|obligate (generic term)
+clamoring|1
+(noun)|clamor|clamour|clamouring|hue and cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+clamorous|1
+(adj)|blatant|clamant|strident|vociferous|noisy (similar term)
+clamorously|1
+(adv)|obstreperously|loudly
+clamour|3
+(noun)|clamor|clamoring|clamouring|hue and cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|clamor|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|clamor|demand (generic term)
+clamouring|1
+(noun)|clamor|clamoring|clamour|hue and cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+clamp|3
+(noun)|clinch|holding device (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+clamp down|1
+(verb)|crack down|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+clampdown|1
+(noun)|limitation (generic term)|restriction (generic term)
+clams|1
+(noun)|boodle|bread|cabbage|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+clamshell|2
+(noun)|shell (generic term)
+(noun)|grapple|dredging bucket (generic term)
+clan|1
+(noun)|kin|kin group|kinship group|kindred|tribe|social group (generic term)
+clan member|1
+(noun)|clansman|clanswoman|member (generic term)
+clandestine|1
+(adj)|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|secret|surreptitious|undercover|underground|covert (similar term)
+clandestine operation|1
+(noun)|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+clang|2
+(noun)|clangor|clangour|clangoring|clank|clash|crash|noise (generic term)
+(verb)|clangor|sound (generic term)|go (generic term)
+clanger|1
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+clanging|1
+(adj)|clangorous|noisy (similar term)
+clangor|3
+(noun)|clang|clangour|clangoring|clank|clash|crash|noise (generic term)
+(verb)|clangour|sound (generic term)|go (generic term)
+(verb)|clang|sound (generic term)|go (generic term)
+clangoring|1
+(noun)|clang|clangor|clangour|clank|clash|crash|noise (generic term)
+clangorous|1
+(adj)|clanging|noisy (similar term)
+clangour|2
+(noun)|clang|clangor|clangoring|clank|clash|crash|noise (generic term)
+(verb)|clangor|sound (generic term)|go (generic term)
+clangula|1
+(noun)|Clangula|genus Clangula|bird genus (generic term)
+clangula hyemalis|1
+(noun)|old squaw|oldwife|Clangula hyemalis|sea duck (generic term)
+clank|2
+(noun)|clang|clangor|clangour|clangoring|clash|crash|noise (generic term)
+(verb)|sound (generic term)|go (generic term)
+clanking|1
+(adj)|noisy (similar term)
+clannish|2
+(adj)|joint (similar term)
+(adj)|cliquish|clubby|snobbish|snobby|private (similar term)
+clannishly|1
+(adv)|cliquishly
+clannishness|1
+(noun)|cliquishness|exclusiveness|snobbery (generic term)|snobbism (generic term)|snobbishness (generic term)
+clansman|1
+(noun)|clanswoman|clan member|member (generic term)
+clanswoman|1
+(noun)|clansman|clan member|member (generic term)
+clap|8
+(noun)|bang|eruption|blast|bam|noise (generic term)
+(noun)|gonorrhea|gonorrhoea|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+(noun)|clack|noise (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|applaud|spat|acclaim|gesticulate (generic term)|gesture (generic term)|motion (generic term)|boo (antonym)
+(verb)|spat|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|beat (generic term)|flap (generic term)
+(verb)|hit (generic term)
+clap on|1
+(verb)|slap on|slam on|put on (generic term)|apply (generic term)
+clap together|1
+(verb)|clap up|slap together|produce (generic term)|make (generic term)|create (generic term)
+clap up|1
+(verb)|clap together|slap together|produce (generic term)|make (generic term)|create (generic term)
+clapboard|2
+(noun)|weatherboard|weatherboarding|siding (generic term)
+(verb)|cover (generic term)
+clapped out|1
+(adj)|worn (similar term)
+clapper|3
+(noun)|applauder|laudator (generic term)|lauder (generic term)|extoller (generic term)
+(noun)|tongue|lingua|glossa|organ (generic term)|articulator (generic term)
+(noun)|tongue|striker (generic term)
+clapper valve|1
+(noun)|clack valve|clack|valve (generic term)
+clapperboard|1
+(noun)|photographic equipment (generic term)
+clapperclaw|2
+(verb)|claw (generic term)
+(verb)|abuse|blackguard|shout|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+clappers|1
+(noun)|bones|castanets|finger cymbals|maraca|percussion instrument (generic term)|percussive instrument (generic term)
+clapping|1
+(noun)|applause|hand clapping|approval (generic term)|commendation (generic term)
+claptrap|1
+(noun)|bombast|fustian|rant|blah|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+claque|1
+(noun)|following (generic term)|followers (generic term)
+clara josephine schumann|1
+(noun)|Schumann|Clara Josephine Schumann|pianist (generic term)|piano player (generic term)|composer (generic term)
+clare booth luce|1
+(noun)|Luce|Clare Booth Luce|dramatist (generic term)|playwright (generic term)
+clarence|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+clarence darrow|1
+(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer (generic term)|attorney (generic term)
+clarence day|1
+(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer (generic term)|author (generic term)
+clarence malcolm lowry|1
+(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer (generic term)|author (generic term)
+clarence seward darrow|1
+(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer (generic term)|attorney (generic term)
+clarence shepard day jr.|1
+(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer (generic term)|author (generic term)
+claret|3
+(noun)|dark red (generic term)
+(noun)|red Bordeaux|Bordeaux (generic term)|Bordeaux wine (generic term)|red wine (generic term)
+(verb)|drink (generic term)|booze (generic term)|fuddle (generic term)
+claret cup|1
+(noun)|cup (generic term)
+clarification|2
+(noun)|elucidation|illumination|interpretation (generic term)
+(noun)|clearing|improvement (generic term)
+clarified|1
+(adj)|processed (similar term)
+clarified butter|1
+(noun)|drawn butter|butter (generic term)
+clarify|2
+(verb)|clear up|elucidate|explain (generic term)|explicate (generic term)|obfuscate (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+clarifying|1
+(adj)|elucidative|instructive (similar term)|informative (similar term)
+clarinet|1
+(noun)|single-reed instrument (generic term)|single-reed woodwind (generic term)
+clarinet section|1
+(noun)|reed section (generic term)
+clarinetist|1
+(noun)|clarinettist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+clarinettist|1
+(noun)|clarinetist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+clarion|4
+(adj)|loud (similar term)
+(noun)|brass (generic term)|brass instrument (generic term)
+(verb)|play (generic term)
+(verb)|proclaim (generic term)|exclaim (generic term)|promulgate (generic term)
+clarity|2
+(noun)|lucidity|lucidness|pellucidity|clearness|limpidity|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+(noun)|clearness|uncloudedness|quality (generic term)|opacity (antonym)
+clark|4
+(noun)|Clark|William Clark|explorer (generic term)|adventurer (generic term)
+(noun)|Clark|Mark Clark|Mark Wayne Clark|general (generic term)|full general (generic term)
+(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist (generic term)
+(noun)|Clark|Joe Clark|Charles Joseph Clark|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+clark's nutcracker|1
+(noun)|Clark's nutcracker|Nucifraga columbiana|nutcracker (generic term)
+clark cell|1
+(noun)|Clark cell|Clark standard cell|standard cell (generic term)
+clark gable|1
+(noun)|Gable|Clark Gable|William Clark Gable|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+clark standard cell|1
+(noun)|Clark cell|Clark standard cell|standard cell (generic term)
+clarksburg|1
+(noun)|Clarksburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+claro|1
+(noun)|cigar (generic term)
+clary|1
+(noun)|Salvia sclarea|sage (generic term)|salvia (generic term)
+clary sage|2
+(noun)|Salvia clarea|sage (generic term)|salvia (generic term)
+(noun)|sage (generic term)
+clash|7
+(noun)|clang|clangor|clangour|clangoring|clank|crash|noise (generic term)
+(noun)|friction|conflict (generic term)
+(noun)|conflict (generic term)
+(noun)|brush|encounter|skirmish|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|collide|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|jar|collide|conflict (generic term)
+(verb)|disagree (generic term)|differ (generic term)|dissent (generic term)|take issue (generic term)
+clashing|1
+(adj)|incompatible (similar term)
+clasp|6
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|clench|clutch|clutches|grasp|grip|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(verb)|grasp (generic term)|hold on (generic term)|unclasp (antonym)
+(verb)|brooch|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|buckle|fasten (generic term)|fix (generic term)|secure (generic term)|unbuckle (antonym)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)|unclasp (antonym)
+clasp knife|1
+(noun)|jackknife|pocketknife (generic term)|pocket knife (generic term)
+class|9
+(noun)|social class|socio-economic class|people (generic term)
+(noun)|form|grade|gathering (generic term)|assemblage (generic term)
+(noun)|course|course of study|course of instruction|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+(noun)|category|family|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|year|gathering (generic term)|assemblage (generic term)
+(noun)|division|league (generic term)|conference (generic term)
+(noun)|elegance (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(verb)|classify|sort|assort|sort out|separate|categorize (generic term)|categorise (generic term)
+class-action suit|1
+(noun)|class action|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+class-conscious|1
+(adj)|stratified|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+class acrasiomycetes|1
+(noun)|Acrasiomycetes|class Acrasiomycetes|class (generic term)
+class act|1
+(noun)|ideal (generic term)|paragon (generic term)|nonpareil (generic term)|saint (generic term)|apotheosis (generic term)|nonesuch (generic term)|nonsuch (generic term)
+class actinozoa|1
+(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class (generic term)
+class action|1
+(noun)|class-action suit|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+class amphibia|1
+(noun)|amphibia|class Amphibia|class (generic term)
+class angiospermae|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+class anthoceropsida|1
+(noun)|Anthoceropsida|class Anthoceropsida|class (generic term)
+class anthozoa|1
+(noun)|Anthozoa|class Anthozoa|Actinozoa|class Actinozoa|class (generic term)
+class aphasmidia|1
+(noun)|Aphasmidia|class Aphasmidia|class (generic term)
+class arachnida|1
+(noun)|Arachnida|class Arachnida|class (generic term)
+class archiannelida|1
+(noun)|Archiannelida|class Archiannelida|class (generic term)
+class ascidiaceae|1
+(noun)|Ascidiaceae|class Ascidiaceae|class (generic term)
+class ascomycetes|1
+(noun)|Ascomycetes|class Ascomycetes|class (generic term)
+class asteroidea|1
+(noun)|Asteroidea|class Asteroidea|class (generic term)
+class aves|1
+(noun)|Aves|class Aves|class (generic term)
+class bacillariophyceae|1
+(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class (generic term)
+class basidiomycetes|1
+(noun)|Basidiomycetes|class Basidiomycetes|class (generic term)
+class bivalvia|1
+(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class (generic term)
+class bryopsida|1
+(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class (generic term)
+class cephalopoda|1
+(noun)|Cephalopoda|class Cephalopoda|class (generic term)
+class cestoda|1
+(noun)|Cestoda|class Cestoda|class (generic term)
+class channidae|1
+(noun)|Channidae|class Channidae|class (generic term)
+class charophyceae|1
+(noun)|Charophyceae|class Charophyceae|class (generic term)
+class chilopoda|1
+(noun)|Chilopoda|class Chilopoda|class (generic term)
+class chlorophyceae|1
+(noun)|Chlorophyceae|class Chlorophyceae|class (generic term)
+class chondrichthyes|1
+(noun)|Chondrichthyes|class Chondrichthyes|class (generic term)
+class chrysophyceae|1
+(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class (generic term)
+class chytridiomycetes|1
+(noun)|Chytridiomycetes|class Chytridiomycetes|class (generic term)
+class ciliata|1
+(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class (generic term)
+class ciliophora|1
+(noun)|Ciliata|class Ciliata|Ciliophora|class Ciliophora|class (generic term)
+class coniferopsida|1
+(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class (generic term)
+class crinoidea|1
+(noun)|Crinoidea|class Crinoidea|class (generic term)
+class crustacea|1
+(noun)|Crustacea|class Crustacea|class (generic term)
+class cryptophyceae|1
+(noun)|Cryptophyceae|class Cryptophyceae|class (generic term)
+class cyanobacteria|1
+(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class (generic term)
+class cyanophyceae|1
+(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class (generic term)
+class cycadopsida|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+class cyclosporeae|1
+(noun)|Cyclosporeae|class Cyclosporeae|class (generic term)
+class deuteromycetes|1
+(noun)|Deuteromycetes|class Deuteromycetes|class (generic term)
+class diatomophyceae|1
+(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class (generic term)
+class dicotyledonae|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+class dicotyledones|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+class diplopoda|1
+(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class (generic term)|category (generic term)|family (generic term)
+class echinoidea|1
+(noun)|Echinoidea|class Echinoidea|class (generic term)
+class equisetatae|1
+(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class (generic term)
+class euglenophyceae|1
+(noun)|Euglenophyceae|class Euglenophyceae|class (generic term)
+class eumycetes|1
+(noun)|Eumycetes|class Eumycetes|class (generic term)
+class feeling|1
+(noun)|hostility (generic term)|enmity (generic term)|ill will (generic term)
+class fellow|1
+(noun)|schoolmate|classmate|schoolfellow|acquaintance (generic term)|friend (generic term)
+class filicinae|1
+(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class (generic term)
+class filicopsida|1
+(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class (generic term)
+class flagellata|1
+(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class (generic term)
+class gasteromycetes|1
+(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class (generic term)
+class gasteropoda|1
+(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class (generic term)
+class gastromycetes|1
+(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class (generic term)
+class gastropoda|1
+(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class (generic term)
+class ginkgophytina|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+class ginkgopsida|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+class gnetopsida|1
+(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class (generic term)
+class gymnospermae|1
+(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class (generic term)
+class hemiascomycetes|1
+(noun)|Hemiascomycetes|class Hemiascomycetes|class (generic term)
+class hepaticae|1
+(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class (generic term)
+class hepaticopsida|1
+(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class (generic term)
+class heterokontae|1
+(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class (generic term)
+class hexapoda|1
+(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class (generic term)
+class hirudinea|1
+(noun)|Hirudinea|class Hirudinea|class (generic term)
+class holothuroidea|1
+(noun)|Holothuroidea|class Holothuroidea|class (generic term)
+class hyalospongiae|1
+(noun)|Hyalospongiae|class Hyalospongiae|class (generic term)
+class hydrozoa|1
+(noun)|Hydrozoa|class Hydrozoa|class (generic term)
+class hymenomycetes|1
+(noun)|Hymenomycetes|class Hymenomycetes|class (generic term)
+class insecta|1
+(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class (generic term)
+class lamellibranchia|1
+(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class (generic term)
+class larvacea|1
+(noun)|Larvacea|class Larvacea|class (generic term)|category (generic term)|family (generic term)
+class liliopsida|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+class list|1
+(noun)|honours list|list (generic term)|listing (generic term)
+class lycopodiate|1
+(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class (generic term)
+class lycopodineae|1
+(noun)|Lycopodineae|class Lycopodineae|class (generic term)
+class lycopsida|1
+(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class (generic term)
+class magnoliopsida|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+class mammalia|1
+(noun)|Mammalia|class Mammalia|class (generic term)
+class mastigophora|1
+(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class (generic term)
+class merostomata|1
+(noun)|Merostomata|class Merostomata|arthropod (generic term)
+class monocotyledonae|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+class monocotyledones|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+class musci|1
+(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class (generic term)
+class myriapoda|1
+(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class (generic term)|category (generic term)|family (generic term)
+class myxomycetes|1
+(noun)|Myxomycetes|class Myxomycetes|class (generic term)
+class nuda|1
+(noun)|Nuda|class Nuda|class (generic term)
+class oligochaeta|1
+(noun)|Oligochaeta|class Oligochaeta|class (generic term)
+class onychophora|1
+(noun)|Onychophora|class Onychophora|class (generic term)
+class oomycetes|1
+(noun)|Oomycetes|class Oomycetes|class (generic term)
+class ophiuroidea|1
+(noun)|Ophiuroidea|class Ophiuroidea|class (generic term)
+class osteichthyes|1
+(noun)|Osteichthyes|class Osteichthyes|class (generic term)
+class pauropoda|1
+(noun)|Pauropoda|class Pauropoda|class (generic term)
+class pelecypoda|1
+(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class (generic term)
+class period|1
+(noun)|course session|recitation|session (generic term)
+class phaeophyceae|1
+(noun)|Phaeophyceae|class Phaeophyceae|class (generic term)
+class phasmidia|1
+(noun)|Phasmidia|class Phasmidia|class (generic term)
+class pinopsida|1
+(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class (generic term)
+class placodermi|1
+(noun)|Placodermi|class Placodermi|class (generic term)
+class plectomycetes|1
+(noun)|Plectomycetes|class Plectomycetes|class (generic term)
+class polychaeta|1
+(noun)|Polychaeta|class Polychaeta|class (generic term)
+class polyplacophora|1
+(noun)|Polyplacophora|class Polyplacophora|class (generic term)
+class psilopsida|1
+(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class (generic term)
+class psilotatae|1
+(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class (generic term)
+class pteridospermopsida|1
+(noun)|Pteridospermopsida|class Pteridospermopsida|class (generic term)
+class pyrenomycetes|1
+(noun)|Pyrenomycetes|class Pyrenomycetes|class (generic term)
+class reptilia|1
+(noun)|Reptilia|class Reptilia|class (generic term)
+class rhodophyceae|1
+(noun)|Rhodophyceae|class Rhodophyceae|class (generic term)
+class sarcodina|1
+(noun)|Sarcodina|class Sarcodina|class (generic term)
+class scaphopoda|1
+(noun)|Scaphopoda|class Scaphopoda|class (generic term)
+class schizomycetes|1
+(noun)|Schizomycetes|class Schizomycetes|class (generic term)
+class scyphozoa|1
+(noun)|Scyphozoa|class Scyphozoa|class (generic term)
+class sphenopsida|1
+(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class (generic term)
+class sporozoa|1
+(noun)|Sporozoa|class Sporozoa|class (generic term)
+class structure|1
+(noun)|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+class struggle|1
+(noun)|class war|class warfare|conflict (generic term)|struggle (generic term)|battle (generic term)
+class symphyla|1
+(noun)|Symphyla|class Symphyla|class (generic term)
+class tardigrada|1
+(noun)|Tardigrada|class Tardigrada|class (generic term)
+class taxopsida|1
+(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class (generic term)
+class tentaculata|1
+(noun)|Tentaculata|class Tentaculata|class (generic term)
+class thaliacea|1
+(noun)|Thaliacea|class Thaliacea|class (generic term)
+class tiliomycetes|1
+(noun)|Tiliomycetes|class Tiliomycetes|class (generic term)
+class trematoda|1
+(noun)|Trematoda|class Trematoda|class (generic term)
+class turbellaria|1
+(noun)|Turbellaria|class Turbellaria|class (generic term)
+class ulvophyceae|1
+(noun)|Ulvophyceae|class Ulvophyceae|class (generic term)
+class war|1
+(noun)|class struggle|class warfare|conflict (generic term)|struggle (generic term)|battle (generic term)
+class warfare|1
+(noun)|class struggle|class war|conflict (generic term)|struggle (generic term)|battle (generic term)
+class xanthophyceae|1
+(noun)|Xanthophyceae|class Xanthophyceae|class (generic term)
+class zygomycetes|1
+(noun)|Zygomycetes|class Zygomycetes|class (generic term)
+classic|4
+(adj)|classical (similar term)
+(adj)|standard (similar term)
+(noun)|creation (generic term)
+(noun)|artist (generic term)|creative person (generic term)
+classic hemochromatosis|1
+(noun)|idiopathic hemochromatosis|hemochromatosis (generic term)|iron-storage disease (generic term)|iron overload (generic term)|bronzed diabetes (generic term)
+classical|3
+(adj)|classic (similar term)|Greco-Roman (similar term)|Graeco-Roman (similar term)|Hellenic (similar term)|neoclassic (similar term)|neoclassical (similar term)|nonclassical (antonym)
+(adj)|authoritative|definitive|standard (similar term)
+(noun)|classical music|serious music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+classical architecture|1
+(noun)|Greco-Roman architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+classical ballet|1
+(noun)|ballet (generic term)|concert dance (generic term)
+classical conditioning|1
+(noun)|conditioning (generic term)
+classical greek|1
+(noun)|Attic|Classical Greek|Ancient Greek (generic term)
+classical haemophilia|1
+(noun)|hemophilia A|haemophilia A|classical hemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+classical hemophilia|1
+(noun)|hemophilia A|haemophilia A|classical haemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+classical latin|1
+(noun)|classical Latin|Latin (generic term)
+classical mechanics|1
+(noun)|Newtonian mechanics|mechanics (generic term)
+classical music|1
+(noun)|classical|serious music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+classical mythology|1
+(noun)|mythology (generic term)
+classical scholar|1
+(noun)|classicist|humanist (generic term)
+classical style|1
+(noun)|artistic style (generic term)|idiom (generic term)
+classicalism|1
+(noun)|classicism|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)|artistic style (generic term)|idiom (generic term)|Romanticism (antonym)
+classicise|1
+(verb)|classicize|change (generic term)|alter (generic term)|modify (generic term)
+classicism|1
+(noun)|classicalism|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)|artistic style (generic term)|idiom (generic term)|Romanticism (antonym)
+classicist|2
+(noun)|artist (generic term)|creative person (generic term)|romanticist (antonym)
+(noun)|classical scholar|humanist (generic term)
+classicistic|1
+(adj)|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+classicize|1
+(verb)|classicise|change (generic term)|alter (generic term)|modify (generic term)
+classics|1
+(noun)|literary study (generic term)
+classifiable|1
+(adj)|distinctive|identifiable (similar term)
+classification|4
+(noun)|categorization|categorisation|compartmentalization|compartmentalisation|assortment|grouping (generic term)
+(noun)|categorization|categorisation|arrangement (generic term)
+(noun)|categorization|categorisation|sorting|basic cognitive process (generic term)
+(noun)|restriction (generic term)|declassification (antonym)
+classification system|1
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+classificatory|1
+(adj)|grouping (related term)
+classified|3
+(adj)|categorized (similar term)|categorised (similar term)|grouped (similar term)|sorted (similar term)|unclassified (antonym)
+(adj)|eyes-only (similar term)|confidential (similar term)|restricted (similar term)|secret (similar term)|sensitive (similar term)|top-secret (similar term)|unclassified (antonym)
+(noun)|classified ad|classified advertisement|newspaper ad (generic term)|newspaper advertisement (generic term)
+classified ad|1
+(noun)|classified advertisement|classified|newspaper ad (generic term)|newspaper advertisement (generic term)
+classified advertisement|1
+(noun)|classified ad|classified|newspaper ad (generic term)|newspaper advertisement (generic term)
+classified stock|1
+(noun)|common stock (generic term)|common shares (generic term)|ordinary shares (generic term)
+classifier|2
+(noun)|thinker (generic term)
+(noun)|word (generic term)|morpheme (generic term)
+classify|3
+(verb)|class|sort|assort|sort out|separate|categorize (generic term)|categorise (generic term)
+(verb)|restrict (generic term)|declassify (antonym)
+(verb)|relegate|assign (generic term)|attribute (generic term)
+classifying adjective|1
+(noun)|relational adjective|adjective (generic term)
+classless|1
+(adj)|egalitarian|democratic (similar term)
+classmate|1
+(noun)|schoolmate|schoolfellow|class fellow|acquaintance (generic term)|friend (generic term)
+classroom|1
+(noun)|schoolroom|room (generic term)
+classroom project|1
+(noun)|school assignment (generic term)|schoolwork (generic term)
+classwork|1
+(noun)|school assignment (generic term)|schoolwork (generic term)
+classy|1
+(adj)|posh|swish|stylish (similar term)|fashionable (similar term)
+clast|1
+(noun)|fragment (generic term)
+clastic|2
+(adj)|disintegrative (similar term)
+(adj)|detachable (similar term)
+clastic rock|1
+(noun)|rock (generic term)|stone (generic term)
+clathraceae|1
+(noun)|Clathraceae|family Clathraceae|fungus family (generic term)
+clathrate|2
+(adj)|cancellate|cancellated|reticulate (similar term)|reticular (similar term)
+(adj)|enclosed (similar term)
+clathrus|1
+(noun)|Clathrus|genus Clathrus|fungus genus (generic term)
+clatonia lanceolata|1
+(noun)|spring beauty|Clatonia lanceolata|flower (generic term)
+clatter|2
+(noun)|noise (generic term)
+(verb)|clack|brattle|make noise (generic term)|resound (generic term)|noise (generic term)
+clattering|1
+(adj)|clattery|noisy (similar term)
+clattery|1
+(adj)|clattering|noisy (similar term)
+claude achille debussy|1
+(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer (generic term)
+claude bernard|1
+(noun)|Bernard|Claude Bernard|physiologist (generic term)
+claude debussey|1
+(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer (generic term)
+claude e. shannon|1
+(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+claude elwood shannon|1
+(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+claude levi-strauss|1
+(noun)|Levi-Strauss|Claude Levi-Strauss|anthropologist (generic term)
+claude monet|1
+(noun)|Monet|Claude Monet|painter (generic term)
+claude shannon|1
+(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+claudication|1
+(noun)|lameness|limping|gimp|gimpiness|gameness|disability of walking (generic term)
+claudio monteverdi|1
+(noun)|Monteverdi|Claudio Monteverdi|composer (generic term)
+claudius|1
+(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+claudius i|1
+(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+claudius ptolemaeus|1
+(noun)|Ptolemy|Claudius Ptolemaeus|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+clausal|1
+(adj)|construction|grammatical construction|expression (related term)
+clause|2
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+(noun)|article|section (generic term)|subdivision (generic term)
+clausewitz|1
+(noun)|Clausewitz|Karl von Clausewitz|general (generic term)|full general (generic term)
+claustrophobe|1
+(noun)|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+claustrophobia|1
+(noun)|simple phobia (generic term)
+claustrophobic|2
+(adj)|confined (similar term)
+(adj)|afraid (similar term)
+claustrum|1
+(noun)|basal ganglion (generic term)
+clavariaceae|1
+(noun)|Clavariaceae|family Clavariaceae|fungus family (generic term)
+claver|1
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|visit|converse (generic term)|discourse (generic term)
+claviceps|1
+(noun)|Claviceps|genus Claviceps|fungus genus (generic term)
+claviceps purpurea|1
+(noun)|ergot|Claviceps purpurea|fungus (generic term)
+clavichord|1
+(noun)|stringed instrument (generic term)
+clavicipitaceae|1
+(noun)|Clavicipitaceae|grainy club mushrooms|ascomycete (generic term)|ascomycetous fungus (generic term)
+clavicle|1
+(noun)|collarbone|bone (generic term)|os (generic term)
+clavier|2
+(noun)|piano keyboard|fingerboard|keyboard (generic term)
+(noun)|Klavier|stringed instrument (generic term)
+clavus|1
+(noun)|corn|callosity (generic term)|callus (generic term)
+claw|8
+(noun)|horny structure (generic term)|unguis (generic term)
+(noun)|hook|mechanical device (generic term)
+(noun)|chela|nipper|pincer|extremity (generic term)|appendage (generic term)|member (generic term)
+(noun)|bird's foot (generic term)
+(verb)|make (generic term)|work (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|scratch (generic term)|scrape (generic term)|scratch up (generic term)
+(verb)|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+claw-shaped|1
+(adj)|formed (similar term)
+claw hammer|1
+(noun)|carpenter's hammer|clawhammer|hammer (generic term)
+claw hatchet|1
+(noun)|hatchet (generic term)
+clawback|1
+(noun)|restitution (generic term)|return (generic term)|restoration (generic term)|regaining (generic term)
+clawed|2
+(adj)|unguiculate (similar term)|unguiculated (similar term)
+(adj)|taloned|armed (similar term)
+clawfoot|1
+(noun)|pes cavus|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+clawhammer|1
+(noun)|carpenter's hammer|claw hammer|hammer (generic term)
+clawlike|1
+(adj)|unguiculate (similar term)|unguiculated (similar term)
+claxon|3
+(noun)|klaxon|horn (generic term)
+(verb)|honk|blare|beep|toot|sound (generic term)|go (generic term)
+(verb)|honk|make noise (generic term)|resound (generic term)|noise (generic term)
+clay|5
+(noun)|soil (generic term)|dirt (generic term)
+(noun)|mud|soil (generic term)|dirt (generic term)
+(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general (generic term)|full general (generic term)
+(noun)|Clay|Henry Clay|the Great Compromiser|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|cadaver|corpse|stiff|remains|body (generic term)|dead body (generic term)
+clay-colored robin|1
+(noun)|Turdus greyi|thrush (generic term)
+clay-like|1
+(adj)|compact (similar term)
+clay pigeon|1
+(noun)|target (generic term)|butt (generic term)
+clay pipe|1
+(noun)|pipe (generic term)|tobacco pipe (generic term)
+clay sculpture|1
+(noun)|mold|mould|molding|moulding|modeling|sculpture (generic term)
+clayey|2
+(adj)|argillaceous|arenaceous (antonym)
+(adj)|cloggy|heavy|compact (similar term)
+claymore|2
+(noun)|broadsword (generic term)
+(noun)|claymore mine|land mine (generic term)|ground-emplaced mine (generic term)|booby trap (generic term)
+claymore mine|1
+(noun)|claymore|land mine (generic term)|ground-emplaced mine (generic term)|booby trap (generic term)
+claystone|1
+(noun)|rock (generic term)|stone (generic term)
+claytonia|1
+(noun)|Claytonia|genus Claytonia|caryophylloid dicot genus (generic term)
+claytonia caroliniana|1
+(noun)|Carolina spring beauty|Claytonia caroliniana|flower (generic term)
+claytonia virginica|1
+(noun)|Virginia spring beauty|Claytonia virginica|flower (generic term)
+clayware|1
+(noun)|pottery|ceramic ware (generic term)
+clean|30
+(adj)|cleanable (similar term)|cleaned (similar term)|cleansed (similar term)|cleanly (similar term)|dry-cleaned (similar term)|fresh (similar term)|unused (similar term)|immaculate (similar term)|speckless (similar term)|spick-and-span (similar term)|spic-and-span (similar term)|spic (similar term)|spick (similar term)|spotless (similar term)|pristine (similar term)|scrubbed (similar term)|unsoiled (similar term)|unspotted (similar term)|unstained (similar term)|unsullied (similar term)|washed (similar term)|water-washed (similar term)|antiseptic (related term)|clean (related term)|tidy (related term)|dirty (antonym)
+(adj)|clear|unqualified (similar term)
+(adj)|clear|light|unclouded|pure (similar term)
+(adj)|fresh|pure (similar term)
+(adj)|perfect (similar term)
+(adj)|halal (similar term)|kosher (similar term)|cosher (similar term)|clean (related term)|pure (related term)|unclean (antonym)
+(adj)|uncontaminating|dirty (antonym)
+(adj)|unobjectionable|antiseptic (similar term)|decent (related term)|dirty (antonym)
+(adj)|uninfected|antiseptic (similar term)
+(adj)|clean-living|moral (similar term)
+(adj)|fair|legible (similar term)
+(adj)|blank|white|empty (similar term)
+(adj)|sporting|sporty|sportsmanlike|fair (similar term)|just (similar term)
+(adj)|complete (similar term)
+(adj)|unblemished (similar term)
+(adj)|unarmed (similar term)
+(adj)|neat|adroit (similar term)
+(adj)|unaddicted (similar term)
+(noun)|clean and jerk|weightlift (generic term)|weightlifting (generic term)
+(verb)|make clean|change (generic term)|alter (generic term)|modify (generic term)|dirty (antonym)
+(verb)|pick|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|houseclean|clean house|tidy (generic term)|tidy up (generic term)|clean up (generic term)|neaten (generic term)|straighten (generic term)|straighten out (generic term)|square away (generic term)
+(verb)|cleanse|groom (generic term)|neaten (generic term)
+(verb)|be (generic term)
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+(verb)|strip|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|scavenge|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(adv)|plumb|plum
+(adv)|fairly|fair|unfairly (antonym)
+clean-burning|1
+(adj)|fueled (similar term)
+clean-cut|2
+(adj)|trig|trim|tidy (similar term)
+(adj)|clear|clear-cut|distinct (similar term)
+clean-handed|1
+(adj)|innocent|guiltless|absolved (similar term)|clear (similar term)|cleared (similar term)|exculpated (similar term)|exonerated (similar term)|vindicated (similar term)|acquitted (similar term)|not guilty (similar term)|blameless (similar term)|inculpable (similar term)|irreproachable (similar term)|unimpeachable (similar term)|exculpatory (related term)|righteous (related term)|guilty (antonym)
+clean-limbed|1
+(adj)|shapely (similar term)
+clean-living|1
+(adj)|clean|moral (similar term)
+clean-shaven|1
+(adj)|smooth-shaven|well-shaven|shaven (similar term)|shaved (similar term)
+clean and jerk|1
+(noun)|clean|weightlift (generic term)|weightlifting (generic term)
+clean bill of health|1
+(noun)|assurance (generic term)
+clean bomb|1
+(noun)|atom bomb (generic term)|atomic bomb (generic term)|A-bomb (generic term)|fission bomb (generic term)|plutonium bomb (generic term)
+clean house|1
+(verb)|houseclean|clean|tidy (generic term)|tidy up (generic term)|clean up (generic term)|neaten (generic term)|straighten (generic term)|straighten out (generic term)|square away (generic term)
+clean out|3
+(verb)|clear out|empty (generic term)
+(verb)|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+clean room|1
+(noun)|white room|room (generic term)
+clean slate|1
+(noun)|fresh start|tabula rasa|opportunity (generic term)|chance (generic term)
+clean up|4
+(verb)|tidy|tidy up|neaten|straighten|straighten out|square away|order (generic term)
+(verb)|profit (generic term)|turn a profit (generic term)
+(verb)|settle (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+cleanable|1
+(adj)|clean (similar term)
+cleaned|1
+(adj)|cleansed|clean (similar term)
+cleaner|3
+(noun)|cleansing agent|cleanser|formulation (generic term)|preparation (generic term)
+(noun)|dry cleaner|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+cleaners|1
+(noun)|dry cleaners|shop (generic term)|store (generic term)
+cleaning|1
+(noun)|cleansing|cleanup|improvement (generic term)
+cleaning implement|1
+(noun)|implement (generic term)
+cleaning lady|1
+(noun)|charwoman|char|cleaning woman|woman|cleaner (generic term)
+cleaning pad|1
+(noun)|pad (generic term)|cleaning implement (generic term)
+cleaning woman|1
+(noun)|charwoman|char|cleaning lady|woman|cleaner (generic term)
+cleanliness|2
+(noun)|habit (generic term)|use (generic term)|wont (generic term)
+(noun)|trait (generic term)|uncleanliness (antonym)
+cleanly|2
+(adj)|clean (similar term)
+(adv)|flawlessly
+cleanness|2
+(noun)|sanitary condition (generic term)|dirtiness (antonym)
+(noun)|purity (generic term)|pureness (generic term)|sinlessness (generic term)|innocence (generic term)|whiteness (generic term)
+cleanse|2
+(verb)|clean|groom (generic term)|neaten (generic term)
+(verb)|rid (generic term)|free (generic term)|disembarrass (generic term)
+cleansed|1
+(adj)|cleaned|clean (similar term)
+cleanser|1
+(noun)|cleansing agent|cleaner|formulation (generic term)|preparation (generic term)
+cleansing|3
+(adj)|ablutionary|purifying (similar term)
+(adj)|purifying|antiseptic (similar term)
+(noun)|cleaning|cleanup|improvement (generic term)
+cleansing agent|1
+(noun)|cleanser|cleaner|formulation (generic term)|preparation (generic term)
+cleanthes|1
+(noun)|Cleanthes|philosopher (generic term)
+cleanup|3
+(noun)|killing|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+(noun)|cleanup position|cleanup spot|position (generic term)
+(noun)|cleaning|cleansing|improvement (generic term)
+cleanup position|1
+(noun)|cleanup|cleanup spot|position (generic term)
+cleanup spot|1
+(noun)|cleanup|cleanup position|position (generic term)
+clear|45
+(adj)|broad (similar term)|unsubtle (similar term)|clear-cut (similar term)|distinct (similar term)|trenchant (similar term)|limpid (similar term)|lucid (similar term)|luculent (similar term)|pellucid (similar term)|crystal clear (similar term)|perspicuous (similar term)|prima facie (similar term)|unmistakable (similar term)|vivid (similar term)|comprehensible (related term)|comprehendible (related term)|definite (related term)|distinct (related term)|clear (related term)|unambiguous (related term)|unclear (antonym)
+(adj)|clearheaded (similar term)|clear-thinking (similar term)
+(adj)|open|unobstructed (similar term)
+(adj)|crystalline (similar term)|crystal clear (similar term)|limpid (similar term)|lucid (similar term)|pellucid (similar term)|transparent (similar term)|hyaline (similar term)|hyaloid (similar term)|liquid (similar term)|limpid (similar term)|translucent (similar term)|semitransparent (similar term)|unclouded (similar term)|unfrosted (similar term)|clear (related term)|opaque (antonym)
+(adj)|free (similar term)
+(adj)|untroubled (similar term)
+(adj)|clean|light|unclouded|pure (similar term)
+(adj)|unmortgaged|unencumbered (similar term)
+(adj)|clean-cut|clear-cut|distinct (similar term)
+(adj)|well-defined|ill-defined (antonym)
+(adj)|bright (similar term)|shining (similar term)|shiny (similar term)|sunshiny (similar term)|sunny (similar term)|cloudless (similar term)|unclouded (similar term)|fair (similar term)|serene (similar term)|cloudy (antonym)
+(adj)|clean|unqualified (similar term)
+(adj)|perfect (similar term)
+(adj)|net (similar term)|nett (similar term)
+(adj)|decipherable|readable|legible (similar term)
+(adj)|absolved|cleared|exculpated|exonerated|vindicated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+(adj)|percipient|discerning (similar term)
+(adj)|unblemished (similar term)
+(noun)|innocence (generic term)
+(noun)|open|area (generic term)|country (generic term)
+(verb)|unclutter|change (generic term)|alter (generic term)|modify (generic term)|clear off (related term)|clear away (related term)|clutter (antonym)
+(verb)|make (generic term)|create (generic term)
+(verb)|clear up|light up|brighten|overcast (antonym)
+(verb)|authorize|authorise|pass|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|pass|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|bounce (antonym)
+(verb)|vanish (generic term)|disappear (generic term)|go away (generic term)
+(verb)|top|pass (generic term)|overtake (generic term)|overhaul (generic term)
+(verb)|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|free (generic term)|discharge (generic term)
+(verb)|rid (generic term)|free (generic term)|disembarrass (generic term)
+(verb)|net|yield (generic term)|pay (generic term)|bear (generic term)
+(verb)|net|sack|sack up|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|gain|take in|make|earn|realize|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|sell (generic term)
+(verb)|pass (generic term)|clear (generic term)
+(verb)|acquit|assoil|discharge|exonerate|exculpate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+(verb)|solve|settle (generic term)|square off (generic term)|square up (generic term)|determine (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|take out (generic term)|move out (generic term)|remove (generic term)
+(verb)|empty (generic term)
+(verb)|clear up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(adv)|all the way
+(adv)|clearly
+clear-air turbulence|1
+(noun)|turbulence (generic term)
+clear-cut|4
+(adj)|distinct|trenchant|clear (similar term)
+(adj)|cleared (similar term)
+(adj)|clear|clean-cut|distinct (similar term)
+(verb)|clear (generic term)
+clear-eyed|1
+(adj)|clear-sighted|perspicacious|discerning (similar term)
+clear-sighted|2
+(adj)|sighted (similar term)
+(adj)|clear-eyed|perspicacious|discerning (similar term)
+clear-thinking|1
+(adj)|clearheaded|clear (similar term)|unclouded (similar term)|confused (antonym)
+clear and present danger|1
+(noun)|danger (generic term)
+clear away|1
+(verb)|clear off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+clear liquid diet|1
+(noun)|liquid diet (generic term)
+clear off|1
+(verb)|clear away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+clear out|3
+(verb)|move out (generic term)
+(verb)|expectorate|drive out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|clean out|empty (generic term)
+clear sailing|1
+(noun)|plain sailing|easy going|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+clear the air|1
+(verb)|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+clear the throat|1
+(verb)|hawk|cough (generic term)
+clear up|5
+(verb)|clarify|elucidate|explain (generic term)|explicate (generic term)|obfuscate (antonym)
+(verb)|get through|wrap up|finish off|mop up|polish off|finish up|complete (generic term)|finish (generic term)
+(verb)|clear|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|clear|light up|brighten|overcast (antonym)
+(verb)|clear|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+clearance|3
+(noun)|interval (generic term)|separation (generic term)
+(noun)|headroom|headway|room (generic term)|way (generic term)|elbow room (generic term)
+(noun)|license (generic term)|permission (generic term)|permit (generic term)
+clearance sale|1
+(noun)|inventory-clearance sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+clearcutness|1
+(noun)|preciseness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+cleared|2
+(adj)|clear-cut (similar term)|improved (similar term)|unwooded (related term)|treeless (related term)|uncleared (antonym)
+(adj)|absolved|clear|exculpated|exonerated|vindicated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+clearheaded|1
+(adj)|clear-thinking|clear (similar term)|unclouded (similar term)|confused (antonym)
+clearing|3
+(noun)|glade|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+(noun)|clarification|improvement (generic term)
+clearing house|1
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+clearly|3
+(adv)|intelligibly|understandably|unintelligibly (antonym)
+(adv)|distinctly
+(adv)|clear
+clearness|2
+(noun)|clarity|lucidity|lucidness|pellucidity|limpidity|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+(noun)|clarity|uncloudedness|quality (generic term)|opacity (antonym)
+clearstory|1
+(noun)|clerestory|window (generic term)
+clearway|1
+(noun)|road (generic term)|route (generic term)
+clearweed|1
+(noun)|richweed|dead nettle|Pilea pumilla|nettle (generic term)
+cleat|5
+(noun)|projection (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|strip (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+cleats|1
+(noun)|shoe (generic term)
+cleavable|1
+(adj)|divisible (similar term)
+cleavage|5
+(noun)|state (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|segmentation|cell division (generic term)|cellular division (generic term)
+(noun)|area (generic term)|region (generic term)
+(noun)|division (generic term)
+cleavage cavity|1
+(noun)|blastocoel|blastocoele|blastocele|segmentation cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+cleave|3
+(verb)|split|rive|tear (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|cling|adhere|stick|cohere|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+cleaver|1
+(noun)|meat cleaver|chopper|knife (generic term)
+cleavers|1
+(noun)|clivers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw (generic term)
+clef|1
+(noun)|musical notation (generic term)
+cleft|4
+(adj)|cloven|bisulcate|divided (similar term)
+(adj)|dissected|compound (similar term)
+(noun)|indentation (generic term)|indenture (generic term)
+(noun)|crack|crevice|fissure|scissure|opening (generic term)|gap (generic term)
+cleft foot|1
+(noun)|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+cleft lip|1
+(noun)|harelip|cheiloschisis|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+cleft palate|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+cleg|1
+(noun)|horsefly|clegg|horse fly|gadfly (generic term)
+clegg|1
+(noun)|horsefly|cleg|horse fly|gadfly (generic term)
+cleistes|1
+(noun)|Cleistes|genus Cleistes|monocot genus (generic term)|liliopsid genus (generic term)
+cleistes divaricata|1
+(noun)|spreading pogonia|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid (generic term)|orchidaceous plant (generic term)
+cleistes rosea|1
+(noun)|rosebud orchid|Cleistes rosea|Pogonia rosea|orchid (generic term)|orchidaceous plant (generic term)
+cleistocarp|1
+(noun)|cleistothecium|ascocarp (generic term)
+cleistogamic|1
+(adj)|cleistogamous|self-pollination (related term)
+cleistogamous|1
+(adj)|cleistogamic|self-pollination (related term)
+cleistogamy|1
+(noun)|self-pollination (generic term)
+cleistothecium|1
+(noun)|cleistocarp|ascocarp (generic term)
+clematis|1
+(noun)|vine (generic term)
+clematis baldwinii|1
+(noun)|pine hyacinth|Clematis baldwinii|Viorna baldwinii|clematis (generic term)
+clematis crispa|1
+(noun)|blue jasmine|blue jessamine|curly clematis|marsh clematis|Clematis crispa|clematis (generic term)
+clematis lasiantha|1
+(noun)|pipestem clematis|Clematis lasiantha|clematis (generic term)
+clematis ochreleuca|1
+(noun)|curly-heads|Clematis ochreleuca|clematis (generic term)
+clematis tangutica|1
+(noun)|golden clematis|Clematis tangutica|clematis (generic term)
+clematis texensis|1
+(noun)|scarlet clematis|Clematis texensis|clematis (generic term)
+clematis versicolor|1
+(noun)|leather flower|Clematis versicolor|clematis (generic term)
+clematis verticillaris|1
+(noun)|purple clematis|purple virgin's bower|mountain clematis|Clematis verticillaris|clematis (generic term)
+clematis viorna|1
+(noun)|leather flower|vase-fine|vase vine|Clematis viorna|clematis (generic term)
+clematis virginiana|1
+(noun)|virgin's bower|old man's beard|devil's darning needle|Clematis virginiana|clematis (generic term)
+clematis vitalba|1
+(noun)|traveler's joy|traveller's joy|old man's beard|Clematis vitalba|clematis (generic term)
+clemence sophia harned lozier|1
+(noun)|Lozier|Clemence Sophia Harned Lozier|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+clemenceau|1
+(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman (generic term)|solon (generic term)|national leader (generic term)
+clemency|2
+(noun)|mildness|good weather (generic term)
+(noun)|mercifulness|mercy|lenience (generic term)|leniency (generic term)
+clemens|1
+(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer (generic term)|author (generic term)|humorist (generic term)|humourist (generic term)
+clement|2
+(adj)|balmy (similar term)|mild (similar term)|soft (similar term)|temperate (related term)|inclement (antonym)
+(adj)|lenient (similar term)|merciful (related term)|inclement (antonym)
+clement attlee|1
+(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman (generic term)|solon (generic term)|national leader (generic term)
+clement iii|1
+(noun)|Clement III|Guibert of Ravenna|antipope (generic term)
+clement philibert leo delibes|1
+(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer (generic term)
+clement richard attlee|1
+(noun)|Attlee|Clement Attlee|Clement Richard Attlee|1st Earl Attlee|statesman (generic term)|solon (generic term)|national leader (generic term)
+clement vii|1
+(noun)|Clement VII|Giulio de' Medici|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+clement xi|1
+(noun)|Clement XI|Giovanni Francesco Albani|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+clement xiv|1
+(noun)|Clement XIV|Lorenzo Ganganelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+clementine|2
+(noun)|clementine tree|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+(noun)|mandarin (generic term)|mandarin orange (generic term)
+clementine tree|1
+(noun)|clementine|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+clench|4
+(noun)|clinch|noose (generic term)|running noose (generic term)|slip noose (generic term)
+(noun)|clasp|clutch|clutches|grasp|grip|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(verb)|clinch|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|squeeze (generic term)
+clenched|1
+(adj)|clinched|tight (similar term)
+clenched fist|1
+(noun)|fist|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+cleome|2
+(noun)|spiderflower|herb (generic term)|herbaceous plant (generic term)
+(noun)|genus Cleome|Cleome|dilleniid dicot genus (generic term)
+cleome hassleriana|1
+(noun)|spider flower|spider plant|Cleome hassleriana|spiderflower (generic term)|cleome (generic term)
+cleome pinnata|1
+(noun)|desert plume|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub (generic term)|suffrutex (generic term)
+cleome serrulata|1
+(noun)|Rocky Mountain bee plant|stinking clover|Cleome serrulata|spiderflower (generic term)|cleome (generic term)
+cleopatra|1
+(noun)|Cleopatra|queen (generic term)|queen regnant (generic term)|female monarch (generic term)|Egyptian (generic term)
+clepsydra|1
+(noun)|water clock|water glass|clock (generic term)
+clerestory|1
+(noun)|clearstory|window (generic term)
+clergy|1
+(noun)|priesthood (generic term)|laity (antonym)
+clergyman|1
+(noun)|reverend|man of the cloth|spiritual leader (generic term)|layman (antonym)
+cleric|1
+(noun)|churchman|divine|ecclesiastic|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+clerical|3
+(adj)|employee (related term)
+(adj)|priesthood (related term)
+(adj)|white-collar (similar term)
+clerical collar|1
+(noun)|Roman collar|dog collar|collar (generic term)|neckband (generic term)
+clericalism|1
+(noun)|policy (generic term)
+clericalist|1
+(noun)|disciple (generic term)|adherent (generic term)
+clerid|1
+(noun)|clerid beetle|beetle (generic term)
+clerid beetle|1
+(noun)|clerid|beetle (generic term)
+cleridae|1
+(noun)|Cleridae|family Cleridae|arthropod family (generic term)
+clerihew|1
+(noun)|verse (generic term)|rhyme (generic term)
+clerisy|1
+(noun)|intelligentsia|elite (generic term)|elite group (generic term)
+clerk|3
+(noun)|employee (generic term)
+(noun)|salesclerk|shop clerk|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+(verb)|work (generic term)
+clerking|1
+(noun)|bookkeeping|accountancy (generic term)|accounting (generic term)
+clerkship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+clethra|1
+(noun)|Clethra|genus Clethra|dicot genus (generic term)|magnoliopsid genus (generic term)
+clethra alnifolia|1
+(noun)|sweet pepperbush|pepper bush|summer sweet|white alder|Clethra alnifolia|shrub (generic term)|bush (generic term)
+clethraceae|1
+(noun)|Clethraceae|family Clethraceae|white-alder family|dilleniid dicot family (generic term)
+clethrionomys|1
+(noun)|Clethrionomys|genus Clethrionomys|mammal genus (generic term)
+cleveland|2
+(noun)|Cleveland|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+clever|4
+(adj)|adroit|ingenious|artful (similar term)
+(adj)|cagey|cagy|canny|smart (similar term)
+(adj)|apt|intelligent (similar term)
+(adj)|cunning|ingenious|adroit (similar term)
+clever clogs|1
+(noun)|clever Dick|intellectual (generic term)|intellect (generic term)
+clever dick|1
+(noun)|clever Dick|clever clogs|intellectual (generic term)|intellect (generic term)
+cleverly|1
+(adv)|smartly
+cleverness|3
+(noun)|inventiveness|ingeniousness|ingenuity|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|brightness|smartness|intelligence (generic term)
+(noun)|ingenuity|ingeniousness|superiority (generic term)|high quality (generic term)
+clevis|1
+(noun)|coupling (generic term)|coupler (generic term)
+clew|3
+(noun)|ball (generic term)|clod (generic term)|glob (generic term)|lump (generic term)|clump (generic term)|chunk (generic term)
+(noun)|clue|cue|evidence (generic term)
+(verb)|clue|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)
+clews|1
+(noun)|cord (generic term)
+cli|1
+(noun)|command line interface|CLI|interface (generic term)|user interface (generic term)
+clianthus|1
+(noun)|glory pea|shrub (generic term)|bush (generic term)
+clianthus formosus|1
+(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea (generic term)|clianthus (generic term)
+clianthus puniceus|1
+(noun)|parrot's beak|parrot's bill|Clianthus puniceus|glory pea (generic term)|clianthus (generic term)
+clianthus speciosus|1
+(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea (generic term)|clianthus (generic term)
+cliche|1
+(noun)|platitude|banality|commonplace|bromide|remark (generic term)|comment (generic term)|truism (generic term)
+cliched|1
+(adj)|ready-made|unoriginal (similar term)
+clichy|1
+(noun)|Clichy|Clichy-la-Garenne|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+clichy-la-garenne|1
+(noun)|Clichy|Clichy-la-Garenne|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+click|11
+(noun)|chink|clink|sound (generic term)
+(noun)|mouse click|depression (generic term)
+(noun)|suction stop|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)
+(noun)|pawl|detent|dog|catch (generic term)|stop (generic term)
+(verb)|snap|move (generic term)
+(verb)|tick|sound (generic term)|go (generic term)
+(verb)|chatter|sound (generic term)|go (generic term)
+(verb)|snap|flick|move (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|cluck|clack|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|get through|dawn|come home|get across|sink in|penetrate|fall into place
+click-clack|1
+(noun)|sound (generic term)
+click beetle|1
+(noun)|skipjack|snapping beetle|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+click off|1
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+click open|1
+(verb)|open (generic term)|open up (generic term)
+clickety-clack|1
+(noun)|clickety-click|click-clack (generic term)
+clickety-click|1
+(noun)|clickety-clack|click-clack (generic term)
+client|3
+(noun)|case (generic term)
+(noun)|customer|consumer (generic term)
+(noun)|node|guest|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+client-centered therapy|1
+(noun)|psychotherapy (generic term)
+clientage|1
+(noun)|business relation (generic term)
+clientele|1
+(noun)|patronage|business|people (generic term)
+cliff|1
+(noun)|drop|drop-off|geological formation (generic term)|formation (generic term)
+cliff-brake|1
+(noun)|cliff brake|rock brake|fern (generic term)
+cliff-hanging|1
+(adj)|suspenseful|suspensive|nail-biting|tense (similar term)
+cliff brake|1
+(noun)|cliff-brake|rock brake|fern (generic term)
+cliff diving|1
+(noun)|dive (generic term)|diving (generic term)
+cliff dweller|1
+(noun)|Anasazi (generic term)
+cliff dwelling|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+cliff penstemon|1
+(noun)|rock penstemon|Penstemon rupicola|wildflower (generic term)|wild flower (generic term)
+cliff rose|1
+(noun)|sea pink|Armeria maritima|thrift (generic term)
+cliff swallow|1
+(noun)|Hirundo pyrrhonota|swallow (generic term)
+cliffhanger|2
+(noun)|contest (generic term)|competition (generic term)
+(noun)|episode (generic term)|installment (generic term)|instalment (generic term)
+clifflike|1
+(adj)|cliffy|craggy (similar term)|rugged (similar term)|precipitous (similar term)|rock-ribbed (similar term)|rockbound (similar term)|beachy (antonym)
+clifford odets|1
+(noun)|Odets|Clifford Odets|dramatist (generic term)|playwright (generic term)
+clifford trust|1
+(noun)|Clifford trust|grantor trust|trust (generic term)
+cliffy|1
+(adj)|clifflike|craggy (similar term)|rugged (similar term)|precipitous (similar term)|rock-ribbed (similar term)|rockbound (similar term)|beachy (antonym)
+cliftonia|1
+(noun)|Cliftonia|genus Cliftonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+cliftonia monophylla|1
+(noun)|titi|buckwheat tree|Cliftonia monophylla|angiospermous tree (generic term)|flowering tree (generic term)
+climacteric|2
+(noun)|biological time (generic term)
+(noun)|menopause|change of life|biological time (generic term)
+climactic|1
+(adj)|anticlimactic (antonym)
+climate|2
+(noun)|clime|environmental condition (generic term)
+(noun)|mood|condition (generic term)|status (generic term)
+climate change|1
+(noun)|global climate change|temperature change (generic term)
+climatic|1
+(adj)|climatical|environmental condition (related term)
+climatic zone|1
+(noun)|zone (generic term)|geographical zone (generic term)
+climatical|1
+(adj)|climatic|environmental condition (related term)
+climatologist|1
+(noun)|expert (generic term)
+climatology|1
+(noun)|meteorology (generic term)
+climax|6
+(noun)|flood tide|juncture (generic term)|occasion (generic term)
+(noun)|culmination|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+(noun)|orgasm|sexual climax|coming|consummation (generic term)
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|rhetorical device (generic term)
+(verb)|culminate|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+climb|9
+(noun)|ascent|acclivity|rise|raise|upgrade|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+(noun)|climbing|mounting|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|mount|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(verb)|climb up|mount|go up|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|climb on (related term)|climb down (related term)
+(verb)|move (generic term)
+(verb)|wax|mount|rise|increase (generic term)|wane (antonym)
+(verb)|slope (generic term)|incline (generic term)|pitch (generic term)
+(verb)|progress (generic term)|come on (generic term)|come along (generic term)|advance (generic term)|get on (generic term)|get along (generic term)|shape up (generic term)
+(verb)|rise|go up|grow (generic term)
+climb-down|1
+(noun)|withdrawal|backdown|retraction (generic term)|abjuration (generic term)|recantation (generic term)
+climb down|1
+(verb)|alight|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+climb on|1
+(verb)|hop on|mount|mount up|get on|jump on|bestride|move (generic term)|hop out (antonym)
+climb up|2
+(verb)|climb|mount|go up|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|climb on (related term)|climb down (related term)
+(verb)|rise|jump|change (generic term)
+climbable|2
+(adj)|ascendable|ascendible|scalable (similar term)
+(adj)|surmountable|passable (similar term)
+climber|5
+(noun)|vine (generic term)
+(noun)|social climber|upstart (generic term)|parvenu (generic term)|nouveau-riche (generic term)|arriviste (generic term)
+(noun)|mounter|ascender (generic term)
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|crampon|crampoon|climbing iron|spike (generic term)
+climbing|1
+(noun)|climb|mounting|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+climbing bird's nest fern|1
+(noun)|Microsorium punctatum|fern (generic term)
+climbing bittersweet|1
+(noun)|bittersweet|American bittersweet|false bittersweet|staff vine|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+climbing boneset|1
+(noun)|climbing hempweed|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine (generic term)
+climbing corydalis|1
+(noun)|Corydalis claviculata|Fumaria claviculata|vine (generic term)
+climbing fern|1
+(noun)|fern (generic term)
+climbing frame|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+climbing fumitory|1
+(noun)|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine (generic term)
+climbing hemp-vine|1
+(noun)|climbing hempweed|climbing boneset|wild climbing hempweed|Mikania scandens|vine (generic term)
+climbing hempweed|1
+(noun)|climbing boneset|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine (generic term)
+climbing hydrangea|3
+(noun)|Schizophragma hydrangeoides|shrub (generic term)|bush (generic term)
+(noun)|Hydrangea petiolaris|hydrangea (generic term)
+(noun)|Hydrangea anomala|hydrangea (generic term)
+climbing iron|1
+(noun)|crampon|crampoon|climber|spike (generic term)
+climbing lily|1
+(noun)|gloriosa|glory lily|creeping lily|Gloriosa superba|poisonous plant (generic term)
+climbing maidenhair|1
+(noun)|climbing maidenhair fern|snake fern|Lygodium microphyllum|climbing fern (generic term)
+climbing maidenhair fern|1
+(noun)|climbing maidenhair|snake fern|Lygodium microphyllum|climbing fern (generic term)
+climbing nightshade|1
+(noun)|bittersweet|bittersweet nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+climbing onion|1
+(noun)|Bowiea volubilis|herb (generic term)|herbaceous plant (generic term)
+climbing perch|1
+(noun)|Anabas testudineus|A. testudineus|fish (generic term)
+climbing salamander|1
+(noun)|salamander (generic term)
+clime|1
+(noun)|climate|environmental condition (generic term)
+clinch|10
+(noun)|maneuver (generic term)|manoeuvre (generic term)|evasive action (generic term)
+(noun)|clench|noose (generic term)|running noose (generic term)|slip noose (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|clamp|holding device (generic term)
+(noun)|hug|squeeze|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(verb)|hold (generic term)|take hold (generic term)
+(verb)|clench|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|embrace (generic term)|hug (generic term)|bosom (generic term)|squeeze (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|settle (generic term)|square off (generic term)|square up (generic term)|determine (generic term)
+clinch river|1
+(noun)|Clinch River|river (generic term)
+clinched|1
+(adj)|clenched|tight (similar term)
+clincher|3
+(noun)|determiner|determining factor|argument (generic term)|statement (generic term)
+(noun)|decisive factor|determinant (generic term)|determiner (generic term)|determinative (generic term)|determining factor (generic term)|causal factor (generic term)
+(noun)|tool (generic term)
+clincher-built|1
+(adj)|clinker-built|lap-jointed (similar term)|lap-strake (similar term)|lap-straked (similar term)|lap-streak (similar term)|lap-streaked (similar term)|overlapping (similar term)|carvel-built (antonym)
+cline|1
+(noun)|Cline|Martin Cline|geneticist (generic term)
+cling|3
+(noun)|clingstone|edible fruit (generic term)
+(verb)|cleave|adhere|stick|cohere|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|hang|grasp (generic term)|hold on (generic term)
+cling film|1
+(noun)|clingfilm|Saran Wrap|plastic wrap (generic term)
+cling to|1
+(verb)|hold close|hold tight|clutch|hold (generic term)|take hold (generic term)
+clingfilm|1
+(noun)|cling film|Saran Wrap|plastic wrap (generic term)
+clingfish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+clingstone|1
+(noun)|cling|edible fruit (generic term)
+clinic|3
+(noun)|medical institution (generic term)
+(noun)|session (generic term)
+(noun)|medical building (generic term)|health facility (generic term)|healthcare facility (generic term)
+clinical|2
+(adj)|medical institution (related term)
+(adj)|objective (similar term)|nonsubjective (similar term)
+clinical anatomy|1
+(noun)|applied anatomy|anatomy (generic term)|general anatomy (generic term)
+clinical depression|1
+(noun)|depressive disorder|depression|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+clinical neurology|1
+(noun)|neurology|medicine (generic term)|medical specialty (generic term)
+clinical psychologist|1
+(noun)|psychotherapist|therapist (generic term)|healer (generic term)
+clinical psychology|1
+(noun)|psychotherapy (generic term)|psychotherapeutics (generic term)|mental hygiene (generic term)
+clinical test|1
+(noun)|clinical trial|test (generic term)|trial (generic term)|run (generic term)
+clinical thermometer|1
+(noun)|mercury-in-glass clinical thermometer|mercury thermometer (generic term)|mercury-in-glass thermometer (generic term)
+clinical trial|1
+(noun)|clinical test|test (generic term)|trial (generic term)|run (generic term)
+clinician|1
+(noun)|practitioner (generic term)|practician (generic term)
+clinid|1
+(noun)|clinid fish|blennioid fish (generic term)|blennioid (generic term)
+clinid fish|1
+(noun)|clinid|blennioid fish (generic term)|blennioid (generic term)
+clinidae|1
+(noun)|Clinidae|family Clinidae|fish family (generic term)
+clink|4
+(noun)|chink|click|sound (generic term)
+(noun)|jail|jailhouse|gaol|slammer|poky|pokey|correctional institution (generic term)
+(verb)|sound (generic term)
+(verb)|tinkle|tink|chink|sound (generic term)|go (generic term)
+clinker|4
+(noun)|cinder|fragment (generic term)
+(noun)|clinker brick|brick (generic term)
+(verb)|clean out (generic term)|clear out (generic term)
+(verb)|change (generic term)
+clinker-built|1
+(adj)|clincher-built|lap-jointed (similar term)|lap-strake (similar term)|lap-straked (similar term)|lap-streak (similar term)|lap-streaked (similar term)|overlapping (similar term)|carvel-built (antonym)
+clinker block|1
+(noun)|cinder block|breeze block|building block (generic term)
+clinker brick|1
+(noun)|clinker|brick (generic term)
+clinking|1
+(adj)|reverberant (similar term)|ringing (similar term)
+clinocephalism|1
+(noun)|clinocephaly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+clinocephaly|1
+(noun)|clinocephalism|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+clinodactyly|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+clinometer|1
+(noun)|inclinometer|surveying instrument (generic term)|surveyor's instrument (generic term)
+clinopodium|1
+(noun)|Clinopodium|genus Clinopodium|asterid dicot genus (generic term)
+clinopodium grandiflorum|1
+(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint (generic term)
+clinopodium vulgare|1
+(noun)|wild basil|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb (generic term)|herbaceous plant (generic term)
+clinoril|1
+(noun)|sulindac|Clinoril|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+clinquant|1
+(adj)|tinseled|tinselly|adorned (similar term)|decorated (similar term)
+clinton|4
+(noun)|Clinton|Hilary Clinton|Hilary Rodham Clinton|senator (generic term)
+(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Clinton|DeWitt Clinton|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Clinton|town (generic term)
+clinton's lily|1
+(noun)|clintonia|Clinton's lily|liliaceous plant (generic term)
+clinton administration|1
+(noun)|Clinton administration|executive (generic term)
+clintonia|1
+(noun)|Clinton's lily|liliaceous plant (generic term)
+clintonia andrewsiana|1
+(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia (generic term)|Clinton's lily (generic term)
+clintonia borealis|1
+(noun)|yellow clintonia|heal all|Clintonia borealis|clintonia (generic term)|Clinton's lily (generic term)
+clintonia uniflora|1
+(noun)|queen's cup|bride's bonnet|Clintonia uniflora|clintonia (generic term)|Clinton's lily (generic term)
+clio|1
+(noun)|Clio|Muse (generic term)
+clioquinol|1
+(noun)|iodochlorhydroxyquin|Clioquinol|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+clip|11
+(noun)|cartridge holder|cartridge clip|magazine|supply chamber (generic term)
+(noun)|time|case (generic term)|instance (generic term)|example (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|jewelry (generic term)|jewellery (generic term)
+(noun)|clipping|snip|cut (generic term)|cutting (generic term)|cutting off (generic term)
+(noun)|blow (generic term)
+(verb)|nip|nip off|snip|snip off|cut (generic term)
+(verb)|trot|jog|run (generic term)
+(verb)|attach (generic term)|unclip (antonym)
+(verb)|snip|crop|trim|lop|dress|prune|cut back|thin out (generic term)
+(verb)|curtail|cut short|shorten (generic term)
+clip-clop|1
+(noun)|clippety-clop|clop|clopping|clunking|clumping|sound (generic term)
+clip-on|2
+(adj)|attachable (similar term)
+(noun)|device (generic term)
+clip art|1
+(noun)|computer graphics (generic term)
+clip artist|1
+(noun)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+clip joint|1
+(noun)|spot (generic term)
+clip lead|1
+(noun)|jumper cable (generic term)|jumper lead (generic term)|lead (generic term)|booster cable (generic term)
+clipboard|1
+(noun)|writing board (generic term)
+clipped|2
+(adj)|trimmed (similar term)|cut (similar term)
+(adj)|short (similar term)
+clipper|4
+(noun)|limiter|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(noun)|clipper ship|sailing vessel (generic term)|sailing ship (generic term)
+(noun)|shears (generic term)
+(noun)|scissors (generic term)|pair of scissors (generic term)
+clipper ship|1
+(noun)|clipper|sailing vessel (generic term)|sailing ship (generic term)
+clippety-clop|1
+(noun)|clip-clop|clop|clopping|clunking|clumping|sound (generic term)
+clipping|3
+(noun)|newspaper clipping|press clipping|cutting|press cutting|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|trim|trimming|cut (generic term)|cutting (generic term)|cutting off (generic term)
+(noun)|clip|snip|cut (generic term)|cutting (generic term)|cutting off (generic term)
+clique|1
+(noun)|coterie|ingroup|inner circle|pack|camp|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+cliquish|1
+(adj)|clannish|clubby|snobbish|snobby|private (similar term)
+cliquishly|1
+(adv)|clannishly
+cliquishness|1
+(noun)|clannishness|exclusiveness|snobbery (generic term)|snobbism (generic term)|snobbishness (generic term)
+clit|1
+(noun)|clitoris|button|erectile organ (generic term)
+clitocybe|1
+(noun)|Clitocybe|genus Clitocybe|fungus genus (generic term)
+clitocybe clavipes|1
+(noun)|Clitocybe clavipes|agaric (generic term)
+clitocybe dealbata|1
+(noun)|Clitocybe dealbata|agaric (generic term)
+clitocybe inornata|1
+(noun)|Clitocybe inornata|agaric (generic term)
+clitocybe irina|1
+(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric (generic term)
+clitocybe nuda|1
+(noun)|blewits|Clitocybe nuda|agaric (generic term)
+clitocybe robusta|1
+(noun)|Clitocybe robusta|Clytocybe alba|agaric (generic term)
+clitocybe subconnexa|1
+(noun)|Clitocybe subconnexa|agaric (generic term)
+clitoral|1
+(adj)|clitoric|erectile organ (related term)
+clitoral vein|1
+(noun)|vena clitoridis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+clitoria|1
+(noun)|Clitoria|genus Clitoria|rosid dicot genus (generic term)
+clitoria mariana|1
+(noun)|butterfly pea|Clitoria mariana|vine (generic term)
+clitoria turnatea|1
+(noun)|blue pea|butterfly pea|Clitoria turnatea|vine (generic term)
+clitoric|1
+(adj)|clitoral|erectile organ (related term)
+clitoridectomy|1
+(noun)|female circumcision|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+clitoris|1
+(noun)|clit|button|erectile organ (generic term)
+clitter|1
+(verb)|stridulate|make noise (generic term)|resound (generic term)|noise (generic term)
+clive|1
+(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+clive sinclair|1
+(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+clive staples lewis|1
+(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer (generic term)|author (generic term)
+clivers|1
+(noun)|cleavers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw (generic term)
+cloaca|1
+(noun)|sewer|sewerage|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+cloak|3
+(noun)|covering (generic term)
+(noun)|overgarment (generic term)|outer garment (generic term)
+(verb)|dissemble|mask|disguise (generic term)
+cloak-and-dagger|1
+(adj)|clandestine|hole-and-corner|hugger-mugger|hush-hush|secret|surreptitious|undercover|underground|covert (similar term)
+cloaked|2
+(adj)|disguised|masked|covert (similar term)
+(adj)|clothed|draped|mantled|wrapped|covered (similar term)
+cloakmaker|1
+(noun)|furrier|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+cloakroom|2
+(noun)|lounge (generic term)|waiting room (generic term)|waiting area (generic term)
+(noun)|coatroom|room (generic term)
+clobber|3
+(noun)|stuff|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+(verb)|baste|batter|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|cream|bat|drub|thrash|lick|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+cloche|2
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|millinery (generic term)|woman's hat (generic term)
+clock|2
+(noun)|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+(verb)|time|quantify (generic term)|measure (generic term)
+clock-watching|1
+(noun)|attention (generic term)|attending (generic term)
+clock dial|1
+(noun)|clock face|face (generic term)
+clock face|1
+(noun)|clock dial|face (generic term)
+clock golf|1
+(noun)|golf (generic term)|golf game (generic term)
+clock in|1
+(verb)|punch in|clock on|record (generic term)|enter (generic term)|put down (generic term)|punch out (antonym)|clock out (antonym)
+clock off|1
+(verb)|clock out|punch out|report (generic term)|punch in (antonym)|clock in (antonym)
+clock on|1
+(verb)|clock in|punch in|record (generic term)|enter (generic term)|put down (generic term)|punch out (antonym)|clock out (antonym)
+clock out|1
+(verb)|punch out|clock off|report (generic term)|punch in (antonym)|clock in (antonym)
+clock pendulum|1
+(noun)|physical pendulum (generic term)|compound pendulum (generic term)
+clock radio|1
+(noun)|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+clock time|1
+(noun)|time|reading (generic term)|meter reading (generic term)|indication (generic term)
+clock tower|1
+(noun)|tower (generic term)
+clock up|1
+(verb)|log up|record (generic term)|enter (generic term)|put down (generic term)
+clock watcher|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+clocking|1
+(noun)|duration (generic term)|continuance (generic term)
+clockmaker|1
+(noun)|clocksmith|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+clocks|1
+(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+clocksmith|1
+(noun)|clockmaker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+clockwise|2
+(adj)|dextrorotary (similar term)|dextrorotatory (similar term)|right-handed (similar term)|dextral (related term)|counterclockwise (antonym)
+(adv)|counterclockwise (antonym)
+clockwise rotation|1
+(noun)|dextrorotation|rotation (generic term)|revolution (generic term)|gyration (generic term)|levorotation (antonym)
+clockwork|1
+(noun)|mechanism (generic term)
+clockwork universe|1
+(noun)|Weltanschauung (generic term)|world view (generic term)
+clod|2
+(noun)|ball|glob|lump|clump|chunk|agglomeration (generic term)
+(noun)|lout|stumblebum|goon|oaf|lubber|lummox|lump|gawk|clumsy person (generic term)
+cloddish|1
+(adj)|doltish|stupid (similar term)
+clodhopper|1
+(noun)|brogan|brogue|work shoe|shoe (generic term)
+clofibrate|1
+(noun)|Atromid-S|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+clog|9
+(noun)|geta|patten|sabot|footwear (generic term)|footgear (generic term)
+(noun)|hindrance (generic term)|hinderance (generic term)|hitch (generic term)|preventive (generic term)|preventative (generic term)|encumbrance (generic term)|incumbrance (generic term)|interference (generic term)
+(noun)|clog dance|clog dancing|tap dancing (generic term)|tap dance (generic term)
+(verb)|choke off|clog up|back up|congest|choke|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|restrain (generic term)|encumber (generic term)|cumber (generic term)|constrain (generic term)
+(verb)|constipate|slow (generic term)|slow down (generic term)|slow up (generic term)
+(verb)|clot|coalesce (generic term)
+(verb)|overload|fill (generic term)|fill up (generic term)|make full (generic term)
+clog dance|1
+(noun)|clog dancing|clog|tap dancing (generic term)|tap dance (generic term)
+clog dancer|1
+(noun)|dancer (generic term)|social dancer (generic term)
+clog dancing|1
+(noun)|clog dance|clog|tap dancing (generic term)|tap dance (generic term)
+clog up|1
+(verb)|clog|choke off|back up|congest|choke|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+clogged|3
+(adj)|clotted|thick (similar term)
+(adj)|choked|obstructed (similar term)
+(adj)|encumbered (similar term)
+clogging|1
+(adj)|hindering|impeding|obstructive|preventive (similar term)|preventative (similar term)
+cloggy|1
+(adj)|clayey|heavy|compact (similar term)
+cloisonne|2
+(adj)|champleve|adorned (similar term)|decorated (similar term)
+(noun)|enamelware (generic term)
+cloister|4
+(noun)|religious residence|residence (generic term)
+(noun)|court (generic term)|courtyard (generic term)
+(verb)|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+(verb)|isolate (generic term)|insulate (generic term)
+cloistered|2
+(adj)|cloistral|conventual|monastic|monastical|unworldly (similar term)
+(adj)|reclusive|secluded|sequestered|private (similar term)
+cloistral|1
+(adj)|cloistered|conventual|monastic|monastical|unworldly (similar term)
+clomid|1
+(noun)|clomiphene|clomiphene citrate|Clomid|fertility drug (generic term)
+clomiphene|1
+(noun)|clomiphene citrate|Clomid|fertility drug (generic term)
+clomiphene citrate|1
+(noun)|clomiphene|Clomid|fertility drug (generic term)
+clomipramine|1
+(noun)|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+clomp|1
+(verb)|clump|walk (generic term)
+clon|1
+(noun)|clone|organism (generic term)|being (generic term)
+clonal|1
+(adj)|organism|being (related term)
+clone|4
+(noun)|ringer|dead ringer|double (generic term)|image (generic term)|look-alike (generic term)
+(noun)|clon|organism (generic term)|being (generic term)
+(noun)|knockoff|copy (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+clonic|1
+(adj)|convulsion (related term)
+clonidine|1
+(noun)|Catapres|antihypertensive (generic term)|antihypertensive drug (generic term)
+cloning|1
+(noun)|biological research (generic term)
+clonus|1
+(noun)|convulsion (generic term)
+clop|2
+(noun)|clip-clop|clippety-clop|clopping|clunking|clumping|sound (generic term)
+(verb)|clump|clunk|plunk|sound (generic term)|go (generic term)
+clopidogrel bisulfate|1
+(noun)|Plavix|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+clopping|1
+(noun)|clip-clop|clippety-clop|clop|clunking|clumping|sound (generic term)
+clorox|1
+(noun)|Clorox|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)
+close|36
+(adj)|adjacent (similar term)|next (similar term)|side by side (similar term)|ambient (similar term)|appressed (similar term)|adpressed (similar term)|approximate (similar term)|close together (similar term)|at hand (similar term)|close at hand (similar term)|imminent (similar term)|impendent (similar term)|impending (similar term)|at hand (similar term)|close at hand (similar term)|close-hauled (similar term)|close-set (similar term)|close set (similar term)|contiguous (similar term)|immediate (similar term)|encompassing (similar term)|surrounding (similar term)|circumferent (similar term)|enveloping (similar term)|hand-to-hand (similar term)|juxtaposed (similar term)|nestled (similar term)|snuggled (similar term)|proximate (similar term)|scalelike (similar term)|walk-to (similar term)|walking (similar term)|distant (antonym)
+(adj)|approximate (similar term)|near (similar term)|boon (similar term)|chummy (similar term)|buddy-buddy (similar term)|thick (similar term)|close-knit (similar term)|closely knit (similar term)|confidential (similar term)|cozy (similar term)|dear (similar term)|good (similar term)|near (similar term)|familiar (similar term)|intimate (similar term)|intimate (similar term)|distant (antonym)
+(adj)|near|nigh|adjacent (similar term)|nearby (similar term)|neighboring (similar term)|neighbouring (similar term)|warm (similar term)|hot (similar term)|far (antonym)
+(adj)|careful (similar term)
+(adj)|faithful|accurate (similar term)
+(adj)|tight|equal (similar term)
+(adj)|confining|confined (similar term)
+(adj)|airless|stuffy|unaired|unventilated (similar term)
+(adj)|tight|fine (similar term)
+(adj)|restrained (similar term)
+(adj)|private (similar term)
+(adj)|snug|close-fitting|tight (similar term)
+(adj)|short (similar term)
+(adj)|cheeseparing|near|penny-pinching|skinny|stingy (similar term)|ungenerous (similar term)
+(adj)|closelipped|closemouthed|secretive|tightlipped|uncommunicative (similar term)|incommunicative (similar term)
+(noun)|stopping point|finale|finis|finish|last|conclusion|end (generic term)|ending (generic term)
+(noun)|conclusion|end|closing|ending|section (generic term)|subdivision (generic term)
+(noun)|finale|closing curtain|finis|finish (generic term)|finishing (generic term)
+(verb)|close up|fold|shut down|close down|open (antonym)
+(verb)|end (generic term)|terminate (generic term)
+(verb)|shut|shut up (related term)|shut in (related term)|open (antonym)
+(verb)|barricade (generic term)|block (generic term)|blockade (generic term)|stop (generic term)|block off (generic term)|block up (generic term)|bar (generic term)
+(verb)|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+(verb)|conclude|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|shut|change state (generic term)|turn (generic term)|open (antonym)
+(verb)|come together|move (generic term)
+(verb)|close up|join (generic term)|bring together (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|prosecute (generic term)|engage (generic term)|pursue (generic term)
+(verb)|trade (generic term)
+(verb)|end (generic term)|terminate (generic term)|open (antonym)
+(verb)|move (generic term)
+(verb)|fill up|fill (generic term)
+(verb)|complete (generic term)|finish (generic term)
+(adv)|near|nigh
+(adv)|closely|tight
+close-fitting|1
+(adj)|close|snug|tight (similar term)
+close-grained|1
+(adj)|fine-grained|fine (similar term)
+close-hauled|1
+(adj)|close (similar term)
+close-knit|1
+(adj)|closely knit|close (similar term)
+close-minded|1
+(adj)|closed-minded|narrow-minded (similar term)|narrow (similar term)
+close-order drill|1
+(noun)|military drill (generic term)
+close-packed|1
+(adj)|compact (similar term)
+close-quarter fighting|1
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+close-set|1
+(adj)|close set|close (similar term)
+close at hand|2
+(adj)|at hand|close (similar term)
+(adj)|at hand|imminent|impendent|impending|close (similar term)
+close call|1
+(noun)|close shave|squeak|squeaker|narrow escape|accomplishment (generic term)|achievement (generic term)
+close corporation|1
+(noun)|closed corporation|private corporation|privately held corporation|corporation (generic term)|corp (generic term)
+close down|1
+(verb)|close up|close|fold|shut down|open (antonym)
+close in|2
+(verb)|draw in|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|enclose|inclose|shut in|surround (generic term)|skirt (generic term)|border (generic term)
+close off|3
+(verb)|shut off|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|shut off|separate (generic term)|divide (generic term)
+(verb)|shut off|block off|barricade (generic term)|block (generic term)|blockade (generic term)|stop (generic term)|block off (generic term)|block up (generic term)|bar (generic term)
+close order|1
+(noun)|military formation (generic term)
+close out|3
+(verb)|preclude|rule out|obviate (generic term)|rid of (generic term)|eliminate (generic term)
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|end (generic term)|terminate (generic term)
+close quarters|1
+(noun)|site (generic term)|situation (generic term)
+close set|1
+(adj)|close-set|close (similar term)
+close shave|1
+(noun)|close call|squeak|squeaker|narrow escape|accomplishment (generic term)|achievement (generic term)
+close support|1
+(noun)|support (generic term)|reinforcement (generic term)|reenforcement (generic term)
+close supporting fire|1
+(noun)|supporting fire (generic term)
+close to|1
+(adv)|approximately|about|just about|some|roughly|more or less|around|or so
+close together|1
+(adj)|approximate|close (similar term)
+close up|5
+(verb)|close|fold|shut down|close down|open (antonym)
+(verb)|obstruct|obturate|impede|occlude|jam|block|impede (generic term)|hinder (generic term)|free (antonym)
+(verb)|close|join (generic term)|bring together (generic term)
+(verb)|clam up|dummy up|shut up|belt up|button up|be quiet|keep mum|open up (antonym)
+(adv)|at close range
+closed|9
+(adj)|blocked (similar term)|out of use (similar term)|drawn (similar term)|stoppered (similar term)|nonopening (similar term)|obstructed (related term)|sealed (related term)|shut (related term)|unopen (related term)|closed (related term)|open (antonym)
+(adj)|open (antonym)
+(adj)|shut|unopen|closed (related term)|open (antonym)
+(adj)|shut|blinking (similar term)|winking (similar term)|compressed (similar term)|tight (similar term)|squinched (similar term)|squinting (similar term)|open (antonym)
+(adj)|union (similar term)
+(adj)|shuttered (similar term)
+(adj)|restricted (similar term)
+(adj)|unsympathetic|unreceptive (similar term)
+(adj)|closed in|enclosed (similar term)
+closed-chain|1
+(adj)|closed-ring|cyclic (similar term)
+closed-circuit|1
+(adj)|circuit|electrical circuit|electric circuit (related term)
+closed-circuit television|1
+(noun)|television (generic term)|television system (generic term)
+closed-class word|1
+(noun)|function word|word (generic term)
+closed-door|1
+(adj)|private (similar term)
+closed-end fund|1
+(noun)|closed-end investment company|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+closed-end investment company|1
+(noun)|closed-end fund|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+closed-heart surgery|1
+(noun)|heart surgery (generic term)
+closed-loop system|1
+(noun)|closed loop|control system (generic term)
+closed-minded|1
+(adj)|close-minded|narrow-minded (similar term)|narrow (similar term)
+closed-ring|1
+(adj)|closed-chain|cyclic (similar term)
+closed book|1
+(noun)|mystery|enigma|secret|perplexity (generic term)
+closed chain|1
+(noun)|ring|chain (generic term)|chemical chain (generic term)|open chain (antonym)
+closed circuit|1
+(noun)|loop|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)|open circuit (antonym)
+closed corporation|1
+(noun)|close corporation|private corporation|privately held corporation|corporation (generic term)|corp (generic term)
+closed couplet|1
+(noun)|couplet (generic term)
+closed curve|1
+(noun)|curve (generic term)|curved shape (generic term)
+closed fracture|1
+(noun)|simple fracture|fracture (generic term)|break (generic term)
+closed gentian|2
+(noun)|blind gentian|Gentiana clausa|gentian (generic term)
+(noun)|blind gentian|bottle gentian|Gentiana andrewsii|gentian (generic term)
+closed in|1
+(adj)|closed|enclosed (similar term)
+closed interval|1
+(noun)|bounded interval|interval (generic term)|open interval (antonym)
+closed loop|1
+(noun)|closed-loop system|control system (generic term)
+closed primary|1
+(noun)|direct primary (generic term)
+closed session|1
+(noun)|executive session|session (generic term)
+closed shop|1
+(noun)|company (generic term)
+closed universe|1
+(noun)|universe (generic term)|existence (generic term)|creation (generic term)|world (generic term)|cosmos (generic term)|macrocosm (generic term)
+closedown|1
+(noun)|closure|closing|shutdown|termination (generic term)|ending (generic term)|conclusion (generic term)
+closefisted|1
+(adj)|hardfisted|tightfisted|stingy (similar term)|ungenerous (similar term)
+closelipped|1
+(adj)|close|closemouthed|secretive|tightlipped|uncommunicative (similar term)|incommunicative (similar term)
+closely|2
+(adv)|intimately|nearly
+(adv)|close|tight
+closely-held|1
+(adj)|owned (similar term)
+closely held corporation|1
+(noun)|corporation (generic term)|corp (generic term)
+closely knit|1
+(adj)|close-knit|close (similar term)
+closemouthed|1
+(adj)|close|closelipped|secretive|tightlipped|uncommunicative (similar term)|incommunicative (similar term)
+closeness|6
+(noun)|intimacy|belonging (generic term)
+(noun)|stuffiness|quality (generic term)
+(noun)|nearness|distance (generic term)|farness (antonym)
+(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|stinginess (generic term)
+(noun)|secretiveness|unsociability (generic term)|unsociableness (generic term)|openness (antonym)
+(noun)|familiarity|intimacy|friendliness (generic term)
+closeout|1
+(noun)|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+closer|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|finisher|reliever (generic term)|relief pitcher (generic term)|fireman (generic term)
+(adv)|nearer|nigher
+closest|1
+(adv)|nearest|nighest
+closet|5
+(noun)|cupboard|storage space (generic term)
+(noun)|water closet|W.C.|loo|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+(noun)|wardrobe|press|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|room (generic term)
+(verb)|confine (generic term)
+closet auger|1
+(noun)|snake (generic term)
+closet drama|1
+(noun)|drama (generic term)
+closet queen|1
+(noun)|gay man (generic term)|shirtlifter (generic term)
+closeup|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+closeup lens|1
+(noun)|camera lens (generic term)|optical lens (generic term)
+closing|6
+(adj)|concluding (similar term)|final (similar term)|last (similar term)|terminal (similar term)|terminative (similar term)|year-end (similar term)|opening (antonym)
+(noun)|shutting|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|opening (antonym)
+(noun)|conclusion|end|close|ending|section (generic term)|subdivision (generic term)
+(noun)|closure|approach (generic term)|approaching (generic term)|coming (generic term)
+(noun)|closure|closedown|shutdown|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|completion|culmination|windup|mop up|termination (generic term)|ending (generic term)|conclusion (generic term)
+closing curtain|1
+(noun)|finale|close|finis|finish (generic term)|finishing (generic term)
+closing off|1
+(noun)|isolation|separation (generic term)
+closing price|1
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+closing time|1
+(noun)|hour (generic term)|time of day (generic term)
+clostridia|1
+(noun)|clostridium|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+clostridial myonecrosis|1
+(noun)|gas gangrene|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+clostridium|1
+(noun)|clostridia|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+clostridium botulinum|1
+(noun)|botulinus|botulinum|Clostridium botulinum|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+clostridium perfringens|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+clostridium perfringens epsilon toxin|1
+(noun)|epsilon toxin|Clostridium perfringens epsilon toxin|bacterial toxin (generic term)
+closure|8
+(noun)|closing|approach (generic term)|approaching (generic term)|coming (generic term)
+(noun)|cloture|gag rule|gag law|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+(noun)|law of closure|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+(noun)|settlement|resolution|decision making (generic term)|deciding (generic term)
+(noun)|blockage|block|occlusion|stop|stoppage|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|blockage|occlusion|obstruction (generic term)
+(noun)|closedown|closing|shutdown|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|cloture|end (generic term)|terminate (generic term)
+closure by compartment|1
+(noun)|guillotine|closure (generic term)|cloture (generic term)|gag rule (generic term)|gag law (generic term)
+clot|5
+(noun)|coagulum|ball (generic term)|clod (generic term)|glob (generic term)|lump (generic term)|clump (generic term)|chunk (generic term)
+(verb)|coagulate|change state (generic term)|turn (generic term)
+(verb)|coagulate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|curdle|clabber|change state (generic term)|turn (generic term)|homogenize (antonym)|homogenise (antonym)|homogenise (antonym)
+(verb)|clog|coalesce (generic term)
+clot buster|1
+(noun)|thrombolytic|thrombolytic agent|pharmaceutical (generic term)|pharmaceutic (generic term)
+clotbur|1
+(noun)|burdock|subshrub (generic term)|suffrutex (generic term)
+cloth|1
+(noun)|fabric|material|textile|artifact (generic term)|artefact (generic term)
+cloth cap|1
+(noun)|flat cap|cap (generic term)
+cloth covering|1
+(noun)|covering (generic term)
+clothe|2
+(verb)|dress|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+(verb)|invest|adorn|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+clothed|2
+(adj)|clad|adorned (similar term)|bedecked (similar term)|decked (similar term)|decked out (similar term)|appareled (similar term)|attired (similar term)|dressed (similar term)|garbed (similar term)|garmented (similar term)|habilimented (similar term)|robed (similar term)|arrayed (similar term)|panoplied (similar term)|black (similar term)|breeched (similar term)|pantalooned (similar term)|trousered (similar term)|bundled-up (similar term)|caparisoned (similar term)|cassocked (similar term)|coated (similar term)|costumed (similar term)|cowled (similar term)|dighted (similar term)|dressed (similar term)|dressed-up (similar term)|dressed to the nines (similar term)|dressed to kill (similar term)|dolled up (similar term)|spruced up (similar term)|spiffed up (similar term)|togged up (similar term)|gowned (similar term)|habited (similar term)|heavy-coated (similar term)|overdressed (similar term)|petticoated (similar term)|red-coated (similar term)|lobster-backed (similar term)|suited (similar term)|surpliced (similar term)|togged (similar term)|turned out (similar term)|tuxedoed (similar term)|underdressed (similar term)|uniformed (similar term)|vestmented (similar term)|adorned (related term)|decorated (related term)|unclothed (antonym)
+(adj)|cloaked|draped|mantled|wrapped|covered (similar term)
+clothes|1
+(noun)|apparel|wearing apparel|dress|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+clothes basket|1
+(noun)|clothes hamper|laundry basket|voider|hamper (generic term)
+clothes closet|1
+(noun)|clothespress|wardrobe (generic term)|closet (generic term)|press (generic term)
+clothes designer|1
+(noun)|couturier|fashion designer|designer|creator (generic term)
+clothes drier|1
+(noun)|clothes dryer|dryer (generic term)|drier (generic term)|white goods (generic term)
+clothes dryer|1
+(noun)|clothes drier|dryer (generic term)|drier (generic term)|white goods (generic term)
+clothes hamper|1
+(noun)|laundry basket|clothes basket|voider|hamper (generic term)
+clothes hanger|1
+(noun)|coat hanger|dress hanger|hanger (generic term)
+clothes moth|1
+(noun)|tineid (generic term)|tineid moth (generic term)
+clothes peg|1
+(noun)|clothespin|clothes pin|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+clothes pin|1
+(noun)|clothespin|clothes peg|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+clothes tree|1
+(noun)|coat tree|coat stand|pole (generic term)
+clothesbrush|1
+(noun)|brush (generic term)
+clotheshorse|2
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|dandy|dude|fop|gallant|sheik|beau|swell|fashion plate|man (generic term)|adult male (generic term)
+clothesless|1
+(adj)|garmentless|raimentless|unclothed (similar term)
+clothesline|1
+(noun)|cord (generic term)
+clothespin|1
+(noun)|clothes pin|clothes peg|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+clothespress|1
+(noun)|clothes closet|wardrobe (generic term)|closet (generic term)|press (generic term)
+clothier|1
+(noun)|haberdasher|merchant (generic term)|merchandiser (generic term)
+clothing|1
+(noun)|article of clothing|vesture|wear|wearable|habiliment|covering (generic term)|consumer goods (generic term)
+clothing store|1
+(noun)|haberdashery|haberdashery store|mens store|shop (generic term)|store (generic term)
+clotho|1
+(noun)|Clotho|Greek deity (generic term)
+clotted|1
+(adj)|clogged|thick (similar term)
+clotted cream|1
+(noun)|Devonshire cream|cream (generic term)
+clotting|1
+(noun)|curdling|coagulation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+clotting factor|1
+(noun)|coagulation factor|plasma protein (generic term)
+clotting time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+cloture|2
+(noun)|closure|gag rule|gag law|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+(verb)|closure|end (generic term)|terminate (generic term)
+cloud|13
+(noun)|physical phenomenon (generic term)
+(noun)|atmospheric phenomenon (generic term)
+(noun)|unreality (generic term)|irreality (generic term)
+(noun)|gloom (generic term)|gloominess (generic term)|glumness (generic term)
+(noun)|suspicion (generic term)
+(noun)|swarm|animal group (generic term)
+(verb)|overcast|darken (generic term)|cloud over (related term)|cloud up (related term)|clear up (antonym)
+(verb)|obscure|befog|becloud|obnubilate|haze over|fog|mist|hide (generic term)|conceal (generic term)
+(verb)|billow (generic term)|wallow (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|defile|sully|corrupt|taint|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|mottle|dapple|spot (generic term)
+(verb)|dull (generic term)
+cloud-covered|1
+(adj)|clouded|overcast|sunless|cloudy (similar term)
+cloud-cuckoo-land|1
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+cloud bank|1
+(noun)|cloud (generic term)
+cloud chamber|1
+(noun)|Wilson cloud chamber|apparatus (generic term)|setup (generic term)
+cloud cover|1
+(noun)|cloudiness|overcast|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+cloud grass|1
+(noun)|Agrostis nebulosa|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+cloud nine|1
+(noun)|bliss|blissfulness|seventh heaven|walking on air|elation (generic term)
+cloud over|2
+(verb)|overcloud|cloud up|darken (generic term)
+(verb)|change state (generic term)|turn (generic term)
+cloud seeder|1
+(noun)|seeder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+cloud up|1
+(verb)|overcloud|cloud over|darken (generic term)
+cloudberry|1
+(noun)|dwarf mulberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+cloudburst|1
+(noun)|downpour|deluge|waterspout|torrent|pelter|soaker|rain (generic term)|rainfall (generic term)
+clouded|4
+(adj)|troubled (similar term)
+(adj)|cloud-covered|overcast|sunless|cloudy (similar term)
+(adj)|confused (similar term)
+(adj)|blurred|unclear (similar term)
+cloudiness|3
+(noun)|murkiness|muddiness|opacity (generic term)|opaqueness (generic term)
+(noun)|cloud cover|overcast|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+(noun)|overcast|semidarkness (generic term)
+clouding|1
+(noun)|clouding up|vaporization (generic term)|vaporisation (generic term)|vapor (generic term)|vapour (generic term)|evaporation (generic term)
+clouding up|1
+(noun)|clouding|vaporization (generic term)|vaporisation (generic term)|vapor (generic term)|vapour (generic term)|evaporation (generic term)
+cloudless|1
+(adj)|unclouded|clear (similar term)
+cloudlessness|1
+(noun)|sunniness (generic term)
+cloudlike|1
+(adj)|nebular|cloudy (similar term)
+cloudy|3
+(adj)|nebulose|nebulous|indistinct (similar term)
+(adj)|muddy|mirky|murky|turbid|opaque (similar term)
+(adj)|brumous (similar term)|foggy (similar term)|hazy (similar term)|misty (similar term)|cloud-covered (similar term)|clouded (similar term)|overcast (similar term)|sunless (similar term)|cloudlike (similar term)|nebular (similar term)|dull (similar term)|grey (similar term)|gray (similar term)|leaden (similar term)|heavy (similar term)|lowering (similar term)|sullen (similar term)|threatening (similar term)|miasmal (similar term)|miasmic (similar term)|vaporous (similar term)|vapourous (similar term)|smoggy (similar term)|clear (antonym)
+clout|5
+(noun)|target (generic term)|mark (generic term)
+(noun)|pull|advantage (generic term)|vantage (generic term)
+(noun)|clout nail|nail (generic term)
+(noun)|punch|poke|lick|biff|blow (generic term)
+(verb)|strike (generic term)
+clout nail|1
+(noun)|clout|nail (generic term)
+clove|4
+(noun)|flower bud (generic term)
+(noun)|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree (generic term)
+(noun)|garlic clove|garlic (generic term)|ail (generic term)
+(noun)|spice (generic term)
+clove-scented|1
+(adj)|odorous (similar term)
+clove hitch|1
+(noun)|knot (generic term)
+clove oil|1
+(noun)|oil of cloves|essential oil (generic term)|volatile oil (generic term)
+clove pink|1
+(noun)|carnation|gillyflower|Dianthus caryophyllus|pink (generic term)|garden pink (generic term)
+clove tree|1
+(noun)|clove|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree (generic term)
+cloven|1
+(adj)|cleft|bisulcate|divided (similar term)
+cloven-footed|1
+(adj)|cloven-hoofed|hoof (related term)
+cloven-hoofed|1
+(adj)|cloven-footed|hoof (related term)
+cloven foot|2
+(noun)|cloven hoof|mark (generic term)|stigma (generic term)|brand (generic term)|stain (generic term)
+(noun)|cloven hoof|hoof (generic term)
+cloven hoof|2
+(noun)|cloven foot|mark (generic term)|stigma (generic term)|brand (generic term)|stain (generic term)
+(noun)|cloven foot|hoof (generic term)
+clover|1
+(noun)|trefoil|herb (generic term)|herbaceous plant (generic term)
+clover-leaf roll|1
+(noun)|bun (generic term)|roll (generic term)
+clover-root|1
+(noun)|herb bennet|cloveroot|wood avens|Geum urbanum|avens (generic term)
+clover fern|1
+(noun)|pepperwort|aquatic fern (generic term)|water fern (generic term)
+cloverleaf|1
+(noun)|interchange (generic term)
+cloveroot|1
+(noun)|herb bennet|clover-root|wood avens|Geum urbanum|avens (generic term)
+clovis|1
+(noun)|Clovis|Clovis I|king (generic term)|male monarch (generic term)|Rex (generic term)|Frank (generic term)
+clovis culture|1
+(noun)|Clovis culture|Paleo-American culture (generic term)|Paleo-Amerind culture (generic term)|Paleo-Indian culture (generic term)
+clovis i|1
+(noun)|Clovis|Clovis I|king (generic term)|male monarch (generic term)|Rex (generic term)|Frank (generic term)
+clowder|1
+(noun)|animal group (generic term)
+clown|3
+(noun)|buffoon|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|buffoon|merry andrew|comedian (generic term)|comic (generic term)
+(verb)|clown around|antic|joke (generic term)|jest (generic term)
+clown anemone fish|1
+(noun)|Amphiprion percula|anemone fish (generic term)
+clown around|1
+(verb)|clown|antic|joke (generic term)|jest (generic term)
+clowning|2
+(noun)|buffoonery|japery|frivolity|harlequinade|prank|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+(noun)|drollery|comedy|funniness|fun (generic term)|play (generic term)|sport (generic term)
+clownish|1
+(adj)|buffoonish|clownlike|zany|humorous (similar term)|humourous (similar term)
+clownlike|1
+(adj)|buffoonish|clownish|zany|humorous (similar term)|humourous (similar term)
+cloy|2
+(verb)|surfeit|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|pall|satiate (generic term)|sate (generic term)|replete (generic term)|fill (generic term)
+cloying|1
+(adj)|saccharine|syrupy|treacly|sweet (similar term)
+clozapine|1
+(noun)|Clozaril|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+clozaril|1
+(noun)|clozapine|Clozaril|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+cloze|1
+(adj)|diagnostic test|diagnostic assay (related term)
+cloze procedure|1
+(noun)|cloze test|diagnostic test (generic term)|diagnostic assay (generic term)
+cloze test|1
+(noun)|cloze procedure|diagnostic test (generic term)|diagnostic assay (generic term)
+club|10
+(noun)|baseball club|ball club|nine|baseball team (generic term)
+(noun)|social club|society|guild|gild|lodge|order|association (generic term)
+(noun)|stick (generic term)
+(noun)|clubhouse|building (generic term)|edifice (generic term)
+(noun)|golf club|golf-club|golf equipment (generic term)
+(noun)|playing card (generic term)
+(noun)|cabaret|nightclub|nightspot|spot (generic term)
+(verb)|unite (generic term)|unify (generic term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|bludgeon|hit (generic term)
+club-head|1
+(noun)|golf-club head|club head|clubhead|head (generic term)
+club-moss|1
+(noun)|club moss|lycopod|fern ally (generic term)
+club-shaped|1
+(adj)|formed (similar term)
+club car|1
+(noun)|lounge car|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+club drug|1
+(noun)|controlled substance (generic term)
+club fungus|1
+(noun)|coral fungus (generic term)
+club head|1
+(noun)|golf-club head|club-head|clubhead|head (generic term)
+club member|1
+(noun)|member (generic term)
+club moss|1
+(noun)|club-moss|lycopod|fern ally (generic term)
+club sandwich|1
+(noun)|three-decker|triple-decker|sandwich (generic term)
+club soda|1
+(noun)|soda water|carbonated water|seltzer|sparkling water|drinking water (generic term)
+club steak|1
+(noun)|Delmonico steak|beefsteak (generic term)
+clubable|1
+(adj)|clubbable|sociable (similar term)
+clubbable|1
+(adj)|clubable|sociable (similar term)
+clubbing|1
+(noun)|symptom (generic term)
+clubbish|1
+(adj)|clubby|sociable (similar term)
+clubby|2
+(adj)|clubbish|sociable (similar term)
+(adj)|clannish|cliquish|snobbish|snobby|private (similar term)
+clubfoot|1
+(noun)|talipes|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+clubfooted|1
+(adj)|unshapely (similar term)
+clubhead|1
+(noun)|golf-club head|club head|club-head|head (generic term)
+clubhouse|1
+(noun)|club|building (generic term)|edifice (generic term)
+clubmoss family|1
+(noun)|Lycopodiaceae|family Lycopodiaceae|fern family (generic term)
+clubroom|1
+(noun)|room (generic term)
+clubroot fungus|1
+(noun)|Plasmodiophora brassicae|fungus (generic term)
+cluck|2
+(noun)|clucking|cry (generic term)
+(verb)|click|clack|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+clucking|1
+(noun)|cluck|cry (generic term)
+clue|3
+(noun)|hint|indication (generic term)|indicant (generic term)
+(noun)|clew|cue|evidence (generic term)
+(verb)|clew|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)
+clue in|1
+(verb)|hint (generic term)|suggest (generic term)
+clueless|1
+(adj)|uninformed (similar term)
+clumber|1
+(noun)|clumber spaniel|spaniel (generic term)
+clumber spaniel|1
+(noun)|clumber|spaniel (generic term)
+clump|7
+(noun)|bunch|cluster|clustering|agglomeration (generic term)
+(noun)|ball|clod|glob|lump|chunk|agglomeration (generic term)
+(noun)|thump|thumping|clunk|thud|sound (generic term)
+(verb)|clop|clunk|plunk|sound (generic term)|go (generic term)
+(verb)|cluster|constellate|flock|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|clomp|walk (generic term)
+(verb)|bunch|bunch up|bundle|cluster|form (generic term)
+clumping|1
+(noun)|clip-clop|clippety-clop|clop|clopping|clunking|sound (generic term)
+clumsiness|3
+(noun)|awkwardness|ineptness|ineptitude|maladroitness|slowness|unskillfulness (generic term)
+(noun)|awkwardness|carriage (generic term)|bearing (generic term)|posture (generic term)|gracefulness (antonym)
+(noun)|awkwardness|gracelessness|stiffness|inelegance (generic term)
+clumsy|4
+(adj)|gawky|clunky|ungainly|unwieldy|awkward (similar term)
+(adj)|awkward|cumbersome|inapt|inept|ill-chosen|infelicitous (similar term)
+(adj)|awkward|bunglesome|ungainly|unwieldy (similar term)|unmanageable (similar term)
+(adj)|bungling|fumbling|incompetent|unskilled (similar term)
+clumsy person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+clunch|1
+(noun)|soil (generic term)|dirt (generic term)
+clunk|2
+(noun)|thump|thumping|clump|thud|sound (generic term)
+(verb)|clop|clump|plunk|sound (generic term)|go (generic term)
+clunking|1
+(noun)|clip-clop|clippety-clop|clop|clopping|clumping|sound (generic term)
+clunky|2
+(adj)|gawky|clumsy|ungainly|unwieldy|awkward (similar term)
+(adj)|audible (similar term)|hearable (similar term)
+clupea|1
+(noun)|Clupea|genus Clupea|fish genus (generic term)
+clupea harangus|1
+(noun)|herring|Clupea harangus|clupeid fish (generic term)|clupeid (generic term)|food fish (generic term)
+clupea harengus harengus|1
+(noun)|Atlantic herring|Clupea harengus harengus|herring (generic term)|Clupea harangus (generic term)
+clupea harengus pallasii|1
+(noun)|Pacific herring|Clupea harengus pallasii|herring (generic term)|Clupea harangus (generic term)
+clupea sprattus|1
+(noun)|brisling|sprat|Clupea sprattus|sardine (generic term)
+clupeid|1
+(noun)|clupeid fish|soft-finned fish (generic term)|malacopterygian (generic term)
+clupeid fish|1
+(noun)|clupeid|soft-finned fish (generic term)|malacopterygian (generic term)
+clupeidae|1
+(noun)|Clupeidae|family Clupeidae|fish family (generic term)
+clusia|1
+(noun)|tree (generic term)
+clusia flava|1
+(noun)|wild fig|Clusia flava|tree (generic term)
+clusia insignis|1
+(noun)|waxflower|Clusia insignis|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+clusia major|1
+(noun)|pitch apple|strangler fig|Clusia rosea|Clusia major|strangler (generic term)|strangler tree (generic term)
+clusia rosea|1
+(noun)|pitch apple|strangler fig|Clusia rosea|Clusia major|strangler (generic term)|strangler tree (generic term)
+clusiaceae|1
+(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family (generic term)
+cluster|3
+(noun)|bunch|clump|clustering|agglomeration (generic term)
+(verb)|constellate|flock|clump|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|bunch|bunch up|bundle|clump|form (generic term)
+cluster bean|1
+(noun)|guar|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume (generic term)|leguminous plant (generic term)
+cluster bomb|1
+(noun)|bomb (generic term)
+cluster bomblet|1
+(noun)|bomblet|bomb (generic term)
+cluster headache|1
+(noun)|histamine headache|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+cluster of differentiation 4|1
+(noun)|CD4|glycoprotein (generic term)
+cluster of differentiation 8|1
+(noun)|CD8|glycoprotein (generic term)
+clustered|3
+(adj)|gregarious (similar term)
+(adj)|bunched|bunchy|concentrated (similar term)
+(adj)|agglomerate|agglomerated|agglomerative|collective (similar term)
+clustered bellflower|1
+(noun)|Campanula glomerata|campanula (generic term)|bellflower (generic term)
+clustered lady's slipper|1
+(noun)|Cypripedium fasciculatum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+clustered poppy mallow|1
+(noun)|Callirhoe triangulata|poppy mallow (generic term)
+clustering|1
+(noun)|bunch|clump|cluster|agglomeration (generic term)
+clutch|10
+(noun)|clasp|clench|clutches|grasp|grip|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(noun)|temporary state (generic term)
+(noun)|brood (generic term)
+(noun)|batch|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|clutch bag|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+(noun)|clutch pedal|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+(noun)|coupling (generic term)|coupler (generic term)
+(verb)|seize|prehend|take (generic term)|get hold of (generic term)
+(verb)|cling to|hold close|hold tight|hold (generic term)|take hold (generic term)
+(verb)|seize|get hold of|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+clutch bag|1
+(noun)|clutch|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+clutch pedal|1
+(noun)|clutch|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+clutches|1
+(noun)|clasp|clench|clutch|grasp|grip|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+clutter|3
+(noun)|jumble|muddle|fuddle|mare's nest|welter|smother|disorderliness (generic term)|disorder (generic term)
+(noun)|radar echo (generic term)|noise (generic term)|interference (generic term)|disturbance (generic term)
+(verb)|clutter up|fill (generic term)|fill up (generic term)|make full (generic term)|unclutter (antonym)
+clutter up|1
+(verb)|clutter|fill (generic term)|fill up (generic term)|make full (generic term)|unclutter (antonym)
+cluttered|1
+(adj)|littered|untidy (similar term)
+clv|1
+(adj)|one hundred fifty-five|155|cardinal (similar term)
+clx|1
+(adj)|one hundred sixty|160|cardinal (similar term)
+clxv|1
+(adj)|one hundred sixty-five|165|cardinal (similar term)
+clxx|1
+(adj)|one hundred seventy|170|cardinal (similar term)
+clxxv|1
+(adj)|one hundred seventy-five|175|cardinal (similar term)
+clxxx|1
+(adj)|one hundred eighty|180|cardinal (similar term)
+clyde|1
+(noun)|Clyde|river (generic term)
+clyde tombaugh|1
+(noun)|Tombaugh|Clyde Tombaugh|Clyde William Tombaugh|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+clyde william tombaugh|1
+(noun)|Tombaugh|Clyde Tombaugh|Clyde William Tombaugh|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+clydesdale|1
+(noun)|Clydesdale|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+clydesdale terrier|1
+(noun)|Clydesdale terrier|Skye terrier (generic term)
+clypeus|1
+(noun)|protective covering (generic term)
+clyster|1
+(noun)|enema|irrigation (generic term)
+clytemnestra|1
+(noun)|Clytemnestra|mythical being (generic term)
+clytocybe alba|1
+(noun)|Clitocybe robusta|Clytocybe alba|agaric (generic term)
+cm|2
+(noun)|centimeter|centimetre|metric linear unit (generic term)
+(noun)|curium|Cm|atomic number 96|metallic element (generic term)|metal (generic term)
+cmb|1
+(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation (generic term)
+cmbr|1
+(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation (generic term)
+cmv|1
+(noun)|cytomegalovirus|CMV|herpes (generic term)|herpes virus (generic term)
+cn gas|1
+(noun)|chloroacetophenone|CN gas|tear gas (generic term)|teargas (generic term)|lacrimator (generic term)|lachrymator (generic term)
+cnemidophorus|1
+(noun)|Cnemidophorus|genus Cnemidophorus|reptile genus (generic term)
+cnemidophorus exsanguis|1
+(noun)|Chihuahuan spotted whiptail|Cnemidophorus exsanguis|whiptail (generic term)|whiptail lizard (generic term)
+cnemidophorus sexlineatus|1
+(noun)|racerunner|race runner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail (generic term)|whiptail lizard (generic term)
+cnemidophorus tesselatus|1
+(noun)|checkered whiptail|Cnemidophorus tesselatus|whiptail (generic term)|whiptail lizard (generic term)
+cnemidophorus tigris|1
+(noun)|western whiptail|Cnemidophorus tigris|whiptail (generic term)|whiptail lizard (generic term)
+cnemidophorus velox|1
+(noun)|plateau striped whiptail|Cnemidophorus velox|whiptail (generic term)|whiptail lizard (generic term)
+cnicus|1
+(noun)|Cnicus|genus Cnicus|asterid dicot genus (generic term)
+cnicus benedictus|1
+(noun)|blessed thistle|sweet sultan|Cnicus benedictus|thistle (generic term)
+cnidaria|1
+(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum (generic term)
+cnidarian|1
+(noun)|coelenterate|invertebrate (generic term)
+cnidoscolus|1
+(noun)|Cnidoscolus|genus Cnidoscolus|rosid dicot genus (generic term)
+cnidoscolus urens|1
+(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+cnidosporidia|1
+(noun)|Cnidosporidia|subclass Cnidosporidia|class (generic term)
+cnossos|1
+(noun)|Knossos|Cnossos|Cnossus|town (generic term)
+cnossus|1
+(noun)|Knossos|Cnossos|Cnossus|town (generic term)
+cnpz|1
+(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+cns|1
+(noun)|central nervous system|CNS|systema nervosum centrale|system (generic term)
+cnut|1
+(noun)|Canute|Cnut|Knut|Canute the Great|King of England (generic term)|King of Great Britain (generic term)
+co|4
+(noun)|carbon monoxide|carbon monoxide gas|CO|monoxide (generic term)
+(noun)|cobalt|Co|atomic number 27|metallic element (generic term)|metal (generic term)
+(noun)|conscientious objector|CO|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)
+(noun)|Colorado|Centennial State|CO|American state (generic term)
+co-author|1
+(verb)|author (generic term)
+co-beneficiary|1
+(noun)|beneficiary (generic term)|donee (generic term)
+co-defendant|1
+(noun)|codefendant|defendant (generic term)|suspect (generic term)
+co-discoverer|1
+(noun)|finder (generic term)|discoverer (generic term)|spotter (generic term)
+co-ed|2
+(adj)|coeducational|integrated (similar term)
+(noun)|college girl|undergraduate (generic term)|undergrad (generic term)
+co-educate|1
+(verb)|coeducate|educate (generic term)
+co-occur|1
+(verb)|coincide|cooccur|coexist (generic term)|cooccur with (related term)
+co-occur with|1
+(verb)|collocate with|construe with|cooccur with|go with|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+co-occurrence|2
+(noun)|accompaniment|concomitant|attendant|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|concurrence|coincidence|conjunction|simultaneity (generic term)|simultaneousness (generic term)
+co-occurrent|1
+(adj)|coincident|coincidental|coinciding|concurrent|cooccurring|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+co-op|1
+(noun)|cooperative|commercial enterprise (generic term)
+co-operative republic of guyana|1
+(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country (generic term)|South American nation (generic term)
+co-opt|4
+(verb)|elect (generic term)
+(verb)|neutralize (generic term)
+(verb)|appoint (generic term)|name (generic term)|nominate (generic term)|constitute (generic term)
+(verb)|take (generic term)|accept (generic term)
+co-optation|2
+(noun)|co-option|election (generic term)
+(noun)|co-option|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+co-option|2
+(noun)|co-optation|election (generic term)
+(noun)|co-optation|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+co-ordinate|1
+(noun)|coordinate|number (generic term)
+co-ordinated|3
+(adj)|coordinated|matching|matched (similar term)
+(adj)|coordinated|interconnected|unified|integrated (similar term)
+(adj)|coordinated|adroit (similar term)
+co-pilot|1
+(noun)|copilot|pilot (generic term)|airplane pilot (generic term)
+co-referent|1
+(adj)|coreferential|grammatical relation (related term)
+co-respondent|1
+(noun)|corespondent|codefendant (generic term)|co-defendant (generic term)
+co-sign|2
+(verb)|cosign|validate (generic term)|formalize (generic term)|formalise (generic term)
+(verb)|cosign|endorse (generic term)|indorse (generic term)
+co-star|2
+(noun)|star (generic term)|principal (generic term)|lead (generic term)
+(verb)|star (generic term)
+co-vary|1
+(verb)|vary (generic term)
+co-worker|1
+(noun)|colleague|fellow worker|workfellow|associate (generic term)
+co2|1
+(noun)|carbon dioxide|CO2|carbonic acid gas|dioxide (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+coach|7
+(noun)|manager|handler|trainer (generic term)
+(noun)|private instructor|tutor|teacher (generic term)|instructor (generic term)
+(noun)|passenger car|carriage|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+(noun)|four-in-hand|coach-and-four|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|bus|autobus|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+(verb)|train|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|drive (generic term)
+coach-and-four|1
+(noun)|coach|four-in-hand|carriage (generic term)|equipage (generic term)|rig (generic term)
+coach dog|1
+(noun)|dalmatian|carriage dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+coach horse|1
+(noun)|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+coach house|1
+(noun)|carriage house|remise|outbuilding (generic term)
+coach station|1
+(noun)|bus terminal|bus depot|bus station|terminal (generic term)|terminus (generic term)|depot (generic term)
+coachbuilder|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+coaching|1
+(noun)|coaching job|employment (generic term)|work (generic term)
+coaching job|1
+(noun)|coaching|employment (generic term)|work (generic term)
+coachman|1
+(noun)|driver (generic term)
+coachwhip|2
+(noun)|ocotillo|Jacob's staff|vine cactus|Fouquieria splendens|candlewood (generic term)
+(noun)|coachwhip snake|Masticophis flagellum|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+coachwhip snake|1
+(noun)|coachwhip|Masticophis flagellum|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+coact|1
+(verb)|act (generic term)|move (generic term)
+coaction|1
+(noun)|collaboration|cooperation (generic term)
+coadjutor|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+coagulable|1
+(adj)|thick (similar term)
+coagulant|1
+(noun)|coagulator|agent (generic term)
+coagulase|1
+(noun)|enzyme (generic term)
+coagulate|3
+(adj)|coagulated|curdled|grumous|grumose|thick (similar term)
+(verb)|clot|change state (generic term)|turn (generic term)
+(verb)|clot|change (generic term)|alter (generic term)|modify (generic term)
+coagulated|2
+(adj)|coagulate|curdled|grumous|grumose|thick (similar term)
+(adj)|solidified|solid (similar term)
+coagulation|1
+(noun)|curdling|clotting|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+coagulation factor|1
+(noun)|clotting factor|plasma protein (generic term)
+coagulator|1
+(noun)|coagulant|agent (generic term)
+coagulum|1
+(noun)|clot|ball (generic term)|clod (generic term)|glob (generic term)|lump (generic term)|clump (generic term)|chunk (generic term)
+coahuila|1
+(noun)|Coahuila|state (generic term)|province (generic term)
+coal|5
+(noun)|fossil fuel (generic term)|vegetable matter (generic term)
+(noun)|ember|fragment (generic term)
+(verb)|char|burn (generic term)|combust (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|take in (generic term)|gather in (generic term)
+coal-black|1
+(adj)|jet|jet-black|pitchy|sooty|achromatic (similar term)
+coal-burning|1
+(adj)|coal-fired|fueled (similar term)
+coal-fired|1
+(adj)|coal-burning|fueled (similar term)
+coal-tar creosote|1
+(noun)|creosote|organic compound (generic term)
+coal black|1
+(noun)|ebony|jet black|pitch black|sable|soot black|black (generic term)|blackness (generic term)|inkiness (generic term)
+coal car|1
+(noun)|freight car (generic term)
+coal chute|1
+(noun)|chute (generic term)|slide (generic term)|slideway (generic term)|sloping trough (generic term)
+coal gas|1
+(noun)|fuel (generic term)
+coal house|1
+(noun)|shed (generic term)
+coal industry|1
+(noun)|industry (generic term)
+coal mine|1
+(noun)|coalpit|mine (generic term)
+coal miner|1
+(noun)|collier|pitman|miner (generic term)|mineworker (generic term)
+coal miner's lung|1
+(noun)|anthracosis|black lung|black lung disease|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+coal oil|1
+(noun)|kerosene|kerosine|lamp oil|fuel (generic term)|hydrocarbon (generic term)
+coal scuttle|1
+(noun)|scuttle|container (generic term)
+coal seam|1
+(noun)|seam (generic term)|bed (generic term)
+coal shovel|1
+(noun)|hand shovel (generic term)
+coal tar|1
+(noun)|pitch (generic term)|tar (generic term)
+coal tongs|1
+(noun)|fire tongs|tongs (generic term)|pair of tongs (generic term)|fire iron (generic term)
+coalbin|1
+(noun)|coalhole|bin (generic term)
+coalesce|2
+(verb)|blend|flux|mix|conflate|commingle|immix|fuse|meld|combine|merge|change integrity (generic term)|mix up (related term)
+(verb)|unify (generic term)|unite (generic term)|merge (generic term)
+coalesced|1
+(adj)|amalgamate|amalgamated|consolidated|fused|united (similar term)
+coalescence|1
+(noun)|coalescency|coalition|concretion|conglutination|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+coalescency|1
+(noun)|coalescence|coalition|concretion|conglutination|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+coalescent|1
+(adj)|coalescing|united (similar term)
+coalescing|1
+(adj)|coalescent|united (similar term)
+coalface|1
+(noun)|face (generic term)
+coalfield|1
+(noun)|field (generic term)
+coalhole|1
+(noun)|coalbin|bin (generic term)
+coaling station|1
+(noun)|seaport (generic term)|haven (generic term)|harbor (generic term)|harbour (generic term)
+coalition|3
+(noun)|alliance|alignment|alinement|organization (generic term)|organisation (generic term)|nonalignment (antonym)
+(noun)|fusion|union (generic term)|unification (generic term)
+(noun)|coalescence|coalescency|concretion|conglutination|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+coalman|1
+(noun)|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+coalpit|1
+(noun)|coal mine|mine (generic term)
+coaming|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+coapt|2
+(verb)|conglutinate|close (generic term)|fill up (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+coarctate|1
+(adj)|enclosed (similar term)
+coarctation|2
+(noun)|constriction|compression (generic term)|condensation (generic term)|contraction (generic term)
+(noun)|narrowing (generic term)
+coarse|4
+(adj)|harsh|coarse-grained (similar term)|large-grained (similar term)|farinaceous (similar term)|coarse-grained (similar term)|grainy (similar term)|granular (similar term)|granulose (similar term)|gritty (similar term)|mealy (similar term)|granulated (similar term)|plushy (similar term)|plush-like (similar term)|loose (similar term)|open (similar term)|rough (related term)|unsmooth (related term)|fine (antonym)
+(adj)|common|rough-cut|uncouth|vulgar|unrefined (similar term)
+(adj)|common|inferior (similar term)
+(adj)|crude|earthy|gross|vulgar|indecent (similar term)
+coarse-furred|1
+(adj)|coarse-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+coarse-grained|2
+(adj)|farinaceous|grainy|granular|granulose|gritty|mealy|coarse (similar term)|harsh (similar term)
+(adj)|large-grained|coarse (similar term)|harsh (similar term)
+coarse-haired|1
+(adj)|coarse-furred|hairy (similar term)|haired (similar term)|hirsute (similar term)
+coarse-textured|1
+(adj)|textured|rough-textured|rough (similar term)|unsmooth (similar term)
+coarsely|1
+(adv)|finely (antonym)
+coarsen|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+coarsened|1
+(adj)|inferior (similar term)
+coarseness|4
+(noun)|saltiness|expressive style (generic term)|style (generic term)
+(noun)|graininess|granularity|roughness (generic term)|raggedness (generic term)
+(noun)|nubbiness|tweediness|roughness (generic term)|raggedness (generic term)
+(noun)|commonness|grossness|vulgarity|vulgarism|raunch|inelegance (generic term)
+coast|5
+(noun)|seashore|seacoast|sea-coast|shore (generic term)
+(noun)|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|slide|glide|motion (generic term)|movement (generic term)|move (generic term)
+(verb)|glide (generic term)
+coast banksia|1
+(noun)|honeysuckle|Australian honeysuckle|Banksia integrifolia|banksia (generic term)
+coast boykinia|1
+(noun)|Boykinia elata|Boykinia occidentalis|wildflower (generic term)|wild flower (generic term)
+coast lily|1
+(noun)|Lilium maritinum|lily (generic term)
+coast live oak|1
+(noun)|California live oak|Quercus agrifolia|live oak (generic term)
+coast mountains|1
+(noun)|Coast Range|Coast Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+coast polypody|1
+(noun)|leatherleaf|leathery polypody|Polypodium scouleri|polypody (generic term)
+coast range|1
+(noun)|Coast Range|Coast Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+coast redwood|1
+(noun)|California redwood|Sequoia sempervirens|sequoia (generic term)|redwood (generic term)
+coast rhododendron|1
+(noun)|Rhododendron californicum|rhododendron (generic term)
+coast white cedar|1
+(noun)|southern white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+coastal|2
+(adj)|shore (related term)
+(adj)|coastwise (similar term)|inshore (similar term)|maritime (similar term)|seaward (similar term)|inland (antonym)
+coastal diving bird|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+coastal plain|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+coastal rein orchid|1
+(noun)|Habenaria greenei|rein orchid (generic term)|rein orchis (generic term)
+coaster|3
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+(noun)|mover (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+coaster brake|1
+(noun)|brake (generic term)
+coaster wagon|1
+(noun)|wagon|wheeled vehicle (generic term)
+coastguard|1
+(noun)|military service (generic term)|armed service (generic term)|service (generic term)
+coastguardsman|1
+(noun)|bluejacket (generic term)|navy man (generic term)|sailor (generic term)|sailor boy (generic term)
+coastland|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+coastline|1
+(noun)|outline (generic term)|lineation (generic term)
+coastwise|1
+(adj)|coastal (similar term)
+coat|6
+(noun)|overgarment (generic term)|outer garment (generic term)
+(noun)|coating|covering (generic term)
+(noun)|pelage|hair (generic term)
+(verb)|surface|cover (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+(verb)|cake|cover (generic term)|spread over (generic term)
+coat-of-mail shell|1
+(noun)|chiton|sea cradle|polyplacophore|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+coat button|1
+(noun)|button (generic term)
+coat closet|1
+(noun)|wardrobe (generic term)|closet (generic term)|press (generic term)
+coat hanger|1
+(noun)|clothes hanger|dress hanger|hanger (generic term)
+coat of arms|1
+(noun)|arms|blazon|blazonry|heraldry (generic term)
+coat of mail|1
+(noun)|body armor|body armour|suit of armor|suit of armour|cataphract|armor (generic term)|armour (generic term)
+coat of paint|1
+(noun)|paint (generic term)|coating (generic term)|coat (generic term)
+coat rack|1
+(noun)|coatrack|hatrack|rack (generic term)
+coat stand|1
+(noun)|clothes tree|coat tree|pole (generic term)
+coat tree|1
+(noun)|clothes tree|coat stand|pole (generic term)
+coatdress|1
+(noun)|dress (generic term)|frock (generic term)
+coated|2
+(adj)|backed (similar term)|black-coated (similar term)|glazed (similar term)|oily (similar term)|uncoated (antonym)
+(adj)|clothed (similar term)|clad (similar term)
+coatee|1
+(noun)|coat (generic term)
+coati|1
+(noun)|coati-mondi|coati-mundi|coon cat|Nasua narica|procyonid (generic term)
+coati-mondi|1
+(noun)|coati|coati-mundi|coon cat|Nasua narica|procyonid (generic term)
+coati-mundi|1
+(noun)|coati|coati-mondi|coon cat|Nasua narica|procyonid (generic term)
+coating|4
+(noun)|coat|covering (generic term)
+(noun)|finish|finishing|decorativeness (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|application|covering|manual labor (generic term)|manual labour (generic term)
+coatrack|1
+(noun)|coat rack|hatrack|rack (generic term)
+coatroom|1
+(noun)|cloakroom|room (generic term)
+coats land|1
+(noun)|Coats Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+coattail|1
+(noun)|flap (generic term)
+coattails effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+coauthor|1
+(noun)|joint author|writer (generic term)|author (generic term)
+coax|2
+(noun)|coaxial cable|coax cable|cable (generic term)|line (generic term)|transmission line (generic term)
+(verb)|wheedle|cajole|palaver|blarney|sweet-talk|inveigle|persuade (generic term)
+coax cable|1
+(noun)|coaxial cable|coax|cable (generic term)|line (generic term)|transmission line (generic term)
+coaxal|1
+(adj)|coaxial|concentric (similar term)|concentrical (similar term)|homocentric (similar term)
+coaxer|1
+(noun)|wheedler|persuader (generic term)|inducer (generic term)
+coaxial|1
+(adj)|coaxal|concentric (similar term)|concentrical (similar term)|homocentric (similar term)
+coaxial cable|1
+(noun)|coax|coax cable|cable (generic term)|line (generic term)|transmission line (generic term)
+coaxing|2
+(adj)|ingratiatory|persuasive (similar term)
+(noun)|blarney|soft soap|sweet talk|flattery (generic term)
+coaxingly|1
+(adv)|cajolingly
+cob|4
+(noun)|hazelnut|filbert|cobnut|edible nut (generic term)
+(noun)|harness horse (generic term)
+(noun)|black-backed gull|great black-backed gull|Larus marinus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+(noun)|swan (generic term)
+cobalamin|1
+(noun)|vitamin B12|cyanocobalamin|antipernicious anemia factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+cobalt|1
+(noun)|Co|atomic number 27|metallic element (generic term)|metal (generic term)
+cobalt 60|1
+(noun)|cobalt (generic term)|Co (generic term)|atomic number 27 (generic term)
+cobalt bloom|1
+(noun)|erythrite|mineral (generic term)
+cobalt blue|2
+(noun)|greenish blue|aqua|aquamarine|turquoise|peacock blue|blue (generic term)|blueness (generic term)
+(noun)|cobalt ultramarine|pigment (generic term)
+cobalt ultramarine|1
+(noun)|cobalt blue|pigment (generic term)
+cobaltite|1
+(noun)|mineral (generic term)
+cobber|1
+(noun)|buddy (generic term)|brother (generic term)|chum (generic term)|crony (generic term)|pal (generic term)|sidekick (generic term)
+cobble|3
+(noun)|cobblestone|sett|paving stone (generic term)
+(verb)|pave (generic term)
+(verb)|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+cobble together|1
+(verb)|cobble up|compose (generic term)|compile (generic term)
+cobble up|1
+(verb)|cobble together|compose (generic term)|compile (generic term)
+cobbler|3
+(noun)|shoemaker|maker (generic term)|shaper (generic term)
+(noun)|highball (generic term)
+(noun)|deep-dish pie|pie (generic term)
+cobbler's last|1
+(noun)|last|shoemaker's last|holding device (generic term)
+cobblers|2
+(noun)|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|testis (generic term)|testicle (generic term)|orchis (generic term)|ball (generic term)|ballock (generic term)|bollock (generic term)|nut (generic term)|egg (generic term)
+cobblestone|1
+(noun)|cobble|sett|paving stone (generic term)
+cobbling|1
+(noun)|shoemaking|shoe repairing|trade (generic term)|craft (generic term)
+cobia|1
+(noun)|Rachycentron canadum|sergeant fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cobitidae|1
+(noun)|Cobitidae|family Cobitidae|fish family (generic term)
+cobnut|2
+(noun)|filbert|Corylus avellana|Corylus avellana grandis|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+(noun)|hazelnut|filbert|cob|edible nut (generic term)
+cobol|1
+(noun)|COBOL|programming language (generic term)|programing language (generic term)
+cobra|1
+(noun)|elapid (generic term)|elapid snake (generic term)
+cobweb|3
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|gossamer|fibril (generic term)|filament (generic term)|strand (generic term)
+(noun)|spider web (generic term)|spider's web (generic term)
+cobwebby|2
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|see-through|sheer|transparent|vaporous|vapourous|thin (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+coca|3
+(noun)|Erythroxylon coca|coca plant|shrub (generic term)|bush (generic term)
+(noun)|Coca|Imogene Coca|comedienne (generic term)
+(noun)|plant product (generic term)
+coca cola|1
+(noun)|Coca Cola|Coke|cola (generic term)|dope (generic term)
+coca plant|1
+(noun)|Erythroxylon coca|coca|shrub (generic term)|bush (generic term)
+cocain|1
+(noun)|cocaine|hard drug (generic term)
+cocaine|1
+(noun)|cocain|hard drug (generic term)
+cocaine addict|1
+(noun)|drug addict (generic term)|junkie (generic term)|junky (generic term)
+cocaine addiction|1
+(noun)|drug addiction (generic term)|white plague (generic term)
+cocainise|1
+(verb)|cocainize|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+cocainize|1
+(verb)|cocainise|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+cocarboxylase|1
+(noun)|thiamine pyrophosphate|coenzyme (generic term)
+coccal|1
+(adj)|eubacteria|eubacterium|true bacteria (related term)
+cocci|1
+(noun)|coccus|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+coccid insect|1
+(noun)|homopterous insect (generic term)|homopteran (generic term)
+coccidae|1
+(noun)|Coccidae|family Coccidae|arthropod family (generic term)
+coccidia|1
+(noun)|Coccidia|order Coccidia|animal order (generic term)
+coccidioidomycosis|1
+(noun)|coccidiomycosis|valley fever|desert rheumatism|fungal infection (generic term)|mycosis (generic term)
+coccidiomycosis|1
+(noun)|coccidioidomycosis|valley fever|desert rheumatism|fungal infection (generic term)|mycosis (generic term)
+coccidiosis|1
+(noun)|infestation (generic term)
+coccidium|1
+(noun)|eimeria|sporozoan (generic term)
+coccinellidae|1
+(noun)|Coccinellidae|family Coccinellidae|arthropod family (generic term)
+coccobacillus|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+coccoid|1
+(adj)|round (similar term)|circular (similar term)
+coccoidea|1
+(noun)|Coccoidea|superfamily Coccoidea|arthropod family (generic term)
+coccothraustes|1
+(noun)|Coccothraustes|genus Coccothraustes|bird genus (generic term)
+coccothraustes coccothraustes|1
+(noun)|hawfinch|Coccothraustes coccothraustes|grosbeak (generic term)|grossbeak (generic term)
+cocculus|1
+(noun)|Cocculus|genus Cocculus|magnoliid dicot genus (generic term)
+cocculus carolinus|1
+(noun)|Carolina moonseed|Cocculus carolinus|moonseed (generic term)
+coccus|1
+(noun)|cocci|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+coccus hesperidum|1
+(noun)|brown soft scale|Coccus hesperidum|soft scale (generic term)
+coccygeal|1
+(adj)|bone|os (related term)
+coccygeal nerve|1
+(noun)|nervus coccygeus|spinal nerve (generic term)|nervus spinalis (generic term)
+coccygeal plexus|1
+(noun)|plexus coccygeus|nerve plexus (generic term)
+coccygeal vertebra|1
+(noun)|caudal vertebra|vertebra (generic term)
+coccyx|1
+(noun)|tail bone|bone (generic term)|os (generic term)
+coccyzus|1
+(noun)|Coccyzus|genus Coccyzus|bird genus (generic term)
+coccyzus erythropthalmus|1
+(noun)|black-billed cuckoo|Coccyzus erythropthalmus|cuckoo (generic term)
+cochimi|2
+(noun)|Cochimi|Hokan (generic term)|Hoka (generic term)
+(noun)|Cochimi|Yuman (generic term)
+cochin|1
+(noun)|cochin china|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+cochin china|1
+(noun)|cochin|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+cochineal|2
+(noun)|dye (generic term)|dyestuff (generic term)
+(noun)|cochineal insect|Dactylopius coccus|scale insect (generic term)
+cochineal insect|1
+(noun)|cochineal|Dactylopius coccus|scale insect (generic term)
+cochise|1
+(noun)|Cochise|Indian chief (generic term)|Indian chieftain (generic term)|Apache (generic term)
+cochlea|1
+(noun)|tube (generic term)|tube-shaped structure (generic term)
+cochlear|1
+(adj)|tube|tube-shaped structure (related term)
+cochlearia|1
+(noun)|Cochlearia|genus Cochlearia|dilleniid dicot genus (generic term)
+cochlearia officinalis|1
+(noun)|scurvy grass|common scurvy grass|Cochlearia officinalis|cress (generic term)|cress plant (generic term)
+cochlearius|1
+(noun)|Cochlearius|genus Cochlearius|bird genus (generic term)
+cochlearius cochlearius|1
+(noun)|boatbill|boat-billed heron|broadbill|Cochlearius cochlearius|heron (generic term)
+cochon de lait|1
+(noun)|suckling pig|pork (generic term)|porc (generic term)
+cochran|1
+(noun)|Cochran|Jacqueline Cochran|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+cock|8
+(noun)|prick|dick|shaft|pecker|peter|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+(noun)|stopcock|turncock|faucet (generic term)|spigot (generic term)
+(noun)|hammer|striker (generic term)
+(noun)|rooster|chicken (generic term)|Gallus gallus (generic term)
+(noun)|bird (generic term)
+(verb)|cant (generic term)|cant over (generic term)|tilt (generic term)|slant (generic term)|pitch (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|tittup|swagger|ruffle|prance|strut|sashay|walk (generic term)
+cock's eggs|1
+(noun)|Salpichroa organifolia|Salpichroa rhomboidea|vine (generic term)
+cock-a-doodle-doo|1
+(noun)|crow (generic term)
+cock-a-hoop|1
+(adj)|boastful|braggart|bragging|braggy|big|crowing|self-aggrandizing|self-aggrandising|proud (similar term)
+cock-a-leekie|1
+(noun)|cocky-leeky|soup (generic term)
+cock-and-bull story|1
+(noun)|fairytale|fairy tale|fairy story|song and dance|fib (generic term)|story (generic term)|tale (generic term)|tarradiddle (generic term)|taradiddle (generic term)
+cock of the rock|2
+(noun)|Rupicola peruviana|cotinga (generic term)|chatterer (generic term)
+(noun)|Rupicola rupicola|cotinga (generic term)|chatterer (generic term)
+cock sucking|1
+(noun)|blowjob|fellatio (generic term)|fellation (generic term)
+cock up|1
+(verb)|prick up|prick|rear (generic term)|erect (generic term)
+cockade|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+cockaigne|1
+(noun)|Cockaigne|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+cockamamie|1
+(adj)|cockamamy|goofy|sappy|silly|wacky|whacky|zany|foolish (similar term)
+cockamamy|1
+(adj)|cockamamie|goofy|sappy|silly|wacky|whacky|zany|foolish (similar term)
+cockateel|1
+(noun)|cockatiel|cockatoo parrot|Nymphicus hollandicus|parrot (generic term)
+cockatiel|1
+(noun)|cockateel|cockatoo parrot|Nymphicus hollandicus|parrot (generic term)
+cockatoo|1
+(noun)|parrot (generic term)
+cockatoo parrot|1
+(noun)|cockateel|cockatiel|Nymphicus hollandicus|parrot (generic term)
+cockatrice|1
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+cockchafer|1
+(noun)|May bug|May beetle|Melolontha melolontha|melolonthid beetle (generic term)
+cockcroft|1
+(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist (generic term)
+cockcroft-walton accelerator|1
+(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+cockcroft-walton voltage multiplier|1
+(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+cockcroft and walton accelerator|1
+(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+cockcroft and walton voltage multiplier|1
+(noun)|Cockcroft and Walton accelerator|Cockcroft-Walton accelerator|Cockcroft and Walton voltage multiplier|Cockcroft-Walton voltage multiplier|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+cockcrow|1
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|hour (generic term)|time of day (generic term)|sunset (antonym)
+cocked hat|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+cocker|2
+(noun)|cocker spaniel|English cocker spaniel|spaniel (generic term)
+(verb)|pamper|featherbed|cosset|baby|coddle|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+cocker spaniel|1
+(noun)|English cocker spaniel|cocker|spaniel (generic term)
+cockerel|1
+(noun)|cock (generic term)|rooster (generic term)
+cockeyed|3
+(adj)|askew|awry|lopsided|wonky|skew-whiff|crooked (similar term)
+(adj)|absurd|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+cockfight|1
+(noun)|match (generic term)
+cockfighting|1
+(noun)|blood sport (generic term)
+cockhorse|1
+(noun)|plaything (generic term)|toy (generic term)
+cockiness|1
+(noun)|bumptiousness|pushiness|forwardness|assertiveness (generic term)|self-assertiveness (generic term)
+cockle|4
+(noun)|shellfish (generic term)
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(verb)|ripple|ruffle|riffle|undulate|flow (generic term)|flux (generic term)
+(verb)|pucker|rumple|crumple|knit|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+cockle-bur|1
+(noun)|cocklebur|cockleburr|cockle-burr|weed (generic term)
+cockle-burr|1
+(noun)|cocklebur|cockle-bur|cockleburr|weed (generic term)
+cocklebur|2
+(noun)|cockle-bur|cockleburr|cockle-burr|weed (generic term)
+(noun)|great burdock|greater burdock|Arctium lappa|burdock (generic term)|clotbur (generic term)
+cockleburr|1
+(noun)|cocklebur|cockle-bur|cockle-burr|weed (generic term)
+cockleshell|1
+(noun)|small boat (generic term)
+cockloft|1
+(noun)|loft (generic term)|attic (generic term)|garret (generic term)
+cockney|4
+(adj)|English|English language (related term)
+(adj)|Cockney|Londoner (related term)
+(noun)|Cockney|Londoner (generic term)
+(noun)|English (generic term)|English language (generic term)
+cockpit|3
+(noun)|compartment (generic term)
+(noun)|enclosure (generic term)
+(noun)|seat (generic term)
+cockroach|1
+(noun)|roach|dictyopterous insect (generic term)
+cockscomb|4
+(noun)|common cockscomb|Celosia cristata|Celosia argentea cristata|herb (generic term)|herbaceous plant (generic term)
+(noun)|coxcomb|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+(noun)|coxcomb|cap (generic term)
+(noun)|comb|coxcomb|crest (generic term)
+cocksfoot|1
+(noun)|orchard grass|cockspur|Dactylis glomerata|grass (generic term)
+cockspur|2
+(noun)|orchard grass|cocksfoot|Dactylis glomerata|grass (generic term)
+(noun)|Pisonia aculeata|tree (generic term)
+cockspur hawthorn|1
+(noun)|cockspur thorn|Crataegus crus-galli|hawthorn (generic term)|haw (generic term)
+cockspur thorn|1
+(noun)|cockspur hawthorn|Crataegus crus-galli|hawthorn (generic term)|haw (generic term)
+cocksucker|2
+(noun)|sensualist (generic term)
+(noun)|asshole|bastard|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+cocksure|1
+(adj)|overconfident|positive|confident (similar term)
+cocksureness|1
+(noun)|certitude|overconfidence|certainty (generic term)
+cocktail|2
+(noun)|mixed drink (generic term)
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+cocktail dress|1
+(noun)|sheath|dress (generic term)|frock (generic term)
+cocktail lounge|1
+(noun)|barroom (generic term)|bar (generic term)|saloon (generic term)|ginmill (generic term)|taproom (generic term)
+cocktail party|1
+(noun)|party (generic term)
+cocktail sauce|1
+(noun)|seafood sauce|sauce (generic term)
+cocktail shaker|1
+(noun)|shaker (generic term)
+cocktail table|1
+(noun)|coffee table|table (generic term)
+cockup|1
+(noun)|ballup|balls-up|mess-up|mistake (generic term)|error (generic term)|fault (generic term)
+cocky|1
+(adj)|assertive (similar term)
+cocky-leeky|1
+(noun)|cock-a-leekie|soup (generic term)
+coco|1
+(noun)|coconut|coconut palm|coco palm|cocoa palm|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+coco de macao|1
+(noun)|babassu|babassu palm|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+coco palm|1
+(noun)|coconut|coconut palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+coco plum|2
+(noun)|coco plum tree|cocoa plum|icaco|Chrysobalanus icaco|fruit tree (generic term)
+(noun)|cocoa plum|icaco|edible fruit (generic term)
+coco plum tree|1
+(noun)|coco plum|cocoa plum|icaco|Chrysobalanus icaco|fruit tree (generic term)
+cocoa|2
+(noun)|chocolate|hot chocolate|drinking chocolate|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|foodstuff (generic term)|food product (generic term)
+cocoa bean|1
+(noun)|cacao bean|cacao (generic term)|cacao tree (generic term)|chocolate tree (generic term)|Theobroma cacao (generic term)
+cocoa butter|2
+(noun)|fat (generic term)
+(noun)|chocolate (generic term)
+cocoa palm|1
+(noun)|coconut|coconut palm|coco palm|coco|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+cocoa plum|2
+(noun)|coco plum|coco plum tree|icaco|Chrysobalanus icaco|fruit tree (generic term)
+(noun)|coco plum|icaco|edible fruit (generic term)
+cocoa powder|1
+(noun)|chocolate (generic term)
+cocoanut|1
+(noun)|coconut|edible nut (generic term)
+cocobolo|1
+(noun)|Dalbergia retusa|tree (generic term)
+coconspirator|1
+(noun)|conspirator|plotter|machinator|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+coconspire|1
+(verb)|conspire (generic term)|cabal (generic term)|complot (generic term)|conjure (generic term)|machinate (generic term)
+coconut|3
+(noun)|coconut meat|food (generic term)|solid food (generic term)
+(noun)|cocoanut|edible nut (generic term)
+(noun)|coconut palm|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+coconut cake|1
+(noun)|cake (generic term)
+coconut cream|1
+(noun)|coconut milk|milk (generic term)
+coconut macaroon|1
+(noun)|macaroon (generic term)
+coconut meat|1
+(noun)|coconut|food (generic term)|solid food (generic term)
+coconut milk|2
+(noun)|coconut cream|milk (generic term)
+(noun)|coconut water|milk (generic term)
+coconut oil|1
+(noun)|copra oil|vegetable oil (generic term)|oil (generic term)
+coconut palm|1
+(noun)|coconut|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+coconut tree|1
+(noun)|coconut|coconut palm|coco palm|coco|cocoa palm|Cocos nucifera|palm (generic term)|palm tree (generic term)
+coconut water|1
+(noun)|coconut milk|milk (generic term)
+cocoon|3
+(noun)|natural object (generic term)
+(verb)|retreat (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+cocooning|1
+(noun)|seclusion (generic term)
+cocopa|2
+(noun)|Cocopa|Cocopah|Hokan (generic term)|Hoka (generic term)
+(noun)|Cocopa|Cocopah|Yuman (generic term)
+cocopah|2
+(noun)|Cocopa|Cocopah|Hokan (generic term)|Hoka (generic term)
+(noun)|Cocopa|Cocopah|Yuman (generic term)
+cocos|1
+(noun)|Cocos|genus Cocos|monocot genus (generic term)|liliopsid genus (generic term)
+cocos nucifera|1
+(noun)|coconut|coconut palm|coco palm|coco|cocoa palm|coconut tree|Cocos nucifera|palm (generic term)|palm tree (generic term)
+cocoswood|1
+(noun)|cocuswood|granadilla wood|wood (generic term)
+cocotte|1
+(noun)|prostitute|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+cocoyam|2
+(noun)|taro|dasheen|eddo|root (generic term)
+(noun)|taro|taro root|dasheen|edda|root vegetable (generic term)
+cocozelle|2
+(noun)|Italian vegetable marrow|marrow (generic term)|marrow squash (generic term)|vegetable marrow (generic term)
+(noun)|summer squash (generic term)
+cocteau|1
+(noun)|Cocteau|Jean Cocteau|writer (generic term)|author (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+cocus|1
+(noun)|Cocus|Titan (generic term)
+cocuswood|1
+(noun)|cocoswood|granadilla wood|wood (generic term)
+cocytus|1
+(noun)|Cocytus|River Cocytus|river (generic term)
+cod|7
+(adj)|collect|due (similar term)|owed (similar term)
+(noun)|pod|seedcase|husk (generic term)
+(noun)|codfish|saltwater fish (generic term)
+(noun)|codfish|gadoid (generic term)|gadoid fish (generic term)
+(verb)|gull|dupe|slang|befool|fool|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|tease|razz|rag|tantalize|tantalise|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+(adv)|C.O.D.|COD|cash on delivery
+cod-like|1
+(adj)|animal (similar term)
+cod-liver oil|1
+(noun)|cod liver oil|animal oil (generic term)
+cod liver oil|1
+(noun)|cod-liver oil|animal oil (generic term)
+cod oil|1
+(noun)|cod-liver oil (generic term)|cod liver oil (generic term)
+coda|1
+(noun)|finale|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+codariocalyx|1
+(noun)|Codariocalyx|genus Codariocalyx|rosid dicot genus (generic term)
+codariocalyx motorius|1
+(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub (generic term)|bush (generic term)
+coddle|2
+(verb)|pamper|featherbed|cosset|cocker|baby|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|cook (generic term)
+coddled egg|1
+(noun)|boiled egg|dish (generic term)
+coddler|1
+(noun)|pamperer|spoiler|mollycoddler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+code|5
+(noun)|codification|written communication (generic term)|written language (generic term)
+(noun)|coding system (generic term)
+(noun)|computer code|coding system (generic term)
+(verb)|tag (generic term)|label (generic term)|mark (generic term)
+(verb)|encode|encipher|cipher|cypher|encrypt|inscribe|write in code|write (generic term)|decode (antonym)
+code flag|1
+(noun)|nautical signal flag|flag (generic term)|signal flag (generic term)
+code of behavior|1
+(noun)|code of conduct|convention (generic term)|normal (generic term)|pattern (generic term)|rule (generic term)|formula (generic term)
+code of conduct|1
+(noun)|code of behavior|convention (generic term)|normal (generic term)|pattern (generic term)|rule (generic term)|formula (generic term)
+codefendant|1
+(noun)|co-defendant|defendant (generic term)|suspect (generic term)
+codeine|1
+(noun)|opiate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)|antitussive (generic term)
+coder|1
+(noun)|programmer|computer programmer|software engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|computer user (generic term)
+codetalker|1
+(noun)|windtalker|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+codex|2
+(noun)|list (generic term)|listing (generic term)
+(noun)|leaf-book|manuscript (generic term)|holograph (generic term)
+codfish|2
+(noun)|cod|saltwater fish (generic term)
+(noun)|cod|gadoid (generic term)|gadoid fish (generic term)
+codfish ball|1
+(noun)|codfish cake|fish cake (generic term)|fish ball (generic term)
+codfish cake|1
+(noun)|codfish ball|fish cake (generic term)|fish ball (generic term)
+codger|1
+(noun)|old codger|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+codiaeum|1
+(noun)|Codiaeum|genus Codiaeum|rosid dicot genus (generic term)
+codiaeum variegatum|1
+(noun)|croton|Codiaeum variegatum|shrub (generic term)|bush (generic term)
+codicil|1
+(noun)|appendix (generic term)
+codification|2
+(noun)|systematization (generic term)|systematisation (generic term)|rationalization (generic term)|rationalisation (generic term)
+(noun)|code|written communication (generic term)|written language (generic term)
+codified|1
+(adj)|statute|written (similar term)
+codify|1
+(verb)|systematize (generic term)|systematise (generic term)|systemize (generic term)|systemise (generic term)
+coding|1
+(noun)|cryptography|secret writing|steganography|writing (generic term)|committal to writing (generic term)
+coding dna|1
+(noun)|exon|coding DNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)|intron (antonym)
+coding system|1
+(noun)|writing (generic term)
+codlin moth|1
+(noun)|codling moth|Carpocapsa pomonella|tortricid (generic term)|tortricid moth (generic term)
+codling|1
+(noun)|cod (generic term)|codfish (generic term)
+codling moth|1
+(noun)|codlin moth|Carpocapsa pomonella|tortricid (generic term)|tortricid moth (generic term)
+codlins-and-cream|1
+(noun)|hairy willowherb|Epilobium hirsutum|willowherb (generic term)
+codon|1
+(noun)|sequence (generic term)
+codpiece|1
+(noun)|flap (generic term)
+codswallop|1
+(noun)|folderol|rubbish|tripe|trumpery|trash|wish-wash|applesauce|drivel (generic term)|garbage (generic term)
+cody|1
+(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman (generic term)|promoter (generic term)|impresario (generic term)
+coeducate|1
+(verb)|co-educate|educate (generic term)
+coeducation|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+coeducational|1
+(adj)|co-ed|integrated (similar term)
+coefficient|1
+(noun)|constant (generic term)
+coefficient of absorption|1
+(noun)|absorption coefficient|absorptance|coefficient (generic term)
+coefficient of concordance|1
+(noun)|Kendall test (generic term)
+coefficient of correlation|1
+(noun)|correlation coefficient|correlation|parametric statistic (generic term)
+coefficient of drag|1
+(noun)|drag coefficient|coefficient (generic term)
+coefficient of elasticity|1
+(noun)|modulus of elasticity|elastic modulus|modulus (generic term)
+coefficient of expansion|1
+(noun)|expansivity|coefficient (generic term)
+coefficient of friction|1
+(noun)|coefficient (generic term)
+coefficient of mutual induction|1
+(noun)|mutual inductance|coefficient (generic term)
+coefficient of reflection|1
+(noun)|reflection factor|reflectance|reflectivity|coefficient (generic term)
+coefficient of self induction|1
+(noun)|self-inductance|coefficient (generic term)
+coefficient of viscosity|1
+(noun)|absolute viscosity|dynamic viscosity|coefficient (generic term)
+coelacanth|1
+(noun)|Latimeria chalumnae|crossopterygian (generic term)|lobefin (generic term)|lobe-finned fish (generic term)
+coelenterata|1
+(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum (generic term)
+coelenterate|1
+(noun)|cnidarian|invertebrate (generic term)
+coelenterate family|1
+(noun)|family (generic term)
+coelenterate genus|1
+(noun)|genus (generic term)
+coelenteron|1
+(noun)|sac (generic term)
+coeliac|1
+(adj)|celiac|cavity|bodily cavity|cavum (related term)
+coeliac plexus|1
+(noun)|solar plexus|plexus celiacus|abdominal nerve plexus|nerve plexus (generic term)
+coeloglossum|1
+(noun)|Coeloglossum|genus Coeloglossum|monocot genus (generic term)|liliopsid genus (generic term)
+coeloglossum bracteatum|1
+(noun)|satyr orchid|Coeloglossum bracteatum|orchid (generic term)|orchidaceous plant (generic term)
+coeloglossum viride|1
+(noun)|frog orchid|Coeloglossum viride|orchid (generic term)|orchidaceous plant (generic term)
+coelogyne|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+coelom|1
+(noun)|celom|celoma|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+coelophysis|1
+(noun)|ceratosaur (generic term)|ceratosaurus (generic term)
+coelostat|1
+(noun)|optical device (generic term)
+coenobite|1
+(noun)|cenobite|religious (generic term)|eremite (antonym)
+coenobitic|1
+(adj)|cenobitic|cenobitical|coenobitical|religious (related term)|eremitic (antonym)
+coenobitical|1
+(adj)|cenobitic|coenobitic|cenobitical|religious (related term)|eremitic (antonym)
+coenzyme|1
+(noun)|molecule (generic term)
+coenzyme a|1
+(noun)|coenzyme A|coenzyme (generic term)
+coenzyme q|1
+(noun)|ubiquinone|coenzyme Q|quinone (generic term)|benzoquinone (generic term)|coenzyme (generic term)
+coequal|1
+(adj)|equal (similar term)
+coerce|1
+(verb)|hale|squeeze|pressure|force|compel (generic term)|oblige (generic term)|obligate (generic term)
+coercion|2
+(noun)|enforcement (generic term)
+(noun)|compulsion|causing (generic term)|causation (generic term)
+coercive|1
+(adj)|powerful (similar term)
+coereba|1
+(noun)|Coereba|genus Coereba|bird genus (generic term)
+coerebidae|1
+(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family (generic term)
+coetaneous|1
+(adj)|coeval|contemporaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+coeur d'alene|2
+(noun)|Coeur d'Alene|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Coeur d'Alene|town (generic term)
+coeur d'alene lake|1
+(noun)|Coeur d'Alene Lake|lake (generic term)
+coeval|2
+(adj)|coetaneous|contemporaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(noun)|contemporary|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+coevals|1
+(noun)|contemporaries|generation|people (generic term)
+coexist|2
+(verb)|coexist (generic term)
+(verb)|exist (generic term)|be (generic term)
+coexistence|1
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)
+coexistent|1
+(adj)|coexisting|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+coexisting|1
+(adj)|coexistent|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+coextensive|1
+(adj)|coterminous|conterminous|commensurate (similar term)
+cofactor|1
+(noun)|compound (generic term)|chemical compound (generic term)
+coffea|1
+(noun)|Coffea|genus Coffea|asterid dicot genus (generic term)
+coffea arabica|1
+(noun)|Arabian coffee|Coffea arabica|coffee (generic term)|coffee tree (generic term)
+coffea canephora|1
+(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee (generic term)|coffee tree (generic term)
+coffea liberica|1
+(noun)|Liberian coffee|Coffea liberica|coffee (generic term)|coffee tree (generic term)
+coffea robusta|1
+(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee (generic term)|coffee tree (generic term)
+coffee|4
+(noun)|java|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|coffee tree|tree (generic term)
+(noun)|coffee bean|coffee berry|seed (generic term)
+(noun)|chocolate|deep brown|umber|burnt umber|brown (generic term)|brownness (generic term)
+coffee-table book|1
+(noun)|book (generic term)|volume (generic term)
+coffee bar|1
+(noun)|cafe|coffeehouse|coffee shop|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+coffee bean|1
+(noun)|coffee berry|coffee|seed (generic term)
+coffee berry|1
+(noun)|coffee bean|coffee|seed (generic term)
+coffee blight|1
+(noun)|blight (generic term)
+coffee break|1
+(noun)|tea break|bite (generic term)|collation (generic term)|snack (generic term)
+coffee cake|1
+(noun)|coffeecake|cake (generic term)
+coffee can|1
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+coffee cappuccino|1
+(noun)|cappuccino|cappuccino coffee|coffee (generic term)|java (generic term)
+coffee cream|1
+(noun)|light cream|single cream|cream (generic term)
+coffee cup|1
+(noun)|cup (generic term)
+coffee fern|1
+(noun)|Pellaea andromedifolia|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+coffee filter|1
+(noun)|filter (generic term)
+coffee fungus|1
+(noun)|Pellicularia koleroga|fungus (generic term)
+coffee grinder|1
+(noun)|coffee mill|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+coffee grounds|1
+(noun)|dregs (generic term)|grounds (generic term)|settlings (generic term)
+coffee liqueur|1
+(noun)|liqueur (generic term)|cordial (generic term)
+coffee maker|1
+(noun)|kitchen appliance (generic term)
+coffee mill|1
+(noun)|coffee grinder|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+coffee mug|1
+(noun)|mug (generic term)
+coffee ring|1
+(noun)|coffeecake (generic term)|coffee cake (generic term)
+coffee roll|1
+(noun)|sweet roll|bun (generic term)|roll (generic term)
+coffee rose|1
+(noun)|crape jasmine|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|Tabernaemontana divaricate|shrub (generic term)|bush (generic term)
+coffee royal|1
+(noun)|cafe royale|coffee (generic term)|java (generic term)
+coffee senna|1
+(noun)|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+coffee shop|1
+(noun)|cafe|coffeehouse|coffee bar|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+coffee stall|1
+(noun)|stall (generic term)|stand (generic term)|sales booth (generic term)
+coffee substitute|1
+(noun)|coffee (generic term)|java (generic term)
+coffee table|1
+(noun)|cocktail table|table (generic term)
+coffee tree|1
+(noun)|coffee|tree (generic term)
+coffee urn|1
+(noun)|urn (generic term)
+coffeeberry|1
+(noun)|California buckthorn|California coffee|Rhamnus californicus|buckthorn (generic term)
+coffeecake|1
+(noun)|coffee cake|cake (generic term)
+coffeehouse|1
+(noun)|cafe|coffee shop|coffee bar|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+coffeepot|1
+(noun)|pot (generic term)
+coffer|2
+(noun)|caisson|lacuna|panel (generic term)
+(noun)|chest (generic term)
+cofferdam|1
+(noun)|caisson|pneumatic caisson|chamber (generic term)
+coffey still|1
+(noun)|Coffey still|still (generic term)
+coffin|2
+(noun)|casket|box (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+coffin nail|1
+(noun)|cigarette|cigaret|butt|fag|roll of tobacco (generic term)|smoke (generic term)
+cofounder|1
+(noun)|founder (generic term)|beginner (generic term)|founding father (generic term)|father (generic term)
+cog|4
+(noun)|subordinate (generic term)|subsidiary (generic term)|underling (generic term)|foot soldier (generic term)
+(noun)|sprocket|tooth (generic term)
+(verb)|roll out (generic term)|roll (generic term)
+(verb)|join (generic term)|bring together (generic term)
+cog railway|1
+(noun)|rack railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+cogency|2
+(noun)|relevance (generic term)|relevancy (generic term)
+(noun)|validity|rigor|rigour|credibility (generic term)|credibleness (generic term)|believability (generic term)
+cogent|1
+(adj)|telling|weighty|persuasive (similar term)
+cogent evidence|1
+(noun)|proof|evidence (generic term)|grounds (generic term)
+cogged|1
+(adj)|toothed (similar term)
+coggle|2
+(verb)|toddle|totter|dodder|paddle|waddle|walk (generic term)
+(verb)|wobble|move (generic term)
+cogitable|1
+(adj)|ponderable|thinkable (similar term)
+cogitate|2
+(verb)|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+(verb)|think|cerebrate|think over (related term)|think out (related term)|think up (related term)
+cogitation|2
+(noun)|idea (generic term)|thought (generic term)
+(noun)|study|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+cogitative|2
+(adj)|contemplation|reflection|reflexion|rumination|musing|thoughtfulness (related term)
+(adj)|thoughtful (similar term)
+cognac|1
+(noun)|Cognac|brandy (generic term)
+cognate|5
+(adj)|connate|related (similar term)|related to (similar term)
+(adj)|related (similar term)|related to (similar term)
+(adj)|akin|blood-related|consanguine|consanguineous|consanguineal|kin|related (similar term)
+(noun)|blood relation|blood relative|sib|relative (generic term)|relation (generic term)
+(noun)|cognate word|word (generic term)
+cognate word|1
+(noun)|cognate|word (generic term)
+cognation|2
+(noun)|matrilineage|enation|unilateral descent (generic term)
+(noun)|consanguinity|blood kinship|kinship (generic term)|family relationship (generic term)|relationship (generic term)|affinity (antonym)
+cognisable|1
+(adj)|knowable|cognizable|cognoscible|unknowable (antonym)
+cognisance|1
+(noun)|awareness|consciousness|cognizance|knowingness|knowing (generic term)|incognizance (antonym)
+cognisant|1
+(adj)|aware|cognizant|alert (similar term)|alive (similar term)|awake (similar term)|conscious (similar term)|sensible (similar term)|awake (related term)|conscious (related term)|sensible (related term)|sensitive (related term)|unaware (antonym)
+cognise|1
+(verb)|know|cognize|ignore (antonym)
+cognition|1
+(noun)|knowledge|noesis|psychological feature (generic term)
+cognitive|1
+(adj)|psychological feature (related term)
+cognitive content|1
+(noun)|content|mental object|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+cognitive factor|1
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+cognitive neuroscience|1
+(noun)|neuroscience (generic term)
+cognitive neuroscientist|1
+(noun)|cognitive scientist (generic term)
+cognitive operation|1
+(noun)|process|cognitive process|mental process|operation|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+cognitive process|1
+(noun)|process|mental process|operation|cognitive operation|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+cognitive psychology|1
+(noun)|psychology (generic term)|psychological science (generic term)
+cognitive science|1
+(noun)|science (generic term)|scientific discipline (generic term)
+cognitive scientist|1
+(noun)|scientist (generic term)|man of science (generic term)
+cognitive semantics|1
+(noun)|conceptual semantics|semasiology|semantics (generic term)
+cognitive state|1
+(noun)|state of mind|state (generic term)
+cognizable|1
+(adj)|knowable|cognisable|cognoscible|unknowable (antonym)
+cognizance|3
+(noun)|awareness|consciousness|cognisance|knowingness|knowing (generic term)|incognizance (antonym)
+(noun)|ken|knowing (generic term)
+(noun)|perception (generic term)
+cognizant|1
+(adj)|aware|cognisant|alert (similar term)|alive (similar term)|awake (similar term)|conscious (similar term)|sensible (similar term)|awake (related term)|conscious (related term)|sensible (related term)|sensitive (related term)|unaware (antonym)
+cognize|1
+(verb)|know|cognise|ignore (antonym)
+cognomen|2
+(noun)|nickname|moniker|sobriquet|soubriquet|byname|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+(noun)|surname|family name|last name|name (generic term)
+cognoscenti|1
+(noun)|connoisseur|authority (generic term)
+cognoscible|1
+(adj)|knowable|cognizable|cognisable|unknowable (antonym)
+cognovit judgement|1
+(noun)|confession of judgment|confession of judgement|cognovit judgment|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+cognovit judgment|1
+(noun)|confession of judgment|confession of judgement|cognovit judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+cogwheel|1
+(noun)|gear|gear wheel|geared wheel|wheel (generic term)
+cohabit|1
+(verb)|shack up|dwell (generic term)|live (generic term)|inhabit (generic term)
+cohabitation|1
+(noun)|inhabitancy (generic term)|inhabitation (generic term)|habitation (generic term)
+cohan|1
+(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+cohere|3
+(verb)|cling|cleave|adhere|stick|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|be (generic term)
+coherence|2
+(noun)|coherency|cohesion|cohesiveness|connection (generic term)|link (generic term)|connectedness (generic term)|incoherence (antonym)
+(noun)|coherency|comprehensibility (generic term)|understandability (generic term)
+coherency|2
+(noun)|coherence|cohesion|cohesiveness|connection (generic term)|link (generic term)|connectedness (generic term)|incoherence (antonym)
+(noun)|coherence|comprehensibility (generic term)|understandability (generic term)
+coherent|3
+(adj)|consistent|logical|ordered|orderly|seamless (similar term)|logical (related term)|rational (related term)|incoherent (antonym)
+(adj)|logical|lucid|rational (similar term)
+(adj)|tenacious|adhesive (similar term)
+coherently|1
+(adv)|incoherently (antonym)
+cohesion|3
+(noun)|coherence|coherency|cohesiveness|connection (generic term)|link (generic term)|connectedness (generic term)|incoherence (antonym)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|force (generic term)
+cohesive|2
+(adj)|adhesive (similar term)
+(adj)|united (similar term)
+cohesiveness|2
+(noun)|coherence|coherency|cohesion|connection (generic term)|link (generic term)|connectedness (generic term)|incoherence (antonym)
+(noun)|glueyness|gluiness|gumminess|tackiness|ropiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+cohn|1
+(noun)|Cohn|Ferdinand Julius Cohn|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+coho|2
+(noun)|silver salmon|coho salmon|cohoe|salmon (generic term)
+(noun)|cohoe|coho salmon|blue jack|silver salmon|Oncorhynchus kisutch|salmon (generic term)
+coho salmon|2
+(noun)|silver salmon|coho|cohoe|salmon (generic term)
+(noun)|coho|cohoe|blue jack|silver salmon|Oncorhynchus kisutch|salmon (generic term)
+cohoe|2
+(noun)|silver salmon|coho salmon|coho|salmon (generic term)
+(noun)|coho|coho salmon|blue jack|silver salmon|Oncorhynchus kisutch|salmon (generic term)
+cohort|3
+(noun)|company (generic term)
+(noun)|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|age group|age bracket|people (generic term)
+cohosh|1
+(noun)|baneberry|herb Christopher|poisonous plant (generic term)
+cohune|1
+(noun)|cohune palm|Orbignya cohune|feather palm (generic term)
+cohune-nut oil|1
+(noun)|cohune oil|cohune fat|oil (generic term)
+cohune fat|1
+(noun)|cohune-nut oil|cohune oil|oil (generic term)
+cohune nut|1
+(noun)|seed (generic term)
+cohune oil|1
+(noun)|cohune-nut oil|cohune fat|oil (generic term)
+cohune palm|1
+(noun)|Orbignya cohune|cohune|feather palm (generic term)
+coif|4
+(noun)|hairdo|hairstyle|hair style|coiffure|hair (generic term)
+(noun)|skullcap (generic term)
+(verb)|cover (generic term)
+(verb)|dress|arrange|set|do|coiffe|coiffure|groom (generic term)|neaten (generic term)
+coiffe|1
+(verb)|dress|arrange|set|do|coif|coiffure|groom (generic term)|neaten (generic term)
+coiffeur|1
+(noun)|hairdresser (generic term)|hairstylist (generic term)|stylist (generic term)|styler (generic term)
+coiffeuse|1
+(noun)|hairdresser (generic term)|hairstylist (generic term)|stylist (generic term)|styler (generic term)
+coiffure|2
+(noun)|hairdo|hairstyle|hair style|coif|hair (generic term)
+(verb)|dress|arrange|set|do|coif|coiffe|groom (generic term)|neaten (generic term)
+coign|2
+(noun)|quoin|coigne|wedge (generic term)
+(noun)|quoin|coigne|keystone (generic term)|key (generic term)|headstone (generic term)
+coigne|2
+(noun)|quoin|coign|wedge (generic term)
+(noun)|quoin|coign|keystone (generic term)|key (generic term)|headstone (generic term)
+coigue|1
+(noun)|Coigue|Nothofagus dombeyi|southern beech (generic term)|evergreen beech (generic term)
+coil|9
+(noun)|spiral|volute|whorl|helix|structure (generic term)|construction (generic term)
+(noun)|whorl|roll|curl|curlicue|ringlet|gyre|scroll|round shape (generic term)
+(noun)|transformer (generic term)
+(noun)|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+(noun)|tube (generic term)|tubing (generic term)
+(noun)|reactor (generic term)
+(verb)|gyrate|spiral|turn (generic term)
+(verb)|handbuild|hand-build|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|loop|curl|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)|uncoil (antonym)
+coil spring|1
+(noun)|volute spring|spring (generic term)
+coiled|1
+(adj)|coiling (similar term)|helical (similar term)|spiral (similar term)|spiraling (similar term)|volute (similar term)|voluted (similar term)|whorled (similar term)|turbinate (similar term)|convolute (similar term)|convoluted (similar term)|curled (similar term)|curled up (similar term)|involute (similar term)|involute (similar term)|rolled (similar term)|looped (similar term)|whorled (similar term)|twined (similar term)|twisted (similar term)|wound (similar term)|uncoiled (antonym)
+coiling|1
+(adj)|helical|spiral|spiraling|volute|voluted|whorled|turbinate|coiled (similar term)
+coin|3
+(noun)|coinage (generic term)|mintage (generic term)|specie (generic term)|metal money (generic term)
+(verb)|create verbally (generic term)
+(verb)|mint|strike|create from raw material (generic term)|create from raw stuff (generic term)
+coin-operated|1
+(adj)|machine (related term)
+coin bank|1
+(noun)|savings bank|money box|bank|container (generic term)
+coin blank|1
+(noun)|planchet|disk (generic term)|disc (generic term)
+coin box|1
+(noun)|receptacle (generic term)
+coin collecting|1
+(noun)|numismatics|numismatology|coin collection|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+coin collection|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|numismatics|numismatology|coin collecting|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+coin collector|1
+(noun)|numismatist|numismatologist|collector (generic term)|aggregator (generic term)
+coin machine|1
+(noun)|slot machine|machine (generic term)
+coin silver|1
+(noun)|silver (generic term)|Ag (generic term)|atomic number 47 (generic term)
+coin slot|1
+(noun)|slot (generic term)
+coinage|3
+(noun)|mintage|specie|metal money|currency (generic term)
+(noun)|neologism|neology|word (generic term)
+(noun)|neologism|neology|invention (generic term)
+coincide|3
+(verb)|co-occur|cooccur|coexist (generic term)|cooccur with (related term)
+(verb)|concur|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+coincidence|3
+(noun)|happenstance|accident (generic term)|fortuity (generic term)|chance event (generic term)
+(noun)|position (generic term)|spatial relation (generic term)
+(noun)|concurrence|conjunction|co-occurrence|simultaneity (generic term)|simultaneousness (generic term)
+coincident|2
+(adj)|coincidental|coinciding|concurrent|co-occurrent|cooccurring|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(adj)|coinciding|congruent (similar term)
+coincidental|1
+(adj)|coincident|coinciding|concurrent|co-occurrent|cooccurring|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+coincidentally|1
+(adv)|coincidently
+coincidently|1
+(adv)|coincidentally
+coinciding|2
+(adj)|coincident|coincidental|concurrent|co-occurrent|cooccurring|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(adj)|coincident|congruent (similar term)
+coiner|3
+(noun)|forger (generic term)|counterfeiter (generic term)
+(noun)|generator (generic term)|source (generic term)|author (generic term)
+(noun)|minter|moneyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+coinsurance|1
+(noun)|insurance (generic term)
+coinsure|1
+(verb)|insure (generic term)
+coir|1
+(noun)|fiber (generic term)|fibre (generic term)
+coital|1
+(adj)|copulatory|sexual activity|sexual practice|sex|sex activity (related term)
+coition|1
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+coitus|1
+(noun)|sexual intercourse|intercourse|sex act|copulation|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+coitus interruptus|1
+(noun)|withdrawal method|pulling out|onanism|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+coke|4
+(noun)|fuel (generic term)
+(noun)|Coca Cola|Coke|cola (generic term)|dope (generic term)
+(noun)|blow|nose candy|snow|C|cocaine (generic term)|cocain (generic term)
+(verb)|change state (generic term)|turn (generic term)
+col|1
+(noun)|gap|pass (generic term)|mountain pass (generic term)|notch (generic term)
+cola|2
+(noun)|Cola|genus Cola|dilleniid dicot genus (generic term)
+(noun)|dope|soft drink (generic term)
+cola acuminata|1
+(noun)|kola|kola nut|kola nut tree|goora nut|Cola acuminata|nut tree (generic term)
+cola extract|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+cola nut|1
+(noun)|kola nut|nut (generic term)
+colander|1
+(noun)|cullender|strainer (generic term)
+colaptes|1
+(noun)|Colaptes|genus Colaptes|bird genus (generic term)
+colaptes auratus|1
+(noun)|yellow-shafted flicker|Colaptes auratus|yellowhammer|flicker (generic term)
+colaptes caper collaris|1
+(noun)|red-shafted flicker|Colaptes caper collaris|flicker (generic term)
+colaptes chrysoides|1
+(noun)|gilded flicker|Colaptes chrysoides|flicker (generic term)
+colbert|1
+(noun)|Colbert|Colbert butter|sauce (generic term)
+colbert butter|1
+(noun)|Colbert|Colbert butter|sauce (generic term)
+colchicaceae|1
+(noun)|Colchicaceae|family Colchicaceae|liliid monocot family (generic term)
+colchicum|1
+(noun)|Colchicum|genus Colchicum|liliid monocot genus (generic term)
+colchicum autumnale|1
+(noun)|autumn crocus|meadow saffron|naked lady|Colchicum autumnale|bulbous plant (generic term)
+colchine|1
+(noun)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+colchis|1
+(noun)|Colchis|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+cold|16
+(adj)|acold (similar term)|algid (similar term)|arctic (similar term)|frigid (similar term)|gelid (similar term)|glacial (similar term)|icy (similar term)|polar (similar term)|bleak (similar term)|cutting (similar term)|raw (similar term)|crisp (similar term)|frosty (similar term)|nipping (similar term)|nippy (similar term)|snappy (similar term)|parky (similar term)|frigorific (similar term)|frore (similar term)|frosty (similar term)|rimed (similar term)|rimy (similar term)|heatless (similar term)|ice-cold (similar term)|refrigerant (similar term)|refrigerating (similar term)|refrigerated (similar term)|shivery (similar term)|stone-cold (similar term)|unheated (similar term)|unwarmed (similar term)|cool (related term)|frozen (related term)|hot (antonym)
+(adj)|emotionless (similar term)|passionless (similar term)|frigid (similar term)|frosty (similar term)|frozen (similar term)|glacial (similar term)|icy (similar term)|wintry (similar term)|cool (related term)|passionless (related term)|hot (antonym)
+(adj)|stale (similar term)
+(adj)|cool (similar term)
+(adj)|perfect (similar term)
+(adj)|stale|old (similar term)
+(adj)|intense (similar term)
+(adj)|frigid|unloving (similar term)
+(adj)|cold-blooded|inhuman|insensate|inhumane (similar term)
+(adj)|unenthusiastic (similar term)
+(adj)|unconscious (similar term)
+(adj)|far (similar term)
+(adj)|dead (similar term)
+(noun)|common cold|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)|communicable disease (generic term)
+(noun)|coldness|low temperature|frigidity|frigidness|temperature (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|hotness (antonym)
+(noun)|coldness|temperature (generic term)
+cold-blooded|2
+(adj)|cold|inhuman|insensate|inhumane (similar term)
+(adj)|poikilothermic (similar term)|poikilothermous (similar term)|heterothermic (similar term)|ectothermic (similar term)|warm-blooded (antonym)
+cold-bloodedly|1
+(adv)|in cold blood
+cold-cream|1
+(verb)|put on (generic term)|apply (generic term)
+cold-eyed|1
+(adj)|dispassionate|impartial (similar term)|fair (similar term)
+cold-shoulder|1
+(verb)|slight|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+cold-temperate|1
+(adj)|temperate (similar term)
+cold-water flat|1
+(noun)|apartment (generic term)|flat (generic term)
+cold cash|1
+(noun)|ready cash|ready money|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+cold cereal|1
+(noun)|dry cereal|cereal (generic term)
+cold chisel|1
+(noun)|set chisel|chisel (generic term)
+cold comfort|1
+(noun)|consolation (generic term)|solace (generic term)|solacement (generic term)
+cold cream|1
+(noun)|coldcream|face cream|vanishing cream|cream (generic term)|ointment (generic term)|emollient (generic term)
+cold cuts|1
+(noun)|meat (generic term)
+cold duck|1
+(noun)|sparkling wine (generic term)
+cold feet|1
+(noun)|timidity (generic term)|timidness (generic term)|timorousness (generic term)
+cold fish|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+cold frame|1
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+cold front|1
+(noun)|polar front|front (generic term)
+cold fusion|1
+(noun)|fusion (generic term)|nuclear fusion (generic term)|nuclear fusion reaction (generic term)
+cold gangrene|1
+(noun)|dry gangrene|mumification necrosis|mummification|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+cold medicine|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+cold rubber|1
+(noun)|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+cold shoulder|1
+(noun)|snub|cut|rebuff (generic term)|slight (generic term)
+cold snap|1
+(noun)|cold spell|while (generic term)|piece (generic term)|spell (generic term)|patch (generic term)
+cold sober|1
+(adj)|stone-sober|sober (similar term)
+cold sore|1
+(noun)|oral herpes|herpes labialis|fever blister|herpes simplex (generic term)
+cold spell|1
+(noun)|cold snap|while (generic term)|piece (generic term)|spell (generic term)|patch (generic term)
+cold storage|2
+(noun)|abeyance (generic term)|suspension (generic term)
+(noun)|storage (generic term)
+cold stuffed tomato|1
+(noun)|stuffed tomato|dish (generic term)
+cold sweat|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+cold turkey|2
+(noun)|expression (generic term)|verbal expression (generic term)|verbalism (generic term)
+(noun)|withdrawal (generic term)|drug withdrawal (generic term)
+cold war|2
+(noun)|hostility (generic term)|enmity (generic term)|antagonism (generic term)|hot war (antonym)
+(noun)|Cold War|hostility (generic term)|enmity (generic term)|antagonism (generic term)
+cold water|1
+(noun)|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+cold wave|1
+(noun)|wave (generic term)
+cold weather|1
+(noun)|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+cold work|1
+(verb)|coldwork|work (generic term)|work on (generic term)|process (generic term)
+coldcock|1
+(verb)|deck|dump|knock down|floor|beat (generic term)
+coldcream|1
+(noun)|cold cream|face cream|vanishing cream|cream (generic term)|ointment (generic term)|emollient (generic term)
+coldhearted|1
+(adj)|brittle (similar term)|unloving (related term)|warmhearted (antonym)
+coldheartedness|1
+(noun)|heartlessness|hardheartedness|unconcern (generic term)
+coldly|1
+(adv)|in cold blood
+coldness|3
+(noun)|cold|temperature (generic term)
+(noun)|coolness|frigidity|frigidness|iciness|chilliness|unemotionality (generic term)|emotionlessness (generic term)
+(noun)|cold|low temperature|frigidity|frigidness|temperature (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|hotness (antonym)
+coldwork|1
+(verb)|cold work|work (generic term)|work on (generic term)|process (generic term)
+cole|2
+(noun)|kale|kail|borecole|colewort|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|kale|kail|cabbage (generic term)|chou (generic term)
+cole albert porter|1
+(noun)|Porter|Cole Porter|Cole Albert Porter|composer (generic term)
+cole porter|1
+(noun)|Porter|Cole Porter|Cole Albert Porter|composer (generic term)
+coleman hawkins|1
+(noun)|Hawkins|Coleman Hawkins|saxophonist (generic term)|saxist (generic term)
+coleonyx|1
+(noun)|Coleonyx|genus Coleonyx|reptile genus (generic term)
+coleoptera|1
+(noun)|Coleoptera|order Coleoptera|animal order (generic term)
+coleridge|1
+(noun)|Coleridge|Samuel Taylor Coleridge|poet (generic term)
+coleridgean|1
+(adj)|Coleridgian|Coleridgean|poet (related term)
+coleridgian|1
+(adj)|Coleridgian|Coleridgean|poet (related term)
+coleslaw|1
+(noun)|slaw|salad (generic term)
+colette|1
+(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer (generic term)|author (generic term)
+coleus|1
+(noun)|flame nettle|herb (generic term)|herbaceous plant (generic term)
+coleus amboinicus|1
+(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus (generic term)|flame nettle (generic term)
+coleus aromaticus|1
+(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus (generic term)|flame nettle (generic term)
+coleus blumei|1
+(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus (generic term)|flame nettle (generic term)
+colewort|1
+(noun)|kale|kail|cole|borecole|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+colic|1
+(noun)|intestinal colic|gripes|griping|pain (generic term)|hurting (generic term)
+colic artery|1
+(noun)|arteria colica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+colic root|1
+(noun)|colicroot|crow corn|star grass|unicorn root|liliaceous plant (generic term)
+colic vein|1
+(noun)|vena colica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+colicky|1
+(adj)|flatulent|gassy|unhealthy (similar term)
+colicroot|1
+(noun)|colic root|crow corn|star grass|unicorn root|liliaceous plant (generic term)
+colima|1
+(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano (generic term)
+colin luther powell|1
+(noun)|Powell|Colin Powell|Colin luther Powell|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+colin powell|1
+(noun)|Powell|Colin Powell|Colin luther Powell|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+colinus|1
+(noun)|Colinus|genus Colinus|bird genus (generic term)
+colinus virginianus|1
+(noun)|northern bobwhite|Colinus virginianus|bobwhite (generic term)|bobwhite quail (generic term)|partridge (generic term)
+coliphage|1
+(noun)|bacteriophage (generic term)|phage (generic term)
+coliseum|1
+(noun)|amphitheater|amphitheatre|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+colitis|1
+(noun)|inflammatory bowel disease|inflammation (generic term)|redness (generic term)|rubor (generic term)
+collaborate|2
+(verb)|join forces|cooperate|get together|work (generic term)
+(verb)|collaborate (generic term)|join forces (generic term)|cooperate (generic term)|get together (generic term)
+collaboration|2
+(noun)|coaction|cooperation (generic term)
+(noun)|collaborationism|quislingism|cooperation (generic term)
+collaborationism|1
+(noun)|collaboration|quislingism|cooperation (generic term)
+collaborationist|1
+(noun)|collaborator|quisling|traitor (generic term)|treasonist (generic term)
+collaborative|1
+(adj)|cooperative (similar term)
+collaborator|3
+(noun)|confederate|henchman|partner in crime|accessory (generic term)|accessary (generic term)
+(noun)|collaborationist|quisling|traitor (generic term)|treasonist (generic term)
+(noun)|cooperator|partner|pardner|associate (generic term)
+collage|2
+(noun)|montage|paste-up (generic term)|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+collage film|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+collagen|1
+(noun)|scleroprotein (generic term)|albuminoid (generic term)
+collagenase|1
+(noun)|enzyme (generic term)
+collagenic|1
+(adj)|collagenous|scleroprotein|albuminoid (related term)
+collagenous|1
+(adj)|collagenic|scleroprotein|albuminoid (related term)
+collapsable|1
+(adj)|collapsible|foldable (similar term)|foldaway (similar term)|folding (similar term)|telescopic (similar term)|tip-up (similar term)|noncollapsible (antonym)
+collapse|11
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(noun)|flop|descent (generic term)
+(noun)|crash|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|fall in|cave in|give|give way|break|founder|change (generic term)
+(verb)|break down|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+(verb)|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|crumble|crumple|tumble|break down|change integrity (generic term)
+(verb)|burst
+(verb)|crack up|crack|crock up|break up|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+(verb)|weaken (generic term)
+collapsible|1
+(adj)|collapsable|foldable (similar term)|foldaway (similar term)|folding (similar term)|telescopic (similar term)|tip-up (similar term)|noncollapsible (antonym)
+collapsible shelter|1
+(noun)|tent|shelter (generic term)
+collar|9
+(noun)|neckband|band (generic term)
+(noun)|shoe collar|brim (generic term)|rim (generic term)|lip (generic term)
+(noun)|band (generic term)
+(noun)|choker|dog collar|neckband|necklace (generic term)
+(noun)|leash|restraint (generic term)
+(noun)|apprehension|arrest|catch|pinch|taking into custody|capture (generic term)|gaining control (generic term)|seizure (generic term)
+(verb)|nail|apprehend|arrest|pick up|nab|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+collar blight|1
+(noun)|blight (generic term)
+collar cell|1
+(noun)|choanocyte|flagellated cell (generic term)
+collarbone|1
+(noun)|clavicle|bone (generic term)|os (generic term)
+collard|1
+(noun)|kale (generic term)|kail (generic term)|cole (generic term)|borecole (generic term)|colewort (generic term)|Brassica oleracea acephala (generic term)
+collard greens|1
+(noun)|collards|kale (generic term)|kail (generic term)|cole (generic term)
+collards|1
+(noun)|collard greens|kale (generic term)|kail (generic term)|cole (generic term)
+collared lizard|1
+(noun)|iguanid (generic term)|iguanid lizard (generic term)
+collared peccary|1
+(noun)|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary (generic term)|musk hog (generic term)
+collared pika|1
+(noun)|Ochotona collaris|pika (generic term)|mouse hare (generic term)|rock rabbit (generic term)|coney (generic term)|cony (generic term)
+collarless|1
+(adj)|band (related term)
+collate|2
+(verb)|compare (generic term)
+(verb)|order (generic term)
+collateral|5
+(adj)|indirect|related (related term)|lineal (antonym)
+(adj)|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+(adj)|secondary (similar term)
+(adj)|parallel (similar term)
+(noun)|security interest (generic term)
+collateral damage|1
+(noun)|fatal accident (generic term)|casualty (generic term)
+collateral fraud|1
+(noun)|extrinsic fraud|fraud (generic term)
+collateralize|1
+(verb)|pledge (generic term)
+collation|3
+(noun)|bite|snack|meal (generic term)|repast (generic term)
+(noun)|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+(noun)|comparison (generic term)|comparing (generic term)
+colleague|2
+(noun)|co-worker|fellow worker|workfellow|associate (generic term)
+(noun)|confrere|fellow|associate (generic term)
+collect|7
+(adj)|cod|due (similar term)|owed (similar term)
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+(verb)|roll up|accumulate|pile up|amass|compile|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|take in|take (generic term)
+(verb)|gather|garner|pull together|gather up (related term)|spread (antonym)
+(verb)|pull in|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|pick up|gather up|call for|get (generic term)|acquire (generic term)
+collect call|1
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+collectable|2
+(adj)|collectible|payable|due (similar term)|owed (similar term)
+(noun)|collectible|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+collected|3
+(adj)|gathered|ungathered (antonym)|uncollected (antonym)
+(adj)|accumulated|amassed|assembled|congregate|massed|concentrated (similar term)
+(adj)|equanimous|poised|self-collected|self-contained|self-possessed|composed (similar term)
+collectedly|1
+(adv)|composedly
+collectible|2
+(adj)|collectable|payable|due (similar term)|owed (similar term)
+(noun)|collectable|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+collecting|1
+(noun)|collection|assembling|aggregation|grouping (generic term)
+collection|4
+(noun)|aggregation|accumulation|assemblage|group (generic term)|grouping (generic term)
+(noun)|compendium|publication (generic term)
+(noun)|solicitation|appeal|ingathering|request (generic term)|petition (generic term)|postulation (generic term)
+(noun)|collecting|assembling|aggregation|grouping (generic term)
+collection plate|1
+(noun)|plate|receptacle (generic term)
+collective|4
+(adj)|corporate|joint (similar term)
+(adj)|agglomerate (similar term)|agglomerated (similar term)|agglomerative (similar term)|clustered (similar term)|aggregate (similar term)|aggregated (similar term)|aggregative (similar term)|mass (similar term)|assembled (similar term)|built (similar term)|made-up (similar term)|collectivized (similar term)|collectivised (similar term)|knockdown (similar term)|integrative (related term)|joint (related term)|united (related term)|distributive (antonym)
+(adj)|socialistic (similar term)|socialist (similar term)
+(noun)|enterprise (generic term)
+collective agreement|1
+(noun)|labor contract|labor agreement|contract (generic term)
+collective bargaining|1
+(noun)|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+collective farm|1
+(noun)|collective (generic term)
+collective noun|1
+(noun)|noun (generic term)
+collective security|1
+(noun)|peace (generic term)
+collectively|1
+(adv)|jointly|conjointly|together|put together
+collectivisation|1
+(noun)|collectivization|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+collectivise|1
+(verb)|collectivize|organize (generic term)|organise (generic term)
+collectivised|2
+(adj)|collectivized|collective (similar term)
+(adj)|collectivist|collectivistic|collectivized|state-controlled|socialistic (similar term)|socialist (similar term)
+collectivism|2
+(noun)|Bolshevism|sovietism|communism (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+collectivist|2
+(adj)|collectivistic|collectivized|collectivised|state-controlled|socialistic (similar term)|socialist (similar term)
+(noun)|leftist|left-winger|socialist (generic term)
+collectivistic|1
+(adj)|collectivist|collectivized|collectivised|state-controlled|socialistic (similar term)|socialist (similar term)
+collectivization|1
+(noun)|collectivisation|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+collectivize|1
+(verb)|collectivise|organize (generic term)|organise (generic term)
+collectivized|2
+(adj)|collectivised|collective (similar term)
+(adj)|collectivist|collectivistic|collectivised|state-controlled|socialistic (similar term)|socialist (similar term)
+collector|4
+(noun)|aggregator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|gatherer|accumulator|holder (generic term)|bearer (generic term)
+(noun)|crater (generic term)
+(noun)|electrode (generic term)
+collector's item|1
+(noun)|showpiece|piece de resistance|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+collector of internal revenue|1
+(noun)|tax collector|taxman|exciseman|internal revenue agent|bureaucrat (generic term)|administrative official (generic term)
+colleen|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+college|4
+(noun)|body (generic term)
+(noun)|educational institution (generic term)
+(noun)|prison (generic term)|prison house (generic term)
+(noun)|building complex (generic term)|complex (generic term)
+college boy|1
+(noun)|collegian|college man|student (generic term)|pupil (generic term)|educatee (generic term)
+college girl|1
+(noun)|co-ed|undergraduate (generic term)|undergrad (generic term)
+college level|1
+(noun)|grade (generic term)|level (generic term)|tier (generic term)
+college man|1
+(noun)|collegian|college boy|student (generic term)|pupil (generic term)|educatee (generic term)
+college of cardinals|1
+(noun)|Sacred College|College of Cardinals|body (generic term)
+college student|1
+(noun)|university student|collegian (generic term)|college man (generic term)|college boy (generic term)
+collegial|2
+(adj)|associate (related term)
+(adj)|collegiate|body (related term)
+collegian|1
+(noun)|college man|college boy|student (generic term)|pupil (generic term)|educatee (generic term)
+collegiate|1
+(adj)|collegial|body (related term)
+collegiate dictionary|1
+(noun)|desk dictionary|dictionary (generic term)|lexicon (generic term)
+collembola|1
+(noun)|Collembola|order Collembola|animal order (generic term)
+collembolan|1
+(noun)|springtail|insect (generic term)
+collet|3
+(noun)|ferrule|cap (generic term)
+(noun)|collet chuck|chuck (generic term)
+(noun)|band (generic term)
+collet chuck|1
+(noun)|collet|chuck (generic term)
+collide|2
+(verb)|clash|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|clash|jar|conflict (generic term)
+collide with|1
+(verb)|hit|strike|impinge on|run into|touch (generic term)|miss (antonym)
+collider|1
+(noun)|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+collie|1
+(noun)|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+collier|1
+(noun)|coal miner|pitman|miner (generic term)|mineworker (generic term)
+colliery|1
+(noun)|pit|workplace (generic term)|work (generic term)
+colligate|2
+(verb)|associate|tie in|relate|link|link up|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+(verb)|subsume|include (generic term)
+colligation|2
+(noun)|junction|conjunction|conjugation|union (generic term)|unification (generic term)
+(noun)|association (generic term)|connection (generic term)|connexion (generic term)
+collimate|2
+(verb)|parallel|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+collimation|1
+(noun)|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+collimator|2
+(noun)|telescope (generic term)|scope (generic term)
+(noun)|optical device (generic term)
+collinear|1
+(adj)|linear (similar term)|one-dimensional (similar term)
+collins|2
+(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer (generic term)|author (generic term)
+(noun)|Tom Collins|highball (generic term)
+collinsia|1
+(noun)|Collinsia|genus Collinsia|asterid dicot genus (generic term)
+collinsia bicolor|1
+(noun)|purple chinese houses|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower (generic term)|wild flower (generic term)
+collinsia heterophylla|1
+(noun)|purple chinese houses|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower (generic term)|wild flower (generic term)
+collinsia parviflora|1
+(noun)|maiden blue-eyed Mary|Collinsia parviflora|wildflower (generic term)|wild flower (generic term)
+collinsia verna|1
+(noun)|blue-eyed Mary|Collinsia verna|wildflower (generic term)|wild flower (generic term)
+collinsonia|1
+(noun)|Collinsonia|genus Collinsonia|asterid dicot genus (generic term)
+collinsonia canadensis|1
+(noun)|horse balm|horseweed|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+collis potter huntington|1
+(noun)|Huntington|Collis Potter Huntington|businessman (generic term)|man of affairs (generic term)
+collision|3
+(noun)|hit|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|accident (generic term)
+(noun)|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+collision course|2
+(noun)|path (generic term)|track (generic term)|course (generic term)
+(noun)|course (generic term)|course of action (generic term)
+collocalia|1
+(noun)|Collocalia|genus Collocalia|bird genus (generic term)
+collocalia inexpectata|1
+(noun)|swiftlet|Collocalia inexpectata|swift (generic term)
+collocate|2
+(verb)|occur (generic term)
+(verb)|lump|chunk|group (generic term)
+collocate with|1
+(verb)|construe with|cooccur with|co-occur with|go with|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+collocation|2
+(noun)|language unit (generic term)|linguistic unit (generic term)
+(noun)|juxtaposition|apposition|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+collodion|1
+(noun)|solution (generic term)
+collogue|1
+(verb)|confer (generic term)|confabulate (generic term)|confab (generic term)|consult (generic term)
+colloid|1
+(noun)|mixture (generic term)
+colloidal|1
+(adj)|mixture (related term)
+colloidal gel|1
+(noun)|gel|colloid (generic term)
+colloidal solution|1
+(noun)|sol|colloidal suspension|colloid (generic term)
+colloidal suspension|1
+(noun)|sol|colloidal solution|colloid (generic term)
+colloquial|1
+(adj)|conversational|informal (similar term)
+colloquialism|1
+(noun)|formulation (generic term)|expression (generic term)
+colloquially|1
+(adv)|conversationally|informally
+colloquium|2
+(noun)|conference (generic term)
+(noun)|address (generic term)|speech (generic term)
+colloquy|2
+(noun)|conference (generic term)|group discussion (generic term)
+(noun)|conversation (generic term)
+collotype|1
+(noun)|collotype printing|photogelatin process|planographic printing (generic term)|planography (generic term)
+collotype printing|1
+(noun)|collotype|photogelatin process|planographic printing (generic term)|planography (generic term)
+collude|1
+(verb)|conspire|interact (generic term)
+collusion|2
+(noun)|agreement (generic term)|arrangement (generic term)
+(noun)|connivance|agreement (generic term)
+collusive|1
+(adj)|conniving|covert (similar term)
+colly|1
+(verb)|dirty|soil|begrime|grime|bemire|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+collyrium|1
+(noun)|eye-lotion|eyewash|lotion (generic term)|application (generic term)
+collywobbles|1
+(noun)|cholera morbus|gastroenteritis (generic term)|stomach flu (generic term)|intestinal flu (generic term)
+colobus|1
+(noun)|colobus monkey|Old World monkey (generic term)|catarrhine (generic term)
+colobus guereza|1
+(noun)|guereza|Colobus guereza|colobus (generic term)|colobus monkey (generic term)
+colobus monkey|1
+(noun)|colobus|Old World monkey (generic term)|catarrhine (generic term)
+colocasia|1
+(noun)|Colocasia|genus Colocasia|monocot genus (generic term)|liliopsid genus (generic term)
+colocasia esculenta|1
+(noun)|taro|taro plant|dalo|dasheen|Colocasia esculenta|arum (generic term)|aroid (generic term)
+cologne|2
+(noun)|Cologne|Koln|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|cologne water|eau de cologne|perfume (generic term)|essence (generic term)
+cologne water|1
+(noun)|cologne|eau de cologne|perfume (generic term)|essence (generic term)
+colombia|1
+(noun)|Colombia|Republic of Colombia|South American country (generic term)|South American nation (generic term)
+colombian|2
+(adj)|Colombian|South American country|South American nation (related term)
+(noun)|Colombian|South American (generic term)
+colombian monetary unit|1
+(noun)|Colombian monetary unit|monetary unit (generic term)
+colombian peso|1
+(noun)|Colombian peso|peso|Colombian monetary unit (generic term)
+colombo|1
+(noun)|Colombo|capital of Sri Lanka|national capital (generic term)
+colon|5
+(noun)|large intestine (generic term)
+(noun)|El Salvadoran colon|El Salvadoran monetary unit (generic term)
+(noun)|Costa Rican colon|Costa Rican monetary unit (generic term)
+(noun)|Colon|Aspinwall|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+colon cancer|1
+(noun)|carcinoma (generic term)
+colonel|1
+(noun)|commissioned military officer (generic term)
+colonel blimp|2
+(noun)|Colonel Blimp|Blimp|reactionary (generic term)|ultraconservative (generic term)|extreme right-winger (generic term)
+(noun)|Colonel Blimp|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+colonial|4
+(adj)|body (related term)
+(adj)|animal group (related term)
+(adj)|compound|complex (similar term)
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+colonialism|1
+(noun)|exploitation (generic term)|victimization (generic term)|victimisation (generic term)|using (generic term)
+colonialist|1
+(noun)|believer (generic term)|truster (generic term)
+colonic|2
+(adj)|large intestine (related term)
+(noun)|colonic irrigation|enema (generic term)|clyster (generic term)
+colonic irrigation|1
+(noun)|colonic|enema (generic term)|clyster (generic term)
+colonisation|1
+(noun)|colonization|settlement|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+colonise|2
+(verb)|colonize|annex (generic term)|decolonise (antonym)|decolonize (antonym)
+(verb)|colonize|settle (generic term)|locate (generic term)
+colonised|1
+(adj)|colonized|settled|inhabited (similar term)
+coloniser|1
+(noun)|colonizer|founder (generic term)|beginner (generic term)|founding father (generic term)|father (generic term)
+colonist|1
+(noun)|settler|migrant (generic term)|migrator (generic term)
+colonization|1
+(noun)|colonisation|settlement|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+colonize|2
+(verb)|colonise|annex (generic term)|decolonise (antonym)|decolonize (antonym)
+(verb)|colonise|settle (generic term)|locate (generic term)
+colonized|1
+(adj)|colonised|settled|inhabited (similar term)
+colonizer|1
+(noun)|coloniser|founder (generic term)|beginner (generic term)|founding father (generic term)|father (generic term)
+colonnade|2
+(noun)|structure (generic term)|construction (generic term)
+(noun)|arcade|structure (generic term)|construction (generic term)
+colonnaded|1
+(adj)|columned (similar term)
+colonoscope|1
+(noun)|endoscope (generic term)
+colonoscopy|1
+(noun)|endoscopy (generic term)
+colony|4
+(noun)|settlement|body (generic term)
+(noun)|Colony|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|dependency|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|animal group (generic term)
+colophon|1
+(noun)|emblem (generic term)
+colophony|1
+(noun)|natural resin (generic term)
+color|15
+(adj)|colour|black-and-white (antonym)
+(noun)|colour|coloring|colouring|visual property (generic term)|colorlessness (antonym)
+(noun)|colour|vividness|interest (generic term)|interestingness (generic term)
+(noun)|colour|coloration|colouration|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|colour|people of color|people of colour|race (generic term)
+(noun)|semblance|gloss|colour|appearance (generic term)|visual aspect (generic term)
+(noun)|coloring material|colouring material|colour|material (generic term)|stuff (generic term)
+(noun)|colour|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|colour|appearance (generic term)|visual aspect (generic term)
+(verb)|colorize|colorise|colourise|colourize|colour|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+(verb)|tinge|colour|distort|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|colour|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|colour|emblazon|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|colour|gloss|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+(verb)|discolor|discolour|colour|change (generic term)
+color-blind|2
+(adj)|colour-blind|blind (similar term)|unsighted (similar term)
+(adj)|colour-blind|nonracist|unprejudiced (similar term)|impartial (similar term)
+color-blind person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+color bar|1
+(noun)|colour bar|color line|colour line|Jim Crow|ideological barrier (generic term)
+color bearer|1
+(noun)|standard-bearer|soldier (generic term)
+color blindness|1
+(noun)|colour blindness|color vision deficiency|colour vision deficiency|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+color chart|1
+(noun)|chart (generic term)
+color circle|1
+(noun)|color wheel|color chart (generic term)
+color code|1
+(noun)|code (generic term)
+color constancy|1
+(noun)|colour constancy|constancy (generic term)|perceptual constancy (generic term)
+color force|1
+(noun)|strong interaction|strong force|interaction (generic term)|fundamental interaction (generic term)
+color guard|1
+(noun)|escort (generic term)
+color in|1
+(verb)|color|colorize|colorise|colourise|colourize|colour|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+color line|1
+(noun)|color bar|colour bar|colour line|Jim Crow|ideological barrier (generic term)
+color of law|1
+(noun)|colour of law|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+color property|1
+(noun)|visual property (generic term)
+color scheme|1
+(noun)|colour scheme|combination (generic term)
+color sergeant|1
+(noun)|sergeant (generic term)
+color spectrum|1
+(noun)|visible spectrum|spectrum (generic term)
+color television|1
+(noun)|colour television|color television system|colour television system|color TV|colour TV|television (generic term)|television system (generic term)
+color television system|1
+(noun)|color television|colour television|colour television system|color TV|colour TV|television (generic term)|television system (generic term)
+color television tube|1
+(noun)|color tube|colour tube|colour television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+color tube|1
+(noun)|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+color tv|1
+(noun)|color television|colour television|color television system|colour television system|color TV|colour TV|television (generic term)|television system (generic term)
+color tv tube|1
+(noun)|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+color vision|1
+(noun)|chromatic vision|trichromacy|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+color vision deficiency|1
+(noun)|color blindness|colour blindness|colour vision deficiency|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+color wash|1
+(noun)|colour wash|wash (generic term)
+color wheel|1
+(noun)|color circle|color chart (generic term)
+coloradan|1
+(noun)|Coloradan|American (generic term)
+coloradillo|1
+(noun)|scarlet bush|scarlet hamelia|Hamelia patens|Hamelia erecta|hamelia (generic term)
+colorado|2
+(noun)|Colorado|Centennial State|CO|American state (generic term)
+(noun)|Colorado|Colorado River|river (generic term)
+colorado beetle|1
+(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle (generic term)|chrysomelid (generic term)
+colorado blue spruce|1
+(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce (generic term)
+colorado desert|1
+(noun)|Colorado Desert|desert (generic term)
+colorado fir|1
+(noun)|white fir|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir (generic term)
+colorado four o'clock|1
+(noun)|desert four o'clock|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock (generic term)
+colorado plateau|1
+(noun)|Colorado Plateau|tableland (generic term)|plateau (generic term)
+colorado potato beetle|1
+(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle (generic term)|chrysomelid (generic term)
+colorado river|1
+(noun)|Colorado|Colorado River|river (generic term)
+colorado river hemp|1
+(noun)|Colorado River hemp|Sesbania exaltata|sesbania (generic term)
+colorado springs|1
+(noun)|Colorado Springs|city (generic term)|metropolis (generic term)|urban center (generic term)
+colorado spruce|1
+(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce (generic term)
+coloration|3
+(noun)|color|colour|colouration|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|colouration|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|colouration|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+coloratura|2
+(noun)|coloratura soprano|soprano (generic term)
+(noun)|singing (generic term)|vocalizing (generic term)
+coloratura soprano|1
+(noun)|coloratura|soprano (generic term)
+colorcast|2
+(noun)|colourcast|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+(verb)|telecast (generic term)|televise (generic term)
+colorectal|1
+(adj)|large intestine (related term)|body part (related term)
+colored|5
+(adj)|coloured|colorful|crimson (similar term)|red (similar term)|reddened (similar term)|red-faced (similar term)|flushed (similar term)|bay (similar term)|bicolor (similar term)|bicolour (similar term)|bicolored (similar term)|bicoloured (similar term)|bichrome (similar term)|dichromatic (similar term)|black (similar term)|blackened (similar term)|blue-flowered (similar term)|brightly-colored (similar term)|brightly-coloured (similar term)|buff-colored (similar term)|buff-coloured (similar term)|chestnut-colored (similar term)|chestnut-coloured (similar term)|chocolate-colored (similar term)|chocolate-coloured (similar term)|cinnnamon colored (similar term)|cinnamon-coloured (similar term)|cinnamon-red (similar term)|cream-colored (similar term)|creamy-colored (similar term)|creamy-white (similar term)|dark-colored (similar term)|dark-coloured (similar term)|dusky-colored (similar term)|dusky-coloured (similar term)|dun-colored (similar term)|dun-coloured (similar term)|fawn-colored (similar term)|fawn-coloured (similar term)|flame-colored (similar term)|flame-coloured (similar term)|flesh-colored (similar term)|flesh-coloured (similar term)|garnet-colored (similar term)|garnet-coloured (similar term)|ginger (similar term)|gingery (similar term)|gold-colored (similar term)|gold-coloured (similar term)|honey-colored (similar term)|honey-coloured (similar term)|indigo (similar term)|lead-colored (similar term)|lead-coloured (similar term)|liver-colored (similar term)|liver (similar term)|metal-colored (similar term)|metal-coloured (similar term)|metallic-colored (similar term)|metallic-coloured (similar term)|monochromatic (similar term)|monochrome (similar term)|monochromic (similar term)|monochromous (similar term)|motley (similar term)|calico (similar term)|multicolor (similar term)|multi-color (similar term)|multicolour (similar term)|multi-colour (similar term)|multicolored (similar term)|multi-colored (similar term)|multicoloured (similar term)|multi-coloured (similar term)|painted (similar term)|particolored (similar term)|particoloured (similar term)|piebald (similar term)|pied (similar term)|varicolored (similar term)|varicoloured (similar term)|neutral-colored (similar term)|neutral-coloured (similar term)|olive-colored (similar term)|olive-coloured (similar term)|orange-colored (similar term)|orange-coloured (similar term)|orange-hued (similar term)|orange-flowered (similar term)|pale-colored (similar term)|pale-hued (similar term)|pastel-colored (similar term)|peach-colored (similar term)|polychromatic (similar term)|polychrome (similar term)|polychromic (similar term)|purple-flowered (similar term)|rainbow-like (similar term)|red-flowered (similar term)|roan (similar term)|rose-colored (similar term)|rosy-colored (similar term)|rust-colored (similar term)|silver-colored (similar term)|straw-colored (similar term)|straw-coloured (similar term)|tawny-colored (similar term)|tawny-coloured (similar term)|trichromatic (similar term)|trichrome (similar term)|tricolor (similar term)|violet-colored (similar term)|violet-coloured (similar term)|violet-flowered (similar term)|violet-purple (similar term)|uncolored (antonym)
+(adj)|coloured|dark|dark-skinned|non-white|black (similar term)
+(adj)|biased|coloured|one-sided|slanted|partial (similar term)|unfair (similar term)
+(adj)|bleached|coloured|dyed|artificial (similar term)|unreal (similar term)
+(noun)|colored person|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+colored audition|1
+(noun)|colored hearing|chromesthesia (generic term)|chromaesthesia (generic term)
+colored hearing|1
+(noun)|colored audition|chromesthesia (generic term)|chromaesthesia (generic term)
+colored person|1
+(noun)|colored|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+colorfast|1
+(adj)|impervious (similar term)|imperviable (similar term)
+colorful|3
+(adj)|colourful|ablaze (similar term)|flaming (similar term)|bright (similar term)|brilliant (similar term)|vivid (similar term)|changeable (similar term)|chatoyant (similar term)|iridescent (similar term)|shot (similar term)|deep (similar term)|rich (similar term)|fluorescent (similar term)|prismatic (similar term)|psychedelic (similar term)|shrill (similar term)|vibrant (similar term)|chromatic (related term)|colorless (antonym)
+(adj)|colourful|brave (similar term)|braw (similar term)|gay (similar term)|flamboyant (similar term)|unrestrained (similar term)|flashy (similar term)|gaudy (similar term)|jazzy (similar term)|showy (similar term)|sporty (similar term)|many-sided (similar term)|noisy (similar term)|loud (similar term)|picturesque (similar term)|colourless (antonym)|colorless (antonym)
+(adj)|colored|coloured|crimson (similar term)|red (similar term)|reddened (similar term)|red-faced (similar term)|flushed (similar term)|bay (similar term)|bicolor (similar term)|bicolour (similar term)|bicolored (similar term)|bicoloured (similar term)|bichrome (similar term)|dichromatic (similar term)|black (similar term)|blackened (similar term)|blue-flowered (similar term)|brightly-colored (similar term)|brightly-coloured (similar term)|buff-colored (similar term)|buff-coloured (similar term)|chestnut-colored (similar term)|chestnut-coloured (similar term)|chocolate-colored (similar term)|chocolate-coloured (similar term)|cinnnamon colored (similar term)|cinnamon-coloured (similar term)|cinnamon-red (similar term)|cream-colored (similar term)|creamy-colored (similar term)|creamy-white (similar term)|dark-colored (similar term)|dark-coloured (similar term)|dusky-colored (similar term)|dusky-coloured (similar term)|dun-colored (similar term)|dun-coloured (similar term)|fawn-colored (similar term)|fawn-coloured (similar term)|flame-colored (similar term)|flame-coloured (similar term)|flesh-colored (similar term)|flesh-coloured (similar term)|garnet-colored (similar term)|garnet-coloured (similar term)|ginger (similar term)|gingery (similar term)|gold-colored (similar term)|gold-coloured (similar term)|honey-colored (similar term)|honey-coloured (similar term)|indigo (similar term)|lead-colored (similar term)|lead-coloured (similar term)|liver-colored (similar term)|liver (similar term)|metal-colored (similar term)|metal-coloured (similar term)|metallic-colored (similar term)|metallic-coloured (similar term)|monochromatic (similar term)|monochrome (similar term)|monochromic (similar term)|monochromous (similar term)|motley (similar term)|calico (similar term)|multicolor (similar term)|multi-color (similar term)|multicolour (similar term)|multi-colour (similar term)|multicolored (similar term)|multi-colored (similar term)|multicoloured (similar term)|multi-coloured (similar term)|painted (similar term)|particolored (similar term)|particoloured (similar term)|piebald (similar term)|pied (similar term)|varicolored (similar term)|varicoloured (similar term)|neutral-colored (similar term)|neutral-coloured (similar term)|olive-colored (similar term)|olive-coloured (similar term)|orange-colored (similar term)|orange-coloured (similar term)|orange-hued (similar term)|orange-flowered (similar term)|pale-colored (similar term)|pale-hued (similar term)|pastel-colored (similar term)|peach-colored (similar term)|polychromatic (similar term)|polychrome (similar term)|polychromic (similar term)|purple-flowered (similar term)|rainbow-like (similar term)|red-flowered (similar term)|roan (similar term)|rose-colored (similar term)|rosy-colored (similar term)|rust-colored (similar term)|silver-colored (similar term)|straw-colored (similar term)|straw-coloured (similar term)|tawny-colored (similar term)|tawny-coloured (similar term)|trichromatic (similar term)|trichrome (similar term)|tricolor (similar term)|violet-colored (similar term)|violet-coloured (similar term)|violet-flowered (similar term)|violet-purple (similar term)|uncolored (antonym)
+colorimeter|1
+(noun)|tintometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+colorimetric|1
+(adj)|colorimetrical|quantitative analysis|quantitative chemical analysis (related term)
+colorimetric analysis|1
+(noun)|colorimetry|quantitative analysis (generic term)|quantitative chemical analysis (generic term)
+colorimetrical|1
+(adj)|colorimetric|quantitative analysis|quantitative chemical analysis (related term)
+colorimetry|1
+(noun)|colorimetric analysis|quantitative analysis (generic term)|quantitative chemical analysis (generic term)
+coloring|3
+(noun)|colouring|food coloring|food colouring|food color|food colour|foodstuff (generic term)|food product (generic term)
+(noun)|color|colour|colouring|visual property (generic term)|colorlessness (antonym)
+(noun)|colouring|change of color (generic term)
+coloring book|1
+(noun)|picture book (generic term)
+coloring material|1
+(noun)|colouring material|color|colour|material (generic term)|stuff (generic term)
+colorise|1
+(verb)|color|colorize|colourise|colourize|colour|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+colorist|1
+(noun)|painter (generic term)
+colorize|1
+(verb)|color|colorise|colourise|colourize|colour|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+colorless|2
+(adj)|colourless|neutral (similar term)|pale (similar term)|pallid (similar term)|dull (related term)|colourful (antonym)|colorful (antonym)
+(adj)|colourless|ashen (similar term)|blanched (similar term)|bloodless (similar term)|livid (similar term)|white (similar term)|bleached (similar term)|faded (similar term)|washed-out (similar term)|washy (similar term)|drab (similar term)|sober (similar term)|somber (similar term)|sombre (similar term)|dulled (similar term)|greyed (similar term)|etiolate (similar term)|etiolated (similar term)|blanched (similar term)|lurid (similar term)|pale (similar term)|pallid (similar term)|wan (similar term)|pasty (similar term)|pastelike (similar term)|prefaded (similar term)|waxen (similar term)|waxlike (similar term)|waxy (similar term)|white (similar term)|whitened (similar term)|achromatic (related term)|colorful (antonym)
+colorlessness|1
+(noun)|colourlessness|achromatism|achromaticity|visual property (generic term)|color (antonym)
+colors|2
+(noun)|colours|flag (generic term)
+(noun)|colours|emblem (generic term)
+colossae|1
+(noun)|Colossae|city (generic term)|metropolis (generic term)|urban center (generic term)
+colossal|1
+(adj)|prodigious|stupendous|large (similar term)|big (similar term)
+colosseum|1
+(noun)|Colosseum|Amphitheatrum Flavium|amphitheater (generic term)|amphitheatre (generic term)|coliseum (generic term)
+colossian|1
+(noun)|Colossian|Phrygian (generic term)
+colossians|1
+(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|Epistle (generic term)
+colossus|2
+(noun)|giant|goliath|behemoth|monster|anomaly (generic term)|unusual person (generic term)
+(noun)|behemoth|giant|heavyweight|titan|important person (generic term)|influential person (generic term)|personage (generic term)
+colossus of rhodes|1
+(noun)|Colossus of Rhodes|statue (generic term)
+colostomy|1
+(noun)|ostomy (generic term)
+colostrum|1
+(noun)|foremilk|milk (generic term)
+colour|15
+(adj)|color|black-and-white (antonym)
+(noun)|coloring material|colouring material|color|material (generic term)|stuff (generic term)
+(noun)|color|people of color|people of colour|race (generic term)
+(noun)|color|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|color|vividness|interest (generic term)|interestingness (generic term)
+(noun)|color|coloration|colouration|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|color|coloring|colouring|visual property (generic term)|colorlessness (antonym)
+(noun)|semblance|gloss|color|appearance (generic term)|visual aspect (generic term)
+(noun)|color|appearance (generic term)|visual aspect (generic term)
+(verb)|color|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|color|emblazon|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|color|gloss|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+(verb)|tinge|color|distort|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|color|colorize|colorise|colourise|colourize|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+(verb)|discolor|discolour|color|change (generic term)
+colour-blind|2
+(adj)|color-blind|blind (similar term)|unsighted (similar term)
+(adj)|color-blind|nonracist|unprejudiced (similar term)|impartial (similar term)
+colour bar|1
+(noun)|color bar|color line|colour line|Jim Crow|ideological barrier (generic term)
+colour blindness|1
+(noun)|color blindness|color vision deficiency|colour vision deficiency|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+colour constancy|1
+(noun)|color constancy|constancy (generic term)|perceptual constancy (generic term)
+colour in|1
+(verb)|color|colorize|colorise|colourise|colourize|colour|color in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+colour line|1
+(noun)|color bar|colour bar|color line|Jim Crow|ideological barrier (generic term)
+colour of law|1
+(noun)|color of law|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+colour scheme|1
+(noun)|color scheme|combination (generic term)
+colour supplement|1
+(noun)|magazine (generic term)|mag (generic term)
+colour television|1
+(noun)|color television|color television system|colour television system|color TV|colour TV|television (generic term)|television system (generic term)
+colour television system|1
+(noun)|color television|colour television|color television system|color TV|colour TV|television (generic term)|television system (generic term)
+colour television tube|1
+(noun)|color tube|colour tube|color television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+colour tube|1
+(noun)|color tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+colour tv|1
+(noun)|color television|colour television|color television system|colour television system|color TV|colour TV|television (generic term)|television system (generic term)
+colour tv tube|1
+(noun)|color tube|colour tube|color television tube|colour television tube|color TV tube|colour TV tube|kinescope (generic term)|picture tube (generic term)|television tube (generic term)
+colour vision deficiency|1
+(noun)|color blindness|colour blindness|color vision deficiency|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+colour wash|1
+(noun)|color wash|wash (generic term)
+colouration|3
+(noun)|color|colour|coloration|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|coloration|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|coloration|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+colourcast|1
+(noun)|colorcast|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+coloured|4
+(adj)|colored|colorful|crimson (similar term)|red (similar term)|reddened (similar term)|red-faced (similar term)|flushed (similar term)|bay (similar term)|bicolor (similar term)|bicolour (similar term)|bicolored (similar term)|bicoloured (similar term)|bichrome (similar term)|dichromatic (similar term)|black (similar term)|blackened (similar term)|blue-flowered (similar term)|brightly-colored (similar term)|brightly-coloured (similar term)|buff-colored (similar term)|buff-coloured (similar term)|chestnut-colored (similar term)|chestnut-coloured (similar term)|chocolate-colored (similar term)|chocolate-coloured (similar term)|cinnnamon colored (similar term)|cinnamon-coloured (similar term)|cinnamon-red (similar term)|cream-colored (similar term)|creamy-colored (similar term)|creamy-white (similar term)|dark-colored (similar term)|dark-coloured (similar term)|dusky-colored (similar term)|dusky-coloured (similar term)|dun-colored (similar term)|dun-coloured (similar term)|fawn-colored (similar term)|fawn-coloured (similar term)|flame-colored (similar term)|flame-coloured (similar term)|flesh-colored (similar term)|flesh-coloured (similar term)|garnet-colored (similar term)|garnet-coloured (similar term)|ginger (similar term)|gingery (similar term)|gold-colored (similar term)|gold-coloured (similar term)|honey-colored (similar term)|honey-coloured (similar term)|indigo (similar term)|lead-colored (similar term)|lead-coloured (similar term)|liver-colored (similar term)|liver (similar term)|metal-colored (similar term)|metal-coloured (similar term)|metallic-colored (similar term)|metallic-coloured (similar term)|monochromatic (similar term)|monochrome (similar term)|monochromic (similar term)|monochromous (similar term)|motley (similar term)|calico (similar term)|multicolor (similar term)|multi-color (similar term)|multicolour (similar term)|multi-colour (similar term)|multicolored (similar term)|multi-colored (similar term)|multicoloured (similar term)|multi-coloured (similar term)|painted (similar term)|particolored (similar term)|particoloured (similar term)|piebald (similar term)|pied (similar term)|varicolored (similar term)|varicoloured (similar term)|neutral-colored (similar term)|neutral-coloured (similar term)|olive-colored (similar term)|olive-coloured (similar term)|orange-colored (similar term)|orange-coloured (similar term)|orange-hued (similar term)|orange-flowered (similar term)|pale-colored (similar term)|pale-hued (similar term)|pastel-colored (similar term)|peach-colored (similar term)|polychromatic (similar term)|polychrome (similar term)|polychromic (similar term)|purple-flowered (similar term)|rainbow-like (similar term)|red-flowered (similar term)|roan (similar term)|rose-colored (similar term)|rosy-colored (similar term)|rust-colored (similar term)|silver-colored (similar term)|straw-colored (similar term)|straw-coloured (similar term)|tawny-colored (similar term)|tawny-coloured (similar term)|trichromatic (similar term)|trichrome (similar term)|tricolor (similar term)|violet-colored (similar term)|violet-coloured (similar term)|violet-flowered (similar term)|violet-purple (similar term)|uncolored (antonym)
+(adj)|biased|colored|one-sided|slanted|partial (similar term)|unfair (similar term)
+(adj)|bleached|colored|dyed|artificial (similar term)|unreal (similar term)
+(adj)|colored|dark|dark-skinned|non-white|black (similar term)
+colourful|2
+(adj)|colorful|brave (similar term)|braw (similar term)|gay (similar term)|flamboyant (similar term)|unrestrained (similar term)|flashy (similar term)|gaudy (similar term)|jazzy (similar term)|showy (similar term)|sporty (similar term)|many-sided (similar term)|noisy (similar term)|loud (similar term)|picturesque (similar term)|colourless (antonym)|colorless (antonym)
+(adj)|colorful|ablaze (similar term)|flaming (similar term)|bright (similar term)|brilliant (similar term)|vivid (similar term)|changeable (similar term)|chatoyant (similar term)|iridescent (similar term)|shot (similar term)|deep (similar term)|rich (similar term)|fluorescent (similar term)|prismatic (similar term)|psychedelic (similar term)|shrill (similar term)|vibrant (similar term)|chromatic (related term)|colorless (antonym)
+colouring|3
+(noun)|coloring|food coloring|food colouring|food color|food colour|foodstuff (generic term)|food product (generic term)
+(noun)|color|colour|coloring|visual property (generic term)|colorlessness (antonym)
+(noun)|coloring|change of color (generic term)
+colouring material|1
+(noun)|coloring material|color|colour|material (generic term)|stuff (generic term)
+colourise|1
+(verb)|color|colorize|colorise|colourize|colour|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+colourize|1
+(verb)|color|colorize|colorise|colourise|colour|color in|colour in|change (generic term)|alter (generic term)|modify (generic term)|discolor (antonym)
+colourless|2
+(adj)|colorless|neutral (similar term)|pale (similar term)|pallid (similar term)|dull (related term)|colourful (antonym)|colorful (antonym)
+(adj)|colorless|ashen (similar term)|blanched (similar term)|bloodless (similar term)|livid (similar term)|white (similar term)|bleached (similar term)|faded (similar term)|washed-out (similar term)|washy (similar term)|drab (similar term)|sober (similar term)|somber (similar term)|sombre (similar term)|dulled (similar term)|greyed (similar term)|etiolate (similar term)|etiolated (similar term)|blanched (similar term)|lurid (similar term)|pale (similar term)|pallid (similar term)|wan (similar term)|pasty (similar term)|pastelike (similar term)|prefaded (similar term)|waxen (similar term)|waxlike (similar term)|waxy (similar term)|white (similar term)|whitened (similar term)|achromatic (related term)|colorful (antonym)
+colourlessness|1
+(noun)|colorlessness|achromatism|achromaticity|visual property (generic term)|color (antonym)
+colours|2
+(noun)|colors|emblem (generic term)
+(noun)|colors|flag (generic term)
+colpitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+colpocele|1
+(noun)|vaginocele|hernia (generic term)|herniation (generic term)
+colpocystitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+colpocystocele|1
+(noun)|cystocele|colpocele (generic term)|vaginocele (generic term)
+colpoxerosis|1
+(noun)|disorder (generic term)|upset (generic term)
+colt|2
+(noun)|foal (generic term)|male (generic term)
+(noun)|Colt|revolver (generic term)|six-gun (generic term)|six-shooter (generic term)
+coltan|1
+(noun)|columbite-tantalite|mineral (generic term)
+colter|1
+(noun)|coulter|wedge (generic term)
+coltish|1
+(adj)|frolicsome|frolicky|rollicking|sportive|playful (similar term)
+coltsfoot|2
+(noun)|galax|galaxy|wandflower|beetleweed|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+(noun)|Tussilago farfara|herb (generic term)|herbaceous plant (generic term)
+coluber|1
+(noun)|Coluber|genus Coluber|reptile genus (generic term)
+coluber constrictor|1
+(noun)|blacksnake|black racer|Coluber constrictor|racer (generic term)
+coluber constrictor flaviventris|1
+(noun)|blue racer|Coluber constrictor flaviventris|blacksnake (generic term)|black racer (generic term)|Coluber constrictor (generic term)
+coluber hippocrepis|1
+(noun)|horseshoe whipsnake|Coluber hippocrepis|racer (generic term)
+colubrid|1
+(noun)|colubrid snake|snake (generic term)|serpent (generic term)|ophidian (generic term)
+colubrid snake|1
+(noun)|colubrid|snake (generic term)|serpent (generic term)|ophidian (generic term)
+colubridae|1
+(noun)|Colubridae|family Colubridae|reptile family (generic term)
+colubrina|1
+(noun)|Colubrina|genus Colubrina|dicot genus (generic term)|magnoliopsid genus (generic term)
+colugo|1
+(noun)|flying lemur|flying cat|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+columba|2
+(noun)|Columba|Dove|constellation (generic term)
+(noun)|Columba|genus Columba|bird genus (generic term)
+columba fasciata|1
+(noun)|band-tailed pigeon|band-tail pigeon|bandtail|Columba fasciata|pigeon (generic term)
+columba livia|1
+(noun)|rock dove|rock pigeon|Columba livia|pigeon (generic term)
+columba palumbus|1
+(noun)|wood pigeon|ringdove|cushat|Columba palumbus|pigeon (generic term)
+columbarium|3
+(noun)|dovecote|columbary|birdhouse (generic term)
+(noun)|cinerarium|recess (generic term)|niche (generic term)
+(noun)|vault (generic term)|burial vault (generic term)
+columbary|1
+(noun)|dovecote|columbarium|birdhouse (generic term)
+columbia|4
+(noun)|Columbia|Columbia River|river (generic term)
+(noun)|Columbia|capital of South Carolina|state capital (generic term)
+(noun)|Columbia|town (generic term)
+(noun)|Columbia University|Columbia|university (generic term)
+columbia river|1
+(noun)|Columbia|Columbia River|river (generic term)
+columbia tiger lily|1
+(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily (generic term)
+columbia university|1
+(noun)|Columbia University|Columbia|university (generic term)
+columbian|1
+(adj)|Columbian|navigator (related term)
+columbian mammoth|1
+(noun)|Mammuthus columbi|mammoth (generic term)
+columbidae|1
+(noun)|Columbidae|family Columbidae|bird family (generic term)
+columbiform bird|1
+(noun)|gallinaceous bird (generic term)|gallinacean (generic term)
+columbiformes|1
+(noun)|Columbiformes|order Columbiformes|animal order (generic term)
+columbine|1
+(noun)|aquilegia|aquilege|flower (generic term)
+columbite|1
+(noun)|niobite|mineral (generic term)
+columbite-tantalite|1
+(noun)|coltan|mineral (generic term)
+columbium|1
+(noun)|niobium (generic term)|Nb (generic term)|atomic number 41 (generic term)
+columbo|1
+(noun)|American columbo|deer's-ear|deer's-ears|pyramid plant|American gentian|herb (generic term)|herbaceous plant (generic term)
+columbus|4
+(noun)|Columbus|capital of Ohio|state capital (generic term)
+(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator (generic term)
+(noun)|Columbus|town (generic term)
+(noun)|Columbus|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+columbus day|1
+(noun)|Columbus Day|Discovery Day|October 12|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+columella|1
+(noun)|column (generic term)|tower (generic term)|pillar (generic term)
+column|7
+(noun)|file (generic term)|single file (generic term)|Indian file (generic term)
+(noun)|chromatography column|tube (generic term)|tubing (generic term)
+(noun)|array (generic term)
+(noun)|tower|pillar|shape (generic term)|form (generic term)
+(noun)|editorial|newspaper column|article (generic term)
+(noun)|pillar|structure (generic term)|construction (generic term)
+(noun)|pillar|upright (generic term)|vertical (generic term)
+column chromatography|1
+(noun)|chromatography (generic term)
+column inch|1
+(noun)|inch|area unit (generic term)|square measure (generic term)
+columnar|2
+(adj)|columniform|columnlike|columned (similar term)
+(adj)|columned (similar term)
+columnar cell|1
+(noun)|columnar epithelial cell|epithelial cell (generic term)
+columnar epithelial cell|1
+(noun)|columnar cell|epithelial cell (generic term)
+columnea|1
+(noun)|shrub (generic term)|bush (generic term)
+columned|1
+(adj)|amphistylar (similar term)|columnar (similar term)|columniform (similar term)|columnar (similar term)|columnlike (similar term)|colonnaded (similar term)|pillared (similar term)|noncolumned (antonym)
+columniation|1
+(noun)|placement (generic term)|arrangement (generic term)
+columniform|1
+(adj)|columnar|columnlike|columned (similar term)
+columnist|1
+(noun)|editorialist|journalist (generic term)
+columnlike|1
+(adj)|columniform|columnar|columned (similar term)
+colutea|1
+(noun)|Colutea|genus Colutea|rosid dicot genus (generic term)
+colutea arborescens|1
+(noun)|bladder senna|Colutea arborescens|shrub (generic term)|bush (generic term)
+colymbiformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+colza|1
+(noun)|rape|Brassica napus|mustard (generic term)
+colza oil|1
+(noun)|rape oil|rapeseed oil|oil (generic term)
+coma|3
+(noun)|comatoseness|unconsciousness (generic term)
+(noun)|hair (generic term)|fuzz (generic term)|tomentum (generic term)
+(noun)|cloud (generic term)
+coma berenices|1
+(noun)|Coma Berenices|constellation (generic term)
+comal|1
+(adj)|comate|comose|hairy (similar term)|haired (similar term)|hirsute (similar term)
+comanche|2
+(noun)|Comanche|Shoshone (generic term)|Shoshoni (generic term)
+(noun)|Comanche|Shoshonean (generic term)|Shoshonean language (generic term)|Shoshonian (generic term)|Shoshonian language (generic term)
+comandra|1
+(noun)|Comandra|genus Comandra|dilleniid dicot genus (generic term)
+comandra pallida|1
+(noun)|bastard toadflax|Comandra pallida|parasitic plant (generic term)
+comate|2
+(adj)|comose|crowned (similar term)
+(adj)|comose|comal|hairy (similar term)|haired (similar term)|hirsute (similar term)
+comatose|2
+(adj)|unconsciousness (related term)
+(adj)|unconscious (similar term)
+comatoseness|1
+(noun)|coma|unconsciousness (generic term)
+comatula|1
+(noun)|Comatula|genus Comatula|Antedon (generic term)|genus Antedon (generic term)
+comatulid|1
+(noun)|feather star|crinoid (generic term)
+comatulidae|1
+(noun)|Comatulidae|family Comatulidae|Antedonidae (generic term)|family Antedonidae (generic term)
+comb|9
+(noun)|device (generic term)
+(noun)|cockscomb|coxcomb|crest (generic term)
+(noun)|caruncle (generic term)|caruncula (generic term)
+(noun)|tool (generic term)
+(noun)|plate (generic term)
+(noun)|combing|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+(verb)|straighten (generic term)|straighten out (generic term)
+(verb)|ransack|search (generic term)
+(verb)|comb out|disentangle|groom (generic term)|neaten (generic term)
+comb-footed spider|1
+(noun)|theridiid|spider (generic term)
+comb-like|1
+(adj)|ctenoid|device (related term)|organ (related term)
+comb-out|2
+(noun)|teasing|comb (generic term)|combing (generic term)
+(noun)|disposal (generic term)|disposition (generic term)
+comb-plate|1
+(noun)|ctene|organ (generic term)
+comb jelly|1
+(noun)|ctenophore|invertebrate (generic term)
+comb out|2
+(verb)|weed out|get rid of (generic term)|remove (generic term)
+(verb)|comb|disentangle|groom (generic term)|neaten (generic term)
+combat|3
+(noun)|armed combat|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+(noun)|fight|fighting|scrap|conflict (generic term)|struggle (generic term)|battle (generic term)
+(verb)|battle|contend (generic term)|fight (generic term)|struggle (generic term)
+combat-ready|1
+(adj)|active|fighting|operational (similar term)
+combat area|1
+(noun)|combat zone|zone (generic term)
+combat boot|1
+(noun)|buskin|desert boot|half boot|top boot|boot (generic term)
+combat casualty|1
+(noun)|battle damage|damage (generic term)|equipment casualty (generic term)
+combat ceiling|1
+(noun)|service ceiling|ceiling (generic term)
+combat fatigue|1
+(noun)|battle fatigue|combat neurosis|shell shock|posttraumatic stress disorder (generic term)|PTSD (generic term)
+combat injury|1
+(noun)|wound|injury|personnel casualty (generic term)|loss (generic term)
+combat intelligence|1
+(noun)|tactical intelligence|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+combat mission|1
+(noun)|mission (generic term)|military mission (generic term)
+combat neurosis|1
+(noun)|battle fatigue|combat fatigue|shell shock|posttraumatic stress disorder (generic term)|PTSD (generic term)
+combat pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+combat pilot|1
+(noun)|pilot (generic term)|airplane pilot (generic term)
+combat ship|1
+(noun)|warship|war vessel|ship (generic term)|military vehicle (generic term)
+combat zone|2
+(noun)|tenderloin|city district (generic term)
+(noun)|combat area|zone (generic term)
+combatant|2
+(adj)|military (similar term)
+(noun)|battler|belligerent|fighter|scrapper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+combative|3
+(adj)|contentious|disputatious|disputative|litigious|argumentative (similar term)
+(adj)|agonistic|agonistical|competitive (similar term)|competitory (similar term)
+(adj)|battleful|bellicose|aggressive (similar term)
+combatively|1
+(adv)|scrappily
+combativeness|1
+(noun)|militance|militancy|aggressiveness (generic term)
+combed|1
+(adj)|uncombed (antonym)
+combinable|1
+(adj)|combinational|combinatory|combinative (similar term)|combinatory (similar term)
+combination|6
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|sequence (generic term)
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|combining|compounding|change of integrity (generic term)
+combination in restraint of trade|1
+(noun)|combination (generic term)
+combination lock|1
+(noun)|lock (generic term)
+combination plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+combination salad|1
+(noun)|tossed salad (generic term)
+combinational|1
+(adj)|combinable|combinatory|combinative (similar term)|combinatory (similar term)
+combinative|2
+(adj)|combinatory|combinatorial (similar term)|combinable (similar term)|combinational (similar term)|combinatory (similar term)|integrative (related term)|noncombinative (antonym)
+(adj)|combinatory|combinatorial|integrative (similar term)
+combinatorial|2
+(adj)|combinative|combinatory|integrative (similar term)
+(adj)|combinative (similar term)|combinatory (similar term)
+combinatory|3
+(adj)|combinative|combinatorial (similar term)|combinable (similar term)|combinational (similar term)|combinatory (similar term)|integrative (related term)|noncombinative (antonym)
+(adj)|combinative|combinatorial|integrative (similar term)
+(adj)|combinable|combinational|combinative (similar term)|combinatory (similar term)
+combine|10
+(noun)|harvester (generic term)|reaper (generic term)
+(noun)|trust|corporate trust|cartel|consortium (generic term)|pool (generic term)|syndicate (generic term)
+(noun)|combining|union (generic term)
+(verb)|compound|add (generic term)
+(verb)|unite|have (generic term)|feature (generic term)
+(verb)|compound|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+(verb)|contribute (generic term)|give (generic term)|chip in (generic term)|kick in (generic term)
+(verb)|interact (generic term)
+(verb)|aggregate|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|merge|change integrity (generic term)|mix up (related term)
+combined|2
+(adj)|concerted|conjunct|conjunctive|cooperative|united|joint (similar term)
+(adj)|composed (similar term)|compounded (similar term)|conglomerate (similar term)|hyphenated (similar term)|occluded (similar term)|sorbed (similar term)|one (similar term)|rolled into one (similar term)|uncombined (antonym)
+combined operation|1
+(noun)|operation (generic term)|military operation (generic term)
+combing|1
+(noun)|comb|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+combining|2
+(noun)|combine|union (generic term)
+(noun)|combination|compounding|change of integrity (generic term)
+combining form|1
+(noun)|bound morpheme (generic term)|bound form (generic term)
+combining weight|1
+(noun)|equivalent|equivalent weight|eq|atomic weight (generic term)|relative atomic mass (generic term)
+combo|1
+(noun)|jazz band|jazz group|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+combretaceae|1
+(noun)|Combretaceae|family Combretaceae|combretum family|dicot family (generic term)|magnoliopsid family (generic term)
+combretum|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+combretum appiculatum|1
+(noun)|bush willow|Combretum appiculatum|angiospermous tree (generic term)|flowering tree (generic term)
+combretum bracteosum|1
+(noun)|hiccup nut|hiccough nut|Combretum bracteosum|shrub (generic term)|bush (generic term)
+combretum erythrophyllum|1
+(noun)|bush willow|Combretum erythrophyllum|angiospermous tree (generic term)|flowering tree (generic term)
+combretum family|1
+(noun)|Combretaceae|family Combretaceae|dicot family (generic term)|magnoliopsid family (generic term)
+combtooth blenny|1
+(noun)|blenny|blennioid fish (generic term)|blennioid (generic term)
+comburant|1
+(adj)|comburent|combustive|combustible (similar term)
+comburent|1
+(adj)|comburant|combustive|combustible (similar term)
+combust|5
+(verb)|burn
+(verb)|erupt|ignite|catch fire|take fire|conflagrate|change state (generic term)|turn (generic term)
+(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 (generic term)
+(verb)|anger (generic term)
+(verb)|burn|change state (generic term)|turn (generic term)
+combustibility|1
+(noun)|combustibleness|burnability|quality (generic term)
+combustible|2
+(adj)|burnable (similar term)|ignitable (similar term)|ignitible (similar term)|comburent (similar term)|comburant (similar term)|combustive (similar term)|flammable (similar term)|inflammable (similar term)|ignescent (similar term)|incendiary (similar term)|noncombustible (antonym)
+(noun)|combustible material|fuel (generic term)
+combustible material|1
+(noun)|combustible|fuel (generic term)
+combustibleness|1
+(noun)|combustibility|burnability|quality (generic term)
+combustion|3
+(noun)|burning|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+(noun)|tumult (generic term)|tumultuousness (generic term)|uproar (generic term)|garboil (generic term)
+(noun)|burning|change of integrity (generic term)
+combustive|1
+(adj)|comburent|comburant|combustible (similar term)
+come|22
+(noun)|semen|seed|seminal fluid|ejaculate|cum|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+(verb)|come up|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|come with (related term)|come through (related term)|come in (related term)|come through (related term)|come up (related term)|come up (related term)|go (antonym)
+(verb)|arrive|get|leave (antonym)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|change (generic term)
+(verb)|follow|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+(verb)|exist (generic term)|be (generic term)
+(verb)|issue forth
+(verb)|hail|be (generic term)
+(verb)|run (generic term)|go (generic term)|pass (generic term)|lead (generic term)|extend (generic term)
+(verb)|be (generic term)
+(verb)|derive|descend
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|fall|be (generic term)
+(verb)|result (generic term)|ensue (generic term)
+(verb)|total|number|add up|amount|be (generic term)
+(verb)|add up|amount|become (generic term)|turn (generic term)
+(verb)|come in|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|occur|become (generic term)
+(verb)|do|fare|make out|get along|proceed (generic term)|go (generic term)
+(verb)|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|rank (generic term)
+come-at-able|2
+(adj)|attainable|possible (similar term)
+(adj)|get-at-able|getatable|accessible (similar term)
+come-on|2
+(noun)|bait|hook|lure|sweetener|temptation (generic term)|enticement (generic term)
+(noun)|lure|enticement|attraction (generic term)|attractiveness (generic term)
+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 (generic term)|regain (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|meet|run into|encounter|run across|see
+(verb)|come over|communicate (generic term)|intercommunicate (generic term)
+(verb)|resonate
+come after|2
+(verb)|follow|result (generic term)|ensue (generic term)
+(verb)|succeed|follow|precede (antonym)
+come alive|1
+(verb)|wake up|awake|arouse|awaken|wake|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+come along|2
+(verb)|appear|disappear (antonym)
+(verb)|progress|come on|advance|get on|get along|shape up|develop (generic term)|regress (antonym)
+come apart|1
+(verb)|break|separate|split up|fall apart|change integrity (generic term)|break up (related term)
+come around|2
+(verb)|come round|change (generic term)
+(verb)|roll around|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+come away|2
+(verb)|detach|come off|separate (generic term)|divide (generic term)|part (generic term)|attach (antonym)
+(verb)|leave (generic term)|go forth (generic term)|go away (generic term)
+come back|5
+(verb)|return|go back|get back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|return|reappear (generic term)|re-emerge (generic term)
+(verb)|hark back|return|recall|denote (generic term)|refer (generic term)
+(verb)|catch up (generic term)
+(verb)|retort|repay|return|riposte|rejoin|answer (generic term)|reply (generic term)|respond (generic term)
+come before|1
+(verb)|precede|succeed (antonym)
+come by|2
+(verb)|drop by|drop in|visit (generic term)|call in (generic term)|call (generic term)
+(verb)|get (generic term)|acquire (generic term)
+come close|2
+(verb)|act (generic term)|move (generic term)
+(verb)|approximate|resemble (generic term)
+come down|5
+(verb)|descend|fall|go down|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|fall in (related term)|rise (antonym)|ascend (antonym)
+(verb)|reduce|boil down|become (generic term)|turn (generic term)
+(verb)|precipitate|fall
+(verb)|sicken|worsen (generic term)|decline (generic term)
+(verb)|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+come forth|2
+(verb)|issue|emerge|come out|go forth|egress
+(verb)|emerge|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+come forward|1
+(verb)|come to the fore|step forward|step up|step to the fore|come out|act (generic term)|move (generic term)
+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|move in (related term)|enter upon (related term)|exit (antonym)
+(verb)|come|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|change (generic term)|go out (antonym)
+(verb)|interject|interpose|put in|throw in|inject|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|place|come out|rank (generic term)
+come in for|1
+(verb)|be (generic term)
+come in handy|1
+(verb)|be (generic term)
+come into|1
+(verb)|inherit|get (generic term)|acquire (generic term)
+come into being|1
+(verb)|come to life|be born (generic term)
+come near|2
+(verb)|approach|near|come on|go up|draw near|draw close|come (generic term)|come up (generic term)
+(verb)|approach|come (generic term)|come up (generic term)
+come of age|1
+(verb)|grow up (generic term)
+come off|3
+(verb)|detach|come away|separate (generic term)|divide (generic term)|part (generic term)|attach (antonym)
+(verb)|go off|go over|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|chip|chip off|break away|break off|separate (generic term)|divide (generic term)|part (generic term)
+come on|5
+(verb)|come out|turn up|surface|show up|appear (generic term)
+(verb)|approach|near|go up|draw near|draw close|come near|come (generic term)|come up (generic term)
+(verb)|progress|come along|advance|get on|get along|shape up|develop (generic term)|regress (antonym)
+(verb)|go on|come up|start (generic term)|go (generic term)|get going (generic term)|go off (antonym)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+come out|11
+(verb)|come on|turn up|surface|show up|appear (generic term)
+(verb)|issue|emerge|come forth|go forth|egress
+(verb)|appear|happen (generic term)|materialize (generic term)|materialise (generic term)
+(verb)|turn out|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|fall out|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+(verb)|place|come in|rank (generic term)
+(verb)|come to the fore|step forward|come forward|step up|step to the fore|act (generic term)|move (generic term)
+(verb)|start|protrude|pop|pop out|bulge|bulge out|bug out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|come out of the closet|out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|out
+(verb)|erupt|break through|push through|appear (generic term)
+come out of the closet|1
+(verb)|out|come out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+come over|1
+(verb)|come across|communicate (generic term)|intercommunicate (generic term)
+come round|1
+(verb)|come around|change (generic term)
+come short|1
+(verb)|fall short|disappoint (generic term)|let down (generic term)
+come through|4
+(verb)|break through|appear (generic term)
+(verb)|get through|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|survive|pull through|pull round|make it|get the better of (generic term)|overcome (generic term)|defeat (generic term)|succumb (antonym)
+(verb)|succeed|win|bring home the bacon|deliver the goods|fail (antonym)
+come to|4
+(verb)|hit|strike
+(verb)|refer|pertain|relate|concern|bear on|touch|touch on
+(verb)|strike|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|revive|resuscitate|change state (generic term)|turn (generic term)
+come to grips|1
+(verb)|get to grips|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+come to hand|1
+(verb)|come to light|appear (generic term)
+come to life|2
+(verb)|come into being|be born (generic term)
+(verb)|resemble (generic term)
+come to light|1
+(verb)|come to hand|appear (generic term)
+come to mind|1
+(verb)|spring to mind|appear (generic term)
+come to the fore|1
+(verb)|step forward|come forward|step up|step to the fore|come out|act (generic term)|move (generic term)
+come together|1
+(verb)|close|move (generic term)
+come up|12
+(verb)|generate (generic term)|bring forth (generic term)
+(verb)|arise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|come|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|come with (related term)|come through (related term)|come in (related term)|come through (related term)|come up (related term)|come up (related term)|go (antonym)
+(verb)|surface|rise up|rise|ascend (generic term)|go up (generic term)
+(verb)|arise|bob up|become (generic term)
+(verb)|rise|lift|arise|move up|go up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|arise (generic term)|come up (generic term)
+(verb)|go on|come on|start (generic term)|go (generic term)|get going (generic term)|go off (antonym)
+(verb)|line up|get hold|find|get (generic term)|acquire (generic term)
+(verb)|rise|uprise|ascend|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|set (antonym)
+(verb)|scrape|scrape up|scratch|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|muster|rally|summon|muster up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+come up to|1
+(verb)|address|accost|come (generic term)|come up (generic term)
+come upon|2
+(verb)|fall upon|strike|light upon|chance upon|come across|chance on|happen upon|attain|discover|find (generic term)|regain (generic term)
+(verb)|enter upon|luck into|get (generic term)|acquire (generic term)
+come with|1
+(verb)|attach to|accompany|go with
+comeback|2
+(noun)|rejoinder|retort|return|riposte|replication|counter|reply (generic term)|response (generic term)
+(noun)|reappearance (generic term)|return (generic term)
+comedian|2
+(noun)|comic|performer (generic term)|performing artist (generic term)
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+comedienne|2
+(noun)|comedian (generic term)
+(noun)|comedian (generic term)|comic (generic term)
+comedo|1
+(noun)|blackhead|blemish (generic term)|defect (generic term)|mar (generic term)
+comedown|1
+(noun)|humiliation (generic term)|abasement (generic term)
+comedy|2
+(noun)|drama (generic term)|tragedy (antonym)
+(noun)|drollery|clowning|funniness|fun (generic term)|play (generic term)|sport (generic term)
+comedy ballet|1
+(noun)|ballet (generic term)|concert dance (generic term)
+comeliness|1
+(noun)|fairness|loveliness|beauteousness|beauty (generic term)
+comely|2
+(adj)|becoming|comme il faut|decent|decorous|seemly|proper (similar term)
+(adj)|bonny|bonnie|fair|sightly|beautiful (similar term)
+comenius|1
+(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+comer|2
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|arrival|arriver|traveler (generic term)|traveller (generic term)
+comer vann woodward|1
+(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian (generic term)|historiographer (generic term)
+comestible|2
+(adj)|edible|eatable|killable (similar term)|nonpoisonous (similar term)|non-poisonous (similar term)|nontoxic (similar term)|pareve (similar term)|parve (similar term)|digestible (related term)|palatable (related term)|toothsome (related term)|tender (related term)|inedible (antonym)
+(noun)|edible|eatable|pabulum|victual|victuals|food (generic term)|nutrient (generic term)
+comet|1
+(noun)|extraterrestrial object (generic term)|estraterrestrial body (generic term)
+comet-like|1
+(adj)|starry (similar term)
+cometary|1
+(adj)|cometic|extraterrestrial object|estraterrestrial body (related term)
+cometic|1
+(adj)|cometary|extraterrestrial object|estraterrestrial body (related term)
+comeupance|1
+(noun)|deserts|comeuppance|consequence (generic term)|aftermath (generic term)
+comeuppance|1
+(noun)|deserts|comeupance|consequence (generic term)|aftermath (generic term)
+comfit|2
+(noun)|sweet (generic term)|confection (generic term)
+(verb)|confect|confection|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+comfort|6
+(noun)|comfortableness|condition (generic term)|status (generic term)|discomfort (antonym)
+(noun)|pleasure (generic term)|pleasance (generic term)
+(noun)|consolation|solace|relief (generic term)|succor (generic term)|succour (generic term)|ministration (generic term)
+(noun)|ease|affluence (generic term)|richness (generic term)
+(verb)|soothe|console|solace
+(verb)|ease|relieve (generic term)|alleviate (generic term)|palliate (generic term)|assuage (generic term)
+comfort food|1
+(noun)|food (generic term)|nutrient (generic term)
+comfort station|1
+(noun)|public toilet|public convenience|convenience|public lavatory|restroom|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+comfort woman|1
+(noun)|ianfu|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+comfort zone|1
+(noun)|temperature (generic term)
+comfortable|5
+(adj)|comfy|cozy (similar term)|cosy (similar term)|snug (similar term)|easy (similar term)|homelike (similar term)|homely (similar term)|homey (similar term)|homy (similar term)|soothing (similar term)|uncomfortable (antonym)
+(adj)|at ease (similar term)|comforted (similar term)|easy (related term)|uncomfortable (antonym)
+(adj)|wide (similar term)
+(adj)|sufficient (similar term)
+(adj)|easy|prosperous|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich (similar term)
+comfortableness|2
+(noun)|comfort|condition (generic term)|status (generic term)|discomfort (antonym)
+(noun)|belonging (generic term)
+comfortably|2
+(adv)|uncomfortably (antonym)
+(adv)|well
+comforted|1
+(adj)|comfortable (similar term)
+comforter|4
+(noun)|sympathizer|sympathiser|communicator (generic term)
+(noun)|reliever|allayer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|quilt|puff|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|pacifier|baby's dummy|teething ring|device (generic term)
+comforting|2
+(adj)|cheering|satisfying|satisfactory (similar term)
+(adj)|consolatory|consoling|reassuring (similar term)
+comfortingly|1
+(adv)|consolingly
+comfortless|1
+(adj)|uncomfortable (similar term)
+comforts|1
+(noun)|creature comforts|amenities|conveniences|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+comfrey|2
+(noun)|cumfrey|herb (generic term)|herbaceous plant (generic term)
+(noun)|healing herb|herb (generic term)
+comfy|1
+(adj)|comfortable|cozy (similar term)|cosy (similar term)|snug (similar term)|easy (similar term)|homelike (similar term)|homely (similar term)|homey (similar term)|homy (similar term)|soothing (similar term)|uncomfortable (antonym)
+comic|3
+(adj)|amusing|comical|funny|laughable|mirthful|risible|humorous (similar term)|humourous (similar term)
+(adj)|drama (related term)
+(noun)|comedian|performer (generic term)|performing artist (generic term)
+comic book|1
+(noun)|magazine (generic term)|mag (generic term)
+comic opera|1
+(noun)|opera bouffe|bouffe|opera comique|opera (generic term)
+comic strip|1
+(noun)|cartoon strip|strip|funnies|cartoon (generic term)|sketch (generic term)
+comical|1
+(adj)|amusing|comic|funny|laughable|mirthful|risible|humorous (similar term)|humourous (similar term)
+comicality|1
+(noun)|humor (generic term)|humour (generic term)
+coming|6
+(adj)|approaching|forthcoming|upcoming|future (similar term)
+(adj)|future day|future (similar term)
+(noun)|approach|approaching|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|advent|arrival (generic term)|reaching (generic term)
+(noun)|approach|approaching|timing (generic term)
+(noun)|orgasm|climax|sexual climax|consummation (generic term)
+coming attraction|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+coming back|1
+(noun)|return|turning (generic term)|turn (generic term)
+coming into court|1
+(noun)|appearance|appearing|attendance (generic term)|attending (generic term)
+coming together|2
+(noun)|meeting|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+(noun)|merging|meeting|convergence (generic term)|converging (generic term)|convergency (generic term)
+coming upon|1
+(noun)|encounter|joining (generic term)|connection (generic term)|connexion (generic term)
+comint|1
+(noun)|communications intelligence|COMINT|signals intelligence (generic term)|SIGINT (generic term)
+comity|1
+(noun)|harmony (generic term)|concord (generic term)|concordance (generic term)
+comity of nations|1
+(noun)|comity (generic term)
+comma|2
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+(noun)|comma butterfly|Polygonia comma|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+comma bacillus|1
+(noun)|Vibrio comma|vibrio (generic term)|vibrion (generic term)
+comma butterfly|1
+(noun)|comma|Polygonia comma|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+command|12
+(noun)|bid|bidding|dictation|speech act (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+(noun)|handiness (generic term)|accessibility (generic term)|availability (generic term)|availableness (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|control|mastery|skillfulness (generic term)
+(noun)|instruction|statement|program line|code (generic term)|computer code (generic term)
+(verb)|dominate (generic term)|master (generic term)
+(verb)|require|compel|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+(verb)|demand (generic term)|exact (generic term)
+(verb)|dominate|overlook|overtop|lie (generic term)
+(verb)|control
+command guidance|1
+(noun)|steering (generic term)|guidance (generic term)|direction (generic term)
+command key|1
+(noun)|control key|key (generic term)
+command language|1
+(noun)|query language|search language|source language (generic term)
+command line|1
+(noun)|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+command line interface|1
+(noun)|CLI|interface (generic term)|user interface (generic term)
+command module|1
+(noun)|module (generic term)
+command overhead|1
+(noun)|command processing overhead time|command processing overhead|overhead|processing time (generic term)
+command post|1
+(noun)|general headquarters|GHQ|headquarters (generic term)|HQ (generic term)|military headquarters (generic term)
+command processing overhead|1
+(noun)|command processing overhead time|command overhead|overhead|processing time (generic term)
+command processing overhead time|1
+(noun)|command processing overhead|command overhead|overhead|processing time (generic term)
+command prompt|1
+(noun)|prompt|electronic communication (generic term)
+commandant|1
+(noun)|commanding officer|commander|military officer (generic term)|officer (generic term)
+commandeer|1
+(verb)|hijack|highjack|pirate|seize (generic term)
+commander|4
+(noun)|commanding officer|commandant|military officer (generic term)|officer (generic term)
+(noun)|leader (generic term)
+(noun)|commissioned naval officer (generic term)
+(noun)|air force officer|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+commander in chief|1
+(noun)|generalissimo|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+commandership|1
+(noun)|commandery|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+commandery|1
+(noun)|commandership|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+commanding|1
+(adj)|dominating|overlooking|high (similar term)
+commanding officer|1
+(noun)|commandant|commander|military officer (generic term)|officer (generic term)
+commandment|2
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|teaching|precept|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+commando|2
+(noun)|ranger|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+comme il faut|1
+(adj)|becoming|comely|decent|decorous|seemly|proper (similar term)
+commedia dell'arte|1
+(noun)|comedy (generic term)
+commelina|1
+(noun)|flower (generic term)
+commelinaceae|1
+(noun)|Commelinaceae|family Commelinaceae|spiderwort family|monocot family (generic term)|liliopsid family (generic term)
+commelinales|1
+(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order (generic term)
+commelinidae|1
+(noun)|Commelinidae|subclass Commelinidae|class (generic term)
+commemorate|3
+(verb)|mark|observe (generic term)|celebrate (generic term)|keep (generic term)
+(verb)|remember
+(verb)|memorialize|memorialise|immortalize|immortalise|record|remind (generic term)
+commemorating|1
+(adj)|commemorative|ceremony|ceremonial|ceremonial occasion|observance (related term)
+commemoration|2
+(noun)|memorialization|memorialisation|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|memorial|remembrance|recognition (generic term)|credit (generic term)
+commemorative|2
+(adj)|commemorating|ceremony|ceremonial|ceremonial occasion|observance (related term)
+(noun)|object (generic term)|physical object (generic term)
+commence|3
+(verb)|get down|begin|get|start out|start|set about|set out|end (antonym)
+(verb)|begin|lead off|start|end (antonym)
+(verb)|start|start up|embark on|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+commencement|3
+(noun)|beginning|first|outset|get-go|start|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|commencement exercise|commencement ceremony|graduation|graduation exercise|exercise (generic term)
+(noun)|beginning|start|change of state (generic term)|finish (antonym)
+commencement ceremony|1
+(noun)|commencement|commencement exercise|graduation|graduation exercise|exercise (generic term)
+commencement day|1
+(noun)|degree day|day (generic term)
+commencement exercise|1
+(noun)|commencement|commencement ceremony|graduation|graduation exercise|exercise (generic term)
+commend|5
+(verb)|praise (generic term)
+(verb)|portray (generic term)|present (generic term)
+(verb)|entrust (generic term)|intrust (generic term)|trust (generic term)|confide (generic term)|commit (generic term)
+(verb)|recommend|praise (generic term)
+(verb)|remember|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+commendable|2
+(adj)|applaudable|laudable|praiseworthy|worthy (similar term)
+(adv)|admirably|laudably|praiseworthily
+commendation|2
+(noun)|citation|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|approval|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)|disapproval (antonym)
+commensal|2
+(adj)|mutuality|interdependence|interdependency (related term)
+(noun)|organism (generic term)|being (generic term)
+commensalism|1
+(noun)|mutuality (generic term)|interdependence (generic term)|interdependency (generic term)
+commensurable|1
+(adj)|commensurate (similar term)
+commensurate|1
+(adj)|coextensive (similar term)|coterminous (similar term)|conterminous (similar term)|commensurable (similar term)|corresponding (similar term)|proportionate (similar term)|in proportion to (similar term)|equal (related term)|incommensurate (antonym)
+commensurateness|1
+(noun)|correspondence|proportionateness|proportionality (generic term)
+comment|6
+(noun)|remark|statement (generic term)
+(noun)|commentary|statement (generic term)
+(noun)|gossip|scuttlebutt|report (generic term)|account (generic term)
+(verb)|notice|remark|point out|note (generic term)|observe (generic term)|mention (generic term)|remark (generic term)
+(verb)|explain (generic term)|explicate (generic term)
+(verb)|gloss|annotate|rede (generic term)|interpret (generic term)
+commentary|1
+(noun)|comment|statement (generic term)
+commentate|1
+(verb)|rede (generic term)|interpret (generic term)
+commentator|2
+(noun)|observer|expert (generic term)
+(noun)|reviewer|writer (generic term)|author (generic term)
+commerce|3
+(noun)|commercialism|mercantilism|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department (generic term)
+(noun)|conversation (generic term)
+commerce department|1
+(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department (generic term)
+commerce secretary|2
+(noun)|Secretary of Commerce|Commerce Secretary|secretary (generic term)
+(noun)|Secretary of Commerce|Commerce Secretary|secretaryship (generic term)
+commercial|4
+(adj)|commercialized (similar term)|commercialised (similar term)|mercantile (similar term)|mercantile (similar term)|mercenary (similar term)|moneymaking (similar term)|technical (similar term)|technical (similar term)|noncommercial (antonym)
+(adj)|transaction|dealing|dealings (related term)
+(adj)|inferior (similar term)
+(noun)|commercial message|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+commercial activity|1
+(noun)|business activity|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+commercial agency|1
+(noun)|mercantile agency|agency (generic term)
+commercial art|1
+(noun)|art (generic term)|fine art (generic term)
+commercial artist|1
+(noun)|illustrator (generic term)
+commercial bank|1
+(noun)|full service bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+commercial bribery|1
+(noun)|bribery (generic term)|graft (generic term)
+commercial credit|1
+(noun)|credit (generic term)
+commercial credit company|1
+(noun)|commercial finance company|finance company (generic term)
+commercial document|1
+(noun)|commercial instrument|document (generic term)|written document (generic term)|papers (generic term)
+commercial enterprise|2
+(noun)|enterprise (generic term)
+(noun)|business enterprise|business|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+commercial finance company|1
+(noun)|commercial credit company|finance company (generic term)
+commercial instrument|1
+(noun)|commercial document|document (generic term)|written document (generic term)|papers (generic term)
+commercial law|1
+(noun)|mercantile law|law merchant|law (generic term)|jurisprudence (generic term)
+commercial letter of credit|1
+(noun)|letter of credit (generic term)
+commercial loan|1
+(noun)|business loan|bank loan (generic term)
+commercial message|1
+(noun)|commercial|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+commercial paper|1
+(noun)|cash equivalent (generic term)
+commercial traveler|1
+(noun)|traveling salesman|travelling salesman|commercial traveller|roadman|bagman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+commercial traveller|1
+(noun)|traveling salesman|travelling salesman|commercial traveler|roadman|bagman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+commercial treaty|1
+(noun)|treaty (generic term)|pact (generic term)|accord (generic term)
+commercialisation|1
+(noun)|commercialization|exploitation (generic term)|development (generic term)
+commercialise|1
+(verb)|commercialize|market|change (generic term)|alter (generic term)|modify (generic term)
+commercialised|1
+(adj)|commercialized|commercial (similar term)
+commercialism|1
+(noun)|commerce|mercantilism|transaction (generic term)|dealing (generic term)|dealings (generic term)
+commercialization|1
+(noun)|commercialisation|exploitation (generic term)|development (generic term)
+commercialize|2
+(verb)|exploit (generic term)|tap (generic term)
+(verb)|commercialise|market|change (generic term)|alter (generic term)|modify (generic term)
+commercialized|1
+(adj)|commercialised|commercial (similar term)
+commie|1
+(noun)|communist|socialist (generic term)
+comminate|1
+(verb)|accurse|execrate|anathemize|anathemise|anathematize|anathematise|deplore (generic term)
+commination|2
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|threat (generic term)
+comminatory|1
+(adj)|denunciative|denunciatory|inculpatory (similar term)|inculpative (similar term)
+commingle|2
+(verb)|blend (generic term)|intermix (generic term)|immingle (generic term)|intermingle (generic term)
+(verb)|blend|flux|mix|conflate|immix|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+comminute|1
+(verb)|grind|mash|crunch|bray|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+comminuted fracture|1
+(noun)|fracture (generic term)|break (generic term)
+commiphora|1
+(noun)|Commiphora|genus Commiphora|rosid dicot genus (generic term)
+commiphora meccanensis|1
+(noun)|balm of gilead|Commiphora meccanensis|incense tree (generic term)
+commiphora myrrha|1
+(noun)|myrrh tree|Commiphora myrrha|incense tree (generic term)
+commiserate|1
+(verb)|sympathize|sympathise|feel for (generic term)|pity (generic term)|compassionate (generic term)|condole with (generic term)|sympathize with (generic term)
+commiseration|2
+(noun)|pity|ruth|pathos|sympathy (generic term)|fellow feeling (generic term)
+(noun)|condolence|acknowledgment (generic term)|acknowledgement (generic term)
+commiserative|1
+(adj)|sympathetic (similar term)
+commissaire maigret|1
+(noun)|Inspector Maigret|Commissaire Maigret|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+commissar|1
+(noun)|political commissar|official (generic term)|functionary (generic term)
+commissariat|1
+(noun)|provisions|provender|viands|victuals|food (generic term)|nutrient (generic term)
+commissary|2
+(noun)|shop (generic term)|store (generic term)
+(noun)|snack bar (generic term)|snack counter (generic term)|buffet (generic term)
+commission|12
+(noun)|committee|administrative unit (generic term)|administrative body (generic term)
+(noun)|fee (generic term)
+(noun)|commissioning|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+(noun)|operation (generic term)
+(noun)|deputation|delegation|delegacy|mission|organization (generic term)|organisation (generic term)
+(noun)|charge|direction|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|military commission|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+(noun)|perpetration|committal|crime (generic term)|law-breaking (generic term)
+(noun)|mission|charge|assignment (generic term)|duty assignment (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|order (generic term)
+(verb)|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)
+commission on human rights|1
+(noun)|Commission on Human Rights|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+commission on narcotic drugs|1
+(noun)|Commission on Narcotic Drugs|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+commission on the status of women|1
+(noun)|Commission on the Status of Women|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+commission plan|1
+(noun)|municipal government (generic term)
+commissionaire|1
+(noun)|doorkeeper (generic term)|doorman (generic term)|door guard (generic term)|hall porter (generic term)|porter (generic term)|gatekeeper (generic term)|ostiary (generic term)
+commissioned|2
+(adj)|noncommissioned (antonym)
+(adj)|accredited|licensed|licenced|authorized (similar term)|authorised (similar term)
+commissioned military officer|1
+(noun)|commissioned officer (generic term)
+commissioned naval officer|1
+(noun)|commissioned officer (generic term)
+commissioned officer|1
+(noun)|military officer (generic term)|officer (generic term)
+commissioner|2
+(noun)|administrator (generic term)|executive (generic term)
+(noun)|member (generic term)
+commissioning|1
+(noun)|commission|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+commissure|1
+(noun)|nerve pathway (generic term)|tract (generic term)|nerve tract (generic term)|pathway (generic term)
+commit|5
+(verb)|perpetrate|pull|act (generic term)|move (generic term)
+(verb)|give|dedicate|consecrate|devote|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|institutionalize|institutionalise|send|charge|transfer (generic term)
+(verb)|entrust|intrust|trust|confide|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|invest|put|place|spend (generic term)|expend (generic term)|drop (generic term)|divest (antonym)
+commit suicide|1
+(verb)|kill (generic term)
+commitment|5
+(noun)|committedness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+(noun)|allegiance|loyalty|dedication|cooperation (generic term)
+(noun)|engagement (generic term)|participation (generic term)|involvement (generic term)|involution (generic term)
+(noun)|dedication|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|committal|consignment|confinement (generic term)
+committal|2
+(noun)|commitment|consignment|confinement (generic term)
+(noun)|perpetration|commission|crime (generic term)|law-breaking (generic term)
+committal service|1
+(noun)|service (generic term)|religious service (generic term)|divine service (generic term)
+committal to memory|1
+(noun)|memorization|memorisation|learning (generic term)|acquisition (generic term)
+committal to writing|1
+(noun)|writing|activity (generic term)
+committed|2
+(adj)|bound up (similar term)|wrapped up (similar term)|pledged (similar term)|sworn (similar term)|uncommitted (antonym)
+(adj)|attached|affianced (similar term)|bespoken (similar term)|betrothed (similar term)|engaged (similar term)|pledged (similar term)|intended (similar term)|involved (similar term)|loving (related term)|unattached (antonym)
+committedness|1
+(noun)|commitment|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+committee|2
+(noun)|commission|administrative unit (generic term)|administrative body (generic term)
+(noun)|citizens committee|nongovernmental organization (generic term)|NGO (generic term)
+committee for state security|1
+(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency (generic term)
+committee meeting|1
+(noun)|board meeting|meeting (generic term)|group meeting (generic term)
+committee member|1
+(noun)|member (generic term)
+committeeman|1
+(noun)|committee member (generic term)
+committeewoman|1
+(noun)|committee member (generic term)
+commix|1
+(verb)|mix|mingle|unify|amalgamate|change (generic term)|alter (generic term)|modify (generic term)
+commixture|1
+(noun)|mix|admixture|mixture|intermixture|mixing|combination (generic term)|combining (generic term)|compounding (generic term)
+commode|2
+(noun)|toilet|can|crapper|pot|potty|stool|throne|plumbing fixture (generic term)
+(noun)|chiffonier|chest of drawers (generic term)|chest (generic term)|bureau (generic term)|dresser (generic term)
+commodious|1
+(adj)|convenient|roomy (similar term)|spacious (similar term)|incommodious (antonym)
+commodiousness|1
+(noun)|capaciousness|roominess|spaciousness|largeness (generic term)|bigness (generic term)
+commodities exchange|1
+(noun)|commodity exchange|commodities market|exchange (generic term)
+commodities market|1
+(noun)|commodity exchange|commodities exchange|exchange (generic term)
+commodity|1
+(noun)|trade good|good|artifact (generic term)|artefact (generic term)
+commodity brokerage|1
+(noun)|brokerage (generic term)
+commodity exchange|1
+(noun)|commodities exchange|commodities market|exchange (generic term)
+commodore|1
+(noun)|commissioned naval officer (generic term)
+commodore john barry bridge|1
+(noun)|Commodore John Barry Bridge|cantilever bridge (generic term)
+commodore perry|1
+(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore (generic term)
+commodore vanderbilt|1
+(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+common|10
+(adj)|communal (similar term)|public (similar term)|joint (related term)|individual (antonym)
+(adj)|average (similar term)|ordinary (similar term)|democratic (similar term)|popular (similar term)|demotic (similar term)|frequent (similar term)|general (similar term)|grassroots (similar term)|standard (similar term)|usual (related term)|ordinary (related term)|uncommon (antonym)
+(adj)|mutual|shared (similar term)
+(adj)|usual|familiar (similar term)
+(adj)|vernacular|vulgar|informal (similar term)
+(adj)|plebeian|vulgar|unwashed|lowborn (similar term)
+(adj)|coarse|inferior (similar term)
+(adj)|coarse|rough-cut|uncouth|vulgar|unrefined (similar term)
+(adj)|ordinary (similar term)
+(noun)|park|commons|green|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+common-law|1
+(adj)|unwritten (similar term)
+common-law marriage|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+common ageratum|1
+(noun)|Ageratum houstonianum|ageratum (generic term)
+common alder|1
+(noun)|European black alder|Alnus glutinosa|Alnus vulgaris|alder (generic term)|alder tree (generic term)
+common allamanda|1
+(noun)|golden trumpet|Allamanda cathartica|allamanda (generic term)
+common american shad|1
+(noun)|common American shad|Alosa sapidissima|shad (generic term)
+common amsinckia|1
+(noun)|Amsinckia intermedia|herb (generic term)|herbaceous plant (generic term)
+common apricot|1
+(noun)|Prunus armeniaca|apricot (generic term)|apricot tree (generic term)
+common arrowhead|1
+(noun)|Sagittaria (generic term)|genus Sagittaria (generic term)
+common ax|1
+(noun)|common axe|Dayton ax|Dayton axe|ax (generic term)|axe (generic term)
+common axe|1
+(noun)|common ax|Dayton ax|Dayton axe|ax (generic term)|axe (generic term)
+common bamboo|1
+(noun)|Bambusa vulgaris|bamboo (generic term)
+common barberry|1
+(noun)|European barberry|Berberis vulgaris|barberry (generic term)
+common barley|1
+(noun)|Hordeum vulgare|barley (generic term)
+common basil|1
+(noun)|sweet basil|Ocimum basilicum|basil (generic term)
+common bean|2
+(noun)|common bean plant|Phaseolus vulgaris|bush bean (generic term)
+(noun)|bean (generic term)|edible bean (generic term)
+common bean plant|1
+(noun)|common bean|Phaseolus vulgaris|bush bean (generic term)
+common bearberry|1
+(noun)|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+common beech|1
+(noun)|European beech|Fagus sylvatica|beech (generic term)|beech tree (generic term)
+common beet|1
+(noun)|beet|Beta vulgaris|vegetable (generic term)
+common bile duct|1
+(noun)|bile duct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+common birch|1
+(noun)|silver birch|European white birch|Betula pendula|birch (generic term)|birch tree (generic term)
+common bird cherry|1
+(noun)|hagberry tree|European bird cherry|Prunus padus|bird cherry (generic term)|bird cherry tree (generic term)
+common blackfish|1
+(noun)|pilot whale|black whale|blackfish|Globicephala melaena|dolphin (generic term)
+common bog rosemary|1
+(noun)|marsh andromeda|Andromeda polifolia|andromeda (generic term)
+common booklouse|1
+(noun)|Trogium pulsatorium|booklouse (generic term)|book louse (generic term)|deathwatch (generic term)|Liposcelis divinatorius (generic term)
+common box|1
+(noun)|European box|Buxus sempervirens|box (generic term)|boxwood (generic term)
+common brant goose|1
+(noun)|Branta bernicla|brant (generic term)|brant goose (generic term)|brent (generic term)|brent goose (generic term)
+common broom|1
+(noun)|Scotch broom|green broom|Cytisus scoparius|broom (generic term)
+common burdock|1
+(noun)|lesser burdock|Arctium minus|burdock (generic term)|clotbur (generic term)
+common buttercup|1
+(noun)|Ranunculus bulbosus|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+common calamint|1
+(noun)|Calamintha sylvatica|Satureja calamintha officinalis|calamint (generic term)
+common camas|1
+(noun)|Camassia quamash|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+common canary|1
+(noun)|Serinus canaria|canary (generic term)|canary bird (generic term)
+common caper|1
+(noun)|Capparis spinosa|caper (generic term)
+common cardinal vein|1
+(noun)|cardinal vein (generic term)
+common carline thistle|1
+(noun)|Carlina vulgaris|carline thistle (generic term)
+common carotid|1
+(noun)|common carotid artery|carotid artery (generic term)|arteria carotis (generic term)
+common carotid artery|1
+(noun)|common carotid|carotid artery (generic term)|arteria carotis (generic term)
+common carrier|1
+(noun)|carrier|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+common chickweed|1
+(noun)|Stellaria media|chickweed (generic term)
+common chord|1
+(noun)|triad|chord (generic term)
+common cockscomb|1
+(noun)|cockscomb|Celosia cristata|Celosia argentea cristata|herb (generic term)|herbaceous plant (generic term)
+common cold|1
+(noun)|cold|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)|communicable disease (generic term)
+common comfrey|1
+(noun)|boneset|Symphytum officinale|comfrey (generic term)|cumfrey (generic term)
+common coral tree|1
+(noun)|ceibo|crybaby tree|cry-baby tree|Erythrina crista-galli|coral tree (generic term)|erythrina (generic term)
+common corn salad|1
+(noun)|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad (generic term)
+common cotton grass|1
+(noun)|Eriophorum angustifolium|cotton grass (generic term)|cotton rush (generic term)
+common daisy|1
+(noun)|English daisy|Bellis perennis|daisy (generic term)
+common dandelion|1
+(noun)|Taraxacum ruderalia|Taraxacum officinale|dandelion (generic term)|blowball (generic term)
+common denominator|2
+(noun)|denominator (generic term)
+(noun)|attribute (generic term)
+common devil's claw|1
+(noun)|common unicorn plant|devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+common divisor|1
+(noun)|common factor|common measure|divisor (generic term)|factor (generic term)
+common dogbane|1
+(noun)|spreading dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane (generic term)
+common dolphin|1
+(noun)|Delphinus delphis|dolphin (generic term)
+common duckweed|1
+(noun)|lesser duckweed|Lemna minor|duckweed (generic term)
+common eel|1
+(noun)|freshwater eel|eel (generic term)
+common eland|1
+(noun)|Taurotragus oryx|eland (generic term)
+common elder|1
+(noun)|bourtree|black elder|elderberry|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+common era|2
+(noun)|Christian era|Common era|era (generic term)|epoch (generic term)
+(adv)|CE|C.E.|Common Era
+common european ash|1
+(noun)|European ash|common European ash|Fraxinus excelsior|ash (generic term)|ash tree (generic term)
+common european dogwood|1
+(noun)|common European dogwood|red dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+common european earwig|1
+(noun)|common European earwig|Forficula auricularia|earwig (generic term)
+common european jay|1
+(noun)|common European jay|Garullus garullus|Old World jay (generic term)
+common evening primrose|1
+(noun)|German rampion|Oenothera biennis|evening primrose (generic term)
+common facial vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+common factor|1
+(noun)|common divisor|common measure|divisor (generic term)|factor (generic term)
+common fate|1
+(noun)|law of common fate|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+common fault|1
+(noun)|normal fault|gravity fault|inclined fault (generic term)
+common fennel|2
+(noun)|Foeniculum vulgare|fennel (generic term)
+(noun)|fennel|herb (generic term)
+common fig|1
+(noun)|fig|common fig tree|Ficus carica|fig tree (generic term)
+common fig tree|1
+(noun)|fig|common fig|Ficus carica|fig tree (generic term)
+common flat pea|1
+(noun)|native holly|Playlobium obtusangulum|shrub (generic term)|bush (generic term)
+common four-o'clock|1
+(noun)|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock (generic term)
+common foxglove|1
+(noun)|fairy bell|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+common fraction|1
+(noun)|simple fraction|fraction (generic term)
+common front|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+common garden cress|1
+(noun)|garden pepper cress|pepper grass|pepperwort|Lepidium sativum|cress (generic term)|cress plant (generic term)
+common garter snake|1
+(noun)|Thamnophis sirtalis|garter snake (generic term)|grass snake (generic term)
+common ginger|1
+(noun)|Canton ginger|stem ginger|Zingiber officinale|ginger (generic term)
+common good|1
+(noun)|commonweal|good (generic term)
+common grape hyacinth|1
+(noun)|Muscari neglectum|grape hyacinth (generic term)
+common grape vine|1
+(noun)|vinifera|vinifera grape|Vitis vinifera|grape (generic term)|grapevine (generic term)
+common ground|1
+(noun)|footing (generic term)|basis (generic term)|ground (generic term)
+common gum cistus|1
+(noun)|Cistus ladanifer|Cistus ladanum|rockrose (generic term)|rock rose (generic term)
+common heath|2
+(noun)|blunt-leaf heath|Epacris obtusifolia|epacris (generic term)
+(noun)|Epacris impressa|epacris (generic term)
+common hop|1
+(noun)|common hops|bine|European hop|Humulus lupulus|hop (generic term)|hops (generic term)
+common hops|1
+(noun)|common hop|bine|European hop|Humulus lupulus|hop (generic term)|hops (generic term)
+common horehound|1
+(noun)|white horehound|Marrubium vulgare|horehound (generic term)
+common horsetail|1
+(noun)|field horsetail|Equisetum arvense|horsetail (generic term)
+common hyacinth|1
+(noun)|Hyacinthus orientalis|hyacinth (generic term)
+common iguana|1
+(noun)|iguana|Iguana iguana|iguanid (generic term)|iguanid lizard (generic term)
+common iliac artery|1
+(noun)|iliac artery (generic term)|arteria iliaca (generic term)
+common iliac vein|1
+(noun)|iliac vein (generic term)|vena iliaca (generic term)
+common ivy|1
+(noun)|ivy|English ivy|Hedera helix|vine (generic term)
+common jasmine|1
+(noun)|true jasmine|jessamine|Jasminum officinale|jasmine (generic term)
+common juniper|1
+(noun)|Juniperus communis|juniper (generic term)
+common kingsnake|1
+(noun)|Lampropeltis getulus|king snake (generic term)|kingsnake (generic term)
+common knowledge|1
+(noun)|public knowledge (generic term)|general knowledge (generic term)
+common laburnum|1
+(noun)|golden chain|golden rain|Laburnum anagyroides|flowering shrub (generic term)
+common lady's-slipper|1
+(noun)|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+common land|1
+(noun)|commons|pasture (generic term)|pastureland (generic term)|grazing land (generic term)|lea (generic term)|ley (generic term)
+common law|2
+(noun)|case law|precedent|civil law (generic term)
+(noun)|case law|precedent|law (generic term)|jurisprudence (generic term)
+common lettuce|1
+(noun)|garden lettuce|Lactuca sativa|lettuce (generic term)
+common lilac|1
+(noun)|Syringa vulgaris|lilac (generic term)
+common limpet|1
+(noun)|Patella vulgata|limpet (generic term)
+common logarithm|1
+(noun)|logarithm (generic term)|log (generic term)
+common louse|1
+(noun)|Pediculus humanus|louse (generic term)|sucking louse (generic term)
+common lynx|1
+(noun)|Lynx lynx|lynx (generic term)|catamount (generic term)
+common mackerel|1
+(noun)|shiner|Scomber scombrus|mackerel (generic term)
+common madia|1
+(noun)|common tarweed|Madia elegans|wildflower (generic term)|wild flower (generic term)
+common maidenhair|1
+(noun)|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+common mallow|1
+(noun)|Malva neglecta|mallow (generic term)
+common man|1
+(noun)|commoner|common person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+common marigold|1
+(noun)|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula (generic term)
+common market|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+common matrimony vine|1
+(noun)|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine (generic term)|boxthorn (generic term)
+common measure|3
+(noun)|common time|four-four time|quadruple time|musical time (generic term)
+(noun)|common divisor|common factor|divisor (generic term)|factor (generic term)
+(noun)|common meter|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+common meter|1
+(noun)|common measure|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+common milkwort|1
+(noun)|gand flower|Polygala vulgaris|milkwort (generic term)
+common mood|1
+(noun)|indicative mood|indicative|declarative mood|declarative|fact mood|mood (generic term)|mode (generic term)|modality (generic term)
+common moonseed|1
+(noun)|Canada moonseed|yellow parilla|Menispermum canadense|moonseed (generic term)
+common moonwort|1
+(noun)|moonwort|Botrychium lunaria|grape fern (generic term)
+common morel|1
+(noun)|Morchella esculenta|sponge mushroom|sponge morel|morel (generic term)
+common morning glory|2
+(noun)|Ipomoea tricolor|morning glory (generic term)
+(noun)|Ipomoea purpurea|morning glory (generic term)
+common mosquito|1
+(noun)|Culex pipiens|mosquito (generic term)
+common mugwort|1
+(noun)|Artemisia vulgaris|mugwort (generic term)
+common mullein|1
+(noun)|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+common multiple|1
+(noun)|integer (generic term)|whole number (generic term)
+common murre|1
+(noun)|Uria aalge|murre (generic term)
+common myrtle|1
+(noun)|Myrtus communis|myrtle (generic term)
+common nardoo|1
+(noun)|nardoo|nardo|Marsilea drummondii|clover fern (generic term)|pepperwort (generic term)
+common newt|1
+(noun)|Triturus vulgaris|newt (generic term)|triton (generic term)
+common nightshade|1
+(noun)|black nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade (generic term)
+common noun|1
+(noun)|noun (generic term)|proper noun (antonym)
+common nuisance|1
+(noun)|public nuisance|nuisance (generic term)
+common nutcracker|1
+(noun)|Nucifraga caryocatactes|nutcracker (generic term)
+common oak|1
+(noun)|English oak|pedunculate oak|Quercus robur|white oak (generic term)
+common opossum|1
+(noun)|Didelphis virginiana|Didelphis marsupialis|opossum (generic term)|possum (generic term)
+common or garden|1
+(adj)|familiar (similar term)
+common osier|1
+(noun)|hemp willow|velvet osier|Salix viminalis|osier (generic term)
+common pea|1
+(noun)|garden pea|garden pea plant|Pisum sativum|pea (generic term)|pea plant (generic term)
+common people|1
+(noun)|folk|folks|people (generic term)
+common pepper|1
+(noun)|pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+common person|1
+(noun)|commoner|common man|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+common pitcher plant|1
+(noun)|huntsman's cup|huntsman's cups|Sarracenia purpurea|pitcher plant (generic term)
+common plantain|1
+(noun)|broad-leaved plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain (generic term)
+common plum|1
+(noun)|Prunus domestica|plum (generic term)|plum tree (generic term)
+common polypody|1
+(noun)|adder's fern|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody (generic term)
+common pond-skater|1
+(noun)|Gerris lacustris|water strider (generic term)|pond-skater (generic term)|water skater (generic term)
+common privet|1
+(noun)|Ligustrum vulgare|privet (generic term)
+common purslane|1
+(noun)|pussley|pusly|verdolagas|Portulaca oleracea|purslane (generic term)
+common raccoon|1
+(noun)|common racoon|coon|ringtail|Procyon lotor|raccoon (generic term)|racoon (generic term)
+common racoon|1
+(noun)|common raccoon|coon|ringtail|Procyon lotor|raccoon (generic term)|racoon (generic term)
+common ragweed|1
+(noun)|Ambrosia artemisiifolia|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+common reed|1
+(noun)|ditch reed|carrizo|Phragmites communis|reed (generic term)
+common room|1
+(noun)|living room (generic term)|living-room (generic term)|sitting room (generic term)|front room (generic term)|parlor (generic term)|parlour (generic term)
+common rorqual|1
+(noun)|finback|finback whale|fin whale|Balaenoptera physalus|rorqual (generic term)|razorback (generic term)
+common rose mallow|1
+(noun)|rose mallow|swamp mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus (generic term)
+common roundworm|1
+(noun)|Ascaris lumbricoides|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+common rush|1
+(noun)|bulrush|bullrush|soft rush|Juncus effusus|rush (generic term)
+common sage|1
+(noun)|ramona|Salvia officinalis|sage (generic term)|salvia (generic term)
+common salt|2
+(noun)|sodium chloride|binary compound (generic term)
+(noun)|salt|table salt|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+common scold|1
+(noun)|scold|scolder|nag|nagger|unpleasant person (generic term)|disagreeable person (generic term)
+common scoter|1
+(noun)|Melanitta nigra|scoter (generic term)|scooter (generic term)
+common scurvy grass|1
+(noun)|scurvy grass|Cochlearia officinalis|cress (generic term)|cress plant (generic term)
+common seal|1
+(noun)|harbor seal|Phoca vitulina|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+common sense|1
+(noun)|good sense|gumption|horse sense|sense|mother wit|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+common shares|1
+(noun)|common stock|ordinary shares|stock (generic term)
+common shiner|1
+(noun)|silversides|Notropis cornutus|shiner (generic term)
+common shrew|1
+(noun)|Sorex araneus|shrew (generic term)|shrewmouse (generic term)
+common sickle pine|1
+(noun)|Falcatifolium falciforme|conifer (generic term)|coniferous tree (generic term)
+common snapping turtle|1
+(noun)|snapper|Chelydra serpentina|snapping turtle (generic term)
+common snowberry|1
+(noun)|snowberry|waxberry|Symphoricarpos alba|poisonous plant (generic term)
+common soldier|1
+(noun)|private|buck private|enlisted man (generic term)
+common sorrel|1
+(noun)|sorrel|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+common speedwell|1
+(noun)|gypsyweed|Veronica officinalis|veronica (generic term)|speedwell (generic term)
+common spindle tree|1
+(noun)|Euonymus europaeus|spindle tree (generic term)|spindleberry (generic term)|spindleberry tree (generic term)
+common spoonbill|1
+(noun)|Platalea leucorodia|spoonbill (generic term)
+common spotted orchid|1
+(noun)|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid (generic term)|orchidaceous plant (generic term)
+common st john's wort|1
+(noun)|common St John's wort|tutsan|Hypericum androsaemum|St John's wort (generic term)
+common staghorn fern|1
+(noun)|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern (generic term)
+common starling|1
+(noun)|Sturnus vulgaris|starling (generic term)
+common stinkhorn|1
+(noun)|Phallus impudicus|stinkhorn (generic term)|carrion fungus (generic term)
+common stock|1
+(noun)|common shares|ordinary shares|stock (generic term)
+common stock equivalent|1
+(noun)|stock (generic term)
+common sunflower|1
+(noun)|mirasol|Helianthus annuus|sunflower (generic term)|helianthus (generic term)
+common tarweed|1
+(noun)|common madia|Madia elegans|wildflower (generic term)|wild flower (generic term)
+common teasel|1
+(noun)|Dipsacus fullonum|teasel (generic term)|teazel (generic term)|teasle (generic term)
+common thorn apple|1
+(noun)|jimsonweed|jimson weed|Jamestown weed|apple of Peru|Datura stramonium|thorn apple (generic term)
+common thyme|1
+(noun)|Thymus vulgaris|thyme (generic term)
+common time|1
+(noun)|four-four time|quadruple time|common measure|musical time (generic term)
+common tobacco|1
+(noun)|Nicotiana tabacum|tobacco (generic term)|tobacco plant (generic term)
+common topaz|1
+(noun)|topaz|false topaz|quartz (generic term)
+common touch|1
+(noun)|touch (generic term)|signature (generic term)
+common unicorn plant|1
+(noun)|devil's claw|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+common valerian|1
+(noun)|garden heliotrope|Valeriana officinalis|valerian (generic term)
+common vetchling|1
+(noun)|meadow pea|yellow vetchling|Lathyrus pratensis|wild pea (generic term)
+common viper|1
+(noun)|adder|Vipera berus|viper (generic term)
+common wallaby|1
+(noun)|Macropus agiles|wallaby (generic term)|brush kangaroo (generic term)
+common wart|1
+(noun)|wart (generic term)|verruca (generic term)
+common wasp|1
+(noun)|Vespula vulgaris|vespid (generic term)|vespid wasp (generic term)
+common water snake|1
+(noun)|banded water snake|Natrix sipedon|Nerodia sipedon|water snake (generic term)
+common watercress|1
+(noun)|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress (generic term)
+common wheat|1
+(noun)|Triticum aestivum|wheat (generic term)
+common white dogwood|1
+(noun)|eastern flowering dogwood|Cornus florida|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+common winterberry holly|1
+(noun)|holly (generic term)
+common wolffia|1
+(noun)|Wolffia columbiana|watermeal (generic term)
+common wood sorrel|1
+(noun)|cuckoo bread|shamrock|Oxalis acetosella|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+common wormwood|1
+(noun)|absinthe|old man|lad's love|Artemisia absinthium|wormwood (generic term)
+common year|1
+(noun)|365 days|year (generic term)|twelvemonth (generic term)|yr (generic term)
+common yellowthroat|1
+(noun)|Maryland yellowthroat|Geothlypis trichas|yellowthroat (generic term)
+common yellowwood|1
+(noun)|bastard yellowwood|Afrocarpus falcata|gymnospermous yellowwood (generic term)
+common zebra|1
+(noun)|Burchell's zebra|Equus Burchelli|zebra (generic term)
+commonage|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+commonality|2
+(noun)|commonalty|commons|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|commonness|generality (generic term)|individuality (antonym)
+commonalty|1
+(noun)|commonality|commons|class (generic term)|social class (generic term)|socio-economic class (generic term)
+commoner|1
+(noun)|common man|common person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+commonly|1
+(adv)|normally|usually|unremarkably|ordinarily|remarkably (antonym)
+commonness|4
+(noun)|expectedness|normality (generic term)|normalcy (generic term)
+(noun)|coarseness|grossness|vulgarity|vulgarism|raunch|inelegance (generic term)
+(noun)|commonplaceness|everydayness|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)|uncommonness (antonym)
+(noun)|commonality|generality (generic term)|individuality (antonym)
+commonplace|4
+(adj)|ordinary (similar term)
+(adj)|humdrum|prosaic|unglamorous|unglamourous|unexciting (similar term)
+(adj)|banal|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+(noun)|platitude|cliche|banality|bromide|remark (generic term)|comment (generic term)|truism (generic term)
+commonplace book|1
+(noun)|notebook (generic term)
+commonplaceness|1
+(noun)|commonness|everydayness|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)|uncommonness (antonym)
+commons|3
+(noun)|park|common|green|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|common land|pasture (generic term)|pastureland (generic term)|grazing land (generic term)|lea (generic term)|ley (generic term)
+(noun)|commonalty|commonality|class (generic term)|social class (generic term)|socio-economic class (generic term)
+commonsense|1
+(adj)|commonsensible|commonsensical|reasonable (similar term)|sensible (similar term)
+commonsensible|1
+(adj)|commonsense|commonsensical|reasonable (similar term)|sensible (similar term)
+commonsensical|1
+(adj)|commonsense|commonsensible|reasonable (similar term)|sensible (similar term)
+commonweal|1
+(noun)|common good|good (generic term)
+commonwealth|4
+(noun)|state (generic term)|province (generic term)
+(noun)|state|nation|country|land|res publica|body politic|political unit (generic term)|political entity (generic term)
+(noun)|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+(noun)|democracy|republic|political system (generic term)|form of government (generic term)
+commonwealth country|1
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+commonwealth day|1
+(noun)|Commonwealth Day|Empire day|May 24|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+commonwealth of australia|1
+(noun)|Australia|Commonwealth of Australia|country (generic term)|state (generic term)|land (generic term)
+commonwealth of dominica|1
+(noun)|Dominica|Commonwealth of Dominica|country (generic term)|state (generic term)|land (generic term)
+commonwealth of independent states|1
+(noun)|Commonwealth of Independent States|CIS|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+commonwealth of nations|1
+(noun)|British Commonwealth|Commonwealth of Nations|commonwealth (generic term)
+commonwealth of puerto rico|1
+(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth (generic term)
+commonwealth of the bahamas|1
+(noun)|Bahamas|Commonwealth of the Bahamas|Bahama Islands|country (generic term)|state (generic term)|land (generic term)
+commotion|3
+(noun)|disturbance|disruption|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+(noun)|din|ruction|ruckus|rumpus|tumult|disturbance (generic term)
+(noun)|whirl|movement (generic term)|motion (generic term)
+commove|2
+(verb)|agitate|rouse|turn on|charge|excite|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|agitate|vex|disturb|shake up|stir up|raise up|move (generic term)|displace (generic term)
+communal|2
+(adj)|common (similar term)
+(adj)|administrative district|administrative division|territorial division (related term)
+communalise|1
+(verb)|communalize|share (generic term)
+communalism|2
+(noun)|group action (generic term)
+(noun)|commitment (generic term)|allegiance (generic term)|loyalty (generic term)|dedication (generic term)
+communalize|1
+(verb)|communalise|share (generic term)
+commune|4
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|communicate|covenant (generic term)
+communicable|2
+(adj)|catching|contagious|contractable|transmissible|transmittable|infectious (similar term)
+(adj)|communicative (similar term)|communicatory (similar term)
+communicable disease|1
+(noun)|disease (generic term)
+communicant|1
+(noun)|Christian (generic term)
+communicate|7
+(verb)|pass on|pass|pass along|put across|convey (generic term)|transmit (generic term)|communicate (generic term)
+(verb)|intercommunicate|interact (generic term)
+(verb)|convey|transmit|transfer (generic term)
+(verb)|intercommunicate (generic term)
+(verb)|interact (generic term)
+(verb)|covenant (generic term)|excommunicate (antonym)
+(verb)|commune|covenant (generic term)
+communicating|1
+(noun)|communication|act (generic term)|human action (generic term)|human activity (generic term)
+communicating artery|1
+(noun)|arteria communicans|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+communication|3
+(noun)|communicating|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|abstraction (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+communication channel|1
+(noun)|channel|line|communication (generic term)|communicating (generic term)
+communication equipment|1
+(noun)|communication system|facility (generic term)|installation (generic term)
+communication system|2
+(noun)|system (generic term)
+(noun)|communication equipment|facility (generic term)|installation (generic term)
+communication theory|1
+(noun)|communications|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+communication trench|1
+(noun)|approach trench|trench (generic term)
+communicational|1
+(adj)|communicative (similar term)|communicatory (similar term)
+communications|1
+(noun)|communication theory|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+communications intelligence|1
+(noun)|COMINT|signals intelligence (generic term)|SIGINT (generic term)
+communications protocol|1
+(noun)|protocol|rule (generic term)|prescript (generic term)
+communications satellite|1
+(noun)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+communications security establishment|1
+(noun)|Communications Security Establishment|CSE|international intelligence agency (generic term)
+communications technology|1
+(noun)|technology (generic term)|engineering (generic term)
+communicative|2
+(adj)|abstraction (related term)
+(adj)|communicatory|anecdotic (similar term)|anecdotal (similar term)|anecdotical (similar term)|Bantu-speaking (similar term)|blabbermouthed (similar term)|leaky (similar term)|talebearing (similar term)|tattling (similar term)|chatty (similar term)|gossipy (similar term)|newsy (similar term)|communicable (similar term)|communicational (similar term)|English-speaking (similar term)|expansive (similar term)|talkative (similar term)|expressive (similar term)|Finno-Ugric-speaking (similar term)|Flemish-speaking (similar term)|French-speaking (similar term)|Gaelic-speaking (similar term)|German-speaking (similar term)|gesticulating (similar term)|gestural (similar term)|nonverbal (similar term)|gestural (similar term)|sign (similar term)|signed (similar term)|sign-language (similar term)|heraldic (similar term)|Icelandic-speaking (similar term)|Italian-speaking (similar term)|Japanese-speaking (similar term)|Kannada-speaking (similar term)|Livonian-speaking (similar term)|narrative (similar term)|nonverbal (similar term)|nonverbal (similar term)|openhearted (similar term)|Oscan-speaking (similar term)|outspoken (similar term)|vocal (similar term)|Russian-speaking (similar term)|Samoyedic-speaking (similar term)|Semitic-speaking (similar term)|Siouan-speaking (similar term)|Spanish-speaking (similar term)|Turkic-speaking (similar term)|verbal (similar term)|yarn-spinning (similar term)|articulate (related term)|voluble (related term)|uncommunicative (antonym)
+communicativeness|1
+(noun)|trait (generic term)|uncommunicativeness (antonym)
+communicator|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+communicatory|1
+(adj)|communicative|anecdotic (similar term)|anecdotal (similar term)|anecdotical (similar term)|Bantu-speaking (similar term)|blabbermouthed (similar term)|leaky (similar term)|talebearing (similar term)|tattling (similar term)|chatty (similar term)|gossipy (similar term)|newsy (similar term)|communicable (similar term)|communicational (similar term)|English-speaking (similar term)|expansive (similar term)|talkative (similar term)|expressive (similar term)|Finno-Ugric-speaking (similar term)|Flemish-speaking (similar term)|French-speaking (similar term)|Gaelic-speaking (similar term)|German-speaking (similar term)|gesticulating (similar term)|gestural (similar term)|nonverbal (similar term)|gestural (similar term)|sign (similar term)|signed (similar term)|sign-language (similar term)|heraldic (similar term)|Icelandic-speaking (similar term)|Italian-speaking (similar term)|Japanese-speaking (similar term)|Kannada-speaking (similar term)|Livonian-speaking (similar term)|narrative (similar term)|nonverbal (similar term)|nonverbal (similar term)|openhearted (similar term)|Oscan-speaking (similar term)|outspoken (similar term)|vocal (similar term)|Russian-speaking (similar term)|Samoyedic-speaking (similar term)|Semitic-speaking (similar term)|Siouan-speaking (similar term)|Spanish-speaking (similar term)|Turkic-speaking (similar term)|verbal (similar term)|yarn-spinning (similar term)|articulate (related term)|voluble (related term)|uncommunicative (antonym)
+communion|3
+(noun)|Communion|Holy Communion|sacramental manduction|manduction|ritual (generic term)
+(noun)|sharing|intercourse (generic term)|social intercourse (generic term)
+(noun)|denomination (generic term)
+communion table|1
+(noun)|altar|Lord's table|table (generic term)
+communique|1
+(noun)|dispatch|despatch|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+communisation|3
+(noun)|communization|change (generic term)
+(noun)|communization|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+(noun)|nationalization|nationalisation|communization|social control (generic term)|denationalization (antonym)
+communise|2
+(verb)|communize|bolshevize|bolshevise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|communize|nationalize (generic term)|nationalise (generic term)
+communism|2
+(noun)|socialism (generic term)|socialist economy (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+communism peak|1
+(noun)|Communism Peak|Mount Communism|Stalin Peak|Mount Garmo|mountain peak (generic term)
+communist|3
+(adj)|communistic|political orientation|ideology|political theory (related term)
+(noun)|Communist|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|commie|socialist (generic term)
+communist china|1
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+communist economy|1
+(noun)|managed economy (generic term)
+communist manifesto|1
+(noun)|Communist Manifesto|manifesto (generic term)|pronunciamento (generic term)
+communist party|1
+(noun)|Communist Party|party (generic term)|political party (generic term)
+communist party of kampuchea|1
+(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+communistic|1
+(adj)|communist|political orientation|ideology|political theory (related term)
+community|8
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|people (generic term)
+(noun)|ownership (generic term)
+(noun)|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+(noun)|profession|occupational group (generic term)|vocation (generic term)
+(noun)|community of interests|agreement (generic term)|accord (generic term)
+(noun)|residential district|residential area|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|biotic community|group (generic term)|grouping (generic term)
+community center|1
+(noun)|civic center|center (generic term)|centre (generic term)
+community chest|1
+(noun)|charity (generic term)
+community college|1
+(noun)|junior college (generic term)
+community of interests|1
+(noun)|community|agreement (generic term)|accord (generic term)
+community of scholars|1
+(noun)|profession (generic term)|community (generic term)
+community property|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+community service|2
+(noun)|public service|service (generic term)
+(noun)|service (generic term)
+communization|3
+(noun)|communisation|change (generic term)
+(noun)|communisation|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+(noun)|nationalization|nationalisation|communisation|social control (generic term)|denationalization (antonym)
+communize|2
+(verb)|communise|bolshevize|bolshevise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|communise|nationalize (generic term)|nationalise (generic term)
+commutability|2
+(noun)|replaceability|substitutability|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+(noun)|transmutability|changeableness (generic term)|changeability (generic term)
+commutable|2
+(adj)|alterable (similar term)|convertible (similar term)|transformable (similar term)|translatable (similar term)|transmutable (similar term)|incommutable (antonym)
+(adj)|substitutable|exchangeable (similar term)
+commutate|1
+(verb)|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+commutation|4
+(noun)|commuting|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|warrant (generic term)
+(noun)|re-sentencing|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(noun)|substitution|exchange|change (generic term)
+commutation ticket|1
+(noun)|season ticket|ticket (generic term)
+commutative|1
+(adj)|independent (similar term)
+commutative group|1
+(noun)|Abelian group|group (generic term)|mathematical group (generic term)
+commutator|1
+(noun)|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+commute|6
+(noun)|journey (generic term)|journeying (generic term)
+(verb)|transpose|change (generic term)
+(verb)|travel back and forth|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|permute|transpose|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|convert|exchange|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change|exchange|convert|replace (generic term)
+commuter|2
+(noun)|commuter train|passenger train (generic term)
+(noun)|passenger (generic term)|rider (generic term)
+commuter traffic|1
+(noun)|traffic (generic term)
+commuter train|1
+(noun)|commuter|passenger train (generic term)
+commuting|1
+(noun)|commutation|travel (generic term)|traveling (generic term)|travelling (generic term)
+comoro islands|1
+(noun)|Comoro Islands|Iles Comores|archipelago (generic term)
+comoros|1
+(noun)|Comoros|Federal Islamic Republic of the Comoros|country (generic term)|state (generic term)|land (generic term)
+comose|2
+(adj)|comate|crowned (similar term)
+(adj)|comate|comal|hairy (similar term)|haired (similar term)|hirsute (similar term)
+comp|1
+(noun)|comprehensive examination|comprehensive|examination (generic term)|exam (generic term)|test (generic term)
+compact|11
+(adj)|clayey (similar term)|cloggy (similar term)|heavy (similar term)|clay-like (similar term)|close-packed (similar term)|consolidated (similar term)|dough-like (similar term)|impacted (similar term)|wedged (similar term)|packed (similar term)|serried (similar term)|tight (similar term)|concentrated (related term)|loose (antonym)
+(adj)|dense|thick|concentrated (similar term)
+(adj)|heavyset|stocky|thick|thickset|fat (similar term)
+(adj)|compendious|succinct|summary|concise (similar term)
+(noun)|powder compact|case (generic term)
+(noun)|covenant|concordat|written agreement (generic term)
+(noun)|compact car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(verb)|pack|be (generic term)
+(verb)|pack|bundle|wad|arrange (generic term)|set up (generic term)|bundle off (related term)
+(verb)|compress|pack together|wedge (generic term)|squeeze (generic term)|force (generic term)|decompress (antonym)
+(verb)|compress|constrict|squeeze|contract|press|tighten (generic term)
+compact-disk burner|1
+(noun)|CD burner|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+compact car|1
+(noun)|compact|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+compact disc|1
+(noun)|compact disk|CD|optical disk (generic term)|optical disc (generic term)|recording (generic term)
+compact disc read-only memory|1
+(noun)|CD-ROM|compact disk (generic term)|compact disc (generic term)|CD (generic term)|read-only memory (generic term)|ROM (generic term)|read-only storage (generic term)|fixed storage (generic term)
+compact disc recordable|1
+(noun)|CD-R|CD-WO|compact disc write-once|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+compact disc write-once|1
+(noun)|CD-R|compact disc recordable|CD-WO|compact disk (generic term)|compact disc (generic term)|CD (generic term)
+compact disk|1
+(noun)|compact disc|CD|optical disk (generic term)|optical disc (generic term)|recording (generic term)
+compaction|2
+(noun)|compression|concretion|densification|concentration (generic term)
+(noun)|crush|crunch|compression (generic term)|compressing (generic term)
+compactly|1
+(adv)|succinctly
+compactness|2
+(noun)|concentration|density|denseness|tightness|spacing (generic term)|spatial arrangement (generic term)|distribution (antonym)
+(noun)|solidity (generic term)|solidness (generic term)
+companion|4
+(noun)|comrade|fellow|familiar|associate|friend (generic term)
+(noun)|fellow traveler|fellow traveller|traveler (generic term)|traveller (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(verb)|company|accompany|keep company|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+companionability|1
+(noun)|companionableness|sociability (generic term)|sociableness (generic term)
+companionable|1
+(adj)|sociable (similar term)
+companionableness|1
+(noun)|companionability|sociability (generic term)|sociableness (generic term)
+companionate|1
+(adj)|friendly (similar term)
+companionship|1
+(noun)|company|fellowship|society|friendship (generic term)|friendly relationship (generic term)
+companionway|1
+(noun)|stairway (generic term)|staircase (generic term)
+company|10
+(noun)|institution (generic term)|establishment (generic term)
+(noun)|troupe|organization (generic term)|organisation (generic term)
+(noun)|companionship|fellowship|society|friendship (generic term)|friendly relationship (generic term)
+(noun)|army unit (generic term)
+(noun)|party|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|social gathering (generic term)|social affair (generic term)
+(noun)|caller|visitor (generic term)|visitant (generic term)
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|ship's company|complement (generic term)|full complement (generic term)
+(verb)|companion|accompany|keep company|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+company man|1
+(noun)|employee (generic term)
+company name|1
+(noun)|name (generic term)
+company operator|1
+(noun)|operator (generic term)|manipulator (generic term)
+company union|1
+(noun)|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)
+comparability|1
+(noun)|comparison|compare|equivalence|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+comparable|2
+(adj)|comparable with (similar term)|comparable to (similar term)|equal (related term)|parallel (related term)|incomparable (antonym)
+(adj)|corresponding|like|same (similar term)
+comparable to|1
+(adj)|comparable (similar term)
+comparable with|1
+(adj)|comparable (similar term)
+comparably|1
+(adv)|incomparably (antonym)
+comparative|3
+(adj)|relation (related term)
+(adj)|relative (similar term)
+(noun)|adjective (generic term)
+comparative anatomist|1
+(noun)|anatomist (generic term)
+comparative anatomy|1
+(noun)|anatomy (generic term)|general anatomy (generic term)
+comparative literature|1
+(noun)|literary study (generic term)
+comparative negligence|1
+(noun)|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+comparative psychology|1
+(noun)|animal psychology|psychology (generic term)|psychological science (generic term)
+comparatively|1
+(adv)|relatively
+compare|5
+(noun)|comparison|equivalence|comparability|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|be (generic term)
+(verb)|liken|equate|study (generic term)|consider (generic term)
+(verb)|inflect (generic term)
+comparing|1
+(noun)|comparison|examination (generic term)|scrutiny (generic term)
+comparison|3
+(noun)|comparing|examination (generic term)|scrutiny (generic term)
+(noun)|relation (generic term)
+(noun)|compare|equivalence|comparability|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+comparison-shop|1
+(verb)|shop (generic term)|browse (generic term)
+compart|1
+(verb)|range (generic term)|array (generic term)|lay out (generic term)|set out (generic term)
+compartment|2
+(noun)|storage space (generic term)
+(noun)|room (generic term)
+compartment pressure|1
+(noun)|atmospheric pressure (generic term)|air pressure (generic term)
+compartmental|1
+(adj)|compartmentalized|compartmentalised|compartmented (similar term)
+compartmentalisation|2
+(noun)|compartmentalization|dissociation (generic term)|disassociation (generic term)
+(noun)|categorization|categorisation|classification|compartmentalization|assortment|grouping (generic term)
+compartmentalise|1
+(verb)|compartmentalize|cut up|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+compartmentalised|1
+(adj)|compartmental|compartmentalized|compartmented (similar term)
+compartmentalization|2
+(noun)|compartmentalisation|dissociation (generic term)|disassociation (generic term)
+(noun)|categorization|categorisation|classification|compartmentalisation|assortment|grouping (generic term)
+compartmentalize|1
+(verb)|compartmentalise|cut up|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+compartmentalized|1
+(adj)|compartmental|compartmentalised|compartmented (similar term)
+compartmented|1
+(adj)|compartmental (similar term)|compartmentalized (similar term)|compartmentalised (similar term)|uncompartmented (antonym)
+compass|7
+(noun)|navigational instrument (generic term)
+(noun)|scope|range|reach|orbit|ambit|extent (generic term)
+(noun)|range|reach|grasp|capability (generic term)|capableness (generic term)|potentiality (generic term)
+(noun)|drafting instrument (generic term)
+(verb)|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|circumnavigate|circle (generic term)
+(verb)|grok|get the picture|comprehend|savvy|dig|grasp|apprehend|understand (generic term)
+compass card|1
+(noun)|mariner's compass|magnetic compass (generic term)
+compass flower|1
+(noun)|compass plant|composite (generic term)|composite plant (generic term)
+compass north|1
+(noun)|north|magnetic north|direction (generic term)
+compass plane|1
+(noun)|circular plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+compass plant|2
+(noun)|prairie bird's-foot trefoil|prairie lotus|prairie trefoil|Lotus americanus|subshrub (generic term)|suffrutex (generic term)
+(noun)|compass flower|composite (generic term)|composite plant (generic term)
+compass point|1
+(noun)|point|direction (generic term)
+compass saw|1
+(noun)|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+compassion|2
+(noun)|compassionateness|sympathy (generic term)|fellow feeling (generic term)
+(noun)|pity|mercifulness (generic term)|mercy (generic term)
+compassionate|3
+(adj)|merciful (similar term)
+(adj)|caring (similar term)|nurturant (similar term)|pitying (similar term)|sorry (similar term)|tenderhearted (similar term)|humane (related term)|merciful (related term)|sympathetic (related term)|uncompassionate (antonym)
+(verb)|feel for|pity|condole with|sympathize with|grieve (generic term)|sorrow (generic term)
+compassionate leave|1
+(noun)|leave (generic term)|leave of absence (generic term)
+compassionately|1
+(adv)|pityingly
+compassionateness|1
+(noun)|compassion|sympathy (generic term)|fellow feeling (generic term)
+compatibility|2
+(noun)|sympathy (generic term)|fellow feeling (generic term)
+(noun)|characteristic (generic term)|incompatibility (antonym)
+compatible|5
+(adj)|congenial (similar term)|congruous (similar term)|harmonious (similar term)|congenial (related term)|harmonious (related term)|matched (related term)|incompatible (antonym)
+(adj)|sympathetic|congenial (similar term)
+(adj)|incompatible (antonym)
+(adj)|well-matched|matched (similar term)
+(adj)|miscible (similar term)|mixable (similar term)
+compatible software|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+compatibly|1
+(adv)|incompatibly (antonym)
+compatriot|1
+(noun)|national (generic term)|subject (generic term)
+compeer|1
+(noun)|peer|equal|match|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+compel|2
+(verb)|oblige|obligate|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|command|require|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+compelling|2
+(adj)|powerful (similar term)
+(adj)|persuasive (similar term)
+compendious|1
+(adj)|compact|succinct|summary|concise (similar term)
+compendium|2
+(noun)|collection|publication (generic term)
+(noun)|summary (generic term)|sum-up (generic term)
+compensable|1
+(adj)|paying|remunerative|salaried|stipendiary|paid (similar term)
+compensate|6
+(verb)|counterbalance|correct|make up|even out|even off|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|recompense|repair|indemnify|pay (generic term)
+(verb)|cover|overcompensate|compensate (generic term)|counterbalance (generic term)|correct (generic term)|make up (generic term)|even out (generic term)|even off (generic term)|even up (generic term)
+(verb)|right|redress|correct|change (generic term)|alter (generic term)|modify (generic term)|compensate (related term)|wrong (antonym)
+(verb)|pay|pay off|make up|settle (generic term)|pay back (related term)|pay off (related term)
+(verb)|recompense|remunerate|pay (generic term)
+compensated|1
+(adj)|remunerated|salaried|stipendiary|paid (similar term)
+compensating balance|1
+(noun)|offsetting balance|balance (generic term)
+compensation|3
+(noun)|recompense (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|recompense|correction (generic term)|rectification (generic term)
+compensatory damages|1
+(noun)|actual damages|general damages|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+compensatory spending|1
+(noun)|deficit spending|pump priming|spending (generic term)|disbursement (generic term)|disbursal (generic term)|outlay (generic term)
+compensatory time|1
+(noun)|time off (generic term)
+compere|2
+(noun)|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+(verb)|emcee|host (generic term)
+compete|1
+(verb)|vie|contend
+competence|1
+(noun)|competency|ability (generic term)|incompetence (antonym)
+competence hearing|1
+(noun)|hearing (generic term)
+competency|1
+(noun)|competence|ability (generic term)|incompetence (antonym)
+competent|2
+(adj)|able (similar term)|capable (similar term)|effective (similar term)|efficient (similar term)|qualified (similar term)|workmanlike (similar term)|capable (related term)|efficient (related term)|qualified (related term)|skilled (related term)|incompetent (antonym)
+(adj)|adequate (similar term)
+competently|1
+(adv)|aptly|ably|capably|with competence|incompetently (antonym)
+competing|1
+(adj)|competitive (similar term)|competitory (similar term)
+competition|4
+(noun)|business relation (generic term)
+(noun)|contest|social event (generic term)
+(noun)|contention|rivalry|group action (generic term)|cooperation (antonym)
+(noun)|rival|challenger|competitor|contender|contestant (generic term)
+competitive|3
+(adj)|competitory|agonistic (similar term)|agonistical (similar term)|combative (similar term)|competing (similar term)|contending (similar term)|emulous (similar term)|rivalrous (similar term)|matched (similar term)|noncompetitive (antonym)
+(adj)|free-enterprise|private-enterprise|capitalistic (similar term)|capitalist (similar term)
+(adj)|militant|aggressive (similar term)
+competitively|1
+(adv)|noncompetitively (antonym)
+competitiveness|1
+(noun)|fight|aggressiveness (generic term)
+competitor|1
+(noun)|rival|challenger|competition|contender|contestant (generic term)
+competitory|1
+(adj)|competitive|agonistic (similar term)|agonistical (similar term)|combative (similar term)|competing (similar term)|contending (similar term)|emulous (similar term)|rivalrous (similar term)|matched (similar term)|noncompetitive (antonym)
+compilation|2
+(noun)|digest|collection (generic term)|compendium (generic term)
+(noun)|compiling|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+compile|3
+(verb)|roll up|collect|accumulate|pile up|amass|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|compose|make (generic term)
+(verb)|make (generic term)
+compiler|2
+(noun)|encyclopedist|encyclopaedist|writer (generic term)|author (generic term)
+(noun)|compiling program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+compiling|1
+(noun)|compilation|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+compiling program|1
+(noun)|compiler|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+complacence|1
+(noun)|complacency|self-complacency|self-satisfaction|satisfaction (generic term)
+complacency|1
+(noun)|complacence|self-complacency|self-satisfaction|satisfaction (generic term)
+complacent|1
+(adj)|self-satisfied|self-complacent|contented (similar term)|content (similar term)
+complain|2
+(verb)|kick|plain|sound off|quetch|kvetch|cheer (antonym)
+(verb)|charge (generic term)
+complainant|1
+(noun)|plaintiff|litigant (generic term)|litigator (generic term)|defendant (antonym)
+complainer|1
+(noun)|whiner|moaner|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+complaining|1
+(adj)|complaintive|fretful (similar term)|querulous (similar term)|whiney (similar term)|whining (similar term)|whiny (similar term)|grumbling (similar term)|protesting (similar term)|protestant (similar term)|repining (similar term)|uncomplaining (antonym)
+complainingly|1
+(adv)|uncomplainingly (antonym)
+complaint|5
+(noun)|ailment|ill|disorder (generic term)|upset (generic term)
+(noun)|cry (generic term)|yell (generic term)
+(noun)|objection (generic term)
+(noun)|pleading (generic term)
+(noun)|charge|pleading (generic term)
+complaintive|1
+(adj)|complaining|fretful (similar term)|querulous (similar term)|whiney (similar term)|whining (similar term)|whiny (similar term)|grumbling (similar term)|protesting (similar term)|protestant (similar term)|repining (similar term)|uncomplaining (antonym)
+complaisance|1
+(noun)|compliance|compliancy|obligingness|deference|agreeableness (generic term)|agreeability (generic term)
+complaisant|1
+(adj)|obliging|accommodating (similar term)|accommodative (similar term)
+complect|1
+(verb)|interconnect|interlink|connect (generic term)|link (generic term)|link up (generic term)|join (generic term)|unite (generic term)
+complement|7
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+(noun)|count (generic term)
+(noun)|full complement|work force (generic term)|workforce (generic term)|manpower (generic term)|hands (generic term)|men (generic term)
+(noun)|increase (generic term)|increment (generic term)
+(noun)|enzyme (generic term)
+(noun)|counterpart (generic term)|opposite number (generic term)|vis-a-vis (generic term)
+(verb)|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+complement fixation|1
+(noun)|immune response (generic term)|immune reaction (generic term)|immunologic response (generic term)
+complement fixation test|1
+(noun)|blood test (generic term)
+complemental|1
+(adj)|complementary|completing|additive (similar term)
+complementarity|2
+(noun)|ungradable opposition (generic term)
+(noun)|reciprocality (generic term)|reciprocity (generic term)
+complementary|3
+(adj)|antonymous (similar term)
+(adj)|complemental|completing|additive (similar term)
+(noun)|complementary color|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+complementary angles|1
+(noun)|angle (generic term)
+complementary color|1
+(noun)|complementary|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+complementary distribution|1
+(noun)|complementation|distribution (generic term)|dispersion (generic term)
+complementary dna|1
+(noun)|complementary DNA|cDNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+complementary medicine|1
+(noun)|medicine (generic term)|practice of medicine (generic term)
+complementation|2
+(noun)|grammatical relation (generic term)
+(noun)|complementary distribution|distribution (generic term)|dispersion (generic term)
+complete|10
+(adj)|absolute (similar term)|downright (similar term)|out-and-out (similar term)|rank (similar term)|right-down (similar term)|sheer (similar term)|accomplished (similar term)|completed (similar term)|realized (similar term)|realised (similar term)|all (similar term)|all-or-none (similar term)|all-or-nothing (similar term)|all-out (similar term)|full-scale (similar term)|allover (similar term)|clean (similar term)|completed (similar term)|dead (similar term)|exhaustive (similar term)|thorough (similar term)|thoroughgoing (similar term)|fleshed out (similar term)|full-clad (similar term)|full (similar term)|total (similar term)|full-blown (similar term)|full-dress (similar term)|good (similar term)|hearty (similar term)|self-contained (similar term)|sound (similar term)|stand-alone (similar term)|comprehensive (related term)|whole (related term)|incomplete (antonym)
+(adj)|consummate|perfect (similar term)
+(adj)|accomplished|skilled (similar term)
+(adj)|arrant|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adj)|concluded|ended|over|all over|terminated|finished (similar term)
+(verb)|finish|end (generic term)|terminate (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|dispatch|discharge|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|nail|play (generic term)
+(verb)|fill out|fill in|make out
+complete blood count|1
+(noun)|CBC|blood profile|blood count (generic term)
+complete fracture|1
+(noun)|fracture (generic term)|break (generic term)
+completed|3
+(adj)|accomplished|realized|realised|complete (similar term)
+(adj)|consummated (similar term)
+(adj)|complete (similar term)
+completely|1
+(adv)|wholly|entirely|totally|all|altogether|whole|partly (antonym)
+completeness|2
+(noun)|integrity (generic term)|unity (generic term)|wholeness (generic term)|incompleteness (antonym)
+(noun)|logicality (generic term)|logicalness (generic term)
+completing|1
+(adj)|complemental|complementary|additive (similar term)
+completion|2
+(noun)|pass completion|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(noun)|culmination|closing|windup|mop up|termination (generic term)|ending (generic term)|conclusion (generic term)
+complex|5
+(adj)|analyzable (similar term)|decomposable (similar term)|Byzantine (similar term)|convoluted (similar term)|involved (similar term)|knotty (similar term)|tangled (similar term)|tortuous (similar term)|colonial (similar term)|compound (similar term)|complicated (similar term)|composite (similar term)|compound (similar term)|daedal (similar term)|Gordian (similar term)|interlacing (similar term)|interlinking (similar term)|interlocking (similar term)|interwoven (similar term)|intricate (similar term)|labyrinthine (similar term)|labyrinthian (similar term)|mazy (similar term)|multifactorial (similar term)|multiplex (similar term)|thickening (similar term)|compound (related term)|difficult (related term)|hard (related term)|simple (antonym)
+(noun)|composite|whole (generic term)
+(noun)|coordination compound|compound (generic term)|chemical compound (generic term)
+(noun)|feeling (generic term)
+(noun)|building complex|structure (generic term)|construction (generic term)
+complex absence|1
+(noun)|petit mal epilepsy (generic term)|absence (generic term)
+complex body part|1
+(noun)|structure|anatomical structure|bodily structure|body structure|body part (generic term)
+complex conjugate|1
+(noun)|complex number (generic term)|complex quantity (generic term)|imaginary number (generic term)|imaginary (generic term)
+complex fraction|1
+(noun)|compound fraction|fraction (generic term)
+complex instruction set computer|1
+(noun)|complex instruction set computing|CISC|computer architecture (generic term)|architecture (generic term)|RISC (antonym)|reduced instruction set computer (antonym)|reduced instruction set computing (antonym)
+complex instruction set computing|1
+(noun)|complex instruction set computer|CISC|computer architecture (generic term)|architecture (generic term)|RISC (antonym)|reduced instruction set computer (antonym)|reduced instruction set computing (antonym)
+complex number|1
+(noun)|complex quantity|imaginary number|imaginary|number (generic term)
+complex quantity|1
+(noun)|complex number|imaginary number|imaginary|number (generic term)
+complex sentence|1
+(noun)|sentence (generic term)
+complexifier|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+complexify|2
+(verb)|ramify|change (generic term)
+(verb)|complicate (generic term)|perplex (generic term)
+complexion|6
+(noun)|skin color|skin colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|combination (generic term)
+(noun)|point of view (generic term)|viewpoint (generic term)|stand (generic term)|standpoint (generic term)
+(noun)|skin condition|appearance (generic term)|visual aspect (generic term)
+(noun)|nature (generic term)
+(verb)|tint (generic term)|tinct (generic term)|tinge (generic term)|touch (generic term)
+complexity|1
+(noun)|complexness|quality (generic term)|simplicity (antonym)
+complexness|1
+(noun)|complexity|quality (generic term)|simplicity (antonym)
+compliance|4
+(noun)|conformity|conformation|abidance|cooperation (generic term)|noncompliance (antonym)|nonconformity (antonym)
+(noun)|agreement (generic term)
+(noun)|complaisance|compliancy|obligingness|deference|agreeableness (generic term)|agreeability (generic term)
+(noun)|submission|group action (generic term)
+compliancy|1
+(noun)|complaisance|compliance|obligingness|deference|agreeableness (generic term)|agreeability (generic term)
+compliant|1
+(adj)|amenable (similar term)|conformable (similar term)|lamblike (similar term)|nonresistant (similar term)|manageable (related term)|obedient (related term)|tractable (related term)|manipulable (related term)|willing (related term)|defiant (antonym)
+complicate|2
+(verb)|perplex|change (generic term)|alter (generic term)|modify (generic term)|simplify (antonym)
+(verb)|refine|rarify|elaborate|change (generic term)|alter (generic term)|modify (generic term)
+complicated|1
+(adj)|complex (similar term)
+complicatedness|1
+(noun)|complication|knottiness|tortuousness|complexity (generic term)|complexness (generic term)
+complication|5
+(noun)|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|disease (generic term)
+(noun)|ramification|development (generic term)
+(noun)|complicatedness|knottiness|tortuousness|complexity (generic term)|complexness (generic term)
+complicity|1
+(noun)|guilt (generic term)|guiltiness (generic term)
+compliment|3
+(noun)|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(verb)|congratulate|praise (generic term)
+(verb)|greet (generic term)
+complimentary|2
+(adj)|encomiastic (similar term)|eulogistic (similar term)|panegyric (similar term)|panegyrical (similar term)|laudatory (similar term)|praiseful (similar term)|praising (similar term)|favorable (related term)|favourable (related term)|uncomplimentary (antonym)
+(adj)|costless|free|gratis|gratuitous|unpaid (similar term)
+compliments|1
+(noun)|regard|wish|greeting (generic term)|salutation (generic term)
+complin|1
+(noun)|compline|canonical hour (generic term)
+compline|1
+(noun)|complin|canonical hour (generic term)
+complot|1
+(verb)|conspire|cabal|conjure|machinate|plot (generic term)
+comply|1
+(verb)|follow|abide by|obey (generic term)
+component|3
+(noun)|constituent|element|factor|ingredient|part (generic term)|section (generic term)|division (generic term)
+(noun)|part|portion|component part|relation (generic term)
+(noun)|constituent|element|part (generic term)|portion (generic term)
+component part|1
+(noun)|part|portion|component|relation (generic term)
+comport|2
+(verb)|behave|act (generic term)|move (generic term)|misbehave (antonym)
+(verb)|behave|acquit|bear|deport|conduct|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+comportment|1
+(noun)|bearing|presence|mien|manner (generic term)|personal manner (generic term)
+compos mentis|1
+(adj)|of sound mind|sane (similar term)
+compose|6
+(verb)|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|write|make (generic term)|create (generic term)
+(verb)|write|pen|indite|create verbally (generic term)|write out (related term)
+(verb)|compile|make (generic term)
+(verb)|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|frame|draw up|plan (generic term)
+composed|2
+(adj)|combined (similar term)
+(adj)|calm (similar term)|unagitated (similar term)|serene (similar term)|tranquil (similar term)|imperturbable (similar term)|unflappable (similar term)|collected (similar term)|equanimous (similar term)|poised (similar term)|self-collected (similar term)|self-contained (similar term)|self-possessed (similar term)|cool (similar term)|coolheaded (similar term)|nerveless (similar term)|unflurried (similar term)|unflustered (similar term)|unperturbed (similar term)|unruffled (similar term)|dignified (related term)|unagitated (related term)|discomposed (antonym)
+composedly|1
+(adv)|collectedly
+composer|1
+(noun)|musician (generic term)
+composing|2
+(noun)|composition|placement (generic term)|arrangement (generic term)
+(noun)|composition|creating by mental acts (generic term)
+compositae|1
+(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family (generic term)
+composite|4
+(adj)|complex (similar term)
+(adj)|asterid dicot family (related term)
+(noun)|complex|whole (generic term)
+(noun)|composite plant|flower (generic term)
+composite material|1
+(noun)|material (generic term)|stuff (generic term)
+composite number|1
+(noun)|number (generic term)
+composite order|1
+(noun)|Composite order|order (generic term)
+composite plant|1
+(noun)|composite|flower (generic term)
+composite school|1
+(noun)|comprehensive school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+compositeness|1
+(noun)|property (generic term)
+composition|9
+(noun)|mixture (generic term)
+(noun)|constitution|makeup|property (generic term)
+(noun)|composing|placement (generic term)|arrangement (generic term)
+(noun)|musical composition|opus|piece|piece of music|music (generic term)
+(noun)|composing|creating by mental acts (generic term)
+(noun)|writing|authorship|penning|verbal creation (generic term)
+(noun)|typography|printing (generic term)|printing process (generic term)
+(noun)|paper|report|theme|essay (generic term)
+(noun)|creation (generic term)
+composition board|1
+(noun)|cardboard|paper (generic term)|packing material (generic term)|packing (generic term)|wadding (generic term)
+compositional|1
+(adj)|integrative (similar term)
+compositor|1
+(noun)|typesetter|setter|typographer|printer (generic term)|pressman (generic term)
+compost|2
+(noun)|composition (generic term)
+(verb)|convert (generic term)|change over (generic term)
+compost heap|1
+(noun)|compost pile|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+compost pile|1
+(noun)|compost heap|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+composure|1
+(noun)|calm|calmness|equanimity|disposition (generic term)|temperament (generic term)|discomposure (antonym)
+compote|1
+(noun)|fruit compote|dessert (generic term)|sweet (generic term)|afters (generic term)
+compound|11
+(adj)|bilobate (similar term)|bilobated (similar term)|bilobed (similar term)|binate (similar term)|bipartite (similar term)|bipinnate (similar term)|bipinnatifid (similar term)|cleft (similar term)|dissected (similar term)|conjugate (similar term)|decompound (similar term)|even-pinnate (similar term)|abruptly-pinnate (similar term)|paripinnate (similar term)|incised (similar term)|lobed (similar term)|lobate (similar term)|odd-pinnate (similar term)|imparipinnate (similar term)|palmate (similar term)|palm-shaped (similar term)|palmatifid (similar term)|parted (similar term)|pedate (similar term)|pinnate (similar term)|pinnated (similar term)|pinnatifid (similar term)|pinnatisect (similar term)|quinquefoliate (similar term)|ternate (similar term)|trifoliate (similar term)|trifoliolate (similar term)|trifoliated (similar term)|trilobate (similar term)|trilobated (similar term)|trilobed (similar term)|three-lobed (similar term)|tripinnate (similar term)|tripinnated (similar term)|tripinnatifid (similar term)|complex (related term)|rough (related term)|smooth (related term)|simple (antonym)
+(adj)|complex (similar term)
+(adj)|colonial|complex (similar term)
+(noun)|chemical compound|substance (generic term)|matter (generic term)
+(noun)|whole (generic term)
+(noun)|enclosure (generic term)
+(verb)|intensify|heighten|deepen|increase (generic term)
+(verb)|combine|add (generic term)
+(verb)|account (generic term)|calculate (generic term)
+(verb)|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+(verb)|combine|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+compound eye|1
+(noun)|eye (generic term)|oculus (generic term)|optic (generic term)
+compound fraction|1
+(noun)|complex fraction|fraction (generic term)
+compound fracture|1
+(noun)|open fracture|fracture (generic term)|break (generic term)
+compound interest|1
+(noun)|interest (generic term)
+compound leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+compound lens|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+compound lever|1
+(noun)|lever (generic term)
+compound microscope|1
+(noun)|light microscope (generic term)
+compound morphology|1
+(noun)|morphology (generic term)
+compound number|1
+(noun)|number (generic term)
+compound pendulum|1
+(noun)|physical pendulum|pendulum (generic term)
+compound pistil|1
+(noun)|pistil (generic term)
+compound protein|1
+(noun)|conjugated protein|protein (generic term)
+compound sentence|1
+(noun)|sentence (generic term)
+compounded|1
+(adj)|combined (similar term)
+compounding|1
+(noun)|combination|combining|change of integrity (generic term)
+comprehend|3
+(verb)|grok|get the picture|savvy|dig|grasp|compass|apprehend|understand (generic term)
+(verb)|perceive
+(verb)|embrace|encompass|cover|include (generic term)
+comprehended|1
+(adj)|appreciated|apprehended|understood (similar term)
+comprehendible|1
+(adj)|comprehensible|accessible (similar term)|approachable (similar term)|apprehensible (similar term)|intelligible (similar term)|graspable (similar term)|perceivable (similar term)|understandable (similar term)|fathomable (similar term)|clear (related term)|explicable (related term)|intelligible (related term)|incomprehensible (antonym)
+comprehensibility|1
+(noun)|understandability|quality (generic term)|incomprehensibility (antonym)
+comprehensible|1
+(adj)|comprehendible|accessible (similar term)|approachable (similar term)|apprehensible (similar term)|intelligible (similar term)|graspable (similar term)|perceivable (similar term)|understandable (similar term)|fathomable (similar term)|clear (related term)|explicable (related term)|intelligible (related term)|incomprehensible (antonym)
+comprehension|2
+(noun)|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)|incomprehension (antonym)
+(noun)|inclusion|involvement (generic term)
+comprehensive|3
+(adj)|across-the-board (similar term)|all-embracing (similar term)|all-encompassing (similar term)|all-inclusive (similar term)|blanket (similar term)|broad (similar term)|encompassing (similar term)|extensive (similar term)|panoptic (similar term)|wide (similar term)|all-around (similar term)|all-round (similar term)|well-rounded (similar term)|citywide (similar term)|countywide (similar term)|countrywide (similar term)|nationwide (similar term)|cosmopolitan (similar term)|ecumenical (similar term)|oecumenical (similar term)|general (similar term)|universal (similar term)|worldwide (similar term)|world-wide (similar term)|door-to-door (similar term)|house-to-house (similar term)|encyclopedic (similar term)|encyclopaedic (similar term)|large (similar term)|omnibus (similar term)|plenary (similar term)|spatiotemporal (similar term)|spaciotemporal (similar term)|schoolwide (similar term)|statewide (similar term)|super (similar term)|umbrella (similar term)|complete (related term)|general (related term)|wide (related term)|broad (related term)|noncomprehensive (antonym)
+(adj)|inclusive (similar term)
+(noun)|comprehensive examination|comp|examination (generic term)|exam (generic term)|test (generic term)
+comprehensive examination|1
+(noun)|comprehensive|comp|examination (generic term)|exam (generic term)|test (generic term)
+comprehensive school|1
+(noun)|composite school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+comprehensively|1
+(adv)|noncomprehensively (antonym)
+comprehensiveness|2
+(noun)|fullness|completeness (generic term)
+(noun)|breadth|largeness|intelligence (generic term)
+compress|3
+(noun)|dressing (generic term)|medical dressing (generic term)
+(verb)|compact|pack together|wedge (generic term)|squeeze (generic term)|force (generic term)|decompress (antonym)
+(verb)|constrict|squeeze|compact|contract|press|tighten (generic term)
+compressed|3
+(adj)|tight|closed (similar term)|shut (similar term)
+(adj)|compressible (similar term)
+(adj)|flat|thin (similar term)
+compressed air|1
+(noun)|compressed gas (generic term)
+compressed gas|1
+(noun)|gas (generic term)|propellant (generic term)|propellent (generic term)
+compressibility|1
+(noun)|squeezability|sponginess|softness (generic term)|incompressibility (antonym)
+compressible|2
+(adj)|compressed (similar term)|incompressible (antonym)
+(adj)|squeezable|soft (similar term)
+compressing|1
+(noun)|compression|press (generic term)|pressure (generic term)|pressing (generic term)|decompression (antonym)
+compression|4
+(noun)|compaction|concretion|densification|concentration (generic term)
+(noun)|condensation|contraction|shrinking (generic term)|shrinkage (generic term)
+(noun)|encoding (generic term)|encryption (generic term)|decompression (antonym)
+(noun)|compressing|press (generic term)|pressure (generic term)|pressing (generic term)|decompression (antonym)
+compression bandage|1
+(noun)|tourniquet|bandage (generic term)|patch (generic term)
+compression fracture|1
+(noun)|fracture (generic term)|break (generic term)
+compressor|1
+(noun)|mechanical device (generic term)
+comprise|3
+(verb)|consist|be (generic term)
+(verb)|incorporate|contain|include (generic term)
+(verb)|constitute|represent|make up|be
+compromise|5
+(noun)|via media|cooperation (generic term)
+(noun)|accommodation (generic term)
+(verb)|agree (generic term)
+(verb)|settle (generic term)|square off (generic term)|square up (generic term)|determine (generic term)
+(verb)|queer (generic term)|expose (generic term)|scupper (generic term)|endanger (generic term)|peril (generic term)
+compromise verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)
+compromiser|1
+(noun)|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+compromising|2
+(adj)|conciliatory|flexible|yielding (similar term)|uncompromising (antonym)
+(adj)|vulnerable (similar term)
+compsognathus|1
+(noun)|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+compton|1
+(noun)|Compton|Arthur Compton|Arthur Holly Compton|nuclear physicist (generic term)
+comptonia|1
+(noun)|Comptonia|genus Comptonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+comptonia asplenifolia|1
+(noun)|sweet fern|Comptonia peregrina|Comptonia asplenifolia|shrub (generic term)|bush (generic term)
+comptonia peregrina|1
+(noun)|sweet fern|Comptonia peregrina|Comptonia asplenifolia|shrub (generic term)|bush (generic term)
+comptroller|1
+(noun)|accountant|controller|businessperson (generic term)|bourgeois (generic term)
+comptroller general|1
+(noun)|Comptroller General|official (generic term)|functionary (generic term)
+comptroller of the currency|2
+(noun)|Comptroller of the Currency|official (generic term)|functionary (generic term)
+(noun)|Comptroller of the Currency|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+comptrollership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+compulsion|3
+(noun)|irresistible impulse|irrational impulse (generic term)
+(noun)|obsession|irrational motive (generic term)
+(noun)|coercion|causing (generic term)|causation (generic term)
+compulsive|3
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+(adj)|determined|driven|ambitious (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+compulsively|1
+(adv)|obsessively|obsessionally
+compulsiveness|1
+(noun)|compulsivity|trait (generic term)
+compulsivity|1
+(noun)|compulsiveness|trait (generic term)
+compulsorily|1
+(adv)|obligatorily|mandatorily
+compulsory|1
+(adj)|mandatory|required|obligatory (similar term)
+compulsory process|1
+(noun)|legal right (generic term)
+compunction|1
+(noun)|remorse|self-reproach|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+computable|1
+(adj)|estimable|calculable (similar term)
+computation|2
+(noun)|calculation|computing|procedure (generic term)|process (generic term)
+(noun)|calculation|figuring|reckoning|problem solving (generic term)
+computational|1
+(adj)|procedure|process (related term)|machine (related term)
+computational linguist|1
+(noun)|computer scientist (generic term)|linguist (generic term)|linguistic scientist (generic term)
+computational linguistics|1
+(noun)|linguistics (generic term)
+compute|1
+(verb)|calculate|cipher|cypher|work out|reckon|figure|reason (generic term)|figure out (related term)|reckon (related term)
+computed axial tomography|1
+(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+computed tomography|1
+(noun)|computerized tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+computer|2
+(noun)|computing machine|computing device|data processor|electronic computer|information processing system|machine (generic term)
+(noun)|calculator|reckoner|figurer|estimator|expert (generic term)
+computer-aided design|1
+(noun)|CAD|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+computer-oriented language|1
+(noun)|computer language|machine language|machine-oriented language|programming language (generic term)|programing language (generic term)
+computer accessory|1
+(noun)|accessory (generic term)|appurtenance (generic term)|supplement (generic term)|add-on (generic term)
+computer address|1
+(noun)|address|code (generic term)|computer code (generic term)
+computer architecture|2
+(noun)|specification (generic term)|spec (generic term)
+(noun)|architecture|structure (generic term)
+computer backup|1
+(noun)|backup|duplicate (generic term)|duplication (generic term)
+computer business|1
+(noun)|manufacturer (generic term)|maker (generic term)|manufacturing business (generic term)
+computer circuit|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+computer code|1
+(noun)|code|coding system (generic term)
+computer database|1
+(noun)|electronic database|on-line database|electronic information service|database (generic term)
+computer dealer|1
+(noun)|dealer (generic term)
+computer display|1
+(noun)|computer screen|screen (generic term)|CRT screen (generic term)
+computer error|1
+(noun)|error|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+computer expert|1
+(noun)|computer guru|expert (generic term)|computer user (generic term)
+computer file|1
+(noun)|file (generic term)|data file (generic term)
+computer file name|1
+(noun)|filename|file name|computer filename|name (generic term)
+computer filename|1
+(noun)|filename|file name|computer file name|name (generic term)
+computer game|1
+(noun)|video game|game (generic term)
+computer graphic|1
+(noun)|graphic|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+computer graphics|1
+(noun)|graphics (generic term)
+computer guru|1
+(noun)|computer expert|expert (generic term)|computer user (generic term)
+computer hardware|1
+(noun)|hardware|component (generic term)|constituent (generic term)|element (generic term)|software (antonym)
+computer industry|1
+(noun)|industry (generic term)
+computer keyboard|1
+(noun)|keypad|keyboard (generic term)|data input device (generic term)|input device (generic term)
+computer language|1
+(noun)|computer-oriented language|machine language|machine-oriented language|programming language (generic term)|programing language (generic term)
+computer memory|1
+(noun)|memory|storage|computer storage|store|memory board|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+computer memory unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+computer menu|1
+(noun)|menu|list (generic term)|listing (generic term)
+computer monitor|1
+(noun)|monitor (generic term)|monitoring device (generic term)
+computer mouse|1
+(noun)|mouse|electronic device (generic term)
+computer network|1
+(noun)|network (generic term)|electronic network (generic term)
+computer operation|1
+(noun)|machine operation|operation (generic term)
+computer paper|1
+(noun)|paper (generic term)
+computer peripheral|1
+(noun)|peripheral|peripheral device|electronic equipment (generic term)
+computer program|1
+(noun)|program|programme|computer programme|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+computer programing|1
+(noun)|programming|programing|computer programming|creating by mental acts (generic term)
+computer programme|1
+(noun)|program|programme|computer program|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+computer programmer|1
+(noun)|programmer|coder|software engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|computer user (generic term)
+computer programming|1
+(noun)|programming|programing|computer programing|creating by mental acts (generic term)
+computer readable|1
+(adj)|machine readable|code|computer code (related term)
+computer science|1
+(noun)|computing|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+computer scientist|1
+(noun)|scientist (generic term)|man of science (generic term)|computer user (generic term)
+computer screen|1
+(noun)|computer display|screen (generic term)|CRT screen (generic term)
+computer simulation|1
+(noun)|simulation|technique (generic term)|model (generic term)|theoretical account (generic term)|framework (generic term)
+computer software|1
+(noun)|software|software program|software system|software package|package|code (generic term)|computer code (generic term)|hardware (antonym)
+computer storage|1
+(noun)|memory|computer memory|storage|store|memory board|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+computer store|1
+(noun)|shop (generic term)|store (generic term)
+computer system|1
+(noun)|computing system|automatic data processing system|ADP system|ADPS|system (generic term)
+computer technology|1
+(noun)|technology (generic term)|engineering (generic term)
+computer user|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+computer virus|1
+(noun)|virus|malevolent program (generic term)
+computerise|3
+(verb)|computerize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|computerize|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|cybernate|computerize|work (generic term)|put to work (generic term)
+computerised|1
+(adj)|computerized|processed (similar term)
+computerization|1
+(noun)|cybernation|automation (generic term)|mechanization (generic term)|mechanisation (generic term)
+computerize|3
+(verb)|computerise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|computerise|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|cybernate|computerise|work (generic term)|put to work (generic term)
+computerized|1
+(adj)|computerised|processed (similar term)
+computerized axial tomography|1
+(noun)|computerized tomography|computed tomography|CT|computed axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+computerized axial tomography scanner|1
+(noun)|CAT scanner|tomograph (generic term)
+computerized tomography|1
+(noun)|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+computing|2
+(noun)|computer science|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+(noun)|calculation|computation|procedure (generic term)|process (generic term)
+computing device|1
+(noun)|computer|computing machine|data processor|electronic computer|information processing system|machine (generic term)
+computing machine|1
+(noun)|computer|computing device|data processor|electronic computer|information processing system|machine (generic term)
+computing system|1
+(noun)|computer system|automatic data processing system|ADP system|ADPS|system (generic term)
+comrade|3
+(noun)|companion|fellow|familiar|associate|friend (generic term)
+(noun)|Comrade|communist (generic term)|commie (generic term)
+(noun)|brother|friend (generic term)
+comradeliness|1
+(noun)|chumminess|camaraderie|comradery|comradeship|sociability (generic term)|sociableness (generic term)
+comradely|1
+(adj)|hail-fellow|hail-fellow-well-met|friendly (similar term)
+comradery|1
+(noun)|chumminess|camaraderie|comradeliness|comradeship|sociability (generic term)|sociableness (generic term)
+comradeship|1
+(noun)|chumminess|camaraderie|comradeliness|comradery|sociability (generic term)|sociableness (generic term)
+comstock|1
+(noun)|Comstock|Anthony Comstock|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+comstock's mealybug|1
+(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug (generic term)|mealy bug (generic term)
+comstock mealybug|1
+(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug (generic term)|mealy bug (generic term)
+comstockery|1
+(noun)|Comstockery|censoring (generic term)|censorship (generic term)
+comte|1
+(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher (generic term)
+comte de mirabeau|1
+(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+comte de rochambeau|1
+(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general (generic term)|full general (generic term)
+comte de saxe|1
+(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+comte donatien alphonse francois de sade|1
+(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer (generic term)|author (generic term)
+comtesse du barry|1
+(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier (generic term)
+comtism|1
+(noun)|Comtism|positivism (generic term)|logical positivism (generic term)
+con|6
+(noun)|argument (generic term)|statement (generic term)|pro (antonym)
+(noun)|convict|inmate|jail bird|jailbird|gaolbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+(noun)|bunco|bunco game|bunko|bunko game|confidence trick|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|memorize|memorise|learn|study (generic term)|hit the books (generic term)
+(adv)|in opposition|pro (antonym)
+con artist|1
+(noun)|confidence man|con man|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+con brio|1
+(adj)|spirited (similar term)
+con game|1
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+con man|1
+(noun)|confidence man|con artist|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+conacaste|1
+(noun)|elephant's ear|Enterolobium cyclocarpa|tree (generic term)
+conakry|1
+(noun)|Conakry|Konakri|capital of Guinea|national capital (generic term)|port (generic term)
+conan doyle|1
+(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer (generic term)|author (generic term)
+concatenate|2
+(verb)|chain (generic term)
+(verb)|add (generic term)
+concatenation|4
+(noun)|connection (generic term)|link (generic term)|connectedness (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|chain|series (generic term)
+(noun)|joining (generic term)|connection (generic term)|connexion (generic term)
+concave|1
+(adj)|acetabular (similar term)|cotyloid (similar term)|cotyloidal (similar term)|biconcave (similar term)|concavo-concave (similar term)|boat-shaped (similar term)|bowl-shaped (similar term)|bursiform (similar term)|pouch-shaped (similar term)|pouchlike (similar term)|saclike (similar term)|concavo-convex (similar term)|cuplike (similar term)|cupular (similar term)|cupulate (similar term)|cup-shaped (similar term)|depressed (similar term)|indented (similar term)|dished (similar term)|dish-shaped (similar term)|planoconcave (similar term)|recessed (similar term)|saucer-shaped (similar term)|umbilicate (similar term)|urn-shaped (similar term)|intrusive (related term)|convex (antonym)
+concave lens|1
+(noun)|diverging lens|lens (generic term)|lense (generic term)|lens system (generic term)
+concave polygon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)|convex polygon (antonym)
+concave polyhedron|1
+(noun)|polyhedron (generic term)
+concave shape|1
+(noun)|concavity|incurvation|incurvature|solid (generic term)
+concavely|1
+(adv)|convexly (antonym)
+concaveness|1
+(noun)|concavity|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+concavity|2
+(noun)|concave shape|incurvation|incurvature|solid (generic term)
+(noun)|concaveness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+concavo-concave|1
+(adj)|biconcave|concave (similar term)
+concavo-convex|1
+(adj)|concave (similar term)
+conceal|2
+(verb)|hide|show (antonym)
+(verb)|hold back|hold in
+concealed|2
+(adj)|hidden|out of sight|invisible (similar term)|unseeable (similar term)
+(adj)|bushwhacking (similar term)|dark (similar term)|furtive (similar term)|sneak (similar term)|sneaky (similar term)|stealthy (similar term)|surreptitious (similar term)|hidden (similar term)|obscure (similar term)|hidden (similar term)|secret (similar term)|incognito (similar term)|lying in wait (similar term)|sealed (similar term)|secret (similar term)|sneaking (similar term)|unavowed (similar term)|covert (related term)|unconcealed (antonym)
+concealing|2
+(adj)|revealing (antonym)
+(noun)|concealment|hiding|activity (generic term)
+concealment|3
+(noun)|privacy|privateness|secrecy|isolation (generic term)
+(noun)|screen|cover|covert|covering (generic term)
+(noun)|concealing|hiding|activity (generic term)
+concede|4
+(verb)|profess|confess|admit (generic term)|acknowledge (generic term)
+(verb)|yield|grant|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|yield|cede|grant|give (generic term)
+(verb)|surrender (generic term)|give up (generic term)
+conceding|1
+(noun)|concession|yielding|assent (generic term)|acquiescence (generic term)
+conceit|5
+(noun)|amour propre|self-love|vanity|pride (generic term)|pridefulness (generic term)
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+(noun)|turn of phrase (generic term)|turn of expression (generic term)
+(noun)|device (generic term)
+(noun)|conceitedness|vanity|pride (generic term)
+conceited|1
+(adj)|egotistic|egotistical|self-conceited|swollen|swollen-headed|vain|proud (similar term)
+conceitedly|1
+(adv)|self-conceitedly|with conceit
+conceitedness|1
+(noun)|conceit|vanity|pride (generic term)
+conceivability|1
+(noun)|conceivableness|possibility (generic term)|possibleness (generic term)
+conceivable|2
+(adj)|possible (similar term)
+(adj)|imaginable|possible|thinkable (similar term)
+conceivableness|1
+(noun)|conceivability|possibility (generic term)|possibleness (generic term)
+conceive|3
+(verb)|gestate|conceptualize|conceptualise|create by mental act (generic term)|create mentally (generic term)
+(verb)|think|believe|consider|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|change state (generic term)|turn (generic term)
+conceive of|1
+(verb)|imagine|ideate|envisage|create by mental act (generic term)|create mentally (generic term)
+conceived|1
+(adj)|formed|planned (similar term)
+conceiver|1
+(noun)|originator|mastermind|creator (generic term)
+concenter|1
+(verb)|concentre|focalize|focalise|focus|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+concentrate|11
+(noun)|dressed ore|ore (generic term)
+(noun)|foodstuff (generic term)|food product (generic term)
+(noun)|prototype (generic term)|paradigm (generic term)|epitome (generic term)|image (generic term)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|focus|center|centre|pore|rivet|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|centralize|centralise|change (generic term)|alter (generic term)|modify (generic term)|deconcentrate (antonym)|decentralise (antonym)|decentralize (antonym)
+(verb)|digest|condense|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+(verb)|converge (generic term)
+(verb)|condense|contract|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|boil down|reduce|decoct|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|reduce|boil down|decrease (generic term)|lessen (generic term)|minify (generic term)
+concentrate on|1
+(verb)|focus on|center on|revolve around|revolve about|center|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+concentrated|5
+(adj)|accumulated (similar term)|amassed (similar term)|assembled (similar term)|collected (similar term)|congregate (similar term)|massed (similar term)|bunched (similar term)|bunchy (similar term)|clustered (similar term)|centered (similar term)|centred (similar term)|centralized (similar term)|centralised (similar term)|focused (similar term)|compact (similar term)|dense (similar term)|thick (similar term)|heaped (similar term)|heaped-up (similar term)|piled (similar term)|cumulous (similar term)|gathered (similar term)|deepened (similar term)|saved up (similar term)|stored-up (similar term)|stored up (similar term)|single (similar term)|undivided (similar term)|exclusive (similar term)|thickset (similar term)|compact (related term)|distributed (antonym)
+(adj)|undiluted (similar term)
+(adj)|intense (similar term)
+(adj)|hard|soft (antonym)
+(adj)|saturated|supersaturated (similar term)|unsaturated (antonym)
+concentrated fire|1
+(noun)|massed fire|fire (generic term)|firing (generic term)
+concentration|7
+(noun)|property (generic term)
+(noun)|density|denseness|tightness|compactness|spacing (generic term)|spatial arrangement (generic term)|distribution (antonym)
+(noun)|strengthening (generic term)|dilution (antonym)
+(noun)|increase (generic term)
+(noun)|engrossment|absorption|immersion|attention (generic term)
+(noun)|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+(noun)|assiduity|assiduousness|diligence (generic term)|industriousness (generic term)|industry (generic term)
+concentration camp|2
+(noun)|stockade|penal institution (generic term)|penal facility (generic term)
+(noun)|misery (generic term)|wretchedness (generic term)|miserableness (generic term)
+concentre|1
+(verb)|concenter|focalize|focalise|focus|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+concentric|1
+(adj)|concentrical|homocentric|coaxial (similar term)|coaxal (similar term)|eccentric (antonym)
+concentrical|1
+(adj)|concentric|homocentric|coaxial (similar term)|coaxal (similar term)|eccentric (antonym)
+concentricity|1
+(noun)|circularity (generic term)|disk shape (generic term)|eccentricity (antonym)
+concepcion|1
+(noun)|Concepcion|city (generic term)|metropolis (generic term)|urban center (generic term)
+concept|1
+(noun)|conception|construct|idea (generic term)|thought (generic term)|misconception (antonym)
+concept album|1
+(noun)|album (generic term)|record album (generic term)
+conception|4
+(noun)|concept|construct|idea (generic term)|thought (generic term)|misconception (antonym)
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|creation|beginning (generic term)
+(noun)|invention|innovation|excogitation|design|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+conceptional|1
+(adj)|ideational|notional|abstract (similar term)
+conceptive|1
+(adj)|impregnable|fertile (similar term)
+conceptual|1
+(adj)|abstract (similar term)
+conceptual semantics|1
+(noun)|cognitive semantics|semasiology|semantics (generic term)
+conceptualisation|2
+(noun)|conceptualization|conceptuality|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|conceptualization|formulation|creating by mental acts (generic term)
+conceptualise|1
+(verb)|gestate|conceive|conceptualize|create by mental act (generic term)|create mentally (generic term)
+conceptualism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+conceptualistic|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+conceptuality|1
+(noun)|conceptualization|conceptualisation|concept (generic term)|conception (generic term)|construct (generic term)
+conceptualization|2
+(noun)|conceptualisation|formulation|creating by mental acts (generic term)
+(noun)|conceptualisation|conceptuality|concept (generic term)|conception (generic term)|construct (generic term)
+conceptualize|1
+(verb)|gestate|conceive|conceptualise|create by mental act (generic term)|create mentally (generic term)
+conceptus|1
+(noun)|embryo|fertilized egg|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+concern|7
+(noun)|interest (generic term)|involvement (generic term)
+(noun)|care|fear|anxiety (generic term)
+(noun)|business|business concern|business organization|business organisation|enterprise (generic term)
+(noun)|worry|headache|vexation|negative stimulus (generic term)
+(noun)|sympathy (generic term)|fellow feeling (generic term)|unconcern (antonym)
+(verb)|refer|pertain|relate|come to|bear on|touch|touch on
+(verb)|interest|occupy|worry
+concerned|4
+(adj)|afraid (similar term)|afraid (similar term)|haunted (similar term)|obsessed (similar term)|preoccupied (similar term)|taken up (similar term)|solicitous (similar term)|attentive (related term)|troubled (related term)|unconcerned (antonym)
+(adj)|interested|involved (similar term)
+(adj)|related (similar term)|related to (similar term)
+(adj)|implicated|involved (similar term)
+concert|3
+(noun)|performance (generic term)|public presentation (generic term)
+(verb)|plan (generic term)|project (generic term)|contrive (generic term)|design (generic term)
+(verb)|settle (generic term)|square off (generic term)|square up (generic term)|determine (generic term)
+concert-goer|1
+(noun)|music lover|consumer (generic term)
+concert band|1
+(noun)|military band|band (generic term)
+concert dance|1
+(noun)|ballet|stage dancing (generic term)|choreography (generic term)
+concert grand|1
+(noun)|concert piano|grand piano (generic term)|grand (generic term)
+concert hall|1
+(noun)|hall (generic term)
+concert piano|1
+(noun)|concert grand|grand piano (generic term)|grand (generic term)
+concert pitch|1
+(noun)|philharmonic pitch|international pitch|pitch (generic term)
+concerted|1
+(adj)|combined|conjunct|conjunctive|cooperative|united|joint (similar term)
+concerted music|1
+(noun)|polyphony|polyphonic music|music (generic term)|monophonic music (antonym)|monophony (antonym)
+concertina|3
+(noun)|barbed wire (generic term)|barbwire (generic term)
+(noun)|free-reed instrument (generic term)
+(verb)|collapse (generic term)
+concertise|1
+(verb)|concertize|perform (generic term)
+concertize|1
+(verb)|concertise|perform (generic term)
+concerto|1
+(noun)|classical music (generic term)|classical (generic term)|serious music (generic term)
+concerto grosso|1
+(noun)|concerto (generic term)
+concession|3
+(noun)|grant|contract (generic term)
+(noun)|conceding|yielding|assent (generic term)|acquiescence (generic term)
+(noun)|agreement (generic term)
+concessionaire|1
+(noun)|concessioner|small businessman (generic term)
+concessioner|1
+(noun)|concessionaire|small businessman (generic term)
+concessive|1
+(adj)|contract (related term)
+conch|1
+(noun)|gastropod (generic term)|univalve (generic term)
+concha|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+conchfish|1
+(noun)|Astropogon stellatus|cardinalfish (generic term)
+conchologist|1
+(noun)|collector (generic term)|aggregator (generic term)
+conchology|1
+(noun)|shell collecting|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)|malacology (generic term)
+concierge|1
+(noun)|caretaker (generic term)
+conciliable|1
+(adj)|appeasable|placable (similar term)
+conciliate|3
+(verb)|pacify|lenify|assuage|appease|mollify|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|reconcile|patch up|make up|settle|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|accommodate|reconcile|harmonize (generic term)|harmonise (generic term)
+conciliation|3
+(noun)|peace (generic term)
+(noun)|mediation (generic term)
+(noun)|placation|propitiation|appeasement (generic term)|calming (generic term)
+conciliative|1
+(adj)|conciliatory|appeasing (similar term)|placating (similar term)|placative (similar term)|placatory (similar term)|propitiative (similar term)|propitiatory (similar term)|soft (similar term)|antagonistic (antonym)
+conciliator|1
+(noun)|make-peace|pacifier|peacemaker|reconciler|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+conciliatory|2
+(adj)|compromising|flexible|yielding (similar term)|uncompromising (antonym)
+(adj)|conciliative|appeasing (similar term)|placating (similar term)|placative (similar term)|placatory (similar term)|propitiative (similar term)|propitiatory (similar term)|soft (similar term)|antagonistic (antonym)
+concise|1
+(adj)|aphoristic (similar term)|apothegmatic (similar term)|epigrammatic (similar term)|brief (similar term)|compendious (similar term)|compact (similar term)|succinct (similar term)|summary (similar term)|crisp (similar term)|curt (similar term)|laconic (similar term)|terse (similar term)|cryptic (similar term)|elliptic (similar term)|elliptical (similar term)|pithy (similar term)|sententious (similar term)|telegraphic (similar term)|taciturn (related term)|prolix (antonym)
+concisely|1
+(adv)|briefly|shortly|in brief|in short
+conciseness|1
+(noun)|concision|pithiness|succinctness|terseness (generic term)
+concision|1
+(noun)|conciseness|pithiness|succinctness|terseness (generic term)
+conclave|1
+(noun)|meeting (generic term)|group meeting (generic term)
+conclude|5
+(verb)|reason|reason out|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|end (generic term)|terminate (generic term)
+(verb)|resolve|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|close|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|agree (generic term)
+concluded|1
+(adj)|complete|ended|over|all over|terminated|finished (similar term)
+concluding|1
+(adj)|final|last|terminal|closing (similar term)
+conclusion|9
+(noun)|decision|determination|judgment (generic term)|judgement (generic term)|mind (generic term)
+(noun)|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|stopping point|finale|finis|finish|last|close|end (generic term)|ending (generic term)
+(noun)|ending|finish|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|beginning (antonym)
+(noun)|ratiocination|proposition (generic term)
+(noun)|termination|ending|change of state (generic term)
+(noun)|settlement (generic term)
+(noun)|end|close|closing|ending|section (generic term)|subdivision (generic term)
+(noun)|decision|determination|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+conclusion of law|1
+(noun)|finding of law|finding (generic term)
+conclusive|3
+(adj)|definitive (similar term)|determinate (similar term)|decisive (related term)|inconclusive (antonym)
+(adj)|decisive (similar term)
+(adj)|absolute|unequivocal (similar term)|univocal (similar term)|unambiguous (similar term)
+conclusively|1
+(adv)|once and for all|inconclusively (antonym)
+conclusiveness|1
+(noun)|finality|decisiveness|determinateness (generic term)|definiteness (generic term)|inconclusiveness (antonym)
+concoct|4
+(verb)|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+(verb)|cook up|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|trump up|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|think up|think of|dream up|hatch|create by mental act (generic term)|create mentally (generic term)
+concoction|4
+(noun)|mixture|intermixture|foodstuff (generic term)|food product (generic term)
+(noun)|mix (generic term)|mixture (generic term)
+(noun)|invention (generic term)|innovation (generic term)|excogitation (generic term)|conception (generic term)|design (generic term)
+(noun)|confection|creating from raw materials (generic term)
+concomitance|1
+(noun)|concurrence (generic term)|coincidence (generic term)|conjunction (generic term)|co-occurrence (generic term)
+concomitant|2
+(adj)|accompanying|attendant|incidental|incidental to|related (similar term)|related to (similar term)
+(noun)|accompaniment|attendant|co-occurrence|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+concord|10
+(noun)|Concord|capital of New Hampshire|state capital (generic term)
+(noun)|harmony|concordance|order (generic term)
+(noun)|agreement|grammatical relation (generic term)
+(noun)|Concord|town (generic term)
+(noun)|harmony|concordance|agreement (generic term)
+(noun)|Lexington|Concord|Lexington and Concord|pitched battle (generic term)
+(verb)|harmonize|harmonise|consort|accord|fit in|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|arrange (generic term)|fix up (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|agree|hold|concur|disagree (antonym)
+concord grape|1
+(noun)|Concord grape|fox grape (generic term)
+concordance|3
+(noun)|harmony|concord|order (generic term)
+(noun)|harmony|concord|agreement (generic term)
+(noun)|index (generic term)
+concordant|2
+(adj)|accordant|agreeable|conformable|consonant|consistent (similar term)
+(adj)|concurring|accordant (similar term)
+concordat|1
+(noun)|covenant|compact|written agreement (generic term)
+concourse|3
+(noun)|multitude|throng|gathering (generic term)|assemblage (generic term)
+(noun)|hallway (generic term)|hall (generic term)
+(noun)|confluence|merging (generic term)|meeting (generic term)|coming together (generic term)
+concrete|5
+(adj)|factual (similar term)|objective (similar term)|real (similar term)|tangible (similar term)|tangible (related term)|touchable (related term)|practical (related term)|real (related term)|existent (related term)|abstract (antonym)
+(adj)|solid (similar term)
+(noun)|building material (generic term)|paving material (generic term)
+(verb)|cover (generic term)
+(verb)|solidify (generic term)
+concrete jungle|1
+(noun)|jungle (generic term)
+concrete mixer|1
+(noun)|cement mixer|machine (generic term)
+concrete representation|1
+(noun)|concretism|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+concretely|1
+(adv)|abstractly (antonym)
+concreteness|1
+(noun)|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|abstractness (antonym)
+concretion|4
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|calculus|rock (generic term)|stone (generic term)
+(noun)|compaction|compression|densification|concentration (generic term)
+(noun)|coalescence|coalescency|coalition|conglutination|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+concretise|1
+(verb)|concretize|change (generic term)
+concretism|1
+(noun)|concrete representation|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+concretistic|1
+(adj)|representation|mental representation|internal representation (related term)
+concretize|2
+(verb)|pin down (generic term)|peg down (generic term)|nail down (generic term)|narrow down (generic term)|narrow (generic term)|specify (generic term)
+(verb)|concretise|change (generic term)
+concubinage|1
+(noun)|cohabitation (generic term)
+concubine|1
+(noun)|courtesan|doxy|odalisque|paramour|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+concupiscence|1
+(noun)|sexual desire|eros|physical attraction|desire (generic term)
+concupiscent|1
+(adj)|lustful|lusty|passionate (similar term)
+concur|2
+(verb)|agree|hold|concord|disagree (antonym)
+(verb)|coincide|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+concurrence|4
+(noun)|concurrency|agreement (generic term)
+(noun)|concurrency|cooperation (generic term)
+(noun)|meeting of minds|agreement (generic term)|accord (generic term)
+(noun)|coincidence|conjunction|co-occurrence|simultaneity (generic term)|simultaneousness (generic term)
+concurrency|2
+(noun)|concurrence|agreement (generic term)
+(noun)|concurrence|cooperation (generic term)
+concurrent|1
+(adj)|coincident|coincidental|coinciding|co-occurrent|cooccurring|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+concurrent execution|1
+(noun)|multiprogramming|execution (generic term)|instruction execution (generic term)
+concurrent negligence|1
+(noun)|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+concurrent operation|1
+(noun)|operation (generic term)
+concurrently|1
+(adv)|at the same time
+concurring|1
+(adj)|concordant|accordant (similar term)
+concurring opinion|1
+(noun)|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+concuss|2
+(verb)|shake (generic term)|agitate (generic term)
+(verb)|injure (generic term)|wound (generic term)
+concussion|2
+(noun)|injury (generic term)|accidental injury (generic term)
+(noun)|blow (generic term)|bump (generic term)
+condemn|5
+(verb)|reprobate|decry|objurgate|excoriate|denounce (generic term)
+(verb)|declare (generic term)
+(verb)|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|attest (generic term)|certify (generic term)|manifest (generic term)|demonstrate (generic term)|evidence (generic term)
+(verb)|sentence|doom|declare (generic term)
+condemnable|1
+(adj)|criminal|deplorable|reprehensible|vicious|wrong (similar term)
+condemnation|5
+(noun)|disapprobation|disapproval (generic term)|approbation (antonym)
+(noun)|disapproval (generic term)
+(noun)|execration|curse|denunciation (generic term)|denouncement (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|conviction|judgment of conviction|sentence|final judgment (generic term)|final decision (generic term)|acquittal (antonym)
+condemnatory|1
+(adj)|condemning|inculpatory (similar term)|inculpative (similar term)
+condemned|4
+(adj)|convicted|guilty (similar term)
+(adj)|censured|disapproved (similar term)
+(adj)|appropriated|confiscate|confiscated|seized|taken over|taken (similar term)
+(adj)|unfit (similar term)
+condemning|1
+(adj)|condemnatory|inculpatory (similar term)|inculpative (similar term)
+condensate|1
+(noun)|condensation|atmospheric phenomenon (generic term)
+condensation|6
+(noun)|process (generic term)|unconscious process (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|condensate|atmospheric phenomenon (generic term)
+(noun)|compression|contraction|shrinking (generic term)|shrinkage (generic term)
+(noun)|abridgement|abridgment|capsule|summary (generic term)|sum-up (generic term)
+(noun)|condensing|compression (generic term)|compressing (generic term)
+condensation pump|1
+(noun)|diffusion pump|air pump (generic term)|vacuum pump (generic term)
+condensation trail|1
+(noun)|contrail|cloud (generic term)
+condense|7
+(verb)|distill|distil|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|digest|concentrate|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|change integrity (generic term)
+(verb)|intensify (generic term)|deepen (generic term)
+(verb)|arise (generic term)|come up (generic term)
+(verb)|concentrate|contract|change (generic term)|alter (generic term)|modify (generic term)
+condensed milk|1
+(noun)|milk (generic term)
+condenser|4
+(noun)|capacitor|capacitance|electrical condenser|electrical device (generic term)
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|coil (generic term)
+(noun)|optical condenser|lens (generic term)|lense (generic term)|lens system (generic term)
+condenser microphone|1
+(noun)|capacitor microphone|microphone (generic term)|mike (generic term)
+condensing|1
+(noun)|condensation|compression (generic term)|compressing (generic term)
+condescend|4
+(verb)|act (generic term)|move (generic term)
+(verb)|deign|descend|act (generic term)|move (generic term)
+(verb)|stoop|lower oneself|act (generic term)|move (generic term)
+(verb)|patronize|patronise|interact (generic term)
+condescending|1
+(adj)|arch|patronizing|patronising|superior (similar term)
+condescendingly|1
+(adv)|patronizingly|patronisingly
+condescendingness|1
+(noun)|condescension|affability (generic term)|affableness (generic term)|amiability (generic term)|amiableness (generic term)|bonhomie (generic term)|geniality (generic term)
+condescension|3
+(noun)|superciliousness|disdainfulness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+(noun)|disdain|patronage|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|condescendingness|affability (generic term)|affableness (generic term)|amiability (generic term)|amiableness (generic term)|bonhomie (generic term)|geniality (generic term)
+condign|1
+(adj)|merited (similar term)|deserved (similar term)
+condiment|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+condition|12
+(noun)|status|state (generic term)
+(noun)|state (generic term)
+(noun)|precondition|stipulation|premise (generic term)|premiss (generic term)|assumption (generic term)
+(noun)|term|statement (generic term)
+(noun)|shape|good health (generic term)|healthiness (generic term)
+(noun)|circumstance|consideration|information (generic term)
+(noun)|experimental condition|procedure (generic term)|process (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|discipline|train|check|develop (generic term)|make grow (generic term)
+(verb)|stipulate|qualify|specify|contract (generic term)|undertake (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|shampoo (generic term)
+conditional|2
+(adj)|qualified (similar term)
+(adj)|counterfactual (similar term)|contrary to fact (similar term)|contingent (similar term)|contingent on (similar term)|dependent on (similar term)|dependant on (similar term)|depending on (similar term)|dependent (similar term)|dependant (similar term)|qualified (similar term)|probationary (similar term)|provisional (similar term)|provisionary (similar term)|tentative (similar term)|provisory (similar term)|qualified (related term)|unconditional (antonym)
+conditional contract|1
+(noun)|contract (generic term)
+conditional probability|1
+(noun)|contingent probability|probability (generic term)|chance (generic term)
+conditional reaction|1
+(noun)|conditional reflex|conditioned reflex|acquired reflex|conditioned reaction|conditional response|conditioned response|learned reaction (generic term)|learned response (generic term)
+conditional reflex|1
+(noun)|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction (generic term)|learned response (generic term)
+conditional relation|1
+(noun)|implication|logical implication|logical relation (generic term)
+conditional response|1
+(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditioned response|learned reaction (generic term)|learned response (generic term)
+conditional sale|2
+(noun)|security interest (generic term)
+(noun)|sale (generic term)|sales agreement (generic term)
+conditionality|1
+(noun)|state (generic term)
+conditionally|1
+(adv)|not absolutely|unconditionally (antonym)
+conditioned|2
+(adj)|learned|unconditioned (antonym)
+(adj)|in condition|fit (similar term)|healthy (similar term)
+conditioned avoidance|1
+(noun)|conditioned avoidance response|conditional reflex (generic term)|conditioned reflex (generic term)|acquired reflex (generic term)|conditional reaction (generic term)|conditioned reaction (generic term)|conditional response (generic term)|conditioned response (generic term)
+conditioned avoidance response|1
+(noun)|conditioned avoidance|conditional reflex (generic term)|conditioned reflex (generic term)|acquired reflex (generic term)|conditional reaction (generic term)|conditioned reaction (generic term)|conditional response (generic term)|conditioned response (generic term)
+conditioned emotion|1
+(noun)|conditioned emotional response|CER|emotion (generic term)
+conditioned emotional response|1
+(noun)|CER|conditioned emotion|emotion (generic term)
+conditioned reaction|1
+(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditional response|conditioned response|learned reaction (generic term)|learned response (generic term)
+conditioned reflex|1
+(noun)|conditional reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|conditioned response|learned reaction (generic term)|learned response (generic term)
+conditioned response|1
+(noun)|conditional reflex|conditioned reflex|acquired reflex|conditional reaction|conditioned reaction|conditional response|learned reaction (generic term)|learned response (generic term)
+conditioned stimulus|1
+(noun)|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+conditioner|3
+(noun)|cardiopulmonary exercise (generic term)
+(noun)|coach (generic term)|manager (generic term)|handler (generic term)
+(noun)|softener (generic term)
+conditioning|1
+(noun)|learning (generic term)|acquisition (generic term)
+condo|1
+(noun)|condominium|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+condole|1
+(verb)|commiserate (generic term)|sympathize (generic term)|sympathise (generic term)
+condole with|1
+(verb)|feel for|pity|compassionate|sympathize with|grieve (generic term)|sorrow (generic term)
+condolence|1
+(noun)|commiseration|acknowledgment (generic term)|acknowledgement (generic term)
+condolent|1
+(adj)|sympathetic (similar term)
+condom|1
+(noun)|rubber|safety|safe|prophylactic|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+condominium|2
+(noun)|condo|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+condonation|1
+(noun)|forgiveness (generic term)|pardon (generic term)
+condone|1
+(verb)|excuse|forgive (generic term)
+condor|1
+(noun)|New World vulture (generic term)|cathartid (generic term)
+condorcet|1
+(noun)|Condorcet|Marquis de Condorcet|Marie Jean Antoine Nicolas Caritat|mathematician (generic term)|philosopher (generic term)
+conduce|1
+(verb)|contribute|lead|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+conducive|1
+(adj)|contributing|contributive|contributory|tributary|causative (similar term)
+conduct|8
+(noun)|behavior|behaviour|doings|activity (generic term)
+(noun)|demeanor|demeanour|behavior|behaviour|deportment|trait (generic term)
+(verb)|carry on|deal|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|lead|direct|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|behave|acquit|bear|deport|comport|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+(verb)|transmit|convey|carry|channel|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|lead|take|direct|guide
+(verb)|perform (generic term)
+conductance|1
+(noun)|electrical phenomenon (generic term)
+conductance unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+conducting|2
+(noun)|administration (generic term)|disposal (generic term)
+(noun)|management (generic term)|direction (generic term)
+conducting wire|1
+(noun)|wire|conductor (generic term)
+conduction|1
+(noun)|conductivity|physical phenomenon (generic term)
+conduction anaesthesia|1
+(noun)|conduction anesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+conduction anesthesia|1
+(noun)|conduction anaesthesia|nerve block anesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+conduction aphasia|1
+(noun)|associative aphasia|aphasia (generic term)
+conduction deafness|1
+(noun)|conductive hearing loss|middle-ear deafness|hearing impairment (generic term)|hearing disorder (generic term)
+conductive|1
+(adj)|semiconducting (similar term)|semiconductive (similar term)|nonconductive (antonym)
+conductive hearing loss|1
+(noun)|conduction deafness|middle-ear deafness|hearing impairment (generic term)|hearing disorder (generic term)
+conductivity|1
+(noun)|conduction|physical phenomenon (generic term)
+conductor|4
+(noun)|music director|director|musician (generic term)
+(noun)|device (generic term)
+(noun)|material (generic term)|stuff (generic term)|insulator (antonym)
+(noun)|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+conductress|1
+(noun)|conductor (generic term)
+conduit|1
+(noun)|passage (generic term)
+condylar|1
+(adj)|process|outgrowth|appendage (related term)
+condylar process|1
+(noun)|condyloid process|mandibular condyle|condyle (generic term)
+condyle|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+condylion|1
+(noun)|craniometric point (generic term)
+condyloid process|1
+(noun)|condylar process|mandibular condyle|condyle (generic term)
+condyloma acuminatum|1
+(noun)|genital wart|venereal wart|verruca acuminata|wart (generic term)|verruca (generic term)
+condylura|1
+(noun)|Condylura|genus Condylura|mammal genus (generic term)
+condylura cristata|1
+(noun)|starnose mole|star-nosed mole|Condylura cristata|mole (generic term)
+cone|5
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|conoid|cone shape|round shape (generic term)
+(noun)|strobilus|strobile|reproductive structure (generic term)
+(noun)|cone cell|retinal cone|visual cell (generic term)
+(verb)|bevel (generic term)|chamfer (generic term)
+cone-bearing|1
+(adj)|coniferous|evergreen (similar term)
+cone-nosed bug|1
+(noun)|conenose|conenose bug|big bedbug|kissing bug|assassin bug (generic term)|reduviid (generic term)
+cone-shaped|1
+(adj)|conic|conical|conelike|round shape (related term)
+cone cell|1
+(noun)|cone|retinal cone|visual cell (generic term)
+cone clutch|1
+(noun)|cone friction clutch|friction clutch (generic term)
+cone friction clutch|1
+(noun)|cone clutch|friction clutch (generic term)
+cone pepper|1
+(noun)|Capsicum annuum conoides|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+cone shape|1
+(noun)|cone|conoid|round shape (generic term)
+coneflower|2
+(noun)|wildflower (generic term)|wild flower (generic term)
+(noun)|flower (generic term)
+conelike|1
+(adj)|conic|conical|cone-shaped|round shape (related term)
+conenose|1
+(noun)|cone-nosed bug|conenose bug|big bedbug|kissing bug|assassin bug (generic term)|reduviid (generic term)
+conenose bug|1
+(noun)|conenose|cone-nosed bug|big bedbug|kissing bug|assassin bug (generic term)|reduviid (generic term)
+conepatus|1
+(noun)|Conepatus|genus Conepatus|mammal genus (generic term)
+conepatus leuconotus|1
+(noun)|hog-nosed skunk|hognosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+conessi|1
+(noun)|ivory tree|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+conestoga|1
+(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon (generic term)|waggon (generic term)
+conestoga wagon|1
+(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon (generic term)|waggon (generic term)
+coney|4
+(noun)|Epinephelus fulvus|grouper (generic term)
+(noun)|hyrax|cony|dassie|das|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|pika|mouse hare|rock rabbit|cony|lagomorph (generic term)|gnawing mammal (generic term)
+(noun)|rabbit|cony|leporid (generic term)|leporid mammal (generic term)
+coney island|1
+(noun)|Coney Island|city district (generic term)
+confab|3
+(noun)|chat|confabulation|schmooze|schmoose|conversation (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+(verb)|confer|confabulate|consult|hash out (generic term)|discuss (generic term)|talk over (generic term)
+confabulate|3
+(verb)|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+(verb)|confer|confab|consult|hash out (generic term)|discuss (generic term)|talk over (generic term)
+confabulation|2
+(noun)|chat|confab|schmooze|schmoose|conversation (generic term)
+(noun)|memory (generic term)
+confect|3
+(noun)|candy|sweet (generic term)|confection (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|confection|comfit|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+confection|3
+(noun)|sweet|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+(noun)|concoction|creating from raw materials (generic term)
+(verb)|confect|comfit|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+confectionary|1
+(noun)|confectionery|candy store|shop (generic term)|store (generic term)
+confectioner|1
+(noun)|candymaker|maker (generic term)|shaper (generic term)
+confectionery|3
+(noun)|sweet (generic term)|confection (generic term)
+(noun)|confectionary|candy store|shop (generic term)|store (generic term)
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+confederacy|4
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|confederation|federation|union (generic term)
+(noun)|conspiracy|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|conspiracy|agreement (generic term)|understanding (generic term)
+confederate|7
+(adj)|Confederate|southern (similar term)
+(adj)|allied|confederative|united (similar term)
+(noun)|Confederate|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)|Southerner (generic term)
+(noun)|collaborator|henchman|partner in crime|accessory (generic term)|accessary (generic term)
+(noun)|accomplice|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(verb)|band together|unite (generic term)|unify (generic term)
+(verb)|unite (generic term)|unify (generic term)
+confederate army|1
+(noun)|Confederate Army|Army of the Confederacy|army (generic term)|regular army (generic term)|ground forces (generic term)|grey (generic term)|gray (generic term)
+confederate flag|1
+(noun)|Stars and Bars|Confederate flag|flag (generic term)
+confederate jasmine|1
+(noun)|star jasmine|Trachelospermum jasminoides|vine (generic term)
+confederate rose|1
+(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus (generic term)
+confederate rose mallow|1
+(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus (generic term)
+confederate soldier|1
+(noun)|Confederate soldier|soldier (generic term)|Confederate (generic term)
+confederate states|1
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+confederate states of america|1
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+confederation|3
+(noun)|alliance|coalition (generic term)|fusion (generic term)
+(noun)|confederacy|federation|union (generic term)
+(noun)|alliance|group action (generic term)
+confederative|1
+(adj)|allied|confederate|united (similar term)
+confer|2
+(verb)|confabulate|confab|consult|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|bestow|award (generic term)|present (generic term)
+confer with|1
+(verb)|consult|ask (generic term)|inquire (generic term)|enquire (generic term)
+conferee|2
+(noun)|recipient (generic term)|receiver (generic term)
+(noun)|communicator (generic term)
+conference|3
+(noun)|meeting (generic term)|group meeting (generic term)
+(noun)|league|association (generic term)
+(noun)|group discussion|discussion (generic term)|give-and-take (generic term)|word (generic term)
+conference call|1
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+conference center|1
+(noun)|conference house|center (generic term)|centre (generic term)
+conference house|1
+(noun)|conference center|center (generic term)|centre (generic term)
+conference room|1
+(noun)|room (generic term)
+conference table|1
+(noun)|council table|council board|table (generic term)
+conferment|1
+(noun)|bestowal|bestowment|conferral|giving (generic term)|gift (generic term)
+conferral|1
+(noun)|bestowal|bestowment|conferment|giving (generic term)|gift (generic term)
+conferred|1
+(adj)|bestowed|presented|given (similar term)
+conferrer|2
+(noun)|donor|giver|presenter|bestower|benefactor (generic term)|helper (generic term)
+(noun)|communicator (generic term)
+conferva|1
+(noun)|yellow-green algae (generic term)
+confervoid algae|1
+(noun)|alga (generic term)|algae (generic term)
+confess|3
+(verb)|squeal|shrive|fink|admit (generic term)|acknowledge (generic term)
+(verb)|concede|profess|admit (generic term)|acknowledge (generic term)
+(verb)|admit (generic term)|acknowledge (generic term)
+confessedly|1
+(adv)|true|admittedly|avowedly
+confession|5
+(noun)|admission (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|penance (generic term)
+(noun)|declaration (generic term)
+(noun)|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+confession of judgement|1
+(noun)|confession of judgment|cognovit judgment|cognovit judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+confession of judgment|1
+(noun)|confession of judgement|cognovit judgment|cognovit judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+confessional|1
+(noun)|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+confessor|2
+(noun)|priest (generic term)
+(noun)|communicator (generic term)
+confetti|1
+(noun)|paper (generic term)
+confidant|1
+(noun)|intimate|friend (generic term)
+confidante|1
+(noun)|confidant (generic term)|intimate (generic term)
+confide|2
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|entrust|intrust|trust|commit|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+confidence|5
+(noun)|assurance|self-assurance|self-confidence|authority|sureness|certainty (generic term)
+(noun)|security (generic term)|diffidence (antonym)
+(noun)|hopefulness (generic term)
+(noun)|trust|friendship (generic term)|friendly relationship (generic term)
+(noun)|secret (generic term)
+confidence game|1
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+confidence man|1
+(noun)|con man|con artist|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+confidence trick|1
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence game|con game|gyp|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+confident|3
+(adj)|assured (similar term)|cocksure (similar term)|overconfident (similar term)|positive (similar term)|reassured (similar term)|self-assured (similar term)|self-confident (similar term)|unconfident (antonym)
+(adj)|convinced|positive|certain (similar term)|sure (similar term)
+(adj)|surefooted|sure-footed|capable (similar term)
+confidential|4
+(adj)|private (similar term)
+(adj)|secret|private (similar term)
+(adj)|close (similar term)
+(adj)|classified (similar term)
+confidential adviser-advisee relation|1
+(noun)|fiduciary relation (generic term)
+confidential information|1
+(noun)|tip|lead|steer|wind|hint|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+confidentiality|2
+(noun)|privacy (generic term)|privateness (generic term)|secrecy (generic term)|concealment (generic term)
+(noun)|discretion (generic term)|discreetness (generic term)|circumspection (generic term)|prudence (generic term)
+confidently|1
+(adv)|with confidence
+confiding|1
+(adj)|trustful (similar term)|trusting (similar term)
+confidingly|1
+(adv)|trustfully|trustingly|distrustfully (antonym)
+configuration|2
+(noun)|constellation|design (generic term)|plan (generic term)
+(noun)|shape|form|contour|conformation|spatial property (generic term)|spatiality (generic term)
+configurational|1
+(adj)|design|plan (related term)
+configurationism|1
+(noun)|Gestalt psychology|scientific theory (generic term)
+configure|1
+(verb)|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+configured|1
+(adj)|designed|organized (similar term)
+confine|6
+(verb)|limit|circumscribe|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|restrict|restrain|trammel|limit|bound|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|enclose|hold in|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|detain|free (antonym)
+(verb)|restrain|hold|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+confined|5
+(adj)|claustrophobic (similar term)|close (similar term)|confining (similar term)|homebound (similar term)|housebound (similar term)|shut-in (similar term)|pent (similar term)|shut up (similar term)|snowbound (similar term)|stormbound (similar term)|weather-bound (similar term)|restricted (related term)|unfree (related term)|unconfined (antonym)
+(adj)|fenced in|penned|enclosed (similar term)
+(adj)|invasive (antonym)
+(adj)|restrained (similar term)
+(adj)|captive|imprisoned|jailed|unfree (similar term)
+confinement|3
+(noun)|parturiency|labor|labour|lying-in|travail|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|restraint (generic term)
+(noun)|subjugation (generic term)|subjection (generic term)
+confines|1
+(noun)|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+confining|2
+(adj)|constraining|constrictive|limiting|restricting|restrictive (similar term)
+(adj)|close|confined (similar term)
+confirm|5
+(verb)|corroborate|sustain|substantiate|support|affirm|negate (antonym)
+(verb)|reassert|affirm (generic term)
+(verb)|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+(verb)|covenant (generic term)
+confirmable|1
+(adj)|verifiable|falsifiable|empirical (similar term)|empiric (similar term)
+confirmation|5
+(noun)|verification|check|substantiation|proof (generic term)|cogent evidence (generic term)
+(noun)|information (generic term)|info (generic term)
+(noun)|ratification|agreement (generic term)
+(noun)|religious ceremony (generic term)|religious ritual (generic term)
+(noun)|sacrament (generic term)
+confirmation hearing|1
+(noun)|hearing (generic term)
+confirmative|1
+(adj)|collateral|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+confirmatory|1
+(adj)|collateral|confirmative|confirming|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+confirmed|3
+(adj)|unchangeable (similar term)
+(adj)|official (similar term)|unconfirmed (antonym)
+(adj)|habitual|inveterate|addicted (similar term)
+confirming|2
+(adj)|positive|Gram-positive (similar term)|negative (antonym)
+(adj)|collateral|confirmative|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+confiscate|3
+(adj)|forfeit|forfeited|lost (similar term)
+(adj)|appropriated|condemned|confiscated|seized|taken over|taken (similar term)
+(verb)|impound|attach|sequester|seize|take (generic term)
+confiscated|1
+(adj)|appropriated|condemned|confiscate|seized|taken over|taken (similar term)
+confiscation|1
+(noun)|arrogation|seizure (generic term)
+confit|1
+(noun)|cut (generic term)|cut of meat (generic term)
+confiture|1
+(noun)|sweet (generic term)|confection (generic term)
+conflagrate|2
+(verb)|kindle|enkindle|inflame|ignite (generic term)|light (generic term)
+(verb)|erupt|ignite|catch fire|take fire|combust|change state (generic term)|turn (generic term)
+conflagration|1
+(noun)|inferno|fire (generic term)
+conflate|1
+(verb)|blend|flux|mix|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+conflict|9
+(noun)|struggle|battle|group action (generic term)
+(noun)|ambivalence (generic term)|ambivalency (generic term)
+(noun)|battle|fight|engagement|military action (generic term)|action (generic term)
+(noun)|state (generic term)
+(noun)|incompatibility (generic term)
+(noun)|opposition (generic term)|oppositeness (generic term)
+(noun)|dispute|difference|difference of opinion|disagreement (generic term)
+(verb)|contrast (generic term)|counterpoint (generic term)
+(verb)|run afoul|infringe|contravene|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+conflict of interest|1
+(noun)|situation (generic term)
+conflicting|2
+(adj)|at odds|contradictory|self-contradictory|inconsistent (similar term)
+(adj)|opposed (similar term)
+confluence|3
+(noun)|meeting|geographic point (generic term)|geographical point (generic term)
+(noun)|conflux|merging|blend (generic term)|blending (generic term)
+(noun)|concourse|merging (generic term)|meeting (generic term)|coming together (generic term)
+confluent|2
+(adj)|merging|convergent (similar term)
+(noun)|feeder|tributary|affluent|branch (generic term)|distributary (antonym)
+conflux|1
+(noun)|confluence|merging|blend (generic term)|blending (generic term)
+conform|2
+(verb)|deviate (antonym)
+(verb)|adjust|adapt|change (generic term)
+conform to|3
+(verb)|meet|fit|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|comply (generic term)|follow (generic term)|abide by (generic term)|violate (antonym)
+(verb)|follow|imitate (generic term)|copy (generic term)|simulate (generic term)
+conformable|3
+(adj)|obedient (similar term)
+(adj)|amenable|compliant (similar term)
+(adj)|accordant|agreeable|consonant|concordant|consistent (similar term)
+conformal projection|1
+(noun)|orthomorphic projection|map projection (generic term)
+conformance|1
+(noun)|conformity|agreement (generic term)|correspondence (generic term)
+conformation|3
+(noun)|balance (generic term)|equilibrium (generic term)|equipoise (generic term)|counterbalance (generic term)
+(noun)|shape|form|configuration|contour|spatial property (generic term)|spatiality (generic term)
+(noun)|conformity|compliance|abidance|cooperation (generic term)|noncompliance (antonym)|nonconformity (antonym)
+conformational entropy|1
+(noun)|randomness (generic term)|entropy (generic term)|S (generic term)
+conforming|1
+(adj)|conformist|orthodox (similar term)
+conformism|1
+(noun)|conformity|orthodoxy (generic term)|nonconformism (antonym)|nonconformity (antonym)
+conformist|3
+(adj)|nonconformist (antonym)
+(adj)|conforming|orthodox (similar term)
+(noun)|conservative (generic term)|conservativist (generic term)|nonconformist (antonym)
+conformity|5
+(noun)|conformance|agreement (generic term)|correspondence (generic term)
+(noun)|conformation|compliance|abidance|cooperation (generic term)|noncompliance (antonym)|nonconformity (antonym)
+(noun)|conformism|orthodoxy (generic term)|nonconformism (antonym)|nonconformity (antonym)
+(noun)|accord|accordance|agreement (generic term)
+(noun)|ossification|conventionality (generic term)|convention (generic term)|conventionalism (generic term)
+confound|2
+(verb)|confuse|throw|fox|befuddle|fuddle|bedevil|discombobulate|be (generic term)
+(verb)|confuse|mistake (generic term)|misidentify (generic term)
+confounded|1
+(adj)|baffled|befuddled|bemused|bewildered|confused|lost|mazed|mixed-up|at sea|perplexed (similar term)
+confoundedly|1
+(adv)|perplexedly
+confounding|1
+(adj)|contradictory|unsupportive (similar term)
+confrere|1
+(noun)|colleague|fellow|associate (generic term)
+confront|4
+(verb)|face|meet (generic term)|encounter (generic term)|play (generic term)|take on (generic term)|face off (related term)
+(verb)|face up|face|set about (generic term)|go about (generic term)|approach (generic term)|avoid (antonym)
+(verb)|face|present
+(verb)|front (generic term)|look (generic term)|face (generic term)
+confrontation|5
+(noun)|challenge (generic term)
+(noun)|discord (generic term)|dissension (generic term)
+(noun)|encounter|showdown|face-off|disagreement (generic term)
+(noun)|opposition|resistance (generic term)
+(noun)|comparison (generic term)|comparing (generic term)
+confrontational|1
+(adj)|resistance (related term)
+confucian|2
+(adj)|Confucian|philosophical doctrine|philosophical theory (related term)
+(noun)|Confucian|Confucianist|believer (generic term)|truster (generic term)
+confucianism|1
+(noun)|Confucianism|philosophical doctrine (generic term)|philosophical theory (generic term)
+confucianist|1
+(noun)|Confucian|Confucianist|believer (generic term)|truster (generic term)
+confucius|1
+(noun)|Confucius|Kongfuze|K'ung Futzu|Kong the Master|philosopher (generic term)
+confusable|1
+(adj)|mistakable|similar (similar term)
+confuse|6
+(verb)|confound|mistake (generic term)|misidentify (generic term)
+(verb)|throw|fox|befuddle|fuddle|bedevil|confound|discombobulate|be (generic term)
+(verb)|flurry|disconcert|put off|embarrass (generic term)|abash (generic term)
+(verb)|jumble|mix up|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|blur|obscure|obnubilate|change (generic term)|alter (generic term)|modify (generic term)
+confused|5
+(adj)|baffled|befuddled|bemused|bewildered|confounded|lost|mazed|mixed-up|at sea|perplexed (similar term)
+(adj)|disconnected|disjointed|disordered|garbled|illogical|scattered|unconnected|incoherent (similar term)
+(adj)|disoriented|lost|unoriented (similar term)
+(adj)|broken|disordered|upset|disorganized (similar term)|disorganised (similar term)
+(adj)|addlebrained (similar term)|addlepated (similar term)|potty (similar term)|puddingheaded (similar term)|muddleheaded (similar term)|addled (similar term)|befuddled (similar term)|muddled (similar term)|muzzy (similar term)|woolly (similar term)|wooly (similar term)|woolly-headed (similar term)|wooly-minded (similar term)|befogged (similar term)|befuddled (similar term)|clouded (similar term)|dazed (similar term)|stunned (similar term)|stupefied (similar term)|stupid (similar term)|dazzled (similar term)|trancelike (similar term)|punch-drunk (similar term)|silly (similar term)|slaphappy (similar term)|spaced-out (similar term)|perplexed (related term)|clearheaded (antonym)
+confusedness|1
+(noun)|confusion|mental confusion|muddiness|disarray|cognitive state (generic term)|state of mind (generic term)
+confusing|2
+(adj)|disorienting (similar term)
+(adj)|perplexing|puzzling|unclear (similar term)
+confusingly|1
+(adv)|bewilderingly
+confusion|5
+(noun)|disorder (generic term)
+(noun)|mental confusion|confusedness|muddiness|disarray|cognitive state (generic term)|state of mind (generic term)
+(noun)|discombobulation|embarrassment (generic term)
+(noun)|combination (generic term)|combining (generic term)|compounding (generic term)
+(noun)|mix-up|mistake (generic term)|error (generic term)|fault (generic term)
+confutable|1
+(adj)|questionable|refutable|confutative|deniable (similar term)
+confutation|2
+(noun)|refutation (generic term)|defense (generic term)|defence (generic term)
+(noun)|disproof (generic term)|falsification (generic term)|refutation (generic term)
+confutative|1
+(adj)|questionable|refutable|confutable|deniable (similar term)
+confute|1
+(verb)|disprove|negate (generic term)|contradict (generic term)|prove (antonym)
+confuter|1
+(noun)|rebutter|disprover|refuter|debater (generic term)|arguer (generic term)
+conga|3
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+conga line|1
+(noun)|line (generic term)
+conge|4
+(noun)|molding (generic term)|moulding (generic term)
+(noun)|license (generic term)|permission (generic term)|permit (generic term)
+(noun)|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+(verb)|congee|bow (generic term)|bow down (generic term)
+congeal|1
+(verb)|jell|set|solidify (generic term)
+congealed|1
+(adj)|jelled|jellied|solid (similar term)
+congealment|1
+(noun)|congelation|hardening (generic term)|solidifying (generic term)|solidification (generic term)|set (generic term)|curing (generic term)
+congee|3
+(noun)|jook|gruel (generic term)
+(verb)|depart (generic term)|take leave (generic term)|quit (generic term)
+(verb)|conge|bow (generic term)|bow down (generic term)
+congelation|1
+(noun)|congealment|hardening (generic term)|solidifying (generic term)|solidification (generic term)|set (generic term)|curing (generic term)
+congenator|1
+(noun)|relative|congener|congeneric|organism (generic term)|being (generic term)
+congener|1
+(noun)|relative|congenator|congeneric|organism (generic term)|being (generic term)
+congeneric|2
+(adj)|congenerical|congenerous|organism|being (related term)
+(noun)|relative|congener|congenator|organism (generic term)|being (generic term)
+congenerical|1
+(adj)|congeneric|congenerous|organism|being (related term)
+congenerous|1
+(adj)|congeneric|congenerical|organism|being (related term)
+congenial|2
+(adj)|compatible (similar term)|sympathetic (similar term)|sociable (similar term)|compatible (related term)|friendly (related term)|sympathetic (related term)|uncongenial (antonym)
+(adj)|compatible (similar term)
+congeniality|2
+(noun)|congenialness|compatibility (generic term)
+(noun)|friendliness (generic term)|uncongeniality (antonym)
+congenialness|1
+(noun)|congeniality|compatibility (generic term)
+congenital|1
+(adj)|inborn|innate|noninheritable (similar term)|nonheritable (similar term)
+congenital abnormality|1
+(noun)|birth defect|congenital anomaly|congenital defect|congenital disorder|defect (generic term)|anomaly (generic term)|anomalousness (generic term)
+congenital afibrinogenemia|1
+(noun)|afibrinogenemia (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+congenital anomaly|1
+(noun)|birth defect|congenital defect|congenital disorder|congenital abnormality|defect (generic term)|anomaly (generic term)|anomalousness (generic term)
+congenital defect|1
+(noun)|birth defect|congenital anomaly|congenital disorder|congenital abnormality|defect (generic term)|anomaly (generic term)|anomalousness (generic term)
+congenital disease|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+congenital disorder|1
+(noun)|birth defect|congenital anomaly|congenital defect|congenital abnormality|defect (generic term)|anomaly (generic term)|anomalousness (generic term)
+congenital heart defect|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+congenital megacolon|1
+(noun)|Hirschsprung's disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+congenital pancytopenia|1
+(noun)|Fanconi's anemia|Fanconi's anaemia|anemia (generic term)|anaemia (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+conger|1
+(noun)|conger eel|eel (generic term)
+conger eel|1
+(noun)|conger|eel (generic term)
+congeries|1
+(noun)|aggregate|conglomeration|sum (generic term)|summation (generic term)|sum total (generic term)
+congest|1
+(verb)|clog|choke off|clog up|back up|choke|foul|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+congested|1
+(adj)|engorged|full (similar term)
+congestion|2
+(noun)|symptom (generic term)
+(noun)|over-crowding|crowding (generic term)
+congestive|1
+(adj)|symptom (related term)
+congestive heart failure|1
+(noun)|heart failure (generic term)|coronary failure (generic term)
+congius|1
+(noun)|gallon|Imperial gallon|British capacity unit (generic term)|Imperial capacity unit (generic term)
+conglobate|1
+(verb)|conglobe|form (generic term)
+conglobation|2
+(noun)|conglomeration|sphere (generic term)
+(noun)|conglomeration|combining (generic term)|combine (generic term)
+conglobe|1
+(verb)|conglobate|form (generic term)
+conglomerate|4
+(adj)|combined (similar term)
+(noun)|pudding stone|rock (generic term)|stone (generic term)
+(noun)|empire|corporation (generic term)|corp (generic term)
+(verb)|accumulate|cumulate|pile up|gather|amass|increase (generic term)
+conglomeration|3
+(noun)|conglobation|sphere (generic term)
+(noun)|aggregate|congeries|sum (generic term)|summation (generic term)|sum total (generic term)
+(noun)|conglobation|combining (generic term)|combine (generic term)
+conglutinate|2
+(verb)|coapt|close (generic term)|fill up (generic term)
+(verb)|cling (generic term)|cleave (generic term)|adhere (generic term)|stick (generic term)|cohere (generic term)
+conglutination|2
+(noun)|union|healing (generic term)
+(noun)|coalescence|coalescency|coalition|concretion|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+congo|4
+(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country (generic term)|African nation (generic term)
+(noun)|Congo|Congo River|Zaire River|river (generic term)
+(noun)|Congo|Republic of the Congo|French Congo|African country (generic term)|African nation (generic term)
+(noun)|congou|congou tea|English breakfast tea|black tea (generic term)
+congo copal|1
+(noun)|congo gum|copal (generic term)
+congo eel|1
+(noun)|amphiuma|congo snake|blind eel|salamander (generic term)
+congo franc|1
+(noun)|Congo franc|franc (generic term)
+congo gum|1
+(noun)|congo copal|copal (generic term)
+congo peafowl|1
+(noun)|afropavo|Congo peafowl|Afropavo congensis|pheasant (generic term)
+congo red|1
+(noun)|azo dye (generic term)|acid-base indicator (generic term)
+congo river|1
+(noun)|Congo|Congo River|Zaire River|river (generic term)
+congo snake|1
+(noun)|amphiuma|congo eel|blind eel|salamander (generic term)
+congolese|2
+(adj)|Congolese|African country|African nation (related term)
+(noun)|Congolese|African (generic term)
+congoo mallee|1
+(noun)|white mallee|Eucalyptus dumosa|mallee (generic term)
+congou|1
+(noun)|congo|congou tea|English breakfast tea|black tea (generic term)
+congou tea|1
+(noun)|congou|congo|English breakfast tea|black tea (generic term)
+congratulate|4
+(verb)|compliment|praise (generic term)
+(verb)|felicitate|wish (generic term)|bid (generic term)
+(verb)|pride|plume|feel (generic term)|experience (generic term)
+(verb)|preen|gloat (generic term)|triumph (generic term)|crow (generic term)
+congratulation|2
+(noun)|felicitation|speech act (generic term)
+(noun)|felicitation|expression (generic term)|verbal expression (generic term)|verbalism (generic term)
+congratulations|1
+(noun)|praise|kudos|extolment|approval (generic term)|commendation (generic term)
+congratulatory|1
+(adj)|gratulatory|felicitous (similar term)
+congregate|2
+(adj)|accumulated|amassed|assembled|collected|massed|concentrated (similar term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+congregating|1
+(noun)|congregation|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+congregation|3
+(noun)|fold|faithful|social group (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|congregating|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+congregation of the inquisition|1
+(noun)|Roman Inquisition|Congregation of the Inquisition|Inquisition (generic term)
+congregational|2
+(adj)|social group (related term)
+(adj)|Congregational|Congregationalist|Protestant denomination (related term)
+congregational christian church|1
+(noun)|Congregational Christian Church|Protestant denomination (generic term)
+congregational church|1
+(noun)|Congregational Church|Protestant denomination (generic term)
+congregationalism|1
+(noun)|Congregationalism|Protestantism (generic term)
+congregationalist|2
+(adj)|Congregational|Congregationalist|Protestant denomination (related term)
+(noun)|Congregationalist|Protestant (generic term)
+congress|4
+(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|meeting (generic term)|group meeting (generic term)
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+congress boot|1
+(noun)|congress shoe|congress gaiter|shoe (generic term)
+congress gaiter|1
+(noun)|congress boot|congress shoe|shoe (generic term)
+congress of industrial organizations|1
+(noun)|Congress of Industrial Organizations|CIO|federation (generic term)
+congress of racial equality|1
+(noun)|Congress of Racial Equality|CORE|nongovernmental organization (generic term)|NGO (generic term)
+congress shoe|1
+(noun)|congress boot|congress gaiter|shoe (generic term)
+congressional|1
+(adj)|legislature|legislative assembly|legislative|general assembly|law-makers (related term)
+congressional district|1
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+congressional medal of honor|1
+(noun)|Medal of Honor|Congressional Medal of Honor|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+congressional record|1
+(noun)|Congressional Record|minutes (generic term)|proceedings (generic term)|transactions (generic term)
+congressman|1
+(noun)|congresswoman|representative|legislator (generic term)
+congresswoman|1
+(noun)|congressman|representative|legislator (generic term)
+congreve|1
+(noun)|Congreve|William Congreve|dramatist (generic term)|playwright (generic term)
+congridae|1
+(noun)|Congridae|family Congridae|fish family (generic term)
+congruence|1
+(noun)|congruity|congruousness|harmony (generic term)|harmoniousness (generic term)|incongruousness (antonym)|incongruity (antonym)
+congruent|2
+(adj)|congruous|appropriate (similar term)|harmonious (similar term)|incongruous (antonym)
+(adj)|coincident (similar term)|coinciding (similar term)|identical (similar term)|superposable (similar term)|incongruent (antonym)
+congruity|1
+(noun)|congruousness|congruence|harmony (generic term)|harmoniousness (generic term)|incongruousness (antonym)|incongruity (antonym)
+congruous|2
+(adj)|congruent|appropriate (similar term)|harmonious (similar term)|incongruous (antonym)
+(adj)|compatible (similar term)
+congruousness|1
+(noun)|congruity|congruence|harmony (generic term)|harmoniousness (generic term)|incongruousness (antonym)|incongruity (antonym)
+conic|2
+(adj)|conical|conelike|cone-shaped|round shape (related term)
+(noun)|conic section|plane figure (generic term)|two-dimensional figure (generic term)
+conic morel|1
+(noun)|black morel|Morchella conica|Morchella angusticeps|narrowhead morel|morel (generic term)
+conic projection|1
+(noun)|conical projection|map projection (generic term)
+conic section|1
+(noun)|conic|plane figure (generic term)|two-dimensional figure (generic term)
+conic verpa|1
+(noun)|Verpa conica|conic Verpa|Verpa (generic term)|bell morel (generic term)
+conic waxycap|1
+(noun)|Hygrocybe acutoconica|waxycap (generic term)
+conical|1
+(adj)|conic|conelike|cone-shaped|round shape (related term)
+conical buoy|1
+(noun)|nun|nun buoy|buoy (generic term)
+conical projection|1
+(noun)|conic projection|map projection (generic term)
+conidiophore|1
+(noun)|hypha (generic term)
+conidiospore|1
+(noun)|conidium|spore (generic term)
+conidium|1
+(noun)|conidiospore|spore (generic term)
+conifer|1
+(noun)|coniferous tree|gymnospermous tree (generic term)
+coniferales|1
+(noun)|Coniferales|order Coniferales|plant order (generic term)
+coniferophyta|1
+(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class (generic term)
+coniferophytina|1
+(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class (generic term)
+coniferopsida|1
+(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class (generic term)
+coniferous|1
+(adj)|cone-bearing|evergreen (similar term)
+coniferous tree|1
+(noun)|conifer|gymnospermous tree (generic term)
+conilurus|1
+(noun)|Conilurus|genus Conilurus|mammal genus (generic term)
+conima|1
+(noun)|gum (generic term)
+coniogramme|1
+(noun)|Coniogramme|genus Coniogramme|fern genus (generic term)
+coniogramme japonica|1
+(noun)|bamboo fern|Coniogramme japonica|fern (generic term)
+conium|1
+(noun)|Conium|genus Conium|rosid dicot genus (generic term)
+conium maculatum|1
+(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+conjectural|1
+(adj)|divinatory|hypothetical|hypothetic|supposed|suppositional|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+conjecture|4
+(noun)|speculation|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|guess|supposition|surmise|surmisal|speculation|hypothesis|opinion (generic term)|view (generic term)
+(noun)|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(verb)|speculate|theorize|theorise|hypothesize|hypothesise|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+conjoin|2
+(verb)|join|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|disjoin (antonym)
+(verb)|marry|get married|wed|hook up with|get hitched with|espouse|unite (generic term)|unify (generic term)
+conjoined|1
+(adj)|conjoint|joint (similar term)
+conjoined twin|1
+(noun)|Siamese twin|identical twin (generic term)|monozygotic twin (generic term)|monozygous twin (generic term)
+conjoint|1
+(adj)|conjoined|joint (similar term)
+conjointly|1
+(adv)|jointly|collectively|together|put together
+conjugal|1
+(adj)|connubial|marital status (related term)
+conjugal family|1
+(noun)|nuclear family|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+conjugal right|1
+(noun)|legal right (generic term)
+conjugal visitation|1
+(noun)|conjugal visitation right|legal right (generic term)
+conjugal visitation right|1
+(noun)|conjugal visitation|legal right (generic term)
+conjugally|1
+(adv)|connubial
+conjugate|7
+(adj)|conjugated|coupled|united (similar term)
+(adj)|compound (similar term)
+(adj)|conjugated|bound (similar term)
+(noun)|conjugate solution|solution (generic term)
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|inflect (generic term)
+(verb)|change (generic term)
+conjugate solution|1
+(noun)|conjugate|solution (generic term)
+conjugated|2
+(adj)|conjugate|coupled|united (similar term)
+(adj)|conjugate|bound (similar term)
+conjugated protein|1
+(noun)|compound protein|protein (generic term)
+conjugation|6
+(noun)|junction|conjunction|colligation|union (generic term)|unification (generic term)
+(noun)|inflection (generic term)|inflexion (generic term)
+(noun)|set (generic term)
+(noun)|class (generic term)|category (generic term)|family (generic term)
+(noun)|coupling|mating|pairing|union|sexual union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|union|unification|uniting|jointure|combination (generic term)|combining (generic term)|compounding (generic term)|disunion (antonym)
+conjunct|3
+(adj)|disjunct (antonym)
+(adj)|united (similar term)
+(adj)|combined|concerted|conjunctive|cooperative|united|joint (similar term)
+conjunction|6
+(noun)|concurrence|coincidence|co-occurrence|simultaneity (generic term)|simultaneousness (generic term)
+(noun)|junction|conjugation|colligation|union (generic term)|unification (generic term)
+(noun)|conjunctive|connective|continuative|function word (generic term)|closed-class word (generic term)
+(noun)|grammatical relation (generic term)
+(noun)|alignment|meeting (generic term)|encounter (generic term)
+(noun)|junction|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+conjunctiva|1
+(noun)|mucous membrane (generic term)|mucosa (generic term)
+conjunctival|1
+(adj)|mucous membrane|mucosa (related term)
+conjunctival layer of bulb|1
+(noun)|bulbar conjunctiva|tunica conjunctiva bulbi|conjunctiva (generic term)
+conjunctival layer of eyelids|1
+(noun)|palpebra conjunctiva|tunica conjunctiva palpebrarum|conjunctiva (generic term)
+conjunctival veins|1
+(noun)|venae conjunctivales|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+conjunctive|3
+(adj)|connecting (similar term)|copulative (similar term)|connective (similar term)|disjunctive (antonym)
+(adj)|combined|concerted|conjunct|cooperative|united|joint (similar term)
+(noun)|conjunction|connective|continuative|function word (generic term)|closed-class word (generic term)
+conjunctivitis|1
+(noun)|pinkeye|inflammation (generic term)|redness (generic term)|rubor (generic term)
+conjunctivitis arida|1
+(noun)|xerophthalmia|xerophthalmus|xeroma|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+conjuncture|1
+(noun)|juncture (generic term)|occasion (generic term)
+conjuration|3
+(noun)|incantation|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+(noun)|conjuring|conjury|invocation|magic (generic term)|thaumaturgy (generic term)
+(noun)|magic trick|conjuring trick|trick|magic|legerdemain|thaumaturgy|illusion|deception|performance (generic term)
+conjure|3
+(verb)|raise|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|bid|beseech|entreat|adjure|press|plead (generic term)
+(verb)|conspire|cabal|complot|machinate|plot (generic term)
+conjure man|1
+(noun)|conjurer|conjuror|witch doctor (generic term)
+conjure up|1
+(verb)|raise|conjure|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+conjurer|2
+(noun)|magician|prestidigitator|conjuror|illusionist|performer (generic term)|performing artist (generic term)
+(noun)|conjuror|conjure man|witch doctor (generic term)
+conjuring|1
+(noun)|conjuration|conjury|invocation|magic (generic term)|thaumaturgy (generic term)
+conjuring trick|1
+(noun)|magic trick|trick|magic|legerdemain|conjuration|thaumaturgy|illusion|deception|performance (generic term)
+conjuror|2
+(noun)|magician|prestidigitator|conjurer|illusionist|performer (generic term)|performing artist (generic term)
+(noun)|conjurer|conjure man|witch doctor (generic term)
+conjury|1
+(noun)|conjuring|conjuration|invocation|magic (generic term)|thaumaturgy (generic term)
+conk|5
+(noun)|nose (generic term)|olfactory organ (generic term)
+(verb)|stall|stop (generic term)|halt (generic term)
+(verb)|hit (generic term)
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|faint|swoon|pass out|zonk out (generic term)|pass out (generic term)|black out (generic term)
+conk out|2
+(verb)|fail|go bad|give way|die|give out|go|break|break down|change (generic term)
+(verb)|poop out|peter out|run down|run out|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+conker|1
+(noun)|buckeye|horse chestnut|seed (generic term)
+conn|1
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+conn's syndrome|1
+(noun)|Conn's syndrome|syndrome (generic term)
+connaraceae|1
+(noun)|Connaraceae|family Connaraceae|zebrawood family|rosid dicot family (generic term)
+connarus|1
+(noun)|Connarus|genus Connarus|rosid dicot genus (generic term)
+connarus guianensis|1
+(noun)|Connarus guianensis|zebrawood (generic term)|zebrawood tree (generic term)
+connate|2
+(adj)|adnate (antonym)
+(adj)|cognate|related (similar term)|related to (similar term)
+connatural|2
+(adj)|similar (similar term)
+(adj)|inborn|inbred|native (similar term)
+connect|10
+(verb)|link|tie|link up|disconnect (antonym)
+(verb)|associate|tie in|relate|link|colligate|link up|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+(verb)|link|link up|join|unite
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|be (generic term)
+(verb)|relate (generic term)
+(verb)|get in touch|touch base|interact (generic term)
+(verb)|plug in|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)|unplug (antonym)
+(verb)|hit (generic term)
+connected|6
+(adj)|affiliated|attached|related (similar term)|related to (similar term)
+(adj)|abutting (similar term)|adjacent (similar term)|adjoining (similar term)|conterminous (similar term)|contiguous (similar term)|neighboring (similar term)|adjunctive (similar term)|affined (similar term)|attached (similar term)|conterminous (similar term)|contiguous (similar term)|coupled (similar term)|joined (similar term)|linked (similar term)|engaged (similar term)|siamese (similar term)|socially connected (similar term)|well-connected (similar term)|unconnected (antonym)
+(adj)|associated|related (similar term)|related to (similar term)
+(adj)|wired (similar term)
+(adj)|on (similar term)
+(adj)|machine-accessible|on-line (similar term)
+connectedness|2
+(noun)|connection|link|union (generic term)|unification (generic term)|disconnectedness (antonym)
+(noun)|connection|connexion|relation (generic term)|unconnectedness (antonym)
+connecter|1
+(noun)|connection|connexion|connector|connective|instrumentality (generic term)|instrumentation (generic term)
+connecticut|3
+(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state (generic term)
+(noun)|Connecticut|Connecticut River|river (generic term)
+(noun)|Connecticut|Colony (generic term)
+connecticut river|1
+(noun)|Connecticut|Connecticut River|river (generic term)
+connecticuter|1
+(noun)|Connecticuter|American (generic term)
+connecting|1
+(adj)|copulative|conjunctive (similar term)
+connecting flight|1
+(noun)|flight (generic term)
+connecting rod|1
+(noun)|rod (generic term)
+connecting room|1
+(noun)|hotel room (generic term)
+connection|9
+(noun)|connexion|connectedness|relation (generic term)|unconnectedness (antonym)
+(noun)|link|connectedness|union (generic term)|unification (generic term)|disconnectedness (antonym)
+(noun)|connexion|connector|connecter|connective|instrumentality (generic term)|instrumentation (generic term)
+(noun)|acquaintance (generic term)|friend (generic term)
+(noun)|association|connexion|memory (generic term)|remembering (generic term)
+(noun)|connexion|link|shape (generic term)|form (generic term)
+(noun)|supplier (generic term)|provider (generic term)
+(noun)|connexion|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|joining|connexion|change of integrity (generic term)
+connective|3
+(adj)|conjunctive (similar term)
+(noun)|conjunction|conjunctive|continuative|function word (generic term)|closed-class word (generic term)
+(noun)|connection|connexion|connector|connecter|instrumentality (generic term)|instrumentation (generic term)
+connective tissue|1
+(noun)|animal tissue (generic term)
+connectivity|1
+(noun)|property (generic term)
+connector|1
+(noun)|connection|connexion|connecter|connective|instrumentality (generic term)|instrumentation (generic term)
+connemara heath|1
+(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath (generic term)
+connexion|6
+(noun)|connection|link|shape (generic term)|form (generic term)
+(noun)|connection|connectedness|relation (generic term)|unconnectedness (antonym)
+(noun)|association|connection|memory (generic term)|remembering (generic term)
+(noun)|connection|connector|connecter|connective|instrumentality (generic term)|instrumentation (generic term)
+(noun)|connection|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|joining|connection|change of integrity (generic term)
+conning tower|2
+(noun)|pilothouse (generic term)|wheelhouse (generic term)
+(noun)|bridge (generic term)|bridge deck (generic term)
+conniption|1
+(noun)|fit|tantrum|scene|bad temper (generic term)|ill temper (generic term)
+connivance|2
+(noun)|collusion|agreement (generic term)
+(noun)|secret approval|tacit consent|approval (generic term)|commendation (generic term)
+connive|2
+(verb)|assent (generic term)|accede (generic term)|acquiesce (generic term)
+(verb)|scheme|intrigue|plot (generic term)
+connive at|1
+(verb)|wink at|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+conniving|2
+(adj)|collusive|covert (similar term)
+(adj)|calculating|calculative|scheming|shrewd|hard (similar term)
+connochaetes|1
+(noun)|Connochaetes|genus Connochaetes|mammal genus (generic term)
+connoisseur|1
+(noun)|cognoscenti|authority (generic term)
+connoisseurship|1
+(noun)|virtu|vertu|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+connolly|1
+(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player (generic term)
+connors|1
+(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player (generic term)
+connotation|2
+(noun)|intension|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|meaning (generic term)|substance (generic term)
+connotational|1
+(adj)|connotative of|connotative (similar term)
+connotative|1
+(adj)|connotational (similar term)|connotative of (similar term)|implicative (similar term)|suggestive (similar term)|inferential (similar term)|intensional (similar term)|implicit (related term)|inexplicit (related term)|denotative (antonym)
+connotative of|1
+(adj)|connotational|connotative (similar term)
+connote|2
+(verb)|imply|express (generic term)|show (generic term)|evince (generic term)
+(verb)|predicate|imply (generic term)
+connubial|2
+(adj)|conjugal|marital status (related term)
+(adv)|conjugally
+conocarpus|1
+(noun)|Conocarpus|genus Conocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+conocarpus erectus|1
+(noun)|button tree|button mangrove|Conocarpus erectus|tree (generic term)
+conoclinium|1
+(noun)|Conoclinium|genus Conoclinium|asterid dicot genus (generic term)
+conoclinium coelestinum|1
+(noun)|mistflower|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower (generic term)
+conodont|2
+(noun)|tooth (generic term)
+(noun)|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+conodonta|1
+(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order (generic term)
+conodontophorida|1
+(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order (generic term)
+conoid|1
+(noun)|cone|cone shape|round shape (generic term)
+conopodium|1
+(noun)|Conopodium|genus Conopodium|rosid dicot genus (generic term)
+conopodium denudatum|1
+(noun)|earthnut|Conopodium denudatum|herb (generic term)|herbaceous plant (generic term)
+conospermum|1
+(noun)|Conospermum|genus Conospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+conoy|1
+(noun)|Conoy|Algonquian (generic term)|Algonquin (generic term)
+conquer|3
+(verb)|suppress|stamp down|inhibit|subdue|curb|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|appropriate|capture|seize|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+conquerable|2
+(adj)|beatable (similar term)|vanquishable (similar term)|vincible (similar term)|subduable (similar term)|subjugable (similar term)|surmountable (related term)|vulnerable (related term)|unconquerable (antonym)
+(adj)|superable|surmountable (similar term)
+conquering|1
+(noun)|conquest|subjection|subjugation|capture (generic term)|gaining control (generic term)|seizure (generic term)
+conqueror|1
+(noun)|vanquisher|victor (generic term)|master (generic term)|superior (generic term)
+conquest|3
+(noun)|conquering|subjection|subjugation|capture (generic term)|gaining control (generic term)|seizure (generic term)
+(noun)|success (generic term)
+(noun)|seduction|success (generic term)
+conquistador|1
+(noun)|explorer (generic term)|adventurer (generic term)
+conrad|1
+(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer (generic term)|author (generic term)
+conrad aiken|1
+(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer (generic term)|author (generic term)
+conrad potter aiken|1
+(noun)|Aiken|Conrad Aiken|Conrad Potter Aiken|writer (generic term)|author (generic term)
+conradina|1
+(noun)|Conradina|genus Conradina|asterid dicot genus (generic term)
+conradina glabra|1
+(noun)|Apalachicola rosemary|Conradina glabra|shrub (generic term)|bush (generic term)
+consanguine|1
+(adj)|akin|blood-related|cognate|consanguineous|consanguineal|kin|related (similar term)
+consanguineal|1
+(adj)|akin|blood-related|cognate|consanguine|consanguineous|kin|related (similar term)
+consanguineous|1
+(adj)|akin|blood-related|cognate|consanguine|consanguineal|kin|related (similar term)
+consanguinity|1
+(noun)|blood kinship|cognation|kinship (generic term)|family relationship (generic term)|relationship (generic term)|affinity (antonym)
+conscience|3
+(noun)|scruples|moral sense|sense of right and wrong|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+(noun)|morality (generic term)
+(noun)|shame (generic term)
+conscience-smitten|1
+(adj)|guilty (similar term)
+conscience money|1
+(noun)|payment (generic term)
+conscienceless|1
+(adj)|unconscionable|unconscientious (similar term)
+conscientious|2
+(adj)|painstaking|scrupulous|careful (similar term)
+(adj)|moral (similar term)|unconscientious (antonym)
+conscientious objector|1
+(noun)|CO|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)
+conscientiously|1
+(adv)|scrupulously|religiously
+conscientiousness|2
+(noun)|conscience (generic term)|unconscientiousness (antonym)
+(noun)|painstakingness|carefulness (generic term)|unconscientiousness (antonym)
+conscionable|1
+(adj)|just (similar term)
+conscious|3
+(adj)|witting|intended (similar term)
+(adj)|alert (similar term)|awake (similar term)|self-conscious (similar term)|self-aware (similar term)|semiconscious (similar term)|sentient (similar term)|awake (related term)|aware (related term)|cognizant (related term)|cognisant (related term)|sensible (related term)|sensitive (related term)|voluntary (related term)|unconscious (antonym)
+(adj)|aware (similar term)|cognizant (similar term)|cognisant (similar term)
+consciously|1
+(adv)|unconsciously (antonym)
+consciousness|2
+(noun)|cognitive state (generic term)|state of mind (generic term)|unconsciousness (antonym)
+(noun)|awareness|cognizance|cognisance|knowingness|knowing (generic term)|incognizance (antonym)
+consciousness-altering drug|1
+(noun)|psychoactive drug|mind-altering drug|psychoactive substance|drug (generic term)
+conscript|2
+(noun)|draftee|inductee|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|volunteer (antonym)
+(verb)|enlist (generic term)
+conscription|1
+(noun)|muster|draft|selective service|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+consecrate|5
+(adj)|consecrated|dedicated|ordained (similar term)|votive (similar term)|holy (related term)|sacred (related term)|desecrated (antonym)
+(verb)|ordain|ordinate|order|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|give|dedicate|commit|devote|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|vow|give (generic term)|dedicate (generic term)|consecrate (generic term)|commit (generic term)|devote (generic term)
+(verb)|bless|hallow|sanctify|declare (generic term)|desecrate (antonym)
+consecrated|2
+(adj)|consecrate|dedicated|ordained (similar term)|votive (similar term)|holy (related term)|sacred (related term)|desecrated (antonym)
+(adj)|sacred|sanctified|holy (similar term)
+consecration|2
+(noun)|commitment (generic term)|allegiance (generic term)|loyalty (generic term)|dedication (generic term)
+(noun)|sanctification (generic term)
+consecutive|4
+(adj)|sequent|sequential|serial|successive|ordered (similar term)
+(adj)|straight|continuous (similar term)|uninterrupted (similar term)
+(adj)|back-to-back|succeeding (similar term)
+(adv)|sequentially
+consecutive operation|1
+(noun)|serial operation|sequential operation|operation (generic term)|parallel operation (antonym)
+consensual|1
+(adj)|accordant (similar term)
+consensus|1
+(noun)|agreement (generic term)|accord (generic term)
+consent|2
+(noun)|permission (generic term)
+(verb)|accept|go for|react (generic term)|respond (generic term)|refuse (antonym)
+consent decree|1
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+consentaneous|1
+(adj)|consentient|unanimous|accordant (similar term)
+consentient|1
+(adj)|consentaneous|unanimous|accordant (similar term)
+consenting|1
+(adj)|willing (similar term)
+consequence|3
+(noun)|effect|outcome|result|event|issue|upshot|phenomenon (generic term)
+(noun)|aftermath|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|import|moment|significance (generic term)|inconsequence (antonym)
+consequent|1
+(adj)|ensuant|resultant|resulting|sequent|subsequent (similar term)
+consequential|1
+(adj)|eventful|important (similar term)|of import (similar term)
+consequentially|1
+(adv)|inconsequentially (antonym)
+consequently|2
+(adv)|accordingly
+(adv)|therefore
+conservancy|2
+(noun)|committee (generic term)|commission (generic term)
+(noun)|conservation (generic term)
+conservation|3
+(noun)|preservation|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|preservation (generic term)|saving (generic term)
+(noun)|principle (generic term)
+conservation of charge|1
+(noun)|conservation of electricity|conservation (generic term)
+conservation of electricity|1
+(noun)|conservation of charge|conservation (generic term)
+conservation of energy|1
+(noun)|law of conservation of energy|first law of thermodynamics|conservation (generic term)|law of thermodynamics (generic term)
+conservation of mass|1
+(noun)|conservation of matter|law of conservation of mass|law of conservation of matter|conservation (generic term)
+conservation of matter|1
+(noun)|conservation of mass|law of conservation of mass|law of conservation of matter|conservation (generic term)
+conservation of momentum|1
+(noun)|conservation (generic term)
+conservation of parity|1
+(noun)|parity|space-reflection symmetry|mirror symmetry|conservation (generic term)
+conservationist|1
+(noun)|environmentalist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+conservatism|1
+(noun)|conservativism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+conservative|6
+(adj)|blimpish (similar term)|buttoned-up (similar term)|fusty (similar term)|standpat (similar term)|unprogressive (similar term)|nonprogressive (similar term)|hidebound (similar term)|traditionalist (similar term)|ultraconservative (similar term)|orthodox (related term)|right (related term)|liberal (antonym)
+(adj)|right (similar term)
+(adj)|cautious|moderate (similar term)
+(adj)|button-down|buttoned-down|conventional (similar term)
+(adj)|bourgeois|materialistic|middle-class (similar term)
+(noun)|conservativist|adult (generic term)|grownup (generic term)|liberal (antonym)
+conservative jew|1
+(noun)|Conservative Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+conservative judaism|2
+(noun)|Conservative Judaism|Judaism (generic term)|Hebraism (generic term)|Jewish religion (generic term)
+(noun)|Conservative Judaism|Judaism (generic term)
+conservative party|1
+(noun)|Conservative Party|party (generic term)|political party (generic term)
+conservatively|1
+(adv)|cautiously|guardedly
+conservativism|1
+(noun)|conservatism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+conservativist|1
+(noun)|conservative|adult (generic term)|grownup (generic term)|liberal (antonym)
+conservatoire|1
+(noun)|conservatory|school (generic term)|schoolhouse (generic term)
+conservator|2
+(noun)|curator|custodian (generic term)|keeper (generic term)|steward (generic term)
+(noun)|fiduciary (generic term)
+conservator-ward relation|1
+(noun)|fiduciary relation (generic term)
+conservatory|3
+(noun)|school (generic term)
+(noun)|conservatoire|school (generic term)|schoolhouse (generic term)
+(noun)|hothouse|indoor garden|greenhouse (generic term)|nursery (generic term)|glasshouse (generic term)
+conserve|5
+(noun)|preserve|conserves|preserves|confiture (generic term)
+(verb)|keep (generic term)|maintain (generic term)|hold (generic term)
+(verb)|preserve|maintain|keep up|keep (generic term)
+(verb)|husband|economize|economise|save (generic term)|preserve (generic term)|waste (antonym)
+(verb)|preserve (generic term)|keep (generic term)
+conserved|1
+(adj)|preserved (similar term)
+conserves|1
+(noun)|conserve|preserve|preserves|confiture (generic term)
+conserving|1
+(adj)|preserving|protective (similar term)
+consider|9
+(verb)|see|reckon|view|regard|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|study|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+(verb)|take|deal|look at|think about (generic term)
+(verb)|count|weigh
+(verb)|debate|moot|turn over|deliberate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|think|believe|conceive|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|regard|look (generic term)
+(verb)|view|look at|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+considerable|1
+(adj)|appreciable (similar term)|goodly (similar term)|goodish (similar term)|hefty (similar term)|respectable (similar term)|sizable (similar term)|sizeable (similar term)|tidy (similar term)|right smart (similar term)|significant (similar term)|substantial (similar term)|large (related term)|big (related term)|inconsiderable (antonym)
+considerably|1
+(adv)|well|substantially
+considerate|1
+(adj)|thoughtful (similar term)|kind (related term)|tactful (related term)|unselfish (related term)|inconsiderate (antonym)
+considerately|1
+(adv)|with consideration|inconsiderately (antonym)
+considerateness|1
+(noun)|consideration|thoughtfulness|kindness (generic term)|thoughtlessness (antonym)|inconsideration (antonym)
+consideration|6
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|circumstance|condition|information (generic term)
+(noun)|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|considerateness|thoughtfulness|kindness (generic term)|thoughtlessness (antonym)|inconsideration (antonym)
+(noun)|retainer|fee (generic term)
+(noun)|thoughtfulness|kindness (generic term)|benignity (generic term)
+considered|2
+(adj)|reasoned|well thought out|thoughtful (similar term)
+(adj)|well-advised (similar term)|advised (similar term)
+consign|3
+(verb)|abandon (generic term)
+(verb)|charge|entrust (generic term)|intrust (generic term)|trust (generic term)|confide (generic term)|commit (generic term)
+(verb)|deliver (generic term)
+consignee|1
+(noun)|recipient (generic term)|receiver (generic term)
+consigner|1
+(noun)|consignor|shipper (generic term)
+consignment|3
+(noun)|cargo|lading|freight|load|loading|payload|shipment|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|commitment|committal|confinement (generic term)
+(noun)|delivery (generic term)|bringing (generic term)
+consignor|1
+(noun)|consigner|shipper (generic term)
+consist|4
+(verb)|dwell|lie|belong|lie in|exist (generic term)|be (generic term)
+(verb)|be (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|comprise|be (generic term)
+consistence|2
+(noun)|consistency|uniformity (generic term)|uniformness (generic term)|inconsistency (antonym)
+(noun)|consistency|body|property (generic term)
+consistency|4
+(noun)|consistence|body|property (generic term)
+(noun)|consistence|uniformity (generic term)|uniformness (generic term)|inconsistency (antonym)
+(noun)|coherence (generic term)|coherency (generic term)|cohesion (generic term)|cohesiveness (generic term)
+(noun)|logicality (generic term)|logicalness (generic term)
+consistent|4
+(adj)|accordant (similar term)|agreeable (similar term)|conformable (similar term)|consonant (similar term)|concordant (similar term)|pursuant (similar term)|reconciled (similar term)|self-consistent (similar term)|unchanging (similar term)|invariable (related term)|inconsistent (antonym)
+(adj)|reproducible|duplicable (similar term)|duplicatable (similar term)|unreproducible (antonym)
+(adj)|coherent|logical|ordered|orderly|seamless (similar term)|logical (related term)|rational (related term)|incoherent (antonym)
+(adj)|uniform|homogeneous (similar term)|homogenous (similar term)
+consistently|1
+(adv)|systematically|unsystematically (antonym)|inconsistently (antonym)
+consistory|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+consociate|1
+(verb)|associate|unite (generic term)|unify (generic term)
+consolable|1
+(adj)|inconsolable (antonym)
+consolation|2
+(noun)|solace|solacement|comfort (generic term)
+(noun)|comfort|solace|relief (generic term)|succor (generic term)|succour (generic term)|ministration (generic term)
+consolatory|1
+(adj)|comforting|consoling|reassuring (similar term)
+console|5
+(noun)|console table|table (generic term)
+(noun)|scientific instrument (generic term)
+(noun)|bracket (generic term)
+(noun)|cabinet|housing (generic term)
+(verb)|comfort|soothe|solace
+console table|1
+(noun)|console|table (generic term)
+consolida|1
+(noun)|Consolida|genus Consolida|magnoliid dicot genus (generic term)
+consolida ambigua|1
+(noun)|rocket larkspur|Consolida ambigua|Delphinium ajacis|flower (generic term)
+consolidate|4
+(verb)|unify (generic term)|unite (generic term)|merge (generic term)
+(verb)|strengthen (generic term)
+(verb)|unite (generic term)|unify (generic term)|merge (generic term)
+(verb)|solidify (generic term)
+consolidated|2
+(adj)|amalgamate|amalgamated|coalesced|fused|united (similar term)
+(adj)|compact (similar term)
+consolidation|3
+(noun)|combining (generic term)|combine (generic term)
+(noun)|integration|combination (generic term)|combining (generic term)|compounding (generic term)
+(noun)|natural object (generic term)
+consolidative|2
+(adj)|unifying|integrative (similar term)
+(adj)|integrative|centralizing (similar term)|centralising (similar term)
+consoling|1
+(adj)|comforting|consolatory|reassuring (similar term)
+consolingly|1
+(adv)|comfortingly
+consomme|1
+(noun)|soup (generic term)
+consonance|2
+(noun)|consonant rhyme|rhyme (generic term)|rime (generic term)
+(noun)|harmoniousness|harmony (generic term)
+consonant|4
+(adj)|harmonic|harmonical|harmonized|harmonised|in harmony|harmonious (similar term)
+(adj)|accordant|agreeable|conformable|concordant|consistent (similar term)
+(noun)|phone (generic term)|speech sound (generic term)|sound (generic term)|vowel (antonym)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+consonant rhyme|1
+(noun)|consonance|rhyme (generic term)|rime (generic term)
+consonant system|1
+(noun)|consonantal system|phonemic system (generic term)
+consonantal|2
+(adj)|vocalic (antonym)
+(adj)|phone|speech sound|sound (related term)
+consonantal system|1
+(noun)|consonant system|phonemic system (generic term)
+consonate|1
+(verb)|resound (generic term)|echo (generic term)|ring (generic term)|reverberate (generic term)
+consort|5
+(noun)|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+(noun)|choir|set (generic term)
+(verb)|associate|affiliate|assort|interact (generic term)
+(verb)|harmonize|harmonise|accord|concord|fit in|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|run|accompany (generic term)
+consortium|1
+(noun)|pool|syndicate|association (generic term)
+conspecific|2
+(adj)|taxonomic group|taxonomic category|taxon (related term)
+(noun)|organism (generic term)|being (generic term)
+conspectus|1
+(noun)|summary (generic term)|sum-up (generic term)
+conspicuous|2
+(adj)|attention-getting (similar term)|eye-catching (similar term)|big (similar term)|large (similar term)|prominent (similar term)|bold (similar term)|crying (similar term)|egregious (similar term)|flagrant (similar term)|glaring (similar term)|gross (similar term)|rank (similar term)|featured (similar term)|in evidence (similar term)|marked (similar term)|outstanding (similar term)|prominent (similar term)|salient (similar term)|spectacular (similar term)|striking (similar term)|indiscreet (related term)|inconspicuous (antonym)
+(adj)|blatant|blazing|unconcealed (similar term)
+conspicuous consumption|1
+(noun)|consumption (generic term)|economic consumption (generic term)|usance (generic term)|use (generic term)|use of goods and services (generic term)
+conspicuously|2
+(adv)|inconspicuously (antonym)
+(adv)|prominently
+conspicuousness|2
+(noun)|salience (generic term)|saliency (generic term)|strikingness (generic term)
+(noun)|visibility (generic term)|visibleness (generic term)|inconspicuousness (antonym)
+conspiracy|3
+(noun)|confederacy|agreement (generic term)|understanding (generic term)
+(noun)|cabal|plot (generic term)|secret plan (generic term)|game (generic term)
+(noun)|confederacy|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+conspiracy of silence|1
+(noun)|conspiracy (generic term)|confederacy (generic term)
+conspirative|1
+(adj)|conspiratorial|plot|secret plan|game (related term)
+conspirator|1
+(noun)|coconspirator|plotter|machinator|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+conspiratorial|1
+(adj)|conspirative|plot|secret plan|game (related term)
+conspire|2
+(verb)|cabal|complot|conjure|machinate|plot (generic term)
+(verb)|collude|interact (generic term)
+constable|3
+(noun)|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|Constable|John Constable|painter (generic term)
+(noun)|police constable|policeman (generic term)|police officer (generic term)|officer (generic term)
+constabulary|1
+(noun)|police|police force|law|force (generic term)|personnel (generic term)|law enforcement agency (generic term)
+constance|2
+(noun)|Constance|Lake Constance|Bodensee|lake (generic term)
+(noun)|Constance|Council of Constance|council (generic term)
+constancy|3
+(noun)|stability|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|inconstancy (antonym)
+(noun)|perceptual constancy|perception (generic term)
+(noun)|fidelity (generic term)|faithfulness (generic term)
+constant|6
+(adj)|changeless|invariant|unvarying|invariable (similar term)
+(adj)|continuant|continual (similar term)
+(adj)|steadfast (similar term)|staunch (similar term)|unswerving (similar term)|unfailing (similar term)|unflagging (similar term)|faithful (related term)|invariable (related term)|stable (related term)|unchangeable (related term)|inconstant (antonym)
+(adj)|ceaseless|incessant|never-ending|perpetual|unceasing|unremitting|continuous (similar term)|uninterrupted (similar term)
+(noun)|constant quantity|invariable|quantity (generic term)
+(noun)|number (generic term)
+constant-width font|1
+(noun)|typewriter font|fixed-width font|monospaced font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)|proportional font (antonym)
+constant lambert|1
+(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+constant of gravitation|1
+(noun)|gravitational constant|universal gravitational constant|G|constant (generic term)
+constant of proportionality|1
+(noun)|factor of proportionality|factor (generic term)|constant (generic term)
+constant quantity|1
+(noun)|constant|invariable|quantity (generic term)
+constantan|1
+(noun)|Eureka|copper-base alloy (generic term)
+constantin brancusi|1
+(noun)|Brancusi|Constantin Brancusi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+constantine|2
+(noun)|Constantine|Constantine I|Constantine the Great|Flavius Valerius Constantinus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+(noun)|Constantine|city (generic term)|metropolis (generic term)|urban center (generic term)
+constantine i|1
+(noun)|Constantine|Constantine I|Constantine the Great|Flavius Valerius Constantinus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+constantine the great|1
+(noun)|Constantine|Constantine I|Constantine the Great|Flavius Valerius Constantinus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+constantinople|5
+(noun)|Istanbul|Stambul|Stamboul|Constantinople|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Constantinople|Fourth Council of Constantinople|council (generic term)
+(noun)|Constantinople|Third Council of Constantinople|ecumenical council (generic term)
+(noun)|Constantinople|Second Council of Constantinople|ecumenical council (generic term)
+(noun)|Constantinople|First Council of Constantinople|ecumenical council (generic term)
+constantly|1
+(adv)|perpetually
+constatation|1
+(noun)|basic assumption|self-evident truth|assumption (generic term)|supposition (generic term)|supposal (generic term)
+constellate|3
+(verb)|dot|stud|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|cluster|flock|clump|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|form (generic term)
+constellation|2
+(noun)|configuration|design (generic term)|plan (generic term)
+(noun)|natural object (generic term)
+consternate|1
+(verb)|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+consternation|1
+(noun)|alarm|dismay|fear (generic term)|fearfulness (generic term)|fright (generic term)
+constipate|2
+(verb)|clog|slow (generic term)|slow down (generic term)|slow up (generic term)
+(verb)|bind|indispose (generic term)
+constipated|1
+(adj)|bound (similar term)|unconstipated (antonym)
+constipating|1
+(adj)|binding|costive (similar term)
+constipation|2
+(noun)|irregularity|symptom (generic term)
+(noun)|stultification|impairment|deadening|degradation (generic term)|debasement (generic term)
+constituency|1
+(noun)|body (generic term)
+constituent|5
+(adj)|constitutional|constitutive|organic|essential (similar term)
+(noun)|component|element|part (generic term)|portion (generic term)
+(noun)|voter (generic term)|elector (generic term)
+(noun)|grammatical constituent|syntagma (generic term)|syntagm (generic term)
+(noun)|component|element|factor|ingredient|part (generic term)|section (generic term)|division (generic term)
+constitute|4
+(verb)|represent|make up|comprise|be
+(verb)|appoint|name|nominate|establish (generic term)|found (generic term)|plant (generic term)|constitute (generic term)|institute (generic term)
+(verb)|form|make|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|establish|found|plant|institute|initiate (generic term)|pioneer (generic term)
+constituted|1
+(adj)|established|accepted (similar term)|brought about (similar term)|deep-rooted (similar term)|deep-seated (similar term)|implanted (similar term)|ingrained (similar term)|planted (similar term)|entrenched (similar term)|grooved (similar term)|well-grooved (similar term)|habitual (similar term)|legitimate (similar term)|official (similar term)|recognized (similar term)|recognised (similar term)|self-constituted (similar term)|self-established (similar term)|set up (similar term)|unestablished (antonym)
+constitution|4
+(noun)|fundamental law|organic law|law (generic term)
+(noun)|establishment|formation|organization|organisation|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|composition|makeup|property (generic term)
+(noun)|Constitution|Old Ironsides|frigate (generic term)
+constitution of the united states|1
+(noun)|United States Constitution|Constitution of the United States|fundamental law (generic term)|organic law (generic term)|constitution (generic term)
+constitution state|1
+(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state (generic term)
+constitutional|6
+(adj)|law (related term)
+(adj)|property (related term)
+(adj)|unconstitutional (antonym)
+(adj)|built-in|inbuilt|inherent|integral|intrinsic (similar term)|intrinsical (similar term)
+(adj)|constituent|constitutive|organic|essential (similar term)
+(noun)|walk (generic term)
+constitutional convention|1
+(noun)|Constitutional Convention|convention (generic term)
+constitutional union party|1
+(noun)|Constitutional Union Party|party (generic term)|political party (generic term)
+constitutionalise|1
+(verb)|constitutionalize|change (generic term)|alter (generic term)|modify (generic term)
+constitutionalism|2
+(noun)|political system (generic term)|form of government (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+constitutionalist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+constitutionalize|3
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|walk (generic term)|take the air (generic term)
+(verb)|constitutionalise|change (generic term)|alter (generic term)|modify (generic term)
+constitutionally|1
+(adv)|unconstitutionally (antonym)
+constitutive|1
+(adj)|constituent|constitutional|organic|essential (similar term)
+constrain|2
+(verb)|restrain|encumber|cumber|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|stiffen|tighten|tighten up|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+constrained|1
+(adj)|forced|strained|affected (similar term)|unnatural (similar term)
+constraining|1
+(adj)|confining|constrictive|limiting|restricting|restrictive (similar term)
+constraint|3
+(noun)|restraint|confinement (generic term)
+(noun)|restraint|device (generic term)
+(noun)|restriction (generic term)
+constrict|2
+(verb)|compress|squeeze|compact|contract|press|tighten (generic term)
+(verb)|constringe|narrow|tighten (generic term)
+constricted|3
+(adj)|tense (similar term)
+(adj)|narrowed (similar term)|pinched (similar term)|stenosed (similar term)|stenotic (similar term)|unconstricted (antonym)
+(adj)|limited (similar term)
+constricting|2
+(adj)|binding|tight (similar term)
+(adj)|constrictive|narrowing|narrow (similar term)
+constriction|4
+(noun)|bottleneck|chokepoint|narrowing (generic term)
+(noun)|coarctation|compression (generic term)|condensation (generic term)|contraction (generic term)
+(noun)|tightness|feeling (generic term)
+(noun)|compression (generic term)|compressing (generic term)
+constrictive|2
+(adj)|constricting|narrowing|narrow (similar term)
+(adj)|confining|constraining|limiting|restricting|restrictive (similar term)
+constrictor|1
+(noun)|snake (generic term)|serpent (generic term)|ophidian (generic term)
+constrictor constrictor|1
+(noun)|boa constrictor|Constrictor constrictor|boa (generic term)
+constringe|1
+(verb)|constrict|narrow|tighten (generic term)
+construal|1
+(noun)|interpretation (generic term)
+construct|6
+(noun)|concept|conception|idea (generic term)|thought (generic term)|misconception (antonym)
+(verb)|build|make|make (generic term)|create (generic term)
+(verb)|manufacture|fabricate|make (generic term)
+(verb)|trace (generic term)|draw (generic term)|line (generic term)|describe (generic term)|delineate (generic term)
+(verb)|create by mental act (generic term)|create mentally (generic term)
+(verb)|reconstruct|retrace|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+construction|7
+(noun)|building|creating from raw materials (generic term)
+(noun)|building|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|structure|artifact (generic term)|artefact (generic term)
+(noun)|grammatical construction|expression|constituent (generic term)|grammatical constituent (generic term)|misconstruction (antonym)
+(noun)|mental synthesis|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|twist|interpretation (generic term)
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+construction industry|1
+(noun)|housing industry|industry (generic term)
+construction paper|1
+(noun)|paper (generic term)
+construction worker|1
+(noun)|hard hat|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+constructive|2
+(adj)|creative (similar term)|formative (similar term)|shaping (similar term)|plastic (similar term)|formative (similar term)|inferential (similar term)|reconstructive (similar term)|rehabilitative (similar term)|structural (similar term)|positive (related term)|destructive (antonym)
+(adj)|positive (similar term)
+constructive-metabolic|1
+(adj)|energy-storing|anabolic (similar term)
+constructive breach|1
+(noun)|anticipatory breach|breach of contract (generic term)
+constructive eviction|1
+(noun)|eviction|compulsion (generic term)|coercion (generic term)
+constructive fraud|1
+(noun)|legal fraud|fraud (generic term)
+constructive metabolism|1
+(noun)|anabolism|assimilation (generic term)|absorption (generic term)|catabolism (antonym)
+constructive possession|1
+(noun)|possession (generic term)|ownership (generic term)
+constructive trust|1
+(noun)|involuntary trust|implied trust (generic term)
+constructiveness|1
+(noun)|quality (generic term)|destructiveness (antonym)
+constructivism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+constructivist|1
+(noun)|artist (generic term)|creative person (generic term)
+constructor|1
+(noun)|builder|contractor (generic term)
+construe|1
+(verb)|interpret|see|understand (generic term)|construe with (related term)
+construe with|1
+(verb)|collocate with|cooccur with|co-occur with|go with|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+consubstantial|1
+(adj)|theological doctrine (related term)
+consubstantiate|2
+(verb)|unify (generic term)|unite (generic term)|merge (generic term)
+(verb)|unite (generic term)|unify (generic term)|merge (generic term)
+consubstantiation|1
+(noun)|theological doctrine (generic term)
+consuetude|1
+(noun)|custom (generic term)|usage (generic term)|usance (generic term)
+consuetudinal|1
+(noun)|consuetudinary|manual (generic term)
+consuetudinary|1
+(noun)|consuetudinal|manual (generic term)
+consul|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+consular|1
+(adj)|diplomat|diplomatist (related term)|diplomatic building (related term)
+consulate|1
+(noun)|diplomatic building (generic term)
+consulship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+consult|4
+(verb)|confer with|ask (generic term)|inquire (generic term)|enquire (generic term)
+(verb)|refer|look up|research (generic term)
+(verb)|confer|confabulate|confab|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|rede (generic term)|advise (generic term)|counsel (generic term)
+consultancy|1
+(noun)|practice (generic term)
+consultant|1
+(noun)|adviser|advisor|authority (generic term)
+consultation|3
+(noun)|audience|interview|conference (generic term)|group discussion (generic term)
+(noun)|conference (generic term)|group discussion (generic term)
+(noun)|reference|action (generic term)
+consultative|1
+(adj)|advisory|consultatory|consultive|informative (similar term)|informatory (similar term)
+consultatory|1
+(adj)|advisory|consultative|consultive|informative (similar term)|informatory (similar term)
+consulting company|1
+(noun)|consulting firm|firm (generic term)|house (generic term)|business firm (generic term)
+consulting firm|1
+(noun)|consulting company|firm (generic term)|house (generic term)|business firm (generic term)
+consulting service|1
+(noun)|service (generic term)
+consultive|1
+(adj)|advisory|consultative|consultatory|informative (similar term)|informatory (similar term)
+consumable|1
+(adj)|expendable (similar term)
+consume|6
+(verb)|devour|down|go through|eat (generic term)
+(verb)|ingest|take in|take|have|take up (related term)|abstain (antonym)
+(verb)|squander|waste|ware|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|eat up|use up|eat|deplete|exhaust|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|absorb (generic term)|engross (generic term)|engage (generic term)|occupy (generic term)
+consumed|1
+(adj)|used-up|used up|exhausted (similar term)
+consumer|1
+(noun)|user (generic term)
+consumer credit|1
+(noun)|credit line (generic term)|line of credit (generic term)|bank line (generic term)|line (generic term)|personal credit line (generic term)|personal line of credit (generic term)
+consumer durables|1
+(noun)|durables|durable goods|consumer goods (generic term)
+consumer finance company|1
+(noun)|small loan company|finance company (generic term)
+consumer goods|1
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+consumer loan|1
+(noun)|personal loan|loan (generic term)
+consumer price index|1
+(noun)|CPI|cost-of-living index|price index (generic term)|price level (generic term)
+consumer research|1
+(noun)|marketing research (generic term)|market research (generic term)
+consumerism|2
+(noun)|economic theory (generic term)
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+consuming|1
+(adj)|overwhelming|intense (similar term)
+consummate|4
+(adj)|masterful|masterly|virtuoso|skilled (similar term)
+(adj)|complete|perfect (similar term)
+(adj)|arrant|complete|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(verb)|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+consummated|1
+(adj)|completed (similar term)|fulfilled (similar term)|unconsummated (antonym)
+consummation|1
+(noun)|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)
+consumption|4
+(noun)|ingestion|intake|uptake|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|pulmonary tuberculosis|phthisis|wasting disease|white plague|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+(noun)|economic consumption|usance|use|use of goods and services|demand (generic term)
+(noun)|using up|expenditure|depletion (generic term)
+consumption weed|1
+(noun)|groundsel tree|groundsel bush|cotton-seed tree|Baccharis halimifolia|shrub (generic term)|bush (generic term)
+consumptive|3
+(adj)|exploitative (similar term)|exploitatory (similar term)|exploitive (similar term)|generative (antonym)
+(adj)|ill (similar term)|sick (similar term)
+(noun)|lunger|tubercular|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+contact|11
+(noun)|interaction (generic term)
+(noun)|connection (generic term)|link (generic term)|connectedness (generic term)
+(noun)|physical contact|touch (generic term)|touching (generic term)
+(noun)|impinging|striking|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|middleman|representative (generic term)
+(noun)|liaison|link|inter-group communication|channel (generic term)|communication channel (generic term)|line (generic term)
+(noun)|tangency|junction (generic term)|conjunction (generic term)
+(noun)|touch|communication (generic term)|communicating (generic term)
+(noun)|contact lens|lens (generic term)|lense (generic term)|lens system (generic term)
+(verb)|reach|get through|get hold of|communicate (generic term)|intercommunicate (generic term)
+(verb)|touch|adjoin|meet
+contact action|1
+(noun)|catalysis|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+contact arm|1
+(noun)|wiper|wiper arm|contact (generic term)|tangency (generic term)
+contact dermatitis|1
+(noun)|dermatitis (generic term)
+contact lens|1
+(noun)|contact|lens (generic term)|lense (generic term)|lens system (generic term)
+contact print|1
+(noun)|print (generic term)
+contact sport|1
+(noun)|sport (generic term)|athletics (generic term)
+contadino|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+contagion|3
+(noun)|contagious disease|communicable disease (generic term)
+(noun)|infection|transmission|incident (generic term)
+(noun)|infection|communication (generic term)
+contagious|2
+(adj)|infectious (similar term)
+(adj)|catching|communicable|contractable|transmissible|transmittable|infectious (similar term)
+contagious abortion|1
+(noun)|brucellosis|Bang's disease|zoonosis (generic term)|zoonotic disease (generic term)
+contagious disease|1
+(noun)|contagion|communicable disease (generic term)
+contagiously|1
+(adv)|infectiously
+contain|6
+(verb)|incorporate|comprise|include (generic term)
+(verb)|hold|bear|carry|include (generic term)
+(verb)|control|hold in|hold|check|curb|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|be (generic term)
+(verb)|take|hold|be (generic term)
+(verb)|check|turn back|arrest|stop|hold back|defend (generic term)
+contained|2
+(adj)|restrained (similar term)
+(adj)|controlled (similar term)
+container|1
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+container ship|1
+(noun)|containership|container vessel|cargo ship (generic term)|cargo vessel (generic term)
+container vessel|1
+(noun)|container ship|containership|cargo ship (generic term)|cargo vessel (generic term)
+containerful|1
+(noun)|indefinite quantity (generic term)
+containerise|1
+(verb)|containerize|pack (generic term)
+containerised|1
+(adj)|containerized
+containerize|1
+(verb)|containerise|pack (generic term)
+containerized|1
+(adj)|containerised
+containership|1
+(noun)|container ship|container vessel|cargo ship (generic term)|cargo vessel (generic term)
+containment|3
+(noun)|policy (generic term)
+(noun)|system (generic term)
+(noun)|restraint (generic term)
+contaminant|1
+(noun)|contamination|material (generic term)|stuff (generic term)
+contaminate|2
+(verb)|pollute|foul|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|decontaminate (antonym)
+contaminated|3
+(adj)|mercury-contaminated (similar term)|uncontaminated (antonym)
+(adj)|dirty|pestiferous|septic (similar term)|infected (similar term)
+(adj)|polluted|impure (similar term)
+contaminating|2
+(adj)|dirty|clean (antonym)
+(adj)|corrupting|infectious (similar term)
+contamination|3
+(noun)|taint|impurity (generic term)|impureness (generic term)
+(noun)|contaminant|material (generic term)|stuff (generic term)
+(noun)|pollution|soiling (generic term)|soilure (generic term)|dirtying (generic term)|decontamination (antonym)
+contaminative|1
+(adj)|septic (similar term)|infected (similar term)
+conte alessandro giuseppe antonio anastasio volta|1
+(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist (generic term)
+conte alessandro volta|1
+(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist (generic term)
+contemn|1
+(verb)|despise|scorn|disdain|hate (generic term)|detest (generic term)
+contemplate|4
+(verb)|view (generic term)|consider (generic term)|look at (generic term)
+(verb)|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+(verb)|study|meditate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|chew over|think over|meditate|ponder|excogitate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+contemplation|2
+(noun)|stare (generic term)
+(noun)|reflection|reflexion|rumination|musing|thoughtfulness|consideration (generic term)
+contemplative|2
+(adj)|brooding|broody|meditative|musing|pensive|pondering|reflective|ruminative|thoughtful (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|active (antonym)
+contemplativeness|1
+(noun)|pensiveness|meditativeness|thoughtfulness (generic term)
+contemporaneity|2
+(noun)|modernity|modernness|modernism|contemporaneousness|currentness (generic term)|currency (generic term)|up-to-dateness (generic term)
+(noun)|contemporaneousness|concurrence (generic term)|coincidence (generic term)|conjunction (generic term)|co-occurrence (generic term)
+contemporaneous|2
+(adj)|contemporary|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(adj)|coetaneous|coeval|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+contemporaneousness|2
+(noun)|modernity|modernness|modernism|contemporaneity|currentness (generic term)|currency (generic term)|up-to-dateness (generic term)
+(noun)|contemporaneity|concurrence (generic term)|coincidence (generic term)|conjunction (generic term)|co-occurrence (generic term)
+contemporaries|1
+(noun)|coevals|generation|people (generic term)
+contemporary|4
+(adj)|modern-day|modern (similar term)
+(adj)|present-day|current (similar term)
+(adj)|contemporaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(noun)|coeval|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+contemporary world|1
+(noun)|modern times|present times|modern world|times (generic term)
+contemporise|2
+(verb)|synchronize|synchronise|contemporize|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|synchronize|synchronise|contemporize|arrange (generic term)|set up (generic term)|put (generic term)|order (generic term)
+contemporize|2
+(verb)|synchronize|synchronise|contemporise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|synchronize|synchronise|contemporise|arrange (generic term)|set up (generic term)|put (generic term)|order (generic term)
+contempt|4
+(noun)|disdain|scorn|despite|dislike (generic term)
+(noun)|disrespect|discourtesy (generic term)|rudeness (generic term)
+(noun)|scorn|disrespect (generic term)|discourtesy (generic term)
+(noun)|disobedience (generic term)|noncompliance (generic term)
+contempt of congress|1
+(noun)|contempt of Congress|contempt (generic term)
+contempt of court|1
+(noun)|contempt (generic term)
+contemptibility|1
+(noun)|baseness|sordidness|despicableness|despicability|unworthiness (generic term)
+contemptible|1
+(adj)|abject (similar term)|low (similar term)|low-down (similar term)|miserable (similar term)|scummy (similar term)|scurvy (similar term)|bastardly (similar term)|mean (similar term)|pathetic (similar term)|pitiable (similar term)|pitiful (similar term)|ignoble (related term)|unworthy (related term)|estimable (antonym)
+contemptuous|1
+(adj)|disdainful|insulting|scornful|disrespectful (similar term)
+contemptuously|1
+(adv)|disdainfully|scornfully|contumeliously
+contemptuousness|1
+(noun)|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+contend|6
+(verb)|postulate|claim (generic term)
+(verb)|argue|debate|fence|converse (generic term)|discourse (generic term)
+(verb)|contest|repugn|oppose (generic term)
+(verb)|compete|vie
+(verb)|cope|get by|make out|make do|grapple|deal|manage|act (generic term)|move (generic term)
+(verb)|fight|struggle|fight off (related term)
+contender|1
+(noun)|rival|challenger|competitor|competition|contestant (generic term)
+contending|1
+(adj)|competitive (similar term)|competitory (similar term)
+content|10
+(adj)|contented|complacent (similar term)|self-satisfied (similar term)|self-complacent (similar term)|easygoing (similar term)|calm (similar term)|placid (similar term)|satisfied (similar term)|smug (similar term)|self-satisfied (similar term)|happy (related term)|pleased (related term)|discontented (antonym)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|message|subject matter|substance|communication (generic term)
+(noun)|proportion (generic term)
+(noun)|capacity|volume (generic term)
+(noun)|cognitive content|mental object|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|contentedness|acceptance (generic term)
+(noun)|subject|depicted object|thing (generic term)
+(verb)|limit (generic term)|circumscribe (generic term)|confine (generic term)
+(verb)|satisfy (generic term)|gratify (generic term)|discontent (antonym)
+content word|1
+(noun)|open-class word|word (generic term)
+contented|1
+(adj)|content|complacent (similar term)|self-satisfied (similar term)|self-complacent (similar term)|easygoing (similar term)|calm (similar term)|placid (similar term)|satisfied (similar term)|smug (similar term)|self-satisfied (similar term)|happy (related term)|pleased (related term)|discontented (antonym)
+contentedness|1
+(noun)|content|acceptance (generic term)
+contention|3
+(noun)|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|controversy|contestation|disputation|disceptation|tilt|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|competition|rivalry|group action (generic term)|cooperation (antonym)
+contentious|2
+(adj)|combative|disputatious|disputative|litigious|argumentative (similar term)
+(adj)|controversial (similar term)
+contentiousness|1
+(noun)|quarrelsomeness|disagreeableness (generic term)
+contentment|1
+(noun)|happiness (generic term)|discontentment (antonym)
+contents|1
+(noun)|table of contents|list (generic term)|listing (generic term)|table (generic term)|tabular array (generic term)
+conterminous|3
+(adj)|contiguous|connected (similar term)
+(adj)|abutting|adjacent|adjoining|contiguous|neighboring|connected (similar term)
+(adj)|coextensive|coterminous|commensurate (similar term)
+contest|3
+(noun)|competition|social event (generic term)
+(noun)|competition (generic term)|contention (generic term)|rivalry (generic term)
+(verb)|contend|repugn|oppose (generic term)
+contestable|1
+(adj)|challengeable (similar term)|debatable (similar term)|disputable (similar term)|shakable (similar term)|shakeable (similar term)|questionable (related term)|incontestable (antonym)
+contestant|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|dissenter|dissident|protester|objector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+contestation|1
+(noun)|controversy|contention|disputation|disceptation|tilt|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+contested|1
+(adj)|uncontested (antonym)
+contestee|1
+(noun)|winner (generic term)|victor (generic term)
+contester|1
+(noun)|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+context|2
+(noun)|linguistic context|context of use|discourse (generic term)
+(noun)|circumstance|environment (generic term)
+context of use|1
+(noun)|context|linguistic context|discourse (generic term)
+contextual|1
+(adj)|discourse (related term)
+contextual definition|1
+(noun)|definition (generic term)
+contiguity|1
+(noun)|adjacency|contiguousness|nearness (generic term)|closeness (generic term)
+contiguous|3
+(adj)|immediate|close (similar term)
+(adj)|conterminous|connected (similar term)
+(adj)|abutting|adjacent|adjoining|conterminous|neighboring|connected (similar term)
+contiguousness|1
+(noun)|adjacency|contiguity|nearness (generic term)|closeness (generic term)
+continence|2
+(noun)|continency|self-discipline (generic term)|self-denial (generic term)
+(noun)|restraint (generic term)|control (generic term)
+continency|1
+(noun)|continence|self-discipline (generic term)|self-denial (generic term)
+continent|4
+(adj)|incontinent (antonym)
+(adj)|celibate|chaste (similar term)
+(noun)|landmass (generic term)
+(noun)|Continent|Europe (generic term)
+continent-wide|1
+(adj)|continental (similar term)
+continental|4
+(adj)|Continental|Europe (related term)
+(adj)|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|landmass (related term)
+(adj)|continent-wide (similar term)|transcontinental (similar term)|intercontinental (antonym)
+continental army|1
+(noun)|Continental Army|army (generic term)|regular army (generic term)|ground forces (generic term)
+continental breakfast|1
+(noun)|petit dejeuner|breakfast (generic term)
+continental congress|1
+(noun)|Continental Congress|congress (generic term)
+continental divide|1
+(noun)|watershed (generic term)|water parting (generic term)|divide (generic term)
+continental drift|1
+(noun)|geological phenomenon (generic term)
+continental glacier|1
+(noun)|glacier (generic term)
+continental plan|1
+(noun)|European plan|hotel plan (generic term)|meal plan (generic term)
+continental quilt|1
+(noun)|eiderdown|duvet|quilt (generic term)|comforter (generic term)|puff (generic term)
+continental shelf|1
+(noun)|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+continental slope|1
+(noun)|bathyal zone|bathyal district|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+contingence|1
+(noun)|eventuality|contingency|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+contingency|2
+(noun)|eventuality|contingence|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|dependence (generic term)|dependance (generic term)|dependency (generic term)
+contingency fee|1
+(noun)|fee (generic term)
+contingency procedure|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+contingent|5
+(adj)|possible (similar term)
+(adj)|contingent on|dependent on|dependant on|depending on|conditional (similar term)
+(adj)|uncertain (similar term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|detail|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+contingent on|1
+(adj)|contingent|dependent on|dependant on|depending on|conditional (similar term)
+contingent probability|1
+(noun)|conditional probability|probability (generic term)|chance (generic term)
+continual|2
+(adj)|constant (similar term)|continuant (similar term)|incessant (similar term)|perpetual (similar term)|endless (similar term)|insistent (similar term)|repetitive (similar term)|running (similar term)|perennial (similar term)|recurrent (similar term)|repeated (similar term)|persistent (similar term)|relentless (similar term)|unrelenting (similar term)|recurring (similar term)|revenant (similar term)|sporadic (antonym)
+(adj)|continuous (similar term)|uninterrupted (similar term)
+continuance|3
+(noun)|continuation|activity (generic term)|discontinuation (antonym)|discontinuance (antonym)
+(noun)|duration|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|duration|time (generic term)
+continuant|3
+(adj)|fricative|sibilant|spirant|strident|soft (similar term)
+(adj)|constant|continual (similar term)
+(noun)|continuant consonant|obstruent (generic term)|stop consonant (antonym)
+continuant consonant|1
+(noun)|continuant|obstruent (generic term)|stop consonant (antonym)
+continuation|4
+(noun)|continuance|activity (generic term)|discontinuation (antonym)|discontinuance (antonym)
+(noun)|sequel|addendum (generic term)|supplement (generic term)|postscript (generic term)
+(noun)|good continuation|law of continuation|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+(noun)|lengthiness|prolongation|protraction|duration (generic term)|length (generic term)
+continuative|1
+(noun)|conjunction|conjunctive|connective|function word (generic term)|closed-class word (generic term)
+continue|10
+(verb)|go on|proceed|go along|keep|act (generic term)|move (generic term)|discontinue (antonym)
+(verb)|go on|carry on|proceed|talk (generic term)|speak (generic term)
+(verb)|uphold|carry on|bear on|preserve|keep (generic term)|maintain (generic term)|hold (generic term)|discontinue (antonym)
+(verb)|proceed|go forward|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retain|keep|keep on|keep going|prolong (generic term)|sustain (generic term)|keep up (generic term)
+(verb)|persist in|act (generic term)|move (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|stay|stay on|remain|be (generic term)
+(verb)|cover|extend|be (generic term)
+(verb)|be (generic term)
+continued|1
+(adj)|continuing (similar term)|discontinued (antonym)
+continued fraction|1
+(noun)|fraction (generic term)
+continuing|1
+(adj)|continued (similar term)
+continuing education|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+continuing trespass|1
+(noun)|trespass (generic term)
+continuity|3
+(noun)|coherence (generic term)|coherency (generic term)|cohesion (generic term)|cohesiveness (generic term)|discontinuity (antonym)
+(noun)|script (generic term)|book (generic term)|playscript (generic term)
+(noun)|persistence|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)
+continuity army council|1
+(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+continuity irish republican army|1
+(noun)|Continuity Irish Republican Army|CIRA|Continuity Army Council|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+continuo|1
+(noun)|figured bass|basso continuo|thorough bass|bass (generic term)|bass part (generic term)
+continuous|2
+(adj)|uninterrupted|around-the-clock (similar term)|day-and-night (similar term)|nonstop (similar term)|round-the-clock (similar term)|ceaseless (similar term)|constant (similar term)|incessant (similar term)|never-ending (similar term)|perpetual (similar term)|unceasing (similar term)|unremitting (similar term)|continual (similar term)|dogging (similar term)|persisting (similar term)|endless (similar term)|free burning (similar term)|sustained (similar term)|straight (similar term)|consecutive (similar term)|sustained (similar term)|unbroken (related term)|discontinuous (antonym)
+(adj)|discontinuous (antonym)
+continuous receiver watch|1
+(noun)|listening watch|watch (generic term)|vigil (generic term)
+continuous tense|1
+(noun)|progressive|progressive tense|imperfect|imperfect tense|tense (generic term)
+continuously|1
+(adv)|endlessly|ceaselessly|incessantly|unceasingly|unendingly
+continuousness|1
+(noun)|ceaselessness|incessancy|incessantness|endlessness (generic term)
+continuum|1
+(noun)|time (generic term)
+conto|1
+(noun)|Portuguese monetary unit (generic term)
+contopus|1
+(noun)|Contopus|genus Contopus|bird genus (generic term)
+contopus sordidulus|1
+(noun)|western wood pewee|Contopus sordidulus|pewee (generic term)|peewee (generic term)|peewit (generic term)|pewit (generic term)|wood pewee (generic term)|Contopus virens (generic term)
+contopus virens|1
+(noun)|pewee|peewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+contort|1
+(verb)|deform|distort|wring|twist (generic term)|twine (generic term)|distort (generic term)
+contorted|2
+(adj)|writhed|writhen|crooked (similar term)
+(adj)|distorted|twisted|crooked (similar term)
+contortion|2
+(noun)|deformation|change of shape (generic term)
+(noun)|tortuosity|tortuousness|torsion|crookedness|distorted shape (generic term)|distortion (generic term)
+contortionist|1
+(noun)|acrobat (generic term)
+contour|4
+(noun)|contour line|isometric line (generic term)|isometric (generic term)
+(noun)|shape|form|configuration|conformation|spatial property (generic term)|spatiality (generic term)
+(noun)|feature (generic term)|characteristic (generic term)
+(verb)|delineate (generic term)|limn (generic term)|outline (generic term)
+contour feather|1
+(noun)|feather (generic term)|plume (generic term)|plumage (generic term)
+contour language|1
+(noun)|tone language (generic term)|tonal language (generic term)
+contour line|1
+(noun)|contour|isometric line (generic term)|isometric (generic term)
+contour map|1
+(noun)|relief map|map (generic term)
+contour sheet|1
+(noun)|fitted sheet|sheet (generic term)|bed sheet (generic term)
+contra danse|2
+(noun)|country-dance|country dancing|contredanse|contradance|folk dancing (generic term)|folk dance (generic term)
+(verb)|contradance|country-dance|contredanse|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+contraband|2
+(adj)|bootleg|black|black-market|smuggled|illegal (similar term)
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+contrabandist|1
+(noun)|smuggler|runner|moon curser|moon-curser|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+contrabass|2
+(adj)|double-bass|low (similar term)|low-pitched (similar term)
+(noun)|bass fiddle|bass viol|bull fiddle|double bass|string bass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+contrabassoon|1
+(noun)|contrafagotto|double bassoon|bassoon (generic term)
+contraception|1
+(noun)|contraceptive method|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+contraceptive|2
+(adj)|prophylactic|antifertility|protective (similar term)
+(noun)|preventive|preventative|contraceptive device|prophylactic device|birth control device|device (generic term)
+contraceptive device|1
+(noun)|contraceptive|preventive|preventative|prophylactic device|birth control device|device (generic term)
+contraceptive diaphragm|1
+(noun)|diaphragm|pessary|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+contraceptive method|1
+(noun)|contraception|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+contraceptive pill|1
+(noun)|pill|birth control pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+contraclockwise|1
+(adj)|counterclockwise|anticlockwise|levorotary (similar term)|levorotatory (similar term)|left-handed (similar term)|sinistral (related term)|clockwise (antonym)
+contract|12
+(noun)|written agreement (generic term)
+(noun)|declaration|bid (generic term)|bidding (generic term)
+(noun)|contract bridge|bridge (generic term)
+(verb)|undertake|promise (generic term)|assure (generic term)
+(verb)|sign|sign on|sign up|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|compress|constrict|squeeze|compact|press|tighten (generic term)
+(verb)|shrink|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|expand (antonym)|stretch (antonym)
+(verb)|take|get|sicken (generic term)|come down (generic term)
+(verb)|shrink (generic term)|reduce (generic term)
+(verb)|condense|concentrate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|narrow|change (generic term)|narrow down (related term)|widen (antonym)
+(verb)|abridge|foreshorten|abbreviate|shorten|cut|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+contract bridge|1
+(noun)|contract|bridge (generic term)
+contract in|1
+(verb)|accept (generic term)|consent (generic term)|go for (generic term)|contract out (antonym)
+contract killing|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+contract law|1
+(noun)|jurisprudence (generic term)|law (generic term)|legal philosophy (generic term)
+contract of adhesion|1
+(noun)|adhesion contract|contract (generic term)
+contract of hazard|1
+(noun)|sale in gross|contract (generic term)
+contract offer|1
+(noun)|offer (generic term)|offering (generic term)
+contract out|2
+(verb)|sign (generic term)|contract (generic term)|sign on (generic term)|sign up (generic term)
+(verb)|refuse (generic term)|decline (generic term)|contract in (antonym)
+contract under seal|1
+(noun)|sealed instrument|special contract|contract (generic term)
+contractable|1
+(adj)|catching|communicable|contagious|transmissible|transmittable|infectious (similar term)
+contracted|1
+(adj)|contractile (similar term)|narrowed (similar term)|shrunk (similar term)|shrunken (similar term)|expanded (antonym)
+contractile|1
+(adj)|contracted (similar term)
+contractile organ|1
+(noun)|contractor|organ (generic term)
+contractility|1
+(noun)|ability (generic term)
+contracting|1
+(noun)|catching|acquiring (generic term)|getting (generic term)
+contraction|4
+(noun)|muscular contraction|muscle contraction|shortening (generic term)
+(noun)|compression|condensation|shrinking (generic term)|shrinkage (generic term)
+(noun)|word (generic term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|expansion (antonym)
+contractor|4
+(noun)|builder (generic term)|constructor (generic term)
+(noun)|declarer|bridge player (generic term)|hand (generic term)
+(noun)|party (generic term)
+(noun)|contractile organ|organ (generic term)
+contractual|1
+(adj)|written agreement (related term)
+contracture|1
+(noun)|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+contradance|2
+(noun)|country-dance|country dancing|contredanse|contra danse|folk dancing (generic term)|folk dance (generic term)
+(verb)|country-dance|contredanse|contra danse|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+contradict|4
+(verb)|belie|negate|deviate (generic term)|vary (generic term)|diverge (generic term)|depart (generic term)
+(verb)|negate|contravene|disagree (generic term)|differ (generic term)|dissent (generic term)|take issue (generic term)
+(verb)|oppose|controvert|refute (generic term)|rebut (generic term)
+(verb)|negate|prove (generic term)|demonstrate (generic term)|establish (generic term)|show (generic term)|shew (generic term)|affirm (antonym)
+contradiction|3
+(noun)|opposition (generic term)|oppositeness (generic term)
+(noun)|contradiction in terms|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|negation (generic term)
+contradiction in terms|1
+(noun)|contradiction|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+contradictoriness|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+contradictory|5
+(adj)|antonymous (similar term)
+(adj)|confounding|unsupportive (similar term)
+(adj)|at odds|conflicting|self-contradictory|inconsistent (similar term)
+(adj)|mutually exclusive|incompatible (similar term)
+(noun)|logical relation (generic term)
+contradistinction|1
+(noun)|differentiation (generic term)|distinction (generic term)
+contradistinguish|1
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+contrafagotto|1
+(noun)|contrabassoon|double bassoon|bassoon (generic term)
+contrail|1
+(noun)|condensation trail|cloud (generic term)
+contraindicate|1
+(verb)|rede (generic term)|advise (generic term)|counsel (generic term)|indicate (antonym)|indicate (antonym)
+contraindication|1
+(noun)|reason (generic term)|indication (antonym)
+contralateral|1
+(adj)|ipsilateral (antonym)
+contralto|3
+(adj)|alto|low (similar term)|low-pitched (similar term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|alto|singing voice (generic term)
+contraption|1
+(noun)|appliance|contrivance|convenience|gadget|gizmo|gismo|widget|device (generic term)
+contrapuntal|2
+(adj)|polyphony|polyphonic music|concerted music (related term)
+(adj)|polyphonic|monophonic (antonym)
+contrapuntist|1
+(noun)|composer (generic term)
+contrarian|1
+(noun)|investor (generic term)
+contrariety|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+contrarily|2
+(adv)|perversely|contrariwise
+(adv)|to the contrary|contrariwise|on the contrary
+contrariness|2
+(noun)|perversity|perverseness|unruliness (generic term)|fractiousness (generic term)|willfulness (generic term)|wilfulness (generic term)
+(noun)|crankiness|crotchetiness|grumpiness|ill nature (generic term)
+contrarious|1
+(adj)|cross-grained|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+contrariwise|3
+(adv)|perversely|contrarily
+(adv)|vice versa|the other way around
+(adv)|contrarily|to the contrary|on the contrary
+contrary|7
+(adj)|different (similar term)
+(adj)|antonymous (similar term)
+(adj)|obstinate|perverse|wayward|disobedient (similar term)
+(adj)|adverse|unfavorable (similar term)|unfavourable (similar term)
+(noun)|reverse|opposite|opposition (generic term)|oppositeness (generic term)
+(noun)|opposition (generic term)|oppositeness (generic term)
+(noun)|logical relation (generic term)
+contrary to fact|1
+(adj)|counterfactual|conditional (similar term)
+contrast|7
+(noun)|direct contrast|opposition (generic term)|oppositeness (generic term)
+(noun)|comparison (generic term)|comparing (generic term)
+(noun)|line|dividing line|demarcation|differentiation (generic term)|distinction (generic term)
+(noun)|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+(noun)|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|counterpoint|differ (generic term)
+contrast material|1
+(noun)|contrast medium|medium (generic term)
+contrast medium|1
+(noun)|contrast material|medium (generic term)
+contrasting|1
+(adj)|contrastive|different (similar term)
+contrastive|3
+(adj)|incompatible|antonymous (similar term)
+(adj)|contrasting|different (similar term)
+(adj)|disjunctive (similar term)
+contrasty|1
+(adj)|flat (antonym)
+contravene|2
+(verb)|conflict|run afoul|infringe|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|contradict|negate|disagree (generic term)|differ (generic term)|dissent (generic term)|take issue (generic term)
+contravention|1
+(noun)|dispute|resistance (generic term)
+contredanse|2
+(noun)|country-dance|country dancing|contra danse|contradance|folk dancing (generic term)|folk dance (generic term)
+(verb)|contradance|country-dance|contra danse|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+contretemps|1
+(noun)|brush (generic term)|clash (generic term)|encounter (generic term)|skirmish (generic term)
+contribute|4
+(verb)|lend|impart|bestow|add|bring|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|give|chip in|kick in|give (generic term)
+(verb)|lead|conduce|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|put up|pay (generic term)
+contributing|1
+(adj)|conducive|contributive|contributory|tributary|causative (similar term)
+contribution|5
+(noun)|part|share|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|donation|gift (generic term)
+(noun)|donation|giving (generic term)|gift (generic term)
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|publication (generic term)|publishing (generic term)
+contributive|1
+(adj)|conducive|contributing|contributory|tributary|causative (similar term)
+contributor|2
+(noun)|subscriber|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+(noun)|writer (generic term)|author (generic term)
+contributory|1
+(adj)|conducive|contributing|contributive|tributary|causative (similar term)
+contributory negligence|1
+(noun)|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+contrite|2
+(adj)|remorseful|rueful|ruthful|penitent (similar term)|repentant (similar term)
+(adj)|apologetic (similar term)|excusatory (similar term)
+contritely|1
+(adv)|ruefully|remorsefully
+contriteness|1
+(noun)|attrition|contrition|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+contrition|1
+(noun)|attrition|contriteness|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+contrivance|6
+(noun)|appliance|contraption|convenience|gadget|gizmo|gismo|widget|device (generic term)
+(noun)|invention (generic term)|innovation (generic term)|excogitation (generic term)|conception (generic term)|design (generic term)
+(noun)|stratagem|dodge|scheme (generic term)|strategy (generic term)
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|lash-up|arrangement (generic term)
+(noun)|devisal|invention (generic term)
+contrive|3
+(verb)|plan|project|design|create by mental act (generic term)|create mentally (generic term)
+(verb)|invent|devise|excogitate|formulate|forge|create by mental act (generic term)|create mentally (generic term)
+(verb)|project|cast|throw|send (generic term)|direct (generic term)
+contrived|2
+(adj)|planned (similar term)
+(adj)|artificial|hokey|stilted|affected (similar term)|unnatural (similar term)
+contriver|1
+(noun)|planner|deviser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+control|19
+(noun)|power (generic term)|powerfulness (generic term)
+(noun)|relation (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|control condition|criterion (generic term)|standard (generic term)
+(noun)|activity (generic term)
+(noun)|dominance|ascendance|ascendence|ascendancy|ascendency|condition (generic term)|status (generic term)
+(noun)|restraint|discipline (generic term)|unrestraint (antonym)
+(noun)|command|mastery|skillfulness (generic term)
+(noun)|economic policy (generic term)
+(noun)|controller|mechanism (generic term)
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+(verb)|command
+(verb)|hold in|hold|contain|check|curb|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|operate|manipulate (generic term)
+(verb)|manipulate|keep in line|interact (generic term)
+(verb)|verify|test (generic term)|prove (generic term)|try (generic term)|try out (generic term)|examine (generic term)|essay (generic term)
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+(verb)|see|check|insure|see to it|ensure|ascertain|assure|verify (generic term)
+(verb)|master|know (generic term)
+control account|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+control board|1
+(noun)|control panel|instrument panel|board|panel|electrical device (generic term)
+control center|1
+(noun)|center (generic term)|centre (generic term)
+control character|1
+(noun)|ASCII control character|ASCII character (generic term)
+control circuit|1
+(noun)|negative feedback circuit|feedback circuit (generic term)|feedback loop (generic term)
+control condition|1
+(noun)|control|criterion (generic term)|standard (generic term)
+control experiment|1
+(noun)|experiment (generic term)|experimentation (generic term)
+control freak|1
+(noun)|compulsive (generic term)
+control function|1
+(noun)|control operation|operation (generic term)
+control grid|1
+(noun)|grid|electrode (generic term)
+control key|1
+(noun)|command key|key (generic term)
+control operation|1
+(noun)|control function|operation (generic term)
+control panel|1
+(noun)|instrument panel|control board|board|panel|electrical device (generic term)
+control rod|1
+(noun)|rod (generic term)
+control room|1
+(noun)|room (generic term)
+control stick|1
+(noun)|stick|joystick|lever (generic term)
+control stock|1
+(noun)|stock (generic term)
+control surface|1
+(noun)|airfoil|aerofoil|surface|device (generic term)
+control system|1
+(noun)|system (generic term)
+control tower|1
+(noun)|tower (generic term)
+controllable|1
+(adj)|governable|manageable (similar term)
+controlled|2
+(adj)|contained (similar term)|disciplined (similar term)|dominated (similar term)|harnessed (similar term)|obsessed (similar term)|possessed (similar term)|pressurized (similar term)|pressurised (similar term)|price-controlled (similar term)|priest-ridden (similar term)|regimented (similar term)|restrained (related term)|uncontrolled (antonym)
+(adj)|restricted|limited (similar term)
+controlled substance|1
+(noun)|drug (generic term)
+controller|3
+(noun)|accountant|comptroller|businessperson (generic term)|bourgeois (generic term)
+(noun)|restrainer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|control|mechanism (generic term)
+controllership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+controlling|1
+(adj)|dominant (similar term)
+controlling interest|1
+(noun)|interest (generic term)|stake (generic term)
+controversial|1
+(adj)|arguable (similar term)|debatable (similar term)|disputable (similar term)|moot (similar term)|contentious (similar term)|disputed (similar term)|polemic (similar term)|polemical (similar term)|uncontroversial (antonym)
+controversialist|1
+(noun)|disputant|eristic|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+controversially|1
+(adv)|polemically|uncontroversially (antonym)
+controversy|1
+(noun)|contention|contestation|disputation|disceptation|tilt|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+controvert|2
+(verb)|oppose|contradict|refute (generic term)|rebut (generic term)
+(verb)|refute|rebut|disprove (generic term)|confute (generic term)
+contumacious|1
+(adj)|insubordinate (similar term)
+contumaciously|1
+(adv)|rebelliously|defiantly
+contumacy|2
+(noun)|disobedience (generic term)|noncompliance (generic term)
+(noun)|insubordination (generic term)|rebelliousness (generic term)
+contumelious|1
+(adj)|disrespectful (similar term)
+contumeliously|1
+(adv)|contemptuously|disdainfully|scornfully
+contumely|1
+(noun)|abuse|insult|revilement|vilification|disrespect (generic term)|discourtesy (generic term)
+contuse|1
+(verb)|bruise|injure (generic term)|wound (generic term)
+contused|1
+(adj)|bruised|contusioned|injured (similar term)
+contusion|2
+(noun)|bruise|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|hit (generic term)|hitting (generic term)|striking (generic term)
+contusioned|1
+(adj)|bruised|contused|injured (similar term)
+conundrum|1
+(noun)|riddle|enigma|brain-teaser|problem (generic term)
+conurbation|1
+(noun)|urban sprawl|sprawl|urban area (generic term)|populated area (generic term)
+conuropsis|1
+(noun)|Conuropsis|genus Conuropsis|bird genus (generic term)
+conuropsis carolinensis|1
+(noun)|Carolina parakeet|Conuropsis carolinensis|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+convalesce|1
+(verb)|recuperate|recover|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|deteriorate (antonym)
+convalescence|1
+(noun)|recuperation|recovery|healing (generic term)
+convalescent|3
+(adj)|healing (related term)
+(adj)|recovering|ill (similar term)|sick (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+convallaria|1
+(noun)|Convallaria|genus Convallaria|liliid monocot genus (generic term)
+convallaria majalis|1
+(noun)|lily of the valley|May lily|Convallaria majalis|liliaceous plant (generic term)
+convallariaceae|1
+(noun)|Convallariaceae|family Convallariaceae|liliid monocot family (generic term)
+convect|1
+(verb)|circulate (generic term)
+convection|2
+(noun)|temperature change (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+convector|1
+(noun)|heater (generic term)|warmer (generic term)
+convene|2
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|convoke|summon (generic term)
+convener|1
+(noun)|caller (generic term)
+convenience|4
+(noun)|comfort (generic term)|comfortableness (generic term)
+(noun)|suitability (generic term)|suitableness (generic term)|inconvenience (antonym)
+(noun)|public toilet|comfort station|public convenience|public lavatory|restroom|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+(noun)|appliance|contraption|contrivance|gadget|gizmo|gismo|widget|device (generic term)
+convenience food|1
+(noun)|food (generic term)|solid food (generic term)
+convenience store|1
+(noun)|shop (generic term)|store (generic term)
+conveniences|1
+(noun)|comforts|creature comforts|amenities|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+convenient|3
+(adj)|handy (similar term)|favorable (similar term)|favourable (similar term)|expedient (related term)|accessible (related term)|inconvenient (antonym)
+(adj)|handy|ready to hand|accessible (similar term)
+(adj)|commodious|roomy (similar term)|spacious (similar term)|incommodious (antonym)
+conveniently|1
+(adv)|handily|inconveniently (antonym)
+convening|1
+(noun)|convention|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+convent|2
+(noun)|religious residence (generic term)|cloister (generic term)
+(noun)|community (generic term)
+conventicle|2
+(noun)|meeting (generic term)|get together (generic term)
+(noun)|meetinghouse|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+convention|5
+(noun)|meeting (generic term)|group meeting (generic term)
+(noun)|normal|pattern|rule|formula|practice (generic term)
+(noun)|treaty (generic term)|pact (generic term)|accord (generic term)
+(noun)|conventionality|conventionalism|orthodoxy (generic term)|unconventionality (antonym)
+(noun)|convening|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+conventional|7
+(adj)|accepted (similar term)|received (similar term)|customary (similar term)|formulaic (similar term)|stodgy (similar term)|stuffy (similar term)|formal (related term)|unoriginal (related term)|unconventional (antonym)|unconventional (antonym)
+(adj)|established|orthodox (similar term)
+(adj)|nuclear (antonym)
+(adj)|button-down (similar term)|buttoned-down (similar term)|conservative (similar term)|square (similar term)|straight (similar term)|stereotyped (similar term)|stereotypic (similar term)|stereotypical (similar term)|unimaginative (similar term)|white-bread (similar term)|unconventional (antonym)
+(adj)|formal|schematic|nonrepresentational (similar term)
+(adj)|traditional (similar term)
+(adj)|ceremonious|formal (similar term)
+conventionalisation|1
+(noun)|conventionalization|stylization (generic term)|stylisation (generic term)
+conventionalise|1
+(verb)|conventionalize|change (generic term)|alter (generic term)|modify (generic term)
+conventionalised|1
+(adj)|conventionalized|stylized|stylised|artificial (similar term)|unreal (similar term)
+conventionalism|1
+(noun)|conventionality|convention|orthodoxy (generic term)|unconventionality (antonym)
+conventionality|3
+(noun)|conformity (generic term)|conformism (generic term)
+(noun)|unoriginality (generic term)|unconventionality (antonym)
+(noun)|convention|conventionalism|orthodoxy (generic term)|unconventionality (antonym)
+conventionalization|1
+(noun)|conventionalisation|stylization (generic term)|stylisation (generic term)
+conventionalize|2
+(verb)|conventionalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|stylize|stylise|represent (generic term)|interpret (generic term)
+conventionalized|1
+(adj)|conventionalised|stylized|stylised|artificial (similar term)|unreal (similar term)
+conventionally|1
+(adv)|unconventionally (antonym)
+conventioneer|1
+(noun)|attendant (generic term)|attender (generic term)|attendee (generic term)|meeter (generic term)
+conventual|1
+(adj)|cloistered|cloistral|monastic|monastical|unworldly (similar term)
+converge|4
+(verb)|meet|diverge (antonym)|diverge (antonym)
+(verb)|border on (generic term)|approach (generic term)|diverge (antonym)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)|diverge (antonym)
+(verb)|unify (generic term)|unite (generic term)|merge (generic term)
+convergence|4
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|convergency|series (generic term)|divergency (antonym)|divergence (antonym)
+(noun)|overlap|intersection|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|converging|convergency|joining (generic term)|connection (generic term)|connexion (generic term)
+convergency|2
+(noun)|convergence|series (generic term)|divergency (antonym)|divergence (antonym)
+(noun)|convergence|converging|joining (generic term)|connection (generic term)|connexion (generic term)
+convergent|1
+(adj)|confluent (similar term)|merging (similar term)|focused (similar term)|focussed (similar term)|oblique (related term)|divergent (antonym)
+convergent strabismus|1
+(noun)|cross-eye|crossed eye|esotropia|strabismus (generic term)|squint (generic term)
+convergent thinker|1
+(noun)|problem solver|solver|thinker (generic term)
+convergent thinking|1
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)|divergent thinking (antonym)
+converging|1
+(noun)|convergence|convergency|joining (generic term)|connection (generic term)|connexion (generic term)
+converging lens|1
+(noun)|convex lens|lens (generic term)|lense (generic term)|lens system (generic term)
+conversance|1
+(noun)|acquaintance|familiarity|conversancy|information (generic term)
+conversancy|1
+(noun)|acquaintance|familiarity|conversance|information (generic term)
+conversant|1
+(adj)|familiar|informed (similar term)
+conversation|1
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+conversation piece|1
+(noun)|center (generic term)|center of attention (generic term)
+conversation stopper|1
+(noun)|stopper|remark (generic term)|comment (generic term)
+conversational|1
+(adj)|colloquial|informal (similar term)
+conversational partner|1
+(noun)|interlocutor|conversationalist (generic term)|conversationist (generic term)|schmoozer (generic term)
+conversationalist|1
+(noun)|conversationist|schmoozer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+conversationally|1
+(adv)|colloquially|informally
+conversationist|1
+(noun)|conversationalist|schmoozer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+converse|4
+(adj)|antonymous (similar term)
+(adj)|reversed|transposed|backward (similar term)
+(noun)|proposition (generic term)
+(verb)|discourse|talk (generic term)|speak (generic term)
+conversion|9
+(noun)|transition|changeover|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|score (generic term)
+(noun)|rebirth|spiritual rebirth|redemption (generic term)|salvation (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|rhetorical device (generic term)
+(noun)|exchange (generic term)|interchange (generic term)
+(noun)|change (generic term)
+conversion disorder|1
+(noun)|conversion reaction|conversion hysteria|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+conversion factor|1
+(noun)|factor (generic term)
+conversion hysteria|1
+(noun)|conversion disorder|conversion reaction|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+conversion reaction|1
+(noun)|conversion disorder|conversion hysteria|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+converso|1
+(noun)|Marrano|Converso|convert (generic term)
+convert|8
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|change over|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change|exchange|commute|replace (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|win over|convince|persuade (generic term)
+(verb)|commute|exchange|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+converted|1
+(adj)|born-again|reborn|regenerate (similar term)
+converter|1
+(noun)|convertor|device (generic term)
+convertibility|1
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)|inconvertibility (antonym)
+convertible|6
+(adj)|exchangeable|cashable (similar term)|redeemable (similar term)|inconvertible (antonym)
+(adj)|adaptable (similar term)
+(adj)|transformable|translatable|transmutable|commutable (similar term)
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|convertible security|security (generic term)|certificate (generic term)
+(noun)|sofa bed|sofa (generic term)|couch (generic term)|lounge (generic term)
+convertible bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+convertible security|1
+(noun)|convertible|security (generic term)|certificate (generic term)
+convertor|1
+(noun)|converter|device (generic term)
+convex|1
+(adj)|bulging|bell-shaped (similar term)|biconvex (similar term)|convexo-convex (similar term)|lenticular (similar term)|lentiform (similar term)|broken-backed (similar term)|hogged (similar term)|convexo-concave (similar term)|gibbous (similar term)|gibbose (similar term)|helmet-shaped (similar term)|nipple-shaped (similar term)|planoconvex (similar term)|umbellate (similar term)|umbel-like (similar term)|protrusive (related term)|concave (antonym)
+convex lens|1
+(noun)|converging lens|lens (generic term)|lense (generic term)|lens system (generic term)
+convex polygon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)|concave polygon (antonym)
+convex polyhedron|1
+(noun)|polyhedron (generic term)
+convex shape|1
+(noun)|convexity|solid (generic term)
+convexity|2
+(noun)|convexness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+(noun)|convex shape|solid (generic term)
+convexly|1
+(adv)|concavely (antonym)
+convexness|1
+(noun)|convexity|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+convexo-concave|1
+(adj)|convex (similar term)|bulging (similar term)
+convexo-convex|1
+(adj)|biconvex|lenticular|lentiform|convex (similar term)|bulging (similar term)
+convey|7
+(verb)|impart|communicate (generic term)|intercommunicate (generic term)
+(verb)|carry|express|communicate (generic term)|intercommunicate (generic term)
+(verb)|transmit|communicate|transfer (generic term)
+(verb)|transfer (generic term)
+(verb)|conduct|transmit|carry|channel|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|bring|take|transport (generic term)|carry (generic term)|bring forward (related term)|bring down (related term)|bring down (related term)|bring up (related term)|bring on (related term)|bring out (related term)
+(verb)|bring|get|fetch|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|take away (antonym)
+conveyable|1
+(adj)|assignable|negotiable|transferable|transferrable|alienable (similar term)
+conveyance|5
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|imparting|impartation|transmission (generic term)
+(noun)|transport|instrumentality (generic term)|instrumentation (generic term)
+(noun)|conveyance of title|conveyancing|conveying|transfer (generic term)|transference (generic term)
+(noun)|transportation|transfer|transferral|movement (generic term)
+conveyance of title|1
+(noun)|conveyance|conveyancing|conveying|transfer (generic term)|transference (generic term)
+conveyancer|1
+(noun)|lawyer (generic term)|attorney (generic term)
+conveyancing|1
+(noun)|conveyance|conveyance of title|conveying|transfer (generic term)|transference (generic term)
+conveyed|1
+(adj)|sent (similar term)
+conveyer|2
+(noun)|conveyor|messenger (generic term)|courier (generic term)
+(noun)|conveyer belt|conveyor belt|conveyor|transporter|belt (generic term)
+conveyer belt|1
+(noun)|conveyor belt|conveyer|conveyor|transporter|belt (generic term)
+conveying|1
+(noun)|conveyance|conveyance of title|conveyancing|transfer (generic term)|transference (generic term)
+conveyor|2
+(noun)|conveyer|messenger (generic term)|courier (generic term)
+(noun)|conveyer belt|conveyor belt|conveyer|transporter|belt (generic term)
+conveyor belt|1
+(noun)|conveyer belt|conveyer|conveyor|transporter|belt (generic term)
+convict|3
+(noun)|con|inmate|jail bird|jailbird|gaolbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+(noun)|wrongdoer (generic term)|offender (generic term)
+(verb)|pronounce (generic term)|label (generic term)|judge (generic term)|acquit (antonym)
+convict fish|1
+(noun)|painted greenling|convictfish|Oxylebius pictus|greenling (generic term)
+convicted|1
+(adj)|condemned|guilty (similar term)
+convictfish|1
+(noun)|painted greenling|convict fish|Oxylebius pictus|greenling (generic term)
+conviction|2
+(noun)|strong belief|article of faith|belief (generic term)
+(noun)|judgment of conviction|condemnation|sentence|final judgment (generic term)|final decision (generic term)|acquittal (antonym)
+convince|1
+(verb)|convert|win over|persuade (generic term)
+convinced|2
+(adj)|unconvinced (antonym)
+(adj)|positive|confident|certain (similar term)|sure (similar term)
+convincible|1
+(adj)|persuadable|persuasible|suasible|susceptible (similar term)
+convincing|1
+(adj)|credible (similar term)|disenchanting (similar term)|disillusioning (similar term)|persuasive (similar term)|persuasive (related term)|unconvincing (antonym)
+convincingly|1
+(adv)|unconvincingly (antonym)
+convincingness|1
+(noun)|persuasiveness (generic term)|strength (generic term)
+convivial|1
+(adj)|good-time|sociable (similar term)
+conviviality|2
+(noun)|joviality|sociability (generic term)|sociableness (generic term)
+(noun)|merrymaking|jollification|celebration (generic term)|festivity (generic term)
+convocation|2
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|calling together|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+convoke|1
+(verb)|convene|summon (generic term)
+convolute|3
+(adj)|coiled (similar term)
+(verb)|convolve|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+(verb)|twist|twist around|pervert|sophisticate|denote (generic term)|refer (generic term)
+convoluted|2
+(adj)|coiled (similar term)
+(adj)|Byzantine|involved|knotty|tangled|tortuous|complex (similar term)
+convolution|3
+(noun)|whirl|swirl|vortex|round shape (generic term)
+(noun)|gyrus|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|change of shape (generic term)
+convolution of broca|1
+(noun)|Broca's area|Broca's center|Broca's gyrus|Broca's convolution|convolution of Broca|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+convolve|1
+(verb)|convolute|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+convolvulaceae|1
+(noun)|Convolvulaceae|family Convolvulaceae|morning-glory family|dicot family (generic term)|magnoliopsid family (generic term)
+convolvulus|1
+(noun)|vine (generic term)
+convolvulus arvensis|1
+(noun)|field bindweed|wild morning-glory|Convolvulus arvensis|bindweed (generic term)
+convolvulus scammonia|1
+(noun)|scammony|Convolvulus scammonia|convolvulus (generic term)
+convolvulus sepium|1
+(noun)|hedge bindweed|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed (generic term)
+convoy|4
+(noun)|procession (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|escort (generic term)|accompaniment (generic term)
+(verb)|escort (generic term)
+convulse|5
+(verb)|amuse (generic term)
+(verb)|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+(verb)|thresh|thresh about|thrash|thrash about|slash|toss|jactitate|shake (generic term)|agitate (generic term)
+(verb)|shake (generic term)|agitate (generic term)
+(verb)|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+convulsion|4
+(noun)|paroxysm|fit|attack (generic term)
+(noun)|seizure (generic term)|ictus (generic term)|raptus (generic term)
+(noun)|turmoil|upheaval|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|trouble (generic term)
+convulsive|2
+(adj)|spasmodic|spastic|unsteady (similar term)
+(adj)|violent (similar term)
+convulsively|1
+(adv)|with convulsions
+cony|3
+(noun)|hyrax|coney|dassie|das|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|pika|mouse hare|rock rabbit|coney|lagomorph (generic term)|gnawing mammal (generic term)
+(noun)|rabbit|coney|leporid (generic term)|leporid mammal (generic term)
+conyza|1
+(noun)|Conyza|genus Conyza|asterid dicot genus (generic term)
+conyza canadensis|1
+(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed (generic term)
+coo|3
+(noun)|cry (generic term)
+(verb)|murmur (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+cooccur|1
+(verb)|coincide|co-occur|coexist (generic term)|cooccur with (related term)
+cooccur with|1
+(verb)|collocate with|construe with|co-occur with|go with|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+cooccurring|1
+(adj)|coincident|coincidental|coinciding|concurrent|co-occurrent|simultaneous|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+cook|7
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|fix|ready|make|prepare|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|change integrity (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|fudge|manipulate|fake|falsify|wangle|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+cook out|1
+(verb)|barbeque|barbecue|grill (generic term)
+cook strait|1
+(noun)|Cook Strait|strait (generic term)|sound (generic term)
+cook up|2
+(verb)|concoct|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|fabricate|manufacture|make up|invent|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+cookbook|1
+(noun)|cookery book|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+cooke|2
+(noun)|Cooke|Alistair Cooke|Alfred Alistair Cooke|journalist (generic term)
+(noun)|Cooke|Jay Cooke|financier (generic term)|moneyman (generic term)
+cooked|1
+(adj)|au gratin (similar term)|baked (similar term)|barbecued (similar term)|grilled (similar term)|batter-fried (similar term)|boiled (similar term)|poached (similar term)|stewed (similar term)|braised (similar term)|broiled (similar term)|grilled (similar term)|burned (similar term)|burnt (similar term)|candy-like (similar term)|done (similar term)|fried (similar term)|deep-fried (similar term)|hard-baked (similar term)|hard-boiled (similar term)|lyonnaise (similar term)|medium (similar term)|overdone (similar term)|pancake-style (similar term)|parched (similar term)|rare-roasted (similar term)|ready-cooked (similar term)|roast (similar term)|roasted (similar term)|saute (similar term)|sauteed (similar term)|seared (similar term)|soft-boiled (similar term)|souffle-like (similar term)|steamed (similar term)|sunny-side up (similar term)|toasted (similar term)|wafer-like (similar term)|well-done (similar term)|raw (antonym)
+cooker|1
+(noun)|cooking utensil (generic term)|cookware (generic term)
+cookery|1
+(noun)|cooking|preparation|change of state (generic term)
+cookery book|1
+(noun)|cookbook|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+cookfire|1
+(noun)|fire (generic term)
+cookhouse|2
+(noun)|galley|ship's galley|caboose|kitchen (generic term)
+(noun)|shelter (generic term)
+cookie|3
+(noun)|cooky|biscuit|cake (generic term)
+(noun)|cooky|cook (generic term)
+(noun)|text (generic term)|textual matter (generic term)
+cookie-cutter|1
+(adj)|same (similar term)
+cookie-sized|1
+(adj)|sized (similar term)
+cookie cutter|1
+(noun)|kitchen utensil (generic term)
+cookie jar|1
+(noun)|cooky jar|jar (generic term)
+cookie jar reserve|1
+(noun)|hidden reserve (generic term)
+cookie sheet|1
+(noun)|cooking utensil (generic term)|cookware (generic term)
+cooking|1
+(noun)|cookery|preparation|change of state (generic term)
+cooking apple|1
+(noun)|apple (generic term)|eating apple (antonym)
+cooking chocolate|1
+(noun)|bitter chocolate|baking chocolate|chocolate (generic term)
+cooking oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+cooking pan|1
+(noun)|pan|cooking utensil (generic term)|cookware (generic term)
+cooking stove|1
+(noun)|stove|kitchen stove|range|kitchen range|kitchen appliance (generic term)
+cooking utensil|1
+(noun)|cookware|kitchen utensil (generic term)
+cookout|1
+(noun)|picnic (generic term)
+cookstove|1
+(noun)|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+cookware|1
+(noun)|cooking utensil|kitchen utensil (generic term)
+cooky|2
+(noun)|cookie|cook (generic term)
+(noun)|cookie|biscuit|cake (generic term)
+cooky jar|1
+(noun)|cookie jar|jar (generic term)
+cool|11
+(adj)|air-conditioned (similar term)|air-cooled (similar term)|chill (similar term)|chilly (similar term)|caller (similar term)|precooled (similar term)|water-cooled (similar term)|cold (related term)|warm (antonym)
+(adj)|coolheaded|nerveless|composed (similar term)
+(adj)|cold (similar term)|warm (antonym)
+(adj)|unresponsive (similar term)|unagitated (related term)|cold (related term)|unemotional (related term)|unfriendly (related term)|warm (antonym)
+(adj)|unqualified (similar term)
+(adj)|fashionable (similar term)|stylish (similar term)
+(noun)|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|aplomb|assuredness|poise|sang-froid|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(verb)|chill|cool down|change (generic term)|alter (generic term)|modify (generic term)|heat (antonym)
+(verb)|chill|cool down|change state (generic term)|turn (generic term)|heat (antonym)
+(verb)|cool off|cool down|change (generic term)
+cool-white|1
+(adj)|blue-white|bluish-white|achromatic (similar term)
+cool down|3
+(verb)|cool|chill|change (generic term)|alter (generic term)|modify (generic term)|heat (antonym)
+(verb)|cool|cool off|change (generic term)
+(verb)|cool|chill|change state (generic term)|turn (generic term)|heat (antonym)
+cool it|1
+(verb)|calm|calm down|cool off|chill out|simmer down|settle down|change state (generic term)|turn (generic term)
+cool jazz|1
+(noun)|jazz (generic term)
+cool off|3
+(verb)|calm|calm down|chill out|simmer down|settle down|cool it|change state (generic term)|turn (generic term)
+(verb)|cool|cool down|change (generic term)
+(verb)|feel (generic term)|experience (generic term)
+cool one's heels|1
+(verb)|kick one's heels|wait (generic term)
+coolant|1
+(noun)|fluid (generic term)|agent (generic term)
+coolant system|1
+(noun)|cooling system (generic term)|cooling (generic term)
+cooler|3
+(noun)|ice chest|refrigerator (generic term)|icebox (generic term)
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|tank|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+cooley's anaemia|1
+(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassaemia major|thalassemia (generic term)|thalassaemia (generic term)|Mediterranean anemia (generic term)|Mediterranean anaemia (generic term)
+cooley's anemia|1
+(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassaemia major|thalassemia (generic term)|thalassaemia (generic term)|Mediterranean anemia (generic term)|Mediterranean anaemia (generic term)
+coolheaded|1
+(adj)|cool|nerveless|composed (similar term)
+coolidge|1
+(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+coolie|1
+(noun)|cooly|Asian (generic term)|Asiatic (generic term)
+cooling|2
+(noun)|chilling|temperature reduction|temperature change (generic term)
+(noun)|cooling system|mechanism (generic term)
+cooling system|2
+(noun)|engine cooling system|equipment (generic term)
+(noun)|cooling|mechanism (generic term)
+cooling tower|1
+(noun)|cooling system (generic term)|cooling (generic term)
+coolly|1
+(adv)|nervelessly|nonchalantly
+coolness|4
+(noun)|chilliness|nip|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|imperturbability|imperturbableness|calmness (generic term)
+(noun)|nervelessness|fearlessness (generic term)
+(noun)|coldness|frigidity|frigidness|iciness|chilliness|unemotionality (generic term)|emotionlessness (generic term)
+coolwart|1
+(noun)|foamflower|false miterwort|false mitrewort|Tiarella cordifolia|herb (generic term)|herbaceous plant (generic term)
+cooly|1
+(noun)|coolie|Asian (generic term)|Asiatic (generic term)
+coon|3
+(noun)|rustic (generic term)
+(noun)|nigger|nigga|spade|jigaboo|nigra|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+(noun)|common raccoon|common racoon|ringtail|Procyon lotor|raccoon (generic term)|racoon (generic term)
+coon bear|1
+(noun)|giant panda|panda|panda bear|Ailuropoda melanoleuca|procyonid (generic term)
+coon cat|2
+(noun)|coati|coati-mondi|coati-mundi|Nasua narica|procyonid (generic term)
+(noun)|bassarisk|cacomistle|cacomixle|raccoon fox|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+coondog|1
+(noun)|coonhound (generic term)
+coonhound|1
+(noun)|hound (generic term)|hound dog (generic term)
+coonskin|1
+(noun)|coonskin cap|cap (generic term)
+coonskin cap|1
+(noun)|coonskin|cap (generic term)
+coontie|1
+(noun)|Florida arrowroot|Seminole bread|Zamia pumila|zamia (generic term)
+coop|2
+(noun)|chicken coop|hencoop|henhouse|farm building (generic term)
+(noun)|cage|enclosure (generic term)
+coop in|1
+(verb)|coop up|confine (generic term)
+coop up|1
+(verb)|coop in|confine (generic term)
+cooper|5
+(noun)|Cooper|Peter Cooper|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+(noun)|Cooper|Gary Cooper|Frank Cooper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Cooper|James Fenimore Cooper|writer (generic term)|author (generic term)
+(noun)|barrel maker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(verb)|make (generic term)
+cooper's hawk|1
+(noun)|Cooper's hawk|blue darter|Accipiter cooperii|hawk (generic term)
+cooper union|1
+(noun)|Cooper Union|Cooper Union for the Advancement of Science and Art|university (generic term)
+cooper union for the advancement of science and art|1
+(noun)|Cooper Union|Cooper Union for the Advancement of Science and Art|university (generic term)
+cooperate|1
+(verb)|collaborate|join forces|get together|work (generic term)
+cooperation|2
+(noun)|group action (generic term)|competition (antonym)
+(noun)|practice (generic term)|pattern (generic term)
+cooperative|5
+(adj)|combined|concerted|conjunct|conjunctive|united|joint (similar term)
+(adj)|collaborative (similar term)|helpful (similar term)|synergetic (similar term)|synergistic (similar term)|helpful (related term)|uncooperative (antonym)
+(adj)|accommodative|noncompetitive (similar term)
+(noun)|co-op|commercial enterprise (generic term)
+(noun)|association (generic term)
+cooperatively|1
+(adv)|hand in glove|hand and glove
+cooperativeness|1
+(noun)|amenability|amenableness|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+cooperator|1
+(noun)|collaborator|partner|pardner|associate (generic term)
+cooperstown|1
+(noun)|Cooperstown|town (generic term)
+coordinate|6
+(adj)|equal (similar term)
+(noun)|co-ordinate|number (generic term)
+(verb)|organize|organise|arrange (generic term)|set up (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|meet (generic term)|fit (generic term)|conform to (generic term)
+(verb)|align|ordinate|adjust (generic term)|set (generic term)|correct (generic term)
+coordinate axis|1
+(noun)|axis (generic term)
+coordinate bond|1
+(noun)|dative bond|covalent bond (generic term)
+coordinate clause|1
+(noun)|clause (generic term)
+coordinate geometry|1
+(noun)|analytic geometry|analytical geometry|geometry (generic term)
+coordinate system|1
+(noun)|frame of reference|reference system|reference frame|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+coordinated|3
+(adj)|co-ordinated|interconnected|unified|integrated (similar term)
+(adj)|co-ordinated|adroit (similar term)
+(adj)|co-ordinated|matching|matched (similar term)
+coordinated universal time|1
+(noun)|UTC|Greenwich Mean Time (generic term)|Greenwich Time (generic term)|GMT (generic term)|universal time (generic term)|UT (generic term)|UT1 (generic term)
+coordinating|1
+(adj)|coordinative|subordinating (antonym)
+coordinating conjunction|2
+(noun)|conjunction (generic term)
+(noun)|conjunction (generic term)|conjunctive (generic term)|connective (generic term)|continuative (generic term)
+coordination|3
+(noun)|skillfulness (generic term)|incoordination (antonym)
+(noun)|timing (generic term)
+(noun)|grammatical relation (generic term)
+coordination compound|1
+(noun)|complex|compound (generic term)|chemical compound (generic term)
+coordinative|1
+(adj)|coordinating|subordinating (antonym)
+coordinator|1
+(noun)|organizer (generic term)|organiser (generic term)|arranger (generic term)
+coosa|1
+(noun)|Coosa|Coosa River|river (generic term)
+coosa river|1
+(noun)|Coosa|Coosa River|river (generic term)
+coot|1
+(noun)|rail (generic term)
+cooter|1
+(noun)|river cooter|Pseudemys concinna|turtle (generic term)
+cootie|1
+(noun)|body louse|Pediculus corporis|louse (generic term)|sucking louse (generic term)
+cop|3
+(noun)|bull|copper|fuzz|pig|policeman (generic term)|police officer (generic term)|officer (generic term)
+(verb)|hook|snitch|thieve|knock off|glom|steal (generic term)
+(verb)|collar|nail|apprehend|arrest|pick up|nab|seize (generic term)|prehend (generic term)|clutch (generic term)
+cop out|1
+(verb)|opt out|choose (generic term)|prefer (generic term)|opt (generic term)
+copacetic|1
+(adj)|copasetic|copesetic|copesettic|satisfactory (similar term)
+copaiba|1
+(noun)|copaiba balsam|balsam capivi|oleoresin (generic term)
+copaiba balsam|1
+(noun)|copaiba|balsam capivi|oleoresin (generic term)
+copal|1
+(noun)|natural resin (generic term)
+copaline|1
+(noun)|copalite|fossil copal|copal (generic term)
+copalite|1
+(noun)|copaline|fossil copal|copal (generic term)
+copartner|1
+(noun)|partner (generic term)
+copartnership|1
+(noun)|partnership (generic term)
+copasetic|1
+(adj)|copacetic|copesetic|copesettic|satisfactory (similar term)
+cope|2
+(noun)|header|coping|brick (generic term)
+(verb)|get by|make out|make do|contend|grapple|deal|manage|act (generic term)|move (generic term)
+cope with|1
+(verb)|meet|match|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+copeck|1
+(noun)|kopek|kopeck|Russian monetary unit (generic term)
+copehan|1
+(noun)|Copehan|Penutian (generic term)
+copenhagen|1
+(noun)|Copenhagen|Kobenhavn|Danish capital|national capital (generic term)
+copepod|1
+(noun)|copepod crustacean|crustacean (generic term)
+copepod crustacean|1
+(noun)|copepod|crustacean (generic term)
+copepoda|1
+(noun)|Copepoda|subclass Copepoda|class (generic term)
+copernican|2
+(adj)|Copernican|important (similar term)|of import (similar term)
+(adj)|Copernican|heliocentric (similar term)
+copernican system|1
+(noun)|Copernican system|model (generic term)|theoretical account (generic term)|framework (generic term)
+copernicia|1
+(noun)|Copernicia|genus Copernicia|monocot genus (generic term)|liliopsid genus (generic term)
+copernicia alba|1
+(noun)|caranday|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+copernicia australis|1
+(noun)|caranday|caranda|caranda palm|wax palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+copernicia cerifera|1
+(noun)|carnauba|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm (generic term)
+copernicia prunifera|1
+(noun)|carnauba|carnauba palm|wax palm|Copernicia prunifera|Copernicia cerifera|fan palm (generic term)
+copernicus|2
+(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Copernicus|lunar crater (generic term)
+copesetic|1
+(adj)|copacetic|copasetic|copesettic|satisfactory (similar term)
+copesettic|1
+(adj)|copacetic|copasetic|copesetic|satisfactory (similar term)
+copestone|2
+(noun)|finishing touch|capstone|touch (generic term)
+(noun)|capstone|coping stone|stretcher|stone (generic term)
+copied|1
+(adj)|traced|derived (similar term)
+copier|1
+(noun)|duplicator|apparatus (generic term)|setup (generic term)
+copilot|1
+(noun)|co-pilot|pilot (generic term)|airplane pilot (generic term)
+coping|1
+(noun)|header|cope|brick (generic term)
+coping saw|1
+(noun)|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+coping stone|1
+(noun)|capstone|copestone|stretcher|stone (generic term)
+copious|2
+(adj)|voluminous|abundant (similar term)
+(adj)|ample|plenteous|plentiful|rich|abundant (similar term)
+copiously|1
+(adv)|abundantly|profusely|extravagantly
+copiousness|1
+(noun)|abundance|teemingness|quantity (generic term)|scarcity (antonym)
+coplanar|1
+(adj)|planar (similar term)|two-dimensional (similar term)
+copland|1
+(noun)|Copland|Aaron Copland|composer (generic term)
+copley|1
+(noun)|Copley|John Copley|John Singleton Copley|painter (generic term)
+copolymer|1
+(noun)|polymer (generic term)
+copolymerise|1
+(verb)|copolymerize|polymerize (generic term)|polymerise (generic term)
+copolymerize|1
+(verb)|copolymerise|polymerize (generic term)|polymerise (generic term)
+copout|1
+(noun)|failure (generic term)
+copper|6
+(noun)|Cu|atomic number 29|metallic element (generic term)|metal (generic term)|conductor (generic term)
+(noun)|penny (generic term)|cent (generic term)|centime (generic term)
+(noun)|bull|cop|fuzz|pig|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|copper color|reddish brown (generic term)|sepia (generic term)|burnt sienna (generic term)|Venetian red (generic term)
+(noun)|lycaenid (generic term)|lycaenid butterfly (generic term)
+(verb)|coat (generic term)|surface (generic term)
+copper's nark|1
+(noun)|nark|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+copper-base alloy|1
+(noun)|alloy (generic term)|metal (generic term)
+copper-bottom|1
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+copper-bottomed|1
+(adj)|bottomed (similar term)
+copper beech|1
+(noun)|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech (generic term)|beech tree (generic term)
+copper color|1
+(noun)|copper|reddish brown (generic term)|sepia (generic term)|burnt sienna (generic term)|Venetian red (generic term)
+copper colored|1
+(adj)|coppery|chromatic (similar term)
+copper glance|1
+(noun)|chalcocite|mineral (generic term)
+copper mine|1
+(noun)|mine (generic term)
+copper nose|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|rhinopathy (generic term)
+copper oxide|1
+(noun)|oxide (generic term)
+copper pyrites|1
+(noun)|chalcopyrite|mineral (generic term)
+copper rockfish|1
+(noun)|Sebastodes caurinus|rockfish (generic term)
+copper sulfate|1
+(noun)|copper sulphate|cupric sulfate|cupric sulphate|sulfate (generic term)|sulphate (generic term)
+copper sulphate|1
+(noun)|copper sulfate|cupric sulfate|cupric sulphate|sulfate (generic term)|sulphate (generic term)
+copperhead|2
+(noun)|Agkistrodon contortrix|pit viper (generic term)
+(noun)|Denisonia superba|elapid (generic term)|elapid snake (generic term)
+copperplate|3
+(noun)|longhand (generic term)|running hand (generic term)|cursive (generic term)|cursive script (generic term)
+(noun)|print (generic term)
+(noun)|copperplate engraving|engraving (generic term)
+copperplate engraving|1
+(noun)|copperplate|engraving (generic term)
+coppersmith|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+copperware|1
+(noun)|utensil (generic term)
+coppery|1
+(adj)|copper colored|chromatic (similar term)
+coppice|1
+(noun)|brush|brushwood|copse|thicket|vegetation (generic term)|flora (generic term)|botany (generic term)
+coppola|1
+(noun)|Coppola|Francis Ford Coppola|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+copra|1
+(noun)|coconut (generic term)|coconut meat (generic term)
+copra oil|1
+(noun)|coconut oil|vegetable oil (generic term)|oil (generic term)
+coprinaceae|1
+(noun)|Coprinaceae|family Coprinaceae|fungus family (generic term)
+coprinus|1
+(noun)|Coprinus|genus Coprinus|fungus genus (generic term)
+coprinus atramentarius|1
+(noun)|inky cap|inky-cap mushroom|Coprinus atramentarius|agaric (generic term)
+coprinus comatus|1
+(noun)|shaggymane|shaggy cap|shaggymane mushroom|Coprinus comatus|agaric (generic term)
+coprolalia|1
+(noun)|pathology (generic term)
+coprolite|1
+(noun)|droppings (generic term)|dung (generic term)|muck (generic term)
+coprolith|1
+(noun)|fecalith|faecalith|stercolith|mass (generic term)
+coprophagia|1
+(noun)|coprophagy|eating (generic term)|feeding (generic term)
+coprophagy|1
+(noun)|coprophagia|eating (generic term)|feeding (generic term)
+copse|1
+(noun)|brush|brushwood|coppice|thicket|vegetation (generic term)|flora (generic term)|botany (generic term)
+copt|2
+(noun)|Copt|Egyptian (generic term)
+(noun)|Copt|Christian (generic term)
+coptic|2
+(adj)|Coptic|Christian (related term)
+(noun)|Coptic|Egyptian (generic term)
+coptic church|1
+(noun)|Coptic Church|church (generic term)|Christian church (generic term)
+coptis|1
+(noun)|Coptis|genus Coptis|magnoliid dicot genus (generic term)
+coptis groenlandica|1
+(noun)|goldthread|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb (generic term)|herbaceous plant (generic term)
+coptis trifolia groenlandica|1
+(noun)|goldthread|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb (generic term)|herbaceous plant (generic term)
+copula|1
+(noun)|copulative|linking verb|verb (generic term)
+copular|1
+(adj)|verb (related term)
+copulate|1
+(verb)|mate|pair|couple|join (generic term)|conjoin (generic term)
+copulation|1
+(noun)|sexual intercourse|intercourse|sex act|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+copulative|2
+(adj)|connecting|conjunctive (similar term)
+(noun)|copula|linking verb|verb (generic term)
+copulative conjunction|1
+(noun)|conjunction (generic term)
+copulatory|1
+(adj)|coital|sexual activity|sexual practice|sex|sex activity (related term)
+copy|8
+(noun)|transcript|written record (generic term)|written account (generic term)
+(noun)|representation (generic term)
+(noun)|written matter|text (generic term)|textual matter (generic term)
+(noun)|material (generic term)
+(verb)|write (generic term)
+(verb)|imitate|simulate|reproduce (generic term)
+(verb)|replicate|duplicate (generic term)|reduplicate (generic term)|double (generic term)|repeat (generic term)|replicate (generic term)
+(verb)|re-create|make (generic term)|create (generic term)
+copy editing|1
+(noun)|editing (generic term)|redaction (generic term)
+copy editor|1
+(noun)|copyreader|text editor|editor (generic term)|editor in chief (generic term)
+copy out|1
+(verb)|copy (generic term)
+copybook|1
+(noun)|book (generic term)
+copycat|1
+(noun)|imitator|emulator|ape|aper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+copyedit|1
+(verb)|copyread|subedit|edit (generic term)|redact (generic term)
+copyhold|1
+(noun)|tenure (generic term)|land tenure (generic term)
+copyholder|1
+(noun)|mechanical device (generic term)
+copying|1
+(noun)|repetition (generic term)|repeating (generic term)
+copyist|1
+(noun)|scribe|scrivener|employee (generic term)
+copyread|1
+(verb)|subedit|copyedit|edit (generic term)|redact (generic term)
+copyreader|1
+(noun)|copy editor|text editor|editor (generic term)|editor in chief (generic term)
+copyright|2
+(noun)|right of first publication|document (generic term)|written document (generic term)|papers (generic term)|legal right (generic term)
+(verb)|procure (generic term)|secure (generic term)
+copyright infringement|1
+(noun)|infringement of copyright|violation (generic term)|infringement (generic term)
+copyrighted|1
+(adj)|proprietary (similar term)
+copywriter|1
+(noun)|employee (generic term)
+coq au vin|1
+(noun)|dish (generic term)
+coquet|1
+(verb)|chat up|flirt|dally|butterfly|coquette|romance|philander|mash|talk (generic term)|speak (generic term)
+coquetry|1
+(noun)|flirt|flirting|flirtation|dalliance|toying|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+coquette|2
+(noun)|flirt|vamp|vamper|minx|tease|prickteaser|woman (generic term)|adult female (generic term)
+(verb)|chat up|flirt|dally|butterfly|coquet|romance|philander|mash|talk (generic term)|speak (generic term)
+coquettish|1
+(adj)|flirtatious|sexy (similar term)
+coquettishly|1
+(adv)|flirtatiously
+coquilla nut|1
+(noun)|seed (generic term)
+coquille|1
+(noun)|dish (generic term)
+coquilles saint-jacques|1
+(noun)|coquilles Saint-Jacques|dish (generic term)
+cor anglais|1
+(noun)|English horn|double-reed instrument (generic term)|double reed (generic term)
+cor pulmonale|1
+(noun)|hypertrophy (generic term)
+cora|1
+(noun)|Persephone|Despoina|Kore|Cora|Greek deity (generic term)
+coracan|1
+(noun)|finger millet|ragi|ragee|African millet|corakan|kurakkan|Eleusine coracana|millet (generic term)
+coracias|1
+(noun)|Coracias|genus Coracias|bird genus (generic term)
+coracias garrulus|1
+(noun)|European roller|Coracias garrulus|roller (generic term)
+coraciidae|1
+(noun)|Coraciidae|family Coraciidae|bird family (generic term)
+coraciiform bird|1
+(noun)|bird (generic term)
+coraciiformes|1
+(noun)|Coraciiformes|order Coraciiformes|animal order (generic term)
+coracle|1
+(noun)|small boat (generic term)
+coragyps|1
+(noun)|Coragyps|genus Coragyps|bird genus (generic term)
+coragyps atratus|1
+(noun)|black vulture|carrion crow|Coragyps atratus|New World vulture (generic term)|cathartid (generic term)
+corakan|1
+(noun)|finger millet|ragi|ragee|African millet|coracan|kurakkan|Eleusine coracana|millet (generic term)
+coral|5
+(adj)|chromatic (similar term)
+(noun)|pink (generic term)
+(noun)|red coral|precious coral|opaque gem (generic term)
+(noun)|roe (generic term)|hard roe (generic term)
+(noun)|anthozoan (generic term)|actinozoan (generic term)
+coral-red|1
+(adj)|chromatic (similar term)
+coral-root bittercress|1
+(noun)|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress (generic term)|bitter cress (generic term)
+coral-wood|1
+(noun)|coralwood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree (generic term)
+coral bean|1
+(noun)|mescal bean|frijolito|frijolillo|Sophora secundiflora|tree (generic term)
+coral bean tree|1
+(noun)|Erythrina corallodendrum|coral tree (generic term)|erythrina (generic term)
+coral bush|1
+(noun)|flame bush|Templetonia retusa|shrub (generic term)|bush (generic term)
+coral drops|1
+(noun)|Bessera elegans|flower (generic term)
+coral fungus|1
+(noun)|fungus (generic term)
+coral gem|1
+(noun)|Lotus berthelotii|subshrub (generic term)|suffrutex (generic term)
+coral honeysuckle|1
+(noun)|trumpet honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle (generic term)
+coral necklace|1
+(noun)|Illecebrum verticullatum|herb (generic term)|herbaceous plant (generic term)
+coral pea|1
+(noun)|vine (generic term)
+coral reef|1
+(noun)|reef (generic term)
+coral root|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+coral sea|2
+(noun)|Coral Sea|sea (generic term)
+(noun)|Coral Sea|battle of the Coral Sea|naval battle (generic term)
+coral snake|2
+(noun)|Old World coral snake|elapid (generic term)|elapid snake (generic term)
+(noun)|harlequin-snake|New World coral snake|elapid (generic term)|elapid snake (generic term)
+coral tree|1
+(noun)|erythrina|tree (generic term)
+coral vine|1
+(noun)|Kennedia coccinea|coral pea (generic term)
+coralbells|1
+(noun)|Heuchera sanguinea|alumroot (generic term)|alumbloom (generic term)
+coralberry|2
+(noun)|Indian currant|Symphoricarpos orbiculatus|shrub (generic term)|bush (generic term)
+(noun)|spiceberry|Ardisia crenata|shrub (generic term)|bush (generic term)
+corallorhiza|1
+(noun)|Corallorhiza|genus Corallorhiza|monocot genus (generic term)|liliopsid genus (generic term)
+corallorhiza maculata|1
+(noun)|spotted coral root|Corallorhiza maculata|coral root (generic term)
+corallorhiza striata|1
+(noun)|striped coral root|Corallorhiza striata|coral root (generic term)
+corallorhiza trifida|1
+(noun)|early coral root|pale coral root|Corallorhiza trifida|coral root (generic term)
+coralroot|1
+(noun)|coral-root bittercress|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress (generic term)|bitter cress (generic term)
+coralwood|1
+(noun)|coral-wood|red sandalwood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree (generic term)
+coralwort|1
+(noun)|coral-root bittercress|coralroot|Cardamine bulbifera|Dentaria bulbifera|bittercress (generic term)|bitter cress (generic term)
+corbel|2
+(noun)|truss|bracket (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+corbel arch|1
+(noun)|arch (generic term)
+corbel step|1
+(noun)|corbie-step|corbiestep|crow step|step (generic term)|stair (generic term)
+corbett|1
+(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter (generic term)|gladiator (generic term)
+corbie-step|1
+(noun)|corbel step|corbiestep|crow step|step (generic term)|stair (generic term)
+corbie gable|1
+(noun)|gable (generic term)|gable end (generic term)|gable wall (generic term)
+corbiestep|1
+(noun)|corbel step|corbie-step|crow step|step (generic term)|stair (generic term)
+corbina|1
+(noun)|Menticirrhus undulatus|whiting (generic term)
+corchorus|2
+(noun)|subshrub (generic term)|suffrutex (generic term)
+(noun)|Corchorus|genus Corchorus|dilleniid dicot genus (generic term)
+cord|6
+(noun)|line (generic term)
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(noun)|electric cord|conductor (generic term)
+(noun)|corduroy|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|stack (generic term)|pile (generic term)|heap (generic term)
+(verb)|tie (generic term)|bind (generic term)
+cord grass|1
+(noun)|cordgrass|grass (generic term)
+cordage|2
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|rope (generic term)
+cordaitaceae|1
+(noun)|Cordaitaceae|family Cordaitaceae|gymnosperm family (generic term)
+cordaitales|1
+(noun)|Cordaitales|order Cordaitales|plant order (generic term)
+cordaites|1
+(noun)|Cordaites|genus Cordaites|gymnosperm genus (generic term)
+cordarone|1
+(noun)|amiodarone|Cordarone|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+cordate|1
+(adj)|heart-shaped|cordiform|simple (similar term)|unsubdivided (similar term)
+cordate leaf|1
+(noun)|simple leaf (generic term)
+corday|1
+(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+corded|1
+(adj)|twilled|rough (similar term)|unsmooth (similar term)
+cordell hull|1
+(noun)|Hull|Cordell Hull|diplomat (generic term)|diplomatist (generic term)
+cordgrass|1
+(noun)|cord grass|grass (generic term)
+cordia|1
+(noun)|Cordia|genus Cordia|dicot genus (generic term)|magnoliopsid genus (generic term)
+cordia alliodora|1
+(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+cordia gerascanthus|1
+(noun)|princewood|Spanish elm|Cordia gerascanthus|tree (generic term)
+cordial|4
+(adj)|affable|amiable|genial|friendly (similar term)
+(adj)|hearty|warm (similar term)
+(adj)|sincere (similar term)
+(noun)|liqueur|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+cordial reception|1
+(noun)|hospitality|welcome (generic term)|inhospitality (antonym)
+cordiality|1
+(noun)|amity|friendliness (generic term)
+cordially|1
+(adv)|heartily|warmly
+cordierite|1
+(noun)|mineral (generic term)
+cordiform|1
+(adj)|cordate|heart-shaped|simple (similar term)|unsubdivided (similar term)
+cordite|1
+(noun)|explosive compound (generic term)
+corditis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cordless|1
+(adj)|conductor (related term)
+cordoba|3
+(noun)|Nicaraguan monetary unit (generic term)
+(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer (generic term)|adventurer (generic term)
+(noun)|Cordoba|Cordova|city (generic term)|metropolis (generic term)|urban center (generic term)
+cordon|2
+(noun)|insignia (generic term)
+(noun)|adornment (generic term)
+cordon bleu|2
+(noun)|chef (generic term)
+(noun)|blue ribbon|badge (generic term)
+cordon off|1
+(verb)|rope in|rope off|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+cordova|2
+(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer (generic term)|adventurer (generic term)
+(noun)|Cordoba|Cordova|city (generic term)|metropolis (generic term)|urban center (generic term)
+cordovan|1
+(noun)|leather (generic term)
+cords|1
+(noun)|corduroys|trouser (generic term)|pant (generic term)
+corduroy|3
+(noun)|cord|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|road (generic term)|route (generic term)
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+corduroys|1
+(noun)|cords|trouser (generic term)|pant (generic term)
+cordwood|1
+(noun)|firewood (generic term)
+cordylidae|1
+(noun)|Cordylidae|family Cordylidae|reptile genus (generic term)
+cordyline|1
+(noun)|Cordyline|genus Cordyline|liliid monocot genus (generic term)
+cordyline australis|1
+(noun)|cabbage tree|grass tree|Cordyline australis|tree (generic term)
+cordyline terminalis|1
+(noun)|ti|Cordyline terminalis|shrub (generic term)|bush (generic term)
+cordylus|1
+(noun)|Cordylus|genus Cordylus|reptile genus (generic term)
+core|9
+(noun)|nucleus|core group|set (generic term)
+(noun)|center (generic term)|centre (generic term)|midpoint (generic term)
+(noun)|kernel|substance|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|sample (generic term)
+(noun)|Congress of Racial Equality|CORE|nongovernmental organization (generic term)|NGO (generic term)
+(noun)|effect|essence|burden|gist|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|chamber (generic term)
+(noun)|bar (generic term)
+(verb)|hollow (generic term)|hollow out (generic term)|core out (generic term)
+core bit|1
+(noun)|drilling bit (generic term)|drill bit (generic term)
+core dump|1
+(noun)|dump (generic term)
+core group|1
+(noun)|core|nucleus|set (generic term)
+core out|1
+(verb)|hollow|hollow out|empty (generic term)
+coreference|1
+(noun)|grammatical relation (generic term)
+coreferent|1
+(adj)|related (similar term)|related to (similar term)
+coreferential|1
+(adj)|co-referent|grammatical relation (related term)
+coregonidae|1
+(noun)|Coregonidae|family Coregonidae|fish family (generic term)
+coregonus|1
+(noun)|Coregonus|genus Coregonus|fish genus (generic term)
+coregonus artedi|1
+(noun)|cisco|lake herring|Coregonus artedi|whitefish (generic term)
+coregonus clupeaformis|1
+(noun)|lake whitefish|Coregonus clupeaformis|whitefish (generic term)
+coreid|1
+(noun)|coreid bug|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+coreid bug|1
+(noun)|coreid|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+coreidae|1
+(noun)|Coreidae|family Coreidae|arthropod family (generic term)
+coreligionist|1
+(noun)|religious person (generic term)
+corelli|1
+(noun)|Corelli|Arcangelo Corelli|violinist (generic term)|fiddler (generic term)|composer (generic term)
+coreopsis|1
+(noun)|tickseed|tickweed|tick-weed|herb (generic term)|herbaceous plant (generic term)
+coreopsis gigantea|1
+(noun)|giant coreopsis|Coreopsis gigantea|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+coreopsis maritima|1
+(noun)|sea dahlia|Coreopsis maritima|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+coreopsis tinctoria|1
+(noun)|calliopsis|Coreopsis tinctoria|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+corer|1
+(noun)|device (generic term)
+corespondent|1
+(noun)|co-respondent|codefendant (generic term)|co-defendant (generic term)
+corgard|1
+(noun)|nadolol|Corgard|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+corgi|1
+(noun)|Welsh corgi|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+coriaceous|1
+(adj)|leathered|leatherlike|leathery|tough (similar term)
+coriander|3
+(noun)|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb (generic term)|herbaceous plant (generic term)
+(noun)|coriander seed|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|Chinese parsley|cilantro|herb (generic term)
+coriander plant|1
+(noun)|coriander|Chinese parsley|cilantro|Coriandrum sativum|herb (generic term)|herbaceous plant (generic term)
+coriander seed|1
+(noun)|coriander|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+coriandrum|1
+(noun)|Coriandrum|genus Coriandrum|rosid dicot genus (generic term)
+coriandrum sativum|1
+(noun)|coriander|coriander plant|Chinese parsley|cilantro|Coriandrum sativum|herb (generic term)|herbaceous plant (generic term)
+coricidin|1
+(noun)|chlorpheniramine maleate|Coricidin|Chlor-Trimeton|antihistamine (generic term)
+corinth|1
+(noun)|Corinth|Korinthos|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+corinthian|4
+(adj)|order (related term)
+(adj)|city|metropolis|urban center|port (related term)
+(noun)|playboy|man-about-town|Corinthian|hedonist (generic term)|pagan (generic term)|pleasure seeker (generic term)
+(noun)|Corinthian|Greek (generic term)|Hellene (generic term)
+corinthian order|1
+(noun)|Corinthian order|order (generic term)
+coriolis effect|1
+(noun)|Coriolis effect|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+coriolis force|1
+(noun)|Coriolis force|force (generic term)
+corium|1
+(noun)|dermis|derma|stratum (generic term)
+corixa|1
+(noun)|Corixa|genus Corixa|arthropod genus (generic term)
+corixidae|1
+(noun)|Corixidae|family Corixidae|arthropod family (generic term)
+cork|7
+(noun)|bark (generic term)|plant material (generic term)
+(noun)|phellem|bark (generic term)
+(noun)|Cork|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|bottle cork|plug (generic term)|stopper (generic term)|stopple (generic term)
+(noun)|bob|bobber|bobfloat|float (generic term)
+(verb)|cork up|plug (generic term)|stop up (generic term)|secure (generic term)|uncork (antonym)
+(verb)|stuff (generic term)
+cork jacket|1
+(noun)|life jacket|life vest|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+cork oak|1
+(noun)|Quercus suber|oak (generic term)|oak tree (generic term)
+cork tree|2
+(noun)|Phellodendron amurense|tree (generic term)
+(noun)|Erythrina vespertilio|coral tree (generic term)|erythrina (generic term)
+cork up|1
+(verb)|cork|plug (generic term)|stop up (generic term)|secure (generic term)|uncork (antonym)
+corkage|1
+(noun)|service charge (generic term)|service fee (generic term)
+corkboard|1
+(noun)|insulating material (generic term)|insulant (generic term)|insulation (generic term)
+corked|2
+(adj)|sealed (similar term)
+(adj)|corky|bad (similar term)
+corker|2
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|machine (generic term)
+corking|1
+(adj)|bang-up|bully|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+corkscrew|2
+(noun)|bottle screw|bottle opener (generic term)
+(verb)|spiral|turn (generic term)
+corkscrew flower|1
+(noun)|snailflower|snail-flower|snail flower|snail bean|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+corkwood|1
+(noun)|corkwood tree|Leitneria floridana|shrub (generic term)|bush (generic term)
+corkwood family|1
+(noun)|Leitneriaceae|family Leitneriaceae|dicot family (generic term)|magnoliopsid family (generic term)
+corkwood tree|1
+(noun)|corkwood|Leitneria floridana|shrub (generic term)|bush (generic term)
+corky|1
+(adj)|corked|bad (similar term)
+corm|1
+(noun)|stalk (generic term)|stem (generic term)
+cormorant|1
+(noun)|Phalacrocorax carbo|pelecaniform seabird (generic term)
+cormose|1
+(adj)|cormous|stalk|stem (related term)
+cormous|1
+(adj)|cormose|stalk|stem (related term)
+cormous plant|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+corn|9
+(noun)|maize|Indian corn|Zea mays|cereal (generic term)|cereal grass (generic term)
+(noun)|kernel (generic term)
+(noun)|edible corn|grain (generic term)|food grain (generic term)|cereal (generic term)
+(noun)|clavus|callosity (generic term)|callus (generic term)
+(noun)|cereal (generic term)|cereal grass (generic term)
+(noun)|corn whiskey|corn whisky|whiskey (generic term)|whisky (generic term)
+(noun)|mawkishness (generic term)|sentimentality (generic term)|drippiness (generic term)|mushiness (generic term)|soupiness (generic term)|sloppiness (generic term)
+(verb)|feed (generic term)|give (generic term)
+(verb)|preserve (generic term)|keep (generic term)
+corn-fed|2
+(adj)|nourished (similar term)
+(adj)|provincial (similar term)
+corn beef|1
+(noun)|bully beef|corned beef|beef (generic term)|boeuf (generic term)
+corn belt|1
+(noun)|Corn Belt|belt (generic term)
+corn borer|2
+(noun)|Pyrausta nubilalis|caterpillar (generic term)
+(noun)|European corn borer moth|corn borer moth|Pyrausta nubilalis|pyralid (generic term)|pyralid moth (generic term)
+corn borer moth|1
+(noun)|corn borer|European corn borer moth|Pyrausta nubilalis|pyralid (generic term)|pyralid moth (generic term)
+corn cake|1
+(noun)|cornbread (generic term)
+corn campion|1
+(noun)|corn cockle|crown-of-the-field|Agrostemma githago|weed (generic term)
+corn chamomile|1
+(noun)|field chamomile|corn mayweed|Anthemis arvensis|composite (generic term)|composite plant (generic term)
+corn chip|1
+(noun)|snack food (generic term)
+corn chowder|1
+(noun)|chowder (generic term)
+corn cockle|1
+(noun)|corn campion|crown-of-the-field|Agrostemma githago|weed (generic term)
+corn dab|1
+(noun)|corn dodger|dodger|cornbread (generic term)
+corn dance|1
+(noun)|rain dance (generic term)
+corn dodger|1
+(noun)|corn dab|dodger|cornbread (generic term)
+corn earworm|1
+(noun)|cotton bollworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm (generic term)
+corn exchange|1
+(noun)|exchange (generic term)
+corn field|1
+(noun)|cornfield|grainfield (generic term)|grain field (generic term)
+corn flake|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+corn fritter|1
+(noun)|fritter (generic term)
+corn gluten|1
+(noun)|gluten (generic term)
+corn gluten feed|1
+(noun)|feed (generic term)|provender (generic term)
+corn lily|1
+(noun)|iridaceous plant (generic term)
+corn liquor|1
+(noun)|moonshine|bootleg|corn whiskey (generic term)|corn whisky (generic term)|corn (generic term)
+corn marigold|1
+(noun)|field marigold|Chrysanthemum segetum|chrysanthemum (generic term)
+corn mayweed|2
+(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+(noun)|corn chamomile|field chamomile|Anthemis arvensis|composite (generic term)|composite plant (generic term)
+corn mint|1
+(noun)|field mint|Mentha arvensis|mint (generic term)
+corn muffin|1
+(noun)|muffin (generic term)|gem (generic term)
+corn oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+corn poppy|1
+(noun)|field poppy|Flanders poppy|Papaver rhoeas|poppy (generic term)
+corn pudding|1
+(noun)|pudding (generic term)
+corn salad|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+corn smut|1
+(noun)|cornsmut|smut (generic term)|smut fungus (generic term)
+corn snake|1
+(noun)|red rat snake|Elaphe guttata|rat snake (generic term)
+corn snow|1
+(noun)|snow (generic term)
+corn speedwell|1
+(noun)|Veronica arvensis|veronica (generic term)|speedwell (generic term)
+corn spurrey|1
+(noun)|corn spurry|Spergula arvensis|weed (generic term)
+corn spurry|1
+(noun)|corn spurrey|Spergula arvensis|weed (generic term)
+corn stalk|1
+(noun)|cornstalk|stalk (generic term)|stem (generic term)
+corn sugar|2
+(noun)|glucose (generic term)
+(noun)|sugar (generic term)|refined sugar (generic term)
+corn syrup|1
+(noun)|syrup (generic term)|sirup (generic term)
+corn tash|1
+(noun)|ashcake|ash cake|cornbread (generic term)
+corn whiskey|1
+(noun)|corn whisky|corn|whiskey (generic term)|whisky (generic term)
+corn whisky|1
+(noun)|corn whiskey|corn|whiskey (generic term)|whisky (generic term)
+cornaceae|1
+(noun)|Cornaceae|family Cornaceae|dogwood family|rosid dicot family (generic term)
+cornbread|1
+(noun)|quick bread (generic term)
+corncob|1
+(noun)|core (generic term)
+corncrake|1
+(noun)|land rail|Crex crex|crake (generic term)
+corncrib|1
+(noun)|crib (generic term)
+cornea|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+corneal|1
+(adj)|membrane|tissue layer (related term)
+corneal graft|1
+(noun)|keratoplasty|corneal transplant|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)|transplant (generic term)|transplantation (generic term)|organ transplant (generic term)
+corneal transplant|1
+(noun)|keratoplasty|corneal graft|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)|transplant (generic term)|transplantation (generic term)|organ transplant (generic term)
+corned|1
+(adj)|cured|preserved (similar term)
+corned beef|1
+(noun)|bully beef|corn beef|beef (generic term)|boeuf (generic term)
+corned beef hash|1
+(noun)|hash (generic term)
+corneille|1
+(noun)|Corneille|Pierre Corneille|dramatist (generic term)|playwright (generic term)|poet (generic term)
+cornel|1
+(noun)|dogwood|dogwood tree|angiospermous tree (generic term)|flowering tree (generic term)
+cornelia otis skinner|1
+(noun)|Skinner|Cornelia Otis Skinner|actress (generic term)
+cornelian|1
+(noun)|carnelian|chalcedony (generic term)|calcedony (generic term)
+cornelian cherry|1
+(noun)|Cornus mas|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornelis jansen|1
+(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+cornelius jansenius|1
+(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+cornelius vanderbilt|1
+(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+cornell|2
+(noun)|Cornell|Katherine Cornell|actress (generic term)
+(noun)|Cornell|Ezra Cornell|businessman (generic term)|man of affairs (generic term)|philanthropist (generic term)|altruist (generic term)
+cornell university|1
+(noun)|Cornell University|university (generic term)
+corneous|1
+(adj)|hornlike|horny|hard (similar term)
+corner|12
+(noun)|nook|area (generic term)
+(noun)|street corner|turning point|intersection (generic term)|crossroad (generic term)|crossway (generic term)|crossing (generic term)|carrefour (generic term)
+(noun)|point (generic term)
+(noun)|recess|recession|niche|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|monopoly (generic term)
+(noun)|box|predicament (generic term)|quandary (generic term)|plight (generic term)
+(noun)|part (generic term)|piece (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|quoin|structure (generic term)|construction (generic term)
+(verb)|control (generic term)|command (generic term)
+(verb)|tree|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|turn (generic term)
+corner kick|1
+(noun)|free kick (generic term)
+corner man|1
+(noun)|end man|minstrel (generic term)
+corner pocket|1
+(noun)|pocket (generic term)
+corner post|1
+(noun)|post (generic term)
+cornerback|1
+(noun)|football player (generic term)|footballer (generic term)
+cornered|1
+(adj)|at bay|trapped|treed|unfree (similar term)
+cornerstone|2
+(noun)|basis|base|foundation|fundament|groundwork|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|stone (generic term)
+cornet|1
+(noun)|horn|trumpet|trump|brass (generic term)|brass instrument (generic term)
+cornetfish|1
+(noun)|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+cornetist|1
+(noun)|trumpeter|musician (generic term)|instrumentalist (generic term)|player (generic term)
+corneum|1
+(noun)|stratum corneum|horny layer|stratum (generic term)
+cornfield|1
+(noun)|corn field|grainfield (generic term)|grain field (generic term)
+cornflour|1
+(noun)|cornstarch|starch (generic term)|amylum (generic term)
+cornflower|2
+(noun)|strawflower|Uvularia grandiflora|bellwort (generic term)|merry bells (generic term)|wild oats (generic term)
+(noun)|bachelor's button|bluebottle|Centaurea cyanus|flower (generic term)
+cornflower aster|1
+(noun)|stokes' aster|Stokesia laevis|flower (generic term)
+cornhusk|1
+(noun)|husk (generic term)
+cornhusker|2
+(noun)|worker (generic term)
+(noun)|Nebraskan|Cornhusker|American (generic term)
+cornhusker state|1
+(noun)|Nebraska|Cornhusker State|NE|American state (generic term)
+cornhusking|2
+(noun)|husking bee|bee (generic term)
+(noun)|denudation (generic term)|stripping (generic term)|uncovering (generic term)|baring (generic term)|husking (generic term)
+cornice|4
+(noun)|valance|valance board|pelmet|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|molding (generic term)|moulding (generic term)
+(noun)|projection (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+cornish|3
+(adj)|Cornish|county (related term)
+(noun)|Cornish|Brythonic (generic term)|Brittanic (generic term)
+(noun)|Cornish|Cornish fowl|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+cornish fowl|1
+(noun)|Cornish|Cornish fowl|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+cornish heath|1
+(noun)|Cornish heath|Erica vagans|erica (generic term)|true heath (generic term)
+cornish pasty|1
+(noun)|Cornish pasty|pasty (generic term)
+cornishman|1
+(noun)|Cornishman|Englishman (generic term)
+cornishwoman|1
+(noun)|Cornishwoman|Englishwoman (generic term)
+cornmeal|1
+(noun)|Indian meal|meal (generic term)
+cornmeal mush|1
+(noun)|mush|hot cereal (generic term)
+cornpone|1
+(noun)|pone|cornbread (generic term)
+cornsmut|1
+(noun)|corn smut|smut (generic term)|smut fungus (generic term)
+cornstalk|1
+(noun)|corn stalk|stalk (generic term)|stem (generic term)
+cornstarch|1
+(noun)|cornflour|starch (generic term)|amylum (generic term)
+cornu|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cornucopia|2
+(noun)|horn of plenty|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+(noun)|profusion|profuseness|richness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+cornus|1
+(noun)|Cornus|genus Cornus|rosid dicot genus (generic term)
+cornus amomum|1
+(noun)|silky cornel|silky dogwood|Cornus amomum|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus canadensis|1
+(noun)|bunchberry|dwarf cornel|crackerberry|pudding berry|Cornus canadensis|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus florida|1
+(noun)|common white dogwood|eastern flowering dogwood|Cornus florida|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus mas|1
+(noun)|cornelian cherry|Cornus mas|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus obliqua|1
+(noun)|silky dogwood|Cornus obliqua|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus sanguinea|1
+(noun)|common European dogwood|red dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornus stolonifera|1
+(noun)|red osier|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+cornwall|1
+(noun)|Cornwall|county (generic term)
+cornwallis|1
+(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer (generic term)|general (generic term)|full general (generic term)
+corny|1
+(adj)|bromidic|platitudinal|platitudinous|unoriginal (similar term)
+corokia|1
+(noun)|Corokia|genus Corokia|rosid dicot genus (generic term)
+corolla|1
+(noun)|coil (generic term)|whorl (generic term)|roll (generic term)|curl (generic term)|curlicue (generic term)|ringlet (generic term)|gyre (generic term)|scroll (generic term)
+corollary|2
+(noun)|consequence (generic term)|aftermath (generic term)
+(noun)|inference (generic term)|illation (generic term)
+corona|6
+(noun)|aureole|radiance (generic term)|glow (generic term)|glowing (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|cigar (generic term)
+corona borealis|1
+(noun)|Corona Borealis|constellation (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+coronach|1
+(noun)|dirge|lament|requiem|threnody|song (generic term)|vocal (generic term)
+coronal|1
+(noun)|wreath|garland|chaplet|lei|flower arrangement (generic term)
+coronal suture|1
+(noun)|sutura coronalis|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+coronary|2
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+(noun)|coronary thrombosis|thrombosis (generic term)
+coronary-artery disease|1
+(noun)|arteriosclerosis|arterial sclerosis|hardening of the arteries|induration of the arteries|sclerosis (generic term)|induration (generic term)
+coronary artery|1
+(noun)|arteria coronaria|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+coronary artery bypass graft|1
+(noun)|coronary bypass|coronary bypass surgery|CABG|open-heart surgery (generic term)
+coronary artery disease|1
+(noun)|atherosclerosis|arteriosclerosis (generic term)|arterial sclerosis (generic term)|hardening of the arteries (generic term)|induration of the arteries (generic term)|coronary-artery disease (generic term)
+coronary bypass|1
+(noun)|coronary bypass surgery|coronary artery bypass graft|CABG|open-heart surgery (generic term)
+coronary bypass surgery|1
+(noun)|coronary bypass|coronary artery bypass graft|CABG|open-heart surgery (generic term)
+coronary care unit|1
+(noun)|intensive care unit (generic term)|ICU (generic term)
+coronary failure|1
+(noun)|heart failure|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)|failure (generic term)
+coronary insufficiency|1
+(noun)|cardiac insufficiency|insufficiency (generic term)
+coronary occlusion|1
+(noun)|occlusion (generic term)
+coronary sinus|1
+(noun)|sinus coronarius|venous sinus (generic term)|sinus (generic term)
+coronary thrombosis|1
+(noun)|coronary|thrombosis (generic term)
+coronate|1
+(verb)|crown|invest (generic term)|vest (generic term)|enthrone (generic term)
+coronation|1
+(noun)|enthronement|enthronization|enthronisation|investiture|initiation (generic term)|induction (generic term)|installation (generic term)
+coroner|1
+(noun)|medical examiner|investigator (generic term)
+coronet|2
+(noun)|crown (generic term)|diadem (generic term)
+(noun)|animal tissue (generic term)
+coroneted|1
+(adj)|highborn|titled|noble (similar term)
+coronilla|1
+(noun)|shrub (generic term)|bush (generic term)
+coronilla varia|1
+(noun)|axseed|crown vetch|Coronilla varia|coronilla (generic term)
+coronion|1
+(noun)|craniometric point (generic term)
+coronoid process|1
+(noun)|processus coronoideus|process (generic term)|outgrowth (generic term)|appendage (generic term)
+coronoid process of the mandible|1
+(noun)|coronoid process (generic term)|processus coronoideus (generic term)
+coropuna|1
+(noun)|Coropuna|mountain peak (generic term)
+corot|1
+(noun)|Corot|Jean Baptiste Camille Corot|painter (generic term)
+corozo|1
+(noun)|corozo palm|palm (generic term)|palm tree (generic term)
+corozo palm|1
+(noun)|corozo|palm (generic term)|palm tree (generic term)
+corp|1
+(noun)|corporation|firm (generic term)|house (generic term)|business firm (generic term)
+corporal|3
+(adj)|bodily|corporeal|somatic|physical (similar term)
+(adj)|bodied|corporate|embodied|incarnate|corporeal (similar term)|material (similar term)
+(noun)|noncommissioned officer (generic term)|noncom (generic term)
+corporal punishment|1
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+corporality|1
+(noun)|materiality|physicalness|corporeality|quality (generic term)|incorporeality (antonym)|immateriality (antonym)
+corporate|4
+(adj)|firm|house|business firm (related term)
+(adj)|bodied|corporal|embodied|incarnate|corporeal (similar term)|material (similar term)
+(adj)|collective|joint (similar term)
+(adj)|incorporated|organized (similar term)
+corporate bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+corporate executive|1
+(noun)|business executive|executive (generic term)|executive director (generic term)
+corporate finance|1
+(noun)|finance (generic term)
+corporate investor|1
+(noun)|company (generic term)
+corporate trust|1
+(noun)|trust|combine|cartel|consortium (generic term)|pool (generic term)|syndicate (generic term)
+corporation|2
+(noun)|corp|firm (generic term)|house (generic term)|business firm (generic term)
+(noun)|pot|potbelly|bay window|tummy|belly (generic term)|paunch (generic term)
+corporation law|1
+(noun)|jurisprudence (generic term)|law (generic term)|legal philosophy (generic term)
+corporeal|2
+(adj)|material|bodily (similar term)|bodied (similar term)|corporal (similar term)|corporate (similar term)|embodied (similar term)|incarnate (similar term)|reincarnate (similar term)|bodied (related term)|incorporeal (antonym)
+(adj)|bodily|corporal|somatic|physical (similar term)
+corporeality|1
+(noun)|materiality|physicalness|corporality|quality (generic term)|incorporeality (antonym)|immateriality (antonym)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+corps|2
+(noun)|army corps|army unit (generic term)
+(noun)|body (generic term)
+corps de ballet|1
+(noun)|ensemble|chorus (generic term)|chorus line (generic term)
+corps diplomatique|1
+(noun)|diplomatic service|diplomatic corps|corps (generic term)
+corpse|1
+(noun)|cadaver|stiff|clay|remains|body (generic term)|dead body (generic term)
+corpulence|1
+(noun)|overweight|stoutness|adiposis|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+corpulency|1
+(noun)|fleshiness|obesity|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+corpulent|1
+(adj)|obese|weighty|rotund|fat (similar term)
+corpus|3
+(noun)|principal|principal sum|capital (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|part (generic term)|piece (generic term)
+corpus amygdaloideum|1
+(noun)|amygdala|amygdaloid nucleus|basal ganglion (generic term)
+corpus callosum|1
+(noun)|commissure (generic term)
+corpus christi|2
+(noun)|Corpus Christi|Christian holy day (generic term)
+(noun)|Corpus Christi|city (generic term)|metropolis (generic term)|urban center (generic term)
+corpus delicti|1
+(noun)|evidence (generic term)
+corpus geniculatum laterale|1
+(noun)|lateral geniculate body|geniculate body (generic term)
+corpus geniculatum mediale|1
+(noun)|medial geniculate body|geniculate body (generic term)
+corpus luteum|1
+(noun)|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+corpus mamillare|1
+(noun)|mamillary body|mammillary body|neural structure (generic term)
+corpus sternum|1
+(noun)|gladiolus|bone (generic term)|os (generic term)
+corpus striatum|1
+(noun)|striatum|striate body|basal ganglion (generic term)
+corpuscle|2
+(noun)|atom|molecule|particle|mote|speck|material (generic term)|stuff (generic term)
+(noun)|blood cell|blood corpuscle|somatic cell (generic term)|vegetative cell (generic term)
+corpuscular|1
+(adj)|somatic cell|vegetative cell (related term)
+corpuscular-radiation pressure|1
+(noun)|radiation pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+corpuscular radiation|1
+(noun)|particulate radiation|radiation (generic term)|radioactivity (generic term)
+corpuscular theory|1
+(noun)|corpuscular theory of light|scientific theory (generic term)|wave theory of light (antonym)|wave theory (antonym)
+corpuscular theory of light|1
+(noun)|corpuscular theory|scientific theory (generic term)|wave theory of light (antonym)|wave theory (antonym)
+corrade|1
+(verb)|abrade|abrase|rub down|rub off|wear away (generic term)|wear off (generic term)
+corral|4
+(noun)|cow pen|cattle pen|pen (generic term)
+(verb)|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+corrasion|1
+(noun)|abrasion|attrition|detrition|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+correct|11
+(adj)|right|accurate (similar term)|exact (similar term)|precise (similar term)|letter-perfect (similar term)|word-perfect (similar term)|straight (similar term)|accurate (related term)|proper (related term)|true (related term)|wrong (antonym)|incorrect (antonym)
+(adj)|right|proper (similar term)
+(adj)|right|right-minded (similar term)|wrong (antonym)
+(verb)|rectify|right|change by reversal (generic term)|turn (generic term)|reverse (generic term)|falsify (antonym)
+(verb)|right|compensate|redress|change (generic term)|alter (generic term)|modify (generic term)|compensate (related term)|wrong (antonym)
+(verb)|chastise|castigate|objurgate|chasten|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+(verb)|compensate|counterbalance|make up|even out|even off|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|discipline|sort out|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|decline|slump|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|adjust|set|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|treat (generic term)|care for (generic term)
+correctable|2
+(adj)|reversible (similar term)
+(adj)|amendable|corrigible (similar term)
+corrected|2
+(adj)|aplanatic (similar term)|apochromatic (similar term)|rectified (similar term)|uncorrected (antonym)
+(adj)|chastised|disciplined|punished (similar term)
+correction|7
+(noun)|rectification|improvement (generic term)
+(noun)|fudge factor|indefinite quantity (generic term)
+(noun)|editing (generic term)|redaction (generic term)
+(noun)|chastening|chastisement|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|drop (generic term)|dip (generic term)|fall (generic term)|free fall (generic term)
+(noun)|discipline|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(noun)|therapy (generic term)
+correctional|1
+(adj)|punitive (similar term)|punitory (similar term)
+correctional institution|1
+(noun)|penal institution (generic term)|penal facility (generic term)
+correctional rehabilitation|1
+(noun)|rehabilitation (generic term)
+corrections|2
+(noun)|department of corrections|local department (generic term)|department of local government (generic term)
+(noun)|social control (generic term)
+correctitude|1
+(noun)|propriety|properness|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)|improperness (antonym)|impropriety (antonym)
+corrective|3
+(adj)|disciplinary|disciplinal|nonindulgent (similar term)|strict (similar term)
+(adj)|bettering (similar term)
+(noun)|restorative|device (generic term)
+correctly|1
+(adv)|right|aright|wrongly (antonym)|incorrectly (antonym)
+correctness|2
+(noun)|rightness|quality (generic term)|wrongness (antonym)|incorrectness (antonym)
+(noun)|propriety (generic term)|properness (generic term)|correctitude (generic term)|incorrectness (antonym)
+correggio|1
+(noun)|Correggio|Antonio Allegri da Correggio|old master (generic term)
+corregidor|1
+(noun)|Bataan|Corregidor|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+correlate|4
+(adj)|correlative|correlated|related (similar term)|related to (similar term)
+(noun)|correlative|variable (generic term)|variable quantity (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+correlated|1
+(adj)|correlative|correlate|related (similar term)|related to (similar term)
+correlation|3
+(noun)|correlativity|reciprocality (generic term)|reciprocity (generic term)
+(noun)|correlation coefficient|coefficient of correlation|parametric statistic (generic term)
+(noun)|correlational statistics|statistics (generic term)
+correlation coefficient|1
+(noun)|coefficient of correlation|correlation|parametric statistic (generic term)
+correlation matrix|1
+(noun)|matrix (generic term)
+correlation table|1
+(noun)|table (generic term)|tabular array (generic term)
+correlational|1
+(adj)|reciprocality|reciprocity (related term)
+correlational analysis|1
+(noun)|multivariate analysis (generic term)
+correlational statistics|1
+(noun)|correlation|statistics (generic term)
+correlative|3
+(adj)|correlate|correlated|related (similar term)|related to (similar term)
+(adj)|reciprocal (similar term)|mutual (similar term)
+(noun)|correlate|variable (generic term)|variable quantity (generic term)
+correlativity|1
+(noun)|correlation|reciprocality (generic term)|reciprocity (generic term)
+correspond|3
+(verb)|match|fit|check|jibe|gibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|equate|equal (generic term)|be (generic term)
+(verb)|represent|stand for|equal (generic term)|be (generic term)
+correspondence|6
+(noun)|written communication (generic term)|written language (generic term)|first class (generic term)|1st class (generic term)|first-class mail (generic term)|1st-class mail (generic term)
+(noun)|agreement|compatibility (generic term)
+(noun)|commensurateness|proportionateness|proportionality (generic term)
+(noun)|mapping|map|function (generic term)|mathematical function (generic term)
+(noun)|symmetry|symmetricalness|balance|spatial property (generic term)|spatiality (generic term)|asymmetry (antonym)
+(noun)|parallelism|similarity (generic term)
+correspondence course|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+correspondence school|1
+(noun)|school (generic term)
+correspondent|3
+(adj)|analogous|similar (similar term)
+(noun)|letter writer|communicator (generic term)
+(noun)|newspaperman|newspaperwoman|newswriter|pressman|journalist (generic term)
+corresponding|4
+(adj)|related (similar term)|related to (similar term)
+(adj)|similar (similar term)
+(adj)|comparable|like|same (similar term)
+(adj)|proportionate|in proportion to|commensurate (similar term)
+corrida|1
+(noun)|bullfight|spectacle (generic term)
+corridor|1
+(noun)|passageway (generic term)
+corrie|1
+(noun)|cirque|cwm|basin (generic term)
+corrigenda|1
+(noun)|list (generic term)|listing (generic term)
+corrigendum|1
+(noun)|error (generic term)|mistake (generic term)
+corrigible|1
+(adj)|amendable (similar term)|correctable (similar term)|improvable (similar term)|redeemable (similar term)|reformable (similar term)|incorrigible (antonym)
+corroborant|1
+(adj)|invigorating (similar term)
+corroborate|3
+(verb)|confirm|sustain|substantiate|support|affirm|negate (antonym)
+(verb)|validate|confirm (generic term)|reassert (generic term)
+(verb)|underpin|bear out|support|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+corroborated|1
+(adj)|substantiated|verified|supported (similar term)
+corroborating evidence|1
+(noun)|evidence (generic term)
+corroboration|1
+(noun)|documentation|certification|confirmation (generic term)
+corroborative|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroboratory|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+corroboratory|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|substantiating|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+corrode|2
+(verb)|eat|rust|damage (generic term)
+(verb)|rust|decay (generic term)|crumble (generic term)|delapidate (generic term)
+corroded|1
+(adj)|unsound (similar term)
+corrodentia|1
+(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order (generic term)
+corroding|1
+(noun)|corrosion|erosion|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+corrosion|2
+(noun)|deterioration (generic term)|impairment (generic term)
+(noun)|corroding|erosion|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+corrosion-resistant|1
+(adj)|impervious (similar term)|imperviable (similar term)
+corrosive|2
+(adj)|caustic|erosive|vitriolic|mordant|destructive (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+corrosive sublimate|1
+(noun)|mercuric chloride|mercury chloride|bichloride of mercury|sublimate (generic term)
+corrugate|1
+(verb)|fold (generic term)|fold up (generic term)|turn up (generic term)
+corrugated|1
+(adj)|furrowed (similar term)
+corrugated board|1
+(noun)|corrugated cardboard|cardboard (generic term)|composition board (generic term)
+corrugated cardboard|1
+(noun)|corrugated board|cardboard (generic term)|composition board (generic term)
+corrugated fastener|1
+(noun)|wiggle nail|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+corrugated iron|1
+(noun)|sheet metal (generic term)
+corrugation|2
+(noun)|ridge (generic term)
+(noun)|change of shape (generic term)
+corrupt|8
+(adj)|corrupted (similar term)|debased (similar term)|vitiated (similar term)|corruptible (similar term)|bribable (similar term)|dishonest (similar term)|purchasable (similar term)|venal (similar term)|depraved (similar term)|immoral (similar term)|perverse (similar term)|perverted (similar term)|reprobate (similar term)|dirty (similar term)|sordid (similar term)|Praetorian (similar term)|Pretorian (similar term)|putrid (similar term)|sold-out (similar term)|incorrupt (antonym)
+(adj)|crooked|dishonest (similar term)|sneaky (similar term)|underhand (similar term)|underhanded (similar term)|dishonest (related term)|dishonorable (related term)|unlawful (related term)|straight (antonym)
+(adj)|corrupted|imperfect (similar term)
+(adj)|tainted|rotten (similar term)
+(verb)|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|spoil|modify (generic term)
+(verb)|bribe|buy|grease one's palms|pay (generic term)
+(verb)|defile|sully|taint|cloud|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+corrupted|2
+(adj)|corrupt|imperfect (similar term)
+(adj)|debased|vitiated|corrupt (similar term)
+corruptedly|1
+(adv)|corruptly
+corruptibility|1
+(noun)|immorality (generic term)|incorruptibility (antonym)
+corruptible|1
+(adj)|bribable|dishonest|purchasable|venal|corrupt (similar term)
+corrupting|3
+(adj)|seductive (similar term)
+(adj)|degrading|noxious (similar term)|harmful (similar term)
+(adj)|contaminating|infectious (similar term)
+corruption|6
+(noun)|corruptness|dishonesty (generic term)|incorruptness (antonym)
+(noun)|putrescence|putridness|rottenness|putrefaction (generic term)|rot (generic term)
+(noun)|decay (generic term)
+(noun)|degeneracy|depravation|depravity|putrefaction|immorality (generic term)
+(noun)|subversion|degradation (generic term)|debasement (generic term)
+(noun)|inducement (generic term)|inducing (generic term)
+corruptive|1
+(adj)|perversive|pestiferous|evil (similar term)
+corruptly|1
+(adv)|corruptedly
+corruptness|2
+(noun)|dishonor (generic term)|dishonour (generic term)
+(noun)|corruption|dishonesty (generic term)|incorruptness (antonym)
+corsage|1
+(noun)|bouquet|posy|nosegay|flower arrangement (generic term)
+corsair|2
+(noun)|Barbary pirate|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+(noun)|pirate (generic term)|pirate ship (generic term)
+corse|2
+(noun)|Corse|Corsica|island (generic term)
+(noun)|Corse|Corsica|French region (generic term)
+corselet|1
+(noun)|corslet|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+corset|2
+(noun)|girdle|stays|foundation garment (generic term)|foundation (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+corsica|2
+(noun)|Corse|Corsica|island (generic term)
+(noun)|Corse|Corsica|French region (generic term)
+corsican|1
+(adj)|Corsican|French region (related term)
+corsican army|1
+(noun)|Armata Corsa|Corsican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+corslet|1
+(noun)|corselet|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+cortaderia|1
+(noun)|Cortaderia|genus Cortaderia|monocot genus (generic term)|liliopsid genus (generic term)
+cortaderia richardii|1
+(noun)|plumed tussock|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass (generic term)
+cortaderia selloana|1
+(noun)|pampas grass|Cortaderia selloana|grass (generic term)
+cortef|1
+(noun)|hydrocortisone|cortisol|Hydrocortone|Cortef|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+cortege|2
+(noun)|procession (generic term)
+(noun)|retinue|suite|entourage|gathering (generic term)|assemblage (generic term)
+cortes|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+cortex|2
+(noun)|cerebral cortex|cerebral mantle|pallium|neural structure (generic term)
+(noun)|animal tissue (generic term)|plant tissue (generic term)|medulla (antonym)
+cortez|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+cortical|1
+(adj)|animal tissue|plant tissue (related term)
+cortical area|1
+(noun)|cortical region|area (generic term)|region (generic term)
+cortical epilepsy|1
+(noun)|focal epilepsy|epilepsy (generic term)
+cortical potential|1
+(noun)|brainwave|brain wave|bioelectricity (generic term)
+cortical region|1
+(noun)|cortical area|area (generic term)|region (generic term)
+corticifugal|1
+(adj)|corticoefferent|corticofugal|efferent (similar term)|motorial (similar term)
+corticipetal|1
+(adj)|corticoafferent|afferent (similar term)
+corticium|1
+(noun)|Corticium|genus Corticium|fungus genus (generic term)
+corticium salmonicolor|1
+(noun)|pink disease fungus|Corticium salmonicolor|fungus (generic term)
+corticium solani|1
+(noun)|bottom rot fungus|Corticium solani|fungus (generic term)
+corticoafferent|1
+(adj)|corticipetal|afferent (similar term)
+corticoefferent|1
+(adj)|corticofugal|corticifugal|efferent (similar term)|motorial (similar term)
+corticofugal|1
+(adj)|corticoefferent|corticifugal|efferent (similar term)|motorial (similar term)
+corticoid|1
+(noun)|corticosteroid|adrenal cortical steroid|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+corticospinal tract|1
+(noun)|pyramidal tract|pyramidal motor system|motor nerve (generic term)|efferent nerve (generic term)|efferent (generic term)
+corticosteroid|1
+(noun)|corticoid|adrenal cortical steroid|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+corticosterone|1
+(noun)|glucocorticoid (generic term)
+corticotrophin|1
+(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotropin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+corticotropin|1
+(noun)|adrenocorticotropic hormone|adrenocorticotrophic hormone|ACTH|adrenocorticotropin|adrenocorticotrophin|corticotrophin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+cortina|1
+(noun)|partial veil (generic term)|velum (generic term)
+cortinariaceae|1
+(noun)|Cortinariaceae|family Cortinariaceae|fungus family (generic term)
+cortinarius|1
+(noun)|Cortinarius|genus Cortinarius|fungus genus (generic term)
+cortinarius armillatus|1
+(noun)|Cortinarius armillatus|agaric (generic term)
+cortinarius atkinsonianus|1
+(noun)|Cortinarius atkinsonianus|agaric (generic term)
+cortinarius corrugatus|1
+(noun)|Cortinarius corrugatus|agaric (generic term)
+cortinarius gentilis|1
+(noun)|Cortinarius gentilis|agaric (generic term)
+cortinarius mutabilis|1
+(noun)|Cortinarius mutabilis|purple-staining Cortinarius|agaric (generic term)
+cortinarius semisanguineus|1
+(noun)|Cortinarius semisanguineus|agaric (generic term)
+cortinarius subfoetidus|1
+(noun)|Cortinarius subfoetidus|agaric (generic term)
+cortinarius violaceus|1
+(noun)|Cortinarius violaceus|agaric (generic term)
+cortisol|1
+(noun)|hydrocortisone|Hydrocortone|Cortef|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+cortisone|1
+(noun)|Cortone Acetate|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|ketosteroid (generic term)
+cortland|1
+(noun)|Cortland|eating apple (generic term)|dessert apple (generic term)
+cortone acetate|1
+(noun)|cortisone|Cortone Acetate|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|ketosteroid (generic term)
+corundom|1
+(noun)|corundum|mineral (generic term)
+corundum|1
+(noun)|corundom|mineral (generic term)
+coruscant|1
+(adj)|aglitter|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+coruscate|2
+(verb)|sparkle|scintillate|reflect (generic term)|shine (generic term)
+(verb)|sparkle|scintillate|be (generic term)
+coruscation|2
+(noun)|glitter|sparkle|flash (generic term)
+(noun)|brilliance (generic term)|genius (generic term)
+corvee|1
+(noun)|labor (generic term)|labour (generic term)|toil (generic term)
+corvette|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+corvidae|1
+(noun)|Corvidae|family Corvidae|bird family (generic term)
+corvine|1
+(adj)|corvine bird (related term)
+corvine bird|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+corvus|2
+(noun)|Corvus|Crow|constellation (generic term)
+(noun)|Corvus|genus Corvus|bird genus (generic term)
+corvus brachyrhyncos|1
+(noun)|American crow|Corvus brachyrhyncos|crow (generic term)
+corvus corax|1
+(noun)|raven|Corvus corax|corvine bird (generic term)
+corvus frugilegus|1
+(noun)|rook|Corvus frugilegus|corvine bird (generic term)
+corvus monedula|1
+(noun)|jackdaw|daw|Corvus monedula|corvine bird (generic term)
+coryanthes|1
+(noun)|Coryanthes|genus Coryanthes|monocot genus (generic term)|liliopsid genus (generic term)
+corydalidae|1
+(noun)|Corydalidae|family Corydalidae|arthropod family (generic term)
+corydalis|3
+(noun)|flower (generic term)
+(noun)|Corydalis|genus Corydalis|dilleniid dicot genus (generic term)
+(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus (generic term)
+corydalis claviculata|1
+(noun)|climbing corydalis|Corydalis claviculata|Fumaria claviculata|vine (generic term)
+corydalis sempervirens|1
+(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis (generic term)|genus Corydalis (generic term)
+corydalis solida|1
+(noun)|fumewort|fumeroot|Corydalis solida|Corydalis (generic term)|genus Corydalis (generic term)
+corydalus|1
+(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus (generic term)
+corydalus cornutus|1
+(noun)|dobson|dobsonfly|dobson fly|Corydalus cornutus|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+corylaceae|1
+(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family (generic term)
+corylopsis|1
+(noun)|Corylopsis|genus Corylopsis|plant genus (generic term)
+corylus|1
+(noun)|Corylus|genus Corylus|hamamelid dicot genus (generic term)
+corylus americana|1
+(noun)|American hazel|Corylus americana|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+corylus avellana|1
+(noun)|cobnut|filbert|Corylus avellana|Corylus avellana grandis|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+corylus avellana grandis|1
+(noun)|cobnut|filbert|Corylus avellana|Corylus avellana grandis|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+corylus cornuta|1
+(noun)|beaked hazelnut|Corylus cornuta|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+corymb|1
+(noun)|inflorescence (generic term)
+corymbose|1
+(adj)|inflorescence (related term)
+corynebacteriaceae|1
+(noun)|Corynebacteriaceae|family Corynebacteriaceae|bacteria family (generic term)
+corynebacterium|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+corynebacterium diphtheriae|1
+(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium (generic term)
+corypha|1
+(noun)|Corypha|genus Corypha|monocot genus (generic term)|liliopsid genus (generic term)
+corypha gebanga|1
+(noun)|gebang palm|Corypha utan|Corypha gebanga|fan palm (generic term)
+corypha umbraculifera|1
+(noun)|talipot|talipot palm|Corypha umbraculifera|fan palm (generic term)
+corypha utan|1
+(noun)|gebang palm|Corypha utan|Corypha gebanga|fan palm (generic term)
+coryphaena equisetis|1
+(noun)|Coryphaena equisetis|dolphinfish (generic term)|dolphin (generic term)|mahimahi (generic term)
+coryphaena hippurus|1
+(noun)|Coryphaena hippurus|dolphinfish (generic term)|dolphin (generic term)|mahimahi (generic term)
+coryphaenidae|1
+(noun)|Coryphaenidae|family Coryphaenidae|fish family (generic term)
+coryphantha|1
+(noun)|cactus (generic term)
+corythosaur|1
+(noun)|corythosaurus|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+corythosaurus|1
+(noun)|corythosaur|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+coryza|1
+(noun)|rhinitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+cos|2
+(noun)|cosine|trigonometric function (generic term)|circular function (generic term)
+(noun)|cos lettuce|romaine|romaine lettuce|lettuce (generic term)
+cos lettuce|2
+(noun)|romaine lettuce|Lactuca sativa longifolia|lettuce (generic term)
+(noun)|cos|romaine|romaine lettuce|lettuce (generic term)
+cosa nostra|1
+(noun)|Mafia|Maffia|Cosa Nostra|syndicate (generic term)|crime syndicate (generic term)|mob (generic term)|family (generic term)
+coscoroba|1
+(noun)|swan (generic term)
+cosec|1
+(noun)|cosecant|trigonometric function (generic term)|circular function (generic term)
+cosecant|1
+(noun)|cosec|trigonometric function (generic term)|circular function (generic term)
+coseismal|1
+(adj)|coseismic|unstable (similar term)
+coseismic|1
+(adj)|coseismal|unstable (similar term)
+cosey|1
+(noun)|cosy|tea cosy|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+cosh|2
+(noun)|blackjack|sap|bludgeon (generic term)
+(verb)|hit (generic term)
+cosher|1
+(adj)|kosher|clean (similar term)
+cosign|2
+(verb)|co-sign|validate (generic term)|formalize (generic term)|formalise (generic term)
+(verb)|co-sign|endorse (generic term)|indorse (generic term)
+cosignatory|2
+(adj)|joint (similar term)
+(noun)|cosigner|signer (generic term)|signatory (generic term)
+cosigner|2
+(noun)|cosignatory|signer (generic term)|signatory (generic term)
+(noun)|signer (generic term)|signatory (generic term)
+cosily|1
+(adv)|cozily
+cosimo de medici|1
+(noun)|Cosimo de Medici|Cosimo the Elder|financier (generic term)|moneyman (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+cosimo the elder|1
+(noun)|Cosimo de Medici|Cosimo the Elder|financier (generic term)|moneyman (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+cosine|1
+(noun)|cos|trigonometric function (generic term)|circular function (generic term)
+cosiness|1
+(noun)|coziness|snugness|comfort (generic term)|comfortableness (generic term)
+cosmea|1
+(noun)|cosmos|flower (generic term)
+cosmetic|3
+(adj)|decorative|ornamental|nonfunctional (similar term)
+(adj)|enhancive|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+(noun)|toiletry (generic term)|toilet article (generic term)
+cosmetic dentistry|1
+(noun)|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+cosmetic surgeon|1
+(noun)|plastic surgeon|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+cosmetic surgery|1
+(noun)|face lift|facelift|lift|face lifting|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+cosmetician|2
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|beautician|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+cosmetologist|1
+(noun)|expert (generic term)
+cosmetology|1
+(noun)|practice (generic term)
+cosmic|2
+(adj)|natural object (related term)
+(adj)|large (similar term)|big (similar term)
+cosmic background radiation|1
+(noun)|CBR|cosmic microwave background radiation|CMBR|cosmic microwave background|CMB|cosmic radiation (generic term)
+cosmic dust|1
+(noun)|cloud (generic term)
+cosmic microwave background|1
+(noun)|cosmic background radiation|CBR|cosmic microwave background radiation|CMBR|CMB|cosmic radiation (generic term)
+cosmic microwave background radiation|1
+(noun)|cosmic background radiation|CBR|CMBR|cosmic microwave background|CMB|cosmic radiation (generic term)
+cosmic radiation|1
+(noun)|radiation (generic term)
+cosmic ray|1
+(noun)|ionizing radiation (generic term)
+cosmic string|1
+(noun)|string|elementary particle (generic term)|fundamental particle (generic term)
+cosmic time|1
+(noun)|time (generic term)
+cosmocampus|1
+(noun)|Cosmocampus|genus Cosmocampus|fish genus (generic term)
+cosmocampus profundus|1
+(noun)|deepwater pipefish|Cosmocampus profundus|pipefish (generic term)|needlefish (generic term)
+cosmogenic|1
+(adj)|cosmologic|cosmological|cosmogonic|cosmogonical|cosmogenical|astrophysics (related term)
+cosmogenical|1
+(adj)|cosmologic|cosmological|cosmogonic|cosmogonical|cosmogenic|astrophysics (related term)
+cosmogeny|1
+(noun)|cosmology|cosmogony|astrophysics (generic term)
+cosmogonic|1
+(adj)|cosmologic|cosmological|cosmogonical|cosmogenic|cosmogenical|astrophysics (related term)
+cosmogonical|1
+(adj)|cosmologic|cosmological|cosmogonic|cosmogenic|cosmogenical|astrophysics (related term)
+cosmogony|1
+(noun)|cosmology|cosmogeny|astrophysics (generic term)
+cosmographer|1
+(noun)|cosmographist|scientist (generic term)|man of science (generic term)
+cosmographist|1
+(noun)|cosmographer|scientist (generic term)|man of science (generic term)
+cosmography|2
+(noun)|natural science (generic term)
+(noun)|representation (generic term)
+cosmolatry|1
+(noun)|worship (generic term)
+cosmologic|2
+(adj)|cosmological|cosmogonic|cosmogonical|cosmogenic|cosmogenical|astrophysics (related term)
+(adj)|cosmological|metaphysics (related term)
+cosmological|2
+(adj)|cosmologic|cosmogonic|cosmogonical|cosmogenic|cosmogenical|astrophysics (related term)
+(adj)|cosmologic|metaphysics (related term)
+cosmological constant|1
+(noun)|constant (generic term)
+cosmologist|1
+(noun)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+cosmology|2
+(noun)|metaphysics (generic term)
+(noun)|cosmogony|cosmogeny|astrophysics (generic term)
+cosmonaut|1
+(noun)|astronaut|spaceman|traveler (generic term)|traveller (generic term)
+cosmopolitan|4
+(adj)|widely distributed|endemic (antonym)
+(adj)|traveled (similar term)|travelled (similar term)|provincial (antonym)
+(adj)|ecumenical|oecumenical|general|universal|worldwide|world-wide|comprehensive (similar term)
+(noun)|cosmopolite|sophisticate (generic term)|man of the world (generic term)
+cosmopolite|1
+(noun)|cosmopolitan|sophisticate (generic term)|man of the world (generic term)
+cosmos|2
+(noun)|universe|existence|creation|world|macrocosm|natural object (generic term)
+(noun)|cosmea|flower (generic term)
+cosmotron|1
+(noun)|synchrotron (generic term)
+cosponsor|1
+(verb)|sponsor (generic term)|patronize (generic term)|patronise (generic term)
+coss|1
+(noun)|kos|linear unit (generic term)
+cossack|1
+(noun)|Cossack|Slav (generic term)
+cosset|1
+(verb)|pamper|featherbed|cocker|baby|coddle|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+cost|5
+(noun)|outgo (generic term)|expenditure (generic term)|outlay (generic term)
+(noun)|monetary value|price|value (generic term)
+(noun)|price|toll|value (generic term)
+(verb)|be|be (generic term)
+(verb)|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+cost-benefit analysis|1
+(noun)|analysis (generic term)|analytic thinking (generic term)
+cost-effective|1
+(adj)|cost-efficient|efficient (similar term)
+cost-efficient|1
+(adj)|cost-effective|efficient (similar term)
+cost-of-living allowance|1
+(noun)|allowance (generic term)|adjustment (generic term)
+cost-of-living benefit|1
+(noun)|benefit (generic term)
+cost-of-living index|1
+(noun)|consumer price index|CPI|price index (generic term)|price level (generic term)
+cost-plus|1
+(adj)|indeterminate (similar term)|undetermined (similar term)
+cost-plus contract|1
+(noun)|contract (generic term)
+cost-pull inflation|1
+(noun)|inflation (generic term)|rising prices (generic term)
+cost accountant|1
+(noun)|accountant (generic term)|comptroller (generic term)|controller (generic term)
+cost accounting|1
+(noun)|accountancy (generic term)|accounting (generic term)
+cost analysis|1
+(noun)|analysis (generic term)
+cost cutting|1
+(noun)|cut (generic term)
+cost increase|1
+(noun)|rise|boost|hike|increase (generic term)|increment (generic term)
+cost ledger|1
+(noun)|ledger (generic term)|leger (generic term)|account book (generic term)|book of account (generic term)|book (generic term)
+cost of capital|1
+(noun)|capital cost|opportunity cost (generic term)
+cost of living|1
+(noun)|cost (generic term)
+cost overrun|1
+(noun)|cost (generic term)
+costa|2
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|rib|bone (generic term)|os (generic term)
+costa rica|1
+(noun)|Costa Rica|Republic of Costa Rica|Central American country (generic term)|Central American nation (generic term)
+costa rican|2
+(adj)|Costa Rican|Central American country|Central American nation (related term)
+(noun)|Costa Rican|Central American (generic term)
+costa rican colon|1
+(noun)|colon|Costa Rican colon|Costa Rican monetary unit (generic term)
+costa rican monetary unit|1
+(noun)|Costa Rican monetary unit|monetary unit (generic term)
+costal|1
+(adj)|bone|os (related term)
+costal cartilage|1
+(noun)|cartilaginous structure (generic term)
+costal groove|1
+(noun)|groove (generic term)|vallecula (generic term)
+costalgia|1
+(noun)|pleurodynia|pleuralgia|pain (generic term)|hurting (generic term)
+costanoan|1
+(noun)|Costanoan|Penutian (generic term)
+costate|2
+(adj)|ribbed|rough (similar term)|unsmooth (similar term)
+(adj)|ribbed (similar term)
+costermonger|1
+(noun)|barrow-man|barrow-boy|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+costia|1
+(noun)|Costia necatrix|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+costia necatrix|1
+(noun)|costia|Costia necatrix|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+costiasis|1
+(noun)|animal disease (generic term)
+costing|1
+(noun)|cost accounting (generic term)
+costive|1
+(adj)|binding (similar term)|constipating (similar term)|laxative (antonym)
+costless|1
+(adj)|complimentary|free|gratis|gratuitous|unpaid (similar term)
+costliness|1
+(noun)|dearness|preciousness|expensiveness (generic term)
+costly|2
+(adj)|dearly-won|expensive (similar term)
+(adj)|dear|high-priced|pricey|pricy|expensive (similar term)
+costmary|2
+(noun)|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+costoaxillary vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+costochondritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+costs|1
+(noun)|reimbursement (generic term)
+costume|3
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+(verb)|dress up|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+costume designer|1
+(noun)|costumier|costumer|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+costumed|1
+(adj)|clothed (similar term)|clad (similar term)
+costumer|1
+(noun)|costumier|costume designer|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+costumier|1
+(noun)|costumer|costume designer|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+costus oil|1
+(noun)|essential oil (generic term)|volatile oil (generic term)
+costusroot|1
+(noun)|Saussurea costus|Saussurea lappa|herb (generic term)|herbaceous plant (generic term)
+cosy|2
+(adj)|cozy|snug|comfortable (similar term)|comfy (similar term)
+(noun)|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+cot|3
+(noun)|fingerstall|sheath (generic term)
+(noun)|crib|baby bed (generic term)|baby's bed (generic term)
+(noun)|camp bed|bed (generic term)
+cot death|1
+(noun)|sudden infant death syndrome|SIDS|infant death|crib death|death (generic term)|sleep apnea (generic term)
+cotacachi|1
+(noun)|Cotacachi|volcano (generic term)
+cotan|1
+(noun)|cotangent|trigonometric function (generic term)|circular function (generic term)
+cotangent|1
+(noun)|cotan|trigonometric function (generic term)|circular function (generic term)
+cote|1
+(noun)|shelter (generic term)
+cote d'azur|1
+(noun)|French Riviera|Cote d'Azur|French region (generic term)
+cote d'ivoire|1
+(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country (generic term)|African nation (generic term)
+cote d'ivoire franc|1
+(noun)|Ivory Coast franc|Cote d'Ivoire franc|franc (generic term)
+cotenant|1
+(noun)|tenant (generic term)
+coterie|1
+(noun)|clique|ingroup|inner circle|pack|camp|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+coterminous|1
+(adj)|coextensive|conterminous|commensurate (similar term)
+cotes de provence|1
+(noun)|Cotes de Provence|wine (generic term)|vino (generic term)
+cothromboplastin|1
+(noun)|proconvertin|stable factor|factor VII|coagulation factor (generic term)|clotting factor (generic term)
+cotilion|2
+(noun)|cotillion|ball (generic term)|formal (generic term)
+(noun)|cotillion|ballroom dancing (generic term)|ballroom dance (generic term)
+cotillion|2
+(noun)|cotilion|ball (generic term)|formal (generic term)
+(noun)|cotilion|ballroom dancing (generic term)|ballroom dance (generic term)
+cotinga|1
+(noun)|chatterer|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+cotingidae|1
+(noun)|Cotingidae|family Cotingidae|bird family (generic term)
+cotinus|1
+(noun)|Cotinus|genus Cotinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+cotinus americanus|1
+(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree (generic term)|smoke bush (generic term)
+cotinus coggygria|1
+(noun)|Venetian sumac|wig tree|Cotinus coggygria|smoke tree (generic term)|smoke bush (generic term)
+cotinus obovatus|1
+(noun)|American smokewood|chittamwood|Cotinus americanus|Cotinus obovatus|smoke tree (generic term)|smoke bush (generic term)
+cotoneaster|1
+(noun)|shrub (generic term)|bush (generic term)
+cotoneaster dammeri|1
+(noun)|Cotoneaster dammeri|cotoneaster (generic term)
+cotoneaster horizontalis|1
+(noun)|Cotoneaster horizontalis|cotoneaster (generic term)
+cotonou|1
+(noun)|Cotonou|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cotopaxi|1
+(noun)|Cotopaxi|volcano (generic term)
+cotswold|1
+(noun)|Cotswold|domestic sheep (generic term)|Ovis aries (generic term)
+cotswold hills|1
+(noun)|Cotswolds|Cotswold Hills|hill (generic term)
+cotswolds|1
+(noun)|Cotswolds|Cotswold Hills|hill (generic term)
+cottage|1
+(noun)|bungalow|house (generic term)
+cottage cheese|1
+(noun)|pot cheese|farm cheese|farmer's cheese|cheese (generic term)
+cottage dweller|1
+(noun)|cottager|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+cottage industry|1
+(noun)|industry (generic term)|manufacture (generic term)
+cottage pie|1
+(noun)|dish (generic term)
+cottage pink|1
+(noun)|grass pink|Dianthus plumarius|pink (generic term)|garden pink (generic term)
+cottage tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+cottage tulip|1
+(noun)|tulip (generic term)
+cottager|1
+(noun)|cottage dweller|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+cottar|2
+(noun)|cotter|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+(noun)|cotter|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+cotter|3
+(noun)|cottar|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+(noun)|cottier|serf (generic term)|helot (generic term)|villein (generic term)
+(noun)|cottar|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+cotter pin|1
+(noun)|cotter (generic term)|cottar (generic term)
+cottidae|1
+(noun)|Cottidae|family Cottidae|fish family (generic term)
+cottier|1
+(noun)|cotter|serf (generic term)|helot (generic term)|villein (generic term)
+cotton|5
+(noun)|cotton fiber|cotton wool|plant fiber (generic term)|plant fibre (generic term)
+(noun)|cotton cloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|cotton plant|shrub (generic term)|bush (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+(verb)|like (generic term)
+cotton-seed tree|1
+(noun)|groundsel tree|groundsel bush|consumption weed|Baccharis halimifolia|shrub (generic term)|bush (generic term)
+cotton ball|1
+(noun)|plant disease (generic term)
+cotton bollworm|1
+(noun)|corn earworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm (generic term)
+cotton cake|1
+(noun)|cottonseed cake|residue (generic term)
+cotton candy|1
+(noun)|spun sugar|candyfloss|candy (generic term)|confect (generic term)
+cotton cloth|1
+(noun)|cotton|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+cotton fiber|1
+(noun)|cotton|cotton wool|plant fiber (generic term)|plant fibre (generic term)
+cotton flannel|1
+(noun)|Canton flannel|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+cotton gin|1
+(noun)|gin|machine (generic term)
+cotton grass|1
+(noun)|cotton rush|sedge (generic term)
+cotton mill|1
+(noun)|textile mill (generic term)
+cotton mouse|1
+(noun)|Peromyscus gossypinus|wood mouse (generic term)
+cotton on|1
+(verb)|catch on|get wise|get onto|tumble|latch on|twig|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+cotton plant|1
+(noun)|cotton|shrub (generic term)|bush (generic term)
+cotton rat|1
+(noun)|Sigmodon hispidus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+cotton rose|2
+(noun)|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus (generic term)
+(noun)|cudweed|filago|flower (generic term)
+cotton rush|1
+(noun)|cotton grass|sedge (generic term)
+cotton stainer|1
+(noun)|heteropterous insect (generic term)
+cotton strain|1
+(noun)|sweet-potato whitefly (generic term)
+cotton thistle|1
+(noun)|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle (generic term)
+cotton up|1
+(verb)|cozy up|shine up|play up|sidle up|suck up|ingratiate (generic term)
+cotton wool|1
+(noun)|cotton|cotton fiber|plant fiber (generic term)|plant fibre (generic term)
+cottonmouth|1
+(noun)|water moccasin|cottonmouth moccasin|Agkistrodon piscivorus|pit viper (generic term)
+cottonmouth moccasin|1
+(noun)|water moccasin|cottonmouth|Agkistrodon piscivorus|pit viper (generic term)
+cottonseed|1
+(noun)|oilseed (generic term)|oil-rich seed (generic term)
+cottonseed cake|1
+(noun)|cotton cake|residue (generic term)
+cottonseed oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+cottontail|1
+(noun)|wood rabbit|cottontail rabbit|rabbit (generic term)|coney (generic term)|cony (generic term)
+cottontail rabbit|1
+(noun)|wood rabbit|cottontail|rabbit (generic term)|coney (generic term)|cony (generic term)
+cottonweed|2
+(noun)|pearly everlasting|Anaphalis margaritacea|everlasting (generic term)|everlasting flower (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+cottonwick|1
+(noun)|Haemulon malanurum|grunt (generic term)
+cottonwood|2
+(noun)|poplar (generic term)|poplar tree (generic term)
+(noun)|white basswood|Tilia heterophylla|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+cottony|1
+(adj)|soft (similar term)
+cottony-white|1
+(adj)|achromatic (similar term)
+cottrell precipitator|1
+(noun)|precipitator|Cottrell precipitator|electrical device (generic term)
+cottus|1
+(noun)|Cottus|genus Cottus|fish genus (generic term)
+cotula|1
+(noun)|Cotula|genus Cotula|asterid dicot genus (generic term)
+cotula coronopifolia|1
+(noun)|brass buttons|Cotula coronopifolia|flower (generic term)
+coturnix|1
+(noun)|Coturnix|genus Coturnix|bird genus (generic term)
+coturnix communis|1
+(noun)|migratory quail|Coturnix coturnix|Coturnix communis|Old World quail (generic term)
+coturnix coturnix|1
+(noun)|migratory quail|Coturnix coturnix|Coturnix communis|Old World quail (generic term)
+cotyledon|1
+(noun)|seed leaf|cataphyll (generic term)
+cotyloid|1
+(adj)|acetabular|cotyloidal|concave (similar term)
+cotyloid cavity|1
+(noun)|acetabulum|socket (generic term)
+cotyloid joint|1
+(noun)|ball-and-socket joint|spheroid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+cotyloidal|1
+(adj)|acetabular|cotyloid|concave (similar term)
+coucal|1
+(noun)|cuckoo (generic term)
+couch|4
+(noun)|sofa|lounge|seat (generic term)
+(noun)|flat coat (generic term)|ground (generic term)|primer (generic term)|priming (generic term)|primer coat (generic term)|priming coat (generic term)|undercoat (generic term)
+(noun)|bed (generic term)
+(verb)|frame|redact|cast|put|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+couch grass|1
+(noun)|dog grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+couch potato|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+couchant|1
+(adj)|unerect (similar term)
+couchette|1
+(noun)|compartment (generic term)
+coude system|1
+(noun)|coude telescope|reflecting telescope (generic term)|reflector (generic term)
+coude telescope|1
+(noun)|coude system|reflecting telescope (generic term)|reflector (generic term)
+cougar|1
+(noun)|puma|catamount|mountain lion|painter|panther|Felis concolor|wildcat (generic term)
+cough|3
+(noun)|coughing|symptom (generic term)
+(noun)|coughing|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+(verb)|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|cough out (related term)|cough up (related term)|cough up (related term)
+cough drop|1
+(noun)|troche|pastille|pastil|lozenge (generic term)
+cough out|1
+(verb)|expectorate|cough up|spit up|spit out|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+cough up|2
+(verb)|pony up|spit up|give (generic term)
+(verb)|expectorate|cough out|spit up|spit out|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+coughing|2
+(noun)|cough|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+(noun)|cough|symptom (generic term)
+coughing up|1
+(noun)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+coulisse|2
+(noun)|wing flat|flat (generic term)
+(noun)|timber (generic term)
+coulomb|2
+(noun)|C|ampere-second|charge unit (generic term)|quantity unit (generic term)
+(noun)|Coulomb|Charles Augustin de Coulomb|physicist (generic term)
+coulomb's law|1
+(noun)|Coulomb's Law|law (generic term)|law of nature (generic term)
+coulter|1
+(noun)|colter|wedge (generic term)
+coumadin|1
+(noun)|warfarin|Coumadin|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+coumara nut|1
+(noun)|tonka bean|bean (generic term)
+coumarone|1
+(noun)|benzofuran|cumarone|compound (generic term)|chemical compound (generic term)
+coumarone-indene resin|1
+(noun)|coumarone resin|plastic (generic term)
+coumarone resin|1
+(noun)|coumarone-indene resin|plastic (generic term)
+coumarouna|1
+(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus (generic term)
+coumarouna odorata|1
+(noun)|tonka bean|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree (generic term)
+council|3
+(noun)|administrative unit (generic term)|administrative body (generic term)
+(noun)|assembly (generic term)
+(noun)|meeting (generic term)|group meeting (generic term)
+council bluffs|1
+(noun)|Council Bluffs|town (generic term)
+council board|1
+(noun)|conference table|council table|table (generic term)
+council chamber|1
+(noun)|boardroom|room (generic term)
+council member|1
+(noun)|councillor|member (generic term)
+council of basel-ferrara-florence|1
+(noun)|Council of Basel-Ferrara-Florence|council (generic term)
+council of chalcedon|1
+(noun)|Chalcedon|Council of Chalcedon|ecumenical council (generic term)
+council of constance|1
+(noun)|Constance|Council of Constance|council (generic term)
+council of economic advisors|1
+(noun)|Council of Economic Advisors|executive agency (generic term)
+council of ephesus|1
+(noun)|Ephesus|Council of Ephesus|ecumenical council (generic term)
+council of trent|1
+(noun)|Council of Trent|council (generic term)
+council of vienne|1
+(noun)|Vienne|Council of Vienne|council (generic term)
+council on environmental policy|1
+(noun)|Council on Environmental Policy|executive agency (generic term)
+council table|1
+(noun)|conference table|council board|table (generic term)
+council tax|1
+(noun)|property tax (generic term)|land tax (generic term)
+councillor|1
+(noun)|council member|member (generic term)
+councillorship|1
+(noun)|councilorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+councilman|1
+(noun)|council member (generic term)|councillor (generic term)
+councilorship|1
+(noun)|councillorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+councilwoman|1
+(noun)|council member (generic term)|councillor (generic term)
+counsel|3
+(noun)|advocate|counselor|counsellor|counselor-at-law|pleader|lawyer (generic term)|attorney (generic term)
+(noun)|guidance|counseling|counselling|direction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(verb)|rede|advise|hash out (generic term)|discuss (generic term)|talk over (generic term)
+counsel to the crown|1
+(noun)|Counsel to the Crown|barrister (generic term)
+counseling|1
+(noun)|guidance|counsel|counselling|direction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+counselling|1
+(noun)|guidance|counsel|counseling|direction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+counsellor|3
+(noun)|counselor|supervisor (generic term)
+(noun)|counselor|adviser (generic term)|advisor (generic term)|consultant (generic term)
+(noun)|advocate|counsel|counselor|counselor-at-law|pleader|lawyer (generic term)|attorney (generic term)
+counsellorship|1
+(noun)|counselorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+counselor|3
+(noun)|counsellor|adviser (generic term)|advisor (generic term)|consultant (generic term)
+(noun)|counsellor|supervisor (generic term)
+(noun)|advocate|counsel|counsellor|counselor-at-law|pleader|lawyer (generic term)|attorney (generic term)
+counselor-at-law|1
+(noun)|advocate|counsel|counselor|counsellor|pleader|lawyer (generic term)|attorney (generic term)
+counselorship|1
+(noun)|counsellorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+count|11
+(noun)|number (generic term)
+(noun)|counting|numeration|enumeration|reckoning|tally|investigation (generic term)|investigating (generic term)
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(verb)|number|enumerate|numerate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|matter|weigh|be (generic term)|matter to (related term)
+(verb)|consider|weigh
+(verb)|recite (generic term)|count down (related term)|count out (related term)
+(verb)|number|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|include (generic term)
+(verb)|bet|depend|look|calculate|reckon|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+(verb)|reckon|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+count alessandro di cagliostro|1
+(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+count alessandro volta|1
+(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist (generic term)
+count down|1
+(verb)|count (generic term)
+count ferdinand von zeppelin|1
+(noun)|Zeppelin|Count Ferdinand von Zeppelin|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+count fleet|1
+(noun)|Count Fleet|thoroughbred (generic term)
+count lev nikolayevitch tolstoy|1
+(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer (generic term)|author (generic term)
+count maurice maeterlinck|1
+(noun)|Maeterlinck|Count Maurice Maeterlinck|dramatist (generic term)|playwright (generic term)
+count nikolaus ludwig von zinzendorf|1
+(noun)|Zinzendorf|Count Nikolaus Ludwig von Zinzendorf|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+count noun|1
+(noun)|noun (generic term)
+count off|1
+(verb)|call out (generic term)
+count on|1
+(verb)|calculate|estimate|reckon|figure|forecast|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+count out|1
+(verb)|declare (generic term)
+count palatine|1
+(noun)|count (generic term)
+count per minute|1
+(noun)|counts/minute|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+count rumford|1
+(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist (generic term)
+countable|1
+(adj)|denumerable|enumerable|numerable|calculable (similar term)
+countdown|1
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+countenance|4
+(noun)|visage|appearance (generic term)|visual aspect (generic term)
+(noun)|sanction|endorsement|indorsement|warrant|imprimatur|approval (generic term)|commendation (generic term)
+(noun)|physiognomy|phiz|visage|kisser|smiler|mug|face (generic term)|human face (generic term)
+(verb)|permit|allow|let|accept (generic term)|consent (generic term)|go for (generic term)|disallow (antonym)|forbid (antonym)
+counter|12
+(adj)|antagonistic|negative (similar term)
+(noun)|table (generic term)
+(noun)|game equipment (generic term)
+(noun)|tabulator|calculator (generic term)|calculating machine (generic term)
+(noun)|buffet|sideboard|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|rejoinder|retort|return|riposte|replication|comeback|reply (generic term)|response (generic term)
+(noun)|register (generic term)
+(noun)|heel counter|piece of leather (generic term)
+(noun)|counterpunch|parry|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+(verb)|answer (generic term)|reply (generic term)|respond (generic term)
+(verb)|anticipate|foresee|forestall|act (generic term)|move (generic term)
+counter-drill|1
+(verb)|bore (generic term)|drill (generic term)
+counter-revolutionist|1
+(noun)|counterrevolutionist|counterrevolutionary|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+counter-sabotage|1
+(noun)|counterintelligence (generic term)
+counter check|1
+(noun)|check (generic term)|bank check (generic term)|cheque (generic term)
+counter conditioning|1
+(noun)|conditioning (generic term)
+counter reformation|1
+(noun)|Counter Reformation|religious movement (generic term)
+counter tube|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+counteract|4
+(verb)|antagonize|antagonise|act (generic term)|move (generic term)
+(verb)|countercheck|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|countervail|neutralize|counterbalance|cancel (generic term)|offset (generic term)|set off (generic term)
+(verb)|sabotage|undermine|countermine|subvert|weaken|disobey (generic term)
+counteraction|1
+(noun)|neutralization|neutralisation|nullification (generic term)|override (generic term)
+counteractive|1
+(adj)|active (similar term)
+counterargument|1
+(noun)|argument (generic term)|statement (generic term)
+counterattack|3
+(noun)|countermove|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|counterplay|attack (generic term)
+(verb)|counterstrike|attack (generic term)|assail (generic term)
+counterattraction|1
+(noun)|attraction (generic term)
+counterbalance|6
+(noun)|counterweight|counterpoise|balance|equalizer|equaliser|weight (generic term)
+(noun)|balance|equilibrium|equipoise|structure (generic term)|construction (generic term)
+(noun)|offset|compensation (generic term)
+(verb)|compensate|correct|make up|even out|even off|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|oppose|contrast (generic term)|counterpoint (generic term)
+(verb)|counteract|countervail|neutralize|cancel (generic term)|offset (generic term)|set off (generic term)
+counterbalanced|1
+(adj)|counterpoised|balanced (similar term)
+counterbattery fire|1
+(noun)|counterfire (generic term)
+counterblast|1
+(noun)|reply (generic term)|response (generic term)
+counterblow|1
+(noun)|blow (generic term)
+counterbombardment|1
+(noun)|counterfire (generic term)
+counterbore|1
+(noun)|countersink|countersink bit|bit (generic term)
+counterchallenge|1
+(verb)|challenge (generic term)
+counterchange|1
+(verb)|transpose|interchange|change (generic term)|alter (generic term)|modify (generic term)
+countercharge|2
+(noun)|accusation (generic term)|charge (generic term)
+(noun)|charge (generic term)
+countercheck|4
+(noun)|arrest (generic term)|check (generic term)|halt (generic term)|hitch (generic term)|stay (generic term)|stop (generic term)|stoppage (generic term)
+(noun)|double check|assay (generic term)|check (generic term)
+(verb)|counteract|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|check (generic term)
+counterclaim|2
+(noun)|legal action (generic term)|action (generic term)|action at law (generic term)
+(verb)|claim (generic term)
+counterclockwise|2
+(adj)|anticlockwise|contraclockwise|levorotary (similar term)|levorotatory (similar term)|left-handed (similar term)|sinistral (related term)|clockwise (antonym)
+(adv)|anticlockwise|clockwise (antonym)
+counterclockwise rotation|1
+(noun)|levorotation|rotation (generic term)|revolution (generic term)|gyration (generic term)|dextrorotation (antonym)
+countercoup|1
+(noun)|coup d'etat (generic term)|coup (generic term)|putsch (generic term)|takeover (generic term)
+counterculture|1
+(noun)|culture (generic term)
+countercurrent|2
+(noun)|rip|riptide|tide rip|crosscurrent|turbulence (generic term)|turbulency (generic term)
+(noun)|crosscurrent|strife (generic term)
+counterdemonstration|1
+(noun)|presentation (generic term)|presentment (generic term)|demonstration (generic term)
+counterdemonstrator|1
+(noun)|demonstrator (generic term)|protester (generic term)
+counterespionage|1
+(noun)|counterintelligence (generic term)
+counterexample|1
+(noun)|disproof (generic term)|falsification (generic term)|refutation (generic term)
+counterfactual|1
+(adj)|contrary to fact|conditional (similar term)
+counterfactuality|1
+(noun)|quality (generic term)|factuality (antonym)
+counterfeit|3
+(adj)|imitative|assumed (similar term)|false (similar term)|fictitious (similar term)|fictive (similar term)|pretended (similar term)|put on (similar term)|sham (similar term)|bad (similar term)|forged (similar term)|base (similar term)|bogus (similar term)|fake (similar term)|phony (similar term)|phoney (similar term)|bastard (similar term)|inauthentic (similar term)|unauthentic (similar term)|spurious (similar term)|mock (similar term)|ostensible (similar term)|ostensive (similar term)|pinchbeck (similar term)|pseudo (similar term)|synthetic (similar term)|artificial (related term)|unreal (related term)|false (related term)|insincere (related term)|unreal (related term)|genuine (antonym)
+(noun)|imitation|forgery|copy (generic term)
+(verb)|forge|fake|re-create (generic term)
+counterfeiter|1
+(noun)|forger|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+counterfire|1
+(noun)|fire (generic term)|firing (generic term)
+counterfoil|1
+(noun)|stub|check stub|record (generic term)
+counterglow|1
+(noun)|gegenschein|light (generic term)|visible light (generic term)|visible radiation (generic term)
+counterinsurgency|1
+(noun)|pacification|conflict (generic term)|struggle (generic term)|battle (generic term)
+counterinsurgent|1
+(adj)|conflict|struggle|battle (related term)
+counterintelligence|1
+(noun)|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+counterintuitive|1
+(adj)|unreasonable (similar term)
+counterirritant|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+counterman|1
+(noun)|counterperson|counterwoman|waiter (generic term)|server (generic term)
+countermand|2
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(verb)|revoke|annul|lift|reverse|repeal|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+countermarch|3
+(noun)|march (generic term)|marching (generic term)
+(verb)|march (generic term)|process (generic term)
+(verb)|reorder (generic term)
+countermeasure|1
+(noun)|measure (generic term)|step (generic term)
+countermine|3
+(noun)|countermeasure (generic term)
+(verb)|sabotage|undermine|counteract|subvert|weaken|disobey (generic term)
+(verb)|mine (generic term)
+countermortar fire|1
+(noun)|counterfire (generic term)
+countermove|1
+(noun)|counterattack|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+counteroffensive|1
+(noun)|offense (generic term)|offence (generic term)|offensive (generic term)
+counteroffer|1
+(noun)|offer (generic term)|offering (generic term)
+counterpane|1
+(noun)|bedspread|bedcover|bed cover|bed covering|spread|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+counterpart|2
+(noun)|opposite number|vis-a-vis|equivalent (generic term)
+(noun)|similitude|twin|duplicate (generic term)|duplication (generic term)
+counterperson|1
+(noun)|counterwoman|counterman|waiter (generic term)|server (generic term)
+counterplan|1
+(noun)|counterplot|plot (generic term)|secret plan (generic term)|game (generic term)
+counterplay|1
+(noun)|counterattack|attack (generic term)
+counterplea|1
+(noun)|plea (generic term)
+counterplot|2
+(noun)|counterplan|plot (generic term)|secret plan (generic term)|game (generic term)
+(verb)|plot (generic term)
+counterpoint|3
+(noun)|polyphony (generic term)|polyphonic music (generic term)|concerted music (generic term)
+(verb)|contrast|differ (generic term)
+(verb)|compose (generic term)|write (generic term)
+counterpoise|2
+(noun)|counterweight|counterbalance|balance|equalizer|equaliser|weight (generic term)
+(verb)|counterweight|counterpose|oppose (generic term)|counterbalance (generic term)
+counterpoised|1
+(adj)|counterbalanced|balanced (similar term)
+counterpoison|1
+(noun)|antidote|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+counterpose|1
+(verb)|counterweight|counterpoise|oppose (generic term)|counterbalance (generic term)
+counterpreparation fire|1
+(noun)|fire (generic term)|firing (generic term)
+counterproductive|1
+(adj)|harmful (similar term)
+counterproposal|1
+(noun)|proposal (generic term)
+counterpunch|1
+(noun)|parry|counter|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+counterreformation|1
+(noun)|reformation (generic term)
+counterrevolution|1
+(noun)|revolution (generic term)
+counterrevolutionary|3
+(adj)|revolution (related term)
+(adj)|revolutionary (antonym)
+(noun)|counterrevolutionist|counter-revolutionist|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+counterrevolutionist|1
+(noun)|counter-revolutionist|counterrevolutionary|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+countershot|1
+(noun)|shooting (generic term)|shot (generic term)
+countersign|3
+(noun)|password|watchword|word|parole|positive identification (generic term)|secret (generic term)|arcanum (generic term)
+(noun)|countersignature|signature (generic term)
+(verb)|sign (generic term)
+countersignature|1
+(noun)|countersign|signature (generic term)
+countersink|3
+(noun)|hole (generic term)
+(noun)|counterbore|countersink bit|bit (generic term)
+(verb)|set|bury (generic term)|sink (generic term)
+countersink bit|1
+(noun)|counterbore|countersink|bit (generic term)
+counterspy|1
+(noun)|mole|spy (generic term)|undercover agent (generic term)
+counterstain|1
+(noun)|stain (generic term)
+counterstrike|1
+(verb)|counterattack|attack (generic term)|assail (generic term)
+countersubversion|1
+(noun)|counterintelligence (generic term)
+countersuit|1
+(noun)|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+countertenor|3
+(adj)|alto|high (similar term)|high-pitched (similar term)
+(noun)|alto (generic term)
+(noun)|alto|singing voice (generic term)
+counterterror|1
+(adj)|counterterrorist|scheme|strategy (related term)
+counterterrorism|1
+(noun)|scheme (generic term)|strategy (generic term)
+counterterrorist|2
+(adj)|counterterror|scheme|strategy (related term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+counterterrorist center|1
+(noun)|Counterterrorist Center|CTC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+countertop|1
+(noun)|tabletop (generic term)
+countertransference|1
+(noun)|transference (generic term)
+countervail|2
+(verb)|offset|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|counteract|neutralize|counterbalance|cancel (generic term)|offset (generic term)|set off (generic term)
+countervailing duty|1
+(noun)|duty (generic term)|tariff (generic term)
+counterweight|2
+(noun)|counterbalance|counterpoise|balance|equalizer|equaliser|weight (generic term)
+(verb)|counterpoise|counterpose|oppose (generic term)|counterbalance (generic term)
+counterwoman|1
+(noun)|counterperson|counterman|waiter (generic term)|server (generic term)
+countess|1
+(noun)|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+counting|1
+(noun)|count|numeration|enumeration|reckoning|tally|investigation (generic term)|investigating (generic term)
+countinghouse|1
+(noun)|office (generic term)|business office (generic term)
+countless|1
+(adj)|infinite|innumerable|innumerous|multitudinous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+countlessness|1
+(noun)|innumerableness|number (generic term)|figure (generic term)
+countrified|1
+(adj)|countryfied|rustic|rural (similar term)
+country|5
+(noun)|state|land|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|state|nation|land|commonwealth|res publica|body politic|political unit (generic term)|political entity (generic term)
+(noun)|nation|land|people (generic term)
+(noun)|rural area|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|urban area (antonym)
+(noun)|area|region (generic term)
+country-bred|1
+(adj)|rural (similar term)
+country-dance|2
+(noun)|country dancing|contredanse|contra danse|contradance|folk dancing (generic term)|folk dance (generic term)
+(verb)|contradance|contredanse|contra danse|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+country-style|1
+(adj)|rural (similar term)
+country and western|1
+(noun)|country music|C and W|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+country borage|1
+(noun)|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus (generic term)|flame nettle (generic term)
+country club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+country dancing|1
+(noun)|country-dance|contredanse|contra danse|contradance|folk dancing (generic term)|folk dance (generic term)
+country doctor|1
+(noun)|general practitioner (generic term)|GP (generic term)
+country house|1
+(noun)|house (generic term)
+country music|1
+(noun)|country and western|C and W|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+country of origin|1
+(noun)|fatherland|homeland|motherland|mother country|native land|country (generic term)|state (generic term)|land (generic term)
+country people|2
+(noun)|countryfolk|citizenry (generic term)|people (generic term)
+(noun)|countryfolk|folk (generic term)|folks (generic term)|common people (generic term)
+country store|1
+(noun)|general store|trading post|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+countryfied|1
+(adj)|countrified|rustic|rural (similar term)
+countryfolk|2
+(noun)|country people|citizenry (generic term)|people (generic term)
+(noun)|country people|folk (generic term)|folks (generic term)|common people (generic term)
+countryman|2
+(noun)|compatriot (generic term)
+(noun)|ruralist|rustic (generic term)
+countryseat|1
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+countryside|1
+(noun)|country (generic term)|rural area (generic term)
+countrywide|1
+(adj)|nationwide|comprehensive (similar term)
+countrywoman|2
+(noun)|rustic (generic term)
+(noun)|compatriot (generic term)
+counts/minute|1
+(noun)|count per minute|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+county|2
+(noun)|region (generic term)|part (generic term)
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+county agent|1
+(noun)|agricultural agent|extension agent|adviser (generic term)|advisor (generic term)|consultant (generic term)
+county council|1
+(noun)|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+county courthouse|1
+(noun)|county seat|seat (generic term)
+county line|1
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+county palatine|1
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+county seat|1
+(noun)|county courthouse|seat (generic term)
+county town|1
+(noun)|shire town|seat (generic term)
+countywide|1
+(adj)|comprehensive (similar term)
+coup|2
+(noun)|coup d'etat|putsch|takeover|group action (generic term)
+(noun)|success (generic term)
+coup d'etat|1
+(noun)|coup|putsch|takeover|group action (generic term)
+coup d'oeil|1
+(noun)|glance|glimpse|look (generic term)|looking (generic term)|looking at (generic term)
+coup de grace|1
+(noun)|deathblow|killing (generic term)|kill (generic term)|putting to death (generic term)
+coup de main|1
+(noun)|surprise attack|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+coup de theatre|3
+(noun)|surprise (generic term)
+(noun)|stagecraft (generic term)
+(noun)|theatrical production (generic term)|staging (generic term)
+coupe|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+couperin|1
+(noun)|Couperin|Francois Couperin|organist (generic term)|composer (generic term)
+couple|9
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|mates|match|family (generic term)|family unit (generic term)
+(noun)|twosome|duo|duet|pair (generic term)
+(noun)|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|unit (generic term)|building block (generic term)
+(verb)|match|mate|pair|twin|join (generic term)|bring together (generic term)
+(verb)|couple on|couple up|attach (generic term)|uncouple (antonym)
+(verb)|pair|pair off|partner off|unite (generic term)|unify (generic term)
+(verb)|copulate|mate|pair|join (generic term)|conjoin (generic term)
+couple on|1
+(verb)|couple|couple up|attach (generic term)|uncouple (antonym)
+couple up|1
+(verb)|couple|couple on|attach (generic term)|uncouple (antonym)
+coupled|2
+(adj)|conjugate|conjugated|united (similar term)
+(adj)|joined|linked|connected (similar term)
+coupler|1
+(noun)|coupling|mechanical device (generic term)
+couplet|2
+(noun)|couple|pair|twosome|twain|brace|span|yoke|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|stanza (generic term)
+coupling|3
+(noun)|yoke|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|coupler|mechanical device (generic term)
+(noun)|mating|pairing|conjugation|union|sexual union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+coupon|2
+(noun)|voucher|commercial document (generic term)|commercial instrument (generic term)
+(noun)|sample (generic term)
+coupon bond|1
+(noun)|bearer bond|bond (generic term)|bond certificate (generic term)
+courage|1
+(noun)|courageousness|bravery|braveness|spirit (generic term)|cowardice (antonym)
+courageous|1
+(adj)|brave|desperate (similar term)|heroic (similar term)|gallant (similar term)|game (similar term)|gamy (similar term)|gamey (similar term)|gritty (similar term)|mettlesome (similar term)|spirited (similar term)|spunky (similar term)|lionhearted (similar term)|stalwart (similar term)|stouthearted (similar term)|undaunted (similar term)|valiant (similar term)|valorous (similar term)|adventurous (related term)|adventuresome (related term)|bold (related term)|resolute (related term)|unafraid (related term)|fearless (related term)|cowardly (antonym)
+courageously|1
+(adv)|bravely
+courageousness|1
+(noun)|courage|bravery|braveness|spirit (generic term)|cowardice (antonym)
+courbaril|1
+(noun)|Hymenaea courbaril|locust tree (generic term)|locust (generic term)
+courbaril copal|1
+(noun)|copal (generic term)
+courbet|1
+(noun)|Courbet|Gustave Courbet|painter (generic term)
+coureur de bois|1
+(noun)|trapper (generic term)
+courgette|2
+(noun)|zucchini|marrow (generic term)|marrow squash (generic term)|vegetable marrow (generic term)
+(noun)|zucchini|summer squash (generic term)
+courier|1
+(noun)|messenger|traveler (generic term)|traveller (generic term)
+courlan|1
+(noun)|Aramus guarauna|wading bird (generic term)|wader (generic term)
+course|12
+(noun)|course of study|course of instruction|class|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+(noun)|line|series (generic term)
+(noun)|facility (generic term)|installation (generic term)
+(noun)|course of action|action (generic term)
+(noun)|path|track|line (generic term)
+(noun)|trend|direction (generic term)|way (generic term)
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|row|layer (generic term)|bed (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|run|flow|feed|move (generic term)|flow from (related term)|run over (related term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(adv)|naturally|of course|unnaturally (antonym)
+course catalog|1
+(noun)|course catalogue|prospectus|catalog (generic term)|catalogue (generic term)
+course catalogue|1
+(noun)|course catalog|prospectus|catalog (generic term)|catalogue (generic term)
+course credit|1
+(noun)|credit|attainment (generic term)
+course of action|1
+(noun)|course|action (generic term)
+course of instruction|1
+(noun)|course|course of study|class|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+course of lectures|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+course of study|2
+(noun)|program|programme|curriculum|syllabus|information (generic term)|info (generic term)
+(noun)|course|course of instruction|class|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+course session|1
+(noun)|class period|recitation|session (generic term)
+courser|4
+(noun)|hunter (generic term)|huntsman (generic term)
+(noun)|charger|warhorse (generic term)
+(noun)|hunting dog (generic term)
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+coursework|1
+(noun)|work (generic term)
+coursing|1
+(noun)|hunt (generic term)|hunting (generic term)
+court|13
+(noun)|tribunal|judicature|assembly (generic term)
+(noun)|royal court|government (generic term)|authorities (generic term)|regime (generic term)
+(noun)|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+(noun)|courtroom|room (generic term)
+(noun)|courtyard|area (generic term)
+(noun)|residence (generic term)
+(noun)|royal court|cortege (generic term)|retinue (generic term)|suite (generic term)|entourage (generic term)
+(noun)|motor hotel|motor inn|motor lodge|tourist court|hotel (generic term)
+(noun)|Court|Margaret Court|tennis player (generic term)
+(noun)|homage|deference (generic term)|respect (generic term)
+(verb)|woo|romance|solicit|act (generic term)|move (generic term)
+(verb)|woo
+(verb)|act (generic term)|move (generic term)
+court-martial|3
+(noun)|military court (generic term)
+(noun)|trial (generic term)
+(verb)|judge (generic term)|adjudicate (generic term)|try (generic term)
+court-ordered|1
+(adj)|legal (similar term)
+court card|1
+(noun)|face card|picture card|playing card (generic term)
+court favor|1
+(verb)|curry favor|curry favour|court favour|fawn (generic term)|toady (generic term)|truckle (generic term)|bootlick (generic term)|kowtow (generic term)|kotow (generic term)|suck up (generic term)
+court favour|1
+(verb)|curry favor|curry favour|court favor|fawn (generic term)|toady (generic term)|truckle (generic term)|bootlick (generic term)|kowtow (generic term)|kotow (generic term)|suck up (generic term)
+court game|1
+(noun)|athletic game (generic term)
+court of appeals|1
+(noun)|appellate court|appeals court|court (generic term)|tribunal (generic term)|judicature (generic term)
+court of assize|1
+(noun)|assizes|court of assize and nisi prius|court (generic term)|tribunal (generic term)|judicature (generic term)
+court of assize and nisi prius|1
+(noun)|assizes|court of assize|court (generic term)|tribunal (generic term)|judicature (generic term)
+court of chancery|1
+(noun)|chancery|court (generic term)|tribunal (generic term)|judicature (generic term)
+court of domestic relations|1
+(noun)|family court|domestic relations court|court (generic term)|tribunal (generic term)|judicature (generic term)
+court of saint james's|1
+(noun)|Court of Saint James's|court (generic term)|royal court (generic term)
+court order|1
+(noun)|writ (generic term)|judicial writ (generic term)
+court plaster|1
+(noun)|plaster (generic term)|adhesive plaster (generic term)|sticking plaster (generic term)
+court tennis|1
+(noun)|royal tennis|real tennis|tennis (generic term)|lawn tennis (generic term)
+courtelle|1
+(noun)|Courtelle|acrylic (generic term)
+courteous|2
+(adj)|gracious|nice|polite (similar term)
+(adj)|chivalrous (similar term)|gallant (similar term)|knightly (similar term)|respectful (related term)|discourteous (antonym)
+courteously|1
+(adv)|politely|discourteously (antonym)|impolitely (antonym)
+courtesan|1
+(noun)|concubine|doxy|odalisque|paramour|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+courtesy|3
+(noun)|politeness (generic term)|civility (generic term)
+(noun)|remark (generic term)|comment (generic term)
+(noun)|good manners|manner (generic term)|personal manner (generic term)|discourtesy (antonym)
+courthouse|2
+(noun)|government building (generic term)
+(noun)|house (generic term)
+courtier|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+courting|1
+(noun)|courtship|wooing|suit|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+courtliness|1
+(noun)|elegance (generic term)
+courtly|1
+(adj)|formal|stately|dignified (similar term)
+courtly love|1
+(noun)|code of conduct (generic term)|code of behavior (generic term)
+courtroom|1
+(noun)|court|room (generic term)
+courtship|1
+(noun)|wooing|courting|suit|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+courtyard|1
+(noun)|court|area (generic term)
+couscous|2
+(noun)|dish (generic term)
+(noun)|pasta (generic term)|alimentary paste (generic term)
+cousin|1
+(noun)|first cousin|cousin-german|full cousin|relative (generic term)|relation (generic term)
+cousin-german|1
+(noun)|cousin|first cousin|full cousin|relative (generic term)|relation (generic term)
+cousinly|1
+(adj)|avuncular (similar term)|uncousinly (antonym)
+cousteau|1
+(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer (generic term)|adventurer (generic term)
+couth|1
+(adj)|refined (similar term)
+couthie|1
+(adj)|couthy|friendly (similar term)
+couthy|1
+(adj)|couthie|friendly (similar term)
+couture|1
+(noun)|dressmaking (generic term)
+couturier|1
+(noun)|fashion designer|clothes designer|designer|creator (generic term)
+couvade|1
+(noun)|custom (generic term)|usage (generic term)|usance (generic term)
+couverture|1
+(noun)|chocolate (generic term)
+covalence|1
+(noun)|covalency|valence (generic term)|valency (generic term)
+covalency|1
+(noun)|covalence|valence (generic term)|valency (generic term)
+covalent|1
+(adj)|valence|valency (related term)
+covalent bond|1
+(noun)|chemical bond (generic term)|bond (generic term)
+covariance|1
+(noun)|variance (generic term)
+covariant|1
+(adj)|variable (similar term)
+covariation|1
+(noun)|variation (generic term)
+cove|2
+(noun)|inlet (generic term)|recess (generic term)
+(noun)|cave (generic term)
+coven|1
+(noun)|assembly (generic term)
+covenant|3
+(noun)|compact|concordat|written agreement (generic term)
+(noun)|agreement (generic term)|understanding (generic term)
+(verb)|pledge (generic term)|plight (generic term)
+coventry|2
+(noun)|banishment|ostracism|Coventry|exclusion (generic term)
+(noun)|Coventry|city (generic term)|metropolis (generic term)|urban center (generic term)
+cover|33
+(noun)|screen|covert|concealment|covering (generic term)
+(noun)|blanket|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|covering|screening|masking|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(noun)|binding|book binding|back|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|covering|natural covering|natural object (generic term)
+(noun)|top|covering (generic term)
+(noun)|covering fire|fire (generic term)|firing (generic term)
+(noun)|cover charge|fixed charge (generic term)|fixed cost (generic term)|fixed costs (generic term)
+(noun)|cover version|cover song|recording (generic term)
+(noun)|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(verb)|uncover (antonym)
+(verb)|spread over|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|continue|extend|be (generic term)
+(verb)|satisfy (generic term)|fulfill (generic term)|fulfil (generic term)|live up to (generic term)
+(verb)|treat|handle|plow|deal|address|broach (generic term)|initiate (generic term)
+(verb)|embrace|encompass|comprehend|include (generic term)
+(verb)|traverse|track|cross|pass over|get over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|report|inform (generic term)
+(verb)|cover up|hide (generic term)|conceal (generic term)
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+(verb)|insure|underwrite|guarantee (generic term)|warrant (generic term)
+(verb)|compensate|overcompensate|compensate (generic term)|counterbalance (generic term)|correct (generic term)|make up (generic term)|even out (generic term)|even off (generic term)|even up (generic term)
+(verb)|endow (generic term)|indue (generic term)|gift (generic term)|empower (generic term)|invest (generic term)|endue (generic term)
+(verb)|substitute (generic term)|deputize (generic term)|deputise (generic term)|step in (generic term)
+(verb)|be (generic term)
+(verb)|hide (generic term)|conceal (generic term)
+(verb)|shroud|enshroud|hide|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|breed|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|overlay
+(verb)|play (generic term)
+(verb)|protect (generic term)
+(verb)|brood|hatch|incubate|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+(verb)|wrap up|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+cover-up|1
+(noun)|concealment (generic term)|concealing (generic term)|hiding (generic term)
+cover charge|1
+(noun)|cover|fixed charge (generic term)|fixed cost (generic term)|fixed costs (generic term)
+cover crop|1
+(noun)|crop (generic term)
+cover for|1
+(verb)|protect (generic term)
+cover girl|1
+(noun)|pin-up|lovely|photographer's model (generic term)
+cover glass|1
+(noun)|cover slip|plate glass (generic term)|sheet glass (generic term)
+cover letter|1
+(noun)|covering letter|letter (generic term)|missive (generic term)
+cover plate|1
+(noun)|covering (generic term)
+cover slip|1
+(noun)|cover glass|plate glass (generic term)|sheet glass (generic term)
+cover song|1
+(noun)|cover|cover version|recording (generic term)
+cover up|1
+(verb)|cover|hide (generic term)|conceal (generic term)
+cover version|1
+(noun)|cover|cover song|recording (generic term)
+coverage|3
+(noun)|insurance coverage|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|extent (generic term)
+(noun)|reporting|reportage|news (generic term)
+coverall|1
+(noun)|protective garment (generic term)
+covered|1
+(adj)|ariled (similar term)|arillate (similar term)|awninged (similar term)|barnacled (similar term)|beaded (similar term)|blanketed (similar term)|canopied (similar term)|cloaked (similar term)|clothed (similar term)|draped (similar term)|mantled (similar term)|wrapped (similar term)|crusted (similar term)|encrusted (similar term)|crusty (similar term)|crustlike (similar term)|dabbled (similar term)|spattered (similar term)|splashed (similar term)|splattered (similar term)|drenched (similar term)|drenched in (similar term)|moon-splashed (similar term)|moss-grown (similar term)|mossy (similar term)|mud-beplastered (similar term)|muffled (similar term)|peritrichous (similar term)|plastered (similar term)|sealed (similar term)|overgrown (similar term)|sealed (similar term)|smothered (similar term)|snow-clad (similar term)|snow-covered (similar term)|snowy (similar term)|splashy (similar term)|sun-drenched (similar term)|thickspread (similar term)|tiled (similar term)|white (similar term)|snowy (similar term)|bare (antonym)
+covered bridge|1
+(noun)|bridge (generic term)|span (generic term)
+covered couch|1
+(noun)|litter (generic term)
+covered option|1
+(noun)|option (generic term)
+covered smut|1
+(noun)|smut (generic term)|smut fungus (generic term)
+covered stadium|1
+(noun)|dome|domed stadium|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+covered stand|1
+(noun)|grandstand|stand (generic term)
+covered wagon|1
+(noun)|Conestoga wagon|Conestoga|prairie wagon|prairie schooner|wagon (generic term)|waggon (generic term)
+covering|5
+(noun)|natural covering|cover|natural object (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|cover|screening|masking|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(noun)|protection (generic term)
+(noun)|application|coating|manual labor (generic term)|manual labour (generic term)
+covering fire|1
+(noun)|cover|fire (generic term)|firing (generic term)
+covering letter|1
+(noun)|cover letter|letter (generic term)|missive (generic term)
+covering material|1
+(noun)|building material (generic term)
+coverlet|1
+(noun)|bedspread (generic term)|bedcover (generic term)|bed cover (generic term)|bed covering (generic term)|counterpane (generic term)|spread (generic term)
+covert|4
+(adj)|backstair (similar term)|backstairs (similar term)|furtive (similar term)|black (similar term)|clandestine (similar term)|cloak-and-dagger (similar term)|hole-and-corner (similar term)|hugger-mugger (similar term)|hush-hush (similar term)|secret (similar term)|surreptitious (similar term)|undercover (similar term)|underground (similar term)|secret (similar term)|collusive (similar term)|conniving (similar term)|cloaked (similar term)|disguised (similar term)|masked (similar term)|secret (similar term)|sub-rosa (similar term)|under-the-table (similar term)|behind-the-scenes (similar term)|subterranean (similar term)|subterraneous (similar term)|ulterior (similar term)|under wraps (similar term)|undisclosed (similar term)|unrevealed (similar term)|implicit (related term)|inexplicit (related term)|invisible (related term)|unseeable (related term)|concealed (related term)|overt (antonym)
+(adj)|protected (similar term)|secure (similar term)
+(noun)|flock (generic term)
+(noun)|screen|cover|concealment|covering (generic term)
+covert operation|1
+(noun)|operation (generic term)|military operation (generic term)
+covertly|1
+(adv)|overtly (antonym)
+covertness|1
+(noun)|hiddenness|privacy (generic term)|privateness (generic term)|secrecy (generic term)|concealment (generic term)
+covet|1
+(verb)|envy (generic term)|begrudge (generic term)
+coveted|1
+(adj)|desired|in demand|sought after|desirable (similar term)
+covetous|2
+(adj)|envious|jealous|desirous (similar term)|wishful (similar term)
+(adj)|avaricious|grabby|grasping|greedy|prehensile|acquisitive (similar term)
+covetously|2
+(adv)|enviously|jealously
+(adv)|avariciously|greedily
+covetousness|3
+(noun)|envy (generic term)|enviousness (generic term)
+(noun)|avarice|avariciousness|cupidity|greed (generic term)
+(noun)|avarice|greed|rapacity|avaritia|mortal sin (generic term)|deadly sin (generic term)
+covey|2
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|flock (generic term)
+coville|1
+(noun)|creosote bush|hediondilla|Larrea tridentata|shrub (generic term)|bush (generic term)
+cow|4
+(noun)|moo-cow|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|unpleasant woman (generic term)|disagreeable woman (generic term)
+(verb)|overawe|awe (generic term)
+cow's head|1
+(noun)|Morchella semilibera|half-free morel|morel (generic term)
+cow-like|1
+(adj)|animal (similar term)
+cow-nosed ray|1
+(noun)|cownose ray|Rhinoptera bonasus|eagle ray (generic term)
+cow-tongue fern|1
+(noun)|Florida strap fern|hart's-tongue fern|strap fern (generic term)
+cow barn|1
+(noun)|cowbarn|cowshed|cowhouse|byre|barn (generic term)
+cow chip|1
+(noun)|chip|cow dung|buffalo chip|droppings (generic term)|dung (generic term)|muck (generic term)
+cow cockle|1
+(noun)|cowherb|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower (generic term)
+cow dung|1
+(noun)|chip|cow chip|buffalo chip|droppings (generic term)|dung (generic term)|muck (generic term)
+cow lily|1
+(noun)|spatterdock|yellow pond lily|Nuphar advena|water lily (generic term)
+cow man|1
+(noun)|cattleman|beef man|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+cow manure|1
+(noun)|manure (generic term)
+cow oak|1
+(noun)|basket oak|Quercus prinus|Quercus montana|chestnut oak (generic term)
+cow parsley|1
+(noun)|wild chervil|Anthriscus sylvestris|herb (generic term)|herbaceous plant (generic term)
+cow parsnip|1
+(noun)|hogweed|Heracleum sphondylium|herb (generic term)|herbaceous plant (generic term)
+cow pasture|1
+(noun)|pasture (generic term)|pastureland (generic term)|grazing land (generic term)|lea (generic term)|ley (generic term)
+cow pen|1
+(noun)|cattle pen|corral|pen (generic term)
+cow pie|1
+(noun)|cowpie|droppings (generic term)|dung (generic term)|muck (generic term)
+cow pony|1
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+cow shark|1
+(noun)|six-gilled shark|Hexanchus griseus|shark (generic term)
+cowage|2
+(noun)|pod (generic term)|seedpod (generic term)
+(noun)|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+coward|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist (generic term)|playwright (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|composer (generic term)
+cowardice|1
+(noun)|cowardliness|spirit (generic term)|courage (antonym)
+cowardliness|1
+(noun)|cowardice|spirit (generic term)|courage (antonym)
+cowardly|1
+(adj)|fearful|caitiff (similar term)|chicken (similar term)|chickenhearted (similar term)|lily-livered (similar term)|white-livered (similar term)|yellow (similar term)|yellow-bellied (similar term)|craven (similar term)|recreant (similar term)|dastard (similar term)|dastardly (similar term)|faint (similar term)|fainthearted (similar term)|timid (similar term)|faint-hearted (similar term)|funky (similar term)|poltroon (similar term)|pusillanimous (similar term)|poor-spirited (similar term)|unmanly (similar term)|afraid (related term)|ignoble (related term)|timid (related term)|brave (antonym)
+cowbarn|1
+(noun)|cowshed|cow barn|cowhouse|byre|barn (generic term)
+cowbell|1
+(noun)|bell (generic term)
+cowberry|2
+(noun)|mountain cranberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+(noun)|lingonberry|mountain cranberry|lowbush cranberry|berry (generic term)
+cowbird|1
+(noun)|New World blackbird (generic term)|blackbird (generic term)
+cowboy|3
+(noun)|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand (generic term)
+(noun)|rodeo rider|performer (generic term)|performing artist (generic term)
+(noun)|adventurer (generic term)|venturer (generic term)
+cowboy boot|1
+(noun)|boot (generic term)
+cowboy hat|1
+(noun)|ten-gallon hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+cowcatcher|1
+(noun)|fender|buffer|pilot|framework (generic term)|frame (generic term)|framing (generic term)
+cowed|1
+(adj)|browbeaten|bullied|hangdog|intimidated|afraid (similar term)
+cower|2
+(verb)|huddle|crouch (generic term)|stoop (generic term)|bend (generic term)|bow (generic term)
+(verb)|fawn|crawl|creep|cringe|grovel|bend (generic term)|flex (generic term)
+cowfish|1
+(noun)|Lactophrys quadricornis|boxfish (generic term)|trunkfish (generic term)
+cowgirl|1
+(noun)|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+cowhand|1
+(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowherd|ranch hand (generic term)
+cowherb|1
+(noun)|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower (generic term)
+cowherd|1
+(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowpoke|cowhand|ranch hand (generic term)
+cowhide|4
+(noun)|cowskin|leather (generic term)
+(noun)|hide (generic term)|fell (generic term)
+(noun)|whip (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+cowhouse|1
+(noun)|cowbarn|cowshed|cow barn|byre|barn (generic term)
+cowl|3
+(noun)|hood|bonnet|cowling|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|hood (generic term)
+(verb)|cover (generic term)
+cowl-shaped|1
+(adj)|formed (similar term)
+cowl muscle|1
+(noun)|trapezius|trapezius muscle|musculus trapezius|skeletal muscle (generic term)|striated muscle (generic term)
+cowled|1
+(adj)|clothed (similar term)|clad (similar term)
+cowlick|1
+(noun)|hair (generic term)
+cowling|1
+(noun)|hood|bonnet|cowl|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+cowman|1
+(noun)|cowboy|cowpuncher|puncher|cattleman|cowpoke|cowhand|cowherd|ranch hand (generic term)
+cownose ray|1
+(noun)|cow-nosed ray|Rhinoptera bonasus|eagle ray (generic term)
+cowpea|2
+(noun)|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume (generic term)|leguminous plant (generic term)
+(noun)|black-eyed pea|legume (generic term)
+cowpea plant|1
+(noun)|cowpea|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume (generic term)|leguminous plant (generic term)
+cowpen daisy|1
+(noun)|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+cowpens|1
+(noun)|Cowpens|battle of Cowpens|pitched battle (generic term)
+cowper|2
+(noun)|Cowper|William Cowper|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|Cowper|William Cowper|poet (generic term)
+cowper's gland|1
+(noun)|Cowper's gland|bulbourethral gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+cowpie|1
+(noun)|cow pie|droppings (generic term)|dung (generic term)|muck (generic term)
+cowpoke|1
+(noun)|cowboy|cowpuncher|puncher|cowman|cattleman|cowhand|cowherd|ranch hand (generic term)
+cowpox|1
+(noun)|vaccinia|animal disease (generic term)|pox (generic term)
+cowpuncher|1
+(noun)|cowboy|puncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand (generic term)
+cowrie|1
+(noun)|cowry|gastropod (generic term)|univalve (generic term)
+cowry|1
+(noun)|cowrie|gastropod (generic term)|univalve (generic term)
+cows|1
+(noun)|cattle|kine|oxen|Bos taurus|bovine (generic term)
+cows' milk|1
+(noun)|milk (generic term)
+cowshed|1
+(noun)|cowbarn|cow barn|cowhouse|byre|barn (generic term)
+cowskin|1
+(noun)|cowhide|leather (generic term)
+cowslip|2
+(noun)|paigle|Primula veris|primrose (generic term)|primula (generic term)
+(noun)|marsh marigold|kingcup|meadow bright|May blob|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+cox|3
+(noun)|cyclooxygenase|Cox|enzyme (generic term)
+(noun)|coxswain|helmsman (generic term)|steersman (generic term)|steerer (generic term)
+(verb)|be (generic term)|follow (generic term)
+cox's orange pippin|1
+(noun)|Cox's Orange Pippin|Pippin (generic term)
+cox-1|1
+(noun)|cyclooxygenase-1|Cox-1|cyclooxygenase (generic term)|Cox (generic term)
+cox-2|1
+(noun)|cyclooxygenase-2|Cox-2|cyclooxygenase (generic term)|Cox (generic term)
+cox-2 inhibitor|1
+(noun)|Cox-2 inhibitor|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+coxa|1
+(noun)|hip|hip joint|articulatio coxae|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+coxcomb|3
+(noun)|cockscomb|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+(noun)|cockscomb|cap (generic term)
+(noun)|comb|cockscomb|crest (generic term)
+coxsackie virus|1
+(noun)|coxsackievirus|Coxsackie virus|enterovirus (generic term)
+coxsackievirus|1
+(noun)|Coxsackie virus|enterovirus (generic term)
+coxswain|1
+(noun)|cox|helmsman (generic term)|steersman (generic term)|steerer (generic term)
+coy|3
+(adj)|demure|overmodest|modest (similar term)
+(adj)|indefinite (similar term)
+(adj)|timid (similar term)
+coydog|1
+(noun)|coyote (generic term)|prairie wolf (generic term)|brush wolf (generic term)|Canis latrans (generic term)
+coyness|1
+(noun)|demureness|affectedness (generic term)
+coyol|1
+(noun)|coyol palm|Acrocomia vinifera|feather palm (generic term)
+coyol palm|1
+(noun)|coyol|Acrocomia vinifera|feather palm (generic term)
+coyote|3
+(noun)|prairie wolf|brush wolf|Canis latrans|wolf (generic term)
+(noun)|smuggler (generic term)|runner (generic term)|contrabandist (generic term)|moon curser (generic term)|moon-curser (generic term)
+(noun)|fire warden (generic term)|forest fire fighter (generic term)|ranger (generic term)
+coyote brush|1
+(noun)|coyote bush|chaparral broom|kidney wort|Baccharis pilularis|shrub (generic term)|bush (generic term)
+coyote bush|1
+(noun)|coyote brush|chaparral broom|kidney wort|Baccharis pilularis|shrub (generic term)|bush (generic term)
+coyote state|1
+(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state (generic term)
+coypu|1
+(noun)|nutria|Myocastor coypus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+cozen|3
+(verb)|deceive|lead on|delude|victimize (generic term)|victimise (generic term)
+(verb)|cheat (generic term)|chisel (generic term)
+(verb)|acquire (generic term)|win (generic term)|gain (generic term)|cheat (generic term)|rip off (generic term)|chisel (generic term)
+cozenage|1
+(noun)|scam|swindle (generic term)|cheat (generic term)|rig (generic term)
+cozey|1
+(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|tea cozey|cozie|tea cozie|cloth covering (generic term)
+cozie|1
+(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|tea cozie|cloth covering (generic term)
+cozily|1
+(adv)|cosily
+coziness|1
+(noun)|cosiness|snugness|comfort (generic term)|comfortableness (generic term)
+cozy|4
+(adj)|cosy|snug|comfortable (similar term)|comfy (similar term)
+(adj)|intimate|informal|friendly (similar term)
+(adj)|close (similar term)
+(noun)|cosy|tea cosy|cosey|tea cosey|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+cozy up|1
+(verb)|cotton up|shine up|play up|sidle up|suck up|ingratiate (generic term)
+cpa|1
+(noun)|certified public accountant|CPA|accountant (generic term)|comptroller (generic term)|controller (generic term)
+cpi|2
+(noun)|consumer price index|CPI|cost-of-living index|price index (generic term)|price level (generic term)
+(noun)|California Personality Inventory|CPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+cpr|1
+(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|kiss of life|resuscitation (generic term)|emergency procedure (generic term)
+cps|1
+(noun)|hertz|Hz|cycle per second|cycles/second|cycle|rate (generic term)
+cpu|1
+(noun)|central processing unit|CPU|C.P.U.|central processor|processor|mainframe|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+cpu board|1
+(noun)|CPU board|mother board|circuit board (generic term)|circuit card (generic term)|board (generic term)|card (generic term)|plug-in (generic term)|add-in (generic term)
+cr|1
+(noun)|chromium|Cr|atomic number 24|metallic element (generic term)|metal (generic term)
+crab|11
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+(noun)|crabby person|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+(noun)|Cancer|Crab|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Cancer|Cancer the Crab|Crab|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|crabmeat|shellfish (generic term)
+(noun)|crab louse|pubic louse|Phthirius pubis|louse (generic term)|sucking louse (generic term)
+(noun)|rowing (generic term)|row (generic term)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|scurry (generic term)|scamper (generic term)|skitter (generic term)|scuttle (generic term)
+(verb)|fish (generic term)
+(verb)|gripe|grouse|beef|squawk|bellyache|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+crab-eating dog|1
+(noun)|crab-eating fox|Dusicyon cancrivorus|wild dog (generic term)
+crab-eating fox|1
+(noun)|crab-eating dog|Dusicyon cancrivorus|wild dog (generic term)
+crab-eating macaque|1
+(noun)|croo monkey|Macaca irus|macaque (generic term)
+crab-eating opossum|1
+(noun)|opossum (generic term)|possum (generic term)
+crab-eating raccoon|1
+(noun)|Procyon cancrivorus|raccoon (generic term)|racoon (generic term)
+crab-eating seal|1
+(noun)|crabeater seal|seal (generic term)
+crab apple|3
+(noun)|crabapple|cultivated crab apple|apple tree (generic term)
+(noun)|wild apple|crabapple|apple tree (generic term)
+(noun)|crabapple|apple (generic term)
+crab cactus|1
+(noun)|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus (generic term)
+crab cocktail|1
+(noun)|cocktail (generic term)
+crab grass|1
+(noun)|crabgrass|finger grass|grass (generic term)
+crab legs|1
+(noun)|crab (generic term)|crabmeat (generic term)
+crab louis|1
+(noun)|crab Louis|salad (generic term)
+crab louse|1
+(noun)|pubic louse|crab|Phthirius pubis|louse (generic term)|sucking louse (generic term)
+crab nebula|1
+(noun)|Crab Nebula|supernova (generic term)
+crabapple|3
+(noun)|crab apple|cultivated crab apple|apple tree (generic term)
+(noun)|wild apple|crab apple|apple tree (generic term)
+(noun)|crab apple|apple (generic term)
+crabapple-like|1
+(adj)|vegetable (similar term)
+crabapple jelly|1
+(noun)|apple jelly (generic term)
+crabbed|1
+(adj)|crabby|cross|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured (similar term)
+crabbedness|1
+(noun)|crabbiness|crossness|ill nature (generic term)
+crabbiness|1
+(noun)|crabbedness|crossness|ill nature (generic term)
+crabby|1
+(adj)|crabbed|cross|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured (similar term)
+crabby person|1
+(noun)|crab|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+crabeater seal|1
+(noun)|crab-eating seal|seal (generic term)
+crabgrass|1
+(noun)|crab grass|finger grass|grass (generic term)
+crabmeat|1
+(noun)|crab|shellfish (generic term)
+crabs|1
+(noun)|pediculosis pubis|pediculosis (generic term)|lousiness (generic term)
+crabwise|1
+(adj)|sideways|oblique (similar term)
+cracidae|1
+(noun)|Cracidae|family Cracidae|bird family (generic term)
+crack|23
+(adj)|ace|A-one|fantastic|first-rate|super|tiptop|topnotch|tops|superior (similar term)
+(noun)|cleft|crevice|fissure|scissure|opening (generic term)|gap (generic term)
+(noun)|gap|opening (generic term)
+(noun)|crevice|cranny|fissure|chap|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|cracking|snap|noise (generic term)
+(noun)|shot|opportunity (generic term)|chance (generic term)
+(noun)|wisecrack|sally|quip|remark (generic term)|comment (generic term)
+(noun)|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|tornado|cocaine (generic term)|cocain (generic term)
+(noun)|fling|go|pass|whirl|offer|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|fracture|cracking|breakage (generic term)|break (generic term)|breaking (generic term)
+(verb)|check|break|change (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|snap|sound (generic term)|go (generic term)
+(verb)|hit (generic term)
+(verb)|break through|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|crack (generic term)|check (generic term)|break (generic term)
+(verb)|snap|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|crack up|crock up|break up|collapse|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+(verb)|tell (generic term)|narrate (generic term)|recount (generic term)|recite (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decompose (generic term)|break up (generic term)|break down (generic term)
+(verb)|change (generic term)
+crack-up|1
+(noun)|breakdown|collapse (generic term)
+crack addict|1
+(noun)|binger|drug addict (generic term)|junkie (generic term)|junky (generic term)
+crack down|1
+(verb)|clamp down|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+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 (generic term)
+crack shot|1
+(noun)|marksman|sharpshooter|shot (generic term)|shooter (generic term)
+crack up|3
+(verb)|crack|crock up|break up|collapse|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+(verb)|laud (generic term)|extol (generic term)|exalt (generic term)|glorify (generic term)|proclaim (generic term)
+(verb)|break up|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+crack willow|1
+(noun)|brittle willow|snap willow|Salix fragilis|willow (generic term)|willow tree (generic term)
+crackbrained|1
+(adj)|idiotic|insane (similar term)
+crackdown|1
+(noun)|suppression (generic term)|crushing (generic term)|quelling (generic term)|stifling (generic term)
+cracked|3
+(adj)|chapped|roughened|rough (similar term)|unsmooth (similar term)
+(adj)|alligatored|rough (similar term)|unsmooth (similar term)
+(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 (similar term)
+cracked-wheat bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+cracker|5
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|redneck|rustic (generic term)
+(noun)|programmer (generic term)|computer programmer (generic term)|coder (generic term)|software engineer (generic term)
+(noun)|firecracker|banger|firework (generic term)|pyrotechnic (generic term)
+(noun)|snapper|cracker bonbon|party favor (generic term)|party favour (generic term)|favor (generic term)|favour (generic term)
+cracker-barrel|1
+(adj)|folksy|homespun|rural (similar term)
+cracker bonbon|1
+(noun)|cracker|snapper|party favor (generic term)|party favour (generic term)|favor (generic term)|favour (generic term)
+cracker box|1
+(noun)|crate (generic term)
+cracker crumbs|1
+(noun)|crumb (generic term)
+crackerberry|1
+(noun)|bunchberry|dwarf cornel|pudding berry|Cornus canadensis|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+crackerjack|2
+(noun)|jimdandy|jimhickey|ideal (generic term)|paragon (generic term)|nonpareil (generic term)|saint (generic term)|apotheosis (generic term)|nonesuch (generic term)|nonsuch (generic term)
+(noun)|jimdandy|jimhickey|thing (generic term)
+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 (similar term)
+cracking|4
+(adj)|bang-up|bully|corking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(noun)|crack|snap|noise (generic term)
+(noun)|fracture|crack|breakage (generic term)|break (generic term)|breaking (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+crackle|6
+(adj)|fancy (similar term)
+(noun)|crackling|crepitation|noise (generic term)
+(noun)|crackleware|crackle china|china (generic term)
+(verb)|crepitate|rattle (generic term)
+(verb)|crunch|scranch|scraunch|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)
+crackle china|1
+(noun)|crackle|crackleware|china (generic term)
+crackleware|1
+(noun)|crackle|crackle china|china (generic term)
+crackling|2
+(noun)|greaves|residue (generic term)
+(noun)|crackle|crepitation|noise (generic term)
+cracklings|1
+(noun)|edible fat (generic term)
+crackpot|1
+(noun)|crank|nut|nut case|nutcase|fruitcake|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+cracksman|1
+(noun)|safebreaker|safecracker|thief (generic term)|stealer (generic term)
+cracow|1
+(noun)|Cracow|Krakow|Krakau|city (generic term)|metropolis (generic term)|urban center (generic term)
+cracticidae|1
+(noun)|Cracticidae|family Cracticidae|bird family (generic term)
+cracticus|1
+(noun)|Cracticus|genus Cracticus|bird genus (generic term)
+cradle|9
+(noun)|baby bed (generic term)|baby's bed (generic term)
+(noun)|birthplace|place of origin|provenance|provenience|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|birth (generic term)
+(noun)|rocker|trough (generic term)
+(verb)|rear (generic term)|raise (generic term)|bring up (generic term)|nurture (generic term)|parent (generic term)
+(verb)|hold (generic term)|take hold (generic term)
+(verb)|cut (generic term)
+(verb)|wash (generic term)|launder (generic term)
+(verb)|play (generic term)
+cradle cap|1
+(noun)|dermatitis (generic term)
+cradlesong|2
+(noun)|lullaby|berceuse|song (generic term)|vocal (generic term)
+(noun)|lullaby|song (generic term)|strain (generic term)
+craft|6
+(noun)|trade|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|vehicle (generic term)
+(noun)|trade|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|craftsmanship|workmanship|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+(noun)|craftiness|cunning|foxiness|guile|slyness|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+(verb)|fashion (generic term)|forge (generic term)
+craft fair|1
+(noun)|bazaar (generic term)|fair (generic term)
+craft union|1
+(noun)|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)
+crafter|1
+(noun)|craftsman|creator (generic term)
+craftily|1
+(adv)|cunningly|foxily|knavishly|slyly|trickily|artfully
+craftiness|2
+(noun)|craft|cunning|foxiness|guile|slyness|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+(noun)|deceitfulness|guile|disingenuousness (generic term)
+craftsman|3
+(noun)|professional (generic term)|professional person (generic term)
+(noun)|crafter|creator (generic term)
+(noun)|artisan|journeyman|artificer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+craftsmanship|1
+(noun)|craft|workmanship|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+crafty|1
+(adj)|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful (similar term)
+crag|1
+(noun)|cliff (generic term)|drop (generic term)|drop-off (generic term)
+cragfast|1
+(adj)|stuck (similar term)
+cragged|1
+(adj)|craggy|hilly|mountainous|rough (similar term)|unsmooth (similar term)
+craggy|2
+(adj)|cragged|hilly|mountainous|rough (similar term)|unsmooth (similar term)
+(adj)|rugged|cliffy (similar term)|clifflike (similar term)
+cragsman|1
+(noun)|rock climber|climber (generic term)
+craig ventner|1
+(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist (generic term)
+craigie|1
+(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer (generic term)|lexicologist (generic term)
+crake|1
+(noun)|rail (generic term)
+cram|4
+(verb)|jam|jampack|ram|chock up|wad|stuff (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|grind away|drum|bone up|swot|get up|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+cram full|1
+(adj)|chockablock|chock-full|chockful|choke-full|chuck-full|full (similar term)
+crambe|1
+(noun)|Crambe|genus Crambe|dilleniid dicot genus (generic term)
+crambe maritima|1
+(noun)|sea kale|sea cole|Crambe maritima|herb (generic term)|herbaceous plant (generic term)
+crammer|4
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|coach (generic term)|private instructor (generic term)|tutor (generic term)
+(noun)|school (generic term)
+(noun)|textbook (generic term)|text (generic term)|text edition (generic term)|schoolbook (generic term)|school text (generic term)
+cramp|5
+(noun)|spasm|muscle spasm|symptom (generic term)
+(noun)|clamp (generic term)|clinch (generic term)
+(noun)|cramp iron|strip (generic term)|slip (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|hamper|halter|strangle|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+cramp iron|1
+(noun)|cramp|strip (generic term)|slip (generic term)
+crampbark|1
+(noun)|guelder rose|European cranberrybush|European cranberry bush|cranberry tree|Viburnum opulus|shrub (generic term)|bush (generic term)
+cramped|1
+(adj)|incommodious (similar term)
+crampfish|1
+(noun)|electric ray|numbfish|torpedo|ray (generic term)
+crampon|2
+(noun)|crampoon|grapnel (generic term)|grapple (generic term)|grappler (generic term)|grappling hook (generic term)|grappling iron (generic term)
+(noun)|crampoon|climbing iron|climber|spike (generic term)
+crampoon|2
+(noun)|crampon|grapnel (generic term)|grapple (generic term)|grappler (generic term)|grappling hook (generic term)|grappling iron (generic term)
+(noun)|crampon|climbing iron|climber|spike (generic term)
+cran|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cranberry|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|berry (generic term)|berry (generic term)
+cranberry bush|1
+(noun)|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub (generic term)|bush (generic term)
+cranberry culture|1
+(noun)|culture (generic term)
+cranberry heath|1
+(noun)|native cranberry|groundberry|ground-berry|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+cranberry juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+cranberry sauce|1
+(noun)|condiment (generic term)
+cranberry tree|2
+(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|Viburnum opulus|shrub (generic term)|bush (generic term)
+(noun)|cranberry bush|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub (generic term)|bush (generic term)
+cranch|1
+(verb)|crunch|craunch|grind|press (generic term)|grind down (related term)
+crane|6
+(noun)|Crane|Stephen Crane|writer (generic term)|author (generic term)
+(noun)|Crane|Hart Crane|Harold Hart Crane|poet (generic term)
+(noun)|Grus|Crane|constellation (generic term)
+(noun)|lifting device (generic term)
+(noun)|wading bird (generic term)|wader (generic term)
+(verb)|stretch out|stretch (generic term)|extend (generic term)
+crane's bill|1
+(noun)|cranesbill|geranium (generic term)
+crane-like|1
+(adj)|cranelike|animal (similar term)
+crane fly|1
+(noun)|daddy longlegs|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+cranelike|1
+(adj)|crane-like|animal (similar term)
+cranesbill|1
+(noun)|crane's bill|geranium (generic term)
+crangon|1
+(noun)|Crangon|genus Crangon|arthropod genus (generic term)
+crangonidae|1
+(noun)|Crangonidae|family Crangonidae|arthropod family (generic term)
+cranial|1
+(adj)|bone|os (related term)
+cranial cavity|1
+(noun)|intracranial cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+cranial index|1
+(noun)|cephalic index|breadth index|ratio (generic term)
+cranial nerve|1
+(noun)|nerve (generic term)|nervus (generic term)
+cranial orbit|1
+(noun)|eye socket|orbit|orbital cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+craniata|1
+(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum (generic term)
+craniate|1
+(noun)|vertebrate|chordate (generic term)
+craniologist|1
+(noun)|phrenologist|mountebank (generic term)|charlatan (generic term)
+craniology|1
+(noun)|life science (generic term)|bioscience (generic term)
+craniometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+craniometric|1
+(adj)|craniometrical|physical anthropology (related term)
+craniometric point|1
+(noun)|landmark (generic term)
+craniometrical|1
+(adj)|craniometric|physical anthropology (related term)
+craniometry|1
+(noun)|physical anthropology (generic term)
+craniotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+cranium|1
+(noun)|braincase|brainpan|bone (generic term)|os (generic term)
+crank|10
+(adj)|cranky|tender|tippy|unstable (similar term)
+(noun)|grouch|grump|churl|crosspatch|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|crackpot|nut|nut case|nutcase|fruitcake|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+(noun)|starter|hand tool (generic term)
+(verb)|zigzag|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|crank up|start (generic term)|start up (generic term)
+(verb)|crank up|rotate (generic term)|circumvolve (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+crank call|1
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+crank handle|1
+(noun)|starting handle|crank (generic term)|starter (generic term)
+crank letter|1
+(noun)|letter (generic term)|missive (generic term)
+crank out|1
+(verb)|grind out|produce (generic term)|bring forth (generic term)
+crank up|2
+(verb)|crank|start (generic term)|start up (generic term)
+(verb)|crank|rotate (generic term)|circumvolve (generic term)
+crankcase|1
+(noun)|housing (generic term)
+crankiness|1
+(noun)|crotchetiness|contrariness|grumpiness|ill nature (generic term)
+crankshaft|1
+(noun)|rotating shaft (generic term)|shaft (generic term)
+cranky|2
+(adj)|crank|tender|tippy|unstable (similar term)
+(adj)|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+crannied|1
+(adj)|uncrannied (antonym)
+cranny|2
+(noun)|crevice|crack|fissure|chap|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|hole (generic term)
+crap|3
+(noun)|dirt|shit|shite|poop|turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(noun)|bullshit|bull|Irish bull|horseshit|shit|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+(verb)|stool|defecate|shit|take a shit|take a crap|ca-ca|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+crap-shooter|1
+(noun)|shooter|gambler (generic term)
+crap game|1
+(noun)|crap shooting|crapshoot|craps (generic term)
+crap shooting|1
+(noun)|crapshoot|crap game|craps (generic term)
+crap up|1
+(verb)|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)
+crapaud|1
+(noun)|South American bullfrog|Leptodactylus pentadactylus|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+crape|4
+(noun)|crepe|French pancake|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+(noun)|crepe|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|crepe|cover (generic term)
+(verb)|crimp|frizzle|frizz|kink up|kink|curl (generic term)|wave (generic term)
+crape fern|1
+(noun)|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern (generic term)
+crape jasmine|1
+(noun)|crepe jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub (generic term)|bush (generic term)
+crape myrtle|1
+(noun)|crepe myrtle|crepe flower|Lagerstroemia indica|shrub (generic term)|bush (generic term)
+crapette|1
+(noun)|Russian bank|solitaire (generic term)|patience (generic term)
+crapper|1
+(noun)|toilet|can|commode|pot|potty|stool|throne|plumbing fixture (generic term)
+crappie|2
+(noun)|sunfish (generic term)
+(noun)|sunfish (generic term)|centrarchid (generic term)
+crappy|1
+(adj)|icky|lousy|rotten|shitty|stinking|stinky|bad (similar term)
+craps|2
+(noun)|snake eyes|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|game of chance (generic term)|gambling game (generic term)
+crapshoot|2
+(noun)|risk (generic term)|peril (generic term)|danger (generic term)
+(noun)|crap shooting|crap game|craps (generic term)
+crapshooter|1
+(noun)|gambler (generic term)
+crapulence|1
+(noun)|drink|drinking|boozing|drunkenness|intemperance (generic term)|intemperateness (generic term)
+crapulent|1
+(adj)|crapulous|gluttonous (similar term)
+crapulous|2
+(adj)|crapulent|gluttonous (similar term)
+(adj)|gluttonous (similar term)
+crash|17
+(noun)|clang|clangor|clangour|clangoring|clank|clash|noise (generic term)
+(noun)|wreck|accident (generic term)
+(noun)|collapse|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|smash|hit (generic term)|hitting (generic term)|striking (generic term)
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|move (generic term)
+(verb)|ram|collide (generic term)|clash (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|break up|break apart|disintegrate (generic term)
+(verb)|occupy (generic term)|reside (generic term)|lodge in (generic term)
+(verb)|barge in|gate-crash|intrude (generic term)|irrupt (generic term)
+(verb)|collide (generic term)
+(verb)|dash|hurl (generic term)|hurtle (generic term)|cast (generic term)
+(verb)|change (generic term)
+(verb)|go down|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+(verb)|doss|doss down|bed down (generic term)|bunk down (generic term)
+crash-dive|1
+(verb)|dive (generic term)|plunge (generic term)|plunk (generic term)
+crash barrier|1
+(noun)|barrier (generic term)
+crash course|1
+(noun)|crash program|crash programme|course of study (generic term)|program (generic term)|programme (generic term)|curriculum (generic term)|syllabus (generic term)
+crash dive|1
+(noun)|descent (generic term)
+crash helmet|1
+(noun)|helmet (generic term)
+crash land|1
+(verb)|land (generic term)|set down (generic term)
+crash landing|1
+(noun)|forced landing (generic term)|emergency landing (generic term)
+crash program|1
+(noun)|crash course|crash programme|course of study (generic term)|program (generic term)|programme (generic term)|curriculum (generic term)|syllabus (generic term)
+crash programme|1
+(noun)|crash course|crash program|course of study (generic term)|program (generic term)|programme (generic term)|curriculum (generic term)|syllabus (generic term)
+crasher|1
+(noun)|gatecrasher|unwelcome guest|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+crashing|1
+(adj)|bally|blinking|bloody|blooming|flaming|fucking|unmitigated (similar term)
+craspedia|1
+(noun)|Craspedia|genus Craspedia|asterid dicot genus (generic term)
+crass|1
+(adj)|unrefined (similar term)
+crassitude|1
+(noun)|crassness|insensitivity (generic term)|insensitiveness (generic term)
+crassness|1
+(noun)|crassitude|insensitivity (generic term)|insensitiveness (generic term)
+crassostrea|1
+(noun)|Crassostrea|genus Crassostrea|mollusk genus (generic term)
+crassula|1
+(noun)|Crassula|genus Crassula|plant genus (generic term)
+crassulaceae|1
+(noun)|Crassulaceae|family Crassulaceae|stonecrop family|plant family (generic term)
+crataegus|1
+(noun)|Crataegus|genus Crataegus|rosid dicot genus (generic term)
+crataegus aestivalis|1
+(noun)|mayhaw|summer haw|Crataegus aestivalis|hawthorn (generic term)|haw (generic term)
+crataegus apiifolia|1
+(noun)|parsley haw|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn (generic term)|haw (generic term)
+crataegus biltmoreana|1
+(noun)|scarlet haw|Crataegus biltmoreana|hawthorn (generic term)|haw (generic term)
+crataegus calpodendron|1
+(noun)|blackthorn|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn (generic term)|haw (generic term)
+crataegus coccinea|1
+(noun)|red haw|Crataegus pedicellata|Crataegus coccinea|hawthorn (generic term)|haw (generic term)
+crataegus coccinea mollis|1
+(noun)|red haw|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn (generic term)|haw (generic term)
+crataegus crus-galli|1
+(noun)|cockspur thorn|cockspur hawthorn|Crataegus crus-galli|hawthorn (generic term)|haw (generic term)
+crataegus laevigata|1
+(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn (generic term)|haw (generic term)
+crataegus marshallii|1
+(noun)|parsley haw|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn (generic term)|haw (generic term)
+crataegus mollis|1
+(noun)|red haw|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn (generic term)|haw (generic term)
+crataegus monogyna|1
+(noun)|English hawthorn|Crataegus monogyna|hawthorn (generic term)|haw (generic term)
+crataegus oxyacantha|1
+(noun)|evergreen thorn|Crataegus oxyacantha|hawthorn (generic term)|haw (generic term)
+crataegus oxycantha|1
+(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn (generic term)|haw (generic term)
+crataegus pedicellata|1
+(noun)|red haw|Crataegus pedicellata|Crataegus coccinea|hawthorn (generic term)|haw (generic term)
+crataegus tomentosa|1
+(noun)|blackthorn|pear haw|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn (generic term)|haw (generic term)
+crate|3
+(noun)|box (generic term)
+(noun)|crateful|containerful (generic term)
+(verb)|encase (generic term)|incase (generic term)|case (generic term)|uncrate (antonym)
+crateful|1
+(noun)|crate|containerful (generic term)
+crater|3
+(noun)|volcanic crater|geological formation (generic term)|formation (generic term)
+(noun)|Crater|constellation (generic term)
+(noun)|natural depression (generic term)|depression (generic term)
+crater lake national park|1
+(noun)|Crater Lake National Park|national park (generic term)
+crateva|1
+(noun)|Crateva|genus Crateva|dilleniid dicot genus (generic term)
+craton|1
+(noun)|part (generic term)|piece (generic term)
+craunch|1
+(verb)|crunch|cranch|grind|press (generic term)|grind down (related term)
+cravat|1
+(noun)|neckwear (generic term)
+crave|2
+(verb)|hunger|thirst|starve|lust|desire (generic term)|want (generic term)
+(verb)|beg (generic term)|implore (generic term)|pray (generic term)
+craved|1
+(adj)|desired|wanted (similar term)
+craven|2
+(adj)|recreant|cowardly (similar term)|fearful (similar term)
+(noun)|poltroon|recreant|coward (generic term)
+cravenness|1
+(noun)|cowardice (generic term)|cowardliness (generic term)
+craving|1
+(noun)|desire (generic term)
+craw|1
+(noun)|crop|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+crawdad|2
+(noun)|crayfish|crawfish|ecrevisse|shellfish (generic term)
+(noun)|crayfish|crawfish|crawdaddy|decapod crustacean (generic term)|decapod (generic term)
+crawdaddy|1
+(noun)|crayfish|crawfish|crawdad|decapod crustacean (generic term)|decapod (generic term)
+crawfish|4
+(noun)|crayfish|crawdad|ecrevisse|shellfish (generic term)
+(noun)|crayfish|crawdad|crawdaddy|decapod crustacean (generic term)|decapod (generic term)
+(noun)|spiny lobster|langouste|rock lobster|crayfish|sea crawfish|lobster (generic term)
+(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 (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(noun)|Crawford|Joan Crawford|actress (generic term)
+crawl|8
+(noun)|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|front crawl|Australian crawl|swimming stroke (generic term)
+(noun)|crawling|creep|creeping|locomotion (generic term)|travel (generic term)
+(verb)|creep|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|feel (generic term)
+(verb)|teem (generic term)|pullulate (generic term)|swarm (generic term)
+(verb)|fawn|creep|cringe|cower|grovel|bend (generic term)|flex (generic term)
+(verb)|swim (generic term)
+crawl in|1
+(verb)|go to bed|turn in|bed|kip down|hit the hay|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+crawl space|1
+(noun)|crawlspace|space (generic term)
+crawler|3
+(noun)|sycophant|toady|lackey|flatterer (generic term)|adulator (generic term)
+(noun)|creeper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+crawling|1
+(noun)|crawl|creep|creeping|locomotion (generic term)|travel (generic term)
+crawlspace|1
+(noun)|crawl space|space (generic term)
+crax|1
+(noun)|Crax|genus Crax|bird genus (generic term)
+crayfish|4
+(noun)|spiny lobster|langouste|rock lobster|shellfish (generic term)
+(noun)|crawfish|crawdad|ecrevisse|shellfish (generic term)
+(noun)|crawfish|crawdad|crawdaddy|decapod crustacean (generic term)|decapod (generic term)
+(noun)|spiny lobster|langouste|rock lobster|crawfish|sea crawfish|lobster (generic term)
+crayon|2
+(noun)|wax crayon|writing implement (generic term)
+(verb)|draw (generic term)
+craze|5
+(noun)|fad|furor|furore|cult|rage|fashion (generic term)
+(noun)|delirium|frenzy|fury|hysteria|mania (generic term)|manic disorder (generic term)
+(noun)|crack (generic term)
+(verb)|madden
+(verb)|crack (generic term)
+crazed|1
+(adj)|deranged|half-crazed|insane (similar term)
+crazily|1
+(adv)|insanely|dementedly|madly|sanely (antonym)
+craziness|3
+(noun)|daftness|flakiness|insanity (generic term)
+(noun)|folly|foolishness|madness|stupidity (generic term)
+(noun)|folly|foolery|tomfoolery|lunacy|indulgence|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+crazy|7
+(adj)|brainsick|demented|distracted|disturbed|mad|sick|unbalanced|unhinged|insane (similar term)
+(adj)|half-baked|screwball|softheaded|impractical (similar term)
+(adj)|dotty|gaga|enamored|infatuated|in love|smitten|soft on|taken with|loving (similar term)
+(adj)|excited (similar term)
+(adj)|strange (similar term)|unusual (similar term)
+(adj)|wild|enthusiastic (similar term)
+(noun)|loony|looney|weirdo|lunatic (generic term)|madman (generic term)|maniac (generic term)
+crazy bone|1
+(noun)|funny bone|ulnar nerve (generic term)|cubital nerve (generic term)|nervus ulnaris (generic term)
+crazy glue|1
+(noun)|Crazy Glue|epoxy (generic term)|epoxy resin (generic term)|epoxy glue (generic term)
+crazy horse|1
+(noun)|Crazy Horse|Tashunca-Uitco|Indian chief (generic term)|Indian chieftain (generic term)|Sioux (generic term)|Siouan (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+crazy quilt|1
+(noun)|patchwork (generic term)|patchwork quilt (generic term)
+crazy weed|1
+(noun)|locoweed|crazyweed|legume (generic term)|leguminous plant (generic term)
+crazyweed|1
+(noun)|locoweed|crazy weed|legume (generic term)|leguminous plant (generic term)
+creak|2
+(noun)|creaking|noise (generic term)
+(verb)|squeak|screech|screak|skreak|make noise (generic term)|resound (generic term)|noise (generic term)
+creakily|1
+(adv)|creakingly|screakily
+creaking|2
+(adj)|creaky|screaky|noisy (similar term)
+(noun)|creak|noise (generic term)
+creakingly|1
+(adv)|creakily|screakily
+creaky|3
+(adj)|decrepit|derelict|flea-bitten|run-down|woebegone|worn (similar term)
+(adj)|creaking|screaky|noisy (similar term)
+(adj)|arthritic|rheumatic|rheumatoid|rheumy|unhealthy (similar term)
+cream|8
+(noun)|pick|elite (generic term)|elite group (generic term)
+(noun)|dairy product (generic term)
+(noun)|ointment|emollient|toiletry (generic term)|toilet article (generic term)
+(verb)|beat (generic term)|scramble (generic term)
+(verb)|bat|clobber|drub|thrash|lick|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|put on (generic term)|apply (generic term)
+(verb)|skim|skim off|cream off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|cream off (related term)|skim off (related term)
+(verb)|modify (generic term)
+cream-colored|1
+(adj)|creamy-colored|creamy-white|colored (similar term)|coloured (similar term)|colorful (similar term)
+cream-colored courser|1
+(noun)|Cursorius cursor|courser (generic term)
+cream-of-tartar tree|1
+(noun)|sour gourd|Adansonia gregorii|angiospermous tree (generic term)|flowering tree (generic term)
+cream cheese|1
+(noun)|cheese (generic term)
+cream of tartar|1
+(noun)|tartar|potassium bitartrate|potassium hydrogen tartrate|salt (generic term)
+cream off|2
+(verb)|skim|skim off|cream|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|cream off (related term)|skim off (related term)
+(verb)|skim off|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+cream pitcher|1
+(noun)|creamer|pitcher (generic term)|ewer (generic term)
+cream puff|1
+(noun)|chou|puff (generic term)
+cream sauce|1
+(noun)|white sauce (generic term)|bechamel sauce (generic term)|bechamel (generic term)
+cream soda|1
+(noun)|soft drink (generic term)
+cream violet|1
+(noun)|pale violet|striped violet|Viola striata|violet (generic term)
+creamcups|1
+(noun)|Platystemon californicus|poppy (generic term)
+creamer|1
+(noun)|cream pitcher|pitcher (generic term)|ewer (generic term)
+creamery|1
+(noun)|workplace (generic term)|work (generic term)
+creaminess|1
+(noun)|soupiness|thickness (generic term)
+creamy|2
+(adj)|chromatic (similar term)
+(adj)|thick (similar term)
+creamy-colored|1
+(adj)|cream-colored|creamy-white|colored (similar term)|coloured (similar term)|colorful (similar term)
+creamy-white|1
+(adj)|cream-colored|creamy-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+creamy-yellow|1
+(adj)|chromatic (similar term)
+crease|7
+(noun)|fold|plication|flexure|crimp|bend|angular shape (generic term)|angularity (generic term)
+(noun)|wrinkle|furrow|crinkle|seam|line|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|kris|creese|dagger (generic term)|sticker (generic term)
+(verb)|wrinkle|ruckle|crinkle|scrunch|scrunch up|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|furrow|wrinkle|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|graze|rake|brush (generic term)
+(verb)|rumple|crumple|wrinkle|crinkle|fold (generic term)|fold up (generic term)
+crease-resistant|1
+(adj)|creaseproof|wrinkleproof|wrinkle-resistant|depression|impression|imprint (related term)
+creaseless|1
+(adj)|uncreased|smooth (similar term)
+creaseproof|1
+(adj)|wrinkleproof|crease-resistant|wrinkle-resistant|depression|impression|imprint (related term)
+creashak|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|Arctostaphylos uva-ursi|bearberry (generic term)
+create|5
+(verb)|make|make over (related term)|make up (related term)
+(verb)|act (generic term)|move (generic term)
+(verb)|appoint (generic term)|charge (generic term)
+(verb)|make|make (generic term)|create (generic term)
+(verb)|produce|make
+create by mental act|1
+(verb)|create mentally|make (generic term)|create (generic term)
+create from raw material|1
+(verb)|create from raw stuff|make (generic term)|create (generic term)
+create from raw stuff|1
+(verb)|create from raw material|make (generic term)|create (generic term)
+create mentally|1
+(verb)|create by mental act|make (generic term)|create (generic term)
+create verbally|1
+(verb)|make (generic term)|create (generic term)
+creatin|1
+(noun)|creatine|amino acid (generic term)|aminoalkanoic acid (generic term)
+creatine|1
+(noun)|creatin|amino acid (generic term)|aminoalkanoic acid (generic term)
+creatine phosphate|1
+(noun)|phosphocreatine|creatine phosphoric acid|organic compound (generic term)
+creatine phosphoric acid|1
+(noun)|phosphocreatine|creatine phosphate|organic compound (generic term)
+creating by mental acts|1
+(noun)|creation (generic term)|creative activity (generic term)
+creating by removal|1
+(noun)|creation (generic term)|creative activity (generic term)
+creating from raw materials|1
+(noun)|creation (generic term)|creative activity (generic term)
+creation|6
+(noun)|creative activity|activity (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|conception|beginning (generic term)
+(noun)|initiation|founding|foundation|institution|origination|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|Creation|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|universe|existence|world|cosmos|macrocosm|natural object (generic term)
+creation science|1
+(noun)|creationism (generic term)
+creationism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+creative|2
+(adj)|originative|fanciful (similar term)|notional (similar term)|fictive (similar term)|imaginative (similar term)|ingenious (similar term)|inventive (similar term)|yeasty (similar term)|original (related term)|productive (related term)|uncreative (antonym)
+(adj)|constructive (similar term)
+creative activity|1
+(noun)|creation|activity (generic term)
+creative person|1
+(noun)|artist|creator (generic term)
+creative thinker|1
+(noun)|thinker|mind|intellectual (generic term)|intellect (generic term)
+creative thinking|1
+(noun)|creativity|creativeness|ability (generic term)|power (generic term)|uncreativeness (antonym)
+creativeness|1
+(noun)|creativity|creative thinking|ability (generic term)|power (generic term)|uncreativeness (antonym)
+creativity|1
+(noun)|creativeness|creative thinking|ability (generic term)|power (generic term)|uncreativeness (antonym)
+creator|2
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+creature|3
+(noun)|animal|animate being|beast|brute|fauna|organism (generic term)|being (generic term)
+(noun)|wight|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|tool|puppet|slave (generic term)
+creature comforts|1
+(noun)|comforts|amenities|conveniences|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+creche|2
+(noun)|foundling hospital|hospital (generic term)|infirmary (generic term)
+(noun)|representation (generic term)
+crecy|1
+(noun)|Crecy|battle of Crecy|pitched battle (generic term)
+cred|1
+(noun)|street credibility|street cred|credibility (generic term)|credibleness (generic term)|believability (generic term)
+credal|1
+(adj)|creedal|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+credence|2
+(noun)|acceptance|attitude (generic term)|mental attitude (generic term)
+(noun)|credenza|buffet (generic term)|counter (generic term)|sideboard (generic term)
+credendum|1
+(noun)|article of faith|dogma (generic term)|tenet (generic term)
+credential|1
+(noun)|certificate|certification|credentials|document (generic term)|written document (generic term)|papers (generic term)
+credentialed|1
+(adj)|certificated|documented|certified (similar term)
+credentials|1
+(noun)|certificate|certification|credential|document (generic term)|written document (generic term)|papers (generic term)
+credenza|1
+(noun)|credence|buffet (generic term)|counter (generic term)|sideboard (generic term)
+credibility|1
+(noun)|credibleness|believability|quality (generic term)|incredibility (antonym)
+credible|3
+(adj)|believable|likely (similar term)|presumptive (similar term)|plausible (related term)|thinkable (related term)|incredible (antonym)
+(adj)|credulous (similar term)
+(adj)|convincing (similar term)
+credibleness|1
+(noun)|credibility|believability|quality (generic term)|incredibility (antonym)
+credibly|1
+(adv)|believably|plausibly|probably|incredibly (antonym)
+credit|12
+(noun)|recognition|approval (generic term)|commendation (generic term)
+(noun)|assets (generic term)
+(noun)|credit entry|entry (generic term)|accounting entry (generic term)|ledger entry (generic term)|debit (antonym)
+(noun)|accomplishment (generic term)|achievement (generic term)
+(noun)|deferred payment|payment (generic term)|cash (antonym)
+(noun)|course credit|attainment (generic term)
+(noun)|citation|cite|acknowledgment|reference|mention|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|title (generic term)
+(verb)|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|accredit|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|account (generic term)|calculate (generic term)|debit (antonym)
+(verb)|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+credit account|1
+(noun)|charge account|open account|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)
+credit analyst|1
+(noun)|analyst (generic term)
+credit application|1
+(noun)|application (generic term)
+credit bureau|1
+(noun)|agency (generic term)
+credit card|1
+(noun)|charge card|charge plate|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)|positive identification (generic term)
+credit crunch|1
+(noun)|liquidity crisis|squeeze|financial condition (generic term)|economic condition (generic term)
+credit entry|1
+(noun)|credit|entry (generic term)|accounting entry (generic term)|ledger entry (generic term)|debit (antonym)
+credit hour|1
+(noun)|semester hour|credit (generic term)|course credit (generic term)
+credit line|2
+(noun)|line of credit|bank line|line|personal credit line|personal line of credit|credit (generic term)
+(noun)|by-line|line (generic term)
+credit order|1
+(noun)|bill-me order|order (generic term)|purchase order (generic term)
+credit side|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+credit system|1
+(noun)|system (generic term)
+credit union|1
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+creditable|1
+(adj)|worthy (similar term)
+creditably|1
+(adv)|respectably
+credited|1
+(adj)|attributable (similar term)
+creditor|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|debtor (antonym)
+credits|1
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)|list (generic term)|listing (generic term)
+creditworthiness|1
+(noun)|trustworthiness (generic term)|trustiness (generic term)
+creditworthy|1
+(adj)|responsible|trustworthy (similar term)|trusty (similar term)
+credo|1
+(noun)|creed|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+credulity|1
+(noun)|trust (generic term)|trustingness (generic term)|trustfulness (generic term)
+credulous|2
+(adj)|credible (similar term)|overcredulous (similar term)|unquestioning (similar term)|credible (related term)|believable (related term)|naive (related term)|naif (related term)|trustful (related term)|trusting (related term)|incredulous (antonym)
+(adj)|naive (similar term)|naif (similar term)
+credulously|1
+(adv)|believingly|unbelievingly (antonym)|incredulously (antonym)
+credulousness|1
+(noun)|gullibility|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+cree|2
+(noun)|Cree|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Cree|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+creed|2
+(noun)|credo|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|religious doctrine|church doctrine|gospel|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+creedal|1
+(adj)|credal|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+creek|2
+(noun)|brook|stream (generic term)|watercourse (generic term)
+(noun)|Creek|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+creek bed|1
+(noun)|streambed|bed (generic term)|bottom (generic term)
+creek confederacy|1
+(noun)|Creek Confederacy|confederation (generic term)|confederacy (generic term)|federation (generic term)
+creel|1
+(noun)|basket (generic term)|handbasket (generic term)
+creep|8
+(noun)|weirdo|weirdie|weirdy|spook|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|change of location (generic term)|travel (generic term)
+(noun)|pen (generic term)
+(noun)|crawl|crawling|creeping|locomotion (generic term)|travel (generic term)
+(verb)|crawl|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|sneak|mouse|pussyfoot|walk (generic term)|sneak away (related term)|sneak out (related term)
+(verb)|grow over|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|fawn|crawl|cringe|cower|grovel|bend (generic term)|flex (generic term)
+creep feed|1
+(noun)|feed (generic term)|provender (generic term)
+creep in|1
+(verb)|sneak in|penetrate (generic term)|perforate (generic term)
+creep up|1
+(verb)|sneak up|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+creeper|3
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+(noun)|crawler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|tree creeper|oscine (generic term)|oscine bird (generic term)
+creepiness|1
+(noun)|touch (generic term)|touch sensation (generic term)|tactual sensation (generic term)|tactile sensation (generic term)|feeling (generic term)
+creeping|1
+(noun)|crawl|crawling|creep|locomotion (generic term)|travel (generic term)
+creeping bellflower|1
+(noun)|Campanula rapunculoides|campanula (generic term)|bellflower (generic term)
+creeping bent|1
+(noun)|creeping bentgrass|Agrostis palustris|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+creeping bentgrass|1
+(noun)|creeping bent|Agrostis palustris|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+creeping bugle|1
+(noun)|Ajuga reptans|bugle (generic term)|bugleweed (generic term)
+creeping buttercup|1
+(noun)|creeping crowfoot|Ranunculus repens|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+creeping charlie|1
+(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife (generic term)
+creeping crowfoot|1
+(noun)|creeping buttercup|Ranunculus repens|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+creeping fern|1
+(noun)|Hartford fern|Lygodium palmatum|climbing fern (generic term)
+creeping jenny|1
+(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife (generic term)
+creeping juniper|1
+(noun)|Juniperus horizontalis|juniper (generic term)
+creeping lily|1
+(noun)|gloriosa|glory lily|climbing lily|Gloriosa superba|poisonous plant (generic term)
+creeping oxalis|1
+(noun)|creeping wood sorrel|Oxalis corniculata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+creeping snowberry|1
+(noun)|moxie plum|maidenhair berry|Gaultheria hispidula|shrublet (generic term)
+creeping soft grass|1
+(noun)|Holcus mollis|grass (generic term)
+creeping spike rush|1
+(noun)|Eleocharis palustris|spike rush (generic term)
+creeping st john's wort|1
+(noun)|creeping St John's wort|Hypericum calycinum|St John's wort (generic term)
+creeping thistle|1
+(noun)|Canada thistle|Cirsium arvense|plume thistle (generic term)|plumed thistle (generic term)
+creeping thyme|1
+(noun)|wild thyme|Thymus serpyllum|thyme (generic term)
+creeping willow|1
+(noun)|Salix repens|willow (generic term)|willow tree (generic term)
+creeping windmill grass|1
+(noun)|windmill grass|star grass|Chloris truncata|finger grass (generic term)
+creeping wintergreen|1
+(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|Gaultheria procumbens|shrublet (generic term)
+creeping wood sorrel|1
+(noun)|creeping oxalis|Oxalis corniculata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+creeping zinnia|1
+(noun)|Sanvitalia procumbens|herb (generic term)|herbaceous plant (generic term)
+creeps|2
+(noun)|animal disease (generic term)
+(noun)|fear (generic term)|fearfulness (generic term)|fright (generic term)
+creepy|2
+(adj)|offensive (similar term)
+(adj)|creepy-crawly|alarming (similar term)
+creepy-crawlies|1
+(noun)|dislike (generic term)
+creepy-crawly|2
+(adj)|creepy|alarming (similar term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+creese|1
+(noun)|kris|crease|dagger (generic term)|sticker (generic term)
+cremains|1
+(noun)|cadaver (generic term)|corpse (generic term)|stiff (generic term)|clay (generic term)|remains (generic term)
+cremate|1
+(verb)|burn (generic term)|fire (generic term)|burn down (generic term)
+cremation|1
+(noun)|incineration (generic term)
+cremation chamber|1
+(noun)|crematory|crematorium|furnace (generic term)
+crematorium|2
+(noun)|crematory|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+(noun)|crematory|cremation chamber|furnace (generic term)
+crematory|2
+(noun)|crematorium|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+(noun)|crematorium|cremation chamber|furnace (generic term)
+creme anglais|1
+(noun)|custard (generic term)
+creme brulee|1
+(noun)|custard (generic term)
+creme caramel|1
+(noun)|custard (generic term)
+creme de cacao|1
+(noun)|liqueur (generic term)|cordial (generic term)
+creme de fraise|1
+(noun)|liqueur (generic term)|cordial (generic term)
+creme de menthe|1
+(noun)|liqueur (generic term)|cordial (generic term)
+cremona|1
+(noun)|Cremona|city (generic term)|metropolis (generic term)|urban center (generic term)
+crenate|1
+(adj)|crenated|scalloped|rough (similar term)
+crenate leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+crenated|1
+(adj)|crenate|scalloped|rough (similar term)
+crenation|1
+(noun)|scallop|crenature|crenel|crenelle|curve (generic term)|curved shape (generic term)
+crenature|1
+(noun)|scallop|crenation|crenel|crenelle|curve (generic term)|curved shape (generic term)
+crenel|3
+(noun)|scallop|crenation|crenature|crenelle|curve (generic term)|curved shape (generic term)
+(noun)|crenelle|space (generic term)
+(verb)|crenelate|crenellate|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+crenelate|2
+(adj)|embattled|battlemented|castled|castellated|crenelated|crenellated|crenellate|indented|fancy (similar term)
+(verb)|crenel|crenellate|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+crenelated|1
+(adj)|embattled|battlemented|castled|castellated|crenellated|crenelate|crenellate|indented|fancy (similar term)
+crenelation|2
+(noun)|battlement|crenellation|rampart (generic term)|bulwark (generic term)|wall (generic term)
+(noun)|crenellation|construction (generic term)|building (generic term)
+crenellate|2
+(adj)|embattled|battlemented|castled|castellated|crenelated|crenellated|crenelate|indented|fancy (similar term)
+(verb)|crenel|crenelate|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+crenellated|1
+(adj)|embattled|battlemented|castled|castellated|crenelated|crenelate|crenellate|indented|fancy (similar term)
+crenellation|2
+(noun)|battlement|crenelation|rampart (generic term)|bulwark (generic term)|wall (generic term)
+(noun)|crenelation|construction (generic term)|building (generic term)
+crenelle|2
+(noun)|scallop|crenation|crenature|crenel|curve (generic term)|curved shape (generic term)
+(noun)|crenel|space (generic term)
+crenulate|1
+(adj)|crenulated|rough (similar term)
+crenulated|1
+(adj)|crenulate|rough (similar term)
+creole|4
+(adj)|Creole|natural language|tongue (related term)
+(adj)|Creole|American (related term)
+(noun)|Creole|American (generic term)
+(noun)|natural language (generic term)|tongue (generic term)
+creole-fish|1
+(noun)|Paranthias furcifer|grouper (generic term)
+creolize|1
+(verb)|change (generic term)
+creon|1
+(noun)|Creon|mythical being (generic term)
+creosol|1
+(noun)|phenol (generic term)
+creosote|3
+(noun)|organic compound (generic term)
+(noun)|coal-tar creosote|organic compound (generic term)
+(verb)|process (generic term)|treat (generic term)
+creosote bush|1
+(noun)|coville|hediondilla|Larrea tridentata|shrub (generic term)|bush (generic term)
+crepe|4
+(noun)|crepe paper|paper (generic term)
+(noun)|crape|French pancake|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+(noun)|crape|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|crape|cover (generic term)
+crepe de chine|1
+(noun)|crepe de Chine|crepe (generic term)|crape (generic term)
+crepe fern|1
+(noun)|king fern|Todea barbara|fern (generic term)
+crepe flower|1
+(noun)|crape myrtle|crepe myrtle|Lagerstroemia indica|shrub (generic term)|bush (generic term)
+crepe gardenia|1
+(noun)|crape jasmine|crepe jasmine|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub (generic term)|bush (generic term)
+crepe jasmine|1
+(noun)|crape jasmine|crepe gardenia|pinwheel flower|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub (generic term)|bush (generic term)
+crepe marocain|1
+(noun)|marocain|crepe (generic term)|crape (generic term)
+crepe myrtle|1
+(noun)|crape myrtle|crepe flower|Lagerstroemia indica|shrub (generic term)|bush (generic term)
+crepe paper|1
+(noun)|crepe|paper (generic term)
+crepe rubber|1
+(noun)|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+crepe suzette|1
+(noun)|crepe Suzette|crape (generic term)|crepe (generic term)|French pancake (generic term)
+crepis|1
+(noun)|Crepis|genus Crepis|asterid dicot genus (generic term)
+crepitate|1
+(verb)|crackle|rattle (generic term)
+crepitation|1
+(noun)|crackle|crackling|noise (generic term)
+crepitation rale|1
+(noun)|rattle (generic term)|rattling (generic term)|rale (generic term)|symptom (generic term)
+crepuscle|1
+(noun)|twilight|dusk|gloaming|gloam|nightfall|evenfall|fall|crepuscule|hour (generic term)|time of day (generic term)
+crepuscular|1
+(adj)|dark (similar term)
+crepuscule|1
+(noun)|twilight|dusk|gloaming|gloam|nightfall|evenfall|fall|crepuscle|hour (generic term)|time of day (generic term)
+crescendo|3
+(adj)|increasing (similar term)
+(noun)|volume (generic term)|loudness (generic term)|intensity (generic term)
+(verb)|increase (generic term)|decrescendo (antonym)
+crescent|2
+(adj)|crescent-shaped|semilunar|lunate|rounded (similar term)
+(noun)|curve (generic term)|curved shape (generic term)
+crescent-cell anaemia|1
+(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|drepanocytic anemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+crescent-cell anemia|1
+(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+crescent-shaped|1
+(adj)|crescent|semilunar|lunate|rounded (similar term)
+crescent roll|1
+(noun)|croissant|bun (generic term)|roll (generic term)
+crescent wrench|1
+(noun)|adjustable wrench (generic term)|adjustable spanner (generic term)
+crescentia|1
+(noun)|Crescentia|genus Crescentia|asterid dicot genus (generic term)
+crescentia cujete|1
+(noun)|calabash|calabash tree|Crescentia cujete|tree (generic term)
+cresol|1
+(noun)|methyl phenol|phenol (generic term)
+cress|2
+(noun)|cress plant|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|salad green (generic term)|salad greens (generic term)
+cress green|1
+(adj)|cresson|watercress|chromatic (similar term)
+cress plant|1
+(noun)|cress|crucifer (generic term)|cruciferous plant (generic term)
+cresson|1
+(adj)|cress green|watercress|chromatic (similar term)
+crest|7
+(noun)|line (generic term)
+(noun)|peak|crown|top|tip|summit|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|crown|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(noun)|emblem (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(verb)|cap|lie (generic term)
+(verb)|peak (generic term)
+crested|3
+(adj)|adorned (similar term)|decorated (similar term)
+(adj)|topknotted|tufted|adorned (similar term)|decorated (similar term)
+(adj)|plumed|adorned (similar term)|decorated (similar term)
+crested cariama|1
+(noun)|seriema|Cariama cristata|wading bird (generic term)|wader (generic term)
+crested coral root|1
+(noun)|Hexalectris spicata|orchid (generic term)|orchidaceous plant (generic term)
+crested myna|1
+(noun)|Acridotheres tristis|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+crested penguin|1
+(noun)|rock hopper|penguin (generic term)
+crested screamer|1
+(noun)|screamer (generic term)
+crested swift|1
+(noun)|tree swift|apodiform bird (generic term)
+crested wheat grass|1
+(noun)|crested wheatgrass|fairway crested wheat grass|Agropyron cristatum|wheatgrass (generic term)|wheat-grass (generic term)
+crested wheatgrass|1
+(noun)|crested wheat grass|fairway crested wheat grass|Agropyron cristatum|wheatgrass (generic term)|wheat-grass (generic term)
+crestfallen|1
+(adj)|chapfallen|chopfallen|deflated|dejected (similar term)
+crestless wave|1
+(noun)|swell|wave (generic term)|moving ridge (generic term)
+cretaceous|3
+(adj)|calcite (related term)
+(adj)|Cretaceous|period|geological period (related term)
+(noun)|Cretaceous|Cretaceous period|period (generic term)|geological period (generic term)
+cretaceous period|1
+(noun)|Cretaceous|Cretaceous period|period (generic term)|geological period (generic term)
+cretan|1
+(noun)|Cretan|European (generic term)
+cretan dittany|1
+(noun)|dittany of crete|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum (generic term)
+crete|1
+(noun)|Crete|Kriti|island (generic term)
+crete dittany|1
+(noun)|dittany of crete|cretan dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum (generic term)
+cretin|1
+(noun)|idiot|imbecile|moron|changeling|half-wit|retard|simpleton (generic term)|simple (generic term)
+cretinism|1
+(noun)|hypothyroidism (generic term)
+cretinous|1
+(adj)|retarded (similar term)
+cretonne|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+creutzfeldt-jakob disease|1
+(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+crevalle jack|1
+(noun)|jack crevalle|Caranx hippos|jack (generic term)
+crevasse|1
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+crevice|2
+(noun)|cranny|crack|fissure|chap|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|crack|cleft|fissure|scissure|opening (generic term)|gap (generic term)
+crew|5
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|gang|work party|unit (generic term)|social unit (generic term)
+(noun)|crowd|gang|bunch|gathering (generic term)|assemblage (generic term)
+(noun)|team (generic term)|squad (generic term)
+(verb)|man (generic term)
+crew cut|1
+(noun)|flattop|haircut (generic term)
+crew member|1
+(noun)|crewman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+crew neck|1
+(noun)|crew neckline|neckline (generic term)
+crew neckline|1
+(noun)|crew neck|neckline (generic term)
+crewelwork|1
+(noun)|embroidery (generic term)|fancywork (generic term)
+crewet|1
+(noun)|cruet|bottle (generic term)
+crewman|3
+(noun)|sailor|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|crew member|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|employee (generic term)
+crex|1
+(noun)|Crex|genus Crex|bird genus (generic term)
+crex crex|1
+(noun)|corncrake|land rail|Crex crex|crake (generic term)
+crib|8
+(noun)|cot|baby bed (generic term)|baby's bed (generic term)
+(noun)|pony|trot|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|bin (generic term)|granary (generic term)|garner (generic term)
+(noun)|playing card (generic term)
+(noun)|cribbage|card game (generic term)|cards (generic term)
+(verb)|cheat (generic term)|chisel (generic term)
+(verb)|plagiarize (generic term)|plagiarise (generic term)|lift (generic term)
+(verb)|line (generic term)
+crib death|1
+(noun)|sudden infant death syndrome|SIDS|infant death|cot death|death (generic term)|sleep apnea (generic term)
+cribbage|1
+(noun)|crib|card game (generic term)|cards (generic term)
+cribbage board|1
+(noun)|board (generic term)|gameboard (generic term)
+cricetidae|1
+(noun)|Cricetidae|family Cricetidae|mammal family (generic term)
+cricetus|1
+(noun)|Cricetus|genus Cricetus|mammal genus (generic term)
+cricetus cricetus|1
+(noun)|Eurasian hamster|Cricetus cricetus|hamster (generic term)
+crichton|1
+(noun)|Crichton|James Crichton|The Admirable Crichton|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+cricify|1
+(verb)|mortify|subdue|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+crick|3
+(noun)|kink|rick|wrick|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist (generic term)
+(verb)|twist (generic term)
+cricket|3
+(noun)|orthopterous insect (generic term)|orthopteron (generic term)|orthopteran (generic term)
+(noun)|field game (generic term)
+(verb)|play (generic term)
+cricket-bat willow|1
+(noun)|Salix alba caerulea|willow (generic term)|willow tree (generic term)
+cricket-like|1
+(adj)|animal (similar term)
+cricket ball|1
+(noun)|ball (generic term)|cricket equipment (generic term)
+cricket bat|1
+(noun)|bat|cricket equipment (generic term)
+cricket equipment|1
+(noun)|sports equipment (generic term)
+cricket frog|1
+(noun)|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+cricket match|1
+(noun)|match (generic term)
+cricketer|1
+(noun)|athlete (generic term)|jock (generic term)
+crier|3
+(noun)|weeper|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|town crier|announcer (generic term)
+(noun)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)|roarer (generic term)|bawler (generic term)|bellower (generic term)|screamer (generic term)|screecher (generic term)|shouter (generic term)|yeller (generic term)
+crime|2
+(noun)|law-breaking|transgression (generic term)|evildoing (generic term)
+(noun)|transgression (generic term)|evildoing (generic term)
+crime rate|1
+(noun)|rate (generic term)
+crime syndicate|1
+(noun)|syndicate|mob|family|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+crime wave|1
+(noun)|rise (generic term)
+crimea|1
+(noun)|Crimea|peninsula (generic term)
+crimea-congo hemorrhagic fever|1
+(noun)|Crimea-Congo hemorrhagic fever|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+crimean war|1
+(noun)|Crimean War|war (generic term)|warfare (generic term)
+criminal|4
+(adj)|condemnable|deplorable|reprehensible|vicious|wrong (similar term)
+(adj)|guilty (similar term)
+(adj)|felonious|illegal (similar term)
+(noun)|felon|crook|outlaw|malefactor|wrongdoer (generic term)|offender (generic term)
+criminal congress|1
+(noun)|unlawful carnal knowledge|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+criminal contempt|1
+(noun)|contempt of court (generic term)
+criminal conversation|1
+(noun)|adultery|fornication|extramarital sex (generic term)|free love (generic term)
+criminal court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+criminal intelligence services of canada|1
+(noun)|Criminal Intelligence Services of Canada|CISC|international intelligence agency (generic term)
+criminal investigation command|1
+(noun)|Criminal Investigation Command|CID|law enforcement agency (generic term)
+criminal law|1
+(noun)|legal code (generic term)
+criminal maintenance|1
+(noun)|maintenance|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+criminal negligence|1
+(noun)|culpable negligence|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+criminal possession|1
+(noun)|possession (generic term)|ownership (generic term)
+criminal prosecution|1
+(noun)|prosecution|legal action (generic term)|action (generic term)|action at law (generic term)|defense (antonym)
+criminal record|1
+(noun)|record|list (generic term)|listing (generic term)
+criminal suit|1
+(noun)|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+criminalisation|1
+(noun)|criminalization|legislation (generic term)|legislating (generic term)|lawmaking (generic term)|decriminalisation (antonym)|decriminalization (antonym)
+criminalise|1
+(verb)|outlaw|criminalize|illegalize|illegalise|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)|decriminalise (antonym)|decriminalize (antonym)|legalize (antonym)
+criminalism|1
+(noun)|criminality|criminalness|guilt (generic term)|guiltiness (generic term)
+criminality|1
+(noun)|criminalism|criminalness|guilt (generic term)|guiltiness (generic term)
+criminalization|1
+(noun)|criminalisation|legislation (generic term)|legislating (generic term)|lawmaking (generic term)|decriminalisation (antonym)|decriminalization (antonym)
+criminalize|2
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|outlaw|criminalise|illegalize|illegalise|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)|decriminalise (antonym)|decriminalize (antonym)|legalize (antonym)
+criminally|1
+(adv)|reprehensively
+criminalness|1
+(noun)|criminalism|criminality|guilt (generic term)|guiltiness (generic term)
+criminate|2
+(verb)|accuse|impeach|incriminate|charge (generic term)|accuse (generic term)
+(verb)|reprimand|censure|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+criminative|1
+(adj)|criminatory|incriminating|incriminatory|inculpatory (similar term)|inculpative (similar term)
+criminatory|1
+(adj)|criminative|incriminating|incriminatory|inculpatory (similar term)|inculpative (similar term)
+criminological|1
+(adj)|sociology (related term)
+criminologist|1
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+criminology|1
+(noun)|sociology (generic term)
+crimp|5
+(noun)|fold|crease|plication|flexure|bend|angular shape (generic term)|angularity (generic term)
+(noun)|crimper|kidnapper (generic term)|kidnaper (generic term)|abductor (generic term)|snatcher (generic term)
+(noun)|lock (generic term)|curl (generic term)|ringlet (generic term)|whorl (generic term)
+(verb)|pinch|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|crape|frizzle|frizz|kink up|kink|curl (generic term)|wave (generic term)
+crimper|2
+(noun)|crimp|kidnapper (generic term)|kidnaper (generic term)|abductor (generic term)|snatcher (generic term)
+(noun)|curler|hair curler|roller|mechanical device (generic term)
+crimson|5
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|ruby|ruby-red|scarlet|chromatic (similar term)
+(adj)|red|violent|bloody (similar term)
+(adj)|red|reddened|red-faced|flushed|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|ruby|deep red|red (generic term)|redness (generic term)
+(verb)|blush|flush|redden|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+crimson-magenta|1
+(adj)|chromatic (similar term)
+crimson-purple|1
+(adj)|chromatic (similar term)
+crimson-yellow|1
+(adj)|chromatic (similar term)
+crimson clover|1
+(noun)|Italian clover|Trifolium incarnatum|clover (generic term)|trefoil (generic term)
+cringe|2
+(verb)|flinch|squinch|funk|shrink|wince|recoil|quail|move (generic term)
+(verb)|fawn|crawl|creep|cower|grovel|bend (generic term)|flex (generic term)
+cringing|1
+(adj)|groveling|grovelling|wormlike|wormy|submissive (similar term)
+cringle|1
+(noun)|eyelet|loop|grommet|grummet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+crinion|1
+(noun)|trichion|point (generic term)
+crinkle|3
+(noun)|wrinkle|furrow|crease|seam|line|depression (generic term)|impression (generic term)|imprint (generic term)
+(verb)|wrinkle|ruckle|crease|scrunch|scrunch up|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|rumple|crumple|wrinkle|crease|fold (generic term)|fold up (generic term)
+crinkle-root|1
+(noun)|crinkleroot|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+crinkle root|1
+(noun)|crinkleroot|crinkle-root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+crinkled|1
+(adj)|crinkly|rippled|wavy|wavelike|uneven (similar term)
+crinkleroot|1
+(noun)|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+crinkly|1
+(adj)|crinkled|rippled|wavy|wavelike|uneven (similar term)
+crinoid|2
+(adj)|class (related term)
+(noun)|echinoderm (generic term)
+crinoidea|1
+(noun)|Crinoidea|class Crinoidea|class (generic term)
+crinoline|3
+(noun)|hoopskirt|skirt (generic term)
+(noun)|petticoat (generic term)|half-slip (generic term)|underskirt (generic term)
+(noun)|crinoline fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+crinoline fabric|1
+(noun)|crinoline|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+criollo|2
+(noun)|Spanish American (generic term)|Hispanic American (generic term)|Hispanic (generic term)
+(noun)|cocoa (generic term)
+cripple|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|stultify|weaken (generic term)
+(verb)|lame|maim (generic term)
+crippled|1
+(adj)|halt|halting|lame|gimpy|game|unfit (similar term)
+crippling|1
+(adj)|disabling|incapacitating|unhealthful (similar term)
+crisis|2
+(noun)|situation (generic term)
+(noun)|juncture (generic term)|occasion (generic term)
+crisis intervention|1
+(noun)|psychotherapy (generic term)
+crisp|9
+(adj)|sharp|distinct (similar term)
+(adj)|crispy|tender (similar term)
+(adj)|frosty|nipping|nippy|snappy|parky|cold (similar term)
+(adj)|firm|crunchy|fresh (similar term)
+(adj)|frizzly|frizzy|kinky|nappy|curly (similar term)
+(adj)|curt|laconic|terse|concise (similar term)
+(noun)|chip|potato chip|Saratoga chip|snack food (generic term)
+(verb)|wrinkle|ruckle|crease|crinkle|scrunch|scrunch up|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|crispen|toast|heat (generic term)|heat up (generic term)
+crispate|1
+(adj)|rough (similar term)
+crispen|1
+(verb)|toast|crisp|heat (generic term)|heat up (generic term)
+crisphead lettuce|1
+(noun)|iceberg lettuce|iceberg|lettuce (generic term)
+crispin|1
+(noun)|Crispin|Saint Crispin|St. Crispin|patron saint (generic term)
+crispiness|1
+(noun)|brittleness|crispness|breakableness (generic term)
+crisply|1
+(adv)|sharply
+crispness|3
+(noun)|freshness (generic term)
+(noun)|terseness (generic term)
+(noun)|brittleness|crispiness|breakableness (generic term)
+crispy|1
+(adj)|crisp|tender (similar term)
+crisscross|5
+(adj)|crisscrossed|reticulate (similar term)|reticular (similar term)
+(noun)|cross|mark|marking (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|line (generic term)
+(verb)|mark (generic term)
+crisscrossed|1
+(adj)|crisscross|reticulate (similar term)|reticular (similar term)
+cristal|1
+(noun)|Adam|ecstasy|XTC|go|disco biscuit|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+cristobal balenciaga|1
+(noun)|Balenciaga|Cristobal Balenciaga|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+cristobal colon|1
+(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator (generic term)
+cristobalite|1
+(noun)|mineral (generic term)
+cristoforo colombo|1
+(noun)|Columbus|Christopher Columbus|Cristoforo Colombo|Cristobal Colon|navigator (generic term)
+criterial|1
+(adj)|criterional|standard (similar term)
+criterion|2
+(noun)|standard|measure|touchstone|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|standard|ideal (generic term)
+criterional|1
+(adj)|criterial|standard (similar term)
+crith|1
+(noun)|weight unit (generic term)|weight (generic term)
+critic|3
+(noun)|professional (generic term)|professional person (generic term)
+(noun)|evaluator (generic term)|judge (generic term)
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+critical|7
+(adj)|captious (similar term)|faultfinding (similar term)|caviling (similar term)|carping (similar term)|nitpicking (similar term)|pettifogging (similar term)|quibbling (similar term)|censorious (similar term)|deprecative (similar term)|hypercritical (similar term)|overcritical (similar term)|scathing (similar term)|blistering (similar term)|scalding (similar term)|vituperative (similar term)|sarcastic (related term)|unfavorable (related term)|unfavourable (related term)|uncritical (antonym)
+(adj)|supercritical (similar term)|noncritical (antonym)
+(adj)|appraising (similar term)|evaluative (similar term)|discriminative (similar term)|judicial (similar term)|discerning (related term)|scholarly (related term)|uncritical (antonym)
+(adj)|vital|indispensable (similar term)
+(adj)|decisive|crucial (similar term)|important (similar term)
+(adj)|acute (similar term)|dangerous (similar term)|grave (similar term)|grievous (similar term)|serious (similar term)|severe (similar term)|life-threatening (similar term)|desperate (similar term)|dire (similar term)|crucial (related term)|important (related term)|noncritical (antonym)
+(adj)|critical appraisal|critical analysis (related term)
+critical analysis|1
+(noun)|critical appraisal|appraisal (generic term)|assessment (generic term)
+critical angle|1
+(noun)|angle of incidence (generic term)|incidence angle (generic term)
+critical appraisal|1
+(noun)|critical analysis|appraisal (generic term)|assessment (generic term)
+critical mass|2
+(noun)|amount (generic term)
+(noun)|mass (generic term)
+critical point|1
+(noun)|juncture|crossroads|crisis (generic term)
+critical review|1
+(noun)|review|critique|review article|criticism (generic term)|literary criticism (generic term)
+criticality|2
+(noun)|criticalness|cruciality|urgency (generic term)
+(noun)|juncture (generic term)|critical point (generic term)|crossroads (generic term)
+critically|1
+(adv)|uncritically (antonym)
+criticalness|1
+(noun)|criticality|cruciality|urgency (generic term)
+criticise|2
+(verb)|knock|criticize|pick apart|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)|praise (antonym)
+(verb)|criticize|act (generic term)
+criticism|3
+(noun)|unfavorable judgment|disapproval (generic term)
+(noun)|critique|critical appraisal (generic term)|critical analysis (generic term)
+(noun)|literary criticism|writing (generic term)|written material (generic term)|piece of writing (generic term)
+criticize|2
+(verb)|knock|criticise|pick apart|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)|praise (antonym)
+(verb)|criticise|act (generic term)
+critique|3
+(noun)|review|critical review|review article|criticism (generic term)|literary criticism (generic term)
+(noun)|criticism|critical appraisal (generic term)|critical analysis (generic term)
+(verb)|review|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+critter|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+critter sitter|1
+(noun)|pet sitter|custodian (generic term)|keeper (generic term)|steward (generic term)
+crius|1
+(noun)|Crius|Titan (generic term)
+crixivan|1
+(noun)|indinavir|Crixivan|protease inhibitor (generic term)|PI (generic term)
+crna gora|1
+(noun)|Montenegro|Crna Gora|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+cro|1
+(noun)|oscilloscope|scope|cathode-ray oscilloscope|CRO|electronic equipment (generic term)
+cro-magnon|1
+(noun)|Cro-magnon|Homo sapiens (generic term)
+croak|4
+(noun)|croaking|utterance (generic term)|vocalization (generic term)
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|cronk|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|murmur|mutter|grumble|gnarl|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+croaker|2
+(noun)|saltwater fish (generic term)
+(noun)|sciaenid fish (generic term)|sciaenid (generic term)
+croaking|2
+(adj)|croaky|guttural|cacophonous (similar term)|cacophonic (similar term)
+(noun)|croak|utterance (generic term)|vocalization (generic term)
+croaky|1
+(adj)|croaking|guttural|cacophonous (similar term)|cacophonic (similar term)
+croat|1
+(noun)|Croatian|Croat|Slav (generic term)
+croatia|1
+(noun)|Croatia|Republic of Croatia|Hrvatska|European country (generic term)|European nation (generic term)
+croatian|2
+(adj)|Croatian|European country|European nation (related term)
+(noun)|Croatian|Croat|Slav (generic term)
+crocanthemum canadensei|1
+(noun)|frostweed|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+crocethia|1
+(noun)|Crocethia|genus Crocethia|bird genus (generic term)
+crocethia alba|1
+(noun)|sanderling|Crocethia alba|sandpiper (generic term)
+crochet|3
+(noun)|crocheting|needlework (generic term)|needlecraft (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|hook|loop (generic term)|intertwine (generic term)
+crochet hook|1
+(noun)|crochet needle|needle (generic term)
+crochet needle|1
+(noun)|crochet hook|needle (generic term)
+crochet stitch|1
+(noun)|stitch (generic term)
+crocheting|2
+(noun)|crochet|needlework (generic term)|needlecraft (generic term)
+(noun)|handicraft (generic term)
+crock|5
+(noun)|carbon black|lampblack|soot|smut|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(noun)|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|earthenware jar|jar (generic term)
+(verb)|run (generic term)|bleed (generic term)
+(verb)|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+crock pot|1
+(noun)|Crock Pot|cooker (generic term)
+crock up|1
+(verb)|crack up|crack|break up|collapse|suffer (generic term)|sustain (generic term)|have (generic term)|get (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+crockery|1
+(noun)|dishware|tableware (generic term)
+crocket|1
+(noun)|architectural ornament (generic term)
+crocketed|1
+(adj)|adorned (similar term)|decorated (similar term)
+crockett|1
+(noun)|Crockett|Davy Crockett|David Crockett|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+crocodile|1
+(noun)|crocodilian reptile (generic term)|crocodilian (generic term)
+crocodile-like|1
+(adj)|animal (similar term)
+crocodile bird|1
+(noun)|Pluvianus aegyptius|courser (generic term)
+crocodile river|1
+(noun)|Limpopo|Crocodile River|river (generic term)
+crocodile tears|1
+(noun)|hypocrisy (generic term)|lip service (generic term)
+crocodilia|1
+(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order (generic term)
+crocodilian|1
+(noun)|crocodilian reptile|diapsid (generic term)|diapsid reptile (generic term)
+crocodilian reptile|1
+(noun)|crocodilian|diapsid (generic term)|diapsid reptile (generic term)
+crocodilus|1
+(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus (generic term)
+crocodylia|1
+(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order (generic term)
+crocodylidae|1
+(noun)|Crocodylidae|family Crocodylidae|reptile family (generic term)
+crocodylus|1
+(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus (generic term)
+crocodylus niloticus|1
+(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile (generic term)
+crocodylus porosus|1
+(noun)|Asian crocodile|Crocodylus porosus|crocodile (generic term)
+crocolite|1
+(noun)|mineral (generic term)
+crocus|1
+(noun)|iridaceous plant (generic term)
+crocus sativus|1
+(noun)|saffron|saffron crocus|Crocus sativus|crocus (generic term)
+crocuta|1
+(noun)|Crocuta|genus Crocuta|mammal genus (generic term)
+crocuta crocuta|1
+(noun)|spotted hyena|laughing hyena|Crocuta crocuta|hyena (generic term)|hyaena (generic term)
+croesus|2
+(noun)|Croesus|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Croesus|rich person (generic term)|wealthy person (generic term)|have (generic term)
+croft|1
+(noun)|farm (generic term)
+crofter|1
+(noun)|small farmer (generic term)
+crohn|1
+(noun)|Crohn|Burrill Bernard Crohn|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+crohn's disease|1
+(noun)|regional enteritis|regional ileitis|Crohn's disease|colitis (generic term)|inflammatory bowel disease (generic term)
+croissant|1
+(noun)|crescent roll|bun (generic term)|roll (generic term)
+croix de guerre|1
+(noun)|Croix de Guerre|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+cromlech|1
+(noun)|dolmen|portal tomb|megalith (generic term)|megalithic structure (generic term)
+cromorne|1
+(noun)|krummhorn|crumhorn|double-reed instrument (generic term)|double reed (generic term)
+cromwell|1
+(noun)|Cromwell|Oliver Cromwell|Ironsides|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+cromwellian|1
+(adj)|Cromwellian|general|full general|statesman|solon|national leader (related term)
+cronartium|1
+(noun)|Cronartium|genus Cronartium|fungus genus (generic term)
+cronartium ribicola|1
+(noun)|blister rust|Cronartium ribicola|rust (generic term)|rust fungus (generic term)
+crone|1
+(noun)|hag|beldam|beldame|witch|old woman (generic term)
+cronk|2
+(verb)|croak|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|honk|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+cronus|1
+(noun)|Cronus|Titan (generic term)
+crony|1
+(noun)|buddy|brother|chum|pal|sidekick|friend (generic term)
+cronyism|1
+(noun)|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+cronyn|1
+(noun)|Cronyn|Hume Cronyn|Hume Blake Cronyn|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+croo monkey|1
+(noun)|crab-eating macaque|Macaca irus|macaque (generic term)
+crook|4
+(noun)|criminal|felon|outlaw|malefactor|wrongdoer (generic term)|offender (generic term)
+(noun)|bend|twist|turn|curve (generic term)|curved shape (generic term)
+(noun)|shepherd's crook|staff (generic term)
+(verb)|curve|bend (generic term)|flex (generic term)
+crookback|2
+(adj)|crookbacked|humped|humpbacked|hunchbacked|gibbous|kyphotic|unfit (similar term)
+(noun)|humpback|hunchback|cripple (generic term)
+crookbacked|1
+(adj)|crookback|humped|humpbacked|hunchbacked|gibbous|kyphotic|unfit (similar term)
+crooked|4
+(adj)|akimbo (similar term)|anfractuous (similar term)|aquiline (similar term)|hooked (similar term)|askew (similar term)|awry (similar term)|cockeyed (similar term)|lopsided (similar term)|wonky (similar term)|skew-whiff (similar term)|bending (similar term)|bent (similar term)|contorted (similar term)|distorted (similar term)|twisted (similar term)|contorted (similar term)|writhed (similar term)|writhen (similar term)|deflective (similar term)|refractive (similar term)|geniculate (similar term)|gnarled (similar term)|gnarly (similar term)|knotted (similar term)|knotty (similar term)|knobbed (similar term)|malposed (similar term)|reflexed (similar term)|squiggly (similar term)|tortuous (similar term)|twisting (similar term)|twisty (similar term)|winding (similar term)|voluminous (similar term)|warped (similar term)|windblown (similar term)|wry (similar term)|zigzag (similar term)|coiled (related term)|indirect (related term)|straight (antonym)
+(adj)|corrupt|dishonest (similar term)|sneaky (similar term)|underhand (similar term)|underhanded (similar term)|dishonest (related term)|dishonorable (related term)|unlawful (related term)|straight (antonym)
+(adj)|asymmetrical|irregular (similar term)
+(adj)|hunched|round-backed|round-shouldered|stooped|stooping|unerect (similar term)
+crooked-stemmed aster|1
+(noun)|aster (generic term)
+crookedly|1
+(adv)|lopsidedly
+crookedness|3
+(noun)|tortuosity|tortuousness|torsion|contortion|distorted shape (generic term)|distortion (generic term)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|straightness (antonym)
+(noun)|deviousness|dishonesty (generic term)
+crookes|1
+(noun)|Crookes|William Crookes|Sir William Crookes|chemist (generic term)|physicist (generic term)
+crookes radiometer|1
+(noun)|Crookes radiometer|radiometer (generic term)
+crookes tube|1
+(noun)|Crookes tube|cathode-ray tube (generic term)|CRT (generic term)
+crookneck|1
+(noun)|crookneck squash|summer crookneck|yellow squash (generic term)
+crookneck squash|1
+(noun)|crookneck|summer crookneck|yellow squash (generic term)
+croon|1
+(verb)|sing (generic term)
+crooner|1
+(noun)|balladeer|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+crooning|1
+(noun)|singing (generic term)|vocalizing (generic term)
+crop|12
+(noun)|harvest|output (generic term)|yield (generic term)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|end product (generic term)|output (generic term)
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(noun)|craw|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+(verb)|cut (generic term)
+(verb)|cultivate|work|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|bear (generic term)|turn out (generic term)
+(verb)|graze|pasture|feed (generic term)|give (generic term)
+(verb)|browse|graze|range|pasture|feed (generic term)|eat (generic term)
+(verb)|snip|clip|trim|lop|dress|prune|cut back|thin out (generic term)
+crop-dusting|1
+(noun)|spraying|dispersion (generic term)|dispersal (generic term)|dissemination (generic term)|diffusion (generic term)
+crop failure|1
+(noun)|failure (generic term)
+crop out|1
+(verb)|basset|appear (generic term)
+crop up|1
+(verb)|pop up|pop|appear (generic term)
+cropped|1
+(adj)|planted (similar term)
+cropper|1
+(noun)|sharecropper|sharecrop farmer|agricultural laborer (generic term)|agricultural labourer (generic term)
+croquet|3
+(noun)|outdoor game (generic term)
+(verb)|hit (generic term)
+(verb)|play (generic term)
+croquet ball|1
+(noun)|ball (generic term)|croquet equipment (generic term)
+croquet equipment|1
+(noun)|sports equipment (generic term)
+croquet mallet|1
+(noun)|mallet (generic term)|croquet equipment (generic term)
+croquette|1
+(noun)|dish (generic term)
+crore|1
+(noun)|large integer (generic term)
+crosby|1
+(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+crosier|1
+(noun)|crozier|staff (generic term)
+cross|16
+(adj)|transverse|transversal|thwartwise|crosswise (similar term)
+(adj)|crabbed|crabby|fussy|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured (similar term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|crisscross|mark|marking (generic term)
+(noun)|Cross|emblem (generic term)
+(noun)|crown of thorns|affliction (generic term)
+(noun)|hybrid|crossbreed|organism (generic term)|being (generic term)
+(noun)|hybridization|hybridisation|crossbreeding|crossing|interbreeding|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+(verb)|traverse|track|cover|pass over|get over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|intersect|meet (generic term)|run into (generic term)|encounter (generic term)|run across (generic term)|come across (generic term)|see (generic term)
+(verb)|thwart|queer|spoil|scotch|foil|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|fold (generic term)|fold up (generic term)|turn up (generic term)|uncross (antonym)
+(verb)|traverse|span|sweep|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|intersect (generic term)|cross (generic term)
+(verb)|write (generic term)
+(verb)|crossbreed|hybridize|hybridise|interbreed|breed (generic term)
+cross-banded|1
+(adj)|patterned (similar term)
+cross-check|1
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+cross-classification|1
+(noun)|cross-division|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+cross-country|2
+(adj)|administrative district|administrative division|territorial division (related term)
+(adj)|off-road (similar term)|road (antonym)
+cross-country jumping|1
+(noun)|cross-country riding|equestrian sport (generic term)
+cross-country riding|1
+(noun)|cross-country jumping|equestrian sport (generic term)
+cross-country skiing|1
+(noun)|skiing (generic term)
+cross-cultural|1
+(adj)|society (related term)
+cross-division|1
+(noun)|cross-classification|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+cross-dress|1
+(verb)|dress (generic term)|get dressed (generic term)
+cross-dresser|1
+(noun)|transvestite|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+cross-examination|1
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+cross-examiner|1
+(noun)|cross-questioner|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+cross-eye|1
+(noun)|crossed eye|convergent strabismus|esotropia|strabismus (generic term)|squint (generic term)
+cross-eyed|1
+(adj)|boss-eyed (similar term)|walleyed (antonym)
+cross-fertilisation|2
+(noun)|cross-fertilization|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)|self-fertilization (antonym)
+(noun)|cross-fertilization|interchange (generic term)|reciprocation (generic term)|give-and-take (generic term)
+cross-fertilise|2
+(verb)|cross-fertilize|change state (generic term)|turn (generic term)
+(verb)|cross-fertilize|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+cross-fertilization|2
+(noun)|cross-fertilisation|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)|self-fertilization (antonym)
+(noun)|cross-fertilisation|interchange (generic term)|reciprocation (generic term)|give-and-take (generic term)
+cross-fertilize|2
+(verb)|cross-fertilise|change state (generic term)|turn (generic term)
+(verb)|cross-fertilise|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+cross-file|1
+(verb)|register|campaign (generic term)|run (generic term)
+cross-florida waterway|1
+(noun)|Cross-Florida Waterway|Okeechobee Waterway|waterway (generic term)
+cross-grained|2
+(adj)|contrarious|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|curly-grained|wavy-grained|uneven (similar term)
+cross-index|2
+(noun)|cross-reference|citation (generic term)|cite (generic term)|acknowledgment (generic term)|credit (generic term)|reference (generic term)|mention (generic term)|quotation (generic term)
+(verb)|index (generic term)
+cross-leaved heath|1
+(noun)|bell heather|Erica tetralix|erica (generic term)|true heath (generic term)
+cross-linguistic|1
+(adj)|communication (related term)
+cross-link|2
+(noun)|cross-linkage|chemical bond (generic term)|bond (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+cross-linkage|1
+(noun)|cross-link|chemical bond (generic term)|bond (generic term)
+cross-modal|1
+(adj)|sense|sensation|sentience|sentiency|sensory faculty (related term)
+cross-ply|1
+(adj)|tire|tyre (related term)
+cross-pollinate|1
+(verb)|pollinate|pollenate|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+cross-pollinating|1
+(adj)|pollination|pollenation (related term)
+cross-pollination|2
+(noun)|pollination (generic term)|pollenation (generic term)|self-pollination (antonym)
+(noun)|influence (generic term)
+cross-purpose|1
+(noun)|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+cross-question|1
+(noun)|question (generic term)|interrogation (generic term)|interrogative (generic term)|interrogative sentence (generic term)
+cross-questioner|1
+(noun)|cross-examiner|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+cross-refer|1
+(verb)|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+cross-reference|1
+(noun)|cross-index|citation (generic term)|cite (generic term)|acknowledgment (generic term)|credit (generic term)|reference (generic term)|mention (generic term)|quotation (generic term)
+cross-section|1
+(adj)|cross-sectional|crosswise (similar term)
+cross-sectional|2
+(adj)|section|plane section (related term)
+(adj)|cross-section|crosswise (similar term)
+cross-shaped|1
+(adj)|formed (similar term)
+cross-stitch|2
+(noun)|stitch (generic term)
+(noun)|embroidery (generic term)|fancywork (generic term)
+cross-town|1
+(adj)|crosstown|crossed (similar term)
+cross bit|1
+(noun)|bore bit (generic term)|borer (generic term)|rock drill (generic term)|stone drill (generic term)
+cross bun|1
+(noun)|hot cross bun|sweet roll (generic term)|coffee roll (generic term)
+cross country|1
+(noun)|race (generic term)
+cross dressing|1
+(noun)|transvestism|transvestitism|practice (generic term)|pattern (generic term)
+cross examine|1
+(verb)|cross question|examine (generic term)
+cross hair|1
+(noun)|cross wire|line (generic term)
+cross infection|1
+(noun)|nonsocial infection|infection (generic term)
+cross of calvary|1
+(noun)|Calvary cross|cross of Calvary|Cross (generic term)
+cross of lorraine|1
+(noun)|Lorraine cross|cross of Lorraine|Cross (generic term)
+cross off|1
+(verb)|cross out|strike out|strike off|mark|take away (generic term)|take out (generic term)
+cross oneself|1
+(verb)|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+cross out|1
+(verb)|cross off|strike out|strike off|mark|take away (generic term)|take out (generic term)
+cross product|1
+(noun)|vector product|vector (generic term)
+cross question|1
+(verb)|cross examine|examine (generic term)
+cross section|3
+(noun)|section (generic term)|plane section (generic term)
+(noun)|sample (generic term)
+(noun)|probability (generic term)|chance (generic term)
+cross street|1
+(noun)|street (generic term)
+cross thwart|1
+(noun)|thwart|crosspiece (generic term)
+cross vine|1
+(noun)|trumpet flower|quartervine|quarter-vine|Bignonia capreolata|vine (generic term)
+cross wire|1
+(noun)|cross hair|line (generic term)
+crossbar|3
+(noun)|bar (generic term)
+(noun)|game equipment (generic term)
+(noun)|crosspiece (generic term)
+crossbeam|1
+(noun)|trave|traverse|crosspiece|beam (generic term)
+crossbench|1
+(noun)|seat (generic term)
+crossbencher|1
+(noun)|legislator (generic term)
+crossbill|1
+(noun)|Loxia curvirostra|finch (generic term)
+crossbones|1
+(noun)|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+crossbow|1
+(noun)|bow (generic term)
+crossbred|3
+(adj)|bigeneric (similar term)|crossed (similar term)|hybrid (similar term)|interbred (similar term)|intercrossed (similar term)|underbred (similar term)|half-blooded (similar term)|half-bred (similar term)|half-breed (similar term)|outbred (related term)|purebred (antonym)
+(adj)|interbred|outbred (similar term)
+(noun)|hybrid (generic term)|crossbreed (generic term)|cross (generic term)
+crossbreed|2
+(noun)|hybrid|cross|organism (generic term)|being (generic term)
+(verb)|cross|hybridize|hybridise|interbreed|breed (generic term)
+crossbreeding|2
+(noun)|hybridization|hybridisation|crossing|cross|interbreeding|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+(noun)|miscegenation|interbreeding|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+crosscheck|2
+(noun)|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+(noun)|check (generic term)
+crosscurrent|2
+(noun)|rip|riptide|tide rip|countercurrent|turbulence (generic term)|turbulency (generic term)
+(noun)|countercurrent|strife (generic term)
+crosscut|3
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|shortcut|cutoff|road (generic term)|route (generic term)
+(verb)|cut across|cut (generic term)
+crosscut handsaw|1
+(noun)|crosscut saw|cutoff saw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+crosscut saw|1
+(noun)|crosscut handsaw|cutoff saw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+crosse|1
+(noun)|racket (generic term)|racquet (generic term)
+crossed|3
+(adj)|crosstown (similar term)|cross-town (similar term)|decussate (similar term)|intersectant (similar term)|intersecting (similar term)|uncrossed (antonym)
+(adj)|uncrossed (antonym)
+(adj)|hybrid|interbred|intercrossed|crossbred (similar term)
+crossed eye|1
+(noun)|cross-eye|convergent strabismus|esotropia|strabismus (generic term)|squint (generic term)
+crossfire|2
+(noun)|conversation (generic term)
+(noun)|fire (generic term)|firing (generic term)
+crosshairs|1
+(noun)|center (generic term)|center of attention (generic term)
+crosshatch|2
+(noun)|hatch|hatching|hachure|shading (generic term)
+(verb)|shade (generic term)|fill in (generic term)
+crosshatched|1
+(adj)|hatched|shaded (similar term)
+crosshead|2
+(noun)|crossheading|heading (generic term)|header (generic term)|head (generic term)
+(noun)|block (generic term)
+crossheading|1
+(noun)|crosshead|heading (generic term)|header (generic term)|head (generic term)
+crossing|7
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|ford|body of water (generic term)|water (generic term)
+(noun)|point (generic term)
+(noun)|intersection|crossroad|crossway|carrefour|junction (generic term)
+(noun)|crosswalk|crossover|path (generic term)
+(noun)|hybridization|hybridisation|crossbreeding|cross|interbreeding|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+(noun)|voyage (generic term)
+crossing guard|1
+(noun)|traffic cop (generic term)
+crossing over|1
+(noun)|crossover|organic process (generic term)|biological process (generic term)
+crossjack|1
+(noun)|mizzen course|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+crossly|1
+(adv)|grouchily|grumpily
+crossness|2
+(noun)|irritability|fretfulness|fussiness|peevishness|petulance|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|crabbiness|crabbedness|ill nature (generic term)
+crossopterygian|1
+(noun)|lobefin|lobe-finned fish|bony fish (generic term)
+crossopterygii|1
+(noun)|Crossopterygii|subclass Crossopterygii|class (generic term)
+crossover|4
+(noun)|crossing over|organic process (generic term)|biological process (generic term)
+(noun)|crossover voter|voter (generic term)|elector (generic term)
+(noun)|borrowing (generic term)|adoption (generic term)
+(noun)|crossing|crosswalk|path (generic term)
+crossover voter|1
+(noun)|crossover|voter (generic term)|elector (generic term)
+crosspatch|1
+(noun)|grouch|grump|crank|churl|unpleasant person (generic term)|disagreeable person (generic term)
+crosspiece|2
+(noun)|trave|traverse|crossbeam|beam (generic term)
+(noun)|brace (generic term)|bracing (generic term)
+crossroad|1
+(noun)|intersection|crossway|crossing|carrefour|junction (generic term)
+crossroads|3
+(noun)|hamlet|community (generic term)
+(noun)|juncture|critical point|crisis (generic term)
+(noun)|overlap (generic term)|convergence (generic term)|intersection (generic term)
+crossruff|1
+(verb)|trump (generic term)|ruff (generic term)
+crosstalk|1
+(noun)|XT|noise (generic term)|interference (generic term)|disturbance (generic term)
+crosstie|1
+(noun)|tie|railroad tie|sleeper|brace (generic term)|bracing (generic term)
+crosstown|1
+(adj)|cross-town|crossed (similar term)
+crosswalk|1
+(noun)|crossing|crossover|path (generic term)
+crossway|1
+(noun)|intersection|crossroad|crossing|carrefour|junction (generic term)
+crossways|1
+(adv)|across|crosswise
+crosswind|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+crosswise|3
+(adj)|cross (similar term)|transverse (similar term)|transversal (similar term)|thwartwise (similar term)|cross-section (similar term)|cross-sectional (similar term)|lengthwise (antonym)
+(adj)|horizontal (similar term)
+(adv)|across|crossways
+crossword|1
+(noun)|crossword puzzle|problem (generic term)
+crossword puzzle|1
+(noun)|crossword|problem (generic term)
+crotal|1
+(noun)|crottle|crottal|lichen (generic term)
+crotalaria|1
+(noun)|rattlebox|herb (generic term)|herbaceous plant (generic term)
+crotalaria sagitallis|1
+(noun)|American rattlebox|Crotalaria sagitallis|crotalaria (generic term)|rattlebox (generic term)
+crotalaria spectabilis|1
+(noun)|Indian rattlebox|Crotalaria spectabilis|crotalaria (generic term)|rattlebox (generic term)
+crotalidae|1
+(noun)|Crotalidae|family Crotalidae|reptile family (generic term)
+crotalus|1
+(noun)|Crotalus|genus Crotalus|reptile genus (generic term)
+crotalus adamanteus|1
+(noun)|diamondback|diamondback rattlesnake|Crotalus adamanteus|rattlesnake (generic term)|rattler (generic term)
+crotalus atrox|1
+(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake (generic term)|rattler (generic term)
+crotalus cerastes|1
+(noun)|sidewinder|horned rattlesnake|Crotalus cerastes|rattlesnake (generic term)|rattler (generic term)
+crotalus horridus atricaudatus|1
+(noun)|canebrake rattlesnake|canebrake rattler|Crotalus horridus atricaudatus|timber rattlesnake (generic term)|banded rattlesnake (generic term)|Crotalus horridus horridus (generic term)
+crotalus horridus horridus|1
+(noun)|timber rattlesnake|banded rattlesnake|Crotalus horridus horridus|rattlesnake (generic term)|rattler (generic term)
+crotalus lepidus|1
+(noun)|rock rattlesnake|Crotalus lepidus|rattlesnake (generic term)|rattler (generic term)
+crotalus mitchellii|1
+(noun)|speckled rattlesnake|Crotalus mitchellii|rattlesnake (generic term)|rattler (generic term)
+crotalus scutulatus|1
+(noun)|Mojave rattlesnake|Crotalus scutulatus|rattlesnake (generic term)|rattler (generic term)
+crotalus tigris|1
+(noun)|tiger rattlesnake|Crotalus tigris|rattlesnake (generic term)|rattler (generic term)
+crotalus viridis|1
+(noun)|prairie rattlesnake|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake (generic term)|rattler (generic term)
+crotaphion|1
+(noun)|craniometric point (generic term)
+crotaphytus|1
+(noun)|Crotaphytus|genus Crotaphytus|reptile genus (generic term)
+crotch|3
+(noun)|fork|branch (generic term)|leg (generic term)|ramification (generic term)
+(noun)|fork|angle (generic term)
+(noun)|genitalia|genital organ|genitals|private parts|privates|reproductive organ (generic term)|sex organ (generic term)
+crotch hair|1
+(noun)|pubic hair|bush|hair (generic term)
+crotchet|4
+(noun)|hook|curve (generic term)|curved shape (generic term)
+(noun)|quarter note|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|oddity|queerness|quirk|quirkiness|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|hook (generic term)
+crotchetiness|1
+(noun)|crankiness|contrariness|grumpiness|ill nature (generic term)
+crotchety|1
+(adj)|cantankerous|ornery|ill-natured (similar term)
+croton|2
+(noun)|Codiaeum variegatum|shrub (generic term)|bush (generic term)
+(noun)|Croton tiglium|shrub (generic term)|bush (generic term)
+croton bug|1
+(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach (generic term)|roach (generic term)
+croton eluteria|1
+(noun)|cascarilla|Croton eluteria|croton (generic term)|Croton tiglium (generic term)
+croton oil|1
+(noun)|oil (generic term)
+croton tiglium|1
+(noun)|croton|Croton tiglium|shrub (generic term)|bush (generic term)
+crotonbug|1
+(noun)|German cockroach|Croton bug|water bug|Blattella germanica|cockroach (generic term)|roach (generic term)
+crotophaga|1
+(noun)|Crotophaga|genus Crotophaga|bird genus (generic term)
+crottal|1
+(noun)|crottle|crotal|lichen (generic term)
+crottle|1
+(noun)|crottal|crotal|lichen (generic term)
+crouch|3
+(noun)|bending (generic term)
+(verb)|stoop|bend|bow|bend (generic term)|flex (generic term)|stoop to (related term)
+(verb)|squat|scrunch|scrunch up|hunker|hunker down|sit (generic term)|sit down (generic term)
+crouched|1
+(adj)|crouching|huddled|hunkered|hunkered down|unerect (similar term)
+crouching|1
+(adj)|crouched|huddled|hunkered|hunkered down|unerect (similar term)
+croup|2
+(noun)|spasmodic laryngitis|angina (generic term)
+(noun)|hindquarters|croupe|rump|body part (generic term)
+croupe|1
+(noun)|hindquarters|croup|rump|body part (generic term)
+croupier|1
+(noun)|gambler (generic term)
+croupier's rake|1
+(noun)|rake (generic term)
+croupy|1
+(adj)|angina (related term)
+crouse|1
+(noun)|Crouse|Russel Crouse|dramatist (generic term)|playwright (generic term)
+crouton|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+crow|8
+(noun)|corvine bird (generic term)
+(noun)|cry (generic term)
+(noun)|Crow|Sioux (generic term)|Siouan (generic term)
+(noun)|Corvus|Crow|constellation (generic term)
+(noun)|brag|bragging|crowing|vaporing|line-shooting|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(noun)|Crow|Siouan (generic term)|Siouan language (generic term)
+(verb)|gloat|triumph|boast (generic term)|tout (generic term)|swash (generic term)|shoot a line (generic term)|brag (generic term)|gas (generic term)|blow (generic term)|bluster (generic term)|vaunt (generic term)|gasconade (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+crow's feet|1
+(noun)|crow's foot|laugh line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+crow's foot|2
+(noun)|crow's feet|laugh line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+(noun)|red beech|brown oak|booyong|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+crow's nest|1
+(noun)|platform (generic term)
+crow-bait|1
+(noun)|crowbait|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+crow-sized|1
+(adj)|sized (similar term)
+crow blackbird|1
+(noun)|grackle|New World blackbird (generic term)|blackbird (generic term)
+crow corn|1
+(noun)|colicroot|colic root|star grass|unicorn root|liliaceous plant (generic term)
+crow garlic|1
+(noun)|false garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion (generic term)
+crow pheasant|1
+(noun)|Centropus sinensis|coucal (generic term)
+crow step|1
+(noun)|corbel step|corbie-step|corbiestep|step (generic term)|stair (generic term)
+crowbait|1
+(noun)|crow-bait|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+crowbar|1
+(noun)|wrecking bar|pry|pry bar|lever (generic term)
+crowberry|1
+(noun)|shrub (generic term)|bush (generic term)
+crowberry family|1
+(noun)|Empetraceae|family Empetraceae|dicot family (generic term)|magnoliopsid family (generic term)
+crowd|6
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|crew|gang|bunch|gathering (generic term)|assemblage (generic term)
+(verb)|herd|move (generic term)|displace (generic term)
+(verb)|occupy (generic term)|fill (generic term)
+(verb)|crowd together|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|push|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+crowd control|1
+(noun)|control (generic term)
+crowd out|1
+(verb)|displace (generic term)|force out (generic term)
+crowd together|1
+(verb)|crowd|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+crowded|1
+(adj)|huddled (similar term)|jammed (similar term)|jam-packed (similar term)|packed (similar term)|thronged (similar term)|uncrowded (antonym)
+crowding|1
+(noun)|situation (generic term)|state of affairs (generic term)
+crowfoot|1
+(noun)|buttercup|butterflower|butter-flower|goldcup|kingcup|herb (generic term)|herbaceous plant (generic term)
+crowfoot family|1
+(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|magnoliid dicot family (generic term)
+crowfoot grass|1
+(noun)|Egyptian grass|Dactyloctenium aegypticum|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+crowing|2
+(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|self-aggrandizing|self-aggrandising|proud (similar term)
+(noun)|brag|bragging|crow|vaporing|line-shooting|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+crown|15
+(noun)|Crown|symbol (generic term)
+(noun)|top (generic term)
+(noun)|wreath (generic term)|garland (generic term)|coronal (generic term)|chaplet (generic term)|lei (generic term)
+(noun)|diadem|jewelled headdress (generic term)|crown jewels (generic term)
+(noun)|vertex (generic term)|peak (generic term)|apex (generic term)|acme (generic term)
+(noun)|coin (generic term)
+(noun)|capitulum|treetop|top (generic term)
+(noun)|peak|crest|top|tip|summit|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|pennant|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|pate|poll|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(noun)|crest|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(verb)|coronate|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|top|culminate (generic term)|climax (generic term)
+(verb)|head (generic term)
+(verb)|cover (generic term)
+crown-beard|1
+(noun)|crownbeard|crown beard|composite (generic term)|composite plant (generic term)
+crown-of-the-field|1
+(noun)|corn cockle|corn campion|Agrostemma githago|weed (generic term)
+crown beard|1
+(noun)|crownbeard|crown-beard|composite (generic term)|composite plant (generic term)
+crown colony|1
+(noun)|Crown Colony|colony (generic term)|dependency (generic term)
+crown daisy|1
+(noun)|Chrysanthemum coronarium|chrysanthemum (generic term)
+crown fire|1
+(noun)|forest fire (generic term)
+crown gall|1
+(noun)|plant disease (generic term)
+crown glass|2
+(noun)|glass (generic term)
+(noun)|optical crown|optical crown glass|optical glass (generic term)
+crown imperial|1
+(noun)|Fritillaria imperialis|fritillary (generic term)|checkered lily (generic term)
+crown jewel|2
+(noun)|assets (generic term)
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+crown jewels|1
+(noun)|regalia (generic term)
+crown land|1
+(noun)|Crown land|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+crown lens|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+crown monkey|1
+(noun)|bonnet macaque|bonnet monkey|capped macaque|Macaca radiata|macaque (generic term)
+crown of thorns|3
+(noun)|cross|affliction (generic term)
+(noun)|Christ thorn|Christ plant|Euphorbia milii|spurge (generic term)
+(noun)|crown (generic term)
+crown prince|1
+(noun)|prince (generic term)
+crown princess|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|princess (generic term)
+crown roast|1
+(noun)|rack of lamb|lamb roast (generic term)|roast lamb (generic term)|rack (generic term)
+crown saw|1
+(noun)|saw (generic term)
+crown vetch|1
+(noun)|axseed|Coronilla varia|coronilla (generic term)
+crown wart|1
+(noun)|plant disease (generic term)
+crownbeard|1
+(noun)|crown-beard|crown beard|composite (generic term)|composite plant (generic term)
+crowned|3
+(adj)|capped (similar term)|uncrowned (antonym)
+(adj)|laureled|laurelled|unlaureled (antonym)
+(adj)|capped (similar term)|chapleted (similar term)|comate (similar term)|comose (similar term)|high-crowned (similar term)|royal (similar term)|uncrowned (antonym)
+crowned head|1
+(noun)|sovereign|monarch|ruler (generic term)|swayer (generic term)|head of state (generic term)|chief of state (generic term)
+crowning|2
+(adj)|ultimate (similar term)
+(adj)|top (similar term)
+crownless|1
+(adj)|uncrowned|quasi-royal (similar term)|crowned (antonym)
+crownwork|1
+(noun)|cap|dental appliance (generic term)
+crozier|1
+(noun)|crosier|staff (generic term)
+crp|1
+(noun)|C-reactive protein|CRP|serum globulin (generic term)
+crt|1
+(noun)|cathode-ray tube|CRT|gas-discharge tube (generic term)
+crt screen|1
+(noun)|screen|CRT screen|display (generic term)|video display (generic term)
+crucial|4
+(adj)|important|critical (similar term)|decisive (similar term)|life-and-death (similar term)|life-or-death (similar term)|pivotal (similar term)|polar (similar term)|critical (related term)|decisive (related term)|essential (related term)|noncrucial (antonym)
+(adj)|material (similar term)
+(adj)|all-important|all important|essential|of the essence|important (similar term)|of import (similar term)
+(adj)|deciding|determinant|determinative|determining|decisive (similar term)
+cruciality|1
+(noun)|criticality|criticalness|urgency (generic term)
+crucian carp|1
+(noun)|Carassius carassius|Carassius vulgaris|cyprinid (generic term)|cyprinid fish (generic term)
+cruciate|1
+(adj)|cruciform|symmetrical (similar term)|symmetric (similar term)
+crucible|1
+(noun)|melting pot|vessel (generic term)
+crucible steel|1
+(noun)|steel (generic term)
+crucifer|1
+(noun)|cruciferous plant|herb (generic term)|herbaceous plant (generic term)
+cruciferae|1
+(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family (generic term)
+cruciferous|1
+(adj)|dilleniid dicot family (related term)
+cruciferous plant|1
+(noun)|crucifer|herb (generic term)|herbaceous plant (generic term)
+cruciferous vegetable|1
+(noun)|vegetable (generic term)|veggie (generic term)
+crucifix|2
+(noun)|rood|rood-tree|Cross (generic term)
+(noun)|gymnastic exercise (generic term)
+crucifix fish|1
+(noun)|sea catfish (generic term)
+crucifixion|3
+(noun)|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|Crucifixion|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|excruciation|torture (generic term)|torturing (generic term)
+cruciform|1
+(adj)|cruciate|symmetrical (similar term)|symmetric (similar term)
+crucify|3
+(verb)|execute (generic term)|put to death (generic term)
+(verb)|torment|rag|bedevil|dun|frustrate|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|savage|pillory|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+crud|3
+(noun)|snow (generic term)
+(noun)|filth|skank|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|disease (generic term)
+crude|7
+(adj)|rough|unskilled (similar term)
+(adj)|coarse|earthy|gross|vulgar|indecent (similar term)
+(adj)|unrefined|unprocessed|refined (antonym)
+(adj)|primitive|rude|early (similar term)
+(adj)|blunt|stark|unconditional (similar term)
+(adj)|raw|unanalyzed (similar term)
+(noun)|petroleum|crude oil|rock oil|fossil oil|oil (generic term)|fossil fuel (generic term)
+crude oil|1
+(noun)|petroleum|crude|rock oil|fossil oil|oil (generic term)|fossil fuel (generic term)
+crudely|1
+(adv)|artlessly|inexpertly
+crudeness|3
+(noun)|crudity|primitiveness|primitivism|rudeness|wild (generic term)|natural state (generic term)|state of nature (generic term)
+(noun)|crudity|gaucheness|impoliteness (generic term)
+(noun)|roughness|inelegance (generic term)
+crudites|1
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+crudity|2
+(noun)|crudeness|primitiveness|primitivism|rudeness|wild (generic term)|natural state (generic term)|state of nature (generic term)
+(noun)|crudeness|gaucheness|impoliteness (generic term)
+cruel|2
+(adj)|barbarous|brutal|fell|roughshod|savage|vicious|inhumane (similar term)
+(adj)|brutal|inhumane (similar term)
+cruel and unusual punishment|1
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+cruel plant|1
+(noun)|Araujia sericofera|vine (generic term)
+cruelness|1
+(noun)|cruelty|harshness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+cruelty|3
+(noun)|inhuman treatment|maltreatment (generic term)|ill-treatment (generic term)|ill-usage (generic term)|abuse (generic term)
+(noun)|mercilessness|pitilessness|ruthlessness|heartlessness (generic term)|coldheartedness (generic term)|hardheartedness (generic term)
+(noun)|cruelness|harshness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+cruet|1
+(noun)|crewet|bottle (generic term)
+cruet-stand|1
+(noun)|rack (generic term)|stand (generic term)
+cruise|5
+(noun)|sail|ocean trip (generic term)|voyage (generic term)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|search (generic term)|look (generic term)
+(verb)|voyage (generic term)|sail (generic term)|navigate (generic term)
+cruise control|1
+(noun)|control (generic term)|controller (generic term)
+cruise liner|1
+(noun)|cruise ship|liner (generic term)|ocean liner (generic term)
+cruise missile|1
+(noun)|aircraft (generic term)|bomb (generic term)
+cruise ship|1
+(noun)|cruise liner|liner (generic term)|ocean liner (generic term)
+cruiser|3
+(noun)|police cruiser|patrol car|police car|prowl car|squad car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+(noun)|cabin cruiser|pleasure boat|pleasure craft|motorboat (generic term)|powerboat (generic term)
+cruiserweight|1
+(noun)|light heavyweight|prizefighter (generic term)|gladiator (generic term)
+cruller|1
+(noun)|twister|friedcake (generic term)
+crumb|6
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|morsel (generic term)|bit (generic term)|bite (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+crumb cake|1
+(noun)|cake (generic term)
+crumble|3
+(verb)|crumple|tumble|break down|collapse|change integrity (generic term)
+(verb)|fall apart|disintegrate (generic term)
+(verb)|decay|delapidate|change (generic term)
+crumbliness|1
+(noun)|friability|breakableness (generic term)
+crumbly|1
+(adj)|breakable (similar term)
+crumhorn|1
+(noun)|krummhorn|cromorne|double-reed instrument (generic term)|double reed (generic term)
+crummy|1
+(adj)|bum|cheap|cheesy|chintzy|punk|sleazy|tinny|inferior (similar term)
+crump|3
+(verb)|thud|scrunch|crunch (generic term)|scranch (generic term)|scraunch (generic term)|crackle (generic term)
+(verb)|blast (generic term)|shell (generic term)
+(verb)|explode (generic term)|burst (generic term)
+crumpet|1
+(noun)|English muffin|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+crumple|4
+(verb)|crumble|tumble|break down|collapse|change integrity (generic term)
+(verb)|buckle|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|pucker|rumple|cockle|knit|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+(verb)|rumple|wrinkle|crease|crinkle|fold (generic term)|fold up (generic term)
+crumpled|1
+(adj)|bent|dented|damaged (similar term)
+crunch|7
+(noun)|noise (generic term)
+(noun)|situation (generic term)
+(noun)|crush|compaction|compression (generic term)|compressing (generic term)
+(verb)|scranch|scraunch|crackle|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|cranch|craunch|grind|press (generic term)|grind down (related term)
+(verb)|munch|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+(verb)|grind|mash|bray|comminute|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+crunchy|1
+(adj)|crisp|firm|fresh (similar term)
+crupper|1
+(noun)|strap (generic term)
+crural|1
+(adj)|limb (related term)
+crus|1
+(noun)|limb (generic term)
+crusade|4
+(noun)|campaign|cause|drive|movement|effort|venture (generic term)
+(noun)|Crusade|expedition (generic term)|military expedition (generic term)|hostile expedition (generic term)
+(verb)|fight|press|campaign|push|agitate|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|campaign (generic term)|take the field (generic term)
+crusader|2
+(noun)|reformer|reformist|social reformer|meliorist|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+(noun)|Crusader|warrior (generic term)
+cruse|1
+(noun)|jar (generic term)
+crush|12
+(noun)|crushed leather|leather (generic term)
+(noun)|jam|press|crowd (generic term)
+(noun)|puppy love|calf love|infatuation|love (generic term)
+(noun)|crunch|compaction|compression (generic term)|compressing (generic term)
+(verb)|oppress|suppress
+(verb)|squash|squelch|mash|squeeze|press (generic term)
+(verb)|beat|beat out|shell|trounce|vanquish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|smash|demolish|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|jam|bruise (generic term)|contuse (generic term)
+(verb)|break down|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+crush out|1
+(verb)|stub out|extinguish|press out|end (generic term)|terminate (generic term)
+crushed|2
+(adj)|rough (similar term)|unsmooth (similar term)
+(adj)|broken|humbled|humiliated|low|humble (similar term)
+crushed leather|1
+(noun)|crush|leather (generic term)
+crushed rock|1
+(noun)|gravel|rock (generic term)|stone (generic term)
+crusher|1
+(noun)|device (generic term)
+crushing|2
+(adj)|devastating|destructive (similar term)
+(noun)|suppression|quelling|stifling|prevention (generic term)|bar (generic term)
+crust|4
+(noun)|Earth's crust|layer (generic term)
+(noun)|incrustation|encrustation|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|gall|impertinence|impudence|insolence|cheekiness|freshness|discourtesy (generic term)|rudeness (generic term)
+(verb)|change surface (generic term)
+crustacea|1
+(noun)|Crustacea|class Crustacea|class (generic term)
+crustacean|2
+(adj)|crustaceous|class (related term)
+(noun)|arthropod (generic term)
+crustaceous|2
+(adj)|crustacean|class (related term)
+(adj)|covering|natural covering|cover (related term)
+crustal|1
+(adj)|layer (related term)
+crustal movement|1
+(noun)|tectonic movement|movement (generic term)|motion (generic term)
+crustal plate|1
+(noun)|plate|crust (generic term)|Earth's crust (generic term)
+crusted|1
+(adj)|encrusted|crusty|crustlike|covered (similar term)
+crustlike|1
+(adj)|crusted|encrusted|crusty|covered (similar term)
+crustose|1
+(adj)|covering|natural covering|cover (related term)
+crustose thallus|1
+(noun)|thallus (generic term)
+crusty|2
+(adj)|crusted|encrusted|crustlike|covered (similar term)
+(adj)|curmudgeonly|gruff|ill-humored|ill-humoured|ill-natured (similar term)
+crutch|2
+(noun)|staff (generic term)
+(noun)|expedient (generic term)
+crux|2
+(noun)|Southern Cross|Crux|Crux Australis|constellation (generic term)
+(noun)|crux of the matter|point (generic term)
+crux australis|1
+(noun)|Southern Cross|Crux|Crux Australis|constellation (generic term)
+crux of the matter|1
+(noun)|crux|point (generic term)
+cruzeiro|1
+(noun)|Brazilian monetary unit (generic term)
+cry|12
+(noun)|outcry|call|yell|shout|vociferation|utterance (generic term)|vocalization (generic term)
+(noun)|yell|utterance (generic term)|vocalization (generic term)
+(noun)|war cry|rallying cry|battle cry|watchword|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+(noun)|effusion (generic term)|gush (generic term)|outburst (generic term)|blowup (generic term)|ebullition (generic term)
+(noun)|sound (generic term)
+(verb)|shout|shout out|call|yell|scream|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|weep|express emotion (generic term)|express feelings (generic term)|laugh (antonym)
+(verb)|exclaim|cry out|outcry|call out|shout|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|blazon out|announce (generic term)|denote (generic term)
+(verb)|want (generic term)|need (generic term)|require (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+cry-baby tree|1
+(noun)|ceibo|crybaby tree|common coral tree|Erythrina crista-galli|coral tree (generic term)|erythrina (generic term)
+cry for|1
+(verb)|cry out for|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+cry out|1
+(verb)|exclaim|cry|outcry|call out|shout|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+cry out for|1
+(verb)|cry for|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+cryaesthesia|1
+(noun)|cryesthesia|hypersensitivity (generic term)
+crybaby|2
+(noun)|wimp|chicken|weakling (generic term)|doormat (generic term)|wuss (generic term)
+(noun)|whiner|complainer|moaner|sniveller|bellyacher|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+crybaby tree|1
+(noun)|ceibo|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree (generic term)|erythrina (generic term)
+cryesthesia|1
+(noun)|cryaesthesia|hypersensitivity (generic term)
+crying|4
+(adj)|yelling|shouting|noisy (similar term)
+(adj)|clamant|exigent|insistent|instant|imperative (similar term)
+(adj)|egregious|flagrant|glaring|gross|rank|conspicuous (similar term)
+(noun)|weeping|tears|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+cryoanaesthesia|1
+(noun)|cryoanesthesia|anesthesia (generic term)|anaesthesia (generic term)
+cryoanesthesia|1
+(noun)|cryoanaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+cryobiology|1
+(noun)|biology (generic term)|biological science (generic term)
+cryocautery|2
+(noun)|cautery (generic term)|cauterant (generic term)
+(noun)|cautery (generic term)|cauterization (generic term)|cauterisation (generic term)
+cryogen|1
+(noun)|refrigerant (generic term)
+cryogenic|1
+(adj)|refrigerant (related term)
+cryogenics|1
+(noun)|cryogeny|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+cryogeny|1
+(noun)|cryogenics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+cryolite|1
+(noun)|Greenland spar|mineral (generic term)
+cryometer|1
+(noun)|thermometer (generic term)
+cryonic|1
+(adj)|cryobiology (related term)
+cryonics|1
+(noun)|cryobiology (generic term)
+cryopathy|1
+(noun)|frostbite|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+cryophobia|1
+(noun)|simple phobia (generic term)
+cryoscope|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+cryostat|1
+(noun)|thermostat (generic term)|thermoregulator (generic term)
+cryosurgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+crypt|1
+(noun)|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+cryptacanthodes|1
+(noun)|Cryptacanthodes|genus Cryptacanthodes|fish genus (generic term)
+cryptacanthodes maculatus|1
+(noun)|wrymouth|ghostfish|Cryptacanthodes maculatus|blennioid fish (generic term)|blennioid (generic term)
+cryptanalysis|1
+(noun)|cryptanalytics|cryptography|cryptology|science (generic term)|scientific discipline (generic term)
+cryptanalyst|1
+(noun)|cryptographer|cryptologist|decoder (generic term)|decipherer (generic term)
+cryptanalytic|1
+(adj)|cryptographic|cryptographical|cryptologic|cryptological|science|scientific discipline (related term)
+cryptanalytics|1
+(noun)|cryptanalysis|cryptography|cryptology|science (generic term)|scientific discipline (generic term)
+cryptic|3
+(adj)|cryptical|deep|inscrutable|mysterious|mystifying|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|cabalistic|kabbalistic|qabalistic|cryptical|sibylline|esoteric (similar term)
+(adj)|concise (similar term)
+cryptic coloration|1
+(noun)|protective coloration (generic term)
+cryptical|2
+(adj)|cryptic|deep|inscrutable|mysterious|mystifying|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|cabalistic|kabbalistic|qabalistic|cryptic|sibylline|esoteric (similar term)
+cryptically|1
+(adv)|enigmatically|mysteriously
+cryptobiosis|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+cryptobiotic|1
+(adj)|physiological state|physiological condition (related term)
+cryptobranchidae|1
+(noun)|Cryptobranchidae|family Cryptobranchidae|amphibian family (generic term)
+cryptobranchus|1
+(noun)|Cryptobranchus|genus Cryptobranchus|amphibian genus (generic term)
+cryptobranchus alleganiensis|1
+(noun)|hellbender|mud puppy|Cryptobranchus alleganiensis|salamander (generic term)
+cryptocercidae|1
+(noun)|Cryptocercidae|family Cryptocercidae|arthropod family (generic term)
+cryptocercus|1
+(noun)|Cryptocercus|genus Cryptocercus|arthropod genus (generic term)
+cryptococcosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+cryptocoryne|1
+(noun)|water trumpet|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+cryptogam|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+cryptogamia|1
+(noun)|Cryptogamia|division (generic term)|Phanerogamae (antonym)
+cryptogamic|1
+(adj)|cryptogamous|plant|flora|plant life (related term)
+cryptogamous|1
+(adj)|cryptogamic|plant|flora|plant life (related term)
+cryptogram|1
+(noun)|cryptograph|secret writing|writing (generic term)|written material (generic term)|piece of writing (generic term)
+cryptogramma|1
+(noun)|Cryptogramma|genus Cryptogramma|fern genus (generic term)
+cryptogramma acrostichoides|1
+(noun)|American rock brake|American parsley fern|Cryptogramma acrostichoides|rock brake (generic term)
+cryptogramma crispa|1
+(noun)|European parsley fern|mountain parsley fern|Cryptogramma crispa|rock brake (generic term)
+cryptogrammataceae|1
+(noun)|Cryptogrammataceae|family Cryptogrammataceae|fern family (generic term)
+cryptograph|3
+(noun)|cipher|cypher|secret code|code (generic term)
+(noun)|cryptogram|secret writing|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|device (generic term)
+cryptographer|1
+(noun)|cryptanalyst|cryptologist|decoder (generic term)|decipherer (generic term)
+cryptographic|1
+(adj)|cryptanalytic|cryptographical|cryptologic|cryptological|science|scientific discipline (related term)
+cryptographical|1
+(adj)|cryptanalytic|cryptographic|cryptologic|cryptological|science|scientific discipline (related term)
+cryptography|2
+(noun)|cryptanalysis|cryptanalytics|cryptology|science (generic term)|scientific discipline (generic term)
+(noun)|coding|secret writing|steganography|writing (generic term)|committal to writing (generic term)
+cryptologic|1
+(adj)|cryptanalytic|cryptographic|cryptographical|cryptological|science|scientific discipline (related term)
+cryptological|1
+(adj)|cryptanalytic|cryptographic|cryptographical|cryptologic|science|scientific discipline (related term)
+cryptologist|1
+(noun)|cryptanalyst|cryptographer|decoder (generic term)|decipherer (generic term)
+cryptology|1
+(noun)|cryptanalysis|cryptanalytics|cryptography|science (generic term)|scientific discipline (generic term)
+cryptomeria|1
+(noun)|Cryptomeria|genus Cryptomeria|gymnosperm genus (generic term)
+cryptomeria japonica|1
+(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar (generic term)|cedar tree (generic term)
+cryptomonad|1
+(noun)|cryptophyte|alga (generic term)|algae (generic term)
+cryptophyceae|1
+(noun)|Cryptophyceae|class Cryptophyceae|class (generic term)
+cryptophyta|1
+(noun)|Cryptophyta|phylum Cryptophyta|phylum (generic term)
+cryptophyte|1
+(noun)|cryptomonad|alga (generic term)|algae (generic term)
+cryptoprocta|1
+(noun)|Cryptoprocta|genus Cryptoprocta|civet (generic term)|civet cat (generic term)
+cryptoprocta ferox|1
+(noun)|fossa|fossa cat|Cryptoprocta ferox|viverrine (generic term)|viverrine mammal (generic term)
+cryptorchidism|1
+(noun)|cryptorchidy|cryptorchism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+cryptorchidy|1
+(noun)|cryptorchidism|cryptorchism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+cryptorchism|1
+(noun)|cryptorchidy|cryptorchidism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+cryptotermes|1
+(noun)|Cryptotermes|genus Cryptotermes|arthropod genus (generic term)
+cryptotermes brevis|1
+(noun)|powder-post termite|Cryptotermes brevis|dry-wood termite (generic term)
+cryptotis|1
+(noun)|Cryptotis|genus Cryptotis|mammal genus (generic term)
+cryptotis parva|1
+(noun)|least shrew|Cryptotis parva|shrew (generic term)|shrewmouse (generic term)
+crystal|6
+(noun)|solid (generic term)
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|crystallization|rock (generic term)|stone (generic term)
+(noun)|quartz glass|quartz|vitreous silica|lechatelierite|natural glass (generic term)
+(noun)|glassware (generic term)|glasswork (generic term)
+(noun)|watch crystal|watch glass|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+crystal ball|1
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+crystal clear|2
+(adj)|crystalline|limpid|lucid|pellucid|transparent|clear (similar term)
+(adj)|limpid|lucid|luculent|pellucid|perspicuous|clear (similar term)
+crystal counter|1
+(noun)|counter tube (generic term)
+crystal detector|1
+(noun)|detector (generic term)
+crystal gazing|1
+(noun)|prophecy (generic term)|prognostication (generic term)|vaticination (generic term)
+crystal lattice|1
+(noun)|space lattice|Bravais lattice|lattice (generic term)
+crystal microphone|1
+(noun)|microphone (generic term)|mike (generic term)
+crystal oscillator|1
+(noun)|quartz oscillator|oscillator (generic term)
+crystal pickup|1
+(noun)|cartridge (generic term)|pickup (generic term)
+crystal rectifier|1
+(noun)|diode|semiconductor diode|junction rectifier|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+crystal set|1
+(noun)|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+crystal tea|1
+(noun)|Labrador tea|Ledum groenlandicum|shrub (generic term)|bush (generic term)
+crystal violet|1
+(noun)|gentian violet|stain (generic term)|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+crystalise|4
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|crystallize|crystallise|crystalize|change integrity (generic term)
+(verb)|crystallize|crystalize|effloresce|solidify (generic term)
+(verb)|crystallize|crystallise|crystalize|shape (generic term)|form (generic term)
+crystalised|2
+(adj)|candied|crystalized|glace|preserved (similar term)
+(adj)|crystallized|crystalline (similar term)
+crystalize|4
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|crystallize|crystallise|crystalise|change integrity (generic term)
+(verb)|crystallize|crystalise|effloresce|solidify (generic term)
+(verb)|crystallize|crystallise|crystalise|shape (generic term)|form (generic term)
+crystalized|1
+(adj)|candied|crystalised|glace|preserved (similar term)
+crystalline|3
+(adj)|crystallized (similar term)|crystalised (similar term)|microcrystalline (similar term)|polycrystalline (similar term)|noncrystalline (antonym)
+(adj)|distinct (similar term)
+(adj)|crystal clear|limpid|lucid|pellucid|transparent|clear (similar term)
+crystalline lens|1
+(noun)|lens|organ (generic term)
+crystallisation|1
+(noun)|crystallization|crystallizing|chemical phenomenon (generic term)
+crystallise|3
+(verb)|clear|clear up|shed light on|crystallize|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|crystallize|crystalize|crystalise|change integrity (generic term)
+(verb)|crystallize|crystalise|crystalize|shape (generic term)|form (generic term)
+crystallised|1
+(adj)|crystallized|uncrystallized (antonym)
+crystallite|1
+(noun)|crystal (generic term)|crystallization (generic term)
+crystallization|3
+(noun)|crystallisation|crystallizing|chemical phenomenon (generic term)
+(noun)|crystal|rock (generic term)|stone (generic term)
+(noun)|construction (generic term)|mental synthesis (generic term)
+crystallize|4
+(verb)|crystallise|crystalise|crystalize|shape (generic term)|form (generic term)
+(verb)|clear|clear up|shed light on|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|crystallise|crystalize|crystalise|change integrity (generic term)
+(verb)|crystalize|crystalise|effloresce|solidify (generic term)
+crystallized|2
+(adj)|crystallised|uncrystallized (antonym)
+(adj)|crystalised|crystalline (similar term)
+crystallized fruit|1
+(noun)|candied fruit|confiture (generic term)
+crystallized ginger|1
+(noun)|candied fruit (generic term)|crystallized fruit (generic term)
+crystallizing|1
+(noun)|crystallization|crystallisation|chemical phenomenon (generic term)
+crystallographer|1
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+crystallography|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+cs|1
+(noun)|cesium|caesium|Cs|atomic number 55|metallic element (generic term)|metal (generic term)
+cs gas|1
+(noun)|chlorobenzylidenemalononitrile|CS gas|tear gas (generic term)|teargas (generic term)|lacrimator (generic term)|lachrymator (generic term)
+cse|1
+(noun)|Communications Security Establishment|CSE|international intelligence agency (generic term)
+csis|1
+(noun)|Canadian Security Intelligence Service|CSIS|international intelligence agency (generic term)
+cst|1
+(noun)|Central Time|Central Standard Time|CST|civil time (generic term)|standard time (generic term)|local time (generic term)
+ct|2
+(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state (generic term)
+(noun)|computerized tomography|computed tomography|CT|computerized axial tomography|computed axial tomography|CAT|X-raying (generic term)|X-radiation (generic term)
+ctc|1
+(noun)|Counterterrorist Center|CTC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ctene|1
+(noun)|comb-plate|organ (generic term)
+ctenidium|1
+(noun)|gill (generic term)|branchia (generic term)
+ctenizidae|1
+(noun)|Ctenizidae|family Ctenizidae|arthropod family (generic term)
+ctenocephalides|1
+(noun)|Ctenocephalides|genus Ctenocephalides|arthropod genus (generic term)
+ctenocephalides canis|1
+(noun)|dog flea|Ctenocephalides canis|flea (generic term)
+ctenocephalides felis|1
+(noun)|cat flea|Ctenocephalides felis|flea (generic term)
+ctenocephalus|1
+(noun)|Ctenocephalus|genus Ctenocephalus|Ctenocephalides (generic term)|genus Ctenocephalides (generic term)
+ctenoid|1
+(adj)|comb-like|device (related term)|organ (related term)
+ctenophora|1
+(noun)|Ctenophora|phylum Ctenophora|phylum (generic term)
+ctenophore|1
+(noun)|comb jelly|invertebrate (generic term)
+ctenophore family|1
+(noun)|family (generic term)
+ctenophore genus|1
+(noun)|genus (generic term)
+cu|1
+(noun)|copper|Cu|atomic number 29|metallic element (generic term)|metal (generic term)|conductor (generic term)
+cu ft|1
+(noun)|cubic foot|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cu in|1
+(noun)|cubic inch|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cub|4
+(noun)|greenhorn|rookie|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|lad|laddie|sonny|sonny boy|male child (generic term)|boy (generic term)
+(noun)|young carnivore|young mammal (generic term)
+(verb)|litter (generic term)
+cub scout|1
+(noun)|Cub Scout|Boy Scout (generic term)
+cub shark|1
+(noun)|bull shark|Carcharhinus leucas|requiem shark (generic term)
+cuba|2
+(noun)|Cuba|Republic of Cuba|country (generic term)|state (generic term)|land (generic term)
+(noun)|Cuba|island (generic term)
+cubage unit|1
+(noun)|volume unit|capacity unit|capacity measure|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+cuban|2
+(adj)|Cuban|country|state|land (related term)
+(noun)|Cuban|West Indian (generic term)
+cuban bast|1
+(noun)|Cuban bast|blue mahoe|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus (generic term)
+cuban capital|1
+(noun)|Havana|capital of Cuba|Cuban capital|national capital (generic term)
+cuban heel|1
+(noun)|Cuban heel|heel (generic term)
+cuban itch|1
+(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+cuban mahogany|1
+(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany (generic term)|mahogany tree (generic term)
+cuban monetary unit|1
+(noun)|Cuban monetary unit|monetary unit (generic term)
+cuban peso|1
+(noun)|Cuban peso|peso|Cuban monetary unit (generic term)
+cuban revolution|1
+(noun)|Cuban Revolution|revolution (generic term)
+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 (generic term)
+cuban spinach|1
+(noun)|winter purslane|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce (generic term)
+cubature unit|1
+(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|unit of measurement (generic term)|unit (generic term)
+cubby|1
+(noun)|cubbyhole|snuggery|snug|room (generic term)
+cubbyhole|2
+(noun)|pigeonhole|compartment (generic term)
+(noun)|cubby|snuggery|snug|room (generic term)
+cube|7
+(noun)|block|solid (generic term)
+(noun)|regular hexahedron|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+(noun)|third power|number (generic term)
+(noun)|subshrub (generic term)|suffrutex (generic term)
+(noun)|square block|block (generic term)
+(verb)|multiply (generic term)
+(verb)|dice|cut (generic term)
+cube-shaped|1
+(adj)|cubelike|cubical|cubiform|cuboid|cuboidal|cubic (similar term)|three-dimensional (similar term)
+cube root|1
+(noun)|root (generic term)
+cubeb|3
+(noun)|fruit (generic term)
+(noun)|cubeb vine|Java pepper|Piper cubeba|true pepper (generic term)|pepper vine (generic term)
+(noun)|cubeb cigarette|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+cubeb cigarette|1
+(noun)|cubeb|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+cubeb vine|1
+(noun)|cubeb|Java pepper|Piper cubeba|true pepper (generic term)|pepper vine (generic term)
+cubelike|1
+(adj)|cube-shaped|cubical|cubiform|cuboid|cuboidal|cubic (similar term)|three-dimensional (similar term)
+cubic|1
+(adj)|three-dimensional|blockish (similar term)|blocky (similar term)|boxlike (similar term)|boxy (similar term)|box-shaped (similar term)|brick-shaped (similar term)|cubelike (similar term)|cube-shaped (similar term)|cubical (similar term)|cubiform (similar term)|cuboid (similar term)|cuboidal (similar term)|isometric (similar term)|solid (similar term)|linear (antonym)|planar (antonym)
+cubic centimeter|1
+(noun)|milliliter|millilitre|mil|ml|cubic centimetre|cc|metric capacity unit (generic term)
+cubic centimetre|1
+(noun)|milliliter|millilitre|mil|ml|cubic centimeter|cc|metric capacity unit (generic term)
+cubic content unit|1
+(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+cubic decimeter|1
+(noun)|liter|litre|l|cubic decimetre|metric capacity unit (generic term)
+cubic decimetre|1
+(noun)|liter|litre|l|cubic decimeter|metric capacity unit (generic term)
+cubic foot|1
+(noun)|cu ft|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cubic inch|1
+(noun)|cu in|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cubic kilometer|1
+(noun)|cubic kilometre|metric capacity unit (generic term)
+cubic kilometre|1
+(noun)|cubic kilometer|metric capacity unit (generic term)
+cubic measure|1
+(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic content unit|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+cubic meter|1
+(noun)|kiloliter|kilolitre|cubic metre|metric capacity unit (generic term)
+cubic metre|1
+(noun)|kiloliter|kilolitre|cubic meter|metric capacity unit (generic term)
+cubic millimeter|1
+(noun)|cubic millimetre|metric capacity unit (generic term)
+cubic millimetre|1
+(noun)|cubic millimeter|metric capacity unit (generic term)
+cubic yard|1
+(noun)|yard|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+cubical|1
+(adj)|cubelike|cube-shaped|cubiform|cuboid|cuboidal|cubic (similar term)|three-dimensional (similar term)
+cubicity|1
+(noun)|three-dimensionality (generic term)|third-dimensionality (generic term)
+cubicle|3
+(noun)|cell|room (generic term)
+(noun)|carrel|carrell|stall|alcove (generic term)|bay (generic term)
+(noun)|booth|stall|kiosk|closet (generic term)
+cubiform|1
+(adj)|cubelike|cube-shaped|cubical|cuboid|cuboidal|cubic (similar term)|three-dimensional (similar term)
+cubism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+cubist|2
+(adj)|cubistic|artistic movement|art movement (related term)
+(noun)|painter (generic term)
+cubistic|1
+(adj)|cubist|artistic movement|art movement (related term)
+cubit|1
+(noun)|linear unit (generic term)
+cubital|1
+(adj)|hinge joint|ginglymus|ginglymoid joint (related term)
+cubital joint|1
+(noun)|elbow|elbow joint|human elbow|cubitus|articulatio cubiti|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+cubital nerve|1
+(noun)|ulnar nerve|nervus ulnaris|nerve (generic term)|nervus (generic term)
+cubitiere|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+cubitus|2
+(noun)|elbow|elbow joint|human elbow|cubital joint|articulatio cubiti|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+(noun)|limb (generic term)
+cuboid|2
+(adj)|cubelike|cube-shaped|cubical|cubiform|cuboidal|cubic (similar term)|three-dimensional (similar term)
+(noun)|parallelepiped (generic term)|parallelopiped (generic term)|parallelepipedon (generic term)|parallelopipedon (generic term)
+cuboid bone|1
+(noun)|bone (generic term)|os (generic term)
+cuboidal|1
+(adj)|cubelike|cube-shaped|cubical|cubiform|cuboid|cubic (similar term)|three-dimensional (similar term)
+cuboidal cell|1
+(noun)|cuboidal epithelial cell|epithelial cell (generic term)
+cuboidal epithelial cell|1
+(noun)|cuboidal cell|epithelial cell (generic term)
+cucking stool|1
+(noun)|ducking stool|instrument of punishment (generic term)
+cuckold|2
+(noun)|husband (generic term)|hubby (generic term)|married man (generic term)
+(verb)|cheat on|cheat|betray|wander|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+cuckoldom|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+cuckoldry|1
+(noun)|sexual conquest (generic term)|score (generic term)
+cuckoo|3
+(noun)|fathead|goof|goofball|bozo|jackass|goose|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|cuculiform bird (generic term)
+(verb)|repeat (generic term)|echo (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+cuckoo-bumblebee|1
+(noun)|bee (generic term)
+cuckoo bread|1
+(noun)|common wood sorrel|shamrock|Oxalis acetosella|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+cuckoo clock|1
+(noun)|clock (generic term)
+cuckoo flower|2
+(noun)|lady's smock|cuckooflower|meadow cress|Cardamine pratensis|bittercress (generic term)|bitter cress (generic term)
+(noun)|ragged robin|Lychnis flos-cuculi|Lychins floscuculi|lychnis (generic term)|catchfly (generic term)
+cuckooflower|1
+(noun)|lady's smock|cuckoo flower|meadow cress|Cardamine pratensis|bittercress (generic term)|bitter cress (generic term)
+cuckoopint|1
+(noun)|lords-and-ladies|jack-in-the-pulpit|Arum maculatum|arum (generic term)|aroid (generic term)
+cuculidae|1
+(noun)|Cuculidae|family Cuculidae|bird family (generic term)
+cuculiform bird|1
+(noun)|bird (generic term)
+cuculiformes|1
+(noun)|Cuculiformes|order Cuculiformes|animal order (generic term)
+cuculus|1
+(noun)|Cuculus|genus Cuculus|bird genus (generic term)
+cuculus canorus|1
+(noun)|European cuckoo|Cuculus canorus|cuckoo (generic term)
+cucumber|2
+(noun)|cucumber vine|Cucumis sativus|melon (generic term)|melon vine (generic term)
+(noun)|cuke|vegetable (generic term)|veggie (generic term)
+cucumber-shaped|1
+(adj)|prolate (similar term)|watermelon-shaped (similar term)
+cucumber tree|1
+(noun)|Magnolia acuminata|magnolia (generic term)
+cucumber vine|1
+(noun)|cucumber|Cucumis sativus|melon (generic term)|melon vine (generic term)
+cucumis|1
+(noun)|Cucumis|genus Cucumis|dicot genus (generic term)|magnoliopsid genus (generic term)
+cucumis melo|1
+(noun)|sweet melon|muskmelon|sweet melon vine|Cucumis melo|melon (generic term)|melon vine (generic term)
+cucumis melo cantalupensis|1
+(noun)|cantaloupe|cantaloup|cantaloupe vine|cantaloup vine|Cucumis melo cantalupensis|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+cucumis melo inodorus|1
+(noun)|winter melon|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+cucumis melo reticulatus|1
+(noun)|net melon|netted melon|nutmeg melon|Cucumis melo reticulatus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+cucumis sativus|1
+(noun)|cucumber|cucumber vine|Cucumis sativus|melon (generic term)|melon vine (generic term)
+cucurbit|1
+(noun)|Cucurbitaceae (generic term)|family Cucurbitaceae (generic term)|gourd family (generic term)
+cucurbita|1
+(noun)|Cucurbita|genus Cucurbita|dicot genus (generic term)|magnoliopsid genus (generic term)
+cucurbita argyrosperma|1
+(noun)|cushaw|Cucurbita mixta|Cucurbita argyrosperma|winter squash (generic term)|winter squash plant (generic term)
+cucurbita foetidissima|1
+(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+cucurbita maxima|2
+(noun)|butternut squash|Cucurbita maxima|winter squash (generic term)|winter squash plant (generic term)
+(noun)|hubbard squash|Cucurbita maxima|winter squash (generic term)|winter squash plant (generic term)
+cucurbita maxima turbaniformis|1
+(noun)|turban squash|Cucurbita maxima turbaniformis|winter squash (generic term)|winter squash plant (generic term)
+cucurbita mixta|1
+(noun)|cushaw|Cucurbita mixta|Cucurbita argyrosperma|winter squash (generic term)|winter squash plant (generic term)
+cucurbita moschata|1
+(noun)|winter crookneck|winter crookneck squash|Cucurbita moschata|winter squash (generic term)|winter squash plant (generic term)
+cucurbita pepo|1
+(noun)|pumpkin|pumpkin vine|autumn pumpkin|Cucurbita pepo|squash (generic term)|squash vine (generic term)
+cucurbita pepo melopepo|1
+(noun)|summer squash|summer squash vine|Cucurbita pepo melopepo|squash (generic term)|squash vine (generic term)
+cucurbitaceae|1
+(noun)|Cucurbitaceae|family Cucurbitaceae|gourd family|dicot family (generic term)|magnoliopsid family (generic term)
+cucurbitaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+cud|2
+(noun)|rechewed food|feed (generic term)|provender (generic term)
+(noun)|chew|chaw|quid|plug|wad|morsel (generic term)|bit (generic term)|bite (generic term)
+cudbear|1
+(noun)|orchil|archil|dye (generic term)|dyestuff (generic term)
+cuddle|3
+(noun)|nestle|snuggle|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(verb)|snuggle|nestle|nest|nuzzle|draw close|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|embrace (generic term)|hug (generic term)|bosom (generic term)|squeeze (generic term)
+cuddlesome|1
+(adj)|cuddly|lovable (similar term)|loveable (similar term)
+cuddling|1
+(noun)|caressing|fondling|hugging|kissing|necking|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+cuddly|1
+(adj)|cuddlesome|lovable (similar term)|loveable (similar term)
+cuddy|1
+(noun)|galley (generic term)|ship's galley (generic term)|caboose (generic term)|cookhouse (generic term)
+cudgel|2
+(noun)|club (generic term)
+(verb)|fustigate|hit (generic term)
+cudweed|3
+(noun)|everlasting (generic term)|everlasting flower (generic term)
+(noun)|cotton rose|filago|flower (generic term)
+(noun)|western mugwort|white sage|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+cue|5
+(noun)|actor's line (generic term)|speech (generic term)|words (generic term)
+(noun)|clue|clew|evidence (generic term)
+(noun)|discriminative stimulus|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+(noun)|cue stick|pool cue|pool stick|sports implement (generic term)
+(verb)|prompt|remind|inform (generic term)
+cue ball|1
+(noun)|billiard ball (generic term)
+cue stick|1
+(noun)|cue|pool cue|pool stick|sports implement (generic term)
+cuff|4
+(noun)|turnup|lap (generic term)|overlap (generic term)
+(noun)|handcuff|handlock|manacle|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+(verb)|whomp|slap (generic term)
+(verb)|manacle|handcuff|fetter (generic term)|shackle (generic term)
+cufflink|1
+(noun)|jewelry (generic term)|jewellery (generic term)
+cuidad bolivar|1
+(noun)|Cuidad Bolivar|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cuirass|1
+(noun)|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+cuirassier|1
+(noun)|cavalryman (generic term)|trooper (generic term)
+cuisine|1
+(noun)|culinary art|cooking (generic term)|cookery (generic term)|preparation (generic term)
+cuisse|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+cuke|1
+(noun)|cucumber|vegetable (generic term)|veggie (generic term)
+cul|1
+(noun)|cul de sac|dead end|passage (generic term)
+cul de lampe|1
+(noun)|corbel (generic term)|truss (generic term)
+cul de sac|2
+(noun)|cul|dead end|passage (generic term)
+(noun)|blind alley|dead-end street|impasse|thoroughfare (generic term)
+culbertson|1
+(noun)|Culbertson|Ely Culbertson|card player (generic term)
+culcita|1
+(noun)|Culcita|genus Culcita|fern genus (generic term)
+culcita dubia|1
+(noun)|false bracken|Culcita dubia|fern (generic term)
+culdoscope|1
+(noun)|endoscope (generic term)
+culdoscopy|1
+(noun)|endoscopy (generic term)
+culebra|1
+(noun)|Culebra|island (generic term)
+culex|1
+(noun)|Culex|genus Culex|arthropod genus (generic term)
+culex fatigans|1
+(noun)|Culex quinquefasciatus|Culex fatigans|mosquito (generic term)
+culex pipiens|1
+(noun)|common mosquito|Culex pipiens|mosquito (generic term)
+culex quinquefasciatus|1
+(noun)|Culex quinquefasciatus|Culex fatigans|mosquito (generic term)
+culiacan|1
+(noun)|Culiacan|city (generic term)|metropolis (generic term)|urban center (generic term)
+culicidae|1
+(noun)|Culicidae|family Culicidae|arthropod family (generic term)
+culinary|1
+(adj)|cooking|cookery|preparation (related term)
+culinary art|1
+(noun)|cuisine|cooking (generic term)|cookery (generic term)|preparation (generic term)
+cull|3
+(noun)|reject|decision making (generic term)|deciding (generic term)
+(verb)|get rid of (generic term)|remove (generic term)
+(verb)|pick|pluck|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)|cull out (related term)|pick up (related term)|pick up (related term)|pick up (related term)|pick off (related term)|pick over (related term)|pick up (related term)
+cull out|1
+(verb)|winnow|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+cullender|1
+(noun)|colander|strainer (generic term)
+cullis|1
+(noun)|gutter (generic term)|trough (generic term)
+culm|1
+(noun)|stalk (generic term)|stem (generic term)
+culminate|5
+(verb)|climax|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|end (generic term)|terminate (generic term)
+(verb)|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|form (generic term)
+culmination|4
+(noun)|apogee|phase (generic term)|stage (generic term)
+(noun)|celestial point (generic term)
+(noun)|climax|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+(noun)|completion|closing|windup|mop up|termination (generic term)|ending (generic term)|conclusion (generic term)
+culotte|1
+(noun)|skirt (generic term)
+culpability|1
+(noun)|blameworthiness|culpableness|guilt (generic term)|guiltiness (generic term)
+culpable|1
+(adj)|blameworthy|blamable|blameable|blameful|censurable|guilty (similar term)
+culpable negligence|1
+(noun)|criminal negligence|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+culpableness|1
+(noun)|blameworthiness|culpability|guilt (generic term)|guiltiness (generic term)
+culpably|1
+(adv)|reprehensibly
+culprit|1
+(noun)|perpetrator|wrongdoer (generic term)|offender (generic term)
+cult|3
+(noun)|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|fad|craze|furor|furore|rage|fashion (generic term)
+(noun)|cultus|religious cult|religion (generic term)|faith (generic term)|religious belief (generic term)
+cult of personality|1
+(noun)|fashion (generic term)
+cultism|2
+(noun)|devotion (generic term)
+(noun)|idolatry|devotion|veneration|worship (generic term)
+cultist|1
+(noun)|follower (generic term)
+cultivable|1
+(adj)|arable|cultivatable|tillable|productive (similar term)
+cultivar|1
+(noun)|variety (generic term)|vascular plant (generic term)|tracheophyte (generic term)
+cultivatable|1
+(adj)|arable|cultivable|tillable|productive (similar term)
+cultivate|3
+(verb)|crop|work|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|educate|school|train|civilize|civilise|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+(verb)|domesticate|naturalize|naturalise|tame|adapt (generic term)|accommodate (generic term)
+cultivated|3
+(adj)|uncultivated (antonym)
+(adj)|tame (similar term)|tamed (similar term)
+(adj)|civilized|civilised|cultured|genteel|polite|refined (similar term)
+cultivated cabbage|1
+(noun)|cabbage|Brassica oleracea|crucifer (generic term)|cruciferous plant (generic term)
+cultivated carrot|1
+(noun)|carrot|Daucus carota sativa|herb (generic term)|herbaceous plant (generic term)
+cultivated celery|1
+(noun)|celery|Apium graveolens dulce|herb (generic term)|herbaceous plant (generic term)
+cultivated crab apple|1
+(noun)|crab apple|crabapple|apple tree (generic term)
+cultivated land|1
+(noun)|farmland|plowland|ploughland|tilled land|tillage|tilth|land (generic term)|ground (generic term)|soil (generic term)
+cultivated parsnip|1
+(noun)|parsnip (generic term)|Pastinaca sativa (generic term)
+cultivated plant|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)|weed (antonym)
+cultivated rice|1
+(noun)|Oryza sativa|rice (generic term)
+cultivated strawberry|1
+(noun)|garden strawberry|Fragaria ananassa|strawberry (generic term)
+cultivation|3
+(noun)|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+(noun)|production (generic term)
+(noun)|polish|refinement|culture|finish|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+cultivator|2
+(noun)|agriculturist|agriculturalist|grower|raiser|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+(noun)|tiller|farm machine (generic term)
+cultural|4
+(adj)|taste|appreciation|discernment|perceptiveness (related term)
+(adj)|ethnic|ethnical|social (similar term)
+(adj)|content|cognitive content|mental object (related term)
+(adj)|cultivation (related term)
+cultural anthropology|1
+(noun)|social anthropology|anthropology (generic term)
+cultural attache|1
+(noun)|attache (generic term)
+cultural movement|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+cultural revolution|1
+(noun)|Cultural Revolution|Great Proletarian Cultural Revolution|revolution (generic term)
+culturati|1
+(noun)|intelligentsia (generic term)|clerisy (generic term)
+culture|7
+(noun)|civilization|civilisation|society (generic term)
+(noun)|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|acculturation|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|polish|refinement|cultivation|finish|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)
+(noun)|cultivation (generic term)
+culture medium|1
+(noun)|medium|substance (generic term)|matter (generic term)
+culture shock|1
+(noun)|disorientation (generic term)
+cultured|1
+(adj)|civilized|civilised|cultivated|genteel|polite|refined (similar term)
+cultus|1
+(noun)|cult|religious cult|religion (generic term)|faith (generic term)|religious belief (generic term)
+culver's physic|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus (generic term)
+culver's root|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus (generic term)
+culverin|2
+(noun)|cannon (generic term)
+(noun)|musket (generic term)
+culvers physic|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus (generic term)
+culvers root|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus (generic term)
+culvert|1
+(noun)|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+cum|1
+(noun)|semen|seed|seminal fluid|ejaculate|come|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+cum laude|1
+(adj)|worthy (similar term)
+cumana|1
+(noun)|Cumana|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+cumarone|1
+(noun)|benzofuran|coumarone|compound (generic term)|chemical compound (generic term)
+cumber|1
+(verb)|restrain|encumber|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+cumberland|2
+(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general (generic term)|full general (generic term)
+(noun)|Cumberland|Cumberland River|river (generic term)
+cumberland gap|1
+(noun)|Cumberland Gap|pass (generic term)|mountain pass (generic term)|notch (generic term)
+cumberland mountains|1
+(noun)|Cumberland Mountains|Cumberland Plateau|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cumberland plateau|1
+(noun)|Cumberland Mountains|Cumberland Plateau|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+cumberland river|1
+(noun)|Cumberland|Cumberland River|river (generic term)
+cumbersome|2
+(adj)|cumbrous|unwieldy (similar term)|unmanageable (similar term)
+(adj)|awkward|clumsy|inapt|inept|ill-chosen|infelicitous (similar term)
+cumbersomeness|1
+(noun)|awkwardness|unwieldiness|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+cumbria|2
+(noun)|Cumbria|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Cumbria|county (generic term)
+cumbrous|1
+(adj)|cumbersome|unwieldy (similar term)|unmanageable (similar term)
+cumfrey|1
+(noun)|comfrey|herb (generic term)|herbaceous plant (generic term)
+cumin|2
+(noun)|Cuminum cyminum|herb (generic term)|herbaceous plant (generic term)
+(noun)|cumin seed|edible seed (generic term)
+cumin seed|1
+(noun)|cumin|edible seed (generic term)
+cuminum|1
+(noun)|Cuminum|genus Cuminum|rosid dicot genus (generic term)
+cuminum cyminum|1
+(noun)|cumin|Cuminum cyminum|herb (generic term)|herbaceous plant (generic term)
+cummerbund|1
+(noun)|girdle (generic term)|cincture (generic term)|sash (generic term)|waistband (generic term)|waistcloth (generic term)
+cummings|1
+(noun)|e. e. cummings|Edward Estlin Cummings|writer (generic term)|author (generic term)
+cumquat|1
+(noun)|kumquat|kumquat tree|citrus (generic term)|citrus tree (generic term)
+cumulate|1
+(verb)|accumulate|conglomerate|pile up|gather|amass|increase (generic term)
+cumulation|1
+(noun)|pile|heap|mound|agglomerate|cumulus|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+cumulative|1
+(adj)|accumulative|additive (similar term)
+cumulative preferred|1
+(noun)|cumulative preferred stock|preferred stock (generic term)|preferred shares (generic term)|preference shares (generic term)
+cumulative preferred stock|1
+(noun)|cumulative preferred|preferred stock (generic term)|preferred shares (generic term)|preference shares (generic term)
+cumulative vote|1
+(noun)|election (generic term)
+cumuliform|1
+(adj)|round (similar term)|circular (similar term)
+cumulonimbus|1
+(noun)|cumulonimbus cloud|thundercloud|cloud (generic term)
+cumulonimbus cloud|1
+(noun)|cumulonimbus|thundercloud|cloud (generic term)
+cumulous|1
+(adj)|heaped|heaped-up|piled|concentrated (similar term)
+cumulus|2
+(noun)|cumulus cloud|cloud (generic term)
+(noun)|pile|heap|mound|agglomerate|cumulation|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+cumulus cloud|1
+(noun)|cumulus|cloud (generic term)
+cunaxa|1
+(noun)|Cunaxa|battle of Cunaxa|pitched battle (generic term)
+cunctation|1
+(noun)|procrastination|shillyshally|delay (generic term)|holdup (generic term)
+cunctator|1
+(noun)|procrastinator|postponer|delayer (generic term)
+cuneal|1
+(adj)|wedge-shaped|cuneiform|triangle|trigon|trilateral (related term)
+cuneate|1
+(adj)|wedge-shaped|simple (similar term)|unsubdivided (similar term)
+cuneate leaf|1
+(noun)|simple leaf (generic term)
+cuneiform|3
+(adj)|wedge-shaped|cuneal|triangle|trigon|trilateral (related term)
+(adj)|bone|os (related term)
+(noun)|script (generic term)
+cuneiform bone|1
+(noun)|triquetral|triquetral bone|os triquetrum|pyramidal bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+cuneus|1
+(noun)|wedge|wedge shape|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+cuniculus|1
+(noun)|Cuniculus|genus Cuniculus|mammal genus (generic term)
+cuniculus paca|1
+(noun)|paca|Cuniculus paca|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+cunner|1
+(noun)|bergall|Tautogolabrus adspersus|wrasse (generic term)
+cunnilinctus|1
+(noun)|cunnilingus|oral sex (generic term)|head (generic term)
+cunnilingus|1
+(noun)|cunnilinctus|oral sex (generic term)|head (generic term)
+cunning|5
+(adj)|cute|attractive (similar term)
+(adj)|crafty|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful (similar term)
+(adj)|clever|ingenious|adroit (similar term)
+(noun)|craft|craftiness|foxiness|guile|slyness|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+(noun)|artfulness (generic term)
+cunningham|1
+(noun)|Cunningham|Merce Cunningham|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+cunningly|2
+(adv)|cutely
+(adv)|craftily|foxily|knavishly|slyly|trickily|artfully
+cunonia family|1
+(noun)|Cunoniaceae|family Cunoniaceae|rosid dicot family (generic term)
+cunoniaceae|1
+(noun)|Cunoniaceae|family Cunoniaceae|cunonia family|rosid dicot family (generic term)
+cunt|2
+(noun)|bitch|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|puss|pussy|slit|snatch|twat|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+cuon|1
+(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus (generic term)
+cuon alpinus|1
+(noun)|dhole|Cuon alpinus|wild dog (generic term)
+cup|11
+(noun)|United States liquid unit (generic term)
+(noun)|cupful|containerful (generic term)
+(noun)|crockery (generic term)|dishware (generic term)|container (generic term)
+(noun)|loving cup|trophy (generic term)|prize (generic term)
+(noun)|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|hole (generic term)
+(noun)|punch (generic term)
+(noun)|plant organ (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|transfuse|treat (generic term)|care for (generic term)
+cup-shaped|1
+(adj)|cupular|cupulate|concave (similar term)
+cup and saucer|1
+(noun)|Canterbury bell|Campanula medium|campanula (generic term)|bellflower (generic term)
+cup final|1
+(noun)|final (generic term)
+cup fungus|1
+(noun)|discomycete|ascomycete (generic term)|ascomycetous fungus (generic term)
+cup hook|1
+(noun)|hook (generic term)
+cup morel|1
+(noun)|Disciotis venosa|morel (generic term)
+cup of tea|1
+(noun)|bag|dish|activity (generic term)
+cup tie|1
+(noun)|game (generic term)
+cupbearer|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+cupboard|1
+(noun)|closet|storage space (generic term)
+cupboard love|1
+(noun)|kindness (generic term)|benignity (generic term)
+cupcake|1
+(noun)|cake (generic term)
+cupel|1
+(noun)|bone-ash cup|refractory pot|vessel (generic term)
+cupflower|2
+(noun)|chalice vine|trumpet flower|Solandra guttata|shrub (generic term)|bush (generic term)
+(noun)|nierembergia|herb (generic term)|herbaceous plant (generic term)
+cupful|1
+(noun)|cup|containerful (generic term)
+cupid|2
+(noun)|Cupid|Amor|Roman deity (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+cupid's bow|2
+(noun)|Cupid's bow|curve (generic term)|curved shape (generic term)
+(noun)|Cupid's bow|bow (generic term)
+cupid's dart|1
+(noun)|blue succory|Catananche caerula|catananche (generic term)
+cupid's disease|1
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+cupid's itch|1
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+cupidity|1
+(noun)|avarice|avariciousness|covetousness|greed (generic term)
+cuplike|1
+(adj)|concave (similar term)
+cupola|2
+(noun)|furnace (generic term)
+(noun)|dome (generic term)
+cuppa|1
+(noun)|cupper|tea (generic term)
+cupper|1
+(noun)|cuppa|tea (generic term)
+cupping|1
+(noun)|bloodletting (generic term)
+cupressaceae|1
+(noun)|Cupressaceae|family Cupressaceae|cypress family|gymnosperm family (generic term)
+cupressus|1
+(noun)|Cupressus|genus Cupressus|gymnosperm genus (generic term)
+cupressus abramsiana|1
+(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress (generic term)|cypress tree (generic term)
+cupressus arizonica|1
+(noun)|Arizona cypress|Cupressus arizonica|cypress (generic term)|cypress tree (generic term)
+cupressus goveniana|1
+(noun)|gowen cypress|Cupressus goveniana|cypress (generic term)|cypress tree (generic term)
+cupressus goveniana abramsiana|1
+(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress (generic term)|cypress tree (generic term)
+cupressus goveniana pigmaea|1
+(noun)|pygmy cypress|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress (generic term)|cypress tree (generic term)
+cupressus guadalupensis|1
+(noun)|Guadalupe cypress|Cupressus guadalupensis|cypress (generic term)|cypress tree (generic term)
+cupressus lusitanica|1
+(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress (generic term)|cypress tree (generic term)
+cupressus macrocarpa|1
+(noun)|Monterey cypress|Cupressus macrocarpa|cypress (generic term)|cypress tree (generic term)
+cupressus pigmaea|1
+(noun)|pygmy cypress|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress (generic term)|cypress tree (generic term)
+cupressus sempervirens|1
+(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress (generic term)|cypress tree (generic term)
+cupric|1
+(adj)|cuprous|metallic element|metal|conductor (related term)
+cupric acetate|1
+(noun)|verdigris|pigment (generic term)
+cupric sulfate|1
+(noun)|copper sulfate|copper sulphate|cupric sulphate|sulfate (generic term)|sulphate (generic term)
+cupric sulphate|1
+(noun)|copper sulfate|copper sulphate|cupric sulfate|sulfate (generic term)|sulphate (generic term)
+cuprimine|1
+(noun)|penicillamine|Cuprimine|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+cuprite|1
+(noun)|mineral (generic term)
+cupronickel|1
+(noun)|copper-base alloy (generic term)
+cuprous|1
+(adj)|cupric|metallic element|metal|conductor (related term)
+cupular|1
+(adj)|cupulate|cup-shaped|concave (similar term)
+cupulate|1
+(adj)|cupular|cup-shaped|concave (similar term)
+cupule|2
+(noun)|acorn cup|cup (generic term)
+(noun)|sucker (generic term)
+cuquenan|1
+(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall (generic term)|falls (generic term)
+cuquenan falls|1
+(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall (generic term)|falls (generic term)
+cur|2
+(noun)|mongrel|mutt|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(noun)|coward (generic term)
+curability|1
+(noun)|curableness|characteristic (generic term)|incurableness (antonym)|incurability (antonym)
+curable|2
+(adj)|incurable (antonym)
+(adj)|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+curableness|1
+(noun)|curability|characteristic (generic term)|incurableness (antonym)|incurability (antonym)
+curacao|2
+(noun)|Curacao|island (generic term)
+(noun)|curacoa|orange liqueur (generic term)
+curacoa|1
+(noun)|curacao|orange liqueur (generic term)
+curacy|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+curandera|1
+(noun)|therapist (generic term)|healer (generic term)
+curandero|1
+(noun)|therapist (generic term)|healer (generic term)
+curare|1
+(noun)|tubocurarine|alkaloid (generic term)|neuromuscular blocking agent (generic term)|plant toxin (generic term)|phytotoxin (generic term)
+curassow|1
+(noun)|gallinaceous bird (generic term)|gallinacean (generic term)
+curate|1
+(noun)|minister of religion|minister|parson|pastor|rector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+curate cycloid|1
+(noun)|cycloid (generic term)
+curative|2
+(adj)|healing|alterative|remedial|sanative|therapeutic|healthful (similar term)
+(noun)|remedy|cure|therapeutic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+curator|1
+(noun)|conservator|custodian (generic term)|keeper (generic term)|steward (generic term)
+curatorial|1
+(adj)|custodian|keeper|steward (related term)
+curatorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+curb|8
+(noun)|curbing|kerb|edge (generic term)
+(noun)|curb bit|bit (generic term)
+(noun)|American Stock Exchange|AMEX|Curb|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+(noun)|bridle|check|restraint (generic term)
+(verb)|control|hold in|hold|contain|check|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|suppress|stamp down|inhibit|subdue|conquer|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|restrain (generic term)|encumber (generic term)|cumber (generic term)|constrain (generic term)
+(verb)|restrict|curtail|cut back|limit (generic term)|circumscribe (generic term)|confine (generic term)
+curb bit|1
+(noun)|curb|bit (generic term)
+curb market|1
+(noun)|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+curb roof|1
+(noun)|roof (generic term)
+curb service|1
+(noun)|service (generic term)
+curbed|1
+(adj)|checked|restrained (similar term)
+curbing|1
+(noun)|curb|kerb|edge (generic term)
+curbside|1
+(noun)|pavement (generic term)|paving (generic term)
+curbstone|1
+(noun)|kerbstone|paving stone (generic term)
+curculionidae|1
+(noun)|Curculionidae|family Curculionidae|arthropod family (generic term)
+curcuma|1
+(noun)|Curcuma|genus Curcuma|monocot genus (generic term)|liliopsid genus (generic term)
+curcuma domestica|1
+(noun)|turmeric|Curcuma longa|Curcuma domestica|herb (generic term)|herbaceous plant (generic term)
+curcuma longa|1
+(noun)|turmeric|Curcuma longa|Curcuma domestica|herb (generic term)|herbaceous plant (generic term)
+curd|2
+(noun)|foodstuff (generic term)|food product (generic term)
+(noun)|dairy product (generic term)
+curdle|3
+(verb)|clabber|clot|change state (generic term)|turn (generic term)|homogenize (antonym)|homogenise (antonym)|homogenise (antonym)
+(verb)|spoil (generic term)|go bad (generic term)
+(verb)|clot (generic term)|coagulate (generic term)
+curdled|1
+(adj)|coagulate|coagulated|grumous|grumose|thick (similar term)
+curdling|1
+(noun)|clotting|coagulation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+cure|5
+(noun)|remedy|curative|therapeutic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(verb)|bring around|heal|help (generic term)|aid (generic term)
+(verb)|preserve (generic term)|keep (generic term)
+(verb)|harden (generic term)|indurate (generic term)
+(verb)|change (generic term)
+cure-all|1
+(noun)|panacea|nostrum|catholicon|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+cured|6
+(adj)|healed|recovered|well (similar term)
+(adj)|vulcanized|vulcanised|processed (similar term)
+(adj)|seasoned (similar term)
+(adj)|preserved (similar term)
+(adj)|corned|preserved (similar term)
+(adj)|aged|preserved (similar term)
+curet|1
+(noun)|curette|surgical instrument (generic term)
+curettage|1
+(noun)|curettement|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+curette|1
+(noun)|curet|surgical instrument (generic term)
+curettement|1
+(noun)|curettage|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+curfew|3
+(noun)|deadline (generic term)
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+curia|1
+(noun)|Curia|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+curie|3
+(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist (generic term)
+(noun)|Curie|Pierre Curie|physicist (generic term)
+(noun)|Ci|radioactivity unit (generic term)
+curie point|1
+(noun)|Curie temperature|Curie point|temperature (generic term)
+curie temperature|1
+(noun)|Curie temperature|Curie point|temperature (generic term)
+curietherapy|1
+(noun)|radium therapy|Curietherapy|radiotherapy (generic term)|radiation therapy (generic term)|radiation (generic term)|actinotherapy (generic term)|irradiation (generic term)
+curing|1
+(noun)|hardening|solidifying|solidification|set|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+curio|1
+(noun)|curiosity|oddity|oddment|peculiarity|rarity|object (generic term)|physical object (generic term)
+curiosa|1
+(noun)|book (generic term)
+curiosity|2
+(noun)|wonder|cognitive state (generic term)|state of mind (generic term)
+(noun)|curio|oddity|oddment|peculiarity|rarity|object (generic term)|physical object (generic term)
+curious|3
+(adj)|funny|odd|peculiar|queer|rum|rummy|singular|strange (similar term)|unusual (similar term)
+(adj)|inquisitive (similar term)|speculative (similar term)|questioning (similar term)|wondering (similar term)|nosy (similar term)|nosey (similar term)|prying (similar term)|snoopy (similar term)|overcurious (similar term)|inquiring (related term)|incurious (antonym)
+(adj)|interested (similar term)
+curiously|2
+(adv)|oddly|peculiarly
+(adv)|inquisitively|interrogatively
+curiousness|2
+(noun)|inquisitiveness|curiosity (generic term)|wonder (generic term)
+(noun)|foreignness|strangeness|quality (generic term)|nativeness (antonym)
+curitiba|1
+(noun)|Curitiba|city (generic term)|metropolis (generic term)|urban center (generic term)
+curium|1
+(noun)|Cm|atomic number 96|metallic element (generic term)|metal (generic term)
+curl|8
+(noun)|coil|whorl|roll|curlicue|ringlet|gyre|scroll|round shape (generic term)
+(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist (generic term)
+(noun)|lock|ringlet|whorl|hair (generic term)
+(verb)|curve|kink|change surface (generic term)
+(verb)|curl up|draw in|bend (generic term)|flex (generic term)
+(verb)|coil|loop|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)|uncoil (antonym)
+(verb)|wave|twist (generic term)
+(verb)|play (generic term)
+curl up|1
+(verb)|curl|draw in|bend (generic term)|flex (generic term)
+curled|2
+(adj)|curled up|coiled (similar term)
+(adj)|curling|curly (similar term)
+curled pondweed|1
+(noun)|curleyleaf pondweed|Potamogeton crispus|pondweed (generic term)
+curled up|1
+(adj)|curled|coiled (similar term)
+curler|1
+(noun)|hair curler|roller|crimper|mechanical device (generic term)
+curlew|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+curlew sandpiper|1
+(noun)|Calidris Ferruginea|sandpiper (generic term)
+curleyleaf pondweed|1
+(noun)|curled pondweed|Potamogeton crispus|pondweed (generic term)
+curlicue|2
+(noun)|coil|whorl|roll|curl|ringlet|gyre|scroll|round shape (generic term)
+(noun)|squiggle|line (generic term)
+curliness|1
+(noun)|waviness|curvature (generic term)|curve (generic term)|straightness (antonym)
+curling|2
+(adj)|curled|curly (similar term)
+(noun)|game (generic term)
+curling iron|1
+(noun)|home appliance (generic term)|household appliance (generic term)
+curly|1
+(adj)|curled (similar term)|curling (similar term)|crisp (similar term)|frizzly (similar term)|frizzy (similar term)|kinky (similar term)|nappy (similar term)|permed (similar term)|ringleted (similar term)|wavy (similar term)|straight (antonym)
+curly-coated|1
+(adj)|curly-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+curly-coated retriever|1
+(noun)|retriever (generic term)
+curly-grained|1
+(adj)|cross-grained|wavy-grained|uneven (similar term)
+curly-haired|1
+(adj)|curly-coated|hairy (similar term)|haired (similar term)|hirsute (similar term)
+curly-heads|1
+(noun)|Clematis ochreleuca|clematis (generic term)
+curly-leafed|1
+(adj)|curly-leaved|leafy (similar term)
+curly-leaved|1
+(adj)|curly-leafed|leafy (similar term)
+curly clematis|1
+(noun)|blue jasmine|blue jessamine|marsh clematis|Clematis crispa|clematis (generic term)
+curly endive|1
+(noun)|chicory|salad green (generic term)|salad greens (generic term)
+curly grass|1
+(noun)|curly grass fern|Schizaea pusilla|fern (generic term)
+curly grass fern|1
+(noun)|curly grass|Schizaea pusilla|fern (generic term)
+curlycup gumweed|1
+(noun)|Grindelia squarrosa|gumweed (generic term)|gum plant (generic term)|tarweed (generic term)|rosinweed (generic term)
+curmudgeon|1
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+curmudgeonly|1
+(adj)|crusty|gruff|ill-humored|ill-humoured|ill-natured (similar term)
+currajong|1
+(noun)|kurrajong|Brachychiton populneus|bottle-tree (generic term)|bottle tree (generic term)
+currant|3
+(noun)|berry (generic term)
+(noun)|currant bush|shrub (generic term)|bush (generic term)
+(noun)|raisin (generic term)
+currant bush|1
+(noun)|currant|shrub (generic term)|bush (generic term)
+currawong|1
+(noun)|bell magpie|Australian magpie (generic term)
+currency|4
+(noun)|medium of exchange (generic term)|monetary system (generic term)
+(noun)|prevalence (generic term)
+(noun)|vogue|acceptance (generic term)
+(noun)|currentness|up-to-dateness|presentness (generic term)|nowness (generic term)
+current|4
+(adj)|actual (similar term)|afoot (similar term)|underway (similar term)|circulating (similar term)|contemporary (similar term)|present-day (similar term)|incumbent (similar term)|live (similar term)|live (similar term)|occurrent (similar term)|ongoing (similar term)|on-going (similar term)|on-line (similar term)|prevailing (similar term)|prevalent (similar term)|rife (similar term)|topical (similar term)|up-to-date (similar term)|up-to-the-minute (similar term)|latest (similar term)|modern (related term)|new (related term)|noncurrent (antonym)
+(noun)|electric current|electrical phenomenon (generic term)
+(noun)|stream|flow (generic term)|flowing (generic term)
+(noun)|stream|flow|course (generic term)|line (generic term)
+current account|1
+(noun)|accounting (generic term)
+current assets|1
+(noun)|liquid assets|quick assets|assets (generic term)
+current electricity|1
+(noun)|dynamic electricity|electricity (generic term)
+current intelligence|1
+(noun)|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+current of air|1
+(noun)|wind|air current|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+current unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+currently|1
+(adv)|presently
+currentness|1
+(noun)|currency|up-to-dateness|presentness (generic term)|nowness (generic term)
+currer bell|1
+(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer (generic term)|author (generic term)
+curricular|1
+(adj)|information|info (related term)
+curriculum|1
+(noun)|course of study|program|programme|syllabus|information (generic term)|info (generic term)
+curriculum vitae|1
+(noun)|CV|resume|summary (generic term)|sum-up (generic term)
+currier|2
+(noun)|Currier|Nathaniel Currier|lithographer (generic term)
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+currish|2
+(adj)|ignoble (similar term)
+(adj)|ill-natured (similar term)
+currishly|1
+(adv)|ignobly
+curry|4
+(noun)|dish (generic term)
+(verb)|season (generic term)|flavor (generic term)|flavour (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|dress|groom|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+curry favor|1
+(verb)|curry favour|court favor|court favour|fawn (generic term)|toady (generic term)|truckle (generic term)|bootlick (generic term)|kowtow (generic term)|kotow (generic term)|suck up (generic term)
+curry favour|1
+(verb)|curry favor|court favor|court favour|fawn (generic term)|toady (generic term)|truckle (generic term)|bootlick (generic term)|kowtow (generic term)|kotow (generic term)|suck up (generic term)
+curry powder|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+curry sauce|1
+(noun)|sauce (generic term)
+currycomb|2
+(noun)|comb (generic term)
+(verb)|comb (generic term)
+curse|9
+(noun)|curse word|expletive|oath|swearing|swearword|cuss|profanity (generic term)
+(noun)|execration|condemnation|denunciation (generic term)|denouncement (generic term)
+(noun)|hex|jinx|whammy|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+(noun)|bane|scourge|nemesis|affliction (generic term)
+(noun)|torment|affliction (generic term)
+(verb)|cuss|blaspheme|swear|imprecate|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+(verb)|beshrew|damn|bedamn|anathemize|anathemise|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+(verb)|excommunicate|unchurch|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)|communicate (antonym)
+curse word|1
+(noun)|curse|expletive|oath|swearing|swearword|cuss|profanity (generic term)
+cursed|2
+(adj)|curst|accursed (similar term)|accurst (similar term)|maledict (similar term)|blasted (similar term)|blame (similar term)|blamed (similar term)|blessed (similar term)|damn (similar term)|damned (similar term)|darned (similar term)|deuced (similar term)|goddam (similar term)|goddamn (similar term)|goddamned (similar term)|infernal (similar term)|cursed with (similar term)|stuck with (similar term)|damn (similar term)|goddamn (similar term)|damnable (similar term)|execrable (similar term)|blessed (antonym)
+(adj)|damned|doomed|unredeemed|unsaved|lost (similar term)
+cursed crowfoot|1
+(noun)|celery-leaved buttercup|Ranunculus sceleratus|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+cursed with|1
+(adj)|stuck with|cursed (similar term)|curst (similar term)
+cursedly|1
+(adv)|damned|damnably
+cursive|2
+(adj)|written (similar term)
+(noun)|longhand|running hand|cursive script|handwriting (generic term)|hand (generic term)|script (generic term)
+cursive script|1
+(noun)|longhand|running hand|cursive|handwriting (generic term)|hand (generic term)|script (generic term)
+cursor|1
+(noun)|pointer|indicator (generic term)
+cursorial|1
+(adj)|fossorial (antonym)
+cursorily|1
+(adv)|quickly
+cursorius|1
+(noun)|Cursorius|genus Cursorius|bird genus (generic term)
+cursorius cursor|1
+(noun)|cream-colored courser|Cursorius cursor|courser (generic term)
+cursory|1
+(adj)|casual|passing|perfunctory|careless (similar term)
+curst|1
+(adj)|cursed|accursed (similar term)|accurst (similar term)|maledict (similar term)|blasted (similar term)|blame (similar term)|blamed (similar term)|blessed (similar term)|damn (similar term)|damned (similar term)|darned (similar term)|deuced (similar term)|goddam (similar term)|goddamn (similar term)|goddamned (similar term)|infernal (similar term)|cursed with (similar term)|stuck with (similar term)|damn (similar term)|goddamn (similar term)|damnable (similar term)|execrable (similar term)|blessed (antonym)
+curt|2
+(adj)|brusque|brusk|short|discourteous (similar term)
+(adj)|crisp|laconic|terse|concise (similar term)
+curtail|2
+(verb)|restrict|curb|cut back|limit (generic term)|circumscribe (generic term)|confine (generic term)
+(verb)|clip|cut short|shorten (generic term)
+curtailment|3
+(noun)|shortness (generic term)
+(noun)|suppression|restraint (generic term)
+(noun)|retrenchment|downsizing|economy (generic term)|saving (generic term)
+curtain|3
+(noun)|drape|drapery|mantle|pall|blind (generic term)|screen (generic term)|furnishing (generic term)
+(noun)|barrier (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+curtain call|1
+(noun)|bow|thanks (generic term)
+curtain lecture|1
+(noun)|lecture (generic term)|speech (generic term)|talking to (generic term)
+curtain off|1
+(verb)|shut off (generic term)|close off (generic term)
+curtain raiser|2
+(noun)|first step (generic term)|initiative (generic term)|opening move (generic term)|opening (generic term)
+(noun)|play (generic term)
+curtain raising|1
+(noun)|opening|opening night|start (generic term)
+curtain ring|1
+(noun)|hoop (generic term)|ring (generic term)
+curtained|1
+(adj)|draped (similar term)|curtainless (antonym)
+curtainless|1
+(adj)|uncurtained|curtained (antonym)
+curtal|1
+(adj)|short (similar term)
+curtilage|1
+(noun)|yard|grounds|field (generic term)
+curtis|1
+(noun)|Curtis|William Curtis|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+curtisia|1
+(noun)|Curtisia|genus Curtisia|rosid dicot genus (generic term)
+curtiss|1
+(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist (generic term)
+curtly|1
+(adv)|short|shortly
+curtness|1
+(noun)|abruptness|brusqueness|gruffness|shortness|discourtesy (generic term)|rudeness (generic term)
+curtsey|2
+(noun)|curtsy|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(verb)|curtsy|bow (generic term)
+curtsy|3
+(noun)|curtsey|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(verb)|curtsey|bow (generic term)
+(verb)|bob|greet (generic term)|recognize (generic term)|recognise (generic term)
+curvaceous|1
+(adj)|bosomy|busty|buxom|curvy|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+curvaceously|1
+(adv)|buxomly
+curvaceousness|1
+(noun)|shapeliness|voluptuousness|pulchritude (generic term)
+curvature|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|derived function (generic term)|derivative (generic term)|differential coefficient (generic term)|differential (generic term)|first derivative (generic term)
+(noun)|curve|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+curve|10
+(noun)|curved shape|line (generic term)|straight line (antonym)
+(noun)|line (generic term)
+(noun)|curve ball|breaking ball|bender|pitch (generic term)|delivery (generic term)
+(noun)|curvature|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+(noun)|bend|section (generic term)|segment (generic term)
+(verb)|swerve|sheer|trend|veer|slue|slew|cut|turn (generic term)
+(verb)|wind|twist|be (generic term)
+(verb)|arch|arc|bend (generic term)|flex (generic term)
+(verb)|crook|bend (generic term)|flex (generic term)
+(verb)|curl|kink|change surface (generic term)
+curve ball|1
+(noun)|curve|breaking ball|bender|pitch (generic term)|delivery (generic term)
+curved|1
+(adj)|curving|arced (similar term)|arched (similar term)|arching (similar term)|arciform (similar term)|arcuate (similar term)|bowed (similar term)|curvilineal (similar term)|curvilinear (similar term)|eellike (similar term)|falcate (similar term)|falciform (similar term)|sickle-shaped (similar term)|curvy (similar term)|curvey (similar term)|flexuous (similar term)|hooklike (similar term)|incurvate (similar term)|incurved (similar term)|recurved (similar term)|recurvate (similar term)|semicircular (similar term)|serpentine (similar term)|snaky (similar term)|snakelike (similar term)|sinuate (similar term)|sinuous (similar term)|wiggly (similar term)|sinusoidal (similar term)|upcurved (similar term)|straight (antonym)
+curved shape|1
+(noun)|curve|line (generic term)|straight line (antonym)
+curvet|2
+(noun)|vaulting|dressage (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+curvey|1
+(adj)|curvy|curved (similar term)|curving (similar term)
+curvilineal|1
+(adj)|curvilinear|curved (similar term)|curving (similar term)
+curvilinear|1
+(adj)|curvilineal|curved (similar term)|curving (similar term)
+curvilinear correlation|1
+(noun)|nonlinear correlation|skew correlation|correlation (generic term)|correlational statistics (generic term)
+curvilinear regression|1
+(noun)|regression (generic term)|simple regression (generic term)|regression toward the mean (generic term)|statistical regression (generic term)
+curving|1
+(adj)|curved|arced (similar term)|arched (similar term)|arching (similar term)|arciform (similar term)|arcuate (similar term)|bowed (similar term)|curvilineal (similar term)|curvilinear (similar term)|eellike (similar term)|falcate (similar term)|falciform (similar term)|sickle-shaped (similar term)|curvy (similar term)|curvey (similar term)|flexuous (similar term)|hooklike (similar term)|incurvate (similar term)|incurved (similar term)|recurved (similar term)|recurvate (similar term)|semicircular (similar term)|serpentine (similar term)|snaky (similar term)|snakelike (similar term)|sinuate (similar term)|sinuous (similar term)|wiggly (similar term)|sinusoidal (similar term)|upcurved (similar term)|straight (antonym)
+curvy|2
+(adj)|curvey|curved (similar term)|curving (similar term)
+(adj)|bosomy|busty|buxom|curvaceous|full-bosomed|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+cusco|1
+(noun)|Cuzco|Cusco|town (generic term)
+cuscus|1
+(noun)|phalanger (generic term)|opossum (generic term)|possum (generic term)
+cuscuta|1
+(noun)|Cuscuta|genus Cuscuta|dicot genus (generic term)|magnoliopsid genus (generic term)
+cuscuta gronovii|1
+(noun)|love vine|Cuscuta gronovii|dodder (generic term)
+cush-cush|1
+(noun)|Dioscorea trifida|yam (generic term)|yam plant (generic term)
+cushat|1
+(noun)|wood pigeon|ringdove|Columba palumbus|pigeon (generic term)
+cushaw|2
+(noun)|Cucurbita mixta|Cucurbita argyrosperma|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+cushing|1
+(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist (generic term)|brain doctor (generic term)
+cushing's disease|1
+(noun)|Cushing's disease|hyperadrenalism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+cushing's syndrome|1
+(noun)|Cushing's syndrome|hyperadrenocorticism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+cushion|3
+(noun)|shock absorber|shock|damper (generic term)|muffler (generic term)
+(noun)|padding (generic term)|cushioning (generic term)
+(verb)|buffer|soften|modify (generic term)
+cushion calamint|1
+(noun)|wild basil|Clinopodium vulgare|Satureja vulgaris|herb (generic term)|herbaceous plant (generic term)
+cushion flower|1
+(noun)|pincushion hakea|Hakea laurina|shrub (generic term)|bush (generic term)
+cushioned|1
+(adj)|cushiony|padded|soft (similar term)
+cushioning|1
+(noun)|padding|artifact (generic term)|artefact (generic term)
+cushiony|1
+(adj)|cushioned|padded|soft (similar term)
+cushitic|1
+(noun)|Cushitic|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+cushy|1
+(adj)|soft|easygoing|easy (similar term)
+cusk|3
+(noun)|saltwater fish (generic term)
+(noun)|torsk|Brosme brosme|gadoid (generic term)|gadoid fish (generic term)
+(noun)|burbot|eelpout|ling|Lota lota|cod (generic term)|codfish (generic term)
+cusk-eel|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cusp|3
+(noun)|point (generic term)
+(noun)|leaflet|flap (generic term)
+(noun)|point (generic term)|tip (generic term)|peak (generic term)
+cuspate|1
+(adj)|cuspated|cusped|cuspidal|cuspidate|cuspidated|angular (similar term)|angulate (similar term)
+cuspated|1
+(adj)|cuspate|cusped|cuspidal|cuspidate|cuspidated|angular (similar term)|angulate (similar term)
+cusped|1
+(adj)|cuspate|cuspated|cuspidal|cuspidate|cuspidated|angular (similar term)|angulate (similar term)
+cuspid|1
+(noun)|canine|canine tooth|eyetooth|eye tooth|dogtooth|tooth (generic term)
+cuspidal|1
+(adj)|cuspate|cuspated|cusped|cuspidate|cuspidated|angular (similar term)|angulate (similar term)
+cuspidate|1
+(adj)|cuspate|cuspated|cusped|cuspidal|cuspidated|angular (similar term)|angulate (similar term)
+cuspidated|1
+(adj)|cuspate|cuspated|cusped|cuspidal|cuspidate|angular (similar term)|angulate (similar term)
+cuspidation|1
+(noun)|embellishment (generic term)
+cuspidor|1
+(noun)|spittoon|receptacle (generic term)
+cuss|4
+(noun)|pest|blighter|pesterer|gadfly|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+(noun)|chap|fellow|feller|lad|gent|fella|blighter|male (generic term)|male person (generic term)
+(noun)|curse|curse word|expletive|oath|swearing|swearword|profanity (generic term)
+(verb)|curse|blaspheme|swear|imprecate|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+cussed|1
+(adj)|obdurate|obstinate|unrepentant|unregenerate (similar term)|unregenerated (similar term)
+cussedly|1
+(adv)|stubbornly|pig-headedly|obdurately|mulishly|obstinately
+cussedness|1
+(noun)|orneriness|contrariness (generic term)|perversity (generic term)|perverseness (generic term)
+custard|1
+(noun)|dish (generic term)
+custard-apple family|1
+(noun)|Annonaceae|family Annonaceae|magnoliid dicot family (generic term)
+custard-like|1
+(adj)|dish (related term)
+custard apple|2
+(noun)|custard apple tree|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+custard apple tree|1
+(noun)|custard apple|fruit tree (generic term)
+custard pie|1
+(noun)|property (generic term)|prop (generic term)
+custer|1
+(noun)|Custer|George Armstrong Custer|General Custer|general (generic term)|full general (generic term)
+custer's last stand|1
+(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+custodial|1
+(adj)|guardian|tutelary|tutelar|protective (similar term)
+custodial account|1
+(noun)|cash account (generic term)
+custodian|1
+(noun)|keeper|steward|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+custodianship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+custody|3
+(noun)|detention|detainment|hold|confinement (generic term)
+(noun)|imprisonment (generic term)|internment (generic term)
+(noun)|hands|guardianship (generic term)|keeping (generic term)|safekeeping (generic term)
+custody battle|1
+(noun)|litigation (generic term)|judicial proceeding (generic term)
+custody case|1
+(noun)|legal action (generic term)|action (generic term)|action at law (generic term)
+custom|5
+(adj)|custom-made|customized|customised|bespoke (similar term)|bespoken (similar term)|made-to-order (similar term)|tailored (similar term)|tailor-made (similar term)|custom-built (similar term)|made-to-order (similar term)|ready-made (antonym)
+(noun)|usage|usance|practice (generic term)|pattern (generic term)|survival (generic term)
+(noun)|tradition|practice (generic term)
+(noun)|customs|customs duty|impost|duty (generic term)|tariff (generic term)
+(noun)|trade (generic term)|patronage (generic term)
+custom-built|2
+(adj)|made-to-order|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+(noun)|custom-made|item (generic term)|ready-made (antonym)
+custom-made|2
+(adj)|customized|custom|customised|bespoke (similar term)|bespoken (similar term)|made-to-order (similar term)|tailored (similar term)|tailor-made (similar term)|custom-built (similar term)|made-to-order (similar term)|ready-made (antonym)
+(noun)|custom-built|item (generic term)|ready-made (antonym)
+custom-make|1
+(verb)|customize|customise|tailor-make|produce (generic term)|make (generic term)|create (generic term)
+customary|2
+(adj)|conventional (similar term)
+(adj)|accustomed|habitual|wonted|usual (similar term)
+customer|1
+(noun)|client|consumer (generic term)
+customer's broker|1
+(noun)|account executive|account representative|registered representative|customer's man|businessperson (generic term)|bourgeois (generic term)
+customer's man|1
+(noun)|account executive|account representative|registered representative|customer's broker|businessperson (generic term)|bourgeois (generic term)
+customer agent|1
+(noun)|buyer (generic term)|purchaser (generic term)|emptor (generic term)|vendee (generic term)
+customhouse|1
+(noun)|customshouse|government building (generic term)
+customise|2
+(verb)|custom-make|customize|tailor-make|produce (generic term)|make (generic term)|create (generic term)
+(verb)|customize|construct (generic term)|build (generic term)|make (generic term)|change (generic term)|alter (generic term)|modify (generic term)
+customised|1
+(adj)|custom-made|customized|custom|bespoke (similar term)|bespoken (similar term)|made-to-order (similar term)|tailored (similar term)|tailor-made (similar term)|custom-built (similar term)|made-to-order (similar term)|ready-made (antonym)
+customize|2
+(verb)|custom-make|customise|tailor-make|produce (generic term)|make (generic term)|create (generic term)
+(verb)|customise|construct (generic term)|build (generic term)|make (generic term)|change (generic term)|alter (generic term)|modify (generic term)
+customized|1
+(adj)|custom-made|custom|customised|bespoke (similar term)|bespoken (similar term)|made-to-order (similar term)|tailored (similar term)|tailor-made (similar term)|custom-built (similar term)|made-to-order (similar term)|ready-made (antonym)
+customs|1
+(noun)|customs duty|custom|impost|duty (generic term)|tariff (generic term)
+customs bureau|1
+(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+customs duty|1
+(noun)|customs|custom|impost|duty (generic term)|tariff (generic term)
+customs service|1
+(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+customs union|1
+(noun)|union (generic term)
+customshouse|1
+(noun)|customhouse|government building (generic term)
+cut|67
+(adj)|chopped (similar term)|shredded (similar term)|sliced (similar term)|cut up (similar term)|incised (similar term)|perforated (similar term)|pierced (similar term)|perforated (similar term)|perforate (similar term)|punctured (similar term)|severed (similar term)|cut off (similar term)|split (similar term)|uncut (antonym)
+(adj)|cut out (similar term)|hewn (similar term)|hand-hewn (similar term)|sheared (similar term)|slashed (similar term)|uncut (antonym)
+(adj)|shortened|abridged (similar term)
+(adj)|trimmed|clipped (similar term)|untrimmed (antonym)
+(adj)|mown|new-mown (similar term)|unmown (antonym)
+(adj)|uncut (antonym)
+(adj)|emasculated|gelded|castrated (similar term)|unsexed (similar term)
+(adj)|gashed|slashed|injured (similar term)
+(adj)|slashed|decreased (similar term)|reduced (similar term)
+(adj)|thinned|weakened|diluted (similar term)|dilute (similar term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|gash|slash|slice|wound (generic term)|lesion (generic term)
+(noun)|cut of meat|meat (generic term)
+(noun)|track|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|cutting|opening (generic term)
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|gradation (generic term)|step (generic term)
+(noun)|gash|furrow (generic term)
+(noun)|transition (generic term)
+(noun)|deletion|excision|editing (generic term)|redaction (generic term)
+(noun)|fashion (generic term)
+(noun)|cutting|cutting off|shortening (generic term)
+(noun)|baseball swing|swing|stroke (generic term)|shot (generic term)
+(noun)|stinger|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+(noun)|canal (generic term)
+(noun)|snub|cold shoulder|rebuff (generic term)|slight (generic term)
+(noun)|undercut|stroke (generic term)|shot (generic term)
+(noun)|cutting|division (generic term)
+(noun)|absence (generic term)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|cut away (related term)|cut out (related term)|cut up (related term)|cut into (related term)|cut off (related term)|cut out (related term)
+(verb)|reduce|cut down|cut back|trim|trim down|trim back|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|swerve|sheer|curve|trend|veer|slue|slew|turn (generic term)
+(verb)|free (generic term)|discharge (generic term)
+(verb)|tailor|design (generic term)
+(verb)|hit (generic term)
+(verb)|write out|issue|make out|write (generic term)
+(verb)|edit|edit out|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|skip|miss (generic term)
+(verb)|hack|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|move (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|transit (generic term)|pass through (generic term)|move through (generic term)|pass across (generic term)|pass over (generic term)
+(verb)|switch (generic term)|shift (generic term)|change (generic term)|cut to (related term)
+(verb)|stop (generic term)
+(verb)|record (generic term)|tape (generic term)
+(verb)|burn|produce (generic term)|make (generic term)|create (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)
+(verb)|be (generic term)
+(verb)|shuffle (generic term)|ruffle (generic term)|mix (generic term)
+(verb)|switch off|turn off|turn out|throw (generic term)|flip (generic term)|switch (generic term)|switch on (antonym)
+(verb)|reap (generic term)|harvest (generic term)|glean (generic term)
+(verb)|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+(verb)|ignore|disregard|snub|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|shorten (generic term)
+(verb)|prune|rationalize|rationalise|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|cut back (related term)|cut back (related term)|cut out (related term)
+(verb)|dissolve (generic term)|resolve (generic term)|break up (generic term)
+(verb)|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|cut off|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)|cut off (related term)
+(verb)|abridge|foreshorten|abbreviate|shorten|contract|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+(verb)|dilute|thin|thin out|reduce|weaken (generic term)
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+(verb)|grow (generic term)
+(verb)|geld|emasculate (generic term)|castrate (generic term)|demasculinize (generic term)|demasculinise (generic term)
+cut-and-dried|1
+(adj)|cut-and-dry|ordinary (similar term)
+cut-and-dry|1
+(adj)|cut-and-dried|ordinary (similar term)
+cut-and-thrust|1
+(noun)|knife fight|snickersnee|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+cut-in|1
+(noun)|insert|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+cut-price|1
+(adj)|bargain-priced|cut-rate|cheap (similar term)|inexpensive (similar term)
+cut-rate|1
+(adj)|bargain-priced|cut-price|cheap (similar term)|inexpensive (similar term)
+cut-rate sale|1
+(noun)|sale|sales event|occasion (generic term)
+cut-up|1
+(noun)|prankster|trickster|tricker|hoaxer|practical joker|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+cut across|3
+(verb)|traverse|track|cover|cross|pass over|get over|get across|cut through|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|be (generic term)
+(verb)|crosscut|cut (generic term)
+cut away|1
+(verb)|cut (generic term)
+cut back|4
+(verb)|flash back|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|reduce|cut down|trim|trim down|trim back|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|snip|clip|crop|trim|lop|dress|prune|thin out (generic term)
+(verb)|restrict|curtail|curb|limit (generic term)|circumscribe (generic term)|confine (generic term)
+cut corners|1
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+cut down|6
+(verb)|reduce|cut back|trim|trim down|trim back|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|slash|cut (generic term)
+(verb)|down|knock down|push down|pull down|strike (generic term)
+(verb)|cut out|check (generic term)|turn back (generic term)|arrest (generic term)|stop (generic term)|contain (generic term)|hold back (generic term)
+(verb)|mow|cut (generic term)
+(verb)|fell|drop|strike down|cut (generic term)
+cut glass|1
+(noun)|glassware (generic term)|glasswork (generic term)
+cut in|5
+(verb)|partake (generic term)|share (generic term)|partake in (generic term)
+(verb)|pull (generic term)
+(verb)|chime in|put in|butt in|chisel in|barge in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|interrupt (generic term)|disrupt (generic term)
+(verb)|blend in (generic term)|mix in (generic term)
+cut into|1
+(verb)|dig|delve|turn over|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|dig up (related term)|dig in (related term)|dig out (related term)
+cut of beef|1
+(noun)|cut (generic term)|cut of meat (generic term)
+cut of lamb|1
+(noun)|cut (generic term)|cut of meat (generic term)
+cut of meat|1
+(noun)|cut|meat (generic term)
+cut of mutton|1
+(noun)|cut (generic term)|cut of meat (generic term)
+cut of pork|1
+(noun)|cut (generic term)|cut of meat (generic term)
+cut of veal|1
+(noun)|cut (generic term)|cut of meat (generic term)
+cut off|7
+(adj)|severed|cut (similar term)
+(verb)|interrupt|disrupt|break up|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|cut|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)|cut off (related term)
+(verb)|chop off|lop off|detach (generic term)|come off (generic term)|come away (generic term)
+(verb)|cut out|intercept (generic term)|stop (generic term)
+(verb)|chip|knap|break off|cut (generic term)|chip at (related term)
+(verb)|amputate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+cut out|7
+(adj)|cut (similar term)
+(verb)|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|cut off|intercept (generic term)|stop (generic term)
+(verb)|scratch out|erase (generic term)|rub out (generic term)|score out (generic term)|efface (generic term)|wipe off (generic term)
+(verb)|cut down|check (generic term)|turn back (generic term)|arrest (generic term)|stop (generic term)|contain (generic term)|hold back (generic term)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+cut price|1
+(noun)|bargain rate|cheapness|cut rate|inexpensiveness (generic term)
+cut rate|1
+(noun)|bargain rate|cheapness|cut price|inexpensiveness (generic term)
+cut short|4
+(verb)|break short|break off|interrupt (generic term)|break (generic term)
+(verb)|interrupt (generic term)|disrupt (generic term)
+(verb)|truncate|shorten (generic term)
+(verb)|clip|curtail|shorten (generic term)
+cut through|1
+(verb)|traverse|track|cover|cross|pass over|get over|get across|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+cut to|1
+(verb)|move (generic term)
+cut to ribbons|1
+(verb)|demolish (generic term)|destroy (generic term)
+cut up|5
+(adj)|cut (similar term)
+(verb)|carve|cut (generic term)|carve up (related term)
+(verb)|mutilate|mangle|damage (generic term)
+(verb)|compartmentalize|compartmentalise|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|hack|edit (generic term)|redact (generic term)
+cutaneal|1
+(adj)|cutaneous|dermal|connective tissue|body covering (related term)
+cutaneous|1
+(adj)|cutaneal|dermal|connective tissue|body covering (related term)
+cutaneous anthrax|1
+(noun)|malignant pustule|anthrax (generic term)
+cutaneous leishmaniasis|1
+(noun)|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+cutaneous sensation|1
+(noun)|haptic sensation|skin sensation|touch (generic term)|touch sensation (generic term)|tactual sensation (generic term)|tactile sensation (generic term)|feeling (generic term)
+cutaneous senses|1
+(noun)|touch|sense of touch|skin senses|touch modality|somatosense (generic term)|exteroception (generic term)
+cutaneous vein|1
+(noun)|vena cutanea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cutaway|2
+(noun)|cutaway drawing|cutaway model|representation (generic term)
+(noun)|coat (generic term)
+cutaway drawing|1
+(noun)|cutaway|cutaway model|representation (generic term)
+cutaway model|1
+(noun)|cutaway|cutaway drawing|representation (generic term)
+cutback|1
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+cutch|1
+(noun)|kutch|tannin (generic term)|tannic acid (generic term)
+cute|2
+(adj)|cunning|attractive (similar term)
+(adj)|precious|artful (similar term)
+cutely|1
+(adv)|cunningly
+cuteness|1
+(noun)|prettiness|beauty (generic term)
+cuterebra|1
+(noun)|Cuterebra|genus Cuterebra|arthropod genus (generic term)
+cuterebridae|1
+(noun)|Cuterebridae|family Cuterebridae|arthropod family (generic term)
+cuticle|3
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+(noun)|epidermis|stratum (generic term)
+(noun)|carapace|shell|shield|scute (generic term)
+cuticula|1
+(noun)|carapace (generic term)|shell (generic term)|cuticle (generic term)|shield (generic term)
+cuticular|1
+(adj)|epidermal|epidermic|dermal|stratum (related term)|carapace|shell|cuticle|shield (related term)
+cutin|1
+(noun)|plant material (generic term)
+cutinize|1
+(verb)|convert (generic term)
+cutis|1
+(noun)|skin|tegument|connective tissue (generic term)|body covering (generic term)
+cutlas|1
+(noun)|cutlass|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+cutlass|1
+(noun)|cutlas|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+cutlassfish|1
+(noun)|frost fish|hairtail|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+cutleaved coneflower|1
+(noun)|Rudbeckia laciniata|coneflower (generic term)
+cutler|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+cutlery|2
+(noun)|cutter|cutting tool|cutting implement (generic term)
+(noun)|eating utensil|tableware (generic term)
+cutlet|1
+(noun)|scallop|scollop|escallop|piece (generic term)|slice (generic term)
+cutoff|3
+(noun)|limit (generic term)|limitation (generic term)
+(noun)|shortcut|crosscut|road (generic term)|route (generic term)
+(noun)|device (generic term)
+cutoff saw|1
+(noun)|crosscut saw|crosscut handsaw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+cutout|3
+(noun)|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+(noun)|photographic print (generic term)|print (generic term)
+(noun)|part (generic term)|portion (generic term)
+cutpurse|1
+(noun)|pickpocket|dip|thief (generic term)|stealer (generic term)
+cuttable|1
+(adj)|chewable|tender (similar term)
+cutter|6
+(noun)|stonecutter|quarryman (generic term)|quarrier (generic term)
+(noun)|carver|diner (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|tender|ship's boat|pinnace|boat (generic term)
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+(noun)|cutlery|cutting tool|cutting implement (generic term)
+cutthroat|2
+(adj)|fierce|bowelless|merciless (similar term)|unmerciful (similar term)
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+cutting|13
+(adj)|edged|stinging|unkind (similar term)
+(adj)|bleak|raw|cold (similar term)
+(adj)|keen|knifelike|piercing|stabbing|lancinate|lancinating|sharp (similar term)
+(adj)|sharp (similar term)
+(noun)|film editing|creating by removal (generic term)
+(noun)|slip|stalk (generic term)|stem (generic term)
+(noun)|part (generic term)|piece (generic term)
+(noun)|clipping|newspaper clipping|press clipping|press cutting|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|carving|creating by removal (generic term)
+(noun)|cut|division (generic term)
+(noun)|cut|opening (generic term)
+(noun)|thinning|dilution (generic term)
+(noun)|cut|cutting off|shortening (generic term)
+cutting-edge|1
+(adj)|up-to-date|with-it|fashionable (similar term)|stylish (similar term)
+cutting angle|1
+(noun)|angle (generic term)
+cutting board|1
+(noun)|chopping board|board (generic term)
+cutting edge|2
+(noun)|vanguard|forefront|position (generic term)|view (generic term)|perspective (generic term)
+(noun)|knife edge|edge (generic term)
+cutting implement|1
+(noun)|tool (generic term)
+cutting off|2
+(noun)|abscission|removal (generic term)|remotion (generic term)
+(noun)|cut|cutting|shortening (generic term)
+cutting out|1
+(noun)|ablation|extirpation|excision|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+cutting room|1
+(noun)|room (generic term)
+cutting tool|1
+(noun)|cutter|cutlery|cutting implement (generic term)
+cuttle|1
+(noun)|cuttlefish|decapod (generic term)
+cuttlefish|1
+(noun)|cuttle|decapod (generic term)
+cutty stool|1
+(noun)|stool (generic term)
+cutwork|1
+(noun)|embroidery (generic term)|fancywork (generic term)
+cutworm|1
+(noun)|caterpillar (generic term)
+cuvier|1
+(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist (generic term)|natural scientist (generic term)
+cuzco|1
+(noun)|Cuzco|Cusco|town (generic term)
+cv|2
+(adj)|one hundred five|105|cardinal (similar term)
+(noun)|curriculum vitae|CV|resume|summary (generic term)|sum-up (generic term)
+cva|1
+(noun)|stroke|apoplexy|cerebrovascular accident|CVA|attack (generic term)
+cwm|1
+(noun)|cirque|corrie|basin (generic term)
+cwt|2
+(noun)|hundredweight|short hundredweight|centner|cental|quintal|avoirdupois unit (generic term)
+(noun)|hundredweight|long hundredweight|avoirdupois unit (generic term)
+cx|1
+(adj)|one hundred ten|110|cardinal (similar term)
+cxl|1
+(adj)|one hundred forty|140|cardinal (similar term)
+cxlv|1
+(adj)|one hundred forty-five|145|cardinal (similar term)
+cxv|1
+(adj)|one hundred fifteen|115|cardinal (similar term)
+cxx|1
+(adj)|one hundred twenty|120|cardinal (similar term)
+cxxv|1
+(adj)|one hundred twenty-five|125|cardinal (similar term)
+cxxx|1
+(adj)|one hundred thirty|130|cardinal (similar term)
+cxxxv|1
+(adj)|one hundred thirty-five|135|cardinal (similar term)
+cy pres|1
+(noun)|rule of cy pres|cy pres doctrine|rule (generic term)|regulation (generic term)
+cy pres doctrine|1
+(noun)|cy pres|rule of cy pres|rule (generic term)|regulation (generic term)
+cy young|1
+(noun)|Young|Cy Young|Danton True Young|ballplayer (generic term)|baseball player (generic term)
+cyamopsis|1
+(noun)|Cyamopsis|genus Cyamopsis|rosid dicot genus (generic term)
+cyamopsis psoraloides|1
+(noun)|guar|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume (generic term)|leguminous plant (generic term)
+cyamopsis tetragonolobus|1
+(noun)|guar|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume (generic term)|leguminous plant (generic term)
+cyamus|1
+(noun)|Cyamus|genus Cyamus|arthropod genus (generic term)
+cyan|2
+(adj)|bluish green|blue-green|teal|chromatic (similar term)
+(noun)|bluish green (generic term)|blue green (generic term)|teal (generic term)
+cyanamid|1
+(noun)|cyanamide|acid (generic term)
+cyanamide|2
+(noun)|cyanamid|acid (generic term)
+(noun)|calcium-cyanamide|compound (generic term)|chemical compound (generic term)
+cyanic acid|1
+(noun)|acid (generic term)
+cyanide|2
+(noun)|nitrile|nitril|organic compound (generic term)
+(noun)|salt (generic term)
+cyanide group|1
+(noun)|cyano group|cyano radical|cyanide radical|group (generic term)|radical (generic term)|chemical group (generic term)
+cyanide poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+cyanide process|1
+(noun)|industrial process (generic term)
+cyanide radical|1
+(noun)|cyano group|cyano radical|cyanide group|group (generic term)|radical (generic term)|chemical group (generic term)
+cyanine dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+cyanite|1
+(noun)|kyanite|mineral (generic term)
+cyano group|1
+(noun)|cyano radical|cyanide group|cyanide radical|group (generic term)|radical (generic term)|chemical group (generic term)
+cyano radical|1
+(noun)|cyano group|cyanide group|cyanide radical|group (generic term)|radical (generic term)|chemical group (generic term)
+cyanobacteria|1
+(noun)|blue-green algae|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+cyanobacterial|1
+(adj)|cyanophyte|division (related term)|class (related term)
+cyanocitta|1
+(noun)|Cyanocitta|genus Cyanocitta|bird genus (generic term)
+cyanocitta cristata|1
+(noun)|blue jay|jaybird|Cyanocitta cristata|New World jay (generic term)
+cyanocobalamin|1
+(noun)|vitamin B12|cobalamin|antipernicious anemia factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+cyanogen|1
+(noun)|gas (generic term)
+cyanogenetic|1
+(adj)|cyanogenic|toxic (similar term)
+cyanogenic|1
+(adj)|cyanogenetic|toxic (similar term)
+cyanohydrin|1
+(noun)|organic compound (generic term)
+cyanophyceae|1
+(noun)|class Cyanobacteria|Cyanophyceae|class Cyanophyceae|class (generic term)
+cyanophyta|1
+(noun)|Cyanophyta|division Cyanophyta|division (generic term)
+cyanophyte|1
+(adj)|cyanobacterial|division (related term)|class (related term)
+cyanosis|1
+(noun)|symptom (generic term)
+cyanuramide|1
+(noun)|melamine|base (generic term)|alkali (generic term)
+cyanuric acid|1
+(noun)|acid (generic term)
+cyathea|1
+(noun)|Cyathea|genus Cyathea|fern genus (generic term)
+cyathea medullaris|1
+(noun)|silver tree fern|sago fern|black tree fern|Cyathea medullaris|tree fern (generic term)
+cyatheaceae|1
+(noun)|Cyatheaceae|family Cyatheaceae|fern family (generic term)
+cybele|1
+(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity (generic term)
+cyber-terrorism|1
+(noun)|cyberwar|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+cyber-terrorist|1
+(noun)|hacker|cyberpunk|programmer (generic term)|computer programmer (generic term)|coder (generic term)|software engineer (generic term)|terrorist (generic term)
+cyberart|1
+(noun)|art (generic term)|fine art (generic term)
+cybercafe|1
+(noun)|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+cybercrime|1
+(noun)|crime (generic term)|law-breaking (generic term)
+cyberculture|1
+(noun)|culture (generic term)
+cybernate|1
+(verb)|computerize|computerise|work (generic term)|put to work (generic term)
+cybernation|1
+(noun)|computerization|automation (generic term)|mechanization (generic term)|mechanisation (generic term)
+cybernaut|1
+(noun)|computer user (generic term)
+cybernetic|1
+(adj)|information science|informatics|information processing|IP (related term)
+cybernetics|1
+(noun)|information science (generic term)|informatics (generic term)|information processing (generic term)|IP (generic term)
+cyberphobia|1
+(noun)|simple phobia (generic term)
+cyberpunk|3
+(noun)|hacker|cyber-terrorist|programmer (generic term)|computer programmer (generic term)|coder (generic term)|software engineer (generic term)|terrorist (generic term)
+(noun)|writer (generic term)|author (generic term)
+(noun)|science fiction (generic term)
+cybersex|1
+(noun)|sexual arousal (generic term)
+cyberspace|1
+(noun)|internet|net|computer network (generic term)
+cyberwar|1
+(noun)|cyber-terrorism|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+cyborg|1
+(noun)|bionic man|bionic woman|machine (generic term)
+cycad|1
+(noun)|gymnosperm (generic term)
+cycad family|1
+(noun)|Cycadaceae|family Cycadaceae|gymnosperm family (generic term)
+cycadaceae|1
+(noun)|Cycadaceae|family Cycadaceae|cycad family|gymnosperm family (generic term)
+cycadales|1
+(noun)|Cycadales|order Cycadales|plant order (generic term)
+cycadofilicales|1
+(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order (generic term)
+cycadophyta|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+cycadophytina|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+cycadopsida|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+cycas|1
+(noun)|Cycas|genus Cycas|gymnosperm genus (generic term)
+cycas circinalis|1
+(noun)|false sago|fern palm|Cycas circinalis|sago palm (generic term)|Cycas revoluta (generic term)
+cycas revoluta|1
+(noun)|sago palm|Cycas revoluta|cycad (generic term)
+cyclades|2
+(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization (generic term)|Aegean civilisation (generic term)|Aegean culture (generic term)
+(noun)|Cyclades|Kikladhes|Aegean island (generic term)
+cycladic civilisation|1
+(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization (generic term)|Aegean civilisation (generic term)|Aegean culture (generic term)
+cycladic civilization|1
+(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization (generic term)|Aegean civilisation (generic term)|Aegean culture (generic term)
+cycladic culture|1
+(noun)|Cycladic civilization|Cycladic civilisation|Cycladic culture|Cyclades|Aegean civilization (generic term)|Aegean civilisation (generic term)|Aegean culture (generic term)
+cyclamen|1
+(noun)|Cyclamen purpurascens|flower (generic term)
+cyclamen hederifolium|1
+(noun)|sowbread|Cyclamen hederifolium|Cyclamen neopolitanum|flower (generic term)
+cyclamen neopolitanum|1
+(noun)|sowbread|Cyclamen hederifolium|Cyclamen neopolitanum|flower (generic term)
+cyclamen purpurascens|1
+(noun)|cyclamen|Cyclamen purpurascens|flower (generic term)
+cycle|11
+(noun)|rhythm|round|time interval (generic term)|interval (generic term)
+(noun)|series (generic term)
+(noun)|repeat (generic term)|repetition (generic term)
+(noun)|hertz|Hz|cycle per second|cycles/second|cps|rate (generic term)
+(noun)|oscillation|periodic event (generic term)|recurrent event (generic term)
+(noun)|bicycle|bike|wheel|wheeled vehicle (generic term)
+(verb)|pass (generic term)|make pass (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|motorbike|motorcycle|ride (generic term)
+(verb)|bicycle|bike|pedal|wheel|ride (generic term)
+(verb)|recur (generic term)|repeat (generic term)
+cycle of rebirth|1
+(noun)|reincarnation (generic term)|rebirth (generic term)|renascence (generic term)
+cycle on|1
+(verb)|cycle (generic term)
+cycle per second|1
+(noun)|hertz|Hz|cycles/second|cps|cycle|rate (generic term)
+cycle rickshaw|1
+(noun)|pedicab|tricycle (generic term)|trike (generic term)|velocipede (generic term)
+cycles/second|1
+(noun)|hertz|Hz|cycle per second|cps|cycle|rate (generic term)
+cyclic|5
+(adj)|cycle|oscillation (related term)
+(adj)|verticillate (similar term)|verticillated (similar term)|whorled (similar term)|acyclic (antonym)
+(adj)|bicyclic (similar term)|closed-chain (similar term)|closed-ring (similar term)|heterocyclic (similar term)|homocyclic (similar term)|isocyclic (similar term)|acyclic (antonym)
+(adj)|cyclical|alternate (similar term)|alternating (similar term)|alternate (similar term)|circular (similar term)|rotary (similar term)|diurnal (similar term)|noncyclic (antonym)
+(adj)|periodic (similar term)|periodical (similar term)
+cyclic disorder|1
+(noun)|cyclothymia|cyclothymic disorder|bipolar disorder (generic term)|manic depression (generic term)|manic depressive illness (generic term)|manic-depressive psychosis (generic term)
+cyclic neutropenia|1
+(noun)|neutropenia (generic term)
+cyclic redundancy check|1
+(noun)|error correction code (generic term)|ECC (generic term)
+cyclical|1
+(adj)|cyclic|alternate (similar term)|alternating (similar term)|alternate (similar term)|circular (similar term)|rotary (similar term)|diurnal (similar term)|noncyclic (antonym)
+cyclicity|1
+(noun)|periodicity|regularity (generic term)
+cycling|1
+(noun)|sport (generic term)|athletics (generic term)
+cycliophora|1
+(noun)|Cycliophora|phylum Cycliophora|phylum (generic term)
+cyclist|1
+(noun)|bicyclist|bicycler|wheeler|pedaler (generic term)|pedaller (generic term)
+cyclobenzaprine|1
+(noun)|Flexeril|muscle relaxant (generic term)
+cyclohexanol|1
+(noun)|alcohol (generic term)
+cyclohexanol phthalate|1
+(noun)|ester (generic term)
+cycloid|2
+(adj)|cycloidal|rounded (similar term)
+(noun)|roulette (generic term)|line roulette (generic term)
+cycloidal|1
+(adj)|cycloid|rounded (similar term)
+cycloloma|1
+(noun)|Cycloloma|genus Cycloloma|caryophylloid dicot genus (generic term)
+cycloloma atriplicifolium|1
+(noun)|winged pigweed|tumbleweed|Cycloloma atriplicifolium|shrub (generic term)|bush (generic term)
+cyclonal|2
+(adj)|cyclonic|cyclonical|atmosphere|atmospheric state (related term)
+(adj)|cyclonic|cyclonical|windstorm (related term)
+cyclone|2
+(noun)|atmosphere (generic term)|atmospheric state (generic term)|anticyclone (antonym)
+(noun)|windstorm (generic term)
+cyclone cellar|1
+(noun)|storm cellar|tornado cellar|shelter (generic term)
+cyclonic|2
+(adj)|cyclonal|cyclonical|atmosphere|atmospheric state (related term)
+(adj)|cyclonal|cyclonical|windstorm (related term)
+cyclonical|2
+(adj)|cyclonic|cyclonal|atmosphere|atmospheric state (related term)
+(adj)|cyclonic|cyclonal|windstorm (related term)
+cyclooxygenase|1
+(noun)|Cox|enzyme (generic term)
+cyclooxygenase-1|1
+(noun)|Cox-1|cyclooxygenase (generic term)|Cox (generic term)
+cyclooxygenase-2|1
+(noun)|Cox-2|cyclooxygenase (generic term)|Cox (generic term)
+cyclopaedia|1
+(noun)|encyclopedia|cyclopedia|encyclopaedia|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+cyclopean|1
+(adj)|giant (related term)
+cyclopean masonry|1
+(noun)|stonework (generic term)
+cyclopedia|1
+(noun)|encyclopedia|encyclopaedia|cyclopaedia|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+cyclopes|1
+(noun)|Cyclopes|genus Cyclopes|mammal genus (generic term)
+cyclopes didactylus|1
+(noun)|silky anteater|two-toed anteater|Cyclopes didactylus|anteater (generic term)|New World anteater (generic term)
+cyclophorus|1
+(noun)|Cyclophorus|genus Cyclophorus|fern genus (generic term)
+cyclophorus lingua|1
+(noun)|felt fern|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern (generic term)
+cyclopia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+cyclopropane|1
+(noun)|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+cyclops|2
+(noun)|Cyclops|giant (generic term)
+(noun)|water flea|copepod (generic term)|copepod crustacean (generic term)
+cyclopteridae|1
+(noun)|Cyclopteridae|family Cyclopteridae|fish family (generic term)
+cyclopterus|1
+(noun)|Cyclopterus|genus Cyclopterus|fish genus (generic term)
+cyclopterus lumpus|1
+(noun)|lumpfish|Cyclopterus lumpus|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+cyclorama|1
+(noun)|panorama|diorama|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+cycloserine|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+cyclosis|1
+(noun)|streaming|organic phenomenon (generic term)
+cyclosorus|1
+(noun)|Cyclosorus|genus Cyclosorus|fern genus (generic term)
+cyclosporeae|1
+(noun)|Cyclosporeae|class Cyclosporeae|class (generic term)
+cyclostomata|1
+(noun)|Cyclostomata|order Cyclostomata|animal order (generic term)
+cyclostome|1
+(noun)|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+cyclostyle|2
+(noun)|writing implement (generic term)
+(verb)|print (generic term)|impress (generic term)
+cyclothymia|1
+(noun)|cyclothymic disorder|cyclic disorder|bipolar disorder (generic term)|manic depression (generic term)|manic depressive illness (generic term)|manic-depressive psychosis (generic term)
+cyclothymic|1
+(adj)|bipolar disorder|manic depression|manic depressive illness|manic-depressive psychosis (related term)
+cyclothymic disorder|1
+(noun)|cyclothymia|cyclic disorder|bipolar disorder (generic term)|manic depression (generic term)|manic depressive illness (generic term)|manic-depressive psychosis (generic term)
+cyclotron|1
+(noun)|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+cycnoches|1
+(noun)|Cycnoches|genus Cycnoches|monocot genus (generic term)|liliopsid genus (generic term)
+cyder|1
+(noun)|cider|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+cydippea|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+cydippida|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+cydippidea|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+cydonia|1
+(noun)|Cydonia|genus Cydonia|rosid dicot genus (generic term)
+cydonia oblonga|1
+(noun)|quince|quince bush|Cydonia oblonga|fruit tree (generic term)
+cygnet|1
+(noun)|swan (generic term)|young bird (generic term)
+cygnus|2
+(noun)|Cygnus|constellation (generic term)
+(noun)|Cygnus|genus Cygnus|bird genus (generic term)
+cygnus atratus|1
+(noun)|black swan|Cygnus atratus|swan (generic term)
+cygnus buccinator|1
+(noun)|trumpeter|trumpeter swan|Cygnus buccinator|swan (generic term)
+cygnus columbianus|1
+(noun)|tundra swan|Cygnus columbianus|swan (generic term)
+cygnus columbianus bewickii|1
+(noun)|Bewick's swan|Cygnus columbianus bewickii|tundra swan (generic term)|Cygnus columbianus (generic term)
+cygnus columbianus columbianus|1
+(noun)|whistling swan|Cygnus columbianus columbianus|tundra swan (generic term)|Cygnus columbianus (generic term)
+cygnus cygnus|1
+(noun)|whooper|whooper swan|Cygnus cygnus|swan (generic term)
+cygnus olor|1
+(noun)|mute swan|Cygnus olor|swan (generic term)
+cylinder|4
+(noun)|container (generic term)
+(noun)|solid (generic term)
+(noun)|round shape (generic term)
+(noun)|piston chamber|chamber (generic term)
+cylinder block|1
+(noun)|engine block|block|cast (generic term)|casting (generic term)
+cylinder head|1
+(noun)|plate (generic term)
+cylinder lock|1
+(noun)|lock (generic term)
+cylinder press|1
+(noun)|flatbed press|press (generic term)|printing press (generic term)
+cylindric|1
+(adj)|cylindrical|rounded (similar term)
+cylindrical|1
+(adj)|cylindric|rounded (similar term)
+cylindrical-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+cylindrical lining|1
+(noun)|bushing|lining (generic term)
+cylindricality|1
+(noun)|cylindricalness|roundness (generic term)
+cylindricalness|1
+(noun)|cylindricality|roundness (generic term)
+cylix|1
+(noun)|kylix|cup (generic term)
+cyma|1
+(noun)|cymatium|molding (generic term)|moulding (generic term)
+cyma recta|1
+(noun)|cyma (generic term)|cymatium (generic term)
+cyma reversa|1
+(noun)|ogee|cyma (generic term)|cymatium (generic term)
+cymatiidae|1
+(noun)|Cymatiidae|family Cymatiidae|mollusk family (generic term)
+cymatium|1
+(noun)|cyma|molding (generic term)|moulding (generic term)
+cymbal|1
+(noun)|percussion instrument (generic term)|percussive instrument (generic term)
+cymbalist|1
+(noun)|percussionist (generic term)
+cymbid|1
+(noun)|cymbidium|orchid (generic term)|orchidaceous plant (generic term)
+cymbidium|1
+(noun)|cymbid|orchid (generic term)|orchidaceous plant (generic term)
+cyme|1
+(noun)|inflorescence (generic term)
+cymene|1
+(noun)|hydrocarbon (generic term)
+cymling|1
+(noun)|pattypan squash|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+cymograph|1
+(noun)|kymograph|scientific instrument (generic term)
+cymose|1
+(adj)|determinate (similar term)
+cymric|1
+(noun)|Welsh|Cymric|Brythonic (generic term)|Brittanic (generic term)
+cymru|1
+(noun)|Wales|Cymru|Cambria|principality (generic term)|princedom (generic term)
+cymry|1
+(noun)|Welshman|Welsh|Cambrian|Cymry|European (generic term)
+cymule|1
+(noun)|cyme (generic term)
+cynancum|1
+(noun)|liana (generic term)
+cynara|1
+(noun)|Cynara|genus Cynara|asterid dicot genus (generic term)
+cynara cardunculus|1
+(noun)|cardoon|Cynara cardunculus|vegetable (generic term)
+cynara scolymus|1
+(noun)|artichoke|globe artichoke|artichoke plant|Cynara scolymus|vegetable (generic term)
+cynewulf|1
+(noun)|Cynewulf|Cynwulf|poet (generic term)
+cynic|2
+(noun)|faultfinder|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|Cynic|philosopher (generic term)
+cynical|1
+(adj)|misanthropic|misanthropical|distrustful (similar term)
+cynically|1
+(adv)|with cynicism
+cynicism|1
+(noun)|pessimism (generic term)
+cynipid gall wasp|1
+(noun)|gall wasp|gallfly|cynipid wasp|wasp (generic term)
+cynipid wasp|1
+(noun)|gall wasp|gallfly|cynipid gall wasp|wasp (generic term)
+cynipidae|1
+(noun)|Cynipidae|family Cynipidae|arthropod family (generic term)
+cynips|1
+(noun)|Cynips|genus Cynips|arthropod genus (generic term)
+cynocephalidae|1
+(noun)|Cynocephalidae|family Cynocephalidae|mammal family (generic term)
+cynocephalus|1
+(noun)|Cynocephalus|genus Cynocephalus|mammal genus (generic term)
+cynocephalus variegatus|1
+(noun)|Cynocephalus variegatus|flying lemur (generic term)|flying cat (generic term)|colugo (generic term)
+cynodon|1
+(noun)|Cynodon|genus Cynodon|monocot genus (generic term)|liliopsid genus (generic term)
+cynodon dactylon|1
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+cynodon plectostachyum|1
+(noun)|giant star grass|Cynodon plectostachyum|grass (generic term)
+cynodont|1
+(noun)|therapsid (generic term)|protomammal (generic term)
+cynodontia|1
+(noun)|Cynodontia|division Cynodontia|division (generic term)
+cynoglossidae|1
+(noun)|Cynoglossidae|family Cynoglossidae|fish family (generic term)
+cynoglossum|1
+(noun)|Cynoglossum|genus Cynoglossum|plant genus (generic term)
+cynoglossum amabile|1
+(noun)|Chinese forget-me-not|Cynoglossum amabile|herb (generic term)|herbaceous plant (generic term)
+cynoglossum officinale|1
+(noun)|hound's-tongue|Cynoglossum officinale|herb (generic term)|herbaceous plant (generic term)
+cynoglossum virginaticum|1
+(noun)|hound's-tongue|Cynoglossum virginaticum|herb (generic term)|herbaceous plant (generic term)
+cynomys|1
+(noun)|Cynomys|genus Cynomys|mammal genus (generic term)
+cynomys gunnisoni|1
+(noun)|whitetail prairie dog|Cynomys gunnisoni|prairie dog (generic term)|prairie marmot (generic term)
+cynomys ludovicianus|1
+(noun)|blacktail prairie dog|Cynomys ludovicianus|prairie dog (generic term)|prairie marmot (generic term)
+cynophobia|1
+(noun)|zoophobia (generic term)
+cynopterus|1
+(noun)|Cynopterus|genus Cynopterus|mammal genus (generic term)
+cynopterus sphinx|1
+(noun)|Cynopterus sphinx|fruit bat (generic term)|megabat (generic term)
+cynoscephalae|2
+(noun)|Cynoscephalae|region (generic term)|part (generic term)
+(noun)|Cynoscephalae|battle of Cynoscephalae|pitched battle (generic term)
+cynoscion|1
+(noun)|Cynoscion|genus Cynoscion|fish genus (generic term)
+cynoscion nebulosus|1
+(noun)|spotted weakfish|spotted sea trout|spotted squeateague|Cynoscion nebulosus|sea trout (generic term)
+cynoscion regalis|1
+(noun)|weakfish|Cynoscion regalis|sea trout (generic term)
+cynosure|2
+(noun)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|center (generic term)|center of attention (generic term)
+cynthia|1
+(noun)|Artemis|Cynthia|Greek deity (generic term)
+cynthia moth|1
+(noun)|Samia cynthia|Samia walkeri|giant silkworm moth (generic term)|silkworm moth (generic term)
+cynwulf|1
+(noun)|Cynewulf|Cynwulf|poet (generic term)
+cyon|1
+(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus (generic term)
+cyperaceae|1
+(noun)|Cyperaceae|family Cyperaceae|sedge family|monocot family (generic term)|liliopsid family (generic term)
+cyperus|1
+(noun)|Cyperus|genus Cyperus|monocot genus (generic term)|liliopsid genus (generic term)|Cyperaceae (generic term)|family Cyperaceae (generic term)|sedge family (generic term)
+cyperus alternifolius|1
+(noun)|umbrella plant|umbrella sedge|Cyperus alternifolius|sedge (generic term)
+cyperus esculentus|1
+(noun)|chufa|yellow nutgrass|earth almond|ground almond|rush nut|Cyperus esculentus|sedge (generic term)
+cyperus longus|1
+(noun)|galingale|galangal|Cyperus longus|sedge (generic term)
+cyperus papyrus|1
+(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge (generic term)
+cyperus rotundus|1
+(noun)|nutgrass|nut grass|nutsedge|nut sedge|Cyperus rotundus|sedge (generic term)
+cypher|7
+(noun)|zero|0|nought|cipher|digit (generic term)|figure (generic term)
+(noun)|nothing|nil|nix|nada|null|aught|cipher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+(noun)|cipher|nobody|nonentity|commoner (generic term)|common man (generic term)|common person (generic term)
+(noun)|cipher|cryptograph|secret code|code (generic term)
+(noun)|cipher|message (generic term)
+(verb)|encode|code|encipher|cipher|encrypt|inscribe|write in code|write (generic term)|decode (antonym)
+(verb)|calculate|cipher|compute|work out|reckon|figure|reason (generic term)|figure out (related term)|reckon (related term)
+cyphomandra|1
+(noun)|Cyphomandra|genus Cyphomandra|asterid dicot genus (generic term)
+cypraea|1
+(noun)|Cypraea|genus Cypraea|mollusk genus (generic term)
+cypraea moneta|1
+(noun)|money cowrie|Cypraea moneta|cowrie (generic term)|cowry (generic term)
+cypraea tigris|1
+(noun)|tiger cowrie|Cypraea tigris|cowrie (generic term)|cowry (generic term)
+cypraeidae|1
+(noun)|Cypraeidae|family Cypraeidae|mollusk family (generic term)
+cypre|1
+(noun)|Spanish elm|Equador laurel|salmwood|princewood|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+cypress|2
+(noun)|wood (generic term)
+(noun)|cypress tree|conifer (generic term)|coniferous tree (generic term)
+cypress family|1
+(noun)|Cupressaceae|family Cupressaceae|gymnosperm family (generic term)
+cypress pine|1
+(noun)|cypress (generic term)
+cypress sedge|1
+(noun)|Carex pseudocyperus|sedge (generic term)
+cypress spurge|1
+(noun)|Euphorbia cyparissias|spurge (generic term)
+cypress tree|1
+(noun)|cypress|conifer (generic term)|coniferous tree (generic term)
+cypress vine|1
+(noun)|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory (generic term)
+cyprian|4
+(adj)|Cyprian|Cypriote|Cypriot|island (related term)
+(adj)|unchaste (similar term)
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+(noun)|Cypriot|Cypriote|Cyprian|European (generic term)
+cyprinid|2
+(adj)|cyprinoid|fish family (related term)
+(noun)|cyprinid fish|cypriniform fish (generic term)
+cyprinid fish|1
+(noun)|cyprinid|cypriniform fish (generic term)
+cyprinidae|1
+(noun)|Cyprinidae|family Cyprinidae|fish family (generic term)
+cypriniform fish|1
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+cypriniformes|1
+(noun)|Cypriniformes|order Cypriniformes|animal order (generic term)
+cyprinodont|1
+(noun)|cypriniform fish (generic term)
+cyprinodontidae|1
+(noun)|Cyprinodontidae|family Cyprinodontidae|fish family (generic term)
+cyprinoid|1
+(adj)|cyprinid|fish family (related term)
+cyprinus|1
+(noun)|Cyprinus|genus Cyprinus|fish genus (generic term)
+cyprinus carpio|1
+(noun)|domestic carp|Cyprinus carpio|carp (generic term)
+cypriot|2
+(adj)|Cyprian|Cypriote|Cypriot|island (related term)
+(noun)|Cypriot|Cypriote|Cyprian|European (generic term)
+cypriot monetary unit|1
+(noun)|Cypriot monetary unit|monetary unit (generic term)
+cypriot pound|1
+(noun)|Cypriot pound|pound|Cypriot monetary unit (generic term)
+cypriote|2
+(adj)|Cyprian|Cypriote|Cypriot|island (related term)
+(noun)|Cypriot|Cypriote|Cyprian|European (generic term)
+cypripedia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+cypripedium|1
+(noun)|Cypripedium|genus Cypripedium|monocot genus (generic term)|liliopsid genus (generic term)
+cypripedium acaule|1
+(noun)|moccasin flower|nerveroot|Cypripedium acaule|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium album|1
+(noun)|common lady's-slipper|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium arietinum|1
+(noun)|ram's-head|ram's-head lady's slipper|Cypripedium arietinum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium calceolus|1
+(noun)|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium calceolus pubescens|1
+(noun)|large yellow lady's slipper|Cypripedium calceolus pubescens|yellow lady's slipper (generic term)|yellow lady-slipper (generic term)|Cypripedium calceolus (generic term)|Cypripedium parviflorum (generic term)
+cypripedium californicum|1
+(noun)|California lady's slipper|Cypripedium californicum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium fasciculatum|1
+(noun)|clustered lady's slipper|Cypripedium fasciculatum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium montanum|1
+(noun)|mountain lady's slipper|Cypripedium montanum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium parviflorum|1
+(noun)|yellow lady's slipper|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cypripedium reginae|1
+(noun)|common lady's-slipper|showy lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+cyproheptadine|1
+(noun)|Periactin|antihistamine (generic term)
+cyprus|2
+(noun)|Cyprus|Republic of Cyprus|country (generic term)|state (generic term)|land (generic term)
+(noun)|Cyprus|island (generic term)
+cyrano de bergerac|1
+(noun)|Cyrano de Bergerac|Savinien Cyrano de Bergerac|soldier (generic term)|dramatist (generic term)|playwright (generic term)
+cyril burt|1
+(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist (generic term)
+cyril lodowic burt|1
+(noun)|Burt|Cyril Burt|Cyril Lodowic Burt|psychologist (generic term)
+cyril northcote parkinson|1
+(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian (generic term)|historiographer (generic term)
+cyrilla|1
+(noun)|leatherwood|white titi|Cyrilla racemiflora|shrub (generic term)|bush (generic term)
+cyrilla family|1
+(noun)|Cyrilliaceae|family Cyrilliaceae|titi family|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+cyrilla racemiflora|1
+(noun)|cyrilla|leatherwood|white titi|Cyrilla racemiflora|shrub (generic term)|bush (generic term)
+cyrilliaceae|1
+(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|titi family|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+cyrillic|2
+(adj)|Cyrillic|alphabet (related term)
+(noun)|Cyrillic alphabet|Cyrillic|alphabet (generic term)
+cyrillic alphabet|1
+(noun)|Cyrillic alphabet|Cyrillic|alphabet (generic term)
+cyrtomium|1
+(noun)|Cyrtomium|genus Cyrtomium|fern genus (generic term)
+cyrtomium aculeatum|1
+(noun)|holly fern|Cyrtomium aculeatum|Polystichum aculeatum|fern (generic term)
+cyrus|1
+(noun)|Cyrus|Cyrus the Younger|prince (generic term)
+cyrus hall mccormick|1
+(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+cyrus ii|1
+(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+cyrus mccormick|1
+(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+cyrus the elder|1
+(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+cyrus the great|1
+(noun)|Cyrus II|Cyrus the Elder|Cyrus the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+cyrus the younger|1
+(noun)|Cyrus|Cyrus the Younger|prince (generic term)
+cyst|2
+(noun)|pathology (generic term)
+(noun)|vesicle|sac (generic term)
+cysteine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+cystic|2
+(adj)|sac (related term)
+(adj)|pathology (related term)
+cystic artery|1
+(noun)|arteria cystica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+cystic breast disease|1
+(noun)|fibrocystic breast disease|fibrocystic disease of the breast|cystic mastitis|disease (generic term)
+cystic fibrosis|1
+(noun)|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|mucoviscidosis|fibrosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+cystic mastitis|1
+(noun)|fibrocystic breast disease|fibrocystic disease of the breast|cystic breast disease|disease (generic term)
+cystic vein|1
+(noun)|vena cystica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+cystine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+cystitis|1
+(noun)|urinary tract infection (generic term)
+cystocele|1
+(noun)|colpocystocele|colpocele (generic term)|vaginocele (generic term)
+cystolith|1
+(noun)|bladder stone|calculus (generic term)|concretion (generic term)
+cystoparalysis|1
+(noun)|cystoplegia|paralysis (generic term)|palsy (generic term)
+cystophora|1
+(noun)|Cystophora|genus Cystophora|mammal genus (generic term)
+cystophora cristata|1
+(noun)|hooded seal|bladdernose|Cystophora cristata|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+cystoplegia|1
+(noun)|cystoparalysis|paralysis (generic term)|palsy (generic term)
+cystopteris|1
+(noun)|Cystopteris|genus Cystopteris|fern genus (generic term)
+cystopteris bulbifera|1
+(noun)|bulblet fern|bulblet bladder fern|berry fern|Cystopteris bulbifera|bladder fern (generic term)
+cystopteris fragilis|1
+(noun)|brittle bladder fern|brittle fern|fragile fern|Cystopteris fragilis|bladder fern (generic term)
+cystopteris montana|1
+(noun)|mountain bladder fern|Cystopteris montana|bladder fern (generic term)
+cytesis proliferus|1
+(noun)|tagasaste|Chamaecytisus palmensis|Cytesis proliferus|shrub (generic term)|bush (generic term)
+cytherea|1
+(noun)|Aphrodite|Cytherea|Greek deity (generic term)
+cytidine|1
+(noun)|deoxycytidine|nucleoside (generic term)
+cytisus|1
+(noun)|Cytisus|genus Cytisus|rosid dicot genus (generic term)
+cytisus albus|1
+(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom (generic term)
+cytisus multiflorus|1
+(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom (generic term)
+cytisus ramentaceus|1
+(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub (generic term)|bush (generic term)
+cytisus scoparius|1
+(noun)|common broom|Scotch broom|green broom|Cytisus scoparius|broom (generic term)
+cytoarchitectonic|1
+(adj)|cytoarchitectural|structure (related term)
+cytoarchitectonics|1
+(noun)|cytoarchitecture|structure (generic term)
+cytoarchitectural|1
+(adj)|cytoarchitectonic|structure (related term)
+cytoarchitecture|1
+(noun)|cytoarchitectonics|structure (generic term)
+cytochrome|1
+(noun)|hemoprotein (generic term)|haemoprotein (generic term)
+cytochrome c|1
+(noun)|cytochrome (generic term)
+cytogenesis|1
+(noun)|cytogeny|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+cytogenetic|1
+(adj)|cytogenetical|cytology|genetics|genetic science (related term)
+cytogenetical|1
+(adj)|cytogenetic|cytology|genetics|genetic science (related term)
+cytogeneticist|1
+(noun)|geneticist (generic term)
+cytogenetics|1
+(noun)|cytology (generic term)|genetics (generic term)|genetic science (generic term)
+cytogeny|1
+(noun)|cytogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+cytokine|1
+(noun)|protein (generic term)
+cytokinesis|1
+(noun)|organic process (generic term)|biological process (generic term)
+cytokinetic|1
+(adj)|organic process|biological process (related term)
+cytokinin|1
+(noun)|kinin|phytohormone (generic term)|plant hormone (generic term)|growth regulator (generic term)
+cytol|1
+(noun)|cytoplasm|protoplasm (generic term)|living substance (generic term)
+cytologic|1
+(adj)|cytological|biology|biological science|microscopic anatomy (related term)
+cytologic smear|1
+(noun)|smear|cytosmear|cytologic specimen (generic term)
+cytologic specimen|1
+(noun)|specimen (generic term)
+cytological|1
+(adj)|cytologic|biology|biological science|microscopic anatomy (related term)
+cytologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+cytology|1
+(noun)|biology (generic term)|biological science (generic term)|microscopic anatomy (generic term)
+cytolysin|1
+(noun)|lysin (generic term)
+cytolysis|1
+(noun)|lysis (generic term)
+cytolytic|1
+(adj)|lysis (related term)
+cytomegalic|1
+(adj)|unhealthy (similar term)
+cytomegalovirus|1
+(noun)|CMV|herpes (generic term)|herpes virus (generic term)
+cytomembrane|1
+(noun)|cell membrane|plasma membrane|semipermeable membrane (generic term)
+cytopathogenic|1
+(adj)|unhealthful (similar term)
+cytopenia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+cytophotometer|1
+(noun)|light meter (generic term)|exposure meter (generic term)|photometer (generic term)
+cytophotometric|1
+(adj)|photometry (related term)
+cytophotometry|1
+(noun)|photometry (generic term)
+cytoplasm|1
+(noun)|cytol|protoplasm (generic term)|living substance (generic term)
+cytoplasmatic|1
+(adj)|cytoplasmic|protoplasm|living substance (related term)
+cytoplasmic|1
+(adj)|cytoplasmatic|protoplasm|living substance (related term)
+cytoplast|1
+(noun)|cytoplasm (generic term)|cytol (generic term)
+cytoplastic|1
+(adj)|cytoplasm|cytol (related term)
+cytosine|1
+(noun)|C|pyrimidine (generic term)
+cytoskeleton|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+cytosmear|1
+(noun)|smear|cytologic smear|cytologic specimen (generic term)
+cytosol|1
+(noun)|cytoplasm (generic term)|cytol (generic term)
+cytostome|1
+(noun)|mouth (generic term)
+cytotoxic|1
+(adj)|toxin (related term)
+cytotoxic drug|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+cytotoxic t cell|1
+(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell (generic term)|T lymphocyte (generic term)
+cytotoxicity|1
+(noun)|toxicity (generic term)
+cytotoxin|1
+(noun)|toxin (generic term)
+czar|2
+(noun)|tsar|tzar|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+(noun)|tyrant (generic term)|autocrat (generic term)|despot (generic term)
+czar alexander i|1
+(noun)|Alexander I|Czar Alexander I|Aleksandr Pavlovich|czar (generic term)|tsar (generic term)|tzar (generic term)
+czar alexander ii|1
+(noun)|Alexander II|Czar Alexander II|Alexander the Liberator|czar (generic term)|tsar (generic term)|tzar (generic term)
+czar alexander iii|1
+(noun)|Alexander III|Czar Alexander III|czar (generic term)|tsar (generic term)|tzar (generic term)
+czar nicholas i|1
+(noun)|Nicholas I|Czar Nicholas I|czar (generic term)|tsar (generic term)|tzar (generic term)
+czar peter i|1
+(noun)|Peter I|Czar Peter I|Peter the Great|czar (generic term)|tsar (generic term)|tzar (generic term)
+czarina|1
+(noun)|tsarina|tzarina|czaritza|tsaritsa|female aristocrat (generic term)
+czarist|1
+(adj)|czaristic|tsarist|tsaristic|tzarist|tyrant|autocrat|despot (related term)
+czaristic|1
+(adj)|czarist|tsarist|tsaristic|tzarist|tyrant|autocrat|despot (related term)
+czaritza|1
+(noun)|czarina|tsarina|tzarina|tsaritsa|female aristocrat (generic term)
+czech|4
+(adj)|Czech|Czechoslovakian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Czech|European (generic term)
+(noun)|Czechoslovakian|Czechoslovak|Czech|European (generic term)
+(noun)|Czech|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+czech capital|1
+(noun)|Prague|Praha|Prag|Czech capital|national capital (generic term)
+czech monetary unit|1
+(noun)|Czech monetary unit|monetary unit (generic term)
+czech republic|1
+(noun)|Czech Republic|European country (generic term)|European nation (generic term)
+czechoslovak|1
+(noun)|Czechoslovakian|Czechoslovak|Czech|European (generic term)
+czechoslovakia|1
+(noun)|Czechoslovakia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+czechoslovakian|2
+(adj)|Czech|Czechoslovakian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Czechoslovakian|Czechoslovak|Czech|European (generic term)
+czerny|1
+(noun)|Czerny|Karl Czerny|pianist (generic term)|piano player (generic term)|composer (generic term)
+czestochowa|1
+(noun)|Czestochowa|city (generic term)|metropolis (generic term)|urban center (generic term)
+d|4
+(adj)|five hundred|500|cardinal (similar term)
+(noun)|vitamin D|calciferol|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin (generic term)
+(noun)|five hundred|500|D|large integer (generic term)
+(noun)|D|letter d|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+d'oyly carte|1
+(noun)|D'Oyly Carte|Richard D'Oyly Carte|showman (generic term)|promoter (generic term)|impresario (generic term)
+d-day|1
+(noun)|D-day|6 June 1944|date (generic term)|day of the month (generic term)
+d-layer|1
+(noun)|D-layer|D region|region (generic term)|part (generic term)
+d. h. lawrence|1
+(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer (generic term)|author (generic term)
+d. w. griffith|1
+(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+d.a.|1
+(noun)|Doctor of Arts|D.A.|doctor's degree (generic term)|doctorate (generic term)
+d.c.|1
+(noun)|District of Columbia|D.C.|DC|federal district (generic term)
+d.o.a.|1
+(adj)|dead (similar term)
+d.p.r.k.|1
+(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country (generic term)|Asian nation (generic term)
+d and c|1
+(noun)|dilation and curettage|dilatation and curettage|D and C|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+d region|1
+(noun)|D-layer|D region|region (generic term)|part (generic term)
+da|1
+(noun)|district attorney|DA|prosecutor (generic term)|public prosecutor (generic term)|prosecuting officer (generic term)|prosecuting attorney (generic term)
+da'wah|1
+(noun)|dawah|mission (generic term)|missionary work (generic term)
+da gamma|1
+(noun)|da Gamma|Vasco da Gamma|Gamma|navigator (generic term)
+da vinci|1
+(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|architect (generic term)|designer (generic term)
+dab|4
+(noun)|tap|pat|touch (generic term)|touching (generic term)
+(noun)|splash|splatter|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(verb)|swab|swob|put on (generic term)|apply (generic term)
+(verb)|pat|strike (generic term)
+daba|1
+(noun)|Daba|Kola|Musgoi|Biu-Mandara (generic term)
+dabble|3
+(verb)|dunk (generic term)|dip (generic term)|souse (generic term)|plunge (generic term)|douse (generic term)
+(verb)|paddle|splash around|play (generic term)
+(verb)|smatter|play around|busy (generic term)|occupy (generic term)
+dabbled|1
+(adj)|spattered|splashed|splattered|covered (similar term)
+dabbler|2
+(noun)|dilettante|sciolist|amateur (generic term)
+(noun)|dabbling duck|duck (generic term)|diving duck (antonym)
+dabbling duck|1
+(noun)|dabbler|duck (generic term)|diving duck (antonym)
+dabchick|1
+(noun)|little grebe|Podiceps ruficollis|grebe (generic term)
+daboecia|1
+(noun)|Daboecia|genus Daboecia|dilleniid dicot genus (generic term)
+daboecia cantabrica|1
+(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath (generic term)
+dacca|1
+(noun)|Dhaka|Dacca|capital of Bangladesh|national capital (generic term)
+dace|1
+(noun)|Leuciscus leuciscus|cyprinid (generic term)|cyprinid fish (generic term)
+dace-like|1
+(adj)|animal (similar term)
+dacelo|1
+(noun)|Dacelo|genus Dacelo|bird genus (generic term)
+dacelo gigas|1
+(noun)|kookaburra|laughing jackass|Dacelo gigas|kingfisher (generic term)
+dacha|1
+(noun)|country house (generic term)
+dachau|1
+(noun)|Dachau|concentration camp (generic term)|stockade (generic term)
+dachshund|1
+(noun)|dachsie|badger dog|hunting dog (generic term)
+dachsie|1
+(noun)|dachshund|badger dog|hunting dog (generic term)
+dacite|1
+(noun)|volcanic rock (generic term)
+dacitic|1
+(adj)|volcanic rock (related term)
+dacninae|1
+(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family (generic term)
+dacoit|1
+(noun)|dakoit|thief (generic term)|stealer (generic term)
+dacoity|1
+(noun)|dakoity|robbery (generic term)
+dacridium laxifolius|1
+(noun)|mountain rimu|Lepidothamnus laxifolius|Dacridium laxifolius|shrub (generic term)|bush (generic term)
+dacron|1
+(noun)|Dacron|Terylene|polyester (generic term)|polyester fabric (generic term)
+dacrycarpus|1
+(noun)|Dacrycarpus|genus Dacrycarpus|gymnosperm genus (generic term)
+dacrycarpus dacrydioides|1
+(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer (generic term)|coniferous tree (generic term)
+dacrydium|1
+(noun)|Dacrydium|genus Dacrydium|gymnosperm genus (generic term)
+dacrydium bidwilli|1
+(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer (generic term)|coniferous tree (generic term)
+dacrydium colensoi|1
+(noun)|tarwood|tar-wood|Dacrydium colensoi|conifer (generic term)|coniferous tree (generic term)
+dacrydium cupressinum|1
+(noun)|rimu|imou pine|red pine|Dacrydium cupressinum|conifer (generic term)|coniferous tree (generic term)
+dacrydium franklinii|1
+(noun)|huon pine|Lagarostrobus franklinii|Dacrydium franklinii|conifer (generic term)|coniferous tree (generic term)
+dacrymyces|1
+(noun)|Dacrymyces|genus Dacrymyces|fungus genus (generic term)
+dacrymycetaceae|1
+(noun)|Dacrymycetaceae|family Dacrymycetaceae|fungus family (generic term)
+dacryocyst|1
+(noun)|lacrimal sac|tear sac|vesicle (generic term)|cyst (generic term)
+dacryocystitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+dacryon|1
+(noun)|craniometric point (generic term)
+dactyl|2
+(noun)|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+(noun)|digit|extremity (generic term)|appendage (generic term)|member (generic term)
+dactylic|1
+(adj)|metrical foot|foot|metrical unit (related term)
+dactylis|1
+(noun)|Dactylis|genus Dactylis|monocot genus (generic term)|liliopsid genus (generic term)
+dactylis glomerata|1
+(noun)|orchard grass|cocksfoot|cockspur|Dactylis glomerata|grass (generic term)
+dactyloctenium|1
+(noun)|Dactyloctenium|genus Dactyloctenium|monocot genus (generic term)|liliopsid genus (generic term)
+dactyloctenium aegypticum|1
+(noun)|Egyptian grass|crowfoot grass|Dactyloctenium aegypticum|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+dactylomegaly|1
+(noun)|hypertrophy (generic term)
+dactylopiidae|1
+(noun)|Dactylopiidae|family Dactylopiidae|arthropod family (generic term)
+dactylopius|1
+(noun)|Dactylopius|genus Dactylopius|arthropod genus (generic term)
+dactylopius coccus|1
+(noun)|cochineal insect|cochineal|Dactylopius coccus|scale insect (generic term)
+dactylopteridae|1
+(noun)|Dactylopteridae|family Dactylopteridae|fish family (generic term)
+dactylopterus|1
+(noun)|Dactylopterus|genus Dactylopterus|fish genus (generic term)
+dactylorhiza|1
+(noun)|Dactylorhiza|genus Dactylorhiza|monocot genus (generic term)|liliopsid genus (generic term)
+dactylorhiza fuchsii|1
+(noun)|common spotted orchid|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid (generic term)|orchidaceous plant (generic term)
+dactylorhiza maculata fuchsii|1
+(noun)|common spotted orchid|Dactylorhiza fuchsii|Dactylorhiza maculata fuchsii|orchid (generic term)|orchidaceous plant (generic term)
+dactyloscopidae|1
+(noun)|Dactyloscopidae|family Dactyloscopidae|fish family (generic term)
+dad|1
+(noun)|dada|daddy|pa|papa|pappa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+dada|2
+(noun)|dad|daddy|pa|papa|pappa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+(noun)|dadaism|artistic movement (generic term)|art movement (generic term)
+dadaism|1
+(noun)|dada|artistic movement (generic term)|art movement (generic term)
+daddy|1
+(noun)|dad|dada|pa|papa|pappa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+daddy longlegs|2
+(noun)|crane fly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+(noun)|harvestman|Phalangium opilio|arachnid (generic term)|arachnoid (generic term)
+dado|5
+(noun)|wainscot|panel (generic term)
+(noun)|section (generic term)|segment (generic term)
+(noun)|groove (generic term)|channel (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|groove (generic term)
+dado plane|1
+(noun)|openside plane (generic term)|rabbet plane (generic term)
+dae-han-min-gook|1
+(noun)|Korea|Korean Peninsula|Dae-Han-Min-Gook|Han-Gook|peninsula (generic term)
+daedal|2
+(adj)|complex (similar term)
+(noun)|Daedalus|Daedal|mythical being (generic term)
+daedalus|1
+(noun)|Daedalus|Daedal|mythical being (generic term)
+daemon|2
+(noun)|devil|fiend|demon|daimon|evil spirit (generic term)
+(noun)|demigod|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+daffo|1
+(noun)|Ron|Bokkos|Daffo|West Chadic (generic term)
+daffodil|1
+(noun)|Narcissus pseudonarcissus|narcissus (generic term)
+daffodil garlic|1
+(noun)|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant (generic term)
+dafla|1
+(noun)|Miri|Mirish|Abor|Dafla|Kamarupan (generic term)
+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 (similar term)
+daftly|1
+(adv)|dottily|balmily|nuttily|wackily
+daftness|1
+(noun)|craziness|flakiness|insanity (generic term)
+dag|2
+(noun)|dekagram|decagram|dkg|metric weight unit (generic term)|weight unit (generic term)
+(noun)|jag|flap (generic term)
+dag hammarskjold|1
+(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat (generic term)|diplomatist (generic term)
+dag hjalmar agne carl hammarskjold|1
+(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat (generic term)|diplomatist (generic term)
+dagame|1
+(noun)|lemonwood tree|Calycophyllum candidissimum|tree (generic term)
+dagan|1
+(noun)|Dagan|Semitic deity (generic term)
+dagda|1
+(noun)|Dagda|Celtic deity (generic term)
+dagestani|1
+(noun)|Dagestani|ethnic minority (generic term)
+dagga|1
+(noun)|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb (generic term)|herbaceous plant (generic term)
+dagger|2
+(noun)|sticker|knife (generic term)
+(noun)|obelisk|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+dagger-like|1
+(adj)|sharp (similar term)
+dagger fern|1
+(noun)|Christmas fern|canker brake|evergreen wood fern|Polystichum acrostichoides|fern (generic term)
+daggerboard|1
+(noun)|centerboard (generic term)|centreboard (generic term)|drop keel (generic term)|sliding keel (generic term)
+dago|1
+(noun)|wop|ginzo|Guinea|greaseball|Italian (generic term)
+dagon|1
+(noun)|Dagon|Semitic deity (generic term)
+daguerre|1
+(noun)|Daguerre|Louis Jacques Mande Daguerre|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+daguerreotype|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+dah|1
+(noun)|dash|telegraphic signal (generic term)|radiotelegraphic signal (generic term)
+dahl|2
+(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|Cajanus cajan|shrub (generic term)|bush (generic term)
+(noun)|cajan pea|pigeon pea|pea (generic term)
+dahlia|1
+(noun)|Dahlia pinnata|flower (generic term)
+dahlia pinnata|1
+(noun)|dahlia|Dahlia pinnata|flower (generic term)
+dahna|1
+(noun)|Rub al-Khali|Ar Rimsal|Dahna|Great Sandy Desert|desert (generic term)
+dahomey|1
+(noun)|Benin|Republic of Benin|Dahomey|African country (generic term)|African nation (generic term)
+daikon|1
+(noun)|radish|Japanese radish|Raphanus sativus longipinnatus|radish plant (generic term)|radish (generic term)
+dail|1
+(noun)|Dail Eireann|Dail|house (generic term)
+dail eireann|1
+(noun)|Dail Eireann|Dail|house (generic term)
+daily|5
+(adj)|day-to-day|day-after-day|every day|regular (similar term)
+(adj)|time unit|unit of time (related term)
+(noun)|newspaper (generic term)|paper (generic term)
+(adv)|every day|each day
+(adv)|day by day
+daily dew|1
+(noun)|sundew|sundew plant|carnivorous plant (generic term)
+daily double|1
+(noun)|bet (generic term)|wager (generic term)
+daily round|1
+(noun)|round|habitude (generic term)
+daily variation|1
+(noun)|variation (generic term)|fluctuation (generic term)
+daimler|1
+(noun)|Daimler|Gottlieb Daimler|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|industrialist (generic term)
+daimon|1
+(noun)|devil|fiend|demon|daemon|evil spirit (generic term)
+daintiness|1
+(noun)|delicacy|fineness|elegance (generic term)
+dainty|5
+(adj)|mincing|niminy-piminy|prim|twee|refined (similar term)
+(adj)|exquisite|delicate (similar term)
+(adj)|tasty (similar term)
+(adj)|nice|overnice|prissy|squeamish|fastidious (similar term)
+(noun)|delicacy|goody|kickshaw|treat|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+daiquiri|1
+(noun)|rum cocktail|cocktail (generic term)
+dairy|1
+(noun)|dairy farm|farm (generic term)
+dairy cattle|1
+(noun)|dairy cow|milch cow|milk cow|milcher|milker|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+dairy cow|1
+(noun)|dairy cattle|milch cow|milk cow|milcher|milker|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+dairy farm|1
+(noun)|dairy|farm (generic term)
+dairy farmer|1
+(noun)|dairyman|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+dairy farming|1
+(noun)|dairying|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+dairy product|1
+(noun)|foodstuff (generic term)|food product (generic term)
+dairying|1
+(noun)|dairy farming|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+dairymaid|1
+(noun)|milkmaid|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+dairyman|2
+(noun)|dairy farmer|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+dais|1
+(noun)|podium|pulpit|rostrum|ambo|stump|soapbox|platform (generic term)
+daishiki|1
+(noun)|dashiki|shirt (generic term)
+daisy|1
+(noun)|flower (generic term)
+daisy-bush|1
+(noun)|daisybush|daisy bush|shrub (generic term)|bush (generic term)
+daisy-chain|1
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+daisy-leaved grape fern|1
+(noun)|daisyleaf grape fern|Botrychium matricariifolium|grape fern (generic term)
+daisy bush|1
+(noun)|daisybush|daisy-bush|shrub (generic term)|bush (generic term)
+daisy chain|2
+(noun)|chain (generic term)|concatenation (generic term)
+(noun)|flower chain (generic term)
+daisy cutter|2
+(noun)|fragmentation bomb|antipersonnel bomb|anti-personnel bomb|bomb (generic term)
+(noun)|ball (generic term)
+daisy fleabane|1
+(noun)|Erigeron annuus|fleabane (generic term)
+daisy print wheel|1
+(noun)|daisy wheel|wheel (generic term)
+daisy wheel|1
+(noun)|daisy print wheel|wheel (generic term)
+daisybush|1
+(noun)|daisy-bush|daisy bush|shrub (generic term)|bush (generic term)
+daisyleaf grape fern|1
+(noun)|daisy-leaved grape fern|Botrychium matricariifolium|grape fern (generic term)
+daisylike|1
+(adj)|flower (related term)
+daisywheel printer|1
+(noun)|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+dak|1
+(noun)|dhak|palas|Butea frondosa|Butea monosperma|tree (generic term)
+dakar|1
+(noun)|Dakar|capital of Senegal|national capital (generic term)|port (generic term)
+dakoit|1
+(noun)|dacoit|thief (generic term)|stealer (generic term)
+dakoity|1
+(noun)|dacoity|robbery (generic term)
+dakota|3
+(noun)|Dakota|Sioux (generic term)|Siouan (generic term)
+(noun)|Dakota|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Dakota|Siouan (generic term)|Siouan language (generic term)
+dal|1
+(noun)|dekaliter|dekalitre|decaliter|decalitre|dkl|metric capacity unit (generic term)
+dalai lama|1
+(noun)|Dalai Lama|Grand Lama|lama (generic term)
+dalasi|1
+(noun)|Gambian monetary unit (generic term)
+dalbergia|1
+(noun)|Dalbergia|genus Dalbergia|rosid dicot genus (generic term)
+dalbergia cearensis|1
+(noun)|kingwood|kingwood tree|Dalbergia cearensis|tree (generic term)
+dalbergia latifolia|1
+(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood (generic term)|rosewood tree (generic term)
+dalbergia nigra|1
+(noun)|Brazilian rosewood|caviuna wood|jacaranda|Dalbergia nigra|rosewood (generic term)|rosewood tree (generic term)
+dalbergia retusa|1
+(noun)|cocobolo|Dalbergia retusa|tree (generic term)
+dalbergia sissoo|1
+(noun)|sissoo|sissu|sisham|Dalbergia sissoo|tree (generic term)
+dalbergia stevensonii|1
+(noun)|Honduras rosewood|Dalbergia stevensonii|rosewood (generic term)|rosewood tree (generic term)
+dale|1
+(noun)|valley (generic term)|vale (generic term)
+dale carnegie|1
+(noun)|Carnegie|Dale Carnegie|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+dalea|1
+(noun)|Dalea|genus Dalea|rosid dicot genus (generic term)
+dalea spinosa|1
+(noun)|smoke tree|Dalea spinosa|shrub (generic term)|bush (generic term)
+dalesman|1
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+daleth|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+dali|1
+(noun)|Dali|Salvidor Dali|painter (generic term)
+dall's sheep|1
+(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep (generic term)
+dall sheep|1
+(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep (generic term)
+dallas|1
+(noun)|Dallas|city (generic term)|metropolis (generic term)|urban center (generic term)
+dalliance|2
+(noun)|dawdling|trifling|delay (generic term)|holdup (generic term)
+(noun)|flirt|flirting|flirtation|coquetry|toying|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+dallier|1
+(noun)|dillydallier|dilly-dallier|mope|lounger|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+dallis grass|1
+(noun)|dallisgrass|paspalum|Paspalum dilatatum|grass (generic term)
+dallisgrass|1
+(noun)|dallis grass|paspalum|Paspalum dilatatum|grass (generic term)
+dally|4
+(verb)|toy|play|flirt|act (generic term)|move (generic term)
+(verb)|dawdle|act (generic term)|behave (generic term)|do (generic term)
+(verb)|chat up|flirt|butterfly|coquet|coquette|romance|philander|mash|talk (generic term)|speak (generic term)
+(verb)|trifle|play|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+dalmane|1
+(noun)|flurazepam|flurazepam hydrochloride|Dalmane|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+dalmatia|1
+(noun)|Dalmatia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dalmatia pyrethrum|1
+(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb (generic term)|herbaceous plant (generic term)
+dalmatian|3
+(adj)|Dalmatian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Dalmatian|European (generic term)
+(noun)|coach dog|carriage dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+dalmatian iris|1
+(noun)|Dalmatian iris|Iris pallida|bearded iris (generic term)
+dalmatian laburnum|1
+(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub (generic term)|bush (generic term)
+dalmatian pyrethrum|1
+(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb (generic term)|herbaceous plant (generic term)
+dalo|1
+(noun)|taro|taro plant|dasheen|Colocasia esculenta|arum (generic term)|aroid (generic term)
+dalton|1
+(noun)|Dalton|John Dalton|chemist (generic term)|physicist (generic term)
+dalton's law|2
+(noun)|law of multiple proportions|Dalton's law|law (generic term)|law of nature (generic term)
+(noun)|Dalton's law|Dalton's law of partial pressures|law of partial pressures|law (generic term)|law of nature (generic term)
+dalton's law of partial pressures|1
+(noun)|Dalton's law|Dalton's law of partial pressures|law of partial pressures|law (generic term)|law of nature (generic term)
+dalton trumbo|1
+(noun)|Trumbo|Dalton Trumbo|screenwriter (generic term)|film writer (generic term)
+daltonism|1
+(noun)|deuteranopia|Daltonism|green-blindness|red-green dichromacy (generic term)|red-green color blindness (generic term)|red-green colour blindness (generic term)
+dam|4
+(noun)|dike|dyke|barrier (generic term)
+(noun)|decameter|dekameter|decametre|dekametre|dkm|metric linear unit (generic term)
+(noun)|female (generic term)
+(verb)|dam up|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+dam up|1
+(verb)|dam|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+dama|1
+(noun)|Dama|genus Dama|mammal genus (generic term)
+dama dama|1
+(noun)|fallow deer|Dama dama|deer (generic term)|cervid (generic term)
+damage|6
+(noun)|harm|impairment|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|equipment casualty|casualty (generic term)
+(noun)|harm|hurt|scathe|change of integrity (generic term)
+(noun)|price|terms|cost (generic term)
+(noun)|wrong|legal injury|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+damage control|1
+(noun)|control (generic term)
+damaged|3
+(adj)|battered (similar term)|beat-up (similar term)|beaten-up (similar term)|bedraggled (similar term)|broken-down (similar term)|derelict (similar term)|dilapidated (similar term)|ramshackle (similar term)|tatterdemalion (similar term)|tumble-down (similar term)|bent (similar term)|crumpled (similar term)|dented (similar term)|broken (similar term)|busted (similar term)|broken-backed (similar term)|burst (similar term)|ruptured (similar term)|busted (similar term)|defaced (similar term)|marred (similar term)|hurt (similar term)|weakened (similar term)|knocked-out (similar term)|mangled (similar term)|mutilated (similar term)|peeling (similar term)|riddled (similar term)|scorched (similar term)|scraped (similar term)|scratched (similar term)|storm-beaten (similar term)|trampled (similar term)|trodden (similar term)|blemished (related term)|broken (related term)|destroyed (related term)|impaired (related term)|injured (related term)|undamaged (antonym)
+(adj)|discredited|disreputable (similar term)
+(adj)|besmirched|flyblown|spotted|stained|sullied|tainted|tarnished|blemished (similar term)
+damages|1
+(noun)|amends|indemnity|indemnification|restitution|redress|compensation (generic term)
+damaging|2
+(adj)|detrimental|prejudicial|prejudicious|harmful (similar term)
+(adj)|negative|destructive (similar term)
+damaliscus|1
+(noun)|Damaliscus|genus Damaliscus|mammal genus (generic term)
+damaliscus lunatus|1
+(noun)|sassaby|topi|Damaliscus lunatus|antelope (generic term)
+damar|1
+(noun)|dammar|gum dammar|dammar resin|natural resin (generic term)
+damaraland mole rat|1
+(noun)|Damaraland mole rat|fossorial mammal (generic term)
+damascene|5
+(adj)|national capital (related term)
+(adj)|fancy (similar term)
+(noun)|Damascene|Syrian (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(verb)|inlay (generic term)
+damascus|1
+(noun)|Dimash|Damascus|capital of Syria|national capital (generic term)
+damascus steel|1
+(noun)|Damascus steel|Damask steel|steel (generic term)
+damask|3
+(adj)|fancy (similar term)
+(noun)|table linen (generic term)|napery (generic term)
+(noun)|damask fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+damask fabric|1
+(noun)|damask|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+damask rose|1
+(noun)|summer damask rose|Rosa damascena|rose (generic term)|rosebush (generic term)
+damask steel|1
+(noun)|Damascus steel|Damask steel|steel (generic term)
+damask violet|1
+(noun)|Dame's violet|sweet rocket|Hesperis matronalis|flower (generic term)
+dame|2
+(noun)|doll|wench|skirt|chick|bird|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|madam|ma'am|lady|gentlewoman|woman (generic term)|adult female (generic term)
+dame's violet|1
+(noun)|damask violet|Dame's violet|sweet rocket|Hesperis matronalis|flower (generic term)
+dame agatha mary clarissa christie|1
+(noun)|Christie|Agatha Christie|Dame Agatha Mary Clarissa Christie|writer (generic term)|author (generic term)
+dame alice ellen terry|1
+(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress (generic term)
+dame alicia markova|1
+(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+dame barbara hepworth|1
+(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+dame daphne du maurier|1
+(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer (generic term)|author (generic term)
+dame edith louisa sitwell|1
+(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet (generic term)
+dame edith sitwell|1
+(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet (generic term)
+dame ellen terry|1
+(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress (generic term)
+dame jean iris murdoch|1
+(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer (generic term)|author (generic term)
+dame joan sutherland|1
+(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano (generic term)
+dame kiri janette te kanawa|1
+(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano (generic term)
+dame kiri te kanawa|1
+(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano (generic term)
+dame margot fonteyn|1
+(noun)|Fonteyn|Dame Margot Fonteyn|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+dame muriel spark|1
+(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer (generic term)|author (generic term)
+dame myra hess|1
+(noun)|Hess|Dame Myra Hess|pianist (generic term)|piano player (generic term)
+dame nellie melba|1
+(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura (generic term)|coloratura soprano (generic term)
+dame rebecca west|1
+(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer (generic term)|author (generic term)
+dame sybil thorndike|1
+(noun)|Thorndike|Dame Sybil Thorndike|actress (generic term)
+damgalnunna|1
+(noun)|Damkina|Damgalnunna|Semitic deity (generic term)
+daminozide|1
+(noun)|Alar|chemical (generic term)|chemical substance (generic term)
+damkina|1
+(noun)|Damkina|Damgalnunna|Semitic deity (generic term)
+dammar|1
+(noun)|gum dammar|damar|dammar resin|natural resin (generic term)
+dammar pine|1
+(noun)|kauri pine|conifer (generic term)|coniferous tree (generic term)
+dammar resin|1
+(noun)|dammar|gum dammar|damar|natural resin (generic term)
+damn|5
+(adj)|goddamn|cursed (similar term)|curst (similar term)
+(adj)|blasted|blame|blamed|blessed|damned|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+(noun)|darn|hoot|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+(verb)|curse|beshrew|bedamn|anathemize|anathemise|imprecate|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+(adv)|bloody|all-fired
+damnable|1
+(adj)|execrable|cursed (similar term)|curst (similar term)
+damnably|1
+(adv)|damned|cursedly
+damnation|2
+(noun)|denunciation (generic term)|denouncement (generic term)
+(noun)|eternal damnation|state (generic term)
+damnatory|1
+(adj)|damning|inculpatory (similar term)|inculpative (similar term)
+damned|4
+(adj)|blasted|blame|blamed|blessed|damn|darned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+(adj)|cursed|doomed|unredeemed|unsaved|lost (similar term)
+(noun)|people (generic term)
+(adv)|damnably|cursedly
+damning|1
+(adj)|damnatory|inculpatory (similar term)|inculpative (similar term)
+damocles|1
+(noun)|Damocles|courtier (generic term)
+damoiselle|1
+(noun)|damsel|demoiselle|damosel|damozel|maid (generic term)|maiden (generic term)
+damon|1
+(noun)|Damon|friend (generic term)
+damon and pythias|1
+(noun)|Damon and Pythias|friend (generic term)
+damon runyon|1
+(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer (generic term)|author (generic term)
+damosel|1
+(noun)|damsel|demoiselle|damoiselle|damozel|maid (generic term)|maiden (generic term)
+damourite|1
+(noun)|muscovite (generic term)
+damozel|1
+(noun)|damsel|demoiselle|damoiselle|damosel|maid (generic term)|maiden (generic term)
+damp|6
+(adj)|dampish|moist|wet (similar term)
+(noun)|dampness|moistness|wetness (generic term)
+(verb)|muffle|mute|dull|dampen|tone down|soften (generic term)
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|dampen|deaden|dampen (generic term)|damp (generic term)|soften (generic term)|weaken (generic term)|break (generic term)
+(verb)|dampen|soften|weaken|break|deaden (generic term)|blunt (generic term)
+damp-proof course|1
+(noun)|damp course|course (generic term)|row (generic term)
+damp course|1
+(noun)|damp-proof course|course (generic term)|row (generic term)
+dampen|7
+(verb)|stifle|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|stimulate (antonym)
+(verb)|moisten|wash|wet (generic term)
+(verb)|muffle|mute|dull|damp|tone down|soften (generic term)
+(verb)|weaken (generic term)
+(verb)|deaden|damp|dampen (generic term)|damp (generic term)|soften (generic term)|weaken (generic term)|break (generic term)
+(verb)|check (generic term)|retard (generic term)|delay (generic term)
+(verb)|damp|soften|weaken|break|deaden (generic term)|blunt (generic term)
+dampener|1
+(noun)|moistener|device (generic term)
+dampening|1
+(noun)|moistening|wetting (generic term)
+damper|3
+(noun)|plate (generic term)
+(noun)|muffler|device (generic term)
+(noun)|restraint (generic term)
+damper block|1
+(noun)|piano damper|damper (generic term)|muffler (generic term)
+damping off|1
+(noun)|plant disease (generic term)
+damping off fungus|1
+(noun)|Pythium debaryanum|pythium (generic term)
+dampish|1
+(adj)|damp|moist|wet (similar term)
+damply|1
+(adv)|moistly
+dampness|1
+(noun)|damp|moistness|wetness (generic term)
+damsel|1
+(noun)|demoiselle|damoiselle|damosel|damozel|maid (generic term)|maiden (generic term)
+damselfish|1
+(noun)|demoiselle|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+damselfly|1
+(noun)|odonate (generic term)
+damson|1
+(noun)|damson plum|plum (generic term)
+damson plum|3
+(noun)|satinleaf|satin leaf|caimitillo|Chrysophyllum oliviforme|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|damson plum tree|Prunus domestica insititia|bullace (generic term)|Prunus insititia (generic term)
+(noun)|damson|plum (generic term)
+damson plum tree|1
+(noun)|damson plum|Prunus domestica insititia|bullace (generic term)|Prunus insititia (generic term)
+dana|1
+(noun)|Danu|Dana|Celtic deity (generic term)
+danaea|1
+(noun)|Danaea|genus Danaea|fern genus (generic term)
+danaid|1
+(noun)|danaid butterfly|butterfly (generic term)
+danaid butterfly|1
+(noun)|danaid|butterfly (generic term)
+danaidae|1
+(noun)|Danaidae|family Danaidae|arthropod family (generic term)
+danau|1
+(noun)|Danube|Danube River|Danau|river (generic term)
+danaus|1
+(noun)|Danaus|genus Danaus|arthropod genus (generic term)
+danaus plexippus|1
+(noun)|monarch|monarch butterfly|milkweed butterfly|Danaus plexippus|danaid (generic term)|danaid butterfly (generic term)
+dance|5
+(noun)|art (generic term)|fine art (generic term)
+(noun)|dancing|terpsichore|saltation|diversion (generic term)|recreation (generic term)|performing arts (generic term)
+(noun)|party (generic term)
+(verb)|trip the light fantastic|trip the light fantastic toe|move (generic term)
+(verb)|move (generic term)
+dance band|1
+(noun)|band|dance orchestra|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+dance floor|1
+(noun)|floor (generic term)|flooring (generic term)
+dance hall|1
+(noun)|ballroom|dance palace|room (generic term)
+dance lesson|1
+(noun)|lesson (generic term)
+dance master|1
+(noun)|dancing-master|teacher (generic term)|instructor (generic term)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+dance music|1
+(noun)|danceroom music|ballroom music|popular music (generic term)|popular music genre (generic term)
+dance of death|1
+(noun)|danse macabre|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+dance orchestra|1
+(noun)|dance band|band|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+dance palace|1
+(noun)|ballroom|dance hall|room (generic term)
+dance school|1
+(noun)|school (generic term)
+dance step|1
+(noun)|step|locomotion (generic term)|travel (generic term)
+danceable|1
+(adj)|rhythmical (similar term)|rhythmic (similar term)
+dancer|2
+(noun)|professional dancer|terpsichorean|performer (generic term)|performing artist (generic term)
+(noun)|social dancer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+danceroom music|1
+(noun)|dance music|ballroom music|popular music (generic term)|popular music genre (generic term)
+dancing|1
+(noun)|dance|terpsichore|saltation|diversion (generic term)|recreation (generic term)|performing arts (generic term)
+dancing-master|1
+(noun)|dance master|teacher (generic term)|instructor (generic term)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+dancing lady orchid|1
+(noun)|oncidium|butterfly plant|butterfly orchid|orchid (generic term)|orchidaceous plant (generic term)
+dancing partner|1
+(noun)|dancer (generic term)|social dancer (generic term)|collaborator (generic term)|cooperator (generic term)|partner (generic term)|pardner (generic term)
+dancing school|1
+(noun)|school (generic term)
+dandelion|1
+(noun)|blowball|herb (generic term)|herbaceous plant (generic term)
+dandelion green|2
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+dander|2
+(noun)|scale (generic term)|scurf (generic term)|exfoliation (generic term)
+(noun)|hackles|anger (generic term)|choler (generic term)|ire (generic term)
+dandie dinmont|1
+(noun)|Dandie Dinmont|Dandie Dinmont terrier|terrier (generic term)
+dandie dinmont terrier|1
+(noun)|Dandie Dinmont|Dandie Dinmont terrier|terrier (generic term)
+dandified|1
+(adj)|dandyish|foppish|elegant (similar term)
+dandify|1
+(verb)|dress (generic term)|get dressed (generic term)
+dandle|2
+(verb)|move (generic term)|displace (generic term)
+(verb)|caress (generic term)
+dandle board|1
+(noun)|seesaw|teeter|teeter-totter|teetertotter|teeterboard|tilting board|plaything (generic term)|toy (generic term)
+dandruff|2
+(noun)|pityriasis (generic term)
+(noun)|scale (generic term)|scurf (generic term)|exfoliation (generic term)
+dandy|3
+(adj)|bang-up|bully|corking|cracking|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(noun)|dude|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+(noun)|yawl|sailing vessel (generic term)|sailing ship (generic term)
+dandy fever|1
+(noun)|dengue|dengue fever|breakbone fever|infectious disease (generic term)
+dandyish|1
+(adj)|dandified|foppish|elegant (similar term)
+dandyism|1
+(noun)|foppishness|manner (generic term)|personal manner (generic term)
+dane|1
+(noun)|Dane|European (generic term)
+danewort|1
+(noun)|dwarf elder|Sambucus ebulus|elder (generic term)|elderberry bush (generic term)
+dangaleat|1
+(noun)|Dangla|Dangaleat|East Chadic (generic term)
+danger|4
+(noun)|condition (generic term)|status (generic term)|safety (antonym)
+(noun)|risk|peril|venture (generic term)
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|area (generic term)|country (generic term)
+danger line|1
+(noun)|line (generic term)
+danger zone|1
+(noun)|zone (generic term)
+dangerous|2
+(adj)|unsafe|breakneck (similar term)|chancy (similar term)|chanceful (similar term)|dicey (similar term)|dodgy (similar term)|desperate (similar term)|harmful (similar term)|hazardous (similar term)|risky (similar term)|wild (similar term)|insidious (similar term)|mordacious (similar term)|on the hook (similar term)|parlous (similar term)|perilous (similar term)|precarious (similar term)|touch-and-go (similar term)|self-destructive (similar term)|suicidal (similar term)|treacherous (similar term)|unreliable (similar term)|insecure (related term)|unsafe (related term)|vulnerable (related term)|safe (antonym)
+(adj)|grave|grievous|serious|severe|life-threatening|critical (similar term)
+dangerous undertaking|1
+(noun)|adventure|escapade|risky venture|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+dangerously|1
+(adv)|perilously|hazardously
+dangerousness|1
+(noun)|characteristic (generic term)|safeness (antonym)
+dangla|1
+(noun)|Dangla|Dangaleat|East Chadic (generic term)
+dangle|2
+(verb)|swing|drop|hang (generic term)
+(verb)|suspend (generic term)
+dangle-berry|1
+(noun)|dangleberry|Gaylussacia frondosa|huckleberry (generic term)
+dangleberry|1
+(noun)|dangle-berry|Gaylussacia frondosa|huckleberry (generic term)
+dangling|1
+(noun)|suspension|hanging|support (generic term)|supporting (generic term)
+dangling modifier|1
+(noun)|misplaced modifier|modifier (generic term)|qualifier (generic term)
+dangling participle|1
+(noun)|dangling modifier (generic term)|misplaced modifier (generic term)
+daniel|3
+(noun)|Daniel|prophet (generic term)
+(noun)|Daniel|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|Daniel|Book of Daniel|Book of the Prophet Daniel|book (generic term)
+daniel bernoulli|1
+(noun)|Bernoulli|Daniel Bernoulli|physicist (generic term)
+daniel boone|1
+(noun)|Boone|Daniel Boone|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)
+daniel chester french|1
+(noun)|French|Daniel Chester French|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+daniel defoe|1
+(noun)|Defoe|Daniel Defoe|writer (generic term)|author (generic term)
+daniel garrison brinton|1
+(noun)|Brinton|Daniel Garrison Brinton|anthropologist (generic term)
+daniel hudson burnham|1
+(noun)|Burnham|Daniel Hudson Burnham|architect (generic term)|designer (generic term)
+daniel jones|1
+(noun)|Jones|Daniel Jones|phonetician (generic term)
+daniel morgan|1
+(noun)|Morgan|Daniel Morgan|soldier (generic term)
+daniel ortega|1
+(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman (generic term)|solon (generic term)|national leader (generic term)
+daniel ortega saavedra|1
+(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman (generic term)|solon (generic term)|national leader (generic term)
+daniel patrick moynihan|1
+(noun)|Moynihan|Daniel Patrick Moynihan|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+daniel rutherford|1
+(noun)|Rutherford|Daniel Rutherford|chemist (generic term)
+daniel webster|1
+(noun)|Webster|Daniel Webster|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+danish|3
+(adj)|Danish|Scandinavian country|Scandinavian nation (related term)
+(noun)|Danish|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+(noun)|danish pastry|sweet roll (generic term)|coffee roll (generic term)
+danish blue|1
+(noun)|Danish blue|bleu (generic term)|blue cheese (generic term)
+danish capital|1
+(noun)|Copenhagen|Kobenhavn|Danish capital|national capital (generic term)
+danish krone|1
+(noun)|Danish krone|krone|Danish monetary unit (generic term)
+danish monetary unit|1
+(noun)|Danish monetary unit|monetary unit (generic term)
+danish pastry|1
+(noun)|danish|sweet roll (generic term)|coffee roll (generic term)
+dank|1
+(adj)|clammy|wet (similar term)
+dankness|1
+(noun)|clamminess|damp (generic term)|dampness (generic term)|moistness (generic term)
+danmark|1
+(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country (generic term)|Scandinavian nation (generic term)
+dano-norwegian|1
+(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian (generic term)
+danse du ventre|1
+(noun)|belly dance|belly dancing|stage dancing (generic term)|choreography (generic term)
+danse macabre|1
+(noun)|dance of death|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+danseur|1
+(noun)|danseur noble|ballet dancer (generic term)
+danseur noble|1
+(noun)|danseur|ballet dancer (generic term)
+danseuse|1
+(noun)|ballerina|ballet dancer (generic term)
+dante|1
+(noun)|Dante|Dante Alighieri|poet (generic term)
+dante alighieri|1
+(noun)|Dante|Dante Alighieri|poet (generic term)
+dante gabriel rossetti|1
+(noun)|Rossetti|Dante Gabriel Rossetti|Pre-Raphaelite (generic term)
+dantean|1
+(adj)|Dantean|Dantesque|poet (related term)
+dantesque|1
+(adj)|Dantean|Dantesque|poet (related term)
+danton|1
+(noun)|Danton|Georges Jacques Danton|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+danton true young|1
+(noun)|Young|Cy Young|Danton True Young|ballplayer (generic term)|baseball player (generic term)
+danu|1
+(noun)|Danu|Dana|Celtic deity (generic term)
+danube|1
+(noun)|Danube|Danube River|Danau|river (generic term)
+danube river|1
+(noun)|Danube|Danube River|Danau|river (generic term)
+danzig|1
+(noun)|Gdansk|Danzig|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+daoism|1
+(noun)|Taoism|Daoism|philosophical doctrine (generic term)|philosophical theory (generic term)
+daphne|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|Daphne|nymph (generic term)
+daphne cneorum|1
+(noun)|garland flower|Daphne cneorum|daphne (generic term)
+daphne du maurier|1
+(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer (generic term)|author (generic term)
+daphne family|1
+(noun)|Thymelaeaceae|family Thymelaeaceae|dicot family (generic term)|magnoliopsid family (generic term)
+daphne laureola|1
+(noun)|spurge laurel|wood laurel|Daphne laureola|daphne (generic term)
+daphne mezereum|1
+(noun)|mezereon|February daphne|Daphne mezereum|daphne (generic term)
+daphnia|1
+(noun)|water flea|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+dapper|1
+(adj)|dashing|jaunty|natty|raffish|rakish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+dapperness|1
+(noun)|jauntiness|nattiness|rakishness|chic (generic term)|chicness (generic term)|chichi (generic term)|modishness (generic term)|smartness (generic term)|stylishness (generic term)|swank (generic term)|last word (generic term)
+dapple|2
+(noun)|spot|speckle|patch|fleck|maculation|marking (generic term)
+(verb)|mottle|cloud|spot (generic term)
+dapple-gray|1
+(noun)|dapple-grey|dappled-grey|dappled-gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+dapple-grey|1
+(noun)|dapple-gray|dappled-grey|dappled-gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+dappled|1
+(adj)|mottled|patterned (similar term)
+dappled-gray|1
+(noun)|dapple-grey|dapple-gray|dappled-grey|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+dappled-grey|1
+(noun)|dapple-grey|dapple-gray|dappled-gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+dapsang|1
+(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak (generic term)
+dapsone|1
+(noun)|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+dar al-harb|1
+(noun)|Dar al-harb|House of War|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dar al-islam|1
+(noun)|Dar al-Islam|House of Islam|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dar es salaam|1
+(noun)|Dar es Salaam|capital of Tanzania|national capital (generic term)|port (generic term)
+daraf|1
+(noun)|elastance unit (generic term)
+dard|1
+(noun)|Dard|Dardic|Dardic language|Indic (generic term)|Indo-Aryan (generic term)
+dardan|1
+(noun)|Trojan|Dardan|Dardanian|Asian (generic term)|Asiatic (generic term)
+dardanelles|2
+(noun)|Dardanelles|Canakkale Bogazi|Hellespont|strait (generic term)|sound (generic term)
+(noun)|Dardanelles|Dardanelles campaign|campaign (generic term)|military campaign (generic term)
+dardanelles campaign|1
+(noun)|Dardanelles|Dardanelles campaign|campaign (generic term)|military campaign (generic term)
+dardanian|1
+(noun)|Trojan|Dardan|Dardanian|Asian (generic term)|Asiatic (generic term)
+dardanus|1
+(noun)|Dardanus|mythical being (generic term)
+dardic|1
+(noun)|Dard|Dardic|Dardic language|Indic (generic term)|Indo-Aryan (generic term)
+dardic language|1
+(noun)|Dard|Dardic|Dardic language|Indic (generic term)|Indo-Aryan (generic term)
+dare|4
+(noun)|daring|challenge (generic term)
+(verb)|make bold|presume|act (generic term)|move (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|defy|challenge (generic term)
+daredevil|2
+(adj)|temerarious|bold (similar term)
+(noun)|madcap|hothead|swashbuckler|lunatic|harum-scarum|adventurer (generic term)|venturer (generic term)
+daredevilry|1
+(noun)|daredeviltry|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+daredeviltry|1
+(noun)|daredevilry|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+darfur|1
+(noun)|Darfur|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+dari|1
+(noun)|Dari|Dari Persian|Iranian (generic term)|Iranian language (generic term)
+dari persian|1
+(noun)|Dari|Dari Persian|Iranian (generic term)|Iranian language (generic term)
+daricon|1
+(noun)|oxyphencyclimine|Daricon|anticholinergic (generic term)|anticholinergic drug (generic term)
+darier's disease|1
+(noun)|keratosis follicularis|Darier's disease|keratosis (generic term)
+daring|4
+(adj)|audacious|venturesome|venturous|adventurous (similar term)|adventuresome (similar term)
+(adj)|avant-garde|original (similar term)
+(noun)|dare|challenge (generic term)
+(noun)|boldness|hardiness|hardihood|fearlessness (generic term)|timidity (antonym)
+darius i|1
+(noun)|Darius I|Darius the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+darius iii|1
+(noun)|Darius III|king (generic term)|male monarch (generic term)|Rex (generic term)
+darius milhaud|1
+(noun)|Milhaud|Darius Milhaud|composer (generic term)
+darius the great|1
+(noun)|Darius I|Darius the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+darjeeling|1
+(noun)|Darjeeling|black tea (generic term)
+dark|16
+(adj)|Acheronian (similar term)|Acherontic (similar term)|Stygian (similar term)|aphotic (similar term)|black (similar term)|pitch-black (similar term)|pitch-dark (similar term)|caliginous (similar term)|Cimmerian (similar term)|crepuscular (similar term)|darkened (similar term)|darkening (similar term)|darkling (similar term)|darkling (similar term)|dim (similar term)|subdued (similar term)|dusky (similar term)|twilight (similar term)|twilit (similar term)|glooming (similar term)|gloomy (similar term)|gloomful (similar term)|sulky (similar term)|lightless (similar term)|unilluminated (similar term)|unlighted (similar term)|unlit (similar term)|semidark (similar term)|tenebrous (similar term)|tenebrific (similar term)|tenebrious (similar term)|light (antonym)
+(adj)|darkish (similar term)|black (related term)|light (antonym)
+(adj)|brunet (similar term)|brunette (similar term)
+(adj)|black|sinister|evil (similar term)
+(adj)|blue|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(adj)|concealed (similar term)
+(adj)|dour|glowering|glum|moody|morose|saturnine|sour|sullen|ill-natured (similar term)
+(adj)|benighted|unenlightened (similar term)
+(adj)|obscure|incomprehensible (similar term)|uncomprehensible (similar term)
+(adj)|colored|coloured|dark-skinned|non-white|black (similar term)
+(adj)|inactive (similar term)
+(noun)|darkness|illumination (generic term)|light (antonym)
+(noun)|iniquity|wickedness|darkness|condition (generic term)|status (generic term)
+(noun)|darkness|shadow|scene (generic term)
+(noun)|night|nighttime|time period (generic term)|period of time (generic term)|period (generic term)|day (antonym)
+(noun)|darkness|unenlightenment (generic term)
+dark-blue|1
+(adj)|chromatic (similar term)
+dark-brown|1
+(adj)|brown|brownish|chocolate-brown|chromatic (similar term)
+dark-coated|1
+(adj)|dark-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+dark-colored|1
+(adj)|dark-coloured|dusky-colored|dusky-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+dark-coloured|1
+(adj)|dark-colored|dusky-colored|dusky-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+dark-eyed junco|1
+(noun)|slate-colored junco|Junco hyemalis|junco (generic term)|snowbird (generic term)
+dark-field microscope|1
+(noun)|ultramicroscope|light microscope (generic term)
+dark-fruited|1
+(adj)|fruitful (similar term)
+dark-gray|1
+(adj)|oxford-grey|oxford-gray|dark-grey|achromatic (similar term)
+dark-green|1
+(adj)|green|greenish|light-green|chromatic (similar term)
+dark-grey|1
+(adj)|oxford-grey|oxford-gray|dark-gray|achromatic (similar term)
+dark-haired|2
+(adj)|black-haired|brown-haired|brunet (similar term)|brunette (similar term)
+(adj)|dark-coated|hairy (similar term)|haired (similar term)|hirsute (similar term)
+dark-skinned|2
+(adj)|colored|coloured|dark|non-white|black (similar term)
+(adj)|dusky|swart|swarthy|brunet (similar term)|brunette (similar term)
+dark-spotted|1
+(adj)|patterned (similar term)
+dark adaptation|1
+(noun)|adaptation (generic term)
+dark ages|1
+(noun)|Middle Ages|Dark Ages|historic period (generic term)|age (generic term)
+dark blue|1
+(noun)|navy|navy blue|blue (generic term)|blueness (generic term)
+dark bread|1
+(noun)|whole wheat bread|whole meal bread|brown bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+dark chocolate|1
+(noun)|bittersweet chocolate|semi-sweet chocolate|chocolate (generic term)
+dark comedy|1
+(noun)|comedy (generic term)
+dark field illumination|1
+(noun)|dark ground illumination|microscopy (generic term)
+dark glasses|1
+(noun)|sunglasses|shades|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+dark ground illumination|1
+(noun)|dark field illumination|microscopy (generic term)
+dark horse|2
+(noun)|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+dark lantern|1
+(noun)|lantern (generic term)
+dark matter|1
+(noun)|substance (generic term)|matter (generic term)
+dark meat|1
+(noun)|meat (generic term)
+dark red|1
+(noun)|red (generic term)|redness (generic term)
+darken|4
+(verb)|change (generic term)|brighten (antonym)
+(verb)|dim|change intensity (generic term)|brighten (antonym)
+(verb)|tarnish (generic term)|stain (generic term)|maculate (generic term)|sully (generic term)|defile (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|brighten (antonym)
+darkened|2
+(adj)|old (similar term)
+(adj)|dark (similar term)
+darkening|3
+(adj)|dark (similar term)
+(adj)|gloomy|grim|hopeless (similar term)
+(noun)|blackening|change of color (generic term)
+darkey|1
+(noun)|darky|darkie|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+darkie|1
+(noun)|darky|darkey|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+darkish|1
+(adj)|dark (similar term)
+darkling|1
+(adj)|dark (similar term)
+darkling beetle|1
+(noun)|darkling groung beetle|tenebrionid|weevil (generic term)
+darkling groung beetle|1
+(noun)|darkling beetle|tenebrionid|weevil (generic term)
+darkly|1
+(adv)|in darkness
+darkness|6
+(noun)|dark|illumination (generic term)|light (antonym)
+(noun)|dark|shadow|scene (generic term)
+(noun)|iniquity|wickedness|dark|condition (generic term)|status (generic term)
+(noun)|dark|unenlightenment (generic term)
+(noun)|value (generic term)|lightness (antonym)
+(noun)|duskiness|swarthiness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+darkroom|1
+(noun)|room (generic term)
+darky|1
+(noun)|darkie|darkey|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+darling|3
+(adj)|beloved|dear|loved (similar term)
+(noun)|favorite|favourite|pet|dearie|deary|ducky|lover (generic term)
+(noun)|Darling|Darling River|river (generic term)
+darling pea|1
+(noun)|poison bush|subshrub (generic term)|suffrutex (generic term)
+darling river|1
+(noun)|Darling|Darling River|river (generic term)
+darlingtonia|1
+(noun)|Darlingtonia|genus Darlingtonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+darlingtonia californica|1
+(noun)|California pitcher plant|Darlingtonia californica|pitcher plant (generic term)
+darmera|1
+(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus (generic term)
+darmera peltata|1
+(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+darmstadtium|1
+(noun)|Ds|element 110|atomic number 110|chemical element (generic term)|element (generic term)
+darn|4
+(noun)|euphemism (generic term)
+(noun)|damn|hoot|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+(noun)|mend|patch|sewing (generic term)|stitchery (generic term)
+(verb)|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+darned|1
+(adj)|blasted|blame|blamed|blessed|damn|damned|deuced|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+darnel|1
+(noun)|tare|bearded darnel|cheat|Lolium temulentum|rye grass (generic term)|ryegrass (generic term)
+darner|1
+(noun)|mender (generic term)|repairer (generic term)|fixer (generic term)
+darning|1
+(noun)|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+darning needle|2
+(noun)|embroidery needle|sewing needle (generic term)
+(noun)|dragonfly|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate (generic term)
+darpa|1
+(noun)|Defense Advanced Research Projects Agency|DARPA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+darrow|1
+(noun)|Darrow|Clarence Darrow|Clarence Seward Darrow|lawyer (generic term)|attorney (generic term)
+darryl francis zanuck|1
+(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+darryl zanuck|1
+(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+darsana|1
+(noun)|Darsana|Hinduism (generic term)|Hindooism (generic term)
+dart|6
+(noun)|projectile (generic term)|missile (generic term)
+(noun)|tuck (generic term)
+(noun)|flit|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|flit|flutter|fleet|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+(verb)|dash|scoot|scud|flash|shoot|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+(verb)|lunge (generic term)|hurl (generic term)|hurtle (generic term)|thrust (generic term)
+dart board|1
+(noun)|dartboard|board (generic term)|gameboard (generic term)
+dart player|1
+(noun)|player (generic term)|participant (generic term)
+dart thrower|1
+(noun)|throwing stick|throwing board|spear thrower|device (generic term)
+dartboard|1
+(noun)|dart board|board (generic term)|gameboard (generic term)
+darter|2
+(noun)|snakebird|anhinga|pelecaniform seabird (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+dartmouth|1
+(noun)|Dartmouth College|Dartmouth|college (generic term)
+dartmouth college|1
+(noun)|Dartmouth College|Dartmouth|college (generic term)
+darts|1
+(noun)|board game (generic term)
+darvon|1
+(noun)|propoxyphene|propoxyphene hydrochloride|Darvon|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+darwin|2
+(noun)|Darwin|Charles Darwin|Charles Robert Darwin|naturalist (generic term)|natural scientist (generic term)
+(noun)|Darwin|provincial capital (generic term)
+darwin tulip|1
+(noun)|Darwin tulip|tulip (generic term)
+darwinian|2
+(adj)|Darwinian|theory of evolution|theory of organic evolution|evolutionism (related term)
+(noun)|Darwinian|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+darwinism|1
+(noun)|Darwinism|theory of evolution (generic term)|theory of organic evolution (generic term)|evolutionism (generic term)
+daryacheh-ye orumiyeh|1
+(noun)|Lake Urmia|Urmia|Daryacheh-ye Orumiyeh|lake (generic term)
+das|1
+(noun)|hyrax|coney|cony|dassie|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+das kapital|1
+(noun)|Das Kapital|Capital|book (generic term)
+dash|12
+(noun)|elan|flair|panache|style|elegance (generic term)
+(noun)|sprint|run (generic term)|running (generic term)
+(noun)|track event (generic term)
+(noun)|hyphen|punctuation (generic term)|punctuation mark (generic term)
+(noun)|dah|telegraphic signal (generic term)|radiotelegraphic signal (generic term)
+(noun)|bolt|haste (generic term)|hurry (generic term)|rush (generic term)|rushing (generic term)
+(verb)|dart|scoot|scud|flash|shoot|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+(verb)|smash|break (generic term)
+(verb)|crash|hurl (generic term)|hurtle (generic term)|cast (generic term)
+(verb)|thwart (generic term)|queer (generic term)|spoil (generic term)|scotch (generic term)|foil (generic term)|cross (generic term)|frustrate (generic term)|baffle (generic term)|bilk (generic term)
+(verb)|daunt|scare off|pall|frighten off|scare away|frighten away|scare|intimidate (generic term)|restrain (generic term)
+(verb)|mix (generic term)|mix in (generic term)
+dash-pot|1
+(noun)|damper (generic term)|muffler (generic term)
+dash down|1
+(verb)|dash off|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+dash off|2
+(verb)|scratch off|knock off|toss off|fling off|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|dash down|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+dashboard|2
+(noun)|splashboard|splasher|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|control panel (generic term)|instrument panel (generic term)|control board (generic term)|board (generic term)|panel (generic term)
+dashed|1
+(adj)|dotted|broken (similar term)
+dasheen|3
+(noun)|taro|cocoyam|eddo|root (generic term)
+(noun)|taro|taro plant|dalo|Colocasia esculenta|arum (generic term)|aroid (generic term)
+(noun)|taro|taro root|cocoyam|edda|root vegetable (generic term)
+dashiell hammett|1
+(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer (generic term)|author (generic term)
+dashiki|1
+(noun)|daishiki|shirt (generic term)
+dashing|2
+(adj)|gallant|spirited (similar term)
+(adj)|dapper|jaunty|natty|raffish|rakish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+dashing hopes|1
+(noun)|disappointment|failure (generic term)
+dasht-e-kavir|1
+(noun)|Dasht-e-Kavir|Kavir Desert|Great Salt Desert|desert (generic term)
+dasht-e-lut|1
+(noun)|Dasht-e-Lut|Lut Desert|desert (generic term)
+dassie|1
+(noun)|hyrax|coney|cony|das|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+dastard|2
+(adj)|dastardly|cowardly (similar term)|fearful (similar term)
+(noun)|coward (generic term)
+dastardliness|1
+(noun)|cowardice (generic term)|cowardliness (generic term)
+dastardly|1
+(adj)|dastard|cowardly (similar term)|fearful (similar term)
+dasyatidae|1
+(noun)|Dasyatidae|family Dasyatidae|fish family (generic term)
+dasyatis|1
+(noun)|Dasyatis|genus Dasyatis|fish genus (generic term)
+dasyatis centroura|1
+(noun)|roughtail stingray|Dasyatis centroura|stingray (generic term)
+dasymeter|1
+(noun)|densimeter (generic term)|densitometer (generic term)
+dasypodidae|1
+(noun)|Dasypodidae|family Dasypodidae|mammal family (generic term)
+dasyprocta|1
+(noun)|Dasyprocta|genus Dasyprocta|mammal genus (generic term)
+dasyprocta aguti|1
+(noun)|agouti|Dasyprocta aguti|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+dasyproctidae|1
+(noun)|Dasyproctidae|family Dasyproctidae|mammal family (generic term)
+dasypus|1
+(noun)|Dasypus|genus Dasypus|mammal genus (generic term)
+dasypus novemcinctus|1
+(noun)|peba|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo (generic term)
+dasyure|1
+(noun)|dasyurid marsupial (generic term)|dasyurid (generic term)
+dasyurid|1
+(noun)|dasyurid marsupial|marsupial (generic term)|pouched mammal (generic term)
+dasyurid marsupial|1
+(noun)|dasyurid|marsupial (generic term)|pouched mammal (generic term)
+dasyuridae|1
+(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family (generic term)
+dasyurus|1
+(noun)|Dasyurus|genus Dasyurus|mammal genus (generic term)
+dasyurus quoll|1
+(noun)|eastern dasyure|Dasyurus quoll|dasyure (generic term)
+dasyurus viverrinus|1
+(noun)|native cat|Dasyurus viverrinus|dasyure (generic term)
+dat|1
+(noun)|digital audiotape|DAT|audiotape (generic term)
+data|1
+(noun)|information|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+data-based|1
+(adj)|experimental|observational|empirical (similar term)|empiric (similar term)
+data-storage medium|1
+(noun)|storage medium|medium (generic term)
+data communication|1
+(noun)|digital communication|electronic communication (generic term)
+data conversion|1
+(noun)|conversion (generic term)
+data converter|1
+(noun)|converter (generic term)|convertor (generic term)
+data encryption|1
+(noun)|encoding (generic term)|encryption (generic term)
+data file|1
+(noun)|file|record (generic term)
+data format|1
+(noun)|format|formatting|data formatting|information (generic term)|info (generic term)
+data formatting|1
+(noun)|format|formatting|data format|information (generic term)|info (generic term)
+data hierarchy|1
+(noun)|hierarchy (generic term)
+data input device|1
+(noun)|input device|device (generic term)
+data link|1
+(noun)|link|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+data mining|1
+(noun)|data processing (generic term)
+data multiplexer|1
+(noun)|multiplexer (generic term)
+data point|1
+(noun)|datum|information (generic term)
+data processing|1
+(noun)|processing (generic term)
+data processor|1
+(noun)|computer|computing machine|computing device|electronic computer|information processing system|machine (generic term)
+data rate|1
+(noun)|rate (generic term)
+data structure|1
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+data system|1
+(noun)|information system|system (generic term)
+data track|1
+(noun)|track|path (generic term)|route (generic term)|itinerary (generic term)
+database|1
+(noun)|information (generic term)|info (generic term)
+database management|1
+(noun)|management (generic term)|direction (generic term)
+database management system|1
+(noun)|DBMS|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+datable|1
+(adj)|dateable|dated (similar term)|undatable (antonym)
+date|13
+(noun)|day of the month|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(noun)|appointment|engagement|meeting (generic term)|get together (generic term)
+(noun)|particular date|point (generic term)|point in time (generic term)
+(noun)|present (generic term)|nowadays (generic term)
+(noun)|escort|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+(noun)|calendar day (generic term)|civil day (generic term)|calendar month (generic term)|month (generic term)|calendar year (generic term)|civil year (generic term)
+(noun)|edible fruit (generic term)
+(verb)|go out (generic term)
+(verb)|date stamp|date (generic term)|stamp (generic term)
+(verb)|determine (generic term)|set (generic term)
+(verb)|go steady|go out|see|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+date-mark|1
+(verb)|dateline|datemark|date (generic term)
+date-nut bread|1
+(noun)|quick bread (generic term)
+date back|1
+(verb)|go back|date from|originate (generic term)|initiate (generic term)|start (generic term)
+date bar|1
+(noun)|fruit bar (generic term)
+date bread|1
+(noun)|quick bread (generic term)
+date from|1
+(verb)|go back|date back|originate (generic term)|initiate (generic term)|start (generic term)
+date line|1
+(noun)|dateline|International Date Line|meridian (generic term)|line of longitude (generic term)
+date of reference|1
+(noun)|epoch|date (generic term)
+date palm|1
+(noun)|Phoenix dactylifera|feather palm (generic term)
+date plum|1
+(noun)|Diospyros lotus|persimmon (generic term)|persimmon tree (generic term)
+date rape|1
+(noun)|rape (generic term)|violation (generic term)|assault (generic term)|ravishment (generic term)
+date stamp|1
+(verb)|date|date (generic term)|stamp (generic term)
+dateable|1
+(adj)|datable|dated (similar term)|undatable (antonym)
+dated|2
+(adj)|unfashionable (similar term)|unstylish (similar term)
+(adj)|datable (similar term)|dateable (similar term)
+dateless|4
+(adj)|endless|sempiternal|infinite (similar term)
+(adj)|undatable (similar term)
+(adj)|undated|undatable (similar term)
+(adj)|timeless|unaltered (similar term)|unchanged (similar term)
+dateline|3
+(noun)|date line|International Date Line|meridian (generic term)|line of longitude (generic term)
+(noun)|line (generic term)
+(verb)|datemark|date-mark|date (generic term)
+datemark|1
+(verb)|dateline|date-mark|date (generic term)
+dating|1
+(noun)|geological dating|chemical analysis (generic term)|qualitative analysis (generic term)
+dative|1
+(noun)|dative case|oblique (generic term)|oblique case (generic term)
+dative bond|1
+(noun)|coordinate bond|covalent bond (generic term)
+dative case|1
+(noun)|dative|oblique (generic term)|oblique case (generic term)
+datril|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+datum|1
+(noun)|data point|information (generic term)
+datura|1
+(noun)|Datura|genus Datura|asterid dicot genus (generic term)
+datura arborea|1
+(noun)|angel's trumpet|maikoa|Brugmansia arborea|Datura arborea|shrub (generic term)|bush (generic term)
+datura sanguinea|1
+(noun)|red angel's trumpet|Brugmansia sanguinea|Datura sanguinea|shrub (generic term)|bush (generic term)
+datura stramonium|1
+(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple (generic term)
+datura suaveolens|1
+(noun)|angel's trumpet|Brugmansia suaveolens|Datura suaveolens|shrub (generic term)|bush (generic term)
+daub|6
+(noun)|clay (generic term)
+(noun)|smudge|spot|blot|smear|smirch|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|painting (generic term)|picture (generic term)
+(verb)|plaster|coat (generic term)|surface (generic term)
+(verb)|put on (generic term)|apply (generic term)
+(verb)|smear|cover (generic term)
+daubentonia|1
+(noun)|Daubentonia|genus Daubentonia|mammal genus (generic term)
+daubentonia madagascariensis|1
+(noun)|aye-aye|Daubentonia madagascariensis|lemur (generic term)
+daubentoniidae|1
+(noun)|Daubentoniidae|family Daubentoniidae|mammal family (generic term)|Lemuroidea (generic term)|suborder Lemuroidea (generic term)
+dauber|1
+(noun)|painter (generic term)
+daubing|1
+(noun)|plastering|application (generic term)|coating (generic term)|covering (generic term)
+daucus|1
+(noun)|Daucus|genus Daucus|rosid dicot genus (generic term)
+daucus carota|1
+(noun)|wild carrot|Queen Anne's lace|Daucus carota|wildflower (generic term)|wild flower (generic term)
+daucus carota sativa|1
+(noun)|carrot|cultivated carrot|Daucus carota sativa|herb (generic term)|herbaceous plant (generic term)
+daugavpils|1
+(noun)|Daugavpils|city (generic term)|metropolis (generic term)|urban center (generic term)
+daughter|1
+(noun)|girl|female offspring (generic term)|boy (antonym)|son (antonym)
+daughter-in-law|1
+(noun)|in-law (generic term)|relative-in-law (generic term)
+daughter cell|1
+(noun)|cell (generic term)
+daughterly|1
+(adj)|filial (similar term)
+daumier|1
+(noun)|Daumier|Honore Daumier|painter (generic term)|lithographer (generic term)
+daunt|1
+(verb)|dash|scare off|pall|frighten off|scare away|frighten away|scare|intimidate (generic term)|restrain (generic term)
+daunted|1
+(adj)|bothered|fazed|discomposed (similar term)
+daunting|1
+(adj)|intimidating|discouraging (similar term)
+dauntless|1
+(adj)|audacious|brave|fearless|intrepid|unfearing|bold (similar term)
+dauntlessly|1
+(adv)|fearlessly|intrepidly|fearfully (antonym)
+dauntlessness|1
+(noun)|intrepidity|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+dauphin|1
+(noun)|prince (generic term)
+davalia bullata|1
+(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia (generic term)
+davalia bullata mariesii|1
+(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia (generic term)
+davallia|1
+(noun)|fern (generic term)
+davallia canariensis|1
+(noun)|Canary Island hare's foot fern|Davallia canariensis|hare's-foot fern (generic term)
+davallia mariesii|1
+(noun)|squirrel's-foot fern|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia (generic term)
+davallia pyxidata|1
+(noun)|Australian hare's foot|Davallia pyxidata|hare's-foot fern (generic term)
+davalliaceae|1
+(noun)|Davalliaceae|family Davalliaceae|fern family (generic term)
+davenport|3
+(noun)|Davenport|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|desk (generic term)
+(noun)|convertible (generic term)|sofa bed (generic term)
+david|3
+(noun)|David|Saint David|St. David|patron saint (generic term)
+(noun)|David|Jacques Louis David|painter (generic term)
+(noun)|David|king (generic term)|male monarch (generic term)|Rex (generic term)
+david alfaro siqueiros|1
+(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter (generic term)
+david barnard steinman|1
+(noun)|Steinman|David Barnard Steinman|civil engineer (generic term)
+david ben gurion|1
+(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman (generic term)|solon (generic term)|national leader (generic term)
+david bruce|1
+(noun)|Bruce|David Bruce|Sir David Bruce|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|bacteriologist (generic term)
+david bushnell|1
+(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+david crockett|1
+(noun)|Crockett|Davy Crockett|David Crockett|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+david garrick|1
+(noun)|Garrick|David Garrick|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+david glasgow farragut|1
+(noun)|Farragut|David Glasgow Farragut|naval officer (generic term)
+david grun|1
+(noun)|Ben Gurion|David Ben Gurion|David Grun|statesman (generic term)|solon (generic term)|national leader (generic term)
+david hartley|1
+(noun)|Hartley|David Hartley|philosopher (generic term)
+david herbert lawrence|1
+(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer (generic term)|author (generic term)
+david hilbert|1
+(noun)|Hilbert|David Hilbert|mathematician (generic term)
+david hubel|1
+(noun)|Hubel|David Hubel|neuroscientist (generic term)
+david hume|1
+(noun)|Hume|David Hume|philosopher (generic term)
+david john moore cornwell|1
+(noun)|le Carre|John le Carre|David John Moore Cornwell|writer (generic term)|author (generic term)
+david lewelyn wark griffith|1
+(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+david livingstone|1
+(noun)|Livingstone|David Livingstone|missionary (generic term)|explorer (generic term)|adventurer (generic term)
+david low|1
+(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist (generic term)
+david mamet|1
+(noun)|Mamet|David Mamet|dramatist (generic term)|playwright (generic term)
+david o. selznick|1
+(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+david oliver selznick|1
+(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+david ricardo|1
+(noun)|Ricardo|David Ricardo|economist (generic term)|economic expert (generic term)
+david riesman|1
+(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist (generic term)
+david riesman jr.|1
+(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist (generic term)
+david rittenhouse|1
+(noun)|Rittenhouse|David Rittenhouse|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+david roland smith|1
+(noun)|Smith|David Smith|David Roland Smith|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+david sarnoff|1
+(noun)|Sarnoff|David Sarnoff|businessman (generic term)|man of affairs (generic term)
+david siqueiros|1
+(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter (generic term)
+david smith|1
+(noun)|Smith|David Smith|David Roland Smith|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+davidson's penstemon|1
+(noun)|Davidson's penstemon|Penstemon davidsonii|wildflower (generic term)|wild flower (generic term)
+daviesia|1
+(noun)|Daviesia|genus Daviesia|rosid dicot genus (generic term)
+davis|6
+(noun)|Davys|John Davys|Davis|John Davis|navigator (generic term)
+(noun)|Davis|Stuart Davis|painter (generic term)
+(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician (generic term)|jazzman (generic term)
+(noun)|Davis|Jefferson Davis|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player (generic term)
+(noun)|Davis|Bette Davis|actress (generic term)
+davis' birthday|1
+(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day (generic term)
+davis cup|1
+(noun)|Davis Cup|cup (generic term)|loving cup (generic term)
+davit|1
+(noun)|crane (generic term)
+davy|1
+(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist (generic term)
+davy's gray|1
+(noun)|iron blue|steel grey|steel gray|Davy's grey|Davy's gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+davy's grey|1
+(noun)|iron blue|steel grey|steel gray|Davy's grey|Davy's gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+davy crockett|1
+(noun)|Crockett|Davy Crockett|David Crockett|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+davy jones|1
+(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+davy jones's locker|1
+(noun)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+davy lamp|1
+(noun)|safety lamp|Davy lamp|oil lamp (generic term)|kerosene lamp (generic term)|kerosine lamp (generic term)
+davys|1
+(noun)|Davys|John Davys|Davis|John Davis|navigator (generic term)
+daw|1
+(noun)|jackdaw|Corvus monedula|corvine bird (generic term)
+dawah|1
+(noun)|da'wah|mission (generic term)|missionary work (generic term)
+dawdle|3
+(verb)|linger|move (generic term)|linger over (related term)|rush (antonym)
+(verb)|dally|act (generic term)|behave (generic term)|do (generic term)
+(verb)|lag|fall back|fall behind|follow (generic term)
+dawdler|1
+(noun)|drone|laggard|lagger|trailer|poke|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+dawdling|1
+(noun)|dalliance|trifling|delay (generic term)|holdup (generic term)
+dawes|1
+(noun)|Dawes|William Dawes|American Revolutionary leader (generic term)
+dawn|6
+(noun)|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+(noun)|morning|start (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|click|get through|come home|get across|sink in|penetrate|fall into place
+(verb)|begin (generic term)|start (generic term)
+(verb)|change (generic term)
+dawn horse|1
+(noun)|eohippus|horse (generic term)|Equus caballus (generic term)
+dawn redwood|1
+(noun)|metasequoia|Metasequoia glyptostrodoides|conifer (generic term)|coniferous tree (generic term)
+dawning|1
+(noun)|dawn|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+dawson|1
+(noun)|Dawson|town (generic term)
+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 (generic term)
+day|10
+(noun)|twenty-four hours|twenty-four hour period|24-hour interval|solar day|mean solar day|time unit (generic term)|unit of time (generic term)
+(noun)|time (generic term)
+(noun)|daytime|daylight|time period (generic term)|period of time (generic term)|period (generic term)|night (antonym)
+(noun)|calendar day (generic term)|civil day (generic term)
+(noun)|work time (generic term)
+(noun)|era (generic term)|epoch (generic term)
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|sidereal day|time unit (generic term)|unit of time (generic term)|sidereal time (generic term)
+(noun)|Day|Clarence Day|Clarence Shepard Day Jr.|writer (generic term)|author (generic term)
+day-after-day|1
+(adj)|daily|day-to-day|every day|regular (similar term)
+day-and-night|1
+(adj)|around-the-clock|nonstop|round-the-clock|continuous (similar term)|uninterrupted (similar term)
+day-old|1
+(adj)|stale (similar term)
+day-to-day|1
+(adj)|daily|day-after-day|every day|regular (similar term)
+day after day|1
+(adv)|day in day out
+day bed|1
+(noun)|studio couch|convertible (generic term)|sofa bed (generic term)
+day blindness|1
+(noun)|hemeralopia|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+day boarder|1
+(noun)|schoolchild (generic term)|school-age child (generic term)|pupil (generic term)
+day book|1
+(noun)|blotter|police blotter|rap sheet|charge sheet|written record (generic term)|written account (generic term)
+day by day|1
+(adv)|daily
+day camp|1
+(noun)|camp (generic term)|summer camp (generic term)
+day care|1
+(noun)|daycare|childcare (generic term)|child care (generic term)
+day care center|1
+(noun)|day nursery|nursery (generic term)|baby's room (generic term)
+day game|1
+(noun)|outdoor game (generic term)|night game (antonym)
+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 (generic term)|bush (generic term)
+day laborer|1
+(noun)|day labourer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+day labourer|1
+(noun)|day laborer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+day lily|2
+(noun)|plantain lily|herb (generic term)|herbaceous plant (generic term)
+(noun)|daylily|liliaceous plant (generic term)
+day nursery|1
+(noun)|day care center|nursery (generic term)|baby's room (generic term)
+day of atonement|1
+(noun)|Yom Kippur|Day of Atonement|High Holy Day (generic term)|High Holiday (generic term)|major fast day (generic term)
+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 (generic term)
+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 (generic term)
+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 (generic term)
+(noun)|doom|doomsday|end of the world|destiny (generic term)|fate (generic term)
+day of remembrance|1
+(noun)|anniversary|day (generic term)
+day of rest|1
+(noun)|rest day|day of the week (generic term)|workday (antonym)
+day of the month|1
+(noun)|date|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+day of the week|1
+(noun)|calendar day (generic term)|civil day (generic term)
+day off|1
+(noun)|time off (generic term)
+day return|1
+(noun)|round-trip ticket (generic term)|return ticket (generic term)
+day school|3
+(noun)|private school (generic term)|boarding school (antonym)
+(noun)|school (generic term)|night school (antonym)
+(noun)|school (generic term)|schoolhouse (generic term)
+day shift|2
+(noun)|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|day watch|shift (generic term)
+day watch|1
+(noun)|day shift|shift (generic term)
+dayan|1
+(noun)|Dayan|Moshe Dayan|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+daybed|2
+(noun)|divan bed|sofa (generic term)|couch (generic term)|lounge (generic term)
+(noun)|chaise longue|chaise|chair (generic term)
+daybook|2
+(noun)|journal|ledger (generic term)|leger (generic term)|account book (generic term)|book of account (generic term)|book (generic term)
+(noun)|ledger|journal (generic term)
+dayboy|1
+(noun)|day boarder (generic term)
+daybreak|1
+(noun)|dawn|dawning|morning|aurora|first light|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+daycare|1
+(noun)|day care|childcare (generic term)|child care (generic term)
+daydream|3
+(noun)|reverie|revery|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+(verb)|dream|woolgather|stargaze|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)|dream up (related term)
+(verb)|moon|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+daydreamer|1
+(noun)|woolgatherer|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+daydreaming|1
+(noun)|reverie|revery|daydream|oneirism|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+dayflower|1
+(noun)|spiderwort|herb (generic term)|herbaceous plant (generic term)
+dayfly|1
+(noun)|mayfly|shadfly|ephemerid (generic term)|ephemeropteran (generic term)
+daygirl|1
+(noun)|day boarder (generic term)
+daylight|2
+(noun)|day|daytime|time period (generic term)|period of time (generic term)|period (generic term)|night (antonym)
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+daylight-saving time|1
+(noun)|daylight-savings time|daylight saving|daylight savings|time (generic term)
+daylight-savings time|1
+(noun)|daylight-saving time|daylight saving|daylight savings|time (generic term)
+daylight saving|1
+(noun)|daylight-saving time|daylight-savings time|daylight savings|time (generic term)
+daylight savings|1
+(noun)|daylight-saving time|daylight-savings time|daylight saving|time (generic term)
+daylight vision|1
+(noun)|photopic vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+daylily|1
+(noun)|day lily|liliaceous plant (generic term)
+daylong|2
+(adj)|long (similar term)
+(adv)|all day long
+daypro|1
+(noun)|oxaprozin|Daypro|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+days|1
+(noun)|years|life (generic term)
+dayspring|1
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+daystar|1
+(noun)|morning star|Phosphorus|Lucifer|planet (generic term)|major planet (generic term)
+daytime|1
+(noun)|day|daylight|time period (generic term)|period of time (generic term)|period (generic term)|night (antonym)
+dayton|1
+(noun)|Dayton|city (generic term)|metropolis (generic term)|urban center (generic term)
+dayton ax|1
+(noun)|common ax|common axe|Dayton ax|Dayton axe|ax (generic term)|axe (generic term)
+dayton axe|1
+(noun)|common ax|common axe|Dayton ax|Dayton axe|ax (generic term)|axe (generic term)
+daytona beach|1
+(noun)|Daytona Beach|town (generic term)
+daze|4
+(noun)|shock|stupor|stupefaction (generic term)
+(noun)|fog|haze|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(verb)|dazzle|bedazzle|blind (generic term)
+(verb)|stun|bedaze|desensitize (generic term)|desensitise (generic term)
+dazed|2
+(adj)|stunned|stupefied|stupid|confused (similar term)
+(adj)|foggy|groggy|logy|stuporous|lethargic (similar term)|unergetic (similar term)
+dazedly|1
+(adv)|torpidly
+dazzle|3
+(noun)|brightness (generic term)
+(verb)|bedazzle|daze|blind (generic term)
+(verb)|amaze (generic term)|astonish (generic term)|astound (generic term)
+dazzled|2
+(adj)|blind (similar term)|unsighted (similar term)
+(adj)|confused (similar term)
+dazzling|2
+(adj)|eye-popping|fulgurant|fulgurous|impressive (similar term)
+(adj)|blazing|blinding|fulgent|glaring|glary|bright (similar term)
+db|2
+(noun)|dubnium|Db|hahnium|element 105|atomic number 105|chemical element (generic term)|element (generic term)
+(noun)|decibel|dB|sound unit (generic term)
+dbms|1
+(noun)|database management system|DBMS|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+dc|2
+(noun)|District of Columbia|D.C.|DC|federal district (generic term)
+(noun)|direct current|DC|electricity (generic term)|electrical energy (generic term)|alternating current (antonym)
+dccp|1
+(noun)|United Nations Office for Drug Control and Crime Prevention|DCCP|United Nations agency (generic term)|UN agency (generic term)
+dci|1
+(noun)|Director of Central Intelligence|DCI|administrator (generic term)|executive (generic term)
+dd|1
+(noun)|Doctor of Divinity|DD|doctor's degree (generic term)|doctorate (generic term)
+dds|1
+(noun)|Doctor of Dental Surgery|DDS|doctor's degree (generic term)|doctorate (generic term)
+ddt|1
+(noun)|dichlorodiphenyltrichloroethane|DDT|insecticide (generic term)|insect powder (generic term)|pollutant (generic term)
+de|1
+(noun)|Delaware|Diamond State|First State|DE|American state (generic term)
+de-access|1
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+de-aerate|1
+(verb)|deaerate|get rid of (generic term)|remove (generic term)
+de-emphasise|1
+(verb)|de-emphasize|destress|change (generic term)|alter (generic term)|modify (generic term)
+de-emphasize|1
+(verb)|de-emphasise|destress|change (generic term)|alter (generic term)|modify (generic term)
+de-energise|1
+(verb)|de-energize|weaken (generic term)|energise (antonym)|energize (antonym)
+de-energize|1
+(verb)|de-energise|weaken (generic term)|energise (antonym)|energize (antonym)
+de-escalate|2
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|weaken|step down|decrease (generic term)|lessen (generic term)|minify (generic term)|escalate (antonym)
+de-escalation|1
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+de-ice|1
+(verb)|defrost|deice|dissolve (generic term)|thaw (generic term)|unfreeze (generic term)|unthaw (generic term)|dethaw (generic term)|melt (generic term)
+de-iodinase|1
+(noun)|enzyme (generic term)
+de-iodinate|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|iodinate (antonym)
+de-iodinating|1
+(adj)|iodinating (antonym)
+de-iodination|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+de-ionate|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|ionate (antonym)
+de-nazification|1
+(noun)|denazification|de-Nazification|social process (generic term)
+de-stalinisation|1
+(noun)|destalinization|de-Stalinization|destalinisation|de-Stalinisation|social process (generic term)
+de-stalinization|1
+(noun)|destalinization|de-Stalinization|destalinisation|de-Stalinisation|social process (generic term)
+de bakey|1
+(noun)|De Bakey|Michael Ellis De Bakey|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+de broglie|1
+(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist (generic term)
+de facto|1
+(adj)|actual|factual|de jure (antonym)
+de facto segregation|1
+(noun)|segregation (generic term)|separatism (generic term)
+de forest|1
+(noun)|De Forest|Lee De Forest|Father of Radio|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+de gaulle|1
+(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+de jure|2
+(adj)|de facto (antonym)
+(adv)|legally|lawfully|unlawfully (antonym)
+de jure segregation|1
+(noun)|segregation (generic term)|separatism (generic term)
+de kooning|1
+(noun)|de Kooning|Willem de Kooning|painter (generic term)
+de l'orme|1
+(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect (generic term)|designer (generic term)
+de la mare|1
+(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet (generic term)
+de luxe|1
+(adj)|deluxe|luxe|elegant (similar term)
+de mille|1
+(noun)|de Mille|Agnes de Mille|Agnes George de Mille|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+de niro|1
+(noun)|De Niro|Robert De Niro|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+de quincey|1
+(noun)|De Quincey|Thomas De Quincey|writer (generic term)|author (generic term)
+de rigueur|1
+(adj)|obligatory (similar term)
+de sade|1
+(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer (generic term)|author (generic term)
+de saussure|1
+(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist (generic term)|polyglot (generic term)
+de sica|1
+(noun)|De Sica|Vittorio De Sica|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+de spinoza|1
+(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher (generic term)
+de valera|1
+(noun)|de Valera|Eamon de Valera|statesman (generic term)|solon (generic term)|national leader (generic term)
+de vries|1
+(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+dea|1
+(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency (generic term)
+deaccession|1
+(verb)|sell (generic term)
+deacon|2
+(noun)|Protestant deacon|church officer (generic term)
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+deaconess|1
+(noun)|deacon (generic term)|Protestant deacon (generic term)
+deactivate|2
+(verb)|discharge (generic term)|muster out (generic term)
+(verb)|inactivate|change (generic term)|alter (generic term)|modify (generic term)|activate (antonym)
+deactivation|2
+(noun)|inactivation|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+(noun)|defusing|termination (generic term)|ending (generic term)|conclusion (generic term)|activation (antonym)
+dead|25
+(adj)|asleep (similar term)|at peace (similar term)|at rest (similar term)|deceased (similar term)|departed (similar term)|gone (similar term)|assassinated (similar term)|bloodless (similar term)|exsanguine (similar term)|exsanguinous (similar term)|brain dead (similar term)|breathless (similar term)|inanimate (similar term)|pulseless (similar term)|cold (similar term)|d.o.a. (similar term)|deathlike (similar term)|deathly (similar term)|defunct (similar term)|doomed (similar term)|executed (similar term)|fallen (similar term)|late (similar term)|lifeless (similar term)|exanimate (similar term)|murdered (similar term)|nonviable (similar term)|slain (similar term)|stillborn (similar term)|stone-dead (similar term)|alive (antonym)
+(adj)|barren (similar term)|extinct (similar term)|out (similar term)|lifeless (similar term)|out of play (similar term)|extinct (related term)|live (antonym)
+(adj)|all in|beat|bushed|tired (similar term)
+(adj)|precise (similar term)
+(adj)|extinct (similar term)
+(adj)|utter|absolute (similar term)
+(adj)|inanimate|nonliving|non-living|nonconscious (similar term)|animate (antonym)
+(adj)|numb|insensitive (similar term)
+(adj)|deadened|insensitive (similar term)
+(adj)|unreverberant (similar term)|nonresonant (similar term)
+(adj)|idle|unprofitable (similar term)
+(adj)|stagnant|standing (similar term)
+(adj)|malfunctioning (similar term)|nonfunctional (similar term)
+(adj)|extinct (similar term)|nonextant (similar term)
+(adj)|inelastic (similar term)
+(adj)|defunct|inoperative (similar term)
+(adj)|noncurrent (similar term)
+(adj)|complete (similar term)
+(adj)|drained|uncharged (similar term)
+(adj)|lifeless|unanimated (similar term)
+(adj)|inactive (similar term)
+(noun)|people (generic term)|living (antonym)
+(noun)|time (generic term)
+(adv)|abruptly|suddenly|short
+(adv)|absolutely|perfectly|utterly
+dead-air space|1
+(noun)|area (generic term)
+dead-end|1
+(adj)|inactive (similar term)
+dead-end street|1
+(noun)|blind alley|cul de sac|impasse|thoroughfare (generic term)
+dead-man's-fingers|1
+(noun)|dead-men's-fingers|Xylaria polymorpha|fungus (generic term)
+dead-man's float|1
+(noun)|prone float|floating (generic term)|natation (generic term)
+dead-men's-fingers|1
+(noun)|dead-man's-fingers|Xylaria polymorpha|fungus (generic term)
+dead-on|1
+(adj)|accurate (similar term)
+dead air|1
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+dead axle|1
+(noun)|axle (generic term)
+dead body|1
+(noun)|body|natural object (generic term)
+dead center|1
+(noun)|dead centre|position (generic term)|spatial relation (generic term)
+dead centre|1
+(noun)|dead center|position (generic term)|spatial relation (generic term)
+dead drop|1
+(noun)|drop (generic term)
+dead duck|1
+(noun)|failure (generic term)
+dead end|2
+(noun)|cul|cul de sac|passage (generic term)
+(noun)|deadlock|impasse|stalemate|standstill|situation (generic term)
+dead hand|2
+(noun)|mortmain|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|dead hand of the past|mortmain|influence (generic term)
+dead hand of the past|1
+(noun)|dead hand|mortmain|influence (generic term)
+dead heat|1
+(noun)|draw (generic term)|standoff (generic term)|tie (generic term)
+dead language|1
+(noun)|language (generic term)|linguistic communication (generic term)
+dead letter|2
+(noun)|non-issue|state (generic term)
+(noun)|dead mail|letter (generic term)|missive (generic term)
+dead load|1
+(noun)|load (generic term)|loading (generic term)|burden (generic term)
+dead mail|1
+(noun)|dead letter|letter (generic term)|missive (generic term)
+dead march|1
+(noun)|funeral march|processional march (generic term)|recessional march (generic term)
+dead metaphor|1
+(noun)|frozen metaphor|metaphor (generic term)
+dead nettle|4
+(noun)|hedge nettle|Stachys sylvatica|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|hemp nettle|Galeopsis tetrahit|herb (generic term)|herbaceous plant (generic term)
+(noun)|richweed|clearweed|Pilea pumilla|nettle (generic term)
+dead on target|1
+(adj)|true|accurate (similar term)
+dead person|1
+(noun)|dead soul|deceased person|deceased|decedent|departed|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dead reckoning|2
+(noun)|guess|guesswork|guessing|shot|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(noun)|navigation (generic term)|pilotage (generic term)|piloting (generic term)
+dead ringer|1
+(noun)|ringer|clone|double (generic term)|image (generic term)|look-alike (generic term)
+dead room|1
+(noun)|morgue|mortuary|building (generic term)|edifice (generic term)
+dead sea|1
+(noun)|Dead Sea|lake (generic term)
+dead sea scrolls|1
+(noun)|Dead Sea scrolls|scroll (generic term)|roll (generic term)
+dead set|1
+(adj)|bent|bent on|intent on|out to|resolute (similar term)
+dead soul|1
+(noun)|dead person|deceased person|deceased|decedent|departed|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dead weight|2
+(noun)|burden (generic term)|load (generic term)|encumbrance (generic term)|incumbrance (generic term)|onus (generic term)
+(noun)|weight (generic term)
+deadbeat|1
+(noun)|defaulter|debtor (generic term)|debitor (generic term)
+deadbeat dad|1
+(noun)|defaulter (generic term)|deadbeat (generic term)
+deadbolt|1
+(noun)|bolt|bar (generic term)
+deaden|7
+(verb)|dampen|damp|dampen (generic term)|damp (generic term)|soften (generic term)|weaken (generic term)|break (generic term)
+(verb)|girdle|incise (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|retard (generic term)
+(verb)|change (generic term)
+(verb)|blunt|change (generic term)|alter (generic term)|modify (generic term)|enliven (antonym)
+(verb)|convert (generic term)
+deadened|2
+(adj)|dead|insensitive (similar term)
+(adj)|dull (similar term)
+deadening|2
+(adj)|boring|dull|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting (similar term)
+(noun)|stultification|constipation|impairment|degradation (generic term)|debasement (generic term)
+deadeye|2
+(noun)|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+(noun)|disk (generic term)|disc (generic term)
+deadhead|2
+(noun)|nonworker (generic term)
+(noun)|public transport (generic term)
+deadlight|1
+(noun)|shutter (generic term)
+deadline|1
+(noun)|point (generic term)|point in time (generic term)
+deadliness|1
+(noun)|lethality|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+deadlock|1
+(noun)|dead end|impasse|stalemate|standstill|situation (generic term)
+deadlocked|1
+(adj)|stalemated|obstructed (similar term)
+deadly|8
+(adj)|deathly|mortal|fatal (similar term)
+(adj)|lethal|fatal (similar term)
+(adj)|venomous|virulent|toxic (similar term)
+(adj)|mortal|unpardonable (similar term)
+(adj)|baneful|pernicious|pestilent|noxious (similar term)|harmful (similar term)
+(adj)|virulent (similar term)
+(adv)|lifelessly
+(adv)|madly|insanely|deucedly|devilishly
+deadly nightshade|2
+(noun)|belladonna|belladonna plant|Atropa belladonna|herb (generic term)|herbaceous plant (generic term)
+(noun)|bittersweet|bittersweet nightshade|climbing nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+deadly sin|1
+(noun)|mortal sin|sin (generic term)|sinning (generic term)|venial sin (antonym)
+deadness|3
+(noun)|unresponsiveness|quality (generic term)|responsiveness (antonym)
+(noun)|inelasticity (generic term)
+(noun)|inanimateness (generic term)|lifelessness (generic term)
+deadpan|1
+(adj)|expressionless|impassive|poker-faced|unexpressive|uncommunicative (similar term)|incommunicative (similar term)
+deadwood|2
+(noun)|branch (generic term)
+(noun)|fifth wheel|redundancy (generic term)|redundance (generic term)
+deae cellulose|1
+(noun)|diethylaminoethyl cellulose|DEAE cellulose|cellulose (generic term)
+deaerate|1
+(verb)|de-aerate|get rid of (generic term)|remove (generic term)
+deaf|4
+(adj)|deaf-and-dumb (similar term)|deaf-mute (similar term)|deafened (similar term)|hard-of-hearing (similar term)|hearing-impaired (similar term)|profoundly deaf (similar term)|stone-deaf (similar term)|deaf as a post (similar term)|unhearing (similar term)|tone-deaf (similar term)|hearing (antonym)
+(adj)|indifferent|heedless (similar term)|thoughtless (similar term)|unheeding (similar term)
+(noun)|people (generic term)
+(verb)|deafen|desensitize (generic term)|desensitise (generic term)
+deaf-aid|1
+(noun)|hearing aid|electronic device (generic term)
+deaf-and-dumb|1
+(adj)|deaf-mute|deaf (similar term)
+deaf-and-dumb person|1
+(noun)|mute|deaf-mute|deaf person (generic term)
+deaf-mute|2
+(adj)|deaf-and-dumb|deaf (similar term)
+(noun)|mute|deaf-and-dumb person|deaf person (generic term)
+deaf-muteness|1
+(noun)|deaf-mutism|deafness (generic term)|hearing loss (generic term)|mutism (generic term)|muteness (generic term)
+deaf-mutism|1
+(noun)|deaf-muteness|deafness (generic term)|hearing loss (generic term)|mutism (generic term)|muteness (generic term)
+deaf as a post|1
+(adj)|profoundly deaf|stone-deaf|unhearing|deaf (similar term)
+deaf person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+deafen|2
+(verb)|deaf|desensitize (generic term)|desensitise (generic term)
+(verb)|dampen (generic term)|damp (generic term)|soften (generic term)|weaken (generic term)|break (generic term)
+deafened|1
+(adj)|deaf (similar term)
+deafening|1
+(adj)|earsplitting|roaring|thunderous|thundery|loud (similar term)
+deafness|1
+(noun)|hearing loss|hearing impairment (generic term)|hearing disorder (generic term)
+deal|22
+(noun)|trade|business deal|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(noun)|bargain|agreement (generic term)|understanding (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|board (generic term)|plank (generic term)
+(noun)|softwood|wood (generic term)
+(noun)|hand|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|distribution (generic term)
+(noun)|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+(verb)|cover|treat|handle|plow|address|broach (generic term)|initiate (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|consider|take|look at|think about (generic term)
+(verb)|cope|get by|make out|make do|contend|grapple|manage|act (generic term)|move (generic term)
+(verb)|distribute|administer|mete out|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+(verb)|sell|trade|transact (generic term)|deal out (related term)|trade (related term)
+(verb)|manage|care|handle|control (generic term)|command (generic term)
+(verb)|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+(verb)|conduct|carry on|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|share|divvy up|portion out|apportion|distribute (generic term)|give out (generic term)|hand out (generic term)|pass out (generic term)
+(verb)|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|deal (generic term)|sell (generic term)|trade (generic term)
+deal out|1
+(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|dish out|allot|dole out|give (generic term)
+dealer|5
+(noun)|trader|bargainer|monger|merchant (generic term)|merchandiser (generic term)
+(noun)|firm (generic term)|house (generic term)|business firm (generic term)
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|principal|financier (generic term)|moneyman (generic term)
+(noun)|card player (generic term)
+dealership|1
+(noun)|franchise|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+dealfish|1
+(noun)|Trachipterus arcticus|ribbonfish (generic term)
+dealignment|1
+(noun)|process (generic term)|physical process (generic term)
+dealing|2
+(noun)|treatment (generic term)|handling (generic term)
+(noun)|transaction|dealings|group action (generic term)
+dealings|3
+(noun)|traffic|interchange (generic term)|reciprocation (generic term)|give-and-take (generic term)
+(noun)|relations|social relation (generic term)
+(noun)|transaction|dealing|group action (generic term)
+dealt out|1
+(adj)|apportioned|doled out|meted out|parceled out|distributed (similar term)
+deaminate|1
+(verb)|deaminize|change (generic term)|alter (generic term)|modify (generic term)
+deamination|1
+(noun)|deaminization|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+deaminization|1
+(noun)|deamination|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+deaminize|1
+(verb)|deaminate|change (generic term)|alter (generic term)|modify (generic term)
+dean|4
+(noun)|academic administrator (generic term)
+(noun)|Dean|James Dean|James Byron Dean|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|doyen|elder (generic term)|senior (generic term)
+(noun)|cardinal (generic term)
+dean acheson|1
+(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman (generic term)|solon (generic term)|national leader (generic term)
+dean gooderham acheson|1
+(noun)|Acheson|Dean Acheson|Dean Gooderham Acheson|statesman (generic term)|solon (generic term)|national leader (generic term)
+dean martin|1
+(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+dean swift|1
+(noun)|Swift|Jonathan Swift|Dean Swift|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+deanery|2
+(noun)|residence (generic term)
+(noun)|deanship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+deanship|1
+(noun)|deanery|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+dear|8
+(adj)|beloved|darling|loved (similar term)
+(adj)|good|near|close (similar term)
+(adj)|devout|earnest|heartfelt|sincere (similar term)
+(adj)|costly|high-priced|pricey|pricy|expensive (similar term)
+(noun)|beloved|dearest|loved one|honey|love|lover (generic term)
+(noun)|lamb|innocent (generic term)|inexperienced person (generic term)
+(adv)|dearly|affectionately
+(adv)|dearly
+dearest|1
+(noun)|beloved|dear|loved one|honey|love|lover (generic term)
+dearie|1
+(noun)|darling|favorite|favourite|pet|deary|ducky|lover (generic term)
+dearly|3
+(adv)|in a heartfelt way
+(adv)|dear
+(adv)|affectionately|dear
+dearly-won|1
+(adj)|costly|expensive (similar term)
+dearness|1
+(noun)|costliness|preciousness|expensiveness (generic term)
+dearth|2
+(noun)|famine|shortage|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|paucity|scarcity (generic term)|scarceness (generic term)
+deary|1
+(noun)|darling|favorite|favourite|pet|dearie|ducky|lover (generic term)
+death|8
+(noun)|decease|expiry|change (generic term)|alteration (generic term)|modification (generic term)|birth (antonym)
+(noun)|organic phenomenon (generic term)
+(noun)|last|end (generic term)|ending (generic term)
+(noun)|Death|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|state (generic term)
+(noun)|dying|demise|end (generic term)|ending (generic term)|birth (antonym)
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|end|destruction|state (generic term)
+death's-head moth|1
+(noun)|Acherontia atropos|hawkmoth (generic term)|hawk moth (generic term)|sphingid (generic term)|sphinx moth (generic term)|hummingbird moth (generic term)
+death's head|1
+(noun)|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+death-roll|1
+(noun)|roll (generic term)|roster (generic term)
+death adder|1
+(noun)|Acanthophis antarcticus|elapid (generic term)|elapid snake (generic term)
+death angel|1
+(noun)|death cap|death cup|destroying angel|Amanita phalloides|agaric (generic term)
+death bell|1
+(noun)|death knell|bell (generic term)
+death benefit|1
+(noun)|benefit (generic term)
+death camas|1
+(noun)|zigadene|liliaceous plant (generic term)
+death camp|1
+(noun)|concentration camp (generic term)|stockade (generic term)
+death cap|1
+(noun)|death cup|death angel|destroying angel|Amanita phalloides|agaric (generic term)
+death chair|1
+(noun)|electric chair|chair|hot seat|instrument of execution (generic term)
+death chamber|1
+(noun)|gas chamber|instrument of execution (generic term)
+death cup|1
+(noun)|death cap|death angel|destroying angel|Amanita phalloides|agaric (generic term)
+death duty|1
+(noun)|inheritance tax|estate tax|death tax|transfer tax (generic term)
+death house|1
+(noun)|death row|cellblock (generic term)|ward (generic term)
+death instinct|1
+(noun)|death wish|Thanatos|urge (generic term)|impulse (generic term)
+death knell|2
+(noun)|omen (generic term)|portent (generic term)|presage (generic term)|prognostic (generic term)|prognostication (generic term)|prodigy (generic term)
+(noun)|death bell|bell (generic term)
+death mask|1
+(noun)|cast (generic term)|casting (generic term)
+death penalty|1
+(noun)|execution|executing|capital punishment|corporal punishment (generic term)
+death rate|1
+(noun)|deathrate|mortality|mortality rate|fatality rate|rate (generic term)
+death row|1
+(noun)|death house|cellblock (generic term)|ward (generic term)
+death seat|1
+(noun)|car seat (generic term)
+death squad|1
+(noun)|hit squad (generic term)
+death tax|1
+(noun)|inheritance tax|estate tax|death duty|transfer tax (generic term)
+death toll|1
+(noun)|price (generic term)|cost (generic term)|toll (generic term)
+death valley|1
+(noun)|Death Valley|desert (generic term)
+death warrant|1
+(noun)|warrant (generic term)
+death wish|1
+(noun)|death instinct|Thanatos|urge (generic term)|impulse (generic term)
+deathbed|2
+(noun)|time of life (generic term)
+(noun)|bed (generic term)
+deathblow|1
+(noun)|coup de grace|killing (generic term)|kill (generic term)|putting to death (generic term)
+deathless|1
+(adj)|undying|immortal (similar term)
+deathlike|1
+(adj)|deathly|dead (similar term)
+deathly|2
+(adj)|deathlike|dead (similar term)
+(adj)|deadly|mortal|fatal (similar term)
+deathrate|1
+(noun)|death rate|mortality|mortality rate|fatality rate|rate (generic term)
+deathtrap|1
+(noun)|structure (generic term)|construction (generic term)
+deathwatch|2
+(noun)|booklouse|book louse|Liposcelis divinatorius|psocopterous insect (generic term)
+(noun)|deathwatch beetle|Xestobium rufovillosum|beetle (generic term)
+deathwatch beetle|1
+(noun)|deathwatch|Xestobium rufovillosum|beetle (generic term)
+deb|1
+(noun)|debutante|woman (generic term)|adult female (generic term)
+debacle|3
+(noun)|fiasco|collapse (generic term)
+(noun)|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+(noun)|thrashing|walloping|drubbing|slaughter|trouncing|whipping|defeat (generic term)|licking (generic term)
+debar|3
+(verb)|suspend|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|obviate|deflect|avert|head off|stave off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|bar|exclude|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)
+debark|1
+(verb)|disembark|set down|land (generic term)|set down (generic term)|embark (antonym)
+debarkation|1
+(noun)|disembarkation|disembarkment|landing (generic term)|embarkation (antonym)
+debarment|2
+(noun)|exclusion (generic term)
+(noun)|prevention (generic term)|bar (generic term)
+debase|3
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|alloy|devalue (generic term)
+(verb)|adulterate|stretch|dilute|corrupt (generic term)|spoil (generic term)
+debased|3
+(adj)|adulterate|adulterated|impure (similar term)
+(adj)|devalued|degraded|low (similar term)
+(adj)|corrupted|vitiated|corrupt (similar term)
+debasement|2
+(noun)|adulteration|impurity (generic term)|impureness (generic term)
+(noun)|degradation|change of state (generic term)
+debaser|1
+(noun)|degrader|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+debasing|1
+(adj)|degrading|dishonorable (similar term)|dishonourable (similar term)
+debatable|3
+(adj)|problematic|problematical|questionable (similar term)
+(adj)|arguable|disputable|moot|controversial (similar term)
+(adj)|disputable|contestable (similar term)
+debate|6
+(noun)|argument|argumentation|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|disputation|public debate|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+(verb)|consider (generic term)|debate (generic term)|moot (generic term)|turn over (generic term)|deliberate (generic term)
+(verb)|consider|moot|turn over|deliberate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|deliberate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|argue|contend|fence|converse (generic term)|discourse (generic term)
+debater|1
+(noun)|arguer|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+debauch|2
+(noun)|orgy|debauchery|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+debauched|1
+(adj)|degenerate|degraded|dissipated|dissolute|libertine|profligate|riotous|fast|immoral (similar term)
+debauchee|1
+(noun)|libertine|rounder|bad person (generic term)
+debaucher|1
+(noun)|violator|ravisher|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+debauchery|1
+(noun)|orgy|debauch|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+debenture|2
+(noun)|unsecured bond|debenture bond|bond (generic term)|bond certificate (generic term)|secured bond (antonym)
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+debenture bond|1
+(noun)|unsecured bond|debenture|bond (generic term)|bond certificate (generic term)|secured bond (antonym)
+debile|1
+(adj)|decrepit|feeble|infirm|rickety|sapless|weak|weakly|frail (similar term)
+debilitate|1
+(verb)|enfeeble|drain|weaken (generic term)
+debilitated|1
+(adj)|adynamic|asthenic|enervated|weak (similar term)
+debilitating|1
+(adj)|debilitative (similar term)|enervating (similar term)|enfeebling (similar term)|weakening (similar term)|draining (similar term)|exhausting (similar term)|invigorating (antonym)
+debilitation|1
+(noun)|enervation|enfeeblement|exhaustion|weakening (generic term)
+debilitative|1
+(adj)|enervating|enfeebling|weakening|debilitating (similar term)
+debility|1
+(noun)|infirmity|frailty|feebleness|frailness|valetudinarianism|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+debit|2
+(noun)|debit entry|entry (generic term)|accounting entry (generic term)|ledger entry (generic term)|credit (antonym)
+(verb)|account (generic term)|calculate (generic term)|credit (antonym)
+debit card|1
+(noun)|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)|positive identification (generic term)
+debit entry|1
+(noun)|debit|entry (generic term)|accounting entry (generic term)|ledger entry (generic term)|credit (antonym)
+debit side|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+debitor|1
+(noun)|debtor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|creditor (antonym)
+debonair|2
+(adj)|debonaire|debonnaire|suave|refined (similar term)
+(adj)|chipper|debonaire|jaunty|cheerful (similar term)
+debonaire|2
+(adj)|debonair|debonnaire|suave|refined (similar term)
+(adj)|chipper|debonair|jaunty|cheerful (similar term)
+debone|1
+(verb)|bone|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+deboned|1
+(adj)|boned|boneless (similar term)
+debonnaire|1
+(adj)|debonair|debonaire|suave|refined (similar term)
+debouch|2
+(verb)|march out|march (generic term)|process (generic term)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+debridement|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+debrief|1
+(verb)|question (generic term)|query (generic term)
+debriefing|1
+(noun)|report (generic term)|account (generic term)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+debris|1
+(noun)|dust|junk|rubble|detritus|rubbish (generic term)|trash (generic term)|scrap (generic term)
+debris storm|1
+(noun)|debris surge|rush (generic term)|spate (generic term)|surge (generic term)|upsurge (generic term)
+debris surge|1
+(noun)|debris storm|rush (generic term)|spate (generic term)|surge (generic term)|upsurge (generic term)
+debs|1
+(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer (generic term)|organiser (generic term)|labor organizer (generic term)
+debt|3
+(noun)|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+(noun)|liabilities (generic term)
+(noun)|obligation (generic term)
+debt ceiling|1
+(noun)|debt limit|debt (generic term)
+debt instrument|1
+(noun)|certificate of indebtedness|document (generic term)
+debt limit|1
+(noun)|debt ceiling|debt (generic term)
+debtor|1
+(noun)|debitor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|creditor (antonym)
+debug|1
+(verb)|correct (generic term)|rectify (generic term)|right (generic term)
+debugger|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+debunk|1
+(verb)|expose|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+debunking|1
+(noun)|repudiation|exposure (generic term)
+debussy|1
+(noun)|Debussy|Claude Debussey|Claude Achille Debussy|composer (generic term)
+debut|5
+(noun)|introduction|first appearance|launching|unveiling|entry|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|presentation (generic term)|introduction (generic term)|intro (generic term)
+(verb)|introduce (generic term)|innovate (generic term)
+(verb)|play (generic term)
+(verb)|perform (generic term)
+debutante|1
+(noun)|deb|woman (generic term)|adult female (generic term)
+dec|2
+(noun)|December|Dec|Gregorian calendar month (generic term)
+(noun)|declination|celestial latitude|angular distance (generic term)
+dec 24|1
+(noun)|Christmas Eve|Dec 24|holiday (generic term)
+dec 25|1
+(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|holy day of obligation (generic term)|quarter day (generic term)|feast day (generic term)|fete day (generic term)
+decade|2
+(noun)|decennary|decennium|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|ten|10|X|tenner|large integer (generic term)
+decadence|1
+(noun)|degeneracy|degeneration|decadency|abasement (generic term)|degradation (generic term)|abjection (generic term)
+decadency|1
+(noun)|degeneracy|degeneration|decadence|abasement (generic term)|degradation (generic term)|abjection (generic term)
+decadent|2
+(adj)|effete|indulgent (similar term)
+(noun)|bad person (generic term)
+decadron|1
+(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+decaf|1
+(noun)|decaffeinated coffee|coffee (generic term)|java (generic term)
+decaffeinate|1
+(verb)|get rid of (generic term)|remove (generic term)
+decaffeinated coffee|1
+(noun)|decaf|coffee (generic term)|java (generic term)
+decagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+decagram|1
+(noun)|dekagram|dkg|dag|metric weight unit (generic term)|weight unit (generic term)
+decahedron|1
+(noun)|polyhedron (generic term)
+decal|2
+(noun)|decalcomania|design (generic term)|pattern (generic term)|figure (generic term)|transfer paper (generic term)
+(noun)|decalcomania|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+decalcification|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+decalcify|2
+(verb)|change (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|calcify (antonym)
+decalcomania|2
+(noun)|decal|design (generic term)|pattern (generic term)|figure (generic term)|transfer paper (generic term)
+(noun)|decal|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+decalescence|1
+(noun)|physical phenomenon (generic term)
+decalescent|1
+(adj)|endothermic (similar term)|endothermal (similar term)|heat-absorbing (similar term)
+decaliter|1
+(noun)|dekaliter|dekalitre|decalitre|dal|dkl|metric capacity unit (generic term)
+decalitre|1
+(noun)|dekaliter|dekalitre|decaliter|dal|dkl|metric capacity unit (generic term)
+decalogue|1
+(noun)|Decalogue|Ten Commandments|commandment (generic term)
+decameter|1
+(noun)|dekameter|decametre|dekametre|dam|dkm|metric linear unit (generic term)
+decametre|1
+(noun)|decameter|dekameter|dekametre|dam|dkm|metric linear unit (generic term)
+decamp|3
+(verb)|break camp|depart (generic term)|take leave (generic term)|quit (generic term)
+(verb)|abscond|bolt|absquatulate|run off|go off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|skip|vamoose|leave (generic term)|go forth (generic term)|go away (generic term)
+decampment|2
+(noun)|abscondment|desertion (generic term)|abandonment (generic term)|defection (generic term)
+(noun)|withdrawal (generic term)
+decanedioic acid|1
+(noun)|sebacic acid|carboxylic acid (generic term)
+decanoic acid|1
+(noun)|capric acid|saturated fatty acid (generic term)
+decant|1
+(verb)|pour|pour out|pour (generic term)
+decantation|1
+(noun)|transfusion (generic term)
+decanter|1
+(noun)|carafe|bottle (generic term)
+decapitate|1
+(verb)|behead|decollate|kill (generic term)
+decapitated|1
+(adj)|beheaded|headless (similar term)
+decapitation|2
+(noun)|beheading|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|beheading|killing (generic term)|kill (generic term)|putting to death (generic term)
+decapod|2
+(noun)|decapod crustacean|crustacean (generic term)
+(noun)|cephalopod (generic term)|cephalopod mollusk (generic term)
+decapod crustacean|1
+(noun)|decapod|crustacean (generic term)
+decapoda|1
+(noun)|Decapoda|order Decapoda|animal order (generic term)
+decapterus|1
+(noun)|Decapterus|genus Decapterus|fish genus (generic term)
+decapterus macarellus|1
+(noun)|mackerel scad|mackerel shad|Decapterus macarellus|scad (generic term)
+decapterus punctatus|1
+(noun)|round scad|cigarfish|quiaquia|Decapterus punctatus|scad (generic term)
+decarbonate|1
+(verb)|get rid of (generic term)|remove (generic term)
+decarbonise|1
+(verb)|decarbonize|decarburize|decarburise|decoke|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decarbonize|1
+(verb)|decarbonise|decarburize|decarburise|decoke|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decarboxylase|1
+(noun)|enzyme (generic term)
+decarboxylate|2
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+decarboxylation|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+decarburise|1
+(verb)|decarbonize|decarbonise|decarburize|decoke|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decarburize|1
+(verb)|decarbonize|decarbonise|decarburise|decoke|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decasyllabic|1
+(adj)|syllabic (similar term)
+decasyllable|1
+(noun)|verse (generic term)|verse line (generic term)
+decathlon|1
+(noun)|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+decatur|3
+(noun)|Decatur|Stephen Decatur|naval officer (generic term)
+(noun)|Decatur|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Decatur|town (generic term)
+decay|8
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|decline|decrease (generic term)|decrement (generic term)
+(noun)|decomposition|organic phenomenon (generic term)
+(noun)|unsoundness (generic term)
+(noun)|radioactive decay|disintegration|nuclear reaction (generic term)
+(verb)|disintegrate|decompose|change integrity (generic term)
+(verb)|crumble|delapidate|change (generic term)
+(verb)|change (generic term)
+decayable|1
+(adj)|putrescible|putrefiable|spoilable|perishable (similar term)
+decayed|1
+(adj)|rotten|rotted|unsound (similar term)
+deccan hemp|2
+(noun)|kenaf|hemp (generic term)
+(noun)|kenaf|kanaf|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+decease|2
+(noun)|death|expiry|change (generic term)|alteration (generic term)|modification (generic term)|birth (antonym)
+(verb)|die|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+deceased|2
+(adj)|asleep|at peace|at rest|departed|gone|dead (similar term)
+(noun)|dead person|dead soul|deceased person|decedent|departed|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+deceased person|1
+(noun)|dead person|dead soul|deceased|decedent|departed|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+decedent|1
+(noun)|dead person|dead soul|deceased person|deceased|departed|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+deceit|3
+(noun)|fraudulence|dishonesty (generic term)
+(noun)|misrepresentation|deception|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|deception|dissembling|dissimulation|falsification (generic term)|misrepresentaation (generic term)
+deceitful|2
+(adj)|fallacious|fraudulent|dishonest (similar term)|dishonorable (similar term)
+(adj)|ambidextrous|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+deceitfully|1
+(adv)|dishonestly|venally|honestly (antonym)
+deceitfulness|1
+(noun)|craftiness|guile|disingenuousness (generic term)
+deceive|2
+(verb)|lead on|delude|cozen|victimize (generic term)|victimise (generic term)
+(verb)|betray|lead astray|misinform (generic term)|mislead (generic term)|undeceive (antonym)
+deceiver|1
+(noun)|cheat|cheater|trickster|beguiler|slicker|wrongdoer (generic term)|offender (generic term)
+deceivingly|1
+(adv)|deceptively|misleadingly
+decelerate|2
+(verb)|slow|slow down|slow up|retard|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|accelerate (antonym)
+(verb)|slow down|modify (generic term)|qualify (generic term)|accelerate (antonym)
+deceleration|3
+(noun)|slowing|retardation|change (generic term)|alteration (generic term)|modification (generic term)|acceleration (antonym)
+(noun)|rate (generic term)|acceleration (antonym)
+(noun)|speed (generic term)|speeding (generic term)|hurrying (generic term)|acceleration (antonym)
+december|1
+(noun)|December|Dec|Gregorian calendar month (generic term)
+december 31|1
+(noun)|New Year's Eve|December 31|day (generic term)
+december 8|1
+(noun)|Immaculate Conception|December 8|holy day of obligation (generic term)
+decency|2
+(noun)|propriety (generic term)|properness (generic term)|correctitude (generic term)|indecency (antonym)
+(noun)|respectability (generic term)|reputability (generic term)
+decennary|1
+(noun)|decade|decennium|time period (generic term)|period of time (generic term)|period (generic term)
+decennium|1
+(noun)|decade|decennary|time period (generic term)|period of time (generic term)|period (generic term)
+decent|6
+(adj)|nice|respectable (similar term)
+(adj)|becoming|comely|comme il faut|decorous|seemly|proper (similar term)
+(adj)|clean (related term)|unobjectionable (related term)|decorous (related term)|proper (related term)|indecent (antonym)
+(adj)|adequate|enough|sufficient (similar term)
+(adj)|modest (similar term)
+(adv)|properly|decently|in good order|right|the right way|improperly (antonym)
+decentalisation|1
+(noun)|decentralization|social process (generic term)
+decently|2
+(adv)|indecently (antonym)
+(adv)|properly|decent|in good order|right|the right way|improperly (antonym)
+decentralisation|1
+(noun)|decentralization|spread (generic term)|spreading (generic term)|centralization (antonym)
+decentralise|1
+(verb)|decentralize|deconcentrate|change (generic term)|alter (generic term)|modify (generic term)|concentrate (antonym)|centralize (antonym)|centralise (antonym)
+decentralised|1
+(adj)|decentralized|localized (similar term)|localised (similar term)|redistributed (similar term)|suburbanized (similar term)|suburbanised (similar term)|centralized (antonym)
+decentralising|1
+(adj)|decentralizing|centrifugal (similar term)|centralizing (antonym)
+decentralization|2
+(noun)|decentalisation|social process (generic term)
+(noun)|decentralisation|spread (generic term)|spreading (generic term)|centralization (antonym)
+decentralize|1
+(verb)|deconcentrate|decentralise|change (generic term)|alter (generic term)|modify (generic term)|concentrate (antonym)|centralize (antonym)|centralise (antonym)
+decentralized|1
+(adj)|decentralised|localized (similar term)|localised (similar term)|redistributed (similar term)|suburbanized (similar term)|suburbanised (similar term)|centralized (antonym)
+decentralizing|1
+(adj)|decentralising|centrifugal (similar term)|centralizing (antonym)
+deception|3
+(noun)|misrepresentation|deceit|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|deceit|dissembling|dissimulation|falsification (generic term)|misrepresentaation (generic term)
+(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|thaumaturgy|illusion|performance (generic term)
+deceptive|2
+(adj)|delusory|unreal (similar term)
+(adj)|misleading|shoddy|dishonest (similar term)|dishonorable (similar term)
+deceptively|1
+(adv)|deceivingly|misleadingly
+deceptiveness|1
+(noun)|obliquity|dishonesty (generic term)
+decerebrate|1
+(verb)|get rid of (generic term)|remove (generic term)
+decertify|1
+(verb)|derecognize|derecognise|certify (antonym)
+dechlorinate|1
+(verb)|get rid of (generic term)|remove (generic term)
+decibel|1
+(noun)|dB|sound unit (generic term)
+decide|4
+(verb)|make up one's mind|determine
+(verb)|settle|resolve|adjudicate|end (generic term)|terminate (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+decided|1
+(adj)|distinct|definite (similar term)
+decidedly|1
+(adv)|unquestionably|emphatically|definitely|in spades|by all odds
+deciding|2
+(adj)|crucial|determinant|determinative|determining|decisive (similar term)
+(noun)|decision making|higher cognitive process (generic term)
+decidua|1
+(noun)|epithelium (generic term)|epithelial tissue (generic term)
+deciduous|2
+(adj)|broadleaf (similar term)|broad-leafed (similar term)|broad-leaved (similar term)|evergreen (antonym)
+(adj)|caducous (similar term)|shed (similar term)
+deciduous holly|1
+(noun)|holly (generic term)
+deciduous plant|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)|evergreen plant (antonym)
+deciduous tooth|1
+(noun)|primary tooth|baby tooth|milk tooth|tooth (generic term)
+decigram|1
+(noun)|dg|metric weight unit (generic term)|weight unit (generic term)
+decile|1
+(noun)|mark (generic term)|grade (generic term)|score (generic term)
+deciliter|1
+(noun)|decilitre|dl|metric capacity unit (generic term)
+decilitre|1
+(noun)|deciliter|dl|metric capacity unit (generic term)
+decimal|4
+(adj)|denary|quantitative (similar term)
+(adj)|quantitative (similar term)
+(noun)|decimal fraction|proper fraction (generic term)
+(noun)|number (generic term)
+decimal digit|1
+(noun)|digit (generic term)|figure (generic term)
+decimal fraction|1
+(noun)|decimal|proper fraction (generic term)
+decimal notation|1
+(noun)|mathematical notation (generic term)
+decimal number system|1
+(noun)|decimal numeration system|decimal system|positional notation (generic term)|positional representation system (generic term)
+decimal numeration system|1
+(noun)|decimal number system|decimal system|positional notation (generic term)|positional representation system (generic term)
+decimal point|1
+(noun)|percentage point|mathematical notation (generic term)
+decimal system|1
+(noun)|decimal numeration system|decimal number system|positional notation (generic term)|positional representation system (generic term)
+decimal system of classification|1
+(noun)|Dewey decimal classification|Dewey decimal system|classification system (generic term)
+decimalisation|1
+(noun)|decimalization|change (generic term)
+decimalise|2
+(verb)|decimalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decimalize|convert (generic term)|change over (generic term)
+decimalization|1
+(noun)|decimalisation|change (generic term)
+decimalize|2
+(verb)|decimalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decimalise|convert (generic term)|change over (generic term)
+decimate|2
+(verb)|kill (generic term)
+(verb)|eliminate|annihilate|extinguish|eradicate|wipe out|carry off|kill (generic term)
+decimation|1
+(noun)|destruction (generic term)|devastation (generic term)
+decimeter|1
+(noun)|decimetre|dm|metric linear unit (generic term)
+decimetre|1
+(noun)|decimeter|dm|metric linear unit (generic term)
+decimus junius juvenalis|1
+(noun)|Juvenal|Decimus Junius Juvenalis|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+decipher|2
+(verb)|decode|decrypt|rewrite (generic term)|encode (antonym)
+(verb)|trace|read (generic term)
+decipherable|1
+(adj)|clear|readable|legible (similar term)
+decipherably|1
+(adv)|legibly|readably|illegibly (antonym)
+deciphered|1
+(adj)|undeciphered (antonym)
+decipherer|2
+(noun)|decoder|intellectual (generic term)|intellect (generic term)
+(noun)|reader (generic term)
+decipherment|1
+(noun)|decoding|decryption|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+decision|4
+(noun)|determination|conclusion|judgment (generic term)|judgement (generic term)|mind (generic term)
+(noun)|determination|conclusion|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+(noun)|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|decisiveness|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)|indecision (antonym)|indecisiveness (antonym)
+decision maker|1
+(noun)|administrator|head (generic term)|chief (generic term)|top dog (generic term)
+decision making|1
+(noun)|deciding|higher cognitive process (generic term)
+decision table|1
+(noun)|multidimensional language (generic term)
+decisive|4
+(adj)|conclusive (similar term)|crucial (similar term)|deciding (similar term)|determinant (similar term)|determinative (similar term)|determining (similar term)|fateful (similar term)|fatal (similar term)|peremptory (similar term)|conclusive (related term)|crucial (related term)|important (related term)|indecisive (antonym)
+(adj)|definite (similar term)
+(adj)|unhesitating (similar term)|resolute (similar term)|resolute (related term)|indecisive (antonym)
+(adj)|critical|crucial (similar term)|important (similar term)
+decisive factor|1
+(noun)|clincher|determinant (generic term)|determiner (generic term)|determinative (generic term)|determining factor (generic term)|causal factor (generic term)
+decisively|2
+(adv)|resolutely|indecisively (antonym)
+(adv)|indecisively (antonym)
+decisiveness|2
+(noun)|decision|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)|indecision (antonym)|indecisiveness (antonym)
+(noun)|finality|conclusiveness|determinateness (generic term)|definiteness (generic term)|inconclusiveness (antonym)
+decius|1
+(noun)|Decius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+deck|7
+(noun)|platform (generic term)
+(noun)|packet (generic term)
+(noun)|pack of cards|deck of cards|pack (generic term)
+(noun)|porch (generic term)
+(verb)|adorn|decorate|grace|embellish|beautify|be (generic term)
+(verb)|bedight|bedeck|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|coldcock|dump|knock down|floor|beat (generic term)
+deck-house|1
+(noun)|superstructure (generic term)
+deck chair|1
+(noun)|beach chair|folding chair (generic term)
+deck of cards|1
+(noun)|pack of cards|deck|pack (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+deck tennis|1
+(noun)|court game (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+decked|1
+(adj)|adorned|bedecked|decked out|clothed (similar term)|clad (similar term)
+decked out|1
+(adj)|adorned|bedecked|decked|clothed (similar term)|clad (similar term)
+decker|2
+(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+deckhand|1
+(noun)|roustabout|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+deckle|2
+(noun)|deckle edge|edge (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+deckle-edged|1
+(adj)|deckled|featheredged|bordered (similar term)
+deckle edge|1
+(noun)|deckle|edge (generic term)
+deckled|1
+(adj)|deckle-edged|featheredged|bordered (similar term)
+declaim|2
+(verb)|recite|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|inveigh|protest (generic term)
+declamation|2
+(noun)|oratory (generic term)
+(noun)|recitation (generic term)|recital (generic term)|reading (generic term)
+declamatory|1
+(adj)|bombastic|large|orotund|tumid|turgid|rhetorical (similar term)
+declarable|1
+(adj)|acknowledged (similar term)
+declaration|5
+(noun)|testimony (generic term)
+(noun)|statement (generic term)
+(noun)|contract|bid (generic term)|bidding (generic term)
+(noun)|announcement|proclamation|annunciation|statement (generic term)
+(noun)|resolution|resolve|document (generic term)|written document (generic term)|papers (generic term)
+declaration of estimated tax|1
+(noun)|estimated tax return|tax return (generic term)|income tax return (generic term)|return (generic term)
+declaration of independence|1
+(noun)|Declaration of Independence|resolution (generic term)|declaration (generic term)|resolve (generic term)
+declarative|3
+(adj)|declaratory|asserting|interrogatory (antonym)|interrogative (antonym)
+(adj)|indicative|mood|mode|modality (related term)
+(noun)|indicative mood|indicative|declarative mood|common mood|fact mood|mood (generic term)|mode (generic term)|modality (generic term)
+declarative mood|1
+(noun)|indicative mood|indicative|declarative|common mood|fact mood|mood (generic term)|mode (generic term)|modality (generic term)
+declarative sentence|1
+(noun)|declaratory sentence|sentence (generic term)
+declaratory|1
+(adj)|declarative|asserting|interrogatory (antonym)|interrogative (antonym)
+declaratory sentence|1
+(noun)|declarative sentence|sentence (generic term)
+declare|7
+(verb)|announce|state (generic term)|say (generic term)|tell (generic term)
+(verb)|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+(verb)|adjudge|hold|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)
+(verb)|play (generic term)
+(verb)|state (generic term)|say (generic term)|tell (generic term)
+(verb)|proclaim (generic term)|exclaim (generic term)|promulgate (generic term)
+declare oneself|1
+(verb)|propose|offer|pop the question|request (generic term)
+declared|2
+(adj)|alleged (similar term)|announced (similar term)|proclaimed (similar term)|asserted (similar term)|avowed (similar term)|professed (similar term)|professed (similar term)|undeclared (antonym)
+(adj)|stated|explicit (similar term)|expressed (similar term)
+declarer|2
+(noun)|contractor|bridge player (generic term)|hand (generic term)
+(noun)|asserter|affirmer|asseverator|avower|communicator (generic term)
+declassification|1
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|classification (antonym)
+declassified|1
+(adj)|unclassified (similar term)
+declassify|1
+(verb)|free (generic term)|release (generic term)|classify (antonym)
+declaw|1
+(verb)|take off (generic term)
+declension|4
+(noun)|inflection (generic term)|inflexion (generic term)
+(noun)|deterioration|decline in quality|worsening|decline (generic term)|diminution (generic term)
+(noun)|descent|declivity|fall|decline|declination|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+(noun)|class (generic term)|category (generic term)|family (generic term)
+declination|4
+(noun)|decline|condition (generic term)|status (generic term)|improvement (antonym)
+(noun)|descent|declivity|fall|decline|declension|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+(noun)|celestial latitude|dec|angular distance (generic term)
+(noun)|regrets|refusal (generic term)|acknowledgment (generic term)|acknowledgement (generic term)
+decline|11
+(noun)|diminution|decrease (generic term)|decrement (generic term)
+(noun)|declination|condition (generic term)|status (generic term)|improvement (antonym)
+(noun)|decay|decrease (generic term)|decrement (generic term)
+(noun)|descent|declivity|fall|declination|declension|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+(verb)|worsen|change state (generic term)|turn (generic term)|better (antonym)
+(verb)|refuse|reject|pass up|turn down|accept (antonym)
+(verb)|refuse|react (generic term)|respond (generic term)|accept (antonym)
+(verb)|go down|wane|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|drop (generic term)
+(verb)|slump|correct|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|inflect (generic term)
+decline in quality|1
+(noun)|deterioration|declension|worsening|decline (generic term)|diminution (generic term)
+declinometer|1
+(noun)|transit declinometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+declivitous|1
+(adj)|downhill|downward-sloping|descending (similar term)
+declivity|1
+(noun)|descent|fall|decline|declination|declension|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+declomycin|1
+(noun)|demeclocycline hydrochloride|Declomycin|tetracycline (generic term)|Achromycin (generic term)
+declutch|1
+(verb)|disengage (generic term)
+deco|1
+(noun)|art deco|artistic movement (generic term)|art movement (generic term)
+decoagulant|1
+(noun)|anticoagulant|anticoagulant medication|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+decoct|3
+(verb)|boil (generic term)
+(verb)|boil down|reduce|concentrate|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|steep (generic term)|infuse (generic term)
+decoction|1
+(noun)|boiling (generic term)|stewing (generic term)|simmering (generic term)
+decoction mashing|1
+(noun)|decoction process|boiling (generic term)
+decoction process|1
+(noun)|decoction mashing|boiling (generic term)
+decode|1
+(verb)|decrypt|decipher|rewrite (generic term)|encode (antonym)
+decoder|2
+(noun)|decipherer|intellectual (generic term)|intellect (generic term)
+(noun)|machine (generic term)
+decoding|1
+(noun)|decryption|decipherment|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+decoke|1
+(verb)|decarbonize|decarbonise|decarburize|decarburise|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decollate|1
+(verb)|decapitate|behead|kill (generic term)
+decolletage|1
+(noun)|neckline (generic term)
+decollete|1
+(adj)|low-cut|low-necked|necked (similar term)
+decolonisation|1
+(noun)|decolonization|group action (generic term)
+decolonise|1
+(verb)|decolonize|liberate (generic term)|set free (generic term)|colonise (antonym)|colonize (antonym)
+decolonization|1
+(noun)|decolonisation|group action (generic term)
+decolonize|1
+(verb)|decolonise|liberate (generic term)|set free (generic term)|colonise (antonym)|colonize (antonym)
+decolor|1
+(verb)|bleach|bleach out|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+decolorise|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+decolorize|1
+(verb)|bleach|bleach out|decolor|decolour|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+decolour|1
+(verb)|bleach|bleach out|decolor|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+decolourise|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|discolorize|discolourise|discolorise|discolor (generic term)
+decolourize|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolorise|decolourise|discolorize|discolourise|discolorise|discolor (generic term)
+decommission|1
+(verb)|recall (generic term)|call in (generic term)|call back (generic term)|withdraw (generic term)
+decomposable|1
+(adj)|analyzable|complex (similar term)
+decompose|3
+(verb)|break up|break down|separate (generic term)
+(verb)|disintegrate|decay|change integrity (generic term)
+(verb)|rot|molder|moulder|decay (generic term)
+decomposition|5
+(noun)|vector decomposition|vector algebra (generic term)
+(noun)|disintegration|decay (generic term)
+(noun)|decomposition reaction|chemical decomposition reaction|chemical reaction (generic term)|reaction (generic term)
+(noun)|decay|organic phenomenon (generic term)
+(noun)|rot|rotting|putrefaction|decay (generic term)
+decomposition reaction|1
+(noun)|decomposition|chemical decomposition reaction|chemical reaction (generic term)|reaction (generic term)
+decompositional|1
+(adj)|disintegrative (similar term)
+decompound|1
+(adj)|compound (similar term)
+decompound leaf|1
+(noun)|compound leaf (generic term)
+decompress|3
+(verb)|uncompress|restore (generic term)|reconstruct (generic term)|compress (antonym)
+(verb)|depressurize|depressurise|adjust (generic term)|set (generic term)|correct (generic term)|pressurise (antonym)|pressurize (antonym)
+(verb)|relax|loosen up|unbend|unwind|slow down|change state (generic term)|turn (generic term)|tense (antonym)
+decompressing|1
+(noun)|decompression|press (generic term)|pressure (generic term)|pressing (generic term)|compression (antonym)
+decompression|2
+(noun)|decoding (generic term)|decryption (generic term)|decipherment (generic term)|compression (antonym)
+(noun)|decompressing|press (generic term)|pressure (generic term)|pressing (generic term)|compression (antonym)
+decompression sickness|1
+(noun)|aeroembolism|air embolism|gas embolism|caisson disease|bends|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+deconcentrate|1
+(verb)|decentralize|decentralise|change (generic term)|alter (generic term)|modify (generic term)|concentrate (antonym)|centralize (antonym)|centralise (antonym)
+decongestant|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+deconsecrate|1
+(verb)|desecrate|unhallow|change by reversal (generic term)|turn (generic term)|reverse (generic term)|consecrate (antonym)
+deconsecrated|1
+(adj)|desecrated (similar term)
+deconstruct|1
+(verb)|rede (generic term)|interpret (generic term)
+deconstruction|1
+(noun)|deconstructionism|philosophical doctrine (generic term)|philosophical theory (generic term)
+deconstructionism|1
+(noun)|deconstruction|philosophical doctrine (generic term)|philosophical theory (generic term)
+deconstructionist|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+deconstructivism|1
+(noun)|school (generic term)
+decontaminate|1
+(verb)|cleanse (generic term)|clean (generic term)|contaminate (antonym)
+decontamination|1
+(noun)|removal (generic term)|remotion (generic term)|contamination (antonym)
+decontrol|1
+(verb)|liberalize (generic term)|liberalise (generic term)
+decor|1
+(noun)|interior decoration|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+decorate|4
+(verb)|adorn|grace|ornament|embellish|beautify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|deck|adorn|grace|embellish|beautify|be (generic term)
+(verb)|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|dress|arrange (generic term)|set up (generic term)
+decorated|1
+(adj)|adorned|beaded (similar term)|beady (similar term)|bejeweled (similar term)|bejewelled (similar term)|bespangled (similar term)|gemmed (similar term)|jeweled (similar term)|jewelled (similar term)|sequined (similar term)|spangled (similar term)|spangly (similar term)|bedaubed (similar term)|bespectacled (similar term)|monocled (similar term)|spectacled (similar term)|braided (similar term)|brocaded (similar term)|embossed (similar term)|raised (similar term)|buttony (similar term)|carbuncled (similar term)|champleve (similar term)|cloisonne (similar term)|enameled (similar term)|clinquant (similar term)|tinseled (similar term)|tinselly (similar term)|crested (similar term)|plumed (similar term)|crested (similar term)|topknotted (similar term)|tufted (similar term)|crested (similar term)|crocketed (similar term)|embellished (similar term)|ornamented (similar term)|ornate (similar term)|embroidered (similar term)|encircled (similar term)|ringed (similar term)|wreathed (similar term)|fancied up (similar term)|gussied (similar term)|gussied up (similar term)|tricked out (similar term)|feathery (similar term)|feathered (similar term)|plumy (similar term)|frilled (similar term)|frilly (similar term)|ruffled (similar term)|fringed (similar term)|gilt-edged (similar term)|hung (similar term)|inflamed (similar term)|inlaid (similar term)|inwrought (similar term)|laced (similar term)|mosaic (similar term)|tessellated (similar term)|mounted (similar term)|paneled (similar term)|wainscoted (similar term)|studded (similar term)|tapestried (similar term)|tasseled (similar term)|tasselled (similar term)|tricked-out (similar term)|tufted (similar term)|clothed (related term)|clad (related term)|fancy (related term)|unadorned (antonym)
+decoration|3
+(noun)|ornament|ornamentation|artifact (generic term)|artefact (generic term)
+(noun)|laurel wreath|medal|medallion|palm|ribbon|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|change of state (generic term)
+decoration day|1
+(noun)|Memorial Day|Decoration Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+decorative|1
+(adj)|cosmetic|ornamental|nonfunctional (similar term)
+decorativeness|1
+(noun)|appearance (generic term)|visual aspect (generic term)
+decorator|2
+(noun)|interior designer|designer|interior decorator|house decorator|room decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+(noun)|ornamentalist|artist (generic term)|creative person (generic term)
+decorous|2
+(adj)|in good taste (similar term)|sedate (similar term)|staid (similar term)|proper (related term)|indecorous (antonym)
+(adj)|becoming|comely|comme il faut|decent|seemly|proper (similar term)
+decorously|1
+(adv)|indecorously (antonym)
+decorousness|1
+(noun)|decorum|propriety (generic term)|properness (generic term)|correctitude (generic term)|indecorousness (antonym)|indecorum (antonym)
+decorticate|2
+(verb)|strip (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+decortication|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+decorum|1
+(noun)|decorousness|propriety (generic term)|properness (generic term)|correctitude (generic term)|indecorousness (antonym)|indecorum (antonym)
+decoupage|2
+(noun)|art (generic term)|fine art (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+decouple|3
+(verb)|uncouple|disconnect (generic term)|couple (antonym)
+(verb)|dissociate|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)|associate (antonym)
+(verb)|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+decoy|3
+(noun)|steerer|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)|accomplice (generic term)|confederate (generic term)
+(noun)|bait|lure|device (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+decrease|6
+(noun)|lessening|drop-off|change (generic term)|alteration (generic term)|modification (generic term)|increase (antonym)
+(noun)|decrement|process (generic term)|physical process (generic term)|increment (antonym)|increase (antonym)
+(noun)|decrement|amount (generic term)|increase (antonym)
+(noun)|diminution|reduction|step-down|change of magnitude (generic term)|increase (antonym)
+(verb)|diminish|lessen|fall|change magnitude (generic term)|increase (antonym)
+(verb)|lessen|minify|change (generic term)|alter (generic term)|modify (generic term)|increase (antonym)
+decreased|1
+(adj)|reduced|ablated (similar term)|attenuate (similar term)|attenuated (similar term)|faded (similar term)|weakened (similar term)|attenuated (similar term)|bated (similar term)|belittled (similar term)|diminished (similar term)|small (similar term)|cut (similar term)|slashed (similar term)|diminished (similar term)|minimized (similar term)|remittent (similar term)|shriveled (similar term)|shrivelled (similar term)|shrunken (similar term)|increased (antonym)
+decreasing|2
+(adj)|depreciating (similar term)|depreciative (similar term)|depreciatory (similar term)|detractive (similar term)|diminishing (similar term)|dwindling (similar term)|tapering (similar term)|tapering off (similar term)|falling (similar term)|increasing (antonym)
+(adj)|allargando (similar term)|calando (similar term)|decrescendo (similar term)|diminuendo (similar term)|rallentando (similar term)|ritardando (similar term)|ritenuto (similar term)|rit. (similar term)|increasing (antonym)
+decreasing monotonic|1
+(adj)|monotonic (similar term)|monotone (similar term)
+decree|3
+(noun)|edict|fiat|order|rescript|act (generic term)|enactment (generic term)
+(verb)|declare (generic term)
+(verb)|rule|decide (generic term)|make up one's mind (generic term)|determine (generic term)|rule out (related term)
+decree nisi|1
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+decreed|1
+(adj)|appointed|ordained|prescribed|settled (similar term)
+decrement|2
+(noun)|decrease|amount (generic term)|increase (antonym)
+(noun)|decrease|process (generic term)|physical process (generic term)|increment (antonym)|increase (antonym)
+decrepit|2
+(adj)|creaky|derelict|flea-bitten|run-down|woebegone|worn (similar term)
+(adj)|debile|feeble|infirm|rickety|sapless|weak|weakly|frail (similar term)
+decrepitate|2
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+decrepitation|1
+(noun)|crackle (generic term)|crackling (generic term)|crepitation (generic term)
+decrepitude|1
+(noun)|dilapidation|deterioration (generic term)|impairment (generic term)
+decrescendo|3
+(adj)|diminuendo|decreasing (similar term)
+(noun)|diminuendo|softness (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|crescendo (antonym)
+decriminalisation|1
+(noun)|decriminalization|legislation (generic term)|legislating (generic term)|lawmaking (generic term)|criminalisation (antonym)|criminalization (antonym)
+decriminalise|1
+(verb)|legalize|legalise|decriminalize|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+decriminalization|1
+(noun)|decriminalisation|legislation (generic term)|legislating (generic term)|lawmaking (generic term)|criminalisation (antonym)|criminalization (antonym)
+decriminalize|1
+(verb)|legalize|legalise|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+decry|1
+(verb)|condemn|reprobate|objurgate|excoriate|denounce (generic term)
+decrypt|1
+(verb)|decode|decipher|rewrite (generic term)|encode (antonym)
+decryption|1
+(noun)|decoding|decipherment|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+decubitus|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+decubitus ulcer|1
+(noun)|bedsore|pressure sore|ulcer (generic term)|ulceration (generic term)
+decuma|1
+(noun)|Decuma|Roman deity (generic term)
+decumaria|1
+(noun)|Decumaria|genus Decumaria|rosid dicot genus (generic term)
+decumaria barbara|1
+(noun)|decumary|Decumaria barbata|Decumaria barbara|hydrangea (generic term)
+decumaria barbata|1
+(noun)|decumary|Decumaria barbata|Decumaria barbara|hydrangea (generic term)
+decumary|1
+(noun)|Decumaria barbata|Decumaria barbara|hydrangea (generic term)
+decumbent|1
+(adj)|accumbent|recumbent|reclining|unerect (similar term)
+decurved|1
+(adj)|retrorse (similar term)
+decussate|2
+(adj)|intersectant|intersecting|crossed (similar term)
+(verb)|cross (generic term)
+decussation|1
+(noun)|chiasma|chiasm|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+ded|1
+(noun)|Doctor of Education|EdD|DEd|doctor's degree (generic term)|doctorate (generic term)
+dedicate|4
+(verb)|give|consecrate|commit|devote|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|inaugurate (generic term)|kick off (generic term)
+(verb)|give (generic term)|render (generic term)
+(verb)|assign (generic term)|specify (generic term)|set apart (generic term)
+dedicated|2
+(adj)|devoted (similar term)|devoted (similar term)|sacred (similar term)|undedicated (antonym)
+(adj)|consecrated|consecrate|ordained (similar term)|votive (similar term)|holy (related term)|sacred (related term)|desecrated (antonym)
+dedicated file server|1
+(noun)|file server (generic term)|non-dedicated file server (antonym)
+dedication|5
+(noun)|fidelity (generic term)|faithfulness (generic term)
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|commitment|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|inscription|message (generic term)
+(noun)|commitment|allegiance|loyalty|cooperation (generic term)
+dedifferentiate|1
+(verb)|develop (generic term)|differentiate (antonym)
+dedifferentiated|1
+(adj)|undifferentiated (similar term)|uniform (similar term)
+dedifferentiation|1
+(noun)|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+deduce|2
+(verb)|infer|deduct|derive|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|infer|reason (generic term)|reason out (generic term)|conclude (generic term)
+deducible|1
+(adj)|deductive (similar term)
+deduct|3
+(verb)|subtract|take off|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|add (antonym)
+(verb)|withhold|recoup|keep (generic term)|hold on (generic term)
+(verb)|deduce|infer|derive|reason (generic term)|reason out (generic term)|conclude (generic term)
+deductible|3
+(adj)|allowable (similar term)|nondeductible (antonym)
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|article (generic term)|clause (generic term)
+deduction|6
+(noun)|tax write-off|tax deduction|write-off (generic term)|write-down (generic term)
+(noun)|discount|allowance (generic term)|adjustment (generic term)
+(noun)|entailment|implication|inference (generic term)|illation (generic term)
+(noun)|deductive reasoning|synthesis|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(noun)|subtraction|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|addition (antonym)
+(noun)|discount|price reduction|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+deductive|2
+(adj)|reasoning|logical thinking|abstract thought (related term)
+(adj)|deducible (similar term)|illative (similar term)|illative (similar term)|inferential (similar term)|inferential (similar term)|a priori (related term)|analytic (related term)|analytical (related term)|inductive (antonym)
+deductive reasoning|1
+(noun)|deduction|synthesis|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+deed|2
+(noun)|feat|effort|exploit|accomplishment (generic term)|achievement (generic term)
+(noun)|deed of conveyance|title|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+deed of conveyance|1
+(noun)|deed|title|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+deed of trust|1
+(noun)|trust deed|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+deed over|1
+(verb)|grant|give (generic term)|gift (generic term)|present (generic term)
+deed poll|1
+(noun)|deed (generic term)|deed of conveyance (generic term)|title (generic term)
+deedbox|1
+(noun)|strongbox|box (generic term)
+deeds|1
+(noun)|works|activity (generic term)
+deem|1
+(verb)|hold|view as|take for|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+deems taylor|1
+(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer (generic term)|music critic (generic term)
+deep|20
+(adj)|heavy (similar term)|profound (similar term)|sound (similar term)|wakeless (similar term)|profound (similar term)|shallow (antonym)
+(adj)|profound (similar term)
+(adj)|abysmal (similar term)|abyssal (similar term)|unfathomable (similar term)|bottomless (similar term)|deep-water (similar term)|in depth (similar term)|profound (similar term)|unfathomed (similar term)|unplumbed (similar term)|unsounded (similar term)|walk-in (similar term)|unfathomable (related term)|shallow (antonym)
+(adj)|distant (similar term)
+(adj)|intense (similar term)
+(adj)|bass|low (similar term)|low-pitched (similar term)
+(adj)|rich|colorful (similar term)|colourful (similar term)
+(adj)|thick (similar term)
+(adj)|wide (similar term)|broad (similar term)
+(adj)|thick|intense (similar term)
+(adj)|large (similar term)|big (similar term)
+(adj)|low (similar term)
+(adj)|cryptic|cryptical|inscrutable|mysterious|mystifying|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|abstruse|recondite|esoteric (similar term)
+(adj)|artful (similar term)
+(noun)|middle (generic term)
+(noun)|trench|oceanic abyss|natural depression (generic term)|depression (generic term)
+(noun)|ocean (generic term)
+(adv)|deeply
+(adv)|late
+deep-chested|1
+(adj)|thick (similar term)
+deep-dish pie|1
+(noun)|cobbler|pie (generic term)
+deep-dye|1
+(verb)|dye (generic term)
+deep-eyed|1
+(adj)|hollow-eyed|sunken-eyed|thin (similar term)|lean (similar term)
+deep-fat-fry|1
+(verb)|fry (generic term)
+deep-freeze|1
+(noun)|Deepfreeze|deep freezer|freezer|electric refrigerator (generic term)|fridge (generic term)
+deep-fried|1
+(adj)|fried|cooked (similar term)
+deep-fry|1
+(verb)|french-fry|fry (generic term)
+deep-laid|1
+(adj)|planned (similar term)
+deep-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+deep-mined|1
+(adj)|mined (similar term)
+deep-pink|1
+(adj)|chromatic (similar term)
+deep-rooted|1
+(adj)|deep-seated|implanted|ingrained|planted|established (similar term)|constituted (similar term)
+deep-sea|1
+(adj)|sea (similar term)
+deep-sea diver|1
+(noun)|diver (generic term)|frogman (generic term)|underwater diver (generic term)
+deep-seated|1
+(adj)|deep-rooted|implanted|ingrained|planted|established (similar term)|constituted (similar term)
+deep-set|1
+(adj)|sunken|recessed|hollow (similar term)
+deep-six|2
+(verb)|give it the deep six|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|throw overboard|throw (generic term)
+deep-water|1
+(adj)|deep (similar term)
+deep-yellow|1
+(adj)|chromatic (similar term)
+deep brown|1
+(noun)|chocolate|coffee|umber|burnt umber|brown (generic term)|brownness (generic term)
+deep cervical vein|1
+(noun)|cervical vein|vena cervicalis profunda|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+deep down|1
+(adv)|at heart|at bottom|inside|in spite of appearance
+deep fording|1
+(noun)|ford (generic term)|fording (generic term)
+deep freeze|2
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(verb)|freeze (generic term)
+deep freezer|1
+(noun)|deep-freeze|Deepfreeze|freezer|electric refrigerator (generic term)|fridge (generic term)
+deep in thought|1
+(adj)|bemused|lost|preoccupied|thoughtful (similar term)
+deep kiss|1
+(noun)|soul kiss|French kiss|kiss (generic term)|buss (generic term)|osculation (generic term)
+deep middle cerebral vein|1
+(noun)|middle cerebral vein (generic term)|vena cerebri media (generic term)
+deep pocket|1
+(noun)|assets (generic term)
+deep red|1
+(noun)|crimson|ruby|red (generic term)|redness (generic term)
+deep south|1
+(noun)|Deep South|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+deep space|1
+(noun)|region (generic term)|part (generic term)
+deep supporting fire|1
+(noun)|supporting fire (generic term)
+deep temporal vein|1
+(noun)|temporal vein (generic term)|vena temporalis (generic term)
+deep water|1
+(noun)|trouble (generic term)|problem (generic term)
+deepen|4
+(verb)|intensify|compound|heighten|increase (generic term)
+(verb)|intensify|increase (generic term)
+(verb)|enlarge (generic term)
+(verb)|change|change (generic term)
+deepened|1
+(adj)|gathered|concentrated (similar term)
+deepening|2
+(adj)|thickening|intensifying (similar term)
+(noun)|development (generic term)|evolution (generic term)
+deepfreeze|1
+(noun)|deep-freeze|Deepfreeze|deep freezer|freezer|electric refrigerator (generic term)|fridge (generic term)
+deeply|2
+(adv)|profoundly
+(adv)|deep
+deepness|3
+(noun)|astuteness|profundity|profoundness|depth|wisdom (generic term)|sapience (generic term)
+(noun)|profundity|profoundness|depth (generic term)|shallowness (antonym)
+(noun)|low pitch (generic term)|low frequency (generic term)
+deepwater pipefish|1
+(noun)|Cosmocampus profundus|pipefish (generic term)|needlefish (generic term)
+deepwater squirrelfish|1
+(noun)|Holocentrus bullisi|squirrelfish (generic term)
+deer|1
+(noun)|cervid|ruminant (generic term)
+deer's-ear|1
+(noun)|columbo|American columbo|deer's-ears|pyramid plant|American gentian|herb (generic term)|herbaceous plant (generic term)
+deer's-ears|1
+(noun)|columbo|American columbo|deer's-ear|pyramid plant|American gentian|herb (generic term)|herbaceous plant (generic term)
+deer-like|1
+(adj)|animal (similar term)
+deer fern|1
+(noun)|Blechnum spicant|hard fern (generic term)
+deer fly fever|1
+(noun)|tularemia|tularaemia|rabbit fever|yatobyo|zoonosis (generic term)|zoonotic disease (generic term)
+deer grass|1
+(noun)|meadow beauty|subshrub (generic term)|suffrutex (generic term)
+deer hunt|1
+(noun)|deer hunting|hunt (generic term)|hunting (generic term)
+deer hunter|1
+(noun)|hunter (generic term)|huntsman (generic term)
+deer hunting|1
+(noun)|deer hunt|hunt (generic term)|hunting (generic term)
+deer mouse|1
+(noun)|Peromyscus maniculatus|wood mouse (generic term)
+deer mushroom|1
+(noun)|Pluteus cervinus|agaric (generic term)
+deer tick|1
+(noun)|Ixodes dammini|hard tick (generic term)|ixodid (generic term)
+deer trail|1
+(noun)|trail (generic term)
+deerberry|1
+(noun)|squaw huckleberry|Vaccinium stamineum|blueberry (generic term)|blueberry bush (generic term)
+deere|1
+(noun)|Deere|John Deere|industrialist (generic term)
+deerhound|1
+(noun)|Scottish deerhound|hound (generic term)|hound dog (generic term)
+deerskin|1
+(noun)|leather (generic term)
+deerstalker|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+deerstalking|1
+(noun)|stalk (generic term)|stalking (generic term)|still hunt (generic term)
+deface|2
+(verb)|disfigure|blemish|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|mutilate (generic term)|mangle (generic term)|cut up (generic term)
+defaced|1
+(adj)|marred|damaged (similar term)
+defacement|1
+(noun)|disfigurement|disfiguration|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+defalcate|1
+(verb)|embezzle|peculate|misappropriate|malversate|steal (generic term)
+defalcation|2
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|embezzlement|peculation|misapplication|misappropriation|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+defalcator|1
+(noun)|embezzler|peculator|thief (generic term)|stealer (generic term)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+defamation|2
+(noun)|calumny|calumniation|obloquy|traducement|hatchet job|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|aspersion|calumny|slander|denigration|attack (generic term)
+defamatory|1
+(adj)|calumniatory|calumnious|denigrative|denigrating|denigratory|libellous|libelous|slanderous|harmful (similar term)
+defame|1
+(verb)|slander|smirch|asperse|denigrate|calumniate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+defamer|1
+(noun)|maligner|slanderer|vilifier|libeler|backbiter|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+defang|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+defat|1
+(verb)|get rid of (generic term)|remove (generic term)
+default|5
+(noun)|absence (generic term)
+(noun)|nonpayment|nonremittal|failure (generic term)
+(noun)|nonpayment|nonremittal|financial loss (generic term)|payment (antonym)
+(noun)|default option|option (generic term)|alternative (generic term)|choice (generic term)
+(verb)|default on|fail (generic term)|neglect (generic term)|pay up (antonym)
+default judgement|1
+(noun)|default judgment|judgment by default|judgement by default|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+default judgment|1
+(noun)|default judgement|judgment by default|judgement by default|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+default on|1
+(verb)|default|fail (generic term)|neglect (generic term)|pay up (antonym)
+default option|1
+(noun)|default|option (generic term)|alternative (generic term)|choice (generic term)
+defaulter|3
+(noun)|absentee (generic term)
+(noun)|deadbeat|debtor (generic term)|debitor (generic term)
+(noun)|contestant (generic term)
+defeasible|1
+(adj)|indefeasible (antonym)
+defeat|4
+(noun)|licking|ending (generic term)|conclusion (generic term)|finish (generic term)|failure (generic term)|victory (antonym)
+(noun)|frustration|disappointment (generic term)|letdown (generic term)
+(verb)|get the better of|overcome
+(verb)|kill|shoot down|vote down|vote out|veto (generic term)|blackball (generic term)|negative (generic term)
+defeated|3
+(adj)|licked (similar term)|subjugated (similar term)|unsuccessful (related term)|undefeated (antonym)
+(adj)|disappointed|discomfited|foiled|frustrated|thwarted|unsuccessful (similar term)
+(noun)|discomfited|people (generic term)
+defeatism|1
+(noun)|resignation (generic term)|surrender (generic term)
+defeatist|1
+(noun)|negativist|pessimist (generic term)
+defecate|1
+(verb)|stool|shit|take a shit|take a crap|ca-ca|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+defecation|1
+(noun)|laxation|shitting|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+defecation reflex|1
+(noun)|rectal reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+defecator|1
+(noun)|voider|shitter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+defect|5
+(noun)|imperfection (generic term)|imperfectness (generic term)
+(noun)|shortcoming|disadvantage (generic term)
+(noun)|fault|flaw|imperfection (generic term)|imperfectness (generic term)
+(noun)|blemish|mar|appearance (generic term)|visual aspect (generic term)
+(verb)|desert|flee (generic term)|fly (generic term)|take flight (generic term)
+defect of speech|1
+(noun)|speech disorder|speech defect|disorder (generic term)|upset (generic term)
+defection|2
+(noun)|desertion|abandonment|withdrawal (generic term)
+(noun)|apostasy|renunciation|rejection (generic term)
+defective|3
+(adj)|faulty|imperfect (similar term)
+(adj)|abnormal (similar term)
+(adj)|bad|malfunctioning (similar term)|nonfunctional (similar term)
+defective pleading|1
+(noun)|pleading (generic term)
+defectiveness|1
+(noun)|faultiness|imperfection (generic term)|imperfectness (generic term)
+defector|1
+(noun)|deserter|wrongdoer (generic term)|offender (generic term)
+defeminise|1
+(verb)|defeminize|alter (generic term)|neuter (generic term)|spay (generic term)|castrate (generic term)
+defeminize|1
+(verb)|defeminise|alter (generic term)|neuter (generic term)|spay (generic term)|castrate (generic term)
+defence|10
+(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defense|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+(noun)|defense|defending team|team (generic term)|squad (generic term)|offence (antonym)|offense (antonym)
+(noun)|defense|defense team|defense lawyers|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|prosecution (antonym)
+(noun)|defense|defense force|defence force|organization (generic term)|organisation (generic term)
+(noun)|refutation|defense|answer (generic term)
+(noun)|defense|vindication|justification (generic term)
+(noun)|defensive structure|defense|structure (generic term)|construction (generic term)
+(noun)|defense|denial|demurrer|due process (generic term)|due process of law (generic term)|prosecution (antonym)
+(noun)|defense|defensive measure|military action (generic term)|action (generic term)
+(noun)|defense|protection (generic term)
+defence force|1
+(noun)|defense|defence|defense force|organization (generic term)|organisation (generic term)
+defence mechanism|1
+(noun)|defense mechanism|defense reaction|defence reaction|defense|defence|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+defence policy|1
+(noun)|defense program|defense policy|defence program|program (generic term)|programme (generic term)
+defence program|1
+(noun)|defense program|defense policy|defence policy|program (generic term)|programme (generic term)
+defence reaction|1
+(noun)|defense mechanism|defense reaction|defence mechanism|defense|defence|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+defence system|1
+(noun)|defense system|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+defenceless|3
+(adj)|defenseless|vulnerable (similar term)
+(adj)|defenseless|unarmed (similar term)
+(adv)|defenseless|defenselessly|defencelessly
+defencelessly|1
+(adv)|defenseless|defenceless|defenselessly
+defencelessness|1
+(noun)|defenselessness|unprotectedness|vulnerability (generic term)
+defend|7
+(verb)|support|fend for|argue (generic term)|reason (generic term)
+(verb)|prevent (generic term)|keep (generic term)|attack (antonym)
+(verb)|guard|hold|protect (generic term)
+(verb)|fight|oppose|fight back|fight down|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|champion|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+(verb)|represent|prosecute (antonym)
+(verb)|maintain|affirm (generic term)
+defendable|1
+(adj)|defensible|invulnerable (similar term)
+defendant|1
+(noun)|suspect|litigant (generic term)|litigator (generic term)|plaintiff (antonym)
+defender|2
+(noun)|guardian|protector|shielder|preserver (generic term)
+(noun)|withstander|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+defender of the faith|1
+(noun)|Defender of the Faith|title (generic term)|title of respect (generic term)|form of address (generic term)
+defending|1
+(adj)|defensive (similar term)
+defending team|1
+(noun)|defense|defence|team (generic term)|squad (generic term)|offence (antonym)|offense (antonym)
+defenestrate|1
+(verb)|throw (generic term)
+defenestration|1
+(noun)|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+defense|11
+(noun)|defence|defending team|team (generic term)|squad (generic term)|offence (antonym)|offense (antonym)
+(noun)|defence|defensive measure|military action (generic term)|action (generic term)
+(noun)|defence|defense team|defense lawyers|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|prosecution (antonym)
+(noun)|defence|protection (generic term)
+(noun)|defensive structure|defence|structure (generic term)|construction (generic term)
+(noun)|refutation|defence|answer (generic term)
+(noun)|defence|vindication|justification (generic term)
+(noun)|defence|denial|demurrer|due process (generic term)|due process of law (generic term)|prosecution (antonym)
+(noun)|defence|defense force|defence force|organization (generic term)|organisation (generic term)
+(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department (generic term)
+(noun)|defense mechanism|defense reaction|defence mechanism|defence reaction|defence|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+defense advanced research projects agency|1
+(noun)|Defense Advanced Research Projects Agency|DARPA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+defense attorney|1
+(noun)|defense lawyer|lawyer (generic term)|attorney (generic term)
+defense contractor|1
+(noun)|contractor (generic term)
+defense department|1
+(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department (generic term)
+defense force|1
+(noun)|defense|defence|defence force|organization (generic term)|organisation (generic term)
+defense information systems agency|1
+(noun)|Defense Information Systems Agency|DISA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+defense intelligence agency|1
+(noun)|Defense Intelligence Agency|DIA|military intelligence (generic term)|military intelligence agency (generic term)|United States intelligence agency (generic term)
+defense laboratory|1
+(noun)|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+defense lawyer|1
+(noun)|defense attorney|lawyer (generic term)|attorney (generic term)
+defense lawyers|1
+(noun)|defense|defence|defense team|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|prosecution (antonym)
+defense logistics agency|1
+(noun)|Defense Logistics Agency|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+defense mechanism|1
+(noun)|defense reaction|defence mechanism|defence reaction|defense|defence|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+defense policy|1
+(noun)|defense program|defence program|defence policy|program (generic term)|programme (generic term)
+defense program|1
+(noun)|defense policy|defence program|defence policy|program (generic term)|programme (generic term)
+defense reaction|1
+(noun)|defense mechanism|defence mechanism|defence reaction|defense|defence|psychoanalytic process (generic term)|process (generic term)|unconscious process (generic term)
+defense reutilization and marketing service|1
+(noun)|Defense Reutilization and Marketing Service|DRMS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+defense secretary|2
+(noun)|Secretary of Defense|Defense Secretary|secretary (generic term)
+(noun)|Secretary of Defense|Defense Secretary|secretaryship (generic term)
+defense system|1
+(noun)|defence system|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+defense team|1
+(noun)|defense|defence|defense lawyers|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|prosecution (antonym)
+defense technical information center|1
+(noun)|Defense Technical Information Center|DTIC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+defenseless|4
+(adj)|defenceless|vulnerable (similar term)
+(adj)|naked|unprotected (similar term)
+(adj)|defenceless|unarmed (similar term)
+(adv)|defenceless|defenselessly|defencelessly
+defenselessly|1
+(adv)|defenseless|defenceless|defencelessly
+defenselessness|1
+(noun)|defencelessness|unprotectedness|vulnerability (generic term)
+defensibility|1
+(noun)|capability (generic term)|capableness (generic term)
+defensible|1
+(adj)|defendable|invulnerable (similar term)
+defensive|4
+(adj)|antiaircraft (similar term)|antisubmarine (similar term)|antitank (similar term)|defending (similar term)|en garde (similar term)|protective (related term)|offensive (antonym)
+(adj)|justificative|justificatory|apologetic (similar term)|excusatory (similar term)
+(adj)|protective (similar term)
+(noun)|defensive attitude|attitude (generic term)|mental attitude (generic term)
+defensive attitude|1
+(noun)|defensive|attitude (generic term)|mental attitude (generic term)
+defensive measure|1
+(noun)|defense|defence|military action (generic term)|action (generic term)
+defensive structure|1
+(noun)|defense|defence|structure (generic term)|construction (generic term)
+defensively|1
+(adv)|offensively (antonym)
+defensiveness|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)
+defer|2
+(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|remit|put off|delay (generic term)
+(verb)|submit|bow|accede|give in|yield (generic term)|give in (generic term)|succumb (generic term)|knuckle under (generic term)|buckle under (generic term)
+deference|3
+(noun)|respect|politeness (generic term)|civility (generic term)
+(noun)|respect|respectfulness|courtesy (generic term)|good manners (generic term)
+(noun)|complaisance|compliance|compliancy|obligingness|agreeableness (generic term)|agreeability (generic term)
+deferent|1
+(adj)|deferential|regardful|respectful (similar term)
+deferential|1
+(adj)|deferent|regardful|respectful (similar term)
+deferentially|1
+(adv)|submissively
+deferment|1
+(noun)|postponement|deferral|delay (generic term)|holdup (generic term)
+deferral|2
+(noun)|recess|abeyance (generic term)|suspension (generic term)
+(noun)|postponement|deferment|delay (generic term)|holdup (generic term)
+deferred|1
+(adj)|postponed|delayed (similar term)
+deferred payment|1
+(noun)|credit|payment (generic term)|cash (antonym)
+defervesce|1
+(verb)|change (generic term)
+defervescence|1
+(noun)|suspension (generic term)|respite (generic term)|reprieve (generic term)|hiatus (generic term)|abatement (generic term)
+defervescent|1
+(adj)|suspension|respite|reprieve|hiatus|abatement (related term)
+defiance|3
+(noun)|rebelliousness|intractability (generic term)|intractableness (generic term)
+(noun)|challenge (generic term)
+(noun)|resistance (generic term)
+defiant|1
+(adj)|noncompliant|insubordinate (similar term)|resistant (similar term)|resistive (similar term)|obstreperous (similar term)|recalcitrant (similar term)|disobedient (related term)|insubordinate (related term)|intractable (related term)|unmanageable (related term)|difficult (related term)|unwilling (related term)|compliant (antonym)
+defiantly|1
+(adv)|rebelliously|contumaciously
+defibrillate|1
+(verb)|restore (generic term)|reconstruct (generic term)
+defibrillation|1
+(noun)|medical care (generic term)|medical aid (generic term)
+defibrillator|1
+(noun)|electronic device (generic term)
+defibrinate|1
+(verb)|get rid of (generic term)|remove (generic term)
+deficiency|2
+(noun)|lack|want|need (generic term)|demand (generic term)
+(noun)|insufficiency|inadequacy|amount (generic term)|adequacy (antonym)|sufficiency (antonym)
+deficiency disease|1
+(noun)|disease (generic term)
+deficient|3
+(adj)|lacking|wanting|inadequate (similar term)
+(adj)|insufficient|depleted (similar term)|low (similar term)|inadequate (similar term)|poor (similar term)|short (similar term)|lean (similar term)|skimpy (similar term)|light (similar term)|scant (similar term)|short (similar term)|scarce (similar term)|shy (similar term)|too little (similar term)|meager (related term)|meagre (related term)|meagerly (related term)|stingy (related term)|scrimpy (related term)|sufficient (antonym)
+(adj)|inferior|substandard|nonstandard (similar term)
+deficit|4
+(noun)|shortage|shortfall|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+(noun)|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|score (generic term)|lead (antonym)
+(noun)|liabilities (generic term)
+deficit spending|1
+(noun)|compensatory spending|pump priming|spending (generic term)|disbursement (generic term)|disbursal (generic term)|outlay (generic term)
+defilade|1
+(noun)|fortification (generic term)|munition (generic term)
+defile|4
+(noun)|gorge|pass (generic term)|mountain pass (generic term)|notch (generic term)
+(verb)|sully|corrupt|taint|cloud|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|tarnish|stain|maculate|sully|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+(verb)|foul|befoul|maculate|dishonor (generic term)|disgrace (generic term)|dishonour (generic term)|attaint (generic term)|shame (generic term)
+defiled|2
+(adj)|maculate|impure (similar term)
+(adj)|unclean (similar term)|impure (similar term)
+defilement|1
+(noun)|befoulment|pollution|dirtiness (generic term)|uncleanness (generic term)
+defiler|1
+(noun)|polluter|bad person (generic term)
+definable|1
+(adj)|determinable (similar term)
+define|4
+(verb)|specify (generic term)|set (generic term)|determine (generic term)|fix (generic term)|limit (generic term)
+(verb)|specify|delineate|delimit|delimitate|be (generic term)
+(verb)|characterize (generic term)|characterise (generic term)
+(verb)|delineate|show (generic term)
+defined|3
+(adj)|characterized (similar term)|characterised (similar term)|circumscribed (similar term)|delimited (similar term)|definite (related term)|undefined (antonym)
+(adj)|outlined|distinct (similar term)
+(adj)|formed|settled|definite (similar term)
+defining|1
+(noun)|shaping|process (generic term)|physical process (generic term)
+definite|2
+(adj)|certain (similar term)|decisive (similar term)|defined (similar term)|formed (similar term)|settled (similar term)|distinct (similar term)|decided (similar term)|clear (related term)|defined (related term)|distinct (related term)|explicit (related term)|expressed (related term)|indefinite (antonym)
+(adj)|certain (similar term)
+definite article|1
+(noun)|article (generic term)
+definite integral|1
+(noun)|integral (generic term)
+definite quantity|1
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+definitely|1
+(adv)|decidedly|unquestionably|emphatically|in spades|by all odds
+definiteness|1
+(noun)|determinateness|predictability (generic term)
+definition|2
+(noun)|explanation (generic term)|account (generic term)
+(noun)|distinctness (generic term)|sharpness (generic term)
+definitive|3
+(adj)|unequivocal|explicit (similar term)|expressed (similar term)
+(adj)|authoritative|classical|standard (similar term)
+(adj)|determinate|conclusive (similar term)
+definitive host|1
+(noun)|host (generic term)
+deflagrate|1
+(verb)|burn (generic term)|combust (generic term)
+deflagration|1
+(noun)|combustion (generic term)|burning (generic term)
+deflate|6
+(verb)|collapse (generic term)
+(verb)|turn (generic term)|release (generic term)
+(verb)|puncture|deprecate (generic term)|depreciate (generic term)|vilipend (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|inflate (antonym)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)|inflate (antonym)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|inflate (antonym)
+deflated|2
+(adj)|chapfallen|chopfallen|crestfallen|dejected (similar term)
+(adj)|flat (similar term)|inflated (antonym)
+deflation|3
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+(noun)|economic process (generic term)|inflation (antonym)|disinflation (antonym)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|inflation (antonym)
+deflationary|1
+(adj)|inflationary (antonym)
+deflator|1
+(noun)|factor (generic term)
+deflect|5
+(verb)|debar|obviate|avert|head off|stave off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|bend|turn away|turn (generic term)
+(verb)|turn (generic term)
+(verb)|distract|confuse (generic term)|flurry (generic term)|disconcert (generic term)|put off (generic term)
+(verb)|parry|block|fence (generic term)
+deflection|5
+(noun)|warp|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+(noun)|deflexion|refraction|bending (generic term)|bend (generic term)
+(noun)|deflexion|movement (generic term)|motion (generic term)
+(noun)|deflexion|bending|physical property (generic term)
+(noun)|diversion|deviation|digression|deflexion|divagation|turn (generic term)|turning (generic term)
+deflective|1
+(adj)|refractive|crooked (similar term)
+deflector|1
+(noun)|device (generic term)
+deflexion|4
+(noun)|deflection|refraction|bending (generic term)|bend (generic term)
+(noun)|deflection|movement (generic term)|motion (generic term)
+(noun)|deflection|bending|physical property (generic term)
+(noun)|diversion|deviation|digression|deflection|divagation|turn (generic term)|turning (generic term)
+defloration|2
+(noun)|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+(noun)|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+deflower|2
+(verb)|ruin|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|mar|impair|spoil|vitiate|damage (generic term)
+defoe|1
+(noun)|Defoe|Daniel Defoe|writer (generic term)|author (generic term)
+defog|1
+(verb)|demist|change (generic term)|alter (generic term)|modify (generic term)
+defoliant|1
+(noun)|compound (generic term)|chemical compound (generic term)
+defoliate|2
+(adj)|defoliated|leafless (similar term)
+(verb)|denude (generic term)|bare (generic term)|denudate (generic term)|strip (generic term)
+defoliated|1
+(adj)|defoliate|leafless (similar term)
+defoliation|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|change of state (generic term)
+defoliator|1
+(noun)|insect (generic term)
+deforest|1
+(verb)|disforest|disafforest|clear (generic term)
+deforestation|2
+(noun)|environmental condition (generic term)
+(noun)|disforestation|denudation (generic term)|stripping (generic term)|uncovering (generic term)|baring (generic term)|husking (generic term)
+deform|6
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|contort|distort|wring|twist (generic term)|twine (generic term)|distort (generic term)
+(verb)|flex|bend|twist|turn|change shape (generic term)|change form (generic term)|deform (generic term)|unbend (antonym)
+(verb)|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|distort|strain|shape (generic term)|form (generic term)
+(verb)|change shape|change form|change (generic term)
+deformation|3
+(noun)|distortion|damage (generic term)|harm (generic term)|impairment (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|contortion|change of shape (generic term)
+deformational|1
+(adj)|change|alteration|modification (related term)
+deformed|1
+(adj)|distorted|ill-shapen|malformed|misshapen|unshapely (similar term)
+deformity|2
+(noun)|malformation|misshapenness|affliction (generic term)
+(noun)|disfigurement|disfiguration|appearance (generic term)|visual aspect (generic term)
+defraud|1
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+defrauder|1
+(noun)|swindler|chiseller|chiseler|gouger|scammer|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+defray|1
+(verb)|pay (generic term)
+defrayal|1
+(noun)|payment|defrayment|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)|nonpayment (antonym)
+defrayment|1
+(noun)|payment|defrayal|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)|nonpayment (antonym)
+defrock|1
+(verb)|unfrock|divest (generic term)|disinvest (generic term)
+defrost|1
+(verb)|deice|de-ice|dissolve (generic term)|thaw (generic term)|unfreeze (generic term)|unthaw (generic term)|dethaw (generic term)|melt (generic term)
+defroster|1
+(noun)|deicer|heater (generic term)|warmer (generic term)
+deft|1
+(adj)|dexterous|dextrous|adroit (similar term)
+deftly|1
+(adv)|dexterously|dextrously
+deftness|1
+(noun)|adeptness|adroitness|facility|quickness|skillfulness (generic term)
+defunct|2
+(adj)|dead|inoperative (similar term)
+(adj)|dead (similar term)
+defunctness|1
+(noun)|extinction|death (generic term)
+defuse|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|fuse (antonym)
+defusing|1
+(noun)|deactivation|termination (generic term)|ending (generic term)|conclusion (generic term)|activation (antonym)
+defy|3
+(verb)|withstand|hold|hold up|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|resist|refuse|elude (generic term)|escape (generic term)|lend oneself (antonym)
+(verb)|dare|challenge (generic term)
+degage|2
+(adj)|relaxed (similar term)
+(adj)|detached|uninvolved|unconcerned (similar term)
+degas|2
+(noun)|Degas|Edgar Degas|Hilaire Germain Edgar Degas|painter (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+degauss|1
+(verb)|demagnetize|demagnetise|change (generic term)|alter (generic term)|modify (generic term)|magnetise (antonym)|magnetize (antonym)
+degaussing|1
+(noun)|demagnetization (generic term)|demagnetisation (generic term)
+degeneracy|2
+(noun)|degeneration|decadence|decadency|abasement (generic term)|degradation (generic term)|abjection (generic term)
+(noun)|corruption|depravation|depravity|putrefaction|immorality (generic term)
+degenerate|3
+(adj)|debauched|degraded|dissipated|dissolute|libertine|profligate|riotous|fast|immoral (similar term)
+(noun)|pervert|deviant|deviate|reprobate (generic term)|miscreant (generic term)
+(verb)|devolve|deteriorate|drop|worsen (generic term)|decline (generic term)|recuperate (antonym)
+degeneration|3
+(noun)|devolution|process (generic term)|physical process (generic term)|evolution (antonym)
+(noun)|degeneracy|decadence|decadency|abasement (generic term)|degradation (generic term)|abjection (generic term)
+(noun)|retrogression|transformation (generic term)|transmutation (generic term)|shift (generic term)
+degenerative|1
+(adj)|chronic (similar term)
+degenerative arthritis|1
+(noun)|osteoarthritis|degenerative joint disease|arthritis (generic term)
+degenerative disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+degenerative joint disease|1
+(noun)|osteoarthritis|degenerative arthritis|arthritis (generic term)
+deglaze|1
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+deglutition|1
+(noun)|swallow|drink|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+deglycerolise|1
+(verb)|deglycerolize|draw (generic term)|take out (generic term)|glycerolize (antonym)
+deglycerolize|1
+(verb)|deglycerolise|draw (generic term)|take out (generic term)|glycerolize (antonym)
+degradation|2
+(noun)|debasement|change of state (generic term)
+(noun)|abasement|abjection|humiliation (generic term)
+degrade|3
+(verb)|aggrade (antonym)
+(verb)|take down|disgrace|demean|put down|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|cheapen|worsen (generic term)|aggravate (generic term)|exacerbate (generic term)|exasperate (generic term)
+degraded|2
+(adj)|debauched|degenerate|dissipated|dissolute|libertine|profligate|riotous|fast|immoral (similar term)
+(adj)|debased|devalued|low (similar term)
+degrader|1
+(noun)|debaser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+degrading|2
+(adj)|corrupting|noxious (similar term)|harmful (similar term)
+(adj)|debasing|dishonorable (similar term)|dishonourable (similar term)
+degrease|1
+(verb)|get rid of (generic term)|remove (generic term)
+degree|7
+(noun)|grade|level|property (generic term)
+(noun)|level|stage|point|state (generic term)
+(noun)|academic degree|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|temperature unit (generic term)
+(noun)|arcdegree|angular unit (generic term)
+(noun)|exponent (generic term)|power (generic term)|index (generic term)
+(noun)|magnitude (generic term)
+degree celsius|1
+(noun)|degree centigrade|degree Celsius|C|degree (generic term)
+degree centigrade|1
+(noun)|degree Celsius|C|degree (generic term)
+degree day|2
+(noun)|commencement day|day (generic term)
+(noun)|temperature unit (generic term)
+degree fahrenheit|1
+(noun)|degree Fahrenheit|F|degree (generic term)
+degree of a polynomial|1
+(noun)|degree (generic term)
+degree of a term|1
+(noun)|degree (generic term)
+degree of freedom|2
+(noun)|variable (generic term)|variable quantity (generic term)
+(noun)|parameter (generic term)|parametric quantity (generic term)
+degree program|1
+(noun)|course of study (generic term)|program (generic term)|programme (generic term)|curriculum (generic term)|syllabus (generic term)
+degressive|2
+(adj)|descending (similar term)
+(adj)|progressive (similar term)
+degust|1
+(verb)|sample (generic term)|try (generic term)|try out (generic term)|taste (generic term)
+degustation|1
+(noun)|tasting|savoring|savouring|relishing|eating (generic term)|feeding (generic term)
+dehisce|1
+(verb)|erupt (generic term)|come out (generic term)|break through (generic term)|push through (generic term)
+dehiscence|1
+(noun)|organic phenomenon (generic term)
+dehiscent|1
+(adj)|indehiscent (antonym)
+dehong dai|1
+(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai (generic term)
+dehorn|2
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|take off (generic term)
+dehumanisation|1
+(noun)|dehumanization|degradation (generic term)|debasement (generic term)
+dehumanise|2
+(verb)|dehumanize|take down (generic term)|degrade (generic term)|disgrace (generic term)|demean (generic term)|put down (generic term)|humanize (antonym)
+(verb)|dehumanize|mechanize (generic term)|mechanise (generic term)
+dehumanised|1
+(adj)|dehumanized|unhuman|nonhuman (similar term)
+dehumanization|1
+(noun)|dehumanisation|degradation (generic term)|debasement (generic term)
+dehumanize|2
+(verb)|dehumanise|take down (generic term)|degrade (generic term)|disgrace (generic term)|demean (generic term)|put down (generic term)|humanize (antonym)
+(verb)|dehumanise|mechanize (generic term)|mechanise (generic term)
+dehumanized|1
+(adj)|dehumanised|unhuman|nonhuman (similar term)
+dehumidify|1
+(verb)|dry (generic term)|dry out (generic term)|humidify (antonym)
+dehydrate|3
+(verb)|desiccate|preserve (generic term)|keep (generic term)
+(verb)|desiccate|dry (generic term)|dry out (generic term)
+(verb)|exsiccate|dry up|desiccate|dry (generic term)|dry out (generic term)|hydrate (antonym)
+dehydrated|2
+(adj)|unhealthy (similar term)
+(adj)|dried|desiccated|preserved (similar term)
+dehydrated food|1
+(noun)|dehydrated foods|foodstuff (generic term)|food product (generic term)
+dehydrated foods|1
+(noun)|dehydrated food|foodstuff (generic term)|food product (generic term)
+dehydration|3
+(noun)|desiccation|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+(noun)|thirst (generic term)|thirstiness (generic term)
+(noun)|desiccation|drying up|evaporation|extraction (generic term)
+dehydrogenate|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|hydrogenate (antonym)
+dehydroretinol|1
+(noun)|vitamin A2|vitamin A (generic term)|antiophthalmic factor (generic term)|axerophthol (generic term)|A (generic term)
+deice|1
+(verb)|defrost|de-ice|dissolve (generic term)|thaw (generic term)|unfreeze (generic term)|unthaw (generic term)|dethaw (generic term)|melt (generic term)
+deicer|1
+(noun)|defroster|heater (generic term)|warmer (generic term)
+deictic|2
+(adj)|semantics (related term)
+(noun)|deictic word|word (generic term)
+deictic word|1
+(noun)|deictic|word (generic term)
+deific|1
+(adj)|immortal (similar term)
+deification|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|embodiment (generic term)|incarnation (generic term)|avatar (generic term)
+(noun)|exaltation|apotheosis|worship (generic term)
+deify|2
+(verb)|idealize (generic term)|idealise (generic term)
+(verb)|exalt (generic term)
+deign|1
+(verb)|condescend|descend|act (generic term)|move (generic term)
+deimos|1
+(noun)|Deimos|satellite (generic term)
+deinocheirus|1
+(noun)|ornithomimid (generic term)
+deinonychus|1
+(noun)|maniraptor (generic term)
+deionize|1
+(verb)|get rid of (generic term)|remove (generic term)
+deipnosophist|1
+(noun)|conversationalist (generic term)|conversationist (generic term)|schmoozer (generic term)
+deism|1
+(noun)|free thought|rationalism (generic term)
+deist|2
+(adj)|deistic|rationalism (related term)
+(noun)|freethinker|nonreligious person (generic term)
+deistic|1
+(adj)|deist|rationalism (related term)
+deity|1
+(noun)|divinity|god|immortal|spiritual being (generic term)|supernatural being (generic term)
+deixis|1
+(noun)|semantics (generic term)
+deja vu|1
+(noun)|reminder (generic term)
+deject|1
+(verb)|depress|cast down|get down|dismay|dispirit|demoralize|demoralise|discourage (generic term)|elate (antonym)
+dejected|1
+(adj)|amort (similar term)|chapfallen (similar term)|chopfallen (similar term)|crestfallen (similar term)|deflated (similar term)|blue (similar term)|depressed (similar term)|dispirited (similar term)|down (similar term)|downcast (similar term)|downhearted (similar term)|down in the mouth (similar term)|low (similar term)|low-spirited (similar term)|glum (similar term)|gloomy (similar term)|long-faced (similar term)|lonely (similar term)|lonesome (similar term)|dysphoric (related term)|distressed (related term)|unhappy (related term)|unhappy (related term)|elated (antonym)
+dejectedly|1
+(adv)|in low spirits
+dejectedness|1
+(noun)|downheartedness|low-spiritedness|lowness|dispiritedness|sadness (generic term)|unhappiness (generic term)
+dejection|2
+(noun)|depression (generic term)
+(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|ordure|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+dejeuner|1
+(noun)|lunch|luncheon|tiffin|meal (generic term)|repast (generic term)
+dekagram|1
+(noun)|decagram|dkg|dag|metric weight unit (generic term)|weight unit (generic term)
+dekaliter|1
+(noun)|dekalitre|decaliter|decalitre|dal|dkl|metric capacity unit (generic term)
+dekalitre|1
+(noun)|dekaliter|decaliter|decalitre|dal|dkl|metric capacity unit (generic term)
+dekameter|1
+(noun)|decameter|decametre|dekametre|dam|dkm|metric linear unit (generic term)
+dekametre|1
+(noun)|decameter|dekameter|decametre|dam|dkm|metric linear unit (generic term)
+dekker|1
+(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+dekko|1
+(noun)|look (generic term)|looking (generic term)|looking at (generic term)
+del rio|1
+(noun)|Del Rio|town (generic term)
+delacroix|1
+(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter (generic term)
+delairea|1
+(noun)|Delairea|genus Delairea|asterid dicot genus (generic term)
+delairea odorata|1
+(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine (generic term)
+delapidate|1
+(verb)|decay|crumble|change (generic term)
+delavirdine|1
+(noun)|Rescriptor|non-nucleoside reverse transcriptase inhibitor (generic term)|NNRTI (generic term)
+delaware|5
+(noun)|Delaware|Delaware River|river (generic term)
+(noun)|Delaware|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Delaware|Colony (generic term)
+(noun)|Delaware|Diamond State|First State|DE|American state (generic term)
+(noun)|Delaware|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+delaware bay|1
+(noun)|Delaware Bay|bay (generic term)|embayment (generic term)
+delaware memorial bridge|1
+(noun)|Delaware Memorial Bridge|suspension bridge (generic term)
+delaware river|1
+(noun)|Delaware|Delaware River|river (generic term)
+delawarean|1
+(noun)|Delawarean|Delawarian|American (generic term)
+delawarian|1
+(noun)|Delawarean|Delawarian|American (generic term)
+delay|6
+(noun)|hold|time lag|postponement|wait|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|holdup|inactivity (generic term)
+(verb)|detain|hold up|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)|rush (antonym)
+(verb)|wait (generic term)|hold off (generic term)|hold back (generic term)
+(verb)|stay|detain|check (generic term)|retard (generic term)|delay (generic term)
+(verb)|check|retard|change (generic term)|alter (generic term)|modify (generic term)
+delay line|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+delayed|2
+(adj)|abeyant (similar term)|suspended (similar term)|delayed-action (similar term)|deferred (similar term)|postponed (similar term)|held up (similar term)|slow (related term)|expedited (antonym)
+(adj)|retarded (similar term)
+delayed-action|1
+(adj)|delayed (similar term)
+delayed action|1
+(noun)|mechanism (generic term)
+delayed allergy|1
+(noun)|type IV allergic reaction|allergy (generic term)|allergic reaction (generic term)
+delayer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+delbruck|1
+(noun)|Delbruck|Max Delbruck|biologist (generic term)|life scientist (generic term)
+delectability|1
+(noun)|deliciousness|lusciousness|toothsomeness|appetizingness (generic term)|appetisingness (generic term)
+delectable|2
+(adj)|delicious|luscious|pleasant-tasting|scrumptious|toothsome|yummy|tasty (similar term)
+(adj)|sexually attractive|desirable (similar term)
+delectation|2
+(noun)|delight|pleasure (generic term)|pleasance (generic term)
+(noun)|enjoyment|activity (generic term)
+delegacy|3
+(noun)|representation|agency|state (generic term)
+(noun)|deputation|commission|delegation|mission|organization (generic term)|organisation (generic term)
+(noun)|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+delegate|3
+(noun)|representative (generic term)
+(verb)|depute|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|designate|depute|assign|appoint (generic term)|charge (generic term)
+delegating|1
+(noun)|delegation|relegating|relegation|deputation|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+delegation|2
+(noun)|deputation|commission|delegacy|mission|organization (generic term)|organisation (generic term)
+(noun)|delegating|relegating|relegation|deputation|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+delete|3
+(verb)|cancel|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|erase|take away (generic term)|take out (generic term)|record (antonym)
+(verb)|edit|blue-pencil|censor (generic term)
+deleterious|1
+(adj)|hurtful|injurious|harmful (similar term)
+deletion|4
+(noun)|omission|linguistic process (generic term)
+(noun)|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+(noun)|excision|cut|editing (generic term)|redaction (generic term)
+(noun)|removal (generic term)|remotion (generic term)
+delf|1
+(noun)|excavation (generic term)
+delft|1
+(noun)|earthenware (generic term)
+delhi|1
+(noun)|Delhi|Old Delhi|city (generic term)|metropolis (generic term)|urban center (generic term)
+delhi boil|1
+(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+deli|1
+(noun)|delicatessen|food shop|shop (generic term)|store (generic term)
+deliberate|7
+(adj)|intentional|knowing|intended (similar term)
+(adj)|careful|measured|unhurried (similar term)
+(adj)|studied|affected (related term)|unnatural (related term)|unstudied (antonym)
+(adj)|thoughtful (similar term)
+(adj)|calculated|measured|premeditated (similar term)
+(verb)|consider|debate|moot|turn over|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|debate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+deliberate defence|1
+(noun)|deliberate defense|defense (generic term)|defence (generic term)|defensive measure (generic term)
+deliberate defense|1
+(noun)|deliberate defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+deliberately|2
+(adv)|intentionally|designedly|on purpose|purposely|advisedly|by choice|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+(adv)|measuredly
+deliberateness|2
+(noun)|slowness|deliberation|unhurriedness|pace (generic term)|rate (generic term)
+(noun)|deliberation|thoughtfulness (generic term)
+deliberation|5
+(noun)|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|weighing|advisement|consideration (generic term)
+(noun)|calculation|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|slowness|deliberateness|unhurriedness|pace (generic term)|rate (generic term)
+(noun)|deliberateness|thoughtfulness (generic term)
+deliberative|1
+(adj)|thoughtful (similar term)
+delibes|1
+(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer (generic term)
+delible|1
+(adj)|eradicable (similar term)
+delicacy|7
+(noun)|daintiness|fineness|elegance (generic term)
+(noun)|dainty|goody|kickshaw|treat|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|discretion|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|slightness|smallness (generic term)|littleness (generic term)
+(noun)|fragility|weakness (generic term)
+(noun)|diplomacy|discreetness|finesse|tact (generic term)|tactfulness (generic term)
+(noun)|airiness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+delicate|7
+(adj)|dainty (similar term)|exquisite (similar term)|ethereal (similar term)|gossamer (similar term)|fragile (similar term)|half-hardy (similar term)|light-handed (similar term)|overdelicate (similar term)|pastel (similar term)|subtle (similar term)|tender (similar term)|breakable (related term)|frail (related term)|weak (related term)|rugged (antonym)
+(adj)|skilled (similar term)
+(adj)|fragile|frail|breakable (similar term)
+(adj)|soft|tender (similar term)|untoughened (similar term)
+(adj)|finespun|refined (similar term)
+(adj)|ticklish|touchy|difficult (similar term)|hard (similar term)
+(adj)|sensitive (similar term)
+delicately|1
+(adv)|finely|fine|exquisitely
+delicatessen|2
+(noun)|delicatessen food|convenience food (generic term)
+(noun)|deli|food shop|shop (generic term)|store (generic term)
+delicatessen food|1
+(noun)|delicatessen|convenience food (generic term)
+delichon|1
+(noun)|Delichon|genus Delichon|bird genus (generic term)
+delichon urbica|1
+(noun)|house martin|Delichon urbica|martin (generic term)
+delicious|3
+(adj)|delightful|pleasing (similar term)
+(adj)|delectable|luscious|pleasant-tasting|scrumptious|toothsome|yummy|tasty (similar term)
+(noun)|Delicious|eating apple (generic term)|dessert apple (generic term)
+deliciously|2
+(adv)|pleasurably
+(adv)|lusciously|scrumptiously
+deliciousness|1
+(noun)|delectability|lusciousness|toothsomeness|appetizingness (generic term)|appetisingness (generic term)
+delight|5
+(noun)|delectation|pleasure (generic term)|pleasance (generic term)
+(noun)|joy|pleasure|positive stimulus (generic term)
+(verb)|please|satisfy (generic term)|gratify (generic term)|displease (antonym)
+(verb)|enjoy|revel
+(verb)|enchant|enrapture|transport|enthrall|ravish|enthral|please (generic term)|delight (generic term)|disenchant (antonym)
+delighted|2
+(adj)|pleased (similar term)
+(adj)|beguiled|captivated|charmed|enthralled|entranced|enchanted (similar term)
+delightful|1
+(adj)|delicious|pleasing (similar term)
+delilah|2
+(noun)|Delilah|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+(noun)|enchantress|temptress|siren|Delilah|femme fatale|woman (generic term)|adult female (generic term)
+delimit|3
+(verb)|specify|define|delineate|delimitate|be (generic term)
+(verb)|subtend|be (generic term)
+(verb)|demarcate|delimitate|limit (generic term)|circumscribe (generic term)|confine (generic term)
+delimitate|2
+(verb)|specify|define|delineate|delimit|be (generic term)
+(verb)|demarcate|delimit|limit (generic term)|circumscribe (generic term)|confine (generic term)
+delimitation|1
+(noun)|boundary line|border|borderline|mete|boundary (generic term)|bound (generic term)|bounds (generic term)
+delimited|2
+(adj)|bounded|finite (similar term)
+(adj)|circumscribed|defined (similar term)
+delineate|6
+(adj)|delineated|represented|depicted (similar term)|pictured (similar term)|portrayed (similar term)|described (similar term)|diagrammatic (similar term)|diagrammatical (similar term)|undelineated (antonym)
+(verb)|define|show (generic term)
+(verb)|specify|define|delimit|delimitate|be (generic term)
+(verb)|limn|outline|draw (generic term)
+(verb)|trace|draw|line|describe|mark (generic term)
+(verb)|describe (generic term)|depict (generic term)|draw (generic term)
+delineated|1
+(adj)|represented|delineate|depicted (similar term)|pictured (similar term)|portrayed (similar term)|described (similar term)|diagrammatic (similar term)|diagrammatical (similar term)|undelineated (antonym)
+delineation|3
+(noun)|word picture|word-painting|depiction|picture|characterization|characterisation|description (generic term)|verbal description (generic term)
+(noun)|depiction|limning|line drawing|drawing (generic term)
+(noun)|depiction|portrayal|pictorial representation (generic term)|picturing (generic term)
+delineative|1
+(adj)|depictive|representational (similar term)
+delinquency|3
+(noun)|nonpayment (generic term)|default (generic term)|nonremittal (generic term)
+(noun)|dereliction|willful neglect|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+(noun)|juvenile delinquency|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+delinquent|5
+(adj)|guilty (similar term)
+(adj)|derelict|neglectful|remiss|negligent (similar term)
+(adj)|incorrigible (similar term)
+(adj)|overdue|due (similar term)|owed (similar term)
+(noun)|juvenile delinquent|wrongdoer (generic term)|offender (generic term)
+deliquesce|2
+(verb)|decay (generic term)
+(verb)|dissolve (generic term)|thaw (generic term)|unfreeze (generic term)|unthaw (generic term)|dethaw (generic term)|melt (generic term)
+deliquescent|1
+(adj)|hydrophilic (similar term)
+deliquium|1
+(noun)|faint|swoon|syncope|loss of consciousness (generic term)
+delirious|2
+(adj)|hallucinating|ill (similar term)|sick (similar term)
+(adj)|excited|frantic|mad|unrestrained|wild (similar term)
+delirium|2
+(noun)|craze|frenzy|fury|hysteria|mania (generic term)|manic disorder (generic term)
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+delirium tremens|1
+(noun)|DTs|psychosis (generic term)
+delist|1
+(verb)|get rid of (generic term)|remove (generic term)
+delius|1
+(noun)|Delius|Frederick Delius|composer (generic term)
+deliver|12
+(verb)|present|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|bring (generic term)|get (generic term)|convey (generic term)|fetch (generic term)
+(verb)|hand over|fork over|fork out|fork up|turn in|get in|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|rescue|save (generic term)|carry through (generic term)|pull through (generic term)|bring through (generic term)
+(verb)|extradite|deport|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|render|return|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|redeem|save
+(verb)|drive home|give (generic term)
+(verb)|surrender|cede|give up|give (generic term)|gift (generic term)|present (generic term)
+(verb)|pitch|throw (generic term)
+(verb)|give birth|bear|birth|have|produce (generic term)|bring forth (generic term)
+deliver the goods|1
+(verb)|succeed|win|come through|bring home the bacon|fail (antonym)
+deliverable|2
+(adj)|transportation|transfer|transferral|conveyance (related term)
+(noun)|product (generic term)|production (generic term)
+deliverance|1
+(noun)|rescue|delivery|saving|recovery (generic term)|retrieval (generic term)
+deliverer|4
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+(noun)|savior|saviour|rescuer|benefactor (generic term)|helper (generic term)
+(noun)|deliveryman|delivery boy|employee (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+delivery|7
+(noun)|bringing|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)
+(noun)|manner of speaking|speech|expressive style (generic term)|style (generic term)
+(noun)|livery|legal transfer|conveyance (generic term)|conveyance of title (generic term)|conveyancing (generic term)|conveying (generic term)
+(noun)|pitch|throw (generic term)
+(noun)|rescue|deliverance|saving|recovery (generic term)|retrieval (generic term)
+(noun)|obstetrical delivery|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+delivery boy|1
+(noun)|deliveryman|deliverer|employee (generic term)
+delivery truck|1
+(noun)|delivery van|panel truck|van (generic term)
+delivery van|1
+(noun)|delivery truck|panel truck|van (generic term)
+deliveryman|1
+(noun)|delivery boy|deliverer|employee (generic term)
+dell|1
+(noun)|dingle|hollow (generic term)|holler (generic term)
+delmonico steak|1
+(noun)|Delmonico steak|club steak|beefsteak (generic term)
+delocalize|1
+(verb)|get rid of (generic term)|remove (generic term)
+delonix|1
+(noun)|Delonix|genus Delonix|rosid dicot genus (generic term)
+delonix regia|1
+(noun)|royal poinciana|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+delorme|1
+(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect (generic term)|designer (generic term)
+delouse|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+delphi|1
+(noun)|Delphi|city (generic term)|metropolis (generic term)|urban center (generic term)
+delphian|1
+(adj)|Delphic|Delphian|city|metropolis|urban center (related term)
+delphic|2
+(adj)|Delphic|Delphian|city|metropolis|urban center (related term)
+(adj)|Delphic|oracular|prophetic (similar term)|prophetical (similar term)
+delphic oracle|1
+(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle (generic term)
+delphinapterus|1
+(noun)|Delphinapterus|genus Delphinapterus|mammal genus (generic term)
+delphinapterus leucas|1
+(noun)|white whale|beluga|Delphinapterus leucas|dolphin (generic term)
+delphinidae|1
+(noun)|Delphinidae|family Delphinidae|mammal family (generic term)
+delphinium|1
+(noun)|flower (generic term)
+delphinium ajacis|1
+(noun)|rocket larkspur|Consolida ambigua|Delphinium ajacis|flower (generic term)
+delphinus|2
+(noun)|Delphinus|constellation (generic term)
+(noun)|Delphinus|genus Delphinus|mammal genus (generic term)
+delphinus delphis|1
+(noun)|common dolphin|Delphinus delphis|dolphin (generic term)
+delta|2
+(noun)|geological formation (generic term)|formation (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+delta hepatitis|1
+(noun)|hepatitis delta|hepatitis (generic term)
+delta iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+delta ray|1
+(noun)|electron (generic term)|negatron (generic term)
+delta rhythm|1
+(noun)|delta wave|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+delta wave|1
+(noun)|delta rhythm|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+deltasone|1
+(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+deltoid|2
+(adj)|simple (similar term)|unsubdivided (similar term)
+(noun)|deltoid muscle|musculus deltoideus|skeletal muscle (generic term)|striated muscle (generic term)
+deltoid eminence|1
+(noun)|deltoid tuberosity|tuberosity (generic term)|tubercle (generic term)|eminence (generic term)
+deltoid leaf|1
+(noun)|simple leaf (generic term)
+deltoid muscle|1
+(noun)|deltoid|musculus deltoideus|skeletal muscle (generic term)|striated muscle (generic term)
+deltoid tuberosity|1
+(noun)|deltoid eminence|tuberosity (generic term)|tubercle (generic term)|eminence (generic term)
+delude|1
+(verb)|deceive|lead on|cozen|victimize (generic term)|victimise (generic term)
+deluge|6
+(noun)|flood|inundation|torrent|batch (generic term)|deal (generic term)|flock (generic term)|good deal (generic term)|great deal (generic term)|hatful (generic term)|heap (generic term)|lot (generic term)|mass (generic term)|mess (generic term)|mickle (generic term)|mint (generic term)|muckle (generic term)|peck (generic term)|pile (generic term)|plenty (generic term)|pot (generic term)|quite a little (generic term)|raft (generic term)|sight (generic term)|slew (generic term)|spate (generic term)|stack (generic term)|tidy sum (generic term)|wad (generic term)|whole lot (generic term)|whole slew (generic term)
+(noun)|downpour|cloudburst|waterspout|torrent|pelter|soaker|rain (generic term)|rainfall (generic term)
+(noun)|flood|inundation|alluvion|geological phenomenon (generic term)
+(verb)|flood|inundate|swamp|fill (generic term)|fill up (generic term)|make full (generic term)|flood in (related term)
+(verb)|overwhelm|flood out|charge (generic term)|saddle (generic term)|burden (generic term)
+(verb)|inundate|submerge|flood (generic term)
+delusion|3
+(noun)|psychotic belief|psychological state (generic term)|mental state (generic term)
+(noun)|hallucination|misconception (generic term)
+(noun)|illusion|head game|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+delusional|1
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+delusional disorder|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+delusions of grandeur|1
+(noun)|delusion (generic term)|psychotic belief (generic term)
+delusions of persecution|1
+(noun)|delusion (generic term)|psychotic belief (generic term)
+delusive|1
+(adj)|false|unrealistic (similar term)
+delusory|1
+(adj)|deceptive|unreal (similar term)
+deluxe|2
+(adj)|gilded|grand|luxurious|opulent|princely|sumptuous|rich (similar term)
+(adj)|de luxe|luxe|elegant (similar term)
+delve|1
+(verb)|dig|cut into|turn over|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|dig up (related term)|dig in (related term)|dig out (related term)
+demagnetisation|1
+(noun)|demagnetization|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+demagnetise|2
+(verb)|demagnetize|erase (generic term)|delete (generic term)
+(verb)|demagnetize|degauss|change (generic term)|alter (generic term)|modify (generic term)|magnetise (antonym)|magnetize (antonym)
+demagnetization|1
+(noun)|demagnetisation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+demagnetize|2
+(verb)|demagnetise|erase (generic term)|delete (generic term)
+(verb)|demagnetise|degauss|change (generic term)|alter (generic term)|modify (generic term)|magnetise (antonym)|magnetize (antonym)
+demagog|1
+(noun)|demagogue|rabble-rouser|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+demagogic|1
+(adj)|demagogical|orator|speechmaker|rhetorician|public speaker|speechifier (related term)
+demagogical|1
+(adj)|demagogic|orator|speechmaker|rhetorician|public speaker|speechifier (related term)
+demagogue|1
+(noun)|demagog|rabble-rouser|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+demagoguery|1
+(noun)|demagogy|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+demagogy|1
+(noun)|demagoguery|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+demand|10
+(noun)|economic process (generic term)|supply (antonym)
+(noun)|request (generic term)|petition (generic term)|postulation (generic term)
+(noun)|need|condition (generic term)|status (generic term)
+(noun)|activity (generic term)
+(noun)|requirement|duty (generic term)|responsibility (generic term)|obligation (generic term)
+(verb)|necessitate|ask|postulate|need|require|take|involve|call for|obviate (antonym)
+(verb)|exact|claim (generic term)
+(verb)|claim (generic term)
+(verb)|summon (generic term)|summons (generic term)|cite (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+demand-pull inflation|1
+(noun)|inflation (generic term)|rising prices (generic term)
+demand deposit|1
+(noun)|deposit (generic term)|bank deposit (generic term)
+demand feeding|1
+(noun)|infant feeding (generic term)
+demand for explanation|1
+(noun)|calling into question|challenge (generic term)
+demand for identification|1
+(noun)|challenge (generic term)
+demand loan|1
+(noun)|call loan|loan (generic term)
+demand note|1
+(noun)|note (generic term)|promissory note (generic term)|note of hand (generic term)
+demander|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+demanding|1
+(adj)|exigent (similar term)|exacting (similar term)|hard-to-please (similar term)|hard to please (similar term)|needy (similar term)|rigorous (similar term)|stringent (similar term)|tight (similar term)|stern (similar term)|strict (similar term)|exacting (similar term)|tightened (similar term)|difficult (related term)|hard (related term)|undemanding (antonym)
+demantoid|1
+(noun)|andradite (generic term)
+demarcate|2
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|delimit|delimitate|limit (generic term)|circumscribe (generic term)|confine (generic term)
+demarcation|2
+(noun)|limit|demarcation line|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|line|dividing line|contrast|differentiation (generic term)|distinction (generic term)
+demarcation line|1
+(noun)|limit|demarcation|boundary (generic term)|bound (generic term)|bounds (generic term)
+demarche|1
+(noun)|move (generic term)
+demasculinise|1
+(verb)|emasculate|castrate|demasculinize|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+demasculinize|1
+(verb)|emasculate|castrate|demasculinise|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+dematerialise|1
+(verb)|dematerialize|vanish (generic term)|disappear (generic term)|go away (generic term)|materialise (antonym)|materialize (antonym)
+dematerialize|1
+(verb)|dematerialise|vanish (generic term)|disappear (generic term)|go away (generic term)|materialise (antonym)|materialize (antonym)
+dematiaceae|1
+(noun)|Dematiaceae|family Dematiaceae|fungus family (generic term)
+demavend|1
+(noun)|Demavend|volcano (generic term)
+demean|1
+(verb)|take down|degrade|disgrace|put down|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+demeaning|1
+(adj)|humbling|humiliating|mortifying|undignified (similar term)
+demeaningly|1
+(adv)|humiliatingly
+demeanor|1
+(noun)|demeanour|behavior|behaviour|conduct|deportment|trait (generic term)
+demeanour|1
+(noun)|demeanor|behavior|behaviour|conduct|deportment|trait (generic term)
+demeclocycline hydrochloride|1
+(noun)|Declomycin|tetracycline (generic term)|Achromycin (generic term)
+demented|1
+(adj)|brainsick|crazy|distracted|disturbed|mad|sick|unbalanced|unhinged|insane (similar term)
+dementedly|1
+(adv)|insanely|crazily|madly|sanely (antonym)
+dementedness|1
+(noun)|dementia|insanity (generic term)
+dementia|1
+(noun)|dementedness|insanity (generic term)
+dementia praecox|1
+(noun)|schizophrenia|schizophrenic disorder|schizophrenic psychosis|psychosis (generic term)
+demerara|5
+(noun)|cane sugar (generic term)
+(noun)|Demerara|river (generic term)
+(noun)|Demerara|colony (generic term)|settlement (generic term)
+(noun)|demerara rum|rum (generic term)
+(noun)|demerara sugar|brown sugar (generic term)
+demerara rum|1
+(noun)|demerara|rum (generic term)
+demerara sugar|1
+(noun)|demerara|brown sugar (generic term)
+demerit|2
+(noun)|mark (generic term)|stigma (generic term)|brand (generic term)|stain (generic term)
+(noun)|fault|worth (generic term)|merit (antonym)
+demerol|1
+(noun)|meperidine|meperidine hydrochloride|Demerol|narcotic (generic term)
+demesne|2
+(noun)|estate|land|landed estate|acres|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|domain|land|region (generic term)
+demeter|1
+(noun)|Demeter|Greek deity (generic term)
+demetrius|1
+(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general (generic term)|full general (generic term)|Macedonian (generic term)
+demetrius i|1
+(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general (generic term)|full general (generic term)|Macedonian (generic term)
+demetrius poliorcetes|1
+(noun)|Demetrius|Demetrius I|Demetrius Poliorcetes|general (generic term)|full general (generic term)|Macedonian (generic term)
+demi-glaze|1
+(noun)|demiglace|sauce (generic term)
+demiglace|1
+(noun)|demi-glaze|sauce (generic term)
+demigod|2
+(noun)|superman|Ubermensch|leader (generic term)
+(noun)|daemon|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+demijohn|1
+(noun)|bottle (generic term)
+demilitarise|2
+(verb)|demilitarize|disarm (generic term)|unarm (generic term)|militarise (antonym)|militarize (antonym)
+(verb)|disarm|demilitarize|arm (antonym)
+demilitarize|2
+(verb)|demilitarise|disarm (generic term)|unarm (generic term)|militarise (antonym)|militarize (antonym)
+(verb)|disarm|demilitarise|arm (antonym)
+demilitarized zone|1
+(noun)|DMZ|zone (generic term)
+demille|1
+(noun)|DeMille|Cecil B. DeMille|Cecil Blount DeMille|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+demimondaine|1
+(noun)|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+demimonde|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+demineralisation|2
+(noun)|demineralization|pathology (generic term)
+(noun)|demineralization|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+demineralise|1
+(verb)|demineralize|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+demineralization|2
+(noun)|demineralisation|pathology (generic term)
+(noun)|demineralisation|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+demineralize|1
+(verb)|demineralise|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+demise|1
+(noun)|death|dying|end (generic term)|ending (generic term)|birth (antonym)
+demisemiquaver|1
+(noun)|thirty-second note|note (generic term)|musical note (generic term)|tone (generic term)
+demist|1
+(verb)|defog|change (generic term)|alter (generic term)|modify (generic term)
+demister|1
+(noun)|heater (generic term)|warmer (generic term)
+demitasse|2
+(noun)|cafe noir|coffee (generic term)|java (generic term)
+(noun)|coffee cup (generic term)
+demiurge|1
+(noun)|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+demo|2
+(noun)|demonstration|visual communication (generic term)
+(verb)|show|exhibit|present|demonstrate|show (generic term)
+demob|1
+(verb)|demobilize|demobilise|discharge (generic term)|muster out (generic term)|mobilise (antonym)|mobilize (antonym)
+demobilisation|1
+(noun)|demobilization|social control (generic term)|mobilization (antonym)
+demobilise|2
+(verb)|demobilize|inactivate|discharge (generic term)|muster out (generic term)|mobilize (antonym)
+(verb)|demobilize|demob|discharge (generic term)|muster out (generic term)|mobilise (antonym)|mobilize (antonym)
+demobilization|1
+(noun)|demobilisation|social control (generic term)|mobilization (antonym)
+demobilize|2
+(verb)|inactivate|demobilise|discharge (generic term)|muster out (generic term)|mobilize (antonym)
+(verb)|demobilise|demob|discharge (generic term)|muster out (generic term)|mobilise (antonym)|mobilize (antonym)
+democracy|3
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+(noun)|republic|commonwealth|political system (generic term)|form of government (generic term)
+(noun)|majority rule|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+democrat|2
+(noun)|Democrat|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|populist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+democratic|3
+(adj)|antiauthoritarian (similar term)|classless (similar term)|egalitarian (similar term)|parliamentary (similar term)|parliamentary (similar term)|participatory (similar term)|popular (similar term)|representative (similar term)|republican (similar term)|elective (related term)|elected (related term)|undemocratic (antonym)
+(adj)|advocate|advocator|proponent|exponent (related term)
+(adj)|popular|common (similar term)
+democratic-republican party|1
+(noun)|Democratic-Republican Party|party (generic term)|political party (generic term)
+democratic and popular republic of algeria|1
+(noun)|Algeria|Algerie|Democratic and Popular Republic of Algeria|African country (generic term)|African nation (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+democratic party|1
+(noun)|Democratic Party|party (generic term)|political party (generic term)
+democratic people's republic of korea|1
+(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country (generic term)|Asian nation (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+democratic republic of the congo|1
+(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country (generic term)|African nation (generic term)
+democratic socialist republic of sri lanka|1
+(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country (generic term)|state (generic term)|land (generic term)
+democratically|1
+(adv)|undemocratically (antonym)
+democratisation|1
+(noun)|democratization|group action (generic term)
+democratise|2
+(verb)|democratize|change (generic term)
+(verb)|democratize|change (generic term)|alter (generic term)|modify (generic term)
+democratization|1
+(noun)|democratisation|group action (generic term)
+democratize|2
+(verb)|democratise|change (generic term)
+(verb)|democratise|change (generic term)|alter (generic term)|modify (generic term)
+democritus|1
+(noun)|Democritus|philosopher (generic term)
+demode|1
+(adj)|antique|ex|old-fashioned|old-hat|outmoded|passe|passee|unfashionable (similar term)|unstylish (similar term)
+demodulate|1
+(verb)|extract (generic term)|pull out (generic term)|pull (generic term)|pull up (generic term)|take out (generic term)|draw out (generic term)
+demodulation|1
+(noun)|reception (generic term)
+demodulator|1
+(noun)|detector|rectifier (generic term)
+demogorgon|1
+(noun)|Demogorgon|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+demographer|1
+(noun)|demographist|population scientist|sociologist (generic term)
+demographic|2
+(adj)|sociology (related term)
+(noun)|statistic (generic term)
+demographist|1
+(noun)|demographer|population scientist|sociologist (generic term)
+demography|1
+(noun)|human ecology|sociology (generic term)
+demoiselle|2
+(noun)|damsel|damoiselle|damosel|damozel|maid (generic term)|maiden (generic term)
+(noun)|damselfish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+demolish|3
+(verb)|pulverize|pulverise|destroy (generic term)|destruct (generic term)
+(verb)|crush|smash|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|destroy|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+demolished|1
+(adj)|dismantled|razed|destroyed (similar term)
+demolishing|1
+(noun)|razing|leveling|tearing down|destruction (generic term)|devastation (generic term)
+demolition|2
+(noun)|destruction|wipeout|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|destruction (generic term)|devastation (generic term)
+demon|3
+(noun)|devil|fiend|daemon|daimon|evil spirit (generic term)
+(noun)|monster|fiend|devil|ogre|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|actor (generic term)|doer (generic term)|worker (generic term)
+demon-ridden|1
+(adj)|passionate (similar term)
+demonetisation|1
+(noun)|demonetization|termination (generic term)|ending (generic term)|conclusion (generic term)|monetization (antonym)
+demonetise|1
+(verb)|demonetize|devalue (generic term)|devaluate (generic term)
+demonetization|1
+(noun)|demonetisation|termination (generic term)|ending (generic term)|conclusion (generic term)|monetization (antonym)
+demonetize|1
+(verb)|demonetise|devalue (generic term)|devaluate (generic term)
+demoniac|3
+(adj)|amuck|amok|berserk|demoniacal|possessed|insane (similar term)
+(adj)|demoniacal|agitated (similar term)
+(noun)|monster (generic term)|fiend (generic term)|devil (generic term)|demon (generic term)|ogre (generic term)
+demoniacal|2
+(adj)|amuck|amok|berserk|demoniac|possessed|insane (similar term)
+(adj)|demoniac|agitated (similar term)
+demoniacally|1
+(adv)|frenetically
+demonic|1
+(adj)|diabolic|diabolical|fiendish|hellish|infernal|satanic|unholy|evil (similar term)
+demonisation|1
+(noun)|demonization|disapprobation (generic term)|condemnation (generic term)
+demonise|1
+(verb)|demonize|change (generic term)|alter (generic term)|modify (generic term)
+demonism|1
+(noun)|diabolism|Satanism|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+demonization|1
+(noun)|demonisation|disapprobation (generic term)|condemnation (generic term)
+demonize|1
+(verb)|demonise|change (generic term)|alter (generic term)|modify (generic term)
+demonolatry|1
+(noun)|diabolatry|devil-worship|worship (generic term)
+demonstrability|1
+(noun)|provability|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+demonstrable|2
+(adj)|incontrovertible|incontestable (similar term)|incontestible (similar term)
+(adj)|provable|obvious (similar term)
+demonstrably|1
+(adv)|provably|incontrovertibly
+demonstrate|4
+(verb)|show|demo|exhibit|present|show (generic term)
+(verb)|prove|establish|show|shew|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|disprove (antonym)
+(verb)|attest|certify|manifest|evidence|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|march|protest (generic term)|resist (generic term)|dissent (generic term)
+demonstrated|1
+(adj)|incontestable (similar term)|incontestible (similar term)
+demonstration|5
+(noun)|presentation|presentment|show (generic term)
+(noun)|show (generic term)
+(noun)|manifestation|protest (generic term)|objection (generic term)|dissent (generic term)
+(noun)|monstrance|proof (generic term)
+(noun)|demo|visual communication (generic term)
+demonstrative|3
+(adj)|effusive (similar term)|emotional (similar term)|gushing (similar term)|gushy (similar term)|epideictic (similar term)|epideictical (similar term)|unreserved (related term)|undemonstrative (antonym)
+(adj)|illustrative|instructive (similar term)|informative (similar term)
+(noun)|demonstrative pronoun|pronoun (generic term)
+demonstrative of|1
+(adj)|supportive (similar term)
+demonstrative pronoun|1
+(noun)|demonstrative|pronoun (generic term)
+demonstrativeness|1
+(noun)|emotionality (generic term)|emotionalism (generic term)
+demonstrator|3
+(noun)|teacher (generic term)|instructor (generic term)
+(noun)|sales demonstrator|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+(noun)|protester|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+demoralisation|3
+(noun)|demoralization|confusion (generic term)
+(noun)|demoralization|depression (generic term)
+(noun)|demoralization|degradation (generic term)|debasement (generic term)
+demoralise|2
+(verb)|corrupt|pervert|subvert|demoralize|debauch|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|depress|deject|cast down|get down|dismay|dispirit|demoralize|discourage (generic term)|elate (antonym)
+demoralised|1
+(adj)|demoralized|discouraged|disheartened|pessimistic (similar term)
+demoralising|1
+(adj)|demoralizing|disheartening|dispiriting|discouraging (similar term)
+demoralization|3
+(noun)|demoralisation|degradation (generic term)|debasement (generic term)
+(noun)|demoralisation|confusion (generic term)
+(noun)|demoralisation|depression (generic term)
+demoralize|3
+(verb)|corrupt|pervert|subvert|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|depress|deject|cast down|get down|dismay|dispirit|demoralise|discourage (generic term)|elate (antonym)
+(verb)|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)
+demoralized|1
+(adj)|demoralised|discouraged|disheartened|pessimistic (similar term)
+demoralizing|1
+(adj)|demoralising|disheartening|dispiriting|discouraging (similar term)
+demosthenes|1
+(noun)|Demosthenes|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)|Athenian (generic term)
+demosthenic|1
+(adj)|Demosthenic|orator|speechmaker|rhetorician|public speaker|speechifier|statesman|solon|national leader|Athenian (related term)
+demote|1
+(verb)|bump|relegate|break|kick downstairs|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|bump off (related term)|promote (antonym)
+demotic|4
+(adj)|Demotic|Modern Greek|New Greek (related term)
+(adj)|common (similar term)
+(noun)|Demotic|Demotic script|hieratic (generic term)|hieratic script (generic term)
+(noun)|Romaic|Demotic|Modern Greek (generic term)|New Greek (generic term)
+demotic script|1
+(noun)|Demotic|Demotic script|hieratic (generic term)|hieratic script (generic term)
+demotion|1
+(noun)|change (generic term)|promotion (antonym)
+dempsey|1
+(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|Manassa Mauler|prizefighter (generic term)|gladiator (generic term)
+demulcent|2
+(adj)|emollient|salving|softening|soft (similar term)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+demulen|1
+(noun)|Demulen|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+demulsify|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|emulsify (antonym)
+(verb)|change integrity (generic term)|emulsify (antonym)
+demur|3
+(noun)|demurral|demurrer|objection (generic term)
+(verb)|except|object (generic term)
+(verb)|plead (generic term)
+demure|1
+(adj)|coy|overmodest|modest (similar term)
+demureness|2
+(noun)|modesty (generic term)|reserve (generic term)
+(noun)|coyness|affectedness (generic term)
+demurrage|2
+(noun)|charge (generic term)
+(noun)|delay (generic term)|holdup (generic term)
+demurral|1
+(noun)|demur|demurrer|objection (generic term)
+demurrer|3
+(noun)|demur|demurral|objection (generic term)
+(noun)|pleading (generic term)
+(noun)|defense|defence|denial|due process (generic term)|due process of law (generic term)|prosecution (antonym)
+demyelinate|1
+(verb)|destroy (generic term)|destruct (generic term)
+demyelination|1
+(noun)|degenerative disorder (generic term)
+demystify|1
+(verb)|clarify (generic term)|clear up (generic term)|elucidate (generic term)|mystify (antonym)
+demythologisation|1
+(noun)|demythologization|restatement (generic term)
+demythologise|1
+(verb)|demythologize|change (generic term)|alter (generic term)|modify (generic term)|mythologize (antonym)
+demythologised|1
+(adj)|demythologized|rational (similar term)
+demythologization|1
+(noun)|demythologisation|restatement (generic term)
+demythologize|1
+(verb)|demythologise|change (generic term)|alter (generic term)|modify (generic term)|mythologize (antonym)
+demythologized|1
+(adj)|demythologised|rational (similar term)
+den|4
+(noun)|lair|habitation (generic term)
+(noun)|hideout|hideaway|hiding place (generic term)
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|room (generic term)
+den-mother|1
+(noun)|supervisor (generic term)
+den haag|1
+(noun)|The Hague|'s Gravenhage|Den Haag|city (generic term)|metropolis (generic term)|urban center (generic term)
+den mother|1
+(noun)|chaperon (generic term)|chaperone (generic term)
+denali|1
+(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak (generic term)
+denali fault|1
+(noun)|Denali Fault|fault (generic term)|faulting (generic term)|geological fault (generic term)|shift (generic term)|fracture (generic term)|break (generic term)
+denali national park|1
+(noun)|Denali National Park|national park (generic term)
+denary|2
+(adj)|tenfold|ten-fold|multiple (similar term)
+(adj)|decimal|quantitative (similar term)
+denationalisation|1
+(noun)|denationalization|privatization|privatisation|social control (generic term)|nationalization (antonym)
+denationalise|1
+(verb)|denationalize|change (generic term)|alter (generic term)|modify (generic term)|nationalise (antonym)|nationalize (antonym)
+denationalization|1
+(noun)|denationalisation|privatization|privatisation|social control (generic term)|nationalization (antonym)
+denationalize|1
+(verb)|denationalise|change (generic term)|alter (generic term)|modify (generic term)|nationalise (antonym)|nationalize (antonym)
+denaturalise|1
+(verb)|denaturalize|change (generic term)|alter (generic term)|modify (generic term)|naturalize (antonym)
+denaturalize|1
+(verb)|denaturalise|change (generic term)|alter (generic term)|modify (generic term)|naturalize (antonym)
+denaturant|1
+(noun)|substance (generic term)|matter (generic term)
+denature|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+denatured|1
+(adj)|denaturized|denaturised|changed (similar term)
+denatured alcohol|1
+(noun)|ethyl alcohol (generic term)|ethanol (generic term)|fermentation alcohol (generic term)|grain alcohol (generic term)
+denaturised|1
+(adj)|denatured|denaturized|changed (similar term)
+denaturized|1
+(adj)|denatured|denaturised|changed (similar term)
+denazification|1
+(noun)|de-Nazification|social process (generic term)
+denazify|1
+(verb)|cleanse (generic term)|nazify (antonym)
+dendranthema|1
+(noun)|Dendranthema|genus Dendranthema|asterid dicot genus (generic term)
+dendranthema grandifloruom|1
+(noun)|florist's chrysanthemum|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum (generic term)
+dendraspis|1
+(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus (generic term)
+dendriform|1
+(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendroid|dendroidal|treelike|tree-shaped|branchy (similar term)
+dendrite|1
+(noun)|nerve fiber (generic term)|nerve fibre (generic term)
+dendritic|1
+(adj)|nerve fiber|nerve fibre (related term)
+dendroaspis|1
+(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus (generic term)
+dendroaspis augusticeps|1
+(noun)|black mamba|Dendroaspis augusticeps|mamba (generic term)
+dendrobium|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+dendrocalamus|1
+(noun)|Dendrocalamus|genus Dendrocalamus|monocot genus (generic term)|liliopsid genus (generic term)
+dendrocalamus giganteus|1
+(noun)|giant bamboo|kyo-chiku|Dendrocalamus giganteus|bamboo (generic term)
+dendrocolaptes|1
+(noun)|Dendrocolaptes|genus Dendrocolaptes|bird genus (generic term)
+dendrocolaptidae|1
+(noun)|Dendrocolaptidae|family Dendrocolaptidae|bird family (generic term)
+dendroctonus|1
+(noun)|Dendroctonus|genus Dendroctonus|arthropod genus (generic term)
+dendroctonus rufipennis|1
+(noun)|spruce bark beetle|Dendroctonus rufipennis|bark beetle (generic term)
+dendroica|1
+(noun)|Dendroica|genus Dendroica|bird genus (generic term)
+dendroica auduboni|1
+(noun)|Audubon's warbler|Audubon warbler|Dendroica auduboni|New World warbler (generic term)|wood warbler (generic term)
+dendroica coronata|1
+(noun)|myrtle warbler|myrtle bird|Dendroica coronata|New World warbler (generic term)|wood warbler (generic term)
+dendroica fusca|1
+(noun)|Blackburn|Blackburnian warbler|Dendroica fusca|New World warbler (generic term)|wood warbler (generic term)
+dendroica petechia|1
+(noun)|yellow warbler|golden warbler|yellowbird|Dendroica petechia|New World warbler (generic term)|wood warbler (generic term)
+dendroica striate|1
+(noun)|blackpoll|Dendroica striate|New World warbler (generic term)|wood warbler (generic term)
+dendroica tigrina|1
+(noun)|Cape May warbler|Dendroica tigrina|New World warbler (generic term)|wood warbler (generic term)
+dendroid|1
+(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroidal|treelike|tree-shaped|branchy (similar term)
+dendroidal|1
+(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|treelike|tree-shaped|branchy (similar term)
+dendrolagus|1
+(noun)|Dendrolagus|genus Dendrolagus|mammal genus (generic term)
+dendromecon|1
+(noun)|Dendromecon|genus Dendromecon|dilleniid dicot genus (generic term)
+deneb|1
+(noun)|Deneb|star (generic term)
+denebola|1
+(noun)|Denebola|star (generic term)
+deng xiaoping|1
+(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman (generic term)|solon (generic term)|national leader (generic term)
+dengue|1
+(noun)|dengue fever|dandy fever|breakbone fever|infectious disease (generic term)
+dengue fever|1
+(noun)|dengue|dandy fever|breakbone fever|infectious disease (generic term)
+deniable|1
+(adj)|disavowable (similar term)|questionable (similar term)|refutable (similar term)|confutable (similar term)|confutative (similar term)|undeniable (antonym)
+denial|5
+(noun)|speech act (generic term)
+(noun)|disaffirmation|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|abnegation|self-abnegation|self-denial|self-renunciation|selflessness (generic term)|self-sacrifice (generic term)|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+(noun)|defense|defence|demurrer|due process (generic term)|due process of law (generic term)|prosecution (antonym)
+denier|3
+(noun)|unit of measurement (generic term)|unit (generic term)
+(noun)|coin (generic term)
+(noun)|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+denigrate|2
+(verb)|minimize|belittle|derogate|disparage (generic term)|belittle (generic term)|pick at (generic term)
+(verb)|defame|slander|smirch|asperse|calumniate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+denigrating|1
+(adj)|calumniatory|calumnious|defamatory|denigrative|denigratory|libellous|libelous|slanderous|harmful (similar term)
+denigration|3
+(noun)|belittling|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|aspersion|calumny|slander|defamation|attack (generic term)
+(noun)|deprecation|disparagement (generic term)|dispraise (generic term)
+denigrative|1
+(adj)|calumniatory|calumnious|defamatory|denigrating|denigratory|libellous|libelous|slanderous|harmful (similar term)
+denigratory|1
+(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|libellous|libelous|slanderous|harmful (similar term)
+denim|2
+(noun)|jean|blue jean|trouser (generic term)|pant (generic term)|workwear (generic term)
+(noun)|denim fabric|dungaree|jean|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+denim fabric|1
+(noun)|denim|dungaree|jean|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+denis diderot|1
+(noun)|Diderot|Denis Diderot|philosopher (generic term)
+denisonia|1
+(noun)|Denisonia|genus Denisonia|reptile genus (generic term)
+denisonia superba|1
+(noun)|copperhead|Denisonia superba|elapid (generic term)|elapid snake (generic term)
+denitrify|1
+(verb)|change state (generic term)|turn (generic term)|nitrify (antonym)
+denizen|2
+(noun)|inhabitant|habitant|dweller|indweller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|organism (generic term)|being (generic term)
+denmark|1
+(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country (generic term)|Scandinavian nation (generic term)
+denmark vesey|1
+(noun)|Vesey|Denmark Vesey|slave (generic term)|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+dennis gabor|1
+(noun)|Gabor|Dennis Gabor|physicist (generic term)
+dennstaedtia|1
+(noun)|Dennstaedtia|genus Dennstaedtia|fern genus (generic term)
+dennstaedtia punctilobula|1
+(noun)|hay-scented|hay-scented fern|scented fern|boulder fern|Dennstaedtia punctilobula|fern (generic term)
+dennstaedtiaceae|1
+(noun)|Dennstaedtiaceae|family Dennstaedtiaceae|fern family (generic term)
+denominate|1
+(verb)|designate
+denomination|3
+(noun)|nongovernmental organization (generic term)|NGO (generic term)
+(noun)|class (generic term)|category (generic term)|family (generic term)
+(noun)|appellation|designation|appellative|name (generic term)
+denominational|3
+(adj)|nongovernmental organization|NGO (related term)
+(adj)|class|category|family (related term)
+(adj)|partisan|sectarian (similar term)
+denominationalism|2
+(noun)|sectarianism|narrow-mindedness (generic term)|narrowness (generic term)
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+denominator|1
+(noun)|divisor (generic term)
+denotation|2
+(noun)|indication|naming (generic term)
+(noun)|reference|extension|meaning (generic term)|substance (generic term)
+denotative|2
+(adj)|denotive|appellative (similar term)|naming (similar term)|designative (similar term)|extensional (similar term)|numerical (similar term)|numeric (similar term)|referent (similar term)|referential (similar term)|explicit (related term)|expressed (related term)|connotative (antonym)
+(adj)|explicit|literal (similar term)
+denotatum|1
+(noun)|referent (generic term)
+denote|3
+(verb)|designate (generic term)|denominate (generic term)
+(verb)|refer|mean (generic term)|intend (generic term)
+(verb)|announce|inform (generic term)
+denotive|1
+(adj)|denotative|appellative (similar term)|naming (similar term)|designative (similar term)|extensional (similar term)|numerical (similar term)|numeric (similar term)|referent (similar term)|referential (similar term)|explicit (related term)|expressed (related term)|connotative (antonym)
+denouement|2
+(noun)|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|solution (generic term)|answer (generic term)|result (generic term)|resolution (generic term)|solvent (generic term)
+denounce|4
+(verb)|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|stigmatize|stigmatise|brand|mark|label (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|tell on|betray|give away|rat|grass|shit|shop|snitch|stag|inform (generic term)
+denouncement|1
+(noun)|denunciation|speech act (generic term)
+dense|5
+(adj)|heavy|impenetrable|thick (similar term)
+(adj)|compact|thick|concentrated (similar term)
+(adj)|thick|impenetrable (similar term)
+(adj)|heavy (similar term)
+(adj)|dim|dull|dumb|obtuse|slow|stupid (similar term)
+dense-leaved elodea|1
+(noun)|Elodea densa|Egeria densa|waterweed (generic term)
+dense blazing star|1
+(noun)|Liatris pycnostachya|blazing star (generic term)|button snakeroot (generic term)|gayfeather (generic term)|gay-feather (generic term)|snakeroot (generic term)
+densely|2
+(adv)|dumbly|obtusely
+(adv)|thickly|thinly (antonym)
+denseness|3
+(noun)|dumbness|slow-wittedness|stupidity (generic term)
+(noun)|concentration|density|tightness|compactness|spacing (generic term)|spatial arrangement (generic term)|distribution (antonym)
+(noun)|density|compactness (generic term)
+densification|1
+(noun)|compaction|compression|concretion|concentration (generic term)
+densimeter|1
+(noun)|densitometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+densitometer|2
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|densimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+densitometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+density|2
+(noun)|denseness|compactness (generic term)
+(noun)|concentration|denseness|tightness|compactness|spacing (generic term)|spatial arrangement (generic term)|distribution (antonym)
+dent|4
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|incision|scratch|prick|slit|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|ding|gouge|nick|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|indent|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+dent corn|1
+(noun)|Zea mays indentata|field corn (generic term)
+dental|3
+(adj)|bone|os (related term)
+(adj)|medicine|medical specialty (related term)
+(noun)|alveolar consonant|dental consonant|alveolar|consonant (generic term)
+dental amalgam|1
+(noun)|amalgam|alloy (generic term)|metal (generic term)
+dental anatomy|1
+(noun)|gross anatomy (generic term)|macroscopic anatomy (generic term)
+dental appliance|1
+(noun)|device (generic term)
+dental assistant|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+dental care|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+dental caries|1
+(noun)|cavity|caries|tooth decay|decay (generic term)
+dental consonant|1
+(noun)|alveolar consonant|alveolar|dental|consonant (generic term)
+dental floss|1
+(noun)|floss|thread (generic term)|yarn (generic term)
+dental gold|1
+(noun)|alloy (generic term)|metal (generic term)
+dental hygienist|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+dental implant|1
+(noun)|implant (generic term)
+dental medicine|1
+(noun)|dentistry|odontology|medicine (generic term)|medical specialty (generic term)
+dental orthopaedics|1
+(noun)|orthodontics|orthodontia|orthodonture|dental orthopedics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+dental orthopedics|1
+(noun)|orthodontics|orthodontia|orthodonture|dental orthopaedics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+dental plaque|1
+(noun)|bacterial plaque|plaque (generic term)
+dental plate|1
+(noun)|denture|plate|dental appliance (generic term)
+dental practice|1
+(noun)|practice (generic term)
+dental practitioner|1
+(noun)|dentist|tooth doctor|medical practitioner (generic term)|medical man (generic term)
+dental procedure|1
+(noun)|medical procedure (generic term)
+dental school|1
+(noun)|school of dentistry|graduate school (generic term)|grad school (generic term)
+dental surgeon|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+dental surgery|1
+(noun)|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+dental technician|1
+(noun)|denturist|technician (generic term)
+dentaria|1
+(noun)|Dentaria|genus Dentaria|dilleniid dicot genus (generic term)
+dentaria bulbifera|1
+(noun)|coral-root bittercress|coralroot|coralwort|Cardamine bulbifera|Dentaria bulbifera|bittercress (generic term)|bitter cress (generic term)
+dentaria diphylla|1
+(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+dentate|1
+(adj)|rough (similar term)
+dentate leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+dentate nucleus|1
+(noun)|nucleus (generic term)
+dented|1
+(adj)|bent|crumpled|damaged (similar term)
+denticle|1
+(noun)|tooth (generic term)
+denticulate|1
+(adj)|rough (similar term)
+denticulate leaf|1
+(noun)|dentate leaf (generic term)
+dentifrice|1
+(noun)|cleansing agent (generic term)|cleanser (generic term)|cleaner (generic term)
+dentin|2
+(noun)|dentine|animal material (generic term)
+(noun)|dentine|bone (generic term)|os (generic term)
+dentine|2
+(noun)|dentin|animal material (generic term)
+(noun)|dentin|bone (generic term)|os (generic term)
+dentist|1
+(noun)|tooth doctor|dental practitioner|medical practitioner (generic term)|medical man (generic term)
+dentist's drill|1
+(noun)|burr drill|drill (generic term)
+dentistry|1
+(noun)|dental medicine|odontology|medicine (generic term)|medical specialty (generic term)
+dentition|2
+(noun)|teething|odontiasis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|teeth|set (generic term)
+denture|1
+(noun)|dental plate|plate|dental appliance (generic term)
+denturist|1
+(noun)|dental technician|technician (generic term)
+denudate|2
+(adj)|bald|denuded|bare (similar term)
+(verb)|denude|bare|strip|clear (generic term)
+denudation|1
+(noun)|stripping|uncovering|baring|husking|removal (generic term)|remotion (generic term)
+denude|1
+(verb)|bare|denudate|strip|clear (generic term)
+denuded|1
+(adj)|bald|denudate|bare (similar term)
+denumerable|1
+(adj)|countable|enumerable|numerable|calculable (similar term)
+denunciation|1
+(noun)|denouncement|speech act (generic term)
+denunciative|1
+(adj)|comminatory|denunciatory|inculpatory (similar term)|inculpative (similar term)
+denunciatory|1
+(adj)|comminatory|denunciative|inculpatory (similar term)|inculpative (similar term)
+denver|1
+(noun)|Denver|Mile-High City|capital of Colorado|state capital (generic term)
+deny|7
+(verb)|contradict (generic term)|negate (generic term)|contravene (generic term)|admit (antonym)
+(verb)|renounce (generic term)|repudiate (generic term)
+(verb)|withhold (generic term)|keep back (generic term)
+(verb)|refuse|keep (generic term)|hold on (generic term)|allow (antonym)
+(verb)|abnegate|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|traverse
+(verb)|disavow (generic term)
+deodar|1
+(noun)|deodar cedar|Himalayan cedar|Cedrus deodara|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+deodar cedar|1
+(noun)|deodar|Himalayan cedar|Cedrus deodara|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+deodorant|1
+(noun)|deodourant|toiletry (generic term)|toilet article (generic term)
+deodorise|1
+(verb)|deodorize|deodourise|change (generic term)|alter (generic term)|modify (generic term)|odorize (antonym)|odourise (antonym)
+deodorize|1
+(verb)|deodorise|deodourise|change (generic term)|alter (generic term)|modify (generic term)|odorize (antonym)|odourise (antonym)
+deodourant|1
+(noun)|deodorant|toiletry (generic term)|toilet article (generic term)
+deodourise|1
+(verb)|deodorize|deodorise|change (generic term)|alter (generic term)|modify (generic term)|odorize (antonym)|odourise (antonym)
+deontic logic|1
+(noun)|modal logic (generic term)
+deossification|1
+(noun)|organic process (generic term)|biological process (generic term)
+deoxidise|1
+(verb)|deoxidize|reduce|change (generic term)|oxidize (antonym)|oxidise (antonym)
+deoxidize|1
+(verb)|deoxidise|reduce|change (generic term)|oxidize (antonym)|oxidise (antonym)
+deoxyadenosine|1
+(noun)|nucleoside (generic term)
+deoxyadenosine monophosphate|1
+(noun)|A|nucleotide (generic term)
+deoxycytidine|1
+(noun)|cytidine|nucleoside (generic term)
+deoxycytidine monophosphate|1
+(noun)|C|nucleotide (generic term)
+deoxyephedrine|1
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+deoxygenate|1
+(verb)|get rid of (generic term)|remove (generic term)
+deoxyguanosine|1
+(noun)|guanosine|nucleoside (generic term)
+deoxyguanosine monophosphate|1
+(noun)|G|nucleotide (generic term)
+deoxyribonucleic acid|1
+(noun)|desoxyribonucleic acid|DNA|polymer (generic term)
+deoxyribose|1
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+deoxythymidine|1
+(noun)|thymidine|nucleoside (generic term)
+deoxythymidine monophosphate|1
+(noun)|T|nucleotide (generic term)
+depardieu|1
+(noun)|Depardieu|Gerard Depardieu|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+deparia|1
+(noun)|Deparia|genus Deparia|fern genus (generic term)
+deparia acrostichoides|1
+(noun)|silvery spleenwort|Deparia acrostichoides|Athyrium thelypteroides|fern (generic term)
+depart|6
+(verb)|go|go away|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|come (antonym)
+(verb)|deviate|vary|diverge|differ (generic term)|conform (antonym)
+(verb)|part|start|start out|set forth|set off|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+(verb)|take leave|quit|leave (generic term)|go forth (generic term)|go away (generic term)|stay (antonym)
+(verb)|leave|pull up stakes|change (generic term)
+(verb)|sidetrack|digress|straggle|deviate (generic term)|divert (generic term)
+departed|4
+(adj)|away|gone|absent (similar term)
+(adj)|bygone|bypast|foregone|gone|past (similar term)
+(adj)|asleep|at peace|at rest|deceased|gone|dead (similar term)
+(noun)|dead person|dead soul|deceased person|deceased|decedent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+departer|1
+(noun)|leaver|goer|migrant (generic term)|migrator (generic term)
+department|3
+(noun)|section|division (generic term)
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|sector (generic term)|sphere (generic term)
+department head|1
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+department of agriculture|1
+(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department (generic term)
+department of anthropology|1
+(noun)|anthropology department|academic department (generic term)
+department of biology|1
+(noun)|biology department|academic department (generic term)
+department of chemistry|1
+(noun)|chemistry department|academic department (generic term)
+department of commerce|1
+(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department (generic term)
+department of commerce and labor|1
+(noun)|Department of Commerce and Labor|executive department (generic term)
+department of computer science|1
+(noun)|academic department (generic term)
+department of corrections|1
+(noun)|corrections|local department (generic term)|department of local government (generic term)
+department of defense|1
+(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department (generic term)
+department of defense laboratory system|1
+(noun)|Department of Defense Laboratory System|LABLINK|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+department of economics|1
+(noun)|economics department|academic department (generic term)
+department of education|1
+(noun)|Department of Education|Education Department|Education|executive department (generic term)
+department of energy|1
+(noun)|Department of Energy|Energy Department|Energy|DOE|executive department (generic term)
+department of energy intelligence|1
+(noun)|Department of Energy Intelligence|DOEI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+department of english|1
+(noun)|English department|department of English|academic department (generic term)
+department of health and human services|1
+(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department (generic term)
+department of health education and welfare|1
+(noun)|Department of Health Education and Welfare|executive department (generic term)
+department of history|1
+(noun)|history department|academic department (generic term)
+department of housing and urban development|1
+(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department (generic term)
+department of justice|1
+(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department (generic term)
+department of justice canada|1
+(noun)|Department of Justice Canada|DoJC|international law enforcement agency (generic term)
+department of labor|1
+(noun)|Department of Labor|Labor Department|Labor|DoL|executive department (generic term)
+department of linguistics|1
+(noun)|linguistics department|academic department (generic term)
+department of local government|1
+(noun)|local department|government department (generic term)
+department of mathematics|1
+(noun)|mathematics department|academic department (generic term)
+department of music|1
+(noun)|music department|academic department (generic term)
+department of philosophy|1
+(noun)|philosophy department|academic department (generic term)
+department of physics|1
+(noun)|physics department|academic department (generic term)
+department of psychology|1
+(noun)|psychology department|academic department (generic term)
+department of sociology|1
+(noun)|sociology department|academic department (generic term)
+department of state|1
+(noun)|Department of State|United States Department of State|State Department|State|DoS|executive department (generic term)
+department of the federal government|1
+(noun)|federal department|federal office|government department (generic term)
+department of the interior|1
+(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department (generic term)
+department of the treasury|1
+(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department (generic term)
+department of transportation|1
+(noun)|Department of Transportation|Transportation|DoT|executive department (generic term)
+department of veterans affairs|1
+(noun)|Department of Veterans Affairs|VA|executive department (generic term)
+department store|1
+(noun)|emporium|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+departmental|1
+(adj)|division (related term)
+departure|3
+(noun)|going|going away|leaving|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|deviation|divergence|difference|variation (generic term)|fluctuation (generic term)
+(noun)|passing|loss|exit|expiration|going|release|death (generic term)|decease (generic term)|expiry (generic term)
+departure gate|1
+(noun)|gate (generic term)
+departure lounge|1
+(noun)|lounge (generic term)|waiting room (generic term)|waiting area (generic term)
+departure tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+departure time|1
+(noun)|time of departure|point (generic term)|point in time (generic term)
+depend|2
+(verb)|be (generic term)
+(verb)|count|bet|look|calculate|reckon|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+depend on|2
+(verb)|devolve on|depend upon|ride|turn on|hinge on|hinge upon
+(verb)|rely on
+depend upon|1
+(verb)|depend on|devolve on|ride|turn on|hinge on|hinge upon
+dependability|1
+(noun)|dependableness|reliability|reliableness|responsibility (generic term)|responsibleness (generic term)|unreliableness (antonym)|unreliability (antonym)|undependableness (antonym)|undependability (antonym)
+dependable|4
+(adj)|reliable|certain (similar term)|sure (similar term)|tested (similar term)|time-tested (similar term)|tried (similar term)|tried and true (similar term)|undeviating (similar term)|trustworthy (related term)|trusty (related term)|undependable (antonym)|unreliable (antonym)
+(adj)|honest|reliable|true|trustworthy (similar term)|trusty (similar term)
+(adj)|rock-steady|steady-going|steady (similar term)
+(adj)|good|safe|secure|sound (similar term)
+dependableness|1
+(noun)|dependability|reliability|reliableness|responsibility (generic term)|responsibleness (generic term)|unreliableness (antonym)|unreliability (antonym)|undependableness (antonym)|undependability (antonym)
+dependably|1
+(adv)|faithfully|reliably|unreliably (antonym)|undependably (antonym)|unfaithfully (antonym)
+dependance|2
+(noun)|addiction|dependence|dependency|habituation|physiological state (generic term)|physiological condition (generic term)
+(noun)|dependence|dependency|state (generic term)
+dependant|3
+(adj)|dependent|qualified|conditional (similar term)
+(adj)|dependent|drug-addicted|hooked|strung-out|addicted (similar term)
+(noun)|dependent|recipient (generic term)|receiver (generic term)
+dependant on|1
+(adj)|contingent|contingent on|dependent on|depending on|conditional (similar term)
+dependence|2
+(noun)|dependance|dependency|state (generic term)
+(noun)|addiction|dependance|dependency|habituation|physiological state (generic term)|physiological condition (generic term)
+dependency|3
+(noun)|dependence|dependance|state (generic term)
+(noun)|addiction|dependence|dependance|habituation|physiological state (generic term)|physiological condition (generic term)
+(noun)|colony|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dependent|7
+(adj)|babelike (similar term)|helpless (similar term)|interdependent (similar term)|mutualist (similar term)|mutually beneficial (similar term)|myrmecophilous (similar term)|parasitic (similar term)|parasitical (similar term)|leechlike (similar term)|bloodsucking (similar term)|reliant (similar term)|symbiotic (similar term)|underage (similar term)|unfree (related term)|independent (antonym)
+(adj)|dependant|qualified|conditional (similar term)
+(adj)|subordinate|independent (antonym)
+(adj)|pendent|pendant|hanging|hanging down|supported (similar term)
+(adj)|subject|subordinate (similar term)
+(adj)|dependant|drug-addicted|hooked|strung-out|addicted (similar term)
+(noun)|dependant|recipient (generic term)|receiver (generic term)
+dependent clause|1
+(noun)|subordinate clause|clause (generic term)
+dependent on|1
+(adj)|contingent|contingent on|dependant on|depending on|conditional (similar term)
+dependent variable|1
+(noun)|variable (generic term)|variable quantity (generic term)
+depending on|1
+(adj)|contingent|contingent on|dependent on|dependant on|conditional (similar term)
+depersonalisation|3
+(noun)|depersonalization|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder (generic term)
+(noun)|depersonalization|psychological state (generic term)|mental state (generic term)
+(noun)|depersonalization|reification|objectification (generic term)
+depersonalisation disorder|1
+(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder (generic term)
+depersonalisation neurosis|1
+(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|dissociative disorder (generic term)
+depersonalise|1
+(verb)|depersonalize|objectify|change (generic term)|alter (generic term)|modify (generic term)|personalise (antonym)|personalize (antonym)
+depersonalization|3
+(noun)|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder (generic term)
+(noun)|depersonalisation|psychological state (generic term)|mental state (generic term)
+(noun)|depersonalisation|reification|objectification (generic term)
+depersonalization disorder|1
+(noun)|depersonalization|depersonalisation|depersonalisation disorder|depersonalization neurosis|depersonalisation neurosis|dissociative disorder (generic term)
+depersonalization neurosis|1
+(noun)|depersonalization|depersonalisation|depersonalization disorder|depersonalisation disorder|depersonalisation neurosis|dissociative disorder (generic term)
+depersonalize|1
+(verb)|depersonalise|objectify|change (generic term)|alter (generic term)|modify (generic term)|personalise (antonym)|personalize (antonym)
+depict|3
+(verb)|picture|render|show|represent (generic term)|interpret (generic term)
+(verb)|describe|draw|set forth (generic term)|expound (generic term)|exposit (generic term)
+(verb)|portray|limn|represent (generic term)|interpret (generic term)
+depicted|1
+(adj)|pictured|portrayed|delineated (similar term)|represented (similar term)|delineate (similar term)
+depicted object|1
+(noun)|subject|content|thing (generic term)
+depicting|1
+(noun)|depiction|portraying|portrayal|representational process (generic term)
+depiction|4
+(noun)|word picture|word-painting|delineation|picture|characterization|characterisation|description (generic term)|verbal description (generic term)
+(noun)|depicting|portraying|portrayal|representational process (generic term)
+(noun)|delineation|limning|line drawing|drawing (generic term)
+(noun)|delineation|portrayal|pictorial representation (generic term)|picturing (generic term)
+depictive|1
+(adj)|delineative|representational (similar term)
+depigmentation|1
+(noun)|coloration (generic term)|colouration (generic term)|pigmentation (antonym)
+depilate|1
+(verb)|epilate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+depilation|2
+(noun)|hairlessness|condition (generic term)|status (generic term)
+(noun)|epilation|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+depilator|1
+(noun)|depilatory|epilator|cosmetic (generic term)
+depilatory|3
+(adj)|hairless (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|depilator|epilator|cosmetic (generic term)
+depilous|1
+(adj)|hairless (similar term)
+deplane|1
+(verb)|get off (generic term)
+depletable|1
+(adj)|exhaustible (similar term)
+deplete|1
+(verb)|consume|eat up|use up|eat|exhaust|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+depleted|2
+(adj)|exhausted (similar term)
+(adj)|low|insufficient (similar term)|deficient (similar term)
+depletion|2
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|temporary state (generic term)
+deplorable|3
+(adj)|distressing|lamentable|pitiful|sad|sorry|bad (similar term)
+(adj)|execrable|miserable|woeful|wretched|inferior (similar term)
+(adj)|condemnable|criminal|reprehensible|vicious|wrong (similar term)
+deplorably|1
+(adv)|lamentably|sadly|woefully
+deplore|2
+(verb)|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|lament|bewail|bemoan|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+deploy|2
+(verb)|position (generic term)
+(verb)|spread (generic term)|distribute (generic term)
+deployment|1
+(noun)|preparation (generic term)|readying (generic term)
+deplumate|1
+(verb)|pluck|pull|tear|deplume|displume|strip (generic term)
+deplume|2
+(verb)|displume|plunder (generic term)|despoil (generic term)|loot (generic term)|reave (generic term)|strip (generic term)|rifle (generic term)|ransack (generic term)|pillage (generic term)|foray (generic term)
+(verb)|pluck|pull|tear|deplumate|displume|strip (generic term)
+depokene|1
+(noun)|valproic acid|Depokene|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+depolarisation|1
+(noun)|depolarization|change (generic term)
+depolarise|1
+(verb)|depolarize|change (generic term)|alter (generic term)|modify (generic term)
+depolarization|1
+(noun)|depolarisation|change (generic term)
+depolarize|1
+(verb)|depolarise|change (generic term)|alter (generic term)|modify (generic term)
+depone|1
+(verb)|swear|depose|declare (generic term)
+deponent|1
+(noun)|testifier|deposer|witness (generic term)|witnesser (generic term)|informant (generic term)
+depopulate|1
+(verb)|desolate|shrink (generic term)|reduce (generic term)
+depopulated|1
+(adj)|uninhabited (similar term)
+depopulation|1
+(noun)|environmental condition (generic term)
+deport|3
+(verb)|behave|acquit|bear|conduct|comport|carry|hold (generic term)|carry (generic term)|bear (generic term)|act (generic term)|move (generic term)
+(verb)|extradite|deliver|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|expatriate|exile|expel (generic term)|throw out (generic term)|kick out (generic term)|repatriate (antonym)
+deportation|2
+(noun)|exile|expatriation|transportation|banishment (generic term)|proscription (generic term)
+(noun)|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+deportee|1
+(noun)|exile|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+deportment|1
+(noun)|demeanor|demeanour|behavior|behaviour|conduct|trait (generic term)
+depose|2
+(verb)|force out|oust (generic term)|throw out (generic term)|drum out (generic term)|boot out (generic term)|kick out (generic term)|expel (generic term)
+(verb)|swear|depone|declare (generic term)
+deposer|1
+(noun)|testifier|deponent|witness (generic term)|witnesser (generic term)|informant (generic term)
+deposit|12
+(noun)|sedimentation|alluviation|geological phenomenon (generic term)
+(noun)|sediment|substance (generic term)|matter (generic term)
+(noun)|deposition|accretion (generic term)|accumulation (generic term)
+(noun)|bank deposit|fund (generic term)|monetary fund (generic term)
+(noun)|down payment|payment (generic term)
+(noun)|security (generic term)|surety (generic term)
+(noun)|guarantee (generic term)|warrant (generic term)|warrantee (generic term)|warranty (generic term)
+(noun)|depository|depositary|repository|facility (generic term)|installation (generic term)
+(noun)|deposition|buildup (generic term)
+(verb)|lodge|wedge|stick|fasten (generic term)|fix (generic term)|secure (generic term)|stick out (related term)|dislodge (antonym)
+(verb)|bank|give (generic term)|withdraw (antonym)
+(verb)|situate|fix|posit|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+deposit account|1
+(noun)|time deposit account|savings account (generic term)
+deposit box|1
+(noun)|safe-deposit|safe-deposit box|safety-deposit|safety deposit box|lockbox|strongbox (generic term)|deedbox (generic term)
+depositary|1
+(noun)|depository|deposit|repository|facility (generic term)|installation (generic term)
+deposition|4
+(noun)|deposit|accretion (generic term)|accumulation (generic term)
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+(noun)|deposit|buildup (generic term)
+(noun)|dethronement|ouster (generic term)|ousting (generic term)
+depositor|1
+(noun)|investor (generic term)
+depository|1
+(noun)|deposit|depositary|repository|facility (generic term)|installation (generic term)
+depository financial institution|1
+(noun)|bank|banking concern|banking company|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+depository library|1
+(noun)|library|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+depot|2
+(noun)|terminal|terminus|station (generic term)
+(noun)|storehouse|entrepot|storage|store|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+depravation|1
+(noun)|corruption|degeneracy|depravity|putrefaction|immorality (generic term)
+deprave|1
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+depraved|1
+(adj)|immoral|perverse|perverted|reprobate|corrupt (similar term)
+depravity|2
+(noun)|corruption|degeneracy|depravation|putrefaction|immorality (generic term)
+(noun)|turpitude|transgression (generic term)|evildoing (generic term)
+deprecate|2
+(verb)|disapprove (generic term)|reject (generic term)
+(verb)|depreciate|vilipend|disparage (generic term)|belittle (generic term)|pick at (generic term)
+deprecating|1
+(adj)|belittling|deprecative|deprecatory|depreciative|depreciatory|slighting|uncomplimentary (similar term)
+deprecation|2
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|denigration|disparagement (generic term)|dispraise (generic term)
+deprecative|2
+(adj)|belittling|deprecating|deprecatory|depreciative|depreciatory|slighting|uncomplimentary (similar term)
+(adj)|critical (similar term)
+deprecatory|1
+(adj)|belittling|deprecating|deprecative|depreciative|depreciatory|slighting|uncomplimentary (similar term)
+depreciate|3
+(verb)|deprecate|vilipend|disparage (generic term)|belittle (generic term)|pick at (generic term)
+(verb)|devalue (generic term)|appreciate (antonym)
+(verb)|undervalue|devaluate|devalue|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|appreciate (antonym)
+depreciating|1
+(adj)|depreciative|depreciatory|decreasing (similar term)
+depreciation|3
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|appreciation (antonym)
+(noun)|wear and tear|financial loss (generic term)|non-cash expense (generic term)
+(noun)|disparagement|derogation|disrespect (generic term)|discourtesy (generic term)
+depreciation allowance|1
+(noun)|allowance (generic term)|adjustment (generic term)
+depreciation charge|1
+(noun)|charge (generic term)
+depreciation rate|1
+(noun)|rate of depreciation|rate (generic term)|charge per unit (generic term)
+depreciative|2
+(adj)|depreciating|depreciatory|decreasing (similar term)
+(adj)|belittling|deprecating|deprecative|deprecatory|depreciatory|slighting|uncomplimentary (similar term)
+depreciator|1
+(noun)|detractor|disparager|knocker|cynic (generic term)|faultfinder (generic term)
+depreciatory|2
+(adj)|depreciating|depreciative|decreasing (similar term)
+(adj)|belittling|deprecating|deprecative|deprecatory|depreciative|slighting|uncomplimentary (similar term)
+depredation|2
+(noun)|predation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(noun)|ravage|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+depress|5
+(verb)|deject|cast down|get down|dismay|dispirit|demoralize|demoralise|discourage (generic term)|elate (antonym)
+(verb)|lower (generic term)|take down (generic term)|let down (generic term)|get down (generic term)|bring down (generic term)
+(verb)|lower|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|press down|move (generic term)|displace (generic term)
+(verb)|weaken (generic term)
+depressant|2
+(adj)|ataractic (similar term)|ataraxic (similar term)|sedative (similar term)|tranquilizing (similar term)|tranquilising (similar term)|narcotic (similar term)|narcotizing (similar term)|narcotising (similar term)|relaxant (similar term)|soporific (similar term)|soporiferous (similar term)|somniferous (similar term)|somnific (similar term)|hypnogogic (similar term)|hypnagogic (similar term)|stimulative (antonym)
+(noun)|sedative|sedative drug|downer|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|drug of abuse (generic term)|street drug (generic term)
+depressed|4
+(adj)|down|low (similar term)
+(adj)|thin (similar term)
+(adj)|blue|dispirited|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected (similar term)
+(adj)|indented|concave (similar term)
+depressed fracture|1
+(noun)|fracture (generic term)|break (generic term)
+depressing|2
+(adj)|blue|dark|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(adj)|depressive|gloomy|saddening|sad (similar term)
+depression|10
+(noun)|psychological state (generic term)|mental state (generic term)|elation (antonym)
+(noun)|slump|economic crisis|financial condition (generic term)|economic condition (generic term)
+(noun)|natural depression|geological formation (generic term)|formation (generic term)|natural elevation (antonym)
+(noun)|sadness (generic term)|unhappiness (generic term)
+(noun)|Depression|Great Depression|historic period (generic term)|age (generic term)
+(noun)|low|low pressure|air mass (generic term)
+(noun)|depressive disorder|clinical depression|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+(noun)|impression|imprint|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|angular position (generic term)
+(noun)|push (generic term)|pushing (generic term)
+depressive|2
+(adj)|depressing|gloomy|saddening|sad (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+depressive disorder|1
+(noun)|clinical depression|depression|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+depressor|3
+(noun)|depressor muscle|skeletal muscle (generic term)|striated muscle (generic term)
+(noun)|depressor nerve|nerve (generic term)|nervus (generic term)
+(noun)|device (generic term)
+depressor muscle|1
+(noun)|depressor|skeletal muscle (generic term)|striated muscle (generic term)
+depressor nerve|1
+(noun)|depressor|nerve (generic term)|nervus (generic term)
+depressurise|1
+(verb)|depressurize|decompress|adjust (generic term)|set (generic term)|correct (generic term)|pressurise (antonym)|pressurize (antonym)
+depressurize|1
+(verb)|depressurise|decompress|adjust (generic term)|set (generic term)|correct (generic term)|pressurise (antonym)|pressurize (antonym)
+deprivation|3
+(noun)|privation|want|neediness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|loss|disadvantage (generic term)
+(noun)|privation|social control (generic term)
+deprive|3
+(verb)|strip|divest|take (generic term)
+(verb)|withhold (generic term)|keep back (generic term)
+(verb)|impoverish|worsen (generic term)|decline (generic term)|enrich (antonym)
+deprived|1
+(adj)|disadvantaged|underprivileged (similar term)
+depth|5
+(noun)|extent (generic term)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|abasement (generic term)|degradation (generic term)|abjection (generic term)
+(noun)|astuteness|profundity|profoundness|deepness|wisdom (generic term)|sapience (generic term)
+depth bomb|1
+(noun)|depth charge|bomb (generic term)
+depth charge|1
+(noun)|depth bomb|bomb (generic term)
+depth finder|1
+(noun)|navigational instrument (generic term)
+depth gage|1
+(noun)|depth gauge|gauge (generic term)|gage (generic term)
+depth gauge|1
+(noun)|depth gage|gauge (generic term)|gage (generic term)
+depth psychology|1
+(noun)|psychoanalysis|analysis|psychotherapy (generic term)
+deputation|2
+(noun)|commission|delegation|delegacy|mission|organization (generic term)|organisation (generic term)
+(noun)|delegating|delegation|relegating|relegation|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+depute|3
+(verb)|delegate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|deputize|deputise|appoint (generic term)|charge (generic term)
+(verb)|delegate|designate|assign|appoint (generic term)|charge (generic term)
+deputise|2
+(verb)|substitute|deputize|step in|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+(verb)|depute|deputize|appoint (generic term)|charge (generic term)
+deputize|2
+(verb)|substitute|deputise|step in|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+(verb)|depute|deputise|appoint (generic term)|charge (generic term)
+deputy|4
+(noun)|deputy sheriff|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|lieutenant|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|legislator (generic term)
+(noun)|surrogate|agent (generic term)
+deputy sheriff|1
+(noun)|deputy|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+der fuhrer|1
+(noun)|Hitler|Adolf Hitler|Der Fuhrer|dictator (generic term)|potentate (generic term)|Nazi (generic term)|German Nazi (generic term)
+deracinate|2
+(verb)|displace|uproot|place (generic term)
+(verb)|uproot|extirpate|root out|move (generic term)|displace (generic term)
+deracination|2
+(noun)|displacement|movement (generic term)
+(noun)|extirpation|excision|pull (generic term)|pulling (generic term)
+derail|2
+(verb)|sabotage (generic term)|undermine (generic term)|countermine (generic term)|counteract (generic term)|subvert (generic term)|weaken (generic term)
+(verb)|jump|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+derailment|1
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+derain|1
+(noun)|Derain|Andre Derain|painter (generic term)
+derange|2
+(verb)|unbalance|madden (generic term)|craze (generic term)
+(verb)|perturb|throw out of kilter|disorder (generic term)|disarray (generic term)
+deranged|1
+(adj)|crazed|half-crazed|insane (similar term)
+derangement|2
+(noun)|mental unsoundness|unbalance|insanity (generic term)
+(noun)|upset|overthrow|disturbance (generic term)
+derate|1
+(verb)|lower (generic term)|lour (generic term)
+derby|1
+(noun)|bowler hat|bowler|derby hat|plug hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+derby hat|1
+(noun)|bowler hat|bowler|derby|plug hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+derecognise|1
+(verb)|decertify|derecognize|certify (antonym)
+derecognize|1
+(verb)|decertify|derecognise|certify (antonym)
+deregulate|1
+(verb)|exempt (generic term)|relieve (generic term)|free (generic term)|regulate (antonym)
+deregulating|1
+(noun)|deregulation|liberation (generic term)|release (generic term)|freeing (generic term)
+deregulation|1
+(noun)|deregulating|liberation (generic term)|release (generic term)|freeing (generic term)
+derelict|6
+(adj)|creaky|decrepit|flea-bitten|run-down|woebegone|worn (similar term)
+(adj)|abandoned|uninhabited (similar term)
+(adj)|delinquent|neglectful|remiss|negligent (similar term)
+(adj)|bedraggled|broken-down|dilapidated|ramshackle|tatterdemalion|tumble-down|damaged (similar term)
+(noun)|pauper (generic term)|poor man (generic term)
+(noun)|abandoned ship|ship (generic term)
+dereliction|2
+(noun)|delinquency|willful neglect|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+(noun)|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+derequisition|1
+(verb)|release (generic term)|relinquish (generic term)|resign (generic term)|free (generic term)|give up (generic term)|requisition (antonym)
+derestrict|1
+(verb)|exempt (generic term)|relieve (generic term)|free (generic term)|restrict (antonym)
+deride|1
+(verb)|mock (generic term)|bemock (generic term)
+derision|2
+(noun)|disrespect (generic term)|discourtesy (generic term)
+(noun)|ridicule|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+derisive|1
+(adj)|gibelike|jeering|mocking|taunting|disrespectful (similar term)
+derisively|1
+(adv)|scoffingly|derisorily|mockingly
+derisorily|1
+(adv)|derisively|scoffingly|mockingly
+derisory|1
+(adj)|absurd|cockeyed|idiotic|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish (similar term)
+derivable|1
+(adj)|derived (similar term)
+derivation|7
+(noun)|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|deriving|etymologizing|explanation (generic term)|account (generic term)
+(noun)|inference (generic term)|illation (generic term)
+(noun)|linguistic process (generic term)
+(noun)|ancestry|lineage|filiation|inheritance (generic term)|hereditary pattern (generic term)
+(noun)|drawing (generic term)|drawing off (generic term)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+derivational|1
+(adj)|inflectional (antonym)
+derivational morphology|1
+(noun)|morphology (generic term)
+derivative|4
+(adj)|derived (similar term)
+(noun)|derived function|differential coefficient|differential|first derivative|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|derivative instrument|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|word (generic term)
+derivative instrument|1
+(noun)|derivative|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+derive|5
+(verb)|deduce|infer|deduct|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|gain|obtain (generic term)
+(verb)|evolve (generic term)
+(verb)|educe|make (generic term)|create (generic term)
+(verb)|come|descend
+derived|1
+(adj)|copied (similar term)|traced (similar term)|derivable (similar term)|derivative (similar term)|plagiaristic (similar term)|plagiarized (similar term)|plagiarised (similar term)|underived (antonym)
+derived function|1
+(noun)|derivative|differential coefficient|differential|first derivative|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+deriving|1
+(noun)|derivation|etymologizing|explanation (generic term)|account (generic term)
+derma|1
+(noun)|dermis|corium|stratum (generic term)
+dermabrasion|1
+(noun)|removal (generic term)|remotion (generic term)
+dermacentor|1
+(noun)|Dermacentor|genus Dermacentor|arthropod genus (generic term)
+dermacentor variabilis|1
+(noun)|wood tick|American dog tick|Dermacentor variabilis|hard tick (generic term)|ixodid (generic term)
+dermal|3
+(adj)|cuticular|epidermal|epidermic|stratum (related term)|carapace|shell|cuticle|shield (related term)
+(adj)|dermic|stratum (related term)
+(adj)|cutaneous|cutaneal|connective tissue|body covering (related term)
+dermaptera|1
+(noun)|Dermaptera|order Dermaptera|animal order (generic term)
+dermatitis|1
+(noun)|eczema (generic term)
+dermatobia|1
+(noun)|Dermatobia|genus Dermatobia|arthropod genus (generic term)
+dermatobia hominis|1
+(noun)|human botfly|Dermatobia hominis|botfly (generic term)
+dermatoglyphic|1
+(noun)|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+dermatoglyphics|1
+(noun)|life science (generic term)|bioscience (generic term)
+dermatologic|1
+(adj)|dermatological|medicine|medical specialty (related term)
+dermatological|1
+(adj)|dermatologic|medicine|medical specialty (related term)
+dermatologist|1
+(noun)|skin doctor|specialist (generic term)|medical specialist (generic term)
+dermatology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+dermatome|1
+(noun)|surgical instrument (generic term)
+dermatomycosis|1
+(noun)|dermatophytosis|fungal infection (generic term)|mycosis (generic term)
+dermatomyositis|1
+(noun)|myositis (generic term)
+dermatophytosis|1
+(noun)|dermatomycosis|fungal infection (generic term)|mycosis (generic term)
+dermatosclerosis|1
+(noun)|scleroderma|autoimmune disease (generic term)|autoimmune disorder (generic term)
+dermatosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+dermestidae|1
+(noun)|Dermestidae|family Dermestidae|arthropod family (generic term)
+dermic|1
+(adj)|dermal|stratum (related term)
+dermis|1
+(noun)|corium|derma|stratum (generic term)
+dermochelyidae|1
+(noun)|Dermochelyidae|family Dermochelyidae|reptile family (generic term)
+dermochelys|1
+(noun)|Dermochelys|genus Dermochelys|reptile genus (generic term)
+dermochelys coriacea|1
+(noun)|leatherback turtle|leatherback|leathery turtle|Dermochelys coriacea|sea turtle (generic term)|marine turtle (generic term)
+dermoid cyst|1
+(noun)|cyst (generic term)
+dermoptera|1
+(noun)|Dermoptera|order Dermoptera|animal order (generic term)
+derogate|1
+(verb)|minimize|belittle|denigrate|disparage (generic term)|belittle (generic term)|pick at (generic term)
+derogation|2
+(noun)|disparagement|depreciation|disrespect (generic term)|discourtesy (generic term)
+(noun)|abrogation (generic term)|repeal (generic term)|annulment (generic term)
+derogative|1
+(adj)|derogatory|disparaging|uncomplimentary (similar term)
+derogatory|1
+(adj)|derogative|disparaging|uncomplimentary (similar term)
+derrick|2
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|crane (generic term)
+derrida|1
+(noun)|Derrida|Jacques Derrida|philosopher (generic term)|literary critic (generic term)
+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 (generic term)
+derring-do|1
+(noun)|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+derringer|1
+(noun)|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+derris|1
+(noun)|shrub (generic term)|bush (generic term)
+derris elliptica|1
+(noun)|derris root|tuba root|Derris elliptica|vine (generic term)
+derris root|1
+(noun)|tuba root|Derris elliptica|vine (generic term)
+derv|1
+(noun)|diesel oil (generic term)|diesel fuel (generic term)
+dervish|1
+(noun)|fakir (generic term)|fakeer (generic term)|faqir (generic term)|faquir (generic term)
+des|2
+(noun)|diethylstilbestrol|diethylstilboestrol|stilbestrol|stilboestrol|DES|estrogen (generic term)|oestrogen (generic term)
+(noun)|diethylstilbesterol|DES|stilbesterol|nonsteroid (generic term)|nonsteroidal (generic term)
+des moines|1
+(noun)|Des Moines|capital of Iowa|state capital (generic term)
+desacralize|1
+(verb)|secularize|transfer (generic term)
+desalinate|1
+(verb)|desalt|desalinize|desalinise|change (generic term)|salinate (antonym)
+desalination|1
+(noun)|desalinization|desalinisation|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+desalinisation|1
+(noun)|desalination|desalinization|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+desalinise|1
+(verb)|desalinate|desalt|desalinize|change (generic term)|salinate (antonym)
+desalinization|1
+(noun)|desalination|desalinisation|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+desalinize|1
+(verb)|desalinate|desalt|desalinise|change (generic term)|salinate (antonym)
+desalt|1
+(verb)|desalinate|desalinize|desalinise|change (generic term)|salinate (antonym)
+descale|1
+(verb)|scale|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+descant|4
+(noun)|discant|accompaniment (generic term)|musical accompaniment (generic term)|backup (generic term)|support (generic term)
+(verb)|sing (generic term)
+(verb)|yodel|warble|sing (generic term)
+(verb)|discourse (generic term)|talk about (generic term)|discuss (generic term)
+descant on|1
+(verb)|sing (generic term)
+descartes|1
+(noun)|Descartes|Rene Descartes|mathematician (generic term)|philosopher (generic term)
+descend|4
+(verb)|fall|go down|come down|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|fall in (related term)|rise (antonym)|ascend (antonym)
+(verb)|derive|come
+(verb)|condescend|deign|act (generic term)|move (generic term)
+(verb)|fall|settle|come (generic term)
+descendant|2
+(adj)|descendent|descending (similar term)
+(noun)|descendent|relative (generic term)|relation (generic term)|ancestor (antonym)
+descendants|1
+(noun)|posterity|biological group (generic term)
+descendent|2
+(adj)|descendant|descending (similar term)
+(noun)|descendant|relative (generic term)|relation (generic term)|ancestor (antonym)
+descender|3
+(noun)|mover (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|line (generic term)
+descending|1
+(adj)|declivitous (similar term)|downhill (similar term)|downward-sloping (similar term)|degressive (similar term)|descendant (similar term)|descendent (similar term)|down (similar term)|downward (similar term)|downward-arching (similar term)|drizzling (similar term)|dropping (similar term)|falling (similar term)|raining (similar term)|down (related term)|ascending (antonym)
+descending aorta|1
+(noun)|aorta (generic term)
+descending colon|1
+(noun)|colon (generic term)
+descending node|1
+(noun)|node (generic term)|ascending node (antonym)
+descensus|1
+(noun)|prolapse|prolapsus|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+descensus uteri|1
+(noun)|metroptosis|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+descent|6
+(noun)|change of location (generic term)|travel (generic term)
+(noun)|origin|extraction|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|line of descent|lineage|filiation|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|declivity|fall|decline|declination|declension|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+(noun)|lineage|line|line of descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+describable|1
+(adj)|expressible (similar term)
+describe|4
+(verb)|depict|draw|set forth (generic term)|expound (generic term)|exposit (generic term)
+(verb)|report|account|inform (generic term)
+(verb)|identify|discover|key|key out|distinguish|name
+(verb)|trace|draw|line|delineate|mark (generic term)
+described|1
+(adj)|delineated (similar term)|represented (similar term)|delineate (similar term)
+description|3
+(noun)|verbal description|statement (generic term)
+(noun)|speech act (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+descriptive|3
+(adj)|undescriptive (antonym)
+(adj)|synchronic|synchronous (related term)|synchronal (related term)|synchronic (related term)|diachronic (antonym)
+(adj)|prescriptive (antonym)
+descriptive adjective|1
+(noun)|qualifying adjective|adjective (generic term)
+descriptive anthropology|1
+(noun)|ethnography|anthropology (generic term)
+descriptive clause|1
+(noun)|nonrestrictive clause|subordinate clause (generic term)|dependent clause (generic term)
+descriptive geometry|1
+(noun)|projective geometry|geometry (generic term)
+descriptive grammar|1
+(noun)|grammar (generic term)
+descriptive linguistics|1
+(noun)|linguistics (generic term)|prescriptive linguistics (antonym)
+descriptivism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+descriptor|2
+(noun)|form|word form|signifier|word (generic term)
+(noun)|information (generic term)
+descry|1
+(verb)|spot|espy|spy|sight (generic term)
+descurainia|1
+(noun)|Descurainia|genus Descurainia|dilleniid dicot genus (generic term)
+descurainia pinnata|1
+(noun)|tansy mustard|Descurainia pinnata|herb (generic term)|herbaceous plant (generic term)
+desecrate|2
+(verb)|profane|outrage|violate|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|unhallow|deconsecrate|change by reversal (generic term)|turn (generic term)|reverse (generic term)|consecrate (antonym)
+desecrated|1
+(adj)|deconsecrated (similar term)|profaned (similar term)|violated (similar term)|consecrated (antonym)
+desecration|1
+(noun)|profanation|blasphemy|sacrilege|irreverence (generic term)|violation (generic term)
+desegrated|1
+(adj)|nonsegregated|unsegregated|integrated (similar term)
+desegregate|1
+(verb)|integrate|mix|segregate (antonym)
+desegregation|1
+(noun)|integration|integrating|group action (generic term)|segregation (antonym)
+desensitisation|1
+(noun)|desensitization|decrease (generic term)|decrement (generic term)
+desensitisation procedure|1
+(noun)|desensitization technique|desensitisation technique|desensitization procedure|systematic desensitization|systematic desensitisation|behavior therapy (generic term)|behavior modification (generic term)
+desensitisation technique|1
+(noun)|desensitization technique|desensitization procedure|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy (generic term)|behavior modification (generic term)
+desensitise|2
+(verb)|desensitize|change (generic term)|alter (generic term)|modify (generic term)|sensitise (antonym)|sensitize (antonym)
+(verb)|desensitize|change (generic term)|alter (generic term)|modify (generic term)|sensitize (antonym)
+desensitised|1
+(adj)|desensitized|insensitive (similar term)
+desensitising|1
+(adj)|desensitizing|numbing (similar term)|sensitizing (antonym)
+desensitization|1
+(noun)|desensitisation|decrease (generic term)|decrement (generic term)
+desensitization procedure|1
+(noun)|desensitization technique|desensitisation technique|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy (generic term)|behavior modification (generic term)
+desensitization technique|1
+(noun)|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitization|systematic desensitisation|behavior therapy (generic term)|behavior modification (generic term)
+desensitize|2
+(verb)|desensitise|change (generic term)|alter (generic term)|modify (generic term)|sensitise (antonym)|sensitize (antonym)
+(verb)|desensitise|change (generic term)|alter (generic term)|modify (generic term)|sensitize (antonym)
+desensitized|1
+(adj)|desensitised|insensitive (similar term)
+desensitizing|1
+(adj)|desensitising|numbing (similar term)|sensitizing (antonym)
+desert|4
+(adj)|godforsaken|waste|wild|inhospitable (similar term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|biome (generic term)
+(verb)|abandon|forsake|desolate|leave (generic term)
+(verb)|defect|flee (generic term)|fly (generic term)|take flight (generic term)
+desert boot|1
+(noun)|buskin|combat boot|half boot|top boot|boot (generic term)
+desert four o'clock|1
+(noun)|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock (generic term)
+desert fox|1
+(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal (generic term)
+desert holly|1
+(noun)|Atriplex hymenelytra|saltbush (generic term)
+desert iguana|1
+(noun)|Dipsosaurus dorsalis|iguanid (generic term)|iguanid lizard (generic term)
+desert lynx|1
+(noun)|caracal|Lynx caracal|lynx (generic term)|catamount (generic term)
+desert mariposa tulip|1
+(noun)|Calochortus kennedyi|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+desert olive|1
+(noun)|tanglebush|Forestiera neomexicana|forestiera (generic term)
+desert paintbrush|1
+(noun)|Castilleja chromosa|Indian paintbrush (generic term)|painted cup (generic term)
+desert pea|1
+(noun)|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea (generic term)|clianthus (generic term)
+desert plant|1
+(noun)|xerophyte|xerophytic plant|xerophile|xerophilous plant|vascular plant (generic term)|tracheophyte (generic term)
+desert plume|1
+(noun)|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub (generic term)|suffrutex (generic term)
+desert rat|1
+(noun)|kangaroo rat|Dipodomys phillipsii|pocket rat (generic term)
+desert rheumatism|1
+(noun)|coccidioidomycosis|coccidiomycosis|valley fever|fungal infection (generic term)|mycosis (generic term)
+desert rose|1
+(noun)|impala lily|mock azalia|kudu lily|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+desert sand verbena|1
+(noun)|Abronia villosa|sand verbena (generic term)
+desert selaginella|1
+(noun)|Selaginella eremophila|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+desert soil|1
+(noun)|desertic soil|soil (generic term)|dirt (generic term)
+desert sunflower|1
+(noun)|Gerea canescens|wildflower (generic term)|wild flower (generic term)
+desert tortoise|1
+(noun)|Gopherus agassizii|tortoise (generic term)
+desert willow|1
+(noun)|Chilopsis linearis|shrub (generic term)|bush (generic term)
+deserted|1
+(adj)|inaccessible (similar term)|unaccessible (similar term)
+deserter|2
+(noun)|apostate|renegade|turncoat|recreant|ratter|quitter (generic term)
+(noun)|defector|wrongdoer (generic term)|offender (generic term)
+desertic soil|1
+(noun)|desert soil|soil (generic term)|dirt (generic term)
+desertification|1
+(noun)|geological process (generic term)|geologic process (generic term)
+desertion|2
+(noun)|abandonment|defection|withdrawal (generic term)
+(noun)|abandonment|forsaking|rejection (generic term)
+deserts|1
+(noun)|comeuppance|comeupance|consequence (generic term)|aftermath (generic term)
+deserve|1
+(verb)|merit|be (generic term)
+deserved|1
+(adj)|merited|condign (similar term)|unmerited (antonym)
+deservedly|1
+(adv)|undeservedly (antonym)
+deserving|1
+(adj)|meriting|worth|worthy (similar term)
+deservingness|1
+(noun)|merit|meritoriousness|worthiness (generic term)
+desex|1
+(verb)|sterilize|sterilise|unsex|desexualize|desexualise|fix|operate on (generic term)|operate (generic term)
+desexualise|2
+(verb)|desexualize|sublimate (generic term)
+(verb)|sterilize|sterilise|desex|unsex|desexualize|fix|operate on (generic term)|operate (generic term)
+desexualize|2
+(verb)|desexualise|sublimate (generic term)
+(verb)|sterilize|sterilise|desex|unsex|desexualise|fix|operate on (generic term)|operate (generic term)
+deshabille|1
+(noun)|dishabille|condition (generic term)|status (generic term)
+desiccant|1
+(noun)|drying agent|drier|sicative|chemical agent (generic term)
+desiccate|4
+(adj)|arid|desiccated|dull (similar term)
+(verb)|dehydrate|preserve (generic term)|keep (generic term)
+(verb)|dehydrate|dry (generic term)|dry out (generic term)
+(verb)|exsiccate|dehydrate|dry up|dry (generic term)|dry out (generic term)|hydrate (antonym)
+desiccated|3
+(adj)|dried-out|dry (similar term)
+(adj)|dried|dehydrated|preserved (similar term)
+(adj)|arid|desiccate|dull (similar term)
+desiccation|2
+(noun)|dehydration|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+(noun)|dehydration|drying up|evaporation|extraction (generic term)
+desideratum|1
+(noun)|necessity (generic term)|essential (generic term)|requirement (generic term)|requisite (generic term)|necessary (generic term)
+desiderius erasmus|1
+(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|humanist (generic term)
+design|13
+(noun)|designing|creating by mental acts (generic term)
+(noun)|plan|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|blueprint|pattern|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|pattern|figure|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|purpose|intent|intention|aim|goal (generic term)|end (generic term)
+(noun)|sketch (generic term)|study (generic term)
+(noun)|invention|innovation|excogitation|conception|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(verb)|plan|project|contrive|create by mental act (generic term)|create mentally (generic term)
+(verb)|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+(verb)|plan|create by mental act (generic term)|create mentally (generic term)
+(verb)|create (generic term)|make (generic term)
+(verb)|gestate (generic term)|conceive (generic term)|conceptualize (generic term)|conceptualise (generic term)
+(verb)|intend (generic term)|mean (generic term)|think (generic term)
+design criteria|1
+(noun)|criterion (generic term)|standard (generic term)
+designate|5
+(adj)|incoming (similar term)
+(verb)|denominate
+(verb)|delegate|depute|assign|appoint (generic term)|charge (generic term)
+(verb)|destine|fate|doom|ordain (generic term)
+(verb)|intend|destine|specify|plan (generic term)
+designated|1
+(adj)|selected (similar term)
+designated driver|1
+(noun)|driver (generic term)
+designated hitter|1
+(noun)|batter (generic term)|hitter (generic term)|slugger (generic term)|batsman (generic term)
+designation|3
+(noun)|appellation|denomination|appellative|name (generic term)
+(noun)|appointment|assignment|naming|decision (generic term)|determination (generic term)|conclusion (generic term)
+(noun)|identification|determination (generic term)|finding (generic term)
+designative|1
+(adj)|denotative (similar term)|denotive (similar term)
+designatum|1
+(noun)|referent (generic term)
+designed|4
+(adj)|planned (similar term)
+(adj)|intentional|fashioned (similar term)|undesigned (antonym)
+(adj)|studied|premeditated (similar term)
+(adj)|configured|organized (similar term)
+designedly|1
+(adv)|intentionally|deliberately|on purpose|purposely|advisedly|by choice|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+designer|4
+(noun)|interior designer|interior decorator|house decorator|room decorator|decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+(noun)|architect|creator (generic term)
+(noun)|intriguer|planner (generic term)|contriver (generic term)|deviser (generic term)
+(noun)|couturier|fashion designer|clothes designer|creator (generic term)
+designer drug|1
+(noun)|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+designing|2
+(adj)|scheming|artful (similar term)
+(noun)|design|creating by mental acts (generic term)
+desirability|2
+(noun)|desirableness|good (generic term)|goodness (generic term)|undesirability (antonym)
+(noun)|sex appeal|desirableness|oomph|attractiveness (generic term)
+desirable|2
+(adj)|coveted (similar term)|desired (similar term)|in demand (similar term)|sought after (similar term)|delectable (similar term)|sexually attractive (similar term)|enviable (similar term)|plummy (similar term)|preferable (similar term)|preferred (similar term)|lovable (related term)|loveable (related term)|wanted (related term)|undesirable (antonym)
+(adj)|suitable|worthy|eligible (similar term)
+desirableness|2
+(noun)|desirability|good (generic term)|goodness (generic term)|undesirability (antonym)
+(noun)|sex appeal|desirability|oomph|attractiveness (generic term)
+desire|6
+(noun)|feeling (generic term)
+(noun)|tendency (generic term)|inclination (generic term)
+(noun)|arousal (generic term)
+(verb)|want
+(verb)|hope|trust|wish (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+desire to know|1
+(noun)|lust for learning|thirst for knowledge|curiosity (generic term)|wonder (generic term)
+desired|2
+(adj)|coveted|in demand|sought after|desirable (similar term)
+(adj)|craved|wanted (similar term)
+desirous|1
+(adj)|wishful|appetent (similar term)|athirst (similar term)|hungry (similar term)|thirsty (similar term)|avid (similar term)|devouring (similar term)|esurient (similar term)|greedy (similar term)|covetous (similar term)|envious (similar term)|jealous (similar term)|undesirous (antonym)
+desist|1
+(verb)|abstain|refrain|consume (antonym)
+desk|1
+(noun)|table (generic term)
+desk-bound|1
+(adj)|deskbound|inactive (similar term)
+desk clerk|1
+(noun)|hotel desk clerk|hotel clerk|clerk (generic term)
+desk dictionary|1
+(noun)|collegiate dictionary|dictionary (generic term)|lexicon (generic term)
+desk officer|1
+(noun)|military officer (generic term)|officer (generic term)
+desk phone|1
+(noun)|telephone (generic term)|phone (generic term)|telephone set (generic term)
+desk sergeant|1
+(noun)|deskman|station keeper|police sergeant (generic term)|sergeant (generic term)
+deskbound|1
+(adj)|desk-bound|inactive (similar term)
+deskman|1
+(noun)|desk sergeant|station keeper|police sergeant (generic term)|sergeant (generic term)
+desktop|2
+(noun)|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(noun)|background|screen background|screen (generic term)|CRT screen (generic term)
+desktop computer|1
+(noun)|personal computer (generic term)|PC (generic term)|microcomputer (generic term)
+desktop publishing|1
+(noun)|publication (generic term)|publishing (generic term)
+desmanthus|1
+(noun)|Desmanthus|genus Desmanthus|rosid dicot genus (generic term)
+desmanthus ilinoensis|1
+(noun)|prairie mimosa|prickle-weed|Desmanthus ilinoensis|herb (generic term)|herbaceous plant (generic term)
+desmid|1
+(noun)|green algae (generic term)|chlorophyte (generic term)
+desmidiaceae|1
+(noun)|Desmidiaceae|family Desmidiaceae|protoctist family (generic term)
+desmidium|1
+(noun)|Desmidium|genus Desmidium|protoctist genus (generic term)
+desmodium|1
+(noun)|Desmodium|genus Desmodium|rosid dicot genus (generic term)
+desmodium gyrans|1
+(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub (generic term)|bush (generic term)
+desmodium motorium|1
+(noun)|telegraph plant|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub (generic term)|bush (generic term)
+desmodium purpureum|1
+(noun)|beggarweed|Desmodium tortuosum|Desmodium purpureum|tick trefoil (generic term)|beggar lice (generic term)|beggar's lice (generic term)
+desmodium tortuosum|1
+(noun)|beggarweed|Desmodium tortuosum|Desmodium purpureum|tick trefoil (generic term)|beggar lice (generic term)|beggar's lice (generic term)
+desmodontidae|1
+(noun)|Desmodontidae|family Desmodontidae|mammal family (generic term)
+desmodus|1
+(noun)|Desmodus|genus Desmodus|mammal genus (generic term)
+desmodus rotundus|1
+(noun)|Desmodus rotundus|vampire bat (generic term)|true vampire bat (generic term)
+desmograthus|1
+(noun)|Desmograthus|genus Desmograthus|amphibian genus (generic term)
+desmond tutu|1
+(noun)|Tutu|Desmond Tutu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+desolate|5
+(adj)|bare|barren|bleak|stark|inhospitable (similar term)
+(adj)|inconsolable (similar term)|disconsolate (similar term)|unconsolable (similar term)
+(verb)|abandon|forsake|desert|leave (generic term)
+(verb)|depopulate|shrink (generic term)|reduce (generic term)
+(verb)|lay waste to|waste|devastate|ravage|scourge|destroy (generic term)|ruin (generic term)
+desolately|1
+(adv)|disconsolately
+desolation|4
+(noun)|devastation|deterioration (generic term)|impairment (generic term)
+(noun)|bleakness|bareness|nakedness|gloom (generic term)|gloominess (generic term)|glumness (generic term)
+(noun)|forlornness|loneliness|sadness (generic term)|unhappiness (generic term)
+(noun)|devastation|ruin (generic term)|ruination (generic term)
+desorb|2
+(verb)|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+desorption|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+desoxyribonucleic acid|1
+(noun)|deoxyribonucleic acid|DNA|polymer (generic term)
+despair|3
+(noun)|desperation|condition (generic term)|status (generic term)
+(noun)|feeling (generic term)|hope (antonym)
+(verb)|hope (antonym)
+despairing|1
+(adj)|desperate|hopeless (similar term)
+despairingly|1
+(adv)|despondently
+despatch|5
+(noun)|dispatch|communique|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+(noun)|dispatch|expedition|expeditiousness|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+(noun)|dispatch|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|dispatch|shipment|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(verb)|dispatch|send off|transport (generic term)|send (generic term)|ship (generic term)
+desperado|1
+(noun)|desperate criminal|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+desperate|7
+(adj)|despairing|hopeless (similar term)
+(adj)|do-or-die|resolute (similar term)
+(adj)|dangerous (similar term)|unsafe (similar term)
+(adj)|heroic|brave (similar term)|courageous (similar term)
+(adj)|imperative (similar term)
+(adj)|dire|critical (similar term)
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+desperate criminal|1
+(noun)|desperado|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+desperate measure|1
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+desperate straits|1
+(noun)|dire straits|pass (generic term)|strait (generic term)|straits (generic term)
+desperately|1
+(adv)|urgently
+desperation|2
+(noun)|despair|condition (generic term)|status (generic term)
+(noun)|recklessness (generic term)|foolhardiness (generic term)|rashness (generic term)
+despicability|1
+(noun)|baseness|sordidness|contemptibility|despicableness|unworthiness (generic term)
+despicable|1
+(adj)|ugly|vile|slimy|unworthy|worthless|wretched|evil (similar term)
+despicableness|1
+(noun)|baseness|sordidness|contemptibility|despicability|unworthiness (generic term)
+despiramine|1
+(noun)|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+despisal|1
+(noun)|despising|hate (generic term)|hatred (generic term)
+despise|1
+(verb)|contemn|scorn|disdain|hate (generic term)|detest (generic term)
+despised|1
+(adj)|detested|hated|scorned|unloved (similar term)
+despising|1
+(noun)|despisal|hate (generic term)|hatred (generic term)
+despite|2
+(noun)|contempt|disdain|scorn|dislike (generic term)
+(noun)|disregard (generic term)|neglect (generic term)
+despiteful|1
+(adj)|spiteful|vindictive|malicious (similar term)
+despitefully|1
+(adv)|spitefully
+despoil|2
+(verb)|plunder|loot|reave|strip|rifle|ransack|pillage|foray|take (generic term)
+(verb)|rape|spoil|violate|plunder|destroy (generic term)|ruin (generic term)
+despoilation|1
+(noun)|spoil|spoliation|spoilation|despoilment|despoliation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+despoiled|1
+(adj)|pillaged|raped|ravaged|sacked|destroyed (similar term)
+despoiler|1
+(noun)|plunderer|pillager|looter|spoiler|raider|freebooter|thief (generic term)|stealer (generic term)
+despoilment|1
+(noun)|spoil|spoliation|spoilation|despoilation|despoliation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+despoina|1
+(noun)|Persephone|Despoina|Kore|Cora|Greek deity (generic term)
+despoliation|1
+(noun)|spoil|spoliation|spoilation|despoilation|despoilment|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+despond|1
+(verb)|despair (generic term)
+despondence|1
+(noun)|despondency|heartsickness|disconsolateness|depression (generic term)
+despondency|1
+(noun)|despondence|heartsickness|disconsolateness|depression (generic term)
+despondent|1
+(adj)|heartsick|hopeless (similar term)
+despondently|1
+(adv)|despairingly
+despot|1
+(noun)|tyrant|autocrat|dictator (generic term)|potentate (generic term)
+despotic|3
+(adj)|despotical|dictator|potentate (related term)
+(adj)|undemocratic (similar term)
+(adj)|authoritarian|autocratic|dictatorial|tyrannical|undemocratic (similar term)
+despotical|1
+(adj)|despotic|dictator|potentate (related term)
+despotism|2
+(noun)|absolutism|tyranny|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+desquamate|1
+(verb)|peel off|shed (generic term)|molt (generic term)|exuviate (generic term)|moult (generic term)|slough (generic term)
+desquamation|1
+(noun)|peeling|shedding|organic phenomenon (generic term)
+dessert|1
+(noun)|sweet|afters|course (generic term)
+dessert apple|1
+(noun)|eating apple|apple (generic term)|cooking apple (antonym)
+dessert plate|1
+(noun)|plate (generic term)
+dessert spoon|1
+(noun)|spoon (generic term)
+dessert wine|1
+(noun)|wine (generic term)|vino (generic term)
+dessertspoon|1
+(noun)|dessertspoonful|containerful (generic term)
+dessertspoonful|1
+(noun)|dessertspoon|containerful (generic term)
+dessiatine|1
+(noun)|area unit (generic term)|square measure (generic term)
+destabilisation|1
+(noun)|destabilization|action (generic term)|stabilisation (antonym)|stabilization (antonym)
+destabilise|2
+(verb)|destabilize|change (generic term)|stabilize (antonym)|stabilize (antonym)
+(verb)|destabilize|change (generic term)|alter (generic term)|modify (generic term)|stabilise (antonym)|stabilize (antonym)
+destabilization|2
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|destabilisation|action (generic term)|stabilisation (antonym)|stabilization (antonym)
+destabilize|2
+(verb)|destabilise|change (generic term)|stabilize (antonym)|stabilize (antonym)
+(verb)|destabilise|change (generic term)|alter (generic term)|modify (generic term)|stabilise (antonym)|stabilize (antonym)
+destain|1
+(verb)|get rid of (generic term)|remove (generic term)
+destalinisation|1
+(noun)|destalinization|de-Stalinization|de-Stalinisation|social process (generic term)
+destalinise|1
+(verb)|destalinize|transform (generic term)|transmute (generic term)|transubstantiate (generic term)|stalinize (antonym)
+destalinization|1
+(noun)|de-Stalinization|destalinisation|de-Stalinisation|social process (generic term)
+destalinize|1
+(verb)|destalinise|transform (generic term)|transmute (generic term)|transubstantiate (generic term)|stalinize (antonym)
+destination|3
+(noun)|finish|goal|end (generic term)
+(noun)|terminus|goal (generic term)|end (generic term)
+(noun)|address|name and address|direction (generic term)|instruction (generic term)
+destine|2
+(verb)|fate|doom|designate|ordain (generic term)
+(verb)|intend|designate|specify|plan (generic term)
+destined|2
+(adj)|bound|oriented (similar term)|orientated (similar term)
+(adj)|bound|certain (similar term)|sure (similar term)
+destiny|3
+(noun)|fate|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|Destiny|Fate|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|fortune|fate|luck|lot|circumstances|portion|condition (generic term)
+destitute|2
+(adj)|impoverished|indigent|necessitous|needy|poverty-stricken|poor (similar term)
+(adj)|barren|devoid|innocent|empty (similar term)
+destitution|1
+(noun)|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+destress|1
+(verb)|de-emphasize|de-emphasise|change (generic term)|alter (generic term)|modify (generic term)
+destroy|4
+(verb)|destruct|unmake (generic term)|undo (generic term)
+(verb)|ruin
+(verb)|demolish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|kill (generic term)
+destroyable|1
+(adj)|destructible (similar term)
+destroyed|2
+(adj)|annihilated (similar term)|exterminated (similar term)|wiped out (similar term)|blighted (similar term)|spoilt (similar term)|blotted out (similar term)|obliterate (similar term)|obliterated (similar term)|broken (similar term)|wiped out (similar term)|impoverished (similar term)|burned (similar term)|burnt (similar term)|burned-over (similar term)|burned-out (similar term)|burnt-out (similar term)|demolished (similar term)|dismantled (similar term)|razed (similar term)|despoiled (similar term)|pillaged (similar term)|raped (similar term)|ravaged (similar term)|sacked (similar term)|done for (similar term)|kaput (similar term)|gone (similar term)|extinguished (similar term)|fallen (similar term)|finished (similar term)|ruined (similar term)|scorched (similar term)|shattered (similar term)|tattered (similar term)|totaled (similar term)|war-torn (similar term)|war-worn (similar term)|wrecked (similar term)|damaged (related term)|preserved (antonym)
+(adj)|ruined|lost (similar term)
+destroyer|2
+(noun)|guided missile destroyer|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+(noun)|ruiner|undoer|waster|uprooter|bad person (generic term)
+destroyer escort|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+destroying angel|2
+(noun)|Amanita verna|agaric (generic term)
+(noun)|death cap|death cup|death angel|Amanita phalloides|agaric (generic term)
+destruct|2
+(verb)|destroy (generic term)|destruct (generic term)
+(verb)|destroy|unmake (generic term)|undo (generic term)
+destructibility|1
+(noun)|vulnerability (generic term)|indestructibility (antonym)
+destructible|1
+(adj)|abolishable (similar term)|destroyable (similar term)|indestructible (antonym)
+destruction|3
+(noun)|devastation|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|demolition|wipeout|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|end|death|state (generic term)
+destruction fire|1
+(noun)|fire (generic term)|firing (generic term)
+destructive|1
+(adj)|annihilative (similar term)|annihilating (similar term)|devastating (similar term)|withering (similar term)|blasting (similar term)|ruinous (similar term)|cataclysmal (similar term)|cataclysmic (similar term)|caustic (similar term)|corrosive (similar term)|erosive (similar term)|vitriolic (similar term)|mordant (similar term)|crushing (similar term)|devastating (similar term)|damaging (similar term)|negative (similar term)|erosive (similar term)|iconoclastic (similar term)|ravaging (similar term)|soul-destroying (similar term)|wasteful (similar term)|harmful (related term)|negative (related term)|constructive (antonym)
+destructive-metabolic|1
+(adj)|energy-releasing|catabolic (similar term)|katabolic (similar term)
+destructive distillation|1
+(noun)|fractionation (generic term)|fractional process (generic term)
+destructive metabolism|1
+(noun)|catabolism|katabolism|dissimilation|organic process (generic term)|biological process (generic term)|anabolism (antonym)
+destructiveness|1
+(noun)|quality (generic term)|constructiveness (antonym)
+desuetude|1
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+desulfurize|1
+(verb)|desulphurize|get rid of (generic term)|remove (generic term)
+desulphurize|1
+(verb)|desulfurize|get rid of (generic term)|remove (generic term)
+desultory|1
+(adj)|purposeless (similar term)
+desynchronisation|1
+(noun)|asynchronism|asynchrony|desynchronization|desynchronizing|temporal relation (generic term)|synchronizing (antonym)|synchronization (antonym)|synchronism (antonym)
+desynchronise|1
+(verb)|desynchronize|change by reversal (generic term)|turn (generic term)|reverse (generic term)|synchronise (antonym)|synchronize (antonym)
+desynchronization|1
+(noun)|asynchronism|asynchrony|desynchronisation|desynchronizing|temporal relation (generic term)|synchronizing (antonym)|synchronization (antonym)|synchronism (antonym)
+desynchronize|1
+(verb)|desynchronise|change by reversal (generic term)|turn (generic term)|reverse (generic term)|synchronise (antonym)|synchronize (antonym)
+desynchronizing|1
+(noun)|asynchronism|asynchrony|desynchronization|desynchronisation|temporal relation (generic term)|synchronizing (antonym)|synchronization (antonym)|synchronism (antonym)
+desyrel|1
+(noun)|trazodone|trazodone hydrochloride|Desyrel|nontricyclic (generic term)|nontricyclic drug (generic term)|nontricyclic antidepressant (generic term)|nontricyclic antidepressant drug (generic term)
+detach|3
+(verb)|disconnect (generic term)|attach (antonym)
+(verb)|separate (generic term)|divide (generic term)
+(verb)|come off|come away|separate (generic term)|divide (generic term)|part (generic term)|attach (antonym)
+detachable|1
+(adj)|clastic (similar term)|attachable (antonym)
+detached|5
+(adj)|degage|uninvolved|unconcerned (similar term)
+(adj)|isolated|separated|set-apart|separate (similar term)
+(adj)|separated|unconnected (similar term)
+(adj)|freestanding (similar term)|separate (similar term)|semidetached (similar term)|attached (antonym)
+(adj)|free|unfixed (similar term)
+detached house|1
+(noun)|single dwelling|house (generic term)
+detached retina|1
+(noun)|retinal detachment|detachment of the retina|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+detachment|5
+(noun)|withdrawal|indifference (generic term)
+(noun)|disengagement|separation (generic term)
+(noun)|insulation|insularity|insularism|isolation (generic term)
+(noun)|army unit (generic term)
+(noun)|separation|breakup|change (generic term)|alteration (generic term)|modification (generic term)
+detachment of the retina|1
+(noun)|retinal detachment|detached retina|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+detail|7
+(noun)|item|point|fact (generic term)
+(noun)|particular|item|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+(noun)|contingent|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(verb)|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+(verb)|assign (generic term)|specify (generic term)|set apart (generic term)
+detail file|1
+(noun)|transaction file|computer file (generic term)
+detailed|1
+(adj)|elaborate|elaborated|careful (similar term)
+detailing|1
+(noun)|particularization|particularisation|description (generic term)
+details|1
+(noun)|inside information|information (generic term)|info (generic term)
+detain|3
+(verb)|confine|free (antonym)
+(verb)|stay|delay|check (generic term)|retard (generic term)|delay (generic term)
+(verb)|delay|hold up|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)|rush (antonym)
+detainee|1
+(noun)|political detainee|prisoner (generic term)|captive (generic term)
+detainment|1
+(noun)|detention|hold|custody|confinement (generic term)
+detect|1
+(verb)|observe|find|discover|notice|sight (generic term)
+detectable|2
+(adj)|noticeable|perceptible (similar term)
+(adj)|perceptible|noticeable (similar term)
+detected|2
+(adj)|perceived (similar term)|sensed (similar term)|perceived (similar term)|heard (similar term)|undetected (antonym)
+(adj)|noticed (similar term)
+detecting|1
+(noun)|detection|detective work|sleuthing|police work (generic term)|police investigation (generic term)
+detection|4
+(noun)|sensing|perception (generic term)
+(noun)|catching|espial|spying|spotting|discovery (generic term)|find (generic term)|uncovering (generic term)
+(noun)|signal detection|reception (generic term)
+(noun)|detecting|detective work|sleuthing|police work (generic term)|police investigation (generic term)
+detective|2
+(noun)|investigator|tec|police detective|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|investigator (generic term)
+detective agency|1
+(noun)|agency (generic term)
+detective novel|1
+(noun)|mystery novel|novel (generic term)
+detective story|1
+(noun)|mystery (generic term)|mystery story (generic term)|whodunit (generic term)
+detective work|1
+(noun)|detection|detecting|sleuthing|police work (generic term)|police investigation (generic term)
+detector|3
+(noun)|sensor|sensing element|device (generic term)
+(noun)|demodulator|rectifier (generic term)
+(noun)|electronic equipment (generic term)
+detent|1
+(noun)|pawl|click|dog|catch (generic term)|stop (generic term)
+detente|1
+(noun)|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+detention|2
+(noun)|detainment|hold|custody|confinement (generic term)
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+detention camp|1
+(noun)|detention home|detention house|house of detention|correctional institution (generic term)
+detention cell|1
+(noun)|bullpen|detention centre|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+detention centre|1
+(noun)|bullpen|detention cell|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+detention home|1
+(noun)|detention house|house of detention|detention camp|correctional institution (generic term)
+detention house|1
+(noun)|detention home|house of detention|detention camp|correctional institution (generic term)
+deter|2
+(verb)|discourage|disapprove (generic term)|reject (generic term)
+(verb)|dissuade|rede (generic term)|advise (generic term)|counsel (generic term)|persuade (antonym)
+deterge|1
+(verb)|wipe off (generic term)|wipe away (generic term)
+detergence|1
+(noun)|detergency|utility (generic term)|usefulness (generic term)
+detergency|1
+(noun)|detergence|utility (generic term)|usefulness (generic term)
+detergent|3
+(adj)|detersive|purifying (similar term)
+(noun)|wetting agent (generic term)|wetter (generic term)|surfactant (generic term)|surface-active agent (generic term)
+(noun)|cleansing agent (generic term)|cleanser (generic term)|cleaner (generic term)
+detergent builder|1
+(noun)|builder|material (generic term)|stuff (generic term)
+deteriorate|2
+(verb)|decay (generic term)|crumble (generic term)|delapidate (generic term)
+(verb)|devolve|drop|degenerate|worsen (generic term)|decline (generic term)|recuperate (antonym)
+deterioration|2
+(noun)|impairment|decay (generic term)
+(noun)|decline in quality|declension|worsening|decline (generic term)|diminution (generic term)
+determent|1
+(noun)|deterrence|intimidation|discouragement (generic term)
+determinable|1
+(adj)|ascertainable (similar term)|discoverable (similar term)|definable (similar term)|judicable (similar term)|calculable (related term)|indeterminable (antonym)
+determinant|4
+(adj)|crucial|deciding|determinative|determining|decisive (similar term)
+(noun)|determiner|determinative|determining factor|causal factor|cognitive factor (generic term)
+(noun)|antigenic determinant|epitope|site (generic term)|situation (generic term)
+(noun)|square matrix (generic term)
+determinate|3
+(adj)|fixed (similar term)|indeterminate (antonym)
+(adj)|cymose (similar term)|indeterminate (antonym)
+(adj)|definitive|conclusive (similar term)
+determinateness|1
+(noun)|definiteness|predictability (generic term)
+determination|4
+(noun)|finding|discovery (generic term)|find (generic term)|uncovering (generic term)
+(noun)|purpose|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(noun)|decision|conclusion|judgment (generic term)|judgement (generic term)|mind (generic term)
+(noun)|decision|conclusion|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+determinative|3
+(adj)|crucial|deciding|determinant|determining|decisive (similar term)
+(noun)|determiner|function word (generic term)|closed-class word (generic term)
+(noun)|determinant|determiner|determining factor|causal factor|cognitive factor (generic term)
+determine|8
+(verb)|find|find out|ascertain
+(verb)|shape|mold|influence|regulate|cause (generic term)|do (generic term)|make (generic term)
+(verb)|set
+(verb)|specify|set|fix|limit|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|decide|make up one's mind
+(verb)|specify (generic term)|define (generic term)|delineate (generic term)|delimit (generic term)|delimitate (generic term)
+(verb)|settle|square off|square up|conclude (generic term)|resolve (generic term)
+(verb)|check|find out|see|ascertain|watch|learn
+determined|5
+(adj)|resolute (similar term)
+(adj)|ascertained (similar term)|discovered (similar term)|observed (similar term)|undetermined (antonym)
+(adj)|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|dictated|set|settled (similar term)
+(adj)|compulsive|driven|ambitious (similar term)
+determinedly|2
+(adv)|unfalteringly|unshakably|with determination
+(adv)|ambitiously|with ambition|unambitiously (antonym)
+determiner|3
+(noun)|clincher|determining factor|argument (generic term)|statement (generic term)
+(noun)|determinative|function word (generic term)|closed-class word (generic term)
+(noun)|determinant|determinative|determining factor|causal factor|cognitive factor (generic term)
+determining|1
+(adj)|crucial|deciding|determinant|determinative|decisive (similar term)
+determining factor|2
+(noun)|determinant|determiner|determinative|causal factor|cognitive factor (generic term)
+(noun)|clincher|determiner|argument (generic term)|statement (generic term)
+determinism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+determinist|1
+(noun)|fatalist|predestinarian|predestinationist|necessitarian (generic term)
+deterministic|1
+(adj)|settled (similar term)
+deterrence|3
+(noun)|disincentive|rational motive (generic term)|incentive (antonym)
+(noun)|determent|intimidation|discouragement (generic term)
+(noun)|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+deterrent|2
+(adj)|preventive (similar term)|preventative (similar term)
+(noun)|hindrance|hinderance|impediment|balk|baulk|check|handicap|difficulty (generic term)
+deterrent example|1
+(noun)|example|lesson|object lesson|admonition (generic term)|monition (generic term)|warning (generic term)|word of advice (generic term)
+detersive|1
+(adj)|detergent|purifying (similar term)
+detest|1
+(verb)|hate|dislike (generic term)|love (antonym)
+detestable|2
+(adj)|abhorrent|obscene|repugnant|repulsive|offensive (similar term)
+(adj)|abominable|execrable|odious|hateful (similar term)
+detestably|1
+(adv)|repulsively|abominably|odiously
+detestation|1
+(noun)|abhorrence|abomination|execration|loathing|odium|hate (generic term)|hatred (generic term)|disgust (generic term)
+detested|1
+(adj)|despised|hated|scorned|unloved (similar term)
+dethaw|1
+(verb)|dissolve|thaw|unfreeze|unthaw|melt|liquefy (generic term)|flux (generic term)|liquify (generic term)
+dethrone|1
+(verb)|divest (generic term)|disinvest (generic term)|enthrone (antonym)
+dethronement|1
+(noun)|deposition|ouster (generic term)|ousting (generic term)
+detick|1
+(verb)|get rid of (generic term)|remove (generic term)
+detonate|2
+(verb)|explode|blow up|set off|change integrity (generic term)
+(verb)|explode|blow up
+detonating device|1
+(noun)|detonator|cap|explosive device (generic term)
+detonating fuse|1
+(noun)|fuse (generic term)|fuze (generic term)|fusee (generic term)|fuzee (generic term)|primer (generic term)|priming (generic term)
+detonation|2
+(noun)|explosion|blowup|discharge (generic term)
+(noun)|explosion (generic term)|burst (generic term)
+detonative|1
+(adj)|explosive (similar term)
+detonator|1
+(noun)|detonating device|cap|explosive device (generic term)
+detour|2
+(noun)|roundabout way|road (generic term)|route (generic term)
+(verb)|deviate (generic term)|divert (generic term)
+detox|2
+(noun)|ward (generic term)|hospital ward (generic term)
+(verb)|detoxify|treat (generic term)|care for (generic term)
+detoxicate|1
+(verb)|detoxify|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+detoxification|2
+(noun)|treatment (generic term)
+(noun)|medical care (generic term)|medical aid (generic term)
+detoxify|2
+(verb)|detoxicate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|detox|treat (generic term)|care for (generic term)
+detract|1
+(verb)|take away|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+detraction|2
+(noun)|petty criticism|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|disparagement (generic term)|dispraise (generic term)
+detractive|1
+(adj)|decreasing (similar term)
+detractor|1
+(noun)|disparager|depreciator|knocker|cynic (generic term)|faultfinder (generic term)
+detrain|1
+(verb)|get off (generic term)
+detransitivise|1
+(verb)|detransitivize|intransitivize|intransitivise|change (generic term)|alter (generic term)|modify (generic term)|transitivize (antonym)
+detransitivize|1
+(verb)|detransitivise|intransitivize|intransitivise|change (generic term)|alter (generic term)|modify (generic term)|transitivize (antonym)
+detribalisation|2
+(noun)|detribalization|social control (generic term)
+(noun)|detribalization|disunion (generic term)|tribalisation (antonym)|tribalization (antonym)
+detribalise|1
+(verb)|detribalize|acculturate (generic term)
+detribalization|2
+(noun)|detribalisation|social control (generic term)
+(noun)|detribalisation|disunion (generic term)|tribalisation (antonym)|tribalization (antonym)
+detribalize|1
+(verb)|detribalise|acculturate (generic term)
+detriment|1
+(noun)|hurt|damage (generic term)|harm (generic term)|impairment (generic term)
+detrimental|1
+(adj)|damaging|prejudicial|prejudicious|harmful (similar term)
+detrimentally|1
+(adv)|harmfully|noxiously|harmlessly (antonym)
+detrition|3
+(noun)|abrasion|attrition|corrasion|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+(noun)|grinding|abrasion|attrition|friction (generic term)|rubbing (generic term)
+(noun)|friction|rubbing|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+detritus|2
+(noun)|debris|dust|junk|rubble|rubbish (generic term)|trash (generic term)|scrap (generic term)
+(noun)|material (generic term)|stuff (generic term)
+detroit|1
+(noun)|Detroit|Motor City|Motown|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+detroit river|1
+(noun)|Detroit River|river (generic term)
+detumescence|1
+(noun)|decline (generic term)|diminution (generic term)
+detusk|1
+(verb)|tusk|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+deuce|4
+(noun)|tie (generic term)
+(noun)|two|2|II|digit (generic term)|figure (generic term)
+(noun)|devil|dickens|exclamation (generic term)|exclaiming (generic term)
+(noun)|playing card (generic term)
+deuce-ace|1
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|digit (generic term)|figure (generic term)
+deuced|1
+(adj)|blasted|blame|blamed|blessed|damn|damned|darned|goddam|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+deucedly|1
+(adv)|madly|insanely|deadly|devilishly
+deus ex machina|1
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+deuteranopia|1
+(noun)|Daltonism|green-blindness|red-green dichromacy (generic term)|red-green color blindness (generic term)|red-green colour blindness (generic term)
+deuteranopic|1
+(adj)|green-blind|blind (similar term)|unsighted (similar term)
+deuterium|1
+(noun)|heavy hydrogen|hydrogen atom (generic term)|isotope (generic term)
+deuterium oxide|1
+(noun)|heavy water|moderator (generic term)
+deuteromycetes|1
+(noun)|Deuteromycetes|class Deuteromycetes|class (generic term)
+deuteromycota|1
+(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division (generic term)
+deuteromycotina|1
+(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division (generic term)
+deuteron|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+deuteronomy|1
+(noun)|Deuteronomy|Book of Deuteronomy|book (generic term)
+deutsche mark|1
+(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit (generic term)
+deutschland|1
+(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country (generic term)|European nation (generic term)
+deutschmark|1
+(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit (generic term)
+deutzia|1
+(noun)|hydrangea (generic term)
+devaluate|2
+(verb)|devalue|degrade (generic term)|cheapen (generic term)
+(verb)|depreciate|undervalue|devalue|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|appreciate (antonym)
+devaluation|2
+(noun)|regulation (generic term)|regulating (generic term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+devalue|3
+(verb)|devaluate|degrade (generic term)|cheapen (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|depreciate|undervalue|devaluate|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|appreciate (antonym)
+devalued|1
+(adj)|debased|degraded|low (similar term)
+devanagari|1
+(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary (generic term)|syllabic script (generic term)|script (generic term)
+devanagari script|1
+(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary (generic term)|syllabic script (generic term)|script (generic term)
+devastate|2
+(verb)|lay waste to|waste|desolate|ravage|scourge|destroy (generic term)|ruin (generic term)
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+devastating|3
+(adj)|annihilating|withering|disrespectful (similar term)
+(adj)|annihilative|annihilating|withering|destructive (similar term)
+(adj)|crushing|destructive (similar term)
+devastation|5
+(noun)|desolation|deterioration (generic term)|impairment (generic term)
+(noun)|feeling (generic term)
+(noun)|desolation|ruin (generic term)|ruination (generic term)
+(noun)|ravaging|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(noun)|destruction|termination (generic term)|ending (generic term)|conclusion (generic term)
+devein|1
+(verb)|get rid of (generic term)|remove (generic term)
+develop|20
+(verb)|create (generic term)
+(verb)|evolve|germinate|create by mental act (generic term)|create mentally (generic term)
+(verb)|acquire|evolve|change (generic term)
+(verb)|grow|produce|get|acquire|change (generic term)
+(verb)|originate|arise|rise|uprise|spring up|grow|become (generic term)
+(verb)|build up|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|explicate|formulate|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+(verb)|train|prepare|educate|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|grow (generic term)
+(verb)|modernize|modernise|change (generic term)
+(verb)|make grow|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|generate (generic term)|bring forth (generic term)
+(verb)|grow|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|superimpose (generic term)|superpose (generic term)|lay over (generic term)
+(verb)|play (generic term)
+(verb)|complicate (generic term)|refine (generic term)|rarify (generic term)|elaborate (generic term)
+(verb)|break|recrudesce|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|break out (related term)|break through (related term)
+(verb)|expand (generic term)
+developed|3
+(adj)|formed (similar term)|formulated (similar term)|mature (similar term)|matured (similar term)|undeveloped (antonym)
+(adj)|highly-developed|industrial (similar term)
+(adj)|improved (similar term)
+developer|2
+(noun)|creator (generic term)
+(noun)|photographic equipment (generic term)
+developing|2
+(adj)|underdeveloped|nonindustrial (similar term)
+(noun)|development|processing (generic term)
+developing country|1
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+development|9
+(noun)|improvement (generic term)
+(noun)|evolution|process (generic term)|physical process (generic term)|devolution (antonym)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|exploitation|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|improvement (generic term)|melioration (generic term)
+(noun)|growth|growing|maturation|ontogeny|ontogenesis|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+(noun)|developing|processing (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+developmental|1
+(adj)|organic process|biological process (related term)
+developmental age|1
+(noun)|age (generic term)
+developmental anatomy|1
+(noun)|anatomy (generic term)|general anatomy (generic term)
+developmental learning|1
+(noun)|learning (generic term)|acquisition (generic term)
+developmental psychology|1
+(noun)|genetic psychology|child psychology|psychology (generic term)|psychological science (generic term)
+deverbal noun|1
+(noun)|verbal noun|common noun (generic term)
+devi|1
+(noun)|Devi|Hindu deity (generic term)
+deviance|2
+(noun)|aberrance|aberrancy|aberration|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|deviation|abnormality (generic term)|irregularity (generic term)
+deviant|2
+(adj)|aberrant|deviate|abnormal (similar term)
+(noun)|pervert|deviate|degenerate|reprobate (generic term)|miscreant (generic term)
+deviate|5
+(adj)|aberrant|deviant|abnormal (similar term)
+(noun)|pervert|deviant|degenerate|reprobate (generic term)|miscreant (generic term)
+(verb)|vary|diverge|depart|differ (generic term)|conform (antonym)
+(verb)|divert|turn (generic term)
+(verb)|divert (generic term)
+deviated nasal septum|1
+(noun)|deviated septum (generic term)
+deviated septum|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+deviation|5
+(noun)|divergence|departure|difference|variation (generic term)|fluctuation (generic term)
+(noun)|statistic (generic term)
+(noun)|erroneousness (generic term)|error (generic term)
+(noun)|deviance|abnormality (generic term)|irregularity (generic term)
+(noun)|diversion|digression|deflection|deflexion|divagation|turn (generic term)|turning (generic term)
+deviationism|1
+(noun)|desertion (generic term)|abandonment (generic term)|defection (generic term)
+deviationist|1
+(noun)|deserter (generic term)|defector (generic term)
+device|5
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|gimmick|twist|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|emblem (generic term)
+device characteristic|1
+(noun)|characteristic|property (generic term)
+device driver|1
+(noun)|driver|utility program (generic term)|utility (generic term)|service program (generic term)
+devices|1
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+devil|7
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+(noun)|fiend|demon|daemon|daimon|evil spirit (generic term)
+(noun)|deuce|dickens|exclamation (generic term)|exclaiming (generic term)
+(noun)|hellion|heller|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+(noun)|monster|fiend|demon|ogre|unpleasant person (generic term)|disagreeable person (generic term)
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|displease (generic term)
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+devil's advocate|1
+(noun)|debater (generic term)|arguer (generic term)
+devil's apples|1
+(noun)|mandrake|Mandragora officinarum|herb (generic term)|herbaceous plant (generic term)
+devil's cigar|1
+(noun)|Sarcosomataceae (generic term)
+devil's claw|1
+(noun)|common unicorn plant|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+devil's darning needle|2
+(noun)|virgin's bower|old man's beard|Clematis virginiana|clematis (generic term)
+(noun)|dragonfly|darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate (generic term)
+devil's fig|1
+(noun)|prickly poppy|argemone|white thistle|herb (generic term)|herbaceous plant (generic term)
+devil's flax|1
+(noun)|toadflax|butter-and-eggs|wild snapdragon|Linaria vulgaris|flower (generic term)
+devil's food|1
+(noun)|devil's food cake|chocolate cake (generic term)
+devil's food cake|1
+(noun)|devil's food|chocolate cake (generic term)
+devil's milk|2
+(noun)|petty spurge|Euphorbia peplus|spurge (generic term)
+(noun)|sun spurge|wartweed|wartwort|Euphorbia helioscopia|spurge (generic term)
+devil's tongue|1
+(noun)|snake palm|umbrella arum|Amorphophallus rivieri|arum (generic term)|aroid (generic term)
+devil's turnip|1
+(noun)|white bryony|Bryonia alba|bryony (generic term)|briony (generic term)
+devil's urn|1
+(noun)|Sarcosomataceae (generic term)
+devil's walking stick|1
+(noun)|American angelica tree|Hercules'-club|Aralia spinosa|shrub (generic term)|bush (generic term)
+devil's weed|1
+(noun)|caltrop|Tribulus terestris|subshrub (generic term)|suffrutex (generic term)
+devil-may-care|2
+(adj)|carefree|freewheeling|happy-go-lucky|harum-scarum|slaphappy|irresponsible (similar term)
+(adj)|raffish|rakish|unconventional (similar term)
+devil-worship|1
+(noun)|diabolatry|demonolatry|worship (generic term)
+devil dog|1
+(noun)|Marine|leatherneck|shipboard soldier|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+devil grass|1
+(noun)|Bermuda grass|Bahama grass|kweek|doob|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+devil lily|1
+(noun)|tiger lily|kentan|Lilium lancifolium|lily (generic term)
+devil nettle|1
+(noun)|spurge nettle|tread-softly|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+devil ray|1
+(noun)|Mobula hypostoma|manta (generic term)|manta ray (generic term)|devilfish (generic term)
+devil tree|1
+(noun)|dita|dita bark|Alstonia scholaris|tree (generic term)
+devil worshiper|1
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+deviled egg|1
+(noun)|stuffed egg|dish (generic term)
+devilfish|3
+(noun)|grey whale|gray whale|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale (generic term)|whalebone whale (generic term)
+(noun)|octopus|octopod (generic term)
+(noun)|manta|manta ray|ray (generic term)
+devilise|1
+(verb)|devilize|diabolize|diabolise|change (generic term)|alter (generic term)|modify (generic term)
+devilish|3
+(adj)|diabolic|diabolical|mephistophelian|mephistophelean|evil (similar term)
+(adj)|rascally|roguish|playful (similar term)
+(adv)|devilishly
+devilishly|3
+(adv)|diabolically|fiendishly
+(adv)|devilish
+(adv)|madly|insanely|deadly|deucedly
+devilize|1
+(verb)|devilise|diabolize|diabolise|change (generic term)|alter (generic term)|modify (generic term)
+devilment|1
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+devilry|2
+(noun)|deviltry|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+deviltry|2
+(noun)|devilry|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+(noun)|mischief|mischief-making|mischievousness|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+devilwood|1
+(noun)|American olive|Osmanthus americanus|tree (generic term)
+devious|3
+(adj)|oblique|indirect (similar term)
+(adj)|shifty|untrustworthy (similar term)|untrusty (similar term)
+(adj)|circuitous|roundabout|indirect (similar term)
+deviousness|2
+(noun)|obliqueness|indirectness (generic term)
+(noun)|crookedness|dishonesty (generic term)
+devisal|1
+(noun)|contrivance|invention (generic term)
+devise|5
+(noun)|will (generic term)|testament (generic term)
+(noun)|gift (generic term)|inheritance (generic term)|heritage (generic term)
+(verb)|invent|contrive|excogitate|formulate|forge|create by mental act (generic term)|create mentally (generic term)
+(verb)|organize|organise|prepare|get up|machinate|initiate (generic term)|pioneer (generic term)
+(verb)|bequeath (generic term)|will (generic term)|leave (generic term)
+devisee|1
+(noun)|beneficiary (generic term)|donee (generic term)
+deviser|1
+(noun)|planner|contriver|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+devising|1
+(noun)|fashioning|making|production (generic term)
+devisor|1
+(noun)|testator (generic term)|testate (generic term)
+devitalisation|1
+(noun)|devitalization|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+devitalise|1
+(verb)|devitalize|weaken (generic term)|vitalize (antonym)
+devitalization|1
+(noun)|devitalisation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+devitalize|1
+(verb)|devitalise|weaken (generic term)|vitalize (antonym)
+devitrify|2
+(verb)|crystallize (generic term)|crystalize (generic term)|crystalise (generic term)|effloresce (generic term)
+(verb)|embrittle (generic term)
+devoice|1
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)|voice (antonym)
+devoid|2
+(adj)|absent (similar term)
+(adj)|barren|destitute|innocent|empty (similar term)
+devoir|1
+(noun)|politeness (generic term)|civility (generic term)
+devolution|2
+(noun)|degeneration|process (generic term)|physical process (generic term)|evolution (antonym)
+(noun)|devolvement|delegating (generic term)|delegation (generic term)|relegating (generic term)|relegation (generic term)|deputation (generic term)
+devolve|3
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|fall|return|pass|change hands (generic term)|change owners (generic term)
+(verb)|deteriorate|drop|degenerate|worsen (generic term)|decline (generic term)|recuperate (antonym)
+devolve on|1
+(verb)|depend on|depend upon|ride|turn on|hinge on|hinge upon
+devolvement|1
+(noun)|devolution|delegating (generic term)|delegation (generic term)|relegating (generic term)|relegation (generic term)|deputation (generic term)
+devon|2
+(noun)|Devon|Devonshire|county (generic term)
+(noun)|Devon|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+devonian|1
+(noun)|Devonian|Devonian period|Age of Fishes|period (generic term)|geological period (generic term)
+devonian period|1
+(noun)|Devonian|Devonian period|Age of Fishes|period (generic term)|geological period (generic term)
+devonshire|1
+(noun)|Devon|Devonshire|county (generic term)
+devonshire cream|1
+(noun)|clotted cream|Devonshire cream|cream (generic term)
+devote|3
+(verb)|give|dedicate|consecrate|commit|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|give|pay|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|reserve (generic term)
+devoted|1
+(adj)|dedicated (similar term)
+devotedness|1
+(noun)|devotion|love (generic term)
+devotee|1
+(noun)|fan|buff|lover|follower (generic term)
+devotion|4
+(noun)|devotedness|love (generic term)
+(noun)|commitment (generic term)|allegiance (generic term)|loyalty (generic term)|dedication (generic term)
+(noun)|idolatry|veneration|cultism|worship (generic term)
+(noun)|prayer (generic term)|supplication (generic term)
+devotional|2
+(adj)|pious (similar term)
+(noun)|service (generic term)|religious service (generic term)|divine service (generic term)
+devour|4
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|enjoy (generic term)|bask (generic term)|relish (generic term)|savor (generic term)|savour (generic term)
+(verb)|down|consume|go through|eat (generic term)
+(verb)|guttle|raven|pig|eat (generic term)
+devourer|1
+(noun)|eater (generic term)|feeder (generic term)
+devouring|1
+(adj)|avid|esurient|greedy|desirous (similar term)|wishful (similar term)
+devout|2
+(adj)|god-fearing|pious|religious (similar term)
+(adj)|dear|earnest|heartfelt|sincere (similar term)
+devoutly|1
+(adv)|piously
+devoutness|1
+(noun)|religiousness|piety (generic term)|piousness (generic term)
+devries|1
+(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+dew|1
+(noun)|condensation (generic term)|condensate (generic term)
+dew point|1
+(noun)|temperature (generic term)|saturation point (generic term)
+dew worm|1
+(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+dewar|2
+(noun)|Dewar flask|Dewar|vacuum flask (generic term)|vacuum bottle (generic term)
+(noun)|Dewar|Sir James Dewar|chemist (generic term)|physicist (generic term)
+dewar flask|1
+(noun)|Dewar flask|Dewar|vacuum flask (generic term)|vacuum bottle (generic term)
+dewberry|2
+(noun)|dewberry bush|running blackberry|blackberry (generic term)|blackberry bush (generic term)
+(noun)|berry (generic term)
+dewberry bush|1
+(noun)|dewberry|running blackberry|blackberry (generic term)|blackberry bush (generic term)
+dewdrop|1
+(noun)|drop (generic term)|bead (generic term)|pearl (generic term)
+dewey|3
+(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian (generic term)|bibliothec (generic term)
+(noun)|Dewey|George Dewey|Admiral Dewey|naval officer (generic term)
+(noun)|Dewey|John Dewey|philosopher (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+dewey decimal classification|1
+(noun)|Dewey decimal classification|Dewey decimal system|decimal system of classification|classification system (generic term)
+dewey decimal system|1
+(noun)|Dewey decimal classification|Dewey decimal system|decimal system of classification|classification system (generic term)
+deweyan|1
+(adj)|Deweyan|philosopher|educator|pedagogue|pedagog (related term)
+dewitt clinton|1
+(noun)|Clinton|DeWitt Clinton|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+dewlap|1
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+dewy|1
+(adj)|bedewed|wet (similar term)
+dewy-eyed|1
+(adj)|childlike|wide-eyed|round-eyed|simple|naive (similar term)|naif (similar term)
+dexamethasone|1
+(noun)|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+dexamethasone intensol|1
+(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+dexedrine|1
+(noun)|dextroamphetamine sulphate|Dexedrine|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+dexone|1
+(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+dexter|1
+(adj)|dextral (similar term)
+dexterity|1
+(noun)|manual dexterity|sleight|adeptness (generic term)|adroitness (generic term)|deftness (generic term)|facility (generic term)|quickness (generic term)
+dexterous|1
+(adj)|deft|dextrous|adroit (similar term)
+dexterously|1
+(adv)|dextrously|deftly
+dextral|2
+(adj)|dexter (similar term)|dextrorse (similar term)|dextrorsal (similar term)|clockwise (related term)|right-handed (related term)|sinistral (antonym)
+(adj)|right-handed (similar term)
+dextrality|1
+(noun)|right-handedness|handedness (generic term)|laterality (generic term)
+dextrin|1
+(noun)|polysaccharide (generic term)|polyose (generic term)
+dextroamphetamine sulphate|1
+(noun)|Dexedrine|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)
+dextrocardia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+dextroglucose|1
+(noun)|dextrose|grape sugar|glucose (generic term)
+dextrorotary|1
+(adj)|dextrorotatory|right-handed|clockwise (similar term)
+dextrorotation|1
+(noun)|clockwise rotation|rotation (generic term)|revolution (generic term)|gyration (generic term)|levorotation (antonym)
+dextrorotatory|1
+(adj)|dextrorotary|right-handed|clockwise (similar term)
+dextrorsal|1
+(adj)|dextrorse|dextral (similar term)
+dextrorse|1
+(adj)|dextrorsal|dextral (similar term)
+dextrose|1
+(noun)|dextroglucose|grape sugar|glucose (generic term)
+dextrous|1
+(adj)|deft|dexterous|adroit (similar term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+dg|1
+(noun)|decigram|metric weight unit (generic term)|weight unit (generic term)
+dhak|1
+(noun)|dak|palas|Butea frondosa|Butea monosperma|tree (generic term)
+dhaka|1
+(noun)|Dhaka|Dacca|capital of Bangladesh|national capital (generic term)
+dhal|1
+(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|red gram|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+dharhan|1
+(noun)|Dharhan|town (generic term)
+dharma|1
+(noun)|Dharma|Hindu deity (generic term)
+dhaulagiri|1
+(noun)|Dhaulagiri|mountain peak (generic term)
+dhava|1
+(noun)|dhawa|tree (generic term)
+dhawa|1
+(noun)|dhava|tree (generic term)
+dhegiha|2
+(noun)|Dhegiha|Sioux (generic term)|Siouan (generic term)
+(noun)|Dhegiha|Siouan (generic term)|Siouan language (generic term)
+dhobi itch|1
+(noun)|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+dhodhekanisos|1
+(noun)|Dodecanese|Dhodhekanisos|Aegean island (generic term)
+dhole|1
+(noun)|Cuon alpinus|wild dog (generic term)
+dhoti|1
+(noun)|breechcloth (generic term)|breechclout (generic term)|loincloth (generic term)
+dhow|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+dhu'l-hijja|1
+(noun)|Dhu'l-Hijja|Dhu'l-Hijjah|Dhu al-Hijja|Dhu al-Hijjah|Islamic calendar month (generic term)
+dhu'l-hijjah|1
+(noun)|Dhu'l-Hijja|Dhu'l-Hijjah|Dhu al-Hijja|Dhu al-Hijjah|Islamic calendar month (generic term)
+dhu'l-qa'dah|1
+(noun)|Dhu'l-Qa'dah|Dhu al-Qadah|Islamic calendar month (generic term)
+dhu al-hijja|1
+(noun)|Dhu'l-Hijja|Dhu'l-Hijjah|Dhu al-Hijja|Dhu al-Hijjah|Islamic calendar month (generic term)
+dhu al-hijjah|1
+(noun)|Dhu'l-Hijja|Dhu'l-Hijjah|Dhu al-Hijja|Dhu al-Hijjah|Islamic calendar month (generic term)
+dhu al-qadah|1
+(noun)|Dhu'l-Qa'dah|Dhu al-Qadah|Islamic calendar month (generic term)
+di-iodotyrosine|1
+(noun)|iodotyrosine (generic term)
+dia|1
+(noun)|Defense Intelligence Agency|DIA|military intelligence (generic term)|military intelligence agency (generic term)|United States intelligence agency (generic term)
+diabatic|1
+(adj)|adiabatic (antonym)
+diabeta|1
+(noun)|glyburide|DiaBeta|Micronase|antidiabetic (generic term)|antidiabetic drug (generic term)
+diabetes|1
+(noun)|polygenic disorder (generic term)|polygenic disease (generic term)
+diabetes insipidus|1
+(noun)|diabetes (generic term)
+diabetes mellitus|1
+(noun)|DM|diabetes (generic term)
+diabetic|3
+(adj)|polygenic disorder|polygenic disease (related term)
+(adj)|ill (similar term)|sick (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+diabetic acidosis|1
+(noun)|ketoacidosis|acidosis (generic term)
+diabetic coma|1
+(noun)|Kussmaul's coma|coma (generic term)|comatoseness (generic term)
+diabetic diet|1
+(noun)|diet (generic term)
+diabolatry|1
+(noun)|demonolatry|devil-worship|worship (generic term)
+diabolic|2
+(adj)|devilish|diabolical|mephistophelian|mephistophelean|evil (similar term)
+(adj)|demonic|diabolical|fiendish|hellish|infernal|satanic|unholy|evil (similar term)
+diabolical|2
+(adj)|devilish|diabolic|mephistophelian|mephistophelean|evil (similar term)
+(adj)|demonic|diabolic|fiendish|hellish|infernal|satanic|unholy|evil (similar term)
+diabolically|1
+(adv)|devilishly|fiendishly
+diabolise|1
+(verb)|devilize|devilise|diabolize|change (generic term)|alter (generic term)|modify (generic term)
+diabolism|1
+(noun)|demonism|Satanism|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+diabolist|1
+(noun)|Satanist|disciple (generic term)|adherent (generic term)
+diabolize|1
+(verb)|devilize|devilise|diabolise|change (generic term)|alter (generic term)|modify (generic term)
+diacalpa|1
+(noun)|Diacalpa|genus Diacalpa|fern genus (generic term)
+diacetylmorphine|1
+(noun)|heroin|opiate (generic term)|hard drug (generic term)
+diachronic|1
+(adj)|historical|synchronic (antonym)
+diachronic linguistics|1
+(noun)|historical linguistics|diachrony|linguistics (generic term)
+diachrony|1
+(noun)|historical linguistics|diachronic linguistics|linguistics (generic term)
+diacritic|2
+(adj)|diacritical|discriminating (similar term)
+(noun)|diacritical mark|mark (generic term)
+diacritical|1
+(adj)|diacritic|discriminating (similar term)
+diacritical mark|1
+(noun)|diacritic|mark (generic term)
+diadem|1
+(noun)|crown|jewelled headdress (generic term)|crown jewels (generic term)
+diadophis|1
+(noun)|Diadophis|genus Diadophis|reptile genus (generic term)
+diadromous|1
+(adj)|anadromous (antonym)|catadromous (antonym)
+diaeresis|1
+(noun)|umlaut|dieresis|diacritical mark (generic term)|diacritic (generic term)
+diaghilev|1
+(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman (generic term)|promoter (generic term)|impresario (generic term)
+diaglyph|1
+(noun)|intaglio|glyptic art (generic term)|glyptography (generic term)
+diagnosable|1
+(adj)|identifiable (similar term)
+diagnose|2
+(verb)|name|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+diagnosing|1
+(noun)|diagnosis|designation (generic term)|identification (generic term)
+diagnosis|1
+(noun)|diagnosing|designation (generic term)|identification (generic term)
+diagnostic|2
+(adj)|designation|identification (related term)
+(adj)|symptomatic|characteristic (similar term)
+diagnostic assay|1
+(noun)|diagnostic test|assay (generic term)
+diagnostic procedure|1
+(noun)|diagnostic technique|procedure (generic term)|process (generic term)
+diagnostic program|1
+(noun)|utility program (generic term)|utility (generic term)|service program (generic term)
+diagnostic technique|1
+(noun)|diagnostic procedure|procedure (generic term)|process (generic term)
+diagnostic test|1
+(noun)|diagnostic assay|assay (generic term)
+diagnostician|1
+(noun)|pathologist|specialist (generic term)|medical specialist (generic term)
+diagnostics|1
+(noun)|nosology|medicine (generic term)|medical specialty (generic term)
+diagonal|7
+(adj)|oblique (similar term)
+(adj)|aslant|aslope|slanted|slanting|sloped|sloping|inclined (similar term)
+(noun)|straight line (generic term)
+(noun)|bias|straight line (generic term)
+(noun)|line (generic term)|line (generic term)
+(noun)|set (generic term)
+(noun)|solidus|slash|virgule|stroke|separatrix|punctuation (generic term)|punctuation mark (generic term)
+diagonal matrix|1
+(noun)|square matrix (generic term)
+diagonalisation|1
+(noun)|diagonalization|resolution (generic term)|resolving (generic term)
+diagonalise|1
+(verb)|diagonalize|translate (generic term)|transform (generic term)
+diagonalizable|1
+(adj)|square matrix (related term)
+diagonalization|1
+(noun)|diagonalisation|resolution (generic term)|resolving (generic term)
+diagonalize|1
+(verb)|diagonalise|translate (generic term)|transform (generic term)
+diagram|2
+(noun)|drawing (generic term)
+(verb)|plot|draw (generic term)
+diagrammatic|1
+(adj)|diagrammatical|delineated (similar term)|represented (similar term)|delineate (similar term)
+diagrammatical|1
+(adj)|diagrammatic|delineated (similar term)|represented (similar term)|delineate (similar term)
+diagrammatically|1
+(adv)|graphically
+diagramming|1
+(noun)|schematization|schematisation|representation (generic term)
+diakinesis|1
+(noun)|phase (generic term)|stage (generic term)
+dial|6
+(noun)|face (generic term)
+(noun)|control (generic term)|controller (generic term)
+(noun)|indicator (generic term)
+(noun)|telephone dial|selector (generic term)|selector switch (generic term)
+(verb)|operate (generic term)|control (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+dial phone|1
+(noun)|dial telephone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+dial telephone|1
+(noun)|dial phone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+dialect|1
+(noun)|idiom|accent|non-standard speech (generic term)
+dialect atlas|1
+(noun)|linguistic atlas|atlas (generic term)|book of maps (generic term)|map collection (generic term)
+dialect geography|1
+(noun)|linguistic geography|linguistics (generic term)
+dialectal|1
+(adj)|non-standard speech (related term)
+dialectic|3
+(adj)|dialectical|philosophy (related term)
+(noun)|philosophy (generic term)
+(noun)|contradiction (generic term)
+dialectical|1
+(adj)|dialectic|philosophy (related term)
+dialectical materialism|1
+(noun)|materialism (generic term)|physicalism (generic term)
+dialectician|1
+(noun)|logician (generic term)|logistician (generic term)
+dialectics|1
+(noun)|rationale (generic term)|principle (generic term)
+dialectology|1
+(noun)|linguistics (generic term)|philology (generic term)
+dialeurodes|1
+(noun)|Dialeurodes|genus Dialeurodes|arthropod genus (generic term)
+dialeurodes citri|1
+(noun)|citrus whitefly|Dialeurodes citri|whitefly (generic term)
+dialog|3
+(noun)|dialogue|duologue|talk (generic term)|talking (generic term)
+(noun)|dialogue|script (generic term)|book (generic term)|playscript (generic term)
+(noun)|dialogue|literary composition (generic term)|literary work (generic term)
+dialog box|1
+(noun)|panel|window (generic term)
+dialogue|4
+(noun)|dialog|duologue|talk (generic term)|talking (generic term)
+(noun)|dialog|script (generic term)|book (generic term)|playscript (generic term)
+(noun)|dialog|literary composition (generic term)|literary work (generic term)
+(noun)|negotiation|talks|discussion (generic term)|give-and-take (generic term)|word (generic term)
+dialyse|1
+(verb)|dialyze|separate (generic term)
+dialysis|1
+(noun)|chemical analysis (generic term)|qualitative analysis (generic term)
+dialysis machine|1
+(noun)|dialyzer|medical instrument (generic term)
+dialyze|1
+(verb)|dialyse|separate (generic term)
+dialyzer|1
+(noun)|dialysis machine|medical instrument (generic term)
+diam|1
+(noun)|diameter|length (generic term)
+diamagnet|1
+(noun)|material (generic term)|stuff (generic term)
+diamagnetic|1
+(adj)|magnetism|magnetic attraction|magnetic force (related term)
+diamagnetism|1
+(noun)|magnetism (generic term)|magnetic attraction (generic term)|magnetic force (generic term)
+diamante|1
+(noun)|sequin|spangle|adornment (generic term)
+diamantine|1
+(adj)|carbon|C|atomic number 6|transparent gem (related term)
+diameter|2
+(noun)|diam|length (generic term)
+(noun)|straight line (generic term)
+diametral|1
+(adj)|diametric|diametrical|straight line (related term)
+diametric|2
+(adj)|diametral|diametrical|straight line (related term)
+(adj)|diametrical|opposite|polar|different (similar term)
+diametrical|2
+(adj)|diametral|diametric|straight line (related term)
+(adj)|diametric|opposite|polar|different (similar term)
+diametrical opposition|1
+(noun)|antipodal|antipodal opposition|opposition (generic term)
+diamine|1
+(noun)|organic compound (generic term)
+diamond|5
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|adamant|carbon (generic term)|C (generic term)|atomic number 6 (generic term)|transparent gem (generic term)
+(noun)|playing card (generic term)
+(noun)|baseball diamond|infield|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|outfield (antonym)
+(noun)|ball field|baseball field|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+diamond dust|1
+(noun)|ice crystal|snow mist|poudrin|ice needle|frost snow|frost mist|crystal (generic term)
+diamond jim|1
+(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier (generic term)|moneyman (generic term)
+diamond jim brady|1
+(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier (generic term)|moneyman (generic term)
+diamond jubilee|1
+(noun)|jubilee (generic term)
+diamond point|1
+(noun)|point (generic term)
+diamond state|1
+(noun)|Delaware|Diamond State|First State|DE|American state (generic term)
+diamond wedding|1
+(noun)|diamond wedding anniversary|wedding anniversary (generic term)
+diamond wedding anniversary|1
+(noun)|diamond wedding|wedding anniversary (generic term)
+diamondback|1
+(noun)|diamondback rattlesnake|Crotalus adamanteus|rattlesnake (generic term)|rattler (generic term)
+diamondback rattlesnake|1
+(noun)|diamondback|Crotalus adamanteus|rattlesnake (generic term)|rattler (generic term)
+diamondback terrapin|1
+(noun)|Malaclemys centrata|terrapin (generic term)
+diamonte|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+diana|2
+(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat (generic term)
+(noun)|Diana|Roman deity (generic term)
+diane de poitiers|1
+(noun)|Diane de Poitiers|Duchesse de Valentinois|female aristocrat (generic term)
+diangus gratianopolitanus|1
+(noun)|cheddar pink|Diangus gratianopolitanus|pink (generic term)|garden pink (generic term)
+dianoetic|1
+(adj)|discursive|logical (similar term)
+dianthus|1
+(noun)|Dianthus|genus Dianthus|caryophylloid dicot genus (generic term)
+dianthus barbatus|1
+(noun)|sweet William|Dianthus barbatus|pink (generic term)|garden pink (generic term)
+dianthus caryophyllus|1
+(noun)|carnation|clove pink|gillyflower|Dianthus caryophyllus|pink (generic term)|garden pink (generic term)
+dianthus chinensis|1
+(noun)|china pink|rainbow pink|Dianthus chinensis|pink (generic term)|garden pink (generic term)
+dianthus chinensis heddewigii|1
+(noun)|Japanese pink|Dianthus chinensis heddewigii|china pink (generic term)|rainbow pink (generic term)|Dianthus chinensis (generic term)
+dianthus deltoides|1
+(noun)|maiden pink|Dianthus deltoides|pink (generic term)|garden pink (generic term)
+dianthus latifolius|1
+(noun)|button pink|Dianthus latifolius|pink (generic term)|garden pink (generic term)
+dianthus plumarius|1
+(noun)|cottage pink|grass pink|Dianthus plumarius|pink (generic term)|garden pink (generic term)
+dianthus supurbus|1
+(noun)|fringed pink|Dianthus supurbus|pink (generic term)|garden pink (generic term)
+diapason|1
+(noun)|diapason stop|organ stop (generic term)
+diapason stop|1
+(noun)|diapason|organ stop (generic term)
+diapedesis|1
+(noun)|organic phenomenon (generic term)
+diapensia|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+diapensia family|1
+(noun)|Diapensiaceae|family Diapensiaceae|dilleniid dicot family (generic term)
+diapensiaceae|1
+(noun)|Diapensiaceae|family Diapensiaceae|diapensia family|dilleniid dicot family (generic term)
+diapensiales|1
+(noun)|Diapensiales|order Diapensiales|plant order (generic term)
+diaper|2
+(noun)|nappy|napkin|garment (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+diaper dermatitis|1
+(noun)|diaper rash|dermatitis (generic term)
+diaper rash|1
+(noun)|diaper dermatitis|dermatitis (generic term)
+diaphanous|1
+(adj)|filmy|gauzy|gauze-like|gossamer|see-through|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+diapheromera|1
+(noun)|Diapheromera femorata|walking stick (generic term)|walkingstick (generic term)|stick insect (generic term)
+diapheromera femorata|1
+(noun)|diapheromera|Diapheromera femorata|walking stick (generic term)|walkingstick (generic term)|stick insect (generic term)
+diaphone|1
+(noun)|foghorn (generic term)
+diaphoresis|1
+(noun)|perspiration|sweating|sudation|hidrosis|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+diaphoretic|2
+(adj)|sudorific|bodily process|body process|bodily function|activity (related term)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+diaphragm|4
+(noun)|stop|mechanical device (generic term)
+(noun)|midriff|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)|membrane (generic term)|tissue layer (generic term)
+(noun)|pessary|contraceptive diaphragm|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+(noun)|disk (generic term)|disc (generic term)
+diaphragmatic hernia|1
+(noun)|hiatus hernia|hiatal hernia|hernia (generic term)|herniation (generic term)
+diaphragmatic pleurisy|1
+(noun)|epidemic pleurodynia|epidemic myalgia|myosis|Bornholm disease|epidemic disease (generic term)
+diaphyseal|1
+(adj)|diaphysial|long bone|os longum (related term)
+diaphysial|1
+(adj)|diaphyseal|long bone|os longum (related term)
+diaphysis|1
+(noun)|shaft|long bone (generic term)|os longum (generic term)
+diapir|1
+(noun)|geological formation (generic term)|formation (generic term)
+diapsid|1
+(noun)|diapsid reptile|reptile (generic term)|reptilian (generic term)|anapsid (antonym)
+diapsid reptile|1
+(noun)|diapsid|reptile (generic term)|reptilian (generic term)|anapsid (antonym)
+diapsida|1
+(noun)|Diapsida|subclass Diapsida|reptile (generic term)|reptilian (generic term)
+diarchy|1
+(noun)|dyarchy|political system (generic term)|form of government (generic term)
+diarist|1
+(noun)|diary keeper|journalist|writer (generic term)
+diarrhea|1
+(noun)|diarrhoea|looseness of the bowels|looseness|symptom (generic term)
+diarrheal|1
+(adj)|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|unconstipated (similar term)|regular (similar term)
+diarrheic|1
+(adj)|diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrhoeic|unconstipated (similar term)|regular (similar term)
+diarrhetic|1
+(adj)|diarrheal|diarrhoeal|diarrhoetic|diarrheic|diarrhoeic|unconstipated (similar term)|regular (similar term)
+diarrhoea|1
+(noun)|diarrhea|looseness of the bowels|looseness|symptom (generic term)
+diarrhoeal|1
+(adj)|diarrheal|diarrhetic|diarrhoetic|diarrheic|diarrhoeic|unconstipated (similar term)|regular (similar term)
+diarrhoeic|1
+(adj)|diarrheal|diarrhoeal|diarrhetic|diarrhoetic|diarrheic|unconstipated (similar term)|regular (similar term)
+diarrhoetic|1
+(adj)|diarrheal|diarrhoeal|diarrhetic|diarrheic|diarrhoeic|unconstipated (similar term)|regular (similar term)
+diarthrosis|1
+(noun)|synovial joint|articulatio synovialis|joint (generic term)|articulation (generic term)|articulatio (generic term)
+diary|2
+(noun)|journal|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|journal (generic term)
+diary keeper|1
+(noun)|diarist|journalist|writer (generic term)
+dias|1
+(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator (generic term)
+diaspididae|1
+(noun)|Diaspididae|family Diaspididae|arthropod family (generic term)
+diaspora|3
+(noun)|body (generic term)
+(noun)|Diaspora|dispersion (generic term)|scattering (generic term)
+(noun)|distribution (generic term)|dispersion (generic term)
+diastasis|1
+(noun)|dislocation (generic term)
+diastema|1
+(noun)|opening (generic term)|gap (generic term)
+diastole|1
+(noun)|pulse (generic term)|pulsation (generic term)|heartbeat (generic term)|beat (generic term)
+diastolic|1
+(adj)|pulse|pulsation|heartbeat|beat (related term)
+diastolic pressure|1
+(noun)|blood pressure (generic term)
+diastrophism|1
+(noun)|geological process (generic term)|geologic process (generic term)
+diathermy|1
+(noun)|modality (generic term)
+diathermy machine|1
+(noun)|medical instrument (generic term)
+diathesis|1
+(noun)|sensitivity (generic term)|predisposition (generic term)
+diatom|1
+(noun)|alga (generic term)|algae (generic term)|phytoplankton (generic term)
+diatomaceous earth|1
+(noun)|diatomite|kieselguhr|earth (generic term)|ground (generic term)|filter (generic term)
+diatomic|1
+(adj)|substance|matter (related term)
+diatomite|1
+(noun)|diatomaceous earth|kieselguhr|earth (generic term)|ground (generic term)|filter (generic term)
+diatomophyceae|1
+(noun)|Bacillariophyceae|class Bacillariophyceae|Diatomophyceae|class Diatomophyceae|class (generic term)
+diatonic|2
+(adj)|chromatic (antonym)
+(adj)|tonal (similar term)
+diatonic scale|1
+(noun)|scale (generic term)|musical scale (generic term)
+diatribe|1
+(noun)|fulmination|denunciation (generic term)|denouncement (generic term)
+diaz|1
+(noun)|Dias|Diaz|Bartholomeu Dias|Bartholomeu Diaz|navigator (generic term)
+diazepam|1
+(noun)|Valium|benzodiazepine (generic term)
+diazo|1
+(adj)|cation (related term)
+diazonium|1
+(noun)|cation (generic term)
+diazotize|1
+(verb)|convert (generic term)
+diazoxide|1
+(noun)|Hyperstat|vasodilator (generic term)|vasodilative (generic term)
+dibasic acid|1
+(noun)|acid (generic term)
+dibasic salt|1
+(noun)|salt (generic term)
+dibber|1
+(noun)|dibble|hand tool (generic term)
+dibble|3
+(noun)|dibber|hand tool (generic term)
+(verb)|plant (generic term)|set (generic term)
+(verb)|dig (generic term)|dig out (generic term)
+dibbuk|1
+(noun)|dybbuk|devil (generic term)|fiend (generic term)|demon (generic term)|daemon (generic term)|daimon (generic term)
+dibrach|1
+(noun)|pyrrhic|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+dibranch|1
+(noun)|dibranchiate|dibranchiate mollusk|cephalopod (generic term)|cephalopod mollusk (generic term)
+dibranchia|1
+(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class (generic term)
+dibranchiata|1
+(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class (generic term)
+dibranchiate|1
+(noun)|dibranchiate mollusk|dibranch|cephalopod (generic term)|cephalopod mollusk (generic term)
+dibranchiate mollusk|1
+(noun)|dibranchiate|dibranch|cephalopod (generic term)|cephalopod mollusk (generic term)
+dibucaine|1
+(noun)|intravenous anesthetic (generic term)
+dicamptodon|1
+(noun)|dicamptodontid|salamander (generic term)
+dicamptodon ensatus|1
+(noun)|Pacific giant salamander|Dicamptodon ensatus|salamander (generic term)
+dicamptodontid|1
+(noun)|dicamptodon|salamander (generic term)
+dicamptodontidae|1
+(noun)|Dicamptodontidae|family Dicamptodontidae|amphibian family (generic term)
+dicarboxylic|1
+(adj)|group|radical|chemical group (related term)
+dice|3
+(noun)|die|cube (generic term)|square block (generic term)
+(verb)|cube|cut (generic term)
+(verb)|gamble (generic term)
+dice box|1
+(noun)|dice cup|container (generic term)
+dice cup|1
+(noun)|dice box|container (generic term)
+dicentra|1
+(noun)|Dicentra|genus Dicentra|dilleniid dicot genus (generic term)
+dicentra canadensis|1
+(noun)|squirrel corn|Dicentra canadensis|herb (generic term)|herbaceous plant (generic term)
+dicentra cucullaria|1
+(noun)|Dutchman's breeches|Dicentra cucullaria|herb (generic term)|herbaceous plant (generic term)
+dicentra spectabilis|1
+(noun)|bleeding heart|lyreflower|lyre-flower|Dicentra spectabilis|herb (generic term)|herbaceous plant (generic term)
+dicer|1
+(noun)|mechanical device (generic term)
+diceros|1
+(noun)|Diceros|genus Diceros|mammal genus (generic term)
+diceros bicornis|1
+(noun)|black rhinoceros|Diceros bicornis|rhinoceros (generic term)|rhino (generic term)
+diceros simus|1
+(noun)|white rhinoceros|Ceratotherium simum|Diceros simus|rhinoceros (generic term)|rhino (generic term)
+dicey|1
+(adj)|chancy|chanceful|dodgy|dangerous (similar term)|unsafe (similar term)
+dichloride|1
+(noun)|bichloride|chloride (generic term)
+dichlorodiphenyltrichloroethane|1
+(noun)|DDT|insecticide (generic term)|insect powder (generic term)|pollutant (generic term)
+dichloroethyl sulfide|1
+(noun)|mustard gas|mustard agent|blistering agent|sulfur mustard|poison gas (generic term)|vesicant (generic term)|vesicatory (generic term)
+dichloromethane|1
+(noun)|methylene chloride|chloride (generic term)
+dichondra|1
+(noun)|Dichondra micrantha|vine (generic term)
+dichondra micrantha|1
+(noun)|dichondra|Dichondra micrantha|vine (generic term)
+dichotomisation|1
+(noun)|dichotomization|division (generic term)
+dichotomise|1
+(verb)|dichotomize|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+dichotomization|1
+(noun)|dichotomisation|division (generic term)
+dichotomize|1
+(verb)|dichotomise|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+dichotomous|1
+(adj)|divided (similar term)
+dichotomy|1
+(noun)|duality|classification (generic term)|categorization (generic term)|categorisation (generic term)
+dichroism|1
+(noun)|pleochroism (generic term)
+dichromacy|1
+(noun)|dichromatism|dichromatopsia|dichromia|dichromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+dichromasy|1
+(noun)|dichromacy|dichromatism|dichromatopsia|dichromia|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+dichromat|1
+(noun)|color-blind person (generic term)
+dichromate|1
+(noun)|bichromate|salt (generic term)
+dichromatic|2
+(adj)|color blindness|colour blindness|color vision deficiency|colour vision deficiency (related term)
+(adj)|bicolor|bicolour|bicolored|bicoloured|bichrome|colored (similar term)|coloured (similar term)|colorful (similar term)
+dichromatism|1
+(noun)|dichromacy|dichromatopsia|dichromia|dichromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+dichromatopsia|1
+(noun)|dichromacy|dichromatism|dichromia|dichromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+dichromia|1
+(noun)|dichromacy|dichromatism|dichromatopsia|dichromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+dichromic acid|1
+(noun)|acid (generic term)
+dick|2
+(noun)|gumshoe|hawkshaw|detective (generic term)|investigator (generic term)|tec (generic term)|police detective (generic term)
+(noun)|cock|prick|shaft|pecker|peter|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+dick fosbury|1
+(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete (generic term)|jock (generic term)
+dick test|1
+(noun)|Dick test|skin test (generic term)
+dick turpin|1
+(noun)|Turpin|Dick Turpin|highjacker (generic term)|highwayman (generic term)|hijacker (generic term)|road agent (generic term)
+dickens|2
+(noun)|devil|deuce|exclamation (generic term)|exclaiming (generic term)
+(noun)|Dickens|Charles Dickens|Charles John Huffam Dickens|writer (generic term)|author (generic term)
+dickensian|1
+(adj)|Dickensian|writer|author (related term)
+dicker|1
+(verb)|bargain|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+dickey|3
+(adj)|dicky|impaired (similar term)
+(noun)|dickie|dicky|dickey-seat|dickie-seat|dicky-seat|backseat (generic term)
+(noun)|dickie|dicky|shirtfront|insert (generic term)|inset (generic term)
+dickey-bird|1
+(noun)|dickeybird|dickybird|dicky-bird|bird (generic term)
+dickey-seat|1
+(noun)|dickey|dickie|dicky|dickie-seat|dicky-seat|backseat (generic term)
+dickeybird|1
+(noun)|dickey-bird|dickybird|dicky-bird|bird (generic term)
+dickhead|1
+(noun)|asshole|bastard|cocksucker|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+dickie|2
+(noun)|dickey|dicky|dickey-seat|dickie-seat|dicky-seat|backseat (generic term)
+(noun)|dickey|dicky|shirtfront|insert (generic term)|inset (generic term)
+dickie-seat|1
+(noun)|dickey|dickie|dicky|dickey-seat|dicky-seat|backseat (generic term)
+dickinson|1
+(noun)|Dickinson|Emily Dickinson|poet (generic term)
+dicksonia|1
+(noun)|Dicksonia|genus Dicksonia|fern genus (generic term)
+dicksonia antarctica|1
+(noun)|soft tree fern|Dicksonia antarctica|tree fern (generic term)
+dicksoniaceae|1
+(noun)|Dicksoniaceae|family Dicksoniaceae|fern family (generic term)
+dicky|3
+(adj)|dickey|impaired (similar term)
+(noun)|dickey|dickie|dickey-seat|dickie-seat|dicky-seat|backseat (generic term)
+(noun)|dickey|dickie|shirtfront|insert (generic term)|inset (generic term)
+dicky-bird|1
+(noun)|dickeybird|dickey-bird|dickybird|bird (generic term)
+dicky-seat|1
+(noun)|dickey|dickie|dicky|dickey-seat|dickie-seat|backseat (generic term)
+dickybird|1
+(noun)|dickeybird|dickey-bird|dicky-bird|bird (generic term)
+diclinous|1
+(adj)|monoclinous (antonym)
+diclofenac potassium|1
+(noun)|Cataflam|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+diclofenac sodium|1
+(noun)|Voltaren|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+dicloxacillin|1
+(noun)|Dynapen|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+dicot|1
+(noun)|dicotyledon|magnoliopsid|exogen|angiosperm (generic term)|flowering plant (generic term)
+dicot family|1
+(noun)|magnoliopsid family|family (generic term)
+dicot genus|1
+(noun)|magnoliopsid genus|genus (generic term)
+dicotyledon|1
+(noun)|dicot|magnoliopsid|exogen|angiosperm (generic term)|flowering plant (generic term)
+dicotyledonae|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+dicotyledones|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+dicotyledonous|1
+(adj)|monocotyledonous (antonym)
+dicoumarol|1
+(noun)|dicumarol|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+dicranaceae|1
+(noun)|Dicranaceae|family Dicranaceae|moss family (generic term)
+dicranales|1
+(noun)|Dicranales|order Dicranales|plant order (generic term)
+dicranopteris|1
+(noun)|Dicranopteris|genus Dicranopteris|fern genus (generic term)
+dicranum|1
+(noun)|Dicranum|genus Dicranum|moss genus (generic term)
+dicrostonyx|1
+(noun)|Dicrostonyx|genus Dicrostonyx|mammal genus (generic term)
+dicrostonyx hudsonius|1
+(noun)|Hudson bay collared lemming|Dicrostonyx hudsonius|pied lemming (generic term)
+dictamnus|1
+(noun)|Dictamnus|genus Dictamnus|rosid dicot genus (generic term)
+dictamnus alba|1
+(noun)|fraxinella|dittany|burning bush|gas plant|Dictamnus alba|herb (generic term)|herbaceous plant (generic term)
+dictaphone|1
+(noun)|Dictaphone|tape recorder (generic term)|tape machine (generic term)
+dictate|5
+(noun)|rule (generic term)|prescript (generic term)
+(noun)|principle (generic term)
+(verb)|order|prescribe|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+(verb)|read (generic term)
+(verb)|govern (generic term)|rule (generic term)
+dictated|1
+(adj)|determined|set|settled (similar term)
+dictation|3
+(noun)|command|bid|bidding|speech act (generic term)
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|matter (generic term)
+dictator|3
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|potentate|ruler (generic term)|swayer (generic term)
+(noun)|authoritarian|oppressor (generic term)
+dictatorial|4
+(adj)|ruler|swayer (related term)
+(adj)|authoritarian|unpermissive (similar term)
+(adj)|authoritarian|overbearing|domineering (similar term)
+(adj)|authoritarian|autocratic|despotic|tyrannical|undemocratic (similar term)
+dictatorially|1
+(adv)|autocratically|magisterially
+dictatorship|1
+(noun)|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+diction|2
+(noun)|enunciation|articulation (generic term)
+(noun)|wording|phrasing|phraseology|choice of words|verbiage|formulation (generic term)|expression (generic term)
+dictionary|1
+(noun)|lexicon|wordbook (generic term)
+dictionary definition|1
+(noun)|definition (generic term)
+dictionary entry|1
+(noun)|lexical entry|entry (generic term)
+dictostylium|1
+(noun)|cellular slime mold (generic term)
+dictum|2
+(noun)|pronouncement|say-so|declaration (generic term)
+(noun)|obiter dictum|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+dictyophera|1
+(noun)|Dictyophera|genus Dictyophera|fungus genus (generic term)
+dictyoptera|1
+(noun)|Dictyoptera|order Dictyoptera|animal order (generic term)
+dictyopteran|1
+(adj)|animal order (related term)
+dictyopterous insect|1
+(noun)|insect (generic term)
+dictyosome|1
+(noun)|Golgi body|Golgi apparatus|Golgi complex|vesicle (generic term)|cyst (generic term)
+dicumarol|1
+(noun)|dicoumarol|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+dicynodont|1
+(noun)|therapsid (generic term)|protomammal (generic term)
+dicynodontia|1
+(noun)|Dicynodontia|division Dicynodontia|division (generic term)
+didactic|1
+(adj)|didactical|instructive (similar term)|informative (similar term)
+didactical|1
+(adj)|didactic|instructive (similar term)|informative (similar term)
+didactically|1
+(adv)|pedagogically
+didacticism|1
+(noun)|communication (generic term)
+didactics|1
+(noun)|education|instruction|teaching|pedagogy|educational activity|activity (generic term)
+didder|1
+(verb)|shake|move involuntarily (generic term)|move reflexively (generic term)
+diddle|2
+(verb)|victimize|swindle|rook|goldbrick|nobble|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|toy|fiddle|play|manipulate (generic term)|toy with (related term)
+diddley|1
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+diddly|1
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+diddly-shit|1
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+diddly-squat|1
+(noun)|jack|doodly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+diddlyshit|1
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+diddlysquat|1
+(noun)|jack|doodly-squat|diddly-squat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+didelphidae|1
+(noun)|Didelphidae|family Didelphidae|mammal family (generic term)
+didelphis|1
+(noun)|Didelphis|genus Didelphis|mammal genus (generic term)
+didelphis marsupialis|1
+(noun)|common opossum|Didelphis virginiana|Didelphis marsupialis|opossum (generic term)|possum (generic term)
+didelphis virginiana|1
+(noun)|common opossum|Didelphis virginiana|Didelphis marsupialis|opossum (generic term)|possum (generic term)
+diderot|1
+(noun)|Diderot|Denis Diderot|philosopher (generic term)
+didion|1
+(noun)|Didion|Joan Didion|writer (generic term)|author (generic term)
+dido|1
+(noun)|Dido|princess (generic term)
+didrikson|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+die|13
+(noun)|dice|cube (generic term)|square block (generic term)
+(noun)|shaping tool (generic term)
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+(verb)|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|suffer (generic term)|endure (generic term)
+(verb)|break down (generic term)|lose it (generic term)|snap (generic term)
+(verb)|fail|go bad|give way|give out|conk out|go|break|break down|change (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|ache (generic term)|yearn (generic term)|yen (generic term)|pine (generic term)|languish (generic term)
+(verb)|die out|cut out (generic term)
+(verb)|play (generic term)
+(verb)|pall|become flat|change (generic term)
+(verb)|disappear (generic term)|vanish (generic term)|go away (generic term)
+die-cast|1
+(adj)|formed (similar term)
+die-hard|1
+(adj)|rock-ribbed|inflexible (similar term)
+die-sinker|1
+(noun)|diemaker|diesinker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+die away|1
+(verb)|abate|let up|slack off|slack|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+die back|1
+(verb)|die down|shrivel (generic term)|shrivel up (generic term)|shrink (generic term)|wither (generic term)
+die down|2
+(verb)|die back|shrivel (generic term)|shrivel up (generic term)|shrink (generic term)|wither (generic term)
+(verb)|weaken (generic term)
+die hard|1
+(verb)|prevail|persist|run|endure|continue (generic term)
+die off|1
+(verb)|die out|disappear (generic term)|vanish (generic term)|go away (generic term)
+die out|2
+(verb)|die off|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|die|cut out (generic term)
+dieback|1
+(noun)|plant disease (generic term)
+dieffenbachia|1
+(noun)|Dieffenbachia|genus Dieffenbachia|monocot genus (generic term)|liliopsid genus (generic term)
+dieffenbachia sequine|1
+(noun)|dumb cane|mother-in-law plant|mother-in-law's tongue|Dieffenbachia sequine|arum (generic term)|aroid (generic term)
+diego rivera|1
+(noun)|Rivera|Diego Rivera|muralist (generic term)
+diego rodriguez de silva y velazquez|1
+(noun)|Velazquez|Diego Rodriguez de Silva y Velazquez|old master (generic term)
+diegueno|2
+(noun)|Diegueno|Hokan (generic term)|Hoka (generic term)
+(noun)|Diegueno|Yuman (generic term)
+diehard|1
+(noun)|traditionalist|conservative (generic term)|conservativist (generic term)
+dielectric|1
+(noun)|insulator|nonconductor|material (generic term)|stuff (generic term)|conductor (antonym)
+dielectric heating|1
+(noun)|electrical phenomenon (generic term)
+dielectrolysis|1
+(noun)|electrophoresis|cataphoresis|ionophoresis|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+diemaker|1
+(noun)|diesinker|die-sinker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+dien bien phu|1
+(noun)|Dien Bien Phu|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+diencephalon|1
+(noun)|interbrain|betweenbrain|thalmencephalon|neural structure (generic term)
+dieresis|1
+(noun)|umlaut|diaeresis|diacritical mark (generic term)|diacritic (generic term)
+diervilla|1
+(noun)|Diervilla|genus Diervilla|asterid dicot genus (generic term)
+diervilla lonicera|1
+(noun)|bush honeysuckle|Diervilla lonicera|shrub (generic term)|bush (generic term)
+diervilla sessilifolia|1
+(noun)|bush honeysuckle|Diervilla sessilifolia|shrub (generic term)|bush (generic term)
+dies irae|1
+(noun)|Dies Irae|hymn (generic term)|anthem (generic term)
+diesel|2
+(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+(noun)|diesel engine|diesel motor|internal-combustion engine (generic term)|ICE (generic term)
+diesel-electric|1
+(noun)|diesel-electric locomotive|diesel locomotive (generic term)
+diesel-electric locomotive|1
+(noun)|diesel-electric|diesel locomotive (generic term)
+diesel-hydraulic|1
+(noun)|diesel-hydraulic locomotive|diesel locomotive (generic term)
+diesel-hydraulic locomotive|1
+(noun)|diesel-hydraulic|diesel locomotive (generic term)
+diesel engine|1
+(noun)|diesel|diesel motor|internal-combustion engine (generic term)|ICE (generic term)
+diesel fuel|1
+(noun)|diesel oil|fuel (generic term)
+diesel locomotive|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+diesel motor|1
+(noun)|diesel|diesel engine|internal-combustion engine (generic term)|ICE (generic term)
+diesel oil|1
+(noun)|diesel fuel|fuel (generic term)
+diesinker|1
+(noun)|diemaker|die-sinker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+diesis|1
+(noun)|double dagger|double obelisk|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+diestock|1
+(noun)|device (generic term)
+diestrous|1
+(adj)|dioestrous|diestrual|dioestrual|anestrous (similar term)
+diestrual|1
+(adj)|diestrous|dioestrous|dioestrual|anestrous (similar term)
+diestrum|1
+(noun)|diestrus|anestrus (generic term)|anestrum (generic term)|anoestrus (generic term)|anoestrum (generic term)
+diestrus|1
+(noun)|diestrum|anestrus (generic term)|anestrum (generic term)|anoestrus (generic term)|anoestrum (generic term)
+diet|4
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|fare (generic term)
+(noun)|dieting|fast (generic term)|fasting (generic term)
+(verb)|fast (generic term)
+dietary|2
+(adj)|dietetic|dietetical|fare (related term)
+(noun)|fare (generic term)
+dieter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dietetic|1
+(adj)|dietary|dietetical|fare (related term)
+dietetical|1
+(adj)|dietary|dietetic|fare (related term)
+dietetics|1
+(noun)|life science (generic term)|bioscience (generic term)
+diethyl ether|1
+(noun)|ether|ethoxyethane|divinyl ether|vinyl ether|ethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+diethylaminoethyl cellulose|1
+(noun)|DEAE cellulose|cellulose (generic term)
+diethylbarbituric acid|1
+(noun)|barbital|veronal|barbitone|diethylmalonylurea|barbiturate (generic term)
+diethylmalonylurea|1
+(noun)|barbital|veronal|barbitone|diethylbarbituric acid|barbiturate (generic term)
+diethylstilbesterol|1
+(noun)|DES|stilbesterol|nonsteroid (generic term)|nonsteroidal (generic term)
+diethylstilbestrol|1
+(noun)|diethylstilboestrol|stilbestrol|stilboestrol|DES|estrogen (generic term)|oestrogen (generic term)
+diethylstilboestrol|1
+(noun)|diethylstilbestrol|stilbestrol|stilboestrol|DES|estrogen (generic term)|oestrogen (generic term)
+dietician|1
+(noun)|dietitian|nutritionist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+dieting|1
+(noun)|diet|fast (generic term)|fasting (generic term)
+dietitian|1
+(noun)|dietician|nutritionist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+dietrich|1
+(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+dietrich bonhoeffer|1
+(noun)|Bonhoeffer|Dietrich Bonhoeffer|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+differ|2
+(verb)|equal (antonym)
+(verb)|disagree|dissent|take issue|agree (antonym)
+difference|5
+(noun)|quality (generic term)|sameness (antonym)
+(noun)|deviation|divergence|departure|variation (generic term)|fluctuation (generic term)
+(noun)|dispute|difference of opinion|conflict|disagreement (generic term)
+(noun)|change (generic term)
+(noun)|remainder|number (generic term)
+difference limen|1
+(noun)|difference threshold|differential threshold|differential limen|threshold (generic term)|limen (generic term)
+difference of opinion|1
+(noun)|dispute|difference|conflict|disagreement (generic term)
+difference threshold|1
+(noun)|differential threshold|difference limen|differential limen|threshold (generic term)|limen (generic term)
+different|4
+(adj)|antithetic (similar term)|antithetical (similar term)|assorted (similar term)|various (similar term)|contrary (similar term)|contrasting (similar term)|contrastive (similar term)|diametric (similar term)|diametrical (similar term)|opposite (similar term)|polar (similar term)|divergent (similar term)|disparate (similar term)|distinct (similar term)|distinguishable (similar term)|diverse (similar term)|various (similar term)|divers (similar term)|diverse (similar term)|opposite (similar term)|several (similar term)|variant (similar term)|dissimilar (related term)|incompatible (related term)|unlike (related term)|dissimilar (related term)|different (related term)|varied (related term)|same (antonym)
+(adj)|unusual (similar term)
+(adj)|unlike|dissimilar|like (antonym)
+(adj)|other (similar term)
+differentia|1
+(noun)|difference (generic term)
+differentiable|2
+(adj)|calculation|computation|figuring|reckoning (related term)
+(adj)|distinguishable (similar term)
+differential|5
+(adj)|quality (related term)
+(adj)|mathematical process|mathematical operation|operation (related term)
+(noun)|derived function|derivative|differential coefficient|first derivative|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|difference (generic term)
+(noun)|differential gear|bevel gear (generic term)|pinion and crown wheel (generic term)|pinion and ring gear (generic term)
+differential analyzer|1
+(noun)|analog computer (generic term)|analogue computer (generic term)
+differential blood count|1
+(noun)|blood count (generic term)
+differential calculus|1
+(noun)|method of fluxions|calculus (generic term)|infinitesimal calculus (generic term)
+differential coefficient|1
+(noun)|derived function|derivative|differential|first derivative|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+differential cost|1
+(noun)|marginal cost|incremental cost|monetary value (generic term)|price (generic term)|cost (generic term)
+differential diagnosis|1
+(noun)|medical diagnosis (generic term)
+differential equation|1
+(noun)|equation (generic term)
+differential gear|1
+(noun)|differential|bevel gear (generic term)|pinion and crown wheel (generic term)|pinion and ring gear (generic term)
+differential limen|1
+(noun)|difference threshold|differential threshold|difference limen|threshold (generic term)|limen (generic term)
+differential psychology|1
+(noun)|psychology (generic term)|psychological science (generic term)
+differential threshold|1
+(noun)|difference threshold|difference limen|differential limen|threshold (generic term)|limen (generic term)
+differentiate|6
+(verb)|distinguish|separate|secern|secernate|severalize|severalise|tell|tell apart|identify (generic term)|place (generic term)
+(verb)|distinguish|mark|qualify (generic term)|characterize (generic term)|characterise (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|integrate (antonym)
+(verb)|develop (generic term)|dedifferentiate (antonym)
+(verb)|speciate|specialize|specialise|evolve (generic term)
+(verb)|dissimilate (generic term)
+differentiated|2
+(adj)|distinguished (similar term)|undifferentiated (antonym)
+(adj)|specialized (similar term)|specialised (similar term)
+differentiation|3
+(noun)|distinction|discrimination (generic term)|secernment (generic term)
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|specialization|specialisation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+differentiator|1
+(noun)|discriminator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+differently|1
+(adv)|otherwise|other than
+difficult|3
+(adj)|hard|ambitious (similar term)|challenging (similar term)|arduous (similar term)|awkward (similar term)|embarrassing (similar term)|sticky (similar term)|unenviable (similar term)|baffling (similar term)|knotty (similar term)|problematic (similar term)|problematical (similar term)|tough (similar term)|catchy (similar term)|tricky (similar term)|delicate (similar term)|ticklish (similar term)|touchy (similar term)|fractious (similar term)|hard-fought (similar term)|herculean (similar term)|nasty (similar term)|tight (similar term)|rocky (similar term)|rough (similar term)|rugged (similar term)|tough (similar term)|serious (similar term)|tall (similar term)|thorny (similar term)|troublesome (similar term)|trying (similar term)|vexed (similar term)|demanding (related term)|effortful (related term)|hard (related term)|easy (antonym)
+(adj)|effortful (similar term)
+(adj)|unmanageable|indocile (similar term)|uncontrollable (similar term)|ungovernable (similar term)|unruly (similar term)|uncheckable (similar term)|defiant (related term)|noncompliant (related term)|disobedient (related term)|intractable (related term)|manageable (antonym)
+difficultness|1
+(noun)|difficulty|quality (generic term)|ease (antonym)
+difficulty|4
+(noun)|trouble|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(noun)|cognitive factor (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|difficultness|quality (generic term)|ease (antonym)
+diffidence|1
+(noun)|self-doubt|self-distrust|timidity (generic term)|timidness (generic term)|timorousness (generic term)|confidence (antonym)
+diffident|2
+(adj)|reserved (similar term)
+(adj)|shy|timid|unsure|unconfident (similar term)
+difflugia|1
+(noun)|protozoan (generic term)|protozoon (generic term)
+diffract|1
+(verb)|separate (generic term)|part (generic term)|split (generic term)
+diffraction|1
+(noun)|optical phenomenon (generic term)
+diffraction grating|1
+(noun)|grating|optical device (generic term)
+diffuse|6
+(adj)|distributed (similar term)
+(adj)|soft|diffused|hard (antonym)
+(adj)|prolix (similar term)
+(verb)|spread|spread out|fan out|spread (generic term)|distribute (generic term)
+(verb)|permeate|pervade|penetrate|interpenetrate|imbue|riddle|penetrate (generic term)|perforate (generic term)
+(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+diffuse nebula|1
+(noun)|gaseous nebula|nebula (generic term)
+diffused|2
+(adj)|distributed (similar term)
+(adj)|soft|diffuse|hard (antonym)
+diffuseness|1
+(noun)|scatter (generic term)|spread (generic term)
+diffuser|2
+(noun)|diffusor|baffle (generic term)|baffle board (generic term)
+(noun)|diffusor|optical device (generic term)
+diffusing|1
+(adj)|diffusive|dispersive|disseminative|disseminating|scattering|spreading|distributive (similar term)
+diffusing screen|1
+(noun)|light filter|filter (generic term)
+diffusion|4
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|spread (generic term)|spreading (generic term)
+(noun)|dissemination|distribution (generic term)|dispersion (generic term)
+(noun)|dispersion|dispersal|dissemination|spread (generic term)|spreading (generic term)
+diffusion pump|1
+(noun)|condensation pump|air pump (generic term)|vacuum pump (generic term)
+diffusive|1
+(adj)|diffusing|dispersive|disseminative|disseminating|scattering|spreading|distributive (similar term)
+diffusor|2
+(noun)|diffuser|baffle (generic term)|baffle board (generic term)
+(noun)|diffuser|optical device (generic term)
+diflunisal|1
+(noun)|Dolobid|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+dig|11
+(noun)|excavation|archeological site|site (generic term)|land site (generic term)
+(noun)|shot|shaft|slam|barb|jibe|gibe|remark (generic term)|comment (generic term)
+(noun)|dent (generic term)|ding (generic term)|gouge (generic term)|nick (generic term)
+(noun)|excavation|digging|creating by removal (generic term)
+(noun)|jab|touch (generic term)|touching (generic term)
+(verb)|delve|cut into|turn over|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|dig up (related term)|dig in (related term)|dig out (related term)
+(verb)|dig out|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|labor|labour|toil|fag|travail|grind|drudge|moil|work (generic term)|do work (generic term)
+(verb)|excavate|hollow|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|jab|prod|stab|poke|thrust (generic term)
+(verb)|grok|get the picture|comprehend|savvy|grasp|compass|apprehend|understand (generic term)
+dig in|2
+(verb)|entrench
+(verb)|pitch in|eat (generic term)
+dig into|1
+(verb)|probe|poke into|penetrate (generic term)|perforate (generic term)
+dig out|2
+(verb)|free (generic term)|disengage (generic term)
+(verb)|dig|hollow (generic term)|hollow out (generic term)|core out (generic term)
+dig up|1
+(verb)|excavate|turn up|obtain (generic term)
+digenesis|1
+(noun)|metagenesis|alternation of generations (generic term)|heterogenesis (generic term)|xenogenesis (generic term)
+digest|10
+(noun)|periodical (generic term)
+(noun)|compilation|collection (generic term)|compendium (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+(verb)|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|change (generic term)
+(verb)|systematize (generic term)|systematise (generic term)|systemize (generic term)|systemise (generic term)
+(verb)|disintegrate (generic term)
+(verb)|condense|concentrate|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+(verb)|decompose (generic term)|break up (generic term)|break down (generic term)
+digested|1
+(adj)|digestible (similar term)
+digester|1
+(noun)|autoclave (generic term)|sterilizer (generic term)|steriliser (generic term)
+digestibility|1
+(noun)|digestibleness|edibility (generic term)|edibleness (generic term)|indigestibility (antonym)
+digestible|1
+(adj)|assimilable (similar term)|digested (similar term)|light (similar term)|predigested (similar term)|edible (related term)|comestible (related term)|eatable (related term)|indigestible (antonym)
+digestibleness|1
+(noun)|digestibility|edibility (generic term)|edibleness (generic term)|indigestibility (antonym)
+digestion|3
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|learning (generic term)|acquisition (generic term)
+digestive|2
+(adj)|organic process|biological process (related term)
+(noun)|substance (generic term)|matter (generic term)
+digestive fluid|1
+(noun)|digestive juice|juice (generic term)|succus (generic term)
+digestive gland|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+digestive juice|1
+(noun)|digestive fluid|juice (generic term)|succus (generic term)
+digestive system|1
+(noun)|gastrointestinal system|systema alimentarium|systema digestorium|system (generic term)
+digestive tract|1
+(noun)|alimentary canal|alimentary tract|digestive tube|gastrointestinal tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+digestive tube|1
+(noun)|alimentary canal|alimentary tract|digestive tract|gastrointestinal tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+digger|2
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|power shovel|excavator|shovel|machine (generic term)
+digger wasp|1
+(noun)|sphecoid wasp (generic term)|sphecoid (generic term)
+digging|1
+(noun)|excavation|dig|creating by removal (generic term)
+digging up|1
+(noun)|exhumation|disinterment|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+diggings|2
+(noun)|digs|excavation (generic term)
+(noun)|digs|domiciliation|lodgings|pad|living quarters (generic term)|quarters (generic term)
+dighted|1
+(adj)|clothed (similar term)|clad (similar term)
+digit|3
+(noun)|figure|integer (generic term)|whole number (generic term)
+(noun)|finger|fingerbreadth|finger's breadth|linear unit (generic term)
+(noun)|dactyl|extremity (generic term)|appendage (generic term)|member (generic term)
+digital|3
+(adj)|analogue (antonym)
+(adj)|integer|whole number (related term)
+(adj)|extremity|appendage|member (related term)
+digital-analog converter|1
+(noun)|digital-to-analog converter|data converter (generic term)
+digital-to-analog converter|1
+(noun)|digital-analog converter|data converter (generic term)
+digital arteries|1
+(noun)|arteria digitalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+digital audiotape|1
+(noun)|DAT|audiotape (generic term)
+digital camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+digital clock|1
+(noun)|clock (generic term)
+digital communication|1
+(noun)|data communication|electronic communication (generic term)
+digital communications technology|1
+(noun)|communications technology (generic term)
+digital computer|1
+(noun)|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+digital display|1
+(noun)|alphanumeric display|display (generic term)|video display (generic term)
+digital photography|1
+(noun)|photography (generic term)
+digital plethysmograph|1
+(noun)|plethysmograph (generic term)
+digital scanner|1
+(noun)|scanner|image scanner|electronic device (generic term)|data input device (generic term)|input device (generic term)
+digital subscriber line|1
+(noun)|DSL|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+digital vein|1
+(noun)|vena digitalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+digital voltmeter|1
+(noun)|electronic voltmeter (generic term)
+digital watch|1
+(noun)|watch (generic term)|ticker (generic term)
+digitalin|1
+(noun)|digitalis|digitalis glycoside|cardiac glycoside (generic term)|cardiac glucoside (generic term)
+digitalis|2
+(noun)|digitalis glycoside|digitalin|cardiac glycoside (generic term)|cardiac glucoside (generic term)
+(noun)|foxglove|herb (generic term)|herbaceous plant (generic term)
+digitalis glycoside|1
+(noun)|digitalis|digitalin|cardiac glycoside (generic term)|cardiac glucoside (generic term)
+digitalis lutea|1
+(noun)|yellow foxglove|straw foxglove|Digitalis lutea|foxglove (generic term)|digitalis (generic term)
+digitalis purpurea|1
+(noun)|common foxglove|fairy bell|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+digitalisation|1
+(noun)|digitalization|medical care (generic term)|medical aid (generic term)
+digitalise|1
+(verb)|digitize|digitise|digitalize|change (generic term)|alter (generic term)|modify (generic term)
+digitalization|1
+(noun)|digitalisation|medical care (generic term)|medical aid (generic term)
+digitalize|2
+(verb)|digitize|digitise|digitalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|administer (generic term)|dispense (generic term)
+digitaria|1
+(noun)|Digitaria|genus Digitaria|monocot genus (generic term)|liliopsid genus (generic term)
+digitaria ischaemum|1
+(noun)|smooth crabgrass|Digitaria ischaemum|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+digitaria sanguinalis|1
+(noun)|large crabgrass|hairy finger grass|Digitaria sanguinalis|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+digitate|1
+(adj)|fingerlike|fingered (similar term)
+digitigrade|2
+(adj)|plantigrade (antonym)
+(noun)|digitigrade mammal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)|plantigrade mammal (antonym)
+digitigrade mammal|1
+(noun)|digitigrade|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)|plantigrade mammal (antonym)
+digitisation|1
+(noun)|digitization|conversion (generic term)
+digitise|1
+(verb)|digitize|digitalize|digitalise|change (generic term)|alter (generic term)|modify (generic term)
+digitiser|1
+(noun)|digitizer|analog-digital converter|analog-to-digital converter|data converter (generic term)
+digitization|1
+(noun)|digitisation|conversion (generic term)
+digitize|1
+(verb)|digitise|digitalize|digitalise|change (generic term)|alter (generic term)|modify (generic term)
+digitizer|1
+(noun)|digitiser|analog-digital converter|analog-to-digital converter|data converter (generic term)
+digitoxin|1
+(noun)|digitalis (generic term)|digitalis glycoside (generic term)|digitalin (generic term)
+dignified|2
+(adj)|courtly (similar term)|formal (similar term)|stately (similar term)|distinguished (similar term)|grand (similar term)|imposing (similar term)|magisterial (similar term)|composed (related term)|elegant (related term)|undignified (antonym)
+(adj)|self-respecting|self-respectful|proud (similar term)
+dignify|2
+(verb)|ennoble|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|lift (generic term)|raise (generic term)|elevate (generic term)
+dignifying|1
+(adj)|ennobling|noble (similar term)
+dignitary|1
+(noun)|very important person|VIP|high-up|panjandrum|high muckamuck|important person (generic term)|influential person (generic term)|personage (generic term)
+dignity|3
+(noun)|self-respect|self-esteem|self-regard|self-worth|pride (generic term)
+(noun)|lordliness|gravitas|bearing (generic term)|comportment (generic term)|presence (generic term)|mien (generic term)
+(noun)|status (generic term)|position (generic term)
+digoxin|1
+(noun)|Lanoxin|digitalis (generic term)|digitalis glycoside (generic term)|digitalin (generic term)
+digram|1
+(noun)|digraph|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+digraph|1
+(noun)|digram|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+digress|2
+(verb)|stray|divagate|wander|tell (generic term)
+(verb)|sidetrack|depart|straggle|deviate (generic term)|divert (generic term)
+digression|3
+(noun)|aside|excursus|divagation|parenthesis|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|diversion|deviation|deflection|deflexion|divagation|turn (generic term)|turning (generic term)
+(noun)|excursion|journey (generic term)|journeying (generic term)
+digressive|2
+(adj)|tangential|irrelevant (similar term)
+(adj)|discursive|excursive|rambling|indirect (similar term)
+digs|2
+(noun)|diggings|excavation (generic term)
+(noun)|diggings|domiciliation|lodgings|pad|living quarters (generic term)|quarters (generic term)
+dihybrid|1
+(noun)|hybrid (generic term)|crossbreed (generic term)|cross (generic term)
+dihybrid cross|1
+(noun)|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+dihydric alcohol|1
+(noun)|diol|glycol|alcohol (generic term)
+dihydrostreptomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+dihydroxyphenylalanine|1
+(noun)|dopa|amino acid (generic term)|aminoalkanoic acid (generic term)
+dijon|1
+(noun)|Dijon|city (generic term)|metropolis (generic term)|urban center (generic term)
+dik-dik|1
+(noun)|antelope (generic term)
+dika|1
+(noun)|wild mango|wild mango tree|Irvingia gabonensis|fruit tree (generic term)
+dika bread|1
+(noun)|food (generic term)|solid food (generic term)
+dika nut|1
+(noun)|edible seed (generic term)
+dike|3
+(noun)|butch|dyke|lesbian (generic term)|tribade (generic term)|gay woman (generic term)
+(noun)|dam|dyke|barrier (generic term)
+(verb)|dyke|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+dilantin|1
+(noun)|diphenylhydantoin|phenytoin|Dilantin|hydantoin (generic term)
+dilapidate|1
+(verb)|destroy (generic term)|destruct (generic term)
+dilapidated|1
+(adj)|bedraggled|broken-down|derelict|ramshackle|tatterdemalion|tumble-down|damaged (similar term)
+dilapidation|2
+(noun)|decrepitude|deterioration (generic term)|impairment (generic term)
+(noun)|ruin|decay (generic term)
+dilatation|2
+(noun)|distension|distention|physiological state (generic term)|physiological condition (generic term)
+(noun)|dilation|expansion (generic term)|enlargement (generic term)
+dilatation and curettage|1
+(noun)|dilation and curettage|D and C|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+dilate|2
+(verb)|distend|widen (generic term)
+(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+dilated|1
+(adj)|expanded (similar term)
+dilater|1
+(noun)|dilator|surgical instrument (generic term)
+dilation|2
+(noun)|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|dilatation|expansion (generic term)|enlargement (generic term)
+dilation and curettage|1
+(noun)|dilatation and curettage|D and C|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+dilator|3
+(noun)|body part (generic term)
+(noun)|drug (generic term)
+(noun)|dilater|surgical instrument (generic term)
+dilatoriness|1
+(noun)|procrastination|slowness (generic term)|deliberation (generic term)|deliberateness (generic term)|unhurriedness (generic term)
+dilatory|3
+(adj)|laggard|unpunctual (similar term)
+(adj)|laggard|poky|pokey|slow (similar term)
+(adj)|fabian|cautious (similar term)
+dilatory plea|1
+(noun)|plea (generic term)
+dilaudid|1
+(noun)|hydromorphone hydrochloride|hydromorphone|Dilaudid|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+dildo|1
+(noun)|vibrator (generic term)
+dilemma|1
+(noun)|quandary|perplexity (generic term)
+dilettante|2
+(adj)|dilettantish|dilettanteish|sciolistic|superficial (similar term)
+(noun)|dabbler|sciolist|amateur (generic term)
+dilettanteish|1
+(adj)|dilettante|dilettantish|sciolistic|superficial (similar term)
+dilettantish|1
+(adj)|dilettante|dilettanteish|sciolistic|superficial (similar term)
+diligence|3
+(noun)|conscientiousness (generic term)|painstakingness (generic term)
+(noun)|industriousness|industry|determination (generic term)|purpose (generic term)
+(noun)|application|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+diligent|2
+(adj)|persevering|patient (similar term)
+(adj)|assiduous (similar term)|sedulous (similar term)|hardworking (similar term)|industrious (similar term)|tireless (similar term)|untiring (similar term)|busy (related term)|careful (related term)|negligent (antonym)
+dill|2
+(noun)|Anethum graveolens|herb (generic term)|herbaceous plant (generic term)
+(noun)|dill weed|herb (generic term)
+dill pickle|1
+(noun)|pickle (generic term)
+dill seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+dill weed|1
+(noun)|dill|herb (generic term)
+dillenia|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+dilleniaceae|1
+(noun)|Dilleniaceae|family Dilleniaceae|dilleniid dicot family (generic term)
+dilleniid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+dilleniid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+dilleniidae|1
+(noun)|Dilleniidae|subclass Dilleniidae|class (generic term)
+dilly-dallier|1
+(noun)|dallier|dillydallier|mope|lounger|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+dilly-dally|1
+(verb)|procrastinate|stall|drag one's feet|drag one's heels|shillyshally|dillydally|delay (generic term)
+dillydallier|1
+(noun)|dallier|dilly-dallier|mope|lounger|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+dillydally|1
+(verb)|procrastinate|stall|drag one's feet|drag one's heels|shillyshally|dilly-dally|delay (generic term)
+diltiazem|1
+(noun)|Cardizem|calcium blocker (generic term)|calcium-channel blocker (generic term)
+diluent|1
+(noun)|dilutant|thinner|agent (generic term)
+dilutant|1
+(noun)|diluent|thinner|agent (generic term)
+dilute|3
+(adj)|diluted|cut (similar term)|thinned (similar term)|weakened (similar term)|watery (similar term)|washy (similar term)|weak (similar term)|white (similar term)|undiluted (antonym)
+(verb)|thin|thin out|reduce|cut|weaken (generic term)
+(verb)|adulterate|stretch|debase|corrupt (generic term)|spoil (generic term)
+diluted|2
+(adj)|dilute|cut (similar term)|thinned (similar term)|weakened (similar term)|watery (similar term)|washy (similar term)|weak (similar term)|white (similar term)|undiluted (antonym)
+(adj)|toned down|tempered (similar term)
+dilution|2
+(noun)|solution (generic term)
+(noun)|weakening (generic term)|concentration (antonym)
+diluvial|1
+(adj)|diluvian|rain|rainfall (related term)
+diluvian|1
+(adj)|diluvial|rain|rainfall (related term)
+dim|11
+(adj)|subdued|dark (similar term)
+(adj)|faint|shadowy|vague|wispy|indistinct (similar term)
+(adj)|dimmed|low-beam (similar term)|undimmed (antonym)
+(adj)|black|bleak|hopeless (similar term)
+(adj)|dense|dull|dumb|obtuse|slow|stupid (similar term)
+(verb)|dip|change intensity (generic term)
+(verb)|darken|change intensity (generic term)|brighten (antonym)
+(verb)|change (generic term)
+(verb)|darken (generic term)
+(verb)|blind|darken (generic term)
+(verb)|blur|slur|weaken (generic term)|slur over (related term)|focus (antonym)
+dim-sighted|1
+(adj)|near-blind|purblind|sand-blind|visually impaired|visually challenged|blind (similar term)|unsighted (similar term)
+dim-witted|1
+(adj)|half-witted|simple|simple-minded|retarded (similar term)
+dim sum|1
+(noun)|cuisine (generic term)|culinary art (generic term)
+dimaggio|1
+(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer (generic term)|baseball player (generic term)
+dimash|1
+(noun)|Dimash|Damascus|capital of Syria|national capital (generic term)
+dime|2
+(noun)|coin (generic term)
+(noun)|dime bag|deck (generic term)
+dime bag|1
+(noun)|dime|deck (generic term)
+dime novel|1
+(noun)|penny dreadful|novel (generic term)
+dimenhydrinate|1
+(noun)|Dramamine|antihistamine (generic term)|antiemetic (generic term)|antiemetic drug (generic term)
+dimension|6
+(noun)|magnitude (generic term)
+(noun)|property|attribute|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|Cartesian coordinate (generic term)
+(noun)|proportion|magnitude (generic term)
+(verb)|mark (generic term)
+(verb)|shape (generic term)|form (generic term)
+dimensional|2
+(adj)|magnitude (related term)
+(adj)|multidimensional (similar term)
+dimensionality|1
+(noun)|spatial property (generic term)|spatiality (generic term)
+dimensioning|1
+(adj)|orienting (similar term)|orientating (similar term)
+dimer|1
+(noun)|compound (generic term)|chemical compound (generic term)
+dimetane|1
+(noun)|brompheniramine maleate|Dimetane|antihistamine (generic term)
+dimetapp|1
+(noun)|Dimetapp|antihistamine (generic term)|nasal decongestant (generic term)
+dimethyl ketone|1
+(noun)|acetone|propanone|ketone (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+dimethylglyoxime|1
+(noun)|precipitant (generic term)
+dimetrodon|1
+(noun)|synapsid (generic term)|synapsid reptile (generic term)
+diminish|2
+(verb)|decrease|lessen|fall|change magnitude (generic term)|increase (antonym)
+(verb)|belittle|decrease (generic term)|lessen (generic term)|minify (generic term)
+diminished|4
+(adj)|lessened|vitiated|weakened|impaired (similar term)
+(adj)|atrophied|wasted|hypertrophied (antonym)
+(adj)|decreased (similar term)|reduced (similar term)
+(adj)|belittled|small|decreased (similar term)|reduced (similar term)
+diminished arch|1
+(noun)|skeen arch|skene arch|scheme arch|arch (generic term)
+diminishing|1
+(adj)|decreasing (similar term)
+diminuendo|2
+(adj)|decrescendo|decreasing (similar term)
+(noun)|decrescendo|softness (generic term)
+diminution|3
+(noun)|decline|decrease (generic term)|decrement (generic term)
+(noun)|statement (generic term)|augmentation (antonym)
+(noun)|decrease|reduction|step-down|change of magnitude (generic term)|increase (antonym)
+diminutive|2
+(adj)|bantam|lilliputian|midget|petite|tiny|flyspeck|small (similar term)|little (similar term)
+(noun)|word (generic term)
+diminutiveness|1
+(noun)|minuteness|petiteness|tininess|weeness|smallness (generic term)|littleness (generic term)
+dimity|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+dimly|3
+(adv)|indistinctly
+(adv)|pallidly|palely
+(adv)|murkily
+dimmed|1
+(adj)|dim|low-beam (similar term)|undimmed (antonym)
+dimmer|1
+(noun)|rheostat (generic term)|variable resistor (generic term)
+dimness|3
+(noun)|duskiness|semidarkness (generic term)
+(noun)|subduedness|dullness (generic term)
+(noun)|faintness|indistinctness (generic term)|softness (generic term)|blurriness (generic term)|fogginess (generic term)|fuzziness (generic term)
+dimocarpus|1
+(noun)|Dimocarpus|genus Dimocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+dimocarpus longan|1
+(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+dimorphic|1
+(adj)|dimorphous|polymorphism (related term)|polymorphism|pleomorphism (related term)
+dimorphism|2
+(noun)|polymorphism (generic term)|pleomorphism (generic term)
+(noun)|polymorphism (generic term)
+dimorphotheca|1
+(noun)|Dimorphotheca|genus Dimorphotheca|asterid dicot genus (generic term)
+dimorphous|1
+(adj)|dimorphic|polymorphism (related term)|polymorphism|pleomorphism (related term)
+dimout|1
+(noun)|blackout|brownout|dark (generic term)|darkness (generic term)
+dimple|4
+(noun)|dimpled chad|pregnant chad|chad (generic term)
+(noun)|depression (generic term)|impression (generic term)|imprint (generic term)
+(verb)|mark (generic term)
+(verb)|smile (generic term)
+dimpled chad|1
+(noun)|pregnant chad|dimple|chad (generic term)
+dimwit|1
+(noun)|nitwit|half-wit|doofus|simpleton (generic term)|simple (generic term)
+din|4
+(noun)|blare|blaring|cacophony|clamor|noise (generic term)
+(noun)|commotion|ruction|ruckus|rumpus|tumult|disturbance (generic term)
+(verb)|boom|sound (generic term)|go (generic term)
+(verb)|inculcate (generic term)|instill (generic term)|infuse (generic term)
+din land|1
+(noun)|Land|Din Land|Edwin Herbert Land|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+dinar|9
+(noun)|Iranian dinar|Iranian monetary unit (generic term)
+(noun)|Yugoslavian dinar|Yugoslavian monetary unit (generic term)
+(noun)|Tunisian dinar|Tunisian monetary unit (generic term)
+(noun)|Libyan dinar|Libyan monetary unit (generic term)
+(noun)|Kuwaiti dinar|Kuwaiti monetary unit (generic term)
+(noun)|Jordanian dinar|Jordanian monetary unit (generic term)
+(noun)|Iraqi dinar|Iraqi monetary unit (generic term)
+(noun)|Bahrain dinar|Bahrainian monetary unit (generic term)
+(noun)|Algerian dinar|Algerian monetary unit (generic term)
+dindymene|1
+(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity (generic term)
+dine|2
+(verb)|eat (generic term)|dine in (related term)|dine out (related term)
+(verb)|feed (generic term)|give (generic term)
+dine in|1
+(verb)|eat in|eat (generic term)|eat out (antonym)
+dine out|1
+(verb)|eat out|eat (generic term)|eat in (antonym)
+diner|3
+(noun)|eater (generic term)|feeder (generic term)
+(noun)|dining car|dining compartment|buffet car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+dinero|1
+(noun)|boodle|bread|cabbage|clams|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+dinesen|1
+(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer (generic term)|author (generic term)
+dinette|1
+(noun)|room (generic term)
+ding|3
+(noun)|sound (generic term)
+(noun)|dent|gouge|nick|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|dong|dingdong|ring (generic term)|peal (generic term)
+ding-dong|1
+(noun)|noise (generic term)
+dingbat|1
+(noun)|simpleton (generic term)|simple (generic term)
+dingdong|1
+(verb)|ding|dong|ring (generic term)|peal (generic term)
+dinge|3
+(noun)|dinginess|dirtiness (generic term)|uncleanness (generic term)
+(verb)|batter|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+dinghy|1
+(noun)|dory|rowboat|small boat (generic term)
+dingily|1
+(adv)|grubbily|grungily
+dinginess|1
+(noun)|dinge|dirtiness (generic term)|uncleanness (generic term)
+dingle|1
+(noun)|dell|hollow (generic term)|holler (generic term)
+dingo|1
+(noun)|warrigal|warragal|Canis dingo|wild dog (generic term)
+dingy|3
+(adj)|begrimed|grimy|grubby|grungy|raunchy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|dirty|muddied|muddy|impure (similar term)
+(adj)|blue|dark|depressing|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+dining|1
+(noun)|eating (generic term)|feeding (generic term)
+dining-hall|1
+(noun)|dining room (generic term)|dining-room (generic term)
+dining-room|1
+(noun)|dining room|room (generic term)
+dining-room attendant|1
+(noun)|restaurant attendant|employee (generic term)
+dining area|1
+(noun)|area (generic term)
+dining car|1
+(noun)|diner|dining compartment|buffet car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+dining companion|1
+(noun)|tablemate|diner (generic term)
+dining compartment|1
+(noun)|dining car|diner|buffet car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+dining room|1
+(noun)|dining-room|room (generic term)
+dining table|1
+(noun)|board|table (generic term)
+diningroom furniture|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+diningroom set|1
+(noun)|diningroom suite|suite (generic term)
+diningroom suite|1
+(noun)|diningroom set|suite (generic term)
+dink|2
+(noun)|DINK|couple (generic term)|mates (generic term)|match (generic term)
+(noun)|drop shot|return (generic term)
+dinka|1
+(noun)|Dinka|Nilotic (generic term)|Nilotic language (generic term)
+dinkey|1
+(noun)|dinky|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+dinky|3
+(adj)|small (similar term)|little (similar term)
+(adj)|attractive (similar term)
+(noun)|dinkey|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+dinner|2
+(noun)|meal (generic term)|repast (generic term)
+(noun)|dinner party|party (generic term)
+dinner bell|1
+(noun)|bell (generic term)
+dinner bucket|1
+(noun)|dinner pail|bucket (generic term)|pail (generic term)
+dinner dress|1
+(noun)|dinner gown|formal|evening gown|gown (generic term)|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+dinner gown|1
+(noun)|dinner dress|formal|evening gown|gown (generic term)|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+dinner jacket|1
+(noun)|tux|tuxedo|black tie|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+dinner napkin|1
+(noun)|napkin (generic term)|table napkin (generic term)|serviette (generic term)
+dinner pail|1
+(noun)|dinner bucket|bucket (generic term)|pail (generic term)
+dinner party|1
+(noun)|dinner|party (generic term)
+dinner plate|1
+(noun)|plate (generic term)
+dinner service|1
+(noun)|dinner set|service (generic term)|table service (generic term)
+dinner set|1
+(noun)|dinner service|service (generic term)|table service (generic term)
+dinner table|1
+(noun)|dining table (generic term)|board (generic term)
+dinner theater|1
+(noun)|dinner theatre|theater (generic term)|theatre (generic term)|house (generic term)
+dinner theatre|1
+(noun)|dinner theater|theater (generic term)|theatre (generic term)|house (generic term)
+dinnertime|1
+(noun)|suppertime|mealtime (generic term)
+dinnerware|1
+(noun)|tableware (generic term)
+dino paul crocetti|1
+(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+dinoceras|1
+(noun)|uintathere|dinocerate (generic term)
+dinocerata|1
+(noun)|Dinocerata|order Dinocerata|animal order (generic term)
+dinocerate|1
+(noun)|ungulate (generic term)|hoofed mammal (generic term)
+dinoflagellata|1
+(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order (generic term)
+dinoflagellate|1
+(noun)|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+dinornis|1
+(noun)|Dinornis|genus Dinornis|bird genus (generic term)
+dinornis giganteus|1
+(noun)|giant moa|Dinornis giganteus|moa (generic term)
+dinornithidae|1
+(noun)|Dinornithidae|family Dinornithidae|bird family (generic term)
+dinornithiformes|1
+(noun)|Dinornithiformes|order Dinornithiformes|animal order (generic term)
+dinosaur|1
+(noun)|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+dinosaur-like|1
+(adj)|animal (similar term)
+dint|1
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+diocesan|2
+(adj)|jurisdiction (related term)
+(noun)|bishop (generic term)
+diocese|1
+(noun)|bishopric|episcopate|jurisdiction (generic term)
+diocletian|1
+(noun)|Diocletian|Gaius Aurelius Valerius Diocletian|Roman Emperor (generic term)|Emperor of Rome (generic term)
+diode|2
+(noun)|rectifying tube|rectifying valve|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+(noun)|semiconductor diode|junction rectifier|crystal rectifier|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+diodon|1
+(noun)|Diodon|genus Diodon|fish genus (generic term)
+diodon holocanthus|1
+(noun)|balloonfish|Diodon holocanthus|spiny puffer (generic term)
+diodon hystrix|1
+(noun)|porcupinefish|porcupine fish|Diodon hystrix|spiny puffer (generic term)
+diodontidae|1
+(noun)|Diodontidae|family Diodontidae|fish family (generic term)
+diodora apertura|1
+(noun)|keyhole limpet|Fissurella apertura|Diodora apertura|limpet (generic term)
+dioecian|1
+(adj)|dioecious|monoecious (antonym)
+dioecious|1
+(adj)|dioecian|monoecious (antonym)
+dioestrous|1
+(adj)|diestrous|diestrual|dioestrual|anestrous (similar term)
+dioestrual|1
+(adj)|diestrous|dioestrous|diestrual|anestrous (similar term)
+diogenes|1
+(noun)|Diogenes|philosopher (generic term)
+diol|1
+(noun)|glycol|dihydric alcohol|alcohol (generic term)
+diomedea exulans|1
+(noun)|wandering albatross|Diomedea exulans|albatross (generic term)|mollymawk (generic term)
+diomedea nigripes|1
+(noun)|black-footed albatross|gooney|gooney bird|goonie|goony|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+diomedeidae|1
+(noun)|Diomedeidae|family Diomedeidae|bird family (generic term)
+dionaea|1
+(noun)|Dionaea|genus Dionaea|dicot genus (generic term)|magnoliopsid genus (generic term)
+dionaea muscipula|1
+(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant (generic term)
+dionysia|1
+(noun)|Dionysia|Bacchanalia|festival (generic term)|fete (generic term)
+dionysian|1
+(adj)|Dionysian|Greek deity (related term)
+dionysius|1
+(noun)|Dionysius|Dionysius the Elder|tyrant (generic term)
+dionysius the elder|1
+(noun)|Dionysius|Dionysius the Elder|tyrant (generic term)
+dionysus|1
+(noun)|Dionysus|Greek deity (generic term)
+dioon|1
+(noun)|cycad (generic term)
+diophantus|1
+(noun)|Diophantus|mathematician (generic term)
+diopter|1
+(noun)|dioptre|unit of measurement (generic term)|unit (generic term)
+dioptre|1
+(noun)|diopter|unit of measurement (generic term)|unit (generic term)
+dior|1
+(noun)|Dior|Christian Dior|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+diorama|1
+(noun)|panorama|cyclorama|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+diorite|1
+(noun)|igneous rock (generic term)
+dioscorea|1
+(noun)|Dioscorea|genus Dioscorea|plant genus (generic term)
+dioscorea alata|1
+(noun)|white yam|water yam|Dioscorea alata|yam (generic term)|yam plant (generic term)
+dioscorea batata|1
+(noun)|cinnamon vine|Chinese yam|Dioscorea batata|yam (generic term)|yam plant (generic term)
+dioscorea bulbifera|1
+(noun)|air potato|Dioscorea bulbifera|yam (generic term)|yam plant (generic term)
+dioscorea elephantipes|1
+(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine (generic term)
+dioscorea paniculata|1
+(noun)|wild yam|Dioscorea paniculata|vine (generic term)
+dioscorea trifida|1
+(noun)|cush-cush|Dioscorea trifida|yam (generic term)|yam plant (generic term)
+dioscoreaceae|1
+(noun)|Dioscoreaceae|family Dioscoreaceae|yam family|plant family (generic term)
+diospyros|1
+(noun)|Diospyros|genus Diospyros|dicot genus (generic term)|magnoliopsid genus (generic term)
+diospyros ebenum|1
+(noun)|ebony|ebony tree|Diospyros ebenum|tree (generic term)
+diospyros kaki|1
+(noun)|Japanese persimmon|kaki|Diospyros kaki|persimmon (generic term)|persimmon tree (generic term)
+diospyros kurzii|1
+(noun)|marblewood|marble-wood|Andaman marble|Diospyros kurzii|tree (generic term)
+diospyros lotus|1
+(noun)|date plum|Diospyros lotus|persimmon (generic term)|persimmon tree (generic term)
+diospyros virginiana|1
+(noun)|American persimmon|possumwood|Diospyros virginiana|persimmon (generic term)|persimmon tree (generic term)
+dioxide|1
+(noun)|oxide (generic term)
+dioxin|1
+(noun)|hydrocarbon (generic term)
+dip|21
+(noun)|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|angle of dip|magnetic dip|magnetic inclination|inclination|angle (generic term)
+(noun)|pickpocket|cutpurse|thief (generic term)|stealer (generic term)
+(noun)|condiment (generic term)
+(noun)|submergence (generic term)|submerging (generic term)|submersion (generic term)|immersion (generic term)
+(noun)|drop|fall|free fall|decrease (generic term)|decrement (generic term)
+(noun)|candle (generic term)|taper (generic term)|wax light (generic term)
+(noun)|plunge|swimming (generic term)|swim (generic term)
+(noun)|gymnastic exercise (generic term)
+(verb)|dunk|souse|plunge|douse|immerse (generic term)|plunge (generic term)
+(verb)|dunk|eat (generic term)
+(verb)|decline (generic term)|go down (generic term)|wane (generic term)
+(verb)|stain (generic term)
+(verb)|dim|change intensity (generic term)
+(verb)|lower (generic term)|take down (generic term)|let down (generic term)|get down (generic term)|bring down (generic term)
+(verb)|sink|decline (generic term)
+(verb)|slope (generic term)|incline (generic term)|pitch (generic term)
+(verb)|douse|duck|dunk (generic term)|dip (generic term)|souse (generic term)|plunge (generic term)|douse (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|immerse (generic term)|plunge (generic term)
+(verb)|scoop (generic term)|scoop out (generic term)|lift out (generic term)|scoop up (generic term)|take up (generic term)
+dip circle|1
+(noun)|inclinometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+dip into|1
+(verb)|read (generic term)
+dip solder|1
+(verb)|solder (generic term)
+dip switch|1
+(noun)|DIP switch|dual inline package switch|toggle switch (generic term)|toggle (generic term)|on-off switch (generic term)|on/off switch (generic term)
+diphenhydramine|1
+(noun)|Benadryl|antihistamine (generic term)
+diphenylbutyl piperidine|1
+(noun)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+diphenylhydantoin|1
+(noun)|phenytoin|Dilantin|hydantoin (generic term)
+diphtheria|1
+(noun)|contagious disease (generic term)|contagion (generic term)
+diphthong|1
+(noun)|vowel (generic term)|vowel sound (generic term)
+diphthongise|1
+(verb)|diphthongize|switch (generic term)|shift (generic term)|change (generic term)
+diphthongize|1
+(verb)|diphthongise|switch (generic term)|shift (generic term)|change (generic term)
+diphylla|1
+(noun)|Diphylla|genus Diphylla|mammal genus (generic term)
+diphylla ecaudata|1
+(noun)|hairy-legged vampire bat|Diphylla ecaudata|vampire bat (generic term)|true vampire bat (generic term)
+dipladenia|1
+(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+dipladenia boliviensis|1
+(noun)|white dipladenia|Mandevilla boliviensis|Dipladenia boliviensis|liana (generic term)
+diplazium pycnocarpon|1
+(noun)|silvery spleenwort|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern (generic term)
+diplegia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+diplococcus|1
+(noun)|bacteria (generic term)|bacterium (generic term)
+diplococcus pneumoniae|1
+(noun)|pneumococcus|Diplococcus pneumoniae|diplococcus (generic term)
+diplodocus|1
+(noun)|dinosaur (generic term)
+diploic vein|1
+(noun)|vena diploica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+diploid|2
+(adj)|polyploid (antonym)|haploid (antonym)
+(noun)|organism (generic term)|being (generic term)
+diploidy|1
+(noun)|condition (generic term)
+diploma|1
+(noun)|sheepskin|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+diplomacy|3
+(noun)|diplomatic negotiations|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+(noun)|delicacy|discreetness|finesse|tact (generic term)|tactfulness (generic term)
+(noun)|statesmanship|statecraft|wisdom (generic term)|wiseness (generic term)
+diplomat|2
+(noun)|diplomatist|official (generic term)|functionary (generic term)
+(noun)|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+diplomate|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+diplomatic|2
+(adj)|negotiation|dialogue|talks (related term)
+(adj)|diplomatical|politic (similar term)|smooth (similar term)|suave (similar term)|bland (similar term)|tactful (similar term)|kid-glove (similar term)|politic (related term)|undiplomatic (antonym)
+diplomatic building|1
+(noun)|government building (generic term)
+diplomatic corps|1
+(noun)|diplomatic service|corps diplomatique|corps (generic term)
+diplomatic immunity|1
+(noun)|exemption (generic term)|freedom (generic term)
+diplomatic minister|1
+(noun)|minister|diplomat (generic term)|diplomatist (generic term)
+diplomatic mission|1
+(noun)|deputation (generic term)|commission (generic term)|delegation (generic term)|delegacy (generic term)|mission (generic term)
+diplomatic negotiations|1
+(noun)|diplomacy|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+diplomatic pouch|1
+(noun)|mailbag (generic term)|mail pouch (generic term)
+diplomatic service|1
+(noun)|diplomatic corps|corps diplomatique|corps (generic term)
+diplomatical|1
+(adj)|diplomatic|politic (similar term)|smooth (similar term)|suave (similar term)|bland (similar term)|tactful (similar term)|kid-glove (similar term)|politic (related term)|undiplomatic (antonym)
+diplomatically|1
+(adv)|with diplomacy|undiplomatically (antonym)
+diplomatist|1
+(noun)|diplomat|official (generic term)|functionary (generic term)
+diplopia|1
+(noun)|double vision|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+diplopoda|1
+(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class (generic term)|category (generic term)|family (generic term)
+diplopterygium|1
+(noun)|Diplopterygium|genus Diplopterygium|fern genus (generic term)
+diplopterygium longissimum|1
+(noun)|giant scrambling fern|Diplopterygium longissimum|fern (generic term)
+diplotaxis|1
+(noun)|Diplotaxis|genus Diplotaxis|dilleniid dicot genus (generic term)
+diplotaxis erucoides|1
+(noun)|white rocket|Diplotaxis erucoides|herb (generic term)|herbaceous plant (generic term)
+diplotaxis muralis|1
+(noun)|wall rocket|Diplotaxis muralis|Diplotaxis tenuifolia|herb (generic term)|herbaceous plant (generic term)
+diplotaxis tenuifolia|1
+(noun)|wall rocket|Diplotaxis muralis|Diplotaxis tenuifolia|herb (generic term)|herbaceous plant (generic term)
+diplotene|1
+(noun)|phase (generic term)|stage (generic term)
+dipnoi|1
+(noun)|Dipnoi|subclass Dipnoi|class (generic term)
+dipodidae|1
+(noun)|Dipodidae|family Dipodidae|mammal family (generic term)
+dipodomys|1
+(noun)|Dipodomys|genus Dipodomys|mammal genus (generic term)
+dipodomys ordi|1
+(noun)|Ord kangaroo rat|Dipodomys ordi|kangaroo rat (generic term)|desert rat (generic term)|Dipodomys phillipsii (generic term)
+dipodomys phillipsii|1
+(noun)|kangaroo rat|desert rat|Dipodomys phillipsii|pocket rat (generic term)
+dipogon|1
+(noun)|Dipogon|genus Dipogon|rosid dicot genus (generic term)
+dipogon lignosus|1
+(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine (generic term)
+dipolar|1
+(adj)|couple (related term)
+dipole|2
+(noun)|couple (generic term)
+(noun)|dipole antenna|antenna (generic term)|aerial (generic term)|transmitting aerial (generic term)
+dipole antenna|1
+(noun)|dipole|antenna (generic term)|aerial (generic term)|transmitting aerial (generic term)
+dipole molecule|1
+(noun)|molecule (generic term)
+dipole moment|1
+(noun)|moment (generic term)
+dipped|1
+(adj)|lordotic|swayback|swaybacked|unfit (similar term)
+dippel's oil|1
+(noun)|bone oil|Dippel's oil|animal oil (generic term)
+dipper|5
+(noun)|ladle (generic term)
+(noun)|Little Dipper|Dipper|asterism (generic term)
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+(noun)|bufflehead|butterball|Bucephela albeola|duck (generic term)
+(noun)|water ouzel|oscine (generic term)|oscine bird (generic term)
+dippers|1
+(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination (generic term)
+dipsacaceae|1
+(noun)|Dipsacaceae|family Dipsacaceae|asterid dicot family (generic term)
+dipsacus|1
+(noun)|Dipsacus|genus Dipsacus|asterid dicot genus (generic term)
+dipsacus fullonum|1
+(noun)|common teasel|Dipsacus fullonum|teasel (generic term)|teazel (generic term)|teasle (generic term)
+dipsacus sativus|1
+(noun)|fuller's teasel|Dipsacus sativus|teasel (generic term)|teazel (generic term)|teasle (generic term)
+dipsacus sylvestris|1
+(noun)|wild teasel|Dipsacus sylvestris|teasel (generic term)|teazel (generic term)|teasle (generic term)
+dipsomania|1
+(noun)|alcoholism|potomania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+dipsomaniac|1
+(noun)|alcoholic|alky|boozer|lush|soaker|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+dipsosaurus|1
+(noun)|Dipsosaurus|genus Dipsosaurus|reptile genus (generic term)
+dipsosaurus dorsalis|1
+(noun)|desert iguana|Dipsosaurus dorsalis|iguanid (generic term)|iguanid lizard (generic term)
+dipstick|1
+(noun)|gauge (generic term)|gage (generic term)
+diptera|1
+(noun)|Diptera|order Diptera|animal order (generic term)
+dipteran|1
+(noun)|dipterous insect|two-winged insects|dipteron|insect (generic term)
+dipterocarp|1
+(noun)|tree (generic term)
+dipterocarpaceae|1
+(noun)|Dipterocarpaceae|family Dipterocarpaceae|dilleniid dicot family (generic term)
+dipteron|1
+(noun)|dipterous insect|two-winged insects|dipteran|insect (generic term)
+dipteronia|1
+(noun)|Dipteronia|genus Dipteronia|dicot genus (generic term)|magnoliopsid genus (generic term)
+dipterous|1
+(adj)|animal order (related term)
+dipterous insect|1
+(noun)|two-winged insects|dipteran|dipteron|insect (generic term)
+dipteryx|1
+(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus (generic term)
+dipteryx odorata|1
+(noun)|tonka bean|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree (generic term)
+diptych|1
+(noun)|art (generic term)|fine art (generic term)
+dipus|1
+(noun)|Dipus|genus Dipus|mammal genus (generic term)
+dipylon|2
+(adj)|Dipylon|gate (related term)
+(noun)|Dipylon gate|Dipylon|gate (generic term)
+dipylon gate|1
+(noun)|Dipylon gate|Dipylon|gate (generic term)
+dirac|1
+(noun)|Dirac|Paul Adrien Maurice Dirac|nuclear physicist (generic term)
+dirca|1
+(noun)|Dirca|genus Dirca|dicot genus (generic term)|magnoliopsid genus (generic term)
+dirca palustris|1
+(noun)|leatherwood|moosewood|moose-wood|wicopy|ropebark|Dirca palustris|shrub (generic term)|bush (generic term)
+dire|2
+(adj)|desperate|critical (similar term)
+(adj)|awful|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+dire straits|1
+(noun)|desperate straits|pass (generic term)|strait (generic term)|straits (generic term)
+direct|24
+(adj)|door-to-door (similar term)|nonstop (similar term)|point-blank (similar term)|straightforward (similar term)|undeviating (similar term)|unswerving (similar term)|through (similar term)|straight (related term)|indirect (antonym)
+(adj)|unmediated|immediate (similar term)
+(adj)|bluff (similar term)|blunt (similar term)|candid (similar term)|forthright (similar term)|frank (similar term)|free-spoken (similar term)|outspoken (similar term)|plainspoken (similar term)|point-blank (similar term)|straight-from-the-shoulder (similar term)|flat-footed (similar term)|man-to-man (similar term)|no-nonsense (similar term)|plain (similar term)|unvarnished (similar term)|pointed (similar term)|square (similar term)|straightforward (similar term)|straight (similar term)|upfront (similar term)|honest (related term)|honorable (related term)|indirect (antonym)
+(adj)|lineal|matrilineal (similar term)|matrilinear (similar term)|patrilineal (similar term)|patrilinear (similar term)|unilateral (similar term)|unilateralist (similar term)|related (related term)|collateral (antonym)
+(adj)|retrograde (antonym)
+(adj)|inverse (antonym)
+(adj)|alternating (antonym)
+(adj)|primary (similar term)
+(adj)|verbatim|exact (similar term)
+(adj)|absolute (similar term)
+(verb)|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+(verb)|target|aim|place|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|lead|take|conduct|guide
+(verb)|send|move (generic term)|displace (generic term)|send away (related term)|send away (related term)
+(verb)|aim|take|train|take aim|position (generic term)
+(verb)|conduct|lead|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|instruct (generic term)|apprise (generic term)|apprize (generic term)
+(verb)|calculate|aim|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+(verb)|steer|maneuver|manoeuver|manoeuvre|point|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|address|label (generic term)
+(verb)|mastermind|engineer|organize|organise|orchestrate|plan (generic term)
+(adv)|directly|straight
+direct-grant school|1
+(noun)|school (generic term)
+direct action|1
+(noun)|protest (generic term)|objection (generic term)|dissent (generic term)
+direct antonym|1
+(noun)|antonym (generic term)|opposite word (generic term)|opposite (generic term)
+direct contrast|1
+(noun)|contrast|opposition (generic term)|oppositeness (generic term)
+direct correlation|1
+(noun)|positive correlation|correlation (generic term)|correlational statistics (generic term)
+direct current|1
+(noun)|DC|electricity (generic term)|electrical energy (generic term)|alternating current (antonym)
+direct discourse|1
+(noun)|direct quotation|report (generic term)|account (generic term)|indirect discourse (antonym)
+direct dye|1
+(noun)|substantive dye|dye (generic term)|dyestuff (generic term)
+direct evidence|1
+(noun)|evidence (generic term)|circumstantial evidence (antonym)
+direct examination|1
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+direct fire|1
+(noun)|fire (generic term)|firing (generic term)
+direct flight|1
+(noun)|flight (generic term)
+direct loan|1
+(noun)|loan (generic term)
+direct mail|1
+(noun)|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+direct mailer|1
+(noun)|distributor (generic term)
+direct marketing|1
+(noun)|marketing (generic term)
+direct object|1
+(noun)|object of the verb|object (generic term)
+direct primary|1
+(noun)|primary (generic term)|primary election (generic term)
+direct quotation|1
+(noun)|direct discourse|report (generic term)|account (generic term)|indirect discourse (antonym)
+direct sum|1
+(noun)|union (generic term)|sum (generic term)|join (generic term)
+direct support|1
+(noun)|mission (generic term)|military mission (generic term)
+direct supporting fire|1
+(noun)|supporting fire (generic term)
+direct tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+direct tide|1
+(noun)|high tide (generic term)|high water (generic term)|highwater (generic term)
+direct transmission|1
+(noun)|transmission mechanism (generic term)
+direct trust|1
+(noun)|express trust|trust (generic term)
+directed|2
+(adj)|oriented (similar term)|orientated (similar term)
+(adj)|manageable (similar term)
+directed verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)
+directing|1
+(adj)|directional|directive|guiding|leading (similar term)
+direction|9
+(noun)|way|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|position (generic term)|spatial relation (generic term)
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|guidance|counsel|counseling|counselling|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|management|social control (generic term)
+(noun)|instruction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|steering|guidance|control (generic term)
+(noun)|commission|charge|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|focus|focusing|focussing|focal point|centering|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+direction finder|1
+(noun)|receiver (generic term)|receiving system (generic term)
+directional|3
+(adj)|position|spatial relation (related term)|omnidirectional (antonym)
+(adj)|social control (related term)
+(adj)|directing|directive|guiding|leading (similar term)
+directional antenna|1
+(noun)|antenna (generic term)|aerial (generic term)|transmitting aerial (generic term)
+directional microphone|1
+(noun)|microphone (generic term)|mike (generic term)
+directionality|2
+(noun)|directivity|radial asymmetry (generic term)
+(noun)|spatial property (generic term)|spatiality (generic term)
+directionless|1
+(adj)|adrift|afloat|aimless|planless|rudderless|undirected|purposeless (similar term)
+directive|2
+(adj)|directing|directional|guiding|leading (similar term)
+(noun)|pronouncement (generic term)|dictum (generic term)|say-so (generic term)
+directiveness|1
+(noun)|directivity|quality (generic term)
+directivity|2
+(noun)|directionality|radial asymmetry (generic term)
+(noun)|directiveness|quality (generic term)
+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|indirectly (antonym)
+directness|2
+(noun)|straightness|characteristic (generic term)|indirectness (antonym)
+(noun)|candor|candour|candidness|frankness|forthrightness|honesty (generic term)|honestness (generic term)
+director|5
+(noun)|manager|managing director|administrator (generic term)|decision maker (generic term)
+(noun)|committee member (generic term)
+(noun)|theater director|theatre director|supervisor (generic term)
+(noun)|film director|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|conductor|music director|musician (generic term)
+director-stockholder relation|1
+(noun)|fiduciary relation (generic term)
+director of central intelligence|1
+(noun)|Director of Central Intelligence|DCI|administrator (generic term)|executive (generic term)
+director of research|1
+(noun)|research director|supervisor (generic term)
+directorate|1
+(noun)|board of directors|board (generic term)
+directorate for inter-services intelligence|1
+(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency (generic term)
+directorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+directory|2
+(noun)|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+(noun)|list (generic term)|listing (generic term)
+direful|1
+(adj)|awful|dire|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+dirge|1
+(noun)|coronach|lament|requiem|threnody|song (generic term)|vocal (generic term)
+dirham|6
+(noun)|Qatari dirham|Qatari monetary unit (generic term)
+(noun)|United Arab Emirate dirham|United Arab Emirate monetary unit (generic term)
+(noun)|Moroccan dirham|Moroccan monetary unit (generic term)
+(noun)|Tunisian dirham|Tunisian monetary unit (generic term)
+(noun)|Libyan dirham|Libyan monetary unit (generic term)
+(noun)|Kuwaiti dirham|Kuwaiti monetary unit (generic term)
+dirigible|2
+(adj)|steerable|manageable (similar term)
+(noun)|airship|lighter-than-air craft (generic term)
+diriment impediment|1
+(noun)|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+dirk|1
+(noun)|dagger (generic term)|sticker (generic term)
+dirndl|2
+(noun)|gathered skirt (generic term)
+(noun)|dress (generic term)|frock (generic term)
+dirt|5
+(adj)|ungraded|unimproved (similar term)
+(noun)|soil|earth (generic term)|ground (generic term)
+(noun)|filth|grime|soil|stain|grease|grunge|dirtiness (generic term)|uncleanness (generic term)
+(noun)|crap|shit|shite|poop|turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(noun)|scandal|malicious gossip|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+dirt ball|1
+(noun)|worm|louse|insect|unpleasant person (generic term)|disagreeable person (generic term)
+dirt bike|1
+(noun)|trail bike|scrambler|motorcycle (generic term)|bike (generic term)
+dirt cheap|1
+(adj)|cheap (similar term)|inexpensive (similar term)
+dirt track|1
+(noun)|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+dirtily|1
+(adv)|filthily
+dirtiness|3
+(noun)|uncleanness|sanitary condition (generic term)|cleanness (antonym)
+(noun)|impurity (generic term)|impureness (generic term)
+(noun)|smuttiness|obscenity (generic term)|lewdness (generic term)|bawdiness (generic term)|salaciousness (generic term)|salacity (generic term)
+dirty|13
+(adj)|soiled|unclean|Augean (similar term)|bedraggled (similar term)|draggled (similar term)|befouled (similar term)|fouled (similar term)|begrimed (similar term)|dingy (similar term)|grimy (similar term)|grubby (similar term)|grungy (similar term)|raunchy (similar term)|bespattered (similar term)|spattered (similar term)|besplashed (similar term)|splashed (similar term)|black (similar term)|smutty (similar term)|buggy (similar term)|cobwebby (similar term)|dirty-faced (similar term)|dusty (similar term)|dust-covered (similar term)|fecal (similar term)|faecal (similar term)|feculent (similar term)|filthy (similar term)|foul (similar term)|nasty (similar term)|flyblown (similar term)|squalid (similar term)|sordid (similar term)|greasy (similar term)|oily (similar term)|lousy (similar term)|maculate (similar term)|mucky (similar term)|muddy (similar term)|ratty (similar term)|scummy (similar term)|smudgy (similar term)|snotty (similar term)|snot-nosed (similar term)|sooty (similar term)|travel-soiled (similar term)|travel-stained (similar term)|uncleanly (similar term)|unswept (similar term)|unwashed (similar term)|unclean (related term)|impure (related term)|untidy (related term)|clean (antonym)
+(adj)|bawdy (similar term)|off-color (similar term)|ribald (similar term)|blasphemous (similar term)|blue (similar term)|profane (similar term)|dirty-minded (similar term)|filthy (similar term)|foul (similar term)|nasty (similar term)|smutty (similar term)|foul-mouthed (similar term)|foul-spoken (similar term)|lewd (similar term)|obscene (similar term)|raunchy (similar term)|salacious (similar term)|scabrous (similar term)|scatological (similar term)|indecent (related term)|clean (antonym)
+(adj)|filthy|lousy|nasty (similar term)|awful (similar term)
+(adj)|contaminating|clean (antonym)
+(adj)|contaminated|pestiferous|septic (similar term)|infected (similar term)
+(adj)|dingy|muddied|muddy|impure (similar term)
+(adj)|foul|marked-up|illegible (similar term)
+(adj)|ill-gotten|illegal (similar term)
+(adj)|hostile (similar term)
+(adj)|cheating|foul|unsporting|unsportsmanlike|unfair (similar term)|unjust (similar term)
+(adj)|sordid|corrupt (similar term)
+(adj)|stormy (similar term)
+(verb)|soil|begrime|grime|colly|bemire|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+dirty-faced|1
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+dirty-minded|1
+(adj)|dirty (similar term)
+dirty bomb|1
+(noun)|atom bomb (generic term)|atomic bomb (generic term)|A-bomb (generic term)|fission bomb (generic term)|plutonium bomb (generic term)
+dirty dog|1
+(noun)|rotter|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+dirty joke|1
+(noun)|dirty story|blue joke|blue story|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+dirty laundry|1
+(noun)|dirty linen|personal business (generic term)|personal matters (generic term)|affairs (generic term)
+dirty linen|1
+(noun)|dirty laundry|personal business (generic term)|personal matters (generic term)|affairs (generic term)
+dirty money|1
+(noun)|loot|booty|pillage|plunder|prize|swag|stolen property (generic term)
+dirty old man|1
+(noun)|middle-aged man (generic term)
+dirty pool|1
+(noun)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+dirty story|1
+(noun)|dirty joke|blue joke|blue story|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+dirty trick|1
+(noun)|antic (generic term)|joke (generic term)|prank (generic term)|trick (generic term)|caper (generic term)|put-on (generic term)
+dirty tricks|1
+(noun)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+dirty war|1
+(noun)|offense (generic term)|offence (generic term)|offensive (generic term)
+dirty word|2
+(noun)|obscenity|smut|vulgarism|filth|profanity (generic term)
+(noun)|word (generic term)
+dirtying|1
+(noun)|soiling|soilure|change of state (generic term)
+dis|1
+(noun)|Dis|Orcus|Roman deity (generic term)
+disa|2
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Defense Information Systems Agency|DISA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+disability|1
+(noun)|disablement|handicap|impairment|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+disability benefit|1
+(noun)|benefit (generic term)
+disability check|1
+(noun)|disability payment|regular payment (generic term)
+disability insurance|1
+(noun)|social insurance (generic term)
+disability of walking|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+disability payment|1
+(noun)|disability check|regular payment (generic term)
+disable|2
+(verb)|disenable|incapacitate|change (generic term)|alter (generic term)|modify (generic term)|enable (antonym)
+(verb)|invalid|incapacitate|handicap|injure (generic term)|wound (generic term)
+disabled|3
+(adj)|handicapped|unfit (similar term)
+(adj)|hors de combat|out of action|injured (similar term)
+(noun)|handicapped|people (generic term)
+disablement|1
+(noun)|disability|handicap|impairment|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+disabling|2
+(adj)|crippling|incapacitating|unhealthful (similar term)
+(adj)|disqualifying|enabling (antonym)
+disabuse|1
+(verb)|inform (generic term)
+disabused|1
+(adj)|undeceived|disenchanted (similar term)
+disaccharidase|1
+(noun)|enzyme (generic term)
+disaccharide|1
+(noun)|oligosaccharide (generic term)
+disaccord|1
+(verb)|disagree|discord|be (generic term)|agree (antonym)
+disadvantage|2
+(noun)|liability (generic term)|advantage (antonym)
+(verb)|disfavor|disfavour|discriminate (generic term)|separate (generic term)|single out (generic term)|advantage (antonym)
+disadvantaged|1
+(adj)|deprived|underprivileged (similar term)
+disadvantageous|1
+(adj)|harmful|minus (similar term)|negative (similar term)|inexpedient (related term)|harmful (related term)|inopportune (related term)|advantageous (antonym)
+disadvantageously|1
+(adv)|badly|advantageously (antonym)|well (antonym)
+disaffect|1
+(verb)|estrange|alienate|alien|change (generic term)|alter (generic term)|modify (generic term)
+disaffected|1
+(adj)|ill-affected|malcontent|rebellious|discontented (similar term)|discontent (similar term)
+disaffection|2
+(noun)|alienation|estrangement|dislike (generic term)
+(noun)|disloyalty (generic term)
+disaffirmation|1
+(noun)|denial|assertion (generic term)|averment (generic term)|asseveration (generic term)
+disafforest|1
+(verb)|deforest|disforest|clear (generic term)
+disagree|2
+(verb)|differ|dissent|take issue|agree (antonym)
+(verb)|disaccord|discord|be (generic term)|agree (antonym)
+disagree with|1
+(verb)|afflict (generic term)|trouble (generic term)|ail (generic term)|pain (generic term)
+disagreeable|2
+(adj)|annoying (similar term)|bothersome (similar term)|galling (similar term)|irritating (similar term)|nettlesome (similar term)|pesky (similar term)|pestering (similar term)|pestiferous (similar term)|plaguy (similar term)|plaguey (similar term)|teasing (similar term)|vexatious (similar term)|vexing (similar term)|harsh (similar term)|abrasive (similar term)|nerve-racking (similar term)|nerve-wracking (similar term)|stressful (similar term)|trying (similar term)|unsweet (similar term)|ill-natured (related term)|agreeable (antonym)
+(adj)|unsympathetic|uncongenial (similar term)|incompatible (similar term)
+disagreeable chore|1
+(noun)|disagreeable task|job (generic term)|task (generic term)|chore (generic term)
+disagreeable person|1
+(noun)|unpleasant person|unwelcome person (generic term)|persona non grata (generic term)
+disagreeable task|1
+(noun)|disagreeable chore|job (generic term)|task (generic term)|chore (generic term)
+disagreeable woman|1
+(noun)|unpleasant woman|unpleasant person (generic term)|disagreeable person (generic term)
+disagreeableness|2
+(noun)|pleasantness (generic term)|sweetness (generic term)|agreeableness (antonym)
+(noun)|disposition (generic term)|temperament (generic term)|agreeableness (antonym)
+disagreeably|1
+(adv)|agreeably (antonym)
+disagreement|3
+(noun)|dissension|dissonance|conflict (generic term)|agreement (antonym)
+(noun)|discrepancy|divergence|variance|difference (generic term)
+(noun)|speech act (generic term)|agreement (antonym)
+disallow|1
+(verb)|forbid|prohibit|interdict|proscribe|veto|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+disambiguate|1
+(verb)|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+disambiguation|1
+(noun)|clarification (generic term)|elucidation (generic term)|illumination (generic term)
+disambiguator|1
+(noun)|natural language processor (generic term)|natural language processing application (generic term)
+disappear|4
+(verb)|vanish|go away|appear (antonym)
+(verb)|vanish|go away|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|vanish|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)|appear (antonym)
+(verb)|melt|weaken (generic term)
+disappearance|4
+(noun)|disappearing|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)|appearance (antonym)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|appearance (antonym)
+(noun)|fade|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+disappearing|2
+(adj)|vanishing
+(noun)|disappearance|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)|appearance (antonym)
+disappoint|1
+(verb)|let down|thwart (generic term)|queer (generic term)|spoil (generic term)|scotch (generic term)|foil (generic term)|cross (generic term)|frustrate (generic term)|baffle (generic term)|bilk (generic term)
+disappointed|1
+(adj)|defeated|discomfited|foiled|frustrated|thwarted|unsuccessful (similar term)
+disappointing|1
+(adj)|dissatisfactory|unsatisfying|unsatisfactory (similar term)
+disappointment|2
+(noun)|letdown|dissatisfaction (generic term)
+(noun)|dashing hopes|failure (generic term)
+disapprobation|1
+(noun)|condemnation|disapproval (generic term)|approbation (antonym)
+disapproval|4
+(noun)|dislike (generic term)|approval (antonym)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)|approval (antonym)
+(noun)|disfavor|disfavour|dislike|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|judgment (generic term)|judgement (generic term)|assessment (generic term)|approval (antonym)
+disapprove|2
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|approve (antonym)
+(verb)|reject|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|approve (antonym)
+disapproved|1
+(adj)|censured (similar term)|condemned (similar term)|marginal (similar term)|rejected (similar term)|approved (antonym)
+disapproving|1
+(adj)|unfavorable (similar term)|unfavourable (similar term)
+disapprovingly|1
+(adv)|approvingly (antonym)
+disarm|3
+(verb)|demilitarize|demilitarise|arm (antonym)
+(verb)|convert (generic term)|win over (generic term)|convince (generic term)
+(verb)|unarm|deprive (generic term)|strip (generic term)|divest (generic term)
+disarmament|1
+(noun)|disarming|demobilization (generic term)|demobilisation (generic term)|armament (antonym)|arming (antonym)
+disarmer|1
+(noun)|pacifist|pacificist|adult (generic term)|grownup (generic term)
+disarming|3
+(adj)|pleasing (similar term)
+(adj)|unprovocative (similar term)|unprovoking (similar term)
+(noun)|disarmament|demobilization (generic term)|demobilisation (generic term)|armament (antonym)|arming (antonym)
+disarrange|2
+(verb)|move (generic term)|displace (generic term)|arrange (antonym)
+(verb)|disorder (generic term)|disarray (generic term)
+disarranged|1
+(adj)|disarrayed (similar term)|disturbed (similar term)|misplaced (similar term)|arranged (antonym)
+disarrangement|1
+(noun)|disorganization|disorganisation|disorderliness (generic term)|disorder (generic term)
+disarray|3
+(noun)|confusion|mental confusion|confusedness|muddiness|cognitive state (generic term)|state of mind (generic term)
+(noun)|disorderliness|untidiness (generic term)|messiness (generic term)
+(verb)|disorder|change (generic term)|alter (generic term)|modify (generic term)|order (antonym)
+disarrayed|1
+(adj)|disarranged (similar term)
+disarticulate|1
+(verb)|disjoint|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+disassemble|1
+(verb)|dismantle|take apart|break up|break apart|destroy (generic term)|destruct (generic term)|assemble (antonym)
+disassembly|1
+(noun)|dismantling|dismantlement|activity (generic term)|assembly (antonym)|assembly (antonym)
+disassociate|1
+(verb)|dissociate|divorce|disunite|disjoint|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+disassociation|2
+(noun)|separation (generic term)|association (antonym)
+(noun)|dissociation|psychological state (generic term)|mental state (generic term)
+disassortative mating|1
+(noun)|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)|assortative mating (antonym)
+disaster|3
+(noun)|catastrophe|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|calamity|catastrophe|tragedy|cataclysm|misfortune (generic term)|bad luck (generic term)
+(noun)|destruction (generic term)|devastation (generic term)
+disaster area|1
+(noun)|area (generic term)|country (generic term)
+disastrous|1
+(adj)|black|calamitous|fatal|fateful|unfortunate (similar term)
+disavow|1
+(verb)|deny (generic term)|avow (antonym)
+disavowable|1
+(adj)|deniable (similar term)
+disavowal|1
+(noun)|disclaimer|denial (generic term)
+disband|2
+(verb)|disperse (generic term)|dissipate (generic term)|dispel (generic term)|break up (generic term)|scatter (generic term)
+(verb)|dissolve|break up (generic term)
+disbandment|1
+(noun)|group action (generic term)
+disbar|1
+(verb)|disqualify (generic term)
+disbarment|1
+(noun)|banishment (generic term)|proscription (generic term)
+disbelief|2
+(noun)|incredulity|skepticism|mental rejection|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|unbelief|content (generic term)|cognitive content (generic term)|mental object (generic term)|belief (antonym)
+disbelieve|1
+(verb)|discredit|reject (generic term)|believe (antonym)
+disbeliever|1
+(noun)|nonbeliever|unbeliever|nonreligious person (generic term)
+disbelieving|1
+(adj)|skeptical|sceptical|unbelieving|incredulous (similar term)
+disbelievingly|1
+(adv)|incredulously|unbelievingly|believingly (antonym)|credulously (antonym)
+disbud|2
+(verb)|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+(verb)|dehorn (generic term)
+disburden|1
+(verb)|unburden|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|burden (antonym)
+disbursal|2
+(noun)|expense|disbursement|cost (generic term)
+(noun)|spending|disbursement|outlay|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+disburse|1
+(verb)|pay out|pay (generic term)
+disbursement|2
+(noun)|expense|disbursal|cost (generic term)
+(noun)|spending|disbursal|outlay|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+disburser|1
+(noun)|spender|expender|customer (generic term)|client (generic term)
+disc|4
+(noun)|phonograph record|phonograph recording|record|disk|platter|sound recording (generic term)|audio recording (generic term)
+(noun)|disk|saucer|round shape (generic term)
+(noun)|magnetic disk|magnetic disc|disk|memory device (generic term)|storage device (generic term)
+(noun)|disk|plate (generic term)|circle (generic term)|round (generic term)
+disc-jockey|1
+(verb)|disk-jockey|DJ|comment (generic term)
+disc-shaped|1
+(adj)|discoid|discoidal|disklike|disclike|disk-shaped|round (similar term)|circular (similar term)
+disc brake|1
+(noun)|disk brake|hydraulic brake (generic term)|hydraulic brakes (generic term)
+disc drive|1
+(noun)|disk drive|hard drive|Winchester drive|drive (generic term)
+disc harrow|1
+(noun)|disk harrow|harrow (generic term)
+disc jockey|1
+(noun)|disk jockey|dj|broadcaster (generic term)
+disc pack|1
+(noun)|disk pack|pack (generic term)
+disc space|1
+(noun)|disk space|space (generic term)
+discalceate|1
+(adj)|discalced|unshod|calced (antonym)
+discalced|1
+(adj)|discalceate|unshod|calced (antonym)
+discant|1
+(noun)|descant|accompaniment (generic term)|musical accompaniment (generic term)|backup (generic term)|support (generic term)
+discard|4
+(noun)|object (generic term)|physical object (generic term)
+(noun)|abandonment (generic term)
+(noun)|throwing away|abandonment (generic term)
+(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 (generic term)|remove (generic term)
+discarded|1
+(adj)|cast-off|throwaway|thrown-away|unwanted (similar term)
+discase|1
+(verb)|undress|uncase|unclothe|strip|strip down|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+disceptation|1
+(noun)|controversy|contention|contestation|disputation|tilt|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+discern|1
+(verb)|recognize|recognise|distinguish|pick out|make out|tell apart
+discernability|1
+(noun)|legibility|distinctness (generic term)|sharpness (generic term)
+discernable|1
+(adj)|discernible|indiscernible (antonym)
+discernible|3
+(adj)|discernable|indiscernible (antonym)
+(adj)|perceptible (similar term)
+(adj)|evident|observable|noticeable (similar term)
+discerning|4
+(adj)|clear (similar term)|percipient (similar term)|clear-eyed (similar term)|clear-sighted (similar term)|perspicacious (similar term)|prescient (similar term)|critical (related term)|discriminating (related term)|undiscerning (antonym)
+(adj)|discreet|tactful (similar term)
+(adj)|apprehensive|perceptive (similar term)
+(adj)|discriminating (similar term)
+discernment|5
+(noun)|understanding|apprehension|savvy|knowing (generic term)
+(noun)|taste|appreciation|perceptiveness|discrimination (generic term)|secernment (generic term)
+(noun)|perceptiveness|perception (generic term)
+(noun)|sagacity|sagaciousness|judgment|judgement|wisdom (generic term)|sapience (generic term)
+(noun)|discretion|wisdom (generic term)|wiseness (generic term)
+discerp|2
+(verb)|dismember|take apart|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|sever|lop|cut (generic term)
+discharge|20
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|venting|emission (generic term)|emanation (generic term)
+(noun)|emission|material (generic term)|stuff (generic term)
+(noun)|emission|expelling|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|spark|arc|electric arc|electric discharge|electrical conduction (generic term)
+(noun)|outpouring|run|flow (generic term)|flowing (generic term)
+(noun)|dismissal|dismission|firing|liberation|release|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|release|waiver|relinquishment (generic term)|relinquishing (generic term)
+(noun)|firing|firing off|shooting (generic term)|shot (generic term)
+(verb)|dispatch|complete|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|spread (generic term)|distribute (generic term)
+(verb)|expel|eject|release
+(verb)|free
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|charge (antonym)
+(verb)|fire|go off
+(verb)|acquit|assoil|clear|exonerate|exculpate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+(verb)|drop|drop off|set down|put down|unload|deliver (generic term)
+(verb)|fire
+(verb)|muster out|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)|enlist (antonym)
+(verb)|empty|change state (generic term)|turn (generic term)|fill (antonym)
+discharge lamp|1
+(noun)|lamp (generic term)
+discharge pipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+discharged|2
+(adj)|released|free (similar term)
+(adj)|dismissed|fired|laid-off|pink-slipped|unemployed (similar term)
+disciform|1
+(adj)|rounded (similar term)
+discina|1
+(noun)|false morel (generic term)
+discina macrospora|1
+(noun)|Discina macrospora|discina (generic term)
+disciotis venosa|1
+(noun)|Disciotis venosa|cup morel|morel (generic term)
+disciple|1
+(noun)|adherent|follower (generic term)
+disciples of christ|1
+(noun)|Christian Church|Disciples of Christ|Protestant denomination (generic term)
+discipleship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+disciplinal|1
+(adj)|corrective|disciplinary|nonindulgent (similar term)|strict (similar term)
+disciplinarian|1
+(noun)|martinet|moralist|authoritarian (generic term)|dictator (generic term)
+disciplinary|3
+(adj)|trait (related term)
+(adj)|knowledge domain|knowledge base (related term)
+(adj)|corrective|disciplinal|nonindulgent (similar term)|strict (similar term)
+discipline|7
+(noun)|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+(noun)|system (generic term)|system of rules (generic term)
+(noun)|trait (generic term)|indiscipline (antonym)
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+(noun)|correction|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(verb)|train|check|condition|develop (generic term)|make grow (generic term)
+(verb)|correct|sort out|punish (generic term)|penalize (generic term)|penalise (generic term)
+disciplined|3
+(adj)|controlled (similar term)
+(adj)|trained (similar term)
+(adj)|chastised|corrected|punished (similar term)
+disclaim|2
+(verb)|foreswear (generic term)|renounce (generic term)|quit (generic term)|relinquish (generic term)|claim (antonym)
+(verb)|deny (generic term)|claim (antonym)
+disclaimer|2
+(noun)|repudiation (generic term)|renunciation (generic term)
+(noun)|disavowal|denial (generic term)
+disclike|1
+(adj)|discoid|discoidal|disklike|disk-shaped|disc-shaped|round (similar term)|circular (similar term)
+disclose|2
+(verb)|unwrap|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out|tell (generic term)
+(verb)|expose|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+disclosed|2
+(adj)|unveiled (similar term)
+(adj)|discovered|revealed|unconcealed (similar term)
+disclosing|1
+(adj)|revealing (similar term)
+disclosure|1
+(noun)|revelation|revealing|speech act (generic term)
+disco|3
+(noun)|disco music|popular music (generic term)|popular music genre (generic term)
+(noun)|discotheque|ballroom (generic term)|dance hall (generic term)|dance palace (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+disco biscuit|1
+(noun)|Adam|ecstasy|XTC|go|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+disco music|1
+(noun)|disco|popular music (generic term)|popular music genre (generic term)
+discocephali|1
+(noun)|Discocephali|order Discocephali|animal order (generic term)
+discoglossidae|1
+(noun)|Discoglossidae|family Discoglossidae|amphibian family (generic term)
+discoid|1
+(adj)|discoidal|disklike|disclike|disk-shaped|disc-shaped|round (similar term)|circular (similar term)
+discoid lupus erythematosus|1
+(noun)|DLE|lupus (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+discoidal|1
+(adj)|discoid|disklike|disclike|disk-shaped|disc-shaped|round (similar term)|circular (similar term)
+discolor|3
+(verb)|change (generic term)|color (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|discolour|colour|color|change (generic term)
+discoloration|2
+(noun)|stain|discolouration|appearance (generic term)|visual aspect (generic term)
+(noun)|discolouration|change of color (generic term)
+discolored|1
+(adj)|discoloured|stained (similar term)
+discolorise|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolourise|discolor (generic term)
+discolorize|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolourise|discolorise|discolor (generic term)
+discolour|1
+(verb)|discolor|colour|color|change (generic term)
+discolouration|2
+(noun)|stain|discoloration|appearance (generic term)|visual aspect (generic term)
+(noun)|discoloration|change of color (generic term)
+discoloured|1
+(adj)|discolored|stained (similar term)
+discolourise|1
+(verb)|bleach|bleach out|decolor|decolour|decolorize|decolourize|decolorise|decolourise|discolorize|discolorise|discolor (generic term)
+discombobulate|2
+(verb)|bewilder|bemuse|throw|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|confuse|throw|fox|befuddle|fuddle|bedevil|confound|be (generic term)
+discombobulated|1
+(adj)|disconcerted|discomposed (similar term)
+discombobulation|1
+(noun)|confusion|embarrassment (generic term)
+discomfit|1
+(verb)|upset|discompose|untune|disconcert|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+discomfited|3
+(adj)|defeated|disappointed|foiled|frustrated|thwarted|unsuccessful (similar term)
+(adj)|embarrassed|uncomfortable (similar term)
+(noun)|defeated|people (generic term)
+discomfiture|1
+(noun)|discomposure|disconcertion|disconcertment|embarrassment (generic term)|anxiety (generic term)
+discomfort|2
+(noun)|uncomfortableness|condition (generic term)|status (generic term)|comfort (antonym)
+(noun)|soreness|irritation|suffering (generic term)|hurt (generic term)
+discommode|1
+(verb)|trouble|put out|inconvenience|disoblige|incommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+discompose|1
+(verb)|upset|untune|disconcert|discomfit|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+discomposed|1
+(adj)|abashed (similar term)|chagrined (similar term)|embarrassed (similar term)|blushful (similar term)|blushing (similar term)|red-faced (similar term)|bothered (similar term)|daunted (similar term)|fazed (similar term)|discombobulated (similar term)|disconcerted (similar term)|flustered (similar term)|hot and bothered (similar term)|perturbed (similar term)|rattled (similar term)|unstrung (similar term)|agitated (related term)|undignified (related term)|composed (antonym)
+discomposure|2
+(noun)|discomfiture|disconcertion|disconcertment|embarrassment (generic term)|anxiety (generic term)
+(noun)|disposition (generic term)|temperament (generic term)|composure (antonym)
+discomycete|1
+(noun)|cup fungus|ascomycete (generic term)|ascomycetous fungus (generic term)
+discomycetes|1
+(noun)|Discomycetes|subclass Discomycetes|class (generic term)
+discomycetous|1
+(adj)|ascomycete|ascomycetous fungus (related term)
+disconcert|2
+(verb)|confuse|flurry|put off|embarrass (generic term)|abash (generic term)
+(verb)|upset|discompose|untune|discomfit|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+disconcerted|1
+(adj)|discombobulated|discomposed (similar term)
+disconcerting|1
+(adj)|upsetting|displeasing (similar term)
+disconcertion|1
+(noun)|discomfiture|discomposure|disconcertment|embarrassment (generic term)|anxiety (generic term)
+disconcertment|1
+(noun)|discomfiture|discomposure|disconcertion|embarrassment (generic term)|anxiety (generic term)
+disconfirming|2
+(adj)|negative|Gram-negative (similar term)|positive (antonym)
+(adj)|invalidating|unsupportive (similar term)
+disconnect|3
+(noun)|gulf|disconnection|disparity (generic term)
+(verb)|unplug|undo (generic term)|plug in (antonym)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|connect (antonym)
+disconnected|5
+(adj)|staccato|abrupt (similar term)|disconnected (similar term)|legato (antonym)
+(adj)|disunited|fragmented|split|divided (similar term)
+(adj)|abrupt|staccato (similar term)|disconnected (similar term)
+(adj)|off (similar term)
+(adj)|confused|disjointed|disordered|garbled|illogical|scattered|unconnected|incoherent (similar term)
+disconnectedness|1
+(noun)|disjunction|disjuncture|disconnection|separation (generic term)|connectedness (antonym)
+disconnection|3
+(noun)|disjunction|disjuncture|disconnectedness|separation (generic term)|connectedness (antonym)
+(noun)|gulf|disconnect|disparity (generic term)
+(noun)|disjunction|separation (generic term)
+disconsolate|2
+(adj)|inconsolable|unconsolable|desolate (similar term)|consolable (antonym)
+(adj)|blue|dark|depressing|dingy|dismal|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+disconsolately|1
+(adv)|desolately
+disconsolateness|1
+(noun)|despondency|despondence|heartsickness|depression (generic term)
+discontent|3
+(adj)|discontented|disaffected (similar term)|ill-affected (similar term)|malcontent (similar term)|rebellious (similar term)|disgruntled (similar term)|dissatisfied (similar term)|restless (similar term)|ungratified (similar term)|unsatisfied (similar term)|displeased (related term)|unhappy (related term)|contented (antonym)
+(noun)|discontentment|discontentedness|longing (generic term)|yearning (generic term)|hungriness (generic term)|contentment (antonym)
+(verb)|dissatisfy (generic term)|content (antonym)
+discontented|1
+(adj)|discontent|disaffected (similar term)|ill-affected (similar term)|malcontent (similar term)|rebellious (similar term)|disgruntled (similar term)|dissatisfied (similar term)|restless (similar term)|ungratified (similar term)|unsatisfied (similar term)|displeased (related term)|unhappy (related term)|contented (antonym)
+discontentedness|1
+(noun)|discontentment|discontent|longing (generic term)|yearning (generic term)|hungriness (generic term)|contentment (antonym)
+discontentment|1
+(noun)|discontent|discontentedness|longing (generic term)|yearning (generic term)|hungriness (generic term)|contentment (antonym)
+discontinuance|1
+(noun)|discontinuation|termination (generic term)|ending (generic term)|conclusion (generic term)|continuation (antonym)|continuance (antonym)
+discontinuation|1
+(noun)|discontinuance|termination (generic term)|ending (generic term)|conclusion (generic term)|continuation (antonym)|continuance (antonym)
+discontinue|3
+(verb)|stop|cease|give up|quit|lay off|continue (antonym)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)|continue (antonym)
+(verb)|break|break off|stop|end (generic term)|terminate (generic term)
+discontinued|1
+(adj)|interrupted (similar term)|out of print (similar term)|continued (antonym)
+discontinuity|1
+(noun)|separation (generic term)|continuity (antonym)
+discontinuous|2
+(adj)|continuous (antonym)
+(adj)|noncontinuous|disrupted (similar term)|disjunct (similar term)|sporadic (related term)|broken (related term)|continuous (antonym)
+discord|5
+(noun)|strife|disorder (generic term)
+(noun)|dissension|disagreement (generic term)
+(noun)|discordance|dissonance (generic term)
+(noun)|discordance|strife (generic term)
+(verb)|disagree|disaccord|be (generic term)|agree (antonym)
+discordance|2
+(noun)|discord|dissonance (generic term)
+(noun)|discord|strife (generic term)
+discordant|2
+(adj)|at variance (similar term)|discrepant (similar term)|dissentious (similar term)|divisive (similar term)|factious (similar term)|accordant (antonym)
+(adj)|disharmonious|dissonant|inharmonic|inharmonious (similar term)|unharmonious (similar term)
+discordantly|1
+(adv)|unharmoniously
+discorporate|1
+(adj)|unembodied|bodiless|unbodied|disembodied|incorporeal (similar term)|immaterial (similar term)
+discotheque|1
+(noun)|disco|ballroom (generic term)|dance hall (generic term)|dance palace (generic term)
+discount|6
+(noun)|price reduction|deduction|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|discount rate|bank discount|interest rate (generic term)|rate of interest (generic term)
+(noun)|rebate|refund (generic term)
+(noun)|deduction|allowance (generic term)|adjustment (generic term)
+(verb)|dismiss|disregard|brush aside|brush off|push aside|ignore|reject (generic term)
+(verb)|mark down (generic term)
+discount business|1
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+discount chain|1
+(noun)|chain (generic term)
+discount house|1
+(noun)|discount store|discounter|wholesale house|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+discount rate|2
+(noun)|interest rate (generic term)|rate of interest (generic term)
+(noun)|discount|bank discount|interest rate (generic term)|rate of interest (generic term)
+discount store|1
+(noun)|discount house|discounter|wholesale house|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+discountenance|2
+(verb)|shame (generic term)
+(verb)|disapprove (generic term)
+discounter|1
+(noun)|discount house|discount store|wholesale house|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+discourage|3
+(verb)|deter|disapprove (generic term)|reject (generic term)
+(verb)|encourage (antonym)
+(verb)|warn|admonish|monish|rede (generic term)|advise (generic term)|counsel (generic term)
+discouraged|2
+(adj)|demoralized|demoralised|disheartened|pessimistic (similar term)
+(adj)|irresolute (similar term)
+discouragement|3
+(noun)|disheartenment|dismay|despair (generic term)
+(noun)|disapproval (generic term)|encouragement (antonym)
+(noun)|deterrence (generic term)
+discouraging|2
+(adj)|daunting (similar term)|intimidating (similar term)|demoralizing (similar term)|demoralising (similar term)|disheartening (similar term)|dispiriting (similar term)|frustrating (similar term)|unencouraging (similar term)|dissuasive (related term)|hopeless (related term)|unhelpful (related term)|encouraging (antonym)
+(adj)|dissuasive (similar term)
+discouragingly|1
+(adv)|encouragingly (antonym)
+discourse|6
+(noun)|language unit (generic term)|linguistic unit (generic term)
+(noun)|sermon|preaching|address (generic term)|speech (generic term)
+(noun)|discussion|treatment|communication (generic term)|communicating (generic term)
+(verb)|talk about|discuss|cover (generic term)|treat (generic term)|handle (generic term)|plow (generic term)|deal (generic term)|address (generic term)
+(verb)|converse|talk (generic term)|speak (generic term)
+(verb)|hold forth|dissertate|talk (generic term)|speak (generic term)
+discourteous|2
+(adj)|abrupt (similar term)|brusque (similar term)|brusk (similar term)|curt (similar term)|short (similar term)|caddish (similar term)|unchivalrous (similar term)|ungallant (similar term)|unceremonious (similar term)|disrespectful (related term)|courteous (antonym)
+(adj)|ungracious|impolite (similar term)
+discourteously|1
+(adv)|impolitely|rudely|courteously (antonym)|politely (antonym)
+discourtesy|3
+(noun)|disrespect|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|rudeness|manner (generic term)|personal manner (generic term)|courtesy (antonym)
+(noun)|offense|offence|offensive activity|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+discover|7
+(verb)|detect|observe|find|notice|sight (generic term)
+(verb)|find|gestate (generic term)|conceive (generic term)|conceptualize (generic term)|conceptualise (generic term)
+(verb)|learn|hear|get word|get wind|pick up|find out|get a line|see
+(verb)|find|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)|find out (related term)
+(verb)|fall upon|strike|come upon|light upon|chance upon|come across|chance on|happen upon|attain|find (generic term)|regain (generic term)
+(verb)|unwrap|disclose|let on|bring out|reveal|expose|divulge|impart|break|give away|let out|tell (generic term)
+(verb)|identify|key|key out|distinguish|describe|name
+discoverable|1
+(adj)|ascertainable|determinable (similar term)
+discovered|2
+(adj)|disclosed|revealed|unconcealed (similar term)
+(adj)|ascertained|observed|determined (similar term)
+discovered check|1
+(noun)|check (generic term)
+discoverer|2
+(noun)|inventor|artificer|creator (generic term)
+(noun)|finder|spotter|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+discovery|3
+(noun)|find|uncovering|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|breakthrough|find|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+discovery day|1
+(noun)|Columbus Day|Discovery Day|October 12|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+discredit|4
+(noun)|disrepute|dishonor (generic term)|dishonour (generic term)|repute (antonym)
+(verb)|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+(verb)|disgrace|disparage (generic term)|belittle (generic term)|pick at (generic term)
+(verb)|disbelieve|reject (generic term)|believe (antonym)
+discreditable|1
+(adj)|disreputable (similar term)
+discreditably|1
+(adv)|disgracefully|ingloriously|ignominiously|shamefully|dishonorably|dishonourably
+discredited|2
+(adj)|damaged|disreputable (similar term)
+(adj)|disgraced|dishonored|shamed|ashamed (similar term)
+discreet|3
+(adj)|modest (similar term)|restrained (similar term)|unostentatious (similar term)|indiscreet (antonym)
+(adj)|discerning|tactful (similar term)
+(adj)|circumspect|prudent (similar term)
+discreetly|1
+(adv)|indiscreetly (antonym)
+discreetness|2
+(noun)|discretion|circumspection|prudence|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|delicacy|diplomacy|finesse|tact (generic term)|tactfulness (generic term)
+discrepancy|2
+(noun)|disagreement|divergence|variance|difference (generic term)
+(noun)|variance|variant|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+discrepant|3
+(adj)|incompatible|inconsistent (similar term)
+(adj)|inconsistent|incongruous (similar term)
+(adj)|at variance|discordant (similar term)
+discrete|1
+(adj)|distinct|separate (similar term)
+discreteness|1
+(noun)|distinctness|separateness|severalty|separation (generic term)
+discretion|5
+(noun)|liberty (generic term)
+(noun)|discreetness|circumspection|prudence|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|delicacy|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|free will|power (generic term)|powerfulness (generic term)
+(noun)|discernment|wisdom (generic term)|wiseness (generic term)
+discretional|1
+(adj)|discretionary|arbitrary (similar term)
+discretionary|2
+(adj)|discretional|arbitrary (similar term)
+(adj)|unrestricted (similar term)
+discretionary trust|1
+(noun)|trust (generic term)
+discriminable|1
+(adj)|distinguishable (similar term)
+discriminate|5
+(adj)|discriminating|discriminating (related term)|indiscriminate (antonym)
+(adj)|nice|discriminating (similar term)
+(verb)|know apart|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|separate|single out|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|recognize (generic term)|recognise (generic term)|distinguish (generic term)|discern (generic term)|pick out (generic term)|make out (generic term)|tell apart (generic term)
+discriminating|3
+(adj)|appreciative (similar term)|diacritic (similar term)|diacritical (similar term)|discerning (similar term)|discriminate (similar term)|nice (similar term)|discriminative (similar term)|discriminatory (similar term)|eclectic (similar term)|good (similar term)|selective (similar term)|discerning (related term)|discriminate (related term)|discriminating (related term)|undiscriminating (antonym)
+(adj)|discriminate|discriminating (related term)|indiscriminate (antonym)
+(adj)|acute|incisive|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive (similar term)
+discrimination|2
+(noun)|favoritism|favouritism|social control (generic term)
+(noun)|secernment|basic cognitive process (generic term)
+discriminative|2
+(adj)|discriminatory|discriminating (similar term)
+(adj)|judicial|critical (similar term)
+discriminative stimulus|1
+(noun)|cue|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+discriminator|1
+(noun)|differentiator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+discriminatory|4
+(adj)|prejudiced|homophobic (similar term)|jaundiced (similar term)|loaded (similar term)|racist (similar term)|antiblack (similar term)|anti-Semite (similar term)|sexist (similar term)|unprejudiced (antonym)
+(adj)|invidious|unfavorable (similar term)|unfavourable (similar term)
+(adj)|discriminative|discriminating (similar term)
+(adj)|preferential|advantageous (similar term)
+discursive|2
+(adj)|dianoetic|logical (similar term)
+(adj)|digressive|excursive|rambling|indirect (similar term)
+discursively|1
+(adv)|ramblingly
+discursiveness|1
+(noun)|indirectness (generic term)
+discus|2
+(noun)|field event (generic term)
+(noun)|saucer|disk (generic term)|disc (generic term)|sports equipment (generic term)
+discuss|2
+(verb)|discourse|talk about|cover (generic term)|treat (generic term)|handle (generic term)|plow (generic term)|deal (generic term)|address (generic term)
+(verb)|hash out|talk over|talk of (generic term)|talk about (generic term)
+discussant|1
+(noun)|participant (generic term)
+discussion|2
+(noun)|treatment|discourse|communication (generic term)|communicating (generic term)
+(noun)|give-and-take|word|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+disdain|4
+(noun)|contempt|scorn|despite|dislike (generic term)
+(noun)|condescension|patronage|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(verb)|contemn|despise|scorn|hate (generic term)|detest (generic term)
+(verb)|reject|spurn|freeze off|scorn|pooh-pooh|turn down|refuse (generic term)|decline (generic term)
+disdainful|2
+(adj)|contemptuous|insulting|scornful|disrespectful (similar term)
+(adj)|haughty|lordly|prideful|sniffy|supercilious|swaggering|proud (similar term)
+disdainfully|2
+(adv)|cavalierly
+(adv)|contemptuously|scornfully|contumeliously
+disdainfulness|1
+(noun)|condescension|superciliousness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+disease|1
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+disease of the neuromuscular junction|1
+(noun)|disease (generic term)
+disease of the skin|1
+(noun)|skin disease|skin disorder|skin problem|skin condition|disease (generic term)
+diseased|1
+(adj)|morbid|pathologic|pathological|unhealthy (similar term)
+diseased person|1
+(noun)|sick person|sufferer|unfortunate (generic term)|unfortunate person (generic term)
+disembark|1
+(verb)|debark|set down|land (generic term)|set down (generic term)|embark (antonym)
+disembarkation|1
+(noun)|debarkation|disembarkment|landing (generic term)|embarkation (antonym)
+disembarkment|1
+(noun)|debarkation|disembarkation|landing (generic term)|embarkation (antonym)
+disembarrass|1
+(verb)|rid|free|rid of (related term)
+disembarrassment|1
+(noun)|easing (generic term)|moderation (generic term)|relief (generic term)|embarrassment (antonym)
+disembodied|1
+(adj)|discorporate|unembodied|bodiless|unbodied|incorporeal (similar term)|immaterial (similar term)
+disembodied spirit|1
+(noun)|spirit|spiritual being (generic term)|supernatural being (generic term)
+disembody|1
+(verb)|rid (generic term)|free (generic term)|disembarrass (generic term)
+disembowel|1
+(verb)|eviscerate|draw|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+disembowelment|1
+(noun)|evisceration|removal (generic term)|remotion (generic term)
+disembroil|1
+(verb)|disinvolve|disentangle|free (generic term)|discharge (generic term)
+disenable|1
+(verb)|disable|incapacitate|change (generic term)|alter (generic term)|modify (generic term)|enable (antonym)
+disenchant|1
+(verb)|disillusion|disappoint (generic term)|let down (generic term)|enchant (antonym)
+disenchanted|1
+(adj)|disabused (similar term)|undeceived (similar term)|disillusioned (similar term)|enlightened (similar term)|sophisticated (related term)|enchanted (antonym)
+disenchanting|1
+(adj)|disillusioning|convincing (similar term)
+disenchantment|1
+(noun)|disillusion|disillusionment|edification (generic term)|sophistication (generic term)
+disencumber|1
+(verb)|extricate|untangle|disentangle|free (generic term)|disengage (generic term)
+disenfranchise|1
+(verb)|disfranchise|deprive (generic term)|enfranchise (antonym)
+disenfranchised|1
+(adj)|disfranchised|voiceless|voteless|enfranchised (antonym)
+disenfranchisement|1
+(noun)|management (generic term)|direction (generic term)|enfranchisement (antonym)
+disengage|3
+(verb)|withdraw|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)|engage (antonym)
+(verb)|free|obstruct (antonym)
+(verb)|change state (generic term)|turn (generic term)|engage (antonym)
+disengagement|2
+(noun)|detachment|separation (generic term)
+(noun)|fallback|pullout|retreat (generic term)
+disentangle|5
+(verb)|extricate|untangle|disencumber|free (generic term)|disengage (generic term)
+(verb)|unsnarl|straighten out|order (generic term)|snarl (antonym)|entangle (antonym)
+(verb)|disinvolve|disembroil|free (generic term)|discharge (generic term)
+(verb)|unwind|undo (generic term)
+(verb)|comb|comb out|groom (generic term)|neaten (generic term)
+disentangled|2
+(adj)|extricated|freed|free (similar term)
+(adj)|loosened|unsnarled|untangled (similar term)
+disentanglement|1
+(noun)|unsnarling|untangling|extrication|liberation (generic term)|release (generic term)|freeing (generic term)
+disentangler|1
+(noun)|unraveler|unraveller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+disequilibrium|1
+(noun)|situation (generic term)|state of affairs (generic term)|equilibrium (antonym)
+disestablish|1
+(verb)|deprive (generic term)|impoverish (generic term)
+disestablishment|1
+(noun)|group action (generic term)
+disesteem|2
+(noun)|dishonor (generic term)|dishonour (generic term)|esteem (antonym)
+(verb)|disrespect|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|esteem (antonym)|respect (antonym)
+disfavor|3
+(noun)|disfavour|rejection (generic term)
+(noun)|disfavour|dislike|disapproval|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(verb)|disadvantage|disfavour|discriminate (generic term)|separate (generic term)|single out (generic term)|advantage (antonym)
+disfavour|3
+(noun)|disfavor|rejection (generic term)
+(noun)|disfavor|dislike|disapproval|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(verb)|disadvantage|disfavor|discriminate (generic term)|separate (generic term)|single out (generic term)|advantage (antonym)
+disfiguration|2
+(noun)|disfigurement|deformity|appearance (generic term)|visual aspect (generic term)
+(noun)|defacement|disfigurement|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+disfigure|1
+(verb)|deface|blemish|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+disfigured|1
+(adj)|ugly (similar term)
+disfigurement|2
+(noun)|disfiguration|deformity|appearance (generic term)|visual aspect (generic term)
+(noun)|defacement|disfiguration|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+disforest|1
+(verb)|deforest|disafforest|clear (generic term)
+disforestation|1
+(noun)|deforestation|denudation (generic term)|stripping (generic term)|uncovering (generic term)|baring (generic term)|husking (generic term)
+disfranchise|1
+(verb)|disenfranchise|deprive (generic term)|enfranchise (antonym)
+disfranchised|1
+(adj)|disenfranchised|voiceless|voteless|enfranchised (antonym)
+disfranchisement|1
+(noun)|discontinuance (generic term)|discontinuation (generic term)
+disfunction|1
+(noun)|dysfunction|pathology (generic term)
+disgorge|2
+(verb)|spill|shed|move (generic term)|displace (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+disgorgement|1
+(noun)|vomit|vomiting|emesis|regurgitation|puking|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+disgrace|4
+(noun)|shame|ignominy|dishonor (generic term)|dishonour (generic term)
+(verb)|dishonor|dishonour|attaint|shame|honor (antonym)
+(verb)|take down|degrade|demean|put down|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|discredit|disparage (generic term)|belittle (generic term)|pick at (generic term)
+disgraced|1
+(adj)|discredited|dishonored|shamed|ashamed (similar term)
+disgraceful|2
+(adj)|scandalous|shameful|shocking|immoral (similar term)
+(adj)|black|ignominious|inglorious|opprobrious|shameful|dishonorable (similar term)|dishonourable (similar term)
+disgracefully|1
+(adv)|ingloriously|ignominiously|discreditably|shamefully|dishonorably|dishonourably
+disgracefulness|1
+(noun)|shamefulness|ignominiousness|unworthiness (generic term)
+disgruntle|1
+(verb)|dissatisfy (generic term)
+disgruntled|1
+(adj)|dissatisfied|discontented (similar term)|discontent (similar term)
+disgruntlement|1
+(noun)|discontentment (generic term)|discontent (generic term)|discontentedness (generic term)
+disguise|4
+(noun)|camouflage|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|camouflage|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(verb)|hide (generic term)|conceal (generic term)
+disguised|1
+(adj)|cloaked|masked|covert (similar term)
+disgust|3
+(noun)|dislike (generic term)
+(verb)|gross out|revolt|repel|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|revolt|nauseate|sicken|churn up|repel (generic term)|repulse (generic term)
+disgusted|1
+(adj)|fed up|sick|sick of|tired of|displeased (similar term)
+disgustful|1
+(adj)|disgusting|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+disgusting|1
+(adj)|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+disgustingly|1
+(adv)|distastefully|revoltingly|sickeningly
+disgustingness|2
+(noun)|distastefulness|nauseatingness|sickeningness|unsavoriness|unpalatability (generic term)|unpalatableness (generic term)
+(noun)|unsavoriness|unpalatability (generic term)|unpalatableness (generic term)
+dish|8
+(noun)|crockery (generic term)|dishware (generic term)|container (generic term)
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|dishful|containerful (generic term)
+(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|woman (generic term)|adult female (generic term)
+(noun)|dish aerial|dish antenna|saucer|directional antenna (generic term)
+(noun)|cup of tea|bag|activity (generic term)
+(verb)|serve|serve up|dish out|dish up|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|shape (generic term)|form (generic term)
+dish-shaped|1
+(adj)|dished|concave (similar term)
+dish aerial|1
+(noun)|dish|dish antenna|saucer|directional antenna (generic term)
+dish antenna|1
+(noun)|dish|dish aerial|saucer|directional antenna (generic term)
+dish out|2
+(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|allot|dole out|give (generic term)
+(verb)|serve|serve up|dish up|dish|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+dish rack|1
+(noun)|rack (generic term)
+dish the dirt|1
+(verb)|gossip|talk (generic term)|speak (generic term)
+dish towel|1
+(noun)|dishtowel|tea towel|towel (generic term)
+dish up|1
+(verb)|serve|serve up|dish out|dish|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+dish washer|1
+(noun)|dishwasher|dishwashing machine|white goods (generic term)
+dishabille|1
+(noun)|deshabille|condition (generic term)|status (generic term)
+disharmonious|1
+(adj)|discordant|dissonant|inharmonic|inharmonious (similar term)|unharmonious (similar term)
+disharmonize|1
+(verb)|dissonate|change (generic term)|alter (generic term)|modify (generic term)
+disharmony|1
+(noun)|inharmoniousness|dissonance (generic term)
+dishcloth|1
+(noun)|dishrag|piece of cloth (generic term)|piece of material (generic term)
+dishcloth gourd|1
+(noun)|luffa|sponge gourd|rag gourd|strainer vine|vine (generic term)
+dishearten|1
+(verb)|put off|discourage (generic term)|hearten (antonym)
+disheartened|1
+(adj)|demoralized|demoralised|discouraged|pessimistic (similar term)
+disheartening|1
+(adj)|demoralizing|demoralising|dispiriting|discouraging (similar term)
+disheartenment|2
+(noun)|discouragement|dismay|despair (generic term)
+(noun)|discouragement (generic term)
+dished|1
+(adj)|dish-shaped|concave (similar term)
+dishevel|1
+(verb)|tousle|tangle|disarrange (generic term)
+disheveled|1
+(adj)|dishevelled|frowzled|rumpled|tousled|untidy (similar term)
+dishevelled|1
+(adj)|disheveled|frowzled|rumpled|tousled|untidy (similar term)
+dishful|1
+(noun)|dish|containerful (generic term)
+dishonest|4
+(adj)|dishonorable|ambidextrous (similar term)|deceitful (similar term)|double-dealing (similar term)|duplicitous (similar term)|Janus-faced (similar term)|two-faced (similar term)|double-faced (similar term)|double-tongued (similar term)|beguiling (similar term)|deceitful (similar term)|fallacious (similar term)|fraudulent (similar term)|deceptive (similar term)|misleading (similar term)|shoddy (similar term)|false (similar term)|picaresque (similar term)|rascally (similar term)|roguish (similar term)|scoundrelly (similar term)|blackguardly (similar term)|thieving (similar term)|thievish (similar term)|crooked (related term)|corrupt (related term)|dishonorable (related term)|dishonourable (related term)|false (related term)|insincere (related term)|untrustworthy (related term)|untrusty (related term)|honest (antonym)
+(adj)|crooked (similar term)|corrupt (similar term)
+(adj)|untruthful (similar term)
+(adj)|corruptible|bribable|purchasable|venal|corrupt (similar term)
+dishonestly|1
+(adv)|venally|deceitfully|honestly (antonym)
+dishonesty|2
+(noun)|unrighteousness (generic term)|honesty (antonym)
+(noun)|knavery|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+dishonor|5
+(noun)|dishonour|standing (generic term)|honor (antonym)
+(noun)|dishonour|unrighteousness (generic term)|honor (antonym)
+(verb)|disgrace|dishonour|attaint|shame|honor (antonym)
+(verb)|rape|ravish|violate|assault|dishonour|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|dishonour|refuse (generic term)|reject (generic term)|pass up (generic term)|turn down (generic term)|decline (generic term)|honor (antonym)
+dishonorable|5
+(adj)|dishonourable|black (similar term)|disgraceful (similar term)|ignominious (similar term)|inglorious (similar term)|opprobrious (similar term)|shameful (similar term)|debasing (similar term)|degrading (similar term)|shabby (similar term)|unprincipled (similar term)|yellow (similar term)|dishonest (related term)|dishonorable (related term)|disreputable (related term)|ignoble (related term)|inglorious (related term)|dishonorable (related term)|unjust (related term)|unworthy (related term)|honorable (antonym)
+(adj)|dishonest|ambidextrous (similar term)|deceitful (similar term)|double-dealing (similar term)|duplicitous (similar term)|Janus-faced (similar term)|two-faced (similar term)|double-faced (similar term)|double-tongued (similar term)|beguiling (similar term)|deceitful (similar term)|fallacious (similar term)|fraudulent (similar term)|deceptive (similar term)|misleading (similar term)|shoddy (similar term)|false (similar term)|picaresque (similar term)|rascally (similar term)|roguish (similar term)|scoundrelly (similar term)|blackguardly (similar term)|thieving (similar term)|thievish (similar term)|crooked (related term)|corrupt (related term)|dishonorable (related term)|dishonourable (related term)|false (related term)|insincere (related term)|untrustworthy (related term)|untrusty (related term)|honest (antonym)
+(adj)|inglorious|obscure (similar term)|unknown (similar term)|unsung (similar term)|dishonorable (related term)|dishonourable (related term)|unknown (related term)|glorious (antonym)
+(adj)|base|dishonourable|immoral|unethical|wrong (similar term)
+(adj)|dishonourable|ignoble (similar term)
+dishonorable discharge|1
+(noun)|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+dishonorableness|1
+(noun)|dishonourableness|unrighteousness (generic term)|honorableness (antonym)
+dishonorably|2
+(adv)|honorably (antonym)
+(adv)|disgracefully|ingloriously|ignominiously|discreditably|shamefully|dishonourably
+dishonored|1
+(adj)|discredited|disgraced|shamed|ashamed (similar term)
+dishonour|5
+(noun)|dishonor|standing (generic term)|honor (antonym)
+(noun)|dishonor|unrighteousness (generic term)|honor (antonym)
+(verb)|dishonor|disgrace|attaint|shame|honor (antonym)
+(verb)|rape|ravish|violate|assault|dishonor|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|dishonor|refuse (generic term)|reject (generic term)|pass up (generic term)|turn down (generic term)|decline (generic term)|honor (antonym)
+dishonourable|3
+(adj)|dishonorable|black (similar term)|disgraceful (similar term)|ignominious (similar term)|inglorious (similar term)|opprobrious (similar term)|shameful (similar term)|debasing (similar term)|degrading (similar term)|shabby (similar term)|unprincipled (similar term)|yellow (similar term)|dishonest (related term)|dishonorable (related term)|disreputable (related term)|ignoble (related term)|inglorious (related term)|dishonorable (related term)|unjust (related term)|unworthy (related term)|honorable (antonym)
+(adj)|base|dishonorable|immoral|unethical|wrong (similar term)
+(adj)|dishonorable|ignoble (similar term)
+dishonourableness|1
+(noun)|dishonorableness|unrighteousness (generic term)|honorableness (antonym)
+dishonourably|1
+(adv)|disgracefully|ingloriously|ignominiously|discreditably|shamefully|dishonorably
+dishpan|1
+(noun)|pan (generic term)
+dishrag|1
+(noun)|dishcloth|piece of cloth (generic term)|piece of material (generic term)
+dishtowel|1
+(noun)|dish towel|tea towel|towel (generic term)
+dishware|1
+(noun)|crockery|tableware (generic term)
+dishwasher|2
+(noun)|dish washer|dishwashing machine|white goods (generic term)
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+dishwasher detergent|1
+(noun)|dishwashing detergent|dishwashing liquid|detergent (generic term)
+dishwashing|1
+(noun)|washup|wash (generic term)|washing (generic term)|lavation (generic term)
+dishwashing detergent|1
+(noun)|dishwasher detergent|dishwashing liquid|detergent (generic term)
+dishwashing liquid|1
+(noun)|dishwasher detergent|dishwashing detergent|detergent (generic term)
+dishwashing machine|1
+(noun)|dishwasher|dish washer|white goods (generic term)
+dishwater|1
+(noun)|water (generic term)|H2O (generic term)
+dishy|1
+(adj)|beautiful (similar term)
+disillusion|2
+(noun)|disenchantment|disillusionment|edification (generic term)|sophistication (generic term)
+(verb)|disenchant|disappoint (generic term)|let down (generic term)|enchant (antonym)
+disillusioned|1
+(adj)|enlightened|disenchanted (similar term)
+disillusioning|1
+(adj)|disenchanting|convincing (similar term)
+disillusionment|1
+(noun)|disenchantment|disillusion|edification (generic term)|sophistication (generic term)
+disincarnate|1
+(verb)|immaterialize (generic term)|immaterialise (generic term)|unsubstantialize (generic term)|unsubstantialise (generic term)|incarnate (antonym)
+disincentive|1
+(noun)|deterrence|rational motive (generic term)|incentive (antonym)
+disinclination|2
+(noun)|dislike (generic term)|inclination (antonym)
+(noun)|reluctance|hesitancy|hesitation|indisposition|unwillingness (generic term)|involuntariness (generic term)
+disincline|1
+(verb)|indispose|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)|dispose (antonym)
+disinclined|1
+(adj)|afraid (similar term)|antipathetic (similar term)|antipathetical (similar term)|averse (similar term)|indisposed (similar term)|loath (similar term)|loth (similar term)|reluctant (similar term)|negative (related term)|unwilling (related term)|inclined (antonym)
+disinfect|1
+(verb)|clean (generic term)|make clean (generic term)|infect (antonym)
+disinfectant|2
+(adj)|bactericidal|germicidal|antiseptic (similar term)
+(noun)|germicide|antimicrobic|antimicrobial|agent (generic term)
+disinfection|1
+(noun)|medical care (generic term)|medical aid (generic term)
+disinfest|1
+(verb)|rid (generic term)|free (generic term)|disembarrass (generic term)
+disinfestation|1
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+disinfestation officer|1
+(noun)|rat-catcher|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+disinflation|1
+(noun)|economic process (generic term)|inflation (antonym)|deflation (antonym)
+disinformation|1
+(noun)|misinformation (generic term)
+disingenuous|1
+(adj)|artful|distorted (similar term)|misrepresented (similar term)|perverted (similar term)|twisted (similar term)|insincere (related term)|ingenuous (antonym)
+disingenuously|1
+(adv)|artfully
+disingenuousness|1
+(noun)|dishonesty (generic term)|ingenuousness (antonym)
+disinherit|1
+(verb)|disown|deprive (generic term)|bequeath (antonym)
+disinheritance|1
+(noun)|discontinuance (generic term)|discontinuation (generic term)
+disinherited|1
+(adj)|unloved (similar term)
+disintegrable|1
+(adj)|meltable|soluble (similar term)
+disintegrate|3
+(verb)|change integrity (generic term)|integrate (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decay|decompose|change integrity (generic term)
+disintegration|4
+(noun)|decomposition|decay (generic term)
+(noun)|dissolution|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|decay|radioactive decay|nuclear reaction (generic term)
+(noun)|annihilation|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+disintegrative|1
+(adj)|clastic (similar term)|decompositional (similar term)|integrative (antonym)
+disinter|1
+(verb)|exhume|excavate (generic term)|dig up (generic term)|turn up (generic term)
+disinterest|1
+(noun)|neutrality|tolerance (generic term)
+disinterested|1
+(adj)|impartial (similar term)|fair (similar term)
+disinterestedly|1
+(adv)|without bias
+disinterestedness|1
+(noun)|impartiality (generic term)|nonpartisanship (generic term)
+disinterment|1
+(noun)|exhumation|digging up|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+disinvest|3
+(verb)|divest|free (generic term)|discharge (generic term)|invest (antonym)
+(verb)|divest|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)|invest (antonym)
+(verb)|strip|undress|divest|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+disinvestment|1
+(noun)|withdrawal (generic term)
+disinvolve|1
+(verb)|disembroil|disentangle|free (generic term)|discharge (generic term)
+disjoin|2
+(verb)|disjoint|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|join (antonym)
+(verb)|disjoint|separate (generic term)|divide (generic term)|part (generic term)|join (antonym)
+disjoined|1
+(adj)|separate|unconnected (similar term)
+disjoint|5
+(adj)|separate (similar term)
+(verb)|disassociate|dissociate|divorce|disunite|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|disarticulate|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|disjoin|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|join (antonym)
+(verb)|disjoin|separate (generic term)|divide (generic term)|part (generic term)|join (antonym)
+disjointed|3
+(adj)|confused|disconnected|disordered|garbled|illogical|scattered|unconnected|incoherent (similar term)
+(adj)|divided (similar term)
+(adj)|dislocated|separated|injured (similar term)
+disjointedness|1
+(noun)|incoherence (generic term)|incoherency (generic term)
+disjunct|4
+(adj)|conjunct (antonym)
+(adj)|divided (similar term)
+(adj)|isolated|separate (similar term)
+(adj)|discontinuous (similar term)|noncontinuous (similar term)
+disjunction|2
+(noun)|disjuncture|disconnection|disconnectedness|separation (generic term)|connectedness (antonym)
+(noun)|disconnection|separation (generic term)
+disjunctive|1
+(adj)|adversative (similar term)|oppositive (similar term)|alternative (similar term)|mutually exclusive (similar term)|contrastive (similar term)|dividing (similar term)|divisional (similar term)|intervening (similar term)|partitive (similar term)|separative (similar term)|separative (similar term)|conjunctive (antonym)
+disjunctive conjunction|1
+(noun)|conjunction (generic term)
+disjuncture|1
+(noun)|disjunction|disconnection|disconnectedness|separation (generic term)|connectedness (antonym)
+disk|5
+(noun)|disc|saucer|round shape (generic term)
+(noun)|disc|plate (generic term)|circle (generic term)|round (generic term)
+(noun)|phonograph record|phonograph recording|record|disc|platter|sound recording (generic term)|audio recording (generic term)
+(noun)|magnetic disk|magnetic disc|disc|memory device (generic term)|storage device (generic term)
+(verb)|harrow|plow (generic term)|plough (generic term)|turn (generic term)
+disk-jockey|1
+(verb)|disc-jockey|DJ|comment (generic term)
+disk-shaped|1
+(adj)|discoid|discoidal|disklike|disclike|disc-shaped|round (similar term)|circular (similar term)
+disk access|1
+(noun)|access (generic term)|memory access (generic term)
+disk brake|1
+(noun)|disc brake|hydraulic brake (generic term)|hydraulic brakes (generic term)
+disk cache|1
+(noun)|cache (generic term)|memory cache (generic term)
+disk clutch|1
+(noun)|friction clutch (generic term)
+disk controller|1
+(noun)|control (generic term)|controller (generic term)
+disk drive|1
+(noun)|disc drive|hard drive|Winchester drive|drive (generic term)
+disk error|1
+(noun)|hardware error (generic term)
+disk file|1
+(noun)|computer file (generic term)
+disk harrow|1
+(noun)|disc harrow|harrow (generic term)
+disk jockey|1
+(noun)|disc jockey|dj|broadcaster (generic term)
+disk operating system|1
+(noun)|DOS|operating system (generic term)|OS (generic term)
+disk overhead|1
+(noun)|overhead|disk space (generic term)|disc space (generic term)
+disk pack|1
+(noun)|disc pack|pack (generic term)
+disk shape|1
+(noun)|circularity|roundness (generic term)
+disk space|1
+(noun)|disc space|space (generic term)
+diskette|1
+(noun)|floppy|floppy disk|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+disklike|1
+(adj)|discoid|discoidal|disclike|disk-shaped|disc-shaped|round (similar term)|circular (similar term)
+dislikable|1
+(adj)|disliked (similar term)
+dislike|3
+(noun)|disfavor|disfavour|disapproval|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|feeling (generic term)|liking (antonym)
+(verb)|like (antonym)
+disliked|1
+(adj)|dislikable (similar term)|unlikable (similar term)|unlikeable (similar term)|liked (antonym)
+dislocate|2
+(verb)|luxate|splay|slip|move (generic term)|displace (generic term)
+(verb)|displace|resettle (generic term)
+dislocated|1
+(adj)|disjointed|separated|injured (similar term)
+dislocation|3
+(noun)|disruption|interruption (generic term)|break (generic term)
+(noun)|breakdown|disruption (generic term)|perturbation (generic term)
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+dislodge|3
+(verb)|free|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|lodge (antonym)
+(verb)|shift|reposition|move (generic term)|displace (generic term)
+(verb)|displace|bump|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+dislodgement|1
+(noun)|dislodgment|removal (generic term)|remotion (generic term)
+dislodgment|1
+(noun)|dislodgement|removal (generic term)|remotion (generic term)
+dislogistic|1
+(adj)|dyslogistic|pejorative|uncomplimentary (similar term)
+disloyal|2
+(adj)|unpatriotic|un-American (similar term)|disloyal (related term)|patriotic (antonym)
+(adj)|awol (similar term)|faithless (similar term)|traitorous (similar term)|unfaithful (similar term)|treasonable (similar term)|treasonous (similar term)|insurgent (similar term)|seditious (similar term)|subversive (similar term)|mutinous (similar term)|rebellious (similar term)|recreant (similar term)|renegade (similar term)|unpatriotic (related term)|disloyal (related term)|loyal (antonym)
+disloyally|1
+(adv)|loyally (antonym)
+disloyalty|1
+(noun)|infidelity (generic term)|unfaithfulness (generic term)|loyalty (antonym)
+dismal|1
+(adj)|blue|dark|depressing|dingy|disconsolate|dispiriting|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+dismally|2
+(adv)|drearily
+(adv)|dreadfully
+dismantle|3
+(verb)|level|raze|rase|tear down|take down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+(verb)|disassemble|take apart|break up|break apart|destroy (generic term)|destruct (generic term)|assemble (antonym)
+(verb)|strip|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+dismantled|1
+(adj)|demolished|razed|destroyed (similar term)
+dismantlement|1
+(noun)|dismantling|disassembly|activity (generic term)|assembly (antonym)|assembly (antonym)
+dismantling|1
+(noun)|dismantlement|disassembly|activity (generic term)|assembly (antonym)|assembly (antonym)
+dismay|4
+(noun)|discouragement|disheartenment|despair (generic term)
+(noun)|alarm|consternation|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(verb)|depress|deject|cast down|get down|dispirit|demoralize|demoralise|discourage (generic term)|elate (antonym)
+(verb)|alarm|appal|appall|horrify|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+dismayed|1
+(adj)|aghast|appalled|shocked|afraid (similar term)
+dismaying|1
+(adj)|appalling|alarming (similar term)
+dismember|2
+(verb)|kill (generic term)
+(verb)|take apart|discerp|separate (generic term)|divide (generic term)|part (generic term)
+dismemberment|1
+(noun)|taking apart|mutilation (generic term)|torture (generic term)|torturing (generic term)
+dismiss|6
+(verb)|disregard|brush aside|brush off|discount|push aside|ignore|reject (generic term)
+(verb)|throw out
+(verb)|send packing|send away|drop|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|fire|give notice|can|give the axe|send away|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|usher out|say farewell (generic term)
+(verb)|dissolve|change (generic term)|alter (generic term)|modify (generic term)
+dismissal|4
+(noun)|judgment of dismissal|judgement of dismissal|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+(noun)|dismission|pink slip|notice (generic term)
+(noun)|permission (generic term)
+(noun)|dismission|discharge|firing|liberation|release|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+dismissed|1
+(adj)|discharged|fired|laid-off|pink-slipped|unemployed (similar term)
+dismissible|1
+(adj)|removable (similar term)
+dismission|2
+(noun)|dismissal|pink slip|notice (generic term)
+(noun)|dismissal|discharge|firing|liberation|release|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+dismissive|2
+(adj)|uninterested (similar term)
+(adj)|negative (similar term)
+dismount|2
+(noun)|discontinuance (generic term)|discontinuation (generic term)
+(verb)|unhorse|light|get off|get down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+disney|1
+(noun)|Disney|Walt Disney|Walter Elias Disney|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+disneyland|1
+(noun)|Disneyland|amusement park (generic term)|funfair (generic term)|pleasure ground (generic term)
+disobedience|2
+(noun)|noncompliance|insubordination (generic term)|rebelliousness (generic term)|compliance (antonym)|obedience (antonym)
+(noun)|intractability (generic term)|intractableness (generic term)|obedience (antonym)
+disobedient|2
+(adj)|contrary (similar term)|obstinate (similar term)|perverse (similar term)|wayward (similar term)|fractious (similar term)|refractory (similar term)|recalcitrant (similar term)|froward (similar term)|headstrong (similar term)|self-willed (similar term)|willful (similar term)|wilful (similar term)|recusant (similar term)|bad (related term)|defiant (related term)|noncompliant (related term)|incorrigible (related term)|intractable (related term)|stubborn (related term)|obstinate (related term)|unregenerate (related term)|unmanageable (related term)|difficult (related term)|obedient (antonym)
+(adj)|unruly|insubordinate (similar term)
+disobediently|1
+(adv)|obediently (antonym)
+disobey|1
+(verb)|refuse (generic term)|decline (generic term)|obey (antonym)
+disoblige|2
+(verb)|trouble|put out|inconvenience|discommode|incommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)|oblige (antonym)
+disobliging|1
+(adj)|uncooperative|unaccommodating (similar term)|unobliging (similar term)
+disorder|5
+(noun)|upset|condition (generic term)|status (generic term)
+(noun)|disorderliness|condition (generic term)|status (generic term)|order (antonym)|orderliness (antonym)
+(noun)|state (generic term)|order (antonym)
+(verb)|perturb|unhinge|disquiet|trouble|cark|distract|disturb (generic term)|upset (generic term)|trouble (generic term)
+(verb)|disarray|change (generic term)|alter (generic term)|modify (generic term)|order (antonym)
+disordered|3
+(adj)|broken|confused|upset|disorganized (similar term)|disorganised (similar term)
+(adj)|confused|disconnected|disjointed|garbled|illogical|scattered|unconnected|incoherent (similar term)
+(adj)|unordered|ordered (antonym)
+disorderliness|3
+(noun)|disorder|condition (generic term)|status (generic term)|order (antonym)|orderliness (antonym)
+(noun)|rowdiness|rowdyism|roughness|disorder (generic term)
+(noun)|disarray|untidiness (generic term)|messiness (generic term)
+disorderly|3
+(adj)|boisterous (similar term)|rambunctious (similar term)|robustious (similar term)|rumbustious (similar term)|unruly (similar term)|brawling (similar term)|fighting (similar term)|mobbish (similar term)|moblike (similar term)|raucous (similar term)|rowdy (similar term)|rough-and-tumble (similar term)|bare-knuckle (similar term)|bare-knuckled (similar term)|orderly (antonym)
+(adj)|higgledy-piggledy|hugger-mugger|jumbled|topsy-turvy|untidy (similar term)
+(adj)|chaotic|wild (similar term)
+disorderly behavior|1
+(noun)|disorderly conduct|disturbance of the peace|breach of the peace|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+disorderly conduct|1
+(noun)|disorderly behavior|disturbance of the peace|breach of the peace|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+disorganisation|2
+(noun)|disorganization|disarrangement|disorderliness (generic term)|disorder (generic term)
+(noun)|disorganization|disturbance (generic term)
+disorganise|1
+(verb)|disorganize|organise (antonym)|organize (antonym)
+disorganised|1
+(adj)|disorganized|broken (similar term)|confused (similar term)|disordered (similar term)|upset (similar term)|chaotic (similar term)|helter-skelter (similar term)|fucked-up (similar term)|snafu (similar term)|scrambled (similar term)|unmethodical (similar term)|unstuck (similar term)|undone (similar term)|unsystematic (related term)|organized (antonym)
+disorganization|2
+(noun)|disorganisation|disarrangement|disorderliness (generic term)|disorder (generic term)
+(noun)|disorganisation|disturbance (generic term)
+disorganize|1
+(verb)|disorganise|organise (antonym)|organize (antonym)
+disorganized|1
+(adj)|disorganised|broken (similar term)|confused (similar term)|disordered (similar term)|upset (similar term)|chaotic (similar term)|helter-skelter (similar term)|fucked-up (similar term)|snafu (similar term)|scrambled (similar term)|unmethodical (similar term)|unstuck (similar term)|undone (similar term)|unsystematic (related term)|organized (antonym)
+disorganized schizophrenia|1
+(noun)|hebephrenia|hebephrenic schizophrenia|disorganized type schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+disorganized type schizophrenia|1
+(noun)|hebephrenia|hebephrenic schizophrenia|disorganized schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+disorient|1
+(verb)|disorientate|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|orient (antonym)
+disorientate|1
+(verb)|disorient|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|orient (antonym)
+disorientation|2
+(noun)|freak out|delusion (generic term)|hallucination (generic term)
+(noun)|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+disoriented|2
+(adj)|confused|lost|unoriented (similar term)
+(adj)|alienated|anomic|unoriented (similar term)
+disorienting|1
+(adj)|confusing (similar term)|estranging (similar term)|stunning (similar term)|stupefying (similar term)|unoriented (related term)|orienting (antonym)
+disown|1
+(verb)|disinherit|deprive (generic term)|bequeath (antonym)
+disowned|1
+(adj)|repudiated|unacknowledged (similar term)
+disowning|1
+(noun)|disownment|repudiation (generic term)|renunciation (generic term)
+disownment|1
+(noun)|disowning|repudiation (generic term)|renunciation (generic term)
+disparage|1
+(verb)|belittle|pick at|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)|flatter (antonym)
+disparagement|2
+(noun)|depreciation|derogation|disrespect (generic term)|discourtesy (generic term)
+(noun)|dispraise|disapproval (generic term)
+disparager|1
+(noun)|detractor|depreciator|knocker|cynic (generic term)|faultfinder (generic term)
+disparaging|1
+(adj)|derogative|derogatory|uncomplimentary (similar term)
+disparagingly|1
+(adv)|slightingly
+disparate|2
+(adj)|different (similar term)
+(adj)|heterogeneous (similar term)|heterogenous (similar term)
+disparateness|1
+(noun)|distinctiveness|dissimilarity (generic term)|unsimilarity (generic term)
+disparity|1
+(noun)|inequality (generic term)
+dispassion|1
+(noun)|dispassionateness|dryness|unemotionality (generic term)|emotionlessness (generic term)
+dispassionate|1
+(adj)|cold-eyed|impartial (similar term)|fair (similar term)
+dispassionateness|1
+(noun)|dispassion|dryness|unemotionality (generic term)|emotionlessness (generic term)
+dispatch|9
+(noun)|despatch|communique|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+(noun)|despatch|shipment|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(noun)|despatch|expedition|expeditiousness|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+(noun)|despatch|killing (generic term)|kill (generic term)|putting to death (generic term)
+(verb)|despatch|send off|transport (generic term)|send (generic term)|ship (generic term)
+(verb)|discharge|complete|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|murder|slay|hit|bump off|off|polish off|remove|kill (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|kill (generic term)
+dispatch box|1
+(noun)|dispatch case|case (generic term)
+dispatch case|1
+(noun)|dispatch box|case (generic term)
+dispatch rider|1
+(noun)|messenger (generic term)|courier (generic term)
+dispatched|1
+(adj)|sent (similar term)
+dispatcher|2
+(noun)|starter|official (generic term)
+(noun)|employee (generic term)
+dispel|2
+(verb)|chase away|drive out|turn back|drive away|drive off|run off|move (generic term)|displace (generic term)
+(verb)|disperse|dissipate|break up|scatter|separate (generic term)|divide (generic term)
+dispensability|1
+(noun)|dispensableness|inessentiality (generic term)|indispensableness (antonym)|indispensability (antonym)
+dispensable|1
+(adj)|unnecessary (related term)|unneeded (related term)|indispensable (antonym)
+dispensableness|1
+(noun)|dispensability|inessentiality (generic term)|indispensableness (antonym)|indispensability (antonym)
+dispensary|1
+(noun)|clinic (generic term)
+dispensation|3
+(noun)|license (generic term)|permission (generic term)|permit (generic term)
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|distribution (generic term)
+dispense|3
+(verb)|distribute|administer|mete out|deal|parcel out|lot|shell out|deal out|dish out|allot|dole out|give (generic term)
+(verb)|exempt (generic term)|relieve (generic term)|free (generic term)|dispense with (related term)
+(verb)|administer|treat (generic term)|care for (generic term)
+dispense with|3
+(verb)|spare|give up|part with|give (generic term)
+(verb)|waive|relinquish|forgo|foreswear
+(verb)|abandon (generic term)
+dispensed|1
+(adj)|distributed (similar term)
+dispenser|2
+(noun)|container (generic term)
+(noun)|supplier (generic term)|provider (generic term)
+dispersal|1
+(noun)|dispersion|dissemination|diffusion|spread (generic term)|spreading (generic term)
+disperse|5
+(verb)|scatter|sprinkle|dot|dust|discharge (generic term)
+(verb)|dissipate|dispel|break up|scatter|separate (generic term)|divide (generic term)
+(verb)|dissipate|scatter|spread out|separate (generic term)|part (generic term)|split (generic term)
+(verb)|break up|scatter|change integrity (generic term)
+(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+dispersed|1
+(adj)|spread|distributed (similar term)
+dispersed particles|1
+(noun)|dispersed phase|phase (generic term)|form (generic term)
+dispersed phase|1
+(noun)|dispersed particles|phase (generic term)|form (generic term)
+dispersing medium|1
+(noun)|dispersing phase|dispersion medium|phase (generic term)|form (generic term)
+dispersing phase|1
+(noun)|dispersion medium|dispersing medium|phase (generic term)|form (generic term)
+dispersion|3
+(noun)|scattering|spread (generic term)|spreading (generic term)
+(noun)|distribution|spacing (generic term)|spatial arrangement (generic term)|concentration (antonym)
+(noun)|dispersal|dissemination|diffusion|spread (generic term)|spreading (generic term)
+dispersion medium|1
+(noun)|dispersing phase|dispersing medium|phase (generic term)|form (generic term)
+dispersive|1
+(adj)|diffusing|diffusive|disseminative|disseminating|scattering|spreading|distributive (similar term)
+dispirit|1
+(verb)|depress|deject|cast down|get down|dismay|demoralize|demoralise|discourage (generic term)|elate (antonym)
+dispirited|2
+(adj)|listless|spiritless (similar term)
+(adj)|blue|depressed|down|downcast|downhearted|down in the mouth|low|low-spirited|dejected (similar term)
+dispiritedly|1
+(adv)|hopelessly
+dispiritedness|1
+(noun)|downheartedness|dejectedness|low-spiritedness|lowness|sadness (generic term)|unhappiness (generic term)
+dispiriting|2
+(adj)|demoralizing|demoralising|disheartening|discouraging (similar term)
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|gloomy|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+displace|7
+(verb)|move (generic term)
+(verb)|force out|move (generic term)|displace (generic term)
+(verb)|uproot|deracinate|place (generic term)
+(verb)|preempt|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+(verb)|move
+(verb)|dislodge|bump|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+(verb)|dislocate|resettle (generic term)
+displaced fracture|1
+(noun)|fracture (generic term)|break (generic term)
+displaced person|1
+(noun)|DP|stateless person|refugee (generic term)
+displacement|7
+(noun)|shift|translation (generic term)
+(noun)|supplanting|replacement (generic term)|replacing (generic term)
+(noun)|translation|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|displacement reaction|chemical reaction (generic term)|reaction (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|deracination|movement (generic term)
+(noun)|rejection (generic term)
+displacement reaction|1
+(noun)|displacement|chemical reaction (generic term)|reaction (generic term)
+displacement unit|1
+(noun)|volume unit|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+display|9
+(noun)|show|demonstration (generic term)|demo (generic term)
+(noun)|exhibit|showing|show (generic term)
+(noun)|video display|electronic device (generic term)
+(noun)|presentation|representation (generic term)
+(noun)|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(noun)|communication (generic term)
+(verb)|expose|exhibit|show (generic term)
+(verb)|reveal|show|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|woo (generic term)|court (generic term)|romance (generic term)|solicit (generic term)
+display adapter|1
+(noun)|display adaptor|electronic device (generic term)
+display adaptor|1
+(noun)|display adapter|electronic device (generic term)
+display board|1
+(noun)|display panel|board|display (generic term)|video display (generic term)
+display case|1
+(noun)|case|showcase|vitrine|container (generic term)
+display panel|1
+(noun)|display board|board|display (generic term)|video display (generic term)
+display window|1
+(noun)|shopwindow|show window|window (generic term)
+displaying incompetence|1
+(adv)|incompetently|competently (antonym)
+displease|1
+(verb)|please (antonym)
+displeased|1
+(adj)|annoyed (similar term)|irritated (similar term)|miffed (similar term)|nettled (similar term)|peeved (similar term)|pissed (similar term)|pissed off (similar term)|riled (similar term)|roiled (similar term)|steamed (similar term)|stung (similar term)|exasperated (similar term)|cheesed off (similar term)|browned off (similar term)|disgusted (similar term)|fed up (similar term)|sick (similar term)|sick of (similar term)|tired of (similar term)|frowning (similar term)|offended (similar term)|pained (similar term)|discontented (related term)|discontent (related term)|pleased (antonym)
+displeasing|1
+(adj)|disconcerting (similar term)|upsetting (similar term)|exasperating (similar term)|infuriating (similar term)|maddening (similar term)|vexing (similar term)|off-putting (similar term)|ugly (related term)|unpleasant (related term)|pleasing (antonym)
+displeasure|1
+(noun)|dissatisfaction (generic term)|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+displume|2
+(verb)|deplume|plunder (generic term)|despoil (generic term)|loot (generic term)|reave (generic term)|strip (generic term)|rifle (generic term)|ransack (generic term)|pillage (generic term)|foray (generic term)
+(verb)|pluck|pull|tear|deplume|deplumate|strip (generic term)
+disport|2
+(verb)|amuse|divert|entertain (generic term)
+(verb)|frolic|lark|rollick|skylark|sport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+disposable|3
+(adj)|available (similar term)|usable (similar term)|useable (similar term)|expendable (similar term)|spendable (similar term)|fluid (similar term)|liquid (similar term)|nondisposable (antonym)
+(adj)|throwaway (similar term)|nondisposable (antonym)
+(noun)|item (generic term)
+disposable income|1
+(noun)|income (generic term)
+disposal|4
+(noun)|power (generic term)|powerfulness (generic term)
+(noun)|administration|management (generic term)|direction (generic term)
+(noun)|disposition|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|electric pig|garbage disposal|kitchen appliance (generic term)
+disposal plant|1
+(noun)|sewage disposal plant|plant (generic term)|works (generic term)|industrial plant (generic term)
+dispose|4
+(verb)|sell (generic term)
+(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 (generic term)|remove (generic term)
+(verb)|incline|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)|indispose (antonym)
+(verb)|qualify|prepare (generic term)|groom (generic term)|train (generic term)|disqualify (antonym)
+dispose of|1
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+disposed|2
+(adj)|fain|inclined|prepared|willing (similar term)
+(adj)|apt|given|minded|tending|inclined (similar term)
+disposition|4
+(noun)|temperament|nature (generic term)
+(noun)|disposal|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|inclination|tendency|attitude (generic term)|mental attitude (generic term)
+(noun)|property (generic term)
+dispossess|1
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+dispossessed|1
+(adj)|homeless|roofless|unfortunate (similar term)
+dispossession|2
+(noun)|eviction|legal ouster|due process (generic term)|due process of law (generic term)
+(noun)|exorcism|supernaturalism (generic term)
+dispraise|1
+(noun)|disparagement|disapproval (generic term)
+dispread|1
+(verb)|expand (generic term)|spread out (generic term)
+disproof|2
+(noun)|falsification|refutation|evidence (generic term)|grounds (generic term)
+(noun)|falsification|falsifying|refutation|refutal|determination (generic term)|finding (generic term)
+disproportion|1
+(noun)|disparity (generic term)|proportion (antonym)
+disproportional|1
+(adj)|disproportionate|proportionate (antonym)
+disproportionate|2
+(adj)|disproportional|proportionate (antonym)
+(adj)|incommensurate (similar term)
+disproportionately|1
+(adv)|proportionately (antonym)
+disprove|1
+(verb)|confute|negate (generic term)|contradict (generic term)|prove (antonym)
+disprover|1
+(noun)|rebutter|refuter|confuter|debater (generic term)|arguer (generic term)
+disputable|2
+(adj)|debatable|contestable (similar term)
+(adj)|arguable|debatable|moot|controversial (similar term)
+disputant|1
+(noun)|controversialist|eristic|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+disputation|2
+(noun)|debate|public debate|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+(noun)|controversy|contention|contestation|disceptation|tilt|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+disputatious|1
+(adj)|contentious|combative|disputative|litigious|argumentative (similar term)
+disputatiously|1
+(adv)|argumentatively
+disputative|1
+(adj)|contentious|combative|disputatious|litigious|argumentative (similar term)
+dispute|4
+(noun)|difference|difference of opinion|conflict|disagreement (generic term)
+(noun)|contravention|resistance (generic term)
+(verb)|challenge|gainsay|contest (generic term)|contend (generic term)|repugn (generic term)
+(verb)|quarrel|scrap|argufy|altercate|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+disputed|1
+(adj)|controversial (similar term)
+disqualification|2
+(noun)|unfitness (generic term)
+(noun)|prevention (generic term)|bar (generic term)
+disqualified|1
+(adj)|ineligible (similar term)
+disqualify|2
+(verb)|unfit|indispose|change (generic term)|alter (generic term)|modify (generic term)|qualify (antonym)
+(verb)|pronounce (generic term)|label (generic term)|judge (generic term)|qualify (antonym)
+disqualifying|1
+(adj)|disabling|enabling (antonym)
+disquiet|3
+(noun)|anxiousness|anxiety (generic term)
+(noun)|unease|uneasiness|discomposure (generic term)
+(verb)|perturb|unhinge|trouble|cark|distract|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+disquieted|1
+(adj)|distressed|disturbed|upset|worried|troubled (similar term)
+disquieting|1
+(adj)|uncomfortable (similar term)
+disquietude|1
+(noun)|edginess|uneasiness|inquietude|anxiety (generic term)
+disquisition|1
+(noun)|essay (generic term)
+disraeli|1
+(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman (generic term)|solon (generic term)|national leader (generic term)
+disregard|5
+(noun)|neglect|inattention (generic term)
+(noun)|neglect|mistreatment (generic term)
+(verb)|ignore|snub|cut|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|dismiss|brush aside|brush off|discount|push aside|ignore|reject (generic term)
+(verb)|neglect|ignore
+disregarded|1
+(adj)|forgotten|unnoticed (similar term)
+disregarding|1
+(adv)|regardless|irrespective|disregardless|no matter
+disregardless|1
+(adv)|regardless|irrespective|no matter|disregarding
+disrepair|1
+(noun)|unsoundness (generic term)
+disreputability|1
+(noun)|unrespectability|disreputableness|dishonorableness (generic term)|dishonourableness (generic term)|reputability (antonym)|respectability (antonym)
+disreputable|1
+(adj)|discreditable (similar term)|discredited (similar term)|damaged (similar term)|ill-famed (similar term)|infamous (similar term)|notorious (similar term)|louche (similar term)|shady (similar term)|seamy (similar term)|seedy (similar term)|sleazy (similar term)|sordid (similar term)|squalid (similar term)|unrespected (similar term)|dishonorable (related term)|dishonourable (related term)|unrespectable (related term)|reputable (antonym)
+disreputable person|1
+(noun)|unwelcome person (generic term)|persona non grata (generic term)
+disreputableness|1
+(noun)|unrespectability|disreputability|dishonorableness (generic term)|dishonourableness (generic term)|reputability (antonym)|respectability (antonym)
+disreputably|1
+(adv)|reputably (antonym)
+disrepute|1
+(noun)|discredit|dishonor (generic term)|dishonour (generic term)|repute (antonym)
+disrespect|5
+(noun)|discourtesy|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)|respect (antonym)
+(noun)|contempt|discourtesy (generic term)|rudeness (generic term)
+(verb)|relate (generic term)|respect (antonym)
+(verb)|disesteem|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|esteem (antonym)|respect (antonym)
+disrespectful|2
+(adj)|annihilating (similar term)|devastating (similar term)|withering (similar term)|contemptuous (similar term)|disdainful (similar term)|insulting (similar term)|scornful (similar term)|contumelious (similar term)|derisive (similar term)|gibelike (similar term)|jeering (similar term)|mocking (similar term)|taunting (similar term)|impious (similar term)|undutiful (similar term)|impudent (similar term)|insolent (similar term)|snotty-nosed (similar term)|flip (similar term)|undeferential (similar term)|immodest (related term)|discourteous (related term)|irreverent (related term)|offensive (related term)|sarcastic (related term)|respectful (antonym)
+(adj)|aweless|awless|irreverent (similar term)
+disrespectfully|1
+(adv)|respectfully (antonym)
+disrobe|1
+(verb)|undress|discase|uncase|unclothe|strip|strip down|peel|take off (generic term)|dress (antonym)|dress (antonym)
+disrupt|2
+(verb)|interrupt|break up|cut off|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|interrupt|chime in (generic term)|cut in (generic term)|put in (generic term)|butt in (generic term)|chisel in (generic term)|barge in (generic term)|break in (generic term)
+disrupted|1
+(adj)|discontinuous (similar term)|noncontinuous (similar term)
+disrupting explosive|1
+(noun)|bursting explosive|high explosive (generic term)
+disruption|4
+(noun)|break|interruption|gap|delay (generic term)|holdup (generic term)
+(noun)|disturbance|commotion|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+(noun)|dislocation|interruption (generic term)|break (generic term)
+(noun)|perturbation|disturbance (generic term)
+disruptive|1
+(adj)|riotous|troubled|tumultuous|turbulent|unquiet (similar term)
+diss|1
+(verb)|insult|affront|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+dissatisfaction|1
+(noun)|discontentment (generic term)|discontent (generic term)|discontentedness (generic term)|satisfaction (antonym)
+dissatisfactory|1
+(adj)|disappointing|unsatisfying|unsatisfactory (similar term)
+dissatisfied|1
+(adj)|disgruntled|discontented (similar term)|discontent (similar term)
+dissatisfy|1
+(verb)|displease (generic term)|satisfy (antonym)
+dissect|2
+(verb)|cut (generic term)
+(verb)|analyze|analyse|break down|take apart|synthesize (antonym)
+dissected|1
+(adj)|cleft|compound (similar term)
+dissection|3
+(noun)|cut (generic term)|cutting (generic term)
+(noun)|analysis (generic term)|analytic thinking (generic term)
+(noun)|analysis (generic term)
+dissemble|3
+(verb)|feign|sham|pretend|affect|misrepresent (generic term)|belie (generic term)
+(verb)|cloak|mask|disguise (generic term)
+(verb)|pretend|act
+dissembler|1
+(noun)|hypocrite|dissimulator|phony|phoney|pretender|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+dissembling|3
+(adj)|dissimulating|dissimulative|insincere (similar term)
+(noun)|pretense|pretence|feigning|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|deception|deceit|dissimulation|falsification (generic term)|misrepresentaation (generic term)
+disseminate|1
+(verb)|circulate|circularize|circularise|distribute|propagate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+disseminated lupus erythematosus|1
+(noun)|systemic lupus erythematosus|SLE|lupus (generic term)
+disseminated multiple sclerosis|1
+(noun)|multiple sclerosis|MS|disseminated sclerosis|sclerosis (generic term)|induration (generic term)|degenerative disorder (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+disseminated sclerosis|1
+(noun)|multiple sclerosis|MS|disseminated multiple sclerosis|sclerosis (generic term)|induration (generic term)|degenerative disorder (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+disseminating|1
+(adj)|diffusing|diffusive|dispersive|disseminative|scattering|spreading|distributive (similar term)
+dissemination|3
+(noun)|airing|public exposure|spreading|transmission (generic term)
+(noun)|diffusion|distribution (generic term)|dispersion (generic term)
+(noun)|dispersion|dispersal|diffusion|spread (generic term)|spreading (generic term)
+disseminative|1
+(adj)|diffusing|diffusive|dispersive|disseminating|scattering|spreading|distributive (similar term)
+disseminator|1
+(noun)|propagator|communicator (generic term)
+dissension|2
+(noun)|discord|disagreement (generic term)
+(noun)|disagreement|dissonance|conflict (generic term)|agreement (antonym)
+dissent|6
+(noun)|objection (generic term)
+(noun)|disagreement (generic term)
+(noun)|protest|objection|resistance (generic term)
+(verb)|disagree (generic term)|differ (generic term)|dissent (generic term)|take issue (generic term)|assent (antonym)
+(verb)|protest|resist|oppose (generic term)|controvert (generic term)|contradict (generic term)
+(verb)|disagree|differ|take issue|agree (antonym)
+dissenter|1
+(noun)|dissident|protester|objector|contestant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dissentient|2
+(adj)|recusant|unorthodox (similar term)
+(adj)|dissenting|dissident|negative (similar term)
+dissenting|1
+(adj)|dissentient|dissident|negative (similar term)
+dissenting opinion|1
+(noun)|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+dissentious|1
+(adj)|divisive|factious|discordant (similar term)
+dissertate|1
+(verb)|hold forth|discourse|talk (generic term)|speak (generic term)
+dissertation|1
+(noun)|thesis|treatise (generic term)
+disservice|1
+(noun)|ill service|ill turn|injury (generic term)|service (antonym)
+dissever|1
+(verb)|divide|split|split up|separate|carve up|change integrity (generic term)|unite (antonym)
+dissidence|1
+(noun)|disagreement (generic term)
+dissident|3
+(adj)|heretical|heterodox|unorthodox (similar term)
+(adj)|dissentient|dissenting|negative (similar term)
+(noun)|dissenter|protester|objector|contestant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dissident irish republican army|1
+(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+dissilience|1
+(noun)|emergence (generic term)|egress (generic term)|issue (generic term)
+dissilient|1
+(adj)|nascent (similar term)
+dissimilar|3
+(adj)|similar (antonym)
+(adj)|unalike|alike (antonym)
+(adj)|unlike|different|like (antonym)
+dissimilarity|1
+(noun)|unsimilarity|difference (generic term)|similarity (antonym)
+dissimilate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|assimilate (antonym)
+(verb)|change (generic term)|assimilate (antonym)
+dissimilation|2
+(noun)|linguistic process (generic term)
+(noun)|catabolism|katabolism|destructive metabolism|organic process (generic term)|biological process (generic term)|anabolism (antonym)
+dissimilitude|1
+(noun)|unlikeness|dissimilarity (generic term)|unsimilarity (generic term)|similitude (antonym)|likeness (antonym)
+dissimulate|1
+(verb)|disguise (generic term)
+dissimulating|1
+(adj)|dissembling|dissimulative|insincere (similar term)
+dissimulation|1
+(noun)|deception|deceit|dissembling|falsification (generic term)|misrepresentaation (generic term)
+dissimulative|1
+(adj)|dissembling|dissimulating|insincere (similar term)
+dissimulator|1
+(noun)|hypocrite|dissembler|phony|phoney|pretender|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+dissipate|4
+(verb)|disperse|dispel|break up|scatter|separate (generic term)|divide (generic term)
+(verb)|disperse|scatter|spread out|separate (generic term)|part (generic term)|split (generic term)
+(verb)|fritter|frivol away|shoot|fritter away|fool|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|live (generic term)
+dissipated|2
+(adj)|debauched|degenerate|degraded|dissolute|libertine|profligate|riotous|fast|immoral (similar term)
+(adj)|betting|card-playing|sporting|indulgent (similar term)
+dissipation|3
+(noun)|dispersion (generic term)|scattering (generic term)
+(noun)|profligacy|dissolution|licentiousness|looseness|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+(noun)|waste|wastefulness|activity (generic term)
+dissociable|1
+(adj)|separable|severable|divisible (similar term)
+dissociate|3
+(verb)|disassociate|divorce|disunite|disjoint|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|decouple|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)|associate (antonym)
+(verb)|decompose (generic term)|break up (generic term)|break down (generic term)
+dissociation|3
+(noun)|separation (generic term)
+(noun)|disassociation|psychological state (generic term)|mental state (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+dissociation constant|1
+(noun)|equilibrium constant (generic term)
+dissociative|1
+(adj)|divisible (similar term)
+dissociative disorder|1
+(noun)|dissociation (generic term)|disassociation (generic term)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+dissolubility|1
+(noun)|solubleness|physical property (generic term)
+dissoluble|1
+(adj)|dissolvable|soluble (similar term)
+dissolute|1
+(adj)|debauched|degenerate|degraded|dissipated|libertine|profligate|riotous|fast|immoral (similar term)
+dissolutely|1
+(adv)|profligately
+dissoluteness|1
+(noun)|incontinence|self-gratification|indiscipline (generic term)|undiscipline (generic term)
+dissolution|5
+(noun)|dissolving|liquefaction (generic term)
+(noun)|disintegration|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|profligacy|dissipation|licentiousness|looseness|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+(noun)|adjournment|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|breakup|termination (generic term)|ending (generic term)|conclusion (generic term)
+dissolution of marriage|1
+(noun)|annulment (generic term)|invalidation (generic term)
+dissolvable|1
+(adj)|dissoluble|soluble (similar term)
+dissolve|11
+(noun)|transition (generic term)
+(verb)|resolve|break up|change integrity (generic term)
+(verb)|disintegrate (generic term)
+(verb)|fade out|fade away|change state (generic term)|turn (generic term)
+(verb)|disband|break up (generic term)
+(verb)|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|break down (generic term)|lose it (generic term)|snap (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|thaw|unfreeze|unthaw|dethaw|melt|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|break up|end (generic term)|terminate (generic term)
+(verb)|dismiss|change (generic term)|alter (generic term)|modify (generic term)
+dissolved|1
+(adj)|melted (similar term)|liquid (similar term)|liquified (similar term)
+dissolvent|1
+(noun)|solvent|dissolver|dissolving agent|resolvent|medium (generic term)
+dissolver|1
+(noun)|solvent|dissolvent|dissolving agent|resolvent|medium (generic term)
+dissolving|1
+(noun)|dissolution|liquefaction (generic term)
+dissolving agent|1
+(noun)|solvent|dissolvent|dissolver|resolvent|medium (generic term)
+dissonance|3
+(noun)|disagreement|dissension|conflict (generic term)|agreement (antonym)
+(noun)|noise|racket|sound (generic term)|auditory sensation (generic term)
+(noun)|sound property (generic term)|harmony (antonym)
+dissonant|3
+(adj)|unmusical|nonmusical|musical (antonym)
+(adj)|unresolved|inharmonious (similar term)|unharmonious (similar term)
+(adj)|discordant|disharmonious|inharmonic|inharmonious (similar term)|unharmonious (similar term)
+dissonate|2
+(verb)|sound (generic term)
+(verb)|disharmonize|change (generic term)|alter (generic term)|modify (generic term)
+dissuade|1
+(verb)|deter|rede (generic term)|advise (generic term)|counsel (generic term)|persuade (antonym)
+dissuasion|2
+(noun)|discouragement (generic term)
+(noun)|communication (generic term)|communicating (generic term)|persuasion (antonym)
+dissuasive|1
+(adj)|admonitory (similar term)|cautionary (similar term)|exemplary (similar term)|monitory (similar term)|warning (similar term)|discouraging (similar term)|discouraging (related term)|persuasive (antonym)
+dissyllable|1
+(noun)|disyllable|word (generic term)
+dissymmetry|1
+(noun)|asymmetry|imbalance|spatial property (generic term)|spatiality (generic term)|symmetry (antonym)
+distaff|3
+(adj)|female|feminine (similar term)
+(noun)|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|staff (generic term)
+distal|2
+(adj)|proximal (antonym)
+(adj)|lateral (similar term)|mesial (antonym)
+distal muscular dystrophy|1
+(noun)|muscular dystrophy (generic term)|dystrophy (generic term)
+distance|8
+(noun)|spacing (generic term)|spatial arrangement (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|length|size (generic term)
+(noun)|aloofness|indifference (generic term)
+(noun)|space|time interval (generic term)|interval (generic term)
+(noun)|point (generic term)|point in time (generic term)
+(verb)|keep (generic term)|maintain (generic term)|hold (generic term)
+(verb)|outdistance|outstrip|leave behind (generic term)
+distance vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+distant|5
+(adj)|deep (similar term)|extreme (similar term)|far-flung (similar term)|long-distance (similar term)|nonadjacent (similar term)|out-of-town (similar term)|yonder (similar term)|yon (similar term)|far (related term)|close (antonym)
+(adj)|faraway (similar term)|loosely knit (similar term)|remote (similar term)|removed (similar term)|ulterior (similar term)|close (antonym)
+(adj)|aloof|upstage|reserved (similar term)
+(adj)|remote|removed|far (similar term)
+(adj)|remote|far (similar term)
+distaste|1
+(noun)|antipathy|aversion|dislike (generic term)
+distasteful|2
+(adj)|unsavory|unsavoury|unpalatable (similar term)
+(adj)|disgusting|disgustful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+distastefully|1
+(adv)|disgustingly|revoltingly|sickeningly
+distastefulness|2
+(noun)|disgustingness|nauseatingness|sickeningness|unsavoriness|unpalatability (generic term)|unpalatableness (generic term)
+(noun)|offensiveness|odiousness|unpleasantness (generic term)
+distemper|6
+(noun)|animal disease (generic term)
+(noun)|ill humor|ill humour|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|good humor (antonym)
+(noun)|paint (generic term)
+(noun)|painting (generic term)|picture (generic term)
+(noun)|painting (generic term)
+(verb)|paint (generic term)
+distend|3
+(verb)|dilate|widen (generic term)
+(verb)|bloat (generic term)
+(verb)|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+distended|2
+(adj)|bloated|puffed|puffy|swollen|intumescent|tumescent|tumid|turgid|unhealthy (similar term)
+(adj)|swollen|expanded (similar term)
+distensible|1
+(adj)|expansive (similar term)
+distension|2
+(noun)|distention|expansion (generic term)|enlargement (generic term)
+(noun)|dilatation|distention|physiological state (generic term)|physiological condition (generic term)
+distention|2
+(noun)|dilatation|distension|physiological state (generic term)|physiological condition (generic term)
+(noun)|distension|expansion (generic term)|enlargement (generic term)
+distich|1
+(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+distil|4
+(verb)|condense|distill|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|distill|extract|make (generic term)|create (generic term)
+(verb)|distill|change (generic term)
+(verb)|distill|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+distill|5
+(verb)|purify|sublimate|make pure|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|distil|change (generic term)
+(verb)|extract|distil|make (generic term)|create (generic term)
+(verb)|condense|distil|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|distil|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+distillate|1
+(noun)|distillation|liquid (generic term)
+distillation|2
+(noun)|distillment|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|distillate|liquid (generic term)
+distilled water|1
+(noun)|water (generic term)|H2O (generic term)
+distiller|1
+(noun)|manufacturer (generic term)|producer (generic term)
+distillery|1
+(noun)|still|plant (generic term)|works (generic term)|industrial plant (generic term)
+distillment|1
+(noun)|distillation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+distinct|5
+(adj)|chiseled (similar term)|well-defined (similar term)|clear (similar term)|clean-cut (similar term)|clear-cut (similar term)|crisp (similar term)|sharp (similar term)|crystalline (similar term)|defined (similar term)|outlined (similar term)|knifelike (similar term)|razor-sharp (similar term)|clear (related term)|definite (related term)|precise (related term)|indistinct (antonym)
+(adj)|distinguishable|different (similar term)
+(adj)|discrete|separate (similar term)
+(adj)|decided|definite (similar term)
+(adj)|clear-cut|trenchant|clear (similar term)
+distinction|4
+(noun)|differentiation|discrimination (generic term)|secernment (generic term)
+(noun)|eminence|preeminence|note|high status (generic term)
+(noun)|quality (generic term)
+(noun)|difference (generic term)
+distinctive|2
+(adj)|typical|characteristic (similar term)
+(adj)|classifiable|identifiable (similar term)
+distinctive feature|1
+(noun)|peculiarity|distinguishing characteristic|feature (generic term)|characteristic (generic term)
+distinctiveness|2
+(noun)|peculiarity|specialness|specialty|speciality|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|disparateness|dissimilarity (generic term)|unsimilarity (generic term)
+distinctly|1
+(adv)|clearly
+distinctness|3
+(noun)|sharpness|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)|softness (antonym)|indistinctness (antonym)
+(noun)|discreteness|separateness|severalty|separation (generic term)
+(noun)|otherness|separateness|difference (generic term)
+distinguish|5
+(verb)|separate|differentiate|secern|secernate|severalize|severalise|tell|tell apart|identify (generic term)|place (generic term)
+(verb)|recognize|recognise|discern|pick out|make out|tell apart
+(verb)|mark|differentiate|qualify (generic term)|characterize (generic term)|characterise (generic term)
+(verb)|signalize|signalise|mark (generic term)
+(verb)|identify|discover|key|key out|describe|name
+distinguishable|2
+(adj)|differentiable (similar term)|discriminable (similar term)|indistinguishable (antonym)
+(adj)|distinct|different (similar term)
+distinguished|3
+(adj)|eminent|important (similar term)|of import (similar term)
+(adj)|grand|imposing|magisterial|dignified (similar term)
+(adj)|differentiated (similar term)
+distinguished conduct medal|1
+(noun)|Distinguished Conduct Medal|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+distinguished flying cross|1
+(noun)|Distinguished Flying Cross|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+distinguished service cross|1
+(noun)|Distinguished Service Cross|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+distinguished service medal|1
+(noun)|Distinguished Service Medal|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+distinguished service order|1
+(noun)|Distinguished Service Order|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+distinguishing|1
+(adj)|identifying|characteristic (similar term)
+distinguishing characteristic|1
+(noun)|peculiarity|distinctive feature|feature (generic term)|characteristic (generic term)
+distomatosis|1
+(noun)|black disease|sheep rot|liver rot|animal disease (generic term)
+distort|5
+(verb)|falsify|garble|warp|misrepresent (generic term)|belie (generic term)
+(verb)|twist|twine|change shape (generic term)|change form (generic term)|deform (generic term)|untwist (antonym)
+(verb)|contort|deform|wring|twist (generic term)|twine (generic term)|distort (generic term)
+(verb)|tinge|color|colour|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|deform|strain|shape (generic term)|form (generic term)
+distortable|1
+(adj)|changeable (similar term)|changeful (similar term)
+distorted|3
+(adj)|contorted|twisted|crooked (similar term)
+(adj)|deformed|ill-shapen|malformed|misshapen|unshapely (similar term)
+(adj)|misrepresented|perverted|twisted|disingenuous (similar term)|artful (similar term)
+distorted shape|1
+(noun)|distortion|shape (generic term)|form (generic term)
+distortion|6
+(noun)|deformation|damage (generic term)|harm (generic term)|impairment (generic term)
+(noun)|distorted shape|shape (generic term)|form (generic term)
+(noun)|aberration|optical aberration|optical phenomenon (generic term)
+(noun)|electrical phenomenon (generic term)|acoustic phenomenon (generic term)
+(noun)|overrefinement|straining|torture|twisting|falsification (generic term)|misrepresentaation (generic term)
+(noun)|mistake (generic term)|error (generic term)|fault (generic term)
+distortionist|1
+(noun)|painter (generic term)
+distract|2
+(verb)|deflect|confuse (generic term)|flurry (generic term)|disconcert (generic term)|put off (generic term)
+(verb)|perturb|unhinge|disquiet|trouble|cark|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+distracted|2
+(adj)|brainsick|crazy|demented|disturbed|mad|sick|unbalanced|unhinged|insane (similar term)
+(adj)|distrait|inattentive (similar term)
+distraction|4
+(noun)|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(noun)|inattention (generic term)
+(noun)|beguilement|entertainment (generic term)|amusement (generic term)
+(noun)|misdirection|revision (generic term)|alteration (generic term)
+distrain|3
+(verb)|levy (generic term)|impose (generic term)
+(verb)|impound (generic term)|attach (generic term)|sequester (generic term)|confiscate (generic term)|seize (generic term)
+(verb)|reclaim (generic term)|repossess (generic term)
+distraint|1
+(noun)|distress|seizure (generic term)
+distrait|1
+(adj)|distracted|inattentive (similar term)
+distraught|1
+(adj)|overwrought|agitated (similar term)
+distress|5
+(noun)|hurt|suffering|pain (generic term)|painfulness (generic term)
+(noun)|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|pain (generic term)|hurting (generic term)
+(noun)|distraint|seizure (generic term)
+(verb)|disturb (generic term)|upset (generic term)|trouble (generic term)
+distress call|1
+(noun)|distress signal|signal (generic term)|signaling (generic term)|sign (generic term)
+distress signal|1
+(noun)|distress call|signal (generic term)|signaling (generic term)|sign (generic term)
+distressed|4
+(adj)|hard-pressed|hard put|in a bad way|troubled (similar term)
+(adj)|dysphoric|unhappy|dejected (related term)|unhappy (related term)|euphoric (antonym)
+(adj)|stressed|in a bad way|troubled (similar term)
+(adj)|disquieted|disturbed|upset|worried|troubled (similar term)
+distressful|1
+(adj)|distressing|disturbing|perturbing|troubling|worrisome|worrying|heavy (similar term)
+distressfulness|1
+(noun)|seriousness|badness (generic term)|severity (generic term)|severeness (generic term)
+distressing|2
+(adj)|distressful|disturbing|perturbing|troubling|worrisome|worrying|heavy (similar term)
+(adj)|deplorable|lamentable|pitiful|sad|sorry|bad (similar term)
+distressingly|1
+(adv)|painfully
+distressingness|1
+(noun)|painfulness|quality (generic term)
+distributary|1
+(noun)|branch (generic term)|tributary (antonym)
+distribute|10
+(verb)|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+(verb)|spread|spread out (related term)|spread out (related term)|spread out (related term)|spread out (related term)|gather (antonym)
+(verb)|transfer (generic term)
+(verb)|give out|hand out|pass out|give (generic term)|gift (generic term)|present (generic term)
+(verb)|circulate|pass around|pass on|move (generic term)|displace (generic term)
+(verb)|circulate|circularize|circularise|disseminate|propagate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|spread (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|exist (generic term)|be (generic term)
+(verb)|be (generic term)
+(verb)|stagger|arrange (generic term)|set up (generic term)
+distributed|1
+(adj)|apportioned (similar term)|dealt out (similar term)|doled out (similar term)|meted out (similar term)|parceled out (similar term)|broken (similar term)|diffuse (similar term)|diffused (similar term)|dispensed (similar term)|dispersed (similar term)|spread (similar term)|divided (similar term)|divided up (similar term)|shared (similar term)|shared out (similar term)|encyclical (similar term)|fanned (similar term)|spread-out (similar term)|far-flung (similar term)|widespread (similar term)|low-density (similar term)|rationed (similar term)|scattered (similar term)|separated (similar term)|spaced (similar term)|sparse (similar term)|thin (similar term)|splashed (similar term)|straggly (similar term)|unfocused (similar term)|unfocussed (similar term)|distributive (related term)|concentrated (antonym)
+distributed data processing|1
+(noun)|remote-access data processing|teleprocessing|data processing (generic term)
+distributed fire|1
+(noun)|fire (generic term)|firing (generic term)
+distributer|2
+(noun)|distributor|supplier (generic term)|provider (generic term)
+(noun)|distributor|electrical distributor|electrical device (generic term)
+distribution|4
+(noun)|statistical distribution|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|dispersion|spacing (generic term)|spatial arrangement (generic term)|concentration (antonym)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+distribution agreement|1
+(noun)|contract (generic term)
+distribution channel|1
+(noun)|channel|marketing (generic term)
+distribution cost|1
+(noun)|cost (generic term)
+distribution free statistic|1
+(noun)|nonparametric statistic|statistic (generic term)
+distribution law|1
+(noun)|law (generic term)|law of nature (generic term)
+distribution list|1
+(noun)|list (generic term)|listing (generic term)
+distributional|1
+(adj)|spacing|spatial arrangement (related term)
+distributive|1
+(adj)|allocable (similar term)|allocatable (similar term)|apportionable (similar term)|diffusing (similar term)|diffusive (similar term)|dispersive (similar term)|disseminative (similar term)|disseminating (similar term)|scattering (similar term)|spreading (similar term)|immanent (similar term)|permeant (similar term)|permeating (similar term)|permeative (similar term)|pervasive (similar term)|separative (similar term)|suffusive (similar term)|divided (related term)|distributed (related term)|collective (antonym)
+distributive shock|1
+(noun)|shock (generic term)
+distributor|4
+(noun)|distributer|supplier (generic term)|provider (generic term)
+(noun)|allocator|authority (generic term)
+(noun)|company (generic term)
+(noun)|distributer|electrical distributor|electrical device (generic term)
+distributor cam|1
+(noun)|cam (generic term)
+distributor cap|1
+(noun)|cap (generic term)
+distributor housing|1
+(noun)|housing (generic term)
+distributor point|1
+(noun)|breaker point|point|contact (generic term)|tangency (generic term)
+district|2
+(noun)|territory|territorial dominion|dominion|region (generic term)
+(verb)|zone|regulate (generic term)|regularize (generic term)|regularise (generic term)|order (generic term)|govern (generic term)
+district attorney|1
+(noun)|DA|prosecutor (generic term)|public prosecutor (generic term)|prosecuting officer (generic term)|prosecuting attorney (generic term)
+district line|1
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+district manager|1
+(noun)|director (generic term)|manager (generic term)|managing director (generic term)
+district of columbia|1
+(noun)|District of Columbia|D.C.|DC|federal district (generic term)
+distrust|3
+(noun)|misgiving|mistrust|suspicion|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|distrustfulness|mistrust|trait (generic term)|trust (antonym)
+(verb)|mistrust|suspect|disbelieve (generic term)|discredit (generic term)|trust (antonym)|trust (antonym)
+distrustful|2
+(adj)|cynical (similar term)|misanthropic (similar term)|misanthropical (similar term)|doubting (similar term)|questioning (similar term)|skeptical (similar term)|sceptical (similar term)|jealous (similar term)|green-eyed (similar term)|overjealous (similar term)|leery (similar term)|mistrustful (similar term)|suspicious (similar term)|untrusting (similar term)|wary (similar term)|misogynic (similar term)|oversuspicious (similar term)|incredulous (related term)|trustful (antonym)
+(adj)|incredulous (similar term)
+distrustfully|1
+(adv)|mistrustfully|trustfully (antonym)
+distrustfulness|1
+(noun)|distrust|mistrust|trait (generic term)|trust (antonym)
+disturb|5
+(verb)|upset|trouble|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|agitate|vex|commove|shake up|stir up|raise up|move (generic term)|displace (generic term)
+(verb)|touch|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|interrupt|act (generic term)|move (generic term)
+(verb)|damage (generic term)
+disturbance|7
+(noun)|perturbation|activity (generic term)
+(noun)|perturbation|upset|agitation (generic term)
+(noun)|disruption|commotion|flutter|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+(noun)|affray|fray|ruffle|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|mental disorder|mental disturbance|psychological disorder|folie|disorder (generic term)|upset (generic term)
+(noun)|noise|interference|trouble (generic term)
+disturbance of the peace|1
+(noun)|disorderly conduct|disorderly behavior|breach of the peace|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+disturbed|4
+(adj)|disarranged (similar term)
+(adj)|disquieted|distressed|upset|worried|troubled (similar term)
+(adj)|maladjusted|neurotic (similar term)|psychoneurotic (similar term)
+(adj)|brainsick|crazy|demented|distracted|mad|sick|unbalanced|unhinged|insane (similar term)
+disturber|1
+(noun)|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+disturbing|1
+(adj)|distressing|distressful|perturbing|troubling|worrisome|worrying|heavy (similar term)
+disulfiram|1
+(noun)|Antabuse|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+disunify|1
+(verb)|break apart|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)|unify (antonym)
+disunion|1
+(noun)|separation (generic term)|union (antonym)
+disunite|2
+(verb)|disassociate|dissociate|divorce|disjoint|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|separate|divide|part|move (generic term)|displace (generic term)
+disunited|1
+(adj)|disconnected|fragmented|split|divided (similar term)
+disunity|1
+(noun)|disagreement (generic term)|dissension (generic term)|dissonance (generic term)
+disuse|1
+(noun)|neglect|decline (generic term)|declination (generic term)
+disused|1
+(adj)|obsolete|noncurrent (similar term)
+disyllabic|1
+(adj)|syllabic (similar term)
+disyllable|1
+(noun)|dissyllable|word (generic term)
+dit|1
+(noun)|dot|telegraphic signal (generic term)|radiotelegraphic signal (generic term)
+dita|1
+(noun)|dita bark|devil tree|Alstonia scholaris|tree (generic term)
+dita bark|1
+(noun)|dita|devil tree|Alstonia scholaris|tree (generic term)
+ditch|8
+(noun)|excavation (generic term)
+(noun)|waterway (generic term)
+(verb)|abandon (generic term)|forsake (generic term)|desolate (generic term)|desert (generic term)
+(verb)|chuck|abandon (generic term)
+(verb)|dump|get rid of (generic term)|remove (generic term)
+(verb)|crash land (generic term)
+(verb)|crash (generic term)
+(verb)|trench|excavate (generic term)|dig (generic term)|hollow (generic term)
+ditch digger|1
+(noun)|mud digger|digger (generic term)
+ditch fern|1
+(noun)|royal fern|royal osmund|king fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+ditch reed|1
+(noun)|common reed|carrizo|Phragmites communis|reed (generic term)
+ditch spade|1
+(noun)|long-handled spade|spade (generic term)
+ditchmoss|1
+(noun)|Elodea|genus Elodea|pondweed|monocot genus (generic term)|liliopsid genus (generic term)
+dither|3
+(noun)|pother|fuss|tizzy|flap|agitation (generic term)
+(verb)|fret (generic term)
+(verb)|flap|pother|fuss (generic term)|niggle (generic term)|fret (generic term)
+dithered color|1
+(noun)|nonsolid color|nonsolid colour|dithered colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+dithered colour|1
+(noun)|nonsolid color|nonsolid colour|dithered color|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+dithering|1
+(noun)|video digitizing (generic term)
+dithyramb|2
+(noun)|address (generic term)|speech (generic term)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|hymn (generic term)|anthem (generic term)
+dithyrambic|1
+(adj)|address|speech|writing|written material|piece of writing (related term)
+dittany|1
+(noun)|fraxinella|burning bush|gas plant|Dictamnus alba|herb (generic term)|herbaceous plant (generic term)
+dittany of crete|1
+(noun)|cretan dittany|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum (generic term)
+ditto|2
+(noun)|ditto mark|mark (generic term)
+(verb)|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+ditto mark|1
+(noun)|ditto|mark (generic term)
+ditty|1
+(noun)|song (generic term)|vocal (generic term)
+ditty bag|1
+(noun)|kit (generic term)
+diuresis|1
+(noun)|symptom (generic term)
+diuretic|1
+(noun)|diuretic drug|water pill|drug (generic term)
+diuretic drug|1
+(noun)|diuretic|water pill|drug (generic term)
+diuril|1
+(noun)|chlorothiazide|Diuril|thiazide (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+diurnal|2
+(adj)|nocturnal (antonym)
+(adj)|cyclic (similar term)|cyclical (similar term)
+diurnal parallax|1
+(noun)|geocentric parallax|parallax (generic term)
+diurnal variation|1
+(noun)|variation (generic term)|fluctuation (generic term)
+diva|1
+(noun)|prima donna|opera star (generic term)|operatic star (generic term)
+divagate|1
+(verb)|digress|stray|wander|tell (generic term)
+divagation|2
+(noun)|digression|aside|excursus|parenthesis|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|diversion|deviation|digression|deflection|deflexion|turn (generic term)|turning (generic term)
+divalent|1
+(adj)|bivalent|power|powerfulness (related term)
+divan|4
+(noun)|sofa (generic term)|couch (generic term)|lounge (generic term)
+(noun)|diwan|privy council (generic term)
+(noun)|diwan|anthology (generic term)
+(noun)|diwan|boardroom (generic term)|council chamber (generic term)|chamber (generic term)
+divan bed|1
+(noun)|daybed|sofa (generic term)|couch (generic term)|lounge (generic term)
+divaricate|2
+(verb)|diverge (generic term)
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)
+divarication|1
+(noun)|branching (generic term)|ramification (generic term)|fork (generic term)|forking (generic term)
+dive|6
+(noun)|honkytonk|cabaret (generic term)|nightclub (generic term)|club (generic term)|nightspot (generic term)
+(noun)|diving|swimming (generic term)|swim (generic term)
+(noun)|nose dive|nosedive|descent (generic term)
+(verb)|plunge|plunk|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|submerge (generic term)|submerse (generic term)
+(verb)|swim (generic term)
+dive-bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+dive-bombing|1
+(noun)|bombing run (generic term)
+dive bomber|1
+(noun)|bomber (generic term)
+dive brake|1
+(noun)|airbrake|restraint (generic term)|constraint (generic term)
+diver|3
+(noun)|frogman|underwater diver|explorer (generic term)|adventurer (generic term)
+(noun)|plunger|swimmer (generic term)
+(noun)|loon|gaviiform seabird (generic term)
+diverge|4
+(verb)|move (generic term)|converge (antonym)
+(verb)|be (generic term)|converge (antonym)|converge (antonym)
+(verb)|converge (antonym)
+(verb)|deviate|vary|depart|differ (generic term)|conform (antonym)
+divergence|4
+(noun)|divergency|separation (generic term)
+(noun)|deviation|departure|difference|variation (generic term)|fluctuation (generic term)
+(noun)|divergency|series (generic term)|convergency (antonym)|convergence (antonym)
+(noun)|discrepancy|disagreement|variance|difference (generic term)
+divergency|2
+(noun)|divergence|series (generic term)|convergency (antonym)|convergence (antonym)
+(noun)|divergence|separation (generic term)
+divergent|2
+(adj)|different (similar term)
+(adj)|diverging|branching (similar term)|radiating (similar term)|oblique (related term)|convergent (antonym)
+divergent strabismus|1
+(noun)|walleye|exotropia|strabismus (generic term)|squint (generic term)
+divergent thinker|1
+(noun)|thinker (generic term)
+divergent thinking|1
+(noun)|out-of-the-box thinking|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)|convergent thinking (antonym)
+diverging|1
+(adj)|divergent|branching (similar term)|radiating (similar term)|oblique (related term)|convergent (antonym)
+diverging lens|1
+(noun)|concave lens|lens (generic term)|lense (generic term)|lens system (generic term)
+divers|1
+(adj)|diverse|different (similar term)
+diverse|2
+(adj)|divers|different (similar term)
+(adj)|various|different (similar term)
+diversely|1
+(adv)|variously|multifariously
+diverseness|1
+(noun)|diversity|multifariousness|variety|heterogeneity (generic term)|heterogeneousness (generic term)
+diversification|2
+(noun)|variegation|change (generic term)
+(noun)|condition (generic term)|status (generic term)
+diversified|1
+(adj)|varied (similar term)|wide-ranging (similar term)|heterogeneous (related term)|heterogenous (related term)|undiversified (antonym)
+diversify|3
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|radiate|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|branch out|broaden|change (generic term)|alter (generic term)|vary (generic term)|specialize (antonym)|specialise (antonym)
+diversion|3
+(noun)|recreation|activity (generic term)
+(noun)|deviation|digression|deflection|deflexion|divagation|turn (generic term)|turning (generic term)
+(noun)|diversionary attack|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+diversionary|1
+(adj)|indirect (similar term)
+diversionary attack|1
+(noun)|diversion|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+diversionary landing|1
+(noun)|diversion (generic term)|diversionary attack (generic term)
+diversionist|1
+(noun)|saboteur|wrecker|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+diversity|2
+(noun)|diverseness|multifariousness|variety|heterogeneity (generic term)|heterogeneousness (generic term)
+(noun)|variedness (generic term)
+divert|4
+(verb)|deviate|turn (generic term)
+(verb)|send (generic term)|direct (generic term)
+(verb)|amuse|disport|entertain (generic term)
+(verb)|hive off|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+diverted|1
+(adj)|amused|entertained|pleased (similar term)
+diverticulitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+diverticulosis|1
+(noun)|pathology (generic term)
+diverticulum|1
+(noun)|hernia (generic term)|herniation (generic term)
+divertimento|1
+(noun)|serenade|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+diverting|1
+(adj)|amusing|amusive|fun|entertaining (similar term)
+divertingly|1
+(adv)|amusingly
+divest|4
+(verb)|deprive|strip|take (generic term)
+(verb)|disinvest|free (generic term)|discharge (generic term)|invest (antonym)
+(verb)|disinvest|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)|invest (antonym)
+(verb)|strip|undress|disinvest|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+divestiture|2
+(noun)|court order (generic term)
+(noun)|sale (generic term)
+divi-divi|2
+(noun)|bean (generic term)
+(noun)|Caesalpinia coriaria|tree (generic term)
+dividable|1
+(adj)|divisible (similar term)
+divide|7
+(noun)|disagreement (generic term)|dissension (generic term)|dissonance (generic term)
+(noun)|watershed|water parting|line (generic term)
+(verb)|split|split up|separate|dissever|carve up|change integrity (generic term)|unite (antonym)
+(verb)|fraction|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|multiply (antonym)
+(verb)|separate|part|change (generic term)
+(verb)|separate
+(verb)|separate|disunite|part|move (generic term)|displace (generic term)
+divided|3
+(adj)|apart (similar term)|separate (similar term)|separated (similar term)|bicameral (similar term)|two-chambered (similar term)|bifid (similar term)|bifurcate (similar term)|biramous (similar term)|branched (similar term)|forked (similar term)|fork-like (similar term)|forficate (similar term)|pronged (similar term)|prongy (similar term)|bifurcated (similar term)|bilocular (similar term)|biloculate (similar term)|black-and-white (similar term)|chambered (similar term)|cloven (similar term)|cleft (similar term)|bisulcate (similar term)|dichotomous (similar term)|disconnected (similar term)|disunited (similar term)|fragmented (similar term)|split (similar term)|disjointed (similar term)|disjunct (similar term)|episodic (similar term)|four-pronged (similar term)|many-chambered (similar term)|metameric (similar term)|segmental (similar term)|segmented (similar term)|mullioned (similar term)|partitioned (similar term)|partitioned off (similar term)|pentamerous (similar term)|pronged (similar term)|tined (similar term)|sectional (similar term)|sectioned (similar term)|segmental (similar term)|split (similar term)|in disagreement (similar term)|subdivided (similar term)|three-pronged (similar term)|torn (similar term)|trifid (similar term)|two-pronged (similar term)|distributive (related term)|segregated (related term)|unintegrated (related term)|separate (related term)|united (antonym)
+(adj)|dual-lane|multilane (similar term)
+(adj)|divided up|shared|shared out|distributed (similar term)
+divided highway|1
+(noun)|dual carriageway|highway (generic term)|main road (generic term)
+divided up|1
+(adj)|divided|shared|shared out|distributed (similar term)
+dividend|3
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+(noun)|number (generic term)
+(noun)|bonus (generic term)|incentive (generic term)
+dividend warrant|1
+(noun)|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+divider|4
+(noun)|splitter|taxonomist (generic term)|taxonomer (generic term)|systematist (generic term)|lumper (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|partition|structure (generic term)|construction (generic term)
+(noun)|drafting instrument (generic term)
+dividing|2
+(adj)|divisional|disjunctive (similar term)
+(adj)|nonbearing (similar term)
+dividing line|1
+(noun)|line|demarcation|contrast|differentiation (generic term)|distinction (generic term)
+divina commedia|1
+(noun)|Divine Comedy|Divina Commedia|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+divination|3
+(noun)|guess (generic term)|conjecture (generic term)|supposition (generic term)|surmise (generic term)|surmisal (generic term)|speculation (generic term)|hypothesis (generic term)
+(noun)|prophecy|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+(noun)|foretelling|soothsaying|fortune telling|prophecy (generic term)|prognostication (generic term)|vaticination (generic term)
+divinatory|2
+(adj)|mantic|sibylline|sibyllic|vatic|vatical|prophetic (similar term)|prophetical (similar term)
+(adj)|conjectural|hypothetical|hypothetic|supposed|suppositional|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+divine|10
+(adj)|godly|heavenly (similar term)
+(adj)|providential|heavenly (similar term)
+(adj)|godlike|heavenly (similar term)
+(adj)|sacred (similar term)
+(adj)|godlike|superhuman (similar term)
+(adj)|elysian|inspired|glorious (similar term)
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+(noun)|cleric|churchman|ecclesiastic|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+divine comedy|1
+(noun)|Divine Comedy|Divina Commedia|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+divine guidance|1
+(noun)|inspiration|cognitive factor (generic term)
+divine law|1
+(noun)|law (generic term)|natural law (generic term)
+divine messenger|1
+(noun)|angel (generic term)
+divine office|1
+(noun)|Divine Office|office (generic term)
+divine right|1
+(noun)|divine right of kings|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+divine right of kings|1
+(noun)|divine right|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+divine service|1
+(noun)|service|religious service|religious ceremony (generic term)|religious ritual (generic term)
+divine unity|1
+(noun)|al-Tawhid|Al Tawhid|Divine Unity|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+diviner|1
+(noun)|visionary (generic term)|illusionist (generic term)|seer (generic term)
+diving|2
+(noun)|diving event|match (generic term)
+(noun)|dive|swimming (generic term)|swim (generic term)
+diving bell|1
+(noun)|submersible (generic term)
+diving board|1
+(noun)|springboard (generic term)
+diving dress|1
+(noun)|diving suit|protective garment (generic term)
+diving duck|1
+(noun)|duck (generic term)|dabbling duck (antonym)
+diving event|1
+(noun)|diving|match (generic term)
+diving petrel|1
+(noun)|pelagic bird (generic term)|oceanic bird (generic term)
+diving suit|1
+(noun)|diving dress|protective garment (generic term)
+divining rod|1
+(noun)|dowser|dowsing rod|waterfinder|water finder|stick (generic term)
+divinity|4
+(noun)|deity|god|immortal|spiritual being (generic term)|supernatural being (generic term)
+(noun)|quality (generic term)
+(noun)|divinity fudge|fudge (generic term)
+(noun)|theology|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+divinity fudge|1
+(noun)|divinity|fudge (generic term)
+divinyl ether|1
+(noun)|ether|ethoxyethane|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+divisibility|1
+(noun)|quality (generic term)
+divisible|1
+(adj)|cleavable (similar term)|dissociable (similar term)|separable (similar term)|severable (similar term)|dissociative (similar term)|dividable (similar term)|partible (similar term)|indivisible (antonym)
+division|12
+(noun)|army unit (generic term)
+(noun)|part|section|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|separation (generic term)
+(noun)|administrative unit (generic term)|administrative body (generic term)
+(noun)|arithmetic operation (generic term)
+(noun)|variance|discord (generic term)|dissension (generic term)
+(noun)|class|league (generic term)|conference (generic term)
+(noun)|biological group (generic term)
+(noun)|phylum (generic term)
+(noun)|air division|air unit (generic term)
+(noun)|naval division|naval unit (generic term)
+(noun)|partition|partitioning|segmentation|sectionalization|sectionalisation|separation (generic term)
+division anthophyta|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+division archaebacteria|1
+(noun)|division Archaebacteria|division (generic term)
+division bryophyta|1
+(noun)|Bryophyta|division Bryophyta|division (generic term)
+division chlorophyta|1
+(noun)|Chlorophyta|division Chlorophyta|division (generic term)
+division chrysophyta|1
+(noun)|Chrysophyta|division Chrysophyta|division (generic term)
+division cyanophyta|1
+(noun)|Cyanophyta|division Cyanophyta|division (generic term)
+division cynodontia|1
+(noun)|Cynodontia|division Cynodontia|division (generic term)
+division dicynodontia|1
+(noun)|Dicynodontia|division Dicynodontia|division (generic term)
+division eubacteria|1
+(noun)|division Eubacteria|division (generic term)
+division euglenophyta|1
+(noun)|Euglenophyta|division Euglenophyta|division (generic term)
+division eumycota|1
+(noun)|Eumycota|division Eumycota|division (generic term)
+division gymnomycota|1
+(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division (generic term)
+division gymnospermophyta|1
+(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class (generic term)
+division heterokontophyta|1
+(noun)|Heterokontophyta|division Heterokontophyta|division (generic term)
+division lichenes|1
+(noun)|Lichenes|division Lichenes|division (generic term)
+division magnoliophyta|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+division myxomycota|1
+(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division (generic term)
+division phaeophyta|1
+(noun)|Phaeophyta|division Phaeophyta|division (generic term)
+division protista|1
+(noun)|Protista|division Protista|division (generic term)
+division pteridophyta|1
+(noun)|Pteridophyta|division Pteridophyta|division (generic term)
+division rhodophyta|1
+(noun)|Rhodophyta|division Rhodophyta|division (generic term)
+division schizophyta|1
+(noun)|Schizophyta|division Schizophyta|division (generic term)
+division spermatophyta|1
+(noun)|Spermatophyta|division Spermatophyta|division (generic term)
+division tracheophyta|1
+(noun)|Tracheophyta|division Tracheophyta|division (generic term)
+divisional|3
+(adj)|army unit (related term)
+(adj)|dividing|disjunctive (similar term)
+(adj)|fractional (similar term)
+divisive|1
+(adj)|dissentious|factious|discordant (similar term)
+divisor|2
+(noun)|factor|integer (generic term)|whole number (generic term)
+(noun)|number (generic term)
+divorce|3
+(noun)|divorcement|separation (generic term)
+(verb)|disassociate|dissociate|disunite|disjoint|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|split up|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+divorce court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+divorce lawyer|1
+(noun)|lawyer (generic term)|attorney (generic term)
+divorced|1
+(adj)|unmarried (similar term)|single (similar term)
+divorced man|1
+(noun)|grass widower|man (generic term)|adult male (generic term)
+divorcee|1
+(noun)|grass widow|woman (generic term)|adult female (generic term)
+divorcement|1
+(noun)|divorce|separation (generic term)
+divot|2
+(noun)|pit (generic term)|cavity (generic term)
+(noun)|turf (generic term)|sod (generic term)|sward (generic term)|greensward (generic term)
+divulge|1
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|expose|impart|break|give away|let out|tell (generic term)
+divulgement|1
+(noun)|divulgence|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+divulgence|1
+(noun)|divulgement|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+divvy|1
+(noun)|dividend (generic term)
+divvy up|1
+(verb)|share|portion out|apportion|deal|distribute (generic term)|give out (generic term)|hand out (generic term)|pass out (generic term)
+diwan|3
+(noun)|divan|privy council (generic term)
+(noun)|divan|anthology (generic term)
+(noun)|divan|boardroom (generic term)|council chamber (generic term)|chamber (generic term)
+dix|1
+(noun)|Dix|Dorothea Dix|Dorothea Lynde Dix|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+dixie|2
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|pot (generic term)
+dixie cup|1
+(noun)|Dixie cup|paper cup|drinking cup|cup (generic term)
+dixiecrats|1
+(noun)|States' Rights Democratic Party|Dixiecrats|party (generic term)|political party (generic term)
+dixieland|1
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dizen|1
+(verb)|bedizen|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+dizygotic|1
+(adj)|dizygous
+dizygotic twin|1
+(noun)|fraternal twin|twin (generic term)
+dizygous|1
+(adj)|dizygotic
+dizzily|1
+(adv)|giddily|light-headedly
+dizziness|1
+(noun)|giddiness|lightheadedness|vertigo|symptom (generic term)
+dizzy|3
+(adj)|giddy|woozy|vertiginous|ill (similar term)|sick (similar term)
+(adj)|airheaded|empty-headed|featherbrained|giddy|light-headed|lightheaded|silly|frivolous (similar term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+dizzy gillespie|1
+(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter (generic term)|cornetist (generic term)
+dj|2
+(noun)|disk jockey|disc jockey|broadcaster (generic term)
+(verb)|disk-jockey|disc-jockey|DJ|comment (generic term)
+djakarta|1
+(noun)|Jakarta|Djakarta|capital of Indonesia|national capital (generic term)
+djanet|1
+(noun)|Djanet|town (generic term)
+djibouti|2
+(noun)|Djibouti|capital of Djibouti|national capital (generic term)|port (generic term)
+(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country (generic term)|African nation (generic term)
+djibouti franc|1
+(noun)|Djibouti franc|franc (generic term)
+djiboutian|2
+(adj)|Djiboutian|African country|African nation (related term)
+(noun)|Djiboutian|African (generic term)
+djinni|1
+(noun)|genie|jinni|jinnee|djinny|spirit (generic term)|disembodied spirit (generic term)
+djinny|1
+(noun)|genie|jinni|jinnee|djinni|spirit (generic term)|disembodied spirit (generic term)
+dkg|1
+(noun)|dekagram|decagram|dag|metric weight unit (generic term)|weight unit (generic term)
+dkl|1
+(noun)|dekaliter|dekalitre|decaliter|decalitre|dal|metric capacity unit (generic term)
+dkm|1
+(noun)|decameter|dekameter|decametre|dekametre|dam|metric linear unit (generic term)
+dl|1
+(noun)|deciliter|decilitre|metric capacity unit (generic term)
+dle|1
+(noun)|discoid lupus erythematosus|DLE|lupus (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+dm|2
+(noun)|diabetes mellitus|DM|diabetes (generic term)
+(noun)|decimeter|decimetre|metric linear unit (generic term)
+dmd|1
+(noun)|Doctor of Dental Medicine|DMD|doctor's degree (generic term)|doctorate (generic term)
+dmitri dmitrievich shostakovich|1
+(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer (generic term)
+dmitri ivanovich mendeleev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+dmitri ivanovich mendeleyev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+dmitri mendeleev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+dmitri mendeleyev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+dmitri shostakovich|1
+(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer (generic term)
+dmus|1
+(noun)|Doctor of Music|DMus|MusD|doctor's degree (generic term)|doctorate (generic term)
+dmz|1
+(noun)|demilitarized zone|DMZ|zone (generic term)
+dna|1
+(noun)|deoxyribonucleic acid|desoxyribonucleic acid|DNA|polymer (generic term)
+dna chip|1
+(noun)|gene chip|DNA chip|chip (generic term)|microchip (generic term)|micro chip (generic term)|silicon chip (generic term)
+dna fingerprint|1
+(noun)|DNA fingerprint|genetic fingerprint|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+dneprodzerzhinsk|1
+(noun)|Dneprodzerzhinsk|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+dnieper|1
+(noun)|Dnieper|Dnieper River|river (generic term)
+dnieper river|1
+(noun)|Dnieper|Dnieper River|river (generic term)
+dnipropetrovsk|1
+(noun)|Dnipropetrovsk|Yekaterinoslav|city (generic term)|metropolis (generic term)|urban center (generic term)
+do|16
+(noun)|bash|brawl|party (generic term)
+(noun)|doh|ut|solfa syllable (generic term)
+(noun)|Doctor of Osteopathy|DO|doctor's degree (generic term)|doctorate (generic term)
+(verb)|make
+(verb)|perform|execute
+(verb)|perform|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|fare|make out|come|get along|proceed (generic term)|go (generic term)
+(verb)|cause|make|make (generic term)|create (generic term)
+(verb)|practice|practise|exercise
+(verb)|suffice|answer|serve|satisfy (generic term)|fulfill (generic term)|fulfil (generic term)|live up to (generic term)
+(verb)|make|create (generic term)|make (generic term)|unmake (antonym)
+(verb)|act|behave|act up (related term)
+(verb)|serve|spend (generic term)|pass (generic term)
+(verb)|manage
+(verb)|dress|arrange|set|coif|coiffe|coiffure|groom (generic term)|neaten (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+do-gooder|1
+(noun)|humanitarian|improver|benefactor (generic term)|helper (generic term)
+do-it-yourself|1
+(adj)|homemade (similar term)
+do-nothing|2
+(adj)|irresponsible (similar term)
+(noun)|idler|loafer|layabout|bum|nonworker (generic term)
+do-or-die|1
+(adj)|desperate|resolute (similar term)
+do-si-do|1
+(noun)|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+do-well by|1
+(verb)|do justice|treat (generic term)|handle (generic term)|do by (generic term)
+do a job on|1
+(verb)|destroy (generic term)|ruin (generic term)
+do away with|1
+(verb)|eliminate|get rid of|destroy (generic term)|destruct (generic term)
+do by|1
+(verb)|treat|handle|interact (generic term)
+do drugs|1
+(verb)|drug|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+do good|1
+(verb)|benefit|help (generic term)|aid (generic term)
+do in|1
+(verb)|neutralize|neutralise|liquidate|waste|knock off|kill (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+do justice|3
+(verb)|do-well by|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|show (generic term)
+(verb)|prize (generic term)|value (generic term)|treasure (generic term)|appreciate (generic term)
+do one's best|1
+(verb)|go all out|give one's best|give full measure|do (generic term)|perform (generic term)
+do the dishes|1
+(verb)|wash up|clean (generic term)|make clean (generic term)
+do the honors|1
+(verb)|host (generic term)
+do up|2
+(verb)|wrap (generic term)|wrap up (generic term)
+(verb)|doll up|pretty up|glam up|groom (generic term)|neaten (generic term)
+do well|1
+(verb)|had best|act (generic term)|move (generic term)
+do work|1
+(verb)|work
+doable|1
+(adj)|accomplishable|achievable|manageable|realizable|possible (similar term)
+dobbin|1
+(noun)|farm horse|workhorse (generic term)
+doberman|1
+(noun)|Doberman|Doberman pinscher|pinscher (generic term)
+doberman pinscher|1
+(noun)|Doberman|Doberman pinscher|pinscher (generic term)
+dobra|1
+(noun)|Sao Thome e Principe monetary unit (generic term)
+dobrich|1
+(noun)|Dobrich|Tolbukhin|city (generic term)|metropolis (generic term)|urban center (generic term)
+dobson|2
+(noun)|hellgrammiate|larva (generic term)
+(noun)|dobsonfly|dobson fly|Corydalus cornutus|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+dobson fly|1
+(noun)|dobson|dobsonfly|Corydalus cornutus|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+dobsonfly|1
+(noun)|dobson|dobson fly|Corydalus cornutus|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+doc|2
+(noun)|doctor|physician|MD|Dr.|medico|medical practitioner (generic term)|medical man (generic term)
+(noun)|Department of Commerce|Commerce Department|Commerce|DoC|executive department (generic term)
+docent|1
+(noun)|teacher (generic term)|instructor (generic term)
+docetism|1
+(noun)|Docetism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+docile|3
+(adj)|meek (similar term)|tame (similar term)|sheeplike (similar term)|sheepish (similar term)|yielding (similar term)|obedient (related term)|tractable (related term)|manipulable (related term)|stubborn (antonym)
+(adj)|teachable|tractable (similar term)|manipulable (similar term)
+(adj)|gentle|tame (similar term)|tamed (similar term)
+docility|1
+(noun)|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+dock|12
+(noun)|enclosure (generic term)
+(noun)|sorrel|sour grass|herb (generic term)|herbaceous plant (generic term)
+(noun)|pier|wharf|wharfage|platform (generic term)
+(noun)|loading dock|platform (generic term)
+(noun)|dockage|docking facility|landing (generic term)|landing place (generic term)
+(noun)|body part (generic term)
+(noun)|bobtail|bob|tail (generic term)
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|undock (antonym)
+(verb)|deprive (generic term)
+(verb)|withhold (generic term)|deduct (generic term)|recoup (generic term)
+(verb)|tail|bob|cut (generic term)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)|undock (antonym)
+dock-walloper|1
+(noun)|stevedore|loader|longshoreman|docker|dockhand|dock worker|dockworker|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+dock worker|1
+(noun)|stevedore|loader|longshoreman|docker|dockhand|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+dockage|3
+(noun)|docking fee|fee (generic term)
+(noun)|dock|docking facility|landing (generic term)|landing place (generic term)
+(noun)|docking|moorage|tying up|arrival (generic term)
+docker|1
+(noun)|stevedore|loader|longshoreman|dockhand|dock worker|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+docket|4
+(noun)|calendar (generic term)
+(noun)|agenda|schedule|plan (generic term)|program (generic term)|programme (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|sum up (generic term)|summarize (generic term)|summarise (generic term)|resume (generic term)
+dockhand|1
+(noun)|stevedore|loader|longshoreman|docker|dock worker|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+docking|1
+(noun)|moorage|dockage|tying up|arrival (generic term)
+docking facility|1
+(noun)|dock|dockage|landing (generic term)|landing place (generic term)
+docking fee|1
+(noun)|dockage|fee (generic term)
+dockside|1
+(noun)|side (generic term)
+dockworker|1
+(noun)|stevedore|loader|longshoreman|docker|dockhand|dock worker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+dockyard|1
+(noun)|waterfront (generic term)
+docosahexaenoic acid|1
+(noun)|omega-3 fatty acid (generic term)|omega-3 (generic term)
+doctor|7
+(noun)|doc|physician|MD|Dr.|medico|medical practitioner (generic term)|medical man (generic term)
+(noun)|Doctor of the Church|Doctor|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|play (generic term)|child's play (generic term)
+(noun)|Dr.|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(verb)|sophisticate|doctor up|adulterate (generic term)|stretch (generic term)|dilute (generic term)|debase (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|repair|mend|fix|bushel|furbish up|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+doctor's bill|1
+(noun)|medical bill|bill (generic term)|account (generic term)|invoice (generic term)
+doctor's degree|1
+(noun)|doctorate|academic degree (generic term)|degree (generic term)
+doctor-fish|1
+(noun)|doctorfish|Acanthurus chirurgus|surgeonfish (generic term)
+doctor-patient relation|1
+(noun)|medical relation (generic term)
+doctor of arts|2
+(noun)|Doctor of Arts|ArtsD|honorary degree (generic term)|honoris causa (generic term)
+(noun)|Doctor of Arts|D.A.|doctor's degree (generic term)|doctorate (generic term)
+doctor of dental medicine|1
+(noun)|Doctor of Dental Medicine|DMD|doctor's degree (generic term)|doctorate (generic term)
+doctor of dental surgery|1
+(noun)|Doctor of Dental Surgery|DDS|doctor's degree (generic term)|doctorate (generic term)
+doctor of divinity|1
+(noun)|Doctor of Divinity|DD|doctor's degree (generic term)|doctorate (generic term)
+doctor of education|1
+(noun)|Doctor of Education|EdD|DEd|doctor's degree (generic term)|doctorate (generic term)
+doctor of fine arts|1
+(noun)|Doctor of Fine Arts|honorary degree (generic term)|honoris causa (generic term)
+doctor of humane letters|1
+(noun)|Doctor of Humane Letters|honorary degree (generic term)|honoris causa (generic term)
+doctor of humanities|1
+(noun)|Doctor of Humanities|honorary degree (generic term)|honoris causa (generic term)
+doctor of laws|1
+(noun)|Doctor of Laws|LLD|honorary degree (generic term)|honoris causa (generic term)
+doctor of medicine|1
+(noun)|Doctor of Medicine|MD|doctor's degree (generic term)|doctorate (generic term)
+doctor of music|1
+(noun)|Doctor of Music|DMus|MusD|doctor's degree (generic term)|doctorate (generic term)
+doctor of musical arts|1
+(noun)|Doctor of Musical Arts|AMusD|doctor's degree (generic term)|doctorate (generic term)
+doctor of optometry|1
+(noun)|Doctor of Optometry|OD|doctor's degree (generic term)|doctorate (generic term)
+doctor of osteopathy|1
+(noun)|Doctor of Osteopathy|DO|doctor's degree (generic term)|doctorate (generic term)
+doctor of philosophy|1
+(noun)|Doctor of Philosophy|doctor's degree (generic term)|doctorate (generic term)
+doctor of public health|1
+(noun)|Doctor of Public Health|DPH|doctor's degree (generic term)|doctorate (generic term)
+doctor of science|1
+(noun)|Doctor of Science|DS|ScD|honorary degree (generic term)|honoris causa (generic term)
+doctor of the church|1
+(noun)|Doctor of the Church|Doctor|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+doctor of theology|1
+(noun)|Doctor of Theology|ThD|doctor's degree (generic term)|doctorate (generic term)
+doctor up|1
+(verb)|sophisticate|doctor|adulterate (generic term)|stretch (generic term)|dilute (generic term)|debase (generic term)
+doctoral|1
+(adj)|doctorial|scholar|scholarly person|bookman|student (related term)|academic degree|degree (related term)
+doctorate|1
+(noun)|doctor's degree|academic degree (generic term)|degree (generic term)
+doctorfish|1
+(noun)|doctor-fish|Acanthurus chirurgus|surgeonfish (generic term)
+doctorial|1
+(adj)|doctoral|scholar|scholarly person|bookman|student (related term)|academic degree|degree (related term)
+doctorow|1
+(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer (generic term)|author (generic term)
+doctorspeak|1
+(noun)|jargon (generic term)
+doctrinaire|2
+(adj)|instructive (similar term)|informative (similar term)
+(noun)|dogmatist|partisan (generic term)|zealot (generic term)|drumbeater (generic term)
+doctrinal|1
+(adj)|belief (related term)
+doctrine|1
+(noun)|philosophy|philosophical system|school of thought|ism|belief (generic term)
+doctrine of analogy|1
+(noun)|analogy|religion (generic term)|faith (generic term)|religious belief (generic term)|apophatism (antonym)|cataphatism (antonym)
+docudrama|1
+(noun)|documentary|documentary film|infotainment|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+document|6
+(noun)|written document|papers|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|representation (generic term)
+(noun)|communication (generic term)
+(noun)|text file|computer file (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)
+documental|1
+(adj)|documentary|writing|written material|piece of writing (related term)
+documentary|3
+(adj)|documental|writing|written material|piece of writing (related term)
+(adj)|objective|representational (similar term)
+(noun)|docudrama|documentary film|infotainment|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+documentary film|1
+(noun)|documentary|docudrama|infotainment|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+documentation|3
+(noun)|certification|corroboration|confirmation (generic term)
+(noun)|software documentation|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|support|validation (generic term)|proof (generic term)|substantiation (generic term)
+documented|3
+(adj)|referenced (similar term)|registered (similar term)|undocumented (antonym)
+(adj)|attested|authenticated|genuine (similar term)|echt (similar term)
+(adj)|certificated|credentialed|certified (similar term)
+dod|1
+(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department (generic term)
+dodder|2
+(noun)|vine (generic term)
+(verb)|toddle|coggle|totter|paddle|waddle|walk (generic term)
+dodderer|1
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+doddering|1
+(adj)|doddery|gaga|senile|old (similar term)
+doddery|1
+(adj)|doddering|gaga|senile|old (similar term)
+doddle|1
+(noun)|cinch (generic term)|breeze (generic term)|picnic (generic term)|snap (generic term)|duck soup (generic term)|child's play (generic term)|pushover (generic term)|walkover (generic term)|piece of cake (generic term)
+dodecagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+dodecahedron|1
+(noun)|polyhedron (generic term)
+dodecanese|1
+(noun)|Dodecanese|Dhodhekanisos|Aegean island (generic term)
+dodecanoic acid|1
+(noun)|lauric acid|saturated fatty acid (generic term)
+dodge|5
+(noun)|contrivance|stratagem|scheme (generic term)|strategy (generic term)
+(noun)|evasion (generic term)
+(noun)|dodging|scheme|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(verb)|move (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|duck|sidestep|avoid (generic term)
+dodge city|1
+(noun)|Dodge City|town (generic term)
+dodgem|1
+(noun)|bumper car|Dodgem|vehicle (generic term)
+dodger|2
+(noun)|fox|slyboots|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|corn dab|corn dodger|cornbread (generic term)
+dodging|3
+(noun)|evasion|escape|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+(noun)|dodge|scheme|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|avoidance|turning away|shunning|rejection (generic term)
+dodgson|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+dodgy|2
+(adj)|chancy|chanceful|dicey|dangerous (similar term)|unsafe (similar term)
+(adj)|crafty|cunning|foxy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful (similar term)
+dodo|2
+(noun)|fogy|fogey|fossil|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+(noun)|Raphus cucullatus|columbiform bird (generic term)
+dodoma|1
+(noun)|Dodoma|city (generic term)|metropolis (generic term)|urban center (generic term)|Tanzania (generic term)|United Republic of Tanzania (generic term)
+dodonaea|1
+(noun)|Dodonaea|genus Dodonaea|dicot genus (generic term)|magnoliopsid genus (generic term)
+doe|2
+(noun)|Department of Energy|Energy Department|Energy|DOE|executive department (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+doei|1
+(noun)|Department of Energy Intelligence|DOEI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+doer|1
+(noun)|actor|worker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+doeskin|2
+(noun)|leather (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+doff|1
+(verb)|take off (generic term)
+dog|8
+(noun)|domestic dog|Canis familiaris|canine (generic term)|canid (generic term)
+(noun)|frump|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|chap (generic term)|fellow (generic term)|feller (generic term)|lad (generic term)|gent (generic term)|fella (generic term)|blighter (generic term)|cuss (generic term)
+(noun)|cad|bounder|blackguard|hound|heel|villain (generic term)|scoundrel (generic term)
+(noun)|frank|frankfurter|hotdog|hot dog|wiener|wienerwurst|weenie|sausage (generic term)
+(noun)|pawl|detent|click|catch (generic term)|stop (generic term)
+(noun)|andiron|firedog|dog-iron|support (generic term)
+(verb)|chase|chase after|trail|tail|tag|give chase|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+dog's-tooth check|1
+(noun)|houndstooth check|hound's-tooth check|dogstooth check|dogs-tooth check|check (generic term)
+dog's-tooth violet|1
+(noun)|dogtooth violet|dogtooth|liliaceous plant (generic term)
+dog's breakfast|1
+(noun)|dog's dinner|fix (generic term)|hole (generic term)|jam (generic term)|mess (generic term)|muddle (generic term)|pickle (generic term)|kettle of fish (generic term)
+dog's dinner|1
+(noun)|dog's breakfast|fix (generic term)|hole (generic term)|jam (generic term)|mess (generic term)|muddle (generic term)|pickle (generic term)|kettle of fish (generic term)
+dog's mercury|1
+(noun)|dog mercury|Mercurialis perennis|herb (generic term)|herbaceous plant (generic term)
+dog-day cicada|1
+(noun)|harvest fly|cicada (generic term)|cicala (generic term)
+dog-ear|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+dog-eared|1
+(adj)|eared|worn (similar term)
+dog-iron|1
+(noun)|andiron|firedog|dog|support (generic term)
+dog-sized|1
+(adj)|sized (similar term)
+dog-tired|1
+(adj)|exhausted|fagged|fatigued|played out|spent|washed-out|worn-out|worn out|tired (similar term)
+dog bent|1
+(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+dog biscuit|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+dog bite|1
+(noun)|bite (generic term)
+dog breeding|1
+(noun)|breeding (generic term)
+dog catcher|1
+(noun)|employee (generic term)
+dog collar|3
+(noun)|collar (generic term)
+(noun)|clerical collar|Roman collar|collar (generic term)|neckband (generic term)
+(noun)|choker|collar|neckband|necklace (generic term)
+dog days|1
+(noun)|canicule|canicular days|time period (generic term)|period of time (generic term)|period (generic term)
+dog do|1
+(noun)|dog shit|doggy do|dog turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+dog fennel|2
+(noun)|Eupatorium capillifolium|herb (generic term)|herbaceous plant (generic term)
+(noun)|mayweed|stinking mayweed|stinking chamomile|Anthemis cotula|composite (generic term)|composite plant (generic term)
+dog flea|1
+(noun)|Ctenocephalides canis|flea (generic term)
+dog food|1
+(noun)|petfood (generic term)|pet-food (generic term)|pet food (generic term)
+dog grass|1
+(noun)|couch grass|quackgrass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+dog hobble|1
+(noun)|dog laurel|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub (generic term)|bush (generic term)
+dog house|1
+(noun)|kennel|doghouse|outbuilding (generic term)
+dog in the manger|1
+(noun)|selfish person (generic term)
+dog laurel|1
+(noun)|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub (generic term)|bush (generic term)
+dog mercury|1
+(noun)|dog's mercury|Mercurialis perennis|herb (generic term)|herbaceous plant (generic term)
+dog paddle|1
+(noun)|swimming stroke (generic term)
+dog pound|1
+(noun)|pound|enclosure (generic term)
+dog racing|1
+(noun)|race (generic term)
+dog rose|1
+(noun)|Rosa canina|rose (generic term)|rosebush (generic term)
+dog shit|1
+(noun)|dog do|doggy do|dog turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+dog show|1
+(noun)|show (generic term)
+dog sled|1
+(noun)|dogsled|dog sleigh|sled (generic term)|sledge (generic term)|sleigh (generic term)
+dog sleigh|1
+(noun)|dogsled|dog sled|sled (generic term)|sledge (generic term)|sleigh (generic term)
+dog star|1
+(noun)|Sirius|Dog Star|Canicula|Sothis|binary star (generic term)|binary (generic term)|double star (generic term)
+dog stinkhorn|1
+(noun)|Mutinus caninus|stinkhorn (generic term)|carrion fungus (generic term)
+dog tag|1
+(noun)|tag (generic term)
+dog turd|1
+(noun)|dog shit|dog do|doggy do|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+dog violet|1
+(noun)|heath violet|Viola canina|violet (generic term)
+dog wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+dogbane|1
+(noun)|poisonous plant (generic term)
+dogbane family|1
+(noun)|Apocynaceae|family Apocynaceae|dicot family (generic term)|magnoliopsid family (generic term)
+dogcart|1
+(noun)|cart (generic term)
+doge|1
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+dogfight|6
+(noun)|contest (generic term)|competition (generic term)
+(noun)|hassle|scuffle|tussle|rough-and-tumble|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|stage (generic term)|arrange (generic term)
+(verb)|battle (generic term)|combat (generic term)
+dogfighter|1
+(noun)|fighter pilot (generic term)
+dogfish|2
+(noun)|bowfin|grindle|Amia calva|ganoid (generic term)|ganoid fish (generic term)
+(noun)|shark (generic term)
+dogged|1
+(adj)|dour|pertinacious|tenacious|unyielding|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+doggedly|1
+(adv)|tenaciously
+doggedness|1
+(noun)|perseverance|persistence|persistency|tenacity|tenaciousness|pertinacity|determination (generic term)|purpose (generic term)
+doggerel|1
+(noun)|doggerel verse|jingle|verse (generic term)|rhyme (generic term)
+doggerel verse|1
+(noun)|doggerel|jingle|verse (generic term)|rhyme (generic term)
+doggie|1
+(noun)|pooch|doggy|barker|bow-wow|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+doggie bag|1
+(noun)|doggy bag|sack (generic term)|poke (generic term)|paper bag (generic term)|carrier bag (generic term)
+dogging|1
+(adj)|persisting|continuous (similar term)|uninterrupted (similar term)
+doggo|1
+(adv)|out of sight|in hiding
+doggy|1
+(noun)|pooch|doggie|barker|bow-wow|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+doggy bag|1
+(noun)|doggie bag|sack (generic term)|poke (generic term)|paper bag (generic term)|carrier bag (generic term)
+doggy do|1
+(noun)|dog shit|dog do|dog turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+doghouse|2
+(noun)|kennel|dog house|outbuilding (generic term)
+(noun)|disfavor (generic term)|disfavour (generic term)|dislike (generic term)|disapproval (generic term)
+dogie|1
+(noun)|dogy|leppy|calf (generic term)
+dogleg|2
+(noun)|angle (generic term)
+(noun)|hole (generic term)|golf hole (generic term)
+doglike|1
+(adj)|loyal (similar term)
+dogma|2
+(noun)|tenet|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+dogmatic|3
+(adj)|dogmatical|narrow-minded (similar term)|narrow (similar term)
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|religious doctrine|church doctrine|gospel|creed (related term)
+dogmatical|1
+(adj)|dogmatic|narrow-minded (similar term)|narrow (similar term)
+dogmatise|2
+(verb)|dogmatize|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|dogmatize|talk (generic term)|speak (generic term)
+dogmatism|1
+(noun)|bigotry|intolerance (generic term)
+dogmatist|1
+(noun)|doctrinaire|partisan (generic term)|zealot (generic term)|drumbeater (generic term)
+dogmatize|2
+(verb)|dogmatise|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|dogmatise|talk (generic term)|speak (generic term)
+dogs-tooth check|1
+(noun)|houndstooth check|hound's-tooth check|dogstooth check|dog's-tooth check|check (generic term)
+dogsbody|1
+(noun)|menial|servant (generic term)|retainer (generic term)
+dogshit|1
+(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+dogsled|2
+(noun)|dog sled|dog sleigh|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(verb)|mush|sled (generic term)|sleigh (generic term)
+dogstooth check|1
+(noun)|houndstooth check|hound's-tooth check|dogs-tooth check|dog's-tooth check|check (generic term)
+dogtooth|3
+(noun)|dogtooth violet|dog's-tooth violet|liliaceous plant (generic term)
+(noun)|canine|canine tooth|eyetooth|eye tooth|cuspid|tooth (generic term)
+(noun)|architectural ornament (generic term)
+dogtooth violet|1
+(noun)|dogtooth|dog's-tooth violet|liliaceous plant (generic term)
+dogtrot|1
+(noun)|jog (generic term)|trot (generic term)|lope (generic term)
+dogwatch|1
+(noun)|watch (generic term)
+dogwood|2
+(noun)|dogwood tree|cornel|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|wood (generic term)
+dogwood family|1
+(noun)|Cornaceae|family Cornaceae|rosid dicot family (generic term)
+dogwood tree|1
+(noun)|dogwood|cornel|angiospermous tree (generic term)|flowering tree (generic term)
+dogy|1
+(noun)|dogie|leppy|calf (generic term)
+doh|1
+(noun)|do|ut|solfa syllable (generic term)
+doha|1
+(noun)|Doha|Bida|El Beda|capital of Qatar|national capital (generic term)|port (generic term)
+doi|1
+(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department (generic term)
+doily|1
+(noun)|doyley|doyly|linen (generic term)
+doings|1
+(noun)|behavior|behaviour|conduct|activity (generic term)
+doj|1
+(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department (generic term)
+dojc|1
+(noun)|Department of Justice Canada|DoJC|international law enforcement agency (generic term)
+dol|2
+(noun)|pain unit (generic term)
+(noun)|Department of Labor|Labor Department|Labor|DoL|executive department (generic term)
+dolabrate|1
+(adj)|dolabriform|simple (similar term)|unsubdivided (similar term)
+dolabriform|1
+(adj)|dolabrate|simple (similar term)|unsubdivided (similar term)
+dolby|1
+(noun)|Dolby|Ray M. Dolby|electrical engineer (generic term)
+dolce far niente|1
+(noun)|idleness (generic term)|idling (generic term)|loafing (generic term)
+doldrums|2
+(noun)|stagnation|stagnancy|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+dole|2
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|pogy|pogey|social welfare (generic term)|welfare (generic term)
+dole out|1
+(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|give (generic term)
+doled out|1
+(adj)|apportioned|dealt out|meted out|parceled out|distributed (similar term)
+doleful|1
+(adj)|mournful|sad (similar term)
+dolefully|1
+(adv)|sorrowfully
+dolefulness|1
+(noun)|sadness (generic term)|unhappiness (generic term)
+dolichocephalic|2
+(adj)|dolichocranial|dolichocranic|long-headed (similar term)|brachycephalic (antonym)
+(noun)|adult (generic term)|grownup (generic term)
+dolichocephalism|1
+(noun)|dolichocephaly|quality (generic term)
+dolichocephaly|1
+(noun)|dolichocephalism|quality (generic term)
+dolichocranial|1
+(adj)|dolichocephalic|dolichocranic|long-headed (similar term)|brachycephalic (antonym)
+dolichocranic|1
+(adj)|dolichocephalic|dolichocranial|long-headed (similar term)|brachycephalic (antonym)
+dolichonyx|1
+(noun)|Dolichonyx|genus Dolichonyx|bird genus (generic term)
+dolichonyx oryzivorus|1
+(noun)|bobolink|ricebird|reedbird|Dolichonyx oryzivorus|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+dolichos|1
+(noun)|Dolichos|genus Dolichos|rosid dicot genus (generic term)
+dolichos biflorus|1
+(noun)|horse gram|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume (generic term)|leguminous plant (generic term)
+dolichos lablab|1
+(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+dolichos lignosus|1
+(noun)|Australian pea|Dipogon lignosus|Dolichos lignosus|vine (generic term)
+dolichotis|1
+(noun)|Dolichotis|genus Dolichotis|mammal genus (generic term)
+dolichotis patagonum|1
+(noun)|mara|Dolichotis patagonum|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+doliolidae|1
+(noun)|Doliolidae|family Doliolidae|chordate family (generic term)
+doliolum|1
+(noun)|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+doll|2
+(noun)|dolly|plaything (generic term)|toy (generic term)
+(noun)|dame|wench|skirt|chick|bird|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+doll's eyes|1
+(noun)|white baneberry|white cohosh|white bead|Actaea alba|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+doll's house|2
+(noun)|dollhouse|house (generic term)
+(noun)|dollhouse|plaything (generic term)|toy (generic term)
+doll up|1
+(verb)|do up|pretty up|glam up|groom (generic term)|neaten (generic term)
+dollar|4
+(noun)|monetary unit (generic term)
+(noun)|dollar bill|one dollar bill|buck|clam|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+(noun)|coin (generic term)
+(noun)|dollar mark|dollar sign|symbol (generic term)
+dollar bill|1
+(noun)|dollar|one dollar bill|buck|clam|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+dollar diplomacy|1
+(noun)|diplomacy (generic term)|diplomatic negotiations (generic term)
+dollar mark|2
+(noun)|dollar|dollar sign|symbol (generic term)
+(noun)|dollar sign|mark (generic term)
+dollar sign|2
+(noun)|dollar|dollar mark|symbol (generic term)
+(noun)|dollar mark|mark (generic term)
+dollar volume|1
+(noun)|turnover|bulk (generic term)|mass (generic term)|volume (generic term)
+dollarfish|2
+(noun)|Poronotus triacanthus|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+dolled up|1
+(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|spruced up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+dollhouse|2
+(noun)|doll's house|house (generic term)
+(noun)|doll's house|plaything (generic term)|toy (generic term)
+dollop|1
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+dolly|2
+(noun)|conveyance (generic term)|transport (generic term)
+(noun)|doll|plaything (generic term)|toy (generic term)
+dolman|2
+(noun)|dolman jacket|jacket (generic term)
+(noun)|cloak (generic term)
+dolman jacket|1
+(noun)|dolman|jacket (generic term)
+dolman sleeve|1
+(noun)|sleeve (generic term)|arm (generic term)
+dolmas|1
+(noun)|stuffed grape leaves|dish (generic term)
+dolmen|1
+(noun)|cromlech|portal tomb|megalith (generic term)|megalithic structure (generic term)
+dolobid|1
+(noun)|diflunisal|Dolobid|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+dolomite|2
+(noun)|rock (generic term)|stone (generic term)
+(noun)|bitter spar|mineral (generic term)
+dolomite alps|1
+(noun)|Dolomite Alps|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+dolomitic|1
+(adj)|rock|stone (related term)
+dolophine hydrochloride|1
+(noun)|methadone|methadone hydrochloride|methadon|fixer|synthetic heroin|narcotic (generic term)
+dolor|1
+(noun)|dolour|grief (generic term)|heartache (generic term)|heartbreak (generic term)|brokenheartedness (generic term)
+dolorous|1
+(adj)|dolourous|lachrymose|tearful|weeping|sorrowful (similar term)
+dolour|1
+(noun)|dolor|grief (generic term)|heartache (generic term)|heartbreak (generic term)|brokenheartedness (generic term)
+dolourous|1
+(adj)|dolorous|lachrymose|tearful|weeping|sorrowful (similar term)
+dolphin|2
+(noun)|dolphinfish|mahimahi|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|toothed whale (generic term)
+dolphin kick|1
+(noun)|swimming kick (generic term)
+dolphin oil|1
+(noun)|animal oil (generic term)
+dolphin striker|1
+(noun)|martingale|spar (generic term)
+dolphinfish|2
+(noun)|mahimahi|saltwater fish (generic term)
+(noun)|dolphin|mahimahi|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+dolt|1
+(noun)|stupid|stupid person|stupe|dullard|pudding head|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+doltish|1
+(adj)|cloddish|stupid (similar term)
+doltishly|1
+(adv)|stupidly|without thinking
+dom pedro|1
+(noun)|Dom Pedro|mixed drink (generic term)
+domain|5
+(noun)|sphere|area|orbit|field|arena|environment (generic term)
+(noun)|demesne|land|region (generic term)
+(noun)|set (generic term)
+(noun)|world|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|region|realm|knowledge domain (generic term)|knowledge base (generic term)
+domain name|1
+(noun)|name (generic term)
+domatium|1
+(noun)|plant part (generic term)|plant structure (generic term)
+dombeya|1
+(noun)|shrub (generic term)|bush (generic term)
+dome|4
+(noun)|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|attic|bean|bonce|noodle|noggin|human head (generic term)
+(noun)|domed stadium|covered stadium|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+(noun)|roof (generic term)
+dome-shaped|1
+(adj)|rounded (similar term)
+domed|1
+(adj)|vaulted|rounded (similar term)
+domed stadium|1
+(noun)|dome|covered stadium|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+domenikos theotocopoulos|1
+(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master (generic term)
+domesday book|1
+(noun)|Domesday Book|Doomsday Book|written record (generic term)|written account (generic term)
+domestic|6
+(adj)|home (similar term)|interior (similar term)|internal (similar term)|national (similar term)|municipal (similar term)|national (related term)|foreign (antonym)
+(adj)|housing|lodging|living accommodations (related term)
+(adj)|domesticated (similar term)|home-loving (similar term)|home-style (similar term)|housewifely (similar term)|husbandly (similar term)|undomestic (antonym)
+(adj)|domesticated|tame (similar term)|tamed (similar term)
+(adj)|native (similar term)
+(noun)|domestic help|house servant|servant (generic term)|retainer (generic term)
+domestic animal|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+domestic ass|1
+(noun)|donkey|Equus asinus|ass (generic term)
+domestic carp|1
+(noun)|Cyprinus carpio|carp (generic term)
+domestic cat|1
+(noun)|house cat|Felis domesticus|Felis catus|cat (generic term)|true cat (generic term)
+domestic dog|1
+(noun)|dog|Canis familiaris|canine (generic term)|canid (generic term)
+domestic flight|1
+(noun)|flight (generic term)|international flight (antonym)
+domestic fowl|1
+(noun)|fowl|poultry|gallinaceous bird (generic term)|gallinacean (generic term)
+domestic goat|1
+(noun)|Capra hircus|goat (generic term)|caprine animal (generic term)
+domestic help|1
+(noun)|domestic|house servant|servant (generic term)|retainer (generic term)
+domestic llama|1
+(noun)|Lama peruana|llama (generic term)
+domestic partner|1
+(noun)|significant other|spousal equivalent|spouse equivalent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+domestic pigeon|1
+(noun)|pigeon (generic term)
+domestic prelate|1
+(noun)|priest (generic term)
+domestic relations court|1
+(noun)|family court|court of domestic relations|court (generic term)|tribunal (generic term)|judicature (generic term)
+domestic science|1
+(noun)|home economics|home ec|household arts|social science (generic term)
+domestic sheep|1
+(noun)|Ovis aries|sheep (generic term)
+domestic silkworm moth|1
+(noun)|Bombyx mori|bombycid (generic term)|bombycid moth (generic term)|silkworm moth (generic term)
+domestic terrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+domestic violence|1
+(noun)|violence (generic term)|force (generic term)
+domesticate|3
+(verb)|cultivate|naturalize|naturalise|tame|adapt (generic term)|accommodate (generic term)
+(verb)|domesticize|domesticise|reclaim|tame|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tame|adapt (generic term)|accommodate (generic term)
+domesticated|2
+(adj)|domestic|tame (similar term)|tamed (similar term)
+(adj)|domestic (similar term)
+domestication|3
+(noun)|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+(noun)|tameness|tractability (generic term)|tractableness (generic term)|flexibility (generic term)|wildness (antonym)
+(noun)|accommodation (generic term)
+domesticise|1
+(verb)|domesticate|domesticize|reclaim|tame|change (generic term)|alter (generic term)|modify (generic term)
+domesticity|2
+(noun)|quality (generic term)
+(noun)|activity (generic term)
+domesticize|1
+(verb)|domesticate|domesticise|reclaim|tame|change (generic term)|alter (generic term)|modify (generic term)
+domicile|3
+(noun)|legal residence|residence (generic term)|abode (generic term)
+(noun)|dwelling|home|abode|habitation|dwelling house|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(verb)|reside|shack|domiciliate|dwell (generic term)|live (generic term)|inhabit (generic term)
+domiciliary|1
+(adj)|housing|lodging|living accommodations (related term)
+domiciliate|2
+(verb)|reside|shack|domicile|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|house|put up|shelter (generic term)
+domiciliation|1
+(noun)|diggings|digs|lodgings|pad|living quarters (generic term)|quarters (generic term)
+dominance|4
+(noun)|laterality|bodily property (generic term)
+(noun)|ascendance|ascendence|ascendancy|ascendency|control|condition (generic term)|status (generic term)
+(noun)|organic phenomenon (generic term)
+(noun)|authority|authorization|authorisation|potency|say-so|control (generic term)
+dominant|4
+(adj)|ascendant (similar term)|ascendent (similar term)|dominating (similar term)|controlling (similar term)|governing (similar term)|overriding (similar term)|paramount (similar term)|predominant (similar term)|predominate (similar term)|preponderant (similar term)|preponderating (similar term)|possessive (similar term)|sovereign (similar term)|supreme (similar term)|superior (similar term)|superior (related term)|subordinate (antonym)
+(adj)|recessive (antonym)
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|dominant allele|allele (generic term)|allelomorph (generic term)
+dominant allele|1
+(noun)|dominant|allele (generic term)|allelomorph (generic term)
+dominant gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+dominate|4
+(verb)|predominate|rule|reign|prevail
+(verb)|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|master|control (generic term)|command (generic term)
+(verb)|command|overlook|overtop|lie (generic term)
+dominated|2
+(adj)|controlled (similar term)
+(adj)|henpecked|submissive (similar term)
+dominating|3
+(adj)|ascendant|ascendent|dominant (similar term)
+(adj)|commanding|overlooking|high (similar term)
+(adj)|autocratic|bossy|high-and-mighty|magisterial|peremptory|domineering (similar term)
+domination|2
+(noun)|social control (generic term)
+(noun)|mastery|supremacy|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+dominatrix|1
+(noun)|woman (generic term)|adult female (generic term)
+domine|1
+(noun)|dominus|dominie|dominee|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+dominee|1
+(noun)|dominus|dominie|domine|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+domineer|1
+(verb)|tyrannize|tyrannise|strong-arm (generic term)|bully (generic term)|browbeat (generic term)|bullyrag (generic term)|ballyrag (generic term)|boss around (generic term)|hector (generic term)|push around (generic term)
+domineering|1
+(adj)|authoritarian (similar term)|dictatorial (similar term)|overbearing (similar term)|autocratic (similar term)|bossy (similar term)|dominating (similar term)|high-and-mighty (similar term)|magisterial (similar term)|peremptory (similar term)|blustery (similar term)|bullying (similar term)|cavalier (similar term)|high-handed (similar term)|heavy-handed (similar term)|roughshod (similar term)|imperious (similar term)|masterful (similar term)|oppressive (similar term)|tyrannical (similar term)|tyrannous (similar term)|immodest (related term)|submissive (antonym)
+domineeringness|1
+(noun)|imperiousness|overbearingness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+domingo|1
+(noun)|Domingo|Placido Domingo|tenor (generic term)
+domingo de guzman|1
+(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest (generic term)|saint (generic term)
+dominic|1
+(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest (generic term)|saint (generic term)
+dominica|2
+(noun)|Dominica|Commonwealth of Dominica|country (generic term)|state (generic term)|land (generic term)
+(noun)|Dominica|island (generic term)
+dominical|2
+(adj)|Son|Word|Logos|Jew|Hebrew|Israelite|prophet (related term)
+(adj)|rest day|day of rest (related term)
+dominican|3
+(adj)|Dominican|country|state|land (related term)
+(adj)|Dominican|friar|mendicant (related term)
+(noun)|Dominican|Black Friar|Blackfriar|friar preacher|friar (generic term)|mendicant (generic term)
+dominican dollar|1
+(noun)|Dominican dollar|dollar (generic term)
+dominican mahogany|1
+(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany (generic term)|mahogany tree (generic term)
+dominican monetary unit|1
+(noun)|Dominican monetary unit|monetary unit (generic term)
+dominican order|1
+(noun)|Dominican order|order (generic term)|monastic order (generic term)
+dominican peso|1
+(noun)|Dominican peso|peso|Dominican monetary unit (generic term)
+dominican republic|1
+(noun)|Dominican Republic|country (generic term)|state (generic term)|land (generic term)
+dominick|1
+(noun)|Dominique|Dominick|chicken (generic term)|Gallus gallus (generic term)
+dominicus|1
+(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day (generic term)|day of rest (generic term)
+dominie|1
+(noun)|dominus|domine|dominee|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+dominion|3
+(noun)|rule|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|district|territory|territorial dominion|region (generic term)
+(noun)|Dominion|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+dominion day|1
+(noun)|Dominion Day|July 1|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+dominique|1
+(noun)|Dominique|Dominick|chicken (generic term)|Gallus gallus (generic term)
+domino|4
+(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+(noun)|cloak (generic term)
+(noun)|half mask|eye mask|mask (generic term)
+(noun)|block (generic term)
+domino effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+domino theory|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+dominoes|1
+(noun)|dominos|table game (generic term)
+dominos|1
+(noun)|dominoes|table game (generic term)
+dominus|1
+(noun)|dominie|domine|dominee|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+domitian|1
+(noun)|Domitian|Titus Flavius Domitianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+domoic acid|1
+(noun)|neurotoxin (generic term)|neurolysin (generic term)
+don|7
+(noun)|Don|gentleman (generic term)
+(noun)|preceptor|teacher (generic term)|instructor (generic term)
+(noun)|father|head (generic term)|chief (generic term)|top dog (generic term)
+(noun)|Don|Celtic deity (generic term)
+(noun)|Don|Don River|river (generic term)
+(noun)|Don|title (generic term)|title of respect (generic term)|form of address (generic term)
+(verb)|wear|put on|get into|assume|dress (generic term)|get dressed (generic term)
+don't-know|1
+(noun)|interviewee (generic term)
+don budge|1
+(noun)|Budge|Don Budge|John Donald Budge|tennis player (generic term)
+don juan|2
+(noun)|Don Juan|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|Don Juan|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+don luchino visconti conte di modrone|1
+(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+don marquis|1
+(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist (generic term)|humourist (generic term)
+don quixote|2
+(noun)|Don Quixote|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|Don Quixote|idealist (generic term)|dreamer (generic term)
+don river|1
+(noun)|Don|Don River|river (generic term)
+dona|1
+(noun)|Dona|title (generic term)|title of respect (generic term)|form of address (generic term)
+donald arthur glaser|1
+(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist (generic term)
+donald barthelme|1
+(noun)|Barthelme|Donald Barthelme|writer (generic term)|author (generic term)
+donald duck|1
+(noun)|Donald Duck|fictional animal (generic term)
+donald glaser|1
+(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist (generic term)
+donald robert perry marquis|1
+(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist (generic term)|humourist (generic term)
+donar|1
+(noun)|Donar|Teutonic deity (generic term)
+donate|1
+(verb)|give (generic term)|gift (generic term)|present (generic term)
+donated|1
+(adj)|given (similar term)
+donatello|1
+(noun)|Donatello|Donato di Betto Bardi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+donation|2
+(noun)|contribution|gift (generic term)
+(noun)|contribution|giving (generic term)|gift (generic term)
+donatism|1
+(noun)|Donatism|Christianity (generic term)|Christian religion (generic term)
+donatist|2
+(adj)|Donatist|Christianity|Christian religion (related term)
+(noun)|Donatist|disciple (generic term)|adherent (generic term)
+donato bramante|1
+(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect (generic term)|designer (generic term)
+donato d'agnolo bramante|1
+(noun)|Bramante|Donato Bramante|Donato d'Agnolo Bramante|architect (generic term)|designer (generic term)
+donato di betto bardi|1
+(noun)|Donatello|Donato di Betto Bardi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+donatus|1
+(noun)|Donatus|Aelius Donatus|grammarian (generic term)|syntactician (generic term)
+donbas|1
+(noun)|Donets Basin|Donbass|Donbas|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+donbass|1
+(noun)|Donets Basin|Donbass|Donbas|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+done|2
+(adj)|through|through with|finished (similar term)
+(adj)|cooked (similar term)
+done for|2
+(adj)|kaput|gone|destroyed (similar term)
+(adj)|ruined|sunk|undone|washed-up|unsuccessful (similar term)
+done up|1
+(adj)|wrapped (similar term)
+done with|1
+(adj)|through with|finished (similar term)
+donee|1
+(noun)|beneficiary|recipient (generic term)|receiver (generic term)
+donets basin|1
+(noun)|Donets Basin|Donbass|Donbas|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+donetsk|1
+(noun)|Donetsk|Donetske|Stalino|city (generic term)|metropolis (generic term)|urban center (generic term)
+donetske|1
+(noun)|Donetsk|Donetske|Stalino|city (generic term)|metropolis (generic term)|urban center (generic term)
+dong|2
+(noun)|Vietnamese monetary unit (generic term)
+(verb)|ding|dingdong|ring (generic term)|peal (generic term)
+dongle|1
+(noun)|electronic device (generic term)
+donizetti|1
+(noun)|Donizetti|Gaetano Donizetti|composer (generic term)
+donjon|1
+(noun)|keep|dungeon|stronghold (generic term)|fastness (generic term)
+donkey|2
+(noun)|emblem (generic term)|allegory (generic term)
+(noun)|domestic ass|Equus asinus|ass (generic term)
+donkey boiler|1
+(noun)|auxiliary boiler|boiler (generic term)|steam boiler (generic term)
+donkey cart|1
+(noun)|pony cart|ponycart|tub-cart|cart (generic term)
+donkey engine|2
+(noun)|switch engine|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+(noun)|auxiliary engine|engine (generic term)
+donkey jacket|1
+(noun)|jacket (generic term)
+donkey pump|1
+(noun)|auxiliary pump|pump (generic term)
+donkeywork|1
+(noun)|drudgery|plodding|grind|labor (generic term)|labour (generic term)|toil (generic term)
+donkin|1
+(noun)|Donkin|Bryan Donkin|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+donna|1
+(noun)|woman (generic term)|adult female (generic term)
+donne|1
+(noun)|Donne|John Donne|poet (generic term)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+donnean|1
+(adj)|Donnean|Donnian|poet|clergyman|reverend|man of the cloth (related term)
+donner pass|1
+(noun)|Donner Pass|pass (generic term)|mountain pass (generic term)|notch (generic term)
+donnian|1
+(adj)|Donnean|Donnian|poet|clergyman|reverend|man of the cloth (related term)
+donnish|1
+(adj)|academic|pedantic|scholarly (similar term)
+donor|2
+(noun)|giver|presenter|bestower|conferrer|benefactor (generic term)|helper (generic term)
+(noun)|benefactor (generic term)|helper (generic term)
+donor card|1
+(noun)|card (generic term)|identity card (generic term)
+donut|1
+(noun)|doughnut|sinker|friedcake (generic term)
+doo-wop|1
+(noun)|gospel (generic term)|gospel singing (generic term)
+doob|1
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+doodad|1
+(noun)|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+doodia|2
+(noun)|rasp fern|fern (generic term)
+(noun)|genus Doodia|Doodia|fern genus (generic term)
+doodle|2
+(noun)|scribble|scrabble|drawing (generic term)
+(verb)|draw (generic term)
+doodlebug|3
+(noun)|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|buzz bomb|robot bomb|flying bomb|V-1|guided missile (generic term)
+(noun)|ant lion|antlion|larva (generic term)
+doodly-squat|1
+(noun)|jack|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+doofus|1
+(noun)|dimwit|nitwit|half-wit|simpleton (generic term)|simple (generic term)
+doohickey|1
+(noun)|doodad|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+doojigger|1
+(noun)|doodad|doohickey|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+doolittle|1
+(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+doom|4
+(noun)|doomsday|day of reckoning|end of the world|destiny (generic term)|fate (generic term)
+(verb)|destine|fate|designate|ordain (generic term)
+(verb)|sentence|condemn|declare (generic term)
+(verb)|guarantee (generic term)|ensure (generic term)|insure (generic term)|assure (generic term)|secure (generic term)
+doomed|5
+(adj)|dead (similar term)
+(adj)|cursed|damned|unredeemed|unsaved|lost (similar term)
+(adj)|ill-fated|ill-omened|ill-starred|unlucky|unfortunate (similar term)
+(adj)|fated|certain (similar term)|sure (similar term)
+(noun)|lost|people (generic term)
+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 (generic term)
+(noun)|doom|day of reckoning|end of the world|destiny (generic term)|fate (generic term)
+doomsday book|1
+(noun)|Domesday Book|Doomsday Book|written record (generic term)|written account (generic term)
+door|5
+(noun)|movable barrier (generic term)
+(noun)|doorway|room access|threshold|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|entree (generic term)|access (generic term)|accession (generic term)|admittance (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|room (generic term)
+door-to-door|2
+(adj)|direct (similar term)
+(adj)|house-to-house|comprehensive (similar term)
+door guard|1
+(noun)|doorkeeper|doorman|hall porter|porter|gatekeeper|ostiary|guard (generic term)
+door latch|1
+(noun)|latch|lock (generic term)
+door prize|1
+(noun)|prize (generic term)|award (generic term)
+doorbell|1
+(noun)|bell|buzzer|push button (generic term)|push (generic term)|button (generic term)
+doorcase|1
+(noun)|doorframe|framework (generic term)|frame (generic term)|framing (generic term)
+doorframe|1
+(noun)|doorcase|framework (generic term)|frame (generic term)|framing (generic term)
+doorhandle|1
+(noun)|doorknob|knob (generic term)
+doorjamb|1
+(noun)|doorpost|jamb (generic term)
+doorkeeper|3
+(noun)|usher|official (generic term)|functionary (generic term)
+(noun)|ostiary|ostiarius|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+(noun)|doorman|door guard|hall porter|porter|gatekeeper|ostiary|guard (generic term)
+doorknob|1
+(noun)|doorhandle|knob (generic term)
+doorknocker|1
+(noun)|knocker|rapper|device (generic term)
+doorlock|1
+(noun)|lock (generic term)
+doorman|1
+(noun)|doorkeeper|door guard|hall porter|porter|gatekeeper|ostiary|guard (generic term)
+doormat|2
+(noun)|weakling|wuss|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|welcome mat|mat (generic term)
+doornail|1
+(noun)|nail (generic term)
+doorplate|1
+(noun)|nameplate (generic term)
+doorpost|1
+(noun)|doorjamb|jamb (generic term)
+doorsill|1
+(noun)|doorstep|threshold|sill (generic term)
+doorstep|1
+(noun)|doorsill|threshold|sill (generic term)
+doorstop|1
+(noun)|doorstopper|catch (generic term)|stop (generic term)
+doorstopper|1
+(noun)|doorstop|catch (generic term)|stop (generic term)
+doorway|1
+(noun)|door|room access|threshold|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+dooryard|1
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+dopa|1
+(noun)|dihydroxyphenylalanine|amino acid (generic term)|aminoalkanoic acid (generic term)
+dopamine|1
+(noun)|Dopastat|Intropin|monoamine neurotransmitter (generic term)
+dopastat|1
+(noun)|dopamine|Dopastat|Intropin|monoamine neurotransmitter (generic term)
+dope|7
+(noun)|pot|grass|green goddess|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(noun)|dumbbell|dummy|boob|booby|pinhead|simpleton (generic term)|simple (generic term)
+(noun)|cola|soft drink (generic term)
+(noun)|poop|the skinny|low-down|details (generic term)|inside information (generic term)
+(verb)|drug (generic term)|do drugs (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|dope up|drug (generic term)|dose (generic term)
+dope off|1
+(verb)|fall asleep|flake out|drift off|nod off|drop off|doze off|drowse off|wake up (antonym)
+dope sheet|1
+(noun)|scratch sheet|tip sheet (generic term)
+dope up|1
+(verb)|dope|drug (generic term)|dose (generic term)
+doped|2
+(adj)|treated (similar term)
+(adj)|drugged|narcotized|narcotised|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+dopey|1
+(adj)|anserine|dopy|foolish|goosey|goosy|gooselike|jerky|stupid (similar term)
+doppelganger|1
+(noun)|legendary creature (generic term)
+doppelzentner|1
+(noun)|hundredweight|metric hundredweight|centner|metric weight unit (generic term)|weight unit (generic term)
+doppler|1
+(noun)|Doppler|Christian Johann Doppler|physicist (generic term)
+doppler effect|1
+(noun)|Doppler effect|Doppler shift|propagation (generic term)
+doppler radar|1
+(noun)|Doppler radar|radar (generic term)|microwave radar (generic term)|radio detection and ranging (generic term)|radiolocation (generic term)
+doppler shift|1
+(noun)|Doppler effect|Doppler shift|propagation (generic term)
+dopy|1
+(adj)|anserine|dopey|foolish|goosey|goosy|gooselike|jerky|stupid (similar term)
+dorado|1
+(noun)|Dorado|constellation (generic term)
+dorbeetle|1
+(noun)|dung beetle (generic term)
+dorian|1
+(noun)|Dorian|Greek (generic term)|Hellene (generic term)
+dorian order|1
+(noun)|Doric order|Dorian order|order (generic term)
+doric|2
+(adj)|order (related term)
+(noun)|Doric|Ancient Greek (generic term)
+doric order|1
+(noun)|Doric order|Dorian order|order (generic term)
+doriden|1
+(noun)|glutethimide|Doriden|sedative (generic term)|sedative drug (generic term)|depressant (generic term)|downer (generic term)
+doris|1
+(noun)|Doris|Greek deity (generic term)
+doris lessing|1
+(noun)|Lessing|Doris Lessing|Doris May Lessing|writer (generic term)|author (generic term)
+doris may lessing|1
+(noun)|Lessing|Doris Lessing|Doris May Lessing|writer (generic term)|author (generic term)
+dork|1
+(noun)|jerk|misfit (generic term)
+dorking|1
+(noun)|Dorking|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+dorm|1
+(noun)|dormitory|residence hall|hall|student residence|living quarters (generic term)|quarters (generic term)|building (generic term)|edifice (generic term)
+dorm room|1
+(noun)|dormitory|dormitory room|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+dormancy|2
+(noun)|quiescence|quiescency|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|quiescence|quiescency|sleeping|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+dormant|4
+(adj)|inactive|quiescent (similar term)|active (antonym)
+(adj)|sleeping|unerect (similar term)
+(adj)|hibernating|torpid|asleep (similar term)
+(adj)|inactive (similar term)
+dormant account|1
+(noun)|savings account (generic term)
+dormer|1
+(noun)|dormer window|window (generic term)
+dormer window|2
+(noun)|window (generic term)
+(noun)|dormer|window (generic term)
+dormie|1
+(adj)|dormy|up (similar term)
+dormition|1
+(noun)|Dormition|Feast of Dormition|religious holiday (generic term)|holy day (generic term)
+dormitory|2
+(noun)|dorm|residence hall|hall|student residence|living quarters (generic term)|quarters (generic term)|building (generic term)|edifice (generic term)
+(noun)|dormitory room|dorm room|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+dormitory room|1
+(noun)|dormitory|dorm room|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+dormouse|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+dormy|1
+(adj)|dormie|up (similar term)
+doronicum|1
+(noun)|Doronicum|genus Doronicum|asterid dicot genus (generic term)
+doroteo arango|1
+(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+dorothea dix|1
+(noun)|Dix|Dorothea Dix|Dorothea Lynde Dix|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+dorothea lange|1
+(noun)|Lange|Dorothea Lange|photographer (generic term)|lensman (generic term)
+dorothea lynde dix|1
+(noun)|Dix|Dorothea Dix|Dorothea Lynde Dix|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+dorotheanthus|1
+(noun)|Dorotheanthus|genus Dorotheanthus|caryophylloid dicot genus (generic term)
+dorotheanthus bellidiformis|1
+(noun)|livingstone daisy|Dorotheanthus bellidiformis|succulent (generic term)
+dorothy dix|1
+(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist (generic term)
+dorothy hodgkin|1
+(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist (generic term)
+dorothy l. sayers|1
+(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer (generic term)|author (generic term)
+dorothy leigh sayers|1
+(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer (generic term)|author (generic term)
+dorothy mary crowfoot hodgkin|1
+(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist (generic term)
+dorothy parker|1
+(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer (generic term)|author (generic term)
+dorothy rothschild parker|1
+(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer (generic term)|author (generic term)
+dorothy sayers|1
+(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer (generic term)|author (generic term)
+dorsal|2
+(adj)|ventral (antonym)
+(adj)|abaxial|adaxial (antonym)
+dorsal fin|1
+(noun)|fin (generic term)
+dorsal scapular vein|1
+(noun)|vena scapularis dorsalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+dorsal vertebra|1
+(noun)|thoracic vertebra|vertebra (generic term)
+dorsiflexion|1
+(noun)|flexion (generic term)|flexure (generic term)
+dorsoventral|1
+(adj)|ventral (similar term)
+dorsum|2
+(noun)|back|body part (generic term)
+(noun)|body part (generic term)
+dortmund|1
+(noun)|Dortmund|city (generic term)|metropolis (generic term)|urban center (generic term)
+dory|3
+(noun)|dinghy|rowboat|small boat (generic term)
+(noun)|walleye|walleyed pike|jack salmon|Stizostedion vitreum|pike-perch (generic term)|pike perch (generic term)
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+dorylinae|1
+(noun)|Dorylinae|subfamily Dorylinae|arthropod family (generic term)
+doryopteris|1
+(noun)|Doryopteris|genus Doryopteris|fern genus (generic term)
+doryopteris pedata|1
+(noun)|hand fern|Doryopteris pedata|fern (generic term)
+dos|2
+(noun)|Department of State|United States Department of State|State Department|State|DoS|executive department (generic term)
+(noun)|DOS|disk operating system|operating system (generic term)|OS (generic term)
+dos passos|1
+(noun)|Dos Passos|John Dos Passos|John Roderigo Dos Passos|writer (generic term)|author (generic term)
+dosage|1
+(noun)|dose|indefinite quantity (generic term)
+dose|6
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(noun)|dosage|indefinite quantity (generic term)
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|contagious disease (generic term)|contagion (generic term)
+(noun)|acid|back breaker|battery-acid|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|drug|medicate (generic term)|medicine (generic term)
+dose rate|1
+(noun)|rate (generic term)
+dosed|1
+(adj)|treated (similar term)
+dosemeter|1
+(noun)|dosimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+dosimeter|1
+(noun)|dosemeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+dosimetry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+doss|1
+(verb)|doss down|crash|bed down (generic term)|bunk down (generic term)
+doss down|1
+(verb)|doss|crash|bed down (generic term)|bunk down (generic term)
+dossal|1
+(noun)|dossel|hanging (generic term)|wall hanging (generic term)
+dossel|1
+(noun)|dossal|hanging (generic term)|wall hanging (generic term)
+dosser|1
+(noun)|street person|tramp (generic term)|hobo (generic term)|bum (generic term)
+dosshouse|1
+(noun)|flophouse|lodging house (generic term)|rooming house (generic term)
+dossier|1
+(noun)|written record (generic term)|written account (generic term)
+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 (generic term)|author (generic term)
+dostoevskian|1
+(adj)|Dostoevskian|Dostoyevskian|writer|author (related term)
+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 (generic term)|author (generic term)
+dostoyevskian|1
+(adj)|Dostoevskian|Dostoyevskian|writer|author (related term)
+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 (generic term)|author (generic term)
+dot|8
+(noun)|point|disk (generic term)|disc (generic term)|saucer (generic term)
+(noun)|Department of Transportation|Transportation|DoT|executive department (generic term)
+(noun)|dit|telegraphic signal (generic term)|radiotelegraphic signal (generic term)
+(noun)|acid|back breaker|battery-acid|dose|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+(verb)|stud|constellate|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|scatter|sprinkle|dust|disperse|discharge (generic term)
+(verb)|write (generic term)
+(verb)|mark (generic term)
+dot-com|2
+(adj)|company (related term)
+(noun)|dot com|dot com company|company (generic term)
+dot com|1
+(noun)|dot-com|dot com company|company (generic term)
+dot com company|1
+(noun)|dot-com|dot com|company (generic term)
+dot matrix|1
+(noun)|matrix (generic term)
+dot matrix printer|1
+(noun)|matrix printer|dot printer|printer (generic term)
+dot printer|1
+(noun)|dot matrix printer|matrix printer|printer (generic term)
+dot product|1
+(noun)|scalar product|inner product|real number (generic term)|real (generic term)
+dotage|1
+(noun)|second childhood|senility|old age (generic term)|years (generic term)|age (generic term)|eld (generic term)|geezerhood (generic term)
+dotard|1
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+dote|2
+(verb)|senesce (generic term)|age (generic term)|get on (generic term)|mature (generic term)|maturate (generic term)
+(verb)|love (generic term)
+doting|1
+(adj)|adoring|fond|loving (similar term)
+dotrel|1
+(noun)|dotterel|Charadrius morinellus|Eudromias morinellus|plover (generic term)
+dotted|2
+(adj)|flecked|specked|speckled|stippled|patterned (similar term)
+(adj)|dashed|broken (similar term)
+dotted gayfeather|1
+(noun)|Liatris punctata|blazing star (generic term)|button snakeroot (generic term)|gayfeather (generic term)|gay-feather (generic term)|snakeroot (generic term)
+dotted line|1
+(noun)|line (generic term)
+dotterel|1
+(noun)|dotrel|Charadrius morinellus|Eudromias morinellus|plover (generic term)
+dottily|1
+(adv)|daftly|balmily|nuttily|wackily
+dottle|1
+(noun)|residue (generic term)
+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 (similar term)
+(adj)|crazy|gaga|enamored|infatuated|in love|smitten|soft on|taken with|loving (similar term)
+douala|1
+(noun)|Douala|city (generic term)|metropolis (generic term)|urban center (generic term)
+douay-rheims bible|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+douay-rheims version|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+douay bible|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+douay version|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+double|19
+(adj)|dual|twofold|two-fold|treble|threefold|three-fold|multiple (similar term)
+(adj)|dual|duple|multiple (similar term)
+(adj)|doubled|twofold|two-fold|multiple (similar term)
+(adj)|single (antonym)
+(adj)|bivalent|multivalent (antonym)|univalent (antonym)
+(adj)|large (similar term)|big (similar term)
+(adj)|forked|equivocal (similar term)|ambiguous (similar term)
+(noun)|two-base hit|two-bagger|two-baser|base hit (generic term)|safety (generic term)
+(noun)|stunt man|stunt woman|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+(noun)|image|look-alike|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|multiple (generic term)
+(noun)|doubling|raise (generic term)
+(verb)|duplicate|multiply (generic term)|manifold (generic term)|double up (related term)
+(verb)|hit (generic term)
+(verb)|double over|double up|bend (generic term)|flex (generic term)
+(verb)|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)
+(verb)|bid (generic term)|call (generic term)
+(verb)|duplicate|reduplicate|repeat|replicate|reproduce (generic term)
+(adv)|doubly|twice
+double-barreled|2
+(adj)|double-barrelled|single-barreled (antonym)
+(adj)|double-barrelled|ambiguous (similar term)
+double-barrelled|2
+(adj)|double-barreled|single-barreled (antonym)
+(adj)|double-barreled|ambiguous (similar term)
+double-bass|1
+(adj)|contrabass|low (similar term)|low-pitched (similar term)
+double-bedded|1
+(adj)|bedded (similar term)
+double-bitted ax|1
+(noun)|double-bitted axe|Western ax|Western axe|ax (generic term)|axe (generic term)
+double-bitted axe|1
+(noun)|double-bitted ax|Western ax|Western axe|ax (generic term)|axe (generic term)
+double-blind experiment|1
+(noun)|double-blind procedure|double-blind study|experimental procedure (generic term)
+double-blind procedure|1
+(noun)|double-blind experiment|double-blind study|experimental procedure (generic term)
+double-blind study|1
+(noun)|double-blind procedure|double-blind experiment|experimental procedure (generic term)
+double-bogey|1
+(noun)|score (generic term)
+double-breasted|1
+(adj)|single-breasted (antonym)
+double-breasted jacket|1
+(noun)|jacket (generic term)
+double-breasted suit|1
+(noun)|suit (generic term)|suit of clothes (generic term)
+double-check|1
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+double-chinned|1
+(adj)|jowly|loose-jowled|fat (similar term)
+double-crosser|1
+(noun)|double-dealer|two-timer|betrayer|traitor|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+double-crossing|1
+(noun)|double cross|treachery (generic term)|betrayal (generic term)|treason (generic term)|perfidy (generic term)
+double-date|1
+(verb)|date (generic term)
+double-dealer|1
+(noun)|double-crosser|two-timer|betrayer|traitor|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+double-dealing|2
+(adj)|ambidextrous|deceitful|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+(noun)|duplicity|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+double-decker|1
+(noun)|bus|autobus|coach|charabanc|jitney|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+double-dyed|1
+(adj)|arrant|complete|consummate|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+double-edged|1
+(adj)|ambiguous (similar term)
+double-entry bookkeeping|1
+(noun)|double entry|bookkeeping (generic term)|clerking (generic term)
+double-faced|2
+(adj)|reversible (similar term)|two-sided (similar term)
+(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+double-geared|2
+(adj)|geared (similar term)
+(adj)|back-geared|geared (similar term)
+double-glaze|1
+(verb)|glass (generic term)|glaze (generic term)
+double-humped|1
+(adj)|two-humped|projection (related term)
+double-hung window|1
+(noun)|window (generic term)
+double-jointed|1
+(adj)|flexible (similar term)|flexile (similar term)
+double-magnum|1
+(noun)|jeroboam|wine bottle (generic term)
+double-park|1
+(verb)|park (generic term)
+double-prop|1
+(noun)|double-propeller plane|twin-prop|twin-propeller-plane|propeller plane (generic term)
+double-propeller plane|1
+(noun)|double-prop|twin-prop|twin-propeller-plane|propeller plane (generic term)
+double-quick|1
+(adj)|fast (similar term)
+double-reed instrument|1
+(noun)|double reed|beating-reed instrument (generic term)|reed instrument (generic term)|reed (generic term)
+double-space|1
+(verb)|type (generic term)|typewrite (generic term)
+double-spaced|1
+(adj)|spaced (similar term)
+double-spacing|1
+(noun)|typing (generic term)|typewriting (generic term)
+double-team|1
+(verb)|cover (generic term)
+double-tongued|1
+(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|dishonest (similar term)|dishonorable (similar term)
+double-u|1
+(noun)|W|letter w|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+double agent|1
+(noun)|spy (generic term)|undercover agent (generic term)
+double back|1
+(verb)|backtrack|turn back|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+double bar|1
+(noun)|bar line (generic term)
+double bass|1
+(noun)|bass fiddle|bass viol|bull fiddle|contrabass|string bass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+double bassoon|1
+(noun)|contrabassoon|contrafagotto|bassoon (generic term)
+double bed|1
+(noun)|bed (generic term)
+double bind|1
+(noun)|dilemma (generic term)|quandary (generic term)
+double birdie|1
+(verb)|shoot (generic term)
+double blind|1
+(noun)|test (generic term)|trial (generic term)|run (generic term)
+double bogey|1
+(verb)|shoot (generic term)
+double boiler|1
+(noun)|double saucepan|saucepan (generic term)
+double bond|1
+(noun)|covalent bond (generic term)
+double check|1
+(noun)|countercheck|assay (generic term)|check (generic term)
+double chin|1
+(noun)|buccula|chin (generic term)|mentum (generic term)
+double clinch|1
+(noun)|clinch (generic term)|clench (generic term)
+double cream|1
+(noun)|cream cheese (generic term)
+double creme|1
+(noun)|heavy whipping cream|cream (generic term)
+double crochet|2
+(noun)|double stitch|crochet stitch (generic term)
+(verb)|double stitch|crochet (generic term)
+double cross|2
+(noun)|double-crossing|treachery (generic term)|betrayal (generic term)|treason (generic term)|perfidy (generic term)
+(verb)|betray (generic term)|sell (generic term)
+double dagger|1
+(noun)|double obelisk|diesis|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+double damages|1
+(noun)|punitive damages (generic term)|exemplary damages (generic term)|smart money (generic term)
+double date|1
+(noun)|date (generic term)|appointment (generic term)|engagement (generic term)
+double decomposition|1
+(noun)|double decomposition reaction|metathesis|chemical reaction (generic term)|reaction (generic term)
+double decomposition reaction|1
+(noun)|double decomposition|metathesis|chemical reaction (generic term)|reaction (generic term)
+double digit|1
+(noun)|integer (generic term)|whole number (generic term)
+double dipper|1
+(noun)|earner (generic term)|wage earner (generic term)
+double dipping|1
+(noun)|income (generic term)
+double door|1
+(noun)|door (generic term)
+double dribble|1
+(noun)|dribble (generic term)|dribbling (generic term)
+double dutch|2
+(noun)|double Dutch|gibberish (generic term)|gibber (generic term)
+(noun)|double Dutch|jump rope (generic term)
+double dye|1
+(verb)|dye (generic term)
+double eagle|2
+(noun)|score (generic term)
+(noun)|coin (generic term)
+double entendre|1
+(noun)|ambiguity (generic term)
+double entry|1
+(noun)|double-entry bookkeeping|bookkeeping (generic term)|clerking (generic term)
+double fault|1
+(noun)|fault (generic term)
+double feature|1
+(noun)|twin bill|doubleheader|game (generic term)
+double first|1
+(noun)|first (generic term)|first-class honours degree (generic term)
+double flat|1
+(noun)|flat (generic term)
+double glazing|1
+(noun)|window (generic term)
+double gloucester|1
+(noun)|double Gloucester|cheese (generic term)
+double gold|1
+(noun)|golden glow|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower (generic term)|Rudbeckia laciniata (generic term)
+double helix|1
+(noun)|helix (generic term)|spiral (generic term)
+double indemnity|1
+(noun)|clause (generic term)
+double jeopardy|1
+(noun)|prosecution (generic term)|criminal prosecution (generic term)
+double knit|1
+(noun)|knit (generic term)|knitted fabric (generic term)
+double leg circle|1
+(noun)|gymnastic exercise (generic term)
+double negative|2
+(noun)|affirmative (generic term)
+(noun)|negative (generic term)
+double obelisk|1
+(noun)|double dagger|diesis|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+double over|1
+(verb)|double|double up|bend (generic term)|flex (generic term)
+double play|1
+(noun)|baseball play (generic term)
+double pneumonia|1
+(noun)|lobar pneumonia (generic term)
+double quick|1
+(adv)|double time
+double quotes|1
+(noun)|quotation mark (generic term)|quote (generic term)|inverted comma (generic term)
+double reed|2
+(noun)|double-reed instrument|beating-reed instrument (generic term)|reed instrument (generic term)|reed (generic term)
+(noun)|reed (generic term)|vibrating reed (generic term)
+double refraction|1
+(noun)|birefringence|refraction (generic term)
+double replacement reaction|1
+(noun)|double decomposition (generic term)|double decomposition reaction (generic term)|metathesis (generic term)
+double reverse|1
+(noun)|reverse (generic term)
+double rhyme|1
+(noun)|rhyme (generic term)|rime (generic term)
+double salt|1
+(noun)|salt (generic term)|solid solution (generic term)|primary solid solution (generic term)
+double saucepan|1
+(noun)|double boiler|saucepan (generic term)
+double sharp|1
+(noun)|sharp (generic term)
+double standard|1
+(noun)|ethic (generic term)|ethical code (generic term)
+double standard of sexual behavior|1
+(noun)|double standard (generic term)
+double star|1
+(noun)|binary star|binary|star (generic term)
+double stitch|2
+(noun)|double crochet|crochet stitch (generic term)
+(verb)|double crochet|crochet (generic term)
+double stopping|1
+(noun)|stopping (generic term)
+double take|1
+(noun)|reaction (generic term)|response (generic term)
+double talk|1
+(noun)|gibberish (generic term)|gibber (generic term)
+double time|3
+(noun)|pace (generic term)|gait (generic term)
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+(adv)|double quick
+double tongue|1
+(verb)|triple-tongue|tongue (generic term)
+double up|3
+(verb)|double over|double|bend (generic term)|flex (generic term)
+(verb)|share (generic term)
+(verb)|parlay|bet on (generic term)|back (generic term)|gage (generic term)|stake (generic term)|game (generic term)|punt (generic term)
+double vision|1
+(noun)|diplopia|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+doubled|1
+(adj)|double|twofold|two-fold|multiple (similar term)
+doubleheader|1
+(noun)|twin bill|double feature|game (generic term)
+doubler|1
+(noun)|electronic device (generic term)
+doubles|2
+(noun)|badminton (generic term)
+(noun)|tennis (generic term)|lawn tennis (generic term)
+doublespeak|1
+(noun)|evasion (generic term)|equivocation (generic term)
+doublet|1
+(noun)|jacket (generic term)
+doublethink|1
+(noun)|believing (generic term)
+doubleton|1
+(noun)|couple (generic term)|pair (generic term)|twosome (generic term)|twain (generic term)|brace (generic term)|span (generic term)|yoke (generic term)|couplet (generic term)|distich (generic term)|duo (generic term)|duet (generic term)|dyad (generic term)|duad (generic term)
+doubletree|1
+(noun)|crossbar (generic term)
+doubling|2
+(noun)|multiplication (generic term)
+(noun)|double|raise (generic term)
+doubloon|1
+(noun)|coin (generic term)
+doubly|2
+(adv)|double|twice
+(adv)|in two ways
+doubly transitive verb|1
+(noun)|doubly transitive verb form|transitive verb (generic term)|transitive verb form (generic term)|transitive (generic term)
+doubly transitive verb form|1
+(noun)|doubly transitive verb|transitive verb (generic term)|transitive verb form (generic term)|transitive (generic term)
+doubt|4
+(noun)|uncertainty|incertitude|dubiety|doubtfulness|dubiousness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+(noun)|dubiousness|doubtfulness|question|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+(verb)|disbelieve (generic term)|discredit (generic term)
+(verb)|distrust (generic term)|mistrust (generic term)|suspect (generic term)
+doubter|2
+(noun)|skeptic|sceptic|intellectual (generic term)|intellect (generic term)
+(noun)|agnostic|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+doubtful|3
+(adj)|dubious|dubitable|in question|questionable (similar term)
+(adj)|dubious|uncertain (similar term)|unsure (similar term)|incertain (similar term)
+(adj)|tentative|unsettled (similar term)
+doubtfully|1
+(adv)|dubiously
+doubtfulness|2
+(noun)|doubt|uncertainty|incertitude|dubiety|dubiousness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+(noun)|doubt|dubiousness|question|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+doubting|1
+(adj)|questioning|skeptical|sceptical|distrustful (similar term)
+doubting thomas|2
+(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle (generic term)|saint (generic term)
+(noun)|doubting Thomas|skeptic (generic term)|sceptic (generic term)|doubter (generic term)
+doubtless|1
+(adv)|undoubtedly|beyond question|without doubt|beyond any doubt
+douche|3
+(noun)|douche bag|syringe (generic term)
+(noun)|irrigation (generic term)
+(verb)|cleanse (generic term)|clean (generic term)
+douche bag|1
+(noun)|douche|syringe (generic term)
+dough|2
+(noun)|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(noun)|boodle|bread|cabbage|clams|dinero|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+dough-like|1
+(adj)|compact (similar term)
+doughboy|2
+(noun)|infantryman (generic term)|marcher (generic term)|foot soldier (generic term)|footslogger (generic term)
+(noun)|friedcake (generic term)
+doughnut|2
+(noun)|ring|halo|annulus|anulus|anchor ring|toroid (generic term)
+(noun)|donut|sinker|friedcake (generic term)
+doughnut-shaped|1
+(adj)|annular|annulate|annulated|circinate|circular|ringed|ring-shaped|rounded (similar term)
+doughty|1
+(adj)|hardy|manly (similar term)|manful (similar term)|manlike (similar term)
+doughy|1
+(adj)|soggy|heavy (similar term)
+douglas|1
+(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|Little Giant|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+douglas elton fairbanks|1
+(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+douglas fairbanks|1
+(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+douglas fairbanks jr.|1
+(noun)|Fairbanks|Douglas Fairbanks Jr.|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+douglas fir|2
+(noun)|fir (generic term)
+(noun)|conifer (generic term)|coniferous tree (generic term)
+douglas hemlock|1
+(noun)|green douglas fir|douglas spruce|douglas pine|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+douglas macarthur|1
+(noun)|MacArthur|Douglas MacArthur|general (generic term)|full general (generic term)
+douglas moore|1
+(noun)|Moore|Douglas Moore|composer (generic term)
+douglas pine|1
+(noun)|green douglas fir|douglas spruce|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+douglas spruce|1
+(noun)|green douglas fir|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+douglas squirrel|1
+(noun)|chickeree|Douglas squirrel|Tamiasciurus douglasi|tree squirrel (generic term)
+douglass|1
+(noun)|Douglass|Frederick Douglass|abolitionist (generic term)|emancipationist (generic term)
+dour|3
+(adj)|dogged|pertinacious|tenacious|unyielding|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|forbidding|grim|unpleasant (similar term)
+(adj)|dark|glowering|glum|moody|morose|saturnine|sour|sullen|ill-natured (similar term)
+doura|1
+(noun)|durra|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+dourah|1
+(noun)|durra|doura|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+dourly|1
+(adv)|sullenly|glumly
+douroucouli|1
+(noun)|Aotus trivirgatus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+douse|7
+(verb)|put out|snuff out (generic term)|blow out (generic term)|extinguish (generic term)|quench (generic term)
+(verb)|dowse|wet (generic term)
+(verb)|dip|duck|dunk (generic term)|dip (generic term)|souse (generic term)|plunge (generic term)|douse (generic term)
+(verb)|dunk|dip|souse|plunge|immerse (generic term)|plunge (generic term)
+(verb)|roll up (generic term)|furl (generic term)
+(verb)|dowse|slacken (generic term)|remit (generic term)
+(verb)|drench|dowse|soak|sop|souse|wet (generic term)
+dousing|1
+(noun)|submersion|immersion|ducking|wetting (generic term)
+dove|5
+(noun)|pigeon (generic term)
+(noun)|peacenik|pacifist (generic term)|pacificist (generic term)|disarmer (generic term)|hawk (antonym)
+(noun)|Columba|Dove|constellation (generic term)
+(noun)|squab|poultry (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+dove's foot geranium|1
+(noun)|Geranium molle|cranesbill (generic term)|crane's bill (generic term)
+dovecote|1
+(noun)|columbarium|columbary|birdhouse (generic term)
+dovekie|1
+(noun)|little auk|Plautus alle|auk (generic term)
+dover|1
+(noun)|Dover|capital of Delaware|state capital (generic term)
+dover's powder|1
+(noun)|Dover's powder|powder (generic term)
+dovetail|2
+(noun)|dovetail joint|mortise joint (generic term)|mortise-and-tenon joint (generic term)
+(verb)|fit (generic term)
+dovetail joint|1
+(noun)|dovetail|mortise joint (generic term)|mortise-and-tenon joint (generic term)
+dovetail plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+dovish|1
+(adj)|pacifist|pacifistic|peaceful (similar term)
+dovishness|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)|hawkishness (antonym)
+dovyalis|1
+(noun)|Dovyalis|genus Dovyalis|dilleniid dicot genus (generic term)
+dovyalis caffra|1
+(noun)|kei apple|kei apple bush|Dovyalis caffra|shrub (generic term)|bush (generic term)
+dovyalis hebecarpa|1
+(noun)|ketembilla|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+dow-jones industrial average|1
+(noun)|Dow Jones|Dow-Jones Industrial Average|stock index (generic term)|stock market index (generic term)
+dow jones|1
+(noun)|Dow Jones|Dow-Jones Industrial Average|stock index (generic term)|stock market index (generic term)
+dowager|1
+(noun)|widow (generic term)|widow woman (generic term)
+dowager's hump|1
+(noun)|spinal curvature (generic term)|osteoporosis (generic term)
+dowdily|1
+(adv)|frumpily|frumpishly
+dowdiness|1
+(noun)|drabness|homeliness|inelegance (generic term)
+dowding|1
+(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+dowdy|4
+(adj)|styleless (similar term)|unstylish (similar term)
+(adj)|frumpy|frumpish|unfashionable (similar term)|unstylish (similar term)
+(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+(noun)|pandowdy|pastry (generic term)
+dowel|1
+(noun)|dowel pin|joggle|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+dowel pin|1
+(noun)|dowel|joggle|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+doweling|1
+(noun)|fastening (generic term)|attachment (generic term)
+dower|3
+(noun)|dowry|dowery|portion|gift (generic term)
+(noun)|life estate (generic term)|estate for life (generic term)
+(verb)|endow|give (generic term)|gift (generic term)|present (generic term)
+dowered|1
+(adj)|endowed (similar term)
+dowerless|1
+(adj)|unendowed (similar term)
+dowery|1
+(noun)|dowry|dower|portion|gift (generic term)
+dowitcher|1
+(noun)|snipe (generic term)
+dowland|1
+(noun)|Dowland|John Dowland|lutist (generic term)|lutanist (generic term)|lutenist (generic term)|composer (generic term)
+down|22
+(adj)|behind (similar term)|downbound (similar term)|downcast (similar term)|downfield (similar term)|downward (similar term)|fallen (similar term)|set (similar term)|thrown (similar term)|weak (similar term)|descending (related term)|low (related term)|up (antonym)
+(adj)|falling (similar term)
+(adj)|down pat|mastered|perfect (similar term)
+(adj)|downward|descending (similar term)
+(adj)|out (similar term)|retired (similar term)
+(adj)|depressed|low (similar term)
+(adj)|lowered (similar term)
+(adj)|inoperative (similar term)
+(adj)|blue|depressed|dispirited|downcast|downhearted|down in the mouth|low|low-spirited|dejected (similar term)
+(noun)|down feather|feather (generic term)|plume (generic term)|plumage (generic term)
+(noun)|turn (generic term)|play (generic term)
+(noun)|Down|John L. H. Down|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|highland (generic term)|upland (generic term)
+(noun)|pile|hair (generic term)
+(verb)|toss off|pop|bolt down|belt down|pour down|drink down|kill|drink (generic term)|imbibe (generic term)
+(verb)|devour|consume|go through|eat (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|shoot down|land
+(verb)|knock down|cut down|push down|pull down|strike (generic term)
+(verb)|polish|refine|fine-tune|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(adv)|downwards|downward|downwardly|upwardly (antonym)|upward (antonym)|upwards (antonym)|up (antonym)
+(adv)|up (antonym)
+down's syndrome|1
+(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+down-and-out|2
+(adj)|unsuccessful (similar term)
+(noun)|poor person (generic term)|have-not (generic term)
+down-bow|1
+(noun)|bow (generic term)
+down-to-earth|1
+(adj)|earthy|realistic (similar term)
+down easter|1
+(noun)|Mainer|Down Easter|American (generic term)
+down feather|1
+(noun)|down|feather (generic term)|plume (generic term)|plumage (generic term)
+down in the mouth|1
+(adj)|blue|depressed|dispirited|down|downcast|downhearted|low|low-spirited|dejected (similar term)
+down pat|1
+(adj)|down|mastered|perfect (similar term)
+down payment|1
+(noun)|deposit|payment (generic term)
+down quark|1
+(noun)|quark (generic term)
+down syndrome|1
+(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+down the stairs|1
+(adv)|downstairs|on a lower floor|below|upstairs (antonym)
+down town|1
+(noun)|civic center|municipal center|hub (generic term)
+downbeat|1
+(noun)|rhythm (generic term)|beat (generic term)|musical rhythm (generic term)
+downbound|1
+(adj)|down (similar term)
+downcast|3
+(adj)|down (similar term)
+(adj)|blue|depressed|dispirited|down|downhearted|down in the mouth|low|low-spirited|dejected (similar term)
+(noun)|shaft (generic term)
+downdraft|1
+(noun)|draft (generic term)|draught (generic term)
+downer|1
+(noun)|sedative|sedative drug|depressant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|drug of abuse (generic term)|street drug (generic term)
+downfall|3
+(noun)|ruin|ruination|failure (generic term)
+(noun)|precipitation|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|fall|weakening (generic term)|rise (antonym)
+downfield|1
+(adj)|down (similar term)
+downgrade|2
+(noun)|grade (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)|upgrade (antonym)
+downhearted|1
+(adj)|blue|depressed|dispirited|down|downcast|down in the mouth|low|low-spirited|dejected (similar term)
+downheartedness|1
+(noun)|dejectedness|low-spiritedness|lowness|dispiritedness|sadness (generic term)|unhappiness (generic term)
+downhill|3
+(adj)|declivitous|downward-sloping|descending (similar term)
+(noun)|descent (generic term)|declivity (generic term)|fall (generic term)|decline (generic term)|declination (generic term)|declension (generic term)|downslope (generic term)
+(noun)|ski race (generic term)|skiing race (generic term)
+downiness|1
+(noun)|featheriness|fluffiness|softness (generic term)
+downing|1
+(noun)|Downing|Andrew Jackson Downing|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+downing street|2
+(noun)|Downing Street|street (generic term)
+(noun)|Downing Street|government (generic term)|authorities (generic term)|regime (generic term)
+downlike|1
+(adj)|downy|flossy|fluffy|soft (similar term)
+download|1
+(verb)|transfer (generic term)|upload (antonym)
+downmarket|1
+(adj)|downscale (similar term)|upmarket (antonym)
+downplay|2
+(verb)|understate|minimize|minimise|inform (generic term)|overstate (antonym)
+(verb)|background|play down|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)|play up (antonym)|foreground (antonym)
+downpour|1
+(noun)|cloudburst|deluge|waterspout|torrent|pelter|soaker|rain (generic term)|rainfall (generic term)
+downright|2
+(adj)|honest (similar term)|honorable (similar term)
+(adj)|absolute|out-and-out|rank|right-down|sheer|complete (similar term)
+downrightness|1
+(noun)|straightforwardness|directness (generic term)|straightness (generic term)
+downriver|1
+(adv)|downstream|upstream (antonym)|upriver (antonym)
+downscale|1
+(adj)|downmarket (similar term)
+downside|1
+(noun)|side (generic term)
+downsizing|1
+(noun)|retrenchment|curtailment|economy (generic term)|saving (generic term)
+downslope|1
+(noun)|descent|declivity|fall|decline|declination|declension|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+downspin|1
+(noun)|downturn (generic term)|downswing (generic term)
+downstage|3
+(adj)|upstage (antonym)
+(noun)|stage (generic term)
+(adv)|upstage (antonym)
+downstair|1
+(adj)|downstairs|ground-floor (similar term)|upstairs (antonym)
+downstairs|2
+(adj)|downstair|ground-floor (similar term)|upstairs (antonym)
+(adv)|down the stairs|on a lower floor|below|upstairs (antonym)
+downstream|2
+(adj)|upstream (antonym)
+(adv)|downriver|upstream (antonym)|upriver (antonym)
+downstroke|1
+(noun)|stroke (generic term)
+downswing|2
+(noun)|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|downturn|worsening (generic term)
+downtick|1
+(noun)|transaction (generic term)|dealing (generic term)|dealings (generic term)|uptick (antonym)
+downtime|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|uptime (antonym)
+downtown|3
+(adj)|uptown (antonym)
+(noun)|business district|city district (generic term)
+(adv)|uptown (antonym)
+downtrodden|1
+(adj)|unfortunate (similar term)
+downturn|1
+(noun)|downswing|worsening (generic term)
+downward|3
+(adj)|down (similar term)
+(adj)|down|descending (similar term)
+(adv)|down|downwards|downwardly|upwardly (antonym)|upward (antonym)|upwards (antonym)|up (antonym)
+downward-arching|1
+(adj)|descending (similar term)
+downward-sloping|1
+(adj)|declivitous|downhill|descending (similar term)
+downwardly|1
+(adv)|down|downwards|downward|upwardly (antonym)|upward (antonym)|upwards (antonym)|up (antonym)
+downwards|1
+(adv)|down|downward|downwardly|upwardly (antonym)|upward (antonym)|upwards (antonym)|up (antonym)
+downwind|3
+(adj)|lee|leeward (similar term)
+(adv)|with the wind|upwind (antonym)
+(adv)|windward|upwind (antonym)|leeward (antonym)
+downy|2
+(adj)|downlike|flossy|fluffy|soft (similar term)
+(adj)|pubescent|puberulent|sericeous|hairy (similar term)|haired (similar term)|hirsute (similar term)
+downy ash|1
+(noun)|red ash|Fraxinus pennsylvanica|ash (generic term)|ash tree (generic term)
+downy birch|1
+(noun)|white birch|Betula pubescens|birch (generic term)|birch tree (generic term)
+downy brome|1
+(noun)|downy bromegrass|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+downy bromegrass|1
+(noun)|downy brome|downy cheat|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+downy cheat|1
+(noun)|downy brome|downy bromegrass|downy chess|cheatgrass|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+downy chess|1
+(noun)|downy brome|downy bromegrass|downy cheat|cheatgrass|drooping brome|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+downy ground cherry|1
+(noun)|strawberry tomato|Physalis pubescens|ground cherry (generic term)|husk tomato (generic term)
+downy haw|1
+(noun)|red haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn (generic term)|haw (generic term)
+downy manzanita|1
+(noun)|woolly manzanita|Arctostaphylos tomentosa|manzanita (generic term)
+downy mildew|1
+(noun)|false mildew|mildew (generic term)
+downy poplar|1
+(noun)|swamp cottonwood|black cottonwood|swamp poplar|Populus heterophylla|cottonwood (generic term)
+downy wood mint|1
+(noun)|Blephilia celiata|wood mint (generic term)
+downy woodpecker|1
+(noun)|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+downy yellow violet|1
+(noun)|Viola pubescens|violet (generic term)
+dowry|1
+(noun)|dowery|dower|portion|gift (generic term)
+dowse|5
+(noun)|dowsing|rhabdomancy|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+(verb)|douse|wet (generic term)
+(verb)|divine (generic term)
+(verb)|douse|slacken (generic term)|remit (generic term)
+(verb)|drench|douse|soak|sop|souse|wet (generic term)
+dowser|2
+(noun)|water witch|rhabdomancer|diviner (generic term)
+(noun)|divining rod|dowsing rod|waterfinder|water finder|stick (generic term)
+dowsing|1
+(noun)|dowse|rhabdomancy|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+dowsing rod|1
+(noun)|divining rod|dowser|waterfinder|water finder|stick (generic term)
+doxastic logic|1
+(noun)|modal logic (generic term)
+doxepin|1
+(noun)|doxepin hydrochloride|Adapin|Sinequan|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+doxepin hydrochloride|1
+(noun)|doxepin|Adapin|Sinequan|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+doxology|1
+(noun)|hymn (generic term)|anthem (generic term)
+doxorubicin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+doxy|1
+(noun)|concubine|courtesan|odalisque|paramour|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+doxycycline|1
+(noun)|Vibramycin|antibiotic (generic term)|antibiotic drug (generic term)
+doyen|1
+(noun)|dean|elder (generic term)|senior (generic term)
+doyenne|1
+(noun)|elder (generic term)|senior (generic term)
+doyley|1
+(noun)|doily|doyly|linen (generic term)
+doyly|1
+(noun)|doily|doyley|linen (generic term)
+doze|2
+(noun)|drowse|sleeping (generic term)
+(verb)|snooze|drowse|nap (generic term)|catnap (generic term)|catch a wink (generic term)|doze off (related term)
+doze off|1
+(verb)|fall asleep|dope off|flake out|drift off|nod off|drop off|drowse off|wake up (antonym)
+dozen|2
+(adj)|twelve|12|xii|cardinal (similar term)
+(noun)|twelve|12|XII|large integer (generic term)
+dozens|1
+(noun)|tons|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+dozer|1
+(noun)|bulldozer|tractor (generic term)
+dozy|1
+(adj)|drowsy|drowsing|asleep (similar term)
+dp|1
+(noun)|displaced person|DP|stateless person|refugee (generic term)
+dph|1
+(noun)|Doctor of Public Health|DPH|doctor's degree (generic term)|doctorate (generic term)
+dphil|1
+(noun)|DPhil|Doctor of Philosophy (generic term)
+dprk|1
+(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country (generic term)|Asian nation (generic term)
+dpt vaccine|1
+(noun)|DPT vaccine|vaccine (generic term)|vaccinum (generic term)
+dr.|2
+(noun)|doctor|Dr.|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|doctor|doc|physician|MD|Dr.|medico|medical practitioner (generic term)|medical man (generic term)
+dr. j|1
+(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward (generic term)
+dr. johnson|1
+(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer (generic term)|author (generic term)|lexicographer (generic term)|lexicologist (generic term)
+dr. seuss|1
+(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer (generic term)|author (generic term)
+drab|5
+(adj)|dreary|dull (similar term)
+(adj)|sober|somber|sombre|colorless (similar term)|colourless (similar term)
+(adj)|olive-drab|chromatic (similar term)
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(noun)|olive drab|olive (generic term)
+draba|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+draba verna|1
+(noun)|whitlow grass|shadflower|shad-flower|Draba verna|draba (generic term)
+drabness|1
+(noun)|dowdiness|homeliness|inelegance (generic term)
+dracaena|1
+(noun)|agave (generic term)|century plant (generic term)|American aloe (generic term)
+dracaena draco|1
+(noun)|dragon tree|Dracaena draco|dracaena (generic term)
+dracaenaceae|1
+(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family (generic term)
+dracenaceae|1
+(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family (generic term)
+drachm|3
+(noun)|dram|drachma|apothecaries' unit (generic term)|apothecaries' weight (generic term)
+(noun)|fluidram|fluid dram|fluid drachm|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluidram|fluid dram|fluid drachm|United States liquid unit (generic term)
+drachma|2
+(noun)|dram|drachm|apothecaries' unit (generic term)|apothecaries' weight (generic term)
+(noun)|Greek drachma|Greek monetary unit (generic term)
+draco|3
+(noun)|Draco|lawgiver (generic term)|lawmaker (generic term)|Athenian (generic term)
+(noun)|Draco|Dragon|constellation (generic term)
+(noun)|Draco|genus Draco|reptile genus (generic term)
+dracocephalum|1
+(noun)|Dracocephalum|genus Dracocephalum|asterid dicot genus (generic term)
+dracocephalum parviflorum|1
+(noun)|dragonhead|dragon's head|Dracocephalum parviflorum|herb (generic term)|herbaceous plant (generic term)
+draconian|1
+(adj)|Draconian|lawgiver|lawmaker|Athenian (related term)
+dracontium|1
+(noun)|arum (generic term)|aroid (generic term)
+dracula|2
+(noun)|Dracula|genus Dracula|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Dracula|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+dracunculiasis|1
+(noun)|Guinea worm disease|Guinea worm|infestation (generic term)
+dracunculidae|1
+(noun)|Dracunculidae|family Dracunculidae|worm family (generic term)
+dracunculus|2
+(noun)|Dracunculus|genus Dracunculus|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Dracunculus|genus Dracunculus|worm genus (generic term)
+dracunculus medinensis|1
+(noun)|Guinea worm|Dracunculus medinensis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+dracunculus vulgaris|1
+(noun)|dragon arum|green dragon|Dracunculus vulgaris|arum (generic term)|aroid (generic term)
+draft|14
+(noun)|bill of exchange|order of payment|negotiable instrument (generic term)
+(noun)|draught|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|rough drawing|sketch (generic term)|study (generic term)
+(noun)|draught|potation|tipple|drink (generic term)
+(noun)|draft copy|text (generic term)|textual matter (generic term)
+(noun)|draught|depth (generic term)
+(noun)|regulator (generic term)
+(noun)|draught|dose (generic term)
+(noun)|conscription|muster|selective service|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+(noun)|gulp|draught|swig|swallow (generic term)|drink (generic term)|deglutition (generic term)
+(noun)|draught|drawing|pull (generic term)|pulling (generic term)
+(verb)|outline|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|enlist|muster in|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)|discharge (antonym)
+(verb)|blueprint|draught|design (generic term)|plan (generic term)
+draft animal|1
+(noun)|work animal (generic term)
+draft beer|1
+(noun)|draught beer|beer (generic term)
+draft board|1
+(noun)|board (generic term)
+draft copy|1
+(noun)|draft|text (generic term)|textual matter (generic term)
+draft dodger|1
+(noun)|draft evader|deserter (generic term)|defector (generic term)
+draft evader|1
+(noun)|draft dodger|deserter (generic term)|defector (generic term)
+draft horse|1
+(noun)|draught horse|dray horse|workhorse (generic term)
+draftee|1
+(noun)|conscript|inductee|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|volunteer (antonym)
+drafter|1
+(noun)|writer (generic term)|author (generic term)
+drafting|3
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+(noun)|mechanical drawing|trade (generic term)|craft (generic term)
+(noun)|drawing|draftsmanship|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+drafting board|1
+(noun)|drawing board|board (generic term)
+drafting instrument|1
+(noun)|instrument (generic term)
+drafting table|1
+(noun)|drawing table|worktable (generic term)|work table (generic term)
+draftsman|2
+(noun)|draughtsman|draftsperson|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|drawer|artist (generic term)|creative person (generic term)
+draftsmanship|1
+(noun)|drawing|drafting|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+draftsperson|1
+(noun)|draftsman|draughtsman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+drafty|1
+(adj)|draughty|leaky (similar term)
+drag|17
+(noun)|retarding force|resistance (generic term)
+(noun)|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|tediousness (generic term)|tedium (generic term)|tiresomeness (generic term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|puff|pull|inhalation (generic term)|inspiration (generic term)|aspiration (generic term)|breathing in (generic term)
+(noun)|pull (generic term)|pulling (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)|drag in (related term)
+(verb)|haul|hale|cart|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|embroil|tangle|sweep|sweep up|drag in|involve (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|trail|get behind|hang back|drop behind|lag (generic term)|dawdle (generic term)|fall back (generic term)|fall behind (generic term)
+(verb)|puff|draw|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|scuff|shuffle (generic term)|scuffle (generic term)|shamble (generic term)
+(verb)|dredge|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|persuade (generic term)
+(verb)|drag on|drag out|proceed (generic term)|go (generic term)
+drag a bunt|1
+(verb)|bunt|hit (generic term)
+drag coefficient|1
+(noun)|coefficient of drag|coefficient (generic term)
+drag down|1
+(verb)|bear down|bear down on|press down on|weigh down|press (generic term)
+drag in|1
+(verb)|embroil|tangle|sweep|sweep up|drag|involve (generic term)
+drag on|2
+(verb)|drag out|last (generic term)|endure (generic term)
+(verb)|drag|drag out|proceed (generic term)|go (generic term)
+drag one's feet|1
+(verb)|procrastinate|stall|drag one's heels|shillyshally|dilly-dally|dillydally|delay (generic term)
+drag one's heels|1
+(verb)|procrastinate|stall|drag one's feet|shillyshally|dilly-dally|dillydally|delay (generic term)
+drag out|2
+(verb)|drag on|last (generic term)|endure (generic term)
+(verb)|drag|drag on|proceed (generic term)|go (generic term)
+drag through the mud|1
+(verb)|badmouth|malign|traduce|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+drag up|1
+(verb)|dredge up|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+dragee|2
+(noun)|candy (generic term)|confect (generic term)
+(noun)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+dragger|2
+(noun)|puller|tugger|worker (generic term)
+(noun)|trawler|fishing boat (generic term)|fishing smack (generic term)|fishing vessel (generic term)
+dragging|2
+(adj)|effortful (similar term)
+(adj)|slow (similar term)
+draggle|1
+(verb)|bedraggle|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+draggled|1
+(adj)|bedraggled|dirty (similar term)|soiled (similar term)|unclean (similar term)
+dragnet|2
+(noun)|system (generic term)|scheme (generic term)
+(noun)|trawl|trawl net|fishnet (generic term)|fishing net (generic term)
+dragoman|1
+(noun)|interpreter (generic term)|translator (generic term)
+dragon|4
+(noun)|firedrake|mythical monster (generic term)|mythical creature (generic term)
+(noun)|tartar|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|Draco|Dragon|constellation (generic term)
+(noun)|flying dragon|flying lizard|agamid (generic term)|agamid lizard (generic term)
+dragon's blood|1
+(noun)|gum (generic term)
+dragon's eye|1
+(noun)|longanberry|edible fruit (generic term)
+dragon's head|1
+(noun)|dragonhead|Dracocephalum parviflorum|herb (generic term)|herbaceous plant (generic term)
+dragon's mouth|1
+(noun)|bog rose|wild pink|Arethusa bulbosa|arethusa (generic term)
+dragon arum|1
+(noun)|green dragon|Dracunculus vulgaris|arum (generic term)|aroid (generic term)
+dragon lizard|1
+(noun)|Komodo dragon|Komodo lizard|giant lizard|Varanus komodoensis|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+dragon tree|1
+(noun)|Dracaena draco|dracaena (generic term)
+dragonet|1
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+dragonfly|1
+(noun)|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate (generic term)
+dragonhead|1
+(noun)|dragon's head|Dracocephalum parviflorum|herb (generic term)|herbaceous plant (generic term)
+dragoon|3
+(noun)|cavalryman (generic term)|trooper (generic term)
+(verb)|sandbag|railroad|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|subjugate (generic term)|subject (generic term)
+dragunov|1
+(noun)|Dragunov|sniper rifle (generic term)|precision rifle (generic term)
+drain|8
+(noun)|drainage|emptying (generic term)|voidance (generic term)|evacuation (generic term)
+(noun)|tube (generic term)|tubing (generic term)
+(noun)|drainpipe|waste pipe|pipe (generic term)|pipage (generic term)|piping (generic term)
+(noun)|depletion (generic term)
+(verb)|run out|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|empty (generic term)
+(verb)|enfeeble|debilitate|weaken (generic term)
+drain basket|1
+(noun)|filter (generic term)
+drain the cup|1
+(verb)|drink up|drink (generic term)|imbibe (generic term)
+drainage|1
+(noun)|drain|emptying (generic term)|voidance (generic term)|evacuation (generic term)
+drainage area|1
+(noun)|catchment area|catchment basin|drainage basin|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+drainage basin|1
+(noun)|catchment area|catchment basin|drainage area|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+drainage ditch|1
+(noun)|ditch (generic term)
+drainage system|1
+(noun)|system (generic term)
+drainboard|1
+(noun)|draining board|board (generic term)
+drained|3
+(adj)|empty (similar term)|exhausted (similar term)|undrained (antonym)
+(adj)|knackered|tired (similar term)
+(adj)|dead|uncharged (similar term)
+draining|1
+(adj)|exhausting|debilitating (similar term)
+draining board|1
+(noun)|drainboard|board (generic term)
+drainpipe|1
+(noun)|drain|waste pipe|pipe (generic term)|pipage (generic term)|piping (generic term)
+drainplug|1
+(noun)|plug (generic term)|stopper (generic term)|stopple (generic term)
+drake|2
+(noun)|Drake|Francis Drake|Sir Francis Drake|navigator (generic term)|admiral (generic term)|full admiral (generic term)
+(noun)|duck (generic term)
+dram|3
+(noun)|drachm|drachma|apothecaries' unit (generic term)|apothecaries' weight (generic term)
+(noun)|avoirdupois unit (generic term)
+(noun)|Armenian monetary unit (generic term)
+drama|4
+(noun)|play|dramatic play|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|dramatic event|episode (generic term)
+(noun)|writing style (generic term)|literary genre (generic term)|genre (generic term)
+(noun)|emotionality (generic term)|emotionalism (generic term)
+drama critic|1
+(noun)|theater critic|critic (generic term)
+dramamine|1
+(noun)|dimenhydrinate|Dramamine|antihistamine (generic term)|antiemetic (generic term)|antiemetic drug (generic term)
+dramatic|4
+(adj)|melodramatic (similar term)|spectacular (similar term)|hammy (similar term)|undramatic (antonym)
+(adj)|spectacular|striking|impressive (similar term)
+(adj)|dramatic composition|dramatic work (related term)
+(adj)|lyric (antonym)
+dramatic art|1
+(noun)|dramaturgy|dramatics|theater|theatre|communication (generic term)|communicating (generic term)
+dramatic composition|1
+(noun)|dramatic work|writing (generic term)|written material (generic term)|piece of writing (generic term)
+dramatic event|1
+(noun)|drama|episode (generic term)
+dramatic irony|1
+(noun)|irony (generic term)
+dramatic performance|1
+(noun)|dramatic production|performance (generic term)
+dramatic play|1
+(noun)|play|drama|dramatic composition (generic term)|dramatic work (generic term)
+dramatic production|1
+(noun)|dramatic performance|performance (generic term)
+dramatic work|1
+(noun)|dramatic composition|writing (generic term)|written material (generic term)|piece of writing (generic term)
+dramatically|1
+(adv)|undramatically (antonym)
+dramatics|2
+(noun)|extracurricular activity (generic term)
+(noun)|dramaturgy|dramatic art|theater|theatre|communication (generic term)|communicating (generic term)
+dramatis personae|1
+(noun)|cast|cast of characters|gathering (generic term)|assemblage (generic term)
+dramatisation|2
+(noun)|dramatization|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+(noun)|dramatization|representation (generic term)
+dramatise|3
+(verb)|dramatize|adopt|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|dramatize|represent (generic term)
+(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatize|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+dramatist|1
+(noun)|playwright|writer (generic term)|author (generic term)
+dramatization|2
+(noun)|dramatisation|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+(noun)|dramatisation|representation (generic term)
+dramatize|3
+(verb)|dramatise|adopt|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|dramatise|represent (generic term)
+(verb)|embroider|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+dramaturgic|1
+(adj)|dramaturgical|communication|communicating (related term)
+dramaturgical|1
+(adj)|dramaturgic|communication|communicating (related term)
+dramaturgy|1
+(noun)|dramatic art|dramatics|theater|theatre|communication (generic term)|communicating (generic term)
+drambuie|1
+(noun)|Drambuie|Scotch (generic term)|Scotch whiskey (generic term)|Scotch whisky (generic term)|malt whiskey (generic term)|malt whisky (generic term)|Scotch malt whiskey (generic term)|Scotch malt whisky (generic term)|liqueur (generic term)|cordial (generic term)
+drape|5
+(noun)|curtain|drapery|mantle|pall|blind (generic term)|screen (generic term)|furnishing (generic term)
+(noun)|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|covering (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|cover (generic term)
+draped|2
+(adj)|cloaked|clothed|mantled|wrapped|covered (similar term)
+(adj)|curtained (similar term)
+draper|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+drapery|2
+(noun)|curtain|drape|mantle|pall|blind (generic term)|screen (generic term)|furnishing (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+drastic|1
+(adj)|forceful (similar term)
+draught|7
+(noun)|draft|potation|tipple|drink (generic term)
+(noun)|gulp|draft|swig|swallow (generic term)|drink (generic term)|deglutition (generic term)
+(noun)|draft|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|draft|depth (generic term)
+(noun)|draft|dose (generic term)
+(noun)|draft|drawing|pull (generic term)|pulling (generic term)
+(verb)|blueprint|draft|design (generic term)|plan (generic term)
+draught beer|1
+(noun)|draft beer|beer (generic term)
+draught horse|1
+(noun)|draft horse|dray horse|workhorse (generic term)
+draughts|1
+(noun)|checkers|board game (generic term)
+draughtsman|1
+(noun)|draftsman|draftsperson|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+draughty|1
+(adj)|drafty|leaky (similar term)
+dravidian|2
+(noun)|Dravidian|Indian (generic term)
+(noun)|Dravidian|Dravidic|Dravidian language|natural language (generic term)|tongue (generic term)
+dravidian language|1
+(noun)|Dravidian|Dravidic|Dravidian language|natural language (generic term)|tongue (generic term)
+dravidic|1
+(noun)|Dravidian|Dravidic|Dravidian language|natural language (generic term)|tongue (generic term)
+draw|45
+(noun)|gully (generic term)
+(noun)|drawing card|attraction|attractor|attracter|entertainer (generic term)
+(noun)|standoff|tie|finish (generic term)
+(noun)|lot|object (generic term)|physical object (generic term)
+(noun)|playing card (generic term)
+(noun)|hook|hooking|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|draw play|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(noun)|draw poker|poker (generic term)|poker game (generic term)
+(noun)|haul|haulage|pull (generic term)|pulling (generic term)
+(verb)|pull|force|move (generic term)|displace (generic term)|pull down (related term)|pull off (related term)|pull up (related term)|pull out (related term)|pull along (related term)|pull in (related term)|pull back (related term)|push (antonym)
+(verb)|reap|derive (generic term)|gain (generic term)
+(verb)|trace|line|describe|delineate|mark (generic term)
+(verb)|make|create by mental act (generic term)|create mentally (generic term)
+(verb)|pull|pull out|get out|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+(verb)|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|draw out (related term)
+(verb)|describe|depict|set forth (generic term)|expound (generic term)|exposit (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|puff|drag|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|withdraw|take out|draw off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|deposit (antonym)
+(verb)|cast|move (generic term)|go (generic term)
+(verb)|get|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)|draw up (related term)
+(verb)|create (generic term)
+(verb)|close (generic term)|shut (generic term)
+(verb)|be (generic term)
+(verb)|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+(verb)|quarter|draw and quarter|kill (generic term)
+(verb)|pull|move (generic term)|displace (generic term)
+(verb)|absorb|suck|imbibe|soak up|sop up|suck up|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|attract|pull|pull in|draw in|pull (generic term)|draw (generic term)|force (generic term)|repel (antonym)
+(verb)|string|thread|arrange (generic term)|set up (generic term)
+(verb)|pull back|stretch (generic term)
+(verb)|guide|run|pass|pass over (related term)|pass around (related term)
+(verb)|tie|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+(verb)|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|thin (generic term)
+(verb)|steep (generic term)|infuse (generic term)
+(verb)|disembowel|eviscerate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|localize (generic term)|localise (generic term)
+draw a bead on|2
+(verb)|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|aspire|aim|shoot for|plan (generic term)|be after (generic term)
+draw a blank|1
+(verb)|forget|block|blank out|remember (antonym)
+draw a line|1
+(verb)|draw the line|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+draw and quarter|1
+(verb)|draw|quarter|kill (generic term)
+draw away|2
+(verb)|lead (generic term)|head (generic term)
+(verb)|draw off|pull off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+draw back|2
+(verb)|withdraw|retreat|pull away|recede|pull back|retire|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retract|pull back|pull (generic term)
+draw close|3
+(verb)|cuddle|snuggle|nestle|nest|nuzzle|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|approach|near|come on|go up|draw near|come near|come (generic term)|come up (generic term)
+(verb)|pull (generic term)
+draw in|6
+(verb)|retract|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|attract|pull|pull in|draw|pull (generic term)|draw (generic term)|force (generic term)|repel (antonym)
+(verb)|curl up|curl|bend (generic term)|flex (generic term)
+(verb)|close in|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|pull in|get in|move in|arrive (generic term)|get (generic term)|come (generic term)|pull out (antonym)
+(verb)|suck in|hollow (generic term)|hollow out (generic term)|core out (generic term)
+draw near|1
+(verb)|approach|near|come on|go up|draw close|come near|come (generic term)|come up (generic term)
+draw off|2
+(verb)|draw away|pull off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|withdraw|draw|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|deposit (antonym)
+draw out|6
+(verb)|reach out (generic term)
+(verb)|prolong|protract|extend|lengthen (generic term)
+(verb)|encourage (generic term)
+(verb)|educe|evoke|elicit|extract|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|aspirate|suck out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|extract|pull out|pull|pull up|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+draw play|1
+(noun)|draw|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+draw poker|1
+(noun)|draw|poker (generic term)|poker game (generic term)
+draw rein|1
+(verb)|harness|rein in|rein|control (generic term)|command (generic term)
+draw the line|1
+(verb)|draw a line|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+draw together|1
+(verb)|bond|bring together|unite (generic term)|unify (generic term)
+draw up|5
+(verb)|form (generic term)|organize (generic term)|organise (generic term)
+(verb)|pull up|straighten up|straighten (generic term)
+(verb)|pull up|stop (generic term)
+(verb)|frame|compose|plan (generic term)
+(verb)|pull up|haul up|stop (generic term)|halt (generic term)
+drawback|1
+(noun)|disadvantage (generic term)
+drawbar|1
+(noun)|bar (generic term)
+drawbridge|1
+(noun)|lift bridge|bridge (generic term)|span (generic term)
+drawee|1
+(noun)|payer (generic term)|remunerator (generic term)
+drawer|3
+(noun)|container (generic term)|storage space (generic term)
+(noun)|money handler (generic term)|money dealer (generic term)
+(noun)|draftsman|artist (generic term)|creative person (generic term)
+drawers|2
+(noun)|underdrawers|shorts|boxers|boxershorts|underpants (generic term)
+(noun)|bloomers|pants|knickers|underpants (generic term)
+drawing|6
+(noun)|artwork (generic term)|art (generic term)|graphics (generic term)|nontextual matter (generic term)
+(noun)|representation (generic term)
+(noun)|draftsmanship|drafting|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+(noun)|lottery|game of chance (generic term)|gambling game (generic term)
+(noun)|drawing off|drain (generic term)
+(noun)|draft|draught|pull (generic term)|pulling (generic term)
+drawing-room car|1
+(noun)|parlor car|parlour car|palace car|chair car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+drawing board|1
+(noun)|drafting board|board (generic term)
+drawing card|2
+(noun)|draw|attraction|attractor|attracter|entertainer (generic term)
+(noun)|loss leader|leader|feature (generic term)
+drawing chalk|1
+(noun)|chalk (generic term)
+drawing ink|1
+(noun)|India ink|ink (generic term)
+drawing lots|1
+(noun)|casting lots|sortition|decision (generic term)|determination (generic term)|conclusion (generic term)
+drawing off|1
+(noun)|drawing|drain (generic term)
+drawing paper|1
+(noun)|paper (generic term)
+drawing pin|1
+(noun)|thumbtack|pushpin|tack (generic term)|paper fastener (generic term)
+drawing power|1
+(noun)|attraction (generic term)|attractiveness (generic term)
+drawing room|2
+(noun)|withdrawing room|reception room (generic term)
+(noun)|compartment (generic term)
+drawing string|1
+(noun)|drawstring|string|tie (generic term)
+drawing table|1
+(noun)|drafting table|worktable (generic term)|work table (generic term)
+drawknife|1
+(noun)|drawshave|knife (generic term)
+drawl|2
+(noun)|accent (generic term)|speech pattern (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+drawler|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+drawn|2
+(adj)|careworn|haggard|raddled|worn|tired (similar term)
+(adj)|closed (similar term)
+drawn-out|2
+(adj)|extended|lengthy|prolonged|protracted|long (similar term)
+(adj)|slow (similar term)
+drawn butter|1
+(noun)|clarified butter|butter (generic term)
+drawnwork|1
+(noun)|embroidery (generic term)|fancywork (generic term)
+drawshave|1
+(noun)|drawknife|knife (generic term)
+drawstring|1
+(noun)|drawing string|string|tie (generic term)
+drawstring bag|1
+(noun)|bag (generic term)
+dray|1
+(noun)|camion|horse cart (generic term)|horse-cart (generic term)
+dray horse|1
+(noun)|draft horse|draught horse|workhorse (generic term)
+drayhorse|1
+(noun)|carthorse|cart horse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+dread|3
+(adj)|awful|dire|direful|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+(noun)|apprehension|apprehensiveness|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(verb)|fear
+dreaded|1
+(adj)|awful|dire|direful|dread|dreadful|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+dreadful|3
+(adj)|awful|dire|direful|dread|dreaded|fearful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+(adj)|atrocious|abominable|awful|painful|terrible|unspeakable|bad (similar term)
+(adj)|unpleasant (similar term)
+dreadfully|2
+(adv)|awfully|horribly
+(adv)|dismally
+dreadfulness|1
+(noun)|awfulness|horridness|terribleness|unpleasantness (generic term)
+dreadlock|1
+(noun)|lock (generic term)|curl (generic term)|ringlet (generic term)|whorl (generic term)
+dreadnaught|1
+(noun)|dreadnought|battleship (generic term)|battlewagon (generic term)
+dreadnought|1
+(noun)|dreadnaught|battleship (generic term)|battlewagon (generic term)
+dream|8
+(noun)|dreaming|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|ambition|aspiration|desire (generic term)
+(noun)|dreaming|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+(noun)|pipe dream|fantasy (generic term)|phantasy (generic term)
+(noun)|reverie (generic term)|revery (generic term)
+(noun)|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+(verb)|daydream|woolgather|stargaze|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)|dream up (related term)
+(verb)|perceive (generic term)|comprehend (generic term)
+dream up|1
+(verb)|think up|think of|hatch|concoct|create by mental act (generic term)|create mentally (generic term)
+dreamed|1
+(adj)|unreal (similar term)
+dreamer|3
+(noun)|sleeper (generic term)|slumberer (generic term)
+(noun)|idealist|visionary (generic term)
+(noun)|escapist|wishful thinker|daydreamer (generic term)|woolgatherer (generic term)
+dreamfully|1
+(adv)|dreamily|moonily
+dreamily|1
+(adv)|moonily|dreamfully
+dreaminess|1
+(noun)|languor|easiness (generic term)|relaxation (generic term)
+dreaming|2
+(noun)|dream|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+(noun)|dream|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+dreamland|1
+(noun)|never-never land|dreamworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+dreamless|1
+(adj)|untroubled (similar term)
+dreamlike|1
+(adj)|surreal|unreal (similar term)
+dreamworld|1
+(noun)|never-never land|dreamland|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+dreamy|2
+(adj)|moony|woolgathering|inattentive (similar term)
+(adj)|lackadaisical|languid|languorous|lethargic (similar term)|unergetic (similar term)
+drear|1
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|dreary|cheerless (similar term)|uncheerful (similar term)
+drearily|1
+(adv)|dismally
+dreariness|1
+(noun)|boringness|insipidness|insipidity|dullness (generic term)
+dreary|2
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|sorry|drab|drear|cheerless (similar term)|uncheerful (similar term)
+(adj)|drab|dull (similar term)
+dreck|1
+(noun)|schlock|shlock|merchandise (generic term)|ware (generic term)|product (generic term)
+dred scott|1
+(noun)|Scott|Dred Scott|slave (generic term)
+dredge|4
+(noun)|power shovel (generic term)|excavator (generic term)|digger (generic term)|shovel (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|drag|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+dredge up|1
+(verb)|drag up|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+dredger|1
+(noun)|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+dredging bucket|1
+(noun)|bucket (generic term)|pail (generic term)
+dreg|1
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+dregs|1
+(noun)|grounds|settlings|sediment (generic term)|deposit (generic term)
+dreiser|1
+(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer (generic term)|author (generic term)
+dreissena|1
+(noun)|Dreissena|genus Dreissena|mollusk genus (generic term)
+dreissena polymorpha|1
+(noun)|zebra mussel|Dreissena polymorpha|freshwater mussel (generic term)|freshwater clam (generic term)
+drench|4
+(verb)|swamp|flood (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|imbrue|impregnate (generic term)|saturate (generic term)
+(verb)|douse|dowse|soak|sop|souse|wet (generic term)
+drenched|2
+(adj)|saturated|soaked|soaking|sodden|sopping|soppy|wet (similar term)
+(adj)|drenched in|covered (similar term)
+drenched in|1
+(adj)|drenched|covered (similar term)
+drenching|1
+(noun)|soaking|souse|sousing|wetting (generic term)
+drepanididae|1
+(noun)|Drepanididae|family Drepanididae|bird family (generic term)
+drepanis|1
+(noun)|Drepanis|genus Drepanis|bird genus (generic term)
+drepanocytic anaemia|1
+(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+drepanocytic anemia|1
+(noun)|sickle-cell anemia|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+dresden|1
+(noun)|Dresden|city (generic term)|metropolis (generic term)|urban center (generic term)
+dress|20
+(adj)|full-dress|formal (similar term)
+(noun)|frock|woman's clothing (generic term)
+(noun)|attire|garb|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|apparel|wearing apparel|clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|get dressed|change (generic term)|dress up (related term)|dress down (related term)|undress (antonym)
+(verb)|clothe|enclothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+(verb)|finish (generic term)
+(verb)|dress up|dress (generic term)|get dressed (generic term)
+(verb)|preen|primp|plume|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+(verb)|dress out|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|line up|position (generic term)
+(verb)|trim|garnish|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|decorate|arrange (generic term)|set up (generic term)
+(verb)|put on (generic term)|apply (generic term)
+(verb)|snip|clip|crop|trim|lop|prune|cut back|thin out (generic term)
+(verb)|pare (generic term)|trim (generic term)
+(verb)|convert (generic term)|change over (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|groom|curry|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|arrange|set|do|coif|coiffe|coiffure|groom (generic term)|neaten (generic term)
+dress blues|1
+(noun)|dress whites|dress uniform (generic term)
+dress circle|1
+(noun)|circle|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+dress code|1
+(noun)|code (generic term)|codification (generic term)
+dress down|2
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|underdress|dress (generic term)|get dressed (generic term)|dress up (antonym)
+dress hanger|1
+(noun)|coat hanger|clothes hanger|hanger (generic term)
+dress hat|1
+(noun)|high hat|opera hat|silk hat|stovepipe|top hat|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+dress out|1
+(verb)|dress|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+dress rack|1
+(noun)|rack (generic term)|stand (generic term)
+dress rehearsal|1
+(noun)|rehearsal (generic term)|dry run (generic term)
+dress ship|1
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+dress shirt|1
+(noun)|evening shirt|shirt (generic term)
+dress shop|1
+(noun)|boutique|shop (generic term)|store (generic term)
+dress suit|1
+(noun)|full dress|tailcoat|tail coat|tails|white tie|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+dress uniform|1
+(noun)|military uniform (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+(verb)|window-dress|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|caparison|bard|barde|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|costume|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+(verb)|dress|dress (generic term)|get dressed (generic term)
+dress whites|1
+(noun)|dress blues|dress uniform (generic term)
+dressage|1
+(noun)|equestrian sport (generic term)
+dressed|4
+(adj)|appareled|attired|garbed|garmented|habilimented|robed|clothed (similar term)|clad (similar term)
+(adj)|treated (similar term)
+(adj)|polished|finished (similar term)
+(adj)|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+dressed-up|1
+(adj)|dressed|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+dressed ore|1
+(noun)|concentrate|ore (generic term)
+dressed to kill|1
+(adj)|dressed|dressed-up|dressed to the nines|dolled up|spruced up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+dressed to the nines|1
+(adj)|dressed|dressed-up|dressed to kill|dolled up|spruced up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+dresser|5
+(noun)|chest of drawers|chest|bureau|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|actor's assistant|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|dressing table|vanity|toilet table|table (generic term)
+(noun)|cabinet (generic term)
+dressing|7
+(noun)|salad dressing|sauce (generic term)
+(noun)|stuffing|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(noun)|fertilization|fertilisation|fecundation|enrichment (generic term)
+(noun)|medical dressing|cloth covering (generic term)
+(noun)|conversion (generic term)
+(noun)|grooming|covering (generic term)
+(noun)|bandaging|binding|medical care (generic term)|medical aid (generic term)
+dressing case|1
+(noun)|baggage (generic term)|luggage (generic term)
+dressing down|1
+(noun)|castigation|earful|bawling out|chewing out|upbraiding|going-over|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+dressing gown|1
+(noun)|robe-de-chambre|lounging robe|robe (generic term)
+dressing room|1
+(noun)|room (generic term)
+dressing sack|1
+(noun)|dressing sacque|jacket (generic term)
+dressing sacque|1
+(noun)|dressing sack|jacket (generic term)
+dressing station|1
+(noun)|aid station|first-aid station (generic term)
+dressing table|1
+(noun)|dresser|vanity|toilet table|table (generic term)
+dressmaker|1
+(noun)|modiste|needlewoman|seamstress|sempstress|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+dressmaker's model|1
+(noun)|model (generic term)|poser (generic term)
+dressmaking|1
+(noun)|trade (generic term)|craft (generic term)
+dressy|1
+(adj)|fancy (similar term)
+drew|1
+(noun)|Drew|John Drew|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+drey|1
+(noun)|nest (generic term)
+dreyfus|1
+(noun)|Dreyfus|Alfred Dreyfus|army officer (generic term)
+drib|1
+(noun)|drop|driblet|small indefinite quantity (generic term)|small indefinite amount (generic term)
+dribble|7
+(noun)|drip|trickle|flow (generic term)|flowing (generic term)
+(noun)|drool|drivel|slobber|saliva (generic term)|spit (generic term)|spittle (generic term)
+(noun)|dribbling|propulsion (generic term)|actuation (generic term)
+(verb)|trickle|filter|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|drip|drop|pour (generic term)
+(verb)|carry|hit (generic term)
+(verb)|drivel|drool|slabber|slaver|slobber|salivate (generic term)|slobber over (related term)|drool over (related term)
+dribbler|2
+(noun)|basketball player (generic term)|basketeer (generic term)|cager (generic term)
+(noun)|driveller|slobberer|drooler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dribbling|1
+(noun)|dribble|propulsion (generic term)|actuation (generic term)
+driblet|1
+(noun)|drop|drib|small indefinite quantity (generic term)|small indefinite amount (generic term)
+dried|2
+(adj)|dry (similar term)
+(adj)|dehydrated|desiccated|preserved (similar term)
+dried-out|1
+(adj)|desiccated|dry (similar term)
+dried-up|2
+(adj)|sere|sear|shriveled|shrivelled|withered|dry (similar term)
+(adj)|dry (similar term)
+dried apricot|1
+(noun)|dried fruit (generic term)
+dried fruit|1
+(noun)|edible fruit (generic term)
+dried milk|1
+(noun)|powdered milk|dry milk|milk powder|milk (generic term)
+drier|2
+(noun)|desiccant|drying agent|sicative|chemical agent (generic term)
+(noun)|dryer|appliance (generic term)
+drift|17
+(noun)|impetus|impulsion|force (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|linguistic process (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|trend|movement|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|purport|tenor (generic term)|strain (generic term)
+(noun)|heading|gallery|passageway (generic term)
+(verb)|float|be adrift|blow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|stray|err|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|vary (generic term)
+(verb)|freewheel|exist (generic term)|survive (generic term)|live (generic term)|subsist (generic term)
+(verb)|circulate (generic term)
+(verb)|float (generic term)
+(verb)|crop (generic term)|graze (generic term)|pasture (generic term)
+(verb)|change (generic term)
+(verb)|accumulate (generic term)|cumulate (generic term)|conglomerate (generic term)|pile up (generic term)|gather (generic term)|amass (generic term)
+drift apart|1
+(verb)|drift away|estrange (generic term)|alienate (generic term)|alien (generic term)|disaffect (generic term)
+drift away|1
+(verb)|drift apart|estrange (generic term)|alienate (generic term)|alien (generic term)|disaffect (generic term)
+drift ice|1
+(noun)|ice (generic term)
+drift net|1
+(noun)|fishnet (generic term)|fishing net (generic term)
+drift off|1
+(verb)|fall asleep|dope off|flake out|nod off|drop off|doze off|drowse off|wake up (antonym)
+driftage|1
+(noun)|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+drifter|1
+(noun)|vagrant|floater|vagabond|wanderer (generic term)|roamer (generic term)|rover (generic term)|bird of passage (generic term)|poor person (generic term)|have-not (generic term)
+driftfish|1
+(noun)|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+drifting|2
+(adj)|aimless|floating|vagabond|vagrant|unsettled (similar term)
+(noun)|wandering (generic term)|roving (generic term)|vagabondage (generic term)
+driftwood|1
+(noun)|wood (generic term)
+drill|9
+(noun)|tool (generic term)
+(noun)|Mandrillus leucophaeus|baboon (generic term)
+(noun)|exercise|practice|practice session|recitation|training (generic term)|preparation (generic term)|grooming (generic term)
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+(verb)|bore|cut (generic term)
+(verb)|train (generic term)|develop (generic term)|prepare (generic term)|educate (generic term)
+(verb)|exercise|practice|practise|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|train (generic term)|prepare (generic term)
+drill-like|1
+(adj)|sharp (similar term)
+drill bit|1
+(noun)|drilling bit|bit (generic term)
+drill hole|1
+(noun)|bore|bore-hole|excavation (generic term)
+drill in|1
+(verb)|hammer in|ram down|beat in|drill (generic term)
+drill instructor|1
+(noun)|drill master|noncommissioned officer (generic term)|noncom (generic term)
+drill master|1
+(noun)|drill instructor|noncommissioned officer (generic term)|noncom (generic term)
+drill rig|1
+(noun)|drilling rig|oilrig|oil rig|rig (generic term)
+drill rod|1
+(noun)|drill steel|carbon steel (generic term)
+drill site|1
+(noun)|workplace (generic term)|work (generic term)
+drill steel|1
+(noun)|drill rod|carbon steel (generic term)
+drilled|1
+(adj)|trained (similar term)
+drilling|2
+(noun)|boring|creating by removal (generic term)
+(noun)|boring|oil production|production (generic term)
+drilling bit|1
+(noun)|drill bit|bit (generic term)
+drilling fluid|1
+(noun)|drilling mud|lubricant (generic term)|lubricator (generic term)|lubricating substance (generic term)|lube (generic term)
+drilling mud|1
+(noun)|drilling fluid|lubricant (generic term)|lubricator (generic term)|lubricating substance (generic term)|lube (generic term)
+drilling pipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+drilling platform|1
+(noun)|offshore rig|drill rig (generic term)|drilling rig (generic term)|oilrig (generic term)|oil rig (generic term)
+drilling rig|1
+(noun)|drill rig|oilrig|oil rig|rig (generic term)
+drily|1
+(adv)|laconically|dryly
+drimys|1
+(noun)|Drimys|genus Drimys|magnoliid dicot genus (generic term)
+drimys winteri|1
+(noun)|winter's bark|winter's bark tree|Drimys winteri|tree (generic term)
+drink|10
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|drinking|boozing|drunkenness|crapulence|intemperance (generic term)|intemperateness (generic term)
+(noun)|beverage|drinkable|potable|food (generic term)|nutrient (generic term)|liquid (generic term)
+(noun)|body of water (generic term)|water (generic term)
+(noun)|swallow|deglutition|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(verb)|imbibe|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)|drink up (related term)|drink down (related term)
+(verb)|booze|fuddle|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|toast|pledge|salute|wassail|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|drink in|steep (generic term)|immerse (generic term)|engulf (generic term)|plunge (generic term)|engross (generic term)|absorb (generic term)|soak up (generic term)
+(verb)|tope|use (generic term)|habituate (generic term)
+drink down|1
+(verb)|toss off|pop|bolt down|belt down|pour down|down|kill|drink (generic term)|imbibe (generic term)
+drink in|1
+(verb)|drink|steep (generic term)|immerse (generic term)|engulf (generic term)|plunge (generic term)|engross (generic term)|absorb (generic term)|soak up (generic term)
+drink up|1
+(verb)|drain the cup|drink (generic term)|imbibe (generic term)
+drinkable|2
+(adj)|potable|undrinkable (antonym)
+(noun)|beverage|drink|potable|food (generic term)|nutrient (generic term)|liquid (generic term)
+drinker|2
+(noun)|consumer (generic term)
+(noun)|imbiber|toper|juicer|consumer (generic term)|nondrinker (antonym)
+drinking|2
+(noun)|imbibing|imbibition|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(noun)|drink|boozing|drunkenness|crapulence|intemperance (generic term)|intemperateness (generic term)
+drinking age|1
+(noun)|age (generic term)|eld (generic term)
+drinking bout|1
+(noun)|drink (generic term)|drinking (generic term)|boozing (generic term)|drunkenness (generic term)|crapulence (generic term)
+drinking chocolate|1
+(noun)|cocoa|chocolate|hot chocolate|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+drinking cup|1
+(noun)|Dixie cup|paper cup|cup (generic term)
+drinking fountain|1
+(noun)|water fountain|bubbler|fountain (generic term)
+drinking glass|1
+(noun)|glass|container (generic term)
+drinking song|1
+(noun)|song (generic term)|vocal (generic term)
+drinking straw|1
+(noun)|straw|tube (generic term)|tubing (generic term)
+drinking vessel|1
+(noun)|vessel (generic term)
+drinking water|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)|water (generic term)
+drip|5
+(noun)|trickle|dribble|flow (generic term)|flowing (generic term)
+(noun)|dripping|sound (generic term)
+(noun)|drip mold|drip mould|projection (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|dribble|drop|pour (generic term)
+drip-dry|3
+(adj)|wash-and-wear|washable (similar term)
+(adj)|permanent-press|unironed (similar term)|wrinkled (similar term)
+(verb)|dry (generic term)|dry out (generic term)
+drip coffee|1
+(noun)|coffee (generic term)|java (generic term)
+drip culture|1
+(noun)|hydroponics (generic term)|aquiculture (generic term)|tank farming (generic term)
+drip feed|1
+(noun)|administration (generic term)|giving medication (generic term)
+drip loop|1
+(noun)|loop (generic term)
+drip mat|1
+(noun)|mat (generic term)
+drip mold|1
+(noun)|drip|drip mould|projection (generic term)
+drip mould|1
+(noun)|drip|drip mold|projection (generic term)
+drip pan|2
+(noun)|dripping pan|pan (generic term)|cooking pan (generic term)
+(noun)|pan (generic term)
+drip pot|1
+(noun)|coffeepot (generic term)
+dripless|1
+(adj)|tight (similar term)
+drippage|1
+(noun)|dripping|flow (generic term)|flowing (generic term)
+drippily|1
+(adv)|mawkishly
+drippiness|2
+(noun)|physical property (generic term)
+(noun)|mawkishness|sentimentality|mushiness|soupiness|sloppiness|emotionality (generic term)|emotionalism (generic term)
+dripping|5
+(adj)|wet (similar term)
+(adj)|reeking|watery|wet (similar term)
+(noun)|drippage|flow (generic term)|flowing (generic term)
+(noun)|drip|sound (generic term)
+(adv)|soaking|sopping
+dripping pan|1
+(noun)|drip pan|pan (generic term)|cooking pan (generic term)
+drippings|1
+(noun)|edible fat (generic term)
+drippy|3
+(adj)|drizzly|wet (similar term)
+(adj)|leaky (similar term)
+(adj)|bathetic|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+dripstone|2
+(noun)|calcium carbonate (generic term)
+(noun)|hoodmold|hoodmould|drip (generic term)|drip mold (generic term)|drip mould (generic term)
+drive|32
+(noun)|thrust|driving force|propulsion (generic term)|actuation (generic term)
+(noun)|mechanism (generic term)
+(noun)|campaign|cause|crusade|movement|effort|venture (generic term)
+(noun)|driveway|private road|road (generic term)|route (generic term)
+(noun)|trait (generic term)
+(noun)|driving|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|ride|journey (generic term)|journeying (generic term)
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|device (generic term)
+(noun)|parkway|road (generic term)|route (generic term)
+(noun)|return (generic term)
+(verb)|operate (generic term)|control (generic term)
+(verb)|motor|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|move (generic term)|displace (generic term)|drive out (related term)|drive out (related term)|drive off (related term)|drive away (related term)
+(verb)|force|ram|thrust (generic term)|ram down (related term)|drive in (related term)
+(verb)|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|repel|repulse|force back|push back|beat back|push (generic term)|force (generic term)|attract (antonym)
+(verb)|make (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|throw (generic term)
+(verb)|tug|labor|labour|push|fight (generic term)|struggle (generic term)|push on (related term)
+(verb)|get|aim|mean (generic term)|intend (generic term)
+(verb)|ride
+(verb)|work (generic term)|do work (generic term)
+(verb)|drive (generic term)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|push (generic term)|force (generic term)
+(verb)|take|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|hit (generic term)
+(verb)|excavate (generic term)|dig (generic term)|hollow (generic term)
+(verb)|power (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+drive-by killing|1
+(noun)|shooting (generic term)
+drive-by shooting|1
+(noun)|shooting (generic term)
+drive-in|1
+(noun)|facility (generic term)|installation (generic term)
+drive around|2
+(verb)|chauffeur|drive (generic term)
+(verb)|act (generic term)
+drive away|1
+(verb)|chase away|drive out|turn back|dispel|drive off|run off|move (generic term)|displace (generic term)
+drive back|1
+(verb)|repel|repulse|fight off|rebuff|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+drive home|2
+(verb)|deliver|give (generic term)
+(verb)|ram home|press home|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+drive in|2
+(verb)|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|screw|revolve (generic term)|go around (generic term)|rotate (generic term)
+drive line|1
+(noun)|drive line system|mechanism (generic term)
+drive line system|1
+(noun)|drive line|mechanism (generic term)
+drive off|1
+(verb)|chase away|drive out|turn back|drive away|dispel|run off|move (generic term)|displace (generic term)
+drive out|3
+(verb)|chase away|turn back|drive away|dispel|drive off|run off|move (generic term)|displace (generic term)
+(verb)|rout out|force out|rouse|move (generic term)|displace (generic term)
+(verb)|expectorate|clear out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+drive up|1
+(verb)|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+drivel|3
+(noun)|garbage|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|drool|dribble|slobber|saliva (generic term)|spit (generic term)|spittle (generic term)
+(verb)|drool|slabber|slaver|slobber|dribble|salivate (generic term)|slobber over (related term)|drool over (related term)
+driveller|2
+(noun)|jabberer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|dribbler|slobberer|drooler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+driven|3
+(adj)|goaded|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+(adj)|impelled|motivated (similar term)
+(adj)|compulsive|determined|ambitious (similar term)
+driven well|1
+(noun)|tube well|well (generic term)
+driver|5
+(noun)|operator (generic term)|manipulator (generic term)|nondriver (antonym)
+(noun)|worker (generic term)
+(noun)|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|device driver|utility program (generic term)|utility (generic term)|service program (generic term)
+(noun)|number one wood|wood (generic term)
+driver's licence|1
+(noun)|driver's license|driving license|driving licence|license (generic term)|licence (generic term)|permit (generic term)
+driver's license|1
+(noun)|driver's licence|driving license|driving licence|license (generic term)|licence (generic term)|permit (generic term)
+driver ant|1
+(noun)|army ant|legionary ant|ant (generic term)|emmet (generic term)|pismire (generic term)
+driveshaft|1
+(noun)|rotating shaft (generic term)|shaft (generic term)
+driveway|1
+(noun)|drive|private road|road (generic term)|route (generic term)
+driving|4
+(adj)|impulsive|dynamic (similar term)|dynamical (similar term)
+(adj)|energetic (similar term)
+(noun)|drive|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)|steering (generic term)|guidance (generic term)|direction (generic term)
+driving axle|1
+(noun)|live axle|axle (generic term)
+driving belt|1
+(noun)|belt (generic term)
+driving force|1
+(noun)|drive|thrust|propulsion (generic term)|actuation (generic term)
+driving iron|1
+(noun)|one iron|iron (generic term)
+driving licence|1
+(noun)|driver's license|driver's licence|driving license|license (generic term)|licence (generic term)|permit (generic term)
+driving license|1
+(noun)|driver's license|driver's licence|driving licence|license (generic term)|licence (generic term)|permit (generic term)
+driving range|1
+(noun)|golf range|practice range (generic term)
+driving school|1
+(noun)|school (generic term)
+driving wheel|1
+(noun)|wheel (generic term)
+drixoral|1
+(noun)|Drixoral|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+drizzle|3
+(noun)|mizzle|rain (generic term)|rainfall (generic term)
+(verb)|mizzle|rain (generic term)|rain down (generic term)
+(verb)|moisten|sprinkle (generic term)|splash (generic term)|splosh (generic term)
+drizzling|1
+(adj)|descending (similar term)
+drizzly|1
+(adj)|drippy|wet (similar term)
+drms|1
+(noun)|Defense Reutilization and Marketing Service|DRMS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+drogheda|1
+(noun)|Drogheda|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+drogue|4
+(noun)|target (generic term)|mark (generic term)
+(noun)|windsock|wind sock|sock|air sock|air-sleeve|wind sleeve|wind cone|visual signal (generic term)
+(noun)|sea anchor|restraint (generic term)|constraint (generic term)
+(noun)|drogue chute|drogue parachute|parachute (generic term)|chute (generic term)
+drogue chute|1
+(noun)|drogue|drogue parachute|parachute (generic term)|chute (generic term)
+drogue parachute|2
+(noun)|parachute (generic term)|chute (generic term)
+(noun)|drogue|drogue chute|parachute (generic term)|chute (generic term)
+droll|1
+(adj)|humorous (similar term)|humourous (similar term)
+drollery|2
+(noun)|clowning|comedy|funniness|fun (generic term)|play (generic term)|sport (generic term)
+(noun)|waggery|jest (generic term)|joke (generic term)|jocularity (generic term)
+dromaeosaur|1
+(noun)|maniraptor (generic term)
+dromaeosauridae|1
+(noun)|Dromaeosauridae|family Dromaeosauridae|reptile family (generic term)
+dromaius|1
+(noun)|Dromaius|genus Dromaius|bird genus (generic term)
+dromaius novaehollandiae|1
+(noun)|emu|Dromaius novaehollandiae|Emu novaehollandiae|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+drome|1
+(noun)|airport|airdrome|aerodrome|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+dromedary|1
+(noun)|Arabian camel|Camelus dromedarius|camel (generic term)
+dronabinol|1
+(noun)|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+drone|7
+(noun)|bee (generic term)
+(noun)|monotone|droning|intonation (generic term)|modulation (generic term)|pitch contour (generic term)
+(noun)|dawdler|laggard|lagger|trailer|poke|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|pilotless aircraft|radio-controlled aircraft|heavier-than-air craft (generic term)
+(noun)|drone pipe|bourdon|pipe (generic term)|tabor pipe (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|drone on|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+drone on|1
+(verb)|drone|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+drone pipe|1
+(noun)|drone|bourdon|pipe (generic term)|tabor pipe (generic term)
+droning|2
+(adj)|abuzz|buzzing|noisy (similar term)
+(noun)|monotone|drone|intonation (generic term)|modulation (generic term)|pitch contour (generic term)
+drool|4
+(noun)|baloney|boloney|bilgewater|bosh|humbug|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|dribble|drivel|slobber|saliva (generic term)|spit (generic term)|spittle (generic term)
+(verb)|salivate|covet (generic term)
+(verb)|drivel|slabber|slaver|slobber|dribble|salivate (generic term)|slobber over (related term)|drool over (related term)
+drool over|1
+(verb)|slobber over|idolize (generic term)|idolise (generic term)|worship (generic term)|hero-worship (generic term)|revere (generic term)
+drooler|1
+(noun)|dribbler|driveller|slobberer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+droop|4
+(noun)|sag|depression (generic term)|impression (generic term)|imprint (generic term)
+(verb)|sag|swag|flag|sink (generic term)|drop (generic term)|drop down (generic term)
+(verb)|loll|dangle (generic term)|swing (generic term)|drop (generic term)
+(verb)|wilt|decay (generic term)|crumble (generic term)|delapidate (generic term)
+drooping|3
+(adj)|flagging|tired (similar term)
+(adj)|droopy|sagging|lax (similar term)
+(adj)|cernuous|nodding|pendulous|unerect (similar term)
+drooping brome|1
+(noun)|downy brome|downy bromegrass|downy cheat|downy chess|cheatgrass|Bromus tectorum|brome (generic term)|bromegrass (generic term)
+drooping juniper|1
+(noun)|Mexican juniper|Juniperus flaccida|juniper (generic term)
+droopy|1
+(adj)|drooping|sagging|lax (similar term)
+drop|29
+(noun)|drib|driblet|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|bead|pearl|sphere (generic term)
+(noun)|dip|fall|free fall|decrease (generic term)|decrement (generic term)
+(noun)|cliff|drop-off|geological formation (generic term)|formation (generic term)
+(noun)|hiding place (generic term)
+(noun)|fall|descent (generic term)|gravitation (generic term)
+(noun)|drop curtain|drop cloth|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(noun)|descent (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|decline (generic term)|go down (generic term)|wane (generic term)
+(verb)|sink|drop down|change posture (generic term)
+(verb)|remove (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|knock off|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|drop off|set down|put down|unload|discharge|deliver (generic term)
+(verb)|fell|strike down|cut down|cut (generic term)
+(verb)|lose (generic term)
+(verb)|spend|expend|pay (generic term)
+(verb)|flatten|change (generic term)|alter (generic term)|modify (generic term)|sharpen (antonym)
+(verb)|dangle|swing|hang (generic term)
+(verb)|dismiss|send packing|send away|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|dribble|drip|pour (generic term)
+(verb)|shed|cast|cast off|shake off|throw|throw off|throw away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|neglect|pretermit|omit|miss|leave out|overlook|overleap|attend to (antonym)
+(verb)|change (generic term)
+(verb)|devolve|deteriorate|degenerate|worsen (generic term)|decline (generic term)|recuperate (antonym)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+drop-down menu|1
+(noun)|menu (generic term)|computer menu (generic term)
+drop-kick|1
+(verb)|dropkick|kick (generic term)
+drop-leaf|1
+(noun)|leaf (generic term)
+drop-leaf table|1
+(noun)|table (generic term)
+drop-off|3
+(noun)|slump|slack|falloff|falling off|deterioration (generic term)|decline in quality (generic term)|declension (generic term)|worsening (generic term)
+(noun)|cliff|drop|geological formation (generic term)|formation (generic term)
+(noun)|decrease|lessening|change (generic term)|alteration (generic term)|modification (generic term)|increase (antonym)
+drop-off charge|1
+(noun)|fee (generic term)
+drop-seed|1
+(noun)|dropseed|grass (generic term)
+drop a line|1
+(verb)|write|correspond (generic term)
+drop anchor|1
+(verb)|anchor|cast anchor|fasten (generic term)|fix (generic term)|secure (generic term)
+drop arch|1
+(noun)|pointed arch (generic term)
+drop away|1
+(verb)|slip|drop off|fall away|worsen (generic term)|decline (generic term)
+drop back|1
+(verb)|move (generic term)
+drop behind|1
+(verb)|drag|trail|get behind|hang back|lag (generic term)|dawdle (generic term)|fall back (generic term)|fall behind (generic term)
+drop biscuit|1
+(noun)|biscuit (generic term)
+drop by|1
+(verb)|drop in|come by|visit (generic term)|call in (generic term)|call (generic term)
+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|enter (antonym)
+drop cloth|2
+(noun)|drop curtain|drop|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+drop curtain|1
+(noun)|drop cloth|drop|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+drop dead|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+drop down|1
+(verb)|sink|drop|change posture (generic term)
+drop earring|1
+(noun)|pendant earring|eardrop|earring (generic term)
+drop forge|1
+(noun)|drop hammer|drop press|device (generic term)
+drop hammer|1
+(noun)|drop forge|drop press|device (generic term)
+drop in|1
+(verb)|drop by|come by|visit (generic term)|call in (generic term)|call (generic term)
+drop keel|1
+(noun)|centerboard|centreboard|sliding keel|fin keel (generic term)
+drop line|1
+(noun)|dropline|stepped line|stagger head|staggered head|stephead|headline (generic term)|newspaper headline (generic term)
+drop off|5
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|fall asleep|dope off|flake out|drift off|nod off|doze off|drowse off|wake up (antonym)
+(verb)|drop|set down|put down|unload|discharge|deliver (generic term)
+(verb)|fall back|lose|fall behind|recede|regress (generic term)|retrograde (generic term)|retrogress (generic term)|gain (antonym)
+(verb)|slip|drop away|fall away|worsen (generic term)|decline (generic term)
+drop open|1
+(verb)|fall open|sink (generic term)|drop (generic term)|drop down (generic term)
+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|enter (antonym)
+(verb)|leave (generic term)|depart (generic term)|pull up stakes (generic term)
+drop press|1
+(noun)|drop forge|drop hammer|device (generic term)
+drop scone|1
+(noun)|griddlecake|Scotch pancake|scone (generic term)
+drop shot|1
+(noun)|dink|return (generic term)
+drop zone|1
+(noun)|dropping zone|zone (generic term)
+dropforge|1
+(verb)|forge (generic term)|hammer (generic term)
+dropkick|2
+(noun)|kick (generic term)|boot (generic term)|kicking (generic term)
+(verb)|drop-kick|kick (generic term)
+dropkicker|1
+(noun)|kicker (generic term)
+droplet|1
+(noun)|drop (generic term)|drib (generic term)|driblet (generic term)
+dropline|1
+(noun)|drop line|stepped line|stagger head|staggered head|stephead|headline (generic term)|newspaper headline (generic term)
+dropout|2
+(noun)|quitter (generic term)
+(noun)|individualist (generic term)
+dropped|1
+(adj)|born (similar term)
+dropped egg|1
+(noun)|poached egg|dish (generic term)
+dropper|1
+(noun)|eye dropper|pipet (generic term)|pipette (generic term)
+dropping|1
+(adj)|falling|descending (similar term)
+dropping zone|1
+(noun)|drop zone|zone (generic term)
+droppings|1
+(noun)|dung|muck|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+dropseed|1
+(noun)|drop-seed|grass (generic term)
+dropsical|1
+(adj)|edematous|unhealthy (similar term)
+dropsy|1
+(noun)|edema|oedema|hydrops|swelling (generic term)|puffiness (generic term)|lump (generic term)
+drosera|1
+(noun)|Drosera|genus Drosera|dicot genus (generic term)|magnoliopsid genus (generic term)
+droseraceae|1
+(noun)|Droseraceae|family Droseraceae|sundew family|dicot family (generic term)|magnoliopsid family (generic term)
+droshky|1
+(noun)|drosky|carriage (generic term)|equipage (generic term)|rig (generic term)
+drosky|1
+(noun)|droshky|carriage (generic term)|equipage (generic term)|rig (generic term)
+drosophila|1
+(noun)|Drosophila melanogaster|fruit fly (generic term)|pomace fly (generic term)
+drosophila melanogaster|1
+(noun)|drosophila|Drosophila melanogaster|fruit fly (generic term)|pomace fly (generic term)
+drosophilidae|1
+(noun)|Drosophilidae|family Drosophilidae|arthropod family (generic term)
+drosophyllum|1
+(noun)|Drosophyllum|genus Drosophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+drosophyllum lusitanicum|1
+(noun)|Drosophyllum lusitanicum|carnivorous plant (generic term)
+dross|2
+(noun)|impurity|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|slag|scoria|scum (generic term)
+drought|2
+(noun)|drouth|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+(noun)|drouth|time period (generic term)|period of time (generic term)|period (generic term)
+drouth|2
+(noun)|drought|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|drought|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+drove|3
+(noun)|animal group (generic term)
+(noun)|horde|swarm|crowd (generic term)
+(noun)|drove chisel|chisel (generic term)
+drove chisel|1
+(noun)|drove|chisel (generic term)
+drover|1
+(noun)|herder|herdsman|hired hand (generic term)|hand (generic term)|hired man (generic term)
+drown|4
+(verb)|submerge|overwhelm|cover (generic term)|spread over (generic term)|drown out (related term)
+(verb)|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+(verb)|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+(verb)|kill (generic term)
+drown out|1
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+drowned|1
+(adj)|sunken (similar term)|submerged (similar term)
+drowse|3
+(noun)|doze|sleeping (generic term)
+(verb)|snooze|doze|nap (generic term)|catnap (generic term)|catch a wink (generic term)|doze off (related term)
+(verb)|rest (generic term)|drowse off (related term)
+drowse off|1
+(verb)|fall asleep|dope off|flake out|drift off|nod off|drop off|doze off|wake up (antonym)
+drowsily|1
+(adv)|somnolently
+drowsiness|1
+(noun)|sleepiness|somnolence|temporary state (generic term)|wakefulness (antonym)
+drowsing|1
+(adj)|drowsy|dozy|asleep (similar term)
+drowsy|2
+(adj)|drowsing|dozy|asleep (similar term)
+(adj)|oscitant|yawning|inattentive (similar term)
+drub|1
+(verb)|cream|bat|clobber|thrash|lick|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+drubbing|2
+(noun)|thrashing|walloping|debacle|slaughter|trouncing|whipping|defeat (generic term)|licking (generic term)
+(noun)|beating|thrashing|licking|lacing|trouncing|whacking|corporal punishment (generic term)
+drudge|3
+(noun)|hack|hacker|unskilled person (generic term)
+(noun)|peon|navvy|galley slave|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(verb)|labor|labour|toil|fag|travail|grind|dig|moil|work (generic term)|do work (generic term)
+drudgery|1
+(noun)|plodding|grind|donkeywork|labor (generic term)|labour (generic term)|toil (generic term)
+drudging|1
+(adj)|laboring|labouring|toiling|busy (similar term)
+drug|3
+(noun)|agent (generic term)
+(verb)|dose|medicate (generic term)|medicine (generic term)
+(verb)|do drugs|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+drug-addicted|1
+(adj)|dependent|dependant|hooked|strung-out|addicted (similar term)
+drug-free|1
+(adj)|sober (similar term)
+drug abuse|1
+(noun)|substance abuse|habit|misuse (generic term)|abuse (generic term)
+drug addict|1
+(noun)|junkie|junky|addict (generic term)
+drug addiction|1
+(noun)|white plague|addiction (generic term)|dependence (generic term)|dependance (generic term)|dependency (generic term)|habituation (generic term)
+drug baron|1
+(noun)|drug lord|boss (generic term)
+drug bust|1
+(noun)|drugs bust|impoundment (generic term)|impounding (generic term)|internment (generic term)|poundage (generic term)
+drug cartel|1
+(noun)|trust (generic term)|corporate trust (generic term)|combine (generic term)|cartel (generic term)
+drug cocktail|1
+(noun)|highly active antiretroviral therapy|HAART|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+drug company|1
+(noun)|pharmaceutical company|pharma|company (generic term)
+drug dealer|1
+(noun)|pusher|drug peddler|peddler|drug trafficker|dealer (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+drug enforcement administration|1
+(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency (generic term)
+drug enforcement agency|1
+(noun)|Drug Enforcement Administration|Drug Enforcement Agency|DEA|law enforcement agency (generic term)
+drug lord|1
+(noun)|drug baron|boss (generic term)
+drug of abuse|1
+(noun)|street drug|drug (generic term)
+drug peddler|1
+(noun)|pusher|peddler|drug dealer|drug trafficker|dealer (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+drug traffic|1
+(noun)|drug trafficking|narcotraffic|traffic (generic term)
+drug trafficker|1
+(noun)|pusher|drug peddler|peddler|drug dealer|dealer (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+drug trafficking|1
+(noun)|drug traffic|narcotraffic|traffic (generic term)
+drug user|1
+(noun)|substance abuser|user|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+drug war|1
+(noun)|war (generic term)|warfare (generic term)
+drug withdrawal|1
+(noun)|withdrawal|termination (generic term)|ending (generic term)|conclusion (generic term)
+drugged|1
+(adj)|doped|narcotized|narcotised|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+drugget|1
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+drugging|1
+(noun)|sedation|administration (generic term)|giving medication (generic term)
+druggist|1
+(noun)|pharmacist|chemist|apothecary|pill pusher|pill roller|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+drugless|1
+(adj)|healthful (similar term)
+drugs bust|1
+(noun)|drug bust|impoundment (generic term)|impounding (generic term)|internment (generic term)|poundage (generic term)
+drugstore|1
+(noun)|apothecary's shop|chemist's|chemist's shop|pharmacy|shop (generic term)|store (generic term)
+druid|1
+(noun)|Druid|priest (generic term)|non-Christian priest (generic term)
+druidism|1
+(noun)|paganism (generic term)|pagan religion (generic term)|heathenism (generic term)
+drum|9
+(noun)|membranophone|tympan|percussion instrument (generic term)|percussive instrument (generic term)
+(noun)|sound (generic term)
+(noun)|barrel|cylinder (generic term)
+(noun)|metal drum|vessel (generic term)
+(noun)|brake drum|cylinder (generic term)
+(noun)|drumfish|sciaenid fish (generic term)|sciaenid (generic term)
+(verb)|beat|thrum|sound (generic term)|go (generic term)
+(verb)|play (generic term)
+(verb)|cram|grind away|bone up|swot|get up|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+drum-like|1
+(adj)|drum-shaped|formed (similar term)
+drum-shaped|1
+(adj)|drum-like|formed (similar term)
+drum brake|1
+(noun)|hydraulic brake (generic term)|hydraulic brakes (generic term)
+drum major|1
+(noun)|conductor (generic term)|music director (generic term)|director (generic term)
+drum majorette|2
+(noun)|majorette|baton twirler (generic term)|twirler (generic term)
+(noun)|majorette|conductor (generic term)|music director (generic term)|director (generic term)
+drum out|1
+(verb)|oust|throw out|boot out|kick out|expel|remove (generic term)
+drum printer|1
+(noun)|line printer (generic term)|line-at-a-time printer (generic term)
+drum roll|1
+(noun)|paradiddle|roll|sound (generic term)
+drum sander|1
+(noun)|electric sander|sander|smoother|power tool (generic term)
+drum up|1
+(verb)|beat up|rally|collect (generic term)|pull in (generic term)
+drumbeat|3
+(noun)|rub-a-dub|rataplan|sound (generic term)
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|advocacy (generic term)|protagonism (generic term)
+drumbeater|1
+(noun)|partisan|zealot|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)|nonpartisan (antonym)
+drumfire|1
+(noun)|cannonade|artillery fire (generic term)|cannon fire (generic term)
+drumfish|1
+(noun)|drum|sciaenid fish (generic term)|sciaenid (generic term)
+drumhead|2
+(adj)|summary|unofficial (similar term)
+(noun)|head|membrane (generic term)
+drumhead court-martial|1
+(noun)|court-martial (generic term)
+drumlin|1
+(noun)|drift (generic term)
+drummer|1
+(noun)|percussionist (generic term)
+drumming|1
+(noun)|percussion (generic term)
+drumstick|2
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|stick (generic term)
+drumstick tree|1
+(noun)|golden shower tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia (generic term)
+drunk|4
+(adj)|intoxicated|inebriated|bacchanalian (similar term)|bacchanal (similar term)|bacchic (similar term)|carousing (similar term)|orgiastic (similar term)|beery (similar term)|besotted (similar term)|blind drunk (similar term)|blotto (similar term)|crocked (similar term)|cockeyed (similar term)|fuddled (similar term)|loaded (similar term)|pie-eyed (similar term)|pissed (similar term)|pixilated (similar term)|plastered (similar term)|potty (similar term)|slopped (similar term)|sloshed (similar term)|smashed (similar term)|soaked (similar term)|soused (similar term)|sozzled (similar term)|squiffy (similar term)|stiff (similar term)|tiddly (similar term)|tiddley (similar term)|tight (similar term)|tipsy (similar term)|wet (similar term)|bibulous (similar term)|boozy (similar term)|drunken (similar term)|sottish (similar term)|doped (similar term)|drugged (similar term)|narcotized (similar term)|narcotised (similar term)|half-seas-over (similar term)|high (similar term)|mellow (similar term)|hopped-up (similar term)|stoned (similar term)|sober (antonym)
+(adj)|intoxicated|excited (similar term)
+(noun)|drunkard|rummy|sot|inebriate|wino|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+drunk-and-disorderly|1
+(noun)|drunk (generic term)
+drunkard|1
+(noun)|drunk|rummy|sot|inebriate|wino|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+drunken|1
+(adj)|bibulous|boozy|sottish|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+drunken reveler|1
+(noun)|drunken reveller|bacchanal|bacchant|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+drunken reveller|1
+(noun)|drunken reveler|bacchanal|bacchant|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+drunken revelry|1
+(noun)|orgy|debauch|debauchery|saturnalia|riot|bacchanal|bacchanalia|revel (generic term)|revelry (generic term)
+drunkenness|3
+(noun)|inebriation|inebriety|intoxication|tipsiness|insobriety|temporary state (generic term)|soberness (antonym)
+(noun)|alcoholism|alcohol addiction|inebriation|drug addiction (generic term)|white plague (generic term)
+(noun)|drink|drinking|boozing|crapulence|intemperance (generic term)|intemperateness (generic term)
+drupaceous|1
+(adj)|fruit (related term)
+drupe|1
+(noun)|stone fruit|fruit (generic term)
+drupelet|1
+(noun)|drupe (generic term)|stone fruit (generic term)
+druse|1
+(noun)|Druze|Druse|disciple (generic term)|adherent (generic term)
+druthers|1
+(noun)|preference|option (generic term)|alternative (generic term)|choice (generic term)
+druze|1
+(noun)|Druze|Druse|disciple (generic term)|adherent (generic term)
+dry|17
+(adj)|adust (similar term)|baked (similar term)|parched (similar term)|scorched (similar term)|sunbaked (similar term)|air-dried (similar term)|air-dry (similar term)|arid (similar term)|waterless (similar term)|bone-dry (similar term)|bone dry (similar term)|desiccated (similar term)|dried-out (similar term)|dried (similar term)|dried-up (similar term)|dried-up (similar term)|sere (similar term)|sear (similar term)|shriveled (similar term)|shrivelled (similar term)|withered (similar term)|dry-shod (similar term)|kiln-dried (similar term)|rainless (similar term)|semiarid (similar term)|semi-dry (similar term)|thirsty (similar term)|wet (antonym)
+(adj)|ironic|ironical|wry|humorous (similar term)|humourous (similar term)
+(adj)|wet (antonym)
+(adj)|milkless (similar term)|wet (antonym)
+(adj)|brut (similar term)|medium-dry (similar term)|sec (similar term)|unsweet (similar term)|sour (related term)|sugarless (related term)|nonsweet (related term)|sweet (antonym)
+(adj)|phlegmy (antonym)
+(adj)|tearless (similar term)|dry-eyed (similar term)
+(adj)|juiceless|unstimulating (similar term)|unexciting (similar term)
+(adj)|solid (similar term)
+(adj)|unproductive (similar term)
+(adj)|plain (similar term)
+(adj)|alcoholic (similar term)
+(adj)|unemotional (similar term)
+(adj)|teetotal|sober (similar term)
+(noun)|prohibitionist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(verb)|dry out|change (generic term)|alter (generic term)|modify (generic term)|wet (antonym)
+(verb)|dry out|change (generic term)
+dry-bulb thermometer|1
+(noun)|thermometer (generic term)|wet-bulb thermometer (antonym)
+dry-cleaned|1
+(adj)|clean (similar term)
+dry-dock|1
+(verb)|drydock|dock (generic term)
+dry-eyed|1
+(adj)|tearless|dry (similar term)|tearful (antonym)
+dry-gulching|1
+(noun)|ambush (generic term)|ambuscade (generic term)|lying in wait (generic term)|trap (generic term)|murder (generic term)|slaying (generic term)|execution (generic term)
+dry-nurse|1
+(verb)|care (generic term)|give care (generic term)
+dry-rot|1
+(verb)|mold (generic term)|mildew (generic term)
+dry-shod|1
+(adj)|dry (similar term)
+dry-stone wall|1
+(noun)|dry wall|stone wall (generic term)|dry masonry (generic term)
+dry-wood termite|1
+(noun)|termite (generic term)|white ant (generic term)
+dry battery|1
+(noun)|voltaic battery (generic term)|galvanic battery (generic term)
+dry cell|1
+(noun)|Leclanche cell (generic term)
+dry cereal|1
+(noun)|cold cereal|cereal (generic term)
+dry clean|1
+(verb)|clean (generic term)|make clean (generic term)
+dry cleaner|1
+(noun)|cleaner|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+dry cleaners|1
+(noun)|cleaners|shop (generic term)|store (generic term)
+dry cleaning|1
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+dry dock|1
+(noun)|drydock|graving dock|dock (generic term)|dockage (generic term)|docking facility (generic term)
+dry fly|1
+(noun)|fly (generic term)|wet fly (antonym)
+dry gangrene|1
+(noun)|cold gangrene|mumification necrosis|mummification|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+dry ice|1
+(noun)|solid (generic term)
+dry kiln|1
+(noun)|kiln (generic term)
+dry land|1
+(noun)|land|earth|ground|solid ground|terra firma|object (generic term)|physical object (generic term)
+dry masonry|1
+(noun)|masonry (generic term)
+dry measure|1
+(noun)|dry unit|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+dry milk|1
+(noun)|powdered milk|dried milk|milk powder|milk (generic term)
+dry mop|1
+(noun)|dustmop|dust mop|swab (generic term)|swob (generic term)|mop (generic term)
+dry mouth|1
+(noun)|xerostomia|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+dry mustard|1
+(noun)|powdered mustard|emetic (generic term)|vomit (generic term)|vomitive (generic term)|nauseant (generic term)|mustard (generic term)|table mustard (generic term)
+dry nurse|1
+(noun)|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+dry out|3
+(verb)|dry|change (generic term)
+(verb)|run dry|dry (generic term)|dry out (generic term)
+(verb)|dry|change (generic term)|alter (generic term)|modify (generic term)|wet (antonym)
+dry pint|1
+(noun)|pint|United States dry unit (generic term)
+dry plate|1
+(noun)|dry plate process|photography (generic term)
+dry plate process|1
+(noun)|dry plate|photography (generic term)
+dry point|2
+(noun)|engraving (generic term)
+(noun)|needle (generic term)
+dry quart|1
+(noun)|quart|United States dry unit (generic term)
+dry rot|2
+(noun)|plant disease (generic term)
+(noun)|fungus (generic term)
+dry run|1
+(noun)|rehearsal|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+dry season|1
+(noun)|season (generic term)|time of year (generic term)|rainy season (antonym)
+dry socket|1
+(noun)|alveolitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+dry unit|1
+(noun)|dry measure|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+dry up|2
+(verb)|exsiccate|dehydrate|desiccate|dry (generic term)|dry out (generic term)|hydrate (antonym)
+(verb)|mummify|shrivel (generic term)|shrivel up (generic term)|shrink (generic term)|wither (generic term)
+dry vermouth|1
+(noun)|French vermouth|vermouth (generic term)
+dry wall|1
+(noun)|dry-stone wall|stone wall (generic term)|dry masonry (generic term)
+dry walling|1
+(noun)|construction (generic term)|building (generic term)
+dry wash|1
+(noun)|wash|streambed (generic term)|creek bed (generic term)
+dryad|1
+(noun)|wood nymph|nymph (generic term)
+dryadella|1
+(noun)|Dryadella|genus Dryadella|monocot genus (generic term)|liliopsid genus (generic term)
+dryas|1
+(noun)|Dryas|genus Dryas|rosid dicot genus (generic term)
+dryas octopetala|1
+(noun)|mountain avens|Dryas octopetala|subshrub (generic term)|suffrutex (generic term)
+dryden|1
+(noun)|Dryden|John Dryden|poet (generic term)|dramatist (generic term)|playwright (generic term)
+drydock|2
+(noun)|dry dock|graving dock|dock (generic term)|dockage (generic term)|docking facility (generic term)
+(verb)|dry-dock|dock (generic term)
+dryer|1
+(noun)|drier|appliance (generic term)
+drygoods|1
+(noun)|soft goods|commodity (generic term)|trade good (generic term)|good (generic term)
+drying agent|1
+(noun)|desiccant|drier|sicative|chemical agent (generic term)
+drying oil|1
+(noun)|animal oil (generic term)|vegetable oil (generic term)|oil (generic term)
+drying up|1
+(noun)|dehydration|desiccation|evaporation|extraction (generic term)
+dryland berry|1
+(noun)|dryland blueberry|Vaccinium pallidum|blueberry (generic term)|blueberry bush (generic term)
+dryland blueberry|1
+(noun)|dryland berry|Vaccinium pallidum|blueberry (generic term)|blueberry bush (generic term)
+dryly|1
+(adv)|laconically|drily
+drymarchon|1
+(noun)|Drymarchon|genus Drymarchon|reptile genus (generic term)
+drymarchon corais|1
+(noun)|indigo snake|gopher snake|Drymarchon corais|colubrid snake (generic term)|colubrid (generic term)
+drymarchon corais couperi|1
+(noun)|eastern indigo snake|Drymarchon corais couperi|indigo snake (generic term)|gopher snake (generic term)|Drymarchon corais (generic term)
+drymoglossum|1
+(noun)|Drymoglossum|genus Drymoglossum|fern genus (generic term)
+drynaria|1
+(noun)|Drynaria|genus Drynaria|fern genus (generic term)
+drynaria rigidula|1
+(noun)|basket fern|Drynaria rigidula|fern (generic term)
+dryness|3
+(noun)|waterlessness|xerotes|condition (generic term)|status (generic term)|wetness (antonym)
+(noun)|sobriety|temperance (generic term)|moderation (generic term)
+(noun)|dispassion|dispassionateness|unemotionality (generic term)|emotionlessness (generic term)
+dryopithecine|1
+(noun)|hominid (generic term)
+dryopithecus|1
+(noun)|Dryopithecus|genus Dryopithecus|mammal genus (generic term)
+dryopithecus rudapithecus hungaricus|1
+(noun)|rudapithecus|Dryopithecus Rudapithecus hungaricus|dryopithecine (generic term)
+dryopteridaceae|1
+(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family (generic term)
+dryopteris|1
+(noun)|Dryopteris|genus Dryopteris|fern genus (generic term)
+dryopteris dilatata|1
+(noun)|broad buckler-fern|Dryopteris dilatata|shield fern (generic term)|buckler fern (generic term)
+dryopteris filix-mas|1
+(noun)|male fern|Dryopteris filix-mas|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+dryopteris fragrans|1
+(noun)|fragrant cliff fern|fragrant shield fern|fragrant wood fern|Dryopteris fragrans|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+dryopteris goldiana|1
+(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern (generic term)|buckler fern (generic term)
+dryopteris hexagonoptera|1
+(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern (generic term)
+dryopteris marginalis|1
+(noun)|marginal wood fern|evergreen wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+dryopteris noveboracensis|1
+(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern (generic term)
+dryopteris oreades|1
+(noun)|mountain male fern|Dryopteris oreades|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+dryopteris oreopteris|1
+(noun)|mountain fern|Oreopteris limbosperma|Dryopteris oreopteris|fern (generic term)
+dryopteris phegopteris|1
+(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+dryopteris thelypteris|1
+(noun)|marsh fern|Thelypteris palustris|Dryopteris thelypteris|fern (generic term)
+dryopteris thelypteris pubescens|1
+(noun)|snuffbox fern|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern (generic term)|Thelypteris palustris (generic term)|Dryopteris thelypteris (generic term)
+drypis|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+drywall|1
+(noun)|wallboard|board (generic term)
+ds|3
+(noun)|darmstadtium|Ds|element 110|atomic number 110|chemical element (generic term)|element (generic term)
+(noun)|Bureau of Diplomatic Security|DS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+(noun)|Doctor of Science|DS|ScD|honorary degree (generic term)|honoris causa (generic term)
+dsl|1
+(noun)|digital subscriber line|DSL|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+dtic|1
+(noun)|Defense Technical Information Center|DTIC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+dts|1
+(noun)|delirium tremens|DTs|psychosis (generic term)
+du barry|1
+(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier (generic term)
+du bois|1
+(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+du maurier|2
+(noun)|du Maurier|Daphne du Maurier|Dame Daphne du Maurier|writer (generic term)|author (generic term)
+(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer (generic term)|author (generic term)|illustrator (generic term)
+duad|1
+(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+dual|3
+(adj)|double|duple|multiple (similar term)
+(adj)|double|twofold|two-fold|treble|threefold|three-fold|multiple (similar term)
+(adj)|plural (similar term)
+dual-lane|1
+(adj)|divided|multilane (similar term)
+dual carriageway|1
+(noun)|divided highway|highway (generic term)|main road (generic term)
+dual inline package switch|1
+(noun)|DIP switch|toggle switch (generic term)|toggle (generic term)|on-off switch (generic term)|on/off switch (generic term)
+dual scan display|1
+(noun)|passive matrix display (generic term)
+dualism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+dualist|1
+(noun)|disciple (generic term)|adherent (generic term)
+dualistic|1
+(adj)|Manichaean|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+duality|3
+(noun)|dichotomy|classification (generic term)|categorization (generic term)|categorisation (generic term)
+(noun)|wave-particle duality|property (generic term)
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+dub|3
+(verb)|nickname|name (generic term)|call (generic term)
+(verb)|synchronize (generic term)|synchronise (generic term)
+(verb)|knight|ennoble (generic term)|gentle (generic term)|entitle (generic term)
+dubai|1
+(noun)|Dubai|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+dubbin|1
+(noun)|tallow (generic term)
+dubbing|1
+(noun)|soundtrack (generic term)
+dubiety|1
+(noun)|doubt|uncertainty|incertitude|doubtfulness|dubiousness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+dubious|3
+(adj)|doubtful|uncertain (similar term)|unsure (similar term)|incertain (similar term)
+(adj)|doubtful|dubitable|in question|questionable (similar term)
+(adj)|unconvinced (similar term)
+dubiously|2
+(adv)|questionably
+(adv)|doubtfully
+dubiousness|2
+(noun)|doubt|uncertainty|incertitude|dubiety|doubtfulness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+(noun)|doubt|doubtfulness|question|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+dubitable|1
+(adj)|doubtful|dubious|in question|questionable (similar term)
+dublin|1
+(noun)|Dublin|Irish capital|capital of Ireland|national capital (generic term)|port (generic term)
+dubliner|1
+(noun)|Dubliner|Irish person (generic term)|Irelander (generic term)
+dubnium|1
+(noun)|Db|hahnium|element 105|atomic number 105|chemical element (generic term)|element (generic term)
+dubois heyward|1
+(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer (generic term)|author (generic term)
+dubonnet|1
+(noun)|Dubonnet|wine (generic term)|vino (generic term)
+dubrovnik|1
+(noun)|Dubrovnik|Ragusa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+dubuque|1
+(noun)|Dubuque|town (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+duc d'elchingen|1
+(noun)|Ney|Michel Ney|Duc d'Elchingen|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+duc de richelieu|1
+(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+duc de sully|1
+(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman (generic term)|solon (generic term)|national leader (generic term)
+ducal|1
+(adj)|Lord|noble|nobleman (related term)
+ducat|1
+(noun)|coin (generic term)
+duce|1
+(noun)|leader (generic term)
+duchamp|1
+(noun)|Duchamp|Marcel Duchamp|artist (generic term)|creative person (generic term)
+duchenne's muscular dystrophy|1
+(noun)|Duchenne's muscular dystrophy|pseudohypertrophic dystrophy|muscular dystrophy (generic term)|dystrophy (generic term)
+duchess|1
+(noun)|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+duchess of ferrara|1
+(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+duchess of windsor|1
+(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee (generic term)|grass widow (generic term)
+duchesse de valentinois|1
+(noun)|Diane de Poitiers|Duchesse de Valentinois|female aristocrat (generic term)
+duchy|1
+(noun)|dukedom|domain (generic term)|demesne (generic term)|land (generic term)
+duck|8
+(noun)|anseriform bird (generic term)
+(noun)|duck's egg|score (generic term)
+(noun)|poultry (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|move (generic term)
+(verb)|dive (generic term)|plunge (generic term)|plunk (generic term)
+(verb)|dip|douse|dunk (generic term)|dip (generic term)|souse (generic term)|plunge (generic term)|douse (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|sidestep|avoid (generic term)
+duck's egg|1
+(noun)|duck|score (generic term)
+duck-billed|1
+(adj)|duckbill|beaked (similar term)
+duck-billed dinosaur|1
+(noun)|hadrosaur|hadrosaurus|ornithischian (generic term)|ornithischian dinosaur (generic term)
+duck-billed platypus|1
+(noun)|platypus|duckbill|duckbilled platypus|Ornithorhynchus anatinus|monotreme (generic term)|egg-laying mammal (generic term)
+duck-like|1
+(adj)|animal (similar term)
+duck down|1
+(noun)|down (generic term)|down feather (generic term)
+duck hunter|1
+(noun)|hunter (generic term)|huntsman (generic term)
+duck hunting|1
+(noun)|ducking|hunt (generic term)|hunting (generic term)
+duck pate|1
+(noun)|pate (generic term)
+duck sauce|1
+(noun)|hoisin sauce|condiment (generic term)
+duck shot|1
+(noun)|bird shot|buckshot|shot (generic term)|pellet (generic term)
+duck soup|1
+(noun)|cinch|breeze|picnic|snap|child's play|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+duckbill|3
+(adj)|duck-billed|beaked (similar term)
+(noun)|paddlefish|Polyodon spathula|ganoid (generic term)|ganoid fish (generic term)
+(noun)|platypus|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme (generic term)|egg-laying mammal (generic term)
+duckbilled platypus|1
+(noun)|platypus|duckbill|duck-billed platypus|Ornithorhynchus anatinus|monotreme (generic term)|egg-laying mammal (generic term)
+duckboard|1
+(noun)|boardwalk (generic term)
+ducking|2
+(noun)|duck hunting|hunt (generic term)|hunting (generic term)
+(noun)|submersion|immersion|dousing|wetting (generic term)
+ducking stool|1
+(noun)|cucking stool|instrument of punishment (generic term)
+duckling|1
+(noun)|duck (generic term)
+duckpin|1
+(noun)|bowling pin (generic term)|pin (generic term)
+duckpins|1
+(noun)|bowling (generic term)
+ducks and drakes|1
+(noun)|game (generic term)
+duckweed|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+duckweed family|1
+(noun)|Lemnaceae|family Lemnaceae|monocot family (generic term)|liliopsid family (generic term)
+ducky|1
+(noun)|darling|favorite|favourite|pet|dearie|deary|lover (generic term)
+duct|3
+(noun)|epithelial duct|canal|channel|passage (generic term)|passageway (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|conduit (generic term)
+duct gland|1
+(noun)|exocrine gland|exocrine|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+duct tape|1
+(noun)|adhesive tape (generic term)
+ductile|2
+(adj)|malleable|tractable (similar term)|manipulable (similar term)
+(adj)|malleable|pliable|pliant|tensile|tractile|formed (similar term)
+ductileness|1
+(noun)|ductility|malleability (generic term)|plasticity (generic term)
+ductility|1
+(noun)|ductileness|malleability (generic term)|plasticity (generic term)
+ductless|1
+(adj)|passage|passageway (related term)
+ductless gland|1
+(noun)|endocrine gland|endocrine|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+ductule|1
+(noun)|ductulus|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+ductulus|1
+(noun)|ductule|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+ductus arteriosus|1
+(noun)|blood vessel (generic term)
+ductus deferens|1
+(noun)|vas deferens|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+dud|4
+(adj)|unloaded (similar term)
+(noun)|flop|washout|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+(noun)|misfire|breakdown (generic term)|equipment failure (generic term)
+(noun)|turkey|bomb|flop (generic term)|bust (generic term)|fizzle (generic term)
+dude|2
+(noun)|fellow|buster|man (generic term)|adult male (generic term)
+(noun)|dandy|fop|gallant|sheik|beau|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+dude ranch|1
+(noun)|resort (generic term)|resort hotel (generic term)|holiday resort (generic term)
+dudeen|1
+(noun)|clay pipe (generic term)
+dudgeon|1
+(noun)|high dudgeon|indignation (generic term)|outrage (generic term)
+dudley moore|1
+(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|comedian (generic term)|comic (generic term)
+dudley stuart john moore|1
+(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|comedian (generic term)|comic (generic term)
+duds|1
+(noun)|togs|threads|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+due|5
+(adj)|owed|callable (similar term)|collect (similar term)|cod (similar term)|collectible (similar term)|collectable (similar term)|payable (similar term)|delinquent (similar term)|overdue (similar term)|owing (similar term)|receivable (similar term)|out-of-pocket (similar term)|repayable (similar term)|undue (antonym)
+(adj)|expected (similar term)
+(adj)|undue (antonym)
+(noun)|right (generic term)
+(noun)|fixed charge (generic term)|fixed cost (generic term)|fixed costs (generic term)
+due care|1
+(noun)|ordinary care|reasonable care|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+due date|1
+(noun)|maturity|maturity date|date (generic term)|day of the month (generic term)
+due east|1
+(noun)|east|eastward|E|cardinal compass point (generic term)
+due north|1
+(noun)|north|northward|N|cardinal compass point (generic term)
+due process|1
+(noun)|due process of law|group action (generic term)
+due process of law|1
+(noun)|due process|group action (generic term)
+due south|1
+(noun)|south|southward|S|cardinal compass point (generic term)
+due to|1
+(adj)|ascribable|imputable|referable|attributable (similar term)
+due west|1
+(noun)|west|westward|W|cardinal compass point (generic term)
+duel|3
+(noun)|affaire d'honneur|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|struggle (generic term)|battle (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+dueler|1
+(noun)|dueller|duelist|duellist|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+duelist|1
+(noun)|dueler|dueller|duellist|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+dueller|1
+(noun)|dueler|duelist|duellist|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+duellist|1
+(noun)|dueler|dueller|duelist|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+duenna|1
+(noun)|chaperon (generic term)|chaperone (generic term)
+duet|5
+(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|duette|duo|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|couple|twosome|duo|pair (generic term)
+(noun)|duette|duo|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|pas de deux|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+duette|2
+(noun)|duet|duo|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|duet|duo|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+duff|1
+(noun)|plum duff|pudding (generic term)
+duffel|2
+(noun)|duffel bag|duffle bag|duffle|drawstring bag (generic term)
+(noun)|duffle|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+duffel bag|1
+(noun)|duffle bag|duffel|duffle|drawstring bag (generic term)
+duffel coat|1
+(noun)|duffle coat|coat (generic term)
+duffer|1
+(noun)|clumsy person (generic term)
+duffle|2
+(noun)|duffel bag|duffle bag|duffel|drawstring bag (generic term)
+(noun)|duffel|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+duffle bag|1
+(noun)|duffel bag|duffel|duffle|drawstring bag (generic term)
+duffle coat|1
+(noun)|duffel coat|coat (generic term)
+dufy|1
+(noun)|Dufy|Raoul Dufy|painter (generic term)
+dug|1
+(noun)|mammary gland (generic term)|mamma (generic term)
+dugald stewart|1
+(noun)|Stewart|Dugald Stewart|philosopher (generic term)
+dugong|1
+(noun)|Dugong dugon|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+dugong dugon|1
+(noun)|dugong|Dugong dugon|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+dugongidae|1
+(noun)|Dugongidae|family Dugongidae|mammal family (generic term)
+dugout|3
+(noun)|shelter (generic term)
+(noun)|dugout canoe|pirogue|canoe (generic term)
+(noun)|bunker|fortification (generic term)|munition (generic term)
+dugout canoe|1
+(noun)|dugout|pirogue|canoe (generic term)
+dukas|1
+(noun)|Dukas|Paul Dukas|composer (generic term)
+duke|2
+(noun)|peer (generic term)
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+duke ellington|1
+(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician (generic term)|jazzman (generic term)
+duke of argyll's tea tree|1
+(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine (generic term)|boxthorn (generic term)
+duke of cumberland|1
+(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general (generic term)|full general (generic term)
+duke of edinburgh|1
+(noun)|Philip|Prince Philip|Duke of Edinburgh|prince (generic term)
+duke of lancaster|1
+(noun)|John of Gaunt|Duke of Lancaster|duke (generic term)
+duke of marlborough|1
+(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general (generic term)|full general (generic term)
+duke of wellington|1
+(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|Iron Duke|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+duke of windsor|1
+(noun)|Edward|Edward VIII|Duke of Windsor|King of England (generic term)|King of Great Britain (generic term)
+duke university|1
+(noun)|Duke University|university (generic term)
+duke wayne|1
+(noun)|Wayne|John Wayne|Duke Wayne|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+dukedom|2
+(noun)|rank (generic term)
+(noun)|duchy|domain (generic term)|demesne (generic term)|land (generic term)
+dulcet|2
+(adj)|pleasant (similar term)
+(adj)|honeyed|mellifluous|mellisonant|sweet|melodious (similar term)|melodic (similar term)|musical (similar term)
+dulciana|1
+(noun)|organ stop (generic term)
+dulcify|1
+(verb)|sweeten|edulcorate|dulcorate|change taste (generic term)|sour (antonym)
+dulcimer|2
+(noun)|stringed instrument (generic term)
+(noun)|zither (generic term)|cither (generic term)|zithern (generic term)
+dulcinea|1
+(noun)|ladylove|sweetheart (generic term)|sweetie (generic term)|steady (generic term)|truelove (generic term)
+dulcorate|1
+(verb)|sweeten|dulcify|edulcorate|change taste (generic term)|sour (antonym)
+dull|19
+(adj)|arid (similar term)|desiccate (similar term)|desiccated (similar term)|bovine (similar term)|drab (similar term)|dreary (similar term)|heavy (similar term)|leaden (similar term)|humdrum (similar term)|monotonous (similar term)|lackluster (similar term)|lacklustre (similar term)|lusterless (similar term)|lustreless (similar term)|colorless (related term)|colourless (related term)|spiritless (related term)|unanimated (related term)|lively (antonym)
+(adj)|flat (similar term)|mat (similar term)|matt (similar term)|matte (similar term)|matted (similar term)|lackluster (similar term)|lacklustre (similar term)|lusterless (similar term)|lustreless (similar term)|soft (similar term)|subdued (similar term)|unpolished (related term)|bright (antonym)
+(adj)|muffled|muted|softened|soft (similar term)
+(adj)|boring|deadening|ho-hum|irksome|slow|tedious|tiresome|wearisome|uninteresting (similar term)
+(adj)|unsaturated (similar term)
+(adj)|deadened (similar term)|sharp (antonym)
+(adj)|dense|dim|dumb|obtuse|slow|stupid (similar term)
+(adj)|slow|sluggish|inactive (similar term)
+(adj)|blunt (similar term)|blunted (similar term)|dulled (similar term)|edgeless (similar term)|unsharpened (similar term)|sharp (antonym)
+(adj)|insensitive (similar term)
+(adj)|thudding|unreverberant (similar term)|nonresonant (similar term)
+(adj)|grey|gray|leaden|cloudy (similar term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+(verb)|muffle|mute|damp|dampen|tone down|soften (generic term)
+(verb)|numb|benumb|blunt|desensitize (generic term)|desensitise (generic term)
+(verb)|blunt|change (generic term)|alter (generic term)|modify (generic term)|sharpen (antonym)
+(verb)|pall|change (generic term)
+(verb)|weaken (generic term)
+dull-purple|1
+(adj)|chromatic (similar term)
+dull-white|1
+(adj)|achromatic (similar term)
+dullard|2
+(noun)|stupid|stupid person|stupe|dolt|pudding head|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+(noun)|bore|unpleasant person (generic term)|disagreeable person (generic term)
+dulled|3
+(adj)|benumbed|uninterested (similar term)
+(adj)|blunted|dull (similar term)
+(adj)|greyed|colorless (similar term)|colourless (similar term)
+dulles|1
+(noun)|Dulles|John Foster Dulles|diplomat (generic term)|diplomatist (generic term)
+dullness|5
+(noun)|obtuseness|stupidity (generic term)
+(noun)|uninterestingness (generic term)
+(noun)|visual property (generic term)|brightness (antonym)
+(noun)|unfeelingness (generic term)|callousness (generic term)|callosity (generic term)|hardness (generic term)|insensibility (generic term)
+(noun)|bluntness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|sharpness (antonym)|sharpness (antonym)
+dulse|1
+(noun)|Rhodymenia palmata|red algae (generic term)
+duluth|1
+(noun)|Duluth|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+duly|1
+(adv)|punctually
+dumas|1
+(noun)|Dumas|Alexandre Dumas|writer (generic term)|author (generic term)
+dumb|4
+(adj)|dense|dim|dull|obtuse|slow|stupid (similar term)
+(adj)|speechless|inarticulate (similar term)|unarticulate (similar term)
+(adj)|inarticulate (similar term)|unarticulate (similar term)
+(adj)|mute|silent|inarticulate (similar term)|unarticulate (similar term)
+dumb bomb|1
+(noun)|gravity bomb|bomb (generic term)|smart bomb (antonym)
+dumb cane|1
+(noun)|mother-in-law plant|mother-in-law's tongue|Dieffenbachia sequine|arum (generic term)|aroid (generic term)
+dumb show|1
+(noun)|mime|pantomime|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+dumbass|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|fuckhead|simpleton (generic term)|simple (generic term)
+dumbbell|2
+(noun)|weight (generic term)|free weight (generic term)|exercising weight (generic term)
+(noun)|dummy|dope|boob|booby|pinhead|simpleton (generic term)|simple (generic term)
+dumbfound|1
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+dumbfounded|1
+(adj)|dumfounded|flabbergasted|stupefied|thunderstruck|dumbstruck|dumbstricken|surprised (similar term)
+dumbfounding|1
+(adj)|astounding|dumfounding|incredible (similar term)|unbelievable (similar term)
+dumbly|1
+(adv)|densely|obtusely
+dumbness|1
+(noun)|denseness|slow-wittedness|stupidity (generic term)
+dumbstricken|1
+(adj)|dumbfounded|dumfounded|flabbergasted|stupefied|thunderstruck|dumbstruck|surprised (similar term)
+dumbstruck|1
+(adj)|dumbfounded|dumfounded|flabbergasted|stupefied|thunderstruck|dumbstricken|surprised (similar term)
+dumbwaiter|1
+(noun)|food elevator|elevator (generic term)|lift (generic term)
+dumdum|1
+(noun)|dumdum bullet|bullet (generic term)|slug (generic term)
+dumdum bullet|1
+(noun)|dumdum|bullet (generic term)|slug (generic term)
+dumdum fever|1
+(noun)|visceral leishmaniasis|kala-azar|Assam fever|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+dumetella|1
+(noun)|Dumetella|genus Dumetella|bird genus (generic term)
+dumetella carolinensis|1
+(noun)|catbird|grey catbird|gray catbird|Dumetella carolinensis|oscine (generic term)|oscine bird (generic term)
+dumfounded|1
+(adj)|dumbfounded|flabbergasted|stupefied|thunderstruck|dumbstruck|dumbstricken|surprised (similar term)
+dumfounding|1
+(adj)|astounding|dumbfounding|incredible (similar term)|unbelievable (similar term)
+dummy|6
+(adj)|artificial (similar term)|unreal (similar term)
+(noun)|silent person|mute (generic term)|deaf-mute (generic term)|deaf-and-dumb person (generic term)
+(noun)|dumbbell|dope|boob|booby|pinhead|simpleton (generic term)|simple (generic term)
+(noun)|figure (generic term)
+(noun)|blank|blank shell|cartridge (generic term)
+(verb)|dummy up|produce (generic term)|make (generic term)|create (generic term)
+dummy up|2
+(verb)|dummy|produce (generic term)|make (generic term)|create (generic term)
+(verb)|close up|clam up|shut up|belt up|button up|be quiet|keep mum|open up (antonym)
+dummy whist|1
+(noun)|whist (generic term)|long whist (generic term)|short whist (generic term)
+dump|10
+(noun)|shit|defecation (generic term)|laxation (generic term)|shitting (generic term)
+(noun)|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite|site (generic term)|land site (generic term)
+(noun)|copy (generic term)|written matter (generic term)
+(noun)|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|ditch|get rid of (generic term)|remove (generic term)
+(verb)|underprice|sell (generic term)
+(verb)|drop (generic term)
+(verb)|plunge|drop (generic term)
+(verb)|deck|coldcock|knock down|floor|beat (generic term)
+dump routine|1
+(noun)|utility routine (generic term)|service routine (generic term)
+dump truck|1
+(noun)|dumper|tipper truck|tipper lorry|tip truck|tipper|truck (generic term)|motortruck (generic term)
+dumpcart|1
+(noun)|cart (generic term)
+dumper|1
+(noun)|dump truck|tipper truck|tipper lorry|tip truck|tipper|truck (generic term)|motortruck (generic term)
+dumpiness|1
+(noun)|squattiness|physique (generic term)|build (generic term)|body-build (generic term)|habitus (generic term)
+dumping|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+dumpling|2
+(noun)|dumplings|pasta (generic term)|alimentary paste (generic term)
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+dumplings|1
+(noun)|dumpling|pasta (generic term)|alimentary paste (generic term)
+dumps|1
+(noun)|mopes|low spirits (generic term)
+dumpsite|1
+(noun)|dump|garbage dump|trash dump|rubbish dump|wasteyard|waste-yard|site (generic term)|land site (generic term)
+dumpster|1
+(noun)|Dumpster|container (generic term)
+dumpy|3
+(adj)|site|land site (related term)
+(adj)|chunky|low-set|squat|squatty|stumpy|short (similar term)
+(adj)|podgy|pudgy|tubby|roly-poly|fat (similar term)
+dumpy level|1
+(noun)|Dumpy level|surveyor's level (generic term)
+dumuzi|1
+(noun)|Dumuzi|Tammuz|Semitic deity (generic term)
+dun|7
+(adj)|chromatic (similar term)
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(noun)|greyish brown|grayish brown|fawn|light brown (generic term)
+(verb)|torment|rag|bedevil|crucify|frustrate|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|demand (generic term)
+(verb)|cure (generic term)
+(verb)|darken (generic term)
+dun-colored|1
+(adj)|dun-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+dun-coloured|1
+(adj)|dun-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+duncan|1
+(noun)|Duncan|Isadora Duncan|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+duncan grant|1
+(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter (generic term)
+duncan james corrow grant|1
+(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter (generic term)
+dunce|1
+(noun)|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+dunce's cap|1
+(noun)|dunce cap|fool's cap|hat (generic term)|chapeau (generic term)|lid (generic term)
+dunce cap|1
+(noun)|dunce's cap|fool's cap|hat (generic term)|chapeau (generic term)|lid (generic term)
+dundathu pine|1
+(noun)|queensland kauri|smooth bark kauri|Agathis robusta|kauri pine (generic term)|dammar pine (generic term)
+dunderhead|1
+(noun)|dunce|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+dune|1
+(noun)|sand dune|ridge (generic term)
+dune buggy|1
+(noun)|beach buggy|recreational vehicle (generic term)|RV (generic term)|R.V. (generic term)
+dune cycling|1
+(noun)|cycling (generic term)
+dung|3
+(noun)|droppings|muck|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(verb)|fertilize (generic term)|fertilise (generic term)|feed (generic term)
+(verb)|stool (generic term)|defecate (generic term)|shit (generic term)|take a shit (generic term)|take a crap (generic term)|ca-ca (generic term)|crap (generic term)|make (generic term)
+dung beetle|1
+(noun)|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+dungaree|1
+(noun)|denim|denim fabric|jean|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+dungeness crab|2
+(noun)|Dungeness crab|crab (generic term)|crabmeat (generic term)
+(noun)|Dungeness crab|Cancer magister|crab (generic term)
+dungeon|2
+(noun)|keep|donjon|stronghold (generic term)|fastness (generic term)
+(noun)|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+dunghill|2
+(noun)|unsanitariness (generic term)
+(noun)|midden|muckheap|muckhill|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+dunk|4
+(noun)|dunk shot|stuff shot|basketball shot (generic term)
+(verb)|dip|souse|plunge|douse|immerse (generic term)|plunge (generic term)
+(verb)|shoot (generic term)
+(verb)|dip|eat (generic term)
+dunk shot|1
+(noun)|dunk|stuff shot|basketball shot (generic term)
+dunkard|1
+(noun)|Dunker|Dunkard|Tunker|Baptist (generic term)
+dunked|1
+(adj)|soused|wet (similar term)
+dunker|3
+(noun)|eater (generic term)|feeder (generic term)
+(noun)|basketball player (generic term)|basketeer (generic term)|cager (generic term)
+(noun)|Dunker|Dunkard|Tunker|Baptist (generic term)
+dunkerque|2
+(noun)|Dunkirk|Dunkerque|town (generic term)|port (generic term)
+(noun)|Dunkirk|Dunkerque|amphibious operation (generic term)|evacuation (generic term)
+dunkers|1
+(noun)|Church of the Brethren|Dunkers|Dippers|Baptist denomination (generic term)
+dunkirk|3
+(noun)|Dunkirk|crisis (generic term)
+(noun)|Dunkirk|Dunkerque|town (generic term)|port (generic term)
+(noun)|Dunkirk|Dunkerque|amphibious operation (generic term)|evacuation (generic term)
+dunlin|1
+(noun)|red-backed sandpiper|Erolia alpina|sandpiper (generic term)
+dunnock|1
+(noun)|hedge sparrow|sparrow|Prunella modularis|accentor (generic term)
+duns scotus|1
+(noun)|Duns Scotus|John Duns Scotus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+duo|4
+(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|duet|duette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|couple|twosome|duet|pair (generic term)
+(noun)|duet|duette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+duodecimal|2
+(adj)|quantitative (similar term)
+(noun)|one-twelfth|twelfth|twelfth part|common fraction (generic term)|simple fraction (generic term)
+duodecimal digit|1
+(noun)|digit (generic term)|figure (generic term)
+duodecimal notation|1
+(noun)|mathematical notation (generic term)
+duodecimal number system|1
+(noun)|duodecimal system|positional notation (generic term)|positional representation system (generic term)
+duodecimal system|1
+(noun)|duodecimal number system|positional notation (generic term)|positional representation system (generic term)
+duodenal|1
+(adj)|small intestine (related term)
+duodenal smear|1
+(noun)|paraduodenal smear|alimentary tract smear (generic term)
+duodenal ulcer|1
+(noun)|peptic ulcer (generic term)|peptic ulceration (generic term)
+duodenum|1
+(noun)|small intestine (generic term)
+duologue|2
+(noun)|dialogue|dialog|talk (generic term)|talking (generic term)
+(noun)|dialogue (generic term)|dialog (generic term)
+duomo|1
+(noun)|cathedral|church (generic term)|church building (generic term)
+dupe|2
+(noun)|victim|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|gull|slang|befool|cod|fool|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+dupery|1
+(noun)|fraud|fraudulence|hoax|humbug|put-on|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+duple|1
+(adj)|double|dual|multiple (similar term)
+duple time|1
+(noun)|musical time (generic term)
+duplex|5
+(adj)|multiple (similar term)
+(adj)|bidirectional (similar term)
+(noun)|duplex house|semidetached house|house (generic term)
+(noun)|duplex apartment|apartment (generic term)|flat (generic term)
+(verb)|convert (generic term)
+duplex apartment|1
+(noun)|duplex|apartment (generic term)|flat (generic term)
+duplex house|1
+(noun)|duplex|semidetached house|house (generic term)
+duplicability|1
+(noun)|reproducibility|dependability (generic term)|dependableness (generic term)|reliability (generic term)|reliableness (generic term)
+duplicable|1
+(adj)|duplicatable|reproducible (similar term)|consistent (similar term)
+duplicatable|1
+(adj)|duplicable|reproducible (similar term)|consistent (similar term)
+duplicate|8
+(adj)|same (similar term)
+(adj)|matching|twin|twinned|matched (similar term)
+(noun)|extra|artifact (generic term)|artefact (generic term)
+(noun)|duplication|copy (generic term)
+(verb)|reduplicate|double|repeat|replicate|reproduce (generic term)
+(verb)|twin|parallel|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|reproduce (generic term)
+(verb)|double|multiply (generic term)|manifold (generic term)|double up (related term)
+duplication|2
+(noun)|duplicate|copy (generic term)
+(noun)|gemination|copying (generic term)
+duplicator|1
+(noun)|copier|apparatus (generic term)|setup (generic term)
+duplicidentata|1
+(noun)|Duplicidentata|lagomorph (generic term)|gnawing mammal (generic term)
+duplicitous|1
+(adj)|ambidextrous|deceitful|double-dealing|Janus-faced|two-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+duplicity|2
+(noun)|fraudulence|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|double-dealing|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+dura|1
+(noun)|dura mater|meninx (generic term)|meninges (generic term)
+dura mater|1
+(noun)|dura|meninx (generic term)|meninges (generic term)
+durability|1
+(noun)|lastingness|enduringness|strength|permanence (generic term)|permanency (generic term)
+durable|3
+(adj)|lasting|long-lasting|long-lived|long (similar term)
+(adj)|long-wearing|serviceable (similar term)
+(adj)|indestructible|perdurable|undestroyable|imperishable (similar term)
+durable-press fabric|1
+(noun)|permanent press|permanent-press fabric|durable press|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+durable goods|1
+(noun)|durables|consumer durables|consumer goods (generic term)
+durable press|1
+(noun)|permanent press|permanent-press fabric|durable-press fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+durables|1
+(noun)|durable goods|consumer durables|consumer goods (generic term)
+durabolin|1
+(noun)|nandrolone|Durabolin|Kabolin|androgen (generic term)|androgenic hormone (generic term)
+dural|1
+(adj)|meninx|meninges (related term)
+duralumin|1
+(noun)|Duralumin|alloy (generic term)|metal (generic term)
+duramen|1
+(noun)|heartwood|wood (generic term)
+durance|1
+(noun)|captivity (generic term)|imprisonment (generic term)|incarceration (generic term)|immurement (generic term)
+durango|1
+(noun)|Durango|Victoria de Durango|city (generic term)|metropolis (generic term)|urban center (generic term)
+durant|1
+(noun)|Durant|Will Durant|William James Durant|historian (generic term)|historiographer (generic term)
+durante|1
+(noun)|Durante|Jimmy Durante|comedian (generic term)|comic (generic term)
+duration|3
+(noun)|continuance|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|continuance|time (generic term)
+(noun)|length|temporal property (generic term)
+durative|1
+(noun)|durative aspect|aspect (generic term)
+durative aspect|1
+(noun)|durative|aspect (generic term)
+durazzo|1
+(noun)|Durres|Durazzo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+durban|1
+(noun)|Durban|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+durbar|1
+(noun)|room (generic term)
+durer|1
+(noun)|Durer|Albrecht Durer|old master (generic term)|engraver (generic term)
+duress|1
+(noun)|force (generic term)
+durga|1
+(noun)|Durga|Hindu deity (generic term)
+durham|2
+(noun)|Durham|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Durham|shorthorn|beef (generic term)|beef cattle (generic term)
+durian|2
+(noun)|durion|durian tree|Durio zibethinus|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+durian tree|1
+(noun)|durian|durion|Durio zibethinus|fruit tree (generic term)
+durio|1
+(noun)|Durio|genus Durio|dilleniid dicot genus (generic term)
+durio zibethinus|1
+(noun)|durian|durion|durian tree|Durio zibethinus|fruit tree (generic term)
+durion|1
+(noun)|durian|durian tree|Durio zibethinus|fruit tree (generic term)
+durkheim|1
+(noun)|Durkheim|Emile Durkheim|sociologist (generic term)
+durmast|1
+(noun)|Quercus petraea|Quercus sessiliflora|white oak (generic term)
+durra|1
+(noun)|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+durrell|1
+(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer (generic term)|author (generic term)
+durres|1
+(noun)|Durres|Durazzo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+durum|1
+(noun)|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat (generic term)
+durum wheat|1
+(noun)|durum|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat (generic term)
+dusanbe|1
+(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital (generic term)
+duse|1
+(noun)|Duse|Eleonora Duse|actress (generic term)
+dushanbe|1
+(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital (generic term)
+dusicyon|1
+(noun)|Dusicyon|genus Dusicyon|mammal genus (generic term)
+dusicyon cancrivorus|1
+(noun)|crab-eating dog|crab-eating fox|Dusicyon cancrivorus|wild dog (generic term)
+dusk|2
+(noun)|twilight|gloaming|gloam|nightfall|evenfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+(verb)|darken (generic term)
+duskiness|2
+(noun)|dimness|semidarkness (generic term)
+(noun)|darkness|swarthiness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+dusky|2
+(adj)|twilight|twilit|dark (similar term)
+(adj)|dark-skinned|swart|swarthy|brunet (similar term)|brunette (similar term)
+dusky-colored|1
+(adj)|dark-colored|dark-coloured|dusky-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+dusky-coloured|1
+(adj)|dark-colored|dark-coloured|dusky-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+dusky-footed wood rat|1
+(noun)|wood rat (generic term)|wood-rat (generic term)
+dusky-footed woodrat|1
+(noun)|Neotoma fuscipes|packrat (generic term)|pack rat (generic term)|trade rat (generic term)|bushytail woodrat (generic term)|Neotoma cinerea (generic term)
+dusky salamander|1
+(noun)|salamander (generic term)
+dusky shark|1
+(noun)|Carcharhinus obscurus|requiem shark (generic term)
+dusseldorf|1
+(noun)|Dusseldorf|city (generic term)|metropolis (generic term)|urban center (generic term)
+dust|7
+(noun)|particulate (generic term)|particulate matter (generic term)
+(noun)|debris|junk|rubble|detritus|rubbish (generic term)|trash (generic term)|scrap (generic term)
+(noun)|material (generic term)|stuff (generic term)
+(verb)|clean (generic term)|make clean (generic term)
+(verb)|smear (generic term)|blur (generic term)|smudge (generic term)|smutch (generic term)
+(verb)|cover (generic term)
+(verb)|scatter|sprinkle|dot|disperse|discharge (generic term)
+dust-covered|1
+(adj)|dusty|dirty (similar term)|soiled (similar term)|unclean (similar term)
+dust bag|1
+(noun)|vacuum bag|bag (generic term)
+dust bowl|1
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+dust cloud|1
+(noun)|cloud (generic term)
+dust coat|1
+(noun)|duster|gaberdine|gabardine|smock|coverall (generic term)
+dust contamination|2
+(noun)|contamination (generic term)|taint (generic term)
+(noun)|contamination (generic term)|pollution (generic term)
+dust cover|3
+(noun)|book jacket|dust jacket|dust wrapper|jacket (generic term)
+(noun)|dust sheet|piece of cloth (generic term)|piece of material (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+dust devil|1
+(noun)|whirlwind (generic term)
+dust jacket|1
+(noun)|book jacket|dust cover|dust wrapper|jacket (generic term)
+dust mop|1
+(noun)|dustmop|dry mop|swab (generic term)|swob (generic term)|mop (generic term)
+dust sheet|1
+(noun)|dust cover|piece of cloth (generic term)|piece of material (generic term)
+dust storm|1
+(noun)|duster|sandstorm|sirocco|windstorm (generic term)
+dust wrapper|1
+(noun)|book jacket|dust cover|dust jacket|jacket (generic term)
+dustbin|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|trash barrel|trash bin|bin (generic term)
+dustcart|1
+(noun)|garbage truck|truck (generic term)|motortruck (generic term)
+dustcloth|1
+(noun)|dustrag|duster|piece of cloth (generic term)|piece of material (generic term)
+duster|4
+(noun)|dust storm|sandstorm|sirocco|windstorm (generic term)
+(noun)|gaberdine|gabardine|smock|dust coat|coverall (generic term)
+(noun)|dustcloth|dustrag|piece of cloth (generic term)|piece of material (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+dustin hoffman|1
+(noun)|Hoffman|Dustin Hoffman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+dustiness|1
+(noun)|dirtiness (generic term)|uncleanness (generic term)
+dusting powder|1
+(noun)|toilet powder|bath powder|powder (generic term)
+dustlike|1
+(adj)|fine (similar term)
+dustman|1
+(noun)|garbage man|garbageman|garbage collector|garbage carter|garbage hauler|refuse collector|hauler (generic term)|haulier (generic term)
+dustmop|1
+(noun)|dust mop|dry mop|swab (generic term)|swob (generic term)|mop (generic term)
+dustpan|2
+(noun)|dustpanful|containerful (generic term)
+(noun)|receptacle (generic term)
+dustpanful|1
+(noun)|dustpan|containerful (generic term)
+dustrag|1
+(noun)|dustcloth|duster|piece of cloth (generic term)|piece of material (generic term)
+dustup|1
+(noun)|quarrel|wrangle|row|words|run-in|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+dusty|2
+(adj)|dust-covered|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|stale|moth-eaten|unoriginal (similar term)
+dusty miller|5
+(noun)|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite (generic term)|composite plant (generic term)
+(noun)|Senecio cineraria|Cineraria maritima|shrub (generic term)|bush (generic term)
+(noun)|Centaurea cineraria|Centaurea gymnocarpa|centaury (generic term)
+(noun)|beach wormwood|old woman|Artemisia stelleriana|wormwood (generic term)
+(noun)|mullein pink|rose campion|gardener's delight|Lychnis coronaria|lychnis (generic term)|catchfly (generic term)
+dutch|3
+(adj)|Dutch|European country|European nation (related term)
+(noun)|Dutch|Dutch people|nation (generic term)|land (generic term)|country (generic term)
+(noun)|Dutch|West Germanic (generic term)|West Germanic language (generic term)
+dutch-elm beetle|1
+(noun)|Dutch-elm beetle|Scolytus multistriatus|bark beetle (generic term)
+dutch-processed cocoa|1
+(noun)|Dutch-processed cocoa|cocoa powder (generic term)
+dutch auction|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+dutch capital|1
+(noun)|Amsterdam|Dutch capital|capital of The Netherlands|national capital (generic term)
+dutch case-knife bean|1
+(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+dutch clover|1
+(noun)|white clover|shamrock|Trifolium repens|clover (generic term)|trefoil (generic term)
+dutch courage|1
+(noun)|Dutch courage|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+dutch door|1
+(noun)|Dutch door|half door|exterior door (generic term)|outside door (generic term)
+dutch east indies|1
+(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country (generic term)|state (generic term)|land (generic term)
+dutch elm|1
+(noun)|Dutch elm|Ulmus hollandica|elm (generic term)|elm tree (generic term)
+dutch elm disease|1
+(noun)|Dutch elm disease|plant disease (generic term)
+dutch elm fungus|1
+(noun)|Dutch elm fungus|Ceratostomella ulmi|fungus (generic term)
+dutch florin|1
+(noun)|guilder|gulden|florin|Dutch florin|Dutch monetary unit (generic term)
+dutch guiana|1
+(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country (generic term)|South American nation (generic term)
+dutch hoe|1
+(noun)|scuffle|scuffle hoe|Dutch hoe|hoe (generic term)
+dutch iris|2
+(noun)|Dutch iris|Iris tingitana|beardless iris (generic term)
+(noun)|Dutch iris|Iris filifolia|beardless iris (generic term)
+dutch leonard|1
+(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer (generic term)|author (generic term)
+dutch monetary unit|1
+(noun)|Dutch monetary unit|monetary unit (generic term)
+dutch oven|2
+(noun)|Dutch oven|oven (generic term)
+(noun)|Dutch oven|pot (generic term)
+dutch people|1
+(noun)|Dutch|Dutch people|nation (generic term)|land (generic term)|country (generic term)
+dutch treat|1
+(noun)|Dutch treat|dining (generic term)
+dutch uncle|1
+(noun)|Dutch uncle|counselor (generic term)|counsellor (generic term)
+dutchman|1
+(noun)|Netherlander|Dutchman|Hollander|European (generic term)
+dutchman's-pipe|1
+(noun)|Dutchman's-pipe|pipe vine|Aristolochia macrophylla|Aristolochia durior|birthwort (generic term)|Aristolochia clematitis (generic term)
+dutchman's breeches|1
+(noun)|Dutchman's breeches|Dicentra cucullaria|herb (generic term)|herbaceous plant (generic term)
+duteous|1
+(adj)|dutiful|obedient (similar term)
+dutiable|1
+(adj)|taxable (similar term)|nonexempt (similar term)
+dutiful|1
+(adj)|duteous|obedient (similar term)
+dutifulness|1
+(noun)|piety (generic term)|piousness (generic term)
+duty|3
+(noun)|work (generic term)
+(noun)|responsibility|obligation|social control (generic term)
+(noun)|tariff|indirect tax (generic term)
+duty-bound|1
+(adj)|obliged|obligated (similar term)
+duty-free|1
+(adj)|nontaxable (similar term)|exempt (similar term)
+duty assignment|1
+(noun)|assignment|duty (generic term)
+duty period|1
+(noun)|shift|work shift|hours (generic term)
+duty tour|1
+(noun)|enlistment|hitch|term of enlistment|tour of duty|tour|time period (generic term)|period of time (generic term)|period (generic term)
+duvalier|2
+(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator (generic term)|potentate (generic term)
+(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator (generic term)|potentate (generic term)
+duvet|1
+(noun)|eiderdown|continental quilt|quilt (generic term)|comforter (generic term)|puff (generic term)
+dvd|1
+(noun)|videodisk|videodisc|DVD|optical disk (generic term)|optical disc (generic term)
+dvorak|1
+(noun)|Dvorak|Antonin Dvorak|composer (generic term)
+dwarf|4
+(noun)|midget|nanus|small person (generic term)
+(noun)|gnome|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(verb)|shadow|overshadow|dominate (generic term)|command (generic term)|overlook (generic term)|overtop (generic term)
+(verb)|stunt (generic term)
+dwarf-white trillium|1
+(noun)|snow trillium|early wake-robin|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+dwarf astilbe|1
+(noun)|Astilbe chinensis pumila|astilbe (generic term)
+dwarf banana|1
+(noun)|Musa acuminata|banana (generic term)|banana tree (generic term)
+dwarf bilberry|1
+(noun)|dwarf blueberry|Vaccinium caespitosum|blueberry (generic term)|blueberry bush (generic term)
+dwarf blueberry|1
+(noun)|dwarf bilberry|Vaccinium caespitosum|blueberry (generic term)|blueberry bush (generic term)
+dwarf buckeye|1
+(noun)|bottlebrush buckeye|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+dwarf buffalo|1
+(noun)|anoa|Anoa depressicornis|Old World buffalo (generic term)|buffalo (generic term)
+dwarf cape gooseberry|1
+(noun)|strawberry tomato|Physalis pruinosa|ground cherry (generic term)|husk tomato (generic term)
+dwarf chestnut|1
+(noun)|Allegheny chinkapin|eastern chinquapin|chinquapin|Castanea pumila|chestnut (generic term)|chestnut tree (generic term)
+dwarf chinkapin oak|1
+(noun)|dwarf chinquapin oak|dwarf oak|Quercus prinoides|chestnut oak (generic term)
+dwarf chinquapin oak|1
+(noun)|dwarf chinkapin oak|dwarf oak|Quercus prinoides|chestnut oak (generic term)
+dwarf cornel|1
+(noun)|bunchberry|crackerberry|pudding berry|Cornus canadensis|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+dwarf daisy|1
+(noun)|woolly daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower (generic term)|wild flower (generic term)
+dwarf dandelion|1
+(noun)|Krigia dandelion|Krigia bulbosa|krigia (generic term)
+dwarf elder|2
+(noun)|danewort|Sambucus ebulus|elder (generic term)|elderberry bush (generic term)
+(noun)|bristly sarsaparilla|bristly sarsparilla|Aralia hispida|subshrub (generic term)|suffrutex (generic term)
+dwarf elm|1
+(noun)|Siberian elm|Chinese elm|Ulmus pumila|elm (generic term)|elm tree (generic term)
+dwarf flowering almond|1
+(noun)|Prunus glandulosa|almond tree (generic term)
+dwarf golden chinkapin|1
+(noun)|Chrysolepis sempervirens|shrub (generic term)|bush (generic term)
+dwarf gray willow|1
+(noun)|dwarf grey willow|sage willow|Salix tristis|willow (generic term)|willow tree (generic term)
+dwarf grey willow|1
+(noun)|dwarf gray willow|sage willow|Salix tristis|willow (generic term)|willow tree (generic term)
+dwarf hulsea|1
+(noun)|Hulsea nana|wildflower (generic term)|wild flower (generic term)
+dwarf iris|2
+(noun)|vernal iris|Iris verna|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+(noun)|Iris cristata|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+dwarf juniper|2
+(noun)|ground cedar|Juniperus communis depressa|juniper (generic term)
+(noun)|savin|Juniperus sabina|juniper (generic term)
+dwarf lycopod|1
+(noun)|rock spikemoss|Selaginella rupestris|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+dwarf maple|1
+(noun)|Rocky-mountain maple|Acer glabrum|maple (generic term)
+dwarf mountain pine|1
+(noun)|Swiss mountain pine|mountain pine|mugho pine|mugo pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+dwarf mulberry|1
+(noun)|cloudberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+dwarf nipplewort|1
+(noun)|lamb succory|Arnoseris minima|herb (generic term)|herbaceous plant (generic term)
+dwarf oak|1
+(noun)|dwarf chinkapin oak|dwarf chinquapin oak|Quercus prinoides|chestnut oak (generic term)
+dwarf phlox|1
+(noun)|moss pink|mountain phlox|moss phlox|Phlox subulata|phlox (generic term)
+dwarf pipefish|1
+(noun)|Syngnathus hildebrandi|pipefish (generic term)|needlefish (generic term)
+dwarf pocket rat|1
+(noun)|kangaroo mouse|pocket rat (generic term)
+dwarf russian almond|1
+(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree (generic term)
+dwarf sperm whale|1
+(noun)|Kogia simus|toothed whale (generic term)
+dwarf spurge|1
+(noun)|Euphorbia exigua|spurge (generic term)
+dwarf sumac|1
+(noun)|mountain sumac|black sumac|shining sumac|Rhus copallina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+dwarf tulip|1
+(noun)|Tulipa armena|Tulipa suaveolens|tulip (generic term)
+dwarf willow|1
+(noun)|Salix herbacea|willow (generic term)|willow tree (generic term)
+dwarfish|1
+(adj)|small (similar term)|little (similar term)
+dwarfishness|1
+(noun)|smallness (generic term)|littleness (generic term)
+dwarfism|1
+(noun)|nanism|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+dweeb|1
+(noun)|swot|grind|nerd|wonk|learner (generic term)|scholar (generic term)|assimilator (generic term)
+dwell|4
+(verb)|brood|worry (generic term)|care (generic term)|dwell on (related term)
+(verb)|consist|lie|belong|lie in|exist (generic term)|be (generic term)
+(verb)|live|inhabit|be (generic term)|live in (related term)|live out (related term)
+(verb)|harp|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+dwell on|1
+(verb)|linger over|hesitate (generic term)|waver (generic term)|waffle (generic term)
+dweller|1
+(noun)|inhabitant|habitant|denizen|indweller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dwelling|1
+(noun)|home|domicile|abode|habitation|dwelling house|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+dwelling house|1
+(noun)|dwelling|home|domicile|abode|habitation|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+dwight d. eisenhower|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+dwight david eisenhower|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+dwight davis|1
+(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player (generic term)
+dwight eisenhower|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+dwight filley davis|1
+(noun)|Davis|Dwight Davis|Dwight Filley Davis|tennis player (generic term)
+dwight lyman moody|1
+(noun)|Moody|Dwight Lyman Moody|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+dwindle|1
+(verb)|dwindle away|dwindle down|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+dwindle away|1
+(verb)|dwindle|dwindle down|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+dwindle down|1
+(verb)|dwindle|dwindle away|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+dwindling|2
+(adj)|tapering|tapering off|decreasing (similar term)
+(noun)|dwindling away|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+dwindling away|1
+(noun)|dwindling|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+dy|1
+(noun)|dysprosium|Dy|atomic number 66|metallic element (generic term)|metal (generic term)
+dyad|1
+(noun)|couple|pair|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+dyadic|1
+(adj)|two|2|II|deuce (related term)
+dyadic operation|1
+(noun)|operation (generic term)
+dyarchy|1
+(noun)|diarchy|political system (generic term)|form of government (generic term)
+dyaus|1
+(noun)|Dyaus|Dyaus-pitar|Hindu deity (generic term)
+dyaus-pitar|1
+(noun)|Dyaus|Dyaus-pitar|Hindu deity (generic term)
+dybbuk|1
+(noun)|dibbuk|devil (generic term)|fiend (generic term)|demon (generic term)|daemon (generic term)|daimon (generic term)
+dye|2
+(noun)|dyestuff|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+dye-works|1
+(noun)|workshop (generic term)|shop (generic term)
+dyed|1
+(adj)|bleached|colored|coloured|artificial (similar term)|unreal (similar term)
+dyeing|1
+(noun)|coloring (generic term)|colouring (generic term)
+dyer|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+dyer's-broom|1
+(noun)|woodwaxen|dyer's greenweed|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+dyer's greenweed|1
+(noun)|woodwaxen|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+dyer's mignonette|1
+(noun)|dyer's rocket|weld|Reseda luteola|reseda (generic term)
+dyer's rocket|1
+(noun)|dyer's mignonette|weld|Reseda luteola|reseda (generic term)
+dyer's weed|1
+(noun)|Solidago rugosa|goldenrod (generic term)
+dyer's woad|1
+(noun)|Isatis tinctoria|woad (generic term)
+dyer's woodruff|1
+(noun)|Asperula tinctoria|woodruff (generic term)
+dyers' chamomile|1
+(noun)|yellow chamomile|golden marguerite|Anthemis tinctoria|composite (generic term)|composite plant (generic term)
+dyestuff|1
+(noun)|dye|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+dyeweed|1
+(noun)|woodwaxen|dyer's greenweed|dyer's-broom|greenweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+dyewood|1
+(noun)|wood (generic term)
+dying|3
+(adj)|moribund (similar term)|last (similar term)|nascent (antonym)
+(adj)|anxious|eager (similar term)
+(noun)|death|demise|end (generic term)|ending (generic term)|birth (antonym)
+dyirbal|1
+(noun)|Dyirbal|Jirrbal|Australian (generic term)|Aboriginal Australian (generic term)
+dyke|3
+(noun)|butch|dike|lesbian (generic term)|tribade (generic term)|gay woman (generic term)
+(noun)|dam|dike|barrier (generic term)
+(verb)|dike|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+dylan|2
+(noun)|Dylan|Bob Dylan|songwriter (generic term)|songster (generic term)|ballad maker (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Dylan|Celtic deity (generic term)
+dylan marlais thomas|1
+(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet (generic term)
+dylan thomas|1
+(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet (generic term)
+dynamic|4
+(adj)|dynamical|can-do (similar term)|changing (similar term)|ever-changing (similar term)|driving (similar term)|impulsive (similar term)|energizing (similar term)|energising (similar term)|kinetic (similar term)|high-octane (similar term)|high-powered (similar term)|high-power (similar term)|high-voltage (similar term)|high-energy (similar term)|projectile (similar term)|propellant (similar term)|propellent (similar term)|propelling (similar term)|propulsive (similar term)|self-propelled (similar term)|self-propelling (similar term)|slashing (similar term)|energetic (related term)|undynamic (antonym)
+(adj)|mechanics (related term)
+(adj)|active|stative (antonym)
+(noun)|moral force|incentive (generic term)|inducement (generic term)|motivator (generic term)
+dynamic balance|1
+(noun)|equilibrium (generic term)
+dynamic electricity|1
+(noun)|current electricity|electricity (generic term)
+dynamic headroom|1
+(noun)|headroom|high fidelity (generic term)|hi-fi (generic term)
+dynamic viscosity|1
+(noun)|coefficient of viscosity|absolute viscosity|coefficient (generic term)
+dynamical|1
+(adj)|dynamic|can-do (similar term)|changing (similar term)|ever-changing (similar term)|driving (similar term)|impulsive (similar term)|energizing (similar term)|energising (similar term)|kinetic (similar term)|high-octane (similar term)|high-powered (similar term)|high-power (similar term)|high-voltage (similar term)|high-energy (similar term)|projectile (similar term)|propellant (similar term)|propellent (similar term)|propelling (similar term)|propulsive (similar term)|self-propelled (similar term)|self-propelling (similar term)|slashing (similar term)|energetic (related term)|undynamic (antonym)
+dynamical system|1
+(noun)|phase space (generic term)
+dynamics|1
+(noun)|kinetics|mechanics (generic term)
+dynamise|1
+(verb)|dynamize|change (generic term)|alter (generic term)|modify (generic term)
+dynamism|3
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|vigor|vigour|heartiness|strength (generic term)
+(noun)|pizzazz|pizzaz|oomph|zing|activeness (generic term)|activity (generic term)
+dynamite|2
+(noun)|explosive compound (generic term)
+(verb)|explode (generic term)|detonate (generic term)|blow up (generic term)|set off (generic term)
+dynamiter|1
+(noun)|dynamitist|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+dynamitist|1
+(noun)|dynamiter|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+dynamize|1
+(verb)|dynamise|change (generic term)|alter (generic term)|modify (generic term)
+dynamo|1
+(noun)|generator (generic term)
+dynamometer|1
+(noun)|ergometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+dynapen|1
+(noun)|dicloxacillin|Dynapen|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+dynast|1
+(noun)|ruler (generic term)|swayer (generic term)
+dynastic|1
+(adj)|family|family line|folk|kinfolk|kinsfolk|sept|phratry (related term)
+dynasty|1
+(noun)|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+dyne|1
+(noun)|force unit (generic term)
+dysaphia|1
+(noun)|disorder (generic term)|upset (generic term)
+dysarthria|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+dyscalculia|1
+(noun)|learning disorder (generic term)|learning disability (generic term)
+dyschezia|1
+(noun)|constipation (generic term)|irregularity (generic term)
+dyscrasia|1
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+dysdercus|1
+(noun)|Dysdercus|genus Dysdercus|arthropod genus (generic term)
+dysentery|1
+(noun)|infectious disease (generic term)
+dysfunction|1
+(noun)|disfunction|pathology (generic term)
+dysfunctional|2
+(adj)|impaired (similar term)
+(adj)|nonadaptive|maladaptive (similar term)
+dysgenesis|1
+(noun)|sterility (generic term)|infertility (generic term)
+dysgenic|1
+(adj)|cacogenic|life science|bioscience (related term)|eugenic (antonym)
+dysgenics|1
+(noun)|cacogenics|life science (generic term)|bioscience (generic term)|eugenics (antonym)
+dysgraphia|1
+(noun)|learning disorder (generic term)|learning disability (generic term)
+dyskinesia|1
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+dyslectic|2
+(adj)|dyslexic|impaired (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+dyslexia|1
+(noun)|learning disorder (generic term)|learning disability (generic term)
+dyslexic|2
+(adj)|learning disorder|learning disability (related term)
+(adj)|dyslectic|impaired (similar term)
+dyslogia|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+dyslogistic|1
+(adj)|dislogistic|pejorative|uncomplimentary (similar term)
+dysmenorrhea|1
+(noun)|pain (generic term)|hurting (generic term)
+dysomia|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+dysosmia|1
+(noun)|parosamia|olfactory impairment|disorder (generic term)|upset (generic term)
+dysostosis multiplex|1
+(noun)|Hurler's syndrome|Hurler's disease|gargoylism|lipochondrodystrophy|mucopolysaccharidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+dyspepsia|1
+(noun)|indigestion|stomach upset|upset stomach|symptom (generic term)
+dyspeptic|3
+(adj)|ill (similar term)|sick (similar term)
+(adj)|atrabilious|bilious|liverish|ill-natured (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+dysphagia|1
+(noun)|disorder (generic term)|upset (generic term)
+dysphasia|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+dysphemism|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)|euphemism (antonym)
+dysphemistic|1
+(adj)|offensive|euphemistic (antonym)
+dysphonia|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+dysphoria|1
+(noun)|discontentment (generic term)|discontent (generic term)|discontentedness (generic term)|depression (generic term)|euphoria (antonym)
+dysphoric|1
+(adj)|distressed|unhappy|dejected (related term)|unhappy (related term)|euphoric (antonym)
+dysplasia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+dysplastic|1
+(adj)|abnormality|abnormalcy|abnormal condition (related term)
+dyspnea|1
+(noun)|dyspnoea|symptom (generic term)
+dyspneal|1
+(adj)|breathless|dyspneic|dyspnoeic|dyspnoeal|asphyxiating (similar term)|smothering (similar term)|suffocating (similar term)|suffocative (similar term)|blown (similar term)|gasping (similar term)|out of breath (similar term)|panting (similar term)|pursy (similar term)|short-winded (similar term)|winded (similar term)|unventilated (related term)|breathing (antonym)
+dyspneic|1
+(adj)|breathless|dyspnoeic|dyspneal|dyspnoeal|asphyxiating (similar term)|smothering (similar term)|suffocating (similar term)|suffocative (similar term)|blown (similar term)|gasping (similar term)|out of breath (similar term)|panting (similar term)|pursy (similar term)|short-winded (similar term)|winded (similar term)|unventilated (related term)|breathing (antonym)
+dyspnoea|1
+(noun)|dyspnea|symptom (generic term)
+dyspnoeal|1
+(adj)|breathless|dyspneic|dyspnoeic|dyspneal|asphyxiating (similar term)|smothering (similar term)|suffocating (similar term)|suffocative (similar term)|blown (similar term)|gasping (similar term)|out of breath (similar term)|panting (similar term)|pursy (similar term)|short-winded (similar term)|winded (similar term)|unventilated (related term)|breathing (antonym)
+dyspnoeic|1
+(adj)|breathless|dyspneic|dyspneal|dyspnoeal|asphyxiating (similar term)|smothering (similar term)|suffocating (similar term)|suffocative (similar term)|blown (similar term)|gasping (similar term)|out of breath (similar term)|panting (similar term)|pursy (similar term)|short-winded (similar term)|winded (similar term)|unventilated (related term)|breathing (antonym)
+dysprosium|1
+(noun)|Dy|atomic number 66|metallic element (generic term)|metal (generic term)
+dyssynergia|1
+(noun)|ataxia|ataxy|motor ataxia|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+dysthymia|1
+(noun)|dysthymic depression|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+dysthymic depression|1
+(noun)|dysthymia|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+dystopia|2
+(noun)|state (generic term)|utopia (antonym)
+(noun)|fiction (generic term)
+dystopian|2
+(adj)|state (related term)
+(adj)|utopian (antonym)
+dystrophy|2
+(noun)|muscular dystrophy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+(noun)|degenerative disorder (generic term)
+dysuria|1
+(noun)|disorder (generic term)|upset (generic term)
+dytiscidae|1
+(noun)|Dytiscidae|family Dytiscidae|arthropod family (generic term)
+dyushambe|1
+(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital (generic term)
+dziggetai|1
+(noun)|chigetai|Equus hemionus hemionus|onager (generic term)|Equus hemionus (generic term)
+e|5
+(noun)|vitamin E|tocopherol|E|fat-soluble vitamin (generic term)|antioxidant (generic term)
+(noun)|einsteinium|Es|E|atomic number 99|metallic element (generic term)|metal (generic term)
+(noun)|east|due east|eastward|E|cardinal compass point (generic term)
+(noun)|transcendental number (generic term)
+(noun)|E|letter e|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+e'er|1
+(adv)|always|ever|never (antonym)
+e-bomb|1
+(noun)|microwave bomb|E-bomb|bomb (generic term)
+e-commerce|1
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+e-mail|2
+(noun)|electronic mail|email|electronic communication (generic term)|snail mail (antonym)|snail mail (antonym)|snail mail (antonym)
+(verb)|email|netmail|telecommunicate (generic term)
+e-mycin|1
+(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+e. a. von willebrand|1
+(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+e. b. white|1
+(noun)|White|E. B. White|Elwyn Brooks White|writer (generic term)|author (generic term)
+e. coli|1
+(noun)|Escherichia coli|E. coli|escherichia (generic term)
+e. e. cummings|1
+(noun)|cummings|Edward Estlin Cummings|writer (generic term)|author (generic term)
+e. g. marshall|1
+(noun)|Marshall|E. G. Marshall|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+e. h. harriman|1
+(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman (generic term)|man of affairs (generic term)
+e. h. weber|1
+(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist (generic term)
+e. l. doctorow|1
+(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer (generic term)|author (generic term)
+e. o. lawrence|1
+(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist (generic term)
+e. o. wilson|1
+(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+e. t. a. hoffmann|1
+(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer (generic term)|author (generic term)
+e. t. s. walton|1
+(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist (generic term)
+e. w. morley|1
+(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist (generic term)
+e.g.|1
+(adv)|for example|for instance
+e.s.p.|1
+(noun)|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+e layer|1
+(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region (generic term)|part (generic term)
+e region|1
+(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region (generic term)|part (generic term)
+ea|1
+(noun)|Ea|Semitic deity (generic term)
+each|2
+(adj)|all (similar term)
+(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 (generic term)
+eacles imperialis|1
+(noun)|imperial moth|Eacles imperialis|saturniid (generic term)|saturniid moth (generic term)
+eadweard muybridge|1
+(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+eadwig|1
+(noun)|Edwy|Eadwig|King of England (generic term)|King of Great Britain (generic term)
+eager|3
+(adj)|anxious (similar term)|dying (similar term)|hot (similar term)|impatient (similar term)|raring (similar term)|overeager (similar term)|uneager (antonym)
+(adj)|avid|great|zealous|enthusiastic (similar term)
+(noun)|tidal bore|bore|eagre|aegir|tidal flow (generic term)|tidal current (generic term)
+eager beaver|1
+(noun)|busy bee|live wire|sharpie|sharpy|actor (generic term)|doer (generic term)|worker (generic term)
+eagerly|1
+(adv)|thirstily
+eagerness|2
+(noun)|avidity|avidness|keenness|enthusiasm (generic term)
+(noun)|readiness|zeal|forwardness|willingness (generic term)
+eagle|5
+(noun)|bird of Jove|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+(noun)|score (generic term)
+(noun)|coin (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+eagle-eyed|1
+(adj)|keen-sighted|farseeing|longsighted|farsighted (similar term)|presbyopic (similar term)
+eagle-like|1
+(adj)|eaglelike|animal (similar term)
+eagle ray|1
+(noun)|ray (generic term)
+eagle scout|1
+(noun)|Eagle Scout|Boy Scout (generic term)
+eaglelike|1
+(adj)|eagle-like|animal (similar term)
+eaglet|1
+(noun)|eagle (generic term)|bird of Jove (generic term)|young bird (generic term)
+eagre|1
+(noun)|tidal bore|bore|aegir|eager|tidal flow (generic term)|tidal current (generic term)
+eames|1
+(noun)|Eames|Charles Eames|interior designer (generic term)|designer (generic term)|interior decorator (generic term)|house decorator (generic term)|room decorator (generic term)|decorator (generic term)
+eames chair|1
+(noun)|Eames chair|chair (generic term)
+eamon de valera|1
+(noun)|de Valera|Eamon de Valera|statesman (generic term)|solon (generic term)|national leader (generic term)
+ear|5
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+(noun)|hearing (generic term)|audition (generic term)|auditory sense (generic term)|sense of hearing (generic term)|auditory modality (generic term)
+(noun)|auricle|pinna|cartilaginous structure (generic term)
+(noun)|attention (generic term)|attending (generic term)
+(noun)|spike|capitulum|fruit (generic term)
+ear-like|1
+(adj)|auriform|ear-shaped|rounded (similar term)
+ear-nose-and-throat doctor|1
+(noun)|ENT man|otolaryngologist|otorhinolaryngologist|rhinolaryngologist|specialist (generic term)|medical specialist (generic term)
+ear-shaped|1
+(adj)|auriform|ear-like|rounded (similar term)
+ear-shell|1
+(noun)|abalone|gastropod (generic term)|univalve (generic term)
+ear canal|1
+(noun)|auditory meatus|acoustic meatus|auditory canal|external auditory canal|meatus (generic term)
+ear doctor|1
+(noun)|ear specialist|otologist|specialist (generic term)|medical specialist (generic term)
+ear fungus|1
+(noun)|Jew's-ear|Jew's-ears|Auricularia auricula|jelly fungus (generic term)
+ear hole|1
+(noun)|hole (generic term)
+ear lobe|1
+(noun)|earlobe|lobe (generic term)
+ear specialist|1
+(noun)|ear doctor|otologist|specialist (generic term)|medical specialist (generic term)
+ear trumpet|1
+(noun)|hearing aid|acoustic device (generic term)
+earache|1
+(noun)|otalgia|ache (generic term)|aching (generic term)
+eardrop|1
+(noun)|pendant earring|drop earring|earring (generic term)
+eardrum|1
+(noun)|tympanum|tympanic membrane|myringa|membrane (generic term)|tissue layer (generic term)
+eared|2
+(adj)|dog-eared|worn (similar term)
+(adj)|auriculate (similar term)|auriculated (similar term)|lop-eared (similar term)|mouse-eared (similar term)|short-eared (similar term)|small-eared (similar term)|earless (antonym)
+eared grebe|1
+(noun)|black-necked grebe|Podiceps nigricollis|grebe (generic term)
+eared seal|1
+(noun)|seal (generic term)
+earflap|1
+(noun)|earlap|flap (generic term)
+earful|2
+(noun)|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(noun)|castigation|bawling out|chewing out|upbraiding|going-over|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+earhart|1
+(noun)|Earhart|Amelia Earhart|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+earl|1
+(noun)|peer (generic term)
+earl marshal|1
+(noun)|Earl Marshal|peer (generic term)
+earl of leicester|1
+(noun)|Montfort|Simon de Montfort|Earl of Leicester|earl (generic term)
+earl of warwick|1
+(noun)|Warwick|Earl of Warwick|Richard Neville|Kingmaker|statesman (generic term)|solon (generic term)|national leader (generic term)
+earl russell|1
+(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician (generic term)|logistician (generic term)|philosopher (generic term)
+earl warren|1
+(noun)|Warren|Earl Warren|chief justice (generic term)
+earlap|1
+(noun)|earflap|flap (generic term)
+earldom|2
+(noun)|rank (generic term)
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+earleaved umbrella tree|1
+(noun)|Magnolia fraseri|magnolia (generic term)
+earless|1
+(adj)|eared (antonym)
+earless lizard|1
+(noun)|iguanid (generic term)|iguanid lizard (generic term)
+earless seal|1
+(noun)|true seal|hair seal|seal (generic term)
+earlier|4
+(adj)|earliest|early (similar term)
+(adv)|before
+(adv)|sooner
+(adv)|in the first place|in the beginning|to begin with|originally
+earliest|2
+(adj)|earlier|early (similar term)
+(adv)|soonest
+earliness|1
+(noun)|timing (generic term)|lateness (antonym)
+earlobe|1
+(noun)|ear lobe|lobe (generic term)
+early|9
+(adj)|aboriginal (similar term)|primal (similar term)|primeval (similar term)|primaeval (similar term)|primordial (similar term)|advance (similar term)|beforehand (similar term)|archean (similar term)|archaean (similar term)|archeozoic (similar term)|archaeozoic (similar term)|azoic (similar term)|earlier (similar term)|earliest (similar term)|earlyish (similar term)|premature (similar term)|untimely (similar term)|previous (similar term)|premature (similar term)|proterozoic (similar term)|proto (similar term)|wee (similar term)|first (related term)|middle (antonym)|late (antonym)
+(adj)|archaic (similar term)|primitive (similar term)|new (similar term)|young (similar term)|crude (similar term)|primitive (similar term)|rude (similar term)|embryonic (similar term)|embryotic (similar term)|incipient (similar term)|inchoate (similar term)|precocious (similar term)|late (antonym)
+(adj)|former|other|past (similar term)
+(adj)|young (similar term)|immature (similar term)
+(adj)|Old (similar term)|middle (antonym)|late (antonym)
+(adj)|future (similar term)
+(adv)|early on
+(adv)|ahead of time|too soon|late (antonym)
+(adv)|betimes
+early-blooming|1
+(adj)|spring-flowering|early-flowering|spring-blooming|late-spring-blooming|vernal (similar term)
+early-flowering|1
+(adj)|spring-flowering|spring-blooming|early-blooming|late-spring-blooming|vernal (similar term)
+early-morning hour|1
+(noun)|hour (generic term)|time of day (generic term)
+early bird|2
+(noun)|arrival (generic term)|arriver (generic term)|comer (generic term)
+(noun)|riser (generic term)
+early childhood|1
+(noun)|infancy|babyhood|time of life (generic term)
+early coral root|1
+(noun)|pale coral root|Corallorhiza trifida|coral root (generic term)
+early days|1
+(noun)|youth|time period (generic term)|period of time (generic term)|period (generic term)
+early morel|1
+(noun)|Verpa bohemica|Verpa (generic term)|bell morel (generic term)
+early on|1
+(adv)|early
+early purple orchid|1
+(noun)|male orchis|Orchis mascula|orchis (generic term)
+early spider orchid|1
+(noun)|Ophrys sphegodes|spider orchid (generic term)
+early wake-robin|1
+(noun)|dwarf-white trillium|snow trillium|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+early warning radar|1
+(noun)|radar (generic term)|microwave radar (generic term)|radio detection and ranging (generic term)|radiolocation (generic term)
+early warning system|1
+(noun)|network (generic term)|electronic network (generic term)
+early winter cress|1
+(noun)|Belle Isle cress|land cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+earlyish|1
+(adj)|early (similar term)
+earmark|3
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|hallmark|trademark|stylemark|characteristic (generic term)
+(verb)|allow|appropriate|set aside|reserve|assign (generic term)|allot (generic term)|portion (generic term)
+earmuff|1
+(noun)|covering (generic term)
+earn|2
+(verb)|gain|take in|clear|make|realize|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|garner|get (generic term)|acquire (generic term)
+earned|1
+(adj)|attained (similar term)|unearned (antonym)
+earned run|1
+(noun)|run (generic term)|tally (generic term)|unearned run (antonym)
+earned run average|1
+(noun)|ERA|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+earner|1
+(noun)|wage earner|jobholder (generic term)
+earnest|4
+(adj)|sincere|solemn|serious (similar term)
+(adj)|dear|devout|heartfelt|sincere (similar term)
+(adj)|businesslike|purposeful (similar term)
+(noun)|security (generic term)|surety (generic term)
+earnest money|1
+(noun)|arles|earnest (generic term)
+earnestly|1
+(adv)|seriously|in earnest
+earnestness|2
+(noun)|seriousness|sincerity|gravity (generic term)|solemnity (generic term)
+(noun)|seriousness|serious-mindedness|sincerity|trait (generic term)|frivolity (antonym)
+earning per share|1
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+earnings|2
+(noun)|net income|net|net profit|lucre|profit|profits|income (generic term)
+(noun)|wage|pay|remuneration|salary|regular payment (generic term)
+earnings before interest taxes depreciation and amortization|1
+(noun)|EBITDA|Earnings Before Interest Taxes Depreciation and Amortization|income (generic term)
+earnings report|1
+(noun)|income statement|operating statement|profit-and-loss statement|statement (generic term)|financial statement (generic term)
+earphone|1
+(noun)|earpiece|headphone|phone|electro-acoustic transducer (generic term)
+earpiece|1
+(noun)|earphone|headphone|phone|electro-acoustic transducer (generic term)
+earreach|1
+(noun)|earshot|hearing|range (generic term)|reach (generic term)
+earring|1
+(noun)|jewelry (generic term)|jewellery (generic term)
+earshot|1
+(noun)|earreach|hearing|range (generic term)|reach (generic term)
+earsplitting|1
+(adj)|deafening|roaring|thunderous|thundery|loud (similar term)
+earth|9
+(noun)|Earth|world|globe|terrestrial planet (generic term)
+(noun)|ground|material (generic term)|stuff (generic term)
+(noun)|land|dry land|ground|solid ground|terra firma|object (generic term)|physical object (generic term)
+(noun)|Earth|location (generic term)
+(noun)|element (generic term)
+(noun)|worldly concern|earthly concern|world|concern (generic term)
+(noun)|ground|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(verb)|hide (generic term)|hide out (generic term)
+(verb)|ground (generic term)
+earth's crust|1
+(noun)|crust|Earth's crust|layer (generic term)
+earth's surface|1
+(noun)|surface|Earth's surface|layer (generic term)
+earth-ball|1
+(noun)|truffle|earthnut|fungus (generic term)
+earth-closet|1
+(noun)|outhouse|privy|jakes|outbuilding (generic term)
+earth-god|1
+(noun)|earth god|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+earth-goddess|1
+(noun)|earth goddess|goddess (generic term)
+earth-nut pea|1
+(noun)|heath pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine (generic term)
+earth-received time|1
+(noun)|Earth-received time|ERT|coordinated universal time (generic term)|UTC (generic term)
+earth-tongue|1
+(noun)|earthtongue|fungus (generic term)
+earth almond|1
+(noun)|chufa|yellow nutgrass|ground almond|rush nut|Cyperus esculentus|sedge (generic term)
+earth color|1
+(noun)|mineral (generic term)|pigment (generic term)
+earth god|1
+(noun)|earth-god|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+earth goddess|1
+(noun)|earth-goddess|goddess (generic term)
+earth mother|1
+(noun)|earth-goddess (generic term)|earth goddess (generic term)
+earth science|1
+(noun)|natural science (generic term)
+earth tremor|1
+(noun)|tremor|microseism|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+earth up|1
+(verb)|land up|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+earth wax|1
+(noun)|ader wax|mineral wax|ozokerite|ozocerite|mineral (generic term)
+earthball|1
+(noun)|false truffle|puffball|hard-skinned puffball|fungus (generic term)
+earthborn|3
+(adj)|mortal (similar term)
+(adj)|human (similar term)
+(adj)|earthly (similar term)
+earthbound|2
+(adj)|earthly (similar term)
+(adj)|pedestrian|prosaic|prosy|uninteresting (similar term)
+earthen|1
+(adj)|material|stuff (related term)
+earthenware|1
+(noun)|ceramic ware (generic term)
+earthenware jar|1
+(noun)|crock|jar (generic term)
+earthing|1
+(noun)|grounding|fastening (generic term)|attachment (generic term)
+earthlike|2
+(adj)|chromatic (similar term)
+(adj)|earthly (similar term)
+earthling|1
+(noun)|tellurian|earthman|worldling|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+earthly|1
+(adj)|earthborn (similar term)|earthbound (similar term)|earthlike (similar term)|mundane (similar term)|terrene (similar term)|sublunar (similar term)|sublunary (similar term)|terrestrial (similar term)|temporal (similar term)|mortal (related term)|profane (related term)|worldly (related term)|heavenly (antonym)
+earthly concern|1
+(noun)|worldly concern|world|earth|concern (generic term)
+earthman|1
+(noun)|tellurian|earthling|worldling|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+earthnut|4
+(noun)|truffle|earth-ball|fungus (generic term)
+(noun)|Conopodium denudatum|herb (generic term)|herbaceous plant (generic term)
+(noun)|peanut|goober|goober pea|groundnut|monkey nut|edible nut (generic term)
+(noun)|truffle|vegetable (generic term)|veggie (generic term)
+earthnut pea|1
+(noun)|heath pea|earth-nut pea|tuberous vetch|Lathyrus tuberosus|vine (generic term)
+earthquake|2
+(noun)|quake|temblor|seism|geological phenomenon (generic term)
+(noun)|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+earthshaking|2
+(adj)|loud (similar term)
+(adj)|world-shaking|world-shattering|significant (similar term)|important (similar term)
+earthstar|1
+(noun)|fungus (generic term)
+earthtongue|1
+(noun)|earth-tongue|fungus (generic term)
+earthwork|1
+(noun)|rampart (generic term)|bulwark (generic term)|wall (generic term)
+earthworm|1
+(noun)|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+earthy|5
+(adj)|coarse|crude|gross|vulgar|indecent (similar term)
+(adj)|natural (similar term)
+(adj)|uninhibited (similar term)
+(adj)|material|stuff (related term)
+(adj)|down-to-earth|realistic (similar term)
+earwax|1
+(noun)|cerumen|wax (generic term)
+earwig|1
+(noun)|insect (generic term)
+eas|1
+(noun)|Emergency Alert System|EAS|alert (generic term)|alerting (generic term)
+ease|9
+(noun)|easiness|simplicity|simpleness|quality (generic term)|difficulty (antonym)
+(noun)|comfort|affluence (generic term)|richness (generic term)
+(noun)|relief|comfort (generic term)|comfortableness (generic term)
+(noun)|informality|naturalness (generic term)
+(noun)|rest|repose|relaxation|inactivity (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|ease up (related term)
+(verb)|comfort|relieve (generic term)|alleviate (generic term)|palliate (generic term)|assuage (generic term)
+(verb)|facilitate|alleviate|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|still|allay|relieve|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)
+ease off|2
+(verb)|ease up|slacken off|flag|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|ease up|let up|change (generic term)|alter (generic term)|modify (generic term)
+ease up|3
+(verb)|move over|give way|give|yield|move (generic term)
+(verb)|ease off|slacken off|flag|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|ease off|let up|change (generic term)|alter (generic term)|modify (generic term)
+eased|1
+(adj)|alleviated|relieved|mitigated (similar term)
+easel|1
+(noun)|tripod (generic term)
+easement|2
+(noun)|prerogative (generic term)|privilege (generic term)|perquisite (generic term)|exclusive right (generic term)
+(noun)|easing|alleviation|relief|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+easily|2
+(adv)|easy
+(adv)|well
+easiness|3
+(noun)|relaxation|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+(noun)|ease|simplicity|simpleness|quality (generic term)|difficulty (antonym)
+(noun)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+easing|2
+(noun)|moderation|relief|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|easement|alleviation|relief|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+east|4
+(adj)|eastbound (similar term)|eastward (similar term)|easterly (similar term)|eastern (similar term)|easterly (similar term)|eastern (similar term)|eastern (similar term)|easternmost (similar term)|eastmost (similar term)|eastside (similar term)|west (antonym)
+(noun)|due east|eastward|E|cardinal compass point (generic term)
+(noun)|East|Orient|Asia (generic term)
+(noun)|East|eastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+east-central|1
+(adj)|eastern (similar term)
+east-sider|1
+(noun)|East-sider|New Yorker (generic term)
+east-west direction|1
+(noun)|direction (generic term)|way (generic term)
+east africa|1
+(noun)|East Africa|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+east african|1
+(adj)|East African|geographical area|geographic area|geographical region|geographic region (related term)
+east african cedar|1
+(noun)|east African cedar|Juniperus procera|pencil cedar (generic term)|pencil cedar tree (generic term)
+east anglia|1
+(noun)|East Anglia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+east by north|1
+(noun)|EbN|compass point (generic term)|point (generic term)
+east by south|1
+(noun)|EbS|compass point (generic term)|point (generic term)
+east chadic|1
+(noun)|East Chadic|Chad (generic term)|Chadic (generic term)|Chadic language (generic term)
+east china sea|1
+(noun)|East China Sea|sea (generic term)
+east coast|1
+(noun)|East Coast|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+east german|2
+(adj)|East German|European country|European nation (related term)
+(noun)|East German|German (generic term)
+east germanic|1
+(noun)|East Germanic|East Germanic language|Germanic (generic term)|Germanic language (generic term)
+east germanic language|1
+(noun)|East Germanic|East Germanic language|Germanic (generic term)|Germanic language (generic term)
+east germany|1
+(noun)|East Germany|German Democratic Republic|European country (generic term)|European nation (generic term)
+east india|1
+(noun)|Malay Archipelago|East Indies|East India|archipelago (generic term)
+east india company|1
+(noun)|East India Company|company (generic term)
+east india kino|1
+(noun)|East India kino|Malabar kino|kino gum|resin (generic term)|rosin (generic term)
+east india rosewood|1
+(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood (generic term)|rosewood tree (generic term)
+east indian|2
+(adj)|East Indian|archipelago (related term)
+(noun)|East Indian|Asian (generic term)|Asiatic (generic term)
+east indian fig tree|1
+(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+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 (generic term)|bush (generic term)
+east indian rosewood|1
+(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood (generic term)|rosewood tree (generic term)
+east indies|1
+(noun)|Malay Archipelago|East Indies|East India|archipelago (generic term)
+east malaysia|1
+(noun)|East Malaysia|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+east midland|1
+(noun)|East Midland|Middle English (generic term)
+east northeast|1
+(noun)|ENE|compass point (generic term)|point (generic term)
+east pakistan|1
+(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country (generic term)|Asian nation (generic term)
+east pakistani|1
+(adj)|Bangladeshi|East Pakistani|Asian country|Asian nation (related term)
+east river|1
+(noun)|East River|strait (generic term)|sound (generic term)
+east saint louis|1
+(noun)|East Saint Louis|town (generic term)
+east sea|1
+(noun)|Sea of Japan|East Sea|sea (generic term)
+east side|1
+(noun)|side (generic term)
+east southeast|1
+(noun)|ESE|compass point (generic term)|point (generic term)
+east sussex|1
+(noun)|East Sussex|county (generic term)
+east timor|1
+(noun)|East Timor|country (generic term)|state (generic term)|land (generic term)
+east tocharian|1
+(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian (generic term)
+east turkestan islamic movement|1
+(noun)|East Turkistan Islamic Movement|East Turkestan Islamic Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+east turkistan islamic movement|1
+(noun)|East Turkistan Islamic Movement|East Turkestan Islamic Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+east wind|1
+(noun)|easter|easterly|wind (generic term)|air current (generic term)|current of air (generic term)
+eastbound|1
+(adj)|eastward|east (similar term)
+easter|2
+(noun)|Easter|movable feast (generic term)|moveable feast (generic term)
+(noun)|east wind|easterly|wind (generic term)|air current (generic term)|current of air (generic term)
+easter bunny|1
+(noun)|Easter bunny|fictional animal (generic term)
+easter cactus|1
+(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus (generic term)
+easter card|1
+(noun)|Easter card|greeting card (generic term)
+easter daisy|1
+(noun)|Easter daisy|stemless daisy|Townsendia Exscapa|flower (generic term)
+easter day|1
+(noun)|Easter Sunday|Easter Day|Christian holy day (generic term)
+easter egg|2
+(noun)|Easter egg|candy (generic term)|confect (generic term)
+(noun)|Easter egg|hard-boiled egg (generic term)|hard-cooked egg (generic term)
+easter lily|1
+(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily (generic term)
+easter lily vine|1
+(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine (generic term)
+easter sunday|1
+(noun)|Easter Sunday|Easter Day|Christian holy day (generic term)
+easterly|3
+(adj)|eastern|east (similar term)
+(noun)|east wind|easter|wind (generic term)|air current (generic term)|current of air (generic term)
+(adv)|westerly (antonym)
+eastern|4
+(adj)|east (similar term)
+(adj)|east-central (similar term)|middle Atlantic (similar term)|mid-Atlantic (similar term)|northeastern (similar term)|southeastern (similar term)|western (antonym)
+(adj)|Asian (similar term)|oriental (similar term)|orient (similar term)|western (antonym)
+(adj)|easterly|east (similar term)
+eastern catholicism|1
+(noun)|Eastern Catholicism|Catholicism (generic term)|Catholicity (generic term)
+eastern chimpanzee|1
+(noun)|Pan troglodytes schweinfurthii|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+eastern chinquapin|1
+(noun)|Allegheny chinkapin|chinquapin|dwarf chestnut|Castanea pumila|chestnut (generic term)|chestnut tree (generic term)
+eastern chipmunk|1
+(noun)|hackee|striped squirrel|ground squirrel|Tamias striatus|squirrel (generic term)
+eastern church|2
+(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church (generic term)
+(noun)|Eastern Church|Byzantine Church|Catholic Church (generic term)
+eastern coral snake|1
+(noun)|Micrurus fulvius|coral snake (generic term)|harlequin-snake (generic term)|New World coral snake (generic term)
+eastern cottontail|1
+(noun)|Sylvilagus floridanus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+eastern cottonwood|1
+(noun)|Eastern cottonwood|necklace poplar|Populus deltoides|cottonwood (generic term)
+eastern cricket frog|1
+(noun)|Acris gryllus|cricket frog (generic term)
+eastern dasyure|1
+(noun)|Dasyurus quoll|dasyure (generic term)
+eastern desert|1
+(noun)|Arabian Desert|Eastern Desert|desert (generic term)
+eastern fence lizard|1
+(noun)|pine lizard|Sceloporus undulatus|fence lizard (generic term)
+eastern flowering dogwood|1
+(noun)|common white dogwood|Cornus florida|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+eastern fox squirrel|1
+(noun)|fox squirrel|Sciurus niger|tree squirrel (generic term)
+eastern gray squirrel|1
+(noun)|eastern grey squirrel|cat squirrel|Sciurus carolinensis|tree squirrel (generic term)
+eastern grey squirrel|1
+(noun)|eastern gray squirrel|cat squirrel|Sciurus carolinensis|tree squirrel (generic term)
+eastern ground snake|1
+(noun)|Potamophis striatula|Haldea striatula|colubrid snake (generic term)|colubrid (generic term)
+eastern hemisphere|1
+(noun)|orient|hemisphere (generic term)
+eastern hemlock|1
+(noun)|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock (generic term)|hemlock tree (generic term)
+eastern highlands|1
+(noun)|Great Dividing Range|Eastern Highlands|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+eastern hop hornbeam|1
+(noun)|Eastern hop hornbeam|ironwood|ironwood tree|Ostrya virginiana|hop hornbeam (generic term)
+eastern indigo snake|1
+(noun)|Drymarchon corais couperi|indigo snake (generic term)|gopher snake (generic term)|Drymarchon corais (generic term)
+eastern kingbird|1
+(noun)|kingbird (generic term)|Tyrannus tyrannus (generic term)
+eastern lowland gorilla|1
+(noun)|Gorilla gorilla grauri|gorilla (generic term)|Gorilla gorilla (generic term)
+eastern malayo-polynesian|1
+(noun)|Oceanic|Eastern Malayo-Polynesian|Malayo-Polynesian (generic term)|Polynesian (generic term)
+eastern meadowlark|1
+(noun)|Sturnella magna|meadowlark (generic term)|lark (generic term)
+eastern narrow-mouthed toad|1
+(noun)|Gastrophryne carolinensis|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+eastern orthodox|2
+(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church (related term)
+(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church (generic term)
+eastern orthodox church|1
+(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church (generic term)
+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 (generic term)|pasque flower (generic term)
+eastern pipistrel|1
+(noun)|Pipistrellus subflavus|vespertilian bat (generic term)|vespertilionid (generic term)
+eastern poison oak|1
+(noun)|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant (generic term)
+eastern red-backed salamander|1
+(noun)|Plethodon cinereus|salamander (generic term)
+eastern red cedar|1
+(noun)|red cedar|red juniper|Juniperus virginiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+eastern roman empire|1
+(noun)|Byzantine Empire|Byzantium|Eastern Roman Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+eastern samoa|1
+(noun)|American Samoa|Eastern Samoa|AS|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+eastern silvery aster|1
+(noun)|Eastern silvery aster|aster (generic term)
+eastern sioux|1
+(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux (generic term)|Siouan (generic term)
+eastern spruce|1
+(noun)|red spruce|yellow spruce|Picea rubens|spruce (generic term)
+eastern standard time|1
+(noun)|Eastern Time|Eastern Standard Time|EST|civil time (generic term)|standard time (generic term)|local time (generic term)
+eastern time|1
+(noun)|Eastern Time|Eastern Standard Time|EST|civil time (generic term)|standard time (generic term)|local time (generic term)
+eastern turki|1
+(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+eastern united states|1
+(noun)|East|eastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+eastern white pine|1
+(noun)|American white pine|weymouth pine|Pinus strobus|white pine (generic term)
+eastern woodrat|1
+(noun)|Neotoma floridana|wood rat (generic term)|wood-rat (generic term)
+easterner|1
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+easternmost|1
+(adj)|eastmost|east (similar term)
+eastertide|1
+(noun)|Eastertide|season (generic term)
+eastman|1
+(noun)|Eastman|George Eastman|industrialist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+eastmost|1
+(adj)|easternmost|east (similar term)
+eastside|1
+(adj)|east (similar term)
+eastward|3
+(adj)|eastbound|east (similar term)
+(noun)|east|due east|E|cardinal compass point (generic term)
+(adv)|eastwards
+eastwards|1
+(adv)|eastward
+easy|16
+(adj)|casual (similar term)|effortless (similar term)|cushy (similar term)|soft (similar term)|easygoing (similar term)|elementary (similar term)|simple (similar term)|uncomplicated (similar term)|unproblematic (similar term)|hands-down (similar term)|painless (similar term)|simplified (similar term)|smooth (similar term)|user-friendly (similar term)|effortless (related term)|simple (related term)|soft (related term)|undemanding (related term)|difficult (antonym)
+(adj)|easygoing|leisurely|unhurried (similar term)
+(adj)|comfortable (related term)|relaxed (related term)|uneasy (antonym)
+(adj)|pleasing (similar term)
+(adj)|gentle|soft|light (similar term)
+(adj)|impressionable (similar term)|impressible (similar term)
+(adj)|comfortable|prosperous|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich (similar term)
+(adj)|gentle|gradual (similar term)
+(adj)|lenient|undemanding (similar term)
+(adj)|comfortable (similar term)|comfy (similar term)
+(adj)|light|loose|promiscuous|sluttish|wanton|unchaste (similar term)
+(adj)|available (similar term)
+(adj)|abundant (similar term)
+(adv)|easily
+(adv)|slowly|slow|tardily|quickly (antonym)
+(adv)|soft
+easy chair|1
+(noun)|lounge chair|overstuffed chair|armchair (generic term)
+easy going|1
+(noun)|plain sailing|clear sailing|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+easy lay|1
+(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|gamma hydroxybutyrate (generic term)|GHB (generic term)
+easy mark|1
+(noun)|sitting duck|victim (generic term)|dupe (generic term)
+easy money|2
+(noun)|gravy train|income (generic term)
+(noun)|financial condition (generic term)|economic condition (generic term)|tight money (antonym)
+easy street|1
+(noun)|security (generic term)|protection (generic term)
+easygoing|4
+(adj)|easy|leisurely|unhurried (similar term)
+(adj)|cushy|soft|easy (similar term)
+(adj)|undemanding (similar term)
+(adj)|calm|placid|contented (similar term)|content (similar term)
+easygoingness|1
+(noun)|good nature (generic term)
+eat|6
+(verb)|eat (generic term)|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)|eat in (related term)|eat out (related term)|eat up (related term)
+(verb)|feed|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|consume|eat up|use up|deplete|exhaust|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|eat on|worry (generic term)|vex (generic term)
+(verb)|corrode|rust|damage (generic term)
+eat at|1
+(verb)|erode|gnaw|gnaw at|wear away|decay (generic term)|crumble (generic term)|delapidate (generic term)
+eat away|2
+(verb)|erode|fret|damage (generic term)
+(verb)|fret|corrode (generic term)|rust (generic term)
+eat in|1
+(verb)|dine in|eat (generic term)|eat out (antonym)
+eat into|1
+(verb)|fret|rankle|grate|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+eat on|1
+(verb)|eat|worry (generic term)|vex (generic term)
+eat out|1
+(verb)|dine out|eat (generic term)|eat in (antonym)
+eat up|3
+(verb)|finish|polish off|eat (generic term)
+(verb)|consume|use up|eat|deplete|exhaust|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|immerse|swallow|swallow up|bury|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+eatable|2
+(adj)|edible|comestible|killable (similar term)|nonpoisonous (similar term)|non-poisonous (similar term)|nontoxic (similar term)|pareve (similar term)|parve (similar term)|digestible (related term)|palatable (related term)|toothsome (related term)|tender (related term)|inedible (antonym)
+(noun)|comestible|edible|pabulum|victual|victuals|food (generic term)|nutrient (generic term)
+eatage|1
+(noun)|forage|pasture|pasturage|grass|feed (generic term)|provender (generic term)
+eater|2
+(noun)|feeder|consumer (generic term)
+(noun)|produce (generic term)|green goods (generic term)|green groceries (generic term)|garden truck (generic term)
+eating|1
+(noun)|feeding|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+eating apple|1
+(noun)|dessert apple|apple (generic term)|cooking apple (antonym)
+eating away|1
+(noun)|erosion|eroding|wearing|wearing away|geological process (generic term)|geologic process (generic term)
+eating disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+eating house|1
+(noun)|restaurant|eating place|building (generic term)|edifice (generic term)
+eating place|1
+(noun)|restaurant|eating house|building (generic term)|edifice (generic term)
+eating utensil|1
+(noun)|cutlery|tableware (generic term)
+eaton-lambert syndrome|1
+(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|carcinomatous myopathy|disease of the neuromuscular junction (generic term)
+eats|1
+(noun)|chow|chuck|grub|fare (generic term)
+eau claire|1
+(noun)|Eau Claire|town (generic term)
+eau de cologne|1
+(noun)|cologne|cologne water|perfume (generic term)|essence (generic term)
+eau de cologne mint|1
+(noun)|bergamot mint|lemon mint|Mentha citrata|mint (generic term)
+eau de javelle|1
+(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite (generic term)
+eau de toilette|1
+(noun)|toilet water|perfume (generic term)|essence (generic term)
+eau de vie|1
+(noun)|brandy (generic term)
+eaves|1
+(noun)|overhang (generic term)
+eavesdrop|1
+(verb)|listen in|listen (generic term)
+eavesdropper|1
+(noun)|snoop (generic term)|snooper (generic term)|hearer (generic term)|listener (generic term)|auditor (generic term)|attender (generic term)
+ebb|5
+(noun)|ebbing|wane|decline (generic term)|diminution (generic term)
+(noun)|reflux|flow (generic term)|flowing (generic term)
+(verb)|ebb away|ebb down|ebb out|ebb off|recede (generic term)|fall back (generic term)|retire (generic term)|tide (antonym)
+(verb)|besiege (generic term)|beleaguer (generic term)|surround (generic term)|hem in (generic term)|circumvent (generic term)
+(verb)|recede (generic term)
+ebb away|1
+(verb)|ebb|ebb down|ebb out|ebb off|recede (generic term)|fall back (generic term)|retire (generic term)|tide (antonym)
+ebb down|1
+(verb)|ebb|ebb away|ebb out|ebb off|recede (generic term)|fall back (generic term)|retire (generic term)|tide (antonym)
+ebb off|1
+(verb)|ebb|ebb away|ebb down|ebb out|recede (generic term)|fall back (generic term)|retire (generic term)|tide (antonym)
+ebb out|1
+(verb)|ebb|ebb away|ebb down|ebb off|recede (generic term)|fall back (generic term)|retire (generic term)|tide (antonym)
+ebbing|1
+(noun)|ebb|wane|decline (generic term)|diminution (generic term)
+ebbtide|1
+(noun)|tide (generic term)|flood tide (antonym)
+ebenaceae|1
+(noun)|Ebenaceae|family Ebenaceae|ebony family|dicot family (generic term)|magnoliopsid family (generic term)
+ebenales|1
+(noun)|Ebenales|order Ebenales|plant order (generic term)
+ebionite|2
+(adj)|Ebionite|religious person (related term)
+(noun)|Nazarene|Ebionite|religious person (generic term)
+ebitda|1
+(noun)|EBITDA|Earnings Before Interest Taxes Depreciation and Amortization|income (generic term)
+eblis|1
+(noun)|genie (generic term)|jinni (generic term)|jinnee (generic term)|djinni (generic term)|djinny (generic term)
+ebn|1
+(noun)|east by north|EbN|compass point (generic term)|point (generic term)
+ebola|1
+(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+ebola fever|1
+(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+ebola hemorrhagic fever|1
+(noun)|Ebola hemorrhagic fever|Ebola fever|Ebola|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+ebola virus|1
+(noun)|Ebola virus|filovirus (generic term)
+ebon|1
+(adj)|ebony|achromatic (similar term)
+ebonics|1
+(noun)|Black English|Black English Vernacular|Ebonics|American English (generic term)|American language (generic term)|American (generic term)
+ebonise|1
+(verb)|ebonize|stain (generic term)
+ebonite|1
+(noun)|hard rubber|vulcanite|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+ebonize|1
+(verb)|ebonise|stain (generic term)
+ebony|4
+(adj)|ebon|achromatic (similar term)
+(noun)|coal black|jet black|pitch black|sable|soot black|black (generic term)|blackness (generic term)|inkiness (generic term)
+(noun)|wood (generic term)
+(noun)|ebony tree|Diospyros ebenum|tree (generic term)
+ebony family|1
+(noun)|Ebenaceae|family Ebenaceae|dicot family (generic term)|magnoliopsid family (generic term)
+ebony spleenwort|1
+(noun)|Scott's Spleenwort|Asplenium platyneuron|spleenwort (generic term)
+ebony tree|1
+(noun)|ebony|Diospyros ebenum|tree (generic term)
+ebracteate|1
+(adj)|husk (related term)|bracteate (antonym)
+ebro|1
+(noun)|Ebro|Ebro River|river (generic term)
+ebro river|1
+(noun)|Ebro|Ebro River|river (generic term)
+ebs|1
+(noun)|east by south|EbS|compass point (generic term)|point (generic term)
+ebullience|1
+(noun)|exuberance|enthusiasm|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+ebullient|1
+(adj)|exuberant|high-spirited|spirited (similar term)
+ebulliently|1
+(adv)|exuberantly|expansively
+ebullition|1
+(noun)|effusion|gush|outburst|blowup|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+eburnation|1
+(noun)|organic process (generic term)|biological process (generic term)
+eburophyton|1
+(noun)|Eburophyton|genus Eburophyton|monocot genus (generic term)|liliopsid genus (generic term)
+eburophyton austinae|1
+(noun)|phantom orchid|snow orchid|Eburophyton austinae|orchid (generic term)|orchidaceous plant (generic term)
+ebv|1
+(noun)|Epstein-Barr virus|EBV|herpes (generic term)|herpes virus (generic term)
+ec|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+ecarte|1
+(noun)|card game (generic term)|cards (generic term)
+ecballium|1
+(noun)|Ecballium|genus Ecballium|dicot genus (generic term)|magnoliopsid genus (generic term)
+ecballium elaterium|1
+(noun)|squirting cucumber|exploding cucumber|touch-me-not|Ecballium elaterium|gourd (generic term)|gourd vine (generic term)
+ecc|1
+(noun)|error correction code|ECC|code (generic term)|computer code (generic term)
+ecce homo|1
+(noun)|representation (generic term)
+eccentric|4
+(adj)|bizarre|freakish|freaky|flaky|flakey|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+(adj)|nonconcentric|acentric (similar term)|off-center (similar term)|off-centered (similar term)|concentric (antonym)
+(noun)|eccentric person|flake|oddball|geek|anomaly (generic term)|unusual person (generic term)
+(noun)|character|type|case|adult (generic term)|grownup (generic term)
+eccentric person|1
+(noun)|eccentric|flake|oddball|geek|anomaly (generic term)|unusual person (generic term)
+eccentricity|3
+(noun)|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|ratio (generic term)
+(noun)|circularity (generic term)|disk shape (generic term)|concentricity (antonym)
+ecchymosis|2
+(noun)|bruise (generic term)|contusion (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+eccles|1
+(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist (generic term)
+eccles cake|1
+(noun)|Eccles cake|cake (generic term)
+ecclesiastes|1
+(noun)|Ecclesiastes|Book of Ecclesiastes|book (generic term)
+ecclesiastic|2
+(adj)|ecclesiastical|religion|faith|organized religion (related term)
+(noun)|cleric|churchman|divine|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+ecclesiastical|1
+(adj)|ecclesiastic|religion|faith|organized religion (related term)
+ecclesiastical attire|1
+(noun)|ecclesiastical robe|attire (generic term)|garb (generic term)|dress (generic term)
+ecclesiastical benefice|1
+(noun)|benefice|spiritualty (generic term)|spirituality (generic term)|church property (generic term)
+ecclesiastical calendar|1
+(noun)|church calendar|Gregorian calendar (generic term)|New Style calendar (generic term)
+ecclesiastical law|1
+(noun)|canon law|law (generic term)|jurisprudence (generic term)
+ecclesiastical mode|1
+(noun)|Gregorian mode|church mode|medieval mode|mode (generic term)|musical mode (generic term)
+ecclesiastical province|1
+(noun)|province (generic term)|responsibility (generic term)
+ecclesiastical robe|1
+(noun)|ecclesiastical attire|attire (generic term)|garb (generic term)|dress (generic term)
+ecclesiasticism|2
+(noun)|attachment (generic term)|adherence (generic term)|adhesion (generic term)
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)
+ecclesiasticus|1
+(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book (generic term)
+ecclesiology|1
+(noun)|theology (generic term)|divinity (generic term)
+eccm|1
+(noun)|electronic counter-countermeasures|ECCM|electronic warfare (generic term)|EW (generic term)
+eccrine|1
+(adj)|apocrine (antonym)
+eccrine gland|1
+(noun)|sweat gland (generic term)|sudoriferous gland (generic term)
+eccyesis|1
+(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|metacyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+ecdemic|1
+(adj)|endemic (antonym)|epidemic (antonym)
+ecdysiast|1
+(noun)|stripper|striptease artist|striptease|stripteaser|exotic dancer|peeler|performer (generic term)|performing artist (generic term)
+ecdysis|1
+(noun)|molt|molting|moult|moulting|shedding (generic term)|sloughing (generic term)
+ecesis|1
+(noun)|establishment|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ecf|1
+(noun)|extracellular fluid|ECF|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+ecg|1
+(noun)|electrocardiogram|cardiogram|EKG|ECG|graph (generic term)|graphical record (generic term)
+echelon|2
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|diffraction grating (generic term)|grating (generic term)
+echeneididae|1
+(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family (generic term)
+echeneis|1
+(noun)|Echeneis|genus Echeneis|fish genus (generic term)
+echeneis naucrates|1
+(noun)|sharksucker|Echeneis naucrates|remora (generic term)|suckerfish (generic term)|sucking fish (generic term)
+echidna|1
+(noun)|spiny anteater|anteater|monotreme (generic term)|egg-laying mammal (generic term)
+echidnophaga|1
+(noun)|Echidnophaga|genus Echidnophaga|arthropod genus (generic term)
+echidnophaga gallinacea|1
+(noun)|sticktight|sticktight flea|Echidnophaga gallinacea|flea (generic term)
+echinacea|1
+(noun)|Echinacea|genus Echinacea|asterid dicot genus (generic term)
+echinocactus|1
+(noun)|barrel cactus|cactus (generic term)
+echinocactus grusonii|1
+(noun)|golden barrel cactus|Echinocactus grusonii|echinocactus (generic term)|barrel cactus (generic term)
+echinocereus|1
+(noun)|Echinocereus|genus Echinocereus|caryophylloid dicot genus (generic term)
+echinochloa|1
+(noun)|Echinochloa|genus Echinochloa|monocot genus (generic term)|liliopsid genus (generic term)
+echinochloa crusgalli|1
+(noun)|barnyard grass|barn grass|barn millet|Echinochloa crusgalli|millet (generic term)
+echinochloa frumentacea|1
+(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet (generic term)
+echinococcosis|1
+(noun)|hydatid disease|hydatidosis|infestation (generic term)
+echinococcus|1
+(noun)|tapeworm (generic term)|cestode (generic term)
+echinoderm|1
+(noun)|invertebrate (generic term)
+echinoderm family|1
+(noun)|family (generic term)
+echinoderm genus|1
+(noun)|genus (generic term)
+echinodermata|1
+(noun)|Echinodermata|phylum Echinodermata|phylum (generic term)
+echinoidea|1
+(noun)|Echinoidea|class Echinoidea|class (generic term)
+echinops|1
+(noun)|Echinops|genus Echinops|asterid dicot genus (generic term)
+echinus|1
+(noun)|ovolo (generic term)|thumb (generic term)|quarter round (generic term)
+echinus esculentus|1
+(noun)|edible sea urchin|Echinus esculentus|sea urchin (generic term)
+echium|1
+(noun)|Echium|genus Echium|plant genus (generic term)
+echium vulgare|1
+(noun)|blueweed|blue devil|blue thistle|viper's bugloss|Echium vulgare|herb (generic term)|herbaceous plant (generic term)
+echo|6
+(noun)|reverberation|sound reflection|replication|reflection (generic term)|reflexion (generic term)|reflectivity (generic term)
+(noun)|Echo|nymph (generic term)
+(noun)|reply (generic term)|response (generic term)
+(verb)|repeat|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|resound|ring|reverberate|sound (generic term)|go (generic term)
+(verb)|recall|resemble (generic term)
+echo sounder|1
+(noun)|sonar|asdic|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|navigational instrument (generic term)
+echo sounding|1
+(noun)|echolocation|localization (generic term)|localisation (generic term)|location (generic term)|locating (generic term)|fix (generic term)
+echocardiogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+echocardiograph|1
+(noun)|sonograph (generic term)
+echocardiography|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+echoencephalogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+echoencephalograph|1
+(noun)|sonograph (generic term)
+echoencephalography|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+echogram|1
+(noun)|sonogram|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+echography|1
+(noun)|sonography|ultrasonography|ultrasound|imaging (generic term)|tomography (generic term)|prenatal diagnosis (generic term)
+echoic|2
+(adj)|imitative|onomatopoeic|onomatopoeical|onomatopoetic|nonechoic (antonym)
+(adj)|echolike|reflected (similar term)
+echoing|1
+(adj)|reechoing|reverberant (similar term)|ringing (similar term)
+echolalia|2
+(noun)|echo (generic term)
+(noun)|repetition (generic term)|repeating (generic term)
+echoless|1
+(adj)|nonreflective (similar term)|nonreflecting (similar term)
+echolike|1
+(adj)|echoic|reflected (similar term)
+echolocation|1
+(noun)|echo sounding|localization (generic term)|localisation (generic term)|location (generic term)|locating (generic term)|fix (generic term)
+echovirus|1
+(noun)|enterovirus (generic term)
+echt|1
+(adj)|genuine|authentic (similar term)|bona fide (similar term)|unquestionable (similar term)|veritable (similar term)|attested (similar term)|authenticated (similar term)|documented (similar term)|good (similar term)|honest-to-god (similar term)|honest-to-goodness (similar term)|old (similar term)|sure-enough (similar term)|honest (related term)|honorable (related term)|real (related term)|existent (related term)|sincere (related term)|true (related term)|counterfeit (antonym)
+eck|1
+(noun)|Eck|Johann Eck|Johann Maier Eck|Johann Maier|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+eckhart|1
+(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|mystic (generic term)|religious mystic (generic term)
+eclair|1
+(noun)|cream puff (generic term)|chou (generic term)
+eclampsia|1
+(noun)|toxemia of pregnancy (generic term)|toxaemia of pregnancy (generic term)|toxemia (generic term)|toxaemia (generic term)
+eclat|3
+(noun)|acclaim|acclamation|plaudits|plaudit|approval (generic term)|commendation (generic term)
+(noun)|pomp|elegance (generic term)
+(noun)|magnificence (generic term)|brilliance (generic term)|splendor (generic term)|splendour (generic term)|grandeur (generic term)|grandness (generic term)
+eclectic|2
+(adj)|discriminating (similar term)
+(noun)|eclecticist|philosopher (generic term)
+eclectic method|1
+(noun)|eclecticism|decision making (generic term)|deciding (generic term)
+eclecticism|1
+(noun)|eclectic method|decision making (generic term)|deciding (generic term)
+eclecticist|1
+(noun)|eclectic|philosopher (generic term)
+eclipse|4
+(noun)|occultation|interruption (generic term)|break (generic term)
+(verb)|overshadow|excel (generic term)|stand out (generic term)|surpass (generic term)
+(verb)|occult|overshadow (generic term)
+(verb)|obscure (generic term)|bedim (generic term)|overcloud (generic term)
+eclipsis|1
+(noun)|ellipsis|omission (generic term)|deletion (generic term)
+ecliptic|1
+(noun)|great circle (generic term)
+eclogue|1
+(noun)|bucolic|idyll|pastoral (generic term)
+ecm|1
+(noun)|electronic countermeasures|ECM|electronic warfare (generic term)|EW (generic term)
+eco-warfare|1
+(noun)|ecoterrorism|ecological terrorism|ecological warfare|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+ecobabble|1
+(noun)|jargon (generic term)
+ecologic|2
+(adj)|ecological|environment (related term)
+(adj)|ecological|bionomical|bionomic|biology|biological science (related term)
+ecological|2
+(adj)|ecologic|environment (related term)
+(adj)|ecologic|bionomical|bionomic|biology|biological science (related term)
+ecological niche|1
+(noun)|niche|condition (generic term)|status (generic term)
+ecological succession|1
+(noun)|succession|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ecological terrorism|1
+(noun)|ecoterrorism|eco-warfare|ecological warfare|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+ecological warfare|1
+(noun)|ecoterrorism|ecological terrorism|eco-warfare|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+ecologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+ecology|2
+(noun)|environment (generic term)
+(noun)|bionomics|environmental science|biology (generic term)|biological science (generic term)
+econometric|1
+(adj)|economics|economic science|political economy (related term)
+econometrician|1
+(noun)|econometrist|economist (generic term)|economic expert (generic term)
+econometrics|1
+(noun)|economics (generic term)|economic science (generic term)|political economy (generic term)
+econometrist|1
+(noun)|econometrician|economist (generic term)|economic expert (generic term)
+economic|5
+(adj)|economical|system|scheme (related term)
+(adj)|social science (related term)
+(adj)|worldly (similar term)
+(adj)|profitable (similar term)
+(adj)|economical|efficient (similar term)
+economic aid|1
+(noun)|aid|gift (generic term)
+economic and social council|1
+(noun)|Economic and Social Council|ECOSOC|council (generic term)
+economic and social council commission|1
+(noun)|Economic and Social Council commission|ECOSOC commission|committee (generic term)|commission (generic term)
+economic commission for africa|1
+(noun)|Economic Commission for Africa|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+economic commission for asia and the far east|1
+(noun)|Economic Commission for Asia and the Far East|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+economic commission for europe|1
+(noun)|Economic Commission for Europe|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+economic commission for latin america|1
+(noun)|Economic Commission for Latin America|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+economic condition|1
+(noun)|financial condition|condition (generic term)|status (generic term)
+economic consumption|1
+(noun)|consumption|usance|use|use of goods and services|demand (generic term)
+economic crisis|1
+(noun)|depression|slump|financial condition (generic term)|economic condition (generic term)
+economic expert|1
+(noun)|economist|social scientist (generic term)
+economic geography|1
+(noun)|geography (generic term)|geographics (generic term)
+economic geology|1
+(noun)|geology (generic term)
+economic growth|1
+(noun)|economic process (generic term)
+economic mobilisation|1
+(noun)|economic mobilization|mobilization (generic term)|mobilisation (generic term)
+economic mobilization|1
+(noun)|economic mobilisation|mobilization (generic term)|mobilisation (generic term)
+economic policy|1
+(noun)|policy (generic term)
+economic process|1
+(noun)|process (generic term)|physical process (generic term)
+economic rent|1
+(noun)|rent|return (generic term)|issue (generic term)|take (generic term)|takings (generic term)|proceeds (generic term)|yield (generic term)|payoff (generic term)
+economic science|1
+(noun)|economics|political economy|social science (generic term)
+economic strangulation|1
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+economic system|1
+(noun)|economy|system (generic term)|scheme (generic term)
+economic theory|1
+(noun)|theory (generic term)
+economic value|1
+(noun)|value|measure (generic term)|quantity (generic term)|amount (generic term)
+economical|3
+(adj)|economic|efficient (similar term)
+(adj)|economic|system|scheme (related term)
+(adj)|frugal|scotch|sparing|stinting|thrifty (similar term)
+economics|1
+(noun)|economic science|political economy|social science (generic term)
+economics department|1
+(noun)|department of economics|academic department (generic term)
+economics profession|1
+(noun)|profession (generic term)|community (generic term)
+economise|2
+(verb)|save|economize|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|conserve|husband|economize|save (generic term)|preserve (generic term)|waste (antonym)
+economiser|1
+(noun)|economizer|saver (generic term)
+economist|1
+(noun)|economic expert|social scientist (generic term)
+economize|2
+(verb)|conserve|husband|economise|save (generic term)|preserve (generic term)|waste (antonym)
+(verb)|save|economise|spend (generic term)|expend (generic term)|drop (generic term)
+economizer|1
+(noun)|economiser|saver (generic term)
+economy|4
+(noun)|economic system|system (generic term)|scheme (generic term)
+(noun)|efficiency (generic term)
+(noun)|thriftiness|frugality (generic term)|frugalness (generic term)
+(noun)|saving|action (generic term)
+economy of scale|1
+(noun)|economy (generic term)|saving (generic term)
+ecosoc|1
+(noun)|Economic and Social Council|ECOSOC|council (generic term)
+ecosoc commission|1
+(noun)|Economic and Social Council commission|ECOSOC commission|committee (generic term)|commission (generic term)
+ecosystem|1
+(noun)|system (generic term)|scheme (generic term)
+ecoterrorism|1
+(noun)|ecological terrorism|eco-warfare|ecological warfare|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+ecotourism|1
+(noun)|tourism (generic term)|touristry (generic term)
+ecphonesis|1
+(noun)|exclamation|rhetorical device (generic term)
+ecrevisse|2
+(noun)|crayfish|crawfish|crawdad|shellfish (generic term)
+(noun)|Old World crayfish|crayfish (generic term)|crawfish (generic term)|crawdad (generic term)|crawdaddy (generic term)
+ecru|1
+(noun)|beige|light brown (generic term)
+ecstasy|3
+(noun)|rapture|transport|exaltation|raptus|emotional state (generic term)|spirit (generic term)
+(noun)|rapture|bliss (generic term)|blissfulness (generic term)|cloud nine (generic term)|seventh heaven (generic term)|walking on air (generic term)
+(noun)|Adam|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+ecstatic|1
+(adj)|enraptured|rapturous|rapt|rhapsodic|joyous (similar term)
+ecstatic state|1
+(noun)|religious trance|trance (generic term)
+ecstatically|1
+(adv)|rapturously|rhapsodically
+ect|1
+(noun)|electroconvulsive therapy|electroshock|electroshock therapy|ECT|shock therapy (generic term)|shock treatment (generic term)|electrotherapy (generic term)|galvanism (generic term)|electric healing (generic term)|electrical healing (generic term)
+ectasia|1
+(noun)|ectasis|dilatation (generic term)|distension (generic term)|distention (generic term)
+ectasis|1
+(noun)|ectasia|dilatation (generic term)|distension (generic term)|distention (generic term)
+ectoblast|1
+(noun)|ectoderm|exoderm|germ layer (generic term)
+ectoderm|1
+(noun)|exoderm|ectoblast|germ layer (generic term)
+ectodermal|1
+(adj)|ectodermic|germ layer (related term)
+ectodermic|1
+(adj)|ectodermal|germ layer (related term)
+ectomorph|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+ectomorphic|1
+(adj)|asthenic (similar term)|thin (related term)|lean (related term)|endomorphic (antonym)|mesomorphic (antonym)
+ectomorphy|1
+(noun)|asthenic type|body type (generic term)|somatotype (generic term)
+ectoparasite|1
+(noun)|ectozoan|ectozoon|epizoan|epizoon|parasite (generic term)
+ectopia|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+ectopic|1
+(adj)|position|posture|attitude (related term)
+ectopic gestation|1
+(noun)|ectopic pregnancy|extrauterine pregnancy|extrauterine gestation|eccyesis|metacyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+ectopic pregnancy|1
+(noun)|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+ectopistes|1
+(noun)|Ectopistes|genus Ectopistes|bird genus (generic term)
+ectopistes migratorius|1
+(noun)|passenger pigeon|Ectopistes migratorius|pigeon (generic term)
+ectoplasm|2
+(noun)|emanation (generic term)
+(noun)|cytoplasm (generic term)|cytol (generic term)
+ectoproct|1
+(noun)|invertebrate (generic term)
+ectoprocta|1
+(noun)|Ectoprocta|phylum Ectoprocta|phylum (generic term)
+ectotherm|1
+(noun)|poikilotherm|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+ectothermic|1
+(adj)|poikilothermic|poikilothermous|heterothermic|cold-blooded (similar term)
+ectozoan|2
+(adj)|epizoan|parasite (related term)
+(noun)|ectoparasite|ectozoon|epizoan|epizoon|parasite (generic term)
+ectozoon|1
+(noun)|ectoparasite|ectozoan|epizoan|epizoon|parasite (generic term)
+ectrodactyly|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+ecuador|1
+(noun)|Ecuador|Republic of Ecuador|South American country (generic term)|South American nation (generic term)
+ecuadoran|1
+(noun)|Ecuadorian|Ecuadoran|South American (generic term)
+ecuadoran monetary unit|1
+(noun)|Ecuadoran monetary unit|monetary unit (generic term)
+ecuadorian|2
+(adj)|Ecuadorian|South American country|South American nation (related term)
+(noun)|Ecuadorian|Ecuadoran|South American (generic term)
+ecumenic|1
+(adj)|oecumenic|ecumenical|oecumenical|nonsectarian (similar term)|unsectarian (similar term)
+ecumenical|2
+(adj)|ecumenic|oecumenic|oecumenical|nonsectarian (similar term)|unsectarian (similar term)
+(adj)|cosmopolitan|oecumenical|general|universal|worldwide|world-wide|comprehensive (similar term)
+ecumenical council|1
+(noun)|council (generic term)
+ecumenical movement|1
+(noun)|religious movement (generic term)
+ecumenicalism|1
+(noun)|ecumenism|ecumenicism|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+ecumenicism|1
+(noun)|ecumenism|ecumenicalism|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+ecumenism|2
+(noun)|oecumenism|movement (generic term)|social movement (generic term)|front (generic term)
+(noun)|ecumenicism|ecumenicalism|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+eczema|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+eczema herpeticum|1
+(noun)|eczema (generic term)
+eczema hypertrophicum|1
+(noun)|lichtenoid eczema|chronic eczema|eczema (generic term)
+eczema marginatum|1
+(noun)|tinea cruris|jock itch|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+eczema vaccinatum|1
+(noun)|Kaposi's varicelliform eruption|eczema (generic term)|eruption (generic term)
+ed|1
+(noun)|erectile dysfunction|male erecticle dysfunction|ED|impotence (generic term)|impotency (generic term)|dysfunction (generic term)|disfunction (generic term)
+ed sullivan|1
+(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+edacious|1
+(adj)|esurient|rapacious|ravening|ravenous|voracious|wolfish|gluttonous (similar term)
+edacity|2
+(noun)|esurience|ravenousness|voracity|voraciousness|hunger (generic term)|hungriness (generic term)
+(noun)|esurience|rapaciousness|rapacity|voracity|voraciousness|gluttony (generic term)
+edam|1
+(noun)|Edam|cheese (generic term)
+edaphosauridae|1
+(noun)|Edaphosauridae|family Edaphosauridae|reptile family (generic term)
+edaphosaurus|1
+(noun)|synapsid (generic term)|synapsid reptile (generic term)
+edd|1
+(noun)|Doctor of Education|EdD|DEd|doctor's degree (generic term)|doctorate (generic term)
+edda|2
+(noun)|taro|taro root|cocoyam|dasheen|root vegetable (generic term)
+(noun)|Edda|ballad (generic term)|lay (generic term)
+eddie rickenbacker|1
+(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot (generic term)
+eddington|1
+(noun)|Eddington|Sir Arthur Stanley Eddington|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+eddo|1
+(noun)|taro|cocoyam|dasheen|root (generic term)
+eddy|3
+(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religious person (generic term)
+(noun)|twist|current (generic term)|stream (generic term)
+(verb)|purl|whirlpool|swirl|whirl|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+eddy merckx|1
+(noun)|Merckx|Eddy Merckx|cyclist (generic term)|bicyclist (generic term)|bicycler (generic term)|wheeler (generic term)
+edecrin|1
+(noun)|ethacrynic acid|Edecrin|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+edelweiss|1
+(noun)|Leontopodium alpinum|wildflower (generic term)|wild flower (generic term)
+edema|1
+(noun)|oedema|hydrops|dropsy|swelling (generic term)|puffiness (generic term)|lump (generic term)
+edematous|1
+(adj)|dropsical|unhealthy (similar term)
+eden|2
+(noun)|Eden|paradise|Nirvana|heaven|promised land|Shangri-la|region (generic term)|part (generic term)
+(noun)|Eden|Garden of Eden|Heaven (generic term)
+edental|1
+(adj)|edentate|edentulate|toothless (similar term)
+edentata|1
+(noun)|Edentata|order Edentata|animal order (generic term)
+edentate|2
+(adj)|edental|edentulate|toothless (similar term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+edentulate|1
+(adj)|edental|edentate|toothless (similar term)
+edentulous|1
+(adj)|toothless (similar term)
+ederle|1
+(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer (generic term)
+edgar|1
+(noun)|Edgar|King of England (generic term)|King of Great Britain (generic term)
+edgar albert guest|1
+(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist (generic term)
+edgar allan poe|1
+(noun)|Poe|Edgar Allan Poe|writer (generic term)|author (generic term)|poet (generic term)
+edgar degas|1
+(noun)|Degas|Edgar Degas|Hilaire Germain Edgar Degas|painter (generic term)
+edgar douglas adrian|1
+(noun)|Adrian|Edgar Douglas Adrian|Baron Adrian|physiologist (generic term)
+edgar guest|1
+(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist (generic term)
+edgar lee masters|1
+(noun)|Masters|Edgar Lee Masters|poet (generic term)
+edgar rice burroughs|1
+(noun)|Burroughs|Edgar Rice Burroughs|writer (generic term)|author (generic term)
+edgar varese|1
+(noun)|Varese|Edgar Varese|composer (generic term)
+edgar wallace|1
+(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer (generic term)|author (generic term)
+edgard lawrence doctorow|1
+(noun)|Doctorow|E. L. Doctorow|Edgard Lawrence Doctorow|writer (generic term)|author (generic term)
+edge|10
+(noun)|border|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|side (generic term)
+(noun)|boundary|bound|line (generic term)
+(noun)|sharpness|urgency (generic term)
+(noun)|superiority (generic term)|favorable position (generic term)|favourable position (generic term)
+(noun)|margin|strip (generic term)|slip (generic term)
+(verb)|inch|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)|edge in (related term)
+(verb)|border|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|border|adjoin|abut|march|butt|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|sharpen (generic term)
+edge in|1
+(verb)|edge up|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+edge tool|1
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+edge up|1
+(verb)|edge in|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+edged|3
+(adj)|bordered (similar term)
+(adj)|cutting|stinging|unkind (similar term)
+(adj)|sharp (similar term)
+edgeless|1
+(adj)|dull (similar term)
+edger|2
+(noun)|needleworker (generic term)
+(noun)|garden tool (generic term)|lawn tool (generic term)
+edgeways|1
+(adv)|edgewise
+edgewise|1
+(adv)|edgeways
+edgeworth-kuiper belt|1
+(noun)|Kuiper belt|Edgeworth-Kuiper belt|region (generic term)|part (generic term)
+edginess|1
+(noun)|uneasiness|inquietude|disquietude|anxiety (generic term)
+edging|1
+(noun)|border (generic term)
+edgy|1
+(adj)|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense (similar term)
+edibility|1
+(noun)|edibleness|property (generic term)
+edible|2
+(adj)|comestible|eatable|killable (similar term)|nonpoisonous (similar term)|non-poisonous (similar term)|nontoxic (similar term)|pareve (similar term)|parve (similar term)|digestible (related term)|palatable (related term)|toothsome (related term)|tender (related term)|inedible (antonym)
+(noun)|comestible|eatable|pabulum|victual|victuals|food (generic term)|nutrient (generic term)
+edible-pod pea|1
+(noun)|edible-podded pea|Pisum sativum macrocarpon|pea (generic term)|pea plant (generic term)
+edible-podded pea|1
+(noun)|edible-pod pea|Pisum sativum macrocarpon|pea (generic term)|pea plant (generic term)
+edible asparagus|1
+(noun)|asparagus|Asparagus officinales|herb (generic term)|herbaceous plant (generic term)
+edible banana|1
+(noun)|Musa paradisiaca sapientum|banana (generic term)|banana tree (generic term)
+edible bean|1
+(noun)|bean|legume (generic term)
+edible cockle|1
+(noun)|Cardium edule|cockle (generic term)
+edible corn|1
+(noun)|corn|grain (generic term)|food grain (generic term)|cereal (generic term)
+edible fat|1
+(noun)|fat (generic term)
+edible fruit|1
+(noun)|produce (generic term)|green goods (generic term)|green groceries (generic term)|garden truck (generic term)|fruit (generic term)
+edible mussel|1
+(noun)|Mytilus edulis|marine mussel (generic term)|mytilid (generic term)
+edible nut|1
+(noun)|nut (generic term)
+edible sea urchin|1
+(noun)|Echinus esculentus|sea urchin (generic term)
+edible seed|1
+(noun)|seed (generic term)
+edible snail|1
+(noun)|Helix pomatia|snail (generic term)
+edibleness|1
+(noun)|edibility|property (generic term)
+edict|2
+(noun)|announcement (generic term)|proclamation (generic term)|annunciation (generic term)|declaration (generic term)
+(noun)|decree|fiat|order|rescript|act (generic term)|enactment (generic term)
+edification|1
+(noun)|sophistication|enlightenment (generic term)
+edifice|1
+(noun)|building|structure (generic term)|construction (generic term)
+edified|1
+(adj)|enlightened (similar term)
+edify|1
+(verb)|enlighten|teach (generic term)|learn (generic term)|instruct (generic term)
+edifying|1
+(adj)|enlightening|unedifying (antonym)
+edinburgh|1
+(noun)|Edinburgh|capital (generic term)
+edirne|1
+(noun)|Edirne|Adrianople|Adrianopolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+edison|1
+(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+edit|4
+(verb)|redact|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|publish (generic term)|bring out (generic term)|put out (generic term)|issue (generic term)|release (generic term)
+(verb)|cut|edit out|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|blue-pencil|delete|censor (generic term)
+edit out|1
+(verb)|edit|cut|change (generic term)|alter (generic term)|modify (generic term)
+edited|1
+(adj)|emended|altered (similar term)
+edith cavell|1
+(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse (generic term)
+edith giovanna gassion|1
+(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+edith louisa cavell|1
+(noun)|Cavell|Edith Cavell|Edith Louisa Cavell|nurse (generic term)
+edith newbold jones wharton|1
+(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer (generic term)|author (generic term)
+edith piaf|1
+(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+edith wharton|1
+(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer (generic term)|author (generic term)
+editing|1
+(noun)|redaction|writing (generic term)|written material (generic term)|piece of writing (generic term)
+edition|4
+(noun)|impression (generic term)|printing (generic term)
+(noun)|group (generic term)|grouping (generic term)
+(noun)|issue (generic term)|number (generic term)
+(noun)|version|variant|variation|type (generic term)
+editor|2
+(noun)|editor in chief|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|editor program|application (generic term)|application program (generic term)|applications programme (generic term)
+editor in chief|1
+(noun)|editor|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+editor program|1
+(noun)|editor|application (generic term)|application program (generic term)|applications programme (generic term)
+editorial|3
+(adj)|article (related term)
+(adj)|skilled worker|trained worker|skilled workman (related term)
+(noun)|column|newspaper column|article (generic term)
+editorial department|1
+(noun)|business department (generic term)
+editorialise|1
+(verb)|editorialize|opine (generic term)|speak up (generic term)|animadvert (generic term)|sound off (generic term)
+editorialist|1
+(noun)|columnist|journalist (generic term)
+editorialize|1
+(verb)|editorialise|opine (generic term)|speak up (generic term)|animadvert (generic term)|sound off (generic term)
+editorially|1
+(adv)|with an editorial|in an editorial
+editorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+edmond de goncourt|1
+(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer (generic term)|author (generic term)
+edmond halley|1
+(noun)|Halley|Edmond Halley|Edmund Halley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+edmond hoyle|1
+(noun)|Hoyle|Edmond Hoyle|writer (generic term)|author (generic term)|card player (generic term)
+edmond louis antoine huot de goncourt|1
+(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer (generic term)|author (generic term)
+edmond malone|1
+(noun)|Malone|Edmund Malone|Edmond Malone|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+edmond rostand|1
+(noun)|Rostand|Edmond Rostand|dramatist (generic term)|playwright (generic term)|poet (generic term)
+edmonton|1
+(noun)|Edmonton|provincial capital (generic term)
+edmontonia|1
+(noun)|Edmontonia|ankylosaur (generic term)|ankylosaurus (generic term)
+edmontosaurus|1
+(noun)|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+edmund burke|1
+(noun)|Burke|Edmund Burke|statesman (generic term)|solon (generic term)|national leader (generic term)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+edmund cartwright|1
+(noun)|Cartwright|Edmund Cartwright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+edmund charles edouard genet|1
+(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat (generic term)|diplomatist (generic term)
+edmund halley|1
+(noun)|Halley|Edmond Halley|Edmund Halley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+edmund hillary|1
+(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer (generic term)|mountain climber (generic term)
+edmund husserl|1
+(noun)|Husserl|Edmund Husserl|philosopher (generic term)
+edmund i|1
+(noun)|Edmund I|king (generic term)|male monarch (generic term)|Rex (generic term)
+edmund ii|1
+(noun)|Edmund II|Edmund Ironside|king (generic term)|male monarch (generic term)|Rex (generic term)
+edmund ironside|1
+(noun)|Edmund II|Edmund Ironside|king (generic term)|male monarch (generic term)|Rex (generic term)
+edmund john millington synge|1
+(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist (generic term)|playwright (generic term)|poet (generic term)
+edmund kean|1
+(noun)|Kean|Edmund Kean|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+edmund malone|1
+(noun)|Malone|Edmund Malone|Edmond Malone|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+edmund spenser|1
+(noun)|Spenser|Edmund Spenser|poet (generic term)
+edmund wilson|1
+(noun)|Wilson|Edmund Wilson|literary critic (generic term)
+edna ferber|1
+(noun)|Ferber|Edna Ferber|writer (generic term)|author (generic term)
+edna millay|1
+(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess (generic term)
+edna o'brien|1
+(noun)|O'Brien|Edna O'Brien|writer (generic term)|author (generic term)
+edna saint vincent millay|1
+(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess (generic term)
+edo|2
+(noun)|Edo|Nigerian (generic term)
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+edouard lemaitre|1
+(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist (generic term)
+edouard manet|1
+(noun)|Manet|Edouard Manet|painter (generic term)
+edouard vuillard|1
+(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter (generic term)
+edp|1
+(noun)|electronic data processing|EDP|automatic data processing (generic term)|ADP (generic term)
+edronax|1
+(noun)|reboxetine|Edronax|antidepressant (generic term)|antidepressant drug (generic term)
+eds|1
+(noun)|explosive detection system|EDS|system (generic term)
+edsel bryant ford|1
+(noun)|Ford|Edsel Bryant Ford|industrialist (generic term)
+eduard buchner|1
+(noun)|Buchner|Eduard Buchner|chemist (generic term)
+educate|3
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|train|develop|prepare|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|school|train|cultivate|civilize|civilise|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+educated|2
+(adj)|enlightened (similar term)|knowing (similar term)|knowledgeable (similar term)|learned (similar term)|lettered (similar term)|well-educated (similar term)|well-read (similar term)|literate (similar term)|self-educated (similar term)|semiliterate (similar term)|civilized (related term)|civilised (related term)|enlightened (related term)|informed (related term)|intellectual (related term)|literate (related term)|numerate (related term)|uneducated (antonym)
+(adj)|enlightened|informed (similar term)
+educatee|1
+(noun)|student|pupil|enrollee (generic term)
+education|6
+(noun)|instruction|teaching|pedagogy|didactics|educational activity|activity (generic term)
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|learning (generic term)|acquisition (generic term)
+(noun)|profession (generic term)
+(noun)|training|breeding|upbringing (generic term)
+(noun)|Department of Education|Education Department|Education|executive department (generic term)
+education department|1
+(noun)|Department of Education|Education Department|Education|executive department (generic term)
+education secretary|2
+(noun)|Secretary of Education|Education Secretary|secretary (generic term)
+(noun)|Secretary of Education|Education Secretary|secretaryship (generic term)
+educational|2
+(adj)|learning|acquisition (related term)
+(adj)|instructive (similar term)|informative (similar term)
+educational activity|1
+(noun)|education|instruction|teaching|pedagogy|didactics|activity (generic term)
+educational institution|1
+(noun)|institution (generic term)|establishment (generic term)
+educational program|1
+(noun)|program (generic term)|programme (generic term)
+educationalist|1
+(noun)|educationist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+educationist|1
+(noun)|educationalist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+educative|1
+(adj)|instructive (similar term)|informative (similar term)
+educator|1
+(noun)|pedagogue|pedagog|professional (generic term)|professional person (generic term)
+educe|2
+(verb)|evoke|elicit|extract|draw out|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|derive|make (generic term)|create (generic term)
+edulcorate|1
+(verb)|sweeten|dulcify|dulcorate|change taste (generic term)|sour (antonym)
+edutainment|1
+(noun)|entertainment (generic term)|amusement (generic term)
+edvard grieg|1
+(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer (generic term)
+edvard hagerup grieg|1
+(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer (generic term)
+edvard munch|1
+(noun)|Munch|Edvard Munch|painter (generic term)
+edward|10
+(noun)|Edward|Edward VIII|Duke of Windsor|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward VII|Albert Edward|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward VI|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward V|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward IV|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward III|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward II|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Edward I|King of England (generic term)|King of Great Britain (generic term)
+(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince (generic term)
+(noun)|Edward|Black Prince|Prince of Wales (generic term)
+edward albee|1
+(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist (generic term)|playwright (generic term)
+edward antony richard louis|1
+(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince (generic term)
+edward appleton|1
+(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist (generic term)
+edward benjamin britten|1
+(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+edward bouverie pusey|1
+(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+edward calvin kendall|1
+(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist (generic term)
+edward d. white|1
+(noun)|White|Edward White|Edward D. White|Edward Douglas White Jr.|chief justice (generic term)
+edward douglas white jr.|1
+(noun)|White|Edward White|Edward D. White|Edward Douglas White Jr.|chief justice (generic term)
+edward durell stone|1
+(noun)|Stone|Edward Durell Stone|architect (generic term)|designer (generic term)
+edward estlin cummings|1
+(noun)|cummings|e. e. cummings|Edward Estlin Cummings|writer (generic term)|author (generic term)
+edward everett hale|1
+(noun)|Hale|Edward Everett Hale|writer (generic term)|author (generic term)
+edward fitzgerald|1
+(noun)|Fitzgerald|Edward Fitzgerald|poet (generic term)|interpreter (generic term)|translator (generic term)
+edward franklin albeen|1
+(noun)|Albee|Edward Albee|Edward Franklin Albeen|dramatist (generic term)|playwright (generic term)
+edward g. robinson|1
+(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+edward george earle bulwer-lytton|1
+(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer (generic term)|author (generic term)
+edward gibbon|1
+(noun)|Gibbon|Edward Gibbon|historian (generic term)|historiographer (generic term)
+edward goldenberg robinson|1
+(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+edward henry harriman|1
+(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman (generic term)|man of affairs (generic term)
+edward i|1
+(noun)|Edward|Edward I|King of England (generic term)|King of Great Britain (generic term)
+edward ii|1
+(noun)|Edward|Edward II|King of England (generic term)|King of Great Britain (generic term)
+edward iii|1
+(noun)|Edward|Edward III|King of England (generic term)|King of Great Britain (generic term)
+edward iv|1
+(noun)|Edward|Edward IV|King of England (generic term)|King of Great Britain (generic term)
+edward james hughes|1
+(noun)|Hughes|Ted Hughes|Edward James Hughes|poet (generic term)
+edward james muggeridge|1
+(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+edward jean steichen|1
+(noun)|Steichen|Edward Jean Steichen|photographer (generic term)|lensman (generic term)
+edward jenner|1
+(noun)|Jenner|Edward Jenner|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+edward kendall|1
+(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist (generic term)
+edward kennedy ellington|1
+(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician (generic term)|jazzman (generic term)
+edward lawrie tatum|1
+(noun)|Tatum|Edward Lawrie Tatum|biochemist (generic term)
+edward lear|1
+(noun)|Lear|Edward Lear|artist (generic term)|creative person (generic term)|humorist (generic term)|humourist (generic term)
+edward lee thorndike|1
+(noun)|Thorndike|Edward Lee Thorndike|psychologist (generic term)
+edward macdowell|1
+(noun)|MacDowell|Edward MacDowell|composer (generic term)
+edward morley|1
+(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist (generic term)
+edward osborne wilson|1
+(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+edward pusey|1
+(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+edward r. murrow|1
+(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist (generic term)
+edward roscoe murrow|1
+(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist (generic term)
+edward sapir|1
+(noun)|Sapir|Edward Sapir|anthropologist (generic term)|linguist (generic term)|linguistic scientist (generic term)
+edward teach|1
+(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+edward teller|1
+(noun)|Teller|Edward Teller|nuclear physicist (generic term)
+edward thatch|1
+(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+edward the confessor|1
+(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+edward the elder|1
+(noun)|Edward the Elder|king (generic term)|male monarch (generic term)|Rex (generic term)
+edward the martyr|1
+(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+edward v|1
+(noun)|Edward|Edward V|King of England (generic term)|King of Great Britain (generic term)
+edward vernon rickenbacker|1
+(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot (generic term)
+edward vi|1
+(noun)|Edward|Edward VI|King of England (generic term)|King of Great Britain (generic term)
+edward vii|1
+(noun)|Edward|Edward VII|Albert Edward|King of England (generic term)|King of Great Britain (generic term)
+edward viii|1
+(noun)|Edward|Edward VIII|Duke of Windsor|King of England (generic term)|King of Great Britain (generic term)
+edward vincent sullivan|1
+(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+edward weston|1
+(noun)|Weston|Edward Weston|photographer (generic term)|lensman (generic term)
+edward white|1
+(noun)|White|Edward White|Edward D. White|Edward Douglas White Jr.|chief justice (generic term)
+edward williams morley|1
+(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist (generic term)
+edward winslow|1
+(noun)|Winslow|Edward Winslow|settler (generic term)|colonist (generic term)
+edward wyllis scripps|1
+(noun)|Scripps|Edward Wyllis Scripps|publisher (generic term)|newspaper publisher (generic term)
+edward young|1
+(noun)|Young|Edward Young|poet (generic term)
+edwardian|2
+(adj)|Edwardian|King of England|King of Great Britain (related term)
+(noun)|Edwardian|sporting man (generic term)
+edwards|1
+(noun)|Edwards|Jonathan Edwards|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+edwin|1
+(noun)|Edwin|king (generic term)|male monarch (generic term)|Rex (generic term)
+edwin arlington robinson|1
+(noun)|Robinson|Edwin Arlington Robinson|poet (generic term)
+edwin dubois hayward|1
+(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer (generic term)|author (generic term)
+edwin herbert land|1
+(noun)|Land|Din Land|Edwin Herbert Land|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+edwin hubble|1
+(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist (generic term)
+edwin powell hubble|1
+(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist (generic term)
+edwy|1
+(noun)|Edwy|Eadwig|King of England (generic term)|King of Great Britain (generic term)
+ee|1
+(noun)|electrical engineering|EE|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+eec|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+eeg|1
+(noun)|electroencephalogram|encephalogram|EEG|graph (generic term)|graphical record (generic term)
+eel|2
+(noun)|fish (generic term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+eel-shaped|1
+(adj)|formed (similar term)
+eelam|1
+(noun)|Eelam|Tamil Eelam|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+eelblenny|1
+(noun)|prickleback (generic term)
+eelgrass|2
+(noun)|grass wrack|sea wrack|Zostera marina|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|tape grass|wild celery|Vallisneria spiralis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+eelgrass family|1
+(noun)|Zosteraceae|family Zosteraceae|monocot family (generic term)|liliopsid family (generic term)
+eellike|1
+(adj)|curved (similar term)|curving (similar term)
+eelpout|2
+(noun)|pout|blennioid fish (generic term)|blennioid (generic term)
+(noun)|burbot|ling|cusk|Lota lota|cod (generic term)|codfish (generic term)
+eelworm|1
+(noun)|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+eerie|2
+(adj)|supernatural (similar term)
+(adj)|eery|strange (similar term)|unusual (similar term)
+eerily|1
+(adv)|spookily
+eeriness|1
+(noun)|ghostliness|unfamiliarity (generic term)|strangeness (generic term)
+eero saarinen|1
+(noun)|Saarinen|Eero Saarinen|architect (generic term)|designer (generic term)
+eery|1
+(adj)|eerie|strange (similar term)|unusual (similar term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+efface|3
+(verb)|obliterate|blur (generic term)|dim (generic term)|slur (generic term)
+(verb)|humble (generic term)
+(verb)|erase|rub out|score out|wipe off|delete (generic term)|cancel (generic term)
+effaceable|1
+(adj)|erasable|eradicable (similar term)
+effacement|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|self-effacement|withdrawal (generic term)
+effect|8
+(noun)|consequence|outcome|result|event|issue|upshot|phenomenon (generic term)
+(noun)|impression|appearance (generic term)|visual aspect (generic term)
+(noun)|force|validity (generic term)|validness (generic term)
+(noun)|symptom (generic term)
+(noun)|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+(noun)|essence|burden|core|gist|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(verb)|effectuate|set up|cause (generic term)|do (generic term)|make (generic term)
+(verb)|act (generic term)|move (generic term)
+effected|1
+(adj)|accomplished|established|settled (similar term)
+effecter|1
+(noun)|effector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+effective|6
+(adj)|effectual|efficacious|hard-hitting (similar term)|trenchant (similar term)|impelling (similar term)|impressive (similar term)|telling (similar term)|rough-and-ready (similar term)|efficacious (related term)|efficient (related term)|potent (related term)|strong (related term)|stiff (related term)|powerful (related term)|useful (related term)|utile (related term)|ineffective (antonym)
+(adj)|efficient|competent (similar term)
+(adj)|efficacious (similar term)
+(adj)|good|in effect|in force|operative (similar term)
+(adj)|actual (similar term)|existent (similar term)
+(adj)|operational (similar term)
+effectively|2
+(adv)|efficaciously|ineffectively (antonym)|inefficaciously (antonym)
+(adv)|in effect
+effectiveness|2
+(noun)|effectivity|effectualness|effectuality|power (generic term)|powerfulness (generic term)|ineffectiveness (antonym)
+(noun)|potency|strength|power (generic term)|powerfulness (generic term)
+effectivity|1
+(noun)|effectiveness|effectualness|effectuality|power (generic term)|powerfulness (generic term)|ineffectiveness (antonym)
+effector|3
+(noun)|effecter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|nerve fiber (generic term)|nerve fibre (generic term)
+(noun)|organ (generic term)|receptor (antonym)
+effects|1
+(noun)|personal effects|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+effectual|2
+(adj)|effective|efficacious|hard-hitting (similar term)|trenchant (similar term)|impelling (similar term)|impressive (similar term)|telling (similar term)|rough-and-ready (similar term)|efficacious (related term)|efficient (related term)|potent (related term)|strong (related term)|stiff (related term)|powerful (related term)|useful (related term)|utile (related term)|ineffective (antonym)
+(adj)|legal|sound|valid (similar term)
+effectuality|1
+(noun)|effectiveness|effectivity|effectualness|power (generic term)|powerfulness (generic term)|ineffectiveness (antonym)
+effectually|1
+(adv)|ineffectually (antonym)
+effectualness|1
+(noun)|effectiveness|effectivity|effectuality|power (generic term)|powerfulness (generic term)|ineffectiveness (antonym)
+effectuate|1
+(verb)|effect|set up|cause (generic term)|do (generic term)|make (generic term)
+effectuation|1
+(noun)|implementation|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+effeminacy|1
+(noun)|effeminateness|sissiness|softness|womanishness|unmanliness|femininity (generic term)|muliebrity (generic term)
+effeminate|1
+(adj)|emasculate|epicene|cissy|sissified|sissyish|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+effeminateness|1
+(noun)|effeminacy|sissiness|softness|womanishness|unmanliness|femininity (generic term)|muliebrity (generic term)
+effeminize|1
+(verb)|feminize|feminise|erreminise|womanize|change (generic term)|alter (generic term)|modify (generic term)
+effendi|1
+(noun)|Turk (generic term)
+efferent|2
+(adj)|motorial|centrifugal (similar term)|motor (similar term)|corticoefferent (similar term)|corticofugal (similar term)|corticifugal (similar term)|neuromotor (similar term)|afferent (antonym)
+(noun)|motor nerve|efferent nerve|nerve (generic term)|nervus (generic term)
+efferent nerve|1
+(noun)|motor nerve|efferent|nerve (generic term)|nervus (generic term)
+efferent neuron|1
+(noun)|motor neuron|motor nerve fiber|motoneuron|nerve cell (generic term)|neuron (generic term)
+effervesce|1
+(verb)|foam|froth|fizz|sparkle|bubble (generic term)
+effervescence|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|bubbliness|frothiness|gaseousness (generic term)
+effervescent|3
+(adj)|sparkling|still (antonym)
+(adj)|bubbling (similar term)|bubbly (similar term)|foaming (similar term)|foamy (similar term)|frothy (similar term)|effervescing (similar term)|aerated (similar term)|charged (similar term)|fizzing (similar term)|fizzy (similar term)|carbonated (similar term)|noneffervescent (antonym)
+(adj)|bubbling|scintillating|sparkly|lively (similar term)
+effervescing|1
+(adj)|bubbling|bubbly|foaming|foamy|frothy|effervescent (similar term)
+effete|1
+(adj)|decadent|indulgent (similar term)
+efficacious|2
+(adj)|effective (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|inefficacious (antonym)
+(adj)|effective|effectual|hard-hitting (similar term)|trenchant (similar term)|impelling (similar term)|impressive (similar term)|telling (similar term)|rough-and-ready (similar term)|efficacious (related term)|efficient (related term)|potent (related term)|strong (related term)|stiff (related term)|powerful (related term)|useful (related term)|utile (related term)|ineffective (antonym)
+efficaciously|1
+(adv)|effectively|ineffectively (antonym)|inefficaciously (antonym)
+efficaciousness|1
+(noun)|efficacy|effectiveness (generic term)|effectivity (generic term)|effectualness (generic term)|effectuality (generic term)|inefficacy (antonym)
+efficacy|1
+(noun)|efficaciousness|effectiveness (generic term)|effectivity (generic term)|effectualness (generic term)|effectuality (generic term)|inefficacy (antonym)
+efficiency|2
+(noun)|ratio (generic term)
+(noun)|skillfulness (generic term)|inefficiency (antonym)
+efficiency apartment|1
+(noun)|apartment (generic term)|flat (generic term)
+efficiency engineer|1
+(noun)|efficiency expert|expert (generic term)
+efficiency expert|1
+(noun)|efficiency engineer|expert (generic term)
+efficient|2
+(adj)|businesslike (similar term)|cost-efficient (similar term)|cost-effective (similar term)|economic (similar term)|economical (similar term)|expeditious (similar term)|prompt (similar term)|timesaving (similar term)|high-octane (similar term)|streamlined (similar term)|underspent (similar term)|competent (related term)|effective (related term)|effectual (related term)|efficacious (related term)|inefficient (antonym)
+(adj)|effective|competent (similar term)
+efficiently|1
+(adv)|expeditiously|with efficiency|inefficiently (antonym)
+effigy|1
+(noun)|image|simulacrum|representation (generic term)
+effleurage|1
+(noun)|massage (generic term)
+effloresce|3
+(verb)|burst forth|bloom (generic term)|blossom (generic term)|flower (generic term)
+(verb)|crystallize|crystalize|crystalise|solidify (generic term)
+(verb)|encrust (generic term)|incrust (generic term)
+efflorescence|4
+(noun)|flower|prime|peak|heyday|bloom|blossom|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|rash|roseola|skin rash|eruption (generic term)
+(noun)|blossoming|flowering|florescence|inflorescence|anthesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|bloom|crystallization (generic term)|crystallisation (generic term)|crystallizing (generic term)
+efflorescent|1
+(adj)|abloom|mature (similar term)
+effluence|1
+(noun)|outflow|efflux|flow (generic term)|influx (antonym)|inflow (antonym)
+effluent|2
+(adj)|outflowing|outgoing (similar term)
+(noun)|wastewater|sewer water|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+effluvium|1
+(noun)|discharge (generic term)|emission (generic term)
+efflux|1
+(noun)|outflow|effluence|flow (generic term)|influx (antonym)|inflow (antonym)
+effort|4
+(noun)|attempt|endeavor|endeavour|try|activity (generic term)
+(noun)|elbow grease|exertion|travail|sweat|labor (generic term)|labour (generic term)|toil (generic term)
+(noun)|campaign|cause|crusade|drive|movement|venture (generic term)
+(noun)|deed|feat|exploit|accomplishment (generic term)|achievement (generic term)
+effortful|1
+(adj)|arduous (similar term)|backbreaking (similar term)|grueling (similar term)|gruelling (similar term)|hard (similar term)|heavy (similar term)|laborious (similar term)|operose (similar term)|punishing (similar term)|toilsome (similar term)|difficult (similar term)|dragging (similar term)|exhausting (similar term)|tiring (similar term)|wearing (similar term)|wearying (similar term)|heavy (similar term)|labored (similar term)|laboured (similar term)|labor-intensive (similar term)|labour-intensive (similar term)|leaden (similar term)|plodding (similar term)|Sisyphean (similar term)|arduous (similar term)|straining (similar term)|strenuous (similar term)|difficult (related term)|hard (related term)|effortless (antonym)
+effortfulness|1
+(noun)|difficulty (generic term)|difficultness (generic term)|effortlessness (antonym)
+effortless|2
+(adj)|facile (similar term)|unforced (similar term)|unstrained (similar term)|easy (related term)|effortful (antonym)
+(adj)|casual|easy (similar term)
+effortlessness|1
+(noun)|ease (generic term)|easiness (generic term)|simplicity (generic term)|simpleness (generic term)|effortfulness (antonym)
+effrontery|1
+(noun)|presumption|presumptuousness|assumption|audacity (generic term)|audaciousness (generic term)
+effulgence|1
+(noun)|radiance|radiancy|shine|refulgence|refulgency|brightness (generic term)
+effulgent|1
+(adj)|beaming|beamy|radiant|refulgent|bright (similar term)
+effuse|3
+(verb)|pour out|pour (generic term)
+(verb)|flow out|emanate (generic term)
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+effusion|2
+(noun)|gush|outburst|blowup|ebullition|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+(noun)|flood (generic term)|overflow (generic term)|outpouring (generic term)
+effusive|2
+(adj)|burbling|burbly|gushing|lively (similar term)
+(adj)|emotional|gushing|gushy|demonstrative (similar term)
+effusiveness|1
+(noun)|expansiveness|expansivity|communicativeness (generic term)
+efrem zimbalist|1
+(noun)|Zimbalist|Efrem Zimbalist|violinist (generic term)|fiddler (generic term)
+eft|1
+(noun)|newt (generic term)|triton (generic term)
+egadi islands|1
+(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island (generic term)
+egalitarian|2
+(adj)|classless|democratic (similar term)
+(noun)|equalitarian|moralist (generic term)|elitist (antonym)
+egalitarianism|1
+(noun)|equalitarianism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+egalite|1
+(noun)|egality|equality (generic term)|equivalence (generic term)|equation (generic term)|par (generic term)
+egality|1
+(noun)|egalite|equality (generic term)|equivalence (generic term)|equation (generic term)|par (generic term)
+egbert|1
+(noun)|Egbert|king (generic term)|male monarch (generic term)|Rex (generic term)
+egeria|1
+(noun)|Egeria|genus Egeria|monocot genus (generic term)|liliopsid genus (generic term)
+egeria densa|1
+(noun)|dense-leaved elodea|Elodea densa|Egeria densa|waterweed (generic term)
+egest|1
+(verb)|excrete|eliminate|pass|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+egg|5
+(noun)|ovum (generic term)|egg cell (generic term)
+(noun)|eggs|foodstuff (generic term)|food product (generic term)
+(noun)|testis|testicle|orchis|ball|ballock|bollock|nut|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+(verb)|pelt (generic term)|bombard (generic term)
+(verb)|coat (generic term)|surface (generic term)
+egg-and-anchor|1
+(noun)|egg-and-dart|egg-and-tongue|molding (generic term)|moulding (generic term)
+egg-and-dart|1
+(noun)|egg-and-anchor|egg-and-tongue|molding (generic term)|moulding (generic term)
+egg-and-tongue|1
+(noun)|egg-and-dart|egg-and-anchor|molding (generic term)|moulding (generic term)
+egg-filled|1
+(adj)|full (similar term)
+egg-laying mammal|1
+(noun)|monotreme|prototherian (generic term)
+egg-producing|1
+(adj)|young-bearing|female (similar term)
+egg-shaped|1
+(adj)|elliptic|elliptical|oval|oval-shaped|ovate|oviform|ovoid|prolate|rounded (similar term)
+egg cell|1
+(noun)|ovum|gamete (generic term)
+egg cream|1
+(noun)|soft drink (generic term)
+egg cup|1
+(noun)|eggcup|crockery (generic term)|dishware (generic term)
+egg en cocotte|1
+(noun)|shirred egg|baked egg|dish (generic term)
+egg foo yong|1
+(noun)|egg fu yung|omelet (generic term)|omelette (generic term)
+egg fu yung|1
+(noun)|egg foo yong|omelet (generic term)|omelette (generic term)
+egg laying|1
+(noun)|laying|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+egg noodle|1
+(noun)|noodle (generic term)
+egg on|1
+(verb)|prod|incite
+egg roll|1
+(noun)|spring roll|dish (generic term)
+egg timer|1
+(noun)|sandglass (generic term)
+egg white|1
+(noun)|white|albumen|ovalbumin|ingredient (generic term)|fixings (generic term)
+egg yolk|1
+(noun)|yolk|ingredient (generic term)|fixings (generic term)
+eggar|1
+(noun)|egger|lasiocampid (generic term)|lasiocampid moth (generic term)
+eggbeater|2
+(noun)|helicopter|chopper|whirlybird|heavier-than-air craft (generic term)
+(noun)|eggwhisk|beater (generic term)|mixer (generic term)
+eggcup|1
+(noun)|egg cup|crockery (generic term)|dishware (generic term)
+eggdrop soup|1
+(noun)|soup (generic term)
+egger|1
+(noun)|eggar|lasiocampid (generic term)|lasiocampid moth (generic term)
+eggfruit|1
+(noun)|canistel|edible fruit (generic term)
+egghead|1
+(noun)|intellectual (generic term)|intellect (generic term)
+eggnog|1
+(noun)|punch (generic term)
+eggplant|2
+(noun)|aubergine|mad apple|solanaceous vegetable (generic term)
+(noun)|aubergine|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+eggplant bush|1
+(noun)|eggplant|aubergine|brinjal|garden egg|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+eggs|1
+(noun)|egg|foodstuff (generic term)|food product (generic term)
+eggs benedict|1
+(noun)|eggs Benedict|dish (generic term)
+eggshake|1
+(noun)|milkshake (generic term)|milk shake (generic term)|shake (generic term)
+eggshell|1
+(noun)|shell|covering (generic term)|natural covering (generic term)|cover (generic term)
+eggwhisk|1
+(noun)|eggbeater|beater (generic term)|mixer (generic term)
+egis|1
+(noun)|breastplate|aegis|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+eglantine|1
+(noun)|sweetbrier|sweetbriar|brier|briar|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+eglevsky|1
+(noun)|Eglevsky|Andre Eglevsky|ballet dancer (generic term)
+ego|3
+(noun)|egotism|self-importance|pride (generic term)|pridefulness (generic term)
+(noun)|self|consciousness (generic term)
+(noun)|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+ego ideal|1
+(noun)|ideal (generic term)
+ego trip|1
+(noun)|self-aggrandizement|self-aggrandisement|aggrandizement (generic term)|aggrandisement (generic term)|elevation (generic term)
+egocentric|2
+(adj)|egoistic|egoistical|self-centered|self-centred|self-absorbed (similar term)|self-involved (similar term)|selfish (related term)|altruistic (antonym)
+(noun)|egoist|selfish person (generic term)
+egocentrism|1
+(noun)|egoism|self-interest|self-concern|self-centeredness|trait (generic term)|altruism (antonym)
+egoism|2
+(noun)|theory (generic term)
+(noun)|egocentrism|self-interest|self-concern|self-centeredness|trait (generic term)|altruism (antonym)
+egoist|2
+(noun)|egotist|swellhead|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|egocentric|selfish person (generic term)
+egoistic|1
+(adj)|egoistical|egocentric|self-centered|self-centred|self-absorbed (similar term)|self-involved (similar term)|selfish (related term)|altruistic (antonym)
+egoistical|1
+(adj)|egoistic|egocentric|self-centered|self-centred|self-absorbed (similar term)|self-involved (similar term)|selfish (related term)|altruistic (antonym)
+egomania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+egomaniac|1
+(noun)|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+egotism|2
+(noun)|self-importance|swelled head|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+(noun)|ego|self-importance|pride (generic term)|pridefulness (generic term)
+egotist|1
+(noun)|egoist|swellhead|unpleasant person (generic term)|disagreeable person (generic term)
+egotistic|2
+(adj)|egotistical|narcissistic|self-loving|selfish (similar term)
+(adj)|conceited|egotistical|self-conceited|swollen|swollen-headed|vain|proud (similar term)
+egotistical|2
+(adj)|egotistic|narcissistic|self-loving|selfish (similar term)
+(adj)|conceited|egotistic|self-conceited|swollen|swollen-headed|vain|proud (similar term)
+egotistically|1
+(adv)|selfishly|unselfishly (antonym)
+egotrip|1
+(verb)|act (generic term)|move (generic term)
+egregious|1
+(adj)|crying|flagrant|glaring|gross|rank|conspicuous (similar term)
+egress|4
+(noun)|emersion|reappearance (generic term)|immersion (antonym)|ingress (antonym)
+(noun)|emergence|issue|beginning (generic term)
+(noun)|egression|emergence|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(verb)|issue|emerge|come out|come forth|go forth
+egression|1
+(noun)|egress|emergence|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+egret|1
+(noun)|heron (generic term)
+egretta|1
+(noun)|Egretta|genus Egretta|bird genus (generic term)
+egretta albus|1
+(noun)|American egret|great white heron|Egretta albus|egret (generic term)
+egretta caerulea|1
+(noun)|little blue heron|Egretta caerulea|heron (generic term)
+egretta garzetta|1
+(noun)|little egret|Egretta garzetta|egret (generic term)
+egretta thula|1
+(noun)|snowy egret|snowy heron|Egretta thula|egret (generic term)
+egtk|1
+(noun)|Tupac Katari Guerrilla Army|EGTK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+egypt|2
+(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country (generic term)|African nation (generic term)
+(noun)|Egyptian Empire|Egypt|empire (generic term)|imperium (generic term)
+egyptian|3
+(adj)|Egyptian|African country|African nation (related term)
+(noun)|Egyptian|African (generic term)
+(noun)|Egyptian|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+egyptian bean|1
+(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+egyptian capital|1
+(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital (generic term)|port (generic term)
+egyptian cat|1
+(noun)|Egyptian cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+egyptian cobra|1
+(noun)|asp|Egyptian cobra|Naja haje|cobra (generic term)
+egyptian corn|1
+(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+egyptian cotton|1
+(noun)|Egyptian cotton|cotton (generic term)|cotton plant (generic term)
+egyptian deity|1
+(noun)|Egyptian deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+egyptian empire|1
+(noun)|Egyptian Empire|Egypt|empire (generic term)|imperium (generic term)
+egyptian grass|1
+(noun)|Egyptian grass|crowfoot grass|Dactyloctenium aegypticum|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+egyptian henbane|1
+(noun)|Egyptian henbane|Hyoscyamus muticus|herb (generic term)|herbaceous plant (generic term)
+egyptian islamic jihad|1
+(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+egyptian lupine|1
+(noun)|white lupine|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine (generic term)|lupin (generic term)
+egyptian monetary unit|1
+(noun)|Egyptian monetary unit|monetary unit (generic term)
+egyptian onion|1
+(noun)|tree onion|Egyptian onion|top onion|Allium cepa viviparum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+egyptian paper reed|1
+(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge (generic term)
+egyptian paper rush|1
+(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge (generic term)
+egyptian pea|1
+(noun)|chickpea|chickpea plant|Egyptian pea|Cicer arietinum|legume (generic term)|leguminous plant (generic term)
+egyptian pound|1
+(noun)|Egyptian pound|pound|Egyptian monetary unit (generic term)
+egyptian vulture|1
+(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture (generic term)
+egyptian water lily|1
+(noun)|lotus|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily (generic term)
+egyptologist|1
+(noun)|Egyptologist|archeologist (generic term)|archaeologist (generic term)
+egyptology|1
+(noun)|Egyptology|archeology (generic term)|archaeology (generic term)
+ehadhamen|1
+(noun)|Ehadhamen|city (generic term)|metropolis (generic term)|urban center (generic term)
+ehf|1
+(noun)|extremely high frequency|EHF|radio frequency (generic term)
+ehrenberg|1
+(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer (generic term)|author (generic term)
+ehrlich|1
+(noun)|Ehrlich|Paul Ehrlich|bacteriologist (generic term)
+eichhornia|1
+(noun)|Eichhornia|genus Eichhornia|monocot genus (generic term)|liliopsid genus (generic term)
+eichhornia crassipes|1
+(noun)|water hyacinth|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+eichhornia spesiosa|1
+(noun)|water hyacinth|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+eichmann|1
+(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi (generic term)|German Nazi (generic term)
+eicosapentaenoic acid|1
+(noun)|omega-3 fatty acid (generic term)|omega-3 (generic term)
+eider|1
+(noun)|eider duck|sea duck (generic term)
+eider duck|1
+(noun)|eider|sea duck (generic term)
+eiderdown|2
+(noun)|duvet|continental quilt|quilt (generic term)|comforter (generic term)|puff (generic term)
+(noun)|duck down (generic term)
+eidetic|1
+(adj)|representational (similar term)
+eidos|1
+(noun)|attribute (generic term)
+eiffel|1
+(noun)|Eiffel|Alexandre Gustave Eiffel|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+eiffel tower|1
+(noun)|Eiffel Tower|tower (generic term)
+eigen|1
+(noun)|Eigen|Manfred Eigen|chemist (generic term)
+eigenvalue|1
+(noun)|eigenvalue of a matrix|eigenvalue of a square matrix|characteristic root of a square matrix|value (generic term)
+eigenvalue of a matrix|1
+(noun)|eigenvalue|eigenvalue of a square matrix|characteristic root of a square matrix|value (generic term)
+eigenvalue of a square matrix|1
+(noun)|eigenvalue|eigenvalue of a matrix|characteristic root of a square matrix|value (generic term)
+eight|3
+(adj)|8|viii|cardinal (similar term)
+(noun)|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+(noun)|Ashcan School|Eight|school (generic term)|artistic movement (generic term)|art movement (generic term)
+eight-day|1
+(adj)|long (similar term)
+eight-fold|1
+(adj)|octuple|eightfold|multiple (similar term)
+eight-membered|1
+(adj)|8-membered|membered (similar term)
+eight-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+eight-spot|1
+(noun)|spot (generic term)
+eight ball|1
+(noun)|pool ball (generic term)
+eighteen|2
+(adj)|18|xviii|cardinal (similar term)
+(noun)|18|XVIII|large integer (generic term)
+eighteenth|2
+(adj)|18th|ordinal (similar term)
+(noun)|rank (generic term)
+eighteenth amendment|1
+(noun)|Eighteenth Amendment|amendment (generic term)
+eighter|1
+(noun)|eight|8|VIII|eighter from Decatur|octad|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+eighter from decatur|1
+(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+eightfold|1
+(adj)|octuple|eight-fold|multiple (similar term)
+eighth|3
+(adj)|8th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-eighth|common fraction (generic term)|simple fraction (generic term)
+eighth cranial nerve|1
+(noun)|acoustic nerve|auditory nerve|vestibulocochlear nerve|nervus vestibulocochlearis|cranial nerve (generic term)
+eighth note|1
+(noun)|quaver|note (generic term)|musical note (generic term)|tone (generic term)
+eighties|3
+(noun)|1880s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|1980s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|mid-eighties|time of life (generic term)
+eightieth|2
+(adj)|80th|ordinal (similar term)
+(noun)|rank (generic term)
+eightpence|1
+(noun)|coin (generic term)
+eightpenny|1
+(adj)|sized (similar term)
+eightpenny nail|1
+(noun)|nail (generic term)
+eightsome|2
+(noun)|octet|octette|gathering (generic term)|assemblage (generic term)
+(noun)|reel (generic term)|Scottish reel (generic term)
+eightvo|1
+(noun)|octavo|8vo|size (generic term)
+eighty|2
+(adj)|80|lxxx|fourscore|cardinal (similar term)
+(noun)|80|LXXX|fourscore|large integer (generic term)
+eighty-eight|1
+(adj)|88|lxxxviii|cardinal (similar term)
+eighty-fifth|1
+(adj)|85th|ordinal (similar term)
+eighty-five|1
+(adj)|85|lxxxv|cardinal (similar term)
+eighty-four|1
+(adj)|84|lxxxiv|cardinal (similar term)
+eighty-nine|1
+(adj)|89|ixc|cardinal (similar term)
+eighty-one|1
+(adj)|81|lxxxi|cardinal (similar term)
+eighty-seven|1
+(adj)|87|lxxxvii|cardinal (similar term)
+eighty-six|1
+(adj)|86|lxxxvi|cardinal (similar term)
+eighty-three|1
+(adj)|83|lxxxiii|cardinal (similar term)
+eighty-two|1
+(adj)|82|lxxxii|cardinal (similar term)
+eijkman|1
+(noun)|Eijkman|Christiaan Eijkman|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+eileen farrell|1
+(noun)|Farrell|Eileen Farrell|soprano (generic term)
+eimeria|1
+(noun)|coccidium|sporozoan (generic term)
+eimeriidae|1
+(noun)|Eimeriidae|family Eimeriidae|protoctist family (generic term)
+eindhoven|1
+(noun)|Eindhoven|city (generic term)|metropolis (generic term)|urban center (generic term)
+einstein|2
+(noun)|Einstein|Albert Einstein|physicist (generic term)
+(noun)|genius|mastermind|brain|brainiac|Einstein|intellectual (generic term)|intellect (generic term)
+einstein's general theory of relativity|1
+(noun)|general relativity|general theory of relativity|general relativity theory|Einstein's general theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+einstein's special theory of relativity|1
+(noun)|special relativity|special theory of relativity|special relativity theory|Einstein's special theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+einstein's theory of relativity|1
+(noun)|relativity|theory of relativity|relativity theory|Einstein's theory of relativity|scientific theory (generic term)
+einsteinian|1
+(adj)|Einsteinian|physicist (related term)
+einsteinium|1
+(noun)|Es|E|atomic number 99|metallic element (generic term)|metal (generic term)
+einthoven|1
+(noun)|Einthoven|Willem Einthoven|physiologist (generic term)
+eira|1
+(noun)|Eira|genus Eira|mammal genus (generic term)
+eira barbara|1
+(noun)|tayra|taira|Eira barbara|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+eire|1
+(noun)|Ireland|Eire|Irish Free State|European country (generic term)|European nation (generic term)
+eisegesis|1
+(noun)|interpretation (generic term)
+eisenhower|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+eisenstaedt|1
+(noun)|Eisenstaedt|Alfred Eisenstaedt|photographer (generic term)|lensman (generic term)
+eisenstein|1
+(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+eisteddfod|1
+(noun)|festival (generic term)|fete (generic term)
+eitchen midden|1
+(noun)|midden|kitchen midden|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+ejaculate|3
+(noun)|semen|seed|seminal fluid|cum|come|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+(verb)|blurt out|blurt|blunder out|blunder|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+ejaculation|2
+(noun)|interjection|exclamation (generic term)|exclaiming (generic term)
+(noun)|discharge (generic term)|emission (generic term)|expelling (generic term)
+ejaculator|2
+(noun)|man (generic term)|adult male (generic term)
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+ejaculatory duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+eject|4
+(verb)|expel|chuck out|exclude|throw out|kick out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+(verb)|discharge|expel|release
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)
+(verb)|squirt|force out|squeeze out|discharge (generic term)
+ejection|2
+(noun)|expulsion|projection|forcing out|propulsion (generic term)|actuation (generic term)
+(noun)|exclusion|expulsion|riddance|banishment (generic term)|proscription (generic term)
+ejection seat|1
+(noun)|ejector seat|capsule|seat (generic term)
+ejector|2
+(noun)|ouster|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|cartridge ejector|mechanism (generic term)
+ejector seat|1
+(noun)|ejection seat|capsule|seat (generic term)
+ekbom syndrome|1
+(noun)|restless legs syndrome|restless legs|Ekbom syndrome|syndrome (generic term)
+eke out|4
+(verb)|fill out|supplement (generic term)
+(verb)|live (generic term)
+(verb)|squeeze out|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|squeeze out|obtain (generic term)
+ekg|1
+(noun)|electrocardiogram|cardiogram|EKG|ECG|graph (generic term)|graphical record (generic term)
+ekman|1
+(noun)|Ekman|Vagn Walfrid Ekman|oceanographer (generic term)
+el|2
+(noun)|elevation|EL|altitude|ALT|angular position (generic term)
+(noun)|elevated railway|elevated railroad|elevated|overhead railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+el-aksur|1
+(noun)|Luxor|El-Aksur|city (generic term)|metropolis (generic term)|urban center (generic term)
+el aaium|1
+(noun)|El Aaium|town (generic term)
+el alamein|2
+(noun)|El Alamein|village (generic term)|hamlet (generic term)
+(noun)|El Alamein|Al Alamayn|Battle of El Alamein|pitched battle (generic term)
+el beda|1
+(noun)|Doha|Bida|El Beda|capital of Qatar|national capital (generic term)|port (generic term)
+el caudillo|1
+(noun)|Franco|Francisco Franco|El Caudillo|General Franco|general (generic term)|full general (generic term)|dictator (generic term)|potentate (generic term)
+el cid|1
+(noun)|El Cid|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+el dorado|1
+(noun)|El Dorado|eldorado|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+el giza|1
+(noun)|Giza|El Giza|Gizeh|city (generic term)|metropolis (generic term)|urban center (generic term)
+el greco|1
+(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master (generic term)
+el iskandriyah|1
+(noun)|Alexandria|El Iskandriyah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+el libertador|2
+(noun)|Bolivar|Simon Bolivar|El Libertador|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|El Libertador|mountain peak (generic term)
+el misti|1
+(noun)|El Misti|volcano (generic term)
+el muerto|1
+(noun)|El Muerto|mountain peak (generic term)
+el nino|2
+(noun)|El Nino|ocean current (generic term)
+(noun)|El Nino|Jesus (generic term)|Jesus of Nazareth (generic term)|the Nazarene (generic term)|Jesus Christ (generic term)|Christ (generic term)|Savior (generic term)|Saviour (generic term)|Good Shepherd (generic term)|Redeemer (generic term)|Deliverer (generic term)
+el nino southern oscillation|1
+(noun)|El Nino southern oscillation|El Nino (generic term)
+el paso|1
+(noun)|El Paso|city (generic term)|metropolis (generic term)|urban center (generic term)
+el qahira|1
+(noun)|Cairo|Al Qahira|El Qahira|Egyptian capital|capital of Egypt|national capital (generic term)|port (generic term)
+el salvador|1
+(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country (generic term)|Central American nation (generic term)
+el salvadoran colon|1
+(noun)|colon|El Salvadoran colon|El Salvadoran monetary unit (generic term)
+el salvadoran monetary unit|1
+(noun)|El Salvadoran monetary unit|monetary unit (generic term)
+ela|1
+(noun)|Revolutionary People's Struggle|ELA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+elaborate|6
+(adj)|luxuriant|fancy (similar term)
+(adj)|detailed|elaborated|careful (similar term)
+(verb)|lucubrate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|complicate|refine|rarify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|work out|develop (generic term)|make grow (generic term)
+elaborated|1
+(adj)|detailed|elaborate|careful (similar term)
+elaborately|1
+(adv)|intricately|in an elaborate way
+elaborateness|2
+(noun)|elaboration|intricacy|involution|complexity (generic term)|complexness (generic term)
+(noun)|ornateness|appearance (generic term)|visual aspect (generic term)
+elaboration|5
+(noun)|amplification|expansion (generic term)|expanding upon (generic term)
+(noun)|refinement|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|expansion|enlargement|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|elaborateness|intricacy|involution|complexity (generic term)|complexness (generic term)
+(noun)|working out|development (generic term)
+elaeagnaceae|1
+(noun)|Elaeagnaceae|family Elaeagnaceae|oleaster family|dicot family (generic term)|magnoliopsid family (generic term)
+elaeagnus|1
+(noun)|Elaeagnus|genus Elaeagnus|dicot genus (generic term)|magnoliopsid genus (generic term)
+elaeagnus augustifolia|1
+(noun)|Russian olive|silver berry|Elaeagnus augustifolia|oleaster (generic term)
+elaeagnus commutata|1
+(noun)|silverberry|silver berry|silverbush|silver-bush|Elaeagnus commutata|oleaster (generic term)
+elaeagnus latifolia|1
+(noun)|wild olive|Elaeagnus latifolia|oleaster (generic term)
+elaeis|1
+(noun)|Elaeis|genus Elaeis|monocot genus (generic term)|liliopsid genus (generic term)
+elaeis guineensis|1
+(noun)|African oil palm|Elaeis guineensis|oil palm (generic term)
+elaeis oleifera|1
+(noun)|American oil palm|Elaeis oleifera|oil palm (generic term)
+elaeocarpaceae|1
+(noun)|Elaeocarpaceae|family Elaeocarpaceae|elaeocarpus family|dilleniid dicot family (generic term)
+elaeocarpus|1
+(noun)|Elaeocarpus|genus Elaeocarpus|dilleniid dicot genus (generic term)
+elaeocarpus family|1
+(noun)|Elaeocarpaceae|family Elaeocarpaceae|dilleniid dicot family (generic term)
+elaeocarpus grandis|1
+(noun)|quandong|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree (generic term)
+elaeostearic acid|1
+(noun)|eleostearic acid|unsaturated fatty acid (generic term)
+elagatis|1
+(noun)|Elagatis|genus Elagatis|fish genus (generic term)
+elagatis bipinnulata|1
+(noun)|rainbow runner|Elagatis bipinnulata|jack (generic term)
+elaidic acid|1
+(noun)|monounsaturated fatty acid (generic term)|trans fatty acid (generic term)
+elam|1
+(noun)|Elam|Susiana|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+elamite|2
+(noun)|Elamite|White (generic term)|white person (generic term)|Caucasian (generic term)
+(noun)|Elamitic|Elamite|Susian|natural language (generic term)|tongue (generic term)
+elamitic|1
+(noun)|Elamitic|Elamite|Susian|natural language (generic term)|tongue (generic term)
+elan|3
+(noun)|ardor|ardour|zeal|eagerness (generic term)|avidity (generic term)|avidness (generic term)|keenness (generic term)
+(noun)|dash|flair|panache|style|elegance (generic term)
+(noun)|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+elan vital|1
+(noun)|life force|vital force|vitality|force (generic term)
+eland|1
+(noun)|antelope (generic term)
+elanoides|1
+(noun)|Elanoides|genus Elanoides|bird genus (generic term)
+elanoides forficatus|1
+(noun)|swallow-tailed kite|swallow-tailed hawk|Elanoides forficatus|kite (generic term)
+elanus|1
+(noun)|Elanus|genus Elanus|bird genus (generic term)
+elanus leucurus|1
+(noun)|white-tailed kite|Elanus leucurus|kite (generic term)
+elaphe|1
+(noun)|Elaphe|genus Elaphe|reptile genus (generic term)
+elaphe guttata|1
+(noun)|corn snake|red rat snake|Elaphe guttata|rat snake (generic term)
+elaphe obsoleta|1
+(noun)|black rat snake|blacksnake|pilot blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake (generic term)
+elaphure|1
+(noun)|pere david's deer|Elaphurus davidianus|deer (generic term)|cervid (generic term)
+elaphurus|1
+(noun)|Elaphurus|genus Elaphurus|mammal genus (generic term)
+elaphurus davidianus|1
+(noun)|pere david's deer|elaphure|Elaphurus davidianus|deer (generic term)|cervid (generic term)
+elapid|1
+(noun)|elapid snake|snake (generic term)|serpent (generic term)|ophidian (generic term)
+elapid snake|1
+(noun)|elapid|snake (generic term)|serpent (generic term)|ophidian (generic term)
+elapidae|1
+(noun)|Elapidae|family Elapidae|reptile family (generic term)
+elapse|1
+(verb)|lapse|pass|slip by|glide by|slip away|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+elapsed time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+elasmobranch|1
+(noun)|selachian|cartilaginous fish (generic term)|chondrichthian (generic term)
+elasmobranchii|1
+(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class (generic term)
+elastance|1
+(noun)|electrical elastance|electrical phenomenon (generic term)
+elastance unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+elastase|1
+(noun)|enzyme (generic term)
+elastic|4
+(adj)|bouncy (similar term)|live (similar term)|lively (similar term)|resilient (similar term)|springy (similar term)|chewy (similar term)|elasticized (similar term)|elasticised (similar term)|expandable (similar term)|expandible (similar term)|expansible (similar term)|expansile (similar term)|fictile (similar term)|moldable (similar term)|plastic (similar term)|flexible (similar term)|whippy (similar term)|rubbery (similar term)|rubberlike (similar term)|springlike (similar term)|stretch (similar term)|stretchable (similar term)|stretchy (similar term)|viscoelastic (similar term)|flexible (related term)|flexile (related term)|inelastic (antonym)
+(adj)|flexible|pliable|pliant|adaptable (similar term)
+(noun)|rubber band|elastic band|band (generic term)|elastic device (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+elastic band|1
+(noun)|rubber band|elastic|band (generic term)|elastic device (generic term)
+elastic bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+elastic device|1
+(noun)|device (generic term)
+elastic energy|1
+(noun)|elastic potential energy|potential energy (generic term)|P.E. (generic term)
+elastic modulus|1
+(noun)|coefficient of elasticity|modulus of elasticity|modulus (generic term)
+elastic potential energy|1
+(noun)|elastic energy|potential energy (generic term)|P.E. (generic term)
+elastic tissue|1
+(noun)|connective tissue (generic term)
+elasticised|1
+(adj)|elasticized|elastic (similar term)
+elasticity|1
+(noun)|snap|physical property (generic term)|inelasticity (antonym)
+elasticity of shear|1
+(noun)|elasticity (generic term)|snap (generic term)
+elasticized|1
+(adj)|elasticised|elastic (similar term)
+elastin|1
+(noun)|scleroprotein (generic term)|albuminoid (generic term)
+elastomer|1
+(noun)|material (generic term)|stuff (generic term)
+elastoplast|1
+(noun)|Elastoplast|adhesive bandage (generic term)|elastic bandage (generic term)
+elastosis|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+elate|1
+(verb)|lift up|uplift|pick up|intoxicate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|depress (antonym)
+elated|2
+(adj)|exultant (similar term)|exulting (similar term)|jubilant (similar term)|prideful (similar term)|rejoicing (similar term)|triumphal (similar term)|triumphant (similar term)|gladdened (similar term)|exhilarated (similar term)|high (similar term)|in high spirits (similar term)|sublime (similar term)|uplifted (similar term)|euphoric (related term)|happy (related term)|joyous (related term)|dejected (antonym)
+(adj)|gleeful|joyful|jubilant|joyous (similar term)
+elater|1
+(noun)|elaterid beetle|elaterid|beetle (generic term)
+elaterid|1
+(noun)|elaterid beetle|elater|beetle (generic term)
+elaterid beetle|1
+(noun)|elater|elaterid|beetle (generic term)
+elateridae|1
+(noun)|Elateridae|family Elateridae|arthropod family (generic term)
+elating|1
+(adj)|exhilarating|exciting (similar term)
+elation|2
+(noun)|psychological state (generic term)|mental state (generic term)|depression (antonym)
+(noun)|high spirits|lightness|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+elavil|1
+(noun)|amitriptyline|amitriptyline hydrochloride|Elavil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+elbe|1
+(noun)|Elbe|Elbe River|river (generic term)
+elbe river|1
+(noun)|Elbe|Elbe River|river (generic term)
+elbow|7
+(noun)|elbow joint|human elbow|cubitus|cubital joint|articulatio cubiti|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+(noun)|bend (generic term)|curve (generic term)
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+(noun)|cloth covering (generic term)
+(noun)|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(verb)|jostle (generic term)|shove (generic term)
+(verb)|nudge (generic term)|poke at (generic term)|prod (generic term)
+elbow bone|1
+(noun)|ulna|arm bone (generic term)
+elbow grease|1
+(noun)|effort|exertion|travail|sweat|labor (generic term)|labour (generic term)|toil (generic term)
+elbow joint|1
+(noun)|elbow|human elbow|cubitus|cubital joint|articulatio cubiti|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+elbow pad|1
+(noun)|protective garment (generic term)
+elbow room|1
+(noun)|room|way|position (generic term)|spatial relation (generic term)
+elbowing|1
+(noun)|jostle (generic term)|jostling (generic term)
+eld|2
+(noun)|old age|years|age|geezerhood|time of life (generic term)
+(noun)|age|time of life (generic term)
+elder|4
+(adj)|older|sr.|senior (similar term)
+(noun)|senior|adult (generic term)|grownup (generic term)
+(noun)|elderberry bush|shrub (generic term)|bush (generic term)
+(noun)|church officer (generic term)
+elder hand|1
+(noun)|eldest hand|card player (generic term)
+elder statesman|2
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|statesman (generic term)|solon (generic term)|national leader (generic term)
+elderberry|2
+(noun)|bourtree|black elder|common elder|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+(noun)|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+elderberry bush|1
+(noun)|elder|shrub (generic term)|bush (generic term)
+elderly|2
+(adj)|aged|older|senior|old (similar term)
+(noun)|aged|age group (generic term)|age bracket (generic term)|cohort (generic term)|young (antonym)
+eldership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+eldest|2
+(adj)|firstborn|first (similar term)
+(noun)|firstborn|offspring (generic term)|progeny (generic term)|issue (generic term)
+eldest hand|1
+(noun)|elder hand|card player (generic term)
+eldorado|1
+(noun)|El Dorado|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+eldritch|1
+(adj)|weird|uncanny|unearthly|supernatural (similar term)
+eleanor gwyn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+eleanor gwynn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+eleanor gwynne|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+eleanor of aquitaine|1
+(noun)|Eleanor of Aquitaine|queen (generic term)
+eleanor roosevelt|1
+(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+elecampane|1
+(noun)|Inula helenium|inula (generic term)
+elect|4
+(adj)|elite|selected (similar term)
+(adj)|incoming (similar term)
+(noun)|chosen|elite (generic term)|elite group (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+elected|1
+(adj)|elective|electoral (similar term)|nonappointive (similar term)|appointive (antonym)
+elected official|1
+(noun)|official (generic term)|functionary (generic term)
+election|4
+(noun)|vote (generic term)
+(noun)|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|predestination (generic term)|foreordination (generic term)|preordination (generic term)|predetermination (generic term)
+election commission|1
+(noun)|committee (generic term)|commission (generic term)
+election day|1
+(noun)|polling day|day (generic term)
+election district|1
+(noun)|voting precinct|precinct (generic term)
+election fraud|1
+(noun)|fraud (generic term)
+electioneer|1
+(verb)|work (generic term)
+electioneering|2
+(noun)|bell ringing|canvassing|persuasion (generic term)|suasion (generic term)
+(noun)|campaigning|candidacy|candidature|political campaign|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+elective|3
+(adj)|elected|electoral (similar term)|nonappointive (similar term)|appointive (antonym)
+(adj)|optional (similar term)
+(noun)|elective course|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+elective course|1
+(noun)|elective|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+elector|2
+(noun)|voter|citizen (generic term)
+(noun)|Elector|prince (generic term)
+electoral|2
+(adj)|choice|selection|option|pick (related term)
+(adj)|elective (similar term)|elected (similar term)
+electoral college|1
+(noun)|body (generic term)
+electoral system|1
+(noun)|voting system|legal system (generic term)
+electorate|1
+(noun)|citizenry (generic term)|people (generic term)
+electra|1
+(noun)|Electra|mythical being (generic term)
+electra complex|1
+(noun)|Electra complex|complex (generic term)
+electric|4
+(adj)|electrical|physical phenomenon (related term)
+(adj)|tense (similar term)
+(adj)|galvanic|galvanizing|galvanising|exciting (similar term)
+(noun)|electric automobile|electric car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+electric-arc furnace|1
+(noun)|Stassano furnace|electric furnace (generic term)
+electric-discharge lamp|1
+(noun)|gas-discharge lamp|electric lamp (generic term)
+electric-light bulb|1
+(noun)|light bulb|lightbulb|bulb|incandescent lamp|electric light|electric lamp (generic term)
+electric arc|1
+(noun)|discharge|spark|arc|electric discharge|electrical conduction (generic term)
+electric automobile|1
+(noun)|electric|electric car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+electric battery|1
+(noun)|battery|electrical device (generic term)
+electric bell|1
+(noun)|bell (generic term)
+electric bill|1
+(noun)|bill (generic term)|account (generic term)|invoice (generic term)
+electric blanket|1
+(noun)|blanket (generic term)|cover (generic term)
+electric burn|1
+(noun)|burn (generic term)
+electric car|1
+(noun)|electric|electric automobile|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+electric catfish|1
+(noun)|Malopterurus electricus|silurid (generic term)|silurid fish (generic term)
+electric cell|1
+(noun)|cell|electrical device (generic term)
+electric chair|1
+(noun)|chair|death chair|hot seat|instrument of execution (generic term)
+electric charge|1
+(noun)|charge|electrical phenomenon (generic term)
+electric circuit|1
+(noun)|circuit|electrical circuit|electrical device (generic term)
+electric clock|1
+(noun)|clock (generic term)
+electric company|1
+(noun)|power company|power service|light company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+electric cord|1
+(noun)|cord|conductor (generic term)
+electric current|1
+(noun)|current|electrical phenomenon (generic term)
+electric dipole|1
+(noun)|electric doublet|dipole (generic term)
+electric dipole moment|1
+(noun)|dipole moment (generic term)
+electric discharge|1
+(noun)|discharge|spark|arc|electric arc|electrical conduction (generic term)
+electric doublet|1
+(noun)|electric dipole|dipole (generic term)
+electric drill|1
+(noun)|power drill (generic term)
+electric eel|1
+(noun)|Electrophorus electric|cypriniform fish (generic term)
+electric eye|1
+(noun)|photoelectric cell|photoconductive cell|photocell|magic eye|transducer (generic term)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+electric fan|1
+(noun)|blower|fan (generic term)
+electric field|1
+(noun)|field (generic term)|field of force (generic term)|force field (generic term)
+electric fire|1
+(noun)|electric heater|space heater (generic term)
+electric frying pan|1
+(noun)|frying pan (generic term)|frypan (generic term)|skillet (generic term)
+electric furnace|1
+(noun)|furnace (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+electric guitar|1
+(noun)|guitar (generic term)
+electric hammer|1
+(noun)|hammer (generic term)|power hammer (generic term)
+electric healing|1
+(noun)|electrotherapy|galvanism|electrical healing|therapy (generic term)
+electric heater|1
+(noun)|electric fire|space heater (generic term)
+electric lamp|1
+(noun)|lamp (generic term)
+electric light|1
+(noun)|light bulb|lightbulb|bulb|incandescent lamp|electric-light bulb|electric lamp (generic term)
+electric locomotive|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+electric main|1
+(noun)|main (generic term)
+electric meter|1
+(noun)|power meter|meter (generic term)
+electric mixer|1
+(noun)|mixer (generic term)
+electric motor|1
+(noun)|motor (generic term)
+electric organ|1
+(noun)|electronic organ|Hammond organ|organ|electronic instrument (generic term)
+electric outlet|1
+(noun)|wall socket|wall plug|electrical outlet|outlet|electric receptacle|receptacle (generic term)
+electric pig|1
+(noun)|disposal|garbage disposal|kitchen appliance (generic term)
+electric potential|1
+(noun)|potential|potential difference|potential drop|voltage|electrical phenomenon (generic term)
+electric power|1
+(noun)|electrical power|wattage|power (generic term)
+electric range|1
+(noun)|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)|white goods (generic term)
+electric ray|1
+(noun)|crampfish|numbfish|torpedo|ray (generic term)
+electric razor|1
+(noun)|shaver|electric shaver|razor (generic term)
+electric receptacle|1
+(noun)|wall socket|wall plug|electric outlet|electrical outlet|outlet|receptacle (generic term)
+electric refrigerator|1
+(noun)|fridge|refrigerator (generic term)|icebox (generic term)
+electric resistance|1
+(noun)|electrical resistance|impedance|resistance|resistivity|ohmic resistance|electrical phenomenon (generic term)
+electric sander|1
+(noun)|drum sander|sander|smoother|power tool (generic term)
+electric shaver|1
+(noun)|shaver|electric razor|razor (generic term)
+electric shock|3
+(noun)|corporal punishment (generic term)|torture (generic term)|torturing (generic term)
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|electrical shock|shock|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+electric socket|1
+(noun)|socket (generic term)
+electric storm|1
+(noun)|thunderstorm|electrical storm|storm (generic term)|violent storm (generic term)
+electric switch|1
+(noun)|switch|electrical switch|control (generic term)|controller (generic term)
+electric thermometer|1
+(noun)|thermoelectric thermometer|thermel|thermometer (generic term)
+electric toothbrush|1
+(noun)|toothbrush (generic term)
+electric typewriter|1
+(noun)|typewriter (generic term)
+electrical|2
+(adj)|physical phenomenon (related term)
+(adj)|electric|physical phenomenon (related term)
+electrical cable|1
+(noun)|cable (generic term)|line (generic term)|transmission line (generic term)
+electrical capacity|1
+(noun)|capacitance|capacity|electrical phenomenon (generic term)
+electrical circuit|1
+(noun)|circuit|electric circuit|electrical device (generic term)
+electrical condenser|1
+(noun)|capacitor|capacitance|condenser|electrical device (generic term)
+electrical conduction|1
+(noun)|conduction (generic term)|conductivity (generic term)
+electrical contact|1
+(noun)|contact (generic term)|tangency (generic term)
+electrical converter|1
+(noun)|converter (generic term)|convertor (generic term)
+electrical device|1
+(noun)|device (generic term)
+electrical discharge|1
+(noun)|discharge (generic term)
+electrical distributor|1
+(noun)|distributor|distributer|electrical device (generic term)
+electrical disturbance|1
+(noun)|electrical phenomenon (generic term)
+electrical elastance|1
+(noun)|elastance|electrical phenomenon (generic term)
+electrical energy|1
+(noun)|electricity|energy (generic term)
+electrical engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+electrical engineering|1
+(noun)|EE|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+electrical fuse|1
+(noun)|fuse|safety fuse|electrical device (generic term)
+electrical healing|1
+(noun)|electrotherapy|galvanism|electric healing|therapy (generic term)
+electrical line of force|1
+(noun)|line of force (generic term)|field line (generic term)
+electrical outlet|1
+(noun)|wall socket|wall plug|electric outlet|outlet|electric receptacle|receptacle (generic term)
+electrical phenomenon|1
+(noun)|physical phenomenon (generic term)
+electrical plant|1
+(noun)|electrical system|utility (generic term)
+electrical power|1
+(noun)|electric power|wattage|power (generic term)
+electrical relay|1
+(noun)|relay|electrical device (generic term)
+electrical resistance|1
+(noun)|electric resistance|impedance|resistance|resistivity|ohmic resistance|electrical phenomenon (generic term)
+electrical shock|1
+(noun)|electric shock|shock|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+electrical shunt|1
+(noun)|shunt|bypass|conductor (generic term)
+electrical skin response|1
+(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+electrical storm|1
+(noun)|thunderstorm|electric storm|storm (generic term)|violent storm (generic term)
+electrical switch|1
+(noun)|switch|electric switch|control (generic term)|controller (generic term)
+electrical system|2
+(noun)|electrical plant|utility (generic term)
+(noun)|equipment (generic term)
+electrical work|1
+(noun)|trade (generic term)|craft (generic term)
+electrician|1
+(noun)|lineman|linesman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+electricity|3
+(noun)|physical phenomenon (generic term)
+(noun)|electrical energy|energy (generic term)
+(noun)|stir (generic term)
+electrification|2
+(noun)|energizing (generic term)|activating (generic term)|activation (generic term)
+(noun)|exploitation (generic term)|development (generic term)
+electrify|3
+(verb)|agitate (generic term)|rouse (generic term)|turn on (generic term)|charge (generic term)|commove (generic term)|excite (generic term)|charge up (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|wire|adapt (generic term)|accommodate (generic term)
+electrifying|1
+(adj)|thrilling|exciting (similar term)
+electro-acoustic transducer|1
+(noun)|transducer (generic term)
+electrocardiogram|1
+(noun)|cardiogram|EKG|ECG|graph (generic term)|graphical record (generic term)
+electrocardiograph|1
+(noun)|cardiograph|medical instrument (generic term)
+electrocardiographic|1
+(adj)|medical instrument (related term)
+electrocardiography|1
+(noun)|cardiography|diagnostic procedure (generic term)|diagnostic technique (generic term)
+electrocautery|1
+(noun)|thermocautery (generic term)
+electrochemical|1
+(adj)|chemistry|chemical science (related term)
+electrochemical series|1
+(noun)|electromotive series|electromotive force series|series (generic term)
+electrochemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+electroconvulsive therapy|1
+(noun)|electroshock|electroshock therapy|ECT|shock therapy (generic term)|shock treatment (generic term)|electrotherapy (generic term)|galvanism (generic term)|electric healing (generic term)|electrical healing (generic term)
+electrocute|2
+(verb)|kill (generic term)
+(verb)|fry|kill (generic term)
+electrocution|2
+(noun)|burning|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+electrocutioner|1
+(noun)|executioner (generic term)|public executioner (generic term)
+electrode|1
+(noun)|conductor (generic term)
+electrodeposition|1
+(noun)|deposition (generic term)|deposit (generic term)
+electrodermal response|1
+(noun)|galvanic skin response|GSR|psychogalvanic response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+electrodynamometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+electroencephalogram|1
+(noun)|encephalogram|EEG|graph (generic term)|graphical record (generic term)
+electroencephalograph|1
+(noun)|medical instrument (generic term)
+electroencephalographic|1
+(adj)|medical instrument (related term)
+electrograph|2
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|electrical device (generic term)
+electrologist|1
+(noun)|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+electrolysis|2
+(noun)|decomposition (generic term)|decomposition reaction (generic term)|chemical decomposition reaction (generic term)
+(noun)|depilation (generic term)|epilation (generic term)
+electrolyte|1
+(noun)|solution (generic term)
+electrolyte acid|1
+(noun)|battery acid|vitriol (generic term)|oil of vitriol (generic term)|sulfuric acid (generic term)|sulphuric acid (generic term)
+electrolyte balance|1
+(noun)|balance (generic term)
+electrolytic|3
+(adj)|decomposition|decomposition reaction|chemical decomposition reaction (related term)
+(adj)|capacitor|capacitance|condenser|electrical condenser (related term)
+(noun)|electrolytic capacitor|electrolytic condenser|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+electrolytic capacitor|1
+(noun)|electrolytic|electrolytic condenser|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+electrolytic cell|1
+(noun)|cell (generic term)|electric cell (generic term)|voltaic cell (antonym)
+electrolytic condenser|1
+(noun)|electrolytic|electrolytic capacitor|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+electromagnet|1
+(noun)|magnet (generic term)
+electromagnetic|1
+(adj)|magnetism|magnetic attraction|magnetic force (related term)
+electromagnetic delay line|1
+(noun)|delay line (generic term)
+electromagnetic interaction|1
+(noun)|interaction (generic term)|fundamental interaction (generic term)
+electromagnetic intrusion|1
+(noun)|electronic warfare (generic term)|EW (generic term)
+electromagnetic radiation|1
+(noun)|electromagnetic wave|nonparticulate radiation|radiation (generic term)
+electromagnetic spectrum|1
+(noun)|spectrum (generic term)
+electromagnetic unit|1
+(noun)|emu|unit of measurement (generic term)|unit (generic term)
+electromagnetic wave|1
+(noun)|electromagnetic radiation|nonparticulate radiation|radiation (generic term)
+electromagnetics|1
+(noun)|electromagnetism|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+electromagnetism|2
+(noun)|magnetism (generic term)|magnetic attraction (generic term)|magnetic force (generic term)
+(noun)|electromagnetics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+electromechanical|1
+(adj)|mechanical device (related term)
+electromechanical device|1
+(noun)|mechanical device (generic term)
+electrometer|1
+(noun)|meter (generic term)
+electromotive|1
+(adj)|electrical phenomenon (related term)
+electromotive drug administration|1
+(noun)|iontophoresis|ionic medication|iontotherapy|EMDA|therapy (generic term)
+electromotive force|1
+(noun)|voltage|emf|electrical phenomenon (generic term)
+electromotive force series|1
+(noun)|electromotive series|electrochemical series|series (generic term)
+electromotive series|1
+(noun)|electromotive force series|electrochemical series|series (generic term)
+electromyogram|1
+(noun)|EMG|myogram (generic term)
+electromyograph|1
+(noun)|medical instrument (generic term)
+electromyography|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+electron|1
+(noun)|negatron|lepton (generic term)
+electron accelerator|1
+(noun)|collider (generic term)
+electron beam|1
+(noun)|beam|ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+electron gun|1
+(noun)|electrode (generic term)
+electron lens|1
+(noun)|lens|electronic equipment (generic term)
+electron microscope|1
+(noun)|microscope (generic term)
+electron microscopic|1
+(adj)|microscopy (related term)
+electron microscopy|1
+(noun)|microscopy (generic term)
+electron multiplier|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+electron optics|1
+(noun)|electronics (generic term)
+electron orbit|1
+(noun)|orbit|path (generic term)|route (generic term)|itinerary (generic term)
+electron paramagnetic resonance|1
+(noun)|electron spin resonance|ESR|microwave spectroscopy (generic term)
+electron radiation|1
+(noun)|beta radiation|beta ray|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+electron shell|1
+(noun)|group (generic term)|grouping (generic term)
+electron spin resonance|1
+(noun)|ESR|electron paramagnetic resonance|microwave spectroscopy (generic term)
+electron tube|1
+(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|thermionic valve|electronic device (generic term)
+electron volt|1
+(noun)|eV|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+electronegative|1
+(adj)|negative|neutral (antonym)|positive (antonym)
+electronegativity|1
+(noun)|negativity|tendency (generic term)|inclination (generic term)
+electroneutral|1
+(adj)|neutral|positive (antonym)|negative (antonym)
+electronic|2
+(adj)|physics|physical science|natural philosophy (related term)
+(adj)|lepton (related term)
+electronic balance|1
+(noun)|balance (generic term)
+electronic bulletin board|1
+(noun)|bulletin board system|bulletin board|bbs|digital computer (generic term)
+electronic communication|1
+(noun)|transmission (generic term)
+electronic computer|1
+(noun)|computer|computing machine|computing device|data processor|information processing system|machine (generic term)
+electronic converter|1
+(noun)|converter (generic term)|convertor (generic term)
+electronic counter-countermeasures|1
+(noun)|ECCM|electronic warfare (generic term)|EW (generic term)
+electronic countermeasures|1
+(noun)|ECM|electronic warfare (generic term)|EW (generic term)
+electronic data processing|1
+(noun)|EDP|automatic data processing (generic term)|ADP (generic term)
+electronic database|1
+(noun)|on-line database|computer database|electronic information service|database (generic term)
+electronic deception|1
+(noun)|electronic countermeasures (generic term)|ECM (generic term)
+electronic device|1
+(noun)|device (generic term)
+electronic dictionary|1
+(noun)|machine readable dictionary|MRD|lexical database (generic term)
+electronic equipment|1
+(noun)|equipment (generic term)
+electronic fetal monitor|1
+(noun)|electronic foetal monitor|fetal monitor|foetal monitor|monitor (generic term)
+electronic foetal monitor|1
+(noun)|electronic fetal monitor|fetal monitor|foetal monitor|monitor (generic term)
+electronic image|1
+(noun)|bitmap|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+electronic imitative deception|1
+(noun)|imitative electronic deception|electronic deception (generic term)
+electronic information service|1
+(noun)|electronic database|on-line database|computer database|database (generic term)
+electronic instrument|1
+(noun)|musical instrument (generic term)|instrument (generic term)
+electronic jamming|1
+(noun)|jamming|jam|electronic countermeasures (generic term)|ECM (generic term)
+electronic mail|1
+(noun)|e-mail|email|electronic communication (generic term)|snail mail (antonym)|snail mail (antonym)|snail mail (antonym)
+electronic manipulative deception|1
+(noun)|manipulative electronic deception|electronic deception (generic term)
+electronic messaging|1
+(noun)|messaging|electronic communication (generic term)
+electronic network|1
+(noun)|network|system (generic term)
+electronic organ|1
+(noun)|electric organ|Hammond organ|organ|electronic instrument (generic term)
+electronic reconnaissance|1
+(noun)|reconnaissance (generic term)|reconnaissance mission (generic term)
+electronic scanner|1
+(noun)|scanner|detector (generic term)
+electronic signal|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+electronic simulative deception|1
+(noun)|simulative electronic deception|electronic deception (generic term)
+electronic stylus|1
+(noun)|light pen|pointer (generic term)
+electronic surveillance|1
+(noun)|surveillance (generic term)
+electronic text|1
+(noun)|text (generic term)|textual matter (generic term)
+electronic transistor|1
+(noun)|transistor|junction transistor|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+electronic voltmeter|1
+(noun)|voltmeter (generic term)
+electronic warfare|1
+(noun)|EW|military action (generic term)|action (generic term)
+electronic warfare-support measures|1
+(noun)|ESM|electronic warfare (generic term)|EW (generic term)
+electronics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+electronics company|1
+(noun)|company (generic term)
+electronics industry|1
+(noun)|industry (generic term)
+electronics intelligence|1
+(noun)|ELINT|signals intelligence (generic term)|SIGINT (generic term)
+electrophoresis|1
+(noun)|cataphoresis|dielectrolysis|ionophoresis|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+electrophoretic|1
+(adj)|cataphoretic|natural process|natural action|action|activity (related term)
+electrophoridae|1
+(noun)|Electrophoridae|family Electrophoridae|fish family (generic term)
+electrophorus|2
+(noun)|electrostatic generator (generic term)|electrostatic machine (generic term)|Wimshurst machine (generic term)|Van de Graaff generator (generic term)
+(noun)|Electrophorus|genus Electrophorus|fish genus (generic term)
+electrophorus electric|1
+(noun)|electric eel|Electrophorus electric|cypriniform fish (generic term)
+electroplate|2
+(noun)|artifact (generic term)|artefact (generic term)
+(verb)|plate (generic term)
+electroplater|1
+(noun)|plater (generic term)
+electropositive|1
+(adj)|positive|negative (antonym)|neutral (antonym)
+electroretinogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+electroscope|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+electroshock|1
+(noun)|electroconvulsive therapy|electroshock therapy|ECT|shock therapy (generic term)|shock treatment (generic term)|electrotherapy (generic term)|galvanism (generic term)|electric healing (generic term)|electrical healing (generic term)
+electroshock therapy|1
+(noun)|electroconvulsive therapy|electroshock|ECT|shock therapy (generic term)|shock treatment (generic term)|electrotherapy (generic term)|galvanism (generic term)|electric healing (generic term)|electrical healing (generic term)
+electrosleep|1
+(noun)|unconsciousness (generic term)
+electrostatic|1
+(adj)|static|electricity (related term)
+electrostatic bond|1
+(noun)|ionic bond|electrovalent bond|chemical bond (generic term)|bond (generic term)
+electrostatic charge|1
+(noun)|charge (generic term)|electric charge (generic term)
+electrostatic field|1
+(noun)|electric field (generic term)
+electrostatic generator|1
+(noun)|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device (generic term)
+electrostatic machine|1
+(noun)|electrostatic generator|Wimshurst machine|Van de Graaff generator|electrical device (generic term)
+electrostatic printer|1
+(noun)|printer (generic term)|printing machine (generic term)
+electrostatic unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+electrostatics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+electrosurgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+electrotherapist|1
+(noun)|therapist (generic term)|healer (generic term)
+electrotherapy|1
+(noun)|galvanism|electric healing|electrical healing|therapy (generic term)
+electrovalent bond|1
+(noun)|ionic bond|electrostatic bond|chemical bond (generic term)|bond (generic term)
+electrum|1
+(noun)|alloy (generic term)|metal (generic term)
+eleemosynary|1
+(adj)|beneficent|benevolent|philanthropic|charitable (similar term)
+elegance|2
+(noun)|quality (generic term)|inelegance (antonym)
+(noun)|quality (generic term)
+elegant|3
+(adj)|dandified (similar term)|dandyish (similar term)|foppish (similar term)|deluxe (similar term)|de luxe (similar term)|luxe (similar term)|fine (similar term)|high-class (similar term)|high-toned (similar term)|exquisite (similar term)|recherche (similar term)|neat (similar term)|refined (similar term)|tasteful (similar term)|ritzy (similar term)|soigne (similar term)|soignee (similar term)|dignified (related term)|graceful (related term)|refined (related term)|sophisticated (related term)|tasteful (related term)|inelegant (antonym)
+(adj)|graceful|refined|gracious (similar term)
+(adj)|graceful (similar term)
+elegant brodiaea|1
+(noun)|Brodiaea elegans|brodiaea (generic term)
+elegant cat's ears|1
+(noun)|star tulip|Calochortus elegans|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+elegant habenaria|1
+(noun)|elegant Habenaria|Habenaria elegans|rein orchid (generic term)|rein orchis (generic term)
+elegantly|1
+(adv)|inelegantly (antonym)
+elegiac|2
+(adj)|poem|verse form (related term)
+(adj)|sorrowful (similar term)
+elegiac stanza|1
+(noun)|quatrain (generic term)
+elegise|1
+(verb)|elegize|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+elegist|1
+(noun)|poet (generic term)
+elegize|1
+(verb)|elegise|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+elegy|1
+(noun)|lament|poem (generic term)|verse form (generic term)
+element|7
+(noun)|component|constituent|factor|ingredient|part (generic term)|section (generic term)|division (generic term)
+(noun)|chemical element|substance (generic term)|matter (generic term)
+(noun)|component|constituent|part (generic term)|portion (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|straight line (generic term)
+element 104|1
+(noun)|rutherfordium|Rf|unnilquadium|Unq|atomic number 104|chemical element (generic term)|element (generic term)
+element 105|1
+(noun)|dubnium|Db|hahnium|atomic number 105|chemical element (generic term)|element (generic term)
+element 106|1
+(noun)|seaborgium|Sg|atomic number 106|chemical element (generic term)|element (generic term)
+element 107|1
+(noun)|bohrium|Bh|atomic number 107|chemical element (generic term)|element (generic term)
+element 108|1
+(noun)|hassium|Hs|atomic number 108|chemical element (generic term)|element (generic term)
+element 109|1
+(noun)|meitnerium|Mt|atomic number 109|chemical element (generic term)|element (generic term)
+element 110|1
+(noun)|darmstadtium|Ds|atomic number 110|chemical element (generic term)|element (generic term)
+element 111|1
+(noun)|roentgenium|Rg|atomic number 111|chemical element (generic term)|element (generic term)
+element 112|1
+(noun)|ununbium|Uub|atomic number 112|chemical element (generic term)|element (generic term)
+element 113|1
+(noun)|ununtrium|Uut|atomic number 113|chemical element (generic term)|element (generic term)
+element 114|1
+(noun)|ununquadium|Uuq|atomic number 114|chemical element (generic term)|element (generic term)
+element 115|1
+(noun)|ununpentium|Uup|atomic number 115|chemical element (generic term)|element (generic term)
+element 116|1
+(noun)|ununhexium|Uuh|atomic number 116|chemical element (generic term)|element (generic term)
+element of a cone|1
+(noun)|element (generic term)
+element of a cylinder|1
+(noun)|element (generic term)
+elemental|3
+(adj)|substance|matter (related term)
+(adj)|weather|weather condition|atmospheric condition (related term)
+(adj)|elementary|primary|basic (similar term)
+elementary|2
+(adj)|simple|uncomplicated|unproblematic|easy (similar term)
+(adj)|elemental|primary|basic (similar term)
+elementary education|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+elementary geometry|1
+(noun)|parabolic geometry|Euclidean geometry|geometry (generic term)
+elementary particle|1
+(noun)|fundamental particle|particle (generic term)|subatomic particle (generic term)
+elementary school|1
+(noun)|grade school|grammar school|primary school|school (generic term)
+elements|1
+(noun)|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+elemi|1
+(noun)|gum elemi|gum resin (generic term)
+eleocharis|1
+(noun)|Eleocharis|genus Eleocharis|monocot genus (generic term)|liliopsid genus (generic term)
+eleocharis acicularis|1
+(noun)|needle spike rush|needle rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush (generic term)
+eleocharis dulcis|1
+(noun)|water chestnut|Chinese water chestnut|Eleocharis dulcis|spike rush (generic term)
+eleocharis palustris|1
+(noun)|creeping spike rush|Eleocharis palustris|spike rush (generic term)
+eleonora duse|1
+(noun)|Duse|Eleonora Duse|actress (generic term)
+eleostearic acid|1
+(noun)|elaeostearic acid|unsaturated fatty acid (generic term)
+eleotridae|1
+(noun)|Eleotridae|family Eleotridae|fish family (generic term)
+elephant|2
+(noun)|proboscidean (generic term)|proboscidian (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+elephant's-foot|2
+(noun)|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+elephant's ear|2
+(noun)|alocasia|elephant ear|arum (generic term)|aroid (generic term)
+(noun)|conacaste|Enterolobium cyclocarpa|tree (generic term)
+elephant-like|1
+(adj)|animal (similar term)
+elephant-tusk|1
+(noun)|common unicorn plant|devil's claw|common devil's claw|proboscis flower|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+elephant bird|1
+(noun)|aepyornis|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+elephant ear|1
+(noun)|alocasia|elephant's ear|arum (generic term)|aroid (generic term)
+elephant seal|1
+(noun)|sea elephant|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+elephant tree|1
+(noun)|Bursera microphylla|incense tree (generic term)
+elephant yam|1
+(noun)|pungapung|telingo potato|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum (generic term)|aroid (generic term)
+elephantiasis|1
+(noun)|hypertrophy (generic term)
+elephantiasis neuromatosa|1
+(noun)|elephantiasis (generic term)
+elephantiasis scroti|1
+(noun)|chyloderma|elephantiasis (generic term)
+elephantidae|1
+(noun)|Elephantidae|family Elephantidae|mammal family (generic term)
+elephantine|1
+(adj)|gargantuan|giant|jumbo|large (similar term)|big (similar term)
+elephantopus|1
+(noun)|Elephantopus|genus Elephantopus|asterid dicot genus (generic term)
+elephas|1
+(noun)|Elephas|genus Elephas|mammal genus (generic term)
+elephas maximus|1
+(noun)|Indian elephant|Elephas maximus|elephant (generic term)
+elettaria|1
+(noun)|Elettaria|genus Elettaria|monocot genus (generic term)|liliopsid genus (generic term)
+elettaria cardamomum|1
+(noun)|cardamom|cardamon|Elettaria cardamomum|herb (generic term)|herbaceous plant (generic term)
+eleusine|1
+(noun)|Eleusine|genus Eleusine|monocot genus (generic term)|liliopsid genus (generic term)
+eleusine coracana|1
+(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet (generic term)
+eleusine indica|1
+(noun)|yardgrass|yard grass|wire grass|goose grass|Eleusine indica|millet (generic term)
+eleutherodactylus|1
+(noun)|Eleutherodactylus|genus Eleutherodactylus|amphibian genus (generic term)
+eleuthra bark|1
+(noun)|cascarilla bark|sweetwood bark|bark (generic term)
+elevate|3
+(verb)|promote|upgrade|advance|kick upstairs|raise|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+(verb)|raise|lift|get up|bring up|move (generic term)|displace (generic term)|lift up (related term)|lower (antonym)
+(verb)|lift|raise|change (generic term)|alter (generic term)|modify (generic term)
+elevated|3
+(adj)|overhead (similar term)
+(adj)|raised (similar term)
+(noun)|elevated railway|elevated railroad|el|overhead railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+elevated railroad|1
+(noun)|elevated railway|elevated|el|overhead railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+elevated railway|1
+(noun)|elevated railroad|elevated|el|overhead railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+elevation|8
+(noun)|lift|raising|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|acme|height|peak|pinnacle|summit|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|EL|altitude|ALT|angular position (generic term)
+(noun)|natural elevation|geological formation (generic term)|formation (generic term)|natural depression (antonym)
+(noun)|distance (generic term)
+(noun)|leap (generic term)
+(noun)|plan (generic term)|architectural plan (generic term)
+(noun)|aggrandizement|aggrandisement|increase (generic term)|step-up (generic term)
+elevator|2
+(noun)|lift|lifting device (generic term)
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+elevator boy|1
+(noun)|elevator man|liftman|elevator operator (generic term)
+elevator car|1
+(noun)|car|compartment (generic term)
+elevator girl|1
+(noun)|elevator operator (generic term)
+elevator man|1
+(noun)|elevator boy|liftman|elevator operator (generic term)
+elevator operator|1
+(noun)|operator (generic term)|manipulator (generic term)
+elevator shaft|1
+(noun)|shaft (generic term)
+eleven|3
+(adj)|11|xi|cardinal (similar term)
+(noun)|11|XI|large integer (generic term)
+(noun)|football team|team (generic term)|squad (generic term)
+eleven-plus|1
+(noun)|11-plus|examination (generic term)|testing (generic term)
+eleven-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+eleventh|2
+(adj)|11th|ordinal (similar term)
+(noun)|rank (generic term)
+eleventh cranial nerve|1
+(noun)|accessory nerve|spinal accessory|nervus accessorius|cranial nerve (generic term)
+eleventh hour|1
+(noun)|last minute|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+elf|2
+(noun)|hob|gremlin|pixie|pixy|brownie|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|extremely low frequency|ELF|radio frequency (generic term)
+elf cup|1
+(noun)|apothecium (generic term)
+elfin|4
+(adj)|fey|supernatural (similar term)
+(adj)|elflike|small (similar term)|little (similar term)
+(adj)|fairy|faery|faerie|fay|sprite (related term)
+(adj)|elfish|elvish|playful (similar term)
+elfish|1
+(adj)|elfin|elvish|playful (similar term)
+elflike|1
+(adj)|elfin|small (similar term)|little (similar term)
+elgar|1
+(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer (generic term)
+elgin marbles|1
+(noun)|Elgin Marbles|statuary (generic term)
+eli whitney|1
+(noun)|Whitney|Eli Whitney|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+elia|1
+(noun)|Lamb|Charles Lamb|Elia|essayist (generic term)|litterateur (generic term)
+elia kazan|1
+(noun)|Kazan|Elia Kazan|Elia Kazanjoglous|director (generic term)|theater director (generic term)|theatre director (generic term)
+elia kazanjoglous|1
+(noun)|Kazan|Elia Kazan|Elia Kazanjoglous|director (generic term)|theater director (generic term)|theatre director (generic term)
+elias canetti|1
+(noun)|Canetti|Elias Canetti|writer (generic term)|author (generic term)
+elias howe|1
+(noun)|Howe|Elias Howe|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+elicit|3
+(verb)|arouse|enkindle|kindle|evoke|fire|raise|provoke|make (generic term)|create (generic term)
+(verb)|educe|evoke|extract|draw out|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|deduce (generic term)|infer (generic term)|deduct (generic term)|derive (generic term)
+elicitation|1
+(noun)|evocation|induction|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+elicited|1
+(adj)|evoked|induced (similar term)
+elide|1
+(verb)|exclude (generic term)|except (generic term)|leave out (generic term)|leave off (generic term)|omit (generic term)|take out (generic term)
+elie metchnikoff|1
+(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist (generic term)
+elie metchnikov|1
+(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist (generic term)
+elie wiesel|1
+(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+eliel saarinen|1
+(noun)|Saarinen|Eliel Saarinen|architect (generic term)|designer (generic term)
+eliezer wiesel|1
+(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+eligibility|1
+(noun)|qualification (generic term)|making (generic term)|ineligibility (antonym)
+eligible|1
+(adj)|bailable (similar term)|desirable (similar term)|suitable (similar term)|worthy (similar term)|entitled (similar term)|in line (similar term)|legal (similar term)|pensionable (similar term)|qualified (related term)|ineligible (antonym)
+elihu thomson|1
+(noun)|Thomson|Elihu Thomson|electrical engineer (generic term)
+elihu yale|1
+(noun)|Yale|Elihu Yale|philanthropist (generic term)|altruist (generic term)
+elijah|1
+(noun)|Elijah|prophet (generic term)
+elijah muhammad|1
+(noun)|Muhammad|Elijah Muhammad|Black Muslim (generic term)
+eliminate|7
+(verb)|get rid of|do away with|destroy (generic term)|destruct (generic term)
+(verb)|obviate|rid of|necessitate (antonym)
+(verb)|annihilate|extinguish|eradicate|wipe out|decimate|carry off|kill (generic term)
+(verb)|rule out|winnow out|reject
+(verb)|excrete|egest|pass|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+elimination|5
+(noun)|riddance|removal (generic term)|remotion (generic term)
+(noun)|evacuation|excretion|excreting|voiding|discharge (generic term)|emission (generic term)|expelling (generic term)
+(noun)|reasoning by elimination|analysis (generic term)|analytic thinking (generic term)
+(noun)|removal (generic term)|remotion (generic term)
+(noun)|liquidation|murder (generic term)|slaying (generic term)|execution (generic term)
+elimination reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+elimination tournament|1
+(noun)|tournament (generic term)|tourney (generic term)
+eliminator|1
+(noun)|agent (generic term)
+elinor morton hoyt wylie|1
+(noun)|Wylie|Elinor Morton Hoyt Wylie|poet (generic term)
+elint|1
+(noun)|electronics intelligence|ELINT|signals intelligence (generic term)|SIGINT (generic term)
+elinvar|1
+(noun)|chrome-nickel steel|Elinvar|alloy steel (generic term)
+eliomys|1
+(noun)|Eliomys|genus Eliomys|mammal genus (generic term)
+eliot|2
+(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet (generic term)|dramatist (generic term)|playwright (generic term)
+(noun)|Eliot|George Eliot|Mary Ann Evans|writer (generic term)|author (generic term)
+elisa|1
+(noun)|enzyme-linked-immunosorbent serologic assay|ELISA|assay (generic term)
+elisabeth vigee-lebrun|1
+(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter (generic term)
+elisabethville|1
+(noun)|Lubumbashi|Elisabethville|city (generic term)|metropolis (generic term)|urban center (generic term)
+elisha graves otis|1
+(noun)|Otis|Elisha Graves Otis|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+elision|2
+(noun)|omission (generic term)|deletion (generic term)
+(noun)|exception|exclusion|omission (generic term)
+elite|2
+(adj)|elect|selected (similar term)
+(noun)|elite group|upper class (generic term)|upper crust (generic term)
+elite group|1
+(noun)|elite|upper class (generic term)|upper crust (generic term)
+elitism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+elitist|1
+(noun)|moralist (generic term)|egalitarian (antonym)
+elixir|3
+(noun)|liquid (generic term)
+(noun)|philosopher's stone|philosophers' stone|substance (generic term)|matter (generic term)
+(noun)|potion (generic term)|panacea (generic term)|nostrum (generic term)|catholicon (generic term)|cure-all (generic term)
+elixir of life|1
+(noun)|elixir (generic term)
+elixophyllin|1
+(noun)|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator (generic term)
+elizabeth|2
+(noun)|Elizabeth|Elizabeth II|Queen of England (generic term)
+(noun)|Elizabeth|Elizabeth I|Queen of England (generic term)
+elizabeth barrett browning|1
+(noun)|Browning|Elizabeth Barrett Browning|poet (generic term)
+elizabeth cady stanton|1
+(noun)|Stanton|Elizabeth Cady Stanton|suffragist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+elizabeth cleghorn stevenson gaskell|1
+(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer (generic term)|author (generic term)
+elizabeth cochrane seaman|1
+(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist (generic term)
+elizabeth gaskell|1
+(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer (generic term)|author (generic term)
+elizabeth haldane|1
+(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer (generic term)|author (generic term)
+elizabeth i|1
+(noun)|Elizabeth|Elizabeth I|Queen of England (generic term)
+elizabeth ii|1
+(noun)|Elizabeth|Elizabeth II|Queen of England (generic term)
+elizabeth merriwether gilmer|1
+(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist (generic term)
+elizabeth palmer peabody|1
+(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+elizabeth peabody|1
+(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+elizabeth river|1
+(noun)|Elizabeth River|river (generic term)
+elizabeth sanderson haldane|1
+(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer (generic term)|author (generic term)
+elizabeth seaman|1
+(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist (generic term)
+elizabeth seton|1
+(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader (generic term)
+elizabeth taylor|1
+(noun)|Taylor|Elizabeth Taylor|actress (generic term)
+elizabethan|2
+(adj)|Elizabethan|Queen of England (related term)|historic period|age (related term)
+(noun)|Elizabethan|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+elizabethan age|1
+(noun)|Elizabethan age|historic period (generic term)|age (generic term)
+elizabethan sonnet|1
+(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet (generic term)
+elk|1
+(noun)|European elk|moose|Alces alces|deer (generic term)|cervid (generic term)
+elk-wood|1
+(noun)|umbrella tree|umbrella magnolia|elkwood|Magnolia tripetala|magnolia (generic term)
+elk nut|1
+(noun)|buffalo nut|oil nut|fruit (generic term)
+elkhorn fern|1
+(noun)|common staghorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern (generic term)
+elkhound|1
+(noun)|Norwegian elkhound|hound (generic term)|hound dog (generic term)
+elkwood|1
+(noun)|umbrella tree|umbrella magnolia|elk-wood|Magnolia tripetala|magnolia (generic term)
+ell|1
+(noun)|annex (generic term)|annexe (generic term)|extension (generic term)|wing (generic term)
+ella fitzgerald|1
+(noun)|Fitzgerald|Ella Fitzgerald|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+ellas|1
+(noun)|Greece|Hellenic Republic|Ellas|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+ellen price wood|1
+(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer (generic term)|author (generic term)
+elli|1
+(noun)|Elli|Norse deity (generic term)
+ellice islands|1
+(noun)|Tuvalu|Ellice Islands|archipelago (generic term)
+ellington|1
+(noun)|Ellington|Duke Ellington|Edward Kennedy Ellington|jazz musician (generic term)|jazzman (generic term)
+elliott's goldenrod|1
+(noun)|Elliott's goldenrod|goldenrod (generic term)
+ellipse|1
+(noun)|oval|conic section (generic term)|conic (generic term)
+ellipsis|1
+(noun)|eclipsis|omission (generic term)|deletion (generic term)
+ellipsoid|2
+(adj)|ellipsoidal|spheroidal|non-circular|rounded (similar term)
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+ellipsoid of revolution|1
+(noun)|spheroid|round shape (generic term)
+ellipsoidal|1
+(adj)|ellipsoid|spheroidal|non-circular|rounded (similar term)
+elliptic|3
+(adj)|simple (similar term)|unsubdivided (similar term)
+(adj)|egg-shaped|elliptical|oval|oval-shaped|ovate|oviform|ovoid|prolate|rounded (similar term)
+(adj)|elliptical|concise (similar term)
+elliptic geometry|1
+(noun)|Riemannian geometry|non-Euclidean geometry (generic term)
+elliptic leaf|1
+(noun)|simple leaf (generic term)
+elliptical|2
+(adj)|egg-shaped|elliptic|oval|oval-shaped|ovate|oviform|ovoid|prolate|rounded (similar term)
+(adj)|elliptic|concise (similar term)
+ellipticity|1
+(noun)|oblateness|roundedness (generic term)|bulginess (generic term)
+ellis island|1
+(noun)|Ellis Island|island (generic term)
+ellison|1
+(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer (generic term)|author (generic term)
+ellsworth|1
+(noun)|Ellsworth|Oliver Ellsworth|chief justice (generic term)
+ellul|1
+(noun)|Elul|Ellul|Jewish calendar month (generic term)
+elm|2
+(noun)|elm tree|tree (generic term)
+(noun)|elmwood|wood (generic term)
+elm family|1
+(noun)|Ulmaceae|family Ulmaceae|dicot family (generic term)|magnoliopsid family (generic term)
+elm tree|1
+(noun)|elm|tree (generic term)
+elmer ambrose sperry|1
+(noun)|Sperry|Elmer Ambrose Sperry|inventor (generic term)|discoverer (generic term)|artificer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+elmer leopold rice|1
+(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist (generic term)|playwright (generic term)
+elmer reizenstein|1
+(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist (generic term)|playwright (generic term)
+elmer rice|1
+(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist (generic term)|playwright (generic term)
+elmont|1
+(noun)|Elmont|town (generic term)
+elmore john leonard|1
+(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer (generic term)|author (generic term)
+elmore leonard|1
+(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer (generic term)|author (generic term)
+elmwood|1
+(noun)|elm|wood (generic term)
+eln|2
+(noun)|National Liberation Army|ELN|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+elocute|1
+(verb)|declaim (generic term)|recite (generic term)
+elocution|1
+(noun)|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+elocutionary|2
+(adj)|manner of speaking|speech|delivery (related term)
+(adj)|affected (similar term)|unnatural (similar term)
+elocutionist|1
+(noun)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+elodea|1
+(noun)|Elodea|genus Elodea|pondweed|ditchmoss|monocot genus (generic term)|liliopsid genus (generic term)
+elodea canadensis|1
+(noun)|Canadian pondweed|Elodea canadensis|waterweed (generic term)
+elodea densa|1
+(noun)|dense-leaved elodea|Elodea densa|Egeria densa|waterweed (generic term)
+elongate|3
+(adj)|linear|simple (similar term)|unsubdivided (similar term)
+(adj)|elongated|long (similar term)
+(verb)|stretch|lengthen (generic term)
+elongate leaf|1
+(noun)|linear leaf|simple leaf (generic term)
+elongated|2
+(adj)|extended|lengthened|prolonged|long (similar term)
+(adj)|elongate|long (similar term)
+elongation|3
+(noun)|longness (generic term)
+(noun)|extension|addition (generic term)|add-on (generic term)|improver (generic term)
+(noun)|change of shape (generic term)
+elope|1
+(verb)|run off|flee (generic term)|fly (generic term)|take flight (generic term)
+elopement|1
+(noun)|running away (generic term)
+elopidae|1
+(noun)|Elopidae|family Elopidae|fish family (generic term)
+elops|1
+(noun)|Elops|genus Elops|fish genus (generic term)
+elops saurus|1
+(noun)|ladyfish|tenpounder|Elops saurus|tarpon (generic term)|Tarpon atlanticus (generic term)
+eloquence|1
+(noun)|fluency|smoothness|expressive style (generic term)|style (generic term)
+eloquent|1
+(adj)|facile|fluent|silver|silver-tongued|smooth-spoken|articulate (similar term)
+eloquently|2
+(adv)|articulately|inarticulately (antonym)|ineloquently (antonym)
+(adv)|articulately|inarticulately (antonym)
+elsa schiaparelli|1
+(noun)|Schiaparelli|Elsa Schiaparelli|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+elsass|1
+(noun)|Alsace|Alsatia|Elsass|French region (generic term)
+else|1
+(adj)|other (similar term)
+elsholtzia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+elspar|1
+(noun)|asparaginase|Elspar|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+eluate|1
+(noun)|solution (generic term)
+elucidate|2
+(verb)|clarify|clear up|explain (generic term)|explicate (generic term)|obfuscate (antonym)
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+elucidation|2
+(noun)|explanation (generic term)
+(noun)|clarification|illumination|interpretation (generic term)
+elucidative|1
+(adj)|clarifying|instructive (similar term)|informative (similar term)
+elude|3
+(verb)|evade|bilk|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|escape|perplex (generic term)|vex (generic term)|stick (generic term)|get (generic term)|puzzle (generic term)|mystify (generic term)|baffle (generic term)|beat (generic term)|pose (generic term)|bewilder (generic term)|flummox (generic term)|stupefy (generic term)|nonplus (generic term)|gravel (generic term)|amaze (generic term)|dumbfound (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|parry|skirt|dodge|duck|sidestep|avoid (generic term)
+eluding|1
+(noun)|slip|elusion|evasion (generic term)
+elul|1
+(noun)|Elul|Ellul|Jewish calendar month (generic term)
+elusion|1
+(noun)|slip|eluding|evasion (generic term)
+elusive|3
+(adj)|unidentifiable (similar term)
+(adj)|evasive|artful (similar term)
+(adj)|subtle|impalpable (similar term)
+elusiveness|1
+(noun)|unclearness (generic term)
+elute|1
+(verb)|wash (generic term)|rinse (generic term)
+elution|1
+(noun)|extraction (generic term)
+elver|1
+(noun)|eel (generic term)
+elves|1
+(noun)|atmospheric electricity (generic term)
+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 (generic term)|LSD (generic term)
+elvis aron presley|1
+(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star (generic term)
+elvis presley|1
+(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star (generic term)
+elvish|1
+(adj)|elfin|elfish|playful (similar term)
+elwyn brooks white|1
+(noun)|White|E. B. White|Elwyn Brooks White|writer (generic term)|author (generic term)
+ely culbertson|1
+(noun)|Culbertson|Ely Culbertson|card player (generic term)
+elymus|1
+(noun)|Elymus|genus Elymus|monocot genus (generic term)|liliopsid genus (generic term)
+elymus arenarius|1
+(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass (generic term)
+elymus canadensis|1
+(noun)|Canada wild rye|Elymus canadensis|wild rye (generic term)
+elymus caput-medusae|1
+(noun)|medusa's head|Elymus caput-medusae|wild rye (generic term)
+elymus condensatus|1
+(noun)|giant ryegrass|Elymus condensatus|Leymus condensatus|lyme grass (generic term)
+elymus hispidus|1
+(noun)|intermediate wheatgrass|Agropyron intermedium|Elymus hispidus|wheatgrass (generic term)|wheat-grass (generic term)
+elymus trachycaulos|1
+(noun)|slender wheatgrass|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass (generic term)|wheat-grass (generic term)
+elysian|2
+(adj)|Heaven (related term)
+(adj)|divine|inspired|glorious (similar term)
+elysian fields|1
+(noun)|Elysium|Elysian Fields|Heaven (generic term)
+elysium|2
+(noun)|Elysium|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+(noun)|Elysium|Elysian Fields|Heaven (generic term)
+elytron|1
+(noun)|wing case|wing (generic term)
+em|2
+(noun)|mutton|mut|area unit (generic term)|square measure (generic term)
+(noun)|pica em|pica|linear unit (generic term)
+emaciate|2
+(verb)|waste|macerate|enfeeble (generic term)|debilitate (generic term)|drain (generic term)
+(verb)|change state (generic term)|turn (generic term)
+emaciated|1
+(adj)|bony|cadaverous|gaunt|haggard|pinched|skeletal|wasted|thin (similar term)|lean (similar term)
+emaciation|1
+(noun)|bonyness|boniness|gauntness|maceration|leanness (generic term)|thinness (generic term)|spareness (generic term)
+email|2
+(noun)|electronic mail|e-mail|electronic communication (generic term)|snail mail (antonym)|snail mail (antonym)|snail mail (antonym)
+(verb)|e-mail|netmail|telecommunicate (generic term)
+emanate|2
+(verb)|come (generic term)|come up (generic term)
+(verb)|exhale|give forth|emit (generic term)|breathe (generic term)|pass off (generic term)
+emanation|3
+(noun)|substance (generic term)|matter (generic term)
+(noun)|emission|egress (generic term)|egression (generic term)|emergence (generic term)
+(noun)|rise|procession|origin (generic term)|origination (generic term)|inception (generic term)
+emancipate|2
+(verb)|liberate|change state (generic term)|turn (generic term)
+(verb)|manumit|liberate (generic term)|set free (generic term)
+emancipated|2
+(adj)|liberated|free (similar term)
+(adj)|freed|liberated|free (similar term)
+emancipation|1
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+emancipationist|1
+(noun)|abolitionist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+emancipative|1
+(adj)|unrestrictive (similar term)
+emancipator|1
+(noun)|manumitter|liberator (generic term)
+emanuel svedberg|1
+(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+emanuel swedenborg|1
+(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+emarginate|1
+(adj)|rough (similar term)
+emarginate leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+emasculate|3
+(adj)|effeminate|epicene|cissy|sissified|sissyish|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+(verb)|castrate|weaken (generic term)
+(verb)|castrate|demasculinize|demasculinise|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+emasculated|1
+(adj)|cut|gelded|castrated (similar term)|unsexed (similar term)
+emasculation|2
+(noun)|effeminacy (generic term)|effeminateness (generic term)|sissiness (generic term)|softness (generic term)|womanishness (generic term)|unmanliness (generic term)
+(noun)|castration|neutering (generic term)|fixing (generic term)|altering (generic term)
+embalm|1
+(verb)|conserve (generic term)|preserve (generic term)|maintain (generic term)|keep up (generic term)
+embalmer|1
+(noun)|mortician (generic term)|undertaker (generic term)|funeral undertaker (generic term)|funeral director (generic term)
+embalmment|1
+(noun)|preservation (generic term)
+embank|1
+(verb)|enclose (generic term)|hold in (generic term)|confine (generic term)
+embankment|1
+(noun)|mound (generic term)|hill (generic term)
+embargo|3
+(noun)|trade embargo|trade stoppage|trade barrier (generic term)|import barrier (generic term)
+(verb)|ban (generic term)|censor (generic term)
+(verb)|stop (generic term)|halt (generic term)|block (generic term)|kibosh (generic term)
+embark|3
+(verb)|ship|board (generic term)|get on (generic term)|disembark (antonym)
+(verb)|enter|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|venture|go (generic term)|proceed (generic term)|move (generic term)
+embark on|1
+(verb)|start|start up|commence|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+embarkation|1
+(noun)|boarding|embarkment|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)|disembarkation (antonym)
+embarkment|1
+(noun)|boarding|embarkation|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)|disembarkation (antonym)
+embarrass|2
+(verb)|abash|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|obstruct|blockade|block|hinder|stymie|stymy|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+embarrassed|3
+(adj)|abashed|chagrined|discomposed (similar term)
+(adj)|discomfited|uncomfortable (similar term)
+(adj)|humiliated|mortified|ashamed (similar term)
+embarrassing|2
+(adj)|awkward|sticky|unenviable|difficult (similar term)|hard (similar term)
+(adj)|mortifying|unpleasant (similar term)
+embarrassment|4
+(noun)|shame (generic term)
+(noun)|emotional state (generic term)|spirit (generic term)
+(noun)|trouble (generic term)|disembarrassment (antonym)
+(noun)|overplus|plethora|superfluity|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+embassador|1
+(noun)|ambassador|diplomat (generic term)|diplomatist (generic term)
+embassy|2
+(noun)|diplomatic building (generic term)
+(noun)|deputation (generic term)|commission (generic term)|delegation (generic term)|delegacy (generic term)|mission (generic term)
+embattled|3
+(adj)|insecure (similar term)|unsafe (similar term)
+(adj)|prepared (similar term)
+(adj)|battlemented|castled|castellated|crenelated|crenellated|crenelate|crenellate|indented|fancy (similar term)
+embayment|1
+(noun)|bay|body of water (generic term)|water (generic term)
+embed|2
+(verb)|implant|engraft|imbed|plant|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|group (generic term)|aggroup (generic term)
+embedded|2
+(adj)|enclosed (similar term)
+(adj)|integrated (similar term)
+embellish|4
+(verb)|embroider|pad|lard|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|deck|adorn|decorate|grace|beautify|be (generic term)
+(verb)|decorate|adorn|grace|ornament|beautify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|fancify|beautify|prettify|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|uglify (antonym)
+embellished|2
+(adj)|empurpled|over-embellished|purple|rhetorical (similar term)
+(adj)|ornamented|ornate|adorned (similar term)|decorated (similar term)
+embellishment|3
+(noun)|embroidery|expansion (generic term)|enlargement (generic term)|elaboration (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|ornamentation|decoration (generic term)
+ember|1
+(noun)|coal|fragment (generic term)
+ember day|1
+(noun)|Ember Day|Christian holy day (generic term)
+emberiza|1
+(noun)|Emberiza|genus Emberiza|bird genus (generic term)
+emberiza aureola|1
+(noun)|yellow-breasted bunting|Emberiza aureola|bunting (generic term)
+emberiza citrinella|1
+(noun)|yellowhammer|yellow bunting|Emberiza citrinella|bunting (generic term)
+emberiza hortulana|1
+(noun)|ortolan|ortolan bunting|Emberiza hortulana|bunting (generic term)
+emberiza schoeniclus|1
+(noun)|reed bunting|Emberiza schoeniclus|bunting (generic term)
+emberizidae|1
+(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family (generic term)
+embezzle|1
+(verb)|defalcate|peculate|misappropriate|malversate|steal (generic term)
+embezzled|2
+(adj)|misappropriated|illegal (similar term)
+(adj)|taken (similar term)
+embezzlement|1
+(noun)|peculation|defalcation|misapplication|misappropriation|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+embezzler|1
+(noun)|defalcator|peculator|thief (generic term)|stealer (generic term)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+embiodea|1
+(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order (generic term)
+embioptera|1
+(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order (generic term)
+embiotocidae|1
+(noun)|Embiotocidae|family Embiotocidae|fish family (generic term)
+embitter|1
+(verb)|envenom|acerbate
+embitterment|1
+(noun)|unhappiness (generic term)
+emblazon|2
+(verb)|color|colour|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|blazon|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+emblem|2
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|allegory|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+emblematic|2
+(adj)|emblematical|symbolic|symbolical|representative (similar term)
+(adj)|exemplary|typic|typical (similar term)
+emblematical|1
+(adj)|emblematic|symbolic|symbolical|representative (similar term)
+embodied|1
+(adj)|bodied|corporal|corporate|incarnate|corporeal (similar term)|material (similar term)
+embodiment|3
+(noun)|incarnation|avatar|personification (generic term)
+(noun)|shape|concretism (generic term)|concrete representation (generic term)
+(noun)|objectification (generic term)
+embody|3
+(verb)|incarnate|body forth|substantiate|be (generic term)
+(verb)|be|personify|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+(verb)|represent (generic term)
+embolden|1
+(verb)|cheer|hearten|recreate|encourage (generic term)|dishearten (antonym)
+emboldened|1
+(adj)|bold (similar term)
+embolectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+embolic|1
+(adj)|occlusion (related term)|clot|coagulum (related term)
+embolism|2
+(noun)|intercalation|time interval (generic term)|interval (generic term)
+(noun)|occlusion (generic term)
+embolus|1
+(noun)|clot (generic term)|coagulum (generic term)
+embonpoint|2
+(adj)|buxom|chubby|plump|zaftig|zoftig|fat (similar term)
+(noun)|plumpness|roundness|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+emboss|1
+(verb)|boss|stamp|impress (generic term)|imprint (generic term)
+embossed|1
+(adj)|brocaded|raised|adorned (similar term)|decorated (similar term)
+embossment|2
+(noun)|imprint|stamp (generic term)|impression (generic term)
+(noun)|relief|relievo|rilievo|sculptural relief|sculpture (generic term)
+embothrium|1
+(noun)|Embothrium|genus Embothrium|dicot genus (generic term)|magnoliopsid genus (generic term)
+embothrium coccineum|1
+(noun)|Chilean firebush|Chilean flameflower|Embothrium coccineum|shrub (generic term)|bush (generic term)
+embouchure|1
+(noun)|mouthpiece|aperture (generic term)
+embower|1
+(verb)|bower|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+embowered|1
+(adj)|enclosed (similar term)
+embrace|6
+(noun)|embracing|embracement|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+(noun)|inclusion (generic term)
+(noun)|bosom|adoption (generic term)|acceptance (generic term)|acceptation (generic term)|espousal (generic term)
+(verb)|encompass|comprehend|cover|include (generic term)
+(verb)|hug|bosom|squeeze|clasp (generic term)
+(verb)|espouse|adopt|sweep up|accept (generic term)
+embracement|1
+(noun)|embrace|embracing|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+embracing|1
+(noun)|embrace|embracement|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+embrangle|1
+(verb)|snarl|snarl up|complicate (generic term)|perplex (generic term)
+embrasure|1
+(noun)|port|porthole|opening (generic term)
+embrittle|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+embrocate|1
+(verb)|anoint|inunct|oil|anele|bless (generic term)
+embrocation|1
+(noun)|liniment|lotion (generic term)|application (generic term)
+embroider|2
+(verb)|broider|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|pad|lard|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+embroidered|1
+(adj)|adorned (similar term)|decorated (similar term)
+embroiderer|1
+(noun)|needleworker (generic term)
+embroideress|1
+(noun)|embroiderer (generic term)
+embroidery|2
+(noun)|embellishment|expansion (generic term)|enlargement (generic term)|elaboration (generic term)
+(noun)|fancywork|needlework (generic term)|needlecraft (generic term)
+embroidery frame|1
+(noun)|tambour|embroidery hoop|framework (generic term)|frame (generic term)|framing (generic term)
+embroidery hoop|1
+(noun)|tambour|embroidery frame|framework (generic term)|frame (generic term)|framing (generic term)
+embroidery needle|1
+(noun)|darning needle|sewing needle (generic term)
+embroil|1
+(verb)|tangle|sweep|sweep up|drag|drag in|involve (generic term)
+embroiled|1
+(adj)|entangled|involved (similar term)
+embroilment|1
+(noun)|imbroglio|situation (generic term)
+embrown|2
+(verb)|darken (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+embryo|2
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(noun)|conceptus|fertilized egg|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+embryologic|1
+(adj)|embryonic|embryonal|immature (similar term)
+embryologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+embryology|1
+(noun)|biology (generic term)|biological science (generic term)
+embryoma of the kidney|1
+(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|sarcoma (generic term)
+embryonal|1
+(adj)|embryonic|embryologic|immature (similar term)
+embryonal carcinoma|1
+(noun)|carcinoma (generic term)
+embryonal carcinosarcoma|1
+(noun)|blastoma|blastocytoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+embryonal rhabdomyosarcoma|1
+(noun)|embryonal rhabdosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+embryonal rhabdosarcoma|1
+(noun)|embryonal rhabdomyosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+embryonic|2
+(adj)|embryologic|embryonal|immature (similar term)
+(adj)|embryotic|early (similar term)
+embryonic cell|1
+(noun)|formative cell|cell (generic term)
+embryonic membrane|1
+(noun)|caul|veil|fetal membrane (generic term)
+embryonic stem-cell research|1
+(noun)|stem-cell research (generic term)
+embryonic tissue|1
+(noun)|animal tissue (generic term)
+embryotic|1
+(adj)|embryonic|early (similar term)
+emcee|2
+(noun)|master of ceremonies|host|entertainer (generic term)
+(verb)|compere|host (generic term)
+emda|1
+(noun)|iontophoresis|ionic medication|iontotherapy|electromotive drug administration|EMDA|therapy (generic term)
+emeer|1
+(noun)|emir|amir|ameer|ruler (generic term)|swayer (generic term)
+emend|1
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+emendation|1
+(noun)|correction (generic term)|rectification (generic term)
+emended|1
+(adj)|edited|altered (similar term)
+emerald|3
+(noun)|transparent gem (generic term)|beryl (generic term)
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+emerald creeper|1
+(noun)|jade vine|Strongylodon macrobotrys|liana (generic term)
+emerald isle|1
+(noun)|Ireland|Hibernia|Emerald Isle|island (generic term)
+emerald shiner|1
+(noun)|Notropis atherinoides|shiner (generic term)
+emerge|4
+(verb)|issue|come out|come forth|go forth|egress
+(verb)|appear (generic term)
+(verb)|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+(verb)|come forth|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+emergence|4
+(noun)|outgrowth|growth|beginning (generic term)
+(noun)|egress|issue|beginning (generic term)
+(noun)|emersion|appearance (generic term)
+(noun)|egress|egression|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+emergency|3
+(noun)|exigency|pinch|crisis (generic term)
+(noun)|temporary state (generic term)
+(noun)|hand brake|emergency brake|parking brake|brake (generic term)
+emergency alert system|1
+(noun)|Emergency Alert System|EAS|alert (generic term)|alerting (generic term)
+emergency brake|1
+(noun)|hand brake|emergency|parking brake|brake (generic term)
+emergency exit|1
+(noun)|fire escape|stairway (generic term)|staircase (generic term)
+emergency landing|1
+(noun)|forced landing|aircraft landing (generic term)|airplane landing (generic term)
+emergency medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+emergency procedure|1
+(noun)|procedure (generic term)|process (generic term)
+emergency room|1
+(noun)|ER|hospital room (generic term)
+emergent|2
+(adj)|sudden (similar term)
+(adj)|emerging|nascent (similar term)
+emergent evolution|1
+(noun)|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+emerging|2
+(adj)|rising|future (similar term)
+(adj)|emergent|nascent (similar term)
+emeritus|2
+(adj)|retired|old (similar term)
+(noun)|retiree (generic term)|retired person (generic term)
+emersion|2
+(noun)|egress|reappearance (generic term)|immersion (antonym)|ingress (antonym)
+(noun)|emergence|appearance (generic term)
+emerson|1
+(noun)|Emerson|Ralph Waldo Emerson|writer (generic term)|author (generic term)
+emery|1
+(noun)|mineral (generic term)
+emery cloth|1
+(noun)|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+emery paper|1
+(noun)|sandpaper|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+emery rock|1
+(noun)|emery stone|rock (generic term)|stone (generic term)
+emery stone|1
+(noun)|emery rock|rock (generic term)|stone (generic term)
+emery wheel|1
+(noun)|grinding wheel|wheel (generic term)
+emeside|1
+(noun)|ethosuximide|Emeside|Zarontin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+emesis|1
+(noun)|vomit|vomiting|regurgitation|disgorgement|puking|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+emesis basin|1
+(noun)|basin (generic term)
+emetic|1
+(noun)|vomit|vomitive|nauseant|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+emetrol|1
+(noun)|Emetrol|antiemetic (generic term)|antiemetic drug (generic term)
+emf|1
+(noun)|voltage|electromotive force|electrical phenomenon (generic term)
+emg|1
+(noun)|electromyogram|EMG|myogram (generic term)
+emigrant|1
+(noun)|emigre|emigree|outgoer|migrant (generic term)|migrator (generic term)
+emigrate|1
+(verb)|migrate (generic term)|transmigrate (generic term)|immigrate (antonym)
+emigration|1
+(noun)|out-migration|expatriation|migration (generic term)
+emigre|1
+(noun)|emigrant|emigree|outgoer|migrant (generic term)|migrator (generic term)
+emigree|1
+(noun)|emigrant|emigre|outgoer|migrant (generic term)|migrator (generic term)
+emil hermann fischer|1
+(noun)|Fischer|Emil Hermann Fischer|chemist (generic term)
+emil klaus julius fuchs|1
+(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist (generic term)
+emile|1
+(noun)|Emile|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+emile durkheim|1
+(noun)|Durkheim|Emile Durkheim|sociologist (generic term)
+emile gaboriau|1
+(noun)|Gaboriau|Emile Gaboriau|writer (generic term)|author (generic term)
+emile herzog|1
+(noun)|Maurois|Andre Maurois|Emile Herzog|writer (generic term)|author (generic term)
+emile zola|1
+(noun)|Zola|Emile Zola|novelist (generic term)
+emilia|1
+(noun)|Emilia|genus Emilia|asterid dicot genus (generic term)
+emilia-romagna|1
+(noun)|Emilia-Romagna|Italian region (generic term)
+emilia coccinea|1
+(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+emilia flammea|1
+(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+emilia javanica|1
+(noun)|tassel flower|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+emilia sagitta|1
+(noun)|tassel flower|Emilia sagitta|herb (generic term)|herbaceous plant (generic term)
+emiliano zapata|1
+(noun)|Zapata|Emiliano Zapata|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+emilie charlotte le breton|1
+(noun)|Langtry|Lillie Langtry|Jersey Lillie|Emilie Charlotte le Breton|actress (generic term)
+emily bronte|1
+(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer (generic term)|author (generic term)
+emily dickinson|1
+(noun)|Dickinson|Emily Dickinson|poet (generic term)
+emily jane bronte|1
+(noun)|Bronte|Emily Bronte|Emily Jane Bronte|Currer Bell|writer (generic term)|author (generic term)
+emily post|1
+(noun)|Post|Emily Post|Emily Price Post|writer (generic term)|author (generic term)
+emily price post|1
+(noun)|Post|Emily Post|Emily Price Post|writer (generic term)|author (generic term)
+eminence|2
+(noun)|distinction|preeminence|note|high status (generic term)
+(noun)|tuberosity|tubercle|process (generic term)|outgrowth (generic term)|appendage (generic term)
+eminence grise|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+eminent|4
+(adj)|distinguished|important (similar term)|of import (similar term)
+(adj)|high|superior (similar term)
+(adj)|successful (similar term)
+(adj)|lofty|soaring|towering|high (similar term)
+eminent domain|1
+(noun)|legal right (generic term)
+emir|1
+(noun)|amir|emeer|ameer|ruler (generic term)|swayer (generic term)
+emirate|2
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+emissary|1
+(noun)|envoy|representative (generic term)
+emissary vein|1
+(noun)|vena emissaria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+emission|5
+(noun)|emanation|egress (generic term)|egression (generic term)|emergence (generic term)
+(noun)|discharge|material (generic term)|stuff (generic term)
+(noun)|release (generic term)
+(noun)|discharge|expelling|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|flow (generic term)|flowing (generic term)
+emission spectrum|1
+(noun)|spectrum (generic term)
+emit|3
+(verb)|breathe|pass off|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|give out|give off|absorb (antonym)
+(verb)|utter|let out|let loose
+emitter|1
+(noun)|electrode (generic term)
+emma goldman|1
+(noun)|Goldman|Emma Goldman|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+emma hart willard|1
+(noun)|Willard|Emma Hart Willard|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+emmanthe|1
+(noun)|Emmanthe|genus Emmanthe|asterid dicot genus (generic term)
+emmanthe penduliflora|1
+(noun)|yellow bells|California yellow bells|whispering bells|Emmanthe penduliflora|herb (generic term)|herbaceous plant (generic term)
+emmenagogue|1
+(noun)|agent (generic term)
+emmental|1
+(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese (generic term)
+emmentaler|1
+(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese (generic term)
+emmenthal|1
+(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese (generic term)
+emmenthaler|1
+(noun)|Emmenthal|Emmental|Emmenthaler|Emmentaler|Swiss cheese (generic term)
+emmer|1
+(noun)|starch wheat|two-grain spelt|Triticum dicoccum|wheat (generic term)
+emmet|1
+(noun)|ant|pismire|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+emmetropia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+emmetropic|1
+(adj)|ametropic (antonym)
+emmett kelly|1
+(noun)|Kelly|Emmett Kelly|Weary Willie|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+emmy|1
+(noun)|Emmy|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+emmy noether|1
+(noun)|Noether|Emmy Noether|mathematician (generic term)
+emollient|2
+(adj)|demulcent|salving|softening|soft (similar term)
+(noun)|cream|ointment|toiletry (generic term)|toilet article (generic term)
+emolument|1
+(noun)|compensation (generic term)
+emote|1
+(verb)|act (generic term)|play (generic term)|represent (generic term)
+emoticon|1
+(noun)|facial expression (generic term)|facial gesture (generic term)
+emotion|1
+(noun)|feeling (generic term)
+emotional|5
+(adj)|cerebral (antonym)
+(adj)|affectional (similar term)|affective (similar term)|emotive (similar term)|bathetic (similar term)|drippy (similar term)|hokey (similar term)|maudlin (similar term)|mawkish (similar term)|mushy (similar term)|schmaltzy (similar term)|schmalzy (similar term)|sentimental (similar term)|soppy (similar term)|soupy (similar term)|slushy (similar term)|cathartic (similar term)|releasing (similar term)|charged (similar term)|supercharged (similar term)|funky (similar term)|low-down (similar term)|het up (similar term)|hot-blooded (similar term)|Latin (similar term)|little (similar term)|lyric (similar term)|lyrical (similar term)|mind-blowing (similar term)|moody (similar term)|temperamental (similar term)|overemotional (similar term)|sloppy (similar term)|soulful (similar term)|warm-toned (similar term)|moved (related term)|affected (related term)|stirred (related term)|touched (related term)|moving (related term)|passionate (related term)|warm (related term)|unemotional (antonym)
+(adj)|feeling (related term)
+(adj)|effusive|gushing|gushy|demonstrative (similar term)
+(adj)|aroused|excited|worked up|agitated (similar term)
+emotional arousal|1
+(noun)|arousal (generic term)
+emotional disorder|1
+(noun)|affective disorder|major affective disorder|emotional disturbance|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+emotional disturbance|1
+(noun)|affective disorder|major affective disorder|emotional disorder|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+emotional person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|unemotional person (antonym)
+emotional state|1
+(noun)|spirit|emotion (generic term)
+emotionalism|1
+(noun)|emotionality|trait (generic term)|unemotionality (antonym)
+emotionality|1
+(noun)|emotionalism|trait (generic term)|unemotionality (antonym)
+emotionally|1
+(adv)|unemotionally (antonym)
+emotionless|1
+(adj)|passionless|cold (similar term)
+emotionlessness|2
+(noun)|impassivity|impassiveness|phlegm|indifference|stolidity|unemotionality|apathy (generic term)
+(noun)|unemotionality|trait (generic term)|emotionality (antonym)
+emotive|1
+(adj)|affectional|affective|emotional (similar term)
+empale|1
+(verb)|transfix|impale|spike|pierce (generic term)|thrust (generic term)
+empanel|2
+(verb)|impanel|list (generic term)
+(verb)|impanel|panel|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+empathetic|1
+(adj)|empathic|sympathetic (similar term)
+empathetically|1
+(adv)|sympathetically|unsympathetically (antonym)
+empathic|1
+(adj)|empathetic|sympathetic (similar term)
+empathise|1
+(verb)|sympathize|sympathise|empathize|understand
+empathize|1
+(verb)|sympathize|sympathise|empathise|understand
+empathy|1
+(noun)|sympathy (generic term)|fellow feeling (generic term)
+empedocles|1
+(noun)|Empedocles|philosopher (generic term)
+empennage|1
+(noun)|tail|tail assembly|rear (generic term)|back (generic term)
+emperor|4
+(noun)|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+(noun)|vinifera grape (generic term)
+(noun)|emperor moth|Saturnia pavonia|saturniid (generic term)|saturniid moth (generic term)
+(noun)|emperor butterfly|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+emperor butterfly|1
+(noun)|emperor|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+emperor francis ii|1
+(noun)|Francis II|Emperor Francis II|Holy Roman Emperor (generic term)
+emperor moth|1
+(noun)|emperor|Saturnia pavonia|saturniid (generic term)|saturniid moth (generic term)
+emperor napoleon iii|1
+(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|emperor (generic term)
+emperor of rome|1
+(noun)|Roman Emperor|Emperor of Rome|emperor (generic term)
+emperor penguin|1
+(noun)|Aptenodytes forsteri|penguin (generic term)
+empetraceae|1
+(noun)|Empetraceae|family Empetraceae|crowberry family|dicot family (generic term)|magnoliopsid family (generic term)
+empetrum|1
+(noun)|Empetrum|genus Empetrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+emphasis|4
+(noun)|accent|importance (generic term)|grandness (generic term)
+(noun)|vehemence|intensity (generic term)|intensiveness (generic term)
+(noun)|rhetorical device (generic term)
+(noun)|stress|accent|prosody (generic term)|inflection (generic term)
+emphasise|2
+(verb)|underscore|underline|emphasize|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|stress|emphasize|punctuate|accent|accentuate|express (generic term)|show (generic term)|evince (generic term)
+emphasised|1
+(adj)|emphatic|emphasized|stressed (similar term)|accented (similar term)
+emphasize|2
+(verb)|stress|emphasise|punctuate|accent|accentuate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|underscore|underline|emphasise|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+emphasized|1
+(adj)|emphatic|emphasised|stressed (similar term)|accented (similar term)
+emphasizing|1
+(noun)|accenting|accentuation|action (generic term)
+emphatic|3
+(adj)|emphasized|emphasised|stressed (similar term)|accented (similar term)
+(adj)|exclamatory|forceful (similar term)
+(adj)|forceful|assertive (similar term)
+emphatically|1
+(adv)|decidedly|unquestionably|definitely|in spades|by all odds
+emphysema|1
+(noun)|pulmonary emphysema|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+emphysematous|1
+(adj)|respiratory disease|respiratory illness|respiratory disorder (related term)
+emphysematous gangrene|1
+(noun)|gas gangrene|clostridial myonecrosis|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+emphysematous phlegmon|1
+(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+empire|5
+(noun)|imperium|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+(noun)|monarchy (generic term)
+(noun)|conglomerate|corporation (generic term)|corp (generic term)
+(noun)|Empire|eating apple (generic term)|dessert apple (generic term)
+empire day|1
+(noun)|Commonwealth Day|Empire day|May 24|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+empire state|1
+(noun)|New York|New York State|Empire State|NY|American state (generic term)
+empire state of the south|1
+(noun)|Georgia|Empire State of the South|Peach State|GA|American state (generic term)
+empiric|2
+(adj)|empirical|medical practice (related term)
+(adj)|empirical|a posteriori (similar term)|confirmable (similar term)|verifiable (similar term)|falsifiable (similar term)|experiential (similar term)|existential (similar term)|experimental (similar term)|data-based (similar term)|observational (similar term)|experimental (similar term)|semiempirical (similar term)|trial-and-error (similar term)|theoretical (antonym)
+empirical|2
+(adj)|empiric|a posteriori (similar term)|confirmable (similar term)|verifiable (similar term)|falsifiable (similar term)|experiential (similar term)|existential (similar term)|experimental (similar term)|data-based (similar term)|observational (similar term)|experimental (similar term)|semiempirical (similar term)|trial-and-error (similar term)|theoretical (antonym)
+(adj)|empiric|medical practice (related term)
+empirical formula|1
+(noun)|formula (generic term)|chemical formula (generic term)
+empirical research|1
+(noun)|inquiry (generic term)|enquiry (generic term)|research (generic term)
+empirically|1
+(adv)|through empirical observation|by trial and error|theoretically (antonym)
+empiricism|3
+(noun)|empiricist philosophy|sensationalism|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|investigation (generic term)|investigating (generic term)
+(noun)|quackery|medical practice (generic term)
+empiricist|1
+(noun)|philosopher (generic term)
+empiricist philosophy|1
+(noun)|empiricism|sensationalism|philosophical doctrine (generic term)|philosophical theory (generic term)
+empirin|1
+(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin|St. Joseph|salicylate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+emplace|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+emplacement|2
+(noun)|military installation (generic term)
+(noun)|placement|location|locating|position|positioning|activity (generic term)
+emplane|1
+(verb)|enplane|embark (generic term)|ship (generic term)
+employ|3
+(noun)|employment|state (generic term)|unemployment (antonym)
+(verb)|use|utilize|utilise|apply
+(verb)|hire|engage|fire (antonym)
+employable|2
+(adj)|unemployable (antonym)
+(noun)|worker (generic term)
+employed|2
+(adj)|engaged (similar term)|hired (similar term)|working (similar term)|on the job (similar term)|busy (related term)|unemployed (antonym)
+(adj)|made use of|exploited (similar term)
+employee|1
+(noun)|worker (generic term)|employer (antonym)
+employee-owned business|1
+(noun)|employee-owned enterprise|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+employee-owned enterprise|1
+(noun)|employee-owned business|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+employee ownership|1
+(noun)|ownership (generic term)
+employee savings plan|1
+(noun)|plan (generic term)|program (generic term)|programme (generic term)
+employee stock ownership plan|1
+(noun)|ESOP|stock purchase plan (generic term)
+employee turnover|1
+(noun)|turnover rate|turnover|ratio (generic term)
+employer|1
+(noun)|leader (generic term)|employee (antonym)
+employment|4
+(noun)|employ|state (generic term)|unemployment (antonym)
+(noun)|work|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|engagement|action (generic term)
+(noun)|use|usage|utilization|utilisation|exercise|activity (generic term)
+employment agency|1
+(noun)|employment office|agency (generic term)
+employment agent|1
+(noun)|agent (generic term)
+employment agreement|1
+(noun)|employment contract|contract (generic term)
+employment contract|1
+(noun)|employment agreement|contract (generic term)
+employment interview|1
+(noun)|job interview|interview (generic term)
+employment office|1
+(noun)|employment agency|agency (generic term)
+emporium|1
+(noun)|department store|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+empower|2
+(verb)|authorise|authorize|appoint (generic term)|charge (generic term)
+(verb)|endow|indue|gift|invest|endue|enable (generic term)
+empowered|1
+(adj)|sceptered|sceptred|authorized (similar term)|authorised (similar term)
+empowerment|1
+(noun)|authorization|authorisation|management (generic term)|direction (generic term)
+empress|1
+(noun)|emperor (generic term)
+emptiness|4
+(noun)|condition (generic term)|status (generic term)|fullness (antonym)
+(noun)|hunger (generic term)|hungriness (generic term)
+(noun)|void|vacancy|vacuum|space (generic term)
+(noun)|vanity|worthlessness (generic term)|ineptitude (generic term)
+emptor|1
+(noun)|buyer|purchaser|vendee|customer (generic term)|client (generic term)
+empty|11
+(adj)|bare (similar term)|stripped (similar term)|barren (similar term)|destitute (similar term)|devoid (similar term)|innocent (similar term)|blank (similar term)|clean (similar term)|white (similar term)|empty-handed (similar term)|glassy (similar term)|glazed (similar term)|lifeless (similar term)|looted (similar term)|pillaged (similar term)|plundered (similar term)|ransacked (similar term)|vacant (similar term)|vacant (similar term)|vacuous (similar term)|void (similar term)|full (antonym)
+(adj)|hollow|vacuous|meaningless (similar term)|nonmeaningful (similar term)
+(adj)|hollow (similar term)
+(adj)|empty-bellied|hungry (similar term)
+(adj)|drained (similar term)
+(noun)|container (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|fill (antonym)
+(verb)|discharge|change state (generic term)|turn (generic term)|fill (antonym)
+(verb)|vacate|abandon|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|evacuate|void|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+empty-bellied|1
+(adj)|empty|hungry (similar term)
+empty-handed|2
+(adj)|unrewarded|unsuccessful (similar term)
+(adj)|empty (similar term)
+empty-headed|1
+(adj)|airheaded|dizzy|featherbrained|giddy|light-headed|lightheaded|silly|frivolous (similar term)
+empty nester|1
+(noun)|parent (generic term)
+empty talk|1
+(noun)|palaver|hot air|empty words|rhetoric|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+empty words|1
+(noun)|palaver|hot air|empty talk|rhetoric|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+emptying|1
+(noun)|voidance|evacuation|removal (generic term)|remotion (generic term)
+empurple|1
+(verb)|purple|purpurate|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+empurpled|1
+(adj)|embellished|over-embellished|purple|rhetorical (similar term)
+empyema|1
+(noun)|inflammatory disease (generic term)
+empyreal|2
+(adj)|empyrean|surface (related term)
+(adj)|empyrean|sublime|glorious (similar term)
+empyrean|3
+(adj)|empyreal|surface (related term)
+(adj)|empyreal|sublime|glorious (similar term)
+(noun)|celestial sphere|sphere|firmament|heavens|vault of heaven|welkin|surface (generic term)
+emu|2
+(noun)|electromagnetic unit|unit of measurement (generic term)|unit (generic term)
+(noun)|Dromaius novaehollandiae|Emu novaehollandiae|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+emu novaehollandiae|1
+(noun)|emu|Dromaius novaehollandiae|Emu novaehollandiae|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+emulate|3
+(verb)|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|imitate (generic term)
+(verb)|compete (generic term)|vie (generic term)|contend (generic term)
+emulation|3
+(noun)|ambition (generic term)|aspiration (generic term)|dream (generic term)
+(noun)|technique (generic term)
+(noun)|imitation (generic term)
+emulator|1
+(noun)|copycat|imitator|ape|aper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+emulous|2
+(adj)|imitation (related term)
+(adj)|rivalrous|competitive (similar term)|competitory (similar term)
+emulsified|1
+(adj)|blended (similar term)
+emulsifier|1
+(noun)|wetting agent (generic term)|wetter (generic term)|surfactant (generic term)|surface-active agent (generic term)
+emulsify|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|demulsify (antonym)
+(verb)|change state (generic term)|turn (generic term)|demulsify (antonym)
+emulsion|2
+(noun)|colloid (generic term)
+(noun)|photographic emulsion|coating (generic term)|coat (generic term)
+emydidae|1
+(noun)|Emydidae|family Emydidae|reptile family (generic term)
+en|1
+(noun)|nut|linear unit (generic term)
+en-lil|1
+(noun)|Enlil|En-lil|Semitic deity (generic term)
+en bloc|1
+(adv)|en masse|as a group
+en deshabille|1
+(adj)|in dishabille|unclothed (similar term)
+en famille|1
+(adv)|informally
+en garde|1
+(adj)|defensive (similar term)
+en masse|1
+(adv)|en bloc|as a group
+en passant|2
+(noun)|capture (generic term)
+(adv)|in passing
+en route|1
+(adv)|on the way
+enable|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|disable (antonym)
+enabling|1
+(adj)|facultative (similar term)|sanctionative (similar term)|sanctioning (similar term)|disabling (antonym)
+enabling act|1
+(noun)|enabling clause|legislative act (generic term)|statute (generic term)
+enabling clause|1
+(noun)|enabling act|legislative act (generic term)|statute (generic term)
+enabling legislation|1
+(noun)|legislation (generic term)|statute law (generic term)
+enact|2
+(verb)|ordain|decree (generic term)
+(verb)|reenact|act out|act (generic term)|play (generic term)|represent (generic term)
+enactment|3
+(noun)|passage|legislation (generic term)|legislating (generic term)|lawmaking (generic term)
+(noun)|act|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|portrayal|characterization|personation|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+enalapril|1
+(noun)|Vasotec|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+enallage|1
+(noun)|rhetorical device (generic term)
+enamel|5
+(noun)|tooth enamel|solid body substance (generic term)
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|paint (generic term)
+(noun)|coating (generic term)|coat (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+enameled|1
+(adj)|adorned (similar term)|decorated (similar term)
+enamelware|1
+(noun)|cooking utensil (generic term)|cookware (generic term)
+enamine|1
+(noun)|amine (generic term)|aminoalkane (generic term)
+enamor|1
+(verb)|capture|enamour|trance|catch|becharm|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+enamored|1
+(adj)|crazy|dotty|gaga|infatuated|in love|smitten|soft on|taken with|loving (similar term)
+enamoredness|1
+(noun)|amorousness|love (generic term)
+enamour|1
+(verb)|capture|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+enanthem|1
+(noun)|enanthema|eruption (generic term)
+enanthema|1
+(noun)|enanthem|eruption (generic term)
+enantiomer|1
+(noun)|enantiomorph|compound (generic term)|chemical compound (generic term)
+enantiomorph|1
+(noun)|enantiomer|compound (generic term)|chemical compound (generic term)
+enantiomorphism|1
+(noun)|mirror-image relation|opposition (generic term)
+enarthrodial joint|1
+(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrosis|articulatio spheroidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+enarthrosis|1
+(noun)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|articulatio spheroidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+enate|2
+(adj)|enatic|maternal|related (similar term)
+(noun)|matrikin|matrilineal kin|matrisib|matrilineal sib|relative (generic term)|relation (generic term)
+enatic|1
+(adj)|enate|maternal|related (similar term)
+enation|2
+(noun)|matrilineage|cognation|unilateral descent (generic term)
+(noun)|plant process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+enbrel|1
+(noun)|etanercept|Enbrel|anti-TNF compound (generic term)
+encainide|1
+(noun)|Enkaid|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+encamp|1
+(verb)|camp|camp out|bivouac|tent|dwell (generic term)|live (generic term)|inhabit (generic term)
+encampment|3
+(noun)|campsite|campground|camping site|camping ground|bivouac|camping area|site (generic term)|land site (generic term)
+(noun)|camp|cantonment|bivouac|military quarters (generic term)
+(noun)|camping|bivouacking|tenting|inhabitancy (generic term)|inhabitation (generic term)|habitation (generic term)
+encapsulate|2
+(verb)|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|capsule|capsulize|capsulise|digest (generic term)|condense (generic term)|concentrate (generic term)
+encapsulation|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|process (generic term)|physical process (generic term)
+encase|1
+(verb)|incase|case|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+encased|1
+(adj)|cased|incased|sheathed (similar term)
+encasement|1
+(noun)|incasement|enclosure (generic term)|enclosing (generic term)|envelopment (generic term)|inclosure (generic term)
+encaustic|1
+(noun)|paint (generic term)
+enceinte|1
+(adj)|big|expectant|gravid|great|large|heavy|with child|pregnant (similar term)
+encelia|1
+(noun)|Encelia|genus Encelia|asterid dicot genus (generic term)
+encelia farinosa|1
+(noun)|brittlebush|brittle bush|incienso|Encelia farinosa|wildflower (generic term)|wild flower (generic term)
+enceliopsis|1
+(noun)|Enceliopsis|genus Enceliopsis|asterid dicot genus (generic term)
+enceliopsis nudicaulis|1
+(noun)|sunray|Enceliopsis nudicaulis|wildflower (generic term)|wild flower (generic term)
+encephalartos|1
+(noun)|cycad (generic term)
+encephalartos caffer|1
+(noun)|kaffir bread|Encephalartos caffer|cycad (generic term)
+encephalitis|1
+(noun)|cephalitis|phrenitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+encephalitis lethargica|1
+(noun)|sleeping sickness|sleepy sickness|epidemic encephalitis|lethargic encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+encephalocele|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+encephalogram|2
+(noun)|electroencephalogram|EEG|graph (generic term)|graphical record (generic term)
+(noun)|pneumoencephalogram|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+encephalography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+encephalomeningitis|1
+(noun)|meningoencephalitis|cerebromeningitis|meningitis (generic term)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+encephalomyelitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+encephalon|1
+(noun)|brain|neural structure (generic term)
+encephalopathy|1
+(noun)|brain disorder|brain disease|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+enchain|1
+(verb)|restrain (generic term)|confine (generic term)|hold (generic term)
+enchained|1
+(adj)|chained|in chains|bound (similar term)
+enchant|3
+(verb)|enrapture|transport|enthrall|ravish|enthral|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|attract (generic term)|appeal (generic term)
+(verb)|hex|bewitch|glamour|witch|jinx|charm (generic term)|becharm (generic term)
+enchanted|1
+(adj)|beguiled (similar term)|captivated (similar term)|charmed (similar term)|delighted (similar term)|enthralled (similar term)|entranced (similar term)|bewitched (similar term)|ensorcelled (similar term)|fascinated (similar term)|hypnotized (similar term)|hypnotised (similar term)|mesmerized (similar term)|mesmerised (similar term)|spellbound (similar term)|spell-bound (similar term)|transfixed (similar term)|disenchanted (antonym)
+enchanter|1
+(noun)|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+enchanter's nightshade|1
+(noun)|evening primrose (generic term)
+enchanting|1
+(adj)|bewitching|captivating|enthralling|entrancing|fascinating|attractive (similar term)
+enchantingly|1
+(adv)|bewitchingly|captivatingly|enthrallingly
+enchantment|3
+(noun)|captivation|enthrallment|fascination|liking (generic term)
+(noun)|spell|trance|psychological state (generic term)|mental state (generic term)
+(noun)|bewitchment|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+enchantress|2
+(noun)|temptress|siren|Delilah|femme fatale|woman (generic term)|adult female (generic term)
+(noun)|witch|occultist (generic term)
+enchilada|1
+(noun)|dish (generic term)
+enchiridion|1
+(noun)|handbook|vade mecum|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+enchondroma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+encipher|1
+(verb)|encode|code|cipher|cypher|encrypt|inscribe|write in code|write (generic term)|decode (antonym)
+encircle|3
+(verb)|surround|environ|circle|round|ring|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|circle|shape (generic term)|form (generic term)
+(verb)|gird|bind (generic term)
+encircled|3
+(adj)|surrounded|enclosed (similar term)
+(adj)|enclosed (similar term)
+(adj)|ringed|wreathed|adorned (similar term)|decorated (similar term)
+encirclement|1
+(noun)|blockade|military action (generic term)|action (generic term)
+encircling|1
+(adj)|skirting|peripheral (similar term)
+enclave|1
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+enclose|4
+(verb)|envelop|enfold|enwrap|wrap|cover (generic term)
+(verb)|hold in|confine|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|close in|inclose|shut in|surround (generic term)|skirt (generic term)|border (generic term)
+(verb)|insert|inclose|stick in|put in|introduce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+enclosed|1
+(adj)|basined (similar term)|besieged (similar term)|boxed (similar term)|boxed-in (similar term)|boxed in (similar term)|capsulate (similar term)|capsulated (similar term)|clathrate (similar term)|closed (similar term)|closed in (similar term)|coarctate (similar term)|confined (similar term)|fenced in (similar term)|penned (similar term)|embedded (similar term)|embowered (similar term)|encircled (similar term)|engulfed (similar term)|enveloped (similar term)|swallowed (similar term)|enwrapped (similar term)|fenced (similar term)|fencelike (similar term)|fogbound (similar term)|included (similar term)|involved (similar term)|self-enclosed (similar term)|surrounded (similar term)|encircled (similar term)|unenclosed (antonym)
+enclosed space|1
+(noun)|cavity|space (generic term)
+enclosing|1
+(noun)|enclosure|envelopment|inclosure|insertion (generic term)|introduction (generic term)|intromission (generic term)
+enclosure|4
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|enclosing|envelopment|inclosure|insertion (generic term)|introduction (generic term)|intromission (generic term)
+(noun)|natural enclosure|space (generic term)
+(noun)|inclosure|document (generic term)|written document (generic term)|papers (generic term)
+enclothe|1
+(verb)|dress|clothe|garb|raiment|tog|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+encode|1
+(verb)|code|encipher|cipher|cypher|encrypt|inscribe|write in code|write (generic term)|decode (antonym)
+encoding|1
+(noun)|encryption|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+encolure|1
+(noun)|mane (generic term)
+encomiastic|1
+(adj)|eulogistic|panegyric|panegyrical|complimentary (similar term)
+encomium|1
+(noun)|eulogy|panegyric|paean|pean|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+encompass|1
+(verb)|embrace|comprehend|cover|include (generic term)
+encompassing|2
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|extensive|panoptic|wide|comprehensive (similar term)
+(adj)|surrounding|circumferent|close (similar term)
+encompassment|1
+(noun)|inclusion (generic term)
+encopresis|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+encore|2
+(noun)|performance (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+encounter|9
+(noun)|brush|clash|skirmish|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|meeting|convergence (generic term)
+(noun)|coming upon|joining (generic term)|connection (generic term)|connexion (generic term)
+(noun)|confrontation|showdown|face-off|disagreement (generic term)
+(verb)|meet|run into|run across|come across|see
+(verb)|find|happen|chance|bump
+(verb)|run into|be (generic term)
+(verb)|meet|receive|have (generic term)|experience (generic term)
+(verb)|meet|play|take on
+encounter group|1
+(noun)|psychotherapy group (generic term)
+encourage|3
+(verb)|promote|advance|boost|further|support (generic term)|back up (generic term)
+(verb)|inspire (generic term)|animate (generic term)|invigorate (generic term)|enliven (generic term)|exalt (generic term)|discourage (antonym)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+encouraged|1
+(adj)|bucked up|pleased (similar term)
+encouragement|3
+(noun)|approval (generic term)|commendation (generic term)|discouragement (antonym)
+(noun)|boost|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|hope (generic term)
+encouraging|2
+(adj)|exhortative (similar term)|exhortatory (similar term)|hortative (similar term)|hortatory (similar term)|heartening (similar term)|inspiriting (similar term)|promotive (similar term)|rallying (similar term)|helpful (related term)|hopeful (related term)|reassuring (related term)|discouraging (antonym)
+(adj)|supporting|supportive (similar term)
+encouragingly|1
+(adv)|discouragingly (antonym)
+encrimson|1
+(verb)|redden (generic term)
+encroach|2
+(verb)|infringe|impinge|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|impinge|entrench|trench|trespass (generic term)|take advantage (generic term)
+encroach upon|1
+(verb)|intrude on|invade|obtrude upon|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+encroacher|1
+(noun)|invader|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+encroaching|1
+(adj)|invasive|trespassing|intrusive (similar term)
+encroachment|3
+(noun)|invasion|intrusion|entrance (generic term)|entering (generic term)
+(noun)|trespass|violation|intrusion|usurpation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|impingement|impact|influence (generic term)
+encrust|3
+(verb)|incrust|coat (generic term)|surface (generic term)
+(verb)|incrust|beset|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|incrust|harden (generic term)|indurate (generic term)
+encrustation|3
+(noun)|incrustation|formation (generic term)
+(noun)|crust|incrustation|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|incrustation|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+encrusted|1
+(adj)|crusted|crusty|crustlike|covered (similar term)
+encrypt|1
+(verb)|encode|code|encipher|cipher|cypher|inscribe|write in code|write (generic term)|decode (antonym)
+encryption|1
+(noun)|encoding|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+enculturation|1
+(noun)|socialization|socialisation|acculturation|social control (generic term)
+encumber|1
+(verb)|restrain|cumber|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+encumbered|1
+(adj)|burdened (similar term)|heavy-laden (similar term)|loaded down (similar term)|clogged (similar term)|involved (similar term)|mired (similar term)|mortgaged (similar term)|unencumbered (antonym)
+encumbrance|3
+(noun)|burden|load|incumbrance|onus|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+(noun)|incumbrance|charge (generic term)
+(noun)|hindrance|hinderance|hitch|preventive|preventative|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+encyclia|1
+(noun)|Encyclia|genus Encyclia|monocot genus (generic term)|liliopsid genus (generic term)
+encyclia citrina|1
+(noun)|tulip orchid|Encyclia citrina|Cattleya citrina|orchid (generic term)|orchidaceous plant (generic term)
+encyclia tampensis|1
+(noun)|butterfly orchid|Encyclia tampensis|Epidendrum tampense|orchid (generic term)|orchidaceous plant (generic term)
+encyclia venosa|1
+(noun)|butterfly orchid|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid (generic term)|orchidaceous plant (generic term)
+encyclical|2
+(adj)|distributed (similar term)
+(noun)|encyclical letter|letter (generic term)|missive (generic term)
+encyclical letter|1
+(noun)|encyclical|letter (generic term)|missive (generic term)
+encyclopaedia|1
+(noun)|encyclopedia|cyclopedia|cyclopaedia|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+encyclopaedic|1
+(adj)|encyclopedic|comprehensive (similar term)
+encyclopaedism|1
+(noun)|eruditeness|erudition|learnedness|learning|scholarship|encyclopedism|education (generic term)
+encyclopaedist|1
+(noun)|encyclopedist|compiler|writer (generic term)|author (generic term)
+encyclopedia|1
+(noun)|cyclopedia|encyclopaedia|cyclopaedia|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+encyclopedic|1
+(adj)|encyclopaedic|comprehensive (similar term)
+encyclopedism|1
+(noun)|eruditeness|erudition|learnedness|learning|scholarship|encyclopaedism|education (generic term)
+encyclopedist|1
+(noun)|encyclopaedist|compiler|writer (generic term)|author (generic term)
+encysted|1
+(adj)|pathology (related term)
+end|17
+(noun)|extremity (generic term)
+(noun)|ending|point (generic term)|point in time (generic term)|beginning (antonym)|middle (antonym)
+(noun)|last|final stage|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|goal|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|part (generic term)|section (generic term)|division (generic term)|beginning (antonym)|middle (antonym)
+(noun)|destruction|death|state (generic term)
+(noun)|surface (generic term)
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|contribution (generic term)|part (generic term)|share (generic term)
+(noun)|conclusion|close|closing|ending|section (generic term)|subdivision (generic term)
+(noun)|remainder|remnant|oddment|piece of cloth (generic term)|piece of material (generic term)
+(noun)|lineman (generic term)
+(verb)|stop|finish|terminate|cease|begin (antonym)
+(verb)|terminate|change (generic term)|alter (generic term)|modify (generic term)|begin (antonym)|begin (antonym)
+(verb)|terminate|be (generic term)
+(verb)|destroy (generic term)|destruct (generic term)
+end-all|1
+(noun)|goal (generic term)|end (generic term)
+end-plate|1
+(noun)|endplate|motor end plate|end organ (generic term)
+end-rhymed|1
+(adj)|rhymed (similar term)|rhyming (similar term)|riming (similar term)
+end-stopped|1
+(adj)|run-on (antonym)
+end-to-end|2
+(adj)|lengthwise (similar term)|lengthways (similar term)
+(adv)|throughout
+end game|1
+(noun)|endgame|end (generic term)|last (generic term)|final stage (generic term)
+end man|2
+(noun)|corner man|minstrel (generic term)
+(noun)|acquaintance (generic term)|friend (generic term)
+end matter|1
+(noun)|back matter|matter (generic term)
+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 (generic term)
+(noun)|doom|doomsday|day of reckoning|destiny (generic term)|fate (generic term)
+end on|1
+(adv)|endways|endwise
+end organ|1
+(noun)|organ (generic term)
+end point|2
+(noun)|endpoint|termination|terminus|end (generic term)
+(noun)|resultant|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+end product|1
+(noun)|output|product (generic term)|production (generic term)
+end run|1
+(noun)|sweep|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+end up|1
+(verb)|finish up|land up|fetch up|wind up|finish|act (generic term)|move (generic term)
+end user|1
+(noun)|user (generic term)
+endaemonism|1
+(noun)|eudemonism|ethics (generic term)|moral philosophy (generic term)
+endameba|1
+(noun)|ameba (generic term)|amoeba (generic term)
+endamoeba|1
+(noun)|Endamoeba|genus Endamoeba|protoctist genus (generic term)
+endamoeba histolytica|1
+(noun)|Endamoeba histolytica|endameba (generic term)
+endamoebidae|1
+(noun)|Endamoebidae|family Endamoebidae|family (generic term)
+endanger|2
+(verb)|jeopardize|jeopardise|menace|threaten|imperil|peril|exist (generic term)|be (generic term)
+(verb)|queer|expose|scupper|peril|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+endangered|1
+(adj)|vulnerable (similar term)
+endangered species|1
+(noun)|species (generic term)
+endangerment|1
+(noun)|hazard|jeopardy|peril|risk|danger (generic term)
+endarterectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+endarteritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+endear|1
+(verb)|please (generic term)|delight (generic term)
+endearing|1
+(adj)|adorable|lovely|lovable (similar term)|loveable (similar term)
+endearingly|1
+(adv)|adorably
+endearment|1
+(noun)|kindness (generic term)|benignity (generic term)
+endeavor|3
+(noun)|enterprise|endeavour|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|attempt|effort|endeavour|try|activity (generic term)
+(verb)|endeavour|strive|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+endeavour|3
+(noun)|enterprise|endeavor|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|attempt|effort|endeavor|try|activity (generic term)
+(verb)|endeavor|strive|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+endecott|1
+(noun)|Endecott|Endicott|John Endecott|John Endicott|settler (generic term)|colonist (generic term)
+ended|1
+(adj)|complete|concluded|over|all over|terminated|finished (similar term)
+endemic|5
+(adj)|endemical|enzootic (similar term)|epidemic (antonym)|ecdemic (antonym)
+(adj)|cosmopolitan (antonym)
+(adj)|autochthonal|autochthonic|autochthonous|indigenous|native (similar term)
+(noun)|endemic disease|disease (generic term)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+endemic disease|1
+(noun)|endemic|disease (generic term)
+endemic typhus|1
+(noun)|murine typhus|rat typhus|urban typhus|typhus (generic term)|typhus fever (generic term)
+endemical|1
+(adj)|endemic|enzootic (similar term)|epidemic (antonym)|ecdemic (antonym)
+endemism|1
+(noun)|indigenousness|autochthony|nativeness (generic term)
+enderby land|1
+(noun)|Enderby Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+endermatic|1
+(adj)|endermic|connective tissue|body covering (related term)
+endermic|1
+(adj)|endermatic|connective tissue|body covering (related term)
+endgame|1
+(noun)|end game|end (generic term)|last (generic term)|final stage (generic term)
+endicott|1
+(noun)|Endecott|Endicott|John Endecott|John Endicott|settler (generic term)|colonist (generic term)
+ending|5
+(noun)|termination|morpheme (generic term)
+(noun)|termination|conclusion|change of state (generic term)
+(noun)|end|point (generic term)|point in time (generic term)|beginning (antonym)|middle (antonym)
+(noun)|conclusion|finish|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|beginning (antonym)
+(noun)|conclusion|end|close|closing|section (generic term)|subdivision (generic term)
+endive|2
+(noun)|witloof|Cichorium endivia|herb (generic term)|herbaceous plant (generic term)
+(noun)|chicory escarole|escarole|salad green (generic term)|salad greens (generic term)
+endless|5
+(adj)|eternal|interminable|long (similar term)
+(adj)|infinite (similar term)
+(adj)|dateless|sempiternal|infinite (similar term)
+(adj)|continuous (similar term)|uninterrupted (similar term)
+(adj)|incessant|perpetual|continual (similar term)
+endlessly|4
+(adv)|infinitely|finitely (antonym)
+(adv)|ceaselessly|incessantly|unceasingly|unendingly|continuously
+(adv)|without end
+(adv)|interminably
+endlessness|1
+(noun)|duration (generic term)|length (generic term)
+endmost|1
+(adj)|terminal|last (similar term)
+endoblast|1
+(noun)|endoderm|entoderm|entoblast|hypoblast|germ layer (generic term)
+endocarditis|1
+(noun)|carditis (generic term)
+endocardium|1
+(noun)|serous membrane (generic term)|serosa (generic term)
+endocarp|1
+(noun)|stone|pit|pericarp (generic term)|seed vessel (generic term)
+endocentric|1
+(adj)|exocentric (antonym)
+endocervicitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+endocranium|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+endocrinal|1
+(adj)|endocrine|gland|secretory organ|secretor|secreter (related term)|exocrine (antonym)
+endocrine|3
+(adj)|endocrinal|gland|secretory organ|secretor|secreter (related term)|exocrine (antonym)
+(noun)|hormone|internal secretion|secretion (generic term)
+(noun)|endocrine gland|ductless gland|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+endocrine gland|1
+(noun)|endocrine|ductless gland|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+endocrine system|1
+(noun)|system (generic term)
+endocrinologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+endocrinology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+endoderm|1
+(noun)|entoderm|endoblast|entoblast|hypoblast|germ layer (generic term)
+endodontia|1
+(noun)|endodontics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+endodontic|1
+(adj)|dentistry|dental medicine|odontology (related term)
+endodontics|1
+(noun)|endodontia|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+endodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+endoergic|1
+(adj)|energy-absorbing|endothermic (related term)|endothermal (related term)|heat-absorbing (related term)|exoergic (antonym)
+endoergic reaction|1
+(noun)|nuclear reaction (generic term)
+endogamic|2
+(adj)|endogamous|exogamous (antonym)|autogamous (antonym)
+(adj)|endogamous|exogamous (antonym)
+endogamous|2
+(adj)|endogamic|exogamous (antonym)|autogamous (antonym)
+(adj)|endogamic|exogamous (antonym)
+endogamy|1
+(noun)|intermarriage|inmarriage|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)|exogamy (antonym)
+endogen|1
+(noun)|monocot|monocotyledon|liliopsid|angiosperm (generic term)|flowering plant (generic term)
+endogenetic|1
+(adj)|endogenic|integrative (similar term)
+endogenic|2
+(adj)|endogenous|exogenic (antonym)|exogenous (antonym)
+(adj)|endogenetic|integrative (similar term)
+endogenous|2
+(adj)|angiosperm|flowering plant (related term)
+(adj)|endogenic|exogenic (antonym)|exogenous (antonym)
+endogenous depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+endogeny|1
+(noun)|geological phenomenon (generic term)
+endolymph|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+endometrial|1
+(adj)|mucous membrane|mucosa (related term)
+endometrial cancer|1
+(noun)|endometrial carcinoma|carcinoma (generic term)
+endometrial carcinoma|1
+(noun)|endometrial cancer|carcinoma (generic term)
+endometriosis|1
+(noun)|adenomyosis|pathology (generic term)
+endometritis|1
+(noun)|metritis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+endometrium|1
+(noun)|mucous membrane (generic term)|mucosa (generic term)
+endomorph|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+endomorphic|1
+(adj)|pyknic|fat (similar term)|rounded (similar term)|fat (related term)|mesomorphic (antonym)|ectomorphic (antonym)
+endomorphy|1
+(noun)|pyknic type|body type (generic term)|somatotype (generic term)
+endomycetales|1
+(noun)|Endomycetales|order Endomycetales|fungus order (generic term)
+endoneurium|1
+(noun)|connective tissue (generic term)
+endonuclease|1
+(noun)|nuclease (generic term)
+endoparasite|1
+(noun)|entoparasite|entozoan|entozoon|endozoan|parasite (generic term)
+endoparasitic|1
+(adj)|parasite (related term)
+endoplasm|1
+(noun)|cytoplasm (generic term)|cytol (generic term)
+endoprocta|1
+(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum (generic term)
+endorphin|1
+(noun)|neurochemical (generic term)|peptide (generic term)
+endorse|4
+(verb)|back|indorse|plump for|plunk for|support|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+(verb)|second|back|indorse|support (generic term)|back up (generic term)
+(verb)|certify|indorse|guarantee (generic term)|warrant (generic term)
+(verb)|indorse|sign (generic term)
+endorsed|1
+(adj)|supported (similar term)
+endorsement|5
+(noun)|indorsement|blurb|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(noun)|second|secondment|indorsement|agreement (generic term)
+(noun)|sanction|countenance|indorsement|warrant|imprimatur|approval (generic term)|commendation (generic term)
+(noun)|indorsement|signature (generic term)
+(noun)|indorsement|support (generic term)
+endorsement in blank|1
+(noun)|blank endorsement|endorsement (generic term)|indorsement (generic term)
+endorser|2
+(noun)|subscriber|indorser|ratifier|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|indorser|signer (generic term)|signatory (generic term)
+endoscope|1
+(noun)|medical instrument (generic term)
+endoscopic|1
+(adj)|examination|scrutiny (related term)
+endoscopy|1
+(noun)|examination (generic term)|scrutiny (generic term)
+endoskeleton|1
+(noun)|skeletal system (generic term)|skeleton (generic term)|frame (generic term)|systema skeletale (generic term)
+endosperm|1
+(noun)|reproductive structure (generic term)
+endospore|1
+(noun)|spore (generic term)
+endospore-forming bacteria|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+endosteum|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+endothelial|1
+(adj)|epithelium|epithelial tissue (related term)
+endothelial myeloma|1
+(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|sarcoma (generic term)
+endothelium|1
+(noun)|epithelium (generic term)|epithelial tissue (generic term)
+endothermal|1
+(adj)|endothermic|heat-absorbing|decalescent (similar term)|endoergic (related term)|energy-absorbing (related term)|exothermic (antonym)
+endothermic|1
+(adj)|endothermal|heat-absorbing|decalescent (similar term)|endoergic (related term)|energy-absorbing (related term)|exothermic (antonym)
+endothermic reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+endotoxin|1
+(noun)|toxin (generic term)|exotoxin (antonym)
+endotracheal tube|1
+(noun)|catheter (generic term)
+endovenous|1
+(adj)|intravenous|blood vessel (related term)
+endow|2
+(verb)|indue|gift|empower|invest|endue|enable (generic term)
+(verb)|dower|give (generic term)|gift (generic term)|present (generic term)
+endowed|1
+(adj)|blessed (similar term)|blessed with (similar term)|endued with (similar term)|dowered (similar term)|invested (similar term)|invested with (similar term)|unendowed (antonym)
+endowment|3
+(noun)|gift|talent|natural endowment|natural ability (generic term)
+(noun)|endowment fund|capital (generic term)
+(noun)|giving (generic term)|gift (generic term)
+endowment fund|1
+(noun)|endowment|capital (generic term)
+endowment insurance|1
+(noun)|life insurance (generic term)|life assurance (generic term)
+endozoan|2
+(adj)|entozoan|parasite (related term)
+(noun)|endoparasite|entoparasite|entozoan|entozoon|parasite (generic term)
+endozoic|1
+(adj)|entozoic|entozoan|epizoic (antonym)
+endplate|1
+(noun)|end-plate|motor end plate|end organ (generic term)
+endpoint|1
+(noun)|end point|termination|terminus|end (generic term)
+endue|1
+(verb)|endow|indue|gift|empower|invest|enable (generic term)
+endued with|1
+(adj)|blessed|blessed with|endowed (similar term)
+endurable|1
+(adj)|bearable|sufferable|supportable|tolerable (similar term)
+endurance|2
+(noun)|strength (generic term)
+(noun)|survival|animation (generic term)|life (generic term)|living (generic term)|aliveness (generic term)
+endurance contest|1
+(noun)|marathon|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+endurance riding|1
+(noun)|riding (generic term)|horseback riding (generic term)
+endure|7
+(verb)|digest|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|weather|brave|brave out|defy (generic term)|withstand (generic term)|hold (generic term)|hold up (generic term)
+(verb)|survive|last|live|live on|go|hold up|hold out
+(verb)|suffer|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)|enjoy (antonym)
+(verb)|wear|hold out|last (generic term)|endure (generic term)
+(verb)|last|measure (generic term)
+(verb)|prevail|persist|die hard|run|continue (generic term)
+enduring|2
+(adj)|abiding|imperishable|permanent (similar term)|lasting (similar term)
+(adj)|long-suffering|patient (similar term)
+enduringness|1
+(noun)|lastingness|durability|strength|permanence (generic term)|permanency (generic term)
+endways|2
+(adv)|endwise
+(adv)|endwise|end on
+endwise|2
+(adv)|endways
+(adv)|endways|end on
+ene|1
+(noun)|east northeast|ENE|compass point (generic term)|point (generic term)
+enea silvio piccolomini|1
+(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+enema|1
+(noun)|clyster|irrigation (generic term)
+enemy|4
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|foe|foeman|opposition|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+(noun)|people (generic term)
+(noun)|foe|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)|friend (antonym)
+energetic|2
+(adj)|physical (similar term)|brisk (similar term)|lively (similar term)|merry (similar term)|rattling (similar term)|snappy (similar term)|spanking (similar term)|zippy (similar term)|canty (similar term)|driving (similar term)|high-energy (similar term)|indefatigable (similar term)|tireless (similar term)|unflagging (similar term)|unwearying (similar term)|strenuous (similar term)|vigorous (similar term)|active (related term)|dynamic (related term)|dynamical (related term)|enterprising (related term)|lively (related term)|spirited (related term)|lethargic (antonym)
+(adj)|gumptious|industrious|up-and-coming|enterprising (similar term)
+energid|1
+(noun)|protoplast|body part (generic term)
+energise|2
+(verb)|excite|energize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|stimulate|arouse|brace|energize|perk up|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+energiser|2
+(noun)|energizer|vitalizer|vitaliser|animator|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|energizer|device (generic term)
+energising|2
+(adj)|bracing|brisk|energizing|fresh|refreshing|refreshful|tonic|invigorating (similar term)
+(adj)|energizing|kinetic|dynamic (similar term)|dynamical (similar term)
+energize|2
+(verb)|stimulate|arouse|brace|energise|perk up|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+(verb)|excite|energise|change (generic term)|alter (generic term)|modify (generic term)
+energizer|2
+(noun)|energiser|vitalizer|vitaliser|animator|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|energiser|device (generic term)
+energizing|3
+(adj)|bracing|brisk|energising|fresh|refreshing|refreshful|tonic|invigorating (similar term)
+(adj)|energising|kinetic|dynamic (similar term)|dynamical (similar term)
+(noun)|activating|activation|activity (generic term)
+energy|6
+(noun)|physical phenomenon (generic term)
+(noun)|vigor|vigour|zip|force (generic term)|forcefulness (generic term)|strength (generic term)
+(noun)|push|get-up-and-go|drive (generic term)
+(noun)|muscularity|vigor|vigour|vim|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+(noun)|vim|vitality|good health (generic term)|healthiness (generic term)
+(noun)|Department of Energy|Energy Department|Energy|DOE|executive department (generic term)
+energy-absorbing|1
+(adj)|endoergic|endothermic (related term)|endothermal (related term)|heat-absorbing (related term)|exoergic (antonym)
+energy-releasing|2
+(adj)|exoergic|exothermic (related term)|exothermal (related term)|heat-releasing (related term)|endoergic (antonym)
+(adj)|destructive-metabolic|catabolic (similar term)|katabolic (similar term)
+energy-storing|1
+(adj)|constructive-metabolic|anabolic (similar term)
+energy department|1
+(noun)|Department of Energy|Energy Department|Energy|DOE|executive department (generic term)
+energy level|1
+(noun)|energy state|energy (generic term)
+energy of activation|1
+(noun)|activation energy|energy (generic term)
+energy secretary|2
+(noun)|Secretary of Energy|Energy Secretary|secretary (generic term)
+(noun)|Secretary of Energy|Energy Secretary|secretaryship (generic term)
+energy state|1
+(noun)|energy level|energy (generic term)
+energy unit|1
+(noun)|work unit|heat unit|unit of measurement (generic term)|unit (generic term)
+enervate|2
+(verb)|weaken (generic term)
+(verb)|faze|unnerve|unsettle|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+enervated|1
+(adj)|adynamic|asthenic|debilitated|weak (similar term)
+enervating|1
+(adj)|debilitative|enfeebling|weakening|debilitating (similar term)
+enervation|2
+(noun)|weakness (generic term)
+(noun)|debilitation|enfeeblement|exhaustion|weakening (generic term)
+enesco|1
+(noun)|Enesco|Georges Enesco|George Enescu|violinist (generic term)|fiddler (generic term)|composer (generic term)
+enets|1
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+enfant terrible|1
+(noun)|nonconformist (generic term)|recusant (generic term)
+enfeeble|1
+(verb)|debilitate|drain|weaken (generic term)
+enfeeblement|1
+(noun)|debilitation|enervation|exhaustion|weakening (generic term)
+enfeebling|1
+(adj)|debilitative|enervating|weakening|debilitating (similar term)
+enfeoff|1
+(verb)|give (generic term)
+enfeoffment|1
+(noun)|deed (generic term)|deed of conveyance (generic term)|title (generic term)
+enfilade|2
+(noun)|enfilade fire|gunfire (generic term)|gunshot (generic term)
+(verb)|rake (generic term)
+enfilade fire|1
+(noun)|enfilade|gunfire (generic term)|gunshot (generic term)
+enflurane|1
+(noun)|Ethrane|ether (generic term)|ethoxyethane (generic term)|divinyl ether (generic term)|vinyl ether (generic term)|diethyl ether (generic term)|ethyl ether (generic term)
+enfold|1
+(verb)|envelop|enwrap|wrap|enclose|cover (generic term)
+enfolding|1
+(noun)|involution|change of shape (generic term)
+enforce|2
+(verb)|implement|apply|compel (generic term)|oblige (generic term)|obligate (generic term)|exempt (antonym)
+(verb)|impose|compel (generic term)|oblige (generic term)|obligate (generic term)
+enforceable|1
+(adj)|unenforceable (antonym)
+enforced|1
+(adj)|implemented|unenforced (antonym)
+enforcement|1
+(noun)|social control (generic term)
+enforcer|1
+(noun)|hatchet man|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+enfranchise|2
+(verb)|affranchise|liberate (generic term)|set free (generic term)
+(verb)|accord (generic term)|allot (generic term)|grant (generic term)|disenfranchise (antonym)
+enfranchised|1
+(adj)|disenfranchised (antonym)
+enfranchisement|3
+(noun)|freedom (generic term)
+(noun)|franchise|legal right (generic term)
+(noun)|certification|authorization (generic term)|authorisation (generic term)|empowerment (generic term)|disenfranchisement (antonym)
+engage|10
+(verb)|prosecute|pursue|act (generic term)|move (generic term)
+(verb)|absorb|engross|occupy|interest (generic term)
+(verb)|hire|employ|fire (antonym)
+(verb)|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|betroth|affiance|plight|vow (generic term)
+(verb)|touch (generic term)|disengage (antonym)
+(verb)|wage|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|enlist|procure (generic term)|secure (generic term)
+(verb)|lease|rent|hire|charter|take|get (generic term)|acquire (generic term)
+(verb)|mesh|lock|operate|move (generic term)|displace (generic term)|disengage (antonym)
+engaged|8
+(adj)|occupied|busy (similar term)
+(adj)|involved (similar term)
+(adj)|booked|set-aside|reserved (similar term)
+(adj)|busy|in use|occupied (similar term)
+(adj)|meshed|intermeshed|geared (similar term)
+(adj)|employed (similar term)
+(adj)|connected (similar term)
+(adj)|affianced|bespoken|betrothed|pledged|attached (similar term)|committed (similar term)
+engagement|7
+(noun)|battle|conflict|fight|military action (generic term)|action (generic term)
+(noun)|date|appointment|meeting (generic term)|get together (generic term)
+(noun)|betrothal|troth|promise (generic term)
+(noun)|employment|action (generic term)
+(noun)|booking|employment (generic term)|work (generic term)
+(noun)|mesh|meshing|interlocking|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|participation|involvement|involution|group action (generic term)|non-involvement (antonym)|nonparticipation (antonym)|non-engagement (antonym)
+engagement ring|1
+(noun)|ring (generic term)|band (generic term)
+engaging|1
+(adj)|piquant|attractive (similar term)
+engagingly|1
+(adv)|winsomely
+engelbert humperdinck|1
+(noun)|Humperdinck|Engelbert Humperdinck|composer (generic term)
+engelmann's spruce|1
+(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce (generic term)
+engelmann spruce|1
+(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce (generic term)
+engelmannia|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+engels|1
+(noun)|Engels|Friedrich Engels|socialist (generic term)
+engender|2
+(verb)|breed|spawn|cause (generic term)|do (generic term)|make (generic term)
+(verb)|beget|get|father|mother|sire|generate|bring forth|make (generic term)|create (generic term)
+engild|1
+(verb)|gild|begild|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+engine|3
+(noun)|motor (generic term)
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|locomotive|locomotive engine|railway locomotive|self-propelled vehicle (generic term)
+engine block|1
+(noun)|cylinder block|block|cast (generic term)|casting (generic term)
+engine cooling system|1
+(noun)|cooling system|equipment (generic term)
+engine driver|1
+(noun)|engineer|locomotive engineer|railroad engineer|operator (generic term)|manipulator (generic term)
+engine failure|1
+(noun)|breakdown (generic term)|equipment failure (generic term)
+engine room|1
+(noun)|engineering|room (generic term)
+engineer|4
+(noun)|applied scientist|technologist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|locomotive engineer|railroad engineer|engine driver|operator (generic term)|manipulator (generic term)
+(verb)|design (generic term)|plan (generic term)
+(verb)|mastermind|direct|organize|organise|orchestrate|plan (generic term)
+engineer's chain|1
+(noun)|chain (generic term)
+engineering|3
+(noun)|technology|application (generic term)|practical application (generic term)|profession (generic term)
+(noun)|engineering science|applied science|technology|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+(noun)|engine room|room (generic term)
+engineering school|1
+(noun)|polytechnic institute|polytechnic|technical school (generic term)|tech (generic term)
+engineering science|1
+(noun)|engineering|applied science|technology|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+enginery|1
+(noun)|machinery (generic term)
+england|1
+(noun)|England|European country (generic term)|European nation (generic term)
+english|6
+(adj)|English|European country|European nation (related term)
+(adj)|English|West Germanic|West Germanic language (related term)
+(noun)|English|English language|West Germanic (generic term)|West Germanic language (generic term)
+(noun)|English|English people|nation (generic term)|land (generic term)|country (generic term)
+(noun)|English|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+(noun)|English|side|spin (generic term)
+english-gothic|1
+(noun)|perpendicular|perpendicular style|English-Gothic|English-Gothic architecture|Gothic (generic term)|Gothic architecture (generic term)
+english-gothic architecture|1
+(noun)|perpendicular|perpendicular style|English-Gothic|English-Gothic architecture|Gothic (generic term)|Gothic architecture (generic term)
+english-speaking|1
+(adj)|English-speaking|communicative (similar term)|communicatory (similar term)
+english-weed|1
+(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+english bean|1
+(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+english breakfast tea|1
+(noun)|congou|congo|congou tea|English breakfast tea|black tea (generic term)
+english bulldog|1
+(noun)|bulldog|English bulldog|working dog (generic term)
+english cavalry saddle|1
+(noun)|English saddle|English cavalry saddle|saddle (generic term)
+english channel|1
+(noun)|English Channel|channel (generic term)
+english civil war|1
+(noun)|English Civil War|civil war (generic term)
+english class|1
+(noun)|English class|class (generic term)|form (generic term)|grade (generic term)
+english cocker spaniel|1
+(noun)|cocker spaniel|English cocker spaniel|cocker|spaniel (generic term)
+english daisy|1
+(noun)|common daisy|English daisy|Bellis perennis|daisy (generic term)
+english department|1
+(noun)|English department|department of English|academic department (generic term)
+english elm|1
+(noun)|English elm|European elm|Ulmus procera|elm (generic term)|elm tree (generic term)
+english foxhound|1
+(noun)|English foxhound|foxhound (generic term)
+english hawthorn|2
+(noun)|English hawthorn|Crataegus monogyna|hawthorn (generic term)|haw (generic term)
+(noun)|whitethorn|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn (generic term)|haw (generic term)
+english hippocrates|1
+(noun)|Sydenham|Thomas Sydenham|English Hippocrates|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+english horn|1
+(noun)|English horn|cor anglais|double-reed instrument (generic term)|double reed (generic term)
+english iris|1
+(noun)|English iris|Iris xiphioides|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+english ivy|1
+(noun)|ivy|common ivy|English ivy|Hedera helix|vine (generic term)
+english lady crab|1
+(noun)|English lady crab|Portunus puber|swimming crab (generic term)
+english language|1
+(noun)|English|English language|West Germanic (generic term)|West Germanic language (generic term)
+english lavender|1
+(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender (generic term)
+english muffin|1
+(noun)|English muffin|crumpet|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+english oak|1
+(noun)|common oak|English oak|pedunculate oak|Quercus robur|white oak (generic term)
+english people|1
+(noun)|English|English people|nation (generic term)|land (generic term)|country (generic term)
+english person|1
+(noun)|English person|Britisher (generic term)|Briton (generic term)|Brit (generic term)
+english plantain|1
+(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain (generic term)
+english primrose|1
+(noun)|English primrose|Primula vulgaris|primrose (generic term)|primula (generic term)
+english professor|1
+(noun)|English teacher|English professor|teacher (generic term)|instructor (generic term)
+english revolution|1
+(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution (generic term)
+english runner bean|1
+(noun)|scarlet runner|scarlet runner bean|runner bean|English runner bean|green bean (generic term)
+english ryegrass|1
+(noun)|perennial ryegrass|English ryegrass|Lolium perenne|rye grass (generic term)|ryegrass (generic term)
+english saddle|1
+(noun)|English saddle|English cavalry saddle|saddle (generic term)
+english setter|1
+(noun)|English setter|setter (generic term)
+english sole|2
+(noun)|lemon sole|English sole|sole (generic term)|fillet of sole (generic term)
+(noun)|English sole|lemon sole|Parophrys vitulus|sole (generic term)
+english sonnet|1
+(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet (generic term)
+english sparrow|1
+(noun)|English sparrow|house sparrow|Passer domesticus|sparrow (generic term)|true sparrow (generic term)
+english springer|1
+(noun)|English springer|English springer spaniel|springer spaniel (generic term)|springer (generic term)
+english springer spaniel|1
+(noun)|English springer|English springer spaniel|springer spaniel (generic term)|springer (generic term)
+english system|1
+(noun)|British Imperial System|English system|British system|system of weights and measures (generic term)
+english teacher|1
+(noun)|English teacher|English professor|teacher (generic term)|instructor (generic term)
+english toy spaniel|1
+(noun)|English toy spaniel|toy spaniel (generic term)
+english violet|1
+(noun)|sweet violet|garden violet|English violet|Viola odorata|violet (generic term)
+english walnut|2
+(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut (generic term)|walnut tree (generic term)
+(noun)|English walnut|walnut (generic term)
+english walnut tree|1
+(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut (generic term)|walnut tree (generic term)
+english yew|1
+(noun)|Old World yew|English yew|Taxus baccata|yew (generic term)
+englishman|1
+(noun)|Englishman|English person (generic term)
+englishwoman|1
+(noun)|Englishwoman|English person (generic term)
+englut|1
+(verb)|gorge|ingurgitate|overindulge|glut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+engorge|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+engorged|1
+(adj)|congested|full (similar term)
+engorgement|2
+(noun)|hyperemia (generic term)|hyperaemia (generic term)
+(noun)|eating (generic term)|feeding (generic term)
+engraft|2
+(verb)|graft|ingraft|join (generic term)|conjoin (generic term)
+(verb)|implant|embed|imbed|plant|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+engram|1
+(noun)|memory trace|memory (generic term)
+engraulidae|1
+(noun)|Engraulidae|family Engraulidae|fish family (generic term)
+engraulis|1
+(noun)|Engraulis|genus Engraulis|fish genus (generic term)
+engraulis encrasicholus|1
+(noun)|mediterranean anchovy|Engraulis encrasicholus|anchovy (generic term)
+engrave|4
+(verb)|scratch|grave|inscribe|carve (generic term)|chip at (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|print (generic term)
+(verb)|carve (generic term)|chip at (generic term)
+engraved|1
+(adj)|etched|graven|incised|inscribed|carved (similar term)|carven (similar term)
+engraver|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|printmaker (generic term)|graphic artist (generic term)
+engraving|3
+(noun)|print (generic term)
+(noun)|plate (generic term)
+(noun)|etching|printmaking (generic term)
+engross|2
+(verb)|steep|immerse|engulf|plunge|absorb|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|absorb|engage|occupy|interest (generic term)
+engrossed|2
+(adj)|captive|absorbed|enwrapped|intent|wrapped|attentive (similar term)
+(adj)|written (similar term)
+engrossing|1
+(adj)|absorbing|fascinating|gripping|riveting|interesting (similar term)
+engrossment|3
+(noun)|concentration|absorption|immersion|attention (generic term)
+(noun)|preoccupation|preoccupancy|absorption|cognitive state (generic term)|state of mind (generic term)
+(noun)|intentness|assiduity (generic term)|assiduousness (generic term)|concentration (generic term)
+engulf|2
+(verb)|steep|immerse|plunge|engross|absorb|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+engulfed|1
+(adj)|enveloped|swallowed|enclosed (similar term)
+enhance|2
+(verb)|heighten|raise|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+enhanced|1
+(adj)|increased (similar term)
+enhancement|1
+(noun)|sweetening|improvement (generic term)
+enhancer|1
+(noun)|foil|attention (generic term)
+enhancive|2
+(adj)|augmentative|intensifying (similar term)
+(adj)|cosmetic|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+enhydra|1
+(noun)|Enhydra|genus Enhydra|mammal genus (generic term)
+enhydra lutris|1
+(noun)|sea otter|Enhydra lutris|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+enid|1
+(noun)|Enid|town (generic term)
+enigma|2
+(noun)|mystery|secret|closed book|perplexity (generic term)
+(noun)|riddle|conundrum|brain-teaser|problem (generic term)
+enigma canon|1
+(noun)|enigmatic canon|enigmatical canon|riddle canon|canon (generic term)
+enigmatic|2
+(adj)|enigmatical|puzzling|incomprehensible (similar term)|uncomprehensible (similar term)
+(adj)|oracular|ambiguous (similar term)
+enigmatic canon|1
+(noun)|enigma canon|enigmatical canon|riddle canon|canon (generic term)
+enigmatical|1
+(adj)|enigmatic|puzzling|incomprehensible (similar term)|uncomprehensible (similar term)
+enigmatical canon|1
+(noun)|enigma canon|enigmatic canon|riddle canon|canon (generic term)
+enigmatically|1
+(adv)|cryptically|mysteriously
+eniwetok|2
+(noun)|Eniwetok|atoll (generic term)
+(noun)|Eniwetok|amphibious assault (generic term)
+enjambement|1
+(noun)|enjambment|prosody (generic term)|inflection (generic term)
+enjambment|1
+(noun)|enjambement|prosody (generic term)|inflection (generic term)
+enjoin|2
+(verb)|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)
+(verb)|order|tell|say|request (generic term)
+enjoining|1
+(noun)|injunction|enjoinment|cease and desist order|prohibition (generic term)|ban (generic term)|proscription (generic term)
+enjoinment|1
+(noun)|injunction|enjoining|cease and desist order|prohibition (generic term)|ban (generic term)|proscription (generic term)
+enjoy|5
+(verb)|bask|relish|savor|savour
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|love|like (generic term)
+(verb)|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)|suffer (antonym)
+(verb)|delight|revel
+enjoyable|1
+(adj)|gratifying|pleasurable|pleasant (similar term)
+enjoyableness|1
+(noun)|pleasantness (generic term)|sweetness (generic term)
+enjoyably|1
+(adv)|pleasantly|agreeably|disagreeably (antonym)|unpleasantly (antonym)
+enjoyer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+enjoyment|3
+(noun)|pleasure (generic term)|pleasance (generic term)
+(noun)|delectation|activity (generic term)
+(noun)|use|legal right (generic term)
+enkaid|1
+(noun)|encainide|Enkaid|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+enkephalin|1
+(noun)|endorphin (generic term)
+enki|1
+(noun)|Enki|Semitic deity (generic term)
+enkidu|1
+(noun)|Enkidu|mythical being (generic term)
+enkindle|2
+(verb)|kindle|conflagrate|inflame|ignite (generic term)|light (generic term)
+(verb)|arouse|elicit|kindle|evoke|fire|raise|provoke|make (generic term)|create (generic term)
+enkindled|1
+(adj)|ignited|kindled|lighted (similar term)|lit (similar term)
+enl|1
+(noun)|erythema nodosum leprosum|ENL|erythema nodosum (generic term)
+enlace|1
+(verb)|intertwine|twine|entwine|interlace|lace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+enlarge|4
+(verb)|increase (generic term)
+(verb)|blow up|magnify|increase (generic term)|reduce (antonym)
+(verb)|grow (generic term)
+(verb)|elaborate|lucubrate|expatiate|exposit|flesh out|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+enlarged|5
+(adj)|expanded (similar term)
+(adj)|hypertrophied|atrophied (antonym)
+(adj)|blown-up|large (similar term)|big (similar term)
+(adj)|unhealthy (similar term)
+(adj)|exaggerated|magnified|increased (similar term)
+enlarged heart|1
+(noun)|cardiomegaly|megalocardia|megacardia|symptom (generic term)
+enlargement|4
+(noun)|expansion|increase (generic term)|step-up (generic term)|contraction (antonym)
+(noun)|state (generic term)
+(noun)|expansion|elaboration|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|blowup|magnification|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+enlarger|1
+(noun)|photographic equipment (generic term)
+enlighten|3
+(verb)|edify|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|irradiate|prophesy (generic term)|vaticinate (generic term)
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+enlightened|5
+(adj)|knowing|knowledgeable|learned|lettered|well-educated|well-read|educated (similar term)
+(adj)|edified (similar term)|educated (related term)|informed (related term)|unenlightened (antonym)
+(adj)|disillusioned|disenchanted (similar term)
+(adj)|educated|informed (similar term)
+(noun)|initiate|people (generic term)|uninitiate (antonym)
+enlightening|2
+(adj)|informative|illuminating|unenlightening (antonym)
+(adj)|edifying|unedifying (antonym)
+enlightenment|3
+(noun)|education (generic term)|unenlightenment (antonym)
+(noun)|Nirvana|blessedness (generic term)|beatitude (generic term)|beatification (generic term)
+(noun)|Enlightenment|Age of Reason|reform movement (generic term)
+enlil|1
+(noun)|Enlil|En-lil|Semitic deity (generic term)
+enlist|3
+(verb)|sign up (generic term)
+(verb)|engage|procure (generic term)|secure (generic term)
+(verb)|draft|muster in|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)|discharge (antonym)
+enlisted man|1
+(noun)|enlisted person (generic term)
+enlisted person|1
+(noun)|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+enlisted woman|1
+(noun)|enlisted person (generic term)
+enlistee|1
+(noun)|recruit|newcomer (generic term)|fledgling (generic term)|fledgeling (generic term)|starter (generic term)|neophyte (generic term)|freshman (generic term)|newbie (generic term)|entrant (generic term)
+enlisting|1
+(noun)|recruitment|accomplishment (generic term)|achievement (generic term)
+enlistment|2
+(noun)|hitch|term of enlistment|tour of duty|duty tour|tour|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|commitment (generic term)|allegiance (generic term)|loyalty (generic term)|dedication (generic term)
+enliven|2
+(verb)|inspire|animate|invigorate|exalt|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|liven|liven up|invigorate|animate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)|deaden (antonym)
+enlivened|2
+(adj)|perked up (similar term)|lively (related term)|unenlivened (antonym)
+(adj)|spirited|animated (similar term)|alive (similar term)
+enlivener|1
+(noun)|quickener|invigorator|agent (generic term)
+enlivening|1
+(adj)|animating|invigorating (similar term)
+enmesh|1
+(verb)|mesh|ensnarl|entangle (generic term)|tangle (generic term)|mat (generic term)|snarl (generic term)
+enmeshed|1
+(adj)|intermeshed|tangled (similar term)
+enmity|2
+(noun)|hostility|antagonism|state (generic term)
+(noun)|hostility|ill will|hate (generic term)|hatred (generic term)
+ennead|1
+(noun)|nine|9|IX|niner|Nina from Carolina|digit (generic term)|figure (generic term)
+ennervation|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+ennoble|2
+(verb)|dignify|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|gentle|entitle|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+ennoblement|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|promotion (generic term)
+ennobling|2
+(adj)|dignifying|noble (similar term)
+(adj)|exalting|inspiring (similar term)
+ennui|1
+(noun)|boredom|tedium|dissatisfaction (generic term)
+enol|1
+(noun)|organic compound (generic term)
+enolic|1
+(adj)|organic compound (related term)
+enologist|1
+(noun)|oenologist|fermentologist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+enology|1
+(noun)|oenology|art (generic term)|artistry (generic term)|prowess (generic term)
+enormity|4
+(noun)|outrageousness|indecency (generic term)
+(noun)|enormousness (generic term)|grandness (generic term)|greatness (generic term)|immenseness (generic term)|immensity (generic term)|sizeableness (generic term)|vastness (generic term)|wideness (generic term)
+(noun)|nefariousness (generic term)|wickedness (generic term)|vileness (generic term)|ugliness (generic term)
+(noun)|atrocity (generic term)|inhumanity (generic term)
+enormous|1
+(adj)|tremendous|large (similar term)|big (similar term)
+enormously|1
+(adv)|tremendously|hugely|staggeringly
+enormousness|1
+(noun)|grandness|greatness|immenseness|immensity|sizeableness|vastness|wideness|largeness (generic term)|bigness (generic term)
+enosis|1
+(noun)|union (generic term)
+enough|3
+(adj)|adequate|decent|sufficient (similar term)
+(noun)|sufficiency|relative quantity (generic term)
+(adv)|plenty
+enounce|1
+(verb)|pronounce|articulate|sound out|enunciate|say
+enovid|1
+(noun)|Enovid|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+enplane|1
+(verb)|emplane|embark (generic term)|ship (generic term)
+enquire|3
+(verb)|ask|inquire|communicate (generic term)|intercommunicate (generic term)
+(verb)|investigate|inquire|probe (generic term)|examine (generic term)
+(verb)|wonder|inquire|question (generic term)|query (generic term)
+enquirer|1
+(noun)|inquirer|questioner|querier|asker|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+enquiringly|1
+(adv)|inquiringly
+enquiry|3
+(noun)|question|inquiry|query|interrogation|questioning (generic term)|inquiring (generic term)|answer (antonym)
+(noun)|inquiry|research|problem solving (generic term)
+(noun)|inquiry|investigation (generic term)|investigating (generic term)
+enrage|1
+(verb)|anger (generic term)
+enraged|1
+(adj)|angered|furious|infuriated|maddened|angry (similar term)
+enragement|1
+(noun)|infuriation|anger (generic term)|choler (generic term)|ire (generic term)
+enrapture|1
+(verb)|enchant|transport|enthrall|ravish|enthral|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+enraptured|1
+(adj)|ecstatic|rapturous|rapt|rhapsodic|joyous (similar term)
+enrich|2
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|deprive (antonym)
+(verb)|add (generic term)|impoverish (antonym)
+enrichment|2
+(noun)|improvement (generic term)
+(noun)|gift (generic term)
+enrico caruso|1
+(noun)|Caruso|Enrico Caruso|tenor (generic term)
+enrico fermi|1
+(noun)|Fermi|Enrico Fermi|nuclear physicist (generic term)
+enrobe|2
+(verb)|coat (generic term)|surface (generic term)
+(verb)|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+enrol|1
+(verb)|enroll|inscribe|enter|recruit|register (generic term)
+enroll|1
+(verb)|inscribe|enter|enrol|recruit|register (generic term)
+enrolled|1
+(adj)|listed|registered (similar term)
+enrollee|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+enrollment|2
+(noun)|registration|enrolment|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|registration|body (generic term)
+enrolment|1
+(noun)|registration|enrollment|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+ensconce|1
+(verb)|settle|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+ensemble|5
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|supporting players|cast (generic term)|cast of characters (generic term)|dramatis personae (generic term)
+(noun)|corps de ballet|chorus (generic term)|chorus line (generic term)
+(noun)|tout ensemble|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|outfit (generic term)|getup (generic term)|rig (generic term)|turnout (generic term)
+ensete|1
+(noun)|Ensete|genus Ensete|monocot genus (generic term)|liliopsid genus (generic term)
+ensete ventricosum|1
+(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb (generic term)|herbaceous plant (generic term)
+enshrine|2
+(verb)|shrine|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|saint|reverence (generic term)|fear (generic term)|revere (generic term)|venerate (generic term)
+enshroud|1
+(verb)|shroud|hide|cover|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+ensiform|1
+(adj)|sword-shaped|swordlike|bladelike|simple (similar term)|unsubdivided (similar term)
+ensiform leaf|1
+(noun)|simple leaf (generic term)
+ensign|3
+(noun)|commissioned naval officer (generic term)
+(noun)|national flag|emblem (generic term)|allegory (generic term)|flag (generic term)
+(noun)|colors (generic term)|colours (generic term)
+ensilage|1
+(noun)|silage|feed (generic term)|provender (generic term)
+ensile|1
+(verb)|store (generic term)
+ensis|1
+(noun)|Ensis|genus Ensis|mollusk genus (generic term)
+ensky|1
+(verb)|laud (generic term)|extol (generic term)|exalt (generic term)|glorify (generic term)|proclaim (generic term)
+enslave|1
+(verb)|subjugate (generic term)|subject (generic term)
+enslaved|1
+(adj)|bond|enthralled|in bondage|slave (similar term)
+enslavement|2
+(noun)|captivity|subjugation (generic term)|subjection (generic term)
+(noun)|capture (generic term)|gaining control (generic term)|seizure (generic term)
+ensnare|2
+(verb)|entrap|frame|set up|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|trap|entrap|snare|trammel|capture (generic term)|catch (generic term)
+ensnarl|1
+(verb)|enmesh|mesh|entangle (generic term)|tangle (generic term)|mat (generic term)|snarl (generic term)
+ensorcelled|1
+(adj)|bewitched|enchanted (similar term)
+ensuant|1
+(adj)|consequent|resultant|resulting|sequent|subsequent (similar term)
+ensue|1
+(verb)|result|prove (generic term)|turn out (generic term)|turn up (generic term)
+ensuing|1
+(adj)|succeeding (similar term)
+ensure|2
+(verb)|guarantee|insure|assure|secure
+(verb)|see|check|insure|see to it|control|ascertain|assure|verify (generic term)
+ent man|1
+(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|otorhinolaryngologist|rhinolaryngologist|specialist (generic term)|medical specialist (generic term)
+entablature|1
+(noun)|structure (generic term)|construction (generic term)
+entail|5
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|change (generic term)
+(verb)|imply|mean|necessitate (generic term)
+(verb)|implicate|lead (generic term)
+(verb)|fee-tail|bequeath (generic term)|will (generic term)|leave (generic term)
+entailment|1
+(noun)|deduction|implication|inference (generic term)|illation (generic term)
+entandrophragma|1
+(noun)|Entandrophragma|genus Entandrophragma|rosid dicot genus (generic term)
+entandrophragma cylindricum|1
+(noun)|African scented mahogany|cedar mahogany|sapele mahogany|Entandrophragma cylindricum|mahogany (generic term)|mahogany tree (generic term)
+entangle|2
+(verb)|mire|involve (generic term)
+(verb)|tangle|mat|snarl|twist (generic term)|twine (generic term)|distort (generic term)|unsnarl (antonym)|disentangle (antonym)
+entangled|3
+(adj)|embroiled|involved (similar term)
+(adj)|tangled (similar term)
+(adj)|unfree (similar term)
+entanglement|1
+(noun)|web|trap (generic term)
+entasis|1
+(noun)|convex shape (generic term)|convexity (generic term)
+entebbe|1
+(noun)|Entebbe|town (generic term)
+entelea|1
+(noun)|Entelea|genus Entelea|dilleniid dicot genus (generic term)
+entelechy|1
+(noun)|actuality (generic term)
+entellus|1
+(noun)|hanuman|Presbytes entellus|Semnopithecus entellus|langur (generic term)
+entente|2
+(noun)|entente cordiale|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|entente cordiale|agreement (generic term)|understanding (generic term)
+entente cordiale|2
+(noun)|entente|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+(noun)|entente|agreement (generic term)|understanding (generic term)
+enter|8
+(verb)|come in|get into|get in|go into|go in|move into|move in (related term)|enter upon (related term)|exit (antonym)
+(verb)|participate|drop out (antonym)
+(verb)|enroll|inscribe|enrol|recruit|register (generic term)
+(verb)|figure|be (generic term)
+(verb)|record|put down|save (generic term)|preserve (generic term)
+(verb)|insert|infix|introduce|attach (generic term)
+(verb)|accede|succeed (generic term)|come after (generic term)|follow (generic term)|take office (generic term)
+(verb)|embark|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+enter upon|1
+(verb)|come upon|luck into|get (generic term)|acquire (generic term)
+enteral|2
+(adj)|enteric|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract (related term)
+(adj)|intestinal|enteric|internal organ|viscus (related term)
+enteric|2
+(adj)|enteral|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract (related term)
+(adj)|intestinal|enteral|internal organ|viscus (related term)
+enteric-coated aspirin|1
+(noun)|aspirin (generic term)|acetylsalicylic acid (generic term)|Bayer (generic term)|Empirin (generic term)|St. Joseph (generic term)
+enteric bacteria|1
+(noun)|enterobacteria|enterics|entric|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+enteric fever|1
+(noun)|typhoid|typhoid fever|infectious disease (generic term)
+enterics|1
+(noun)|enteric bacteria|enterobacteria|entric|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+entering|2
+(noun)|entrance|change of location (generic term)|travel (generic term)
+(noun)|entrance|entry|ingress|incoming|arrival (generic term)
+enteritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+enterobacteria|1
+(noun)|enteric bacteria|enterics|entric|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+enterobacteriaceae|1
+(noun)|Enterobacteriaceae|family Enterobacteriaceae|bacteria family (generic term)
+enterobiasis|1
+(noun)|infestation (generic term)|infection (generic term)
+enterobius|1
+(noun)|Enterobius|genus Enterobius|worm genus (generic term)
+enterobius vermicularis|1
+(noun)|pinworm|threadworm|Enterobius vermicularis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+enteroceptor|1
+(noun)|interoceptor|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+enterokinase|1
+(noun)|enzyme (generic term)
+enterolith|1
+(noun)|calculus (generic term)|concretion (generic term)
+enterolithiasis|1
+(noun)|lithiasis (generic term)
+enterolobium|1
+(noun)|Enterolobium|genus Enterolobium|rosid dicot genus (generic term)
+enterolobium cyclocarpa|1
+(noun)|conacaste|elephant's ear|Enterolobium cyclocarpa|tree (generic term)
+enteron|1
+(noun)|alimentary canal (generic term)|alimentary tract (generic term)|digestive tube (generic term)|digestive tract (generic term)|gastrointestinal tract (generic term)|GI tract (generic term)
+enteropathy|1
+(noun)|disease (generic term)
+enteroptosis|1
+(noun)|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+enterostenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)
+enterostomy|1
+(noun)|enterotomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+enterotomy|1
+(noun)|enterostomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+enterotoxemia|1
+(noun)|animal disease (generic term)
+enterotoxin|1
+(noun)|cytotoxin (generic term)
+enterovirus|1
+(noun)|picornavirus (generic term)
+enterprise|3
+(noun)|endeavor|endeavour|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|enterprisingness|initiative|go-ahead|drive (generic term)
+enterprise zone|1
+(noun)|city district (generic term)
+enterpriser|1
+(noun)|entrepreneur|businessperson (generic term)|bourgeois (generic term)
+enterprising|1
+(adj)|energetic (similar term)|gumptious (similar term)|industrious (similar term)|up-and-coming (similar term)|entrepreneurial (similar term)|adventurous (related term)|adventuresome (related term)|ambitious (related term)|energetic (related term)|unenterprising (antonym)
+enterprisingness|1
+(noun)|enterprise|initiative|go-ahead|drive (generic term)
+entertain|3
+(verb)|socialize (generic term)|socialise (generic term)
+(verb)|think of|toy with|flirt with|think about|contemplate (generic term)
+(verb)|harbor|harbour|hold|nurse|feel (generic term)|experience (generic term)
+entertained|1
+(adj)|amused|diverted|pleased (similar term)
+entertainer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+entertaining|1
+(adj)|amusing (similar term)|amusive (similar term)|diverting (similar term)|fun (similar term)|unentertaining (antonym)
+entertainment|1
+(noun)|amusement|diversion (generic term)|recreation (generic term)
+entertainment center|1
+(noun)|wall unit (generic term)
+entertainment deduction|1
+(noun)|business deduction (generic term)
+entertainment industry|1
+(noun)|show business|show biz|industry (generic term)
+enthalpy|1
+(noun)|heat content|total heat|H|physical property (generic term)
+enthral|1
+(verb)|enchant|enrapture|transport|enthrall|ravish|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+enthrall|1
+(verb)|enchant|enrapture|transport|ravish|enthral|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+enthralled|2
+(adj)|bond|enslaved|in bondage|slave (similar term)
+(adj)|beguiled|captivated|charmed|delighted|entranced|enchanted (similar term)
+enthralling|1
+(adj)|bewitching|captivating|enchanting|entrancing|fascinating|attractive (similar term)
+enthrallingly|1
+(adv)|bewitchingly|captivatingly|enchantingly
+enthrallment|1
+(noun)|captivation|enchantment|fascination|liking (generic term)
+enthrone|2
+(verb)|invest|vest|install (generic term)|divest (antonym)
+(verb)|throne|invest (generic term)|vest (generic term)|enthrone (generic term)|dethrone (antonym)
+enthronement|1
+(noun)|coronation|enthronization|enthronisation|investiture|initiation (generic term)|induction (generic term)|installation (generic term)
+enthronisation|1
+(noun)|coronation|enthronement|enthronization|investiture|initiation (generic term)|induction (generic term)|installation (generic term)
+enthronization|1
+(noun)|coronation|enthronement|enthronisation|investiture|initiation (generic term)|induction (generic term)|installation (generic term)
+enthuse|2
+(verb)|excite (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+enthusiasm|3
+(noun)|feeling (generic term)
+(noun)|exuberance|ebullience|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+(noun)|interest (generic term)|involvement (generic term)
+enthusiast|2
+(noun)|partisan|partizan|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|fancier|admirer (generic term)|adorer (generic term)
+enthusiastic|1
+(adj)|ardent (similar term)|warm (similar term)|avid (similar term)|great (similar term)|eager (similar term)|zealous (similar term)|crazy (similar term)|wild (similar term)|evangelical (similar term)|evangelistic (similar term)|glowing (similar term)|gung ho (similar term)|overenthusiastic (similar term)|passionate (related term)|spirited (related term)|unenthusiastic (antonym)
+enthusiastically|2
+(adv)|unenthusiastically (antonym)
+(adv)|sky-high
+entice|1
+(verb)|lure|tempt|provoke (generic term)|stimulate (generic term)
+enticement|2
+(noun)|lure|come-on|attraction (generic term)|attractiveness (generic term)
+(noun)|temptation|influence (generic term)
+enticing|1
+(adj)|alluring|beguiling|tempting|seductive (similar term)
+entire|5
+(adj)|full|total|whole (similar term)
+(adj)|integral|intact|whole (similar term)
+(adj)|smooth (similar term)
+(adj)|intact|uncastrated (similar term)
+(noun)|stallion|male horse (generic term)
+entire leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+entirely|2
+(adv)|wholly|completely|totally|all|altogether|whole|partly (antonym)
+(adv)|exclusively|solely|alone|only
+entireness|1
+(noun)|entirety|integrality|totality|completeness (generic term)
+entirety|1
+(noun)|entireness|integrality|totality|completeness (generic term)
+entitle|3
+(verb)|empower (generic term)|authorise (generic term)|authorize (generic term)
+(verb)|title|name (generic term)|call (generic term)
+(verb)|ennoble|gentle|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+entitled|2
+(adj)|eligible (similar term)
+(adj)|titled (similar term)
+entitlement|1
+(noun)|title (generic term)|claim (generic term)
+entoblast|1
+(noun)|endoderm|entoderm|endoblast|hypoblast|germ layer (generic term)
+entoderm|1
+(noun)|endoderm|endoblast|entoblast|hypoblast|germ layer (generic term)
+entoloma|1
+(noun)|Entoloma|genus Entoloma|fungus genus (generic term)
+entoloma aprile|1
+(noun)|Entoloma aprile|agaric (generic term)
+entoloma lividum|1
+(noun)|Entoloma lividum|Entoloma sinuatum|agaric (generic term)
+entoloma sinuatum|1
+(noun)|Entoloma lividum|Entoloma sinuatum|agaric (generic term)
+entolomataceae|1
+(noun)|Entolomataceae|family Entolomataceae|fungus family (generic term)
+entomb|1
+(verb)|bury|inhume|inter|lay to rest|lay (generic term)|put down (generic term)|repose (generic term)
+entombment|1
+(noun)|burial|inhumation|interment|sepulture|funeral (generic term)
+entomion|1
+(noun)|craniometric point (generic term)
+entomologic|1
+(adj)|entomological|zoology|zoological science (related term)
+entomological|1
+(adj)|entomologic|zoology|zoological science (related term)
+entomologist|1
+(noun)|bugologist|bug-hunter|zoologist (generic term)|animal scientist (generic term)
+entomology|1
+(noun)|bugology|zoology (generic term)|zoological science (generic term)
+entomophilous|1
+(adj)|anemophilous (antonym)
+entomophobia|1
+(noun)|zoophobia (generic term)
+entomophthora|1
+(noun)|Entomophthora|genus Entomophthora|fungus genus (generic term)
+entomophthoraceae|1
+(noun)|Entomophthoraceae|family Entomophthoraceae|fungus family (generic term)
+entomophthorales|1
+(noun)|Entomophthorales|order Entomophthorales|fungus order (generic term)
+entomostraca|1
+(noun)|Entomostraca|subclass Entomostraca|class (generic term)
+entoparasite|1
+(noun)|endoparasite|entozoan|entozoon|endozoan|parasite (generic term)
+entopic pregnancy|1
+(noun)|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+entoproct|1
+(noun)|invertebrate (generic term)
+entoprocta|1
+(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum (generic term)
+entourage|1
+(noun)|cortege|retinue|suite|gathering (generic term)|assemblage (generic term)
+entozoan|3
+(adj)|endozoan|parasite (related term)
+(adj)|entozoic|endozoic|epizoic (antonym)
+(noun)|endoparasite|entoparasite|entozoon|endozoan|parasite (generic term)
+entozoic|1
+(adj)|entozoan|endozoic|epizoic (antonym)
+entozoon|1
+(noun)|endoparasite|entoparasite|entozoan|endozoan|parasite (generic term)
+entr'acte|2
+(noun)|interlude (generic term)
+(noun)|interlude|intermezzo|show (generic term)
+entrails|1
+(noun)|viscera|innards|internal organ (generic term)|viscus (generic term)
+entrain|1
+(verb)|board (generic term)|get on (generic term)
+entrance|5
+(noun)|entranceway|entryway|entry|entree|access (generic term)|approach (generic term)
+(noun)|entering|change of location (generic term)|travel (generic term)
+(noun)|entering|entry|ingress|incoming|arrival (generic term)
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|enchant|attract (generic term)|appeal (generic term)
+(verb)|spellbind|hypnotize (generic term)|hypnotise (generic term)|mesmerize (generic term)|mesmerise (generic term)
+entrance exam|1
+(noun)|entrance examination|examination (generic term)|exam (generic term)|test (generic term)
+entrance examination|1
+(noun)|entrance exam|examination (generic term)|exam (generic term)|test (generic term)
+entrance fee|1
+(noun)|admission|admission charge|admission fee|admission price|price of admission|entrance money|fee (generic term)
+entrance hall|1
+(noun)|anteroom|antechamber|hall|foyer|lobby|vestibule|room (generic term)
+entrance money|1
+(noun)|entrance fee|admission|admission charge|admission fee|admission price|price of admission|fee (generic term)
+entranced|1
+(adj)|beguiled|captivated|charmed|delighted|enthralled|enchanted (similar term)
+entrancement|1
+(noun)|ravishment|delight (generic term)|delectation (generic term)
+entranceway|1
+(noun)|entrance|entryway|entry|entree|access (generic term)|approach (generic term)
+entrancing|1
+(adj)|bewitching|captivating|enchanting|enthralling|fascinating|attractive (similar term)
+entrant|4
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+(noun)|newcomer|fledgling|fledgeling|starter|neophyte|freshman|newbie|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+(noun)|contestant (generic term)
+entrap|2
+(verb)|ensnare|frame|set up|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|trap|snare|ensnare|trammel|capture (generic term)|catch (generic term)
+entrapment|1
+(noun)|defense (generic term)|defence (generic term)|denial (generic term)|demurrer (generic term)
+entreat|1
+(verb)|bid|beseech|adjure|press|conjure|plead (generic term)
+entreatingly|1
+(adv)|beseechingly|importunately|imploringly|pleadingly
+entreaty|1
+(noun)|prayer|appeal|request (generic term)|asking (generic term)
+entree|4
+(noun)|main course|course (generic term)
+(noun)|access|accession|admittance|right (generic term)
+(noun)|entrance|entranceway|entryway|entry|access (generic term)|approach (generic term)
+(noun)|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+entremots|1
+(noun)|side dish|dish (generic term)
+entrench|3
+(verb)|intrench|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|impinge|encroach|trench|trespass (generic term)|take advantage (generic term)
+(verb)|dig in
+entrenched|2
+(adj)|invulnerable (similar term)
+(adj)|established (similar term)|constituted (similar term)
+entrenching tool|1
+(noun)|trenching spade|hand shovel (generic term)
+entrenchment|1
+(noun)|intrenchment|fortification (generic term)|munition (generic term)
+entrepot|2
+(noun)|transshipment center|port (generic term)
+(noun)|storehouse|depot|storage|store|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+entrepreneur|1
+(noun)|enterpriser|businessperson (generic term)|bourgeois (generic term)
+entrepreneurial|2
+(adj)|businessperson|bourgeois (related term)
+(adj)|enterprising (similar term)
+entresol|1
+(noun)|mezzanine|mezzanine floor|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+entric|1
+(noun)|enteric bacteria|enterobacteria|enterics|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+entropy|2
+(noun)|information|selective information|information measure (generic term)
+(noun)|randomness|S|physical property (generic term)
+entrust|2
+(verb)|intrust|trust|confide|commit|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|leave|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+entry|6
+(noun)|written record (generic term)|written account (generic term)
+(noun)|introduction|debut|first appearance|launching|unveiling|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|accounting entry|ledger entry|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+(noun)|submission|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|entrance|entranceway|entryway|entree|access (generic term)|approach (generic term)
+(noun)|entrance|entering|ingress|incoming|arrival (generic term)
+entry word|1
+(noun)|citation form|main entry word|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+entryway|1
+(noun)|entrance|entranceway|entry|entree|access (generic term)|approach (generic term)
+entsi|1
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+entsy|1
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+entwine|2
+(verb)|knit|join (generic term)|conjoin (generic term)
+(verb)|intertwine|twine|enlace|interlace|lace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+enucleate|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+enucleation|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+enuki|1
+(noun)|Anunnaki|Enuki|Semitic deity (generic term)
+enumerable|1
+(adj)|countable|denumerable|numerable|calculable (similar term)
+enumerate|2
+(verb)|recite|itemize|itemise|name (generic term)|identify (generic term)
+(verb)|count|number|numerate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+enumeration|2
+(noun)|numbering|list (generic term)|listing (generic term)
+(noun)|count|counting|numeration|reckoning|tally|investigation (generic term)|investigating (generic term)
+enumerator|1
+(noun)|census taker|official (generic term)|functionary (generic term)
+enunciate|2
+(verb)|pronounce|articulate|enounce|sound out|say
+(verb)|articulate|vocalize|vocalise|state (generic term)|say (generic term)|tell (generic term)
+enunciation|1
+(noun)|diction|articulation (generic term)
+enured|1
+(adj)|inured|hardened|tough (similar term)|toughened (similar term)
+enuresis|1
+(noun)|urinary incontinence|incontinence (generic term)|incontinency (generic term)
+envelop|1
+(verb)|enfold|enwrap|wrap|enclose|cover (generic term)
+envelope|6
+(noun)|container (generic term)
+(noun)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|operating capability (generic term)|performance capability (generic term)
+(noun)|gasbag|bag (generic term)
+enveloped|1
+(adj)|engulfed|swallowed|enclosed (similar term)
+enveloping|1
+(adj)|close (similar term)
+envelopment|1
+(noun)|enclosure|enclosing|inclosure|insertion (generic term)|introduction (generic term)|intromission (generic term)
+envenom|2
+(verb)|embitter|acerbate
+(verb)|poison|change (generic term)|alter (generic term)|modify (generic term)
+enviable|1
+(adj)|desirable (similar term)
+envious|1
+(adj)|covetous|jealous|desirous (similar term)|wishful (similar term)
+enviously|1
+(adv)|covetously|jealously
+enviousness|1
+(noun)|envy|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+environ|1
+(verb)|surround|encircle|circle|round|ring|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+environment|2
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|environs|surroundings|surround|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+environmental|2
+(adj)|biology|biological science (related term)
+(adj)|situation|state of affairs (related term)
+environmental condition|1
+(noun)|condition (generic term)|status (generic term)
+environmental protection agency|1
+(noun)|Environmental Protection Agency|EPA|independent agency (generic term)
+environmental science|1
+(noun)|ecology|bionomics|biology (generic term)|biological science (generic term)
+environmentalism|2
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)|hereditarianism (antonym)
+(noun)|preservation (generic term)|saving (generic term)
+environmentalist|1
+(noun)|conservationist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+environs|2
+(noun)|environment|surroundings|surround|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|purlieu|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+envisage|1
+(verb)|imagine|conceive of|ideate|create by mental act (generic term)|create mentally (generic term)
+envision|2
+(verb)|visualize|visualise|project|fancy|see|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|foresee|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+envisioned|1
+(adj)|pictured|visualized|visualised|unreal (similar term)
+envisioning|1
+(noun)|picturing|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+envoi|1
+(noun)|envoy|stanza (generic term)
+envoy|3
+(noun)|envoy extraordinary|minister plenipotentiary|diplomat (generic term)|diplomatist (generic term)
+(noun)|emissary|representative (generic term)
+(noun)|envoi|stanza (generic term)
+envoy extraordinary|1
+(noun)|envoy|minister plenipotentiary|diplomat (generic term)|diplomatist (generic term)
+envy|4
+(noun)|enviousness|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+(noun)|invidia|mortal sin (generic term)|deadly sin (generic term)
+(verb)|admire (generic term)|look up to (generic term)
+(verb)|begrudge|desire (generic term)|want (generic term)
+enwrap|1
+(verb)|envelop|enfold|wrap|enclose|cover (generic term)
+enwrapped|3
+(adj)|wrapped (similar term)
+(adj)|enclosed (similar term)
+(adj)|captive|absorbed|engrossed|intent|wrapped|attentive (similar term)
+enzootic|1
+(adj)|endemic (similar term)|endemical (similar term)
+enzymatic|1
+(adj)|protein|catalyst|accelerator (related term)
+enzyme|1
+(noun)|protein (generic term)|catalyst (generic term)|accelerator (generic term)
+enzyme-linked-immunosorbent serologic assay|1
+(noun)|ELISA|assay (generic term)
+enzymologist|1
+(noun)|biochemist (generic term)
+enzymology|1
+(noun)|biochemistry (generic term)
+eocene|1
+(noun)|Eocene|Eocene epoch|epoch (generic term)
+eocene epoch|1
+(noun)|Eocene|Eocene epoch|epoch (generic term)
+eohippus|1
+(noun)|dawn horse|horse (generic term)|Equus caballus (generic term)
+eolian|1
+(noun)|Aeolian|Eolian|Greek (generic term)|Hellene (generic term)
+eolic|1
+(noun)|Aeolic|Eolic|Ancient Greek (generic term)
+eolith|1
+(noun)|tool (generic term)
+eolithic|2
+(adj)|time period|period of time|period (related term)
+(noun)|Eolithic Age|Eolithic|time period (generic term)|period of time (generic term)|period (generic term)
+eolithic age|1
+(noun)|Eolithic Age|Eolithic|time period (generic term)|period of time (generic term)|period (generic term)
+eolotropic|1
+(adj)|aeolotropic|anisotropic (similar term)
+eon|3
+(noun)|aeon|geological time (generic term)|geologic time (generic term)
+(noun)|aeon|long time (generic term)|age (generic term)|years (generic term)
+(noun)|aeon|spiritual being (generic term)|supernatural being (generic term)
+eonian|2
+(adj)|aeonian|geological time|geologic time (related term)
+(adj)|ageless|aeonian|eternal|everlasting|perpetual|unending|unceasing|permanent (similar term)|lasting (similar term)
+eoraptor|1
+(noun)|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+eos|1
+(noun)|Eos|Greek deity (generic term)
+eosin|1
+(noun)|bromeosin|fluorescein (generic term)|fluoresceine (generic term)|fluorescent dye (generic term)|resorcinolphthalein (generic term)
+eosinopenia|1
+(noun)|symptom (generic term)
+eosinophil|1
+(noun)|eosinophile|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+eosinophile|1
+(noun)|eosinophil|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+eosinophilia|1
+(noun)|symptom (generic term)
+eosinophilic|1
+(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC (related term)
+epa|1
+(noun)|Environmental Protection Agency|EPA|independent agency (generic term)
+epacridaceae|1
+(noun)|Epacridaceae|family Epacridaceae|epacris family|dilleniid dicot family (generic term)
+epacris|1
+(noun)|Australian heath (generic term)
+epacris family|1
+(noun)|Epacridaceae|family Epacridaceae|dilleniid dicot family (generic term)
+epacris impressa|1
+(noun)|common heath|Epacris impressa|epacris (generic term)
+epacris obtusifolia|1
+(noun)|common heath|blunt-leaf heath|Epacris obtusifolia|epacris (generic term)
+epacris purpurascens|1
+(noun)|Port Jackson heath|Epacris purpurascens|epacris (generic term)
+epanalepsis|1
+(noun)|repetition (generic term)
+epanaphora|1
+(noun)|anaphora|repetition (generic term)
+epanodos|2
+(noun)|recapitulation (generic term)|recap (generic term)|review (generic term)
+(noun)|repetition (generic term)
+epanorthosis|1
+(noun)|rhetorical device (generic term)
+eparch|2
+(noun)|bishop (generic term)
+(noun)|governor (generic term)
+eparchial|1
+(adj)|diocese|bishopric|episcopate (related term)
+eparchy|2
+(noun)|state (generic term)|province (generic term)
+(noun)|exarchate|diocese (generic term)|bishopric (generic term)|episcopate (generic term)
+epaulet|1
+(noun)|epaulette|adornment (generic term)
+epaulette|1
+(noun)|epaulet|adornment (generic term)
+epauliere|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+epee|1
+(noun)|fencing sword (generic term)
+ependyma|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+epenthesis|1
+(noun)|articulation (generic term)
+epenthetic|1
+(adj)|parasitic|articulation (related term)
+epergne|1
+(noun)|centerpiece (generic term)|centrepiece (generic term)
+epha|1
+(noun)|ephah|dry unit (generic term)|dry measure (generic term)
+ephah|1
+(noun)|epha|dry unit (generic term)|dry measure (generic term)
+ephedra|1
+(noun)|joint fir|shrub (generic term)|bush (generic term)
+ephedra sinica|1
+(noun)|mahuang|Ephedra sinica|ephedra (generic term)|joint fir (generic term)
+ephedraceae|1
+(noun)|Ephedraceae|family Ephedraceae|gymnosperm family (generic term)
+ephedrine|1
+(noun)|alkaloid (generic term)|bronchodilator (generic term)
+ephemera|1
+(noun)|time (generic term)
+ephemeral|2
+(adj)|passing|short-lived|transient|transitory|fugacious|impermanent (similar term)|temporary (similar term)
+(noun)|ephemeron|insect (generic term)
+ephemerality|1
+(noun)|ephemeralness|fleetingness|transience (generic term)|transiency (generic term)|transitoriness (generic term)
+ephemeralness|1
+(noun)|ephemerality|fleetingness|transience (generic term)|transiency (generic term)|transitoriness (generic term)
+ephemerid|1
+(noun)|ephemeropteran|insect (generic term)
+ephemerida|1
+(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order (generic term)
+ephemeridae|1
+(noun)|Ephemeridae|family Ephemeridae|arthropod family (generic term)
+ephemeris|1
+(noun)|annual (generic term)|yearly (generic term)|yearbook (generic term)
+ephemeris time|1
+(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|time unit (generic term)|unit of time (generic term)
+ephemeron|1
+(noun)|ephemeral|insect (generic term)
+ephemeroptera|1
+(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order (generic term)
+ephemeropteran|1
+(noun)|ephemerid|insect (generic term)
+ephesan|1
+(adj)|Ephesan|city|metropolis|urban center (related term)
+ephesian|1
+(noun)|Ephesian|Greek (generic term)|Hellene (generic term)
+ephesians|1
+(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|Epistle (generic term)
+ephestia|1
+(noun)|Ephestia|genus Ephestia|arthropod genus (generic term)
+ephestia elutella|1
+(noun)|tobacco moth|cacao moth|Ephestia elutella|pyralid (generic term)|pyralid moth (generic term)
+ephesus|2
+(noun)|Ephesus|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Ephesus|Council of Ephesus|ecumenical council (generic term)
+ephippidae|1
+(noun)|Ephippidae|family Ephippidae|fish family (generic term)
+ephippiorhynchus|1
+(noun)|Ephippiorhynchus|genus Ephippiorhynchus|bird genus (generic term)
+ephippiorhynchus senegalensis|1
+(noun)|saddlebill|jabiru|Ephippiorhynchus senegalensis|stork (generic term)
+epi|1
+(noun)|Eysenck Personality Inventory|EPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+epic|3
+(adj)|heroic|larger-than-life|large (similar term)|big (similar term)
+(adj)|epical|poem|verse form (related term)
+(noun)|epic poem|heroic poem|epos|poem (generic term)|verse form (generic term)
+epic poem|1
+(noun)|heroic poem|epic|epos|poem (generic term)|verse form (generic term)
+epic poetry|1
+(noun)|heroic poetry|poetry (generic term)|poesy (generic term)|verse (generic term)
+epical|1
+(adj)|epic|poem|verse form (related term)
+epicalyx|1
+(noun)|false calyx|calycle|calyculus|bract (generic term)
+epicanthic fold|1
+(noun)|epicanthus|fold (generic term)|plica (generic term)
+epicanthus|1
+(noun)|epicanthic fold|fold (generic term)|plica (generic term)
+epicardia|1
+(noun)|passage (generic term)|passageway (generic term)
+epicardium|1
+(noun)|visceral pericardium|serous membrane (generic term)|serosa (generic term)
+epicarp|1
+(noun)|exocarp|pericarp (generic term)|seed vessel (generic term)
+epicarpal|1
+(adj)|pericarp|seed vessel (related term)
+epicene|2
+(adj)|bisexual|androgynous (similar term)
+(adj)|effeminate|emasculate|cissy|sissified|sissyish|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+epicenter|1
+(noun)|epicentre|geographic point (generic term)|geographical point (generic term)
+epicentre|1
+(noun)|epicenter|geographic point (generic term)|geographical point (generic term)
+epicine|1
+(noun)|hermaphrodite|intersex|gynandromorph|androgyne|epicine person|bisexual (generic term)|bisexual person (generic term)
+epicine person|1
+(noun)|hermaphrodite|intersex|gynandromorph|androgyne|epicine|bisexual (generic term)|bisexual person (generic term)
+epicondyle|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+epicondylitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+epicranium|1
+(noun)|body covering (generic term)
+epictetus|1
+(noun)|Epictetus|philosopher (generic term)
+epicure|1
+(noun)|gourmet|gastronome|bon vivant|epicurean|foodie|sensualist (generic term)
+epicurean|4
+(adj)|Epicurean|philosopher (related term)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|hedonic|hedonistic|indulgent (similar term)
+(adj)|luxurious|luxuriant|sybaritic|voluptuary|voluptuous|indulgent (similar term)
+(noun)|epicure|gourmet|gastronome|bon vivant|foodie|sensualist (generic term)
+epicureanism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+epicurism|1
+(noun)|disposition (generic term)|temperament (generic term)
+epicurus|1
+(noun)|Epicurus|philosopher (generic term)
+epicycle|1
+(noun)|circle (generic term)
+epicyclic|1
+(adj)|epicyclical|circle (related term)
+epicyclic gear|1
+(noun)|planetary gear|planet wheel|planet gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+epicyclic gear train|1
+(noun)|epicyclic train|gearing (generic term)|gear (generic term)|geartrain (generic term)|power train (generic term)|train (generic term)
+epicyclic train|1
+(noun)|epicyclic gear train|gearing (generic term)|gear (generic term)|geartrain (generic term)|power train (generic term)|train (generic term)
+epicyclical|1
+(adj)|epicyclic|circle (related term)
+epicycloid|1
+(noun)|roulette (generic term)|line roulette (generic term)
+epideictic|1
+(adj)|epideictical|demonstrative (similar term)
+epideictic oratory|1
+(noun)|oratory (generic term)
+epideictical|1
+(adj)|epideictic|demonstrative (similar term)
+epidemic|2
+(adj)|epiphytotic (similar term)|epizootic (similar term)|pandemic (similar term)|pestilent (similar term)|pestilential (similar term)|pestiferous (similar term)|plaguey (similar term)|endemic (antonym)|ecdemic (antonym)
+(noun)|outbreak (generic term)|eruption (generic term)|irruption (generic term)
+epidemic cholera|1
+(noun)|cholera|Asiatic cholera|Indian cholera|infectious disease (generic term)
+epidemic disease|1
+(noun)|infectious disease (generic term)
+epidemic encephalitis|1
+(noun)|sleeping sickness|sleepy sickness|lethargic encephalitis|encephalitis lethargica|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+epidemic hysertia|1
+(noun)|mass hysteria|craze (generic term)|delirium (generic term)|frenzy (generic term)|fury (generic term)|hysteria (generic term)
+epidemic meningitis|1
+(noun)|cerebrospinal meningitis|brain fever|cerebrospinal fever|meningitis (generic term)
+epidemic myalgia|1
+(noun)|epidemic pleurodynia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease (generic term)
+epidemic parotitis|1
+(noun)|mumps|infectious disease (generic term)
+epidemic pleurodynia|1
+(noun)|epidemic myalgia|myosis|diaphragmatic pleurisy|Bornholm disease|epidemic disease (generic term)
+epidemic roseola|1
+(noun)|German measles|rubella|three-day measles|measles (generic term)|rubeola (generic term)|morbilli (generic term)
+epidemiologic|1
+(adj)|epidemiological|medicine|medical specialty (related term)
+epidemiological|1
+(adj)|epidemiologic|medicine|medical specialty (related term)
+epidemiologist|1
+(noun)|medical scientist (generic term)
+epidemiology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+epidendron|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+epidendrum|1
+(noun)|Epidendrum|genus Epidendrum|monocot genus (generic term)|liliopsid genus (generic term)
+epidendrum tampense|1
+(noun)|butterfly orchid|Encyclia tampensis|Epidendrum tampense|orchid (generic term)|orchidaceous plant (generic term)
+epidendrum venosum|1
+(noun)|butterfly orchid|butterfly orchis|Epidendrum venosum|Encyclia venosa|orchid (generic term)|orchidaceous plant (generic term)
+epidermal|1
+(adj)|cuticular|epidermic|dermal|stratum (related term)|carapace|shell|cuticle|shield (related term)
+epidermal cell|1
+(noun)|skin cell (generic term)
+epidermic|1
+(adj)|cuticular|epidermal|dermal|stratum (related term)|carapace|shell|cuticle|shield (related term)
+epidermis|1
+(noun)|cuticle|stratum (generic term)
+epidiascope|1
+(noun)|projector (generic term)
+epididymis|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+epididymitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+epidural|2
+(adj)|extradural|meninx|meninges (related term)
+(noun)|epidural anesthesia|epidural anaesthesia|regional anesthesia (generic term)|regional anaesthesia (generic term)
+epidural anaesthesia|1
+(noun)|epidural anesthesia|epidural|regional anesthesia (generic term)|regional anaesthesia (generic term)
+epidural anesthesia|1
+(noun)|epidural anaesthesia|epidural|regional anesthesia (generic term)|regional anaesthesia (generic term)
+epidural injection|1
+(noun)|injection (generic term)
+epigaea|1
+(noun)|Epigaea|genus Epigaea|dilleniid dicot genus (generic term)
+epigaea repens|1
+(noun)|trailing arbutus|mayflower|Epigaea repens|shrub (generic term)|bush (generic term)
+epigastric|2
+(adj)|wall|paries (related term)
+(adj)|area|region (related term)
+epigastric artery|1
+(noun)|arteria epigastrica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+epigastric fossa|1
+(noun)|pit of the stomach|pit (generic term)|fossa (generic term)
+epigastric vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+epigastrium|1
+(noun)|area (generic term)|region (generic term)
+epigenesis|1
+(noun)|metamorphism (generic term)
+epiglottis|1
+(noun)|cartilaginous structure (generic term)
+epiglottitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+epigon|1
+(noun)|epigone|copycat (generic term)|imitator (generic term)|emulator (generic term)|ape (generic term)|aper (generic term)
+epigone|1
+(noun)|epigon|copycat (generic term)|imitator (generic term)|emulator (generic term)|ape (generic term)|aper (generic term)
+epigram|1
+(noun)|quip|saying (generic term)|expression (generic term)|locution (generic term)
+epigrammatic|1
+(adj)|aphoristic|apothegmatic|concise (similar term)
+epigraph|2
+(noun)|quotation (generic term)|quote (generic term)|citation (generic term)
+(noun)|inscription (generic term)|lettering (generic term)
+epigraphy|1
+(noun)|paleography (generic term)
+epikeratophakia|1
+(noun)|keratoplasty (generic term)|corneal graft (generic term)|corneal transplant (generic term)
+epilachna|1
+(noun)|Epilachna|genus Epilachna|arthropod genus (generic term)
+epilachna varivestis|1
+(noun)|Mexican bean beetle|bean beetle|Epilachna varivestis|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+epilate|1
+(verb)|depilate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+epilating wax|1
+(noun)|depilatory (generic term)|depilator (generic term)|epilator (generic term)
+epilation|2
+(noun)|loss (generic term)
+(noun)|depilation|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+epilator|1
+(noun)|depilatory|depilator|cosmetic (generic term)
+epilepsia major|1
+(noun)|grand mal|generalized seizure|epileptic seizure (generic term)
+epilepsia minor|1
+(noun)|petit mal|epileptic seizure (generic term)
+epilepsy|1
+(noun)|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+epileptic|2
+(adj)|brain disorder|encephalopathy|brain disease (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+epileptic seizure|1
+(noun)|convulsion (generic term)
+epilithic|1
+(adj)|material|stuff (related term)
+epilobium|1
+(noun)|Epilobium|genus Epilobium|rosid dicot genus (generic term)
+epilobium angustifolium|1
+(noun)|fireweed|giant willowherb|rosebay willowherb|wickup|Epilobium angustifolium|willowherb (generic term)
+epilobium canum canum|1
+(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet (generic term)
+epilobium hirsutum|1
+(noun)|hairy willowherb|codlins-and-cream|Epilobium hirsutum|willowherb (generic term)
+epilog|1
+(noun)|epilogue|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+epilogue|1
+(noun)|epilog|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+epimedium|1
+(noun)|Epimedium|genus Epimedium|magnoliid dicot genus (generic term)
+epimedium grandiflorum|1
+(noun)|barrenwort|bishop's hat|Epimedium grandiflorum|herb (generic term)|herbaceous plant (generic term)
+epimetheus|1
+(noun)|Epimetheus|Titan (generic term)
+epimorphic|1
+(adj)|metamorphic (similar term)
+epinephelus|1
+(noun)|Epinephelus|genus Epinephelus|fish genus (generic term)
+epinephelus adscensionis|1
+(noun)|rock hind|Epinephelus adscensionis|hind (generic term)
+epinephelus fulvus|1
+(noun)|coney|Epinephelus fulvus|grouper (generic term)
+epinephrin|1
+(noun)|epinephrine|adrenaline|Adrenalin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|catecholamine (generic term)|neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+epinephrine|1
+(noun)|epinephrin|adrenaline|Adrenalin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|catecholamine (generic term)|neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+epipactis|1
+(noun)|Epipactis|genus Epipactis|monocot genus (generic term)|liliopsid genus (generic term)
+epipactis gigantea|1
+(noun)|stream orchid|chatterbox|giant helleborine|Epipactis gigantea|helleborine (generic term)
+epipactis helleborine|1
+(noun)|Epipactis helleborine|helleborine (generic term)
+epipaleolithic|1
+(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+epiphany|2
+(noun)|manifestation (generic term)
+(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day (generic term)
+epiphany of our lord|1
+(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day (generic term)
+epiphenomenon|1
+(noun)|by-product (generic term)|byproduct (generic term)
+epiphora|1
+(noun)|epistrophe|repetition (generic term)
+epiphyllum|1
+(noun)|orchid cactus|cactus (generic term)
+epiphyseal|1
+(adj)|epiphysial|long bone|os longum (related term)
+epiphysial|1
+(adj)|epiphyseal|long bone|os longum (related term)
+epiphysis|2
+(noun)|long bone (generic term)|os longum (generic term)
+(noun)|pineal gland|pineal body|epiphysis cerebri|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+epiphysis cerebri|1
+(noun)|pineal gland|pineal body|epiphysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+epiphyte|1
+(noun)|air plant|aerophyte|epiphytic plant|plant (generic term)|flora (generic term)|plant life (generic term)
+epiphytic|1
+(adj)|plant|flora|plant life (related term)
+epiphytic plant|1
+(noun)|air plant|epiphyte|aerophyte|plant (generic term)|flora (generic term)|plant life (generic term)
+epiphytotic|1
+(adj)|epidemic (similar term)
+epiplexis|1
+(noun)|rhetorical device (generic term)
+epipremnum|1
+(noun)|Epipremnum|genus Epipremnum|monocot genus (generic term)|liliopsid genus (generic term)
+epipremnum aureum|1
+(noun)|golden pothos|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana (generic term)
+epirus|1
+(noun)|Epirus|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+episcia|1
+(noun)|houseplant (generic term)
+episcia dianthiflora|1
+(noun)|lace-flower vine|Alsobia dianthiflora|Episcia dianthiflora|flower (generic term)
+episcleral veins|1
+(noun)|venae episclerales|venule (generic term)|venula (generic term)|capillary vein (generic term)
+episcleritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+episcopacy|1
+(noun)|episcopate|people (generic term)
+episcopal|2
+(adj)|Episcopal|Episcopalian|Anglican Church|Anglican Communion|Church of England (related term)
+(adj)|pontifical|priest (related term)
+episcopal church|2
+(noun)|Episcopal Church|Episcopal Church of Scotland|Anglican Church (generic term)|Anglican Communion (generic term)|Church of England (generic term)
+(noun)|Episcopal Church|Protestant Episcopal Church|Anglican Church (generic term)|Anglican Communion (generic term)|Church of England (generic term)
+episcopal church of scotland|1
+(noun)|Episcopal Church|Episcopal Church of Scotland|Anglican Church (generic term)|Anglican Communion (generic term)|Church of England (generic term)
+episcopalian|2
+(adj)|Episcopal|Episcopalian|Anglican Church|Anglican Communion|Church of England (related term)
+(noun)|Episcopalian|Protestant (generic term)
+episcopalianism|1
+(noun)|Episcopalianism|theological doctrine (generic term)
+episcopate|4
+(noun)|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+(noun)|diocese|bishopric|jurisdiction (generic term)
+(noun)|episcopacy|people (generic term)
+(noun)|bishopry|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+episiotomy|1
+(noun)|perineotomy (generic term)
+episode|4
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|installment|instalment|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|sequence|film (generic term)|photographic film (generic term)
+episodic|3
+(adj)|divided (similar term)
+(adj)|occasional|unpredictable (similar term)
+(adj)|impermanent (similar term)|temporary (similar term)
+episodic memory|1
+(noun)|personal memory|long-term memory (generic term)|LTM (generic term)
+epispadias|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+episperm|1
+(noun)|testa|seed coat|reproductive structure (generic term)
+epistasis|1
+(noun)|hypostasis|organic process (generic term)|biological process (generic term)
+epistaxis|1
+(noun)|nosebleed|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+episteme|1
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+epistemic|1
+(adj)|epistemological|philosophy (related term)
+epistemic logic|1
+(noun)|modal logic (generic term)
+epistemological|1
+(adj)|epistemic|philosophy (related term)
+epistemologist|1
+(noun)|philosopher (generic term)
+epistemology|1
+(noun)|philosophy (generic term)
+epistle|2
+(noun)|letter (generic term)|missive (generic term)
+(noun)|Epistle|book (generic term)
+epistle of james|1
+(noun)|Epistle of James|James|Epistle (generic term)
+epistle of jeremiah|1
+(noun)|Letter of Jeremiah|Epistle of Jeremiah|book (generic term)
+epistle of jude|1
+(noun)|Epistle of Jude|Jude|Epistle (generic term)
+epistle of paul the apostle to philemon|1
+(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|Epistle (generic term)|New Testament (generic term)
+epistle of paul the apostle to the colossians|1
+(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|Epistle (generic term)
+epistle of paul the apostle to the ephesians|1
+(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|Epistle (generic term)
+epistle of paul the apostle to the galatians|1
+(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|Epistle (generic term)
+epistle of paul the apostle to the philippians|1
+(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|Epistle (generic term)
+epistle of paul the apostle to the romans|1
+(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|Epistle (generic term)
+epistle of paul the apostle to titus|1
+(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|Epistle (generic term)
+epistle to philemon|1
+(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|Epistle (generic term)|New Testament (generic term)
+epistle to the colossians|1
+(noun)|Epistle of Paul the Apostle to the Colossians|Epistle to the Colossians|Colossians|Epistle (generic term)
+epistle to the ephesians|1
+(noun)|Epistle of Paul the Apostle to the Ephesians|Epistle to the Ephesians|Ephesians|Epistle (generic term)
+epistle to the galatians|1
+(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|Epistle (generic term)
+epistle to the hebrews|1
+(noun)|Epistle to the Hebrews|Hebrews|Epistle (generic term)
+epistle to the philippians|1
+(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|Epistle (generic term)
+epistle to the romans|1
+(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|Epistle (generic term)
+epistle to titus|1
+(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|Epistle (generic term)
+epistolary|1
+(adj)|epistolatory|informal (similar term)
+epistolatory|1
+(adj)|epistolary|informal (similar term)
+epistrophe|1
+(noun)|epiphora|repetition (generic term)
+epitaph|2
+(noun)|inscription (generic term)|lettering (generic term)
+(noun)|memorial (generic term)|commemoration (generic term)|remembrance (generic term)
+epitaxy|1
+(noun)|growing (generic term)
+epithalamium|1
+(noun)|ode (generic term)
+epithelial|1
+(adj)|animal tissue (related term)
+epithelial cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+epithelial duct|1
+(noun)|duct|canal|channel|passage (generic term)|passageway (generic term)
+epithelial tissue|1
+(noun)|epithelium|animal tissue (generic term)
+epitheliod|1
+(adj)|animal tissue (related term)
+epithelioma|1
+(noun)|skin cancer (generic term)
+epithelium|1
+(noun)|epithelial tissue|animal tissue (generic term)
+epithet|2
+(noun)|name|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|word picture (generic term)|word-painting (generic term)|delineation (generic term)|depiction (generic term)|picture (generic term)|characterization (generic term)|characterisation (generic term)
+epitome|2
+(noun)|prototype|paradigm|image|model (generic term)|example (generic term)
+(noun)|outline (generic term)|synopsis (generic term)|abstract (generic term)|precis (generic term)
+epitomise|1
+(verb)|typify|epitomize|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+epitomize|1
+(verb)|typify|epitomise|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+epitope|1
+(noun)|antigenic determinant|determinant|site (generic term)|situation (generic term)
+epitrochoidal engine|1
+(noun)|Wankel engine|Wankel rotary engine|rotary engine (generic term)
+epizoan|2
+(adj)|ectozoan|parasite (related term)
+(noun)|ectoparasite|ectozoan|ectozoon|epizoon|parasite (generic term)
+epizoic|1
+(adj)|entozoic (antonym)
+epizoon|1
+(noun)|ectoparasite|ectozoan|ectozoon|epizoan|parasite (generic term)
+epizootic|1
+(adj)|epidemic (similar term)
+epkwele|1
+(noun)|Equatorial Guinea monetary unit (generic term)
+epoch|3
+(noun)|era|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|date of reference|date (generic term)
+(noun)|geological time (generic term)|geologic time (generic term)
+epoch-making|1
+(adj)|epochal|significant (similar term)|important (similar term)
+epochal|1
+(adj)|epoch-making|significant (similar term)|important (similar term)
+epona|1
+(noun)|Epona|Celtic deity (generic term)
+eponym|1
+(noun)|name (generic term)
+eponymic|1
+(adj)|eponymous|name (related term)
+eponymous|1
+(adj)|eponymic|name (related term)
+eponymy|1
+(noun)|derivation (generic term)
+epos|2
+(noun)|poetry (generic term)|poesy (generic term)|verse (generic term)
+(noun)|epic poem|heroic poem|epic|poem (generic term)|verse form (generic term)
+epoxy|2
+(noun)|epoxy resin|epoxy glue|synthetic resin (generic term)
+(verb)|glue (generic term)|paste (generic term)
+epoxy glue|1
+(noun)|epoxy|epoxy resin|synthetic resin (generic term)
+epoxy resin|1
+(noun)|epoxy|epoxy glue|synthetic resin (generic term)
+eprom|1
+(noun)|erasable programmable read-only memory|EPROM|read-only memory (generic term)|ROM (generic term)|read-only storage (generic term)|fixed storage (generic term)
+epsilon|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+epsilon aurigae|1
+(noun)|Epsilon Aurigae|binary star (generic term)|binary (generic term)|double star (generic term)
+epsilon toxin|1
+(noun)|Clostridium perfringens epsilon toxin|bacterial toxin (generic term)
+epsom salts|2
+(noun)|Epsom salts|bitter salts|magnesium sulfate (generic term)
+(noun)|Epsom salts|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+epstein|1
+(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+epstein-barr virus|1
+(noun)|Epstein-Barr virus|EBV|herpes (generic term)|herpes virus (generic term)
+eptatretus|1
+(noun)|hagfish (generic term)|hag (generic term)|slime eels (generic term)
+eptesicus|1
+(noun)|Eptesicus|genus Eptesicus|mammal genus (generic term)
+eptesicus fuscus|1
+(noun)|big brown bat|Eptesicus fuscus|vespertilian bat (generic term)|vespertilionid (generic term)
+eptesicus serotinus|1
+(noun)|serotine|European brown bat|Eptesicus serotinus|vespertilian bat (generic term)|vespertilionid (generic term)
+eq|1
+(noun)|equivalent|equivalent weight|combining weight|atomic weight (generic term)|relative atomic mass (generic term)
+equable|2
+(adj)|temperate (similar term)
+(adj)|even-tempered|good-tempered|placid|good-natured (similar term)
+equador laurel|1
+(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+equal|6
+(adj)|equivalent (similar term)|tantamount (similar term)|balanced (similar term)|close (similar term)|tight (similar term)|coequal (similar term)|coordinate (similar term)|equalized (similar term)|equalised (similar term)|equidistant (similar term)|equilateral (similar term)|even (similar term)|fifty-fifty (similar term)|half-and-half (similar term)|isochronal (similar term)|isochronous (similar term)|isoclinal (similar term)|isoclinic (similar term)|isometric (similar term)|isometrical (similar term)|isothermal (similar term)|quits (similar term)|tied (similar term)|even (similar term)|level (similar term)|commensurate (related term)|comparable (related term)|same (related term)|unequal (antonym)
+(adj)|like|equivalent|same|unlike (antonym)
+(noun)|peer|match|compeer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|be|differ (antonym)
+(verb)|touch|rival|match|compete (generic term)|vie (generic term)|contend (generic term)
+(verb)|match|equalize|equalise|equate|change (generic term)|alter (generic term)|modify (generic term)
+equal-area map projection|1
+(noun)|equal-area projection|map projection (generic term)
+equal-area projection|1
+(noun)|equal-area map projection|map projection (generic term)
+equal opportunity|1
+(noun)|civil right (generic term)
+equal protection of the laws|1
+(noun)|civil right (generic term)
+equal sign|1
+(noun)|sign (generic term)
+equal temperament|1
+(noun)|temperament (generic term)
+equal to|1
+(adj)|adequate to|capable|up to|adequate (similar term)
+equalisation|1
+(noun)|equalization|leveling|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+equalise|2
+(verb)|equalize|get even|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|equal|match|equalize|equate|change (generic term)|alter (generic term)|modify (generic term)
+equalised|1
+(adj)|equalized|equal (similar term)
+equaliser|2
+(noun)|equalizer|electronic equipment (generic term)
+(noun)|counterweight|counterbalance|counterpoise|balance|equalizer|weight (generic term)
+equalitarian|1
+(noun)|egalitarian|moralist (generic term)|elitist (antonym)
+equalitarianism|1
+(noun)|egalitarianism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+equality|2
+(noun)|sameness (generic term)|inequality (antonym)
+(noun)|equivalence|equation|par|status (generic term)|position (generic term)
+equality before the law|1
+(noun)|human right (generic term)
+equality state|1
+(noun)|Wyoming|Equality State|WY|American state (generic term)
+equalization|1
+(noun)|equalisation|leveling|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+equalize|2
+(verb)|equalise|get even|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|equal|match|equalise|equate|change (generic term)|alter (generic term)|modify (generic term)
+equalized|1
+(adj)|equalised|equal (similar term)
+equalizer|3
+(noun)|equaliser|electronic equipment (generic term)
+(noun)|counterweight|counterbalance|counterpoise|balance|equaliser|weight (generic term)
+(noun)|score (generic term)
+equalizing dividend|1
+(noun)|dividend (generic term)
+equally|2
+(adv)|as|every bit
+(adv)|evenly|unequally (antonym)|unevenly (antonym)
+equanil|1
+(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+equanimity|1
+(noun)|composure|calm|calmness|disposition (generic term)|temperament (generic term)|discomposure (antonym)
+equanimous|1
+(adj)|collected|poised|self-collected|self-contained|self-possessed|composed (similar term)
+equatability|1
+(noun)|equality (generic term)
+equate|3
+(verb)|compare|liken|study (generic term)|consider (generic term)
+(verb)|correspond|equal (generic term)|be (generic term)
+(verb)|equal|match|equalize|equalise|change (generic term)|alter (generic term)|modify (generic term)
+equating|1
+(noun)|equation|equalization (generic term)|equalisation (generic term)|leveling (generic term)
+equation|3
+(noun)|mathematical statement (generic term)
+(noun)|equality|equivalence|par|status (generic term)|position (generic term)
+(noun)|equating|equalization (generic term)|equalisation (generic term)|leveling (generic term)
+equator|2
+(noun)|great circle (generic term)
+(noun)|circle (generic term)
+equatorial|4
+(adj)|circle (related term)
+(adj)|great circle (related term)
+(adj)|pantropical (similar term)|pantropic (similar term)|tropical (similar term)|tropic (similar term)|polar (antonym)
+(noun)|telescope (generic term)|scope (generic term)
+equatorial current|1
+(noun)|ocean current (generic term)
+equatorial guinea|1
+(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country (generic term)|African nation (generic term)
+equatorial guinea monetary unit|1
+(noun)|Equatorial Guinea monetary unit|monetary unit (generic term)
+equerry|2
+(noun)|official (generic term)|functionary (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+equestrian|3
+(adj)|male aristocrat (related term)
+(adj)|travel|traveling|travelling (related term)
+(noun)|horseman|horseback rider|rider (generic term)
+equestrian sport|1
+(noun)|riding (generic term)|horseback riding (generic term)|equitation (generic term)
+equetus|1
+(noun)|Equetus|genus Equetus|fish genus (generic term)
+equetus lanceolatus|1
+(noun)|jackknife-fish|Equetus lanceolatus|drum (generic term)|drumfish (generic term)
+equetus pulcher|1
+(noun)|striped drum|Equetus pulcher|drum (generic term)|drumfish (generic term)
+equiangular|1
+(adj)|angular (similar term)|angulate (similar term)
+equiangular triangle|1
+(noun)|equilateral triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)|regular polygon (generic term)
+equid|1
+(noun)|equine|odd-toed ungulate (generic term)|perissodactyl (generic term)|perissodactyl mammal (generic term)
+equidae|1
+(noun)|Equidae|family Equidae|mammal family (generic term)
+equidistant|1
+(adj)|equal (similar term)
+equidistribution|1
+(noun)|distribution (generic term)|statistical distribution (generic term)
+equilateral|2
+(adj)|equal (similar term)
+(noun)|figure (generic term)
+equilateral triangle|1
+(noun)|equiangular triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)|regular polygon (generic term)
+equilibrate|2
+(verb)|change state (generic term)|turn (generic term)
+(verb)|balance|equilibrize|equilibrise|match (generic term)|fit (generic term)|unbalance (antonym)
+equilibration|1
+(noun)|stabilization (generic term)|stabilisation (generic term)
+equilibrise|1
+(verb)|balance|equilibrate|equilibrize|match (generic term)|fit (generic term)|unbalance (antonym)
+equilibrium|4
+(noun)|chemical equilibrium|chemical reaction (generic term)|reaction (generic term)
+(noun)|situation (generic term)|state of affairs (generic term)|disequilibrium (antonym)
+(noun)|balance|equipoise|counterbalance|structure (generic term)|construction (generic term)
+(noun)|labyrinthine sense|vestibular sense|sense of balance|sense of equilibrium|proprioception (generic term)
+equilibrium constant|1
+(noun)|constant (generic term)
+equilibrium law|1
+(noun)|law of chemical equilibrium|law (generic term)|law of nature (generic term)
+equilibrize|1
+(verb)|balance|equilibrate|equilibrise|match (generic term)|fit (generic term)|unbalance (antonym)
+equine|3
+(adj)|equine|equid (related term)
+(adj)|mammal family (related term)
+(noun)|equid|odd-toed ungulate (generic term)|perissodactyl (generic term)|perissodactyl mammal (generic term)
+equine distemper|1
+(noun)|strangles|distemper (generic term)
+equine encephalitis|1
+(noun)|equine encephalomyelitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+equine encephalomyelitis|1
+(noun)|equine encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+equinoctial|3
+(adj)|great circle (related term)
+(adj)|cosmic time (related term)
+(noun)|celestial equator|equinoctial circle|equinoctial line|great circle (generic term)
+equinoctial circle|1
+(noun)|celestial equator|equinoctial line|equinoctial|great circle (generic term)
+equinoctial line|1
+(noun)|celestial equator|equinoctial circle|equinoctial|great circle (generic term)
+equinoctial point|1
+(noun)|equinox|celestial point (generic term)
+equinoctial storm|1
+(noun)|line storm|rainstorm (generic term)
+equinoctial year|1
+(noun)|solar year|tropical year|astronomical year|year (generic term)
+equinox|2
+(noun)|cosmic time (generic term)
+(noun)|equinoctial point|celestial point (generic term)
+equip|2
+(verb)|fit|fit out|outfit|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|enable (generic term)
+equipage|2
+(noun)|materiel|equipment (generic term)
+(noun)|carriage|rig|horse-drawn vehicle (generic term)
+equipment|1
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+equipment casualty|1
+(noun)|damage|casualty (generic term)
+equipment failure|1
+(noun)|breakdown|failure (generic term)
+equipoise|1
+(noun)|balance|equilibrium|counterbalance|structure (generic term)|construction (generic term)
+equipoised|1
+(adj)|ambidextrous (similar term)|two-handed (similar term)
+equipotent|1
+(adj)|potent (similar term)|strong (similar term)|stiff (similar term)
+equipped|4
+(adj)|equipt|accoutered (similar term)|accoutred (similar term)|armored (similar term)|panoplied (similar term)|helmeted (similar term)|outfitted (similar term)|prepared (similar term)|transistorized (similar term)|transistorised (similar term)|visored (similar term)|unequipped (antonym)
+(adj)|furnished|appointed (similar term)|fitted out (similar term)|outfitted (similar term)|furnished with (similar term)|provided with (similar term)|supplied with (similar term)|stocked (similar term)|stocked with (similar term)|volumed (similar term)|well-appointed (similar term)|well-found (similar term)|unfurnished (antonym)
+(adj)|fitted out|prepared (similar term)
+(adj)|weaponed|armed (similar term)
+equipping|1
+(noun)|arming|armament|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)|disarmament (antonym)|disarming (antonym)
+equiprobable|1
+(adj)|probable (similar term)|likely (similar term)
+equipt|1
+(adj)|equipped|accoutered (similar term)|accoutred (similar term)|armored (similar term)|panoplied (similar term)|helmeted (similar term)|outfitted (similar term)|prepared (similar term)|transistorized (similar term)|transistorised (similar term)|visored (similar term)|unequipped (antonym)
+equisetaceae|1
+(noun)|Equisetaceae|family Equisetaceae|horsetail family|fern family (generic term)
+equisetales|1
+(noun)|Equisetales|order Equisetales|plant order (generic term)
+equisetatae|1
+(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class (generic term)
+equisetum|1
+(noun)|Equisetum|genus Equisetum|fern genus (generic term)
+equisetum arvense|1
+(noun)|common horsetail|field horsetail|Equisetum arvense|horsetail (generic term)
+equisetum fluviatile|1
+(noun)|swamp horsetail|water horsetail|Equisetum fluviatile|horsetail (generic term)
+equisetum hyemale|1
+(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail (generic term)
+equisetum hyemale robustum|1
+(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail (generic term)
+equisetum palustre|1
+(noun)|marsh horsetail|Equisetum palustre|horsetail (generic term)
+equisetum robustum|1
+(noun)|scouring rush|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail (generic term)
+equisetum sylvaticum|1
+(noun)|wood horsetail|Equisetum Sylvaticum|horsetail (generic term)
+equisetum variegatum|1
+(noun)|variegated horsetail|variegated scouring rush|Equisetum variegatum|horsetail (generic term)
+equitable|1
+(adj)|just|evenhanded (similar term)|inequitable (antonym)
+equitably|1
+(adv)|inequitably (antonym)
+equitation|1
+(noun)|riding|horseback riding|sport (generic term)|athletics (generic term)
+equity|3
+(noun)|assets (generic term)
+(noun)|interest (generic term)|stake (generic term)
+(noun)|fairness|justice (generic term)|justness (generic term)|inequity (antonym)|unfairness (antonym)
+equity credit line|1
+(noun)|home loan|home equity credit|home equity loan|consumer credit (generic term)|loan (generic term)
+equivalence|3
+(noun)|equality|equation|par|status (generic term)|position (generic term)
+(noun)|equality (generic term)|nonequivalence (antonym)
+(noun)|comparison|compare|comparability|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+equivalent|4
+(adj)|like|equal|same|unlike (antonym)
+(adj)|tantamount|equal (similar term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|equivalent weight|combining weight|eq|atomic weight (generic term)|relative atomic mass (generic term)
+equivalent-binary-digit factor|1
+(noun)|divisor (generic term)|factor (generic term)
+equivalent weight|1
+(noun)|equivalent|combining weight|eq|atomic weight (generic term)|relative atomic mass (generic term)
+equivalent word|1
+(noun)|synonym|word (generic term)|antonym (antonym)
+equivocal|3
+(adj)|ambiguous|double (similar term)|forked (similar term)|evasive (similar term)|indeterminate (similar term)|ambiguous (related term)|unequivocal (antonym)
+(adj)|questionable (similar term)
+(adj)|inconclusive (similar term)
+equivocally|1
+(adv)|ambiguously|unambiguously (antonym)
+equivocalness|1
+(noun)|ambiguity|unclearness (generic term)|unequivocalness (antonym)|unambiguity (antonym)
+equivocate|1
+(verb)|beat around the bush|tergiversate|prevaricate|palter|misinform (generic term)|mislead (generic term)
+equivocation|3
+(noun)|evasion|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|prevarication|evasiveness|untruthfulness (generic term)|ambiguity (generic term)|equivocalness (generic term)
+(noun)|tergiversation|falsification (generic term)|misrepresentaation (generic term)
+equivocator|1
+(noun)|hedger|tergiversator|respondent (generic term)|responder (generic term)|answerer (generic term)
+equus|1
+(noun)|Equus|genus Equus|mammal genus (generic term)
+equus asinus|2
+(noun)|African wild ass|Equus asinus|wild ass (generic term)
+(noun)|domestic ass|donkey|Equus asinus|ass (generic term)
+equus burchelli|1
+(noun)|common zebra|Burchell's zebra|Equus Burchelli|zebra (generic term)
+equus caballus|1
+(noun)|horse|Equus caballus|equine (generic term)|equid (generic term)
+equus caballus gomelini|1
+(noun)|tarpan|Equus caballus gomelini|wild horse (generic term)
+equus caballus przevalskii|1
+(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse (generic term)
+equus caballus przewalskii|1
+(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse (generic term)
+equus grevyi|1
+(noun)|grevy's zebra|Equus grevyi|zebra (generic term)
+equus hemionus|1
+(noun)|onager|Equus hemionus|wild ass (generic term)
+equus hemionus hemionus|1
+(noun)|chigetai|dziggetai|Equus hemionus hemionus|onager (generic term)|Equus hemionus (generic term)
+equus kiang|1
+(noun)|kiang|Equus kiang|wild ass (generic term)
+equus quagga|1
+(noun)|quagga|Equus quagga|equine (generic term)|equid (generic term)
+equus zebra zebra|1
+(noun)|mountain zebra|Equus zebra zebra|zebra (generic term)
+er|2
+(noun)|erbium|Er|atomic number 68|metallic element (generic term)|metal (generic term)
+(noun)|emergency room|ER|hospital room (generic term)
+era|3
+(noun)|epoch|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|geological era|geological time (generic term)|geologic time (generic term)
+(noun)|earned run average|ERA|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+eradicable|1
+(adj)|delible (similar term)|effaceable (similar term)|erasable (similar term)|exterminable (similar term)|extirpable (similar term)|obliterable (similar term)|removable (similar term)|ineradicable (antonym)
+eradicate|2
+(verb)|eliminate|annihilate|extinguish|wipe out|decimate|carry off|kill (generic term)
+(verb)|uproot|extirpate|root out|exterminate|destroy (generic term)|destruct (generic term)
+eradication|1
+(noun)|obliteration|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+eradicator|1
+(noun)|exterminator|terminator|killer (generic term)|slayer (generic term)
+eragrostic abyssinica|1
+(noun)|teff|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass (generic term)|bay grass (generic term)
+eragrostis|1
+(noun)|Eragrostis|genus Eragrostis|monocot genus (generic term)|liliopsid genus (generic term)
+eragrostis curvula|1
+(noun)|weeping love grass|African love grass|Eragrostis curvula|love grass (generic term)|bay grass (generic term)
+eragrostis tef|1
+(noun)|teff|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass (generic term)|bay grass (generic term)
+eranthis|1
+(noun)|Eranthis|genus Eranthis|magnoliid dicot genus (generic term)
+eranthis hyemalis|1
+(noun)|winter aconite|Eranthis hyemalis|herb (generic term)|herbaceous plant (generic term)
+erasable|1
+(adj)|effaceable|eradicable (similar term)
+erasable programmable read-only memory|1
+(noun)|EPROM|read-only memory (generic term)|ROM (generic term)|read-only storage (generic term)|fixed storage (generic term)
+erase|3
+(verb)|wipe out|kill (generic term)
+(verb)|rub out|score out|efface|wipe off|delete (generic term)|cancel (generic term)
+(verb)|delete|take away (generic term)|take out (generic term)|record (antonym)
+eraser|1
+(noun)|implement (generic term)
+erasmian|1
+(adj)|Erasmian|theologian|theologist|theologizer|theologiser|humanist (related term)
+erasmus|1
+(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|humanist (generic term)
+erastianism|1
+(noun)|Erastianism|Byzantinism|Caesaropapism|theological doctrine (generic term)
+erasure|3
+(noun)|correction (generic term)
+(noun)|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|expunction|expunging|deletion (generic term)
+erato|1
+(noun)|Erato|Muse (generic term)
+eratosthenes|1
+(noun)|Eratosthenes|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)|mathematician (generic term)
+erb's palsy|1
+(noun)|Erb's palsy|Erb-Duchenne paralysis|paralysis (generic term)|palsy (generic term)
+erb-duchenne paralysis|1
+(noun)|Erb's palsy|Erb-Duchenne paralysis|paralysis (generic term)|palsy (generic term)
+erbium|1
+(noun)|Er|atomic number 68|metallic element (generic term)|metal (generic term)
+ercilla|1
+(noun)|Ercilla|genus Ercilla|caryophylloid dicot genus (generic term)
+erebus|1
+(noun)|Erebus|Greek deity (generic term)
+erechtites hieracifolia|1
+(noun)|fireweed|Erechtites hieracifolia|weed (generic term)
+erect|4
+(adj)|vertical|upright|erectile (similar term)|fastigiate (similar term)|orthostatic (similar term)|passant (similar term)|rampant (similar term)|rearing (similar term)|semi-climbing (similar term)|semi-erect (similar term)|semi-upright (similar term)|standing (similar term)|stand-up (similar term)|statant (similar term)|straight-backed (similar term)|straight (similar term)|unbent (similar term)|unbowed (similar term)|unerect (antonym)
+(adj)|tumid|hard (similar term)
+(verb)|raise|rear|set up|put up|construct (generic term)|build (generic term)|make (generic term)|level (antonym)
+(verb)|rear|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+erect bugle|1
+(noun)|blue bugle|Ajuga genevensis|bugle (generic term)|bugleweed (generic term)
+erectile|2
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|cavernous|expansive (similar term)
+erectile dysfunction|1
+(noun)|male erecticle dysfunction|ED|impotence (generic term)|impotency (generic term)|dysfunction (generic term)|disfunction (generic term)
+erectile organ|1
+(noun)|organ (generic term)
+erectile tissue|1
+(noun)|animal tissue (generic term)
+erecting|1
+(noun)|erection|construction (generic term)|building (generic term)
+erecting prism|1
+(noun)|prism (generic term)|optical prism (generic term)
+erection|3
+(noun)|hard-on|sexual arousal (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|erecting|construction (generic term)|building (generic term)
+erectly|1
+(adv)|straight-backed
+erectness|2
+(noun)|uprightness|stance (generic term)
+(noun)|verticality|verticalness|uprightness|position (generic term)|spatial relation (generic term)
+eremite|1
+(noun)|religious (generic term)|cenobite (antonym)
+eremitic|2
+(adj)|eremitical|religious (related term)|cenobitic (antonym)
+(adj)|anchoritic|eremitical|hermitic|hermitical|unworldly (similar term)
+eremitical|2
+(adj)|eremitic|religious (related term)|cenobitic (antonym)
+(adj)|anchoritic|eremitic|hermitic|hermitical|unworldly (similar term)
+eremitism|1
+(noun)|monasticism (generic term)
+eresh-kigal|1
+(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity (generic term)
+ereshkigal|1
+(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity (generic term)
+ereshkigel|1
+(noun)|Ereshkigal|Eresh-kigal|Ereshkigel|Semitic deity (generic term)
+erethism|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+erethizon|1
+(noun)|Erethizon|genus Erethizon|mammal genus (generic term)
+erethizon dorsatum|1
+(noun)|Canada porcupine|Erethizon dorsatum|New World porcupine (generic term)
+erethizontidae|1
+(noun)|Erethizontidae|family Erethizontidae|mammal family (generic term)
+eretmochelys|1
+(noun)|Eretmochelys|genus Eretmochelys|reptile genus (generic term)
+eretmochelys imbricata|1
+(noun)|hawksbill turtle|hawksbill|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle (generic term)|marine turtle (generic term)
+erewhon|1
+(noun)|Erewhon|book (generic term)
+erg|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+ergocalciferol|1
+(noun)|vitamin D|calciferol|viosterol|cholecarciferol|D|fat-soluble vitamin (generic term)
+ergodic|1
+(adj)|random (similar term)
+ergodicity|1
+(noun)|randomness (generic term)|haphazardness (generic term)|stochasticity (generic term)|noise (generic term)
+ergometer|1
+(noun)|dynamometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+ergonomic|1
+(adj)|engineering|engineering science|applied science|technology (related term)
+ergonomics|1
+(noun)|biotechnology|bioengineering|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+ergonovine|1
+(noun)|Ergotrate Maleate|alkaloid (generic term)
+ergosterol|1
+(noun)|sterol (generic term)|steroid alcohol (generic term)
+ergot|2
+(noun)|plant disease (generic term)
+(noun)|Claviceps purpurea|fungus (generic term)
+ergotamine|1
+(noun)|alkaloid (generic term)
+ergotic|1
+(adj)|fungus (related term)
+ergotism|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+ergotrate maleate|1
+(noun)|ergonovine|Ergotrate Maleate|alkaloid (generic term)
+ergotropic|1
+(adj)|tropism (related term)
+ergotropism|1
+(noun)|tropism (generic term)
+ergun he|1
+(noun)|Argun|Argun River|Ergun He|river (generic term)
+erianthus|1
+(noun)|Erianthus|genus Erianthus|monocot genus (generic term)|liliopsid genus (generic term)
+erianthus ravennae|1
+(noun)|Ravenna grass|wool grass|Erianthus ravennae|plume grass (generic term)
+eric arthur blair|1
+(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer (generic term)|author (generic term)
+eric blair|1
+(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer (generic term)|author (generic term)
+erica|1
+(noun)|true heath|heath (generic term)
+erica arborea|1
+(noun)|tree heath|briar|brier|Erica arborea|erica (generic term)|true heath (generic term)
+erica carnea|1
+(noun)|winter heath|spring heath|Erica carnea|erica (generic term)|true heath (generic term)
+erica cinerea|1
+(noun)|bell heather|heather bell|fine-leaved heath|Erica cinerea|erica (generic term)|true heath (generic term)
+erica jong|1
+(noun)|Jong|Erica Jong|writer (generic term)|author (generic term)
+erica lusitanica|1
+(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica (generic term)|true heath (generic term)
+erica perspicua|1
+(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica (generic term)|true heath (generic term)
+erica tetralix|1
+(noun)|cross-leaved heath|bell heather|Erica tetralix|erica (generic term)|true heath (generic term)
+erica vagans|1
+(noun)|Cornish heath|Erica vagans|erica (generic term)|true heath (generic term)
+ericaceae|1
+(noun)|Ericaceae|family Ericaceae|heath family|dilleniid dicot family (generic term)|Ericales (generic term)|order Ericales (generic term)
+ericales|1
+(noun)|Ericales|order Ericales|plant order (generic term)
+erich mendelsohn|1
+(noun)|Mendelsohn|Erich Mendelsohn|architect (generic term)|designer (generic term)
+erich von stroheim|1
+(noun)|Stroheim|Erich von Stroheim|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+eridanus|1
+(noun)|Eridanus|constellation (generic term)
+erie|3
+(noun)|Erie|Iroquois (generic term)
+(noun)|Lake Erie|Erie|lake (generic term)
+(noun)|Erie|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+erie canal|1
+(noun)|Erie Canal|canal (generic term)
+erigeron|1
+(noun)|Erigeron|genus Erigeron|asterid dicot genus (generic term)
+erigeron acer|1
+(noun)|blue fleabane|Erigeron acer|fleabane (generic term)
+erigeron annuus|1
+(noun)|daisy fleabane|Erigeron annuus|fleabane (generic term)
+erigeron aurantiacus|1
+(noun)|orange daisy|orange fleabane|Erigeron aurantiacus|fleabane (generic term)
+erigeron canadensis|1
+(noun)|horseweed|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed (generic term)
+erigeron divergens|1
+(noun)|spreading fleabane|Erigeron divergens|fleabane (generic term)
+erigeron glaucous|1
+(noun)|seaside daisy|beach aster|Erigeron glaucous|fleabane (generic term)
+erigeron philadelphicus|1
+(noun)|Philadelphia fleabane|Erigeron philadelphicus|fleabane (generic term)
+erigeron pulchellus|1
+(noun)|robin's plantain|Erigeron pulchellus|fleabane (generic term)
+erigeron speciosus|1
+(noun)|showy daisy|Erigeron speciosus|fleabane (generic term)
+erignathus|1
+(noun)|Erignathus|genus Erignathus|mammal genus (generic term)
+erignathus barbatus|1
+(noun)|bearded seal|squareflipper square flipper|Erignathus barbatus|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+erigonum fasciculatum|1
+(noun)|wild buckwheat|California buckwheat|Erigonum fasciculatum|eriogonum (generic term)
+erik adolf von willebrand|1
+(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+erik alfred leslie satie|1
+(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer (generic term)
+erik axel karlfeldt|1
+(noun)|Karlfeldt|Erik Axel Karlfeldt|poet (generic term)
+erik satie|1
+(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer (generic term)
+erik von willebrand|1
+(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+erik weisz|1
+(noun)|Houdini|Harry Houdini|Erik Weisz|escapologist (generic term)|escape expert (generic term)
+erin|1
+(noun)|Erin|Ireland (generic term)|Hibernia (generic term)|Emerald Isle (generic term)
+erinaceidae|1
+(noun)|Erinaceidae|family Erinaceidae|mammal family (generic term)
+erinaceus|1
+(noun)|Erinaceus|genus Erinaceus|mammal genus (generic term)
+erinaceus europaeus|1
+(noun)|hedgehog|Erinaceus europaeus|Erinaceus europeaeus|insectivore (generic term)
+erinaceus europeaeus|1
+(noun)|hedgehog|Erinaceus europaeus|Erinaceus europeaeus|insectivore (generic term)
+eringo|1
+(noun)|eryngo|subshrub (generic term)|suffrutex (generic term)
+erinyes|1
+(noun)|Fury|Eumenides|Erinyes|mythical monster (generic term)|mythical creature (generic term)
+eriobotrya|1
+(noun)|Eriobotrya|genus Eriobotrya|rosid dicot genus (generic term)
+eriobotrya japonica|1
+(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree (generic term)
+eriocaulaceae|1
+(noun)|Eriocaulaceae|family Eriocaulaceae|pipewort family|monocot family (generic term)|liliopsid family (generic term)
+eriocaulon|1
+(noun)|Eriocaulon|genus Eriocaulon|monocot genus (generic term)|liliopsid genus (generic term)
+eriocaulon aquaticum|1
+(noun)|pipewort|Eriocaulon aquaticum|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+eriodictyon|1
+(noun)|Eriodictyon|genus Eriodictyon|asterid dicot genus (generic term)
+eriodictyon californicum|1
+(noun)|yerba santa|Eriodictyon californicum|shrub (generic term)|bush (generic term)
+eriogonum|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+eriogonum allenii|1
+(noun)|umbrella plant|Eriogonum allenii|eriogonum (generic term)
+eriophorum|1
+(noun)|Eriophorum|genus Eriophorum|monocot genus (generic term)|liliopsid genus (generic term)
+eriophorum angustifolium|1
+(noun)|common cotton grass|Eriophorum angustifolium|cotton grass (generic term)|cotton rush (generic term)
+eriophyllum|1
+(noun)|Eriophyllum|genus Eriophyllum|asterid dicot genus (generic term)
+eriophyllum lanatum|1
+(noun)|golden yarrow|Eriophyllum lanatum|woolly sunflower (generic term)
+eriophyllum wallacei|1
+(noun)|woolly daisy|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower (generic term)|wild flower (generic term)
+eriosoma|1
+(noun)|Eriosoma|genus Eriosoma|arthropod genus (generic term)
+eriosoma lanigerum|1
+(noun)|woolly apple aphid|American blight|Eriosoma lanigerum|woolly aphid (generic term)|woolly plant louse (generic term)
+eris|1
+(noun)|Eris|Greek deity (generic term)
+eristic|3
+(adj)|eristical|argumentative (similar term)
+(noun)|disputant|controversialist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+eristical|1
+(adj)|eristic|argumentative (similar term)
+erithacus|1
+(noun)|Erithacus|genus Erithacus|bird genus (generic term)
+erithacus rubecola|1
+(noun)|robin|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush (generic term)
+erithacus svecicus|1
+(noun)|bluethroat|Erithacus svecicus|thrush (generic term)
+eritrea|1
+(noun)|Eritrea|State of Eritrea|African country (generic term)|African nation (generic term)
+eritrean|2
+(adj)|Eritrean|African country|African nation (related term)
+(noun)|Eritrean|Ethiopian (generic term)
+erivan|1
+(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital (generic term)
+erlang|1
+(noun)|Erlang|telephone unit (generic term)
+erle stanley gardner|1
+(noun)|Gardner|Erle Stanley Gardner|writer (generic term)|author (generic term)
+erlenmeyer|1
+(noun)|Erlenmeyer|Richard August Carl Emil Erlenmeyer|chemist (generic term)
+erlenmeyer flask|1
+(noun)|Erlenmeyer flask|flask (generic term)
+ermine|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|shorttail weasel|Mustela erminea|weasel (generic term)
+ern|1
+(noun)|erne|grey sea eagle|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+erne|1
+(noun)|ern|grey sea eagle|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+ernest bevin|1
+(noun)|Bevin|Ernest Bevin|statesman (generic term)|solon (generic term)|national leader (generic term)
+ernest bloch|1
+(noun)|Bloch|Ernest Bloch|composer (generic term)
+ernest hemingway|1
+(noun)|Hemingway|Ernest Hemingway|writer (generic term)|author (generic term)
+ernest orlando lawrence|1
+(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist (generic term)
+ernest rutherford|1
+(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist (generic term)
+ernest solvay|1
+(noun)|Solvay|Ernest Solvay|chemist (generic term)|industrialist (generic term)
+ernest thomas sinton walton|1
+(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist (generic term)
+ernest walton|1
+(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist (generic term)
+ernestine schumann-heink|1
+(noun)|Schumann-Heink|Ernestine Schumann-Heink|contralto (generic term)
+ernesto guevara|1
+(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+ernst|1
+(noun)|Ernst|Max Ernst|painter (generic term)
+ernst boris chain|1
+(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist (generic term)
+ernst cassirer|1
+(noun)|Cassirer|Ernst Cassirer|philosopher (generic term)
+ernst heinrich haeckel|1
+(noun)|Haeckel|Ernst Heinrich Haeckel|biologist (generic term)|life scientist (generic term)|philosopher (generic term)
+ernst heinrich weber|1
+(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist (generic term)
+ernst lubitsch|1
+(noun)|Lubitsch|Ernst Lubitsch|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+ernst ludwig kirchner|1
+(noun)|Kirchner|Ernst Ludwig Kirchner|painter (generic term)
+ernst mach|1
+(noun)|Mach|Ernst Mach|physicist (generic term)|philosopher (generic term)
+ernst theodor amadeus hoffmann|1
+(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer (generic term)|author (generic term)
+ernst theodor wilhelm hoffmann|1
+(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer (generic term)|author (generic term)
+ernst werner von siemens|1
+(noun)|Siemens|Ernst Werner von Siemens|electrical engineer (generic term)
+erode|2
+(verb)|gnaw|gnaw at|eat at|wear away|decay (generic term)|crumble (generic term)|delapidate (generic term)
+(verb)|eat away|fret|damage (generic term)
+eroded|1
+(adj)|scoured|worn (similar term)
+eroding|1
+(noun)|erosion|eating away|wearing|wearing away|geological process (generic term)|geologic process (generic term)
+erodium|1
+(noun)|Erodium|genus Erodium|rosid dicot genus (generic term)
+erodium cicutarium|1
+(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+erodium moschatum|1
+(noun)|musk clover|muskus grass|white-stemmed filaree|Erodium moschatum|storksbill (generic term)|heron's bill (generic term)
+erodium texanum|1
+(noun)|Texas storksbill|Erodium texanum|storksbill (generic term)|heron's bill (generic term)
+erogenous|1
+(adj)|sensitive (similar term)
+erogenous zone|1
+(noun)|area (generic term)|region (generic term)
+erolia|1
+(noun)|Erolia|genus Erolia|bird genus (generic term)
+erolia alpina|1
+(noun)|red-backed sandpiper|dunlin|Erolia alpina|sandpiper (generic term)
+erolia minutilla|1
+(noun)|least sandpiper|stint|Erolia minutilla|sandpiper (generic term)
+eros|2
+(noun)|Eros|Greek deity (generic term)
+(noun)|sexual desire|concupiscence|physical attraction|desire (generic term)
+erose|1
+(adj)|jagged|jaggy|notched|toothed|rough (similar term)
+erose leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+erosion|4
+(noun)|eroding|eating away|wearing|wearing away|geological process (generic term)|geologic process (generic term)
+(noun)|environmental condition (generic term)
+(noun)|decline (generic term)|diminution (generic term)
+(noun)|corrosion|corroding|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+erosive|2
+(adj)|destructive (similar term)
+(adj)|caustic|corrosive|vitriolic|mordant|destructive (similar term)
+erotic|2
+(adj)|titillating|sexy (similar term)
+(noun)|sensualist (generic term)
+erotic love|1
+(noun)|love|sexual love|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+erotica|1
+(noun)|pornography|porno|porn|smut|creation (generic term)|creative activity (generic term)
+eroticism|2
+(noun)|erotism|sexual arousal (generic term)
+(noun)|amorousness|erotism|sexiness|amativeness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+eroticize|1
+(verb)|sex up|change (generic term)|alter (generic term)|modify (generic term)
+erotism|2
+(noun)|eroticism|sexual arousal (generic term)
+(noun)|amorousness|eroticism|sexiness|amativeness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+err|2
+(verb)|mistake|slip|slip up (related term)
+(verb)|stray|drift|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+errancy|2
+(noun)|unacceptability (generic term)|unacceptableness (generic term)
+(noun)|fallibility (generic term)|inerrancy (antonym)
+errand|1
+(noun)|trip (generic term)
+errand boy|1
+(noun)|messenger boy|messenger (generic term)|courier (generic term)
+errant|2
+(adj)|fallible (similar term)
+(adj)|uncontrolled (similar term)
+erratic|3
+(adj)|planetary|wandering|unsettled (similar term)
+(adj)|fickle|mercurial|quicksilver|changeable (similar term)|changeful (similar term)
+(adj)|temperamental|unreliable (similar term)|undependable (similar term)
+erratically|1
+(adv)|unpredictably
+erratum|1
+(noun)|misprint|typographical error|typo|literal error|literal|error (generic term)|mistake (generic term)
+erreminise|1
+(verb)|feminize|feminise|effeminize|womanize|change (generic term)|alter (generic term)|modify (generic term)
+errhine|1
+(adj)|causative (similar term)
+erring|1
+(adj)|error-prone|fallible (similar term)
+erroneous|1
+(adj)|inaccurate|incorrect (similar term)|wrong (similar term)
+erroneous belief|1
+(noun)|error|misconception (generic term)
+erroneously|1
+(adv)|mistakenly
+erroneousness|1
+(noun)|error|incorrectness (generic term)|wrongness (generic term)
+error|7
+(noun)|mistake|fault|nonaccomplishment (generic term)|nonachievement (generic term)
+(noun)|erroneousness|incorrectness (generic term)|wrongness (generic term)
+(noun)|erroneous belief|misconception (generic term)
+(noun)|misplay|failure (generic term)
+(noun)|wrongdoing|evil (generic term)|evilness (generic term)
+(noun)|computer error|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|mistake|misstatement (generic term)
+error-prone|1
+(adj)|erring|fallible (similar term)
+error correction code|1
+(noun)|ECC|code (generic term)|computer code (generic term)
+errorless|1
+(adj)|perfect (similar term)
+ersatz|2
+(adj)|substitute|artificial (similar term)|unreal (similar term)
+(noun)|substitute (generic term)|replacement (generic term)
+erse|1
+(noun)|Gaelic|Goidelic|Erse|Celtic (generic term)|Celtic language (generic term)
+erskine caldwell|1
+(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer (generic term)|author (generic term)
+erskine preston caldwell|1
+(noun)|Caldwell|Erskine Caldwell|Erskine Preston Caldwell|writer (generic term)|author (generic term)
+erst|1
+(adv)|once|formerly|at one time|erstwhile
+erstwhile|2
+(adj)|former|old|onetime|quondam|sometime|past (similar term)
+(adv)|once|formerly|at one time|erst
+ert|1
+(noun)|Earth-received time|ERT|coordinated universal time (generic term)|UTC (generic term)
+eruca|1
+(noun)|Eruca|genus Eruca|dilleniid dicot genus (generic term)
+eruca sativa|1
+(noun)|rocket|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+eruca vesicaria sativa|1
+(noun)|rocket|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+eruct|2
+(verb)|spew|spew out|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|burp|bubble|belch|emit (generic term)|breathe (generic term)|pass off (generic term)
+eructation|2
+(noun)|eruption|extravasation|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|belch|belching|burp|burping|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+erudite|1
+(adj)|learned|scholarly (similar term)
+eruditely|1
+(adv)|learnedly
+eruditeness|1
+(noun)|erudition|learnedness|learning|scholarship|encyclopedism|encyclopaedism|education (generic term)
+erudition|1
+(noun)|eruditeness|learnedness|learning|scholarship|encyclopedism|encyclopaedism|education (generic term)
+erupt|8
+(verb)|break out|begin (generic term)|start (generic term)
+(verb)|irrupt|flare up|flare|break open|burst out|intensify (generic term)|deepen (generic term)
+(verb)|ignite|catch fire|take fire|combust|conflagrate|change state (generic term)|turn (generic term)
+(verb)|come out|break through|push through|appear (generic term)
+(verb)|belch|extravasate|explode (generic term)|burst (generic term)
+(verb)|break|burst|express emotion (generic term)|express feelings (generic term)
+(verb)|appear (generic term)
+(verb)|recrudesce|break out|afflict (generic term)|trouble (generic term)|ail (generic term)|pain (generic term)
+eruption|6
+(noun)|volcanic eruption|discharge (generic term)
+(noun)|symptom (generic term)
+(noun)|eructation|extravasation|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|outbreak|irruption|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|bang|clap|blast|bam|noise (generic term)
+(noun)|emergence (generic term)|egress (generic term)|issue (generic term)
+eruptive|3
+(adj)|symptom (related term)
+(adj)|igneous|aqueous (antonym)
+(adj)|active (similar term)
+erving|1
+(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward (generic term)
+erwin panofsky|1
+(noun)|Panofsky|Erwin Panofsky|art historian (generic term)
+erwin rommel|1
+(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal (generic term)
+erwin schrodinger|1
+(noun)|Schrodinger|Erwin Schrodinger|nuclear physicist (generic term)
+erwinia|1
+(noun)|enteric bacteria (generic term)|enterobacteria (generic term)|enterics (generic term)|entric (generic term)
+eryngium|1
+(noun)|Eryngium|genus Eryngium|rosid dicot genus (generic term)
+eryngium aquaticum|1
+(noun)|button snakeroot|Eryngium aquaticum|herb (generic term)|herbaceous plant (generic term)
+eryngium maritimum|1
+(noun)|sea holly|sea holm|sea eryngium|Eryngium maritimum|shrub (generic term)|bush (generic term)
+eryngium yuccifolium|1
+(noun)|rattlesnake master|rattlesnake's master|button snakeroot|Eryngium yuccifolium|perennial (generic term)
+eryngo|1
+(noun)|eringo|subshrub (generic term)|suffrutex (generic term)
+erysimum|1
+(noun)|Erysimum|genus Erysimum|dilleniid dicot genus (generic term)
+erysimum allionii|1
+(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower (generic term)
+erysimum arkansanum|1
+(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower (generic term)
+erysimum asperum|1
+(noun)|western wall flower|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower (generic term)
+erysimum cheiranthoides|1
+(noun)|wormseed mustard|Erysimum cheiranthoides|weed (generic term)
+erysimum cheiri|1
+(noun)|wallflower|Cheiranthus cheiri|Erysimum cheiri|flower (generic term)
+erysipelas|1
+(noun)|Saint Anthony's fire (generic term)
+erysiphaceae|1
+(noun)|Erysiphaceae|family Erysiphaceae|fungus family (generic term)
+erysiphales|1
+(noun)|Erysiphales|order Erysiphales|fungus order (generic term)
+erysiphe|1
+(noun)|Erysiphe|genus Erysiphe|fungus genus (generic term)
+erythema|1
+(noun)|erythroderma (generic term)
+erythema multiforme|1
+(noun)|erythema (generic term)
+erythema nodosum|1
+(noun)|erythema (generic term)
+erythema nodosum leprosum|1
+(noun)|ENL|erythema nodosum (generic term)
+erythema solare|1
+(noun)|sunburn|erythema (generic term)|first-degree burn (generic term)
+erythematous|1
+(adj)|erythroderma (related term)
+erythrina|1
+(noun)|coral tree|tree (generic term)
+erythrina caffra|1
+(noun)|kaffir boom|Cape kafferboom|Erythrina caffra|coral tree (generic term)|erythrina (generic term)
+erythrina corallodendrum|1
+(noun)|coral bean tree|Erythrina corallodendrum|coral tree (generic term)|erythrina (generic term)
+erythrina crista-galli|1
+(noun)|ceibo|crybaby tree|cry-baby tree|common coral tree|Erythrina crista-galli|coral tree (generic term)|erythrina (generic term)
+erythrina indica|1
+(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree (generic term)|erythrina (generic term)
+erythrina lysistemon|1
+(noun)|kaffir boom|Transvaal kafferboom|Erythrina lysistemon|coral tree (generic term)|erythrina (generic term)
+erythrina variegata|1
+(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree (generic term)|erythrina (generic term)
+erythrina vespertilio|1
+(noun)|cork tree|Erythrina vespertilio|coral tree (generic term)|erythrina (generic term)
+erythrite|1
+(noun)|cobalt bloom|mineral (generic term)
+erythroblast|1
+(noun)|embryonic cell (generic term)|formative cell (generic term)
+erythroblastosis|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+erythroblastosis fetalis|1
+(noun)|anemia (generic term)|anaemia (generic term)
+erythrocebus|1
+(noun)|Erythrocebus|genus Erythrocebus|mammal genus (generic term)
+erythrocebus patas|1
+(noun)|patas|hussar monkey|Erythrocebus patas|Old World monkey (generic term)|catarrhine (generic term)
+erythrocin|1
+(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+erythrocyte|1
+(noun)|red blood cell|RBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)
+erythrocyte sedimentation rate|1
+(noun)|ESR|sedimentation rate|sed rate|rate (generic term)
+erythrocytolysin|1
+(noun)|hemolysin|haemolysin|erythrolysin|organic compound (generic term)
+erythroderma|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+erythroid|1
+(adj)|blood cell|blood corpuscle|corpuscle (related term)
+erythrolysin|1
+(noun)|hemolysin|haemolysin|erythrocytolysin|organic compound (generic term)
+erythromycin|1
+(noun)|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+erythronium|1
+(noun)|Erythronium|genus Erythronium|liliid monocot genus (generic term)
+erythronium albidum|1
+(noun)|white dogtooth violet|white dog's-tooth violet|blonde lilian|Erythronium albidum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+erythronium americanum|1
+(noun)|yellow adder's tongue|trout lily|amberbell|Erythronium americanum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+erythronium californicum|1
+(noun)|fawn lily|Erythronium californicum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+erythronium dens-canis|1
+(noun)|European dogtooth|Erythronium dens-canis|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+erythronium grandiflorum|1
+(noun)|glacier lily|snow lily|Erythronium grandiflorum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+erythronium montanum|1
+(noun)|avalanche lily|Erythronium montanum|liliaceous plant (generic term)
+erythropoiesis|1
+(noun)|organic process (generic term)|biological process (generic term)
+erythropoietic|1
+(adj)|organic process|biological process (related term)
+erythropoietin|1
+(noun)|glycoprotein (generic term)
+erythroxylaceae|1
+(noun)|Erythroxylaceae|family Erythroxylaceae|plant family (generic term)
+erythroxylon|1
+(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus (generic term)
+erythroxylon coca|1
+(noun)|Erythroxylon coca|coca|coca plant|shrub (generic term)|bush (generic term)
+erythroxylon truxiuense|1
+(noun)|Erythroxylon truxiuense|shrub (generic term)|bush (generic term)
+erythroxylum|1
+(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus (generic term)
+es|1
+(noun)|einsteinium|Es|E|atomic number 99|metallic element (generic term)|metal (generic term)
+esaki|1
+(noun)|Esaki|Leo Esaki|physicist (generic term)
+esau|1
+(noun)|Esau|son (generic term)|boy (generic term)
+escadrille|1
+(noun)|squadron (generic term)
+escalade|2
+(noun)|scaling (generic term)
+(verb)|climb (generic term)|climb up (generic term)|mount (generic term)|go up (generic term)
+escalader|1
+(noun)|climber (generic term)
+escalate|1
+(verb)|intensify|step up|increase (generic term)|de-escalate (antonym)
+escalation|1
+(noun)|increase (generic term)|step-up (generic term)
+escalator|2
+(noun)|escalator clause|article (generic term)|clause (generic term)
+(noun)|moving staircase|moving stairway|stairway (generic term)|staircase (generic term)
+escalator clause|1
+(noun)|escalator|article (generic term)|clause (generic term)
+escallop|4
+(noun)|scallop|scollop|shellfish (generic term)
+(noun)|cutlet|scallop|scollop|piece (generic term)|slice (generic term)
+(noun)|scallop|scollop|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(verb)|scallop|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+escalope de veau orloff|1
+(noun)|escalope de veau Orloff|dish (generic term)
+escapade|2
+(noun)|adventure|risky venture|dangerous undertaking|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|lark|diversion (generic term)|recreation (generic term)
+escape|15
+(noun)|flight|running away (generic term)
+(noun)|escapism|diversion (generic term)|recreation (generic term)
+(noun)|leak|leakage|outflow|discharge (generic term)|outpouring (generic term)|run (generic term)
+(noun)|safety valve|relief valve|escape valve|escape cock|valve (generic term)|regulator (generic term)
+(noun)|evasion|dodging|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+(noun)|avoidance (generic term)|turning away (generic term)|shunning (generic term)|dodging (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(verb)|get away|break loose|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|miss|avoid (generic term)
+(verb)|get off|get away|get by|get out|avoid (generic term)
+(verb)|elude|perplex (generic term)|vex (generic term)|stick (generic term)|get (generic term)|puzzle (generic term)|mystify (generic term)|baffle (generic term)|beat (generic term)|pose (generic term)|bewilder (generic term)|flummox (generic term)|stupefy (generic term)|nonplus (generic term)|gravel (generic term)|amaze (generic term)|dumbfound (generic term)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+(verb)|get away|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+escape cock|1
+(noun)|safety valve|relief valve|escape valve|escape|valve (generic term)|regulator (generic term)
+escape expert|1
+(noun)|escapologist|magician (generic term)|prestidigitator (generic term)|conjurer (generic term)|conjuror (generic term)|illusionist (generic term)
+escape from|1
+(verb)|shake|shake off|throw off|escape (generic term)|get away (generic term)|break loose (generic term)
+escape hatch|1
+(noun)|hatchway (generic term)|opening (generic term)|scuttle (generic term)
+escape mechanism|1
+(noun)|evasion (generic term)|escape (generic term)|dodging (generic term)
+escape valve|1
+(noun)|safety valve|relief valve|escape cock|escape|valve (generic term)|regulator (generic term)
+escape velocity|1
+(noun)|speed (generic term)|velocity (generic term)
+escape wheel|1
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+escaped|1
+(adj)|at large|loose|on the loose|free (similar term)
+escapee|1
+(noun)|fugitive (generic term)|fugitive from justice (generic term)
+escapement|1
+(noun)|mechanical device (generic term)
+escapism|1
+(noun)|escape|diversion (generic term)|recreation (generic term)
+escapist|1
+(noun)|dreamer|wishful thinker|daydreamer (generic term)|woolgatherer (generic term)
+escapologist|1
+(noun)|escape expert|magician (generic term)|prestidigitator (generic term)|conjurer (generic term)|conjuror (generic term)|illusionist (generic term)
+escapology|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+escargot|1
+(noun)|snail|meat (generic term)
+escarole|1
+(noun)|chicory escarole|endive|salad green (generic term)|salad greens (generic term)
+escarp|1
+(noun)|escarpment|scarp|protective embankment|fortification (generic term)|munition (generic term)
+escarpment|2
+(noun)|scarp|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|escarp|scarp|protective embankment|fortification (generic term)|munition (generic term)
+eschalot|1
+(noun)|shallot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+eschar|1
+(noun)|scab (generic term)
+eschatological|1
+(adj)|theology|divinity (related term)
+eschatologist|1
+(noun)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+eschatology|1
+(noun)|theology (generic term)|divinity (generic term)
+escheat|2
+(noun)|reversion (generic term)
+(noun)|transferred property (generic term)|transferred possession (generic term)
+escherichia|1
+(noun)|enteric bacteria (generic term)|enterobacteria (generic term)|enterics (generic term)|entric (generic term)
+escherichia coli|1
+(noun)|Escherichia coli|E. coli|escherichia (generic term)
+eschew|1
+(verb)|shun|avoid (generic term)
+eschrichtiidae|1
+(noun)|Eschrichtiidae|family Eschrichtiidae|mammal family (generic term)
+eschrichtius|1
+(noun)|Eschrichtius|genus Eschrichtius|mammal genus (generic term)
+eschrichtius gibbosus|1
+(noun)|grey whale|gray whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale (generic term)|whalebone whale (generic term)
+eschrichtius robustus|1
+(noun)|grey whale|gray whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale (generic term)|whalebone whale (generic term)
+eschscholtzia|1
+(noun)|Eschscholtzia|genus Eschscholtzia|dilleniid dicot genus (generic term)
+eschscholtzia californica|1
+(noun)|California poppy|Eschscholtzia californica|poppy (generic term)
+escolar|1
+(noun)|Lepidocybium flavobrunneum|gempylid (generic term)
+escort|6
+(noun)|bodyguard|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|accompaniment|protection (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|date|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+(verb)|accompany (generic term)
+(verb)|see|accompany (generic term)
+escritoire|1
+(noun)|secretary|writing table|secretaire|desk (generic term)
+escrow|1
+(noun)|written agreement (generic term)
+escrow funds|1
+(noun)|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+escudo|2
+(noun)|Portuguese escudo|Portuguese monetary unit (generic term)
+(noun)|Cape Verde escudo|Cape Verde monetary unit (generic term)
+escutcheon|3
+(noun)|finger plate|scutcheon|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|plate (generic term)
+(noun)|scutcheon|shield (generic term)|buckler (generic term)
+ese|1
+(noun)|east southeast|ESE|compass point (generic term)|point (generic term)
+esfahan|1
+(noun)|Isfahan|Esfahan|Aspadana|city (generic term)|metropolis (generic term)|urban center (generic term)
+esidrix|1
+(noun)|hydrochlorothiazide|Esidrix|HydroDIURIL|thiazide (generic term)
+eskalith|1
+(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate (generic term)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+esker|1
+(noun)|ridge (generic term)
+eskimo|2
+(noun)|Eskimo|Esquimau|Inuit|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Eskimo|Esquimau|Eskimo-Aleut (generic term)|Eskimo-Aleut language (generic term)
+eskimo-aleut|1
+(noun)|Eskimo-Aleut|Eskimo-Aleut language|natural language (generic term)|tongue (generic term)
+eskimo-aleut language|1
+(noun)|Eskimo-Aleut|Eskimo-Aleut language|natural language (generic term)|tongue (generic term)
+eskimo curlew|1
+(noun)|Eskimo curlew|Numenius borealis|curlew (generic term)
+eskimo dog|1
+(noun)|Eskimo dog|husky|working dog (generic term)
+esm|1
+(noun)|electronic warfare-support measures|ESM|electronic warfare (generic term)|EW (generic term)
+esme stuart lennox robinson|1
+(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist (generic term)|playwright (generic term)
+esmolol|1
+(noun)|Brevibloc|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+esocidae|1
+(noun)|Esocidae|family Esocidae|fish family (generic term)
+esop|1
+(noun)|employee stock ownership plan|ESOP|stock purchase plan (generic term)
+esophageal|1
+(adj)|passage|passageway|muscular structure|musculature|muscle system (related term)
+esophageal reflux|1
+(noun)|gastroesophageal reflux|oesophageal reflux|reflux (generic term)
+esophageal smear|1
+(noun)|alimentary tract smear (generic term)
+esophageal veins|1
+(noun)|oesophageal veins|venae esophageae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+esophagitis|1
+(noun)|oesophagitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+esophagogastric junction|1
+(noun)|oesophagogastric junction|articulation (generic term)|join (generic term)|joint (generic term)|juncture (generic term)|junction (generic term)
+esophagoscope|1
+(noun)|oesophagoscope|optical instrument (generic term)
+esophagus|1
+(noun)|oesophagus|gorge|gullet|passage (generic term)|passageway (generic term)|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)
+esoteric|1
+(adj)|abstruse (similar term)|deep (similar term)|recondite (similar term)|arcane (similar term)|cabalistic (similar term)|kabbalistic (similar term)|qabalistic (similar term)|cryptic (similar term)|cryptical (similar term)|sibylline (similar term)|mysterious (similar term)|mystic (similar term)|mystical (similar term)|occult (similar term)|secret (similar term)|orphic (similar term)|private (related term)|exoteric (antonym)
+esoterica|1
+(noun)|secret (generic term)|arcanum (generic term)
+esotropia|1
+(noun)|cross-eye|crossed eye|convergent strabismus|strabismus (generic term)|squint (generic term)
+esox|1
+(noun)|Esox|genus Esox|fish genus (generic term)
+esox americanus|1
+(noun)|redfin pickerel|barred pickerel|Esox americanus|pickerel (generic term)
+esox lucius|1
+(noun)|northern pike|Esox lucius|pike (generic term)
+esox masquinongy|1
+(noun)|muskellunge|Esox masquinongy|pike (generic term)
+esox niger|1
+(noun)|chain pickerel|chain pike|Esox niger|pickerel (generic term)
+esp|1
+(noun)|clairvoyance|second sight|extrasensory perception|E.S.P.|ESP|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+espadrille|1
+(noun)|sandal (generic term)
+espalier|1
+(noun)|trellis (generic term)|treillage (generic term)
+espana|1
+(noun)|Spain|Kingdom of Spain|Espana|European country (generic term)|European nation (generic term)
+espanole|1
+(noun)|sauce espanole|sauce (generic term)
+esparcet|1
+(noun)|sainfoin|sanfoin|holy clover|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+especial|1
+(adj)|exceptional|particular|special|uncommon (similar term)
+especially|2
+(adv)|particularly|peculiarly|specially
+(adv)|specially
+esperantido|1
+(noun)|Esperantido|artificial language (generic term)
+esperanto|1
+(noun)|Esperanto|artificial language (generic term)
+espial|1
+(noun)|detection|catching|spying|spotting|discovery (generic term)|find (generic term)|uncovering (generic term)
+espionage|1
+(noun)|spying (generic term)|undercover work (generic term)
+espionage agent|1
+(noun)|spy (generic term)|undercover agent (generic term)
+espionage network|1
+(noun)|network (generic term)|web (generic term)
+esplanade|1
+(noun)|promenade (generic term)|mall (generic term)
+espoo|1
+(noun)|Espoo|city (generic term)|metropolis (generic term)|urban center (generic term)
+espousal|3
+(noun)|bridal|marriage (generic term)|wedding (generic term)|marriage ceremony (generic term)
+(noun)|betrothal|ritual (generic term)|rite (generic term)
+(noun)|adoption|acceptance|acceptation|blessing (generic term)|approval (generic term)|approving (generic term)
+espouse|3
+(verb)|adopt|follow|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|marry|get married|wed|conjoin|hook up with|get hitched with|unite (generic term)|unify (generic term)
+(verb)|embrace|adopt|sweep up|accept (generic term)
+espresso|1
+(noun)|coffee (generic term)|java (generic term)
+espresso maker|1
+(noun)|coffee maker (generic term)
+espresso shop|1
+(noun)|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+esprit|1
+(noun)|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+esprit de corps|1
+(noun)|morale|team spirit|disposition (generic term)|temperament (generic term)
+esprit de l'escalier|1
+(noun)|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+espy|1
+(verb)|descry|spot|spy|sight (generic term)
+esq|1
+(noun)|Esquire|Esq|man (generic term)|adult male (generic term)
+esquimau|2
+(noun)|Eskimo|Esquimau|Inuit|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Eskimo|Esquimau|Eskimo-Aleut (generic term)|Eskimo-Aleut language (generic term)
+esquire|2
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|Esquire|Esq|man (generic term)|adult male (generic term)
+esr|2
+(noun)|erythrocyte sedimentation rate|ESR|sedimentation rate|sed rate|rate (generic term)
+(noun)|electron spin resonance|ESR|electron paramagnetic resonance|microwave spectroscopy (generic term)
+essay|4
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(verb)|try|seek|attempt|assay|act (generic term)|move (generic term)|try out (related term)
+(verb)|test|prove|try|try out|examine|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+essayer|1
+(noun)|trier|attempter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+essayist|1
+(noun)|litterateur|writer (generic term)|author (generic term)
+esselen|1
+(noun)|Esselen|Hokan (generic term)|Hoka (generic term)
+essen|1
+(noun)|Essen|city (generic term)|metropolis (generic term)|urban center (generic term)
+essence|4
+(noun)|kernel|substance|core|center|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|effect|burden|core|gist|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|perfume|toiletry (generic term)|toilet article (generic term)
+essene|2
+(adj)|Essene|Jew|Hebrew|Israelite (related term)
+(noun)|Essene|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+essential|7
+(adj)|indispensable|necessary (similar term)
+(adj)|basal (similar term)|primary (similar term)|biogenic (similar term)|constituent (similar term)|constitutional (similar term)|constitutive (similar term)|organic (similar term)|must (similar term)|no-frills (similar term)|staple (similar term)|substantial (similar term)|substantive (similar term)|virtual (similar term)|vital (similar term)|life-sustaining (similar term)|crucial (related term)|important (related term)|important (related term)|of import (related term)|indispensable (related term)|intrinsic (related term)|intrinsical (related term)|necessary (related term)|primary (related term)|unexpendable (related term)|inessential (antonym)
+(adj)|all-important|all important|crucial|of the essence|important (similar term)|of import (similar term)
+(adj)|substance|matter (related term)
+(adj)|substantive|adjective (antonym)
+(adj)|unexpendable (similar term)
+(noun)|necessity|requirement|requisite|necessary|thing (generic term)|inessential (antonym)
+essential amino acid|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+essential condition|1
+(noun)|sine qua non|prerequisite (generic term)|requirement (generic term)
+essential hypertension|1
+(noun)|hyperpiesia|hyperpiesis|high blood pressure (generic term)|hypertension (generic term)
+essential oil|1
+(noun)|volatile oil|oil (generic term)
+essential thrombocytopenia|1
+(noun)|thrombocytopenia (generic term)|thrombopenia (generic term)
+essential tremor|1
+(noun)|tremor (generic term)
+essentiality|1
+(noun)|essentialness|importance (generic term)|inessentiality (antonym)
+essentially|1
+(adv)|basically|fundamentally|in essence|au fond
+essentialness|1
+(noun)|essentiality|importance (generic term)|inessentiality (antonym)
+essex|1
+(noun)|Essex|county (generic term)
+essonite|1
+(noun)|cinnamon stone|hessonite|garnet (generic term)
+est|1
+(noun)|Eastern Time|Eastern Standard Time|EST|civil time (generic term)|standard time (generic term)|local time (generic term)
+establish|8
+(verb)|set up|found|launch|open (generic term)|open up (generic term)|abolish (antonym)
+(verb)|found|plant|constitute|institute|initiate (generic term)|pioneer (generic term)
+(verb)|prove|demonstrate|show|shew|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|disprove (antonym)
+(verb)|lay down|make|make (generic term)|create (generic term)
+(verb)|give|make (generic term)|create (generic term)
+(verb)|install|instal|set up
+(verb)|base|ground|found
+(verb)|build|make (generic term)|create (generic term)
+established|6
+(adj)|constituted|accepted (similar term)|brought about (similar term)|deep-rooted (similar term)|deep-seated (similar term)|implanted (similar term)|ingrained (similar term)|planted (similar term)|entrenched (similar term)|grooved (similar term)|well-grooved (similar term)|habitual (similar term)|legitimate (similar term)|official (similar term)|recognized (similar term)|recognised (similar term)|self-constituted (similar term)|self-established (similar term)|set up (similar term)|unestablished (antonym)
+(adj)|firm|secure (similar term)
+(adj)|accomplished|effected|settled (similar term)
+(adj)|proved (similar term)|proven (similar term)
+(adj)|conventional|orthodox (similar term)
+(adj)|naturalized|foreign (similar term)|strange (similar term)
+established church|1
+(noun)|religion (generic term)|faith (generic term)|organized religion (generic term)
+establishment|7
+(noun)|constitution|formation|organization|organisation|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|institution|organization (generic term)|organisation (generic term)
+(noun)|administration|governance|governing body|brass|organization|organisation|body (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|ecesis|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|validation|proof (generic term)|cogent evidence (generic term)
+establishmentarianism|1
+(noun)|establishmentism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+establishmentism|1
+(noun)|establishmentarianism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+estaminet|1
+(noun)|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+estate|3
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|land|landed estate|acres|demesne|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|estate of the realm|class (generic term)|social class (generic term)|socio-economic class (generic term)
+estate agent|1
+(noun)|realtor|real estate broker|real estate agent|land agent|house agent|agent (generic term)|factor (generic term)|broker (generic term)
+estate car|1
+(noun)|shooting brake|beach wagon (generic term)|station wagon (generic term)|wagon (generic term)|beach waggon (generic term)|station waggon (generic term)|waggon (generic term)
+estate for life|1
+(noun)|life estate|estate (generic term)
+estate of the realm|1
+(noun)|estate|class (generic term)|social class (generic term)|socio-economic class (generic term)
+estate tax|1
+(noun)|inheritance tax|death tax|death duty|transfer tax (generic term)
+estates general|1
+(noun)|Estates General|States General (generic term)
+estazolam|1
+(noun)|ProSom|benzodiazepine (generic term)
+esteem|5
+(noun)|regard|respect|honor (generic term)|honour (generic term)|laurels (generic term)|disesteem (antonym)
+(noun)|admiration|liking (generic term)
+(noun)|respect|regard|attitude (generic term)|mental attitude (generic term)|disrespect (antonym)
+(verb)|respect|value|prize|prise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|disesteem (antonym)|disrespect (antonym)
+(verb)|think of|repute|regard as|look upon|look on|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+esteemed|1
+(adj)|honored|prestigious|reputable (similar term)
+ester|1
+(noun)|organic compound (generic term)
+esterify|1
+(verb)|change state (generic term)|turn (generic term)
+esther|2
+(noun)|Esther|Jewess (generic term)|queen (generic term)
+(noun)|Esther|Book of Esther|book (generic term)
+esther hobart mcquigg slack morris|1
+(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist (generic term)
+esther morris|1
+(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist (generic term)
+esthesia|1
+(noun)|sensibility|aesthesia|consciousness (generic term)|insensibility (antonym)
+esthesis|1
+(noun)|sensation|aesthesis|sense experience|sense impression|sense datum|perception (generic term)
+esthete|1
+(noun)|aesthete|connoisseur (generic term)|cognoscenti (generic term)
+esthetic|4
+(adj)|aesthetic|aesthetical|esthetical|artistic (similar term)|beautiful (similar term)|cosmetic (similar term)|enhancive (similar term)|painterly (similar term)|sensuous (similar term)|inaesthetic (antonym)
+(adj)|aesthetic|philosophy (related term)
+(adj)|aesthetic|artistic|pleasing|tasteful (similar term)
+(noun)|aesthetic|philosophical doctrine (generic term)|philosophical theory (generic term)
+esthetical|1
+(adj)|aesthetic|esthetic|aesthetical|artistic (similar term)|beautiful (similar term)|cosmetic (similar term)|enhancive (similar term)|painterly (similar term)|sensuous (similar term)|inaesthetic (antonym)
+esthetically|1
+(adv)|aesthetically
+esthetician|2
+(noun)|aesthetician|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|aesthetician|philosopher (generic term)
+esthetics|1
+(noun)|aesthetics|philosophy (generic term)
+esthonia|1
+(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State (generic term)|Baltic Republic (generic term)
+esthonian|1
+(noun)|Estonian|Esthonian|Baltic-Finnic (generic term)
+estimable|3
+(adj)|admirable (similar term)|worthy (related term)|contemptible (antonym)
+(adj)|good|honorable|respectable|reputable (similar term)
+(adj)|computable|calculable (similar term)
+estimate|7
+(noun)|estimation|approximation|idea|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|estimation|judgment (generic term)|judgement (generic term)|assessment (generic term)
+(noun)|appraisal|estimation|commercial document (generic term)|commercial instrument (generic term)
+(noun)|statement (generic term)
+(noun)|estimation|respect (generic term)|esteem (generic term)|regard (generic term)
+(verb)|gauge|approximate|guess|judge|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|overestimate (related term)|underestimate (related term)
+(verb)|calculate|reckon|count on|figure|forecast|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+estimated tax|1
+(noun)|income tax (generic term)
+estimated tax return|1
+(noun)|declaration of estimated tax|tax return (generic term)|income tax return (generic term)|return (generic term)
+estimation|4
+(noun)|estimate|approximation|idea|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|appraisal|estimate|commercial document (generic term)|commercial instrument (generic term)
+(noun)|estimate|respect (generic term)|esteem (generic term)|regard (generic term)
+(noun)|estimate|judgment (generic term)|judgement (generic term)|assessment (generic term)
+estimator|1
+(noun)|calculator|reckoner|figurer|computer|expert (generic term)
+estival|1
+(adj)|aestival|summery (similar term)
+estivate|1
+(verb)|aestivate|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)|hibernate (antonym)|hibernate (antonym)
+estivation|2
+(noun)|aestivation|dormancy (generic term)|quiescence (generic term)|quiescency (generic term)
+(noun)|aestivation|arrangement (generic term)
+estonia|1
+(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State (generic term)|Baltic Republic (generic term)
+estonian|2
+(adj)|Estonian|Baltic State|Baltic Republic (related term)
+(noun)|Estonian|Esthonian|Baltic-Finnic (generic term)
+estonian monetary unit|1
+(noun)|Estonian monetary unit|monetary unit (generic term)
+estoppel|1
+(noun)|rule of evidence (generic term)
+estradiol|1
+(noun)|oestradiol|estrogen (generic term)|oestrogen (generic term)
+estradiol patch|1
+(noun)|transdermal patch (generic term)|skin patch (generic term)
+estragon|2
+(noun)|tarragon|Artemisia dracunculus|artemisia (generic term)
+(noun)|tarragon|herb (generic term)
+estrange|2
+(verb)|take out (generic term)|move out (generic term)|remove (generic term)
+(verb)|alienate|alien|disaffect|change (generic term)|alter (generic term)|modify (generic term)
+estranged|1
+(adj)|alienated|unloved (similar term)
+estrangement|2
+(noun)|alienation|isolation (generic term)
+(noun)|alienation|disaffection|dislike (generic term)
+estranging|1
+(adj)|disorienting (similar term)
+estraterrestrial body|1
+(noun)|extraterrestrial object|natural object (generic term)
+estrilda|1
+(noun)|Estrilda|genus Estrilda|bird genus (generic term)
+estriol|1
+(noun)|oestriol|estrogen (generic term)|oestrogen (generic term)
+estrogen|1
+(noun)|oestrogen|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+estrogen antagonist|1
+(noun)|tamoxifen|antagonist (generic term)
+estrogenic|1
+(adj)|steroid hormone|steroid|sex hormone (related term)
+estrone|1
+(noun)|oestrone|theelin|Estronol|estrogen (generic term)|oestrogen (generic term)|ketosteroid (generic term)
+estronol|1
+(noun)|estrone|oestrone|theelin|Estronol|estrogen (generic term)|oestrogen (generic term)|ketosteroid (generic term)
+estrous|1
+(adj)|monestrous (similar term)|monoestrous (similar term)|polyestrous (similar term)|polyoestrous (similar term)|anestrous (antonym)
+estrus|1
+(noun)|oestrus|heat|rut|physiological state (generic term)|physiological condition (generic term)|anestrus (antonym)
+estuarial|1
+(adj)|estuarine|body of water|water (related term)
+estuarine|1
+(adj)|estuarial|body of water|water (related term)
+estuary|1
+(noun)|body of water (generic term)|water (generic term)
+esurience|2
+(noun)|edacity|ravenousness|voracity|voraciousness|hunger (generic term)|hungriness (generic term)
+(noun)|edacity|rapaciousness|rapacity|voracity|voraciousness|gluttony (generic term)
+esurient|3
+(adj)|famished|ravenous|sharp-set|starved|hungry (similar term)
+(adj)|avid|devouring|greedy|desirous (similar term)|wishful (similar term)
+(adj)|edacious|rapacious|ravening|ravenous|voracious|wolfish|gluttonous (similar term)
+et al|2
+(adv)|et al.|et alii|et aliae|et alia
+(adv)|et al.|et alibi
+et al.|2
+(adv)|et al|et alii|et aliae|et alia
+(adv)|et al|et alibi
+et alia|1
+(adv)|et al.|et al|et alii|et aliae
+et aliae|1
+(adv)|et al.|et al|et alii|et alia
+et alibi|1
+(adv)|et al.|et al
+et alii|1
+(adv)|et al.|et al|et aliae|et alia
+eta|2
+(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+etagere|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+etamin|1
+(noun)|etamine|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+etamine|1
+(noun)|etamin|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+etanercept|1
+(noun)|Enbrel|anti-TNF compound (generic term)
+etc.|1
+(adv)|and so forth|and so on|etcetera
+etcetera|2
+(noun)|stuff (generic term)
+(adv)|and so forth|and so on|etc.
+etch|1
+(verb)|print (generic term)
+etched|1
+(adj)|engraved|graven|incised|inscribed|carved (similar term)|carven (similar term)
+etcher|1
+(noun)|artist (generic term)|creative person (generic term)
+etching|2
+(noun)|engraving (generic term)
+(noun)|engraving|printmaking (generic term)
+etd|1
+(noun)|explosive trace detection|ETD|system (generic term)
+eternal|2
+(adj)|ageless|aeonian|eonian|everlasting|perpetual|unending|unceasing|permanent (similar term)|lasting (similar term)
+(adj)|endless|interminable|long (similar term)
+eternal city|1
+(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital (generic term)
+eternal damnation|1
+(noun)|damnation|state (generic term)
+eternal life|1
+(noun)|life eternal|animation (generic term)|life (generic term)|living (generic term)|aliveness (generic term)
+eternal rest|1
+(noun)|rest|sleep|eternal sleep|quietus|death (generic term)
+eternal sleep|1
+(noun)|rest|eternal rest|sleep|quietus|death (generic term)
+eternalise|1
+(verb)|immortalize|immortalise|eternize|eternise|eternalize|change (generic term)|alter (generic term)|modify (generic term)
+eternalize|1
+(verb)|immortalize|immortalise|eternize|eternise|eternalise|change (generic term)|alter (generic term)|modify (generic term)
+eternally|1
+(adv)|everlastingly|forever|evermore
+eternise|1
+(verb)|immortalize|immortalise|eternize|eternalize|eternalise|change (generic term)|alter (generic term)|modify (generic term)
+eternity|3
+(noun)|infinity|time (generic term)
+(noun)|timelessness|timeless existence|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|time interval (generic term)|interval (generic term)
+eternize|2
+(verb)|perpetuate (generic term)
+(verb)|immortalize|immortalise|eternise|eternalize|eternalise|change (generic term)|alter (generic term)|modify (generic term)
+ethacrynic acid|1
+(noun)|Edecrin|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+ethan allen|1
+(noun)|Allen|Ethan Allen|soldier (generic term)
+ethanal|1
+(noun)|acetaldehyde|aldehyde (generic term)
+ethanal trimer|1
+(noun)|paraldehyde|aldehyde (generic term)
+ethanamide|1
+(noun)|acetamide|amide (generic term)
+ethane|1
+(noun)|C2H6|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)|hydrocarbon (generic term)
+ethanedioic acid|1
+(noun)|oxalic acid|acid (generic term)
+ethanediol|1
+(noun)|ethylene glycol|glycol|antifreeze (generic term)
+ethanoate|1
+(noun)|acetate|salt (generic term)
+ethanoic acid|1
+(noun)|acetic acid|carboxylic acid (generic term)
+ethanol|1
+(noun)|ethyl alcohol|fermentation alcohol|grain alcohol|alcohol (generic term)|plant product (generic term)
+ethanoyl chloride|1
+(noun)|acetyl chloride|acyl halide (generic term)|acid halide (generic term)
+ethanoyl group|1
+(noun)|acetyl|acetyl group|acetyl radical|ethanoyl radical|acyl (generic term)|acyl group (generic term)
+ethanoyl radical|1
+(noun)|acetyl|acetyl group|acetyl radical|ethanoyl group|acyl (generic term)|acyl group (generic term)
+ethchlorvynol|1
+(noun)|Placidyl|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+ethel barrymore|1
+(noun)|Barrymore|Ethel Barrymore|actress (generic term)
+ethel merman|1
+(noun)|Merman|Ethel Merman|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+ethel waters|1
+(noun)|Waters|Ethel Waters|actress (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+ethelbert|1
+(noun)|Ethelbert|king (generic term)|male monarch (generic term)|Rex (generic term)
+ethelred|2
+(noun)|Ethelred|Ethelred II|Ethelred the Unready|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Ethelred|Ethelred I|king (generic term)|male monarch (generic term)|Rex (generic term)
+ethelred i|1
+(noun)|Ethelred|Ethelred I|king (generic term)|male monarch (generic term)|Rex (generic term)
+ethelred ii|1
+(noun)|Ethelred|Ethelred II|Ethelred the Unready|king (generic term)|male monarch (generic term)|Rex (generic term)
+ethelred the unready|1
+(noun)|Ethelred|Ethelred II|Ethelred the Unready|king (generic term)|male monarch (generic term)|Rex (generic term)
+ethene|1
+(noun)|ethylene|alkene (generic term)|olefine (generic term)|olefin (generic term)|gas (generic term)
+ether|4
+(noun)|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+(noun)|quintessence|element (generic term)
+(noun)|organic compound (generic term)
+(noun)|aether|medium (generic term)
+ethereal|4
+(adj)|aeriform|aerial|airy|aery|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+(adj)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic (related term)
+(adj)|celestial|supernal|heavenly (similar term)
+(adj)|gossamer|delicate (similar term)
+etherealize|1
+(verb)|etherialise|change (generic term)|alter (generic term)|modify (generic term)
+etherialise|1
+(verb)|etherealize|change (generic term)|alter (generic term)|modify (generic term)
+etherify|1
+(verb)|change state (generic term)|turn (generic term)
+etherise|1
+(verb)|etherize|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+etherize|1
+(verb)|etherise|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+ethernet|1
+(noun)|local area network (generic term)|LAN (generic term)
+ethernet cable|1
+(noun)|coaxial cable (generic term)|coax (generic term)|coax cable (generic term)
+ethic|2
+(noun)|moral principle|value-system|value orientation|principle (generic term)
+(noun)|ethical code|system (generic term)|system of rules (generic term)
+ethical|3
+(adj)|philosophy (related term)
+(adj)|right (related term)|unethical (antonym)
+(adj)|honorable|honourable|moral|right (similar term)
+ethical code|1
+(noun)|ethic|system (generic term)|system of rules (generic term)
+ethical drug|1
+(noun)|prescription drug|prescription|prescription medicine|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|over-the-counter medicine (antonym)|over-the-counter drug (antonym)
+ethical motive|1
+(noun)|ethics|morals|morality|motivation (generic term)|motive (generic term)|need (generic term)
+ethically|1
+(adv)|unethically (antonym)
+ethician|1
+(noun)|ethicist|philosopher (generic term)
+ethicism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+ethicist|1
+(noun)|ethician|philosopher (generic term)
+ethics|2
+(noun)|ethical motive|morals|morality|motivation (generic term)|motive (generic term)|need (generic term)
+(noun)|moral philosophy|philosophy (generic term)
+ethics committee|1
+(noun)|ethics panel|committee (generic term)|commission (generic term)
+ethics panel|1
+(noun)|ethics committee|committee (generic term)|commission (generic term)
+ethiopia|1
+(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country (generic term)|African nation (generic term)
+ethiopian|2
+(adj)|Ethiopian|African country|African nation (related term)
+(noun)|Ethiopian|African (generic term)
+ethiopian banana|1
+(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb (generic term)|herbaceous plant (generic term)
+ethiopian language|1
+(noun)|Amharic|Ethiopian language|Semitic (generic term)
+ethiopian monetary unit|1
+(noun)|Ethiopian monetary unit|monetary unit (generic term)
+ethmoid|1
+(noun)|ethmoid bone|bone (generic term)|os (generic term)
+ethmoid bone|1
+(noun)|ethmoid|bone (generic term)|os (generic term)
+ethmoid sinus|1
+(noun)|ethmoidal sinus|sinus ethmoidales|sinus (generic term)
+ethmoidal artery|1
+(noun)|arteria ethmoidalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ethmoidal sinus|1
+(noun)|ethmoid sinus|sinus ethmoidales|sinus (generic term)
+ethmoidal vein|1
+(noun)|vena ethmoidalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ethnarch|1
+(noun)|ruler (generic term)|swayer (generic term)
+ethnic|3
+(adj)|cultural|ethnical|social (similar term)
+(adj)|heathen|heathenish|pagan|irreligious (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+ethnic cleansing|1
+(noun)|group action (generic term)
+ethnic group|1
+(noun)|ethnos|group (generic term)|grouping (generic term)
+ethnic joke|1
+(noun)|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+ethnic minority|1
+(noun)|ethnic group (generic term)|ethnos (generic term)
+ethnic music|1
+(noun)|folk music|folk|popular music (generic term)|popular music genre (generic term)
+ethnic slur|1
+(noun)|aspersion (generic term)|slur (generic term)
+ethnical|1
+(adj)|cultural|ethnic|social (similar term)
+ethnicity|1
+(noun)|quality (generic term)
+ethnocentric|1
+(adj)|partiality|partisanship (related term)
+ethnocentrism|1
+(noun)|partiality (generic term)|partisanship (generic term)
+ethnographer|1
+(noun)|anthropologist (generic term)
+ethnographic|1
+(adj)|ethnographical|anthropology (related term)
+ethnographical|1
+(adj)|ethnographic|anthropology (related term)
+ethnography|1
+(noun)|descriptive anthropology|anthropology (generic term)
+ethnologic|1
+(adj)|ethnological|anthropology (related term)
+ethnological|1
+(adj)|ethnologic|anthropology (related term)
+ethnologist|1
+(noun)|anthropologist (generic term)
+ethnology|1
+(noun)|anthropology (generic term)
+ethnos|1
+(noun)|ethnic group|group (generic term)|grouping (generic term)
+ethocaine|1
+(noun)|procaine|Ethocaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+ethologist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+ethology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+ethos|1
+(noun)|attribute (generic term)
+ethosuximide|1
+(noun)|Emeside|Zarontin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+ethoxyethane|1
+(noun)|ether|divinyl ether|vinyl ether|diethyl ether|ethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+ethrane|1
+(noun)|enflurane|Ethrane|ether (generic term)|ethoxyethane (generic term)|divinyl ether (generic term)|vinyl ether (generic term)|diethyl ether (generic term)|ethyl ether (generic term)
+ethril|1
+(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+ethyl|1
+(noun)|ethyl group|ethyl radical|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+ethyl acetate|1
+(noun)|ester (generic term)
+ethyl alcohol|2
+(noun)|ethanol|fermentation alcohol|grain alcohol|alcohol (generic term)|plant product (generic term)
+(noun)|neutral spirits|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+ethyl aminobenzoate|1
+(noun)|benzocaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+ethyl chloride|1
+(noun)|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+ethyl ether|1
+(noun)|ether|ethoxyethane|divinyl ether|vinyl ether|diethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+ethyl group|1
+(noun)|ethyl|ethyl radical|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+ethyl radical|1
+(noun)|ethyl|ethyl group|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+ethylene|1
+(noun)|ethene|alkene (generic term)|olefine (generic term)|olefin (generic term)|gas (generic term)
+ethylene glycol|1
+(noun)|glycol|ethanediol|antifreeze (generic term)
+ethylene tetrachloride|1
+(noun)|tetrachlorethylene|tetrachloroethylene|carbon dichloride|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+ethyne|1
+(noun)|acetylene|alkyne|aliphatic compound (generic term)
+etienne-louis arthur fallot|1
+(noun)|Fallot|Etienne-Louis Arthur Fallot|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+etiolate|3
+(adj)|etiolated|blanched|colorless (similar term)|colourless (similar term)
+(verb)|weaken (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+etiolated|1
+(adj)|etiolate|blanched|colorless (similar term)|colourless (similar term)
+etiolation|3
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|weakening (generic term)
+(noun)|bleach (generic term)
+etiologic|2
+(adj)|etiological|aetiological|aetiologic|philosophy (related term)
+(adj)|etiological|aetiological|aetiologic|cause (related term)
+etiological|2
+(adj)|etiologic|aetiological|aetiologic|philosophy (related term)
+(adj)|etiologic|aetiological|aetiologic|cause (related term)
+etiologist|1
+(noun)|aetiologist|diagnostician (generic term)|pathologist (generic term)
+etiology|2
+(noun)|aetiology|cause (generic term)
+(noun)|aetiology|philosophy (generic term)
+etiquette|1
+(noun)|rule (generic term)|prescript (generic term)
+etna|2
+(noun)|Etna|Mount Etna|Mt Etna|volcano (generic term)
+(noun)|bunsen burner|bunsen|gas burner (generic term)|gas jet (generic term)
+etodolac|1
+(noun)|Lodine|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+eton collar|1
+(noun)|Eton collar|collar (generic term)|neckband (generic term)
+eton college|1
+(noun)|Eton College|public school (generic term)
+eton jacket|1
+(noun)|Eton jacket|jacket (generic term)
+etonian|1
+(noun)|Etonian|student (generic term)|pupil (generic term)|educatee (generic term)
+etropus|1
+(noun)|Etropus|genus Etropus|fish genus (generic term)
+etropus rimosus|1
+(noun)|grey flounder|gray flounder|Etropus rimosus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+etruria|1
+(noun)|Etruria|country (generic term)|state (generic term)|land (generic term)
+etruscan|1
+(noun)|Etruscan|Italian (generic term)
+etude|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+etui|1
+(noun)|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+etymological|1
+(adj)|history|account|chronicle|story (related term)
+etymological dictionary|1
+(noun)|dictionary (generic term)|lexicon (generic term)
+etymologise|2
+(verb)|etymologize|derive (generic term)|educe (generic term)
+(verb)|etymologize|reconstruct (generic term)|construct (generic term)|retrace (generic term)
+etymologist|1
+(noun)|lexicographer (generic term)|lexicologist (generic term)
+etymologize|2
+(verb)|etymologise|derive (generic term)|educe (generic term)
+(verb)|etymologise|reconstruct (generic term)|construct (generic term)|retrace (generic term)
+etymologizing|1
+(noun)|deriving|derivation|explanation (generic term)|account (generic term)
+etymology|2
+(noun)|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+(noun)|linguistics (generic term)
+etymon|1
+(noun)|root|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+eu|2
+(noun)|europium|Eu|atomic number 63|metallic element (generic term)|metal (generic term)
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+euarctos|1
+(noun)|Euarctos|genus Euarctos|mammal genus (generic term)
+euarctos americanus|1
+(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear (generic term)
+euascomycetes|1
+(noun)|Euascomycetes|subclass Euascomycetes|class (generic term)
+eubacteria|1
+(noun)|eubacterium|true bacteria|bacteria (generic term)|bacterium (generic term)|moneran (generic term)|moneron (generic term)
+eubacteriales|1
+(noun)|Eubacteriales|order Eubacteriales|animal order (generic term)
+eubacterium|1
+(noun)|eubacteria|true bacteria|bacteria (generic term)|bacterium (generic term)|moneran (generic term)|moneron (generic term)
+eubryales|1
+(noun)|Eubryales|order Eubryales|plant order (generic term)
+eucalypt|1
+(noun)|eucalyptus|eucalyptus tree|gum tree (generic term)|gum (generic term)
+eucalypt grandis|1
+(noun)|rose gum|Eucalypt grandis|flooded gum (generic term)
+eucalypt gunnii|1
+(noun)|cider gum|Eucalypt gunnii|flooded gum (generic term)
+eucalypt ovata|1
+(noun)|swamp gum|Eucalypt ovata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalypt tereticornis|1
+(noun)|forest red gum|Eucalypt tereticornis|flooded gum (generic term)
+eucalyptus|2
+(noun)|wood (generic term)
+(noun)|eucalypt|eucalyptus tree|gum tree (generic term)|gum (generic term)
+eucalyptus amygdalina|1
+(noun)|red gum|peppermint|peppermint gum|Eucalyptus amygdalina|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus calophylla|1
+(noun)|red gum|marri|Eucalyptus calophylla|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus camaldulensis|1
+(noun)|river red gum|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus camphora|1
+(noun)|mountain swamp gum|Eucalyptus camphora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus citriodora|1
+(noun)|lemon-scented gum|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus coriacea|1
+(noun)|snow gum|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus delegatensis|1
+(noun)|alpine ash|mountain oak|Eucalyptus delegatensis|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus dumosa|1
+(noun)|white mallee|congoo mallee|Eucalyptus dumosa|mallee (generic term)
+eucalyptus fraxinoides|1
+(noun)|white mountain ash|Eucalyptus fraxinoides|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus globulus|1
+(noun)|blue gum|fever tree|Eucalyptus globulus|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus gum|1
+(noun)|eucalyptus kino|red gum|gum (generic term)
+eucalyptus kino|1
+(noun)|eucalyptus gum|red gum|gum (generic term)
+eucalyptus maculata|1
+(noun)|spotted gum|Eucalyptus maculata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus maculata citriodora|1
+(noun)|lemon-scented gum|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus oil|1
+(noun)|essential oil (generic term)|volatile oil (generic term)
+eucalyptus pauciflora|1
+(noun)|snow gum|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus regnans|1
+(noun)|mountain ash|Eucalyptus regnans|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus rostrata|1
+(noun)|river red gum|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptus tree|1
+(noun)|eucalyptus|eucalypt|gum tree (generic term)|gum (generic term)
+eucalyptus viminalis|1
+(noun)|manna gum|Eucalyptus viminalis|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+eucalyptusd eugenioides|1
+(noun)|white stringybark|thin-leaved stringybark|Eucalyptusd eugenioides|stringybark (generic term)
+eucalytus stellulata|1
+(noun)|black mallee|black sally|black gum|Eucalytus stellulata|mallee (generic term)
+eucarya|1
+(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus (generic term)
+eucarya acuminata|1
+(noun)|quandong|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree (generic term)
+eucaryote|1
+(noun)|eukaryote|organism (generic term)|being (generic term)|prokaryote (antonym)
+eucaryotic|1
+(adj)|eukaryotic|organism|being (related term)|procaryotic (antonym)|prokaryotic (antonym)
+eucharist|1
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+eucharistic|1
+(adj)|Eucharistic|sacrament (related term)
+eucharistic liturgy|1
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+euchre|1
+(noun)|five hundred|card game (generic term)|cards (generic term)
+eucinostomus|1
+(noun)|Eucinostomus|genus Eucinostomus|fish genus (generic term)
+eucinostomus gula|1
+(noun)|silver jenny|Eucinostomus gula|mojarra (generic term)
+euclid|1
+(noun)|Euclid|geometer (generic term)|geometrician (generic term)
+euclidean|1
+(adj)|euclidian|geometer|geometrician (related term)
+euclidean geometry|1
+(noun)|elementary geometry|parabolic geometry|Euclidean geometry|geometry (generic term)
+euclidean space|1
+(noun)|Euclidean space|metric space (generic term)
+euclidian|1
+(adj)|euclidean|geometer|geometrician (related term)
+eudaemon|1
+(noun)|eudemon|good spirit|guardian spirit (generic term)|guardian angel (generic term)|cacodemon (antonym)
+eudaemonia|1
+(noun)|wellbeing|well-being|welfare|upbeat|eudaimonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+eudaemonic|1
+(adj)|eudemonic|ethics|moral philosophy (related term)
+eudaimonia|1
+(noun)|wellbeing|well-being|welfare|upbeat|eudaemonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+eudemon|1
+(noun)|eudaemon|good spirit|guardian spirit (generic term)|guardian angel (generic term)|cacodemon (antonym)
+eudemonic|1
+(adj)|eudaemonic|ethics|moral philosophy (related term)
+eudemonism|1
+(noun)|endaemonism|ethics (generic term)|moral philosophy (generic term)
+euderma|1
+(noun)|Euderma|genus Euderma|mammal genus (generic term)
+euderma maculata|1
+(noun)|jackass bat|spotted bat|Euderma maculata|vespertilian bat (generic term)|vespertilionid (generic term)
+eudiometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+eudora welty|1
+(noun)|Welty|Eudora Welty|writer (generic term)|author (generic term)
+eudromias morinellus|1
+(noun)|dotterel|dotrel|Charadrius morinellus|Eudromias morinellus|plover (generic term)
+eudyptes|1
+(noun)|Eudyptes|genus Eudyptes|bird genus (generic term)
+eugene|2
+(noun)|Eugene|Prince Eugene of Savoy|general (generic term)|full general (generic term)
+(noun)|Eugene|city (generic term)|metropolis (generic term)|urban center (generic term)
+eugene curran kelly|1
+(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+eugene delacroix|1
+(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter (generic term)
+eugene gladstone o'neill|1
+(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist (generic term)|playwright (generic term)
+eugene ionesco|1
+(noun)|Ionesco|Eugene Ionesco|dramatist (generic term)|playwright (generic term)
+eugene luther vidal|1
+(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer (generic term)|author (generic term)
+eugene o'neill|1
+(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist (generic term)|playwright (generic term)
+eugene ormandy|1
+(noun)|Ormandy|Eugene Ormandy|conductor (generic term)|music director (generic term)|director (generic term)
+eugene paul wigner|1
+(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist (generic term)
+eugene sue|1
+(noun)|Sue|Eugene Sue|writer (generic term)|author (generic term)
+eugene v. debs|1
+(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer (generic term)|organiser (generic term)|labor organizer (generic term)
+eugene victor debs|1
+(noun)|Debs|Eugene V. Debs|Eugene Victor Debs|organizer (generic term)|organiser (generic term)|labor organizer (generic term)
+eugene wigner|1
+(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist (generic term)
+eugenia|1
+(noun)|Eugenia|genus Eugenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+eugenia aromaticum|1
+(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree (generic term)
+eugenia caryophyllatum|1
+(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree (generic term)
+eugenia corynantha|1
+(noun)|sour cherry|Eugenia corynantha|fruit tree (generic term)
+eugenia dicrana|1
+(noun)|nakedwood|Eugenia dicrana|zebrawood (generic term)|zebrawood tree (generic term)
+eugenia jambos|1
+(noun)|rose apple|rose-apple tree|jambosa|Eugenia jambos|fruit tree (generic term)
+eugenia uniflora|1
+(noun)|Surinam cherry|pitanga|Eugenia uniflora|fruit tree (generic term)
+eugenic|1
+(adj)|life science|bioscience (related term)|dysgenic (antonym)
+eugenics|1
+(noun)|life science (generic term)|bioscience (generic term)|dysgenics (antonym)
+eugenio pacelli|1
+(noun)|Pius XII|Eugenio Pacelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+euglena|1
+(noun)|protozoan (generic term)|protozoon (generic term)
+euglenaceae|1
+(noun)|Euglenaceae|family Euglenaceae|protoctist family (generic term)
+euglenid|1
+(noun)|euglenoid|euglenophyte|alga (generic term)|algae (generic term)
+euglenoid|1
+(noun)|euglenophyte|euglenid|alga (generic term)|algae (generic term)
+euglenophyceae|1
+(noun)|Euglenophyceae|class Euglenophyceae|class (generic term)
+euglenophyta|1
+(noun)|Euglenophyta|division Euglenophyta|division (generic term)
+euglenophyte|1
+(noun)|euglenoid|euglenid|alga (generic term)|algae (generic term)
+eukaryote|1
+(noun)|eucaryote|organism (generic term)|being (generic term)|prokaryote (antonym)
+eukaryotic|1
+(adj)|eucaryotic|organism|being (related term)|procaryotic (antonym)|prokaryotic (antonym)
+euler|1
+(noun)|Euler|Leonhard Euler|mathematician (generic term)
+eulogise|1
+(verb)|eulogize|praise (generic term)
+eulogist|1
+(noun)|panegyrist|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+eulogistic|1
+(adj)|encomiastic|panegyric|panegyrical|complimentary (similar term)
+eulogium|1
+(noun)|eulogy|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+eulogize|1
+(verb)|eulogise|praise (generic term)
+eulogy|2
+(noun)|eulogium|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(noun)|encomium|panegyric|paean|pean|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+eumeces|1
+(noun)|Eumeces|genus Eumeces|reptile genus (generic term)
+eumeces callicephalus|1
+(noun)|mountain skink|Eumeces callicephalus|skink (generic term)|scincid (generic term)|scincid lizard (generic term)
+eumeces skiltonianus|1
+(noun)|western skink|Eumeces skiltonianus|skink (generic term)|scincid (generic term)|scincid lizard (generic term)
+eumenes|1
+(noun)|Eumenes|genus Eumenes|arthropod genus (generic term)
+eumenides|1
+(noun)|Fury|Eumenides|Erinyes|mythical monster (generic term)|mythical creature (generic term)
+eumetopias|1
+(noun)|Eumetopias|genus Eumetopias|mammal genus (generic term)
+eumetopias jubatus|1
+(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion (generic term)
+eumops|1
+(noun)|Eumops|genus Eumops|mammal genus (generic term)
+eumycetes|1
+(noun)|Eumycetes|class Eumycetes|class (generic term)
+eumycota|1
+(noun)|Eumycota|division Eumycota|division (generic term)
+eunectes|1
+(noun)|Eunectes|genus Eunectes|reptile genus (generic term)
+eunectes murinus|1
+(noun)|anaconda|Eunectes murinus|boa (generic term)
+eunuch|1
+(noun)|castrate|man (generic term)|adult male (generic term)
+eunuchoidism|1
+(noun)|male hypogonadism|hypogonadism (generic term)
+euonymous alatus|1
+(noun)|winged spindle tree|Euonymous alatus|spindle tree (generic term)|spindleberry (generic term)|spindleberry tree (generic term)
+euonymus|1
+(noun)|Euonymus|genus Euonymus|dicot genus (generic term)|magnoliopsid genus (generic term)
+euonymus americanus|1
+(noun)|strawberry bush|wahoo|Euonymus americanus|shrub (generic term)|bush (generic term)
+euonymus atropurpureus|1
+(noun)|wahoo|burning bush|Euonymus atropurpureus|shrub (generic term)|bush (generic term)
+euonymus europaeus|1
+(noun)|common spindle tree|Euonymus europaeus|spindle tree (generic term)|spindleberry (generic term)|spindleberry tree (generic term)
+euonymus fortunei radicans|1
+(noun)|evergreen bittersweet|Euonymus fortunei radicans|Euonymus radicans vegetus|vine (generic term)
+euonymus radicans vegetus|1
+(noun)|evergreen bittersweet|Euonymus fortunei radicans|Euonymus radicans vegetus|vine (generic term)
+euopean hoopoe|1
+(noun)|Euopean hoopoe|Upupa epops|hoopoe (generic term)|hoopoo (generic term)
+eupatorium|1
+(noun)|Eupatorium|genus Eupatorium|asterid dicot genus (generic term)
+eupatorium aya-pana|1
+(noun)|ayapana|Ayapana triplinervis|Eupatorium aya-pana|herb (generic term)|herbaceous plant (generic term)
+eupatorium cannabinum|1
+(noun)|hemp agrimony|Eupatorium cannabinum|herb (generic term)|herbaceous plant (generic term)
+eupatorium capillifolium|1
+(noun)|dog fennel|Eupatorium capillifolium|herb (generic term)|herbaceous plant (generic term)
+eupatorium coelestinum|1
+(noun)|mistflower|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower (generic term)
+eupatorium maculatum|1
+(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb (generic term)|herbaceous plant (generic term)
+eupatorium perfoliatum|1
+(noun)|boneset|agueweed|thoroughwort|Eupatorium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+eupatorium purpureum|1
+(noun)|Joe-Pye weed|purple boneset|trumpet weed|marsh milkweed|Eupatorium purpureum|herb (generic term)|herbaceous plant (generic term)
+eupatorium rugosum|1
+(noun)|white snakeroot|white sanicle|Ageratina altissima|Eupatorium rugosum|herb (generic term)|herbaceous plant (generic term)
+euphagus|1
+(noun)|Euphagus|genus Euphagus|bird genus (generic term)
+euphagus carilonus|1
+(noun)|rusty blackbird|rusty grackle|Euphagus carilonus|New World blackbird (generic term)|blackbird (generic term)
+euphausia pacifica|1
+(noun)|Euphausia pacifica|krill (generic term)
+euphausiacea|1
+(noun)|Euphausiacea|order Euphausiacea|animal order (generic term)
+euphemise|1
+(verb)|euphemize|denote (generic term)|refer (generic term)
+euphemism|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)|dysphemism (antonym)
+euphemistic|1
+(adj)|inoffensive|dysphemistic (antonym)
+euphemize|1
+(verb)|euphemise|denote (generic term)|refer (generic term)
+euphonic|1
+(adj)|euphonical|sound|auditory sensation (related term)
+euphonical|1
+(adj)|euphonic|sound|auditory sensation (related term)
+euphonious|2
+(adj)|euphonous|golden (similar term)|silvern (similar term)|silvery (similar term)|cacophonous (antonym)
+(adj)|soft (similar term)
+euphonium|1
+(noun)|bass horn (generic term)|sousaphone (generic term)|tuba (generic term)
+euphonous|1
+(adj)|euphonious|golden (similar term)|silvern (similar term)|silvery (similar term)|cacophonous (antonym)
+euphony|1
+(noun)|music|sound (generic term)|auditory sensation (generic term)
+euphorbia|1
+(noun)|Euphorbia|genus Euphorbia|rosid dicot genus (generic term)
+euphorbia amygdaloides|1
+(noun)|wood spurge|Euphorbia amygdaloides|spurge (generic term)
+euphorbia antisyphilitica|1
+(noun)|candelilla|Euphorbia antisyphilitica|spurge (generic term)
+euphorbia caput-medusae|1
+(noun)|medusa's head|Euphorbia medusae|Euphorbia caput-medusae|spurge (generic term)
+euphorbia corollata|1
+(noun)|wild spurge|flowering spurge|tramp's spurge|Euphorbia corollata|spurge (generic term)
+euphorbia cyathophora|1
+(noun)|fire-on-the-mountain|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge (generic term)
+euphorbia cyparissias|1
+(noun)|cypress spurge|Euphorbia cyparissias|spurge (generic term)
+euphorbia dentata|1
+(noun)|toothed spurge|Euphorbia dentata|spurge (generic term)
+euphorbia esula|1
+(noun)|leafy spurge|wolf's milk|Euphorbia esula|spurge (generic term)
+euphorbia exigua|1
+(noun)|dwarf spurge|Euphorbia exigua|spurge (generic term)
+euphorbia fulgens|1
+(noun)|scarlet plume|Euphorbia fulgens|spurge (generic term)
+euphorbia helioscopia|1
+(noun)|sun spurge|wartweed|wartwort|devil's milk|Euphorbia helioscopia|spurge (generic term)
+euphorbia heterophylla|1
+(noun)|Japanese poinsettia|mole plant|paint leaf|Euphorbia heterophylla|spurge (generic term)
+euphorbia hirsuta|1
+(noun)|hairy spurge|Euphorbia hirsuta|spurge (generic term)
+euphorbia ingens|1
+(noun)|naboom|cactus euphorbia|Euphorbia ingens|spurge (generic term)
+euphorbia lathyris|1
+(noun)|caper spurge|myrtle spurge|mole plant|Euphorbia lathyris|spurge (generic term)
+euphorbia litchi|1
+(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+euphorbia marginata|1
+(noun)|snow-on-the-mountain|snow-in-summer|ghost weed|Euphorbia marginata|spurge (generic term)
+euphorbia medusae|1
+(noun)|medusa's head|Euphorbia medusae|Euphorbia caput-medusae|spurge (generic term)
+euphorbia milii|1
+(noun)|crown of thorns|Christ thorn|Christ plant|Euphorbia milii|spurge (generic term)
+euphorbia peplus|1
+(noun)|petty spurge|devil's milk|Euphorbia peplus|spurge (generic term)
+euphorbia pulcherrima|1
+(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+euphorbiaceae|1
+(noun)|Euphorbiaceae|family Euphorbiaceae|spurge family|rosid dicot family (generic term)
+euphorbium|1
+(noun)|gum eurphorbium|gum (generic term)
+euphoria|1
+(noun)|euphory|elation (generic term)|high spirits (generic term)|lightness (generic term)|dysphoria (antonym)
+euphoriant|2
+(adj)|euphoric (similar term)
+(noun)|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+euphoric|1
+(adj)|euphoriant (similar term)|expansive (similar term)|elated (related term)|happy (related term)|dysphoric (antonym)
+euphory|1
+(noun)|euphoria|elation (generic term)|high spirits (generic term)|lightness (generic term)|dysphoria (antonym)
+euphractus|1
+(noun)|Euphractus|genus Euphractus|mammal genus (generic term)
+euphractus sexcinctus|1
+(noun)|peludo|poyou|Euphractus sexcinctus|armadillo (generic term)
+euphrates|1
+(noun)|Euphrates|Euphrates River|river (generic term)
+euphrates river|1
+(noun)|Euphrates|Euphrates River|river (generic term)
+euphrosyne|1
+(noun)|Euphrosyne|Grace (generic term)
+euphuism|2
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|prose (generic term)
+euplectella|1
+(noun)|Euplectella|genus Euplectella|sponge genus (generic term)
+eupnea|1
+(noun)|eupnoea|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+eupneic|1
+(adj)|breathing|eupnoeic|sweet-breathed (similar term)|snoring (similar term)|snorting (similar term)|breathless (antonym)
+eupnoea|1
+(noun)|eupnea|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+eupnoeic|1
+(adj)|breathing|eupneic|sweet-breathed (similar term)|snoring (similar term)|snorting (similar term)|breathless (antonym)
+euproctis|1
+(noun)|Euproctis|genus Euproctis|arthropod genus (generic term)
+euproctis chrysorrhoea|1
+(noun)|gold-tail moth|Euproctis chrysorrhoea|lymantriid (generic term)|tussock moth (generic term)
+euproctis phaeorrhoea|1
+(noun)|browntail|brown-tail moth|Euproctis phaeorrhoea|lymantriid (generic term)|tussock moth (generic term)
+eurafrican|2
+(adj)|Eurafrican|continent (related term)
+(noun)|Eurafrican|European (generic term)|African (generic term)
+eurasia|1
+(noun)|Eurasia|continent (generic term)
+eurasian|2
+(adj)|Eurasian|Eurasiatic|continent (related term)
+(noun)|Eurasian|European (generic term)|Asian (generic term)|Asiatic (generic term)
+eurasian badger|1
+(noun)|Eurasian badger|Meles meles|badger (generic term)
+eurasian green toad|1
+(noun)|Eurasian green toad|Bufo viridis|true toad (generic term)
+eurasian hamster|1
+(noun)|Eurasian hamster|Cricetus cricetus|hamster (generic term)
+eurasian kingfisher|1
+(noun)|Eurasian kingfisher|Alcedo atthis|kingfisher (generic term)
+eurasian otter|1
+(noun)|Eurasian otter|Lutra lutra|otter (generic term)
+eurasian woodcock|1
+(noun)|Eurasian woodcock|Scolopax rusticola|woodcock (generic term)
+eurasiatic|1
+(adj)|Eurasian|Eurasiatic|continent (related term)
+eureka|2
+(noun)|constantan|Eureka|copper-base alloy (generic term)
+(noun)|Eureka|town (generic term)
+eurhythmics|1
+(noun)|eurythmy|eurhythmy|eurythmics|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|diversion (generic term)|recreation (generic term)
+eurhythmy|1
+(noun)|eurythmy|eurythmics|eurhythmics|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|diversion (generic term)|recreation (generic term)
+euripides|1
+(noun)|Euripides|dramatist (generic term)|playwright (generic term)
+euro|1
+(noun)|monetary unit (generic term)
+eurobabble|1
+(noun)|Eurobabble|jargon (generic term)
+eurocentric|1
+(adj)|Eurocentric|Europocentric|partiality|partisanship (related term)
+eurocentrism|1
+(noun)|Eurocentrism|partiality (generic term)|partisanship (generic term)
+eurocurrency|1
+(noun)|Eurocurrency|currency (generic term)
+eurodollar|1
+(noun)|Eurodollar|United States dollar (generic term)|Eurocurrency (generic term)
+euronithopod|1
+(noun)|Euronithopoda|suborder Euronithopoda|Ornithopoda|suborder Ornithopoda|animal order (generic term)
+euronithopoda|1
+(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order (generic term)
+europa|1
+(noun)|Europa|Galilean satellite (generic term)|Galilean (generic term)
+europan|1
+(noun)|Europan|artificial language (generic term)
+europe|3
+(noun)|Europe|continent (generic term)
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+(noun)|Europe|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+european|2
+(adj)|European|continent (related term)
+(noun)|European|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+european ash|1
+(noun)|European ash|common European ash|Fraxinus excelsior|ash (generic term)|ash tree (generic term)
+european barberry|1
+(noun)|common barberry|European barberry|Berberis vulgaris|barberry (generic term)
+european bean|1
+(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+european beech|1
+(noun)|common beech|European beech|Fagus sylvatica|beech (generic term)|beech tree (generic term)
+european beggar-ticks|1
+(noun)|European beggar-ticks|trifid beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+european bird cherry|1
+(noun)|hagberry tree|European bird cherry|common bird cherry|Prunus padus|bird cherry (generic term)|bird cherry tree (generic term)
+european bittern|1
+(noun)|European bittern|Botaurus stellaris|bittern (generic term)
+european black alder|1
+(noun)|common alder|European black alder|Alnus glutinosa|Alnus vulgaris|alder (generic term)|alder tree (generic term)
+european black currant|1
+(noun)|black currant|European black currant|Ribes nigrum|currant (generic term)|currant bush (generic term)
+european black grouse|1
+(noun)|European black grouse|heathfowl|Lyrurus tetrix|black grouse (generic term)
+european blackbird|1
+(noun)|blackbird|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush (generic term)
+european blueberry|1
+(noun)|bilberry|whortleberry|European blueberry|berry (generic term)
+european bog asphodel|1
+(noun)|European bog asphodel|Narthecium ossifragum|bog asphodel (generic term)
+european box|1
+(noun)|common box|European box|Buxus sempervirens|box (generic term)|boxwood (generic term)
+european bream|1
+(noun)|European bream|Abramis brama|freshwater bream (generic term)|bream (generic term)
+european brooklime|1
+(noun)|brooklime|European brooklime|Veronica beccabunga|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+european brown bat|1
+(noun)|serotine|European brown bat|Eptesicus serotinus|vespertilian bat (generic term)|vespertilionid (generic term)
+european catfish|1
+(noun)|European catfish|sheatfish|Silurus glanis|silurid (generic term)|silurid fish (generic term)
+european central bank|1
+(noun)|European Central Bank|central bank (generic term)
+european chestnut|1
+(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut (generic term)|chestnut tree (generic term)
+european community|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+european corn borer moth|1
+(noun)|corn borer|European corn borer moth|corn borer moth|Pyrausta nubilalis|pyralid (generic term)|pyralid moth (generic term)
+european country|1
+(noun)|European country|European nation|country (generic term)|state (generic term)|land (generic term)
+european cranberry|1
+(noun)|European cranberry|small cranberry|Vaccinium oxycoccus|cranberry (generic term)
+european cranberry bush|1
+(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub (generic term)|bush (generic term)
+european cranberrybush|1
+(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub (generic term)|bush (generic term)
+european creeper|1
+(noun)|European creeper|Certhia familiaris|creeper (generic term)|tree creeper (generic term)
+european cuckoo|1
+(noun)|European cuckoo|Cuculus canorus|cuckoo (generic term)
+european curlew|1
+(noun)|European curlew|Numenius arquata|curlew (generic term)
+european dewberry|1
+(noun)|European dewberry|Rubus caesius|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+european dogtooth|1
+(noun)|European dogtooth|Erythronium dens-canis|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+european dune grass|1
+(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass (generic term)
+european economic community|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+european elder|1
+(noun)|bourtree|black elder|common elder|elderberry|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+european elk|1
+(noun)|elk|European elk|moose|Alces alces|deer (generic term)|cervid (generic term)
+european elm|1
+(noun)|English elm|European elm|Ulmus procera|elm (generic term)|elm tree (generic term)
+european field elm|1
+(noun)|smooth-leaved elm|European field elm|Ulmus carpinifolia|elm (generic term)|elm tree (generic term)
+european fire salamander|1
+(noun)|European fire salamander|Salamandra salamandra|salamander (generic term)
+european flatfish|1
+(noun)|European flatfish|Platichthys flesus|righteye flounder (generic term)|righteyed flounder (generic term)
+european fly honeysuckle|1
+(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle (generic term)
+european gallinule|1
+(noun)|European gallinule|Porphyrio porphyrio|purple gallinule (generic term)
+european goatsucker|1
+(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+european hackberry|1
+(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry (generic term)|nettle tree (generic term)
+european hare|1
+(noun)|European hare|Lepus europaeus|hare (generic term)
+european honeysuckle|1
+(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle (generic term)
+european hop|1
+(noun)|common hop|common hops|bine|European hop|Humulus lupulus|hop (generic term)|hops (generic term)
+european hornbeam|1
+(noun)|European hornbeam|Carpinus betulus|hornbeam (generic term)
+european house cricket|1
+(noun)|European house cricket|Acheta domestica|cricket (generic term)
+european ladies' tresses|1
+(noun)|European ladies' tresses|Spiranthes spiralis|ladies' tresses (generic term)|lady's tresses (generic term)
+european larch|1
+(noun)|European larch|Larix decidua|larch (generic term)|larch tree (generic term)
+european law enforcement organisation|1
+(noun)|Europol|European Law Enforcement Organisation|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+european lemming|1
+(noun)|European lemming|Lemmus lemmus|lemming (generic term)
+european lobster|2
+(noun)|European lobster|lobster (generic term)
+(noun)|European lobster|Homarus vulgaris|true lobster (generic term)
+european magpie|1
+(noun)|European magpie|Pica pica|magpie (generic term)
+european mountain ash|1
+(noun)|rowan|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash (generic term)
+european nation|1
+(noun)|European country|European nation|country (generic term)|state (generic term)|land (generic term)
+european nightjar|1
+(noun)|European goatsucker|European nightjar|Caprimulgus europaeus|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+european nut pine|1
+(noun)|stone pine|umbrella pine|European nut pine|Pinus pinea|pine (generic term)|pine tree (generic term)|true pine (generic term)
+european nuthatch|1
+(noun)|European nuthatch|Sitta europaea|nuthatch (generic term)|nutcracker (generic term)
+european olive tree|1
+(noun)|olive|European olive tree|Olea europaea|olive tree (generic term)
+european parsley fern|1
+(noun)|European parsley fern|mountain parsley fern|Cryptogramma crispa|rock brake (generic term)
+european pasqueflower|1
+(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower (generic term)|pasque flower (generic term)
+european perch|1
+(noun)|European perch|Perca fluviatilis|perch (generic term)
+european plan|1
+(noun)|European plan|continental plan|hotel plan (generic term)|meal plan (generic term)
+european quaking aspen|1
+(noun)|quaking aspen|European quaking aspen|Populus tremula|aspen (generic term)
+european rabbit|1
+(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit (generic term)|coney (generic term)|cony (generic term)
+european raspberry|1
+(noun)|wild raspberry|European raspberry|framboise|Rubus idaeus|red raspberry (generic term)
+european recovery program|1
+(noun)|Marshall Plan|European Recovery Program|foreign aid (generic term)
+european red elder|1
+(noun)|European red elder|red-berried elder|Sambucus racemosa|elder (generic term)|elderberry bush (generic term)
+european roller|1
+(noun)|European roller|Coracias garrulus|roller (generic term)
+european russia|1
+(noun)|European Russia|Russia (generic term)|Russian Federation (generic term)
+european sandpiper|1
+(noun)|European sandpiper|Actitis hypoleucos|sandpiper (generic term)
+european sanicle|1
+(noun)|European sanicle|Sanicula Europaea|sanicle (generic term)|snakeroot (generic term)
+european sea bream|1
+(noun)|European sea bream|Pagellus centrodontus|sea bream (generic term)|bream (generic term)
+european sea eagle|1
+(noun)|ern|erne|grey sea eagle|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+european shrike|1
+(noun)|European shrike|Lanius excubitor|butcherbird (generic term)
+european silver fir|1
+(noun)|European silver fir|Christmas tree|Abies alba|silver fir (generic term)
+european smelt|2
+(noun)|European smelt|sparling|smelt (generic term)
+(noun)|sparling|European smelt|Osmerus eperlanus|smelt (generic term)
+european sole|1
+(noun)|European sole|Solea solea|sole (generic term)
+european spider crab|1
+(noun)|European spider crab|king crab|Maja squinado|spider crab (generic term)
+european swift|1
+(noun)|European swift|Apus apus|swift (generic term)
+european toad|1
+(noun)|European toad|Bufo bufo|true toad (generic term)
+european tortoise|1
+(noun)|European tortoise|Testudo graeca|tortoise (generic term)
+european turkey oak|1
+(noun)|European turkey oak|turkey oak|Quercus cerris|oak (generic term)|oak tree (generic term)
+european union|1
+(noun)|European Union|EU|European Community|EC|European Economic Community|EEC|Common Market|Europe|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+european water ouzel|1
+(noun)|European water ouzel|Cinclus aquaticus|water ouzel (generic term)|dipper (generic term)
+european water shrew|1
+(noun)|European water shrew|Neomys fodiens|water shrew (generic term)
+european white birch|1
+(noun)|silver birch|common birch|European white birch|Betula pendula|birch (generic term)|birch tree (generic term)
+european white lily|1
+(noun)|European white lily|Nymphaea alba|water lily (generic term)
+european wildcat|1
+(noun)|European wildcat|catamountain|Felis silvestris|wildcat (generic term)
+european wolf spider|1
+(noun)|European wolf spider|tarantula|Lycosa tarentula|wolf spider (generic term)|hunting spider (generic term)
+european wood mouse|1
+(noun)|European wood mouse|Apodemus sylvaticus|field mouse (generic term)|fieldmouse (generic term)
+european woolly thistle|1
+(noun)|European woolly thistle|Cirsium eriophorum|woolly thistle (generic term)|Cirsium flodmanii (generic term)
+europeanisation|1
+(noun)|Europeanization|Europeanisation|assimilation (generic term)|absorption (generic term)
+europeanise|1
+(verb)|Europeanize|Europeanise|change (generic term)|alter (generic term)|modify (generic term)
+europeanization|1
+(noun)|Europeanization|Europeanisation|assimilation (generic term)|absorption (generic term)
+europeanize|1
+(verb)|Europeanize|Europeanise|change (generic term)|alter (generic term)|modify (generic term)
+europium|1
+(noun)|Eu|atomic number 63|metallic element (generic term)|metal (generic term)
+europocentric|1
+(adj)|Eurocentric|Europocentric|partiality|partisanship (related term)
+europol|1
+(noun)|Europol|European Law Enforcement Organisation|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+eurotiales|1
+(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order (generic term)
+eurotium|1
+(noun)|Eurotium|genus Eurotium|fungus genus (generic term)
+euryale|2
+(noun)|Euryale|Gorgon (generic term)
+(noun)|Euryale|genus Euryale|echinoderm genus (generic term)
+euryalida|1
+(noun)|Euryalida|subclass Euryalida|class (generic term)
+eurydice|1
+(noun)|Eurydice|mythical being (generic term)
+eurylaimi|1
+(noun)|Eurylaimi|suborder Eurylaimi|animal order (generic term)
+eurylaimidae|1
+(noun)|Eurylaimidae|family Eurylaimidae|bird family (generic term)
+eurypterid|1
+(noun)|arthropod (generic term)
+eurypterida|1
+(noun)|Eurypterida|order Eurypterida|animal order (generic term)
+eurythmics|1
+(noun)|eurythmy|eurhythmy|eurhythmics|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|diversion (generic term)|recreation (generic term)
+eurythmy|1
+(noun)|eurhythmy|eurythmics|eurhythmics|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|diversion (generic term)|recreation (generic term)
+eusebius|1
+(noun)|Eusebius|Eusebius of Caesarea|bishop (generic term)|historian (generic term)|historiographer (generic term)
+eusebius hieronymus|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+eusebius of caesarea|1
+(noun)|Eusebius|Eusebius of Caesarea|bishop (generic term)|historian (generic term)|historiographer (generic term)
+eusebius sophronius hieronymus|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+euskadi ta askatasuna|1
+(noun)|Basque Homeland and Freedom|Basque Fatherland and Liberty|Euskadi ta Askatasuna|ETA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+eusporangiate|1
+(adj)|leptosporangiate (antonym)
+eusporangium|1
+(noun)|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+eustachian tube|1
+(noun)|Eustachian tube|auditory tube|salpinx (generic term)
+eustachio|1
+(noun)|Eustachio|Bartolommeo Eustachio|anatomist (generic term)
+eustoma|1
+(noun)|Eustoma|genus Eustoma|dicot genus (generic term)|magnoliopsid genus (generic term)
+eustoma grandiflorum|1
+(noun)|prairie gentian|tulip gentian|bluebell|Eustoma grandiflorum|wildflower (generic term)|wild flower (generic term)
+eutamias|1
+(noun)|Eutamias|genus Eutamias|mammal genus (generic term)
+eutamius asiaticus|1
+(noun)|baronduki|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+eutamius sibiricus|1
+(noun)|baronduki|baranduki|barunduki|burunduki|Eutamius asiaticus|Eutamius sibiricus|squirrel (generic term)
+eutectic|1
+(noun)|mixture (generic term)
+eutectoid steel|1
+(noun)|carbon steel (generic term)
+euterpe|2
+(noun)|Euterpe|genus Euterpe|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Euterpe|Muse (generic term)
+euterpe oleracea|1
+(noun)|cabbage palm|Euterpe oleracea|palm (generic term)|palm tree (generic term)
+euthanasia|1
+(noun)|mercy killing|killing (generic term)|kill (generic term)|putting to death (generic term)
+euthenics|1
+(noun)|life science (generic term)|bioscience (generic term)
+eutheria|1
+(noun)|Eutheria|subclass Eutheria|class (generic term)
+eutherian|2
+(adj)|class (related term)
+(noun)|placental|placental mammal|eutherian mammal|mammal (generic term)|mammalian (generic term)
+eutherian mammal|1
+(noun)|placental|placental mammal|eutherian|mammal (generic term)|mammalian (generic term)
+euthynnus|1
+(noun)|Euthynnus|genus Euthynnus|fish genus (generic term)
+euthynnus pelamis|1
+(noun)|skipjack|skipjack tuna|Euthynnus pelamis|scombroid (generic term)|scombroid fish (generic term)
+eutrophic|1
+(adj)|organic process|biological process (related term)
+eutrophication|1
+(noun)|organic process (generic term)|biological process (generic term)
+euxine sea|1
+(noun)|Black Sea|Euxine Sea|sea (generic term)
+ev|1
+(noun)|electron volt|eV|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+eva braun|1
+(noun)|Braun|Eva Braun|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+eva le gallienne|1
+(noun)|Le Gallienne|Eva Le Gallienne|actress (generic term)
+evacuant|1
+(adj)|cathartic|purgative|laxative (similar term)
+evacuate|5
+(verb)|move (generic term)
+(verb)|empty (generic term)
+(verb)|displace (generic term)|force out (generic term)
+(verb)|exhaust|empty (generic term)
+(verb)|void|empty|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+evacuated|1
+(adj)|exhausted (similar term)
+evacuation|3
+(noun)|emptying|voidance|removal (generic term)|remotion (generic term)
+(noun)|withdrawal (generic term)
+(noun)|elimination|excretion|excreting|voiding|discharge (generic term)|emission (generic term)|expelling (generic term)
+evacuee|1
+(noun)|migrant (generic term)|migrator (generic term)
+evade|4
+(verb)|hedge|fudge|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+(verb)|elude|bilk|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|get off (generic term)|get away (generic term)|get by (generic term)|get out (generic term)|escape (generic term)
+evaluate|2
+(verb)|measure|valuate|assess|appraise|value|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|pass judgment|judge|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+evaluation|2
+(noun)|rating|judgment (generic term)|judgement (generic term)|assessment (generic term)
+(noun)|valuation|rating|appraisal (generic term)|assessment (generic term)
+evaluative|1
+(adj)|appraising|critical (similar term)
+evaluator|1
+(noun)|judge|authority (generic term)
+evanesce|1
+(verb)|fade|blow over|pass off|fleet|pass|disappear (generic term)|vanish (generic term)|go away (generic term)
+evanescence|1
+(noun)|disappearance (generic term)
+evanescent|1
+(adj)|impermanent (similar term)|temporary (similar term)
+evangel|1
+(noun)|Gospel|Gospels|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+evangelical|3
+(adj)|Protestantism (related term)
+(adj)|sacred text|sacred writing|religious writing|religious text (related term)
+(adj)|evangelistic|enthusiastic (similar term)
+evangelical and reformed church|1
+(noun)|Evangelical and Reformed Church|Protestant denomination (generic term)
+evangelical united brethren church|1
+(noun)|Evangelical United Brethren Church|Methodist denomination (generic term)
+evangelicalism|1
+(noun)|Protestantism (generic term)
+evangelise|2
+(verb)|evangelize|preach (generic term)|prophesy (generic term)
+(verb)|evangelize|convert (generic term)
+evangelism|1
+(noun)|sermon (generic term)|discourse (generic term)|preaching (generic term)
+evangelist|2
+(noun)|revivalist|gospeler|gospeller|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)
+(noun)|Evangelist|spiritual leader (generic term)
+evangelista torricelli|1
+(noun)|Torricelli|Evangelista Torricelli|physicist (generic term)
+evangelistic|2
+(adj)|sermon|discourse|preaching (related term)
+(adj)|evangelical|enthusiastic (similar term)
+evangelize|2
+(verb)|evangelise|preach (generic term)|prophesy (generic term)
+(verb)|evangelise|convert (generic term)
+evans|2
+(noun)|Evans|Herbert McLean Evans|anatomist (generic term)
+(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist (generic term)|archaeologist (generic term)
+evansville|1
+(noun)|Evansville|city (generic term)|metropolis (generic term)|urban center (generic term)
+evaporable|1
+(adj)|vaporific|vapourific|vaporizable|vapourisable|volatilizable|volatilisable|volatile (similar term)
+evaporate|3
+(verb)|vaporize|vaporise|change integrity (generic term)
+(verb)|vaporise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vaporise|change (generic term)
+evaporated|1
+(adj)|gaseous (similar term)
+evaporated milk|1
+(noun)|milk (generic term)|concentrate (generic term)
+evaporation|2
+(noun)|vaporization|vaporisation|vapor|vapour|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(noun)|dehydration|desiccation|drying up|extraction (generic term)
+evaporative|1
+(adj)|phase change|phase transition|state change|physical change (related term)
+evaporative cooler|1
+(noun)|cooling system (generic term)|cooling (generic term)
+evaporite|1
+(noun)|sediment (generic term)|deposit (generic term)
+evaporometer|1
+(noun)|atmometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+evariste galois|1
+(noun)|Galois|Evariste Galois|mathematician (generic term)
+evasion|4
+(noun)|equivocation|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|nonpayment|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)|payment (antonym)
+(noun)|escape|dodging|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+(noun)|escape (generic term)|flight (generic term)
+evasive|3
+(adj)|equivocal (similar term)|ambiguous (similar term)
+(adj)|protective (similar term)
+(adj)|elusive|artful (similar term)
+evasive action|1
+(noun)|maneuver|manoeuvre|evasion (generic term)
+evasive answer|1
+(noun)|answer (generic term)
+evasiveness|1
+(noun)|equivocation|prevarication|untruthfulness (generic term)|ambiguity (generic term)|equivocalness (generic term)
+eve|4
+(noun)|Eve|woman (generic term)|adult female (generic term)
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|evening|even|eventide|day (generic term)|daytime (generic term)|daylight (generic term)
+evelyn arthur saint john waugh|1
+(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer (generic term)|author (generic term)
+evelyn waugh|1
+(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer (generic term)|author (generic term)
+even|11
+(adj)|odd (antonym)
+(adj)|fifty-fifty|equal (similar term)
+(adj)|flat (similar term)|level (similar term)|plane (similar term)|flatbottom (similar term)|flatbottomed (similar term)|flush (similar term)|justified (similar term)|straight-grained (similar term)|level (similar term)|true (similar term)|straight (similar term)|smooth (related term)|steady (related term)|uneven (antonym)
+(adj)|regular|symmetrical (similar term)|symmetric (similar term)
+(adj)|regular|steady (similar term)
+(adj)|tied|level|equal (similar term)
+(noun)|evening|eve|eventide|day (generic term)|daytime (generic term)|daylight (generic term)
+(verb)|flush|level|even out|change surface (generic term)
+(verb)|even out|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|even out|regularize (generic term)|regularise (generic term)|even out (related term)|even off (related term)|even up (related term)
+(adv)|yet|still
+even-pinnate|1
+(adj)|abruptly-pinnate|paripinnate|compound (similar term)
+even-pinnate leaf|1
+(noun)|abruptly-pinnate leaf|pinnate leaf (generic term)
+even-tempered|1
+(adj)|equable|good-tempered|placid|good-natured (similar term)
+even-textured|1
+(adj)|smooth (similar term)
+even-toed|1
+(adj)|artiodactyl|artiodactylous|animal order (related term)
+even-toed ungulate|1
+(noun)|artiodactyl|artiodactyl mammal|ungulate (generic term)|hoofed mammal (generic term)|odd-toed ungulate (antonym)
+even a little|1
+(adv)|in the least
+even as|1
+(adv)|just as
+even chance|1
+(noun)|tossup|toss-up|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+even off|1
+(verb)|compensate|counterbalance|correct|make up|even out|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+even out|4
+(verb)|compensate|counterbalance|correct|make up|even off|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|flush|level|even|change surface (generic term)
+(verb)|even|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|even|regularize (generic term)|regularise (generic term)|even out (related term)|even off (related term)|even up (related term)
+even so|1
+(adv)|however|nevertheless|withal|still|yet|all the same|nonetheless|notwithstanding
+even spacing|1
+(noun)|regularity (generic term)
+even up|2
+(verb)|compensate|counterbalance|correct|make up|even out|even off|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|square up|jog|square (generic term)
+evenfall|1
+(noun)|twilight|dusk|gloaming|gloam|nightfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+evenhanded|1
+(adj)|equitable (similar term)|just (similar term)
+evenhandedly|1
+(adv)|fairly|fair
+evening|2
+(noun)|eve|even|eventide|day (generic term)|daytime (generic term)|daylight (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+evening-primrose family|1
+(noun)|Onagraceae|family Onagraceae|rosid dicot family (generic term)
+evening-snow|1
+(noun)|Linanthus dichotomus|phlox (generic term)
+evening bag|1
+(noun)|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+evening clothes|1
+(noun)|formalwear|eveningwear|evening dress|attire (generic term)|garb (generic term)|dress (generic term)
+evening dress|1
+(noun)|formalwear|eveningwear|evening clothes|attire (generic term)|garb (generic term)|dress (generic term)
+evening gown|1
+(noun)|dinner dress|dinner gown|formal|gown (generic term)|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+evening grosbeak|1
+(noun)|Hesperiphona vespertina|grosbeak (generic term)|grossbeak (generic term)
+evening lychnis|1
+(noun)|white campion|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+evening prayer|1
+(noun)|Evening Prayer|evensong|prayer (generic term)
+evening primrose|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+evening shift|2
+(noun)|swing shift|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|shift (generic term)
+evening shirt|1
+(noun)|dress shirt|shirt (generic term)
+evening star|1
+(noun)|Hesperus|Vesper|planet (generic term)|major planet (generic term)
+evening trumpet flower|1
+(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|Gelsemium sempervirens|vine (generic term)
+eveningwear|1
+(noun)|formalwear|evening dress|evening clothes|attire (generic term)|garb (generic term)|dress (generic term)
+evenk|1
+(noun)|Tungus|Evenk|Tungusic (generic term)
+evenki|2
+(noun)|Evenki|Ewenki|Oriental (generic term)|oriental person (generic term)
+(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic (generic term)|Tungusic language (generic term)
+evenly|2
+(adv)|equally|unequally (antonym)|unevenly (antonym)
+(adv)|unevenly (antonym)
+evenness|3
+(noun)|parity (generic term)
+(noun)|invariability|regularity (generic term)|variability (antonym)|unevenness (antonym)
+(noun)|equality (generic term)|unevenness (antonym)
+evensong|2
+(noun)|vespers|canonical hour (generic term)
+(noun)|Evening Prayer|prayer (generic term)
+event|4
+(noun)|psychological feature (generic term)
+(noun)|case|circumstance (generic term)
+(noun)|physical phenomenon (generic term)
+(noun)|consequence|effect|outcome|result|issue|upshot|phenomenon (generic term)
+event planner|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+eventful|2
+(adj)|lively (similar term)|uneventful (antonym)
+(adj)|consequential|important (similar term)|of import (similar term)
+eventide|1
+(noun)|evening|eve|even|day (generic term)|daytime (generic term)|daylight (generic term)
+eventration|1
+(noun)|hernia (generic term)|herniation (generic term)
+eventual|1
+(adj)|ultimate (similar term)
+eventuality|1
+(noun)|contingency|contingence|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+eventually|2
+(adv)|yet|sooner or later|in time|one of these days
+(adv)|finally|at length
+eventuate|1
+(verb)|turn out (generic term)|come out (generic term)
+ever|3
+(adv)|of all time
+(adv)|always|e'er|never (antonym)
+(adv)|ever so
+ever-changing|1
+(adj)|changing|dynamic (similar term)|dynamical (similar term)
+ever-present|1
+(adj)|present (similar term)
+ever so|1
+(adv)|ever
+everest|1
+(noun)|Everest|Mount Everest|Mt. Everest|mountain peak (generic term)
+everglade state|1
+(noun)|Florida|Sunshine State|Everglade State|FL|American state (generic term)
+everglades|1
+(noun)|Everglades|swamp (generic term)|swampland (generic term)
+everglades national park|1
+(noun)|Everglades National Park|national park (generic term)
+evergreen|2
+(adj)|coniferous (similar term)|cone-bearing (similar term)|semi-evergreen (similar term)|half-evergreen (similar term)|deciduous (antonym)
+(noun)|evergreen plant|vascular plant (generic term)|tracheophyte (generic term)|deciduous plant (antonym)
+evergreen beech|1
+(noun)|southern beech|tree (generic term)
+evergreen bittersweet|1
+(noun)|Euonymus fortunei radicans|Euonymus radicans vegetus|vine (generic term)
+evergreen blueberry|1
+(noun)|Vaccinium myrsinites|blueberry (generic term)|blueberry bush (generic term)
+evergreen cherry|1
+(noun)|holly-leaved cherry|holly-leaf cherry|islay|Prunus ilicifolia|wild plum (generic term)|wild plum tree (generic term)
+evergreen grass|1
+(noun)|tall oat grass|tall meadow grass|false oat|French rye|Arrhenatherum elatius|grass (generic term)
+evergreen huckleberry|1
+(noun)|Vaccinium ovatum|blueberry (generic term)|blueberry bush (generic term)
+evergreen magnolia|1
+(noun)|southern magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia (generic term)
+evergreen millet|1
+(noun)|Johnson grass|Aleppa grass|means grass|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+evergreen oak|1
+(noun)|holm oak|holm tree|holly-leaved oak|Quercus ilex|oak (generic term)|oak tree (generic term)
+evergreen plant|1
+(noun)|evergreen|vascular plant (generic term)|tracheophyte (generic term)|deciduous plant (antonym)
+evergreen state|1
+(noun)|Washington|Evergreen State|WA|American state (generic term)
+evergreen thorn|1
+(noun)|Crataegus oxyacantha|hawthorn (generic term)|haw (generic term)
+evergreen winterberry|1
+(noun)|inkberry|gallberry|gall-berry|Ilex glabra|holly (generic term)
+evergreen wood fern|2
+(noun)|Christmas fern|canker brake|dagger fern|Polystichum acrostichoides|fern (generic term)
+(noun)|marginal wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+everlasting|3
+(adj)|ageless|aeonian|eonian|eternal|perpetual|unending|unceasing|permanent (similar term)|lasting (similar term)
+(adj)|arrant|complete|consummate|double-dyed|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(noun)|everlasting flower|composite (generic term)|composite plant (generic term)
+everlasting flower|1
+(noun)|everlasting|composite (generic term)|composite plant (generic term)
+everlasting pea|1
+(noun)|vine (generic term)
+everlastingly|1
+(adv)|eternally|forever|evermore
+everlastingness|1
+(noun)|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)
+evermore|2
+(adv)|forevermore
+(adv)|everlastingly|eternally|forever
+evernia|1
+(noun)|Evernia|genus Evernia|fungus genus (generic term)
+evers|1
+(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+eversion|2
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+(noun)|inversion|everting|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+evert|2
+(noun)|Evert|Chris Evert|Chrissie Evert|Christine Marie Evert|tennis player (generic term)
+(verb)|turn (generic term)|turn over (generic term)
+everting|1
+(noun)|inversion|eversion|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+every|1
+(adj)|all (similar term)
+every bit|1
+(adv)|equally|as
+every day|2
+(adj)|daily|day-to-day|day-after-day|regular (similar term)
+(adv)|daily|each day
+every last|1
+(adj)|all (similar term)
+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 (similar term)
+(adj)|casual|informal (similar term)
+(adj)|familiar (similar term)
+everydayness|1
+(noun)|commonness|commonplaceness|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)|uncommonness (antonym)
+everyman|1
+(noun)|commoner (generic term)|common man (generic term)|common person (generic term)
+everyplace|1
+(adv)|everywhere|all over
+everywhere|1
+(adv)|everyplace|all over
+evict|2
+(verb)|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+(verb)|force out|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+eviction|2
+(noun)|constructive eviction|compulsion (generic term)|coercion (generic term)
+(noun)|dispossession|legal ouster|due process (generic term)|due process of law (generic term)
+evidence|6
+(noun)|grounds|information (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+(noun)|information (generic term)|info (generic term)
+(verb)|attest|certify|manifest|demonstrate|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|testify|bear witness|prove|show|inform (generic term)
+(verb)|tell|inform (generic term)|tell apart (related term)
+evidenced|1
+(adj)|proved (similar term)|proven (similar term)
+evident|2
+(adj)|apparent|manifest|patent|plain|unmistakable|obvious (similar term)
+(adj)|discernible|observable|noticeable (similar term)
+evidential|1
+(adj)|evidentiary|significant (similar term)|important (similar term)
+evidentiary|2
+(adj)|indication|indicant (related term)
+(adj)|evidential|significant (similar term)|important (similar term)
+evidently|1
+(adv)|obviously|manifestly|patently|apparently|plainly|plain
+evil|7
+(adj)|atrocious (similar term)|flagitious (similar term)|grievous (similar term)|heinous (similar term)|monstrous (similar term)|bad (similar term)|immoral (similar term)|black (similar term)|dark (similar term)|sinister (similar term)|corruptive (similar term)|perversive (similar term)|pestiferous (similar term)|demonic (similar term)|diabolic (similar term)|diabolical (similar term)|fiendish (similar term)|hellish (similar term)|infernal (similar term)|satanic (similar term)|unholy (similar term)|despicable (similar term)|ugly (similar term)|vile (similar term)|slimy (similar term)|unworthy (similar term)|worthless (similar term)|wretched (similar term)|devilish (similar term)|diabolic (similar term)|diabolical (similar term)|mephistophelian (similar term)|mephistophelean (similar term)|evil-minded (similar term)|bad (related term)|immoral (related term)|offensive (related term)|unrighteous (related term)|wicked (related term)|wrong (related term)|good (antonym)
+(adj)|vicious|wicked (similar term)
+(adj)|harmful|injurious|malign (similar term)
+(adj)|malefic|malevolent|malign|maleficent (similar term)
+(noun)|immorality|wickedness|iniquity|transgression (generic term)|evildoing (generic term)
+(noun)|bad (generic term)|badness (generic term)
+(noun)|evilness|immorality (generic term)|goodness (antonym)|good (antonym)
+evil-looking|1
+(adj)|ugly (similar term)
+evil-minded|1
+(adj)|evil (similar term)
+evil eye|1
+(noun)|look (generic term)|looking (generic term)|looking at (generic term)
+evil spirit|1
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+evildoer|1
+(noun)|sinner|wrongdoer (generic term)|offender (generic term)
+evildoing|1
+(noun)|transgression|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+evilly|1
+(adv)|wickedly
+evilness|1
+(noun)|evil|immorality (generic term)|goodness (antonym)|good (antonym)
+evince|1
+(verb)|express|show|convey (generic term)|impart (generic term)
+eviscerate|5
+(adj)|injured (similar term)
+(verb)|resect|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|empty (generic term)
+(verb)|disembowel|draw|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|devitalize (generic term)|devitalise (generic term)
+evisceration|3
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|disembowelment|removal (generic term)|remotion (generic term)
+(noun)|devaluation (generic term)
+evitable|1
+(adj)|avoidable|avertible|avertable|inevitable (antonym)
+evocation|3
+(noun)|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|summoning|conjuring (generic term)|conjuration (generic term)|conjury (generic term)|invocation (generic term)
+(noun)|induction|elicitation|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+evocative|1
+(adj)|redolent|remindful|reminiscent|mindful (similar term)|aware (similar term)
+evoke|5
+(verb)|arouse|elicit|enkindle|kindle|fire|raise|provoke|make (generic term)|create (generic term)
+(verb)|provoke|call forth|kick up|cause (generic term)|do (generic term)|make (generic term)
+(verb)|educe|elicit|extract|draw out|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|raise|conjure|conjure up|invoke|stir|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|suggest|paint a picture|express (generic term)|show (generic term)|evince (generic term)
+evoked|1
+(adj)|elicited|induced (similar term)
+evoked potential|1
+(noun)|electric potential (generic term)|potential (generic term)|potential difference (generic term)|potential drop (generic term)|voltage (generic term)
+evolution|2
+(noun)|development|process (generic term)|physical process (generic term)|devolution (antonym)
+(noun)|organic evolution|phylogeny|phylogenesis|organic process (generic term)|biological process (generic term)
+evolutionary|1
+(adj)|organic process|biological process (related term)
+evolutionary trend|1
+(noun)|drift (generic term)|trend (generic term)|movement (generic term)
+evolutionism|1
+(noun)|theory of evolution|theory of organic evolution|scientific theory (generic term)
+evolutionist|1
+(noun)|believer (generic term)|truster (generic term)
+evolve|3
+(verb)|germinate|develop|create by mental act (generic term)|create mentally (generic term)
+(verb)|develop (generic term)
+(verb)|develop|acquire|change (generic term)
+ew|1
+(noun)|electronic warfare|EW|military action (generic term)|action (generic term)
+ewe|3
+(noun)|Ewe|African (generic term)
+(noun)|Ewe|Kwa (generic term)
+(noun)|sheep (generic term)
+ewenki|2
+(noun)|Evenki|Ewenki|Oriental (generic term)|oriental person (generic term)
+(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic (generic term)|Tungusic language (generic term)
+ewer|1
+(noun)|pitcher|vessel (generic term)
+ewing's sarcoma|1
+(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma (generic term)
+ewing's tumor|1
+(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma (generic term)
+ewing's tumour|1
+(noun)|Ewing's sarcoma|Ewing's tumor|Ewing's tumour|endothelial myeloma|sarcoma (generic term)
+ex|4
+(adj)|antique|demode|old-fashioned|old-hat|outmoded|passe|passee|unfashionable (similar term)|unstylish (similar term)
+(noun)|ex-husband|man (generic term)|adult male (generic term)
+(noun)|exwife|woman (generic term)|adult female (generic term)
+(noun)|X|letter x|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+ex-directory|1
+(adj)|not listed|unlisted (similar term)
+ex-gambler|1
+(noun)|gambler (generic term)
+ex-husband|1
+(noun)|ex|man (generic term)|adult male (generic term)
+ex-mayor|1
+(noun)|mayor (generic term)|city manager (generic term)
+ex-president|1
+(noun)|president (generic term)
+ex-serviceman|1
+(noun)|veteran|vet|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+ex-spouse|1
+(noun)|adult (generic term)|grownup (generic term)
+ex gratia|1
+(adj)|optional (similar term)
+ex libris|1
+(noun)|bookplate|gummed label (generic term)|sticker (generic term)|paster (generic term)
+ex officio|2
+(adj)|official (similar term)
+(adv)|by right of office
+ex post facto|1
+(adj)|retroactive|retro|retrospective (similar term)
+ex tempore|1
+(adv)|off-hand
+ex vivo|2
+(adj)|in vitro|in vivo (antonym)
+(adv)|in vitro
+exacerbate|2
+(verb)|worsen|aggravate|exasperate|change (generic term)|alter (generic term)|modify (generic term)|better (antonym)
+(verb)|exasperate|aggravate|anger (generic term)
+exacerbating|1
+(adj)|aggravating|exasperating|intensifying (similar term)
+exacerbation|2
+(noun)|aggravation|intensification (generic term)
+(noun)|exasperation (generic term)
+exact|4
+(adj)|direct (similar term)|verbatim (similar term)|literal (similar term)|mathematical (similar term)|perfect (similar term)|photographic (similar term)|rigorous (similar term)|strict (similar term)|accurate (related term)|literal (related term)|perfect (related term)|precise (related term)|inexact (antonym)
+(adj)|accurate|precise|correct (similar term)|right (similar term)
+(verb)|demand|claim (generic term)
+(verb)|claim|take|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+exacta|1
+(noun)|perfecta|bet (generic term)|wager (generic term)
+exacting|3
+(adj)|fastidious|unfastidious (antonym)
+(adj)|stern|strict|demanding (similar term)
+(adj)|exigent|demanding (similar term)
+exaction|1
+(noun)|demand (generic term)
+exactitude|1
+(noun)|exactness|accuracy (generic term)|truth (generic term)|inexactness (antonym)
+exactly|3
+(adv)|precisely|just
+(adv)|precisely|on the nose|on the dot|on the button
+(adv)|precisely|incisively|inexactly (antonym)|imprecisely (antonym)
+exactness|1
+(noun)|exactitude|accuracy (generic term)|truth (generic term)|inexactness (antonym)
+exacum|1
+(noun)|Exacum|genus Exacum|dicot genus (generic term)|magnoliopsid genus (generic term)
+exacum affine|1
+(noun)|Persian violet|Exacum affine|houseplant (generic term)
+exaeretodon|1
+(noun)|Exaeretodon|genus Exaeretodon|reptile genus (generic term)
+exaggerate|2
+(verb)|overstate|overdraw|hyperbolize|hyerbolise|magnify|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+(verb)|overdo|make (generic term)|do (generic term)
+exaggerated|3
+(adj)|overdone|overstated|immoderate (similar term)
+(adj)|magnified|enlarged|increased (similar term)
+(adj)|hyperbolic|inflated|increased (similar term)
+exaggeratedly|1
+(adv)|hyperbolically
+exaggeration|3
+(noun)|hyperbole|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+(noun)|increase (generic term)|step-up (generic term)
+(noun)|overstatement|magnification|misrepresentation (generic term)|deceit (generic term)|deception (generic term)|understatement (antonym)
+exalt|4
+(verb)|laud|extol|glorify|proclaim|praise (generic term)
+(verb)|exhilarate|inebriate|thrill|beatify|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+(verb)|inspire|animate|invigorate|enliven|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|lift (generic term)|raise (generic term)|elevate (generic term)
+exaltation|4
+(noun)|ecstasy|rapture|transport|raptus|emotional state (generic term)|spirit (generic term)
+(noun)|celestial point (generic term)
+(noun)|flock (generic term)
+(noun)|deification|apotheosis|worship (generic term)
+exalted|1
+(adj)|sublime|grand|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+exalting|1
+(adj)|ennobling|inspiring (similar term)
+exam|1
+(noun)|examination|test|communication (generic term)|communicating (generic term)
+exam paper|1
+(noun)|test paper|examination paper|question sheet|examination (generic term)|exam (generic term)|test (generic term)
+examen|2
+(noun)|examination|introspection (generic term)|self-contemplation (generic term)|self-examination (generic term)
+(noun)|criticism (generic term)|critique (generic term)
+examination|5
+(noun)|scrutiny|investigation (generic term)|investigating (generic term)
+(noun)|exam|test|communication (generic term)|communicating (generic term)
+(noun)|interrogation|interrogatory|questioning (generic term)|inquiring (generic term)
+(noun)|examen|introspection (generic term)|self-contemplation (generic term)|self-examination (generic term)
+(noun)|testing|investigation (generic term)|investigating (generic term)
+examination paper|1
+(noun)|test paper|exam paper|question sheet|examination (generic term)|exam (generic term)|test (generic term)
+examine|5
+(verb)|analyze|analyse|study|canvass|canvas
+(verb)|see
+(verb)|probe|investigate (generic term)|look into (generic term)
+(verb)|question (generic term)|query (generic term)
+(verb)|test|prove|try|try out|essay|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+examinee|1
+(noun)|testee|respondent (generic term)|responder (generic term)|answerer (generic term)
+examiner|2
+(noun)|tester|quizzer|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+(noun)|inspector|investigator (generic term)
+example|6
+(noun)|illustration|instance|representative|information (generic term)
+(noun)|model|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|exemplar|model|good example|ideal (generic term)
+(noun)|deterrent example|lesson|object lesson|admonition (generic term)|monition (generic term)|warning (generic term)|word of advice (generic term)
+(noun)|case|instance|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|exercise|lesson (generic term)
+exanimate|1
+(adj)|lifeless|dead (similar term)
+exanthem|1
+(noun)|exanthema|skin eruption|eruption (generic term)
+exanthema|1
+(noun)|exanthem|skin eruption|eruption (generic term)
+exanthema subitum|1
+(noun)|roseola infantum|roseola infantilis|pseudorubella|disease (generic term)
+exarch|2
+(noun)|bishop (generic term)
+(noun)|viceroy (generic term)|vicereine (generic term)
+exarchate|1
+(noun)|eparchy|diocese (generic term)|bishopric (generic term)|episcopate (generic term)
+exasperate|3
+(verb)|exacerbate|aggravate|anger (generic term)
+(verb)|infuriate|incense|anger (generic term)
+(verb)|worsen|aggravate|exacerbate|change (generic term)|alter (generic term)|modify (generic term)|better (antonym)
+exasperated|1
+(adj)|cheesed off|browned off|displeased (similar term)
+exasperating|2
+(adj)|infuriating|maddening|vexing|displeasing (similar term)
+(adj)|aggravating|exacerbating|intensifying (similar term)
+exasperation|2
+(noun)|aggravation|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|annoyance (generic term)|annoying (generic term)|irritation (generic term)|vexation (generic term)
+exaugural|1
+(adj)|valedictory (similar term)|inaugural (antonym)
+exboyfriend|1
+(noun)|man (generic term)|adult male (generic term)
+excalibur|1
+(noun)|Excalibur|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+excavate|4
+(verb)|unearth|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+(verb)|dig up|turn up|obtain (generic term)
+(verb)|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|dig|hollow|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+excavation|4
+(noun)|digging|dig|creating by removal (generic term)
+(noun)|dig|archeological site|site (generic term)|land site (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|mining|production (generic term)
+excavator|2
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|power shovel|digger|shovel|machine (generic term)
+exceed|3
+(verb)|transcend|surpass
+(verb)|transcend|overstep|pass|go past|top|excel (generic term)|stand out (generic term)|surpass (generic term)
+(verb)|surpass|outstrip|outmatch|outgo|outdo|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+exceedance|1
+(noun)|probability (generic term)|chance (generic term)
+exceeding|1
+(adj)|exceptional|olympian|prodigious|surpassing|extraordinary (similar term)
+exceedingly|1
+(adv)|passing|extremely
+excel|1
+(verb)|stand out|surpass
+excel at|1
+(verb)|shine at|excel (generic term)|stand out (generic term)|surpass (generic term)
+excellence|2
+(noun)|quality (generic term)
+(noun)|excellency|feature (generic term)|characteristic (generic term)
+excellency|2
+(noun)|Excellency|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|excellence|feature (generic term)|characteristic (generic term)
+excellent|1
+(adj)|first-class|fantabulous|superior (similar term)
+excelsior|1
+(noun)|wood shavings|packing material (generic term)|packing (generic term)|wadding (generic term)
+except|2
+(verb)|demur|object (generic term)
+(verb)|exclude|leave out|leave off|omit|take out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+exception|3
+(noun)|exclusion|elision|omission (generic term)
+(noun)|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+(noun)|objection (generic term)
+exceptionable|1
+(adj)|objectionable|unacceptable (similar term)
+exceptional|3
+(adj)|exceeding|olympian|prodigious|surpassing|extraordinary (similar term)
+(adj)|especial|particular|special|uncommon (similar term)
+(adj)|abnormal (similar term)
+excerpt|2
+(noun)|excerption|extract|selection|passage (generic term)
+(verb)|extract|take out|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+excerption|1
+(noun)|excerpt|extract|selection|passage (generic term)
+excess|5
+(adj)|extra|redundant|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+(noun)|surplus|surplusage|nimiety|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+(noun)|excessiveness|inordinateness|immoderation (generic term)|immoderateness (generic term)
+(noun)|surfeit|overabundance|fullness (generic term)
+(noun)|overindulgence|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+excessive|2
+(adj)|inordinate|undue|unreasonable|immoderate (similar term)
+(adj)|extravagant|exuberant|overweening|unrestrained (similar term)
+excessively|1
+(adv)|overly|to a fault|too
+excessiveness|1
+(noun)|excess|inordinateness|immoderation (generic term)|immoderateness (generic term)
+exchange|15
+(noun)|chemical phenomenon (generic term)
+(noun)|conversation (generic term)
+(noun)|group action (generic term)
+(noun)|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(noun)|central|telephone exchange|workplace (generic term)|work (generic term)
+(noun)|workplace (generic term)|work (generic term)
+(noun)|rally|group action (generic term)
+(noun)|interchange|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|substitution|commutation|change (generic term)
+(noun)|capture (generic term)
+(verb)|change|interchange|transfer (generic term)
+(verb)|change|commute|convert|replace (generic term)
+(verb)|switch over|switch|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|transfer (generic term)|reassign (generic term)
+(verb)|commute|convert|change (generic term)|alter (generic term)|modify (generic term)
+exchange premium|1
+(noun)|agio|agiotage|premium|charge (generic term)
+exchange rate|1
+(noun)|rate of exchange|rate (generic term)|charge per unit (generic term)
+exchange transfusion|1
+(noun)|transfusion (generic term)|blood transfusion (generic term)
+exchangeability|1
+(noun)|interchangeability|interchangeableness|fungibility|changeableness (generic term)|changeability (generic term)|unexchangeability (antonym)
+exchangeable|3
+(adj)|commutable (similar term)|substitutable (similar term)|fungible (similar term)|transposable (similar term)|permutable (similar term)|vicarious (similar term)|unexchangeable (antonym)
+(adj)|convertible|cashable (similar term)|redeemable (similar term)|inconvertible (antonym)
+(adj)|interchangeable|similar|standardized|standardised|replaceable (similar term)
+exchanged|1
+(adj)|changed (similar term)
+exchanger|1
+(noun)|money changer|money handler (generic term)|money dealer (generic term)
+exchequer|1
+(noun)|treasury|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+excise|4
+(noun)|excise tax|indirect tax (generic term)
+(verb)|strike|scratch|expunge|delete (generic term)|cancel (generic term)
+(verb)|tax (generic term)
+(verb)|cut out (generic term)
+excise tax|1
+(noun)|excise|indirect tax (generic term)
+exciseman|1
+(noun)|tax collector|taxman|collector of internal revenue|internal revenue agent|bureaucrat (generic term)|administrative official (generic term)
+excision|4
+(noun)|deletion|cut|editing (generic term)|redaction (generic term)
+(noun)|ablation|extirpation|cutting out|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|excommunication|banishment (generic term)|proscription (generic term)
+(noun)|extirpation|deracination|pull (generic term)|pulling (generic term)
+excitability|2
+(noun)|irritability|responsiveness (generic term)|reactivity (generic term)
+(noun)|excitableness|volatility|emotionality (generic term)|emotionalism (generic term)
+excitable|2
+(adj)|high-keyed (similar term)|quick (similar term)|warm (similar term)|skittish (similar term)|flighty (similar term)|spooky (similar term)|nervous (similar term)|unexcitable (antonym)
+(adj)|irritable|sensitive (similar term)
+excitable area|1
+(noun)|motor area|motor region|motor cortex|Rolando's area|cortical area (generic term)|cortical region (generic term)
+excitableness|1
+(noun)|excitability|volatility|emotionality (generic term)|emotionalism (generic term)
+excitant|2
+(adj)|excitative|excitatory|stimulative (similar term)
+(noun)|stimulant|stimulant drug|drug (generic term)
+excitation|3
+(noun)|excitement|inflammation|fervor|fervour|emotional arousal (generic term)
+(noun)|innervation|irritation|arousal (generic term)
+(noun)|excitement|arousal (generic term)|rousing (generic term)
+excitative|1
+(adj)|excitant|excitatory|stimulative (similar term)
+excitatory|1
+(adj)|excitant|excitative|stimulative (similar term)
+excite|8
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|stimulate|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)|stifle (antonym)
+(verb)|energize|energise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|stimulate|stir|sensitize (generic term)|sensitise (generic term)
+(verb)|agitate|rouse|turn on|charge|commove|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|arouse|sex|turn on|wind up|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|stimulate|shake|shake up|stir|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|stir up (related term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+excited|4
+(adj)|aflutter (similar term)|nervous (similar term)|agog (similar term)|crazy (similar term)|fevered (similar term)|intoxicated (similar term)|drunk (similar term)|overexcited (similar term)|stimulated (similar term)|stirred (similar term)|stirred up (similar term)|aroused (similar term)|teased (similar term)|titillated (similar term)|thrilled (similar term)|thrillful (similar term)|agitated (related term)|unexcited (antonym)
+(adj)|aroused|emotional|worked up|agitated (similar term)
+(adj)|delirious|frantic|mad|unrestrained|wild (similar term)
+(adj)|activated|reactive (similar term)
+excitedly|1
+(adv)|with excitement
+excitement|4
+(noun)|exhilaration|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+(noun)|excitation|inflammation|fervor|fervour|emotional arousal (generic term)
+(noun)|excitation|arousal (generic term)|rousing (generic term)
+(noun)|agitation|turmoil|upheaval|hullabaloo|disturbance (generic term)
+exciting|2
+(adj)|breathless (similar term)|breathtaking (similar term)|elating (similar term)|exhilarating (similar term)|electric (similar term)|galvanic (similar term)|galvanizing (similar term)|galvanising (similar term)|electrifying (similar term)|thrilling (similar term)|glamorous (similar term)|glamourous (similar term)|heady (similar term)|intoxicating (similar term)|titillating (similar term)|tickling (similar term)|tingling (similar term)|titillating (similar term)|interesting (related term)|provocative (related term)|sexy (related term)|stimulating (related term)|unexciting (antonym)
+(adj)|stimulating (similar term)
+excitingly|1
+(adv)|unexcitingly (antonym)
+exclaim|2
+(verb)|cry|cry out|outcry|call out|shout|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|proclaim|promulgate|declare (generic term)
+exclaiming|1
+(noun)|exclamation|utterance (generic term)|vocalization (generic term)
+exclamation|3
+(noun)|exclaiming|utterance (generic term)|vocalization (generic term)
+(noun)|complaint (generic term)
+(noun)|ecphonesis|rhetorical device (generic term)
+exclamation mark|1
+(noun)|exclamation point|punctuation (generic term)|punctuation mark (generic term)
+exclamation point|1
+(noun)|exclamation mark|punctuation (generic term)|punctuation mark (generic term)
+exclamatory|1
+(adj)|emphatic|forceful (similar term)
+exclude|5
+(verb)|except|leave out|leave off|omit|take out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+(verb)|keep out|shut out|shut|prevent (generic term)|keep (generic term)|admit (antonym)
+(verb)|miss (generic term)|lack (generic term)|include (antonym)
+(verb)|bar|debar|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)
+(verb)|expel|eject|chuck out|throw out|kick out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+exclusion|4
+(noun)|situation (generic term)|state of affairs (generic term)|inclusion (antonym)
+(noun)|excommunication|censure|rejection (generic term)
+(noun)|exception|elision|omission (generic term)
+(noun)|ejection|expulsion|riddance|banishment (generic term)|proscription (generic term)
+exclusion principle|1
+(noun)|Pauli exclusion principle|law (generic term)|law of nature (generic term)
+exclusionary rule|1
+(noun)|rule of evidence (generic term)
+exclusive|4
+(adj)|sole|unshared (similar term)
+(adj)|alone (similar term)|only (similar term)|inner (similar term)|inside (similar term)|inner (similar term)|privileged (similar term)|selective (similar term)|white-shoe (similar term)|inclusive (antonym)
+(adj)|single|undivided|concentrated (similar term)
+(noun)|scoop|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+exclusive right|1
+(noun)|prerogative|privilege|perquisite|right (generic term)
+exclusively|1
+(adv)|entirely|solely|alone|only
+exclusiveness|1
+(noun)|clannishness|cliquishness|snobbery (generic term)|snobbism (generic term)|snobbishness (generic term)
+excogitate|2
+(verb)|invent|contrive|devise|formulate|forge|create by mental act (generic term)|create mentally (generic term)
+(verb)|chew over|think over|meditate|ponder|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+excogitation|2
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|invention|innovation|conception|design|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+excogitative|1
+(adj)|thoughtful (similar term)
+excogitator|1
+(noun)|thinker (generic term)
+excommunicate|2
+(verb)|unchurch|curse|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)|communicate (antonym)
+(verb)|oust (generic term)|throw out (generic term)|drum out (generic term)|boot out (generic term)|kick out (generic term)|expel (generic term)
+excommunication|2
+(noun)|exclusion|censure|rejection (generic term)
+(noun)|excision|banishment (generic term)|proscription (generic term)
+excoriate|2
+(verb)|condemn|reprobate|decry|objurgate|denounce (generic term)
+(verb)|chafe|abrade (generic term)|corrade (generic term)|abrase (generic term)|rub down (generic term)|rub off (generic term)
+excoriation|2
+(noun)|abrasion|scratch|scrape|wound (generic term)|lesion (generic term)
+(noun)|denunciation (generic term)|denouncement (generic term)
+excrement|1
+(noun)|body waste|excretion|excreta|excretory product|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+excrescence|2
+(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|projection (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)|growth (generic term)
+excrescent|1
+(adj)|illness|unwellness|malady|sickness (related term)
+excreta|1
+(noun)|body waste|excretion|excrement|excretory product|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+excrete|1
+(verb)|egest|eliminate|pass|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+excreting|1
+(noun)|elimination|evacuation|excretion|voiding|discharge (generic term)|emission (generic term)|expelling (generic term)
+excretion|2
+(noun)|elimination|evacuation|excreting|voiding|discharge (generic term)|emission (generic term)|expelling (generic term)
+(noun)|body waste|excreta|excrement|excretory product|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+excretory|1
+(adj)|discharge|emission|expelling (related term)
+excretory organ|1
+(noun)|urinary organ|internal organ (generic term)|viscus (generic term)
+excretory product|1
+(noun)|body waste|excretion|excreta|excrement|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+excruciate|2
+(verb)|torment|torture|rack|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|torture|torment|injure (generic term)|wound (generic term)
+excruciating|1
+(adj)|agonizing|agonising|harrowing|torturing|torturous|torturesome|painful (similar term)
+excruciatingly|1
+(adv)|agonizingly|torturously
+excruciation|2
+(noun)|agony|suffering|pain (generic term)|hurting (generic term)
+(noun)|crucifixion|torture (generic term)|torturing (generic term)
+exculpate|1
+(verb)|acquit|assoil|clear|discharge|exonerate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+exculpated|1
+(adj)|absolved|clear|cleared|exonerated|vindicated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+exculpation|2
+(noun)|excuse|alibi|self-justification|defense (generic term)|defence (generic term)|vindication (generic term)
+(noun)|forgiveness (generic term)|pardon (generic term)
+exculpatory|1
+(adj)|absolvitory (similar term)|exonerative (similar term)|forgiving (similar term)|extenuating (similar term)|justificative (similar term)|justificatory (similar term)|vindicatory (similar term)|innocent (related term)|guiltless (related term)|clean-handed (related term)|inculpatory (antonym)
+excursion|2
+(noun)|jaunt|outing|junket|pleasure trip|expedition|sashay|journey (generic term)|journeying (generic term)
+(noun)|digression|journey (generic term)|journeying (generic term)
+excursion rate|1
+(noun)|rate (generic term)|charge per unit (generic term)
+excursionist|1
+(noun)|sightseer|tripper|rubberneck|tourist (generic term)|tourer (generic term)|holidaymaker (generic term)
+excursive|1
+(adj)|digressive|discursive|rambling|indirect (similar term)
+excursus|1
+(noun)|digression|aside|divagation|parenthesis|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+excusable|2
+(adj)|justifiable (similar term)|inexcusable (antonym)
+(adj)|forgivable|venial|pardonable (similar term)
+excusably|1
+(adv)|forgivably|pardonably|unpardonably (antonym)|unforgivably (antonym)|inexcusably (antonym)
+excusatory|1
+(adj)|apologetic|contrite (similar term)|defensive (similar term)|justificative (similar term)|justificatory (similar term)|self-deprecating (similar term)|unapologetic (antonym)
+excuse|9
+(noun)|alibi|exculpation|self-justification|defense (generic term)|defence (generic term)|vindication (generic term)
+(noun)|note (generic term)|short letter (generic term)|line (generic term)|billet (generic term)
+(noun)|apology|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+(verb)|pardon|forgive (generic term)
+(verb)|relieve|let off|exempt|absolve (generic term)|justify (generic term)|free (generic term)
+(verb)|explain|justify (generic term)|vindicate (generic term)
+(verb)|apologize|apologise|justify|rationalize|rationalise|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|beg off|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|condone|forgive (generic term)
+excused|1
+(adj)|exempt (similar term)
+excuser|1
+(noun)|pardoner|forgiver|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+exec|1
+(noun)|White House|EXEC|executive department (generic term)
+execrable|3
+(adj)|deplorable|miserable|woeful|wretched|inferior (similar term)
+(adj)|abominable|detestable|odious|hateful (similar term)
+(adj)|damnable|cursed (similar term)|curst (similar term)
+execrate|2
+(verb)|abhor|loathe|abominate|hate (generic term)|detest (generic term)
+(verb)|accurse|anathemize|comminate|anathemise|anathematize|anathematise|deplore (generic term)
+execration|3
+(noun)|abhorrence|abomination|detestation|loathing|odium|hate (generic term)|hatred (generic term)|disgust (generic term)
+(noun)|condemnation|curse|denunciation (generic term)|denouncement (generic term)
+(noun)|object (generic term)
+executability|1
+(noun)|capability (generic term)|capableness (generic term)
+executable|1
+(adj)|feasible|practicable|viable|workable|possible (similar term)
+executant|1
+(noun)|performer (generic term)|performing artist (generic term)
+execute|7
+(verb)|put to death|kill (generic term)|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|murder (generic term)|slay (generic term)|hit (generic term)|dispatch (generic term)|bump off (generic term)|off (generic term)|polish off (generic term)|remove (generic term)
+(verb)|carry through|accomplish|carry out|action|fulfill|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|enforce (generic term)|implement (generic term)|apply (generic term)
+(verb)|run|enforce (generic term)|implement (generic term)|apply (generic term)
+(verb)|perform|do
+(verb)|sign (generic term)
+executed|1
+(adj)|dead (similar term)
+executing|1
+(noun)|execution|capital punishment|death penalty|corporal punishment (generic term)
+execution|7
+(noun)|executing|capital punishment|death penalty|corporal punishment (generic term)
+(noun)|performance|carrying out|carrying into action|action (generic term)
+(noun)|instruction execution|process (generic term)|physical process (generic term)
+(noun)|execution of instrument|subscription (generic term)
+(noun)|writ of execution|court order (generic term)
+(noun)|implementation|carrying out|enforcement (generic term)
+(noun)|murder|slaying|homicide (generic term)
+execution of instrument|1
+(noun)|execution|subscription (generic term)
+execution sale|1
+(noun)|sheriff's sale|judicial sale|forced sale|sale (generic term)|sales agreement (generic term)
+execution speed|1
+(noun)|speed (generic term)|swiftness (generic term)|fastness (generic term)
+executioner|1
+(noun)|public executioner|killer (generic term)|slayer (generic term)
+executive|4
+(adj)|enforcement (related term)
+(noun)|executive director|administrator (generic term)|decision maker (generic term)
+(noun)|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+(noun)|administrator|head (generic term)|chief (generic term)|top dog (generic term)
+executive agency|1
+(noun)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+executive branch|1
+(noun)|Executive Office of the President|branch (generic term)|subdivision (generic term)|arm (generic term)
+executive clemency|1
+(noun)|office (generic term)|power (generic term)
+executive council|1
+(noun)|council (generic term)
+executive department|1
+(noun)|federal department (generic term)|federal office (generic term)|department of the federal government (generic term)
+executive director|1
+(noun)|executive|administrator (generic term)|decision maker (generic term)
+executive office of the president|1
+(noun)|executive branch|Executive Office of the President|branch (generic term)|subdivision (generic term)|arm (generic term)
+executive officer|1
+(noun)|military officer (generic term)|officer (generic term)
+executive program|1
+(noun)|supervisory program|supervisor|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+executive routine|1
+(noun)|supervisory routine|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+executive secretary|1
+(noun)|secretary (generic term)|secretarial assistant (generic term)
+executive session|1
+(noun)|closed session|session (generic term)
+executive vice president|1
+(noun)|vice president (generic term)|V.P. (generic term)
+executor|1
+(noun)|fiduciary (generic term)
+executor-heir relation|1
+(noun)|fiduciary relation (generic term)
+executrix|1
+(noun)|executor (generic term)
+exegesis|1
+(noun)|interpretation (generic term)
+exegete|1
+(noun)|expert (generic term)
+exegetic|1
+(adj)|exegetical|interpretation (related term)
+exegetical|1
+(adj)|exegetic|interpretation (related term)
+exemplar|1
+(noun)|example|model|good example|ideal (generic term)
+exemplary|3
+(adj)|model|worthy (similar term)
+(adj)|emblematic|typic|typical (similar term)
+(adj)|admonitory|cautionary|monitory|warning|dissuasive (similar term)
+exemplary damages|1
+(noun)|punitive damages|smart money|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+exemplification|2
+(noun)|illustration|demonstration (generic term)|demo (generic term)
+(noun)|typification|representational process (generic term)
+exemplify|2
+(verb)|represent|embody (generic term)|be (generic term)|personify (generic term)
+(verb)|illustrate|instance|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+exemplifying|1
+(adj)|illustrative|informative (similar term)|informatory (similar term)
+exempt|4
+(adj)|excused (similar term)|immune (similar term)|privileged (similar term)|nonexempt (antonym)
+(adj)|nontaxable|duty-free (similar term)|tax-exempt (similar term)|tax-free (similar term)|untaxed (similar term)|unratable (similar term)|exempt (related term)|taxable (antonym)
+(verb)|relieve|free|enforce (antonym)
+(verb)|excuse|relieve|let off|absolve (generic term)|justify (generic term)|free (generic term)
+exemption|3
+(noun)|freedom|unsusceptibility (generic term)|immunity (generic term)
+(noun)|tax write-off (generic term)|tax deduction (generic term)|deduction (generic term)
+(noun)|immunity|granting immunity|release (generic term)|waiver (generic term)|discharge (generic term)
+exenterate|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+exenteration|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+exercise|10
+(noun)|exercising|physical exercise|physical exertion|workout|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(noun)|use|usage|utilization|utilisation|employment|activity (generic term)
+(noun)|practice|drill|practice session|recitation|training (generic term)|preparation (generic term)|grooming (generic term)
+(noun)|example|lesson (generic term)
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(verb)|exert|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|practice|practise|do
+(verb)|work|work out|work (generic term)|put to work (generic term)
+(verb)|work out
+(verb)|drill|practice|practise|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+exercise bike|1
+(noun)|exercycle|exercise device (generic term)
+exercise device|1
+(noun)|device (generic term)
+exercise set|1
+(noun)|set|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+exerciser|1
+(noun)|gymnastic apparatus|sports equipment (generic term)
+exercising|1
+(noun)|exercise|physical exercise|physical exertion|workout|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+exercising weight|1
+(noun)|weight|free weight|sports equipment (generic term)
+exercycle|1
+(noun)|exercise bike|exercise device (generic term)
+exert|3
+(verb)|exercise|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|wield|maintain|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|act (generic term)|move (generic term)
+exertion|1
+(noun)|effort|elbow grease|travail|sweat|labor (generic term)|labour (generic term)|toil (generic term)
+exfiltration operation|1
+(noun)|clandestine operation (generic term)
+exfoliate|5
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)
+(verb)|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+(verb)|peel off (generic term)
+(verb)|chip (generic term)|chip off (generic term)|come off (generic term)|break away (generic term)|break off (generic term)
+(verb)|grow (generic term)
+exfoliation|2
+(noun)|organic phenomenon (generic term)
+(noun)|scale|scurf|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+exhalation|2
+(noun)|halitus|breath (generic term)
+(noun)|expiration|breathing out|breath (generic term)
+exhale|2
+(verb)|expire|breathe out|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|inhale (antonym)
+(verb)|give forth|emanate|emit (generic term)|breathe (generic term)|pass off (generic term)
+exhaust|7
+(noun)|exhaust fumes|fumes|gas (generic term)|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|exhaust system|system (generic term)
+(verb)|wash up|beat|tucker|tucker out|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+(verb)|consume|eat up|use up|eat|deplete|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|run down|play out|sap|tire|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|empty (generic term)
+(verb)|evacuate|empty (generic term)
+exhaust fan|1
+(noun)|fan (generic term)
+exhaust fumes|1
+(noun)|exhaust|fumes|gas (generic term)|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+exhaust hood|1
+(noun)|hood|covering (generic term)
+exhaust manifold|1
+(noun)|manifold (generic term)
+exhaust pipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+exhaust system|1
+(noun)|exhaust|system (generic term)
+exhaust valve|1
+(noun)|valve (generic term)
+exhausted|3
+(adj)|dog-tired|fagged|fatigued|played out|spent|washed-out|worn-out|worn out|tired (similar term)
+(adj)|consumed (similar term)|used-up (similar term)|used up (similar term)|depleted (similar term)|evacuated (similar term)|gone (similar term)|expended (similar term)|spent (similar term)|unexhausted (antonym)
+(adj)|drained (similar term)
+exhaustible|2
+(adj)|depletable (similar term)|inexhaustible (antonym)
+(adj)|finite (similar term)
+exhausting|2
+(adj)|draining|debilitating (similar term)
+(adj)|tiring|wearing|wearying|effortful (similar term)
+exhaustion|3
+(noun)|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+(noun)|debilitation|enervation|enfeeblement|weakening (generic term)
+(noun)|depletion (generic term)
+exhaustive|1
+(adj)|thorough|thoroughgoing|complete (similar term)
+exhaustively|1
+(adv)|thoroughly
+exhibit|6
+(noun)|evidence (generic term)
+(noun)|display|showing|show (generic term)
+(verb)|possess (generic term)
+(verb)|expose|display|show (generic term)
+(verb)|show|demo|present|demonstrate|show (generic term)
+(verb)|parade|march|walk (generic term)
+exhibition|2
+(noun)|presentation (generic term)|presentment (generic term)|demonstration (generic term)
+(noun)|exposition|expo|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+exhibition area|1
+(noun)|exhibition hall|hall (generic term)
+exhibition game|1
+(noun)|practice game|game (generic term)
+exhibition hall|1
+(noun)|exhibition area|hall (generic term)
+exhibition season|1
+(noun)|season (generic term)
+exhibitioner|1
+(noun)|exhibitor|shower|showman (generic term)|promoter (generic term)|impresario (generic term)
+exhibitionism|2
+(noun)|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+(noun)|immodesty|paraphilia (generic term)
+exhibitionist|2
+(noun)|flasher|compulsive (generic term)
+(noun)|show-off|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+exhibitionistic|1
+(adj)|unconcealed (similar term)
+exhibitor|1
+(noun)|exhibitioner|shower|showman (generic term)|promoter (generic term)|impresario (generic term)
+exhilarate|1
+(verb)|inebriate|thrill|exalt|beatify|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+exhilarated|1
+(adj)|gladdened|elated (similar term)
+exhilarating|2
+(adj)|stimulating|invigorating (similar term)
+(adj)|elating|exciting (similar term)
+exhilaration|1
+(noun)|excitement|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+exhort|2
+(verb)|cheer|inspire|urge|barrack|urge on|pep up|encourage (generic term)
+(verb)|urge|urge on|press|rede (generic term)|advise (generic term)|counsel (generic term)
+exhortation|2
+(noun)|communication (generic term)|communicating (generic term)
+(noun)|incitement|persuasion (generic term)|suasion (generic term)
+exhortative|1
+(adj)|exhortatory|hortative|hortatory|encouraging (similar term)
+exhortatory|1
+(adj)|exhortative|hortative|hortatory|encouraging (similar term)
+exhumation|1
+(noun)|disinterment|digging up|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+exhume|1
+(verb)|disinter|excavate (generic term)|dig up (generic term)|turn up (generic term)
+exigency|2
+(noun)|crisis (generic term)
+(noun)|emergency|pinch|crisis (generic term)
+exigent|2
+(adj)|clamant|crying|insistent|instant|imperative (similar term)
+(adj)|exacting|demanding (similar term)
+exiguity|1
+(noun)|meagerness|meagreness|leanness|poorness|scantiness|scantness|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+exiguous|1
+(adj)|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+exile|4
+(noun)|expatriate|absentee (generic term)
+(noun)|deportee|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+(noun)|deportation|expatriation|transportation|banishment (generic term)|proscription (generic term)
+(verb)|expatriate|deport|expel (generic term)|throw out (generic term)|kick out (generic term)|repatriate (antonym)
+exilic|1
+(adj)|banishment|proscription (related term)
+exist|2
+(verb)|be
+(verb)|survive|live|subsist
+existence|2
+(noun)|being|beingness|state (generic term)|nonexistence (antonym)|nonbeing (antonym)
+(noun)|universe|creation|world|cosmos|macrocosm|natural object (generic term)
+existent|3
+(adj)|existing|active (similar term)|alive (similar term)|extant (related term)|nonexistent (antonym)
+(adj)|real|actual (similar term)|actual (similar term)|factual (similar term)|historical (similar term)|concrete (related term)|genuine (related term)|echt (related term)|realistic (related term)|sincere (related term)|unreal (antonym)
+(adj)|actual|actualized (similar term)|actualised (similar term)|effective (similar term)|potential (antonym)
+existential|3
+(adj)|experiential|empirical (similar term)|empiric (similar term)
+(adj)|philosophical doctrine|philosophical theory (related term)
+(adj)|state (related term)
+existential operator|1
+(noun)|existential quantifier|quantifier (generic term)|logical quantifier (generic term)
+existential philosophy|1
+(noun)|existentialism|existentialist philosophy|philosophical doctrine (generic term)|philosophical theory (generic term)
+existential quantifier|1
+(noun)|existential operator|quantifier (generic term)|logical quantifier (generic term)
+existentialism|1
+(noun)|existential philosophy|existentialist philosophy|philosophical doctrine (generic term)|philosophical theory (generic term)
+existentialist|2
+(adj)|philosophical doctrine|philosophical theory (related term)
+(noun)|existentialist philosopher|philosopher (generic term)
+existentialist philosopher|1
+(noun)|existentialist|philosopher (generic term)
+existentialist philosophy|1
+(noun)|existentialism|existential philosophy|philosophical doctrine (generic term)|philosophical theory (generic term)
+existing|2
+(adj)|existent|active (similar term)|alive (similar term)|extant (related term)|nonexistent (antonym)
+(adj)|present (similar term)
+exit|6
+(noun)|issue|outlet|way out|opening (generic term)
+(noun)|passing|loss|departure|expiration|going|release|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(verb)|go out|get out|leave|move (generic term)|enter (antonym)
+(verb)|play (generic term)
+(verb)|die|decease|perish|go|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+exit poll|1
+(noun)|poll (generic term)|opinion poll (generic term)|public opinion poll (generic term)|canvass (generic term)
+exmoor|2
+(noun)|Exmoor|domestic sheep (generic term)|Ovis aries (generic term)
+(noun)|Exmoor|pony (generic term)
+exobiology|1
+(noun)|space biology|astrobiology|biology (generic term)|biological science (generic term)
+exocarp|1
+(noun)|epicarp|pericarp (generic term)|seed vessel (generic term)
+exocentric|1
+(adj)|endocentric (antonym)
+exocet|1
+(noun)|Exocet|guided missile (generic term)
+exocoetidae|1
+(noun)|Exocoetidae|family Exocoetidae|fish family (generic term)
+exocrine|2
+(adj)|gland|secretory organ|secretor|secreter (related term)|endocrine (antonym)
+(noun)|exocrine gland|duct gland|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+exocrine gland|1
+(noun)|exocrine|duct gland|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+exocycloida|1
+(noun)|Exocycloida|order Exocycloida|animal order (generic term)
+exode|1
+(noun)|afterpiece (generic term)
+exoderm|1
+(noun)|ectoderm|ectoblast|germ layer (generic term)
+exodontia|1
+(noun)|exodontics|dental surgery (generic term)
+exodontic|1
+(adj)|dental surgery (related term)
+exodontics|1
+(noun)|exodontia|dental surgery (generic term)
+exodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+exodus|2
+(noun)|hegira|hejira|escape (generic term)|flight (generic term)
+(noun)|Exodus|Book of Exodus|book (generic term)
+exoergic|1
+(adj)|energy-releasing|exothermic (related term)|exothermal (related term)|heat-releasing (related term)|endoergic (antonym)
+exoergic reaction|1
+(noun)|nuclear reaction (generic term)
+exogamic|2
+(adj)|exogamous|autogamous (antonym)|endogamous (antonym)
+(adj)|exogamous|outbred (related term)|endogamous (antonym)
+exogamous|2
+(adj)|exogamic|autogamous (antonym)|endogamous (antonym)
+(adj)|exogamic|outbred (related term)|endogamous (antonym)
+exogamy|1
+(noun)|intermarriage|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)|endogamy (antonym)
+exogen|1
+(noun)|dicot|dicotyledon|magnoliopsid|angiosperm (generic term)|flowering plant (generic term)
+exogenic|1
+(adj)|exogenous|endogenic (antonym)|endogenous (antonym)
+exogenous|1
+(adj)|exogenic|endogenic (antonym)|endogenous (antonym)
+exogenous depression|1
+(noun)|reactive depression|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+exogenous obesity|1
+(noun)|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+exomphalos|1
+(noun)|hernia (generic term)|herniation (generic term)
+exon|1
+(noun)|coding DNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)|intron (antonym)
+exonerate|1
+(verb)|acquit|assoil|clear|discharge|exculpate|pronounce (generic term)|label (generic term)|judge (generic term)|convict (antonym)
+exonerated|1
+(adj)|absolved|clear|cleared|exculpated|vindicated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+exoneration|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|vindication|clearing (generic term)
+exonerative|1
+(adj)|absolvitory|forgiving|exculpatory (similar term)
+exonuclease|1
+(noun)|nuclease (generic term)
+exophthalmic goiter|1
+(noun)|Graves' disease|hyperthyroidism (generic term)|thyrotoxicosis (generic term)|exophthalmos (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+exophthalmos|1
+(noun)|symptom (generic term)
+exopterygota|1
+(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class (generic term)
+exorbitance|1
+(noun)|outrageousness|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+exorbitant|1
+(adj)|extortionate|outrageous|steep|unconscionable|usurious|immoderate (similar term)
+exorbitantly|1
+(adv)|extortionately|usuriously
+exorcise|1
+(verb)|exorcize|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+exorciser|1
+(noun)|exorcist|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+exorcism|1
+(noun)|dispossession|supernaturalism (generic term)
+exorcist|2
+(noun)|Holy Order (generic term)|Order (generic term)
+(noun)|exorciser|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+exorcize|1
+(verb)|exorcise|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+exordium|1
+(noun)|introduction (generic term)
+exoskeleton|1
+(noun)|skeletal system (generic term)|skeleton (generic term)|frame (generic term)|systema skeletale (generic term)|body covering (generic term)
+exosphere|1
+(noun)|layer (generic term)
+exostosis|1
+(noun)|growth (generic term)
+exoteric|1
+(adj)|public (related term)|esoteric (antonym)
+exotherm|1
+(noun)|compound (generic term)|chemical compound (generic term)
+exothermal|1
+(adj)|exothermic|heat-releasing|exoergic (related term)|energy-releasing (related term)|endothermic (antonym)
+exothermic|1
+(adj)|exothermal|heat-releasing|exoergic (related term)|energy-releasing (related term)|endothermic (antonym)
+exothermic reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+exotic|2
+(adj)|alien|foreign (similar term)|strange (similar term)
+(adj)|strange (similar term)|unusual (similar term)
+exotic belly dancer|1
+(noun)|belly dancer|exotic dancer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+exotic dancer|2
+(noun)|stripper|striptease artist|striptease|stripteaser|ecdysiast|peeler|performer (generic term)|performing artist (generic term)
+(noun)|belly dancer|exotic belly dancer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+exoticism|1
+(noun)|exoticness|exotism|foreignness (generic term)|strangeness (generic term)|curiousness (generic term)
+exoticness|1
+(noun)|exoticism|exotism|foreignness (generic term)|strangeness (generic term)|curiousness (generic term)
+exotism|1
+(noun)|exoticism|exoticness|foreignness (generic term)|strangeness (generic term)|curiousness (generic term)
+exotoxin|1
+(noun)|toxin (generic term)|endotoxin (antonym)
+exotropia|1
+(noun)|walleye|divergent strabismus|strabismus (generic term)|squint (generic term)
+expand|7
+(verb)|spread out|grow (generic term)|contract (antonym)
+(verb)|grow (generic term)
+(verb)|enlarge (generic term)
+(verb)|boom|prosper|thrive|get ahead|flourish|grow (generic term)
+(verb)|inflate|blow up|amplify|increase (generic term)
+(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+(verb)|extend|change (generic term)|alter (generic term)|modify (generic term)
+expandable|2
+(adj)|expandible|expansible|expansive (similar term)
+(adj)|expandible|expansible|expansile|elastic (similar term)
+expanded|1
+(adj)|dilated (similar term)|distended (similar term)|swollen (similar term)|enlarged (similar term)|contracted (antonym)
+expandible|2
+(adj)|expandable|expansible|expansive (similar term)
+(adj)|expandable|expansible|expansile|elastic (similar term)
+expanding upon|1
+(noun)|expansion|increase (generic term)|step-up (generic term)
+expanse|3
+(noun)|sweep|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|area|surface area|extent (generic term)
+(noun)|space (generic term)
+expansible|2
+(adj)|expandable|expandible|expansive (similar term)
+(adj)|expandable|expandible|expansile|elastic (similar term)
+expansile|1
+(adj)|expandable|expandible|expansible|elastic (similar term)
+expansion|3
+(noun)|enlargement|increase (generic term)|step-up (generic term)|contraction (antonym)
+(noun)|enlargement|elaboration|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|expanding upon|increase (generic term)|step-up (generic term)
+expansion bit|1
+(noun)|expansive bit|bit (generic term)
+expansion bolt|1
+(noun)|bolt (generic term)
+expansion slot|1
+(noun)|slot|receptacle (generic term)
+expansionism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+expansionist|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+expansive|4
+(adj)|distensible (similar term)|erectile (similar term)|cavernous (similar term)|expandable (similar term)|expandible (similar term)|expansible (similar term)|inflatable (similar term)|unexpansive (antonym)
+(adj)|grand|heroic|impressive (similar term)
+(adj)|euphoric (similar term)
+(adj)|talkative|communicative (similar term)|communicatory (similar term)
+expansive bit|1
+(noun)|expansion bit|bit (generic term)
+expansively|1
+(adv)|ebulliently|exuberantly
+expansiveness|2
+(noun)|expansivity|impressiveness (generic term)|grandness (generic term)|magnificence (generic term)|richness (generic term)
+(noun)|effusiveness|expansivity|communicativeness (generic term)
+expansivity|3
+(noun)|coefficient of expansion|coefficient (generic term)
+(noun)|expansiveness|impressiveness (generic term)|grandness (generic term)|magnificence (generic term)|richness (generic term)
+(noun)|effusiveness|expansiveness|communicativeness (generic term)
+expatiate|1
+(verb)|elaborate|lucubrate|exposit|enlarge|flesh out|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+expatiation|1
+(noun)|expansion (generic term)|enlargement (generic term)|elaboration (generic term)
+expatriate|3
+(noun)|exile|absentee (generic term)
+(verb)|deport|exile|expel (generic term)|throw out (generic term)|kick out (generic term)|repatriate (antonym)
+(verb)|emigrate (generic term)
+expatriation|2
+(noun)|exile|deportation|transportation|banishment (generic term)|proscription (generic term)
+(noun)|emigration|out-migration|migration (generic term)
+expect|6
+(verb)|anticipate|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|ask|require|demand (generic term)
+(verb)|look|await|wait
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|have a bun in the oven|bear|carry|gestate|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+(verb)|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+expectable|1
+(adj)|expected (similar term)
+expectancy|2
+(noun)|anticipation|expectation (generic term)
+(noun)|anticipation|expectation (generic term)|outlook (generic term)|prospect (generic term)
+expectant|2
+(adj)|anticipant|anticipative|hopeful (similar term)
+(adj)|big|enceinte|gravid|great|large|heavy|with child|pregnant (similar term)
+expectation|4
+(noun)|outlook|prospect|belief (generic term)
+(noun)|anticipation|hopefulness (generic term)
+(noun)|feeling (generic term)
+(noun)|arithmetic mean|first moment|expected value|mean (generic term)|mean value (generic term)
+expected|3
+(adj)|anticipated (similar term)|awaited (similar term)|hoped-for (similar term)|due (similar term)|expectable (similar term)|foreseen (similar term)|foretold (similar term)|predicted (similar term)|matter-of-course (similar term)|supposed (similar term)|unsurprising (related term)|unexpected (antonym)
+(adj)|unsurprising (similar term)
+(adj)|likely|potential|prospective (similar term)
+expected value|1
+(noun)|arithmetic mean|first moment|expectation|mean (generic term)|mean value (generic term)
+expectedness|2
+(noun)|commonness|normality (generic term)|normalcy (generic term)
+(noun)|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)|unexpectedness (antonym)
+expectorant|1
+(noun)|expectorator|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+expectorate|2
+(verb)|clear out|drive out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|cough up|cough out|spit up|spit out|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+expectoration|2
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|spit|spitting|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+expectorator|2
+(noun)|spitter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|expectorant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+expedience|2
+(noun)|expediency|advantage (generic term)|vantage (generic term)|inexpediency (antonym)|inexpedience (antonym)
+(noun)|opportunism|self-interest|self-seeking|selfishness (generic term)
+expediency|1
+(noun)|expedience|advantage (generic term)|vantage (generic term)|inexpediency (antonym)|inexpedience (antonym)
+expedient|3
+(adj)|advantageous (similar term)|appropriate (similar term)|opportunist (similar term)|opportunistic (similar term)|timeserving (similar term)|advantageous (related term)|convenient (related term)|politic (related term)|useful (related term)|utile (related term)|inexpedient (antonym)
+(adj)|politic (similar term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+expediently|1
+(adv)|inadvisably|inexpediently (antonym)
+expedite|2
+(verb)|hasten|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|action (generic term)|sue (generic term)|litigate (generic term)|process (generic term)
+expedited|1
+(adj)|accelerated (similar term)|speeded up (similar term)|facilitated (similar term)|fast (related term)|delayed (antonym)
+expedition|5
+(noun)|military expedition|hostile expedition|campaign (generic term)|military campaign (generic term)
+(noun)|working group (generic term)|working party (generic term)
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|excursion|jaunt|outing|junket|pleasure trip|sashay|journey (generic term)|journeying (generic term)
+(noun)|dispatch|despatch|expeditiousness|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+expeditionary|1
+(adj)|military (similar term)
+expeditious|1
+(adj)|prompt|timesaving|efficient (similar term)
+expeditiously|1
+(adv)|efficiently|with efficiency|inefficiently (antonym)
+expeditiousness|1
+(noun)|dispatch|despatch|expedition|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+expel|5
+(verb)|throw out|kick out|move (generic term)|displace (generic term)
+(verb)|eject|chuck out|exclude|throw out|kick out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+(verb)|oust|throw out|drum out|boot out|kick out|remove (generic term)
+(verb)|rout|rout out|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|discharge|eject|release
+expelling|1
+(noun)|discharge|emission|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+expend|2
+(verb)|use|use up (related term)
+(verb)|spend|drop|pay (generic term)
+expendable|2
+(adj)|consumable (similar term)|sacrificeable (similar term)|replaceable (related term)|unexpendable (antonym)
+(adj)|spendable|disposable (similar term)
+expended|1
+(adj)|gone|spent|exhausted (similar term)
+expender|1
+(noun)|spender|disburser|customer (generic term)|client (generic term)
+expending|1
+(noun)|expenditure|spending (generic term)|disbursement (generic term)|disbursal (generic term)|outlay (generic term)
+expenditure|3
+(noun)|outgo|outlay|financial loss (generic term)|income (antonym)
+(noun)|expending|spending (generic term)|disbursement (generic term)|disbursal (generic term)|outlay (generic term)
+(noun)|consumption|using up|depletion (generic term)
+expense|3
+(noun)|disbursal|disbursement|cost (generic term)
+(noun)|detriment (generic term)|hurt (generic term)
+(noun)|outgo (generic term)|expenditure (generic term)|outlay (generic term)
+expense account|1
+(noun)|travel and entertainment account|account (generic term)|accounting (generic term)|account statement (generic term)
+expense record|1
+(noun)|record (generic term)
+expensive|1
+(adj)|big-ticket (similar term)|high-ticket (similar term)|costly (similar term)|dear (similar term)|high-priced (similar term)|pricey (similar term)|pricy (similar term)|dearly-won (similar term)|costly (similar term)|overpriced (similar term)|valuable (related term)|cheap (antonym)
+expensively|1
+(adv)|cheaply (antonym)
+expensiveness|1
+(noun)|monetary value (generic term)|price (generic term)|cost (generic term)|inexpensiveness (antonym)
+experience|8
+(noun)|education (generic term)|inexperience (antonym)
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|undergo|see|go through|participate (generic term)|take part (generic term)
+(verb)|know|live|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|receive|have|get|undergo
+(verb)|feel|feel for (related term)
+(verb)|have|change (generic term)
+experienced|1
+(adj)|experient|full-fledged (similar term)|fully fledged (similar term)|intimate (similar term)|knowledgeable (similar term)|versed (similar term)|old (similar term)|older (similar term)|practiced (similar term)|practised (similar term)|seasoned (similar term)|veteran (similar term)|old (related term)|skilled (related term)|tough (related term)|toughened (related term)|inexperienced (antonym)
+experient|1
+(adj)|experienced|full-fledged (similar term)|fully fledged (similar term)|intimate (similar term)|knowledgeable (similar term)|versed (similar term)|old (similar term)|older (similar term)|practiced (similar term)|practised (similar term)|seasoned (similar term)|veteran (similar term)|old (related term)|skilled (related term)|tough (related term)|toughened (related term)|inexperienced (antonym)
+experiential|2
+(adj)|content|cognitive content|mental object (related term)
+(adj)|existential|empirical (similar term)|empiric (similar term)
+experiment|5
+(noun)|experimentation|scientific research (generic term)|research project (generic term)
+(noun)|experimentation|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|venture (generic term)
+(verb)|investigate (generic term)|look into (generic term)
+(verb)|try out
+experimental|3
+(adj)|inquiry|enquiry|research (related term)
+(adj)|data-based|observational|empirical (similar term)|empiric (similar term)
+(adj)|empirical (similar term)|empiric (similar term)
+experimental condition|1
+(noun)|condition|procedure (generic term)|process (generic term)
+experimental extinction|1
+(noun)|extinction|conditioning (generic term)
+experimental method|1
+(noun)|scientific method (generic term)
+experimental procedure|1
+(noun)|procedure (generic term)|process (generic term)
+experimental psychology|1
+(noun)|psychonomics|psychology (generic term)|psychological science (generic term)
+experimental variable|1
+(noun)|independent variable|variable (generic term)|variable quantity (generic term)
+experimentalism|2
+(noun)|empiricism (generic term)|empiricist philosophy (generic term)|sensationalism (generic term)
+(noun)|orientation (generic term)
+experimentally|1
+(adv)|by experimentation|through an experiment
+experimentation|2
+(noun)|experiment|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|experiment|scientific research (generic term)|research project (generic term)
+experimenter|2
+(noun)|research worker (generic term)|researcher (generic term)|investigator (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+experimenter bias|1
+(noun)|bias (generic term)|prejudice (generic term)|preconception (generic term)
+expert|2
+(adj)|adept|good|practiced|proficient|skillful|skilful|skilled (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+expert witness|1
+(noun)|witness (generic term)|lay witness (antonym)
+expertise|1
+(noun)|expertness|skillfulness (generic term)
+expertly|1
+(adv)|like an expert|amateurishly (antonym)
+expertness|1
+(noun)|expertise|skillfulness (generic term)
+expiable|1
+(adj)|pardonable (similar term)
+expiate|1
+(verb)|aby|abye|atone|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+expiation|2
+(noun)|atonement|satisfaction|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+(noun)|atonement|propitiation|redemption (generic term)|salvation (generic term)
+expiative|1
+(adj)|expiatory|propitiatory|redemption|salvation (related term)
+expiatory|1
+(adj)|expiative|propitiatory|redemption|salvation (related term)
+expiration|3
+(noun)|termination|expiry|end (generic term)|ending (generic term)
+(noun)|passing|loss|departure|exit|going|release|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|exhalation|breathing out|breath (generic term)
+expiratory|1
+(adj)|breath (related term)
+expire|3
+(verb)|run out|discontinue (generic term)
+(verb)|die|decease|perish|go|exit|pass away|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|exhale|breathe out|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|inhale (antonym)
+expired|1
+(adj)|invalid (similar term)|terminated (similar term)|unexpired (antonym)
+expiry|2
+(noun)|termination|expiration|end (generic term)|ending (generic term)
+(noun)|death|decease|change (generic term)|alteration (generic term)|modification (generic term)|birth (antonym)
+explain|3
+(verb)|explicate|inform (generic term)
+(verb)|state (generic term)|say (generic term)|tell (generic term)
+(verb)|excuse|justify (generic term)|vindicate (generic term)
+explainable|1
+(adj)|interpretable|explicable (similar term)
+explanandum|1
+(noun)|explicandum|statement (generic term)
+explanans|1
+(noun)|statement (generic term)
+explanation|3
+(noun)|account|statement (generic term)
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|speech act (generic term)
+explanatory|1
+(adj)|instructive (similar term)|informative (similar term)
+expletive|2
+(noun)|curse|curse word|oath|swearing|swearword|cuss|profanity (generic term)
+(noun)|utterance (generic term)|vocalization (generic term)
+explicable|1
+(adj)|explainable (similar term)|interpretable (similar term)|comprehensible (related term)|comprehendible (related term)|soluble (related term)|inexplicable (antonym)
+explicandum|1
+(noun)|explanandum|statement (generic term)
+explicate|2
+(verb)|explain|inform (generic term)
+(verb)|formulate|develop|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+explication|2
+(noun)|explanation (generic term)
+(noun)|explanation (generic term)|account (generic term)
+explication de texte|1
+(noun)|criticism (generic term)|literary criticism (generic term)
+explicit|2
+(adj)|expressed|declared (similar term)|stated (similar term)|definitive (similar term)|unequivocal (similar term)|express (similar term)|graphic (similar term)|hard-core (similar term)|hardcore (similar term)|definite (related term)|denotative (related term)|denotive (related term)|overt (related term)|open (related term)|unequivocal (related term)|univocal (related term)|unambiguous (related term)|implicit (antonym)
+(adj)|denotative|literal (similar term)
+explicit definition|1
+(noun)|definition (generic term)
+explicitly|2
+(adv)|implicitly (antonym)
+(adv)|expressly
+explicitness|1
+(noun)|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)|inexplicitness (antonym)
+explode|10
+(verb)|detonate|blow up|set off|change integrity (generic term)
+(verb)|burst|change integrity (generic term)|implode (antonym)
+(verb)|react (generic term)|respond (generic term)
+(verb)|burst forth|break loose|change state (generic term)|turn (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|condemn (generic term)
+(verb)|disprove (generic term)|confute (generic term)
+(verb)|detonate|blow up
+(verb)|irrupt|increase (generic term)
+explode a bombshell|1
+(verb)|surprise (generic term)
+exploded|1
+(adj)|unconnected (similar term)
+exploding|1
+(adj)|increasing (similar term)
+exploding cucumber|1
+(noun)|squirting cucumber|touch-me-not|Ecballium elaterium|gourd (generic term)|gourd vine (generic term)
+exploit|4
+(noun)|deed|feat|effort|accomplishment (generic term)|achievement (generic term)
+(verb)|work|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|tap|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|overwork|work (generic term)|put to work (generic term)
+exploitation|2
+(noun)|development|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(noun)|victimization|victimisation|using|mistreatment (generic term)
+exploitative|1
+(adj)|exploitatory|exploitive|consumptive (similar term)
+exploitatory|1
+(adj)|exploitative|exploitive|consumptive (similar term)
+exploited|2
+(adj)|employed (similar term)|made use of (similar term)|unexploited (antonym)
+(adj)|ill-used|put-upon|used|victimized|victimised|misused (similar term)
+exploiter|1
+(noun)|user|selfish person (generic term)
+exploitive|1
+(adj)|exploitative|exploitatory|consumptive (similar term)
+exploration|3
+(noun)|geographic expedition|expedition (generic term)
+(noun)|search (generic term)|hunt (generic term)|hunting (generic term)
+(noun)|consideration (generic term)
+explorative|1
+(adj)|exploratory|alpha (similar term)|beta (similar term)|preliminary (similar term)|searching (similar term)|wildcat (similar term)|nonexploratory (antonym)
+exploratory|1
+(adj)|explorative|alpha (similar term)|beta (similar term)|preliminary (similar term)|searching (similar term)|wildcat (similar term)|nonexploratory (antonym)
+exploratory survey|1
+(noun)|scouting|reconnoitering|reconnoitring|reconnaissance (generic term)|reconnaissance mission (generic term)
+explore|4
+(verb)|research|search|investigate (generic term)|look into (generic term)
+(verb)|investigate (generic term)|look into (generic term)
+(verb)|diagnose (generic term)|name (generic term)
+(verb)|diagnose (generic term)
+explorer|2
+(noun)|adventurer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Internet Explorer|Explorer|IE|browser (generic term)|web browser (generic term)
+explorer's gentian|1
+(noun)|Gentiana calycosa|gentian (generic term)
+explosion|7
+(noun)|detonation|blowup|discharge (generic term)
+(noun)|burst|change of integrity (generic term)
+(noun)|increase (generic term)
+(noun)|noise (generic term)
+(noun)|plosion|release (generic term)|tone ending (generic term)
+(noun)|effusion (generic term)|gush (generic term)|outburst (generic term)|blowup (generic term)|ebullition (generic term)
+(noun)|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+explosive|4
+(adj)|detonative (similar term)|nonexplosive (antonym)
+(adj)|volatile|unstable (similar term)
+(adj)|sudden (similar term)
+(noun)|chemical (generic term)|chemical substance (generic term)
+explosive charge|1
+(noun)|charge|burster|bursting charge|explosive (generic term)
+explosive compound|1
+(noun)|explosive (generic term)
+explosive detection system|1
+(noun)|EDS|system (generic term)
+explosive device|1
+(noun)|device (generic term)
+explosive mixture|1
+(noun)|explosive (generic term)
+explosive trace detection|1
+(noun)|ETD|system (generic term)
+explosive unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+expo|1
+(noun)|exhibition|exposition|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+exponent|3
+(noun)|advocate|advocator|proponent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|intellectual (generic term)|intellect (generic term)
+(noun)|power|index|mathematical notation (generic term)
+exponential|2
+(adj)|mathematical notation (related term)
+(noun)|exponential function|function (generic term)|mathematical function (generic term)
+exponential curve|1
+(noun)|graph (generic term)|graphical record (generic term)
+exponential decay|1
+(noun)|exponential return|decay (generic term)|decline (generic term)
+exponential equation|1
+(noun)|equation (generic term)
+exponential expression|1
+(noun)|formula (generic term)|expression (generic term)
+exponential function|1
+(noun)|exponential|function (generic term)|mathematical function (generic term)
+exponential return|1
+(noun)|exponential decay|decay (generic term)|decline (generic term)
+exponential series|1
+(noun)|series (generic term)
+exponentiation|1
+(noun)|involution|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+export|3
+(noun)|exportation|commodity (generic term)|trade good (generic term)|good (generic term)|import (antonym)
+(verb)|trade (generic term)|merchandise (generic term)|import (antonym)
+(verb)|spread (generic term)|distribute (generic term)
+export credit|1
+(noun)|credit (generic term)
+export duty|1
+(noun)|duty (generic term)|tariff (generic term)
+exportable|1
+(adj)|marketable (similar term)|unexportable (antonym)
+exportation|2
+(noun)|export|commodity (generic term)|trade good (generic term)|good (generic term)|import (antonym)
+(noun)|exporting|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+exporter|1
+(noun)|businessperson (generic term)|bourgeois (generic term)
+exporting|1
+(noun)|exportation|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+expose|9
+(noun)|unmasking|exposure (generic term)
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|divulge|impart|break|give away|let out|tell (generic term)
+(verb)|exhibit|display|show (generic term)
+(verb)|uncover|cover (antonym)
+(verb)|disclose|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+(verb)|queer|scupper|endanger|peril|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|subject (generic term)
+(verb)|debunk|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+(verb)|abandon (generic term)|forsake (generic term)|desolate (generic term)|desert (generic term)
+exposed|2
+(adj)|open|unprotected (similar term)
+(adj)|uncovered|unclothed (similar term)
+exposit|2
+(verb)|set forth|expound|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+(verb)|elaborate|lucubrate|expatiate|enlarge|flesh out|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+exposition|4
+(noun)|expounding|interpretation (generic term)
+(noun)|exhibition|expo|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|explanation (generic term)|account (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+expositive|1
+(adj)|expository|instructive (similar term)|informative (similar term)
+expositor|1
+(noun)|expounder|intellectual (generic term)|intellect (generic term)
+expository|1
+(adj)|expositive|instructive (similar term)|informative (similar term)
+expostulate|1
+(verb)|argue (generic term)|reason (generic term)
+expostulation|2
+(noun)|remonstrance|remonstration|objection|communication (generic term)|communicating (generic term)
+(noun)|exclamation (generic term)|exclaiming (generic term)
+exposure|10
+(noun)|vulnerability (generic term)
+(noun)|influence (generic term)
+(noun)|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|vulnerability|danger (generic term)
+(noun)|light unit (generic term)
+(noun)|photograph|photo|pic|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(noun)|photography (generic term)|picture taking (generic term)
+(noun)|presentation (generic term)|presentment (generic term)|demonstration (generic term)
+(noun)|abandonment (generic term)|forsaking (generic term)|desertion (generic term)
+exposure meter|1
+(noun)|light meter|photometer|photographic equipment (generic term)
+exposure therapy|1
+(noun)|desensitization technique (generic term)|desensitisation technique (generic term)|desensitization procedure (generic term)|desensitisation procedure (generic term)|systematic desensitization (generic term)|systematic desensitisation (generic term)
+expound|2
+(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|flesh out|expand|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+(verb)|set forth|exposit|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+expounder|1
+(noun)|expositor|intellectual (generic term)|intellect (generic term)
+expounding|1
+(noun)|exposition|interpretation (generic term)
+express|12
+(adj)|explicit (similar term)|expressed (similar term)
+(adj)|fast (similar term)
+(noun)|expressage|transportation (generic term)|shipping (generic term)|transport (generic term)
+(noun)|express mail|mail (generic term)
+(noun)|limited|public transport (generic term)|local (antonym)
+(verb)|show|evince|convey (generic term)|impart (generic term)
+(verb)|verbalize|verbalise|utter|give tongue to
+(verb)|state|denote (generic term)|refer (generic term)
+(verb)|carry|convey|communicate (generic term)|intercommunicate (generic term)
+(verb)|reveal (generic term)|display (generic term)|show (generic term)
+(verb)|press out|extract|get (generic term)|acquire (generic term)
+(verb)|mail (generic term)|post (generic term)|send (generic term)
+express-mail|1
+(verb)|mail (generic term)|post (generic term)|send (generic term)
+express emotion|1
+(verb)|express feelings
+express feelings|1
+(verb)|express emotion
+express joy|1
+(verb)|laugh|express mirth|express emotion (generic term)|express feelings (generic term)|laugh off (related term)|laugh away (related term)|laugh at (related term)|cry (antonym)
+express luxury liner|1
+(noun)|luxury liner|liner (generic term)|ocean liner (generic term)
+express mail|1
+(noun)|express|mail (generic term)
+express mirth|1
+(verb)|laugh|express joy|express emotion (generic term)|express feelings (generic term)|laugh off (related term)|laugh away (related term)|laugh at (related term)|cry (antonym)
+express trust|1
+(noun)|direct trust|trust (generic term)
+expressage|1
+(noun)|express|transportation (generic term)|shipping (generic term)|transport (generic term)
+expressed|2
+(adj)|uttered|verbalized|verbalised|spoken (similar term)
+(adj)|explicit|declared (similar term)|stated (similar term)|definitive (similar term)|unequivocal (similar term)|express (similar term)|graphic (similar term)|hard-core (similar term)|hardcore (similar term)|definite (related term)|denotative (related term)|denotive (related term)|overt (related term)|open (related term)|unequivocal (related term)|univocal (related term)|unambiguous (related term)|implicit (antonym)
+expressed almond oil|1
+(noun)|almond oil|sweet almond oil|oil (generic term)
+expressible|1
+(adj)|describable (similar term)|representable (similar term)|speakable (similar term)|utterable (similar term)|inexpressible (antonym)
+expression|9
+(noun)|look|aspect|facial expression|face|countenance (generic term)|visage (generic term)
+(noun)|manifestation|reflection|reflexion|demonstration (generic term)|demo (generic term)
+(noun)|verbal expression|verbalism|communication (generic term)|communicating (generic term)
+(noun)|saying|locution|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|formulation|expressive style (generic term)|style (generic term)
+(noun)|formula|mathematical statement (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|construction|grammatical construction|constituent (generic term)|grammatical constituent (generic term)|misconstruction (antonym)
+(noun)|squeeze (generic term)|squeezing (generic term)
+expressionism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+expressionist|2
+(adj)|expressionistic|artistic movement|art movement (related term)
+(noun)|artist (generic term)|creative person (generic term)
+expressionistic|1
+(adj)|expressionist|artistic movement|art movement (related term)
+expressionless|1
+(adj)|deadpan|impassive|poker-faced|unexpressive|uncommunicative (similar term)|incommunicative (similar term)
+expressive|1
+(adj)|communicative (similar term)|communicatory (similar term)
+expressive aphasia|1
+(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|nonfluent aphasia|aphasia (generic term)
+expressive style|1
+(noun)|style|communication (generic term)
+expressively|1
+(adv)|inexpressively (antonym)
+expressiveness|1
+(noun)|quality (generic term)
+expressly|1
+(adv)|explicitly
+expressway|1
+(noun)|freeway|motorway|pike|state highway|superhighway|throughway|thruway|highway (generic term)|main road (generic term)
+expropriate|1
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+expropriated|1
+(adj)|taken (similar term)
+expropriation|1
+(noun)|confiscation (generic term)|arrogation (generic term)
+expulsion|3
+(noun)|ejection|exclusion|riddance|banishment (generic term)|proscription (generic term)
+(noun)|extrusion|squeeze (generic term)|squeezing (generic term)
+(noun)|projection|ejection|forcing out|propulsion (generic term)|actuation (generic term)
+expunction|1
+(noun)|expunging|erasure|deletion (generic term)
+expunge|1
+(verb)|strike|scratch|excise|delete (generic term)|cancel (generic term)
+expunging|1
+(noun)|expunction|erasure|deletion (generic term)
+expurgate|1
+(verb)|bowdlerize|bowdlerise|castrate|shorten|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+expurgated|1
+(adj)|censored (similar term)
+expurgation|1
+(noun)|castration|deletion (generic term)
+expurgator|1
+(noun)|bowdlerizer|bowdleriser|editor (generic term)|editor in chief (generic term)
+exquisite|4
+(adj)|keen|intense (similar term)
+(adj)|recherche|elegant (similar term)
+(adj)|dainty|delicate (similar term)
+(adj)|beautiful (similar term)
+exquisitely|1
+(adv)|finely|fine|delicately
+exquisiteness|1
+(noun)|beauty (generic term)
+exsanguine|1
+(adj)|bloodless|exsanguinous|dead (similar term)
+exsanguinous|1
+(adj)|bloodless|exsanguine|dead (similar term)
+exsert|1
+(verb)|stretch out|put out|extend|hold out|stretch forth|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+exsiccate|1
+(verb)|dehydrate|dry up|desiccate|dry (generic term)|dry out (generic term)|hydrate (antonym)
+extant|1
+(adj)|living (similar term)|surviving (similar term)|living (similar term)|existent (related term)|existing (related term)|extinct (antonym)
+extemporaneous|1
+(adj)|ad-lib|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared (similar term)
+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 (similar term)
+extempore|2
+(adj)|ad-lib|extemporaneous|extemporary|impromptu|offhand|offhanded|off-the-cuff|unrehearsed|unprepared (similar term)
+(adv)|extemporaneously|extemporarily
+extemporisation|1
+(noun)|extemporization|improvisation|performance (generic term)
+extemporise|1
+(verb)|improvise|improvize|ad-lib|extemporize|perform (generic term)|execute (generic term)|do (generic term)
+extemporization|1
+(noun)|extemporisation|improvisation|performance (generic term)
+extemporize|2
+(verb)|improvise|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|improvise|improvize|ad-lib|extemporise|perform (generic term)|execute (generic term)|do (generic term)
+extend|17
+(verb)|widen|broaden|increase (generic term)
+(verb)|run|go|pass|lead|be (generic term)|extend to (related term)|run along (related term)
+(verb)|cover|continue|be (generic term)
+(verb)|offer|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|exsert|stretch out|put out|hold out|stretch forth|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|poke out|reach out|be (generic term)
+(verb)|offer|give (generic term)|pay (generic term)
+(verb)|stretch|tense (generic term)|strain (generic term)|tense up (generic term)
+(verb)|expand|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|prolong|protract|draw out|lengthen (generic term)
+(verb)|unfold|stretch|stretch out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|gallop|ride (generic term)|sit (generic term)
+(verb)|straighten (generic term)|straighten out (generic term)
+(verb)|strain|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|prolong (generic term)|protract (generic term)|extend (generic term)|draw out (generic term)
+(verb)|carry|continue (generic term)
+(verb)|stretch|increase (generic term)
+extend oneself|1
+(verb)|strive (generic term)|reach (generic term)|strain (generic term)
+extend to|1
+(verb)|reach|touch|be (generic term)|reach out (related term)|reach into (related term)
+extendable|1
+(adj)|extendible|long (similar term)
+extended|5
+(adj)|drawn-out|lengthy|prolonged|protracted|long (similar term)
+(adj)|outspread (similar term)|spread (similar term)|outstretched (similar term)|sprawly (similar term)|spread-eagle (similar term)|stretched (similar term)|unextended (antonym)
+(adj)|elongated|lengthened|prolonged|long (similar term)
+(adj)|figurative (similar term)|nonliteral (similar term)
+(adj)|extensive|large (similar term)|big (similar term)
+extended care facility|1
+(noun)|medical institution (generic term)
+extended family|1
+(noun)|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+extended order|1
+(noun)|military formation (generic term)
+extended time scale|1
+(noun)|slow time scale|time scale (generic term)
+extendible|1
+(adj)|extendable|long (similar term)
+extensible|1
+(adj)|extensile|protractile (similar term)|protractible (similar term)|protrusile (similar term)|protrusible (similar term)|nonextensile (antonym)
+extensile|1
+(adj)|extensible|protractile (similar term)|protractible (similar term)|protrusile (similar term)|protrusible (similar term)|nonextensile (antonym)
+extension|12
+(noun)|delay (generic term)|hold (generic term)|time lag (generic term)|postponement (generic term)|wait (generic term)
+(noun)|expansion (generic term)|enlargement (generic term)
+(noun)|propagation|dissemination (generic term)|airing (generic term)|public exposure (generic term)|spreading (generic term)
+(noun)|extension service|university extension|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+(noun)|stretching (generic term)|flexion (antonym)
+(noun)|filename extension|file name extension|string (generic term)
+(noun)|reference|denotation|meaning (generic term)|substance (generic term)
+(noun)|property (generic term)|dance (generic term)
+(noun)|lengthiness|prolongation|longness (generic term)
+(noun)|telephone extension|extension phone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+(noun)|elongation|addition (generic term)|add-on (generic term)|improver (generic term)
+(noun)|annex|annexe|wing|addition (generic term)|add-on (generic term)|improver (generic term)
+extension agent|1
+(noun)|county agent|agricultural agent|adviser (generic term)|advisor (generic term)|consultant (generic term)
+extension cord|1
+(noun)|cord (generic term)|electric cord (generic term)
+extension course|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+extension ladder|1
+(noun)|ladder (generic term)
+extension phone|1
+(noun)|extension|telephone extension|telephone (generic term)|phone (generic term)|telephone set (generic term)
+extension service|1
+(noun)|extension|university extension|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+extensional|1
+(adj)|denotative (similar term)|denotive (similar term)
+extensive|3
+(adj)|extended|large (similar term)|big (similar term)
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|panoptic|wide|comprehensive (similar term)
+(adj)|intensive (antonym)
+extensiveness|1
+(noun)|largeness|magnitude (generic term)
+extensor|1
+(noun)|extensor muscle|skeletal muscle (generic term)|striated muscle (generic term)|flexor (antonym)
+extensor muscle|1
+(noun)|extensor|skeletal muscle (generic term)|striated muscle (generic term)|flexor (antonym)
+extent|2
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|magnitude (generic term)
+extenuate|1
+(verb)|palliate|mitigate|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+extenuating|1
+(adj)|exculpatory (similar term)
+extenuation|2
+(noun)|mitigation|excuse (generic term)|alibi (generic term)|exculpation (generic term)|self-justification (generic term)
+(noun)|mitigation|palliation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+exterior|3
+(adj)|out (similar term)|outside (similar term)|outdoor (related term)|out-of-door (related term)|outside (related term)|interior (antonym)
+(noun)|outside|region (generic term)|part (generic term)|inside (antonym)
+(noun)|outside|surface (generic term)|inside (antonym)
+exterior angle|1
+(noun)|external angle|angle (generic term)
+exterior door|1
+(noun)|outside door|doorway (generic term)|door (generic term)|room access (generic term)|threshold (generic term)
+exteriorisation|1
+(noun)|externalization|externalisation|exteriorization|objectification (generic term)
+exteriorise|1
+(verb)|exteriorize|externalize|externalise|objectify|change (generic term)|alter (generic term)|modify (generic term)
+exteriorization|1
+(noun)|externalization|externalisation|exteriorisation|objectification (generic term)
+exteriorize|2
+(verb)|bring outside|move (generic term)|displace (generic term)
+(verb)|exteriorise|externalize|externalise|objectify|change (generic term)|alter (generic term)|modify (generic term)
+exterminable|1
+(adj)|extirpable|eradicable (similar term)
+exterminate|2
+(verb)|kill off|kill (generic term)
+(verb)|uproot|eradicate|extirpate|root out|destroy (generic term)|destruct (generic term)
+exterminated|1
+(adj)|annihilated|wiped out|destroyed (similar term)
+extermination|2
+(noun)|extinction|annihilation (generic term)|disintegration (generic term)
+(noun)|liquidation|destruction (generic term)|devastation (generic term)
+exterminator|1
+(noun)|terminator|eradicator|killer (generic term)|slayer (generic term)
+extern|1
+(noun)|medical extern|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+external|5
+(adj)|outer (similar term)|outside (similar term)|outside (related term)|internal (antonym)
+(adj)|extraneous|outside|extrinsic (similar term)
+(adj)|international|outside|foreign (similar term)
+(adj)|outward (similar term)
+(noun)|feature (generic term)|characteristic (generic term)
+external-combustion engine|1
+(noun)|heat engine (generic term)
+external angle|1
+(noun)|exterior angle|angle (generic term)
+external auditory canal|1
+(noun)|auditory meatus|acoustic meatus|ear canal|auditory canal|meatus (generic term)
+external body part|1
+(noun)|body part (generic term)
+external carotid|1
+(noun)|external carotid artery|carotid artery (generic term)|arteria carotis (generic term)
+external carotid artery|1
+(noun)|external carotid|carotid artery (generic term)|arteria carotis (generic term)
+external drive|1
+(noun)|drive (generic term)
+external ear|1
+(noun)|outer ear|external organ (generic term)
+external gill|1
+(noun)|gill (generic term)|branchia (generic term)
+external iliac artery|1
+(noun)|iliac artery (generic term)|arteria iliaca (generic term)
+external iliac vein|1
+(noun)|iliac vein (generic term)|vena iliaca (generic term)
+external jugular vein|1
+(noun)|jugular vein (generic term)|vena jugularis (generic term)|jugular (generic term)
+external maxillary artery|1
+(noun)|facial artery|arteria facialis|maxillary artery (generic term)|arteria maxillaris (generic term)
+external nasal vein|1
+(noun)|vena nasalis externa|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+external oblique muscle|1
+(noun)|musculus obliquus externus abdominis|abdominal external oblique muscle|oblique|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+external organ|1
+(noun)|organ (generic term)
+external orifice|1
+(noun)|urethral orifice|orifice (generic term)|opening (generic term)|porta (generic term)
+external respiration|1
+(noun)|breathing|respiration|ventilation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+external storage|1
+(noun)|auxiliary storage|secondary storage|memory device (generic term)|storage device (generic term)
+externalisation|2
+(noun)|externalization|attribution (generic term)|ascription (generic term)
+(noun)|externalization|exteriorization|exteriorisation|objectification (generic term)
+externalise|2
+(verb)|project|externalize|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|exteriorize|exteriorise|externalize|objectify|change (generic term)|alter (generic term)|modify (generic term)
+externality|1
+(noun)|outwardness|position (generic term)|spatial relation (generic term)|inwardness (antonym)
+externalization|2
+(noun)|externalisation|attribution (generic term)|ascription (generic term)
+(noun)|externalisation|exteriorization|exteriorisation|objectification (generic term)
+externalize|2
+(verb)|project|externalise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|exteriorize|exteriorise|externalise|objectify|change (generic term)|alter (generic term)|modify (generic term)
+externally|2
+(adv)|internally (antonym)
+(adv)|outwardly
+exteroception|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+exteroceptive|1
+(adj)|sensitivity|sensitiveness|sensibility (related term)
+exteroceptor|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+exterritorial|1
+(adj)|extraterritorial|territorial (antonym)
+extinct|3
+(adj)|nonextant|dead (similar term)|nonexistent (related term)|extant (antonym)
+(adj)|dead (similar term)|active (antonym)
+(adj)|out|dead (similar term)
+extinction|6
+(noun)|defunctness|death (generic term)
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|extermination|annihilation (generic term)|disintegration (generic term)
+(noun)|experimental extinction|conditioning (generic term)
+(noun)|extinguishing|quenching|termination (generic term)|ending (generic term)|conclusion (generic term)
+extinction angle|1
+(noun)|angle of extinction|angle (generic term)
+extinguish|4
+(verb)|snuff out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+(verb)|snuff out|blow out|quench|ignite (antonym)
+(verb)|stub out|crush out|press out|end (generic term)|terminate (generic term)
+(verb)|eliminate|annihilate|eradicate|wipe out|decimate|carry off|kill (generic term)
+extinguishable|1
+(adj)|inextinguishable (antonym)
+extinguished|1
+(adj)|destroyed (similar term)
+extinguisher|1
+(noun)|fire extinguisher|asphyxiator|device (generic term)
+extinguishing|1
+(noun)|extinction|quenching|termination (generic term)|ending (generic term)|conclusion (generic term)
+extirpable|1
+(adj)|exterminable|eradicable (similar term)
+extirpate|3
+(verb)|uproot|eradicate|root out|exterminate|destroy (generic term)|destruct (generic term)
+(verb)|uproot|deracinate|root out|move (generic term)|displace (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+extirpation|2
+(noun)|ablation|cutting out|excision|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|excision|deracination|pull (generic term)|pulling (generic term)
+extol|1
+(verb)|laud|exalt|glorify|proclaim|praise (generic term)
+extoller|1
+(noun)|laudator|lauder|communicator (generic term)
+extolment|1
+(noun)|praise|congratulations|kudos|approval (generic term)|commendation (generic term)
+extort|3
+(verb)|take (generic term)
+(verb)|squeeze|rack|gouge|wring|overcharge (generic term)|soak (generic term)|surcharge (generic term)|gazump (generic term)|fleece (generic term)|plume (generic term)|pluck (generic term)|rob (generic term)|hook (generic term)
+(verb)|wring from|obtain (generic term)
+extortion|3
+(noun)|overcharge (generic term)
+(noun)|exaction (generic term)
+(noun)|felony (generic term)
+extortionate|1
+(adj)|exorbitant|outrageous|steep|unconscionable|usurious|immoderate (similar term)
+extortionately|1
+(adv)|exorbitantly|usuriously
+extortioner|1
+(noun)|blackmailer|extortionist|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+extortionist|1
+(noun)|blackmailer|extortioner|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+extra|6
+(adj)|excess|redundant|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+(adj)|special|unscheduled (similar term)
+(adj)|additional|additive (similar term)
+(noun)|supernumerary|spear carrier|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|edition (generic term)
+(noun)|duplicate|artifact (generic term)|artefact (generic term)
+extra dividend|1
+(noun)|dividend (generic term)
+extra innings|1
+(noun)|overtime (generic term)|extra time (generic term)
+extra large|1
+(noun)|size (generic term)
+extra point|1
+(noun)|point after|point after touchdown|conversion (generic term)|point (generic term)
+extra time|1
+(noun)|overtime|time period (generic term)|period of time (generic term)|period (generic term)|regulation time (antonym)
+extracellular|1
+(adj)|living thing|animate thing (related term)|intracellular (antonym)
+extracellular fluid|1
+(noun)|ECF|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+extract|10
+(noun)|infusion|solution (generic term)
+(noun)|excerpt|excerption|selection|passage (generic term)
+(verb)|pull out|pull|pull up|take out|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|obtain (generic term)
+(verb)|educe|evoke|elicit|draw out|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|distill|distil|make (generic term)|create (generic term)
+(verb)|separate (generic term)
+(verb)|press out|express|get (generic term)|acquire (generic term)
+(verb)|excerpt|take out|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+extractable|1
+(adj)|extractible|removable (similar term)
+extractible|1
+(adj)|extractable|removable (similar term)
+extraction|3
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|origin|descent|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+(noun)|removal (generic term)|remotion (generic term)
+extractor|3
+(noun)|instrument (generic term)
+(noun)|centrifuge|separator|apparatus (generic term)|setup (generic term)
+(noun)|cartridge extractor|cartridge remover|mechanism (generic term)
+extracurricular|2
+(adj)|outside (similar term)
+(adj)|adulterous|extramarital|illicit (similar term)
+extracurricular activity|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+extradite|1
+(verb)|deliver|deport|expel (generic term)|throw out (generic term)|kick out (generic term)
+extradition|1
+(noun)|surrender (generic term)
+extrados|1
+(noun)|curve (generic term)|curved shape (generic term)
+extradural|1
+(adj)|epidural|meninx|meninges (related term)
+extragalactic|1
+(adj)|collection|aggregation|accumulation|assemblage (related term)
+extragalactic nebula|1
+(noun)|galaxy|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+extrajudicial|1
+(adj)|illegal (similar term)
+extralegal|1
+(adj)|nonlegal|illegal (similar term)
+extralinguistic|1
+(adj)|communication (related term)
+extramarital|1
+(adj)|adulterous|extracurricular|illicit (similar term)
+extramarital sex|1
+(noun)|free love|unlawful carnal knowledge (generic term)|criminal congress (generic term)
+extramural|1
+(adj)|intercollegiate (similar term)|intermural (similar term)|interscholastic (similar term)|interschool (similar term)|outside (similar term)|intramural (antonym)
+extraneous|4
+(adj)|immaterial|impertinent|orthogonal|irrelevant (similar term)
+(adj)|extrinsic (similar term)
+(adj)|foreign|adulterating (similar term)|adulterant (similar term)
+(adj)|external|outside|extrinsic (similar term)
+extraneousness|1
+(noun)|unrelatedness (generic term)
+extraordinarily|1
+(adv)|inordinately
+extraordinariness|1
+(noun)|quality (generic term)|ordinariness (antonym)
+extraordinary|3
+(adj)|bonzer (similar term)|exceeding (similar term)|exceptional (similar term)|olympian (similar term)|prodigious (similar term)|surpassing (similar term)|extraorinaire (similar term)|fantastic (similar term)|grand (similar term)|howling (similar term)|marvelous (similar term)|marvellous (similar term)|rattling (similar term)|terrific (similar term)|tremendous (similar term)|wonderful (similar term)|wondrous (similar term)|fantastic (similar term)|phenomenal (similar term)|frightful (similar term)|terrible (similar term)|awful (similar term)|tremendous (similar term)|great (similar term)|one (similar term)|preternatural (similar term)|uncanny (similar term)|pyrotechnic (similar term)|rare (similar term)|uncommon (similar term)|remarkable (similar term)|singular (similar term)|some (similar term)|special (similar term)|wonderworking (similar term)|incomparable (related term)|uncomparable (related term)|uncommon (related term)|unusual (related term)|ordinary (antonym)
+(adj)|over-the-top|sinful|immoderate (similar term)
+(adj)|unusual (similar term)
+extraorinaire|1
+(adj)|extraordinary (similar term)
+extrapolate|3
+(verb)|generalize|generalise|infer|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|interpolate|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|deduce (generic term)|infer (generic term)|deduct (generic term)|derive (generic term)
+extrapolation|2
+(noun)|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|inference (generic term)|illation (generic term)
+extrasensory|1
+(adj)|paranormal|clairvoyant (similar term)|telegnostic (similar term)|telepathic (similar term)|paranormal (related term)|sensory (antonym)
+extrasensory perception|1
+(noun)|clairvoyance|second sight|E.S.P.|ESP|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+extrasystole|1
+(noun)|systole (generic term)
+extrasystolic|1
+(adj)|systole (related term)
+extraterrestrial|2
+(adj)|terrestrial planet (related term)
+(noun)|extraterrestrial being|alien|hypothetical creature (generic term)
+extraterrestrial being|1
+(noun)|extraterrestrial|alien|hypothetical creature (generic term)
+extraterrestrial object|1
+(noun)|estraterrestrial body|natural object (generic term)
+extraterritorial|1
+(adj)|exterritorial|territorial (antonym)
+extrauterine gestation|1
+(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|eccyesis|metacyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+extrauterine pregnancy|1
+(noun)|ectopic pregnancy|ectopic gestation|extrauterine gestation|eccyesis|metacyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+extravagance|3
+(noun)|extravagancy|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+(noun)|prodigality|profligacy|improvidence (generic term)|shortsightedness (generic term)
+(noun)|prodigality|lavishness|highlife|high life|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+extravagancy|1
+(noun)|extravagance|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+extravagant|2
+(adj)|excessive|exuberant|overweening|unrestrained (similar term)
+(adj)|prodigal|profligate|spendthrift|wasteful (similar term)
+extravagantly|3
+(adv)|abundantly|copiously|profusely
+(adv)|lavishly
+(adv)|lavishly|richly
+extravaganza|1
+(noun)|entertainment (generic term)|amusement (generic term)
+extravasate|3
+(verb)|squirt (generic term)|force out (generic term)|squeeze out (generic term)|eject (generic term)
+(verb)|erupt|belch|explode (generic term)|burst (generic term)
+(verb)|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+extravasation|3
+(noun)|liquid (generic term)
+(noun)|eruption|eructation|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+extraversion|1
+(noun)|extroversion|sociability (generic term)|sociableness (generic term)|introversion (antonym)|ambiversion (antonym)
+extraversive|1
+(adj)|extroversive|extrovert (similar term)|extravert (similar term)|extroverted (similar term)|extraverted (similar term)|extrovertive (similar term)|extravertive (similar term)|extrovertish (similar term)|sociable (related term)|ambiversive (antonym)|introversive (antonym)
+extravert|2
+(adj)|extrovert|extroverted|extraverted|extrovertive|extravertive|extroversive (similar term)|extraversive (similar term)
+(noun)|extrovert|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|introvert (antonym)
+extraverted|1
+(adj)|extrovert|extravert|extroverted|extrovertive|extravertive|extroversive (similar term)|extraversive (similar term)
+extravertive|1
+(adj)|extrovert|extravert|extroverted|extraverted|extrovertive|extroversive (similar term)|extraversive (similar term)
+extreme|5
+(adj)|utmost|uttermost|intense (similar term)
+(adj)|immoderate (similar term)
+(adj)|distant (similar term)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|extreme point|extremum|extremity (generic term)
+extreme point|1
+(noun)|extreme|extremum|extremity (generic term)
+extreme right-winger|1
+(noun)|reactionary|ultraconservative|conservative (generic term)|conservativist (generic term)
+extreme unction|1
+(noun)|anointing of the sick|last rites|sacrament (generic term)
+extremely|3
+(adv)|highly
+(adv)|super
+(adv)|exceedingly|passing
+extremely high frequency|1
+(noun)|EHF|radio frequency (generic term)
+extremely low frequency|1
+(noun)|ELF|radio frequency (generic term)
+extremeness|1
+(noun)|quality (generic term)
+extremism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+extremist|2
+(adj)|radical|ultra|immoderate (similar term)
+(noun)|radical (generic term)
+extremity|5
+(noun)|appendage|member|external body part (generic term)
+(noun)|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|ultimacy (generic term)|ultimateness (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|external body part (generic term)
+extremum|2
+(noun)|extreme point|extreme|extremity (generic term)
+(noun)|peak|limit (generic term)|limitation (generic term)
+extricable|1
+(adj)|inextricable (antonym)
+extricate|1
+(verb)|untangle|disentangle|disencumber|free (generic term)|disengage (generic term)
+extricated|1
+(adj)|disentangled|freed|free (similar term)
+extrication|1
+(noun)|unsnarling|untangling|disentanglement|liberation (generic term)|release (generic term)|freeing (generic term)
+extrinsic|1
+(adj)|accidental (similar term)|adventitious (similar term)|adscititious (similar term)|alien (similar term)|foreign (similar term)|external (similar term)|extraneous (similar term)|outside (similar term)|extraneous (similar term)|inessential (related term)|unessential (related term)|intrinsic (antonym)
+extrinsic fraud|1
+(noun)|collateral fraud|fraud (generic term)
+extropic|1
+(adj)|prediction|foretelling|forecasting|prognostication (related term)
+extropy|1
+(noun)|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+extrospective|1
+(adj)|extroverted|introspective (antonym)
+extroversion|1
+(noun)|extraversion|sociability (generic term)|sociableness (generic term)|introversion (antonym)|ambiversion (antonym)
+extroversive|1
+(adj)|extraversive|extrovert (similar term)|extravert (similar term)|extroverted (similar term)|extraverted (similar term)|extrovertive (similar term)|extravertive (similar term)|extrovertish (similar term)|sociable (related term)|ambiversive (antonym)|introversive (antonym)
+extrovert|2
+(adj)|extravert|extroverted|extraverted|extrovertive|extravertive|extroversive (similar term)|extraversive (similar term)
+(noun)|extravert|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|introvert (antonym)
+extroverted|3
+(adj)|extrospective|introspective (antonym)
+(adj)|forthcoming|outgoing|sociable (similar term)
+(adj)|extrovert|extravert|extraverted|extrovertive|extravertive|extroversive (similar term)|extraversive (similar term)
+extrovertish|1
+(adj)|extroversive (similar term)|extraversive (similar term)
+extrovertive|1
+(adj)|extrovert|extravert|extroverted|extraverted|extravertive|extroversive (similar term)|extraversive (similar term)
+extrude|1
+(verb)|squeeze out|produce (generic term)|make (generic term)|create (generic term)
+extrusion|2
+(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|excrescence|projection (generic term)
+(noun)|expulsion|squeeze (generic term)|squeezing (generic term)
+extrusive|1
+(adj)|volcanic (similar term)|intrusive (antonym)
+exuberance|2
+(noun)|enthusiasm (generic term)|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+(noun)|enthusiasm|ebullience|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+exuberant|3
+(adj)|ebullient|high-spirited|spirited (similar term)
+(adj)|excessive|extravagant|overweening|unrestrained (similar term)
+(adj)|lush|luxuriant|profuse|riotous|abundant (similar term)
+exuberantly|2
+(adv)|riotously
+(adv)|ebulliently|expansively
+exuberate|1
+(verb)|exult|rejoice|triumph|jubilate|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+exudate|2
+(noun)|exudation|discharge (generic term)|emission (generic term)
+(verb)|exude|transude|ooze out|ooze|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+exudation|2
+(noun)|exudate|discharge (generic term)|emission (generic term)
+(noun)|transudation|seepage (generic term)|ooze (generic term)|oozing (generic term)
+exude|2
+(verb)|exudate|transude|ooze out|ooze|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+exult|2
+(verb)|walk on air|be on cloud nine|jump for joy|rejoice (generic term)|joy (generic term)
+(verb)|exuberate|rejoice|triumph|jubilate|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+exultant|1
+(adj)|exulting|jubilant|prideful|rejoicing|triumphal|triumphant|elated (similar term)
+exultantly|1
+(adv)|exultingly
+exultation|2
+(noun)|jubilance|jubilancy|jubilation|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+(noun)|rejoicing|jubilation|utterance (generic term)|vocalization (generic term)
+exulting|1
+(adj)|exultant|jubilant|prideful|rejoicing|triumphal|triumphant|elated (similar term)
+exultingly|1
+(adv)|exultantly
+exurbia|1
+(noun)|residential district (generic term)|residential area (generic term)|community (generic term)
+exuviae|1
+(noun)|body covering (generic term)
+exuvial|1
+(adj)|body covering (related term)
+exuviate|1
+(verb)|shed|molt|moult|slough|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+exwife|1
+(noun)|ex|woman (generic term)|adult female (generic term)
+eyas|1
+(noun)|hawk (generic term)
+eyck|1
+(noun)|Eyck|van Eyck|Jan van Eyck|old master (generic term)
+eye|6
+(noun)|oculus|optic|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+(noun)|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|attention (generic term)|attending (generic term)
+(noun)|center|centre|middle|heart|area (generic term)|country (generic term)
+(noun)|hole (generic term)
+(verb)|eyeball|look (generic term)
+eye-beaming|1
+(noun)|glance (generic term)|glimpse (generic term)|coup d'oeil (generic term)
+eye-catcher|1
+(noun)|center (generic term)|center of attention (generic term)
+eye-catching|1
+(adj)|attention-getting|conspicuous (similar term)
+eye-deceiving|1
+(adj)|trompe-l'oeil|unreal (similar term)
+eye-drop|1
+(noun)|eyedrop|drop (generic term)|drib (generic term)|driblet (generic term)
+eye-lotion|1
+(noun)|eyewash|collyrium|lotion (generic term)|application (generic term)
+eye-popping|1
+(adj)|dazzling|fulgurant|fulgurous|impressive (similar term)
+eye bank|1
+(noun)|bank (generic term)
+eye blink|1
+(noun)|blink|blinking|wink|winking|nictitation|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+eye candy|1
+(noun)|visual percept (generic term)|visual image (generic term)
+eye chart|1
+(noun)|chart (generic term)
+eye clinic|1
+(noun)|clinic (generic term)
+eye condition|1
+(noun)|condition (generic term)|status (generic term)
+eye contact|2
+(noun)|visual communication (generic term)
+(noun)|contact (generic term)
+eye cup|1
+(noun)|eyecup|eyebath|vessel (generic term)
+eye dialect|1
+(noun)|dialect (generic term)|idiom (generic term)|accent (generic term)
+eye disease|1
+(noun)|disease (generic term)
+eye doctor|1
+(noun)|ophthalmologist|oculist|specialist (generic term)|medical specialist (generic term)
+eye dropper|1
+(noun)|dropper|pipet (generic term)|pipette (generic term)
+eye infection|1
+(noun)|sty|stye|hordeolum|infection (generic term)
+eye mask|1
+(noun)|domino|half mask|mask (generic term)
+eye movement|1
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+eye muscle|1
+(noun)|ocular muscle|muscle (generic term)|musculus (generic term)
+eye of ra|1
+(noun)|Sekhet|Eye of Ra|Egyptian deity (generic term)
+eye opener|2
+(noun)|drink (generic term)
+(noun)|surprise (generic term)
+eye rhyme|1
+(noun)|rhyme (generic term)|rime (generic term)
+eye socket|1
+(noun)|orbit|cranial orbit|orbital cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+eye tooth|1
+(noun)|canine|canine tooth|eyetooth|dogtooth|cuspid|tooth (generic term)
+eyeball|2
+(noun)|orb|capsule (generic term)
+(verb)|eye|look (generic term)
+eyebath|1
+(noun)|eyecup|eye cup|vessel (generic term)
+eyebrow|1
+(noun)|brow|supercilium|hair (generic term)
+eyebrow pencil|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+eyecup|2
+(noun)|eyebath|eye cup|vessel (generic term)
+(noun)|optic cup|calyculus (generic term)|caliculus (generic term)|calycle (generic term)
+eyed|1
+(adj)|almond-eyed (similar term)|blue-eyed (similar term)|eyelike (similar term)|keen-eyed (similar term)|sharp-eyed (similar term)|left-eyed (similar term)|one-eyed (similar term)|ox-eyed (similar term)|popeyed (similar term)|purple-eyed (similar term)|right-eyed (similar term)|saucer-eyed (similar term)|round-eyed (similar term)|skew-eyed (similar term)|eyeless (antonym)
+eyedness|1
+(noun)|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+eyedrop|1
+(noun)|eye-drop|drop (generic term)|drib (generic term)|driblet (generic term)
+eyeful|2
+(noun)|woman (generic term)|adult female (generic term)
+(noun)|view (generic term)|survey (generic term)|sight (generic term)
+eyeglass|1
+(noun)|monocle|lens (generic term)|lense (generic term)|lens system (generic term)
+eyeglass wearer|1
+(noun)|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+eyeglasses|1
+(noun)|spectacles|specs|glasses|optical instrument (generic term)
+eyehole|2
+(noun)|peephole|spyhole|hole (generic term)
+(noun)|eyelet|hole (generic term)
+eyeish|1
+(noun)|Eyeish|Caddo (generic term)
+eyelash|1
+(noun)|lash|cilium|hair (generic term)
+eyeless|2
+(adj)|eyed (antonym)
+(adj)|sightless|unseeing|blind (similar term)|unsighted (similar term)
+eyelessness|1
+(noun)|blindness (generic term)|sightlessness (generic term)|cecity (generic term)
+eyelet|2
+(noun)|eyehole|hole (generic term)
+(noun)|cringle|loop|grommet|grummet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+eyelid|1
+(noun)|lid|palpebra|protective fold (generic term)
+eyelike|1
+(adj)|eyed (similar term)
+eyeliner|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+eyepatch|1
+(noun)|patch|cloth covering (generic term)
+eyepiece|1
+(noun)|ocular|lens (generic term)|lense (generic term)|lens system (generic term)
+eyes|1
+(noun)|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+eyes-only|1
+(adj)|classified (similar term)
+eyeshade|1
+(noun)|bill|peak|visor|vizor|brim (generic term)
+eyeshadow|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+eyeshot|1
+(noun)|view|range (generic term)|reach (generic term)
+eyesight|1
+(noun)|seeing|sightedness|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+eyesore|1
+(noun)|ugliness (generic term)
+eyespot|1
+(noun)|ocellus|marking (generic term)
+eyestrain|1
+(noun)|asthenopia|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+eyetooth|1
+(noun)|canine|canine tooth|eye tooth|dogtooth|cuspid|tooth (generic term)
+eyewash|1
+(noun)|eye-lotion|collyrium|lotion (generic term)|application (generic term)
+eyewitness|2
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+(verb)|witness (generic term)
+eyra|1
+(noun)|jaguarundi|jaguarundi cat|jaguarondi|Felis yagouaroundi|wildcat (generic term)
+eyre|1
+(noun)|Eyre|Lake Eyre|lake (generic term)
+eyre peninsula|1
+(noun)|Eyre Peninsula|peninsula (generic term)
+eyrie|2
+(noun)|aerie|aery|eyry|bird's nest (generic term)|bird nest (generic term)|birdnest (generic term)
+(noun)|aerie|aery|eyry|habitation (generic term)
+eyrir|1
+(noun)|Icelandic monetary unit (generic term)
+eyry|2
+(noun)|aerie|aery|eyrie|bird's nest (generic term)|bird nest (generic term)|birdnest (generic term)
+(noun)|aerie|aery|eyrie|habitation (generic term)
+eysenck|1
+(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist (generic term)
+eysenck personality inventory|1
+(noun)|Eysenck Personality Inventory|EPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+ezechiel|2
+(noun)|Ezekiel|Ezechiel|prophet (generic term)
+(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book (generic term)
+ezed|1
+(noun)|Z|letter z|zee|zed|izzard|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+ezekias|1
+(noun)|Hezekiah|Ezekias|king (generic term)|male monarch (generic term)|Rex (generic term)
+ezekiel|2
+(noun)|Ezekiel|Ezechiel|prophet (generic term)
+(noun)|Ezekiel|Ezechiel|Book of Ezekiel|book (generic term)
+ezo|1
+(noun)|Hokkaido|Ezo|Yezo|island (generic term)
+ezo-yama-hagi|1
+(noun)|bicolor lespediza|Lespedeza bicolor|bush clover (generic term)|lespedeza (generic term)
+ezra|2
+(noun)|Ezra|priest (generic term)|non-Christian priest (generic term)|copyist (generic term)|scribe (generic term)|scrivener (generic term)
+(noun)|Ezra|Book of Ezra|book (generic term)
+ezra cornell|1
+(noun)|Cornell|Ezra Cornell|businessman (generic term)|man of affairs (generic term)|philanthropist (generic term)|altruist (generic term)
+ezra loomis pound|1
+(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer (generic term)|author (generic term)|poet (generic term)
+ezra pound|1
+(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer (generic term)|author (generic term)|poet (generic term)
+f|4
+(noun)|degree Fahrenheit|F|degree (generic term)
+(noun)|fluorine|F|atomic number 9|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+(noun)|farad|F|capacitance unit (generic term)
+(noun)|F|letter f|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+f. g. banting|1
+(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist (generic term)
+f. scott fitzgerald|1
+(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer (generic term)|author (generic term)
+f.i.s.c.|1
+(noun)|Foreign Intelligence Surveillance Court|F.I.S.C.|court (generic term)|tribunal (generic term)|judicature (generic term)
+f clef|1
+(noun)|bass clef|F clef|clef (generic term)
+f layer|1
+(noun)|Appleton layer|F layer|F region|region (generic term)|part (generic term)
+f number|1
+(noun)|focal ratio|stop number|speed|ratio (generic term)
+f region|1
+(noun)|Appleton layer|F layer|F region|region (generic term)|part (generic term)
+fa|1
+(noun)|solfa syllable (generic term)
+fa la|1
+(noun)|fal la|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+faa|1
+(noun)|Federal Aviation Agency|FAA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+fab|1
+(adj)|fabulous|pleasing (similar term)
+fabaceae|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family (generic term)
+faberge|1
+(noun)|Faberge|Peter Carl Faberge|goldsmith (generic term)|goldworker (generic term)|gold-worker (generic term)
+fabian|3
+(adj)|Fabian|socialism (related term)
+(adj)|dilatory|cautious (similar term)
+(noun)|Fabian|socialist (generic term)
+fabian society|1
+(noun)|Fabian Society|association (generic term)
+fabiana|1
+(noun)|Fabiana|genus Fabiana|asterid dicot genus (generic term)
+fabiana imbricata|1
+(noun)|pichi|Fabiana imbricata|shrub (generic term)|bush (generic term)
+fabianism|1
+(noun)|Fabianism|socialism (generic term)
+fable|3
+(noun)|fabrication|fiction|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|parable|allegory|apologue|story (generic term)
+(noun)|legend|story (generic term)
+fabled|1
+(adj)|legendary|unreal (similar term)
+fabric|2
+(noun)|cloth|material|textile|artifact (generic term)|artefact (generic term)
+(noun)|framework|structure (generic term)
+fabricate|2
+(verb)|manufacture|construct|make (generic term)
+(verb)|manufacture|cook up|make up|invent|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+fabricated|1
+(adj)|fancied|fictional|fictitious|invented|made-up|unreal (similar term)
+fabrication|5
+(noun)|fiction|fable|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|fictionalization|fictionalisation|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+(noun)|manufacture|creating from raw materials (generic term)
+(noun)|assembly|construction (generic term)|building (generic term)|disassembly (antonym)
+(noun)|lying|prevarication|falsification (generic term)|misrepresentaation (generic term)
+fabricator|1
+(noun)|storyteller|fibber|liar (generic term)|prevaricator (generic term)
+fabulist|1
+(noun)|narrator (generic term)|storyteller (generic term)|teller (generic term)
+fabulous|3
+(adj)|fab|pleasing (similar term)
+(adj)|mythic|mythical|mythologic|mythological|unreal (similar term)
+(adj)|incredible (similar term)|unbelievable (similar term)
+fabulously|1
+(adv)|fantastically
+facade|2
+(noun)|frontage|frontal|front (generic term)
+(noun)|window dressing|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+face|22
+(noun)|human face|external body part (generic term)
+(noun)|expression|look|aspect|facial expression|countenance (generic term)|visage (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|surface (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|side|surface (generic term)
+(noun)|external body part (generic term)
+(noun)|front (generic term)
+(noun)|grimace|facial expression (generic term)|facial gesture (generic term)
+(noun)|font|fount|typeface|type (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|boldness|nerve|brass|cheek|aggressiveness (generic term)
+(noun)|vertical surface (generic term)
+(verb)|confront|face up|set about (generic term)|go about (generic term)|approach (generic term)|avoid (antonym)
+(verb)|confront|meet (generic term)|encounter (generic term)|play (generic term)|take on (generic term)|face off (related term)
+(verb)|front|look|lie (generic term)|back (antonym)
+(verb)|be (generic term)
+(verb)|turn (generic term)
+(verb)|confront|present
+(verb)|disclose (generic term)|expose (generic term)
+(verb)|line (generic term)
+(verb)|cover (generic term)
+face-amount certificate company|1
+(noun)|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+face-harden|1
+(verb)|harden (generic term)|indurate (generic term)
+face-lift|1
+(verb)|lift|operate on (generic term)|operate (generic term)
+face-off|2
+(noun)|confrontation|encounter|showdown|disagreement (generic term)
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)
+face-saving|1
+(adj)|helpful (similar term)
+face-to-face|2
+(adj)|personal (similar term)
+(adv)|opposite
+face angle|1
+(noun)|angle (generic term)
+face card|1
+(noun)|picture card|court card|playing card (generic term)
+face cloth|1
+(noun)|washcloth|washrag|flannel|bath linen (generic term)
+face cream|1
+(noun)|cold cream|coldcream|vanishing cream|cream (generic term)|ointment (generic term)|emollient (generic term)
+face fungus|1
+(noun)|beard|whiskers|hair (generic term)
+face guard|1
+(noun)|face mask (generic term)
+face lift|2
+(noun)|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+(noun)|facelift|face lifting|renovation (generic term)|redevelopment (generic term)|overhaul (generic term)
+face lifting|2
+(noun)|face lift|facelift|renovation (generic term)|redevelopment (generic term)|overhaul (generic term)
+(noun)|face lift|facelift|lift|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+face mask|1
+(noun)|mask (generic term)
+face off|1
+(verb)|bully off|play (generic term)
+face pack|1
+(noun)|pack|corrective (generic term)|restorative (generic term)
+face powder|1
+(noun)|powder (generic term)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+face recognition|2
+(noun)|facial recognition|automatic face recognition|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+(noun)|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+face saver|1
+(noun)|face saving|accomplishment (generic term)|achievement (generic term)
+face saving|1
+(noun)|face saver|accomplishment (generic term)|achievement (generic term)
+face soap|1
+(noun)|toilet soap|bath soap|soap (generic term)
+face the music|1
+(verb)|carry-the can|bear (generic term)|take over (generic term)|accept (generic term)|assume (generic term)
+face towel|1
+(noun)|hand towel|towel (generic term)
+face up|1
+(verb)|confront|face|set about (generic term)|go about (generic term)|approach (generic term)|avoid (antonym)
+face value|2
+(noun)|par value|nominal value|value (generic term)
+(noun)|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+face veil|1
+(noun)|head covering (generic term)|veil (generic term)
+faced|1
+(adj)|baby-faced (similar term)|bald-faced (similar term)|featured (similar term)|Janus-faced (similar term)|two-faced (similar term)|long-faced (similar term)|moon-faced (similar term)|round-faced (similar term)|pale-faced (similar term)|pug-faced (similar term)|sad-faced (similar term)|sweet-faced (similar term)|visaged (similar term)|faceless (antonym)
+faceless|1
+(adj)|anonymous (similar term)|faced (antonym)
+facelift|2
+(noun)|face lift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+(noun)|face lift|face lifting|renovation (generic term)|redevelopment (generic term)|overhaul (generic term)
+faceplate|1
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+facer|1
+(noun)|difficulty (generic term)
+facet|2
+(noun)|aspect|feature (generic term)|characteristic (generic term)
+(noun)|subfigure (generic term)
+facet plane|1
+(noun)|plane (generic term)|sheet (generic term)
+faceted|1
+(adj)|unfaceted (antonym)
+facetious|1
+(adj)|bantering|tongue-in-cheek|humorous (similar term)|humourous (similar term)
+facetiously|1
+(adv)|jokingly|tongue-in-cheek
+facetiousness|1
+(noun)|playfulness (generic term)|fun (generic term)
+facia|1
+(noun)|fascia|connective tissue (generic term)
+facial|4
+(adj)|external body part (related term)
+(adj)|surface (related term)
+(noun)|facial nerve|nervus facialis|seventh cranial nerve|cranial nerve (generic term)
+(noun)|skin care (generic term)|skincare (generic term)|beauty treatment (generic term)
+facial artery|1
+(noun)|arteria facialis|external maxillary artery|maxillary artery (generic term)|arteria maxillaris (generic term)
+facial expression|2
+(noun)|facial gesture|gesture (generic term)|motion (generic term)
+(noun)|expression|look|aspect|face|countenance (generic term)|visage (generic term)
+facial gesture|1
+(noun)|facial expression|gesture (generic term)|motion (generic term)
+facial index|1
+(noun)|ratio (generic term)
+facial muscle|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+facial nerve|1
+(noun)|facial|nervus facialis|seventh cranial nerve|cranial nerve (generic term)
+facial profiling|1
+(noun)|identification (generic term)
+facial recognition|1
+(noun)|face recognition|automatic face recognition|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+facial tissue|1
+(noun)|tissue (generic term)|tissue paper (generic term)
+facial vein|1
+(noun)|vena facialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+facile|3
+(adj)|superficial (similar term)
+(adj)|effortless (similar term)
+(adj)|eloquent|fluent|silver|silver-tongued|smooth-spoken|articulate (similar term)
+facilitate|3
+(verb)|ease|alleviate|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|help|serve (generic term)
+(verb)|cause (generic term)|do (generic term)|make (generic term)
+facilitated|1
+(adj)|expedited (similar term)
+facilitation|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|organic phenomenon (generic term)
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+facilitative|1
+(adj)|helpful (similar term)
+facilitator|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+facilitatory|1
+(adj)|helpful (similar term)
+facility|5
+(noun)|installation|artifact (generic term)|artefact (generic term)
+(noun)|adeptness|adroitness|deftness|quickness|skillfulness (generic term)
+(noun)|readiness|effortlessness (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|service (generic term)
+facing|4
+(noun)|lining (generic term)
+(noun)|veneer|coating (generic term)|coat (generic term)
+(noun)|cladding|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|lining|application (generic term)|coating (generic term)|covering (generic term)
+facing pages|1
+(noun)|spread|spread head|spreadhead|page (generic term)
+facsimile|3
+(noun)|autotype|copy (generic term)
+(noun)|facsimile machine|fax|duplicator (generic term)|copier (generic term)
+(verb)|fax|telefax|telecommunicate (generic term)
+facsimile machine|1
+(noun)|facsimile|fax|duplicator (generic term)|copier (generic term)
+fact|4
+(noun)|information (generic term)
+(noun)|information (generic term)|info (generic term)
+(noun)|reality (generic term)|realness (generic term)|realism (generic term)
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+fact-finding|1
+(adj)|investigative|investigatory|inquiring (similar term)
+fact mood|1
+(noun)|indicative mood|indicative|declarative mood|declarative|common mood|mood (generic term)|mode (generic term)|modality (generic term)
+faction|2
+(noun)|cabal|junto|camarilla|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+(noun)|sect|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+factious|1
+(adj)|dissentious|divisive|discordant (similar term)
+factitious|1
+(adj)|artificial (similar term)|unreal (similar term)
+factoid|2
+(noun)|information (generic term)|info (generic term)
+(noun)|news item (generic term)
+factor|8
+(noun)|cause (generic term)
+(noun)|component|constituent|element|ingredient|part (generic term)|section (generic term)|division (generic term)
+(noun)|number (generic term)
+(noun)|divisor|integer (generic term)|whole number (generic term)
+(noun)|agent|broker|businessperson (generic term)|bourgeois (generic term)
+(noun)|independent variable (generic term)|experimental variable (generic term)
+(noun)|gene|cistron|sequence (generic term)
+(verb)|factor in|factor out|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+factor analyse|1
+(verb)|factor analyze|analyze (generic term)|analyse (generic term)
+factor analysis|1
+(noun)|correlational analysis (generic term)
+factor analytic|1
+(adj)|factor analytical|correlational analysis (related term)
+factor analytical|1
+(adj)|factor analytic|correlational analysis (related term)
+factor analyze|1
+(verb)|factor analyse|analyze (generic term)|analyse (generic term)
+factor i|1
+(noun)|fibrinogen|factor I|coagulation factor (generic term)|clotting factor (generic term)
+factor ii|1
+(noun)|prothrombin|factor II|coagulation factor (generic term)|clotting factor (generic term)
+factor iii|1
+(noun)|thromboplastin|thrombokinase|factor III|coagulation factor (generic term)|clotting factor (generic term)
+factor in|1
+(verb)|factor|factor out|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+factor iv|1
+(noun)|calcium ion|factor IV|calcium (generic term)|Ca (generic term)|atomic number 20 (generic term)|coagulation factor (generic term)|clotting factor (generic term)
+factor ix|1
+(noun)|Christmas factor|factor IX|coagulation factor (generic term)|clotting factor (generic term)
+factor of proportionality|1
+(noun)|constant of proportionality|factor (generic term)|constant (generic term)
+factor of safety|1
+(noun)|safety factor|ratio (generic term)
+factor out|1
+(verb)|factor|factor in|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+factor v|1
+(noun)|proaccelerin|prothrombin accelerator|accelerator factor|factor V|coagulation factor (generic term)|clotting factor (generic term)
+factor vii|1
+(noun)|proconvertin|cothromboplastin|stable factor|factor VII|coagulation factor (generic term)|clotting factor (generic term)
+factor viii|1
+(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+factor x|1
+(noun)|prothrombinase|factor X|coagulation factor (generic term)|clotting factor (generic term)
+factor xi|1
+(noun)|plasma thromboplastin antecedent|factor XI|coagulation factor (generic term)|clotting factor (generic term)
+factor xii|1
+(noun)|Hageman factor|factor XII|coagulation factor (generic term)|clotting factor (generic term)
+factor xiii|1
+(noun)|fibrinase|factor XIII|coagulation factor (generic term)|clotting factor (generic term)
+factorial|2
+(adj)|product|mathematical product (related term)
+(noun)|product (generic term)|mathematical product (generic term)
+factoring|1
+(noun)|factorization|factorisation|resolution (generic term)|resolving (generic term)
+factorisation|1
+(noun)|factorization|factoring|resolution (generic term)|resolving (generic term)
+factorise|1
+(verb)|factorize|resolve (generic term)|solve (generic term)
+factorization|1
+(noun)|factorisation|factoring|resolution (generic term)|resolving (generic term)
+factorize|1
+(verb)|factorise|resolve (generic term)|solve (generic term)
+factory|1
+(noun)|mill|manufacturing plant|manufactory|plant (generic term)|works (generic term)|industrial plant (generic term)
+factory-made|1
+(adj)|boughten (similar term)|store-bought (similar term)|manufactured (similar term)|mass-produced (similar term)|ready-made (similar term)|homemade (antonym)
+factory farm|1
+(noun)|agribusiness|agriculture|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+factory price|1
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+factory ship|1
+(noun)|whaler (generic term)|whaling ship (generic term)
+factory whistle|1
+(noun)|whistle (generic term)
+factory worker|1
+(noun)|mill-hand|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+factotum|1
+(noun)|servant (generic term)|retainer (generic term)
+facts of life|1
+(noun)|reproduction|procreation|breeding|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+factual|4
+(adj)|actual|real (similar term)|existent (similar term)
+(adj)|information (related term)
+(adj)|de facto|actual|de jure (antonym)
+(adj)|concrete (similar term)
+factuality|1
+(noun)|factualness|quality (generic term)|counterfactuality (antonym)
+factualness|1
+(noun)|factuality|quality (generic term)|counterfactuality (antonym)
+facula|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+facultative|4
+(adj)|ability|power (related term)
+(adj)|obligate (antonym)
+(adj)|enabling (similar term)
+(adj)|optional (similar term)
+faculty|2
+(noun)|mental faculty|module|ability (generic term)|power (generic term)
+(noun)|staff|body (generic term)
+faculty member|1
+(noun)|academician|academic|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+fad|1
+(noun)|craze|furor|furore|cult|rage|fashion (generic term)
+fad diet|1
+(noun)|reducing diet (generic term)|obesity diet (generic term)
+faddily|1
+(adv)|faddishly
+faddish|1
+(adj)|faddy|fashionable (similar term)|stylish (similar term)
+faddishly|1
+(adv)|faddily
+faddist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+faddy|1
+(adj)|faddish|fashionable (similar term)|stylish (similar term)
+fade|6
+(noun)|slice|slicing|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|disappearance|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|melt|weaken (generic term)
+(verb)|wither|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|evanesce|blow over|pass off|fleet|pass|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|languish|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+fade away|1
+(verb)|dissolve|fade out|change state (generic term)|turn (generic term)
+fade out|1
+(verb)|dissolve|fade away|change state (generic term)|turn (generic term)
+faded|2
+(adj)|bleached|washed-out|washy|colorless (similar term)|colourless (similar term)
+(adj)|attenuate|attenuated|weakened|decreased (similar term)|reduced (similar term)
+fadeout|2
+(noun)|receding|disappearance (generic term)
+(noun)|noise (generic term)|interference (generic term)|disturbance (generic term)
+fading|1
+(noun)|attenuation|weakening (generic term)
+fading away|1
+(noun)|dwindling (generic term)|dwindling away (generic term)
+fado|1
+(noun)|folk song (generic term)|folksong (generic term)|folk ballad (generic term)
+fae|1
+(noun)|fuel-air explosive|FAE|explosive device (generic term)
+faecal|1
+(adj)|fecal|feculent|dirty (similar term)|soiled (similar term)|unclean (similar term)
+faecal matter|1
+(noun)|fecal matter|feces|faeces|BM|stool|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+faecal occult test|1
+(noun)|fecal occult test|stool test|diagnostic test (generic term)|diagnostic assay (generic term)
+faecalith|1
+(noun)|coprolith|fecalith|stercolith|mass (generic term)
+faeces|1
+(noun)|fecal matter|faecal matter|feces|BM|stool|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+faerie|2
+(noun)|fairy|faery|fay|sprite|spiritual being (generic term)|supernatural being (generic term)
+(noun)|fairyland|faery|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+faeroe islands|2
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession (generic term)
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island (generic term)
+faeroes|2
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession (generic term)
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island (generic term)
+faeroese|1
+(noun)|Faroese|Faeroese|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+faery|2
+(noun)|fairy|faerie|fay|sprite|spiritual being (generic term)|supernatural being (generic term)
+(noun)|fairyland|faerie|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+fafnir|1
+(noun)|Fafnir|dragon (generic term)|firedrake (generic term)
+fag|5
+(noun)|fagot|faggot|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+(noun)|cigarette|cigaret|coffin nail|butt|roll of tobacco (generic term)|smoke (generic term)
+(verb)|serve (generic term)|attend to (generic term)|wait on (generic term)|attend (generic term)|assist (generic term)
+(verb)|labor|labour|toil|travail|grind|drudge|dig|moil|work (generic term)|do work (generic term)
+(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fatigue|indispose (generic term)|refresh (antonym)
+fag end|2
+(noun)|tail|tail end|end (generic term)|ending (generic term)
+(noun)|end (generic term)|remainder (generic term)|remnant (generic term)|oddment (generic term)
+fag out|1
+(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag|fatigue|indispose (generic term)|refresh (antonym)
+fagaceae|1
+(noun)|Fagaceae|family Fagaceae|beech family|hamamelid dicot family (generic term)
+fagales|1
+(noun)|Fagales|order Fagales|plant order (generic term)
+fagged|1
+(adj)|exhausted|dog-tired|fatigued|played out|spent|washed-out|worn-out|worn out|tired (similar term)
+faggot|5
+(noun)|fagot|fag|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+(noun)|fagot|bundle (generic term)|sheaf (generic term)
+(verb)|fagot|embroider (generic term)|broider (generic term)
+(verb)|fagot|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+(verb)|fagot|faggot up|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+faggot stitch|1
+(noun)|fagot stitch|stitch (generic term)
+faggot up|1
+(verb)|faggot|fagot|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+faggpting|1
+(noun)|fagoting|embroidery (generic term)|fancywork (generic term)
+fagin|1
+(noun)|Fagin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+fagopyrum|1
+(noun)|Fagopyrum|genus Fagopyrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+fagopyrum esculentum|1
+(noun)|buckwheat|Polygonum fagopyrum|Fagopyrum esculentum|herb (generic term)|herbaceous plant (generic term)
+fagot|5
+(noun)|faggot|fag|fairy|nance|pansy|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+(noun)|faggot|bundle (generic term)|sheaf (generic term)
+(verb)|faggot|embroider (generic term)|broider (generic term)
+(verb)|faggot|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+(verb)|faggot|faggot up|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+fagot stitch|1
+(noun)|faggot stitch|stitch (generic term)
+fagoting|1
+(noun)|faggpting|embroidery (generic term)|fancywork (generic term)
+fagus|1
+(noun)|Fagus|genus Fagus|hamamelid dicot genus (generic term)
+fagus americana|1
+(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech (generic term)|beech tree (generic term)
+fagus grandifolia|1
+(noun)|American beech|white beech|red beech|Fagus grandifolia|Fagus americana|beech (generic term)|beech tree (generic term)
+fagus pendula|1
+(noun)|weeping beech|Fagus pendula|Fagus sylvatica pendula|beech (generic term)|beech tree (generic term)
+fagus purpurea|1
+(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech (generic term)|beech tree (generic term)
+fagus sylvatica|1
+(noun)|common beech|European beech|Fagus sylvatica|beech (generic term)|beech tree (generic term)
+fagus sylvatica atropunicea|1
+(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech (generic term)|beech tree (generic term)
+fagus sylvatica pendula|1
+(noun)|weeping beech|Fagus pendula|Fagus sylvatica pendula|beech (generic term)|beech tree (generic term)
+fagus sylvatica purpurea|1
+(noun)|copper beech|purple beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech (generic term)|beech tree (generic term)
+fahd|1
+(noun)|Fahd|Fahd ibn Abdel Aziz al-Saud|king (generic term)|male monarch (generic term)|Rex (generic term)
+fahd ibn abdel aziz al-saud|1
+(noun)|Fahd|Fahd ibn Abdel Aziz al-Saud|king (generic term)|male monarch (generic term)|Rex (generic term)
+fahrenheit|2
+(adj)|Fahrenheit|temperature scale (related term)
+(noun)|Fahrenheit|Gabriel Daniel Fahrenheit|physicist (generic term)
+fahrenheit scale|1
+(noun)|Fahrenheit scale|temperature scale (generic term)
+fahrenheit thermometer|1
+(noun)|Fahrenheit thermometer|thermometer (generic term)
+faience|1
+(noun)|earthenware (generic term)
+fail|9
+(verb)|neglect
+(verb)|go wrong|miscarry|succeed (antonym)
+(verb)|betray|disappoint (generic term)|let down (generic term)
+(verb)|go bad|give way|die|give out|conk out|go|break|break down|change (generic term)
+(verb)|manage (antonym)
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|pass (antonym)
+(verb)|flunk|bomb|flush it|pass (antonym)
+(verb)|run out|give out
+(verb)|worsen (generic term)|decline (generic term)
+fail-safe|3
+(adj)|secure (similar term)
+(adj)|safe (similar term)
+(noun)|mechanism (generic term)
+failed|1
+(adj)|failing|unsuccessful (similar term)
+failing|4
+(adj)|failed|unsuccessful (similar term)
+(adj)|unsatisfactory (similar term)
+(noun)|weakness|imperfection (generic term)|imperfectness (generic term)
+(noun)|flunk|failure (generic term)|passing (antonym)
+faille|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+failure|7
+(noun)|nonaccomplishment (generic term)|nonachievement (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|success (antonym)
+(noun)|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|success (antonym)
+(noun)|loser|nonstarter|unsuccessful person|unfortunate (generic term)|unfortunate person (generic term)|achiever (antonym)
+(noun)|omission (generic term)|skip (generic term)
+(noun)|bankruptcy|insolvency (generic term)
+(noun)|disorder (generic term)|upset (generic term)
+fain|2
+(adj)|disposed|inclined|prepared|willing (similar term)
+(adv)|gladly|lief
+faineance|1
+(noun)|idleness|indolence (generic term)|laziness (generic term)
+faineant|1
+(adj)|indolent|lazy|otiose|slothful|work-shy|idle (similar term)
+faint|8
+(adj)|weak|perceptible (similar term)
+(adj)|dim|shadowy|vague|wispy|indistinct (similar term)
+(adj)|feeble|weak (similar term)
+(adj)|light|swooning|light-headed|lightheaded|ill (similar term)|sick (similar term)
+(adj)|indistinct (similar term)
+(adj)|fainthearted|timid|faint-hearted|cowardly (similar term)|fearful (similar term)
+(noun)|swoon|syncope|deliquium|loss of consciousness (generic term)
+(verb)|conk|swoon|pass out|zonk out (generic term)|pass out (generic term)|black out (generic term)
+faint-hearted|1
+(adj)|faint|fainthearted|timid|cowardly (similar term)|fearful (similar term)
+fainthearted|1
+(adj)|faint|timid|faint-hearted|cowardly (similar term)|fearful (similar term)
+faintheartedness|1
+(noun)|faintness|timidity (generic term)|timorousness (generic term)|stoutheartedness (antonym)
+faintness|5
+(noun)|feeling (generic term)
+(noun)|weakness (generic term)
+(noun)|softness (generic term)
+(noun)|faintheartedness|timidity (generic term)|timorousness (generic term)|stoutheartedness (antonym)
+(noun)|dimness|indistinctness (generic term)|softness (generic term)|blurriness (generic term)|fogginess (generic term)|fuzziness (generic term)
+fair|17
+(adj)|just|antimonopoly (similar term)|antitrust (similar term)|clean (similar term)|sporting (similar term)|sporty (similar term)|sportsmanlike (similar term)|fair-minded (similar term)|fair-and-square (similar term)|impartial (related term)|fair (related term)|just (related term)|reasonable (related term)|sensible (related term)|unfair (antonym)
+(adj)|impartial|disinterested (similar term)|dispassionate (similar term)|cold-eyed (similar term)|indifferent (similar term)|unbiased (similar term)|unbiassed (similar term)|indifferent (similar term)|fair (related term)|just (related term)|partial (antonym)
+(adj)|fairish|reasonable|moderate (similar term)
+(adj)|bonny|bonnie|comely|sightly|beautiful (similar term)
+(adj)|in-bounds (similar term)|foul (antonym)
+(adj)|average|mediocre|middling|ordinary (similar term)
+(adj)|feminine (similar term)
+(adj)|clean|legible (similar term)
+(adj)|clear (similar term)
+(adj)|fairish|blond (similar term)|blonde (similar term)|light-haired (similar term)
+(noun)|carnival|funfair|show (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|exhibition (generic term)|exposition (generic term)|expo (generic term)
+(noun)|bazaar|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(adv)|fairly|clean|unfairly (antonym)
+(adv)|fairly|evenhandedly
+fair-and-square|1
+(adj)|fair (similar term)|just (similar term)
+fair-haired|1
+(adj)|blue-eyed|white-haired|loved (similar term)
+fair-maids-of-france|1
+(noun)|meadow saxifrage|fair-maids-of-France|Saxifraga granulata|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+fair-minded|1
+(adj)|fair (similar term)|just (similar term)
+fair-mindedness|1
+(noun)|fairness|candor|candour|impartiality (generic term)|nonpartisanship (generic term)|unfairness (antonym)
+fair-trade act|1
+(noun)|legislative act (generic term)|statute (generic term)
+fair-trade agreement|1
+(noun)|agreement (generic term)|understanding (generic term)
+fair ball|1
+(noun)|contact (generic term)|physical contact (generic term)|foul ball (antonym)
+fair catch|1
+(noun)|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+fair chance|1
+(noun)|sporting chance|probability (generic term)|chance (generic term)
+fair copy|1
+(noun)|copy (generic term)|written matter (generic term)
+fair deal|1
+(noun)|square deal|deal (generic term)
+fair game|1
+(noun)|prey|quarry|target|victim (generic term)
+fair hearing|1
+(noun)|hearing (generic term)
+fair sex|1
+(noun)|womanhood|woman|class (generic term)|social class (generic term)|socio-economic class (generic term)
+fair to middling|1
+(adj)|adequate|passable|tolerable|satisfactory (similar term)
+fair trade|1
+(noun)|trade (generic term)
+fair use|1
+(noun)|use (generic term)|enjoyment (generic term)
+fair weather|1
+(noun)|sunshine|temperateness|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+fairbanks|2
+(noun)|Fairbanks|Douglas Fairbanks Jr.|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+fairground|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+fairish|2
+(adj)|fair|reasonable|moderate (similar term)
+(adj)|fair|blond (similar term)|blonde (similar term)|light-haired (similar term)
+fairlead|1
+(noun)|pulley (generic term)|pulley-block (generic term)|block (generic term)
+fairly|3
+(adv)|reasonably|moderately|within reason|somewhat|middling|passably|immoderately (antonym)|unreasonably (antonym)
+(adv)|fair|evenhandedly
+(adv)|fair|clean|unfairly (antonym)
+fairness|4
+(noun)|equity|justice (generic term)|justness (generic term)|inequity (antonym)|unfairness (antonym)
+(noun)|fair-mindedness|candor|candour|impartiality (generic term)|nonpartisanship (generic term)|unfairness (antonym)
+(noun)|paleness|blondness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+(noun)|comeliness|loveliness|beauteousness|beauty (generic term)
+fairness commission|1
+(noun)|committee (generic term)|commission (generic term)
+fairway|3
+(noun)|site (generic term)|land site (generic term)
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+fairway crested wheat grass|1
+(noun)|crested wheatgrass|crested wheat grass|Agropyron cristatum|wheatgrass (generic term)|wheat-grass (generic term)
+fairy|2
+(noun)|faery|faerie|fay|sprite|spiritual being (generic term)|supernatural being (generic term)
+(noun)|fagot|faggot|fag|nance|pansy|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+fairy-ring mushroom|1
+(noun)|Marasmius oreades|agaric (generic term)
+fairy-slipper|1
+(noun)|calypso|Calypso bulbosa|orchid (generic term)|orchidaceous plant (generic term)
+fairy armadillo|1
+(noun)|pichiciago|pichiciego|chlamyphore|Chlamyphorus truncatus|armadillo (generic term)
+fairy bell|1
+(noun)|common foxglove|fingerflower|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+fairy bluebird|1
+(noun)|bluebird|oscine (generic term)|oscine bird (generic term)
+fairy circle|1
+(noun)|fairy ring|ring (generic term)|halo (generic term)|annulus (generic term)|anulus (generic term)|doughnut (generic term)|anchor ring (generic term)
+fairy cup|2
+(noun)|blood cup|Peziza coccinea|discomycete (generic term)|cup fungus (generic term)
+(noun)|Mitella diphylla|miterwort (generic term)|mitrewort (generic term)|bishop's cap (generic term)
+fairy godmother|2
+(noun)|benefactor (generic term)|helper (generic term)
+(noun)|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+fairy lantern|1
+(noun)|globe lily|liliaceous plant (generic term)
+fairy light|1
+(noun)|light (generic term)|light source (generic term)
+fairy ring|1
+(noun)|fairy circle|ring (generic term)|halo (generic term)|annulus (generic term)|anulus (generic term)|doughnut (generic term)|anchor ring (generic term)
+fairy shrimp|1
+(noun)|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+fairy story|2
+(noun)|fairytale|fairy tale|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+(noun)|fairytale|fairy tale|cock-and-bull story|song and dance|fib (generic term)|story (generic term)|tale (generic term)|tarradiddle (generic term)|taradiddle (generic term)
+fairy swallow|1
+(noun)|domestic pigeon (generic term)
+fairy tale|2
+(noun)|fairytale|fairy story|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+(noun)|fairytale|fairy story|cock-and-bull story|song and dance|fib (generic term)|story (generic term)|tale (generic term)|tarradiddle (generic term)|taradiddle (generic term)
+fairyland|2
+(noun)|fantasy world|phantasy world|fantasy (generic term)|phantasy (generic term)
+(noun)|faerie|faery|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+fairytale|2
+(noun)|fairy tale|fairy story|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+(noun)|fairy tale|fairy story|cock-and-bull story|song and dance|fib (generic term)|story (generic term)|tale (generic term)|tarradiddle (generic term)|taradiddle (generic term)
+faisal|1
+(noun)|Faisal|Faisal ibn Abdel Aziz al-Saud|king (generic term)|male monarch (generic term)|Rex (generic term)
+faisal ibn abdel aziz al-saud|1
+(noun)|Faisal|Faisal ibn Abdel Aziz al-Saud|king (generic term)|male monarch (generic term)|Rex (generic term)
+faisalabad|1
+(noun)|Faisalabad|Lyallpur|city (generic term)|metropolis (generic term)|urban center (generic term)
+fait accompli|1
+(noun)|accomplished fact|accomplishment (generic term)|achievement (generic term)
+faith|4
+(noun)|religion|religious belief|belief (generic term)|theological virtue (generic term)|supernatural virtue (generic term)
+(noun)|trust|belief (generic term)
+(noun)|religion|organized religion|institution (generic term)|establishment (generic term)
+(noun)|commitment (generic term)|allegiance (generic term)|loyalty (generic term)|dedication (generic term)
+faith cure|1
+(noun)|faith healing|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+faith healing|1
+(noun)|faith cure|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+faithful|5
+(adj)|firm (similar term)|loyal (similar term)|truehearted (similar term)|fast (similar term)|true (similar term)|constant (related term)|true (related term)|trustworthy (related term)|trusty (related term)|unfaithful (antonym)
+(adj)|close|accurate (similar term)
+(adj)|true to (similar term)|unfaithful (antonym)
+(noun)|following (generic term)|followers (generic term)
+(noun)|congregation|fold|social group (generic term)
+faithfully|1
+(adv)|dependably|reliably|unreliably (antonym)|undependably (antonym)|unfaithfully (antonym)
+faithfulness|1
+(noun)|fidelity|quality (generic term)|unfaithfulness (antonym)|infidelity (antonym)
+faithless|1
+(adj)|traitorous|unfaithful|treasonable|treasonous|disloyal (similar term)
+faithlessly|1
+(adv)|traitorously|treacherously|treasonably|false
+faithlessness|1
+(noun)|falseness|fickleness|inconstancy|infidelity (generic term)|unfaithfulness (generic term)
+fake|8
+(adj)|bogus|phony|phoney|bastard|counterfeit (similar term)|imitative (similar term)
+(adj)|false|faux|imitation|simulated|artificial (similar term)|unreal (similar term)
+(noun)|sham|postiche|imitation (generic term)|counterfeit (generic term)|forgery (generic term)
+(noun)|imposter|impostor|pretender|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|juke|feint (generic term)
+(verb)|forge|counterfeit|re-create (generic term)
+(verb)|fudge|manipulate|falsify|cook|wangle|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+(verb)|bullshit|bull|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+fake book|1
+(noun)|fake (generic term)|sham (generic term)|postiche (generic term)
+fakeer|1
+(noun)|fakir|faqir|faquir|saint (generic term)|holy man (generic term)|holy person (generic term)|angel (generic term)|Muslim (generic term)|Moslem (generic term)
+faker|1
+(noun)|imposter|impostor|pretender|fake|fraud|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+fakery|1
+(noun)|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+fakir|1
+(noun)|fakeer|faqir|faquir|saint (generic term)|holy man (generic term)|holy person (generic term)|angel (generic term)|Muslim (generic term)|Moslem (generic term)
+fal la|1
+(noun)|fa la|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+falafel|1
+(noun)|felafel|dish (generic term)
+falanga|1
+(noun)|bastinado|torture (generic term)|torturing (generic term)
+falange|1
+(noun)|Falange|Nazism (generic term)|Naziism (generic term)|national socialism (generic term)
+falangist|1
+(noun)|phalangist|fascist (generic term)
+falcate|1
+(adj)|falciform|sickle-shaped|curved (similar term)|curving (similar term)
+falcatifolium|1
+(noun)|Falcatifolium|genus Falcatifolium|gymnosperm genus (generic term)
+falcatifolium falciforme|1
+(noun)|common sickle pine|Falcatifolium falciforme|conifer (generic term)|coniferous tree (generic term)
+falcatifolium taxoides|1
+(noun)|yellow-leaf sickle pine|Falcatifolium taxoides|conifer (generic term)|coniferous tree (generic term)
+falchion|1
+(noun)|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+falciform|1
+(adj)|falcate|sickle-shaped|curved (similar term)|curving (similar term)
+falciform ligament|1
+(noun)|ligament (generic term)
+falco|1
+(noun)|Falco|genus Falco|bird genus (generic term)
+falco columbarius|1
+(noun)|pigeon hawk|merlin|Falco columbarius|falcon (generic term)
+falco peregrinus|1
+(noun)|peregrine|peregrine falcon|Falco peregrinus|falcon (generic term)
+falco rusticolus|1
+(noun)|gyrfalcon|gerfalcon|Falco rusticolus|falcon (generic term)
+falco sparverius|1
+(noun)|sparrow hawk|American kestrel|kestrel|Falco sparverius|falcon (generic term)
+falco subbuteo|1
+(noun)|hobby|Falco subbuteo|falcon (generic term)
+falco tinnunculus|1
+(noun)|kestrel|Falco tinnunculus|falcon (generic term)
+falcon|2
+(noun)|hawk (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+falcon-gentil|1
+(noun)|falcon-gentle|peregrine (generic term)|peregrine falcon (generic term)|Falco peregrinus (generic term)
+falcon-gentle|1
+(noun)|falcon-gentil|peregrine (generic term)|peregrine falcon (generic term)|Falco peregrinus (generic term)
+falconer|1
+(noun)|hawker|hunter (generic term)|huntsman (generic term)
+falconidae|1
+(noun)|Falconidae|family Falconidae|bird family (generic term)
+falconiformes|1
+(noun)|Falconiformes|order Falconiformes|animal order (generic term)
+falconine|1
+(adj)|hawk (related term)
+falconry|1
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+falderol|1
+(noun)|folderal|frill|gimcrackery|gimcrack|nonsense|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+falkland islands|1
+(noun)|Falkland Islands|island (generic term)
+falkner|1
+(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist (generic term)
+fall|39
+(noun)|autumn|season (generic term)|time of year (generic term)
+(noun)|spill|tumble|slip (generic term)|trip (generic term)
+(noun)|Fall|event (generic term)
+(noun)|descent|declivity|decline|declination|declension|downslope|slope (generic term)|incline (generic term)|side (generic term)|ascent (antonym)
+(noun)|sin (generic term)|sinning (generic term)
+(noun)|downfall|weakening (generic term)|rise (antonym)
+(noun)|change of location (generic term)|travel (generic term)|rise (antonym)
+(noun)|capitulation|surrender|loss (generic term)
+(noun)|twilight|dusk|gloaming|gloam|nightfall|evenfall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+(noun)|pin|victory (generic term)|triumph (generic term)
+(noun)|drop|descent (generic term)|gravitation (generic term)
+(noun)|drop|dip|free fall|decrease (generic term)|decrement (generic term)
+(verb)|descend|go down|come down|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|fall in (related term)|rise (antonym)|ascend (antonym)
+(verb)|change state (generic term)|turn (generic term)|fall for (related term)|fall through (related term)|fall flat (related term)|founder (related term)|flop (related term)|lag (related term)|dawdle (related term)|fall back (related term)|fall behind (related term)|break (related term)|separate (related term)|split up (related term)|fall apart (related term)|come apart (related term)|crumble (related term)|fall apart (related term)|slip (related term)|drop off (related term)|drop away (related term)|fall away (related term)|fall back (related term)|lose (related term)|drop off (related term)|fall behind (related term)|recede (related term)
+(verb)|come|be (generic term)
+(verb)|precipitate|come down
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|decrease|diminish|lessen|change magnitude (generic term)|increase (antonym)
+(verb)|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+(verb)|shine|strike|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|yield (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|fall (generic term)|sin (generic term)|transgress (generic term)|trespass (generic term)
+(verb)|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|be (generic term)
+(verb)|accrue|change hands (generic term)|change owners (generic term)
+(verb)|light|fall (generic term)|return (generic term)|pass (generic term)|devolve (generic term)
+(verb)|return|pass|devolve|change hands (generic term)|change owners (generic term)
+(verb)|slope (generic term)|incline (generic term)|pitch (generic term)
+(verb)|fall down|change posture (generic term)
+(verb)|change posture (generic term)
+(verb)|hang|flow
+(verb)|change (generic term)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+(verb)|be born (generic term)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|descend|settle|come (generic term)
+fall-blooming|1
+(adj)|autumn-flowering|autumn-blooming|fall-flowering|late-flowering|late-blooming|autumnal (similar term)
+fall-blooming hydrangea|1
+(noun)|Hydrangea paniculata|hydrangea (generic term)
+fall-board|1
+(noun)|fallboard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+fall-flowering|1
+(adj)|autumn-flowering|autumn-blooming|fall-blooming|late-flowering|late-blooming|autumnal (similar term)
+fall all over|1
+(verb)|interact (generic term)
+fall apart|4
+(verb)|go to pieces|break down (generic term)|lose it (generic term)|snap (generic term)
+(verb)|break|wear|wear out|bust|decay (generic term)|crumble (generic term)|delapidate (generic term)|wear away (related term)|wear off (related term)|wear away (related term)|break away (related term)|break off (related term)|break up (related term)|break apart (related term)
+(verb)|crumble|disintegrate (generic term)
+(verb)|break|separate|split up|come apart|change integrity (generic term)|break up (related term)
+fall armyworm|1
+(noun)|Spodoptera frugiperda|caterpillar (generic term)
+fall asleep|1
+(verb)|dope off|flake out|drift off|nod off|drop off|doze off|drowse off|wake up (antonym)
+fall away|2
+(verb)|slip|drop off|drop away|worsen (generic term)|decline (generic term)
+(verb)|fall off|disappear (generic term)|vanish (generic term)|go away (generic term)
+fall back|6
+(verb)|lean back (generic term)|recline (generic term)
+(verb)|lag|dawdle|fall behind|follow (generic term)
+(verb)|recede|retire|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)|advance (antonym)
+(verb)|lose|drop off|fall behind|recede|regress (generic term)|retrograde (generic term)|retrogress (generic term)|gain (antonym)
+(verb)|resort|recur|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|relapse|lapse|recidivate|regress|retrogress|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+fall behind|2
+(verb)|fall back|lose|drop off|recede|regress (generic term)|retrograde (generic term)|retrogress (generic term)|gain (antonym)
+(verb)|lag|dawdle|fall back|follow (generic term)
+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|enter (antonym)
+fall cankerworm|1
+(noun)|cankerworm (generic term)
+fall dandelion|1
+(noun)|arnica bud|Leontodon autumnalis|hawkbit (generic term)
+fall down|1
+(verb)|fall|change posture (generic term)
+fall equinox|1
+(noun)|autumnal equinox|September equinox|equinox (generic term)|vernal equinox (antonym)
+fall flat|1
+(verb)|fall through|founder|flop|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+fall for|2
+(verb)|change (generic term)
+(verb)|err (generic term)|mistake (generic term)|slip (generic term)
+fall from grace|1
+(verb)|misbehave (generic term)|misconduct (generic term)|misdemean (generic term)
+fall guy|1
+(noun)|chump|fool|gull|mark|patsy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+fall in|2
+(verb)|collapse|cave in|give|give way|break|founder|change (generic term)
+(verb)|join|get together
+fall in line|1
+(verb)|align (generic term)|array (generic term)
+fall in love|1
+(verb)|fall (generic term)
+fall into|1
+(verb)|fall under|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+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 (generic term)|turning point (generic term)|watershed (generic term)
+fall off|3
+(verb)|detach (generic term)|come off (generic term)|come away (generic term)
+(verb)|slump|sink|drop (generic term)
+(verb)|fall away|disappear (generic term)|vanish (generic term)|go away (generic term)
+fall open|1
+(verb)|drop open|sink (generic term)|drop (generic term)|drop down (generic term)
+fall out|5
+(verb)|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+(verb)|follow|result (generic term)|ensue (generic term)
+(verb)|come out|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)
+(verb)|happen|hap|go on|pass off|occur|pass|come about|take place
+fall over|1
+(verb)|go over|break down (generic term)|collapse (generic term)
+fall over backwards|1
+(verb)|bend over backwards|act (generic term)|behave (generic term)|do (generic term)
+fall short|1
+(verb)|come short|disappoint (generic term)|let down (generic term)
+fall short of|1
+(verb)|satisfy (antonym)
+fall through|1
+(verb)|fall flat|founder|flop|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+fall under|1
+(verb)|fall into|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+fall upon|1
+(verb)|strike|come upon|light upon|chance upon|come across|chance on|happen upon|attain|discover|find (generic term)|regain (generic term)
+fall webworm|1
+(noun)|Hyphantria cunea|webworm (generic term)
+falla|1
+(noun)|Falla|Manuel de Falla|composer (generic term)|pianist (generic term)|piano player (generic term)
+fallacious|3
+(adj)|unsound|invalid (similar term)
+(adj)|deceitful|fraudulent|dishonest (similar term)|dishonorable (similar term)
+(adj)|incorrect (similar term)|wrong (similar term)
+fallaciousness|1
+(noun)|invalidity (generic term)|invalidness (generic term)
+fallacy|1
+(noun)|false belief|misconception (generic term)
+fallal|1
+(noun)|bangle|bauble|gaud|gewgaw|novelty|trinket|adornment (generic term)
+fallback|1
+(noun)|disengagement|pullout|retreat (generic term)
+fallboard|1
+(noun)|fall-board|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+fallen|4
+(adj)|down (similar term)
+(adj)|destroyed (similar term)
+(adj)|unchaste (similar term)
+(adj)|dead (similar term)
+fallen arch|1
+(noun)|sunken arch|instep (generic term)
+faller|2
+(noun)|lumberman|lumberjack|logger|feller|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+fallibility|1
+(noun)|undependability (generic term)|undependableness (generic term)|unreliability (generic term)|unreliableness (generic term)|infallibility (antonym)
+fallible|2
+(adj)|errant (similar term)|erring (similar term)|error-prone (similar term)|undependable (similar term)|unreliable (similar term)|weak (similar term)|infallible (antonym)
+(adj)|frail|imperfect|weak|human (similar term)
+falling|3
+(adj)|decreasing (similar term)
+(adj)|down (similar term)|soft (similar term)|rising (antonym)
+(adj)|dropping|descending (similar term)
+falling off|1
+(noun)|slump|slack|drop-off|falloff|deterioration (generic term)|decline in quality (generic term)|declension (generic term)|worsening (generic term)
+falling out|1
+(noun)|rupture|breach|break|severance|rift|separation (generic term)|breakup (generic term)|detachment (generic term)
+falloff|1
+(noun)|slump|slack|drop-off|falling off|deterioration (generic term)|decline in quality (generic term)|declension (generic term)|worsening (generic term)
+fallopian tube|1
+(noun)|Fallopian tube|uterine tube|oviduct|salpinx (generic term)|female internal reproductive organ (generic term)
+fallopio|1
+(noun)|Fallopius|Gabriele Fallopius|Fallopio|Gabriello Fallopio|anatomist (generic term)
+fallopius|1
+(noun)|Fallopius|Gabriele Fallopius|Fallopio|Gabriello Fallopio|anatomist (generic term)
+fallot|1
+(noun)|Fallot|Etienne-Louis Arthur Fallot|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+fallot's syndrome|1
+(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect (generic term)|syndrome (generic term)
+fallot's tetralogy|1
+(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect (generic term)|syndrome (generic term)
+fallout|2
+(noun)|radioactive dust|dust (generic term)
+(noun)|side effect|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+fallout shelter|1
+(noun)|shelter (generic term)
+fallow|3
+(adj)|unplowed (similar term)|unploughed (similar term)|unbroken (similar term)
+(adj)|unexploited (similar term)|undeveloped (similar term)
+(noun)|cultivated land (generic term)|farmland (generic term)|plowland (generic term)|ploughland (generic term)|tilled land (generic term)|tillage (generic term)|tilth (generic term)
+fallow deer|1
+(noun)|Dama dama|deer (generic term)|cervid (generic term)
+falls|2
+(noun)|perianth (generic term)|chlamys (generic term)|floral envelope (generic term)|perigone (generic term)|perigonium (generic term)
+(noun)|waterfall|body of water (generic term)|water (generic term)
+false|11
+(adj)|mendacious (similar term)|specious (similar term)|spurious (similar term)|trumped-up (similar term)|untrue (similar term)|dishonest (related term)|dishonorable (related term)|counterfeit (related term)|imitative (related term)|incorrect (related term)|wrong (related term)|insincere (related term)|true (antonym)
+(adj)|mistaken|incorrect (similar term)|wrong (similar term)
+(adj)|invalid (similar term)
+(adj)|hollow|insincere (similar term)
+(adj)|delusive|unrealistic (similar term)
+(adj)|fake|faux|imitation|simulated|artificial (similar term)|unreal (similar term)
+(adj)|dishonest (similar term)|dishonorable (similar term)
+(adj)|off-key|sour|inharmonious (similar term)|unharmonious (similar term)
+(adj)|assumed|fictitious|fictive|pretended|put on|sham|counterfeit (similar term)|imitative (similar term)
+(adj)|untrue|inconstant (similar term)
+(adv)|faithlessly|traitorously|treacherously|treasonably
+false alarm|1
+(noun)|warning (generic term)
+false alumroot|1
+(noun)|fringe cups|Tellima grandiflora|wildflower (generic term)|wild flower (generic term)
+false asphodel|1
+(noun)|liliaceous plant (generic term)
+false azalea|1
+(noun)|fool's huckleberry|Menziesia ferruginea|shrub (generic term)|bush (generic term)
+false baby's breath|1
+(noun)|wild madder|white madder|white bedstraw|infant's-breath|Galium mollugo|bedstraw (generic term)
+false beachdrops|1
+(noun)|pinesap|Monotropa hypopithys|wildflower (generic term)|wild flower (generic term)
+false belief|1
+(noun)|fallacy|misconception (generic term)
+false bittersweet|1
+(noun)|bittersweet|American bittersweet|climbing bittersweet|staff vine|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+false bracken|1
+(noun)|Culcita dubia|fern (generic term)
+false buckthorn|1
+(noun)|chittamwood|chittimwood|shittimwood|black haw|Bumelia lanuginosa|buckthorn (generic term)
+false bugbane|1
+(noun)|Trautvetteria carolinensis|herb (generic term)|herbaceous plant (generic term)
+false calyx|1
+(noun)|epicalyx|calycle|calyculus|bract (generic term)
+false chamomile|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+false deathcap|1
+(noun)|Amanita mappa|agaric (generic term)
+false dogwood|1
+(noun)|China tree|jaboncillo|chinaberry|Sapindus saponaria|soapberry (generic term)|soapberry tree (generic term)
+false dragon head|1
+(noun)|false dragonhead|obedient plant|Physostegia virginiana|physostegia (generic term)
+false dragonhead|1
+(noun)|false dragon head|obedient plant|Physostegia virginiana|physostegia (generic term)
+false face|1
+(noun)|mask (generic term)
+false foxglove|2
+(noun)|Aureolaria virginica|Gerardia virginica|herb (generic term)|herbaceous plant (generic term)
+(noun)|Aureolaria pedicularia|Gerardia pedicularia|herb (generic term)|herbaceous plant (generic term)
+false fruit|1
+(noun)|pome|fruit (generic term)
+false garlic|1
+(noun)|crow garlic|field garlic|stag's garlic|wild garlic|Allium vineale|wild onion (generic term)
+false gavial|1
+(noun)|Tomistoma schlegeli|crocodilian reptile (generic term)|crocodilian (generic term)
+false glottis|1
+(noun)|rima vestibuli|rima respiratoria|glottis spuria|rima (generic term)
+false goatsbeard|1
+(noun)|Astilbe biternata|astilbe (generic term)
+false gromwell|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+false hair|1
+(noun)|hairpiece|postiche|attire (generic term)|garb (generic term)|dress (generic term)
+false heather|1
+(noun)|golden heather|Hudsonia ericoides|subshrub (generic term)|suffrutex (generic term)
+false hellebore|1
+(noun)|hellebore|liliaceous plant (generic term)
+false imprisonment|1
+(noun)|imprisonment (generic term)|internment (generic term)
+false indigo|3
+(noun)|wild indigo|woody plant (generic term)|ligneous plant (generic term)
+(noun)|bastard indigo|Amorpha fruticosa|amorpha (generic term)
+(noun)|bastard indigo|Amorpha californica|amorpha (generic term)
+false labor|1
+(noun)|Braxton-Hicks contraction|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+false lily of the valley|2
+(noun)|Maianthemum bifolium|liliaceous plant (generic term)
+(noun)|Maianthemum canadense|liliaceous plant (generic term)
+false lupine|1
+(noun)|golden pea|yellow pea|Thermopsis macrophylla|bush pea (generic term)
+false mallow|2
+(noun)|globe mallow|mallow (generic term)
+(noun)|mallow (generic term)
+false mildew|1
+(noun)|downy mildew|mildew (generic term)
+false mistletoe|1
+(noun)|mistletoe|parasitic plant (generic term)
+false miterwort|2
+(noun)|false mitrewort|Tiarella unifoliata|wildflower (generic term)|wild flower (generic term)
+(noun)|foamflower|coolwart|false mitrewort|Tiarella cordifolia|herb (generic term)|herbaceous plant (generic term)
+false mitrewort|2
+(noun)|false miterwort|Tiarella unifoliata|wildflower (generic term)|wild flower (generic term)
+(noun)|foamflower|coolwart|false miterwort|Tiarella cordifolia|herb (generic term)|herbaceous plant (generic term)
+false morel|1
+(noun)|fungus (generic term)
+false name|1
+(noun)|alias|assumed name|name (generic term)
+false nettle|1
+(noun)|bog hemp|herb (generic term)|herbaceous plant (generic term)
+false oat|1
+(noun)|tall oat grass|tall meadow grass|evergreen grass|French rye|Arrhenatherum elatius|grass (generic term)
+false pimpernel|1
+(noun)|chaffweed|bastard pimpernel|subshrub (generic term)|suffrutex (generic term)
+false pregnancy|1
+(noun)|pseudocyesis|physiological state (generic term)|physiological condition (generic term)
+false pretence|1
+(noun)|false pretense|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+false pretense|1
+(noun)|false pretence|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+false ragweed|1
+(noun)|burweed marsh elder|Iva xanthifolia|marsh elder (generic term)|iva (generic term)
+false return|1
+(noun)|tax return (generic term)|income tax return (generic term)|return (generic term)
+false rue|1
+(noun)|false rue anemone|Isopyrum biternatum|herb (generic term)|herbaceous plant (generic term)
+false rue anemone|1
+(noun)|false rue|Isopyrum biternatum|herb (generic term)|herbaceous plant (generic term)
+false saber-toothed tiger|1
+(noun)|saber-toothed tiger (generic term)|sabertooth (generic term)
+false saffron|1
+(noun)|safflower|Carthamus tinctorius|herb (generic term)|herbaceous plant (generic term)
+false sago|1
+(noun)|fern palm|Cycas circinalis|sago palm (generic term)|Cycas revoluta (generic term)
+false sarsaparilla|1
+(noun)|wild sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub (generic term)|suffrutex (generic term)
+false scorpion|1
+(noun)|pseudoscorpion|arachnid (generic term)|arachnoid (generic term)
+false smut|1
+(noun)|green smut|smut (generic term)
+false tamarisk|1
+(noun)|German tamarisk|Myricaria germanica|shrub (generic term)|bush (generic term)
+false teeth|1
+(noun)|denture (generic term)|dental plate (generic term)|plate (generic term)
+false topaz|1
+(noun)|topaz|common topaz|quartz (generic term)
+false truffle|2
+(noun)|fungus (generic term)
+(noun)|earthball|puffball|hard-skinned puffball|fungus (generic term)
+false vampire|1
+(noun)|false vampire bat|leafnose bat (generic term)|leaf-nosed bat (generic term)
+false vampire bat|1
+(noun)|false vampire|leafnose bat (generic term)|leaf-nosed bat (generic term)
+false verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)
+false vocal cord|1
+(noun)|false vocal fold|superior vocal cord|ventricular fold|vestibular fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+false vocal fold|1
+(noun)|false vocal cord|superior vocal cord|ventricular fold|vestibular fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+false wintergreen|1
+(noun)|Pyrola americana|Pyrola rotundifolia americana|wintergreen (generic term)|pyrola (generic term)
+false witness|1
+(noun)|perjurer|liar (generic term)|prevaricator (generic term)
+falsehood|2
+(noun)|falsity|untruth|statement (generic term)|truth (antonym)
+(noun)|falsification|dishonesty (generic term)|knavery (generic term)
+falsely|1
+(adv)|incorrectly
+falseness|3
+(noun)|falsity|unreality (generic term)|irreality (generic term)|truth (antonym)
+(noun)|faithlessness|fickleness|inconstancy|infidelity (generic term)|unfaithfulness (generic term)
+(noun)|insincerity|hollowness|untruthfulness (generic term)|sincerity (antonym)
+falsetto|2
+(adj)|high (similar term)|high-pitched (similar term)
+(noun)|head register (generic term)|head voice (generic term)|head tone (generic term)
+falsie|1
+(noun)|padding (generic term)|cushioning (generic term)
+falsifiable|1
+(adj)|confirmable|verifiable|empirical (similar term)|empiric (similar term)
+falsification|4
+(noun)|disproof|refutation|evidence (generic term)|grounds (generic term)
+(noun)|misrepresentaation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|falsehood|dishonesty (generic term)|knavery (generic term)
+(noun)|falsifying|disproof|refutation|refutal|determination (generic term)|finding (generic term)
+falsifier|1
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+falsify|5
+(verb)|distort|garble|warp|misrepresent (generic term)|belie (generic term)
+(verb)|fudge|manipulate|fake|cook|wangle|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+(verb)|disprove (generic term)|confute (generic term)
+(verb)|change by reversal (generic term)|turn (generic term)|reverse (generic term)|correct (antonym)
+(verb)|interpolate|alter|edit (generic term)|redact (generic term)
+falsifying|1
+(noun)|falsification|disproof|refutation|refutal|determination (generic term)|finding (generic term)
+falsity|2
+(noun)|falseness|unreality (generic term)|irreality (generic term)|truth (antonym)
+(noun)|falsehood|untruth|statement (generic term)|truth (antonym)
+falstaff|1
+(noun)|Falstaff|Sir John Falstaff|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+falstaffian|1
+(adj)|Falstaffian|fictional character|fictitious character|character (related term)
+falter|5
+(noun)|hesitation|waver|faltering|pause (generic term)
+(verb)|waver|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|waver|move (generic term)
+(verb)|stumble|bumble|walk (generic term)
+(verb)|bumble|stutter|stammer|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+faltering|2
+(adj)|unsteady (similar term)
+(noun)|hesitation|waver|falter|pause (generic term)
+falteringly|1
+(adv)|unsteadily|uncertainly|steadily (antonym)
+falun gong|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+fame|2
+(noun)|celebrity|renown|honor (generic term)|honour (generic term)|laurels (generic term)|infamy (antonym)
+(noun)|repute (generic term)|reputation (generic term)|infamy (antonym)
+famed|1
+(adj)|celebrated|far-famed|famous|illustrious|notable|noted|renowned|known (similar term)
+familial|2
+(adj)|kin|kin group|kinship group|kindred|clan|tribe (related term)
+(adj)|genetic|hereditary|inherited|transmitted|transmissible|inheritable (similar term)|heritable (similar term)
+familial hypercholesterolemia|1
+(noun)|hypercholesterolemia (generic term)|hypercholesteremia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+familiar|7
+(adj)|acquainted (similar term)|acquainted with (similar term)|familiar with (similar term)|beaten (similar term)|long-familiar (similar term)|well-known (similar term)|old (similar term)|known (related term)|unfamiliar (antonym)
+(adj)|common (similar term)|usual (similar term)|common or garden (similar term)|everyday (similar term)|strange (antonym)
+(adj)|conversant|informed (similar term)
+(adj)|intimate|close (similar term)
+(noun)|servant (generic term)|retainer (generic term)
+(noun)|companion|comrade|fellow|associate|friend (generic term)
+(noun)|familiar spirit|spirit (generic term)|disembodied spirit (generic term)
+familiar spirit|1
+(noun)|familiar|spirit (generic term)|disembodied spirit (generic term)
+familiar with|1
+(adj)|acquainted|acquainted with|familiar (similar term)
+familiarisation|1
+(noun)|familiarization|experience (generic term)
+familiarise|1
+(verb)|familiarize|acquaint|inform (generic term)
+familiarised|1
+(adj)|adjusted|familiarized|oriented (similar term)|orientated (similar term)
+familiarising|1
+(adj)|familiarizing|orienting (similar term)|orientating (similar term)
+familiarity|5
+(noun)|acquaintance|conversance|conversancy|information (generic term)
+(noun)|usualness (generic term)|unfamiliarity (antonym)
+(noun)|intimacy|closeness|friendliness (generic term)
+(noun)|casualness|informality (generic term)
+(noun)|impropriety|indecorum|liberty|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+familiarization|1
+(noun)|familiarisation|experience (generic term)
+familiarize|1
+(verb)|familiarise|acquaint|inform (generic term)
+familiarized|1
+(adj)|adjusted|familiarised|oriented (similar term)|orientated (similar term)
+familiarizing|1
+(adj)|familiarising|orienting (similar term)|orientating (similar term)
+family|8
+(noun)|household|house|home|menage|unit (generic term)|social unit (generic term)
+(noun)|family unit|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+(noun)|family line|folk|kinfolk|kinsfolk|sept|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+(noun)|class|category|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|fellowship|association (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|kin|kinsperson|relative (generic term)|relation (generic term)
+(noun)|syndicate|crime syndicate|mob|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+family acanthaceae|1
+(noun)|Acanthaceae|family Acanthaceae|acanthus family|asterid dicot family (generic term)
+family acanthisittidae|1
+(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family (generic term)
+family acanthuridae|1
+(noun)|Acanthuridae|family Acanthuridae|fish family (generic term)
+family acaridae|1
+(noun)|Acaridae|family Acaridae|arthropod family (generic term)
+family accipitridae|1
+(noun)|Accipitridae|family Accipitridae|bird family (generic term)
+family aceraceae|1
+(noun)|Aceraceae|family Aceraceae|maple family|dicot family (generic term)|magnoliopsid family (generic term)
+family acipenseridae|1
+(noun)|Acipenseridae|family Acipenseridae|fish family (generic term)
+family acrididae|1
+(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family (generic term)
+family actinidiaceae|1
+(noun)|Actinidiaceae|family Actinidiaceae|dilleniid dicot family (generic term)
+family actinomycetaceae|1
+(noun)|Actinomycetaceae|family Actinomycetaceae|bacteria family (generic term)
+family adelgidae|1
+(noun)|Adelgidae|family Adelgidae|arthropod family (generic term)
+family adiantaceae|1
+(noun)|Adiantaceae|family Adiantaceae|fern family (generic term)
+family aegypiidae|1
+(noun)|Aegypiidae|family Aegypiidae|vulture (generic term)
+family aepyornidae|1
+(noun)|Aepyornidae|family Aepyornidae|bird family (generic term)
+family agamidae|1
+(noun)|Agamidae|family Agamidae|reptile family (generic term)
+family agaricaceae|1
+(noun)|Agaricaceae|family Agaricaceae|fungus family (generic term)
+family agavaceae|1
+(noun)|Agavaceae|family Agavaceae|agave family|sisal family|liliid monocot family (generic term)
+family agonidae|1
+(noun)|Agonidae|family Agonidae|fish family (generic term)
+family ailuropodidae|1
+(noun)|Ailuropodidae|family Ailuropodidae|mammal family (generic term)
+family aizoaceae|1
+(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family (generic term)
+family akeridae|1
+(noun)|Akeridae|family Akeridae|mollusk family (generic term)
+family alaudidae|1
+(noun)|Alaudidae|family Alaudidae|bird family (generic term)
+family albuginaceae|1
+(noun)|Albuginaceae|family Albuginaceae|fungus family (generic term)
+family albulidae|1
+(noun)|Albulidae|family Albulidae|fish family (generic term)
+family alcedinidae|1
+(noun)|Alcedinidae|family Alcedinidae|bird family (generic term)
+family alcidae|1
+(noun)|Alcidae|family Alcidae|bird family (generic term)
+family aleyrodidae|1
+(noun)|Aleyrodidae|family Aleyrodidae|arthropod family (generic term)
+family alismataceae|1
+(noun)|Alismataceae|family Alismataceae|water-plantain family|monocot family (generic term)|liliopsid family (generic term)
+family alliaceae|1
+(noun)|Alliaceae|family Alliaceae|liliid monocot family (generic term)
+family alligatoridae|1
+(noun)|Alligatoridae|family Alligatoridae|reptile family (generic term)
+family allioniaceae|1
+(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family (generic term)
+family aloeaceae|1
+(noun)|Aloeaceae|family Aloeaceae|aloe family|liliid monocot family (generic term)
+family alopiidae|1
+(noun)|Alopiidae|family Alopiidae|fish family (generic term)
+family alstroemeriaceae|1
+(noun)|Alstroemeriaceae|family Alstroemeriaceae|liliid monocot family (generic term)
+family amaranthaceae|1
+(noun)|Amaranthaceae|family Amaranthaceae|amaranth family|caryophylloid dicot family (generic term)
+family amaryllidaceae|1
+(noun)|Amaryllidaceae|family Amaryllidaceae|amaryllis family|liliid monocot family (generic term)
+family ambrosiaceae|1
+(noun)|Ambrosiaceae|family Ambrosiaceae|asterid dicot family (generic term)
+family ambystomatidae|1
+(noun)|Ambystomatidae|family Ambystomatidae|amphibian family (generic term)
+family ameiuridae|1
+(noun)|Ameiuridae|family Ameiuridae|fish family (generic term)
+family amiidae|1
+(noun)|Amiidae|family Amiidae|fish family (generic term)
+family ammodytidae|1
+(noun)|Ammodytidae|family Ammodytidae|fish family (generic term)
+family amphioxidae|1
+(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family (generic term)
+family amphisbaenidae|1
+(noun)|Amphisbaenidae|family Amphisbaenidae|reptile family (generic term)
+family amphiumidae|1
+(noun)|Amphiumidae|family Amphiumidae|amphibian family (generic term)
+family amygdalaceae|1
+(noun)|Amygdalaceae|family Amygdalaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family anabantidae|1
+(noun)|Anabantidae|family Anabantidae|fish family (generic term)
+family anacardiaceae|1
+(noun)|Anacardiaceae|family Anacardiaceae|sumac family|dicot family (generic term)|magnoliopsid family (generic term)
+family anarhichadidae|1
+(noun)|Anarhichadidae|family Anarhichadidae|fish family (generic term)
+family anatidae|1
+(noun)|Anatidae|family Anatidae|bird family (generic term)
+family ancylidae|1
+(noun)|Ancylidae|family Ancylidae|mollusk family (generic term)
+family ancylostomatidae|1
+(noun)|Ancylostomatidae|family Ancylostomatidae|worm family (generic term)
+family andrenidae|1
+(noun)|Andrenidae|family Andrenidae|arthropod family (generic term)
+family anguidae|1
+(noun)|Anguidae|family Anguidae|reptile family (generic term)
+family anguillidae|1
+(noun)|Anguillidae|family Anguillidae|fish family (generic term)
+family anhimidae|1
+(noun)|Anhimidae|family Anhimidae|bird family (generic term)
+family anhingidae|1
+(noun)|Anhingidae|family Anhingidae|bird family (generic term)
+family anniellidae|1
+(noun)|Anniellidae|family Anniellidae|reptile family (generic term)
+family annonaceae|1
+(noun)|Annonaceae|family Annonaceae|custard-apple family|magnoliid dicot family (generic term)
+family anobiidae|1
+(noun)|Anobiidae|family Anobiidae|arthropod family (generic term)
+family anomalopidae|1
+(noun)|Anomalopidae|family Anomalopidae|fish family (generic term)
+family anomiidae|1
+(noun)|Anomiidae|family Anomiidae|mollusk family (generic term)
+family antedonidae|1
+(noun)|Antedonidae|family Antedonidae|echinoderm family (generic term)
+family antennariidae|1
+(noun)|Antennariidae|family Antennariidae|fish family (generic term)
+family anthocerotaceae|1
+(noun)|Anthocerotaceae|family Anthocerotaceae|moss family (generic term)
+family antilocapridae|1
+(noun)|Antilocapridae|family Antilocapridae|mammal family (generic term)
+family aphididae|1
+(noun)|Aphididae|family Aphididae|arthropod family (generic term)
+family aphyllanthaceae|1
+(noun)|Aphyllanthaceae|family Aphyllanthaceae|liliid monocot family (generic term)
+family apiaceae|1
+(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family (generic term)
+family apidae|1
+(noun)|Apidae|family Apidae|arthropod family (generic term)
+family aplodontiidae|1
+(noun)|Aplodontiidae|family Aplodontiidae|mammal family (generic term)
+family aplysiidae|1
+(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family (generic term)
+family apocynaceae|1
+(noun)|Apocynaceae|family Apocynaceae|dogbane family|dicot family (generic term)|magnoliopsid family (generic term)
+family apodidae|1
+(noun)|Apodidae|family Apodidae|bird family (generic term)
+family apogonidae|1
+(noun)|Apogonidae|family Apogonidae|fish family (generic term)
+family apterygidae|1
+(noun)|Apterygidae|family Apterygidae|bird family (generic term)
+family aquifoliaceae|1
+(noun)|Aquifoliaceae|family Aquifoliaceae|holly family|dicot family (generic term)|magnoliopsid family (generic term)
+family araceae|1
+(noun)|Araceae|family Araceae|arum family|monocot family (generic term)|liliopsid family (generic term)
+family araliaceae|1
+(noun)|Araliaceae|family Araliaceae|ivy family|rosid dicot family (generic term)
+family araucariaceae|1
+(noun)|Araucariaceae|family Araucariaceae|araucaria family|gymnosperm family (generic term)
+family arcellidae|1
+(noun)|Arcellidae|family Arcellidae|protoctist family (generic term)
+family arcidae|1
+(noun)|Arcidae|family Arcidae|mollusk family (generic term)
+family arctiidae|1
+(noun)|Arctiidae|family Arctiidae|arthropod family (generic term)
+family ardeidae|1
+(noun)|Ardeidae|family Ardeidae|bird family (generic term)
+family arecaceae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+family argasidae|1
+(noun)|Argasidae|family Argasidae|arthropod family (generic term)
+family argentinidae|1
+(noun)|Argentinidae|family Argentinidae|fish family (generic term)
+family argiopidae|1
+(noun)|Argiopidae|family Argiopidae|orb-weaver|arthropod family (generic term)
+family argonautidae|1
+(noun)|Argonautidae|family Argonautidae|mollusk family (generic term)
+family ariidae|1
+(noun)|Ariidae|family Ariidae|fish family (generic term)
+family aristolochiaceae|1
+(noun)|Aristolochiaceae|family Aristolochiaceae|birthwort family|dicot family (generic term)|magnoliopsid family (generic term)
+family armadillidiidae|1
+(noun)|Armadillidiidae|family Armadillidiidae|arthropod family (generic term)
+family artamidae|1
+(noun)|Artamidae|family Artamidae|bird family (generic term)
+family ascaphidae|1
+(noun)|Ascaphidae|family Ascaphidae|amphibian family (generic term)
+family ascaridae|1
+(noun)|Ascaridae|family Ascaridae|worm family (generic term)
+family asclepiadaceae|1
+(noun)|Asclepiadaceae|family Asclepiadaceae|milkweed family|dicot family (generic term)|magnoliopsid family (generic term)
+family asilidae|1
+(noun)|Asilidae|family Asilidae|arthropod family (generic term)
+family asparagaceae|1
+(noun)|Asparagaceae|family Asparagaceae|liliid monocot family (generic term)
+family aspergillaceae|1
+(noun)|Aspergillaceae|family Aspergillaceae|fungus family (generic term)
+family asphodelaceae|1
+(noun)|Asphodelaceae|family Asphodelaceae|liliid monocot family (generic term)
+family aspleniaceae|1
+(noun)|Aspleniaceae|family Aspleniaceae|fern family (generic term)
+family astacidae|1
+(noun)|Astacidae|family Astacidae|Astacura|arthropod family (generic term)
+family asteraceae|1
+(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family (generic term)
+family atherinidae|1
+(noun)|Atherinidae|family Atherinidae|fish family (generic term)
+family athiorhodaceae|1
+(noun)|Athiorhodaceae|family Athiorhodaceae|bacteria family (generic term)
+family athyriaceae|1
+(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family (generic term)
+family atrichornithidae|1
+(noun)|Atrichornithidae|family Atrichornithidae|bird family (generic term)
+family atropidae|1
+(noun)|Atropidae|family Atropidae|arthropod family (generic term)
+family aulostomidae|1
+(noun)|Aulostomidae|family Aulostomidae|fish family (generic term)
+family auriculariaceae|1
+(noun)|Auriculariaceae|family Auriculariaceae|fungus family (generic term)
+family avicenniaceae|1
+(noun)|Avicenniaceae|family Avicenniaceae|asterid dicot family (generic term)
+family azollaceae|1
+(noun)|Azollaceae|family Azollaceae|fern family (generic term)
+family babesiidae|1
+(noun)|Babesiidae|family Babesiidae|protoctist family (generic term)
+family bacillaceae|1
+(noun)|Bacillaceae|family Bacillaceae|bacteria family (generic term)
+family bacteroidaceae|1
+(noun)|Bacteroidaceae|family Bacteroidaceae|bacteria family (generic term)
+family balaenicipitidae|1
+(noun)|Balaenicipitidae|family Balaenicipitidae|bird family (generic term)
+family balaenidae|1
+(noun)|Balaenidae|family Balaenidae|mammal family (generic term)
+family balaenopteridae|1
+(noun)|Balaenopteridae|family Balaenopteridae|mammal family (generic term)
+family balanidae|1
+(noun)|Balanidae|family Balanidae|arthropod family (generic term)
+family balistidae|1
+(noun)|Balistidae|family Balistidae|fish family (generic term)
+family balsaminaceae|1
+(noun)|Balsaminaceae|family Balsaminaceae|balsam family|rosid dicot family (generic term)
+family bangiaceae|1
+(noun)|Bangiaceae|family Bangiaceae|protoctist family (generic term)
+family bathyergidae|1
+(noun)|Bathyergidae|family Bathyergidae|mammal family (generic term)
+family batidaceae|1
+(noun)|Batidaceae|family Batidaceae|saltwort family|caryophylloid dicot family (generic term)
+family batrachoididae|1
+(noun)|Batrachoididae|family Batrachoididae|fish family (generic term)
+family begoniaceae|1
+(noun)|Begoniaceae|family Begoniaceae|begonia family|dilleniid dicot family (generic term)
+family belemnitidae|1
+(noun)|Belemnitidae|family Belemnitidae|mollusk family (generic term)
+family belonidae|1
+(noun)|Belonidae|family Belonidae|fish family (generic term)
+family belostomatidae|1
+(noun)|Belostomatidae|family Belostomatidae|arthropod family (generic term)
+family bennettitaceae|1
+(noun)|Bennettitaceae|family Bennettitaceae|gymnosperm family (generic term)
+family berberidaceae|1
+(noun)|Berberidaceae|family Berberidaceae|barberry family|magnoliid dicot family (generic term)
+family betulaceae|1
+(noun)|Betulaceae|family Betulaceae|birch family|hamamelid dicot family (generic term)
+family bible|1
+(noun)|family Bible|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+family bignoniaceae|1
+(noun)|Bignoniaceae|family Bignoniaceae|asterid dicot family (generic term)
+family bittacidae|1
+(noun)|Bittacidae|family Bittacidae|family (generic term)
+family blastodiaceae|1
+(noun)|Blastodiaceae|family Blastodiaceae|fungus family (generic term)
+family blattidae|1
+(noun)|Blattidae|family Blattidae|arthropod family (generic term)
+family blechnaceae|1
+(noun)|Blechnaceae|family Blechnaceae|fern family (generic term)
+family blenniidae|1
+(noun)|Blenniidae|family Blenniidae|fish family (generic term)
+family boidae|1
+(noun)|Boidae|family Boidae|reptile family (generic term)
+family boletaceae|1
+(noun)|Boletaceae|family Boletaceae|fungus family (generic term)
+family bombacaceae|1
+(noun)|Bombacaceae|family Bombacaceae|dilleniid dicot family (generic term)
+family bombycidae|1
+(noun)|Bombycidae|family Bombycidae|arthropod family (generic term)
+family bombycillidae|1
+(noun)|Bombycillidae|family Bombycillidae|bird family (generic term)
+family bombyliidae|1
+(noun)|Bombyliidae|family Bombyliidae|arthropod family (generic term)
+family boraginaceae|1
+(noun)|Boraginaceae|family Boraginaceae|borage family|plant family (generic term)
+family bothidae|1
+(noun)|Bothidae|family Bothidae|fish family (generic term)
+family bovidae|1
+(noun)|Bovidae|family Bovidae|mammal family (generic term)
+family bradypodidae|1
+(noun)|Bradypodidae|family Bradypodidae|mammal family (generic term)
+family bramidae|1
+(noun)|Bramidae|family Bramidae|fish family (generic term)
+family branchiobdellidae|1
+(noun)|Branchiobdellidae|family Branchiobdellidae|worm family (generic term)
+family branchiostegidae|1
+(noun)|Branchiostegidae|family Branchiostegidae|fish family (generic term)
+family branchiostomidae|1
+(noun)|Amphioxidae|family Amphioxidae|Branchiostomidae|family Branchiostomidae|chordate family (generic term)
+family brassicaceae|1
+(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family (generic term)
+family brevicipitidae|1
+(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family (generic term)
+family bromeliaceae|1
+(noun)|Bromeliaceae|family Bromeliaceae|pineapple family|monocot family (generic term)|liliopsid family (generic term)
+family brotulidae|1
+(noun)|Brotulidae|family Brotulidae|fish family (generic term)
+family bruchidae|1
+(noun)|Bruchidae|family Bruchidae|arthropod family (generic term)
+family bryaceae|1
+(noun)|Bryaceae|family Bryaceae|moss family (generic term)
+family buccinidae|1
+(noun)|Buccinidae|family Buccinidae|mollusk family (generic term)
+family bucconidae|1
+(noun)|Bucconidae|family Bucconidae|bird family (generic term)
+family bucerotidae|1
+(noun)|Bucerotidae|family Bucerotidae|bird family (generic term)
+family bufonidae|1
+(noun)|Bufonidae|family Bufonidae|amphibian family (generic term)
+family burhinidae|1
+(noun)|Burhinidae|family Burhinidae|bird family (generic term)
+family burmanniaceae|1
+(noun)|Burmanniaceae|family Burmanniaceae|monocot family (generic term)|liliopsid family (generic term)
+family burseraceae|1
+(noun)|Burseraceae|family Burseraceae|torchwood family|rosid dicot family (generic term)
+family business|1
+(noun)|closed corporation (generic term)|close corporation (generic term)|private corporation (generic term)|privately held corporation (generic term)
+family buxaceae|1
+(noun)|Buxaceae|family Buxaceae|box family|dicot family (generic term)|magnoliopsid family (generic term)
+family cactaceae|1
+(noun)|Cactaceae|family Cactaceae|cactus family|caryophylloid dicot family (generic term)
+family caeciliadae|1
+(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family (generic term)
+family caeciliidae|1
+(noun)|Caeciliidae|family Caeciliidae|Caeciliadae|family Caeciliadae|amphibian family (generic term)
+family caenolestidae|1
+(noun)|Caenolestidae|family Caenolestidae|mammal family (generic term)
+family caesalpiniaceae|1
+(noun)|Caesalpiniaceae|family Caesalpiniaceae|rosid dicot family (generic term)
+family callionymidae|1
+(noun)|Callionymidae|family Callionymidae|fish family (generic term)
+family calliphoridae|1
+(noun)|Calliphoridae|family Calliphoridae|arthropod family (generic term)
+family callithricidae|1
+(noun)|Callithricidae|family Callithricidae|mammal family (generic term)
+family callitrichaceae|1
+(noun)|Callitrichaceae|family Callitrichaceae|rosid dicot family (generic term)
+family calostomataceae|1
+(noun)|Calostomataceae|family Calostomataceae|fungus family (generic term)
+family calycanthaceae|1
+(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|strawberry-shrub family|magnoliid dicot family (generic term)
+family camelidae|1
+(noun)|Camelidae|family Camelidae|mammal family (generic term)
+family campanulaceae|1
+(noun)|Campanulaceae|family Campanulaceae|bellflower family|plant family (generic term)
+family cancridae|1
+(noun)|Cancridae|family Cancridae|arthropod family (generic term)
+family canellaceae|1
+(noun)|Canellaceae|family Canellaceae|canella family|dilleniid dicot family (generic term)
+family canidae|1
+(noun)|Canidae|family Canidae|mammal family (generic term)
+family cannabidaceae|1
+(noun)|Cannabidaceae|family Cannabidaceae|hemp family|dicot family (generic term)|magnoliopsid family (generic term)
+family cannaceae|1
+(noun)|Cannaceae|family Cannaceae|monocot family (generic term)|liliopsid family (generic term)
+family capitonidae|1
+(noun)|Capitonidae|family Capitonidae|bird family (generic term)
+family capparidaceae|1
+(noun)|Capparidaceae|family Capparidaceae|caper family|dilleniid dicot family (generic term)
+family caprifoliaceae|1
+(noun)|Caprifoliaceae|family Caprifoliaceae|honeysuckle family|asterid dicot family (generic term)
+family caprimulgidae|1
+(noun)|Caprimulgidae|family Caprimulgidae|bird family (generic term)
+family caproidae|1
+(noun)|Caproidae|family Caproidae|fish family (generic term)
+family capromyidae|1
+(noun)|Capromyidae|family Capromyidae|mammal family (generic term)
+family capsidae|1
+(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family (generic term)
+family carabidae|1
+(noun)|Carabidae|family Carabidae|arthropod family (generic term)
+family carangidae|1
+(noun)|Carangidae|family Carangidae|fish family (generic term)
+family carapidae|1
+(noun)|Carapidae|family Carapidae|fish family (generic term)
+family carcharhinidae|1
+(noun)|Carcharhinidae|family Carcharhinidae|fish family (generic term)
+family carchariidae|1
+(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family (generic term)
+family cardiidae|1
+(noun)|Cardiidae|family Cardiidae|mollusk family (generic term)
+family cariamidae|1
+(noun)|Cariamidae|family Cariamidae|bird family (generic term)
+family caricaceae|1
+(noun)|Caricaceae|family Caricaceae|papaya family|dilleniid dicot family (generic term)
+family carpinaceae|1
+(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family (generic term)
+family caryocaraceae|1
+(noun)|Caryocaraceae|family Caryocaraceae|dilleniid dicot family (generic term)
+family caryophyllaceae|1
+(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|pink family|caryophylloid dicot family (generic term)
+family castoridae|1
+(noun)|Castoridae|family Castoridae|mammal family (generic term)
+family casuaridae|1
+(noun)|Casuaridae|family Casuaridae|bird family (generic term)
+family casuarinaceae|1
+(noun)|Casuarinaceae|family Casuarinaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family cathartidae|1
+(noun)|Cathartidae|family Cathartidae|bird family (generic term)
+family catostomidae|1
+(noun)|Catostomidae|family Catostomidae|fish family (generic term)
+family caviidae|1
+(noun)|Caviidae|family Caviidae|mammal family (generic term)
+family cebidae|1
+(noun)|Cebidae|family Cebidae|mammal family (generic term)
+family cecidomyidae|1
+(noun)|Cecidomyidae|family Cecidomyidae|arthropod family (generic term)
+family cecropiaceae|1
+(noun)|Cecropiaceae|family Cecropiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family celastraceae|1
+(noun)|Celastraceae|family Celastraceae|spindle-tree family|staff-tree family|dicot family (generic term)|magnoliopsid family (generic term)
+family centrarchidae|1
+(noun)|Centrarchidae|family Centrarchidae|fish family (generic term)
+family centriscidae|1
+(noun)|Centriscidae|family Centriscidae|fish family (generic term)
+family centropomidae|1
+(noun)|Centropomidae|family Centropomidae|fish family (generic term)
+family cephalobidae|1
+(noun)|Cephalobidae|family Cephalobidae|worm family (generic term)
+family cephalotaceae|1
+(noun)|Cephalotaceae|family Cephalotaceae|rosid dicot family (generic term)
+family cephalotaxaceae|1
+(noun)|Cephalotaxaceae|family Cephalotaxaceae|plum-yew family|gymnosperm family (generic term)
+family cerambycidae|1
+(noun)|Cerambycidae|family Cerambycidae|arthropod family (generic term)
+family ceratodontidae|1
+(noun)|Ceratodontidae|family Ceratodontidae|fish family (generic term)
+family ceratophyllaceae|1
+(noun)|Ceratophyllaceae|family Ceratophyllaceae|magnoliid dicot family (generic term)
+family ceratopogonidae|1
+(noun)|Ceratopogonidae|family Ceratopogonidae|arthropod family (generic term)
+family ceratopsidae|1
+(noun)|Ceratopsidae|family Ceratopsidae|reptile family (generic term)
+family ceratostomataceae|1
+(noun)|Ceratostomataceae|family Ceratostomataceae|fungus family (generic term)
+family cercidiphyllaceae|1
+(noun)|Cercidiphyllaceae|family Cercidiphyllaceae|magnoliid dicot family (generic term)
+family cercopidae|1
+(noun)|Cercopidae|family Cercopidae|arthropod family (generic term)
+family cercopithecidae|1
+(noun)|Cercopithecidae|family Cercopithecidae|mammal family (generic term)
+family certhiidae|1
+(noun)|Certhiidae|family Certhiidae|bird family (generic term)
+family cervidae|1
+(noun)|Cervidae|family Cervidae|mammal family (generic term)
+family cestidae|1
+(noun)|Cestidae|family Cestidae|ctenophore family (generic term)
+family cetorhinidae|1
+(noun)|Cetorhinidae|family Cetorhinidae|fish family (generic term)
+family chaetodontidae|1
+(noun)|Chaetodontidae|family Chaetodontidae|fish family (generic term)
+family chalcidae|1
+(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family (generic term)
+family chalcididae|1
+(noun)|Chalcididae|family Chalcididae|Chalcidae|family Chalcidae|arthropod family (generic term)
+family chamaeleonidae|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+family chamaeleontidae|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+family characeae|1
+(noun)|Characeae|family Characeae|protoctist family (generic term)
+family characidae|1
+(noun)|Characidae|family Characidae|fish family (generic term)
+family characinidae|1
+(noun)|Characinidae|family Characinidae|fish family (generic term)
+family charadriidae|1
+(noun)|Charadriidae|family Charadriidae|bird family (generic term)
+family chelonidae|1
+(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family (generic term)
+family cheloniidae|1
+(noun)|Cheloniidae|family Cheloniidae|Chelonidae|family Chelonidae|reptile family (generic term)
+family chelydridae|1
+(noun)|Chelydridae|family Chelydridae|reptile family (generic term)
+family chenopodiaceae|1
+(noun)|Chenopodiaceae|family Chenopodiaceae|goosefoot family|caryophylloid dicot family (generic term)
+family chermidae|1
+(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family (generic term)
+family chimaeridae|1
+(noun)|Chimaeridae|family Chimaeridae|fish family (generic term)
+family chinchillidae|1
+(noun)|Chinchillidae|family Chinchillidae|mammal family (generic term)
+family chironomidae|1
+(noun)|Chironomidae|family Chironomidae|arthropod family (generic term)
+family chlamydiaceae|1
+(noun)|Chlamydiaceae|family Chlamydiaceae|bacteria family (generic term)
+family chlamydomonadaceae|1
+(noun)|Chlamydomonadaceae|family Chlamydomonadaceae|protoctist family (generic term)
+family chloranthaceae|1
+(noun)|Chloranthaceae|family Chloranthaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family chlorophthalmidae|1
+(noun)|Chlorophthalmidae|family Chlorophthalmidae|fish family (generic term)
+family chrysochloridae|1
+(noun)|Chrysochloridae|family Chrysochloridae|mammal family (generic term)
+family chrysomelidae|1
+(noun)|Chrysomelidae|family Chrysomelidae|arthropod family (generic term)
+family chrysopidae|1
+(noun)|Chrysopidae|family Chrysopidae|arthropod family (generic term)
+family chytridiaceae|1
+(noun)|Chytridiaceae|family Chytridiaceae|fungus family (generic term)
+family cicadellidae|1
+(noun)|Cicadellidae|family Cicadellidae|arthropod family (generic term)
+family cicadidae|1
+(noun)|Cicadidae|family Cicadidae|arthropod family (generic term)
+family cichlidae|1
+(noun)|Cichlidae|family Cichlidae|fish family (generic term)
+family cicindelidae|1
+(noun)|Cicindelidae|family Cicindelidae|arthropod family (generic term)
+family ciconiidae|1
+(noun)|Ciconiidae|family Ciconiidae|bird family (generic term)
+family cimicidae|1
+(noun)|Cimicidae|family Cimicidae|arthropod family (generic term)
+family cinclidae|1
+(noun)|Cinclidae|family Cinclidae|bird family (generic term)
+family circle|1
+(noun)|second balcony|upper balcony|peanut gallery|area (generic term)
+family cistaceae|1
+(noun)|Cistaceae|family Cistaceae|rockrose family|dilleniid dicot family (generic term)
+family cladoniaceae|1
+(noun)|Cladoniaceae|family Cladoniaceae|fungus family (generic term)
+family clathraceae|1
+(noun)|Clathraceae|family Clathraceae|fungus family (generic term)
+family clavariaceae|1
+(noun)|Clavariaceae|family Clavariaceae|fungus family (generic term)
+family cleridae|1
+(noun)|Cleridae|family Cleridae|arthropod family (generic term)
+family clethraceae|1
+(noun)|Clethraceae|family Clethraceae|white-alder family|dilleniid dicot family (generic term)
+family clinidae|1
+(noun)|Clinidae|family Clinidae|fish family (generic term)
+family clupeidae|1
+(noun)|Clupeidae|family Clupeidae|fish family (generic term)
+family clusiaceae|1
+(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family (generic term)
+family cobitidae|1
+(noun)|Cobitidae|family Cobitidae|fish family (generic term)
+family coccidae|1
+(noun)|Coccidae|family Coccidae|arthropod family (generic term)
+family coccinellidae|1
+(noun)|Coccinellidae|family Coccinellidae|arthropod family (generic term)
+family coerebidae|1
+(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family (generic term)
+family colchicaceae|1
+(noun)|Colchicaceae|family Colchicaceae|liliid monocot family (generic term)
+family colubridae|1
+(noun)|Colubridae|family Colubridae|reptile family (generic term)
+family columbidae|1
+(noun)|Columbidae|family Columbidae|bird family (generic term)
+family comatulidae|1
+(noun)|Comatulidae|family Comatulidae|Antedonidae (generic term)|family Antedonidae (generic term)
+family combretaceae|1
+(noun)|Combretaceae|family Combretaceae|combretum family|dicot family (generic term)|magnoliopsid family (generic term)
+family commelinaceae|1
+(noun)|Commelinaceae|family Commelinaceae|spiderwort family|monocot family (generic term)|liliopsid family (generic term)
+family compositae|1
+(noun)|Compositae|family Compositae|Asteraceae|family Asteraceae|aster family|asterid dicot family (generic term)
+family congridae|1
+(noun)|Congridae|family Congridae|fish family (generic term)
+family connaraceae|1
+(noun)|Connaraceae|family Connaraceae|zebrawood family|rosid dicot family (generic term)
+family convallariaceae|1
+(noun)|Convallariaceae|family Convallariaceae|liliid monocot family (generic term)
+family convolvulaceae|1
+(noun)|Convolvulaceae|family Convolvulaceae|morning-glory family|dicot family (generic term)|magnoliopsid family (generic term)
+family coprinaceae|1
+(noun)|Coprinaceae|family Coprinaceae|fungus family (generic term)
+family coraciidae|1
+(noun)|Coraciidae|family Coraciidae|bird family (generic term)
+family cordaitaceae|1
+(noun)|Cordaitaceae|family Cordaitaceae|gymnosperm family (generic term)
+family cordylidae|1
+(noun)|Cordylidae|family Cordylidae|reptile genus (generic term)
+family coregonidae|1
+(noun)|Coregonidae|family Coregonidae|fish family (generic term)
+family coreidae|1
+(noun)|Coreidae|family Coreidae|arthropod family (generic term)
+family corixidae|1
+(noun)|Corixidae|family Corixidae|arthropod family (generic term)
+family cornaceae|1
+(noun)|Cornaceae|family Cornaceae|dogwood family|rosid dicot family (generic term)
+family cortinariaceae|1
+(noun)|Cortinariaceae|family Cortinariaceae|fungus family (generic term)
+family corvidae|1
+(noun)|Corvidae|family Corvidae|bird family (generic term)
+family corydalidae|1
+(noun)|Corydalidae|family Corydalidae|arthropod family (generic term)
+family corylaceae|1
+(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family (generic term)
+family corynebacteriaceae|1
+(noun)|Corynebacteriaceae|family Corynebacteriaceae|bacteria family (generic term)
+family coryphaenidae|1
+(noun)|Coryphaenidae|family Coryphaenidae|fish family (generic term)
+family cotingidae|1
+(noun)|Cotingidae|family Cotingidae|bird family (generic term)
+family cottidae|1
+(noun)|Cottidae|family Cottidae|fish family (generic term)
+family court|1
+(noun)|domestic relations court|court of domestic relations|court (generic term)|tribunal (generic term)|judicature (generic term)
+family cracidae|1
+(noun)|Cracidae|family Cracidae|bird family (generic term)
+family cracticidae|1
+(noun)|Cracticidae|family Cracticidae|bird family (generic term)
+family crangonidae|1
+(noun)|Crangonidae|family Crangonidae|arthropod family (generic term)
+family crassulaceae|1
+(noun)|Crassulaceae|family Crassulaceae|stonecrop family|plant family (generic term)
+family cricetidae|1
+(noun)|Cricetidae|family Cricetidae|mammal family (generic term)
+family crocodylidae|1
+(noun)|Crocodylidae|family Crocodylidae|reptile family (generic term)
+family crotalidae|1
+(noun)|Crotalidae|family Crotalidae|reptile family (generic term)
+family cruciferae|1
+(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|mustard family|dilleniid dicot family (generic term)
+family cryptobranchidae|1
+(noun)|Cryptobranchidae|family Cryptobranchidae|amphibian family (generic term)
+family cryptocercidae|1
+(noun)|Cryptocercidae|family Cryptocercidae|arthropod family (generic term)
+family cryptogrammataceae|1
+(noun)|Cryptogrammataceae|family Cryptogrammataceae|fern family (generic term)
+family ctenizidae|1
+(noun)|Ctenizidae|family Ctenizidae|arthropod family (generic term)
+family cuculidae|1
+(noun)|Cuculidae|family Cuculidae|bird family (generic term)
+family cucurbitaceae|1
+(noun)|Cucurbitaceae|family Cucurbitaceae|gourd family|dicot family (generic term)|magnoliopsid family (generic term)
+family culicidae|1
+(noun)|Culicidae|family Culicidae|arthropod family (generic term)
+family cunoniaceae|1
+(noun)|Cunoniaceae|family Cunoniaceae|cunonia family|rosid dicot family (generic term)
+family cupressaceae|1
+(noun)|Cupressaceae|family Cupressaceae|cypress family|gymnosperm family (generic term)
+family curculionidae|1
+(noun)|Curculionidae|family Curculionidae|arthropod family (generic term)
+family cuterebridae|1
+(noun)|Cuterebridae|family Cuterebridae|arthropod family (generic term)
+family cyatheaceae|1
+(noun)|Cyatheaceae|family Cyatheaceae|fern family (generic term)
+family cycadaceae|1
+(noun)|Cycadaceae|family Cycadaceae|cycad family|gymnosperm family (generic term)
+family cyclopteridae|1
+(noun)|Cyclopteridae|family Cyclopteridae|fish family (generic term)
+family cymatiidae|1
+(noun)|Cymatiidae|family Cymatiidae|mollusk family (generic term)
+family cynipidae|1
+(noun)|Cynipidae|family Cynipidae|arthropod family (generic term)
+family cynocephalidae|1
+(noun)|Cynocephalidae|family Cynocephalidae|mammal family (generic term)
+family cynoglossidae|1
+(noun)|Cynoglossidae|family Cynoglossidae|fish family (generic term)
+family cyperaceae|1
+(noun)|Cyperaceae|family Cyperaceae|sedge family|monocot family (generic term)|liliopsid family (generic term)
+family cypraeidae|1
+(noun)|Cypraeidae|family Cypraeidae|mollusk family (generic term)
+family cyprinidae|1
+(noun)|Cyprinidae|family Cyprinidae|fish family (generic term)
+family cyprinodontidae|1
+(noun)|Cyprinodontidae|family Cyprinodontidae|fish family (generic term)
+family cyrilliaceae|1
+(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|titi family|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+family dacninae|1
+(noun)|Coerebidae|family Coerebidae|Dacninae|family Dacninae|bird family (generic term)
+family dacrymycetaceae|1
+(noun)|Dacrymycetaceae|family Dacrymycetaceae|fungus family (generic term)
+family dactylopiidae|1
+(noun)|Dactylopiidae|family Dactylopiidae|arthropod family (generic term)
+family dactylopteridae|1
+(noun)|Dactylopteridae|family Dactylopteridae|fish family (generic term)
+family dactyloscopidae|1
+(noun)|Dactyloscopidae|family Dactyloscopidae|fish family (generic term)
+family danaidae|1
+(noun)|Danaidae|family Danaidae|arthropod family (generic term)
+family dasyatidae|1
+(noun)|Dasyatidae|family Dasyatidae|fish family (generic term)
+family dasypodidae|1
+(noun)|Dasypodidae|family Dasypodidae|mammal family (generic term)
+family dasyproctidae|1
+(noun)|Dasyproctidae|family Dasyproctidae|mammal family (generic term)
+family dasyuridae|1
+(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family (generic term)
+family dasyurinae|1
+(noun)|Dasyuridae|family Dasyuridae|family Dasyurinae|mammal family (generic term)
+family daubentoniidae|1
+(noun)|Daubentoniidae|family Daubentoniidae|mammal family (generic term)|Lemuroidea (generic term)|suborder Lemuroidea (generic term)
+family davalliaceae|1
+(noun)|Davalliaceae|family Davalliaceae|fern family (generic term)
+family delphinidae|1
+(noun)|Delphinidae|family Delphinidae|mammal family (generic term)
+family dematiaceae|1
+(noun)|Dematiaceae|family Dematiaceae|fungus family (generic term)
+family dendrocolaptidae|1
+(noun)|Dendrocolaptidae|family Dendrocolaptidae|bird family (generic term)
+family dennstaedtiaceae|1
+(noun)|Dennstaedtiaceae|family Dennstaedtiaceae|fern family (generic term)
+family dermestidae|1
+(noun)|Dermestidae|family Dermestidae|arthropod family (generic term)
+family dermochelyidae|1
+(noun)|Dermochelyidae|family Dermochelyidae|reptile family (generic term)
+family desmidiaceae|1
+(noun)|Desmidiaceae|family Desmidiaceae|protoctist family (generic term)
+family desmodontidae|1
+(noun)|Desmodontidae|family Desmodontidae|mammal family (generic term)
+family diapensiaceae|1
+(noun)|Diapensiaceae|family Diapensiaceae|diapensia family|dilleniid dicot family (generic term)
+family diaspididae|1
+(noun)|Diaspididae|family Diaspididae|arthropod family (generic term)
+family dicamptodontidae|1
+(noun)|Dicamptodontidae|family Dicamptodontidae|amphibian family (generic term)
+family dicksoniaceae|1
+(noun)|Dicksoniaceae|family Dicksoniaceae|fern family (generic term)
+family dicranaceae|1
+(noun)|Dicranaceae|family Dicranaceae|moss family (generic term)
+family didelphidae|1
+(noun)|Didelphidae|family Didelphidae|mammal family (generic term)
+family dilleniaceae|1
+(noun)|Dilleniaceae|family Dilleniaceae|dilleniid dicot family (generic term)
+family dinornithidae|1
+(noun)|Dinornithidae|family Dinornithidae|bird family (generic term)
+family diodontidae|1
+(noun)|Diodontidae|family Diodontidae|fish family (generic term)
+family diomedeidae|1
+(noun)|Diomedeidae|family Diomedeidae|bird family (generic term)
+family dioscoreaceae|1
+(noun)|Dioscoreaceae|family Dioscoreaceae|yam family|plant family (generic term)
+family dipodidae|1
+(noun)|Dipodidae|family Dipodidae|mammal family (generic term)
+family dipsacaceae|1
+(noun)|Dipsacaceae|family Dipsacaceae|asterid dicot family (generic term)
+family dipterocarpaceae|1
+(noun)|Dipterocarpaceae|family Dipterocarpaceae|dilleniid dicot family (generic term)
+family discoglossidae|1
+(noun)|Discoglossidae|family Discoglossidae|amphibian family (generic term)
+family doctor|1
+(noun)|general practitioner (generic term)|GP (generic term)
+family doliolidae|1
+(noun)|Doliolidae|family Doliolidae|chordate family (generic term)
+family dracunculidae|1
+(noun)|Dracunculidae|family Dracunculidae|worm family (generic term)
+family drepanididae|1
+(noun)|Drepanididae|family Drepanididae|bird family (generic term)
+family dromaeosauridae|1
+(noun)|Dromaeosauridae|family Dromaeosauridae|reptile family (generic term)
+family droseraceae|1
+(noun)|Droseraceae|family Droseraceae|sundew family|dicot family (generic term)|magnoliopsid family (generic term)
+family drosophilidae|1
+(noun)|Drosophilidae|family Drosophilidae|arthropod family (generic term)
+family dryopteridaceae|1
+(noun)|Dryopteridaceae|family Dryopteridaceae|Athyriaceae|family Athyriaceae|fern family (generic term)
+family dugongidae|1
+(noun)|Dugongidae|family Dugongidae|mammal family (generic term)
+family dytiscidae|1
+(noun)|Dytiscidae|family Dytiscidae|arthropod family (generic term)
+family ebenaceae|1
+(noun)|Ebenaceae|family Ebenaceae|ebony family|dicot family (generic term)|magnoliopsid family (generic term)
+family echeneidae|1
+(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family (generic term)
+family echeneididae|1
+(noun)|Echeneididae|family Echeneididae|family Echeneidae|fish family (generic term)
+family edaphosauridae|1
+(noun)|Edaphosauridae|family Edaphosauridae|reptile family (generic term)
+family eimeriidae|1
+(noun)|Eimeriidae|family Eimeriidae|protoctist family (generic term)
+family elaeagnaceae|1
+(noun)|Elaeagnaceae|family Elaeagnaceae|oleaster family|dicot family (generic term)|magnoliopsid family (generic term)
+family elaeocarpaceae|1
+(noun)|Elaeocarpaceae|family Elaeocarpaceae|elaeocarpus family|dilleniid dicot family (generic term)
+family elapidae|1
+(noun)|Elapidae|family Elapidae|reptile family (generic term)
+family elateridae|1
+(noun)|Elateridae|family Elateridae|arthropod family (generic term)
+family electrophoridae|1
+(noun)|Electrophoridae|family Electrophoridae|fish family (generic term)
+family eleotridae|1
+(noun)|Eleotridae|family Eleotridae|fish family (generic term)
+family elephantidae|1
+(noun)|Elephantidae|family Elephantidae|mammal family (generic term)
+family elopidae|1
+(noun)|Elopidae|family Elopidae|fish family (generic term)
+family embiotocidae|1
+(noun)|Embiotocidae|family Embiotocidae|fish family (generic term)
+family empetraceae|1
+(noun)|Empetraceae|family Empetraceae|crowberry family|dicot family (generic term)|magnoliopsid family (generic term)
+family emydidae|1
+(noun)|Emydidae|family Emydidae|reptile family (generic term)
+family endamoebidae|1
+(noun)|Endamoebidae|family Endamoebidae|family (generic term)
+family engraulidae|1
+(noun)|Engraulidae|family Engraulidae|fish family (generic term)
+family enterobacteriaceae|1
+(noun)|Enterobacteriaceae|family Enterobacteriaceae|bacteria family (generic term)
+family entolomataceae|1
+(noun)|Entolomataceae|family Entolomataceae|fungus family (generic term)
+family entomophthoraceae|1
+(noun)|Entomophthoraceae|family Entomophthoraceae|fungus family (generic term)
+family epacridaceae|1
+(noun)|Epacridaceae|family Epacridaceae|epacris family|dilleniid dicot family (generic term)
+family ephedraceae|1
+(noun)|Ephedraceae|family Ephedraceae|gymnosperm family (generic term)
+family ephemeridae|1
+(noun)|Ephemeridae|family Ephemeridae|arthropod family (generic term)
+family ephippidae|1
+(noun)|Ephippidae|family Ephippidae|fish family (generic term)
+family equidae|1
+(noun)|Equidae|family Equidae|mammal family (generic term)
+family equisetaceae|1
+(noun)|Equisetaceae|family Equisetaceae|horsetail family|fern family (generic term)
+family erethizontidae|1
+(noun)|Erethizontidae|family Erethizontidae|mammal family (generic term)
+family ericaceae|1
+(noun)|Ericaceae|family Ericaceae|heath family|dilleniid dicot family (generic term)|Ericales (generic term)|order Ericales (generic term)
+family erinaceidae|1
+(noun)|Erinaceidae|family Erinaceidae|mammal family (generic term)
+family eriocaulaceae|1
+(noun)|Eriocaulaceae|family Eriocaulaceae|pipewort family|monocot family (generic term)|liliopsid family (generic term)
+family erysiphaceae|1
+(noun)|Erysiphaceae|family Erysiphaceae|fungus family (generic term)
+family erythroxylaceae|1
+(noun)|Erythroxylaceae|family Erythroxylaceae|plant family (generic term)
+family eschrichtiidae|1
+(noun)|Eschrichtiidae|family Eschrichtiidae|mammal family (generic term)
+family esocidae|1
+(noun)|Esocidae|family Esocidae|fish family (generic term)
+family euglenaceae|1
+(noun)|Euglenaceae|family Euglenaceae|protoctist family (generic term)
+family euphorbiaceae|1
+(noun)|Euphorbiaceae|family Euphorbiaceae|spurge family|rosid dicot family (generic term)
+family eurylaimidae|1
+(noun)|Eurylaimidae|family Eurylaimidae|bird family (generic term)
+family exocoetidae|1
+(noun)|Exocoetidae|family Exocoetidae|fish family (generic term)
+family fabaceae|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family (generic term)
+family fagaceae|1
+(noun)|Fagaceae|family Fagaceae|beech family|hamamelid dicot family (generic term)
+family falconidae|1
+(noun)|Falconidae|family Falconidae|bird family (generic term)
+family fasciolidae|1
+(noun)|Fasciolidae|family Fasciolidae|worm family (generic term)
+family felidae|1
+(noun)|Felidae|family Felidae|mammal family (generic term)
+family filariidae|1
+(noun)|Filariidae|family Filariidae|worm family (generic term)
+family fissurellidae|1
+(noun)|Fissurellidae|family Fissurellidae|mollusk family (generic term)
+family fistulariidae|1
+(noun)|Fistulariidae|family Fistulariidae|fish family (generic term)
+family fistulinaceae|1
+(noun)|Fistulinaceae|family Fistulinaceae|fungus family (generic term)
+family flacourtiaceae|1
+(noun)|Flacourtiaceae|family Flacourtiaceae|flacourtia family|dilleniid dicot family (generic term)
+family forficulidae|1
+(noun)|Forficulidae|family Forficulidae|arthropod family (generic term)
+family formicariidae|1
+(noun)|Formicariidae|family Formicariidae|bird family (generic term)
+family formicidae|1
+(noun)|Formicidae|family Formicidae|arthropod family (generic term)
+family fouquieriaceae|1
+(noun)|Fouquieriaceae|family Fouquieriaceae|dilleniid dicot family (generic term)
+family fregatidae|1
+(noun)|Fregatidae|family Fregatidae|bird family (generic term)
+family fringillidae|1
+(noun)|Fringillidae|family Fringillidae|bird family (generic term)
+family fucaceae|1
+(noun)|Fucaceae|family Fucaceae|protoctist family (generic term)
+family fulgoridae|1
+(noun)|Fulgoridae|family Fulgoridae|arthropod family (generic term)
+family fumariaceae|1
+(noun)|Fumariaceae|family Fumariaceae|fumitory family|dilleniid dicot family (generic term)
+family funkaceae|1
+(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family (generic term)
+family furnariidae|1
+(noun)|Furnariidae|family Furnariidae|bird family (generic term)
+family gadidae|1
+(noun)|Gadidae|family Gadidae|fish family (generic term)
+family galbulidae|1
+(noun)|Galbulidae|family Galbulidae|bird family (generic term)
+family gasterophilidae|1
+(noun)|Gasterophilidae|family Gasterophilidae|arthropod family (generic term)
+family gasterosteidae|1
+(noun)|Gasterosteidae|family Gasterosteidae|fish family (generic term)
+family gavialidae|1
+(noun)|Gavialidae|family Gavialidae|reptile family (generic term)
+family gavidae|1
+(noun)|Gavidae|family Gavidae|bird family (generic term)
+family geastraceae|1
+(noun)|Geastraceae|family Geastraceae|fungus family (generic term)
+family gekkonidae|1
+(noun)|Gekkonidae|family Gekkonidae|reptile family (generic term)
+family gelechiidae|1
+(noun)|Gelechiidae|family Gelechiidae|arthropod family (generic term)
+family gempylidae|1
+(noun)|Gempylidae|family Gempylidae|fish family (generic term)
+family gentianaceae|1
+(noun)|Gentianaceae|family Gentianaceae|gentian family|dicot family (generic term)|magnoliopsid family (generic term)
+family geoglossaceae|1
+(noun)|Geoglossaceae|family Geoglossaceae|fungus family (generic term)
+family geometridae|1
+(noun)|Geometridae|family Geometridae|arthropod family (generic term)
+family geomyidae|1
+(noun)|Geomyidae|family Geomyidae|mammal family (generic term)
+family geophilidae|1
+(noun)|Geophilidae|family Geophilidae|arthropod family (generic term)
+family geraniaceae|1
+(noun)|Geraniaceae|family Geraniaceae|geranium family|rosid dicot family (generic term)
+family gerreidae|1
+(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family (generic term)
+family gerridae|2
+(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family (generic term)
+(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family (generic term)
+family gerrididae|1
+(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family (generic term)
+family gesneriaceae|1
+(noun)|Gesneriaceae|family Gesneriaceae|gesneria family|asterid dicot family (generic term)
+family gigartinaceae|1
+(noun)|Gigartinaceae|family Gigartinaceae|protoctist family (generic term)
+family ginkgoaceae|1
+(noun)|Ginkgoaceae|family Ginkgoaceae|ginkgo family|gymnosperm family (generic term)
+family giraffidae|1
+(noun)|Giraffidae|family Giraffidae|mammal family (generic term)
+family glareolidae|1
+(noun)|Glareolidae|family Glareolidae|bird family (generic term)
+family gleicheniaceae|1
+(noun)|Gleicheniaceae|family Gleicheniaceae|fern family (generic term)
+family gliridae|1
+(noun)|Gliridae|family Gliridae|mammal family (generic term)
+family globigerinidae|1
+(noun)|Globigerinidae|family Globigerinidae|protoctist family (generic term)
+family glossinidae|1
+(noun)|Glossinidae|family Glossinidae|arthropod family (generic term)
+family gnetaceae|1
+(noun)|Gnetaceae|family Gnetaceae|gymnosperm family (generic term)
+family gobiesocidae|1
+(noun)|Gobiesocidae|family Gobiesocidae|fish family (generic term)
+family gobiidae|1
+(noun)|Gobiidae|family Gobiidae|fish family (generic term)
+family gomphotheriidae|1
+(noun)|Gomphotheriidae|family Gomphotheriidae|mammal family (generic term)
+family gonorhynchidae|1
+(noun)|Gonorhynchidae|family Gonorhynchidae|fish family (generic term)
+family goodeniaceae|1
+(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family (generic term)|magnoliopsid family (generic term)
+family gracilariidae|1
+(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family (generic term)
+family graminaceae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+family gramineae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+family grossulariaceae|1
+(noun)|Grossulariaceae|family Grossulariaceae|gooseberry family|plant family (generic term)
+family gruidae|1
+(noun)|Gruidae|family Gruidae|bird family (generic term)
+family gryllidae|1
+(noun)|Gryllidae|family Gryllidae|arthropod family (generic term)
+family guttiferae|1
+(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family (generic term)
+family gyrinidae|1
+(noun)|Gyrinidae|family Gyrinidae|arthropod family (generic term)
+family hadrosauridae|1
+(noun)|Hadrosauridae|family Hadrosauridae|reptile family (generic term)
+family haematopodidae|1
+(noun)|Haematopodidae|family Haematopodidae|bird family (generic term)
+family haemodoraceae|1
+(noun)|Haemodoraceae|family Haemodoraceae|bloodwort family|monocot family (generic term)|liliopsid family (generic term)
+family haemoproteidae|1
+(noun)|Haemoproteidae|family Haemoproteidae|protoctist family (generic term)
+family haemulidae|1
+(noun)|Haemulidae|family Haemulidae|fish family (generic term)
+family halictidae|1
+(noun)|Halictidae|family Halictidae|arthropod family (generic term)
+family haliotidae|1
+(noun)|Haliotidae|family Haliotidae|mollusk family (generic term)
+family haloragaceae|1
+(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family (generic term)|magnoliopsid family (generic term)
+family haloragidaceae|1
+(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family (generic term)|magnoliopsid family (generic term)
+family hamamelidaceae|1
+(noun)|Hamamelidaceae|family Hamamelidaceae|witch-hazel family|hamamelid dicot family (generic term)
+family helicidae|1
+(noun)|Helicidae|family Helicidae|mollusk family (generic term)
+family helodermatidae|1
+(noun)|Helodermatidae|family Helodermatidae|reptile family (generic term)
+family helotiaceae|1
+(noun)|Helotiaceae|family Helotiaceae|fungus family (generic term)
+family helvellaceae|1
+(noun)|Helvellaceae|family Helvellaceae|fungus family (generic term)
+family hemerobiidae|1
+(noun)|Hemerobiidae|family Hemerobiidae|arthropod family (generic term)
+family hemerocallidaceae|1
+(noun)|Hemerocallidaceae|family Hemerocallidaceae|liliid monocot family (generic term)
+family hemiprocnidae|1
+(noun)|Hemiprocnidae|family Hemiprocnidae|bird family (generic term)
+family hemiramphidae|1
+(noun)|Hemiramphidae|family Hemiramphidae|fish family (generic term)
+family heteromyidae|1
+(noun)|Heteromyidae|family Heteromyidae|mammal family (generic term)
+family hexagrammidae|1
+(noun)|Hexagrammidae|family Hexagrammidae|fish family (generic term)
+family hexanchidae|1
+(noun)|Hexanchidae|family Hexanchidae|fish family (generic term)
+family hippoboscidae|1
+(noun)|Hippoboscidae|family Hippoboscidae|arthropod family (generic term)
+family hippocastanaceae|1
+(noun)|Hippocastanaceae|family Hippocastanaceae|horse-chestnut family|dicot family (generic term)|magnoliopsid family (generic term)
+family hippopotamidae|1
+(noun)|Hippopotamidae|family Hippopotamidae|mammal family (generic term)
+family hipposideridae|1
+(noun)|Hipposideridae|family Hipposideridae|mammal family (generic term)
+family hirudinidae|1
+(noun)|Hirudinidae|family Hirudinidae|worm family (generic term)
+family hirundinidae|1
+(noun)|Hirundinidae|family Hirundinidae|bird family (generic term)
+family history|1
+(noun)|case history (generic term)
+family holocentridae|1
+(noun)|Holocentridae|family Holocentridae|fish family (generic term)
+family holothuridae|1
+(noun)|Holothuridae|family Holothuridae|echinoderm family (generic term)
+family homaridae|1
+(noun)|Homaridae|family Homaridae|arthropod family (generic term)
+family hominidae|1
+(noun)|Hominidae|family Hominidae|mammal family (generic term)
+family hostaceae|1
+(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family (generic term)
+family hyacinthaceae|1
+(noun)|Hyacinthaceae|family Hyacinthaceae|liliid monocot family (generic term)
+family hyaenidae|1
+(noun)|Hyaenidae|family Hyaenidae|mammal family (generic term)
+family hydnaceae|1
+(noun)|Hydnaceae|family Hydnaceae|fungus family (generic term)
+family hydnoraceae|1
+(noun)|Hydnoraceae|family Hydnoraceae|dicot family (generic term)|magnoliopsid family (generic term)
+family hydrangeaceae|1
+(noun)|Hydrangeaceae|family Hydrangeaceae|hydrangea family|rosid dicot family (generic term)
+family hydrobatidae|1
+(noun)|Hydrobatidae|family Hydrobatidae|bird family (generic term)
+family hydrocharidaceae|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family (generic term)|liliopsid family (generic term)
+family hydrocharitaceae|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family (generic term)|liliopsid family (generic term)
+family hydrochoeridae|1
+(noun)|Hydrochoeridae|family Hydrochoeridae|mammal family (generic term)
+family hydrophidae|1
+(noun)|Hydrophidae|family Hydrophidae|reptile family (generic term)
+family hydrophyllaceae|1
+(noun)|Hydrophyllaceae|family Hydrophyllaceae|waterleaf family|asterid dicot family (generic term)
+family hygrophoraceae|1
+(noun)|Hygrophoraceae|family Hygrophoraceae|fungus family (generic term)
+family hylidae|1
+(noun)|Hylidae|family Hylidae|amphibian family (generic term)
+family hylobatidae|1
+(noun)|Hylobatidae|family Hylobatidae|mammal family (generic term)
+family hymenophyllaceae|1
+(noun)|Hymenophyllaceae|family Hymenophyllaceae|fern family (generic term)
+family hypericaceae|1
+(noun)|Hypericaceae|family Hypericaceae|dilleniid dicot family (generic term)
+family hyperodontidae|1
+(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family (generic term)
+family hypocreaceae|1
+(noun)|Hypocreaceae|family Hypocreaceae|fungus family (generic term)
+family hypodermatidae|1
+(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family (generic term)
+family hypoxidaceae|1
+(noun)|Hypoxidaceae|family Hypoxidaceae|liliid monocot family (generic term)
+family hystricidae|1
+(noun)|Hystricidae|family Hystricidae|mammal family (generic term)
+family ibidiidae|1
+(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family (generic term)
+family ichneumonidae|1
+(noun)|Ichneumonidae|family Ichneumonidae|arthropod family (generic term)
+family ichthyosauridae|1
+(noun)|Ichthyosauridae|family Ichthyosauridae|reptile family (generic term)
+family icteridae|1
+(noun)|Icteridae|family Icteridae|bird family (generic term)
+family iguania|1
+(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family (generic term)
+family iguanidae|1
+(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family (generic term)
+family iguanodontidae|1
+(noun)|Iguanodontidae|family Iguanodontidae|reptile family (generic term)
+family indicatoridae|1
+(noun)|Indicatoridae|family Indicatoridae|bird family (generic term)
+family indriidae|1
+(noun)|Indriidae|family Indriidae|mammal family (generic term)
+family ipidae|1
+(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family (generic term)
+family irenidae|1
+(noun)|Irenidae|family Irenidae|bird family (generic term)
+family iridaceae|1
+(noun)|Iridaceae|family Iridaceae|iris family|liliid monocot family (generic term)
+family isoetaceae|1
+(noun)|Isoetaceae|family Isoetaceae|quillwort family|fern family (generic term)
+family istiophoridae|1
+(noun)|Istiophoridae|family Istiophoridae|fish family (generic term)
+family isuridae|1
+(noun)|Isuridae|family Isuridae|fish family (generic term)
+family ixodidae|1
+(noun)|Ixodidae|family Ixodidae|arthropod family (generic term)
+family jassidae|1
+(noun)|Jassidae|family Jassidae|arthropod family (generic term)
+family jewels|1
+(noun)|male genitalia|male genitals|male genital organ|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+family juglandaceae|1
+(noun)|Juglandaceae|family Juglandaceae|walnut family|dicot family (generic term)|magnoliopsid family (generic term)
+family juncaceae|1
+(noun)|Juncaceae|family Juncaceae|rush family|monocot family (generic term)|liliopsid family (generic term)
+family juncaginaceae|1
+(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family (generic term)|liliopsid family (generic term)
+family jungermanniaceae|1
+(noun)|Jungermanniaceae|family Jungermanniaceae|moss family (generic term)
+family kalotermitidae|1
+(noun)|Kalotermitidae|family Kalotermitidae|arthropod family (generic term)
+family kasuwonidae|1
+(noun)|Katsuwonidae|family Kasuwonidae|fish family (generic term)
+family kinosternidae|1
+(noun)|Kinosternidae|family Kinosternidae|reptile family (generic term)
+family kyphosidae|1
+(noun)|Kyphosidae|family Kyphosidae|fish family (generic term)
+family labiatae|1
+(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family (generic term)
+family labridae|1
+(noun)|Labridae|family Labridae|fish family (generic term)
+family lacertidae|1
+(noun)|Lacertidae|family Lacertidae|reptile family (generic term)
+family lactobacillaceae|1
+(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family (generic term)
+family lactobacteriaceae|1
+(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family (generic term)
+family lamiaceae|1
+(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family (generic term)
+family laminariaceae|1
+(noun)|Laminariaceae|family Laminariaceae|protoctist family (generic term)
+family lamnidae|1
+(noun)|Lamnidae|family Lamnidae|fish family (generic term)
+family lampridae|1
+(noun)|Lampridae|family Lampridae|fish family (generic term)
+family lampyridae|1
+(noun)|Lampyridae|family Lampyridae|arthropod family (generic term)
+family laniidae|1
+(noun)|Laniidae|family Laniidae|bird family (generic term)
+family lanthanotidae|1
+(noun)|Lanthanotidae|family Lanthanotidae|reptile family (generic term)
+family lardizabalaceae|1
+(noun)|Lardizabalaceae|family Lardizabalaceae|lardizabala family|magnoliid dicot family (generic term)
+family laricariidae|1
+(noun)|Laricariidae|family Laricariidae|fish family (generic term)
+family laridae|1
+(noun)|Laridae|family Laridae|bird family (generic term)
+family lasiocampidae|1
+(noun)|Lasiocampidae|family Lasiocampidae|arthropod family (generic term)
+family latimeridae|1
+(noun)|Latimeridae|family Latimeridae|fish family (generic term)
+family lauraceae|1
+(noun)|Lauraceae|family Lauraceae|laurel family|magnoliid dicot family (generic term)
+family lecanoraceae|1
+(noun)|Lecanoraceae|family Lecanoraceae|fungus family (generic term)
+family lecythidaceae|1
+(noun)|Lecythidaceae|family Lecythidaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family leguminosae|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family (generic term)
+family leiopelmatidae|1
+(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family (generic term)
+family leitneriaceae|1
+(noun)|Leitneriaceae|family Leitneriaceae|corkwood family|dicot family (generic term)|magnoliopsid family (generic term)
+family lemnaceae|1
+(noun)|Lemnaceae|family Lemnaceae|duckweed family|monocot family (generic term)|liliopsid family (generic term)
+family lemuridae|1
+(noun)|Lemuridae|family Lemuridae|mammal family (generic term)
+family lennoaceae|1
+(noun)|Lennoaceae|family Lennoaceae|dilleniid dicot family (generic term)
+family lentibulariaceae|1
+(noun)|Lentibulariaceae|family Lentibulariaceae|bladderwort family|plant family (generic term)
+family lepadidae|1
+(noun)|Lepadidae|family Lepadidae|arthropod family (generic term)
+family lepidobotryaceae|1
+(noun)|Lepidobotryaceae|family Lepidobotryaceae|rosid dicot family (generic term)
+family lepidodendraceae|1
+(noun)|Lepidodendraceae|family Lepidodendraceae|fern family (generic term)
+family lepiotaceae|1
+(noun)|Lepiotaceae|family Lepiotaceae|fungus family (generic term)
+family lepismatidae|1
+(noun)|Lepismatidae|family Lepismatidae|arthropod family (generic term)
+family lepisosteidae|1
+(noun)|Lepisosteidae|family Lepisosteidae|fish family (generic term)
+family leporidae|1
+(noun)|Leporidae|family Leporidae|mammal family (generic term)
+family leptodactylidae|1
+(noun)|Leptodactylidae|family Leptodactylidae|amphibian family (generic term)
+family leptotyphlopidae|1
+(noun)|Leptotyphlopidae|family Leptotyphlopidae|reptile family (generic term)
+family liliaceae|1
+(noun)|Liliaceae|family Liliaceae|lily family|liliid monocot family (generic term)
+family limacidae|1
+(noun)|Limacidae|family Limacidae|mollusk family (generic term)
+family limulidae|1
+(noun)|Limulidae|family Limulidae|arthropod family (generic term)
+family linaceae|1
+(noun)|Linaceae|family Linaceae|flax family|dicot family (generic term)|magnoliopsid family (generic term)
+family line|1
+(noun)|family|folk|kinfolk|kinsfolk|sept|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+family liopelmidae|1
+(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family (generic term)
+family liparidae|1
+(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family (generic term)
+family liparididae|1
+(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family (generic term)
+family lithodidae|1
+(noun)|Lithodidae|family Lithodidae|arthropod family (generic term)
+family littorinidae|1
+(noun)|Littorinidae|family Littorinidae|mollusk family (generic term)
+family loasaceae|1
+(noun)|Loasaceae|family Loasaceae|loasa family|dilleniid dicot family (generic term)
+family lobeliaceae|1
+(noun)|Lobeliaceae|family Lobeliaceae|lobelia family|dicot family (generic term)|magnoliopsid family (generic term)
+family lobotidae|1
+(noun)|Lobotidae|family Lobotidae|fish family (generic term)
+family locustidae|1
+(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family (generic term)
+family loganiaceae|1
+(noun)|Loganiaceae|family Loganiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family lomariopsidaceae|1
+(noun)|Lomariopsidaceae|family Lomariopsidaceae|fern family (generic term)
+family lophiidae|1
+(noun)|Lophiidae|family Lophiidae|fish family (generic term)
+family lophosoriaceae|1
+(noun)|Lophosoriaceae|family Lophosoriaceae|fern family (generic term)
+family loranthaceae|1
+(noun)|Loranthaceae|family Loranthaceae|mistletoe family|dilleniid dicot family (generic term)|parasitic plant (generic term)
+family lorisidae|1
+(noun)|Lorisidae|family Lorisidae|mammal family (generic term)
+family loxomataceae|1
+(noun)|Loxomataceae|family Loxomataceae|fern family (generic term)
+family lucanidae|1
+(noun)|Lucanidae|family Lucanidae|arthropod family (generic term)
+family lutjanidae|1
+(noun)|Lutjanidae|family Lutjanidae|fish family (generic term)
+family luvaridae|1
+(noun)|Luvaridae|family Luvaridae|fish family (generic term)
+family lycaenidae|1
+(noun)|Lycaenidae|family Lycaenidae|arthropod family (generic term)
+family lycoperdaceae|1
+(noun)|Lycoperdaceae|family Lycoperdaceae|fungus family (generic term)
+family lycopodiaceae|1
+(noun)|Lycopodiaceae|family Lycopodiaceae|clubmoss family|fern family (generic term)
+family lycosidae|1
+(noun)|Lycosidae|family Lycosidae|arthropod family (generic term)
+family lygaeidae|1
+(noun)|Lygaeidae|family Lygaeidae|arthropod family (generic term)
+family lymantriidae|1
+(noun)|Lymantriidae|family Lymantriidae|arthropod family (generic term)
+family lythraceae|1
+(noun)|Lythraceae|family Lythraceae|loosestrife family|dicot family (generic term)|magnoliopsid family (generic term)
+family machilidae|1
+(noun)|Machilidae|family Machilidae|arthropod family (generic term)
+family macropodidae|1
+(noun)|Macropodidae|family Macropodidae|mammal family (generic term)
+family macrorhamphosidae|1
+(noun)|Macrorhamphosidae|family Macrorhamphosidae|fish family (generic term)
+family macrouridae|1
+(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family (generic term)
+family macruridae|1
+(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family (generic term)
+family magnoliaceae|1
+(noun)|Magnoliaceae|family Magnoliaceae|magnolia family|magnoliid dicot family (generic term)
+family majidae|1
+(noun)|Majidae|family Majidae|arthropod family (generic term)
+family malacanthidae|1
+(noun)|Malacanthidae|family Malacanthidae|fish family (generic term)
+family malpighiaceae|1
+(noun)|Malpighiaceae|family Malpighiaceae|rosid dicot family (generic term)
+family malvaceae|1
+(noun)|Malvaceae|family Malvaceae|mallow family|dilleniid dicot family (generic term)
+family mammutidae|1
+(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family (generic term)
+family man|1
+(noun)|husband (generic term)|hubby (generic term)|married man (generic term)
+family manidae|1
+(noun)|Manidae|family Manidae|mammal family (generic term)
+family manteidae|1
+(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family (generic term)
+family mantidae|1
+(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family (generic term)
+family mantispidae|1
+(noun)|Mantispidae|family Mantispidae|arthropod family (generic term)
+family marantaceae|1
+(noun)|Marantaceae|family Marantaceae|arrowroot family|monocot family (generic term)|liliopsid family (generic term)
+family marattiaceae|1
+(noun)|Marattiaceae|family Marattiaceae|fern family (generic term)
+family marchantiaceae|1
+(noun)|Marchantiaceae|family Marchantiaceae|moss family (generic term)
+family marsileaceae|1
+(noun)|Marsileaceae|family Marsileaceae|fern family (generic term)
+family martyniaceae|1
+(noun)|Martyniaceae|family Martyniaceae|plant family (generic term)
+family mastodontidae|1
+(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family (generic term)
+family mastotermitidae|1
+(noun)|Mastotermitidae|family Mastotermitidae|arthropod family (generic term)
+family mayacaceae|1
+(noun)|Mayacaceae|family Mayacaceae|monocot family (generic term)|liliopsid family (generic term)
+family medicine|1
+(noun)|family practice|medical practice (generic term)
+family megachilidae|1
+(noun)|Megachilidae|family Megachilidae|arthropod family (generic term)
+family megadermatidae|1
+(noun)|Megadermatidae|family Megadermatidae|mammal family (generic term)
+family megalonychidae|1
+(noun)|Megalonychidae|family Megalonychidae|mammal family (generic term)
+family megalosauridae|1
+(noun)|Megalosauridae|family Megalosauridae|reptile family (generic term)
+family megapodiidae|1
+(noun)|Megapodiidae|family Megapodiidae|bird family (generic term)
+family megatheriidae|1
+(noun)|Megatheriidae|family Megatheriidae|mammal family (generic term)
+family melampsoraceae|1
+(noun)|Melampsoraceae|family Melampsoraceae|fungus family (generic term)
+family melanthiaceae|1
+(noun)|Melanthiaceae|family Melanthiaceae|liliid monocot family (generic term)
+family melastomaceae|1
+(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family (generic term)
+family melastomataceae|1
+(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family (generic term)
+family meleagrididae|1
+(noun)|Meleagrididae|family Meleagrididae|bird family (generic term)
+family meliaceae|1
+(noun)|Meliaceae|family Meliaceae|mahogany family|rosid dicot family (generic term)
+family meliphagidae|1
+(noun)|Meliphagidae|family Meliphagidae|bird family (generic term)
+family meloidae|1
+(noun)|Meloidae|family Meloidae|arthropod family (generic term)
+family membracidae|1
+(noun)|Membracidae|family Membracidae|arthropod family (generic term)
+family menispermaceae|1
+(noun)|Menispermaceae|family Menispermaceae|moonseed family|magnoliid dicot family (generic term)
+family menuridae|1
+(noun)|Menuridae|family Menuridae|bird family (generic term)
+family menyanthaceae|1
+(noun)|Menyanthaceae|family Menyanthaceae|buckbean family|dicot family (generic term)|magnoliopsid family (generic term)
+family meropidae|1
+(noun)|Meropidae|family Meropidae|bird family (generic term)
+family micrococcaceae|1
+(noun)|Micrococcaceae|family Micrococcaceae|bacteria family (generic term)
+family microdesmidae|1
+(noun)|Microdesmidae|family Microdesmidae|fish family (generic term)
+family microhylidae|1
+(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family (generic term)
+family mimidae|1
+(noun)|Mimidae|family Mimidae|bird family (generic term)
+family mimosaceae|1
+(noun)|Mimosaceae|family Mimosaceae|rosid dicot family (generic term)
+family miridae|1
+(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family (generic term)
+family mniaceae|1
+(noun)|Mniaceae|family Mniaceae|moss family (generic term)
+family mobulidae|1
+(noun)|Mobulidae|family Mobulidae|fish family (generic term)
+family molidae|1
+(noun)|Molidae|family Molidae|fish family (generic term)
+family molossidae|1
+(noun)|Molossidae|family Molossidae|mammal family (generic term)
+family momotidae|1
+(noun)|Momotidae|family Momotidae|bird family (generic term)
+family moniliaceae|1
+(noun)|Moniliaceae|family Moniliaceae|fungus family (generic term)
+family monocanthidae|1
+(noun)|Monocanthidae|family Monocanthidae|fish family (generic term)
+family monodontidae|1
+(noun)|Monodontidae|family Monodontidae|mammal family (generic term)
+family monotropaceae|1
+(noun)|Monotropaceae|family Monotropaceae|dilleniid dicot family (generic term)
+family moraceae|1
+(noun)|Moraceae|family Moraceae|mulberry family|dicot family (generic term)|magnoliopsid family (generic term)
+family morchellaceae|1
+(noun)|Morchellaceae|family Morchellaceae|fungus family (generic term)
+family motacillidae|1
+(noun)|Motacillidae|family Motacillidae|bird family (generic term)
+family mucoraceae|1
+(noun)|Mucoraceae|family Mucoraceae|fungus family (generic term)
+family mugilidae|1
+(noun)|Mugilidae|family Mugilidae|fish family (generic term)
+family mullidae|1
+(noun)|Mullidae|family Mullidae|fish family (generic term)
+family muraenidae|1
+(noun)|Muraenidae|family Muraenidae|fish family (generic term)
+family muridae|1
+(noun)|Muridae|family Muridae|mammal family (generic term)
+family musaceae|1
+(noun)|Musaceae|family Musaceae|banana family|monocot family (generic term)|liliopsid family (generic term)
+family muscicapidae|1
+(noun)|Muscicapidae|family Muscicapidae|bird family (generic term)
+family muscidae|1
+(noun)|Muscidae|family Muscidae|arthropod family (generic term)
+family musophagidae|1
+(noun)|Musophagidae|family Musophagidae|bird family (generic term)
+family mustelidae|1
+(noun)|Mustelidae|family Mustelidae|mammal family (generic term)
+family mutillidae|1
+(noun)|Mutillidae|family Mutillidae|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+family myacidae|1
+(noun)|Myacidae|family Myacidae|mollusk family (generic term)
+family mycetophylidae|1
+(noun)|Mycetophilidae|family Mycetophylidae|arthropod family (generic term)
+family mycobacteriaceae|1
+(noun)|Mycobacteriaceae|family Mycobacteriaceae|bacteria family (generic term)
+family mycoplasmataceae|1
+(noun)|Mycoplasmataceae|family Mycoplasmataceae|bacteria family (generic term)
+family myctophidae|1
+(noun)|Myctophidae|family Myctophidae|fish family (generic term)
+family myliobatidae|1
+(noun)|Myliobatidae|family Myliobatidae|fish family (generic term)
+family mylodontidae|1
+(noun)|Mylodontidae|family Mylodontidae|mammal family (generic term)
+family myricaceae|1
+(noun)|Myricaceae|family Myricaceae|wax-myrtle family|dicot family (generic term)|magnoliopsid family (generic term)
+family myristicaceae|1
+(noun)|Myristicaceae|family Myristicaceae|nutmeg family|magnoliid dicot family (generic term)
+family myrmecophagidae|1
+(noun)|Myrmecophagidae|family Myrmecophagidae|mammal family (generic term)
+family myrmeleontidae|1
+(noun)|Myrmeleontidae|family Myrmeleontidae|arthropod family (generic term)
+family myrsinaceae|1
+(noun)|Myrsinaceae|family Myrsinaceae|myrsine family|dicot family (generic term)|magnoliopsid family (generic term)
+family myrtaceae|1
+(noun)|Myrtaceae|family Myrtaceae|myrtle family|dicot family (generic term)|magnoliopsid family (generic term)
+family mysidae|1
+(noun)|Mysidae|family Mysidae|arthropod family (generic term)
+family mytilidae|1
+(noun)|Mytilidae|family Mytilidae|mollusk family (generic term)
+family myxinidae|1
+(noun)|Myxinidae|family Myxinidae|fish family (generic term)
+family myxobacteriaceae|1
+(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family (generic term)
+family myxophyceae|1
+(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family (generic term)
+family naiadaceae|1
+(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family (generic term)|liliopsid family (generic term)
+family najadaceae|1
+(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family (generic term)|liliopsid family (generic term)
+family name|1
+(noun)|surname|cognomen|last name|name (generic term)
+family naticidae|1
+(noun)|Naticidae|family Naticidae|mollusk family (generic term)
+family nautilidae|1
+(noun)|Nautilidae|family Nautilidae|mollusk family (generic term)
+family nepenthaceae|1
+(noun)|Nepenthaceae|family Nepenthaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family nephropsidae|1
+(noun)|Nephropsidae|family Nephropsidae|arthropod family (generic term)
+family nepidae|1
+(noun)|Nepidae|family Nepidae|arthropod family (generic term)
+family neritidae|1
+(noun)|Neritidae|family Neritidae|mollusk family (generic term)
+family nidulariaceae|1
+(noun)|Nidulariaceae|family Nidulariaceae|fungus family (generic term)
+family nitrobacteriaceae|1
+(noun)|Nitrobacteriaceae|family Nitrobacteriaceae|bacteria genus (generic term)
+family noctuidae|1
+(noun)|Noctuidae|family Noctuidae|arthropod family (generic term)
+family nostocaceae|1
+(noun)|Nostocaceae|family Nostocaceae|bacteria family (generic term)
+family notonectidae|1
+(noun)|Notonectidae|family Notonectidae|arthropod family (generic term)
+family notoryctidae|1
+(noun)|Notoryctidae|family Notoryctidae|mammal family (generic term)
+family nummulitidae|1
+(noun)|Nummulitidae|family Nummulitidae|protoctist family (generic term)
+family nyctaginaceae|1
+(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family (generic term)
+family nymphaeaceae|1
+(noun)|Nymphaeaceae|family Nymphaeaceae|water-lily family|magnoliid dicot family (generic term)
+family nymphalidae|1
+(noun)|Nymphalidae|family Nymphalidae|arthropod family (generic term)
+family nyssaceae|1
+(noun)|Nyssaceae|family Nyssaceae|sour-gum family|tupelo family|dicot family (generic term)|magnoliopsid family (generic term)
+family ochnaceae|1
+(noun)|Ochnaceae|family Ochnaceae|ochna family|dilleniid dicot family (generic term)
+family ochotonidae|1
+(noun)|Ochotonidae|family Ochotonidae|mammal family (generic term)
+family octopodidae|1
+(noun)|Octopodidae|family Octopodidae|mollusk family (generic term)
+family odobenidae|1
+(noun)|Odobenidae|family Odobenidae|mammal family (generic term)
+family odontaspididae|1
+(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family (generic term)
+family oedogoniaceae|1
+(noun)|Oedogoniaceae|family Oedogoniaceae|protoctist family (generic term)
+family oestridae|1
+(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family (generic term)
+family ogcocephalidae|1
+(noun)|Ogcocephalidae|family Ogcocephalidae|fish family (generic term)
+family oleaceae|1
+(noun)|Oleaceae|family Oleaceae|olive family|dicot family (generic term)|magnoliopsid family (generic term)
+family oleandraceae|1
+(noun)|Oleandraceae|family Oleandraceae|fern family (generic term)
+family onagraceae|1
+(noun)|Onagraceae|family Onagraceae|evening-primrose family|rosid dicot family (generic term)
+family oniscidae|1
+(noun)|Oniscidae|family Oniscidae|arthropod family (generic term)
+family ophidiidae|1
+(noun)|Ophidiidae|family Ophidiidae|fish family (generic term)
+family ophiodontidae|1
+(noun)|Ophiodontidae|family Ophiodontidae|fish family (generic term)
+family ophioglossaceae|1
+(noun)|Ophioglossaceae|family Ophioglossaceae|fern family (generic term)
+family opisthocomidae|1
+(noun)|Opisthocomidae|family Opisthocomidae|bird family (generic term)
+family opisthognathidae|1
+(noun)|Opisthognathidae|family Opisthognathidae|fish family (generic term)
+family orchestiidae|1
+(noun)|Orchestiidae|family Orchestiidae|arthropod family (generic term)
+family orchidaceae|1
+(noun)|Orchidaceae|family Orchidaceae|orchid family|monocot family (generic term)|liliopsid family (generic term)
+family orectolobidae|1
+(noun)|Orectolobidae|family Orectolobidae|fish family (generic term)
+family oriolidae|1
+(noun)|Oriolidae|family Oriolidae|bird family (generic term)
+family ornithorhynchidae|1
+(noun)|Ornithorhynchidae|family Ornithorhynchidae|mammal family (generic term)
+family orobanchaceae|1
+(noun)|Orobanchaceae|family Orobanchaceae|broomrape family|dicot family (generic term)|magnoliopsid family (generic term)
+family orycteropodidae|1
+(noun)|Orycteropodidae|family Orycteropodidae|mammal family (generic term)
+family oscillatoriaceae|1
+(noun)|Oscillatoriaceae|family Oscillatoriaceae|bacteria family (generic term)
+family osmeridae|1
+(noun)|Osmeridae|family Osmeridae|fish family (generic term)
+family osmundaceae|1
+(noun)|Osmundaceae|family Osmundaceae|fern family (generic term)
+family ostraciidae|1
+(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family (generic term)
+family ostraciontidae|1
+(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family (generic term)
+family ostreidae|1
+(noun)|Ostreidae|family Ostreidae|mollusk family (generic term)
+family otariidae|1
+(noun)|Otariidae|family Otariidae|mammal family (generic term)
+family otididae|1
+(noun)|Otididae|family Otididae|bird family (generic term)
+family oxalidaceae|1
+(noun)|Oxalidaceae|family Oxalidaceae|wood-sorrel family|rosid dicot family (generic term)
+family oxyuridae|1
+(noun)|Oxyuridae|family Oxyuridae|worm family (generic term)
+family paeoniaceae|1
+(noun)|Paeoniaceae|family Paeoniaceae|peony family|magnoliid dicot family (generic term)
+family paguridae|1
+(noun)|Paguridae|family Paguridae|arthropod family (generic term)
+family palaemonidae|1
+(noun)|Palaemonidae|family Palaemonidae|arthropod family (generic term)
+family palinuridae|1
+(noun)|Palinuridae|family Palinuridae|arthropod family (generic term)
+family palmaceae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+family palmae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+family pandanaceae|1
+(noun)|Pandanaceae|family Pandanaceae|screw-pine family|monocot family (generic term)|liliopsid family (generic term)
+family pandionidae|1
+(noun)|Pandionidae|family Pandionidae|bird family (generic term)
+family panorpidae|1
+(noun)|Panorpidae|family Panorpidae|family (generic term)
+family papaveraceae|1
+(noun)|Papaveraceae|family Papaveraceae|poppy family|dilleniid dicot family (generic term)
+family papilionacea|1
+(noun)|Papilionaceae|family Papilionacea|rosid dicot family (generic term)
+family paradisaeidae|1
+(noun)|Paradisaeidae|family Paradisaeidae|bird family (generic term)
+family paridae|1
+(noun)|Paridae|family Paridae|bird family (generic term)
+family parkeriaceae|1
+(noun)|Parkeriaceae|family Parkeriaceae|fern family (generic term)
+family parmeliaceae|1
+(noun)|Parmeliaceae|family Parmeliaceae|fungus family (generic term)
+family parulidae|1
+(noun)|Parulidae|family Parulidae|bird family (generic term)
+family passeridae|1
+(noun)|Passeridae|family Passeridae|bird family (generic term)
+family passifloraceae|1
+(noun)|Passifloraceae|family Passifloraceae|passionflower family|dilleniid dicot family (generic term)
+family patellidae|1
+(noun)|Patellidae|family Patellidae|mollusk family (generic term)
+family pectinidae|1
+(noun)|Pectinidae|family Pectinidae|mollusk family (generic term)
+family pedaliaceae|1
+(noun)|Pedaliaceae|family Pedaliaceae|sesame family|plant family (generic term)
+family pediculidae|1
+(noun)|Pediculidae|family Pediculidae|arthropod family (generic term)
+family pelecanidae|1
+(noun)|Pelecanidae|family Pelecanidae|bird family (generic term)
+family pelecanoididae|1
+(noun)|Pelecanoididae|family Pelecanoididae|bird family (generic term)
+family pelobatidae|1
+(noun)|Pelobatidae|family Pelobatidae|amphibian family (generic term)
+family pempheridae|1
+(noun)|Pempheridae|family Pempheridae|fish family (generic term)
+family peneidae|1
+(noun)|Peneidae|family Peneidae|arthropod family (generic term)
+family pennatulidae|1
+(noun)|Pennatulidae|family Pennatulidae|coelenterate family (generic term)
+family peramelidae|1
+(noun)|Peramelidae|family Peramelidae|mammal family (generic term)
+family percidae|1
+(noun)|Percidae|family Percidae|fish family (generic term)
+family percophidae|1
+(noun)|Percophidae|family Percophidae|fish family (generic term)
+family peridiniidae|1
+(noun)|Peridiniidae|family Peridiniidae|protoctist family (generic term)
+family peripatidae|1
+(noun)|Peripatidae|family Peripatidae|arthropod family (generic term)
+family peripatopsidae|1
+(noun)|Peripatopsidae|family Peripatopsidae|arthropod family (generic term)
+family peronosporaceae|1
+(noun)|Peronosporaceae|family Peronosporaceae|fungus family (generic term)
+family pertusariaceae|1
+(noun)|Pertusariaceae|family Pertusariaceae|fungus family (generic term)
+family petromyzontidae|1
+(noun)|Petromyzontidae|family Petromyzontidae|fish family (generic term)
+family pezizaceae|1
+(noun)|Pezizaceae|family Pezizaceae|fungus family (generic term)
+family phaethontidae|1
+(noun)|Phaethontidae|family Phaethontidae|bird family (generic term)
+family phalacrocoracidae|1
+(noun)|Phalacrocoracidae|family Phalacrocoracidae|bird family (generic term)
+family phalangeridae|1
+(noun)|Phalangeridae|family Phalangeridae|mammal family (generic term)
+family phalangiidae|1
+(noun)|Phalangiidae|family Phalangiidae|arthropod family (generic term)
+family phalaropidae|1
+(noun)|Phalaropidae|family Phalaropidae|bird family (generic term)
+family phallaceae|1
+(noun)|Phallaceae|family Phallaceae|fungus family (generic term)
+family phasianidae|1
+(noun)|Phasianidae|family Phasianidae|bird family (generic term)
+family phasmatidae|1
+(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family (generic term)
+family phasmidae|1
+(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family (generic term)
+family phillidae|1
+(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family (generic term)
+family phocidae|1
+(noun)|Phocidae|family Phocidae|mammal family (generic term)
+family phoenicopteridae|1
+(noun)|Phoenicopteridae|family Phoenicopteridae|bird family (generic term)
+family phoeniculidae|1
+(noun)|Phoeniculidae|family Phoeniculidae|bird family (generic term)
+family pholadidae|1
+(noun)|Pholadidae|family Pholadidae|mollusk family (generic term)
+family pholidae|1
+(noun)|Pholidae|family Pholidae|family Pholididae|fish family (generic term)
+family pholididae|1
+(noun)|Pholidae|family Pholidae|family Pholididae|fish family (generic term)
+family phthiriidae|1
+(noun)|Phthiriidae|family Phthiriidae|arthropod family (generic term)
+family phyllidae|1
+(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family (generic term)
+family phyllocladaceae|1
+(noun)|Phyllocladaceae|family Phyllocladaceae|gymnosperm family (generic term)
+family phyllostomatidae|1
+(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family (generic term)
+family phyllostomidae|1
+(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family (generic term)
+family phylloxeridae|1
+(noun)|Phylloxeridae|family Phylloxeridae|arthropod family (generic term)
+family physeteridae|1
+(noun)|Physeteridae|family Physeteridae|mammal family (generic term)
+family physidae|1
+(noun)|Physidae|family Physidae|mollusk family (generic term)
+family phytolaccaceae|1
+(noun)|Phytolaccaceae|family Phytolaccaceae|pokeweed family|caryophylloid dicot family (generic term)
+family picidae|1
+(noun)|Picidae|family Picidae|bird family (generic term)
+family pieridae|1
+(noun)|Pieridae|family Pieridae|arthropod family (generic term)
+family pinaceae|1
+(noun)|Pinaceae|family Pinaceae|pine family|gymnosperm family (generic term)
+family pinnotheridae|1
+(noun)|Pinnotheridae|family Pinnotheridae|arthropod family (generic term)
+family piperaceae|1
+(noun)|Piperaceae|family Piperaceae|pepper family|dicot family (generic term)|magnoliopsid family (generic term)
+family pipidae|1
+(noun)|Pipidae|family Pipidae|amphibian family (generic term)
+family pipridae|1
+(noun)|Pipridae|family Pipridae|bird family (generic term)
+family pittidae|1
+(noun)|Pittidae|family Pittidae|bird family (generic term)
+family planning|1
+(noun)|birth control|birth prevention|planning (generic term)
+family plantaginaceae|1
+(noun)|Plantaginaceae|family Plantaginaceae|plantain family|dicot family (generic term)|magnoliopsid family (generic term)
+family plasmodiidae|1
+(noun)|Plasmodiidae|family Plasmodiidae|protoctist family (generic term)
+family plasmodiophoraceae|1
+(noun)|Plasmodiophoraceae|family Plasmodiophoraceae|fungus family (generic term)
+family plataleidae|1
+(noun)|Plataleidae|family Plataleidae|bird family (generic term)
+family platanaceae|1
+(noun)|Platanaceae|family Platanaceae|plane-tree family|rosid dicot family (generic term)
+family platanistidae|1
+(noun)|Platanistidae|family Platanistidae|mammal family (generic term)
+family platycephalidae|1
+(noun)|Platycephalidae|family Platycephalidae|fish family (generic term)
+family plethodontidae|1
+(noun)|Plethodontidae|family Plethodontidae|amphibian family (generic term)
+family pleurobrachiidae|1
+(noun)|Pleurobrachiidae|family Pleurobrachiidae|ctenophore family (generic term)
+family pleuronectidae|1
+(noun)|Pleuronectidae|family Pleuronectidae|fish family (generic term)
+family ploceidae|1
+(noun)|Ploceidae|family Ploceidae|bird family (generic term)
+family plumbaginaceae|1
+(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|sea-lavender family|dicot family (generic term)|magnoliopsid family (generic term)
+family pluteaceae|1
+(noun)|Pluteaceae|family Pluteaceae|fungus family (generic term)
+family poaceae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+family podargidae|1
+(noun)|Podargidae|family Podargidae|bird family (generic term)
+family podicipedidae|1
+(noun)|Podicipedidae|family Podicipedidae|bird family (generic term)
+family podocarpaceae|1
+(noun)|Podocarpaceae|family Podocarpaceae|podocarpus family|gymnosperm family (generic term)
+family poeciliidae|1
+(noun)|Poeciliidae|family Poeciliidae|fish family (generic term)
+family polemoniaceae|1
+(noun)|Polemoniaceae|family Polemoniaceae|phlox family|asterid dicot family (generic term)
+family polyangiaceae|1
+(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family (generic term)
+family polygalaceae|1
+(noun)|Polygalaceae|family Polygalaceae|milkwort family|rosid dicot family (generic term)
+family polygonaceae|1
+(noun)|Polygonaceae|family Polygonaceae|buckwheat family|dicot family (generic term)|magnoliopsid family (generic term)
+family polynemidae|1
+(noun)|Polynemidae|family Polynemidae|fish family (generic term)
+family polyodontidae|1
+(noun)|Polyodontidae|family Polyodontidae|fish family (generic term)
+family polypedatidae|1
+(noun)|Polypedatidae|family Polypedatidae|amphibian family (generic term)
+family polypodiaceae|1
+(noun)|Polypodiaceae|family Polypodiaceae|fern family (generic term)
+family polyporaceae|1
+(noun)|Polyporaceae|family Polyporaceae|fungus family (generic term)
+family pomacentridae|1
+(noun)|Pomacentridae|family Pomacentridae|fish family (generic term)
+family pomatomidae|1
+(noun)|Pomatomidae|family Pomatomidae|fish family (generic term)
+family pongidae|1
+(noun)|Pongidae|family Pongidae|mammal family (generic term)
+family pontederiaceae|1
+(noun)|Pontederiaceae|family Pontederiaceae|pickerelweed family|monocot family (generic term)|liliopsid family (generic term)
+family porcellionidae|1
+(noun)|Porcellionidae|family Porcellionidae|arthropod family (generic term)
+family portulacaceae|1
+(noun)|Portulacaceae|family Portulacaceae|purslane family|caryophylloid dicot family (generic term)
+family portunidae|1
+(noun)|Portunidae|family Portunidae|arthropod family (generic term)
+family potamogalidae|1
+(noun)|Potamogalidae|family Potamogalidae|mammal family (generic term)
+family potamogetonaceae|1
+(noun)|Potamogetonaceae|family Potamogetonaceae|pondweed family|monocot family (generic term)|liliopsid family (generic term)
+family practice|1
+(noun)|family medicine|medical practice (generic term)
+family priacanthidae|1
+(noun)|Priacanthidae|family Priacanthidae|fish family (generic term)
+family primulaceae|1
+(noun)|Primulaceae|family Primulaceae|primrose family|dicot family (generic term)|magnoliopsid family (generic term)
+family pristidae|1
+(noun)|Pristidae|family Pristidae|fish family (generic term)
+family procaviidae|1
+(noun)|Procaviidae|family Procaviidae|mammal family (generic term)
+family procellariidae|1
+(noun)|Procellariidae|family Procellariidae|bird family (generic term)
+family procyonidae|1
+(noun)|Procyonidae|family Procyonidae|mammal family (generic term)
+family proteaceae|1
+(noun)|Proteaceae|family Proteaceae|protea family|dicot family (generic term)|magnoliopsid family (generic term)
+family proteidae|1
+(noun)|Proteidae|family Proteidae|amphibian genus (generic term)
+family prunellidae|1
+(noun)|Prunellidae|family Prunellidae|bird family (generic term)
+family pseudococcidae|1
+(noun)|Pseudococcidae|family Pseudococcidae|arthropod family (generic term)
+family pseudomonodaceae|1
+(noun)|Pseudomonodaceae|family Pseudomonodaceae|bacteria family (generic term)
+family psilophytaceae|1
+(noun)|Psilophytaceae|family Psilophytaceae|fern family (generic term)
+family psilotaceae|1
+(noun)|Psilotaceae|family Psilotaceae|fern family (generic term)
+family psittacidae|1
+(noun)|Psittacidae|family Psittacidae|bird family (generic term)
+family psocidae|1
+(noun)|Psocidae|family Psocidae|arthropod family (generic term)
+family psophiidae|1
+(noun)|Psophiidae|family Psophiidae|bird family (generic term)
+family psychodidae|1
+(noun)|Psychodidae|family Psychodidae|arthropod family (generic term)
+family psyllidae|1
+(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family (generic term)
+family pteridaceae|1
+(noun)|Pteridaceae|family Pteridaceae|fern family (generic term)
+family pteriidae|1
+(noun)|Pteriidae|family Pteriidae|mollusk family (generic term)
+family pteroclididae|1
+(noun)|Pteroclididae|family Pteroclididae|bird family (generic term)
+family pterodactylidae|1
+(noun)|Pterodactylidae|family Pterodactylidae|reptile family (generic term)
+family ptilonorhynchidae|1
+(noun)|Ptilonorhynchidae|family Ptilonorhynchidae|bird family (generic term)
+family pucciniaceae|1
+(noun)|Pucciniaceae|family Pucciniaceae|fungus family (generic term)
+family pulicidae|1
+(noun)|Pulicidae|family Pulicidae|arthropod family (generic term)
+family punicaceae|1
+(noun)|Punicaceae|family Punicaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family pygopodidae|1
+(noun)|Pygopodidae|family Pygopodidae|reptile family (generic term)
+family pyralidae|1
+(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family (generic term)
+family pyralididae|1
+(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family (generic term)
+family pyrolaceae|1
+(noun)|Pyrolaceae|family Pyrolaceae|wintergreen family|dilleniid dicot family (generic term)
+family pyrrhocoridae|1
+(noun)|Pyrrhocoridae|family Pyrrhocoridae|arthropod family (generic term)
+family pythiaceae|1
+(noun)|Pythiaceae|family Pythiaceae|fungus family (generic term)
+family pythonidae|1
+(noun)|Pythonidae|family Pythonidae|reptile family (generic term)
+family rachycentridae|1
+(noun)|Rachycentridae|family Rachycentridae|fish family (generic term)
+family rafflesiaceae|1
+(noun)|Rafflesiaceae|family Rafflesiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family rajidae|1
+(noun)|Rajidae|family Rajidae|fish family (generic term)
+family rallidae|1
+(noun)|Rallidae|family Rallidae|bird family (generic term)
+family ramphastidae|1
+(noun)|Ramphastidae|family Ramphastidae|bird family (generic term)
+family ranidae|1
+(noun)|Ranidae|family Ranidae|amphibian family (generic term)
+family ranunculaceae|1
+(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|crowfoot family|magnoliid dicot family (generic term)
+family rapateaceae|1
+(noun)|Rapateaceae|family Rapateaceae|monocot family (generic term)|liliopsid family (generic term)
+family raphidae|1
+(noun)|Raphidae|family Raphidae|bird family (generic term)
+family raphidiidae|1
+(noun)|Raphidiidae|family Raphidiidae|arthropod family (generic term)
+family recurvirostridae|1
+(noun)|Recurvirostridae|family Recurvirostridae|bird family (generic term)
+family reduviidae|1
+(noun)|Reduviidae|family Reduviidae|arthropod family (generic term)
+family regalecidae|1
+(noun)|Regalecidae|family Regalecidae|fish family (generic term)
+family relationship|1
+(noun)|kinship|relationship|relation (generic term)
+family resedaceae|1
+(noun)|Resedaceae|family Resedaceae|mignonette family|dilleniid dicot family (generic term)
+family rhamnaceae|1
+(noun)|Rhamnaceae|family Rhamnaceae|buckthorn family|dicot family (generic term)|magnoliopsid family (generic term)
+family rheidae|1
+(noun)|Rheidae|family Rheidae|bird family (generic term)
+family rhincodontidae|1
+(noun)|Rhincodontidae|family Rhincodontidae|fish family (generic term)
+family rhinobatidae|1
+(noun)|Rhinobatidae|family Rhinobatidae|fish family (generic term)
+family rhinocerotidae|1
+(noun)|Rhinocerotidae|family Rhinocerotidae|rhinoceros family|mammal family (generic term)
+family rhinolophidae|1
+(noun)|Rhinolophidae|family Rhinolophidae|mammal family (generic term)
+family rhinotermitidae|1
+(noun)|Rhinotermitidae|family Rhinotermitidae|arthropod family (generic term)
+family rhiptoglossa|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+family rhizobiaceae|1
+(noun)|Rhizobiaceae|family Rhizobiaceae|bacteria family (generic term)
+family rhizophoraceae|1
+(noun)|Rhizophoraceae|family Rhizophoraceae|mangrove family|dicot family (generic term)|magnoliopsid family (generic term)
+family rhizopogonaceae|1
+(noun)|Rhizopogonaceae|family Rhizopogonaceae|fungus family (generic term)
+family rhodymeniaceae|1
+(noun)|Rhodymeniaceae|family Rhodymeniaceae|protoctist family (generic term)
+family rhyniaceae|1
+(noun)|Rhyniaceae|family Rhyniaceae|fern family (generic term)
+family rickettsiaceae|1
+(noun)|Rickettsiaceae|family Rickettsiaceae|bacteria family (generic term)
+family roccellaceae|1
+(noun)|Roccellaceae|family Roccellaceae|fungus family (generic term)
+family room|1
+(noun)|recreation room (generic term)|rec room (generic term)
+family roridulaceae|1
+(noun)|Roridulaceae|family Roridulaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family rosaceae|1
+(noun)|Rosaceae|family Rosaceae|rose family|rosid dicot family (generic term)
+family rubiaceae|1
+(noun)|Rubiaceae|family Rubiaceae|madder family|asterid dicot family (generic term)
+family ruscaceae|1
+(noun)|Ruscaceae|family Ruscaceae|liliid monocot family (generic term)
+family russulaceae|1
+(noun)|Russulaceae|family Russulaceae|fungus family (generic term)
+family rutaceae|1
+(noun)|Rutaceae|family Rutaceae|rue family|rosid dicot family (generic term)
+family rynchopidae|1
+(noun)|Rynchopidae|family Rynchopidae|bird family (generic term)
+family saccharomycetaceae|1
+(noun)|Saccharomycetaceae|family Saccharomycetaceae|fungus family (generic term)
+family sagittariidae|1
+(noun)|Sagittariidae|family Sagittariidae|bird family (generic term)
+family salamandridae|1
+(noun)|Salamandridae|family Salamandridae|amphibian family (generic term)
+family salicaceae|1
+(noun)|Salicaceae|family Salicaceae|willow family|hamamelid dicot family (generic term)
+family salmonidae|1
+(noun)|Salmonidae|family Salmonidae|fish family (generic term)
+family salpidae|1
+(noun)|Salpidae|family Salpidae|chordate family (generic term)
+family salvadoraceae|1
+(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family (generic term)|magnoliopsid family (generic term)
+family salviniaceae|1
+(noun)|Salviniaceae|family Salviniaceae|fern family (generic term)
+family santalaceae|1
+(noun)|Santalaceae|family Santalaceae|sandalwood family|dilleniid dicot family (generic term)
+family sapindaceae|1
+(noun)|Sapindaceae|family Sapindaceae|soapberry family|dicot family (generic term)|magnoliopsid family (generic term)
+family sapotaceae|1
+(noun)|Sapotaceae|family Sapotaceae|sapodilla family|dicot family (generic term)|magnoliopsid family (generic term)
+family sarcoptidae|1
+(noun)|Sarcoptidae|family Sarcoptidae|arthropod family (generic term)
+family sarcoscyphaceae|1
+(noun)|Sarcoscyphaceae|family Sarcoscyphaceae|fungus family (generic term)
+family sarraceniaceae|1
+(noun)|Sarraceniaceae|family Sarraceniaceae|pitcher-plant family|dicot family (generic term)|magnoliopsid family (generic term)
+family saturniidae|1
+(noun)|Saturniidae|family Saturniidae|arthropod family (generic term)
+family satyridae|1
+(noun)|Satyridae|family Satyridae|arthropod family (generic term)
+family saururaceae|1
+(noun)|Saururaceae|family Saururaceae|lizard's-tail family|dicot family (generic term)|magnoliopsid family (generic term)
+family saxifragaceae|1
+(noun)|Saxifragaceae|family Saxifragaceae|saxifrage family|rosid dicot family (generic term)
+family scarabaeidae|1
+(noun)|Scarabaeidae|family Scarabaeidae|arthropod family (generic term)
+family scaridae|1
+(noun)|Scaridae|family Scaridae|fish family (generic term)
+family scheuchzeriaceae|1
+(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family (generic term)|liliopsid family (generic term)
+family schistosomatidae|1
+(noun)|Schistosomatidae|family Schistosomatidae|worm family (generic term)
+family schizaeaceae|1
+(noun)|Schizaeaceae|family Schizaeaceae|fern family (generic term)
+family schizophyceae|1
+(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family (generic term)
+family schizosaccharomycetaceae|1
+(noun)|Schizosaccharomycetaceae|family Schizosaccharomycetaceae|fungus family (generic term)
+family sciadopityaceae|1
+(noun)|Sciadopityaceae|family Sciadopityaceae|gymnosperm family (generic term)
+family sciaenidae|1
+(noun)|Sciaenidae|family Sciaenidae|fish family (generic term)
+family sciaridae|1
+(noun)|Sciaridae|family Sciaridae|arthropod family (generic term)
+family scincidae|1
+(noun)|Scincidae|family Scincidae|reptile family (generic term)
+family sciuridae|1
+(noun)|Sciuridae|family Sciuridae|mammal family (generic term)
+family sclerodermataceae|1
+(noun)|Sclerodermataceae|family Sclerodermataceae|fungus family (generic term)
+family sclerotiniaceae|1
+(noun)|Sclerotiniaceae|family Sclerotiniaceae|fungus family (generic term)
+family scolopacidae|1
+(noun)|Scolopacidae|family Scolopacidae|bird family (generic term)
+family scolytidae|1
+(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family (generic term)
+family scomberesocidae|1
+(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family (generic term)
+family scombresocidae|1
+(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family (generic term)
+family scombridae|1
+(noun)|Scombridae|family Scombridae|fish family (generic term)
+family scorpaenidae|1
+(noun)|Scorpaenidae|family Scorpaenidae|fish family (generic term)
+family scrophulariaceae|1
+(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|foxglove family|asterid dicot family (generic term)
+family scutigeridae|1
+(noun)|Scutigeridae|family Scutigeridae|arthropod family (generic term)
+family scyliorhinidae|1
+(noun)|Scyliorhinidae|family Scyliorhinidae|fish family (generic term)
+family secotiaceae|1
+(noun)|Secotiaceae|family Secotiaceae|fungus family (generic term)
+family selaginellaceae|1
+(noun)|Selaginellaceae|family Selaginellaceae|fern family (generic term)
+family sepiidae|1
+(noun)|Sepiidae|family Sepiidae|mollusk family (generic term)
+family septobasidiaceae|1
+(noun)|Septobasidiaceae|family Septobasidiaceae|fungus family (generic term)
+family serranidae|1
+(noun)|Serranidae|family Serranidae|fish family (generic term)
+family sialidae|1
+(noun)|Sialidae|family Sialidae|arthropod family (generic term)
+family sillaginidae|1
+(noun)|Sillaginidae|family Sillaginidae|fish family (generic term)
+family siluridae|1
+(noun)|Siluridae|family Siluridae|fish family (generic term)
+family simaroubaceae|1
+(noun)|Simaroubaceae|family Simaroubaceae|quassia family|rosid dicot family (generic term)
+family simuliidae|1
+(noun)|Simuliidae|family Simuliidae|arthropod family (generic term)
+family sirenidae|1
+(noun)|Sirenidae|family Sirenidae|amphibian family (generic term)
+family sisyridae|1
+(noun)|Sisyridae|family Sisyridae|arthropod family (generic term)
+family sittidae|1
+(noun)|Sittidae|family Sittidae|bird family (generic term)
+family solanaceae|1
+(noun)|Solanaceae|family Solanaceae|potato family|asterid dicot family (generic term)
+family soleidae|1
+(noun)|Soleidae|family Soleidae|fish family (generic term)
+family solenidae|1
+(noun)|Solenidae|family Solenidae|mollusk family (generic term)
+family soricidae|1
+(noun)|Soricidae|family Soricidae|mammal family (generic term)
+family spalacidae|1
+(noun)|Spalacidae|family Spalacidae|mammal family (generic term)
+family sparganiaceae|1
+(noun)|Sparganiaceae|family Sparganiaceae|bur-reed family|monocot family (generic term)|liliopsid family (generic term)
+family sparidae|1
+(noun)|Sparidae|family Sparidae|fish family (generic term)
+family sphaeriaceae|1
+(noun)|Sphaeriaceae|family Sphaeriaceae|fungus family (generic term)
+family sphaerobolaceae|1
+(noun)|Sphaerobolaceae|family Sphaerobolaceae|fungus family (generic term)
+family sphaerocarpaceae|1
+(noun)|Sphaerocarpaceae|family Sphaerocarpaceae|moss family (generic term)
+family sphecidae|1
+(noun)|Sphecidae|family Sphecidae|arthropod family (generic term)
+family spheniscidae|1
+(noun)|Spheniscidae|family Spheniscidae|bird family (generic term)
+family sphingidae|1
+(noun)|Sphingidae|family Sphingidae|arthropod family (generic term)
+family sphyraenidae|1
+(noun)|Sphyraenidae|family Sphyraenidae|fish family (generic term)
+family sphyrnidae|1
+(noun)|Sphyrnidae|family Sphyrnidae|fish family (generic term)
+family spirillaceae|1
+(noun)|Spirillaceae|family Spirillaceae|bacteria family (generic term)
+family spirochaetaceae|1
+(noun)|Spirochaetaceae|family Spirochaetaceae|bacteria family (generic term)
+family spirulidae|1
+(noun)|Spirulidae|family Spirulidae|mollusk family (generic term)
+family squalidae|1
+(noun)|Squalidae|family Squalidae|fish family (generic term)
+family squatinidae|1
+(noun)|Squatinidae|family Squatinidae|fish family (generic term)
+family squillidae|1
+(noun)|Squillidae|family Squillidae|arthropod family (generic term)
+family staphylaceae|1
+(noun)|Staphylaceae|family Staphylaceae|bladdernut family|dicot family (generic term)|magnoliopsid family (generic term)
+family staphylinidae|1
+(noun)|Staphylinidae|family Staphylinidae|arthropod family (generic term)
+family steatornithidae|1
+(noun)|Steatornithidae|family Steatornithidae|bird family (generic term)
+family stenopelmatidae|1
+(noun)|Stenopelmatidae|family Stenopelmatidae|arthropod family (generic term)
+family stercorariidae|1
+(noun)|Stercorariidae|family Stercorariidae|bird family (generic term)
+family sterculiaceae|1
+(noun)|Sterculiaceae|family Sterculiaceae|sterculia family|dilleniid dicot family (generic term)
+family stichaeidae|1
+(noun)|Stichaeidae|family Stichaeidae|fish family (generic term)
+family stizidae|1
+(noun)|Stizidae|family Stizidae|arthropod family (generic term)
+family strelitziaceae|1
+(noun)|Strelitziaceae|family Strelitziaceae|strelitzia family|monocot family (generic term)|liliopsid family (generic term)
+family streptomycetaceae|1
+(noun)|Streptomycetaceae|family Streptomycetaceae|bacteria family (generic term)
+family strigidae|1
+(noun)|Strigidae|family Strigidae|bird family (generic term)
+family stromateidae|1
+(noun)|Stromateidae|family Stromateidae|fish family (generic term)
+family strombidae|1
+(noun)|Strombidae|family Strombidae|mollusk family (generic term)
+family strophariaceae|1
+(noun)|Strophariaceae|family Strophariaceae|fungus family (generic term)
+family struthionidae|1
+(noun)|Struthionidae|family Struthionidae|bird family (generic term)
+family sturnidae|1
+(noun)|Sturnidae|family Sturnidae|bird family (generic term)
+family styracaceae|1
+(noun)|Styracaceae|family Styracaceae|storax family|styrax family|dicot family (generic term)|magnoliopsid family (generic term)
+family suidae|1
+(noun)|Suidae|family Suidae|mammal family (generic term)
+family sulidae|1
+(noun)|Sulidae|family Sulidae|bird family (generic term)
+family sylviidae|1
+(noun)|Sylviidae|family Sylviidae|bird family (generic term)
+family symplocaceae|1
+(noun)|Symplocaceae|family Symplocaceae|sweetleaf family|dicot family (generic term)|magnoliopsid family (generic term)
+family synchytriaceae|1
+(noun)|Synchytriaceae|family Synchytriaceae|fungus family (generic term)
+family syngnathidae|1
+(noun)|Syngnathidae|family Syngnathidae|fish family (generic term)
+family synodontidae|1
+(noun)|Synodontidae|family Synodontidae|fish family (generic term)
+family tabanidae|1
+(noun)|Tabanidae|family Tabanidae|arthropod family (generic term)
+family taccaceae|1
+(noun)|Taccaceae|family Taccaceae|liliid monocot family (generic term)
+family tachinidae|1
+(noun)|Tachinidae|family Tachinidae|arthropod family (generic term)
+family tachyglossidae|1
+(noun)|Tachyglossidae|family Tachyglossidae|mammal family (generic term)
+family taeniidae|1
+(noun)|Taeniidae|family Taeniidae|worm family (generic term)
+family talpidae|1
+(noun)|Talpidae|family Talpidae|mammal family (generic term)
+family tamaricaceae|1
+(noun)|Tamaricaceae|family Tamaricaceae|tamarisk family|dilleniid dicot family (generic term)
+family tapiridae|1
+(noun)|Tapiridae|family Tapiridae|mammal family (generic term)
+family tarsiidae|1
+(noun)|Tarsiidae|family Tarsiidae|mammal family (generic term)
+family taxaceae|1
+(noun)|Taxaceae|family Taxaceae|yew family|gymnosperm family (generic term)
+family tayassuidae|1
+(noun)|Tayassuidae|family Tayassuidae|mammal family (generic term)
+family tecophilaeacea|1
+(noun)|Tecophilaeacea|family Tecophilaeacea|liliid monocot family (generic term)
+family teiidae|1
+(noun)|Teiidae|family Teiidae|reptile family (generic term)
+family tenebrionidae|1
+(noun)|Tenebrionidae|family Tenebrionidae|arthropod family (generic term)
+family tenrecidae|1
+(noun)|Tenrecidae|family Tenrecidae|mammal family (generic term)
+family tenthredinidae|1
+(noun)|Tenthredinidae|family Tenthredinidae|arthropod family (generic term)
+family terebellidae|1
+(noun)|Terebellidae|family Terebellidae|worm family (generic term)
+family teredinidae|1
+(noun)|Teredinidae|family Teredinidae|mollusk family (generic term)
+family termitidae|1
+(noun)|Termitidae|family Termitidae|arthropod family (generic term)
+family testudinidae|1
+(noun)|Testudinidae|family Testudinidae|reptile family (generic term)
+family tethyidae|1
+(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family (generic term)
+family tetragoniaceae|1
+(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family (generic term)
+family tetranychidae|1
+(noun)|Tetranychidae|family Tetranychidae|arthropod family (generic term)
+family tetraodontidae|1
+(noun)|Tetraodontidae|family Tetraodontidae|fish family (generic term)
+family tetraonidae|1
+(noun)|Tetraonidae|family Tetraonidae|bird family (generic term)
+family tettigoniidae|1
+(noun)|Tettigoniidae|family Tettigoniidae|arthropod family (generic term)
+family theaceae|1
+(noun)|Theaceae|family Theaceae|tea family|dilleniid dicot family (generic term)
+family thelephoraceae|1
+(noun)|Thelephoraceae|family Thelephoraceae|fungus family (generic term)
+family thelypteridaceae|1
+(noun)|Thelypteridaceae|family Thelypteridaceae|fern family (generic term)
+family theophrastaceae|1
+(noun)|Theophrastaceae|family Theophrastaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family theraphosidae|1
+(noun)|Theraphosidae|family Theraphosidae|arthropod family (generic term)
+family therapy|1
+(noun)|group therapy (generic term)|group psychotherapy (generic term)
+family theridiidae|1
+(noun)|Theridiidae|family Theridiidae|arthropod family (generic term)
+family thiobacteriaceae|1
+(noun)|Thiobacteriaceae|family Thiobacteriaceae|bacteria family (generic term)
+family thraupidae|1
+(noun)|Thraupidae|family Thraupidae|bird family (generic term)
+family threskiornithidae|1
+(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family (generic term)
+family thripidae|1
+(noun)|Thripidae|family Thripidae|arthropod family (generic term)
+family thymelaeaceae|1
+(noun)|Thymelaeaceae|family Thymelaeaceae|daphne family|dicot family (generic term)|magnoliopsid family (generic term)
+family tiliaceae|1
+(noun)|Tiliaceae|family Tiliaceae|linden family|dilleniid dicot family (generic term)
+family tilletiaceae|1
+(noun)|Tilletiaceae|family Tilletiaceae|fungus family (generic term)
+family timaliidae|1
+(noun)|Timaliidae|family Timaliidae|bird family (generic term)
+family tinamidae|1
+(noun)|Tinamidae|family Tinamidae|bird family (generic term)
+family tineidae|1
+(noun)|Tineidae|family Tineidae|arthropod family (generic term)
+family tingidae|1
+(noun)|Tingidae|family Tingidae|arthropod family (generic term)
+family tipulidae|1
+(noun)|Tipulidae|family Tipulidae|arthropod family (generic term)
+family titanosauridae|1
+(noun)|Titanosauridae|family Titanosauridae|reptile family (generic term)
+family todidae|1
+(noun)|Todidae|family Todidae|bird family (generic term)
+family torpedinidae|1
+(noun)|Torpedinidae|family Torpedinidae|fish family (generic term)
+family tortricidae|1
+(noun)|Tortricidae|family Tortricidae|arthropod family (generic term)
+family toxotidae|1
+(noun)|Toxotidae|family Toxotidae|fish family (generic term)
+family trachipteridae|1
+(noun)|Trachipteridae|family Trachipteridae|fish family (generic term)
+family tragulidae|1
+(noun)|Tragulidae|family Tragulidae|mammal family (generic term)
+family trapaceae|1
+(noun)|Trapaceae|family Trapaceae|dicot family (generic term)|magnoliopsid family (generic term)
+family tree|1
+(noun)|genealogy|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+family tremellaceae|1
+(noun)|Tremellaceae|family Tremellaceae|fungus family (generic term)
+family trephritidae|1
+(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family (generic term)
+family treponemataceae|1
+(noun)|Treponemataceae|family Treponemataceae|bacteria family (generic term)
+family triakidae|1
+(noun)|Triakidae|family Triakidae|fish family (generic term)
+family tribonemaceae|1
+(noun)|Tribonemaceae|family Tribonemaceae|protoctist family (generic term)
+family trichechidae|1
+(noun)|Trichechidae|family Trichechidae|mammal family (generic term)
+family trichiuridae|1
+(noun)|Trichiuridae|family Trichiuridae|fish family (generic term)
+family trichodontidae|1
+(noun)|Trichodontidae|family Trichodontidae|fish family (generic term)
+family tricholomataceae|1
+(noun)|Tricholomataceae|family Tricholomataceae|fungus family (generic term)
+family tridacnidae|1
+(noun)|Tridacnidae|family Tridacnidae|mollusk family (generic term)
+family triglidae|1
+(noun)|Triglidae|family Triglidae|fish family (generic term)
+family trilliaceae|1
+(noun)|Trilliaceae|family Trilliaceae|trillium family|liliid monocot family (generic term)
+family trionychidae|1
+(noun)|Trionychidae|family Trionychidae|reptile family (generic term)
+family triopidae|1
+(noun)|Triopidae|family Triopidae|arthropod family (generic term)
+family trochilidae|1
+(noun)|Trochilidae|family Trochilidae|bird family (generic term)
+family troglodytidae|1
+(noun)|Troglodytidae|family Troglodytidae|bird family (generic term)
+family trogonidae|1
+(noun)|Trogonidae|family Trogonidae|bird family (generic term)
+family trombiculidae|1
+(noun)|Trombiculidae|family Trombiculidae|arthropod family (generic term)
+family trombidiidae|1
+(noun)|Trombidiidae|family Trombidiidae|arthropod family (generic term)
+family tropaeolaceae|1
+(noun)|Tropaeolaceae|family Tropaeolaceae|nasturtium family|rosid dicot family (generic term)
+family trypetidae|1
+(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family (generic term)
+family tuberaceae|1
+(noun)|Tuberaceae|family Tuberaceae|fungus family (generic term)
+family tuberculariaceae|1
+(noun)|Tuberculariaceae|family Tuberculariaceae|fungus family (generic term)
+family tulostomaceae|1
+(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family (generic term)
+family tulostomataceae|1
+(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family (generic term)
+family tupaiidae|1
+(noun)|Tupaiidae|family Tupaiidae|mammal family (generic term)
+family turdidae|1
+(noun)|Turdidae|family Turdidae|bird family (generic term)
+family turnicidae|1
+(noun)|Turnicidae|family Turnicidae|bird family (generic term)
+family tylenchidae|1
+(noun)|Tylenchidae|family Tylenchidae|worm family (generic term)
+family typhaceae|1
+(noun)|Typhaceae|family Typhaceae|cattail family|monocot family (generic term)|liliopsid family (generic term)
+family typhlopidae|1
+(noun)|Typhlopidae|family Typhlopidae|reptile family (generic term)
+family tytonidae|1
+(noun)|Tytonidae|family Tytonidae|bird family (generic term)
+family uintatheriidae|1
+(noun)|Uintatheriidae|family Uintatheriidae|mammal family (generic term)
+family ulmaceae|1
+(noun)|Ulmaceae|family Ulmaceae|elm family|dicot family (generic term)|magnoliopsid family (generic term)
+family ulvaceae|1
+(noun)|Ulvaceae|family Ulvaceae|sea-lettuce family|protoctist family (generic term)
+family umbelliferae|1
+(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family (generic term)
+family unionidae|1
+(noun)|Unionidae|family Unionidae|mollusk family (generic term)
+family unit|1
+(noun)|family|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+family upupidae|1
+(noun)|Upupidae|family Upupidae|bird family (generic term)
+family uranoscopidae|1
+(noun)|Uranoscopidae|family Uranoscopidae|fish family (generic term)
+family ursidae|1
+(noun)|Ursidae|family Ursidae|mammal family (generic term)
+family urticaceae|1
+(noun)|Urticaceae|family Urticaceae|nettle family|dicot family (generic term)|magnoliopsid family (generic term)
+family usneaceae|1
+(noun)|Usneaceae|family Usneaceae|fungus family (generic term)
+family ustilaginaceae|1
+(noun)|Ustilaginaceae|family Ustilaginaceae|fungus family (generic term)
+family valerianaceae|1
+(noun)|Valerianaceae|family Valerianaceae|valerian family|asterid dicot family (generic term)
+family varanidae|1
+(noun)|Varanidae|family Varanidae|reptile family (generic term)
+family veneridae|1
+(noun)|Veneridae|family Veneridae|mollusk family (generic term)
+family verbenaceae|1
+(noun)|Verbenaceae|family Verbenaceae|verbena family|vervain family|asterid dicot family (generic term)
+family vespertilionidae|1
+(noun)|Vespertilionidae|family Vespertilionidae|mammal family (generic term)
+family vespidae|1
+(noun)|Vespidae|family Vespidae|arthropod family (generic term)
+family violaceae|1
+(noun)|Violaceae|family Violaceae|violet family|dilleniid dicot family (generic term)
+family viperidae|1
+(noun)|Viperidae|family Viperidae|reptile family (generic term)
+family vireonidae|1
+(noun)|Vireonidae|family Vireonidae|bird family (generic term)
+family viscaceae|1
+(noun)|Viscaceae|family Viscaceae|mistletoe family|dilleniid dicot family (generic term)
+family vitaceae|1
+(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family (generic term)|magnoliopsid family (generic term)
+family vittariaceae|1
+(noun)|Vittariaceae|family Vittariaceae|fern family (generic term)
+family viverridae|1
+(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family (generic term)
+family viverrinae|1
+(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family (generic term)
+family volvariaceae|1
+(noun)|Volvariaceae|family Volvariaceae|fungus family (generic term)
+family volvocaceae|1
+(noun)|Volvocaceae|family Volvocaceae|protoctist family (generic term)
+family vombatidae|1
+(noun)|Vombatidae|family Vombatidae|mammal family (generic term)
+family welwitschiaceae|1
+(noun)|Welwitschiaceae|family Welwitschiaceae|gymnosperm family (generic term)
+family winteraceae|1
+(noun)|Winteraceae|family Winteraceae|winter's bark family|magnoliid dicot family (generic term)
+family xanthorrhoeaceae|1
+(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|grass tree family|liliid monocot family (generic term)
+family xantusiidae|1
+(noun)|Xantusiidae|family Xantusiidae|reptile family (generic term)
+family xenicidae|1
+(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family (generic term)
+family xenopodidae|1
+(noun)|Xenopodidae|family Xenopodidae|amphibian family (generic term)
+family xenosauridae|1
+(noun)|Xenosauridae|family Xenosauridae|reptile family (generic term)
+family xiphiidae|1
+(noun)|Xiphiidae|family Xiphiidae|fish family (generic term)
+family xylariaceae|1
+(noun)|Xylariaceae|family Xylariaceae|fungus family (generic term)
+family xyridaceae|1
+(noun)|Xyridaceae|family Xyridaceae|yellow-eyed grass family|monocot family (generic term)|liliopsid family (generic term)
+family zamiaceae|1
+(noun)|Zamiaceae|family Zamiaceae|zamia family|gymnosperm family (generic term)
+family zannichelliaceae|1
+(noun)|Zannichelliaceae|family Zannichelliaceae|monocot family (generic term)|liliopsid family (generic term)
+family zapodidae|1
+(noun)|Zapodidae|family Zapodidae|mammal family (generic term)
+family zeidae|1
+(noun)|Zeidae|family Zeidae|fish family (generic term)
+family zingiberaceae|1
+(noun)|Zingiberaceae|family Zingiberaceae|ginger family|monocot family (generic term)|liliopsid family (generic term)
+family ziphiidae|1
+(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family (generic term)
+family zoarcidae|1
+(noun)|Zoarcidae|family Zoarcidae|fish family (generic term)
+family zosteraceae|1
+(noun)|Zosteraceae|family Zosteraceae|eelgrass family|monocot family (generic term)|liliopsid family (generic term)
+family zygnemataceae|1
+(noun)|Zygnemataceae|family Zygnemataceae|protoctist family (generic term)
+family zygophyllaceae|1
+(noun)|Zygophyllaceae|family Zygophyllaceae|bean-caper family|rosid dicot family (generic term)
+famine|2
+(noun)|dearth|shortage|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+famish|3
+(verb)|starve|hunger|suffer (generic term)|hurt (generic term)|be full (antonym)
+(verb)|starve|deprive (generic term)|feed (antonym)
+(verb)|starve|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+famished|1
+(adj)|ravenous|sharp-set|starved|esurient|hungry (similar term)
+famishment|1
+(noun)|starvation|hunger (generic term)|hungriness (generic term)
+famotidine|1
+(noun)|Pepcid|histamine blocker (generic term)
+famous|1
+(adj)|celebrated|famed|far-famed|illustrious|notable|noted|renowned|known (similar term)
+famous person|1
+(noun)|celebrity|important person (generic term)|influential person (generic term)|personage (generic term)
+famously|1
+(adv)|magnificently|splendidly
+famulus|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+fan|7
+(noun)|device (generic term)
+(noun)|sports fan|rooter|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+(noun)|buff|devotee|lover|follower (generic term)
+(verb)|strike out (generic term)
+(verb)|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|shake (generic term)|agitate (generic term)
+(verb)|winnow|sift (generic term)|sieve (generic term)|strain (generic term)
+fan-jet|2
+(noun)|fanjet|turbofan|turbojet|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+(noun)|fanjet|fanjet engine|turbojet|turbojet engine|turbofan|turbofan engine|jet engine (generic term)
+fan-leafed|1
+(adj)|fan-leaved|leafy (similar term)
+fan-leaved|1
+(adj)|fan-leafed|leafy (similar term)
+fan-shaped|1
+(adj)|formed (similar term)
+fan belt|1
+(noun)|belt (generic term)
+fan blade|1
+(noun)|blade (generic term)|vane (generic term)
+fan dance|1
+(noun)|nude dancing (generic term)
+fan fern|1
+(noun)|umbrella fern|Sticherus flabellatus|Gleichenia flabellata|fern (generic term)
+fan letter|1
+(noun)|letter (generic term)|missive (generic term)
+fan mail|1
+(noun)|mail (generic term)|post (generic term)
+fan out|1
+(verb)|diffuse|spread|spread out|spread (generic term)|distribute (generic term)
+fan palm|1
+(noun)|palm (generic term)|palm tree (generic term)
+fan tan|1
+(noun)|fantan|game of chance (generic term)|gambling game (generic term)
+fan tracery|1
+(noun)|tracery (generic term)
+fan vaulting|1
+(noun)|vaulting (generic term)
+fanaloka|1
+(noun)|Fossa fossa|civet (generic term)|civet cat (generic term)
+fanatic|2
+(adj)|fanatical|overzealous|rabid|passionate (similar term)
+(noun)|fiend|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+fanatical|1
+(adj)|fanatic|overzealous|rabid|passionate (similar term)
+fanaticism|1
+(noun)|fanatism|zealotry|intolerance (generic term)
+fanatism|1
+(noun)|fanaticism|zealotry|intolerance (generic term)
+fancied|1
+(adj)|fabricated|fictional|fictitious|invented|made-up|unreal (similar term)
+fancied up|1
+(adj)|gussied|gussied up|tricked out|adorned (similar term)|decorated (similar term)
+fancier|1
+(noun)|enthusiast|admirer (generic term)|adorer (generic term)
+fanciful|3
+(adj)|notional|creative (similar term)|originative (similar term)
+(adj)|imaginary|imagined|notional|unreal (similar term)
+(adj)|fancy (similar term)
+fancifully|1
+(adv)|whimsically
+fancify|1
+(verb)|beautify|embellish|prettify|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|uglify (antonym)
+fanconi's anaemia|1
+(noun)|Fanconi's anemia|Fanconi's anaemia|congenital pancytopenia|anemia (generic term)|anaemia (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+fanconi's anemia|1
+(noun)|Fanconi's anemia|Fanconi's anaemia|congenital pancytopenia|anemia (generic term)|anaemia (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+fancy|6
+(adj)|aureate (similar term)|florid (similar term)|flamboyant (similar term)|baroque (similar term)|churrigueresque (similar term)|churrigueresco (similar term)|busy (similar term)|fussy (similar term)|dressy (similar term)|crackle (similar term)|damascene (similar term)|damask (similar term)|elaborate (similar term)|luxuriant (similar term)|embattled (similar term)|battlemented (similar term)|castled (similar term)|castellated (similar term)|crenelated (similar term)|crenellated (similar term)|crenelate (similar term)|crenellate (similar term)|indented (similar term)|fanciful (similar term)|fantastic (similar term)|garnished (similar term)|lacy (similar term)|lacelike (similar term)|puff (similar term)|puffed (similar term)|rococo (similar term)|vermicular (similar term)|vermiculate (similar term)|vermiculated (similar term)|adorned (related term)|decorated (related term)|rhetorical (related term)|plain (antonym)
+(noun)|illusion|fantasy|phantasy|misconception (generic term)
+(noun)|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+(noun)|fondness|partiality|liking (generic term)
+(verb)|visualize|visualise|envision|project|see|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|go for|take to|desire (generic term)|want (generic term)
+fancy-dress ball|1
+(noun)|masked ball|masquerade ball|ball (generic term)|formal (generic term)|masquerade (generic term)|masquerade party (generic term)|masque (generic term)|mask (generic term)
+fancy-free|1
+(adj)|uncommitted (similar term)
+fancy dress|1
+(noun)|masquerade|masquerade costume|costume (generic term)|disguise (generic term)
+fancy goods|1
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+fancy man|2
+(noun)|pimp|procurer|panderer|pander|pandar|ponce|wrongdoer (generic term)|offender (generic term)
+(noun)|paramour|lover (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+fancy woman|2
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+(noun)|mistress|kept woman|woman (generic term)|adult female (generic term)|lover (generic term)
+fancywork|1
+(noun)|embroidery|needlework (generic term)|needlecraft (generic term)
+fandango|1
+(noun)|social dancing (generic term)
+fandom|1
+(noun)|following (generic term)|followers (generic term)
+fanfare|2
+(noun)|ostentation|flash|display (generic term)
+(noun)|flourish|tucket|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+fang|3
+(noun)|Fang|Bantu (generic term)|Bantoid language (generic term)
+(noun)|canine (generic term)|canine tooth (generic term)|eyetooth (generic term)|eye tooth (generic term)|dogtooth (generic term)|cuspid (generic term)
+(noun)|tooth (generic term)
+fang-like|1
+(adj)|sharp (similar term)
+fanged|1
+(adj)|tooth (related term)
+fanion|1
+(noun)|flag (generic term)
+fanjet|2
+(noun)|fan-jet|turbofan|turbojet|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+(noun)|fan-jet|fanjet engine|turbojet|turbojet engine|turbofan|turbofan engine|jet engine (generic term)
+fanjet engine|1
+(noun)|fanjet|fan-jet|turbojet|turbojet engine|turbofan|turbofan engine|jet engine (generic term)
+fanlight|3
+(noun)|transom|transom window|window (generic term)
+(noun)|skylight|window (generic term)
+(noun)|window (generic term)
+fanlike|1
+(adj)|wide (similar term)|broad (similar term)
+fanned|1
+(adj)|spread-out|distributed (similar term)
+fannie farmer|1
+(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook (generic term)
+fannie mae|1
+(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation (generic term)|corp (generic term)
+fannie merritt farmer|1
+(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook (generic term)
+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 (generic term)
+(noun)|female genitalia|female genitals|female genital organ|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+fanny adams|2
+(noun)|bugger all|fuck all|Fanny Adams|sweet Fanny Adams|nothing (generic term)|nil (generic term)|nix (generic term)|nada (generic term)|null (generic term)|aught (generic term)|cipher (generic term)|cypher (generic term)|goose egg (generic term)|naught (generic term)|zero (generic term)|zilch (generic term)|zip (generic term)|zippo (generic term)
+(noun)|Fanny Adams|canned meat (generic term)|tinned meat (generic term)
+fanny pack|1
+(noun)|butt pack|waist pack (generic term)|belt bag (generic term)
+fanny wright|1
+(noun)|Wright|Frances Wright|Fanny Wright|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+fantabulous|1
+(adj)|excellent|first-class|superior (similar term)
+fantail|1
+(noun)|overhang (generic term)
+fantan|2
+(noun)|fan tan|game of chance (generic term)|gambling game (generic term)
+(noun)|sevens|parliament|card game (generic term)|cards (generic term)
+fantasia|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+fantasise|2
+(verb)|fantasy|fantasize|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|fantasize|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+fantasist|1
+(noun)|creator (generic term)
+fantasize|2
+(verb)|fantasy|fantasise|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|fantasise|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+fantasm|2
+(noun)|apparition|phantom|phantasm|phantasma|specter|spectre|spirit (generic term)|disembodied spirit (generic term)
+(noun)|apparition|phantom|phantasm|phantasma|shadow|illusion (generic term)|semblance (generic term)
+fantast|1
+(noun)|futurist|visionary (generic term)|illusionist (generic term)|seer (generic term)
+fantastic|7
+(adj)|antic|fantastical|grotesque|strange (similar term)|unusual (similar term)
+(adj)|grand|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|wild|unrealistic (similar term)
+(adj)|fantastical|unreal (similar term)
+(adj)|ace|A-one|crack|first-rate|super|tiptop|topnotch|tops|superior (similar term)
+(adj)|fancy (similar term)
+(adj)|phenomenal|extraordinary (similar term)
+fantastical|2
+(adj)|fantastic|unreal (similar term)
+(adj)|antic|fantastic|grotesque|strange (similar term)|unusual (similar term)
+fantastically|1
+(adv)|fabulously
+fantasy|4
+(noun)|phantasy|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+(noun)|phantasy|fiction (generic term)
+(noun)|illusion|phantasy|fancy|misconception (generic term)
+(verb)|fantasize|fantasise|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+fantasy life|1
+(noun)|phantasy life|fantasy (generic term)|phantasy (generic term)
+fantasy world|1
+(noun)|phantasy world|fairyland|fantasy (generic term)|phantasy (generic term)
+fantods|1
+(noun)|disorder (generic term)|upset (generic term)
+fanweed|1
+(noun)|field pennycress|French weed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+fanwort|1
+(noun)|water-shield|Cabomba caroliniana|water lily (generic term)
+fao|1
+(noun)|Food and Agriculture Organization|Food and Agriculture Organization of the United Nations|FAO|United Nations agency (generic term)|UN agency (generic term)
+faq|1
+(noun)|FAQ|list (generic term)|listing (generic term)
+faqir|1
+(noun)|fakir|fakeer|faquir|saint (generic term)|holy man (generic term)|holy person (generic term)|angel (generic term)|Muslim (generic term)|Moslem (generic term)
+faquir|1
+(noun)|fakir|fakeer|faqir|saint (generic term)|holy man (generic term)|holy person (generic term)|angel (generic term)|Muslim (generic term)|Moslem (generic term)
+far|5
+(adj)|cold (similar term)|distant (similar term)|remote (similar term)|distant (similar term)|remote (similar term)|removed (similar term)|faraway (similar term)|far-off (similar term)|farther (similar term)|farthermost (similar term)|farthest (similar term)|furthermost (similar term)|furthest (similar term)|utmost (similar term)|uttermost (similar term)|further (similar term)|farther (similar term)|off the beaten track (similar term)|out-of-the-way (similar term)|outlying (similar term)|near (antonym)
+(adj)|long (similar term)
+(adj)|right (similar term)
+(adj)|immoderate (similar term)
+(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+far-famed|1
+(adj)|celebrated|famed|famous|illustrious|notable|noted|renowned|known (similar term)
+far-flung|2
+(adj)|widespread|distributed (similar term)
+(adj)|distant (similar term)
+far-off|1
+(adj)|faraway|far (similar term)
+far-out|1
+(adj)|kinky|offbeat|quirky|way-out|unconventional (similar term)
+far-right|1
+(adj)|reactionary|reactionist|right (similar term)
+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 (generic term)|remoteness (generic term)|farawayness (generic term)
+(noun)|disparity (generic term)
+far east|1
+(noun)|Far East|region (generic term)
+far left|1
+(adj)|left (similar term)
+farad|1
+(noun)|F|capacitance unit (generic term)
+faraday|1
+(noun)|Faraday|Michael Faraday|chemist (generic term)|physicist (generic term)
+farandole|1
+(noun)|folk dancing (generic term)|folk dance (generic term)
+faraway|2
+(adj)|far-off|far (similar term)
+(adj)|distant (similar term)
+farawayness|1
+(noun)|farness|remoteness|distance (generic term)|nearness (antonym)
+farc|1
+(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+farce|3
+(noun)|farce comedy|travesty|comedy (generic term)
+(noun)|forcemeat|stuffing (generic term)|dressing (generic term)
+(verb)|stuff|fill (generic term)|fill up (generic term)|make full (generic term)
+farce comedy|1
+(noun)|farce|travesty|comedy (generic term)
+farcical|1
+(adj)|ludicrous|ridiculous|humorous (similar term)|humourous (similar term)
+fardel|1
+(noun)|burden (generic term)|load (generic term)|encumbrance (generic term)|incumbrance (generic term)|onus (generic term)
+fare|6
+(noun)|menu|agenda (generic term)|docket (generic term)|schedule (generic term)
+(noun)|transportation|charge (generic term)
+(noun)|passenger (generic term)|rider (generic term)
+(noun)|food (generic term)|nutrient (generic term)
+(verb)|do|make out|come|get along|proceed (generic term)|go (generic term)
+(verb)|eat (generic term)
+fare-stage|1
+(noun)|stage (generic term)|leg (generic term)
+fare-thee-well|1
+(noun)|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+fare increase|1
+(noun)|increase (generic term)|increment (generic term)
+farewell|2
+(noun)|word of farewell|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|leave|leave-taking|parting|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+farfalle|1
+(noun)|bowtie pasta|pasta (generic term)|alimentary paste (generic term)
+farfetched|1
+(adj)|implausible|unlikely (similar term)
+fargo|1
+(noun)|Fargo|city (generic term)|metropolis (generic term)|urban center (generic term)
+farina|1
+(noun)|meal (generic term)
+farinaceous|2
+(adj)|starchlike|amylaceous|amyloid|amyloidal|starchy (similar term)
+(adj)|coarse-grained|grainy|granular|granulose|gritty|mealy|coarse (similar term)|harsh (similar term)
+farkleberry|1
+(noun)|sparkleberry|Vaccinium arboreum|blueberry (generic term)|blueberry bush (generic term)
+farley maidenhair|1
+(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair (generic term)|brittle maidenhair fern (generic term)|Adiantum tenerum (generic term)
+farley maidenhair fern|1
+(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|glory fern|Adiantum tenerum farleyense|brittle maidenhair (generic term)|brittle maidenhair fern (generic term)|Adiantum tenerum (generic term)
+farm|4
+(noun)|workplace (generic term)|work (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|collect (generic term)|take in (generic term)|farm out (related term)
+(verb)|grow|raise|produce|cultivate (generic term)
+farm-place|1
+(noun)|farmplace|farmstead|farm (generic term)
+farm animal|1
+(noun)|livestock|stock|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+farm bill|1
+(noun)|bill (generic term)|measure (generic term)
+farm boy|1
+(noun)|male child (generic term)|boy (generic term)
+farm building|1
+(noun)|building (generic term)|edifice (generic term)
+farm cheese|1
+(noun)|cottage cheese|pot cheese|farmer's cheese|cheese (generic term)
+farm club|1
+(noun)|farm team|minor-league team (generic term)|minor-league club (generic term)
+farm credit system|1
+(noun)|Farm Credit System|FCS|banking industry (generic term)|banking system (generic term)
+farm girl|1
+(noun)|female child (generic term)|girl (generic term)|little girl (generic term)
+farm horse|1
+(noun)|dobbin|workhorse (generic term)
+farm machine|1
+(noun)|machine (generic term)
+farm out|2
+(verb)|subcontract|job|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|hire out|rent out|lend (generic term)|loan (generic term)
+farm team|1
+(noun)|farm club|minor-league team (generic term)|minor-league club (generic term)
+farm worker|1
+(noun)|farmhand|fieldhand|field hand|hired hand (generic term)|hand (generic term)|hired man (generic term)
+farmer|3
+(noun)|husbandman|granger|sodbuster|creator (generic term)
+(noun)|Farmer|James Leonard Farmer|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|Farmer|Fannie Farmer|Fannie Merritt Farmer|cook (generic term)
+farmer's calendar|1
+(noun)|almanac|annual (generic term)|yearly (generic term)|yearbook (generic term)
+farmer's cheese|1
+(noun)|cottage cheese|pot cheese|farm cheese|cheese (generic term)
+farmer's lung|1
+(noun)|thresher's lung|alveolitis (generic term)
+farmer's market|1
+(noun)|green market|greenmarket|open-air market (generic term)|open-air marketplace (generic term)|market square (generic term)
+farmer-labor party|1
+(noun)|Farmer-Labor Party|party (generic term)|political party (generic term)
+farmerette|1
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+farmhand|1
+(noun)|fieldhand|field hand|farm worker|hired hand (generic term)|hand (generic term)|hired man (generic term)
+farmhouse|1
+(noun)|house (generic term)
+farming|3
+(adj)|agrarian|agricultural|rural (similar term)
+(noun)|agriculture|husbandry|cultivation (generic term)
+(noun)|land|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+farming area|1
+(noun)|farmland|country (generic term)|rural area (generic term)
+farmington|1
+(noun)|Farmington|town (generic term)
+farmland|2
+(noun)|farming area|country (generic term)|rural area (generic term)
+(noun)|cultivated land|plowland|ploughland|tilled land|tillage|tilth|land (generic term)|ground (generic term)|soil (generic term)
+farmplace|1
+(noun)|farm-place|farmstead|farm (generic term)
+farmstead|2
+(noun)|land (generic term)
+(noun)|farmplace|farm-place|farm (generic term)
+farmyard|1
+(noun)|yard (generic term)
+farness|1
+(noun)|remoteness|farawayness|distance (generic term)|nearness (antonym)
+faro|1
+(noun)|card game (generic term)|cards (generic term)
+faroe islands|2
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession (generic term)
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island (generic term)
+faroes|2
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|possession (generic term)
+(noun)|Faroe Islands|Faeroe Islands|Faroes|Faeroes|island (generic term)
+faroese|1
+(noun)|Faroese|Faeroese|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+farouk i|1
+(noun)|Farouk I|Faruk I|king (generic term)|male monarch (generic term)|Rex (generic term)
+farrago|1
+(noun)|odds and ends|oddments|melange|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+farragut|1
+(noun)|Farragut|David Glasgow Farragut|naval officer (generic term)
+farrell|2
+(noun)|Farrell|James Thomas Farrell|writer (generic term)|author (generic term)
+(noun)|Farrell|Eileen Farrell|soprano (generic term)
+farrier|1
+(noun)|horseshoer|blacksmith (generic term)
+farrow|2
+(noun)|farrowing|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(verb)|pig|litter (generic term)
+farrowing|1
+(noun)|farrow|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+farseeing|2
+(adj)|eagle-eyed|keen-sighted|longsighted|farsighted (similar term)|presbyopic (similar term)
+(adj)|farsighted|foresighted|foresightful|prospicient|long|longsighted|provident (similar term)
+farsi|2
+(noun)|Farsi|Irani (generic term)|Iranian (generic term)|Persian (generic term)
+(noun)|Persian|Farsi|Iranian (generic term)|Iranian language (generic term)
+farsighted|2
+(adj)|presbyopic|eagle-eyed (similar term)|keen-sighted (similar term)|farseeing (similar term)|longsighted (similar term)|hyperopic (similar term)|hypermetropic (similar term)|telescopic (similar term)|nearsighted (antonym)
+(adj)|farseeing|foresighted|foresightful|prospicient|long|longsighted|provident (similar term)
+farsightedness|2
+(noun)|hyperopia|hypermetropia|hypermetropy|longsightedness|ametropia (generic term)|myopia (antonym)
+(noun)|prevision|foresight|prospicience|knowing (generic term)
+fart|2
+(noun)|farting|flatus|wind|breaking wind|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|break wind|act involuntarily (generic term)|act reflexively (generic term)
+farther|3
+(adj)|far (similar term)
+(adj)|further|far (similar term)
+(adv)|further
+farthermost|1
+(adj)|farthest|furthermost|furthest|utmost|uttermost|far (similar term)
+farthest|2
+(adj)|farthermost|furthermost|furthest|utmost|uttermost|far (similar term)
+(adv)|furthest
+farthing|1
+(noun)|coin (generic term)
+farthingale|1
+(noun)|hoop (generic term)
+farting|1
+(noun)|fart|flatus|wind|breaking wind|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+fartlek|1
+(noun)|athletic training (generic term)
+faruk i|1
+(noun)|Farouk I|Faruk I|king (generic term)|male monarch (generic term)|Rex (generic term)
+fasces|1
+(noun)|emblem (generic term)|allegory (generic term)
+fascia|1
+(noun)|facia|connective tissue (generic term)
+fascicle|2
+(noun)|fascicule|installment (generic term)|instalment (generic term)
+(noun)|fiber bundle|fibre bundle|fasciculus|nervous tissue (generic term)|nerve tissue (generic term)
+fasciculation|1
+(noun)|twitch (generic term)|twitching (generic term)|vellication (generic term)
+fascicule|1
+(noun)|fascicle|installment (generic term)|instalment (generic term)
+fasciculus|1
+(noun)|fiber bundle|fibre bundle|fascicle|nervous tissue (generic term)|nerve tissue (generic term)
+fascinate|3
+(verb)|intrigue|matter to (generic term)|interest (generic term)
+(verb)|transfix|grip|spellbind|interest (generic term)
+(verb)|capture|enamour|trance|catch|becharm|enamor|captivate|beguile|charm|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+fascinated|2
+(adj)|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|spell-bound|transfixed|enchanted (similar term)
+(adj)|interested (similar term)
+fascinating|2
+(adj)|absorbing|engrossing|gripping|riveting|interesting (similar term)
+(adj)|bewitching|captivating|enchanting|enthralling|entrancing|attractive (similar term)
+fascination|3
+(noun)|captivation|enchantment (generic term)|spell (generic term)|trance (generic term)
+(noun)|captivation|enchantment|enthrallment|liking (generic term)
+(noun)|attraction (generic term)|attractiveness (generic term)
+fasciola|1
+(noun)|Fasciola|genus Fasciola|worm genus (generic term)
+fasciola hepatica|1
+(noun)|liver fluke|Fasciola hepatica|fluke (generic term)|trematode (generic term)|trematode worm (generic term)
+fascioliasis|1
+(noun)|fasciolosis|infestation (generic term)
+fasciolidae|1
+(noun)|Fasciolidae|family Fasciolidae|worm family (generic term)
+fasciolopsiasis|1
+(noun)|infestation (generic term)
+fasciolopsis|1
+(noun)|Fasciolopsis|genus Fasciolopsis|worm genus (generic term)
+fasciolopsis buski|1
+(noun)|Fasciolopsis buski|fluke (generic term)|trematode (generic term)|trematode worm (generic term)
+fasciolosis|1
+(noun)|fascioliasis|infestation (generic term)
+fascism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+fascist|2
+(adj)|fascistic|political orientation|ideology|political theory (related term)
+(noun)|rightist (generic term)|right-winger (generic term)
+fascista|1
+(noun)|fascist (generic term)
+fascistic|1
+(adj)|fascist|political orientation|ideology|political theory (related term)
+fashion|5
+(noun)|manner|mode|style|way|property (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+(noun)|vogue (generic term)|trend (generic term)|style (generic term)
+(noun)|consumer goods (generic term)
+(verb)|forge|make (generic term)
+fashion arbiter|1
+(noun)|trend-setter|taste-maker|model (generic term)|role model (generic term)
+fashion business|1
+(noun)|apparel industry|garment industry|fashion industry|rag trade|industry (generic term)
+fashion consultant|1
+(noun)|fashionmonger|adviser (generic term)|advisor (generic term)|consultant (generic term)
+fashion designer|1
+(noun)|couturier|clothes designer|designer|creator (generic term)
+fashion industry|1
+(noun)|apparel industry|garment industry|fashion business|rag trade|industry (generic term)
+fashion model|1
+(noun)|mannequin|manikin|mannikin|manakin|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+fashion plate|2
+(noun)|dandy|dude|fop|gallant|sheik|beau|swell|clotheshorse|man (generic term)|adult male (generic term)
+(noun)|plate (generic term)
+fashionable|3
+(adj)|stylish|latest (similar term)|a la mode (similar term)|in style (similar term)|in vogue (similar term)|modish (similar term)|cool (similar term)|dapper (similar term)|dashing (similar term)|jaunty (similar term)|natty (similar term)|raffish (similar term)|rakish (similar term)|spiffy (similar term)|snappy (similar term)|spruce (similar term)|faddish (similar term)|faddy (similar term)|groovy (similar term)|swagger (similar term)|in (similar term)|up-to-date (similar term)|cutting-edge (similar term)|with-it (similar term)|mod (similar term)|modern (similar term)|modernistic (similar term)|old-time (similar term)|quaint (similar term)|olde worlde (similar term)|swank (similar term)|swanky (similar term)|trendsetting (similar term)|trend-setting (similar term)|trendy (similar term)|voguish (similar term)|unfashionable (antonym)
+(adj)|stylish|chic (similar term)|smart (similar term)|voguish (similar term)|chichi (similar term)|classy (similar term)|posh (similar term)|swish (similar term)|snazzy (similar term)|styleless (antonym)
+(adj)|popular (similar term)
+fashionably|1
+(adv)|unfashionably (antonym)
+fashioned|1
+(adj)|designed (similar term)|intentional (similar term)
+fashioning|1
+(noun)|devising|making|production (generic term)
+fashionmonger|1
+(noun)|fashion consultant|adviser (generic term)|advisor (generic term)|consultant (generic term)
+fast|13
+(adj)|accelerated (similar term)|accelerating (similar term)|alacritous (similar term)|blistering (similar term)|hot (similar term)|red-hot (similar term)|double-quick (similar term)|express (similar term)|fast-breaking (similar term)|fast-paced (similar term)|fleet (similar term)|swift (similar term)|high-speed (similar term)|high-velocity (similar term)|hurrying (similar term)|scurrying (similar term)|immediate (similar term)|prompt (similar term)|quick (similar term)|straightaway (similar term)|instantaneous (similar term)|instant (similar term)|meteoric (similar term)|quick (similar term)|speedy (similar term)|rapid (similar term)|rapid (similar term)|speedy (similar term)|smart (similar term)|speeding (similar term)|winged (similar term)|windy (similar term)|expedited (related term)|hurried (related term)|sudden (related term)|slow (antonym)
+(adj)|slow (antonym)
+(adj)|allegro (similar term)|allegretto (similar term)|andantino (similar term)|presto (similar term)|prestissimo (similar term)|vivace (similar term)|slow (antonym)
+(adj)|smooth (similar term)
+(adj)|barred|bolted|latched|locked|secured|fastened (similar term)
+(adj)|impervious (similar term)|imperviable (similar term)
+(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|profligate|riotous|immoral (similar term)
+(adj)|flying|quick|hurried (similar term)
+(adj)|firm|immobile|fixed (similar term)
+(adj)|firm|loyal|truehearted|faithful (similar term)
+(noun)|fasting|abstinence (generic term)
+(verb)|abstain (generic term)|refrain (generic term)|desist (generic term)
+(adv)|tight
+fast-breaking|1
+(adj)|fast (similar term)
+fast-flying|1
+(adj)|flying|moving (similar term)
+fast-footed|1
+(adj)|swift-footed|footed (similar term)
+fast-growing|1
+(adj)|aggressive|strong-growing|invasive (similar term)
+fast-paced|1
+(adj)|fast (similar term)
+fast asleep|1
+(adj)|sound asleep|asleep (similar term)
+fast break|1
+(noun)|break (generic term)
+fast buck|1
+(noun)|quick buck|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+fast day|1
+(noun)|religious holiday (generic term)|holy day (generic term)
+fast dye|1
+(verb)|dye (generic term)
+fast food|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+fast lane|2
+(noun)|life style (generic term)|life-style (generic term)|lifestyle (generic term)|modus vivendi (generic term)
+(noun)|traffic lane (generic term)|slow lane (antonym)
+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 (generic term)|major fast day (generic term)
+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 (generic term)|major fast day (generic term)
+fast of esther|1
+(noun)|Fast of Esther|minor fast day (generic term)
+fast of gedaliah|1
+(noun)|Fast of Gedaliah|minor fast day (generic term)
+fast of tammuz|1
+(noun)|Fast of Tammuz|minor fast day (generic term)
+fast of tevet|1
+(noun)|Fast of Tevet|minor fast day (generic term)
+fast of the firstborn|1
+(noun)|Fast of the Firstborn|minor fast day (generic term)
+fast one|1
+(noun)|trick|device (generic term)|gimmick (generic term)|twist (generic term)
+fast reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)|thermal reactor (antonym)
+fast time scale|1
+(noun)|time scale (generic term)
+fast track|1
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+fastball|1
+(noun)|heater|smoke|hummer|bullet|pitch (generic term)|delivery (generic term)
+fasten|4
+(verb)|fix|secure|attach (generic term)|unfasten (antonym)
+(verb)|attach (generic term)|unfasten (antonym)
+(verb)|attach (generic term)
+(verb)|tighten|change (generic term)|alter (generic term)|modify (generic term)
+fasten on|1
+(verb)|take up|latch on|hook on|seize on|espouse (generic term)|embrace (generic term)|adopt (generic term)|sweep up (generic term)
+fastened|3
+(adj)|barred (similar term)|bolted (similar term)|fast (similar term)|latched (similar term)|locked (similar term)|secured (similar term)|pegged-down (similar term)|unfastened (antonym)
+(adj)|buttoned|botonee (similar term)|botonnee (similar term)|button-down (similar term)|unbuttoned (antonym)
+(adj)|tied|knotted (similar term)|untied (antonym)
+fastener|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|fastening|holdfast|fixing|restraint (generic term)|constraint (generic term)
+fastening|2
+(noun)|fastener|holdfast|fixing|restraint (generic term)|constraint (generic term)
+(noun)|attachment|joining (generic term)|connection (generic term)|connexion (generic term)
+faster|1
+(adv)|quicker
+fastest|1
+(adv)|quickest
+fastidious|2
+(adj)|choosy (similar term)|choosey (similar term)|dainty (similar term)|nice (similar term)|overnice (similar term)|prissy (similar term)|squeamish (similar term)|finical (similar term)|finicky (similar term)|fussy (similar term)|particular (similar term)|picky (similar term)|meticulous (similar term)|pernickety (similar term)|persnickety (similar term)|old-maidish (similar term)|old-womanish (similar term)|refined (related term)|tidy (related term)|unfastidious (antonym)
+(adj)|exacting|unfastidious (antonym)
+fastidiously|1
+(adv)|painstakingly
+fastidiousness|1
+(noun)|cleanliness (generic term)
+fastigiate|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+fasting|1
+(noun)|fast|abstinence (generic term)
+fastnacht|1
+(noun)|raised doughnut (generic term)
+fastness|3
+(noun)|speed|swiftness|pace (generic term)|rate (generic term)
+(noun)|fixedness|fixity|fixture|secureness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+(noun)|stronghold|defensive structure (generic term)|defense (generic term)|defence (generic term)
+fat|10
+(adj)|abdominous (similar term)|paunchy (similar term)|potbellied (similar term)|blubbery (similar term)|buxom (similar term)|chubby (similar term)|embonpoint (similar term)|plump (similar term)|zaftig (similar term)|zoftig (similar term)|compact (similar term)|heavyset (similar term)|stocky (similar term)|thick (similar term)|thickset (similar term)|corpulent (similar term)|obese (similar term)|weighty (similar term)|rotund (similar term)|double-chinned (similar term)|jowly (similar term)|loose-jowled (similar term)|dumpy (similar term)|podgy (similar term)|pudgy (similar term)|tubby (similar term)|roly-poly (similar term)|fattish (similar term)|fleshy (similar term)|heavy (similar term)|overweight (similar term)|gross (similar term)|porcine (similar term)|portly (similar term)|stout (similar term)|endomorphic (related term)|pyknic (related term)|rounded (related term)|thick (related term)|thin (antonym)
+(adj)|thick (similar term)
+(adj)|fatty|adipose (similar term)|buttery (similar term)|greasy (similar term)|oily (similar term)|sebaceous (similar term)|oleaginous (similar term)|suety (similar term)|superfatted (similar term)|nonfat (antonym)
+(adj)|juicy|profitable (similar term)
+(adj)|fertile|productive|rich|fruitful (similar term)
+(adj)|rounded|endomorphic (similar term)|pyknic (similar term)
+(noun)|lipid (generic term)|lipide (generic term)|lipoid (generic term)
+(noun)|adipose tissue|fatty tissue|animal tissue (generic term)
+(noun)|fatness|blubber|avoirdupois|bodily property (generic term)|leanness (antonym)
+(verb)|fatten|flesh out|fill out|plump|plump out|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+fat-free|1
+(adj)|nonfat|fatless|light (similar term)|lite (similar term)|low-cal (similar term)|calorie-free (similar term)|skim (similar term)|skimmed (similar term)|fatty (antonym)
+fat-soluble|1
+(adj)|soluble (similar term)
+fat-soluble vitamin|1
+(noun)|vitamin (generic term)
+fat cat|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+fat cell|1
+(noun)|adipose cell|somatic cell (generic term)|vegetative cell (generic term)
+fat chance|1
+(noun)|slim chance|probability (generic term)|chance (generic term)
+fat embolism|1
+(noun)|embolism (generic term)
+fat farm|1
+(noun)|health spa (generic term)|spa (generic term)|health club (generic term)
+fat hen|1
+(noun)|good-king-henry|allgood|wild spinach|Chenopodium bonus-henricus|goosefoot (generic term)
+fat metabolism|1
+(noun)|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+fat person|1
+(noun)|fatso|fatty|roly-poly|butterball|large person (generic term)|thin person (antonym)
+fat tuesday|1
+(noun)|Mardi Gras|Fat Tuesday|carnival (generic term)
+fata morgana|1
+(noun)|mirage (generic term)
+fatah|1
+(noun)|al-Fatah|Fatah|al-Asifa|political movement (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+fatah tanzim|1
+(noun)|Fatah Tanzim|Tanzim|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+fatal|4
+(adj)|deadly (similar term)|deathly (similar term)|mortal (similar term)|deadly (similar term)|lethal (similar term)|terminal (similar term)|nonfatal (antonym)
+(adj)|fateful|decisive (similar term)
+(adj)|black|calamitous|disastrous|fateful|unfortunate (similar term)
+(adj)|fateful|inevitable (similar term)
+fatal accident|1
+(noun)|casualty|fatality (generic term)|human death (generic term)|accident (generic term)
+fatalism|1
+(noun)|determinism (generic term)
+fatalist|3
+(adj)|fatalistic|necessitarian (related term)
+(adj)|fatalistic|determinism (related term)
+(noun)|determinist|predestinarian|predestinationist|necessitarian (generic term)
+fatalistic|2
+(adj)|fatalist|necessitarian (related term)
+(adj)|fatalist|determinism (related term)
+fatality|2
+(noun)|human death|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|deadliness (generic term)|lethality (generic term)
+fatality rate|1
+(noun)|deathrate|death rate|mortality|mortality rate|rate (generic term)
+fatback|1
+(noun)|salt pork (generic term)
+fate|4
+(noun)|destiny|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|Destiny|Fate|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|fortune|destiny|luck|lot|circumstances|portion|condition (generic term)
+(verb)|destine|doom|designate|ordain (generic term)
+fated|1
+(adj)|doomed|certain (similar term)|sure (similar term)
+fateful|4
+(adj)|fatal|decisive (similar term)
+(adj)|foreboding|portentous|prophetic (similar term)|prophetical (similar term)
+(adj)|black|calamitous|disastrous|fatal|unfortunate (similar term)
+(adj)|fatal|inevitable (similar term)
+fates|1
+(noun)|Fates|Weird Sisters|Three Weird Sisters|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+fathead|1
+(noun)|goof|goofball|bozo|jackass|goose|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+fatheaded|1
+(adj)|blockheaded|boneheaded|loggerheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid (similar term)
+father|9
+(noun)|male parent|begetter|parent (generic term)|female parent (antonym)|mother (antonym)
+(noun)|forefather|sire|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+(noun)|Father|Padre|priest (generic term)|title (generic term)|title of respect (generic term)|form of address (generic term)
+(noun)|Church Father|Father of the Church|Father|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|leader (generic term)
+(noun)|Father|Father-God|Fatherhood|hypostasis (generic term)|hypostasis of Christ (generic term)
+(noun)|founder|beginner|founding father|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+(noun)|don|head (generic term)|chief (generic term)|top dog (generic term)
+(verb)|beget|get|engender|mother|sire|generate|bring forth|make (generic term)|create (generic term)
+father's day|1
+(noun)|Father's Day|day (generic term)
+father-figure|1
+(noun)|man (generic term)|adult male (generic term)
+father-god|1
+(noun)|Father|Father-God|Fatherhood|hypostasis (generic term)|hypostasis of Christ (generic term)
+father-in-law|1
+(noun)|father (generic term)|male parent (generic term)|begetter (generic term)|in-law (generic term)|relative-in-law (generic term)
+father brown|1
+(noun)|Father Brown|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+father christmas|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+father figure|1
+(noun)|father surrogate|man (generic term)|adult male (generic term)
+father of radio|1
+(noun)|De Forest|Lee De Forest|Father of Radio|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+father of the church|1
+(noun)|Church Father|Father of the Church|Father|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+father of the submarine|1
+(noun)|Bushnell|David Bushnell|Father of the Submarine|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+father surrogate|1
+(noun)|father figure|man (generic term)|adult male (generic term)
+fatherhood|3
+(noun)|paternity|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|Father|Father-God|Fatherhood|hypostasis (generic term)|hypostasis of Christ (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+fatherland|1
+(noun)|homeland|motherland|mother country|country of origin|native land|country (generic term)|state (generic term)|land (generic term)
+fatherless|2
+(adj)|unparented (similar term)|parentless (similar term)
+(adj)|illegitimate (similar term)
+fatherlike|1
+(adj)|fatherly|paternal (similar term)
+fatherliness|1
+(noun)|paternal quality|parental quality (generic term)
+fatherly|2
+(adj)|fatherlike|paternal (similar term)
+(adj)|loving (similar term)
+fathom|4
+(noun)|fthm|linear unit (generic term)
+(noun)|fthm|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(verb)|penetrate|bottom|understand (generic term)
+(verb)|sound|quantify (generic term)|measure (generic term)
+fathomable|2
+(adj)|plumbable|soundable|unfathomable (antonym)
+(adj)|comprehensible (similar term)|comprehendible (similar term)
+fathometer|1
+(noun)|sonic depth finder|depth finder (generic term)
+fatigability|1
+(noun)|weakness (generic term)
+fatigue|6
+(noun)|weariness|tiredness|temporary state (generic term)
+(noun)|failing (generic term)|weakness (generic term)
+(noun)|boredom (generic term)|ennui (generic term)|tedium (generic term)
+(noun)|fatigue duty|assignment (generic term)|duty assignment (generic term)
+(verb)|tire|pall|weary|jade|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|indispose (generic term)|refresh (antonym)
+fatigue crack|1
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+fatigue duty|1
+(noun)|fatigue|assignment (generic term)|duty assignment (generic term)
+fatigue fracture|1
+(noun)|stress fracture|fracture (generic term)|break (generic term)
+fatigue party|1
+(noun)|party (generic term)|company (generic term)
+fatigued|1
+(adj)|exhausted|dog-tired|fagged|played out|spent|washed-out|worn-out|worn out|tired (similar term)
+fatigues|1
+(noun)|military uniform (generic term)
+fatiha|1
+(noun)|Fatiha|Fatihah|sura (generic term)
+fatihah|1
+(noun)|Fatiha|Fatihah|sura (generic term)
+fatima|1
+(noun)|Fatima|Fatimah|Muslim (generic term)|Moslem (generic term)
+fatimah|1
+(noun)|Fatima|Fatimah|Muslim (generic term)|Moslem (generic term)
+fatism|1
+(noun)|fattism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+fatless|1
+(adj)|nonfat|fat-free|light (similar term)|lite (similar term)|low-cal (similar term)|calorie-free (similar term)|skim (similar term)|skimmed (similar term)|fatty (antonym)
+fatness|1
+(noun)|fat|blubber|avoirdupois|bodily property (generic term)|leanness (antonym)
+fats domino|1
+(noun)|Domino|Fats Domino|Antoine Domino|rhythm and blues musician (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+fats waller|1
+(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician (generic term)|jazzman (generic term)
+fatso|1
+(noun)|fatty|fat person|roly-poly|butterball|large person (generic term)|thin person (antonym)
+fatten|1
+(verb)|fat|flesh out|fill out|plump|plump out|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+fatten out|1
+(verb)|fatten|fat|flesh out|fill out|plump|plump out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+fatten up|1
+(verb)|fatten|fat|flesh out|fill out|plump|plump out|fatten out|change (generic term)|alter (generic term)|modify (generic term)
+fattened|1
+(adj)|finished (similar term)
+fattening|1
+(adj)|finished (similar term)
+fattiness|1
+(noun)|adiposity|adiposeness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+fattish|1
+(adj)|fat (similar term)
+fattism|1
+(noun)|fatism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+fatty|2
+(adj)|fat|adipose (similar term)|buttery (similar term)|greasy (similar term)|oily (similar term)|sebaceous (similar term)|oleaginous (similar term)|suety (similar term)|superfatted (similar term)|nonfat (antonym)
+(noun)|fatso|fat person|roly-poly|butterball|large person (generic term)|thin person (antonym)
+fatty acid|1
+(noun)|carboxylic acid (generic term)
+fatty liver|1
+(noun)|liver disease (generic term)
+fatty oil|1
+(noun)|fixed oil|oil (generic term)
+fatty tissue|1
+(noun)|adipose tissue|fat|animal tissue (generic term)
+fatuity|1
+(noun)|absurdity|fatuousness|silliness|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+fatuous|1
+(adj)|asinine|inane|mindless|vacuous|foolish (similar term)
+fatuously|1
+(adv)|inanely
+fatuousness|1
+(noun)|absurdity|fatuity|silliness|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+fatwa|1
+(noun)|opinion (generic term)|ruling (generic term)
+fatwah|1
+(noun)|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+faubourg|1
+(noun)|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+faucal|1
+(adj)|passage|passageway (related term)
+fauces|1
+(noun)|passage (generic term)|passageway (generic term)
+faucet|1
+(noun)|spigot|regulator (generic term)
+faucial tonsil|1
+(noun)|tonsil|palatine tonsil|tonsilla|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+fauld|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+faulkner|1
+(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist (generic term)
+fault|8
+(noun)|responsibility (generic term)|responsibleness (generic term)
+(noun)|faulting|geological fault|shift|fracture|break|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|demerit|worth (generic term)|merit (antonym)
+(noun)|mistake|error|nonaccomplishment (generic term)|nonachievement (generic term)
+(noun)|defect|flaw|imperfection (generic term)|imperfectness (generic term)
+(noun)|serve (generic term)|service (generic term)
+(noun)|breakdown (generic term)|equipment failure (generic term)
+(verb)|blame|charge (generic term)|accuse (generic term)|absolve (antonym)
+fault line|1
+(noun)|line (generic term)
+faultfinder|1
+(noun)|cynic|unpleasant person (generic term)|disagreeable person (generic term)
+faultfinding|3
+(adj)|judgmental (similar term)
+(adj)|captious|critical (similar term)
+(noun)|carping|criticism (generic term)|unfavorable judgment (generic term)
+faultiness|1
+(noun)|defectiveness|imperfection (generic term)|imperfectness (generic term)
+faulting|1
+(noun)|fault|geological fault|shift|fracture|break|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+faultless|1
+(adj)|immaculate|impeccable|perfect (similar term)
+faultlessness|1
+(noun)|impeccability|correctness (generic term)
+faulty|2
+(adj)|inaccurate (similar term)
+(adj)|defective|imperfect (similar term)
+faun|1
+(noun)|Roman deity (generic term)
+fauna|2
+(noun)|zoology|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|flora (antonym)
+(noun)|animal|animate being|beast|brute|creature|organism (generic term)|being (generic term)
+fauntleroy|1
+(noun)|Fauntleroy|Little Lord Fauntleroy|male child (generic term)|boy (generic term)
+faunus|1
+(noun)|Faunus|Roman deity (generic term)
+faust|1
+(noun)|Faust|Faustus|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+faustian|1
+(adj)|Faustian|fictional character|fictitious character|character (related term)
+fausto paolo sozzini|1
+(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+faustus|1
+(noun)|Faust|Faustus|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+faustus socinus|1
+(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+fauteuil|1
+(noun)|armchair (generic term)
+fauve|1
+(noun)|Fauve|fauvist|painter (generic term)
+fauvism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+fauvist|1
+(noun)|Fauve|painter (generic term)
+faux|1
+(adj)|fake|false|imitation|simulated|artificial (similar term)|unreal (similar term)
+faux pas|1
+(noun)|gaffe|solecism|slip|gaucherie|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+fava bean|2
+(noun)|broad bean|horsebean|bean (generic term)
+(noun)|broad bean|shell bean (generic term)
+faveolate|1
+(adj)|alveolate|cavitied|honeycombed|pitted|cellular (similar term)
+favism|1
+(noun)|anemia (generic term)|anaemia (generic term)
+favor|9
+(noun)|favour|kindness (generic term)|benignity (generic term)
+(noun)|favour|advantage (generic term)|vantage (generic term)
+(noun)|favour|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|favour|approval (generic term)
+(noun)|party favor|party favour|favour|keepsake (generic term)|souvenir (generic term)|token (generic term)|relic (generic term)
+(verb)|prefer|favour|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+(verb)|favour|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|favour|spare (generic term)|save (generic term)
+(verb)|privilege|favour|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+favorable|5
+(adj)|favourable|approving (similar term)|approbative (similar term)|approbatory (similar term)|plausive (similar term)|indulgent (similar term)|pleasing (similar term)|affirmative (related term)|affirmatory (related term)|complimentary (related term)|good (related term)|unfavorable (antonym)
+(adj)|favourable|following (similar term)|propitious (related term)|unfavorable (antonym)
+(adj)|well-disposed|friendly (similar term)
+(adj)|golden|favourable|lucky|prosperous|propitious (similar term)
+(adj)|favourable|convenient (similar term)
+favorable position|1
+(noun)|superiority|favourable position|advantage (generic term)|vantage (generic term)
+favorable reception|1
+(noun)|approval|favourable reception|acceptance (generic term)
+favorableness|1
+(noun)|favourableness|advantageousness|positivity|positiveness|profitableness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+favorably|1
+(adv)|favourably|unfavorably (antonym)
+favored|3
+(adj)|favorite|favourite|best-loved|pet|preferred|preferent|loved (similar term)
+(adj)|advantaged|privileged (similar term)
+(adj)|fortunate|golden|blessed (similar term)|blest (similar term)
+favoring|1
+(adj)|affirmative|pro (similar term)
+favorite|5
+(adj)|favourite|popular (similar term)
+(adj)|favored|favourite|best-loved|pet|preferred|preferent|loved (similar term)
+(noun)|favourite|choice (generic term)|pick (generic term)|selection (generic term)
+(noun)|darling|favourite|pet|dearie|deary|ducky|lover (generic term)
+(noun)|front-runner|favourite|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+favorite son|1
+(noun)|favourite son|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+favoritism|2
+(noun)|favouritism|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|discrimination|favouritism|social control (generic term)
+favour|9
+(noun)|favor|approval (generic term)
+(noun)|favor|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|favor|advantage (generic term)|vantage (generic term)
+(noun)|party favor|party favour|favor|keepsake (generic term)|souvenir (generic term)|token (generic term)|relic (generic term)
+(noun)|favor|kindness (generic term)|benignity (generic term)
+(verb)|favor|spare (generic term)|save (generic term)
+(verb)|privilege|favor|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|prefer|favor|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+(verb)|favor|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+favourable|4
+(adj)|favorable|approving (similar term)|approbative (similar term)|approbatory (similar term)|plausive (similar term)|indulgent (similar term)|pleasing (similar term)|affirmative (related term)|affirmatory (related term)|complimentary (related term)|good (related term)|unfavorable (antonym)
+(adj)|favorable|following (similar term)|propitious (related term)|unfavorable (antonym)
+(adj)|favorable|convenient (similar term)
+(adj)|golden|favorable|lucky|prosperous|propitious (similar term)
+favourable position|1
+(noun)|superiority|favorable position|advantage (generic term)|vantage (generic term)
+favourable reception|1
+(noun)|approval|favorable reception|acceptance (generic term)
+favourableness|1
+(noun)|favorableness|advantageousness|positivity|positiveness|profitableness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+favourably|1
+(adv)|favorably|unfavorably (antonym)
+favourite|5
+(adj)|favorite|popular (similar term)
+(adj)|favored|favorite|best-loved|pet|preferred|preferent|loved (similar term)
+(noun)|front-runner|favorite|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|darling|favorite|pet|dearie|deary|ducky|lover (generic term)
+(noun)|favorite|choice (generic term)|pick (generic term)|selection (generic term)
+favourite son|1
+(noun)|favorite son|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+favouritism|2
+(noun)|favoritism|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|discrimination|favoritism|social control (generic term)
+favus|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+fawkes|1
+(noun)|Fawkes|Guy Fawkes|conspirator (generic term)|coconspirator (generic term)|plotter (generic term)|machinator (generic term)
+fawn|5
+(noun)|dun|greyish brown|grayish brown|light brown (generic term)
+(noun)|deer (generic term)|cervid (generic term)|young mammal (generic term)
+(verb)|crawl|creep|cringe|cower|grovel|bend (generic term)|flex (generic term)
+(verb)|toady|truckle|bootlick|kowtow|kotow|suck up|flatter (generic term)|blandish (generic term)
+(verb)|litter (generic term)
+fawn-colored|1
+(adj)|fawn-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+fawn-coloured|1
+(adj)|fawn-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+fawn lily|1
+(noun)|Erythronium californicum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+fawner|1
+(noun)|apple polisher|bootlicker|groveller|groveler|truckler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+fawning|2
+(adj)|bootlicking|obsequious|sycophantic|toadyish|insincere (similar term)
+(adj)|bootlicking|sycophantic|toadyish|servile (similar term)
+fax|2
+(noun)|facsimile|facsimile machine|duplicator (generic term)|copier (generic term)
+(verb)|telefax|facsimile|telecommunicate (generic term)
+fay|1
+(noun)|fairy|faery|faerie|sprite|spiritual being (generic term)|supernatural being (generic term)
+fayetteville|1
+(noun)|Fayetteville|town (generic term)
+faze|1
+(verb)|unnerve|enervate|unsettle|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+fazed|1
+(adj)|bothered|daunted|discomposed (similar term)
+fbi|1
+(noun)|Federal Bureau of Investigation|FBI|law enforcement agency (generic term)
+fbi agent|1
+(noun)|G-man|FBI agent|government man|government agent (generic term)
+fcc|1
+(noun)|Federal Communications Commission|FCC|independent agency (generic term)
+fcs|1
+(noun)|Farm Credit System|FCS|banking industry (generic term)|banking system (generic term)
+fda|1
+(noun)|Food and Drug Administration|FDA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+fdic|1
+(noun)|Federal Deposit Insurance Corporation|FDIC|corporation (generic term)|corp (generic term)
+fdr|1
+(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+fe|1
+(noun)|iron|Fe|atomic number 26|metallic element (generic term)|metal (generic term)
+feabane mullet|1
+(noun)|fleabane|Pulicaria dysenterica|herb (generic term)|herbaceous plant (generic term)
+fealty|1
+(noun)|allegiance|loyalty (generic term)|trueness (generic term)
+fear|7
+(noun)|fearfulness|fright|emotion (generic term)|fearlessness (antonym)
+(noun)|concern|care|anxiety (generic term)
+(noun)|reverence|awe|veneration|emotion (generic term)
+(verb)|worry (generic term)
+(verb)|dread
+(verb)|regret (generic term)
+(verb)|reverence|revere|venerate|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)
+fearful|5
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearsome|frightening|horrendous|horrific|terrible|alarming (similar term)
+(adj)|cowardly|caitiff (similar term)|chicken (similar term)|chickenhearted (similar term)|lily-livered (similar term)|white-livered (similar term)|yellow (similar term)|yellow-bellied (similar term)|craven (similar term)|recreant (similar term)|dastard (similar term)|dastardly (similar term)|faint (similar term)|fainthearted (similar term)|timid (similar term)|faint-hearted (similar term)|funky (similar term)|poltroon (similar term)|pusillanimous (similar term)|poor-spirited (similar term)|unmanly (similar term)|afraid (related term)|ignoble (related term)|timid (related term)|brave (antonym)
+(adj)|frightful|bad (similar term)
+(adj)|timorous|trepid|timid (similar term)
+(adj)|afraid (similar term)
+fearfully|1
+(adv)|fearlessly (antonym)
+fearfulness|2
+(noun)|fear|fright|emotion (generic term)|fearlessness (antonym)
+(noun)|cowardice (generic term)|cowardliness (generic term)|fearlessness (antonym)
+fearless|2
+(adj)|unafraid|unapprehensive (similar term)|unblinking (similar term)|unflinching (similar term)|unintimidated (similar term)|unshrinking (similar term)|unfrightened (similar term)|bold (related term)|brave (related term)|courageous (related term)|afraid (antonym)
+(adj)|audacious|brave|dauntless|intrepid|unfearing|bold (similar term)
+fearlessly|1
+(adv)|dauntlessly|intrepidly|fearfully (antonym)
+fearlessness|2
+(noun)|bravery|feeling (generic term)|fear (antonym)
+(noun)|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)|fearfulness (antonym)
+fearsome|1
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|frightening|horrendous|horrific|terrible|alarming (similar term)
+feasibility|1
+(noun)|feasibleness|practicability (generic term)|practicableness (generic term)|infeasibility (antonym)
+feasible|1
+(adj)|executable|practicable|viable|workable|possible (similar term)
+feasibleness|1
+(noun)|feasibility|practicability (generic term)|practicableness (generic term)|infeasibility (antonym)
+feasibly|1
+(adv)|practicably
+feast|7
+(noun)|banquet|dinner (generic term)|dinner party (generic term)
+(noun)|thing (generic term)
+(noun)|banquet|spread|meal (generic term)|repast (generic term)
+(noun)|fete|fiesta|party (generic term)
+(verb)|banquet|junket|eat (generic term)
+(verb)|banquet|junket|host (generic term)
+(verb)|feed|regale (generic term)|treat (generic term)
+feast day|1
+(noun)|fete day|holiday (generic term)
+feast of booths|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+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 (generic term)
+feast of dormition|1
+(noun)|Dormition|Feast of Dormition|religious holiday (generic term)|holy day (generic term)
+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 (generic term)
+feast of sacrifice|1
+(noun)|Id al-Adha|Feast of Sacrifice|feast day (generic term)|fete day (generic term)
+feast of tabernacles|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+feast of the circumcision|1
+(noun)|Circumcision|Feast of the Circumcision|January 1|feast day (generic term)|fete day (generic term)
+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 (generic term)
+feast of the unleavened bread|1
+(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast (generic term)|moveable feast (generic term)
+feast of weeks|1
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+feast one's eyes|1
+(verb)|enjoy (generic term)|bask (generic term)|relish (generic term)|savor (generic term)|savour (generic term)
+feasting|1
+(noun)|banqueting|eating (generic term)|feeding (generic term)
+feat|1
+(noun)|deed|effort|exploit|accomplishment (generic term)|achievement (generic term)
+feather|7
+(noun)|plume|plumage|body covering (generic term)|animal material (generic term)
+(noun)|feathering|rotation (generic term)|rotary motion (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+(verb)|cover (generic term)
+(verb)|square|paddle (generic term)
+(verb)|square|row (generic term)
+(verb)|fledge|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+feather-foil|1
+(noun)|featherfoil|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+feather ball|1
+(noun)|Mammillaria plumosa|cactus (generic term)
+feather bed|1
+(noun)|featherbed|mattress (generic term)
+feather boa|1
+(noun)|boa|scarf (generic term)
+feather geranium|1
+(noun)|Jerusalem oak|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot (generic term)
+feather one's nest|1
+(verb)|enrich (generic term)
+feather palm|1
+(noun)|palm (generic term)|palm tree (generic term)
+feather reed grass|1
+(noun)|feathertop|Calamagrostis acutiflora|reed grass (generic term)
+feather star|1
+(noun)|comatulid|crinoid (generic term)
+featherbed|3
+(noun)|feather bed|mattress (generic term)
+(verb)|pamper|cosset|cocker|baby|coddle|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|hire (generic term)|engage (generic term)|employ (generic term)
+featherbedding|1
+(noun)|practice (generic term)|pattern (generic term)
+featherbrained|1
+(adj)|airheaded|dizzy|empty-headed|giddy|light-headed|lightheaded|silly|frivolous (similar term)
+feathered|2
+(adj)|feathery|plumy|adorned (similar term)|decorated (similar term)
+(adj)|aftershafted (similar term)|feathery (similar term)|featherlike (similar term)|feathery (similar term)|fledged (similar term)|vaned (similar term)|flighted (similar term)|pennate (similar term)|plumaged (similar term)|plumate (similar term)|plumed (similar term)|plumose (similar term)|plumed (similar term)|plumy (similar term)|plumelike (similar term)|plumy (similar term)|velvety-plumaged (similar term)|unfeathered (antonym)
+featheredge|1
+(noun)|edge (generic term)
+featheredged|1
+(adj)|deckled|deckle-edged|bordered (similar term)
+featherfoil|1
+(noun)|feather-foil|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+featheriness|1
+(noun)|downiness|fluffiness|softness (generic term)
+feathering|1
+(noun)|feather|rotation (generic term)|rotary motion (generic term)
+featherless|1
+(adj)|unfeathered|plucked (similar term)|unfledged (similar term)|fledgeless (similar term)|unvaned (similar term)|feathered (antonym)
+featherlike|1
+(adj)|feathery|feathered (similar term)
+feathertop|2
+(noun)|feathertop grass|Pennistum villosum|grass (generic term)
+(noun)|feather reed grass|Calamagrostis acutiflora|reed grass (generic term)
+feathertop grass|1
+(noun)|feathertop|Pennistum villosum|grass (generic term)
+featherweight|3
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|prizefighter (generic term)|gladiator (generic term)
+feathery|3
+(adj)|featherlike|feathered (similar term)
+(adj)|feathered (similar term)
+(adj)|feathered|plumy|adorned (similar term)|decorated (similar term)
+feature|7
+(noun)|characteristic|property (generic term)|attribute (generic term)|dimension (generic term)
+(noun)|lineament|body part (generic term)
+(noun)|feature film|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+(noun)|feature article|article (generic term)
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+(verb)|have|lack (antonym)
+(verb)|sport|boast|have (generic term)|feature (generic term)
+feature article|1
+(noun)|feature|article (generic term)
+feature film|1
+(noun)|feature|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+featured|2
+(adj)|conspicuous (similar term)
+(adj)|faced (similar term)
+featureless|1
+(adj)|plain (similar term)
+feb|1
+(noun)|February|Feb|Gregorian calendar month (generic term)
+feb 2|1
+(noun)|Candlemas|Candlemas Day|Feb 2|quarter day (generic term)
+febricity|1
+(noun)|fever|febrility|pyrexia|feverishness|symptom (generic term)
+febrifuge|1
+(noun)|antipyretic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+febrile|1
+(adj)|feverish|symptom (related term)|afebrile (antonym)
+febrility|1
+(noun)|fever|febricity|pyrexia|feverishness|symptom (generic term)
+february|1
+(noun)|February|Feb|Gregorian calendar month (generic term)
+february 12|1
+(noun)|Lincoln's Birthday|February 12|day (generic term)
+february 14|1
+(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day (generic term)
+february 2|1
+(noun)|Groundhog Day|February 2|day (generic term)
+february 22|1
+(noun)|Washington's Birthday|February 22|day (generic term)
+february 29|1
+(noun)|leap day|bissextile day|February 29|day (generic term)
+february daphne|1
+(noun)|mezereon|February daphne|Daphne mezereum|daphne (generic term)
+february revolution|1
+(noun)|Russian Revolution|February Revolution|revolution (generic term)
+fecal|1
+(adj)|faecal|feculent|dirty (similar term)|soiled (similar term)|unclean (similar term)
+fecal impaction|1
+(noun)|constipation (generic term)|irregularity (generic term)
+fecal matter|1
+(noun)|faecal matter|feces|faeces|BM|stool|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+fecal occult test|1
+(noun)|faecal occult test|stool test|diagnostic test (generic term)|diagnostic assay (generic term)
+fecalith|1
+(noun)|coprolith|faecalith|stercolith|mass (generic term)
+feces|1
+(noun)|fecal matter|faecal matter|faeces|BM|stool|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+fechner|1
+(noun)|Fechner|Gustav Theodor Fechner|physicist (generic term)
+fechner's law|1
+(noun)|Fechner's law|Weber-Fechner law|law (generic term)|law of nature (generic term)
+feckless|2
+(adj)|irresponsible (similar term)
+(adj)|inept|incompetent (similar term)
+fecklessly|1
+(adv)|ineptly
+fecklessness|1
+(noun)|worthlessness (generic term)|ineptitude (generic term)
+fecula|1
+(noun)|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+feculence|1
+(noun)|dirtiness (generic term)|uncleanness (generic term)
+feculent|1
+(adj)|fecal|faecal|dirty (similar term)|soiled (similar term)|unclean (similar term)
+fecund|2
+(adj)|fertile (similar term)
+(adj)|fertile|prolific|productive (similar term)
+fecundate|2
+(verb)|fertilize|fertilise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|inseminate|fertilize|fertilise|change (generic term)|alter (generic term)|modify (generic term)
+fecundation|2
+(noun)|fertilization|fertilisation|impregnation|creation (generic term)|conception (generic term)
+(noun)|fertilization|fertilisation|dressing|enrichment (generic term)
+fecundity|3
+(noun)|fruitfulness|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|fertility|physiological state (generic term)|physiological condition (generic term)|infertility (antonym)
+(noun)|fruitfulness|quality (generic term)|fruitlessness (antonym)
+fed|2
+(noun)|Federal|Fed|federal official|agent (generic term)|federal agent (generic term)
+(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank (generic term)
+fed up|1
+(adj)|disgusted|sick|sick of|tired of|displeased (similar term)
+fedayeen|1
+(noun)|paramilitary (generic term)|paramilitary force (generic term)|paramilitary unit (generic term)|paramilitary organization (generic term)|paramilitary organisation (generic term)
+fedayeen saddam|1
+(noun)|Fedayeen Saddam|Saddam's Martyrs|paramilitary (generic term)|paramilitary force (generic term)|paramilitary unit (generic term)|paramilitary organization (generic term)|paramilitary organisation (generic term)
+fedelline|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+federal|6
+(adj)|national (similar term)
+(adj)|government|authorities|regime (related term)
+(adj)|Union|Federal|northern (similar term)
+(adj)|unitary (antonym)
+(noun)|Federal|Federal soldier|Union soldier|Yankee (generic term)|Yank (generic term)|Northerner (generic term)
+(noun)|Federal|Fed|federal official|agent (generic term)|federal agent (generic term)
+federal agency|1
+(noun)|agency|government agency|bureau|office|authority|administrative unit (generic term)|administrative body (generic term)
+federal agent|1
+(noun)|agent|official (generic term)|functionary (generic term)
+federal aviation agency|1
+(noun)|Federal Aviation Agency|FAA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+federal bureau of investigation|1
+(noun)|Federal Bureau of Investigation|FBI|law enforcement agency (generic term)
+federal bureau of prisons|1
+(noun)|Federal Bureau of Prisons|BoP|law enforcement agency (generic term)
+federal communications commission|1
+(noun)|Federal Communications Commission|FCC|independent agency (generic term)
+federal court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+federal deficit|1
+(noun)|budget deficit (generic term)
+federal democratic republic of ethiopia|1
+(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country (generic term)|African nation (generic term)
+federal department|1
+(noun)|federal office|department of the federal government|government department (generic term)
+federal deposit insurance corporation|1
+(noun)|Federal Deposit Insurance Corporation|FDIC|corporation (generic term)|corp (generic term)
+federal district|1
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+federal emergency management agency|1
+(noun)|Federal Emergency Management Agency|FEMA|independent agency (generic term)
+federal government|1
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+federal home loan bank system|1
+(noun)|Federal Home Loan Bank System|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+federal home loan mortgage corporation|1
+(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation (generic term)|corp (generic term)
+federal housing administration|1
+(noun)|Federal Housing Administration|FHA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+federal islamic republic of the comoros|1
+(noun)|Comoros|Federal Islamic Republic of the Comoros|country (generic term)|state (generic term)|land (generic term)
+federal job safety law|1
+(noun)|occupational safety and health act|legislation (generic term)|statute law (generic term)
+federal judiciary|1
+(noun)|Federal Judiciary|judiciary (generic term)|judicature (generic term)|judicatory (generic term)|judicial system (generic term)|law enforcement agency (generic term)
+federal law enforcement training center|1
+(noun)|Federal Law Enforcement Training Center|FLETC|law enforcement agency (generic term)
+federal national mortgage association|1
+(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation (generic term)|corp (generic term)
+federal office|1
+(noun)|federal department|department of the federal government|government department (generic term)
+federal official|1
+(noun)|Federal|Fed|agent (generic term)|federal agent (generic term)
+federal party|1
+(noun)|Federalist Party|American Federalist Party|Federal Party|party (generic term)|political party (generic term)
+federal protective service|1
+(noun)|Federal Protective Service|FPS|independent agency (generic term)
+federal republic of germany|2
+(noun)|West Germany|Federal Republic of Germany|European country (generic term)|European nation (generic term)
+(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country (generic term)|European nation (generic term)
+federal republic of nigeria|1
+(noun)|Nigeria|Federal Republic of Nigeria|African country (generic term)|African nation (generic term)
+federal republic of yugoslavia|1
+(noun)|Serbia and Montenegro|Union of Serbia and Montenegro|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|European country (generic term)|European nation (generic term)
+federal reserve|1
+(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank (generic term)
+federal reserve bank|1
+(noun)|Federal Reserve Bank|reserve bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+federal reserve board|1
+(noun)|Federal Reserve Board|board (generic term)
+federal reserve note|1
+(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+federal reserve system|1
+(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank (generic term)
+federal savings bank|1
+(noun)|FSB|savings bank (generic term)
+federal security bureau|1
+(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency (generic term)
+federal security service|1
+(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency (generic term)
+federal soldier|1
+(noun)|Federal|Federal soldier|Union soldier|Yankee (generic term)|Yank (generic term)|Northerner (generic term)
+federal tax lien|1
+(noun)|tax lien (generic term)
+federal trade commission|1
+(noun)|Federal Trade Commission|FTC|independent agency (generic term)
+federalisation|2
+(noun)|federalization|coalition (generic term)|fusion (generic term)
+(noun)|federalization|control (generic term)
+federalise|3
+(verb)|federalize|decentralize (generic term)|deconcentrate (generic term)|decentralise (generic term)
+(verb)|federate|federalize|unify (generic term)|unite (generic term)|merge (generic term)
+(verb)|federate|federalize|unite (generic term)|unify (generic term)
+federalism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+federalist|2
+(noun)|Federalist|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+federalist party|1
+(noun)|Federalist Party|American Federalist Party|Federal Party|party (generic term)|political party (generic term)
+federalization|2
+(noun)|federalisation|coalition (generic term)|fusion (generic term)
+(noun)|federalisation|control (generic term)
+federalize|3
+(verb)|federate|federalise|unite (generic term)|unify (generic term)
+(verb)|federalise|decentralize (generic term)|deconcentrate (generic term)|decentralise (generic term)
+(verb)|federate|federalise|unify (generic term)|unite (generic term)|merge (generic term)
+federate|3
+(adj)|federated|united (similar term)
+(verb)|federalize|federalise|unify (generic term)|unite (generic term)|merge (generic term)
+(verb)|federalize|federalise|unite (generic term)|unify (generic term)
+federated|1
+(adj)|federate|united (similar term)
+federated states of micronesia|1
+(noun)|Micronesia|Federated States of Micronesia|TT|country (generic term)|state (generic term)|land (generic term)
+federation|3
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|confederation|confederacy|union (generic term)
+(noun)|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+federation of tribes|1
+(noun)|tribe|nation (generic term)
+federative republic of brazil|1
+(noun)|Brazil|Federative Republic of Brazil|Brasil|South American country (generic term)|South American nation (generic term)
+federico fellini|1
+(noun)|Fellini|Federico Fellini|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+federita|1
+(noun)|feterita|Sorghum vulgare caudatum|grain sorghum (generic term)
+fedora|1
+(noun)|felt hat|homburg|Stetson|trilby|hat (generic term)|chapeau (generic term)|lid (generic term)
+fee|3
+(noun)|fixed charge (generic term)|fixed cost (generic term)|fixed costs (generic term)
+(noun)|interest (generic term)|stake (generic term)
+(verb)|tip|bung|give (generic term)|gift (generic term)|present (generic term)
+fee-tail|1
+(verb)|entail|bequeath (generic term)|will (generic term)|leave (generic term)
+fee simple|1
+(noun)|fee (generic term)
+fee splitting|1
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+fee tail|1
+(noun)|fee (generic term)
+feeble|4
+(adj)|lame|weak (similar term)
+(adj)|faint|weak (similar term)
+(adj)|decrepit|debile|infirm|rickety|sapless|weak|weakly|frail (similar term)
+(adj)|nerveless|powerless (similar term)
+feebleminded|2
+(adj)|backward|retarded (similar term)
+(adj)|half-witted|slow-witted|unintelligent (similar term)|stupid (similar term)
+feeblemindedness|1
+(noun)|abnormality (generic term)|mental defectiveness (generic term)
+feebleness|2
+(noun)|infirmity|frailty|debility|frailness|valetudinarianism|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+(noun)|tenuity|weakness (generic term)
+feed|11
+(noun)|provender|food (generic term)|nutrient (generic term)
+(verb)|give|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)|starve (antonym)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|feed in|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|eat|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|run|flow|course|move (generic term)|flow from (related term)|run over (related term)
+(verb)|prey|exploit (generic term)|work (generic term)
+(verb)|feast|regale (generic term)|treat (generic term)
+(verb)|fertilize|fertilise|enrich (generic term)
+feed back|2
+(verb)|resubmit|render (generic term)|return (generic term)
+(verb)|propose (generic term)|suggest (generic term)|advise (generic term)
+feed bunk|1
+(noun)|bunk|manger (generic term)|trough (generic term)
+feed grain|1
+(noun)|feed (generic term)|provender (generic term)
+feed in|1
+(verb)|feed|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+feed on|1
+(verb)|feed upon|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+feed upon|1
+(verb)|feed on|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+feedback|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|answer (generic term)|reply (generic term)|response (generic term)
+feedback circuit|1
+(noun)|feedback loop|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+feedback loop|1
+(noun)|feedback circuit|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+feedbag|1
+(noun)|nosebag|bag (generic term)
+feeder|6
+(noun)|domestic animal (generic term)
+(noun)|eater|consumer (generic term)
+(noun)|tributary|confluent|affluent|branch (generic term)|distributary (antonym)
+(noun)|self-feeder|machine (generic term)
+(noun)|bird feeder|birdfeeder|device (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+feeder line|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+feeding|2
+(noun)|eating|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(noun)|alimentation|provision (generic term)|supply (generic term)|supplying (generic term)
+feeding bottle|1
+(noun)|bottle|nursing bottle|vessel (generic term)
+feeding chair|1
+(noun)|highchair|chair (generic term)
+feedlot|1
+(noun)|building (generic term)|edifice (generic term)
+feedstock|1
+(noun)|raw material (generic term)|staple (generic term)
+feel|16
+(noun)|awareness (generic term)|consciousness (generic term)|cognizance (generic term)|cognisance (generic term)|knowingness (generic term)
+(noun)|spirit|tone|feeling|flavor|flavour|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|tactile property|property (generic term)
+(noun)|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+(verb)|experience|feel for (related term)
+(verb)|find|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|sense|perceive (generic term)|comprehend (generic term)
+(verb)|be (generic term)
+(verb)|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|finger
+(verb)|palpate|touch (generic term)
+(verb)|find (generic term)|regain (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|touch (generic term)
+feel for|1
+(verb)|pity|compassionate|condole with|sympathize with|grieve (generic term)|sorrow (generic term)
+feel like|1
+(verb)|desire (generic term)|want (generic term)
+feel like a million|1
+(verb)|feel like a million dollars|feel (generic term)
+feel like a million dollars|1
+(verb)|feel like a million|feel (generic term)
+feel out|1
+(verb)|check out|sound out|question (generic term)|query (generic term)
+feeler|4
+(noun)|antenna|tentacle (generic term)
+(noun)|overture|advance|approach|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|antenna|sensitivity (generic term)|sensitiveness (generic term)
+(noun)|barbel|tentacle (generic term)
+feeling|6
+(noun)|state (generic term)
+(noun)|impression|belief|notion|opinion|idea (generic term)|thought (generic term)
+(noun)|spirit|tone|feel|flavor|flavour|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+(noun)|touch|touch sensation|tactual sensation|tactile sensation|perception (generic term)
+(noun)|intuitive feeling|intuition (generic term)
+feeling of movement|1
+(noun)|kinesthesia|kinaesthesia|somatosense (generic term)|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+feelingly|1
+(adv)|unfeelingly (antonym)
+feelings|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)
+fehling's solution|1
+(noun)|Fehling's solution|solution (generic term)
+feifer|1
+(noun)|Feifer|Jules Feifer|cartoonist (generic term)
+feign|2
+(verb)|sham|pretend|affect|dissemble|misrepresent (generic term)|belie (generic term)
+(verb)|simulate|assume|sham|dissemble (generic term)|pretend (generic term)|act (generic term)
+feigned|1
+(adj)|insincere (similar term)
+feigning|2
+(noun)|pretense|pretence|dissembling|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|pretense|pretence|pretending|simulation|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+feijoa|2
+(noun)|feijoa bush|shrub (generic term)|bush (generic term)
+(noun)|pineapple guava|edible fruit (generic term)
+feijoa bush|1
+(noun)|feijoa|shrub (generic term)|bush (generic term)
+feint|2
+(noun)|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(verb)|simulate (generic term)|assume (generic term)|sham (generic term)|feign (generic term)
+feist|1
+(noun)|fice|cur (generic term)|mongrel (generic term)|mutt (generic term)
+feisty|2
+(adj)|plucky|spunky|spirited (similar term)
+(adj)|huffy|thin-skinned|touchy|sensitive (similar term)
+felafel|1
+(noun)|falafel|dish (generic term)
+feldene|1
+(noun)|piroxicam|Feldene|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+feldspar|1
+(noun)|felspar|spar (generic term)
+felicia|1
+(noun)|Felicia|genus Felicia|asterid dicot genus (generic term)
+felicia amelloides|1
+(noun)|blue daisy|blue marguerite|Felicia amelloides|flower (generic term)
+felicia bergeriana|1
+(noun)|kingfisher daisy|Felicia bergeriana|flower (generic term)
+felicitate|1
+(verb)|congratulate|wish (generic term)|bid (generic term)
+felicitation|2
+(noun)|congratulation|expression (generic term)|verbal expression (generic term)|verbalism (generic term)
+(noun)|congratulation|speech act (generic term)
+felicitous|2
+(adj)|congratulatory (similar term)|gratulatory (similar term)|happy (similar term)|well-chosen (similar term)|well-turned (similar term)|well-wishing (similar term)|happy (related term)|infelicitous (antonym)
+(adj)|happy|fortunate (similar term)
+felicitously|1
+(adv)|infelicitously (antonym)
+felicitousness|1
+(noun)|felicity|appropriateness (generic term)|infelicity (antonym)
+felicity|2
+(noun)|felicitousness|appropriateness (generic term)|infelicity (antonym)
+(noun)|happiness|emotional state (generic term)|spirit (generic term)|unhappiness (antonym)
+felid|1
+(noun)|feline|carnivore (generic term)
+felidae|1
+(noun)|Felidae|family Felidae|mammal family (generic term)
+feline|2
+(adj)|feline|felid (related term)
+(noun)|felid|carnivore (generic term)
+felis|1
+(noun)|Felis|genus Felis|mammal genus (generic term)
+felis bengalensis|1
+(noun)|leopard cat|Felis bengalensis|wildcat (generic term)
+felis catus|1
+(noun)|domestic cat|house cat|Felis domesticus|Felis catus|cat (generic term)|true cat (generic term)
+felis chaus|1
+(noun)|jungle cat|Felis chaus|wildcat (generic term)
+felis concolor|1
+(noun)|cougar|puma|catamount|mountain lion|painter|panther|Felis concolor|wildcat (generic term)
+felis domesticus|1
+(noun)|domestic cat|house cat|Felis domesticus|Felis catus|cat (generic term)|true cat (generic term)
+felis manul|1
+(noun)|manul|Pallas's cat|Felis manul|wildcat (generic term)
+felis ocreata|1
+(noun)|kaffir cat|caffer cat|Felis ocreata|wildcat (generic term)
+felis onca|1
+(noun)|jaguar|panther|Panthera onca|Felis onca|big cat (generic term)|cat (generic term)
+felis pardalis|1
+(noun)|ocelot|panther cat|Felis pardalis|wildcat (generic term)
+felis serval|1
+(noun)|serval|Felis serval|wildcat (generic term)
+felis silvestris|1
+(noun)|European wildcat|catamountain|Felis silvestris|wildcat (generic term)
+felis tigrina|1
+(noun)|tiger cat|Felis tigrina|wildcat (generic term)
+felis wiedi|1
+(noun)|margay|margay cat|Felis wiedi|wildcat (generic term)
+felis yagouaroundi|1
+(noun)|jaguarundi|jaguarundi cat|jaguarondi|eyra|Felis yagouaroundi|wildcat (generic term)
+felix klein|1
+(noun)|Klein|Felix Klein|mathematician (generic term)
+felix mendelssohn|1
+(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer (generic term)
+feliz lusitania|1
+(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+fell|7
+(adj)|barbarous|brutal|cruel|roughshod|savage|vicious|inhumane (similar term)
+(noun)|hide|animal skin (generic term)
+(noun)|felled seam|seam (generic term)
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+(verb)|drop|strike down|cut down|cut (generic term)
+(verb)|fly|vanish|elapse (generic term)|lapse (generic term)|pass (generic term)|slip by (generic term)|glide by (generic term)|slip away (generic term)|go by (generic term)|slide by (generic term)|go along (generic term)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+fella|1
+(noun)|chap|fellow|feller|lad|gent|blighter|cuss|male (generic term)|male person (generic term)
+fellah|1
+(noun)|peasant (generic term)
+fellata|1
+(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African (generic term)
+fellate|1
+(verb)|blow|go down on|stimulate (generic term)|excite (generic term)|stir (generic term)
+fellatio|1
+(noun)|fellation|oral sex (generic term)|head (generic term)
+fellation|1
+(noun)|fellatio|oral sex (generic term)|head (generic term)
+felled seam|1
+(noun)|fell|seam (generic term)
+feller|2
+(noun)|lumberman|lumberjack|logger|faller|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|chap|fellow|lad|gent|fella|blighter|cuss|male (generic term)|male person (generic term)
+fellini|1
+(noun)|Fellini|Federico Fellini|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+felloe|1
+(noun)|felly|rim (generic term)
+fellow|5
+(noun)|chap|feller|lad|gent|fella|blighter|cuss|male (generic term)|male person (generic term)
+(noun)|companion|comrade|familiar|associate|friend (generic term)
+(noun)|colleague|confrere|associate (generic term)
+(noun)|dude|buster|man (generic term)|adult male (generic term)
+(noun)|boyfriend|beau|swain|young man|man (generic term)|adult male (generic term)|lover (generic term)
+fellow feeling|1
+(noun)|sympathy|feeling (generic term)
+fellow traveler|2
+(noun)|fellow traveller|sympathizer (generic term)|sympathiser (generic term)|well-wisher (generic term)
+(noun)|companion|fellow traveller|traveler (generic term)|traveller (generic term)
+fellow traveller|2
+(noun)|fellow traveler|sympathizer (generic term)|sympathiser (generic term)|well-wisher (generic term)
+(noun)|companion|fellow traveler|traveler (generic term)|traveller (generic term)
+fellow worker|1
+(noun)|colleague|co-worker|workfellow|associate (generic term)
+fellowship|3
+(noun)|family|association (generic term)
+(noun)|company|companionship|society|friendship (generic term)|friendly relationship (generic term)
+(noun)|aid (generic term)|economic aid (generic term)|prize (generic term)|award (generic term)
+felly|1
+(noun)|felloe|rim (generic term)
+felo-de-se|2
+(noun)|suicide|killer (generic term)|slayer (generic term)
+(noun)|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+felon|2
+(noun)|criminal|crook|outlaw|malefactor|wrongdoer (generic term)|offender (generic term)
+(noun)|whitlow|infection (generic term)
+felonious|1
+(adj)|criminal|illegal (similar term)
+felony|1
+(noun)|crime (generic term)|law-breaking (generic term)
+felspar|1
+(noun)|feldspar|spar (generic term)
+felt|4
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|entangle (generic term)|tangle (generic term)|mat (generic term)|snarl (generic term)
+(verb)|cover (generic term)
+(verb)|felt up|mat up|matt-up|matte up|matte|mat|change (generic term)
+felt-tip pen|1
+(noun)|felt-tipped pen|felt tip|Magic Marker|pen (generic term)
+felt-tipped pen|1
+(noun)|felt-tip pen|felt tip|Magic Marker|pen (generic term)
+felt fern|1
+(noun)|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern (generic term)
+felt fungus|1
+(noun)|Septobasidium pseudopedicellatum|fungus (generic term)
+felt hat|1
+(noun)|fedora|homburg|Stetson|trilby|hat (generic term)|chapeau (generic term)|lid (generic term)
+felt tip|1
+(noun)|felt-tip pen|felt-tipped pen|Magic Marker|pen (generic term)
+felt up|1
+(verb)|felt|mat up|matt-up|matte up|matte|mat|change (generic term)
+felted|1
+(adj)|unwoven (similar term)
+felucca|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+felwort|1
+(noun)|gentianella amarella|gentian (generic term)
+fema|1
+(noun)|Federal Emergency Management Agency|FEMA|independent agency (generic term)
+female|5
+(adj)|female (similar term)|egg-producing (similar term)|young-bearing (similar term)|pistillate (similar term)|feminine (related term)|androgynous (antonym)|male (antonym)
+(adj)|distaff|feminine (similar term)
+(adj)|female (similar term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)|male (antonym)
+(noun)|female person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|male (antonym)
+female aristocrat|1
+(noun)|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)|male aristocrat (antonym)
+female body|1
+(noun)|human body (generic term)|physical body (generic term)|material body (generic term)|soma (generic term)|build (generic term)|figure (generic term)|physique (generic term)|anatomy (generic term)|shape (generic term)|bod (generic term)|chassis (generic term)|frame (generic term)|form (generic term)|flesh (generic term)
+female bonding|1
+(noun)|bonding (generic term)
+female chest|1
+(noun)|bust|thorax (generic term)|chest (generic term)|pectus (generic term)
+female child|1
+(noun)|girl|little girl|female (generic term)|female person (generic term)|boy (antonym)|male child (antonym)
+female circumcision|1
+(noun)|clitoridectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+female genital organ|1
+(noun)|female genitalia|female genitals|fanny|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+female genitalia|1
+(noun)|female genitals|female genital organ|fanny|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+female genitals|1
+(noun)|female genitalia|female genital organ|fanny|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+female horse|1
+(noun)|mare|horse (generic term)|Equus caballus (generic term)
+female internal reproductive organ|1
+(noun)|reproductive organ (generic term)|sex organ (generic term)
+female mammal|1
+(noun)|female (generic term)|mammal (generic term)|mammalian (generic term)
+female monarch|1
+(noun)|queen|queen regnant|female aristocrat (generic term)|male monarch (antonym)|king (antonym)
+female offspring|1
+(noun)|child (generic term)|kid (generic term)|female (generic term)|female person (generic term)|male offspring (antonym)
+female parent|1
+(noun)|mother|parent (generic term)|male parent (antonym)|father (antonym)
+female person|1
+(noun)|female|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|male (antonym)
+female reproductive system|1
+(noun)|reproductive system (generic term)|genital system (generic term)
+female sibling|1
+(noun)|kinswoman (generic term)|male sibling (antonym)
+femaleness|1
+(noun)|feminineness|sex (generic term)|gender (generic term)|sexuality (generic term)|maleness (antonym)
+feminine|5
+(adj)|fair (similar term)|female (similar term)|distaff (similar term)|maidenlike (similar term)|maidenly (similar term)|powder-puff (similar term)|female (related term)|feminine (related term)|masculine (antonym)
+(adj)|feminine (related term)|neuter (antonym)|masculine (antonym)
+(adj)|womanly|matronly (similar term)|womanlike (similar term)|unwomanly (antonym)
+(adj)|unstressed (similar term)
+(noun)|gender (generic term)|grammatical gender (generic term)
+feminineness|1
+(noun)|femaleness|sex (generic term)|gender (generic term)|sexuality (generic term)|maleness (antonym)
+femininity|1
+(noun)|muliebrity|trait (generic term)|masculinity (antonym)
+feminisation|1
+(noun)|feminization|pathologic process (generic term)|pathological process (generic term)
+feminise|2
+(verb)|feminize|change (generic term)
+(verb)|feminize|effeminize|erreminise|womanize|change (generic term)|alter (generic term)|modify (generic term)
+feminism|2
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|feminist movement|women's liberation movement|women's lib|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+feminist|2
+(adj)|campaign|cause|crusade|drive|movement|effort (related term)
+(noun)|women's rightist|women's liberationist|libber|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+feminist movement|1
+(noun)|feminism|women's liberation movement|women's lib|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+feminization|1
+(noun)|feminisation|pathologic process (generic term)|pathological process (generic term)
+feminize|2
+(verb)|feminise|change (generic term)
+(verb)|feminise|effeminize|erreminise|womanize|change (generic term)|alter (generic term)|modify (generic term)
+femme fatale|1
+(noun)|enchantress|temptress|siren|Delilah|woman (generic term)|adult female (generic term)
+femoral|1
+(adj)|leg bone (related term)|limb (related term)
+femoral artery|1
+(noun)|arteria femoralis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+femoral biceps|1
+(noun)|musculus biceps femoris|biceps (generic term)
+femoral nerve|1
+(noun)|nervus femoralis|anterior crural nerve|spinal nerve (generic term)|nervus spinalis (generic term)
+femoral pulse|1
+(noun)|pulse (generic term)|pulse rate (generic term)|heart rate (generic term)
+femoral vein|1
+(noun)|vena femoralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+femoris|1
+(noun)|femur|thighbone|leg bone (generic term)
+femtochemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+femtometer|1
+(noun)|femtometre|fermi|metric linear unit (generic term)
+femtometre|1
+(noun)|femtometer|fermi|metric linear unit (generic term)
+femtosecond|1
+(noun)|time unit (generic term)|unit of time (generic term)
+femtovolt|1
+(noun)|potential unit (generic term)
+femur|1
+(noun)|thighbone|femoris|leg bone (generic term)
+fen|2
+(noun)|Chinese monetary unit (generic term)
+(noun)|marsh|marshland|fenland|wetland (generic term)
+fen orchid|1
+(noun)|fen orchis|Liparis loeselii|orchid (generic term)|orchidaceous plant (generic term)
+fen orchis|1
+(noun)|fen orchid|Liparis loeselii|orchid (generic term)|orchidaceous plant (generic term)
+fence|7
+(noun)|fencing|barrier (generic term)
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+(verb)|fence in|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|receive (generic term)|have (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|wall|palisade|fence in|surround|protect (generic term)|wall in (related term)|wall up (related term)
+(verb)|argue|contend|debate|converse (generic term)|discourse (generic term)
+fence-sitter|1
+(noun)|neutral (generic term)
+fence in|2
+(verb)|fence|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|wall|palisade|fence|surround|protect (generic term)|wall in (related term)|wall up (related term)
+fence line|1
+(noun)|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+fence lizard|1
+(noun)|spiny lizard (generic term)
+fence mending|1
+(noun)|social action (generic term)
+fence rail|1
+(noun)|split rail|rail (generic term)
+fenced|1
+(adj)|enclosed (similar term)
+fenced in|1
+(adj)|confined|penned|enclosed (similar term)
+fencelike|1
+(adj)|enclosed (similar term)
+fencer|1
+(noun)|swordsman|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+fencer's mask|1
+(noun)|fencing mask|face mask (generic term)
+fencesitter|1
+(noun)|mugwump|independent|individualist (generic term)
+fencing|3
+(noun)|fence|barrier (generic term)
+(noun)|fencing material|building material (generic term)
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)|play (generic term)|swordplay (generic term)
+fencing mask|1
+(noun)|fencer's mask|face mask (generic term)
+fencing material|1
+(noun)|fencing|building material (generic term)
+fencing stick|1
+(noun)|singlestick|backsword|stick (generic term)
+fencing sword|1
+(noun)|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+fend|2
+(verb)|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|resist|stand|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+fend for|1
+(verb)|defend|support|argue (generic term)|reason (generic term)
+fend off|1
+(verb)|debar|obviate|deflect|avert|head off|stave off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+fender|4
+(noun)|wing|barrier (generic term)
+(noun)|buffer|cowcatcher|pilot|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|guard (generic term)|safety (generic term)|safety device (generic term)
+(noun)|buffer|device (generic term)
+fender-bender|1
+(noun)|collision (generic term)
+fenestella|1
+(noun)|lunette|opening (generic term)
+fenestra|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+fenestra cochleae|1
+(noun)|fenestra rotunda|round window|fenestra of the cochlea|fenestra (generic term)
+fenestra of the cochlea|1
+(noun)|fenestra rotunda|fenestra cochleae|round window|fenestra (generic term)
+fenestra of the vestibule|1
+(noun)|fenestra ovalis|fenestra vestibuli|oval window|fenestra (generic term)
+fenestra ovalis|1
+(noun)|fenestra vestibuli|oval window|fenestra of the vestibule|fenestra (generic term)
+fenestra rotunda|1
+(noun)|fenestra cochleae|round window|fenestra of the cochlea|fenestra (generic term)
+fenestra vestibuli|1
+(noun)|fenestra ovalis|oval window|fenestra of the vestibule|fenestra (generic term)
+fenestral|2
+(adj)|orifice|opening|porta (related term)
+(adj)|framework|frame|framing (related term)
+fenestration|2
+(noun)|placement (generic term)|arrangement (generic term)
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+feng shui|1
+(noun)|principle (generic term)|rule (generic term)
+fengtien|1
+(noun)|Shenyang|Mukden|Moukden|Fengtien|city (generic term)|metropolis (generic term)|urban center (generic term)
+fenland|1
+(noun)|marsh|marshland|fen|wetland (generic term)
+fennel|4
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|Florence fennel|finocchio|vegetable (generic term)|veggie (generic term)
+(noun)|common fennel|herb (generic term)
+(noun)|spice (generic term)
+fennel flower|1
+(noun)|Nigella hispanica|nigella (generic term)
+fennel seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+fennic|1
+(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric (generic term)|Finno-Ugrian (generic term)
+fenoprofen|1
+(noun)|fenoprofen calcium|Nalfon|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+fenoprofen calcium|1
+(noun)|fenoprofen|Nalfon|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+fenrir|1
+(noun)|Fenrir|mythical being (generic term)
+fentanyl|1
+(noun)|Fentanyl|Sublimaze|opiate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+fenugreek|2
+(noun)|Greek clover|Trigonella foenumgraecum|herb (generic term)|herbaceous plant (generic term)
+(noun)|fenugreek seed|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+fenugreek seed|1
+(noun)|fenugreek|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+fenusa|1
+(noun)|Fenusa|genus-Fenusa|arthropod genus (generic term)
+fenusa pusilla|1
+(noun)|birch leaf miner|Fenusa pusilla|sawfly (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+feoff|1
+(noun)|fief|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+feosol|1
+(noun)|Feosol|drug (generic term)
+fer-de-lance|1
+(noun)|Bothrops atrops|pit viper (generic term)
+feral|1
+(adj)|ferine|savage|wild (similar term)|untamed (similar term)
+feral man|1
+(noun)|wild man|primitive (generic term)|primitive person (generic term)
+ferber|1
+(noun)|Ferber|Edna Ferber|writer (generic term)|author (generic term)
+ferdinand|1
+(noun)|Ferdinand|King Ferdinand|Ferdinand of Aragon|Ferdinand V|Ferdinand the Catholic|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand and isabella|1
+(noun)|Ferdinand and Isabella|nobility (generic term)|aristocracy (generic term)
+ferdinand de lesseps|1
+(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat (generic term)|diplomatist (generic term)
+ferdinand de saussure|1
+(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist (generic term)|polyglot (generic term)
+ferdinand i|2
+(noun)|Ferdinand I|Holy Roman Emperor (generic term)
+(noun)|Ferdinand I|Ferdinand the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand ii|1
+(noun)|Ferdinand II|Holy Roman Emperor (generic term)
+ferdinand iii|1
+(noun)|Ferdinand III|Holy Roman Emperor (generic term)
+ferdinand joseph la menthe morton|1
+(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician (generic term)|jazzman (generic term)
+ferdinand julius cohn|1
+(noun)|Cohn|Ferdinand Julius Cohn|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+ferdinand magellan|1
+(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator (generic term)
+ferdinand of aragon|1
+(noun)|Ferdinand|King Ferdinand|Ferdinand of Aragon|Ferdinand V|Ferdinand the Catholic|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand the catholic|1
+(noun)|Ferdinand|King Ferdinand|Ferdinand of Aragon|Ferdinand V|Ferdinand the Catholic|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand the great|1
+(noun)|Ferdinand I|Ferdinand the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand v|1
+(noun)|Ferdinand|King Ferdinand|Ferdinand of Aragon|Ferdinand V|Ferdinand the Catholic|king (generic term)|male monarch (generic term)|Rex (generic term)
+ferdinand victor eugene delacroix|1
+(noun)|Delacroix|Eugene Delacroix|Ferdinand Victor Eugene Delacroix|painter (generic term)
+fere phenomenon|1
+(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+ferenc molnar|1
+(noun)|Molnar|Ferenc Molnar|dramatist (generic term)|playwright (generic term)
+fergon|1
+(noun)|Fergon|drug (generic term)
+fergusonite|1
+(noun)|mineral (generic term)
+feria|2
+(noun)|weekday (generic term)
+(noun)|celebration (generic term)|festivity (generic term)
+ferial|1
+(adj)|weekday (related term)
+ferine|1
+(adj)|feral|savage|wild (similar term)|untamed (similar term)
+fermat|1
+(noun)|Fermat|Pierre de Fermat|mathematician (generic term)
+ferment|7
+(noun)|agitation|fermentation|tempestuousness|unrest|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|zymosis|zymolysis|fermentation|fermenting|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(verb)|seethe (generic term)|boil (generic term)
+(verb)|inflame (generic term)|stir up (generic term)|wake (generic term)|ignite (generic term)|heat (generic term)|fire up (generic term)
+(verb)|work|convert (generic term)
+(verb)|sour|turn|work|change state (generic term)|turn (generic term)
+fermentable|1
+(adj)|chemical process|chemical change|chemical action (related term)
+fermentation|2
+(noun)|zymosis|zymolysis|fermenting|ferment|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|agitation|ferment|tempestuousness|unrest|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+fermentation alcohol|1
+(noun)|ethyl alcohol|ethanol|grain alcohol|alcohol (generic term)|plant product (generic term)
+fermenting|1
+(noun)|zymosis|zymolysis|fermentation|ferment|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+fermentologist|1
+(noun)|enologist|oenologist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+fermi|2
+(noun)|femtometer|femtometre|metric linear unit (generic term)
+(noun)|Fermi|Enrico Fermi|nuclear physicist (generic term)
+fermi-dirac statistics|1
+(noun)|Fermi-Dirac statistics|law (generic term)|law of nature (generic term)
+fermion|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+fermium|1
+(noun)|Fm|atomic number 100|metallic element (generic term)|metal (generic term)
+fern|1
+(noun)|pteridophyte (generic term)|nonflowering plant (generic term)
+fern ally|1
+(noun)|pteridophyte (generic term)|nonflowering plant (generic term)
+fern family|1
+(noun)|family (generic term)
+fern genus|1
+(noun)|genus (generic term)
+fern palm|1
+(noun)|false sago|Cycas circinalis|sago palm (generic term)|Cycas revoluta (generic term)
+fern rhapis|1
+(noun)|miniature fan palm|bamboo palm|Rhapis excelsa|lady palm (generic term)
+fern seed|1
+(noun)|spore (generic term)
+fernand leger|1
+(noun)|Leger|Fernand Leger|painter (generic term)
+fernao magalhaes|1
+(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator (generic term)
+ferned|1
+(adj)|ferny|braky (similar term)|fernlike (similar term)|ferny (similar term)|fernless (antonym)
+fernless|1
+(adj)|ferned (antonym)
+fernlike|1
+(adj)|ferny|ferned (similar term)|ferny (similar term)
+ferny|2
+(adj)|ferned|braky (similar term)|fernlike (similar term)|ferny (similar term)|fernless (antonym)
+(adj)|fernlike|ferned (similar term)|ferny (similar term)
+ferocactus|1
+(noun)|Ferocactus|genus Ferocactus|caryophylloid dicot genus (generic term)
+ferocious|1
+(adj)|fierce|furious|savage|violent (similar term)
+ferociously|1
+(adv)|fiercely
+ferociousness|1
+(noun)|brutality|viciousness|savagery|cruelty (generic term)|cruelness (generic term)|harshness (generic term)
+ferocity|1
+(noun)|fierceness|furiousness|fury|vehemence|violence|wildness|intensity (generic term)|intensiveness (generic term)
+ferrara|1
+(noun)|Ferrara|city (generic term)|metropolis (generic term)|urban center (generic term)
+ferret|5
+(noun)|black-footed ferret|Mustela nigripes|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+(noun)|polecat (generic term)|fitch (generic term)|foulmart (generic term)|foumart (generic term)|Mustela putorius (generic term)
+(verb)|hound (generic term)|hunt (generic term)|trace (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|ferret out|discover (generic term)|find (generic term)
+ferret-like|1
+(adj)|animal (similar term)
+ferret-sized|1
+(adj)|sized (similar term)
+ferret badger|1
+(noun)|badger (generic term)
+ferret out|1
+(verb)|ferret|discover (generic term)|find (generic term)
+ferric|1
+(adj)|ferrous|metallic element|metal (related term)
+ferric oxide|1
+(noun)|oxide (generic term)
+ferricyanic acid|1
+(noun)|acid (generic term)
+ferricyanide|1
+(noun)|salt (generic term)
+ferrimagnetism|1
+(noun)|antiferromagnetism (generic term)
+ferris wheel|1
+(noun)|Ferris wheel|rotating mechanism (generic term)|ride (generic term)
+ferrite|1
+(noun)|solid solution (generic term)|primary solid solution (generic term)
+ferritin|1
+(noun)|protein (generic term)
+ferrocerium|1
+(noun)|pyrophoric alloy (generic term)
+ferroconcrete|1
+(noun)|reinforced concrete|concrete (generic term)
+ferrocyanic acid|1
+(noun)|acid (generic term)
+ferrocyanide|1
+(noun)|salt (generic term)
+ferromagnetic|1
+(adj)|magnetism|magnetic attraction|magnetic force (related term)
+ferromagnetism|1
+(noun)|magnetism (generic term)|magnetic attraction (generic term)|magnetic force (generic term)
+ferrous|1
+(adj)|ferric|metallic element|metal (related term)
+ferrule|1
+(noun)|collet|cap (generic term)
+ferry|5
+(noun)|ferryboat|boat (generic term)
+(noun)|ferrying|transportation (generic term)|shipping (generic term)|transport (generic term)
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|transport (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+ferryboat|1
+(noun)|ferry|boat (generic term)
+ferrying|1
+(noun)|ferry|transportation (generic term)|shipping (generic term)|transport (generic term)
+ferryman|1
+(noun)|boatman (generic term)|boater (generic term)|waterman (generic term)
+fertile|4
+(adj)|conceptive (similar term)|impregnable (similar term)|fecund (similar term)|fertilizable (similar term)|rank (similar term)|conceptive (related term)|impregnable (related term)|fruitful (related term)|potent (related term)|strong (related term)|stiff (related term)|productive (related term)|sterile (antonym)
+(adj)|fecund|prolific|productive (similar term)
+(adj)|prolific|fruitful (similar term)
+(adj)|fat|productive|rich|fruitful (similar term)
+fertile crescent|1
+(noun)|Fertile Crescent|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+fertile period|1
+(noun)|fertile phase|phase (generic term)|stage (generic term)
+fertile phase|1
+(noun)|fertile period|phase (generic term)|stage (generic term)
+fertilisation|2
+(noun)|fertilization|fecundation|impregnation|creation (generic term)|conception (generic term)
+(noun)|fertilization|fecundation|dressing|enrichment (generic term)
+fertilise|3
+(verb)|fertilize|fecundate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|fertilize|feed|enrich (generic term)
+(verb)|inseminate|fecundate|fertilize|change (generic term)|alter (generic term)|modify (generic term)
+fertiliser|1
+(noun)|fertilizer|plant food|chemical (generic term)|chemical substance (generic term)
+fertility|3
+(noun)|birthrate|birth rate|fertility rate|natality|rate (generic term)
+(noun)|fecundity|physiological state (generic term)|physiological condition (generic term)|infertility (antonym)
+(noun)|richness|rankness|prolificacy|fruitfulness (generic term)|fecundity (generic term)
+fertility drug|1
+(noun)|drug (generic term)
+fertility rate|1
+(noun)|birthrate|birth rate|fertility|natality|rate (generic term)
+fertilizable|1
+(adj)|fertile (similar term)
+fertilization|2
+(noun)|fertilisation|fecundation|impregnation|creation (generic term)|conception (generic term)
+(noun)|fertilisation|fecundation|dressing|enrichment (generic term)
+fertilization age|1
+(noun)|fetal age|gestational age|age (generic term)
+fertilization membrane|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+fertilize|3
+(verb)|fertilise|feed|enrich (generic term)
+(verb)|fecundate|fertilise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|inseminate|fecundate|fertilise|change (generic term)|alter (generic term)|modify (generic term)
+fertilized egg|1
+(noun)|embryo|conceptus|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+fertilized ovum|1
+(noun)|zygote|cell (generic term)
+fertilizer|1
+(noun)|fertiliser|plant food|chemical (generic term)|chemical substance (generic term)
+ferule|1
+(noun)|switch (generic term)
+fervency|1
+(noun)|ardor|ardour|fervor|fervour|fire|fervidness|passion (generic term)|passionateness (generic term)
+fervent|2
+(adj)|ardent|burning|fervid|fiery|impassioned|perfervid|torrid|passionate (similar term)
+(adj)|fervid|hot (similar term)
+fervently|1
+(adv)|fierily|fervidly
+fervid|2
+(adj)|ardent|burning|fervent|fiery|impassioned|perfervid|torrid|passionate (similar term)
+(adj)|fervent|hot (similar term)
+fervidly|1
+(adv)|fierily|fervently
+fervidness|1
+(noun)|ardor|ardour|fervor|fervour|fervency|fire|passion (generic term)|passionateness (generic term)
+fervor|2
+(noun)|ardor|ardour|fervour|fervency|fire|fervidness|passion (generic term)|passionateness (generic term)
+(noun)|excitement|excitation|inflammation|fervour|emotional arousal (generic term)
+fervour|2
+(noun)|excitement|excitation|inflammation|fervor|emotional arousal (generic term)
+(noun)|ardor|ardour|fervor|fervency|fire|fervidness|passion (generic term)|passionateness (generic term)
+fes|1
+(noun)|Fez|Fes|city (generic term)|metropolis (generic term)|urban center (generic term)
+fescue|1
+(noun)|fescue grass|meadow fescue|Festuca elatior|grass (generic term)
+fescue grass|1
+(noun)|fescue|meadow fescue|Festuca elatior|grass (generic term)
+fess|1
+(noun)|fesse|ordinary (generic term)
+fess up|1
+(verb)|own up|concede (generic term)|profess (generic term)|confess (generic term)
+fesse|1
+(noun)|fess|ordinary (generic term)
+festal|1
+(adj)|gay|festive|merry|joyous (similar term)
+fester|2
+(noun)|suppurating sore|sore (generic term)
+(verb)|maturate|suppurate|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+festering|2
+(noun)|suppuration|maturation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|pus|purulence|suppuration|ichor|sanies|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+festinate|1
+(verb)|rush|hasten|hurry|look sharp|act (generic term)|move (generic term)
+festination|1
+(noun)|symptom (generic term)
+festival|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|fete|celebration (generic term)|festivity (generic term)
+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 (generic term)
+festive|1
+(adj)|gay|festal|merry|joyous (similar term)
+festivity|1
+(noun)|celebration|diversion (generic term)|recreation (generic term)
+festoon|4
+(noun)|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+(noun)|embellishment (generic term)
+(noun)|festoonery|flower chain (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+festoonery|1
+(noun)|festoon|flower chain (generic term)
+festuca|1
+(noun)|Festuca|genus Festuca|monocot genus (generic term)|liliopsid genus (generic term)
+festuca elatior|1
+(noun)|fescue|fescue grass|meadow fescue|Festuca elatior|grass (generic term)
+festuca ovina|1
+(noun)|sheep fescue|sheep's fescue|Festuca ovina|grass (generic term)
+fet|1
+(noun)|field-effect transistor|FET|transistor (generic term)|junction transistor (generic term)|electronic transistor (generic term)
+fetal|1
+(adj)|foetal|vertebrate|craniate (related term)
+fetal age|1
+(noun)|fertilization age|gestational age|age (generic term)
+fetal alcohol syndrome|1
+(noun)|syndrome (generic term)
+fetal circulation|1
+(noun)|foetal circulation|circulatory system (generic term)|cardiovascular system (generic term)
+fetal distress|1
+(noun)|foetal distress|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+fetal membrane|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+fetal monitor|1
+(noun)|electronic fetal monitor|electronic foetal monitor|foetal monitor|monitor (generic term)
+fetal movement|1
+(noun)|foetal movement|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+fetch|4
+(noun)|action (generic term)
+(verb)|bring|get|convey|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|take away (antonym)
+(verb)|bring in|bring
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+fetch up|1
+(verb)|finish up|land up|end up|wind up|finish|act (generic term)|move (generic term)
+fetching|1
+(adj)|taking|winning|attractive (similar term)
+fete|3
+(noun)|feast|fiesta|party (generic term)
+(noun)|festival|celebration (generic term)|festivity (generic term)
+(verb)|celebrate|meet (generic term)|get together (generic term)
+fete champetre|1
+(noun)|garden party|lawn party|party (generic term)
+fete day|1
+(noun)|feast day|holiday (generic term)
+feterita|1
+(noun)|federita|Sorghum vulgare caudatum|grain sorghum (generic term)
+fetich|2
+(noun)|juju|voodoo|hoodoo|fetish|charm (generic term)|good luck charm (generic term)
+(noun)|fetish|devotion (generic term)
+fetichism|2
+(noun)|fetishism|belief (generic term)
+(noun)|fetishism|paraphilia (generic term)
+feticide|1
+(noun)|aborticide|induced abortion (generic term)
+fetid|1
+(adj)|foetid|foul|foul-smelling|funky|noisome|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+fetid bugbane|1
+(noun)|foetid bugbane|Cimicifuga foetida|bugbane (generic term)
+fetid horehound|1
+(noun)|black horehound|black archangel|stinking horehound|Ballota nigra|herb (generic term)|herbaceous plant (generic term)
+fetidness|1
+(noun)|malodorousness|stinkiness|foulness|rankness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+fetish|3
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|juju|voodoo|hoodoo|fetich|charm (generic term)|good luck charm (generic term)
+(noun)|fetich|devotion (generic term)
+fetishism|2
+(noun)|fetichism|belief (generic term)
+(noun)|fetichism|paraphilia (generic term)
+fetishist|1
+(noun)|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+fetishize|1
+(verb)|adore (generic term)
+fetlock|2
+(noun)|fetlock joint|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+fetlock joint|1
+(noun)|fetlock|joint (generic term)|articulation (generic term)|articulatio (generic term)
+fetology|1
+(noun)|foetology|obstetrics (generic term)|OB (generic term)|tocology (generic term)|midwifery (generic term)
+fetometry|1
+(noun)|foetometry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+fetoprotein|1
+(noun)|foetoprotein|antigen (generic term)
+fetor|1
+(noun)|malodor|malodour|stench|stink|reek|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+fetoscope|1
+(noun)|foetoscope|stethoscope (generic term)
+fetoscopy|1
+(noun)|foetoscopy|prenatal diagnosis (generic term)
+fetter|2
+(noun)|hobble|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+(verb)|shackle|restrain (generic term)|confine (generic term)|hold (generic term)
+fetter bone|1
+(noun)|pastern|bone (generic term)|os (generic term)
+fetter bush|1
+(noun)|fetterbush|shiny lyonia|Lyonia lucida|shrub (generic term)|bush (generic term)
+fetterbush|2
+(noun)|mountain fetterbush|mountain andromeda|Pieris floribunda|shrub (generic term)|bush (generic term)
+(noun)|fetter bush|shiny lyonia|Lyonia lucida|shrub (generic term)|bush (generic term)
+fettered|1
+(adj)|in bonds|in fetters|shackled|bound (similar term)
+fettle|2
+(noun)|fitness (generic term)|physical fitness (generic term)|good shape (generic term)|good condition (generic term)
+(verb)|get rid of (generic term)|remove (generic term)
+fettuccine|1
+(noun)|fettuccini|pasta (generic term)|alimentary paste (generic term)
+fettuccine alfredo|1
+(noun)|fettuccine Alfredo|fettuccine (generic term)|fettuccini (generic term)
+fettuccini|1
+(noun)|fettuccine|pasta (generic term)|alimentary paste (generic term)
+fetus|1
+(noun)|foetus|vertebrate (generic term)|craniate (generic term)
+feud|2
+(noun)|conflict (generic term)|struggle (generic term)|battle (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+feudal|1
+(adj)|feudalistic|social organization|social organisation|social structure|social system|structure (related term)
+feudal lord|1
+(noun)|seigneur|seignior|overlord (generic term)|master (generic term)|lord (generic term)
+feudal lordship|1
+(noun)|seigniory|seigneury|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+feudal system|1
+(noun)|feudalism|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+feudalism|1
+(noun)|feudal system|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+feudalistic|1
+(adj)|feudal|social organization|social organisation|social structure|social system|structure (related term)
+feudalize|1
+(verb)|convert (generic term)
+feudatory|3
+(adj)|loyalty|trueness (related term)
+(adj)|subordinate (similar term)
+(noun)|vassal|liege|liegeman|liege subject|follower (generic term)
+fever|2
+(noun)|febrility|febricity|pyrexia|feverishness|symptom (generic term)
+(noun)|anticipation (generic term)|expectancy (generic term)
+fever blister|1
+(noun)|oral herpes|herpes labialis|cold sore|herpes simplex (generic term)
+fever pitch|1
+(noun)|excitement (generic term)|excitation (generic term)|inflammation (generic term)|fervor (generic term)|fervour (generic term)
+fever tree|4
+(noun)|tree (generic term)
+(noun)|Georgia bark|bitter-bark|Pinckneya pubens|shrub (generic term)|bush (generic term)
+(noun)|blue gum|Eucalyptus globulus|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|Acacia xanthophloea|acacia (generic term)
+fevered|1
+(adj)|excited (similar term)
+feverfew|1
+(noun)|Tanacetum parthenium|Chrysanthemum parthenium|herb (generic term)|herbaceous plant (generic term)
+feverish|3
+(adj)|hectic|agitated (similar term)
+(adj)|febrile|symptom (related term)|afebrile (antonym)
+(adj)|feverous|ill (similar term)|sick (similar term)
+feverishness|1
+(noun)|fever|febrility|febricity|pyrexia|symptom (generic term)
+feverous|1
+(adj)|feverish|ill (similar term)|sick (similar term)
+feverroot|1
+(noun)|horse gentian|tinker's root|wild coffee|Triostium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+few|3
+(adj)|a few (similar term)|a couple of (similar term)|hardly a (similar term)|fewer (related term)|some (related term)|many (antonym)
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|elite (generic term)|elite group (generic term)
+few-flowered leek|1
+(noun)|Allium paradoxum|alliaceous plant (generic term)
+fewer|1
+(adj)|less (similar term)|few (related term)|less (related term)|more (antonym)
+fewest|1
+(adj)|most (antonym)
+fewness|1
+(noun)|number (generic term)|figure (generic term)
+fey|2
+(adj)|touched|insane (similar term)
+(adj)|elfin|supernatural (similar term)
+feynman|1
+(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist (generic term)
+fez|2
+(noun)|Fez|Fes|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|tarboosh|cap (generic term)
+fha|1
+(noun)|Federal Housing Administration|FHA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+fhlmc|1
+(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation (generic term)|corp (generic term)
+fiance|1
+(noun)|groom-to-be|betrothed (generic term)
+fiancee|1
+(noun)|bride-to-be|betrothed (generic term)
+fiasco|1
+(noun)|debacle|collapse (generic term)
+fiat|1
+(noun)|decree|edict|order|rescript|act (generic term)|enactment (generic term)
+fiat money|1
+(noun)|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+fib|2
+(noun)|story|tale|tarradiddle|taradiddle|lie (generic term)|prevarication (generic term)
+(verb)|lie (generic term)
+fibber|1
+(noun)|storyteller|fabricator|liar (generic term)|prevaricator (generic term)
+fibbing|1
+(noun)|paltering|lying (generic term)|prevarication (generic term)|fabrication (generic term)
+fiber|3
+(noun)|fibre|material (generic term)|stuff (generic term)
+(noun)|character|fibre|trait (generic term)
+(noun)|fibre|vulcanized fiber|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+fiber-optic|1
+(adj)|fiberoptic|fibre-optic|fibreoptic|transmission (related term)
+fiber-optic transmission system|1
+(noun)|fibre-optic transmission system|FOTS|communication system (generic term)|communication equipment (generic term)
+fiber bundle|1
+(noun)|fibre bundle|fascicle|fasciculus|nervous tissue (generic term)|nerve tissue (generic term)
+fiber optic cable|1
+(noun)|fibre optic cable|cable (generic term)|line (generic term)|transmission line (generic term)
+fiber optics|1
+(noun)|fiberoptics|fibre optics|fibreoptics|transmission (generic term)
+fiberboard|1
+(noun)|fibreboard|particle board|wallboard (generic term)|drywall (generic term)
+fiberglass|1
+(noun)|fibreglass|covering material (generic term)
+fiberoptic|1
+(adj)|fiber-optic|fibre-optic|fibreoptic|transmission (related term)
+fiberoptics|1
+(noun)|fiber optics|fibre optics|fibreoptics|transmission (generic term)
+fiberscope|1
+(noun)|medical instrument (generic term)
+fibonacci number|1
+(noun)|Fibonacci number|number (generic term)
+fibonacci sequence|1
+(noun)|Fibonacci sequence|sequence (generic term)
+fibre|3
+(noun)|fiber|material (generic term)|stuff (generic term)
+(noun)|character|fiber|trait (generic term)
+(noun)|fiber|vulcanized fiber|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+fibre-optic|1
+(adj)|fiber-optic|fiberoptic|fibreoptic|transmission (related term)
+fibre-optic transmission system|1
+(noun)|fiber-optic transmission system|FOTS|communication system (generic term)|communication equipment (generic term)
+fibre bundle|1
+(noun)|fiber bundle|fascicle|fasciculus|nervous tissue (generic term)|nerve tissue (generic term)
+fibre optic cable|1
+(noun)|fiber optic cable|cable (generic term)|line (generic term)|transmission line (generic term)
+fibre optics|1
+(noun)|fiber optics|fiberoptics|fibreoptics|transmission (generic term)
+fibreboard|1
+(noun)|fiberboard|particle board|wallboard (generic term)|drywall (generic term)
+fibreglass|1
+(noun)|fiberglass|covering material (generic term)
+fibreoptic|1
+(adj)|fiber-optic|fiberoptic|fibre-optic|transmission (related term)
+fibreoptics|1
+(noun)|fiber optics|fiberoptics|fibre optics|transmission (generic term)
+fibril|1
+(noun)|filament|strand|fiber (generic term)|fibre (generic term)
+fibrillate|1
+(verb)|twitch (generic term)|jerk (generic term)
+fibrillation|2
+(noun)|twitch (generic term)|twitching (generic term)|vellication (generic term)
+(noun)|branching (generic term)|ramification (generic term)|fork (generic term)|forking (generic term)
+fibrillose|1
+(adj)|fiber|fibre (related term)
+fibrin|1
+(noun)|protein (generic term)
+fibrinase|1
+(noun)|factor XIII|coagulation factor (generic term)|clotting factor (generic term)
+fibrinogen|1
+(noun)|factor I|coagulation factor (generic term)|clotting factor (generic term)
+fibrinolysin|1
+(noun)|plasmin|enzyme (generic term)
+fibrinolysis|1
+(noun)|dissolution (generic term)|disintegration (generic term)
+fibrinopeptide|1
+(noun)|peptide (generic term)
+fibrinous|1
+(adj)|protein (related term)
+fibroadenoma|1
+(noun)|adenoma (generic term)
+fibroblast|1
+(noun)|embryonic cell (generic term)|formative cell (generic term)
+fibrocartilage|1
+(noun)|cartilage (generic term)|gristle (generic term)
+fibrocartilaginous|1
+(adj)|cartilage|gristle (related term)
+fibrocystic breast disease|1
+(noun)|fibrocystic disease of the breast|cystic breast disease|cystic mastitis|disease (generic term)
+fibrocystic disease of the breast|1
+(noun)|fibrocystic breast disease|cystic breast disease|cystic mastitis|disease (generic term)
+fibrocystic disease of the pancreas|1
+(noun)|cystic fibrosis|CF|pancreatic fibrosis|mucoviscidosis|fibrosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+fibroid|1
+(noun)|fibroid tumor|fibroma (generic term)
+fibroid tumor|1
+(noun)|fibroid|fibroma (generic term)
+fibroma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+fibromyositis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+fibrosis|1
+(noun)|pathology (generic term)
+fibrositis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+fibrosity|1
+(noun)|fibrousness|quality (generic term)
+fibrous|2
+(adj)|hempen|tough (similar term)
+(adj)|sinewy|stringy|unchewable|tough (similar term)
+fibrous-rooted begonia|1
+(noun)|begonia (generic term)
+fibrous astrocyte|1
+(noun)|astrocyte (generic term)
+fibrous dysplasia of bone|1
+(noun)|dysplasia (generic term)
+fibrous joint|1
+(noun)|suture|sutura|joint (generic term)|articulation (generic term)|articulatio (generic term)
+fibrous tissue|1
+(noun)|animal tissue (generic term)|plant tissue (generic term)
+fibrousness|1
+(noun)|fibrosity|quality (generic term)
+fibrovascular bundle|1
+(noun)|vascular bundle|vascular strand|vascular tissue (generic term)
+fibula|1
+(noun)|calf bone|leg bone (generic term)
+fibular vein|1
+(noun)|peroneal vein|vena peroneus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+fica|1
+(noun)|FICA|income tax (generic term)
+fice|1
+(noun)|feist|cur (generic term)|mongrel (generic term)|mutt (generic term)
+fichu|1
+(noun)|scarf (generic term)
+fickle|2
+(adj)|volatile|inconstant (similar term)
+(adj)|erratic|mercurial|quicksilver|changeable (similar term)|changeful (similar term)
+fickleness|1
+(noun)|faithlessness|falseness|inconstancy|infidelity (generic term)|unfaithfulness (generic term)
+fictile|3
+(adj)|trade|craft (related term)
+(adj)|pliable|susceptible (similar term)
+(adj)|moldable|plastic|elastic (similar term)
+fiction|2
+(noun)|literary composition (generic term)|literary work (generic term)
+(noun)|fabrication|fable|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+fictional|2
+(adj)|literary composition|literary work (related term)|nonfictional (antonym)
+(adj)|fabricated|fancied|fictitious|invented|made-up|unreal (similar term)
+fictional animal|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+fictional character|1
+(noun)|fictitious character|character|imaginary being (generic term)|imaginary creature (generic term)
+fictionalisation|2
+(noun)|fictionalization|literary composition (generic term)|literary work (generic term)
+(noun)|fabrication|fictionalization|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+fictionalise|2
+(verb)|fictionalize|retell|re-create (generic term)
+(verb)|novelize|novelise|fictionalize|convert (generic term)
+fictionalization|2
+(noun)|fictionalisation|literary composition (generic term)|literary work (generic term)
+(noun)|fabrication|fictionalisation|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+fictionalize|2
+(verb)|fictionalise|retell|re-create (generic term)
+(verb)|novelize|novelise|fictionalise|convert (generic term)
+fictitious|2
+(adj)|fabricated|fancied|fictional|invented|made-up|unreal (similar term)
+(adj)|assumed|false|fictive|pretended|put on|sham|counterfeit (similar term)|imitative (similar term)
+fictitious character|1
+(noun)|fictional character|character|imaginary being (generic term)|imaginary creature (generic term)
+fictitious place|1
+(noun)|imaginary place|mythical place|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+fictive|2
+(adj)|assumed|false|fictitious|pretended|put on|sham|counterfeit (similar term)|imitative (similar term)
+(adj)|creative (similar term)|originative (similar term)
+ficus|1
+(noun)|Ficus|genus Ficus|dicot genus (generic term)|magnoliopsid genus (generic term)
+ficus aurea|1
+(noun)|golden fig|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree (generic term)
+ficus bengalensis|1
+(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+ficus carica|1
+(noun)|fig|common fig|common fig tree|Ficus carica|fig tree (generic term)
+ficus carica sylvestris|1
+(noun)|caprifig|Ficus carica sylvestris|fig (generic term)|common fig (generic term)|common fig tree (generic term)|Ficus carica (generic term)
+ficus deltoidea|1
+(noun)|mistletoe fig|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree (generic term)
+ficus diversifolia|1
+(noun)|mistletoe fig|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree (generic term)
+ficus elastica|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree (generic term)
+ficus religiosa|1
+(noun)|pipal|pipal tree|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree (generic term)
+ficus rubiginosa|1
+(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree (generic term)
+ficus sycomorus|1
+(noun)|sycamore|sycamore fig|mulberry fig|Ficus sycomorus|fig tree (generic term)
+fiddle|8
+(noun)|violin|bowed stringed instrument (generic term)|string (generic term)
+(verb)|shirk|shrink from|goldbrick|avoid (generic term)
+(verb)|embezzle (generic term)|defalcate (generic term)|peculate (generic term)|misappropriate (generic term)|malversate (generic term)
+(verb)|play (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|toy|diddle|play|manipulate (generic term)|toy with (related term)
+(verb)|tamper|monkey|manipulate (generic term)
+(verb)|tinker|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+fiddle-faddle|1
+(noun)|balderdash|piffle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+fiddle-shaped|1
+(adj)|pandurate|panduriform|simple (similar term)|unsubdivided (similar term)
+fiddle with|1
+(verb)|twiddle|manipulate (generic term)
+fiddlehead|2
+(noun)|ostrich fern|shuttlecock fern|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+(noun)|cinnamon fern|fiddlehead fern|Osmunda cinnamonea|flowering fern (generic term)|osmund (generic term)
+fiddlehead fern|1
+(noun)|cinnamon fern|fiddlehead|Osmunda cinnamonea|flowering fern (generic term)|osmund (generic term)
+fiddleneck|1
+(noun)|Phacelia tanacetifolia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+fiddler|3
+(noun)|violinist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|twiddler|manipulator (generic term)
+(noun)|tinkerer|unskilled person (generic term)
+fiddler crab|1
+(noun)|crab (generic term)
+fiddlestick|1
+(noun)|violin bow|bow (generic term)
+fiddling|1
+(adj)|footling|lilliputian|little|niggling|piddling|piffling|petty|picayune|trivial|unimportant (similar term)
+fidel castro|1
+(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist (generic term)
+fidel castro ruz|1
+(noun)|Castro|Fidel Castro|Fidel Castro Ruz|socialist (generic term)
+fidelity|2
+(noun)|accuracy (generic term)|truth (generic term)
+(noun)|faithfulness|quality (generic term)|unfaithfulness (antonym)|infidelity (antonym)
+fidget|2
+(noun)|fidgetiness|restlessness|agitation (generic term)
+(verb)|move (generic term)
+fidgetiness|1
+(noun)|fidget|restlessness|agitation (generic term)
+fidgety|1
+(adj)|antsy|fretful|itchy|restless|unquiet (similar term)
+fiducial|3
+(adj)|fiduciary|property|belongings|holding|material possession (related term)
+(adj)|reference point|point of reference|reference (related term)
+(adj)|trustworthy (similar term)|trusty (similar term)
+fiduciary|2
+(adj)|fiducial|property|belongings|holding|material possession (related term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+fiduciary duty|1
+(noun)|legal duty (generic term)
+fiduciary relation|1
+(noun)|legal relation (generic term)
+fiedler|1
+(noun)|Fiedler|Arthur Fiedler|conductor (generic term)|music director (generic term)|director (generic term)
+fief|1
+(noun)|feoff|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+fiefdom|2
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+field|18
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|battlefield|battleground|field of battle|field of honor|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|region (generic term)
+(noun)|discipline|subject|subject area|subject field|field of study|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+(noun)|field of force|force field|physical phenomenon (generic term)
+(noun)|field of operation|line of business|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|sphere|domain|area|orbit|arena|environment (generic term)
+(noun)|playing field|athletic field|playing area|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|plain|champaign|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|field of operations|theater|theater of operations|theatre|theatre of operations|region (generic term)
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|set (generic term)
+(noun)|field of view|visual percept (generic term)|visual image (generic term)
+(noun)|airfield|landing field|flying field|facility (generic term)|installation (generic term)
+(verb)|handle (generic term)|palm (generic term)
+(verb)|play (generic term)
+(verb)|answer (generic term)|reply (generic term)|respond (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+field-crop|1
+(adj)|crop (related term)
+field-effect transistor|1
+(noun)|FET|transistor (generic term)|junction transistor (generic term)|electronic transistor (generic term)
+field-emission microscope|1
+(noun)|electron microscope (generic term)
+field-grade officer|1
+(noun)|field officer|FO|commissioned military officer (generic term)
+field-pea plant|1
+(noun)|field pea|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea (generic term)|pea plant (generic term)
+field-sequential color television|1
+(noun)|field-sequential color TV|field-sequential color television system|field-sequential color TV system|color television (generic term)|colour television (generic term)|color television system (generic term)|colour television system (generic term)|color TV (generic term)|colour TV (generic term)
+field-sequential color television system|1
+(noun)|field-sequential color television|field-sequential color TV|field-sequential color TV system|color television (generic term)|colour television (generic term)|color television system (generic term)|colour television system (generic term)|color TV (generic term)|colour TV (generic term)
+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 (generic term)|colour television (generic term)|color television system (generic term)|colour television system (generic term)|color TV (generic term)|colour TV (generic term)
+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 (generic term)|colour television (generic term)|color television system (generic term)|colour television system (generic term)|color TV (generic term)|colour TV (generic term)
+field-test|1
+(verb)|test (generic term)|prove (generic term)|try (generic term)|try out (generic term)|examine (generic term)|essay (generic term)
+field artillery|1
+(noun)|field gun|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+field balm|2
+(noun)|ground ivy|alehoof|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+(noun)|lesser calamint|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+field bean|1
+(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+field bindweed|1
+(noun)|wild morning-glory|Convolvulus arvensis|bindweed (generic term)
+field brome|1
+(noun)|Bromus arvensis|brome (generic term)|bromegrass (generic term)
+field capacity|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+field chamomile|1
+(noun)|corn chamomile|corn mayweed|Anthemis arvensis|composite (generic term)|composite plant (generic term)
+field chickweed|1
+(noun)|field mouse-ear|Cerastium arvense|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+field coil|1
+(noun)|field winding|coil (generic term)
+field corn|1
+(noun)|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)|field crop (generic term)
+field cricket|1
+(noun)|Acheta assimilis|cricket (generic term)
+field crop|1
+(noun)|crop (generic term)
+field day|3
+(noun)|day (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|outing|picnic|vacation (generic term)|holiday (generic term)
+field emission|1
+(noun)|emission (generic term)
+field event|1
+(noun)|match (generic term)
+field game|1
+(noun)|outdoor game (generic term)
+field garlic|1
+(noun)|crow garlic|false garlic|stag's garlic|wild garlic|Allium vineale|wild onion (generic term)
+field general|1
+(noun)|quarterback|signal caller|back (generic term)
+field glass|1
+(noun)|glass|spyglass|refracting telescope (generic term)
+field glasses|1
+(noun)|binoculars|opera glasses|optical instrument (generic term)
+field goal|2
+(noun)|score (generic term)
+(noun)|basket|score (generic term)
+field guide|1
+(noun)|guidebook (generic term)|guide (generic term)
+field gun|1
+(noun)|field artillery|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+field hand|1
+(noun)|farmhand|fieldhand|farm worker|hired hand (generic term)|hand (generic term)|hired man (generic term)
+field hockey|1
+(noun)|hockey|field game (generic term)
+field hockey ball|1
+(noun)|ball (generic term)
+field horsetail|1
+(noun)|common horsetail|Equisetum arvense|horsetail (generic term)
+field hospital|1
+(noun)|military hospital (generic term)
+field house|2
+(noun)|sports arena|house (generic term)
+(noun)|athletic facility (generic term)
+field hut|1
+(noun)|hut|army hut|shelter (generic term)
+field intensity|1
+(noun)|field strength|intensity (generic term)|strength (generic term)|intensity level (generic term)
+field judge|1
+(noun)|football official (generic term)
+field lens|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+field line|1
+(noun)|line of force|line (generic term)
+field lupine|1
+(noun)|white lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine (generic term)|lupin (generic term)
+field magnet|1
+(noun)|magnet (generic term)
+field maple|1
+(noun)|hedge maple|Acer campestre|maple (generic term)
+field marigold|1
+(noun)|corn marigold|Chrysanthemum segetum|chrysanthemum (generic term)
+field marshal|1
+(noun)|marshal (generic term)|marshall (generic term)
+field mint|1
+(noun)|corn mint|Mentha arvensis|mint (generic term)
+field mouse|2
+(noun)|vole|wood rat (generic term)|wood-rat (generic term)
+(noun)|fieldmouse|mouse (generic term)
+field mouse-ear|1
+(noun)|field chickweed|Cerastium arvense|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+field mushroom|1
+(noun)|meadow mushroom|Agaricus campestris|agaric (generic term)
+field mustard|1
+(noun)|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+field of battle|1
+(noun)|battlefield|battleground|field of honor|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+field of fire|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+field of force|1
+(noun)|field|force field|physical phenomenon (generic term)
+field of honor|2
+(noun)|scene (generic term)
+(noun)|battlefield|battleground|field of battle|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+field of operation|1
+(noun)|field|line of business|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+field of operations|1
+(noun)|field|theater|theater of operations|theatre|theatre of operations|region (generic term)
+field of regard|1
+(noun)|visual field|field of vision|visual percept (generic term)|visual image (generic term)
+field of study|1
+(noun)|discipline|subject|subject area|subject field|field|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+field of view|1
+(noun)|field|visual percept (generic term)|visual image (generic term)
+field of vision|1
+(noun)|visual field|field of regard|visual percept (generic term)|visual image (generic term)
+field officer|1
+(noun)|field-grade officer|FO|commissioned military officer (generic term)
+field pansy|1
+(noun)|heartsease|Viola arvensis|viola (generic term)
+field pea|3
+(noun)|legume (generic term)
+(noun)|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea (generic term)|pea plant (generic term)
+(noun)|pea (generic term)
+field pennycress|1
+(noun)|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+field poppy|1
+(noun)|corn poppy|Flanders poppy|Papaver rhoeas|poppy (generic term)
+field press censorship|1
+(noun)|military censorship (generic term)
+field pussytoes|1
+(noun)|cat's foot (generic term)|cat's feet (generic term)|pussytoes (generic term)|Antennaria dioica (generic term)
+field ration|1
+(noun)|ration (generic term)
+field sandbur|1
+(noun)|sandbur|sandspur|Cenchrus tribuloides|grass (generic term)
+field scabious|1
+(noun)|Scabiosa arvensis|scabious (generic term)|scabiosa (generic term)
+field soybean|1
+(noun)|soy (generic term)|soybean (generic term)
+field spaniel|1
+(noun)|spaniel (generic term)
+field sparrow|1
+(noun)|Spizella pusilla|New World sparrow (generic term)
+field speedwell|1
+(noun)|Veronica agrestis|veronica (generic term)|speedwell (generic term)
+field sport|1
+(noun)|outdoor sport|sport (generic term)|athletics (generic term)
+field strength|1
+(noun)|field intensity|intensity (generic term)|strength (generic term)|intensity level (generic term)
+field strength unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+field tent|1
+(noun)|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+field test|1
+(noun)|field trial|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+field theory|1
+(noun)|theory (generic term)
+field thistle|1
+(noun)|Cirsium discolor|thistle (generic term)
+field trial|3
+(noun)|field test|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|test (generic term)|trial (generic term)|run (generic term)
+field trip|1
+(noun)|excursion (generic term)|jaunt (generic term)|outing (generic term)|junket (generic term)|pleasure trip (generic term)|expedition (generic term)|sashay (generic term)
+field winding|1
+(noun)|field coil|coil (generic term)
+field work|1
+(noun)|research (generic term)
+field wormwood|1
+(noun)|Artemisia campestris|wormwood (generic term)
+fielder|2
+(noun)|ballplayer (generic term)|baseball player (generic term)
+(noun)|fieldsman|cricketer (generic term)
+fielder's choice|1
+(noun)|putout (generic term)
+fieldfare|1
+(noun)|snowbird|Turdus pilaris|thrush (generic term)
+fieldhand|1
+(noun)|farmhand|field hand|farm worker|hired hand (generic term)|hand (generic term)|hired man (generic term)
+fielding|2
+(noun)|handling (generic term)|manipulation (generic term)
+(noun)|Fielding|Henry Fielding|writer (generic term)|author (generic term)
+fielding average|1
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+fieldmouse|1
+(noun)|field mouse|mouse (generic term)
+fields|1
+(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian (generic term)|comic (generic term)
+fieldsman|1
+(noun)|fielder|cricketer (generic term)
+fieldstone|1
+(noun)|rock (generic term)|stone (generic term)
+fieldwork|1
+(noun)|fortification (generic term)|munition (generic term)
+fieldworker|1
+(noun)|research worker (generic term)|researcher (generic term)|investigator (generic term)
+fiend|3
+(noun)|monster|devil|demon|ogre|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|devil|demon|daemon|daimon|evil spirit (generic term)
+(noun)|fanatic|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+fiendish|1
+(adj)|demonic|diabolic|diabolical|hellish|infernal|satanic|unholy|evil (similar term)
+fiendishly|1
+(adv)|diabolically|devilishly
+fierce|4
+(adj)|ferocious|furious|savage|violent (similar term)
+(adj)|tearing|vehement|violent|trigger-happy|intense (similar term)
+(adj)|cutthroat|bowelless|merciless (similar term)|unmerciful (similar term)
+(adj)|boisterous|rough|stormy (similar term)
+fiercely|1
+(adv)|ferociously
+fierceness|1
+(noun)|ferocity|furiousness|fury|vehemence|violence|wildness|intensity (generic term)|intensiveness (generic term)
+fieri facias|1
+(noun)|writ (generic term)|judicial writ (generic term)
+fierily|1
+(adv)|fervently|fervidly
+fieriness|2
+(noun)|red heat|hotness (generic term)|heat (generic term)|high temperature (generic term)
+(noun)|heat (generic term)|warmth (generic term)|passion (generic term)
+fiery|3
+(adj)|ardent|burning|fervent|fervid|impassioned|perfervid|torrid|passionate (similar term)
+(adj)|igneous|hot (similar term)
+(adj)|flaming|hot (similar term)
+fiesta|1
+(noun)|fete|feast|party (generic term)
+fiesta flower|1
+(noun)|Pholistoma auritum|Nemophila aurita|herb (generic term)|herbaceous plant (generic term)
+fife|1
+(noun)|flute (generic term)|transverse flute (generic term)
+fife rail|1
+(noun)|railing (generic term)|rail (generic term)
+fifo|1
+(noun)|first in first out|FIFO|inventory accounting (generic term)
+fifteen|2
+(adj)|15|xv|cardinal (similar term)
+(noun)|15|XV|large integer (generic term)
+fifteenth|2
+(adj)|15th|ordinal (similar term)
+(noun)|rank (generic term)
+fifth|5
+(adj)|5th|ordinal (similar term)
+(noun)|United States liquid unit (generic term)
+(noun)|rank (generic term)
+(noun)|one-fifth|fifth part|twenty percent|common fraction (generic term)|simple fraction (generic term)
+(noun)|interval (generic term)|musical interval (generic term)
+fifth amendment|1
+(noun)|Fifth Amendment|amendment (generic term)
+fifth avenue|1
+(noun)|Fifth Avenue|avenue (generic term)|boulevard (generic term)
+fifth column|1
+(noun)|Trojan horse|unit (generic term)|social unit (generic term)
+fifth columnist|1
+(noun)|saboteur|traitor (generic term)|treasonist (generic term)
+fifth cranial nerve|1
+(noun)|trigeminal|trigeminal nerve|trigeminus|nervus trigeminus|cranial nerve (generic term)
+fifth crusade|1
+(noun)|Fifth Crusade|Crusade (generic term)
+fifth lateran council|1
+(noun)|Fifth Lateran Council|Lateran Council (generic term)
+fifth part|1
+(noun)|one-fifth|fifth|twenty percent|common fraction (generic term)|simple fraction (generic term)
+fifth wheel|3
+(noun)|deadwood|redundancy (generic term)|redundance (generic term)
+(noun)|spare|car wheel (generic term)
+(noun)|bearing (generic term)
+fifties|2
+(noun)|1950s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|mid-fifties|time of life (generic term)
+fiftieth|2
+(adj)|50th|ordinal (similar term)
+(noun)|rank (generic term)
+fifty|3
+(adj)|50|l|cardinal (similar term)
+(noun)|50|L|large integer (generic term)
+(noun)|fifty dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+fifty-cent piece|1
+(noun)|half dollar|coin (generic term)
+fifty-eight|1
+(adj)|58|lviii|cardinal (similar term)
+fifty-fifth|1
+(adj)|55th|ordinal (similar term)
+fifty-fifty|1
+(adj)|even|equal (similar term)
+fifty-five|1
+(adj)|55|lv|cardinal (similar term)
+fifty-four|1
+(adj)|54|liv|cardinal (similar term)
+fifty-nine|1
+(adj)|59|ilx|cardinal (similar term)
+fifty-one|1
+(adj)|51|li|cardinal (similar term)
+fifty-seven|1
+(adj)|57|lvii|cardinal (similar term)
+fifty-six|1
+(adj)|56|lvi|cardinal (similar term)
+fifty-three|1
+(adj)|53|liii|cardinal (similar term)
+fifty-two|1
+(adj)|52|lii|cardinal (similar term)
+fifty dollar bill|1
+(noun)|fifty|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+fifty percent|1
+(noun)|one-half (generic term)|half (generic term)
+fig|4
+(noun)|figure|illustration (generic term)
+(noun)|common fig|common fig tree|Ficus carica|fig tree (generic term)
+(noun)|Libyan Islamic Fighting Group|FIG|Al-Jama'a al-Islamiyyah al-Muqatilah bi-Libya|Libyan Fighting Group|Libyan Islamic Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|edible fruit (generic term)
+fig-bird|1
+(noun)|Old World oriole (generic term)|oriole (generic term)
+fig-shaped|1
+(adj)|formed (similar term)
+fig leaf|2
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|covering (generic term)
+fig marigold|1
+(noun)|pebble plant|flower (generic term)
+fig moth|1
+(noun)|almond moth|Cadra cautella|pyralid (generic term)|pyralid moth (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+fig tree|1
+(noun)|tree (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+fig wax|1
+(noun)|gondang wax|wax (generic term)
+figeater|1
+(noun)|green June beetle|June beetle (generic term)|June bug (generic term)|May bug (generic term)|May beetle (generic term)
+fight|9
+(noun)|fighting|combat|scrap|conflict (generic term)|struggle (generic term)|battle (generic term)
+(noun)|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+(noun)|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)
+(noun)|battle|conflict|engagement|military action (generic term)|action (generic term)
+(noun)|competitiveness|aggressiveness (generic term)
+(verb)|contend|struggle|fight off (related term)
+(verb)|oppose|fight back|fight down|defend|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|struggle|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|crusade|press|campaign|push|agitate|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+fight back|2
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|fight|oppose|fight down|defend|contend (generic term)|fight (generic term)|struggle (generic term)
+fight down|1
+(verb)|fight|oppose|fight back|defend|contend (generic term)|fight (generic term)|struggle (generic term)
+fight off|1
+(verb)|repel|repulse|rebuff|drive back|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+fighter|3
+(noun)|combatant|battler|belligerent|scrapper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|fighter aircraft|attack aircraft|airplane (generic term)|aeroplane (generic term)|plane (generic term)|warplane (generic term)|military plane (generic term)
+(noun)|champion|hero|paladin|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+fighter aircraft|1
+(noun)|fighter|attack aircraft|airplane (generic term)|aeroplane (generic term)|plane (generic term)|warplane (generic term)|military plane (generic term)
+fighter pilot|1
+(noun)|combat pilot (generic term)
+fighting|4
+(adj)|active|combat-ready|operational (similar term)
+(adj)|belligerent|militant|war-ridden|warring|unpeaceful (similar term)
+(adj)|brawling|disorderly (similar term)
+(noun)|fight|combat|scrap|conflict (generic term)|struggle (generic term)|battle (generic term)
+fighting chair|1
+(noun)|chair (generic term)
+fighting cock|1
+(noun)|gamecock|cock (generic term)
+fighting french|1
+(noun)|Free French|Fighting French|movement (generic term)|social movement (generic term)|front (generic term)
+fighting joe hooker|1
+(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general (generic term)|full general (generic term)
+figment|1
+(noun)|idea (generic term)|thought (generic term)
+figural|1
+(adj)|figurative|representational (similar term)
+figural blindness|1
+(noun)|blindness (generic term)|sightlessness (generic term)|cecity (generic term)
+figuration|2
+(noun)|representation (generic term)
+(noun)|decoration (generic term)
+figurative|2
+(adj)|nonliteral|analogical (similar term)|extended (similar term)|metaphorical (similar term)|metaphoric (similar term)|metonymic (similar term)|metonymical (similar term)|poetic (similar term)|synecdochic (similar term)|synecdochical (similar term)|tropical (similar term)|rhetorical (related term)|literal (antonym)
+(adj)|figural|representational (similar term)
+figuratively|1
+(adv)|literally (antonym)
+figure|18
+(noun)|fig|illustration (generic term)
+(noun)|human body|physical body|material body|soma|build|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|digit|integer (generic term)|whole number (generic term)
+(noun)|model (generic term)|simulation (generic term)
+(noun)|name|public figure|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|shape (generic term)|form (generic term)
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|impression (generic term)|effect (generic term)
+(noun)|number|amount (generic term)
+(noun)|trope|figure of speech|image|rhetorical device (generic term)
+(noun)|percept (generic term)|perception (generic term)|perceptual experience (generic term)|ground (antonym)
+(noun)|design|pattern|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(verb)|calculate|estimate|reckon|count on|forecast|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|enter|be (generic term)
+(verb)|visualize|visualise|envision|project|fancy|see|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|calculate|cipher|cypher|compute|work out|reckon|reason (generic term)|figure out (related term)|reckon (related term)
+(verb)|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+figure eight|2
+(noun)|figure of eight|knot (generic term)
+(noun)|figure (generic term)
+figure loom|1
+(noun)|figured-fabric loom|loom (generic term)
+figure of eight|1
+(noun)|figure eight|knot (generic term)
+figure of speech|1
+(noun)|trope|figure|image|rhetorical device (generic term)
+figure out|1
+(verb)|solve|work out|puzzle out|lick|work|understand (generic term)
+figure skate|2
+(noun)|ice skate (generic term)
+(verb)|skate (generic term)
+figure skating|1
+(noun)|ice skating (generic term)
+figured|1
+(adj)|patterned (similar term)
+figured-fabric loom|1
+(noun)|figure loom|loom (generic term)
+figured bass|1
+(noun)|basso continuo|continuo|thorough bass|bass (generic term)|bass part (generic term)
+figurehead|2
+(noun)|front man|front|nominal head|straw man|strawman|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|figure (generic term)
+figurer|1
+(noun)|calculator|reckoner|estimator|computer|expert (generic term)
+figurine|1
+(noun)|statuette|figure (generic term)
+figuring|1
+(noun)|calculation|computation|reckoning|problem solving (generic term)
+figwort|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+figwort family|1
+(noun)|Scrophulariaceae|family Scrophulariaceae|foxglove family|asterid dicot family (generic term)
+fiji|1
+(noun)|Fiji|Republic of Fiji|country (generic term)|state (generic term)|land (generic term)
+fiji dollar|1
+(noun)|Fiji dollar|dollar (generic term)
+fiji islands|1
+(noun)|Fiji Islands|Fijis|island (generic term)
+fijian|3
+(adj)|Fijian|country|state|land (related term)
+(noun)|Fijian|Polynesian (generic term)
+(noun)|Fijian|Oceanic (generic term)|Eastern Malayo-Polynesian (generic term)
+fijis|1
+(noun)|Fiji Islands|Fijis|island (generic term)
+filaggrin|1
+(noun)|protein (generic term)
+filago|1
+(noun)|cotton rose|cudweed|flower (generic term)
+filago germanica|1
+(noun)|herba impia|Filago germanica|cotton rose (generic term)|cudweed (generic term)|filago (generic term)
+filagree|1
+(noun)|filigree|fillagree|embellishment (generic term)
+filament|4
+(noun)|fibril|strand|fiber (generic term)|fibre (generic term)
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|filum|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|wire (generic term)|conducting wire (generic term)
+filamentlike|1
+(adj)|filamentous|filiform|threadlike|thready|thin (similar term)
+filamentous|1
+(adj)|filiform|filamentlike|threadlike|thready|thin (similar term)
+filar|1
+(adj)|fiber|fibre (related term)
+filaree|1
+(noun)|redstem storksbill|alfilaria|alfileria|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+filaria|2
+(noun)|redstem storksbill|alfilaria|alfileria|filaree|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+(noun)|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+filarial|1
+(adj)|nematode|nematode worm|roundworm (related term)
+filariasis|1
+(noun)|disease (generic term)
+filariid|1
+(adj)|worm family (related term)
+filariidae|1
+(noun)|Filariidae|family Filariidae|worm family (generic term)
+filature|1
+(noun)|bobbin (generic term)|spool (generic term)|reel (generic term)
+filbert|2
+(noun)|cobnut|Corylus avellana|Corylus avellana grandis|hazelnut (generic term)|hazel (generic term)|hazelnut tree (generic term)
+(noun)|hazelnut|cobnut|cob|edible nut (generic term)
+filch|1
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|nobble|lift|steal (generic term)
+file|9
+(noun)|data file|record (generic term)
+(noun)|single file|Indian file|line (generic term)
+(noun)|file cabinet|filing cabinet|office furniture (generic term)
+(noun)|hand tool (generic term)
+(verb)|register|register (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+(verb)|march (generic term)|process (generic term)|file in (related term)|file out (related term)
+(verb)|charge|lodge|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+(verb)|file away|record (generic term)|enter (generic term)|put down (generic term)
+file-like|1
+(adj)|sharp (similar term)
+file allocation table|1
+(noun)|table (generic term)|tabular array (generic term)
+file away|2
+(verb)|file|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|archive|collect (generic term)|pull in (generic term)
+file cabinet|1
+(noun)|file|filing cabinet|office furniture (generic term)
+file clerk|1
+(noun)|filing clerk|filer|clerk (generic term)
+file folder|1
+(noun)|folder (generic term)
+file in|1
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|file out (antonym)
+file name|1
+(noun)|filename|computer filename|computer file name|name (generic term)
+file name extension|1
+(noun)|extension|filename extension|string (generic term)
+file out|1
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|file in (antonym)
+file server|1
+(noun)|digital computer (generic term)
+file system|1
+(noun)|filing system|classification system (generic term)
+file transfer protocol|1
+(noun)|FTP|protocol (generic term)|communications protocol (generic term)
+filefish|1
+(noun)|plectognath (generic term)|plectognath fish (generic term)
+filename|1
+(noun)|file name|computer filename|computer file name|name (generic term)
+filename extension|1
+(noun)|extension|file name extension|string (generic term)
+filer|2
+(noun)|litigant (generic term)|litigator (generic term)
+(noun)|file clerk|filing clerk|clerk (generic term)
+filet|5
+(noun)|fillet|beefsteak (generic term)
+(noun)|fillet|fish fillet|fish filet|piece (generic term)|slice (generic term)
+(noun)|lace (generic term)
+(verb)|fillet|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|fillet|carve (generic term)|cut up (generic term)
+filet de boeuf en croute|1
+(noun)|beef Wellington|dish (generic term)
+filet mignon|1
+(noun)|fillet (generic term)|filet (generic term)
+filial|2
+(adj)|relative|relation (related term)|parental (antonym)
+(adj)|daughterly (similar term)|parental (antonym)
+filial duty|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+filial love|1
+(noun)|love (generic term)
+filiate|1
+(verb)|determine (generic term)|set (generic term)
+filiation|2
+(noun)|descent|line of descent|lineage|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|ancestry|lineage|derivation|inheritance (generic term)|hereditary pattern (generic term)
+filibuster|3
+(noun)|filibusterer|legislator (generic term)|delayer (generic term)
+(noun)|delay (generic term)|holdup (generic term)
+(verb)|obstruct (generic term)|blockade (generic term)|block (generic term)|hinder (generic term)|stymie (generic term)|stymy (generic term)|embarrass (generic term)
+filibusterer|1
+(noun)|filibuster|legislator (generic term)|delayer (generic term)
+filicales|1
+(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order (generic term)
+filicide|2
+(noun)|parent (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+filicinae|1
+(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class (generic term)
+filicopsida|1
+(noun)|Filicopsida|class Filicopsida|Filicinae|class Filicinae|class (generic term)
+filiform|1
+(adj)|filamentous|filamentlike|threadlike|thready|thin (similar term)
+filigree|2
+(noun)|filagree|fillagree|embellishment (generic term)
+(verb)|craft (generic term)
+filing|4
+(noun)|submission (generic term)|entry (generic term)
+(noun)|fragment (generic term)
+(noun)|formation (generic term)|shaping (generic term)
+(noun)|storage (generic term)
+filing cabinet|1
+(noun)|file|file cabinet|office furniture (generic term)
+filing clerk|1
+(noun)|file clerk|filer|clerk (generic term)
+filing system|1
+(noun)|file system|classification system (generic term)
+filipino|3
+(adj)|Filipino|Philippine|country|state|land (related term)
+(noun)|Filipino|native (generic term)|indigen (generic term)|indigene (generic term)
+(noun)|Philippine|Filipino|Western Malayo-Polynesian (generic term)
+filippino lippi|1
+(noun)|Lippi|Filippino Lippi|old master (generic term)
+filippo brunelleschi|1
+(noun)|Brunelleschi|Filippo Brunelleschi|architect (generic term)|designer (generic term)
+fill|11
+(noun)|enough (generic term)|sufficiency (generic term)
+(noun)|filling|material (generic term)|stuff (generic term)
+(verb)|fill up|make full|change (generic term)|alter (generic term)|modify (generic term)|fill in (related term)|fill out (related term)|empty (antonym)
+(verb)|fill up|change state (generic term)|turn (generic term)|empty (antonym)
+(verb)|occupy|be (generic term)
+(verb)|take|work (generic term)|do work (generic term)
+(verb)|meet|satisfy|fulfill|fulfil|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|fill up|eat (generic term)
+(verb)|satiate|sate|replete|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+fill-in|1
+(noun)|stand-in|substitute|relief|reliever|backup|backup man|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+fill again|1
+(verb)|replenish|refill|fill (generic term)|fill up (generic term)|make full (generic term)
+fill in|4
+(verb)|inform (generic term)
+(verb)|shade|draw (generic term)|paint (generic term)
+(verb)|substitute|sub|stand in|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|complete|fill out|make out
+fill out|6
+(verb)|complete|fill in|make out
+(verb)|round out|enrich (generic term)
+(verb)|eke out|supplement (generic term)
+(verb)|pad|stuff (generic term)
+(verb)|fatten|fat|flesh out|plump|plump out|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|round|flesh out|gain (generic term)|put on (generic term)
+fill the bill|1
+(verb)|fit the bill|meet (generic term)|fit (generic term)|conform to (generic term)
+fill up|4
+(verb)|fill|make full|change (generic term)|alter (generic term)|modify (generic term)|fill in (related term)|fill out (related term)|empty (antonym)
+(verb)|fill|change state (generic term)|turn (generic term)|empty (antonym)
+(verb)|close|fill (generic term)
+(verb)|fill|eat (generic term)
+fillagree|1
+(noun)|filigree|filagree|embellishment (generic term)
+fille|1
+(noun)|girl|miss|missy|young lady|young woman|woman (generic term)|adult female (generic term)
+fille de chambre|1
+(noun)|chambermaid|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+filled|3
+(adj)|full (similar term)
+(adj)|unfilled (antonym)
+(adj)|occupied (similar term)
+filler|5
+(noun)|sealing material (generic term)
+(noun)|Hungarian monetary unit (generic term)
+(noun)|copy (generic term)|written matter (generic term)
+(noun)|makeweight|object (generic term)|physical object (generic term)
+(noun)|tobacco (generic term)|baccy (generic term)
+fillet|7
+(noun)|filet|beefsteak (generic term)
+(noun)|filet|fish fillet|fish filet|piece (generic term)|slice (generic term)
+(noun)|lemniscus|sensory nerve (generic term)|afferent nerve (generic term)|afferent (generic term)
+(noun)|taenia|tenia|headband (generic term)
+(noun)|stopping|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(verb)|filet|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|filet|carve (generic term)|cut up (generic term)
+fillet of sole|1
+(noun)|sole|flatfish (generic term)
+filling|6
+(noun)|fill|material (generic term)|stuff (generic term)
+(noun)|flow (generic term)
+(noun)|dental appliance (generic term)
+(noun)|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(noun)|woof|weft|pick|thread (generic term)|yarn (generic term)
+(noun)|change of integrity (generic term)
+filling station|1
+(noun)|gasoline station|gas station|petrol station|service station (generic term)
+fillip|1
+(noun)|bonus|positive stimulus (generic term)
+fillmore|1
+(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+filly|1
+(noun)|foal (generic term)|female (generic term)
+film|7
+(noun)|movie|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show (generic term)
+(noun)|cinema|celluloid|medium (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|plastic film|sheet (generic term)|flat solid (generic term)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+(noun)|photographic film|photographic paper (generic term)|photographic material (generic term)
+(verb)|shoot|take|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)|make (generic term)|create (generic term)
+film-make|1
+(verb)|make (generic term)|create (generic term)
+film advance|1
+(noun)|mechanism (generic term)
+film clip|1
+(noun)|film (generic term)|photographic film (generic term)
+film company|1
+(noun)|company (generic term)
+film director|1
+(noun)|director|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+film editing|1
+(noun)|cutting|creating by removal (generic term)
+film fern|1
+(noun)|filmy fern|fern (generic term)
+film festival|1
+(noun)|festival (generic term)|fete (generic term)
+film industry|1
+(noun)|movie industry|screenland|industry (generic term)
+film maker|1
+(noun)|filmmaker|film producer|movie maker|producer (generic term)
+film making|1
+(noun)|moviemaking|movie making|devising (generic term)|fashioning (generic term)|making (generic term)
+film over|1
+(verb)|glaze over|blur
+film producer|1
+(noun)|film maker|filmmaker|movie maker|producer (generic term)
+film projector|1
+(noun)|movie projector|cine projector|projector (generic term)
+film star|1
+(noun)|movie star|star (generic term)|principal (generic term)|lead (generic term)|screen actor (generic term)|movie actor (generic term)
+film writer|1
+(noun)|screenwriter|scriptwriter (generic term)
+filmable|1
+(adj)|adaptable (similar term)
+filmed|1
+(adj)|recorded (similar term)
+filming|1
+(noun)|cinematography|motion-picture photography|photography (generic term)|picture taking (generic term)
+filmmaker|1
+(noun)|film maker|film producer|movie maker|producer (generic term)
+filmy|1
+(adj)|diaphanous|gauzy|gauze-like|gossamer|see-through|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+filmy fern|2
+(noun)|bristle fern|fern (generic term)
+(noun)|film fern|fern (generic term)
+filoviridae|1
+(noun)|Filoviridae|family (generic term)
+filovirus|1
+(noun)|animal virus (generic term)
+fils|2
+(noun)|Yemeni fils|Yemeni monetary unit (generic term)
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+filter|5
+(noun)|device (generic term)
+(noun)|electrical device (generic term)
+(verb)|filtrate|strain|separate out|filter out|separate (generic term)
+(verb)|percolate|sink in|permeate|penetrate (generic term)|perforate (generic term)
+(verb)|trickle|dribble|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+filter-tipped|1
+(adj)|tipped (similar term)
+filter-tipped cigarette|1
+(noun)|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+filter bed|1
+(noun)|filter (generic term)
+filter out|1
+(verb)|filter|filtrate|strain|separate out|separate (generic term)
+filter paper|1
+(noun)|paper (generic term)
+filter tip|1
+(noun)|air filter (generic term)|air cleaner (generic term)
+filth|4
+(noun)|crud|skank|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|dirt|grime|soil|stain|grease|grunge|dirtiness (generic term)|uncleanness (generic term)
+(noun)|filthiness|foulness|nastiness|unsanitariness (generic term)
+(noun)|obscenity|smut|vulgarism|dirty word|profanity (generic term)
+filthily|1
+(adv)|dirtily
+filthiness|2
+(noun)|filth|foulness|nastiness|unsanitariness (generic term)
+(noun)|nefariousness (generic term)|wickedness (generic term)|vileness (generic term)|ugliness (generic term)
+filthy|3
+(adj)|foul|nasty|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|dirty|lousy|nasty (similar term)|awful (similar term)
+(adj)|foul|nasty|smutty|dirty (similar term)
+filthy lucre|1
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+filtrate|2
+(noun)|product (generic term)|fluid (generic term)
+(verb)|filter|strain|separate out|filter out|separate (generic term)
+filtration|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|change (generic term)
+filum|1
+(noun)|filament|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+fimbria|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+fimbriate|1
+(adj)|rough (similar term)
+fin|9
+(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|tail fin|tailfin|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|louver|louvre|slat (generic term)|spline (generic term)
+(noun)|flipper|shoe (generic term)
+(noun)|stabilizer (generic term)|stabiliser (generic term)
+(noun)|extremity (generic term)|appendage (generic term)|member (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|swim (generic term)
+(verb)|break water|swim (generic term)
+fin de siecle|1
+(adj)|finished (similar term)
+fin keel|1
+(noun)|plate (generic term)
+fin whale|1
+(noun)|finback|finback whale|common rorqual|Balaenoptera physalus|rorqual (generic term)|razorback (generic term)
+finable|1
+(adj)|fineable|guilty (similar term)
+finagle|1
+(verb)|wangle|manage|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+finagler|1
+(noun)|wangler|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+final|5
+(adj)|concluding|last|terminal|closing (similar term)
+(adj)|last|net|ultimate (similar term)
+(adj)|last|unalterable (similar term)|inalterable (similar term)
+(noun)|match (generic term)
+(noun)|final examination|final exam|examination (generic term)|exam (generic term)|test (generic term)
+final cause|1
+(noun)|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+final cut|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+final decision|1
+(noun)|final judgment|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+final exam|1
+(noun)|final examination|final|examination (generic term)|exam (generic term)|test (generic term)
+final examination|1
+(noun)|final exam|final|examination (generic term)|exam (generic term)|test (generic term)
+final injunction|1
+(noun)|permanent injunction|injunction (generic term)|enjoining (generic term)|enjoinment (generic term)|cease and desist order (generic term)
+final judgment|1
+(noun)|final decision|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+final payment|1
+(noun)|payoff|payment (generic term)
+final period|1
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+final result|1
+(noun)|result|resultant|outcome|termination|ending (generic term)|conclusion (generic term)|finish (generic term)
+final solution|1
+(noun)|Holocaust|genocide (generic term)|race murder (generic term)|racial extermination (generic term)
+final stage|1
+(noun)|end|last|ending (generic term)|conclusion (generic term)|finish (generic term)
+finale|3
+(noun)|stopping point|finis|finish|last|conclusion|close|end (generic term)|ending (generic term)
+(noun)|coda|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+(noun)|close|closing curtain|finis|finish (generic term)|finishing (generic term)
+finalisation|1
+(noun)|finalization|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)
+finalise|1
+(verb)|finalize|settle|nail down|end (generic term)|terminate (generic term)|settle on (related term)
+finalist|1
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+finality|1
+(noun)|conclusiveness|decisiveness|determinateness (generic term)|definiteness (generic term)|inconclusiveness (antonym)
+finalization|1
+(noun)|finalisation|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)
+finalize|1
+(verb)|finalise|settle|nail down|end (generic term)|terminate (generic term)|settle on (related term)
+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 (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|economics (generic term)|economic science (generic term)|political economy (generic term)
+(noun)|management (generic term)|direction (generic term)
+(verb)|pay (generic term)
+(verb)|credit (generic term)
+finance committee|1
+(noun)|committee (generic term)|commission (generic term)
+finance company|1
+(noun)|nondepository financial institution (generic term)
+finance minister|1
+(noun)|minister of finance|minister (generic term)|government minister (generic term)
+financed|1
+(adj)|supported (similar term)
+finances|1
+(noun)|funds|monetary resource|cash in hand|pecuniary resource|assets (generic term)
+financial|1
+(adj)|fiscal|commercial enterprise|business enterprise|business (related term)|nonfinancial (antonym)
+financial aid|1
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+financial analyst|1
+(noun)|securities analyst|analyst (generic term)
+financial audit|1
+(noun)|attestation service (generic term)|attestation report (generic term)|audited account (generic term)|audit (generic term)
+financial backing|1
+(noun)|support|financial support|funding|backing|resource (generic term)
+financial center|1
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+financial condition|1
+(noun)|economic condition|condition (generic term)|status (generic term)
+financial crimes enforcement network|1
+(noun)|Financial Crimes Enforcement Network|FinCEN|law enforcement agency (generic term)
+financial forecast|1
+(noun)|prognosis (generic term)|forecast (generic term)
+financial gain|1
+(noun)|gain (generic term)
+financial institution|1
+(noun)|financial organization|financial organisation|institution (generic term)|establishment (generic term)
+financial loss|1
+(noun)|loss (generic term)
+financial management service|1
+(noun)|Financial Management Service|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+financial obligation|1
+(noun)|indebtedness|liability|obligation (generic term)
+financial officer|1
+(noun)|treasurer|money handler (generic term)|money dealer (generic term)
+financial organisation|1
+(noun)|financial institution|financial organization|institution (generic term)|establishment (generic term)
+financial organization|1
+(noun)|financial institution|financial organisation|institution (generic term)|establishment (generic term)
+financial statement|1
+(noun)|statement|commercial document (generic term)|commercial instrument (generic term)
+financial support|1
+(noun)|support|funding|backing|financial backing|resource (generic term)
+financial year|1
+(noun)|fiscal year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+financier|2
+(noun)|moneyman|capitalist (generic term)
+(verb)|operate (generic term)|run (generic term)
+financing|1
+(noun)|funding|finance (generic term)
+finback|1
+(noun)|finback whale|fin whale|common rorqual|Balaenoptera physalus|rorqual (generic term)|razorback (generic term)
+finback whale|1
+(noun)|finback|fin whale|common rorqual|Balaenoptera physalus|rorqual (generic term)|razorback (generic term)
+fincen|1
+(noun)|Financial Crimes Enforcement Network|FinCEN|law enforcement agency (generic term)
+finch|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+finch-like|1
+(adj)|animal (similar term)
+find|18
+(noun)|discovery|breakthrough|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|discovery|uncovering|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(verb)|happen|chance|bump|encounter
+(verb)|detect|observe|discover|notice|sight (generic term)
+(verb)|regain|get (generic term)|acquire (generic term)|lose (antonym)
+(verb)|determine|find out|ascertain
+(verb)|feel|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|witness|see|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|line up|get hold|come up|get (generic term)|acquire (generic term)
+(verb)|discover|gestate (generic term)|conceive (generic term)|conceptualize (generic term)|conceptualise (generic term)
+(verb)|discover|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)|find out (related term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|rule|pronounce (generic term)|label (generic term)|judge (generic term)
+(verb)|receive|get|obtain|incur|change (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|recover|retrieve|regain|get (generic term)|acquire (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|find oneself|mature (generic term)|maturate (generic term)|grow (generic term)
+find fault|1
+(verb)|blame|pick|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+find oneself|1
+(verb)|find|mature (generic term)|maturate (generic term)|grow (generic term)
+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 (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+finder|3
+(noun)|seeker (generic term)|searcher (generic term)|quester (generic term)
+(noun)|discoverer|spotter|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|viewfinder|view finder|optical device (generic term)
+finder's fee|1
+(noun)|fee (generic term)
+finding|3
+(noun)|determination|discovery (generic term)|find (generic term)|uncovering (generic term)
+(noun)|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+(noun)|object (generic term)|physical object (generic term)
+finding of fact|1
+(noun)|verdict|finding (generic term)
+finding of law|1
+(noun)|conclusion of law|finding (generic term)
+findings|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+fine|10
+(adj)|all right|o.k.|ok|okay|hunky-dory|satisfactory (similar term)
+(adj)|precise (similar term)
+(adj)|close (similar term)|tight (similar term)|close-grained (similar term)|fine-grained (similar term)|dustlike (similar term)|floury (similar term)|nongranular (similar term)|powdered (similar term)|powdery (similar term)|pulverized (similar term)|pulverised (similar term)|small-grained (similar term)|fine-grained (similar term)|small (similar term)|superfine (similar term)|smooth (related term)|coarse (antonym)
+(adj)|thin (similar term)
+(adj)|elegant (similar term)
+(adj)|pure (similar term)
+(noun)|mulct|amercement|penalty (generic term)
+(verb)|ticket|book (generic term)
+(adv)|very well|alright|all right|OK
+(adv)|finely|delicately|exquisitely
+fine-grained|2
+(adj)|powdered|powdery|pulverized|pulverised|small-grained|fine (similar term)
+(adj)|close-grained|fine (similar term)
+fine-leafed|1
+(adj)|fine-leaved|leafy (similar term)
+fine-leaved|1
+(adj)|fine-leafed|leafy (similar term)
+fine-leaved heath|1
+(noun)|bell heather|heather bell|Erica cinerea|erica (generic term)|true heath (generic term)
+fine-looking|1
+(adj)|good-looking|better-looking|handsome|well-favored|well-favoured|beautiful (similar term)
+fine-textured|1
+(adj)|smooth-textured|smooth (similar term)
+fine-tooth|1
+(adj)|fine-toothed|toothed (similar term)
+fine-tooth comb|2
+(noun)|fine-toothed comb|comb (generic term)
+(noun)|fine-toothed comb|examination (generic term)|scrutiny (generic term)
+fine-toothed|1
+(adj)|fine-tooth|toothed (similar term)
+fine-toothed comb|2
+(noun)|fine-tooth comb|comb (generic term)
+(noun)|fine-tooth comb|examination (generic term)|scrutiny (generic term)
+fine-tune|3
+(verb)|polish|refine|down|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|tweak|tune (generic term)|tune up (generic term)
+(verb)|calibrate|graduate|adjust (generic term)|set (generic term)|correct (generic term)
+fine art|1
+(noun)|art|creation (generic term)
+fine arts|1
+(noun)|beaux arts|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+fine print|2
+(noun)|small print|reservation (generic term)|qualification (generic term)
+(noun)|small print|print (generic term)|black and white (generic term)
+fine spray|1
+(noun)|precipitation (generic term)|downfall (generic term)
+fine structure|1
+(noun)|spectrum line (generic term)
+fineable|1
+(adj)|finable|guilty (similar term)
+fined|1
+(adj)|penalized|penalised|punished (similar term)
+finedraw|1
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+finely|2
+(adv)|coarsely (antonym)
+(adv)|fine|delicately|exquisitely
+fineness|4
+(noun)|choiceness|superiority (generic term)|high quality (generic term)
+(noun)|thinness|narrowness (generic term)
+(noun)|powderiness|smoothness (generic term)
+(noun)|daintiness|delicacy|elegance (generic term)
+finer|1
+(adj)|better (similar term)
+finery|1
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+fines herbes|1
+(noun)|herb (generic term)
+finespun|2
+(adj)|delicate|refined (similar term)
+(adj)|hairsplitting|precise (similar term)
+finesse|1
+(noun)|delicacy|diplomacy|discreetness|tact (generic term)|tactfulness (generic term)
+fingal's cave|1
+(noun)|Fingal's Cave|cave (generic term)
+finger|7
+(noun)|digit (generic term)|dactyl (generic term)|extremity (generic term)
+(noun)|fingerbreadth|finger's breadth|digit|linear unit (generic term)
+(noun)|covering (generic term)
+(verb)|thumb|touch (generic term)
+(verb)|feel
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|indicate (generic term)|point (generic term)|show (generic term)
+finger's breadth|1
+(noun)|finger|fingerbreadth|digit|linear unit (generic term)
+finger-flower|1
+(noun)|common foxglove|fairy bell|fingerflower|fingerroot|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+finger-paint|1
+(verb)|paint (generic term)
+finger-painting|2
+(noun)|painting (generic term)|picture (generic term)
+(noun)|painting (generic term)
+finger-pointing|1
+(noun)|fingerpointing|imputation (generic term)
+finger-roll|1
+(noun)|basketball shot (generic term)
+finger-root|1
+(noun)|common foxglove|fairy bell|fingerflower|finger-flower|fingerroot|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+finger-spell|1
+(verb)|fingerspell|communicate (generic term)|intercommunicate (generic term)
+finger alphabet|1
+(noun)|manual alphabet|alphabet (generic term)
+finger bowl|1
+(noun)|bowl (generic term)
+finger cymbals|1
+(noun)|bones|castanets|clappers|maraca|percussion instrument (generic term)|percussive instrument (generic term)
+finger food|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+finger grass|2
+(noun)|crabgrass|crab grass|grass (generic term)
+(noun)|grass (generic term)
+finger hole|1
+(noun)|hole (generic term)
+finger lakes|1
+(noun)|Finger Lakes|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+finger millet|1
+(noun)|ragi|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet (generic term)
+finger paint|1
+(noun)|fingerpaint|paint (generic term)
+finger plate|1
+(noun)|escutcheon|scutcheon|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+finger scan|1
+(noun)|finger scanning|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+finger scanning|1
+(noun)|finger scan|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+finger spelling|1
+(noun)|fingerspelling|sign language (generic term)|signing (generic term)
+finger wave|1
+(noun)|wave (generic term)
+fingerboard|3
+(noun)|fingerpost|signpost (generic term)|guidepost (generic term)
+(noun)|piano keyboard|clavier|keyboard (generic term)
+(noun)|strip (generic term)
+fingerbreadth|1
+(noun)|finger|finger's breadth|digit|linear unit (generic term)
+fingered|1
+(adj)|digitate (similar term)|fingerlike (similar term)|fingerless (antonym)
+fingerflower|1
+(noun)|common foxglove|fairy bell|finger-flower|fingerroot|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+fingering|2
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|touch (generic term)|touching (generic term)
+fingerless|1
+(adj)|fingered (antonym)
+fingerlike|1
+(adj)|digitate|fingered (similar term)
+fingerling|1
+(noun)|fish (generic term)
+fingermark|1
+(noun)|fingerprint|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+fingernail|1
+(noun)|nail (generic term)
+fingerpaint|1
+(noun)|finger paint|paint (generic term)
+fingerpointing|1
+(noun)|finger-pointing|imputation (generic term)
+fingerpost|1
+(noun)|fingerboard|signpost (generic term)|guidepost (generic term)
+fingerprint|4
+(noun)|print (generic term)|black and white (generic term)|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+(noun)|identification (generic term)
+(noun)|fingermark|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+(verb)|reproduce (generic term)
+fingerprint expert|1
+(noun)|fingerprint specialist|fingerprint man|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+fingerprint man|1
+(noun)|fingerprint expert|fingerprint specialist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+fingerprint specialist|1
+(noun)|fingerprint expert|fingerprint man|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+fingerprinting|1
+(noun)|procedure (generic term)|process (generic term)
+fingerroot|1
+(noun)|common foxglove|fairy bell|fingerflower|finger-flower|finger-root|Digitalis purpurea|foxglove (generic term)|digitalis (generic term)
+fingerspell|1
+(verb)|finger-spell|communicate (generic term)|intercommunicate (generic term)
+fingerspelling|1
+(noun)|finger spelling|sign language (generic term)|signing (generic term)
+fingerstall|1
+(noun)|cot|sheath (generic term)
+fingertip|1
+(noun)|tip (generic term)
+finial|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+finical|1
+(adj)|finicky|fussy|particular|picky|fastidious (similar term)
+finicky|1
+(adj)|finical|fussy|particular|picky|fastidious (similar term)
+finis|2
+(noun)|stopping point|finale|finish|last|conclusion|close|end (generic term)|ending (generic term)
+(noun)|finale|close|closing curtain|finish (generic term)|finishing (generic term)
+finish|15
+(noun)|coating|finishing|decorativeness (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|finishing|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)|start (antonym)
+(noun)|destination|goal|end (generic term)
+(noun)|stopping point|finale|finis|last|conclusion|close|end (generic term)|ending (generic term)
+(noun)|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|ending|conclusion|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|beginning (antonym)
+(noun)|downfall (generic term)|ruin (generic term)|ruination (generic term)
+(noun)|polish|refinement|culture|cultivation|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+(verb)|complete|end (generic term)|terminate (generic term)
+(verb)|finish up|land up|fetch up|end up|wind up|act (generic term)|move (generic term)
+(verb)|end|stop|terminate|cease|begin (antonym)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|eat up|polish off|eat (generic term)
+(verb)|end (generic term)|terminate (generic term)
+finish coat|2
+(noun)|finishing coat|coat of paint (generic term)
+(noun)|finishing coat|coating (generic term)|coat (generic term)|plaster (generic term)
+finish line|1
+(noun)|finishing line|line (generic term)|finish (generic term)|destination (generic term)|goal (generic term)
+finish off|1
+(verb)|get through|wrap up|mop up|polish off|clear up|finish up|complete (generic term)|finish (generic term)
+finish out|1
+(verb)|round out|complete (generic term)|finish (generic term)
+finish up|2
+(verb)|get through|wrap up|finish off|mop up|polish off|clear up|complete (generic term)|finish (generic term)
+(verb)|land up|fetch up|end up|wind up|finish|act (generic term)|move (generic term)
+finished|5
+(adj)|dressed (similar term)|polished (similar term)|fattened (similar term)|fattening (similar term)|painted (related term)|processed (related term)|smooth (related term)|unfinished (antonym)
+(adj)|complete (similar term)|concluded (similar term)|ended (similar term)|over (similar term)|all over (similar term)|terminated (similar term)|done (similar term)|through (similar term)|through with (similar term)|done with (similar term)|through with (similar term)|fin de siecle (similar term)|up (similar term)|unfinished (antonym)
+(adj)|polished (similar term)
+(adj)|painted (similar term)
+(adj)|ruined|destroyed (similar term)
+finisher|3
+(noun)|closer|reliever (generic term)|relief pitcher (generic term)|fireman (generic term)
+(noun)|painter (generic term)
+(noun)|worker (generic term)
+finishing|2
+(noun)|coating|finish|decorativeness (generic term)
+(noun)|finish|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)|start (antonym)
+finishing coat|2
+(noun)|finish coat|coat of paint (generic term)
+(noun)|finish coat|coating (generic term)|coat (generic term)|plaster (generic term)
+finishing line|1
+(noun)|finish line|line (generic term)|finish (generic term)|destination (generic term)|goal (generic term)
+finishing school|1
+(noun)|school (generic term)
+finishing touch|1
+(noun)|capstone|copestone|touch (generic term)
+finite|2
+(adj)|bounded (similar term)|delimited (similar term)|exhaustible (similar term)|impermanent (similar term)|limited (similar term)|mortal (related term)|infinite (antonym)
+(adj)|tensed (similar term)|infinite (antonym)
+finitely|1
+(adv)|infinitely (antonym)
+finiteness|1
+(noun)|finitude|boundedness|quality (generic term)|infiniteness (antonym)
+finitude|1
+(noun)|finiteness|boundedness|quality (generic term)|infiniteness (antonym)
+fink|3
+(noun)|snitch|snitcher|stoolpigeon|stool pigeon|stoolie|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(verb)|scab|rat|blackleg|work (generic term)|do work (generic term)
+(verb)|confess|squeal|shrive|admit (generic term)|acknowledge (generic term)
+finland|1
+(noun)|Finland|Republic of Finland|Suomi|European country (generic term)|European nation (generic term)
+finn|1
+(noun)|Finn|European (generic term)
+finnan|1
+(noun)|finnan haddie|finnan haddock|smoked haddock|haddock (generic term)
+finnan haddie|1
+(noun)|finnan haddock|finnan|smoked haddock|haddock (generic term)
+finnan haddock|1
+(noun)|finnan haddie|finnan|smoked haddock|haddock (generic term)
+finnbogadottir|1
+(noun)|Finnbogadottir|Vigdis Finnbogadottir|president (generic term)
+finnic|1
+(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric (generic term)|Finno-Ugrian (generic term)
+finnish|2
+(adj)|Finnish|European country|European nation (related term)
+(noun)|Finnish|Suomi|Baltic-Finnic (generic term)
+finnish capital|1
+(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital (generic term)|port (generic term)
+finnish mark|1
+(noun)|markka|Finnish mark|Finnish monetary unit (generic term)
+finnish monetary unit|1
+(noun)|Finnish monetary unit|monetary unit (generic term)
+finno-ugrian|1
+(noun)|Finno-Ugric|Finno-Ugrian|Uralic (generic term)|Uralic language (generic term)
+finno-ugric|1
+(noun)|Finno-Ugric|Finno-Ugrian|Uralic (generic term)|Uralic language (generic term)
+finno-ugric-speaking|1
+(adj)|Finno-Ugric-speaking|communicative (similar term)|communicatory (similar term)
+finocchio|1
+(noun)|fennel|Florence fennel|vegetable (generic term)|veggie (generic term)
+fiord|1
+(noun)|fjord|inlet (generic term)|recess (generic term)
+fipple|1
+(noun)|plug (generic term)|stopper (generic term)|stopple (generic term)
+fipple flute|1
+(noun)|fipple pipe|recorder|vertical flute|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+fipple pipe|1
+(noun)|fipple flute|recorder|vertical flute|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+fir|2
+(noun)|wood (generic term)
+(noun)|fir tree|true fir|conifer (generic term)|coniferous tree (generic term)
+fir clubmoss|1
+(noun)|mountain clubmoss|little clubmoss|Lycopodium selago|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+fir cone|1
+(noun)|cone (generic term)|strobilus (generic term)|strobile (generic term)
+fir tree|1
+(noun)|fir|true fir|conifer (generic term)|coniferous tree (generic term)
+fire|17
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|flame|flaming|combustion (generic term)|burning (generic term)
+(noun)|firing|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|fireplace (generic term)|hearth (generic term)|open fireplace (generic term)
+(noun)|attack|flak|flack|blast|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|ardor|ardour|fervor|fervour|fervency|fervidness|passion (generic term)|passionateness (generic term)
+(noun)|element (generic term)
+(noun)|trial (generic term)|tribulation (generic term)|visitation (generic term)
+(verb)|open fire|shoot (generic term)
+(verb)|discharge
+(verb)|bake (generic term)
+(verb)|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|discharge|go off
+(verb)|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+(verb)|arouse|elicit|enkindle|kindle|evoke|raise|provoke|make (generic term)|create (generic term)
+(verb)|burn|burn down|destroy (generic term)|ruin (generic term)
+(verb)|fuel|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+fire-bellied toad|1
+(noun)|Bombina bombina|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+fire-bush|2
+(noun)|marmalade bush|fire bush|Streptosolen jamesonii|shrub (generic term)|bush (generic term)
+(noun)|summer cypress|burning bush|fire bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+fire-eater|3
+(noun)|fireman|firefighter|fire fighter|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|hothead|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+(noun)|fire-swallower|performer (generic term)|performing artist (generic term)
+fire-on-the-mountain|1
+(noun)|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge (generic term)
+fire-raising|1
+(noun)|arson|incendiarism|burning (generic term)|combustion (generic term)
+fire-resistant|1
+(adj)|fire-retardant|fire-resisting|fire-resistive|noncombustible (similar term)|incombustible (similar term)
+fire-resisting|1
+(adj)|fire-retardant|fire-resistant|fire-resistive|noncombustible (similar term)|incombustible (similar term)
+fire-resistive|1
+(adj)|fire-retardant|fire-resistant|fire-resisting|noncombustible (similar term)|incombustible (similar term)
+fire-retardant|1
+(adj)|fire-resistant|fire-resisting|fire-resistive|noncombustible (similar term)|incombustible (similar term)
+fire-swallower|1
+(noun)|fire-eater|performer (generic term)|performing artist (generic term)
+fire-wheel|1
+(noun)|blanket flower|Indian blanket|fire wheel|Gaillardia pulchella|gaillardia (generic term)
+fire-worship|1
+(noun)|pyrolatry|worship (generic term)
+fire alarm|2
+(noun)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|smoke alarm|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+fire and brimstone|1
+(noun)|damnation (generic term)|eternal damnation (generic term)
+fire ant|1
+(noun)|ant (generic term)|emmet (generic term)|pismire (generic term)
+fire beetle|1
+(noun)|firefly|Pyrophorus noctiluca|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+fire bell|1
+(noun)|bell (generic term)
+fire blight|1
+(noun)|pear blight|leaf blight (generic term)
+fire brigade|2
+(noun)|fire company|organization (generic term)|organisation (generic term)
+(noun)|fire department (generic term)
+fire bush|2
+(noun)|marmalade bush|fire-bush|Streptosolen jamesonii|shrub (generic term)|bush (generic term)
+(noun)|summer cypress|burning bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+fire chief|1
+(noun)|fire marshal|fireman (generic term)|firefighter (generic term)|fire fighter (generic term)|fire-eater (generic term)
+fire code|1
+(noun)|code (generic term)|codification (generic term)
+fire company|1
+(noun)|fire brigade|organization (generic term)|organisation (generic term)
+fire control|1
+(noun)|preparation (generic term)|readying (generic term)
+fire control radar|1
+(noun)|naval radar (generic term)
+fire control system|1
+(noun)|naval weaponry (generic term)
+fire department|1
+(noun)|local department (generic term)|department of local government (generic term)
+fire door|1
+(noun)|door (generic term)
+fire drill|1
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+fire engine|1
+(noun)|fire truck|truck (generic term)|motortruck (generic term)
+fire escape|1
+(noun)|emergency exit|stairway (generic term)|staircase (generic term)
+fire extinguisher|1
+(noun)|extinguisher|asphyxiator|device (generic term)
+fire fighter|1
+(noun)|fireman|firefighter|fire-eater|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+fire hook|1
+(noun)|poker|stove poker|salamander|fire iron (generic term)
+fire hose|1
+(noun)|hose (generic term)|hosepipe (generic term)
+fire hydrant|1
+(noun)|fireplug|plug|hydrant (generic term)
+fire insurance|1
+(noun)|insurance (generic term)
+fire iron|1
+(noun)|implement (generic term)
+fire marshal|1
+(noun)|fire chief|fireman (generic term)|firefighter (generic term)|fire fighter (generic term)|fire-eater (generic term)
+fire marshall|1
+(noun)|official (generic term)|functionary (generic term)
+fire opal|1
+(noun)|girasol|opal (generic term)
+fire pink|1
+(noun)|Silene virginica|silene (generic term)|campion (generic term)|catchfly (generic term)
+fire pit|1
+(noun)|pit (generic term)|cavity (generic term)
+fire salamander|1
+(noun)|spotted salamander|Salamandra maculosa|salamander (generic term)
+fire sale|1
+(noun)|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+fire screen|1
+(noun)|fireguard|screen (generic term)
+fire ship|1
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+fire station|1
+(noun)|firehouse|station (generic term)
+fire thorn|1
+(noun)|Pyracantha|pyracanth|firethorn|shrub (generic term)|bush (generic term)
+fire tongs|1
+(noun)|coal tongs|tongs (generic term)|pair of tongs (generic term)|fire iron (generic term)
+fire tower|1
+(noun)|watchtower (generic term)
+fire tree|1
+(noun)|flame tree|Christmas tree|Nuytsia floribunda|parasitic plant (generic term)
+fire trench|1
+(noun)|trench (generic term)
+fire truck|1
+(noun)|fire engine|truck (generic term)|motortruck (generic term)
+fire up|2
+(verb)|inflame|stir up|wake|ignite|heat|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|light up|light|ignite (generic term)|light (generic term)
+fire walker|1
+(noun)|performer (generic term)|performing artist (generic term)
+fire walking|1
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+fire warden|1
+(noun)|forest fire fighter|ranger|official (generic term)|functionary (generic term)|fireman (generic term)|firefighter (generic term)|fire fighter (generic term)|fire-eater (generic term)
+fire watcher|1
+(noun)|watchman (generic term)|watcher (generic term)|security guard (generic term)
+fire watching|1
+(noun)|civil defense (generic term)
+fire wheel|1
+(noun)|blanket flower|Indian blanket|fire-wheel|Gaillardia pulchella|gaillardia (generic term)
+firearm|1
+(noun)|piece|small-arm|gun (generic term)
+fireball|3
+(noun)|bolide|meteor (generic term)|shooting star (generic term)
+(noun)|powerhouse|human dynamo|ball of fire|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+firebase|1
+(noun)|base (generic term)|base of operations (generic term)
+firebird|3
+(noun)|scarlet tanager|Piranga olivacea|redbird|tanager (generic term)
+(noun)|Baltimore oriole|Baltimore bird|hangbird|Icterus galbula galbula|northern oriole (generic term)|Icterus galbula (generic term)
+(noun)|vermillion flycatcher|Pyrocephalus rubinus mexicanus|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+fireboat|1
+(noun)|boat (generic term)
+firebomb|2
+(noun)|incendiary bomb|incendiary|bomb (generic term)
+(verb)|bombard (generic term)|bomb (generic term)
+firebox|1
+(noun)|furnace (generic term)
+firebrand|2
+(noun)|brand|firewood (generic term)
+(noun)|instigator|provoker|inciter|instigant|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+firebrat|1
+(noun)|Thermobia domestica|bristletail (generic term)
+firebreak|1
+(noun)|fireguard|field (generic term)
+firebrick|1
+(noun)|brick (generic term)
+firebug|2
+(noun)|arsonist|incendiary|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|heteropterous insect (generic term)
+fireclay|1
+(noun)|clay (generic term)
+firecracker|1
+(noun)|cracker|banger|firework (generic term)|pyrotechnic (generic term)
+fired|1
+(adj)|discharged|dismissed|laid-off|pink-slipped|unemployed (similar term)
+firedamp|1
+(noun)|gas (generic term)
+firedog|1
+(noun)|andiron|dog|dog-iron|support (generic term)
+firedrake|1
+(noun)|dragon|mythical monster (generic term)|mythical creature (generic term)
+firefighter|1
+(noun)|fireman|fire fighter|fire-eater|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+firefly|2
+(noun)|fire beetle|Pyrophorus noctiluca|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+(noun)|lightning bug|beetle (generic term)
+fireguard|2
+(noun)|firebreak|field (generic term)
+(noun)|fire screen|screen (generic term)
+firehouse|1
+(noun)|fire station|station (generic term)
+firelight|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+firelighter|1
+(noun)|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+firelock|1
+(noun)|flintlock|muzzle loader (generic term)
+fireman|4
+(noun)|play (generic term)|child's play (generic term)
+(noun)|stoker|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|reliever|relief pitcher|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+(noun)|firefighter|fire fighter|fire-eater|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+fireman's ax|1
+(noun)|fireman's axe|ax (generic term)|axe (generic term)
+fireman's axe|1
+(noun)|fireman's ax|ax (generic term)|axe (generic term)
+fireman's carry|1
+(noun)|carry (generic term)
+firenze|1
+(noun)|Firenze|Florence|city (generic term)|metropolis (generic term)|urban center (generic term)
+fireplace|1
+(noun)|hearth|open fireplace|recess (generic term)|niche (generic term)
+fireplug|1
+(noun)|fire hydrant|plug|hydrant (generic term)
+firepower|1
+(noun)|military capability (generic term)|military strength (generic term)|strength (generic term)|military posture (generic term)|posture (generic term)
+fireproof|2
+(adj)|noncombustible (similar term)|incombustible (similar term)
+(verb)|proof (generic term)
+fireroom|1
+(noun)|stokehold|stokehole|chamber (generic term)
+fireside|2
+(noun)|hearth|area (generic term)|country (generic term)
+(noun)|hearth|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+firestone|2
+(noun)|flint (generic term)
+(noun)|sandstone (generic term)
+firestorm|2
+(noun)|storm (generic term)|violent storm (generic term)
+(noun)|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+firethorn|1
+(noun)|Pyracantha|pyracanth|fire thorn|shrub (generic term)|bush (generic term)
+firetrap|1
+(noun)|building (generic term)|edifice (generic term)
+firewall|3
+(noun)|drive (generic term)|thrust (generic term)|driving force (generic term)
+(noun)|security system (generic term)
+(noun)|wall (generic term)
+firewater|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+fireweed|2
+(noun)|giant willowherb|rosebay willowherb|wickup|Epilobium angustifolium|willowherb (generic term)
+(noun)|Erechtites hieracifolia|weed (generic term)
+firewheel tree|1
+(noun)|wheel tree|Stenocarpus sinuatus|tree (generic term)
+firewood|1
+(noun)|fuel (generic term)
+firework|1
+(noun)|pyrotechnic|low explosive (generic term)
+firing|4
+(noun)|fire|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|discharge|firing off|shooting (generic term)|shot (generic term)
+(noun)|ignition|lighting|kindling|inflammation|burning (generic term)|combustion (generic term)
+(noun)|dismissal|dismission|discharge|liberation|release|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+firing chamber|1
+(noun)|gun chamber|chamber (generic term)
+firing line|2
+(noun)|line (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+firing mechanism|1
+(noun)|gunlock|action (generic term)|action mechanism (generic term)
+firing off|1
+(noun)|discharge|firing|shooting (generic term)|shot (generic term)
+firing party|1
+(noun)|firing squad|squad (generic term)
+firing pin|1
+(noun)|striker (generic term)
+firing range|1
+(noun)|target range|practice range (generic term)
+firing squad|1
+(noun)|firing party|squad (generic term)
+firkin|2
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|keg (generic term)
+firm|15
+(adj)|steadfast|steady|stiff|unbendable|unfaltering|unshakable|unwavering|resolute (similar term)
+(adj)|solid|hard (similar term)
+(adj)|strong|forceful (similar term)
+(adj)|settled (similar term)
+(adj)|steady (similar term)
+(adj)|steady|unfluctuating|stable (similar term)
+(adj)|established|secure (similar term)
+(adj)|healthy (similar term)
+(adj)|crisp|crunchy|fresh (similar term)
+(adj)|fast|immobile|fixed (similar term)
+(adj)|loyal|truehearted|fast|faithful (similar term)
+(noun)|house|business firm|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(verb)|tauten|tighten (generic term)
+(verb)|tauten|tighten (generic term)|fasten (generic term)
+(adv)|firmly|steadfastly|unwaveringly
+firm omelet|1
+(noun)|omelet (generic term)|omelette (generic term)
+firm up|1
+(verb)|arrange (generic term)|fix up (generic term)
+firmament|1
+(noun)|celestial sphere|sphere|empyrean|heavens|vault of heaven|welkin|surface (generic term)
+firmamental|1
+(adj)|surface (related term)
+firmer chisel|1
+(noun)|chisel (generic term)
+firmiana|1
+(noun)|Firmiana|genus Firmiana|dilleniid dicot genus (generic term)
+firmiana simplex|1
+(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree (generic term)
+firmly|3
+(adv)|firm|steadfastly|unwaveringly
+(adv)|securely
+(adv)|hard
+firmness|4
+(noun)|soundness|strength (generic term)|unsoundness (antonym)
+(noun)|resoluteness|firmness of purpose|resolve|resolution|trait (generic term)|irresoluteness (antonym)
+(noun)|hardness (generic term)
+(noun)|steadiness|immovability (generic term)|immovableness (generic term)|unsteadiness (antonym)
+firmness of purpose|1
+(noun)|resoluteness|firmness|resolve|resolution|trait (generic term)|irresoluteness (antonym)
+firmware|1
+(noun)|microcode|code (generic term)|computer code (generic term)
+first|16
+(adj)|archetypal (similar term)|archetypical (similar term)|prototypal (similar term)|prototypic (similar term)|prototypical (similar term)|basic (similar term)|introductory (similar term)|initial (similar term)|firstborn (similar term)|eldest (similar term)|freshman (similar term)|first-year (similar term)|original (similar term)|premier (similar term)|premiere (similar term)|premier (similar term)|prime (similar term)|prime (similar term)|early (related term)|front (related term)|original (related term)|primary (related term)|last (antonym)|intermediate (antonym)
+(adj)|1st|ordinal (similar term)
+(adj)|inaugural|initiative|initiatory|maiden|opening (similar term)
+(adj)|beginning|opening (similar term)
+(adj)|foremost|world-class|best (similar term)
+(adj)|second (antonym)
+(adj)|low|forward (similar term)
+(noun)|number one|rank (generic term)
+(noun)|number one|number 1|ordinal number (generic term)|ordinal (generic term)|no. (generic term)
+(noun)|beginning|commencement|outset|get-go|start|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|first base|position (generic term)
+(noun)|first-class honours degree|honours (generic term)|honours degree (generic term)
+(noun)|first gear|low gear|low|gear (generic term)|gear mechanism (generic term)
+(adv)|firstly|foremost|first of all|first off
+(adv)|for the first time
+(adv)|foremost
+first-aid kit|1
+(noun)|kit (generic term)|outfit (generic term)
+first-aid station|1
+(noun)|station (generic term)
+first-class|1
+(adj)|excellent|fantabulous|superior (similar term)
+first-class honours degree|1
+(noun)|first|honours (generic term)|honours degree (generic term)
+first-class mail|1
+(noun)|first class|1st class|1st-class mail|mail (generic term)
+first-come-first-serve|1
+(adj)|rush|unreserved (similar term)
+first-degree burn|1
+(noun)|burn (generic term)
+first-nighter|1
+(noun)|playgoer (generic term)|theatergoer (generic term)|theatregoer (generic term)
+first-order correlation|1
+(noun)|partial correlation (generic term)
+first-place finish|1
+(noun)|win (generic term)
+first-rate|2
+(adj)|ace|A-one|crack|fantastic|super|tiptop|topnotch|tops|superior (similar term)
+(adv)|very well
+first-rater|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+first-string|2
+(adj)|regular (similar term)
+(adj)|primary (similar term)
+first-year|1
+(adj)|freshman|first (similar term)
+first aid|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+first amendment|1
+(noun)|First Amendment|amendment (generic term)
+first and foremost|1
+(adv)|most importantly
+first and last|1
+(adv)|above all
+first appearance|1
+(noun)|introduction|debut|launching|unveiling|entry|beginning (generic term)|start (generic term)|commencement (generic term)
+first balcony|1
+(noun)|mezzanine|balcony (generic term)
+first baron beveridge|1
+(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist (generic term)|economic expert (generic term)
+first baron kelvin|1
+(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist (generic term)
+first baron lytton|1
+(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer (generic term)|author (generic term)
+first baron macaulay|1
+(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian (generic term)|historiographer (generic term)
+first baron marks of broughton|1
+(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman (generic term)|man of affairs (generic term)
+first baron passfield|1
+(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+first baron rutherford|1
+(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist (generic term)
+first baron rutherford of nelson|1
+(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist (generic term)
+first baron tennyson|1
+(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet (generic term)
+first base|3
+(noun)|base (generic term)|bag (generic term)
+(noun)|first|position (generic term)
+(noun)|first step (generic term)|initiative (generic term)|opening move (generic term)|opening (generic term)
+first baseman|1
+(noun)|first sacker|infielder (generic term)
+first battle of ypres|1
+(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle (generic term)
+first blush|1
+(noun)|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+first cause|1
+(noun)|prime mover|primum mobile|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+first class|3
+(noun)|superiority (generic term)|high quality (generic term)
+(noun)|1st class|first-class mail|1st-class mail|mail (generic term)
+(noun)|accommodation (generic term)
+first council of constantinople|1
+(noun)|Constantinople|First Council of Constantinople|ecumenical council (generic term)
+first council of lyons|1
+(noun)|Lyons|First Council of Lyons|council (generic term)
+first council of nicaea|1
+(noun)|Nicaea|First Council of Nicaea|ecumenical council (generic term)
+first cousin|1
+(noun)|cousin|cousin-german|full cousin|relative (generic term)|relation (generic term)
+first cranial nerve|1
+(noun)|olfactory nerve|nervii olfactorii|cranial nerve (generic term)
+first crusade|1
+(noun)|First Crusade|Crusade (generic term)
+first degree|1
+(noun)|degree (generic term)
+first derivative|1
+(noun)|derived function|derivative|differential coefficient|differential|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+first duke of marlborough|1
+(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general (generic term)|full general (generic term)
+first duke of wellington|1
+(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|Iron Duke|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+first earl kitchener of khartoum|1
+(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal (generic term)
+first earl of beaconsfield|1
+(noun)|Disraeli|Benjamin Disraeli|First Earl of Beaconsfield|statesman (generic term)|solon (generic term)|national leader (generic term)
+first earl of chatham|1
+(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman (generic term)|solon (generic term)|national leader (generic term)
+first earl of orford|1
+(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman (generic term)|solon (generic term)|national leader (generic term)
+first earl wavell|1
+(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general (generic term)|full general (generic term)|field marshal (generic term)
+first epistle of john|1
+(noun)|First Epistle of John|I John|Epistle (generic term)
+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|Epistle (generic term)
+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|Epistle (generic term)
+first epistle of paul the apostle to timothy|1
+(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|Epistle (generic term)
+first epistle of peter|1
+(noun)|First Epistle of Peter|I Peter|Epistle (generic term)
+first epistle to the corinthians|1
+(noun)|First Epistle of Paul the Apostle to the Corinthians|First Epistle to the Corinthians|I Corinthians|Epistle (generic term)
+first epistle to the thessalonians|1
+(noun)|First Epistle of Paul the Apostle to the Thessalonians|First Epistle to the Thessalonians|I Thessalonians|Epistle (generic term)
+first epistle to timothy|1
+(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|Epistle (generic term)
+first estate|1
+(noun)|lords spiritual|clergy (generic term)
+first floor|1
+(noun)|ground floor|ground level|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+first gear|1
+(noun)|first|low gear|low|gear (generic term)|gear mechanism (generic term)
+first grade|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+first half|1
+(noun)|half (generic term)
+first harmonic|1
+(noun)|fundamental|fundamental frequency|harmonic (generic term)
+first in first out|1
+(noun)|FIFO|inventory accounting (generic term)
+first lady|2
+(noun)|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+(noun)|wife (generic term)|married woman (generic term)
+first language|1
+(noun)|mother tongue|maternal language|natural language (generic term)|tongue (generic term)
+first lateran council|1
+(noun)|First Lateran Council|Lateran Council (generic term)
+first law of motion|1
+(noun)|Newton's first law of motion|Newton's first law|Newton's law of motion (generic term)|Newton's law (generic term)|law of motion (generic term)
+first law of thermodynamics|1
+(noun)|conservation of energy|law of conservation of energy|conservation (generic term)|law of thermodynamics (generic term)
+first lieutenant|1
+(noun)|lieutenant (generic term)
+first light|1
+(noun)|dawn|dawning|morning|aurora|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+first lord of the treasury|1
+(noun)|Treasury|First Lord of the Treasury|cabinet minister (generic term)
+first marquess cornwallis|1
+(noun)|Cornwallis|Charles Cornwallis|First Marquess Cornwallis|peer (generic term)|general (generic term)|full general (generic term)
+first mate|1
+(noun)|mate|officer (generic term)|ship's officer (generic term)
+first moment|1
+(noun)|arithmetic mean|expectation|expected value|mean (generic term)|mean value (generic term)
+first mortgage|1
+(noun)|mortgage (generic term)
+first name|1
+(noun)|given name|forename|name (generic term)
+first of all|1
+(adv)|first|firstly|foremost|first off
+first of may|1
+(noun)|May Day|First of May|May 1|day (generic term)
+first of october antifascist resistance group|1
+(noun)|First of October Antifascist Resistance Group|GRAPO|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+first off|1
+(adv)|first|firstly|foremost|first of all
+first offender|1
+(noun)|convict (generic term)
+first period|1
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+first person|1
+(noun)|person (generic term)
+first principle|1
+(noun)|rudiment|first rudiment|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+first quarter|1
+(noun)|half-moon (generic term)
+first reading|1
+(noun)|presentation (generic term)
+first rudiment|1
+(noun)|rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+first sacker|1
+(noun)|first baseman|infielder (generic term)
+first sergeant|1
+(noun)|sergeant first class|sergeant (generic term)
+first state|1
+(noun)|Delaware|Diamond State|First State|DE|American state (generic term)
+first step|1
+(noun)|initiative|opening move|opening|beginning (generic term)|start (generic term)|commencement (generic term)
+first stomach|1
+(noun)|rumen|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+first strike|1
+(noun)|strike (generic term)
+first team|1
+(noun)|varsity|team (generic term)|squad (generic term)
+first trimester|1
+(noun)|trimester (generic term)
+first vatican council|1
+(noun)|First Vatican Council|Vatican I|Vatican Council (generic term)
+first viscount haldane of cloan|1
+(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman (generic term)|solon (generic term)|national leader (generic term)
+first viscount nuffield|1
+(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+first water|1
+(noun)|superiority (generic term)|high quality (generic term)
+first world war|1
+(noun)|World War I|World War 1|Great War|First World War|War to End War|world war (generic term)
+firstborn|2
+(adj)|eldest|first (similar term)
+(noun)|eldest|offspring (generic term)|progeny (generic term)|issue (generic term)
+firsthand|1
+(adj)|primary (similar term)
+firstly|1
+(adv)|first|foremost|first of all|first off
+firth|2
+(noun)|Firth|J. R. Firth|John Rupert Firth|linguist (generic term)|linguistic scientist (generic term)
+(noun)|estuary (generic term)
+firth of clyde|1
+(noun)|Firth of Clyde|firth (generic term)
+firth of forth|1
+(noun)|Firth of Forth|firth (generic term)
+fisa|1
+(noun)|Foreign Intelligence Surveillance Act|FISA|legislative act (generic term)|statute (generic term)
+fisc|1
+(noun)|treasury (generic term)|exchequer (generic term)
+fiscal|1
+(adj)|financial|commercial enterprise|business enterprise|business (related term)|nonfinancial (antonym)
+fiscal policy|1
+(noun)|economic policy (generic term)
+fiscal year|1
+(noun)|financial year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+fiscally|1
+(adv)|in fiscal matters
+fischer|3
+(noun)|Fischer|Hans Fischer|chemist (generic term)
+(noun)|Fischer|Emil Hermann Fischer|chemist (generic term)
+(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master (generic term)
+fischer's slime mushroom|1
+(noun)|Fischer's slime mushroom|slime mushroom (generic term)
+fish|6
+(noun)|aquatic vertebrate (generic term)
+(noun)|food (generic term)|solid food (generic term)
+(noun)|Pisces|Fish|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(verb)|angle|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|catch (generic term)|grab (generic term)|take hold of (generic term)
+fish-fly|1
+(noun)|fish fly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+fish-like|1
+(adj)|fishlike|animal (similar term)
+fish-liver oil|1
+(noun)|fish oil|animal oil (generic term)
+fish-worship|1
+(noun)|ichthyolatry|zoolatry (generic term)|animal-worship (generic term)
+fish and chips|1
+(noun)|dish (generic term)
+fish ball|2
+(noun)|gefilte fish|dish (generic term)
+(noun)|fish cake|patty (generic term)|cake (generic term)
+fish bowl|2
+(noun)|goldfish bowl|fishbowl|situation (generic term)|state of affairs (generic term)
+(noun)|fishbowl|goldfish bowl|bowl (generic term)|aquarium (generic term)|fish tank (generic term)|marine museum (generic term)
+fish cake|1
+(noun)|fish ball|patty (generic term)|cake (generic term)
+fish chowder|1
+(noun)|chowder (generic term)
+fish doctor|1
+(noun)|Gymnelis viridis|eelpout (generic term)|pout (generic term)
+fish duck|1
+(noun)|merganser|sawbill|sheldrake|sea duck (generic term)
+fish eagle|1
+(noun)|osprey|fish hawk|sea eagle|Pandion haliaetus|hawk (generic term)
+fish family|1
+(noun)|family (generic term)
+fish farm|1
+(noun)|workplace (generic term)|work (generic term)
+fish filet|1
+(noun)|fillet|filet|fish fillet|piece (generic term)|slice (generic term)
+fish fillet|1
+(noun)|fillet|filet|fish filet|piece (generic term)|slice (generic term)
+fish finger|1
+(noun)|fish stick|dish (generic term)
+fish fly|1
+(noun)|fish-fly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+fish fry|1
+(noun)|cookout (generic term)
+fish fuddle|1
+(noun)|Jamaica dogwood|Piscidia piscipula|Piscidia erythrina|tree (generic term)
+fish genus|1
+(noun)|genus (generic term)
+fish geranium|1
+(noun)|bedding geranium|zonal pelargonium|Pelargonium hortorum|geranium (generic term)
+fish glue|1
+(noun)|glue (generic term)|gum (generic term)|mucilage (generic term)|animal product (generic term)
+fish hawk|1
+(noun)|osprey|fish eagle|sea eagle|Pandion haliaetus|hawk (generic term)
+fish house punch|1
+(noun)|punch (generic term)
+fish joint|1
+(noun)|butt joint (generic term)|butt (generic term)
+fish knife|1
+(noun)|table knife (generic term)
+fish ladder|1
+(noun)|passage (generic term)
+fish loaf|1
+(noun)|meat loaf (generic term)|meatloaf (generic term)
+fish louse|1
+(noun)|copepod (generic term)|copepod crustacean (generic term)
+fish lure|1
+(noun)|fisherman's lure|bait (generic term)|decoy (generic term)|lure (generic term)
+fish meal|1
+(noun)|organic (generic term)|organic fertilizer (generic term)|organic fertiliser (generic term)|feed (generic term)|provender (generic term)
+fish mousse|1
+(noun)|mousse (generic term)
+fish oil|1
+(noun)|fish-liver oil|animal oil (generic term)
+fish scale|1
+(noun)|scale (generic term)
+fish slice|1
+(noun)|turner (generic term)|food turner (generic term)
+fish steak|1
+(noun)|steak (generic term)
+fish stew|1
+(noun)|stew (generic term)
+fish stick|1
+(noun)|fish finger|dish (generic term)
+fish tank|1
+(noun)|aquarium|marine museum|vivarium (generic term)|tank (generic term)|storage tank (generic term)
+fishbone|1
+(noun)|bone (generic term)|os (generic term)
+fishbowl|2
+(noun)|goldfish bowl|fish bowl|situation (generic term)|state of affairs (generic term)
+(noun)|fish bowl|goldfish bowl|bowl (generic term)|aquarium (generic term)|fish tank (generic term)|marine museum (generic term)
+fisher|2
+(noun)|fisherman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|pekan|fisher cat|black cat|Martes pennanti|marten (generic term)|marten cat (generic term)
+fisher cat|1
+(noun)|fisher|pekan|black cat|Martes pennanti|marten (generic term)|marten cat (generic term)
+fisherman|1
+(noun)|fisher|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+fisherman's bend|1
+(noun)|knot (generic term)
+fisherman's knot|1
+(noun)|true lover's knot|truelove knot|knot (generic term)
+fisherman's lure|1
+(noun)|fish lure|bait (generic term)|decoy (generic term)|lure (generic term)
+fishery|1
+(noun)|piscary|workplace (generic term)|work (generic term)
+fisheye|1
+(adj)|wide-angle|camera lens|optical lens (related term)
+fisheye lens|1
+(noun)|wide-angle lens|camera lens (generic term)|optical lens (generic term)
+fishgig|1
+(noun)|spear|gig|fizgig|lance|implement (generic term)
+fishhook|1
+(noun)|hook (generic term)
+fishily|1
+(adv)|queerly
+fishing|2
+(noun)|sportfishing|outdoor sport (generic term)|field sport (generic term)
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+fishing boat|1
+(noun)|fishing smack|fishing vessel|vessel (generic term)|watercraft (generic term)
+fishing eagle|1
+(noun)|Haliaeetus leucorhyphus|sea eagle (generic term)
+fishing gear|1
+(noun)|tackle|fishing tackle|fishing rig|rig|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+fishing licence|1
+(noun)|fishing license|fishing permit|license (generic term)|licence (generic term)|permit (generic term)
+fishing license|1
+(noun)|fishing licence|fishing permit|license (generic term)|licence (generic term)|permit (generic term)
+fishing line|1
+(noun)|cord (generic term)
+fishing net|1
+(noun)|fishnet|net (generic term)
+fishing permit|1
+(noun)|fishing license|fishing licence|license (generic term)|licence (generic term)|permit (generic term)
+fishing pole|1
+(noun)|fishing rod|rod (generic term)
+fishing rig|1
+(noun)|fishing gear|tackle|fishing tackle|rig|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+fishing rod|1
+(noun)|fishing pole|rod (generic term)
+fishing season|1
+(noun)|season (generic term)
+fishing smack|1
+(noun)|fishing boat|fishing vessel|vessel (generic term)|watercraft (generic term)
+fishing tackle|1
+(noun)|fishing gear|tackle|fishing rig|rig|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+fishing vessel|1
+(noun)|fishing boat|fishing smack|vessel (generic term)|watercraft (generic term)
+fishing worm|1
+(noun)|earthworm|angleworm|fishworm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+fishlike|1
+(adj)|fish-like|animal (similar term)
+fishmonger|1
+(noun)|fishwife|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+fishnet|1
+(noun)|fishing net|net (generic term)
+fishpaste|1
+(noun)|spread (generic term)|paste (generic term)
+fishplate|1
+(noun)|plate (generic term)
+fishpole bamboo|1
+(noun)|gosan-chiku|hotei-chiku|Phyllostachys aurea|bamboo (generic term)
+fishpond|1
+(noun)|pond (generic term)|pool (generic term)
+fishtail|1
+(verb)|decelerate (generic term)|slow down (generic term)
+fishtail bit|1
+(noun)|blade bit|drilling bit (generic term)|drill bit (generic term)
+fishtail palm|1
+(noun)|palm (generic term)|palm tree (generic term)
+fishwife|1
+(noun)|fishmonger|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+fishworm|1
+(noun)|earthworm|angleworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+fishy|2
+(adj)|aquatic vertebrate (related term)
+(adj)|funny|shady|suspect|suspicious|questionable (similar term)
+fissile|2
+(adj)|fissionable|nonfissionable (antonym)
+(adj)|nonfissile (antonym)
+fission|2
+(noun)|nuclear fission|nuclear reaction (generic term)
+(noun)|asexual reproduction (generic term)|agamogenesis (generic term)
+fission bomb|1
+(noun)|atom bomb|atomic bomb|A-bomb|plutonium bomb|nuclear weapon (generic term)|bomb (generic term)
+fissionable|1
+(adj)|fissile|nonfissionable (antonym)
+fissiparity|2
+(noun)|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|divisibility (generic term)
+fissiparous|2
+(adj)|asexual (similar term)|nonsexual (similar term)
+(adj)|breakaway|separatist|independent (similar term)
+fissiped|1
+(noun)|fissiped mammal|carnivore (generic term)
+fissiped mammal|1
+(noun)|fissiped|carnivore (generic term)
+fissipedia|1
+(noun)|Fissipedia|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+fissure|4
+(noun)|crevice|cranny|crack|chap|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|crack|cleft|crevice|scissure|opening (generic term)|gap (generic term)
+(noun)|groove (generic term)|vallecula (generic term)
+(verb)|crack (generic term)
+fissure of rolando|1
+(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus centralis|sulcus (generic term)
+fissure of sylvius|1
+(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus lateralis cerebri|sulcus (generic term)
+fissurella|1
+(noun)|Fissurella|genus Fissurella|mollusk genus (generic term)
+fissurella apertura|1
+(noun)|keyhole limpet|Fissurella apertura|Diodora apertura|limpet (generic term)
+fissurellidae|1
+(noun)|Fissurellidae|family Fissurellidae|mollusk family (generic term)
+fist|1
+(noun)|clenched fist|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+fistfight|2
+(noun)|fisticuffs|slugfest|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+fistful|1
+(noun)|handful|containerful (generic term)
+fisticuffs|2
+(noun)|fistfight|slugfest|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|boxing|pugilism|contact sport (generic term)
+fistmele|1
+(noun)|linear unit (generic term)
+fistula|2
+(noun)|fistulous withers|animal disease (generic term)
+(noun)|sinus|passage (generic term)|passageway (generic term)
+fistular|1
+(adj)|fistulate|fistulous|hollow (similar term)
+fistularia|1
+(noun)|Fistularia|genus Fistularia|fish genus (generic term)
+fistulariidae|1
+(noun)|Fistulariidae|family Fistulariidae|fish family (generic term)
+fistulate|1
+(adj)|fistular|fistulous|hollow (similar term)
+fistulina|1
+(noun)|Fistulina|genus Fistulina|fungus genus (generic term)
+fistulina hepatica|1
+(noun)|beefsteak fungus|Fistulina hepatica|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+fistulinaceae|1
+(noun)|Fistulinaceae|family Fistulinaceae|fungus family (generic term)
+fistulous|2
+(adj)|passage|passageway (related term)
+(adj)|fistular|fistulate|hollow (similar term)
+fistulous withers|1
+(noun)|fistula|animal disease (generic term)
+fit|16
+(adj)|acceptable (similar term)|appropriate (similar term)|suitable (similar term)|suited (similar term)|unfit (antonym)
+(adj)|primed|set|ready (similar term)
+(adj)|healthy|able (similar term)|able-bodied (similar term)|conditioned (similar term)|in condition (similar term)|healthy (related term)|sound (related term)|well (related term)|unfit (antonym)
+(noun)|tantrum|scene|conniption|bad temper (generic term)|ill temper (generic term)
+(noun)|paroxysm|convulsion|attack (generic term)
+(noun)|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|burst|activity (generic term)
+(verb)|suit|accommodate|meet (generic term)|fit (generic term)|conform to (generic term)
+(verb)|go|fit (generic term)
+(verb)|meet|conform to|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|adapt (generic term)|accommodate (generic term)
+(verb)|match|correspond|check|jibe|gibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|be (generic term)
+(verb)|equip|fit out|outfit|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|match|adjust (generic term)|set (generic term)|correct (generic term)
+fit in|1
+(verb)|harmonize|harmonise|consort|accord|concord|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+fit out|2
+(verb)|equip|fit|outfit|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|habilitate|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+fit the bill|1
+(verb)|fill the bill|meet (generic term)|fit (generic term)|conform to (generic term)
+fitch|1
+(noun)|polecat|foulmart|foumart|Mustela putorius|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+fitful|2
+(adj)|spasmodic|sporadic (similar term)
+(adj)|interrupted|off-and-on|broken (similar term)
+fitfulness|1
+(noun)|jerkiness|irregularity (generic term)|unregularity (generic term)
+fitly|1
+(adv)|appropriately|suitably|fittingly|befittingly|unsuitably (antonym)|inappropriately (antonym)
+fitment|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+fitness|4
+(noun)|fittingness|suitability (generic term)|suitableness (generic term)|unfitness (antonym)
+(noun)|physical fitness|good shape|good condition|condition (generic term)|shape (generic term)|unfitness (antonym)
+(noun)|seaworthiness|soundness (generic term)
+(noun)|competence (generic term)|competency (generic term)
+fits and starts|1
+(noun)|burst (generic term)|fit (generic term)
+fitted out|2
+(adj)|equipped|prepared (similar term)
+(adj)|outfitted|furnished (similar term)|equipped (similar term)
+fitted sheet|1
+(noun)|contour sheet|sheet (generic term)|bed sheet (generic term)
+fitter|2
+(adj)|healthier|better (similar term)
+(noun)|tailor (generic term)|seamster (generic term)|sartor (generic term)
+fitting|6
+(adj)|proper (similar term)
+(adj)|meet|just (similar term)
+(noun)|adjustment|accommodation|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|accessory (generic term)|appurtenance (generic term)|supplement (generic term)|add-on (generic term)
+(noun)|appointment|furnishing (generic term)
+(noun)|try-on|trying on|test (generic term)|trial (generic term)|run (generic term)
+fittingly|1
+(adv)|appropriately|suitably|befittingly|fitly|unsuitably (antonym)|inappropriately (antonym)
+fittingness|1
+(noun)|fitness|suitability (generic term)|suitableness (generic term)|unfitness (antonym)
+fitzgerald|3
+(noun)|Fitzgerald|Edward Fitzgerald|poet (generic term)|interpreter (generic term)|translator (generic term)
+(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer (generic term)|author (generic term)
+(noun)|Fitzgerald|Ella Fitzgerald|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+five|3
+(adj)|5|v|cardinal (similar term)
+(noun)|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|basketball team|team (generic term)|squad (generic term)
+five-finger|1
+(noun)|cinquefoil|shrub (generic term)|bush (generic term)
+five-fingered maidenhair fern|1
+(noun)|American maidenhair fern|Adiantum pedatum|maidenhair (generic term)|maidenhair fern (generic term)
+five-flowered gentian|1
+(noun)|agueweed|ague weed|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+five-fold|1
+(adj)|quintuple|fivefold|multiple (similar term)
+five-hitter|1
+(noun)|5-hitter|baseball (generic term)|baseball game (generic term)
+five-hundredth|1
+(adj)|500th|ordinal (similar term)
+five-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+five-membered|1
+(adj)|5-membered|membered (similar term)
+five-needled|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+five-petaled|1
+(adj)|five-petalled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+five-petalled|1
+(adj)|five-petaled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+five-point bishop's cap|1
+(noun)|Mitella pentandra|miterwort (generic term)|mitrewort (generic term)|bishop's cap (generic term)
+five-pointed|1
+(adj)|pointed (similar term)
+five-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+five-spot|3
+(noun)|fiver|five dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+(noun)|Nemophila maculata|nemophila (generic term)
+(noun)|spot (generic term)|domino (generic term)|dice (generic term)|die (generic term)
+five-star admiral|1
+(noun)|fleet admiral|flag officer (generic term)
+five-year-old|1
+(adj)|young (similar term)|immature (similar term)
+five dollar bill|1
+(noun)|fiver|five-spot|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+five hundred|3
+(adj)|500|d|cardinal (similar term)
+(noun)|500|D|large integer (generic term)
+(noun)|euchre|card game (generic term)|cards (generic term)
+five iron|1
+(noun)|mashie|iron (generic term)
+five nations|1
+(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league (generic term)
+five spice powder|1
+(noun)|spice (generic term)
+fivefold|1
+(adj)|quintuple|five-fold|multiple (similar term)
+fivepence|1
+(noun)|coin (generic term)
+fiver|1
+(noun)|five-spot|five dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+fives|1
+(noun)|court game (generic term)
+fivesome|2
+(noun)|five|5|V|cinque|quint|quintet|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|quintet|quintette|gathering (generic term)|assemblage (generic term)
+fix|16
+(noun)|hole|jam|mess|muddle|pickle|kettle of fish|difficulty (generic term)
+(noun)|intravenous injection (generic term)
+(noun)|repair|fixing|fixture|mend|mending|reparation|improvement (generic term)
+(noun)|exemption (generic term)|immunity (generic term)|granting immunity (generic term)
+(noun)|localization|localisation|location|locating|determination (generic term)|finding (generic term)
+(verb)|repair|mend|bushel|doctor|furbish up|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+(verb)|fasten|secure|attach (generic term)|unfasten (antonym)
+(verb)|specify|set|determine|limit|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|cook|ready|make|prepare|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|pay back|pay off|get|get even (generic term)|get back (generic term)
+(verb)|establish (generic term)|found (generic term)|plant (generic term)|constitute (generic term)|institute (generic term)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|fixate|attach (generic term)
+(verb)|sterilize|sterilise|desex|unsex|desexualize|desexualise|operate on (generic term)|operate (generic term)
+(verb)|situate|posit|deposit|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|prepare|set up|ready|gear up|set|change (generic term)|alter (generic term)|modify (generic term)
+fix-it shop|1
+(noun)|repair shop|shop (generic term)|store (generic term)
+fix up|2
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|arrange|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+fixate|4
+(verb)|bind (generic term)|tie (generic term)|attach (generic term)|bond (generic term)
+(verb)|attend (generic term)|hang (generic term)|advert (generic term)|pay heed (generic term)|give ear (generic term)
+(verb)|fix|attach (generic term)
+(verb)|settle on|freeze (generic term)|stop dead (generic term)
+fixation|4
+(noun)|arrested development|infantile fixation|regression|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|obsession|preoccupation (generic term)
+(noun)|fastening (generic term)|attachment (generic term)
+(noun)|fixing|preservation (generic term)
+fixative|2
+(noun)|fixing agent (generic term)|fixer (generic term)
+(noun)|varnish (generic term)
+fixed|5
+(adj)|determinate (similar term)
+(adj)|set|rigid|nonmoving (similar term)|unmoving (similar term)
+(adj)|fast (similar term)|firm (similar term)|immobile (similar term)|geostationary (similar term)|geosynchronous (similar term)|leaded (similar term)|stationary (similar term)|taped (similar term)|unadjustable (similar term)|secure (related term)|unfixed (antonym)
+(adj)|frozen|unchangeable (similar term)
+(adj)|flat|regressive (similar term)
+fixed-combination drug|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+fixed-cycle operation|1
+(noun)|operation (generic term)
+fixed-income|1
+(adj)|invariable (similar term)
+fixed-point notation|1
+(noun)|fixed-point representation system|mathematical notation (generic term)
+fixed-point number|1
+(noun)|number (generic term)
+fixed-point part|1
+(noun)|mantissa|fraction (generic term)
+fixed-point representation system|1
+(noun)|fixed-point notation|mathematical notation (generic term)
+fixed-width font|1
+(noun)|typewriter font|constant-width font|monospaced font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)|proportional font (antonym)
+fixed charge|1
+(noun)|fixed cost|fixed costs|charge (generic term)
+fixed cost|1
+(noun)|fixed charge|fixed costs|charge (generic term)
+fixed costs|1
+(noun)|fixed charge|fixed cost|charge (generic term)
+fixed disk|1
+(noun)|hard disc|hard disk|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+fixed intonation|1
+(noun)|intonation (generic term)
+fixed investment trust|1
+(noun)|nondiscretionary trust|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+fixed oil|1
+(noun)|fatty oil|oil (generic term)
+fixed phagocyte|1
+(noun)|phagocyte (generic term)|scavenger cell (generic term)
+fixed star|1
+(noun)|star (generic term)
+fixed storage|1
+(noun)|read-only memory|ROM|read-only storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+fixedness|3
+(noun)|stationariness|immobility|motionlessness (generic term)|stillness (generic term)|lifelessness (generic term)
+(noun)|fastness|fixity|fixture|secureness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+(noun)|unalterability|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)
+fixer|4
+(noun)|influence peddler|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|fixing agent|compound (generic term)|chemical compound (generic term)
+(noun)|mender|repairer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|methadone|methadone hydrochloride|methadon|dolophine hydrochloride|synthetic heroin|narcotic (generic term)
+fixer-upper|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+fixing|4
+(noun)|repair|fix|fixture|mend|mending|reparation|improvement (generic term)
+(noun)|fastener|fastening|holdfast|restraint (generic term)|constraint (generic term)
+(noun)|neutering|altering|sterilization (generic term)|sterilisation (generic term)
+(noun)|fixation|preservation (generic term)
+fixing agent|1
+(noun)|fixer|compound (generic term)|chemical compound (generic term)
+fixings|2
+(noun)|ingredient|foodstuff (generic term)|food product (generic term)
+(noun)|trimmings|accessory (generic term)|appurtenance (generic term)|supplement (generic term)|add-on (generic term)
+fixity|2
+(noun)|fastness|fixedness|fixture|secureness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+(noun)|immutability|immutableness|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|mutableness (antonym)|mutability (antonym)
+fixture|4
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|regular|habitue|patron (generic term)|frequenter (generic term)
+(noun)|fastness|fixedness|fixity|secureness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+(noun)|repair|fix|fixing|mend|mending|reparation|improvement (generic term)
+fizgig|2
+(noun)|spear|gig|fishgig|lance|implement (generic term)
+(noun)|firework (generic term)|pyrotechnic (generic term)
+fizz|2
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(verb)|foam|froth|effervesce|sparkle|bubble (generic term)
+fizzing|1
+(adj)|fizzy|effervescent (similar term)
+fizzle|3
+(noun)|hiss|hissing|hushing|sibilation|noise (generic term)
+(noun)|flop|bust|failure (generic term)
+(verb)|taper off|peter out|fizzle out|discontinue (generic term)
+fizzle out|1
+(verb)|taper off|peter out|fizzle|discontinue (generic term)
+fizzy|1
+(adj)|fizzing|effervescent (similar term)
+fjord|1
+(noun)|fiord|inlet (generic term)|recess (generic term)
+fl|1
+(noun)|Florida|Sunshine State|Everglade State|FL|American state (generic term)
+flab|1
+(noun)|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+flabbergast|1
+(verb)|boggle|bowl over|surprise (generic term)
+flabbergasted|1
+(adj)|dumbfounded|dumfounded|stupefied|thunderstruck|dumbstruck|dumbstricken|surprised (similar term)
+flabbiness|1
+(noun)|limpness|flaccidity|softness (generic term)
+flabby|1
+(adj)|soft|flaccid|unfit (similar term)
+flaccid|3
+(adj)|lax|limp|slack|weak (similar term)
+(adj)|soft (similar term)
+(adj)|soft|flabby|unfit (similar term)
+flaccid bladder|1
+(noun)|bladder disorder (generic term)
+flaccid paralysis|1
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+flaccidity|1
+(noun)|flabbiness|limpness|softness (generic term)
+flack|3
+(noun)|flak catcher|flak|flack catcher|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|fire|attack|flak|blast|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|antiaircraft|antiaircraft gun|flak|pom-pom|ack-ack|ack-ack gun|gun (generic term)
+flack catcher|1
+(noun)|flak catcher|flak|flack|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+flacourtia|1
+(noun)|Flacourtia|genus Flacourtia|dilleniid dicot genus (generic term)
+flacourtia family|1
+(noun)|Flacourtiaceae|family Flacourtiaceae|dilleniid dicot family (generic term)
+flacourtia indica|1
+(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub (generic term)|bush (generic term)
+flacourtiaceae|1
+(noun)|Flacourtiaceae|family Flacourtiaceae|flacourtia family|dilleniid dicot family (generic term)
+flag|12
+(noun)|emblem (generic term)
+(noun)|iris|fleur-de-lis|sword lily|iridaceous plant (generic term)
+(noun)|signal flag|visual signal (generic term)
+(noun)|masthead|list (generic term)|listing (generic term)
+(noun)|pin|golf equipment (generic term)
+(noun)|flagstone|paving stone (generic term)
+(noun)|tail (generic term)
+(verb)|sign (generic term)|signal (generic term)|signalize (generic term)|signalise (generic term)|flag down (related term)
+(verb)|mark (generic term)
+(verb)|sag|droop|swag|sink (generic term)|drop (generic term)|drop down (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|ease up|ease off|slacken off|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+flag-waver|1
+(noun)|chauvinist|jingoist|jingo|hundred-percenter|patrioteer|patriot (generic term)|nationalist (generic term)
+flag-waving|1
+(adj)|chauvinistic|jingoistic|nationalistic|ultranationalistic|superpatriotic|patriotic (similar term)|loyal (similar term)
+flag captain|1
+(noun)|captain (generic term)|skipper (generic term)
+flag day|1
+(noun)|Flag Day|June 14|day (generic term)
+flag down|1
+(verb)|stop (generic term)
+flag of truce|1
+(noun)|white flag|flag (generic term)
+flag officer|1
+(noun)|commissioned naval officer (generic term)
+flag rank|1
+(noun)|military rank (generic term)|military rating (generic term)|paygrade (generic term)|rating (generic term)
+flag smut|1
+(noun)|smut (generic term)
+flag smut fungus|1
+(noun)|smut (generic term)|smut fungus (generic term)
+flag stop|1
+(noun)|whistle stop|way station|railway station (generic term)|railroad station (generic term)|railroad terminal (generic term)|train station (generic term)|train depot (generic term)
+flag waving|1
+(noun)|jingoism|demagoguery (generic term)|demagogy (generic term)
+flagellant|2
+(noun)|masochist (generic term)
+(noun)|penitent (generic term)
+flagellata|1
+(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class (generic term)
+flagellate|3
+(adj)|flagellated|whiplike|lash-like|leather strip (related term)|instrument (related term)|process|outgrowth|appendage (related term)
+(noun)|flagellate protozoan|flagellated protozoan|mastigophoran|mastigophore|protozoan (generic term)|protozoon (generic term)
+(verb)|scourge|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+flagellate protozoan|1
+(noun)|flagellate|flagellated protozoan|mastigophoran|mastigophore|protozoan (generic term)|protozoon (generic term)
+flagellated|1
+(adj)|flagellate|whiplike|lash-like|leather strip (related term)|instrument (related term)|process|outgrowth|appendage (related term)
+flagellated cell|1
+(noun)|cell (generic term)
+flagellated protozoan|1
+(noun)|flagellate|flagellate protozoan|mastigophoran|mastigophore|protozoan (generic term)|protozoon (generic term)
+flagellation|1
+(noun)|whipping|tanning|flogging|lashing|beating (generic term)|thrashing (generic term)|licking (generic term)|drubbing (generic term)|lacing (generic term)|trouncing (generic term)|whacking (generic term)
+flagellum|2
+(noun)|scourge|whip (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+flageolet|2
+(noun)|haricot|common bean (generic term)
+(noun)|treble recorder|shepherd's pipe|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+flagfish|1
+(noun)|American flagfish|Jordanella floridae|killifish (generic term)
+flagging|3
+(adj)|drooping|tired (similar term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|walk (generic term)|walkway (generic term)|paseo (generic term)
+flagitious|1
+(adj)|atrocious|grievous|heinous|monstrous|evil (similar term)
+flagon|1
+(noun)|vessel (generic term)
+flagpole|2
+(noun)|range pole|ranging pole|surveying instrument (generic term)|surveyor's instrument (generic term)
+(noun)|flagstaff|staff (generic term)
+flagrant|1
+(adj)|crying|egregious|glaring|gross|rank|conspicuous (similar term)
+flagroot|1
+(noun)|sweet flag|calamus|sweet calamus|myrtle flag|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+flagship|2
+(noun)|thing (generic term)
+(noun)|ship (generic term)
+flagstaff|2
+(noun)|Flagstaff|town (generic term)
+(noun)|flagpole|staff (generic term)
+flagstone|1
+(noun)|flag|paving stone (generic term)
+flagyl|1
+(noun)|metronidazole|Flagyl|antiprotozoal (generic term)|antiprotozoal drug (generic term)
+flail|3
+(noun)|implement (generic term)
+(verb)|thrash|thresh|lam|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|thresh|beat (generic term)|flap (generic term)
+flair|3
+(noun)|genius|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+(noun)|dash|elan|panache|style|elegance (generic term)
+(noun)|flare|shape (generic term)|form (generic term)
+flak|3
+(noun)|flak catcher|flack catcher|flack|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|fire|attack|flack|blast|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|antiaircraft|antiaircraft gun|flack|pom-pom|ack-ack|ack-ack gun|gun (generic term)
+flak catcher|1
+(noun)|flak|flack catcher|flack|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+flake|6
+(noun)|snowflake|crystal (generic term)
+(noun)|eccentric|eccentric person|oddball|geek|anomaly (generic term)|unusual person (generic term)
+(noun)|bit|chip|fleck|scrap|fragment (generic term)
+(verb)|form (generic term)
+(verb)|cover (generic term)
+(verb)|peel off|peel|flake off|chip (generic term)|chip off (generic term)|come off (generic term)|break away (generic term)|break off (generic term)
+flake off|1
+(verb)|peel off|peel|flake|chip (generic term)|chip off (generic term)|come off (generic term)|break away (generic term)|break off (generic term)
+flake out|1
+(verb)|fall asleep|dope off|drift off|nod off|drop off|doze off|drowse off|wake up (antonym)
+flakey|3
+(adj)|flaky|fragment (related term)
+(adj)|flaky|tender (similar term)
+(adj)|bizarre|eccentric|freakish|freaky|flaky|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+flakiness|2
+(noun)|craziness|daftness|insanity (generic term)
+(noun)|brittleness (generic term)|crispness (generic term)|crispiness (generic term)
+flaky|3
+(adj)|flakey|fragment (related term)
+(adj)|flakey|tender (similar term)
+(adj)|bizarre|eccentric|freakish|freaky|flakey|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+flambe|1
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+flambeau|1
+(noun)|torch (generic term)
+flamboyance|1
+(noun)|floridness|floridity|showiness|ornateness (generic term)|elaborateness (generic term)
+flamboyant|3
+(adj)|aureate|florid|fancy (similar term)
+(adj)|unrestrained|colorful (similar term)|colourful (similar term)
+(noun)|royal poinciana|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+flamboyant tree|1
+(noun)|pride of barbados|paradise flower|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub (generic term)
+flamboyantly|1
+(adv)|showily|flashily
+flame|4
+(noun)|fire|flaming|combustion (generic term)|burning (generic term)
+(verb)|flare|shine (generic term)|beam (generic term)|flame up (related term)
+(verb)|burn (generic term)|combust (generic term)
+(verb)|chastise (generic term)|castigate (generic term)|objurgate (generic term)|chasten (generic term)|correct (generic term)
+flame-colored|1
+(adj)|flame-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+flame-coloured|1
+(adj)|flame-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+flame-flower|2
+(noun)|kniphofia|tritoma|flame flower|flameflower|herb (generic term)|herbaceous plant (generic term)
+(noun)|flame flower|flameflower|Talinum aurantiacum|wildflower (generic term)|wild flower (generic term)
+flame-orange|1
+(adj)|red-orange|reddish-orange|chromatic (similar term)
+flame-out|2
+(noun)|power outage (generic term)|power failure (generic term)
+(noun)|failure (generic term)
+flame-retardant|1
+(adj)|flameproof|noncombustible (similar term)|incombustible (similar term)
+flame bush|1
+(noun)|coral bush|Templetonia retusa|shrub (generic term)|bush (generic term)
+flame cell|1
+(noun)|excretory organ (generic term)|urinary organ (generic term)
+flame durrajong|1
+(noun)|flame tree|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree (generic term)|bottle tree (generic term)
+flame fish|1
+(noun)|flamefish|Apogon maculatus|cardinalfish (generic term)
+flame flower|2
+(noun)|kniphofia|tritoma|flame-flower|flameflower|herb (generic term)|herbaceous plant (generic term)
+(noun)|flame-flower|flameflower|Talinum aurantiacum|wildflower (generic term)|wild flower (generic term)
+flame nettle|1
+(noun)|coleus|herb (generic term)|herbaceous plant (generic term)
+flame pea|1
+(noun)|shrub (generic term)|bush (generic term)
+flame stitch|1
+(noun)|bargello|stitch (generic term)
+flame tokay|1
+(noun)|Tokay (generic term)
+flame tree|5
+(noun)|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant (generic term)
+(noun)|royal poinciana|flamboyant|peacock flower|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|broad-leaved bottletree|Brachychiton australis|bottle-tree (generic term)|bottle tree (generic term)
+(noun)|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree (generic term)|bottle tree (generic term)
+(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|Acacia farnesiana|acacia (generic term)
+flame up|1
+(verb)|flare|blaze up|burn up|burn (generic term)|combust (generic term)
+flamefish|1
+(noun)|flame fish|Apogon maculatus|cardinalfish (generic term)
+flameflower|2
+(noun)|kniphofia|tritoma|flame flower|flame-flower|herb (generic term)|herbaceous plant (generic term)
+(noun)|flame flower|flame-flower|Talinum aurantiacum|wildflower (generic term)|wild flower (generic term)
+flamen|1
+(noun)|priest (generic term)|non-Christian priest (generic term)
+flamenco|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|gypsy dancing|social dancing (generic term)
+flameproof|1
+(adj)|flame-retardant|noncombustible (similar term)|incombustible (similar term)
+flamethrower|1
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+flaming|5
+(adj)|ablaze|colorful (similar term)|colourful (similar term)
+(adj)|ablaze|afire|aflame|aflare|alight|blazing|burning|on fire|lighted (similar term)|lit (similar term)
+(adj)|bally|blinking|bloody|blooming|crashing|fucking|unmitigated (similar term)
+(adj)|fiery|hot (similar term)
+(noun)|fire|flame|combustion (generic term)|burning (generic term)
+flaming poppy|1
+(noun)|wind poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy (generic term)
+flamingo|1
+(noun)|wading bird (generic term)|wader (generic term)
+flamingo flower|1
+(noun)|flamingo plant|Anthurium andraeanum|Anthurium scherzerianum|anthurium (generic term)|tailflower (generic term)|tail-flower (generic term)
+flamingo plant|1
+(noun)|flamingo flower|Anthurium andraeanum|Anthurium scherzerianum|anthurium (generic term)|tailflower (generic term)|tail-flower (generic term)
+flaminian way|1
+(noun)|Flaminian Way|highway (generic term)|main road (generic term)
+flaminius|1
+(noun)|Flaminius|Gaius Flaminius|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+flammability|1
+(noun)|inflammability|combustibility (generic term)|combustibleness (generic term)|burnability (generic term)
+flammable|1
+(adj)|inflammable|combustible (similar term)
+flammulina|1
+(noun)|Flammulina|genus Flammulina|fungus genus (generic term)
+flammulina velutipes|1
+(noun)|winter mushroom|Flammulina velutipes|agaric (generic term)
+flan|1
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+flanders|1
+(noun)|Flanders|European country (generic term)|European nation (generic term)
+flanders poppy|1
+(noun)|corn poppy|field poppy|Flanders poppy|Papaver rhoeas|poppy (generic term)
+flange|1
+(noun)|rim|projection (generic term)
+flank|5
+(noun)|wing|formation (generic term)
+(noun)|subfigure (generic term)
+(noun)|cut of beef (generic term)
+(noun)|body part (generic term)
+(verb)|lie (generic term)
+flank steak|1
+(noun)|beefsteak (generic term)
+flanker|2
+(noun)|flanker back|back (generic term)
+(noun)|soldier (generic term)
+flanker back|1
+(noun)|flanker|back (generic term)
+flannel|3
+(noun)|flannel fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|washcloth|washrag|face cloth|bath linen (generic term)
+(noun)|gabardine|tweed|white|trouser (generic term)|pant (generic term)
+flannel-cake|1
+(noun)|pancake|battercake|flannel cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake (generic term)
+flannel bush|1
+(noun)|flannelbush|California beauty|shrub (generic term)|bush (generic term)
+flannel cake|1
+(noun)|pancake|battercake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake (generic term)
+flannel fabric|1
+(noun)|flannel|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+flannel leaf|1
+(noun)|mullein|velvet plant|herb (generic term)|herbaceous plant (generic term)
+flannel mullein|1
+(noun)|common mullein|great mullein|Aaron's rod|woolly mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+flannelbush|1
+(noun)|flannel bush|California beauty|shrub (generic term)|bush (generic term)
+flannelette|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+flannery o'connor|1
+(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer (generic term)|author (generic term)
+flap|11
+(noun)|covering (generic term)
+(noun)|dither|pother|fuss|tizzy|agitation (generic term)
+(noun)|flapping|flutter|fluttering|wave (generic term)|undulation (generic term)
+(noun)|animal tissue (generic term)
+(noun)|flaps|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+(verb)|roll|undulate|wave|move (generic term)
+(verb)|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|beat|move (generic term)|displace (generic term)
+(verb)|beat|move (generic term)
+(verb)|dither|pother|fuss (generic term)|niggle (generic term)|fret (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+flap down|1
+(verb)|slam|throw (generic term)
+flapcake|1
+(noun)|pancake|battercake|flannel cake|flannel-cake|flapjack|griddlecake|hotcake|hot cake|cake (generic term)
+flapjack|1
+(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|griddlecake|hotcake|hot cake|cake (generic term)
+flapper|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+flapping|1
+(noun)|flap|flutter|fluttering|wave (generic term)|undulation (generic term)
+flaps|1
+(noun)|flap|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+flare|15
+(noun)|flair|shape (generic term)|form (generic term)
+(noun)|fire (generic term)|flame (generic term)|flaming (generic term)
+(noun)|flash|visual signal (generic term)
+(noun)|erythroderma (generic term)
+(noun)|attack (generic term)
+(noun)|solar flare|solar radiation (generic term)
+(noun)|reflection (generic term)|reflexion (generic term)
+(noun)|effusion (generic term)|gush (generic term)|outburst (generic term)|blowup (generic term)|ebullition (generic term)
+(noun)|device (generic term)
+(noun)|flare pass|forward pass (generic term)|aerial (generic term)
+(noun)|fly (generic term)|fly ball (generic term)
+(verb)|flame up|blaze up|burn up|burn (generic term)|combust (generic term)
+(verb)|flare out|widen (generic term)
+(verb)|flame|shine (generic term)|beam (generic term)|flame up (related term)
+(verb)|erupt|irrupt|flare up|break open|burst out|intensify (generic term)|deepen (generic term)
+flare-up|1
+(noun)|outburst|burst|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+flare out|1
+(verb)|flare|widen (generic term)
+flare pass|1
+(noun)|flare|forward pass (generic term)|aerial (generic term)
+flare path|1
+(noun)|airstrip (generic term)|flight strip (generic term)|landing strip (generic term)|strip (generic term)
+flare star|1
+(noun)|red dwarf (generic term)|red dwarf star (generic term)
+flare up|2
+(verb)|ignite (generic term)|light (generic term)
+(verb)|erupt|irrupt|flare|break open|burst out|intensify (generic term)|deepen (generic term)
+flared|1
+(adj)|flaring|increasing (similar term)
+flaring|2
+(adj)|flared|increasing (similar term)
+(adj)|aflare|flying|waving|moving (similar term)
+flash|18
+(adj)|brassy|cheap|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|brightness (generic term)
+(noun)|flashing|experience (generic term)
+(noun)|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|blink of an eye|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+(noun)|ostentation|fanfare|display (generic term)
+(noun)|flare|visual signal (generic term)
+(noun)|news bulletin|newsflash|newsbreak|bulletin (generic term)
+(noun)|patch (generic term)
+(noun)|photoflash|flash lamp|flashgun|flashbulb|flash bulb|lamp (generic term)|photographic equipment (generic term)
+(verb)|blink|wink|twinkle|winkle|radiate (generic term)
+(verb)|flaunt|show off|ostentate|swank|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|convey (generic term)|impart (generic term)
+(verb)|dart|dash|scoot|scud|shoot|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+(verb)|show (generic term)
+(verb)|cover (generic term)
+(verb)|appear (generic term)
+flash-forward|1
+(noun)|transition (generic term)|flashback (antonym)
+flash-freeze|1
+(verb)|quick-freeze|freeze (generic term)
+flash-frozen|1
+(adj)|quick-frozen|frozen|preserved (similar term)
+flash back|1
+(verb)|cut back|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+flash bulb|1
+(noun)|flash|photoflash|flash lamp|flashgun|flashbulb|lamp (generic term)|photographic equipment (generic term)
+flash butt welding|1
+(noun)|flash welding|butt welding (generic term)|butt-welding (generic term)
+flash camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+flash card|1
+(noun)|flashcard|poster (generic term)|posting (generic term)|placard (generic term)|notice (generic term)|bill (generic term)|card (generic term)
+flash flood|1
+(noun)|flashflood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+flash in the pan|1
+(noun)|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+flash lamp|1
+(noun)|flash|photoflash|flashgun|flashbulb|flash bulb|lamp (generic term)|photographic equipment (generic term)
+flash memory|1
+(noun)|non-volatile storage (generic term)|nonvolatile storage (generic term)
+flash point|2
+(noun)|flashpoint|criticality (generic term)
+(noun)|flashpoint|temperature (generic term)
+flash welding|1
+(noun)|flash butt welding|butt welding (generic term)|butt-welding (generic term)
+flashback|2
+(noun)|transition (generic term)|flash-forward (antonym)
+(noun)|recurrence (generic term)|return (generic term)
+flashboard|1
+(noun)|flashboarding|boarding (generic term)
+flashboarding|1
+(noun)|flashboard|boarding (generic term)
+flashbulb|1
+(noun)|flash|photoflash|flash lamp|flashgun|flash bulb|lamp (generic term)|photographic equipment (generic term)
+flashcard|1
+(noun)|flash card|poster (generic term)|posting (generic term)|placard (generic term)|notice (generic term)|bill (generic term)|card (generic term)
+flasher|3
+(noun)|exhibitionist|compulsive (generic term)
+(noun)|electrical device (generic term)
+(noun)|blinker|light (generic term)|light source (generic term)
+flashflood|1
+(noun)|flash flood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+flashgun|1
+(noun)|flash|photoflash|flash lamp|flashbulb|flash bulb|lamp (generic term)|photographic equipment (generic term)
+flashily|2
+(adv)|meretriciously
+(adv)|flamboyantly|showily
+flashiness|1
+(noun)|garishness|gaudiness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness (generic term)
+flashing|3
+(adj)|bright (similar term)
+(noun)|flash|experience (generic term)
+(noun)|sheet metal (generic term)
+flashlight|1
+(noun)|torch|electric lamp (generic term)
+flashlight battery|1
+(noun)|dry battery (generic term)
+flashlight fish|2
+(noun)|Photoblepharon palpebratus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+(noun)|anomalops|spiny-finned fish (generic term)|acanthopterygian (generic term)
+flashover|1
+(noun)|discharge (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+flashpoint|2
+(noun)|flash point|criticality (generic term)
+(noun)|flash point|temperature (generic term)
+flashy|2
+(adj)|brassy|cheap|flash|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|gaudy|jazzy|showy|sporty|colorful (similar term)|colourful (similar term)
+flask|2
+(noun)|bottle (generic term)
+(noun)|flaskful|containerful (generic term)
+flaskful|1
+(noun)|flask|containerful (generic term)
+flat|25
+(adj)|level|plane|even (similar term)
+(adj)|planar (similar term)|two-dimensional (similar term)
+(adj)|categoric|categorical|unconditional|unqualified (similar term)
+(adj)|prostrate|unerect (similar term)
+(adj)|underdeveloped (similar term)|contrasty (antonym)
+(adj)|natural (antonym)|sharp (antonym)
+(adj)|compressed|thin (similar term)
+(adj)|bland|flavorless|flavourless|insipid|savorless|savourless|vapid|tasteless (similar term)
+(adj)|bland|unstimulating (similar term)|unexciting (similar term)
+(adj)|noneffervescent (similar term)
+(adj)|fixed|regressive (similar term)
+(adj)|monotone|monotonic|monotonous|unmodulated (similar term)
+(adj)|horizontal (similar term)
+(adj)|two-dimensional|2-dimensional|multidimensional (similar term)
+(adj)|deflated (similar term)
+(adj)|mat|matt|matte|matted|dull (similar term)
+(adj)|inactive (similar term)
+(noun)|plain (generic term)|field (generic term)|champaign (generic term)
+(noun)|box (generic term)
+(noun)|musical notation (generic term)
+(noun)|flatcar|flatbed|freight car (generic term)
+(noun)|flat tire|pneumatic tire (generic term)|pneumatic tyre (generic term)
+(noun)|scenery (generic term)|scene (generic term)
+(noun)|apartment|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(adv)|directly|straight|indirectly (antonym)
+flat-bellied|1
+(adj)|bellyless|bellied (antonym)
+flat-bottom|1
+(adj)|flat-bottomed|bottomed (similar term)
+flat-bottomed|1
+(adj)|flat-bottom|bottomed (similar term)
+flat-coated retriever|1
+(noun)|retriever (generic term)
+flat-footed|4
+(adj)|footed (similar term)
+(adj)|unready (similar term)
+(adj)|splayfooted (similar term)|splayfoot (similar term)
+(adj)|direct (similar term)
+flat-growing|1
+(adj)|low-growing|ground-hugging|low (similar term)
+flat-hat|1
+(verb)|hedgehop|fly (generic term)|aviate (generic term)|pilot (generic term)
+flat-leaf parsley|1
+(noun)|Italian parsley|Petroselinum crispum neapolitanum|parsley (generic term)|Petroselinum crispum (generic term)
+flat-top|1
+(adj)|flat-topped|topped (similar term)
+flat-topped|1
+(adj)|flat-top|topped (similar term)
+flat-topped white aster|1
+(noun)|aster (generic term)
+flat arch|1
+(noun)|straight arch|arch (generic term)
+flat bench|1
+(noun)|bench (generic term)
+flat bone|1
+(noun)|cut of beef (generic term)
+flat cap|1
+(noun)|cloth cap|cap (generic term)
+flat coat|1
+(noun)|ground|primer|priming|primer coat|priming coat|undercoat|coat of paint (generic term)
+flat file|1
+(noun)|file (generic term)
+flat knot|1
+(noun)|reef knot|square knot (generic term)
+flat out|2
+(adv)|bluffly|bluntly|brusquely|roundly
+(adv)|like blue murder
+flat panel display|1
+(noun)|FPD|display (generic term)|video display (generic term)
+flat pea|2
+(noun)|Platylobium formosum|shrub (generic term)|bush (generic term)
+(noun)|narrow-leaved everlasting pea|Lathyrus sylvestris|everlasting pea (generic term)
+flat solid|1
+(noun)|sheet|artifact (generic term)|artefact (generic term)
+flat tip screwdriver|1
+(noun)|screwdriver (generic term)
+flat tire|1
+(noun)|flat|pneumatic tire (generic term)|pneumatic tyre (generic term)
+flat wash|1
+(noun)|flatwork|ironing (generic term)
+flatbed|2
+(noun)|flatcar|flat|freight car (generic term)
+(noun)|truck bed (generic term)
+flatbed press|1
+(noun)|cylinder press|press (generic term)|printing press (generic term)
+flatboat|1
+(noun)|barge|hoy|lighter|boat (generic term)
+flatbottom|1
+(adj)|flatbottomed|even (similar term)
+flatbottomed|1
+(adj)|flatbottom|even (similar term)
+flatbread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+flatbrod|1
+(noun)|flatbread (generic term)
+flatcar|1
+(noun)|flatbed|flat|freight car (generic term)
+flatfish|2
+(noun)|saltwater fish (generic term)
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+flatfoot|2
+(noun)|patrolman|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|splayfoot|pes planus|foot (generic term)|human foot (generic term)|pes (generic term)
+flathead|2
+(noun)|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+flathead catfish|1
+(noun)|mudcat|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+flatiron|1
+(noun)|iron (generic term)|smoothing iron (generic term)
+flatlet|1
+(noun)|apartment (generic term)|flat (generic term)
+flatly|1
+(adv)|categorically|unconditionally
+flatmate|1
+(noun)|friend (generic term)
+flatness|5
+(noun)|two-dimensionality|planeness|dimensionality (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|lusterlessness|lustrelessness|mat|matt|matte|dullness (generic term)
+(noun)|languor|lethargy|sluggishness|phlegm|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+flats|1
+(noun)|footwear (generic term)|footgear (generic term)
+flatten|3
+(verb)|shape (generic term)|form (generic term)
+(verb)|flatten out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|drop|change (generic term)|alter (generic term)|modify (generic term)|sharpen (antonym)
+flatten out|1
+(verb)|flatten|change shape (generic term)|change form (generic term)|deform (generic term)
+flattened|1
+(adj)|planate|planar (similar term)|two-dimensional (similar term)
+flatter|1
+(verb)|blandish|praise (generic term)|disparage (antonym)
+flatterer|1
+(noun)|adulator|follower (generic term)
+flattering|1
+(adj)|adulatory (similar term)|becoming (similar term)|ingratiating (similar term)|insinuating (similar term)|ingratiatory (similar term)|unflattering (antonym)
+flattery|1
+(noun)|compliment (generic term)
+flattop|2
+(noun)|crew cut|haircut (generic term)
+(noun)|aircraft carrier|carrier|attack aircraft carrier|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+flatulence|2
+(noun)|flatulency|gas|physiological state (generic term)|physiological condition (generic term)
+(noun)|turgidity|turgidness|prolixity (generic term)|prolixness (generic term)|windiness (generic term)|long-windedness (generic term)|wordiness (generic term)
+flatulency|1
+(noun)|flatulence|gas|physiological state (generic term)|physiological condition (generic term)
+flatulent|2
+(adj)|indigestible (similar term)
+(adj)|colicky|gassy|unhealthy (similar term)
+flatus|1
+(noun)|fart|farting|wind|breaking wind|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+flatus-relieving|1
+(adj)|carminative|healthful (similar term)
+flatware|2
+(noun)|tableware (generic term)
+(noun)|silver|silverware (generic term)
+flatwork|1
+(noun)|flat wash|ironing (generic term)
+flatworm|1
+(noun)|platyhelminth|worm (generic term)
+flaubert|1
+(noun)|Flaubert|Gustave Flaubert|writer (generic term)|author (generic term)
+flaunt|2
+(noun)|display (generic term)
+(verb)|flash|show off|ostentate|swank|expose (generic term)|exhibit (generic term)|display (generic term)
+flaunty|1
+(adj)|ostentatious (similar term)|pretentious (similar term)
+flautist|1
+(noun)|flutist|flute player|musician (generic term)|instrumentalist (generic term)|player (generic term)
+flavian dynasty|1
+(noun)|Flavian dynasty|dynasty (generic term)
+flavin|1
+(noun)|ketone (generic term)
+flavius claudius julianus|1
+(noun)|Julian|Julian the Apostate|Flavius Claudius Julianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+flavius josephus|1
+(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general (generic term)|full general (generic term)|historian (generic term)|historiographer (generic term)|Pharisee (generic term)
+flavius theodosius|1
+(noun)|Theodosius|Theodosius I|Theodosius the Great|Flavius Theodosius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+flavius valerius constantinus|1
+(noun)|Constantine|Constantine I|Constantine the Great|Flavius Valerius Constantinus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+flaviviridae|1
+(noun)|Flaviviridae|arbovirus (generic term)|arborvirus (generic term)
+flavivirus|1
+(noun)|animal virus (generic term)
+flavor|4
+(noun)|spirit|tone|feel|feeling|flavour|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|relish|flavour|sapidity|savor|savour|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|flavour|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(verb)|season|flavour
+flavorer|1
+(noun)|flavourer|flavoring|flavouring|seasoner|seasoning|ingredient (generic term)|fixings (generic term)
+flavorful|1
+(adj)|flavourful|flavorous|flavourous|flavorsome|flavoursome|sapid|saporous|tasty (similar term)
+flavoring|1
+(noun)|flavorer|flavourer|flavouring|seasoner|seasoning|ingredient (generic term)|fixings (generic term)
+flavorless|1
+(adj)|bland|flat|flavourless|insipid|savorless|savourless|vapid|tasteless (similar term)
+flavorlessness|1
+(noun)|flavourlessness|savorlessness|savourlessness|tastelessness|unappetizingness (generic term)|unappetisingness (generic term)
+flavorous|1
+(adj)|flavorful|flavourful|flavourous|flavorsome|flavoursome|sapid|saporous|tasty (similar term)
+flavorsome|1
+(adj)|flavorful|flavourful|flavorous|flavourous|flavoursome|sapid|saporous|tasty (similar term)
+flavorsomeness|1
+(noun)|flavoursomeness|savoriness|appetizingness (generic term)|appetisingness (generic term)
+flavour|4
+(noun)|spirit|tone|feel|feeling|flavor|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|flavor|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|relish|flavor|sapidity|savor|savour|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(verb)|season|flavor
+flavourer|1
+(noun)|flavorer|flavoring|flavouring|seasoner|seasoning|ingredient (generic term)|fixings (generic term)
+flavourful|1
+(adj)|flavorful|flavorous|flavourous|flavorsome|flavoursome|sapid|saporous|tasty (similar term)
+flavouring|1
+(noun)|flavorer|flavourer|flavoring|seasoner|seasoning|ingredient (generic term)|fixings (generic term)
+flavourless|1
+(adj)|bland|flat|flavorless|insipid|savorless|savourless|vapid|tasteless (similar term)
+flavourlessness|1
+(noun)|flavorlessness|savorlessness|savourlessness|tastelessness|unappetizingness (generic term)|unappetisingness (generic term)
+flavourous|1
+(adj)|flavorful|flavourful|flavorous|flavorsome|flavoursome|sapid|saporous|tasty (similar term)
+flavoursome|1
+(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|sapid|saporous|tasty (similar term)
+flavoursomeness|1
+(noun)|flavorsomeness|savoriness|appetizingness (generic term)|appetisingness (generic term)
+flaw|3
+(noun)|defect|fault|imperfection (generic term)|imperfectness (generic term)
+(noun)|failing (generic term)|weakness (generic term)
+(verb)|blemish|damage (generic term)
+flawed|1
+(adj)|blemished|imperfect (similar term)
+flawless|1
+(adj)|unflawed|perfect (similar term)
+flawlessly|1
+(adv)|cleanly
+flawlessness|1
+(noun)|perfection|ne plus ultra|state (generic term)|imperfection (antonym)
+flax|2
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+flax family|1
+(noun)|Linaceae|family Linaceae|dicot family (generic term)|magnoliopsid family (generic term)
+flax rust|1
+(noun)|flax rust fungus|Melampsora lini|rust (generic term)|rust fungus (generic term)
+flax rust fungus|1
+(noun)|flax rust|Melampsora lini|rust (generic term)|rust fungus (generic term)
+flaxedil|1
+(noun)|gallamine|Flaxedil|neuromuscular blocking agent (generic term)|muscle relaxant (generic term)
+flaxen|1
+(adj)|sandy|blond (similar term)|blonde (similar term)|light-haired (similar term)
+flaxseed|1
+(noun)|linseed|oilseed (generic term)|oil-rich seed (generic term)
+flaxseed oil|1
+(noun)|linseed oil|oil (generic term)
+flay|1
+(verb)|skin (generic term)|peel (generic term)|pare (generic term)
+flea|1
+(noun)|insect (generic term)|ectoparasite (generic term)|ectozoan (generic term)|ectozoon (generic term)|epizoan (generic term)|epizoon (generic term)
+flea-bitten|1
+(adj)|creaky|decrepit|derelict|run-down|woebegone|worn (similar term)
+flea beetle|1
+(noun)|leaf beetle (generic term)|chrysomelid (generic term)
+flea bite|2
+(noun)|sting (generic term)|bite (generic term)|insect bite (generic term)
+(noun)|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+flea market|1
+(noun)|marketplace (generic term)|mart (generic term)
+fleabag|1
+(noun)|hotel (generic term)
+fleabane|3
+(noun)|feabane mullet|Pulicaria dysenterica|herb (generic term)|herbaceous plant (generic term)
+(noun)|wildflower (generic term)|wild flower (generic term)
+(noun)|horseweed|Canadian fleabane|Conyza canadensis|Erigeron canadensis|weed (generic term)
+fleapit|1
+(noun)|cinema (generic term)|movie theater (generic term)|movie theatre (generic term)|movie house (generic term)|picture palace (generic term)
+fleawort|1
+(noun)|psyllium|Spanish psyllium|Plantago psyllium|plantain (generic term)
+flecainide|1
+(noun)|Tambocor|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+fleck|3
+(noun)|bit|chip|flake|scrap|fragment (generic term)
+(noun)|spot|speckle|dapple|patch|maculation|marking (generic term)
+(verb)|spot|blob|blot|change surface (generic term)
+flecked|1
+(adj)|dotted|specked|speckled|stippled|patterned (similar term)
+flection|2
+(noun)|flexure|flexion|physiological state (generic term)|physiological condition (generic term)
+(noun)|inflection|flexion|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+fledge|3
+(verb)|rear (generic term)|raise (generic term)|bring up (generic term)|nurture (generic term)|parent (generic term)
+(verb)|flight|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|feather|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+fledged|2
+(adj)|mature|fledgling (similar term)|fledgeling (similar term)|full-fledged (similar term)|fully fledged (similar term)|unfledged (antonym)
+(adj)|vaned|feathered (similar term)
+fledgeless|1
+(adj)|unfledged|unvaned|unfeathered (similar term)|featherless (similar term)
+fledgeling|3
+(adj)|fledgling|fledged (similar term)|mature (similar term)
+(noun)|newcomer|fledgling|starter|neophyte|freshman|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|fledgling|young bird (generic term)
+fledgling|4
+(adj)|fledgeling|fledged (similar term)|mature (similar term)
+(adj)|unfledged|callow|inexperienced (similar term)|inexperient (similar term)
+(noun)|newcomer|fledgeling|starter|neophyte|freshman|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|fledgeling|young bird (generic term)
+flee|1
+(verb)|fly|take flight|scat (generic term)|run (generic term)|scarper (generic term)|turn tail (generic term)|lam (generic term)|run away (generic term)|hightail it (generic term)|bunk (generic term)|head for the hills (generic term)|take to the woods (generic term)|escape (generic term)|fly the coop (generic term)|break away (generic term)
+fleece|6
+(noun)|wool (generic term)
+(noun)|sheepskin|leather (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|wool|coat (generic term)|pelage (generic term)
+(verb)|overcharge|soak|surcharge|gazump|plume|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|shear|shave (generic term)|trim (generic term)
+fleeceable|1
+(adj)|green|gullible|naive (similar term)|naif (similar term)
+fleecy|1
+(adj)|brushed|napped|soft (similar term)
+fleer|3
+(noun)|fugitive|runaway|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|contempt (generic term)|scorn (generic term)
+(verb)|smirk (generic term)|simper (generic term)
+fleet|5
+(adj)|swift|fast (similar term)
+(noun)|steamship company (generic term)|steamship line (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|flit|flutter|dart|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+(verb)|evanesce|fade|blow over|pass off|pass|disappear (generic term)|vanish (generic term)|go away (generic term)
+fleet admiral|1
+(noun)|five-star admiral|flag officer (generic term)
+fleet ballistic missile submarine|1
+(noun)|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+fleet street|2
+(noun)|Fleet Street|street (generic term)
+(noun)|Fleet Street|journalism (generic term)|news media (generic term)|fourth estate (generic term)
+fleeting|1
+(adj)|fugitive|momentaneous|momentary|short (similar term)
+fleetingness|1
+(noun)|ephemerality|ephemeralness|transience (generic term)|transiency (generic term)|transitoriness (generic term)
+fleetly|1
+(adv)|swiftly
+fleetness|1
+(noun)|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+fleming|3
+(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer (generic term)|author (generic term)
+(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist (generic term)
+(noun)|Fleming|Belgian (generic term)
+flemish|3
+(adj)|Flemish|European country|European nation (related term)
+(noun)|Flemish|ethnic group (generic term)|ethnos (generic term)
+(noun)|Flemish|Flemish dialect|Dutch (generic term)
+flemish-speaking|1
+(adj)|Flemish-speaking|communicative (similar term)|communicatory (similar term)
+flemish dialect|1
+(noun)|Flemish|Flemish dialect|Dutch (generic term)
+flense|1
+(verb)|get rid of (generic term)|remove (generic term)
+flesh|4
+(noun)|animal tissue (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|pulp|plant tissue (generic term)
+(verb)|get rid of (generic term)|remove (generic term)
+flesh-colored|1
+(adj)|flesh-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+flesh-coloured|1
+(adj)|flesh-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+flesh-eating|1
+(adj)|meat-eating|zoophagous|carnivorous (similar term)
+flesh fly|1
+(noun)|Sarcophaga carnaria|fly (generic term)
+flesh out|3
+(verb)|fatten|fat|fill out|plump|plump out|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|elaborate|lucubrate|expatiate|exposit|enlarge|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+(verb)|round|fill out|gain (generic term)|put on (generic term)
+flesh wound|1
+(noun)|wound (generic term)|injury (generic term)|combat injury (generic term)
+fleshed out|1
+(adj)|full-clad|complete (similar term)
+fleshiness|1
+(noun)|obesity|corpulency|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+fleshly|1
+(adj)|animal|carnal|sensual|physical (similar term)
+fleshy|2
+(adj)|heavy|overweight|fat (similar term)
+(adj)|sarcoid|animal tissue (related term)
+fletc|1
+(noun)|Federal Law Enforcement Training Center|FLETC|law enforcement agency (generic term)
+fletcher|1
+(noun)|Fletcher|John Fletcher|dramatist (generic term)|playwright (generic term)
+fleur-de-lis|2
+(noun)|iris|flag|sword lily|iridaceous plant (generic term)
+(noun)|fleur-de-lys|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+fleur-de-lys|1
+(noun)|fleur-de-lis|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+flex|6
+(noun)|flexion (generic term)|flexure (generic term)
+(verb)|shrink (generic term)|contract (generic term)
+(verb)|flaunt (generic term)|flash (generic term)|show off (generic term)|ostentate (generic term)|swank (generic term)
+(verb)|bend|change shape (generic term)|change form (generic term)|deform (generic term)|straighten (antonym)
+(verb)|bend|move (generic term)
+(verb)|bend|deform|twist|turn|change shape (generic term)|change form (generic term)|deform (generic term)|unbend (antonym)
+flexeril|1
+(noun)|cyclobenzaprine|Flexeril|muscle relaxant (generic term)
+flexibility|3
+(noun)|flexibleness|malleability (generic term)|plasticity (generic term)|inflexibility (antonym)
+(noun)|flexibleness|adaptability (generic term)|inflexibility (antonym)
+(noun)|tractability|tractableness|trait (generic term)|intractability (antonym)
+flexible|5
+(adj)|limber (similar term)|supple (similar term)|negotiable (similar term)|on the table (similar term)|inflexible (antonym)
+(adj)|flexile|bendable (similar term)|pliable (similar term)|pliant (similar term)|double-jointed (similar term)|limber (similar term)|supple (similar term)|limber (similar term)|spinnable (similar term)|spinnbar (similar term)|stretched (similar term)|elastic (related term)|inflexible (antonym)
+(adj)|elastic|pliable|pliant|adaptable (similar term)
+(adj)|whippy|elastic (similar term)
+(adj)|compromising|conciliatory|yielding (similar term)|uncompromising (antonym)
+flexible joint|1
+(noun)|hinge|joint (generic term)
+flexible sigmoidoscope|1
+(noun)|sigmoidoscope|endoscope (generic term)
+flexible sigmoidoscopy|1
+(noun)|sigmoidoscopy|endoscopy (generic term)
+flexibleness|2
+(noun)|flexibility|malleability (generic term)|plasticity (generic term)|inflexibility (antonym)
+(noun)|flexibility|adaptability (generic term)|inflexibility (antonym)
+flexibly|1
+(adv)|inflexibly (antonym)
+flexile|1
+(adj)|flexible|bendable (similar term)|pliable (similar term)|pliant (similar term)|double-jointed (similar term)|limber (similar term)|supple (similar term)|limber (similar term)|spinnable (similar term)|spinnbar (similar term)|stretched (similar term)|elastic (related term)|inflexible (antonym)
+flexion|3
+(noun)|flexure|flection|physiological state (generic term)|physiological condition (generic term)
+(noun)|inflection|flection|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+(noun)|flexure|bending (generic term)|extension (antonym)
+flexor|1
+(noun)|flexor muscle|skeletal muscle (generic term)|striated muscle (generic term)|extensor (antonym)
+flexor muscle|1
+(noun)|flexor|skeletal muscle (generic term)|striated muscle (generic term)|extensor (antonym)
+flexuous|1
+(adj)|curved (similar term)|curving (similar term)
+flexure|3
+(noun)|flection|flexion|physiological state (generic term)|physiological condition (generic term)
+(noun)|fold|crease|plication|crimp|bend|angular shape (generic term)|angularity (generic term)
+(noun)|flexion|bending (generic term)|extension (antonym)
+flibbertigibbet|1
+(noun)|foolish woman|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+flick|11
+(noun)|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|show (generic term)
+(verb)|flicker|flash (generic term)|blink (generic term)|wink (generic term)|twinkle (generic term)|winkle (generic term)
+(verb)|flip|thumb|riffle|leaf|riff|peruse (generic term)
+(verb)|flip|throw (generic term)
+(verb)|jerk|push (generic term)|force (generic term)
+(verb)|flicker|shine (generic term)|beam (generic term)
+(verb)|ruffle|riffle|move (generic term)|displace (generic term)
+(verb)|snap|click|move (generic term)
+(verb)|brush (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+flick-knife|1
+(noun)|knife (generic term)
+flick knife|1
+(noun)|switchblade|switchblade knife|pocketknife (generic term)|pocket knife (generic term)
+flicker|6
+(noun)|spark|glint|flash (generic term)
+(noun)|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+(noun)|waver|flutter|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|waver|flitter|flutter|quiver|move back and forth (generic term)
+(verb)|flick|shine (generic term)|beam (generic term)
+(verb)|flick|flash (generic term)|blink (generic term)|wink (generic term)|twinkle (generic term)|winkle (generic term)
+flickering|1
+(adj)|aflicker|unsteady (similar term)
+flickertail|1
+(noun)|Richardson ground squirrel|Citellus richardsoni|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+flier|3
+(noun)|flyer|traveler (generic term)|traveller (generic term)
+(noun)|aviator|aeronaut|airman|flyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|circular|handbill|bill|broadside|broadsheet|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+flies|1
+(noun)|space (generic term)
+flight|12
+(noun)|formation (generic term)
+(noun)|flying|air travel (generic term)|aviation (generic term)|air (generic term)
+(noun)|flight of stairs|flight of steps|stairway (generic term)|staircase (generic term)
+(noun)|escape|running away (generic term)
+(noun)|air unit (generic term)
+(noun)|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|trajectory|mechanical phenomenon (generic term)
+(noun)|flock (generic term)
+(noun)|trip (generic term)
+(verb)|shoot (generic term)|pip (generic term)
+(verb)|fly (generic term)|wing (generic term)
+(verb)|fledge|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+flight attendant|1
+(noun)|steward|attendant (generic term)|attender (generic term)|tender (generic term)
+flight control|1
+(noun)|control (generic term)
+flight deck|1
+(noun)|landing deck|deck (generic term)
+flight engineer|1
+(noun)|aircrewman (generic term)
+flight feather|1
+(noun)|pinion|quill|quill feather|feather (generic term)|plume (generic term)|plumage (generic term)
+flight indicator|1
+(noun)|artificial horizon|gyro horizon|navigational instrument (generic term)
+flight line|1
+(noun)|line (generic term)
+flight maneuver|1
+(noun)|airplane maneuver|maneuver (generic term)|manoeuvre (generic term)|evasive action (generic term)
+flight of stairs|1
+(noun)|flight|flight of steps|stairway (generic term)|staircase (generic term)
+flight of steps|1
+(noun)|flight|flight of stairs|stairway (generic term)|staircase (generic term)
+flight path|2
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|air lane|airway|skyway|path (generic term)|route (generic term)|itinerary (generic term)
+flight simulator|1
+(noun)|trainer|simulator (generic term)
+flight strip|1
+(noun)|airstrip|landing strip|strip|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+flight surgeon|1
+(noun)|medical officer (generic term)|medic (generic term)
+flighted|1
+(adj)|feathered (similar term)
+flightiness|1
+(noun)|arbitrariness|whimsicality|whimsy|whimsey|capriciousness|irresponsibility (generic term)|irresponsibleness (generic term)
+flightless|1
+(adj)|wingless (similar term)
+flightless bird|1
+(noun)|ratite|ratite bird|bird (generic term)|carinate (antonym)
+flighty|2
+(adj)|flyaway|head-in-the-clouds|scatterbrained|frivolous (similar term)
+(adj)|skittish|spooky|nervous|excitable (similar term)
+flim-flam|1
+(verb)|trick|fob|fox|pull a fast one on|play a trick on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+flimflam|1
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|sting|swindle (generic term)|cheat (generic term)|rig (generic term)
+flimsiness|1
+(noun)|shoddiness|weakness (generic term)
+flimsy|5
+(adj)|fragile|weak (similar term)
+(adj)|slight|tenuous|thin|weak (similar term)
+(adj)|light|thin (similar term)
+(adj)|inferior (similar term)
+(noun)|onionskin|typewriter paper (generic term)|typing paper (generic term)
+flinch|2
+(noun)|wince|startle (generic term)|jump (generic term)|start (generic term)
+(verb)|squinch|funk|cringe|shrink|wince|recoil|quail|move (generic term)
+flinders|2
+(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer (generic term)|adventurer (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+flindersia|1
+(noun)|Flindersia|genus Flindersia|rosid dicot genus (generic term)
+flindersia australis|1
+(noun)|native beech|flindosa|flindosy|Flindersia australis|silver ash (generic term)
+flindersia schottiana|1
+(noun)|bunji-bunji|Flindersia schottiana|silver ash (generic term)
+flindosa|1
+(noun)|native beech|flindosy|Flindersia australis|silver ash (generic term)
+flindosy|1
+(noun)|native beech|flindosa|Flindersia australis|silver ash (generic term)
+fling|7
+(noun)|crack|go|pass|whirl|offer|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|spree|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+(noun)|throw (generic term)
+(verb)|throw (generic term)
+(verb)|move (generic term)
+(verb)|splurge|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(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 (generic term)|remove (generic term)
+fling off|1
+(verb)|dash off|scratch off|knock off|toss off|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+flint|3
+(noun)|silica (generic term)|silicon oxide (generic term)|silicon dioxide (generic term)
+(noun)|Flint|Flint River|river (generic term)
+(noun)|Flint|city (generic term)|metropolis (generic term)|urban center (generic term)
+flint corn|1
+(noun)|flint maize|Yankee corn|Zea mays indurata|field corn (generic term)
+flint glass|1
+(noun)|optical flint|optical glass (generic term)
+flint maize|1
+(noun)|flint corn|Yankee corn|Zea mays indurata|field corn (generic term)
+flint river|1
+(noun)|Flint|Flint River|river (generic term)
+flinthead|1
+(noun)|wood ibis|wood stork|Mycteria americana|stork (generic term)
+flintlock|2
+(noun)|firelock|muzzle loader (generic term)
+(noun)|gunlock (generic term)|firing mechanism (generic term)
+flintstone|1
+(noun)|flint (generic term)
+flinty|2
+(adj)|silica|silicon oxide|silicon dioxide (related term)
+(adj)|granitic|obdurate|stony|hardhearted (similar term)|heartless (similar term)
+flip|16
+(adj)|impudent|insolent|snotty-nosed|disrespectful (similar term)
+(noun)|somersault|somerset|summersault|summerset|somersaulting|tumble (generic term)
+(noun)|mixed drink (generic term)
+(noun)|toss|throw (generic term)
+(noun)|dive (generic term)|diving (generic term)
+(noun)|pass|toss|throw (generic term)
+(verb)|toss|turn (generic term)
+(verb)|throw|switch|engage (generic term)|mesh (generic term)|lock (generic term)|operate (generic term)
+(verb)|flick|thumb|riffle|leaf|riff|peruse (generic term)
+(verb)|twitch|move (generic term)
+(verb)|flick|throw (generic term)
+(verb)|toss|sky|pitch|fling (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|flip over|turn over|turn (generic term)
+(verb)|flip out|change (generic term)
+(verb)|interchange|tack|switch|alternate|flip-flop|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+flip-flop|5
+(noun)|reversal|change of mind|turnabout|turnaround|decision making (generic term)|deciding (generic term)
+(noun)|thong|sandal (generic term)
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(noun)|somersault (generic term)|somerset (generic term)|summersault (generic term)|summerset (generic term)|somersaulting (generic term)|flip (generic term)
+(verb)|interchange|tack|switch|alternate|flip|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+flip chart|1
+(noun)|chart (generic term)
+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 (generic term)
+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 (generic term)
+flip out|1
+(verb)|flip|change (generic term)
+flip over|1
+(verb)|flip|turn over|turn (generic term)
+flip side|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+flippancy|1
+(noun)|light-mindedness|levity (generic term)
+flippant|1
+(adj)|light-minded|frivolous (similar term)
+flippantly|1
+(adv)|airily
+flipper|2
+(noun)|fin|shoe (generic term)
+(noun)|limb (generic term)
+flipper-like|1
+(adj)|limbed (similar term)
+flirt|4
+(noun)|coquette|vamp|vamper|minx|tease|prickteaser|woman (generic term)|adult female (generic term)
+(noun)|flirting|flirtation|coquetry|dalliance|toying|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+(verb)|chat up|dally|butterfly|coquet|coquette|romance|philander|mash|talk (generic term)|speak (generic term)
+(verb)|dally|toy|play|act (generic term)|move (generic term)
+flirt with|1
+(verb)|entertain|think of|toy with|think about|contemplate (generic term)
+flirtation|1
+(noun)|flirt|flirting|coquetry|dalliance|toying|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+flirtatious|1
+(adj)|coquettish|sexy (similar term)
+flirtatiously|1
+(adv)|coquettishly
+flirting|1
+(noun)|flirt|flirtation|coquetry|dalliance|toying|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+flit|3
+(noun)|dart|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|move (generic term)|relocation (generic term)
+(verb)|flutter|fleet|dart|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+flitch|2
+(noun)|fish steak (generic term)
+(noun)|side of bacon|bacon (generic term)
+flitter|1
+(verb)|flicker|waver|flutter|quiver|move back and forth (generic term)
+flittering scotoma|1
+(noun)|scintillating scotoma|scotoma (generic term)
+flnc|1
+(noun)|National Liberation Front of Corsica|FLNC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+flo ziegfeld|1
+(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer (generic term)
+float|15
+(noun)|time interval (generic term)|interval (generic term)
+(noun)|stock (generic term)
+(noun)|ice-cream soda|ice-cream float|drink (generic term)
+(noun)|display (generic term)|presentation (generic term)
+(noun)|plasterer's float|hand tool (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(verb)|drift|be adrift|blow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|swim|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|sink (antonym)
+(verb)|transport (generic term)
+(verb)|test (generic term)|prove (generic term)|try (generic term)|try out (generic term)|examine (generic term)|essay (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|launch (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+(verb)|value (generic term)
+(verb)|convert (generic term)|change over (generic term)
+floatation|2
+(noun)|flotation|physical phenomenon (generic term)
+(noun)|flotation|finance (generic term)
+floater|8
+(noun)|musca volitans|muscae volitantes|spots|symptom (generic term)
+(noun)|debt instrument (generic term)|certificate of indebtedness (generic term)
+(noun)|vagrant|drifter|vagabond|wanderer (generic term)|roamer (generic term)|rover (generic term)|bird of passage (generic term)|poor person (generic term)|have-not (generic term)
+(noun)|employee (generic term)
+(noun)|voter (generic term)|elector (generic term)
+(noun)|swimmer (generic term)|natator (generic term)|bather (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|floating policy|policy (generic term)|insurance policy (generic term)|insurance (generic term)
+floating|6
+(adj)|aimless|drifting|vagabond|vagrant|unsettled (similar term)
+(adj)|mobile (similar term)
+(adj)|unfixed (similar term)
+(adj)|uncommitted (similar term)
+(adj)|afloat (similar term)
+(noun)|natation|swimming (generic term)|swim (generic term)
+floating-moss|1
+(noun)|Salvinia rotundifolia|Salvinia auriculata|aquatic fern (generic term)|water fern (generic term)
+floating-point notation|1
+(noun)|floating-point representation system|mathematical notation (generic term)
+floating-point number|1
+(noun)|number (generic term)
+floating-point operation|1
+(noun)|flop|computer operation (generic term)|machine operation (generic term)
+floating-point representation system|1
+(noun)|floating-point notation|mathematical notation (generic term)
+floating bridge|1
+(noun)|pontoon bridge|bateau bridge|bridge (generic term)|span (generic term)
+floating dock|1
+(noun)|floating dry dock|dry dock (generic term)|drydock (generic term)|graving dock (generic term)
+floating dry dock|1
+(noun)|floating dock|dry dock (generic term)|drydock (generic term)|graving dock (generic term)
+floating fern|3
+(noun)|Ceratopteris thalictroides|aquatic fern (generic term)|water fern (generic term)
+(noun)|water sprite|Ceratopteris pteridioides|aquatic fern (generic term)|water fern (generic term)
+(noun)|mosquito fern|Carolina pond fern|Azolla caroliniana|aquatic fern (generic term)|water fern (generic term)
+floating mine|1
+(noun)|marine mine|mine (generic term)
+floating policy|1
+(noun)|floater|policy (generic term)|insurance policy (generic term)|insurance (generic term)
+floating voter|1
+(noun)|swing voter|voter (generic term)|elector (generic term)
+floatplane|1
+(noun)|pontoon plane|seaplane (generic term)|hydroplane (generic term)
+floaty|1
+(adj)|buoyant|light (similar term)
+floc|1
+(noun)|floccule|material (generic term)|stuff (generic term)
+floccose|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+floccose chanterelle|1
+(noun)|Cantharellus floccosus|agaric (generic term)
+flocculate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+flocculation|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+floccule|1
+(noun)|floc|material (generic term)|stuff (generic term)
+flocculent|1
+(adj)|woolly|wooly|soft (similar term)
+flock|7
+(noun)|congregation (generic term)|fold (generic term)|faithful (generic term)
+(noun)|animal group (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|troop|crowd (generic term)
+(noun)|fold|animal group (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|cluster|constellate|clump|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+flodden|2
+(noun)|Flodden|hill (generic term)
+(noun)|Flodden|Battle of Flodden Field|pitched battle (generic term)
+floe|1
+(noun)|ice floe|ice mass (generic term)
+flog|2
+(verb)|welt|whip|lather|lash|slash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|cane|lambaste|lambast|beat (generic term)|beat up (generic term)|work over (generic term)
+flogger|1
+(noun)|scourger|torturer (generic term)
+flogging|1
+(noun)|whipping|tanning|lashing|flagellation|beating (generic term)|thrashing (generic term)|licking (generic term)|drubbing (generic term)|lacing (generic term)|trouncing (generic term)|whacking (generic term)
+flood|10
+(noun)|inundation|deluge|alluvion|geological phenomenon (generic term)
+(noun)|inundation|deluge|torrent|batch (generic term)|deal (generic term)|flock (generic term)|good deal (generic term)|great deal (generic term)|hatful (generic term)|heap (generic term)|lot (generic term)|mass (generic term)|mess (generic term)|mickle (generic term)|mint (generic term)|muckle (generic term)|peck (generic term)|pile (generic term)|plenty (generic term)|pot (generic term)|quite a little (generic term)|raft (generic term)|sight (generic term)|slew (generic term)|spate (generic term)|stack (generic term)|tidy sum (generic term)|wad (generic term)|whole lot (generic term)|whole slew (generic term)
+(noun)|floodlight|flood lamp|photoflood|light (generic term)|light source (generic term)
+(noun)|overflow|outpouring|flow (generic term)|stream (generic term)
+(noun)|flowage|filling (generic term)
+(noun)|flood tide|rising tide|tide (generic term)|ebbtide (antonym)
+(verb)|deluge|inundate|swamp|fill (generic term)|fill up (generic term)|make full (generic term)|flood in (related term)
+(verb)|cover (generic term)|spread over (generic term)|flood out (related term)
+(verb)|oversupply|glut|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|fill (generic term)|fill up (generic term)
+flood control|1
+(noun)|control (generic term)
+flood in|1
+(verb)|arrive (generic term)|get (generic term)|come (generic term)
+flood lamp|1
+(noun)|flood|floodlight|photoflood|light (generic term)|light source (generic term)
+flood out|1
+(verb)|overwhelm|deluge|charge (generic term)|saddle (generic term)|burden (generic term)
+flood plain|1
+(noun)|floodplain|plain (generic term)|field (generic term)|champaign (generic term)
+flood tide|2
+(noun)|climax|juncture (generic term)|occasion (generic term)
+(noun)|flood|rising tide|tide (generic term)|ebbtide (antonym)
+flooded|1
+(adj)|afloat|awash|inundated|overflowing|full (similar term)
+flooded gum|1
+(noun)|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+floodgate|2
+(noun)|restraint (generic term)
+(noun)|sluicegate|sluice valve|penstock|head gate|water gate|regulator (generic term)
+floodhead|1
+(noun)|flash flood (generic term)|flashflood (generic term)
+flooding|2
+(adj)|in flood|overflowing|swollen|high (similar term)
+(noun)|implosion therapy|behavior therapy (generic term)|behavior modification (generic term)
+floodlight|2
+(noun)|flood|flood lamp|photoflood|light (generic term)|light source (generic term)
+(verb)|light (generic term)|illume (generic term)|illumine (generic term)|light up (generic term)|illuminate (generic term)
+floodlighted|1
+(adj)|floodlit|light (similar term)
+floodlit|1
+(adj)|floodlighted|light (similar term)
+floodplain|1
+(noun)|flood plain|plain (generic term)|field (generic term)|champaign (generic term)
+floor|11
+(noun)|flooring|horizontal surface (generic term)|level (generic term)
+(noun)|level|storey|story|structure (generic term)|construction (generic term)
+(noun)|base|control (generic term)
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|surface (generic term)|Earth's surface (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|right (generic term)
+(noun)|hall (generic term)
+(noun)|trading floor|room (generic term)
+(verb)|shock|stun|ball over|blow out of the water|take aback|surprise (generic term)
+(verb)|deck|coldcock|dump|knock down|beat (generic term)
+floor board|1
+(noun)|floorboard|board (generic term)
+floor cover|1
+(noun)|floor covering|covering (generic term)
+floor covering|1
+(noun)|floor cover|covering (generic term)
+floor joist|1
+(noun)|joist (generic term)
+floor lamp|1
+(noun)|lamp (generic term)
+floor leader|1
+(noun)|legislator (generic term)
+floor plan|1
+(noun)|plan (generic term)|architectural plan (generic term)
+floor show|1
+(noun)|cabaret|floorshow|show (generic term)
+floor wax|1
+(noun)|wax (generic term)
+floorboard|2
+(noun)|floor board|board (generic term)
+(noun)|floor (generic term)|flooring (generic term)
+floored|1
+(adj)|ceilinged (antonym)
+flooring|2
+(noun)|floor|horizontal surface (generic term)|level (generic term)
+(noun)|building material (generic term)
+floorshow|1
+(noun)|cabaret|floor show|show (generic term)
+floorwalker|1
+(noun)|shopwalker|employee (generic term)
+floozie|1
+(noun)|streetwalker|street girl|hooker|hustler|floozy|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+floozy|1
+(noun)|streetwalker|street girl|hooker|hustler|floozie|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+flop|8
+(noun)|floating-point operation|computer operation (generic term)|machine operation (generic term)
+(noun)|dud|washout|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+(noun)|bust|fizzle|failure (generic term)
+(noun)|collapse|descent (generic term)
+(verb)|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|fall through|fall flat|founder|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(adv)|right
+flophouse|1
+(noun)|dosshouse|lodging house (generic term)|rooming house (generic term)
+floppy|2
+(adj)|lax (similar term)
+(noun)|diskette|floppy disk|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+floppy disk|1
+(noun)|diskette|floppy|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+flora|2
+(noun)|vegetation|botany|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|fauna (antonym)
+(noun)|plant|plant life|organism (generic term)|being (generic term)
+floral|3
+(adj)|flowered|patterned (similar term)
+(adj)|angiosperm|flowering plant (related term)
+(adj)|collection|aggregation|accumulation|assemblage (related term)
+floral cup|1
+(noun)|hypanthium|calyx tube|plant organ (generic term)
+floral envelope|1
+(noun)|perianth|chlamys|perigone|perigonium|plant organ (generic term)|covering (generic term)|natural covering (generic term)|cover (generic term)
+floral leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+floreal|1
+(noun)|Floreal|Revolutionary calendar month (generic term)
+florence|2
+(noun)|Firenze|Florence|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Florence|town (generic term)
+florence fennel|2
+(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel (generic term)
+(noun)|fennel|Florence fennel|finocchio|vegetable (generic term)|veggie (generic term)
+florence nightingale|1
+(noun)|Nightingale|Florence Nightingale|Lady with the Lamp|nurse (generic term)
+florentine|2
+(adj)|Florentine|city|metropolis|urban center (related term)
+(noun)|Florentine|Italian (generic term)
+florentine iris|1
+(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris (generic term)
+florenz ziegfeld|1
+(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer (generic term)
+florescence|1
+(noun)|blossoming|flowering|inflorescence|anthesis|efflorescence|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+florest's cineraria|1
+(noun)|Pericallis hybrida|flower (generic term)
+floret|1
+(noun)|floweret|flower (generic term)|bloom (generic term)|blossom (generic term)
+florey|1
+(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician (generic term)|pathologist (generic term)
+floricultural|1
+(adj)|gardening|horticulture (related term)
+floriculture|1
+(noun)|flower gardening|gardening (generic term)|horticulture (generic term)
+florid|2
+(adj)|aureate|flamboyant|fancy (similar term)
+(adj)|rubicund|ruddy|sanguine|healthy (similar term)
+florida|1
+(noun)|Florida|Sunshine State|Everglade State|FL|American state (generic term)
+florida arrowroot|1
+(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia (generic term)
+florida bean|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+florida gallinule|1
+(noun)|Florida gallinule|Gallinula chloropus cachinnans|gallinule (generic term)|marsh hen (generic term)|water hen (generic term)|swamphen (generic term)
+florida key|1
+(noun)|key|cay|Florida key|coral reef (generic term)
+florida pompano|1
+(noun)|Florida pompano|Trachinotus carolinus|pompano (generic term)
+florida selaginella|1
+(noun)|Selaginella eatonii|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+florida smoothhound|1
+(noun)|Florida smoothhound|Mustelus norrisi|smooth dogfish (generic term)
+florida strangler fig|1
+(noun)|golden fig|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree (generic term)
+florida strap fern|1
+(noun)|Florida strap fern|cow-tongue fern|hart's-tongue fern|strap fern (generic term)
+florida water rat|1
+(noun)|round-tailed muskrat|Florida water rat|Neofiber alleni|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+florida yew|1
+(noun)|Florida yew|Taxus floridana|yew (generic term)
+floridian|1
+(noun)|Floridian|American (generic term)
+floridity|1
+(noun)|flamboyance|floridness|showiness|ornateness (generic term)|elaborateness (generic term)
+floridness|1
+(noun)|flamboyance|floridity|showiness|ornateness (generic term)|elaborateness (generic term)
+florilegium|1
+(noun)|garland|miscellany|anthology (generic term)
+florin|2
+(noun)|guilder|gulden|Surinamese monetary unit (generic term)
+(noun)|guilder|gulden|Dutch florin|Dutch monetary unit (generic term)
+florio|1
+(noun)|Florio|John Florio|lexicographer (generic term)|lexicologist (generic term)
+florist|2
+(noun)|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+(noun)|florist shop|flower store|shop (generic term)|store (generic term)
+florist's chrysanthemum|1
+(noun)|florists' chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum (generic term)
+florist's gloxinia|1
+(noun)|Sinningia speciosa|Gloxinia spesiosa|gloxinia (generic term)
+florist's willow|1
+(noun)|goat willow|pussy willow|Salix caprea|sallow (generic term)
+florist shop|1
+(noun)|florist|flower store|shop (generic term)|store (generic term)
+florists' chrysanthemum|1
+(noun)|florist's chrysanthemum|mum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum (generic term)
+flory|1
+(noun)|Flory|Paul John Flory|chemist (generic term)
+floss|3
+(noun)|thread (generic term)|yarn (generic term)
+(noun)|dental floss|thread (generic term)|yarn (generic term)
+(verb)|cleanse (generic term)|clean (generic term)
+flossy|1
+(adj)|downy|downlike|fluffy|soft (similar term)
+flotation|2
+(noun)|floatation|physical phenomenon (generic term)
+(noun)|floatation|finance (generic term)
+flotation device|1
+(noun)|life preserver|preserver|float (generic term)|rescue equipment (generic term)
+flotilla|1
+(noun)|fleet (generic term)
+flotsam|1
+(noun)|jetsam|wreckage (generic term)
+flounce|3
+(noun)|frill|ruffle|furbelow|adornment (generic term)
+(noun)|gait (generic term)
+(verb)|walk (generic term)
+flounder|3
+(noun)|flatfish (generic term)
+(verb)|stagger|walk (generic term)
+(verb)|fight (generic term)|struggle (generic term)
+flour|3
+(noun)|foodstuff (generic term)|food product (generic term)
+(verb)|dredge (generic term)
+(verb)|convert (generic term)|change over (generic term)
+flour beetle|1
+(noun)|flour weevil|darkling beetle (generic term)|darkling groung beetle (generic term)|tenebrionid (generic term)
+flour bin|1
+(noun)|bin (generic term)
+flour corn|1
+(noun)|soft corn|squaw corn|Zea mays amylacea|field corn (generic term)
+flour mill|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+flour weevil|1
+(noun)|flour beetle|darkling beetle (generic term)|darkling groung beetle (generic term)|tenebrionid (generic term)
+flourish|8
+(noun)|gesture (generic term)|motion (generic term)
+(noun)|embellishment (generic term)
+(noun)|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+(noun)|brandish|wave (generic term)|waving (generic term)|wafture (generic term)
+(noun)|fanfare|tucket|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(verb)|boom|prosper|thrive|get ahead|expand|grow (generic term)
+(verb)|thrive|prosper|fly high|change state (generic term)|turn (generic term)
+(verb)|brandish|wave|move (generic term)|displace (generic term)
+flourishing|2
+(adj)|growing|thriving|healthy (similar term)
+(adj)|booming|palmy|prospering|prosperous|roaring|thriving|successful (similar term)
+floury|1
+(adj)|fine (similar term)
+flout|2
+(verb)|scoff|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+(verb)|jeer|scoff|barrack|gibe|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+flouter|1
+(noun)|scoffer|mocker|jeerer|unpleasant person (generic term)|disagreeable person (generic term)
+flow|13
+(noun)|flowing|change of location (generic term)|travel (generic term)
+(noun)|flow rate|rate of flow|rate (generic term)
+(noun)|stream|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|stream|motion (generic term)
+(noun)|stream|current|course (generic term)|line (generic term)
+(noun)|menstruation|menses|menstruum|catamenia|period|discharge (generic term)|emission (generic term)|expelling (generic term)
+(verb)|flux|move (generic term)
+(verb)|run|feed|course|move (generic term)|flow from (related term)|run over (related term)
+(verb)|exist (generic term)|be (generic term)
+(verb)|hang|fall
+(verb)|flood (generic term)
+(verb)|menstruate|shed blood (generic term)|bleed (generic term)|hemorrhage (generic term)
+flow away|1
+(verb)|flow off|empty (generic term)|discharge (generic term)
+flow chart|1
+(noun)|flowchart|flow diagram|flow sheet|multidimensional language (generic term)
+flow diagram|1
+(noun)|flow chart|flowchart|flow sheet|multidimensional language (generic term)
+flow from|1
+(verb)|be due|result (generic term)|ensue (generic term)
+flow of air|1
+(noun)|airflow|air flow|flow (generic term)|flowing (generic term)
+flow off|1
+(verb)|flow away|empty (generic term)|discharge (generic term)
+flow out|1
+(verb)|effuse|emanate (generic term)
+flow rate|1
+(noun)|flow|rate of flow|rate (generic term)
+flow sheet|1
+(noun)|flow chart|flowchart|flow diagram|multidimensional language (generic term)
+flowage|3
+(noun)|flow (generic term)
+(noun)|body of water (generic term)|water (generic term)
+(noun)|flood|filling (generic term)
+flowchart|1
+(noun)|flow chart|flow diagram|flow sheet|multidimensional language (generic term)
+flower|4
+(noun)|angiosperm (generic term)|flowering plant (generic term)
+(noun)|bloom|blossom|reproductive structure (generic term)
+(noun)|prime|peak|heyday|bloom|blossom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|bloom|blossom|develop (generic term)
+flower-cup fern|1
+(noun)|Alpine woodsia|northern woodsia|Woodsia alpina|woodsia (generic term)
+flower-of-an-hour|1
+(noun)|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus (generic term)
+flower arrangement|1
+(noun)|arrangement (generic term)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+flower bed|1
+(noun)|flowerbed|bed of flowers|bed (generic term)
+flower bud|1
+(noun)|bud (generic term)
+flower chain|1
+(noun)|flower arrangement (generic term)
+flower child|1
+(noun)|hippie|hippy|hipster|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+flower cluster|1
+(noun)|inflorescence (generic term)
+flower garden|1
+(noun)|garden (generic term)
+flower gardening|1
+(noun)|floriculture|gardening (generic term)|horticulture (generic term)
+flower girl|2
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|female child (generic term)|girl (generic term)|little girl (generic term)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+flower head|1
+(noun)|inflorescence (generic term)
+flower people|1
+(noun)|hippies|hipsters|youth subculture (generic term)
+flower petal|1
+(noun)|petal|floral leaf (generic term)
+flower power|1
+(noun)|counterculture (generic term)
+flower stalk|1
+(noun)|scape|stalk (generic term)|stem (generic term)
+flower store|1
+(noun)|florist|florist shop|shop (generic term)|store (generic term)
+flowerbed|1
+(noun)|flower bed|bed of flowers|bed (generic term)
+flowered|1
+(adj)|floral|patterned (similar term)
+floweret|1
+(noun)|floret|flower (generic term)|bloom (generic term)|blossom (generic term)
+flowering|3
+(adj)|lilylike (similar term)|lily-like (similar term)|orchidlike (similar term)|orchid-like (similar term)|roselike (similar term)|rose-like (similar term)|flowerless (antonym)
+(noun)|blossoming|florescence|inflorescence|anthesis|efflorescence|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|unfolding|development (generic term)|evolution (generic term)
+flowering almond|2
+(noun)|Prunus triloba|almond tree (generic term)
+(noun)|oriental bush cherry|Prunus japonica|almond tree (generic term)
+flowering ash|3
+(noun)|manna ash|Fraxinus ornus|ash (generic term)|ash tree (generic term)
+(noun)|Fraxinus dipetala|ash (generic term)|ash tree (generic term)
+(noun)|Fraxinus cuspidata|ash (generic term)|ash tree (generic term)
+flowering cherry|1
+(noun)|cherry (generic term)|cherry tree (generic term)
+flowering crab|2
+(noun)|Bechtel crab|Iowa crab (generic term)|Iowa crab apple (generic term)|prairie crab (generic term)|western crab apple (generic term)|Malus ioensis (generic term)
+(noun)|Southern crab apple|Malus angustifolia|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+flowering fern|2
+(noun)|Helminthostachys zeylanica|fern (generic term)
+(noun)|osmund|fern (generic term)
+flowering glume|1
+(noun)|lemma|glume (generic term)
+flowering hazel|1
+(noun)|winter hazel|shrub (generic term)|bush (generic term)
+flowering onion|1
+(noun)|daffodil garlic|Naples garlic|Allium neopolitanum|alliaceous plant (generic term)
+flowering plant|1
+(noun)|angiosperm|spermatophyte (generic term)|phanerogam (generic term)|seed plant (generic term)
+flowering quince|1
+(noun)|shrub (generic term)|bush (generic term)
+flowering raspberry|1
+(noun)|purple-flowering raspberry|Rubus odoratus|thimbleberry|raspberry (generic term)|raspberry bush (generic term)
+flowering shrub|1
+(noun)|shrub (generic term)|bush (generic term)
+flowering spurge|1
+(noun)|wild spurge|tramp's spurge|Euphorbia corollata|spurge (generic term)
+flowering stone|1
+(noun)|lithops|living stone|stoneface|stone-face|stone plant|stone life face|succulent (generic term)
+flowering tobacco|1
+(noun)|Jasmine tobacco|Nicotiana alata|tobacco (generic term)|tobacco plant (generic term)
+flowering tree|1
+(noun)|angiospermous tree|tree (generic term)
+flowering wintergreen|1
+(noun)|gaywings|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort (generic term)
+flowerless|1
+(adj)|nonflowering|spore-bearing (similar term)|flowering (antonym)
+flowerpot|1
+(noun)|pot|container (generic term)
+flowers-of-an-hour|1
+(noun)|flower-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus (generic term)
+flowers of zinc|1
+(noun)|zinc oxide|philosopher's wool|philosophers' wool|oxide (generic term)
+flowery|2
+(adj)|angiosperm|flowering plant (related term)
+(adj)|ornate|rhetorical (similar term)
+flowing|4
+(adj)|artesian|subartesian (antonym)
+(adj)|streamlined|aerodynamic|sleek|smooth (similar term)
+(adj)|streaming|moving (similar term)
+(noun)|flow|change of location (generic term)|travel (generic term)
+floxuridine|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+floyd bennett|1
+(noun)|Bennett|Floyd Bennett|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+flu|1
+(noun)|influenza|grippe|contagious disease (generic term)|contagion (generic term)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+flub|2
+(noun)|blunder|blooper|bloomer|bungle|pratfall|foul-up|fuckup|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+fluctuate|3
+(verb)|move (generic term)|displace (generic term)
+(verb)|vacillate|waver|swing (generic term)
+(verb)|change state (generic term)|turn (generic term)
+fluctuating|1
+(adj)|unsteady (similar term)
+fluctuation|3
+(noun)|wave (generic term)|undulation (generic term)
+(noun)|variation|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|wavering|irregularity (generic term)|unregularity (generic term)
+flue|3
+(noun)|fluke|projection (generic term)
+(noun)|flue pipe|labial pipe|organ pipe (generic term)|pipe (generic term)|pipework (generic term)
+(noun)|conduit (generic term)
+flue pipe|1
+(noun)|flue|labial pipe|organ pipe (generic term)|pipe (generic term)|pipework (generic term)
+flue stop|1
+(noun)|organ stop (generic term)
+fluegelhorn|1
+(noun)|flugelhorn|brass (generic term)|brass instrument (generic term)
+fluency|3
+(noun)|eloquence|smoothness|expressive style (generic term)|style (generic term)
+(noun)|skillfulness (generic term)
+(noun)|volubility|articulateness|communicativeness (generic term)
+fluent|2
+(adj)|fluid|liquid|smooth|graceful (similar term)
+(adj)|eloquent|facile|silver|silver-tongued|smooth-spoken|articulate (similar term)
+fluent aphasia|1
+(noun)|Wernicke's aphasia|receptive aphasia|sensory aphasia|impressive aphasia|aphasia (generic term)
+fluff|6
+(noun)|material (generic term)|stuff (generic term)
+(noun)|bagatelle|frippery|frivolity|triviality (generic term)|trivia (generic term)|trifle (generic term)|small beer (generic term)
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|ruffle|loosen (generic term)|fluff up (related term)
+(verb)|tease|comb (generic term)|comb out (generic term)|disentangle (generic term)
+fluff up|1
+(verb)|plump up|shake up|shake (generic term)|agitate (generic term)
+fluffiness|1
+(noun)|downiness|featheriness|softness (generic term)
+fluffy|1
+(adj)|downy|downlike|flossy|soft (similar term)
+fluffy omelet|1
+(noun)|omelet (generic term)|omelette (generic term)
+flugelhorn|1
+(noun)|fluegelhorn|brass (generic term)|brass instrument (generic term)
+fluid|6
+(adj)|unstable|changeable (similar term)|changeful (similar term)
+(adj)|runny|liquid (similar term)
+(adj)|fluent|liquid|smooth|graceful (similar term)
+(adj)|liquid|disposable (similar term)
+(adj)|mobile|changeable (similar term)|changeful (similar term)
+(noun)|substance (generic term)|matter (generic term)
+fluid drachm|2
+(noun)|fluidram|fluid dram|drachm|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluidram|fluid dram|drachm|United States liquid unit (generic term)
+fluid dram|2
+(noun)|fluidram|fluid drachm|drachm|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluidram|fluid drachm|drachm|United States liquid unit (generic term)
+fluid drive|1
+(noun)|coupling (generic term)|coupler (generic term)
+fluid mechanics|1
+(noun)|hydraulics|mechanics (generic term)
+fluid ounce|2
+(noun)|fluidounce|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluidounce|United States liquid unit (generic term)
+fluidity|2
+(noun)|fluidness|liquidity|liquidness|runniness|thinness (generic term)
+(noun)|fluidness|changeableness (generic term)|changeability (generic term)
+fluidness|2
+(noun)|fluidity|liquidity|liquidness|runniness|thinness (generic term)
+(noun)|fluidity|changeableness (generic term)|changeability (generic term)
+fluidounce|2
+(noun)|fluid ounce|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluid ounce|United States liquid unit (generic term)
+fluidram|2
+(noun)|fluid dram|fluid drachm|drachm|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|fluid dram|fluid drachm|drachm|United States liquid unit (generic term)
+fluke|5
+(noun)|good luck|good fortune|luck (generic term)|fortune (generic term)
+(noun)|barb (generic term)
+(noun)|flue|projection (generic term)
+(noun)|tail (generic term)
+(noun)|trematode|trematode worm|flatworm (generic term)|platyhelminth (generic term)
+flukey|1
+(adj)|chancy|fluky|iffy|uncertain (similar term)
+fluky|1
+(adj)|chancy|flukey|iffy|uncertain (similar term)
+flume|2
+(noun)|gulch|gorge (generic term)
+(noun)|watercourse (generic term)|waterway (generic term)
+flummery|2
+(noun)|pudding (generic term)
+(noun)|mummery|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+flummox|1
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+flump|2
+(verb)|flump down|drop (generic term)
+(verb)|plank|plonk|plop|plunk|plump down|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+flump down|1
+(verb)|flump|drop (generic term)
+flunitrazepan|1
+(noun)|Rohypnol|club drug (generic term)
+flunk|2
+(noun)|failing|failure (generic term)|passing (antonym)
+(verb)|fail|bomb|flush it|pass (antonym)
+flunkey|2
+(noun)|lackey|flunky|servant (generic term)|retainer (generic term)
+(noun)|flunky|stooge|yes-man|follower (generic term)
+flunky|2
+(noun)|lackey|flunkey|servant (generic term)|retainer (generic term)
+(noun)|flunkey|stooge|yes-man|follower (generic term)
+fluor|1
+(noun)|fluorite|fluorspar|mineral (generic term)
+fluorapatite|1
+(noun)|apatite (generic term)
+fluoresce|1
+(verb)|glow (generic term)
+fluorescein|1
+(noun)|fluoresceine|fluorescent dye|resorcinolphthalein|dye (generic term)|dyestuff (generic term)|absorption indicator (generic term)
+fluorescein isocyanate|1
+(noun)|fluorescein isothiocyanate|fluorochrome (generic term)
+fluorescein isothiocyanate|1
+(noun)|fluorescein isocyanate|fluorochrome (generic term)
+fluoresceine|1
+(noun)|fluorescein|fluorescent dye|resorcinolphthalein|dye (generic term)|dyestuff (generic term)|absorption indicator (generic term)
+fluorescence|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+fluorescence microscopy|1
+(noun)|microscopy (generic term)
+fluorescent|3
+(adj)|light (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+(noun)|fluorescent fixture|lighting fixture (generic term)
+fluorescent dye|1
+(noun)|fluorescein|fluoresceine|resorcinolphthalein|dye (generic term)|dyestuff (generic term)|absorption indicator (generic term)
+fluorescent fixture|1
+(noun)|fluorescent|lighting fixture (generic term)
+fluorescent lamp|1
+(noun)|lamp (generic term)
+fluoridate|1
+(verb)|fluoridize|fluoridise|process (generic term)|treat (generic term)
+fluoridation|1
+(noun)|fluoridization|fluoridisation|addition (generic term)
+fluoride|1
+(noun)|halide (generic term)
+fluoridisation|1
+(noun)|fluoridation|fluoridization|addition (generic term)
+fluoridise|1
+(verb)|fluoridate|fluoridize|process (generic term)|treat (generic term)
+fluoridization|1
+(noun)|fluoridation|fluoridisation|addition (generic term)
+fluoridize|1
+(verb)|fluoridate|fluoridise|process (generic term)|treat (generic term)
+fluorine|1
+(noun)|F|atomic number 9|chemical element (generic term)|element (generic term)|gas (generic term)|halogen (generic term)
+fluorite|1
+(noun)|fluorspar|fluor|mineral (generic term)
+fluoroboric acid|1
+(noun)|acid (generic term)
+fluoroboride|1
+(noun)|salt (generic term)
+fluorocarbon|1
+(noun)|halocarbon (generic term)
+fluorocarbon plastic|1
+(noun)|plastic (generic term)
+fluorochrome|1
+(noun)|dye (generic term)|dyestuff (generic term)
+fluoroform|1
+(noun)|trifluoromethane|haloform (generic term)
+fluoroscope|1
+(noun)|roentgenoscope|X-ray machine (generic term)
+fluoroscopy|1
+(noun)|radioscopy (generic term)|radiology (generic term)
+fluorosis|1
+(noun)|pathology (generic term)
+fluorouracil|1
+(noun)|antimetabolite (generic term)
+fluorspar|1
+(noun)|fluorite|fluor|mineral (generic term)
+fluosilicate|1
+(noun)|salt (generic term)
+fluosilicic acid|1
+(noun)|hydrofluosilicic acid|acid (generic term)
+fluoxetine|1
+(noun)|fluoxetine hydrocholoride|Prozac|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+fluoxetine hydrocholoride|1
+(noun)|fluoxetine|Prozac|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+fluphenazine|1
+(noun)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+flurazepam|1
+(noun)|flurazepam hydrochloride|Dalmane|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+flurazepam hydrochloride|1
+(noun)|flurazepam|Dalmane|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+flurbiprofen|1
+(noun)|Ansaid|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+flurry|4
+(noun)|bustle|hustle|ado|fuss|stir|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+(noun)|snow flurry|snow (generic term)|snowfall (generic term)
+(verb)|move (generic term)
+(verb)|confuse|disconcert|put off|embarrass (generic term)|abash (generic term)
+flush|16
+(adj)|even (similar term)
+(adj)|affluent|loaded|moneyed|wealthy|rich (similar term)
+(noun)|flower|prime|peak|heyday|bloom|blossom|efflorescence|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|bloom|blush|rosiness|good health (generic term)|healthiness (generic term)
+(noun)|hot flash|symptom (generic term)
+(noun)|poker hand (generic term)
+(noun)|bang|boot|charge|rush|thrill|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|gush|outpouring|flow (generic term)|flowing (generic term)
+(noun)|blush|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|blush|crimson|redden|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|level|even out|even|change surface (generic term)
+(verb)|buff|burnish|furbish|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+(verb)|scour|purge|rinse (generic term)|rinse off (generic term)
+(verb)|sluice|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+(verb)|water (generic term)|irrigate (generic term)
+flush-seamed|1
+(adj)|carvel-built (similar term)
+flush down|1
+(verb)|wash down|flush (generic term)
+flush it|1
+(verb)|fail|flunk|bomb|pass (antonym)
+flush toilet|1
+(noun)|lavatory|toilet (generic term)|can (generic term)|commode (generic term)|crapper (generic term)|pot (generic term)|potty (generic term)|stool (generic term)|throne (generic term)
+flushed|2
+(adj)|rose-cheeked|rosy|rosy-cheeked|healthy (similar term)
+(adj)|crimson|red|reddened|red-faced|colored (similar term)|coloured (similar term)|colorful (similar term)
+flushless toilet|1
+(noun)|toilet (generic term)|can (generic term)|commode (generic term)|crapper (generic term)|pot (generic term)|potty (generic term)|stool (generic term)|throne (generic term)
+fluster|3
+(noun)|perturbation|discomposure (generic term)
+(verb)|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|confuse (generic term)|flurry (generic term)|disconcert (generic term)|put off (generic term)
+flustered|1
+(adj)|hot and bothered|perturbed|rattled|discomposed (similar term)
+flute|4
+(noun)|transverse flute|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+(noun)|flute glass|champagne flute|wineglass (generic term)
+(noun)|fluting|groove (generic term)|channel (generic term)
+(verb)|crimp (generic term)|pinch (generic term)
+flute glass|1
+(noun)|flute|champagne flute|wineglass (generic term)
+flute player|1
+(noun)|flutist|flautist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+fluting|1
+(noun)|flute|groove (generic term)|channel (generic term)
+flutist|1
+(noun)|flautist|flute player|musician (generic term)|instrumentalist (generic term)|player (generic term)
+flutter|9
+(noun)|waver|flicker|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+(noun)|disturbance|disruption|commotion|hurly burly|to-do|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+(noun)|flap|flapping|fluttering|wave (generic term)|undulation (generic term)
+(verb)|flit|fleet|dart|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+(verb)|flicker|waver|flitter|quiver|move back and forth (generic term)
+(verb)|beat (generic term)|flap (generic term)
+(verb)|palpitate|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|bat|blink (generic term)|wink (generic term)|nictitate (generic term)|nictate (generic term)
+flutter kick|1
+(noun)|swimming kick (generic term)
+fluttering|1
+(noun)|flap|flapping|flutter|wave (generic term)|undulation (generic term)
+fluvastatin|1
+(noun)|Lescol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+fluvial|1
+(adj)|stream|watercourse (related term)
+flux|11
+(noun)|rate (generic term)
+(noun)|fluxion|flow (generic term)|flowing (generic term)
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|pathology (generic term)
+(noun)|state of flux|state (generic term)
+(noun)|magnetic field|magnetic flux|field (generic term)|field of force (generic term)|force field (generic term)
+(noun)|flux density|concentration (generic term)|density (generic term)|denseness (generic term)|tightness (generic term)|compactness (generic term)
+(noun)|change (generic term)
+(verb)|flow|move (generic term)
+(verb)|liquefy|liquify|change integrity (generic term)
+(verb)|blend|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+flux applicator|1
+(noun)|applicator (generic term)|applier (generic term)
+flux density|1
+(noun)|flux|concentration (generic term)|density (generic term)|denseness (generic term)|tightness (generic term)|compactness (generic term)
+flux density unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+flux unit|1
+(noun)|magnetic flux unit|magnetic flux (generic term)
+fluxing lime|1
+(noun)|calcium oxide|quicklime|lime|calx|calcined lime|unslaked lime|burnt lime|oxide (generic term)
+fluxion|1
+(noun)|flux|flow (generic term)|flowing (generic term)
+fluxmeter|1
+(noun)|meter (generic term)
+fly|19
+(adj)|alert (similar term)
+(noun)|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+(noun)|tent-fly|rainfly|fly sheet|tent flap|flap (generic term)
+(noun)|fly front|opening (generic term)
+(noun)|fly ball|hit (generic term)|hitting (generic term)|striking (generic term)
+(noun)|fisherman's lure (generic term)|fish lure (generic term)
+(verb)|wing|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|move (generic term)
+(verb)|aviate|pilot|operate (generic term)|control (generic term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|change (generic term)
+(verb)|fell|vanish|elapse (generic term)|lapse (generic term)|pass (generic term)|slip by (generic term)|glide by (generic term)|slip away (generic term)|go by (generic term)|slide by (generic term)|go along (generic term)
+(verb)|travel (generic term)
+(verb)|show (generic term)
+(verb)|flee|take flight|scat (generic term)|run (generic term)|scarper (generic term)|turn tail (generic term)|lam (generic term)|run away (generic term)|hightail it (generic term)|bunk (generic term)|head for the hills (generic term)|take to the woods (generic term)|escape (generic term)|fly the coop (generic term)|break away (generic term)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|hit (generic term)
+(verb)|vanish|vaporize|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+fly-by|1
+(noun)|flyover|flypast|flight (generic term)|flying (generic term)
+fly-by-night|3
+(adj)|shady|untrustworthy (similar term)|untrusty (similar term)
+(adj)|impermanent (similar term)|temporary (similar term)
+(noun)|debtor (generic term)|debitor (generic term)
+fly-fish|1
+(verb)|flyfish|angle (generic term)
+fly-fishing|1
+(noun)|angling (generic term)
+fly agaric|1
+(noun)|Amanita muscaria|agaric (generic term)
+fly ash|1
+(noun)|ash (generic term)
+fly ball|1
+(noun)|fly|hit (generic term)|hitting (generic term)|striking (generic term)
+fly blind|1
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+fly bridge|1
+(noun)|flying bridge|flybridge|monkey bridge|bridge (generic term)|bridge deck (generic term)
+fly by|2
+(verb)|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+(verb)|zip by|whisk by|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+fly casting|1
+(noun)|casting (generic term)|cast (generic term)
+fly contact|1
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+fly front|1
+(noun)|fly|opening (generic term)
+fly high|2
+(verb)|feel (generic term)|experience (generic term)
+(verb)|thrive|prosper|flourish|change state (generic term)|turn (generic term)
+fly honeysuckle|1
+(noun)|American fly honeysuckle|Lonicera canadensis|honeysuckle (generic term)
+fly in the face of|1
+(verb)|fly in the teeth of|violate (generic term)|go against (generic term)|break (generic term)
+fly in the ointment|1
+(noun)|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+fly in the teeth of|1
+(verb)|fly in the face of|violate (generic term)|go against (generic term)|break (generic term)
+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 (generic term)
+fly on|1
+(verb)|fly (generic term)|wing (generic term)
+fly open|1
+(verb)|open (generic term)|open up (generic term)
+fly orchid|2
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Ophrys insectifera|Ophrys muscifera|orchid (generic term)|orchidaceous plant (generic term)
+fly poison|1
+(noun)|Amianthum muscaetoxicum|Amianthum muscitoxicum|liliaceous plant (generic term)
+fly rod|1
+(noun)|fishing rod (generic term)|fishing pole (generic term)
+fly sheet|1
+(noun)|tent-fly|rainfly|fly|tent flap|flap (generic term)
+fly tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+fly the coop|1
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+flyaway|2
+(adj)|flighty|head-in-the-clouds|scatterbrained|frivolous (similar term)
+(adj)|loose (similar term)
+flyblown|3
+(adj)|maggoty|stale (similar term)
+(adj)|squalid|sordid|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|besmirched|damaged|spotted|stained|sullied|tainted|tarnished|blemished (similar term)
+flybridge|1
+(noun)|flying bridge|fly bridge|monkey bridge|bridge (generic term)|bridge deck (generic term)
+flycatcher|2
+(noun)|Old World flycatcher|true flycatcher|oscine (generic term)|oscine bird (generic term)
+(noun)|New World flycatcher|tyrant flycatcher|tyrant bird|tyrannid (generic term)
+flycatching warbler|1
+(noun)|New World warbler (generic term)|wood warbler (generic term)
+flyer|3
+(noun)|circular|handbill|bill|broadside|broadsheet|flier|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|flier|traveler (generic term)|traveller (generic term)
+(noun)|aviator|aeronaut|airman|flier|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+flyfish|1
+(verb)|fly-fish|angle (generic term)
+flying|8
+(adj)|winged (similar term)
+(adj)|fast-flying|moving (similar term)
+(adj)|aflare|flaring|waving|moving (similar term)
+(adj)|mobile (similar term)
+(adj)|air (similar term)
+(adj)|quick|fast|hurried (similar term)
+(adj)|running (similar term)
+(noun)|flight|air travel (generic term)|aviation (generic term)|air (generic term)
+flying bird|1
+(noun)|carinate|carinate bird|bird (generic term)|ratite (antonym)
+flying boat|1
+(noun)|seaplane (generic term)|hydroplane (generic term)
+flying bomb|1
+(noun)|buzz bomb|robot bomb|doodlebug|V-1|guided missile (generic term)
+flying bridge|1
+(noun)|flybridge|fly bridge|monkey bridge|bridge (generic term)|bridge deck (generic term)
+flying buttress|1
+(noun)|arc-boutant|buttress (generic term)|buttressing (generic term)
+flying carpet|1
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+flying cat|2
+(noun)|flying lemur|colugo|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|taguan|flying marmot|Petaurista petaurista|Asiatic flying squirrel (generic term)
+flying colors|1
+(noun)|flying colours|success (generic term)
+flying colours|1
+(noun)|flying colors|success (generic term)
+flying dragon|1
+(noun)|dragon|flying lizard|agamid (generic term)|agamid lizard (generic term)
+flying drainpipe|1
+(noun)|ramjet|ramjet engine|atherodyde|athodyd|jet engine (generic term)
+flying dutchman|2
+(noun)|Flying Dutchman|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|specter (generic term)|spectre (generic term)
+(noun)|Flying Dutchman|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+flying field|1
+(noun)|airfield|landing field|field|facility (generic term)|installation (generic term)
+flying fish|1
+(noun)|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+flying fox|1
+(noun)|fruit bat (generic term)|megabat (generic term)
+flying gecko|1
+(noun)|fringed gecko|Ptychozoon homalocephalum|gecko (generic term)
+flying gurnard|1
+(noun)|flying robin|butterflyfish|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+flying jib|1
+(noun)|jib (generic term)
+flying lemur|1
+(noun)|flying cat|colugo|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+flying lizard|1
+(noun)|dragon|flying dragon|agamid (generic term)|agamid lizard (generic term)
+flying mare|1
+(noun)|wrestling (generic term)|rassling (generic term)|grappling (generic term)
+flying marmot|1
+(noun)|taguan|flying cat|Petaurista petaurista|Asiatic flying squirrel (generic term)
+flying mouse|1
+(noun)|flying phalanger (generic term)|flying opossum (generic term)|flying squirrel (generic term)
+flying opossum|1
+(noun)|flying phalanger|flying squirrel|phalanger (generic term)|opossum (generic term)|possum (generic term)
+flying phalanger|1
+(noun)|flying opossum|flying squirrel|phalanger (generic term)|opossum (generic term)|possum (generic term)
+flying reptile|1
+(noun)|pterosaur|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+flying robin|1
+(noun)|flying gurnard|butterflyfish|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+flying saucer|1
+(noun)|unidentified flying object|UFO|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+flying school|1
+(noun)|school (generic term)
+flying squad|1
+(noun)|team (generic term)|squad (generic term)
+flying squirrel|1
+(noun)|flying phalanger|flying opossum|phalanger (generic term)|opossum (generic term)|possum (generic term)
+flying start|2
+(noun)|running start|racing start (generic term)
+(noun)|running start|start (generic term)
+flyleaf|1
+(noun)|leaf (generic term)|folio (generic term)
+flyover|2
+(noun)|overpass|flypast|bridge (generic term)|span (generic term)
+(noun)|fly-by|flypast|flight (generic term)|flying (generic term)
+flypaper|1
+(noun)|paper (generic term)
+flypast|2
+(noun)|overpass|flyover|bridge (generic term)|span (generic term)
+(noun)|flyover|fly-by|flight (generic term)|flying (generic term)
+flyspeck|2
+(adj)|bantam|diminutive|lilliputian|midget|petite|tiny|small (similar term)|little (similar term)
+(noun)|atom (generic term)|molecule (generic term)|particle (generic term)|corpuscle (generic term)|mote (generic term)|speck (generic term)
+flyswat|1
+(noun)|swatter|flyswatter|implement (generic term)
+flyswatter|1
+(noun)|swatter|flyswat|implement (generic term)
+flytrap|1
+(noun)|trap (generic term)
+flyway|1
+(noun)|migration route|path (generic term)|route (generic term)|itinerary (generic term)
+flyweight|2
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|boxer (generic term)|pugilist (generic term)
+flywheel|1
+(noun)|regulator (generic term)
+fm|2
+(noun)|frequency modulation|FM|modulation (generic term)
+(noun)|fermium|Fm|atomic number 100|metallic element (generic term)|metal (generic term)
+fmri|1
+(noun)|functional magnetic resonance imaging|fMRI|magnetic resonance imaging (generic term)|MRI (generic term)
+fnma|1
+(noun)|Federal National Mortgage Association|Fannie Mae|FNMA|corporation (generic term)|corp (generic term)
+fo|1
+(noun)|field-grade officer|field officer|FO|commissioned military officer (generic term)
+fo'c'sle|1
+(noun)|forecastle|living quarters (generic term)|quarters (generic term)
+foal|2
+(noun)|young mammal (generic term)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+foaled|1
+(adj)|born (similar term)
+foam|3
+(noun)|froth|bubble (generic term)
+(noun)|material (generic term)|stuff (generic term)
+(verb)|froth|fizz|effervesce|sparkle|bubble (generic term)
+foam at the mouth|1
+(verb)|froth at the mouth|rage (generic term)
+foam rubber|1
+(noun)|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)|foam (generic term)
+foamentation|1
+(noun)|substance (generic term)|matter (generic term)
+foamflower|1
+(noun)|coolwart|false miterwort|false mitrewort|Tiarella cordifolia|herb (generic term)|herbaceous plant (generic term)
+foaminess|1
+(noun)|gaseousness (generic term)
+foaming|3
+(adj)|bubbling|bubbly|foamy|frothy|effervescing|effervescent (similar term)
+(adj)|foamy|frothing|unhealthy (similar term)
+(adj)|bubbling|foamy|frothing|spumous|spumy|sudsy|agitated (similar term)
+foamy|4
+(adj)|frothy|gaseous (similar term)
+(adj)|bubbling|bubbly|foaming|frothy|effervescing|effervescent (similar term)
+(adj)|foaming|frothing|unhealthy (similar term)
+(adj)|bubbling|foaming|frothing|spumous|spumy|sudsy|agitated (similar term)
+fob|4
+(noun)|watch pocket|vest pocket (generic term)
+(noun)|adornment (generic term)
+(noun)|watch chain|watch guard|chain (generic term)
+(verb)|flim-flam|trick|fox|pull a fast one on|play a trick on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+fob off|1
+(verb)|foist off|palm off|sell (generic term)
+focal|2
+(adj)|central (similar term)
+(adj)|point (related term)
+focal distance|1
+(noun)|focal length|distance (generic term)
+focal epilepsy|1
+(noun)|cortical epilepsy|epilepsy (generic term)
+focal infection|1
+(noun)|infection (generic term)
+focal length|1
+(noun)|focal distance|distance (generic term)
+focal point|3
+(noun)|focus|point (generic term)
+(noun)|focus|nidus|point (generic term)
+(noun)|focus|focusing|focussing|direction|centering|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+focal ratio|1
+(noun)|f number|stop number|speed|ratio (generic term)
+focal seizure|1
+(noun)|seizure (generic term)|ictus (generic term)|raptus (generic term)
+focalisation|2
+(noun)|focalization|pathogenesis (generic term)
+(noun)|focalization|focusing|intensification (generic term)
+focalise|4
+(verb)|localize|localise|focalize|lie (generic term)
+(verb)|concenter|concentre|focalize|focus|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+(verb)|focus|focalize|adjust (generic term)|conform (generic term)|adapt (generic term)|blur (antonym)
+(verb)|focus|focalize|sharpen|adjust (generic term)|set (generic term)|correct (generic term)|focus on (related term)|blur (antonym)
+focalization|2
+(noun)|focalisation|pathogenesis (generic term)
+(noun)|focalisation|focusing|intensification (generic term)
+focalize|4
+(verb)|localize|localise|focalise|lie (generic term)
+(verb)|concenter|concentre|focalise|focus|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+(verb)|focus|focalise|adjust (generic term)|conform (generic term)|adapt (generic term)|blur (antonym)
+(verb)|focus|focalise|sharpen|adjust (generic term)|set (generic term)|correct (generic term)|focus on (related term)|blur (antonym)
+focus|12
+(noun)|focusing|focussing|focal point|direction|centering|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+(noun)|distinctness (generic term)|sharpness (generic term)
+(noun)|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+(noun)|focal point|nidus|point (generic term)
+(noun)|stress|emphasis (generic term)|accent (generic term)
+(noun)|focal point|point (generic term)
+(noun)|point (generic term)
+(verb)|concentrate|center|centre|pore|rivet|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|sharpen (generic term)|blur (antonym)
+(verb)|concenter|concentre|focalize|focalise|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+(verb)|focalize|focalise|adjust (generic term)|conform (generic term)|adapt (generic term)|blur (antonym)
+(verb)|focalize|focalise|sharpen|adjust (generic term)|set (generic term)|correct (generic term)|focus on (related term)|blur (antonym)
+focus on|1
+(verb)|center on|revolve around|revolve about|concentrate on|center|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+focused|4
+(adj)|adjusted (similar term)
+(adj)|focussed|unfocused (antonym)
+(adj)|focussed|convergent (similar term)
+(adj)|centered|centred|centralized|centralised|concentrated (similar term)
+focusing|2
+(noun)|focus|focussing|focal point|direction|centering|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+(noun)|focalization|focalisation|intensification (generic term)
+focussed|2
+(adj)|focused|unfocused (antonym)
+(adj)|focused|convergent (similar term)
+focussing|1
+(noun)|focus|focusing|focal point|direction|centering|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+fodder|2
+(noun)|feed (generic term)|provender (generic term)
+(verb)|feed (generic term)|give (generic term)
+foe|2
+(noun)|enemy|foeman|opposition|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+(noun)|enemy|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)|friend (antonym)
+foehn|1
+(noun)|fohn|wind (generic term)|air current (generic term)|current of air (generic term)
+foeman|1
+(noun)|enemy|foe|opposition|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+foeniculum|1
+(noun)|Foeniculum|genus Foeniculum|rosid dicot genus (generic term)
+foeniculum dulce|1
+(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel (generic term)
+foeniculum vulgare|1
+(noun)|common fennel|Foeniculum vulgare|fennel (generic term)
+foeniculum vulgare dulce|1
+(noun)|Florence fennel|Foeniculum dulce|Foeniculum vulgare dulce|fennel (generic term)
+foetal|1
+(adj)|fetal|vertebrate|craniate (related term)
+foetal circulation|1
+(noun)|fetal circulation|circulatory system (generic term)|cardiovascular system (generic term)
+foetal distress|1
+(noun)|fetal distress|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+foetal monitor|1
+(noun)|electronic fetal monitor|electronic foetal monitor|fetal monitor|monitor (generic term)
+foetal movement|1
+(noun)|fetal movement|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+foetid|1
+(adj)|fetid|foul|foul-smelling|funky|noisome|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+foetid bugbane|1
+(noun)|fetid bugbane|Cimicifuga foetida|bugbane (generic term)
+foetid pothos|1
+(noun)|skunk cabbage|polecat weed|Symplocarpus foetidus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+foetology|1
+(noun)|fetology|obstetrics (generic term)|OB (generic term)|tocology (generic term)|midwifery (generic term)
+foetometry|1
+(noun)|fetometry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+foetoprotein|1
+(noun)|fetoprotein|antigen (generic term)
+foetor|1
+(noun)|malodor|malodour|stench|stink|reek|fetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+foetoscope|1
+(noun)|fetoscope|stethoscope (generic term)
+foetoscopy|1
+(noun)|fetoscopy|prenatal diagnosis (generic term)
+foetus|1
+(noun)|fetus|vertebrate (generic term)|craniate (generic term)
+fog|4
+(noun)|aerosol (generic term)
+(noun)|fogginess|murk|murkiness|atmosphere (generic term)|atmospheric state (generic term)
+(noun)|daze|haze|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(verb)|obscure|befog|becloud|obnubilate|haze over|cloud|mist|hide (generic term)|conceal (generic term)
+fog up|1
+(verb)|overcast (generic term)|cloud (generic term)
+fogbank|1
+(noun)|fog (generic term)
+fogbound|1
+(adj)|enclosed (similar term)
+fogey|1
+(noun)|dodo|fogy|fossil|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+fogged|1
+(adj)|foggy|opaque (similar term)
+fogginess|2
+(noun)|fog|murk|murkiness|atmosphere (generic term)|atmospheric state (generic term)
+(noun)|indistinctness|softness|blurriness|fuzziness|opacity (generic term)|opaqueness (generic term)|sharpness (antonym)|distinctness (antonym)
+foggy|4
+(adj)|brumous|hazy|misty|cloudy (similar term)
+(adj)|dazed|groggy|logy|stuporous|lethargic (similar term)|unergetic (similar term)
+(adj)|bleary|blurred|blurry|fuzzy|hazy|muzzy|indistinct (similar term)
+(adj)|fogged|opaque (similar term)
+foggy bottom|1
+(noun)|Foggy Bottom|Department of State (generic term)|United States Department of State (generic term)|State Department (generic term)|State (generic term)|DoS (generic term)
+foghorn|2
+(noun)|fogsignal|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|horn (generic term)|signaling device (generic term)
+foglamp|1
+(noun)|headlight (generic term)|headlamp (generic term)
+fogsignal|1
+(noun)|foghorn|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+fogy|1
+(noun)|dodo|fogey|fossil|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+fogyish|1
+(adj)|moss-grown|mossy|stick-in-the-mud|stodgy|unfashionable (similar term)|unstylish (similar term)
+fohn|1
+(noun)|foehn|wind (generic term)|air current (generic term)|current of air (generic term)
+foible|2
+(noun)|idiosyncrasy|mannerism|peculiarity (generic term)|specialness (generic term)|specialty (generic term)|speciality (generic term)|distinctiveness (generic term)
+(noun)|part (generic term)|portion (generic term)
+foie gras|1
+(noun)|pate de foie gras|pate (generic term)
+foil|8
+(noun)|sheet metal (generic term)
+(noun)|enhancer|attention (generic term)
+(noun)|hydrofoil|device (generic term)
+(noun)|transparency|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(noun)|fencing sword (generic term)
+(verb)|contrast (generic term)|counterpoint (generic term)
+(verb)|thwart|queer|spoil|scotch|cross|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|cover (generic term)
+foiled|1
+(adj)|defeated|disappointed|discomfited|frustrated|thwarted|unsuccessful (similar term)
+foiling|1
+(noun)|frustration|thwarting|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+foist|2
+(verb)|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+foist off|1
+(verb)|palm off|fob off|sell (generic term)
+folacin|1
+(noun)|vitamin Bc|vitamin M|folate|folic acid|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+folate|1
+(noun)|vitamin Bc|vitamin M|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+fold|13
+(noun)|crease|plication|flexure|crimp|bend|angular shape (generic term)|angularity (generic term)
+(noun)|congregation|faithful|social group (generic term)
+(noun)|folding|geological process (generic term)|geologic process (generic term)
+(noun)|flock|animal group (generic term)
+(noun)|plica|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|sheepfold|sheep pen|sheepcote|pen (generic term)
+(noun)|folding|change of shape (generic term)
+(verb)|fold up|turn up|change surface (generic term)|unfold (antonym)
+(verb)|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+(verb)|integrate (generic term)|incorporate (generic term)
+(verb)|close up|close|shut down|close down|open (antonym)
+(verb)|pen up|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|fold up|change (generic term)
+fold up|2
+(verb)|fold|turn up|change surface (generic term)|unfold (antonym)
+(verb)|fold|change (generic term)
+foldable|1
+(adj)|foldaway|folding|collapsible (similar term)|collapsable (similar term)
+foldaway|1
+(adj)|foldable|folding|collapsible (similar term)|collapsable (similar term)
+folder|2
+(noun)|booklet|brochure|leaflet|pamphlet|book (generic term)
+(noun)|covering (generic term)
+folderal|1
+(noun)|falderol|frill|gimcrackery|gimcrack|nonsense|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+folderol|1
+(noun)|rubbish|tripe|trumpery|trash|wish-wash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+folding|4
+(adj)|foldable|foldaway|collapsible (similar term)|collapsable (similar term)
+(noun)|protein folding|organic process (generic term)|biological process (generic term)
+(noun)|fold|geological process (generic term)|geologic process (generic term)
+(noun)|fold|change of shape (generic term)
+folding chair|1
+(noun)|chair (generic term)
+folding door|1
+(noun)|accordion door|interior door (generic term)
+folding money|1
+(noun)|paper money|paper currency|currency (generic term)
+folding saw|1
+(noun)|saw (generic term)
+foldout|1
+(noun)|gatefold|page (generic term)
+foliaceous|3
+(adj)|plant organ (related term)
+(adj)|foliose|foliaged|leafy (similar term)
+(adj)|foliate|foliated|stratified (similar term)|bedded (similar term)
+foliage|2
+(noun)|leaf|leafage|plant organ (generic term)
+(noun)|foliation|architectural ornament (generic term)
+foliaged|1
+(adj)|foliaceous|foliose|leafy (similar term)
+foliate|8
+(adj)|foliated|plant organ (related term)
+(adj)|leafy (similar term)
+(adj)|foliated|foliaceous|stratified (similar term)|bedded (similar term)
+(verb)|forge (generic term)|hammer (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|paginate|page|number (generic term)
+(verb)|develop (generic term)|make grow (generic term)
+foliated|2
+(adj)|foliate|plant organ (related term)
+(adj)|foliate|foliaceous|stratified (similar term)|bedded (similar term)
+foliation|5
+(noun)|leafing|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|stratification (generic term)
+(noun)|foliage|architectural ornament (generic term)
+(noun)|production (generic term)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+folic acid|1
+(noun)|vitamin Bc|vitamin M|folate|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+folie|1
+(noun)|mental disorder|mental disturbance|disturbance|psychological disorder|disorder (generic term)|upset (generic term)
+folie a deux|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+folio|3
+(noun)|pagination|page number|paging|number (generic term)
+(noun)|leaf|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+(noun)|book (generic term)|volume (generic term)
+foliolate|1
+(adj)|leafy (similar term)
+foliose|1
+(adj)|foliaceous|foliaged|leafy (similar term)
+folium|1
+(noun)|geological formation (generic term)|formation (generic term)
+folk|4
+(noun)|folks|common people|people (generic term)
+(noun)|tribe|social group (generic term)
+(noun)|family|family line|kinfolk|kinsfolk|sept|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+(noun)|folk music|ethnic music|popular music (generic term)|popular music genre (generic term)
+folk art|1
+(noun)|genre (generic term)
+folk ballad|1
+(noun)|folk song|folksong|folk music (generic term)|ethnic music (generic term)|folk (generic term)|song (generic term)|vocal (generic term)
+folk dance|2
+(noun)|folk dancing|social dancing (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+folk dancer|1
+(noun)|dancer (generic term)|social dancer (generic term)
+folk dancing|1
+(noun)|folk dance|social dancing (generic term)
+folk etymology|1
+(noun)|etymology (generic term)
+folk music|1
+(noun)|ethnic music|folk|popular music (generic term)|popular music genre (generic term)
+folk poet|1
+(noun)|folk writer (generic term)
+folk singer|1
+(noun)|jongleur|minstrel|poet-singer|troubadour|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+folk song|1
+(noun)|folksong|folk ballad|folk music (generic term)|ethnic music (generic term)|folk (generic term)|song (generic term)|vocal (generic term)
+folk tale|1
+(noun)|folktale|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+folk writer|1
+(noun)|writer (generic term)|author (generic term)
+folklore|1
+(noun)|lore (generic term)|traditional knowledge (generic term)
+folks|2
+(noun)|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+(noun)|folk|common people|people (generic term)
+folksong|1
+(noun)|folk song|folk ballad|folk music (generic term)|ethnic music (generic term)|folk (generic term)|song (generic term)|vocal (generic term)
+folksy|2
+(adj)|cracker-barrel|homespun|rural (similar term)
+(adj)|informal (similar term)
+folktale|1
+(noun)|folk tale|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+follicle|1
+(noun)|vesicle (generic term)|cyst (generic term)
+follicle-stimulating hormone|1
+(noun)|FSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+follicular|1
+(adj)|vesicle|cyst (related term)
+folliculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+follies|1
+(noun)|revue (generic term)|review (generic term)
+follow|23
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|precede (antonym)
+(verb)|postdate|predate (antonym)
+(verb)|fall out|result (generic term)|ensue (generic term)
+(verb)|travel along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|comply|abide by|obey (generic term)
+(verb)|come after|result (generic term)|ensue (generic term)
+(verb)|conform to|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|be (generic term)
+(verb)|adopt|espouse|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|take after|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|trace|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|watch|observe|watch over|keep an eye on|check (generic term)|check up on (generic term)|look into (generic term)|check out (generic term)|suss out (generic term)|check over (generic term)|go over (generic term)|check into (generic term)
+(verb)|succeed|come after|precede (antonym)
+(verb)|play along|accompany|play (generic term)
+(verb)|keep up|keep abreast
+(verb)|come|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+(verb)|practice (generic term)|apply (generic term)|use (generic term)
+(verb)|be
+(verb)|surveil|survey
+(verb)|pursue|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|understand (generic term)
+(verb)|stick to|stick with|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+follow-on|1
+(noun)|innings (generic term)
+follow-through|1
+(noun)|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)
+follow-up|3
+(noun)|followup|work (generic term)|piece of work (generic term)
+(noun)|followup|activity (generic term)
+(noun)|followup|reexamination|review|examination (generic term)|scrutiny (generic term)
+follow out|1
+(verb)|follow through|follow up|carry out|implement|put through|go through|complete (generic term)|finish (generic term)
+follow suit|1
+(verb)|imitate (generic term)
+follow through|2
+(verb)|hit (generic term)
+(verb)|follow up|follow out|carry out|implement|put through|go through|complete (generic term)|finish (generic term)
+follow up|2
+(verb)|follow through|follow out|carry out|implement|put through|go through|complete (generic term)|finish (generic term)
+(verb)|enhance (generic term)
+follow up on|1
+(verb)|pursue|act on|react (generic term)|oppose (generic term)
+follower|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|leader (antonym)
+(noun)|traveler (generic term)|traveller (generic term)
+followers|1
+(noun)|following|multitude (generic term)|masses (generic term)|mass (generic term)|hoi polloi (generic term)|people (generic term)|the great unwashed (generic term)
+followers of the phrophet|1
+(noun)|al Sunna Wal Jamma|Followers of the Phrophet|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+following|6
+(adj)|pursuing (similar term)|shadowing (similar term)|tailing (similar term)|leading (antonym)
+(adj)|favorable (similar term)|favourable (similar term)
+(adj)|next|succeeding (similar term)
+(adj)|undermentioned|succeeding (similar term)
+(noun)|followers|multitude (generic term)|masses (generic term)|mass (generic term)|hoi polloi (generic term)|people (generic term)|the great unwashed (generic term)
+(noun)|pursuit|chase|pursual|motion (generic term)|movement (generic term)|move (generic term)
+followup|3
+(noun)|follow-up|work (generic term)|piece of work (generic term)
+(noun)|follow-up|activity (generic term)
+(noun)|follow-up|reexamination|review|examination (generic term)|scrutiny (generic term)
+folly|4
+(noun)|foolishness|unwiseness|trait (generic term)|wisdom (antonym)
+(noun)|stupidity|betise|foolishness|imbecility|mistake (generic term)|error (generic term)|fault (generic term)
+(noun)|foolishness|craziness|madness|stupidity (generic term)
+(noun)|foolery|tomfoolery|craziness|lunacy|indulgence|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+folsom culture|1
+(noun)|Folsom culture|Paleo-American culture (generic term)|Paleo-Amerind culture (generic term)|Paleo-Indian culture (generic term)
+foment|2
+(verb)|agitate|stir up|provoke (generic term)|stimulate (generic term)
+(verb)|bathe (generic term)|bath (generic term)
+fomentation|2
+(noun)|treatment (generic term)
+(noun)|instigation|trigger (generic term)|induction (generic term)|initiation (generic term)
+fomenter|1
+(noun)|agitator|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+fomes|1
+(noun)|Fomes|genus Fomes|fungus genus (generic term)
+fomes igniarius|1
+(noun)|agaric|Fomes igniarius|fungus (generic term)
+fomite|1
+(noun)|vehicle|object (generic term)|physical object (generic term)
+fomor|1
+(noun)|Fomor|Fomorian|Celtic deity (generic term)
+fomorian|1
+(noun)|Fomor|Fomorian|Celtic deity (generic term)
+fond|4
+(adj)|affectionate|caring|lovesome|tender|warm|loving (similar term)
+(adj)|adoring|doting|loving (similar term)
+(adj)|foolish (similar term)
+(adj)|partial|inclined (similar term)
+fond regard|1
+(noun)|attachment|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+fonda|2
+(noun)|Fonda|Jane Fonda|actress (generic term)
+(noun)|Fonda|Henry Fonda|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+fondant|1
+(noun)|candy (generic term)|confect (generic term)
+fondle|1
+(verb)|stroke|caress (generic term)
+fondler|2
+(noun)|petter|lover (generic term)
+(noun)|molester (generic term)
+fondling|1
+(noun)|caressing|cuddling|hugging|kissing|necking|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+fondly|1
+(adv)|lovingly
+fondness|3
+(noun)|fancy|partiality|liking (generic term)
+(noun)|affection|affectionateness|tenderness|heart|warmness|warmheartedness|philia|feeling (generic term)
+(noun)|affectionateness|lovingness|warmth|emotionality (generic term)|emotionalism (generic term)
+fondu|1
+(noun)|fondue|dish (generic term)
+fondue|1
+(noun)|fondu|dish (generic term)
+font|2
+(noun)|fount|typeface|face|type (generic term)
+(noun)|baptismal font|baptistry|baptistery|basin (generic term)
+font cartridge|1
+(noun)|cartridge font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+fontanel|1
+(noun)|fontanelle|soft spot|orifice (generic term)|opening (generic term)|porta (generic term)
+fontanelle|1
+(noun)|fontanel|soft spot|orifice (generic term)|opening (generic term)|porta (generic term)
+fontanne|1
+(noun)|Fontanne|Lynn Fontanne|actress (generic term)
+fontenoy|1
+(noun)|Fontenoy|Battle of Fontenoy|pitched battle (generic term)
+fonteyn|1
+(noun)|Fonteyn|Dame Margot Fonteyn|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+food|3
+(noun)|nutrient|substance (generic term)|matter (generic term)
+(noun)|solid food|solid (generic term)
+(noun)|food for thought|intellectual nourishment|content (generic term)|cognitive content (generic term)|mental object (generic term)
+food additive|1
+(noun)|artificial additive|additive (generic term)
+food allergy|1
+(noun)|allergy (generic term)|allergic reaction (generic term)
+food and agriculture organization|1
+(noun)|Food and Agriculture Organization|Food and Agriculture Organization of the United Nations|FAO|United Nations agency (generic term)|UN agency (generic term)
+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 (generic term)|UN agency (generic term)
+food and drug administration|1
+(noun)|Food and Drug Administration|FDA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+food bank|1
+(noun)|bank (generic term)
+food cache|1
+(noun)|commissariat (generic term)|provisions (generic term)|provender (generic term)|viands (generic term)|victuals (generic term)
+food chain|1
+(noun)|organic phenomenon (generic term)
+food color|1
+(noun)|coloring|colouring|food coloring|food colouring|food colour|foodstuff (generic term)|food product (generic term)
+food coloring|1
+(noun)|coloring|colouring|food colouring|food color|food colour|foodstuff (generic term)|food product (generic term)
+food colour|1
+(noun)|coloring|colouring|food coloring|food colouring|food color|foodstuff (generic term)|food product (generic term)
+food colouring|1
+(noun)|coloring|colouring|food coloring|food color|food colour|foodstuff (generic term)|food product (generic term)
+food company|1
+(noun)|company (generic term)
+food court|1
+(noun)|court (generic term)|courtyard (generic term)
+food cycle|1
+(noun)|food web|organic phenomenon (generic term)
+food elevator|1
+(noun)|dumbwaiter|elevator (generic term)|lift (generic term)
+food faddist|1
+(noun)|faddist (generic term)
+food fish|1
+(noun)|fish (generic term)
+food for thought|1
+(noun)|food|intellectual nourishment|content (generic term)|cognitive content (generic term)|mental object (generic term)
+food grain|1
+(noun)|grain|cereal|foodstuff (generic term)|food product (generic term)
+food hamper|1
+(noun)|hamper (generic term)
+food manufacturer|1
+(noun)|manufacturer (generic term)|producer (generic term)
+food market|1
+(noun)|grocery store|grocery|market|marketplace (generic term)|mart (generic term)
+food poisoning|1
+(noun)|gastrointestinal disorder|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+food processor|1
+(noun)|kitchen appliance (generic term)
+food product|1
+(noun)|foodstuff|food (generic term)|nutrient (generic term)
+food pyramid|1
+(noun)|organic phenomenon (generic term)
+food shop|1
+(noun)|delicatessen|deli|shop (generic term)|store (generic term)
+food stamp|1
+(noun)|tender (generic term)|legal tender (generic term)
+food turner|1
+(noun)|turner|cooking utensil (generic term)|cookware (generic term)
+food waste|1
+(noun)|garbage|refuse|scraps|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+food web|1
+(noun)|food cycle|organic phenomenon (generic term)
+foodie|1
+(noun)|epicure|gourmet|gastronome|bon vivant|epicurean|sensualist (generic term)
+foodless|1
+(adj)|malnourished (similar term)
+foodstuff|2
+(noun)|grocery|consumer goods (generic term)
+(noun)|food product|food (generic term)|nutrient (generic term)
+fool|7
+(noun)|sap|saphead|muggins|tomfool|simpleton (generic term)|simple (generic term)
+(noun)|chump|gull|mark|patsy|fall guy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+(noun)|jester|motley fool|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+(verb)|gull|befool|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|fritter|frivol away|dissipate|shoot|fritter away|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|gull|dupe|slang|befool|cod|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|horse around|arse around|fool around|play (generic term)|joke (generic term)|jest (generic term)
+fool's cap|1
+(noun)|dunce cap|dunce's cap|hat (generic term)|chapeau (generic term)|lid (generic term)
+fool's errand|1
+(noun)|mission (generic term)|charge (generic term)|commission (generic term)
+fool's gold|1
+(noun)|pyrite|iron pyrite|mineral (generic term)
+fool's huckleberry|1
+(noun)|false azalea|Menziesia ferruginea|shrub (generic term)|bush (generic term)
+fool's paradise|1
+(noun)|wellbeing (generic term)|well-being (generic term)|welfare (generic term)|upbeat (generic term)|eudaemonia (generic term)|eudaimonia (generic term)
+fool's parsley|1
+(noun)|lesser hemlock|Aethusa cynapium|poisonous plant (generic term)
+fool around|2
+(verb)|horse around|arse around|fool|play (generic term)|joke (generic term)|jest (generic term)
+(verb)|play around|cheat on (generic term)|cheat (generic term)|cuckold (generic term)|betray (generic term)|wander (generic term)
+fool away|1
+(verb)|fritter|frivol away|dissipate|shoot|fritter away|fool|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+foolery|1
+(noun)|folly|tomfoolery|craziness|lunacy|indulgence|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+foolhardiness|1
+(noun)|recklessness|rashness|unthoughtfulness (generic term)|thoughtlessness (generic term)
+foolhardy|1
+(adj)|heady|rash|reckless|bold (similar term)
+fooling|1
+(adj)|casual|light (similar term)
+foolish|2
+(adj)|absurd (similar term)|cockeyed (similar term)|derisory (similar term)|idiotic (similar term)|laughable (similar term)|ludicrous (similar term)|nonsensical (similar term)|preposterous (similar term)|ridiculous (similar term)|asinine (similar term)|fatuous (similar term)|inane (similar term)|mindless (similar term)|vacuous (similar term)|cockamamie (similar term)|cockamamy (similar term)|goofy (similar term)|sappy (similar term)|silly (similar term)|wacky (similar term)|whacky (similar term)|zany (similar term)|fond (similar term)|harebrained (similar term)|insane (similar term)|mad (similar term)|ill-conceived (similar term)|misguided (similar term)|rattlebrained (similar term)|rattlepated (similar term)|scatterbrained (similar term)|scatty (similar term)|unwise (similar term)|impolitic (related term)|imprudent (related term)|inadvisable (related term)|unadvisable (related term)|ill-advised (related term)|unadvised (related term)|wise (antonym)
+(adj)|anserine|dopy|dopey|goosey|goosy|gooselike|jerky|stupid (similar term)
+foolish woman|1
+(noun)|flibbertigibbet|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+foolishly|1
+(adv)|unwisely|wisely (antonym)
+foolishness|3
+(noun)|folly|unwiseness|trait (generic term)|wisdom (antonym)
+(noun)|folly|craziness|madness|stupidity (generic term)
+(noun)|stupidity|betise|folly|imbecility|mistake (generic term)|error (generic term)|fault (generic term)
+foolproof|2
+(adj)|unfailing|infallible (similar term)
+(verb)|goofproof|goof-proof|proof (generic term)
+foolscap|1
+(noun)|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+foot|14
+(noun)|ft|linear unit (generic term)
+(noun)|human foot|pes|vertebrate foot (generic term)|pedal extremity (generic term)
+(noun)|bottom (generic term)|head (antonym)
+(noun)|walk (generic term)
+(noun)|animal foot|vertebrate foot (generic term)|pedal extremity (generic term)
+(noun)|support (generic term)
+(noun)|foundation|base|fundament|groundwork|substructure|understructure|support (generic term)
+(noun)|invertebrate foot|organ (generic term)
+(noun)|infantry|army unit (generic term)
+(noun)|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+(noun)|metrical foot|metrical unit|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+(verb)|pick|pay (generic term)
+(verb)|leg it|hoof|hoof it|walk (generic term)
+(verb)|foot up|add (generic term)|add together (generic term)
+foot-and-mouth disease|1
+(noun)|hoof-and-mouth disease|animal disease (generic term)
+foot-lambert|1
+(noun)|ft-L|luminance unit (generic term)
+foot-pound|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+foot-poundal|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+foot-shaped|1
+(adj)|formed (similar term)
+foot-ton|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+foot brake|1
+(noun)|hydraulic brake (generic term)|hydraulic brakes (generic term)
+foot doctor|1
+(noun)|chiropodist|podiatrist|specialist (generic term)|medical specialist (generic term)
+foot lever|1
+(noun)|pedal|treadle|foot pedal|lever (generic term)
+foot pedal|1
+(noun)|pedal|treadle|foot lever|lever (generic term)
+foot race|1
+(noun)|footrace|run|race (generic term)
+foot rot|2
+(noun)|animal disease (generic term)
+(noun)|plant disease (generic term)
+foot rule|1
+(noun)|rule (generic term)|ruler (generic term)
+foot soldier|2
+(noun)|infantryman|marcher|footslogger|soldier (generic term)
+(noun)|subordinate|subsidiary|underling|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+foot traffic|1
+(noun)|pedestrian traffic|traffic (generic term)
+foot up|1
+(verb)|foot|add (generic term)|add together (generic term)
+footage|2
+(noun)|film (generic term)|photographic film (generic term)
+(noun)|rate (generic term)|charge per unit (generic term)
+football|2
+(noun)|football game|field game (generic term)|contact sport (generic term)
+(noun)|ball (generic term)
+football-shaped|1
+(adj)|formed (similar term)
+football coach|1
+(noun)|coach (generic term)|manager (generic term)|handler (generic term)
+football field|1
+(noun)|gridiron|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+football game|1
+(noun)|football|field game (generic term)|contact sport (generic term)
+football helmet|1
+(noun)|helmet (generic term)
+football hero|1
+(noun)|football player (generic term)|footballer (generic term)
+football league|1
+(noun)|league (generic term)|conference (generic term)
+football official|1
+(noun)|official (generic term)
+football play|1
+(noun)|play (generic term)
+football player|1
+(noun)|footballer|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+football score|1
+(noun)|score (generic term)
+football season|1
+(noun)|season (generic term)
+football stadium|1
+(noun)|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)|athletic facility (generic term)
+football team|1
+(noun)|eleven|team (generic term)|squad (generic term)
+football tee|1
+(noun)|tee|support (generic term)
+footballer|1
+(noun)|football player|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+footbath|1
+(noun)|bathtub (generic term)|bathing tub (generic term)|bath (generic term)|tub (generic term)
+footboard|2
+(noun)|platform (generic term)
+(noun)|panel (generic term)
+footbridge|1
+(noun)|overcrossing|pedestrian bridge|bridge (generic term)|span (generic term)
+footcandle|1
+(noun)|illumination unit (generic term)
+footed|1
+(adj)|flat-footed (similar term)|pedate (similar term)|swift-footed (similar term)|fast-footed (similar term)|web-footed (similar term)|web-toed (similar term)|footless (antonym)
+footedness|1
+(noun)|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+footer|3
+(noun)|linear unit (generic term)
+(noun)|pedestrian|walker|traveler (generic term)|traveller (generic term)
+(noun)|footnote|note (generic term)|annotation (generic term)|notation (generic term)
+footfall|1
+(noun)|footstep|step|sound (generic term)
+footfault|1
+(noun)|fault (generic term)
+footgear|1
+(noun)|footwear|covering (generic term)
+foothill|1
+(noun)|hill (generic term)
+foothold|3
+(noun)|bridgehead|combat zone (generic term)|combat area (generic term)
+(noun)|footing|support (generic term)
+(noun)|beachhead|accomplishment (generic term)|achievement (generic term)
+footing|3
+(noun)|terms|status (generic term)|position (generic term)
+(noun)|basis|ground|foundation (generic term)
+(noun)|foothold|support (generic term)
+footle|2
+(verb)|loiter|lounge|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+footless|1
+(adj)|apodal (similar term)|apodous (similar term)|footed (antonym)
+footlights|1
+(noun)|theater light (generic term)
+footling|1
+(adj)|fiddling|lilliputian|little|niggling|piddling|piffling|petty|picayune|trivial|unimportant (similar term)
+footlocker|1
+(noun)|locker|trunk (generic term)
+footloose|1
+(adj)|free (similar term)
+footman|1
+(noun)|manservant (generic term)
+footmark|1
+(noun)|footprint|step|mark (generic term)|print (generic term)
+footnote|2
+(noun)|footer|note (generic term)|annotation (generic term)|notation (generic term)
+(verb)|annotate|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+footpad|1
+(noun)|padder|highjacker (generic term)|highwayman (generic term)|hijacker (generic term)|road agent (generic term)
+footpath|1
+(noun)|pathway|path (generic term)
+footplate|1
+(noun)|platform (generic term)
+footprint|3
+(noun)|footmark|step|mark (generic term)|print (generic term)
+(noun)|trace (generic term)|vestige (generic term)|tincture (generic term)|shadow (generic term)
+(noun)|area (generic term)|expanse (generic term)|surface area (generic term)
+footprint evidence|1
+(noun)|footprint (generic term)|footmark (generic term)|step (generic term)|evidence (generic term)
+footrace|1
+(noun)|foot race|run|race (generic term)
+footrest|1
+(noun)|footstool|ottoman|tuffet|stool (generic term)
+footslog|1
+(verb)|slog|plod|trudge|pad|tramp|walk (generic term)
+footslogger|1
+(noun)|infantryman|marcher|foot soldier|soldier (generic term)
+footsore|1
+(adj)|tired (similar term)
+footstall|1
+(noun)|pedestal|plinth|support (generic term)
+footstep|3
+(noun)|footfall|step|sound (generic term)
+(noun)|step (generic term)
+(noun)|pace|step|stride|indefinite quantity (generic term)
+footsteps-of-spring|1
+(noun)|Sanicula arctopoides|sanicle (generic term)|snakeroot (generic term)
+footstool|1
+(noun)|footrest|ottoman|tuffet|stool (generic term)
+footsure|1
+(adj)|surefooted|sure-footed|steady (similar term)
+footwall|1
+(noun)|wall (generic term)
+footwear|2
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|footgear|covering (generic term)
+footwork|2
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+fop|1
+(noun)|dandy|dude|gallant|sheik|beau|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+foppish|1
+(adj)|dandified|dandyish|elegant (similar term)
+foppishness|1
+(noun)|dandyism|manner (generic term)|personal manner (generic term)
+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|temporarily (antonym)
+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 (similar term)
+for some reason|1
+(adv)|somehow
+for sure|2
+(adj)|unquestionable (similar term)
+(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 (generic term)|provender (generic term)
+(noun)|foraging|search (generic term)|hunt (generic term)|hunting (generic term)
+(verb)|scrounge|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|feed (generic term)|eat (generic term)
+forager|1
+(noun)|hunter (generic term)
+foraging|1
+(noun)|forage|search (generic term)|hunt (generic term)|hunting (generic term)
+foram|1
+(noun)|foraminifer|rhizopod (generic term)|rhizopodan (generic term)
+foramen|1
+(noun)|hiatus|opening (generic term)|gap (generic term)
+foramen magnum|1
+(noun)|foramen (generic term)|hiatus (generic term)
+foramen of monro|1
+(noun)|interventricular foramen|foramen of Monro|Monro's foramen|foramen (generic term)|hiatus (generic term)
+foraminifer|1
+(noun)|foram|rhizopod (generic term)|rhizopodan (generic term)
+foraminifera|1
+(noun)|Foraminifera|order Foraminifera|animal order (generic term)
+foray|4
+(noun)|raid|maraud|penetration (generic term)|incursion (generic term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(verb)|plunder|despoil|loot|reave|strip|rifle|ransack|pillage|take (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+foray into|1
+(verb)|raid|intrude on (generic term)|invade (generic term)|obtrude upon (generic term)|encroach upon (generic term)
+forbear|3
+(noun)|forebear|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+(verb)|hold back|refrain (generic term)|forbear (generic term)
+(verb)|refrain|act (antonym)
+forbearance|2
+(noun)|patience|longanimity|good nature (generic term)|impatience (antonym)
+(noun)|delay (generic term)|holdup (generic term)
+forbearing|1
+(adj)|longanimous|patient (similar term)
+forbid|2
+(verb)|prohibit|interdict|proscribe|veto|disallow|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+(verb)|prevent|forestall|foreclose|preclude
+forbiddance|2
+(noun)|ban|banning|forbidding|prohibition (generic term)
+(noun)|prohibition|inhibition|action (generic term)
+forbidden|1
+(adj)|out|prohibited|proscribed|taboo|tabu|verboten|impermissible (similar term)
+forbidden city|2
+(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital (generic term)
+(noun)|Forbidden City|section (generic term)
+forbidden fruit|1
+(noun)|temptation (generic term)|enticement (generic term)
+forbidding|3
+(adj)|dour|grim|unpleasant (similar term)
+(adj)|baleful|menacing|minacious|minatory|ominous|sinister|threatening|alarming (similar term)
+(noun)|ban|banning|forbiddance|prohibition (generic term)
+force|19
+(noun)|military unit|military force|military group|unit (generic term)|social unit (generic term)
+(noun)|power|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|physical phenomenon (generic term)
+(noun)|personnel|organization (generic term)|organisation (generic term)
+(noun)|influence (generic term)
+(noun)|violence|aggression (generic term)|hostility (generic term)
+(noun)|forcefulness|strength|intensity (generic term)|intensiveness (generic term)
+(noun)|social group (generic term)
+(noun)|effect|validity (generic term)|validness (generic term)
+(noun)|force out|force-out|force play|putout (generic term)
+(verb)|coerce|hale|squeeze|pressure|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|impel|cause (generic term)|do (generic term)|make (generic term)
+(verb)|push|move (generic term)|displace (generic term)|force out (related term)|force out (related term)|pull (antonym)
+(verb)|thrust|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|wedge|squeeze|move (generic term)|displace (generic term)
+(verb)|drive|ram|thrust (generic term)|ram down (related term)|drive in (related term)
+(verb)|act (generic term)|move (generic term)|force out (related term)|force out (related term)|force out (related term)|force back (related term)
+(verb)|pull|draw|move (generic term)|displace (generic term)|pull down (related term)|pull off (related term)|pull up (related term)|pull out (related term)|pull along (related term)|pull in (related term)|pull back (related term)|push (antonym)
+(verb)|storm|penetrate (generic term)|perforate (generic term)
+force-feed|1
+(verb)|feed (generic term)|give (generic term)
+force-feed lubricating system|1
+(noun)|lubricating system|force feed|pressure-feed lubricating system|pressure feed|mechanical system (generic term)
+force-land|1
+(verb)|land (generic term)|set down (generic term)
+force-out|1
+(noun)|force out|force play|force|putout (generic term)
+force 17|1
+(noun)|Force 17|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+force back|1
+(verb)|repel|drive|repulse|push back|beat back|push (generic term)|force (generic term)|attract (antonym)
+force feed|1
+(noun)|lubricating system|force-feed lubricating system|pressure-feed lubricating system|pressure feed|mechanical system (generic term)
+force field|1
+(noun)|field|field of force|physical phenomenon (generic term)
+force majeure|1
+(noun)|act of God|vis major|inevitable accident|unavoidable casualty|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+force out|9
+(noun)|force-out|force play|force|putout (generic term)
+(verb)|depose|oust (generic term)|throw out (generic term)|drum out (generic term)|boot out (generic term)|kick out (generic term)|expel (generic term)
+(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|rout out|drive out|rouse|move (generic term)|displace (generic term)
+(verb)|displace|move (generic term)|displace (generic term)
+(verb)|evict|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+(verb)|squirt|squeeze out|eject|discharge (generic term)
+(verb)|gouge|mutilate (generic term)|mar (generic term)|gouge out (related term)
+(verb)|emit (generic term)|breathe (generic term)|pass off (generic term)
+force per unit area|1
+(noun)|pressure|pressure level|physical phenomenon (generic term)
+force play|1
+(noun)|force out|force-out|force|putout (generic term)
+force pump|1
+(noun)|pump (generic term)
+force unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+forced|3
+(adj)|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+(adj)|unexpected|unscheduled (similar term)
+(adj)|constrained|strained|affected (similar term)|unnatural (similar term)
+forced feeding|1
+(noun)|gavage|feeding (generic term)|alimentation (generic term)
+forced landing|1
+(noun)|emergency landing|aircraft landing (generic term)|airplane landing (generic term)
+forced sale|1
+(noun)|sheriff's sale|execution sale|judicial sale|sale (generic term)|sales agreement (generic term)
+forceful|2
+(adj)|bruising (similar term)|drastic (similar term)|emphatic (similar term)|exclamatory (similar term)|firm (similar term)|strong (similar term)|forcible (similar term)|physical (similar term)|strong-arm (similar term)|impellent (similar term)|impetuous (similar term)|sharp (similar term)|forceless (antonym)
+(adj)|emphatic|assertive (similar term)
+forcefulness|1
+(noun)|force|strength|intensity (generic term)|intensiveness (generic term)
+forceless|1
+(adj)|unforceful|wimpish (similar term)|wimpy (similar term)|forceful (antonym)
+forcemeat|1
+(noun)|farce|stuffing (generic term)|dressing (generic term)
+forceps|1
+(noun)|extractor (generic term)
+forceps delivery|1
+(noun)|delivery (generic term)|obstetrical delivery (generic term)
+forces of umar al-mukhtar|1
+(noun)|Forces of Umar Al-Mukhtar|Umar al-Mukhtar Forces|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+forcible|1
+(adj)|physical|strong-arm|forceful (similar term)
+forcing out|1
+(noun)|expulsion|projection|ejection|propulsion (generic term)|actuation (generic term)
+forcipate|1
+(adj)|extractor (related term)
+ford|9
+(noun)|Ford|John Ford|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Ford|Henry Ford II|industrialist (generic term)
+(noun)|Ford|Edsel Bryant Ford|industrialist (generic term)
+(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer (generic term)|author (generic term)
+(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Ford|Henry Ford|industrialist (generic term)
+(noun)|crossing|body of water (generic term)|water (generic term)
+(noun)|fording|crossing (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+ford hermann hueffer|1
+(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer (generic term)|author (generic term)
+ford madox ford|1
+(noun)|Ford|Ford Madox Ford|Ford Hermann Hueffer|writer (generic term)|author (generic term)
+fordable|1
+(adj)|shallow (similar term)
+fordhooks|1
+(noun)|Fordhooks|lima bean (generic term)
+fording|1
+(noun)|ford|crossing (generic term)
+fore|3
+(adj)|foremost (similar term)|forward (related term)|front (related term)|aft (antonym)
+(noun)|bow|prow|stem|front (generic term)
+(adv)|forward|aft (antonym)
+fore-and-aft|1
+(adj)|lengthwise (similar term)|lengthways (similar term)
+fore-and-aft rig|1
+(noun)|rig (generic term)|rigging (generic term)
+fore-and-aft sail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+fore-and-aft topsail|1
+(noun)|gaff topsail|fore-and-aft sail (generic term)
+fore-and-after|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+fore-topmast|1
+(noun)|topmast (generic term)
+fore-topsail|1
+(noun)|topsail (generic term)
+fore-wing|1
+(noun)|forewing|fore wing|wing (generic term)
+fore edge|1
+(noun)|foredge|part (generic term)|portion (generic term)
+fore plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+fore wing|1
+(noun)|forewing|fore-wing|wing (generic term)
+forearm|2
+(noun)|limb (generic term)
+(verb)|arm (generic term)|build up (generic term)|fortify (generic term)|gird (generic term)
+forebear|1
+(noun)|forbear|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+forebode|1
+(verb)|predict|foretell|prognosticate|call|anticipate|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+foreboding|3
+(adj)|fateful|portentous|prophetic (similar term)|prophetical (similar term)
+(noun)|premonition|presentiment|boding|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|omen (generic term)|portent (generic term)|presage (generic term)|prognostic (generic term)|prognostication (generic term)|prodigy (generic term)
+forebrain|1
+(noun)|prosencephalon|neural structure (generic term)
+forecast|4
+(noun)|prognosis|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+(verb)|calculate|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|calculate|estimate|reckon|count on|figure|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+forecaster|1
+(noun)|predictor|prognosticator|soothsayer|visionary (generic term)|illusionist (generic term)|seer (generic term)
+forecasting|1
+(noun)|prediction|foretelling|prognostication|statement (generic term)
+forecastle|1
+(noun)|fo'c'sle|living quarters (generic term)|quarters (generic term)
+foreclose|2
+(verb)|prevent|forestall|preclude|forbid
+(verb)|reclaim (generic term)|repossess (generic term)
+foreclosure|1
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+forecourt|1
+(noun)|court (generic term)|courtyard (generic term)
+foredate|1
+(verb)|predate|antedate|chronologize (generic term)|chronologise (generic term)|postdate (antonym)
+foredeck|1
+(noun)|deck (generic term)
+foredge|1
+(noun)|fore edge|part (generic term)|portion (generic term)
+foredoom|1
+(verb)|sentence (generic term)|condemn (generic term)|doom (generic term)
+forefather|2
+(noun)|father|sire|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+(noun)|predecessor (generic term)
+forefinger|1
+(noun)|index|index finger|finger (generic term)
+forefoot|1
+(noun)|animal foot (generic term)|foot (generic term)
+forefront|2
+(noun)|head|front (generic term)|front end (generic term)|forepart (generic term)
+(noun)|vanguard|cutting edge|position (generic term)|view (generic term)|perspective (generic term)
+foregather|1
+(verb)|meet|gather|assemble|forgather|interact (generic term)
+forego|1
+(verb)|predate|precede|forgo|antecede|antedate|postdate (antonym)
+foregoing|1
+(adj)|preceding (similar term)
+foregone|1
+(adj)|bygone|bypast|departed|gone|past (similar term)
+foregone conclusion|2
+(noun)|matter of course|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|certainty|sure thing|quality (generic term)|uncertainty (antonym)
+foreground|3
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|window (generic term)
+(verb)|highlight|spotlight|play up|bring out (generic term)|set off (generic term)|play down (antonym)|background (antonym)
+foreground processing|1
+(noun)|foregrounding|priority processing (generic term)
+foregrounding|1
+(noun)|foreground processing|priority processing (generic term)
+forehand|2
+(adj)|forehanded|backhand (antonym)
+(noun)|forehand stroke|forehand shot|return (generic term)
+forehand drive|1
+(noun)|drive (generic term)
+forehand shot|1
+(noun)|forehand|forehand stroke|return (generic term)
+forehand stroke|1
+(noun)|forehand|forehand shot|return (generic term)
+forehanded|2
+(adj)|forehand|backhand (antonym)
+(adj)|provident (similar term)
+forehead|2
+(noun)|brow|feature (generic term)|lineament (generic term)
+(noun)|frontal bone|os frontale|membrane bone (generic term)
+foreign|4
+(adj)|abroad (similar term)|overseas (similar term)|external (similar term)|international (similar term)|outside (similar term)|international (related term)|domestic (antonym)
+(adj)|strange|adventive (similar term)|alien (similar term)|exotic (similar term)|nonnative (similar term)|established (similar term)|naturalized (similar term)|foreign-born (similar term)|nonnative (similar term)|imported (similar term)|tramontane (similar term)|unnaturalized (similar term)|unnaturalised (similar term)|native (antonym)
+(adj)|alien|extrinsic (similar term)
+(adj)|extraneous|adulterating (similar term)|adulterant (similar term)
+foreign-born|1
+(adj)|nonnative|foreign (similar term)|strange (similar term)
+foreign agent|1
+(noun)|spy (generic term)|undercover agent (generic term)
+foreign aid|1
+(noun)|aid (generic term)|economic aid (generic term)
+foreign bill|1
+(noun)|foreign draft|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+foreign correspondent|1
+(noun)|correspondent (generic term)|newspaperman (generic term)|newspaperwoman (generic term)|newswriter (generic term)|pressman (generic term)
+foreign country|1
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+foreign direct investment|2
+(noun)|investing (generic term)|investment (generic term)
+(noun)|joint venture (generic term)
+foreign draft|1
+(noun)|foreign bill|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+foreign exchange|1
+(noun)|exchange (generic term)|interchange (generic term)
+foreign intelligence service|1
+(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency (generic term)
+foreign intelligence surveillance act|1
+(noun)|Foreign Intelligence Surveillance Act|FISA|legislative act (generic term)|statute (generic term)
+foreign intelligence surveillance court|1
+(noun)|Foreign Intelligence Surveillance Court|F.I.S.C.|court (generic term)|tribunal (generic term)|judicature (generic term)
+foreign legion|1
+(noun)|legion (generic term)
+foreign minister|1
+(noun)|secretary of state|minister (generic term)|government minister (generic term)
+foreign mission|2
+(noun)|mission|missionary post|missionary station|nongovernmental organization (generic term)|NGO (generic term)
+(noun)|legation|diplomatic mission (generic term)
+foreign office|1
+(noun)|Foreign Office|ministry (generic term)
+foreign policy|1
+(noun)|policy (generic term)
+foreign service|1
+(noun)|Foreign Service|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+foreign terrorist organization|1
+(noun)|terrorist organization|terrorist group|FTO|political movement (generic term)
+foreigner|2
+(noun)|alien|noncitizen|outlander|traveler (generic term)|traveller (generic term)|citizen (antonym)
+(noun)|outsider|stranger (generic term)|alien (generic term)|unknown (generic term)
+foreignness|1
+(noun)|strangeness|curiousness|quality (generic term)|nativeness (antonym)
+foreknow|1
+(verb)|anticipate|previse|foresee|know (generic term)
+foreknowledge|1
+(noun)|precognition|clairvoyance (generic term)|second sight (generic term)|extrasensory perception (generic term)|E.S.P. (generic term)|ESP (generic term)
+forelady|1
+(noun)|forewoman|foreperson (generic term)
+foreland|2
+(noun)|promontory|headland|head|natural elevation (generic term)|elevation (generic term)
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+foreleg|1
+(noun)|forelimb (generic term)
+forelimb|1
+(noun)|limb (generic term)
+forelock|2
+(noun)|lock (generic term)|curl (generic term)|ringlet (generic term)|whorl (generic term)
+(noun)|foretop|hair (generic term)
+foreman|2
+(noun)|chief|gaffer|honcho|boss|supervisor (generic term)
+(noun)|foreperson (generic term)
+foremanship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+foremast|1
+(noun)|mast (generic term)
+foremilk|1
+(noun)|colostrum|milk (generic term)
+foremost|5
+(adj)|first|world-class|best (similar term)
+(adj)|fore (similar term)
+(adj)|frontmost|front (similar term)
+(adv)|first
+(adv)|first|firstly|first of all|first off
+foremother|1
+(noun)|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+forename|1
+(noun)|first name|given name|name (generic term)
+forenoon|1
+(noun)|morning|morn|morning time|time period (generic term)|period of time (generic term)|period (generic term)
+forensic|1
+(adj)|rhetorical (similar term)
+forensic medicine|1
+(noun)|forensic pathology|medicine (generic term)|medical specialty (generic term)
+forensic pathology|1
+(noun)|forensic medicine|medicine (generic term)|medical specialty (generic term)
+foreordain|2
+(verb)|predestine|predestinate|predetermine (generic term)
+(verb)|predestine|preordain|predetermine (generic term)
+foreordained|1
+(adj)|predestinate|predestined|certain (similar term)|sure (similar term)
+foreordination|1
+(noun)|predestination|preordination|predetermination|theological doctrine (generic term)
+forepart|1
+(noun)|front|front end|side (generic term)|face (generic term)|rear (antonym)
+forepaw|1
+(noun)|paw (generic term)
+foreperson|1
+(noun)|juror (generic term)|juryman (generic term)|jurywoman (generic term)
+foreplay|1
+(noun)|arousal|stimulation|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+forequarter|1
+(noun)|cut (generic term)|cut of meat (generic term)
+forerunner|3
+(noun)|antecedent|temporal relation (generic term)
+(noun)|precursor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|harbinger|herald|precursor|indication (generic term)|indicant (generic term)
+foresail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+foresee|3
+(verb)|anticipate|previse|foreknow|know (generic term)
+(verb)|envision|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|anticipate|forestall|counter|act (generic term)|move (generic term)
+foreseeable|1
+(adj)|predictable (similar term)
+foreseen|1
+(adj)|foretold|predicted|expected (similar term)
+foreshadow|1
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+foreshadowing|2
+(adj)|adumbrative|prefigurative|prophetic (similar term)|prophetical (similar term)
+(noun)|prefiguration|adumbration|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+foreshank|1
+(noun)|shank (generic term)
+foreshock|1
+(noun)|tremor (generic term)|earth tremor (generic term)|microseism (generic term)
+foreshore|1
+(noun)|geological formation (generic term)|formation (generic term)
+foreshorten|2
+(verb)|abridge|abbreviate|shorten|cut|contract|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+(verb)|shorten (generic term)
+foreshow|1
+(verb)|bode (generic term)|portend (generic term)|auspicate (generic term)|prognosticate (generic term)|omen (generic term)|presage (generic term)|betoken (generic term)|foreshadow (generic term)|augur (generic term)|foretell (generic term)|prefigure (generic term)|forecast (generic term)|predict (generic term)
+foresight|2
+(noun)|foresightedness|foresightfulness|providence (generic term)
+(noun)|prevision|farsightedness|prospicience|knowing (generic term)
+foresighted|1
+(adj)|farseeing|farsighted|foresightful|prospicient|long|longsighted|provident (similar term)
+foresightedness|1
+(noun)|foresight|foresightfulness|providence (generic term)
+foresightful|1
+(adj)|farseeing|farsighted|foresighted|prospicient|long|longsighted|provident (similar term)
+foresightfulness|1
+(noun)|foresight|foresightedness|providence (generic term)
+foreskin|1
+(noun)|prepuce|skin (generic term)|tegument (generic term)|cutis (generic term)
+forest|3
+(noun)|wood|woods|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|woodland|timberland|timber|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)|biome (generic term)
+(verb)|afforest|plant (generic term)|set (generic term)
+forest fire|1
+(noun)|fire (generic term)
+forest fire fighter|1
+(noun)|fire warden|ranger|official (generic term)|functionary (generic term)|fireman (generic term)|firefighter (generic term)|fire fighter (generic term)|fire-eater (generic term)
+forest goat|1
+(noun)|spindle horn|Pseudoryx nghetinhensis|bovid (generic term)
+forest god|1
+(noun)|satyr|Greek deity (generic term)
+forest red gum|1
+(noun)|Eucalypt tereticornis|flooded gum (generic term)
+forest tent caterpillar|1
+(noun)|Malacosoma disstria|tent caterpillar (generic term)
+forestage|1
+(noun)|proscenium|apron|stage (generic term)
+forestall|2
+(verb)|prevent|foreclose|preclude|forbid
+(verb)|anticipate|foresee|counter|act (generic term)|move (generic term)
+forestalling|1
+(noun)|obviation|preclusion|prevention (generic term)|bar (generic term)
+forestay|1
+(noun)|stay (generic term)
+forested|1
+(adj)|wooded (similar term)
+forester|2
+(noun)|Forester|C. S. Forester|Cecil Scott Forester|writer (generic term)|author (generic term)
+(noun)|tree farmer|arboriculturist|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+forestiera|1
+(noun)|shrub (generic term)|bush (generic term)
+forestiera neomexicana|1
+(noun)|tanglebush|desert olive|Forestiera neomexicana|forestiera (generic term)
+forestry|1
+(noun)|biology (generic term)|biological science (generic term)
+foreswear|2
+(verb)|waive|relinquish|forgo|dispense with
+(verb)|renounce|quit|relinquish|abandon (generic term)|give up (generic term)
+foretaste|1
+(noun)|expectation (generic term)|outlook (generic term)|prospect (generic term)
+foretell|3
+(verb)|announce|annunciate|harbinger|herald|tell (generic term)
+(verb)|predict|prognosticate|call|forebode|anticipate|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+foretelling|2
+(noun)|prediction|forecasting|prognostication|statement (generic term)
+(noun)|divination|soothsaying|fortune telling|prophecy (generic term)|prognostication (generic term)|vaticination (generic term)
+forethought|2
+(noun)|premeditation|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|caution|precaution|care|judiciousness (generic term)
+forethoughtful|1
+(adj)|provident (similar term)
+foretoken|1
+(noun)|augury|sign|preindication|experience (generic term)
+foretold|1
+(adj)|foreseen|predicted|expected (similar term)
+foretop|2
+(noun)|platform (generic term)
+(noun)|forelock|hair (generic term)
+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 (generic term)
+forewarning|1
+(noun)|premonition|warning (generic term)
+forewing|1
+(noun)|fore-wing|fore wing|wing (generic term)
+forewoman|2
+(noun)|forelady|foreperson (generic term)
+(noun)|supervisor (generic term)
+foreword|1
+(noun)|preface|prolusion|introduction (generic term)
+forfeit|5
+(adj)|confiscate|forfeited|lost (similar term)
+(noun)|forfeiture|loss (generic term)
+(noun)|forfeiture|penalty (generic term)
+(noun)|forfeiture|sacrifice|act (generic term)|human action (generic term)|human activity (generic term)
+(verb)|give up|throw overboard|waive|forgo|abandon (generic term)|claim (antonym)
+forfeited|1
+(adj)|confiscate|forfeit|lost (similar term)
+forfeiture|3
+(noun)|forfeit|loss (generic term)
+(noun)|forfeit|penalty (generic term)
+(noun)|forfeit|sacrifice|act (generic term)|human action (generic term)|human activity (generic term)
+forficate|1
+(adj)|bifurcate|biramous|branched|forked|fork-like|pronged|prongy|divided (similar term)
+forficula|1
+(noun)|Forficula|genus Forficula|arthropod genus (generic term)
+forficula auricularia|1
+(noun)|common European earwig|Forficula auricularia|earwig (generic term)
+forficulidae|1
+(noun)|Forficulidae|family Forficulidae|arthropod family (generic term)
+forgather|1
+(verb)|meet|gather|assemble|foregather|interact (generic term)
+forge|9
+(noun)|furnace (generic term)
+(noun)|smithy|workplace (generic term)|work (generic term)
+(verb)|hammer|beat (generic term)
+(verb)|fake|counterfeit|re-create (generic term)
+(verb)|invent|contrive|devise|excogitate|formulate|create by mental act (generic term)|create mentally (generic term)
+(verb)|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|spurt|spirt|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|shape|form|work|mold|mould|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|fashion|make (generic term)
+forged|1
+(adj)|bad|counterfeit (similar term)|imitative (similar term)
+forger|2
+(noun)|smith (generic term)|metalworker (generic term)
+(noun)|counterfeiter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+forgery|2
+(noun)|imitation|counterfeit|copy (generic term)
+(noun)|falsification (generic term)|falsehood (generic term)|crime (generic term)|law-breaking (generic term)
+forget|4
+(verb)|bury|remember (antonym)
+(verb)|block|blank out|draw a blank|remember (antonym)
+(verb)|neglect (generic term)|pretermit (generic term)|omit (generic term)|drop (generic term)|miss (generic term)|leave out (generic term)|overlook (generic term)|overleap (generic term)|mind (antonym)
+(verb)|leave|lose (generic term)
+forget-me-not|1
+(noun)|mouse ear|Myosotis scorpiodes|herb (generic term)|herbaceous plant (generic term)
+forget me drug|1
+(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+forgetful|3
+(adj)|unretentive|short|unmindful (related term)|forgetful (related term)|mindless (related term)|retentive (antonym)
+(adj)|unmindful|mindless|amnesic (similar term)|amnesiac (similar term)|mindful (antonym)
+(adj)|oblivious|inattentive (similar term)
+forgetful person|1
+(noun)|scatterbrain|simpleton (generic term)|simple (generic term)
+forgetfulness|2
+(noun)|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+(noun)|unknowingness (generic term)|unawareness (generic term)
+forgettable|1
+(adj)|unmemorable (similar term)|unforgettable (antonym)
+forging|1
+(noun)|formation (generic term)|shaping (generic term)
+forgivable|1
+(adj)|excusable|venial|pardonable (similar term)
+forgivably|1
+(adv)|excusably|pardonably|unpardonably (antonym)|unforgivably (antonym)|inexcusably (antonym)
+forgive|2
+(verb)|concede (generic term)|yield (generic term)|grant (generic term)
+(verb)|exempt (generic term)|relieve (generic term)|free (generic term)
+forgiveness|2
+(noun)|mercifulness (generic term)|mercy (generic term)
+(noun)|pardon|kindness (generic term)|benignity (generic term)
+forgiver|1
+(noun)|pardoner|excuser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+forgiving|2
+(adj)|kind (similar term)|tolerant (similar term)|unvindictive (similar term)|unforgiving (antonym)
+(adj)|absolvitory|exonerative|exculpatory (similar term)
+forgivingly|1
+(adv)|unforgivingly (antonym)
+forgivingness|1
+(noun)|kindness|mercifulness (generic term)|mercy (generic term)
+forgo|4
+(verb)|waive|relinquish|foreswear|dispense with
+(verb)|predate|precede|forego|antecede|antedate|postdate (antonym)
+(verb)|forfeit|give up|throw overboard|waive|abandon (generic term)|claim (antonym)
+(verb)|give up
+forgoing|1
+(noun)|renunciation|forswearing|rejection (generic term)
+forgotten|2
+(adj)|disregarded|unnoticed (similar term)
+(adj)|lost|unrecoverable (similar term)|irrecoverable (similar term)
+forint|1
+(noun)|Hungarian monetary unit (generic term)
+fork|9
+(noun)|cutlery (generic term)|eating utensil (generic term)
+(noun)|branching|ramification|forking|division (generic term)
+(noun)|crotch|branch (generic term)|leg (generic term)|ramification (generic term)
+(noun)|tool (generic term)
+(noun)|crotch|angle (generic term)
+(verb)|pitchfork|lift (generic term)
+(verb)|attack (generic term)|aggress (generic term)
+(verb)|branch|ramify|furcate|separate|diverge (generic term)|branch out (related term)
+(verb)|shape (generic term)|form (generic term)
+fork-like|1
+(adj)|bifurcate|biramous|branched|forked|forficate|pronged|prongy|divided (similar term)
+fork out|1
+(verb)|hand over|fork over|fork up|turn in|get in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+fork over|1
+(verb)|hand over|fork out|fork up|turn in|get in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+fork up|1
+(verb)|hand over|fork over|fork out|turn in|get in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+forked|2
+(adj)|bifurcate|biramous|branched|fork-like|forficate|pronged|prongy|divided (similar term)
+(adj)|double|equivocal (similar term)|ambiguous (similar term)
+forked lightning|1
+(noun)|chain lightning|lightning (generic term)
+forking|2
+(noun)|furcation|angular shape (generic term)|angularity (generic term)
+(noun)|branching|ramification|fork|division (generic term)
+forklift|1
+(noun)|self-propelled vehicle (generic term)
+forlorn|1
+(adj)|hopeless (similar term)
+forlorn hope|1
+(noun)|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+forlornness|1
+(noun)|loneliness|desolation|sadness (generic term)|unhappiness (generic term)
+form|23
+(noun)|word form|signifier|descriptor|word (generic term)
+(noun)|kind|sort|variety|category (generic term)
+(noun)|shape|pattern|structure (generic term)
+(noun)|shape|configuration|contour|conformation|spatial property (generic term)|spatiality (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|shape|attribute (generic term)
+(noun)|shape|cast|appearance (generic term)|visual aspect (generic term)
+(noun)|phase|state of matter (generic term)|state (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|variant|strain|var.|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|writing style (generic term)|literary genre (generic term)|genre (generic term)
+(noun)|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|class|grade|gathering (generic term)|assemblage (generic term)
+(noun)|ability (generic term)
+(noun)|mannequin|manikin|mannikin|manakin|dummy (generic term)
+(noun)|mold (generic term)|mould (generic term)|cast (generic term)
+(verb)|constitute|make|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|organize|organise|make (generic term)|create (generic term)
+(verb)|take form|take shape|spring|become (generic term)
+(verb)|shape|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|shape|work|mold|mould|forge|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|imprint|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|change (generic term)
+form-only|1
+(adj)|formal (similar term)
+form class|1
+(noun)|part of speech|word class|grammatical category (generic term)|syntactic category (generic term)
+form division|1
+(noun)|division (generic term)
+form family|1
+(noun)|family (generic term)
+form genus|1
+(noun)|genus (generic term)
+form genus rhizoctinia|1
+(noun)|genus Rhizoctinia|form genus Rhizoctinia|fungus genus (generic term)
+form letter|1
+(noun)|letter (generic term)|missive (generic term)
+form of address|1
+(noun)|title|title of respect|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+form of government|1
+(noun)|political system|social group (generic term)
+formal|8
+(adj)|ceremonial (similar term)|ceremonious (similar term)|conventional (similar term)|dress (similar term)|full-dress (similar term)|form-only (similar term)|full-dress (similar term)|dress (similar term)|nominal (similar term)|titular (similar term)|positive (similar term)|prescribed (similar term)|pro forma (similar term)|perfunctory (similar term)|semiformal (similar term)|semi-formal (similar term)|black-tie (similar term)|starchy (similar term)|stiff (similar term)|buckram (similar term)|white-tie (similar term)|conventional (related term)|formal (related term)|informal (antonym)
+(adj)|official (similar term)
+(adj)|literary (similar term)|formal (related term)|rhetorical (related term)|informal (antonym)
+(adj)|conventional|schematic|nonrepresentational (similar term)
+(adj)|logical (similar term)
+(adj)|courtly|stately|dignified (similar term)
+(noun)|ball|dance (generic term)
+(noun)|dinner dress|dinner gown|evening gown|gown (generic term)|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+formal garden|1
+(noun)|garden (generic term)
+formal logic|1
+(noun)|symbolic logic|mathematical logic|logic (generic term)|logical system (generic term)|system of logic (generic term)
+formal semantics|1
+(noun)|semantics (generic term)
+formaldehyde|1
+(noun)|methanal|aldehyde (generic term)|gas (generic term)
+formalin|1
+(noun)|formol|solution (generic term)
+formalisation|1
+(noun)|formalization|systematization (generic term)|systematisation (generic term)|rationalization (generic term)|rationalisation (generic term)
+formalise|2
+(verb)|formalize|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|validate|formalize|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|invalidate (antonym)
+formalised|2
+(adj)|formalistic|formalized|practice|pattern (related term)
+(adj)|formalized|official (similar term)
+formalism|3
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|imitation (antonym)
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+formalistic|1
+(adj)|formalized|formalised|practice|pattern (related term)
+formalities|1
+(noun)|formality|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+formality|3
+(noun)|formalities|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|formalness|manner (generic term)|personal manner (generic term)|informality (antonym)
+(noun)|conformity (generic term)|conformation (generic term)|compliance (generic term)|abidance (generic term)
+formalization|1
+(noun)|formalisation|systematization (generic term)|systematisation (generic term)|rationalization (generic term)|rationalisation (generic term)
+formalize|2
+(verb)|formalise|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|validate|formalise|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|invalidate (antonym)
+formalized|2
+(adj)|formalistic|formalised|practice|pattern (related term)
+(adj)|formalised|official (similar term)
+formally|2
+(adv)|officially
+(adv)|informally (antonym)
+formalness|1
+(noun)|formality|manner (generic term)|personal manner (generic term)|informality (antonym)
+formalwear|1
+(noun)|eveningwear|evening dress|evening clothes|attire (generic term)|garb (generic term)|dress (generic term)
+format|5
+(noun)|formatting|data format|data formatting|information (generic term)|info (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(verb)|arrange|change (generic term)
+(verb)|determine (generic term)|set (generic term)
+(verb)|initialize|initialise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+formation|7
+(noun)|arrangement (generic term)
+(noun)|placement (generic term)|arrangement (generic term)
+(noun)|shaping|fabrication (generic term)|manufacture (generic term)
+(noun)|constitution|establishment|organization|organisation|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|geological formation|object (generic term)|physical object (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|creating by mental acts (generic term)
+formative|4
+(adj)|young (similar term)|immature (similar term)
+(adj)|constructive (similar term)
+(adj)|shaping|plastic|constructive (similar term)
+(noun)|language unit (generic term)|linguistic unit (generic term)
+formative cell|1
+(noun)|embryonic cell|cell (generic term)
+formatted capacity|1
+(noun)|capacity (generic term)
+formatting|1
+(noun)|format|data format|data formatting|information (generic term)|info (generic term)
+formed|5
+(adj)|defined|settled|definite (similar term)
+(adj)|ductile (similar term)|malleable (similar term)|pliable (similar term)|pliant (similar term)|tensile (similar term)|tractile (similar term)|acorn-shaped (similar term)|awl-shaped (similar term)|bacillar (similar term)|bacillary (similar term)|bacilliform (similar term)|baculiform (similar term)|rod-shaped (similar term)|bag-shaped (similar term)|bar-shaped (similar term)|basket-shaped (similar term)|belt-shaped (similar term)|biform (similar term)|blown (similar term)|boot-shaped (similar term)|bottle-shaped (similar term)|botuliform (similar term)|butterfly-shaped (similar term)|button-shaped (similar term)|cast (similar term)|catenulate (similar term)|chainlike (similar term)|claw-shaped (similar term)|club-shaped (similar term)|club-shaped (similar term)|cowl-shaped (similar term)|cross-shaped (similar term)|die-cast (similar term)|drum-shaped (similar term)|drum-like (similar term)|eel-shaped (similar term)|fan-shaped (similar term)|fig-shaped (similar term)|foot-shaped (similar term)|football-shaped (similar term)|funnel-shaped (similar term)|guitar-shaped (similar term)|hammer-shaped (similar term)|harp-shaped (similar term)|hook-shaped (similar term)|horn-shaped (similar term)|hourglass-shaped (similar term)|H-shaped (similar term)|keel-shaped (similar term)|lance-shaped (similar term)|lancet-shaped (similar term)|lip-shaped (similar term)|L-shaped (similar term)|lyre-shaped (similar term)|navicular (similar term)|scaphoid (similar term)|nutmeg-shaped (similar term)|oven-shaped (similar term)|paddle-shaped (similar term)|perfected (similar term)|phylliform (similar term)|pitcher-shaped (similar term)|precast (similar term)|ribbon-shaped (similar term)|rudder-like (similar term)|saddle-shaped (similar term)|slipper-shaped (similar term)|shaped (similar term)|molded (similar term)|wrought (similar term)|spade-shaped (similar term)|spade-like (similar term)|spider-shaped (similar term)|spoon-shaped (similar term)|s-shaped (similar term)|stirrup-shaped (similar term)|tassel-shaped (similar term)|T-shaped (similar term)|tadpole-shaped (similar term)|thimble-shaped (similar term)|trumpet-shaped (similar term)|turnip-shaped (similar term)|umbrella-shaped (similar term)|U-shaped (similar term)|vase-shaped (similar term)|vermiform (similar term)|worm-shaped (similar term)|v-shaped (similar term)|W-shaped (similar term)|Y-shaped (similar term)|unformed (antonym)
+(adj)|conceived|planned (similar term)
+(adj)|organized (similar term)
+(adj)|developed (similar term)
+former|5
+(adj)|latter (antonym)
+(adj)|erstwhile|old|onetime|quondam|sometime|past (similar term)
+(adj)|late|previous|past (similar term)
+(adj)|early|other|past (similar term)
+(noun)|first (generic term)|number one (generic term)|latter (antonym)
+former armed forces|1
+(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+formerly|1
+(adv)|once|at one time|erstwhile|erst
+formic|2
+(adj)|hymenopterous insect|hymenopteran|hymenopteron|hymenopter (related term)
+(adj)|acid (related term)
+formic acid|1
+(noun)|acid (generic term)
+formica|2
+(noun)|Formica|plastic laminate (generic term)
+(noun)|Formica|genus Formica|arthropod genus (generic term)
+formica fusca|1
+(noun)|Formica fusca|slave ant (generic term)
+formica rufa|1
+(noun)|wood ant|Formica rufa|ant (generic term)|emmet (generic term)|pismire (generic term)
+formica sanguinea|1
+(noun)|sanguinary ant|Formica sanguinea|slave-making ant (generic term)|slave-maker (generic term)
+formicariidae|1
+(noun)|Formicariidae|family Formicariidae|bird family (generic term)
+formicarius|1
+(noun)|Formicarius|genus Formicarius|bird genus (generic term)
+formicary|1
+(noun)|anthill|knoll (generic term)|mound (generic term)|hillock (generic term)|hummock (generic term)|hammock (generic term)
+formicate|1
+(verb)|crawl (generic term)|creep (generic term)
+formication|1
+(noun)|paresthesia (generic term)|paraesthesia (generic term)
+formicidae|1
+(noun)|Formicidae|family Formicidae|arthropod family (generic term)
+formidability|1
+(noun)|toughness|difficulty (generic term)|difficultness (generic term)
+formidable|2
+(adj)|impressive (similar term)
+(adj)|redoubtable|unnerving|alarming (similar term)
+formless|2
+(adj)|amorphous|shapeless|unformed (similar term)
+(adj)|unbodied (similar term)
+formol|1
+(noun)|formalin|solution (generic term)
+formosa|1
+(noun)|Taiwan|Formosa|island (generic term)
+formosan|2
+(adj)|Taiwanese|Chinese|Formosan|island (related term)
+(noun)|Formosan|Austronesian (generic term)|Austronesian language (generic term)
+formula|7
+(noun)|expression|mathematical statement (generic term)
+(noun)|recipe|direction (generic term)|instruction (generic term)
+(noun)|statement (generic term)
+(noun)|chemical formula|statement (generic term)
+(noun)|convention|normal|pattern|rule|practice (generic term)
+(noun)|milk (generic term)
+(noun)|rule|procedure (generic term)|process (generic term)
+formulaic|1
+(adj)|conventional (similar term)
+formularise|1
+(verb)|formularize|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+formularize|1
+(verb)|formularise|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+formulary|2
+(adj)|statement (related term)
+(noun)|pharmacopeia|book (generic term)
+formulate|4
+(verb)|explicate|develop|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+(verb)|invent|contrive|devise|excogitate|forge|create by mental act (generic term)|create mentally (generic term)
+(verb)|give voice|word|phrase|articulate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+formulated|1
+(adj)|developed (similar term)
+formulation|3
+(noun)|preparation|compound (generic term)|chemical compound (generic term)
+(noun)|conceptualization|conceptualisation|creating by mental acts (generic term)
+(noun)|expression|expressive style (generic term)|style (generic term)
+fornax|1
+(noun)|Fornax|constellation (generic term)
+fornicate|1
+(verb)|roll in the hay (generic term)|love (generic term)|make out (generic term)|make love (generic term)|sleep with (generic term)|get laid (generic term)|have sex (generic term)|know (generic term)|do it (generic term)|be intimate (generic term)|have intercourse (generic term)|have it away (generic term)|have it off (generic term)|screw (generic term)|fuck (generic term)|jazz (generic term)|eff (generic term)|hump (generic term)|lie with (generic term)|bed (generic term)|have a go at it (generic term)|bang (generic term)|get it on (generic term)|bonk (generic term)
+fornication|2
+(noun)|extramarital sex (generic term)|free love (generic term)
+(noun)|adultery|criminal conversation|extramarital sex (generic term)|free love (generic term)
+fornicator|1
+(noun)|adulterer|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+fornicatress|1
+(noun)|adulteress|hussy|jade|loose woman|slut|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+fornix|2
+(noun)|body part (generic term)
+(noun)|trigonum cerebrale|fiber bundle (generic term)|fibre bundle (generic term)|fascicle (generic term)|fasciculus (generic term)
+forrad|1
+(adv)|forward|forwards|frontward|frontwards|forrard|backward (antonym)
+forrader|1
+(adv)|ahead|onward|onwards|forward|forwards
+forrard|1
+(adv)|forward|forwards|frontward|frontwards|forrad|backward (antonym)
+forsake|1
+(verb)|abandon|desolate|desert|leave (generic term)
+forsaking|2
+(noun)|giving up|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+(noun)|abandonment|desertion|rejection (generic term)
+forseti|1
+(noun)|Forseti|Norse deity (generic term)
+forssman antibody|1
+(noun)|heterophil antibody|heterophile antibody|Forssman antibody|antibody (generic term)
+forswear|1
+(verb)|abjure|recant|retract|resile|renounce (generic term)|repudiate (generic term)
+forswearing|1
+(noun)|renunciation|forgoing|rejection (generic term)
+forsythia|1
+(noun)|shrub (generic term)|bush (generic term)
+fort|5
+(noun)|garrison|military post (generic term)|post (generic term)
+(noun)|fortress|defensive structure (generic term)|defense (generic term)|defence (generic term)
+(verb)|fort up|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|fortify|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|station (generic term)|post (generic term)|base (generic term)|send (generic term)|place (generic term)
+fort-lamy|1
+(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital (generic term)
+fort george g. meade|1
+(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison (generic term)|fort (generic term)
+fort george gordon meade|1
+(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison (generic term)|fort (generic term)
+fort lauderdale|1
+(noun)|Fort Lauderdale|city (generic term)|metropolis (generic term)|urban center (generic term)
+fort meade|1
+(noun)|Fort Meade|Fort George Gordon Meade|Fort George G. Meade|garrison (generic term)|fort (generic term)
+fort myers|1
+(noun)|Fort Myers|town (generic term)
+fort smith|1
+(noun)|Fort Smith|town (generic term)
+fort ticonderoga|1
+(noun)|Fort Ticonderoga|Ticonderoga|pitched battle (generic term)
+fort up|1
+(verb)|fort|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+fort wayne|1
+(noun)|Fort Wayne|city (generic term)|metropolis (generic term)|urban center (generic term)
+fort worth|1
+(noun)|Fort Worth|city (generic term)|metropolis (generic term)|urban center (generic term)
+fortaz|1
+(noun)|ceftazidime|Fortaz|Tazicef|cephalosporin (generic term)|Mefoxin (generic term)
+forte|5
+(adj)|loud|fortemente (similar term)|fortissimo (similar term)|piano (antonym)
+(noun)|strong suit|long suit|metier|specialty|speciality|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+(noun)|fortissimo|volume (generic term)|loudness (generic term)|intensity (generic term)
+(noun)|part (generic term)|portion (generic term)
+(adv)|loudly|piano (antonym)
+forte-piano|1
+(noun)|piano|pianoforte|stringed instrument (generic term)|percussion instrument (generic term)|percussive instrument (generic term)
+fortemente|1
+(adj)|forte (similar term)|loud (similar term)
+forth|3
+(noun)|Forth|Forth River|river (generic term)
+(adv)|away|off
+(adv)|forward|onward
+forth river|1
+(noun)|Forth|Forth River|river (generic term)
+forthcoming|3
+(adj)|extroverted|outgoing|sociable (similar term)
+(adj)|approaching|coming|upcoming|future (similar term)
+(adj)|available (similar term)
+forthcomingness|1
+(noun)|imminence|imminency|imminentness|impendence|impendency|state (generic term)
+forthright|2
+(adj)|blunt|candid|frank|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+(adv)|squarely|forthrightly
+forthrightly|1
+(adv)|squarely|forthright
+forthrightness|1
+(noun)|candor|candour|candidness|frankness|directness|honesty (generic term)|honestness (generic term)
+forthwith|1
+(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|at once|in real time|like a shot
+forties|2
+(noun)|mid-forties|time of life (generic term)
+(noun)|1940s|decade (generic term)|decennary (generic term)|decennium (generic term)
+fortieth|2
+(adj)|40th|ordinal (similar term)
+(noun)|rank (generic term)
+fortification|3
+(noun)|munition|defensive structure (generic term)|defense (generic term)|defence (generic term)
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+(noun)|enrichment (generic term)
+fortified|2
+(adj)|bastioned|protected (similar term)|secure (similar term)
+(adj)|strong (similar term)
+fortified wine|1
+(noun)|wine (generic term)|vino (generic term)
+fortify|5
+(verb)|strengthen|beef up|change (generic term)|alter (generic term)|modify (generic term)|weaken (antonym)
+(verb)|fort|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|arm|build up|gird|disarm (antonym)
+(verb)|add (generic term)
+(verb)|spike|lace|change (generic term)|alter (generic term)|modify (generic term)
+fortissimo|3
+(adj)|forte (similar term)|loud (similar term)
+(noun)|forte|volume (generic term)|loudness (generic term)|intensity (generic term)
+(adv)|very loudly|pianissimo (antonym)
+fortitude|1
+(noun)|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)|natural virtue (generic term)
+fortnight|1
+(noun)|two weeks|time period (generic term)|period of time (generic term)|period (generic term)
+fortnightly|2
+(adj)|biweekly|time period|period of time|period (related term)
+(adv)|biweekly
+fortran|1
+(noun)|FORTRAN|algebraic language (generic term)
+fortran compiler|1
+(noun)|Fortran compiler|compiler (generic term)|compiling program (generic term)
+fortran program|1
+(noun)|FORTRAN program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+fortress|1
+(noun)|fort|defensive structure (generic term)|defense (generic term)|defence (generic term)
+fortuitous|2
+(adj)|causeless|uncaused|unintended (similar term)
+(adj)|fortunate (similar term)
+fortuitously|1
+(adv)|fortunately|luckily|as luck would have it|unluckily (antonym)|unfortunately (antonym)
+fortuitousness|1
+(noun)|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+fortuity|1
+(noun)|accident|chance event|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+fortuna|1
+(noun)|Fortuna|Roman deity (generic term)
+fortunate|3
+(adj)|better off (similar term)|felicitous (similar term)|happy (similar term)|fortuitous (similar term)|good (similar term)|well (similar term)|heaven-sent (similar term)|providential (similar term)|miraculous (similar term)|lucky (similar term)|well-off (similar term)|lucky (related term)|privileged (related term)|successful (related term)|unfortunate (antonym)
+(adj)|favored|golden|blessed (similar term)|blest (similar term)
+(adj)|hopeful|rosy|auspicious (similar term)
+fortunately|1
+(adv)|fortuitously|luckily|as luck would have it|unluckily (antonym)|unfortunately (antonym)
+fortune|4
+(noun)|luck|chance|hazard|phenomenon (generic term)
+(noun)|treasure (generic term)|hoarded wealth (generic term)
+(noun)|luck|phenomenon (generic term)
+(noun)|destiny|fate|luck|lot|circumstances|portion|condition (generic term)
+fortune cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+fortune hunter|1
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+fortune teller|1
+(noun)|fortuneteller|forecaster (generic term)|predictor (generic term)|prognosticator (generic term)|soothsayer (generic term)
+fortune telling|1
+(noun)|divination|foretelling|soothsaying|prophecy (generic term)|prognostication (generic term)|vaticination (generic term)
+fortunella|1
+(noun)|Fortunella|genus Fortunella|rosid dicot genus (generic term)
+fortunella japonica|1
+(noun)|marumi|marumi kumquat|round kumquat|Fortunella japonica|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+fortunella margarita|1
+(noun)|nagami|nagami kumquat|oval kumquat|Fortunella margarita|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+fortuneteller|1
+(noun)|fortune teller|forecaster (generic term)|predictor (generic term)|prognosticator (generic term)|soothsayer (generic term)
+fortunetelling|1
+(noun)|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+forty|2
+(adj)|40|xl|twoscore|cardinal (similar term)
+(noun)|40|XL|large integer (generic term)
+forty-eight|1
+(adj)|48|xlviii|cardinal (similar term)
+forty-eighth|1
+(adj)|48th|ordinal (similar term)
+forty-fifth|1
+(adj)|45th|ordinal (similar term)
+forty-first|1
+(adj)|41st|ordinal (similar term)
+forty-five|2
+(adj)|45|xlv|cardinal (similar term)
+(noun)|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+forty-four|1
+(adj)|44|xliv|cardinal (similar term)
+forty-fourth|1
+(adj)|44th|ordinal (similar term)
+forty-nine|1
+(adj)|49|il|cardinal (similar term)
+forty-niner|1
+(noun)|gold miner (generic term)|gold digger (generic term)|gold panner (generic term)
+forty-ninth|1
+(adj)|49th|ordinal (similar term)
+forty-one|1
+(adj)|41|xli|cardinal (similar term)
+forty-second|1
+(adj)|42nd|ordinal (similar term)
+forty-seven|1
+(adj)|47|xlvii|cardinal (similar term)
+forty-seventh|1
+(adj)|47th|ordinal (similar term)
+forty-six|1
+(adj)|46|xlvi|cardinal (similar term)
+forty-sixth|1
+(adj)|46th|ordinal (similar term)
+forty-third|1
+(adj)|43rd|ordinal (similar term)
+forty-three|1
+(adj)|43|xliii|cardinal (similar term)
+forty-two|1
+(adj)|42|xlii|cardinal (similar term)
+forty winks|1
+(noun)|nap|catnap|cat sleep|short sleep|snooze|sleeping (generic term)
+forum|2
+(noun)|meeting (generic term)|group meeting (generic term)
+(noun)|assembly|meeting place|facility (generic term)|installation (generic term)
+forward|13
+(adj)|guardant (similar term)|gardant (similar term)|full-face (similar term)|headfirst (similar term)|headlong (similar term)|fore (related term)|progressive (related term)|backward (antonym)
+(adj)|onward|advancing (similar term)
+(adj)|brash (similar term)|cheeky (similar term)|nervy (similar term)|bumptious (similar term)|self-assertive (similar term)|overfamiliar (similar term)|fresh (similar term)|impertinent (similar term)|impudent (similar term)|overbold (similar term)|smart (similar term)|saucy (similar term)|sassy (similar term)|wise (similar term)|assumptive (similar term)|assuming (similar term)|presumptuous (similar term)|bold (related term)|backward (antonym)
+(adj)|first (similar term)|low (similar term)|second (similar term)|reverse (antonym)
+(adj)|advancing|forward-moving|progressive (similar term)
+(noun)|basketball player (generic term)|basketeer (generic term)|cager (generic term)
+(noun)|position (generic term)
+(verb)|send on|transport (generic term)|send (generic term)|ship (generic term)
+(adv)|forwards|frontward|frontwards|forrad|forrard|backward (antonym)
+(adv)|forth|onward
+(adv)|ahead|backward (antonym)|back (antonym)
+(adv)|ahead|onward|onwards|forwards|forrader
+(adv)|fore|aft (antonym)
+forward-looking|1
+(adj)|advanced|innovative|modern|progressive (similar term)
+forward-moving|1
+(adj)|advancing|forward|progressive (similar term)
+forward market|1
+(noun)|futures exchange|futures market|commodity exchange (generic term)|commodities exchange (generic term)|commodities market (generic term)
+forward motion|1
+(noun)|progress|progression|procession|advance|advancement|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+forward pass|1
+(noun)|aerial|pass (generic term)|passing play (generic term)|passing game (generic term)|passing (generic term)
+forward passer|1
+(noun)|passer|ball carrier (generic term)
+forwarding|2
+(noun)|transmission (generic term)|transmittal (generic term)|transmitting (generic term)
+(noun)|furtherance|promotion|advancement (generic term)|progress (generic term)
+forwardness|3
+(noun)|bumptiousness|cockiness|pushiness|assertiveness (generic term)|self-assertiveness (generic term)
+(noun)|earliness (generic term)
+(noun)|readiness|eagerness|zeal|willingness (generic term)
+forwards|2
+(adv)|forward|frontward|frontwards|forrad|forrard|backward (antonym)
+(adv)|ahead|onward|onwards|forward|forrader
+foryml|1
+(noun)|acyl (generic term)|acyl group (generic term)
+fosamax|1
+(noun)|alendronate|Fosamax|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+fosbury|1
+(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete (generic term)|jock (generic term)
+fosbury flop|1
+(noun)|Fosbury flop|high jump (generic term)
+fossa|3
+(noun)|pit|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|Fossa|genus Fossa|mammal genus (generic term)
+(noun)|fossa cat|Cryptoprocta ferox|viverrine (generic term)|viverrine mammal (generic term)
+fossa cat|1
+(noun)|fossa|Cryptoprocta ferox|viverrine (generic term)|viverrine mammal (generic term)
+fossa fossa|1
+(noun)|fanaloka|Fossa fossa|civet (generic term)|civet cat (generic term)
+fosse|1
+(noun)|moat|trench (generic term)
+fossil|3
+(adj)|remains (related term)
+(noun)|dodo|fogy|fogey|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+(noun)|remains (generic term)
+fossil copal|1
+(noun)|copalite|copaline|copal (generic term)
+fossil fuel|1
+(noun)|fuel (generic term)
+fossil oil|1
+(noun)|petroleum|crude oil|crude|rock oil|oil (generic term)|fossil fuel (generic term)
+fossiliferous|1
+(adj)|remains (related term)
+fossilisation|2
+(noun)|fossilization|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|fossilization|passage (generic term)|transition (generic term)
+fossilise|2
+(verb)|fossilize|convert (generic term)|change over (generic term)
+(verb)|fossilize|senesce (generic term)|age (generic term)|get on (generic term)|mature (generic term)|maturate (generic term)
+fossilised|1
+(adj)|fossilized|ossified|inflexible (similar term)
+fossilist|1
+(noun)|paleontologist|palaeontologist|scientist (generic term)|man of science (generic term)
+fossilization|2
+(noun)|fossilisation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|fossilisation|passage (generic term)|transition (generic term)
+fossilize|2
+(verb)|fossilise|convert (generic term)|change over (generic term)
+(verb)|fossilise|senesce (generic term)|age (generic term)|get on (generic term)|mature (generic term)|maturate (generic term)
+fossilized|1
+(adj)|fossilised|ossified|inflexible (similar term)
+fossilology|1
+(noun)|paleontology|palaeontology|earth science (generic term)
+fossorial|1
+(adj)|cursorial (antonym)
+fossorial foot|1
+(noun)|animal foot (generic term)|foot (generic term)
+fossorial mammal|1
+(noun)|mammal (generic term)|mammalian (generic term)
+foster|5
+(adj)|surrogate|adoptive (similar term)
+(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+(verb)|further|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|rear (generic term)|raise (generic term)|bring up (generic term)|nurture (generic term)|parent (generic term)
+(verb)|nurture|encourage (generic term)
+foster-brother|1
+(noun)|foster brother|male (generic term)|male person (generic term)
+foster-child|1
+(noun)|foster child|fosterling|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+foster-daughter|1
+(noun)|foster daughter|foster-child (generic term)|foster child (generic term)|fosterling (generic term)
+foster-father|1
+(noun)|foster father|foster-parent (generic term)|foster parent (generic term)|father figure (generic term)|father surrogate (generic term)
+foster-mother|1
+(noun)|foster mother|foster-parent (generic term)|foster parent (generic term)
+foster-nurse|1
+(noun)|nurse (generic term)
+foster-parent|1
+(noun)|foster parent|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+foster-sister|1
+(noun)|foster sister|female (generic term)|female person (generic term)
+foster-son|1
+(noun)|foster son|foster-child (generic term)|foster child (generic term)|fosterling (generic term)
+foster brother|1
+(noun)|foster-brother|male (generic term)|male person (generic term)
+foster care|1
+(noun)|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+foster child|1
+(noun)|foster-child|fosterling|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+foster daughter|1
+(noun)|foster-daughter|foster-child (generic term)|foster child (generic term)|fosterling (generic term)
+foster family|1
+(noun)|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+foster father|1
+(noun)|foster-father|foster-parent (generic term)|foster parent (generic term)|father figure (generic term)|father surrogate (generic term)
+foster home|1
+(noun)|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+foster mother|1
+(noun)|foster-mother|foster-parent (generic term)|foster parent (generic term)
+foster parent|1
+(noun)|foster-parent|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+foster sister|1
+(noun)|foster-sister|female (generic term)|female person (generic term)
+foster son|1
+(noun)|foster-son|foster-child (generic term)|foster child (generic term)|fosterling (generic term)
+fosterage|2
+(noun)|fostering|encouragement (generic term)
+(noun)|breeding|bringing up|fostering|nurture|raising|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+fostered|2
+(adj)|nourished|supported (similar term)
+(adj)|parented (similar term)
+fostering|2
+(noun)|fosterage|encouragement (generic term)
+(noun)|breeding|bringing up|fosterage|nurture|raising|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+fosterling|1
+(noun)|foster-child|foster child|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+fothergilla|2
+(noun)|witch alder|shrub (generic term)|bush (generic term)
+(noun)|genus Fothergilla|Fothergilla|plant genus (generic term)
+fots|1
+(noun)|fiber-optic transmission system|fibre-optic transmission system|FOTS|communication system (generic term)|communication equipment (generic term)
+foucault|1
+(noun)|Foucault|Jean Bernard Leon Foucault|physicist (generic term)
+foucault pendulum|1
+(noun)|Foucault pendulum|pendulum (generic term)
+foul|16
+(adj)|disgusting|disgustful|distasteful|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+(adj)|fetid|foetid|foul-smelling|funky|noisome|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|cheating|dirty|unsporting|unsportsmanlike|unfair (similar term)|unjust (similar term)
+(adj)|out-of-bounds (similar term)|fair (antonym)
+(adj)|dirty|marked-up|illegible (similar term)
+(adj)|filthy|nasty|smutty|dirty (similar term)
+(adj)|filthy|nasty|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|afoul|fouled|tangled (similar term)
+(noun)|violation (generic term)|infringement (generic term)
+(verb)|hit (generic term)
+(verb)|pollute|contaminate|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|clog|choke off|clog up|back up|congest|choke|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)|unclog (antonym)
+(verb)|play (generic term)
+(verb)|befoul|defile|maculate|dishonor (generic term)|disgrace (generic term)|dishonour (generic term)|attaint (generic term)|shame (generic term)
+(verb)|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|change (generic term)
+foul-mouthed|1
+(adj)|foul-spoken|dirty (similar term)
+foul-smelling|1
+(adj)|fetid|foetid|foul|funky|noisome|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+foul-spoken|1
+(adj)|foul-mouthed|dirty (similar term)
+foul-up|1
+(noun)|blunder|blooper|bloomer|bungle|pratfall|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+foul-weather gear|1
+(noun)|protective garment (generic term)
+foul ball|1
+(noun)|foul (generic term)|fair ball (antonym)
+foul line|1
+(noun)|line (generic term)
+foul out|1
+(verb)|foul (generic term)
+foul play|1
+(noun)|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+foul shot|1
+(noun)|free throw|penalty free throw|charity toss|charity throw|charity shot|basketball shot (generic term)
+foul up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+foulard|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+fouled|2
+(adj)|befouled|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|afoul|foul|tangled (similar term)
+foully|1
+(adv)|insultingly
+foulmart|1
+(noun)|polecat|fitch|foumart|Mustela putorius|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+foulness|4
+(noun)|iniquity (generic term)|wickedness (generic term)|darkness (generic term)|dark (generic term)
+(noun)|filth|filthiness|nastiness|unsanitariness (generic term)
+(noun)|raininess|badness (generic term)|severity (generic term)|severeness (generic term)
+(noun)|malodorousness|stinkiness|rankness|fetidness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+foumart|1
+(noun)|polecat|fitch|foulmart|Mustela putorius|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+found|5
+(adj)|recovered (similar term)|saved (related term)|lost (antonym)
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+(verb)|establish|set up|launch|open (generic term)|open up (generic term)|abolish (antonym)
+(verb)|establish|plant|constitute|institute|initiate (generic term)|pioneer (generic term)
+(verb)|establish|base|ground
+foundation|7
+(noun)|relation (generic term)
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+(noun)|basis|base|fundament|groundwork|cornerstone|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|base|fundament|foot|groundwork|substructure|understructure|support (generic term)
+(noun)|grounding|education (generic term)
+(noun)|foundation garment|undergarment (generic term)|unmentionable (generic term)
+(noun)|initiation|founding|institution|origination|creation|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+foundation garment|1
+(noun)|foundation|undergarment (generic term)|unmentionable (generic term)
+foundation stone|1
+(noun)|stone (generic term)
+founded|1
+(adj)|based|supported (similar term)
+founder|7
+(noun)|laminitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+(noun)|beginner|founding father|father|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(verb)|fall through|fall flat|flop|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|sink (generic term)|settle (generic term)|go down (generic term)|go under (generic term)
+(verb)|collapse|fall in|cave in|give|give way|break|change (generic term)
+(verb)|stumble (generic term)|trip (generic term)
+foundering|1
+(noun)|going under|sinking (generic term)
+founding|1
+(noun)|initiation|foundation|institution|origination|creation|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+founding father|2
+(noun)|Founding Father|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|founder|beginner|father|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+foundling|1
+(noun)|abandoned infant|baby (generic term)|babe (generic term)|infant (generic term)
+foundling hospital|1
+(noun)|creche|hospital (generic term)|infirmary (generic term)
+foundress|1
+(noun)|founder (generic term)|beginner (generic term)|founding father (generic term)|father (generic term)
+foundry|1
+(noun)|metalworks|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+foundry proof|1
+(noun)|proof (generic term)|test copy (generic term)|trial impression (generic term)
+fount|2
+(noun)|font|typeface|face|type (generic term)
+(noun)|fountain|plumbing fixture (generic term)
+fountain|4
+(noun)|structure (generic term)|construction (generic term)
+(noun)|spring|outflow|outpouring|natural spring|geological formation (generic term)|formation (generic term)
+(noun)|jet|flow (generic term)|flowing (generic term)
+(noun)|fount|plumbing fixture (generic term)
+fountain grass|1
+(noun)|Pennisetum ruppelii|Pennisetum setaceum|grass (generic term)
+fountain of youth|1
+(noun)|Fountain of Youth|spring (generic term)|fountain (generic term)|outflow (generic term)|outpouring (generic term)|natural spring (generic term)
+fountain pen|1
+(noun)|pen (generic term)
+fountainhead|2
+(noun)|well|wellspring|source (generic term)
+(noun)|headspring|head|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+fouquieria|1
+(noun)|Fouquieria|genus Fouquieria|dilleniid dicot genus (generic term)
+fouquieria columnaris|1
+(noun)|boojum tree|cirio|Fouquieria columnaris|Idria columnaris|candlewood (generic term)
+fouquieria splendens|1
+(noun)|ocotillo|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood (generic term)
+fouquieriaceae|1
+(noun)|Fouquieriaceae|family Fouquieriaceae|dilleniid dicot family (generic term)
+four|2
+(adj)|4|iv|cardinal (similar term)
+(noun)|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+four-card monte|1
+(noun)|monte|three-card monte|card game (generic term)|cards (generic term)
+four-centered arch|1
+(noun)|Tudor arch|arch (generic term)
+four-dimensional|1
+(adj)|4-dimensional|multidimensional (similar term)
+four-flusher|1
+(noun)|bluffer|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+four-fold|2
+(adj)|quadruple|quadruplicate|quadruplex|fourfold|multiple (similar term)
+(adj)|quadruple|fourfold|multiple (similar term)
+four-footed|1
+(adj)|quadrupedal|quadruped|biped (antonym)|bipedal (antonym)
+four-footed butterfly|1
+(noun)|nymphalid|nymphalid butterfly|brush-footed butterfly|butterfly (generic term)
+four-four time|1
+(noun)|common time|quadruple time|common measure|musical time (generic term)
+four-hitter|1
+(noun)|4-hitter|baseball (generic term)|baseball game (generic term)
+four-hundredth|1
+(adj)|400th|ordinal (similar term)
+four-in-hand|2
+(noun)|necktie (generic term)|tie (generic term)
+(noun)|coach|coach-and-four|carriage (generic term)|equipage (generic term)|rig (generic term)
+four-lane|1
+(adj)|multilane (similar term)
+four-letter anglo-saxon word|1
+(noun)|four-letter word|four-letter Anglo-Saxon word|word (generic term)
+four-letter word|1
+(noun)|four-letter Anglo-Saxon word|word (generic term)
+four-lined leaf bug|1
+(noun)|four-lined plant bug|Poecilocapsus lineatus|mirid bug (generic term)|mirid (generic term)|capsid (generic term)
+four-lined plant bug|1
+(noun)|four-lined leaf bug|Poecilocapsus lineatus|mirid bug (generic term)|mirid (generic term)|capsid (generic term)
+four-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+four-membered|1
+(adj)|4-membered|membered (similar term)
+four-minute man|1
+(noun)|miler (generic term)
+four-needled|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+four-o'clock family|1
+(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|caryophylloid dicot family (generic term)
+four-part harmony|1
+(noun)|harmony (generic term)|musical harmony (generic term)
+four-party|1
+(adj)|quadripartite|multilateral (similar term)|many-sided (similar term)
+four-petaled|1
+(adj)|four-petalled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+four-petalled|1
+(adj)|four-petaled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+four-ply|1
+(adj)|thick (similar term)
+four-poster|1
+(noun)|bed (generic term)
+four-pounder|1
+(noun)|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+four-pronged|1
+(adj)|divided (similar term)
+four-sided|1
+(adj)|quadrilateral|multilateral (similar term)|many-sided (similar term)
+four-spot|1
+(noun)|spot (generic term)|domino (generic term)|dice (generic term)|die (generic term)
+four-stroke engine|1
+(noun)|four-stroke internal-combustion engine|internal-combustion engine (generic term)|ICE (generic term)
+four-stroke internal-combustion engine|1
+(noun)|four-stroke engine|internal-combustion engine (generic term)|ICE (generic term)
+four-tailed bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+four-wheel|1
+(adj)|four-wheeled|machine|simple machine (related term)
+four-wheel drive|2
+(noun)|4WD|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|4WD|transmission (generic term)|transmission system (generic term)
+four-wheeled|1
+(adj)|four-wheel|machine|simple machine (related term)
+four-wheeler|1
+(noun)|hackney (generic term)|hackney carriage (generic term)|hackney coach (generic term)
+four-wing flying fish|1
+(noun)|biplane flying fish|flying fish (generic term)
+four-year-old|1
+(adj)|young (similar term)|immature (similar term)
+four flush|1
+(noun)|bluff|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+four horsemen|1
+(noun)|Four Horsemen|evil (generic term)
+four hundred|2
+(adj)|400|cd|cardinal (similar term)
+(noun)|Four Hundred|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+four o'clock|1
+(noun)|flower (generic term)
+four times|1
+(adv)|fourfold
+fourfold|3
+(adj)|quadruple|four-fold|multiple (similar term)
+(adj)|quadruple|quadruplicate|quadruplex|four-fold|multiple (similar term)
+(adv)|four times
+fourfold point correlation|1
+(noun)|phi coefficient|phi correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+fourhanded|1
+(adj)|game (related term)
+fourier|2
+(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician (generic term)|physicist (generic term)
+(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist (generic term)
+fourier analysis|1
+(noun)|Fourier analysis|harmonic analysis|analysis (generic term)
+fourier series|1
+(noun)|Fourier series|series (generic term)
+fourpence|1
+(noun)|groat|coin (generic term)
+fourpenny|1
+(adj)|sized (similar term)
+fourpenny nail|1
+(noun)|nail (generic term)
+fourscore|2
+(adj)|eighty|80|lxxx|cardinal (similar term)
+(noun)|eighty|80|LXXX|large integer (generic term)
+foursome|2
+(noun)|quartet|quartette|gathering (generic term)|assemblage (generic term)
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|Little Joe|digit (generic term)|figure (generic term)
+foursquare|3
+(adj)|resolute (similar term)
+(noun)|square|rectangle (generic term)|regular polygon (generic term)
+(adv)|squarely|straightforwardly
+fourteen|2
+(adj)|14|xiv|cardinal (similar term)
+(noun)|14|XIV|large integer (generic term)
+fourteenth|2
+(adj)|14th|ordinal (similar term)
+(noun)|rank (generic term)
+fourteenth amendment|1
+(noun)|Fourteenth Amendment|amendment (generic term)
+fourth|5
+(adj)|4th|quaternary|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-fourth|quarter|fourth part|twenty-five percent|quartern|common fraction (generic term)|simple fraction (generic term)
+(noun)|interval (generic term)|musical interval (generic term)
+(adv)|fourthly
+fourth-year|1
+(adj)|senior|last (similar term)
+fourth council of constantinople|1
+(noun)|Constantinople|Fourth Council of Constantinople|council (generic term)
+fourth cranial nerve|1
+(noun)|trochlear|trochlear nerve|trochlearis|cranial nerve (generic term)
+fourth crusade|1
+(noun)|Fourth Crusade|Crusade (generic term)
+fourth deck|1
+(noun)|orlop deck|orlop|deck (generic term)
+fourth dimension|1
+(noun)|time|dimension (generic term)
+fourth earl of chesterfield|1
+(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman (generic term)|solon (generic term)|national leader (generic term)
+fourth earl of orford|1
+(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+fourth estate|2
+(noun)|press|estate (generic term)|estate of the realm (generic term)
+(noun)|journalism|news media|print media (generic term)
+fourth lateran council|1
+(noun)|Fourth Lateran Council|Lateran Council (generic term)
+fourth of july|1
+(noun)|Independence Day|Fourth of July|July 4|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+fourth part|1
+(noun)|one-fourth|fourth|quarter|twenty-five percent|quartern|common fraction (generic term)|simple fraction (generic term)
+fourth power|1
+(noun)|biquadrate|biquadratic|quartic|number (generic term)
+fourth stomach|1
+(noun)|abomasum|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+fourth ventricle|1
+(noun)|ventricle (generic term)
+fourthly|1
+(adv)|fourth
+fovea|1
+(noun)|fovea centralis|area (generic term)|region (generic term)
+fovea centralis|1
+(noun)|fovea|area (generic term)|region (generic term)
+foveal vision|1
+(noun)|daylight vision (generic term)|photopic vision (generic term)
+fowl|3
+(noun)|domestic fowl|poultry|gallinaceous bird (generic term)|gallinacean (generic term)
+(noun)|bird|meat (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+fowl cholera|1
+(noun)|animal disease (generic term)|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+fowl pest|1
+(noun)|animal disease (generic term)
+fowl run|1
+(noun)|chicken yard|hen yard|chicken run|yard (generic term)
+fowler|2
+(noun)|Fowler|Henry Watson Fowler|lexicographer (generic term)|lexicologist (generic term)
+(noun)|hunter (generic term)|huntsman (generic term)
+fowling piece|1
+(noun)|shotgun (generic term)|scattergun (generic term)
+fox|10
+(noun)|canine (generic term)|canid (generic term)
+(noun)|dodger|slyboots|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|Fox|Charles James Fox|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Fox|George Fox|religious person (generic term)
+(noun)|Fox|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Fox|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+(verb)|flim-flam|trick|fob|pull a fast one on|play a trick on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|confuse|throw|befuddle|fuddle|bedevil|confound|discombobulate|be (generic term)
+(verb)|spot (generic term)
+fox-like|1
+(adj)|foxlike|animal (similar term)
+fox-trot|1
+(noun)|foxtrot|ballroom dancing (generic term)|ballroom dance (generic term)
+fox grape|2
+(noun)|Vitis labrusca|grape (generic term)|grapevine (generic term)
+(noun)|slipskin grape (generic term)
+fox hole|1
+(noun)|foxhole|bunker (generic term)|dugout (generic term)
+fox hunter|1
+(noun)|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+fox hunting|1
+(noun)|foxhunt|hunt (generic term)|hunting (generic term)
+fox river|1
+(noun)|Fox River|river (generic term)
+fox shark|1
+(noun)|thresher|thrasher|thresher shark|Alopius vulpinus|shark (generic term)
+fox squirrel|1
+(noun)|eastern fox squirrel|Sciurus niger|tree squirrel (generic term)
+fox talbot|1
+(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor (generic term)|discoverer (generic term)|artificer (generic term)|photographer (generic term)|lensman (generic term)
+fox terrier|1
+(noun)|terrier (generic term)
+foxberry|1
+(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|lingberry|Vaccinium vitis-idaea|cranberry (generic term)
+foxglove|1
+(noun)|digitalis|herb (generic term)|herbaceous plant (generic term)
+foxglove family|1
+(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|asterid dicot family (generic term)
+foxhole|1
+(noun)|fox hole|bunker (generic term)|dugout (generic term)
+foxhound|1
+(noun)|hound (generic term)|hound dog (generic term)
+foxhunt|2
+(noun)|fox hunting|hunt (generic term)|hunting (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+foxily|1
+(adv)|craftily|cunningly|knavishly|slyly|trickily|artfully
+foxiness|1
+(noun)|craft|craftiness|cunning|guile|slyness|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+foxlike|1
+(adj)|fox-like|animal (similar term)
+foxtail|1
+(noun)|foxtail grass|meadowgrass (generic term)|meadow grass (generic term)
+foxtail barley|1
+(noun)|squirreltail barley|squirreltail grass|Hordeum jubatum|barley (generic term)
+foxtail grass|2
+(noun)|Lycopodium alopecuroides|ground pine (generic term)|Christmas green (generic term)
+(noun)|foxtail|meadowgrass (generic term)|meadow grass (generic term)
+foxtail millet|1
+(noun)|Italian millet|Hungarian grass|Setaria italica|foxtail (generic term)|foxtail grass (generic term)
+foxtail orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+foxtrot|2
+(noun)|fox-trot|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+foxy|1
+(adj)|crafty|cunning|dodgy|guileful|knavish|slick|sly|tricksy|tricky|wily|artful (similar term)
+foyer|1
+(noun)|anteroom|antechamber|entrance hall|hall|lobby|vestibule|room (generic term)
+fpd|1
+(noun)|flat panel display|FPD|display (generic term)|video display (generic term)
+fps|1
+(noun)|Federal Protective Service|FPS|independent agency (generic term)
+fr|1
+(noun)|francium|Fr|atomic number 87|metallic element (generic term)|metal (generic term)
+fra filippo lippi|1
+(noun)|Lippi|Fra Filippo Lippi|old master (generic term)
+fracas|1
+(noun)|affray|altercation|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+fractal|1
+(noun)|form (generic term)|shape (generic term)|pattern (generic term)
+fractal geometry|1
+(noun)|geometry (generic term)
+fraction|4
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|part (generic term)|portion (generic term)
+(noun)|rational number (generic term)|rational (generic term)
+(verb)|divide|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|multiply (antonym)
+fractional|1
+(adj)|aliquot (similar term)|divisional (similar term)|fragmental (similar term)|fragmentary (similar term)|half (similar term)|halfway (similar term)|third (similar term)|three-quarter (similar term)|three-quarter-length (similar term)|waist-length (similar term)|incomplete (related term)|uncomplete (related term)|whole (antonym)
+fractional currency|1
+(noun)|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+fractional distillation|1
+(noun)|fractionation (generic term)|fractional process (generic term)
+fractional monetary unit|1
+(noun)|subunit|monetary unit (generic term)
+fractional process|1
+(noun)|fractionation|industrial process (generic term)
+fractionate|1
+(verb)|separate (generic term)
+fractionation|2
+(noun)|fractional process|industrial process (generic term)
+(noun)|division (generic term)
+fractious|3
+(adj)|refractory|recalcitrant|disobedient (similar term)
+(adj)|cranky|irritable|nettlesome|peevish|peckish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+(adj)|difficult (similar term)|hard (similar term)
+fractiously|1
+(adv)|peevishly|querulously
+fractiousness|1
+(noun)|unruliness|willfulness|wilfulness|intractability (generic term)|intractableness (generic term)
+fracture|8
+(noun)|break|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|fault|faulting|geological fault|shift|break|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|crack|cracking|breakage (generic term)|break (generic term)|breaking (generic term)
+(verb)|pervert (generic term)|misuse (generic term)|abuse (generic term)
+(verb)|destroy (generic term)|destruct (generic term)
+(verb)|break (generic term)
+(verb)|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|break|injure (generic term)|wound (generic term)
+fradicin|1
+(noun)|neomycin|Neobiotic|antibiotic (generic term)|antibiotic drug (generic term)|antiseptic (generic term)
+fragaria|1
+(noun)|Fragaria|genus Fragaria|rosid dicot genus (generic term)
+fragaria ananassa|1
+(noun)|garden strawberry|cultivated strawberry|Fragaria ananassa|strawberry (generic term)
+fragaria chiloensis|1
+(noun)|beach strawberry|Chilean strawberry|Fragaria chiloensis|strawberry (generic term)
+fragaria vesca|1
+(noun)|wild strawberry|wood strawberry|Fragaria vesca|strawberry (generic term)
+fragaria virginiana|1
+(noun)|Virginia strawberry|scarlet strawberry|Fragaria virginiana|strawberry (generic term)
+fragile|3
+(adj)|delicate|frail|breakable (similar term)
+(adj)|delicate (similar term)
+(adj)|flimsy|weak (similar term)
+fragile fern|1
+(noun)|brittle bladder fern|brittle fern|Cystopteris fragilis|bladder fern (generic term)
+fragility|2
+(noun)|breakability|frangibleness|frangibility|vulnerability (generic term)
+(noun)|delicacy|weakness (generic term)
+fragment|4
+(noun)|part (generic term)|piece (generic term)
+(noun)|shard|sherd|piece (generic term)
+(noun)|piece (generic term)
+(verb)|break up|fragmentize|fragmentise|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+fragmental|1
+(adj)|fragmentary|fractional (similar term)
+fragmentary|1
+(adj)|fragmental|fractional (similar term)
+fragmentation|4
+(noun)|atomization|atomisation|division (generic term)
+(noun)|decomposition (generic term)|disintegration (generic term)
+(noun)|storage (generic term)
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+fragmentation bomb|1
+(noun)|antipersonnel bomb|anti-personnel bomb|daisy cutter|bomb (generic term)
+fragmented|1
+(adj)|disconnected|disunited|split|divided (similar term)
+fragmentise|1
+(verb)|break up|fragment|fragmentize|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+fragmentize|1
+(verb)|break up|fragment|fragmentise|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+fragonard|1
+(noun)|Fragonard|Jean Honore Fragonard|painter (generic term)
+fragrance|2
+(noun)|aroma|perfume|scent|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(noun)|bouquet|fragrancy|redolence|sweetness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+fragrancy|1
+(noun)|bouquet|fragrance|redolence|sweetness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+fragrant|1
+(adj)|aromatic (similar term)|redolent (similar term)|odoriferous (similar term)|odorous (similar term)|perfumed (similar term)|scented (similar term)|sweet (similar term)|sweet-scented (similar term)|sweet-smelling (similar term)|perfumed (similar term)|scented (similar term)|musky (similar term)|malodorous (antonym)
+fragrant agrimony|1
+(noun)|Agrimonia procera|agrimonia (generic term)|agrimony (generic term)
+fragrant bedstraw|1
+(noun)|sweet woodruff|waldmeister|woodruff|Galium odoratum|Asperula odorata|bedstraw (generic term)
+fragrant cliff fern|1
+(noun)|fragrant shield fern|fragrant wood fern|Dryopteris fragrans|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+fragrant orchid|1
+(noun)|Gymnadenia conopsea|orchid (generic term)|orchidaceous plant (generic term)
+fragrant shield fern|1
+(noun)|fragrant cliff fern|fragrant wood fern|Dryopteris fragrans|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+fragrant sumac|1
+(noun)|lemon sumac|Rhus aromatica|sumac (generic term)|sumach (generic term)|shumac (generic term)
+fragrant water lily|1
+(noun)|water nymph|pond lily|Nymphaea odorata|water lily (generic term)
+fragrant wood fern|1
+(noun)|fragrant cliff fern|fragrant shield fern|Dryopteris fragrans|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+fragrant woodsia|1
+(noun)|rusty woodsia|oblong woodsia|Woodsia ilvensis|woodsia (generic term)
+frail|5
+(adj)|decrepit (similar term)|debile (similar term)|feeble (similar term)|infirm (similar term)|rickety (similar term)|sapless (similar term)|weak (similar term)|weakly (similar term)|light-boned (similar term)|delicate (related term)|weak (related term)|robust (antonym)
+(adj)|fallible|imperfect|weak|human (similar term)
+(adj)|delicate|fragile|breakable (similar term)
+(noun)|weight unit (generic term)|weight (generic term)
+(noun)|basket (generic term)|handbasket (generic term)
+frailness|1
+(noun)|infirmity|frailty|debility|feebleness|valetudinarianism|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+frailty|2
+(noun)|infirmity|debility|feebleness|frailness|valetudinarianism|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+(noun)|vice|evil (generic term)|evilness (generic term)
+fraise|2
+(noun)|choker (generic term)|ruff (generic term)|ruffle (generic term)|neck ruff (generic term)
+(noun)|rampart (generic term)|bulwark (generic term)|wall (generic term)
+frambesia|1
+(noun)|yaws|framboesia|infectious disease (generic term)
+framboesia|1
+(noun)|yaws|frambesia|infectious disease (generic term)
+framboise|1
+(noun)|wild raspberry|European raspberry|Rubus idaeus|red raspberry (generic term)
+frame|12
+(noun)|framework|framing|supporting structure (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|inning|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|skeletal system|skeleton|systema skeletale|system (generic term)
+(noun)|skeleton|skeletal frame|underframe|supporting structure (generic term)
+(verb)|frame in|border|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|enclose (generic term)|hold in (generic term)|confine (generic term)
+(verb)|ensnare|entrap|set up|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|redact|cast|put|couch|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|compose|draw up|plan (generic term)
+(verb)|frame up|construct (generic term)|build (generic term)|make (generic term)
+frame-up|1
+(noun)|setup|falsification (generic term)|falsehood (generic term)
+frame buffer|1
+(noun)|buffer (generic term)|buffer storage (generic term)|buffer store (generic term)
+frame in|1
+(verb)|frame|border|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+frame of mind|1
+(noun)|state of mind|temporary state (generic term)|psychological state (generic term)|mental state (generic term)
+frame of reference|2
+(noun)|coordinate system|reference system|reference frame|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|system (generic term)|system of rules (generic term)
+frame up|1
+(verb)|frame|construct (generic term)|build (generic term)|make (generic term)
+framed|1
+(adj)|unframed (antonym)
+framer|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|writer (generic term)|author (generic term)
+framework|3
+(noun)|model|theoretical account|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|fabric|structure (generic term)
+(noun)|frame|framing|supporting structure (generic term)
+framing|2
+(noun)|conceptualization (generic term)|conceptualisation (generic term)|formulation (generic term)
+(noun)|framework|frame|supporting structure (generic term)
+franc|1
+(noun)|monetary unit (generic term)
+franc-tireur|1
+(noun)|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+france|2
+(noun)|France|French Republic|European country (generic term)|European nation (generic term)
+(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer (generic term)|author (generic term)
+frances eliza hodgson burnett|1
+(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer (generic term)|author (generic term)
+frances elizabeth caroline willard|1
+(noun)|Willard|Frances Elizabeth Caroline Willard|suffragist (generic term)|dry (generic term)|prohibitionist (generic term)
+frances hodgson burnett|1
+(noun)|Burnett|Frances Hodgson Burnett|Frances Eliza Hodgson Burnett|writer (generic term)|author (generic term)
+frances wright|1
+(noun)|Wright|Frances Wright|Fanny Wright|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+francesco della rovere|1
+(noun)|Sixtus IV|Francesco della Rovere|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+francesco petrarca|1
+(noun)|Petrarch|Petrarca|Francesco Petrarca|poet (generic term)
+franche-comte|1
+(noun)|Franche-Comte|French region (generic term)
+franchise|4
+(noun)|concession (generic term)|grant (generic term)
+(noun)|dealership|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|enfranchisement|legal right (generic term)
+(verb)|license (generic term)|licence (generic term)|certify (generic term)
+franchise tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+francis albert sinatra|1
+(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+francis bacon|1
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+francis beaumont|1
+(noun)|Beaumont|Francis Beaumont|dramatist (generic term)|playwright (generic term)
+francis crick|1
+(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist (generic term)
+francis drake|1
+(noun)|Drake|Francis Drake|Sir Francis Drake|navigator (generic term)|admiral (generic term)|full admiral (generic term)
+francis edgar stanley|1
+(noun)|Stanley|Francis Edgar Stanley|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+francis everett townsend|1
+(noun)|Townsend|Francis Everett Townsend|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+francis ferdinand|1
+(noun)|Francis Ferdinand|Franz Ferdinand|archduke (generic term)
+francis ford coppola|1
+(noun)|Coppola|Francis Ford Coppola|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+francis galton|1
+(noun)|Galton|Francis Galton|Sir Francis Galton|scientist (generic term)|man of science (generic term)
+francis henry compton crick|1
+(noun)|Crick|Francis Crick|Francis Henry Compton Crick|biochemist (generic term)
+francis hopkinson|1
+(noun)|Hopkinson|Francis Hopkinson|American Revolutionary leader (generic term)
+francis ii|1
+(noun)|Francis II|Emperor Francis II|Holy Roman Emperor (generic term)
+francis joseph|1
+(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|emperor (generic term)
+francis joseph i|1
+(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|emperor (generic term)
+francis of assisi|1
+(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint (generic term)
+francis peyton rous|1
+(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician (generic term)|pathologist (generic term)
+francis poulenc|1
+(noun)|Poulenc|Francis Poulenc|composer (generic term)|pianist (generic term)|piano player (generic term)
+francis richard stockton|1
+(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer (generic term)|author (generic term)
+francis scott key|1
+(noun)|Key|Francis Scott Key|lawyer (generic term)|attorney (generic term)|poet (generic term)
+francis scott key fitzgerald|1
+(noun)|Fitzgerald|F. Scott Fitzgerald|Francis Scott Key Fitzgerald|writer (generic term)|author (generic term)
+francis turbine|1
+(noun)|Francis turbine|hydroelectric turbine (generic term)
+francis turner palgrave|1
+(noun)|Palgrave|Francis Turner Palgrave|poet (generic term)
+franciscan|2
+(adj)|Franciscan|saint (related term)
+(noun)|Franciscan|Grey Friar|friar (generic term)|mendicant (generic term)
+franciscan order|1
+(noun)|Franciscan order|order (generic term)|monastic order (generic term)
+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 (generic term)
+francisco fernandez cordoba|1
+(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer (generic term)|adventurer (generic term)
+francisco fernandez de cordova|1
+(noun)|Cordoba|Francisco Fernandez Cordoba|Cordova|Francisco Fernandez de Cordova|explorer (generic term)|adventurer (generic term)
+francisco franco|1
+(noun)|Franco|Francisco Franco|El Caudillo|General Franco|general (generic term)|full general (generic term)|dictator (generic term)|potentate (generic term)
+francisco goya|1
+(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter (generic term)
+francisco jimenez de cisneros|1
+(noun)|Jimenez de Cisneros|Francisco Jimenez de Cisneros|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|Grand Inquisitor (generic term)
+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 (generic term)
+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 (generic term)
+francisco pizarro|1
+(noun)|Pizarro|Francisco Pizarro|conquistador (generic term)
+francisco villa|1
+(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+francisella|1
+(noun)|Francisella|genus Francisella|bacteria (generic term)|bacterium (generic term)
+francisella tularensis|1
+(noun)|Francisella tularensis|bacteria species (generic term)
+francium|1
+(noun)|Fr|atomic number 87|metallic element (generic term)|metal (generic term)
+franck|2
+(noun)|Franck|Cesar Franck|composer (generic term)
+(noun)|Franck|James Franck|physicist (generic term)
+franco|1
+(noun)|Franco|Francisco Franco|El Caudillo|General Franco|general (generic term)|full general (generic term)|dictator (generic term)|potentate (generic term)
+franco-american|1
+(noun)|Franco-American|American (generic term)
+franco-prussian war|1
+(noun)|Franco-Prussian War|war (generic term)|warfare (generic term)
+francoa|1
+(noun)|Francoa|genus Francoa|rosid dicot genus (generic term)
+francoa ramosa|1
+(noun)|bridal wreath|bridal-wreath|Francoa ramosa|shrub (generic term)|bush (generic term)
+francois-marie arouet|1
+(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer (generic term)|author (generic term)
+francois auguste rene rodin|1
+(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+francois charles mauriac|1
+(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer (generic term)|author (generic term)
+francois couperin|1
+(noun)|Couperin|Francois Couperin|organist (generic term)|composer (generic term)
+francois de la rochefoucauld|1
+(noun)|La Rochefoucauld|Francois de La Rochefoucauld|writer (generic term)|author (generic term)
+francois duvalier|1
+(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator (generic term)|potentate (generic term)
+francois jacob|1
+(noun)|Jacob|Francois Jacob|biochemist (generic term)
+francois mansart|1
+(noun)|Mansart|Francois Mansart|architect (generic term)|designer (generic term)
+francois marie charles fourier|1
+(noun)|Fourier|Charles Fourier|Francois Marie Charles Fourier|sociologist (generic term)
+francois mauriac|1
+(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer (generic term)|author (generic term)
+francois maurice marie mitterand|1
+(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman (generic term)|solon (generic term)|national leader (generic term)
+francois mitterand|1
+(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman (generic term)|solon (generic term)|national leader (generic term)
+francois rabelais|1
+(noun)|Rabelais|Francois Rabelais|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+francois rene chateaubriand|1
+(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+francois truffaut|1
+(noun)|Truffaut|Francois Truffaut|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+francois villon|1
+(noun)|Villon|Francois Villon|poet (generic term)
+francoise-athenais de rochechouart|1
+(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness (generic term)|marquise (generic term)
+francoise d'aubigne|1
+(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness (generic term)|marquise (generic term)|consort (generic term)
+francophil|1
+(noun)|Francophile|Francophil|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+francophile|1
+(noun)|Francophile|Francophil|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+francophobe|1
+(noun)|Francophobe|hater (generic term)
+frangibility|1
+(noun)|fragility|breakability|frangibleness|vulnerability (generic term)
+frangible|1
+(adj)|breakable (similar term)
+frangibleness|1
+(noun)|fragility|breakability|frangibility|vulnerability (generic term)
+frangipane|1
+(noun)|pastry (generic term)
+frangipani|1
+(noun)|frangipanni|shrub (generic term)|bush (generic term)
+frangipanni|1
+(noun)|frangipani|shrub (generic term)|bush (generic term)
+frank|6
+(adj)|blunt|candid|forthright|free-spoken|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+(adj)|obvious (similar term)
+(noun)|Frank|European (generic term)
+(noun)|frankfurter|hotdog|hot dog|dog|wiener|wienerwurst|weenie|sausage (generic term)
+(verb)|postmark|stamp (generic term)
+(verb)|excuse (generic term)|relieve (generic term)|let off (generic term)|exempt (generic term)
+frank baum|1
+(noun)|Baum|Frank Baum|Lyman Frank Brown|writer (generic term)|author (generic term)
+frank breech|1
+(noun)|frank breech delivery|breech delivery (generic term)|breech birth (generic term)|breech presentation (generic term)
+frank breech delivery|1
+(noun)|frank breech|breech delivery (generic term)|breech birth (generic term)|breech presentation (generic term)
+frank capra|1
+(noun)|Capra|Frank Capra|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+frank cooper|1
+(noun)|Cooper|Gary Cooper|Frank Cooper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+frank harris|1
+(noun)|Harris|Frank Harris|James Thomas Harris|writer (generic term)|author (generic term)
+frank lloyd wright|1
+(noun)|Wright|Frank Lloyd Wright|architect (generic term)|designer (generic term)
+frank morrison spillane|1
+(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer (generic term)|author (generic term)
+frank norris|1
+(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer (generic term)|author (generic term)
+frank philip stella|1
+(noun)|Stella|Frank Stella|Frank Philip Stella|painter (generic term)
+frank sinatra|1
+(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+frank stella|1
+(noun)|Stella|Frank Stella|Frank Philip Stella|painter (generic term)
+frank stockton|1
+(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer (generic term)|author (generic term)
+frank whittle|1
+(noun)|Whittle|Frank Whittle|Sir Frank Whittle|aeronautical engineer (generic term)
+frank winfield woolworth|1
+(noun)|Woolworth|Frank Winfield Woolworth|businessman (generic term)|man of affairs (generic term)
+frankenstein|3
+(noun)|Frankenstein|agency (generic term)
+(noun)|Frankenstein|Frankenstein's monster|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|Frankenstein|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+frankenstein's monster|1
+(noun)|Frankenstein|Frankenstein's monster|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+frankfort|2
+(noun)|Frankfort|capital of Kentucky|state capital (generic term)
+(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city (generic term)|metropolis (generic term)|urban center (generic term)
+frankfurt|1
+(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city (generic term)|metropolis (generic term)|urban center (generic term)
+frankfurt on the main|1
+(noun)|Frankfurt on the Main|Frankfurt|Frankfort|city (generic term)|metropolis (generic term)|urban center (generic term)
+frankfurter|1
+(noun)|frank|hotdog|hot dog|dog|wiener|wienerwurst|weenie|sausage (generic term)
+frankfurter bun|1
+(noun)|hotdog bun|bun (generic term)|roll (generic term)
+frankincense|1
+(noun)|olibanum|gum olibanum|thus|gum (generic term)
+frankincense pine|1
+(noun)|loblolly pine|Pinus taeda|pine (generic term)|pine tree (generic term)|true pine (generic term)
+franking machine|1
+(noun)|machine (generic term)
+frankish|1
+(adj)|Frankish|European (related term)
+franklin|3
+(noun)|Franklin|John Hope Franklin|historian (generic term)|historiographer (generic term)
+(noun)|Franklin|Benjamin Franklin|printer (generic term)|pressman (generic term)|writer (generic term)|author (generic term)|American Revolutionary leader (generic term)|scientist (generic term)|man of science (generic term)
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+franklin pierce|1
+(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+franklin roosevelt|1
+(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+frankliniella|1
+(noun)|Frankliniella|genus Frankliniella|arthropod genus (generic term)
+frankliniella fusca|1
+(noun)|tobacco thrips|Frankliniella fusca|thrips (generic term)|thrip (generic term)|thripid (generic term)
+frankly|1
+(adv)|honestly|candidly
+frankness|2
+(noun)|candor|candour|candidness|directness|forthrightness|honesty (generic term)|honestness (generic term)
+(noun)|outspokenness|communicativeness (generic term)
+frans hals|1
+(noun)|Hals|Frans Hals|old master (generic term)
+frantic|2
+(adj)|frenetic|phrenetic|frenzied|agitated (similar term)
+(adj)|delirious|excited|mad|unrestrained|wild (similar term)
+franz anton mesmer|1
+(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+franz ferdinand|1
+(noun)|Francis Ferdinand|Franz Ferdinand|archduke (generic term)
+franz josef i|1
+(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|emperor (generic term)
+franz joseph|1
+(noun)|Francis Joseph|Franz Joseph|Francis Joseph I|Franz Josef I|emperor (generic term)
+franz joseph haydn|1
+(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer (generic term)
+franz joseph kline|1
+(noun)|Kline|Franz Kline|Franz Joseph Kline|painter (generic term)
+franz kafka|1
+(noun)|Kafka|Franz Kafka|writer (generic term)|author (generic term)
+franz kline|1
+(noun)|Kline|Franz Kline|Franz Joseph Kline|painter (generic term)
+franz lehar|1
+(noun)|Lehar|Franz Lehar|composer (generic term)
+franz liszt|1
+(noun)|Liszt|Franz Liszt|pianist (generic term)|piano player (generic term)|composer (generic term)
+franz peter schubert|1
+(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer (generic term)
+franz schubert|1
+(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer (generic term)
+franz seraph peter schubert|1
+(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer (generic term)
+franz werfel|1
+(noun)|Werfel|Franz Werfel|writer (generic term)|author (generic term)
+frap|2
+(verb)|lash (generic term)
+(verb)|tighten (generic term)|fasten (generic term)
+frappe|3
+(noun)|drink (generic term)
+(noun)|milkshake (generic term)|milk shake (generic term)|shake (generic term)
+(noun)|ice|frozen dessert (generic term)
+fraser fir|1
+(noun)|Fraser fir|Abies fraseri|silver fir (generic term)
+frasera|1
+(noun)|Frasera|genus Frasera|dicot genus (generic term)|magnoliopsid genus (generic term)
+frasera speciosa|1
+(noun)|green gentian|Frasera speciosa|Swertia speciosa|herb (generic term)|herbaceous plant (generic term)
+frat|1
+(noun)|fraternity|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+frat house|1
+(noun)|chapterhouse|fraternity house|house (generic term)
+fratercula|1
+(noun)|Fratercula|genus Fratercula|bird genus (generic term)
+fratercula arctica|1
+(noun)|Atlantic puffin|Fratercula arctica|puffin (generic term)
+fratercula corniculata|1
+(noun)|horned puffin|Fratercula corniculata|puffin (generic term)
+fraternal|3
+(adj)|class|social class|socio-economic class (related term)
+(adj)|biovular|identical (antonym)
+(adj)|brotherly|brotherlike|sisterly (antonym)
+fraternal twin|1
+(noun)|dizygotic twin|twin (generic term)
+fraternisation|1
+(noun)|fraternization|association (generic term)
+fraternise|1
+(verb)|fraternize|socialize (generic term)|socialise (generic term)
+fraternity|2
+(noun)|frat|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|brotherhood|sodality|class (generic term)|social class (generic term)|socio-economic class (generic term)
+fraternity house|1
+(noun)|chapterhouse|frat house|house (generic term)
+fraternization|1
+(noun)|fraternisation|association (generic term)
+fraternize|1
+(verb)|fraternise|socialize (generic term)|socialise (generic term)
+fratricide|3
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|friendly fire|fire (generic term)|firing (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+frau|1
+(noun)|Frau|title (generic term)|title of respect (generic term)|form of address (generic term)
+fraud|3
+(noun)|crime (generic term)|law-breaking (generic term)
+(noun)|imposter|impostor|pretender|fake|faker|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|fraudulence|dupery|hoax|humbug|put-on|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+fraud in fact|1
+(noun)|positive fraud|fraud (generic term)
+fraud in law|1
+(noun)|constructive fraud (generic term)|legal fraud (generic term)
+fraud in the factum|1
+(noun)|fraud (generic term)
+fraud in the inducement|1
+(noun)|fraud (generic term)
+fraudulence|3
+(noun)|duplicity|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|deceit|dishonesty (generic term)
+(noun)|fraud|dupery|hoax|humbug|put-on|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+fraudulent|1
+(adj)|deceitful|fallacious|dishonest (similar term)|dishonorable (similar term)
+fraudulent scheme|1
+(noun)|racket|illegitimate enterprise|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+fraught|2
+(adj)|troubled (similar term)
+(adj)|pregnant|full (similar term)
+fraulein|1
+(noun)|Fraulein|title (generic term)|title of respect (generic term)|form of address (generic term)
+fraxinella|1
+(noun)|dittany|burning bush|gas plant|Dictamnus alba|herb (generic term)|herbaceous plant (generic term)
+fraxinus|1
+(noun)|Fraxinus|genus Fraxinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+fraxinus americana|1
+(noun)|white ash|Fraxinus Americana|ash (generic term)|ash tree (generic term)
+fraxinus caroliniana|1
+(noun)|swamp ash|Fraxinus caroliniana|ash (generic term)|ash tree (generic term)
+fraxinus cuspidata|1
+(noun)|flowering ash|Fraxinus cuspidata|ash (generic term)|ash tree (generic term)
+fraxinus dipetala|1
+(noun)|flowering ash|Fraxinus dipetala|ash (generic term)|ash tree (generic term)
+fraxinus excelsior|1
+(noun)|European ash|common European ash|Fraxinus excelsior|ash (generic term)|ash tree (generic term)
+fraxinus latifolia|1
+(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash (generic term)|ash tree (generic term)
+fraxinus nigra|1
+(noun)|black ash|basket ash|brown ash|hoop ash|Fraxinus nigra|ash (generic term)|ash tree (generic term)
+fraxinus oregona|1
+(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash (generic term)|ash tree (generic term)
+fraxinus ornus|1
+(noun)|manna ash|flowering ash|Fraxinus ornus|ash (generic term)|ash tree (generic term)
+fraxinus pennsylvanica|1
+(noun)|red ash|downy ash|Fraxinus pennsylvanica|ash (generic term)|ash tree (generic term)
+fraxinus pennsylvanica subintegerrima|1
+(noun)|green ash|Fraxinus pennsylvanica subintegerrima|red ash (generic term)|downy ash (generic term)|Fraxinus pennsylvanica (generic term)
+fraxinus quadrangulata|1
+(noun)|blue ash|Fraxinus quadrangulata|ash (generic term)|ash tree (generic term)
+fraxinus texensis|1
+(noun)|mountain ash|Fraxinus texensis|ash (generic term)|ash tree (generic term)
+fraxinus tomentosa|1
+(noun)|pumpkin ash|Fraxinus tomentosa|ash (generic term)|ash tree (generic term)
+fraxinus velutina|1
+(noun)|Arizona ash|Fraxinus velutina|ash (generic term)|ash tree (generic term)
+fray|3
+(noun)|affray|disturbance|ruffle|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|frazzle|break (generic term)|wear (generic term)|wear out (generic term)|bust (generic term)|fall apart (generic term)
+(verb)|rub|fret|chafe|scratch|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+frayed|1
+(adj)|worn (similar term)
+frazer|1
+(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist (generic term)
+frazzle|3
+(noun)|exhaustion (generic term)
+(verb)|fray|break (generic term)|wear (generic term)|wear out (generic term)|bust (generic term)|fall apart (generic term)
+(verb)|exhaust (generic term)|wash up (generic term)|beat (generic term)|tucker (generic term)|tucker out (generic term)
+freak|3
+(noun)|monster|monstrosity|lusus naturae|mutant (generic term)|mutation (generic term)|variation (generic term)|sport (generic term)
+(noun)|addict|nut|junkie|junky|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+(verb)|freak out|gross out|panic (generic term)
+freak out|2
+(noun)|disorientation|delusion (generic term)|hallucination (generic term)
+(verb)|freak|gross out|panic (generic term)
+freakish|3
+(adj)|capricious|unpredictable (similar term)
+(adj)|abnormal (similar term)
+(adj)|bizarre|eccentric|freaky|flaky|flakey|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+freakishly|1
+(adv)|capriciously
+freakishness|1
+(noun)|abnormality|unfamiliarity (generic term)|strangeness (generic term)
+freaky|2
+(adj)|strange (similar term)|unusual (similar term)
+(adj)|bizarre|eccentric|freakish|flaky|flakey|gonzo|off-the-wall|outlandish|outre|unconventional (similar term)
+freckle|2
+(noun)|lentigo|macule (generic term)|macula (generic term)
+(verb)|spot (generic term)
+freckled|1
+(adj)|lentiginous|lentiginose|patterned (similar term)
+fred astaire|1
+(noun)|Astaire|Fred Astaire|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+fred hoyle|1
+(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist (generic term)
+fred sanger|1
+(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist (generic term)
+fred skinner|1
+(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist (generic term)
+fred zinnemann|1
+(noun)|Zinnemann|Fred Zinnemann|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+freddie mac|1
+(noun)|Federal Home Loan Mortgage Corporation|Freddie Mac|FHLMC|corporation (generic term)|corp (generic term)
+frederic auguste bartholdi|1
+(noun)|Bartholdi|Frederic Auguste Bartholdi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+frederic francois chopin|1
+(noun)|Chopin|Frederic Francois Chopin|composer (generic term)|pianist (generic term)|piano player (generic term)
+frederic goudy|1
+(noun)|Goudy|Frederic Goudy|Frederic William Goudy|printer (generic term)|pressman (generic term)
+frederic william goudy|1
+(noun)|Goudy|Frederic Goudy|Frederic William Goudy|printer (generic term)|pressman (generic term)
+frederic william maitland|1
+(noun)|Maitland|Frederic William Maitland|historian (generic term)|historiographer (generic term)
+frederick|1
+(noun)|Frederick|town (generic term)
+frederick barbarossa|1
+(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor (generic term)
+frederick carleton lewis|1
+(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter (generic term)|jumper (generic term)
+frederick childe hassam|1
+(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter (generic term)
+frederick delius|1
+(noun)|Delius|Frederick Delius|composer (generic term)
+frederick douglass|1
+(noun)|Douglass|Frederick Douglass|abolitionist (generic term)|emancipationist (generic term)
+frederick i|2
+(noun)|Frederick I|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Frederick I|Frederick Barbarossa|Barbarossa|Holy Roman Emperor (generic term)
+frederick ii|2
+(noun)|Frederick II|Frederick the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Frederick II|Holy Roman Emperor Frederick II|Holy Roman Emperor (generic term)
+frederick jackson turner|1
+(noun)|Turner|Frederick Jackson Turner|historian (generic term)|historiographer (generic term)
+frederick james furnivall|1
+(noun)|Furnivall|Frederick James Furnivall|philologist (generic term)|philologue (generic term)
+frederick law olmsted|1
+(noun)|Olmsted|Frederick Law Olmsted|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+frederick loewe|1
+(noun)|Loewe|Frederick Loewe|composer (generic term)
+frederick moore vinson|1
+(noun)|Vinson|Frederick Moore Vinson|chief justice (generic term)
+frederick north|1
+(noun)|North|Frederick North|Second Earl of Guilford|statesman (generic term)|solon (generic term)|national leader (generic term)
+frederick sanger|1
+(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist (generic term)
+frederick soddy|1
+(noun)|Soddy|Frederick Soddy|chemist (generic term)
+frederick the great|1
+(noun)|Frederick II|Frederick the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+frederick william|1
+(noun)|Frederick William|Great Elector|Elector (generic term)
+frederick william i|1
+(noun)|Frederick William I|king (generic term)|male monarch (generic term)|Rex (generic term)
+frederick william ii|1
+(noun)|Frederick William II|king (generic term)|male monarch (generic term)|Rex (generic term)
+frederick william iii|1
+(noun)|Frederick William III|king (generic term)|male monarch (generic term)|Rex (generic term)
+frederick william iv|1
+(noun)|Frederick William IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+fredericksburg|2
+(noun)|Fredericksburg|town (generic term)
+(noun)|Fredericksburg|Battle of Fredericksburg|pitched battle (generic term)
+frederico garcia lorca|1
+(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet (generic term)|dramatist (generic term)|playwright (generic term)
+fredericton|1
+(noun)|Fredericton|provincial capital (generic term)
+free|20
+(adj)|at large (similar term)|escaped (similar term)|loose (similar term)|on the loose (similar term)|autonomous (similar term)|independent (similar term)|self-governing (similar term)|sovereign (similar term)|available (similar term)|uncommitted (similar term)|aweigh (similar term)|atrip (similar term)|clear (similar term)|discharged (similar term)|released (similar term)|disentangled (similar term)|extricated (similar term)|freed (similar term)|emancipated (similar term)|liberated (similar term)|footloose (similar term)|loose (similar term)|out-of-school (similar term)|unconfined (similar term)|unimprisoned (similar term)|unconstrained (similar term)|unhampered (similar term)|free of (similar term)|unrestricted (similar term)|free (related term)|independent (related term)|unbound (related term)|unconfined (related term)|unrestrained (related term)|unrestricted (related term)|unfree (antonym)
+(adj)|liberated (similar term)|unbound (similar term)|bound (antonym)
+(adj)|complimentary|costless|gratis|gratuitous|unpaid (similar term)
+(adj)|unoccupied (similar term)
+(adj)|detached|unfixed (similar term)
+(adj)|emancipated (similar term)|freed (similar term)|liberated (similar term)|freeborn (similar term)|free-soil (similar term)|slaveless (similar term)|non-slave (similar term)|free (related term)|slave (antonym)
+(adj)|spare|unoccupied (similar term)
+(adj)|loose|liberal|inexact (similar term)
+(noun)|free people|people (generic term)
+(verb)|liberate|release|unloose|unloosen|loose|confine (antonym)
+(verb)|rid|disembarrass|rid of (related term)
+(verb)|dislodge|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|lodge (antonym)
+(verb)|exempt|relieve|enforce (antonym)
+(verb)|release|issue (generic term)|supply (generic term)
+(verb)|discharge
+(verb)|disengage|obstruct (antonym)
+(verb)|absolve|justify|forgive (generic term)|blame (antonym)
+(verb)|release|relinquish|resign|give up|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|unblock|unfreeze|release|issue (generic term)|supply (generic term)|freeze (antonym)|block (antonym)
+(adv)|loose
+free-and-easy|1
+(adj)|casual|informal (similar term)
+free-associate|1
+(verb)|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+free-base|1
+(verb)|base|drug (generic term)|do drugs (generic term)
+free-enterprise|1
+(adj)|competitive|private-enterprise|capitalistic (similar term)|capitalist (similar term)
+free-flying|1
+(adj)|air (similar term)
+free-for-all|1
+(noun)|brawl|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+free-lance|1
+(verb)|work (generic term)|do work (generic term)
+free-liver|1
+(noun)|free agent (generic term)|free spirit (generic term)|freewheeler (generic term)
+free-living|1
+(adj)|nonparasitic|nonsymbiotic|independent (similar term)
+free-range|1
+(adj)|unconfined (similar term)
+free-reed|1
+(noun)|beating-reed instrument (generic term)|reed instrument (generic term)|reed (generic term)
+free-reed instrument|1
+(noun)|wind instrument (generic term)|wind (generic term)
+free-soil|1
+(adj)|slaveless|non-slave|free (similar term)
+free-spoken|1
+(adj)|blunt|candid|forthright|frank|outspoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+free-swimming|1
+(adj)|unattached|vagile (similar term)
+free-tailed bat|1
+(noun)|freetail|freetailed bat|carnivorous bat (generic term)|microbat (generic term)
+free-thinking|1
+(adj)|latitudinarian|undogmatic|undogmatical|broad-minded (similar term)
+free agency|1
+(noun)|representation (generic term)|delegacy (generic term)|agency (generic term)
+free agent|2
+(noun)|professional (generic term)|pro (generic term)
+(noun)|free spirit|freewheeler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+free association|1
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+free burning|1
+(adj)|sustained|continuous (similar term)|uninterrupted (similar term)
+free central placentation|1
+(noun)|placentation (generic term)
+free electron|1
+(noun)|electron (generic term)|negatron (generic term)
+free enterprise|1
+(noun)|market economy|private enterprise|laissez-faire economy|economy (generic term)|economic system (generic term)|non-market economy (antonym)
+free fall|2
+(noun)|drop (generic term)|fall (generic term)
+(noun)|drop|dip|fall|decrease (generic term)|decrement (generic term)
+free form|1
+(noun)|free morpheme|morpheme (generic term)
+free french|1
+(noun)|Free French|Fighting French|movement (generic term)|social movement (generic term)|front (generic term)
+free grace|1
+(noun)|grace|grace of God|beneficence (generic term)
+free hand|1
+(noun)|blank check|freedom (generic term)
+free house|1
+(noun)|public house (generic term)|pub (generic term)|saloon (generic term)|pothouse (generic term)|gin mill (generic term)|taphouse (generic term)
+free kick|1
+(noun)|place kick (generic term)|place-kicking (generic term)
+free list|1
+(noun)|list (generic term)|listing (generic term)
+free living|1
+(noun)|life style (generic term)|life-style (generic term)|lifestyle (generic term)|modus vivendi (generic term)
+free love|1
+(noun)|extramarital sex|unlawful carnal knowledge (generic term)|criminal congress (generic term)
+free lunch|1
+(noun)|gift (generic term)
+free morpheme|1
+(noun)|free form|morpheme (generic term)
+free nerve ending|1
+(noun)|nerve ending (generic term)|nerve end (generic term)
+free of|1
+(adj)|unhampered|free (similar term)
+free of charge|1
+(adv)|gratis|for free
+free pardon|1
+(noun)|amnesty|pardon|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+free people|1
+(noun)|free|people (generic term)
+free phagocyte|1
+(noun)|phagocyte (generic term)|scavenger cell (generic term)
+free port|2
+(noun)|free zone|area (generic term)|country (generic term)
+(noun)|port (generic term)
+free press|1
+(noun)|press (generic term)|public press (generic term)
+free radical|1
+(noun)|radical|atom (generic term)
+free rein|1
+(noun)|play|freedom (generic term)
+free soil party|1
+(noun)|Free Soil Party|party (generic term)|political party (generic term)
+free spirit|1
+(noun)|free agent|freewheeler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+free state|3
+(noun)|Maryland|Old Line State|Free State|MD|American state (generic term)
+(noun)|American state (generic term)|slave state (antonym)
+(noun)|Free State|Orange Free State|state (generic term)|province (generic term)
+free thought|1
+(noun)|deism|rationalism (generic term)
+free throw|1
+(noun)|foul shot|penalty free throw|charity toss|charity throw|charity shot|basketball shot (generic term)
+free throw lane|1
+(noun)|lane (generic term)
+free time|2
+(noun)|spare time|time off (generic term)
+(noun)|spare time|leisure (generic term)|leisure time (generic term)
+free trade|1
+(noun)|trade (generic term)
+free trader|1
+(noun)|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+free verse|1
+(noun)|vers libre|poem (generic term)|verse form (generic term)
+free weight|1
+(noun)|weight|exercising weight|sports equipment (generic term)
+free will|1
+(noun)|discretion|power (generic term)|powerfulness (generic term)
+free world|1
+(noun)|Free World|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+free zone|1
+(noun)|free port|area (generic term)|country (generic term)
+freebee|1
+(noun)|freebie|gift (generic term)
+freebie|1
+(noun)|freebee|gift (generic term)
+freeboard deck|1
+(noun)|upper deck (generic term)
+freebooter|1
+(noun)|plunderer|pillager|looter|spoiler|despoiler|raider|thief (generic term)|stealer (generic term)
+freeborn|1
+(adj)|free (similar term)
+freed|2
+(adj)|emancipated|liberated|free (similar term)
+(adj)|disentangled|extricated|free (similar term)
+freedman|1
+(noun)|freedwoman|freeman (generic term)|freewoman (generic term)
+freedom|2
+(noun)|state (generic term)
+(noun)|exemption|unsusceptibility (generic term)|immunity (generic term)
+freedom fighter|1
+(noun)|insurgent|insurrectionist|rebel|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+freedom from cruel and unusual punishment|1
+(noun)|civil right (generic term)
+freedom from discrimination|1
+(noun)|civil right (generic term)
+freedom from double jeopardy|1
+(noun)|civil right (generic term)
+freedom from involuntary servitude|1
+(noun)|civil right (generic term)
+freedom from search and seizure|1
+(noun)|civil right (generic term)
+freedom from self-incrimination|1
+(noun)|privilege against self incrimination|civil right (generic term)
+freedom of assembly|1
+(noun)|civil right (generic term)
+freedom of religion|1
+(noun)|civil right (generic term)
+freedom of speech|1
+(noun)|civil right (generic term)
+freedom of the press|1
+(noun)|civil right (generic term)
+freedom of the seas|1
+(noun)|freedom (generic term)
+freedom of thought|1
+(noun)|human right (generic term)
+freedom party|1
+(noun)|Hizb ut-Tahrir|Freedom Party|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+freedom rider|1
+(noun)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+freedom to bear arms|1
+(noun)|civil right (generic term)
+freedwoman|1
+(noun)|freedman|freeman (generic term)|freewoman (generic term)
+freehand|1
+(adj)|freehanded|original (similar term)
+freehanded|2
+(adj)|freehand|original (similar term)
+(adj)|big|bighearted|bounteous|bountiful|handsome|giving|liberal|openhanded|generous (similar term)
+freehearted|1
+(adj)|benevolent|generous (similar term)
+freehold|2
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|tenure (generic term)|land tenure (generic term)
+freeholder|1
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+freeing|1
+(noun)|liberation|release|accomplishment (generic term)|achievement (generic term)
+freelance|4
+(adj)|self-employed|salaried (antonym)
+(adj)|mercenary|paid (similar term)
+(noun)|independent|self-employed person|worker (generic term)
+(verb)|work (generic term)|do work (generic term)
+freeload|1
+(verb)|mooch (generic term)|bum (generic term)|cadge (generic term)|grub (generic term)|sponge (generic term)
+freeloader|1
+(noun)|borrower (generic term)
+freemail|1
+(noun)|electronic mail (generic term)|e-mail (generic term)|email (generic term)
+freeman|1
+(noun)|freewoman|citizen (generic term)
+freemason|1
+(noun)|Freemason|Mason|brother (generic term)
+freemasonry|2
+(noun)|company (generic term)|companionship (generic term)|fellowship (generic term)|society (generic term)
+(noun)|Freemasonry|Masonry|secret society (generic term)
+freesia|1
+(noun)|iridaceous plant (generic term)
+freestanding|1
+(adj)|separate|detached (similar term)
+freestone|1
+(noun)|edible fruit (generic term)
+freestyle|1
+(noun)|race (generic term)
+freetail|1
+(noun)|free-tailed bat|freetailed bat|carnivorous bat (generic term)|microbat (generic term)
+freetailed bat|1
+(noun)|freetail|free-tailed bat|carnivorous bat (generic term)|microbat (generic term)
+freethinker|1
+(noun)|deist|nonreligious person (generic term)
+freethinking|1
+(noun)|rationalism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+freetown|1
+(noun)|Freetown|capital of Sierra Leone|national capital (generic term)|port (generic term)
+freeware|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+freeway|1
+(noun)|expressway|motorway|pike|state highway|superhighway|throughway|thruway|highway (generic term)|main road (generic term)
+freewheel|3
+(noun)|clutch (generic term)
+(verb)|drift|exist (generic term)|survive (generic term)|live (generic term)|subsist (generic term)
+(verb)|coast (generic term)
+freewheeler|1
+(noun)|free agent|free spirit|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+freewheeling|2
+(adj)|unrestrained (similar term)
+(adj)|carefree|devil-may-care|happy-go-lucky|harum-scarum|slaphappy|irresponsible (similar term)
+freewill|1
+(adj)|voluntary (similar term)
+freewoman|1
+(noun)|freeman|citizen (generic term)
+freeze|13
+(noun)|freezing|cooling (generic term)|chilling (generic term)|temperature reduction (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(noun)|frost|cold weather (generic term)
+(noun)|halt|pause (generic term)
+(noun)|limitation (generic term)|restriction (generic term)
+(verb)|change state (generic term)|turn (generic term)|boil (antonym)
+(verb)|stop dead|stand still (generic term)
+(verb)|suffer (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|suspend|interrupt (generic term)|break (generic term)
+(verb)|freeze out|freeze down|solidify (generic term)
+(verb)|block|immobilize|immobilise|withhold (generic term)|keep back (generic term)|unblock (antonym)|unfreeze (antonym)
+(verb)|anesthetize (generic term)|anaesthetize (generic term)|anesthetise (generic term)|anaesthetise (generic term)|put to sleep (generic term)|put under (generic term)|put out (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+freeze-dried|2
+(adj)|lyophilized|lyophilised|preserved (similar term)
+(adj)|preserved (similar term)
+freeze-dry|1
+(verb)|preserve (generic term)|keep (generic term)
+freeze-drying|1
+(noun)|lyophilization|lyophilisation|freeze (generic term)|freezing (generic term)|dehydration (generic term)|desiccation (generic term)|drying up (generic term)|evaporation (generic term)
+freeze down|1
+(verb)|freeze|freeze out|solidify (generic term)
+freeze off|1
+(verb)|reject|spurn|scorn|pooh-pooh|disdain|turn down|refuse (generic term)|decline (generic term)
+freeze out|1
+(verb)|freeze|freeze down|solidify (generic term)
+freezer|1
+(noun)|deep-freeze|Deepfreeze|deep freezer|electric refrigerator (generic term)|fridge (generic term)
+freezing|1
+(noun)|freeze|cooling (generic term)|chilling (generic term)|temperature reduction (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+freezing mixture|1
+(noun)|mixture (generic term)
+freezing point|1
+(noun)|melting point|temperature (generic term)
+fregata|1
+(noun)|Fregata|genus Fregata|bird genus (generic term)
+fregatidae|1
+(noun)|Fregatidae|family Fregatidae|bird family (generic term)
+freight|5
+(noun)|cargo|lading|load|loading|payload|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|freightage|transportation (generic term)|shipping (generic term)|transport (generic term)
+(noun)|freightage|freight rate|rate (generic term)|charge per unit (generic term)
+(verb)|transport (generic term)
+(verb)|charge (generic term)
+freight agent|1
+(noun)|agent (generic term)
+freight car|1
+(noun)|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+freight elevator|1
+(noun)|service elevator|elevator (generic term)|lift (generic term)
+freight liner|1
+(noun)|liner train|freight train (generic term)|rattler (generic term)
+freight rate|1
+(noun)|freight|freightage|rate (generic term)|charge per unit (generic term)
+freight train|1
+(noun)|rattler|train (generic term)|railroad train (generic term)
+freightage|2
+(noun)|freight|freight rate|rate (generic term)|charge per unit (generic term)
+(noun)|freight|transportation (generic term)|shipping (generic term)|transport (generic term)
+freighter|1
+(noun)|bottom|merchantman|merchant ship|cargo ship (generic term)|cargo vessel (generic term)
+fremont|1
+(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer (generic term)|adventurer (generic term)
+fremontia|1
+(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus (generic term)
+fremontodendron|1
+(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus (generic term)
+french|5
+(adj)|French|Gallic|European country|European nation (related term)
+(noun)|French|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+(noun)|French|French people|nation (generic term)|land (generic term)|country (generic term)
+(noun)|French|Daniel Chester French|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(verb)|French|break (generic term)|break off (generic term)|snap off (generic term)
+french-fried potatoes|1
+(noun)|french fries|fries|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+french-fry|1
+(verb)|deep-fry|fry (generic term)
+french-speaking|1
+(adj)|French-speaking|communicative (similar term)|communicatory (similar term)
+french academy|1
+(noun)|French Academy|academy (generic term)|honorary society (generic term)
+french and indian war|1
+(noun)|French and Indian War|war (generic term)|warfare (generic term)
+french bean|1
+(noun)|haricot vert|haricots verts|French bean|green bean (generic term)
+french blue|1
+(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine (generic term)|ultramarine blue (generic term)
+french bracken|1
+(noun)|royal fern|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+french bread|1
+(noun)|French bread|white bread (generic term)|light bread (generic term)
+french bulldog|1
+(noun)|French bulldog|bulldog (generic term)|English bulldog (generic term)
+french canadian|1
+(noun)|French Canadian|Canadian (generic term)
+french capital|1
+(noun)|Paris|City of Light|French capital|capital of France|national capital (generic term)
+french chalk|1
+(noun)|French chalk|talc (generic term)|talcum (generic term)
+french congo|1
+(noun)|Congo|Republic of the Congo|French Congo|African country (generic term)|African nation (generic term)
+french door|1
+(noun)|French door|door (generic term)
+french dressing|1
+(noun)|French dressing|vinaigrette|sauce vinaigrette|dressing (generic term)|salad dressing (generic term)
+french dressing for fruit salad|1
+(noun)|French dressing for fruit salad|French dressing (generic term)|vinaigrette (generic term)|sauce vinaigrette (generic term)
+french endive|1
+(noun)|Belgian endive|French endive|witloof|chicory escarole (generic term)|endive (generic term)|escarole (generic term)
+french foreign legion|1
+(noun)|French Foreign Legion|foreign legion (generic term)
+french foreign office|1
+(noun)|French Foreign Office|Quai d'Orsay|Foreign Office (generic term)
+french franc|1
+(noun)|French franc|franc (generic term)
+french fries|1
+(noun)|french-fried potatoes|fries|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+french fritter|1
+(noun)|French fritter|beignet|friedcake (generic term)
+french guinea|1
+(noun)|Guinea|Republic of Guinea|French Guinea|African country (generic term)|African nation (generic term)
+french heel|1
+(noun)|French heel|heel (generic term)
+french honeysuckle|2
+(noun)|red valerian|French honeysuckle|Centranthus ruber|flower (generic term)
+(noun)|French honeysuckle|sulla|Hedysarum coronarium|subshrub (generic term)|suffrutex (generic term)
+french horn|1
+(noun)|French horn|horn|brass (generic term)|brass instrument (generic term)
+french indochina|1
+(noun)|French Indochina|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+french kiss|1
+(noun)|soul kiss|deep kiss|French kiss|kiss (generic term)|buss (generic term)|osculation (generic term)
+french knot|1
+(noun)|French knot|stitch (generic term)
+french lavender|2
+(noun)|spike lavender|French lavender|Lavandula latifolia|lavender (generic term)
+(noun)|French lavender|Lavandula stoechas|lavender (generic term)
+french leave|1
+(noun)|French leave|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+french lesson|1
+(noun)|French lesson|language lesson (generic term)
+french loaf|1
+(noun)|French loaf|loaf of bread (generic term)|loaf (generic term)
+french marigold|1
+(noun)|French marigold|Tagetes patula|marigold (generic term)
+french oceania|1
+(noun)|French Polynesia|French Oceania|possession (generic term)
+french omelet|1
+(noun)|French omelet|firm omelet (generic term)
+french pancake|1
+(noun)|crape|crepe|French pancake|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+french pastry|1
+(noun)|French pastry|pastry (generic term)
+french people|1
+(noun)|French|French people|nation (generic term)|land (generic term)|country (generic term)
+french person|1
+(noun)|Frenchman|Frenchwoman|French person|European (generic term)
+french polish|2
+(noun)|French polish|polish (generic term)|gloss (generic term)|glossiness (generic term)|burnish (generic term)
+(noun)|French polish|French polish shellac|shellac (generic term)|shellac varnish (generic term)
+french polish shellac|1
+(noun)|French polish|French polish shellac|shellac (generic term)|shellac varnish (generic term)
+french polynesia|1
+(noun)|French Polynesia|French Oceania|possession (generic term)
+french region|1
+(noun)|French region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+french republic|1
+(noun)|France|French Republic|European country (generic term)|European nation (generic term)
+french revolution|1
+(noun)|French Revolution|revolution (generic term)
+french riviera|1
+(noun)|French Riviera|Cote d'Azur|French region (generic term)
+french roof|1
+(noun)|French roof|mansard (generic term)|mansard roof (generic term)
+french rye|1
+(noun)|tall oat grass|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass (generic term)
+french sorrel|2
+(noun)|French sorrel|garden sorrel|Rumex scutatus|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+(noun)|French sorrel|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+french spinach|1
+(noun)|red goosefoot|French spinach|Chenopodium rubrum|goosefoot (generic term)
+french sudan|1
+(noun)|Mali|Republic of Mali|French Sudan|African country (generic term)|African nation (generic term)
+french teacher|1
+(noun)|French teacher|teacher (generic term)|instructor (generic term)
+french telephone|1
+(noun)|handset|French telephone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+french toast|1
+(noun)|French toast|dish (generic term)
+french ultramarine|1
+(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine (generic term)|ultramarine blue (generic term)
+french ultramarine blue|1
+(noun)|French blue|French ultramarine|French ultramarine blue|ultramarine (generic term)|ultramarine blue (generic term)
+french vermouth|1
+(noun)|dry vermouth|French vermouth|vermouth (generic term)
+french weed|1
+(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+french west indies|1
+(noun)|French West Indies|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+french window|1
+(noun)|French window|French door (generic term)
+frenchify|2
+(verb)|Frenchify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|Frenchify|change state (generic term)|turn (generic term)
+frenchman|1
+(noun)|Frenchman|Frenchwoman|French person|European (generic term)
+frenchwoman|1
+(noun)|Frenchman|Frenchwoman|French person|European (generic term)
+frenetic|1
+(adj)|frantic|phrenetic|frenzied|agitated (similar term)
+frenetically|1
+(adv)|demoniacally
+frenzied|2
+(adj)|manic|wild (similar term)
+(adj)|frantic|frenetic|phrenetic|agitated (similar term)
+frenziedly|1
+(adv)|hectically
+frenzy|1
+(noun)|craze|delirium|fury|hysteria|mania (generic term)|manic disorder (generic term)
+frequence|1
+(noun)|frequency|oftenness|rate (generic term)
+frequency|3
+(noun)|frequence|oftenness|rate (generic term)
+(noun)|relative frequency|ratio (generic term)
+(noun)|absolute frequency|cardinal number (generic term)|cardinal (generic term)
+frequency-response characteristic|1
+(noun)|frequency-response curve|characteristic curve (generic term)|characterisic function (generic term)
+frequency-response curve|1
+(noun)|frequency-response characteristic|characteristic curve (generic term)|characterisic function (generic term)
+frequency band|1
+(noun)|waveband|band (generic term)
+frequency distribution|1
+(noun)|distribution (generic term)|statistical distribution (generic term)
+frequency modulation|1
+(noun)|FM|modulation (generic term)
+frequency response|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)
+frequent|4
+(adj)|prevailing (similar term)|predominant (similar term)|regular (similar term)|steady (similar term)|infrequent (antonym)
+(adj)|common (similar term)
+(verb)|patronize|patronise|shop|shop at|buy at|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+(verb)|haunt|travel to (generic term)|visit (generic term)
+frequentative|1
+(noun)|verb (generic term)
+frequenter|1
+(noun)|patron|customer (generic term)|client (generic term)
+frequently|1
+(adv)|often|oftentimes|oft|ofttimes|rarely (antonym)|infrequently (antonym)
+fresco|3
+(noun)|mural (generic term)|wall painting (generic term)
+(noun)|painting (generic term)
+(verb)|paint (generic term)
+fresh|14
+(adj)|caller (similar term)|crisp (similar term)|firm (similar term)|crunchy (similar term)|fresh-cut (similar term)|good (similar term)|unspoiled (similar term)|unspoilt (similar term)|hot (similar term)|new-made (similar term)|strong (similar term)|warm (similar term)|new (related term)|stale (antonym)
+(adj)|new (similar term)
+(adj)|bracing|brisk|energizing|energising|refreshing|refreshful|tonic|invigorating (similar term)
+(adj)|new|novel|original (similar term)
+(adj)|unprocessed (similar term)|preserved (antonym)
+(adj)|sweet|salty (antonym)
+(adj)|undecomposed (similar term)|rotten (antonym)
+(adj)|wet (similar term)|lactating (similar term)
+(adj)|invigorated|refreshed|reinvigorated|rested (similar term)
+(adj)|sweet|unfermented|unsoured (similar term)
+(adj)|clean|pure (similar term)
+(adj)|unused|clean (similar term)
+(adj)|impertinent|impudent|overbold|smart|saucy|sassy|wise|forward (similar term)
+(adv)|recently|newly|freshly|new
+fresh-cut|1
+(adj)|fresh (similar term)
+fresh bean|1
+(noun)|common bean (generic term)
+fresh breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+fresh fish|1
+(noun)|cannon fodder|soldier (generic term)
+fresh food|1
+(noun)|fresh foods|food (generic term)|solid food (generic term)
+fresh foods|1
+(noun)|fresh food|food (generic term)|solid food (generic term)
+fresh gale|1
+(noun)|gale (generic term)
+fresh start|1
+(noun)|clean slate|tabula rasa|opportunity (generic term)|chance (generic term)
+fresh water|1
+(noun)|freshwater|water (generic term)|H2O (generic term)|saltwater (antonym)
+freshen|3
+(verb)|refresh|regenerate (generic term)|renew (generic term)
+(verb)|refresh|refreshen|freshen up|change (generic term)
+(verb)|refresh|refreshen|change (generic term)|alter (generic term)|modify (generic term)|freshen up (related term)|tire (antonym)
+freshen up|2
+(verb)|refurbish|renovate|regenerate (generic term)|renew (generic term)
+(verb)|freshen|refresh|refreshen|change (generic term)
+freshener|1
+(noun)|thing (generic term)
+fresher|1
+(noun)|freshman|lowerclassman (generic term)|underclassman (generic term)
+freshet|1
+(noun)|spate|flow (generic term)|flowing (generic term)
+freshly|2
+(adv)|recently|newly|fresh|new
+(adv)|impertinently|saucily|pertly|impudently
+freshman|3
+(adj)|first-year|first (similar term)
+(noun)|fresher|lowerclassman (generic term)|underclassman (generic term)
+(noun)|newcomer|fledgling|fledgeling|starter|neophyte|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+freshman class|1
+(noun)|class (generic term)|year (generic term)
+freshness|4
+(noun)|newness (generic term)|staleness (antonym)
+(noun)|glow|good health (generic term)|healthiness (generic term)
+(noun)|novelty|originality (generic term)
+(noun)|crust|gall|impertinence|impudence|insolence|cheekiness|discourtesy (generic term)|rudeness (generic term)
+freshwater|1
+(noun)|fresh water|water (generic term)|H2O (generic term)|saltwater (antonym)
+freshwater bass|2
+(noun)|bass|freshwater fish (generic term)
+(noun)|bass (generic term)
+freshwater bream|2
+(noun)|bream|freshwater fish (generic term)
+(noun)|bream|sunfish (generic term)|centrarchid (generic term)
+freshwater clam|1
+(noun)|freshwater mussel|mussel (generic term)
+freshwater cordgrass|1
+(noun)|prairie cordgrass|slough grass|Spartina pectinmata|cordgrass (generic term)|cord grass (generic term)
+freshwater eel|1
+(noun)|common eel|eel (generic term)
+freshwater fish|1
+(noun)|seafood (generic term)
+freshwater limpet|1
+(noun)|river limpet|Ancylus fluviatilis|gastropod (generic term)|univalve (generic term)
+freshwater mussel|1
+(noun)|freshwater clam|mussel (generic term)
+fresnel|1
+(noun)|Fresnel|Augustin Jean Fresnel|physicist (generic term)
+fresnel lens|1
+(noun)|Fresnel lens|lens (generic term)|lense (generic term)|lens system (generic term)
+fresno|1
+(noun)|Fresno|city (generic term)|metropolis (generic term)|urban center (generic term)
+fress|1
+(verb)|gluttonize|gluttonise|eat (generic term)
+fret|16
+(noun)|stew|sweat|lather|swither|agitation (generic term)
+(noun)|worn spot|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+(noun)|Greek fret|Greek key|key pattern|architectural ornament (generic term)
+(noun)|bar (generic term)
+(verb)|fuss|niggle|worry (generic term)
+(verb)|worry (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|chafe|gall|irritate (generic term)
+(verb)|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|eat into|rankle|grate|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|carve (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|choke|gag|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|rub|fray|chafe|scratch|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|erode|eat away|damage (generic term)
+(verb)|eat away|corrode (generic term)|rust (generic term)
+fretful|2
+(adj)|antsy|fidgety|itchy|restless|unquiet (similar term)
+(adj)|querulous|whiney|whining|whiny|complaining (similar term)|complaintive (similar term)
+fretfulness|1
+(noun)|irritability|crossness|fussiness|peevishness|petulance|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+fretsaw|1
+(noun)|jigsaw|scroll saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+fretted|2
+(adj)|bar (related term)|unfretted (antonym)
+(adj)|interlaced|latticed|latticelike|reticulate (similar term)|reticular (similar term)
+fretwork|1
+(noun)|lattice|latticework|framework (generic term)|frame (generic term)|framing (generic term)
+freud|1
+(noun)|Freud|Sigmund Freud|neurologist (generic term)|brain doctor (generic term)|analyst (generic term)|psychoanalyst (generic term)
+freudian|2
+(adj)|Freudian|neurologist|brain doctor|analyst|psychoanalyst (related term)
+(noun)|Freudian|follower (generic term)
+freudian psychology|1
+(noun)|Freudian psychology|psychotherapy (generic term)|psychotherapeutics (generic term)|mental hygiene (generic term)
+freudian slip|1
+(noun)|Freudian slip|slip (generic term)|slip-up (generic term)|miscue (generic term)|parapraxis (generic term)
+frey|1
+(noun)|Frey|Freyr|Norse deity (generic term)
+freya|1
+(noun)|Freya|Freyja|Norse deity (generic term)
+freyja|1
+(noun)|Freya|Freyja|Norse deity (generic term)
+freyr|1
+(noun)|Frey|Freyr|Norse deity (generic term)
+frg|1
+(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country (generic term)|European nation (generic term)
+fri|1
+(noun)|Friday|Fri|weekday (generic term)
+friability|1
+(noun)|crumbliness|breakableness (generic term)
+friable|2
+(adj)|breakable (similar term)
+(adj)|light|sandy|loose (similar term)
+friar|1
+(noun)|mendicant|religious (generic term)
+friar's-cowl|1
+(noun)|Arisarum vulgare|arum (generic term)|aroid (generic term)
+friar's lantern|1
+(noun)|ignis fatuus|jack-o'-lantern|will-o'-the-wisp|light (generic term)|visible light (generic term)|visible radiation (generic term)
+friar preacher|1
+(noun)|Dominican|Black Friar|Blackfriar|friar (generic term)|mendicant (generic term)
+friary|1
+(noun)|monastery (generic term)
+fricandeau|1
+(noun)|veal roast (generic term)|roast veal (generic term)
+fricassee|2
+(noun)|stew (generic term)
+(verb)|cook (generic term)
+fricative|2
+(adj)|continuant|sibilant|spirant|strident|soft (similar term)
+(noun)|fricative consonant|spirant|continuant consonant (generic term)|continuant (generic term)
+fricative consonant|1
+(noun)|fricative|spirant|continuant consonant (generic term)|continuant (generic term)
+frick|1
+(noun)|Frick|Henry Clay Frick|industrialist (generic term)
+friction|3
+(noun)|clash|conflict (generic term)
+(noun)|rubbing|resistance (generic term)
+(noun)|detrition|rubbing|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+friction clutch|1
+(noun)|clutch (generic term)
+friction match|1
+(noun)|match|lucifer|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+friction tape|1
+(noun)|insulating tape|adhesive tape (generic term)
+frictional|1
+(adj)|resistance (related term)
+frictionless|1
+(adj)|resistance (related term)
+friday|1
+(noun)|Friday|Fri|weekday (generic term)
+fridge|1
+(noun)|electric refrigerator|refrigerator (generic term)|icebox (generic term)
+fridtjof nansen|1
+(noun)|Nansen|Fridtjof Nansen|explorer (generic term)|adventurer (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+fried|1
+(adj)|deep-fried|cooked (similar term)
+fried egg|1
+(noun)|dish (generic term)
+fried rice|1
+(noun)|Chinese fried rice|dish (generic term)
+friedan|1
+(noun)|Friedan|Betty Friedan|Betty Naomi Friedan|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+friedcake|1
+(noun)|cake (generic term)
+friedman|1
+(noun)|Friedman|Milton Friedman|economist (generic term)|economic expert (generic term)
+friedman test|1
+(noun)|Friedman test|rabbit test|pregnancy test (generic term)
+friedreich's ataxia|1
+(noun)|Friedreich's ataxia|herediatry spinal ataxia|ataxia (generic term)|ataxy (generic term)|dyssynergia (generic term)|motor ataxia (generic term)
+friedrich anton mesmer|1
+(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+friedrich august kekule|1
+(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist (generic term)
+friedrich august kekule von stradonitz|1
+(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist (generic term)
+friedrich august von hayek|1
+(noun)|Hayek|Friedrich August von Hayek|economist (generic term)|economic expert (generic term)
+friedrich august wolf|1
+(noun)|Wolf|Friedrich August Wolf|classicist (generic term)|classical scholar (generic term)
+friedrich engels|1
+(noun)|Engels|Friedrich Engels|socialist (generic term)
+friedrich froebel|1
+(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+friedrich gottlieb klopstock|1
+(noun)|Klopstock|Friedrich Gottlieb Klopstock|poet (generic term)
+friedrich hebbel|1
+(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist (generic term)|playwright (generic term)
+friedrich krupp|1
+(noun)|Krupp|Friedrich Krupp|industrialist (generic term)
+friedrich max muller|1
+(noun)|Muller|Max Muller|Friedrich Max Muller|philologist (generic term)|philologue (generic term)
+friedrich wilhelm august froebel|1
+(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+friedrich wilhelm bessel|1
+(noun)|Bessel|Friedrich Wilhelm Bessel|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+friedrich wilhelm nietzsche|1
+(noun)|Nietzsche|Friedrich Wilhelm Nietzsche|philosopher (generic term)
+friend|5
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|ally|associate (generic term)|foe (antonym)
+(noun)|acquaintance|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|supporter|protagonist|champion|admirer|booster|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|Friend|Quaker|Christian (generic term)
+friend of the court|1
+(noun)|amicus curiae|adviser (generic term)|advisor (generic term)|consultant (generic term)
+friendless|1
+(adj)|outcast|unwanted (similar term)
+friendlessness|1
+(noun)|solitariness (generic term)
+friendliness|2
+(noun)|liking (generic term)|unfriendliness (antonym)
+(noun)|disposition (generic term)|temperament (generic term)|unfriendliness (antonym)
+friendly|5
+(adj)|affable (similar term)|amiable (similar term)|cordial (similar term)|genial (similar term)|chummy (similar term)|matey (similar term)|pally (similar term)|palsy-walsy (similar term)|companionate (similar term)|comradely (similar term)|hail-fellow (similar term)|hail-fellow-well-met (similar term)|couthie (similar term)|couthy (similar term)|cozy (similar term)|intimate (similar term)|informal (similar term)|favorable (similar term)|well-disposed (similar term)|neighborly (similar term)|neighbourly (similar term)|social (similar term)|amicable (related term)|congenial (related term)|gracious (related term)|hospitable (related term)|sociable (related term)|social (related term)|warm (related term)|unfriendly (antonym)
+(adj)|amicable (similar term)
+(adj)|unfriendly (antonym)
+(adj)|hostile (antonym)
+(noun)|military personnel (generic term)|soldiery (generic term)|troops (generic term)|hostile (antonym)
+friendly fire|1
+(noun)|fratricide|fire (generic term)|firing (generic term)
+friendly islands|1
+(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country (generic term)|state (generic term)|land (generic term)
+friendly relationship|1
+(noun)|friendship|relationship (generic term)
+friendly takeover|1
+(noun)|takeover (generic term)
+friendship|1
+(noun)|friendly relationship|relationship (generic term)
+friendship plant|1
+(noun)|panamica|panamiga|Pilea involucrata|nettle (generic term)
+frier|1
+(noun)|fryer|pullet|chicken (generic term)|poulet (generic term)|volaille (generic term)
+fries|1
+(noun)|french fries|french-fried potatoes|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+friesian|1
+(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+friesland|2
+(noun)|Friesland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Friesland|state (generic term)|province (generic term)
+frieze|2
+(noun)|architectural ornament (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+frigate|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+frigate bird|1
+(noun)|man-of-war bird|pelecaniform seabird (generic term)
+frigg|1
+(noun)|Frigg|Frigga|Norse deity (generic term)
+frigga|1
+(noun)|Frigg|Frigga|Norse deity (generic term)
+fright|2
+(noun)|fear|fearfulness|emotion (generic term)|fearlessness (antonym)
+(verb)|frighten|scare|affright|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|frighten off (related term)|frighten away (related term)
+frighten|2
+(verb)|fright|scare|affright|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|frighten off (related term)|frighten away (related term)
+(verb)|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+frighten away|1
+(verb)|daunt|dash|scare off|pall|frighten off|scare away|scare|intimidate (generic term)|restrain (generic term)
+frighten off|1
+(verb)|daunt|dash|scare off|pall|scare away|frighten away|scare|intimidate (generic term)|restrain (generic term)
+frightened|2
+(adj)|panicky|panicked|panic-stricken|panic-struck|terrified|afraid (similar term)
+(adj)|scared|afraid (similar term)
+frightening|2
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|horrendous|horrific|terrible|alarming (similar term)
+(noun)|terrorization|terrorisation|bullying (generic term)|intimidation (generic term)
+frighteningly|1
+(adv)|scarily
+frightful|3
+(adj)|atrocious|horrifying|horrible|ugly|alarming (similar term)
+(adj)|terrible|awful|tremendous|extraordinary (similar term)
+(adj)|fearful|bad (similar term)
+frightfully|1
+(adv)|terribly|awfully|awful
+frightfulness|1
+(noun)|awfulness (generic term)|dreadfulness (generic term)|horridness (generic term)|terribleness (generic term)
+frigid|3
+(adj)|cold|unloving (similar term)
+(adj)|arctic|gelid|glacial|icy|polar|cold (similar term)
+(adj)|frosty|frozen|glacial|icy|wintry|cold (similar term)
+frigid zone|1
+(noun)|Frigid Zone|polar zone|polar region|climatic zone (generic term)
+frigidity|3
+(noun)|frigidness|unresponsiveness (generic term)|deadness (generic term)
+(noun)|coldness|cold|low temperature|frigidness|temperature (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|hotness (antonym)
+(noun)|coldness|coolness|frigidness|iciness|chilliness|unemotionality (generic term)|emotionlessness (generic term)
+frigidly|1
+(adv)|frostily
+frigidness|3
+(noun)|frigidity|unresponsiveness (generic term)|deadness (generic term)
+(noun)|coldness|cold|low temperature|frigidity|temperature (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|hotness (antonym)
+(noun)|coldness|coolness|frigidity|iciness|chilliness|unemotionality (generic term)|emotionlessness (generic term)
+frigorific|1
+(adj)|cold (similar term)
+frijol|1
+(noun)|kidney bean|frijole|common bean (generic term)|common bean plant (generic term)|Phaseolus vulgaris (generic term)
+frijole|2
+(noun)|kidney bean|frijol|common bean (generic term)|common bean plant (generic term)|Phaseolus vulgaris (generic term)
+(noun)|common bean (generic term)
+frijoles refritos|1
+(noun)|refried beans|dish (generic term)
+frijolillo|1
+(noun)|mescal bean|coral bean|frijolito|Sophora secundiflora|tree (generic term)
+frijolito|1
+(noun)|mescal bean|coral bean|frijolillo|Sophora secundiflora|tree (generic term)
+frill|4
+(noun)|plate (generic term)
+(noun)|ruff|external body part (generic term)
+(noun)|flounce|ruffle|furbelow|adornment (generic term)
+(noun)|folderal|falderol|gimcrackery|gimcrack|nonsense|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+frilled|1
+(adj)|frilly|ruffled|adorned (similar term)|decorated (similar term)
+frilled lizard|1
+(noun)|Chlamydosaurus kingi|agamid (generic term)|agamid lizard (generic term)
+frilly|1
+(adj)|frilled|ruffled|adorned (similar term)|decorated (similar term)
+frimaire|1
+(noun)|Frimaire|Revolutionary calendar month (generic term)
+fringe|6
+(noun)|periphery|outer boundary|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|outskirt|city district (generic term)
+(noun)|social group (generic term)
+(noun)|edging (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|surround (generic term)|skirt (generic term)|border (generic term)
+fringe-toed lizard|1
+(noun)|Uma notata|iguanid (generic term)|iguanid lizard (generic term)
+fringe benefit|1
+(noun)|perquisite|perk|benefit (generic term)
+fringe bush|1
+(noun)|Chionanthus virginicus|fringe tree (generic term)
+fringe cups|1
+(noun)|false alumroot|Tellima grandiflora|wildflower (generic term)|wild flower (generic term)
+fringe tree|1
+(noun)|tree (generic term)
+fringed|3
+(adj)|bordered (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+(adj)|laciniate|rough (similar term)
+fringed gecko|1
+(noun)|flying gecko|Ptychozoon homalocephalum|gecko (generic term)
+fringed gentian|1
+(noun)|gentian (generic term)
+fringed grass of parnassus|1
+(noun)|fringed grass of Parnassus|Parnassia fimbriata|wildflower (generic term)|wild flower (generic term)
+fringed loosestrife|1
+(noun)|Lysimachia ciliatum|loosestrife (generic term)
+fringed orchid|1
+(noun)|fringed orchis|orchid (generic term)|orchidaceous plant (generic term)
+fringed orchis|1
+(noun)|fringed orchid|orchid (generic term)|orchidaceous plant (generic term)
+fringed pink|2
+(noun)|ground pink|moss pink|Linanthus dianthiflorus|phlox (generic term)
+(noun)|Dianthus supurbus|pink (generic term)|garden pink (generic term)
+fringed polygala|1
+(noun)|flowering wintergreen|gaywings|bird-on-the-wing|Polygala paucifolia|milkwort (generic term)
+fringed poppy mallow|1
+(noun)|Callirhoe digitata|poppy mallow (generic term)
+fringepod|1
+(noun)|lacepod|herb (generic term)|herbaceous plant (generic term)
+fringilla|1
+(noun)|Fringilla|genus Fringilla|bird genus (generic term)
+fringilla coelebs|1
+(noun)|chaffinch|Fringilla coelebs|finch (generic term)
+fringilla montifringilla|1
+(noun)|brambling|Fringilla montifringilla|finch (generic term)
+fringillidae|1
+(noun)|Fringillidae|family Fringillidae|bird family (generic term)
+fringy|1
+(adj)|marginal|peripheral (similar term)
+frippery|1
+(noun)|bagatelle|fluff|frivolity|triviality (generic term)|trivia (generic term)|trifle (generic term)|small beer (generic term)
+frisbee|1
+(noun)|Frisbee|disk (generic term)|disc (generic term)|plaything (generic term)|toy (generic term)
+frisch|3
+(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist (generic term)
+(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist (generic term)|economic expert (generic term)
+(noun)|Frisch|Karl von Frisch|zoologist (generic term)|animal scientist (generic term)
+frisia|1
+(noun)|Frisia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+frisian|3
+(adj)|Frisian|state|province (related term)|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Frisian|Dutch (generic term)|Dutch people (generic term)
+(noun)|Frisian|West Germanic (generic term)|West Germanic language (generic term)
+frisian islands|1
+(noun)|Frisian Islands|archipelago (generic term)
+frisk|3
+(noun)|frisking|search (generic term)|hunt (generic term)|hunting (generic term)
+(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|romp|run around|lark about|play (generic term)
+(verb)|search (generic term)
+friskiness|1
+(noun)|frolicsomeness|sportiveness|playfulness (generic term)|fun (generic term)
+frisking|1
+(noun)|frisk|search (generic term)|hunt (generic term)|hunting (generic term)
+frisky|1
+(adj)|kittenish|playful (similar term)
+frisson|1
+(noun)|shiver|chill|quiver|shudder|thrill|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+fritillaria|1
+(noun)|Fritillaria|genus Fritillaria|liliid monocot genus (generic term)
+fritillaria affinis|1
+(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary (generic term)|checkered lily (generic term)
+fritillaria agrestis|1
+(noun)|stink bell|Fritillaria agrestis|fritillary (generic term)|checkered lily (generic term)
+fritillaria biflora|1
+(noun)|mission bells|black fritillary|Fritillaria biflora|fritillary (generic term)|checkered lily (generic term)
+fritillaria imperialis|1
+(noun)|crown imperial|Fritillaria imperialis|fritillary (generic term)|checkered lily (generic term)
+fritillaria lanceolata|1
+(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary (generic term)|checkered lily (generic term)
+fritillaria liliaceae|1
+(noun)|white fritillary|Fritillaria liliaceae|fritillary (generic term)|checkered lily (generic term)
+fritillaria meleagris|1
+(noun)|snake's head fritillary|guinea-hen flower|checkered daffodil|leper lily|Fritillaria meleagris|fritillary (generic term)|checkered lily (generic term)
+fritillaria micrantha|1
+(noun)|brown bells|Fritillaria micrantha|Fritillaria parviflora|fritillary (generic term)|checkered lily (generic term)
+fritillaria mutica|1
+(noun)|mission bells|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary (generic term)|checkered lily (generic term)
+fritillaria parviflora|1
+(noun)|brown bells|Fritillaria micrantha|Fritillaria parviflora|fritillary (generic term)|checkered lily (generic term)
+fritillaria pluriflora|1
+(noun)|adobe lily|pink fritillary|Fritillaria pluriflora|fritillary (generic term)|checkered lily (generic term)
+fritillaria recurva|1
+(noun)|scarlet fritillary|Fritillaria recurva|fritillary (generic term)|checkered lily (generic term)
+fritillary|2
+(noun)|checkered lily|bulbous plant (generic term)
+(noun)|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+frittata|1
+(noun)|dish (generic term)
+fritter|2
+(noun)|friedcake (generic term)
+(verb)|frivol away|dissipate|shoot|fritter away|fool|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+fritter away|1
+(verb)|fritter|frivol away|dissipate|shoot|fool|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+fritter batter|1
+(noun)|batter (generic term)
+fritz albert lipmann|1
+(noun)|Lipmann|Fritz Albert Lipmann|biochemist (generic term)
+fritz haber|1
+(noun)|Haber|Fritz Haber|chemist (generic term)
+fritz kreisler|1
+(noun)|Kreisler|Fritz Kreisler|violinist (generic term)|fiddler (generic term)
+fritz w. meissner|1
+(noun)|Meissner|Fritz W. Meissner|physicist (generic term)
+friuli|1
+(noun)|Friulian|Friuli|Rhaeto-Romance (generic term)|Rhaeto-Romanic (generic term)
+friuli-venezia giulia|1
+(noun)|Friuli-Venezia Giulia|Italian region (generic term)
+friulian|1
+(noun)|Friulian|Friuli|Rhaeto-Romance (generic term)|Rhaeto-Romanic (generic term)
+frivol|1
+(verb)|trifle|act (generic term)|behave (generic term)|do (generic term)
+frivol away|1
+(verb)|fritter|dissipate|shoot|fritter away|fool|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+frivolity|3
+(noun)|frivolousness|trait (generic term)|seriousness (antonym)
+(noun)|bagatelle|fluff|frippery|triviality (generic term)|trivia (generic term)|trifle (generic term)|small beer (generic term)
+(noun)|buffoonery|clowning|japery|harlequinade|prank|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+frivolous|1
+(adj)|airheaded (similar term)|dizzy (similar term)|empty-headed (similar term)|featherbrained (similar term)|giddy (similar term)|light-headed (similar term)|lightheaded (similar term)|silly (similar term)|flighty (similar term)|flyaway (similar term)|head-in-the-clouds (similar term)|scatterbrained (similar term)|flippant (similar term)|light-minded (similar term)|idle (similar term)|light (similar term)|light (similar term)|trivial (similar term)|superficial (related term)|serious (antonym)
+frivolousness|1
+(noun)|frivolity|trait (generic term)|seriousness (antonym)
+frizz|2
+(noun)|condition (generic term)|status (generic term)
+(verb)|crimp|crape|frizzle|kink up|kink|curl (generic term)|wave (generic term)
+frizzle|2
+(verb)|fry (generic term)
+(verb)|crimp|crape|frizz|kink up|kink|curl (generic term)|wave (generic term)
+frizzly|1
+(adj)|crisp|frizzy|kinky|nappy|curly (similar term)
+frizzy|1
+(adj)|crisp|frizzly|kinky|nappy|curly (similar term)
+frobisher|1
+(noun)|Frobisher|Sir Martin Frobisher|explorer (generic term)|adventurer (generic term)|navigator (generic term)
+frock|3
+(noun)|habit (generic term)
+(noun)|dress|woman's clothing (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+frock coat|1
+(noun)|coat (generic term)
+froebel|1
+(noun)|Froebel|Friedrich Froebel|Friedrich Wilhelm August Froebel|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+froelichia|1
+(noun)|Froelichia|genus Froelichia|caryophylloid dicot genus (generic term)
+frog|4
+(noun)|toad|toad frog|anuran|batrachian|salientian|amphibian (generic term)
+(noun)|Gaul|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+(noun)|adornment (generic term)
+(verb)|capture (generic term)|catch (generic term)
+frog's-bit|1
+(noun)|frogbit|Hydrocharis morsus-ranae|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+frog's-bit family|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|monocot family (generic term)|liliopsid family (generic term)
+frog's lettuce|1
+(noun)|pondweed (generic term)
+frog-like|1
+(adj)|animal (similar term)
+frog kick|1
+(noun)|swimming kick (generic term)
+frog legs|1
+(noun)|dish (generic term)
+frog orchid|2
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Coeloglossum viride|orchid (generic term)|orchidaceous plant (generic term)
+frogbit|1
+(noun)|frog's-bit|Hydrocharis morsus-ranae|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+frogbit family|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frog's-bit family|monocot family (generic term)|liliopsid family (generic term)
+frogfish|1
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+froghopper|1
+(noun)|spittle insect (generic term)|spittlebug (generic term)
+frogman|1
+(noun)|diver|underwater diver|explorer (generic term)|adventurer (generic term)
+frogmarch|2
+(verb)|march (generic term)
+(verb)|bear (generic term)
+frogmouth|1
+(noun)|caprimulgiform bird (generic term)
+frolic|2
+(noun)|play|romp|gambol|caper|diversion (generic term)|recreation (generic term)
+(verb)|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+frolicky|1
+(adj)|coltish|frolicsome|rollicking|sportive|playful (similar term)
+frolicsome|1
+(adj)|coltish|frolicky|rollicking|sportive|playful (similar term)
+frolicsomeness|1
+(noun)|friskiness|sportiveness|playfulness (generic term)|fun (generic term)
+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 (generic term)
+frond|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+front|13
+(adj)|advance (similar term)|advanced (similar term)|in advance (similar term)|foremost (similar term)|frontmost (similar term)|frontal (similar term)|head-on (similar term)|anterior (related term)|first (related term)|fore (related term)|back (antonym)
+(noun)|presence|proximity (generic term)
+(noun)|front end|forepart|side (generic term)|face (generic term)|rear (antonym)
+(noun)|side (generic term)|rear (antonym)
+(noun)|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|battlefront|front line|line (generic term)
+(noun)|movement|social movement|social group (generic term)
+(noun)|atmospheric phenomenon (generic term)
+(noun)|front man|figurehead|nominal head|straw man|strawman|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|appearance (generic term)
+(noun)|position (generic term)|place (generic term)|back (antonym)
+(verb)|look|face|lie (generic term)|back (antonym)
+(verb)|breast|confront (generic term)|face (generic term)
+front-porch campaign|1
+(noun)|front-porch campaigning|campaigning (generic term)|candidacy (generic term)|candidature (generic term)|electioneering (generic term)|political campaign (generic term)
+front-porch campaigning|1
+(noun)|front-porch campaign|campaigning (generic term)|candidacy (generic term)|candidature (generic term)|electioneering (generic term)|political campaign (generic term)
+front-runner|1
+(noun)|favorite|favourite|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+front-stall|1
+(noun)|chanfron|chamfron|testiere|frontstall|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+front bench|1
+(noun)|seat (generic term)
+front burner|1
+(noun)|precedence (generic term)|precedency (generic term)|priority (generic term)|back burner (antonym)
+front crawl|1
+(noun)|crawl|Australian crawl|swimming stroke (generic term)
+front door|1
+(noun)|front entrance|exterior door (generic term)|outside door (generic term)
+front end|1
+(noun)|front|forepart|side (generic term)|face (generic term)|rear (antonym)
+front entrance|1
+(noun)|front door|exterior door (generic term)|outside door (generic term)
+front line|1
+(noun)|battlefront|front|line (generic term)
+front man|1
+(noun)|front|figurehead|nominal head|straw man|strawman|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+front matter|1
+(noun)|prelims|matter (generic term)
+front porch|1
+(noun)|porch (generic term)
+front projector|1
+(noun)|projector (generic term)
+front room|1
+(noun)|living room|living-room|sitting room|parlor|parlour|room (generic term)
+front tooth|1
+(noun)|anterior|tooth (generic term)
+front yard|1
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+frontage|3
+(noun)|extent (generic term)
+(noun)|direction (generic term)
+(noun)|facade|frontal|front (generic term)
+frontage road|1
+(noun)|service road|local road (generic term)|local street (generic term)
+frontal|6
+(adj)|atmospheric phenomenon (related term)
+(adj)|head-on|front (similar term)
+(adj)|anterior (similar term)
+(noun)|frontlet|adornment (generic term)
+(noun)|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+(noun)|facade|frontage|front (generic term)
+frontal area|1
+(noun)|frontal cortex|cortical area (generic term)|cortical region (generic term)
+frontal bone|1
+(noun)|os frontale|forehead|membrane bone (generic term)
+frontal cortex|1
+(noun)|frontal area|cortical area (generic term)|cortical region (generic term)
+frontal eminence|1
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+frontal gyrus|1
+(noun)|gyrus (generic term)|convolution (generic term)
+frontal lobe|1
+(noun)|lobe (generic term)
+frontal lobotomy|1
+(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|psychosurgery (generic term)
+frontal sinus|1
+(noun)|sinus (generic term)
+frontal suture|1
+(noun)|sutura frontalis|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+frontbencher|1
+(noun)|legislator (generic term)
+frontier|3
+(noun)|wilderness (generic term)|wild (generic term)
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+frontier settlement|1
+(noun)|outpost|colony (generic term)|settlement (generic term)
+frontiersman|1
+(noun)|backwoodsman|mountain man|pioneer (generic term)
+frontierswoman|1
+(noun)|pioneer (generic term)
+frontispiece|2
+(noun)|facade (generic term)|frontage (generic term)|frontal (generic term)
+(noun)|front (generic term)
+frontlet|1
+(noun)|frontal|adornment (generic term)
+frontmost|1
+(adj)|foremost|front (similar term)
+frontstall|1
+(noun)|chanfron|chamfron|testiere|front-stall|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+frontward|1
+(adv)|forward|forwards|frontwards|forrad|forrard|backward (antonym)
+frontwards|1
+(adv)|forward|forwards|frontward|forrad|forrard|backward (antonym)
+frore|1
+(adj)|cold (similar term)
+frost|7
+(noun)|hoar|hoarfrost|rime|ice (generic term)|water ice (generic term)
+(noun)|freeze|cold weather (generic term)
+(noun)|icing|freeze (generic term)|freezing (generic term)
+(noun)|Frost|Robert Frost|Robert Lee Frost|poet (generic term)
+(verb)|ice|cover (generic term)
+(verb)|cover (generic term)
+(verb)|damage (generic term)
+frost's bolete|1
+(noun)|Frost's bolete|Boletus frostii|bolete (generic term)
+frost-bound|1
+(adj)|frozen (similar term)
+frost-weed|2
+(noun)|frostweed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+(noun)|Virginia crownbeard|frostweed|Verbesina virginica|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+frost fish|1
+(noun)|cutlassfish|hairtail|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+frost heave|1
+(noun)|frost heaving|geological phenomenon (generic term)
+frost heaving|1
+(noun)|frost heave|geological phenomenon (generic term)
+frost mist|1
+(noun)|ice crystal|snow mist|diamond dust|poudrin|ice needle|frost snow|crystal (generic term)
+frost over|1
+(verb)|ice up|ice over|change (generic term)
+frost snow|1
+(noun)|ice crystal|snow mist|diamond dust|poudrin|ice needle|frost mist|crystal (generic term)
+frostbite|1
+(noun)|cryopathy|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+frostbitten|1
+(adj)|frozen (similar term)
+frosted|1
+(adj)|opaque (similar term)
+frosted bat|1
+(noun)|Vespertilio murinus|vespertilian bat (generic term)|vespertilionid (generic term)
+frostian|1
+(adj)|Frostian|poet (related term)
+frostily|1
+(adv)|frigidly
+frostiness|2
+(noun)|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|hoariness|white (generic term)|whiteness (generic term)
+frosting|1
+(noun)|icing|ice|topping (generic term)
+frostweed|2
+(noun)|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+(noun)|Virginia crownbeard|frost-weed|Verbesina virginica|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+frostwort|1
+(noun)|frostweed|frost-weed|Helianthemum canadense|Crocanthemum canadensei|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+frosty|3
+(adj)|frigid|frozen|glacial|icy|wintry|cold (similar term)
+(adj)|rimed|rimy|cold (similar term)
+(adj)|crisp|nipping|nippy|snappy|parky|cold (similar term)
+froth|3
+(noun)|foam|bubble (generic term)
+(verb)|foam|fizz|effervesce|sparkle|bubble (generic term)
+(verb)|spume|suds|make (generic term)|create (generic term)
+froth at the mouth|1
+(verb)|foam at the mouth|rage (generic term)
+frothiness|1
+(noun)|bubbliness|effervescence|gaseousness (generic term)
+frothing|2
+(adj)|bubbling|foaming|foamy|spumous|spumy|sudsy|agitated (similar term)
+(adj)|foaming|foamy|unhealthy (similar term)
+frothy|2
+(adj)|bubbling|bubbly|foaming|foamy|effervescing|effervescent (similar term)
+(adj)|foamy|gaseous (similar term)
+frottage|1
+(noun)|masturbation (generic term)|onanism (generic term)
+frotteur|1
+(noun)|masturbator (generic term)|onanist (generic term)
+froward|1
+(adj)|headstrong|self-willed|willful|wilful|disobedient (similar term)
+frown|2
+(noun)|scowl|facial expression (generic term)|facial gesture (generic term)
+(verb)|glower|lour|lower|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+frown line|1
+(noun)|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+frown on|1
+(verb)|frown upon|disapprove (generic term)
+frown upon|1
+(verb)|frown on|disapprove (generic term)
+frowning|1
+(adj)|displeased (similar term)
+frowsty|1
+(adj)|fusty|musty|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+frowsy|1
+(adj)|frowzy|slovenly|untidy (similar term)
+frowzled|1
+(adj)|disheveled|dishevelled|rumpled|tousled|untidy (similar term)
+frowzy|1
+(adj)|frowsy|slovenly|untidy (similar term)
+frozen|7
+(adj)|frostbitten (similar term)|frost-bound (similar term)|glaciated (similar term)|icebound (similar term)|ice-clogged (similar term)|icy (similar term)|sleety (similar term)|unthawed (similar term)|cold (related term)|unmelted (related term)|unfrozen (antonym)
+(adj)|rooted|stock-still|nonmoving (similar term)|unmoving (similar term)
+(adj)|frigid|frosty|glacial|icy|wintry|cold (similar term)
+(adj)|unmelted (similar term)
+(adj)|flash-frozen|quick-frozen|preserved (similar term)
+(adj)|nondisposable (similar term)
+(adj)|fixed|unchangeable (similar term)
+frozen custard|1
+(noun)|soft ice cream|frozen dessert (generic term)
+frozen dessert|1
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+frozen food|1
+(noun)|frozen foods|foodstuff (generic term)|food product (generic term)
+frozen foods|1
+(noun)|frozen food|foodstuff (generic term)|food product (generic term)
+frozen metaphor|1
+(noun)|dead metaphor|metaphor (generic term)
+frozen orange juice|1
+(noun)|orange-juice concentrate|orange juice (generic term)|concentrate (generic term)
+frozen pudding|1
+(noun)|frozen dessert (generic term)
+frozen yogurt|1
+(noun)|yogurt (generic term)|yoghurt (generic term)|yoghourt (generic term)|frozen dessert (generic term)
+frs|1
+(noun)|Federal Reserve System|Federal Reserve|Fed|FRS|central bank (generic term)
+fructidor|1
+(noun)|Fructidor|Revolutionary calendar month (generic term)
+fructification|2
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|reproductive structure (generic term)
+fructify|3
+(verb)|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|set|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+fructose|1
+(noun)|fruit sugar|levulose|laevulose|ketohexose (generic term)
+fructosuria|1
+(noun)|glycosuria (generic term)
+frugal|1
+(adj)|economical|scotch|sparing|stinting|thrifty (similar term)
+frugality|1
+(noun)|frugalness|prudence (generic term)
+frugalness|1
+(noun)|frugality|prudence (generic term)
+fruit|4
+(noun)|reproductive structure (generic term)
+(noun)|consequence (generic term)|aftermath (generic term)
+(noun)|yield|product (generic term)|production (generic term)
+(verb)|bear (generic term)|turn out (generic term)
+fruit-eating|1
+(adj)|carpophagous|herbivorous (similar term)
+fruit bar|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+fruit bat|1
+(noun)|megabat|bat (generic term)|chiropteran (generic term)
+fruit cocktail|1
+(noun)|cocktail (generic term)
+fruit compote|1
+(noun)|compote|dessert (generic term)|sweet (generic term)|afters (generic term)
+fruit crush|1
+(noun)|fruit juice|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+fruit custard|1
+(noun)|custard (generic term)
+fruit drink|1
+(noun)|ade|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+fruit fly|1
+(noun)|pomace fly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+fruit grower|1
+(noun)|agriculturist (generic term)|agriculturalist (generic term)|cultivator (generic term)|grower (generic term)|raiser (generic term)
+fruit juice|1
+(noun)|fruit crush|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+fruit machine|1
+(noun)|slot (generic term)|one-armed bandit (generic term)
+fruit of the poisonous tree|1
+(noun)|rule of evidence (generic term)
+fruit punch|1
+(noun)|punch (generic term)
+fruit salad|1
+(noun)|salad (generic term)
+fruit sugar|1
+(noun)|fructose|levulose|laevulose|ketohexose (generic term)
+fruit tree|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+fruitage|1
+(noun)|crop (generic term)|harvest (generic term)
+fruitcake|2
+(noun)|crackpot|crank|nut|nut case|nutcase|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+(noun)|cake (generic term)
+fruiterer|1
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+fruitful|2
+(adj)|berried (similar term)|baccate (similar term)|bacciferous (similar term)|blue-fruited (similar term)|bountiful (similar term)|plentiful (similar term)|breeding (similar term)|dark-fruited (similar term)|fat (similar term)|fertile (similar term)|productive (similar term)|rich (similar term)|generative (similar term)|procreative (similar term)|reproductive (similar term)|high-yield (similar term)|oval-fruited (similar term)|prolific (similar term)|fertile (similar term)|red-fruited (similar term)|round-fruited (similar term)|small-fruited (similar term)|fertile (related term)|productive (related term)|unfruitful (antonym)
+(adj)|profitable|productive (similar term)
+fruitfully|1
+(adv)|productively|profitably|unprofitably (antonym)|fruitlessly (antonym)|unproductively (antonym)
+fruitfulness|2
+(noun)|fecundity|quality (generic term)|fruitlessness (antonym)
+(noun)|fecundity|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+fruiting|1
+(adj)|mature (similar term)
+fruiting body|1
+(noun)|plant organ (generic term)
+fruition|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|use (generic term)|enjoyment (generic term)
+(noun)|realization|realisation|consummation (generic term)
+fruitless|1
+(adj)|bootless|futile|sleeveless|vain|unproductive (similar term)
+fruitlessly|1
+(adv)|unproductively|unprofitably|profitably (antonym)|fruitfully (antonym)|productively (antonym)
+fruitlessness|2
+(noun)|uncreativeness (generic term)
+(noun)|aridity|barrenness|quality (generic term)|fruitfulness (antonym)
+fruitlet|1
+(noun)|fruit (generic term)
+fruitwood|1
+(noun)|wood (generic term)
+fruity|2
+(adj)|tasty (similar term)
+(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 (similar term)
+frumenty|1
+(noun)|hot cereal (generic term)
+frump|1
+(noun)|dog|unpleasant woman (generic term)|disagreeable woman (generic term)
+frumpily|1
+(adv)|dowdily|frumpishly
+frumpish|1
+(adj)|dowdy|frumpy|unfashionable (similar term)|unstylish (similar term)
+frumpishly|1
+(adv)|dowdily|frumpily
+frumpy|1
+(adj)|dowdy|frumpish|unfashionable (similar term)|unstylish (similar term)
+frunze|1
+(noun)|Bishkek|Biskek|Frunze|capital of Kyrgyzstan|capital (generic term)
+frustrate|2
+(verb)|thwart|queer|spoil|scotch|foil|cross|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|torment|rag|bedevil|crucify|dun|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+frustrated|1
+(adj)|defeated|disappointed|discomfited|foiled|thwarted|unsuccessful (similar term)
+frustrating|2
+(adj)|discouraging (similar term)
+(adj)|frustrative|thwarting|preventive (similar term)|preventative (similar term)
+frustration|3
+(noun)|defeat|disappointment (generic term)|letdown (generic term)
+(noun)|thwarting|foiling|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+(noun)|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+frustrative|1
+(adj)|frustrating|thwarting|preventive (similar term)|preventative (similar term)
+frustum|1
+(noun)|solid (generic term)
+fruticose|1
+(adj)|shrubby|fruticulose|woody plant|ligneous plant (related term)
+fruticulose|1
+(adj)|shrubby|fruticose|woody plant|ligneous plant (related term)
+fry|6
+(noun)|Fry|Roger Fry|Roger Eliot Fry|painter (generic term)|art critic (generic term)
+(noun)|Fry|Christopher Fry|dramatist (generic term)|playwright (generic term)
+(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|nestling|juvenile (generic term)|juvenile person (generic term)
+(verb)|heat (generic term)|hot up (generic term)|heat up (generic term)
+(verb)|cook (generic term)
+(verb)|electrocute|kill (generic term)
+fry bread|1
+(noun)|skillet bread|quick bread (generic term)
+fry cook|1
+(noun)|cook (generic term)
+frye|1
+(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic (generic term)
+fryer|1
+(noun)|frier|pullet|chicken (generic term)|poulet (generic term)|volaille (generic term)
+frying|1
+(noun)|sauteing|cooking (generic term)|cookery (generic term)|preparation (generic term)
+frying pan|1
+(noun)|frypan|skillet|pan (generic term)|cooking pan (generic term)
+frypan|1
+(noun)|frying pan|skillet|pan (generic term)|cooking pan (generic term)
+fsb|2
+(noun)|Federal Security Bureau|FSB|Federal Security Service|Russian agency (generic term)
+(noun)|federal savings bank|FSB|savings bank (generic term)
+fsh|1
+(noun)|follicle-stimulating hormone|FSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+ft|1
+(noun)|foot|linear unit (generic term)
+ft-l|1
+(noun)|foot-lambert|ft-L|luminance unit (generic term)
+ftc|1
+(noun)|Federal Trade Commission|FTC|independent agency (generic term)
+fthm|2
+(noun)|fathom|linear unit (generic term)
+(noun)|fathom|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+fto|1
+(noun)|terrorist organization|terrorist group|foreign terrorist organization|FTO|political movement (generic term)
+ftp|2
+(noun)|file transfer protocol|FTP|protocol (generic term)|communications protocol (generic term)
+(verb)|FTP|transfer (generic term)
+fucaceae|1
+(noun)|Fucaceae|family Fucaceae|protoctist family (generic term)
+fucales|1
+(noun)|Fucales|order Fucales|animal order (generic term)
+fuchs|1
+(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist (generic term)
+fuchsia|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|magenta|purplish red (generic term)
+fuchsia coccinea|1
+(noun)|lady's-eardrop|ladies'-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia (generic term)
+fuchsia excorticata|1
+(noun)|konini|tree fuchsia|native fuchsia|Fuchsia excorticata|fuchsia (generic term)
+fuck|2
+(noun)|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+fuck all|1
+(noun)|bugger all|Fanny Adams|sweet Fanny Adams|nothing (generic term)|nil (generic term)|nix (generic term)|nada (generic term)|null (generic term)|aught (generic term)|cipher (generic term)|cypher (generic term)|goose egg (generic term)|naught (generic term)|zero (generic term)|zilch (generic term)|zip (generic term)|zippo (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|scram|buzz off|get|bugger off|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|masturbate|wank|she-bop|jack off|jerk off|stimulate (generic term)|excite (generic term)|stir (generic term)
+fuck up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+fucked-up|1
+(adj)|snafu|disorganized (similar term)|disorganised (similar term)
+fucker|2
+(noun)|heterosexual (generic term)|heterosexual person (generic term)|straight person (generic term)|straight (generic term)
+(noun)|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+fuckhead|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|simpleton (generic term)|simple (generic term)
+fucking|2
+(adj)|bally|blinking|bloody|blooming|crashing|flaming|unmitigated (similar term)
+(noun)|fuck|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+fuckup|2
+(noun)|bungler|blunderer|fumbler|bumbler|stumbler|sad sack|botcher|butcher|incompetent (generic term)|incompetent person (generic term)
+(noun)|blunder|blooper|bloomer|bungle|pratfall|foul-up|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+fucoid|2
+(noun)|fossil (generic term)
+(noun)|fucoid algae|brown algae (generic term)
+fucoid algae|1
+(noun)|fucoid|brown algae (generic term)
+fucus|1
+(noun)|rockweed (generic term)
+fucus serratus|1
+(noun)|serrated wrack|Fucus serratus|tang|brown algae (generic term)
+fucus vesiculosus|1
+(noun)|bladderwrack|black rockweed|bladder fucus|tang|Fucus vesiculosus|rockweed (generic term)
+fuddle|4
+(noun)|clutter|jumble|muddle|mare's nest|welter|smother|disorderliness (generic term)|disorder (generic term)
+(verb)|befuddle|intoxicate (generic term)|soak (generic term)|inebriate (generic term)
+(verb)|drink|booze|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|confuse|throw|fox|befuddle|bedevil|confound|discombobulate|be (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+fuddy-duddy|1
+(noun)|stuffed shirt|bore (generic term)|dullard (generic term)
+fudge|3
+(noun)|candy (generic term)|confect (generic term)
+(verb)|manipulate|fake|falsify|cook|wangle|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+(verb)|hedge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+fudge factor|1
+(noun)|correction|indefinite quantity (generic term)
+fudge sauce|1
+(noun)|hot-fudge sauce|chocolate sauce (generic term)|chocolate syrup (generic term)
+fudge together|1
+(verb)|throw together|produce (generic term)|make (generic term)|create (generic term)
+fuego|1
+(noun)|Fuego|volcano (generic term)
+fuel|5
+(noun)|substance (generic term)|matter (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|fire|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|take in (generic term)|take up (generic term)
+(verb)|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+fuel-air bomb|1
+(noun)|thermobaric bomb|vacuum bomb|volume-detonation bomb|aerosol bomb|bomb (generic term)|fuel-air explosive (generic term)|FAE (generic term)
+fuel-air explosive|1
+(noun)|FAE|explosive device (generic term)
+fuel cell|1
+(noun)|cell (generic term)|electric cell (generic term)
+fuel consumption rate|1
+(noun)|mileage|gasoline mileage|gas mileage|ratio (generic term)
+fuel filter|1
+(noun)|filter (generic term)
+fuel gauge|1
+(noun)|fuel indicator|indicator (generic term)
+fuel indicator|1
+(noun)|fuel gauge|indicator (generic term)
+fuel injection|1
+(noun)|fuel injection system|mechanical system (generic term)
+fuel injection system|1
+(noun)|fuel injection|mechanical system (generic term)
+fuel level|1
+(noun)|reserve (generic term)|backlog (generic term)|stockpile (generic term)
+fuel line|1
+(noun)|gas line|pipe (generic term)|pipage (generic term)|piping (generic term)
+fuel oil|1
+(noun)|heating oil|oil (generic term)|fuel (generic term)
+fuel pod|1
+(noun)|pod|container (generic term)
+fuel system|1
+(noun)|equipment (generic term)
+fueled|1
+(adj)|burning (similar term)|clean-burning (similar term)|coal-fired (similar term)|coal-burning (similar term)|liquid-fueled (similar term)|oil-fired (similar term)|oxyacetylene (similar term)|unfueled (antonym)
+fueling|1
+(noun)|refueling|provision (generic term)|supply (generic term)|supplying (generic term)
+fuentes|1
+(noun)|Fuentes|Carlos Fuentes|writer (generic term)|author (generic term)
+fuerzas armadas revolucionarios de colombia|1
+(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+fug|1
+(noun)|fog (generic term)|fogginess (generic term)|murk (generic term)|murkiness (generic term)
+fugacious|1
+(adj)|ephemeral|passing|short-lived|transient|transitory|impermanent (similar term)|temporary (similar term)
+fugaciousness|1
+(noun)|fugacity|transience (generic term)|transiency (generic term)|transitoriness (generic term)
+fugacity|2
+(noun)|physical property (generic term)
+(noun)|fugaciousness|transience (generic term)|transiency (generic term)|transitoriness (generic term)
+fugal|1
+(adj)|classical music|classical|serious music (related term)
+fugard|1
+(noun)|Fugard|Athol Fugard|dramatist (generic term)|playwright (generic term)
+fuggy|1
+(adj)|unventilated (similar term)
+fugitive|3
+(adj)|fleeting|momentaneous|momentary|short (similar term)
+(noun)|runaway|fleer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|fugitive from justice|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+fugitive from justice|1
+(noun)|fugitive|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+fugleman|1
+(noun)|leader (generic term)
+fugly|1
+(adj)|ugly (similar term)
+fugo|1
+(noun)|balloon bomb|Fugo|bomb (generic term)
+fugu|1
+(noun)|blowfish (generic term)|sea squab (generic term)|puffer (generic term)|pufferfish (generic term)
+fugue|3
+(noun)|psychogenic fugue|dissociative disorder (generic term)
+(noun)|psychological state (generic term)|mental state (generic term)
+(noun)|classical music (generic term)|classical (generic term)|serious music (generic term)
+fuji|2
+(noun)|fuji cherry|Prunus incisa|flowering cherry (generic term)
+(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano (generic term)
+fuji-san|1
+(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano (generic term)
+fuji cherry|1
+(noun)|fuji|Prunus incisa|flowering cherry (generic term)
+fujinoyama|1
+(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano (generic term)
+fujiyama|1
+(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano (generic term)
+fukien|1
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+fukkianese|1
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+fukuoka|1
+(noun)|Fukuoka|city (generic term)|metropolis (generic term)|urban center (generic term)
+ful|1
+(noun)|Fula|Ful|Fulani|Peul|West African (generic term)
+fula|2
+(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African (generic term)
+(noun)|Fula|Ful|Fulani|Peul|West African (generic term)
+fulah|1
+(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African (generic term)
+fulani|2
+(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African (generic term)
+(noun)|Fula|Ful|Fulani|Peul|West African (generic term)
+fulbe|1
+(noun)|Fulani|Fula|Fulah|Fellata|Fulbe|African (generic term)
+fulbright|1
+(noun)|Fulbright|William Fulbright|James William Fulbright|senator (generic term)
+fulcrum|1
+(noun)|pivot (generic term)|pin (generic term)
+fulfil|3
+(verb)|carry through|accomplish|execute|carry out|action|fulfill|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|meet|satisfy|fill|fulfill|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|satisfy|fulfill|live up to|meet (generic term)|fit (generic term)|conform to (generic term)|fall short of (antonym)
+fulfill|3
+(verb)|carry through|accomplish|execute|carry out|action|fulfil|complete (generic term)|finish (generic term)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|satisfy|fulfil|live up to|meet (generic term)|fit (generic term)|conform to (generic term)|fall short of (antonym)
+(verb)|meet|satisfy|fill|fulfil|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+fulfilled|1
+(adj)|consummated (similar term)
+fulfillment|2
+(noun)|fulfilment|satisfaction (generic term)
+(noun)|fulfilment|consummation (generic term)
+fulfilment|2
+(noun)|fulfillment|satisfaction (generic term)
+(noun)|fulfillment|consummation (generic term)
+fulgent|1
+(adj)|blazing|blinding|dazzling|glaring|glary|bright (similar term)
+fulgid|1
+(adj)|aglitter|coruscant|glinting|glistering|glittering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+fulgoridae|1
+(noun)|Fulgoridae|family Fulgoridae|arthropod family (generic term)
+fulgurant|1
+(adj)|dazzling|eye-popping|fulgurous|impressive (similar term)
+fulgurating|1
+(adj)|sharp (similar term)
+fulgurous|1
+(adj)|dazzling|eye-popping|fulgurant|impressive (similar term)
+fulica|1
+(noun)|Fulica|genus Fulica|bird genus (generic term)
+fulica americana|1
+(noun)|American coot|marsh hen|mud hen|water hen|Fulica americana|coot (generic term)
+fulica atra|1
+(noun)|Old World coot|Fulica atra|coot (generic term)
+full|13
+(adj)|afloat (similar term)|awash (similar term)|flooded (similar term)|inundated (similar term)|overflowing (similar term)|air-filled (similar term)|brimful (similar term)|brimfull (similar term)|brimming (similar term)|chockablock (similar term)|chock-full (similar term)|chockful (similar term)|choke-full (similar term)|chuck-full (similar term)|cram full (similar term)|congested (similar term)|engorged (similar term)|egg-filled (similar term)|filled (similar term)|fraught (similar term)|pregnant (similar term)|gas-filled (similar term)|glutted (similar term)|overfull (similar term)|heavy (similar term)|weighed down (similar term)|instinct (similar term)|replete (similar term)|laden (similar term)|loaded (similar term)|ladened (similar term)|overladen (similar term)|overloaded (similar term)|riddled (similar term)|sperm-filled (similar term)|stuffed (similar term)|stuffed (similar term)|untouched (similar term)|untasted (similar term)|well-lined (similar term)|empty (antonym)
+(adj)|entire|total|whole (similar term)
+(adj)|total|complete (similar term)
+(adj)|replete|nourished (similar term)
+(adj)|booming (similar term)|stentorian (similar term)|grumbling (similar term)|rumbling (similar term)|plangent (similar term)|rich (similar term)|orotund (similar term)|rotund (similar term)|round (similar term)|pear-shaped (similar term)|heavy (similar term)|sonorous (similar term)|sounding (similar term)|thin (antonym)
+(adj)|good|ample (similar term)
+(adj)|broad|high (similar term)
+(adj)|wide|wide-cut|ample (similar term)
+(noun)|full moon|full-of-the-moon|full phase of the moon|phase of the moon (generic term)
+(verb)|beat (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|wax|increase (generic term)|wane (antonym)
+(adv)|fully|to the full
+full-blood|1
+(adj)|full-blooded|blooded|purebred (similar term)
+full-blooded|2
+(adj)|full-blood|blooded|purebred (similar term)
+(adj)|hearty|lusty|red-blooded|healthy (similar term)
+full-blown|2
+(adj)|matured|mature (similar term)
+(adj)|complete (similar term)
+full-bodied|1
+(adj)|racy|rich|robust|tasty (similar term)
+full-bosomed|1
+(adj)|bosomy|busty|buxom|curvaceous|curvy|sonsie|sonsy|voluptuous|well-endowed|shapely (similar term)
+full-clad|1
+(adj)|fleshed out|complete (similar term)
+full-dress|2
+(adj)|dress|formal (similar term)
+(adj)|complete (similar term)
+full-dress uniform|1
+(noun)|military uniform (generic term)
+full-face|1
+(adj)|guardant|gardant|forward (similar term)
+full-fashioned|1
+(adj)|fully fashioned|shapely (similar term)
+full-fledged|2
+(adj)|fully fledged|fledged (similar term)|mature (similar term)
+(adj)|fully fledged|experienced (similar term)|experient (similar term)
+full-grown|1
+(adj)|adult|big|fully grown|grown|grownup|mature (similar term)
+full-length|3
+(adj)|tall (similar term)
+(adj)|whole (similar term)
+(adj)|uncut|unabridged (similar term)
+full-of-the-moon|1
+(noun)|full moon|full phase of the moon|full|phase of the moon (generic term)
+full-page|1
+(adj)|whole (similar term)
+full-scale|1
+(adj)|all-out|complete (similar term)
+full-size|1
+(adj)|life-size|lifesize|life-sized|large (similar term)|big (similar term)
+full-strength|1
+(adj)|neat|straight|undiluted (similar term)
+full-term|1
+(adj)|mature (related term)|premature (antonym)
+full-time|2
+(adj)|regular (similar term)|part-time (antonym)
+(adv)|half-time (antonym)
+full-wave rectifier|1
+(noun)|rectifier (generic term)
+full admiral|1
+(noun)|admiral|flag officer (generic term)
+full blood|1
+(noun)|origin (generic term)|descent (generic term)|extraction (generic term)
+full complement|1
+(noun)|complement|work force (generic term)|workforce (generic term)|manpower (generic term)|hands (generic term)|men (generic term)
+full cousin|1
+(noun)|cousin|first cousin|cousin-german|relative (generic term)|relation (generic term)
+full dress|1
+(noun)|dress suit|tailcoat|tail coat|tails|white tie|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+full employment|1
+(noun)|financial condition (generic term)|economic condition (generic term)
+full gainer|1
+(noun)|gainer|dive (generic term)|diving (generic term)
+full general|1
+(noun)|general|general officer (generic term)
+full house|1
+(noun)|poker hand (generic term)
+full metal jacket|1
+(noun)|bullet (generic term)|slug (generic term)
+full moon|1
+(noun)|full-of-the-moon|full phase of the moon|full|phase of the moon (generic term)
+full moon maple|1
+(noun)|Japanese maple|Acer japonicum|maple (generic term)
+full nelson|1
+(noun)|wrestling hold (generic term)
+full of life|1
+(adj)|lively|vital|animated (similar term)|alive (similar term)
+full page|1
+(noun)|page (generic term)
+full phase of the moon|1
+(noun)|full moon|full-of-the-moon|full|phase of the moon (generic term)
+full point|1
+(noun)|period|point|full stop|stop|punctuation (generic term)|punctuation mark (generic term)
+full professor|1
+(noun)|professor (generic term)|prof (generic term)
+full radiator|1
+(noun)|black body|blackbody|natural object (generic term)
+full service bank|1
+(noun)|commercial bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+full skirt|1
+(noun)|skirt (generic term)
+full stop|1
+(noun)|period|point|stop|full point|punctuation (generic term)|punctuation mark (generic term)
+full term|1
+(noun)|term|point (generic term)|point in time (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+fullback|3
+(noun)|running back (generic term)
+(noun)|back (generic term)
+(verb)|play (generic term)
+fuller|3
+(noun)|Fuller|Melville W. Fuller|Melville Weston Fuller|chief justice (generic term)
+(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect (generic term)|designer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+fuller's earth|1
+(noun)|soil (generic term)|dirt (generic term)
+fuller's teasel|1
+(noun)|Dipsacus sativus|teasel (generic term)|teazel (generic term)|teasle (generic term)
+fullerene|1
+(noun)|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+fullness|4
+(noun)|comprehensiveness|completeness (generic term)
+(noun)|mellowness|richness|property (generic term)
+(noun)|condition (generic term)|status (generic term)|emptiness (antonym)
+(noun)|voluminosity|voluminousness|largeness (generic term)|bigness (generic term)
+fully|3
+(adv)|to the full|full
+(adv)|amply|meagerly (antonym)
+(adv)|in full
+fully fashioned|1
+(adj)|full-fashioned|shapely (similar term)
+fully fledged|2
+(adj)|full-fledged|fledged (similar term)|mature (similar term)
+(adj)|full-fledged|experienced (similar term)|experient (similar term)
+fully grown|1
+(adj)|adult|big|full-grown|grown|grownup|mature (similar term)
+fulmar|1
+(noun)|fulmar petrel|Fulmarus glacialis|petrel (generic term)
+fulmar petrel|1
+(noun)|fulmar|Fulmarus glacialis|petrel (generic term)
+fulmarus|1
+(noun)|Fulmarus|genus Fulmarus|bird genus (generic term)
+fulmarus glacialis|1
+(noun)|fulmar|fulmar petrel|Fulmarus glacialis|petrel (generic term)
+fulminant|1
+(adj)|sudden (similar term)
+fulminate|4
+(noun)|salt (generic term)
+(verb)|rail|denounce (generic term)
+(verb)|appear (generic term)|come along (generic term)
+(verb)|explode (generic term)|detonate (generic term)|blow up (generic term)|set off (generic term)
+fulminate of mercury|1
+(noun)|mercury fulminate|fulminating mercury|fulminate (generic term)
+fulminating mercury|1
+(noun)|mercury fulminate|fulminate of mercury|fulminate (generic term)
+fulmination|2
+(noun)|diatribe|denunciation (generic term)|denouncement (generic term)
+(noun)|explosion (generic term)|burst (generic term)
+fulminic acid|1
+(noun)|acid (generic term)
+fulsome|1
+(adj)|buttery|oily|oleaginous|smarmy|soapy|unctuous|insincere (similar term)
+fulsomely|1
+(adv)|unctuously|smarmily
+fulsomeness|2
+(noun)|unction|smarm|compliment (generic term)
+(noun)|oiliness|oleaginousness|smarminess|unctuousness|unction|hypocrisy (generic term)
+fulton|1
+(noun)|Fulton|Robert Fulton|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+fulvic acid|1
+(noun)|humic substance (generic term)
+fulvicin|1
+(noun)|griseofulvin|Fulvicin|penicillin (generic term)|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+fumaria|1
+(noun)|Fumaria|genus Fumaria|dilleniid dicot genus (generic term)
+fumaria claviculata|1
+(noun)|climbing corydalis|Corydalis claviculata|Fumaria claviculata|vine (generic term)
+fumaria fungosa|1
+(noun)|climbing fumitory|Allegheny vine|Adlumia fungosa|Fumaria fungosa|vine (generic term)
+fumaria officinalis|1
+(noun)|fumitory|fumewort|fumeroot|Fumaria officinalis|herb (generic term)|herbaceous plant (generic term)
+fumaria sempervirens|1
+(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis (generic term)|genus Corydalis (generic term)
+fumariaceae|1
+(noun)|Fumariaceae|family Fumariaceae|fumitory family|dilleniid dicot family (generic term)
+fumaric acid|1
+(noun)|acid (generic term)
+fumble|6
+(noun)|muff|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|grope|search (generic term)|seek (generic term)|look for (generic term)|grope for (related term)
+(verb)|blunder|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|handle (generic term)|palm (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|play (generic term)
+fumbler|1
+(noun)|bungler|blunderer|bumbler|stumbler|sad sack|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+fumbling|1
+(adj)|bungling|clumsy|incompetent|unskilled (similar term)
+fume|5
+(noun)|smoke|aerosol (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|smoke|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|fumigate|process (generic term)|treat (generic term)
+(verb)|reek|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+fumed|1
+(adj)|treated (similar term)
+fumed oak|1
+(noun)|oak (generic term)
+fumeroot|2
+(noun)|fumitory|fumewort|Fumaria officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|fumewort|Corydalis solida|Corydalis (generic term)|genus Corydalis (generic term)
+fumes|1
+(noun)|exhaust|exhaust fumes|gas (generic term)|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+fumewort|2
+(noun)|fumitory|fumeroot|Fumaria officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|fumeroot|Corydalis solida|Corydalis (generic term)|genus Corydalis (generic term)
+fumigant|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+fumigate|1
+(verb)|fume|process (generic term)|treat (generic term)
+fumigation|1
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+fumigator|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|device (generic term)
+fumimaro konoe|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+fumimaro konoye|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+fumitory|1
+(noun)|fumewort|fumeroot|Fumaria officinalis|herb (generic term)|herbaceous plant (generic term)
+fumitory family|1
+(noun)|Fumariaceae|family Fumariaceae|dilleniid dicot family (generic term)
+fun|5
+(adj)|amusing|amusive|diverting|entertaining (similar term)
+(noun)|merriment|playfulness|diversion (generic term)|recreation (generic term)
+(noun)|play|sport|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|activity (generic term)
+(noun)|playfulness|frivolity (generic term)|frivolousness (generic term)
+fun run|1
+(noun)|funrun|footrace (generic term)|foot race (generic term)|run (generic term)
+funafuti|1
+(noun)|Funafuti|national capital (generic term)
+funambulism|1
+(noun)|tightrope walking|sport (generic term)|athletics (generic term)
+funambulist|1
+(noun)|tightrope walker|acrobat (generic term)
+function|10
+(noun)|mathematical function|mathematical relation (generic term)
+(noun)|purpose|role|use|utility (generic term)|usefulness (generic term)
+(noun)|office|part|role|duty (generic term)
+(noun)|relation (generic term)
+(noun)|social gathering (generic term)|social affair (generic term)
+(noun)|affair|occasion|social occasion|social function|social event (generic term)
+(noun)|routine|subroutine|subprogram|procedure|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(verb)|work|operate|go|run|malfunction (antonym)
+(verb)|serve|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|officiate|serve (generic term)
+function call|1
+(noun)|call (generic term)
+function word|1
+(noun)|closed-class word|word (generic term)
+functional|6
+(adj)|structural (similar term)|utilitarian (similar term)|useful (similar term)|serviceable (related term)|nonfunctional (antonym)
+(adj)|organic (antonym)
+(adj)|utility|usefulness (related term)
+(adj)|usable|useable|in working order|operable|operational|serviceable (similar term)
+(adj)|practical (similar term)
+(adj)|running|operative|working|functioning (similar term)
+functional anatomy|1
+(noun)|physiological anatomy|morphophysiology|anatomy (generic term)|general anatomy (generic term)
+functional calculus|1
+(noun)|predicate calculus|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+functional disorder|1
+(noun)|disorder (generic term)|upset (generic term)|organic disorder (antonym)
+functional genomics|1
+(noun)|genomics (generic term)
+functional illiterate|1
+(noun)|illiterate (generic term)|illiterate person (generic term)|nonreader (generic term)
+functional magnetic resonance imaging|1
+(noun)|fMRI|magnetic resonance imaging (generic term)|MRI (generic term)
+functionalism|2
+(noun)|scientific theory (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+functionalist|1
+(noun)|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+functionality|1
+(noun)|practicality (generic term)
+functionally illiterate|1
+(adj)|illiterate (similar term)
+functionary|1
+(noun)|official|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+functioning|2
+(adj)|running (similar term)|operative (similar term)|functional (similar term)|working (similar term)|up (similar term)|malfunctioning (antonym)
+(noun)|operation|performance|process (generic term)|physical process (generic term)
+fund|8
+(noun)|monetary fund|money (generic term)
+(noun)|store|stock|accumulation (generic term)
+(noun)|investment company|investment trust|investment firm|nondepository financial institution (generic term)
+(verb)|finance (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+(verb)|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|support (generic term)
+fund-raise|1
+(verb)|fund raise|fundraise|raise (generic term)
+fund-raising campaign|1
+(noun)|fund-raising drive|fund-raising effort|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+fund-raising drive|1
+(noun)|fund-raising campaign|fund-raising effort|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+fund-raising effort|1
+(noun)|fund-raising campaign|fund-raising drive|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+fund raise|1
+(verb)|fund-raise|fundraise|raise (generic term)
+fundament|3
+(noun)|basis|base|foundation|groundwork|cornerstone|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(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 (generic term)
+(noun)|foundation|base|foot|groundwork|substructure|understructure|support (generic term)
+fundamental|4
+(adj)|cardinal|central|key|primal|important (similar term)|of import (similar term)
+(adj)|rudimentary|underlying|basic (similar term)
+(adj)|profound|significant (similar term)|important (similar term)
+(noun)|fundamental frequency|first harmonic|harmonic (generic term)
+fundamental frequency|1
+(noun)|fundamental|first harmonic|harmonic (generic term)
+fundamental interaction|1
+(noun)|interaction|physical phenomenon (generic term)
+fundamental law|1
+(noun)|organic law|constitution|law (generic term)
+fundamental measure|1
+(noun)|fundamental quantity|measure (generic term)|quantity (generic term)|amount (generic term)
+fundamental particle|1
+(noun)|elementary particle|particle (generic term)|subatomic particle (generic term)
+fundamental principle|1
+(noun)|fundamentals|basics|basic principle|bedrock|principle (generic term)
+fundamental quantity|1
+(noun)|fundamental measure|measure (generic term)|quantity (generic term)|amount (generic term)
+fundamentalism|1
+(noun)|Protestantism (generic term)
+fundamentalist|2
+(adj)|fundamentalistic|Protestantism (related term)
+(noun)|Protestant (generic term)
+fundamentalistic|1
+(adj)|fundamentalist|Protestantism (related term)
+fundamentally|1
+(adv)|basically|essentially|in essence|au fond
+fundamentals|1
+(noun)|basics|fundamental principle|basic principle|bedrock|principle (generic term)
+funded|1
+(adj)|unfunded (antonym)
+funding|2
+(noun)|support|financial support|backing|financial backing|resource (generic term)
+(noun)|financing|finance (generic term)
+fundraise|1
+(verb)|fund-raise|fund raise|raise (generic term)
+fundraiser|2
+(noun)|solicitor (generic term)|canvasser (generic term)
+(noun)|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+funds|1
+(noun)|finances|monetary resource|cash in hand|pecuniary resource|assets (generic term)
+fundulus|1
+(noun)|Fundulus|genus Fundulus|fish genus (generic term)
+fundulus heteroclitus|1
+(noun)|mummichog|Fundulus heteroclitus|killifish (generic term)
+fundulus majalis|1
+(noun)|striped killifish|mayfish|may fish|Fundulus majalis|killifish (generic term)
+fundus|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+funeral|1
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+funeral-residence|1
+(noun)|funeral home|funeral parlor|funeral parlour|funeral chapel|funeral church|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral chapel|1
+(noun)|funeral home|funeral parlor|funeral parlour|funeral church|funeral-residence|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral church|1
+(noun)|funeral home|funeral parlor|funeral parlour|funeral chapel|funeral-residence|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral director|1
+(noun)|mortician|undertaker|funeral undertaker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+funeral home|1
+(noun)|funeral parlor|funeral parlour|funeral chapel|funeral church|funeral-residence|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral march|1
+(noun)|dead march|processional march (generic term)|recessional march (generic term)
+funeral parlor|1
+(noun)|funeral home|funeral parlour|funeral chapel|funeral church|funeral-residence|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral parlour|1
+(noun)|funeral home|funeral parlor|funeral chapel|funeral church|funeral-residence|morgue (generic term)|mortuary (generic term)|dead room (generic term)
+funeral pyre|1
+(noun)|pyre|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+funeral undertaker|1
+(noun)|mortician|undertaker|funeral director|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+funerary|1
+(adj)|ceremony|ceremonial|ceremonial occasion|observance (related term)
+funereal|1
+(adj)|sepulchral|joyless (similar term)
+funfair|2
+(noun)|amusement park|pleasure ground|park (generic term)|commons (generic term)|common (generic term)|green (generic term)
+(noun)|carnival|fair|show (generic term)
+fungal|1
+(adj)|fungous|plant|flora|plant life (related term)
+fungal infection|1
+(noun)|mycosis|zymosis (generic term)
+fungi|2
+(noun)|Fungi|kingdom Fungi|fungus kingdom|kingdom (generic term)
+(noun)|spendthrift (generic term)|spend-all (generic term)|spender (generic term)|scattergood (generic term)
+fungi imperfecti|1
+(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division (generic term)
+fungia|1
+(noun)|Fungia|genus Fungia|coelenterate genus (generic term)
+fungibility|1
+(noun)|exchangeability|interchangeability|interchangeableness|changeableness (generic term)|changeability (generic term)|unexchangeability (antonym)
+fungible|2
+(adj)|exchangeable (similar term)
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+fungicidal|1
+(adj)|antifungal|agent (related term)
+fungicide|1
+(noun)|antifungal|antifungal agent|antimycotic|antimycotic agent|agent (generic term)
+fungoid|1
+(adj)|funguslike|plant|flora|plant life (related term)
+fungous|1
+(adj)|fungal|plant|flora|plant life (related term)
+fungus|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+fungus family|1
+(noun)|family (generic term)
+fungus genus|1
+(noun)|genus (generic term)
+fungus gnat|2
+(noun)|sciara|sciarid|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+(noun)|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+fungus kingdom|1
+(noun)|Fungi|kingdom Fungi|kingdom (generic term)
+fungus order|1
+(noun)|order (generic term)
+funguslike|1
+(adj)|fungoid|plant|flora|plant life (related term)
+funicle|1
+(noun)|funiculus|stalk (generic term)|stem (generic term)
+funicular|2
+(adj)|rope (related term)
+(noun)|cable railway|funicular railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+funicular railway|1
+(noun)|cable railway|funicular|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+funiculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+funiculus|2
+(noun)|funicle|stalk (generic term)|stem (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+funk|4
+(noun)|blue funk|depression (generic term)
+(noun)|Funk|Casimir Funk|biochemist (generic term)
+(noun)|jazz (generic term)
+(verb)|flinch|squinch|cringe|shrink|wince|recoil|quail|move (generic term)
+funk hole|1
+(noun)|bunker (generic term)|dugout (generic term)
+funka|1
+(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus (generic term)
+funkaceae|1
+(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family (generic term)
+funky|4
+(adj)|fetid|foetid|foul|foul-smelling|noisome|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|low-down|emotional (similar term)
+(adj)|unconventional (similar term)
+(adj)|cowardly (similar term)|fearful (similar term)
+funnel|4
+(noun)|funnel shape|cone (generic term)|conoid (generic term)|cone shape (generic term)
+(noun)|utensil (generic term)
+(noun)|smokestack (generic term)|stack (generic term)
+(verb)|move (generic term)|displace (generic term)
+funnel-crest rosebud orchid|1
+(noun)|spreading pogonia|Cleistes divaricata|Pogonia divaricata|orchid (generic term)|orchidaceous plant (generic term)
+funnel-shaped|1
+(adj)|formed (similar term)
+funnel shape|1
+(noun)|funnel|cone (generic term)|conoid (generic term)|cone shape (generic term)
+funnel web|1
+(noun)|spider web (generic term)|spider's web (generic term)
+funnies|1
+(noun)|comic strip|cartoon strip|strip|cartoon (generic term)|sketch (generic term)
+funnily|1
+(adv)|queerly|strangely|oddly
+funniness|1
+(noun)|drollery|clowning|comedy|fun (generic term)|play (generic term)|sport (generic term)
+funny|5
+(adj)|amusing|comic|comical|laughable|mirthful|risible|humorous (similar term)|humourous (similar term)
+(adj)|curious|odd|peculiar|queer|rum|rummy|singular|strange (similar term)|unusual (similar term)
+(adj)|fishy|shady|suspect|suspicious|questionable (similar term)
+(adj)|ill (similar term)|sick (similar term)
+(noun)|funny story|good story|funny remark|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+funny bone|1
+(noun)|crazy bone|ulnar nerve (generic term)|cubital nerve (generic term)|nervus ulnaris (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+funny remark|1
+(noun)|funny story|good story|funny|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+funny story|1
+(noun)|good story|funny remark|funny|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+funny wagon|1
+(noun)|ambulance (generic term)
+funrun|1
+(noun)|fun run|footrace (generic term)|foot race (generic term)|run (generic term)
+fuqra|1
+(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+fur|3
+(noun)|pelt|animal skin (generic term)
+(noun)|coat (generic term)|pelage (generic term)
+(noun)|garment (generic term)
+fur-bearing|1
+(adj)|productive (similar term)
+fur-piece|1
+(noun)|neckpiece (generic term)
+fur coat|1
+(noun)|coat (generic term)
+fur hat|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+fur seal|1
+(noun)|eared seal (generic term)
+furan|1
+(noun)|furane|furfuran|organic compound (generic term)
+furane|1
+(noun)|furan|furfuran|organic compound (generic term)
+furbelow|1
+(noun)|frill|flounce|ruffle|adornment (generic term)
+furbish|1
+(verb)|buff|burnish|flush|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+furbish up|1
+(verb)|repair|mend|fix|bushel|doctor|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+furcate|1
+(verb)|branch|ramify|fork|separate|diverge (generic term)|branch out (related term)
+furcation|1
+(noun)|forking|angular shape (generic term)|angularity (generic term)
+furcula|1
+(noun)|bone (generic term)|os (generic term)
+furfural|1
+(noun)|furfuraldehyde|aldehyde (generic term)|plant product (generic term)
+furfuraldehyde|1
+(noun)|furfural|aldehyde (generic term)|plant product (generic term)
+furfuran|1
+(noun)|furan|furane|organic compound (generic term)
+furious|3
+(adj)|ferocious|fierce|savage|violent (similar term)
+(adj)|angered|enraged|infuriated|maddened|angry (similar term)
+(adj)|angry|raging|tempestuous|wild|stormy (similar term)
+furiousness|1
+(noun)|ferocity|fierceness|fury|vehemence|violence|wildness|intensity (generic term)|intensiveness (generic term)
+furl|1
+(verb)|roll up|change shape (generic term)|change form (generic term)|deform (generic term)
+furled|1
+(adj)|rolled|bound (similar term)
+furlike|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+furlong|1
+(noun)|linear unit (generic term)
+furlough|3
+(noun)|leave (generic term)|leave of absence (generic term)
+(verb)|lay off|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+furnace|1
+(noun)|chamber (generic term)
+furnace lining|1
+(noun)|refractory|lining (generic term)
+furnace room|1
+(noun)|room (generic term)
+furnariidae|1
+(noun)|Furnariidae|family Furnariidae|bird family (generic term)
+furnarius|1
+(noun)|Furnarius|genus Furnarius|bird genus (generic term)
+furnish|2
+(verb)|supply|provide|render|give (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+furnished|1
+(adj)|equipped|appointed (similar term)|fitted out (similar term)|outfitted (similar term)|furnished with (similar term)|provided with (similar term)|supplied with (similar term)|stocked (similar term)|stocked with (similar term)|volumed (similar term)|well-appointed (similar term)|well-found (similar term)|unfurnished (antonym)
+furnished with|1
+(adj)|provided with|supplied with|furnished (similar term)|equipped (similar term)
+furnishing|3
+(noun)|trappings|accessory (generic term)|accoutrement (generic term)|accouterment (generic term)
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(noun)|interior decoration (generic term)|interior design (generic term)
+furniture|1
+(noun)|piece of furniture|article of furniture|furnishing (generic term)
+furniture company|1
+(noun)|company (generic term)
+furniture maker|1
+(noun)|cabinetmaker|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+furnivall|1
+(noun)|Furnivall|Frederick James Furnivall|philologist (generic term)|philologue (generic term)
+furor|2
+(noun)|fad|craze|furore|cult|rage|fashion (generic term)
+(noun)|furore|disturbance (generic term)
+furore|2
+(noun)|fad|craze|furor|cult|rage|fashion (generic term)
+(noun)|furor|disturbance (generic term)
+furosemide|1
+(noun)|Lasix|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+furred|1
+(adj)|furry|hairy (similar term)|haired (similar term)|hirsute (similar term)
+furrier|1
+(noun)|cloakmaker|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+furring|2
+(noun)|symptom (generic term)
+(noun)|furring strip|strip (generic term)
+furring strip|1
+(noun)|furring|strip (generic term)
+furrow|5
+(noun)|trench (generic term)
+(noun)|wrinkle|crease|crinkle|seam|line|depression (generic term)|impression (generic term)|imprint (generic term)
+(verb)|rut|groove|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+(verb)|wrinkle|crease|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|chamfer|chase|cut (generic term)
+furrowed|1
+(adj)|canaliculate (similar term)|corrugated (similar term)|grooved (similar term)|rutted (similar term)|rutty (similar term)|wrinkled (similar term)|wrinkly (similar term)|unfurrowed (antonym)
+furry|1
+(adj)|furred|hairy (similar term)|haired (similar term)|hirsute (similar term)
+furry tongue|1
+(noun)|hairy tongue|black tongue|side effect (generic term)
+further|4
+(adj)|farther|far (similar term)
+(verb)|foster|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|promote|advance|boost|encourage|support (generic term)|back up (generic term)
+(adv)|farther
+furtherance|2
+(noun)|promotion|advancement|encouragement (generic term)
+(noun)|forwarding|promotion|advancement (generic term)|progress (generic term)
+furthermore|1
+(adv)|moreover|what is more
+furthermost|1
+(adj)|farthermost|farthest|furthest|utmost|uttermost|far (similar term)
+furthest|2
+(adj)|farthermost|farthest|furthermost|utmost|uttermost|far (similar term)
+(adv)|farthest
+furtive|2
+(adj)|sneak|sneaky|stealthy|surreptitious|concealed (similar term)
+(adj)|backstair|backstairs|covert (similar term)
+furtively|1
+(adv)|on the sly
+furtiveness|1
+(noun)|sneakiness|stealthiness|closeness (generic term)|secretiveness (generic term)
+furuncle|1
+(noun)|boil|staphylococcal infection (generic term)
+furunculosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+fury|4
+(noun)|rage|madness|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|craze|delirium|frenzy|hysteria|mania (generic term)|manic disorder (generic term)
+(noun)|ferocity|fierceness|furiousness|vehemence|violence|wildness|intensity (generic term)|intensiveness (generic term)
+(noun)|Fury|Eumenides|Erinyes|mythical monster (generic term)|mythical creature (generic term)
+furze|1
+(noun)|gorse|whin|Irish gorse|Ulex europaeus|shrub (generic term)|bush (generic term)
+fusain|1
+(noun)|charcoal|writing implement (generic term)
+fusanus|1
+(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus (generic term)
+fusanus acuminatus|1
+(noun)|quandong|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree (generic term)
+fusarium wilt|1
+(noun)|wilt (generic term)|wilt disease (generic term)
+fuscoboletinus|1
+(noun)|Fuscoboletinus|genus Fuscoboletinus|fungus genus (generic term)
+fuscoboletinus paluster|1
+(noun)|Fuscoboletinus paluster|bolete (generic term)
+fuscoboletinus serotinus|1
+(noun)|Fuscoboletinus serotinus|bolete (generic term)
+fuscous|1
+(adj)|taupe|chromatic (similar term)
+fuse|6
+(noun)|electrical fuse|safety fuse|electrical device (generic term)
+(noun)|fuze|fusee|fuzee|primer|priming|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+(verb)|blend|flux|mix|conflate|commingle|immix|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+(verb)|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)|defuse (antonym)
+(verb)|melt (generic term)|run (generic term)|melt down (generic term)
+fused|1
+(adj)|amalgamate|amalgamated|coalesced|consolidated|united (similar term)
+fusee|4
+(noun)|fusee drive|drive (generic term)
+(noun)|fuzee|flare (generic term)
+(noun)|fuzee|match (generic term)|lucifer (generic term)|friction match (generic term)
+(noun)|fuse|fuze|fuzee|primer|priming|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+fusee drive|1
+(noun)|fusee|drive (generic term)
+fusel oil|1
+(noun)|oil (generic term)
+fuselage|1
+(noun)|body (generic term)
+fusible|1
+(adj)|melted (similar term)|liquid (similar term)|liquified (similar term)
+fusible metal|1
+(noun)|alloy (generic term)|metal (generic term)
+fusiform|1
+(adj)|spindle-shaped|cigar-shaped|pointed (similar term)
+fusil|1
+(noun)|musket (generic term)
+fusilier|1
+(noun)|infantryman (generic term)|marcher (generic term)|foot soldier (generic term)|footslogger (generic term)
+fusillade|2
+(noun)|salvo|volley|burst|fire (generic term)|firing (generic term)
+(verb)|fire (generic term)|discharge (generic term)
+fusion|7
+(noun)|merger|unification|union (generic term)
+(noun)|nuclear fusion|nuclear fusion reaction|nuclear reaction (generic term)
+(noun)|coalition|union (generic term)|unification (generic term)
+(noun)|linguistic process (generic term)
+(noun)|optical fusion|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+(noun)|spinal fusion|correction (generic term)
+(noun)|combination (generic term)|combining (generic term)|compounding (generic term)
+fusion bomb|1
+(noun)|hydrogen bomb|H-bomb|thermonuclear bomb|nuclear weapon (generic term)|bomb (generic term)
+fusion cooking|1
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+fusion reactor|1
+(noun)|thermonuclear reactor|nuclear reactor (generic term)|reactor (generic term)
+fuss|6
+(noun)|dither|pother|tizzy|flap|agitation (generic term)
+(noun)|trouble|bother|hassle|perturbation (generic term)|disturbance (generic term)
+(noun)|bicker|bickering|spat|tiff|squabble|pettifoggery|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+(noun)|bustle|hustle|flurry|ado|stir|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+(verb)|niggle|fret|worry (generic term)
+(verb)|mother|overprotect|care (generic term)|give care (generic term)
+fuss-budget|1
+(noun)|worrier|fusspot|worrywart|spoilsport (generic term)|killjoy (generic term)|wet blanket (generic term)|party pooper (generic term)
+fussiness|2
+(noun)|irritability|crossness|fretfulness|peevishness|petulance|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|ornateness (generic term)|elaborateness (generic term)
+fusspot|1
+(noun)|worrier|fuss-budget|worrywart|spoilsport (generic term)|killjoy (generic term)|wet blanket (generic term)|party pooper (generic term)
+fussy|3
+(adj)|crabbed|crabby|cross|grouchy|grumpy|bad-tempered|ill-tempered|ill-natured (similar term)
+(adj)|busy|fancy (similar term)
+(adj)|finical|finicky|particular|picky|fastidious (similar term)
+fustian|2
+(noun)|bombast|rant|claptrap|blah|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+fustigate|1
+(verb)|cudgel|hit (generic term)
+fusty|2
+(adj)|musty|frowsty|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|standpat|unprogressive|nonprogressive|conservative (similar term)
+futile|2
+(adj)|ineffectual|otiose|unavailing|useless (similar term)
+(adj)|bootless|fruitless|sleeveless|vain|unproductive (similar term)
+futility|1
+(noun)|inutility (generic term)|uselessness (generic term)|unusefulness (generic term)
+futon|1
+(noun)|mattress (generic term)
+futtock shroud|1
+(noun)|sheet (generic term)|tack (generic term)|mainsheet (generic term)|weather sheet (generic term)|shroud (generic term)
+future|8
+(adj)|approaching (similar term)|coming (similar term)|forthcoming (similar term)|upcoming (similar term)|coming (similar term)|future day (similar term)|early (similar term)|emerging (similar term)|rising (similar term)|in store (similar term)|prospective (similar term)|proximo (similar term)|prox (similar term)|incoming (related term)|prospective (related term)|past (antonym)|present (antonym)
+(adj)|prospective (similar term)
+(adj)|later|ulterior|subsequent (similar term)
+(adj)|next|succeeding|incoming (similar term)
+(adj)|tense (related term)
+(noun)|hereafter|futurity|time to come|time (generic term)|past (antonym)
+(noun)|future tense|tense (generic term)
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+future date|1
+(noun)|date (generic term)
+future day|1
+(adj)|coming|future (similar term)
+future perfect|1
+(noun)|future perfect tense|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+future perfect tense|1
+(noun)|future perfect|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+future progressive|1
+(noun)|future progressive tense|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+future progressive tense|1
+(noun)|future progressive|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+future tense|1
+(noun)|future|tense (generic term)
+futureless|1
+(adj)|hopeless (similar term)
+futures contract|1
+(noun)|derivative instrument (generic term)|derivative (generic term)
+futures exchange|1
+(noun)|futures market|forward market|commodity exchange (generic term)|commodities exchange (generic term)|commodities market (generic term)
+futures market|1
+(noun)|futures exchange|forward market|commodity exchange (generic term)|commodities exchange (generic term)|commodities market (generic term)
+futurism|2
+(noun)|artistic movement (generic term)|art movement (generic term)
+(noun)|position (generic term)|view (generic term)|perspective (generic term)
+futurist|3
+(adj)|futuristic|artistic movement|art movement (related term)
+(noun)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|fantast|visionary (generic term)|illusionist (generic term)|seer (generic term)
+futuristic|1
+(adj)|futurist|artistic movement|art movement (related term)
+futuristics|1
+(noun)|futurology|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+futurity|2
+(noun)|future|hereafter|time to come|time (generic term)|past (antonym)
+(noun)|timing (generic term)|pastness (antonym)|presentness (antonym)
+futurology|1
+(noun)|futuristics|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+fuze|1
+(noun)|fuse|fusee|fuzee|primer|priming|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+fuzee|3
+(noun)|fusee|flare (generic term)
+(noun)|fusee|match (generic term)|lucifer (generic term)|friction match (generic term)
+(noun)|fuse|fuze|fusee|primer|priming|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+fuzz|4
+(noun)|hair|tomentum|plant process (generic term)|enation (generic term)
+(noun)|bull|cop|copper|pig|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|blur|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+fuzzed|1
+(adj)|fuzzy|hairy (similar term)|haired (similar term)|hirsute (similar term)
+fuzziness|1
+(noun)|indistinctness|softness|blurriness|fogginess|opacity (generic term)|opaqueness (generic term)|sharpness (antonym)|distinctness (antonym)
+fuzzy|3
+(adj)|fuzzed|hairy (similar term)|haired (similar term)|hirsute (similar term)
+(adj)|bleary|blurred|blurry|foggy|hazy|muzzy|indistinct (similar term)
+(adj)|incoherent (similar term)
+fuzzy logic|1
+(noun)|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+fws|1
+(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+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 (generic term)|author (generic term)
+g|8
+(noun)|gram|gramme|gm|metric weight unit (generic term)|weight unit (generic term)
+(noun)|guanine|G|purine (generic term)
+(noun)|deoxyguanosine monophosphate|G|nucleotide (generic term)
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+(noun)|gee|g-force|force unit (generic term)
+(noun)|gigabyte|G|GB|computer memory unit (generic term)
+(noun)|gravitational constant|universal gravitational constant|constant of gravitation|G|constant (generic term)
+(noun)|G|letter g|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+g-force|1
+(noun)|g|gee|force unit (generic term)
+g-jo|1
+(noun)|acupressure|G-Jo|shiatsu|treatment (generic term)
+g-man|1
+(noun)|G-man|FBI agent|government man|government agent (generic term)
+g-string|1
+(noun)|G-string|thong|woman's clothing (generic term)
+g. b. shaw|1
+(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+g. e. moore|1
+(noun)|Moore|G. E. Moore|George Edward Moore|philosopher (generic term)
+g. k. chesterton|1
+(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer (generic term)|author (generic term)
+g. l. von blucher|1
+(noun)|Blucher|von Blucher|G. L. von Blucher|Gebhard Leberecht von Blucher|general (generic term)|full general (generic term)
+g. r. kirchhoff|1
+(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist (generic term)
+g. stanley hall|1
+(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist (generic term)
+g.i.|1
+(verb)|G.I.|GI|houseclean (generic term)|clean house (generic term)|clean (generic term)
+g clef|1
+(noun)|treble clef|treble staff|G clef|clef (generic term)
+g suit|1
+(noun)|anti-G suit|G suit|pressure suit (generic term)
+ga|3
+(noun)|tabun|GA|organophosphate nerve agent (generic term)
+(noun)|gallium|Ga|atomic number 31|metallic element (generic term)|metal (generic term)
+(noun)|Georgia|Empire State of the South|Peach State|GA|American state (generic term)
+gaap|1
+(noun)|generally accepted accounting practices|GAAP|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+gab|1
+(noun)|chitchat|small talk|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+gaba|1
+(noun)|gamma aminobutyric acid|GABA|amino acid (generic term)|aminoalkanoic acid (generic term)|neurotransmitter (generic term)
+gabardine|3
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|flannel|tweed|white|trouser (generic term)|pant (generic term)
+(noun)|duster|gaberdine|smock|dust coat|coverall (generic term)
+gabble|2
+(noun)|jabber|jabbering|gibberish (generic term)|gibber (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+gabbro|1
+(noun)|igneous rock (generic term)
+gabby|1
+(adj)|chatty|garrulous|loquacious|talkative|talky|voluble (similar term)
+gaberdine|1
+(noun)|duster|gabardine|smock|dust coat|coverall (generic term)
+gabfest|1
+(noun)|chitchat|small talk|gab|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+gable|2
+(noun)|gable end|gable wall|wall (generic term)
+(noun)|Gable|Clark Gable|William Clark Gable|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+gable end|1
+(noun)|gable|gable wall|wall (generic term)
+gable roof|1
+(noun)|saddle roof|saddleback|saddleback roof|roof (generic term)
+gable wall|1
+(noun)|gable|gable end|wall (generic term)
+gabled|1
+(adj)|hipped (antonym)
+gabon|1
+(noun)|Gabon|Gabonese Republic|Gabun|African country (generic term)|African nation (generic term)
+gabon franc|1
+(noun)|Gabon franc|franc (generic term)
+gabonese|2
+(adj)|Gabonese|African country|African nation (related term)
+(noun)|Gabonese|African (generic term)
+gabonese republic|1
+(noun)|Gabon|Gabonese Republic|Gabun|African country (generic term)|African nation (generic term)
+gaboon viper|1
+(noun)|Bitis gabonica|viper (generic term)
+gabor|1
+(noun)|Gabor|Dennis Gabor|physicist (generic term)
+gaboriau|1
+(noun)|Gaboriau|Emile Gaboriau|writer (generic term)|author (generic term)
+gaborone|1
+(noun)|Gaborone|capital of Botswana|national capital (generic term)
+gabriel|1
+(noun)|Gabriel|archangel (generic term)
+gabriel daniel fahrenheit|1
+(noun)|Fahrenheit|Gabriel Daniel Fahrenheit|physicist (generic term)
+gabriel lippmann|1
+(noun)|Lippmann|Gabriel Lippmann|physicist (generic term)
+gabriel tellez|1
+(noun)|Tirso de Molina|Gabriel Tellez|dramatist (generic term)|playwright (generic term)
+gabriele fallopius|1
+(noun)|Fallopius|Gabriele Fallopius|Fallopio|Gabriello Fallopio|anatomist (generic term)
+gabriello fallopio|1
+(noun)|Fallopius|Gabriele Fallopius|Fallopio|Gabriello Fallopio|anatomist (generic term)
+gabun|1
+(noun)|Gabon|Gabonese Republic|Gabun|African country (generic term)|African nation (generic term)
+gad|3
+(noun)|generalized anxiety disorder|GAD|anxiety reaction|anxiety disorder (generic term)
+(noun)|spur|prod (generic term)|goad (generic term)
+(verb)|gallivant|jazz around|roll (generic term)|wander (generic term)|swan (generic term)|stray (generic term)|tramp (generic term)|roam (generic term)|cast (generic term)|ramble (generic term)|rove (generic term)|range (generic term)|drift (generic term)|vagabond (generic term)
+gadaba|2
+(noun)|Gadaba|Dravidian (generic term)
+(noun)|Gadaba|Central Dravidian (generic term)
+gadabout|1
+(noun)|seeker (generic term)|searcher (generic term)|quester (generic term)
+gaddafi|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+gaddi|1
+(noun)|cushion (generic term)
+gadfly|2
+(noun)|pest|blighter|cuss|pesterer|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+(noun)|fly (generic term)
+gadget|1
+(noun)|appliance|contraption|contrivance|convenience|gizmo|gismo|widget|device (generic term)
+gadgeteer|1
+(noun)|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+gadgetry|1
+(noun)|appliance (generic term)|contraption (generic term)|contrivance (generic term)|convenience (generic term)|gadget (generic term)|gizmo (generic term)|gismo (generic term)|widget (generic term)
+gadidae|1
+(noun)|Gadidae|family Gadidae|fish family (generic term)
+gadiformes|1
+(noun)|Gadiformes|order Gadiformes|animal order (generic term)
+gadoid|1
+(noun)|gadoid fish|soft-finned fish (generic term)|malacopterygian (generic term)
+gadoid fish|1
+(noun)|gadoid|soft-finned fish (generic term)|malacopterygian (generic term)
+gadolinite|1
+(noun)|ytterbite|mineral (generic term)
+gadolinium|1
+(noun)|Gd|atomic number 64|metallic element (generic term)|metal (generic term)
+gadsden|1
+(noun)|Gadsden|town (generic term)
+gadus|1
+(noun)|Gadus|genus Gadus|fish genus (generic term)
+gadus macrocephalus|1
+(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod (generic term)|codfish (generic term)
+gadus merlangus|1
+(noun)|whiting|Merlangus merlangus|Gadus merlangus|gadoid (generic term)|gadoid fish (generic term)
+gadus morhua|1
+(noun)|Atlantic cod|Gadus morhua|cod (generic term)|codfish (generic term)
+gaea|1
+(noun)|Gaea|Gaia|Ge|Greek deity (generic term)
+gael|1
+(noun)|Gael|Celt (generic term)|Kelt (generic term)
+gaelic|2
+(adj)|Celtic|Gaelic|European (related term)
+(noun)|Gaelic|Goidelic|Erse|Celtic (generic term)|Celtic language (generic term)
+gaelic-speaking|1
+(adj)|Gaelic-speaking|communicative (similar term)|communicatory (similar term)
+gaetan vestris|1
+(noun)|Vestris|Gaetan Vestris|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+gaetano donizetti|1
+(noun)|Donizetti|Gaetano Donizetti|composer (generic term)
+gaff|3
+(noun)|spike (generic term)
+(noun)|spar (generic term)
+(noun)|hook (generic term)
+gaff-headed sail|1
+(noun)|gaffsail|fore-and-aft sail (generic term)
+gaff topsail|1
+(noun)|fore-and-aft topsail|fore-and-aft sail (generic term)
+gaffe|1
+(noun)|faux pas|solecism|slip|gaucherie|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+gaffer|3
+(noun)|old-timer|oldtimer|old geezer|antique|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+(noun)|electrician (generic term)|lineman (generic term)|linesman (generic term)
+(noun)|foreman|chief|honcho|boss|supervisor (generic term)
+gaffsail|1
+(noun)|gaff-headed sail|fore-and-aft sail (generic term)
+gafsa|1
+(noun)|Gafsa|city (generic term)|metropolis (generic term)|urban center (generic term)
+gag|9
+(noun)|joke|laugh|jest|jape|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|muzzle|restraint (generic term)|constraint (generic term)
+(verb)|muzzle|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+(verb)|choke|fret|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|muzzle|tie (generic term)|bind (generic term)
+(verb)|quip|joke (generic term)|jest (generic term)
+(verb)|choke|strangle|suffocate|suffer (generic term)|hurt (generic term)
+(verb)|choke|sicken (generic term)
+(verb)|heave|retch
+gag law|2
+(noun)|closure|cloture|gag rule|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+(noun)|law (generic term)
+gag line|1
+(noun)|punch line|laugh line|tag line|line (generic term)
+gag order|1
+(noun)|court order (generic term)
+gag reflex|1
+(noun)|pharyngeal reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+gag rule|1
+(noun)|closure|cloture|gag law|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+gaga|2
+(adj)|doddering|doddery|senile|old (similar term)
+(adj)|crazy|dotty|enamored|infatuated|in love|smitten|soft on|taken with|loving (similar term)
+gagarin|1
+(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+gage|3
+(noun)|pot|grass|green goddess|dope|weed|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(noun)|gauge|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|bet on|back|stake|game|punt|bet (generic term)|wager (generic term)|play (generic term)
+gaggle|2
+(noun)|flock (generic term)
+(verb)|cackle (generic term)
+gagman|2
+(noun)|standup comedian|comedian (generic term)|comic (generic term)
+(noun)|gagster|gagwriter|writer (generic term)|author (generic term)
+gagster|1
+(noun)|gagman|gagwriter|writer (generic term)|author (generic term)
+gagwriter|1
+(noun)|gagman|gagster|writer (generic term)|author (generic term)
+gai choi|1
+(noun)|chinese mustard|indian mustard|leaf mustard|Brassica juncea|mustard (generic term)
+gaia|1
+(noun)|Gaea|Gaia|Ge|Greek deity (generic term)
+gaiety|2
+(noun)|merriment|happiness (generic term)
+(noun)|playfulness|levity (generic term)
+gaillardia|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+gaillardia pulchella|1
+(noun)|blanket flower|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia (generic term)
+gain|13
+(noun)|addition|increase|indefinite quantity (generic term)
+(noun)|profit|advantage (generic term)|vantage (generic term)
+(noun)|amplification|increase (generic term)|increment (generic term)
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)|loss (antonym)
+(verb)|derive|obtain (generic term)
+(verb)|acquire|win|get (generic term)|acquire (generic term)|lose (antonym)
+(verb)|profit|benefit|get (generic term)|acquire (generic term)
+(verb)|reach|make|attain|hit|arrive at
+(verb)|advance|win|pull ahead|make headway|get ahead|gain ground|fall back (antonym)
+(verb)|advance|wax (generic term)|mount (generic term)|climb (generic term)|rise (generic term)
+(verb)|increase (generic term)
+(verb)|take in|clear|make|earn|realize|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|put on|change state (generic term)|turn (generic term)|reduce (antonym)
+gain ground|1
+(verb)|gain|advance|win|pull ahead|make headway|get ahead|fall back (antonym)
+gain vigor|1
+(verb)|perk up|perk|percolate|pick up|recuperate (generic term)|recover (generic term)|convalesce (generic term)
+gainer|3
+(noun)|weight gainer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|full gainer|dive (generic term)|diving (generic term)
+gainesville|1
+(noun)|Gainesville|town (generic term)
+gainful|1
+(adj)|paid|paying|profitable (similar term)
+gainfulness|1
+(noun)|profitableness|profitability|lucrativeness|profit (generic term)|gain (generic term)|unprofitability (antonym)|unprofitableness (antonym)
+gaining control|1
+(noun)|capture|seizure|acquiring (generic term)|getting (generic term)
+gainlessly|1
+(adv)|profitlessly|unprofitably
+gainly|1
+(adj)|graceful (similar term)
+gainsay|1
+(verb)|challenge|dispute|contest (generic term)|contend (generic term)|repugn (generic term)
+gainsborough|1
+(noun)|Gainsborough|Thomas Gainsborough|painter (generic term)
+gaiseric|1
+(noun)|Genseric|Gaiseric|king (generic term)|male monarch (generic term)|Rex (generic term)
+gait|3
+(noun)|pace|rate (generic term)
+(noun)|locomotion (generic term)|travel (generic term)
+(noun)|walk (generic term)|walking (generic term)
+gaiter|3
+(noun)|spat|legging (generic term)|legin (generic term)|leg covering (generic term)
+(noun)|shoe (generic term)
+(noun)|legging (generic term)|legin (generic term)|leg covering (generic term)
+gaius|1
+(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor (generic term)|Emperor of Rome (generic term)
+gaius aurelius valerius diocletian|1
+(noun)|Diocletian|Gaius Aurelius Valerius Diocletian|Roman Emperor (generic term)|Emperor of Rome (generic term)
+gaius caesar|1
+(noun)|Caligula|Gaius|Gaius Caesar|Roman Emperor (generic term)|Emperor of Rome (generic term)
+gaius cassius longinus|1
+(noun)|Cassius|Cassius Longinus|Gaius Cassius Longinus|statesman (generic term)|solon (generic term)|national leader (generic term)
+gaius cornelius tacitus|1
+(noun)|Tacitus|Publius Cornelius Tacitus|Gaius Cornelius Tacitus|historian (generic term)|historiographer (generic term)
+gaius flaminius|1
+(noun)|Flaminius|Gaius Flaminius|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+gaius julius caesar|1
+(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+gaius julius caesar octavianus|1
+(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman (generic term)|solon (generic term)|national leader (generic term)|Roman Emperor (generic term)|Emperor of Rome (generic term)
+gaius octavianus|1
+(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman (generic term)|solon (generic term)|national leader (generic term)|Roman Emperor (generic term)|Emperor of Rome (generic term)
+gaius petronius|1
+(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer (generic term)|author (generic term)
+gaius plinius caecilius secundus|1
+(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer (generic term)|author (generic term)
+gaius plinius secundus|1
+(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer (generic term)|author (generic term)
+gaius valerius catullus|1
+(noun)|Catullus|Gaius Valerius Catullus|poet (generic term)
+gal|3
+(noun)|gallon|United States liquid unit (generic term)
+(noun)|acceleration unit (generic term)
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+gala|1
+(noun)|gala affair|jamboree|blowout|celebration (generic term)|festivity (generic term)
+gala affair|1
+(noun)|gala|jamboree|blowout|celebration (generic term)|festivity (generic term)
+galactagogue|1
+(noun)|agent (generic term)
+galactic|2
+(adj)|collection|aggregation|accumulation|assemblage (related term)
+(adj)|astronomic|astronomical|large (similar term)|big (similar term)
+galactocele|1
+(noun)|cyst (generic term)
+galactose|1
+(noun)|brain sugar|sucrose (generic term)|saccharose (generic term)
+galactosemia|1
+(noun)|inborn error of metabolism (generic term)
+galactosis|1
+(noun)|secretion (generic term)|secernment (generic term)
+galago|1
+(noun)|bushbaby|bush baby|lemur (generic term)
+galahad|1
+(noun)|Galahad|Sir Galahad|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+galan|1
+(noun)|Galan|mountain peak (generic term)
+galangal|2
+(noun)|Alpinia galanga|ginger (generic term)
+(noun)|galingale|Cyperus longus|sedge (generic term)
+galantine|1
+(noun)|dish (generic term)
+galanty show|1
+(noun)|shadow show|shadow play|show (generic term)
+galapagos|1
+(noun)|Galapagos Islands|Galapagos|island (generic term)
+galapagos islands|1
+(noun)|Galapagos Islands|Galapagos|island (generic term)
+galatea|1
+(noun)|Galatea|mythical being (generic term)
+galatia|1
+(noun)|Galatia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+galatian|1
+(noun)|Galatian|Gaul (generic term)
+galatians|1
+(noun)|Epistle of Paul the Apostle to the Galatians|Epistle to the Galatians|Galatians|Epistle (generic term)
+galax|1
+(noun)|galaxy|wandflower|beetleweed|coltsfoot|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+galax urceolata|1
+(noun)|galax|galaxy|wandflower|beetleweed|coltsfoot|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+galaxy|3
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|galax|wandflower|beetleweed|coltsfoot|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+(noun)|extragalactic nebula|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+galbanum|1
+(noun)|gum albanum|gum (generic term)
+galbraith|1
+(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist (generic term)|economic expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+galbulidae|1
+(noun)|Galbulidae|family Galbulidae|bird family (generic term)
+galbulus|1
+(noun)|cone (generic term)|strobilus (generic term)|strobile (generic term)
+gale|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+galea|1
+(noun)|plant organ (generic term)
+galega|1
+(noun)|Galega|genus Galega|rosid dicot genus (generic term)
+galega officinalis|1
+(noun)|goat's rue|goat rue|Galega officinalis|herb (generic term)|herbaceous plant (generic term)
+galen|1
+(noun)|Galen|anatomist (generic term)
+galena|1
+(noun)|mineral (generic term)
+galeocerdo|1
+(noun)|Galeocerdo|genus Galeocerdo|fish genus (generic term)
+galeocerdo cuvieri|1
+(noun)|tiger shark|Galeocerdo cuvieri|requiem shark (generic term)
+galeopsis|1
+(noun)|Galeopsis|genus Galeopsis|asterid dicot genus (generic term)
+galeopsis tetrahit|1
+(noun)|hemp nettle|dead nettle|Galeopsis tetrahit|herb (generic term)|herbaceous plant (generic term)
+galeorhinus|1
+(noun)|Galeorhinus|genus Galeorhinus|fish genus (generic term)
+galeorhinus zyopterus|1
+(noun)|soupfin shark|soupfin|soup-fin|Galeorhinus zyopterus|requiem shark (generic term)
+galeras|1
+(noun)|Galeras|Pasto|volcano (generic term)
+galere|1
+(noun)|rogue's gallery|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+galicia|1
+(noun)|Galicia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+galician|1
+(noun)|Galician|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+galictis vittatus|1
+(noun)|grison|Grison vittatus|Galictis vittatus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+galiella rufa|1
+(noun)|Galiella rufa|discomycete (generic term)|cup fungus (generic term)
+galilaean|2
+(adj)|Galilean|Galilaean|inhabitant|habitant|dweller|denizen|indweller (related term)|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Galilean|Galilaean|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+galilean|4
+(adj)|Galilean|astronomer|uranologist|stargazer (related term)
+(adj)|Galilean|Galilaean|inhabitant|habitant|dweller|denizen|indweller (related term)|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Galilean|Galilaean|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Galilean satellite|Galilean|satellite (generic term)
+galilean satellite|1
+(noun)|Galilean satellite|Galilean|satellite (generic term)
+galilean telescope|1
+(noun)|Galilean telescope|refracting telescope (generic term)
+galilee|1
+(noun)|Galilee|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+galileo|1
+(noun)|Galileo|Galileo Galilei|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+galileo galilei|1
+(noun)|Galileo|Galileo Galilei|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+galina sergeevna ulanova|1
+(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+galina ulanova|1
+(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+galingale|1
+(noun)|galangal|Cyperus longus|sedge (generic term)
+galium|1
+(noun)|Galium|genus Galium|asterid dicot genus (generic term)
+galium aparine|1
+(noun)|cleavers|clivers|goose grass|catchweed|spring cleavers|Galium aparine|bedstraw (generic term)
+galium boreale|1
+(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw (generic term)
+galium lanceolatum|1
+(noun)|wild licorice|Galium lanceolatum|bedstraw (generic term)
+galium mollugo|1
+(noun)|wild madder|white madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw (generic term)
+galium odoratum|1
+(noun)|sweet woodruff|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw (generic term)
+galium verum|1
+(noun)|yellow bedstraw|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw (generic term)
+gall|8
+(noun)|saddle sore|animal disease (generic term)
+(noun)|sore (generic term)
+(noun)|plant tissue (generic term)
+(noun)|resentment|bitterness|rancor|rancour|hostility (generic term)|enmity (generic term)|ill will (generic term)
+(noun)|bile|digestive juice (generic term)|digestive fluid (generic term)
+(noun)|crust|impertinence|impudence|insolence|cheekiness|freshness|discourtesy (generic term)|rudeness (generic term)
+(verb)|chafe|fret|irritate (generic term)
+(verb)|irk|anger (generic term)
+gall-berry|1
+(noun)|inkberry|gallberry|evergreen winterberry|Ilex glabra|holly (generic term)
+gall gnat|1
+(noun)|gall midge|gallfly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+gall midge|1
+(noun)|gallfly|gall gnat|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+gall of the earth|1
+(noun)|lion's foot|Nabalus serpentarius|Prenanthes serpentaria|herb (generic term)|herbaceous plant (generic term)
+gall wasp|1
+(noun)|gallfly|cynipid wasp|cynipid gall wasp|wasp (generic term)
+gallamine|1
+(noun)|Flaxedil|neuromuscular blocking agent (generic term)|muscle relaxant (generic term)
+gallant|6
+(adj)|brave (similar term)|courageous (similar term)
+(adj)|dashing|spirited (similar term)
+(adj)|lofty|majestic|proud|impressive (similar term)
+(adj)|chivalrous|knightly|courteous (similar term)
+(noun)|dandy|dude|fop|sheik|beau|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+(noun)|squire|attendant (generic term)|attender (generic term)|tender (generic term)
+gallant fox|1
+(noun)|Gallant Fox|thoroughbred (generic term)
+gallantly|1
+(adv)|chivalrously|unchivalrously (antonym)
+gallantry|3
+(noun)|heroism|valor|valour|valorousness|valiance|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+(noun)|chivalry|politesse|courtesy (generic term)|good manners (generic term)
+(noun)|courtesy (generic term)
+gallaudet|1
+(noun)|Gallaudet|Thomas Hopkins Gallaudet|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+gallberry|1
+(noun)|inkberry|gall-berry|evergreen winterberry|Ilex glabra|holly (generic term)
+gallbladder|1
+(noun)|bladder (generic term)|vesica (generic term)
+galled|1
+(adj)|chafed|painful (similar term)
+galleon|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+galleria|1
+(noun)|Galleria|genus Galleria|arthropod genus (generic term)
+galleria mellonella|1
+(noun)|bee moth|wax moth|Galleria mellonella|pyralid (generic term)|pyralid moth (generic term)
+gallery|7
+(noun)|audience (generic term)
+(noun)|veranda|verandah|porch (generic term)
+(noun)|art gallery|picture gallery|room (generic term)
+(noun)|room (generic term)
+(noun)|corridor (generic term)
+(noun)|balcony (generic term)
+(noun)|drift|heading|passageway (generic term)
+galley|3
+(noun)|vessel (generic term)|watercraft (generic term)
+(noun)|kitchen (generic term)
+(noun)|ship's galley|caboose|cookhouse|kitchen (generic term)
+galley proof|1
+(noun)|proof (generic term)|test copy (generic term)|trial impression (generic term)
+galley slave|2
+(noun)|slave (generic term)
+(noun)|drudge|peon|navvy|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+gallfly|3
+(noun)|gall wasp|cynipid wasp|cynipid gall wasp|wasp (generic term)
+(noun)|gall midge|gall gnat|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+(noun)|insect (generic term)
+gallia|1
+(noun)|Gaul|Gallia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+galliano|1
+(noun)|Galliano|liqueur (generic term)|cordial (generic term)
+gallic|2
+(adj)|Gallic|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|French|Gallic|European country|European nation (related term)
+gallic acid|1
+(noun)|acid (generic term)
+gallican|1
+(adj)|Gallican|religious movement (related term)
+gallicanism|1
+(noun)|Gallicanism|religious movement (generic term)
+gallicism|1
+(noun)|Gallicism|loanword (generic term)|loan (generic term)
+galliformes|1
+(noun)|Galliformes|order Galliformes|animal order (generic term)
+gallimaufry|1
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+gallina|1
+(noun)|jungle fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+gallinacean|1
+(noun)|gallinaceous bird|bird (generic term)
+gallinaceous|1
+(adj)|bird (related term)
+gallinaceous bird|1
+(noun)|gallinacean|bird (generic term)
+gallinago|1
+(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus (generic term)
+gallinago gallinago|1
+(noun)|whole snipe|Gallinago gallinago|snipe (generic term)
+gallinago gallinago delicata|1
+(noun)|Wilson's snipe|Gallinago gallinago delicata|snipe (generic term)
+gallinago media|1
+(noun)|great snipe|woodcock snipe|Gallinago media|snipe (generic term)
+galling|1
+(adj)|annoying|bothersome|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+gallinula|1
+(noun)|Gallinula|genus Gallinula|bird genus (generic term)
+gallinula chloropus|1
+(noun)|moorhen|Gallinula chloropus|gallinule (generic term)|marsh hen (generic term)|water hen (generic term)|swamphen (generic term)
+gallinula chloropus cachinnans|1
+(noun)|Florida gallinule|Gallinula chloropus cachinnans|gallinule (generic term)|marsh hen (generic term)|water hen (generic term)|swamphen (generic term)
+gallinule|1
+(noun)|marsh hen|water hen|swamphen|aquatic bird (generic term)
+gallirallus|1
+(noun)|Gallirallus|genus Gallirallus|bird genus (generic term)
+gallium|1
+(noun)|Ga|atomic number 31|metallic element (generic term)|metal (generic term)
+gallivant|1
+(verb)|gad|jazz around|roll (generic term)|wander (generic term)|swan (generic term)|stray (generic term)|tramp (generic term)|roam (generic term)|cast (generic term)|ramble (generic term)|rove (generic term)|range (generic term)|drift (generic term)|vagabond (generic term)
+gallon|2
+(noun)|gal|United States liquid unit (generic term)
+(noun)|Imperial gallon|congius|British capacity unit (generic term)|Imperial capacity unit (generic term)
+gallop|4
+(noun)|gait (generic term)
+(verb)|ride horseback (generic term)
+(verb)|pace (generic term)
+(verb)|extend|ride (generic term)|sit (generic term)
+gallop rhythm|1
+(noun)|cantering rhythm|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+gallous|1
+(noun)|gallows tree|gallows-tree|gibbet|gallows (generic term)
+galloway|2
+(noun)|Galloway|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|Galloway|beef (generic term)|beef cattle (generic term)
+gallows|1
+(noun)|instrument of execution (generic term)
+gallows-tree|1
+(noun)|gallows tree|gibbet|gallous|gallows (generic term)
+gallows bird|1
+(noun)|villain (generic term)|scoundrel (generic term)
+gallows tree|1
+(noun)|gallows-tree|gibbet|gallous|gallows (generic term)
+gallstone|1
+(noun)|bilestone|calculus (generic term)|concretion (generic term)
+gallup|1
+(noun)|Gallup|town (generic term)
+gallus|2
+(noun)|brace|suspender|man's clothing (generic term)
+(noun)|Gallus|genus Gallus|bird genus (generic term)
+gallus gallus|2
+(noun)|chicken|Gallus gallus|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+(noun)|red jungle fowl|Gallus gallus|jungle fowl (generic term)|gallina (generic term)
+galois|1
+(noun)|Galois|Evariste Galois|mathematician (generic term)
+galois theory|1
+(noun)|Galois theory|group theory (generic term)
+galoot|1
+(noun)|man (generic term)|adult male (generic term)
+galore|2
+(adj)|many (similar term)
+(adj)|abounding|abundant (similar term)
+galosh|1
+(noun)|arctic|golosh|rubber|gumshoe|overshoe (generic term)
+galsworthy|1
+(noun)|Galsworthy|John Galsworthy|writer (generic term)|author (generic term)
+galton|1
+(noun)|Galton|Francis Galton|Sir Francis Galton|scientist (generic term)|man of science (generic term)
+galtonia candicans|1
+(noun)|summer hyacinth|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth (generic term)
+galumph|1
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+galvani|1
+(noun)|Galvani|Luigi Galvani|physiologist (generic term)
+galvanic|2
+(adj)|voltaic|electricity (related term)|electrical phenomenon (related term)
+(adj)|electric|galvanizing|galvanising|exciting (similar term)
+galvanic battery|1
+(noun)|voltaic battery|battery (generic term)|electric battery (generic term)
+galvanic cell|1
+(noun)|voltaic cell|primary cell|cell (generic term)|electric cell (generic term)|electrolytic cell (antonym)
+galvanic pile|1
+(noun)|voltaic pile|pile|battery (generic term)|electric battery (generic term)
+galvanic skin response|1
+(noun)|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+galvanisation|2
+(noun)|galvanization|stimulation (generic term)
+(noun)|galvanization|application (generic term)|coating (generic term)|covering (generic term)
+galvanise|3
+(verb)|startle|galvanize|shock (generic term)|stun (generic term)|floor (generic term)|ball over (generic term)|blow out of the water (generic term)|take aback (generic term)
+(verb)|galvanize|coat (generic term)|surface (generic term)
+(verb)|galvanize|shock (generic term)
+galvaniser|2
+(noun)|galvanizer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|galvanizer|inspirer|leader (generic term)
+galvanising|1
+(adj)|electric|galvanic|galvanizing|exciting (similar term)
+galvanism|2
+(noun)|electricity (generic term)
+(noun)|electrotherapy|electric healing|electrical healing|therapy (generic term)
+galvanization|2
+(noun)|galvanisation|stimulation (generic term)
+(noun)|galvanisation|application (generic term)|coating (generic term)|covering (generic term)
+galvanize|3
+(verb)|startle|galvanise|shock (generic term)|stun (generic term)|floor (generic term)|ball over (generic term)|blow out of the water (generic term)|take aback (generic term)
+(verb)|galvanise|coat (generic term)|surface (generic term)
+(verb)|galvanise|shock (generic term)
+galvanized iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+galvanizer|2
+(noun)|galvaniser|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|galvaniser|inspirer|leader (generic term)
+galvanizing|1
+(adj)|electric|galvanic|galvanising|exciting (similar term)
+galvanometer|1
+(noun)|meter (generic term)
+galveston|1
+(noun)|Galveston|town (generic term)
+galveston bay|1
+(noun)|Galveston Bay|bay (generic term)|embayment (generic term)
+galveston island|1
+(noun)|Galveston Island|island (generic term)
+galway|1
+(noun)|Galway|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+galway bay|1
+(noun)|Galway Bay|bay (generic term)|embayment (generic term)
+galwegian|1
+(adj)|Galwegian|district|territory|territorial dominion|dominion (related term)
+gam|1
+(noun)|herd (generic term)
+gamal abdel nasser|1
+(noun)|Nasser|Gamal Abdel Nasser|statesman (generic term)|solon (generic term)|national leader (generic term)
+gamba|1
+(noun)|viola da gamba|bass viol|viol (generic term)
+gambelia|1
+(noun)|Gambelia|genus Gambelia|reptile genus (generic term)
+gambia|1
+(noun)|Gambia|The Gambia|Republic of The Gambia|African country (generic term)|African nation (generic term)
+gambian|2
+(adj)|Gambian|African country|African nation (related term)
+(noun)|Gambian|African (generic term)
+gambian monetary unit|1
+(noun)|Gambian monetary unit|monetary unit (generic term)
+gambier islands|1
+(noun)|Gambier Islands|archipelago (generic term)
+gambist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+gambit|3
+(noun)|ploy|remark (generic term)|comment (generic term)
+(noun)|ploy|stratagem|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|chess move (generic term)
+gamble|4
+(noun)|speculation (generic term)|venture (generic term)
+(noun)|risk (generic term)|peril (generic term)|danger (generic term)
+(verb)|chance|risk|hazard|take chances|adventure|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|play (generic term)
+gambler|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|risk taker|adventurer (generic term)|venturer (generic term)
+gambling|1
+(noun)|gaming|play|diversion (generic term)|recreation (generic term)|vice (generic term)
+gambling casino|1
+(noun)|casino|gambling house (generic term)|gambling den (generic term)|gambling hell (generic term)|gaming house (generic term)
+gambling contract|1
+(noun)|contract (generic term)
+gambling den|1
+(noun)|gambling house|gambling hell|gaming house|building (generic term)|edifice (generic term)|place of business (generic term)|business establishment (generic term)
+gambling game|1
+(noun)|game of chance|gambling (generic term)|gaming (generic term)|play (generic term)|game (generic term)
+gambling hell|1
+(noun)|gambling house|gambling den|gaming house|building (generic term)|edifice (generic term)|place of business (generic term)|business establishment (generic term)
+gambling house|1
+(noun)|gambling den|gambling hell|gaming house|building (generic term)|edifice (generic term)|place of business (generic term)|business establishment (generic term)
+gambling system|1
+(noun)|system (generic term)|system of rules (generic term)
+gamboge|2
+(noun)|gum resin (generic term)
+(noun)|lemon|lemon yellow|maize|yellow (generic term)|yellowness (generic term)
+gamboge tree|1
+(noun)|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree (generic term)|flowering tree (generic term)
+gambol|2
+(noun)|play|frolic|romp|caper|diversion (generic term)|recreation (generic term)
+(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|frisk|romp|run around|lark about|play (generic term)
+gambrel|1
+(noun)|gambrel roof|gable roof (generic term)|saddle roof (generic term)|saddleback (generic term)|saddleback roof (generic term)
+gambrel roof|1
+(noun)|gambrel|gable roof (generic term)|saddle roof (generic term)|saddleback (generic term)|saddleback roof (generic term)
+gambusia|1
+(noun)|Gambusia|genus Gambusia|fish genus (generic term)
+gambusia affinis|1
+(noun)|mosquitofish|Gambusia affinis|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+game|13
+(adj)|crippled|halt|halting|lame|gimpy|unfit (similar term)
+(adj)|gamy|gamey|gritty|mettlesome|spirited|spunky|brave (similar term)|courageous (similar term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|activity (generic term)
+(noun)|diversion (generic term)|recreation (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|game equipment (generic term)
+(noun)|biz|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|score (generic term)
+(noun)|meat (generic term)
+(noun)|plot|secret plan|scheme (generic term)|strategy (generic term)
+(noun)|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+(verb)|bet on|back|gage|stake|punt|bet (generic term)|wager (generic term)|play (generic term)
+game bird|1
+(noun)|game (generic term)|gallinaceous bird (generic term)|gallinacean (generic term)
+game equipment|1
+(noun)|equipment (generic term)
+game fish|1
+(noun)|sport fish|fish (generic term)
+game fowl|1
+(noun)|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+game law|1
+(noun)|regulation (generic term)|ordinance (generic term)
+game license|1
+(noun)|hunting license|hunting licence|hunting permit|license (generic term)|licence (generic term)|permit (generic term)
+game misconduct|1
+(noun)|penalty (generic term)
+game of chance|1
+(noun)|gambling game|gambling (generic term)|gaming (generic term)|play (generic term)|game (generic term)
+game plan|1
+(noun)|scheme (generic term)|strategy (generic term)
+game room|1
+(noun)|rumpus room|playroom|recreation room (generic term)|rec room (generic term)
+game show|1
+(noun)|giveaway|broadcast (generic term)|program (generic term)|programme (generic term)
+game theory|1
+(noun)|theory of games|scientific theory (generic term)
+game warden|1
+(noun)|gamekeeper|custodian (generic term)|keeper (generic term)|steward (generic term)
+gamebag|1
+(noun)|bag (generic term)
+gameboard|1
+(noun)|board|surface (generic term)
+gamecock|2
+(noun)|fighting cock|cock (generic term)
+(noun)|hell-kite|hell-rooster|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+gamekeeper|1
+(noun)|game warden|custodian (generic term)|keeper (generic term)|steward (generic term)
+gamelan|1
+(noun)|ensemble (generic term)
+gameness|1
+(noun)|lameness|limping|gimp|gimpiness|claudication|disability of walking (generic term)
+games-master|1
+(noun)|games-mistress|schoolteacher (generic term)|school teacher (generic term)
+games-mistress|1
+(noun)|games-master|schoolteacher (generic term)|school teacher (generic term)
+gamesmanship|1
+(noun)|unfairness (generic term)|inequity (generic term)
+gametangium|1
+(noun)|reproductive structure (generic term)
+gamete|1
+(noun)|reproductive cell (generic term)|germ cell (generic term)|sex cell (generic term)
+gametocyte|1
+(noun)|cell (generic term)
+gametoecium|1
+(noun)|reproductive structure (generic term)
+gametogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+gametophore|1
+(noun)|reproductive structure (generic term)
+gametophyte|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+gamey|3
+(adj)|blue|gamy|juicy|naughty|racy|risque|spicy|sexy (similar term)
+(adj)|gamy|high|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|game|gamy|gritty|mettlesome|spirited|spunky|brave (similar term)|courageous (similar term)
+gamin|1
+(noun)|street arab|throwaway|street urchin (generic term)|guttersnipe (generic term)
+gamine|2
+(noun)|street urchin (generic term)|guttersnipe (generic term)
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+gaminess|1
+(noun)|raciness|ribaldry|spiciness|indelicacy (generic term)
+gaming|1
+(noun)|gambling|play|diversion (generic term)|recreation (generic term)|vice (generic term)
+gaming card|1
+(noun)|playing card (generic term)
+gaming house|1
+(noun)|gambling house|gambling den|gambling hell|building (generic term)|edifice (generic term)|place of business (generic term)|business establishment (generic term)
+gaming table|1
+(noun)|table (generic term)
+gamma|3
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|field strength unit (generic term)
+(noun)|da Gamma|Vasco da Gamma|Gamma|navigator (generic term)
+gamma-interferon|1
+(noun)|interferon (generic term)
+gamma acid|1
+(noun)|acid (generic term)
+gamma aminobutyric acid|1
+(noun)|GABA|amino acid (generic term)|aminoalkanoic acid (generic term)|neurotransmitter (generic term)
+gamma globulin|1
+(noun)|human gamma globulin|plasma protein (generic term)|globulin (generic term)
+gamma hydroxybutyrate|1
+(noun)|GHB|club drug (generic term)
+gamma iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+gamma radiation|1
+(noun)|gamma ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+gamma ray|1
+(noun)|gamma radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+gammon|2
+(noun)|ham|jambon|cut of pork (generic term)
+(noun)|bacon (generic term)
+gammopathy|1
+(noun)|pathology (generic term)
+gammy|1
+(adj)|unfit (similar term)
+gamopetalous|1
+(adj)|sympetalous|petalous (similar term)|petaled (similar term)|petalled (similar term)
+gamow|1
+(noun)|Gamow|George Gamow|physicist (generic term)
+gamp|1
+(noun)|brolly|umbrella (generic term)
+gamut|2
+(noun)|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|scale (generic term)|musical scale (generic term)
+gamy|3
+(adj)|blue|gamey|juicy|naughty|racy|risque|spicy|sexy (similar term)
+(adj)|gamey|high|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|game|gamey|gritty|mettlesome|spirited|spunky|brave (similar term)|courageous (similar term)
+gan jiang|1
+(noun)|Gan Jiang|Kan River|river (generic term)
+ganapati|1
+(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity (generic term)
+gand|1
+(noun)|Gent|Gand|Ghent|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gand flower|1
+(noun)|common milkwort|Polygala vulgaris|milkwort (generic term)
+gander|1
+(noun)|goose (generic term)
+gandhi|2
+(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader (generic term)|spiritual leader (generic term)
+gandhian|1
+(adj)|Gandhian|nationalist leader|spiritual leader (related term)
+gandy dancer|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+ganef|1
+(noun)|gonif|goniff|ganof|wrongdoer (generic term)|offender (generic term)
+ganesa|1
+(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity (generic term)
+ganesh|1
+(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity (generic term)
+ganesha|1
+(noun)|Ganesh|Ganesa|Ganesha|Ganapati|Hindu deity (generic term)
+gang|5
+(noun)|pack|ring|mob|association (generic term)
+(noun)|crowd|crew|bunch|gathering (generic term)|assemblage (generic term)
+(noun)|crew|work party|unit (generic term)|social unit (generic term)
+(noun)|tool (generic term)
+(verb)|gang up|group (generic term)|aggroup (generic term)
+gang-rape|1
+(verb)|rape (generic term)|ravish (generic term)|violate (generic term)|assault (generic term)|dishonor (generic term)|dishonour (generic term)|outrage (generic term)
+gang fight|1
+(noun)|rumble|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+gang up|1
+(verb)|gang|group (generic term)|aggroup (generic term)
+gangboard|1
+(noun)|gangplank|gangway|footbridge (generic term)|overcrossing (generic term)|pedestrian bridge (generic term)
+gangdom|1
+(noun)|organized crime|gangland|social group (generic term)
+ganger|1
+(noun)|foreman (generic term)|chief (generic term)|gaffer (generic term)|honcho (generic term)|boss (generic term)
+ganges|1
+(noun)|Ganges|Ganges River|river (generic term)
+ganges river|1
+(noun)|Ganges|Ganges River|river (generic term)
+gangland|1
+(noun)|organized crime|gangdom|social group (generic term)
+gangling|2
+(adj)|gangly|lanky|rangy|tall (similar term)
+(adj)|gangly|lanky|thin (similar term)|lean (similar term)
+ganglion|1
+(noun)|neural structure (generic term)
+gangly|2
+(adj)|gangling|lanky|rangy|tall (similar term)
+(adj)|gangling|lanky|thin (similar term)|lean (similar term)
+gangplank|1
+(noun)|gangboard|gangway|footbridge (generic term)|overcrossing (generic term)|pedestrian bridge (generic term)
+gangrene|3
+(noun)|sphacelus|slough|pathology (generic term)
+(noun)|necrosis|mortification|sphacelus|death (generic term)
+(verb)|necrose|mortify|sphacelate|waste (generic term)|rot (generic term)
+gangrenous|1
+(adj)|mortified|unhealthy (similar term)
+gangrenous emphysema|1
+(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gas phlegmon|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+gangsaw|1
+(noun)|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+gangster|1
+(noun)|mobster|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+gangster's moll|1
+(noun)|moll|gun moll|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+gangway|3
+(noun)|passageway (generic term)
+(noun)|gangplank|gangboard|footbridge (generic term)|overcrossing (generic term)|pedestrian bridge (generic term)
+(noun)|aisle|passageway (generic term)
+ganja|2
+(noun)|marijuana|marihuana|Cannabis sativa|cannabis (generic term)|hemp (generic term)
+(noun)|cannabis|marijuana|marihuana|soft drug (generic term)|controlled substance (generic term)
+gannet|1
+(noun)|pelecaniform seabird (generic term)
+ganof|1
+(noun)|gonif|goniff|ganef|wrongdoer (generic term)|offender (generic term)
+ganoid|1
+(noun)|ganoid fish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+ganoid fish|1
+(noun)|ganoid|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+ganoidei|1
+(noun)|Ganoidei|order Ganoidei|animal order (generic term)
+ganoin|1
+(noun)|ganoine|secretion (generic term)
+ganoine|1
+(noun)|ganoin|secretion (generic term)
+gansu|1
+(noun)|Gansu|Kansu|Gansu province|state (generic term)|province (generic term)
+gansu province|1
+(noun)|Gansu|Kansu|Gansu province|state (generic term)|province (generic term)
+gantanol|1
+(noun)|sulfamethoxazole|Gantanol|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+gantlet|5
+(noun)|gauntlet|challenge (generic term)
+(noun)|gauntlet|metal glove|glove (generic term)
+(noun)|gauntlet|glove (generic term)
+(noun)|railroad track (generic term)|railroad (generic term)|railway (generic term)
+(noun)|gauntlet|corporal punishment (generic term)
+gantrisin|1
+(noun)|sulfisoxazole|Gantrisin|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+gantry|1
+(noun)|gauntry|framework (generic term)|frame (generic term)|framing (generic term)
+ganymede|2
+(noun)|Ganymede|mythical being (generic term)
+(noun)|Ganymede|Galilean satellite (generic term)|Galilean (generic term)
+gao|1
+(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+gaol|2
+(noun)|jail|jailhouse|clink|slammer|poky|pokey|correctional institution (generic term)
+(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|put away|remand|confine (generic term)|detain (generic term)
+gaolbird|1
+(noun)|convict|con|inmate|jail bird|jailbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+gaolbreak|1
+(noun)|break|breakout|jailbreak|prisonbreak|prison-breaking|escape (generic term)|flight (generic term)
+gaoler|1
+(noun)|prison guard|jailer|jailor|screw|turnkey|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+gap|7
+(noun)|spread|disparity (generic term)
+(noun)|opening|space (generic term)
+(noun)|crack|opening (generic term)
+(noun)|col|pass (generic term)|mountain pass (generic term)|notch (generic term)
+(noun)|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|break|interruption|disruption|delay (generic term)|holdup (generic term)
+(verb)|breach|open (generic term)|open up (generic term)
+gap-toothed|1
+(adj)|toothed (similar term)
+gape|4
+(noun)|facial expression (generic term)|facial gesture (generic term)
+(noun)|stare (generic term)
+(verb)|goggle|gawp|gawk|look (generic term)
+(verb)|yawn|yaw|be (generic term)
+gaping|1
+(adj)|agape|open (similar term)|opened (similar term)
+gapped scale|1
+(noun)|scale (generic term)|musical scale (generic term)
+gar|2
+(noun)|garfish|garpike|billfish|Lepisosteus osseus|ganoid (generic term)|ganoid fish (generic term)
+(noun)|needlefish|billfish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+garage|3
+(noun)|outbuilding (generic term)
+(noun)|service department|repair shop (generic term)|fix-it shop (generic term)
+(verb)|store (generic term)
+garage sale|1
+(noun)|yard sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+garageman's lien|1
+(noun)|mechanic's lien (generic term)
+garambulla|2
+(noun)|garambulla cactus|Myrtillocactus geometrizans|cactus (generic term)
+(noun)|edible fruit (generic term)
+garambulla cactus|1
+(noun)|garambulla|Myrtillocactus geometrizans|cactus (generic term)
+garamycin|1
+(noun)|gentamicin|Garamycin|antibiotic (generic term)|antibiotic drug (generic term)
+garand|1
+(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm (generic term)|rifle (generic term)
+garand rifle|1
+(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm (generic term)|rifle (generic term)
+garb|2
+(noun)|attire|dress|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|dress|clothe|enclothe|raiment|tog|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+garbage|3
+(noun)|refuse|food waste|scraps|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|drivel|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|receptacle (generic term)
+garbage can|1
+(noun)|ashcan|trash can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+garbage carter|1
+(noun)|garbage man|garbageman|garbage collector|garbage hauler|refuse collector|dustman|hauler (generic term)|haulier (generic term)
+garbage collection|1
+(noun)|garbage pickup|trash collection|trash pickup|pickup (generic term)
+garbage collector|1
+(noun)|garbage man|garbageman|garbage carter|garbage hauler|refuse collector|dustman|hauler (generic term)|haulier (generic term)
+garbage disposal|1
+(noun)|disposal|electric pig|kitchen appliance (generic term)
+garbage down|1
+(verb)|gobble up|shovel in|bolt down|eat (generic term)
+garbage dump|1
+(noun)|dump|trash dump|rubbish dump|wasteyard|waste-yard|dumpsite|site (generic term)|land site (generic term)
+garbage hauler|1
+(noun)|garbage man|garbageman|garbage collector|garbage carter|refuse collector|dustman|hauler (generic term)|haulier (generic term)
+garbage heap|1
+(noun)|junk heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+garbage man|1
+(noun)|garbageman|garbage collector|garbage carter|garbage hauler|refuse collector|dustman|hauler (generic term)|haulier (generic term)
+garbage pickup|1
+(noun)|garbage collection|trash collection|trash pickup|pickup (generic term)
+garbage truck|1
+(noun)|dustcart|truck (generic term)|motortruck (generic term)
+garbageman|1
+(noun)|garbage man|garbage collector|garbage carter|garbage hauler|refuse collector|dustman|hauler (generic term)|haulier (generic term)
+garbanzo|1
+(noun)|chickpea|legume (generic term)
+garbed|1
+(adj)|appareled|attired|dressed|garmented|habilimented|robed|clothed (similar term)|clad (similar term)
+garble|1
+(verb)|falsify|distort|warp|misrepresent (generic term)|belie (generic term)
+garbled|1
+(adj)|confused|disconnected|disjointed|disordered|illogical|scattered|unconnected|incoherent (similar term)
+garbo|1
+(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress (generic term)
+garboard|1
+(noun)|garboard plank|garboard strake|wale (generic term)|strake (generic term)
+garboard plank|1
+(noun)|garboard|garboard strake|wale (generic term)|strake (generic term)
+garboard strake|1
+(noun)|garboard|garboard plank|wale (generic term)|strake (generic term)
+garboil|1
+(noun)|tumult|tumultuousness|uproar|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+garbology|1
+(noun)|social anthropology (generic term)|cultural anthropology (generic term)
+garcia lorca|1
+(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet (generic term)|dramatist (generic term)|playwright (generic term)
+garcinia|1
+(noun)|Garcinia|genus Garcinia|dilleniid dicot genus (generic term)
+garcinia cambogia|1
+(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree (generic term)|flowering tree (generic term)
+garcinia gummi-gutta|1
+(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree (generic term)|flowering tree (generic term)
+garcinia hanburyi|1
+(noun)|gamboge tree|Garcinia hanburyi|Garcinia cambogia|Garcinia gummi-gutta|angiospermous tree (generic term)|flowering tree (generic term)
+garcinia mangostana|1
+(noun)|mangosteen|mangosteen tree|Garcinia mangostana|fruit tree (generic term)
+gardant|1
+(adj)|guardant|full-face|forward (similar term)
+garden|4
+(noun)|plot (generic term)|plot of ground (generic term)|patch (generic term)
+(noun)|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+(verb)|tend (generic term)
+garden angelica|1
+(noun)|archangel|Angelica Archangelica|angelica (generic term)|angelique (generic term)
+garden balm|1
+(noun)|lemon balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+garden cart|1
+(noun)|barrow|lawn cart|wheelbarrow|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+garden centipede|1
+(noun)|garden symphilid|symphilid|Scutigerella immaculata|arthropod (generic term)
+garden chair|1
+(noun)|lawn chair|chair (generic term)
+garden cress|1
+(noun)|cress (generic term)
+garden current|1
+(noun)|red currant|Ribes rubrum|currant (generic term)|currant bush (generic term)
+garden egg|1
+(noun)|eggplant|aubergine|brinjal|eggplant bush|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+garden forget-me-not|1
+(noun)|Myosotis sylvatica|herb (generic term)|herbaceous plant (generic term)
+garden heliotrope|1
+(noun)|common valerian|Valeriana officinalis|valerian (generic term)
+garden hose|1
+(noun)|hose (generic term)|hosepipe (generic term)
+garden huckleberry|1
+(noun)|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+garden lettuce|1
+(noun)|common lettuce|Lactuca sativa|lettuce (generic term)
+garden loosestrife|1
+(noun)|yellow loosestrife|Lysimachia vulgaris|loosestrife (generic term)
+garden nasturtium|1
+(noun)|Indian cress|Tropaeolum majus|nasturtium (generic term)
+garden of eden|1
+(noun)|Eden|Garden of Eden|Heaven (generic term)
+garden orache|1
+(noun)|mountain spinach|Atriplex hortensis|orach (generic term)|orache (generic term)
+garden party|1
+(noun)|lawn party|fete champetre|party (generic term)
+garden pea|3
+(noun)|pea (generic term)
+(noun)|garden pea plant|common pea|Pisum sativum|pea (generic term)|pea plant (generic term)
+(noun)|green pea|pea (generic term)
+garden pea plant|1
+(noun)|garden pea|common pea|Pisum sativum|pea (generic term)|pea plant (generic term)
+garden pepper cress|1
+(noun)|common garden cress|pepper grass|pepperwort|Lepidium sativum|cress (generic term)|cress plant (generic term)
+garden pink|1
+(noun)|pink|flower (generic term)
+garden plant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+garden rake|1
+(noun)|rake (generic term)
+garden rhubarb|1
+(noun)|pie plant|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb (generic term)|rhubarb plant (generic term)
+garden rocket|1
+(noun)|rocket|roquette|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+garden roller|1
+(noun)|roller (generic term)
+garden snail|1
+(noun)|snail (generic term)
+garden sorrel|2
+(noun)|French sorrel|Rumex scutatus|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+(noun)|sour dock|Rumex acetosa|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+garden spade|1
+(noun)|spade (generic term)
+garden spider|1
+(noun)|Aranea diademata|spider (generic term)
+garden state|1
+(noun)|New Jersey|Jersey|Garden State|NJ|American state (generic term)
+garden stater|1
+(noun)|New Jerseyan|New Jerseyite|Garden Stater|American (generic term)
+garden strawberry|1
+(noun)|cultivated strawberry|Fragaria ananassa|strawberry (generic term)
+garden symphilid|1
+(noun)|garden centipede|symphilid|Scutigerella immaculata|arthropod (generic term)
+garden tool|1
+(noun)|lawn tool|tool (generic term)
+garden trowel|1
+(noun)|trowel (generic term)
+garden truck|1
+(noun)|produce|green goods|green groceries|food (generic term)|solid food (generic term)
+garden violet|1
+(noun)|sweet violet|English violet|Viola odorata|violet (generic term)
+garden webworm|1
+(noun)|Loxostege similalis|webworm (generic term)
+gardener|2
+(noun)|nurseryman|horticulturist (generic term)|plantsman (generic term)
+(noun)|employee (generic term)
+gardener's delight|1
+(noun)|mullein pink|rose campion|dusty miller|Lychnis coronaria|lychnis (generic term)|catchfly (generic term)
+gardener's garters|1
+(noun)|reed canary grass|lady's laces|ribbon grass|Phalaris arundinacea|grass (generic term)
+gardenia|1
+(noun)|shrub (generic term)|bush (generic term)
+gardenia augusta|1
+(noun)|cape jasmine|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia (generic term)
+gardenia jasminoides|1
+(noun)|cape jasmine|cape jessamine|Gardenia jasminoides|Gardenia augusta|gardenia (generic term)
+gardening|1
+(noun)|horticulture|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+gardiner|1
+(noun)|Gardiner|Samuel Rawson Gardiner|historian (generic term)|historiographer (generic term)
+gardner|2
+(noun)|Gardner|Isabella Stewart Gardner|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+(noun)|Gardner|Erle Stanley Gardner|writer (generic term)|author (generic term)
+garfield|1
+(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+garfish|1
+(noun)|gar|garpike|billfish|Lepisosteus osseus|ganoid (generic term)|ganoid fish (generic term)
+garganey|1
+(noun)|Anas querquedula|teal (generic term)
+gargantua|1
+(noun)|Gargantua|imaginary being (generic term)|imaginary creature (generic term)
+gargantuan|1
+(adj)|elephantine|giant|jumbo|large (similar term)|big (similar term)
+garget|1
+(noun)|poke|pigeon berry|scoke|Phytolacca americana|pokeweed (generic term)
+gargle|4
+(noun)|mouthwash|solution (generic term)
+(noun)|sound (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|rinse|wash (generic term)|lave (generic term)
+gargoyle|2
+(noun)|spout (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+gargoylism|1
+(noun)|Hurler's syndrome|Hurler's disease|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+gari|1
+(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+garibaldi|2
+(noun)|Garibaldi|Giuseppe Garibaldi|general (generic term)|full general (generic term)|patriot (generic term)|nationalist (generic term)
+(noun)|blouse (generic term)
+garish|1
+(adj)|brassy|cheap|flash|flashy|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+garishly|1
+(adv)|tawdrily|gaudily
+garishness|2
+(noun)|flashiness|gaudiness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness (generic term)
+(noun)|gaudiness|ugliness (generic term)
+garland|5
+(noun)|Garland|Judy Garland|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+(noun)|Garland|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|florilegium|miscellany|anthology (generic term)
+(noun)|wreath|coronal|chaplet|lei|flower arrangement (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+garland crab|1
+(noun)|American crab apple|Malus coronaria|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+garland flower|1
+(noun)|Daphne cneorum|daphne (generic term)
+garlic|2
+(noun)|Allium sativum|alliaceous plant (generic term)
+(noun)|ail|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+garlic-like|1
+(adj)|vegetable (similar term)
+garlic bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+garlic butter|1
+(noun)|spread (generic term)|paste (generic term)
+garlic chive|2
+(noun)|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+garlic clove|1
+(noun)|clove|garlic (generic term)|ail (generic term)
+garlic mustard|1
+(noun)|hedge garlic|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer (generic term)|cruciferous plant (generic term)
+garlic press|1
+(noun)|press (generic term)|mechanical press (generic term)
+garlic salt|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+garlic sauce|1
+(noun)|aioli|aioli sauce|sauce (generic term)
+garlicky|1
+(adj)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning (related term)
+garment|2
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|dress|clothe|enclothe|garb|raiment|tog|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+garment-worker|1
+(noun)|garmentmaker|garment worker|needleworker (generic term)
+garment bag|1
+(noun)|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+garment cutter|1
+(noun)|cutter (generic term)
+garment industry|1
+(noun)|apparel industry|fashion industry|fashion business|rag trade|industry (generic term)
+garment worker|1
+(noun)|garmentmaker|garment-worker|needleworker (generic term)
+garmented|1
+(adj)|appareled|attired|dressed|garbed|habilimented|robed|clothed (similar term)|clad (similar term)
+garmentless|1
+(adj)|clothesless|raimentless|unclothed (similar term)
+garmentmaker|1
+(noun)|garment-worker|garment worker|needleworker (generic term)
+garner|4
+(noun)|granary|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+(verb)|earn|get (generic term)|acquire (generic term)
+(verb)|store (generic term)
+(verb)|gather|collect|pull together|gather up (related term)|spread (antonym)
+garnet|1
+(noun)|mineral (generic term)|transparent gem (generic term)
+garnet-colored|1
+(adj)|garnet-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+garnet-coloured|1
+(adj)|garnet-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+garnet lac|1
+(noun)|lac (generic term)
+garnier|1
+(noun)|Garnier|Jean Louis Charles Garnier|architect (generic term)|designer (generic term)
+garnierite|1
+(noun)|mineral (generic term)
+garnish|3
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(verb)|garnishee|impound (generic term)|attach (generic term)|sequester (generic term)|confiscate (generic term)|seize (generic term)
+(verb)|trim|dress|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+garnished|1
+(adj)|fancy (similar term)
+garnishee|2
+(noun)|earner (generic term)|wage earner (generic term)
+(verb)|garnish|impound (generic term)|attach (generic term)|sequester (generic term)|confiscate (generic term)|seize (generic term)
+garnishment|1
+(noun)|court order (generic term)
+garonne|1
+(noun)|Garonne|Garonne River|river (generic term)
+garonne river|1
+(noun)|Garonne|Garonne River|river (generic term)
+garotte|2
+(noun)|garrote|garrotte|iron collar|instrument of execution (generic term)
+(verb)|garrote|garrotte|scrag|strangle (generic term)|strangulate (generic term)|throttle (generic term)
+garpike|1
+(noun)|gar|garfish|billfish|Lepisosteus osseus|ganoid (generic term)|ganoid fish (generic term)
+garret|1
+(noun)|loft|attic|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+garrick|1
+(noun)|Garrick|David Garrick|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+garrison|4
+(noun)|fort|military post (generic term)|post (generic term)
+(noun)|Garrison|William Lloyd Garrison|abolitionist (generic term)|emancipationist (generic term)
+(noun)|military personnel (generic term)|soldiery (generic term)|troops (generic term)
+(verb)|station (generic term)|post (generic term)|base (generic term)|send (generic term)|place (generic term)
+garrison cap|1
+(noun)|overseas cap|cap (generic term)
+garrote|2
+(noun)|garotte|garrotte|iron collar|instrument of execution (generic term)
+(verb)|garrotte|garotte|scrag|strangle (generic term)|strangulate (generic term)|throttle (generic term)
+garroter|1
+(noun)|garrotter|strangler|throttler|choker|killer (generic term)|slayer (generic term)
+garrotte|2
+(noun)|garrote|garotte|iron collar|instrument of execution (generic term)
+(verb)|garrote|garotte|scrag|strangle (generic term)|strangulate (generic term)|throttle (generic term)
+garrotter|1
+(noun)|garroter|strangler|throttler|choker|killer (generic term)|slayer (generic term)
+garrulinae|1
+(noun)|Garrulinae|subfamily Garrulinae|bird family (generic term)
+garrulity|1
+(noun)|garrulousness|loquaciousness|loquacity|talkativeness|communicativeness (generic term)
+garrulous|1
+(adj)|chatty|gabby|loquacious|talkative|talky|voluble (similar term)
+garrulously|1
+(adv)|loquaciously|talkatively|talkily
+garrulousness|1
+(noun)|garrulity|loquaciousness|loquacity|talkativeness|communicativeness (generic term)
+garrulus|1
+(noun)|Garrulus|genus Garrulus|bird genus (generic term)
+garry oak|1
+(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak (generic term)
+garter|2
+(noun)|supporter|band (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+garter belt|1
+(noun)|suspender belt|undergarment (generic term)|unmentionable (generic term)
+garter snake|1
+(noun)|grass snake|colubrid snake (generic term)|colubrid (generic term)
+garter stitch|1
+(noun)|knitting stitch (generic term)
+gartner's bacillus|1
+(noun)|Salmonella enteritidis|Gartner's bacillus|salmonella (generic term)
+garuda|1
+(noun)|Garuda|Hindu deity (generic term)
+garullus garullus|1
+(noun)|common European jay|Garullus garullus|Old World jay (generic term)
+gary|1
+(noun)|Gary|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+gary cooper|1
+(noun)|Cooper|Gary Cooper|Frank Cooper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+gary kasparov|1
+(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master (generic term)
+gary weinstein|1
+(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master (generic term)
+gas|8
+(noun)|gaseous state|state of matter (generic term)|state (generic term)
+(noun)|fluid (generic term)
+(noun)|gasoline|gasolene|petrol|fuel (generic term)|hydrocarbon (generic term)
+(noun)|flatulence|flatulency|physiological state (generic term)|physiological condition (generic term)
+(noun)|accelerator|accelerator pedal|gas pedal|throttle|gun|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+(noun)|natural gas|fossil fuel (generic term)
+(verb)|attack (generic term)|assail (generic term)
+(verb)|boast|tout|swash|shoot a line|brag|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+gas-cooled reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)
+gas-discharge lamp|1
+(noun)|electric-discharge lamp|electric lamp (generic term)
+gas-discharge tube|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+gas-filled|1
+(adj)|full (similar term)
+gas-tight|1
+(adj)|airtight|air-tight|tight (similar term)
+gas-turbine ship|1
+(noun)|ship (generic term)
+gas bomb|1
+(noun)|chemical bomb|bomb (generic term)|chemical weapon (generic term)
+gas bracket|1
+(noun)|burner (generic term)
+gas burner|1
+(noun)|gas jet|burner (generic term)
+gas chamber|1
+(noun)|death chamber|instrument of execution (generic term)
+gas company|1
+(noun)|gas service|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+gas constant|1
+(noun)|universal gas constant|R|constant (generic term)
+gas cooker|1
+(noun)|gas range|gas stove|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+gas embolism|2
+(noun)|air embolism|aeroembolism|embolism (generic term)
+(noun)|decompression sickness|aeroembolism|air embolism|caisson disease|bends|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+gas engine|1
+(noun)|internal-combustion engine (generic term)|ICE (generic term)
+gas fitter|1
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+gas fitting|1
+(noun)|fitting (generic term)
+gas fixture|1
+(noun)|device (generic term)
+gas furnace|1
+(noun)|furnace (generic term)
+gas gage|1
+(noun)|gasoline gauge|gasoline gage|gas gauge|gauge (generic term)|gage (generic term)
+gas gangrene|1
+(noun)|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+gas gauge|1
+(noun)|gasoline gauge|gasoline gage|gas gage|gauge (generic term)|gage (generic term)
+gas giant|1
+(noun)|Jovian planet|planet (generic term)|major planet (generic term)
+gas gun|1
+(noun)|gun (generic term)
+gas guzzler|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+gas heat|1
+(noun)|heating system (generic term)|heating plant (generic term)|heating (generic term)|heat (generic term)
+gas heater|1
+(noun)|heater (generic term)|warmer (generic term)
+gas helmet|1
+(noun)|gasmask|respirator|mask (generic term)
+gas holder|1
+(noun)|gasometer|tank (generic term)|storage tank (generic term)
+gas jet|1
+(noun)|gas burner|burner (generic term)
+gas lamp|1
+(noun)|lamp (generic term)
+gas line|3
+(noun)|queue (generic term)|waiting line (generic term)
+(noun)|pipeline (generic term)|line (generic term)
+(noun)|fuel line|pipe (generic term)|pipage (generic term)|piping (generic term)
+gas main|1
+(noun)|main (generic term)
+gas maser|1
+(noun)|maser (generic term)
+gas meter|1
+(noun)|gasometer|meter (generic term)
+gas mileage|1
+(noun)|mileage|fuel consumption rate|gasoline mileage|ratio (generic term)
+gas oil|1
+(noun)|fuel oil (generic term)|heating oil (generic term)|hydrocarbon (generic term)
+gas oven|2
+(noun)|crematory (generic term)|crematorium (generic term)|cremation chamber (generic term)
+(noun)|oven (generic term)
+gas pedal|1
+(noun)|accelerator|accelerator pedal|gas|throttle|gun|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+gas phlegmon|1
+(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|progressive emphysematous necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+gas plant|1
+(noun)|fraxinella|dittany|burning bush|Dictamnus alba|herb (generic term)|herbaceous plant (generic term)
+gas pressure|1
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+gas pump|1
+(noun)|gasoline pump|island dispenser|pump (generic term)
+gas range|1
+(noun)|gas stove|gas cooker|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+gas ring|1
+(noun)|gas burner (generic term)|gas jet (generic term)
+gas service|1
+(noun)|gas company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+gas shell|1
+(noun)|bomb (generic term)
+gas station|1
+(noun)|gasoline station|filling station|petrol station|service station (generic term)
+gas stove|1
+(noun)|gas range|gas cooker|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+gas system|1
+(noun)|facility (generic term)|installation (generic term)
+gas tank|1
+(noun)|gasoline tank|tank (generic term)|storage tank (generic term)
+gas thermometer|1
+(noun)|air thermometer|thermometer (generic term)
+gas turbine|1
+(noun)|turbine (generic term)
+gas up|1
+(verb)|fuel (generic term)
+gas well|1
+(noun)|well (generic term)
+gasbag|2
+(noun)|windbag|bore (generic term)|dullard (generic term)
+(noun)|envelope|bag (generic term)
+gascogne|1
+(noun)|Gascogne|Gascony|French region (generic term)
+gasconade|2
+(noun)|brag|bragging|crow|crowing|vaporing|line-shooting|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(verb)|boast|tout|swash|shoot a line|brag|gas|blow|bluster|vaunt|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+gascony|1
+(noun)|Gascogne|Gascony|French region (generic term)
+gaseous|1
+(adj)|aeriform (similar term)|airlike (similar term)|aerosolized (similar term)|aerosolised (similar term)|evaporated (similar term)|foamy (similar term)|frothy (similar term)|gasified (similar term)|vaporized (similar term)|vapourised (similar term)|volatilized (similar term)|volatilised (similar term)|gassy (similar term)|vaporific (similar term)|vapourific (similar term)|vaporish (similar term)|vapourish (similar term)|vaporous (similar term)|vapourous (similar term)|solid (antonym)|liquid (antonym)
+gaseous nebula|1
+(noun)|diffuse nebula|nebula (generic term)
+gaseous state|1
+(noun)|gas|state of matter (generic term)|state (generic term)
+gaseousness|1
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)
+gasfield|1
+(noun)|field (generic term)
+gash|4
+(noun)|cut|slash|slice|wound (generic term)|lesion (generic term)
+(noun)|cut|furrow (generic term)
+(noun)|slash|cut (generic term)|cutting (generic term)
+(verb)|slash|cut (generic term)
+gashed|1
+(adj)|cut|slashed|injured (similar term)
+gasherbrum|1
+(noun)|Gasherbrum|mountain peak (generic term)
+gasification|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+gasified|1
+(adj)|vaporized|vapourised|volatilized|volatilised|gaseous (similar term)
+gasify|1
+(verb)|vaporize|vaporise|aerify|change integrity (generic term)
+gaskell|1
+(noun)|Gaskell|Elizabeth Gaskell|Elizabeth Cleghorn Stevenson Gaskell|writer (generic term)|author (generic term)
+gasket|1
+(noun)|seal (generic term)
+gaskin|1
+(noun)|body part (generic term)
+gaslight|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+gasman|1
+(noun)|employee (generic term)
+gasmask|1
+(noun)|respirator|gas helmet|mask (generic term)
+gasohol|1
+(noun)|fuel (generic term)|hydrocarbon (generic term)
+gasolene|1
+(noun)|gasoline|gas|petrol|fuel (generic term)|hydrocarbon (generic term)
+gasoline|1
+(noun)|gasolene|gas|petrol|fuel (generic term)|hydrocarbon (generic term)
+gasoline bomb|1
+(noun)|Molotov cocktail|petrol bomb|improvised explosive device (generic term)|I.E.D. (generic term)|IED (generic term)
+gasoline engine|1
+(noun)|internal-combustion engine (generic term)|ICE (generic term)
+gasoline gage|1
+(noun)|gasoline gauge|gas gauge|gas gage|gauge (generic term)|gage (generic term)
+gasoline gauge|1
+(noun)|gasoline gage|gas gauge|gas gage|gauge (generic term)|gage (generic term)
+gasoline mileage|1
+(noun)|mileage|fuel consumption rate|gas mileage|ratio (generic term)
+gasoline pump|1
+(noun)|gas pump|island dispenser|pump (generic term)
+gasoline station|1
+(noun)|gas station|filling station|petrol station|service station (generic term)
+gasoline tank|1
+(noun)|gas tank|tank (generic term)|storage tank (generic term)
+gasoline tax|1
+(noun)|excise (generic term)|excise tax (generic term)
+gasometer|2
+(noun)|gas meter|meter (generic term)
+(noun)|gas holder|tank (generic term)|storage tank (generic term)
+gasp|2
+(noun)|pant|inhalation (generic term)|inspiration (generic term)|aspiration (generic term)|breathing in (generic term)
+(verb)|pant|puff|heave|blow (generic term)
+gaspar|1
+(noun)|Caspar|Gaspar|sage (generic term)
+gasping|1
+(adj)|blown|out of breath|panting|pursy|short-winded|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+gaspingly|2
+(adv)|breathlessly
+(adv)|pantingly
+gassing|2
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|poisoning (generic term)
+gassy|2
+(adj)|gaseous (similar term)
+(adj)|colicky|flatulent|unhealthy (similar term)
+gasteromycete|1
+(noun)|gastromycete|fungus (generic term)
+gasteromycetes|1
+(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class (generic term)
+gasterophilidae|1
+(noun)|Gasterophilidae|family Gasterophilidae|arthropod family (generic term)
+gasterophilus|1
+(noun)|Gasterophilus|genus Gasterophilus|arthropod genus (generic term)
+gasterophilus intestinalis|1
+(noun)|horse botfly|Gasterophilus intestinalis|botfly (generic term)
+gasteropoda|1
+(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class (generic term)
+gasterosteidae|1
+(noun)|Gasterosteidae|family Gasterosteidae|fish family (generic term)
+gasterosteus|1
+(noun)|Gasterosteus|genus gasterosteus|fish genus (generic term)
+gasterosteus aculeatus|1
+(noun)|three-spined stickleback|Gasterosteus aculeatus|stickleback (generic term)|prickleback (generic term)
+gasterosteus pungitius|1
+(noun)|ten-spined stickleback|Gasterosteus pungitius|stickleback (generic term)|prickleback (generic term)
+gaston lachaise|1
+(noun)|Lachaise|Gaston Lachaise|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+gastralgia|1
+(noun)|stomachache|stomach ache|bellyache|ache (generic term)|aching (generic term)
+gastrectomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+gastric|1
+(adj)|stomachic|stomachal|internal organ|viscus (related term)
+gastric antacid|1
+(noun)|antacid|alkalizer|alkaliser|antiacid|agent (generic term)
+gastric artery|1
+(noun)|arteria gastrica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+gastric digestion|1
+(noun)|digestion (generic term)
+gastric juice|1
+(noun)|digestive juice (generic term)|digestive fluid (generic term)
+gastric lavage|1
+(noun)|lavage (generic term)
+gastric mill|1
+(noun)|gizzard|ventriculus|pouch (generic term)|pocket (generic term)
+gastric smear|1
+(noun)|alimentary tract smear (generic term)
+gastric ulcer|1
+(noun)|peptic ulcer (generic term)|peptic ulceration (generic term)
+gastric vein|1
+(noun)|vena gastrica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+gastrin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+gastritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+gastroboletus|1
+(noun)|Gastroboletus|genus Gastroboletus|fungus genus (generic term)
+gastroboletus scabrosus|1
+(noun)|Gastroboletus scabrosus|fungus (generic term)
+gastroboletus turbinatus|1
+(noun)|Gastroboletus turbinatus|fungus (generic term)
+gastrocnemius|1
+(noun)|gastrocnemius muscle|skeletal muscle (generic term)|striated muscle (generic term)
+gastrocnemius muscle|1
+(noun)|gastrocnemius|skeletal muscle (generic term)|striated muscle (generic term)
+gastrocolic omentum|1
+(noun)|greater omentum|caul|omentum (generic term)
+gastrocybe|1
+(noun)|Gastrocybe|genus Gastrocybe|fungus genus (generic term)
+gastrocybe lateritia|1
+(noun)|Gastrocybe lateritia|fungus (generic term)
+gastroduodenal|1
+(adj)|internal organ|viscus (related term)|small intestine (related term)
+gastroenteritis|1
+(noun)|stomach flu|intestinal flu|inflammatory disease (generic term)
+gastroenterologist|1
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+gastroenterology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+gastroenterostomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+gastroepiploic vein|1
+(noun)|gastroomental vein|vena gastroomentalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+gastroesophageal|1
+(adj)|internal organ|viscus (related term)|passage|passageway|muscular structure|musculature|muscle system (related term)
+gastroesophageal reflux|1
+(noun)|esophageal reflux|oesophageal reflux|reflux (generic term)
+gastrogavage|1
+(noun)|forced feeding (generic term)|gavage (generic term)
+gastrointestinal|1
+(adj)|GI|duct|epithelial duct|canal|channel (related term)
+gastrointestinal disorder|1
+(noun)|food poisoning|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+gastrointestinal system|1
+(noun)|digestive system|systema alimentarium|systema digestorium|system (generic term)
+gastrointestinal tract|1
+(noun)|alimentary canal|alimentary tract|digestive tube|digestive tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+gastrolobium|1
+(noun)|poison bush|poison pea|shrub (generic term)|bush (generic term)
+gastromy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+gastromycete|1
+(noun)|gasteromycete|fungus (generic term)
+gastromycetes|1
+(noun)|Gasteromycetes|class Gasteromycetes|Gastromycetes|class Gastromycetes|class (generic term)
+gastronome|1
+(noun)|epicure|gourmet|bon vivant|epicurean|foodie|sensualist (generic term)
+gastronomic|1
+(adj)|gastronomical|cuisine|culinary art (related term)
+gastronomical|1
+(adj)|gastronomic|cuisine|culinary art (related term)
+gastronomy|2
+(noun)|cuisine (generic term)|culinary art (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+gastroomental vein|1
+(noun)|gastroepiploic vein|vena gastroomentalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+gastrophryne|1
+(noun)|Gastrophryne|genus Gastrophryne|amphibian genus (generic term)
+gastrophryne carolinensis|1
+(noun)|eastern narrow-mouthed toad|Gastrophryne carolinensis|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+gastrophryne olivacea|1
+(noun)|western narrow-mouthed toad|Gastrophryne olivacea|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+gastropod|1
+(noun)|univalve|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+gastropoda|1
+(noun)|Gastropoda|class Gastropoda|Gasteropoda|class Gasteropoda|class (generic term)
+gastroscope|1
+(noun)|endoscope (generic term)
+gastroscopy|1
+(noun)|endoscopy (generic term)
+gastrostomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+gastrula|1
+(noun)|embryo (generic term)|conceptus (generic term)|fertilized egg (generic term)
+gastrulation|1
+(noun)|organic process (generic term)|biological process (generic term)
+gasworks|1
+(noun)|workplace (generic term)|work (generic term)
+gat|1
+(noun)|rod|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+gate|7
+(noun)|movable barrier (generic term)
+(noun)|logic gate|computer circuit (generic term)
+(noun)|gross (generic term)|revenue (generic term)|receipts (generic term)
+(noun)|passageway (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|operate (generic term)|control (generic term)
+(verb)|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+gate-crash|1
+(verb)|barge in|crash|intrude (generic term)|irrupt (generic term)
+gateau|1
+(noun)|cake (generic term)
+gatecrasher|1
+(noun)|crasher|unwelcome guest|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+gatefold|1
+(noun)|foldout|page (generic term)
+gatehouse|1
+(noun)|house (generic term)
+gatekeeper|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|doorkeeper|doorman|door guard|hall porter|porter|ostiary|guard (generic term)
+gateleg table|1
+(noun)|drop-leaf table (generic term)
+gatepost|1
+(noun)|post (generic term)
+gates|1
+(noun)|Gates|Bill Gates|William Henry Gates|computer scientist (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+gates of the arctic national park|1
+(noun)|Gates of the Arctic National Park|national park (generic term)
+gateway|1
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+gateway drug|1
+(noun)|drug of abuse (generic term)|street drug (generic term)
+gateway to the west|1
+(noun)|Saint Louis|St. Louis|Gateway to the West|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gather|9
+(noun)|gathering|sewing (generic term)|stitchery (generic term)
+(noun)|gathering|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+(verb)|garner|collect|pull together|gather up (related term)|spread (antonym)
+(verb)|meet|assemble|forgather|foregather|interact (generic term)
+(verb)|accumulate|cumulate|conglomerate|pile up|amass|increase (generic term)
+(verb)|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|pucker|tuck|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+(verb)|assemble|get together
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+gather in|1
+(verb)|take in|roll up (generic term)|furl (generic term)
+gather up|2
+(verb)|pick up|lift up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|collect|pick up|call for|get (generic term)|acquire (generic term)
+gathered|2
+(adj)|deepened|concentrated (similar term)
+(adj)|collected|ungathered (antonym)|uncollected (antonym)
+gathered skirt|1
+(noun)|skirt (generic term)
+gatherer|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|collector|accumulator|holder (generic term)|bearer (generic term)
+gathering|4
+(noun)|assemblage|social group (generic term)
+(noun)|assembly|assemblage|group action (generic term)|disassembly (antonym)
+(noun)|gather|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+(noun)|gather|sewing (generic term)|stitchery (generic term)
+gathering place|1
+(noun)|haunt (generic term)|hangout (generic term)|resort (generic term)|repair (generic term)|stamping ground (generic term)
+gathic|1
+(noun)|Gathic|Iranian (generic term)|Iranian language (generic term)
+gatling|1
+(noun)|Gatling|Richard Jordan Gatling|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+gatling gun|1
+(noun)|Gatling gun|machine gun (generic term)
+gator|1
+(noun)|alligator|crocodilian reptile (generic term)|crocodilian (generic term)
+gatt|1
+(noun)|General Agreement on Tariffs and Trade|GATT|United Nations agency (generic term)|UN agency (generic term)
+gauche|1
+(adj)|graceless|unpolished|inelegant (similar term)
+gaucheness|1
+(noun)|crudeness|crudity|impoliteness (generic term)
+gaucher's disease|1
+(noun)|Gaucher's disease|lipidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+gaucherie|2
+(noun)|rusticity|awkwardness (generic term)|clumsiness (generic term)|gracelessness (generic term)|stiffness (generic term)|urbanity (antonym)
+(noun)|faux pas|gaffe|solecism|slip|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+gaucho|1
+(noun)|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+gaud|1
+(noun)|bangle|bauble|gewgaw|novelty|fallal|trinket|adornment (generic term)
+gaudery|1
+(noun)|pomp|display (generic term)|show (generic term)
+gaudi|1
+(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect (generic term)|designer (generic term)
+gaudi i cornet|1
+(noun)|Gaudi|Antonio Gaudi|Gaudi i Cornet|Antonio Gaudi i Cornet|architect (generic term)|designer (generic term)
+gaudily|1
+(adv)|garishly|tawdrily
+gaudiness|2
+(noun)|flashiness|garishness|loudness|brashness|meretriciousness|tawdriness|glitz|tastelessness (generic term)
+(noun)|garishness|ugliness (generic term)
+gaudy|3
+(adj)|brassy|cheap|flash|flashy|garish|gimcrack|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|flashy|jazzy|showy|sporty|colorful (similar term)|colourful (similar term)
+(noun)|banquet (generic term)|feast (generic term)
+gauffer|3
+(noun)|goffer|goffering iron|gauffering iron|iron (generic term)|smoothing iron (generic term)
+(noun)|goffer|frill (generic term)|flounce (generic term)|ruffle (generic term)|furbelow (generic term)
+(verb)|goffer|wave (generic term)
+gauffering iron|1
+(noun)|goffer|gauffer|goffering iron|iron (generic term)|smoothing iron (generic term)
+gauge|11
+(noun)|gage|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|standard of measurement|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|distance (generic term)|length (generic term)
+(noun)|thickness (generic term)
+(noun)|bore|caliber|calibre|diameter (generic term)|diam (generic term)
+(verb)|estimate|approximate|guess|judge|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|overestimate (related term)|underestimate (related term)
+(verb)|rub (generic term)
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|quantify (generic term)|measure (generic term)
+(verb)|standardize (generic term)|standardise (generic term)
+(verb)|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+gauge boson|1
+(noun)|boson (generic term)
+gauguin|1
+(noun)|Gauguin|Paul Gauguin|painter (generic term)
+gauguinesque|1
+(adj)|Gauguinesque|painter (related term)
+gaul|3
+(noun)|frog|Gaul|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+(noun)|Gaul|Celt (generic term)|Kelt (generic term)
+(noun)|Gaul|Gallia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+gaultheria|1
+(noun)|Gaultheria|genus Gaultheria|dilleniid dicot genus (generic term)
+gaultheria hispidula|1
+(noun)|creeping snowberry|moxie plum|maidenhair berry|Gaultheria hispidula|shrublet (generic term)
+gaultheria procumbens|1
+(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+gaultheria shallon|1
+(noun)|salal|shallon|Gaultheria shallon|shrub (generic term)|bush (generic term)
+gaumless|1
+(adj)|gormless|stupid (similar term)
+gaunt|1
+(adj)|bony|cadaverous|emaciated|haggard|pinched|skeletal|wasted|thin (similar term)|lean (similar term)
+gauntlet|4
+(noun)|gantlet|challenge (generic term)
+(noun)|gantlet|metal glove|glove (generic term)
+(noun)|gantlet|glove (generic term)
+(noun)|gantlet|corporal punishment (generic term)
+gauntleted|1
+(adj)|gloved (similar term)
+gauntness|1
+(noun)|bonyness|boniness|emaciation|maceration|leanness (generic term)|thinness (generic term)|spareness (generic term)
+gauntry|1
+(noun)|gantry|framework (generic term)|frame (generic term)|framing (generic term)
+gaur|1
+(noun)|Bibos gaurus|Asian wild ox (generic term)
+gauri|1
+(noun)|Gauri|Hindu deity (generic term)
+gauss|2
+(noun)|flux density unit (generic term)
+(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician (generic term)
+gaussian|1
+(adj)|Gaussian|mathematician (related term)
+gaussian curve|1
+(noun)|normal curve|bell-shaped curve|Gaussian curve|Gaussian shape|curve (generic term)|curved shape (generic term)
+gaussian distribution|1
+(noun)|normal distribution|Gaussian distribution|distribution (generic term)|statistical distribution (generic term)
+gaussian shape|1
+(noun)|normal curve|bell-shaped curve|Gaussian curve|Gaussian shape|curve (generic term)|curved shape (generic term)
+gaussmeter|1
+(noun)|magnetometer|meter (generic term)
+gautama|1
+(noun)|Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic (generic term)|religious mystic (generic term)
+gautama buddha|1
+(noun)|Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic (generic term)|religious mystic (generic term)
+gautama siddhartha|1
+(noun)|Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic (generic term)|religious mystic (generic term)
+gauze|2
+(noun)|gauze bandage|cotton (generic term)|cotton cloth (generic term)
+(noun)|netting|veiling|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+gauze-like|1
+(adj)|diaphanous|filmy|gauzy|gossamer|see-through|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+gauze bandage|1
+(noun)|gauze|cotton (generic term)|cotton cloth (generic term)
+gauzy|1
+(adj)|diaphanous|filmy|gauze-like|gossamer|see-through|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+gavage|1
+(noun)|forced feeding|feeding (generic term)|alimentation (generic term)
+gavel|1
+(noun)|mallet (generic term)|beetle (generic term)
+gavia|1
+(noun)|Gavia|genus Gavia|bird genus (generic term)
+gavial|1
+(noun)|Gavialis gangeticus|crocodilian reptile (generic term)|crocodilian (generic term)
+gavialidae|1
+(noun)|Gavialidae|family Gavialidae|reptile family (generic term)
+gavialis|1
+(noun)|Gavialis|genus Gavialis|reptile genus (generic term)
+gavialis gangeticus|1
+(noun)|gavial|Gavialis gangeticus|crocodilian reptile (generic term)|crocodilian (generic term)
+gavidae|1
+(noun)|Gavidae|family Gavidae|bird family (generic term)
+gaviiform seabird|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+gaviiformes|1
+(noun)|Gaviiformes|order Gaviiformes|animal order (generic term)
+gavotte|2
+(noun)|social dancing (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+gawain|1
+(noun)|Gawain|Sir Gawain|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+gawk|2
+(noun)|lout|clod|stumblebum|goon|oaf|lubber|lummox|lump|clumsy person (generic term)
+(verb)|goggle|gape|gawp|look (generic term)
+gawker|1
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+gawkiness|1
+(noun)|ungainliness|awkwardness (generic term)|clumsiness (generic term)
+gawky|1
+(adj)|clumsy|clunky|ungainly|unwieldy|awkward (similar term)
+gawp|1
+(verb)|goggle|gape|gawk|look (generic term)
+gay|7
+(adj)|cheery|sunny|cheerful (similar term)
+(adj)|jocund|jolly|jovial|merry|mirthful|joyous (similar term)
+(adj)|indulgent (similar term)
+(adj)|brave|braw|colorful (similar term)|colourful (similar term)
+(adj)|festal|festive|merry|joyous (similar term)
+(adj)|queer|homophile|homosexual (similar term)
+(noun)|homosexual|homophile|homo|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+gay-feather|1
+(noun)|blazing star|button snakeroot|gayfeather|snakeroot|wildflower (generic term)|wild flower (generic term)
+gay-lussac|1
+(noun)|Gay-Lussac|Joseph Louis Gay-Lussac|chemist (generic term)|physicist (generic term)
+gay-lussac's law|1
+(noun)|Gay-Lussac's law|Charles's law|law of volumes|law (generic term)|law of nature (generic term)
+gay lib|1
+(noun)|gay liberation movement|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+gay liberation movement|1
+(noun)|gay lib|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+gay man|1
+(noun)|shirtlifter|homosexual (generic term)|homophile (generic term)|homo (generic term)|gay (generic term)
+gay woman|1
+(noun)|lesbian|tribade|homosexual (generic term)|homophile (generic term)|homo (generic term)|gay (generic term)
+gayal|1
+(noun)|mithan|Bibos frontalis|Asian wild ox (generic term)
+gayfeather|1
+(noun)|blazing star|button snakeroot|gay-feather|snakeroot|wildflower (generic term)|wild flower (generic term)
+gaylussacia|1
+(noun)|Gaylussacia|genus Gaylussacia|dilleniid dicot genus (generic term)
+gaylussacia baccata|1
+(noun)|black huckleberry|Gaylussacia baccata|huckleberry (generic term)
+gaylussacia brachycera|1
+(noun)|box huckleberry|Gaylussacia brachycera|huckleberry (generic term)
+gaylussacia frondosa|1
+(noun)|dangleberry|dangle-berry|Gaylussacia frondosa|huckleberry (generic term)
+gayly|1
+(adv)|happily|merrily|mirthfully|blithely|jubilantly|with happiness|unhappily (antonym)
+gayness|1
+(noun)|homosexuality|homosexualism|homoeroticism|queerness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+gaywings|1
+(noun)|flowering wintergreen|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort (generic term)
+gaza|1
+(noun)|Gaza Strip|Gaza|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+gaza strip|1
+(noun)|Gaza Strip|Gaza|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+gazania|1
+(noun)|flower (generic term)
+gazania rigens|1
+(noun)|treasure flower|Gazania rigens|gazania (generic term)
+gaze|2
+(noun)|regard|stare (generic term)
+(verb)|stare|look (generic term)
+gazebo|1
+(noun)|summerhouse|building (generic term)|edifice (generic term)
+gazella|1
+(noun)|Gazella|genus Gazella|mammal genus (generic term)
+gazella subgutturosa|1
+(noun)|Gazella subgutturosa|gazelle (generic term)
+gazella thomsoni|1
+(noun)|Thomson's gazelle|Gazella thomsoni|gazelle (generic term)
+gazelle|1
+(noun)|antelope (generic term)
+gazelle hound|1
+(noun)|Saluki|hound (generic term)|hound dog (generic term)
+gazette|2
+(noun)|newspaper (generic term)|paper (generic term)
+(verb)|print (generic term)|publish (generic term)
+gazetteer|2
+(noun)|journalist (generic term)
+(noun)|dictionary (generic term)|lexicon (generic term)
+gazpacho|1
+(noun)|soup (generic term)
+gazump|2
+(verb)|overcharge|soak|surcharge|fleece|plume|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|cheat (generic term)|rip off (generic term)|chisel (generic term)
+gb|4
+(noun)|sarin|GB|organophosphate nerve agent (generic term)
+(noun)|gilbert|Gb|Gi|magnetomotive force unit (generic term)
+(noun)|gigabyte|G|GB|computer memory unit (generic term)
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+gbu-28|1
+(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb (generic term)|LGB (generic term)
+gc|1
+(noun)|gigahertz|GHz|gigacycle per second|gigacycle|Gc|rate (generic term)
+gca|1
+(noun)|ground-controlled approach|GCA|aircraft landing (generic term)|airplane landing (generic term)
+gd|2
+(noun)|soman|GD|organophosphate nerve agent (generic term)
+(noun)|gadolinium|Gd|atomic number 64|metallic element (generic term)|metal (generic term)
+gdansk|1
+(noun)|Gdansk|Danzig|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gdp|1
+(noun)|gross domestic product|GDP|value (generic term)
+ge|2
+(noun)|germanium|Ge|atomic number 32|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+(noun)|Gaea|Gaia|Ge|Greek deity (generic term)
+gean|1
+(noun)|mazzard|mazzard cherry|sweet cherry (generic term)|Prunus avium (generic term)
+gear|5
+(noun)|gear wheel|geared wheel|cogwheel|wheel (generic term)
+(noun)|gearing|geartrain|power train|train|wheelwork (generic term)
+(noun)|gear mechanism|mechanism (generic term)
+(noun)|paraphernalia|appurtenance|equipment (generic term)
+(verb)|pitch|adapt (generic term)|accommodate (generic term)
+gear case|1
+(noun)|gearbox|shell (generic term)|case (generic term)|casing (generic term)
+gear lever|1
+(noun)|gearshift|gearstick|shifter|mechanical device (generic term)
+gear mechanism|1
+(noun)|gear|mechanism (generic term)
+gear up|1
+(verb)|fix|prepare|set up|ready|set|change (generic term)|alter (generic term)|modify (generic term)
+gear wheel|1
+(noun)|gear|geared wheel|cogwheel|wheel (generic term)
+gearbox|1
+(noun)|gear case|shell (generic term)|case (generic term)|casing (generic term)
+geared|1
+(adj)|back-geared (similar term)|double-geared (similar term)|double-geared (similar term)|engaged (similar term)|meshed (similar term)|intermeshed (similar term)|in gear (similar term)|ungeared (antonym)
+geared wheel|1
+(noun)|gear|gear wheel|cogwheel|wheel (generic term)
+gearing|1
+(noun)|gear|geartrain|power train|train|wheelwork (generic term)
+gearset|1
+(noun)|gear (generic term)|gear mechanism (generic term)
+gearshift|1
+(noun)|gearstick|shifter|gear lever|mechanical device (generic term)
+gearstick|1
+(noun)|gearshift|shifter|gear lever|mechanical device (generic term)
+geartrain|1
+(noun)|gearing|gear|power train|train|wheelwork (generic term)
+geastraceae|1
+(noun)|Geastraceae|family Geastraceae|fungus family (generic term)
+geastrum|1
+(noun)|Geastrum|genus Geastrum|fungus genus (generic term)
+geastrum coronatum|1
+(noun)|Geastrum coronatum|earthstar (generic term)
+geb|1
+(noun)|Geb|Keb|Egyptian deity (generic term)
+gebang palm|1
+(noun)|Corypha utan|Corypha gebanga|fan palm (generic term)
+gebhard leberecht von blucher|1
+(noun)|Blucher|von Blucher|G. L. von Blucher|Gebhard Leberecht von Blucher|general (generic term)|full general (generic term)
+gecko|1
+(noun)|lizard (generic term)
+gee|3
+(noun)|g|g-force|force unit (generic term)
+(verb)|turn (generic term)
+(verb)|exclaim (generic term)|cry (generic term)|cry out (generic term)|outcry (generic term)|call out (generic term)|shout (generic term)
+gee-gee|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+geebung|1
+(noun)|shrub (generic term)|bush (generic term)
+geek|2
+(noun)|performer (generic term)|performing artist (generic term)
+(noun)|eccentric|eccentric person|flake|oddball|anomaly (generic term)|unusual person (generic term)
+geert geerts|1
+(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|humanist (generic term)
+geezer|1
+(noun)|bloke|man (generic term)|adult male (generic term)
+geezerhood|1
+(noun)|old age|years|age|eld|time of life (generic term)
+gefilte fish|1
+(noun)|fish ball|dish (generic term)
+gegenschein|1
+(noun)|counterglow|light (generic term)|visible light (generic term)|visible radiation (generic term)
+geglossaceae|1
+(noun)|Geglossaceae|ascomycete (generic term)|ascomycetous fungus (generic term)
+gehenna|1
+(noun)|Gehenna|Tartarus|Hell (generic term)|perdition (generic term)|Inferno (generic term)|infernal region (generic term)|nether region (generic term)|pit (generic term)
+gehrig|1
+(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer (generic term)|baseball player (generic term)
+geiger|1
+(noun)|Geiger|Hans Geiger|physicist (generic term)
+geiger-muller counter|1
+(noun)|Geiger counter|Geiger-Muller counter|counter tube (generic term)
+geiger-muller tube|1
+(noun)|Geiger tube|Geiger-Muller tube|ionization chamber (generic term)|ionization tube (generic term)
+geiger counter|1
+(noun)|Geiger counter|Geiger-Muller counter|counter tube (generic term)
+geiger tube|1
+(noun)|Geiger tube|Geiger-Muller tube|ionization chamber (generic term)|ionization tube (generic term)
+geisel|1
+(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer (generic term)|author (generic term)
+geisha|1
+(noun)|geisha girl|woman (generic term)|adult female (generic term)|Japanese (generic term)|Nipponese (generic term)
+geisha girl|1
+(noun)|geisha|woman (generic term)|adult female (generic term)|Japanese (generic term)|Nipponese (generic term)
+gekkonidae|1
+(noun)|Gekkonidae|family Gekkonidae|reptile family (generic term)
+gel|4
+(noun)|colloidal gel|colloid (generic term)
+(noun)|gelatin|membrane (generic term)
+(verb)|change (generic term)
+(verb)|mousse|groom (generic term)|neaten (generic term)
+gelatin|3
+(noun)|gelatine|scleroprotein (generic term)|albuminoid (generic term)
+(noun)|jelly|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+(noun)|gel|membrane (generic term)
+gelatin dessert|1
+(noun)|gelatin (generic term)|jelly (generic term)
+gelatine|1
+(noun)|gelatin|scleroprotein (generic term)|albuminoid (generic term)
+gelatinise|2
+(verb)|gelatinize|change (generic term)
+(verb)|gelatinize|change (generic term)|alter (generic term)|modify (generic term)
+gelatinize|3
+(verb)|coat (generic term)|surface (generic term)
+(verb)|gelatinise|change (generic term)
+(verb)|gelatinise|change (generic term)|alter (generic term)|modify (generic term)
+gelatinlike|1
+(adj)|gelatinous|jellylike|thick (similar term)
+gelatinous|1
+(adj)|gelatinlike|jellylike|thick (similar term)
+gelatinousness|1
+(noun)|glutinosity|glutinousness|viscosity (generic term)|viscousness (generic term)
+geld|1
+(verb)|cut|emasculate (generic term)|castrate (generic term)|demasculinize (generic term)|demasculinise (generic term)
+gelded|1
+(adj)|cut|emasculated|castrated (similar term)|unsexed (similar term)
+gelding|1
+(noun)|male horse (generic term)
+gelechia|1
+(noun)|Gelechia|genus Gelechia|arthropod genus (generic term)
+gelechia gossypiella|2
+(noun)|pink bollworm|Gelechia gossypiella|bollworm (generic term)
+(noun)|Gelechia gossypiella|gelechiid (generic term)|gelechiid moth (generic term)
+gelechiid|1
+(noun)|gelechiid moth|moth (generic term)
+gelechiid moth|1
+(noun)|gelechiid|moth (generic term)
+gelechiidae|1
+(noun)|Gelechiidae|family Gelechiidae|arthropod family (generic term)
+gelid|1
+(adj)|arctic|frigid|glacial|icy|polar|cold (similar term)
+gelidity|1
+(noun)|chill|iciness|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+gelignite|1
+(noun)|gelly|dynamite (generic term)
+gell-mann|1
+(noun)|Gell-Mann|Murray Gell-Mann|nuclear physicist (generic term)
+gelly|1
+(noun)|gelignite|dynamite (generic term)
+gelsemium|1
+(noun)|Gelsemium|genus Gelsemium|dicot genus (generic term)|magnoliopsid genus (generic term)
+gelsemium sempervirens|1
+(noun)|yellow jasmine|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine (generic term)
+gelt|1
+(noun)|boodle|bread|cabbage|clams|dinero|dough|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+gem|5
+(noun)|gemstone|stone|crystal (generic term)
+(noun)|treasure|art (generic term)|fine art (generic term)
+(noun)|jewel|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|muffin|quick bread (generic term)
+(noun)|jewel|precious stone|jewelry (generic term)|jewellery (generic term)
+gem clip|1
+(noun)|paper clip|paperclip|clip (generic term)
+gem cutter|1
+(noun)|cutter (generic term)
+gem state|1
+(noun)|Idaho|Gem State|ID|American state (generic term)
+gemara|1
+(noun)|Gemara|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+gemfibrozil|1
+(noun)|Lopid|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+geminate|5
+(noun)|consonant (generic term)
+(verb)|reduplicate|duplicate (generic term)|reduplicate (generic term)|double (generic term)|repeat (generic term)|replicate (generic term)
+(verb)|pair|occur (generic term)
+(verb)|pair|arrange (generic term)|set up (generic term)
+(verb)|double (generic term)|duplicate (generic term)
+gemination|2
+(noun)|repetition (generic term)
+(noun)|duplication|copying (generic term)
+gemini|3
+(noun)|Gemini|Twin|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Gemini|constellation (generic term)
+(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+gemini program|1
+(noun)|Gemini program|space program (generic term)
+gemini the twins|1
+(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+gemma|1
+(noun)|reproductive structure (generic term)
+gemmation|1
+(noun)|pullulation|asexual reproduction (generic term)|agamogenesis (generic term)
+gemmed|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|jeweled|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+gemmiferous|1
+(adj)|reproductive structure (related term)
+gemonil|1
+(noun)|metharbital|Gemonil|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+gempylid|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+gempylidae|1
+(noun)|Gempylidae|family Gempylidae|fish family (generic term)
+gempylus|1
+(noun)|Gempylus|genus Gempylus|fish genus (generic term)
+gempylus serpens|1
+(noun)|snake mackerel|Gempylus serpens|gempylid (generic term)
+gemsbok|1
+(noun)|gemsbuck|Oryx gazella|oryx (generic term)|pasang (generic term)
+gemsbuck|1
+(noun)|gemsbok|Oryx gazella|oryx (generic term)|pasang (generic term)
+gemstone|1
+(noun)|gem|stone|crystal (generic term)
+gen|1
+(noun)|information (generic term)|info (generic term)
+gen x|1
+(noun)|generation X|gen X|generation (generic term)
+gendarme|1
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+gendarmerie|1
+(noun)|gendarmery|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+gendarmery|1
+(noun)|gendarmerie|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+gender|2
+(noun)|grammatical gender|grammatical category (generic term)|syntactic category (generic term)
+(noun)|sex|sexuality|physiological property (generic term)
+gender agreement|1
+(noun)|agreement (generic term)|concord (generic term)
+gender identity|1
+(noun)|identity (generic term)|personal identity (generic term)|individuality (generic term)
+gender role|1
+(noun)|role (generic term)
+gene|1
+(noun)|cistron|factor|sequence (generic term)
+gene-splicing|1
+(noun)|genetic engineering|recombinant DNA technology|biotechnology (generic term)
+gene chip|1
+(noun)|DNA chip|chip (generic term)|microchip (generic term)|micro chip (generic term)|silicon chip (generic term)
+gene delivery vector|1
+(noun)|transducing vector|vector (generic term)|transmitter (generic term)
+gene expression|1
+(noun)|organic phenomenon (generic term)
+gene kelly|1
+(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+gene linkage|1
+(noun)|linkage|inheritance (generic term)|hereditary pattern (generic term)
+gene mutation|1
+(noun)|point mutation|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+gene sarazen|1
+(noun)|Sarazen|Gene Sarazen|golfer (generic term)|golf player (generic term)|linksman (generic term)
+gene tunney|1
+(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter (generic term)|gladiator (generic term)
+genealogic|1
+(adj)|genealogical|kin|kin group|kinship group|kindred|clan|tribe (related term)
+genealogical|1
+(adj)|genealogic|kin|kin group|kinship group|kindred|clan|tribe (related term)
+genealogist|1
+(noun)|expert (generic term)
+genealogy|2
+(noun)|family tree|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+general|11
+(adj)|broad (similar term)|unspecific (similar term)|general-purpose (similar term)|all-purpose (similar term)|generic (similar term)|gross (similar term)|miscellaneous (similar term)|overall (similar term)|pandemic (similar term)|universal (similar term)|widespread (similar term)|comprehensive (related term)|imprecise (related term)|indiscriminate (related term)|unspecialized (related term)|unspecialised (related term)|specific (antonym)
+(adj)|undiversified (similar term)
+(adj)|national (similar term)
+(adj)|common (similar term)
+(adj)|generalized (similar term)|generalised (similar term)|systemic (similar term)|local (antonym)
+(adj)|imprecise (similar term)
+(adj)|cosmopolitan|ecumenical|oecumenical|universal|worldwide|world-wide|comprehensive (similar term)
+(noun)|full general|general officer (generic term)
+(noun)|superior general|head (generic term)|chief (generic term)|top dog (generic term)
+(noun)|fact (generic term)|particular (antonym)|specific (antonym)
+(verb)|command (generic term)
+general-purpose|1
+(adj)|all-purpose|general (similar term)
+general-purpose bomb|1
+(noun)|GP bomb|bomb (generic term)
+general agent|2
+(noun)|universal agent|agent (generic term)|special agent (antonym)
+(noun)|insurance broker|insurance agent|underwriter|agent (generic term)|factor (generic term)|broker (generic term)
+general agreement on tariffs and trade|1
+(noun)|General Agreement on Tariffs and Trade|GATT|United Nations agency (generic term)|UN agency (generic term)
+general anaesthesia|1
+(noun)|general anesthesia|anesthesia (generic term)|anaesthesia (generic term)
+general anaesthetic|1
+(noun)|general anesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+general anatomy|1
+(noun)|anatomy|morphology (generic term)
+general anesthesia|1
+(noun)|general anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+general anesthetic|1
+(noun)|general anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+general assembly|2
+(noun)|General Assembly|assembly (generic term)
+(noun)|legislature|legislative assembly|legislative|law-makers|assembly (generic term)
+general baptist|1
+(noun)|Arminian Baptist|General Baptist|Baptist denomination (generic term)
+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 (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+general custer|1
+(noun)|Custer|George Armstrong Custer|General Custer|general (generic term)|full general (generic term)
+general damages|1
+(noun)|actual damages|compensatory damages|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+general de gaulle|1
+(noun)|de Gaulle|General de Gaulle|Charles de Gaulle|General Charles de Gaulle|Charles Andre Joseph Marie de Gaulle|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+general delivery|1
+(noun)|poste restante|unit (generic term)|social unit (generic term)
+general election|1
+(noun)|election (generic term)
+general franco|1
+(noun)|Franco|Francisco Franco|El Caudillo|General Franco|general (generic term)|full general (generic term)|dictator (generic term)|potentate (generic term)
+general headquarters|1
+(noun)|command post|GHQ|headquarters (generic term)|HQ (generic term)|military headquarters (generic term)
+general knowledge|1
+(noun)|public knowledge|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+general ledger|1
+(noun)|ledger (generic term)|leger (generic term)|account book (generic term)|book of account (generic term)|book (generic term)
+general lien|1
+(noun)|lien (generic term)
+general manager|1
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+general medicine|1
+(noun)|internal medicine|medicine (generic term)|medical specialty (generic term)
+general officer|1
+(noun)|commissioned military officer (generic term)
+general practitioner|1
+(noun)|GP|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+general relativity|1
+(noun)|general theory of relativity|general relativity theory|Einstein's general theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+general relativity theory|1
+(noun)|general relativity|general theory of relativity|Einstein's general theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+general security services|1
+(noun)|Shin Bet|General Security Services|international intelligence agency (generic term)
+general services administration|1
+(noun)|General Services Administration|GSA|independent agency (generic term)
+general staff|1
+(noun)|staff (generic term)
+general store|1
+(noun)|country store|trading post|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+general theory of relativity|1
+(noun)|general relativity|general relativity theory|Einstein's general theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+general verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)|special verdict (antonym)
+generalcy|1
+(noun)|generalship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+generalisation|4
+(noun)|generalization|generality|idea (generic term)|thought (generic term)
+(noun)|abstraction|generalization|theorization (generic term)|theorisation (generic term)
+(noun)|generalization|induction|inductive reasoning|colligation (generic term)
+(noun)|generalization|stimulus generalization|stimulus generalisation|transfer (generic term)|transfer of training (generic term)|carry-over (generic term)
+generalise|4
+(verb)|generalize|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)|specify (antonym)
+(verb)|generalize|extrapolate|infer|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|popularize|popularise|vulgarize|vulgarise|generalize|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|generalize|spread (generic term)|distribute (generic term)
+generalised|2
+(adj)|generalized|unspecialized (similar term)|unspecialised (similar term)
+(adj)|generalized|general (similar term)
+generalissimo|1
+(noun)|commander in chief|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+generalist|1
+(noun)|Renaissance man|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)|specialist (antonym)
+generality|2
+(noun)|generalization|generalisation|idea (generic term)|thought (generic term)
+(noun)|quality (generic term)|particularity (antonym)
+generalization|4
+(noun)|abstraction|generalisation|theorization (generic term)|theorisation (generic term)
+(noun)|generalisation|induction|inductive reasoning|colligation (generic term)
+(noun)|generalisation|generality|idea (generic term)|thought (generic term)
+(noun)|generalisation|stimulus generalization|stimulus generalisation|transfer (generic term)|transfer of training (generic term)|carry-over (generic term)
+generalize|4
+(verb)|generalise|extrapolate|infer|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|generalise|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)|specify (antonym)
+(verb)|popularize|popularise|vulgarize|vulgarise|generalise|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|generalise|spread (generic term)|distribute (generic term)
+generalized|2
+(adj)|generalised|unspecialized (similar term)|unspecialised (similar term)
+(adj)|generalised|general (similar term)
+generalized anxiety disorder|1
+(noun)|GAD|anxiety reaction|anxiety disorder (generic term)
+generalized epilepsy|1
+(noun)|grand mal epilepsy|epilepsy (generic term)
+generalized seizure|1
+(noun)|grand mal|epilepsia major|epileptic seizure (generic term)
+generally|3
+(adv)|by and large|more often than not|mostly
+(adv)|in general|in the main|specifically (antonym)
+(adv)|broadly|loosely|broadly speaking|narrowly (antonym)
+generally accepted accounting practices|1
+(noun)|GAAP|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+generalship|2
+(noun)|leadership (generic term)
+(noun)|generalcy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+generate|4
+(verb)|bring forth|make (generic term)|create (generic term)
+(verb)|render|yield|return|give|produce (generic term)|make (generic term)|create (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|beget|get|engender|father|mother|sire|bring forth|make (generic term)|create (generic term)
+generation|7
+(noun)|coevals|contemporaries|people (generic term)
+(noun)|biological group (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|phase (generic term)|stage (generic term)
+(noun)|genesis|beginning (generic term)
+(noun)|production (generic term)
+(noun)|multiplication|propagation|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+generation gap|1
+(noun)|gap (generic term)
+generation x|1
+(noun)|generation X|gen X|generation (generic term)
+generational|1
+(adj)|people (related term)
+generative|2
+(adj)|productive|consumptive (antonym)
+(adj)|procreative|reproductive|fruitful (similar term)
+generative grammar|1
+(noun)|syntax (generic term)
+generator|4
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|engine (generic term)
+(noun)|source|author|maker (generic term)|shaper (generic term)
+(noun)|electronic device (generic term)
+generic|5
+(adj)|taxonomic group|taxonomic category|taxon (related term)
+(adj)|nonproprietary (similar term)
+(adj)|general (similar term)
+(noun)|generic wine|wine (generic term)|vino (generic term)|varietal wine (antonym)|varietal (antonym)
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+generic drug|1
+(noun)|generic (generic term)|drug (generic term)|brand-name drug (antonym)
+generic noun|1
+(noun)|noun (generic term)
+generic wine|1
+(noun)|generic|wine (generic term)|vino (generic term)|varietal wine (antonym)|varietal (antonym)
+generosity|2
+(noun)|generousness|kindness (generic term)|stinginess (antonym)
+(noun)|unselfishness|sharing (generic term)|share-out (generic term)
+generous|3
+(adj)|benevolent (similar term)|freehearted (similar term)|big (similar term)|bighearted (similar term)|bounteous (similar term)|bountiful (similar term)|freehanded (similar term)|handsome (similar term)|giving (similar term)|liberal (similar term)|openhanded (similar term)|lavish (similar term)|munificent (similar term)|overgenerous (similar term)|prodigal (similar term)|too-generous (similar term)|unsparing (similar term)|unstinted (similar term)|unstinting (similar term)|unselfish (similar term)|charitable (related term)|generous (related term)|unselfish (related term)|stingy (antonym)
+(adj)|big (similar term)|large (similar term)|magnanimous (similar term)|ungrudging (similar term)|generous (related term)|ungenerous (antonym)
+(adj)|ample (similar term)
+generously|1
+(adv)|liberally|munificently
+generousness|1
+(noun)|generosity|kindness (generic term)|stinginess (antonym)
+genesis|2
+(noun)|generation|beginning (generic term)
+(noun)|Genesis|Book of Genesis|book (generic term)
+genet|3
+(noun)|Genet|Edmund Charles Edouard Genet|Citizen Genet|diplomat (generic term)|diplomatist (generic term)
+(noun)|Genet|Jean Genet|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+(noun)|Genetta genetta|viverrine (generic term)|viverrine mammal (generic term)
+genetic|4
+(adj)|familial|hereditary|inherited|transmitted|transmissible|inheritable (similar term)|heritable (similar term)
+(adj)|genic|genetical|sequence (related term)
+(adj)|beginning (related term)
+(adj)|genetical|biology|biological science (related term)
+genetic abnormality|1
+(noun)|genetic disease|genetic disorder|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+genetic code|1
+(noun)|ordering (generic term)|order (generic term)|ordination (generic term)
+genetic constitution|1
+(noun)|genotype|constitution (generic term)|composition (generic term)|makeup (generic term)
+genetic counseling|1
+(noun)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+genetic defect|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+genetic disease|1
+(noun)|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+genetic disorder|1
+(noun)|genetic disease|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+genetic endowment|1
+(noun)|heredity|property (generic term)
+genetic engineering|1
+(noun)|gene-splicing|recombinant DNA technology|biotechnology (generic term)
+genetic fingerprint|1
+(noun)|DNA fingerprint|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+genetic fingerprinting|1
+(noun)|genetic profiling|procedure (generic term)|process (generic term)
+genetic map|1
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+genetic marker|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+genetic mutation|1
+(noun)|mutation|chromosomal mutation|change (generic term)|alteration (generic term)|modification (generic term)
+genetic profiling|1
+(noun)|genetic fingerprinting|procedure (generic term)|process (generic term)
+genetic psychology|1
+(noun)|developmental psychology|child psychology|psychology (generic term)|psychological science (generic term)
+genetic science|1
+(noun)|genetics|biology (generic term)|biological science (generic term)
+genetic screening|1
+(noun)|screening (generic term)
+genetical|2
+(adj)|genic|genetic|sequence (related term)
+(adj)|genetic|biology|biological science (related term)
+geneticism|1
+(noun)|belief (generic term)
+geneticist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+genetics|1
+(noun)|genetic science|biology (generic term)|biological science (generic term)
+genetta|1
+(noun)|Genetta|genus Genetta|mammal genus (generic term)
+genetta genetta|1
+(noun)|genet|Genetta genetta|viverrine (generic term)|viverrine mammal (generic term)
+geneva|2
+(noun)|Geneva|Geneve|Genf|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Holland gin|Hollands|gin (generic term)
+geneva convention|1
+(noun)|Geneva Convention|convention (generic term)
+geneva gown|1
+(noun)|Geneva gown|academic gown (generic term)|academic robe (generic term)|judge's robe (generic term)
+genevan|2
+(noun)|Genevan|Swiss (generic term)|Swiss people (generic term)
+(noun)|Calvinist|Genevan|necessitarian (generic term)
+geneve|1
+(noun)|Geneva|Geneve|Genf|city (generic term)|metropolis (generic term)|urban center (generic term)
+genf|1
+(noun)|Geneva|Geneve|Genf|city (generic term)|metropolis (generic term)|urban center (generic term)
+genghis khan|1
+(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Temujin|emperor (generic term)
+genial|3
+(adj)|affable|amiable|cordial|friendly (similar term)
+(adj)|mental|body part (related term)|feature|lineament (related term)
+(adj)|kind|hospitable (similar term)
+geniality|1
+(noun)|affability|affableness|amiability|amiableness|bonhomie|friendliness (generic term)
+genially|1
+(adv)|affably|amiably
+genic|1
+(adj)|genetic|genetical|sequence (related term)
+genicular vein|1
+(noun)|vena genus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+geniculate|1
+(adj)|crooked (similar term)
+geniculate body|1
+(noun)|neural structure (generic term)
+genie|1
+(noun)|jinni|jinnee|djinni|djinny|spirit (generic term)|disembodied spirit (generic term)
+genip|2
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+(noun)|Spanish lime|edible fruit (generic term)
+genipa|1
+(noun)|fruit tree (generic term)
+genipa americana|1
+(noun)|genipap fruit|jagua|marmalade box|Genipa Americana|genipa (generic term)
+genipap|1
+(noun)|genipap fruit|edible fruit (generic term)
+genipap fruit|2
+(noun)|jagua|marmalade box|Genipa Americana|genipa (generic term)
+(noun)|genipap|edible fruit (generic term)
+genista|1
+(noun)|Genista|genus Genista|rosid dicot genus (generic term)
+genista anglica|1
+(noun)|broom tree|needle furze|petty whin|Genista anglica|broom (generic term)
+genista hispanica|1
+(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom (generic term)
+genista raetam|1
+(noun)|retem|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+genista tinctoria|1
+(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+genital|1
+(adj)|venereal|reproductive organ|sex organ (related term)
+genital herpes|1
+(noun)|herpes genitalis|herpes simplex (generic term)|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+genital organ|1
+(noun)|genitalia|genitals|private parts|privates|crotch|reproductive organ (generic term)|sex organ (generic term)
+genital personality|1
+(noun)|personality (generic term)
+genital phase|1
+(noun)|genital stage|phase (generic term)|stage (generic term)
+genital stage|1
+(noun)|genital phase|phase (generic term)|stage (generic term)
+genital system|1
+(noun)|reproductive system|system (generic term)
+genital torture|1
+(noun)|torture (generic term)|torturing (generic term)
+genital wart|1
+(noun)|venereal wart|condyloma acuminatum|verruca acuminata|wart (generic term)|verruca (generic term)
+genitalia|1
+(noun)|genital organ|genitals|private parts|privates|crotch|reproductive organ (generic term)|sex organ (generic term)
+genitals|1
+(noun)|genitalia|genital organ|private parts|privates|crotch|reproductive organ (generic term)|sex organ (generic term)
+genitive|2
+(adj)|possessive|oblique|oblique case (related term)
+(noun)|genitive case|possessive|possessive case|oblique (generic term)|oblique case (generic term)
+genitive case|1
+(noun)|genitive|possessive|possessive case|oblique (generic term)|oblique case (generic term)
+genitor|1
+(noun)|progenitor (generic term)|primogenitor (generic term)
+genitourinary|1
+(adj)|GU|reproductive organ|sex organ (related term)|internal organ|viscus (related term)
+genitourinary apparatus|1
+(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|systema urogenitale|apparatus urogenitalis|system (generic term)
+genitourinary system|1
+(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system (generic term)
+genius|5
+(noun)|mastermind|brain|brainiac|Einstein|intellectual (generic term)|intellect (generic term)
+(noun)|brilliance|intelligence (generic term)
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(noun)|wizardry|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|flair|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+genius loci|2
+(noun)|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|guardian spirit (generic term)|guardian angel (generic term)
+genlisea|1
+(noun)|carnivorous plant (generic term)
+genoa|1
+(noun)|Genoa|Genova|city (generic term)|metropolis (generic term)|urban center (generic term)
+genocide|1
+(noun)|race murder|racial extermination|killing (generic term)|kill (generic term)|putting to death (generic term)
+genoese|2
+(adj)|Genoese|Genovese|city|metropolis|urban center (related term)
+(noun)|Genoese|Italian (generic term)
+genoise|1
+(noun)|cake (generic term)
+genome|1
+(noun)|ordering (generic term)|order (generic term)|ordination (generic term)
+genomics|1
+(noun)|genetics (generic term)|genetic science (generic term)
+genotype|2
+(noun)|biological group (generic term)
+(noun)|genetic constitution|constitution (generic term)|composition (generic term)|makeup (generic term)
+genotypic|1
+(adj)|genotypical|constitution|composition|makeup (related term)
+genotypical|1
+(adj)|genotypic|constitution|composition|makeup (related term)
+genova|1
+(noun)|Genoa|Genova|city (generic term)|metropolis (generic term)|urban center (generic term)
+genovese|1
+(adj)|Genoese|Genovese|city|metropolis|urban center (related term)
+genre|4
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|writing style|literary genre|expressive style (generic term)|style (generic term)
+(noun)|music genre|musical genre|musical style|expressive style (generic term)|style (generic term)|music (generic term)
+(noun)|art (generic term)|fine art (generic term)
+genre painter|1
+(noun)|painter (generic term)
+genre painting|1
+(noun)|genre (generic term)
+gens|1
+(noun)|name|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+genseric|1
+(noun)|Genseric|Gaiseric|king (generic term)|male monarch (generic term)|Rex (generic term)
+gent|3
+(noun)|gentleman (generic term)
+(noun)|chap|fellow|feller|lad|fella|blighter|cuss|male (generic term)|male person (generic term)
+(noun)|Gent|Gand|Ghent|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gentamicin|1
+(noun)|Garamycin|antibiotic (generic term)|antibiotic drug (generic term)
+genteel|1
+(adj)|civilized|civilised|cultivated|cultured|polite|refined (similar term)
+genteelness|1
+(noun)|breeding|gentility|elegance (generic term)
+gentian|1
+(noun)|flower (generic term)
+gentian family|1
+(noun)|Gentianaceae|family Gentianaceae|dicot family (generic term)|magnoliopsid family (generic term)
+gentian violet|1
+(noun)|crystal violet|stain (generic term)|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+gentiana|1
+(noun)|Gentiana|genus Gentiana|dicot genus (generic term)|magnoliopsid genus (generic term)
+gentiana acaulis|1
+(noun)|gentianella|Gentiana acaulis|gentian (generic term)
+gentiana andrewsii|1
+(noun)|closed gentian|blind gentian|bottle gentian|Gentiana andrewsii|gentian (generic term)
+gentiana calycosa|1
+(noun)|explorer's gentian|Gentiana calycosa|gentian (generic term)
+gentiana clausa|1
+(noun)|closed gentian|blind gentian|Gentiana clausa|gentian (generic term)
+gentiana crinita|1
+(noun)|Gentianopsis crinita|Gentiana crinita|fringed gentian (generic term)
+gentiana detonsa|1
+(noun)|Gentianopsis detonsa|Gentiana detonsa|fringed gentian (generic term)
+gentiana holopetala|1
+(noun)|tufted gentian|Gentianopsis holopetala|Gentiana holopetala|fringed gentian (generic term)
+gentiana lutea|1
+(noun)|great yellow gentian|Gentiana lutea|gentian (generic term)
+gentiana pneumonanthe|1
+(noun)|marsh gentian|calathian violet|Gentiana pneumonanthe|gentian (generic term)
+gentiana procera|1
+(noun)|Gentianopsid procera|Gentiana procera|fringed gentian (generic term)
+gentiana quinquefolia|1
+(noun)|agueweed|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+gentiana saponaria|1
+(noun)|soapwort gentian|Gentiana saponaria|gentian (generic term)
+gentiana thermalis|1
+(noun)|Gentianopsis thermalis|Gentiana thermalis|fringed gentian (generic term)
+gentiana villosa|1
+(noun)|striped gentian|Gentiana villosa|gentian (generic term)
+gentianaceae|1
+(noun)|Gentianaceae|family Gentianaceae|gentian family|dicot family (generic term)|magnoliopsid family (generic term)
+gentianales|1
+(noun)|Gentianales|order Gentianales|plant order (generic term)
+gentianella|2
+(noun)|Gentianella|genus Gentianella|dicot genus (generic term)|magnoliopsid genus (generic term)
+(noun)|Gentiana acaulis|gentian (generic term)
+gentianella amarella|1
+(noun)|felwort|gentian (generic term)
+gentianella quinquefolia|1
+(noun)|agueweed|ague weed|five-flowered gentian|stiff gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+gentianopsid procera|1
+(noun)|Gentianopsid procera|Gentiana procera|fringed gentian (generic term)
+gentianopsis|1
+(noun)|Gentianopsis|genus Gentianopsis|dicot genus (generic term)|magnoliopsid genus (generic term)
+gentianopsis crinita|1
+(noun)|Gentianopsis crinita|Gentiana crinita|fringed gentian (generic term)
+gentianopsis detonsa|1
+(noun)|Gentianopsis detonsa|Gentiana detonsa|fringed gentian (generic term)
+gentianopsis holopetala|1
+(noun)|tufted gentian|Gentianopsis holopetala|Gentiana holopetala|fringed gentian (generic term)
+gentianopsis thermalis|1
+(noun)|Gentianopsis thermalis|Gentiana thermalis|fringed gentian (generic term)
+gentile|5
+(adj)|Christian (related term)
+(noun)|heathen|pagan|infidel|nonreligious person (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|non-Jew|goy|Christian (generic term)
+(noun)|Christian (generic term)
+gentility|1
+(noun)|breeding|genteelness|elegance (generic term)
+gentle|10
+(adj)|soft|mild (similar term)
+(adj)|kind (similar term)
+(adj)|soft (similar term)
+(adj)|aristocratic|aristocratical|blue|blue-blooded|patrician|noble (similar term)
+(adj)|docile|tame (similar term)|tamed (similar term)
+(adj)|easy|soft|light (similar term)
+(adj)|easy|gradual (similar term)
+(verb)|pacify|lenify|conciliate|assuage|appease|mollify|placate|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|ennoble|entitle|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+(verb)|pet (generic term)
+gentle breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+gentle wind|1
+(noun)|breeze|zephyr|air|wind (generic term)|air current (generic term)|current of air (generic term)
+gentlefolk|1
+(noun)|folk (generic term)|folks (generic term)|common people (generic term)
+gentleman|2
+(noun)|man (generic term)|adult male (generic term)
+(noun)|valet|valet de chambre|gentleman's gentleman|man|manservant (generic term)|body servant (generic term)
+gentleman's-cane|1
+(noun)|prince's-feather|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth (generic term)
+gentleman's gentleman|1
+(noun)|valet|valet de chambre|gentleman|man|manservant (generic term)|body servant (generic term)
+gentleman-at-arms|1
+(noun)|gentleman (generic term)
+gentleman jim|1
+(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter (generic term)|gladiator (generic term)
+gentleman johnny|1
+(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general (generic term)|full general (generic term)
+gentlemanlike|1
+(adj)|gentlemanly|refined (similar term)
+gentlemanly|1
+(adj)|gentlemanlike|refined (similar term)
+gentlemen's agreement|1
+(noun)|agreement (generic term)|understanding (generic term)
+gentleness|2
+(noun)|gradualness|gradient (generic term)|slope (generic term)|abruptness (antonym)
+(noun)|softness|mildness|manner (generic term)|personal manner (generic term)
+gentlewoman|1
+(noun)|dame|madam|ma'am|lady|woman (generic term)|adult female (generic term)
+gently|2
+(adv)|mildly
+(adv)|lightly|softly
+gentrification|1
+(noun)|restoration (generic term)
+gentrify|1
+(verb)|refurbish (generic term)|renovate (generic term)|freshen up (generic term)
+gentry|1
+(noun)|aristocracy|upper class (generic term)|upper crust (generic term)
+genu|1
+(noun)|knee|knee joint|human knee|articulatio genus|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+genu valgum|1
+(noun)|knock-knee|tibia valga|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+genu varum|1
+(noun)|bowleg|tibia vara|leg (generic term)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+genuflect|2
+(verb)|bow (generic term)
+(verb)|scrape|kowtow|bow (generic term)
+genuflection|1
+(noun)|genuflexion|bow (generic term)|bowing (generic term)|obeisance (generic term)
+genuflexion|1
+(noun)|genuflection|bow (generic term)|bowing (generic term)|obeisance (generic term)
+genuine|3
+(adj)|echt|authentic (similar term)|bona fide (similar term)|unquestionable (similar term)|veritable (similar term)|attested (similar term)|authenticated (similar term)|documented (similar term)|good (similar term)|honest-to-god (similar term)|honest-to-goodness (similar term)|old (similar term)|sure-enough (similar term)|honest (related term)|honorable (related term)|real (related term)|existent (related term)|sincere (related term)|true (related term)|counterfeit (antonym)
+(adj)|true|unfeigned|sincere (similar term)
+(adj)|actual|literal|real|true (similar term)
+genuinely|2
+(adv)|truly|really
+(adv)|authentically
+genuineness|2
+(noun)|actuality (generic term)|spuriousness (antonym)
+(noun)|authenticity|legitimacy|credibility (generic term)|credibleness (generic term)|believability (generic term)
+genus|2
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+genus-fenusa|1
+(noun)|Fenusa|genus-Fenusa|arthropod genus (generic term)
+genus-megapodius|1
+(noun)|Megapodius|genus-Megapodius|bird genus (generic term)
+genus-milvus|1
+(noun)|Milvus|genus-Milvus|bird genus (generic term)
+genus abelia|1
+(noun)|genus Abelia|asterid dicot genus (generic term)
+genus abelmoschus|1
+(noun)|Abelmoschus|genus Abelmoschus|dilleniid dicot genus (generic term)
+genus abies|1
+(noun)|Abies|genus Abies|gymnosperm genus (generic term)
+genus abramis|1
+(noun)|Abramis|genus Abramis|fish genus (generic term)
+genus abrocoma|1
+(noun)|Abrocoma|genus Abrocoma|mammal genus (generic term)
+genus abronia|1
+(noun)|Abronia|genus Abronia|caryophylloid dicot genus (generic term)
+genus abudefduf|1
+(noun)|Abudefduf|genus Abudefduf|fish genus (generic term)
+genus abutilon|1
+(noun)|Abutilon|genus Abutilon|dilleniid dicot genus (generic term)
+genus acacia|1
+(noun)|genus Acacia|rosid dicot genus (generic term)
+genus acalypha|1
+(noun)|Acalypha|genus Acalypha|rosid dicot genus (generic term)
+genus acanthisitta|1
+(noun)|Acanthisitta|genus Acanthisitta|bird genus (generic term)
+genus acanthocereus|1
+(noun)|Acanthocereus|genus Acanthocereus|caryophylloid dicot genus (generic term)
+genus acanthocybium|1
+(noun)|Acanthocybium|genus Acanthocybium|fish genus (generic term)
+genus acanthophis|1
+(noun)|Acanthophis|genus Acanthophis|reptile genus (generic term)
+genus acanthoscelides|1
+(noun)|Acanthoscelides|genus Acanthoscelides|arthropod genus (generic term)
+genus acanthurus|1
+(noun)|Acanthurus|genus Acanthurus|fish genus (generic term)
+genus acanthus|1
+(noun)|genus Acanthus|asterid dicot genus (generic term)
+genus acarus|1
+(noun)|acarus|genus Acarus|mite (generic term)
+genus accipiter|1
+(noun)|Accipiter|genus Accipiter|bird genus (generic term)
+genus acer|1
+(noun)|Acer|genus Acer|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus acherontia|1
+(noun)|Acherontia|genus Acherontia|arthropod genus (generic term)
+genus acheta|1
+(noun)|Acheta|genus Acheta|arthropod genus (generic term)
+genus achillea|1
+(noun)|genus Achillea|asterid dicot genus (generic term)
+genus achimenes|1
+(noun)|genus Achimenes|asterid dicot genus (generic term)
+genus achoerodus|1
+(noun)|Achoerodus|genus Achoerodus|fish genus (generic term)
+genus achras|1
+(noun)|Achras|genus Achras|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus acinonyx|1
+(noun)|Acinonyx|genus Acinonyx|mammal genus (generic term)
+genus acinos|1
+(noun)|Acinos|genus Acinos|asterid dicot genus (generic term)
+genus acipenser|1
+(noun)|Acipenser|genus Acipenser|fish genus (generic term)
+genus acocanthera|1
+(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus acokanthera|1
+(noun)|Acocanthera|genus Acocanthera|Acokanthera|genus Acokanthera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus aconitum|1
+(noun)|Aconitum|genus Aconitum|magnoliid dicot genus (generic term)
+genus acorus|1
+(noun)|Acorus|genus Acorus|monocot genus (generic term)|liliopsid genus (generic term)
+genus acridotheres|1
+(noun)|Acridotheres|genus Acridotheres|bird genus (generic term)
+genus acris|1
+(noun)|Acris|genus Acris|amphibian genus (generic term)
+genus acrobates|1
+(noun)|Acrobates|genus Acrobates|mammal genus (generic term)
+genus acrocarpus|1
+(noun)|Acrocarpus|genus Acrocarpus|rosid dicot genus (generic term)
+genus acrocephalus|1
+(noun)|Acrocephalus|genus Acrocephalus|bird genus (generic term)
+genus acroclinium|1
+(noun)|Acroclinium|genus Acroclinium|asterid dicot genus (generic term)
+genus acrocomia|1
+(noun)|Acrocomia|genus Acrocomia|monocot genus (generic term)|liliopsid genus (generic term)
+genus acropora|1
+(noun)|Acropora|genus Acropora|coelenterate genus (generic term)
+genus acrostichum|1
+(noun)|Acrostichum|genus Acrostichum|fern genus (generic term)
+genus actaea|1
+(noun)|Actaea|genus Actaea|magnoliid dicot genus (generic term)
+genus actias|1
+(noun)|Actias|genus Actias|arthropod genus (generic term)
+genus actinia|1
+(noun)|Actinia|genus Actinia|coelenterate genus (generic term)
+genus actinidia|1
+(noun)|Actinidia|genus Actinidia|dilleniid dicot genus (generic term)
+genus actiniopteris|1
+(noun)|Actiniopteris|genus Actiniopteris|fern genus (generic term)
+genus actinomeris|1
+(noun)|Actinomeris|genus Actinomeris|asterid dicot genus (generic term)
+genus actinomyces|1
+(noun)|genus Actinomyces|bacteria genus (generic term)
+genus actitis|1
+(noun)|Actitis|genus Actitis|bird genus (generic term)
+genus adalia|1
+(noun)|Adalia|genus Adalia|arthropod genus (generic term)
+genus adansonia|1
+(noun)|Adansonia|genus Adansonia|dilleniid dicot genus (generic term)
+genus addax|1
+(noun)|genus Addax|mammal genus (generic term)
+genus adelges|1
+(noun)|Adelges|genus Adelges|arthropod genus (generic term)
+genus adenanthera|1
+(noun)|Adenanthera|genus Adenanthera|rosid dicot genus (generic term)
+genus adenium|1
+(noun)|Adenium|genus Adenium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus adenota|1
+(noun)|Adenota|genus Adenota|mammal genus (generic term)
+genus adiantum|1
+(noun)|Adiantum|genus Adiantum|fern genus (generic term)
+genus adlumia|1
+(noun)|Adlumia|genus Adlumia|dilleniid dicot genus (generic term)
+genus adonis|1
+(noun)|Adonis|genus Adonis|magnoliid dicot genus (generic term)
+genus aedes|1
+(noun)|Aedes|genus Aedes|arthropod genus (generic term)
+genus aegiceras|1
+(noun)|Aegiceras|genus Aegiceras|asterid dicot genus (generic term)
+genus aegilops|1
+(noun)|Aegilops|genus Aegilops|monocot genus (generic term)|liliopsid genus (generic term)
+genus aegypius|1
+(noun)|Aegypius|genus Aegypius|bird genus (generic term)
+genus aegyptopithecus|1
+(noun)|genus Aegyptopithecus|mammal genus (generic term)
+genus aeonium|1
+(noun)|Aeonium|genus Aeonium|plant genus (generic term)
+genus aepyceros|1
+(noun)|Aepyceros|genus Aepyceros|mammal genus (generic term)
+genus aepyornis|1
+(noun)|genus Aepyornis|bird genus (generic term)
+genus aerides|1
+(noun)|genus Aerides|monocot genus (generic term)|liliopsid genus (generic term)
+genus aerobacter|1
+(noun)|Aerobacter|genus Aerobacter|bacteria genus (generic term)
+genus aeschynanthus|1
+(noun)|genus Aeschynanthus|asterid dicot genus (generic term)
+genus aesculus|1
+(noun)|Aesculus|genus Aesculus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus aethionema|1
+(noun)|Aethionema|genus Aethionema|dilleniid dicot genus (generic term)
+genus aethusa|1
+(noun)|Aethusa|genus Aethusa|rosid dicot genus (generic term)
+genus aetobatus|1
+(noun)|Aetobatus|genus Aetobatus|fish genus (generic term)
+genus aframomum|1
+(noun)|Aframomum|genus Aframomum|plant genus (generic term)
+genus afrocarpus|1
+(noun)|Afrocarpus|genus Afrocarpus|gymnosperm genus (generic term)
+genus afropavo|1
+(noun)|genus Afropavo|bird genus (generic term)
+genus agalinis|1
+(noun)|Agalinis|genus Agalinis|asterid dicot genus (generic term)
+genus agama|1
+(noun)|genus Agama|reptile genus (generic term)
+genus agapanthus|1
+(noun)|genus Agapanthus|liliid monocot genus (generic term)
+genus agapornis|1
+(noun)|Agapornis|genus Agapornis|bird genus (generic term)
+genus agaricus|1
+(noun)|Agaricus|genus Agaricus|fungus genus (generic term)
+genus agastache|1
+(noun)|Agastache|genus Agastache|asterid dicot genus (generic term)
+genus agathis|1
+(noun)|Agathis|genus Agathis|gymnosperm genus (generic term)
+genus agave|1
+(noun)|genus Agave|liliid monocot genus (generic term)
+genus agdestis|1
+(noun)|Agdestis|genus Agdestis|caryophylloid dicot genus (generic term)
+genus agelaius|1
+(noun)|Agelaius|genus Agelaius|bird genus (generic term)
+genus ageratina|1
+(noun)|Ageratina|genus Ageratina|asterid dicot genus (generic term)
+genus ageratum|1
+(noun)|genus Ageratum|asterid dicot genus (generic term)
+genus agkistrodon|1
+(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus (generic term)
+genus aglaomorpha|1
+(noun)|Aglaomorpha|genus Aglaomorpha|fern genus (generic term)
+genus aglaonema|1
+(noun)|Aglaonema|genus Aglaonema|monocot genus (generic term)|liliopsid genus (generic term)
+genus agonus|1
+(noun)|Agonus|genus Agonus|fish genus (generic term)
+genus agrimonia|1
+(noun)|genus Agrimonia|rosid dicot genus (generic term)
+genus agriocharis|1
+(noun)|Agriocharis|genus Agriocharis|bird genus (generic term)
+genus agrobacterium|1
+(noun)|Agrobacterium|genus Agrobacterium|bacteria genus (generic term)
+genus agropyron|1
+(noun)|Agropyron|genus Agropyron|monocot genus (generic term)|liliopsid genus (generic term)
+genus agrostemma|1
+(noun)|Agrostemma|genus Agrostemma|caryophylloid dicot genus (generic term)
+genus agrostis|1
+(noun)|Agrostis|genus Agrostis|plant genus (generic term)
+genus ailanthus|1
+(noun)|genus Ailanthus|rosid dicot genus (generic term)
+genus ailuropoda|1
+(noun)|Ailuropoda|genus Ailuropoda|mammal genus (generic term)
+genus ailurus|1
+(noun)|Ailurus|genus Ailurus|mammal genus (generic term)
+genus aix|1
+(noun)|Aix|genus Aix|bird genus (generic term)
+genus ajaia|1
+(noun)|Ajaia|genus Ajaia|bird genus (generic term)
+genus ajuga|1
+(noun)|Ajuga|genus Ajuga|asterid dicot genus (generic term)
+genus alauda|1
+(noun)|Alauda|genus Alauda|bird genus (generic term)
+genus albatrellus|1
+(noun)|Albatrellus|genus Albatrellus|fungus genus (generic term)
+genus albizia|1
+(noun)|genus Albizia|genus Albizzia|rosid dicot genus (generic term)
+genus albizzia|1
+(noun)|genus Albizia|genus Albizzia|rosid dicot genus (generic term)
+genus albuca|1
+(noun)|genus Albuca|liliid monocot genus (generic term)
+genus albugo|1
+(noun)|Albugo|genus Albugo|fungus genus (generic term)
+genus albula|1
+(noun)|Albula|genus Albula|fish genus (generic term)
+genus alca|1
+(noun)|Alca|genus Alca|bird genus (generic term)
+genus alcea|1
+(noun)|Alcea|genus Alcea|dilleniid dicot genus (generic term)
+genus alcedo|1
+(noun)|Alcedo|genus Alcedo|bird genus (generic term)
+genus alcelaphus|1
+(noun)|Alcelaphus|genus Alcelaphus|mammal genus (generic term)
+genus alces|1
+(noun)|Alces|genus Alces|mammal genus (generic term)
+genus aldrovanda|1
+(noun)|Aldrovanda|genus Aldrovanda|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus alectis|1
+(noun)|Alectis|genus Alectis|fish genus (generic term)
+genus alectoria|1
+(noun)|Alectoria|genus Alectoria|fungus genus (generic term)
+genus alectoris|1
+(noun)|Alectoris|genus Alectoris|bird genus (generic term)
+genus alectura|1
+(noun)|Alectura|genus Alectura|bird genus (generic term)
+genus alepisaurus|1
+(noun)|Alepisaurus|genus Alepisaurus|fish genus (generic term)
+genus aletris|1
+(noun)|Aletris|genus Aletris|liliid monocot genus (generic term)
+genus aleurites|1
+(noun)|Aleurites|genus Aleurites|rosid dicot genus (generic term)
+genus aleyrodes|1
+(noun)|Aleyrodes|genus Aleyrodes|arthropod genus (generic term)
+genus algeripithecus|1
+(noun)|Algeripithecus|genus Algeripithecus|mammal genus (generic term)
+genus alisma|1
+(noun)|Alisma|genus Alisma|monocot genus (generic term)|liliopsid genus (generic term)
+genus allamanda|1
+(noun)|genus Allamanda|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus alliaria|1
+(noun)|Alliaria|genus Alliaria|dilleniid dicot genus (generic term)
+genus alligator|1
+(noun)|genus Alligator|reptile genus (generic term)
+genus allionia|1
+(noun)|Allionia|genus Allionia|caryophylloid dicot genus (generic term)
+genus allium|1
+(noun)|Allium|genus Allium|liliid monocot genus (generic term)
+genus allosaurus|1
+(noun)|genus Allosaurus|genus Antrodemus|reptile genus (generic term)
+genus alnus|1
+(noun)|Alnus|genus Alnus|hamamelid dicot genus (generic term)
+genus alocasia|1
+(noun)|genus Alocasia|monocot genus (generic term)|liliopsid genus (generic term)
+genus aloe|1
+(noun)|genus Aloe|liliid monocot genus (generic term)
+genus alopecurus|1
+(noun)|Alopecurus|genus Alopecurus|monocot genus (generic term)|liliopsid genus (generic term)
+genus alopex|1
+(noun)|Alopex|genus Alopex|mammal genus (generic term)
+genus alopius|1
+(noun)|Alopius|genus Alopius|fish genus (generic term)
+genus alosa|1
+(noun)|Alosa|genus Alosa|fish genus (generic term)
+genus alouatta|1
+(noun)|Alouatta|genus Alouatta|mammal genus (generic term)
+genus alpinia|1
+(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus (generic term)
+genus alsobia|1
+(noun)|Alsobia|genus Alsobia|asterid dicot genus (generic term)
+genus alsophila|1
+(noun)|Alsophila|genus Alsophila|arthropod genus (generic term)
+genus alstonia|1
+(noun)|Alstonia|genus Alstonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus alstroemeria|1
+(noun)|genus Alstroemeria|liliid monocot genus (generic term)
+genus alternanthera|1
+(noun)|Alternanthera|genus Alternanthera|caryophylloid dicot genus (generic term)
+genus althaea|1
+(noun)|genus Althaea|dilleniid dicot genus (generic term)
+genus alyssum|1
+(noun)|Alyssum|genus Alyssum|dilleniid dicot genus (generic term)
+genus alytes|1
+(noun)|Alytes|genus Alytes|amphibian genus (generic term)
+genus amanita|1
+(noun)|Amanita|genus Amanita|fungus genus (generic term)
+genus amaranthus|1
+(noun)|Amaranthus|genus Amaranthus|caryophylloid dicot genus (generic term)
+genus amaryllis|1
+(noun)|genus Amaryllis|liliid monocot genus (generic term)
+genus amauropelta|1
+(noun)|Amauropelta|genus Amauropelta|fern genus (generic term)
+genus amazona|1
+(noun)|Amazona|genus Amazona|bird genus (generic term)
+genus amberboa|1
+(noun)|Amberboa|genus Amberboa|asterid dicot genus (generic term)
+genus ambloplites|1
+(noun)|Ambloplites|genus Ambloplites|fish genus (generic term)
+genus amblyrhynchus|1
+(noun)|Amblyrhynchus|genus Amblyrhynchus|reptile genus (generic term)
+genus ambrosia|1
+(noun)|genus Ambrosia|asterid dicot genus (generic term)
+genus ambystoma|1
+(noun)|Ambystoma|genus Ambystoma|amphibian genus (generic term)
+genus ameiurus|1
+(noun)|Ameiurus|genus Ameiurus|fish genus (generic term)
+genus amelanchier|1
+(noun)|Amelanchier|genus Amelanchier|rosid dicot genus (generic term)
+genus amia|1
+(noun)|Amia|genus Amia|fish genus (generic term)
+genus amianthum|1
+(noun)|Amianthum|genus Amianthum|liliid monocot genus (generic term)
+genus ammobium|1
+(noun)|genus Ammobium|asterid dicot genus (generic term)
+genus ammodytes|1
+(noun)|Ammodytes|genus Ammodytes|fish genus (generic term)
+genus ammotragus|1
+(noun)|Ammotragus|genus Ammotragus|mammal genus (generic term)
+genus amoeba|1
+(noun)|genus Amoeba|protoctist genus (generic term)
+genus amorpha|1
+(noun)|genus Amorpha|rosid dicot genus (generic term)
+genus amorphophallus|1
+(noun)|genus Amorphophallus|monocot genus (generic term)|liliopsid genus (generic term)
+genus amphibolips|1
+(noun)|Amphibolips|genus Amphibolips|arthropod genus (generic term)
+genus amphicarpa|1
+(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus (generic term)
+genus amphicarpaea|1
+(noun)|Amphicarpaea|genus Amphicarpaea|Amphicarpa|genus Amphicarpa|rosid dicot genus (generic term)
+genus amphioxus|1
+(noun)|genus Amphioxus|chordate genus (generic term)
+genus amphiprion|1
+(noun)|Amphiprion|genus Amphiprion|fish genus (generic term)
+genus amphisbaena|1
+(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus (generic term)
+genus amphisbaenia|1
+(noun)|Amphisbaena|genus Amphisbaena|Amphisbaenia|genus Amphisbaenia|reptile genus (generic term)
+genus amphiuma|1
+(noun)|genus Amphiuma|amphibian genus (generic term)
+genus amsinckia|1
+(noun)|Amsinckia|genus Amsinckia|plant genus (generic term)
+genus amsonia|1
+(noun)|Amsonia|genus Amsonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus amygdalus|1
+(noun)|Amygdalus|genus Amygdalus|rosid dicot genus (generic term)
+genus anabas|1
+(noun)|Anabas|genus Anabas|fish genus (generic term)
+genus anabrus|1
+(noun)|Anabrus|genus Anabrus|arthropod genus (generic term)
+genus anacardium|1
+(noun)|Anacardium|genus Anacardium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus anacyclus|1
+(noun)|Anacyclus|genus Anacyclus|asterid dicot genus (generic term)
+genus anadenanthera|1
+(noun)|Anadenanthera|genus Anadenanthera|rosid dicot genus (generic term)
+genus anagallis|1
+(noun)|Anagallis|genus Anagallis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus anagasta|1
+(noun)|Anagasta|genus Anagasta|arthropod genus (generic term)
+genus anagyris|1
+(noun)|Anagyris|genus Anagyris|rosid dicot genus (generic term)
+genus ananas|1
+(noun)|Ananas|genus Ananas|monocot genus (generic term)|liliopsid genus (generic term)
+genus anaphalis|1
+(noun)|Anaphalis|genus Anaphalis|asterid dicot genus (generic term)
+genus anarhichas|1
+(noun)|Anarhichas|genus Anarhichas|fish genus (generic term)
+genus anas|1
+(noun)|Anas|genus Anas|bird genus (generic term)
+genus anasa|1
+(noun)|Anasa|genus Anasa|arthropod genus (generic term)
+genus anastatica|1
+(noun)|Anastatica|genus Anastatica|dilleniid dicot genus (generic term)
+genus anastomus|1
+(noun)|Anastomus|genus Anastomus|bird genus (generic term)
+genus anatotitan|1
+(noun)|genus Anatotitan|reptile genus (generic term)
+genus anchusa|1
+(noun)|genus Anchusa|plant genus (generic term)
+genus ancistrodon|1
+(noun)|Agkistrodon|genus Agkistrodon|Ancistrodon|genus Ancistrodon|reptile genus (generic term)
+genus ancylus|1
+(noun)|Ancylus|genus Ancylus|mollusk genus (generic term)
+genus andira|1
+(noun)|Andira|genus Andira|rosid dicot genus (generic term)
+genus andreaea|1
+(noun)|Andreaea|genus Andreaea|moss genus (generic term)
+genus andrena|1
+(noun)|genus Andrena|arthropod genus (generic term)
+genus andricus|1
+(noun)|Andricus|genus Andricus|arthropod genus (generic term)
+genus andromeda|1
+(noun)|genus Andromeda|dilleniid dicot genus (generic term)
+genus andropogon|1
+(noun)|Andropogon|genus Andropogon|monocot genus (generic term)|liliopsid genus (generic term)
+genus andryala|1
+(noun)|genus Andryala|asterid dicot genus (generic term)
+genus aneides|1
+(noun)|Aneides|genus Aneides|amphibian genus (generic term)
+genus anemia|1
+(noun)|Anemia|genus Anemia|fern genus (generic term)
+genus anemone|1
+(noun)|genus Anemone|magnoliid dicot genus (generic term)
+genus anemonella|1
+(noun)|Anemonella|genus Anemonella|magnoliid dicot genus (generic term)
+genus anemopsis|1
+(noun)|Anemopsis|genus Anemopsis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus anethum|1
+(noun)|Anethum|genus Anethum|rosid dicot genus (generic term)
+genus angelica|1
+(noun)|genus Angelica|rosid dicot genus (generic term)|Umbelliferae (generic term)|family Umbelliferae (generic term)|Apiaceae (generic term)|family Apiaceae (generic term)|carrot family (generic term)
+genus angiopteris|1
+(noun)|genus Angiopteris|fern genus (generic term)
+genus angraecum|1
+(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus (generic term)|liliopsid genus (generic term)
+genus angrecum|1
+(noun)|genus Angrecum|Angraecum|genus Angraecum|monocot genus (generic term)|liliopsid genus (generic term)
+genus anguilla|1
+(noun)|Anguilla|genus Anguilla|fish genus (generic term)
+genus anguillula|1
+(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus (generic term)
+genus anguis|1
+(noun)|Anguis|genus Anguis|reptile genus (generic term)
+genus anhima|1
+(noun)|Anhima|genus Anhima|bird genus (generic term)
+genus anhinga|1
+(noun)|genus Anhinga|bird genus (generic term)
+genus anigozanthus|1
+(noun)|Anigozanthus|genus Anigozanthus|monocot genus (generic term)|liliopsid genus (generic term)
+genus anisotremus|1
+(noun)|Anisotremus|genus Anisotremus|fish genus (generic term)
+genus ankylosaurus|1
+(noun)|genus Ankylosaurus|reptile genus (generic term)
+genus annona|1
+(noun)|Annona|genus Annona|magnoliid dicot genus (generic term)
+genus anoa|1
+(noun)|genus Anoa|mammal genus (generic term)
+genus anodonta|1
+(noun)|Anodonta|genus Anodonta|mollusk genus (generic term)
+genus anoectochilus|1
+(noun)|Anoectochilus|genus Anoectochilus|monocot genus (generic term)|liliopsid genus (generic term)
+genus anogramma|1
+(noun)|Anogramma|genus Anogramma|fern genus (generic term)
+genus anolis|1
+(noun)|Anolis|genus Anolis|reptile genus (generic term)
+genus anomala|1
+(noun)|Anomala|genus Anomala|arthropod genus (generic term)
+genus anomalops|1
+(noun)|genus Anomalops|fish genus (generic term)
+genus anomalopteryx|1
+(noun)|genus Anomalopteryx|bird genus (generic term)
+genus anomia|1
+(noun)|Anomia|genus Anomia|mollusk genus (generic term)
+genus anopheles|1
+(noun)|Anopheles|genus Anopheles|arthropod genus (generic term)
+genus anser|1
+(noun)|Anser|genus Anser|bird genus (generic term)
+genus antedon|1
+(noun)|Antedon|genus Antedon|echinoderm genus (generic term)
+genus antennaria|1
+(noun)|Antennaria|genus Antennaria|asterid dicot genus (generic term)
+genus anthemis|1
+(noun)|Anthemis|genus Anthemis|asterid dicot genus (generic term)
+genus antheraea|1
+(noun)|Antheraea|genus Antheraea|arthropod genus (generic term)
+genus anthericum|1
+(noun)|Anthericum|genus Anthericum|liliid monocot genus (generic term)
+genus antheropeas|1
+(noun)|Antheropeas|genus Antheropeas|asterid dicot genus (generic term)
+genus anthidium|1
+(noun)|Anthidium|genus Anthidium|arthropod genus (generic term)
+genus anthoceros|1
+(noun)|Anthoceros|genus Anthoceros|moss genus (generic term)
+genus anthonomus|1
+(noun)|Anthonomus|genus Anthonomus|arthropod genus (generic term)
+genus anthriscus|1
+(noun)|Anthriscus|genus Anthriscus|rosid dicot genus (generic term)
+genus anthurium|1
+(noun)|genus Anthurium|monocot genus (generic term)|liliopsid genus (generic term)
+genus anthus|1
+(noun)|Anthus|genus Anthus|bird genus (generic term)
+genus anthyllis|1
+(noun)|Anthyllis|genus Anthyllis|rosid dicot genus (generic term)
+genus antidorcas|1
+(noun)|Antidorcas|genus Antidorcas|mammal genus (generic term)
+genus antigonia|1
+(noun)|Antigonia|genus Antigonia|fish genus (generic term)
+genus antilocapra|1
+(noun)|Antilocapra|genus Antilocapra|mammal genus (generic term)
+genus antilope|1
+(noun)|Antilope|genus Antilope|mammal genus (generic term)
+genus antirrhinum|1
+(noun)|Antirrhinum|genus Antirrhinum|asterid dicot genus (generic term)
+genus antrodemus|1
+(noun)|genus Allosaurus|genus Antrodemus|reptile genus (generic term)
+genus antrozous|1
+(noun)|Antrozous|genus Antrozous|mammal genus (generic term)
+genus aotus|1
+(noun)|Aotus|genus Aotus|mammal genus (generic term)
+genus apatosaurus|1
+(noun)|genus Apatosaurus|genus Brontosaurus|reptile genus (generic term)
+genus apatura|1
+(noun)|Apatura|genus Apatura|arthropod genus (generic term)
+genus aphis|1
+(noun)|Aphis|genus Aphis|arthropod genus (generic term)
+genus aphriza|1
+(noun)|Aphriza|genus Aphriza|bird genus (generic term)
+genus aphrophora|1
+(noun)|Aphrophora|genus Aphrophora|arthropod genus (generic term)
+genus aphyllanthes|1
+(noun)|Aphyllanthes|genus Aphyllanthes|liliid monocot genus (generic term)
+genus apios|1
+(noun)|Apios|genus Apios|rosid dicot genus (generic term)
+genus apis|1
+(noun)|Apis|genus Apis|arthropod genus (generic term)
+genus apium|1
+(noun)|Apium|genus Apium|rosid dicot genus (generic term)
+genus aplectrum|1
+(noun)|Aplectrum|genus Aplectrum|monocot genus (generic term)|liliopsid genus (generic term)
+genus aplodontia|1
+(noun)|Aplodontia|genus Aplodontia|mammal genus (generic term)
+genus aplysia|1
+(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus (generic term)
+genus apocynum|1
+(noun)|Apocynum|genus Apocynum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus apodemus|1
+(noun)|Apodemus|genus Apodemus|mammal genus (generic term)
+genus apogon|1
+(noun)|Apogon|genus Apogon|fish genus (generic term)
+genus aporocactus|1
+(noun)|Aporocactus|genus Aporocactus|caryophylloid dicot genus (generic term)
+genus appendicularia|1
+(noun)|genus Appendicularia|chordate genus (generic term)
+genus aptenodytes|1
+(noun)|Aptenodytes|genus Aptenodytes|bird genus (generic term)
+genus apteryx|1
+(noun)|genus Apteryx|bird genus (generic term)
+genus apus|1
+(noun)|Apus|genus Apus|bird genus (generic term)
+genus aquila|1
+(noun)|Aquila|genus Aquila|bird genus (generic term)
+genus aquilegia|1
+(noun)|genus Aquilegia|magnoliid dicot genus (generic term)
+genus ara|1
+(noun)|Ara|genus Ara|bird genus (generic term)
+genus arabidopsis|1
+(noun)|Arabidopsis|genus Arabidopsis|dilleniid dicot genus (generic term)
+genus arabis|1
+(noun)|Arabis|genus Arabis|dilleniid dicot genus (generic term)
+genus arachis|1
+(noun)|Arachis|genus Arachis|rosid dicot genus (generic term)
+genus aralia|1
+(noun)|genus Aralia|rosid dicot genus (generic term)
+genus aramus|1
+(noun)|Aramus|genus Aramus|bird genus (generic term)
+genus aranea|1
+(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus (generic term)
+genus araneus|1
+(noun)|Aranea|genus Aranea|Araneus|genus Araneus|arthropod genus (generic term)
+genus araucaria|1
+(noun)|genus Araucaria|gymnosperm genus (generic term)
+genus araujia|1
+(noun)|Araujia|genus Araujia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus arbutus|1
+(noun)|genus Arbutus|dilleniid dicot genus (generic term)
+genus arca|1
+(noun)|Arca|genus Arca|mollusk genus (generic term)
+genus arcella|1
+(noun)|genus Arcella|protoctist genus (generic term)
+genus arceuthobium|1
+(noun)|Arceuthobium|genus Arceuthobium|dilleniid dicot genus (generic term)
+genus archaeopteryx|1
+(noun)|genus Archaeopteryx|genus Archeopteryx|bird genus (generic term)
+genus archaeornis|1
+(noun)|genus Archaeornis|bird genus (generic term)
+genus archeopteryx|1
+(noun)|genus Archaeopteryx|genus Archeopteryx|bird genus (generic term)
+genus archidiskidon|1
+(noun)|Archidiskidon|genus Archidiskidon|mammal genus (generic term)
+genus archilochus|1
+(noun)|Archilochus|genus Archilochus|bird genus (generic term)
+genus architeuthis|1
+(noun)|genus Architeuthis|arthropod genus (generic term)
+genus archosargus|1
+(noun)|Archosargus|genus Archosargus|fish genus (generic term)
+genus arctictis|1
+(noun)|Arctictis|genus Arctictis|mammal genus (generic term)
+genus arctium|1
+(noun)|Arctium|genus Arctium|asterid dicot genus (generic term)
+genus arctocebus|1
+(noun)|Arctocebus|genus Arctocebus|mammal genus (generic term)
+genus arctocephalus|1
+(noun)|Arctocephalus|genus Arctocephalus|mammal genus (generic term)
+genus arctonyx|1
+(noun)|Arctonyx|genus Arctonyx|mammal genus (generic term)
+genus arctostaphylos|1
+(noun)|Arctostaphylos|genus Arctostaphylos|dilleniid dicot genus (generic term)
+genus arctotis|1
+(noun)|Arctotis|genus Arctotis|asterid dicot genus (generic term)
+genus ardea|1
+(noun)|Ardea|genus Ardea|bird genus (generic term)
+genus ardisia|1
+(noun)|Ardisia|genus Ardisia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus areca|1
+(noun)|genus Areca|monocot genus (generic term)|liliopsid genus (generic term)
+genus arenaria|2
+(noun)|Arenaria|genus Arenaria|caryophylloid dicot genus (generic term)
+(noun)|Arenaria|genus Arenaria|bird genus (generic term)
+genus arenga|1
+(noun)|Arenga|genus Arenga|plant genus (generic term)
+genus arethusa|1
+(noun)|genus Arethusa|monocot genus (generic term)|liliopsid genus (generic term)
+genus argemone|1
+(noun)|genus Argemone|dilleniid dicot genus (generic term)
+genus argentina|1
+(noun)|Argentina|genus Argentina|fish genus (generic term)
+genus argentinosaurus|1
+(noun)|genus Argentinosaurus|titanosaur (generic term)|titanosaurian (generic term)
+genus argiope|1
+(noun)|Argiope|genus Argiope|arthropod genus (generic term)
+genus argonauta|1
+(noun)|Argonauta|genus Argonauta|mollusk genus (generic term)
+genus argusianus|1
+(noun)|Argusianus|genus Argusianus|bird genus (generic term)
+genus argynnis|1
+(noun)|Argynnis|genus Argynnis|arthropod genus (generic term)
+genus argyranthemum|1
+(noun)|Argyranthemum|genus Argyranthemum|asterid dicot genus (generic term)
+genus argyreia|1
+(noun)|Argyreia|genus Argyreia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus argyrotaenia|1
+(noun)|Argyrotaenia|genus Argyrotaenia|arthropod genus (generic term)
+genus argyroxiphium|1
+(noun)|Argyroxiphium|genus Argyroxiphium|asterid dicot genus (generic term)
+genus arilus|1
+(noun)|Arilus|genus Arilus|arthropod genus (generic term)
+genus ariocarpus|1
+(noun)|Ariocarpus|genus Ariocarpus|caryophylloid dicot genus (generic term)
+genus ariomma|1
+(noun)|Ariomma|genus Ariomma|fish genus (generic term)
+genus arisaema|1
+(noun)|Arisaema|genus Arisaema|monocot genus (generic term)|liliopsid genus (generic term)
+genus arisarum|1
+(noun)|Arisarum|genus Arisarum|monocot genus (generic term)|liliopsid genus (generic term)
+genus aristolochia|1
+(noun)|Aristolochia|genus Aristolochia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus aristotelia|1
+(noun)|Aristotelia|genus Aristotelia|dilleniid dicot genus (generic term)
+genus arius|1
+(noun)|Arius|genus Arius|fish genus (generic term)
+genus arizona|1
+(noun)|Arizona|genus Arizona|reptile genus (generic term)
+genus armadillidium|1
+(noun)|Armadillidium|genus Armadillidium|arthropod genus (generic term)
+genus armeria|1
+(noun)|Armeria|genus Armeria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus armillaria|1
+(noun)|Armillaria|genus Armillaria|fungus genus (generic term)
+genus armillariella|1
+(noun)|Armillariella|genus Armillariella|fungus genus (generic term)
+genus armoracia|1
+(noun)|Armoracia|genus Armoracia|dilleniid dicot genus (generic term)
+genus arnica|1
+(noun)|genus Arnica|asterid dicot genus (generic term)
+genus arnoseris|1
+(noun)|Arnoseris|genus Arnoseris|asterid dicot genus (generic term)
+genus arrhenatherum|1
+(noun)|Arrhenatherum|genus Arrhenatherum|plant genus (generic term)
+genus artamus|1
+(noun)|Artamus|genus Artamus|bird genus (generic term)
+genus artemia|1
+(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus (generic term)
+genus artemisia|1
+(noun)|genus Artemisia|asterid dicot genus (generic term)
+genus arthropteris|1
+(noun)|Arthropteris|genus Arthropteris|fern genus (generic term)
+genus artocarpus|1
+(noun)|Artocarpus|genus Artocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus arum|1
+(noun)|genus Arum|monocot genus (generic term)|liliopsid genus (generic term)
+genus arundinaria|1
+(noun)|Arundinaria|genus Arundinaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus arundo|1
+(noun)|Arundo|genus Arundo|monocot genus (generic term)|liliopsid genus (generic term)
+genus arvicola|1
+(noun)|Arvicola|genus Arvicola|mammal genus (generic term)
+genus asarum|1
+(noun)|Asarum|genus Asarum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus ascaphus|1
+(noun)|Ascaphus|genus Ascaphus|amphibian genus (generic term)
+genus ascaridia|1
+(noun)|Ascaridia|genus Ascaridia|worm genus (generic term)
+genus ascaris|1
+(noun)|Ascaris|genus Ascaris|worm genus (generic term)
+genus asclepias|1
+(noun)|Asclepias|genus Asclepias|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus ascophyllum|1
+(noun)|Ascophyllum|genus Ascophyllum|protoctist genus (generic term)
+genus asimina|1
+(noun)|Asimina|genus Asimina|magnoliid dicot genus (generic term)
+genus asio|1
+(noun)|Asio|genus Asio|bird genus (generic term)
+genus aspalathus|1
+(noun)|Aspalathus|genus Aspalathus|rosid dicot genus (generic term)
+genus asparagus|1
+(noun)|genus Asparagus|liliid monocot genus (generic term)
+genus aspergillus|1
+(noun)|Aspergillus|genus Aspergillus|fungus genus (generic term)
+genus asperula|1
+(noun)|Asperula|genus Asperula|asterid dicot genus (generic term)
+genus asphodeline|1
+(noun)|Asphodeline|genus Asphodeline|liliid monocot genus (generic term)
+genus asphodelus|1
+(noun)|Asphodelus|genus Asphodelus|liliid monocot genus (generic term)
+genus aspidelaps|1
+(noun)|Aspidelaps|genus Aspidelaps|reptile genus (generic term)
+genus aspidiotus|1
+(noun)|Aspidiotus|genus Aspidiotus|arthropod genus (generic term)
+genus aspidistra|1
+(noun)|genus Aspidistra|liliid monocot genus (generic term)
+genus aspidophoroides|1
+(noun)|Aspidophoroides|genus Aspidophoroides|fish genus (generic term)
+genus aspis|1
+(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus (generic term)
+genus asplenium|1
+(noun)|Asplenium|genus Asplenium|fern genus (generic term)
+genus astacus|1
+(noun)|Astacus|genus Astacus|arthropod genus (generic term)
+genus aster|1
+(noun)|genus Aster|asterid dicot genus (generic term)
+genus astilbe|1
+(noun)|genus Astilbe|rosid dicot genus (generic term)
+genus astragalus|1
+(noun)|Astragalus|genus Astragalus|rosid dicot genus (generic term)
+genus astrantia|1
+(noun)|genus Astrantia|rosid dicot genus (generic term)
+genus astreus|1
+(noun)|Astreus|genus Astreus|fungus genus (generic term)
+genus astroloma|1
+(noun)|Astroloma|genus Astroloma|dilleniid dicot genus (generic term)
+genus astronium|1
+(noun)|Astronium|genus Astronium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus astrophyton|1
+(noun)|Astrophyton|genus Astrophyton|echinoderm genus (generic term)
+genus astropogon|1
+(noun)|Astropogon|genus Astropogon|fish genus (generic term)
+genus ateles|1
+(noun)|Ateles|genus Ateles|mammal genus (generic term)
+genus athene|1
+(noun)|Athene|genus Athene|bird genus (generic term)
+genus atherinopsis|1
+(noun)|Atherinopsis|genus Atherinopsis|fish genus (generic term)
+genus atherurus|1
+(noun)|Atherurus|genus Atherurus|mammal genus (generic term)
+genus athrotaxis|1
+(noun)|Athrotaxis|genus Athrotaxis|gymnosperm genus (generic term)
+genus athyrium|1
+(noun)|Athyrium|genus Athyrium|fern genus (generic term)
+genus atrichornis|1
+(noun)|Atrichornis|genus Atrichornis|bird genus (generic term)
+genus atriplex|1
+(noun)|Atriplex|genus Atriplex|caryophylloid dicot genus (generic term)
+genus atropa|1
+(noun)|Atropa|genus Atropa|asterid dicot genus (generic term)
+genus attalea|1
+(noun)|Attalea|genus Attalea|monocot genus (generic term)|liliopsid genus (generic term)
+genus atticus|1
+(noun)|Atticus|genus Atticus|arthropod genus (generic term)
+genus aucuba|1
+(noun)|Aucuba|genus Aucuba|rosid dicot genus (generic term)
+genus aulacorhyncus|1
+(noun)|Aulacorhyncus|genus Aulacorhyncus|bird genus (generic term)
+genus aulostomus|1
+(noun)|Aulostomus|genus Aulostomus|fish genus (generic term)
+genus aureolaria|1
+(noun)|Aureolaria|genus Aureolaria|asterid dicot genus (generic term)
+genus auricularia|1
+(noun)|Auricularia|genus Auricularia|fungus genus (generic term)
+genus auriparus|1
+(noun)|Auriparus|genus Auriparus|bird genus (generic term)
+genus australopithecus|1
+(noun)|genus Australopithecus|Australopithecus|mammal genus (generic term)
+genus austrocedrus|1
+(noun)|Austrocedrus|genus Austrocedrus|gymnosperm genus (generic term)
+genus austrotaxus|1
+(noun)|Austrotaxus|genus Austrotaxus|gymnosperm genus (generic term)
+genus automeris|1
+(noun)|Automeris|genus Automeris|arthropod genus (generic term)
+genus avahi|1
+(noun)|Avahi|genus Avahi|mammal genus (generic term)
+genus avena|1
+(noun)|Avena|genus Avena|plant genus (generic term)
+genus averrhoa|1
+(noun)|Averrhoa|genus Averrhoa|rosid dicot genus (generic term)
+genus avicennia|1
+(noun)|Avicennia|genus Avicennia|asterid dicot genus (generic term)
+genus ayapana|1
+(noun)|genus Ayapana|rosid dicot genus (generic term)
+genus aythya|1
+(noun)|Aythya|genus Aythya|bird genus (generic term)
+genus azadirachta|1
+(noun)|Azadirachta|genus Azadirachta|rosid dicot genus (generic term)
+genus azolla|1
+(noun)|Azolla|genus Azolla|fern genus (generic term)
+genus babesia|1
+(noun)|genus Babesia|genus Piroplasma|protoctist genus (generic term)
+genus babyrousa|1
+(noun)|Babyrousa|genus Babyrousa|mammal genus (generic term)
+genus baccharis|1
+(noun)|Baccharis|genus Baccharis|asterid dicot genus (generic term)
+genus bacillus|1
+(noun)|genus Bacillus|bacteria genus (generic term)
+genus bacteroides|1
+(noun)|Bacteroides|genus Bacteroides|bacteria genus (generic term)
+genus baiomys|1
+(noun)|Baiomys|genus Baiomys|mammal genus (generic term)
+genus bairdiella|1
+(noun)|Bairdiella|genus Bairdiella|fish genus (generic term)
+genus balaena|1
+(noun)|Balaena|genus Balaena|mammal genus (generic term)
+genus balaeniceps|1
+(noun)|Balaeniceps|genus Balaeniceps|bird genus (generic term)
+genus balaenoptera|1
+(noun)|Balaenoptera|genus Balaenoptera|mammal genus (generic term)
+genus balanus|1
+(noun)|Balanus|genus Balanus|arthropod genus (generic term)
+genus balistes|1
+(noun)|Balistes|genus Balistes|fish genus (generic term)
+genus ballota|1
+(noun)|Ballota|genus Ballota|asterid dicot genus (generic term)
+genus balsamorhiza|1
+(noun)|Balsamorhiza|genus Balsamorhiza|asterid dicot genus (generic term)
+genus bambusa|1
+(noun)|Bambusa|genus Bambusa|monocot genus (generic term)|liliopsid genus (generic term)
+genus bankia|1
+(noun)|Bankia|genus Bankia|mollusk genus (generic term)
+genus banksia|1
+(noun)|genus Banksia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus baphia|1
+(noun)|Baphia|genus Baphia|rosid dicot genus (generic term)
+genus baptisia|1
+(noun)|Baptisia|genus Baptisia|rosid dicot genus (generic term)
+genus barbarea|1
+(noun)|Barbarea|genus Barbarea|dilleniid dicot genus (generic term)
+genus barosaurus|1
+(noun)|genus Barosaurus|reptile genus (generic term)
+genus bartle-frere|1
+(noun)|Bartle Frere|genus Bartle-Frere|green dinosaur|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus bartramia|1
+(noun)|Bartramia|genus Bartramia|bird genus (generic term)
+genus basiliscus|1
+(noun)|Basiliscus|genus Basiliscus|reptile genus (generic term)
+genus bassariscus|1
+(noun)|Bassariscus|genus Bassariscus|mammal genus (generic term)
+genus bassia|1
+(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus (generic term)
+genus bathyergus|1
+(noun)|Bathyergus|genus Bathyergus|mammal genus (generic term)
+genus batis|1
+(noun)|Batis|genus Batis|caryophylloid dicot genus (generic term)
+genus batrachoseps|1
+(noun)|Batrachoseps|genus Batrachoseps|amphibian genus (generic term)
+genus bauhinia|1
+(noun)|Bauhinia|genus Bauhinia|rosid dicot genus (generic term)
+genus beaumontia|1
+(noun)|Beaumontia|genus Beaumontia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus begonia|1
+(noun)|genus Begonia|dilleniid dicot genus (generic term)
+genus belamcanda|1
+(noun)|Belamcanda|genus Belamcanda|liliid monocot genus (generic term)
+genus bellis|1
+(noun)|Bellis|genus Bellis|asterid dicot genus (generic term)
+genus bemisia|1
+(noun)|Bemisia|genus Bemisia|arthropod genus (generic term)
+genus bennettitis|1
+(noun)|Bennettitis|genus Bennettitis|gymnosperm genus (generic term)
+genus benzoin|1
+(noun)|Benzoin|genus Benzoin|magnoliid dicot genus (generic term)
+genus berberis|1
+(noun)|Berberis|genus Berberis|magnoliid dicot genus (generic term)
+genus bergenia|1
+(noun)|genus Bergenia|rosid dicot genus (generic term)
+genus beroe|1
+(noun)|genus Beroe|ctenophore genus (generic term)
+genus berteroa|1
+(noun)|Berteroa|genus Berteroa|dilleniid dicot genus (generic term)
+genus bertholletia|1
+(noun)|Bertholletia|genus Bertholletia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus bessera|1
+(noun)|Bessera|genus Bessera|liliid monocot genus (generic term)
+genus besseya|1
+(noun)|Besseya|genus Besseya|asterid dicot genus (generic term)
+genus beta|1
+(noun)|Beta|genus Beta|caryophylloid dicot genus (generic term)|Chenopodiaceae (generic term)|family Chenopodiaceae (generic term)|goosefoot family (generic term)
+genus bettongia|1
+(noun)|Bettongia|genus Bettongia|mammal genus (generic term)
+genus betula|1
+(noun)|Betula|genus Betula|hamamelid dicot genus (generic term)
+genus bibos|1
+(noun)|Bibos|genus Bibos|mammal genus (generic term)
+genus bidens|1
+(noun)|Bidens|genus Bidens|asterid dicot genus (generic term)
+genus bignonia|1
+(noun)|Bignonia|genus Bignonia|asterid dicot genus (generic term)
+genus biscutella|1
+(noun)|Biscutella|genus Biscutella|dilleniid dicot genus (generic term)
+genus bison|1
+(noun)|genus Bison|mammal genus (generic term)
+genus bitis|1
+(noun)|Bitis|genus Bitis|reptile genus (generic term)
+genus blaberus|1
+(noun)|Blaberus|genus Blaberus|arthropod genus (generic term)
+genus blandfordia|1
+(noun)|Blandfordia|genus Blandfordia|liliid monocot genus (generic term)
+genus blarina|1
+(noun)|Blarina|genus Blarina|mammal genus (generic term)
+genus blastocladia|1
+(noun)|Blastocladia|genus Blastocladia|fungus genus (generic term)
+genus blastomyces|1
+(noun)|Blastomyces|genus Blastomyces|fungus genus (generic term)
+genus blatta|1
+(noun)|Blatta|genus Blatta|arthropod genus (generic term)
+genus blattella|1
+(noun)|Blattella|genus Blattella|arthropod genus (generic term)
+genus blechnum|1
+(noun)|Blechnum|genus Blechnum|fern genus (generic term)
+genus blennius|1
+(noun)|Blennius|genus Blennius|fish genus (generic term)
+genus blephilia|1
+(noun)|Blephilia|genus Blephilia|asterid dicot genus (generic term)
+genus bletia|1
+(noun)|genus Bletia|monocot genus (generic term)|liliopsid genus (generic term)
+genus bletilla|1
+(noun)|Bletilla|genus Bletilla|monocot genus (generic term)|liliopsid genus (generic term)
+genus blighia|1
+(noun)|Blighia|genus Blighia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus blissus|1
+(noun)|Blissus|genus Blissus|arthropod genus (generic term)
+genus bloomeria|1
+(noun)|Bloomeria|genus Bloomeria|liliid monocot genus (generic term)
+genus bocconia|1
+(noun)|genus Bocconia|dilleniid dicot genus (generic term)
+genus boehmeria|1
+(noun)|Boehmeria|genus Boehmeria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus bolbitis|1
+(noun)|Bolbitis|genus Bolbitis|fern genus (generic term)
+genus boletellus|1
+(noun)|Boletellus|genus Boletellus|fungus genus (generic term)
+genus boletus|1
+(noun)|Boletus|genus Boletus|fungus genus (generic term)
+genus boltonia|1
+(noun)|Boltonia|genus Boltonia|asterid dicot genus (generic term)
+genus bomarea|1
+(noun)|Bomarea|genus Bomarea|liliid monocot genus (generic term)
+genus bombax|1
+(noun)|Bombax|genus Bombax|dilleniid dicot genus (generic term)
+genus bombina|1
+(noun)|Bombina|genus Bombina|amphibian genus (generic term)
+genus bombus|1
+(noun)|Bombus|genus Bombus|arthropod genus (generic term)
+genus bombycilla|1
+(noun)|Bombycilla|bird genus (generic term)
+genus bombyx|1
+(noun)|Bombyx|genus Bombyx|arthropod genus (generic term)
+genus bonasa|1
+(noun)|Bonasa|genus Bonasa|bird genus (generic term)
+genus borago|1
+(noun)|Borago|genus Borago|plant genus (generic term)
+genus borassus|1
+(noun)|Borassus|genus Borassus|monocot genus (generic term)|liliopsid genus (generic term)
+genus borrelia|1
+(noun)|genus Borrelia|bacteria genus (generic term)
+genus bos|1
+(noun)|Bos|genus Bos|mammal genus (generic term)
+genus boselaphus|1
+(noun)|Boselaphus|genus Boselaphus|mammal genus (generic term)
+genus boswellia|1
+(noun)|Boswellia|genus Boswellia|rosid dicot genus (generic term)
+genus botaurus|1
+(noun)|Botaurus|genus Botaurus|bird genus (generic term)
+genus bothrops|1
+(noun)|Bothrops|genus Bothrops|reptile genus (generic term)
+genus botrychium|1
+(noun)|Botrychium|genus Botrychium|fern genus (generic term)
+genus bougainvillaea|1
+(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus (generic term)
+genus bougainvillea|1
+(noun)|genus Bougainvillea|Bougainvillaea|genus Bougainvillaea|caryophylloid dicot genus (generic term)
+genus bouteloua|1
+(noun)|Bouteloua|genus Bouteloua|monocot genus (generic term)|liliopsid genus (generic term)
+genus bowiea|1
+(noun)|Bowiea|genus Bowiea|liliid monocot genus (generic term)
+genus boykinia|1
+(noun)|Boykinia|genus Boykinia|rosid dicot genus (generic term)
+genus brachinus|1
+(noun)|Brachinus|genus Brachinus|arthropod genus (generic term)
+genus brachychiton|1
+(noun)|Brachychiton|genus Brachychiton|dilleniid dicot genus (generic term)
+genus brachycome|1
+(noun)|Brachycome|genus Brachycome|asterid dicot genus (generic term)
+genus brachystegia|1
+(noun)|Brachystegia|genus Brachystegia|rosid dicot genus (generic term)
+genus bradypus|1
+(noun)|Bradypus|genus Bradypus|mammal genus (generic term)
+genus brama|1
+(noun)|Brama|genus Brama|fish genus (generic term)
+genus branchiobdella|1
+(noun)|Branchiobdella|genus Branchiobdella|worm genus (generic term)
+genus branta|1
+(noun)|Branta|genus Branta|bird genus (generic term)
+genus brasenia|1
+(noun)|Brasenia|genus Brasenia|magnoliid dicot genus (generic term)
+genus brassavola|1
+(noun)|genus Brassavola|monocot genus (generic term)|liliopsid genus (generic term)
+genus brassia|1
+(noun)|Brassia|genus Brassia|monocot genus (generic term)|liliopsid genus (generic term)
+genus brassica|1
+(noun)|Brassica|genus Brassica|dilleniid dicot genus (generic term)
+genus brevoortia|1
+(noun)|Brevoortia|genus Brevoortia|fish genus (generic term)
+genus brickelia|1
+(noun)|Brickellia|genus Brickelia|asterid dicot genus (generic term)
+genus brodiaea|1
+(noun)|genus Brodiaea|liliid monocot genus (generic term)
+genus bromus|1
+(noun)|Bromus|genus Bromus|monocot genus (generic term)|liliopsid genus (generic term)
+genus brontosaurus|1
+(noun)|genus Apatosaurus|genus Brontosaurus|reptile genus (generic term)
+genus broussonetia|1
+(noun)|Broussonetia|genus Broussonetia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus browallia|1
+(noun)|genus Browallia|asterid dicot genus (generic term)
+genus browmius|1
+(noun)|Brosmius|genus Browmius|fish genus (generic term)
+genus bruchus|1
+(noun)|Bruchus|genus Bruchus|arthropod genus (generic term)
+genus bruckenthalia|1
+(noun)|Bruckenthalia|genus Bruckenthalia|dilleniid dicot genus (generic term)
+genus brugmansia|1
+(noun)|Brugmansia|genus Brugmansia|asterid dicot genus (generic term)
+genus brunfelsia|1
+(noun)|Brunfelsia|genus Brunfelsia|asterid dicot genus (generic term)
+genus brya|1
+(noun)|Brya|genus Brya|rosid dicot genus (generic term)
+genus bryanthus|1
+(noun)|genus Bryanthus|dilleniid dicot genus (generic term)
+genus bryonia|1
+(noun)|genus Bryonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus bryum|1
+(noun)|Bryum|genus Bryum|moss genus (generic term)
+genus bubalus|1
+(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus (generic term)
+genus bubo|1
+(noun)|Bubo|genus Bubo|bird genus (generic term)
+genus bubulcus|1
+(noun)|Bubulcus|genus Bubulcus|bird genus (generic term)
+genus bucephala|1
+(noun)|Bucephala|genus Bucephala|bird genus (generic term)
+genus buceros|1
+(noun)|Buceros|genus Buceros|bird genus (generic term)
+genus buchloe|1
+(noun)|Buchloe|genus Buchloe|monocot genus (generic term)|liliopsid genus (generic term)
+genus buckleya|1
+(noun)|genus Buckleya|dilleniid dicot genus (generic term)
+genus buddleia|1
+(noun)|genus Buddleia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus budorcas|1
+(noun)|Budorcas|genus Budorcas|mammal genus (generic term)
+genus bufo|1
+(noun)|genus Bufo|amphibian genus (generic term)
+genus bulnesia|1
+(noun)|Bulnesia|genus Bulnesia|rosid dicot genus (generic term)
+genus bumelia|1
+(noun)|Bumelia|genus Bumelia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus bungarus|1
+(noun)|Bungarus|genus Bungarus|reptile genus (generic term)
+genus buphthalmum|1
+(noun)|Buphthalmum|genus Buphthalmum|asterid dicot genus (generic term)
+genus burhinus|1
+(noun)|Burhinus|genus Burhinus|bird genus (generic term)
+genus burmannia|1
+(noun)|Burmannia|genus Burmannia|monocot genus (generic term)|liliopsid genus (generic term)
+genus burmeisteria|1
+(noun)|Burmeisteria|genus Burmeisteria|mammal genus (generic term)
+genus bursera|1
+(noun)|Bursera|genus Bursera|rosid dicot genus (generic term)
+genus butea|1
+(noun)|Butea|genus Butea|rosid dicot genus (generic term)
+genus buteo|1
+(noun)|Buteo|genus Buteo|bird genus (generic term)
+genus buxus|1
+(noun)|Buxus|genus Buxus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cabassous|1
+(noun)|genus Cabassous|mammal genus (generic term)
+genus cabomba|1
+(noun)|Cabomba|genus Cabomba|magnoliid dicot genus (generic term)
+genus cacajao|1
+(noun)|Cacajao|genus Cacajao|mammal genus (generic term)
+genus cacalia|1
+(noun)|Cacalia|genus Cacalia|asterid dicot genus (generic term)
+genus cacatua|1
+(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus (generic term)
+genus cacicus|1
+(noun)|Cacicus|genus Cacicus|bird genus (generic term)
+genus cadra|1
+(noun)|Cadra|genus Cadra|arthropod genus (generic term)
+genus caenolestes|1
+(noun)|Caenolestes|genus Caenolestes|mammal genus (generic term)
+genus caesalpinia|1
+(noun)|Caesalpinia|genus Caesalpinia|rosid dicot genus (generic term)
+genus caiman|1
+(noun)|genus Caiman|reptile genus (generic term)
+genus cairina|1
+(noun)|Cairina|genus Cairina|bird genus (generic term)
+genus cajanus|1
+(noun)|Cajanus|genus Cajanus|rosid dicot genus (generic term)
+genus cakile|1
+(noun)|Cakile|genus Cakile|dilleniid dicot genus (generic term)
+genus caladenia|1
+(noun)|genus Caladenia|monocot genus (generic term)|liliopsid genus (generic term)
+genus caladium|1
+(noun)|genus Caladium|monocot genus (generic term)|liliopsid genus (generic term)
+genus calamagrostis|1
+(noun)|Calamagrostis|genus Calamagrostis|monocot genus (generic term)|liliopsid genus (generic term)|Gramineae (generic term)|family Gramineae (generic term)|Graminaceae (generic term)|family Graminaceae (generic term)|Poaceae (generic term)|family Poaceae (generic term)|grass family (generic term)
+genus calamintha|1
+(noun)|Calamintha|genus Calamintha|asterid dicot genus (generic term)
+genus calamus|2
+(noun)|genus Calamus|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Calamus|genus Calamus|fish genus (generic term)
+genus calandrinia|1
+(noun)|Calandrinia|genus Calandrinia|caryophylloid dicot genus (generic term)
+genus calanthe|1
+(noun)|genus Calanthe|monocot genus (generic term)|liliopsid genus (generic term)
+genus calceolaria|1
+(noun)|genus Calceolaria|asterid dicot genus (generic term)
+genus calendula|1
+(noun)|genus Calendula|asterid dicot genus (generic term)
+genus calidris|1
+(noun)|Calidris|genus Calidris|bird genus (generic term)
+genus calla|1
+(noun)|Calla|genus Calla|monocot genus (generic term)|liliopsid genus (generic term)
+genus calliandra|1
+(noun)|genus Calliandra|rosid dicot genus (generic term)
+genus callicebus|1
+(noun)|Callicebus|genus Callicebus|mammal genus (generic term)
+genus callimorpha|1
+(noun)|Callimorpha|genus Callimorpha|arthropod genus (generic term)
+genus callinectes|1
+(noun)|Callinectes|genus Callinectes|arthropod genus (generic term)
+genus calliophis|1
+(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus (generic term)
+genus calliphora|1
+(noun)|Calliphora|genus Calliphora|arthropod genus (generic term)
+genus callirhoe|1
+(noun)|Callirhoe|genus Callirhoe|dilleniid dicot genus (generic term)
+genus callisaurus|1
+(noun)|Callisaurus|genus Callisaurus|reptile genus (generic term)
+genus callistephus|1
+(noun)|Callistephus|genus Callistephus|asterid dicot genus (generic term)
+genus callithrix|1
+(noun)|Callithrix|genus Callithrix|mammal genus (generic term)
+genus callitriche|1
+(noun)|Callitriche|genus Callitriche|rosid dicot genus (generic term)
+genus callitris|1
+(noun)|Callitris|genus Callitris|gymnosperm genus (generic term)
+genus callophis|1
+(noun)|Calliophis|genus Calliophis|Callophis|genus Callophis|reptile genus (generic term)
+genus callorhinus|1
+(noun)|Callorhinus|genus Callorhinus|mammal genus (generic term)
+genus calluna|1
+(noun)|Calluna|genus Calluna|dilleniid dicot genus (generic term)
+genus calocarpum|1
+(noun)|Calocarpum|genus Calocarpum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus calocedrus|1
+(noun)|Calocedrus|genus Calocedrus|gymnosperm genus (generic term)
+genus calochortus|1
+(noun)|Calochortus|genus Calochortus|liliid monocot genus (generic term)
+genus calophyllum|1
+(noun)|Calophyllum|genus Calophyllum|dilleniid dicot genus (generic term)
+genus calopogon|1
+(noun)|Calopogon|genus Calopogon|monocot genus (generic term)|liliopsid genus (generic term)
+genus calosoma|1
+(noun)|genus Calosoma|arthropod genus (generic term)
+genus caltha|1
+(noun)|Caltha|genus Caltha|magnoliid dicot genus (generic term)
+genus calvatia|1
+(noun)|Calvatia|genus Calvatia|fungus genus (generic term)
+genus calycanthus|1
+(noun)|Calycanthus|genus Calycanthus|magnoliid dicot genus (generic term)
+genus calycophyllum|1
+(noun)|Calycophyllum|genus Calycophyllum|asterid dicot genus (generic term)
+genus calymmatobacterium|1
+(noun)|Calymmatobacterium|genus Calymmatobacterium|bacteria (generic term)|bacterium (generic term)
+genus calypso|1
+(noun)|genus Calypso|monocot genus (generic term)|liliopsid genus (generic term)
+genus calystegia|1
+(noun)|Calystegia|genus Calystegia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus camassia|1
+(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus (generic term)
+genus cambarus|1
+(noun)|Cambarus|genus Cambarus|arthropod genus (generic term)
+genus camelina|1
+(noun)|Camelina|genus Camelina|dilleniid dicot genus (generic term)
+genus camellia|1
+(noun)|genus Camellia|dilleniid dicot genus (generic term)
+genus camelus|1
+(noun)|Camelus|genus Camelus|mammal genus (generic term)
+genus campanula|1
+(noun)|genus Campanula|plant genus (generic term)
+genus campephilus|1
+(noun)|Campephilus|genus Campephilus|bird genus (generic term)
+genus camponotus|1
+(noun)|Camponotus|genus Camponotus|arthropod genus (generic term)
+genus camptosorus|1
+(noun)|Camptosorus|genus Camptosorus|fern genus (generic term)
+genus campyloneurum|1
+(noun)|Campyloneurum|genus Campyloneurum|fern genus (generic term)
+genus campylorhynchus|1
+(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus (generic term)
+genus canachites|1
+(noun)|Canachites|genus Canachites|bird genus (generic term)
+genus cananga|1
+(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus (generic term)
+genus canangium|1
+(noun)|Cananga|genus Cananga|Canangium|genus Canangium|magnoliid dicot genus (generic term)
+genus canavalia|1
+(noun)|Canavalia|genus Canavalia|rosid dicot genus (generic term)
+genus cancer|1
+(noun)|Cancer|genus Cancer|arthropod genus (generic term)
+genus candida|1
+(noun)|genus Candida|fungus genus (generic term)
+genus canella|1
+(noun)|genus Canella|dilleniid dicot genus (generic term)
+genus canis|1
+(noun)|Canis|genus Canis|mammal genus (generic term)
+genus canna|1
+(noun)|genus Canna|monocot genus (generic term)|liliopsid genus (generic term)
+genus cannabis|1
+(noun)|genus Cannabis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cantharellus|1
+(noun)|Cantharellus|genus Cantharellus|fungus genus (generic term)
+genus capella|1
+(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus (generic term)
+genus capparis|1
+(noun)|Capparis|genus Capparis|dilleniid dicot genus (generic term)
+genus capra|1
+(noun)|Capra|genus Capra|mammal genus (generic term)
+genus caprella|1
+(noun)|Caprella|genus Caprella|arthropod genus (generic term)
+genus capreolus|1
+(noun)|Capreolus|genus Capreolus|mammal genus (generic term)
+genus capricornis|1
+(noun)|Capricornis|genus Capricornis|mammal genus (generic term)
+genus caprimulgus|1
+(noun)|Caprimulgus|genus Caprimulgus|bird genus (generic term)
+genus capros|1
+(noun)|Capros|genus Capros|fish genus (generic term)
+genus capsella|1
+(noun)|Capsella|genus Capsella|dilleniid dicot genus (generic term)
+genus capsicum|1
+(noun)|genus Capsicum|Capsicum|asterid dicot genus (generic term)
+genus caragana|1
+(noun)|genus Caragana|rosid dicot genus (generic term)
+genus caranx|1
+(noun)|Caranx|genus Caranx|fish genus (generic term)
+genus carassius|1
+(noun)|Carassius|genus Carassius|fish genus (generic term)
+genus carcharhinus|1
+(noun)|Carcharhinus|genus Carcharhinus|fish genus (generic term)
+genus carcharias|1
+(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus (generic term)
+genus carcharodon|1
+(noun)|Carcharodon|genus Carcharodon|fish genus (generic term)
+genus cardamine|1
+(noun)|Cardamine|genus Cardamine|dilleniid dicot genus (generic term)
+genus cardiospermum|1
+(noun)|Cardiospermum|genus Cardiospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cardium|1
+(noun)|Cardium|genus Cardium|mollusk genus (generic term)
+genus carduelis|1
+(noun)|Carduelis|genus Carduelis|bird genus (generic term)
+genus carduus|1
+(noun)|Carduus|genus Carduus|asterid dicot genus (generic term)
+genus caretta|1
+(noun)|Caretta|genus Caretta|reptile genus (generic term)
+genus carex|1
+(noun)|Carex|genus Carex|monocot genus (generic term)|liliopsid genus (generic term)
+genus cariama|1
+(noun)|Cariama|genus Cariama|bird genus (generic term)
+genus carica|1
+(noun)|Carica|genus Carica|dilleniid dicot genus (generic term)
+genus carissa|1
+(noun)|genus Carissa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus carlina|1
+(noun)|Carlina|genus Carlina|asterid dicot genus (generic term)
+genus carnegiea|1
+(noun)|Carnegiea|genus Carnegiea|caryophylloid dicot genus (generic term)
+genus carpenteria|1
+(noun)|genus Carpenteria|rosid dicot genus (generic term)
+genus carphophis|1
+(noun)|Carphophis|genus Carphophis|reptile genus (generic term)
+genus carpinus|1
+(noun)|Carpinus|genus Carpinus|hamamelid dicot genus (generic term)
+genus carpobrotus|1
+(noun)|Carpobrotus|genus Carpobrotus|caryophylloid dicot genus (generic term)
+genus carpocapsa|1
+(noun)|Carpocapsa|genus Carpocapsa|arthropod genus (generic term)
+genus carpodacus|1
+(noun)|Carpodacus|genus Carpodacus|bird genus (generic term)
+genus carthamus|1
+(noun)|Carthamus|genus Carthamus|asterid dicot genus (generic term)
+genus carum|1
+(noun)|Carum|genus Carum|rosid dicot genus (generic term)
+genus carya|1
+(noun)|Carya|genus Carya|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus caryocar|1
+(noun)|Caryocar|genus Caryocar|dilleniid dicot genus (generic term)
+genus caryota|1
+(noun)|Caryota|genus Caryota|monocot genus (generic term)|liliopsid genus (generic term)
+genus casmerodius|1
+(noun)|Casmerodius|genus Casmerodius|bird genus (generic term)
+genus cassia|1
+(noun)|genus Cassia|Cassia|rosid dicot genus (generic term)
+genus cassiope|1
+(noun)|Cassiope|genus Cassiope|dilleniid dicot genus (generic term)
+genus castanea|1
+(noun)|Castanea|genus Castanea|hamamelid dicot genus (generic term)
+genus castanopsis|1
+(noun)|Castanopsis|genus Castanopsis|hamamelid dicot genus (generic term)
+genus castanospermum|1
+(noun)|Castanospermum|genus Castanospermum|rosid dicot genus (generic term)
+genus castilleia|1
+(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus (generic term)
+genus castilleja|1
+(noun)|Castilleja|genus Castilleja|Castilleia|genus Castilleia|asterid dicot genus (generic term)
+genus castor|1
+(noun)|Castor|genus Castor|mammal genus (generic term)
+genus castoroides|1
+(noun)|Castoroides|genus Castoroides|mammal genus (generic term)
+genus casuarina|1
+(noun)|genus Casuarina|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus casuarius|1
+(noun)|Casuarius|genus Casuarius|bird genus (generic term)
+genus catacala|1
+(noun)|Catacala|genus Catacala|arthropod genus (generic term)
+genus catalpa|1
+(noun)|genus Catalpa|asterid dicot genus (generic term)
+genus catananche|1
+(noun)|genus Catananche|asterid dicot genus (generic term)
+genus catasetum|1
+(noun)|Catasetum|genus Catasetum|monocot genus (generic term)|liliopsid genus (generic term)
+genus catha|1
+(noun)|Catha|genus Catha|gymnosperm genus (generic term)
+genus catharacta|1
+(noun)|Catharacta|genus Catharacta|bird genus (generic term)
+genus catharanthus|1
+(noun)|Catharanthus|genus Catharanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cathartes|1
+(noun)|Cathartes|genus Cathartes|bird genus (generic term)
+genus cathaya|1
+(noun)|genus Cathaya|gymnosperm genus (generic term)
+genus catoptrophorus|1
+(noun)|Catoptrophorus|genus Catoptrophorus|bird genus (generic term)
+genus catostomus|1
+(noun)|Catostomus|genus Catostomus|fish genus (generic term)
+genus cattleya|1
+(noun)|genus Cattleya|monocot genus (generic term)|liliopsid genus (generic term)
+genus caulophyllum|1
+(noun)|Caulophyllum|genus Caulophyllum|magnoliid dicot genus (generic term)
+genus cavia|1
+(noun)|Cavia|genus Cavia|mammal genus (generic term)
+genus cebuella|1
+(noun)|Cebuella|genus Cebuella|mammal genus (generic term)
+genus cebus|1
+(noun)|Cebus|genus Cebus|mammal genus (generic term)
+genus cecropia|1
+(noun)|Cecropia|genus Cecropia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cedrela|1
+(noun)|Cedrela|genus Cedrela|rosid dicot genus (generic term)
+genus cedrus|1
+(noun)|Cedrus|genus Cedrus|gymnosperm genus (generic term)
+genus ceiba|1
+(noun)|Ceiba|genus Ceiba|dilleniid dicot genus (generic term)
+genus celastrus|1
+(noun)|Celastrus|genus Celastrus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus celosia|1
+(noun)|Celosia|genus Celosia|caryophylloid dicot genus (generic term)
+genus celtis|1
+(noun)|Celtis|genus Celtis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cenchrus|1
+(noun)|Cenchrus|genus Cenchrus|monocot genus (generic term)|liliopsid genus (generic term)
+genus centaurea|1
+(noun)|Centaurea|genus Centaurea|asterid dicot genus (generic term)
+genus centaurium|1
+(noun)|Centaurium|genus Centaurium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus centranthus|1
+(noun)|Centranthus|genus Centranthus|asterid dicot genus (generic term)
+genus centrocercus|1
+(noun)|Centrocercus|genus Centrocercus|bird genus (generic term)
+genus centrolobium|1
+(noun)|Centrolobium|genus Centrolobium|rosid dicot genus (generic term)
+genus centropomus|1
+(noun)|Centropomus|genus Centropomus|fish genus (generic term)
+genus centropristis|1
+(noun)|Centropristis|genus Centropristis|fish genus (generic term)
+genus centropus|1
+(noun)|Centropus|genus Centropus|bird genus (generic term)
+genus centrosema|1
+(noun)|Centrosema|genus Centrosema|rosid dicot genus (generic term)
+genus centunculus|1
+(noun)|Centunculus|genus Centunculus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cephalanthera|1
+(noun)|Cephalanthera|genus Cephalanthera|monocot genus (generic term)|liliopsid genus (generic term)
+genus cephalopterus|1
+(noun)|Cephalopterus|genus Cephalopterus|bird genus (generic term)
+genus cephalotaxus|1
+(noun)|Cephalotaxus|genus Cephalotaxus|gymnosperm genus (generic term)
+genus cephalotus|1
+(noun)|Cephalotus|genus Cephalotus|rosid dicot genus (generic term)
+genus cepphus|1
+(noun)|Cepphus|genus Cepphus|bird genus (generic term)
+genus cerapteryx|1
+(noun)|Cerapteryx|genus Cerapteryx|arthropod genus (generic term)
+genus cerastes|1
+(noun)|genus Cerastes|Aspis|genus Aspis|reptile genus (generic term)
+genus cerastium|1
+(noun)|Cerastium|genus Cerastium|caryophylloid dicot genus (generic term)
+genus ceratitis|1
+(noun)|Ceratitis|genus Ceratitis|arthropod genus (generic term)
+genus ceratodus|1
+(noun)|genus Ceratodus|fish genus (generic term)
+genus ceratonia|1
+(noun)|Ceratonia|genus Ceratonia|rosid dicot genus (generic term)
+genus ceratopetalum|1
+(noun)|Ceratopetalum|genus Ceratopetalum|rosid dicot genus (generic term)
+genus ceratophyllum|1
+(noun)|Ceratophyllum|genus Ceratophyllum|magnoliid dicot genus (generic term)
+genus ceratopogon|1
+(noun)|Ceratopogon|genus Ceratopogon|arthropod genus (generic term)
+genus ceratopteris|1
+(noun)|Ceratopteris|genus Ceratopteris|fern genus (generic term)
+genus ceratosaurus|1
+(noun)|genus Ceratosaurus|reptile genus (generic term)
+genus ceratostomella|1
+(noun)|Ceratostomella|genus Ceratostomella|fungus genus (generic term)
+genus ceratotherium|1
+(noun)|Ceratotherium|genus Ceratotherium|mammal genus (generic term)
+genus ceratozamia|1
+(noun)|genus Ceratozamia|gymnosperm genus (generic term)
+genus cercidiphyllum|1
+(noun)|Cercidiphyllum|genus Cercidiphyllum|magnoliid dicot genus (generic term)
+genus cercidium|1
+(noun)|Cercidium|genus Cercidium|rosid dicot genus (generic term)
+genus cercis|1
+(noun)|Cercis|genus Cercis|rosid dicot genus (generic term)
+genus cercocebus|1
+(noun)|Cercocebus|genus Cercocebus|mammal genus (generic term)
+genus cercopithecus|1
+(noun)|Cercopithecus|genus Cercopithecus|mammal genus (generic term)
+genus cercospora|1
+(noun)|Cercospora|genus Cercospora|fungus genus (generic term)
+genus cercosporella|1
+(noun)|Cercosporella|genus Cercosporella|fungus genus (generic term)
+genus cereus|1
+(noun)|Cereus|genus Cereus|caryophylloid dicot genus (generic term)
+genus ceroxylon|1
+(noun)|Ceroxylon|genus Ceroxylon|monocot genus (generic term)|liliopsid genus (generic term)
+genus certhia|1
+(noun)|Certhia|genus Certhia|bird genus (generic term)
+genus cervus|1
+(noun)|Cervus|genus Cervus|mammal genus (generic term)
+genus ceryle|1
+(noun)|Ceryle|genus Ceryle|bird genus (generic term)
+genus cestrum|1
+(noun)|Cestrum|genus Cestrum|asterid dicot genus (generic term)
+genus cestum|1
+(noun)|Cestum|genus Cestum|ctenophore genus (generic term)
+genus ceterach|1
+(noun)|Ceterach|genus Ceterach|fern genus (generic term)
+genus cetonia|1
+(noun)|Cetonia|genus Cetonia|arthropod genus (generic term)
+genus cetorhinus|1
+(noun)|Cetorhinus|genus Cetorhinus|fish genus (generic term)
+genus cetraria|1
+(noun)|Cetraria|genus Cetraria|fungus genus (generic term)
+genus chaenactis|1
+(noun)|genus Chaenactis|asterid dicot genus (generic term)
+genus chaenomeles|1
+(noun)|Chaenomeles|genus Chaenomeles|rosid dicot genus (generic term)
+genus chaenopsis|1
+(noun)|Chaenopsis|genus Chaenopsis|fish genus (generic term)
+genus chaetodipterus|1
+(noun)|Chaetodipterus|genus Chaetodipterus|fish genus (generic term)
+genus chaetodon|1
+(noun)|genus Chaetodon|fish genus (generic term)
+genus chalcis|1
+(noun)|Chalcis|genus Chalcis|arthropod genus (generic term)
+genus chalcostigma|1
+(noun)|Chalcostigma|genus Chalcostigma|bird genus (generic term)
+genus chamaea|1
+(noun)|Chamaea|genus Chamaea|bird genus (generic term)
+genus chamaecrista|1
+(noun)|Chamaecrista|genus Chamaecrista|rosid dicot genus (generic term)
+genus chamaecyparis|1
+(noun)|Chamaecyparis|genus Chamaecyparis|gymnosperm genus (generic term)
+genus chamaecytisus|1
+(noun)|Chamaecytisus|genus Chamaecytisus|rosid dicot genus (generic term)
+genus chamaedaphne|1
+(noun)|Chamaedaphne|genus Chamaedaphne|dilleniid dicot genus (generic term)
+genus chamaeleo|1
+(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus (generic term)
+genus chamaeleon|1
+(noun)|Chamaeleo|genus Chamaeleo|genus Chamaeleon|reptile genus (generic term)
+genus chamaemelum|1
+(noun)|Chamaemelum|genus Chamaemelum|asterid dicot genus (generic term)
+genus chara|1
+(noun)|Chara|genus Chara|protoctist genus (generic term)
+genus charadrius|1
+(noun)|Charadrius|genus Charadrius|bird genus (generic term)
+genus charina|1
+(noun)|Charina|genus Charina|reptile genus (generic term)
+genus charronia|1
+(noun)|Charronia|genus Charronia|mammal genus (generic term)
+genus chateura|1
+(noun)|Chateura|genus Chateura|bird genus (generic term)
+genus chauna|1
+(noun)|Chauna|genus Chauna|bird genus (generic term)
+genus cheilanthes|1
+(noun)|Cheilanthes|genus Cheilanthes|fern genus (generic term)
+genus cheiranthus|1
+(noun)|Cheiranthus|genus Cheiranthus|dilleniid dicot genus (generic term)
+genus chelidonium|1
+(noun)|Chelidonium|genus Chelidonium|dilleniid dicot genus (generic term)
+genus chelifer|1
+(noun)|Chelifer|genus Chelifer|arthropod genus (generic term)
+genus chelone|1
+(noun)|Chelone|genus Chelone|asterid dicot genus (generic term)
+genus chelonia|1
+(noun)|Chelonia|genus Chelonia|reptile genus (generic term)
+genus chelydra|1
+(noun)|Chelydra|genus Chelydra|reptile genus (generic term)
+genus chenopodium|1
+(noun)|Chenopodium|genus Chenopodium|caryophylloid dicot genus (generic term)
+genus chilomastix|1
+(noun)|Chilomastix|genus Chilomastix|protoctist genus (generic term)
+genus chilomeniscus|1
+(noun)|Chilomeniscus|genus Chilomeniscus|reptile genus (generic term)
+genus chilomycterus|1
+(noun)|Chilomycterus|genus Chilomycterus|fish genus (generic term)
+genus chilopsis|1
+(noun)|Chilopsis|genus Chilopsis|asterid dicot genus (generic term)
+genus chimaera|1
+(noun)|genus Chimaera|fish genus (generic term)
+genus chimaphila|1
+(noun)|Chimaphila|genus Chimaphila|dilleniid dicot genus (generic term)
+genus chimonanthus|1
+(noun)|Chimonanthus|genus Chimonanthus|magnoliid dicot genus (generic term)
+genus chinchilla|1
+(noun)|genus Chinchilla|mammal genus (generic term)
+genus chinchona|1
+(noun)|genus Cinchona|genus Chinchona|asterid dicot genus (generic term)
+genus chiococca|1
+(noun)|Chiococca|genus Chiococca|asterid dicot genus (generic term)
+genus chionanthus|1
+(noun)|Chionanthus|genus Chionanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus chirocephalus|1
+(noun)|Artemia|genus Artemia|Chirocephalus|genus Chirocephalus|arthropod genus (generic term)
+genus chironomus|1
+(noun)|Chironomus|genus Chironomus|arthropod genus (generic term)
+genus chiton|1
+(noun)|genus Chiton|mollusk genus (generic term)
+genus chlamydera|1
+(noun)|Chlamydera|genus Chlamydera|bird genus (generic term)
+genus chlamydia|1
+(noun)|genus Chlamydia|bacteria genus (generic term)
+genus chlamydomonas|1
+(noun)|Chlamydomonas|genus Chlamydomonas|protoctist genus (generic term)
+genus chlamydosaurus|1
+(noun)|Chlamydosaurus|genus Chlamydosaurus|reptile genus (generic term)
+genus chlamyphorus|1
+(noun)|Chlamyphorus|genus Chlamyphorus|mammal genus (generic term)
+genus chloranthus|1
+(noun)|Chloranthus|genus Chloranthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus chlorella|1
+(noun)|genus Chlorella|protoctist genus (generic term)
+genus chloris|1
+(noun)|Chloris|genus Chloris|monocot genus (generic term)|liliopsid genus (generic term)
+genus chlorococcum|1
+(noun)|Chlorococcum|genus Chlorococcum|protoctist genus (generic term)
+genus chlorophis|1
+(noun)|Chlorophis|genus Chlorophis|reptile genus (generic term)
+genus chlorophoneus|1
+(noun)|Chlorophoneus|genus Chlorophoneus|bird genus (generic term)
+genus chlorophyllum|1
+(noun)|genus Chlorophyllum|fungus genus (generic term)
+genus chloroxylon|1
+(noun)|Chloroxylon|genus Chloroxylon|rosid dicot genus (generic term)
+genus chlorura|1
+(noun)|Chlorura|genus Chlorura|bird genus (generic term)
+genus choeronycteris|1
+(noun)|Choeronycteris|genus Choeronycteris|mammal genus (generic term)
+genus choloepus|1
+(noun)|Choloepus|genus Choloepus|mammal genus (generic term)
+genus chondrus|1
+(noun)|Chondrus|genus Chondrus|protoctist genus (generic term)
+genus chordeiles|1
+(noun)|Chordeiles|genus Chordeiles|bird genus (generic term)
+genus chordospartium|1
+(noun)|Chordospartium|genus Chordospartium|rosid dicot genus (generic term)
+genus choriotis|1
+(noun)|Choriotis|genus Choriotis|bird genus (generic term)
+genus chorizagrotis|1
+(noun)|Chorizagrotis|genus Chorizagrotis|arthropod genus (generic term)
+genus chorizema|1
+(noun)|Chorizema|genus Chorizema|rosid dicot genus (generic term)
+genus christella|1
+(noun)|genus Christella|fern genus (generic term)
+genus chronoperates|1
+(noun)|Chronoperates|genus Chronoperates|reptile genus (generic term)
+genus chrysanthemum|1
+(noun)|genus Chrysanthemum|asterid dicot genus (generic term)
+genus chrysaora|1
+(noun)|Chrysaora|genus Chrysaora|coelenterate genus (generic term)
+genus chrysemys|1
+(noun)|Chrysemys|genus Chrysemys|reptile genus (generic term)
+genus chrysobalanus|1
+(noun)|Chrysobalanus|genus Chrysobalanus|rosid dicot genus (generic term)
+genus chrysochloris|1
+(noun)|Chrysochloris|genus Chrysochloris|mammal genus (generic term)
+genus chrysolepis|1
+(noun)|Chrysolepis|genus Chrysolepis|hamamelid dicot genus (generic term)
+genus chrysolophus|1
+(noun)|Chrysolophus|genus Chrysolophus|bird genus (generic term)
+genus chrysophrys|1
+(noun)|Chrysophrys|genus Chrysophrys|fish genus (generic term)
+genus chrysophyllum|1
+(noun)|Chrysophyllum|genus Chrysophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus chrysopsis|1
+(noun)|Chrysopsis|genus Chrysopsis|asterid dicot genus (generic term)
+genus chrysosplenium|1
+(noun)|Chrysosplenium|genus Chrysosplenium|rosid dicot genus (generic term)
+genus chrysothamnus|1
+(noun)|Chrysothamnus|genus Chrysothamnus|asterid dicot genus (generic term)
+genus chunga|1
+(noun)|genus Chunga|bird genus (generic term)
+genus cibotium|1
+(noun)|Cibotium|genus Cibotium|fern genus (generic term)
+genus cicada|1
+(noun)|genus Cicada|arthropod genus (generic term)
+genus cicer|1
+(noun)|Cicer|genus Cicer|rosid dicot genus (generic term)
+genus cichorium|1
+(noun)|Cichorium|genus Cichorium|asterid dicot genus (generic term)
+genus ciconia|1
+(noun)|Ciconia|genus Ciconia|bird genus (generic term)
+genus cicuta|1
+(noun)|Cicuta|genus Cicuta|rosid dicot genus (generic term)
+genus cimex|1
+(noun)|Cimex|genus Cimex|arthropod genus (generic term)
+genus cimicifuga|1
+(noun)|Cimicifuga|genus Cimicifuga|magnoliid dicot genus (generic term)
+genus cinchona|1
+(noun)|genus Cinchona|genus Chinchona|asterid dicot genus (generic term)
+genus cinclus|1
+(noun)|Cinclus|genus Cinclus|bird genus (generic term)
+genus cinnamomum|1
+(noun)|Cinnamomum|genus Cinnamomum|magnoliid dicot genus (generic term)
+genus circaea|1
+(noun)|Circaea|genus Circaea|rosid dicot genus (generic term)
+genus circaetus|1
+(noun)|Circaetus|genus Circaetus|bird genus (generic term)
+genus circus|1
+(noun)|Circus|genus Circus|bird genus (generic term)
+genus cirsium|1
+(noun)|Cirsium|genus Cirsium|asterid dicot genus (generic term)
+genus cistothorus|1
+(noun)|Cistothorus|genus Cistothorus|bird genus (generic term)
+genus cistus|1
+(noun)|Cistus|genus Cistus|dilleniid dicot genus (generic term)
+genus citellus|1
+(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus (generic term)
+genus citharichthys|1
+(noun)|Citharichthys|genus Citharichthys|fish genus (generic term)
+genus citroncirus|1
+(noun)|Citroncirus|genus Citroncirus|rosid dicot genus (generic term)
+genus citrullus|1
+(noun)|Citrullus|genus Citrullus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus citrus|1
+(noun)|genus Citrus|rosid dicot genus (generic term)
+genus cladonia|1
+(noun)|Cladonia|genus Cladonia|fungus genus (generic term)
+genus cladorhyncus|1
+(noun)|Cladorhyncus|genus Cladorhyncus|bird genus (generic term)
+genus cladrastis|1
+(noun)|Cladrastis|genus Cladrastis|rosid dicot genus (generic term)
+genus clangula|1
+(noun)|Clangula|genus Clangula|bird genus (generic term)
+genus clathrus|1
+(noun)|Clathrus|genus Clathrus|fungus genus (generic term)
+genus claviceps|1
+(noun)|Claviceps|genus Claviceps|fungus genus (generic term)
+genus claytonia|1
+(noun)|Claytonia|genus Claytonia|caryophylloid dicot genus (generic term)
+genus cleistes|1
+(noun)|Cleistes|genus Cleistes|monocot genus (generic term)|liliopsid genus (generic term)
+genus clematis|1
+(noun)|genus Clematis|magnoliid dicot genus (generic term)
+genus cleome|1
+(noun)|genus Cleome|Cleome|dilleniid dicot genus (generic term)
+genus clethra|1
+(noun)|Clethra|genus Clethra|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus clethrionomys|1
+(noun)|Clethrionomys|genus Clethrionomys|mammal genus (generic term)
+genus clianthus|1
+(noun)|genus Clianthus|rosid dicot genus (generic term)
+genus cliftonia|1
+(noun)|Cliftonia|genus Cliftonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus clinopodium|1
+(noun)|Clinopodium|genus Clinopodium|asterid dicot genus (generic term)
+genus clintonia|1
+(noun)|genus Clintonia|liliid monocot genus (generic term)
+genus clitocybe|1
+(noun)|Clitocybe|genus Clitocybe|fungus genus (generic term)
+genus clitoria|1
+(noun)|Clitoria|genus Clitoria|rosid dicot genus (generic term)
+genus clostridium|1
+(noun)|genus Clostridium|bacteria genus (generic term)
+genus clupea|1
+(noun)|Clupea|genus Clupea|fish genus (generic term)
+genus clusia|1
+(noun)|genus Clusia|dilleniid dicot genus (generic term)
+genus cnemidophorus|1
+(noun)|Cnemidophorus|genus Cnemidophorus|reptile genus (generic term)
+genus cnicus|1
+(noun)|Cnicus|genus Cnicus|asterid dicot genus (generic term)
+genus cnidoscolus|1
+(noun)|Cnidoscolus|genus Cnidoscolus|rosid dicot genus (generic term)
+genus coccothraustes|1
+(noun)|Coccothraustes|genus Coccothraustes|bird genus (generic term)
+genus cocculus|1
+(noun)|Cocculus|genus Cocculus|magnoliid dicot genus (generic term)
+genus coccus|1
+(noun)|genus Coccus|arthropod genus (generic term)
+genus coccyzus|1
+(noun)|Coccyzus|genus Coccyzus|bird genus (generic term)
+genus cochlearia|1
+(noun)|Cochlearia|genus Cochlearia|dilleniid dicot genus (generic term)
+genus cochlearius|1
+(noun)|Cochlearius|genus Cochlearius|bird genus (generic term)
+genus cocos|1
+(noun)|Cocos|genus Cocos|monocot genus (generic term)|liliopsid genus (generic term)
+genus codariocalyx|1
+(noun)|Codariocalyx|genus Codariocalyx|rosid dicot genus (generic term)
+genus codiaeum|1
+(noun)|Codiaeum|genus Codiaeum|rosid dicot genus (generic term)
+genus coeloglossum|1
+(noun)|Coeloglossum|genus Coeloglossum|monocot genus (generic term)|liliopsid genus (generic term)
+genus coelogyne|1
+(noun)|genus Coelogyne|monocot genus (generic term)|liliopsid genus (generic term)
+genus coelophysis|1
+(noun)|genus Coelophysis|reptile genus (generic term)
+genus coereba|1
+(noun)|Coereba|genus Coereba|bird genus (generic term)
+genus coffea|1
+(noun)|Coffea|genus Coffea|asterid dicot genus (generic term)
+genus cola|1
+(noun)|Cola|genus Cola|dilleniid dicot genus (generic term)
+genus colaptes|1
+(noun)|Colaptes|genus Colaptes|bird genus (generic term)
+genus colchicum|1
+(noun)|Colchicum|genus Colchicum|liliid monocot genus (generic term)
+genus coleonyx|1
+(noun)|Coleonyx|genus Coleonyx|reptile genus (generic term)
+genus coleus|1
+(noun)|genus Coleus|asterid dicot genus (generic term)
+genus colinus|1
+(noun)|Colinus|genus Colinus|bird genus (generic term)
+genus collinsia|1
+(noun)|Collinsia|genus Collinsia|asterid dicot genus (generic term)
+genus collinsonia|1
+(noun)|Collinsonia|genus Collinsonia|asterid dicot genus (generic term)
+genus collocalia|1
+(noun)|Collocalia|genus Collocalia|bird genus (generic term)
+genus colobus|1
+(noun)|genus Colobus|mammal genus (generic term)
+genus colocasia|1
+(noun)|Colocasia|genus Colocasia|monocot genus (generic term)|liliopsid genus (generic term)
+genus coluber|1
+(noun)|Coluber|genus Coluber|reptile genus (generic term)
+genus colubrina|1
+(noun)|Colubrina|genus Colubrina|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus columba|1
+(noun)|Columba|genus Columba|bird genus (generic term)
+genus columnea|1
+(noun)|genus Columnea|asterid dicot genus (generic term)
+genus colutea|1
+(noun)|Colutea|genus Colutea|rosid dicot genus (generic term)
+genus comandra|1
+(noun)|Comandra|genus Comandra|dilleniid dicot genus (generic term)
+genus comatula|1
+(noun)|Comatula|genus Comatula|Antedon (generic term)|genus Antedon (generic term)
+genus combretum|1
+(noun)|genus Combretum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus commelina|1
+(noun)|genus Commelina|monocot genus (generic term)|liliopsid genus (generic term)
+genus commiphora|1
+(noun)|Commiphora|genus Commiphora|rosid dicot genus (generic term)
+genus compsognathus|1
+(noun)|genus Compsognathus|reptile genus (generic term)
+genus comptonia|1
+(noun)|Comptonia|genus Comptonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus condylura|1
+(noun)|Condylura|genus Condylura|mammal genus (generic term)
+genus conepatus|1
+(noun)|Conepatus|genus Conepatus|mammal genus (generic term)
+genus conferva|1
+(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus (generic term)
+genus conilurus|1
+(noun)|Conilurus|genus Conilurus|mammal genus (generic term)
+genus coniogramme|1
+(noun)|Coniogramme|genus Coniogramme|fern genus (generic term)
+genus conium|1
+(noun)|Conium|genus Conium|rosid dicot genus (generic term)
+genus connarus|1
+(noun)|Connarus|genus Connarus|rosid dicot genus (generic term)
+genus connochaetes|1
+(noun)|Connochaetes|genus Connochaetes|mammal genus (generic term)
+genus conocarpus|1
+(noun)|Conocarpus|genus Conocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus conoclinium|1
+(noun)|Conoclinium|genus Conoclinium|asterid dicot genus (generic term)
+genus conopodium|1
+(noun)|Conopodium|genus Conopodium|rosid dicot genus (generic term)
+genus conospermum|1
+(noun)|Conospermum|genus Conospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus conradina|1
+(noun)|Conradina|genus Conradina|asterid dicot genus (generic term)
+genus consolida|1
+(noun)|Consolida|genus Consolida|magnoliid dicot genus (generic term)
+genus contopus|1
+(noun)|Contopus|genus Contopus|bird genus (generic term)
+genus conuropsis|1
+(noun)|Conuropsis|genus Conuropsis|bird genus (generic term)
+genus convallaria|1
+(noun)|Convallaria|genus Convallaria|liliid monocot genus (generic term)
+genus convolvulus|1
+(noun)|genus Convolvulus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus conyza|1
+(noun)|Conyza|genus Conyza|asterid dicot genus (generic term)
+genus copernicia|1
+(noun)|Copernicia|genus Copernicia|monocot genus (generic term)|liliopsid genus (generic term)
+genus coprinus|1
+(noun)|Coprinus|genus Coprinus|fungus genus (generic term)
+genus coptis|1
+(noun)|Coptis|genus Coptis|magnoliid dicot genus (generic term)
+genus coracias|1
+(noun)|Coracias|genus Coracias|bird genus (generic term)
+genus coragyps|1
+(noun)|Coragyps|genus Coragyps|bird genus (generic term)
+genus corallorhiza|1
+(noun)|Corallorhiza|genus Corallorhiza|monocot genus (generic term)|liliopsid genus (generic term)
+genus corchorus|1
+(noun)|Corchorus|genus Corchorus|dilleniid dicot genus (generic term)
+genus cordaites|1
+(noun)|Cordaites|genus Cordaites|gymnosperm genus (generic term)
+genus cordia|1
+(noun)|Cordia|genus Cordia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cordyline|1
+(noun)|Cordyline|genus Cordyline|liliid monocot genus (generic term)
+genus cordylus|1
+(noun)|Cordylus|genus Cordylus|reptile genus (generic term)
+genus coregonus|1
+(noun)|Coregonus|genus Coregonus|fish genus (generic term)
+genus coreopsis|1
+(noun)|genus Coreopsis|asterid dicot genus (generic term)
+genus coriandrum|1
+(noun)|Coriandrum|genus Coriandrum|rosid dicot genus (generic term)
+genus corixa|1
+(noun)|Corixa|genus Corixa|arthropod genus (generic term)
+genus cornus|1
+(noun)|Cornus|genus Cornus|rosid dicot genus (generic term)
+genus corokia|1
+(noun)|Corokia|genus Corokia|rosid dicot genus (generic term)
+genus coronilla|1
+(noun)|genus Coronilla|rosid dicot genus (generic term)
+genus corozo|1
+(noun)|genus Corozo|monocot genus (generic term)|liliopsid genus (generic term)
+genus cortaderia|1
+(noun)|Cortaderia|genus Cortaderia|monocot genus (generic term)|liliopsid genus (generic term)
+genus corticium|1
+(noun)|Corticium|genus Corticium|fungus genus (generic term)
+genus cortinarius|1
+(noun)|Cortinarius|genus Cortinarius|fungus genus (generic term)
+genus corvus|1
+(noun)|Corvus|genus Corvus|bird genus (generic term)
+genus coryanthes|1
+(noun)|Coryanthes|genus Coryanthes|monocot genus (generic term)|liliopsid genus (generic term)
+genus corydalis|2
+(noun)|Corydalis|genus Corydalis|dilleniid dicot genus (generic term)
+(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus (generic term)
+genus corydalus|1
+(noun)|Corydalus|genus Corydalus|Corydalis|genus Corydalis|arthropod genus (generic term)
+genus corylopsis|1
+(noun)|Corylopsis|genus Corylopsis|plant genus (generic term)
+genus corylus|1
+(noun)|Corylus|genus Corylus|hamamelid dicot genus (generic term)
+genus corynebacterium|1
+(noun)|genus Corynebacterium|bacteria genus (generic term)
+genus corypha|1
+(noun)|Corypha|genus Corypha|monocot genus (generic term)|liliopsid genus (generic term)
+genus coryphantha|1
+(noun)|genus Coryphantha|caryophylloid dicot genus (generic term)
+genus corythosaurus|1
+(noun)|genus Corythosaurus|reptile genus (generic term)
+genus coscoroba|1
+(noun)|genus Coscoroba|bird genus (generic term)
+genus cosmocampus|1
+(noun)|Cosmocampus|genus Cosmocampus|fish genus (generic term)
+genus cosmos|1
+(noun)|genus Cosmos|asterid dicot genus (generic term)
+genus costia|1
+(noun)|genus Costia|protoctist genus (generic term)
+genus cotinga|1
+(noun)|genus Cotinga|bird genus (generic term)
+genus cotinus|1
+(noun)|Cotinus|genus Cotinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cotoneaster|1
+(noun)|genus Cotoneaster|rosid dicot genus (generic term)
+genus cottus|1
+(noun)|Cottus|genus Cottus|fish genus (generic term)
+genus cotula|1
+(noun)|Cotula|genus Cotula|asterid dicot genus (generic term)
+genus coturnix|1
+(noun)|Coturnix|genus Coturnix|bird genus (generic term)
+genus coumarouna|1
+(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus (generic term)
+genus cracticus|1
+(noun)|Cracticus|genus Cracticus|bird genus (generic term)
+genus crambe|1
+(noun)|Crambe|genus Crambe|dilleniid dicot genus (generic term)
+genus crangon|1
+(noun)|Crangon|genus Crangon|arthropod genus (generic term)
+genus craspedia|1
+(noun)|Craspedia|genus Craspedia|asterid dicot genus (generic term)
+genus crassostrea|1
+(noun)|Crassostrea|genus Crassostrea|mollusk genus (generic term)
+genus crassula|1
+(noun)|Crassula|genus Crassula|plant genus (generic term)
+genus crataegus|1
+(noun)|Crataegus|genus Crataegus|rosid dicot genus (generic term)
+genus crateva|1
+(noun)|Crateva|genus Crateva|dilleniid dicot genus (generic term)
+genus crax|1
+(noun)|Crax|genus Crax|bird genus (generic term)
+genus crepis|1
+(noun)|Crepis|genus Crepis|asterid dicot genus (generic term)
+genus crescentia|1
+(noun)|Crescentia|genus Crescentia|asterid dicot genus (generic term)
+genus crex|1
+(noun)|Crex|genus Crex|bird genus (generic term)
+genus cricetus|1
+(noun)|Cricetus|genus Cricetus|mammal genus (generic term)
+genus crocethia|1
+(noun)|Crocethia|genus Crocethia|bird genus (generic term)
+genus crocodilus|1
+(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus (generic term)
+genus crocodylus|1
+(noun)|Crocodylus|genus Crocodylus|Crocodilus|genus Crocodilus|reptile genus (generic term)
+genus crocus|1
+(noun)|genus Crocus|liliid monocot genus (generic term)
+genus crocuta|1
+(noun)|Crocuta|genus Crocuta|mammal genus (generic term)
+genus cronartium|1
+(noun)|Cronartium|genus Cronartium|fungus genus (generic term)
+genus crotalaria|1
+(noun)|genus Crotalaria|rosid dicot genus (generic term)
+genus crotalus|1
+(noun)|Crotalus|genus Crotalus|reptile genus (generic term)
+genus crotaphytus|1
+(noun)|Crotaphytus|genus Crotaphytus|reptile genus (generic term)
+genus croton|1
+(noun)|genus Croton|rosid dicot genus (generic term)
+genus crotophaga|1
+(noun)|Crotophaga|genus Crotophaga|bird genus (generic term)
+genus cryptacanthodes|1
+(noun)|Cryptacanthodes|genus Cryptacanthodes|fish genus (generic term)
+genus cryptobranchus|1
+(noun)|Cryptobranchus|genus Cryptobranchus|amphibian genus (generic term)
+genus cryptocercus|1
+(noun)|Cryptocercus|genus Cryptocercus|arthropod genus (generic term)
+genus cryptocoryne|1
+(noun)|genus Cryptocoryne|monocot genus (generic term)|liliopsid genus (generic term)
+genus cryptogramma|1
+(noun)|Cryptogramma|genus Cryptogramma|fern genus (generic term)
+genus cryptomeria|1
+(noun)|Cryptomeria|genus Cryptomeria|gymnosperm genus (generic term)
+genus cryptoprocta|1
+(noun)|Cryptoprocta|genus Cryptoprocta|civet (generic term)|civet cat (generic term)
+genus cryptotermes|1
+(noun)|Cryptotermes|genus Cryptotermes|arthropod genus (generic term)
+genus cryptotis|1
+(noun)|Cryptotis|genus Cryptotis|mammal genus (generic term)
+genus ctenocephalides|1
+(noun)|Ctenocephalides|genus Ctenocephalides|arthropod genus (generic term)
+genus ctenocephalus|1
+(noun)|Ctenocephalus|genus Ctenocephalus|Ctenocephalides (generic term)|genus Ctenocephalides (generic term)
+genus cuculus|1
+(noun)|Cuculus|genus Cuculus|bird genus (generic term)
+genus cucumis|1
+(noun)|Cucumis|genus Cucumis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cucurbita|1
+(noun)|Cucurbita|genus Cucurbita|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus culcita|1
+(noun)|Culcita|genus Culcita|fern genus (generic term)
+genus culex|1
+(noun)|Culex|genus Culex|arthropod genus (generic term)
+genus cuminum|1
+(noun)|Cuminum|genus Cuminum|rosid dicot genus (generic term)
+genus cuniculus|1
+(noun)|Cuniculus|genus Cuniculus|mammal genus (generic term)
+genus cuon|1
+(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus (generic term)
+genus cupressus|1
+(noun)|Cupressus|genus Cupressus|gymnosperm genus (generic term)
+genus curcuma|1
+(noun)|Curcuma|genus Curcuma|monocot genus (generic term)|liliopsid genus (generic term)
+genus cursorius|1
+(noun)|Cursorius|genus Cursorius|bird genus (generic term)
+genus curtisia|1
+(noun)|Curtisia|genus Curtisia|rosid dicot genus (generic term)
+genus cuscuta|1
+(noun)|Cuscuta|genus Cuscuta|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cuterebra|1
+(noun)|Cuterebra|genus Cuterebra|arthropod genus (generic term)
+genus cyamopsis|1
+(noun)|Cyamopsis|genus Cyamopsis|rosid dicot genus (generic term)
+genus cyamus|1
+(noun)|Cyamus|genus Cyamus|arthropod genus (generic term)
+genus cyanocitta|1
+(noun)|Cyanocitta|genus Cyanocitta|bird genus (generic term)
+genus cyathea|1
+(noun)|Cyathea|genus Cyathea|fern genus (generic term)
+genus cycas|1
+(noun)|Cycas|genus Cycas|gymnosperm genus (generic term)
+genus cyclamen|1
+(noun)|genus Cyclamen|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cycloloma|1
+(noun)|Cycloloma|genus Cycloloma|caryophylloid dicot genus (generic term)
+genus cyclopes|1
+(noun)|Cyclopes|genus Cyclopes|mammal genus (generic term)
+genus cyclophorus|1
+(noun)|Cyclophorus|genus Cyclophorus|fern genus (generic term)
+genus cyclops|1
+(noun)|genus Cyclops|arthropod genus (generic term)
+genus cyclopterus|1
+(noun)|Cyclopterus|genus Cyclopterus|fish genus (generic term)
+genus cyclosorus|1
+(noun)|Cyclosorus|genus Cyclosorus|fern genus (generic term)
+genus cycnoches|1
+(noun)|Cycnoches|genus Cycnoches|monocot genus (generic term)|liliopsid genus (generic term)
+genus cydonia|1
+(noun)|Cydonia|genus Cydonia|rosid dicot genus (generic term)
+genus cygnus|1
+(noun)|Cygnus|genus Cygnus|bird genus (generic term)
+genus cymbidium|1
+(noun)|genus Cymbidium|monocot genus (generic term)|liliopsid genus (generic term)
+genus cynancum|1
+(noun)|genus Cynancum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cynara|1
+(noun)|Cynara|genus Cynara|asterid dicot genus (generic term)
+genus cynips|1
+(noun)|Cynips|genus Cynips|arthropod genus (generic term)
+genus cynocephalus|1
+(noun)|Cynocephalus|genus Cynocephalus|mammal genus (generic term)
+genus cynodon|1
+(noun)|Cynodon|genus Cynodon|monocot genus (generic term)|liliopsid genus (generic term)
+genus cynoglossum|1
+(noun)|Cynoglossum|genus Cynoglossum|plant genus (generic term)
+genus cynomys|1
+(noun)|Cynomys|genus Cynomys|mammal genus (generic term)
+genus cynopterus|1
+(noun)|Cynopterus|genus Cynopterus|mammal genus (generic term)
+genus cynoscion|1
+(noun)|Cynoscion|genus Cynoscion|fish genus (generic term)
+genus cyon|1
+(noun)|Cuon|Cyon|genus Cuon|genus Cyon|mammal genus (generic term)
+genus cyperus|1
+(noun)|Cyperus|genus Cyperus|monocot genus (generic term)|liliopsid genus (generic term)|Cyperaceae (generic term)|family Cyperaceae (generic term)|sedge family (generic term)
+genus cyphomandra|1
+(noun)|Cyphomandra|genus Cyphomandra|asterid dicot genus (generic term)
+genus cypraea|1
+(noun)|Cypraea|genus Cypraea|mollusk genus (generic term)
+genus cyprinus|1
+(noun)|Cyprinus|genus Cyprinus|fish genus (generic term)
+genus cypripedium|1
+(noun)|Cypripedium|genus Cypripedium|monocot genus (generic term)|liliopsid genus (generic term)
+genus cyrilla|1
+(noun)|genus Cyrilla|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus cyrtomium|1
+(noun)|Cyrtomium|genus Cyrtomium|fern genus (generic term)
+genus cystophora|1
+(noun)|Cystophora|genus Cystophora|mammal genus (generic term)
+genus cystopteris|1
+(noun)|Cystopteris|genus Cystopteris|fern genus (generic term)
+genus cytisus|1
+(noun)|Cytisus|genus Cytisus|rosid dicot genus (generic term)
+genus daboecia|1
+(noun)|Daboecia|genus Daboecia|dilleniid dicot genus (generic term)
+genus dacelo|1
+(noun)|Dacelo|genus Dacelo|bird genus (generic term)
+genus dacrycarpus|1
+(noun)|Dacrycarpus|genus Dacrycarpus|gymnosperm genus (generic term)
+genus dacrydium|1
+(noun)|Dacrydium|genus Dacrydium|gymnosperm genus (generic term)
+genus dacrymyces|1
+(noun)|Dacrymyces|genus Dacrymyces|fungus genus (generic term)
+genus dactylis|1
+(noun)|Dactylis|genus Dactylis|monocot genus (generic term)|liliopsid genus (generic term)
+genus dactyloctenium|1
+(noun)|Dactyloctenium|genus Dactyloctenium|monocot genus (generic term)|liliopsid genus (generic term)
+genus dactylopius|1
+(noun)|Dactylopius|genus Dactylopius|arthropod genus (generic term)
+genus dactylopterus|1
+(noun)|Dactylopterus|genus Dactylopterus|fish genus (generic term)
+genus dactylorhiza|1
+(noun)|Dactylorhiza|genus Dactylorhiza|monocot genus (generic term)|liliopsid genus (generic term)
+genus dahlia|1
+(noun)|genus Dahlia|asterid dicot genus (generic term)
+genus dalbergia|1
+(noun)|Dalbergia|genus Dalbergia|rosid dicot genus (generic term)
+genus dalea|1
+(noun)|Dalea|genus Dalea|rosid dicot genus (generic term)
+genus dama|1
+(noun)|Dama|genus Dama|mammal genus (generic term)
+genus damaliscus|1
+(noun)|Damaliscus|genus Damaliscus|mammal genus (generic term)
+genus danaea|1
+(noun)|Danaea|genus Danaea|fern genus (generic term)
+genus danaus|1
+(noun)|Danaus|genus Danaus|arthropod genus (generic term)
+genus daphne|1
+(noun)|genus Daphne|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus daphnia|1
+(noun)|genus Daphnia|arthropod genus (generic term)
+genus darlingtonia|1
+(noun)|Darlingtonia|genus Darlingtonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus darmera|1
+(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus (generic term)
+genus dasyatis|1
+(noun)|Dasyatis|genus Dasyatis|fish genus (generic term)
+genus dasyprocta|1
+(noun)|Dasyprocta|genus Dasyprocta|mammal genus (generic term)
+genus dasypus|1
+(noun)|Dasypus|genus Dasypus|mammal genus (generic term)
+genus dasyurus|1
+(noun)|Dasyurus|genus Dasyurus|mammal genus (generic term)
+genus datura|1
+(noun)|Datura|genus Datura|asterid dicot genus (generic term)
+genus daubentonia|1
+(noun)|Daubentonia|genus Daubentonia|mammal genus (generic term)
+genus daucus|1
+(noun)|Daucus|genus Daucus|rosid dicot genus (generic term)
+genus davallia|1
+(noun)|genus Davallia|fern genus (generic term)
+genus daviesia|1
+(noun)|Daviesia|genus Daviesia|rosid dicot genus (generic term)
+genus decapterus|1
+(noun)|Decapterus|genus Decapterus|fish genus (generic term)
+genus decumaria|1
+(noun)|Decumaria|genus Decumaria|rosid dicot genus (generic term)
+genus deinocheirus|1
+(noun)|genus Deinocheirus|reptile genus (generic term)
+genus deinonychus|1
+(noun)|genus Deinonychus|reptile genus (generic term)
+genus delairea|1
+(noun)|Delairea|genus Delairea|asterid dicot genus (generic term)
+genus delichon|1
+(noun)|Delichon|genus Delichon|bird genus (generic term)
+genus delonix|1
+(noun)|Delonix|genus Delonix|rosid dicot genus (generic term)
+genus delphinapterus|1
+(noun)|Delphinapterus|genus Delphinapterus|mammal genus (generic term)
+genus delphinium|1
+(noun)|genus Delphinium|magnoliid dicot genus (generic term)
+genus delphinus|1
+(noun)|Delphinus|genus Delphinus|mammal genus (generic term)
+genus dendranthema|1
+(noun)|Dendranthema|genus Dendranthema|asterid dicot genus (generic term)
+genus dendraspis|1
+(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus (generic term)
+genus dendroaspis|1
+(noun)|Dendroaspis|genus Dendroaspis|Dendraspis|genus Dendraspis|reptile genus (generic term)
+genus dendrobium|1
+(noun)|genus Dendrobium|monocot genus (generic term)|liliopsid genus (generic term)
+genus dendrocalamus|1
+(noun)|Dendrocalamus|genus Dendrocalamus|monocot genus (generic term)|liliopsid genus (generic term)
+genus dendrocolaptes|1
+(noun)|Dendrocolaptes|genus Dendrocolaptes|bird genus (generic term)
+genus dendroctonus|1
+(noun)|Dendroctonus|genus Dendroctonus|arthropod genus (generic term)
+genus dendroica|1
+(noun)|Dendroica|genus Dendroica|bird genus (generic term)
+genus dendrolagus|1
+(noun)|Dendrolagus|genus Dendrolagus|mammal genus (generic term)
+genus dendromecon|1
+(noun)|Dendromecon|genus Dendromecon|dilleniid dicot genus (generic term)
+genus denisonia|1
+(noun)|Denisonia|genus Denisonia|reptile genus (generic term)
+genus dennstaedtia|1
+(noun)|Dennstaedtia|genus Dennstaedtia|fern genus (generic term)
+genus dentaria|1
+(noun)|Dentaria|genus Dentaria|dilleniid dicot genus (generic term)
+genus deparia|1
+(noun)|Deparia|genus Deparia|fern genus (generic term)
+genus dermacentor|1
+(noun)|Dermacentor|genus Dermacentor|arthropod genus (generic term)
+genus dermatobia|1
+(noun)|Dermatobia|genus Dermatobia|arthropod genus (generic term)
+genus dermochelys|1
+(noun)|Dermochelys|genus Dermochelys|reptile genus (generic term)
+genus derris|1
+(noun)|genus Derris|rosid dicot genus (generic term)
+genus descurainia|1
+(noun)|Descurainia|genus Descurainia|dilleniid dicot genus (generic term)
+genus desmanthus|1
+(noun)|Desmanthus|genus Desmanthus|rosid dicot genus (generic term)
+genus desmidium|1
+(noun)|Desmidium|genus Desmidium|protoctist genus (generic term)
+genus desmodium|1
+(noun)|Desmodium|genus Desmodium|rosid dicot genus (generic term)
+genus desmodus|1
+(noun)|Desmodus|genus Desmodus|mammal genus (generic term)
+genus desmograthus|1
+(noun)|Desmograthus|genus Desmograthus|amphibian genus (generic term)
+genus deutzia|1
+(noun)|genus Deutzia|rosid dicot genus (generic term)
+genus diacalpa|1
+(noun)|Diacalpa|genus Diacalpa|fern genus (generic term)
+genus diadophis|1
+(noun)|Diadophis|genus Diadophis|reptile genus (generic term)
+genus dialeurodes|1
+(noun)|Dialeurodes|genus Dialeurodes|arthropod genus (generic term)
+genus dianthus|1
+(noun)|Dianthus|genus Dianthus|caryophylloid dicot genus (generic term)
+genus diapensia|1
+(noun)|genus Diapensia|dilleniid dicot genus (generic term)
+genus diapheromera|1
+(noun)|genus Diapheromera|arthropod genus (generic term)
+genus dicamptodon|1
+(noun)|genus Dicamptodon|amphibian genus (generic term)
+genus dicentra|1
+(noun)|Dicentra|genus Dicentra|dilleniid dicot genus (generic term)
+genus diceros|1
+(noun)|Diceros|genus Diceros|mammal genus (generic term)
+genus dichondra|1
+(noun)|genus Dichondra|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dicksonia|1
+(noun)|Dicksonia|genus Dicksonia|fern genus (generic term)
+genus dicranopteris|1
+(noun)|Dicranopteris|genus Dicranopteris|fern genus (generic term)
+genus dicranum|1
+(noun)|Dicranum|genus Dicranum|moss genus (generic term)
+genus dicrostonyx|1
+(noun)|Dicrostonyx|genus Dicrostonyx|mammal genus (generic term)
+genus dictamnus|1
+(noun)|Dictamnus|genus Dictamnus|rosid dicot genus (generic term)
+genus dictostylium|1
+(noun)|genus Dictostylium|fungus genus (generic term)
+genus dictyophera|1
+(noun)|Dictyophera|genus Dictyophera|fungus genus (generic term)
+genus didelphis|1
+(noun)|Didelphis|genus Didelphis|mammal genus (generic term)
+genus dieffenbachia|1
+(noun)|Dieffenbachia|genus Dieffenbachia|monocot genus (generic term)|liliopsid genus (generic term)
+genus diervilla|1
+(noun)|Diervilla|genus Diervilla|asterid dicot genus (generic term)
+genus difflugia|1
+(noun)|genus Difflugia|protoctist genus (generic term)
+genus digitalis|1
+(noun)|genus Digitalis|asterid dicot genus (generic term)
+genus digitaria|1
+(noun)|Digitaria|genus Digitaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus dillenia|1
+(noun)|genus Dillenia|dilleniid dicot genus (generic term)
+genus dimetrodon|1
+(noun)|genus Dimetrodon|reptile genus (generic term)
+genus dimocarpus|1
+(noun)|Dimocarpus|genus Dimocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dimorphotheca|1
+(noun)|Dimorphotheca|genus Dimorphotheca|asterid dicot genus (generic term)
+genus dinornis|1
+(noun)|Dinornis|genus Dinornis|bird genus (generic term)
+genus diodon|1
+(noun)|Diodon|genus Diodon|fish genus (generic term)
+genus diomedea|1
+(noun)|genus Diomedea|bird genus (generic term)
+genus dionaea|1
+(noun)|Dionaea|genus Dionaea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dioon|1
+(noun)|genus Dioon|gymnosperm genus (generic term)
+genus dioscorea|1
+(noun)|Dioscorea|genus Dioscorea|plant genus (generic term)
+genus diospyros|1
+(noun)|Diospyros|genus Diospyros|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus diphylla|1
+(noun)|Diphylla|genus Diphylla|mammal genus (generic term)
+genus dipladenia|1
+(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus diplococcus|1
+(noun)|genus Diplococcus|bacteria genus (generic term)
+genus diplodocus|1
+(noun)|genus Diplodocus|reptile genus (generic term)
+genus diplopterygium|1
+(noun)|Diplopterygium|genus Diplopterygium|fern genus (generic term)
+genus diplotaxis|1
+(noun)|Diplotaxis|genus Diplotaxis|dilleniid dicot genus (generic term)
+genus dipodomys|1
+(noun)|Dipodomys|genus Dipodomys|mammal genus (generic term)
+genus dipogon|1
+(noun)|Dipogon|genus Dipogon|rosid dicot genus (generic term)
+genus dipsacus|1
+(noun)|Dipsacus|genus Dipsacus|asterid dicot genus (generic term)
+genus dipsosaurus|1
+(noun)|Dipsosaurus|genus Dipsosaurus|reptile genus (generic term)
+genus dipteronia|1
+(noun)|Dipteronia|genus Dipteronia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dipteryx|1
+(noun)|Coumarouna|genus Coumarouna|Dipteryx|genus Dipteryx|rosid dicot genus (generic term)
+genus dipus|1
+(noun)|Dipus|genus Dipus|mammal genus (generic term)
+genus dirca|1
+(noun)|Dirca|genus Dirca|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus disa|1
+(noun)|genus Disa|monocot genus (generic term)|liliopsid genus (generic term)
+genus discina|1
+(noun)|genus Discina|fungus genus (generic term)
+genus dodonaea|1
+(noun)|Dodonaea|genus Dodonaea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dolichonyx|1
+(noun)|Dolichonyx|genus Dolichonyx|bird genus (generic term)
+genus dolichos|1
+(noun)|Dolichos|genus Dolichos|rosid dicot genus (generic term)
+genus dolichotis|1
+(noun)|Dolichotis|genus Dolichotis|mammal genus (generic term)
+genus doliolum|1
+(noun)|genus Doliolum|chordate genus (generic term)
+genus dombeya|1
+(noun)|genus Dombeya|dilleniid dicot genus (generic term)
+genus doodia|1
+(noun)|genus Doodia|Doodia|fern genus (generic term)
+genus doronicum|1
+(noun)|Doronicum|genus Doronicum|asterid dicot genus (generic term)
+genus dorotheanthus|1
+(noun)|Dorotheanthus|genus Dorotheanthus|caryophylloid dicot genus (generic term)
+genus doryopteris|1
+(noun)|Doryopteris|genus Doryopteris|fern genus (generic term)
+genus dovyalis|1
+(noun)|Dovyalis|genus Dovyalis|dilleniid dicot genus (generic term)
+genus draba|1
+(noun)|genus Draba|dilleniid dicot genus (generic term)
+genus dracaena|1
+(noun)|genus Dracaena|liliid monocot genus (generic term)
+genus draco|1
+(noun)|Draco|genus Draco|reptile genus (generic term)
+genus dracocephalum|1
+(noun)|Dracocephalum|genus Dracocephalum|asterid dicot genus (generic term)
+genus dracontium|1
+(noun)|genus Dracontium|monocot genus (generic term)|liliopsid genus (generic term)
+genus dracula|1
+(noun)|Dracula|genus Dracula|monocot genus (generic term)|liliopsid genus (generic term)
+genus dracunculus|2
+(noun)|Dracunculus|genus Dracunculus|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Dracunculus|genus Dracunculus|worm genus (generic term)
+genus dreissena|1
+(noun)|Dreissena|genus Dreissena|mollusk genus (generic term)
+genus drepanis|1
+(noun)|Drepanis|genus Drepanis|bird genus (generic term)
+genus drimys|1
+(noun)|Drimys|genus Drimys|magnoliid dicot genus (generic term)
+genus dromaius|1
+(noun)|Dromaius|genus Dromaius|bird genus (generic term)
+genus drosera|1
+(noun)|Drosera|genus Drosera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus drosophila|1
+(noun)|genus Drosophila|arthropod genus (generic term)
+genus drosophyllum|1
+(noun)|Drosophyllum|genus Drosophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus dryadella|1
+(noun)|Dryadella|genus Dryadella|monocot genus (generic term)|liliopsid genus (generic term)
+genus dryas|1
+(noun)|Dryas|genus Dryas|rosid dicot genus (generic term)
+genus drymarchon|1
+(noun)|Drymarchon|genus Drymarchon|reptile genus (generic term)
+genus drymoglossum|1
+(noun)|Drymoglossum|genus Drymoglossum|fern genus (generic term)
+genus drynaria|1
+(noun)|Drynaria|genus Drynaria|fern genus (generic term)
+genus dryopithecus|1
+(noun)|Dryopithecus|genus Dryopithecus|mammal genus (generic term)
+genus dryopteris|1
+(noun)|Dryopteris|genus Dryopteris|fern genus (generic term)
+genus drypis|1
+(noun)|genus Drypis|caryophylloid dicot genus (generic term)
+genus dugong|1
+(noun)|genus Dugong|mammal genus (generic term)
+genus dumetella|1
+(noun)|Dumetella|genus Dumetella|bird genus (generic term)
+genus durio|1
+(noun)|Durio|genus Durio|dilleniid dicot genus (generic term)
+genus dusicyon|1
+(noun)|Dusicyon|genus Dusicyon|mammal genus (generic term)
+genus dysdercus|1
+(noun)|Dysdercus|genus Dysdercus|arthropod genus (generic term)
+genus eacles|1
+(noun)|Eacles|genus Eacles|arthropod genus (generic term)
+genus eburophyton|1
+(noun)|Eburophyton|genus Eburophyton|monocot genus (generic term)|liliopsid genus (generic term)
+genus ecballium|1
+(noun)|Ecballium|genus Ecballium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus echeneis|1
+(noun)|Echeneis|genus Echeneis|fish genus (generic term)
+genus echidnophaga|1
+(noun)|Echidnophaga|genus Echidnophaga|arthropod genus (generic term)
+genus echinacea|1
+(noun)|Echinacea|genus Echinacea|asterid dicot genus (generic term)
+genus echinocactus|1
+(noun)|genus Echinocactus|caryophylloid dicot genus (generic term)
+genus echinocereus|1
+(noun)|Echinocereus|genus Echinocereus|caryophylloid dicot genus (generic term)
+genus echinochloa|1
+(noun)|Echinochloa|genus Echinochloa|monocot genus (generic term)|liliopsid genus (generic term)
+genus echinococcus|1
+(noun)|genus Echinococcus|worm genus (generic term)
+genus echinops|1
+(noun)|Echinops|genus Echinops|asterid dicot genus (generic term)
+genus echium|1
+(noun)|Echium|genus Echium|plant genus (generic term)
+genus ectopistes|1
+(noun)|Ectopistes|genus Ectopistes|bird genus (generic term)
+genus edaphosaurus|1
+(noun)|genus Edaphosaurus|reptile genus (generic term)
+genus edmontosaurus|1
+(noun)|genus Edmontosaurus|reptile genus (generic term)
+genus egeria|1
+(noun)|Egeria|genus Egeria|monocot genus (generic term)|liliopsid genus (generic term)
+genus egretta|1
+(noun)|Egretta|genus Egretta|bird genus (generic term)
+genus eichhornia|1
+(noun)|Eichhornia|genus Eichhornia|monocot genus (generic term)|liliopsid genus (generic term)
+genus eimeria|1
+(noun)|genus Eimeria|protoctist genus (generic term)
+genus eira|1
+(noun)|Eira|genus Eira|mammal genus (generic term)
+genus elaeagnus|1
+(noun)|Elaeagnus|genus Elaeagnus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus elaeis|1
+(noun)|Elaeis|genus Elaeis|monocot genus (generic term)|liliopsid genus (generic term)
+genus elaeocarpus|1
+(noun)|Elaeocarpus|genus Elaeocarpus|dilleniid dicot genus (generic term)
+genus elagatis|1
+(noun)|Elagatis|genus Elagatis|fish genus (generic term)
+genus elanoides|1
+(noun)|Elanoides|genus Elanoides|bird genus (generic term)
+genus elanus|1
+(noun)|Elanus|genus Elanus|bird genus (generic term)
+genus elaphe|1
+(noun)|Elaphe|genus Elaphe|reptile genus (generic term)
+genus elaphurus|1
+(noun)|Elaphurus|genus Elaphurus|mammal genus (generic term)
+genus electrophorus|1
+(noun)|Electrophorus|genus Electrophorus|fish genus (generic term)
+genus eleocharis|1
+(noun)|Eleocharis|genus Eleocharis|monocot genus (generic term)|liliopsid genus (generic term)
+genus elephantopus|1
+(noun)|Elephantopus|genus Elephantopus|asterid dicot genus (generic term)
+genus elephas|1
+(noun)|Elephas|genus Elephas|mammal genus (generic term)
+genus elettaria|1
+(noun)|Elettaria|genus Elettaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus eleusine|1
+(noun)|Eleusine|genus Eleusine|monocot genus (generic term)|liliopsid genus (generic term)
+genus eleutherodactylus|1
+(noun)|Eleutherodactylus|genus Eleutherodactylus|amphibian genus (generic term)
+genus eliomys|1
+(noun)|Eliomys|genus Eliomys|mammal genus (generic term)
+genus elodea|1
+(noun)|Elodea|genus Elodea|pondweed|ditchmoss|monocot genus (generic term)|liliopsid genus (generic term)
+genus elops|1
+(noun)|Elops|genus Elops|fish genus (generic term)
+genus elsholtzia|1
+(noun)|genus Elsholtzia|asterid dicot genus (generic term)
+genus elymus|1
+(noun)|Elymus|genus Elymus|monocot genus (generic term)|liliopsid genus (generic term)
+genus emberiza|1
+(noun)|Emberiza|genus Emberiza|bird genus (generic term)
+genus embothrium|1
+(noun)|Embothrium|genus Embothrium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus emilia|1
+(noun)|Emilia|genus Emilia|asterid dicot genus (generic term)
+genus emmanthe|1
+(noun)|Emmanthe|genus Emmanthe|asterid dicot genus (generic term)
+genus empetrum|1
+(noun)|Empetrum|genus Empetrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus encelia|1
+(noun)|Encelia|genus Encelia|asterid dicot genus (generic term)
+genus enceliopsis|1
+(noun)|Enceliopsis|genus Enceliopsis|asterid dicot genus (generic term)
+genus encephalartos|1
+(noun)|genus Encephalartos|gymnosperm genus (generic term)
+genus encyclia|1
+(noun)|Encyclia|genus Encyclia|monocot genus (generic term)|liliopsid genus (generic term)
+genus endamoeba|1
+(noun)|Endamoeba|genus Endamoeba|protoctist genus (generic term)
+genus engelmannia|1
+(noun)|genus Engelmannia|asterid dicot genus (generic term)
+genus engraulis|1
+(noun)|Engraulis|genus Engraulis|fish genus (generic term)
+genus enhydra|1
+(noun)|Enhydra|genus Enhydra|mammal genus (generic term)
+genus ensete|1
+(noun)|Ensete|genus Ensete|monocot genus (generic term)|liliopsid genus (generic term)
+genus ensis|1
+(noun)|Ensis|genus Ensis|mollusk genus (generic term)
+genus entandrophragma|1
+(noun)|Entandrophragma|genus Entandrophragma|rosid dicot genus (generic term)
+genus entelea|1
+(noun)|Entelea|genus Entelea|dilleniid dicot genus (generic term)
+genus enterobius|1
+(noun)|Enterobius|genus Enterobius|worm genus (generic term)
+genus enterolobium|1
+(noun)|Enterolobium|genus Enterolobium|rosid dicot genus (generic term)
+genus entoloma|1
+(noun)|Entoloma|genus Entoloma|fungus genus (generic term)
+genus entomophthora|1
+(noun)|Entomophthora|genus Entomophthora|fungus genus (generic term)
+genus eoraptor|1
+(noun)|genus Eoraptor|reptile genus (generic term)
+genus epacris|1
+(noun)|genus Epacris|dilleniid dicot genus (generic term)
+genus ephedra|1
+(noun)|genus Ephedra|gymnosperm genus (generic term)
+genus ephestia|1
+(noun)|Ephestia|genus Ephestia|arthropod genus (generic term)
+genus ephippiorhynchus|1
+(noun)|Ephippiorhynchus|genus Ephippiorhynchus|bird genus (generic term)
+genus epidendrum|1
+(noun)|Epidendrum|genus Epidendrum|monocot genus (generic term)|liliopsid genus (generic term)
+genus epigaea|1
+(noun)|Epigaea|genus Epigaea|dilleniid dicot genus (generic term)
+genus epilachna|1
+(noun)|Epilachna|genus Epilachna|arthropod genus (generic term)
+genus epilobium|1
+(noun)|Epilobium|genus Epilobium|rosid dicot genus (generic term)
+genus epimedium|1
+(noun)|Epimedium|genus Epimedium|magnoliid dicot genus (generic term)
+genus epinephelus|1
+(noun)|Epinephelus|genus Epinephelus|fish genus (generic term)
+genus epipactis|1
+(noun)|Epipactis|genus Epipactis|monocot genus (generic term)|liliopsid genus (generic term)
+genus epiphyllum|1
+(noun)|genus Epiphyllum|caryophylloid dicot genus (generic term)
+genus epipremnum|1
+(noun)|Epipremnum|genus Epipremnum|monocot genus (generic term)|liliopsid genus (generic term)
+genus episcia|1
+(noun)|genus Episcia|asterid dicot genus (generic term)
+genus eptatretus|1
+(noun)|genus Eptatretus|fish genus (generic term)
+genus eptesicus|1
+(noun)|Eptesicus|genus Eptesicus|mammal genus (generic term)
+genus equetus|1
+(noun)|Equetus|genus Equetus|fish genus (generic term)
+genus equisetum|1
+(noun)|Equisetum|genus Equisetum|fern genus (generic term)
+genus equus|1
+(noun)|Equus|genus Equus|mammal genus (generic term)
+genus eragrostis|1
+(noun)|Eragrostis|genus Eragrostis|monocot genus (generic term)|liliopsid genus (generic term)
+genus eranthis|1
+(noun)|Eranthis|genus Eranthis|magnoliid dicot genus (generic term)
+genus ercilla|1
+(noun)|Ercilla|genus Ercilla|caryophylloid dicot genus (generic term)
+genus erechtites|1
+(noun)|genus Erechtites|asterid dicot genus (generic term)
+genus erethizon|1
+(noun)|Erethizon|genus Erethizon|mammal genus (generic term)
+genus eretmochelys|1
+(noun)|Eretmochelys|genus Eretmochelys|reptile genus (generic term)
+genus erianthus|1
+(noun)|Erianthus|genus Erianthus|monocot genus (generic term)|liliopsid genus (generic term)
+genus erica|1
+(noun)|genus Erica|dilleniid dicot genus (generic term)
+genus erigeron|1
+(noun)|Erigeron|genus Erigeron|asterid dicot genus (generic term)
+genus erignathus|1
+(noun)|Erignathus|genus Erignathus|mammal genus (generic term)
+genus erinaceus|1
+(noun)|Erinaceus|genus Erinaceus|mammal genus (generic term)
+genus eriobotrya|1
+(noun)|Eriobotrya|genus Eriobotrya|rosid dicot genus (generic term)
+genus eriocaulon|1
+(noun)|Eriocaulon|genus Eriocaulon|monocot genus (generic term)|liliopsid genus (generic term)
+genus eriodictyon|1
+(noun)|Eriodictyon|genus Eriodictyon|asterid dicot genus (generic term)
+genus eriogonum|1
+(noun)|genus Eriogonum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus eriophorum|1
+(noun)|Eriophorum|genus Eriophorum|monocot genus (generic term)|liliopsid genus (generic term)
+genus eriophyllum|1
+(noun)|Eriophyllum|genus Eriophyllum|asterid dicot genus (generic term)
+genus eriosoma|1
+(noun)|Eriosoma|genus Eriosoma|arthropod genus (generic term)
+genus erithacus|1
+(noun)|Erithacus|genus Erithacus|bird genus (generic term)
+genus erodium|1
+(noun)|Erodium|genus Erodium|rosid dicot genus (generic term)
+genus erolia|1
+(noun)|Erolia|genus Erolia|bird genus (generic term)
+genus eruca|1
+(noun)|Eruca|genus Eruca|dilleniid dicot genus (generic term)
+genus erwinia|1
+(noun)|genus Erwinia|bacteria genus (generic term)
+genus eryngium|1
+(noun)|Eryngium|genus Eryngium|rosid dicot genus (generic term)
+genus erysimum|1
+(noun)|Erysimum|genus Erysimum|dilleniid dicot genus (generic term)
+genus erysiphe|1
+(noun)|Erysiphe|genus Erysiphe|fungus genus (generic term)
+genus erythrina|1
+(noun)|genus Erythrina|rosid dicot genus (generic term)
+genus erythrocebus|1
+(noun)|Erythrocebus|genus Erythrocebus|mammal genus (generic term)
+genus erythronium|1
+(noun)|Erythronium|genus Erythronium|liliid monocot genus (generic term)
+genus erythroxylon|1
+(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus (generic term)
+genus erythroxylum|1
+(noun)|Erythroxylon|genus Erythroxylon|Erythroxylum|genus Erythroxylum|plant genus (generic term)
+genus escherichia|1
+(noun)|genus Escherichia|bacteria genus (generic term)
+genus eschrichtius|1
+(noun)|Eschrichtius|genus Eschrichtius|mammal genus (generic term)
+genus eschscholtzia|1
+(noun)|Eschscholtzia|genus Eschscholtzia|dilleniid dicot genus (generic term)
+genus esox|1
+(noun)|Esox|genus Esox|fish genus (generic term)
+genus estrilda|1
+(noun)|Estrilda|genus Estrilda|bird genus (generic term)
+genus etropus|1
+(noun)|Etropus|genus Etropus|fish genus (generic term)
+genus euarctos|1
+(noun)|Euarctos|genus Euarctos|mammal genus (generic term)
+genus eucalyptus|1
+(noun)|genus Eucalyptus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus eucarya|1
+(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus (generic term)
+genus eucinostomus|1
+(noun)|Eucinostomus|genus Eucinostomus|fish genus (generic term)
+genus euderma|1
+(noun)|Euderma|genus Euderma|mammal genus (generic term)
+genus eudyptes|1
+(noun)|Eudyptes|genus Eudyptes|bird genus (generic term)
+genus eugenia|1
+(noun)|Eugenia|genus Eugenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus euglena|1
+(noun)|genus Euglena|protoctist genus (generic term)
+genus eumeces|1
+(noun)|Eumeces|genus Eumeces|reptile genus (generic term)
+genus eumenes|1
+(noun)|Eumenes|genus Eumenes|arthropod genus (generic term)
+genus eumetopias|1
+(noun)|Eumetopias|genus Eumetopias|mammal genus (generic term)
+genus eumops|1
+(noun)|Eumops|genus Eumops|mammal genus (generic term)
+genus eunectes|1
+(noun)|Eunectes|genus Eunectes|reptile genus (generic term)
+genus euonymus|1
+(noun)|Euonymus|genus Euonymus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus eupatorium|1
+(noun)|Eupatorium|genus Eupatorium|asterid dicot genus (generic term)
+genus euphagus|1
+(noun)|Euphagus|genus Euphagus|bird genus (generic term)
+genus euphorbia|1
+(noun)|Euphorbia|genus Euphorbia|rosid dicot genus (generic term)
+genus euphractus|1
+(noun)|Euphractus|genus Euphractus|mammal genus (generic term)
+genus euplectella|1
+(noun)|Euplectella|genus Euplectella|sponge genus (generic term)
+genus euproctis|1
+(noun)|Euproctis|genus Euproctis|arthropod genus (generic term)
+genus eurotium|1
+(noun)|Eurotium|genus Eurotium|fungus genus (generic term)
+genus euryale|1
+(noun)|Euryale|genus Euryale|echinoderm genus (generic term)
+genus eustoma|1
+(noun)|Eustoma|genus Eustoma|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus eutamias|1
+(noun)|Eutamias|genus Eutamias|mammal genus (generic term)
+genus euterpe|1
+(noun)|Euterpe|genus Euterpe|monocot genus (generic term)|liliopsid genus (generic term)
+genus euthynnus|1
+(noun)|Euthynnus|genus Euthynnus|fish genus (generic term)
+genus evernia|1
+(noun)|Evernia|genus Evernia|fungus genus (generic term)
+genus exacum|1
+(noun)|Exacum|genus Exacum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus exaeretodon|1
+(noun)|Exaeretodon|genus Exaeretodon|reptile genus (generic term)
+genus fabiana|1
+(noun)|Fabiana|genus Fabiana|asterid dicot genus (generic term)
+genus fagopyrum|1
+(noun)|Fagopyrum|genus Fagopyrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus fagus|1
+(noun)|Fagus|genus Fagus|hamamelid dicot genus (generic term)
+genus falcatifolium|1
+(noun)|Falcatifolium|genus Falcatifolium|gymnosperm genus (generic term)
+genus falco|1
+(noun)|Falco|genus Falco|bird genus (generic term)
+genus fasciola|1
+(noun)|Fasciola|genus Fasciola|worm genus (generic term)
+genus fasciolopsis|1
+(noun)|Fasciolopsis|genus Fasciolopsis|worm genus (generic term)
+genus feijoa|1
+(noun)|genus Feijoa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus felicia|1
+(noun)|Felicia|genus Felicia|asterid dicot genus (generic term)
+genus felis|1
+(noun)|Felis|genus Felis|mammal genus (generic term)
+genus ferocactus|1
+(noun)|Ferocactus|genus Ferocactus|caryophylloid dicot genus (generic term)
+genus festuca|1
+(noun)|Festuca|genus Festuca|monocot genus (generic term)|liliopsid genus (generic term)
+genus ficus|1
+(noun)|Ficus|genus Ficus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus filago|1
+(noun)|genus Filago|asterid dicot genus (generic term)
+genus firmiana|1
+(noun)|Firmiana|genus Firmiana|dilleniid dicot genus (generic term)
+genus fissurella|1
+(noun)|Fissurella|genus Fissurella|mollusk genus (generic term)
+genus fistularia|1
+(noun)|Fistularia|genus Fistularia|fish genus (generic term)
+genus fistulina|1
+(noun)|Fistulina|genus Fistulina|fungus genus (generic term)
+genus flacourtia|1
+(noun)|Flacourtia|genus Flacourtia|dilleniid dicot genus (generic term)
+genus flammulina|1
+(noun)|Flammulina|genus Flammulina|fungus genus (generic term)
+genus flindersia|1
+(noun)|Flindersia|genus Flindersia|rosid dicot genus (generic term)
+genus foeniculum|1
+(noun)|Foeniculum|genus Foeniculum|rosid dicot genus (generic term)
+genus fomes|1
+(noun)|Fomes|genus Fomes|fungus genus (generic term)
+genus forestiera|1
+(noun)|genus Forestiera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus forficula|1
+(noun)|Forficula|genus Forficula|arthropod genus (generic term)
+genus formica|1
+(noun)|Formica|genus Formica|arthropod genus (generic term)
+genus formicarius|1
+(noun)|Formicarius|genus Formicarius|bird genus (generic term)
+genus forsythia|1
+(noun)|genus Forsythia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus fortunella|1
+(noun)|Fortunella|genus Fortunella|rosid dicot genus (generic term)
+genus fossa|1
+(noun)|Fossa|genus Fossa|mammal genus (generic term)
+genus fothergilla|1
+(noun)|genus Fothergilla|Fothergilla|plant genus (generic term)
+genus fouquieria|1
+(noun)|Fouquieria|genus Fouquieria|dilleniid dicot genus (generic term)
+genus fragaria|1
+(noun)|Fragaria|genus Fragaria|rosid dicot genus (generic term)
+genus francisella|1
+(noun)|Francisella|genus Francisella|bacteria (generic term)|bacterium (generic term)
+genus francoa|1
+(noun)|Francoa|genus Francoa|rosid dicot genus (generic term)
+genus frankliniella|1
+(noun)|Frankliniella|genus Frankliniella|arthropod genus (generic term)
+genus frasera|1
+(noun)|Frasera|genus Frasera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus fratercula|1
+(noun)|Fratercula|genus Fratercula|bird genus (generic term)
+genus fraxinus|1
+(noun)|Fraxinus|genus Fraxinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus freesia|1
+(noun)|genus Freesia|liliid monocot genus (generic term)
+genus fregata|1
+(noun)|Fregata|genus Fregata|bird genus (generic term)
+genus fremontia|1
+(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus (generic term)
+genus fremontodendron|1
+(noun)|Fremontodendron|genus Fremontodendron|Fremontia|genus Fremontia|dilleniid dicot genus (generic term)
+genus fringilla|1
+(noun)|Fringilla|genus Fringilla|bird genus (generic term)
+genus fritillaria|1
+(noun)|Fritillaria|genus Fritillaria|liliid monocot genus (generic term)
+genus froelichia|1
+(noun)|Froelichia|genus Froelichia|caryophylloid dicot genus (generic term)
+genus fuchsia|1
+(noun)|genus Fuchsia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus fucus|1
+(noun)|genus Fucus|protoctist genus (generic term)
+genus fulica|1
+(noun)|Fulica|genus Fulica|bird genus (generic term)
+genus fulmarus|1
+(noun)|Fulmarus|genus Fulmarus|bird genus (generic term)
+genus fumaria|1
+(noun)|Fumaria|genus Fumaria|dilleniid dicot genus (generic term)
+genus fundulus|1
+(noun)|Fundulus|genus Fundulus|fish genus (generic term)
+genus fungia|1
+(noun)|Fungia|genus Fungia|coelenterate genus (generic term)
+genus funka|1
+(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus (generic term)
+genus furnarius|1
+(noun)|Furnarius|genus Furnarius|bird genus (generic term)
+genus fusanus|1
+(noun)|Eucarya|genus Eucarya|Fusanus|genus Fusanus|dilleniid dicot genus (generic term)
+genus fusarium|1
+(noun)|genus Fusarium|fungus genus (generic term)
+genus fuscoboletinus|1
+(noun)|Fuscoboletinus|genus Fuscoboletinus|fungus genus (generic term)
+genus gadus|1
+(noun)|Gadus|genus Gadus|fish genus (generic term)
+genus gaillardia|1
+(noun)|genus Gaillardia|asterid dicot genus (generic term)
+genus galago|1
+(noun)|genus Galago|mammal genus (generic term)
+genus galax|1
+(noun)|genus Galax|dilleniid dicot genus (generic term)
+genus galega|1
+(noun)|Galega|genus Galega|rosid dicot genus (generic term)
+genus galeocerdo|1
+(noun)|Galeocerdo|genus Galeocerdo|fish genus (generic term)
+genus galeopsis|1
+(noun)|Galeopsis|genus Galeopsis|asterid dicot genus (generic term)
+genus galeorhinus|1
+(noun)|Galeorhinus|genus Galeorhinus|fish genus (generic term)
+genus galictis|1
+(noun)|genus Galictis|mammal genus (generic term)
+genus galium|1
+(noun)|Galium|genus Galium|asterid dicot genus (generic term)
+genus galleria|1
+(noun)|Galleria|genus Galleria|arthropod genus (generic term)
+genus gallinago|1
+(noun)|Gallinago|genus Gallinago|Capella|genus Capella|bird genus (generic term)
+genus gallinula|1
+(noun)|Gallinula|genus Gallinula|bird genus (generic term)
+genus gallirallus|1
+(noun)|Gallirallus|genus Gallirallus|bird genus (generic term)
+genus gallus|1
+(noun)|Gallus|genus Gallus|bird genus (generic term)
+genus gambelia|1
+(noun)|Gambelia|genus Gambelia|reptile genus (generic term)
+genus gambusia|1
+(noun)|Gambusia|genus Gambusia|fish genus (generic term)
+genus garcinia|1
+(noun)|Garcinia|genus Garcinia|dilleniid dicot genus (generic term)
+genus gardenia|1
+(noun)|genus Gardenia|asterid dicot genus (generic term)
+genus garrulus|1
+(noun)|Garrulus|genus Garrulus|bird genus (generic term)
+genus gasterophilus|1
+(noun)|Gasterophilus|genus Gasterophilus|arthropod genus (generic term)
+genus gasterosteus|1
+(noun)|Gasterosteus|fish genus (generic term)
+genus gastroboletus|1
+(noun)|Gastroboletus|genus Gastroboletus|fungus genus (generic term)
+genus gastrocybe|1
+(noun)|Gastrocybe|genus Gastrocybe|fungus genus (generic term)
+genus gastrolobium|1
+(noun)|genus Gastrolobium|rosid dicot genus (generic term)
+genus gastrophryne|1
+(noun)|Gastrophryne|genus Gastrophryne|amphibian genus (generic term)
+genus gaultheria|1
+(noun)|Gaultheria|genus Gaultheria|dilleniid dicot genus (generic term)
+genus gavia|1
+(noun)|Gavia|genus Gavia|bird genus (generic term)
+genus gavialis|1
+(noun)|Gavialis|genus Gavialis|reptile genus (generic term)
+genus gaylussacia|1
+(noun)|Gaylussacia|genus Gaylussacia|dilleniid dicot genus (generic term)
+genus gazania|1
+(noun)|genus Gazania|asterid dicot genus (generic term)
+genus gazella|1
+(noun)|Gazella|genus Gazella|mammal genus (generic term)
+genus geastrum|1
+(noun)|Geastrum|genus Geastrum|fungus genus (generic term)
+genus gelechia|1
+(noun)|Gelechia|genus Gelechia|arthropod genus (generic term)
+genus gelsemium|1
+(noun)|Gelsemium|genus Gelsemium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus gempylus|1
+(noun)|Gempylus|genus Gempylus|fish genus (generic term)
+genus genetta|1
+(noun)|Genetta|genus Genetta|mammal genus (generic term)
+genus genipa|1
+(noun)|genus Genipa|asterid dicot genus (generic term)
+genus genista|1
+(noun)|Genista|genus Genista|rosid dicot genus (generic term)
+genus genlisea|1
+(noun)|genus Genlisea|plant genus (generic term)
+genus gentiana|1
+(noun)|Gentiana|genus Gentiana|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus gentianella|1
+(noun)|Gentianella|genus Gentianella|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus gentianopsis|1
+(noun)|Gentianopsis|genus Gentianopsis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus genyonemus|1
+(noun)|Genyonemus|genus Genyonemus|fish genus (generic term)
+genus geochelone|1
+(noun)|Geochelone|genus Geochelone|reptile genus (generic term)
+genus geococcyx|1
+(noun)|Geococcyx|genus Geococcyx|bird genus (generic term)
+genus geoffroea|1
+(noun)|Geoffroea|genus Geoffroea|rosid dicot genus (generic term)
+genus geoglossum|1
+(noun)|Geoglossum|genus Geoglossum|fungus genus (generic term)
+genus geomys|1
+(noun)|Geomys|genus Geomys|mammal genus (generic term)
+genus geophilus|1
+(noun)|Geophilus|genus Geophilus|arthropod genus (generic term)
+genus geothlypis|1
+(noun)|Geothlypis|genus Geothlypis|bird genus (generic term)
+genus geranium|1
+(noun)|genus Geranium|plant genus (generic term)
+genus gerardia|1
+(noun)|genus Gerardia|asterid dicot genus (generic term)
+genus gerbera|1
+(noun)|Gerbera|genus Gerbera|asterid dicot genus (generic term)
+genus gerbillus|1
+(noun)|Gerbillus|genus Gerbillus|mammal genus (generic term)
+genus gerea|1
+(noun)|Gerea|genus Gerea|asterid dicot genus (generic term)
+genus gerres|1
+(noun)|Gerres|genus Gerres|fish genus (generic term)
+genus gerrhonotus|1
+(noun)|Gerrhonotus|genus Gerrhonotus|reptile genus (generic term)
+genus gerris|1
+(noun)|Gerris|genus Gerris|arthropod genus (generic term)
+genus gesneria|1
+(noun)|genus Gesneria|asterid dicot genus (generic term)
+genus geum|1
+(noun)|Geum|genus Geum|rosid dicot genus (generic term)
+genus giardia|1
+(noun)|genus Giardia|protoctist genus (generic term)
+genus ginglymostoma|1
+(noun)|Ginglymostoma|genus Ginglymostoma|fish genus (generic term)
+genus ginkgo|1
+(noun)|genus Ginkgo|gymnosperm genus (generic term)
+genus giraffa|1
+(noun)|Giraffa|genus Giraffa|mammal genus (generic term)
+genus gladiolus|1
+(noun)|genus Gladiolus|liliid monocot genus (generic term)
+genus glareola|1
+(noun)|Glareola|genus Glareola|bird genus (generic term)
+genus glaucium|1
+(noun)|Glaucium|genus Glaucium|dilleniid dicot genus (generic term)
+genus glaucomys|1
+(noun)|Glaucomys|genus Glaucomys|mammal genus (generic term)
+genus glaux|1
+(noun)|Glaux|genus Glaux|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus glechoma|1
+(noun)|Glechoma|genus Glechoma|asterid dicot genus (generic term)
+genus gleditsia|1
+(noun)|Gleditsia|genus Gleditsia|rosid dicot genus (generic term)
+genus gleichenia|1
+(noun)|Gleichenia|genus Gleichenia|fern genus (generic term)
+genus gliricidia|1
+(noun)|genus Gliricidia|rosid dicot genus (generic term)
+genus glis|1
+(noun)|Glis|genus Glis|mammal genus (generic term)
+genus globicephala|1
+(noun)|Globicephala|genus Globicephala|mammal genus (generic term)
+genus globigerina|1
+(noun)|genus Globigerina|protoctist genus (generic term)
+genus gloriosa|1
+(noun)|genus Gloriosa|liliid monocot genus (generic term)
+genus glossina|1
+(noun)|genus Glossina|arthropod genus (generic term)
+genus glossodia|1
+(noun)|Glossodia|genus Glossodia|monocot genus (generic term)|liliopsid genus (generic term)
+genus glossopsitta|1
+(noun)|Glossopsitta|genus Glossopsitta|bird genus (generic term)
+genus gloxinia|1
+(noun)|genus Gloxinia|asterid dicot genus (generic term)
+genus glyceria|1
+(noun)|Glyceria|genus Glyceria|monocot genus (generic term)|liliopsid genus (generic term)
+genus glycine|1
+(noun)|Glycine|genus Glycine|rosid dicot genus (generic term)
+genus glycyrrhiza|1
+(noun)|Glycyrrhiza|genus Glycyrrhiza|rosid dicot genus (generic term)
+genus gnaphalium|1
+(noun)|Gnaphalium|genus Gnaphalium|asterid dicot genus (generic term)
+genus gnetum|1
+(noun)|genus Gnetum|gymnosperm genus (generic term)
+genus gobiesox|1
+(noun)|Gobiesox|genus Gobiesox|fish genus (generic term)
+genus gobio|1
+(noun)|Gobio|genus Gobio|fish genus (generic term)
+genus gomphotherium|1
+(noun)|Gomphotherium|genus Gomphotherium|mammal genus (generic term)
+genus gomphrena|1
+(noun)|Gomphrena|genus Gomphrena|caryophylloid dicot genus (generic term)
+genus goniopteris|1
+(noun)|Goniopteris|genus Goniopteris|fern genus (generic term)
+genus gonorhynchus|1
+(noun)|Gonorhynchus|genus Gonorhynchus|fish genus (generic term)
+genus goodyera|1
+(noun)|Goodyera|genus Goodyera|monocot genus (generic term)|liliopsid genus (generic term)
+genus gopherus|1
+(noun)|Gopherus|genus Gopherus|reptile genus (generic term)
+genus gorgonocephalus|1
+(noun)|Gorgonocephalus|genus Gorgonocephalus|echinoderm genus (generic term)
+genus gorilla|1
+(noun)|genus Gorilla|mammal genus (generic term)
+genus gossypium|1
+(noun)|Gossypium|genus Gossypium|dilleniid dicot genus (generic term)
+genus gracula|1
+(noun)|Gracula|genus Gracula|bird genus (generic term)
+genus grammatophyllum|1
+(noun)|Grammatophyllum|genus Grammatophyllum|monocot genus (generic term)|liliopsid genus (generic term)
+genus grampus|1
+(noun)|genus Grampus|mammal genus (generic term)
+genus graptophyllum|1
+(noun)|Graptophyllum|genus Graptophyllum|asterid dicot genus (generic term)
+genus grevillea|1
+(noun)|genus Grevillea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus grewia|1
+(noun)|Grewia|genus Grewia|dilleniid dicot genus (generic term)
+genus grias|1
+(noun)|Grias|genus Grias|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus grindelia|1
+(noun)|Grindelia|genus Grindelia|asterid dicot genus (generic term)
+genus griselinia|1
+(noun)|Griselinia|genus Griselinia|rosid dicot genus (generic term)
+genus grison|1
+(noun)|genus Grison|mammal genus (generic term)
+genus groenlandia|1
+(noun)|Groenlandia|genus Groenlandia|monocot genus (generic term)|liliopsid genus (generic term)
+genus grus|1
+(noun)|Grus|genus Grus|bird genus (generic term)
+genus guaiacum|1
+(noun)|Guaiacum|genus Guaiacum|rosid dicot genus (generic term)
+genus guevina|1
+(noun)|Guevina|genus Guevina|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus gulo|1
+(noun)|Gulo|genus Gulo|mammal genus (generic term)
+genus gutierrezia|1
+(noun)|Gutierrezia|genus Gutierrezia|asterid dicot genus (generic term)
+genus gymnadenia|1
+(noun)|Gymnadenia|genus Gymnadenia|monocot genus (generic term)|liliopsid genus (generic term)
+genus gymnadeniopsis|1
+(noun)|Gymnadeniopsis|genus Gymnadeniopsis|monocot genus (generic term)|liliopsid genus (generic term)
+genus gymnelis|1
+(noun)|Gymnelis|genus Gymnelis|fish genus (generic term)
+genus gymnocalycium|1
+(noun)|Gymnocalycium|genus Gymnocalycium|caryophylloid dicot genus (generic term)
+genus gymnocarpium|1
+(noun)|Gymnocarpium|genus Gymnocarpium|fern genus (generic term)
+genus gymnocladus|1
+(noun)|Gymnocladus|genus Gymnocladus|rosid dicot genus (generic term)
+genus gymnogyps|1
+(noun)|Gymnogyps|genus Gymnogyps|bird genus (generic term)
+genus gymnopilus|1
+(noun)|Gymnopilus|genus Gymnopilus|fungus genus (generic term)
+genus gymnorhina|1
+(noun)|Gymnorhina|genus Gymnorhina|bird genus (generic term)
+genus gymnosporangium|1
+(noun)|Gymnosporangium|genus Gymnosporangium|fungus genus (generic term)
+genus gymnura|1
+(noun)|Gymnura|genus Gymnura|fish genus (generic term)
+genus gynura|1
+(noun)|Gynura|genus Gynura|asterid dicot genus (generic term)
+genus gypaetus|1
+(noun)|Gypaetus|genus Gypaetus|bird genus (generic term)
+genus gyps|1
+(noun)|Gyps|genus Gyps|bird genus (generic term)
+genus gypsophila|1
+(noun)|Gypsophila|genus Gypsophila|caryophylloid dicot genus (generic term)
+genus gyromitra|1
+(noun)|genus Gyromitra|fungus genus (generic term)
+genus haastia|1
+(noun)|Haastia|genus Haastia|asterid dicot genus (generic term)
+genus habenaria|1
+(noun)|Habenaria|genus Habenaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus hackelia|1
+(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus (generic term)
+genus haemanthus|1
+(noun)|Haemanthus|genus Haemanthus|liliid monocot genus (generic term)
+genus haematobia|1
+(noun)|Haematobia|genus Haematobia|arthropod genus (generic term)
+genus haematopus|1
+(noun)|Haematopus|genus Haematopus|bird genus (generic term)
+genus haematoxylon|1
+(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus (generic term)
+genus haematoxylum|1
+(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus (generic term)
+genus haemodorum|1
+(noun)|Haemodorum|genus Haemodorum|monocot genus (generic term)|liliopsid genus (generic term)
+genus haemopis|1
+(noun)|Haemopis|genus Haemopis|worm genus (generic term)
+genus haemoproteus|1
+(noun)|Haemoproteus|genus Haemoproteus|protoctist genus (generic term)
+genus haemulon|1
+(noun)|Haemulon|genus Haemulon|fish genus (generic term)
+genus hakea|1
+(noun)|Hakea|genus Hakea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus halcyon|1
+(noun)|Halcyon|genus Halcyon|bird genus (generic term)
+genus haldea|1
+(noun)|Haldea|genus Haldea|reptile genus (generic term)
+genus halenia|1
+(noun)|Halenia|genus Halenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus halesia|1
+(noun)|Halesia|genus Halesia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus haliaeetus|1
+(noun)|Haliaeetus|genus Haliaeetus|bird genus (generic term)
+genus halicoeres|1
+(noun)|Halicoeres|genus Halicoeres|fish genus (generic term)
+genus halimodendron|1
+(noun)|Halimodendron|genus Halimodendron|rosid dicot genus (generic term)
+genus haliotis|1
+(noun)|Haliotis|genus Haliotis|mollusk genus (generic term)
+genus halocarpus|1
+(noun)|Halocarpus|genus Halocarpus|gymnosperm genus (generic term)
+genus halogeton|1
+(noun)|genus Halogeton|caryophylloid dicot genus (generic term)
+genus hamamelidanthum|1
+(noun)|Hamamelidanthum|genus Hamamelidanthum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hamamelidoxylon|1
+(noun)|Hamamelidoxylon|genus Hamamelidoxylon|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hamamelis|1
+(noun)|Hamamelis|genus Hamamelis|plant genus (generic term)
+genus hamamelites|1
+(noun)|Hamamelites|genus Hamamelites|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hamelia|1
+(noun)|genus Hamelia|asterid dicot genus (generic term)
+genus haminoea|1
+(noun)|Haminoea|genus Haminoea|mollusk genus (generic term)
+genus haplopappus|1
+(noun)|Haplopappus|genus Haplopappus|asterid dicot genus (generic term)
+genus hardenbergia|1
+(noun)|Hardenbergia|genus Hardenbergia|rosid dicot genus (generic term)
+genus harpia|1
+(noun)|Harpia|genus Harpia|bird genus (generic term)
+genus harpullia|1
+(noun)|genus Harpullia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus harrisia|1
+(noun)|Harrisia|genus Harrisia|caryophylloid dicot genus (generic term)
+genus hatiora|1
+(noun)|Hatiora|genus Hatiora|caryophylloid dicot genus (generic term)
+genus hazardia|1
+(noun)|Hazardia|genus Hazardia|asterid dicot genus (generic term)
+genus hedeoma|1
+(noun)|Hedeoma|genus Hedeoma|asterid dicot genus (generic term)
+genus hedera|1
+(noun)|Hedera|genus Hedera|rosid dicot genus (generic term)
+genus hedysarum|1
+(noun)|Hedysarum|genus Hedysarum|rosid dicot genus (generic term)
+genus helenium|1
+(noun)|Helenium|genus Helenium|asterid dicot genus (generic term)
+genus heleodytes|1
+(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus (generic term)
+genus heliamphora|1
+(noun)|Heliamphora|genus Heliamphora|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus helianthemum|1
+(noun)|genus Helianthemum|dilleniid dicot genus (generic term)
+genus helianthus|1
+(noun)|genus Helianthus|asterid dicot genus (generic term)
+genus helichrysum|1
+(noun)|Helichrysum|genus Helichrysum|asterid dicot genus (generic term)
+genus helicteres|1
+(noun)|Helicteres|genus Helicteres|dilleniid dicot genus (generic term)
+genus heliobacter|1
+(noun)|Heliobacter|genus Heliobacter|bacteria genus (generic term)
+genus heliophila|1
+(noun)|genus Heliophila|dilleniid dicot genus (generic term)
+genus heliopsis|1
+(noun)|genus Heliopsis|asterid dicot genus (generic term)
+genus heliothis|1
+(noun)|Heliothis|genus Heliothis|arthropod genus (generic term)
+genus helipterum|1
+(noun)|Helipterum|genus Helipterum|asterid dicot genus (generic term)
+genus helix|1
+(noun)|Helix|genus Helix|mollusk genus (generic term)
+genus helleborus|1
+(noun)|Helleborus|genus Helleborus|magnoliid dicot genus (generic term)
+genus helminthostachys|1
+(noun)|Helminthostachys|genus Helminthostachys|fern genus (generic term)
+genus heloderma|1
+(noun)|Heloderma|genus Heloderma|reptile genus (generic term)
+genus helotium|1
+(noun)|Helotium|genus Helotium|fungus genus (generic term)
+genus helvella|1
+(noun)|genus Helvella|fungus genus (generic term)
+genus helwingia|1
+(noun)|Helwingia|genus Helwingia|rosid dicot genus (generic term)
+genus helxine|1
+(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hemachatus|1
+(noun)|Hemachatus|genus Hemachatus|reptile genus (generic term)
+genus hemerocallis|1
+(noun)|Hemerocallis|genus Hemerocallis|liliid monocot genus (generic term)
+genus hemigalus|1
+(noun)|Hemigalus|genus Hemigalus|mammal genus (generic term)
+genus hemigrammus|1
+(noun)|Hemigrammus|genus Hemigrammus|fish genus (generic term)
+genus hemipteronatus|1
+(noun)|Hemipteronatus|genus Hemipteronatus|fish genus (generic term)
+genus hemitripterus|1
+(noun)|Hemitripterus|genus Hemitripterus|fish genus (generic term)
+genus hepatica|1
+(noun)|genus Hepatica|magnoliid dicot genus (generic term)
+genus heracleum|1
+(noun)|Heracleum|genus Heracleum|rosid dicot genus (generic term)
+genus heritiera|1
+(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus (generic term)
+genus hermannia|1
+(noun)|Hermannia|genus Hermannia|dilleniid dicot genus (generic term)
+genus hermissenda|1
+(noun)|Hermissenda|genus Hermissenda|mollusk genus (generic term)
+genus hernaria|1
+(noun)|Hernaria|genus Hernaria|caryophylloid dicot genus (generic term)
+genus herpestes|1
+(noun)|Herpestes|genus Herpestes|mammal genus (generic term)
+genus herrerasaurus|1
+(noun)|genus Herrerasaurus|reptile genus (generic term)
+genus hesperiphona|1
+(noun)|Hesperiphona|genus Hesperiphona|bird genus (generic term)
+genus hesperis|1
+(noun)|Hesperis|genus Hesperis|dilleniid dicot genus (generic term)
+genus heteranthera|1
+(noun)|Heteranthera|genus Heteranthera|monocot genus (generic term)|liliopsid genus (generic term)
+genus heterocephalus|1
+(noun)|Heterocephalus|genus Heterocephalus|mammal genus (generic term)
+genus heterodon|1
+(noun)|Heterodon|genus Heterodon|reptile genus (generic term)
+genus heteromeles|1
+(noun)|Heteromeles|genus Heteromeles|rosid dicot genus (generic term)
+genus heteroscelus|1
+(noun)|Heteroscelus|genus Heteroscelus|bird genus (generic term)
+genus heterotheca|1
+(noun)|Heterotheca|genus Heterotheca|asterid dicot genus (generic term)
+genus heuchera|1
+(noun)|Heuchera|genus Heuchera|rosid dicot genus (generic term)
+genus hevea|1
+(noun)|Hevea|genus Hevea|rosid dicot genus (generic term)
+genus hexagrammos|1
+(noun)|Hexagrammos|genus Hexagrammos|fish genus (generic term)
+genus hexalectris|1
+(noun)|Hexalectris|genus Hexalectris|monocot genus (generic term)|liliopsid genus (generic term)
+genus hexamita|1
+(noun)|Hexamita|genus Hexamita|protoctist genus (generic term)
+genus hexanchus|1
+(noun)|Hexanchus|genus Hexanchus|fish genus (generic term)
+genus hibbertia|1
+(noun)|Hibbertia|genus Hibbertia|dilleniid dicot genus (generic term)
+genus hibiscus|1
+(noun)|genus Hibiscus|dilleniid dicot genus (generic term)
+genus hieracium|1
+(noun)|Hieracium|genus Hieracium|asterid dicot genus (generic term)
+genus himantoglossum|1
+(noun)|Himantoglossum|genus Himantoglossum|monocot genus (generic term)|liliopsid genus (generic term)
+genus himantopus|1
+(noun)|Himantopus|genus Himantopus|bird genus (generic term)
+genus hippeastrum|1
+(noun)|genus Hippeastrum|liliid monocot genus (generic term)
+genus hippobosca|1
+(noun)|Hippobosca|genus Hippobosca|arthropod genus (generic term)
+genus hippocampus|1
+(noun)|Hippocampus|genus Hippocampus|fish genus (generic term)
+genus hippocrepis|1
+(noun)|Hippocrepis|genus Hippocrepis|rosid dicot genus (generic term)
+genus hippodamia|1
+(noun)|Hippodamia|genus Hippodamia|arthropod genus (generic term)
+genus hippoglossoides|1
+(noun)|Hippoglossoides|genus Hippoglossoides|fish genus (generic term)
+genus hippoglossus|1
+(noun)|Hippoglossus|genus Hippoglossus|fish genus (generic term)
+genus hippopotamus|1
+(noun)|genus Hippopotamus|mammal genus (generic term)
+genus hipposideros|1
+(noun)|Hipposideros|genus Hipposideros|mammal genus (generic term)
+genus hippotragus|1
+(noun)|Hippotragus|genus Hippotragus|mammal genus (generic term)
+genus hipsurus|1
+(noun)|Hipsurus|genus Hipsurus|fish genus (generic term)
+genus hirudo|1
+(noun)|Hirudo|genus Hirudo|worm genus (generic term)
+genus hirundo|1
+(noun)|Hirundo|genus Hirundo|bird genus (generic term)
+genus hoheria|1
+(noun)|Hoheria|genus Hoheria|dilleniid dicot genus (generic term)
+genus holarrhena|1
+(noun)|Holarrhena|genus Holarrhena|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus holbrookia|1
+(noun)|Holbrookia|genus Holbrookia|reptile genus (generic term)
+genus holcus|1
+(noun)|Holcus|genus Holcus|monocot genus (generic term)|liliopsid genus (generic term)
+genus holocentrus|1
+(noun)|Holocentrus|genus Holocentrus|fish genus (generic term)
+genus holothuria|1
+(noun)|Holothuria|genus Holothuria|echinoderm genus (generic term)
+genus homarus|1
+(noun)|Homarus|genus Homarus|arthropod genus (generic term)
+genus homo|1
+(noun)|genus Homo|mammal genus (generic term)
+genus homogyne|1
+(noun)|Homogyne|genus Homogyne|asterid dicot genus (generic term)
+genus homona|1
+(noun)|Homona|genus Homona|arthropod genus (generic term)
+genus hordeum|1
+(noun)|Hordeum|genus Hordeum|monocot genus (generic term)|liliopsid genus (generic term)
+genus horneophyton|1
+(noun)|Horneophyton|genus Horneophyton|fern genus (generic term)
+genus hosta|1
+(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus (generic term)
+genus hottonia|1
+(noun)|Hottonia|genus Hottonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus houttuynia|1
+(noun)|Houttuynia|genus Houttuynia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hovea|1
+(noun)|genus Hovea|rosid dicot genus (generic term)
+genus hoya|1
+(noun)|genus Hoya|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hudsonia|1
+(noun)|Hudsonia|genus Hudsonia|dilleniid dicot genus (generic term)
+genus hugueninia|1
+(noun)|Hugueninia|genus Hugueninia|dilleniid dicot genus (generic term)
+genus hulsea|1
+(noun)|Hulsea|genus Hulsea|asterid dicot genus (generic term)
+genus humulus|1
+(noun)|Humulus|genus Humulus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus hunnemania|1
+(noun)|Hunnemannia|genus Hunnemania|dilleniid dicot genus (generic term)
+genus hyacinthoides|1
+(noun)|Hyacinthoides|genus Hyacinthoides|liliid monocot genus (generic term)
+genus hyacinthus|1
+(noun)|genus Hyacinthus|liliid monocot genus (generic term)
+genus hyaena|1
+(noun)|genus Hyaena|mammal genus (generic term)
+genus hyalophora|1
+(noun)|Hyalophora|genus Hyalophora|arthropod genus (generic term)
+genus hyalosperma|1
+(noun)|Hyalosperma|genus Hyalosperma|asterid dicot genus (generic term)
+genus hybanthus|1
+(noun)|Hybanthus|genus Hybanthus|dilleniid dicot genus (generic term)
+genus hydnocarpus|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+genus hydnum|1
+(noun)|Hydnum|genus Hydnum|fungus genus (generic term)
+genus hydra|1
+(noun)|genus Hydra|coelenterate genus (generic term)
+genus hydrangea|1
+(noun)|genus Hydrangea|rosid dicot genus (generic term)
+genus hydrastis|1
+(noun)|Hydrastis|genus Hydrastis|magnoliid dicot genus (generic term)
+genus hydrilla|1
+(noun)|genus Hydrilla|monocot genus (generic term)|liliopsid genus (generic term)
+genus hydrobates|1
+(noun)|Hydrobates|genus Hydrobates|bird genus (generic term)
+genus hydrocharis|1
+(noun)|Hydrocharis|genus Hydrocharis|monocot genus (generic term)|liliopsid genus (generic term)
+genus hydrochoerus|1
+(noun)|Hydrochoerus|genus Hydrochoerus|mammal genus (generic term)
+genus hydrodamalis|1
+(noun)|Hydrodamalis|genus Hydrodamalis|mammal genus (generic term)
+genus hydromantes|1
+(noun)|Hydromantes|genus Hydromantes|amphibian genus (generic term)
+genus hydromys|1
+(noun)|Hydromys|genus Hydromys|mammal genus (generic term)
+genus hydrophyllum|1
+(noun)|Hydrophyllum|genus Hydrophyllum|asterid dicot genus (generic term)
+genus hyemoschus|1
+(noun)|Hyemoschus|genus Hyemoschus|mammal genus (generic term)
+genus hygrocybe|1
+(noun)|Hygrocybe|genus Hygrocybe|fungus genus (generic term)
+genus hygrophorus|1
+(noun)|Hygrophorus|genus Hygrophorus|fungus genus (generic term)
+genus hygrotrama|1
+(noun)|Hygrotrama|genus Hygrotrama|fungus genus (generic term)
+genus hyla|1
+(noun)|Hyla|genus Hyla|amphibian genus (generic term)
+genus hylactophryne|1
+(noun)|Hylactophryne|genus Hylactophryne|amphibian genus (generic term)
+genus hylobates|1
+(noun)|Hylobates|genus Hylobates|mammal genus (generic term)
+genus hylocereus|1
+(noun)|Hylocereus|genus Hylocereus|caryophylloid dicot genus (generic term)
+genus hylocichla|1
+(noun)|Hylocichla|genus Hylocichla|bird genus (generic term)
+genus hylophylax|1
+(noun)|Hylophylax|genus Hylophylax|bird genus (generic term)
+genus hymenaea|1
+(noun)|Hymenaea|genus Hymenaea|rosid dicot genus (generic term)
+genus hymenanthera|1
+(noun)|Hymenanthera|genus Hymenanthera|dilleniid dicot genus (generic term)
+genus hymenophyllum|1
+(noun)|Hymenophyllum|genus Hymenophyllum|fern genus (generic term)
+genus hynerpeton|1
+(noun)|Hynerpeton|genus Hynerpeton|amphibian genus (generic term)
+genus hyoscyamus|1
+(noun)|Hyoscyamus|genus Hyoscyamus|asterid dicot genus (generic term)
+genus hypentelium|1
+(noun)|Hypentelium|genus Hypentelium|fish genus (generic term)
+genus hypericum|1
+(noun)|Hypericum|genus Hypericum|dilleniid dicot genus (generic term)
+genus hyperoglyphe|1
+(noun)|Hyperoglyphe|genus Hyperoglyphe|fish genus (generic term)
+genus hyperoodon|1
+(noun)|Hyperoodon|genus Hyperoodon|mammal genus (generic term)
+genus hyphantria|1
+(noun)|Hyphantria|genus Hyphantria|arthropod genus (generic term)
+genus hypochaeris|1
+(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus (generic term)
+genus hypochoeris|1
+(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus (generic term)
+genus hypoderma|1
+(noun)|Hypoderma|genus Hypoderma|arthropod genus (generic term)
+genus hypopachus|1
+(noun)|Hypopachus|genus Hypopachus|amphibian genus (generic term)
+genus hypopitys|1
+(noun)|Hypopitys|genus Hypopitys|dilleniid dicot genus (generic term)
+genus hypoxis|1
+(noun)|Hypoxis|genus Hypoxis|liliid monocot genus (generic term)
+genus hypsiglena|1
+(noun)|Hypsiglena|genus Hypsiglena|reptile genus (generic term)
+genus hypsiprymnodon|1
+(noun)|Hypsiprymnodon|genus Hypsiprymnodon|mammal genus (generic term)
+genus hyracotherium|1
+(noun)|Hyracotherium|genus Hyracotherium|mammal genus (generic term)
+genus hyssopus|1
+(noun)|Hyssopus|genus Hyssopus|asterid dicot genus (generic term)
+genus iberis|1
+(noun)|Iberis|genus Iberis|dilleniid dicot genus (generic term)
+genus ibero-mesornis|1
+(noun)|genus Ibero-mesornis|bird genus (generic term)
+genus ibis|1
+(noun)|genus Ibis|bird genus (generic term)
+genus ichthyosaurus|1
+(noun)|genus Ichthyosaurus|reptile genus (generic term)
+genus ichthyostega|1
+(noun)|genus Ichthyostega|amphibian genus (generic term)
+genus ictalurus|1
+(noun)|Ictalurus|genus Ictalurus|fish genus (generic term)
+genus icteria|1
+(noun)|Icteria|genus Icteria|bird genus (generic term)
+genus icterus|1
+(noun)|Icterus|genus Icterus|bird genus (generic term)
+genus ictiobus|1
+(noun)|Ictiobus|genus Ictiobus|fish genus (generic term)
+genus ictonyx|1
+(noun)|Ictonyx|genus Ictonyx|mammal genus (generic term)
+genus idesia|1
+(noun)|genus Idesia|dilleniid dicot genus (generic term)
+genus iguana|1
+(noun)|genus Iguana|reptile genus (generic term)
+genus iguanodon|1
+(noun)|genus Iguanodon|reptile genus (generic term)
+genus ilex|1
+(noun)|Ilex|genus Ilex|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus iliamna|1
+(noun)|Iliamna|genus Iliamna|dilleniid dicot genus (generic term)
+genus illecebrum|1
+(noun)|Illecebrum|genus Illecebrum|caryophylloid dicot genus (generic term)
+genus illicium|1
+(noun)|Illicium|genus Illicium|magnoliid dicot genus (generic term)
+genus impatiens|1
+(noun)|genus Impatiens|rosid dicot genus (generic term)
+genus inachis|1
+(noun)|Inachis|genus Inachis|arthropod genus (generic term)
+genus indigofera|1
+(noun)|Indigofera|genus Indigofera|rosid dicot genus (generic term)
+genus indri|1
+(noun)|genus Indri|mammal genus (generic term)
+genus inga|1
+(noun)|genus Inga|rosid dicot genus (generic term)
+genus inula|1
+(noun)|genus Inula|asterid dicot genus (generic term)
+genus ipomoea|1
+(noun)|Ipomoea|genus Ipomoea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus irena|1
+(noun)|Irena|genus Irena|bird genus (generic term)
+genus iresine|1
+(noun)|Iresine|genus Iresine|caryophylloid dicot genus (generic term)
+genus iridoprocne|1
+(noun)|Iridoprocne|genus Iridoprocne|bird genus (generic term)
+genus iris|1
+(noun)|genus Iris|liliid monocot genus (generic term)|Iridaceae (generic term)|family Iridaceae (generic term)|iris family (generic term)
+genus irvingia|1
+(noun)|Irvingia|genus Irvingia|rosid dicot genus (generic term)
+genus isatis|1
+(noun)|Isatis|genus Isatis|dilleniid dicot genus (generic term)
+genus ischigualastia|1
+(noun)|Ischigualastia|genus Ischigualastia|reptile genus (generic term)
+genus isoetes|1
+(noun)|Isoetes|genus Isoetes|fern genus (generic term)
+genus isopyrum|1
+(noun)|Isopyrum|genus Isopyrum|magnoliid dicot genus (generic term)
+genus istiophorus|1
+(noun)|Istiophorus|genus Istiophorus|fish genus (generic term)
+genus isurus|1
+(noun)|Isurus|genus Isurus|fish genus (generic term)
+genus iva|1
+(noun)|genus Iva|asterid dicot genus (generic term)
+genus ixia|1
+(noun)|Ixia|genus Ixia|liliid monocot genus (generic term)
+genus ixobrychus|1
+(noun)|Ixobrychus|genus Ixobrychus|bird genus (generic term)
+genus ixodes|1
+(noun)|Ixodes|genus Ixodes|arthropod genus (generic term)
+genus jabiru|1
+(noun)|genus Jabiru|bird genus (generic term)
+genus jacksonia|1
+(noun)|Jacksonia|genus Jacksonia|rosid dicot genus (generic term)
+genus jacquinia|1
+(noun)|Jacquinia|genus Jacquinia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus jaculus|1
+(noun)|Jaculus|genus Jaculus|mammal genus (generic term)
+genus jambos|1
+(noun)|Jambos|genus Jambos|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus jamesonia|1
+(noun)|Jamesonia|genus Jamesonia|fern genus (generic term)
+genus jasminum|1
+(noun)|Jasminum|genus Jasminum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus jatropha|1
+(noun)|Jatropha|genus Jatropha|rosid dicot genus (generic term)
+genus javanthropus|1
+(noun)|Javanthropus|genus Javanthropus|hominid (generic term)
+genus jordanella|1
+(noun)|Jordanella|genus Jordanella|fish genus (generic term)
+genus juglans|1
+(noun)|Juglans|genus Juglans|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus junco|1
+(noun)|genus Junco|bird genus (generic term)
+genus juncus|1
+(noun)|Juncus|genus Juncus|monocot genus (generic term)|liliopsid genus (generic term)
+genus juniperus|1
+(noun)|Juniperus|genus Juniperus|gymnosperm genus (generic term)
+genus jynx|1
+(noun)|Jynx|genus Jynx|bird genus (generic term)
+genus kakatoe|1
+(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus (generic term)
+genus kalmia|1
+(noun)|genus Kalmia|dilleniid dicot genus (generic term)
+genus kalotermes|1
+(noun)|Kalotermes|genus Kalotermes|arthropod genus (generic term)
+genus katsuwonus|1
+(noun)|Katsuwonus|genus Katsuwonus|fish genus (generic term)
+genus kennedia|1
+(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus (generic term)
+genus kennedya|1
+(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus (generic term)
+genus kenyapithecus|1
+(noun)|Kenyapithecus|genus Kenyapithecus|mammal genus (generic term)
+genus keteleeria|1
+(noun)|genus Keteleeria|gymnosperm genus (generic term)
+genus khaya|1
+(noun)|Khaya|genus Khaya|rosid dicot genus (generic term)
+genus kiggelaria|1
+(noun)|Kiggelaria|genus Kiggelaria|dilleniid dicot genus (generic term)
+genus kinosternon|1
+(noun)|Kinosternon|genus Kinosternon|reptile genus (generic term)
+genus kirkia|1
+(noun)|Kirkia|genus Kirkia|rosid dicot genus (generic term)
+genus klebsiella|1
+(noun)|genus Klebsiella|bacteria genus (generic term)
+genus knightia|1
+(noun)|Knightia|genus Knightia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus kniphofia|1
+(noun)|genus Kniphofia|liliid monocot genus (generic term)
+genus kobus|1
+(noun)|Kobus|genus Kobus|mammal genus (generic term)
+genus kochia|1
+(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus (generic term)
+genus koellia|1
+(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus (generic term)
+genus kogia|1
+(noun)|Kogia|genus Kogia|mammal genus (generic term)
+genus kohleria|1
+(noun)|genus Kohleria|asterid dicot genus (generic term)
+genus kolkwitzia|1
+(noun)|Kolkwitzia|genus Kolkwitzia|asterid dicot genus (generic term)
+genus kosteletzya|1
+(noun)|Kosteletzya|genus Kosteletzya|dilleniid dicot genus (generic term)
+genus krigia|1
+(noun)|genus Krigia|asterid dicot genus (generic term)
+genus krypterophaneron|1
+(noun)|Krypterophaneron|genus Krypterophaneron|fish genus (generic term)
+genus kyphosus|1
+(noun)|Kyphosus|genus Kyphosus|fish genus (generic term)
+genus lablab|1
+(noun)|Lablab|genus Lablab|rosid dicot genus (generic term)
+genus laburnum|1
+(noun)|Laburnum|genus Laburnum|rosid dicot genus (generic term)
+genus laccopetalum|1
+(noun)|Laccopetalum|genus Laccopetalum|magnoliid dicot genus (generic term)
+genus lacerta|1
+(noun)|Lacerta|genus Lacerta|reptile genus (generic term)
+genus lachnolaimus|1
+(noun)|Lachnolaimus|genus Lachnolaimus|fish genus (generic term)
+genus lactarius|1
+(noun)|Lactarius|genus Lactarius|fungus genus (generic term)
+genus lactobacillus|1
+(noun)|genus Lactobacillus|bacteria genus (generic term)
+genus lactophrys|1
+(noun)|Lactophrys|genus Lactophrys|fish genus (generic term)
+genus lactuca|1
+(noun)|Lactuca|genus Lactuca|asterid dicot genus (generic term)
+genus laelia|1
+(noun)|genus Laelia|monocot genus (generic term)|liliopsid genus (generic term)
+genus lagarostrobus|1
+(noun)|Lagarostrobus|genus Lagarostrobus|gymnosperm genus (generic term)
+genus lagenaria|1
+(noun)|Lagenaria|genus Lagenaria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lagenophera|1
+(noun)|Lagenophera|genus Lagenophera|asterid dicot genus (generic term)
+genus lagerstroemia|1
+(noun)|Lagerstroemia|genus Lagerstroemia|plant genus (generic term)
+genus lagidium|1
+(noun)|Lagidium|genus Lagidium|mammal genus (generic term)
+genus lagodon|1
+(noun)|Lagodon|genus Lagodon|fish genus (generic term)
+genus lagopus|1
+(noun)|Lagopus|genus Lagopus|bird genus (generic term)
+genus lagorchestes|1
+(noun)|Lagorchestes|genus Lagorchestes|mammal genus (generic term)
+genus lagostomus|1
+(noun)|Lagostomus|genus Lagostomus|mammal genus (generic term)
+genus lagothrix|1
+(noun)|Lagothrix|genus Lagothrix|mammal genus (generic term)
+genus laguncularia|1
+(noun)|Laguncularia|genus Laguncularia|plant genus (generic term)
+genus lama|1
+(noun)|Lama|genus Lama|mammal genus (generic term)
+genus lambertia|1
+(noun)|Lambertia|genus Lambertia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lambis|1
+(noun)|Lambis|genus Lambis|mollusk genus (generic term)
+genus laminaria|1
+(noun)|Laminaria|genus Laminaria|protoctist genus (generic term)
+genus lamium|1
+(noun)|Lamium|genus Lamium|asterid dicot genus (generic term)
+genus lamna|1
+(noun)|Lamna|genus Lamna|fish genus (generic term)
+genus lampris|1
+(noun)|Lampris|genus Lampris|fish genus (generic term)
+genus lampropeltis|1
+(noun)|Lampropeltis|genus Lampropeltis|reptile genus (generic term)
+genus languas|1
+(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus (generic term)
+genus lanius|1
+(noun)|Lanius|genus Lanius|bird genus (generic term)
+genus lansium|1
+(noun)|genus Lansium|rosid dicot genus (generic term)
+genus lanthanotus|1
+(noun)|Lanthanotus|genus Lanthanotus|reptile genus (generic term)
+genus laportea|1
+(noun)|Laportea|genus Laportea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lappula|1
+(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus (generic term)
+genus lardizabala|1
+(noun)|Lardizabala|genus Lardizabala|magnoliid dicot genus (generic term)
+genus larix|1
+(noun)|Larix|genus Larix|gymnosperm genus (generic term)
+genus larrea|1
+(noun)|Larrea|genus Larrea|rosid dicot genus (generic term)
+genus larus|1
+(noun)|Larus|genus Larus|bird genus (generic term)
+genus lasiocampa|1
+(noun)|Lasiocampa|genus Lasiocampa|arthropod genus (generic term)
+genus lasiurus|1
+(noun)|Lasiurus|genus Lasiurus|mammal genus (generic term)
+genus lasthenia|1
+(noun)|Lasthenia|genus Lasthenia|asterid dicot genus (generic term)
+genus lastreopsis|1
+(noun)|Lastreopsis|genus Lastreopsis|fern genus (generic term)
+genus lathyrus|1
+(noun)|Lathyrus|genus Lathyrus|rosid dicot genus (generic term)
+genus latimeria|1
+(noun)|Latimeria|genus Latimeria|fish genus (generic term)
+genus latrodectus|1
+(noun)|Latrodectus|genus Latrodectus|arthropod genus (generic term)
+genus laurus|1
+(noun)|Laurus|genus Laurus|magnoliid dicot genus (generic term)
+genus lavandula|1
+(noun)|Lavandula|genus Lavandula|asterid dicot genus (generic term)
+genus lavatera|1
+(noun)|Lavatera|genus Lavatera|dilleniid dicot genus (generic term)
+genus layia|1
+(noun)|Layia|genus Layia|asterid dicot genus (generic term)
+genus lebistes|1
+(noun)|Lebistes|genus Lebistes|fish genus (generic term)
+genus lecanopteris|1
+(noun)|genus Lecanopteris|fern genus (generic term)
+genus lecanora|1
+(noun)|genus Lecanora|fungus genus (generic term)
+genus leccinum|1
+(noun)|Leccinum|genus Leccinum|fungus genus (generic term)
+genus ledum|1
+(noun)|Ledum|genus Ledum|dilleniid dicot genus (generic term)
+genus leiopelma|1
+(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus (generic term)
+genus leiophyllum|1
+(noun)|Leiophyllum|genus Leiophyllum|dilleniid dicot genus (generic term)
+genus leipoa|1
+(noun)|genus Leipoa|bird genus (generic term)
+genus leishmania|1
+(noun)|Leishmania|genus Leishmania|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+genus leitneria|1
+(noun)|Leitneria|genus Leitneria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lemaireocereus|1
+(noun)|Lemaireocereus|genus Lemaireocereus|caryophylloid dicot genus (generic term)
+genus lemmus|1
+(noun)|Lemmus|mammal genus (generic term)
+genus lemna|1
+(noun)|Lemna|genus Lemna|monocot genus (generic term)|liliopsid genus (generic term)
+genus lemur|1
+(noun)|genus Lemur|mammal genus (generic term)
+genus lens|1
+(noun)|Lens|genus Lens|rosid dicot genus (generic term)
+genus lentinus|1
+(noun)|Lentinus|genus Lentinus|fungus genus (generic term)
+genus leonotis|1
+(noun)|Leonotis|genus Leonotis|asterid dicot genus (generic term)
+genus leontideus|1
+(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus (generic term)
+genus leontocebus|1
+(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus (generic term)
+genus leontodon|1
+(noun)|Leontodon|genus Leontodon|asterid dicot genus (generic term)
+genus leontopodium|1
+(noun)|Leontopodium|genus Leontopodium|asterid dicot genus (generic term)
+genus leonurus|1
+(noun)|Leonurus|genus Leonurus|asterid dicot genus (generic term)
+genus lepas|1
+(noun)|Lepas|genus Lepas|arthropod genus (generic term)
+genus lepechinia|1
+(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus (generic term)
+genus lepidium|1
+(noun)|Lepidium|genus Lepidium|dilleniid dicot genus (generic term)
+genus lepidobotrys|1
+(noun)|genus Lepidobotrys|rosid dicot genus (generic term)
+genus lepidochelys|1
+(noun)|Lepidochelys|genus Lepidochelys|reptile genus (generic term)
+genus lepidocybium|1
+(noun)|Lepidocybium|genus Lepidocybium|fish genus (generic term)
+genus lepidothamnus|1
+(noun)|Lepidothamnus|genus Lepidothamnus|gymnosperm genus (generic term)
+genus lepiota|1
+(noun)|genus Lepiota|fungus genus (generic term)
+genus lepisma|1
+(noun)|Lepisma|genus Lepisma|arthropod genus (generic term)
+genus lepisosteus|1
+(noun)|Lepisosteus|genus Lepisosteus|fish genus (generic term)
+genus lepomis|1
+(noun)|Lepomis|genus Lepomis|fish genus (generic term)
+genus leptarrhena|1
+(noun)|Leptarrhena|genus Leptarrhena|rosid dicot genus (generic term)
+genus leptinotarsa|1
+(noun)|Leptinotarsa|genus Leptinotarsa|arthropod genus (generic term)
+genus leptodactylus|1
+(noun)|Leptodactylus|genus Leptodactylus|amphibian genus (generic term)
+genus leptoglossus|1
+(noun)|Leptoglossus|genus Leptoglossus|arthropod genus (generic term)
+genus leptopteris|1
+(noun)|Leptopteris|genus Leptopteris|fern genus (generic term)
+genus leptoptilus|1
+(noun)|Leptoptilus|genus Leptoptilus|bird genus (generic term)
+genus leptospira|1
+(noun)|genus Leptospira|bacteria genus (generic term)
+genus leptotyphlops|1
+(noun)|Leptotyphlops|genus Leptotyphlops|reptile genus (generic term)
+genus lepus|1
+(noun)|Lepus|genus Lepus|mammal genus (generic term)
+genus lespedeza|1
+(noun)|genus Lespedeza|rosid dicot genus (generic term)
+genus lesquerella|1
+(noun)|Lesquerella|genus Lesquerella|dilleniid dicot genus (generic term)
+genus leucadendron|1
+(noun)|Leucadendron|genus Leucadendron|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus leucaena|1
+(noun)|Leucaena|genus Leucaena|rosid dicot genus (generic term)
+genus leucanthemum|1
+(noun)|Leucanthemum|genus Leucanthemum|asterid dicot genus (generic term)
+genus leuciscus|1
+(noun)|Leuciscus|genus Leuciscus|fish genus (generic term)
+genus leucocytozoan|1
+(noun)|genus Leucocytozoon|genus Leucocytozoan|protoctist genus (generic term)
+genus leucocytozoon|1
+(noun)|genus Leucocytozoon|genus Leucocytozoan|protoctist genus (generic term)
+genus leucogenes|1
+(noun)|Leucogenes|genus Leucogenes|asterid dicot genus (generic term)
+genus leucothoe|1
+(noun)|genus Leucothoe|dilleniid dicot genus (generic term)
+genus levisticum|1
+(noun)|Levisticum|genus Levisticum|rosid dicot genus (generic term)
+genus lewisia|1
+(noun)|Lewisia|genus Lewisia|caryophylloid dicot genus (generic term)
+genus leycesteria|1
+(noun)|Leycesteria|genus Leycesteria|asterid dicot genus (generic term)
+genus leymus|1
+(noun)|Leymus|genus Leymus|monocot genus (generic term)|liliopsid genus (generic term)
+genus liatris|1
+(noun)|Liatris|genus Liatris|asterid dicot genus (generic term)
+genus libocedrus|1
+(noun)|Libocedrus|genus Libocedrus|gymnosperm genus (generic term)
+genus lichanura|1
+(noun)|Lichanura|genus Lichanura|reptile genus (generic term)
+genus ligularia|1
+(noun)|Ligularia|genus Ligularia|asterid dicot genus (generic term)
+genus ligustrum|1
+(noun)|Ligustrum|genus Ligustrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lilium|1
+(noun)|Lilium|genus Lilium|liliid monocot genus (generic term)
+genus limanda|1
+(noun)|Limanda|genus Limanda|fish genus (generic term)
+genus limax|1
+(noun)|Limax|genus Limax|mollusk genus (generic term)
+genus limenitis|1
+(noun)|Limenitis|genus Limenitis|arthropod genus (generic term)
+genus limnobium|1
+(noun)|Limnobium|genus Limnobium|monocot genus (generic term)|liliopsid genus (generic term)
+genus limnocryptes|1
+(noun)|Limnocryptes|genus Limnocryptes|bird genus (generic term)
+genus limnodromus|1
+(noun)|Limnodromus|genus Limnodromus|bird genus (generic term)
+genus limonium|1
+(noun)|Limonium|genus Limonium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus limosa|1
+(noun)|Limosa|genus Limosa|bird genus (generic term)
+genus limulus|1
+(noun)|Limulus|genus Limulus|arthropod genus (generic term)
+genus linanthus|1
+(noun)|Linanthus|genus Linanthus|plant genus (generic term)
+genus linaria|1
+(noun)|Linaria|genus Linaria|asterid dicot genus (generic term)
+genus lindera|1
+(noun)|Lindera|genus Lindera|magnoliid dicot genus (generic term)
+genus lindheimera|1
+(noun)|Lindheimera|genus Lindheimera|asterid dicot genus (generic term)
+genus linnaea|1
+(noun)|Linnaea|genus Linnaea|asterid dicot genus (generic term)
+genus linum|1
+(noun)|Linum|genus Linum|plant genus (generic term)
+genus liomys|1
+(noun)|Liomys|genus Liomys|mammal genus (generic term)
+genus liopelma|1
+(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus (generic term)
+genus liparis|2
+(noun)|genus Liparis|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Liparis|genus Liparis|fish genus (generic term)
+genus liposcelis|1
+(noun)|Liposcelis|genus Liposcelis|arthropod genus (generic term)
+genus liquidambar|1
+(noun)|genus Liquidambar|Liquidambar|plant genus (generic term)
+genus liriodendron|1
+(noun)|Liriodendron|genus Liriodendron|magnoliid dicot genus (generic term)
+genus liriope|1
+(noun)|Liriope|genus Liriope|liliid monocot genus (generic term)
+genus listera|1
+(noun)|Listera|genus Listera|monocot genus (generic term)|liliopsid genus (generic term)
+genus listeria|1
+(noun)|genus Listeria|bacteria genus (generic term)
+genus litchi|1
+(noun)|genus Litchi|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lithocarpus|1
+(noun)|Lithocarpus|genus Lithocarpus|hamamelid dicot genus (generic term)
+genus lithophragma|1
+(noun)|Lithophragma|genus Lithophragma|rosid dicot genus (generic term)
+genus lithops|1
+(noun)|genus Lithops|caryophylloid dicot genus (generic term)
+genus lithospermum|1
+(noun)|Lithospermum|genus Lithospermum|plant genus (generic term)
+genus litocranius|1
+(noun)|Litocranius|genus Litocranius|mammal genus (generic term)
+genus littorina|1
+(noun)|Littorina|genus Littorina|mollusk genus (generic term)
+genus livistona|1
+(noun)|Livistona|genus Livistona|plant genus (generic term)
+genus loasa|1
+(noun)|genus Loasa|dilleniid dicot genus (generic term)
+genus lobelia|1
+(noun)|genus Lobelia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lobipes|1
+(noun)|Lobipes|genus Lobipes|bird genus (generic term)
+genus lobotes|1
+(noun)|Lobotes|genus Lobotes|fish genus (generic term)
+genus lobularia|1
+(noun)|Lobularia|genus Lobularia|dilleniid dicot genus (generic term)
+genus locusta|1
+(noun)|Locusta|genus Locusta|arthropod genus (generic term)
+genus lofortyx|1
+(noun)|Lofortyx|genus Lofortyx|bird genus (generic term)
+genus logania|1
+(noun)|Logania|genus Logania|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus loiseleuria|1
+(noun)|Loiseleuria|genus Loiseleuria|dilleniid dicot genus (generic term)
+genus loligo|1
+(noun)|genus Loligo|mollusk genus (generic term)
+genus lolium|1
+(noun)|Lolium|genus Lolium|monocot genus (generic term)|liliopsid genus (generic term)
+genus lomatia|1
+(noun)|genus Lomatia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lomogramma|1
+(noun)|Lomogramma|genus Lomogramma|fern genus (generic term)
+genus lonas|1
+(noun)|Lonas|genus Lonas|asterid dicot genus (generic term)
+genus lonchocarpus|1
+(noun)|Lonchocarpus|genus Lonchocarpus|rosid dicot genus (generic term)
+genus lonicera|1
+(noun)|Lonicera|genus Lonicera|asterid dicot genus (generic term)
+genus lophius|1
+(noun)|Lophius|genus Lophius|fish genus (generic term)
+genus lophodytes|1
+(noun)|Lophodytes|genus Lophodytes|bird genus (generic term)
+genus lopholatilus|1
+(noun)|Lopholatilus|genus Lopholatilus|fish genus (generic term)
+genus lophophora|1
+(noun)|Lophophora|genus Lophophora|caryophylloid dicot genus (generic term)
+genus lophophorus|1
+(noun)|Lophophorus|genus Lophophorus|bird genus (generic term)
+genus lophosoria|1
+(noun)|Lophosoria|genus Lophosoria|fern genus (generic term)
+genus loranthus|1
+(noun)|Loranthus|genus Loranthus|dilleniid dicot genus (generic term)
+genus loris|1
+(noun)|genus Loris|mammal genus (generic term)
+genus lota|1
+(noun)|Lota|genus Lota|fish genus (generic term)
+genus lotus|1
+(noun)|Lotus|genus Lotus|rosid dicot genus (generic term)
+genus lovoa|1
+(noun)|Lovoa|genus Lovoa|rosid dicot genus (generic term)
+genus loxia|1
+(noun)|Loxia|genus Loxia|bird genus (generic term)
+genus loxodonta|1
+(noun)|Loxodonta|genus Loxodonta|mammal genus (generic term)
+genus loxoma|1
+(noun)|Loxoma|genus Loxoma|fern genus (generic term)
+genus loxostege|1
+(noun)|Loxostege|genus Loxostege|arthropod genus (generic term)
+genus lucilia|1
+(noun)|Lucilia|genus Lucilia|arthropod genus (generic term)
+genus lufengpithecus|1
+(noun)|Lufengpithecus|genus Lufengpithecus|mammal genus (generic term)
+genus luffa|1
+(noun)|genus Luffa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lumpenus|1
+(noun)|Lumpenus|genus Lumpenus|fish genus (generic term)
+genus lunaria|1
+(noun)|Lunaria|genus Lunaria|dilleniid dicot genus (generic term)
+genus lunda|1
+(noun)|Lunda|genus Lunda|bird genus (generic term)
+genus lupinus|1
+(noun)|Lupinus|genus Lupinus|rosid dicot genus (generic term)
+genus luscinia|1
+(noun)|Luscinia|genus Luscinia|bird genus (generic term)
+genus lutjanus|1
+(noun)|Lutjanus|genus Lutjanus|fish genus (generic term)
+genus lutra|1
+(noun)|Lutra|genus Lutra|mammal genus (generic term)
+genus luvarus|1
+(noun)|Luvarus|genus Luvarus|fish genus (generic term)
+genus lycaena|1
+(noun)|Lycaena|genus Lycaena|arthropod genus (generic term)
+genus lycaeon|1
+(noun)|Lycaeon|genus Lycaeon|mammal genus (generic term)
+genus lychnis|1
+(noun)|genus Lychnis|caryophylloid dicot genus (generic term)
+genus lycium|1
+(noun)|Lycium|genus Lycium|asterid dicot genus (generic term)
+genus lycoperdon|1
+(noun)|Lycoperdon|genus Lycoperdon|fungus genus (generic term)
+genus lycopersicon|1
+(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus (generic term)
+genus lycopersicum|1
+(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus (generic term)
+genus lycopodium|1
+(noun)|Lycopodium|genus Lycopodium|fern genus (generic term)
+genus lycopus|1
+(noun)|Lycopus|genus Lycopus|asterid dicot genus (generic term)
+genus lycosa|1
+(noun)|Lycosa|genus Lycosa|arthropod genus (generic term)
+genus lyginopteris|1
+(noun)|Lyginopteris|genus Lyginopteris|gymnosperm genus (generic term)
+genus lygodium|1
+(noun)|Lygodium|genus Lygodium|fern genus (generic term)
+genus lygus|1
+(noun)|Lygus|genus Lygus|arthropod genus (generic term)
+genus lymantria|1
+(noun)|Lymantria|genus Lymantria|arthropod genus (generic term)
+genus lynx|1
+(noun)|genus Lynx|mammal genus (generic term)
+genus lyonia|1
+(noun)|Lyonia|genus Lyonia|dilleniid dicot genus (generic term)
+genus lyrurus|1
+(noun)|Lyrurus|genus Lyrurus|bird genus (generic term)
+genus lysichiton|1
+(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus (generic term)|liliopsid genus (generic term)
+genus lysichitum|1
+(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus (generic term)|liliopsid genus (generic term)
+genus lysiloma|1
+(noun)|Lysiloma|genus Lysiloma|rosid dicot genus (generic term)
+genus lysimachia|1
+(noun)|Lysimachia|genus Lysimachia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus lythrum|1
+(noun)|Lythrum|genus Lythrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus macaca|1
+(noun)|Macaca|genus Macaca|mammal genus (generic term)
+genus macadamia|1
+(noun)|genus Macadamia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus machaeranthera|1
+(noun)|Machaeranthera|genus Machaeranthera|asterid dicot genus (generic term)
+genus macleaya|1
+(noun)|Macleaya|genus Macleaya|dilleniid dicot genus (generic term)
+genus maclura|1
+(noun)|Maclura|genus Maclura|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus macowanites|1
+(noun)|Macowanites|genus Macowanites|fungus genus (generic term)
+genus macrocephalon|1
+(noun)|Macrocephalon|genus Macrocephalon|bird genus (generic term)
+genus macrocheira|1
+(noun)|Macrocheira|genus Macrocheira|arthropod genus (generic term)
+genus macroclemys|1
+(noun)|Macroclemys|genus Macroclemys|reptile genus (generic term)
+genus macrodactylus|1
+(noun)|Macrodactylus|genus Macrodactylus|arthropod genus (generic term)
+genus macronectes|1
+(noun)|Macronectes|genus Macronectes|bird genus (generic term)
+genus macropus|1
+(noun)|Macropus|genus Macropus|mammal genus (generic term)
+genus macrothelypteris|1
+(noun)|Macrothelypteris|genus Macrothelypteris|fern genus (generic term)
+genus macrotis|1
+(noun)|Macrotis|genus Macrotis|mammal genus (generic term)
+genus macrotus|1
+(noun)|genus Macrotus|mammal genus (generic term)
+genus macrotyloma|1
+(noun)|Macrotyloma|genus Macrotyloma|rosid dicot genus (generic term)
+genus macrozamia|1
+(noun)|genus Macrozamia|gymnosperm genus (generic term)
+genus macrozoarces|1
+(noun)|Macrozoarces|genus Macrozoarces|fish genus (generic term)
+genus madia|1
+(noun)|Madia|genus Madia|asterid dicot genus (generic term)
+genus madoqua|1
+(noun)|Madoqua|genus Madoqua|mammal genus (generic term)
+genus maeandra|1
+(noun)|Maeandra|genus Maeandra|coelenterate genus (generic term)
+genus magicicada|1
+(noun)|Magicicada|genus Magicicada|arthropod genus (generic term)
+genus magnolia|1
+(noun)|genus Magnolia|magnoliid dicot genus (generic term)
+genus mahonia|1
+(noun)|Mahonia|genus Mahonia|magnoliid dicot genus (generic term)
+genus maia|1
+(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus (generic term)
+genus maianthemum|1
+(noun)|Maianthemum|genus Maianthemum|liliid monocot genus (generic term)
+genus maja|1
+(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus (generic term)
+genus majorana|1
+(noun)|Majorana|genus Majorana|asterid dicot genus (generic term)
+genus makaira|1
+(noun)|Makaira|genus Makaira|fish genus (generic term)
+genus malaclemys|1
+(noun)|Malaclemys|genus Malaclemys|reptile genus (generic term)
+genus malacosoma|1
+(noun)|Malacosoma|genus Malacosoma|arthropod genus (generic term)
+genus malacothamnus|1
+(noun)|Malacothamnus|genus Malacothamnus|dilleniid dicot genus (generic term)
+genus malaxis|1
+(noun)|Malaxis|genus Malaxis|monocot genus (generic term)|liliopsid genus (generic term)
+genus malcolmia|1
+(noun)|Malcolmia|genus Malcolmia|dilleniid dicot genus (generic term)
+genus mallotus|1
+(noun)|Mallotus|genus Mallotus|fish genus (generic term)
+genus malope|1
+(noun)|genus Malope|dilleniid dicot genus (generic term)
+genus malopterurus|1
+(noun)|Malopterurus|genus Malopterurus|fish genus (generic term)
+genus malosma|1
+(noun)|Malosma|genus Malosma|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus malpighia|1
+(noun)|Malpighia|genus Malpighia|rosid dicot genus (generic term)
+genus malus|1
+(noun)|Malus|genus Malus|rosid dicot genus (generic term)
+genus malva|1
+(noun)|Malva|genus Malva|dilleniid dicot genus (generic term)
+genus malvastrum|1
+(noun)|Malvastrum|genus Malvastrum|dilleniid dicot genus (generic term)
+genus malvaviscus|1
+(noun)|Malvaviscus|genus Malvaviscus|dilleniid dicot genus (generic term)
+genus mammea|1
+(noun)|Mammea|genus Mammea|dilleniid dicot genus (generic term)
+genus mammillaria|1
+(noun)|genus Mammillaria|caryophylloid dicot genus (generic term)
+genus mammut|1
+(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus (generic term)
+genus mammuthus|1
+(noun)|Mammuthus|genus Mammuthus|mammal genus (generic term)
+genus mandevilla|1
+(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus mandragora|1
+(noun)|Mandragora|genus Mandragora|asterid dicot genus (generic term)
+genus mandrillus|1
+(noun)|Mandrillus|genus Mandrillus|mammal genus (generic term)
+genus manduca|1
+(noun)|Manduca|genus Manduca|arthropod genus (generic term)
+genus mangifera|1
+(noun)|Mangifera|genus Mangifera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus manglietia|1
+(noun)|manglietia|genus Manglietia|angiospermous tree (generic term)|flowering tree (generic term)
+genus manihot|1
+(noun)|Manihot|genus Manihot|rosid dicot genus (generic term)
+genus manilkara|1
+(noun)|Manilkara|genus Manilkara|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus manis|1
+(noun)|Manis|genus Manis|mammal genus (generic term)
+genus manta|1
+(noun)|genus Manta|fish genus (generic term)
+genus mantis|1
+(noun)|genus Mantis|arthropod genus (generic term)
+genus maranta|1
+(noun)|genus Maranta|monocot genus (generic term)|liliopsid genus (generic term)
+genus marasmius|1
+(noun)|Marasmius|genus Marasmius|fungus genus (generic term)
+genus marattia|1
+(noun)|Marattia|genus Marattia|fern genus (generic term)
+genus marchantia|1
+(noun)|Marchantia|genus Marchantia|moss genus (generic term)
+genus marmota|1
+(noun)|Marmota|genus Marmota|mammal genus (generic term)
+genus marrubium|1
+(noun)|Marrubium|genus Marrubium|asterid dicot genus (generic term)
+genus marsilea|1
+(noun)|Marsilea|genus Marsilea|fern genus (generic term)
+genus martes|1
+(noun)|Martes|genus Martes|mammal genus (generic term)
+genus martynia|1
+(noun)|genus Martynia|plant genus (generic term)
+genus masdevallia|1
+(noun)|genus Masdevallia|monocot genus (generic term)|liliopsid genus (generic term)
+genus masticophis|1
+(noun)|Masticophis|genus Masticophis|reptile genus (generic term)
+genus mastigoproctus|1
+(noun)|Mastigoproctus|genus Mastigoproctus|arthropod genus (generic term)
+genus mastodon|1
+(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus (generic term)
+genus mastotermes|1
+(noun)|Mastotermes|genus Mastotermes|arthropod genus (generic term)
+genus matricaria|1
+(noun)|Matricaria|genus Matricaria|asterid dicot genus (generic term)
+genus matteuccia|1
+(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus (generic term)
+genus matthiola|1
+(noun)|Matthiola|genus Matthiola|dilleniid dicot genus (generic term)
+genus maxillaria|1
+(noun)|genus Maxillaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus maxostoma|1
+(noun)|Maxostoma|genus Maxostoma|fish genus (generic term)
+genus mayaca|1
+(noun)|Mayaca|genus Mayaca|monocot genus (generic term)|liliopsid genus (generic term)
+genus mayetiola|1
+(noun)|Mayetiola|genus Mayetiola|arthropod genus (generic term)
+genus mazama|1
+(noun)|Mazama|genus Mazama|mammal genus (generic term)
+genus meconopsis|1
+(noun)|Meconopsis|genus Meconopsis|dilleniid dicot genus (generic term)
+genus medicago|1
+(noun)|Medicago|genus Medicago|rosid dicot genus (generic term)|Papilionoideae (generic term)|subfamily Papilionoideae (generic term)
+genus medinilla|1
+(noun)|Medinilla|genus Medinilla|rosid dicot genus (generic term)
+genus megachile|1
+(noun)|Megachile|genus Megachile|arthropod genus (generic term)
+genus megaderma|1
+(noun)|Megaderma|genus Megaderma|mammal genus (generic term)
+genus megalobatrachus|1
+(noun)|Megalobatrachus|genus Megalobatrachus|amphibian genus (generic term)
+genus megalosaurus|1
+(noun)|genus Megalosaurus|reptile genus (generic term)
+genus megaptera|1
+(noun)|Megaptera|genus Megaptera|mammal genus (generic term)
+genus megatherium|1
+(noun)|Megatherium|genus Megatherium|mammal genus (generic term)
+genus melampodium|1
+(noun)|Melampodium|genus Melampodium|asterid dicot genus (generic term)
+genus melampsora|1
+(noun)|Melampsora|genus Melampsora|fungus genus (generic term)
+genus melanerpes|1
+(noun)|Melanerpes|genus Melanerpes|bird genus (generic term)
+genus melanitta|1
+(noun)|Melanitta|genus Melanitta|bird genus (generic term)
+genus melanogrammus|1
+(noun)|Melanogrammus|genus Melanogrammus|fish genus (generic term)
+genus melanoplus|1
+(noun)|Melanoplus|genus Melanoplus|arthropod genus (generic term)
+genus melanotis|1
+(noun)|Melanotis|genus Melanotis|bird genus (generic term)
+genus melastoma|1
+(noun)|Melastoma|genus Melastoma|rosid dicot genus (generic term)
+genus meleagris|1
+(noun)|Meleagris|genus Meleagris|bird genus (generic term)
+genus meles|1
+(noun)|Meles|genus Meles|mammal genus (generic term)
+genus melia|1
+(noun)|Melia|genus Melia|rosid dicot genus (generic term)
+genus melicocca|1
+(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus melicoccus|1
+(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus melicytus|1
+(noun)|Melicytus|genus Melicytus|dilleniid dicot genus (generic term)
+genus melilotus|1
+(noun)|genus Melilotus|rosid dicot genus (generic term)
+genus melissa|1
+(noun)|Melissa|genus Melissa|asterid dicot genus (generic term)
+genus mellivora|1
+(noun)|Mellivora|genus Mellivora|mammal genus (generic term)
+genus melocactus|1
+(noun)|Melocactus|genus Melocactus|caryophylloid dicot genus (generic term)
+genus melogale|1
+(noun)|Melogale|genus Melogale|mammal genus (generic term)
+genus melolontha|1
+(noun)|Melolontha|genus Melolontha|arthropod genus (generic term)
+genus melophagus|1
+(noun)|Melophagus|genus Melophagus|arthropod genus (generic term)
+genus melopsittacus|1
+(noun)|Melopsittacus|genus Melopsittacus|bird genus (generic term)
+genus melospiza|1
+(noun)|Melospiza|genus Melospiza|bird genus (generic term)
+genus melursus|1
+(noun)|Melursus|genus Melursus|mammal genus (generic term)
+genus menippe|1
+(noun)|Menippe|genus Menippe|arthropod genus (generic term)
+genus meniscium|1
+(noun)|Meniscium|genus Meniscium|fern genus (generic term)
+genus menispermum|1
+(noun)|Menispermum|genus Menispermum|magnoliid dicot genus (generic term)
+genus menopon|1
+(noun)|Menopon|genus Menopon|arthropod genus (generic term)
+genus mentha|1
+(noun)|Mentha|genus Mentha|asterid dicot genus (generic term)
+genus menticirrhus|1
+(noun)|Menticirrhus|genus Menticirrhus|fish genus (generic term)
+genus mentzelia|1
+(noun)|Mentzelia|genus Mentzelia|dilleniid dicot genus (generic term)
+genus menura|1
+(noun)|Menura|genus Menura|bird genus (generic term)
+genus menyanthes|1
+(noun)|Menyanthes|genus Menyanthes|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus menziesia|1
+(noun)|Menziesia|genus Menziesia|dilleniid dicot genus (generic term)
+genus mephitis|1
+(noun)|Mephitis|genus Mephitis|mammal genus (generic term)
+genus mercenaria|1
+(noun)|Mercenaria|genus Mercenaria|mollusk genus (generic term)
+genus mercurialis|1
+(noun)|Mercurialis|genus Mercurialis|rosid dicot genus (generic term)
+genus mergus|1
+(noun)|Mergus|genus Mergus|bird genus (generic term)
+genus meriones|1
+(noun)|Meriones|genus Meriones|mammal genus (generic term)
+genus merlangus|1
+(noun)|Merlangus|genus Merlangus|fish genus (generic term)
+genus merluccius|1
+(noun)|Merluccius|genus Merluccius|fish genus (generic term)
+genus merops|1
+(noun)|Merops|genus Merops|bird genus (generic term)
+genus mertensia|1
+(noun)|Mertensia|genus Mertensia|plant genus (generic term)
+genus meryta|1
+(noun)|Meryta|genus Meryta|rosid dicot genus (generic term)
+genus mesembryanthemum|1
+(noun)|Mesembryanthemum|genus Mesembryanthemum|caryophylloid dicot genus (generic term)
+genus mesocricetus|1
+(noun)|Mesocricetus|genus Mesocricetus|mammal genus (generic term)
+genus mesohippus|1
+(noun)|genus Mesohippus|mammal genus (generic term)
+genus mespilus|1
+(noun)|Mespilus|genus Mespilus|rosid dicot genus (generic term)
+genus mesua|1
+(noun)|Mesua|genus Mesua|dilleniid dicot genus (generic term)
+genus metasequoia|1
+(noun)|genus Metasequoia|gymnosperm genus (generic term)
+genus metroxylon|1
+(noun)|Metroxylon|genus Metroxylon|monocot genus (generic term)|liliopsid genus (generic term)
+genus microcentrum|1
+(noun)|Microcentrum|genus Microcentrum|arthropod genus (generic term)
+genus micrococcus|1
+(noun)|Micrococcus|genus Micrococcus|bacteria genus (generic term)
+genus microdipodops|1
+(noun)|Microdipodops|genus Microdipodops|mammal genus (generic term)
+genus microgramma|1
+(noun)|Microgramma|genus Microgramma|fern genus (generic term)
+genus micromeria|1
+(noun)|Micromeria|genus Micromeria|asterid dicot genus (generic term)
+genus micromyx|1
+(noun)|Micromyx|genus Micromyx|mammal genus (generic term)
+genus micropogonias|1
+(noun)|Micropogonias|genus Micropogonias|fish genus (generic term)
+genus micropterus|1
+(noun)|Micropterus|genus Micropterus|fish genus (generic term)
+genus microsorium|1
+(noun)|Microsorium|genus Microsorium|fern genus (generic term)
+genus microsporum|1
+(noun)|Microsporum|genus Microsporum|fungus genus (generic term)
+genus microstomus|1
+(noun)|Microstomus|genus Microstomus|fish genus (generic term)
+genus microstrobos|1
+(noun)|Microstrobos|genus Microstrobos|gymnosperm genus (generic term)
+genus microtus|1
+(noun)|Microtus|genus Microtus|mammal genus (generic term)
+genus micruroides|1
+(noun)|Micruroides|genus Micruroides|reptile genus (generic term)
+genus micrurus|1
+(noun)|Micrurus|genus Micrurus|reptile genus (generic term)
+genus mikania|1
+(noun)|Mikania|genus Mikania|asterid dicot genus (generic term)
+genus millettia|1
+(noun)|genus Millettia|rosid dicot genus (generic term)
+genus miltonia|1
+(noun)|Miltonia|genus Miltonia|monocot genus (generic term)|liliopsid genus (generic term)
+genus mimosa|1
+(noun)|genus Mimosa|rosid dicot genus (generic term)
+genus mimus|1
+(noun)|Mimus|genus Mimus|bird genus (generic term)
+genus minuartia|1
+(noun)|Minuartia|genus Minuartia|caryophylloid dicot genus (generic term)
+genus mirabilis|1
+(noun)|Mirabilis|genus Mirabilis|caryophylloid dicot genus (generic term)
+genus mirounga|1
+(noun)|Mirounga|genus Mirounga|mammal genus (generic term)
+genus mitchella|1
+(noun)|Mitchella|genus Mitchella|asterid dicot genus (generic term)
+genus mitella|1
+(noun)|Mitella|genus Mitella|rosid dicot genus (generic term)
+genus mnium|1
+(noun)|Mnium|genus Mnium|moss genus (generic term)
+genus mobula|1
+(noun)|Mobula|genus Mobula|fish genus (generic term)
+genus moehringia|1
+(noun)|Moehringia|genus Moehringia|caryophylloid dicot genus (generic term)
+genus mohria|1
+(noun)|Mohria|genus Mohria|fern genus (generic term)
+genus mola|1
+(noun)|genus Mola|fish genus (generic term)
+genus mollienesia|1
+(noun)|Mollienesia|genus Mollienesia|fish genus (generic term)
+genus molluga|1
+(noun)|Molluga|genus Molluga|caryophylloid dicot genus (generic term)
+genus moloch|1
+(noun)|genus Moloch|reptile genus (generic term)
+genus molothrus|1
+(noun)|Molothrus|genus Molothrus|bird genus (generic term)
+genus molucella|1
+(noun)|Molucella|genus Molucella|asterid dicot genus (generic term)
+genus molva|1
+(noun)|Molva|genus Molva|fish genus (generic term)
+genus momordica|1
+(noun)|Momordica|genus Momordica|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus momotus|1
+(noun)|Momotus|genus Momotus|bird genus (generic term)
+genus monarda|1
+(noun)|genus Monarda|asterid dicot genus (generic term)
+genus monardella|1
+(noun)|Monardella|genus Monardella|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus moneses|1
+(noun)|Moneses|genus Moneses|dilleniid dicot genus (generic term)
+genus monilia|1
+(noun)|genus Monilia|fungus genus (generic term)
+genus monocanthus|1
+(noun)|Monocanthus|genus Monocanthus|fish genus (generic term)
+genus monochamus|1
+(noun)|Monochamus|genus Monochamus|arthropod genus (generic term)
+genus monodon|1
+(noun)|Monodon|genus Monodon|mammal genus (generic term)
+genus monomorium|1
+(noun)|Monomorium|genus Monomorium|arthropod genus (generic term)
+genus mononychus|1
+(noun)|genus Mononychus|reptile genus (generic term)
+genus monotropa|1
+(noun)|Monotropa|genus Monotropa|dilleniid dicot genus (generic term)
+genus monstera|1
+(noun)|genus Monstera|monocot genus (generic term)|liliopsid genus (generic term)
+genus montezuma|1
+(noun)|genus Montezuma|dilleniid dicot genus (generic term)
+genus montia|1
+(noun)|Montia|genus Montia|caryophylloid dicot genus (generic term)
+genus morchella|1
+(noun)|Morchella|genus Morchella|fungus genus (generic term)
+genus morone|1
+(noun)|Morone|genus Morone|fish genus (generic term)
+genus morus|1
+(noun)|Morus|genus Morus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus moschus|1
+(noun)|Moschus|genus Moschus|mammal genus (generic term)
+genus motacilla|1
+(noun)|Motacilla|genus Motacilla|bird genus (generic term)
+genus mucor|1
+(noun)|genus Mucor|fungus genus (generic term)
+genus mucuna|1
+(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus (generic term)
+genus mugil|1
+(noun)|Mugil|genus Mugil|fish genus (generic term)
+genus muhlenbergia|1
+(noun)|Muhlenbergia|genus Muhlenbergia|monocot genus (generic term)|liliopsid genus (generic term)
+genus mulloidichthys|1
+(noun)|Mulloidichthys|genus Mulloidichthys|fish genus (generic term)
+genus mullus|1
+(noun)|Mullus|genus Mullus|fish genus (generic term)
+genus muntiacus|1
+(noun)|Muntiacus|genus Muntiacus|mammal genus (generic term)
+genus muntingia|1
+(noun)|Muntingia|genus Muntingia|dilleniid dicot genus (generic term)
+genus mus|1
+(noun)|Mus|genus Mus|mammal genus (generic term)
+genus musa|1
+(noun)|Musa|genus Musa|monocot genus (generic term)|liliopsid genus (generic term)
+genus musca|1
+(noun)|Musca|genus Musca|arthropod genus (generic term)
+genus muscardinus|1
+(noun)|Muscardinus|genus Muscardinus|mammal genus (generic term)
+genus muscari|1
+(noun)|Muscari|genus Muscari|liliid monocot genus (generic term)
+genus muscicapa|1
+(noun)|Muscicapa|genus Muscicapa|bird genus (generic term)
+genus muscivora|1
+(noun)|Muscivora|genus Muscivora|bird genus (generic term)
+genus musophaga|1
+(noun)|Musophaga|genus Musophaga|bird genus (generic term)
+genus mustela|1
+(noun)|Mustela|genus Mustela|mammal genus (generic term)
+genus mustelus|1
+(noun)|Mustelus|genus Mustelus|fish genus (generic term)
+genus mutinus|1
+(noun)|Mutinus|genus Mutinus|fungus genus (generic term)
+genus mutisia|1
+(noun)|genus Mutisia|asterid dicot genus (generic term)
+genus mya|1
+(noun)|Mya|genus Mya|mollusk genus (generic term)
+genus myadestes|1
+(noun)|Myadestes|genus Myadestes|bird genus (generic term)
+genus mycobacterium|1
+(noun)|genus Mycobacterium|bacteria genus (generic term)
+genus mycoplasma|1
+(noun)|genus Mycoplasma|bacteria genus (generic term)
+genus mycteria|1
+(noun)|Mycteria|genus Mycteria|bird genus (generic term)
+genus mycteroperca|1
+(noun)|Mycteroperca|genus Mycteroperca|fish genus (generic term)
+genus mylodon|1
+(noun)|genus Mylodon|mammal genus (generic term)
+genus myocastor|1
+(noun)|Myocastor|genus Myocastor|mammal genus (generic term)
+genus myopus|1
+(noun)|Myopus|genus Myopus|mammal genus (generic term)
+genus myosotis|1
+(noun)|Myosotis|genus Myosotis|plant genus (generic term)
+genus myotis|1
+(noun)|Myotis|genus Myotis|mammal genus (generic term)
+genus myrciaria|1
+(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus myrica|1
+(noun)|Myrica|genus Myrica|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus myricaria|1
+(noun)|Myricaria|genus Myricaria|dilleniid dicot genus (generic term)
+genus myriophyllum|1
+(noun)|Myriophyllum|genus Myriophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus myristica|1
+(noun)|Myristica|genus Myristica|magnoliid dicot genus (generic term)
+genus myrmecia|1
+(noun)|Myrmecia|genus Myrmecia|arthropod genus (generic term)
+genus myrmecobius|1
+(noun)|Myrmecobius|genus Myrmecobius|mammal genus (generic term)
+genus myrmecophaga|1
+(noun)|Myrmecophaga|genus Myrmecophaga|mammal genus (generic term)
+genus myrmeleon|1
+(noun)|Myrmeleon|genus Myrmeleon|arthropod genus (generic term)
+genus myroxylon|1
+(noun)|Myroxylon|genus Myroxylon|rosid dicot genus (generic term)
+genus myrrhis|1
+(noun)|Myrrhis|genus Myrrhis|rosid dicot genus (generic term)
+genus myrsine|1
+(noun)|Myrsine|genus Myrsine|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus myrtillocactus|1
+(noun)|Myrtillocactus|genus Myrtillocactus|caryophylloid dicot genus (generic term)
+genus myrtus|1
+(noun)|Myrtus|genus Myrtus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus mysis|1
+(noun)|Mysis|genus Mysis|arthropod genus (generic term)
+genus mytilus|1
+(noun)|Mytilus|genus Mytilus|mollusk genus (generic term)
+genus myxine|1
+(noun)|Myxine|genus Myxine|fish genus (generic term)
+genus myxinikela|1
+(noun)|Myxinikela|genus Myxinikela|fish genus (generic term)
+genus myxocephalus|1
+(noun)|Myxocephalus|genus Myxocephalus|fish genus (generic term)
+genus nabalus|1
+(noun)|Nabalus|genus Nabalus|asterid dicot genus (generic term)
+genus naemorhedus|1
+(noun)|Naemorhedus|genus Naemorhedus|mammal genus (generic term)
+genus nageia|1
+(noun)|Nageia|genus Nageia|gymnosperm genus (generic term)
+genus naias|1
+(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus (generic term)|liliopsid genus (generic term)
+genus naja|1
+(noun)|Naja|genus Naja|reptile genus (generic term)
+genus najas|1
+(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus (generic term)|liliopsid genus (generic term)
+genus nanomia|1
+(noun)|genus Nanomia|coelenterate genus (generic term)
+genus napaea|1
+(noun)|Napaea|genus Napaea|dilleniid dicot genus (generic term)
+genus narcissus|1
+(noun)|genus Narcissus|liliid monocot genus (generic term)
+genus narthecium|1
+(noun)|Narthecium|genus Narthecium|liliid monocot genus (generic term)
+genus nasalis|1
+(noun)|Nasalis|genus Nasalis|mammal genus (generic term)
+genus nasturtium|1
+(noun)|Nasturtium|genus Nasturtium|dilleniid dicot genus (generic term)
+genus nasua|1
+(noun)|Nasua|genus Nasua|mammal genus (generic term)
+genus natrix|1
+(noun)|Natrix|genus Natrix|reptile genus (generic term)
+genus nauclea|1
+(noun)|Nauclea|genus Nauclea|asterid dicot genus (generic term)
+genus naucrates|1
+(noun)|Naucrates|genus Naucrates|fish genus (generic term)
+genus nautilus|1
+(noun)|genus Nautilus|mollusk genus (generic term)
+genus necturus|1
+(noun)|Necturus|genus Necturus|amphibian genus (generic term)
+genus negaprion|1
+(noun)|Negaprion|genus Negaprion|fish genus (generic term)
+genus nelumbo|1
+(noun)|Nelumbo|genus Nelumbo|magnoliid dicot genus (generic term)
+genus nemophila|1
+(noun)|genus Nemophila|asterid dicot genus (generic term)
+genus neoceratodus|1
+(noun)|Neoceratodus|genus Neoceratodus|fish genus (generic term)
+genus neofiber|1
+(noun)|Neofiber|genus Neofiber|mammal genus (generic term)
+genus neohygrophorus|1
+(noun)|Neohygrophorus|genus Neohygrophorus|fungus genus (generic term)
+genus neolentinus|1
+(noun)|Neolentinus|genus Neolentinus|fungus genus (generic term)
+genus neomys|1
+(noun)|Neomys|genus Neomys|mammal genus (generic term)
+genus neophron|1
+(noun)|Neophron|genus Neophron|bird genus (generic term)
+genus neotoma|1
+(noun)|Neotoma|genus Neotoma|mammal genus (generic term)
+genus nepa|1
+(noun)|Nepa|genus Nepa|arthropod genus (generic term)
+genus nepenthes|1
+(noun)|Nepenthes|genus Nepenthes|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus nepeta|1
+(noun)|Nepeta|genus Nepeta|asterid dicot genus (generic term)
+genus nephelium|1
+(noun)|Nephelium|genus Nephelium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus nephrolepis|1
+(noun)|Nephrolepis|genus Nephrolepis|fern genus (generic term)
+genus nephrops|1
+(noun)|Nephrops|genus Nephrops|arthropod genus (generic term)
+genus nephthytis|1
+(noun)|genus Nephthytis|monocot genus (generic term)|liliopsid genus (generic term)
+genus nerita|1
+(noun)|genus Nerita|mollusk genus (generic term)
+genus neritina|1
+(noun)|genus Neritina|mollusk genus (generic term)
+genus nerium|1
+(noun)|Nerium|genus Nerium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus nerodia|1
+(noun)|Nerodia|genus Nerodia|reptile genus (generic term)
+genus nesokia|1
+(noun)|Nesokia|genus Nesokia|mammal genus (generic term)
+genus nestor|1
+(noun)|Nestor|genus Nestor|bird genus (generic term)
+genus neurospora|1
+(noun)|Neurospora|genus Neurospora|fungus genus (generic term)
+genus neurotrichus|1
+(noun)|Neurotrichus|genus Neurotrichus|mammal genus (generic term)
+genus nicandra|1
+(noun)|Nicandra|genus Nicandra|asterid dicot genus (generic term)
+genus nicotiana|1
+(noun)|Nicotiana|genus Nicotiana|asterid dicot genus (generic term)
+genus nidularia|1
+(noun)|Nidularia|genus Nidularia|fungus genus (generic term)
+genus nierembergia|1
+(noun)|genus Nierembergia|asterid dicot genus (generic term)
+genus nigella|1
+(noun)|genus Nigella|magnoliid dicot genus (generic term)
+genus nigroporus|1
+(noun)|Nigroporus|genus Nigroporus|fungus genus (generic term)
+genus nimravus|1
+(noun)|Nimravus|genus Nimravus|mammal genus (generic term)
+genus nipa|1
+(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus (generic term)|liliopsid genus (generic term)
+genus nitella|1
+(noun)|Nitella|genus Nitella|protoctist genus (generic term)
+genus nitrobacter|1
+(noun)|Nitrobacter|genus Nitrobacter|bacteria genus (generic term)
+genus nitrosomonas|1
+(noun)|Nitrosomonas|genus Nitrosomonas|bacteria genus (generic term)
+genus noctiluca|1
+(noun)|genus Noctiluca|protoctist genus (generic term)
+genus noctua|1
+(noun)|Noctua|genus Noctua|arthropod genus (generic term)
+genus nolina|1
+(noun)|Nolina|genus Nolina|liliid monocot genus (generic term)
+genus nomia|1
+(noun)|nomia|genus Nomia|arthropod genus (generic term)
+genus nopalea|1
+(noun)|Nopalea|genus Nopalea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus nostoc|1
+(noun)|genus Nostoc|bacteria genus (generic term)
+genus notechis|1
+(noun)|Notechis|genus Notechis|reptile genus (generic term)
+genus notemigonus|1
+(noun)|Notemigonus|genus Notemigonus|fish genus (generic term)
+genus nothofagus|1
+(noun)|Nothofagus|genus Nothofagus|hamamelid dicot genus (generic term)
+genus nothosaurus|1
+(noun)|genus Nothosaurus|reptile genus (generic term)
+genus notomys|1
+(noun)|Notomys|genus Notomys|mammal genus (generic term)
+genus notonecta|1
+(noun)|Notonecta|genus Notonecta|arthropod genus (generic term)
+genus notophthalmus|1
+(noun)|Notophthalmus|genus Notophthalmus|amphibian genus (generic term)
+genus notornis|1
+(noun)|genus Notornis|bird genus (generic term)
+genus notoryctus|1
+(noun)|Notoryctus|genus Notoryctus|mammal genus (generic term)
+genus notropis|1
+(noun)|Notropis|genus Notropis|fish genus (generic term)
+genus nucifraga|1
+(noun)|Nucifraga|genus Nucifraga|bird genus (generic term)
+genus numenius|1
+(noun)|Numenius|genus Numenius|bird genus (generic term)
+genus numida|1
+(noun)|Numida|genus Numida|bird genus (generic term)
+genus nuphar|1
+(noun)|Nuphar|genus Nuphar|magnoliid dicot genus (generic term)
+genus nuytsia|1
+(noun)|Nuytsia|genus Nuytsia|dilleniid dicot genus (generic term)
+genus nyctaginia|1
+(noun)|Nyctaginia|genus Nyctaginia|caryophylloid dicot genus (generic term)
+genus nyctanassa|1
+(noun)|Nyctanassa|genus Nyctanassa|bird genus (generic term)
+genus nyctereutes|1
+(noun)|Nyctereutes|genus Nyctereutes|mammal genus (generic term)
+genus nycticebus|1
+(noun)|Nycticebus|genus Nycticebus|mammal genus (generic term)
+genus nycticorax|1
+(noun)|Nycticorax|genus Nycticorax|bird genus (generic term)
+genus nyctimene|1
+(noun)|Nyctimene|genus Nyctimene|mammal genus (generic term)
+genus nymphaea|1
+(noun)|Nymphaea|genus Nymphaea|magnoliid dicot genus (generic term)
+genus nymphalis|1
+(noun)|Nymphalis|genus Nymphalis|arthropod genus (generic term)
+genus nymphicus|1
+(noun)|Nymphicus|genus Nymphicus|bird genus (generic term)
+genus nypa|1
+(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus (generic term)|liliopsid genus (generic term)
+genus nyssa|1
+(noun)|Nyssa|genus Nyssa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus oceanites|1
+(noun)|Oceanites|genus Oceanites|bird genus (generic term)
+genus ochna|1
+(noun)|Ochna|genus Ochna|dilleniid dicot genus (generic term)
+genus ochotona|1
+(noun)|Ochotona|genus Ochotona|mammal genus (generic term)
+genus ochroma|1
+(noun)|Ochroma|genus Ochroma|dilleniid dicot genus (generic term)
+genus ocimum|1
+(noun)|Ocimum|genus Ocimum|asterid dicot genus (generic term)
+genus octopus|1
+(noun)|genus Octopus|mollusk genus (generic term)
+genus ocyurus|1
+(noun)|Ocyurus|genus Ocyurus|fish genus (generic term)
+genus odobenus|1
+(noun)|Odobenus|genus Odobenus|mammal genus (generic term)
+genus odocoileus|1
+(noun)|Odocoileus|genus Odocoileus|mammal genus (generic term)
+genus odontaspis|1
+(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus (generic term)
+genus odontoglossum|1
+(noun)|genus Odontoglossum|monocot genus (generic term)|liliopsid genus (generic term)
+genus odontophorus|1
+(noun)|Odontophorus|genus Odontophorus|bird genus (generic term)
+genus oecanthus|1
+(noun)|Oecanthus|genus Oecanthus|arthropod genus (generic term)
+genus oedogonium|1
+(noun)|Oedogonium|genus Oedogonium|protoctist genus (generic term)
+genus oenanthe|2
+(noun)|Oenanthe|genus Oenanthe|rosid dicot genus (generic term)
+(noun)|Oenanthe|genus Oenanthe|bird genus (generic term)
+genus oenothera|1
+(noun)|Oenothera|genus Oenothera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus oestrus|1
+(noun)|Oestrus|genus Oestrus|arthropod genus (generic term)
+genus okapia|1
+(noun)|Okapia|genus Okapia|mammal genus (generic term)
+genus olea|1
+(noun)|Olea|genus Olea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus oleandra|1
+(noun)|Oleandra|genus Oleandra|fern genus (generic term)
+genus olearia|1
+(noun)|Olearia|genus Olearia|asterid dicot genus (generic term)
+genus olfersia|1
+(noun)|Olfersia|genus Olfersia|fern genus (generic term)
+genus oligoplites|1
+(noun)|Oligoplites|genus Oligoplites|fish genus (generic term)
+genus oligoporus|1
+(noun)|Oligoporus|genus Oligoporus|fungus genus (generic term)
+genus ommastrephes|1
+(noun)|genus Ommastrephes|mollusk genus (generic term)
+genus omphalotus|1
+(noun)|Omphalotus|genus Omphalotus|fungus genus (generic term)
+genus oncidium|1
+(noun)|genus Oncidium|monocot genus (generic term)|liliopsid genus (generic term)
+genus oncorhynchus|1
+(noun)|Oncorhynchus|genus Oncorhynchus|fish genus (generic term)
+genus ondatra|1
+(noun)|Ondatra|genus Ondatra|mammal genus (generic term)
+genus oniscus|1
+(noun)|Oniscus|genus Oniscus|arthropod genus (generic term)
+genus onobrychis|1
+(noun)|Onobrychis|genus Onobrychis|rosid dicot genus (generic term)
+genus onoclea|1
+(noun)|Onoclea|genus Onoclea|fern genus (generic term)
+genus ononis|1
+(noun)|Ononis|genus Ononis|rosid dicot genus (generic term)
+genus onopordon|1
+(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus (generic term)
+genus onopordum|1
+(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus (generic term)
+genus onosmodium|1
+(noun)|Onosmodium|genus Onosmodium|plant genus (generic term)
+genus onychium|1
+(noun)|Onychium|genus Onychium|fern genus (generic term)
+genus onychogalea|1
+(noun)|Onychogalea|genus Onychogalea|mammal genus (generic term)
+genus onychomys|1
+(noun)|Onychomys|genus Onychomys|mammal genus (generic term)
+genus opheodrys|1
+(noun)|Opheodrys|genus Opheodrys|reptile genus (generic term)
+genus ophiodon|1
+(noun)|Ophiodon|genus Ophiodon|fish genus (generic term)
+genus ophioglossum|1
+(noun)|Ophioglossum|genus Ophioglossum|fern genus (generic term)
+genus ophiophagus|1
+(noun)|Ophiophagus|genus Ophiophagus|reptile genus (generic term)
+genus ophisaurus|1
+(noun)|Ophisaurus|genus Ophisaurus|reptile genus (generic term)
+genus ophrys|1
+(noun)|Ophrys|genus Ophrys|monocot genus (generic term)|liliopsid genus (generic term)
+genus opisthocomus|1
+(noun)|Opisthocomus|genus Opisthocomus|bird genus (generic term)
+genus opuntia|1
+(noun)|Opuntia|genus Opuntia|caryophylloid dicot genus (generic term)
+genus orbignya|1
+(noun)|Orbignya|genus Orbignya|monocot genus (generic term)|liliopsid genus (generic term)
+genus orchestia|1
+(noun)|Orchestia|genus Orchestia|arthropod genus (generic term)
+genus orchis|1
+(noun)|genus Orchis|monocot genus (generic term)|liliopsid genus (generic term)
+genus orcinus|1
+(noun)|Orcinus|genus Orcinus|mammal genus (generic term)
+genus oreamnos|1
+(noun)|Oreamnos|genus Oreamnos|mammal genus (generic term)
+genus orectolobus|1
+(noun)|Orectolobus|genus Orectolobus|fish genus (generic term)
+genus oreopteris|1
+(noun)|Oreopteris|genus Oreopteris|fern genus (generic term)
+genus oreortyx|1
+(noun)|Oreortyx|genus Oreortyx|bird genus (generic term)
+genus origanum|1
+(noun)|genus Origanum|asterid dicot genus (generic term)
+genus oriolus|1
+(noun)|Oriolus|genus Oriolus|bird genus (generic term)
+genus orites|1
+(noun)|Orites|genus Orites|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus ormosia|1
+(noun)|Ormosia|genus Ormosia|rosid dicot genus (generic term)
+genus ornithogalum|1
+(noun)|Ornithogalum|genus Ornithogalum|liliid monocot genus (generic term)
+genus ornithorhynchus|1
+(noun)|Ornithorhynchus|genus Ornithorhynchus|mammal genus (generic term)
+genus orontium|1
+(noun)|Orontium|genus Orontium|monocot genus (generic term)|liliopsid genus (generic term)
+genus ortalis|1
+(noun)|Ortalis|genus Ortalis|bird genus (generic term)
+genus orthilia|1
+(noun)|Orthilia|genus Orthilia|dilleniid dicot genus (generic term)
+genus orthopristis|1
+(noun)|Orthopristis|genus Orthopristis|fish genus (generic term)
+genus orthotomus|1
+(noun)|Orthotomus|genus Orthotomus|bird genus (generic term)
+genus orycteropus|1
+(noun)|Orycteropus|genus Orycteropus|mammal genus (generic term)
+genus oryctolagus|1
+(noun)|Oryctolagus|genus Oryctolagus|mammal genus (generic term)
+genus oryx|1
+(noun)|genus Oryx|mammal genus (generic term)
+genus oryza|1
+(noun)|Oryza|genus Oryza|monocot genus (generic term)|liliopsid genus (generic term)
+genus oryzomys|1
+(noun)|Oryzomys|genus Oryzomys|mammal genus (generic term)
+genus oryzopsis|1
+(noun)|Oryzopsis|genus Oryzopsis|monocot genus (generic term)|liliopsid genus (generic term)
+genus osmanthus|1
+(noun)|Osmanthus|genus Osmanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus osmerus|1
+(noun)|Osmerus|genus Osmerus|fish genus (generic term)
+genus osmunda|1
+(noun)|genus Osmunda|fern genus (generic term)
+genus ostrea|1
+(noun)|Ostrea|genus Ostrea|mollusk genus (generic term)
+genus ostrya|1
+(noun)|Ostrya|genus Ostrya|hamamelid dicot genus (generic term)
+genus ostryopsis|1
+(noun)|Ostryopsis|genus Ostryopsis|hamamelid dicot genus (generic term)
+genus otaria|1
+(noun)|Otaria|genus Otaria|mammal genus (generic term)
+genus othonna|1
+(noun)|genus Othonna|asterid dicot genus (generic term)
+genus otis|1
+(noun)|Otis|genus Otis|bird genus (generic term)
+genus otus|1
+(noun)|Otus|genus Otus|bird genus (generic term)
+genus ouranopithecus|1
+(noun)|Ouranopithecus|genus Ouranopithecus|mammal genus (generic term)
+genus ovalipes|1
+(noun)|Ovalipes|genus Ovalipes|arthropod genus (generic term)
+genus ovibos|1
+(noun)|Ovibos|genus Ovibos|mammal genus (generic term)
+genus ovis|1
+(noun)|Ovis|genus Ovis|mammal genus (generic term)
+genus oxalis|1
+(noun)|genus Oxalis|rosid dicot genus (generic term)
+genus oxandra|1
+(noun)|Oxandra|genus Oxandra|magnoliid dicot genus (generic term)
+genus oxybelis|1
+(noun)|Oxybelis|genus Oxybelis|reptile genus (generic term)
+genus oxydendrum|1
+(noun)|Oxydendrum|genus Oxydendrum|dilleniid dicot genus (generic term)
+genus oxylebius|1
+(noun)|Oxylebius|genus Oxylebius|fish genus (generic term)
+genus oxytropis|1
+(noun)|Oxytropis|genus Oxytropis|rosid dicot genus (generic term)
+genus oxyura|1
+(noun)|Oxyura|genus Oxyura|bird genus (generic term)
+genus oxyuranus|1
+(noun)|Oxyuranus|genus Oxyuranus|reptile genus (generic term)
+genus ozonium|1
+(noun)|Ozonium|genus Ozonium|fungus genus (generic term)
+genus ozothamnus|1
+(noun)|Ozothamnus|genus Ozothamnus|asterid dicot genus (generic term)
+genus pachycephala|1
+(noun)|Pachycephala|genus Pachycephala|bird genus (generic term)
+genus pachyrhizus|1
+(noun)|Pachyrhizus|genus Pachyrhizus|rosid dicot genus (generic term)
+genus pachysandra|1
+(noun)|genus Pachysandra|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus packera|1
+(noun)|Packera|genus Packera|asterid dicot genus (generic term)
+genus padda|1
+(noun)|Padda|genus Padda|bird genus (generic term)
+genus paeonia|1
+(noun)|Paeonia|genus Paeonia|magnoliid dicot genus (generic term)
+genus pagellus|1
+(noun)|Pagellus|genus Pagellus|fish genus (generic term)
+genus pagophila|1
+(noun)|Pagophila|genus Pagophila|bird genus (generic term)
+genus pagophilus|1
+(noun)|Pagophilus|genus Pagophilus|mammal genus (generic term)
+genus pagrus|1
+(noun)|Pagrus|genus Pagrus|fish genus (generic term)
+genus pagurus|1
+(noun)|Pagurus|genus Pagurus|arthropod genus (generic term)
+genus palaemon|1
+(noun)|Palaemon|genus Palaemon|arthropod genus (generic term)
+genus palaquium|1
+(noun)|Palaquium|genus Palaquium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus paleacrita|1
+(noun)|Paleacrita|genus Paleacrita|arthropod genus (generic term)
+genus palinurus|1
+(noun)|Palinurus|genus Palinurus|arthropod genus (generic term)
+genus paliurus|1
+(noun)|Paliurus|genus Paliurus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus palometa|1
+(noun)|genus Palometa|fish genus (generic term)
+genus pan|1
+(noun)|Pan|genus Pan|mammal genus (generic term)
+genus panax|1
+(noun)|Panax|genus Panax|rosid dicot genus (generic term)
+genus pandanus|1
+(noun)|genus Pandanus|monocot genus (generic term)|liliopsid genus (generic term)
+genus pandion|1
+(noun)|Pandion|genus Pandion|bird genus (generic term)
+genus panicum|1
+(noun)|Panicum|genus Panicum|monocot genus (generic term)|liliopsid genus (generic term)
+genus panonychus|1
+(noun)|Panonychus|genus Panonychus|arthropod genus (generic term)
+genus panthera|1
+(noun)|Panthera|genus Panthera|mammal genus (generic term)
+genus papaver|1
+(noun)|Papaver|genus Papaver|dilleniid dicot genus (generic term)
+genus paphiopedilum|1
+(noun)|Paphiopedilum|genus Paphiopedilum|monocot genus (generic term)|liliopsid genus (generic term)
+genus papio|1
+(noun)|Papio|genus Papio|mammal genus (generic term)
+genus paprilus|1
+(noun)|Paprilus|genus Paprilus|fish genus (generic term)
+genus paracheirodon|1
+(noun)|Paracheirodon|genus Paracheirodon|fish genus (generic term)
+genus paradoxurus|1
+(noun)|Paradoxurus|genus Paradoxurus|mammal genus (generic term)
+genus paralichthys|1
+(noun)|Paralichthys|genus Paralichthys|fish genus (generic term)
+genus paralithodes|1
+(noun)|Paralithodes|genus Paralithodes|arthropod genus (generic term)
+genus paramecium|1
+(noun)|genus Paramecium|protoctist genus (generic term)
+genus paranthias|1
+(noun)|Paranthias|genus Paranthias|fish genus (generic term)
+genus paranthropus|1
+(noun)|Paranthropus|genus Paranthropus|australopithecine (generic term)
+genus parascalops|1
+(noun)|Parascalops|genus Parascalops|mammal genus (generic term)
+genus parasitaxus|1
+(noun)|Parasitaxus|genus Parasitaxus|gymnosperm genus (generic term)
+genus parathelypteris|1
+(noun)|Parathelypteris|genus Parathelypteris|fern genus (generic term)
+genus parietaria|1
+(noun)|Parietaria|genus Parietaria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus paris|1
+(noun)|Paris|genus Paris|plant genus (generic term)
+genus parkia|1
+(noun)|Parkia|genus Parkia|rosid dicot genus (generic term)
+genus parkinsonia|1
+(noun)|Parkinsonia|genus Parkinsonia|rosid dicot genus (generic term)
+genus parmelia|1
+(noun)|Parmelia|genus Parmelia|fungus genus (generic term)
+genus parnassia|1
+(noun)|genus Parnassia|rosid dicot genus (generic term)
+genus parochetus|1
+(noun)|Parochetus|genus Parochetus|rosid dicot genus (generic term)
+genus paronychia|1
+(noun)|Paronychia|genus Paronychia|caryophylloid dicot genus (generic term)
+genus parophrys|1
+(noun)|Parophrys|genus Parophrys|fish genus (generic term)
+genus parrotia|1
+(noun)|Parrotia|genus Parrotia|plant genus (generic term)
+genus parrotiopsis|1
+(noun)|Parrotiopsis|genus Parrotiopsis|plant genus (generic term)
+genus parthenium|1
+(noun)|Parthenium|genus Parthenium|asterid dicot genus (generic term)
+genus parthenocissus|1
+(noun)|Parthenocissus|genus Parthenocissus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus parula|1
+(noun)|Parula|genus Parula|bird genus (generic term)
+genus parus|1
+(noun)|Parus|genus Parus|bird genus (generic term)
+genus paspalum|1
+(noun)|genus Paspalum|monocot genus (generic term)|liliopsid genus (generic term)
+genus passer|1
+(noun)|Passer|genus Passer|bird genus (generic term)
+genus passerina|1
+(noun)|Passerina|genus Passerina|bird genus (generic term)
+genus passiflora|1
+(noun)|Passiflora|genus Passiflora|dilleniid dicot genus (generic term)
+genus pastinaca|1
+(noun)|Pastinaca|genus Pastinaca|rosid dicot genus (generic term)|Umbelliferae (generic term)|family Umbelliferae (generic term)|Apiaceae (generic term)|family Apiaceae (generic term)|carrot family (generic term)
+genus patella|1
+(noun)|Patella|genus Patella|mollusk genus (generic term)
+genus pavo|1
+(noun)|Pavo|genus Pavo|bird genus (generic term)
+genus pavonia|1
+(noun)|genus Pavonia|dilleniid dicot genus (generic term)
+genus payena|1
+(noun)|Payena|genus Payena|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pecari|1
+(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus (generic term)
+genus pecopteris|1
+(noun)|genus Pecopteris|fern genus (generic term)
+genus pecten|1
+(noun)|genus Pecten|mollusk genus (generic term)
+genus pediculus|1
+(noun)|Pediculus|genus Pediculus|arthropod genus (generic term)
+genus pedilanthus|1
+(noun)|Pedilanthus|genus Pedilanthus|rosid dicot genus (generic term)
+genus pediocactus|1
+(noun)|Pediocactus|genus Pediocactus|caryophylloid dicot genus (generic term)
+genus pedioecetes|1
+(noun)|Pedioecetes|genus Pedioecetes|bird genus (generic term)
+genus pedionomus|1
+(noun)|Pedionomus|genus Pedionomus|bird genus (generic term)
+genus peireskia|1
+(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus (generic term)
+genus pelargonium|1
+(noun)|Pelargonium|genus Pelargonium|rosid dicot genus (generic term)
+genus pelecanus|1
+(noun)|Pelecanus|genus Pelecanus|bird genus (generic term)
+genus pellaea|1
+(noun)|Pellaea|genus Pellaea|fern genus (generic term)
+genus pellicularia|1
+(noun)|Pellicularia|genus Pellicularia|fungus genus (generic term)
+genus peltandra|1
+(noun)|Peltandra|genus Peltandra|monocot genus (generic term)|liliopsid genus (generic term)
+genus peltiphyllum|1
+(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus (generic term)
+genus penelope|1
+(noun)|Penelope|genus Penelope|bird genus (generic term)
+genus peneus|1
+(noun)|Peneus|genus Peneus|arthropod genus (generic term)
+genus penicillium|1
+(noun)|Penicillium|genus Penicillium|fungus genus (generic term)
+genus pennatula|1
+(noun)|Pennatula|genus Pennatula|coelenterate genus (generic term)
+genus pennisetum|1
+(noun)|Pennisetum|genus Pennisetum|monocot genus (generic term)|liliopsid genus (generic term)
+genus penstemon|1
+(noun)|Penstemon|genus Penstemon|asterid dicot genus (generic term)
+genus peperomia|1
+(noun)|genus Peperomia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus perca|1
+(noun)|Perca|genus Perca|fish genus (generic term)
+genus percina|1
+(noun)|Percina|genus Percina|fish genus (generic term)
+genus perdix|1
+(noun)|Perdix|genus Perdix|bird genus (generic term)
+genus pereskia|1
+(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus (generic term)
+genus pericallis|1
+(noun)|Pericallis|genus Pericallis|asterid dicot genus (generic term)
+genus peridinium|1
+(noun)|Peridinium|genus Peridinium|protoctist genus (generic term)
+genus perilla|1
+(noun)|Perilla|genus Perilla|asterid dicot genus (generic term)
+genus periophthalmus|1
+(noun)|Periophthalmus|genus Periophthalmus|fish genus (generic term)
+genus peripatopsis|1
+(noun)|Peripatopsis|genus Peripatopsis|arthropod genus (generic term)
+genus peripatus|1
+(noun)|genus Peripatus|arthropod genus (generic term)
+genus periplaneta|1
+(noun)|Periplaneta|genus Periplaneta|arthropod genus (generic term)
+genus periploca|1
+(noun)|Periploca|genus Periploca|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus perisoreus|1
+(noun)|Perisoreus|genus Perisoreus|bird genus (generic term)
+genus peristedion|1
+(noun)|Peristedion|genus Peristedion|fish genus (generic term)
+genus pernis|1
+(noun)|Pernis|genus Pernis|bird genus (generic term)
+genus perodicticus|1
+(noun)|Perodicticus|genus Perodicticus|mammal genus (generic term)
+genus perognathus|1
+(noun)|Perognathus|genus Perognathus|mammal genus (generic term)
+genus peromyscus|1
+(noun)|Peromyscus|genus Peromyscus|mammal genus (generic term)
+genus peronospora|1
+(noun)|Peronospora|genus Peronospora|fungus genus (generic term)
+genus persea|1
+(noun)|Persea|genus Persea|magnoliid dicot genus (generic term)
+genus persoonia|1
+(noun)|Persoonia|genus Persoonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pertusaria|1
+(noun)|Pertusaria|genus Pertusaria|fungus genus (generic term)
+genus petasites|1
+(noun)|Petasites|genus Petasites|asterid dicot genus (generic term)
+genus petaurista|1
+(noun)|Petaurista|genus Petaurista|mammal genus (generic term)
+genus petaurus|1
+(noun)|Petaurus|genus Petaurus|mammal genus (generic term)
+genus petrocoptis|1
+(noun)|Petrocoptis|genus Petrocoptis|caryophylloid dicot genus (generic term)
+genus petrogale|1
+(noun)|Petrogale|genus Petrogale|mammal genus (generic term)
+genus petromyzon|1
+(noun)|Petromyzon|genus Petromyzon|fish genus (generic term)
+genus petroselinum|1
+(noun)|Petroselinum|genus Petroselinum|rosid dicot genus (generic term)
+genus petteria|1
+(noun)|Petteria|genus Petteria|rosid dicot genus (generic term)
+genus petunia|1
+(noun)|genus Petunia|Petunia|asterid dicot genus (generic term)
+genus peziza|1
+(noun)|Peziza|genus Peziza|fungus genus (generic term)
+genus pezophaps|1
+(noun)|Pezophaps|genus Pezophaps|bird genus (generic term)
+genus phacelia|1
+(noun)|genus Phacelia|asterid dicot genus (generic term)
+genus phacochoerus|1
+(noun)|Phacochoerus|genus Phacochoerus|mammal genus (generic term)
+genus phaethon|1
+(noun)|Phaethon|genus Phaethon|bird genus (generic term)
+genus phaius|1
+(noun)|genus Phaius|monocot genus (generic term)|liliopsid genus (generic term)
+genus phalacrocorax|1
+(noun)|Phalacrocorax|genus Phalacrocorax|bird genus (generic term)
+genus phalaenopsis|1
+(noun)|Phalaenopsis|genus Phalaenopsis|monocot genus (generic term)|liliopsid genus (generic term)
+genus phalaenoptilus|1
+(noun)|Phalaenoptilus|genus Phalaenoptilus|bird genus (generic term)
+genus phalanger|1
+(noun)|genus Phalanger|mammal genus (generic term)
+genus phalangium|1
+(noun)|Phalangium|genus Phalangium|arthropod genus (generic term)
+genus phalaris|1
+(noun)|Phalaris|genus Phalaris|monocot genus (generic term)|liliopsid genus (generic term)
+genus phalaropus|1
+(noun)|Phalaropus|genus Phalaropus|bird genus (generic term)
+genus phallus|1
+(noun)|Phallus|genus Phallus|fungus genus (generic term)
+genus pharomacrus|1
+(noun)|Pharomacrus|genus Pharomacrus|bird genus (generic term)
+genus phascogale|1
+(noun)|Phascogale|genus Phascogale|mammal genus (generic term)
+genus phascolarctos|1
+(noun)|Phascolarctos|genus Phascolarctos|mammal genus (generic term)
+genus phaseolus|1
+(noun)|Phaseolus|genus Phaseolus|rosid dicot genus (generic term)
+genus phasianus|1
+(noun)|Phasianus|genus Phasianus|bird genus (generic term)
+genus phegopteris|1
+(noun)|Phegopteris|genus Phegopteris|fern genus (generic term)
+genus phellodendron|1
+(noun)|Phellodendron|genus Phellodendron|rosid dicot genus (generic term)
+genus phenacomys|1
+(noun)|genus Phenacomys|mammal genus (generic term)
+genus philadelphus|1
+(noun)|genus Philadelphus|rosid dicot genus (generic term)
+genus philaenus|1
+(noun)|Philaenus|genus Philaenus|arthropod genus (generic term)
+genus phillyrea|1
+(noun)|Phillyrea|genus Phillyrea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus philodendron|1
+(noun)|genus Philodendron|monocot genus (generic term)|liliopsid genus (generic term)
+genus philohela|1
+(noun)|Philohela|genus Philohela|bird genus (generic term)
+genus philomachus|1
+(noun)|Philomachus|genus Philomachus|bird genus (generic term)
+genus philophylla|1
+(noun)|Philophylla|genus Philophylla|arthropod genus (generic term)
+genus phlebodium|1
+(noun)|Phlebodium|genus Phlebodium|fern genus (generic term)
+genus phlebotomus|1
+(noun)|Phlebotomus|genus Phlebotomus|arthropod genus (generic term)
+genus phleum|1
+(noun)|Phleum|genus Phleum|monocot genus (generic term)|liliopsid genus (generic term)
+genus phlomis|1
+(noun)|genus Phlomis|asterid dicot genus (generic term)
+genus phlox|1
+(noun)|genus Phlox|plant genus (generic term)
+genus phoca|1
+(noun)|Phoca|genus Phoca|mammal genus (generic term)
+genus phocaena|1
+(noun)|Phocaena|genus Phocaena|mammal genus (generic term)
+genus phoenicophorium|1
+(noun)|phoenicophorium|genus Phoenicophorium|monocot genus (generic term)|liliopsid genus (generic term)
+genus phoeniculus|1
+(noun)|Phoeniculus|genus Phoeniculus|bird genus (generic term)
+genus phoenicurus|1
+(noun)|Phoenicurus|genus Phoenicurus|bird genus (generic term)
+genus phoenix|1
+(noun)|phoenix|genus Phoenix|monocot genus (generic term)|liliopsid genus (generic term)
+genus pholas|1
+(noun)|Pholas|genus Pholas|mollusk genus (generic term)
+genus pholidota|1
+(noun)|Pholidota|genus Pholidota|monocot genus (generic term)|liliopsid genus (generic term)
+genus pholiota|1
+(noun)|Pholiota|genus Pholiota|fungus genus (generic term)
+genus pholis|1
+(noun)|Pholis|genus Pholis|fish genus (generic term)
+genus pholistoma|1
+(noun)|Pholistoma|genus Pholistoma|asterid dicot genus (generic term)
+genus phoradendron|1
+(noun)|Phoradendron|genus Phoradendron|dilleniid dicot genus (generic term)
+genus photinia|1
+(noun)|Photinia|genus Photinia|rosid dicot genus (generic term)
+genus photoblepharon|1
+(noun)|Photoblepharon|genus Photoblepharon|fish genus (generic term)
+genus phoxinus|1
+(noun)|Phoxinus|genus Phoxinus|fish genus (generic term)
+genus phragmipedium|1
+(noun)|Phragmipedium|genus Phragmipedium|monocot genus (generic term)|liliopsid genus (generic term)
+genus phragmites|1
+(noun)|Phragmites|genus Phragmites|monocot genus (generic term)|liliopsid genus (generic term)
+genus phrynosoma|1
+(noun)|Phrynosoma|genus Phrynosoma|reptile genus (generic term)
+genus phthirius|1
+(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus (generic term)
+genus phthirus|1
+(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus (generic term)
+genus phthorimaea|1
+(noun)|Phthorimaea|genus Phthorimaea|arthropod genus (generic term)
+genus phyllitis|1
+(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus (generic term)
+genus phyllium|1
+(noun)|Phyllium|genus Phyllium|arthropod genus (generic term)
+genus phyllocladus|1
+(noun)|Phyllocladus|genus Phyllocladus|gymnosperm genus (generic term)
+genus phyllodoce|1
+(noun)|Phyllodoce|genus Phyllodoce|dilleniid dicot genus (generic term)
+genus phylloporus|1
+(noun)|Phylloporus|genus Phylloporus|fungus genus (generic term)
+genus phyllorhynchus|1
+(noun)|Phyllorhynchus|genus Phyllorhynchus|reptile genus (generic term)
+genus phylloscopus|1
+(noun)|Phylloscopus|genus Phylloscopus|bird genus (generic term)
+genus phyllostachys|1
+(noun)|Phyllostachys|genus Phyllostachys|monocot genus (generic term)|liliopsid genus (generic term)
+genus phyllostomus|1
+(noun)|Phyllostomus|genus Phyllostomus|mammal genus (generic term)
+genus phylloxera|1
+(noun)|Phylloxera|genus Phylloxera|arthropod genus (generic term)
+genus physa|1
+(noun)|genus Physa|mollusk genus (generic term)
+genus physalia|1
+(noun)|Physalia|genus Physalia|coelenterate genus (generic term)
+genus physalis|1
+(noun)|Physalis|genus Physalis|asterid dicot genus (generic term)
+genus physaria|1
+(noun)|Physaria|genus Physaria|dilleniid dicot genus (generic term)
+genus physeter|1
+(noun)|Physeter|genus Physeter|mammal genus (generic term)
+genus physostegia|1
+(noun)|genus Physostegia|asterid dicot genus (generic term)
+genus physostigma|1
+(noun)|Physostigma|genus Physostigma|plant genus (generic term)
+genus phytelephas|1
+(noun)|phytelephas|genus Phytelephas|plant genus (generic term)
+genus phytolacca|1
+(noun)|Phytolacca|genus Phytolacca|caryophylloid dicot genus (generic term)
+genus phytophthora|1
+(noun)|Phytophthora|genus Phytophthora|fungus genus (generic term)
+genus pica|1
+(noun)|Pica|genus Pica|bird genus (generic term)
+genus picea|1
+(noun)|Picea|genus Picea|gymnosperm genus (generic term)
+genus pickeringia|1
+(noun)|Pickeringia|genus Pickeringia|rosid dicot genus (generic term)
+genus picoides|1
+(noun)|Picoides|genus Picoides|bird genus (generic term)
+genus picrasma|1
+(noun)|Picrasma|genus Picrasma|rosid dicot genus (generic term)
+genus picris|1
+(noun)|Picris|genus Picris|asterid dicot genus (generic term)
+genus picumnus|1
+(noun)|Picumnus|genus Picumnus|bird genus (generic term)
+genus picus|1
+(noun)|Picus|genus Picus|bird genus (generic term)
+genus pieris|2
+(noun)|Pieris|genus Pieris|dilleniid dicot genus (generic term)
+(noun)|Pieris|genus Pieris|arthropod genus (generic term)
+genus pilea|1
+(noun)|Pilea|genus Pilea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pilosella|1
+(noun)|Pilosella|genus Pilosella|asterid dicot genus (generic term)
+genus pilularia|1
+(noun)|Pilularia|genus Pilularia|fern genus (generic term)
+genus pimenta|1
+(noun)|Pimenta|genus Pimenta|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pimpinella|1
+(noun)|Pimpinella|genus Pimpinella|rosid dicot genus (generic term)
+genus pinckneya|1
+(noun)|Pinckneya|genus Pinckneya|asterid dicot genus (generic term)
+genus pinctada|1
+(noun)|Pinctada|genus Pinctada|mollusk genus (generic term)
+genus pineus|1
+(noun)|Pineus|genus Pineus|arthropod genus (generic term)
+genus pinguicula|1
+(noun)|Pinguicula|genus Pinguicula|plant genus (generic term)
+genus pinguinus|1
+(noun)|Pinguinus|genus Pinguinus|bird genus (generic term)
+genus pinicola|1
+(noun)|Pinicola|genus Pinicola|bird genus (generic term)
+genus pinnotheres|1
+(noun)|Pinnotheres|genus Pinnotheres|arthropod genus (generic term)
+genus pinus|1
+(noun)|Pinus|genus Pinus|gymnosperm genus (generic term)
+genus pipa|1
+(noun)|Pipa|genus Pipa|amphibian genus (generic term)
+genus piper|1
+(noun)|Piper|genus Piper|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pipile|1
+(noun)|Pipile|genus Pipile|bird genus (generic term)
+genus pipilo|1
+(noun)|Pipilo|genus Pipilo|bird genus (generic term)
+genus pipistrellus|1
+(noun)|Pipistrellus|genus Pipistrellus|mammal genus (generic term)
+genus pipra|1
+(noun)|Pipra|genus Pipra|bird genus (generic term)
+genus piptadenia|1
+(noun)|Piptadenia|genus Piptadenia|rosid dicot genus (generic term)
+genus pipturus|1
+(noun)|Pipturus|genus Pipturus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus piqueria|1
+(noun)|Piqueria|genus Piqueria|asterid dicot genus (generic term)
+genus piranga|1
+(noun)|Piranga|genus Piranga|bird genus (generic term)
+genus piroplasma|1
+(noun)|genus Babesia|genus Piroplasma|protoctist genus (generic term)
+genus pisanosaurus|1
+(noun)|genus Pisanosaurus|reptile genus (generic term)
+genus piscidia|1
+(noun)|Piscidia|genus Piscidia|rosid dicot genus (generic term)
+genus pisonia|1
+(noun)|Pisonia|genus Pisonia|caryophylloid dicot genus (generic term)
+genus pistacia|1
+(noun)|Pistacia|genus Pistacia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pistia|1
+(noun)|genus Pistia|monocot genus (generic term)|liliopsid genus (generic term)
+genus pisum|1
+(noun)|Pisum|genus Pisum|rosid dicot genus (generic term)
+genus pithecanthropus|1
+(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid (generic term)
+genus pithecellobium|1
+(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus (generic term)
+genus pithecia|1
+(noun)|Pithecia|genus Pithecia|mammal genus (generic term)
+genus pithecolobium|1
+(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus (generic term)
+genus pitta|1
+(noun)|genus Pitta|bird genus (generic term)
+genus pituophis|1
+(noun)|Pituophis|genus Pituophis|reptile genus (generic term)
+genus pitymys|1
+(noun)|Pitymys|genus Pitymys|mammal genus (generic term)
+genus pityrogramma|1
+(noun)|Pityrogramma|genus Pityrogramma|fern genus (generic term)
+genus placuna|1
+(noun)|Placuna|genus Placuna|mollusk genus (generic term)
+genus plagianthus|1
+(noun)|Plagianthus|genus Plagianthus|dilleniid dicot genus (generic term)
+genus planera|1
+(noun)|Planera|genus Planera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus planococcus|1
+(noun)|Planococcus|genus Planococcus|arthropod genus (generic term)
+genus plantago|1
+(noun)|Plantago|genus Plantago|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus plasmodiophora|1
+(noun)|Plasmodiophora|genus Plasmodiophora|fungus genus (generic term)
+genus plasmodium|1
+(noun)|genus Plasmodium|protoctist genus (generic term)
+genus platalea|1
+(noun)|Platalea|genus Platalea|bird genus (generic term)
+genus platanthera|1
+(noun)|Platanthera|genus Platanthera|monocot genus (generic term)|liliopsid genus (generic term)
+genus platanus|1
+(noun)|Platanus|genus Platanus|rosid dicot genus (generic term)
+genus platichthys|1
+(noun)|Platichthys|genus Platichthys|fish genus (generic term)
+genus platycerium|1
+(noun)|Platycerium|genus Platycerium|fern genus (generic term)
+genus platylobium|1
+(noun)|Platylobium|genus Platylobium|rosid dicot genus (generic term)
+genus platymiscium|1
+(noun)|Platymiscium|genus Platymiscium|rosid dicot genus (generic term)
+genus platypoecilus|1
+(noun)|Platypoecilus|genus Platypoecilus|fish genus (generic term)
+genus platystemon|1
+(noun)|Platystemon|genus Platystemon|dilleniid dicot genus (generic term)
+genus plautus|1
+(noun)|Plautus|genus Plautus|bird genus (generic term)
+genus plecotus|1
+(noun)|Plecotus|genus Plecotus|mammal genus (generic term)
+genus plectania|1
+(noun)|Plectania|genus Plectania|fungus genus (generic term)
+genus plectorrhiza|1
+(noun)|Plectorrhiza|genus Plectorrhiza|monocot genus (generic term)|liliopsid genus (generic term)
+genus plectranthus|1
+(noun)|genus Plectranthus|asterid dicot genus (generic term)
+genus plectrophenax|1
+(noun)|Plectrophenax|genus Plectrophenax|bird genus (generic term)
+genus pleione|1
+(noun)|Pleione|genus Pleione|monocot genus (generic term)|liliopsid genus (generic term)
+genus pleiospilos|1
+(noun)|Pleiospilos|genus Pleiospilos|caryophylloid dicot genus (generic term)
+genus plesianthropus|1
+(noun)|Plesianthropus|genus Plesianthropus|mammal genus (generic term)
+genus plesiosaurus|1
+(noun)|genus Plesiosaurus|reptile genus (generic term)
+genus plethodon|1
+(noun)|Plethodon|genus Plethodon|amphibian genus (generic term)
+genus pleurobrachia|1
+(noun)|Pleurobrachia|genus Pleurobrachia|ctenophore genus (generic term)
+genus pleuronectes|1
+(noun)|Pleuronectes|genus Pleuronectes|fish genus (generic term)
+genus pleurosorus|1
+(noun)|Pleurosorus|genus Pleurosorus|fern genus (generic term)
+genus pleurothallis|1
+(noun)|genus Pleurothallis|monocot genus (generic term)|liliopsid genus (generic term)
+genus pleurotus|1
+(noun)|Pleurotus|genus Pleurotus|fungus genus (generic term)
+genus plicatoperipatus|1
+(noun)|Plicatoperipatus|genus Plicatoperipatus|arthropod genus (generic term)
+genus ploceus|1
+(noun)|Ploceus|genus Ploceus|bird genus (generic term)
+genus plumbago|1
+(noun)|genus Plumbago|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus plumeria|1
+(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pluteus|1
+(noun)|Pluteus|genus Pluteus|roof mushroom|fungus genus (generic term)
+genus pluvialis|1
+(noun)|Pluvialis|genus Pluvialis|bird genus (generic term)
+genus pluvianus|1
+(noun)|Pluvianus|genus Pluvianus|bird genus (generic term)
+genus poa|1
+(noun)|Poa|genus Poa|monocot genus (generic term)|liliopsid genus (generic term)
+genus podalyria|1
+(noun)|Podalyria|genus Podalyria|rosid dicot genus (generic term)
+genus podargus|1
+(noun)|Podargus|genus Podargus|bird genus (generic term)
+genus podiceps|1
+(noun)|Podiceps|genus Podiceps|bird genus (generic term)
+genus podilymbus|1
+(noun)|Podilymbus|genus Podilymbus|bird genus (generic term)
+genus podocarpus|1
+(noun)|Podocarpus|genus Podocarpus|gymnosperm genus (generic term)
+genus podophyllum|1
+(noun)|Podophyllum|genus Podophyllum|magnoliid dicot genus (generic term)
+genus poecilocapsus|1
+(noun)|Poecilocapsus|genus Poecilocapsus|arthropod genus (generic term)
+genus poecilogale|1
+(noun)|Poecilogale|genus Poecilogale|mammal genus (generic term)
+genus poephila|1
+(noun)|Poephila|genus Poephila|bird genus (generic term)
+genus pogonia|1
+(noun)|genus Pogonia|monocot genus (generic term)|liliopsid genus (generic term)
+genus pogostemon|1
+(noun)|Pogostemon|genus Pogostemon|asterid dicot genus (generic term)
+genus polanisia|1
+(noun)|Polanisia|genus Polanisia|dilleniid dicot genus (generic term)
+genus polemonium|1
+(noun)|genus Polemonium|asterid dicot genus (generic term)
+genus polianthes|1
+(noun)|Polianthes|genus Polianthes|liliid monocot genus (generic term)
+genus polioptila|1
+(noun)|Polioptila|genus Polioptila|bird genus (generic term)
+genus polistes|1
+(noun)|Polistes|genus Polistes|arthropod genus (generic term)
+genus pollachius|1
+(noun)|Pollachius|genus Pollachius|fish genus (generic term)
+genus polyangium|1
+(noun)|Polyangium|genus Polyangium|bacteria genus (generic term)
+genus polyborus|1
+(noun)|Polyborus|genus Polyborus|bird genus (generic term)
+genus polybotria|1
+(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus (generic term)
+genus polybotrya|1
+(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus (generic term)
+genus polycirrus|1
+(noun)|Polycirrus|genus Polycirrus|worm genus (generic term)
+genus polydactylus|1
+(noun)|Polydactylus|genus Polydactylus|fish genus (generic term)
+genus polyergus|1
+(noun)|Polyergus|genus Polyergus|arthropod genus (generic term)
+genus polygala|1
+(noun)|Polygala|genus Polygala|rosid dicot genus (generic term)
+genus polygonatum|1
+(noun)|Polygonatum|genus Polygonatum|liliid monocot genus (generic term)
+genus polygonia|1
+(noun)|Polygonia|genus Polygonia|arthropod genus (generic term)
+genus polygonum|1
+(noun)|Polygonum|genus Polygonum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus polyodon|1
+(noun)|Polyodon|genus Polyodon|fish genus (generic term)
+genus polypedates|1
+(noun)|Polypedates|genus Polypedates|amphibian genus (generic term)
+genus polypodium|1
+(noun)|Polypodium|genus Polypodium|fern genus (generic term)
+genus polyporus|1
+(noun)|Polyporus|genus Polyporus|fungus genus (generic term)
+genus polyprion|1
+(noun)|Polyprion|genus Polyprion|fish genus (generic term)
+genus polystichum|1
+(noun)|Polystichum|genus Polystichum|fern genus (generic term)
+genus pomacanthus|1
+(noun)|Pomacanthus|genus Pomacanthus|fish genus (generic term)
+genus pomacentrus|1
+(noun)|Pomacentrus|genus Pomacentrus|fish genus (generic term)
+genus pomaderris|1
+(noun)|Pomaderris|genus Pomaderris|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pomatomus|1
+(noun)|Pomatomus|genus Pomatomus|fish genus (generic term)
+genus pomolobus|1
+(noun)|Pomolobus|genus Pomolobus|fish genus (generic term)
+genus pomoxis|1
+(noun)|Pomoxis|genus Pomoxis|fish genus (generic term)
+genus poncirus|1
+(noun)|Poncirus|genus Poncirus|rosid dicot genus (generic term)
+genus pongamia|1
+(noun)|Pongamia|genus Pongamia|rosid dicot genus (generic term)
+genus pongo|1
+(noun)|Pongo|genus Pongo|mammal genus (generic term)
+genus pontederia|1
+(noun)|Pontederia|genus Pontederia|monocot genus (generic term)|liliopsid genus (generic term)
+genus pooecetes|1
+(noun)|Pooecetes|genus Pooecetes|bird genus (generic term)
+genus popillia|1
+(noun)|Popillia|genus Popillia|arthropod genus (generic term)
+genus populus|1
+(noun)|Populus|genus Populus|hamamelid dicot genus (generic term)
+genus porcellio|1
+(noun)|Porcellio|genus Porcellio|arthropod genus (generic term)
+genus poronotus|1
+(noun)|Poronotus|genus Poronotus|fish genus (generic term)
+genus porphyra|1
+(noun)|Porphyra|genus Porphyra|protoctist genus (generic term)
+genus porphyrio|1
+(noun)|Porphyrio|genus Porphyrio|bird genus (generic term)
+genus porphyrula|1
+(noun)|Porphyrula|genus Porphyrula|bird genus (generic term)
+genus portulaca|1
+(noun)|genus Portulaca|caryophylloid dicot genus (generic term)
+genus portunus|1
+(noun)|Portunus|genus Portunus|arthropod genus (generic term)
+genus porzana|1
+(noun)|Porzana|genus Porzana|bird genus (generic term)
+genus potamogale|1
+(noun)|genus Potamogale|mammal genus (generic term)
+genus potamogeton|1
+(noun)|Potamogeton|genus Potamogeton|monocot genus (generic term)|liliopsid genus (generic term)
+genus potamophis|1
+(noun)|Potamophis|genus Potamophis|reptile genus (generic term)
+genus potentilla|1
+(noun)|Potentilla|genus Potentilla|rosid dicot genus (generic term)
+genus poterium|1
+(noun)|Poterium|genus Poterium|rosid dicot genus (generic term)
+genus pothos|1
+(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus (generic term)|liliopsid genus (generic term)
+genus potorous|1
+(noun)|Potorous|genus Potorous|mammal genus (generic term)
+genus potos|1
+(noun)|Potos|genus Potos|mammal genus (generic term)
+genus pouteria|1
+(noun)|Pouteria|genus Pouteria|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus praunus|1
+(noun)|Praunus|genus Praunus|arthropod genus (generic term)
+genus prenanthes|1
+(noun)|Prenanthes|genus Prenanthes|asterid dicot genus (generic term)
+genus presbytes|1
+(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus (generic term)
+genus priacanthus|1
+(noun)|Priacanthus|genus Priacanthus|fish genus (generic term)
+genus primula|1
+(noun)|genus Primula|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus prinia|1
+(noun)|Prinia|genus Prinia|bird genus (generic term)
+genus priodontes|1
+(noun)|Priodontes|genus Priodontes|mammal genus (generic term)
+genus prionace|1
+(noun)|Prionace|genus Prionace|fish genus (generic term)
+genus prionotus|1
+(noun)|Prionotus|genus Prionotus|fish genus (generic term)
+genus pristis|1
+(noun)|Pristis|genus Pristis|fish genus (generic term)
+genus pritzelago|1
+(noun)|Pritzelago|genus Pritzelago|dilleniid dicot genus (generic term)
+genus proboscidea|1
+(noun)|Proboscidea|genus Proboscidea|plant genus (generic term)
+genus procavia|1
+(noun)|Procavia|genus Procavia|mammal genus (generic term)
+genus procellaria|1
+(noun)|Procellaria|genus Procellaria|bird genus (generic term)
+genus prociphilus|1
+(noun)|Prociphilus|genus Prociphilus|arthropod genus (generic term)
+genus procnias|1
+(noun)|Procnias|genus Procnias|bird genus (generic term)
+genus proconsul|1
+(noun)|genus Proconsul|mammal genus (generic term)
+genus procyon|1
+(noun)|Procyon|genus Procyon|mammal genus (generic term)
+genus progne|1
+(noun)|Progne|genus Progne|bird genus (generic term)
+genus prosopis|1
+(noun)|Prosopis|genus Prosopis|rosid dicot genus (generic term)
+genus prosopium|1
+(noun)|Prosopium|genus Prosopium|fish genus (generic term)
+genus protea|1
+(noun)|genus Protea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus proteles|1
+(noun)|Proteles|genus Proteles|mammal genus (generic term)
+genus proterochampsa|1
+(noun)|Proterochampsa|genus Proterochampsa|reptile genus (generic term)
+genus proteus|1
+(noun)|Proteus|genus Proteus|amphibian genus (generic term)
+genus protium|1
+(noun)|Protium|genus Protium|rosid dicot genus (generic term)
+genus protoavis|1
+(noun)|genus Protoavis|bird genus (generic term)
+genus protoceratops|1
+(noun)|genus Protoceratops|reptile genus (generic term)
+genus protohippus|1
+(noun)|genus Protohippus|mammal genus (generic term)
+genus prumnopitys|1
+(noun)|Prumnopitys|genus Prumnopitys|gymnosperm genus (generic term)
+genus prunella|2
+(noun)|Prunella|genus Prunella|asterid dicot genus (generic term)
+(noun)|Prunella|genus Prunella|bird genus (generic term)
+genus prunus|1
+(noun)|Prunus|genus Prunus|rosid dicot genus (generic term)
+genus psaltriparus|1
+(noun)|Psaltriparus|genus Psaltriparus|bird genus (generic term)
+genus psenes|1
+(noun)|Psenes|genus Psenes|fish genus (generic term)
+genus psephurus|1
+(noun)|Psephurus|genus Psephurus|fish genus (generic term)
+genus psetta|1
+(noun)|Psetta|genus Psetta|fish genus (generic term)
+genus psettichthys|1
+(noun)|Psettichthys|genus Psettichthys|fish genus (generic term)
+genus pseudacris|1
+(noun)|Pseudacris|genus Pseudacris|amphibian genus (generic term)
+genus pseudaletia|1
+(noun)|Pseudaletia|genus Pseudaletia|arthropod genus (generic term)
+genus pseudechis|1
+(noun)|Pseudechis|genus Pseudechis|reptile genus (generic term)
+genus pseudemys|1
+(noun)|Pseudemys|genus Pseudemys|reptile genus (generic term)
+genus pseudobombax|1
+(noun)|Pseudobombax|genus Pseudobombax|dilleniid dicot genus (generic term)
+genus pseudococcus|1
+(noun)|Pseudococcus|genus Pseudococcus|arthropod genus (generic term)
+genus pseudocolus|1
+(noun)|Pseudocolus|genus Pseudocolus|fungus genus (generic term)
+genus pseudolarix|1
+(noun)|Pseudolarix|genus Pseudolarix|gymnosperm genus (generic term)
+genus pseudomonas|1
+(noun)|Pseudomonas|genus Pseudomonas|bacteria genus (generic term)
+genus pseudopleuronectes|1
+(noun)|Pseudopleuronectes|genus Pseudopleuronectes|fish genus (generic term)
+genus pseudoryx|1
+(noun)|Pseudoryx|genus Pseudoryx|mammal genus (generic term)
+genus pseudotaxus|1
+(noun)|Pseudotaxus|genus Pseudotaxus|gymnosperm genus (generic term)
+genus pseudotsuga|1
+(noun)|Pseudotsuga|genus Pseudotsuga|gymnosperm genus (generic term)
+genus pseudowintera|1
+(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus (generic term)
+genus psidium|1
+(noun)|Psidium|genus Psidium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus psilophyton|1
+(noun)|genus Psilophyton|fern genus (generic term)
+genus psilotum|1
+(noun)|Psilotum|genus Psilotum|fern genus (generic term)
+genus psithyrus|1
+(noun)|Psithyrus|genus Psithyrus|arthropod genus (generic term)
+genus psittacosaurus|1
+(noun)|genus Psittacosaurus|reptile genus (generic term)
+genus psittacula|1
+(noun)|Psittacula|genus Psittacula|bird genus (generic term)
+genus psittacus|1
+(noun)|Psittacus|genus Psittacus|bird genus (generic term)
+genus psophia|1
+(noun)|Psophia|genus Psophia|bird genus (generic term)
+genus psophocarpus|1
+(noun)|Psophocarpus|genus Psophocarpus|rosid dicot genus (generic term)
+genus psoralea|1
+(noun)|Psoralea|genus Psoralea|rosid dicot genus (generic term)
+genus psychopsis|1
+(noun)|Psychopsis|genus Psychopsis|monocot genus (generic term)|liliopsid genus (generic term)
+genus psychotria|1
+(noun)|Psychotria|genus Psychotria|asterid dicot genus (generic term)
+genus pteretis|1
+(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus (generic term)
+genus pteridium|1
+(noun)|Pteridium|genus Pteridium|fern genus (generic term)
+genus pteris|1
+(noun)|Pteris|genus Pteris|fern genus (generic term)
+genus pternohyla|1
+(noun)|Pternohyla|genus Pternohyla|amphibian genus (generic term)
+genus pterocarpus|1
+(noun)|Pterocarpus|genus Pterocarpus|rosid dicot genus (generic term)
+genus pterocarya|1
+(noun)|Pterocarya|genus Pterocarya|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pterocles|1
+(noun)|Pterocles|genus Pterocles|bird genus (generic term)
+genus pterocnemia|1
+(noun)|Pterocnemia|genus Pterocnemia|bird genus (generic term)
+genus pterodactylus|1
+(noun)|Pterodactylus|genus Pterodactylus|reptile genus (generic term)
+genus pterois|1
+(noun)|Pterois|genus Pterois|fish genus (generic term)
+genus pteropogon|1
+(noun)|genus Pteropogon|asterid dicot genus (generic term)
+genus pteropus|1
+(noun)|Pteropus|genus Pteropus|mammal genus (generic term)
+genus pterospermum|1
+(noun)|Pterospermum|genus Pterospermum|dilleniid dicot genus (generic term)
+genus pterostylis|1
+(noun)|Pterostylis|genus Pterostylis|monocot genus (generic term)|liliopsid genus (generic term)
+genus ptilocercus|1
+(noun)|Ptilocercus|genus Ptilocercus|mammal genus (generic term)
+genus ptilocrinus|1
+(noun)|Ptilocrinus|genus Ptilocrinus|echinoderm genus (generic term)
+genus ptilonorhynchus|1
+(noun)|Ptilonorhynchus|genus Ptilonorhynchus|bird genus (generic term)
+genus ptloris|1
+(noun)|Ptloris|genus Ptloris|bird genus (generic term)
+genus ptyas|1
+(noun)|Ptyas|genus Ptyas|reptile genus (generic term)
+genus ptychozoon|1
+(noun)|Ptychozoon|genus Ptychozoon|reptile genus (generic term)
+genus puccinia|1
+(noun)|Puccinia|genus Puccinia|fungus genus (generic term)
+genus pueraria|1
+(noun)|Pueraria|genus Pueraria|rosid dicot genus (generic term)
+genus puffinus|1
+(noun)|Puffinus|genus Puffinus|bird genus (generic term)
+genus pulex|1
+(noun)|Pulex|genus Pulex|arthropod genus (generic term)
+genus pulicaria|1
+(noun)|Pulicaria|genus Pulicaria|asterid dicot genus (generic term)
+genus pulsatilla|1
+(noun)|Pulsatilla|genus Pulsatilla|magnoliid dicot genus (generic term)
+genus punica|1
+(noun)|Punica|genus Punica|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus pycnanthemum|1
+(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus (generic term)
+genus pygopus|1
+(noun)|Pygopus|genus Pygopus|reptile genus (generic term)
+genus pygoscelis|1
+(noun)|Pygoscelis|genus Pygoscelis|bird genus (generic term)
+genus pylodictus|1
+(noun)|Pylodictus|genus Pylodictus|fish genus (generic term)
+genus pyracantha|1
+(noun)|genus Pyracantha|rosid dicot genus (generic term)
+genus pyralis|1
+(noun)|Pyralis|genus Pyralis|arthropod genus (generic term)
+genus pyrausta|1
+(noun)|Pyrausta|genus Pyrausta|arthropod genus (generic term)
+genus pyrethrum|1
+(noun)|Pyrethrum|genus Pyrethrum|asterid dicot genus (generic term)
+genus pyrocephalus|1
+(noun)|Pyrocephalus|genus Pyrocephalus|bird genus (generic term)
+genus pyrola|1
+(noun)|genus Pyrola|dilleniid dicot genus (generic term)
+genus pyrophorus|1
+(noun)|Pyrophorus|genus Pyrophorus|arthropod genus (generic term)
+genus pyrrhula|1
+(noun)|Pyrrhula|genus Pyrrhula|bird genus (generic term)
+genus pyrrhuloxia|1
+(noun)|genus Pyrrhuloxia|bird genus (generic term)
+genus pyrrosia|1
+(noun)|Pyrrosia|genus Pyrrosia|fern genus (generic term)
+genus pyrularia|1
+(noun)|Pyrularia|genus Pyrularia|dilleniid dicot genus (generic term)
+genus pyrus|1
+(noun)|Pyrus|genus Pyrus|rosid dicot genus (generic term)
+genus pythium|1
+(noun)|genus Pythium|fungus genus (generic term)
+genus python|1
+(noun)|genus Python|reptile genus (generic term)
+genus pyxidanthera|1
+(noun)|Pyxidanthera|genus Pyxidanthera|dilleniid dicot genus (generic term)
+genus quamassia|1
+(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus (generic term)
+genus quassia|1
+(noun)|genus Quassia|rosid dicot genus (generic term)
+genus quercus|1
+(noun)|Quercus|genus Quercus|hamamelid dicot genus (generic term)
+genus quiscalus|1
+(noun)|Quiscalus|genus Quiscalus|bird genus (generic term)
+genus rachycentron|1
+(noun)|Rachycentron|genus Rachycentron|fish genus (generic term)
+genus radiigera|1
+(noun)|Radiigera|genus Radiigera|fungus genus (generic term)
+genus radyera|1
+(noun)|Radyera|genus Radyera|dilleniid dicot genus (generic term)
+genus raffia|1
+(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus (generic term)|liliopsid genus (generic term)
+genus raja|1
+(noun)|Raja|genus Raja|fish genus (generic term)
+genus ramalina|1
+(noun)|Ramalina|genus Ramalina|fungus genus (generic term)
+genus ramphomicron|1
+(noun)|Ramphomicron|genus Ramphomicron|bird genus (generic term)
+genus rana|1
+(noun)|Rana|genus Rana|amphibian genus (generic term)
+genus ranatra|1
+(noun)|Ranatra|genus Ranatra|arthropod genus (generic term)
+genus rangifer|1
+(noun)|Rangifer|genus Rangifer|mammal genus (generic term)
+genus ranunculus|1
+(noun)|Ranunculus|genus Ranunculus|magnoliid dicot genus (generic term)
+genus raoulia|1
+(noun)|Raoulia|genus Raoulia|asterid dicot genus (generic term)
+genus raphanus|1
+(noun)|Raphanus|genus Raphanus|dilleniid dicot genus (generic term)
+genus raphia|1
+(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus (generic term)|liliopsid genus (generic term)
+genus raphicerus|1
+(noun)|Raphicerus|genus Raphicerus|mammal genus (generic term)
+genus raphus|1
+(noun)|Raphus|genus Raphus|bird genus (generic term)
+genus ratibida|1
+(noun)|Ratibida|genus Ratibida|asterid dicot genus (generic term)
+genus rattus|1
+(noun)|Rattus|genus Rattus|mammal genus (generic term)
+genus rauvolfia|1
+(noun)|genus Rauwolfia|genus Rauvolfia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rauwolfia|1
+(noun)|genus Rauwolfia|genus Rauvolfia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus ravenala|1
+(noun)|genus Ravenala|monocot genus (generic term)|liliopsid genus (generic term)
+genus recurvirostra|1
+(noun)|Recurvirostra|genus Recurvirostra|bird genus (generic term)
+genus regalecus|1
+(noun)|Reglaecus|genus Regalecus|fish genus (generic term)
+genus regnellidium|1
+(noun)|genus Regnellidium|fern genus (generic term)
+genus regulus|1
+(noun)|Regulus|genus Regulus|bird genus (generic term)
+genus reithrodontomys|1
+(noun)|Reithrodontomys|genus Reithrodontomys|mammal genus (generic term)
+genus remilegia|1
+(noun)|Remilegia|genus Remilegia|fish genus (generic term)
+genus reseda|1
+(noun)|genus Reseda|dilleniid dicot genus (generic term)
+genus retama|1
+(noun)|Retama|genus Retama|rosid dicot genus (generic term)
+genus reticulitermes|1
+(noun)|Reticulitermes|genus Reticulitermes|arthropod genus (generic term)
+genus retrophyllum|1
+(noun)|Retrophyllum|genus Retrophyllum|gymnosperm genus (generic term)
+genus rhagoletis|1
+(noun)|Rhagoletis|genus Rhagoletis|arthropod genus (generic term)
+genus rhamnus|1
+(noun)|Rhamnus|genus Rhamnus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rhapis|1
+(noun)|Rhapis|genus Rhapis|monocot genus (generic term)|liliopsid genus (generic term)
+genus rhea|1
+(noun)|genus Rhea|bird genus (generic term)
+genus rheum|1
+(noun)|Rheum|genus Rheum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rhexia|1
+(noun)|Rhexia|genus Rhexia|rosid dicot genus (generic term)
+genus rhincodon|1
+(noun)|Rhincodon|genus Rhincodon|fish genus (generic term)
+genus rhinoceros|1
+(noun)|genus Rhinoceros|mammal genus (generic term)
+genus rhinonicteris|1
+(noun)|Rhinonicteris|genus Rhinonicteris|mammal genus (generic term)
+genus rhinoptera|1
+(noun)|Rhinoptera|genus Rhinoptera|fish genus (generic term)
+genus rhipsalis|1
+(noun)|Rhipsalis|genus Rhipsalis|caryophylloid dicot genus (generic term)
+genus rhizobium|1
+(noun)|Rhizobium|genus Rhizobium|bacteria genus (generic term)
+genus rhizoctinia|1
+(noun)|genus Rhizoctinia|form genus Rhizoctinia|fungus genus (generic term)
+genus rhizophora|1
+(noun)|Rhizophora|genus Rhizophora|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rhizopogon|1
+(noun)|Rhizopogon|genus Rhizopogon|fungus genus (generic term)
+genus rhizopus|1
+(noun)|genus Rhizopus|fungus genus (generic term)
+genus rhodanthe|1
+(noun)|genus Rhodanthe|asterid dicot genus (generic term)
+genus rhododendron|1
+(noun)|genus Rhododendron|dilleniid dicot genus (generic term)
+genus rhodosphaera|1
+(noun)|Rhodosphaera|genus Rhodosphaera|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rhodymenia|1
+(noun)|Rhodymenia|genus Rhodymenia|protoctist genus (generic term)
+genus rhus|1
+(noun)|Rhus|genus Rhus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rhyacotriton|1
+(noun)|Rhyacotriton|genus Rhyacotriton|amphibian genus (generic term)
+genus rhynchoelaps|1
+(noun)|Rhynchoelaps|genus Rhynchoelaps|reptile genus (generic term)
+genus rhyncostylis|1
+(noun)|Rhyncostylis|genus Rhyncostylis|monocot genus (generic term)|liliopsid genus (generic term)
+genus rhynia|1
+(noun)|Rhynia|genus Rhynia|fern genus (generic term)
+genus ribes|1
+(noun)|Ribes|genus Ribes|plant genus (generic term)
+genus richea|1
+(noun)|Richea|genus Richea|dilleniid dicot genus (generic term)
+genus richmondena|1
+(noun)|Richmondena|genus Richmondena|bird genus (generic term)
+genus ricinus|1
+(noun)|Ricinus|genus Ricinus|rosid dicot genus (generic term)
+genus rickettsia|1
+(noun)|genus Rickettsia|bacteria genus (generic term)
+genus riparia|1
+(noun)|Riparia|genus Riparia|bird genus (generic term)
+genus rissa|1
+(noun)|Rissa|genus Rissa|bird genus (generic term)
+genus rivina|1
+(noun)|Rivina|genus Rivina|caryophylloid dicot genus (generic term)
+genus rivulus|1
+(noun)|genus Rivulus|fish genus (generic term)
+genus robinia|1
+(noun)|Robinia|genus Robinia|rosid dicot genus (generic term)
+genus roccella|1
+(noun)|genus Roccella|fungus genus (generic term)
+genus roccus|1
+(noun)|Roccus|genus Roccus|fish genus (generic term)
+genus rodolia|1
+(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus (generic term)
+genus romneya|1
+(noun)|Romneya|genus Romneya|dilleniid dicot genus (generic term)
+genus roridula|1
+(noun)|genus Roridula|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rorippa|1
+(noun)|Rorippa|genus Rorippa|dilleniid dicot genus (generic term)
+genus rosa|1
+(noun)|Rosa|genus Rosa|rosid dicot genus (generic term)
+genus rosellinia|1
+(noun)|Rosellinia|genus Rosellinia|fungus genus (generic term)
+genus rosmarinus|1
+(noun)|Rosmarinus|genus Rosmarinus|asterid dicot genus (generic term)
+genus roystonea|1
+(noun)|Roystonea|genus Roystonea|monocot genus (generic term)|liliopsid genus (generic term)
+genus rubia|1
+(noun)|Rubia|genus Rubia|asterid dicot genus (generic term)
+genus rubus|1
+(noun)|Rubus|genus Rubus|rosid dicot genus (generic term)
+genus rudbeckia|1
+(noun)|Rudbeckia|genus Rudbeckia|asterid dicot genus (generic term)
+genus rumex|1
+(noun)|Rumex|genus Rumex|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus rumohra|1
+(noun)|Rumohra|genus Rumohra|fern genus (generic term)
+genus rupicapra|1
+(noun)|Rupicapra|genus Rupicapra|mammal genus (generic term)
+genus rupicola|1
+(noun)|Rupicola|genus Rupicola|bird genus (generic term)
+genus ruptiliocarpon|1
+(noun)|Ruptiliocarpon|genus Ruptiliocarpon|rosid dicot genus (generic term)
+genus ruscus|1
+(noun)|Ruscus|genus Ruscus|liliid monocot genus (generic term)
+genus russula|1
+(noun)|Russula|genus Russula|fungus genus (generic term)
+genus ruta|1
+(noun)|Ruta|genus Ruta|rosid dicot genus (generic term)
+genus rutilus|1
+(noun)|Rutilus|genus Rutilus|fish genus (generic term)
+genus rynchops|1
+(noun)|Rynchops|genus Rynchops|bird genus (generic term)
+genus rypticus|1
+(noun)|Rypticus|genus Rypticus|fish genus (generic term)
+genus sabal|1
+(noun)|Sabal|genus Sabal|monocot genus (generic term)|liliopsid genus (generic term)
+genus sabbatia|1
+(noun)|genus Sabbatia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus sabinea|1
+(noun)|Sabinea|genus Sabinea|rosid dicot genus (generic term)
+genus saccharomyces|1
+(noun)|Saccharomyces|genus Saccharomyces|fungus genus (generic term)
+genus saccharum|1
+(noun)|Saccharum|genus Saccharum|monocot genus (generic term)|liliopsid genus (generic term)
+genus sadleria|1
+(noun)|Sadleria|genus Sadleria|fern genus (generic term)
+genus sagina|1
+(noun)|Sagina|genus Sagina|caryophylloid dicot genus (generic term)
+genus sagitta|1
+(noun)|genus Sagitta|worm genus (generic term)
+genus sagittaria|1
+(noun)|Sagittaria|genus Sagittaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus sagittarius|1
+(noun)|Sagittarius|genus Sagittarius|bird genus (generic term)
+genus saiga|1
+(noun)|genus Saiga|mammal genus (generic term)
+genus saimiri|1
+(noun)|Saimiri|genus Saimiri|mammal genus (generic term)
+genus saintpaulia|1
+(noun)|Saintpaulia|genus Saintpaulia|asterid dicot genus (generic term)
+genus salamandra|1
+(noun)|Salamandra|genus Salamandra|amphibian genus (generic term)
+genus salicornia|1
+(noun)|Salicornia|genus Salicornia|caryophylloid dicot genus (generic term)
+genus salix|1
+(noun)|Salix|genus Salix|hamamelid dicot genus (generic term)
+genus salmo|1
+(noun)|Salmo|genus Salmo|fish genus (generic term)
+genus salmonella|1
+(noun)|genus Salmonella|bacteria genus (generic term)
+genus salpa|1
+(noun)|genus Salpa|chordate genus (generic term)
+genus salpichroa|1
+(noun)|Salpichroa|genus Salpichroa|asterid dicot genus (generic term)
+genus salpiglossis|1
+(noun)|genus Salpiglossis|asterid dicot genus (generic term)
+genus salpinctes|1
+(noun)|Salpinctes|genus Salpinctes|bird genus (generic term)
+genus salsola|1
+(noun)|Salsola|genus Salsola|caryophylloid dicot genus (generic term)
+genus salvadora|1
+(noun)|Salvadora|genus Salvadora|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus salvelinus|1
+(noun)|Salvelinus|genus Salvelinus|fish genus (generic term)
+genus salvia|1
+(noun)|genus Salvia|asterid dicot genus (generic term)
+genus salvinia|1
+(noun)|Salvinia|genus Salvinia|fern genus (generic term)
+genus sambucus|1
+(noun)|Sambucus|genus Sambucus|asterid dicot genus (generic term)
+genus samia|1
+(noun)|Samia|genus Samia|arthropod genus (generic term)
+genus samolus|1
+(noun)|Samolus|genus Samolus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus sanguinaria|1
+(noun)|Sanguinaria|genus Sanguinaria|dilleniid dicot genus (generic term)
+genus sanicula|1
+(noun)|Sanicula|genus Sanicula|rosid dicot genus (generic term)
+genus sansevieria|1
+(noun)|genus Sansevieria|liliid monocot genus (generic term)
+genus santalum|1
+(noun)|Santalum|genus Santalum|dilleniid dicot genus (generic term)
+genus santolina|1
+(noun)|Santolina|genus Santolina|asterid dicot genus (generic term)
+genus sanvitalia|1
+(noun)|Sanvitalia|genus Sanvitalia|asterid dicot genus (generic term)
+genus sapindus|1
+(noun)|Sapindus|genus Sapindus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus saponaria|1
+(noun)|Saponaria|genus Saponaria|caryophylloid dicot genus (generic term)
+genus saprolegnia|1
+(noun)|Saprolegnia|genus Saprolegnia|fungus genus (generic term)
+genus sarcobatus|1
+(noun)|Sarcobatus|genus Sarcobatus|caryophylloid dicot genus (generic term)
+genus sarcocephalus|1
+(noun)|Sarcocephalus|genus Sarcocephalus|asterid dicot genus (generic term)
+genus sarcochilus|1
+(noun)|Sarcochilus|genus Sarcochilus|monocot genus (generic term)|liliopsid genus (generic term)
+genus sarcocystis|1
+(noun)|Sarcocystis|genus Sarcocystis|protoctist genus (generic term)
+genus sarcodes|1
+(noun)|Sarcodes|genus Sarcodes|dilleniid dicot genus (generic term)
+genus sarcophaga|1
+(noun)|Sarcophaga|genus Sarcophaga|arthropod genus (generic term)
+genus sarcophilus|1
+(noun)|Sarcophilus|genus Sarcophilus|mammal genus (generic term)
+genus sarcoptes|1
+(noun)|Sarcoptes|genus Sarcoptes|arthropod genus (generic term)
+genus sarcorhamphus|1
+(noun)|Sarcorhamphus|genus Sarcorhamphus|bird genus (generic term)
+genus sarcostemma|1
+(noun)|Sarcostemma|genus Sarcostemma|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus sarda|1
+(noun)|Sarda|genus Sarda|fish genus (generic term)
+genus sardina|1
+(noun)|Sardina|genus Sardina|genus Sardinia|fish genus (generic term)
+genus sardinia|1
+(noun)|Sardina|genus Sardina|genus Sardinia|fish genus (generic term)
+genus sardinops|1
+(noun)|Sardinops|genus Sardinops|fish genus (generic term)
+genus sargassum|1
+(noun)|genus Sargassum|protoctist genus (generic term)
+genus sarracenia|1
+(noun)|Sarracenia|genus Sarracenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus sassafras|1
+(noun)|genus Sassafras|magnoliid dicot genus (generic term)
+genus satureia|1
+(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus (generic term)
+genus satureja|1
+(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus (generic term)
+genus saturnia|1
+(noun)|Saturnia|genus Saturnia|arthropod genus (generic term)
+genus sauromalus|1
+(noun)|Sauromalus|genus Sauromalus|reptile genus (generic term)
+genus saurosuchus|1
+(noun)|Saurosuchus|genus Saurosuchus|reptile genus (generic term)
+genus saururus|1
+(noun)|Saururus|genus Saururus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus saussurea|1
+(noun)|Saussurea|genus Saussurea|asterid dicot genus (generic term)
+genus saxe-gothea|1
+(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus (generic term)
+genus saxegothea|1
+(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus (generic term)
+genus saxicola|1
+(noun)|Saxicola|genus Saxicola|bird genus (generic term)
+genus saxifraga|1
+(noun)|Saxifraga|genus Saxifraga|rosid dicot genus (generic term)
+genus sayornis|1
+(noun)|Sayornis|genus Sayornis|bird genus (generic term)
+genus scabiosa|1
+(noun)|genus Scabiosa|asterid dicot genus (generic term)
+genus scaphiopus|1
+(noun)|Scaphiopus|genus Scaphiopus|amphibian genus (generic term)
+genus scaphosepalum|1
+(noun)|Scaphosepalum|genus Scaphosepalum|monocot genus (generic term)|liliopsid genus (generic term)
+genus scarabaeus|1
+(noun)|genus Scarabaeus|arthropod genus (generic term)
+genus scardinius|1
+(noun)|Scardinius|genus Scardinius|fish genus (generic term)
+genus scartella|1
+(noun)|Scartella|genus Scartella|fish genus (generic term)
+genus sceliphron|1
+(noun)|Sceliphron|genus Sceliphron|arthropod genus (generic term)
+genus sceloglaux|1
+(noun)|Sceloglaux|genus Sceloglaux|bird genus (generic term)
+genus sceloporus|1
+(noun)|Sceloporus|genus Sceloporus|reptile genus (generic term)
+genus schaffneria|1
+(noun)|Schaffneria|genus Schaffneria|fern genus (generic term)
+genus schefflera|1
+(noun)|Schefflera|genus Schefflera|rosid dicot genus (generic term)
+genus schinus|1
+(noun)|Schinus|genus Schinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus schistosoma|1
+(noun)|Schistosoma|genus Schistosoma|worm genus (generic term)
+genus schizachyrium|1
+(noun)|Schizachyrium|genus Schizachyrium|monocot genus (generic term)|liliopsid genus (generic term)
+genus schizaea|1
+(noun)|Schizaea|genus Schizaea|fern genus (generic term)
+genus schizanthus|1
+(noun)|genus Schizanthus|asterid dicot genus (generic term)
+genus schizopetalon|1
+(noun)|genus Schizopetalon|dilleniid dicot genus (generic term)
+genus schizophragma|1
+(noun)|Schizophragma|genus Schizophragma|rosid dicot genus (generic term)
+genus schizosaccharomyces|1
+(noun)|Schizosaccharomyces|genus Schizosaccharomyces|fungus genus (generic term)
+genus schlumbergera|1
+(noun)|Schlumbergera|genus Schlumbergera|caryophylloid dicot genus (generic term)
+genus schomburgkia|1
+(noun)|Schomburgkia|genus Schomburgkia|monocot genus (generic term)|liliopsid genus (generic term)
+genus sciadopitys|1
+(noun)|Sciadopitys|genus Sciadopitys|gymnosperm genus (generic term)
+genus sciaena|1
+(noun)|Sciaena|genus Sciaena|fish genus (generic term)
+genus sciaenops|1
+(noun)|Sciaenops|genus Sciaenops|fish genus (generic term)
+genus sciara|1
+(noun)|genus Sciara|arthropod genus (generic term)
+genus scilla|1
+(noun)|genus Scilla|liliid monocot genus (generic term)
+genus scincella|1
+(noun)|Scincella|genus Scincella|reptile genus (generic term)
+genus scincus|1
+(noun)|Scincus|genus Scincus|reptile genus (generic term)
+genus scindapsus|1
+(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus (generic term)|liliopsid genus (generic term)
+genus scirpus|1
+(noun)|Scirpus|genus Scirpus|monocot genus (generic term)|liliopsid genus (generic term)
+genus sciurus|1
+(noun)|Sciurus|genus Sciurus|mammal genus (generic term)
+genus scleranthus|1
+(noun)|Scleranthus|genus Scleranthus|caryophylloid dicot genus (generic term)
+genus scleroderma|1
+(noun)|Scleroderma|genus Scleroderma|fungus genus (generic term)
+genus sclerotinia|1
+(noun)|genus Sclerotinia|fungus genus (generic term)
+genus sclerotium|1
+(noun)|Sclerotium|genus Sclerotium|fungus genus (generic term)
+genus scolopax|1
+(noun)|Scolopax|genus Scolopax|bird genus (generic term)
+genus scolopendrium|1
+(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus (generic term)
+genus scolymus|1
+(noun)|Scolymus|genus Scolymus|asterid dicot genus (generic term)
+genus scolytus|1
+(noun)|Scolytus|genus Scolytus|arthropod genus (generic term)
+genus scomber|1
+(noun)|Scomber|genus Scomber|fish genus (generic term)
+genus scomberesox|1
+(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus (generic term)
+genus scomberomorus|1
+(noun)|Scomberomorus|genus Scomberomorus|fish genus (generic term)
+genus scombresox|1
+(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus (generic term)
+genus scophthalmus|1
+(noun)|Scophthalmus|genus Scophthalmus|fish genus (generic term)
+genus scopolia|1
+(noun)|Scopolia|genus Scopolia|asterid dicot genus (generic term)
+genus scorpaena|1
+(noun)|Scorpaena|genus Scorpaena|fish genus (generic term)
+genus scorzonera|1
+(noun)|genus Scorzonera|asterid dicot genus (generic term)
+genus scrophularia|1
+(noun)|Scrophularia|genus Scrophularia|asterid dicot genus (generic term)
+genus scutellaria|1
+(noun)|Scutellaria|genus Scutellaria|asterid dicot genus (generic term)
+genus scutigera|1
+(noun)|Scutigera|genus Scutigera|arthropod genus (generic term)
+genus scutigerella|1
+(noun)|Scutigerella|genus Scutigerella|arthropod genus (generic term)
+genus sebastiana|1
+(noun)|Sebastiana|genus Sebastiana|rosid dicot genus (generic term)
+genus sebastodes|1
+(noun)|Sebastodes|genus Sebastodes|fish genus (generic term)
+genus secale|1
+(noun)|Secale|genus Secale|monocot genus (generic term)|liliopsid genus (generic term)
+genus sedum|1
+(noun)|genus Sedum|plant genus (generic term)
+genus seismosaurus|1
+(noun)|Seismosaurus|genus Seismosaurus|reptile genus (generic term)
+genus seiurus|1
+(noun)|Seiurus|genus Seiurus|bird genus (generic term)
+genus selaginella|1
+(noun)|Selaginella|genus Selaginella|fern genus (generic term)
+genus selar|1
+(noun)|Selar|genus Selar|fish genus (generic term)
+genus selenarctos|1
+(noun)|Selenarctos|genus Selenarctos|mammal genus (generic term)
+genus selene|1
+(noun)|Selene|genus Selene|fish genus (generic term)
+genus selenicereus|1
+(noun)|Selenicereus|genus Selenicereus|caryophylloid dicot genus (generic term)
+genus selenipedium|1
+(noun)|Selenipedium|genus Selenipedium|monocot genus (generic term)|liliopsid genus (generic term)
+genus senecio|1
+(noun)|Senecio|genus Senecio|asterid dicot genus (generic term)
+genus senna|1
+(noun)|genus Senna|rosid dicot genus (generic term)
+genus sepia|1
+(noun)|Sepia|genus Sepia|mollusk genus (generic term)
+genus septobasidium|1
+(noun)|Septobasidium|genus Septobasidium|fungus genus (generic term)
+genus sequoia|1
+(noun)|genus Sequoia|gymnosperm genus (generic term)
+genus sequoiadendron|1
+(noun)|Sequoiadendron|genus Sequoiadendron|plant genus (generic term)
+genus serenoa|1
+(noun)|Serenoa|genus Serenoa|monocot genus (generic term)|liliopsid genus (generic term)
+genus sericocarpus|1
+(noun)|Sericocarpus|genus Sericocarpus|asterid dicot genus (generic term)
+genus serinus|1
+(noun)|Serinus|genus Serinus|bird genus (generic term)
+genus seriola|1
+(noun)|Seriola|genus Seriola|fish genus (generic term)
+genus seriphidium|1
+(noun)|Seriphidium|genus Seriphidium|asterid dicot genus (generic term)
+genus seriphus|1
+(noun)|Seriphus|genus Seriphus|fish genus (generic term)
+genus serranus|1
+(noun)|Serranus|genus Serranus|fish genus (generic term)
+genus serrasalmus|1
+(noun)|Serrasalmus|genus Serrasalmus|fish genus (generic term)
+genus serratia|1
+(noun)|genus Serratia|Serratia|bacteria genus (generic term)
+genus serratula|1
+(noun)|Serratula|genus Serratula|asterid dicot genus (generic term)
+genus sertularia|1
+(noun)|Sertularia|genus Sertularia|coelenterate genus (generic term)
+genus sesamum|1
+(noun)|Sesamum|genus Sesamum|plant genus (generic term)
+genus sesbania|1
+(noun)|genus Sesbania|rosid dicot genus (generic term)
+genus seseli|1
+(noun)|Seseli|genus Seseli|rosid dicot genus (generic term)
+genus setaria|1
+(noun)|Setaria|genus Setaria|monocot genus (generic term)|liliopsid genus (generic term)
+genus setophaga|1
+(noun)|Setophaga|genus Setophaga|bird genus (generic term)
+genus shigella|1
+(noun)|genus Shigella|bacteria genus (generic term)
+genus shorea|1
+(noun)|Shorea|genus Shorea|dilleniid dicot genus (generic term)
+genus shortia|1
+(noun)|genus Shortia|dilleniid dicot genus (generic term)
+genus sialia|1
+(noun)|Sialia|genus Sialia|bird genus (generic term)
+genus sialis|1
+(noun)|Sialis|genus Sialis|arthropod genus (generic term)
+genus sida|1
+(noun)|Sida|genus Sida|dilleniid dicot genus (generic term)
+genus sidalcea|1
+(noun)|Sidalcea|genus Sidalcea|dilleniid dicot genus (generic term)
+genus sideritis|1
+(noun)|Sideritis|genus Sideritis|asterid dicot genus (generic term)
+genus sigmodon|1
+(noun)|Sigmodon|genus Sigmodon|mammal genus (generic term)
+genus silene|1
+(noun)|genus Silene|caryophylloid dicot genus (generic term)
+genus sillago|1
+(noun)|Sillago|genus Sillago|fish genus (generic term)
+genus silphium|1
+(noun)|Silphium|genus Silphium|asterid dicot genus (generic term)
+genus silurus|1
+(noun)|Silurus|genus Silurus|fish genus (generic term)
+genus silvia|1
+(noun)|Silvia|genus Silvia|bird genus (generic term)
+genus silybum|1
+(noun)|Silybum|genus Silybum|asterid dicot genus (generic term)
+genus simarouba|1
+(noun)|Simarouba|genus Simarouba|rosid dicot genus (generic term)
+genus simulium|1
+(noun)|Simulium|genus Simulium|arthropod genus (generic term)
+genus sinanthropus|1
+(noun)|Sinanthropus|genus Sinanthropus|hominid (generic term)
+genus sinapis|1
+(noun)|Sinapis|genus Sinapis|dilleniid dicot genus (generic term)
+genus sinningia|1
+(noun)|Sinningia|genus Sinningia|asterid dicot genus (generic term)
+genus sinornis|1
+(noun)|genus Sinornis|bird genus (generic term)
+genus siren|1
+(noun)|genus Siren|amphibian genus (generic term)
+genus sison|1
+(noun)|Sison|genus Sison|rosid dicot genus (generic term)
+genus sistrurus|1
+(noun)|Sistrurus|genus Sistrurus|reptile genus (generic term)
+genus sisymbrium|1
+(noun)|genus Sisymbrium|dilleniid dicot genus (generic term)
+genus sisyrinchium|1
+(noun)|Sisyrinchium|genus Sisyrinchium|liliid monocot genus (generic term)
+genus sitophylus|1
+(noun)|Sitophylus|genus Sitophylus|arthropod genus (generic term)
+genus sitotroga|1
+(noun)|Sitotroga|genus Sitotroga|arthropod genus (generic term)
+genus sitta|1
+(noun)|Sitta|genus Sitta|bird genus (generic term)
+genus sium|1
+(noun)|Sium|genus Sium|rosid dicot genus (generic term)
+genus sivapithecus|1
+(noun)|genus Sivapithecus|mammal genus (generic term)
+genus sloanea|1
+(noun)|Sloanea|genus Sloanea|dilleniid dicot genus (generic term)
+genus smilax|1
+(noun)|Smilax|genus Smilax|liliid monocot genus (generic term)
+genus smiledon|1
+(noun)|Smiledon|genus Smiledon|mammal genus (generic term)
+genus smyrnium|1
+(noun)|Smyrnium|genus Smyrnium|rosid dicot genus (generic term)
+genus sobralia|1
+(noun)|genus Sobralia|monocot genus (generic term)|liliopsid genus (generic term)
+genus solandra|1
+(noun)|Solandra|genus Solandra|asterid dicot genus (generic term)
+genus solanopteris|1
+(noun)|Solanopteris|genus Solanopteris|fern genus (generic term)
+genus solanum|1
+(noun)|Solanum|genus Solanum|asterid dicot genus (generic term)
+genus solea|1
+(noun)|Solea|genus Solea|fish genus (generic term)
+genus soleirolia|1
+(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus solenopsis|1
+(noun)|Solenopsis|genus Solenopsis|arthropod genus (generic term)
+genus solenostemon|1
+(noun)|Solenostemon|genus Solenostemon|asterid dicot genus (generic term)
+genus solidago|1
+(noun)|Solidago|genus Solidago|asterid dicot genus (generic term)
+genus somateria|1
+(noun)|Somateria|genus Somateria|bird genus (generic term)
+genus sonchus|1
+(noun)|Sonchus|genus Sonchus|asterid dicot genus (generic term)
+genus sonora|1
+(noun)|Sonora|genus Sonora|reptile genus (generic term)
+genus sophora|1
+(noun)|Sophora|genus Sophora|rosid dicot genus (generic term)
+genus sorbus|1
+(noun)|Sorbus|genus Sorbus|rosid dicot genus (generic term)
+genus sorex|1
+(noun)|Sorex|genus Sorex|mammal genus (generic term)
+genus sorghum|1
+(noun)|genus Sorghum|Sorghum|monocot genus (generic term)|liliopsid genus (generic term)
+genus spadella|1
+(noun)|genus Spadella|worm genus (generic term)
+genus spalax|1
+(noun)|Spalax|genus Spalax|mammal genus (generic term)
+genus sparaxis|1
+(noun)|Sparaxis|genus Sparaxis|liliid monocot genus (generic term)
+genus sparganium|1
+(noun)|Sparganium|genus Sparganium|monocot genus (generic term)|liliopsid genus (generic term)
+genus sparmannia|1
+(noun)|Sparmannia|genus Sparmannia|dilleniid dicot genus (generic term)
+genus spartina|1
+(noun)|Spartina|genus Spartina|monocot genus (generic term)|liliopsid genus (generic term)
+genus spartium|1
+(noun)|Spartium|genus Spartium|rosid dicot genus (generic term)
+genus spathiphyllum|1
+(noun)|genus Spathiphyllum|monocot genus (generic term)|liliopsid genus (generic term)
+genus spergula|1
+(noun)|Spergula|genus Spergula|caryophylloid dicot genus (generic term)
+genus spergularia|1
+(noun)|Spergularia|genus Spergularia|caryophylloid dicot genus (generic term)
+genus spermophilus|1
+(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus (generic term)
+genus sphacele|1
+(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus (generic term)
+genus sphacelotheca|1
+(noun)|Sphacelotheca|genus Sphacelotheca|smut (generic term)|smut fungus (generic term)
+genus sphaeralcea|1
+(noun)|Sphaeralcea|genus Sphaeralcea|dilleniid dicot genus (generic term)
+genus sphaerocarpos|1
+(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus (generic term)
+genus sphaerocarpus|1
+(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus (generic term)
+genus sphagnum|1
+(noun)|genus Sphagnum|moss genus (generic term)
+genus sphecius|1
+(noun)|Sphecius|genus Sphecius|arthropod genus (generic term)
+genus sphecotheres|1
+(noun)|Sphecotheres|genus Sphecotheres|bird genus (generic term)
+genus spheniscus|1
+(noun)|Spheniscus|genus Spheniscus|bird genus (generic term)
+genus sphenodon|1
+(noun)|Sphenodon|genus Sphenodon|reptile genus (generic term)
+genus sphyraena|1
+(noun)|Sphyraena|genus Sphyraena|fish genus (generic term)
+genus sphyrapicus|1
+(noun)|Sphyrapicus|genus Sphyrapicus|bird genus (generic term)
+genus sphyrna|1
+(noun)|Sphyrna|genus Sphyrna|fish genus (generic term)
+genus spilogale|1
+(noun)|Spilogale|genus Spilogale|mammal genus (generic term)
+genus spinacia|1
+(noun)|Spinacia|genus Spinacia|caryophylloid dicot genus (generic term)
+genus spinus|1
+(noun)|Spinus|genus Spinus|bird genus (generic term)
+genus spiraea|1
+(noun)|Spiraea|genus Spiraea|rosid dicot genus (generic term)
+genus spiranthes|1
+(noun)|Spiranthes|genus Spiranthes|monocot genus (generic term)|liliopsid genus (generic term)
+genus spirillum|1
+(noun)|genus Spirillum|bacteria genus (generic term)
+genus spirochaeta|1
+(noun)|Spirochaeta|genus Spirochaeta|bacteria genus (generic term)
+genus spirodela|1
+(noun)|Spirodela|genus Spirodela|monocot genus (generic term)|liliopsid genus (generic term)
+genus spirogyra|1
+(noun)|genus Spirogyra|protoctist genus (generic term)
+genus spirula|1
+(noun)|genus Spirula|mollusk genus (generic term)
+genus spizella|1
+(noun)|Spizella|genus Spizella|bird genus (generic term)
+genus spodoptera|1
+(noun)|Spodoptera|genus Spodoptera|arthropod genus (generic term)
+genus spondias|1
+(noun)|Spondias|genus Spondias|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus sporobolus|1
+(noun)|Sporobolus|genus Sporobolus|monocot genus (generic term)|liliopsid genus (generic term)
+genus spraguea|1
+(noun)|Spraguea|genus Spraguea|caryophylloid dicot genus (generic term)
+genus spyeria|1
+(noun)|Spyeria|genus Spyeria|arthropod genus (generic term)
+genus squalus|1
+(noun)|Squalus|genus Squalus|fish genus (generic term)
+genus squatina|1
+(noun)|Squatina|genus Squatina|fish genus (generic term)
+genus squilla|1
+(noun)|genus Squilla|arthropod genus (generic term)
+genus stachys|1
+(noun)|Stachys|genus Stachys|asterid dicot genus (generic term)
+genus stanhopea|1
+(noun)|genus Stanhopea|monocot genus (generic term)|liliopsid genus (generic term)
+genus stanleya|1
+(noun)|Stanleya|genus Stanleya|dilleniid dicot genus (generic term)
+genus stapelia|1
+(noun)|genus Stapelia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus staphylea|1
+(noun)|Staphylea|genus Staphylea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus staphylococcus|1
+(noun)|genus Staphylococcus|bacteria genus (generic term)
+genus staurikosaurus|1
+(noun)|genus Staurikosaurus|reptile genus (generic term)
+genus steatornis|1
+(noun)|Steatornis|genus Steatornis|bird genus (generic term)
+genus steganopus|1
+(noun)|Steganopus|genus Steganopus|bird genus (generic term)
+genus stegosaurus|1
+(noun)|genus Stegosaurus|reptile genus (generic term)
+genus stelis|1
+(noun)|genus Stelis|monocot genus (generic term)|liliopsid genus (generic term)
+genus stellaria|1
+(noun)|Stellaria|genus Stellaria|caryophylloid dicot family (generic term)
+genus stenocarpus|1
+(noun)|Stenocarpus|genus Stenocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus stenochlaena|1
+(noun)|Stenochlaena|genus Stenochlaena|fern genus (generic term)
+genus stenopelmatus|1
+(noun)|Stenopelmatus|genus Stenopelmatus|arthropod genus (generic term)
+genus stenopterygius|1
+(noun)|genus Stenopterygius|reptile genus (generic term)
+genus stenotaphrum|1
+(noun)|Stenotaphrum|genus Stenotaphrum|monocot genus (generic term)|liliopsid genus (generic term)
+genus stenotomus|1
+(noun)|Stenotomus|genus Stenotomus|fish genus (generic term)
+genus stenotus|1
+(noun)|Stenotus|genus Stenotus|asterid dicot genus (generic term)
+genus stentor|1
+(noun)|genus Stentor|protoctist genus (generic term)
+genus stephanomeria|1
+(noun)|Stephanomeria|genus Stephanomeria|dilleniid dicot genus (generic term)
+genus stephanotis|1
+(noun)|genus Stephanotis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus stercorarius|1
+(noun)|Stercorarius|genus Stercorarius|bird genus (generic term)
+genus sterculia|1
+(noun)|genus Sterculia|dilleniid dicot genus (generic term)
+genus sterna|1
+(noun)|Sterna|genus Sterna|bird genus (generic term)
+genus sternotherus|1
+(noun)|Sternotherus|genus Sternotherus|reptile genus (generic term)
+genus stevia|1
+(noun)|genus Stevia|asterid dicot genus (generic term)
+genus sticherus|1
+(noun)|Sticherus|genus Sticherus|fern genus (generic term)
+genus stictomys|1
+(noun)|Stictomys|genus Stictomys|mammal genus (generic term)
+genus stictopelia|1
+(noun)|Stictopelia|genus Stictopelia|bird genus (generic term)
+genus stizolobium|1
+(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus (generic term)
+genus stizostedion|1
+(noun)|Stizostedion|genus Stizostedion|fish genus (generic term)
+genus stokesia|1
+(noun)|Stokesia|genus Stokesia|asterid dicot genus (generic term)
+genus storeria|1
+(noun)|Storeria|genus Storeria|reptile genus (generic term)
+genus strekelia|1
+(noun)|Strekelia|genus Strekelia|liliid monocot genus (generic term)
+genus strelitzia|1
+(noun)|Strelitzia|genus Strelitzia|monocot genus (generic term)|liliopsid genus (generic term)
+genus strepera|1
+(noun)|Strepera|genus Strepera|bird genus (generic term)
+genus strepsiceros|1
+(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus (generic term)
+genus streptocarpus|1
+(noun)|genus Streptocarpus|asterid dicot genus (generic term)
+genus streptococcus|1
+(noun)|genus Streptococcus|bacteria genus (generic term)
+genus streptomyces|1
+(noun)|genus Streptomyces|bacteria genus (generic term)
+genus streptopelia|1
+(noun)|Streptopelia|genus Streptopelia|bird genus (generic term)
+genus streptosolen|1
+(noun)|Streptosolen|genus Streptosolen|asterid dicot genus (generic term)
+genus strix|1
+(noun)|Strix|genus Strix|bird genus (generic term)
+genus strobilomyces|1
+(noun)|Strobilomyces|genus Strobilomyces|fungus genus (generic term)
+genus strombus|1
+(noun)|Strombus|genus Strombus|mollusk genus (generic term)
+genus strongylodon|1
+(noun)|Strongylodon|genus Strongylodon|rosid dicot genus (generic term)
+genus strophanthus|1
+(noun)|genus Strophanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus stropharia|1
+(noun)|Stropharia|genus Stropharia|ring-stalked fungus|fungus genus (generic term)
+genus struthio|1
+(noun)|Struthio|genus Struthio|bird genus (generic term)
+genus struthiomimus|1
+(noun)|genus Struthiomimus|reptile genus (generic term)
+genus strymon|1
+(noun)|Strymon|genus Strymon|arthropod genus (generic term)
+genus sturnella|1
+(noun)|Sturnella|genus Sturnella|bird genus (generic term)
+genus sturnus|1
+(noun)|Sturnus|genus Sturnus|bird genus (generic term)
+genus stylomecon|1
+(noun)|Stylomecon|genus Stylomecon|dilleniid dicot genus (generic term)
+genus stylophorum|1
+(noun)|Stylophorum|genus Stylophorum|dilleniid dicot genus (generic term)
+genus styphelia|1
+(noun)|Styphelia|genus Styphelia|dilleniid dicot genus (generic term)
+genus styracosaurus|1
+(noun)|genus Styracosaurus|reptile genus (generic term)
+genus styrax|1
+(noun)|genus Styrax|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus subularia|1
+(noun)|Subularia|genus Subularia|dilleniid dicot genus (generic term)
+genus suillus|1
+(noun)|Suillus|genus Suillus|fungus genus (generic term)
+genus suksdorfia|1
+(noun)|genus Suksdorfia|rosid dicot genus (generic term)
+genus sula|1
+(noun)|Sula|genus Sula|bird genus (generic term)
+genus sundacarpus|1
+(noun)|Sundacarpus|genus Sundacarpus|gymnosperm genus (generic term)
+genus suricata|1
+(noun)|Suricata|genus Suricata|mammal genus (generic term)
+genus surnia|1
+(noun)|Surnia|genus Surnia|bird genus (generic term)
+genus sus|1
+(noun)|Sus|genus Sus|mammal genus (generic term)
+genus swainsona|1
+(noun)|Swainsona|genus Swainsona|rosid dicot genus (generic term)
+genus swertia|1
+(noun)|Swertia|genus Swertia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus swietinia|1
+(noun)|Swietinia|genus Swietinia|rosid dicot genus (generic term)
+genus sylvilagus|1
+(noun)|Sylvilagus|genus Sylvilagus|mammal genus (generic term)
+genus symphalangus|1
+(noun)|Symphalangus|genus Symphalangus|mammal genus (generic term)
+genus symphoricarpos|1
+(noun)|Symphoricarpos|genus Symphoricarpos|asterid dicot genus (generic term)
+genus symphytum|1
+(noun)|Symphytum|genus Symphytum|plant genus (generic term)
+genus symplocarpus|1
+(noun)|Symplocarpus|genus Symplocarpus|monocot genus (generic term)|liliopsid genus (generic term)
+genus symplocus|1
+(noun)|Symplocus|genus Symplocus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus synagrops|1
+(noun)|Synagrops|genus Synagrops|fish genus (generic term)
+genus synanceja|1
+(noun)|Synanceja|genus Synanceja|fish genus (generic term)
+genus synaptomys|1
+(noun)|Synaptomys|genus Synaptomys|mammal genus (generic term)
+genus synchytrium|1
+(noun)|Synchytrium|genus Synchytrium|fungus genus (generic term)
+genus synercus|1
+(noun)|Synercus|genus Synercus|tribe synercus|mammal genus (generic term)
+genus syngnathus|1
+(noun)|Syngnathus|genus Syngnathus|fish genus (generic term)
+genus syngonium|1
+(noun)|Syngonium|genus Syngonium|monocot genus (generic term)|liliopsid genus (generic term)
+genus syringa|1
+(noun)|Syringa|genus Syringa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus syrrhaptes|1
+(noun)|Syrrhaptes|genus Syrrhaptes|bird genus (generic term)
+genus syzygium|1
+(noun)|Syzygium|genus Syzygium|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus tabernaemontana|1
+(noun)|Tabernaemontana|genus Tabernaemontana|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus tacca|1
+(noun)|Tacca|genus Tacca|liliid monocot genus (generic term)
+genus tachyglossus|1
+(noun)|Tachyglossus|genus Tachyglossus|mammal genus (generic term)
+genus tachypleus|1
+(noun)|Tachypleus|genus Tachypleus|arthropod genus (generic term)
+genus tadarida|1
+(noun)|Tadarida|genus Tadarida|mammal genus (generic term)
+genus tadorna|1
+(noun)|Tadorna|genus Tadorna|bird genus (generic term)
+genus taenia|1
+(noun)|genus Taenia|worm genus (generic term)
+genus tagetes|1
+(noun)|Tageteste|genus Tagetes|asterid dicot genus (generic term)
+genus talinum|1
+(noun)|Talinum|genus Talinum|caryophylloid dicot genus (generic term)
+genus tamandua|1
+(noun)|genus Tamandua|mammal genus (generic term)
+genus tamarindus|1
+(noun)|Tamarindus|genus Tamarindus|rosid dicot genus (generic term)
+genus tamarix|1
+(noun)|Tamarix|genus Tamarix|dilleniid dicot genus (generic term)
+genus tamias|1
+(noun)|Tamias|genus Tamias|mammal genus (generic term)
+genus tamiasciurus|1
+(noun)|Tamiasciurus|genus Tamiasciurus|mammal genus (generic term)
+genus tamus|1
+(noun)|Tamus|genus Tamus|plant genus (generic term)
+genus tanacetum|1
+(noun)|Tanacetum|genus Tanacetum|asterid dicot genus (generic term)
+genus tantilla|1
+(noun)|Tantilla|genus Tantilla|reptile genus (generic term)
+genus tapirus|1
+(noun)|Tapirus|genus Tapirus|mammal genus (generic term)
+genus taraktagenos|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+genus taraktogenos|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+genus taraxacum|1
+(noun)|Taraxacum|genus Taraxacum|asterid dicot genus (generic term)
+genus taricha|1
+(noun)|Taricha|genus Taricha|amphibian genus (generic term)
+genus tarpon|1
+(noun)|genus Tarpon|fish genus (generic term)
+genus tarrietia|1
+(noun)|Tarrietia|genus Tarrietia|dilleniid dicot genus (generic term)
+genus tarsius|1
+(noun)|Tarsius|genus Tarsius|mammal genus (generic term)
+genus taurotragus|1
+(noun)|Taurotragus|genus Taurotragus|mammal genus (generic term)
+genus tautoga|1
+(noun)|Tautoga|genus Tautoga|fish genus (generic term)
+genus tautogolabrus|1
+(noun)|Tautogolabrus|genus Tautogolabrus|fish genus (generic term)
+genus taxidea|1
+(noun)|Taxidea|genus Taxidea|mammal genus (generic term)
+genus taxodium|1
+(noun)|Taxodium|genus Taxodium|gymnosperm genus (generic term)
+genus taxus|1
+(noun)|Taxus|genus Taxus|gymnosperm genus (generic term)
+genus tayassu|1
+(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus (generic term)
+genus tectaria|1
+(noun)|Tectaria|genus Tectaria|fern genus (generic term)
+genus tectona|1
+(noun)|Tectona|genus Tectona|asterid dicot genus (generic term)
+genus telanthera|1
+(noun)|Telanthera|genus Telanthera|caryophylloid dicot genus (generic term)
+genus tellima|1
+(noun)|Tellima|genus Tellima|rosid dicot genus (generic term)
+genus telopea|1
+(noun)|Telopea|genus Telopea|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus templetonia|1
+(noun)|Templetonia|genus Templetonia|rosid dicot genus (generic term)
+genus tenrec|1
+(noun)|genus Tenrec|mammal genus (generic term)
+genus tephrosia|1
+(noun)|Tephrosia|genus Tephrosia|rosid dicot genus (generic term)
+genus terebella|1
+(noun)|Terebella|genus Terebella|worm genus (generic term)
+genus teredo|1
+(noun)|genus Teredo|mollusk genus (generic term)
+genus termes|1
+(noun)|Termes|genus Termes|arthropod genus (generic term)
+genus terrapene|1
+(noun)|Terrapene|genus Terrapene|reptile genus (generic term)
+genus terrietia|1
+(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus (generic term)
+genus testudo|1
+(noun)|Testudo|genus Testudo|reptile genus (generic term)
+genus tethus|1
+(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus (generic term)
+genus tetraclinis|1
+(noun)|Tetraclinis|genus Tetraclinis|gymnosperm genus (generic term)
+genus tetragonia|1
+(noun)|Tetragonia|genus Tetragonia|caryophylloid dicot genus (generic term)
+genus tetragonurus|1
+(noun)|Tetragonurus|genus Tetragonurus|fish genus (generic term)
+genus tetrahymena|1
+(noun)|genus Tetrahymena|protoctist genus (generic term)
+genus tetraneuris|1
+(noun)|Tetraneuris|genus Tetraneuris|asterid dicot genus (generic term)
+genus tetrao|1
+(noun)|Tetrao|genus Tetrao|bird genus (generic term)
+genus tetrapturus|1
+(noun)|Tetrapturus|genus Tetrapturus|fish genus (generic term)
+genus teucrium|1
+(noun)|Teucrium|genus Teucrium|asterid dicot genus (generic term)
+genus thalarctos|1
+(noun)|Thalarctos|genus Thalarctos|mammal genus (generic term)
+genus thalassoma|1
+(noun)|Thalassoma|genus Thalassoma|fish genus (generic term)
+genus thalictrum|1
+(noun)|Thalictrum|genus Thalictrum|magnoliid dicot genus (generic term)
+genus thamnophilus|1
+(noun)|Thamnophilus|genus Thamnophilus|bird genus (generic term)
+genus thamnophis|1
+(noun)|Thamnophis|genus Thamnophis|reptile genus (generic term)
+genus thelypteris|1
+(noun)|Thelypteris|genus Thelypteris|fern genus (generic term)
+genus theobroma|1
+(noun)|Theobroma|genus Theobroma|dilleniid dicot genus (generic term)
+genus thermobia|1
+(noun)|Thermobia|genus Thermobia|arthropod genus (generic term)
+genus thermopsis|1
+(noun)|Thermopsis|genus Thermopsis|rosid dicot genus (generic term)
+genus thespesia|1
+(noun)|Thespesia|genus Thespesia|dilleniid dicot genus (generic term)
+genus thevetia|1
+(noun)|Thevetia|genus Thevetia|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus thielavia|1
+(noun)|Thielavia|genus Thielavia|fungus genus (generic term)
+genus thiobacillus|1
+(noun)|genus Thiobacillus|bacteria genus (generic term)
+genus thlaspi|1
+(noun)|Thlaspi|genus Thlaspi|dilleniid dicot genus (generic term)
+genus thomomys|1
+(noun)|Thomomys|genus Thomomys|mammal genus (generic term)
+genus threskiornis|1
+(noun)|Threskiornis|genus Threskiornis|bird genus (generic term)
+genus thrinax|1
+(noun)|Thrinax|genus Thrinax|monocot genus (generic term)|liliopsid genus (generic term)
+genus thrips|1
+(noun)|genus Thrips|arthropod genus (generic term)
+genus thryothorus|1
+(noun)|Thryothorus|genus Thryothorus|bird genus (generic term)
+genus thuja|1
+(noun)|Thuja|genus Thuja|gymnosperm genus (generic term)
+genus thujopsis|1
+(noun)|Thujopsis|genus Thujopsis|gymnosperm genus (generic term)
+genus thunbergia|1
+(noun)|Thunbergia|genus Thunbergia|asterid dicot genus (generic term)
+genus thunnus|1
+(noun)|Thunnus|genus Thunnus|fish genus (generic term)
+genus thylacinus|1
+(noun)|Thylacinus|genus Thylacinus|mammal genus (generic term)
+genus thylogale|1
+(noun)|Thylogale|genus Thylogale|mammal genus (generic term)
+genus thymus|1
+(noun)|Thymus|genus Thymus|asterid dicot genus (generic term)
+genus thyrsopteris|1
+(noun)|genus Thyrsopteris|fern genus (generic term)
+genus thysanocarpus|1
+(noun)|Thysanocarpus|genus Thysanocarpus|dilleniid dicot genus (generic term)
+genus tiarella|1
+(noun)|Tiarella|genus Tiarella|rosid dicot genus (generic term)
+genus tibicen|1
+(noun)|Tibicen|genus Tibicen|arthropod genus (generic term)
+genus tichodroma|1
+(noun)|Tichodroma|genus Tichodroma|bird genus (generic term)
+genus tilapia|1
+(noun)|Tilapia|genus Tilapia|fish genus (generic term)
+genus tilia|1
+(noun)|Tilia|genus Tilia|dilleniid dicot genus (generic term)
+genus tillandsia|1
+(noun)|Tillandsia|genus Tillandsia|monocot genus (generic term)|liliopsid genus (generic term)
+genus tilletia|1
+(noun)|Tilletia|genus Tilletia|fungus genus (generic term)
+genus timalia|1
+(noun)|Timalia|genus Timalia|bird genus (generic term)
+genus tinca|1
+(noun)|Tinca|genus Tinca|fish genus (generic term)
+genus tinea|1
+(noun)|Tinea|genus Tinea|arthropod genus (generic term)
+genus tineola|1
+(noun)|Tineola|genus Tineola|arthropod genus (generic term)
+genus tipuana|1
+(noun)|Tipuana|genus Tipuana|rosid dicot genus (generic term)
+genus titanosaurus|1
+(noun)|Titanosaurus|genus Titanosaurus|reptile genus (generic term)
+genus tithonia|1
+(noun)|genus Tithonia|asterid dicot genus (generic term)
+genus todea|1
+(noun)|Todea|genus Todea|fern genus (generic term)
+genus todus|1
+(noun)|Todus|genus Todus|bird genus (generic term)
+genus tofieldia|1
+(noun)|Tofieldia|genus Tofieldia|liliid monocot genus (generic term)
+genus tolmiea|1
+(noun)|Tolmiea|genus Tolmiea|rosid dicot genus (generic term)
+genus tolypeutes|1
+(noun)|Tolypeutes|genus Tolypeutes|mammal genus (generic term)
+genus tomistoma|1
+(noun)|Tomistoma|genus Tomistoma|reptile genus (generic term)
+genus toona|1
+(noun)|Toona|genus Toona|rosid dicot genus (generic term)
+genus torreya|1
+(noun)|Torreya|genus Torreya|gymnosperm genus (generic term)
+genus tortrix|1
+(noun)|genus Tortrix|arthropod genus (generic term)
+genus townsendia|1
+(noun)|Townsendia|genus Townsendia|asterid dicot genus (generic term)
+genus toxicodendron|1
+(noun)|Toxicodendron|genus Toxicodendron|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus toxostoma|1
+(noun)|Toxostoma|genus Toxostoma|bird genus (generic term)
+genus toxotes|1
+(noun)|Toxotes|genus Toxotes|fish genus (generic term)
+genus trachelospermum|1
+(noun)|Trachelospermum|genus Trachelospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus trachinotus|1
+(noun)|Trachinotus|genus Trachinotus|fish genus (generic term)
+genus trachipterus|1
+(noun)|Trachipterus|genus Trachipterus|fish genus (generic term)
+genus trachodon|1
+(noun)|genus Trachodon|reptile genus (generic term)
+genus trachurus|1
+(noun)|Trachurus|genus Trachurus|fish genus (generic term)
+genus tradescantia|1
+(noun)|Tradescantia|genus Tradescantia|monocot genus (generic term)|liliopsid genus (generic term)
+genus tragelaphus|1
+(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus (generic term)
+genus tragopan|1
+(noun)|genus Tragopan|bird genus (generic term)
+genus tragopogon|1
+(noun)|Tragopogon|genus Tragopogon|asterid dicot genus (generic term)
+genus tragulus|1
+(noun)|Tragulus|genus Tragulus|mammal genus (generic term)
+genus trapa|1
+(noun)|Trapa|genus Trapa|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus trautvetteria|1
+(noun)|Trautvetteria|genus Trautvetteria|magnoliid dicot genus (generic term)
+genus trema|1
+(noun)|Trema|genus Trema|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus tremella|1
+(noun)|Tremella|genus Tremella|fungus genus (generic term)
+genus treponema|1
+(noun)|genus Treponema|bacteria genus (generic term)
+genus triaenodon|1
+(noun)|Triaenodon|genus Triaenodon|fish genus (generic term)
+genus trialeurodes|1
+(noun)|Trialeurodes|genus Trialeurodes|arthropod genus (generic term)
+genus triatoma|1
+(noun)|Triatoma|genus Triatoma|arthropod genus (generic term)
+genus tribolium|1
+(noun)|Tribolium|genus Tribolium|arthropod genus (generic term)
+genus tribonema|1
+(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus (generic term)
+genus tribulus|1
+(noun)|Tribulus|genus Tribulus|rosid dicot genus (generic term)
+genus triceratops|1
+(noun)|genus Triceratops|reptile genus (generic term)
+genus trichecus|1
+(noun)|Trichechus|genus Trichecus|mammal genus (generic term)
+genus trichoceros|1
+(noun)|Trichoceros|genus Trichoceros|monocot genus (generic term)|liliopsid genus (generic term)
+genus trichodesmium|1
+(noun)|genus Trichodesmium|bacteria genus (generic term)
+genus trichoglossus|1
+(noun)|Trichoglossus|genus Trichoglossus|bird genus (generic term)
+genus tricholoma|1
+(noun)|Tricholoma|genus Tricholoma|fungus genus (generic term)
+genus trichomanes|1
+(noun)|Trichomanes|genus Trichomanes|fern genus (generic term)
+genus trichomonas|1
+(noun)|genus Trichomonas|protoctist genus (generic term)
+genus trichophaga|1
+(noun)|Trichophaga|genus Trichophaga|arthropod genus (generic term)
+genus trichophyton|1
+(noun)|Trichophyton|genus Trichophyton|fungus genus (generic term)
+genus trichostema|1
+(noun)|Trichostema|genus Trichostema|asterid dicot genus (generic term)
+genus trichostigma|1
+(noun)|Trichostigma|genus Trichostigma|caryophylloid dicot genus (generic term)
+genus trichosurus|1
+(noun)|Trichosurus|genus Trichosurus|mammal genus (generic term)
+genus trichys|1
+(noun)|Trichys|genus Trichys|mammal genus (generic term)
+genus tridacna|1
+(noun)|Tridacna|genus Tridacna|mollusk genus (generic term)
+genus trifolium|1
+(noun)|Trifolium|genus Trifolium|rosid dicot genus (generic term)
+genus triga|1
+(noun)|Triga|genus Triga|fish genus (generic term)
+genus triglochin|1
+(noun)|Triglochin|genus Triglochin|monocot genus (generic term)|liliopsid genus (generic term)
+genus trigonella|1
+(noun)|Trigonella|genus Trigonella|rosid dicot genus (generic term)
+genus trilisa|1
+(noun)|Trilisa|genus Trilisa|asterid dicot genus (generic term)
+genus trillium|1
+(noun)|genus Trillium|liliid monocot genus (generic term)
+genus trimorphodon|1
+(noun)|Trimorphodon|genus Trimorphodon|reptile genus (generic term)
+genus trinectes|1
+(noun)|Trinectes|genus Trinectes|fish genus (generic term)
+genus tringa|1
+(noun)|Tringa|genus Tringa|bird genus (generic term)
+genus trionyx|1
+(noun)|Trionyx|genus Trionyx|reptile genus (generic term)
+genus triops|1
+(noun)|Triops|genus Triops|arthropod genus (generic term)
+genus triostium|1
+(noun)|Triostium|genus Triostium|asterid dicot genus (generic term)
+genus tripleurospermum|1
+(noun)|Tripleurospermum|genus Tripleurospermum|asterid dicot genus (generic term)
+genus triplochiton|1
+(noun)|Triplochiton|genus Triplochiton|dilleniid dicot genus (generic term)
+genus triticum|1
+(noun)|Triticum|genus Triticum|monocot genus (generic term)|liliopsid genus (generic term)
+genus triturus|1
+(noun)|Triturus|genus Triturus|amphibian genus (generic term)
+genus trogium|1
+(noun)|Trogium|genus Trogium|arthropod genus (generic term)
+genus troglodytes|1
+(noun)|Troglodytes|genus Troglodytes|bird genus (generic term)
+genus trogon|1
+(noun)|genus Trogon|bird genus (generic term)
+genus trollius|1
+(noun)|Trollius|genus Trollius|magnoliid dicot genus (generic term)
+genus trombicula|1
+(noun)|Trombicula|genus Trombicula|arthropod genus (generic term)
+genus tropaeolum|1
+(noun)|Tropaeolum|genus Tropaeolum|rosid dicot genus (generic term)
+genus tropidoclonion|1
+(noun)|Tropidoclonion|genus Tropidoclonion|reptile genus (generic term)
+genus truncocolumella|1
+(noun)|Truncocolumella|genus Truncocolumella|fungus genus (generic term)
+genus tsuga|1
+(noun)|Tsuga|genus Tsuga|gymnosperm genus (generic term)
+genus tuber|1
+(noun)|Tuber|genus Tuber|fungus genus (generic term)
+genus tubercularia|1
+(noun)|Tubercularia|genus Tubercularia|fungus genus (generic term)
+genus tulestoma|1
+(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus (generic term)
+genus tulipa|1
+(noun)|Tulipa|genus Tulipa|liliid monocot genus (generic term)
+genus tulostoma|1
+(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus (generic term)
+genus tunga|1
+(noun)|Tunga|genus Tunga|arthropod genus (generic term)
+genus tupaia|1
+(noun)|Tupaia|genus Tupaia|mammal genus (generic term)
+genus tupinambis|1
+(noun)|Tupinambis|genus Tupinambis|reptile genus (generic term)
+genus turbatrix|1
+(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus (generic term)
+genus turdus|1
+(noun)|Turdus|genus Turdus|bird genus (generic term)
+genus turnix|1
+(noun)|Turnix|genus Turnix|bird genus (generic term)
+genus turreae|1
+(noun)|genus Turreae|rosid dicot genus (generic term)
+genus turritis|1
+(noun)|Turritis|genus Turritis|dilleniid dicot genus (generic term)
+genus tursiops|1
+(noun)|Tursiops|genus Tursiops|mammal genus (generic term)
+genus tussilago|1
+(noun)|Tussilago|genus Tussilago|asterid dicot genus (generic term)
+genus tylenchus|1
+(noun)|Tylenchus|genus Tylenchus|worm genus (generic term)
+genus tympanuchus|1
+(noun)|Tympanuchus|genus Tympanuchus|bird genus (generic term)
+genus typha|1
+(noun)|Typha|genus Typha|monocot genus (generic term)|liliopsid genus (generic term)
+genus tyrannosaurus|1
+(noun)|genus Tyrannosaurus|reptile genus (generic term)
+genus tyrannus|1
+(noun)|Tyrannus|genus Tyrannus|bird genus (generic term)
+genus tyto|1
+(noun)|Tyto|genus Tyto|bird genus (generic term)
+genus uca|1
+(noun)|Uca|genus Uca|arthropod genus (generic term)
+genus uintatherium|1
+(noun)|Uintatherium|genus Uintatherium|mammal genus (generic term)
+genus ulex|1
+(noun)|Ulex|genus Ulex|rosid dicot genus (generic term)
+genus ulmus|1
+(noun)|Ulmus|genus Ulmus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus ulva|1
+(noun)|Ulva|genus Ulva|protoctist genus (generic term)
+genus uma|1
+(noun)|Uma|genus Uma|reptile genus (generic term)
+genus umbellularia|1
+(noun)|Umbellularia|genus Umbellularia|magnoliid dicot genus (generic term)
+genus umbrina|1
+(noun)|Umbrina|genus Umbrina|fish genus (generic term)
+genus unio|1
+(noun)|Unio|genus Unio|mollusk genus (generic term)
+genus upupa|1
+(noun)|Upupa|genus Upupa|bird genus (generic term)
+genus urginea|1
+(noun)|Urginea|genus Urginea|liliid monocot genus (generic term)
+genus uria|1
+(noun)|Uria|genus Uria|bird genus (generic term)
+genus urocyon|1
+(noun)|Urocyon|genus Urocyon|mammal genus (generic term)
+genus urocystis|1
+(noun)|Urocystis|genus Urocystis|fungus genus (generic term)
+genus urophycis|1
+(noun)|Urophycis|genus Urophycis|fish genus (generic term)
+genus uropsilus|1
+(noun)|Uropsilus|genus Uropsilus|mammal genus (generic term)
+genus urosaurus|1
+(noun)|Urosaurus|genus Urosaurus|reptile genus (generic term)
+genus ursinia|1
+(noun)|genus Ursinia|asterid dicot genus (generic term)
+genus ursus|1
+(noun)|Ursus|genus Ursus|mammal genus (generic term)
+genus urtica|1
+(noun)|Urtica|genus Urtica|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus usnea|1
+(noun)|Usnea|genus Usnea|fungus genus (generic term)
+genus ustilaginoidea|1
+(noun)|Ustilaginoidea|genus Ustilaginoidea|fungus genus (generic term)
+genus ustilago|1
+(noun)|Ustilago|genus Ustilago|fungus genus (generic term)
+genus uta|1
+(noun)|Uta|genus Uta|reptile genus (generic term)
+genus utahraptor|1
+(noun)|genus Utahraptor|reptile genus (generic term)
+genus utricularia|1
+(noun)|Utricularia|genus Utricularia|plant genus (generic term)
+genus uvularia|1
+(noun)|Uvularia|genus Uvularia|liliid monocot genus (generic term)
+genus vaccaria|1
+(noun)|Vaccaria|genus Vaccaria|caryophylloid dicot genus (generic term)
+genus vaccinium|1
+(noun)|Vaccinium|genus Vaccinium|dilleniid dicot genus (generic term)
+genus valeriana|1
+(noun)|Valeriana|genus Valeriana|asterid dicot genus (generic term)
+genus valerianella|1
+(noun)|Valerianella|genus Valerianella|asterid dicot genus (generic term)
+genus vallisneria|1
+(noun)|Vallisneria|genus Vallisneria|monocot genus (generic term)|liliopsid genus (generic term)
+genus vanda|1
+(noun)|genus Vanda|monocot genus (generic term)|liliopsid genus (generic term)
+genus vanellus|1
+(noun)|Vanellus|genus Vanellus|bird genus (generic term)
+genus vanessa|1
+(noun)|Vanessa|genus Vanessa|arthropod genus (generic term)
+genus vangueria|1
+(noun)|Vangueria|genus Vangueria|asterid dicot genus (generic term)
+genus vanilla|1
+(noun)|genus Vanilla|monocot genus (generic term)|liliopsid genus (generic term)
+genus varanus|1
+(noun)|Varanus|genus Varanus|reptile genus (generic term)
+genus vedalia|1
+(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus (generic term)
+genus velociraptor|1
+(noun)|genus Velociraptor|reptile genus (generic term)
+genus venus|1
+(noun)|Venus|genus Venus|mollusk genus (generic term)
+genus veratrum|1
+(noun)|Veratrum|genus Veratrum|liliid monocot genus (generic term)
+genus verbascum|1
+(noun)|Verbascum|genus Verbascum|asterid dicot genus (generic term)
+genus verbena|1
+(noun)|genus Verbena|asterid dicot genus (generic term)
+genus verbesina|1
+(noun)|Verbesina|genus Verbesina|asterid dicot genus (generic term)
+genus vernonia|1
+(noun)|genus Vernonia|asterid dicot genus (generic term)
+genus veronica|1
+(noun)|genus Veronica|asterid dicot genus (generic term)
+genus verticillium|1
+(noun)|genus Verticillium|fungus genus (generic term)
+genus vesicaria|1
+(noun)|Vesicaria|genus Vesicaria|dilleniid dicot genus (generic term)
+genus vespa|1
+(noun)|Vespa|genus Vespa|arthropod genus (generic term)
+genus vespertilio|1
+(noun)|Vespertilio|genus Vespertilio|mammal genus (generic term)
+genus vespula|1
+(noun)|Vespula|genus Vespula|arthropod genus (generic term)
+genus vibrio|1
+(noun)|genus Vibrio|bacteria genus (generic term)
+genus viburnum|1
+(noun)|Viburnum|genus Viburnum|asterid dicot genus (generic term)
+genus vicia|1
+(noun)|Vicia|genus Vicia|rosid dicot genus (generic term)
+genus vicugna|1
+(noun)|Vicugna|genus Vicugna|mammal genus (generic term)
+genus vidua|1
+(noun)|Vidua|genus Vidua|bird genus (generic term)
+genus vigna|1
+(noun)|Vigna|genus Vigna|rosid dicot genus (generic term)
+genus viminaria|1
+(noun)|Viminaria|genus Viminaria|rosid dicot genus (generic term)
+genus vinca|1
+(noun)|Vinca|genus Vinca|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus vincetoxicum|1
+(noun)|Vincetoxicum|genus Vincetoxicum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus viola|1
+(noun)|Viola|genus Viola|dilleniid dicot genus (generic term)
+genus vipera|1
+(noun)|Vipera|genus Vipera|reptile genus (generic term)
+genus vireo|1
+(noun)|genus Vireo|bird genus (generic term)
+genus virgilia|1
+(noun)|Virgilia|genus Virgilia|rosid dicot genus (generic term)
+genus viscum|1
+(noun)|Viscum|genus Viscum|dilleniid dicot genus (generic term)
+genus vitis|1
+(noun)|Vitis|genus Vitis|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus vittaria|1
+(noun)|Vittaria|genus Vittaria|fern genus (generic term)
+genus viverra|1
+(noun)|Viverra|genus Viverra|mammal genus (generic term)
+genus viverricula|1
+(noun)|Viverricula|genus Viverricula|mammal genus (generic term)
+genus volvaria|1
+(noun)|Volvaria|genus Volvaria|fungus genus (generic term)
+genus volvariella|1
+(noun)|Volvariella|genus Volvariella|fungus genus (generic term)
+genus volvox|1
+(noun)|Volvox|genus Volvox|protoctist genus (generic term)
+genus vorticella|1
+(noun)|genus Vorticella|protoctist genus (generic term)
+genus vulpes|1
+(noun)|Vulpes|genus Vulpes|mammal genus (generic term)
+genus vultur|1
+(noun)|Vultur|genus Vultur|bird genus (generic term)
+genus weigela|1
+(noun)|genus Weigela|asterid dicot genus (generic term)
+genus welwitchia|1
+(noun)|genus Welwitschia|genus Welwitchia|gymnosperm genus (generic term)
+genus welwitschia|1
+(noun)|genus Welwitschia|genus Welwitchia|gymnosperm genus (generic term)
+genus wintera|1
+(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus (generic term)
+genus wisteria|1
+(noun)|genus Wisteria|rosid dicot genus (generic term)
+genus wolffia|1
+(noun)|Wolffia|genus Wolffia|monocot genus (generic term)|liliopsid genus (generic term)
+genus wolffiella|1
+(noun)|Wolffiella|genus Wolffiella|monocot genus (generic term)|liliopsid genus (generic term)
+genus woodsia|1
+(noun)|genus Woodsia|fern genus (generic term)
+genus woodwardia|1
+(noun)|Woodwardia|genus Woodwardia|fern genus (generic term)
+genus wyethia|1
+(noun)|genus Wyethia|asterid dicot genus (generic term)
+genus wynnea|1
+(noun)|Wynnea|genus Wynnea|fungus genus (generic term)
+genus xanthium|1
+(noun)|Xanthium|genus Xanthium|asterid dicot genus (generic term)
+genus xanthomonas|1
+(noun)|Xanthomonas|genus Xanthomonas|bacteria genus (generic term)
+genus xanthorroea|1
+(noun)|Xanthorroea|genus Xanthorroea|liliid monocot genus (generic term)
+genus xanthosoma|1
+(noun)|Xanthosoma|genus Xanthosoma|monocot genus (generic term)|liliopsid genus (generic term)
+genus xenicus|1
+(noun)|Xenicus|genus Xenicus|bird genus (generic term)
+genus xenopus|1
+(noun)|Xenopus|genus Xenopus|amphibian genus (generic term)
+genus xenorhyncus|1
+(noun)|Xenorhyncus|genus Xenorhyncus|bird genus (generic term)
+genus xenosaurus|1
+(noun)|Xenosaurus|genus Xenosaurus|reptile genus (generic term)
+genus xeranthemum|1
+(noun)|genus Xeranthemum|asterid dicot genus (generic term)
+genus xerobates|1
+(noun)|Xerobates|genus Xerobates|reptile genus (generic term)
+genus xerophyllum|1
+(noun)|Xerophyllum|genus Xerophyllum|liliid monocot genus (generic term)
+genus xiphias|1
+(noun)|Xiphias|genus Xiphias|fish genus (generic term)
+genus xylaria|1
+(noun)|Xylaria|genus Xylaria|fungus genus (generic term)
+genus xylocopa|1
+(noun)|Xylocopa|genus Xylocopa|arthropod genus (generic term)
+genus xylomelum|1
+(noun)|Xylomelum|genus Xylomelum|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus xylopia|1
+(noun)|Xylopia|genus Xylopia|magnoliid dicot genus (generic term)
+genus xylosma|1
+(noun)|genus Xylosma|dilleniid dicot genus (generic term)
+genus xyphophorus|1
+(noun)|Xyphophorus|genus Xyphophorus|fish genus (generic term)
+genus xyris|1
+(noun)|Xyris|genus Xyris|monocot genus (generic term)|liliopsid genus (generic term)
+genus yucca|1
+(noun)|genus Yucca|liliid monocot genus (generic term)
+genus zaglossus|1
+(noun)|Zaglossus|genus Zaglossus|mammal genus (generic term)
+genus zalophus|1
+(noun)|Zalophus|genus Zalophus|mammal genus (generic term)
+genus zamia|1
+(noun)|genus Zamia|gymnosperm genus (generic term)
+genus zannichellia|1
+(noun)|Zannichellia|genus Zannichellia|monocot genus (generic term)|liliopsid genus (generic term)
+genus zantedeschia|1
+(noun)|Zantedeschia|genus Zantedeschia|monocot genus (generic term)|liliopsid genus (generic term)
+genus zanthoxylum|1
+(noun)|Zanthoxylum|genus Zanthoxylum|rosid dicot genus (generic term)
+genus zapus|1
+(noun)|Zapus|genus Zapus|mammal genus (generic term)
+genus zea|1
+(noun)|Zea|genus Zea|monocot genus (generic term)|liliopsid genus (generic term)
+genus zenaidura|1
+(noun)|Zenaidura|genus Zenaidura|bird genus (generic term)
+genus zerumbet|1
+(noun)|Alpinia|genus Alpinia|genus Zerumbet|genus Languas|plant genus (generic term)
+genus zeus|1
+(noun)|Zeus|genus Zeus|fish genus (generic term)
+genus zigadenus|1
+(noun)|Zigadenus|genus Zigadenus|liliid monocot genus (generic term)
+genus zingiber|1
+(noun)|Zingiber|genus Zingiber|monocot genus (generic term)|liliopsid genus (generic term)
+genus zinjanthropus|1
+(noun)|Zinjanthropus|genus Zinjanthropus|australopithecine (generic term)
+genus zinnia|1
+(noun)|genus Zinnia|asterid dicot genus (generic term)
+genus zizania|1
+(noun)|Zizania|genus Zizania|monocot genus (generic term)|liliopsid genus (generic term)
+genus ziziphus|1
+(noun)|Ziziphus|genus Ziziphus|dicot genus (generic term)|magnoliopsid genus (generic term)
+genus zoarces|1
+(noun)|Zoarces|genus Zoarces|fish genus (generic term)
+genus zoisia|1
+(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus (generic term)|liliopsid genus (generic term)
+genus zonotrichia|1
+(noun)|Zonotrichia|genus Zonotrichia|bird genus (generic term)
+genus zostera|1
+(noun)|Zostera|genus Zostera|monocot genus (generic term)|liliopsid genus (generic term)
+genus zoysia|1
+(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus (generic term)|liliopsid genus (generic term)
+genus zygnema|1
+(noun)|Zygnema|genus Zygnema|protoctist genus (generic term)
+genus zygocactus|1
+(noun)|Zygocactus|genus Zygocactus|caryophylloid dicot genus (generic term)
+genus zygophyllum|1
+(noun)|Zygophyllum|genus Zygophyllum|rosid dicot genus (generic term)
+genyonemus|1
+(noun)|Genyonemus|genus Genyonemus|fish genus (generic term)
+genyonemus lineatus|1
+(noun)|white croaker|chenfish|kingfish|Genyonemus lineatus|croaker (generic term)
+geocentric|1
+(adj)|Ptolemaic (similar term)|heliocentric (antonym)
+geocentric parallax|1
+(noun)|diurnal parallax|parallax (generic term)
+geochelone|1
+(noun)|Geochelone|genus Geochelone|reptile genus (generic term)
+geochemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+geococcyx|1
+(noun)|Geococcyx|genus Geococcyx|bird genus (generic term)
+geococcyx californianus|1
+(noun)|roadrunner|chaparral cock|Geococcyx californianus|cuckoo (generic term)
+geode|1
+(noun)|nodule (generic term)
+geodesic|3
+(adj)|dome (related term)
+(adj)|geodetic|geodesical|geophysics|geophysical science (related term)
+(noun)|geodesic line|line (generic term)
+geodesic dome|1
+(noun)|dome (generic term)
+geodesic line|1
+(noun)|geodesic|line (generic term)
+geodesical|1
+(adj)|geodetic|geodesic|geophysics|geophysical science (related term)
+geodesy|1
+(noun)|geophysics (generic term)|geophysical science (generic term)
+geodetic|1
+(adj)|geodesic|geodesical|geophysics|geophysical science (related term)
+geoduck|1
+(noun)|clam (generic term)
+geoffrey chaucer|1
+(noun)|Chaucer|Geoffrey Chaucer|poet (generic term)
+geoffrey of monmouth|1
+(noun)|Geoffrey of Monmouth|chronicler (generic term)
+geoffroea|1
+(noun)|Geoffroea|genus Geoffroea|rosid dicot genus (generic term)
+geoffroea decorticans|1
+(noun)|chanar|chanal|Geoffroea decorticans|shrub (generic term)|bush (generic term)
+geogia holly|1
+(noun)|Geogia holly|holly (generic term)
+geoglossaceae|1
+(noun)|Geoglossaceae|family Geoglossaceae|fungus family (generic term)
+geoglossum|1
+(noun)|Geoglossum|genus Geoglossum|fungus genus (generic term)
+geographer|1
+(noun)|expert (generic term)
+geographic|2
+(adj)|geographical|earth science (related term)
+(adj)|geographical|true (similar term)|magnetic (antonym)
+geographic area|1
+(noun)|geographical area|geographical region|geographic region|region (generic term)
+geographic expedition|1
+(noun)|exploration|expedition (generic term)
+geographic point|1
+(noun)|geographical point|point (generic term)
+geographic region|1
+(noun)|geographical area|geographic area|geographical region|region (generic term)
+geographical|2
+(adj)|geographic|earth science (related term)
+(adj)|geographic|true (similar term)|magnetic (antonym)
+geographical area|1
+(noun)|geographic area|geographical region|geographic region|region (generic term)
+geographical mile|1
+(noun)|nautical mile|naut mi|mile|mi|Admiralty mile|nautical linear unit (generic term)
+geographical point|1
+(noun)|geographic point|point (generic term)
+geographical region|1
+(noun)|geographical area|geographic area|geographic region|region (generic term)
+geographical zone|1
+(noun)|zone|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+geographics|1
+(noun)|geography|earth science (generic term)
+geography|1
+(noun)|geographics|earth science (generic term)
+geologic|1
+(adj)|geological|earth science (related term)
+geologic process|1
+(noun)|geological process|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+geologic time|1
+(noun)|geological time|time (generic term)
+geological|1
+(adj)|geologic|earth science (related term)
+geological dating|1
+(noun)|dating|chemical analysis (generic term)|qualitative analysis (generic term)
+geological era|1
+(noun)|era|geological time (generic term)|geologic time (generic term)
+geological fault|1
+(noun)|fault|faulting|shift|fracture|break|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+geological formation|1
+(noun)|formation|object (generic term)|physical object (generic term)
+geological horizon|1
+(noun)|horizon (generic term)
+geological period|1
+(noun)|period|geological time (generic term)|geologic time (generic term)
+geological phenomenon|1
+(noun)|natural phenomenon (generic term)
+geological process|1
+(noun)|geologic process|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+geological time|1
+(noun)|geologic time|time (generic term)
+geologist|1
+(noun)|scientist (generic term)|man of science (generic term)
+geology|1
+(noun)|earth science (generic term)
+geomancer|1
+(noun)|diviner (generic term)
+geomancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+geometer|1
+(noun)|geometrician|mathematician (generic term)
+geometric|2
+(adj)|geometrical|nonrepresentational (similar term)
+(adj)|geometrical|pure mathematics (related term)
+geometric mean|1
+(noun)|mean (generic term)|mean value (generic term)
+geometric pace|1
+(noun)|linear unit (generic term)
+geometric progression|1
+(noun)|progression (generic term)|patterned advance (generic term)
+geometric series|1
+(noun)|series (generic term)
+geometrical|2
+(adj)|geometric|pure mathematics (related term)
+(adj)|geometric|nonrepresentational (similar term)
+geometrical irregularity|1
+(noun)|irregularity|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+geometrical regularity|1
+(noun)|regularity|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)
+geometrically|1
+(adv)|linearly (antonym)
+geometrician|1
+(noun)|geometer|mathematician (generic term)
+geometrid|1
+(noun)|geometrid moth|moth (generic term)
+geometrid moth|1
+(noun)|geometrid|moth (generic term)
+geometridae|1
+(noun)|Geometridae|family Geometridae|arthropod family (generic term)
+geometry|1
+(noun)|pure mathematics (generic term)
+geometry teacher|1
+(noun)|math teacher (generic term)|mathematics teacher (generic term)
+geomorphologic|1
+(adj)|geomorphological|morphologic|morphological|structural|geophysics|geophysical science (related term)
+geomorphological|1
+(adj)|geomorphologic|morphologic|morphological|structural|geophysics|geophysical science (related term)
+geomorphology|1
+(noun)|morphology|geophysics (generic term)|geophysical science (generic term)
+geomyidae|1
+(noun)|Geomyidae|family Geomyidae|mammal family (generic term)
+geomys|1
+(noun)|Geomys|genus Geomys|mammal genus (generic term)
+geomys bursarius|1
+(noun)|plains pocket gopher|Geomys bursarius|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+geomys pinetis|1
+(noun)|southeastern pocket gopher|Geomys pinetis|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+geophagia|1
+(noun)|geophagy|pica|eating (generic term)|feeding (generic term)
+geophagy|1
+(noun)|geophagia|pica|eating (generic term)|feeding (generic term)
+geophilidae|1
+(noun)|Geophilidae|family Geophilidae|arthropod family (generic term)
+geophilomorpha|1
+(noun)|Geophilomorpha|order Geophilomorpha|animal order (generic term)
+geophilus|1
+(noun)|Geophilus|genus Geophilus|arthropod genus (generic term)
+geophysical|1
+(adj)|geology (related term)
+geophysical science|1
+(noun)|geophysics|geology (generic term)
+geophysicist|1
+(noun)|geologist (generic term)
+geophysics|1
+(noun)|geophysical science|geology (generic term)
+geophyte|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+geophytic|1
+(adj)|vascular plant|tracheophyte (related term)
+geopolitical|1
+(adj)|politics|political science|government (related term)
+geopolitics|1
+(noun)|politics (generic term)|political science (generic term)|government (generic term)
+geordie|2
+(noun)|Geordie|English person (generic term)
+(noun)|English (generic term)|English language (generic term)
+georg friedrich bernhard riemann|1
+(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician (generic term)
+georg friedrich handel|1
+(noun)|Handel|George Frideric Handel|George Frederick Handel|Georg Friedrich Handel|composer (generic term)
+georg meissner|1
+(noun)|Meissner|Georg Meissner|anatomist (generic term)
+georg philipp telemann|1
+(noun)|Telemann|Georg Philipp Telemann|composer (generic term)
+georg simon ohm|1
+(noun)|Ohm|Georg Simon Ohm|physicist (generic term)
+georg wilhelm friedrich hegel|1
+(noun)|Hegel|Georg Wilhelm Friedrich Hegel|philosopher (generic term)
+georg wilhelm steller|1
+(noun)|Steller|Georg Wilhelm Steller|naturalist (generic term)|natural scientist (generic term)
+george|7
+(noun)|George|Saint George|St. George|martyr (generic term)|patron saint (generic term)
+(noun)|George|George VI|King of England (generic term)|King of Great Britain (generic term)
+(noun)|George|George V|King of England (generic term)|King of Great Britain (generic term)
+(noun)|George|George IV|King of England (generic term)|King of Great Britain (generic term)
+(noun)|George|George III|King of England (generic term)|King of Great Britain (generic term)
+(noun)|George|George II|King of England (generic term)|King of Great Britain (generic term)
+(noun)|George|George I|King of England (generic term)|King of Great Britain (generic term)
+george armstrong custer|1
+(noun)|Custer|George Armstrong Custer|General Custer|general (generic term)|full general (generic term)
+george balanchine|1
+(noun)|Balanchine|George Balanchine|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+george beadle|1
+(noun)|Beadle|George Beadle|George Wells Beadle|biologist (generic term)|life scientist (generic term)
+george berkeley|1
+(noun)|Berkeley|Bishop Berkeley|George Berkeley|philosopher (generic term)|bishop (generic term)
+george bernard shaw|1
+(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+george boole|1
+(noun)|Boole|George Boole|mathematician (generic term)
+george bryan brummell|1
+(noun)|Brummell|George Bryan Brummell|Beau Brummell|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+george burns|1
+(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian (generic term)|comedian (generic term)|comic (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+george c. scott|1
+(noun)|Scott|George C. Scott|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+george catlett marshall|1
+(noun)|Marshall|George Marshall|George Catlett Marshall|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+george charles hevesy de hevesy|1
+(noun)|Hevesy|George Charles Hevesy de Hevesy|chemist (generic term)
+george dewey|1
+(noun)|Dewey|George Dewey|Admiral Dewey|naval officer (generic term)
+george dibdin-pitt|1
+(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist (generic term)|playwright (generic term)
+george dibdin pitt|1
+(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist (generic term)|playwright (generic term)
+george du maurier|1
+(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer (generic term)|author (generic term)|illustrator (generic term)
+george eastman|1
+(noun)|Eastman|George Eastman|industrialist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+george edward moore|1
+(noun)|Moore|G. E. Moore|George Edward Moore|philosopher (generic term)
+george edward pickett|1
+(noun)|Pickett|George Edward Pickett|general (generic term)|full general (generic term)
+george eliot|1
+(noun)|Eliot|George Eliot|Mary Ann Evans|writer (generic term)|author (generic term)
+george ellery hale|1
+(noun)|Hale|George Ellery Hale|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+george enescu|1
+(noun)|Enesco|Georges Enesco|George Enescu|violinist (generic term)|fiddler (generic term)|composer (generic term)
+george fox|1
+(noun)|Fox|George Fox|religious person (generic term)
+george frederick handel|1
+(noun)|Handel|George Frideric Handel|George Frederick Handel|Georg Friedrich Handel|composer (generic term)
+george frideric handel|1
+(noun)|Handel|George Frideric Handel|George Frederick Handel|Georg Friedrich Handel|composer (generic term)
+george gamow|1
+(noun)|Gamow|George Gamow|physicist (generic term)
+george gershwin|1
+(noun)|Gershwin|George Gershwin|composer (generic term)
+george gilbert aime murphy|1
+(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist (generic term)|classical scholar (generic term)
+george gordon meade|1
+(noun)|Meade|George Gordon Meade|general (generic term)|full general (generic term)
+george guess|1
+(noun)|Sequoya|Sequoyah|George Guess|Indian chief (generic term)|Indian chieftain (generic term)|Cherokee (generic term)
+george h.w. bush|1
+(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+george harrison|1
+(noun)|Harrison|George Harrison|rock star (generic term)
+george herbert hitchings|1
+(noun)|Hitchings|George Herbert Hitchings|biochemist (generic term)
+george herbert mead|1
+(noun)|Mead|George Herbert Mead|philosopher (generic term)
+george herbert walker bush|1
+(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+george herman ruth|1
+(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer (generic term)|baseball player (generic term)
+george hubert wilkins|1
+(noun)|Wilkins|George Hubert Wilkins|explorer (generic term)|adventurer (generic term)
+george huntington|1
+(noun)|Huntington|George Huntington|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+george i|1
+(noun)|George|George I|King of England (generic term)|King of Great Britain (generic term)
+george ii|1
+(noun)|George|George II|King of England (generic term)|King of Great Britain (generic term)
+george iii|1
+(noun)|George|George III|King of England (generic term)|King of Great Britain (generic term)
+george iv|1
+(noun)|George|George IV|King of England (generic term)|King of Great Britain (generic term)
+george louis palmella busson du maurier|1
+(noun)|du Maurier|George du Maurier|George Louis Palmella Busson du Maurier|writer (generic term)|author (generic term)|illustrator (generic term)
+george lucas|1
+(noun)|Lucas|George Lucas|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)|screenwriter (generic term)|film writer (generic term)
+george m. cohan|1
+(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+george macaulay trevelyan|1
+(noun)|Trevelyan|George Macaulay Trevelyan|historian (generic term)|historiographer (generic term)
+george marshall|1
+(noun)|Marshall|George Marshall|George Catlett Marshall|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+george mason|1
+(noun)|Mason|George Mason|American Revolutionary leader (generic term)
+george meany|1
+(noun)|Meany|George Meany|labor leader (generic term)
+george meredith|1
+(noun)|Meredith|George Meredith|novelist (generic term)|poet (generic term)
+george michael cohan|1
+(noun)|Cohan|George M. Cohan|George Michael Cohan|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+george orson welles|1
+(noun)|Welles|Orson Welles|George Orson Welles|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+george orwell|1
+(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer (generic term)|author (generic term)
+george otto trevelyan|1
+(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian (generic term)|historiographer (generic term)
+george paget thomson|1
+(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist (generic term)
+george percy aldridge grainger|1
+(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer (generic term)
+george pitt|1
+(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist (generic term)|playwright (generic term)
+george s. kaufman|1
+(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist (generic term)|playwright (generic term)
+george sand|1
+(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer (generic term)|author (generic term)
+george segal|1
+(noun)|Segal|George Segal|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+george simon kaufman|1
+(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist (generic term)|playwright (generic term)
+george stephenson|1
+(noun)|Stephenson|George Stephenson|businessman (generic term)|man of affairs (generic term)
+george stevens|1
+(noun)|Stevens|George Stevens|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+george szell|1
+(noun)|Szell|George Szell|conductor (generic term)|music director (generic term)|director (generic term)
+george town|1
+(noun)|George Town|capital (generic term)
+george v|1
+(noun)|George|George V|King of England (generic term)|King of Great Britain (generic term)
+george vancouver|1
+(noun)|Vancouver|George Vancouver|navigator (generic term)
+george vi|1
+(noun)|George|George VI|King of England (generic term)|King of Great Britain (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+george washington|1
+(noun)|Washington|George Washington|President Washington|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+george washington bridge|1
+(noun)|George Washington Bridge|suspension bridge (generic term)
+george washington carver|1
+(noun)|Carver|George Washington Carver|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)|chemist (generic term)
+george washington goethals|1
+(noun)|Goethals|George Washington Goethals|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+george wells beadle|1
+(noun)|Beadle|George Beadle|George Wells Beadle|biologist (generic term)|life scientist (generic term)
+george westinghouse|1
+(noun)|Westinghouse|George Westinghouse|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+george william russell|1
+(noun)|Russell|George William Russell|A.E.|writer (generic term)|author (generic term)
+georges bizet|1
+(noun)|Bizet|Georges Bizet|composer (generic term)
+georges braque|1
+(noun)|Braque|Georges Braque|painter (generic term)
+georges clemenceau|1
+(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman (generic term)|solon (generic term)|national leader (generic term)
+georges cuvier|1
+(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist (generic term)|natural scientist (generic term)
+georges de la tour|1
+(noun)|La Tour|Georges de La Tour|old master (generic term)
+georges enesco|1
+(noun)|Enesco|Georges Enesco|George Enescu|violinist (generic term)|fiddler (generic term)|composer (generic term)
+georges eugene benjamin clemenceau|1
+(noun)|Clemenceau|Georges Clemenceau|Georges Eugene Benjamin Clemenceau|statesman (generic term)|solon (generic term)|national leader (generic term)
+georges gilles de la tourette|1
+(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist (generic term)|brain doctor (generic term)
+georges henri lemaitre|1
+(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist (generic term)
+georges jacques danton|1
+(noun)|Danton|Georges Jacques Danton|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+georges joseph christian simenon|1
+(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer (generic term)|author (generic term)
+georges leopold chretien frederic dagobert cuvier|1
+(noun)|Cuvier|Georges Cuvier|Baron Georges Cuvier|Georges Leopold Chretien Frederic Dagobert Cuvier|naturalist (generic term)|natural scientist (generic term)
+georges pierre seurat|1
+(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter (generic term)
+georges seurat|1
+(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter (generic term)
+georges simenon|1
+(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer (generic term)|author (generic term)
+georgetown|2
+(noun)|Georgetown|residential district (generic term)|residential area (generic term)|community (generic term)
+(noun)|Georgetown|Stabroek|national capital (generic term)|port (generic term)
+georgette|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+georgi konstantinovich zhukov|1
+(noun)|Zhukov|Georgi Konstantinovich Zhukov|general (generic term)|full general (generic term)
+georgia|3
+(noun)|Georgia|Empire State of the South|Peach State|GA|American state (generic term)
+(noun)|Georgia|Colony (generic term)
+(noun)|Georgia|Sakartvelo|Asian country (generic term)|Asian nation (generic term)
+georgia bark|1
+(noun)|fever tree|Georgia bark|bitter-bark|Pinckneya pubens|shrub (generic term)|bush (generic term)
+georgia home boy|1
+(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+georgia okeeffe|1
+(noun)|O'Keeffe|Georgia Okeeffe|painter (generic term)
+georgia pine|1
+(noun)|longleaf pine|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine (generic term)
+georgian|7
+(adj)|Georgian|Colony (related term)
+(adj)|Georgian|Asian country|Asian nation (related term)
+(adj)|Georgian|American state (related term)
+(adj)|Georgian|martyr|patron saint (related term)
+(noun)|Georgian|American (generic term)
+(noun)|Georgian|Russian (generic term)
+(noun)|Georgian|Caucasian (generic term)|Caucasian language (generic term)
+georgian monetary unit|1
+(noun)|Georgian monetary unit|monetary unit (generic term)
+georgiana barrymore|1
+(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress (generic term)
+georgiana emma barrymore|1
+(noun)|Barrymore|Georgiana Barrymore|Georgiana Emma Barrymore|actress (generic term)
+geosphere|1
+(noun)|lithosphere|layer (generic term)
+geostationary|1
+(adj)|fixed (similar term)
+geostationary orbit|1
+(noun)|geosynchronous orbit (generic term)
+geostrategic|1
+(adj)|geopolitics (related term)
+geostrategy|1
+(noun)|geopolitics (generic term)
+geosynchronous|1
+(adj)|fixed (similar term)
+geosynchronous orbit|1
+(noun)|orbit (generic term)|celestial orbit (generic term)
+geothermal|1
+(adj)|geothermic|energy (related term)
+geothermal energy|1
+(noun)|heat (generic term)|heat energy (generic term)
+geothermic|1
+(adj)|geothermal|energy (related term)
+geothlypis|1
+(noun)|Geothlypis|genus Geothlypis|bird genus (generic term)
+geothlypis trichas|1
+(noun)|common yellowthroat|Maryland yellowthroat|Geothlypis trichas|yellowthroat (generic term)
+geotropism|1
+(noun)|tropism (generic term)
+geraint|1
+(noun)|Geraint|Sir Geraint|knight (generic term)
+gerald ford|1
+(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+gerald r. ford|1
+(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+gerald rudolph ford|1
+(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+geraniaceae|1
+(noun)|Geraniaceae|family Geraniaceae|geranium family|rosid dicot family (generic term)
+geraniales|1
+(noun)|Geraniales|order Geraniales|plant order (generic term)
+geranium|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+geranium family|1
+(noun)|Geraniaceae|family Geraniaceae|rosid dicot family (generic term)
+geranium maculatum|1
+(noun)|wild geranium|spotted cranesbill|Geranium maculatum|cranesbill (generic term)|crane's bill (generic term)
+geranium molle|1
+(noun)|dove's foot geranium|Geranium molle|cranesbill (generic term)|crane's bill (generic term)
+geranium pratense|1
+(noun)|meadow cranesbill|Geranium pratense|cranesbill (generic term)|crane's bill (generic term)
+geranium richardsonii|1
+(noun)|Richardson's geranium|Geranium richardsonii|cranesbill (generic term)|crane's bill (generic term)
+geranium robertianum|1
+(noun)|herb robert|herbs robert|herb roberts|Geranium robertianum|cranesbill (generic term)|crane's bill (generic term)
+geranium viscosissimum|1
+(noun)|sticky geranium|Geranium viscosissimum|cranesbill (generic term)|crane's bill (generic term)
+gerard depardieu|1
+(noun)|Depardieu|Gerard Depardieu|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+gerard kuiper|1
+(noun)|Kuiper|Gerard Kuiper|Gerard Peter Kuiper|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+gerard manley hopkins|1
+(noun)|Hopkins|Gerard Manley Hopkins|poet (generic term)
+gerard peter kuiper|1
+(noun)|Kuiper|Gerard Kuiper|Gerard Peter Kuiper|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+gerardia|1
+(noun)|flower (generic term)
+gerardia pedicularia|1
+(noun)|false foxglove|Aureolaria pedicularia|Gerardia pedicularia|herb (generic term)|herbaceous plant (generic term)
+gerardia virginica|1
+(noun)|false foxglove|Aureolaria virginica|Gerardia virginica|herb (generic term)|herbaceous plant (generic term)
+gerardus mercator|1
+(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer (generic term)
+gerbera|1
+(noun)|Gerbera|genus Gerbera|asterid dicot genus (generic term)
+gerbera jamesonii|1
+(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy (generic term)
+gerbert|1
+(noun)|Sylvester II|Gerbert|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+gerbil|1
+(noun)|gerbille|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+gerbille|1
+(noun)|gerbil|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+gerbillinae|1
+(noun)|Gerbillinae|subfamily Gerbillinae|mammal family (generic term)
+gerbillus|1
+(noun)|Gerbillus|genus Gerbillus|mammal genus (generic term)
+gerea|1
+(noun)|Gerea|genus Gerea|asterid dicot genus (generic term)
+gerea canescens|1
+(noun)|desert sunflower|Gerea canescens|wildflower (generic term)|wild flower (generic term)
+gerenuk|1
+(noun)|Litocranius walleri|antelope (generic term)
+gerfalcon|1
+(noun)|gyrfalcon|Falco rusticolus|falcon (generic term)
+gerhard gerhards|1
+(noun)|Erasmus|Desiderius Erasmus|Gerhard Gerhards|Geert Geerts|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|humanist (generic term)
+gerhard herzberg|1
+(noun)|Herzberg|Gerhard Herzberg|nuclear physicist (generic term)
+gerhard kremer|1
+(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer (generic term)
+geriatric|2
+(adj)|age group|age bracket|cohort (related term)
+(adj)|gerontological|medicine|medical specialty (related term)
+geriatrician|1
+(noun)|gerontologist|specialist (generic term)|medical specialist (generic term)
+geriatrics|1
+(noun)|gerontology|medicine (generic term)|medical specialty (generic term)
+germ|3
+(noun)|source|seed|inspiration (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|microbe|bug|microorganism (generic term)|micro-organism (generic term)
+germ cell|1
+(noun)|reproductive cell|sex cell|cell (generic term)
+germ layer|1
+(noun)|embryonic tissue (generic term)
+germ plasm|1
+(noun)|plasm|protoplasm (generic term)|living substance (generic term)
+germ pore|1
+(noun)|stoma (generic term)|stomate (generic term)|pore (generic term)
+germ theory|1
+(noun)|scientific theory (generic term)
+germ tube|1
+(noun)|plant part (generic term)|plant structure (generic term)
+germ warfare|1
+(noun)|bacteriological warfare|biological warfare (generic term)|BW (generic term)|biological attack (generic term)|biologic attack (generic term)|bioattack (generic term)
+german|4
+(adj)|German|European country|European nation (related term)
+(adj)|German|Germanic|Teutonic|European country|European nation (related term)
+(noun)|German|European (generic term)
+(noun)|German|High German|German language|West Germanic (generic term)|West Germanic language (generic term)
+german-american|1
+(adj)|German-American|American (related term)
+german-speaking|1
+(adj)|German-speaking|communicative (similar term)|communicatory (similar term)
+german american|1
+(noun)|German American|American (generic term)
+german bee|1
+(noun)|black bee|German bee|honeybee (generic term)|Apis mellifera (generic term)
+german capital|1
+(noun)|Berlin|German capital|national capital (generic term)
+german chamomile|1
+(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb (generic term)|herbaceous plant (generic term)
+german cockroach|1
+(noun)|German cockroach|Croton bug|crotonbug|water bug|Blattella germanica|cockroach (generic term)|roach (generic term)
+german democratic republic|1
+(noun)|East Germany|German Democratic Republic|European country (generic term)|European nation (generic term)
+german iris|2
+(noun)|German iris|Iris kochii|bearded iris (generic term)
+(noun)|German iris|Iris germanica|bearded iris (generic term)
+german ivy|1
+(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine (generic term)
+german language|1
+(noun)|German|High German|German language|West Germanic (generic term)|West Germanic language (generic term)
+german lesson|1
+(noun)|German lesson|language lesson (generic term)
+german luftwaffe|1
+(noun)|Luftwaffe|German Luftwaffe|air force (generic term)|airforce (generic term)
+german mark|1
+(noun)|mark|German mark|Deutsche Mark|Deutschmark|German monetary unit (generic term)
+german measles|1
+(noun)|German measles|rubella|three-day measles|epidemic roseola|measles (generic term)|rubeola (generic term)|morbilli (generic term)
+german millet|1
+(noun)|German millet|golden wonder millet|Setaria italica stramineofructa|foxtail millet (generic term)|Italian millet (generic term)|Hungarian grass (generic term)|Setaria italica (generic term)
+german monetary unit|1
+(noun)|German monetary unit|monetary unit (generic term)
+german nazi|1
+(noun)|Nazi|German Nazi|fascist (generic term)
+german pancake|1
+(noun)|pfannkuchen|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+german police dog|1
+(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+german rampion|1
+(noun)|common evening primrose|German rampion|Oenothera biennis|evening primrose (generic term)
+german shepherd|1
+(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+german shepherd dog|1
+(noun)|German shepherd|German shepherd dog|German police dog|alsatian|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+german short-haired pointer|1
+(noun)|German short-haired pointer|pointer (generic term)|Spanish pointer (generic term)
+german silver|1
+(noun)|nickel silver|German silver|alloy (generic term)|metal (generic term)
+german tamarisk|1
+(noun)|false tamarisk|German tamarisk|Myricaria germanica|shrub (generic term)|bush (generic term)
+germander|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+germander speedwell|1
+(noun)|bird's eye|Veronica chamaedrys|veronica (generic term)|speedwell (generic term)
+germane|1
+(adj)|related|relevant (similar term)
+germaneness|1
+(noun)|applicability (generic term)|pertinence (generic term)|pertinency (generic term)
+germanic|4
+(adj)|Germanic|Indo-European|Indo-European language|Indo-Hittite (related term)
+(adj)|Teutonic|Germanic|European (related term)
+(adj)|German|Germanic|Teutonic|European country|European nation (related term)
+(noun)|Germanic|Germanic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+germanic language|1
+(noun)|Germanic|Germanic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+germanism|1
+(noun)|Germanism|custom (generic term)|usage (generic term)|usance (generic term)
+germanist|1
+(noun)|Germanist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+germanite|1
+(noun)|mineral (generic term)
+germanium|1
+(noun)|Ge|atomic number 32|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+germany|1
+(noun)|Germany|Federal Republic of Germany|Deutschland|FRG|European country (generic term)|European nation (generic term)
+germfree|1
+(adj)|axenic (similar term)|antiseptic (similar term)|sterilized (similar term)|sterilised (similar term)|antiseptic (related term)|germy (antonym)
+germicidal|1
+(adj)|bactericidal|disinfectant|antiseptic (similar term)
+germicide|1
+(noun)|disinfectant|antimicrobic|antimicrobial|agent (generic term)
+germinal|2
+(adj)|originative|seminal|original (similar term)
+(noun)|Germinal|Revolutionary calendar month (generic term)
+germinal area|1
+(noun)|blastoderm|germinal disc|blastodisc|layer (generic term)
+germinal disc|1
+(noun)|blastoderm|blastodisc|germinal area|layer (generic term)
+germinate|3
+(verb)|shoot|spud|pullulate|bourgeon|burgeon forth|sprout|grow (generic term)
+(verb)|evolve|develop|create by mental act (generic term)|create mentally (generic term)
+(verb)|grow (generic term)
+germination|2
+(noun)|sprouting|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|origin (generic term)|origination (generic term)|inception (generic term)
+germy|1
+(adj)|unsterilized (similar term)|unsterilised (similar term)|septic (related term)|infected (related term)|germfree (antonym)
+geronimo|1
+(noun)|Geronimo|Indian chief (generic term)|Indian chieftain (generic term)|Apache (generic term)
+gerontocracy|1
+(noun)|political system (generic term)|form of government (generic term)
+gerontological|1
+(adj)|geriatric|medicine|medical specialty (related term)
+gerontologist|1
+(noun)|geriatrician|specialist (generic term)|medical specialist (generic term)
+gerontology|1
+(noun)|geriatrics|medicine (generic term)|medical specialty (generic term)
+gerreidae|1
+(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family (generic term)
+gerres|1
+(noun)|Gerres|genus Gerres|fish genus (generic term)
+gerres cinereus|1
+(noun)|yellowfin mojarra|Gerres cinereus|mojarra (generic term)
+gerrhonotus|1
+(noun)|Gerrhonotus|genus Gerrhonotus|reptile genus (generic term)
+gerridae|2
+(noun)|Gerreidae|family Gerreidae|Gerridae|family Gerridae|fish family (generic term)
+(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family (generic term)
+gerrididae|1
+(noun)|Gerrididae|family Gerrididae|Gerridae|family Gerridae|arthropod family (generic term)
+gerris|1
+(noun)|Gerris|genus Gerris|arthropod genus (generic term)
+gerris lacustris|1
+(noun)|common pond-skater|Gerris lacustris|water strider (generic term)|pond-skater (generic term)|water skater (generic term)
+gerrymander|2
+(noun)|cheat (generic term)|cheating (generic term)
+(verb)|separate (generic term)|divide (generic term)|part (generic term)
+gershwin|2
+(noun)|Gershwin|Ira Gershwin|lyricist (generic term)|lyrist (generic term)
+(noun)|Gershwin|George Gershwin|composer (generic term)
+gertrude caroline ederle|1
+(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer (generic term)
+gertrude ederle|1
+(noun)|Ederle|Gertrude Ederle|Gertrude Caroline Ederle|swimmer (generic term)
+gertrude lawrence|1
+(noun)|Lawrence|Gertrude Lawrence|actress (generic term)
+gertrude stein|1
+(noun)|Stein|Gertrude Stein|writer (generic term)|author (generic term)
+gerund|1
+(noun)|verbal noun (generic term)|deverbal noun (generic term)
+gerundial|1
+(adj)|verbal noun|deverbal noun (related term)
+geryon|1
+(noun)|Geryon|mythical monster (generic term)|mythical creature (generic term)
+gesell|1
+(noun)|Gesell|Arnold Gesell|Arnold Lucius Gesell|psychologist (generic term)
+gesner|1
+(noun)|Gesner|Konrad von Gesner|naturalist (generic term)|natural scientist (generic term)
+gesneria|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+gesneria family|1
+(noun)|Gesneriaceae|family Gesneriaceae|asterid dicot family (generic term)
+gesneriaceae|1
+(noun)|Gesneriaceae|family Gesneriaceae|gesneria family|asterid dicot family (generic term)
+gesneriad|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+gesso|1
+(noun)|gypsum (generic term)|plaster of Paris (generic term)|plaster (generic term)
+gestalt|1
+(noun)|form (generic term)|shape (generic term)|pattern (generic term)
+gestalt law of organization|1
+(noun)|Gestalt law of organization|Gestalt principle of organization|principle (generic term)|rule (generic term)
+gestalt principle of organization|1
+(noun)|Gestalt law of organization|Gestalt principle of organization|principle (generic term)|rule (generic term)
+gestalt psychology|1
+(noun)|Gestalt psychology|configurationism|scientific theory (generic term)
+gestapo|1
+(noun)|Gestapo|secret police (generic term)
+gestate|2
+(verb)|conceive|conceptualize|conceptualise|create by mental act (generic term)|create mentally (generic term)
+(verb)|have a bun in the oven|bear|carry|expect|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+gestation|3
+(noun)|gestation period|biological time (generic term)
+(noun)|pregnancy|maternity|physiological state (generic term)|physiological condition (generic term)
+(noun)|construction (generic term)|mental synthesis (generic term)
+gestation period|1
+(noun)|gestation|biological time (generic term)
+gestational|1
+(adj)|physiological state|physiological condition (related term)
+gestational age|1
+(noun)|fetal age|fertilization age|age (generic term)
+gesticulate|1
+(verb)|gesture|motion|communicate (generic term)|intercommunicate (generic term)
+gesticulating|1
+(adj)|communicative (similar term)|communicatory (similar term)
+gesticulation|1
+(noun)|gesture (generic term)|motion (generic term)
+gestural|2
+(adj)|sign|signed|sign-language|communicative (similar term)|communicatory (similar term)
+(adj)|nonverbal|communicative (similar term)|communicatory (similar term)
+gesture|4
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|motion|visual communication (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+(verb)|gesticulate|motion|communicate (generic term)|intercommunicate (generic term)
+get|36
+(noun)|return (generic term)
+(verb)|acquire
+(verb)|become|go|change state (generic term)|turn (generic term)|get on (related term)|get along (related term)|get over (related term)|get ahead (related term)
+(verb)|let|have|make (generic term)|get (generic term)
+(verb)|receive|find|obtain|incur|change (generic term)
+(verb)|arrive|come|leave (antonym)
+(verb)|bring|convey|fetch|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|take away (antonym)
+(verb)|experience|receive|have|undergo
+(verb)|pay back|pay off|fix|get even (generic term)|get back (generic term)
+(verb)|have|make|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|induce|stimulate|cause|have|make
+(verb)|catch|capture|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|grow|develop|produce|acquire|change (generic term)
+(verb)|contract|take|sicken (generic term)|come down (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|make|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|drive|aim|mean (generic term)|intend (generic term)
+(verb)|catch|understand (generic term)
+(verb)|catch|arrest|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|catch|hit (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|buy (generic term)|purchase (generic term)
+(verb)|catch|hear (generic term)
+(verb)|catch|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|receive
+(verb)|scram|buzz off|fuck off|bugger off|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|catch (generic term)
+(verb)|get under one's skin|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|touch (generic term)|stir (generic term)
+(verb)|catch|reproduce (generic term)
+(verb)|draw|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|perplex|vex|stick|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|get down|begin|start out|start|set about|set out|commence|end (antonym)
+(verb)|suffer|sustain|have|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|beget|engender|father|mother|sire|generate|bring forth|make (generic term)|create (generic term)
+get-at-able|1
+(adj)|come-at-able|getatable|accessible (similar term)
+get-go|1
+(noun)|beginning|commencement|first|outset|start|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+get-up-and-go|1
+(noun)|energy|push|drive (generic term)
+get-well card|1
+(noun)|card (generic term)
+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 (generic term)
+get a look|1
+(verb)|catch a glimpse|see (generic term)
+get a noseful|1
+(verb)|get a whiff|smell (generic term)
+get a whiff|1
+(verb)|get a noseful|smell (generic term)
+get about|1
+(verb)|get around|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+get across|3
+(verb)|put over|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(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 (generic term)|go through (generic term)|go across (generic term)
+get ahead|2
+(verb)|gain|advance|win|pull ahead|make headway|gain ground|fall back (antonym)
+(verb)|boom|prosper|thrive|flourish|expand|grow (generic term)
+get along|3
+(verb)|do|fare|make out|come|proceed (generic term)|go (generic term)
+(verb)|get along with|get on with|get on|relate (generic term)
+(verb)|progress|come on|come along|advance|get on|shape up|develop (generic term)|regress (antonym)
+get along with|1
+(verb)|get on with|get on|get along|relate (generic term)
+get around|4
+(verb)|break|get out
+(verb)|bypass|short-circuit|go around|avoid (generic term)
+(verb)|swing|socialize (generic term)|socialise (generic term)
+(verb)|get about|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+get around to|1
+(verb)|act (generic term)|move (generic term)
+get at|3
+(verb)|access|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|annoy|rag|get to|bother|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+get away|3
+(verb)|escape|break loose|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|get off|get by|get out|escape|avoid (generic term)
+(verb)|escape|escape (generic term)|get away (generic term)|break loose (generic term)
+get back|4
+(verb)|return|go back|come back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|win back|get (generic term)|acquire (generic term)
+(verb)|get even|revenge (generic term)|avenge (generic term)|retaliate (generic term)
+(verb)|settle|contend (generic term)|fight (generic term)|struggle (generic term)
+get behind|1
+(verb)|drag|trail|hang back|drop behind|lag (generic term)|dawdle (generic term)|fall back (generic term)|fall behind (generic term)
+get by|3
+(verb)|cope|make out|make do|contend|grapple|deal|manage|act (generic term)|move (generic term)
+(verb)|pass (generic term)|overtake (generic term)|overhaul (generic term)
+(verb)|get off|get away|get out|escape|avoid (generic term)
+get cracking|1
+(verb)|bestir oneself|get going|get moving|get weaving|get started|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get down|7
+(verb)|move (generic term)
+(verb)|lower|take down|let down|bring down|move (generic term)|displace (generic term)|raise (antonym)
+(verb)|unhorse|dismount|light|get off|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|swallow|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|depress|deject|cast down|dismay|dispirit|demoralize|demoralise|discourage (generic term)|elate (antonym)
+(verb)|write down|set down|put down|write (generic term)
+(verb)|begin|get|start out|start|set about|set out|commence|end (antonym)
+get dressed|1
+(verb)|dress|change (generic term)|dress up (related term)|dress down (related term)|undress (antonym)
+get even|2
+(verb)|equalize|equalise|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|get back|revenge (generic term)|avenge (generic term)|retaliate (generic term)
+get going|2
+(verb)|start|go|stop (antonym)
+(verb)|get cracking|bestir oneself|get moving|get weaving|get started|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get hitched with|1
+(verb)|marry|get married|wed|conjoin|hook up with|espouse|unite (generic term)|unify (generic term)
+get hold|1
+(verb)|line up|come up|find|get (generic term)|acquire (generic term)
+get hold of|3
+(verb)|take|take in (related term)|take on (related term)|take up (related term)|take away (related term)|take in (related term)|take apart (related term)
+(verb)|reach|get through|contact|communicate (generic term)|intercommunicate (generic term)
+(verb)|seize|clutch|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+get in|5
+(verb)|enter|come in|get into|go into|go in|move into|move in (related term)|enter upon (related term)|exit (antonym)
+(verb)|arrive|make it|go far|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|hand over|fork over|fork out|fork up|turn in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|get into|obtain (generic term)
+(verb)|pull in|move in|draw in|arrive (generic term)|get (generic term)|come (generic term)|pull out (antonym)
+get in touch|1
+(verb)|touch base|connect|interact (generic term)
+get into|5
+(verb)|tangle with|change state (generic term)|turn (generic term)
+(verb)|enter|come in|get in|go into|go in|move into|move in (related term)|enter upon (related term)|exit (antonym)
+(verb)|get in|obtain (generic term)
+(verb)|familiarize (generic term)|familiarise (generic term)|acquaint (generic term)
+(verb)|wear|put on|don|assume|dress (generic term)|get dressed (generic term)
+get it|1
+(verb)|catch on|get wise|get onto|tumble|latch on|cotton on|twig|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+get married|1
+(verb)|marry|wed|conjoin|hook up with|get hitched with|espouse|unite (generic term)|unify (generic term)
+get moving|1
+(verb)|get cracking|bestir oneself|get going|get weaving|get started|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get off|9
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|get on (antonym)
+(verb)|send|send off|transfer (generic term)
+(verb)|get away|get by|get out|escape|avoid (generic term)
+(verb)|love (generic term)|enjoy (generic term)
+(verb)|unhorse|dismount|light|get down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|hop out|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|hop on (antonym)
+(verb)|mail|send (generic term)|send out (generic term)
+(verb)|trip|trip out|turn on
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+get off the ground|1
+(verb)|take off|start (generic term)|go (generic term)|get going (generic term)
+get on|7
+(verb)|get along with|get on with|get along|relate (generic term)
+(verb)|board|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|get off (antonym)
+(verb)|hop on|mount|mount up|jump on|climb on|bestride|move (generic term)|hop out (antonym)
+(verb)|approach (generic term)|come near (generic term)
+(verb)|be on|air (generic term)
+(verb)|progress|come on|come along|advance|get along|shape up|develop (generic term)|regress (antonym)
+(verb)|senesce|age|mature|maturate|develop (generic term)
+get on with|1
+(verb)|get along with|get on|get along|relate (generic term)
+get one's lumps|1
+(verb)|take one's lumps|pay (generic term)
+get onto|1
+(verb)|catch on|get wise|tumble|latch on|cotton on|twig|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+get out|7
+(verb)|exit|go out|leave|move (generic term)|enter (antonym)
+(verb)|bring out|unpack (generic term)|take out (generic term)
+(verb)|pull out|leave (generic term)|go forth (generic term)|go away (generic term)|pull in (antonym)
+(verb)|state (generic term)|say (generic term)|tell (generic term)
+(verb)|draw|pull|pull out|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|break|get around
+(verb)|get off|get away|get by|escape|avoid (generic term)
+get over|4
+(verb)|traverse|track|cover|cross|pass over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|get well|bounce back|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|get worse (antonym)
+(verb)|overcome|subdue|surmount|master|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+get rid of|3
+(verb)|remove
+(verb)|eliminate|do away with|destroy (generic term)|destruct (generic term)
+(verb)|abolish|establish (antonym)
+get rolling|1
+(verb)|get cracking|bestir oneself|get going|get moving|get weaving|get started|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get started|1
+(verb)|get cracking|bestir oneself|get going|get moving|get weaving|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get stuck|1
+(verb)|grind to a halt|bog down|mire|stand still (generic term)
+get the best|1
+(verb)|have the best|overcome|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+get the better of|1
+(verb)|overcome|defeat
+get the goods|1
+(verb)|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)
+get the hang|1
+(verb)|master|know (generic term)
+get the jump|1
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+get the picture|1
+(verb)|grok|comprehend|savvy|dig|grasp|compass|apprehend|understand (generic term)
+get through|5
+(verb)|wrap up|finish off|mop up|polish off|clear up|finish up|complete (generic term)|finish (generic term)
+(verb)|while away|spend (generic term)|pass (generic term)
+(verb)|come through|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|reach|get hold of|contact|communicate (generic term)|intercommunicate (generic term)
+(verb)|click|dawn|come home|get across|sink in|penetrate|fall into place
+get to|3
+(verb)|reach|make|progress to|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|annoy|rag|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+get to grips|1
+(verb)|come to grips|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+get together|5
+(noun)|meeting|social gathering (generic term)|social affair (generic term)
+(verb)|assemble|gather
+(verb)|meet
+(verb)|collaborate|join forces|cooperate|work (generic term)
+(verb)|join|fall in
+get under one's skin|1
+(verb)|get|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+get up|8
+(verb)|arise|rise|uprise|stand up|change posture (generic term)|sit down (antonym)|lie down (antonym)
+(verb)|turn out|arise|uprise|rise|turn in (antonym)|go to bed (antonym)
+(verb)|raise|lift|elevate|bring up|move (generic term)|displace (generic term)|lift up (related term)|lower (antonym)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|work up|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+(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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+(verb)|organize|organise|prepare|devise|machinate|initiate (generic term)|pioneer (generic term)
+(verb)|cram|grind away|drum|bone up|swot|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+get weaving|1
+(verb)|get cracking|bestir oneself|get going|get moving|get started|get rolling|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+get well|1
+(verb)|get over|bounce back|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|get worse (antonym)
+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|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+get word|1
+(verb)|learn|hear|get wind|pick up|find out|get a line|discover|see
+get worse|1
+(verb)|relapse|change state (generic term)|turn (generic term)|get well (antonym)
+geta|1
+(noun)|clog|patten|sabot|footwear (generic term)|footgear (generic term)
+getable|1
+(adj)|gettable|obtainable|procurable|available (similar term)
+getatable|1
+(adj)|come-at-able|get-at-able|accessible (similar term)
+getaway|2
+(noun)|pickup|acceleration (generic term)
+(noun)|lam|escape (generic term)|flight (generic term)
+gettable|1
+(adj)|getable|obtainable|procurable|available (similar term)
+getting|1
+(noun)|acquiring|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+getting even|1
+(noun)|return|paying back|group action (generic term)
+gettysburg|2
+(noun)|Gettysburg|town (generic term)
+(noun)|Gettysburg|Battle of Gettysburg|pitched battle (generic term)
+gettysburg address|1
+(noun)|Gettysburg Address|address (generic term)|speech (generic term)
+getulio dornelles vargas|1
+(noun)|Vargas|Getulio Dornelles Vargas|statesman (generic term)|solon (generic term)|national leader (generic term)
+getup|1
+(noun)|outfit|rig|turnout|attire (generic term)|garb (generic term)|dress (generic term)
+geum|1
+(noun)|Geum|genus Geum|rosid dicot genus (generic term)
+geum alleppicum strictum|1
+(noun)|yellow avens|Geum alleppicum strictum|Geum strictum|avens (generic term)
+geum canadense|1
+(noun)|bennet|white avens|Geum canadense|avens (generic term)
+geum macrophyllum|1
+(noun)|yellow avens|Geum macrophyllum|avens (generic term)
+geum rivale|1
+(noun)|water avens|Indian chocolate|purple avens|chocolate root|Geum rivale|avens (generic term)
+geum strictum|1
+(noun)|yellow avens|Geum alleppicum strictum|Geum strictum|avens (generic term)
+geum triflorum|1
+(noun)|prairie smoke|purple avens|Geum triflorum|avens (generic term)
+geum urbanum|1
+(noun)|herb bennet|cloveroot|clover-root|wood avens|Geum urbanum|avens (generic term)
+geum virginianum|1
+(noun)|bennet|white avens|Geum virginianum|avens (generic term)
+gewgaw|1
+(noun)|bangle|bauble|gaud|novelty|fallal|trinket|adornment (generic term)
+geyser|2
+(noun)|spring (generic term)|fountain (generic term)|outflow (generic term)|outpouring (generic term)|natural spring (generic term)
+(verb)|overflow (generic term)|overrun (generic term)|well over (generic term)|run over (generic term)|brim over (generic term)
+ghana|1
+(noun)|Ghana|Republic of Ghana|Gold Coast|African country (generic term)|African nation (generic term)
+ghanaian|1
+(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation (related term)
+ghanese|1
+(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation (related term)
+ghanian|2
+(adj)|Ghanaian|Ghanese|Ghanian|African country|African nation (related term)
+(noun)|Ghanian|African (generic term)
+ghanian monetary unit|1
+(noun)|Ghanian monetary unit|monetary unit (generic term)
+gharry|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+ghastliness|1
+(noun)|grimness|gruesomeness|luridness|frightfulness (generic term)
+ghastly|2
+(adj)|grim|grisly|gruesome|macabre|sick|alarming (similar term)
+(adj)|charnel|sepulchral|offensive (similar term)
+ghat|1
+(noun)|stairway (generic term)|staircase (generic term)
+ghatti|1
+(noun)|ghatti gum|gum (generic term)
+ghatti gum|1
+(noun)|ghatti|gum (generic term)
+ghb|1
+(noun)|gamma hydroxybutyrate|GHB|club drug (generic term)
+ghedda wax|1
+(noun)|Ghedda wax|beeswax (generic term)
+ghee|1
+(noun)|clarified butter (generic term)|drawn butter (generic term)
+gheg|1
+(noun)|Gheg|Gheg dialect|Albanian (generic term)
+gheg dialect|1
+(noun)|Gheg|Gheg dialect|Albanian (generic term)
+ghent|1
+(noun)|Gent|Gand|Ghent|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gherkin|2
+(noun)|pickle (generic term)
+(noun)|cucumber (generic term)|cuke (generic term)
+ghetto|3
+(noun)|quarter (generic term)
+(noun)|life (generic term)
+(noun)|city district (generic term)
+ghetto blaster|1
+(noun)|boom box|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+ghettoise|1
+(verb)|ghettoize|isolate (generic term)|insulate (generic term)
+ghettoize|1
+(verb)|ghettoise|isolate (generic term)|insulate (generic term)
+ghillie|1
+(noun)|gillie|shoe (generic term)
+ghost|7
+(noun)|shade|spook|wraith|specter|spectre|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+(noun)|ghostwriter|writer (generic term)|author (generic term)
+(noun)|soul (generic term)|psyche (generic term)
+(noun)|touch|trace|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|haunt|obsess|preoccupy (generic term)
+(verb)|ghostwrite|author (generic term)
+ghost dance|1
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+ghost gum|1
+(noun)|snow gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+ghost town|1
+(noun)|town (generic term)
+ghost weed|1
+(noun)|snow-on-the-mountain|snow-in-summer|Euphorbia marginata|spurge (generic term)
+ghost word|1
+(noun)|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+ghostfish|1
+(noun)|wrymouth|Cryptacanthodes maculatus|blennioid fish (generic term)|blennioid (generic term)
+ghostlike|1
+(adj)|apparitional|ghostly|phantasmal|spectral|spiritual|supernatural (similar term)
+ghostliness|1
+(noun)|eeriness|unfamiliarity (generic term)|strangeness (generic term)
+ghostly|1
+(adj)|apparitional|ghostlike|phantasmal|spectral|spiritual|supernatural (similar term)
+ghostwrite|1
+(verb)|ghost|author (generic term)
+ghostwriter|1
+(noun)|ghost|writer (generic term)|author (generic term)
+ghoul|2
+(noun)|graverobber|body snatcher|thief (generic term)|stealer (generic term)
+(noun)|evil spirit (generic term)
+ghoulish|1
+(adj)|morbid|offensive (similar term)
+ghq|1
+(noun)|command post|general headquarters|GHQ|headquarters (generic term)|HQ (generic term)|military headquarters (generic term)
+ghrelin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+ghrf|1
+(noun)|growth hormone-releasing factor|GHRF|releasing factor (generic term)|releasing hormone (generic term)|RF (generic term)
+ghz|1
+(noun)|gigahertz|GHz|gigacycle per second|gigacycle|Gc|rate (generic term)
+gi|3
+(adj)|gastrointestinal|GI|duct|epithelial duct|canal|channel (related term)
+(noun)|gilbert|Gb|Gi|magnetomotive force unit (generic term)
+(verb)|G.I.|GI|houseclean (generic term)|clean house (generic term)|clean (generic term)
+gi series|1
+(noun)|GI series|diagnostic test (generic term)|diagnostic assay (generic term)
+gi tract|1
+(noun)|alimentary canal|alimentary tract|digestive tube|digestive tract|gastrointestinal tract|GI tract|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+gia|1
+(noun)|Armed Islamic Group|GIA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+giacometti|1
+(noun)|Giacometti|Alberto Giacometti|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|painter (generic term)
+giacomo della chiesa|1
+(noun)|Benedict XV|Giacomo della Chiesa|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giacomo meyerbeer|1
+(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer (generic term)
+giacomo puccini|1
+(noun)|Puccini|Giacomo Puccini|composer (generic term)
+giambattista lulli|1
+(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer (generic term)
+giambattista marini|1
+(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet (generic term)
+giambattista marino|1
+(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet (generic term)
+gian carlo menotti|1
+(noun)|Menotti|Gian Carlo Menotti|composer (generic term)
+gianbattista bodoni|1
+(noun)|Bodoni|Gianbattista Bodoni|printer (generic term)|pressman (generic term)
+giannangelo braschi|1
+(noun)|Pius VI|Giovanni Angelo Braschi|Giannangelo Braschi|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+gianni versace|1
+(noun)|Versace|Gianni Versace|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+giant|8
+(adj)|elephantine|gargantuan|jumbo|large (similar term)|big (similar term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|colossus|behemoth|heavyweight|titan|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|enterprise (generic term)
+(noun)|hulk|heavyweight|whale|large person (generic term)
+(noun)|goliath|behemoth|monster|colossus|anomaly (generic term)|unusual person (generic term)
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|giant star|star (generic term)
+giant anteater|1
+(noun)|ant bear|great anteater|tamanoir|Myrmecophaga jubata|anteater (generic term)|New World anteater (generic term)
+giant armadillo|1
+(noun)|tatou|tatu|Priodontes giganteus|armadillo (generic term)
+giant bamboo|1
+(noun)|kyo-chiku|Dendrocalamus giganteus|bamboo (generic term)
+giant buttercup|1
+(noun)|Laccopetalum giganteum|herb (generic term)|herbaceous plant (generic term)
+giant cane|1
+(noun)|cane reed|Arundinaria gigantea|bamboo (generic term)
+giant chinkapin|1
+(noun)|golden chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree (generic term)
+giant clam|1
+(noun)|Tridacna gigas|clam (generic term)
+giant cockroach|1
+(noun)|cockroach (generic term)|roach (generic term)
+giant conch|1
+(noun)|Strombus gigas|conch (generic term)
+giant coreopsis|1
+(noun)|Coreopsis gigantea|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+giant crab|1
+(noun)|Macrocheira kaempferi|spider crab (generic term)
+giant eland|1
+(noun)|Taurotragus derbianus|eland (generic term)
+giant fern|1
+(noun)|angiopteris|Angiopteris evecta|tree fern (generic term)
+giant fir|1
+(noun)|lowland fir|lowland white fir|grand fir|Abies grandis|silver fir (generic term)
+giant foxtail|1
+(noun)|foxtail (generic term)|foxtail grass (generic term)
+giant fulmar|1
+(noun)|giant petrel|Macronectes giganteus|petrel (generic term)
+giant garlic|1
+(noun)|sand leek|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant (generic term)
+giant granadilla|1
+(noun)|granadilla|Passiflora quadrangularis|passionflower (generic term)|passionflower vine (generic term)
+giant helleborine|1
+(noun)|stream orchid|chatterbox|Epipactis gigantea|helleborine (generic term)
+giant hornet|1
+(noun)|Vespa crabro|hornet (generic term)
+giant hyssop|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+giant kangaroo|1
+(noun)|great grey kangaroo|Macropus giganteus|kangaroo (generic term)
+giant lizard|1
+(noun)|Komodo dragon|Komodo lizard|dragon lizard|Varanus komodoensis|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+giant moa|1
+(noun)|Dinornis giganteus|moa (generic term)
+giant northwest shipworm|1
+(noun)|Bankia setaceae|shipworm (generic term)|teredinid (generic term)
+giant panda|1
+(noun)|panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid (generic term)
+giant petrel|1
+(noun)|giant fulmar|Macronectes giganteus|petrel (generic term)
+giant pigfish|1
+(noun)|pigfish|Achoerodus gouldii|wrasse (generic term)
+giant potato creeper|1
+(noun)|potato vine|Solanum wendlandii|vine (generic term)
+giant puffball|1
+(noun)|Calvatia gigantea|puffball (generic term)|true puffball (generic term)
+giant red paintbrush|1
+(noun)|Castilleja miniata|Indian paintbrush (generic term)|painted cup (generic term)
+giant reed|1
+(noun)|Arundo donax|reed (generic term)
+giant ryegrass|1
+(noun)|Elymus condensatus|Leymus condensatus|lyme grass (generic term)
+giant salamander|1
+(noun)|Megalobatrachus maximus|salamander (generic term)
+giant scallop|1
+(noun)|sea scallop|Pecten magellanicus|scallop (generic term)|scollop (generic term)|escallop (generic term)
+giant schnauzer|1
+(noun)|schnauzer (generic term)
+giant scrambling fern|1
+(noun)|Diplopterygium longissimum|fern (generic term)
+giant sequoia|1
+(noun)|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+giant silkworm|1
+(noun)|silkworm|wild wilkworm|caterpillar (generic term)
+giant silkworm moth|1
+(noun)|silkworm moth|saturniid (generic term)|saturniid moth (generic term)
+giant squid|1
+(noun)|architeuthis|squid (generic term)
+giant star|1
+(noun)|giant|star (generic term)
+giant star grass|1
+(noun)|Cynodon plectostachyum|grass (generic term)
+giant stock bean|1
+(noun)|jack bean|wonder bean|Canavalia ensiformis|vine (generic term)
+giant sunflower|1
+(noun)|tall sunflower|Indian potato|Helianthus giganteus|sunflower (generic term)|helianthus (generic term)
+giant taro|1
+(noun)|Alocasia macrorrhiza|alocasia (generic term)|elephant's ear (generic term)|elephant ear (generic term)
+giant timber bamboo|1
+(noun)|madake|ku-chiku|Phyllostachys bambusoides|bamboo (generic term)
+giant tortoise|1
+(noun)|tortoise (generic term)
+giant water bug|1
+(noun)|water bug (generic term)
+giant willowherb|1
+(noun)|fireweed|rosebay willowherb|wickup|Epilobium angustifolium|willowherb (generic term)
+giantess|1
+(noun)|giant (generic term)
+giantism|2
+(noun)|gigantism|overgrowth|hypertrophy (generic term)
+(noun)|gigantism|largeness (generic term)|bigness (generic term)
+giardia|1
+(noun)|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+giardiasis|1
+(noun)|protozoal infection (generic term)
+gib|1
+(noun)|tom (generic term)|tomcat (generic term)
+gibber|3
+(noun)|gibberish|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+gibberellic acid|1
+(noun)|gibberellin (generic term)
+gibberellin|1
+(noun)|phytohormone (generic term)|plant hormone (generic term)|growth regulator (generic term)
+gibberish|1
+(noun)|gibber|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+gibbet|3
+(noun)|gallows tree|gallows-tree|gallous|gallows (generic term)
+(verb)|hang (generic term)|string up (generic term)
+(verb)|pillory|expose (generic term)|exhibit (generic term)|display (generic term)
+gibbon|2
+(noun)|Gibbon|Edward Gibbon|historian (generic term)|historiographer (generic term)
+(noun)|Hylobates lar|lesser ape (generic term)
+gibbose|1
+(adj)|gibbous|convex (similar term)|bulging (similar term)
+gibbosity|1
+(noun)|bulge|bump|hump|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+gibbous|2
+(adj)|crookback|crookbacked|humped|humpbacked|hunchbacked|kyphotic|unfit (similar term)
+(adj)|gibbose|convex (similar term)|bulging (similar term)
+gibbousness|1
+(noun)|bulge|bump|hump|gibbosity|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+gibbs|1
+(noun)|Gibbs|Josiah Willard Gibbs|chemist (generic term)
+gibbsite|1
+(noun)|mineral (generic term)
+gibe|3
+(noun)|shot|shaft|slam|dig|barb|jibe|remark (generic term)|comment (generic term)
+(verb)|match|fit|correspond|check|jibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|jeer|scoff|flout|barrack|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+gibelike|1
+(adj)|derisive|jeering|mocking|taunting|disrespectful (similar term)
+gibingly|1
+(adv)|jeeringly|mockingly
+giblet|1
+(noun)|giblets|variety meat (generic term)|organs (generic term)
+giblets|1
+(noun)|giblet|variety meat (generic term)|organs (generic term)
+gibraltar|1
+(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony (generic term)|settlement (generic term)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+gibraltar fever|1
+(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+gibraltarian|2
+(adj)|Gibraltarian|colony|settlement|promontory|headland|head|foreland (related term)
+(noun)|Gibraltarian|European (generic term)
+gibran|1
+(noun)|Gibran|Kahlil Gibran|writer (generic term)|author (generic term)
+gibson|3
+(noun)|Gibson|C. D. Gibson|Charles Dana Gibson|illustrator (generic term)
+(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Gibson|Althea Gibson|tennis player (generic term)
+gibson desert|1
+(noun)|Gibson Desert|desert (generic term)
+gibson girl|1
+(noun)|Gibson girl|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+gidar|1
+(noun)|Gidar|Biu-Mandara (generic term)
+giddily|1
+(adv)|dizzily|light-headedly
+giddiness|2
+(noun)|silliness|frivolity (generic term)|frivolousness (generic term)
+(noun)|dizziness|lightheadedness|vertigo|symptom (generic term)
+giddy|2
+(adj)|dizzy|woozy|vertiginous|ill (similar term)|sick (similar term)
+(adj)|airheaded|dizzy|empty-headed|featherbrained|light-headed|lightheaded|silly|frivolous (similar term)
+gide|1
+(noun)|Gide|Andre Gide|Andre Paul Guillaume Gide|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+gideon algernon mantell|1
+(noun)|Mantell|Gideon Algernon Mantell|geologist (generic term)
+gidgee|1
+(noun)|stinking wattle|Acacia cambegei|acacia (generic term)
+gielgud|1
+(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+gift|5
+(noun)|acquisition (generic term)
+(noun)|endowment|talent|natural endowment|natural ability (generic term)
+(noun)|giving|sharing (generic term)|share-out (generic term)
+(verb)|endow|indue|empower|invest|endue|enable (generic term)
+(verb)|give|present
+gift-wrap|1
+(verb)|wrap (generic term)|wrap up (generic term)
+gift horse|1
+(noun)|gift (generic term)
+gift shop|1
+(noun)|novelty shop|shop (generic term)|store (generic term)
+gift tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+gift wrap|1
+(noun)|wrapping paper (generic term)
+gift wrapping|1
+(noun)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+gifted|1
+(adj)|talented|untalented (antonym)
+gig|6
+(noun)|small boat (generic term)
+(noun)|spear|fizgig|fishgig|lance|implement (generic term)
+(noun)|hook (generic term)
+(noun)|tender (generic term)|ship's boat (generic term)|pinnace (generic term)|cutter (generic term)
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|engagement (generic term)|booking (generic term)
+gigabyte|1
+(noun)|G|GB|computer memory unit (generic term)
+gigacycle|1
+(noun)|gigahertz|GHz|gigacycle per second|Gc|rate (generic term)
+gigacycle per second|1
+(noun)|gigahertz|GHz|gigacycle|Gc|rate (generic term)
+gigahertz|1
+(noun)|GHz|gigacycle per second|gigacycle|Gc|rate (generic term)
+gigantic|1
+(adj)|mammoth|large (similar term)|big (similar term)
+gigantism|2
+(noun)|giantism|overgrowth|hypertrophy (generic term)
+(noun)|giantism|largeness (generic term)|bigness (generic term)
+gigartinaceae|1
+(noun)|Gigartinaceae|family Gigartinaceae|protoctist family (generic term)
+giggle|2
+(noun)|laugh (generic term)|laughter (generic term)
+(verb)|titter|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+giggler|1
+(noun)|titterer|laugher (generic term)
+gigo|1
+(noun)|GIGO|rule (generic term)|prescript (generic term)
+gigolo|1
+(noun)|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+gigot|1
+(noun)|leg of lamb|lamb roast (generic term)|roast lamb (generic term)|leg (generic term)
+gigue|1
+(noun)|jig|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+gikuyu|1
+(noun)|Gikuyu|Bantu (generic term)|Bantoid language (generic term)
+gila|1
+(noun)|Gila|Gila River|river (generic term)
+gila desert|1
+(noun)|Gila Desert|desert (generic term)
+gila monster|1
+(noun)|Gila monster|Heloderma suspectum|venomous lizard (generic term)
+gila river|1
+(noun)|Gila|Gila River|river (generic term)
+gilbert|5
+(noun)|Gb|Gi|magnetomotive force unit (generic term)
+(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist (generic term)|poet (generic term)
+(noun)|Gilbert|William Gilbert|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|physicist (generic term)
+(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator (generic term)
+(noun)|Gilbert|Cass Gilbert|architect (generic term)|designer (generic term)
+gilbert and ellice islands|1
+(noun)|Gilbert and Ellice Islands|possession (generic term)
+gilbert and sullivan|1
+(noun)|Gilbert and Sullivan|music (generic term)
+gilbert charles stuart|1
+(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter (generic term)
+gilbert islands|1
+(noun)|Gilbert Islands|archipelago (generic term)
+gilbert keith chesterton|1
+(noun)|Chesterton|G. K. Chesterton|Gilbert Keith Chesterton|writer (generic term)|author (generic term)
+gilbert murray|1
+(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist (generic term)|classical scholar (generic term)
+gilbert stuart|1
+(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter (generic term)
+gilbertian|2
+(adj)|Gilbertian|architect|designer (related term)
+(adj)|Gilbertian|humorous (similar term)|humourous (similar term)
+gild|2
+(noun)|club|social club|society|guild|lodge|order|association (generic term)
+(verb)|begild|engild|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+gild the lily|2
+(verb)|paint the lily|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|paint the lily|add (generic term)
+gilded|4
+(adj)|aureate|gilt|gold|golden|chromatic (similar term)
+(adj)|meretricious|specious|insincere (similar term)
+(adj)|deluxe|grand|luxurious|opulent|princely|sumptuous|rich (similar term)
+(adj)|gold|golden|metallic (similar term)|metal (similar term)
+gilded flicker|1
+(noun)|Colaptes chrysoides|flicker (generic term)
+gilder|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+gildhall|1
+(noun)|guildhall (generic term)
+gilding|1
+(noun)|gilt|coating (generic term)|coat (generic term)
+gilding metal|1
+(noun)|brass (generic term)
+giles lytton strachey|1
+(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer (generic term)
+gilgai soil|1
+(noun)|soil (generic term)|dirt (generic term)
+gilgamesh|1
+(noun)|Gilgamesh|king (generic term)|male monarch (generic term)|Rex (generic term)
+gilgamish|1
+(noun)|Gilgamish|mythical being (generic term)
+gill|4
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|United States liquid unit (generic term)
+(noun)|lamella|plant organ (generic term)
+(noun)|branchia|respiratory organ (generic term)
+gill-less|1
+(adj)|abranchiate|abranchial|abranchious|branchiate (antonym)
+gill-over-the-ground|1
+(noun)|ground ivy|alehoof|field balm|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+gill arch|1
+(noun)|branchial arch|gill bar|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+gill bar|1
+(noun)|gill arch|branchial arch|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+gill cleft|1
+(noun)|gill slit|branchial cleft|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+gill fungus|1
+(noun)|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+gill net|1
+(noun)|fishnet (generic term)|fishing net (generic term)
+gill slit|1
+(noun)|branchial cleft|gill cleft|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+gilled|1
+(adj)|branchiate|abranchiate (antonym)
+gilles de la tourette|1
+(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist (generic term)|brain doctor (generic term)
+gilles de la tourette syndrome|1
+(noun)|Tourette's syndrome|Gilles de la Tourette syndrome|syndrome (generic term)
+gillespie|1
+(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter (generic term)|cornetist (generic term)
+gillette|1
+(noun)|Gillette|King Camp Gilette|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+gillie|2
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|ghillie|shoe (generic term)
+gillyflower|2
+(noun)|stock|flower (generic term)
+(noun)|carnation|clove pink|Dianthus caryophyllus|pink (generic term)|garden pink (generic term)
+gilman|1
+(noun)|Gilman|Charlotte Anna Perkins Gilman|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+gilmer|1
+(noun)|Gilmer|Elizabeth Merriwether Gilmer|Dorothy Dix|journalist (generic term)
+giloacchino antonio rossini|1
+(noun)|Rossini|Giloacchino Antonio Rossini|composer (generic term)
+gilt|2
+(adj)|aureate|gilded|gold|golden|chromatic (similar term)
+(noun)|gilding|coating (generic term)|coat (generic term)
+gilt-edged|2
+(adj)|superior (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+gimbal|1
+(noun)|appliance (generic term)|contraption (generic term)|contrivance (generic term)|convenience (generic term)|gadget (generic term)|gizmo (generic term)|gismo (generic term)|widget (generic term)
+gimbaled|1
+(adj)|supported (similar term)
+gimcrack|2
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|loud|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(noun)|folderal|falderol|frill|gimcrackery|nonsense|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+gimcrackery|1
+(noun)|folderal|falderol|frill|gimcrack|nonsense|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+gimel|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+gimlet|2
+(noun)|cocktail (generic term)
+(noun)|auger|screw auger|wimble|drill (generic term)
+gimmick|3
+(noun)|catch|drawback (generic term)
+(noun)|doodad|doohickey|doojigger|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+(noun)|device|twist|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+gimmickry|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+gimp|2
+(noun)|lameness|limping|gimpiness|gameness|claudication|disability of walking (generic term)
+(verb)|limp|hobble|hitch|walk (generic term)
+gimpiness|1
+(noun)|lameness|limping|gimp|gameness|claudication|disability of walking (generic term)
+gimpy|1
+(adj)|crippled|halt|halting|lame|game|unfit (similar term)
+gin|6
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+(noun)|snare|noose|trap (generic term)
+(noun)|cotton gin|machine (generic term)
+(noun)|gin rummy|knock rummy|rummy (generic term)|rum (generic term)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|trap (generic term)|entrap (generic term)|snare (generic term)|ensnare (generic term)|trammel (generic term)
+gin and it|1
+(noun)|cocktail (generic term)
+gin and tonic|1
+(noun)|highball (generic term)
+gin mill|1
+(noun)|public house|pub|saloon|pothouse|taphouse|tavern (generic term)|tap house (generic term)
+gin rickey|1
+(noun)|rickey (generic term)
+gin rummy|1
+(noun)|gin|knock rummy|rummy (generic term)|rum (generic term)
+gin sling|1
+(noun)|sling (generic term)
+ginep|1
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+ginger|6
+(adj)|gingery|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|powdered ginger|spice (generic term)
+(noun)|gingerroot|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|pep|peppiness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+(verb)|zest (generic term)|spice (generic term)|spice up (generic term)
+ginger-scented|1
+(adj)|odorous (similar term)
+ginger ale|1
+(noun)|ginger pop|soft drink (generic term)
+ginger beer|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+ginger family|1
+(noun)|Zingiberaceae|family Zingiberaceae|monocot family (generic term)|liliopsid family (generic term)
+ginger nut|1
+(noun)|gingersnap|ginger snap|snap|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+ginger pop|1
+(noun)|ginger ale|soft drink (generic term)
+ginger rogers|1
+(noun)|Rogers|Ginger Rogers|Virginia McMath|Virginia Katherine McMath|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+ginger snap|1
+(noun)|gingersnap|snap|ginger nut|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+ginger up|1
+(verb)|jazz up|juice up|pep up|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+gingerbread|1
+(noun)|cake (generic term)
+gingerbread man|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+gingerly|1
+(adj)|cautious (similar term)
+gingerol|1
+(noun)|chemical irritant (generic term)
+gingerroot|1
+(noun)|ginger|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+gingersnap|1
+(noun)|ginger snap|snap|ginger nut|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+gingery|2
+(adj)|tasty (similar term)
+(adj)|ginger|colored (similar term)|coloured (similar term)|colorful (similar term)
+gingham|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+gingiva|1
+(noun)|gum|animal tissue (generic term)
+gingival|1
+(adj)|animal tissue (related term)
+gingivitis|1
+(noun)|periodontal disease (generic term)|periodontitis (generic term)
+gingko|1
+(noun)|ginkgo|maidenhair tree|Ginkgo biloba|gymnospermous tree (generic term)
+ginglymoid joint|1
+(noun)|hinge joint|ginglymus|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+ginglymostoma|1
+(noun)|Ginglymostoma|genus Ginglymostoma|fish genus (generic term)
+ginglymostoma cirratum|1
+(noun)|nurse shark|Ginglymostoma cirratum|shark (generic term)
+ginglymus|1
+(noun)|hinge joint|ginglymoid joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+ginkgo|1
+(noun)|gingko|maidenhair tree|Ginkgo biloba|gymnospermous tree (generic term)
+ginkgo biloba|1
+(noun)|ginkgo|gingko|maidenhair tree|Ginkgo biloba|gymnospermous tree (generic term)
+ginkgo family|1
+(noun)|Ginkgoaceae|family Ginkgoaceae|gymnosperm family (generic term)
+ginkgoaceae|1
+(noun)|Ginkgoaceae|family Ginkgoaceae|ginkgo family|gymnosperm family (generic term)
+ginkgoales|1
+(noun)|Ginkgoales|order Ginkgoales|plant order (generic term)
+ginkgophytina|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+ginkgopsida|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+ginmill|1
+(noun)|barroom|bar|saloon|taproom|room (generic term)
+ginsberg|1
+(noun)|Ginsberg|Allen Ginsberg|poet (generic term)
+ginseng|2
+(noun)|root (generic term)
+(noun)|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb (generic term)|herbaceous plant (generic term)
+ginzo|1
+(noun)|wop|dago|Guinea|greaseball|Italian (generic term)
+gioacchino pecci|1
+(noun)|Leo XIII|Gioacchino Pecci|Giovanni Vincenzo Pecci|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giordano bruno|1
+(noun)|Bruno|Giordano Bruno|philosopher (generic term)
+giorgio de chirico|1
+(noun)|Chirico|Giorgio de Chirico|painter (generic term)
+giorgio vasari|1
+(noun)|Vasari|Giorgio Vasari|painter (generic term)|art historian (generic term)
+giosue carducci|1
+(noun)|Carducci|Giosue Carducci|poet (generic term)
+giotto|1
+(noun)|Giotto|Giotto di Bondone|old master (generic term)|architect (generic term)|designer (generic term)
+giotto di bondone|1
+(noun)|Giotto|Giotto di Bondone|old master (generic term)|architect (generic term)|designer (generic term)
+giovanni angelo braschi|1
+(noun)|Pius VI|Giovanni Angelo Braschi|Giannangelo Braschi|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni battista cibo|1
+(noun)|Innocent VIII|Giovanni Battista Cibo|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni battista montini|1
+(noun)|Paul VI|Giovanni Battista Montini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni battista tiepolo|1
+(noun)|Tiepolo|Giovanni Battista Tiepolo|painter (generic term)
+giovanni boccaccio|1
+(noun)|Boccaccio|Giovanni Boccaccio|poet (generic term)
+giovanni cabato|1
+(noun)|Cabot|John Cabot|Giovanni Cabato|navigator (generic term)
+giovanni cimabue|1
+(noun)|Cimabue|Giovanni Cimabue|old master (generic term)
+giovanni da verrazano|1
+(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator (generic term)
+giovanni da verrazzano|1
+(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator (generic term)
+giovanni de'medici|1
+(noun)|Leo X|Giovanni de'Medici|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni di bernardone|1
+(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint (generic term)
+giovanni francesco albani|1
+(noun)|Clement XI|Giovanni Francesco Albani|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni jacopo casanova|1
+(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer (generic term)|venturer (generic term)
+giovanni jacopo casanova de seingalt|1
+(noun)|Casanova|Giovanni Jacopo Casanova|Casanova de Seingalt|Giovanni Jacopo Casanova de Seingalt|adventurer (generic term)|venturer (generic term)
+giovanni lorenzo bernini|1
+(noun)|Bernini|Giovanni Lorenzo Bernini|architect (generic term)|designer (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+giovanni maria mastai-ferretti|1
+(noun)|Pius IX|Giovanni Mastai-Ferretti|Giovanni Maria Mastai-Ferretti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni mastai-ferretti|1
+(noun)|Pius IX|Giovanni Mastai-Ferretti|Giovanni Maria Mastai-Ferretti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni pierluigi da palestrina|1
+(noun)|Palestrina|Giovanni Pierluigi da Palestrina|composer (generic term)
+giovanni vincenzo pecci|1
+(noun)|Leo XIII|Gioacchino Pecci|Giovanni Vincenzo Pecci|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giovanni virginio schiaparelli|1
+(noun)|Schiaparelli|Giovanni Virginio Schiaparelli|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+gip|1
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+gipsy|2
+(noun)|itinerant|gypsy|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+gipsy moth|1
+(noun)|gypsy moth|Lymantria dispar|lymantriid (generic term)|tussock moth (generic term)
+gipsywort|1
+(noun)|gypsywort|Lycopus europaeus|herb (generic term)|herbaceous plant (generic term)
+giraffa|1
+(noun)|Giraffa|genus Giraffa|mammal genus (generic term)
+giraffa camelopardalis|1
+(noun)|giraffe|camelopard|Giraffa camelopardalis|ruminant (generic term)
+giraffe|1
+(noun)|camelopard|Giraffa camelopardalis|ruminant (generic term)
+giraffidae|1
+(noun)|Giraffidae|family Giraffidae|mammal family (generic term)
+girandola|1
+(noun)|girandole|candlestick (generic term)|candle holder (generic term)
+girandole|1
+(noun)|girandola|candlestick (generic term)|candle holder (generic term)
+girard|1
+(noun)|Girard|Stephen Girard|financier (generic term)|moneyman (generic term)
+girasol|2
+(noun)|fire opal|opal (generic term)
+(noun)|Jerusalem artichoke|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower (generic term)|helianthus (generic term)
+giraudoux|1
+(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+gird|4
+(verb)|arm|build up|fortify|disarm (antonym)
+(verb)|girth|girt|begird|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+(verb)|girdle|surround (generic term)|skirt (generic term)|border (generic term)
+(verb)|encircle|bind (generic term)
+girder|1
+(noun)|beam (generic term)
+girdle|5
+(noun)|skeletal structure (generic term)
+(noun)|cincture|sash|waistband|waistcloth|band (generic term)
+(noun)|corset|stays|foundation garment (generic term)|foundation (generic term)
+(verb)|deaden|incise (generic term)
+(verb)|gird|surround (generic term)|skirt (generic term)|border (generic term)
+girgenti|1
+(noun)|Agrigento|Acragas|Girgenti|town (generic term)
+giriama|1
+(noun)|Giriama|Bantu (generic term)|Bantoid language (generic term)
+girl|5
+(noun)|miss|missy|young lady|young woman|fille|woman (generic term)|adult female (generic term)
+(noun)|female child|little girl|female (generic term)|female person (generic term)|boy (antonym)|male child (antonym)
+(noun)|daughter|female offspring (generic term)|boy (antonym)|son (antonym)
+(noun)|girlfriend|lady friend|woman (generic term)|adult female (generic term)|lover (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+girl friday|1
+(noun)|girl Friday|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+girl scout|1
+(noun)|Girl Scout|Scout (generic term)
+girl scouts|1
+(noun)|Girl Scouts|organization (generic term)|organisation (generic term)
+girl wonder|1
+(noun)|prodigy (generic term)|female (generic term)|female person (generic term)
+girlfriend|2
+(noun)|woman (generic term)|adult female (generic term)|friend (generic term)
+(noun)|girl|lady friend|woman (generic term)|adult female (generic term)|lover (generic term)
+girlhood|1
+(noun)|maidenhood|maidhood|childhood (generic term)
+girlish|1
+(adj)|schoolgirlish|young (similar term)|immature (similar term)
+girlishness|1
+(noun)|femininity (generic term)|muliebrity (generic term)
+giro|2
+(noun)|giro cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+giro account|1
+(noun)|bank account (generic term)
+giro cheque|1
+(noun)|giro|check (generic term)|bank check (generic term)|cheque (generic term)
+girolamo savonarola|1
+(noun)|Savonarola|Girolamo Savonarola|Dominican (generic term)|Black Friar (generic term)|Blackfriar (generic term)|friar preacher (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+gironde|1
+(noun)|Gironde|party (generic term)|political party (generic term)
+girondin|1
+(noun)|Girondist|Girondin|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+girondism|1
+(noun)|Girondism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+girondist|1
+(noun)|Girondist|Girondin|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+girru|1
+(noun)|Girru|Semitic deity (generic term)
+girt|1
+(verb)|girth|begird|gird|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+girth|4
+(noun)|circumference (generic term)|perimeter (generic term)
+(noun)|cinch|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(verb)|girt|begird|gird|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+(verb)|cinch|fasten (generic term)|fix (generic term)|secure (generic term)
+gish|1
+(noun)|Gish|Lillian Gish|actress (generic term)
+gismo|2
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|widget|device (generic term)
+gist|2
+(noun)|effect|essence|burden|core|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|kernel|substance|core|center|essence|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+git|1
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|unpleasant person (generic term)|disagreeable person (generic term)
+gita|1
+(noun)|Bhagavad-Gita|Bhagavadgita|Gita|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+gitana|1
+(noun)|Gypsy (generic term)|Gipsy (generic term)|Romany (generic term)|Rommany (generic term)|Romani (generic term)|Roma (generic term)|Bohemian (generic term)
+gitano|1
+(noun)|Gypsy (generic term)|Gipsy (generic term)|Romany (generic term)|Rommany (generic term)|Romani (generic term)|Roma (generic term)|Bohemian (generic term)
+gittern|1
+(noun)|cittern|cithern|cither|citole|guitar (generic term)
+giulio de' medici|1
+(noun)|Clement VII|Giulio de' Medici|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giulio natta|1
+(noun)|Natta|Giulio Natta|chemist (generic term)
+giuseppe balsamo|1
+(noun)|Cagliostro|Count Alessandro di Cagliostro|Giuseppe Balsamo|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+giuseppe garibaldi|1
+(noun)|Garibaldi|Giuseppe Garibaldi|general (generic term)|full general (generic term)|patriot (generic term)|nationalist (generic term)
+giuseppe mazzini|1
+(noun)|Mazzini|Giuseppe Mazzini|patriot (generic term)|nationalist (generic term)
+giuseppe melchiorre sarto|1
+(noun)|Pius X|Giuseppe Sarto|Giuseppe Melchiorre Sarto|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giuseppe sarto|1
+(noun)|Pius X|Giuseppe Sarto|Giuseppe Melchiorre Sarto|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+giuseppe verdi|1
+(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer (generic term)
+give|44
+(noun)|spring|springiness|elasticity (generic term)|snap (generic term)
+(verb)|yield|afford|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|transfer (generic term)|give back (related term)|take (antonym)
+(verb)|state (generic term)|say (generic term)|tell (generic term)
+(verb)|pay|communicate (generic term)|intercommunicate (generic term)
+(verb)|hold|throw|have|make|direct (generic term)
+(verb)|throw|communicate (generic term)|intercommunicate (generic term)
+(verb)|gift|present
+(verb)|yield|make (generic term)|create (generic term)
+(verb)|pay|devote|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|render|yield|return|generate|produce (generic term)|make (generic term)|create (generic term)
+(verb)|impart|leave|pass on|tell (generic term)
+(verb)|establish|make (generic term)|create (generic term)
+(verb)|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|sacrifice|release (generic term)|relinquish (generic term)|resign (generic term)|free (generic term)|give up (generic term)
+(verb)|pass|hand|reach|pass on|turn over|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|dedicate|consecrate|commit|devote|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|administer (generic term)|dispense (generic term)
+(verb)|apply|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+(verb)|render|communicate (generic term)|intercommunicate (generic term)
+(verb)|grant
+(verb)|move over|give way|ease up|yield|move (generic term)
+(verb)|feed|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)|starve (antonym)
+(verb)|contribute|chip in|kick in|give (generic term)
+(verb)|collapse|fall in|cave in|give way|break|founder|change (generic term)
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|execute (generic term)
+(verb)|compensate (generic term)|recompense (generic term)|repair (generic term)|indemnify (generic term)
+(verb)|afford|open
+(verb)|show (generic term)
+(verb)|perform (generic term)
+(verb)|yield|stretch (generic term)|give in (related term)
+(verb)|toast (generic term)|drink (generic term)|pledge (generic term)|salute (generic term)|wassail (generic term)
+(verb)|accord (generic term)|allot (generic term)|grant (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|pledge (generic term)
+(verb)|submit (generic term)|subject (generic term)
+(verb)|lead (generic term)
+(verb)|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|accept (generic term)|consent (generic term)|go for (generic term)
+(verb)|offer (generic term)|proffer (generic term)
+give-and-go|1
+(noun)|basketball play (generic term)
+give-and-take|3
+(noun)|discussion|word|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|banter|raillery|backchat|repartee (generic term)
+(noun)|interchange|reciprocation|interaction (generic term)
+give-up the ghost|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+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 (generic term)
+give away|4
+(verb)|give (generic term)|gift (generic term)|present (generic term)
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|let out|tell (generic term)
+(verb)|hand over (generic term)|fork over (generic term)|fork out (generic term)|fork up (generic term)|turn in (generic term)|get in (generic term)|deliver (generic term)|render (generic term)
+(verb)|denounce|tell on|betray|rat|grass|shit|shop|snitch|stag|inform (generic term)
+give back|1
+(verb)|refund|return|repay|pay (generic term)
+give birth|2
+(verb)|deliver|bear|birth|have|produce (generic term)|bring forth (generic term)
+(verb)|create by mental act (generic term)|create mentally (generic term)
+give care|1
+(verb)|care|help (generic term)|assist (generic term)|aid (generic term)
+give chase|1
+(verb)|chase|chase after|trail|tail|tag|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+give ear|1
+(verb)|attend|hang|advert|pay heed|listen (generic term)
+give forth|1
+(verb)|exhale|emanate|emit (generic term)|breathe (generic term)|pass off (generic term)
+give full measure|1
+(verb)|go all out|give one's best|do one's best|do (generic term)|perform (generic term)
+give in|2
+(verb)|submit|bow|defer|accede|yield (generic term)|give in (generic term)|succumb (generic term)|knuckle under (generic term)|buckle under (generic term)
+(verb)|yield|succumb|knuckle under|buckle under|accept (generic term)|consent (generic term)|go for (generic term)
+give it a try|2
+(verb)|give it a whirl|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|have a go|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+give it a whirl|1
+(verb)|give it a try|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+give it the deep six|1
+(verb)|deep-six|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+give notice|2
+(verb)|fire|can|dismiss|give the axe|send away|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|advise|notify|send word|apprise|apprize|inform (generic term)
+give off|2
+(verb)|have (generic term)|feature (generic term)
+(verb)|emit|give out|absorb (antonym)
+give one's best|1
+(verb)|go all out|do one's best|give full measure|do (generic term)|perform (generic term)
+give out|4
+(verb)|emit|give off|absorb (antonym)
+(verb)|distribute|hand out|pass out|give (generic term)|gift (generic term)|present (generic term)
+(verb)|fail|run out
+(verb)|fail|go bad|give way|die|conk out|go|break|break down|change (generic term)
+give rise|1
+(verb)|produce|bring about|make (generic term)|create (generic term)
+give suck|1
+(verb)|breastfeed|bottle-feed|suckle|suck|nurse|wet-nurse|lactate|feed (generic term)|give (generic term)|bottlefeed (antonym)
+give thanks|1
+(verb)|thank|convey (generic term)|impart (generic term)
+give the axe|2
+(verb)|fire|give notice|can|dismiss|send away|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|give the bounce|give the gate|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+give the bounce|1
+(verb)|give the axe|give the gate|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+give the eye|1
+(verb)|give the once over|look (generic term)
+give the gate|1
+(verb)|give the axe|give the bounce|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+give the glad eye|1
+(verb)|look (generic term)
+give the once over|1
+(verb)|give the eye|look (generic term)
+give the sack|1
+(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|terminate|remove (generic term)|hire (antonym)
+give tongue to|1
+(verb)|express|verbalize|verbalise|utter
+give up|11
+(verb)|forfeit|throw overboard|waive|forgo|abandon (generic term)|claim (antonym)
+(verb)|drop out|fall by the wayside|drop by the wayside|throw in|throw in the towel|quit|chuck up the sponge|enter (antonym)
+(verb)|discontinue|stop|cease|quit|lay off|continue (antonym)
+(verb)|spare|part with|dispense with|give (generic term)
+(verb)|release|relinquish|resign|free|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|vacate|resign|renounce|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|surrender|cede|deliver|give (generic term)|gift (generic term)|present (generic term)
+(verb)|surrender|yield (generic term)|resist (antonym)
+(verb)|abandon
+(verb)|allow
+(verb)|forgo
+give vent|1
+(verb)|vent|ventilate|express (generic term)|show (generic term)|evince (generic term)
+give voice|1
+(verb)|formulate|word|phrase|articulate|express (generic term)|show (generic term)|evince (generic term)
+give way|4
+(verb)|move over|give|ease up|yield|move (generic term)
+(verb)|collapse|fall in|cave in|give|break|founder|change (generic term)
+(verb)|yield|change (generic term)
+(verb)|fail|go bad|die|give out|conk out|go|break|break down|change (generic term)
+giveaway|3
+(noun)|gift (generic term)
+(noun)|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(noun)|game show|broadcast (generic term)|program (generic term)|programme (generic term)
+given|4
+(adj)|granted|acknowledged (similar term)
+(adj)|bestowed (similar term)|conferred (similar term)|presented (similar term)|donated (similar term)|granted (similar term)|relinquished (similar term)|surrendered (similar term)|taken (antonym)
+(adj)|apt|disposed|minded|tending|inclined (similar term)
+(noun)|presumption|precondition|assumption (generic term)|supposition (generic term)|supposal (generic term)
+given birth|1
+(adj)|born (similar term)
+given name|1
+(noun)|first name|forename|name (generic term)
+givenness|1
+(noun)|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+giver|2
+(noun)|good person (generic term)
+(noun)|donor|presenter|bestower|conferrer|benefactor (generic term)|helper (generic term)
+giving|4
+(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|liberal|openhanded|generous (similar term)
+(noun)|gift|sharing (generic term)|share-out (generic term)
+(noun)|conveyance (generic term)|imparting (generic term)|impartation (generic term)
+(noun)|disposal (generic term)|disposition (generic term)
+giving birth|1
+(noun)|parturition|birth|birthing|organic process (generic term)|biological process (generic term)
+giving medication|1
+(noun)|administration|medication (generic term)
+giving protection|1
+(adv)|protectively|offering protection
+giving up|2
+(noun)|yielding|surrender|relinquishment (generic term)|relinquishing (generic term)
+(noun)|forsaking|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+giza|1
+(noun)|Giza|El Giza|Gizeh|city (generic term)|metropolis (generic term)|urban center (generic term)
+gizeh|1
+(noun)|Giza|El Giza|Gizeh|city (generic term)|metropolis (generic term)|urban center (generic term)
+gizmo|2
+(noun)|doodad|doohickey|doojigger|gimmick|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+(noun)|appliance|contraption|contrivance|convenience|gadget|gismo|widget|device (generic term)
+gizzard|1
+(noun)|ventriculus|gastric mill|pouch (generic term)|pocket (generic term)
+gjellerup|1
+(noun)|Gjellerup|Karl Gjellerup|writer (generic term)|author (generic term)
+glabella|1
+(noun)|mesophyron|craniometric point (generic term)
+glabellar|1
+(adj)|craniometric point (related term)
+glabrescent|1
+(adj)|hairless (similar term)
+glabrous|1
+(adj)|hairless (similar term)
+glace|1
+(adj)|candied|crystalized|crystalised|preserved (similar term)
+glacial|3
+(adj)|ice mass (related term)
+(adj)|frigid|frosty|frozen|icy|wintry|cold (similar term)
+(adj)|arctic|frigid|gelid|icy|polar|cold (similar term)
+glacial boulder|1
+(noun)|boulder (generic term)|bowlder (generic term)
+glacial epoch|2
+(noun)|ice age|glacial period|period (generic term)|geological period (generic term)
+(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch (generic term)
+glacial period|1
+(noun)|ice age|glacial epoch|period (generic term)|geological period (generic term)
+glaciate|2
+(verb)|cover (generic term)|spread over (generic term)
+(verb)|freeze (generic term)
+glaciated|1
+(adj)|frozen (similar term)
+glaciation|2
+(noun)|environmental condition (generic term)
+(noun)|geological process (generic term)|geologic process (generic term)
+glacier|1
+(noun)|ice mass (generic term)
+glacier lily|1
+(noun)|snow lily|Erythronium grandiflorum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+glad|5
+(adj)|gladsome (similar term)|cheerful (related term)|sad (antonym)
+(adj)|happy|willing (similar term)
+(adj)|grateful (similar term)|thankful (similar term)
+(adj)|beaming|cheerful (similar term)
+(noun)|gladiolus|gladiola|sword lily|iridaceous plant (generic term)
+glad hand|1
+(noun)|welcome (generic term)
+gladden|2
+(verb)|joy|sadden (antonym)
+(verb)|rejoice (generic term)|joy (generic term)|sadden (antonym)
+gladdened|1
+(adj)|exhilarated|elated (similar term)
+gladdon|1
+(noun)|stinking iris|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+gladdon iris|1
+(noun)|stinking iris|gladdon|stinking gladwyn|roast beef plant|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+glade|1
+(noun)|clearing|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+glade fern|1
+(noun)|silvery spleenwort|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern (generic term)
+glade mallow|1
+(noun)|Napaea dioica|mallow (generic term)
+gladfulness|1
+(noun)|gladness|gladsomeness|happiness (generic term)
+gladiator|2
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|prizefighter|boxer (generic term)|pugilist (generic term)
+gladiatorial|1
+(adj)|combatant|battler|belligerent|fighter|scrapper (related term)
+gladiola|1
+(noun)|gladiolus|glad|sword lily|iridaceous plant (generic term)
+gladiolus|2
+(noun)|gladiola|glad|sword lily|iridaceous plant (generic term)
+(noun)|corpus sternum|bone (generic term)|os (generic term)
+gladly|1
+(adv)|lief|fain
+gladness|1
+(noun)|gladfulness|gladsomeness|happiness (generic term)
+gladsome|1
+(adj)|glad (similar term)
+gladsomeness|1
+(noun)|gladness|gladfulness|happiness (generic term)
+gladstone|2
+(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|portmanteau|Gladstone|Gladstone bag|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+gladstone bag|1
+(noun)|portmanteau|Gladstone|Gladstone bag|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+gladys smith|1
+(noun)|Pickford|Mary Pickford|Gladys Smith|actress (generic term)
+glam up|1
+(verb)|doll up|do up|pretty up|groom (generic term)|neaten (generic term)
+glamor|1
+(noun)|glamour|beauty (generic term)
+glamorisation|1
+(noun)|glamorization|glamourization|glamourisation|beautification (generic term)
+glamorise|1
+(verb)|glamorize|glamourise|glamourize|change (generic term)|alter (generic term)|modify (generic term)
+glamorization|1
+(noun)|glamorisation|glamourization|glamourisation|beautification (generic term)
+glamorize|2
+(verb)|romanticize|romanticise|glamourise|idealize (generic term)|idealise (generic term)
+(verb)|glamourise|glamourize|glamorise|change (generic term)|alter (generic term)|modify (generic term)
+glamorous|1
+(adj)|glamourous|exciting (similar term)
+glamour|2
+(noun)|glamor|beauty (generic term)
+(verb)|hex|bewitch|witch|enchant|jinx|charm (generic term)|becharm (generic term)
+glamourisation|1
+(noun)|glamorization|glamorisation|glamourization|beautification (generic term)
+glamourise|2
+(verb)|romanticize|romanticise|glamorize|idealize (generic term)|idealise (generic term)
+(verb)|glamorize|glamourize|glamorise|change (generic term)|alter (generic term)|modify (generic term)
+glamourization|1
+(noun)|glamorization|glamorisation|glamourisation|beautification (generic term)
+glamourize|1
+(verb)|glamorize|glamourise|glamorise|change (generic term)|alter (generic term)|modify (generic term)
+glamourous|1
+(adj)|glamorous|exciting (similar term)
+glance|3
+(noun)|glimpse|coup d'oeil|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|peek|glint|look (generic term)
+(verb)|carom|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+glance over|1
+(verb)|scan|skim|rake|run down|examine (generic term)|see (generic term)
+gland|1
+(noun)|secretory organ|secretor|secreter|organ (generic term)
+gland disease|1
+(noun)|glandular disease|glandular disorder|adenosis|disorder (generic term)|upset (generic term)
+glanders|1
+(noun)|zoonosis (generic term)|zoonotic disease (generic term)
+glandulae cervicales uteri|1
+(noun)|cervical glands|cervical glands of the uterus|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+glandulae sebaceae|1
+(noun)|sebaceous gland|sebaceous follicle|oil gland (generic term)
+glandular|1
+(adj)|organ (related term)
+glandular cancer|1
+(noun)|adenocarcinoma|glandular carcinoma|carcinoma (generic term)
+glandular carcinoma|1
+(noun)|adenocarcinoma|glandular cancer|carcinoma (generic term)
+glandular disease|1
+(noun)|gland disease|glandular disorder|adenosis|disorder (generic term)|upset (generic term)
+glandular disorder|1
+(noun)|glandular disease|gland disease|adenosis|disorder (generic term)|upset (generic term)
+glandular fever|1
+(noun)|infectious mononucleosis|mononucleosis|mono|kissing disease|infectious disease (generic term)
+glandular labrador tea|1
+(noun)|trapper's tea|glandular Labrador tea|shrub (generic term)|bush (generic term)
+glandular plague|1
+(noun)|bubonic plague|pestis bubonica|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+glans|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+glans clitoridis|1
+(noun)|glans (generic term)
+glans penis|1
+(noun)|glans (generic term)
+glare|6
+(noun)|blaze|brilliance|brightness (generic term)
+(noun)|glower|stare (generic term)
+(noun)|limelight|spotlight|public eye|prominence (generic term)
+(verb)|glower|stare (generic term)
+(verb)|reflect (generic term)|shine (generic term)
+(verb)|shine (generic term)|beam (generic term)
+glareola|1
+(noun)|Glareola|genus Glareola|bird genus (generic term)
+glareole|1
+(noun)|pratincole|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+glareolidae|1
+(noun)|Glareolidae|family Glareolidae|bird family (generic term)
+glaring|2
+(adj)|blazing|blinding|dazzling|fulgent|glary|bright (similar term)
+(adj)|crying|egregious|flagrant|gross|rank|conspicuous (similar term)
+glary|1
+(adj)|blazing|blinding|dazzling|fulgent|glaring|bright (similar term)
+glaser|1
+(noun)|Glaser|Donald Glaser|Donald Arthur Glaser|nuclear physicist (generic term)
+glasgow|1
+(noun)|Glasgow|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+glasnost|1
+(noun)|social policy (generic term)
+glass|12
+(noun)|solid (generic term)
+(noun)|drinking glass|container (generic term)
+(noun)|glassful|containerful (generic term)
+(noun)|field glass|spyglass|refracting telescope (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+(noun)|looking glass|mirror (generic term)
+(noun)|glassware (generic term)|glasswork (generic term)
+(verb)|glaze|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|scan (generic term)
+(verb)|glass in|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|glaze|glass over|glaze over|change (generic term)
+glass-cutter|2
+(noun)|glass cutter|cutter (generic term)
+(noun)|glass cutter|glassworker|glazier|glazer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+glass-like|1
+(adj)|glazed (similar term)|shiny (similar term)
+glass ceiling|1
+(noun)|ceiling (generic term)|cap (generic term)
+glass cutter|3
+(noun)|glass-cutter|cutter (generic term)
+(noun)|glass-cutter|glassworker|glazier|glazer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+glass eye|1
+(noun)|prosthesis (generic term)|prosthetic device (generic term)
+glass fiber|1
+(noun)|optical fiber|optical fibre|glass fibre|fiber (generic term)|fibre (generic term)
+glass fibre|1
+(noun)|optical fiber|glass fiber|optical fibre|fiber (generic term)|fibre (generic term)
+glass in|1
+(verb)|glass|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+glass lizard|1
+(noun)|glass snake|joint snake|anguid lizard (generic term)
+glass over|1
+(verb)|glaze|glass|glaze over|change (generic term)
+glass snake|1
+(noun)|glass lizard|joint snake|anguid lizard (generic term)
+glass sponge|1
+(noun)|sponge (generic term)|poriferan (generic term)|parazoan (generic term)
+glass wool|1
+(noun)|insulator (generic term)|dielectric (generic term)|nonconductor (generic term)|filter (generic term)
+glassblower|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+glassed|1
+(adj)|glazed|unglazed (antonym)
+glasses|1
+(noun)|spectacles|specs|eyeglasses|optical instrument (generic term)
+glasses case|1
+(noun)|case (generic term)
+glassful|1
+(noun)|glass|containerful (generic term)
+glasshouse|1
+(noun)|greenhouse|nursery|building (generic term)|edifice (generic term)
+glassless|1
+(adj)|unglazed|glazed (antonym)
+glassmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+glassware|1
+(noun)|glasswork|tableware (generic term)
+glasswork|1
+(noun)|glassware|tableware (generic term)
+glassworker|1
+(noun)|glass cutter|glass-cutter|glazier|glazer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+glassworks|1
+(noun)|workplace (generic term)|work (generic term)
+glasswort|2
+(noun)|saltwort|barilla|kali|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+(noun)|samphire|Salicornia europaea|herb (generic term)|herbaceous plant (generic term)
+glassy|3
+(adj)|smooth (similar term)
+(adj)|glazed|empty (similar term)
+(adj)|vitreous|vitrified|glazed (similar term)|shiny (similar term)
+glaswegian|2
+(adj)|Glaswegian|city|metropolis|urban center|port (related term)
+(noun)|Glaswegian|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+glauber's salt|1
+(noun)|Glauber's salt|Glauber's salts|salt (generic term)
+glauber's salts|1
+(noun)|Glauber's salt|Glauber's salts|salt (generic term)
+glaucium|1
+(noun)|Glaucium|genus Glaucium|dilleniid dicot genus (generic term)
+glaucium flavum|1
+(noun)|horn poppy|horned poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower (generic term)
+glaucoma|1
+(noun)|eye disease (generic term)
+glaucomys|1
+(noun)|Glaucomys|genus Glaucomys|mammal genus (generic term)
+glaucomys sabrinus|1
+(noun)|northern flying squirrel|Glaucomys sabrinus|American flying squirrel (generic term)
+glaucomys volans|1
+(noun)|southern flying squirrel|Glaucomys volans|American flying squirrel (generic term)
+glauconite|1
+(noun)|mineral (generic term)
+glaucous|1
+(adj)|opaque (similar term)
+glaucous bristlegrass|1
+(noun)|yellow bristlegrass|yellow bristle grass|yellow foxtail|Setaria glauca|foxtail (generic term)|foxtail grass (generic term)
+glaux|1
+(noun)|Glaux|genus Glaux|dicot genus (generic term)|magnoliopsid genus (generic term)
+glaux maritima|1
+(noun)|sea milkwort|sea trifoly|black saltwort|Glaux maritima|herb (generic term)|herbaceous plant (generic term)
+glaze|7
+(noun)|topping (generic term)
+(noun)|polish (generic term)|gloss (generic term)|glossiness (generic term)|burnish (generic term)
+(noun)|coating (generic term)|finish (generic term)|finishing (generic term)
+(verb)|coat (generic term)|surface (generic term)|glaze over (related term)
+(verb)|glass|glass over|glaze over|change (generic term)
+(verb)|glass|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|sugarcoat|candy|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+glaze over|2
+(verb)|film over|blur
+(verb)|glaze|glass|glass over|change (generic term)
+glazed|4
+(adj)|glassy|empty (similar term)
+(adj)|glassed|unglazed (antonym)
+(adj)|shiny|glassy (similar term)|vitreous (similar term)|vitrified (similar term)|glass-like (similar term)|glossy (similar term)|calendered (similar term)|icy (similar term)|unglazed (antonym)
+(adj)|coated (similar term)
+glazer|1
+(noun)|glass cutter|glass-cutter|glassworker|glazier|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+glazier|1
+(noun)|glass cutter|glass-cutter|glassworker|glazer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+gleam|5
+(noun)|gleaming|glow|lambency|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+(noun)|gleaming|glimmer|flash (generic term)
+(verb)|glitter|glisten|glint|shine|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|glimmer|radiate (generic term)
+(verb)|appear (generic term)|come along (generic term)
+gleaming|3
+(adj)|agleam|nitid|bright (similar term)
+(noun)|gleam|glimmer|flash (generic term)
+(noun)|gleam|glow|lambency|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+glean|1
+(verb)|reap|harvest|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+gleaner|2
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+(noun)|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+gleba|1
+(noun)|reproductive structure (generic term)
+glebe|1
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+glebe house|1
+(noun)|parsonage (generic term)|vicarage (generic term)|rectory (generic term)
+glechoma|1
+(noun)|Glechoma|genus Glechoma|asterid dicot genus (generic term)
+glechoma hederaceae|1
+(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+gleditsia|1
+(noun)|Gleditsia|genus Gleditsia|rosid dicot genus (generic term)
+gleditsia aquatica|1
+(noun)|water locust|swamp locust|Gleditsia aquatica|locust tree (generic term)|locust (generic term)
+gleditsia triacanthos|1
+(noun)|honey locust|Gleditsia triacanthos|locust tree (generic term)|locust (generic term)
+glee|2
+(noun)|hilarity|mirth|mirthfulness|gleefulness|gaiety (generic term)|merriment (generic term)
+(noun)|gloat|gloating|satisfaction (generic term)
+glee club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+gleeful|1
+(adj)|elated|joyful|jubilant|joyous (similar term)
+gleefully|1
+(adv)|joyously|joyfully|joylessly (antonym)
+gleefulness|1
+(noun)|hilarity|mirth|mirthfulness|glee|gaiety (generic term)|merriment (generic term)
+gleet|1
+(noun)|pus (generic term)|purulence (generic term)|suppuration (generic term)|ichor (generic term)|sanies (generic term)|festering (generic term)
+gleichenia|1
+(noun)|Gleichenia|genus Gleichenia|fern genus (generic term)
+gleichenia flabellata|1
+(noun)|umbrella fern|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern (generic term)
+gleicheniaceae|1
+(noun)|Gleicheniaceae|family Gleicheniaceae|fern family (generic term)
+glen|1
+(noun)|valley (generic term)|vale (generic term)
+glen canyon dam|1
+(noun)|Glen Canyon Dam|dam (generic term)|dike (generic term)|dyke (generic term)
+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 (generic term)
+glenda jackson|1
+(noun)|Jackson|Glenda Jackson|actress (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+glendower|1
+(noun)|Glendower|Owen Glendower|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+glengarry|1
+(noun)|Glengarry|cap (generic term)
+glenn|1
+(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)|senator (generic term)
+glenn curtiss|1
+(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist (generic term)
+glenn hammond curtiss|1
+(noun)|Curtiss|Glenn Curtiss|Glenn Hammond Curtiss|industrialist (generic term)
+glenn miller|1
+(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader (generic term)
+glenn t. seaborg|1
+(noun)|Seaborg|Glenn T. Seaborg|Glenn Theodore Seaborg|chemist (generic term)
+glenn theodore seaborg|1
+(noun)|Seaborg|Glenn T. Seaborg|Glenn Theodore Seaborg|chemist (generic term)
+glenoid cavity|1
+(noun)|glenoid fossa|pit (generic term)|fossa (generic term)
+glenoid fossa|2
+(noun)|mandibular fossa|pit (generic term)|fossa (generic term)
+(noun)|glenoid cavity|pit (generic term)|fossa (generic term)
+glia|1
+(noun)|neuroglia|interstitial tissue (generic term)
+glial|1
+(adj)|interstitial tissue (related term)
+glial cell|1
+(noun)|neurogliacyte|neuroglial cell|somatic cell (generic term)|vegetative cell (generic term)
+glib|3
+(adj)|superficial (similar term)
+(adj)|pat|slick|plausible (similar term)
+(adj)|glib-tongued|smooth-tongued|persuasive (similar term)
+glib-tongued|1
+(adj)|glib|smooth-tongued|persuasive (similar term)
+glibly|1
+(adv)|slickly
+glibness|1
+(noun)|slickness|superficiality (generic term)|shallowness (generic term)
+glide|6
+(noun)|semivowel|phone (generic term)|speech sound (generic term)|sound (generic term)
+(noun)|slide|coast|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|gliding|sailplaning|soaring|sailing|flight (generic term)|flying (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|glide by (related term)
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+(verb)|move (generic term)|displace (generic term)
+glide-bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+glide by|1
+(verb)|elapse|lapse|pass|slip by|slip away|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+glide path|1
+(noun)|approach path|approach|glide slope|air lane (generic term)|flight path (generic term)|airway (generic term)|skyway (generic term)
+glide slope|1
+(noun)|approach path|approach|glide path|air lane (generic term)|flight path (generic term)|airway (generic term)|skyway (generic term)
+glider|1
+(noun)|sailplane|heavier-than-air craft (generic term)
+gliding|1
+(noun)|glide|sailplaning|soaring|sailing|flight (generic term)|flying (generic term)
+gliding bacteria|1
+(noun)|myxobacteria|myxobacterium|myxobacter|slime bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+gliding joint|1
+(noun)|articulatio plana|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+glimmer|3
+(noun)|gleam|gleaming|flash (generic term)
+(noun)|inkling|intimation|glimmering|suggestion (generic term)
+(verb)|gleam|radiate (generic term)
+glimmering|2
+(adj)|glimmery|bright (similar term)
+(noun)|inkling|intimation|glimmer|suggestion (generic term)
+glimmery|1
+(adj)|glimmering|bright (similar term)
+glimpse|4
+(noun)|glance|coup d'oeil|look (generic term)|looking (generic term)|looking at (generic term)
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+(verb)|see (generic term)
+glinka|1
+(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer (generic term)
+glint|4
+(noun)|flicker|spark|flash (generic term)
+(noun)|brightness (generic term)
+(verb)|glitter|glisten|gleam|shine|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|glance|peek|look (generic term)
+glinting|1
+(adj)|aglitter|coruscant|fulgid|glistering|glittering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+glioblastoma|1
+(noun)|spongioblastoma|brain tumor (generic term)|brain tumour (generic term)
+glioma|1
+(noun)|brain tumor (generic term)|brain tumour (generic term)
+glipzide|1
+(noun)|Glucotrol|antidiabetic (generic term)|antidiabetic drug (generic term)
+gliricidia|1
+(noun)|tree (generic term)
+gliridae|1
+(noun)|Gliridae|family Gliridae|mammal family (generic term)
+glis|1
+(noun)|Glis|genus Glis|mammal genus (generic term)
+glis glis|1
+(noun)|loir|Glis glis|dormouse (generic term)
+glissade|2
+(noun)|dance step (generic term)|step (generic term)
+(verb)|dance (generic term)
+glissando|1
+(noun)|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+glisten|2
+(noun)|glitter|glister|scintillation|sparkle|brightness (generic term)
+(verb)|glitter|glint|gleam|shine|look (generic term)|appear (generic term)|seem (generic term)
+glistening|1
+(adj)|glossy|lustrous|sheeny|shiny|shining|bright (similar term)
+glister|1
+(noun)|glitter|glisten|scintillation|sparkle|brightness (generic term)
+glistering|1
+(adj)|aglitter|coruscant|fulgid|glinting|glittering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+glitch|1
+(noun)|bug|defect (generic term)|fault (generic term)|flaw (generic term)
+glitter|3
+(noun)|glister|glisten|scintillation|sparkle|brightness (generic term)
+(noun)|sparkle|coruscation|flash (generic term)
+(verb)|glisten|glint|gleam|shine|look (generic term)|appear (generic term)|seem (generic term)
+glittering|1
+(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittery|scintillant|scintillating|sparkly|bright (similar term)
+glittery|1
+(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|scintillant|scintillating|sparkly|bright (similar term)
+glitz|1
+(noun)|flashiness|garishness|gaudiness|loudness|brashness|meretriciousness|tawdriness|tastelessness (generic term)
+gloam|1
+(noun)|twilight|dusk|gloaming|nightfall|evenfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+gloaming|1
+(noun)|twilight|dusk|gloam|nightfall|evenfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+gloat|3
+(noun)|gloating|glee|satisfaction (generic term)
+(verb)|triumph|crow|boast (generic term)|tout (generic term)|swash (generic term)|shoot a line (generic term)|brag (generic term)|gas (generic term)|blow (generic term)|bluster (generic term)|vaunt (generic term)|gasconade (generic term)
+(verb)|look (generic term)
+gloating|1
+(noun)|gloat|glee|satisfaction (generic term)
+glob|1
+(noun)|ball|clod|lump|clump|chunk|agglomeration (generic term)
+global|2
+(adj)|planetary|world|worldwide|world-wide|international (similar term)
+(adj)|ball-shaped|globose|globular|orbicular|spheric|spherical|round (similar term)|circular (similar term)
+global aphasia|1
+(noun)|total aphasia|aphasia (generic term)
+global climate change|1
+(noun)|climate change|temperature change (generic term)
+global organization|1
+(noun)|world organization|world organisation|international organization|international organisation|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+global positioning system|1
+(noun)|Global Positioning System|GPS|navigational system (generic term)
+global warming|1
+(noun)|heating (generic term)|warming (generic term)
+globalisation|1
+(noun)|globalization|economic process (generic term)
+globalise|1
+(verb)|globalize|widen (generic term)|broaden (generic term)|extend (generic term)
+globalization|1
+(noun)|globalisation|economic process (generic term)
+globalize|1
+(verb)|globalise|widen (generic term)|broaden (generic term)|extend (generic term)
+globe|3
+(noun)|Earth|world|terrestrial planet (generic term)
+(noun)|ball|orb|sphere (generic term)
+(noun)|sphere (generic term)|model (generic term)|simulation (generic term)
+globe-trot|1
+(verb)|travel (generic term)|journey (generic term)
+globe amaranth|1
+(noun)|bachelor's button|Gomphrena globosa|flower (generic term)
+globe artichoke|2
+(noun)|artichoke|artichoke plant|Cynara scolymus|vegetable (generic term)
+(noun)|artichoke|vegetable (generic term)|veggie (generic term)
+globe flower|1
+(noun)|globeflower|herb (generic term)|herbaceous plant (generic term)
+globe lily|1
+(noun)|fairy lantern|liliaceous plant (generic term)
+globe mallow|1
+(noun)|false mallow|mallow (generic term)
+globe pepper|1
+(noun)|sweet pepper (generic term)
+globe thistle|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+globefish|1
+(noun)|puffer|pufferfish|blowfish|plectognath (generic term)|plectognath fish (generic term)
+globeflower|1
+(noun)|globe flower|herb (generic term)|herbaceous plant (generic term)
+globetrotter|1
+(noun)|world traveler|cosmopolitan (generic term)|cosmopolite (generic term)
+globicephala|1
+(noun)|Globicephala|genus Globicephala|mammal genus (generic term)
+globicephala melaena|1
+(noun)|pilot whale|black whale|common blackfish|blackfish|Globicephala melaena|dolphin (generic term)
+globigerina|1
+(noun)|foram (generic term)|foraminifer (generic term)
+globigerinidae|1
+(noun)|Globigerinidae|family Globigerinidae|protoctist family (generic term)
+globin|1
+(noun)|hematohiston|haematohiston|simple protein (generic term)
+globose|1
+(adj)|ball-shaped|global|globular|orbicular|spheric|spherical|round (similar term)|circular (similar term)
+globosity|1
+(noun)|sphericity|sphericalness|globularness|rotundity|rotundness|roundness (generic term)
+globular|1
+(adj)|ball-shaped|global|globose|orbicular|spheric|spherical|round (similar term)|circular (similar term)
+globular pearlite|1
+(noun)|granular pearlite|pearlite (generic term)
+globularness|1
+(noun)|sphericity|sphericalness|globosity|rotundity|rotundness|roundness (generic term)
+globule|1
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+globulin|1
+(noun)|simple protein (generic term)
+globus pallidus|1
+(noun)|pallidum|paleostriatum|basal ganglion (generic term)
+glochid|1
+(noun)|glochidium|spine (generic term)|thorn (generic term)|prickle (generic term)|pricker (generic term)|sticker (generic term)|spikelet (generic term)
+glochidium|1
+(noun)|glochid|spine (generic term)|thorn (generic term)|prickle (generic term)|pricker (generic term)|sticker (generic term)|spikelet (generic term)
+glockenspiel|1
+(noun)|orchestral bells|percussion instrument (generic term)|percussive instrument (generic term)
+glogg|1
+(noun)|punch (generic term)
+glom|2
+(verb)|hook|snitch|thieve|cop|knock off|steal (generic term)
+(verb)|get (generic term)|acquire (generic term)
+glomerular|1
+(adj)|capillary|capillary vessel (related term)
+glomerular capsule|1
+(noun)|Bowman's capsule|capsula glomeruli|membrane (generic term)|tissue layer (generic term)
+glomerule|1
+(noun)|cyme (generic term)
+glomerulonephritis|1
+(noun)|nephritis (generic term)|Bright's disease (generic term)
+glomerulus|1
+(noun)|capillary (generic term)|capillary vessel (generic term)
+gloom|3
+(noun)|somberness|sombreness|semidarkness (generic term)
+(noun)|gloominess|somberness|sombreness|melancholy (generic term)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|gloominess|glumness|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+gloomful|1
+(adj)|glooming|gloomy|sulky|dark (similar term)
+gloominess|3
+(noun)|gloom|glumness|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|gloom|somberness|sombreness|melancholy (generic term)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|lugubriousness|sadness|uncheerfulness (generic term)
+glooming|1
+(adj)|gloomy|gloomful|sulky|dark (similar term)
+gloomy|5
+(adj)|grim|darkening|hopeless (similar term)
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|grim|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(adj)|glooming|gloomful|sulky|dark (similar term)
+(adj)|depressing|depressive|saddening|sad (similar term)
+(adj)|glum|long-faced|dejected (similar term)
+gloomy dean|1
+(noun)|Inge|William Ralph Inge|Gloomy Dean|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+gloomy gus|1
+(noun)|sourpuss|picklepuss|gloomy Gus|pouter|unwelcome person (generic term)|persona non grata (generic term)
+gloria may josephine svensson|1
+(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress (generic term)
+gloria steinem|1
+(noun)|Steinem|Gloria Steinem|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+gloria swanson|1
+(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress (generic term)
+glorification|3
+(noun)|glory|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|idealization|idealisation|admiration (generic term)|appreciation (generic term)
+(noun)|adoration (generic term)|idolization (generic term)|idolisation (generic term)
+glorified|1
+(adj)|canonized|canonised|authorized (similar term)|authorised (similar term)
+glorify|4
+(verb)|laud|extol|exalt|proclaim|praise (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|transfigure|spiritualize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|embroider (generic term)|pad (generic term)|lard (generic term)|embellish (generic term)|aggrandize (generic term)|aggrandise (generic term)|blow up (generic term)|dramatize (generic term)|dramatise (generic term)
+gloriole|1
+(noun)|aura|aureole|halo|nimbus|glory|light (generic term)|lightness (generic term)
+gloriosa|1
+(noun)|glory lily|climbing lily|creeping lily|Gloriosa superba|poisonous plant (generic term)
+gloriosa superba|1
+(noun)|gloriosa|glory lily|climbing lily|creeping lily|Gloriosa superba|poisonous plant (generic term)
+glorious|5
+(adj)|bright (similar term)|celebrated (similar term)|historied (similar term)|storied (similar term)|divine (similar term)|elysian (similar term)|inspired (similar term)|empyreal (similar term)|empyrean (similar term)|sublime (similar term)|illustrious (similar term)|incandescent (similar term)|lustrous (similar term)|known (related term)|inglorious (antonym)
+(adj)|illustrious|redoubtable|respected|proud (similar term)
+(adj)|blessed (similar term)|blest (similar term)
+(adj)|brilliant|magnificent|splendid|impressive (similar term)
+(adj)|resplendent|splendid|splendiferous|beautiful (similar term)
+glorious revolution|1
+(noun)|English Revolution|Glorious Revolution|Bloodless Revolution|revolution (generic term)
+glory|4
+(noun)|glorification|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|resplendence|resplendency|beauty (generic term)
+(noun)|aura|aureole|halo|nimbus|gloriole|light (generic term)|lightness (generic term)
+(verb)|exuberate (generic term)|exult (generic term)|rejoice (generic term)|triumph (generic term)|jubilate (generic term)
+glory fern|1
+(noun)|Farley maidenhair|Farley maidenhair fern|Barbados maidenhair|Adiantum tenerum farleyense|brittle maidenhair (generic term)|brittle maidenhair fern (generic term)|Adiantum tenerum (generic term)
+glory hole|1
+(noun)|lazaretto|cabinet (generic term)|locker (generic term)|storage locker (generic term)
+glory lily|1
+(noun)|gloriosa|climbing lily|creeping lily|Gloriosa superba|poisonous plant (generic term)
+glory pea|1
+(noun)|clianthus|shrub (generic term)|bush (generic term)
+gloss|8
+(noun)|rubric|explanation (generic term)|account (generic term)
+(noun)|glossary|wordbook (generic term)
+(noun)|polish|glossiness|burnish|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)|smoothness (generic term)
+(noun)|semblance|color|colour|appearance (generic term)|visual aspect (generic term)
+(verb)|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)|gloss over (related term)|gloss over (related term)
+(verb)|comment|annotate|rede (generic term)|interpret (generic term)
+(verb)|translate (generic term)|interpret (generic term)|render (generic term)
+(verb)|color|colour|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+gloss over|2
+(verb)|skate over|smooth over|slur over|skimp over|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|whitewash|sleek over|hush up|cover (generic term)|cover up (generic term)
+glossa|1
+(noun)|tongue|lingua|clapper|organ (generic term)|articulator (generic term)
+glossalgia|1
+(noun)|glossodynia|pain (generic term)|hurting (generic term)
+glossarist|1
+(noun)|scholiast (generic term)
+glossary|1
+(noun)|gloss|wordbook (generic term)
+glossina|1
+(noun)|tsetse fly|tsetse|tzetze fly|tzetze|fly (generic term)
+glossiness|1
+(noun)|polish|gloss|burnish|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)|smoothness (generic term)
+glossinidae|1
+(noun)|Glossinidae|family Glossinidae|arthropod family (generic term)
+glossitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+glossodia|1
+(noun)|Glossodia|genus Glossodia|monocot genus (generic term)|liliopsid genus (generic term)
+glossodynia|1
+(noun)|glossalgia|pain (generic term)|hurting (generic term)
+glossodynia exfoliativa|1
+(noun)|Moeller's glossitis|glossitis (generic term)
+glossolalia|1
+(noun)|pathology (generic term)
+glossopharyngeal|1
+(adj)|organ|articulator (related term)|tubular cavity (related term)
+glossopharyngeal nerve|1
+(noun)|nervus glossopharyngeus|ninth cranial nerve|cranial nerve (generic term)
+glossopsitta|1
+(noun)|Glossopsitta|genus Glossopsitta|bird genus (generic term)
+glossopsitta versicolor|1
+(noun)|varied Lorikeet|Glossopsitta versicolor|lorikeet (generic term)
+glossoptosis|1
+(noun)|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+glossy|5
+(adj)|satiny|sleek|silken|silky|silklike|slick|smooth (similar term)
+(adj)|calendered|glazed (similar term)|shiny (similar term)
+(adj)|glistening|lustrous|sheeny|shiny|shining|bright (similar term)
+(noun)|slick|slick magazine|magazine (generic term)|mag (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+glossy-coated|1
+(adj)|glossy-haired|glossy-furred|hairy (similar term)|haired (similar term)|hirsute (similar term)
+glossy-furred|1
+(adj)|glossy-haired|glossy-coated|hairy (similar term)|haired (similar term)|hirsute (similar term)
+glossy-haired|1
+(adj)|glossy-coated|glossy-furred|hairy (similar term)|haired (similar term)|hirsute (similar term)
+glossy snake|1
+(noun)|Arizona elegans|colubrid snake (generic term)|colubrid (generic term)
+glottal|1
+(adj)|speech organ|vocal organ|organ of speech (related term)
+glottal catch|1
+(noun)|glottal stop|glottal plosive|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)
+glottal plosive|1
+(noun)|glottal stop|glottal catch|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)
+glottal stop|1
+(noun)|glottal plosive|glottal catch|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)
+glottis|1
+(noun)|speech organ (generic term)|vocal organ (generic term)|organ of speech (generic term)
+glottis spuria|1
+(noun)|rima vestibuli|rima respiratoria|false glottis|rima (generic term)
+glottis vera|1
+(noun)|rima glottidis|rima vocalis|true glottis|rima (generic term)
+glottochronological|1
+(adj)|chronology (related term)
+glottochronology|1
+(noun)|chronology (generic term)
+gloucester|2
+(noun)|Gloucester|town (generic term)
+(noun)|Gloucester|city (generic term)|metropolis (generic term)|urban center (generic term)
+gloucestershire|1
+(noun)|Gloucestershire|county (generic term)
+glove|3
+(noun)|baseball glove|baseball mitt|mitt|baseball equipment (generic term)
+(noun)|handwear (generic term)|hand wear (generic term)
+(noun)|boxing glove|boxing equipment (generic term)
+glove anesthesia|1
+(noun)|conversion disorder (generic term)|conversion reaction (generic term)|conversion hysteria (generic term)
+glove compartment|1
+(noun)|compartment (generic term)
+glove doll|1
+(noun)|hand puppet|glove puppet|puppet (generic term)
+glove leather|1
+(noun)|leather (generic term)
+glove puppet|1
+(noun)|hand puppet|glove doll|puppet (generic term)
+gloved|1
+(adj)|gauntleted (similar term)|gloveless (antonym)
+gloveless|1
+(adj)|gloved (antonym)
+glow|12
+(noun)|freshness|good health (generic term)|healthiness (generic term)
+(noun)|luminescence|luminosity (generic term)|brightness (generic term)|brightness level (generic term)|luminance (generic term)|luminousness (generic term)|light (generic term)
+(noun)|incandescence|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|feeling (generic term)
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|radiance|glowing|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|gleam|gleaming|lambency|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+(verb)|radiate (generic term)
+(verb)|beam|radiate|shine|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|burn|shine (generic term)|beam (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|beam|radiate|shine|feel (generic term)|experience (generic term)
+glow lamp|1
+(noun)|gas-discharge tube (generic term)
+glow tube|1
+(noun)|gas-discharge tube (generic term)
+glower|3
+(noun)|glare|stare (generic term)
+(verb)|glare|stare (generic term)
+(verb)|frown|lour|lower|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+glowering|1
+(adj)|dark|dour|glum|moody|morose|saturnine|sour|sullen|ill-natured (similar term)
+glowing|2
+(adj)|enthusiastic (similar term)
+(noun)|radiance|glow|light (generic term)|visible light (generic term)|visible radiation (generic term)
+glowworm|1
+(noun)|firefly (generic term)|lightning bug (generic term)
+gloxinia|1
+(noun)|houseplant (generic term)
+gloxinia perennis|1
+(noun)|Canterbury bell|Gloxinia perennis|gloxinia (generic term)
+gloxinia spesiosa|1
+(noun)|florist's gloxinia|Sinningia speciosa|Gloxinia spesiosa|gloxinia (generic term)
+glucagon|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+glucinium|1
+(noun)|beryllium|Be|atomic number 4|metallic element (generic term)|metal (generic term)
+gluck|1
+(noun)|Gluck|Christoph Willibald von Gluck|composer (generic term)
+glucocorticoid|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+glucophage|1
+(noun)|metformin|Glucophage|antidiabetic (generic term)|antidiabetic drug (generic term)
+glucose|1
+(noun)|aldohexose (generic term)
+glucose tolerance test|1
+(noun)|diagnostic test (generic term)|diagnostic assay (generic term)
+glucoside|1
+(noun)|glycoside (generic term)
+glucosuria|1
+(noun)|glycosuria (generic term)
+glucotrol|1
+(noun)|glipzide|Glucotrol|antidiabetic (generic term)|antidiabetic drug (generic term)
+glue|3
+(noun)|gum|mucilage|cement (generic term)
+(verb)|paste|attach (generic term)
+(verb)|fasten (generic term)
+glued|1
+(adj)|pasted|affixed (similar term)
+gluey|1
+(adj)|glutinous|gummy|mucilaginous|pasty|sticky|viscid|viscous|adhesive (similar term)
+glueyness|1
+(noun)|cohesiveness|gluiness|gumminess|tackiness|ropiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+glug|1
+(verb)|sound (generic term)|go (generic term)
+gluiness|1
+(noun)|cohesiveness|glueyness|gumminess|tackiness|ropiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+glum|2
+(adj)|gloomy|long-faced|dejected (similar term)
+(adj)|dark|dour|glowering|moody|morose|saturnine|sour|sullen|ill-natured (similar term)
+glume|1
+(noun)|bract (generic term)
+glumly|1
+(adv)|dourly|sullenly
+glumness|2
+(noun)|gloom|gloominess|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|moroseness|sullenness|moodiness (generic term)
+gluon|1
+(noun)|gauge boson (generic term)
+glut|3
+(noun)|oversupply|surfeit|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+(verb)|gorge|ingurgitate|overindulge|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+(verb)|flood|oversupply|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+glutamate|1
+(noun)|salt (generic term)
+glutamic acid|1
+(noun)|glutaminic acid|amino acid (generic term)|aminoalkanoic acid (generic term)
+glutamic oxalacetic transaminase|1
+(noun)|glutamic oxaloacetic transaminase|transaminase (generic term)|aminotransferase (generic term)|aminopherase (generic term)
+glutamic oxaloacetic transaminase|1
+(noun)|glutamic oxalacetic transaminase|transaminase (generic term)|aminotransferase (generic term)|aminopherase (generic term)
+glutamine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+glutaminic acid|1
+(noun)|glutamic acid|amino acid (generic term)|aminoalkanoic acid (generic term)
+glutathione peroxidase|1
+(noun)|peroxidase (generic term)|antioxidant (generic term)
+glute|1
+(noun)|gluteus|gluteus muscle|gluteal muscle|skeletal muscle (generic term)|striated muscle (generic term)
+gluteal|1
+(adj)|skeletal muscle|striated muscle (related term)
+gluteal artery|1
+(noun)|arteria glutes|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+gluteal muscle|1
+(noun)|gluteus|gluteus muscle|glute|skeletal muscle (generic term)|striated muscle (generic term)
+gluteal vein|1
+(noun)|vena gluteus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+glutelin|1
+(noun)|simple protein (generic term)
+gluten|1
+(noun)|protein (generic term)
+gluten-free diet|1
+(noun)|diet (generic term)
+gluten bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+glutethimide|1
+(noun)|Doriden|sedative (generic term)|sedative drug (generic term)|depressant (generic term)|downer (generic term)
+gluteus|1
+(noun)|gluteus muscle|gluteal muscle|glute|skeletal muscle (generic term)|striated muscle (generic term)
+gluteus maximus|1
+(noun)|gluteus (generic term)|gluteus muscle (generic term)|gluteal muscle (generic term)|glute (generic term)
+gluteus medius|1
+(noun)|gluteus (generic term)|gluteus muscle (generic term)|gluteal muscle (generic term)|glute (generic term)
+gluteus minimus|1
+(noun)|gluteus (generic term)|gluteus muscle (generic term)|gluteal muscle (generic term)|glute (generic term)
+gluteus muscle|1
+(noun)|gluteus|gluteal muscle|glute|skeletal muscle (generic term)|striated muscle (generic term)
+glutinosity|1
+(noun)|gelatinousness|glutinousness|viscosity (generic term)|viscousness (generic term)
+glutinous|1
+(adj)|gluey|gummy|mucilaginous|pasty|sticky|viscid|viscous|adhesive (similar term)
+glutinousness|1
+(noun)|gelatinousness|glutinosity|viscosity (generic term)|viscousness (generic term)
+glutted|1
+(adj)|overfull|full (similar term)
+glutton|2
+(noun)|gourmand|gourmandizer|trencherman|eater (generic term)|feeder (generic term)
+(noun)|Gulo gulo|wolverine|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+gluttonise|1
+(verb)|gluttonize|fress|eat (generic term)
+gluttonize|1
+(verb)|gluttonise|fress|eat (generic term)
+gluttonous|1
+(adj)|crapulous (similar term)|crapulent (similar term)|crapulous (similar term)|edacious (similar term)|esurient (similar term)|rapacious (similar term)|ravening (similar term)|ravenous (similar term)|voracious (similar term)|wolfish (similar term)|greedy (similar term)|hoggish (similar term)|piggish (similar term)|piggy (similar term)|porcine (similar term)|swinish (similar term)|overgreedy (similar term)|too-greedy (similar term)|indulgent (related term)|abstemious (antonym)
+gluttony|2
+(noun)|intemperance (generic term)
+(noun)|overeating|gula|mortal sin (generic term)|deadly sin (generic term)
+glyburide|1
+(noun)|DiaBeta|Micronase|antidiabetic (generic term)|antidiabetic drug (generic term)
+glyceraldehyde|1
+(noun)|glyceric aldehyde|aldehyde (generic term)
+glyceria|1
+(noun)|Glyceria|genus Glyceria|monocot genus (generic term)|liliopsid genus (generic term)
+glyceria grandis|1
+(noun)|reed meadow grass|Glyceria grandis|manna grass (generic term)|sweet grass (generic term)
+glyceric acid|1
+(noun)|acid (generic term)
+glyceric aldehyde|1
+(noun)|glyceraldehyde|aldehyde (generic term)
+glyceride|1
+(noun)|acylglycerol|glyceryl ester (generic term)|animal oil (generic term)
+glycerin|1
+(noun)|glycerol|glycerine|alcohol (generic term)
+glycerin jelly|1
+(noun)|glyceryl ester (generic term)
+glycerinated gelatin|1
+(noun)|formulation (generic term)|preparation (generic term)
+glycerine|1
+(noun)|glycerol|glycerin|alcohol (generic term)
+glycerite|1
+(noun)|glycerole|glyceryl ester (generic term)
+glycerogel|1
+(noun)|glycerogelatin|glyceryl ester (generic term)
+glycerogelatin|1
+(noun)|glycerogel|glyceryl ester (generic term)
+glycerol|1
+(noun)|glycerin|glycerine|alcohol (generic term)
+glycerol trimargarate|1
+(noun)|margarin|glyceryl ester (generic term)
+glycerol tripalmitate|1
+(noun)|tripalmitin|glyceryl ester (generic term)
+glycerol tristearate|1
+(noun)|tristearin|glyceryl ester (generic term)
+glycerole|1
+(noun)|glycerite|glyceryl ester (generic term)
+glycerolise|1
+(verb)|glycerolize|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|deglycerolize (antonym)
+glycerolize|1
+(verb)|glycerolise|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|deglycerolize (antonym)
+glyceryl|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+glyceryl ester|1
+(noun)|ester (generic term)
+glyceryl trinitrate|1
+(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+glycine|2
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+(noun)|Glycine|genus Glycine|rosid dicot genus (generic term)
+glycine max|1
+(noun)|soy|soya|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+glycogen|1
+(noun)|animal starch|polysaccharide (generic term)|polyose (generic term)
+glycogenesis|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|conversion (generic term)|transition (generic term)|changeover (generic term)
+glycogenic|1
+(adj)|polysaccharide|polyose (related term)
+glycol|2
+(noun)|ethylene glycol|ethanediol|antifreeze (generic term)
+(noun)|diol|dihydric alcohol|alcohol (generic term)
+glycolic acid|1
+(noun)|glycollic acid|hydroxyacetic acid|acid (generic term)
+glycollic acid|1
+(noun)|glycolic acid|hydroxyacetic acid|acid (generic term)
+glycolysis|1
+(noun)|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+glycoprotein|1
+(noun)|conjugated protein (generic term)|compound protein (generic term)
+glycoside|1
+(noun)|organic compound (generic term)
+glycosuria|1
+(noun)|symptom (generic term)
+glycyrrhiza|1
+(noun)|Glycyrrhiza|genus Glycyrrhiza|rosid dicot genus (generic term)
+glycyrrhiza glabra|1
+(noun)|licorice|liquorice|Glycyrrhiza glabra|herb (generic term)|herbaceous plant (generic term)
+glycyrrhiza lepidota|1
+(noun)|wild licorice|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb (generic term)|herbaceous plant (generic term)
+glyoxaline|1
+(noun)|imidazole|iminazole|base (generic term)|alkali (generic term)
+glyph|1
+(noun)|glyptic art (generic term)|glyptography (generic term)
+glyptic art|1
+(noun)|glyptography|carving (generic term)
+glyptics|1
+(noun)|lithoglyptics|glyptic art (generic term)|glyptography (generic term)
+glyptography|2
+(noun)|glyptic art|carving (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+gm|1
+(noun)|gram|gramme|g|metric weight unit (generic term)|weight unit (generic term)
+gmt|1
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time (generic term)
+gnaeus julius agricola|1
+(noun)|Agricola|Gnaeus Julius Agricola|general (generic term)|full general (generic term)
+gnaeus pompeius magnus|1
+(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+gnaphalium|1
+(noun)|Gnaphalium|genus Gnaphalium|asterid dicot genus (generic term)
+gnaphalium sylvaticum|1
+(noun)|chafeweed|wood cudweed|Gnaphalium sylvaticum|cudweed (generic term)
+gnarl|3
+(noun)|knot|distorted shape (generic term)|distortion (generic term)
+(verb)|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+(verb)|murmur|mutter|grumble|croak|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+gnarled|1
+(adj)|gnarly|knotted|knotty|knobbed|crooked (similar term)
+gnarly|1
+(adj)|gnarled|knotted|knotty|knobbed|crooked (similar term)
+gnash|1
+(verb)|grate (generic term)|grind (generic term)
+gnat|2
+(noun)|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+(noun)|mosquito (generic term)
+gnatcatcher|1
+(noun)|warbler (generic term)
+gnathion|1
+(noun)|craniometric point (generic term)
+gnathostomata|1
+(noun)|Gnathostomata|superclass Gnathostomata|class (generic term)
+gnathostome|1
+(noun)|vertebrate (generic term)|craniate (generic term)
+gnaw|2
+(verb)|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)|bite (generic term)|seize with teeth (generic term)
+(verb)|erode|gnaw at|eat at|wear away|decay (generic term)|crumble (generic term)|delapidate (generic term)
+gnaw at|1
+(verb)|erode|gnaw|eat at|wear away|decay (generic term)|crumble (generic term)|delapidate (generic term)
+gnawer|1
+(noun)|rodent|gnawing animal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+gnawing animal|1
+(noun)|rodent|gnawer|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+gnawing mammal|1
+(noun)|lagomorph|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+gneiss|1
+(noun)|metamorphic rock (generic term)
+gnetaceae|1
+(noun)|Gnetaceae|family Gnetaceae|gymnosperm family (generic term)
+gnetales|1
+(noun)|Gnetales|order Gnetales|plant order (generic term)
+gnetophyta|1
+(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class (generic term)
+gnetophytina|1
+(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class (generic term)
+gnetopsida|1
+(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class (generic term)
+gnetum|1
+(noun)|Gnetum gnemon|gymnospermous tree (generic term)
+gnetum gnemon|1
+(noun)|gnetum|Gnetum gnemon|gymnospermous tree (generic term)
+gnocchi|1
+(noun)|dumpling (generic term)|dumplings (generic term)
+gnome|2
+(noun)|dwarf|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|maxim (generic term)|axiom (generic term)
+gnomic|1
+(adj)|maxim|axiom (related term)
+gnomish|1
+(adj)|small (similar term)|little (similar term)
+gnomon|1
+(noun)|indicator (generic term)
+gnosis|1
+(noun)|intuition (generic term)
+gnostic|3
+(adj)|Gnostic|theological doctrine|heresy|unorthodoxy (related term)
+(adj)|agnostic (antonym)
+(noun)|Gnostic|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+gnosticism|1
+(noun)|Gnosticism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+gnp|1
+(noun)|gross national product|GNP|value (generic term)
+gnu|1
+(noun)|wildebeest|antelope (generic term)
+gnu goat|1
+(noun)|takin|Budorcas taxicolor|goat antelope (generic term)
+go|31
+(adj)|a-ok (similar term)|a-okay (similar term)|no-go (antonym)
+(noun)|spell|tour|turn|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|Adam|ecstasy|XTC|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+(noun)|crack|fling|pass|whirl|offer|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|go game|board game (generic term)
+(verb)|travel|move|locomote|move on (related term)|move out (related term)|move back (related term)|go on (related term)|go up (related term)|go by (related term)|go off (related term)|go out (related term)|go by (related term)|go up (related term)|go down (related term)|go down (related term)|go down (related term)|go under (related term)|go on (related term)|go around (related term)|stay in place (antonym)
+(verb)|proceed|move|act (generic term)|move (generic term)
+(verb)|go away|depart|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|come (antonym)
+(verb)|become|get|change state (generic term)|turn (generic term)|get on (related term)|get along (related term)|get over (related term)|get ahead (related term)
+(verb)|run|be (generic term)
+(verb)|run|pass|lead|extend|be (generic term)|extend to (related term)|run along (related term)
+(verb)|proceed|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|be (generic term)
+(verb)|sound|cause to be perceived (generic term)
+(verb)|function|work|operate|run|malfunction (antonym)
+(verb)|run low|run short|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|move|run|change (generic term)
+(verb)|survive|last|live|live on|endure|hold up|hold out
+(verb)|go with (related term)
+(verb)|die|decease|perish|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|belong|be (generic term)
+(verb)|compare (generic term)
+(verb)|start|get going|stop (antonym)
+(verb)|move
+(verb)|blend|blend in|harmonize (generic term)|harmonise (generic term)|consort (generic term)|accord (generic term)|concord (generic term)|fit in (generic term)|agree (generic term)
+(verb)|lead|be (generic term)
+(verb)|fit|fit (generic term)
+(verb)|rifle|search (generic term)
+(verb)|plump|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|fail|go bad|give way|die|give out|conk out|break|break down|change (generic term)
+go-ahead|2
+(noun)|green light|traffic light (generic term)|traffic signal (generic term)|stoplight (generic term)
+(noun)|enterprise|enterprisingness|initiative|drive (generic term)
+go-around|1
+(noun)|overshoot|wave-off|landing approach (generic term)
+go-as-you-please|1
+(adj)|unconventional (similar term)
+go-between|1
+(noun)|mediator|intermediator|intermediary|intercessor|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+go-cart|3
+(noun)|walker|baby-walker|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|handcart|pushcart|cart|wheeled vehicle (generic term)
+(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|pushchair|pusher|wheeled vehicle (generic term)
+go-getter|1
+(noun)|whizz-kid|whiz-kid|ball of fire|actor (generic term)|doer (generic term)|worker (generic term)
+go-kart|1
+(noun)|motor vehicle (generic term)|automotive vehicle (generic term)
+go-slow|1
+(noun)|job action (generic term)
+go-to-meeting|1
+(adj)|Sunday-go-to-meeting|best (similar term)
+go a long way|1
+(verb)|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+go about|1
+(verb)|set about|approach|act (generic term)|move (generic term)
+go across|1
+(verb)|pass|go through|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|pass over (related term)|pass over (related term)|pass over (related term)
+go after|2
+(verb)|chase|chase after|trail|tail|tag|give chase|dog|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|quest for|quest after|pursue|search (generic term)|seek (generic term)|look for (generic term)
+go against|3
+(verb)|violate|break|conform to (antonym)
+(verb)|transgress|offend|infract|violate|breach|break|disrespect (generic term)|keep (antonym)
+(verb)|buck|react (generic term)|oppose (generic term)
+go ahead|1
+(verb)|plow ahead|act (generic term)|move (generic term)
+go all out|1
+(verb)|give one's best|do one's best|give full measure|do (generic term)|perform (generic term)
+go along|3
+(verb)|play along|collaborate (generic term)|join forces (generic term)|cooperate (generic term)|get together (generic term)
+(verb)|continue|go on|proceed|keep|act (generic term)|move (generic term)|discontinue (antonym)
+(verb)|elapse|lapse|pass|slip by|glide by|slip away|go by|slide by|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+go around|5
+(verb)|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|spread|circulate|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|outflank|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|revolve|rotate|turn (generic term)|revolve around (related term)
+(verb)|bypass|short-circuit|get around|avoid (generic term)
+go away|4
+(verb)|go|depart|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|come (antonym)
+(verb)|leave|go forth|arrive (antonym)
+(verb)|vanish|disappear|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|disappear|vanish|appear (antonym)
+go back|4
+(verb)|return|get back|come back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|date back|date from|originate (generic term)|initiate (generic term)|start (generic term)
+(verb)|recur|hark back (generic term)|return (generic term)|come back (generic term)|recall (generic term)
+(verb)|recover|recuperate|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+go back on|1
+(verb)|renege|renege on|renegue on|revoke (generic term)|annul (generic term)|lift (generic term)|countermand (generic term)|reverse (generic term)|repeal (generic term)|overturn (generic term)|rescind (generic term)|vacate (generic term)
+go bad|2
+(verb)|fail|give way|die|give out|conk out|go|break|break down|change (generic term)
+(verb)|spoil|decay (generic term)
+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 (generic term)
+go board|1
+(noun)|board (generic term)|gameboard (generic term)
+go by|4
+(verb)|elapse|lapse|pass|slip by|glide by|slip away|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|travel by|pass by|surpass|go past|pass|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|go under
+(verb)|follow (generic term)|conform to (generic term)
+go deep|1
+(verb)|go far|run (generic term)|go (generic term)|pass (generic term)|lead (generic term)|extend (generic term)
+go down|6
+(verb)|descend|fall|come down|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|fall in (related term)|rise (antonym)|ascend (antonym)
+(verb)|sink|settle|go under|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|sink in (related term)|float (antonym)
+(verb)|decline|wane|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|lose (generic term)
+(verb)|set|go under|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|rise (antonym)
+(verb)|crash|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+go down on|1
+(verb)|fellate|blow|stimulate (generic term)|excite (generic term)|stir (generic term)
+go dutch|1
+(verb)|go Dutch|pay (generic term)
+go far|2
+(verb)|arrive|make it|get in|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|go deep|run (generic term)|go (generic term)|pass (generic term)|lead (generic term)|extend (generic term)
+go fish|1
+(noun)|Go Fish|card game (generic term)|cards (generic term)
+go for|5
+(verb)|apply|hold|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|accept|consent|react (generic term)|respond (generic term)|refuse (antonym)
+(verb)|hope|plan (generic term)|be after (generic term)
+(verb)|fancy|take to|desire (generic term)|want (generic term)
+(verb)|try for|compete (generic term)|vie (generic term)|contend (generic term)
+go for broke|1
+(verb)|gamble (generic term)|chance (generic term)|risk (generic term)|hazard (generic term)|take chances (generic term)|adventure (generic term)|run a risk (generic term)|take a chance (generic term)
+go forth|2
+(verb)|leave|go away|arrive (antonym)
+(verb)|issue|emerge|come out|come forth|egress
+go forward|1
+(verb)|proceed|continue|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+go game|1
+(noun)|go|board game (generic term)
+go home|1
+(verb)|head home|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+go in|1
+(verb)|enter|come in|get into|get in|go into|move into|move in (related term)|enter upon (related term)|exit (antonym)
+go into|1
+(verb)|enter|come in|get into|get in|go in|move into|move in (related term)|enter upon (related term)|exit (antonym)
+go off|6
+(verb)|abscond|bolt|absquatulate|decamp|run off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|explode (generic term)|burst (generic term)
+(verb)|fire|discharge
+(verb)|stop (generic term)|halt (generic term)|go on (antonym)
+(verb)|come off|go over|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|implode|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)|explode (antonym)
+go off at half-cock|1
+(verb)|go off half-cocked|act (generic term)|move (generic term)
+go off half-cocked|1
+(verb)|go off at half-cock|act (generic term)|move (generic term)
+go on|5
+(verb)|continue|proceed|go along|keep|act (generic term)|move (generic term)|discontinue (antonym)
+(verb)|happen|hap|pass off|occur|pass|fall out|come about|take place
+(verb)|advance|progress|pass on|move on|march on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+(verb)|continue|carry on|proceed|talk (generic term)|speak (generic term)
+(verb)|come up|come on|start (generic term)|go (generic term)|get going (generic term)|go off (antonym)
+go out|5
+(verb)|exit|get out|leave|move (generic term)|enter (antonym)
+(verb)|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|change (generic term)|come in (antonym)
+(verb)|go steady|date|see|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+go over|4
+(verb)|review|survey|inspect (generic term)
+(verb)|check|check up on|look into|check out|suss out|check over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|go off|come off|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|fall over|break down (generic term)|collapse (generic term)
+go past|2
+(verb)|travel by|pass by|surpass|go by|pass|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|exceed|transcend|overstep|pass|top|excel (generic term)|stand out (generic term)|surpass (generic term)
+go steady|1
+(verb)|go out|date|see|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+go through|5
+(verb)|experience|undergo|see|participate (generic term)|take part (generic term)
+(verb)|work through|run through|work (generic term)
+(verb)|pass|go across|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|pass over (related term)|pass over (related term)|pass over (related term)
+(verb)|devour|down|consume|eat (generic term)
+(verb)|follow through|follow up|follow out|carry out|implement|put through|complete (generic term)|finish (generic term)
+go through the motions|1
+(verb)|make (generic term)|pretend (generic term)|make believe (generic term)
+go to|1
+(verb)|attend|be (generic term)|miss (antonym)
+go to bed|1
+(verb)|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+go to pieces|1
+(verb)|fall apart|break down (generic term)|lose it (generic term)|snap (generic term)
+go to pot|1
+(verb)|go to the dogs|deteriorate (generic term)
+go to sleep|1
+(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|sack out|retire|turn out (antonym)|get up (antonym)
+go to the dogs|1
+(verb)|go to pot|deteriorate (generic term)
+go to war|1
+(verb)|take arms|take up arms|war (generic term)
+go under|3
+(verb)|sink|settle|go down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|sink in (related term)|float (antonym)
+(verb)|set|go down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|rise (antonym)
+(verb)|go by
+go up|7
+(verb)|rise|lift|arise|move up|come up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|rise|climb|grow (generic term)
+(verb)|approach|near|come on|draw near|draw close|come near|come (generic term)|come up (generic term)
+(verb)|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|climb|climb up|mount|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|climb on (related term)|climb down (related term)
+(verb)|burn down|burn up|burn (generic term)|combust (generic term)
+(verb)|ascend|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|descend (antonym)
+go with|3
+(verb)|attach to|accompany|come with
+(verb)|side|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)|straddle (antonym)
+(verb)|collocate with|construe with|cooccur with|co-occur with|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+go wrong|1
+(verb)|fail|miscarry|succeed (antonym)
+goa|1
+(noun)|Goa|state (generic term)|province (generic term)
+goa bean|2
+(noun)|winged bean|winged pea|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+(noun)|bean (generic term)|edible bean (generic term)
+goa bean vine|1
+(noun)|winged bean|winged pea|goa bean|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+goa powder|1
+(noun)|araroba|Goa powder|chrysarobin|powder (generic term)
+goad|6
+(noun)|prod|device (generic term)
+(noun)|goading|prod|prodding|urging|spur|spurring|encouragement (generic term)
+(verb)|spur|encourage (generic term)
+(verb)|prod (generic term)|incite (generic term)|egg on (generic term)
+(verb)|prick|stab (generic term)|jab (generic term)
+(verb)|needle|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+goaded|1
+(adj)|driven|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+goading|1
+(noun)|goad|prod|prodding|urging|spur|spurring|encouragement (generic term)
+goal|4
+(noun)|end|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|score (generic term)
+(noun)|game equipment (generic term)
+(noun)|finish|destination|end (generic term)
+goal-directed|1
+(adj)|purposive|purposeful (similar term)
+goal-kick|1
+(noun)|kick (generic term)|boot (generic term)|kicking (generic term)
+goal line|1
+(noun)|line (generic term)
+goalie|2
+(noun)|goalkeeper|goaltender|netkeeper|netminder|soccer player (generic term)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|goalkeeper|goaltender|netkeeper|position (generic term)
+goalkeeper|2
+(noun)|goalie|goaltender|netkeeper|netminder|soccer player (generic term)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|goalie|goaltender|netkeeper|position (generic term)
+goalless|1
+(adj)|scoreless|hitless|unsuccessful (similar term)
+goalmouth|1
+(noun)|area (generic term)
+goalpost|1
+(noun)|post (generic term)
+goaltender|2
+(noun)|goalkeeper|goalie|netkeeper|netminder|soccer player (generic term)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|goalkeeper|goalie|netkeeper|position (generic term)
+goat|4
+(noun)|caprine animal|bovid (generic term)
+(noun)|butt|laughingstock|stooge|victim (generic term)|dupe (generic term)
+(noun)|Capricorn|Goat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Capricorn|Capricorn the Goat|Goat|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+goat's foot|1
+(noun)|goatsfoot|Oxalis caprina|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+goat's rue|2
+(noun)|catgut|wild sweet pea|Tephrosia virginiana|hoary pea (generic term)
+(noun)|goat rue|Galega officinalis|herb (generic term)|herbaceous plant (generic term)
+goat-like|1
+(adj)|animal (similar term)
+goat antelope|1
+(noun)|bovid (generic term)
+goat cheese|1
+(noun)|chevre|cheese (generic term)
+goat god|1
+(noun)|Pan|Greek deity (generic term)
+goat grass|1
+(noun)|Aegilops triuncalis|grass (generic term)
+goat herder|1
+(noun)|goatherd|herder (generic term)|herdsman (generic term)|drover (generic term)
+goat rue|1
+(noun)|goat's rue|Galega officinalis|herb (generic term)|herbaceous plant (generic term)
+goat willow|1
+(noun)|florist's willow|pussy willow|Salix caprea|sallow (generic term)
+goatee|1
+(noun)|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+goateed|1
+(adj)|unshaven (similar term)|unshaved (similar term)
+goatfish|1
+(noun)|red mullet|surmullet|Mullus surmuletus|mullet (generic term)
+goatherd|1
+(noun)|goat herder|herder (generic term)|herdsman (generic term)|drover (generic term)
+goats' milk|1
+(noun)|milk (generic term)
+goatsbeard|1
+(noun)|meadow salsify|shepherd's clock|Tragopogon pratensis|wildflower (generic term)|wild flower (generic term)
+goatsfoot|1
+(noun)|goat's foot|Oxalis caprina|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+goatskin|1
+(noun)|hide (generic term)|fell (generic term)
+goatsucker|1
+(noun)|nightjar|caprimulgid|caprimulgiform bird (generic term)
+gob|3
+(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|sea dog|sailor (generic term)|crewman (generic term)
+(noun)|ball (generic term)|clod (generic term)|glob (generic term)|lump (generic term)|clump (generic term)|chunk (generic term)
+(noun)|trap|cakehole|hole|maw|yap|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+gobbet|1
+(noun)|raw meat (generic term)
+gobble|3
+(noun)|cry (generic term)
+(verb)|bolt|eat (generic term)|gobble up (related term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+gobble up|1
+(verb)|garbage down|shovel in|bolt down|eat (generic term)
+gobbledygook|1
+(noun)|jargon (generic term)
+gobbler|2
+(noun)|eater (generic term)|feeder (generic term)
+(noun)|turkey cock|tom|tom turkey|turkey (generic term)|Meleagris gallopavo (generic term)
+gobi|1
+(noun)|Gobi|Gobi Desert|desert (generic term)
+gobi desert|1
+(noun)|Gobi|Gobi Desert|desert (generic term)
+gobiesocidae|1
+(noun)|Gobiesocidae|family Gobiesocidae|fish family (generic term)
+gobiesox|1
+(noun)|Gobiesox|genus Gobiesox|fish genus (generic term)
+gobiesox strumosus|1
+(noun)|skillet fish|skilletfish|Gobiesox strumosus|clingfish (generic term)
+gobiidae|1
+(noun)|Gobiidae|family Gobiidae|fish family (generic term)
+gobio|1
+(noun)|Gobio|genus Gobio|fish genus (generic term)
+gobio gobio|1
+(noun)|gudgeon|Gobio gobio|cyprinid (generic term)|cyprinid fish (generic term)
+goblet|2
+(noun)|glass (generic term)|drinking glass (generic term)
+(noun)|chalice|cup (generic term)
+goblet-shaped|1
+(adj)|round (similar term)|circular (similar term)
+goblet cell|1
+(noun)|epithelial cell (generic term)
+goblin|1
+(noun)|hob|hobgoblin|evil spirit (generic term)
+gobs|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+gobsmacked|1
+(adj)|surprised (similar term)
+goby|1
+(noun)|gudgeon|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+god|4
+(noun)|God|Supreme Being|spiritual being (generic term)|supernatural being (generic term)
+(noun)|deity|divinity|immortal|spiritual being (generic term)|supernatural being (generic term)
+(noun)|superior (generic term)|higher-up (generic term)|superordinate (generic term)
+(noun)|idol|graven image|effigy (generic term)|image (generic term)|simulacrum (generic term)
+god's acre|1
+(noun)|churchyard|God's acre|yard (generic term)
+god's will|1
+(noun)|God's Will|omnipotence (generic term)
+god's wisdom|1
+(noun)|God's Wisdom|omniscience (generic term)
+god-awful|1
+(adj)|beastly|hellish|unpleasant (similar term)
+god-fearing|1
+(adj)|devout|pious|religious (similar term)
+god almighty|1
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+god knows how|1
+(adv)|God knows how
+god of war|1
+(noun)|war god|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+god tree|1
+(noun)|kapok|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+godard|1
+(noun)|Godard|Jean Luc Godard|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+godchild|1
+(noun)|baby (generic term)|babe (generic term)|infant (generic term)
+goddam|2
+(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|goddamn|goddamned|infernal|cursed (similar term)|curst (similar term)
+(adv)|goddamn|goddamned
+goddamn|3
+(adj)|damn|cursed (similar term)|curst (similar term)
+(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|goddam|goddamned|infernal|cursed (similar term)|curst (similar term)
+(adv)|goddam|goddamned
+goddamned|2
+(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|goddam|goddamn|infernal|cursed (similar term)|curst (similar term)
+(adv)|goddam|goddamn
+goddard|1
+(noun)|Goddard|Robert Hutchings Goddard|physicist (generic term)
+goddaughter|1
+(noun)|godchild (generic term)
+goddess|1
+(noun)|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+godel|1
+(noun)|Godel|Kurt Godel|mathematician (generic term)
+godfather|2
+(noun)|godparent (generic term)
+(noun)|patron (generic term)|sponsor (generic term)|supporter (generic term)
+godforsaken|1
+(adj)|desert|waste|wild|inhospitable (similar term)
+godhead|1
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+godiva|1
+(noun)|Godiva|Lady Godiva|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+godless|1
+(adj)|irreverent|impious (similar term)
+godlessness|2
+(noun)|atheism|religious orientation (generic term)|theism (antonym)
+(noun)|ungodliness|impiety (generic term)|impiousness (generic term)|godliness (antonym)
+godlike|2
+(adj)|divine|superhuman (similar term)
+(adj)|divine|heavenly (similar term)
+godliness|1
+(noun)|piety (generic term)|piousness (generic term)|ungodliness (antonym)
+godly|2
+(adj)|reverent|worshipful|pious (similar term)
+(adj)|divine|heavenly (similar term)
+godmother|1
+(noun)|godparent (generic term)
+godown|1
+(noun)|warehouse (generic term)|storage warehouse (generic term)
+godparent|1
+(noun)|patron (generic term)|sponsor (generic term)|supporter (generic term)
+godsend|1
+(noun)|boom|bonanza|gold rush|gravy|manna from heaven|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+godson|1
+(noun)|godchild (generic term)
+godspeed|1
+(noun)|Godspeed|success (generic term)
+godunov|1
+(noun)|Godunov|Boris Godunov|Boris Fyodorovich Godunov|czar (generic term)|tsar (generic term)|tzar (generic term)
+godwin austen|1
+(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak (generic term)
+godwit|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+goebbels|1
+(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi (generic term)|German Nazi (generic term)|propagandist (generic term)
+goer|1
+(noun)|departer|leaver|migrant (generic term)|migrator (generic term)
+goering|1
+(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi (generic term)|German Nazi (generic term)
+goeteborg|1
+(noun)|Goteborg|Goeteborg|Gothenburg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+goethals|1
+(noun)|Goethals|George Washington Goethals|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+goethe|1
+(noun)|Goethe|Johann Wolfgang von Goethe|poet (generic term)|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+goethean|1
+(adj)|Goethean|Goethian|poet|novelist|dramatist|playwright (related term)
+goethian|1
+(adj)|Goethean|Goethian|poet|novelist|dramatist|playwright (related term)
+goethite|1
+(noun)|gothite|iron ore (generic term)
+gofer|1
+(noun)|employee (generic term)
+goffer|4
+(noun)|gopher|eager beaver (generic term)|busy bee (generic term)|live wire (generic term)|sharpie (generic term)|sharpy (generic term)
+(noun)|gauffer|goffering iron|gauffering iron|iron (generic term)|smoothing iron (generic term)
+(noun)|gauffer|frill (generic term)|flounce (generic term)|ruffle (generic term)|furbelow (generic term)
+(verb)|gauffer|wave (generic term)
+goffering iron|1
+(noun)|goffer|gauffer|gauffering iron|iron (generic term)|smoothing iron (generic term)
+gog and magog|1
+(noun)|Gog and Magog|mythical being (generic term)
+goggle|1
+(verb)|gape|gawp|gawk|look (generic term)
+goggle-eye|1
+(noun)|bigeye scad|big-eyed scad|Selar crumenophthalmus|scad (generic term)
+goggle-eyed|1
+(adj)|openmouthed|popeyed|surprised (similar term)
+goggle box|1
+(noun)|television receiver|television|television set|tv|tv set|idiot box|boob tube|telly|receiver (generic term)|receiving system (generic term)
+goggles|1
+(noun)|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+gogh|1
+(noun)|van Gogh|Vincent van Gogh|Gogh|painter (generic term)
+gogol|1
+(noun)|Gogol|Nikolai Vasilievich Gogol|writer (generic term)|author (generic term)
+goidelic|1
+(noun)|Gaelic|Goidelic|Erse|Celtic (generic term)|Celtic language (generic term)
+going|4
+(adj)|active (similar term)
+(noun)|departure|going away|leaving|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|passing|loss|departure|exit|expiration|release|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|sledding|accomplishment (generic term)|achievement (generic term)
+going-out-of-business sale|1
+(noun)|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+going-over|2
+(noun)|examination (generic term)|scrutiny (generic term)
+(noun)|castigation|earful|bawling out|chewing out|upbraiding|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+going ashore|1
+(noun)|debarkation (generic term)|disembarkation (generic term)|disembarkment (generic term)
+going away|1
+(noun)|departure|going|leaving|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+going to jerusalem|1
+(noun)|musical chairs|going to Jerusalem|child's game (generic term)
+going under|1
+(noun)|foundering|sinking (generic term)
+goiter|1
+(noun)|goitre|struma|thyromegaly|disease (generic term)
+goitre|1
+(noun)|goiter|struma|thyromegaly|disease (generic term)
+goitrogen|1
+(noun)|compound (generic term)|chemical compound (generic term)
+golan|1
+(noun)|Golan Heights|Golan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+golan heights|1
+(noun)|Golan Heights|Golan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+golconda|1
+(noun)|Golconda|source (generic term)
+gold|7
+(adj)|golden|gilded|metallic (similar term)|metal (similar term)
+(adj)|aureate|gilded|gilt|golden|chromatic (similar term)
+(noun)|precious metal (generic term)
+(noun)|amber|yellow (generic term)|yellowness (generic term)
+(noun)|Au|atomic number 79|noble metal (generic term)
+(noun)|wealth (generic term)|riches (generic term)
+(noun)|invaluableness (generic term)|preciousness (generic term)|pricelessness (generic term)|valuableness (generic term)
+gold-bearing|1
+(adj)|auriferous|metallic (similar term)|metal (similar term)
+gold-beater|1
+(noun)|goldbeater|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+gold-colored|1
+(adj)|gold-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+gold-coloured|1
+(adj)|gold-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+gold-crowned kinglet|1
+(noun)|Regulus satrata|kinglet (generic term)
+gold-plate|1
+(verb)|goldplate|gold plate|plate (generic term)
+gold-tail moth|1
+(noun)|Euproctis chrysorrhoea|lymantriid (generic term)|tussock moth (generic term)
+gold-worker|1
+(noun)|goldsmith|goldworker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+gold braid|1
+(noun)|braid|braiding|trimming (generic term)|trim (generic term)|passementerie (generic term)
+gold coast|2
+(noun)|Ghana|Republic of Ghana|Gold Coast|African country (generic term)|African nation (generic term)
+(noun)|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+gold digger|2
+(noun)|gold miner|gold panner|miner (generic term)|mineworker (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+gold dust|1
+(noun)|gold (generic term)|Au (generic term)|atomic number 79 (generic term)
+gold fern|1
+(noun)|Pityrogramma chrysophylla|fern (generic term)
+gold fever|1
+(noun)|fever (generic term)
+gold foil|1
+(noun)|foil (generic term)
+gold leaf|1
+(noun)|gold foil (generic term)
+gold medal|1
+(noun)|trophy (generic term)|prize (generic term)
+gold mine|2
+(noun)|goldmine|source (generic term)
+(noun)|goldmine|mine (generic term)
+gold miner|1
+(noun)|gold digger|gold panner|miner (generic term)|mineworker (generic term)
+gold of pleasure|1
+(noun)|Camelina sativa|crucifer (generic term)|cruciferous plant (generic term)
+gold panner|1
+(noun)|gold miner|gold digger|miner (generic term)|mineworker (generic term)
+gold plate|3
+(noun)|tableware (generic term)
+(noun)|plating (generic term)|metal plating (generic term)
+(verb)|goldplate|gold-plate|plate (generic term)
+gold rush|2
+(noun)|boom|bonanza|gravy|godsend|manna from heaven|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|migration (generic term)
+gold standard|2
+(noun)|standard (generic term)|monetary standard (generic term)
+(noun)|paragon (generic term)|idol (generic term)|perfection (generic term)|beau ideal (generic term)
+golda meir|1
+(noun)|Meir|Golda Meir|statesman (generic term)|solon (generic term)|national leader (generic term)
+goldbeater|1
+(noun)|gold-beater|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+goldberg|1
+(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist (generic term)
+goldbrick|6
+(noun)|soldier (generic term)|slacker (generic term)|shirker (generic term)
+(noun)|goof-off|ne'er-do-well|good-for-nothing|no-account|good-for-naught|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|block (generic term)|cube (generic term)
+(noun)|fraud (generic term)|fraudulence (generic term)|dupery (generic term)|hoax (generic term)|humbug (generic term)|put-on (generic term)
+(verb)|victimize|swindle|rook|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|fiddle|shirk|shrink from|avoid (generic term)
+goldbricking|1
+(noun)|shirking|slacking|soldiering|goofing off|evasion (generic term)|escape (generic term)|dodging (generic term)
+goldcrest|1
+(noun)|golden-crested kinglet|Regulus regulus|kinglet (generic term)
+goldcup|1
+(noun)|buttercup|butterflower|butter-flower|crowfoot|kingcup|herb (generic term)|herbaceous plant (generic term)
+golden|6
+(adj)|aureate|gilded|gilt|gold|chromatic (similar term)
+(adj)|halcyon|prosperous|happy (similar term)
+(adj)|gold|gilded|metallic (similar term)|metal (similar term)
+(adj)|favored|fortunate|blessed (similar term)|blest (similar term)
+(adj)|euphonious (similar term)|euphonous (similar term)
+(adj)|favorable|favourable|lucky|prosperous|propitious (similar term)
+golden-beard penstemon|1
+(noun)|Penstemon barbatus|wildflower (generic term)|wild flower (generic term)
+golden-brown|1
+(adj)|chromatic (similar term)
+golden-crested kinglet|1
+(noun)|goldcrest|Regulus regulus|kinglet (generic term)
+golden-eyed fly|1
+(noun)|goldeneye|green lacewing (generic term)|chrysopid (generic term)|stink fly (generic term)
+golden-green|1
+(adj)|chromatic (similar term)
+golden-yellow|1
+(adj)|chromatic (similar term)
+golden age|3
+(noun)|flower (generic term)|prime (generic term)|peak (generic term)|heyday (generic term)|bloom (generic term)|blossom (generic term)|efflorescence (generic term)|flush (generic term)
+(noun)|historic period (generic term)|age (generic term)
+(noun)|Golden Age|time period (generic term)|period of time (generic term)|period (generic term)
+golden ager|1
+(noun)|oldster|old person|senior citizen|adult (generic term)|grownup (generic term)
+golden algae|1
+(noun)|alga (generic term)|algae (generic term)
+golden aster|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+golden barrel cactus|1
+(noun)|Echinocactus grusonii|echinocactus (generic term)|barrel cactus (generic term)
+golden boy|1
+(noun)|wonder boy|man (generic term)|adult male (generic term)
+golden buttons|1
+(noun)|tansy|scented fern|Tanacetum vulgare|composite (generic term)|composite plant (generic term)
+golden calf|1
+(noun)|idol (generic term)|graven image (generic term)|god (generic term)
+golden calla|1
+(noun)|calla lily (generic term)|calla (generic term)|arum lily (generic term)|Zantedeschia aethiopica (generic term)
+golden chain|1
+(noun)|common laburnum|golden rain|Laburnum anagyroides|flowering shrub (generic term)
+golden chinkapin|1
+(noun)|giant chinkapin|Chrysolepis chrysophylla|Castanea chrysophylla|Castanopsis chrysophylla|tree (generic term)
+golden clematis|1
+(noun)|Clematis tangutica|clematis (generic term)
+golden club|1
+(noun)|Orontium aquaticum|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+golden crown beard|1
+(noun)|cowpen daisy|golden crownbeard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+golden crownbeard|1
+(noun)|cowpen daisy|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+golden cup|1
+(noun)|Mexican tulip poppy|Hunnemania fumariifolia|poppy (generic term)
+golden delicious|1
+(noun)|Golden Delicious|Yellow Delicious|Delicious (generic term)
+golden eagle|1
+(noun)|Aquila chrysaetos|eagle (generic term)|bird of Jove (generic term)
+golden everlasting|1
+(noun)|strawflower|yellow paper daisy|Helichrysum bracteatum|everlasting (generic term)|everlasting flower (generic term)
+golden fairy lantern|1
+(noun)|yellow globe lily|Calochortus amabilis|globe lily (generic term)|fairy lantern (generic term)
+golden fern|2
+(noun)|Pityrogramma calomelanos aureoflava|fern (generic term)
+(noun)|leather fern|Acrostichum aureum|fern (generic term)
+golden fig|1
+(noun)|Florida strangler fig|strangler fig|wild fig|Ficus aurea|fig tree (generic term)
+golden fleece|1
+(noun)|Golden Fleece|sheepskin (generic term)|fleece (generic term)
+golden gate|1
+(noun)|Golden Gate|strait (generic term)|sound (generic term)
+golden gate bridge|1
+(noun)|Golden Gate Bridge|suspension bridge (generic term)
+golden glow|1
+(noun)|double gold|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower (generic term)|Rudbeckia laciniata (generic term)
+golden gram|1
+(noun)|mung|mung bean|green gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+golden groundsel|1
+(noun)|golden ragwort|Packera aurea|Senecio aureus|herb (generic term)|herbaceous plant (generic term)
+golden hamster|1
+(noun)|Syrian hamster|Mesocricetus auratus|hamster (generic term)
+golden handshake|1
+(noun)|severance agreement (generic term)
+golden heather|1
+(noun)|false heather|Hudsonia ericoides|subshrub (generic term)|suffrutex (generic term)
+golden honey plant|1
+(noun)|wingstem|golden ironweed|yellow ironweed|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+golden horde|1
+(noun)|Golden Horde|horde (generic term)
+golden ironweed|1
+(noun)|wingstem|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+golden larch|1
+(noun)|Pseudolarix amabilis|conifer (generic term)|coniferous tree (generic term)
+golden maidenhair|1
+(noun)|common polypody|adder's fern|wall fern|golden polypody|sweet fern|Polypodium vulgare|polypody (generic term)
+golden marguerite|1
+(noun)|yellow chamomile|dyers' chamomile|Anthemis tinctoria|composite (generic term)|composite plant (generic term)
+golden mean|2
+(noun)|golden section|proportion (generic term)
+(noun)|moderation (generic term)|moderateness (generic term)
+golden mole|1
+(noun)|mole (generic term)
+golden oak mushroom|1
+(noun)|shiitake|shiitake mushroom|Chinese black mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+golden oldie|1
+(noun)|oldie|song (generic term)|vocal (generic term)
+golden oriole|1
+(noun)|Oriolus oriolus|Old World oriole (generic term)|oriole (generic term)
+golden parachute|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+golden pea|1
+(noun)|false lupine|yellow pea|Thermopsis macrophylla|bush pea (generic term)
+golden pheasant|1
+(noun)|Chrysolophus pictus|pheasant (generic term)
+golden pholiota|1
+(noun)|Pholiota aurea|agaric (generic term)
+golden plover|1
+(noun)|plover (generic term)
+golden polypody|2
+(noun)|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern (generic term)
+(noun)|common polypody|adder's fern|wall fern|golden maidenhair|sweet fern|Polypodium vulgare|polypody (generic term)
+golden pothos|1
+(noun)|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana (generic term)
+golden potto|1
+(noun)|angwantibo|Arctocebus calabarensis|lemur (generic term)
+golden ragwort|1
+(noun)|golden groundsel|Packera aurea|Senecio aureus|herb (generic term)|herbaceous plant (generic term)
+golden rain|1
+(noun)|common laburnum|golden chain|Laburnum anagyroides|flowering shrub (generic term)
+golden retriever|1
+(noun)|retriever (generic term)
+golden rule|2
+(noun)|rule (generic term)|prescript (generic term)
+(noun)|Golden Rule|teaching (generic term)|precept (generic term)|commandment (generic term)
+golden saxifrage|1
+(noun)|golden spleen|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+golden seal|1
+(noun)|goldenseal|yellow root|turmeric root|Hydrastis Canadensis|herb (generic term)|herbaceous plant (generic term)
+golden section|1
+(noun)|golden mean|proportion (generic term)
+golden shiner|1
+(noun)|Notemigonus crysoleucas|shiner (generic term)
+golden shower tree|1
+(noun)|drumstick tree|purging cassia|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia (generic term)
+golden spleen|1
+(noun)|golden saxifrage|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+golden star|1
+(noun)|golden stars|Bloomeria crocea|liliaceous plant (generic term)
+golden stars|1
+(noun)|golden star|Bloomeria crocea|liliaceous plant (generic term)
+golden state|1
+(noun)|California|Golden State|CA|Calif.|American state (generic term)
+golden syrup|1
+(noun)|treacle|syrup (generic term)|sirup (generic term)
+golden thistle|1
+(noun)|thistle (generic term)
+golden thread|1
+(noun)|goldthread|Coptis groenlandica|Coptis trifolia groenlandica|herb (generic term)|herbaceous plant (generic term)
+golden trumpet|1
+(noun)|common allamanda|Allamanda cathartica|allamanda (generic term)
+golden warbler|1
+(noun)|yellow warbler|yellowbird|Dendroica petechia|New World warbler (generic term)|wood warbler (generic term)
+golden wattle|1
+(noun)|Acacia pycnantha|acacia (generic term)
+golden wedding anniversary|1
+(noun)|wedding anniversary (generic term)
+golden willow|1
+(noun)|Salix alba vitellina|Salix vitellina|osier (generic term)
+golden wonder millet|1
+(noun)|German millet|Setaria italica stramineofructa|foxtail millet (generic term)|Italian millet (generic term)|Hungarian grass (generic term)|Setaria italica (generic term)
+golden yarrow|1
+(noun)|Eriophyllum lanatum|woolly sunflower (generic term)
+golden years|1
+(noun)|time of life (generic term)
+goldenbush|2
+(noun)|wildflower (generic term)|wild flower (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+goldeneye|2
+(noun)|golden-eyed fly|green lacewing (generic term)|chrysopid (generic term)|stink fly (generic term)
+(noun)|whistler|Bucephela clangula|duck (generic term)
+goldenrod|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+goldenseal|1
+(noun)|golden seal|yellow root|turmeric root|Hydrastis Canadensis|herb (generic term)|herbaceous plant (generic term)
+goldfield|1
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+goldfields|1
+(noun)|Lasthenia chrysostoma|wildflower (generic term)|wild flower (generic term)
+goldfinch|2
+(noun)|New world goldfinch|yellowbird|Spinus tristis|finch (generic term)
+(noun)|Carduelis carduelis|finch (generic term)
+goldfish|1
+(noun)|Carassius auratus|cyprinid (generic term)|cyprinid fish (generic term)
+goldfish bowl|2
+(noun)|fish bowl|fishbowl|situation (generic term)|state of affairs (generic term)
+(noun)|fishbowl|fish bowl|bowl (generic term)|aquarium (generic term)|fish tank (generic term)|marine museum (generic term)
+goldie's fern|1
+(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern (generic term)|buckler fern (generic term)
+goldie's shield fern|1
+(noun)|Goldie's fern|Goldie's shield fern|goldie's wood fern|Dryopteris goldiana|shield fern (generic term)|buckler fern (generic term)
+goldie's wood fern|1
+(noun)|Goldie's fern|Goldie's shield fern|Dryopteris goldiana|shield fern (generic term)|buckler fern (generic term)
+goldilocks|1
+(noun)|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster (generic term)
+goldilocks aster|1
+(noun)|goldilocks|Aster linosyris|Linosyris vulgaris|aster (generic term)
+golding|1
+(noun)|Golding|William Golding|Sir William Gerald Golding|writer (generic term)|author (generic term)
+goldman|1
+(noun)|Goldman|Emma Goldman|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+goldmark|1
+(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+goldmine|2
+(noun)|gold mine|source (generic term)
+(noun)|gold mine|mine (generic term)
+goldoni|1
+(noun)|Goldoni|Carlo Goldoni|dramatist (generic term)|playwright (generic term)
+goldplate|1
+(verb)|gold-plate|gold plate|plate (generic term)
+goldsboro|1
+(noun)|Goldsboro|town (generic term)
+goldsmith|2
+(noun)|goldworker|gold-worker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+(noun)|Goldsmith|Oliver Goldsmith|writer (generic term)|author (generic term)
+goldstone|1
+(noun)|sunstone (generic term)|aventurine (generic term)
+goldthread|1
+(noun)|golden thread|Coptis groenlandica|Coptis trifolia groenlandica|herb (generic term)|herbaceous plant (generic term)
+goldworker|1
+(noun)|goldsmith|gold-worker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+goldwyn|1
+(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+golem|2
+(noun)|mythical being (generic term)
+(noun)|automaton|robot|mechanism (generic term)
+golf|2
+(noun)|golf game|outdoor game (generic term)
+(verb)|play (generic term)
+golf-club|1
+(noun)|golf club|club|golf equipment (generic term)
+golf-club head|1
+(noun)|club head|club-head|clubhead|head (generic term)
+golf bag|1
+(noun)|bag (generic term)|golf equipment (generic term)
+golf ball|1
+(noun)|ball (generic term)|golf equipment (generic term)
+golf caddie|1
+(noun)|caddie|attendant (generic term)|attender (generic term)|tender (generic term)
+golf cap|1
+(noun)|baseball cap|jockey cap|cap (generic term)
+golf cart|1
+(noun)|golfcart|motor vehicle (generic term)|automotive vehicle (generic term)|golf equipment (generic term)
+golf club|2
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|golf-club|club|golf equipment (generic term)
+golf course|1
+(noun)|links course|course (generic term)
+golf equipment|1
+(noun)|sports equipment (generic term)
+golf game|1
+(noun)|golf|outdoor game (generic term)
+golf glove|1
+(noun)|glove (generic term)|golf equipment (generic term)
+golf hole|1
+(noun)|hole|playing period (generic term)|period of play (generic term)|play (generic term)
+golf lesson|1
+(noun)|lesson (generic term)
+golf links|1
+(noun)|links|golf course (generic term)|links course (generic term)
+golf player|1
+(noun)|golfer|linksman|player (generic term)|participant (generic term)
+golf pro|1
+(noun)|professional golfer|golfer (generic term)|golf player (generic term)|linksman (generic term)
+golf range|1
+(noun)|driving range|practice range (generic term)
+golf shot|1
+(noun)|golf stroke|swing|stroke (generic term)|shot (generic term)
+golf stroke|1
+(noun)|golf shot|swing|stroke (generic term)|shot (generic term)
+golf tee|1
+(noun)|tee|peg (generic term)|nog (generic term)|golf equipment (generic term)
+golf widow|1
+(noun)|wife (generic term)|married woman (generic term)
+golfcart|1
+(noun)|golf cart|motor vehicle (generic term)|automotive vehicle (generic term)|golf equipment (generic term)
+golfer|1
+(noun)|golf player|linksman|player (generic term)|participant (generic term)
+golfing|1
+(noun)|playing (generic term)
+golfo de campeche|1
+(noun)|Gulf of Campeche|Golfo de Campeche|Bay of Campeche|gulf (generic term)
+golfo de mexico|1
+(noun)|Gulf of Mexico|Golfo de Mexico|gulf (generic term)
+golgi|1
+(noun)|Golgi|Camillo Golgi|histologist (generic term)
+golgi's cell|1
+(noun)|Golgi's cell|Golgi cell|brain cell (generic term)
+golgi apparatus|1
+(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle (generic term)|cyst (generic term)
+golgi body|1
+(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle (generic term)|cyst (generic term)
+golgi cell|1
+(noun)|Golgi's cell|Golgi cell|brain cell (generic term)
+golgi complex|1
+(noun)|Golgi body|Golgi apparatus|Golgi complex|dictyosome|vesicle (generic term)|cyst (generic term)
+golgotha|1
+(noun)|Calvary|Golgotha|hill (generic term)
+goliard|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+goliath|2
+(noun)|Goliath|warrior (generic term)
+(noun)|giant|behemoth|monster|colossus|anomaly (generic term)|unusual person (generic term)
+goliath frog|1
+(noun)|Rana goliath|true frog (generic term)|ranid (generic term)
+golliwog|1
+(noun)|golliwogg|doll (generic term)|dolly (generic term)
+golliwogg|1
+(noun)|golliwog|doll (generic term)|dolly (generic term)
+golosh|1
+(noun)|arctic|galosh|rubber|gumshoe|overshoe (generic term)
+goma|1
+(noun)|Goma|city (generic term)|metropolis (generic term)|urban center (generic term)
+gombrowicz|1
+(noun)|Gombrowicz|Witold Gombrowicz|writer (generic term)|author (generic term)
+gomel|1
+(noun)|Homyel|Homel|Gomel|city (generic term)|metropolis (generic term)|urban center (generic term)
+gomorrah|1
+(noun)|Gomorrah|Gomorrha|city (generic term)|metropolis (generic term)|urban center (generic term)
+gomorrha|1
+(noun)|Gomorrah|Gomorrha|city (generic term)|metropolis (generic term)|urban center (generic term)
+gompers|1
+(noun)|Gompers|Samuel Gompers|labor leader (generic term)
+gomphothere|1
+(noun)|elephant (generic term)
+gomphotheriidae|1
+(noun)|Gomphotheriidae|family Gomphotheriidae|mammal family (generic term)
+gomphotherium|1
+(noun)|Gomphotherium|genus Gomphotherium|mammal genus (generic term)
+gomphrena|1
+(noun)|Gomphrena|genus Gomphrena|caryophylloid dicot genus (generic term)
+gomphrena globosa|1
+(noun)|globe amaranth|bachelor's button|Gomphrena globosa|flower (generic term)
+gomuti|1
+(noun)|sugar palm|gomuti palm|Arenga pinnata|sago palm (generic term)
+gomuti palm|1
+(noun)|sugar palm|gomuti|Arenga pinnata|sago palm (generic term)
+gonad|1
+(noun)|sex gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+gonadal|1
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+gonadotrophic|1
+(adj)|gonadotropic|hormone|endocrine|internal secretion (related term)
+gonadotrophic hormone|1
+(noun)|gonadotropin|gonadotrophin|gonadotropic hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+gonadotrophin|1
+(noun)|gonadotropin|gonadotropic hormone|gonadotrophic hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+gonadotropic|1
+(adj)|gonadotrophic|hormone|endocrine|internal secretion (related term)
+gonadotropic hormone|1
+(noun)|gonadotropin|gonadotrophin|gonadotrophic hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+gonadotropin|1
+(noun)|gonadotrophin|gonadotropic hormone|gonadotrophic hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+goncalo alves|1
+(noun)|Astronium fraxinifolium|zebrawood (generic term)|zebrawood tree (generic term)
+goncourt|2
+(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer (generic term)|author (generic term)
+(noun)|Goncourt|Edmond de Goncourt|Edmond Louis Antoine Huot de Goncourt|writer (generic term)|author (generic term)
+gond|1
+(noun)|Gond|Dravidian (generic term)
+gondang wax|1
+(noun)|fig wax|wax (generic term)
+gondi|1
+(noun)|Gondi|South-Central Dravidian (generic term)
+gondola|3
+(noun)|gondola car|freight car (generic term)
+(noun)|boat (generic term)
+(noun)|car|compartment (generic term)
+gondola car|1
+(noun)|gondola|freight car (generic term)
+gondolier|1
+(noun)|gondoliere|boatman (generic term)|boater (generic term)|waterman (generic term)
+gondoliere|1
+(noun)|gondolier|boatman (generic term)|boater (generic term)|waterman (generic term)
+gondwanaland|1
+(noun)|Gondwanaland|continent (generic term)
+gone|6
+(adj)|away|departed|absent (similar term)
+(adj)|done for|kaput|destroyed (similar term)
+(adj)|asleep|at peace|at rest|deceased|departed|dead (similar term)
+(adj)|expended|spent|exhausted (similar term)
+(adj)|bygone|bypast|departed|foregone|past (similar term)
+(adj)|lost (similar term)
+goner|1
+(noun)|toast|desperate (generic term)
+gong|3
+(noun)|tam-tam|percussion instrument (generic term)|percussive instrument (generic term)
+(noun)|chime|bell|percussion instrument (generic term)|percussive instrument (generic term)
+(verb)|sound (generic term)
+gong buoy|1
+(noun)|bell buoy|acoustic buoy (generic term)
+gongora|1
+(noun)|Gongora|Luis de Gongora y Argote|poet (generic term)
+gongorism|1
+(noun)|Gongorism|euphuism (generic term)
+gongorist|1
+(noun)|Gongorist|practitioner (generic term)|practician (generic term)
+gonif|1
+(noun)|goniff|ganef|ganof|wrongdoer (generic term)|offender (generic term)
+goniff|1
+(noun)|gonif|ganef|ganof|wrongdoer (generic term)|offender (generic term)
+goniometer|1
+(noun)|direction finder (generic term)
+gonion|1
+(noun)|craniometric point (generic term)
+goniopteris|1
+(noun)|Goniopteris|genus Goniopteris|fern genus (generic term)
+gonne|1
+(noun)|Gonne|Maud Gonne|patriot (generic term)|nationalist (generic term)
+gonococcus|1
+(noun)|Neisseria gonorrhoeae|bacteria (generic term)|bacterium (generic term)
+gonorhynchidae|1
+(noun)|Gonorhynchidae|family Gonorhynchidae|fish family (generic term)
+gonorhynchus|1
+(noun)|Gonorhynchus|genus Gonorhynchus|fish genus (generic term)
+gonorhynchus gonorhynchus|1
+(noun)|beaked salmon|sandfish|Gonorhynchus gonorhynchus|soft-finned fish (generic term)|malacopterygian (generic term)
+gonorrhea|1
+(noun)|gonorrhoea|clap|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+gonorrhoea|1
+(noun)|gonorrhea|clap|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+gonzo|1
+(adj)|bizarre|eccentric|freakish|freaky|flaky|flakey|off-the-wall|outlandish|outre|unconventional (similar term)
+goo|1
+(noun)|sludge|slime|gook|guck|gunk|muck|ooze|substance (generic term)|matter (generic term)
+goober|1
+(noun)|peanut|earthnut|goober pea|groundnut|monkey nut|edible nut (generic term)
+goober pea|1
+(noun)|peanut|earthnut|goober|groundnut|monkey nut|edible nut (generic term)
+good|27
+(adj)|bang-up (similar term)|bully (similar term)|corking (similar term)|cracking (similar term)|dandy (similar term)|great (similar term)|groovy (similar term)|keen (similar term)|neat (similar term)|nifty (similar term)|not bad (similar term)|peachy (similar term)|slap-up (similar term)|swell (similar term)|smashing (similar term)|good enough (similar term)|goodish (similar term)|hot (similar term)|redeeming (similar term)|satisfactory (similar term)|acceptable (similar term)|solid (similar term)|superb (similar term)|well-behaved (similar term)|well behaved (similar term)|best (related term)|better (related term)|favorable (related term)|favourable (related term)|good (related term)|obedient (related term)|respectable (related term)|bad (antonym)
+(adj)|full|ample (similar term)
+(adj)|angelic (similar term)|angelical (similar term)|beatific (similar term)|saintlike (similar term)|saintly (similar term)|sainted (similar term)|goody-goody (similar term)|redemptive (similar term)|redeeming (similar term)|saving (similar term)|white (similar term)|worthy (similar term)|upstanding (similar term)|solid (similar term)|good (related term)|moral (related term)|right (related term)|righteous (related term)|virtuous (related term)|worthy (related term)|evil (antonym)
+(adj)|estimable|honorable|respectable|reputable (similar term)
+(adj)|beneficial|advantageous (similar term)
+(adj)|nice (similar term)
+(adj)|just|upright|righteous (similar term)
+(adj)|adept|expert|practiced|proficient|skillful|skilful|skilled (similar term)
+(adj)|complete (similar term)
+(adj)|dear|near|close (similar term)
+(adj)|dependable|safe|secure|sound (similar term)
+(adj)|right|ripe|opportune (similar term)
+(adj)|well|fortunate (similar term)
+(adj)|effective|in effect|in force|operative (similar term)
+(adj)|pleasing (similar term)
+(adj)|serious|intellectual (similar term)
+(adj)|sound|healthy (similar term)
+(adj)|beneficial|salutary|healthful (similar term)
+(adj)|genuine (similar term)|echt (similar term)
+(adj)|unspoiled|unspoilt|fresh (similar term)
+(adj)|discriminating (similar term)
+(noun)|advantage (generic term)|vantage (generic term)
+(noun)|goodness|morality (generic term)|evilness (antonym)|evil (antonym)
+(noun)|goodness|quality (generic term)|badness (antonym)|bad (antonym)
+(noun)|commodity|trade good|artifact (generic term)|artefact (generic term)
+(adv)|well|ill (antonym)
+(adv)|thoroughly|soundly
+good-by|1
+(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|goodby|good-bye|goodbye|good day|sayonara|so long|farewell (generic term)|word of farewell (generic term)
+good-bye|1
+(noun)|adieu|adios|arrivederci|auf wiedersehen|au revoir|bye|bye-bye|cheerio|good-by|goodby|goodbye|good day|sayonara|so long|farewell (generic term)|word of farewell (generic term)
+good-for-naught|2
+(adj)|good-for-nothing|meritless|no-account|no-count|no-good|sorry|worthless (similar term)
+(noun)|goldbrick|goof-off|ne'er-do-well|good-for-nothing|no-account|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+good-for-nothing|2
+(adj)|good-for-naught|meritless|no-account|no-count|no-good|sorry|worthless (similar term)
+(noun)|goldbrick|goof-off|ne'er-do-well|no-account|good-for-naught|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+good-hearted|1
+(adj)|charitable|benevolent|kindly|sympathetic|openhearted|large-hearted|kind (similar term)
+good-humored|1
+(adj)|amiable|good-humoured|good-natured (similar term)
+good-humoredness|1
+(noun)|good-temperedness|good-humouredness|good-naturedness|cheerfulness (generic term)|cheer (generic term)|sunniness (generic term)|sunshine (generic term)
+good-humoured|1
+(adj)|amiable|good-humored|good-natured (similar term)
+good-humouredness|1
+(noun)|good-temperedness|good-humoredness|good-naturedness|cheerfulness (generic term)|cheer (generic term)|sunniness (generic term)|sunshine (generic term)
+good-king-henry|1
+(noun)|allgood|fat hen|wild spinach|Chenopodium bonus-henricus|goosefoot (generic term)
+good-looking|1
+(adj)|fine-looking|better-looking|handsome|well-favored|well-favoured|beautiful (similar term)
+good-natured|1
+(adj)|amiable (similar term)|good-humored (similar term)|good-humoured (similar term)|equable (similar term)|even-tempered (similar term)|good-tempered (similar term)|placid (similar term)|kind (related term)|pleasant (related term)|agreeable (related term)|ill-natured (antonym)
+good-naturedness|1
+(noun)|good-temperedness|good-humoredness|good-humouredness|cheerfulness (generic term)|cheer (generic term)|sunniness (generic term)|sunshine (generic term)
+good-neighborliness|1
+(noun)|neighborliness|neighbourliness|good-neighbourliness|friendliness (generic term)|unneighborliness (antonym)
+good-neighbourliness|1
+(noun)|neighborliness|neighbourliness|good-neighborliness|friendliness (generic term)|unneighborliness (antonym)
+good-tempered|1
+(adj)|equable|even-tempered|placid|good-natured (similar term)
+good-temperedness|1
+(noun)|good-humoredness|good-humouredness|good-naturedness|cheerfulness (generic term)|cheer (generic term)|sunniness (generic term)|sunshine (generic term)
+good-time|1
+(adj)|convivial|sociable (similar term)
+good afternoon|1
+(noun)|afternoon|greeting (generic term)|salutation (generic term)|farewell (generic term)|word of farewell (generic term)
+good authority|1
+(noun)|testimony (generic term)|testimonial (generic term)
+good book|1
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+good condition|1
+(noun)|fitness|physical fitness|good shape|condition (generic term)|shape (generic term)|unfitness (antonym)
+good continuation|1
+(noun)|continuation|law of continuation|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+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 (generic term)|word of farewell (generic term)
+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 (generic term)|large indefinite amount (generic term)
+good egg|1
+(noun)|good person (generic term)|bad egg (antonym)
+good enough|1
+(adj)|good (similar term)
+good example|1
+(noun)|exemplar|example|model|ideal (generic term)
+good faith|1
+(noun)|straightness|honesty (generic term)|honestness (generic term)
+good for you|1
+(adj)|healthy|salubrious|wholesome (similar term)
+good form|1
+(noun)|propriety (generic term)|properness (generic term)|correctitude (generic term)
+good fortune|2
+(noun)|luckiness|good luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|bad luck (antonym)|misfortune (antonym)
+(noun)|good luck|fluke|luck (generic term)|fortune (generic term)
+good friday|1
+(noun)|Good Friday|Christian holy day (generic term)
+good guy|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|bad guy (antonym)
+good health|1
+(noun)|healthiness|physiological state (generic term)|physiological condition (generic term)|ill health (antonym)
+good humor|1
+(noun)|good humour|good temper|amiability|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|ill humor (antonym)
+good humour|1
+(noun)|good humor|good temper|amiability|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|ill humor (antonym)
+good looks|1
+(noun)|handsomeness|beauty (generic term)
+good luck|3
+(noun)|good fortune|luckiness|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|bad luck (antonym)|misfortune (antonym)
+(noun)|fluke|good fortune|luck (generic term)|fortune (generic term)
+(noun)|break|happy chance|accident (generic term)|fortuity (generic term)|chance event (generic term)
+good luck charm|1
+(noun)|charm|object (generic term)|physical object (generic term)
+good manners|1
+(noun)|courtesy|manner (generic term)|personal manner (generic term)|discourtesy (antonym)
+good morning|1
+(noun)|morning|greeting (generic term)|salutation (generic term)|farewell (generic term)|word of farewell (generic term)
+good nature|1
+(noun)|disposition (generic term)|temperament (generic term)|ill nature (antonym)
+good night|1
+(noun)|farewell (generic term)|word of farewell (generic term)
+good ol' boy|1
+(noun)|good old boy|good ole boy|white man (generic term)|Southerner (generic term)
+good old boy|1
+(noun)|good ole boy|good ol' boy|white man (generic term)|Southerner (generic term)
+good old days|1
+(noun)|auld langsyne|langsyne|old times|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+good ole boy|1
+(noun)|good old boy|good ol' boy|white man (generic term)|Southerner (generic term)
+good part|1
+(noun)|strength (generic term)|weak part (antonym)
+good person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|bad person (antonym)
+good samaritan|1
+(noun)|good Samaritan|benefactor (generic term)|helper (generic term)
+good sense|1
+(noun)|common sense|gumption|horse sense|sense|mother wit|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+good shape|1
+(noun)|fitness|physical fitness|good condition|condition (generic term)|shape (generic term)|unfitness (antonym)
+good shepherd|1
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+good speller|1
+(noun)|speller|poor speller|writer (generic term)
+good spirit|1
+(noun)|eudemon|eudaemon|guardian spirit (generic term)|guardian angel (generic term)|cacodemon (antonym)
+good story|1
+(noun)|funny story|funny remark|funny|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+good temper|1
+(noun)|good humor|good humour|amiability|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|ill humor (antonym)
+good time|1
+(noun)|blast|experience (generic term)
+good turn|1
+(noun)|turn|favor (generic term)|favour (generic term)
+good weather|1
+(noun)|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)|bad weather (antonym)
+good will|3
+(noun)|grace|goodwill|good nature (generic term)
+(noun)|goodwill|intangible (generic term)|intangible asset (generic term)
+(noun)|goodwill|friendliness (generic term)
+good word|2
+(noun)|recommendation|testimonial|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(noun)|news (generic term)|intelligence (generic term)|tidings (generic term)|word (generic term)
+goodall|1
+(noun)|Goodall|Jane Goodall|zoologist (generic term)|animal scientist (generic term)
+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 (generic term)|word of farewell (generic term)
+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 (generic term)|word of farewell (generic term)
+goodenia|1
+(noun)|Goodenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+goodenia family|1
+(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family (generic term)|magnoliopsid family (generic term)
+goodeniaceae|1
+(noun)|Goodeniaceae|family Goodeniaceae|Goodenia family|dicot family (generic term)|magnoliopsid family (generic term)
+goodish|2
+(adj)|good (similar term)
+(adj)|goodly|hefty|respectable|sizable|sizeable|tidy|considerable (similar term)
+goodly|1
+(adj)|goodish|hefty|respectable|sizable|sizeable|tidy|considerable (similar term)
+goodman|1
+(noun)|Goodman|Benny Goodman|Benjamin David Goodman|King of Swing|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+goodness|2
+(noun)|good|quality (generic term)|badness (antonym)|bad (antonym)
+(noun)|good|morality (generic term)|evilness (antonym)|evil (antonym)
+goodwill|3
+(noun)|good will|intangible (generic term)|intangible asset (generic term)
+(noun)|good will|friendliness (generic term)
+(noun)|grace|good will|good nature (generic term)
+goody|1
+(noun)|dainty|delicacy|kickshaw|treat|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+goody-goody|2
+(adj)|good (similar term)
+(noun)|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+goodyear|1
+(noun)|Goodyear|Charles Goodyear|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+goodyera|1
+(noun)|Goodyera|genus Goodyera|monocot genus (generic term)|liliopsid genus (generic term)
+gooey|1
+(adj)|icky|adhesive (similar term)
+goof|2
+(noun)|fathead|goofball|bozo|jackass|goose|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(verb)|sin|blunder|boob|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+goof-off|1
+(noun)|goldbrick|ne'er-do-well|good-for-nothing|no-account|good-for-naught|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+goof-proof|1
+(verb)|goofproof|foolproof|proof (generic term)
+goofball|1
+(noun)|fathead|goof|bozo|jackass|goose|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+goofing off|1
+(noun)|shirking|slacking|soldiering|goldbricking|evasion (generic term)|escape (generic term)|dodging (generic term)
+goofproof|1
+(verb)|goof-proof|foolproof|proof (generic term)
+goofy|2
+(adj)|cockamamie|cockamamy|sappy|silly|wacky|whacky|zany|foolish (similar term)
+(noun)|Goofy|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+google|2
+(noun)|Google|search engine (generic term)
+(verb)|research (generic term)|search (generic term)|explore (generic term)
+googly|1
+(noun)|wrong 'un|bosie|bosie ball|bowling (generic term)
+googol|1
+(noun)|cardinal number (generic term)|cardinal (generic term)
+googolplex|1
+(noun)|cardinal number (generic term)|cardinal (generic term)
+gook|2
+(noun)|sludge|slime|goo|guck|gunk|muck|ooze|substance (generic term)|matter (generic term)
+(noun)|slant-eye|Oriental (generic term)|oriental person (generic term)
+goon|2
+(noun)|lout|clod|stumblebum|oaf|lubber|lummox|lump|gawk|clumsy person (generic term)
+(noun)|hood|hoodlum|punk|thug|tough|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+gooney|1
+(noun)|black-footed albatross|gooney bird|goonie|goony|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+gooney bird|1
+(noun)|black-footed albatross|gooney|goonie|goony|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+goonie|1
+(noun)|black-footed albatross|gooney|gooney bird|goony|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+goony|1
+(noun)|black-footed albatross|gooney|gooney bird|goonie|Diomedea nigripes|albatross (generic term)|mollymawk (generic term)
+goop|1
+(noun)|soap|scoop|max|liquid ecstasy|grievous bodily harm|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+goora nut|1
+(noun)|kola|kola nut|kola nut tree|Cola acuminata|nut tree (generic term)
+goosander|1
+(noun)|Mergus merganser|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+goose|6
+(noun)|anseriform bird (generic term)
+(noun)|fathead|goof|goofball|bozo|jackass|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|poultry (generic term)
+(verb)|pinch (generic term)|squeeze (generic term)|twinge (generic term)|tweet (generic term)|nip (generic term)|twitch (generic term)
+(verb)|prod (generic term)|incite (generic term)|egg on (generic term)
+(verb)|pump (generic term)
+goose-tansy|1
+(noun)|silverweed|goose grass|Potentilla anserina|cinquefoil (generic term)|five-finger (generic term)
+goose barnacle|1
+(noun)|gooseneck barnacle|Lepas fascicularis|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+goose bump|1
+(noun)|pilomotor reflex|gooseflesh|goosebump|goose pimple|goose skin|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+goose down|1
+(noun)|down (generic term)|down feather (generic term)
+goose egg|1
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+goose grass|4
+(noun)|cleavers|clivers|catchweed|spring cleavers|Galium aparine|bedstraw (generic term)
+(noun)|silverweed|goose-tansy|Potentilla anserina|cinquefoil (generic term)|five-finger (generic term)
+(noun)|Texas millet|Panicum Texanum|panic grass (generic term)
+(noun)|yardgrass|yard grass|wire grass|Eleusine indica|millet (generic term)
+goose grease|1
+(noun)|animal oil (generic term)
+goose liver|1
+(noun)|liver (generic term)
+goose pimple|1
+(noun)|pilomotor reflex|gooseflesh|goose bump|goosebump|goose skin|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+goose plum|1
+(noun)|American red plum|August plum|Prunus americana|wild plum (generic term)|wild plum tree (generic term)
+goose skin|1
+(noun)|pilomotor reflex|gooseflesh|goose bump|goosebump|goose pimple|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+goose step|2
+(noun)|march (generic term)|marching (generic term)
+(verb)|march (generic term)|process (generic term)
+gooseberry|2
+(noun)|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub (generic term)|bush (generic term)
+(noun)|currant (generic term)
+gooseberry-like|1
+(adj)|vegetable (similar term)
+gooseberry bush|1
+(noun)|gooseberry|Ribes uva-crispa|Ribes grossularia|shrub (generic term)|bush (generic term)
+gooseberry family|1
+(noun)|Grossulariaceae|family Grossulariaceae|plant family (generic term)
+goosebump|1
+(noun)|pilomotor reflex|gooseflesh|goose bump|goose pimple|goose skin|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+goosefish|1
+(noun)|angler|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+gooseflesh|1
+(noun)|pilomotor reflex|goose bump|goosebump|goose pimple|goose skin|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+goosefoot|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+goosefoot family|1
+(noun)|Chenopodiaceae|family Chenopodiaceae|caryophylloid dicot family (generic term)
+goosefoot maple|1
+(noun)|moosewood|moose-wood|striped maple|striped dogwood|Acer pennsylvanicum|maple (generic term)
+gooselike|1
+(adj)|anserine|dopy|dopey|foolish|goosey|goosy|jerky|stupid (similar term)
+gooseneck|1
+(noun)|curve (generic term)|curved shape (generic term)
+gooseneck barnacle|1
+(noun)|goose barnacle|Lepas fascicularis|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+gooseneck loosestrife|1
+(noun)|Lysimachia clethroides Duby|loosestrife (generic term)
+goosey|1
+(adj)|anserine|dopy|dopey|foolish|goosy|gooselike|jerky|stupid (similar term)
+goosy|1
+(adj)|anserine|dopy|dopey|foolish|goosey|gooselike|jerky|stupid (similar term)
+gop|1
+(noun)|Republican Party|GOP|party (generic term)|political party (generic term)
+gopher|5
+(noun)|goffer|eager beaver (generic term)|busy bee (generic term)|live wire (generic term)|sharpie (generic term)|sharpy (generic term)
+(noun)|Minnesotan|Gopher|American (generic term)
+(noun)|ground squirrel|spermophile|squirrel (generic term)
+(noun)|pocket gopher|pouched rat|pocket rat (generic term)
+(noun)|gopher tortoise|gopher turtle|Gopherus polypemus|tortoise (generic term)
+gopher hole|1
+(noun)|hole (generic term)|hollow (generic term)
+gopher snake|2
+(noun)|indigo snake|Drymarchon corais|colubrid snake (generic term)|colubrid (generic term)
+(noun)|Pituophis melanoleucus|bull snake (generic term)|bull-snake (generic term)
+gopher state|1
+(noun)|Minnesota|Gopher State|North Star State|MN|American state (generic term)
+gopher tortoise|1
+(noun)|gopher turtle|gopher|Gopherus polypemus|tortoise (generic term)
+gopher turtle|1
+(noun)|gopher tortoise|gopher|Gopherus polypemus|tortoise (generic term)
+gopherus|1
+(noun)|Gopherus|genus Gopherus|reptile genus (generic term)
+gopherus agassizii|1
+(noun)|desert tortoise|Gopherus agassizii|tortoise (generic term)
+gopherus polypemus|1
+(noun)|gopher tortoise|gopher turtle|gopher|Gopherus polypemus|tortoise (generic term)
+gopherwood|1
+(noun)|Kentucky yellowwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood (generic term)
+goral|1
+(noun)|Naemorhedus goral|goat antelope (generic term)
+gorbachev|1
+(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman (generic term)|solon (generic term)|national leader (generic term)
+gordian|1
+(adj)|Gordian|complex (similar term)
+gordian knot|2
+(noun)|Gordian knot|problem (generic term)
+(noun)|Gordian knot|knot (generic term)
+gordie howe|1
+(noun)|Howe|Gordie Howe|Gordon Howe|hockey player (generic term)|ice-hockey player (generic term)
+gordimer|1
+(noun)|Gordimer|Nadine Gordimer|writer (generic term)|author (generic term)
+gordius|1
+(noun)|Gordius|king (generic term)|male monarch (generic term)|Rex (generic term)
+gordon howe|1
+(noun)|Howe|Gordie Howe|Gordon Howe|hockey player (generic term)|ice-hockey player (generic term)
+gordon setter|1
+(noun)|Gordon setter|setter (generic term)
+gore|6
+(noun)|Gore|Al Gore|Albert Gore Jr.|Vice President of the United States (generic term)
+(noun)|blood (generic term)
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(noun)|bloodshed|murder (generic term)|slaying (generic term)|execution (generic term)
+(verb)|pierce (generic term)|thrust (generic term)
+(verb)|cut (generic term)|tailor (generic term)
+gore vidal|1
+(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer (generic term)|author (generic term)
+gorgas|1
+(noun)|Gorgas|William Crawford Gorgas|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+gorge|4
+(noun)|ravine (generic term)
+(noun)|defile|pass (generic term)|mountain pass (generic term)|notch (generic term)
+(noun)|esophagus|oesophagus|gullet|passage (generic term)|passageway (generic term)|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)
+(verb)|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+gorged|1
+(adj)|sated|surfeited|satiate (similar term)|satiated (similar term)
+gorgeous|1
+(adj)|beautiful (similar term)
+gorgeously|1
+(adv)|splendidly|resplendently|magnificently
+gorger|1
+(noun)|scoffer|eater (generic term)|feeder (generic term)
+gorgerin|1
+(noun)|necking|molding (generic term)|moulding (generic term)
+gorget|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+gorgon|1
+(noun)|Gorgon|mythical monster (generic term)|mythical creature (generic term)
+gorgonacea|1
+(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order (generic term)
+gorgoniacea|1
+(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order (generic term)
+gorgonian|1
+(noun)|gorgonian coral|coral (generic term)
+gorgonian coral|1
+(noun)|gorgonian|coral (generic term)
+gorgonocephalus|1
+(noun)|Gorgonocephalus|genus Gorgonocephalus|echinoderm genus (generic term)
+gorgonzola|1
+(noun)|bleu (generic term)|blue cheese (generic term)
+gorilla|1
+(noun)|Gorilla gorilla|great ape (generic term)|pongid (generic term)
+gorilla gorilla|1
+(noun)|gorilla|Gorilla gorilla|great ape (generic term)|pongid (generic term)
+gorilla gorilla beringei|1
+(noun)|mountain gorilla|Gorilla gorilla beringei|gorilla (generic term)|Gorilla gorilla (generic term)
+gorilla gorilla gorilla|1
+(noun)|western lowland gorilla|Gorilla gorilla gorilla|gorilla (generic term)|Gorilla gorilla (generic term)
+gorilla gorilla grauri|1
+(noun)|eastern lowland gorilla|Gorilla gorilla grauri|gorilla (generic term)|Gorilla gorilla (generic term)
+goring|1
+(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi (generic term)|German Nazi (generic term)
+gorki|2
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city (generic term)|metropolis (generic term)|urban center (generic term)
+gorkiy|1
+(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city (generic term)|metropolis (generic term)|urban center (generic term)
+gorky|2
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city (generic term)|metropolis (generic term)|urban center (generic term)
+gormandise|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+gormandize|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+gormless|1
+(adj)|gaumless|stupid (similar term)
+gorse|1
+(noun)|furze|whin|Irish gorse|Ulex europaeus|shrub (generic term)|bush (generic term)
+gory|2
+(adj)|bloodstained|bloody (similar term)
+(adj)|sanguinary|sanguineous|slaughterous|butcherly|bloody (similar term)
+gosainthan|1
+(noun)|Gosainthan|mountain peak (generic term)
+gosan-chiku|1
+(noun)|fishpole bamboo|hotei-chiku|Phyllostachys aurea|bamboo (generic term)
+goshawk|1
+(noun)|Accipiter gentilis|hawk (generic term)
+gosling|1
+(noun)|goose (generic term)
+gosmore|1
+(noun)|cat's-ear|California dandelion|capeweed|Hypochaeris radicata|weed (generic term)
+gospel|5
+(noun)|Gospel|Gospels|evangel|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|gospel truth|truth (generic term)|true statement (generic term)
+(noun)|gospel singing|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+(noun)|religious doctrine|church doctrine|creed|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+gospel according to john|1
+(noun)|John|Gospel According to John|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+gospel according to luke|1
+(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+gospel according to mark|1
+(noun)|Mark|Gospel According to Mark|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+gospel according to matthew|1
+(noun)|Matthew|Gospel According to Matthew|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+gospel of luke|1
+(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+gospel singing|1
+(noun)|gospel|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+gospel truth|1
+(noun)|gospel|truth (generic term)|true statement (generic term)
+gospeler|1
+(noun)|evangelist|revivalist|gospeller|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)
+gospeller|1
+(noun)|evangelist|revivalist|gospeler|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)
+gospels|1
+(noun)|Gospel|Gospels|evangel|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+gossamer|4
+(adj)|ethereal|delicate (similar term)
+(adj)|diaphanous|filmy|gauzy|gauze-like|see-through|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+(noun)|gauze (generic term)|netting (generic term)|veiling (generic term)
+(noun)|cobweb|fibril (generic term)|filament (generic term)|strand (generic term)
+gossip|5
+(noun)|chitchat|small talk|gab|gabfest|tittle-tattle|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+(noun)|comment|scuttlebutt|report (generic term)|account (generic term)
+(noun)|gossiper|gossipmonger|rumormonger|rumourmonger|newsmonger|communicator (generic term)
+(verb)|dish the dirt|talk (generic term)|speak (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|jaw|claver|visit|converse (generic term)|discourse (generic term)
+gossip columnist|1
+(noun)|newspaper columnist (generic term)
+gossiper|1
+(noun)|gossip|gossipmonger|rumormonger|rumourmonger|newsmonger|communicator (generic term)
+gossiping|1
+(noun)|gossipmongering|conversation (generic term)
+gossipmonger|1
+(noun)|gossip|gossiper|rumormonger|rumourmonger|newsmonger|communicator (generic term)
+gossipmongering|1
+(noun)|gossiping|conversation (generic term)
+gossipy|1
+(adj)|chatty|newsy|communicative (similar term)|communicatory (similar term)
+gossypium|1
+(noun)|Gossypium|genus Gossypium|dilleniid dicot genus (generic term)
+gossypium arboreum|1
+(noun)|tree cotton|Gossypium arboreum|cotton (generic term)|cotton plant (generic term)
+gossypium barbadense|1
+(noun)|sea island cotton|tree cotton|Gossypium barbadense|cotton (generic term)|cotton plant (generic term)
+gossypium herbaceum|1
+(noun)|Levant cotton|Gossypium herbaceum|cotton (generic term)|cotton plant (generic term)
+gossypium hirsutum|1
+(noun)|upland cotton|Gossypium hirsutum|cotton (generic term)|cotton plant (generic term)
+gossypium peruvianum|1
+(noun)|Peruvian cotton|Gossypium peruvianum|cotton (generic term)|cotton plant (generic term)
+gossypium thurberi|1
+(noun)|wild cotton|Arizona wild cotton|Gossypium thurberi|cotton (generic term)|cotton plant (generic term)
+gota canal|1
+(noun)|Gota Canal|ship canal (generic term)|shipway (generic term)
+goteborg|1
+(noun)|Goteborg|Goeteborg|Gothenburg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+goth|2
+(noun)|peasant|barbarian|boor|churl|Goth|tyke|tike|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|Goth|Teuton (generic term)
+gothenburg|1
+(noun)|Goteborg|Goeteborg|Gothenburg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+gothic|8
+(adj)|Gothic|font|fount|typeface|face (related term)
+(adj)|Gothic|East Germanic|East Germanic language (related term)
+(adj)|Gothic|Teuton (related term)
+(adj)|medieval|mediaeval|nonmodern (similar term)
+(adj)|strange (similar term)|unusual (similar term)
+(noun)|Gothic|East Germanic (generic term)|East Germanic language (generic term)
+(noun)|Gothic|black letter|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+(noun)|Gothic|Gothic architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+gothic arch|1
+(noun)|Gothic arch|pointed arch (generic term)
+gothic architecture|1
+(noun)|Gothic|Gothic architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+gothic romance|1
+(noun)|Gothic romance|romance (generic term)
+gothic romancer|1
+(noun)|Gothic romancer|writer (generic term)|author (generic term)
+gothite|1
+(noun)|goethite|iron ore (generic term)
+gotterdammerung|1
+(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth (generic term)
+gottfried wilhelm leibnitz|1
+(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician (generic term)|philosopher (generic term)
+gottfried wilhelm leibniz|1
+(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician (generic term)|philosopher (generic term)
+gotthold ephraim lessing|1
+(noun)|Lessing|Gotthold Ephraim Lessing|dramatist (generic term)|playwright (generic term)
+gottlieb daimler|1
+(noun)|Daimler|Gottlieb Daimler|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|industrialist (generic term)
+gouache|1
+(noun)|watercolor (generic term)|water-color (generic term)|watercolour (generic term)|water-colour (generic term)
+gouda|1
+(noun)|Gouda|Gouda cheese|cheese (generic term)
+gouda cheese|1
+(noun)|Gouda|Gouda cheese|cheese (generic term)
+goudy|1
+(noun)|Goudy|Frederic Goudy|Frederic William Goudy|printer (generic term)|pressman (generic term)
+gouge|6
+(noun)|dent|ding|nick|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|edge tool (generic term)
+(noun)|creating by removal (generic term)
+(verb)|force out|mutilate (generic term)|mar (generic term)|gouge out (related term)
+(verb)|extort|squeeze|rack|wring|overcharge (generic term)|soak (generic term)|surcharge (generic term)|gazump (generic term)|fleece (generic term)|plume (generic term)|pluck (generic term)|rob (generic term)|hook (generic term)
+(verb)|rout|hollow (generic term)|hollow out (generic term)|core out (generic term)
+gouge out|1
+(verb)|cut out (generic term)
+gouger|2
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|swindler|defrauder|chiseller|chiseler|scammer|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+goujon|1
+(noun)|flathead catfish|mudcat|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+goulash|1
+(noun)|Hungarian goulash|gulyas|stew (generic term)
+gould|2
+(noun)|Gould|Stephen Jay Gould|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)
+(noun)|Gould|Jay Gould|financier (generic term)|moneyman (generic term)
+gounod|1
+(noun)|Gounod|Charles Francois Gounod|composer (generic term)
+gourd|3
+(noun)|calabash|bottle (generic term)
+(noun)|fruit (generic term)
+(noun)|gourd vine|vine (generic term)
+gourd-like|1
+(adj)|vegetable (similar term)
+gourd family|1
+(noun)|Cucurbitaceae|family Cucurbitaceae|dicot family (generic term)|magnoliopsid family (generic term)
+gourd vine|1
+(noun)|gourd|vine (generic term)
+gourde|1
+(noun)|Haitian monetary unit (generic term)
+gourmand|1
+(noun)|glutton|gourmandizer|trencherman|eater (generic term)|feeder (generic term)
+gourmandism|1
+(noun)|disposition (generic term)|temperament (generic term)
+gourmandize|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|binge|pig out|satiate|scarf out|eat (generic term)
+gourmandizer|1
+(noun)|glutton|gourmand|trencherman|eater (generic term)|feeder (generic term)
+gourmet|1
+(noun)|epicure|gastronome|bon vivant|epicurean|foodie|sensualist (generic term)
+gout|1
+(noun)|gouty arthritis|urarthritis|arthritis (generic term)
+gouty|1
+(adj)|ill (similar term)|sick (similar term)
+gouty arthritis|1
+(noun)|gout|urarthritis|arthritis (generic term)
+gouverneur morris|1
+(noun)|Morris|Gouverneur Morris|statesman (generic term)|solon (generic term)|national leader (generic term)
+govern|4
+(verb)|regulate|regularize|regularise|order|decide (generic term)|make up one's mind (generic term)|determine (generic term)|deregulate (antonym)
+(verb)|control (generic term)|command (generic term)
+(verb)|rule|control (generic term)|command (generic term)
+(verb)|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+governable|1
+(adj)|controllable|manageable (similar term)
+governador valadares|1
+(noun)|Governador Valadares|city (generic term)|metropolis (generic term)|urban center (generic term)
+governance|2
+(noun)|administration|governing body|establishment|brass|organization|organisation|body (generic term)
+(noun)|government|governing|government activity|social control (generic term)
+governed|1
+(noun)|citizenry (generic term)|people (generic term)
+governess|1
+(noun)|teacher (generic term)|instructor (generic term)
+governing|2
+(adj)|dominant (similar term)
+(noun)|government|governance|government activity|social control (generic term)
+governing board|1
+(noun)|board (generic term)
+governing body|1
+(noun)|administration|governance|establishment|brass|organization|organisation|body (generic term)
+government|4
+(noun)|authorities|regime|polity (generic term)
+(noun)|system (generic term)|system of rules (generic term)
+(noun)|governing|governance|government activity|social control (generic term)
+(noun)|politics|political science|social science (generic term)
+government-in-exile|1
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+government accounting office|1
+(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+government activity|1
+(noun)|government|governing|governance|social control (generic term)
+government agency|1
+(noun)|agency|federal agency|bureau|office|authority|administrative unit (generic term)|administrative body (generic term)
+government agent|1
+(noun)|agent (generic term)
+government bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+government building|1
+(noun)|building (generic term)|edifice (generic term)
+government department|1
+(noun)|department (generic term)|section (generic term)
+government income|1
+(noun)|government revenue|income (generic term)
+government issue|1
+(noun)|issue|military issue|store (generic term)|stock (generic term)|fund (generic term)
+government man|1
+(noun)|G-man|FBI agent|government agent (generic term)
+government minister|1
+(noun)|minister|executive (generic term)|executive director (generic term)
+government note|1
+(noun)|bill|note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+government office|1
+(noun)|office (generic term)|business office (generic term)
+government officials|1
+(noun)|officialdom|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+government printing office|1
+(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+government revenue|1
+(noun)|government income|income (generic term)
+government security|1
+(noun)|agency security|security (generic term)|certificate (generic term)
+governmental|2
+(adj)|polity (related term)
+(adj)|political (similar term)
+governor|2
+(noun)|politician (generic term)
+(noun)|regulator|control (generic term)|controller (generic term)
+governor's plum|1
+(noun)|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub (generic term)|bush (generic term)
+governor's race|1
+(noun)|campaign for governor|political campaign (generic term)|campaign (generic term)|run (generic term)
+governor general|1
+(noun)|governor (generic term)
+governor plum|1
+(noun)|governor's plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub (generic term)|bush (generic term)
+governorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+gowen cypress|1
+(noun)|Cupressus goveniana|cypress (generic term)|cypress tree (generic term)
+gown|6
+(noun)|dress (generic term)|frock (generic term)
+(noun)|university (generic term)
+(noun)|nightgown|nightie|night-robe|nightdress|lingerie (generic term)|intimate apparel (generic term)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+(noun)|surgical gown|scrubs|garment (generic term)
+(noun)|robe|outerwear (generic term)|overclothes (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+gowned|1
+(adj)|clothed (similar term)|clad (similar term)
+goy|1
+(noun)|gentile|non-Jew|Christian (generic term)
+goya|1
+(noun)|Goya|Goya y Lucientes|Francisco Goya|Francisco de Goya|Francisco Jose de Goya|Francisco Jose de Goya y Lucientes|painter (generic term)
+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 (generic term)
+gp|1
+(noun)|general practitioner|GP|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+gp bomb|1
+(noun)|general-purpose bomb|GP bomb|bomb (generic term)
+gpa|1
+(noun)|grade point average|GPA|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+gpo|1
+(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+gps|1
+(noun)|Global Positioning System|GPS|navigational system (generic term)
+graafian follicle|1
+(noun)|Graafian follicle|follicle (generic term)
+grab|8
+(noun)|mechanical device (generic term)
+(noun)|catch|snatch|snap|touch (generic term)|touching (generic term)
+(verb)|catch|take hold of|seize (generic term)|prehend (generic term)|clutch (generic term)|catch up (related term)
+(verb)|snap up|snaffle|take (generic term)
+(verb)|move (generic term)
+(verb)|obtain (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|seize|intrigue (generic term)|fascinate (generic term)
+grab bag|2
+(noun)|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|container (generic term)
+grab bar|1
+(noun)|bar (generic term)
+grab sample|1
+(noun)|sample (generic term)
+grabber|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+grabby|1
+(adj)|avaricious|covetous|grasping|greedy|prehensile|acquisitive (similar term)
+grace|9
+(noun)|saving grace|state of grace|state (generic term)
+(noun)|gracility|gracefulness (generic term)
+(noun)|seemliness|propriety (generic term)|properness (generic term)|correctitude (generic term)|unseemliness (antonym)
+(noun)|good will|goodwill|good nature (generic term)
+(noun)|Grace|Greek deity (generic term)
+(noun)|blessing|thanksgiving|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|grace of God|free grace|beneficence (generic term)
+(verb)|decorate|adorn|ornament|embellish|beautify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|deck|adorn|decorate|embellish|beautify|be (generic term)
+grace cup|1
+(noun)|cup (generic term)
+grace ethel cecile rosalie allen|1
+(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne (generic term)
+grace kelly|1
+(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress (generic term)
+grace note|1
+(noun)|appoggiatura|acciaccatura|note (generic term)|musical note (generic term)|tone (generic term)
+grace of god|1
+(noun)|grace|grace of God|free grace|beneficence (generic term)
+grace patricia kelly|1
+(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress (generic term)
+graceful|2
+(adj)|elegant (similar term)|fluent (similar term)|fluid (similar term)|liquid (similar term)|smooth (similar term)|gainly (similar term)|gracile (similar term)|willowy (similar term)|lissome (similar term)|lissom (similar term)|lithe (similar term)|lithesome (similar term)|slender (similar term)|supple (similar term)|svelte (similar term)|sylphlike (similar term)|beautiful (related term)|elegant (related term)|awkward (antonym)
+(adj)|elegant|refined|gracious (similar term)
+gracefully|2
+(adv)|gracelessly (antonym)
+(adv)|graciously|ungracefully (antonym)|ungraciously (antonym)
+gracefulness|1
+(noun)|carriage (generic term)|bearing (generic term)|posture (generic term)|awkwardness (antonym)
+graceless|3
+(adj)|unpleasing|ungracious (similar term)
+(adj)|ungraceful|awkward (similar term)
+(adj)|gauche|unpolished|inelegant (similar term)
+gracelessly|2
+(adv)|ungraciously|ungracefully|woodenly|without graciousness|gracefully (antonym)|graciously (antonym)
+(adv)|gracefully (antonym)
+gracelessness|2
+(noun)|ungracefulness|awkwardness (generic term)|clumsiness (generic term)
+(noun)|awkwardness|clumsiness|stiffness|inelegance (generic term)
+gracie|1
+(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne (generic term)
+gracie allen|1
+(noun)|Allen|Gracie Allen|Grace Ethel Cecile Rosalie Allen|Gracie|comedienne (generic term)
+gracilariid|1
+(noun)|gracilariid moth|tineoid (generic term)|tineoid moth (generic term)
+gracilariid moth|1
+(noun)|gracilariid|tineoid (generic term)|tineoid moth (generic term)
+gracilariidae|1
+(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family (generic term)
+gracile|1
+(adj)|willowy|graceful (similar term)
+gracility|1
+(noun)|grace|gracefulness (generic term)
+gracillariidae|1
+(noun)|Gracilariidae|Gracillariidae|family Gracilariidae|arthropod family (generic term)
+gracious|4
+(adj)|elegant (similar term)|graceful (similar term)|refined (similar term)|merciful (similar term)|friendly (related term)|refined (related term)|ungracious (antonym)
+(adj)|benignant|kind (similar term)
+(adj)|courteous|nice|polite (similar term)
+(adj)|propitious (similar term)
+graciously|1
+(adv)|gracefully|ungracefully (antonym)|ungraciously (antonym)
+graciousness|2
+(noun)|courtesy (generic term)|good manners (generic term)|ungraciousness (antonym)
+(noun)|benignity|benignancy|good (generic term)|goodness (generic term)|malignancy (antonym)|malignity (antonym)
+grackle|2
+(noun)|hill myna|Indian grackle|Gracula religiosa|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+(noun)|crow blackbird|New World blackbird (generic term)|blackbird (generic term)
+gracula|1
+(noun)|Gracula|genus Gracula|bird genus (generic term)
+gracula religiosa|1
+(noun)|hill myna|Indian grackle|grackle|Gracula religiosa|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+grad|2
+(noun)|grade|angular unit (generic term)
+(noun)|alumnus|alumna|alum|graduate|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+grad school|1
+(noun)|graduate school|school (generic term)
+grad student|1
+(noun)|graduate student|postgraduate|collegian (generic term)|college man (generic term)|college boy (generic term)
+gradable|1
+(adj)|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+gradable opposition|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+gradate|2
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|change (generic term)
+gradation|3
+(noun)|step|rank (generic term)
+(noun)|grade|ablaut (generic term)
+(noun)|graduation|quantification (generic term)
+gradational|1
+(adj)|gradatory|graduated|gradual (similar term)
+gradatory|1
+(adj)|gradational|graduated|gradual (similar term)
+grade|13
+(noun)|class|form|gathering (generic term)|assemblage (generic term)
+(noun)|level|tier|rank (generic term)
+(noun)|gradient (generic term)|slope (generic term)
+(noun)|grad|angular unit (generic term)
+(noun)|gradation|ablaut (generic term)
+(noun)|mark|score|evaluation (generic term)|valuation (generic term)|rating (generic term)
+(noun)|ground level|elevation (generic term)
+(noun)|degree|level|property (generic term)
+(noun)|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(verb)|rate|rank|range|order|place|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|flush (generic term)|level (generic term)|even out (generic term)|even (generic term)
+(verb)|score|mark|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+grade-appropriate|1
+(adj)|appropriate (similar term)
+grade-constructed|1
+(adj)|surface (similar term)
+grade crossing|1
+(noun)|level crossing|intersection (generic term)|crossroad (generic term)|crossway (generic term)|crossing (generic term)|carrefour (generic term)
+grade insignia|1
+(noun)|chevron|stripe|stripes|badge (generic term)
+grade point|1
+(noun)|mark (generic term)|grade (generic term)|score (generic term)
+grade point average|1
+(noun)|GPA|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+grade school|1
+(noun)|grammar school|elementary school|primary school|school (generic term)
+grade separation|1
+(noun)|crossing (generic term)|crosswalk (generic term)|crossover (generic term)
+graded|1
+(adj)|ranked|stratified|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+grader|1
+(noun)|critic (generic term)
+gradient|2
+(noun)|change (generic term)
+(noun)|slope|position (generic term)|spatial relation (generic term)
+grading|3
+(noun)|scaling|order (generic term)|ordering (generic term)
+(noun)|leveling|construction (generic term)|building (generic term)
+(noun)|marking|scoring|evaluation (generic term)|rating (generic term)
+gradual|3
+(adj)|bit-by-bit (similar term)|in small stages (similar term)|piecemeal (similar term)|step-by-step (similar term)|stepwise (similar term)|gradational (similar term)|gradatory (similar term)|graduated (similar term)|slow (related term)|sudden (antonym)
+(adj)|easy (similar term)|gentle (similar term)|sloping (similar term)|inclined (related term)|steep (antonym)
+(noun)|antiphon (generic term)|antiphony (generic term)
+graduality|1
+(noun)|gradualness|speed (generic term)|swiftness (generic term)|fastness (generic term)
+gradually|1
+(adv)|bit by bit|step by step
+gradualness|2
+(noun)|gentleness|gradient (generic term)|slope (generic term)|abruptness (antonym)
+(noun)|graduality|speed (generic term)|swiftness (generic term)|fastness (generic term)
+graduate|6
+(adj)|postgraduate|high (similar term)
+(noun)|alumnus|alumna|alum|grad|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|receive (generic term)|have (generic term)
+(verb)|confer (generic term)|bestow (generic term)
+(verb)|calibrate|fine-tune|adjust (generic term)|set (generic term)|correct (generic term)
+graduate nurse|1
+(noun)|trained nurse|nurse (generic term)
+graduate school|1
+(noun)|grad school|school (generic term)
+graduate student|1
+(noun)|grad student|postgraduate|collegian (generic term)|college man (generic term)|college boy (generic term)
+graduated|4
+(adj)|proportional|progressive (similar term)
+(adj)|calibrated
+(adj)|regressive (similar term)
+(adj)|gradational|gradatory|gradual (similar term)
+graduated cylinder|1
+(noun)|graduate (generic term)
+graduated table|1
+(noun)|scale|scale of measurement|ordered series|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+graduating class|1
+(noun)|class (generic term)|year (generic term)
+graduation|4
+(noun)|completion (generic term)|culmination (generic term)|closing (generic term)|windup (generic term)|mop up (generic term)
+(noun)|commencement|commencement exercise|commencement ceremony|graduation exercise|exercise (generic term)
+(noun)|line (generic term)
+(noun)|gradation|quantification (generic term)
+graduation exercise|1
+(noun)|commencement|commencement exercise|commencement ceremony|graduation|exercise (generic term)
+graeco-roman|1
+(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical (similar term)
+graeco-roman deity|1
+(noun)|Greco-Roman deity|Graeco-Roman deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+graecophile|2
+(adj)|philhellenic|philhellene|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend (related term)
+(noun)|philhellene|philhellenist|Graecophile|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+graecophilic|1
+(adj)|philhellenic|philhellene|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend (related term)
+graf|1
+(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player (generic term)
+graf zeppelin|1
+(noun)|zeppelin|Graf Zeppelin|airship (generic term)|dirigible (generic term)
+graffiti|1
+(noun)|graffito|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+graffito|1
+(noun)|graffiti|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+graft|5
+(noun)|transplant|animal tissue (generic term)
+(noun)|bribery|felony (generic term)
+(noun)|grafting|attachment (generic term)|affixation (generic term)
+(verb)|engraft|ingraft|join (generic term)|conjoin (generic term)
+(verb)|transplant|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+grafting|1
+(noun)|graft|attachment (generic term)|affixation (generic term)
+graham|3
+(noun)|Graham|Billy Graham|William Franklin Graham|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+(noun)|Graham|Martha Graham|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+(noun)|whole wheat flour|graham flour|whole meal flour|wheat flour (generic term)
+graham bread|1
+(noun)|dark bread (generic term)|whole wheat bread (generic term)|whole meal bread (generic term)|brown bread (generic term)
+graham cracker|1
+(noun)|cracker (generic term)
+graham flour|1
+(noun)|whole wheat flour|graham|whole meal flour|wheat flour (generic term)
+graham greene|1
+(noun)|Greene|Graham Greene|Henry Graham Greene|writer (generic term)|author (generic term)
+grahame|1
+(noun)|Grahame|Kenneth Grahame|writer (generic term)|author (generic term)
+grail|2
+(noun)|aim (generic term)|object (generic term)|objective (generic term)|target (generic term)
+(noun)|Holy Grail|Sangraal|chalice (generic term)|goblet (generic term)
+grain|11
+(noun)|atom (generic term)|molecule (generic term)|particle (generic term)|corpuscle (generic term)|mote (generic term)|speck (generic term)
+(noun)|food grain|cereal|foodstuff (generic term)|food product (generic term)
+(noun)|metric grain|metric weight unit (generic term)|weight unit (generic term)
+(noun)|troy unit (generic term)|apothecaries' unit (generic term)|apothecaries' weight (generic term)
+(noun)|avoirdupois unit (generic term)
+(noun)|caryopsis|seed (generic term)
+(noun)|texture (generic term)
+(verb)|ingrain|penetrate (generic term)|perforate (generic term)
+(verb)|paint (generic term)
+(verb)|granulate|form (generic term)
+(verb)|granulate|change shape (generic term)|change form (generic term)|deform (generic term)
+grain alcohol|1
+(noun)|ethyl alcohol|ethanol|fermentation alcohol|alcohol (generic term)|plant product (generic term)
+grain field|1
+(noun)|grainfield|field (generic term)
+grain merchant|1
+(noun)|merchant (generic term)|merchandiser (generic term)
+grain moth|1
+(noun)|gelechiid (generic term)|gelechiid moth (generic term)
+grain sorghum|1
+(noun)|sorghum (generic term)
+grainfield|1
+(noun)|grain field|field (generic term)
+grainger|1
+(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer (generic term)
+graininess|1
+(noun)|coarseness|granularity|roughness (generic term)|raggedness (generic term)
+graining|1
+(noun)|woodgraining|grain (generic term)
+grains of paradise|1
+(noun)|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb (generic term)|herbaceous plant (generic term)
+grainy|1
+(adj)|farinaceous|coarse-grained|granular|granulose|gritty|mealy|coarse (similar term)|harsh (similar term)
+grainy club|1
+(noun)|Clavicipitaceae (generic term)|grainy club mushrooms (generic term)
+grainy club mushrooms|1
+(noun)|Clavicipitaceae|ascomycete (generic term)|ascomycetous fungus (generic term)
+gram|2
+(noun)|gramme|gm|g|metric weight unit (generic term)|weight unit (generic term)
+(noun)|Gram|Hans C. J. Gram|bacteriologist (generic term)
+gram's method|1
+(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining (generic term)
+gram's procedure|1
+(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining (generic term)
+gram's solution|1
+(noun)|Gram's solution|solution (generic term)
+gram's stain|1
+(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining (generic term)
+gram-atomic weight|1
+(noun)|gram atom|metric weight unit (generic term)|weight unit (generic term)
+gram-negative|1
+(adj)|Gram-negative|negative (similar term)|disconfirming (similar term)
+gram-positive|1
+(adj)|Gram-positive|positive (similar term)|confirming (similar term)
+gram atom|1
+(noun)|gram-atomic weight|metric weight unit (generic term)|weight unit (generic term)
+gram calorie|1
+(noun)|calorie|small calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+gram method|1
+(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining (generic term)
+gram molecule|1
+(noun)|mole|mol|metric weight unit (generic term)|weight unit (generic term)
+gram stain|1
+(noun)|Gram's method|Gram method|Gram's procedure|Gram's stain|Gram stain|staining (generic term)
+grama|1
+(noun)|grama grass|gramma|gramma grass|grass (generic term)
+grama grass|1
+(noun)|grama|gramma|gramma grass|grass (generic term)
+gramicidin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)|antiseptic (generic term)
+graminaceae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+graminaceous plant|1
+(noun)|gramineous plant|herb (generic term)|herbaceous plant (generic term)
+graminales|1
+(noun)|Graminales|order Graminales|plant order (generic term)
+gramineae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+gramineous plant|1
+(noun)|graminaceous plant|herb (generic term)|herbaceous plant (generic term)
+gramma|1
+(noun)|grama|grama grass|gramma grass|grass (generic term)
+gramma grass|1
+(noun)|grama|grama grass|gramma|grass (generic term)
+grammar|1
+(noun)|descriptive linguistics (generic term)
+grammar school|2
+(noun)|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+(noun)|grade school|elementary school|primary school|school (generic term)
+grammarian|1
+(noun)|syntactician|linguist (generic term)|linguistic scientist (generic term)
+grammatic|1
+(adj)|grammatical|descriptive linguistics (related term)
+grammatical|2
+(adj)|grammatic|descriptive linguistics (related term)
+(adj)|well-formed|ungrammatical (antonym)
+grammatical case|1
+(noun)|case|grammatical category (generic term)|syntactic category (generic term)
+grammatical category|1
+(noun)|syntactic category|class (generic term)|category (generic term)|family (generic term)
+grammatical constituent|1
+(noun)|constituent|syntagma (generic term)|syntagm (generic term)
+grammatical construction|1
+(noun)|construction|expression|constituent (generic term)|grammatical constituent (generic term)|misconstruction (antonym)
+grammatical gender|1
+(noun)|gender|grammatical category (generic term)|syntactic category (generic term)
+grammatical meaning|1
+(noun)|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+grammatical relation|1
+(noun)|linguistic relation (generic term)
+grammatical rule|1
+(noun)|rule of grammar|rule (generic term)|linguistic rule (generic term)
+grammatically|1
+(adv)|ungrammatically (antonym)
+grammatolatry|1
+(noun)|verbolatry|word-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+grammatophyllum|1
+(noun)|Grammatophyllum|genus Grammatophyllum|monocot genus (generic term)|liliopsid genus (generic term)
+gramme|1
+(noun)|gram|gm|g|metric weight unit (generic term)|weight unit (generic term)
+gramophone|1
+(noun)|acoustic gramophone|record player (generic term)|phonograph (generic term)
+gramps|1
+(noun)|grandfather|granddad|grandad|granddaddy|grandpa|grandparent (generic term)
+grampus|2
+(noun)|killer whale|killer|orca|sea wolf|Orcinus orca|dolphin (generic term)
+(noun)|Grampus griseus|dolphin (generic term)
+grampus griseus|1
+(noun)|grampus|Grampus griseus|dolphin (generic term)
+gran|1
+(noun)|grandma|grandmother|granny|grannie|grandparent (generic term)
+gran casa|1
+(noun)|bass drum|drum (generic term)|membranophone (generic term)|tympan (generic term)
+gran santiago|1
+(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital (generic term)
+granada|1
+(noun)|Granada|city (generic term)|metropolis (generic term)|urban center (generic term)
+granadilla|4
+(noun)|giant granadilla|Passiflora quadrangularis|passionflower (generic term)|passionflower vine (generic term)
+(noun)|sweet granadilla|Passiflora ligularis|passionflower (generic term)|passionflower vine (generic term)
+(noun)|purple granadillo|Passiflora edulis|passionflower (generic term)|passionflower vine (generic term)
+(noun)|passion fruit (generic term)
+granadilla tree|1
+(noun)|granadillo|Brya ebenus|tree (generic term)
+granadilla wood|2
+(noun)|wood (generic term)
+(noun)|cocuswood|cocoswood|wood (generic term)
+granadillo|1
+(noun)|granadilla tree|Brya ebenus|tree (generic term)
+granary|1
+(noun)|garner|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+grand|10
+(adj)|expansive|heroic|impressive (similar term)
+(adj)|august|lordly|noble (similar term)
+(adj)|deluxe|gilded|luxurious|opulent|princely|sumptuous|rich (similar term)
+(adj)|fantastic|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|exalted|sublime|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+(adj)|large (similar term)|big (similar term)
+(adj)|important (similar term)|of import (similar term)
+(adj)|distinguished|imposing|magisterial|dignified (similar term)
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|thou|yard|large integer (generic term)
+(noun)|grand piano|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+grand canal|1
+(noun)|Grand Canal|canal (generic term)
+grand canyon|1
+(noun)|Grand Canyon|gorge (generic term)
+grand canyon national park|1
+(noun)|Grand Canyon National Park|national park (generic term)
+grand canyon state|1
+(noun)|Arizona|Grand Canyon State|AZ|American state (generic term)
+grand circle|1
+(noun)|gymnastic exercise (generic term)
+grand dragon|1
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+grand duchess|1
+(noun)|duchess (generic term)
+grand duchy|1
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+grand duchy of luxembourg|1
+(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country (generic term)|European nation (generic term)
+grand duke|1
+(noun)|prince (generic term)
+grand fir|1
+(noun)|lowland fir|lowland white fir|giant fir|Abies grandis|silver fir (generic term)
+grand guignol|1
+(noun)|Grand Guignol|play (generic term)|drama (generic term)|dramatic play (generic term)
+grand inquisitor|1
+(noun)|Grand Inquisitor|Inquisitor (generic term)
+grand island|1
+(noun)|Grand Island|town (generic term)
+grand jury|1
+(noun)|jury (generic term)
+grand lama|1
+(noun)|Dalai Lama|Grand Lama|lama (generic term)
+grand larceny|1
+(noun)|grand theft|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)|petit larceny (antonym)
+grand mal|1
+(noun)|generalized seizure|epilepsia major|epileptic seizure (generic term)
+grand mal epilepsy|1
+(noun)|generalized epilepsy|epilepsy (generic term)
+grand marnier|1
+(noun)|Grand Marnier|orange liqueur (generic term)
+grand mufti|1
+(noun)|mufti (generic term)
+grand national|1
+(noun)|Grand National|steeplechase (generic term)
+grand opera|1
+(noun)|opera (generic term)
+grand piano|1
+(noun)|grand|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+grand prix|1
+(noun)|Grand Prix|automobile race (generic term)|auto race (generic term)|car race (generic term)
+grand rapids|1
+(noun)|Grand Rapids|city (generic term)|metropolis (generic term)|urban center (generic term)
+grand river|1
+(noun)|Grand River|river (generic term)
+grand slam|1
+(noun)|slam (generic term)|sweep (generic term)
+grand teton|1
+(noun)|Grand Teton|mountain peak (generic term)
+grand teton national park|1
+(noun)|Grand Teton National Park|national park (generic term)
+grand theft|1
+(noun)|grand larceny|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)|petit larceny (antonym)
+grand total|1
+(noun)|sum (generic term)|amount (generic term)|total (generic term)
+grand tour|1
+(noun)|tour (generic term)|circuit (generic term)
+grand turk|1
+(noun)|sultan|grand Turk|ruler (generic term)|swayer (generic term)
+grandad|1
+(noun)|grandfather|gramps|granddad|granddaddy|grandpa|grandparent (generic term)
+grandaunt|1
+(noun)|great-aunt|aunt (generic term)|auntie (generic term)|aunty (generic term)
+grandchild|1
+(noun)|offspring (generic term)|progeny (generic term)|issue (generic term)
+granddad|1
+(noun)|grandfather|gramps|grandad|granddaddy|grandpa|grandparent (generic term)
+granddaddy|1
+(noun)|grandfather|gramps|granddad|grandad|grandpa|grandparent (generic term)
+granddaughter|1
+(noun)|grandchild (generic term)
+grande dame|1
+(noun)|dame (generic term)|madam (generic term)|ma'am (generic term)|lady (generic term)|gentlewoman (generic term)
+grandee|1
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+grandeur|2
+(noun)|magnificence|brilliance|splendor|splendour|grandness|elegance (generic term)
+(noun)|nobility|nobleness|magnanimousness|honorableness (generic term)|honourableness (generic term)
+grandfather|1
+(noun)|gramps|granddad|grandad|granddaddy|grandpa|grandparent (generic term)
+grandfather clause|1
+(noun)|exemption (generic term)|freedom (generic term)
+grandfather clock|1
+(noun)|longcase clock|pendulum clock (generic term)
+grandiloquence|1
+(noun)|grandiosity|magniloquence|ornateness|rhetoric|expressive style (generic term)|style (generic term)
+grandiloquent|2
+(adj)|magniloquent|tall|rhetorical (similar term)
+(adj)|overblown|pompous|pontifical|portentous|pretentious (similar term)
+grandiloquently|1
+(adv)|magniloquently
+grandiose|2
+(adj)|impressive (similar term)
+(adj)|hifalutin|highfalutin|highfaluting|hoity-toity|la-di-da|pretentious (similar term)
+grandiosely|1
+(adv)|bombastically
+grandiosity|1
+(noun)|magniloquence|ornateness|grandiloquence|rhetoric|expressive style (generic term)|style (generic term)
+grandma|1
+(noun)|grandmother|granny|grannie|gran|grandparent (generic term)
+grandma moses|1
+(noun)|Moses|Grandma Moses|Anna Mary Robertson Moses|painter (generic term)
+grandmaster|1
+(noun)|player (generic term)|participant (generic term)
+grandmother|1
+(noun)|grandma|granny|grannie|gran|grandparent (generic term)
+grandnephew|1
+(noun)|great-nephew|nephew (generic term)
+grandness|4
+(noun)|importance|standing (generic term)
+(noun)|enormousness|greatness|immenseness|immensity|sizeableness|vastness|wideness|largeness (generic term)|bigness (generic term)
+(noun)|magnificence|brilliance|splendor|splendour|grandeur|elegance (generic term)
+(noun)|impressiveness|magnificence|richness|excellence (generic term)
+grandniece|1
+(noun)|great-niece|niece (generic term)
+grandpa|1
+(noun)|grandfather|gramps|granddad|grandad|granddaddy|grandparent (generic term)
+grandparent|1
+(noun)|forebear (generic term)|forbear (generic term)
+grandson|1
+(noun)|grandchild (generic term)
+grandstand|3
+(noun)|audience (generic term)
+(noun)|covered stand|stand (generic term)
+(verb)|perform (generic term)
+grandstander|1
+(noun)|exhibitionist (generic term)|show-off (generic term)
+granduncle|1
+(noun)|great-uncle|uncle (generic term)
+grange|1
+(noun)|farm (generic term)
+granger|1
+(noun)|farmer|husbandman|sodbuster|creator (generic term)
+granicus|1
+(noun)|Granicus|Battle of Granicus River|pitched battle (generic term)
+granite|2
+(noun)|batholith (generic term)|batholite (generic term)|pluton (generic term)|plutonic rock (generic term)
+(noun)|steadiness (generic term)|firmness (generic term)
+granite state|1
+(noun)|New Hampshire|Granite State|NH|American state (generic term)
+granite stater|1
+(noun)|New Hampshirite|Granite Stater|American (generic term)
+granitelike|1
+(adj)|granitic|rocklike|stony|hard (similar term)
+graniteware|1
+(noun)|enamelware (generic term)
+granitic|2
+(adj)|flinty|obdurate|stony|hardhearted (similar term)|heartless (similar term)
+(adj)|granitelike|rocklike|stony|hard (similar term)
+grannie|1
+(noun)|grandma|grandmother|granny|gran|grandparent (generic term)
+granny|3
+(noun)|grandma|grandmother|grannie|gran|grandparent (generic term)
+(noun)|old woman (generic term)
+(noun)|granny knot|reef knot (generic term)|flat knot (generic term)
+granny's bonnets|1
+(noun)|Aquilegia vulgaris|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+granny knot|1
+(noun)|granny|reef knot (generic term)|flat knot (generic term)
+granny smith|1
+(noun)|Granny Smith|eating apple (generic term)|dessert apple (generic term)
+granola|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+granola bar|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+grant|15
+(noun)|aid (generic term)|economic aid (generic term)
+(noun)|subsidization|subsidisation|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+(noun)|assignment|transferred property (generic term)|transferred possession (generic term)
+(noun)|Grant|Duncan Grant|Duncan James Corrow Grant|painter (generic term)
+(noun)|Grant|Cary Grant|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|concession|contract (generic term)
+(noun)|right (generic term)
+(verb)|allow|give (generic term)|deny (antonym)
+(verb)|award|give (generic term)
+(verb)|concede|yield|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|accord|allot|give (generic term)
+(verb)|give
+(verb)|concede|yield|cede|give (generic term)
+(verb)|deed over|give (generic term)|gift (generic term)|present (generic term)
+grant-in-aid|2
+(noun)|grant (generic term)|subsidization (generic term)|subsidisation (generic term)
+(noun)|grant (generic term)|aid (generic term)|economic aid (generic term)
+grant wood|1
+(noun)|Wood|Grant Wood|painter (generic term)
+granted|2
+(adj)|given|acknowledged (similar term)
+(adj)|given (similar term)
+grantee|2
+(noun)|recipient (generic term)|receiver (generic term)
+(noun)|alienee|recipient (generic term)|receiver (generic term)
+granter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|withholder (antonym)
+granth|1
+(noun)|Adi Granth|Granth|Granth Sahib|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+granth sahib|1
+(noun)|Adi Granth|Granth|Granth Sahib|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+granting immunity|1
+(noun)|exemption|immunity|release (generic term)|waiver (generic term)|discharge (generic term)
+grantor|1
+(noun)|granter (generic term)
+grantor trust|1
+(noun)|Clifford trust|trust (generic term)
+granular|2
+(adj)|farinaceous|coarse-grained|grainy|granulose|gritty|mealy|coarse (similar term)|harsh (similar term)
+(adj)|chondritic|achondritic (antonym)
+granular pearlite|1
+(noun)|globular pearlite|pearlite (generic term)
+granularity|1
+(noun)|coarseness|graininess|roughness (generic term)|raggedness (generic term)
+granulate|3
+(verb)|grain|form (generic term)
+(verb)|grain|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|heal (generic term)
+granulated|1
+(adj)|coarse (similar term)|harsh (similar term)
+granulated sugar|1
+(noun)|sugar (generic term)|refined sugar (generic term)
+granulation|2
+(noun)|granulation tissue|connective tissue (generic term)
+(noun)|formation (generic term)|shaping (generic term)
+granulation tissue|1
+(noun)|granulation|connective tissue (generic term)
+granule|1
+(noun)|grain (generic term)
+granuliferous|1
+(adj)|grain (related term)
+granulocyte|1
+(noun)|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+granulocytic|1
+(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC (related term)
+granulocytic leukemia|1
+(noun)|myelocytic leukemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+granulocytopenia|1
+(noun)|agranulocytosis|agranulosis|blood disease (generic term)|blood disorder (generic term)
+granuloma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+granuloma inguinale|1
+(noun)|granuloma venereum|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+granuloma venereum|1
+(noun)|granuloma inguinale|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+granulomatous|1
+(adj)|tumor|tumour|neoplasm (related term)
+granulose|1
+(adj)|farinaceous|coarse-grained|grainy|granular|gritty|mealy|coarse (similar term)|harsh (similar term)
+granville-barker|1
+(noun)|Granville-Barker|Harley Granville-Barker|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|dramatist (generic term)|playwright (generic term)|critic (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)|theatrical producer (generic term)
+granville stanley hall|1
+(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist (generic term)
+granville wilt|1
+(noun)|wilt (generic term)|wilt disease (generic term)
+grape|2
+(noun)|edible fruit (generic term)
+(noun)|grapevine|vine (generic term)
+grape-leaf begonia|1
+(noun)|maple-leaf begonia|Begonia dregei|begonia (generic term)
+grape-sized|1
+(adj)|sized (similar term)
+grape arbor|1
+(noun)|grape arbour|arbor (generic term)|arbour (generic term)|bower (generic term)|pergola (generic term)
+grape arbour|1
+(noun)|grape arbor|arbor (generic term)|arbour (generic term)|bower (generic term)|pergola (generic term)
+grape fern|1
+(noun)|fern (generic term)
+grape hyacinth|1
+(noun)|liliaceous plant (generic term)
+grape jelly|1
+(noun)|jelly (generic term)
+grape juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+grape louse|1
+(noun)|grape phylloxera|Phylloxera vitifoleae|plant louse (generic term)|louse (generic term)
+grape phylloxera|1
+(noun)|grape louse|Phylloxera vitifoleae|plant louse (generic term)|louse (generic term)
+grape sugar|1
+(noun)|dextrose|dextroglucose|glucose (generic term)
+grapefruit|2
+(noun)|Citrus paradisi|citrus (generic term)|citrus tree (generic term)
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+grapefruit juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+grapefruit peel|1
+(noun)|candied citrus peel (generic term)
+grapelike|1
+(adj)|edible fruit (related term)
+grapeshot|1
+(noun)|shot (generic term)|pellet (generic term)
+grapevine|2
+(noun)|pipeline|word of mouth|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(noun)|grape|vine (generic term)
+grapevine family|1
+(noun)|Vitaceae|family Vitaceae|Vitidaceae|dicot family (generic term)|magnoliopsid family (generic term)
+grapey|1
+(adj)|grapy|tasty (similar term)
+graph|3
+(noun)|graphical record|visual communication (generic term)
+(verb)|chart|represent (generic term)|interpret (generic term)
+(verb)|diagram (generic term)|plot (generic term)
+graph paper|1
+(noun)|paper (generic term)
+grapheme|1
+(noun)|character|graphic symbol|written symbol (generic term)|printed symbol (generic term)
+graphic|6
+(adj)|graphical|in writing|written (similar term)
+(adj)|explicit (similar term)|expressed (similar term)
+(adj)|graphic art (related term)
+(adj)|graphical|visual communication (related term)
+(adj)|lifelike|pictorial|vivid|realistic (similar term)
+(noun)|computer graphic|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+graphic art|1
+(noun)|art (generic term)|fine art (generic term)
+graphic artist|1
+(noun)|printmaker|artist (generic term)|creative person (generic term)
+graphic symbol|1
+(noun)|character|grapheme|written symbol (generic term)|printed symbol (generic term)
+graphic tellurium|1
+(noun)|sylvanite|mineral (generic term)
+graphical|2
+(adj)|graphic|visual communication (related term)
+(adj)|graphic|in writing|written (similar term)
+graphical record|1
+(noun)|graph|visual communication (generic term)
+graphical user interface|1
+(noun)|GUI|interface (generic term)|user interface (generic term)
+graphically|1
+(adv)|diagrammatically
+graphics|2
+(noun)|artwork|art|nontextual matter|visual communication (generic term)
+(noun)|graphic art (generic term)
+graphite|1
+(noun)|black lead|plumbago|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+graphologist|1
+(noun)|handwriting expert|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+graphology|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+graphospasm|1
+(noun)|writer's cramp|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+grapnel|2
+(noun)|grapple|grappler|grappling hook|grappling iron|tool (generic term)
+(noun)|grapnel anchor|anchor (generic term)|ground tackle (generic term)
+grapnel anchor|1
+(noun)|grapnel|anchor (generic term)|ground tackle (generic term)
+grapo|1
+(noun)|First of October Antifascist Resistance Group|GRAPO|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+grappa|1
+(noun)|brandy (generic term)
+grappelli|1
+(noun)|Grappelli|Stephane Grappelli|violinist (generic term)|fiddler (generic term)
+grapple|5
+(noun)|grapnel|grappler|grappling hook|grappling iron|tool (generic term)
+(noun)|clamshell|dredging bucket (generic term)
+(noun)|wrestle|wrestling|grappling|hand-to-hand struggle|struggle (generic term)
+(verb)|cope|get by|make out|make do|contend|deal|manage|act (generic term)|move (generic term)
+(verb)|grip|seize (generic term)|prehend (generic term)|clutch (generic term)
+grappler|2
+(noun)|wrestler|matman|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|grapnel|grapple|grappling hook|grappling iron|tool (generic term)
+grappling|2
+(noun)|wrestle|wrestling|grapple|hand-to-hand struggle|struggle (generic term)
+(noun)|wrestling|rassling|contact sport (generic term)
+grappling hook|1
+(noun)|grapnel|grapple|grappler|grappling iron|tool (generic term)
+grappling iron|1
+(noun)|grapnel|grapple|grappler|grappling hook|tool (generic term)
+graptophyllum|1
+(noun)|Graptophyllum|genus Graptophyllum|asterid dicot genus (generic term)
+graptophyllum pictum|1
+(noun)|caricature plant|Graptophyllum pictum|shrub (generic term)|bush (generic term)
+grapy|1
+(adj)|grapey|tasty (similar term)
+grasp|6
+(noun)|appreciation|hold|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|compass|range|reach|capability (generic term)|capableness (generic term)|potentiality (generic term)
+(noun)|grip|influence (generic term)
+(noun)|clasp|clench|clutch|clutches|grip|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(verb)|hold on|hold (generic term)|take hold (generic term)
+(verb)|grok|get the picture|comprehend|savvy|dig|compass|apprehend|understand (generic term)
+graspable|1
+(adj)|apprehensible|intelligible|perceivable|understandable|comprehensible (similar term)|comprehendible (similar term)
+grasping|3
+(adj)|avaricious|covetous|grabby|greedy|prehensile|acquisitive (similar term)
+(noun)|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|taking hold|seizing|prehension|control (generic term)
+grass|10
+(noun)|gramineous plant (generic term)|graminaceous plant (generic term)
+(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer (generic term)|author (generic term)
+(noun)|eatage|forage|pasture|pasturage|feed (generic term)|provender (generic term)
+(noun)|pot|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(verb)|shoot (generic term)|hit (generic term)|pip (generic term)
+(verb)|cover (generic term)
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)
+(verb)|grass over|cover (generic term)|spread over (generic term)
+(verb)|crop (generic term)|graze (generic term)|pasture (generic term)
+(verb)|denounce|tell on|betray|give away|rat|shit|shop|snitch|stag|inform (generic term)
+grass-covered|1
+(adj)|grassy (similar term)
+grass-eating|1
+(adj)|herbivorous (similar term)
+grass-leaved golden aster|1
+(noun)|golden aster (generic term)
+grass-of-parnassus|1
+(noun)|parnassia|grass-of-Parnassus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+grass bacillus|1
+(noun)|Bacillus subtilis|Bacillus globigii|hay bacillus|bacillus (generic term)|B (generic term)
+grass family|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|monocot family (generic term)|liliopsid family (generic term)
+grass fern|1
+(noun)|ribbon fern|Vittaria lineata|fern (generic term)
+grass finch|2
+(noun)|grassfinch|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+(noun)|vesper sparrow|Pooecetes gramineus|New World sparrow (generic term)
+grass frog|1
+(noun)|Rana temporaria|true frog (generic term)|ranid (generic term)
+grass over|1
+(verb)|grass|cover (generic term)|spread over (generic term)
+grass parakeet|1
+(noun)|budgerigar|budgereegah|budgerygah|budgie|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+grass pea|1
+(noun)|Indian pea|khesari|Lathyrus sativus|vetchling (generic term)
+grass pink|2
+(noun)|Calopogon pulchellum|Calopogon tuberosum|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|cottage pink|Dianthus plumarius|pink (generic term)|garden pink (generic term)
+grass poly|1
+(noun)|hyssop loosestrife|Lythrum hyssopifolia|loosestrife (generic term)
+grass roots|2
+(noun)|foundation (generic term)
+(noun)|folk (generic term)|folks (generic term)|common people (generic term)
+grass skirt|1
+(noun)|skirt (generic term)
+grass snake|3
+(noun)|ring snake|ringed snake|Natrix natrix|water snake (generic term)
+(noun)|garter snake|colubrid snake (generic term)|colubrid (generic term)
+(noun)|green snake|colubrid snake (generic term)|colubrid (generic term)
+grass tree|3
+(noun)|cabbage tree|Cordyline australis|tree (generic term)
+(noun)|Australian grass tree|arborescent plant (generic term)
+(noun)|tree heath|Richea pandanifolia|Australian heath (generic term)
+grass tree family|1
+(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|liliid monocot family (generic term)
+grass vetch|1
+(noun)|grass vetchling|Lathyrus nissolia|vetchling (generic term)
+grass vetchling|1
+(noun)|grass vetch|Lathyrus nissolia|vetchling (generic term)
+grass widow|1
+(noun)|divorcee|woman (generic term)|adult female (generic term)
+grass widower|1
+(noun)|divorced man|man (generic term)|adult male (generic term)
+grass wrack|1
+(noun)|eelgrass|sea wrack|Zostera marina|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+grassfinch|1
+(noun)|grass finch|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+grassfire|1
+(noun)|prairie fire|fire (generic term)
+grasshopper|2
+(noun)|hopper|orthopterous insect (generic term)|orthopteron (generic term)|orthopteran (generic term)
+(noun)|cocktail (generic term)
+grasshopper mouse|1
+(noun)|vole (generic term)|field mouse (generic term)
+grassland|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|biome (generic term)
+grassless|1
+(adj)|grassy (antonym)
+grasslike|1
+(adj)|grassy (similar term)
+grassroots|2
+(adj)|basic (similar term)
+(adj)|common (similar term)
+grassy|1
+(adj)|grass-covered (similar term)|grasslike (similar term)|rushlike (similar term)|sedgelike (similar term)|sedgy (similar term)|grassless (antonym)
+grassy-leafed|1
+(adj)|grassy-leaved|leafy (similar term)
+grassy-leaved|1
+(adj)|grassy-leafed|leafy (similar term)
+grassy death camas|1
+(noun)|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas (generic term)|zigadene (generic term)
+grate|8
+(noun)|grating|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|noise (generic term)
+(noun)|grating|barrier (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|eat into|fret|rankle|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|rub (generic term)
+(verb)|grind|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|scrape|rub (generic term)
+grated cheese|1
+(noun)|cheese (generic term)
+grateful|2
+(adj)|thankful|appreciative (similar term)|glad (similar term)|ungrateful (antonym)
+(adj)|pleasant (similar term)
+gratefully|1
+(adv)|appreciatively|ungratefully (antonym)|unappreciatively (antonym)
+gratefulness|1
+(noun)|thankfulness|appreciativeness|gratitude (generic term)
+grater|1
+(noun)|kitchen utensil (generic term)
+graticule|1
+(noun)|reticle|reticule|network (generic term)
+gratification|2
+(noun)|satisfaction|emotional state (generic term)|spirit (generic term)
+(noun)|satisfaction (generic term)
+gratified|1
+(adj)|pleased (similar term)
+gratify|2
+(verb)|satisfy|dissatisfy (antonym)
+(verb)|pander|indulge|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+gratifying|4
+(adj)|appreciated|pleasing|satisfying|rewarding (similar term)
+(adj)|proud (similar term)
+(adj)|sweet|pleasing (similar term)
+(adj)|enjoyable|pleasurable|pleasant (similar term)
+gratifyingly|1
+(adv)|satisfyingly
+grating|4
+(adj)|gravel|gravelly|rasping|raspy|rough|scratchy|cacophonous (similar term)|cacophonic (similar term)
+(noun)|grate|barrier (generic term)
+(noun)|grate|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|diffraction grating|optical device (generic term)
+gratingly|1
+(adv)|raspingly|harshly
+gratis|2
+(adj)|complimentary|costless|free|gratuitous|unpaid (similar term)
+(adv)|for free|free of charge
+gratitude|1
+(noun)|feeling (generic term)|ingratitude (antonym)
+gratuitous|3
+(adj)|unmerited (similar term)
+(adj)|complimentary|costless|free|gratis|unpaid (similar term)
+(adj)|needless|uncalled-for|unnecessary (similar term)|unneeded (similar term)
+gratuity|2
+(noun)|tip|pourboire|baksheesh|bakshish|bakshis|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+(noun)|prize (generic term)|award (generic term)
+gratulatory|1
+(adj)|congratulatory|felicitous (similar term)
+grave|8
+(adj)|sedate|sober|solemn|serious (similar term)
+(adj)|dangerous|grievous|serious|severe|life-threatening|critical (similar term)
+(adj)|grievous|heavy|weighty|important (similar term)|of import (similar term)
+(noun)|death (generic term)|dying (generic term)|demise (generic term)
+(noun)|tomb|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|grave accent|accent (generic term)|accent mark (generic term)
+(verb)|sculpt|sculpture|carve (generic term)
+(verb)|scratch|engrave|inscribe|carve (generic term)|chip at (generic term)
+grave accent|1
+(noun)|grave|accent (generic term)|accent mark (generic term)
+grave mound|1
+(noun)|burial mound|barrow|tumulus|mound (generic term)|hill (generic term)
+gravedigger|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+gravel|5
+(adj)|grating|gravelly|rasping|raspy|rough|scratchy|cacophonous (similar term)|cacophonic (similar term)
+(noun)|crushed rock|rock (generic term)|stone (generic term)
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|vex|chafe|devil|displease (generic term)
+(verb)|cover (generic term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+gravel pit|1
+(noun)|pit (generic term)|quarry (generic term)|stone pit (generic term)
+gravelly|2
+(adj)|pebbly|shingly|beachy (similar term)|beachlike (similar term)
+(adj)|grating|gravel|rasping|raspy|rough|scratchy|cacophonous (similar term)|cacophonic (similar term)
+gravelweed|1
+(noun)|Verbesina helianthoides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+gravely|2
+(adv)|soberly|staidly
+(adv)|badly|severely|seriously
+graven|2
+(adj)|sculpted|sculptured|carved (similar term)|carven (similar term)
+(adj)|engraved|etched|incised|inscribed|carved (similar term)|carven (similar term)
+graven image|1
+(noun)|idol|god|effigy (generic term)|image (generic term)|simulacrum (generic term)
+graveness|1
+(noun)|gravity|sobriety|soberness|somberness|sombreness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+graver|1
+(noun)|graving tool|pointel|pointrel|hand tool (generic term)
+graverobber|2
+(noun)|thief (generic term)|stealer (generic term)
+(noun)|ghoul|body snatcher|thief (generic term)|stealer (generic term)
+graves|1
+(noun)|Graves|Robert Graves|Robert Ranke Graves|writer (generic term)|author (generic term)
+graves' disease|1
+(noun)|Graves' disease|exophthalmic goiter|hyperthyroidism (generic term)|thyrotoxicosis (generic term)|exophthalmos (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+gravestone|1
+(noun)|headstone|tombstone|stone (generic term)|memorial (generic term)|monument (generic term)
+graveyard|1
+(noun)|cemetery|burial site|burial ground|burying ground|memorial park|necropolis|site (generic term)|land site (generic term)
+graveyard shift|2
+(noun)|night shift|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|night shift|shift (generic term)
+graveyard watch|1
+(noun)|middle watch|midwatch|night watch|watch (generic term)
+gravid|1
+(adj)|big|enceinte|expectant|great|large|heavy|with child|pregnant (similar term)
+gravida|2
+(noun)|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+gravida i|1
+(noun)|primigravida|gravida I|gravida (generic term)
+gravida ii|1
+(noun)|secundigravida|gravida II|gravida (generic term)
+gravida iii|1
+(noun)|tertigravida|gravida III|gravida (generic term)
+gravidation|1
+(noun)|gravidity|gravidness|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+gravidity|1
+(noun)|gravidness|gravidation|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+gravidness|1
+(noun)|gravidity|gravidation|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+gravimeter|2
+(noun)|hydrometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|gravity meter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+gravimetric|1
+(adj)|hydrometric|measurement|measuring|measure|mensuration (related term)
+gravimetric analysis|1
+(noun)|quantitative analysis (generic term)|quantitative chemical analysis (generic term)
+gravimetry|1
+(noun)|hydrometry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+graving dock|1
+(noun)|dry dock|drydock|dock (generic term)|dockage (generic term)|docking facility (generic term)
+graving tool|1
+(noun)|graver|pointel|pointrel|hand tool (generic term)
+gravitas|1
+(noun)|dignity|lordliness|bearing (generic term)|comportment (generic term)|presence (generic term)|mien (generic term)
+gravitate|3
+(verb)|tend (generic term)|be given (generic term)|lean (generic term)|incline (generic term)|run (generic term)
+(verb)|be (generic term)
+(verb)|move (generic term)
+gravitation|3
+(noun)|gravity|gravitational attraction|gravitational force|attraction (generic term)|attractive force (generic term)
+(noun)|change of location (generic term)|travel (generic term)|levitation (antonym)
+(noun)|drift (generic term)|trend (generic term)|movement (generic term)
+gravitation wave|1
+(noun)|gravity wave|wave (generic term)|undulation (generic term)
+gravitational|1
+(adj)|gravitative|attraction|attractive force (related term)
+gravitational attraction|1
+(noun)|gravity|gravitation|gravitational force|attraction (generic term)|attractive force (generic term)
+gravitational collapse|1
+(noun)|implosion (generic term)
+gravitational constant|1
+(noun)|universal gravitational constant|constant of gravitation|G|constant (generic term)
+gravitational field|1
+(noun)|field (generic term)|field of force (generic term)|force field (generic term)
+gravitational force|1
+(noun)|gravity|gravitation|gravitational attraction|attraction (generic term)|attractive force (generic term)
+gravitational interaction|1
+(noun)|interaction (generic term)|fundamental interaction (generic term)
+gravitational mass|1
+(noun)|mass (generic term)
+gravitational theory|1
+(noun)|theory of gravitation|theory of gravity|Newton's theory of gravitation|scientific theory (generic term)
+gravitative|1
+(adj)|gravitational|attraction|attractive force (related term)
+graviton|1
+(noun)|gauge boson (generic term)
+gravity|3
+(noun)|gravitation|gravitational attraction|gravitational force|attraction (generic term)|attractive force (generic term)
+(noun)|graveness|sobriety|soberness|somberness|sombreness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+(noun)|solemnity|feeling (generic term)|levity (antonym)
+gravity-assist|1
+(noun)|trajectory (generic term)|flight (generic term)
+gravity bomb|1
+(noun)|dumb bomb|bomb (generic term)|smart bomb (antonym)
+gravity fault|1
+(noun)|normal fault|common fault|inclined fault (generic term)
+gravity gradient|1
+(noun)|gradient (generic term)
+gravity meter|1
+(noun)|gravimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+gravity wave|1
+(noun)|gravitation wave|wave (generic term)|undulation (generic term)
+gravure|4
+(noun)|intaglio printing|intaglio|printing (generic term)|printing process (generic term)
+(noun)|engraving (generic term)
+(noun)|photogravure|heliogravure|print (generic term)
+(noun)|printing (generic term)
+gravy|2
+(noun)|sauce (generic term)
+(noun)|boom|bonanza|gold rush|godsend|manna from heaven|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+gravy boat|1
+(noun)|gravy holder|sauceboat|boat|dish (generic term)
+gravy holder|1
+(noun)|gravy boat|sauceboat|boat|dish (generic term)
+gravy train|1
+(noun)|easy money|income (generic term)
+gray|14
+(adj)|grey|greyish|grayish|achromatic (similar term)
+(adj)|grey|grey-haired|gray-haired|grey-headed|gray-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+(adj)|dull|grey|leaden|cloudy (similar term)
+(adj)|grey|southern (similar term)
+(adj)|grey|intermediate (similar term)
+(noun)|grayness|grey|greyness|achromatic color (generic term)|achromatic colour (generic term)
+(noun)|grey|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|grey|organization (generic term)|organisation (generic term)
+(noun)|grey|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(noun)|Gray|Thomas Gray|poet (generic term)
+(noun)|Gray|Robert Gray|navigator (generic term)
+(noun)|Gray|Asa Gray|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+(verb)|grey|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|grey|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+gray-black|1
+(adj)|grey-black|greyish-black|grayish-black|achromatic (similar term)
+gray-blue|1
+(adj)|grey-blue|greyish-blue|grayish-blue|chromatic (similar term)
+gray-brown|1
+(adj)|grey-brown|greyish-brown|grayish-brown|chromatic (similar term)
+gray-green|1
+(adj)|grey-green|greyish-green|grayish-green|chromatic (similar term)
+gray-haired|1
+(adj)|grey|gray|grey-haired|grey-headed|gray-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+gray-headed|1
+(adj)|grey|gray|grey-haired|gray-haired|grey-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+gray-pink|1
+(adj)|grey-pink|greyish-pink|grayish-pink|chromatic (similar term)
+gray-white|1
+(adj)|grey-white|greyish-white|grayish-white|achromatic (similar term)
+gray alder|1
+(noun)|grey alder|Alnus incana|alder (generic term)|alder tree (generic term)
+gray area|1
+(noun)|grey area|area (generic term)
+gray birch|1
+(noun)|grey birch|American grey birch|American gray birch|Betula populifolia|birch (generic term)|birch tree (generic term)
+gray catbird|1
+(noun)|catbird|grey catbird|Dumetella carolinensis|oscine (generic term)|oscine bird (generic term)
+gray flounder|1
+(noun)|grey flounder|Etropus rimosus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+gray fox|1
+(noun)|grey fox|Urocyon cinereoargenteus|fox (generic term)
+gray goldenrod|1
+(noun)|grey goldenrod|Solidago nemoralis|goldenrod (generic term)
+gray hen|1
+(noun)|greyhen|grayhen|grey hen|heath hen|black grouse (generic term)
+gray jay|1
+(noun)|Canada jay|grey jay|camp robber|whisker jack|Perisoreus canadensis|jay (generic term)
+gray kingbird|1
+(noun)|grey kingbird|petchary|Tyrannus domenicensis domenicensis|kingbird (generic term)|Tyrannus tyrannus (generic term)
+gray lemming|1
+(noun)|grey lemming|red-backed lemming|lemming (generic term)
+gray market|1
+(noun)|grey market|market (generic term)|marketplace (generic term)
+gray matter|1
+(noun)|grey matter|grey substance|gray substance|substantia grisea|nervous tissue (generic term)|nerve tissue (generic term)
+gray mullet|2
+(noun)|mullet|grey mullet|fish (generic term)
+(noun)|mullet|grey mullet|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+gray partridge|1
+(noun)|Hungarian partridge|grey partridge|Perdix perdix|partridge (generic term)
+gray polypody|1
+(noun)|grey polypody|resurrection fern|Polypodium polypodioides|polypody (generic term)
+gray poplar|1
+(noun)|grey poplar|Populus canescens|poplar (generic term)|poplar tree (generic term)
+gray sage|1
+(noun)|silver sage|silver sagebrush|grey sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+gray sea eagle|1
+(noun)|ern|erne|grey sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+gray skate|1
+(noun)|grey skate|Raja batis|skate (generic term)
+gray snapper|1
+(noun)|grey snapper|mangrove snapper|Lutjanus griseus|snapper (generic term)
+gray sole|1
+(noun)|grey sole|sole (generic term)|fillet of sole (generic term)
+gray substance|1
+(noun)|grey matter|gray matter|grey substance|substantia grisea|nervous tissue (generic term)|nerve tissue (generic term)
+gray whale|1
+(noun)|grey whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale (generic term)|whalebone whale (generic term)
+gray willow|1
+(noun)|grey willow|Salix cinerea|willow (generic term)|willow tree (generic term)
+gray wolf|1
+(noun)|timber wolf|grey wolf|Canis lupus|wolf (generic term)
+grayback|2
+(noun)|greyback|Limnodromus griseus|dowitcher (generic term)
+(noun)|knot|greyback|Calidris canutus|sandpiper (generic term)
+graybeard|1
+(noun)|old man|greybeard|Methuselah|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)|man (generic term)|adult male (generic term)
+grayhen|1
+(noun)|greyhen|grey hen|gray hen|heath hen|black grouse (generic term)
+grayish|1
+(adj)|grey|gray|greyish|achromatic (similar term)
+grayish-black|1
+(adj)|grey-black|gray-black|greyish-black|achromatic (similar term)
+grayish-blue|1
+(adj)|grey-blue|gray-blue|greyish-blue|chromatic (similar term)
+grayish-brown|1
+(adj)|grey-brown|gray-brown|greyish-brown|chromatic (similar term)
+grayish-green|1
+(adj)|grey-green|gray-green|greyish-green|chromatic (similar term)
+grayish-pink|1
+(adj)|grey-pink|gray-pink|greyish-pink|chromatic (similar term)
+grayish-white|1
+(adj)|grey-white|gray-white|greyish-white|achromatic (similar term)
+grayish brown|1
+(noun)|dun|greyish brown|fawn|light brown (generic term)
+graylag|1
+(noun)|greylag|greylag goose|graylag goose|Anser anser|goose (generic term)
+graylag goose|1
+(noun)|greylag|graylag|greylag goose|Anser anser|goose (generic term)
+grayly|1
+(adv)|greyly
+grayness|1
+(noun)|gray|grey|greyness|achromatic color (generic term)|achromatic colour (generic term)
+graz|1
+(noun)|Graz|city (generic term)|metropolis (generic term)|urban center (generic term)
+graze|7
+(noun)|abrasion (generic term)|scratch (generic term)|scrape (generic term)|excoriation (generic term)
+(noun)|grazing|eating (generic term)|feeding (generic term)
+(verb)|crop|browse|range|pasture|feed (generic term)|eat (generic term)
+(verb)|injure (generic term)|wound (generic term)
+(verb)|crop|pasture|feed (generic term)|give (generic term)
+(verb)|crease|rake|brush (generic term)
+(verb)|browse|nosh (generic term)|snack (generic term)
+grazed|1
+(adj)|touched (similar term)
+grazier|1
+(noun)|rancher (generic term)
+grazing|2
+(noun)|graze|eating (generic term)|feeding (generic term)
+(noun)|shaving|skimming|touch (generic term)|touching (generic term)
+grazing fire|1
+(noun)|fire (generic term)|firing (generic term)
+grazing land|1
+(noun)|pasture|pastureland|lea|ley|grassland (generic term)
+grease|3
+(noun)|lubricating oil|oil (generic term)
+(noun)|dirt|filth|grime|soil|stain|grunge|dirtiness (generic term)|uncleanness (generic term)
+(verb)|cover (generic term)
+grease-gun|1
+(noun)|gun|pump (generic term)
+grease monkey|1
+(noun)|automobile mechanic|auto-mechanic|car-mechanic|mechanic|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+grease one's palms|1
+(verb)|bribe|corrupt|buy|pay (generic term)
+greaseball|1
+(noun)|wop|dago|ginzo|Guinea|Italian (generic term)
+greased|1
+(adj)|lubricated|unlubricated (antonym)
+greasepaint|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+greaseproof|1
+(adj)|impervious (similar term)|imperviable (similar term)
+greaseproof paper|1
+(noun)|paper (generic term)
+greaser|1
+(noun)|wetback|taco|Mexican (generic term)
+greasewood|1
+(noun)|black greasewood|Sarcobatus vermiculatus|shrub (generic term)|bush (generic term)
+greasiness|1
+(noun)|oiliness|oleaginousness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+greasy|2
+(adj)|oily|sebaceous|oleaginous|fatty (similar term)|fat (similar term)
+(adj)|oily|dirty (similar term)|soiled (similar term)|unclean (similar term)
+greasy spoon|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+great|8
+(adj)|large (similar term)|big (similar term)
+(adj)|outstanding|important (similar term)|of import (similar term)
+(adj)|extraordinary (similar term)
+(adj)|bang-up|bully|corking|cracking|dandy|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(adj)|capital|majuscule|uppercase (similar term)
+(adj)|avid|eager|zealous|enthusiastic (similar term)
+(adj)|big|enceinte|expectant|gravid|large|heavy|with child|pregnant (similar term)
+(noun)|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+great-aunt|1
+(noun)|grandaunt|aunt (generic term)|auntie (generic term)|aunty (generic term)
+great-leaved macrophylla|1
+(noun)|large-leaved magnolia|large-leaved cucumber tree|Magnolia macrophylla|magnolia (generic term)
+great-nephew|1
+(noun)|grandnephew|nephew (generic term)
+great-niece|1
+(noun)|grandniece|niece (generic term)
+great-uncle|1
+(noun)|granduncle|uncle (generic term)
+great adductor muscle|1
+(noun)|musculus adductor magnus|adductor (generic term)|adductor muscle (generic term)
+great anteater|1
+(noun)|ant bear|giant anteater|tamanoir|Myrmecophaga jubata|anteater (generic term)|New World anteater (generic term)
+great ape|1
+(noun)|pongid|anthropoid ape (generic term)
+great arabian desert|1
+(noun)|Arabian Desert|Great Arabian Desert|desert (generic term)
+great attractor|1
+(noun)|Great Attractor|galaxy (generic term)|extragalactic nebula (generic term)
+great auk|1
+(noun)|Pinguinus impennis|auk (generic term)
+great australian bight|1
+(noun)|Great Australian Bight|bight (generic term)
+great australian desert|1
+(noun)|Australian Desert|Great Australian Desert|desert (generic term)
+great barracuda|1
+(noun)|Sphyraena barracuda|barracuda (generic term)
+great barrier reef|1
+(noun)|Great Barrier Reef|coral reef (generic term)
+great bear|1
+(noun)|Great Bear|Ursa Major|constellation (generic term)
+great bellied|1
+(adj)|big-bellied|bellied (similar term)
+great black-backed gull|1
+(noun)|black-backed gull|cob|Larus marinus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+great blue heron|1
+(noun)|Ardea herodius|heron (generic term)
+great blue shark|1
+(noun)|blue shark|Prionace glauca|requiem shark (generic term)
+great bowerbird|1
+(noun)|Chlamydera nuchalis|bowerbird (generic term)|catbird (generic term)
+great britain|2
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+(noun)|Great Britain|island (generic term)
+great burdock|1
+(noun)|greater burdock|cocklebur|Arctium lappa|burdock (generic term)|clotbur (generic term)
+great bustard|1
+(noun)|Otis tarda|bustard (generic term)
+great care|1
+(noun)|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+great cerebral vein|1
+(noun)|vena cerebri magna|cerebral vein (generic term)|vena cerebri (generic term)
+great circle|1
+(noun)|line (generic term)
+great commoner|1
+(noun)|Bryan|William Jennings Bryan|Great Commoner|Boy Orator of the Platte|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|lawyer (generic term)|attorney (generic term)
+great crested grebe|1
+(noun)|Podiceps cristatus|grebe (generic term)
+great dane|1
+(noun)|Great Dane|working dog (generic term)
+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 (generic term)|large indefinite amount (generic term)
+great depression|2
+(noun)|Great Depression|depression (generic term)|slump (generic term)|economic crisis (generic term)
+(noun)|Depression|Great Depression|historic period (generic term)|age (generic term)
+great divide|1
+(noun)|Great Divide|watershed (generic term)|water parting (generic term)|divide (generic term)
+great dividing range|1
+(noun)|Great Dividing Range|Eastern Highlands|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+great dog|1
+(noun)|Canis Major|Great Dog|constellation (generic term)
+great duckweed|1
+(noun)|water flaxseed|Spirodela polyrrhiza|duckweed (generic term)
+great elector|1
+(noun)|Frederick William|Great Elector|Elector (generic term)
+great falls|1
+(noun)|Great Falls|town (generic term)
+great grandchild|1
+(noun)|grandchild (generic term)
+great granddaughter|1
+(noun)|great grandchild (generic term)
+great grandfather|1
+(noun)|great grandparent (generic term)
+great grandmother|1
+(noun)|great grandparent (generic term)
+great grandparent|1
+(noun)|forebear (generic term)|forbear (generic term)
+great grandson|1
+(noun)|great grandchild (generic term)
+great gray owl|1
+(noun)|great grey owl|Strix nebulosa|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+great grey kangaroo|1
+(noun)|giant kangaroo|Macropus giganteus|kangaroo (generic term)
+great grey owl|1
+(noun)|great gray owl|Strix nebulosa|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+great gross|1
+(noun)|1728|large integer (generic term)
+great hall|1
+(noun)|hall (generic term)
+great horned owl|1
+(noun)|Bubo virginianus|horned owl (generic term)
+great hundred|1
+(noun)|long hundred|120|large integer (generic term)
+great indian desert|1
+(noun)|Thar Desert|Great Indian Desert|desert (generic term)
+great knapweed|1
+(noun)|greater knapweed|Centaurea scabiosa|knapweed (generic term)
+great lakes|1
+(noun)|Great Lakes|lake (generic term)
+great lakes state|1
+(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state (generic term)
+great lobelia|1
+(noun)|blue cardinal flower|Lobelia siphilitica|lobelia (generic term)
+great maple|1
+(noun)|sycamore|scottish maple|Acer pseudoplatanus|maple (generic term)
+great mendenhall glacier|1
+(noun)|Mendenhall Glacier|Great Mendenhall Glacier|Piedmont glacier (generic term)|Piedmont type of glacier (generic term)
+great millet|1
+(noun)|kaffir|kafir corn|kaffir corn|Sorghum bicolor|sorghum (generic term)
+great mother|1
+(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity (generic term)
+great mullein|1
+(noun)|common mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+great plains|1
+(noun)|Great Plains|Great Plains of North America|prairie (generic term)
+great plains of north america|1
+(noun)|Great Plains|Great Plains of North America|prairie (generic term)
+great plains paintbrush|1
+(noun)|Castilleja sessiliflora|Indian paintbrush (generic term)|painted cup (generic term)
+great power|1
+(noun)|world power|major power|power|superpower|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+great proletarian cultural revolution|1
+(noun)|Cultural Revolution|Great Proletarian Cultural Revolution|revolution (generic term)
+great pyramid|1
+(noun)|Pyramid|Great Pyramid|Pyramids of Egypt|memorial (generic term)|monument (generic term)
+great pyrenees|1
+(noun)|Great Pyrenees|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+great ragweed|1
+(noun)|Ambrosia trifida|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+great revolt|1
+(noun)|Peasant's Revolt|Great Revolt|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+great rift valley|1
+(noun)|Great Rift Valley|rift valley (generic term)
+great russian|1
+(noun)|Great Russian|Russian (generic term)
+great salt desert|1
+(noun)|Dasht-e-Kavir|Kavir Desert|Great Salt Desert|desert (generic term)
+great salt lake|1
+(noun)|Great Salt Lake|lake (generic term)
+great sandy desert|2
+(noun)|Rub al-Khali|Ar Rimsal|Dahna|Great Sandy Desert|desert (generic term)
+(noun)|Great Sandy Desert|desert (generic term)
+great saphenous vein|1
+(noun)|long saphenous vein|saphenous vein (generic term)|vena saphena (generic term)
+great schism|1
+(noun)|Great Schism|time period (generic term)|period of time (generic term)|period (generic term)|schism (generic term)
+great seal|1
+(noun)|seal (generic term)|stamp (generic term)
+great seal of the united states|1
+(noun)|Great Seal of the United States|great seal (generic term)
+great skua|1
+(noun)|Catharacta skua|skua (generic term)|bonxie (generic term)
+great slave lake|1
+(noun)|Great Slave Lake|lake (generic term)
+great smoky mountains|1
+(noun)|Great Smoky Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+great smoky mountains national park|1
+(noun)|Great Smoky Mountains National Park|national park (generic term)
+great snipe|1
+(noun)|woodcock snipe|Gallinago media|snipe (generic term)
+great solomon's-seal|1
+(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal (generic term)
+great st john's wort|1
+(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort (generic term)
+great toe|1
+(noun)|big toe|hallux|toe (generic term)
+great victoria desert|1
+(noun)|Great Victoria Desert|desert (generic term)
+great wall|1
+(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart (generic term)|bulwark (generic term)|wall (generic term)
+great wall of china|1
+(noun)|Chinese Wall|Great Wall|Great Wall of China|rampart (generic term)|bulwark (generic term)|wall (generic term)
+great war|1
+(noun)|World War I|World War 1|Great War|First World War|War to End War|world war (generic term)
+great white heron|3
+(noun)|American egret|Egretta albus|egret (generic term)
+(noun)|Casmerodius albus|egret (generic term)
+(noun)|Ardea occidentalis|heron (generic term)
+great white hope|1
+(noun)|white hope|hope (generic term)
+great white shark|1
+(noun)|white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark (generic term)
+great white way|1
+(noun)|Broadway|Great White Way|street (generic term)
+great year|1
+(noun)|Platonic year|time period (generic term)|period of time (generic term)|period (generic term)
+great yellow gentian|1
+(noun)|Gentiana lutea|gentian (generic term)
+great yellowcress|1
+(noun)|Rorippa amphibia|Nasturtium amphibium|watercress (generic term)
+greatcoat|1
+(noun)|overcoat|topcoat|coat (generic term)
+greater|1
+(adj)|lesser (antonym)
+greater antilles|1
+(noun)|Greater Antilles|archipelago (generic term)
+greater burdock|1
+(noun)|great burdock|cocklebur|Arctium lappa|burdock (generic term)|clotbur (generic term)
+greater butterfly orchid|1
+(noun)|Platanthera chlorantha|Habenaria chlorantha|orchid (generic term)|orchidaceous plant (generic term)
+greater celandine|1
+(noun)|celandine|swallowwort|swallow wort|Chelidonium majus|poppy (generic term)
+greater knapweed|1
+(noun)|great knapweed|Centaurea scabiosa|knapweed (generic term)
+greater kudu|1
+(noun)|Tragelaphus strepsiceros|kudu (generic term)|koodoo (generic term)|koudou (generic term)
+greater london|1
+(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital (generic term)
+greater masterwort|1
+(noun)|Astrantia major|astrantia (generic term)|masterwort (generic term)
+greater new orleans bridge|1
+(noun)|Greater New Orleans Bridge|cantilever bridge (generic term)
+greater new york|1
+(noun)|New York|New York City|Greater New York|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+greater omentum|1
+(noun)|gastrocolic omentum|caul|omentum (generic term)
+greater pectoral muscle|1
+(noun)|pectoralis major|musculus pectoralis major|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+greater peritoneal sac|1
+(noun)|peritoneal cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+greater pichiciego|1
+(noun)|Burmeisteria retusa|armadillo (generic term)
+greater prairie chicken|1
+(noun)|Tympanuchus cupido|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+greater rhomboid muscle|1
+(noun)|rhomboideus major muscle|musculus rhomboideus major|rhomboid (generic term)|rhomboid muscle (generic term)
+greater scaup|1
+(noun)|Aythya marila|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+greater spearwort|1
+(noun)|Ranunculus lingua|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+greater stitchwort|1
+(noun)|stitchwort|starwort|Stellaria holostea|chickweed (generic term)
+greater sunda islands|1
+(noun)|Greater Sunda Islands|archipelago (generic term)
+greater water parsnip|1
+(noun)|Sium latifolium|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+greater whitethroat|1
+(noun)|whitethroat|Sylvia communis|warbler (generic term)
+greater yellowlegs|1
+(noun)|Tringa melanoleuca|yellowlegs (generic term)
+greatest|1
+(adj)|sterling|superlative|superior (similar term)
+greatest common divisor|1
+(noun)|greatest common factor|highest common factor|common divisor (generic term)|common factor (generic term)|common measure (generic term)
+greatest common factor|1
+(noun)|greatest common divisor|highest common factor|common divisor (generic term)|common factor (generic term)|common measure (generic term)
+greathearted|1
+(adj)|magnanimous|noble (similar term)
+greatness|2
+(noun)|illustriousness|importance (generic term)
+(noun)|enormousness|grandness|immenseness|immensity|sizeableness|vastness|wideness|largeness (generic term)|bigness (generic term)
+greave|1
+(noun)|jambeau|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+greaves|1
+(noun)|crackling|residue (generic term)
+grebe|1
+(noun)|podicipitiform seabird (generic term)
+grecian|2
+(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Grecian|European (generic term)
+greco|1
+(noun)|El Greco|Greco|Domenikos Theotocopoulos|old master (generic term)
+greco-roman|1
+(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical (similar term)
+greco-roman architecture|1
+(noun)|classical architecture|Greco-Roman architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+greco-roman deity|1
+(noun)|Greco-Roman deity|Graeco-Roman deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+greco-roman wrestling|1
+(noun)|Greco-Roman wrestling|wrestling (generic term)|rassling (generic term)|grappling (generic term)
+greece|1
+(noun)|Greece|Hellenic Republic|Ellas|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+greed|2
+(noun)|desire (generic term)
+(noun)|avarice|covetousness|rapacity|avaritia|mortal sin (generic term)|deadly sin (generic term)
+greedily|1
+(adv)|avariciously|covetously
+greediness|2
+(noun)|hoggishness|piggishness|gluttony (generic term)
+(noun)|voraciousness|rapaciousness|selfishness (generic term)
+greedy|3
+(adj)|avaricious|covetous|grabby|grasping|prehensile|acquisitive (similar term)
+(adj)|avid|devouring|esurient|desirous (similar term)|wishful (similar term)
+(adj)|gluttonous (similar term)
+greegree|1
+(noun)|grigri|gres-gris|amulet (generic term)|talisman (generic term)
+greek|3
+(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Greek|Hellenic|Hellenic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+(noun)|Greek|Hellene|European (generic term)
+greek alphabet|1
+(noun)|Greek alphabet|alphabet (generic term)
+greek architecture|1
+(noun)|Greek architecture|classical architecture (generic term)|Greco-Roman architecture (generic term)
+greek capital|1
+(noun)|Athens|Athinai|capital of Greece|Greek capital|national capital (generic term)
+greek catholic|1
+(noun)|Greek Catholic|Catholic (generic term)
+greek chorus|1
+(noun)|chorus|Greek chorus|company (generic term)|troupe (generic term)
+greek church|1
+(noun)|Greek Orthodox Church|Greek Church|Orthodox Church (generic term)|Orthodox Catholic Church (generic term)|Eastern Orthodox Church (generic term)|Eastern Church (generic term)|Eastern Orthodox (generic term)
+greek clover|1
+(noun)|fenugreek|Greek clover|Trigonella foenumgraecum|herb (generic term)|herbaceous plant (generic term)
+greek cross|1
+(noun)|Greek cross|Cross (generic term)
+greek deity|1
+(noun)|Greek deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+greek drachma|1
+(noun)|drachma|Greek drachma|Greek monetary unit (generic term)
+greek fire|1
+(noun)|Greek fire|mixture (generic term)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+greek fret|1
+(noun)|fret|Greek fret|Greek key|key pattern|architectural ornament (generic term)
+greek key|1
+(noun)|fret|Greek fret|Greek key|key pattern|architectural ornament (generic term)
+greek mode|1
+(noun)|Greek mode|mode (generic term)|musical mode (generic term)
+greek monetary unit|1
+(noun)|Greek monetary unit|monetary unit (generic term)
+greek mythology|1
+(noun)|Greek mythology|classical mythology (generic term)
+greek orthodox|1
+(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church (related term)
+greek orthodox church|1
+(noun)|Greek Orthodox Church|Greek Church|Orthodox Church (generic term)|Orthodox Catholic Church (generic term)|Eastern Orthodox Church (generic term)|Eastern Church (generic term)|Eastern Orthodox (generic term)
+greek partridge|1
+(noun)|Greek partridge|rock partridge|Alectoris graeca|partridge (generic term)
+greek valerian|2
+(noun)|Greek valerian|Polemonium reptans|polemonium (generic term)
+(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+greeley|1
+(noun)|Greeley|Horace Greeley|journalist (generic term)
+green|14
+(adj)|greenish|light-green|dark-green|chromatic (similar term)
+(adj)|party|political party (related term)
+(adj)|unripe|unripened|immature|unaged (similar term)|ripe (antonym)
+(adj)|ill (similar term)|sick (similar term)
+(adj)|fleeceable|gullible|naive (similar term)|naif (similar term)
+(noun)|greenness|viridity|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|park|commons|common|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|Green|William Green|labor leader (generic term)
+(noun)|Green|environmentalist (generic term)|conservationist (generic term)
+(noun)|Green|Green River|river (generic term)
+(noun)|putting green|site (generic term)|land site (generic term)
+(noun)|greens|leafy vegetable|vegetable (generic term)|veggie (generic term)
+(noun)|K|jet|super acid|special K|honey oil|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+green-blind|1
+(adj)|deuteranopic|blind (similar term)|unsighted (similar term)
+green-blindness|1
+(noun)|deuteranopia|Daltonism|red-green dichromacy (generic term)|red-green color blindness (generic term)|red-green colour blindness (generic term)
+green-eyed|1
+(adj)|jealous|overjealous|distrustful (similar term)
+green-eyed monster|1
+(noun)|jealousy|envy (generic term)|enviousness (generic term)
+green-tailed towhee|1
+(noun)|Chlorura chlorura|towhee (generic term)
+green-white|1
+(adj)|greenish-white|achromatic (similar term)
+green-winged teal|1
+(noun)|greenwing|Anas crecca|teal (generic term)
+green adder's mouth|1
+(noun)|Malaxis-unifolia|Malaxis ophioglossoides|orchid (generic term)|orchidaceous plant (generic term)
+green alder|2
+(noun)|Alnus veridis crispa|Alnus crispa|alder (generic term)|alder tree (generic term)
+(noun)|Alnus veridis|alder (generic term)|alder tree (generic term)
+green algae|1
+(noun)|chlorophyte|alga (generic term)|algae (generic term)
+green apple aphid|1
+(noun)|apple aphid|Aphis pomi|aphid (generic term)
+green arrow arum|1
+(noun)|tuckahoe|Peltandra virginica|arrow arum (generic term)
+green ash|1
+(noun)|Fraxinus pennsylvanica subintegerrima|red ash (generic term)|downy ash (generic term)|Fraxinus pennsylvanica (generic term)
+green bay|1
+(noun)|Green Bay|city (generic term)|metropolis (generic term)|urban center (generic term)
+green bean|2
+(noun)|fresh bean (generic term)
+(noun)|common bean (generic term)|common bean plant (generic term)|Phaseolus vulgaris (generic term)
+green beret|1
+(noun)|Green Beret|soldier (generic term)
+green bristlegrass|1
+(noun)|green foxtail|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+green broom|1
+(noun)|common broom|Scotch broom|Cytisus scoparius|broom (generic term)
+green card|1
+(noun)|positive identification (generic term)
+green corn|2
+(noun)|sweet corn|sugar corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+(noun)|sweet corn|corn (generic term)|edible corn (generic term)
+green dinosaur|1
+(noun)|Bartle Frere|genus Bartle-Frere|dicot genus (generic term)|magnoliopsid genus (generic term)
+green douglas fir|1
+(noun)|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+green dragon|2
+(noun)|dragon arum|Dracunculus vulgaris|arum (generic term)|aroid (generic term)
+(noun)|Arisaema dracontium|arum (generic term)|aroid (generic term)
+green fingers|1
+(noun)|green thumb|forte (generic term)|strong suit (generic term)|long suit (generic term)|metier (generic term)|specialty (generic term)|speciality (generic term)|strong point (generic term)|strength (generic term)
+green foxtail|1
+(noun)|green bristlegrass|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+green fringed orchis|1
+(noun)|ragged orchid|ragged orchis|ragged-fringed orchid|Habenaria lacera|fringed orchis (generic term)|fringed orchid (generic term)
+green frog|1
+(noun)|spring frog|Rana clamitans|true frog (generic term)|ranid (generic term)
+green gentian|1
+(noun)|Frasera speciosa|Swertia speciosa|herb (generic term)|herbaceous plant (generic term)
+green gland|1
+(noun)|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+green goddess|1
+(noun)|pot|grass|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+green gold|1
+(noun)|gold (generic term)|Au (generic term)|atomic number 79 (generic term)
+green goods|1
+(noun)|produce|green groceries|garden truck|food (generic term)|solid food (generic term)
+green gram|1
+(noun)|mung|mung bean|golden gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+green groceries|1
+(noun)|produce|green goods|garden truck|food (generic term)|solid food (generic term)
+green hellebore|1
+(noun)|Helleborus viridis|hellebore (generic term)
+green june beetle|1
+(noun)|green June beetle|figeater|June beetle (generic term)|June bug (generic term)|May bug (generic term)|May beetle (generic term)
+green lacewing|1
+(noun)|chrysopid|stink fly|lacewing (generic term)|lacewing fly (generic term)
+green lead ore|1
+(noun)|pyromorphite|mineral (generic term)
+green light|2
+(noun)|go-ahead|traffic light (generic term)|traffic signal (generic term)|stoplight (generic term)
+(noun)|permission (generic term)
+green line|1
+(noun)|Green Line|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+green lizard|1
+(noun)|Lacerta viridis|lacertid lizard (generic term)|lacertid (generic term)
+green mamba|1
+(noun)|black mamba (generic term)|Dendroaspis augusticeps (generic term)
+green manure|1
+(noun)|manure (generic term)
+green market|1
+(noun)|farmer's market|greenmarket|open-air market (generic term)|open-air marketplace (generic term)|market square (generic term)
+green mayonnaise|1
+(noun)|sauce verte|mayonnaise (generic term)|mayo (generic term)
+green monkey|1
+(noun)|African green monkey|Cercopithecus aethiops sabaeus|guenon (generic term)|guenon monkey (generic term)
+green monkey disease|1
+(noun)|Marburg disease|Marburg hemorrhagic fever|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+green mountain state|1
+(noun)|Vermont|Green Mountain State|VT|American state (generic term)
+green mountains|1
+(noun)|Green Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+green mushroom pimple|1
+(noun)|mushroom pimple (generic term)
+green olive|1
+(noun)|olive (generic term)
+green onion|1
+(noun)|scallion|onion (generic term)
+green paper|1
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+green party|1
+(noun)|Green Party|party (generic term)|political party (generic term)
+green pea|1
+(noun)|garden pea|pea (generic term)
+green pea soup|1
+(noun)|potage St. Germain|soup (generic term)
+green peach aphid|1
+(noun)|greenfly (generic term)
+green peafowl|1
+(noun)|Pavo muticus|peafowl (generic term)|bird of Juno (generic term)
+green pepper|1
+(noun)|sweet pepper (generic term)
+green plover|1
+(noun)|lapwing|peewit|pewit|plover (generic term)
+green revolution|1
+(noun)|revolution (generic term)
+green river|1
+(noun)|Green|Green River|river (generic term)
+green salad|1
+(noun)|tossed salad (generic term)
+green smut|1
+(noun)|false smut|smut (generic term)
+green smut fungus|1
+(noun)|Ustilaginoidea virens|fungus (generic term)
+green snake|2
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+(noun)|grass snake|colubrid snake (generic term)|colubrid (generic term)
+green soap|1
+(noun)|soft soap|soap (generic term)
+green soybean|1
+(noun)|shell bean (generic term)
+green spleenwort|1
+(noun)|Asplenium viride|spleenwort (generic term)
+green tea|1
+(noun)|tea (generic term)|tea leaf (generic term)
+green thumb|1
+(noun)|green fingers|forte (generic term)|strong suit (generic term)|long suit (generic term)|metier (generic term)|specialty (generic term)|speciality (generic term)|strong point (generic term)|strength (generic term)
+green turtle|1
+(noun)|Chelonia mydas|sea turtle (generic term)|marine turtle (generic term)
+green turtle soup|1
+(noun)|turtle soup|soup (generic term)
+green woodpecker|1
+(noun)|Picus viridis|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+greenback|1
+(noun)|bill|note|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+greenback party|1
+(noun)|Greenback Party|party (generic term)|political party (generic term)
+greenbelt|1
+(noun)|greenway|belt (generic term)
+greenberg|1
+(noun)|Greenberg|Joseph Greenberg|linguist (generic term)|polyglot (generic term)
+greenbottle|1
+(noun)|greenbottle fly|blowfly (generic term)|blow fly (generic term)
+greenbottle fly|1
+(noun)|greenbottle|blowfly (generic term)|blow fly (generic term)
+greenbrier|1
+(noun)|bullbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine (generic term)
+greene|1
+(noun)|Greene|Graham Greene|Henry Graham Greene|writer (generic term)|author (generic term)
+greenery|1
+(noun)|verdure|leaf (generic term)|leafage (generic term)|foliage (generic term)
+greeneye|1
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+greenfly|1
+(noun)|aphid (generic term)
+greengage|1
+(noun)|greengage plum|plum (generic term)
+greengage plum|1
+(noun)|greengage|plum (generic term)
+greengrocer|1
+(noun)|grocer (generic term)
+greengrocery|2
+(noun)|grocery (generic term)|foodstuff (generic term)
+(noun)|grocery store (generic term)|grocery (generic term)|food market (generic term)|market (generic term)
+greenhood|1
+(noun)|helmet orchid|orchid (generic term)|orchidaceous plant (generic term)
+greenhorn|1
+(noun)|cub|rookie|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+greenhouse|2
+(adj)|atmospheric phenomenon (related term)
+(noun)|nursery|glasshouse|building (generic term)|edifice (generic term)
+greenhouse effect|1
+(noun)|greenhouse warming|atmospheric phenomenon (generic term)
+greenhouse emission|1
+(noun)|greenhouse gas|gas (generic term)
+greenhouse gas|1
+(noun)|greenhouse emission|gas (generic term)
+greenhouse warming|1
+(noun)|greenhouse effect|atmospheric phenomenon (generic term)
+greenhouse whitefly|1
+(noun)|Trialeurodes vaporariorum|whitefly (generic term)
+greening|1
+(noun)|rejuvenation|organic phenomenon (generic term)
+greenish|1
+(adj)|green|light-green|dark-green|chromatic (similar term)
+greenish-brown|1
+(adj)|chromatic (similar term)
+greenish-gray|1
+(adj)|greenish-grey|achromatic (similar term)
+greenish-grey|1
+(adj)|greenish-gray|achromatic (similar term)
+greenish-white|1
+(adj)|green-white|achromatic (similar term)
+greenish blue|1
+(noun)|aqua|aquamarine|turquoise|cobalt blue|peacock blue|blue (generic term)|blueness (generic term)
+greenish yellow|1
+(noun)|yellow (generic term)|yellowness (generic term)
+greenishness|1
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+greenland|1
+(noun)|Greenland|Gronland|Kalaallit Nunaat|island (generic term)
+greenland caribou|1
+(noun)|caribou|reindeer|Greenland caribou|Rangifer tarandus|deer (generic term)|cervid (generic term)
+greenland sea|1
+(noun)|Greenland Sea|sea (generic term)
+greenland spar|1
+(noun)|cryolite|Greenland spar|mineral (generic term)
+greenland whale|1
+(noun)|bowhead|bowhead whale|Greenland whale|Balaena mysticetus|baleen whale (generic term)|whalebone whale (generic term)
+greenling|1
+(noun)|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+greenmail|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+greenmarket|1
+(noun)|farmer's market|green market|open-air market (generic term)|open-air marketplace (generic term)|market square (generic term)
+greenness|3
+(noun)|verdancy|verdure|profusion (generic term)|profuseness (generic term)|richness (generic term)|cornucopia (generic term)
+(noun)|immaturity (generic term)|immatureness (generic term)|ripeness (antonym)
+(noun)|green|viridity|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+greenockite|1
+(noun)|cadmium sulphide|mineral (generic term)
+greenpeace|1
+(noun)|Greenpeace|nongovernmental organization (generic term)|NGO (generic term)
+greenroom|1
+(noun)|room (generic term)
+greens|1
+(noun)|green|leafy vegetable|vegetable (generic term)|veggie (generic term)
+greensand|1
+(noun)|sandstone (generic term)
+greensboro|1
+(noun)|Greensboro|city (generic term)|metropolis (generic term)|urban center (generic term)
+greenshank|1
+(noun)|Tringa nebularia|sandpiper (generic term)
+greensick|1
+(adj)|chlorotic|iron deficiency anemia|iron deficiency anaemia (related term)
+greensickness|1
+(noun)|chlorosis|iron deficiency anemia (generic term)|iron deficiency anaemia (generic term)
+greenside|1
+(adj)|site|land site (related term)
+greenskeeper|1
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+greenstick fracture|1
+(noun)|incomplete fracture (generic term)
+greensward|1
+(noun)|turf|sod|sward|land (generic term)|ground (generic term)|soil (generic term)
+greenville|1
+(noun)|Greenville|town (generic term)
+greenway|1
+(noun)|greenbelt|belt (generic term)
+greenweed|1
+(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+greenwich|1
+(noun)|Greenwich|borough (generic term)
+greenwich mean time|1
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time (generic term)
+greenwich meridian|1
+(noun)|Greenwich Meridian|prime meridian (generic term)
+greenwich time|1
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time (generic term)
+greenwich village|1
+(noun)|Greenwich Village|Village|residential district (generic term)|residential area (generic term)|community (generic term)
+greenwing|1
+(noun)|green-winged teal|Anas crecca|teal (generic term)
+greenwood|1
+(noun)|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+greet|3
+(verb)|recognize|recognise|address (generic term)|accost (generic term)|come up to (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|react (generic term)|respond (generic term)
+greeter|1
+(noun)|saluter|welcomer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+greeting|1
+(noun)|salutation|acknowledgment (generic term)|acknowledgement (generic term)
+greeting card|1
+(noun)|card (generic term)
+greg norman|1
+(noun)|Norman|Greg Norman|Gregory John Norman|golfer (generic term)|golf player (generic term)|linksman (generic term)
+gregarine|1
+(noun)|sporozoan (generic term)
+gregarinida|1
+(noun)|Gregarinida|order Gregarinida|animal order (generic term)
+gregarious|3
+(adj)|social (similar term)|social (related term)|ungregarious (antonym)
+(adj)|social (similar term)
+(adj)|clustered (similar term)|ungregarious (antonym)
+gregariously|1
+(adv)|sociably
+gregariousness|1
+(noun)|sociability (generic term)|sociableness (generic term)
+gregor mendel|1
+(noun)|Mendel|Gregor Mendel|Johann Mendel|monk (generic term)|monastic (generic term)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+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 (related term)|chant (related term)
+(adj)|Gregorian|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome (related term)|solar calendar (related term)
+gregorian calendar|1
+(noun)|Gregorian calendar|New Style calendar|solar calendar (generic term)
+gregorian calendar month|1
+(noun)|Gregorian calendar month|calendar month (generic term)|month (generic term)
+gregorian chant|1
+(noun)|plainsong|plainchant|Gregorian chant|chant (generic term)
+gregorian mode|1
+(noun)|ecclesiastical mode|Gregorian mode|church mode|medieval mode|mode (generic term)|musical mode (generic term)
+gregorian telescope|1
+(noun)|Cassegrainian telescope|Gregorian telescope|reflecting telescope (generic term)|reflector (generic term)
+gregory|6
+(noun)|Gregory|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+(noun)|Gregory|Gregory XVI|Bartolomeo Alberto Capillari|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Gregory|Gregory XII|Angelo Correr|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Gregory|Gregory VII|Hildebrand|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+gregory goodwin pincus|1
+(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist (generic term)
+gregory i|1
+(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+gregory john norman|1
+(noun)|Norman|Greg Norman|Gregory John Norman|golfer (generic term)|golf player (generic term)|linksman (generic term)
+gregory nazianzen|1
+(noun)|Gregory|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+gregory of nazianzen|1
+(noun)|Gregory|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+gregory pincus|1
+(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist (generic term)
+gregory the great|1
+(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+gregory vii|1
+(noun)|Gregory|Gregory VII|Hildebrand|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+gregory xii|1
+(noun)|Gregory|Gregory XII|Angelo Correr|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+gregory xiii|1
+(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+gregory xvi|1
+(noun)|Gregory|Gregory XVI|Bartolomeo Alberto Capillari|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+greisen|1
+(noun)|rock (generic term)|stone (generic term)
+gremlin|1
+(noun)|elf|hob|pixie|pixy|brownie|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+grenada|1
+(noun)|Grenada|country (generic term)|state (generic term)|land (generic term)
+grenada dollar|1
+(noun)|Grenada dollar|dollar (generic term)
+grenade|1
+(noun)|bomb (generic term)
+grenade thrower|1
+(noun)|grenadier|infantryman (generic term)|marcher (generic term)|foot soldier (generic term)|footslogger (generic term)
+grenadian|2
+(adj)|Grenadian|country|state|land (related term)
+(noun)|Grenadian|West Indian (generic term)
+grenadier|2
+(noun)|grenade thrower|infantryman (generic term)|marcher (generic term)|foot soldier (generic term)|footslogger (generic term)
+(noun)|rattail|rattail fish|gadoid (generic term)|gadoid fish (generic term)
+grenadine|1
+(noun)|syrup (generic term)|sirup (generic term)
+grenoble|1
+(noun)|Grenoble|city (generic term)|metropolis (generic term)|urban center (generic term)
+gres-gris|1
+(noun)|grigri|greegree|amulet (generic term)|talisman (generic term)
+gresham|1
+(noun)|Gresham|Sir Thomas Gresham|financier (generic term)|moneyman (generic term)
+gresham's law|1
+(noun)|Gresham's Law|principle (generic term)|rule (generic term)
+greta garbo|1
+(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress (generic term)
+greta louisa gustafsson|1
+(noun)|Garbo|Greta Garbo|Greta Louisa Gustafsson|actress (generic term)
+gretzky|1
+(noun)|Gretzky|Wayne Gretzky|hockey player (generic term)|ice-hockey player (generic term)
+grevillea|1
+(noun)|shrub (generic term)|bush (generic term)
+grevillea banksii|1
+(noun)|red-flowered silky oak|Grevillea banksii|silk oak (generic term)
+grevillea robusta|1
+(noun)|silky oak|Grevillea robusta|silk oak (generic term)
+grevillea striata|1
+(noun)|beefwood|Grevillea striata|silk oak (generic term)
+grevillela parallela|1
+(noun)|silver oak|Grevillela parallela|silk oak (generic term)
+grevy's zebra|1
+(noun)|Equus grevyi|zebra (generic term)
+grewia|1
+(noun)|Grewia|genus Grewia|dilleniid dicot genus (generic term)
+grewia asiatica|1
+(noun)|phalsa|Grewia asiatica|shrub (generic term)|bush (generic term)
+grey|14
+(adj)|gray|greyish|grayish|achromatic (similar term)
+(adj)|gray|grey-haired|gray-haired|grey-headed|gray-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+(adj)|gray|southern (similar term)
+(adj)|gray|intermediate (similar term)
+(adj)|dull|gray|leaden|cloudy (similar term)
+(noun)|Grey|Zane Grey|writer (generic term)|author (generic term)
+(noun)|Grey|Lady Jane Grey|Queen of England (generic term)
+(noun)|Grey|Charles Grey|Second Earl Grey|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|gray|organization (generic term)|organisation (generic term)
+(noun)|gray|grayness|greyness|achromatic color (generic term)|achromatic colour (generic term)
+(noun)|gray|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|gray|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(verb)|gray|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|gray|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+grey-black|1
+(adj)|gray-black|greyish-black|grayish-black|achromatic (similar term)
+grey-blue|1
+(adj)|gray-blue|greyish-blue|grayish-blue|chromatic (similar term)
+grey-brown|1
+(adj)|gray-brown|greyish-brown|grayish-brown|chromatic (similar term)
+grey-green|1
+(adj)|gray-green|greyish-green|grayish-green|chromatic (similar term)
+grey-haired|1
+(adj)|grey|gray|gray-haired|grey-headed|gray-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+grey-headed|1
+(adj)|grey|gray|grey-haired|gray-haired|gray-headed|grizzly|hoar|hoary|white-haired|old (similar term)
+grey-leaf pine|1
+(noun)|Torrey pine|Torrey's pine|soledad pine|sabine pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+grey-pink|1
+(adj)|gray-pink|greyish-pink|grayish-pink|chromatic (similar term)
+grey-white|1
+(adj)|gray-white|greyish-white|grayish-white|achromatic (similar term)
+grey alder|1
+(noun)|gray alder|Alnus incana|alder (generic term)|alder tree (generic term)
+grey area|1
+(noun)|gray area|area (generic term)
+grey birch|1
+(noun)|gray birch|American grey birch|American gray birch|Betula populifolia|birch (generic term)|birch tree (generic term)
+grey catbird|1
+(noun)|catbird|gray catbird|Dumetella carolinensis|oscine (generic term)|oscine bird (generic term)
+grey flounder|1
+(noun)|gray flounder|Etropus rimosus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+grey fox|1
+(noun)|gray fox|Urocyon cinereoargenteus|fox (generic term)
+grey friar|1
+(noun)|Franciscan|Grey Friar|friar (generic term)|mendicant (generic term)
+grey goldenrod|1
+(noun)|gray goldenrod|Solidago nemoralis|goldenrod (generic term)
+grey hen|1
+(noun)|greyhen|grayhen|gray hen|heath hen|black grouse (generic term)
+grey jay|1
+(noun)|Canada jay|gray jay|camp robber|whisker jack|Perisoreus canadensis|jay (generic term)
+grey kingbird|1
+(noun)|gray kingbird|petchary|Tyrannus domenicensis domenicensis|kingbird (generic term)|Tyrannus tyrannus (generic term)
+grey lemming|1
+(noun)|gray lemming|red-backed lemming|lemming (generic term)
+grey market|1
+(noun)|gray market|market (generic term)|marketplace (generic term)
+grey matter|1
+(noun)|gray matter|grey substance|gray substance|substantia grisea|nervous tissue (generic term)|nerve tissue (generic term)
+grey mullet|2
+(noun)|mullet|gray mullet|fish (generic term)
+(noun)|mullet|gray mullet|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+grey partridge|1
+(noun)|Hungarian partridge|gray partridge|Perdix perdix|partridge (generic term)
+grey polypody|1
+(noun)|gray polypody|resurrection fern|Polypodium polypodioides|polypody (generic term)
+grey poplar|1
+(noun)|gray poplar|Populus canescens|poplar (generic term)|poplar tree (generic term)
+grey sage|1
+(noun)|silver sage|silver sagebrush|gray sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+grey sea eagle|1
+(noun)|ern|erne|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+grey skate|1
+(noun)|gray skate|Raja batis|skate (generic term)
+grey snapper|1
+(noun)|gray snapper|mangrove snapper|Lutjanus griseus|snapper (generic term)
+grey sole|1
+(noun)|gray sole|sole (generic term)|fillet of sole (generic term)
+grey substance|1
+(noun)|grey matter|gray matter|gray substance|substantia grisea|nervous tissue (generic term)|nerve tissue (generic term)
+grey whale|1
+(noun)|gray whale|devilfish|Eschrichtius gibbosus|Eschrichtius robustus|baleen whale (generic term)|whalebone whale (generic term)
+grey willow|1
+(noun)|gray willow|Salix cinerea|willow (generic term)|willow tree (generic term)
+grey wolf|1
+(noun)|timber wolf|gray wolf|Canis lupus|wolf (generic term)
+greyback|3
+(noun)|Rebel|Reb|Johnny Reb|Johnny|Confederate soldier (generic term)
+(noun)|grayback|Limnodromus griseus|dowitcher (generic term)
+(noun)|knot|grayback|Calidris canutus|sandpiper (generic term)
+greybeard|2
+(noun)|old man|graybeard|Methuselah|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)|man (generic term)|adult male (generic term)
+(noun)|bellarmine|longbeard|long-beard|jug (generic term)
+greyed|1
+(adj)|dulled|colorless (similar term)|colourless (similar term)
+greyhen|1
+(noun)|grayhen|grey hen|gray hen|heath hen|black grouse (generic term)
+greyhound|1
+(noun)|hound (generic term)|hound dog (generic term)|racer (generic term)
+greyhound racing|1
+(noun)|racing (generic term)
+greyish|1
+(adj)|grey|gray|grayish|achromatic (similar term)
+greyish-black|1
+(adj)|grey-black|gray-black|grayish-black|achromatic (similar term)
+greyish-blue|1
+(adj)|grey-blue|gray-blue|grayish-blue|chromatic (similar term)
+greyish-brown|1
+(adj)|grey-brown|gray-brown|grayish-brown|chromatic (similar term)
+greyish-green|1
+(adj)|grey-green|gray-green|grayish-green|chromatic (similar term)
+greyish-pink|1
+(adj)|grey-pink|gray-pink|grayish-pink|chromatic (similar term)
+greyish-white|1
+(adj)|grey-white|gray-white|grayish-white|achromatic (similar term)
+greyish brown|1
+(noun)|dun|grayish brown|fawn|light brown (generic term)
+greylag|1
+(noun)|graylag|greylag goose|graylag goose|Anser anser|goose (generic term)
+greylag goose|1
+(noun)|greylag|graylag|graylag goose|Anser anser|goose (generic term)
+greyly|1
+(adv)|grayly
+greyness|1
+(noun)|gray|grayness|grey|achromatic color (generic term)|achromatic colour (generic term)
+gri-gri|1
+(noun)|grugru|grugru palm|macamba|Acrocomia aculeata|feather palm (generic term)
+grias|1
+(noun)|Grias|genus Grias|dicot genus (generic term)|magnoliopsid genus (generic term)
+grias cauliflora|1
+(noun)|anchovy pear|anchovy pear tree|Grias cauliflora|fruit tree (generic term)
+grid|4
+(noun)|power system|power grid|facility (generic term)|installation (generic term)
+(noun)|reference grid|network (generic term)
+(noun)|control grid|electrode (generic term)
+(noun)|gridiron|cooking utensil (generic term)|cookware (generic term)
+grid metal|1
+(noun)|hard lead (generic term)|antimonial lead (generic term)
+griddle|2
+(noun)|cooking utensil (generic term)|cookware (generic term)
+(verb)|fry (generic term)
+griddlecake|2
+(noun)|drop scone|Scotch pancake|scone (generic term)
+(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|hotcake|hot cake|cake (generic term)
+gridiron|2
+(noun)|grid|cooking utensil (generic term)|cookware (generic term)
+(noun)|football field|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+gridiron-tailed lizard|1
+(noun)|zebra-tailed lizard|Callisaurus draconoides|iguanid (generic term)|iguanid lizard (generic term)
+gridlock|1
+(noun)|traffic jam (generic term)|snarl-up (generic term)
+grief|2
+(noun)|heartache|heartbreak|brokenheartedness|sorrow (generic term)
+(noun)|sorrow|negative stimulus (generic term)
+grief-stricken|1
+(adj)|bereaved|bereft|grieving|mourning|sorrowing|sorrowful (similar term)
+grieg|1
+(noun)|Grieg|Edvard Grieg|Edvard Hagerup Grieg|composer (generic term)
+grievance|3
+(noun)|grudge|score|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+(noun)|allegation (generic term)
+(noun)|complaint (generic term)
+grieve|2
+(verb)|sorrow|suffer (generic term)
+(verb)|aggrieve|afflict (generic term)
+griever|1
+(noun)|mourner|sorrower|lamenter|unfortunate (generic term)|unfortunate person (generic term)
+grieving|1
+(adj)|bereaved|bereft|grief-stricken|mourning|sorrowing|sorrowful (similar term)
+grievous|4
+(adj)|dangerous|grave|serious|severe|life-threatening|critical (similar term)
+(adj)|heartbreaking|heartrending|sorrowful (similar term)
+(adj)|grave|heavy|weighty|important (similar term)|of import (similar term)
+(adj)|atrocious|flagitious|heinous|monstrous|evil (similar term)
+grievous bodily harm|1
+(noun)|soap|scoop|max|liquid ecstasy|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+griffin|1
+(noun)|gryphon|griffon|mythical monster (generic term)|mythical creature (generic term)
+griffith|1
+(noun)|Griffith|D. W. Griffith|David Lewelyn Wark Griffith|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+griffon|4
+(noun)|gryphon|griffin|mythical monster (generic term)|mythical creature (generic term)
+(noun)|Brussels griffon|Belgian griffon|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(noun)|wire-haired pointing griffon|sporting dog (generic term)|gun dog (generic term)
+(noun)|griffon vulture|Gyps fulvus|Old World vulture (generic term)
+griffon vulture|1
+(noun)|griffon|Gyps fulvus|Old World vulture (generic term)
+grifola frondosa|1
+(noun)|hen-of-the-woods|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus (generic term)
+grifter|1
+(noun)|swindler|defrauder|chiseller|chiseler|gouger|scammer|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+grigori efimovich rasputin|1
+(noun)|Rasputin|Grigori Efimovich Rasputin|starets (generic term)
+grigri|1
+(noun)|gres-gris|greegree|amulet (generic term)|talisman (generic term)
+grill|3
+(noun)|grillroom|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+(noun)|grille|grillwork|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|cook (generic term)
+grille|3
+(noun)|wicket|lattice|opening (generic term)
+(noun)|radiator grille|grate (generic term)|grating (generic term)
+(noun)|grill|grillwork|framework (generic term)|frame (generic term)|framing (generic term)
+grilled|2
+(adj)|broiled|cooked (similar term)
+(adj)|barbecued|cooked (similar term)
+grilling|1
+(noun)|broil|broiling|cooking (generic term)|cookery (generic term)|preparation (generic term)
+grillroom|1
+(noun)|grill|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+grillwork|2
+(noun)|wirework|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+(noun)|grill|grille|framework (generic term)|frame (generic term)|framing (generic term)
+grim|6
+(adj)|inexorable|relentless|stern|unappeasable|unforgiving|unrelenting|implacable (similar term)
+(adj)|ghastly|grisly|gruesome|macabre|sick|alarming (similar term)
+(adj)|black|mordant|sarcastic (similar term)
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|sorry|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(adj)|dour|forbidding|unpleasant (similar term)
+(adj)|gloomy|darkening|hopeless (similar term)
+grim reaper|1
+(noun)|Grim Reaper|Reaper|Death (generic term)
+grimace|2
+(noun)|face|facial expression (generic term)|facial gesture (generic term)
+(verb)|make a face|pull a face|communicate (generic term)|intercommunicate (generic term)
+grime|2
+(noun)|dirt|filth|soil|stain|grease|grunge|dirtiness (generic term)|uncleanness (generic term)
+(verb)|dirty|soil|begrime|colly|bemire|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+grimes' golden|1
+(noun)|Grimes' golden|eating apple (generic term)|dessert apple (generic term)
+griminess|1
+(noun)|grubbiness|dirtiness (generic term)|uncleanness (generic term)
+grimm|2
+(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer (generic term)|author (generic term)
+(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer (generic term)|author (generic term)|linguist (generic term)|linguistic scientist (generic term)
+grimm's law|1
+(noun)|Grimm's law|sound law (generic term)
+grimness|2
+(noun)|ghastliness|gruesomeness|luridness|frightfulness (generic term)
+(noun)|asperity|hardship|rigor|rigour|severity|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+grimoire|1
+(noun)|manual (generic term)
+grimy|1
+(adj)|begrimed|dingy|grubby|grungy|raunchy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+grin|2
+(noun)|smile|smiling|grinning|facial expression (generic term)|facial gesture (generic term)
+(verb)|smile (generic term)
+grind|10
+(noun)|swot|nerd|wonk|dweeb|learner (generic term)|scholar (generic term)|assimilator (generic term)
+(noun)|drudgery|plodding|donkeywork|labor (generic term)|labour (generic term)|toil (generic term)
+(noun)|mill|pulverization|pulverisation|crush (generic term)|crunch (generic term)|compaction (generic term)
+(verb)|crunch|cranch|craunch|press (generic term)|grind down (related term)
+(verb)|grate|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|mash|crunch|bray|comminute|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|labor|labour|toil|fag|travail|drudge|dig|moil|work (generic term)|do work (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+grind away|1
+(verb)|cram|drum|bone up|swot|get up|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+grind down|1
+(verb)|tyrannize|tyrannise|dictate (generic term)
+grind organ|1
+(noun)|barrel organ|hand organ|hurdy gurdy|hurdy-gurdy|street organ|musical instrument (generic term)|instrument (generic term)
+grind out|1
+(verb)|crank out|produce (generic term)|bring forth (generic term)
+grind to a halt|1
+(verb)|get stuck|bog down|mire|stand still (generic term)
+grindelia|1
+(noun)|Grindelia|genus Grindelia|asterid dicot genus (generic term)
+grindelia robusta|1
+(noun)|Grindelia robusta|gumweed (generic term)|gum plant (generic term)|tarweed (generic term)|rosinweed (generic term)
+grindelia squarrosa|1
+(noun)|curlycup gumweed|Grindelia squarrosa|gumweed (generic term)|gum plant (generic term)|tarweed (generic term)|rosinweed (generic term)
+grinder|4
+(noun)|bomber|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+(noun)|molar|tooth (generic term)
+(noun)|mill|milling machinery|machinery (generic term)
+(noun)|machine tool (generic term)
+grinding|3
+(noun)|substance (generic term)|matter (generic term)
+(noun)|noise (generic term)
+(noun)|abrasion|attrition|detrition|friction (generic term)|rubbing (generic term)
+grinding wheel|1
+(noun)|emery wheel|wheel (generic term)
+grindle|1
+(noun)|bowfin|dogfish|Amia calva|ganoid (generic term)|ganoid fish (generic term)
+grindstone|1
+(noun)|stone (generic term)|sharpener (generic term)
+gringo|1
+(noun)|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+grinner|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+grinning|1
+(noun)|smile|smiling|grin|facial expression (generic term)|facial gesture (generic term)
+griot|1
+(noun)|narrator (generic term)|storyteller (generic term)|teller (generic term)
+grip|10
+(noun)|clasp|clench|clutch|clutches|grasp|hold|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(noun)|handle|handgrip|hold|appendage (generic term)
+(noun)|bag|traveling bag|suitcase|baggage (generic term)|luggage (generic term)
+(noun)|traction|adhesive friction|friction (generic term)|rubbing (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|grasp|influence (generic term)
+(noun)|bobby pin|hairgrip|hairpin (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|grapple|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|fascinate|transfix|spellbind|interest (generic term)
+gripe|2
+(noun)|kick|beef|bitch|squawk|objection (generic term)
+(verb)|grouse|crab|beef|squawk|bellyache|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+gripes|1
+(noun)|colic|intestinal colic|griping|pain (generic term)|hurting (generic term)
+griping|1
+(noun)|colic|intestinal colic|gripes|pain (generic term)|hurting (generic term)
+grippe|1
+(noun)|influenza|flu|contagious disease (generic term)|contagion (generic term)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+gripping|1
+(adj)|absorbing|engrossing|fascinating|riveting|interesting (similar term)
+gripsack|1
+(noun)|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+gris|1
+(noun)|Gris|Jaun Gris|painter (generic term)
+grisaille|1
+(noun)|chiaroscuro (generic term)
+griselinia|1
+(noun)|Griselinia|genus Griselinia|rosid dicot genus (generic term)
+griselinia littoralis|1
+(noun)|kapuka|Griselinia littoralis|shrub (generic term)|bush (generic term)
+griselinia lucida|1
+(noun)|puka|Griselinia lucida|shrub (generic term)|bush (generic term)
+griseofulvin|1
+(noun)|Fulvicin|penicillin (generic term)|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+grisly|1
+(adj)|ghastly|grim|gruesome|macabre|sick|alarming (similar term)
+grison|1
+(noun)|Grison vittatus|Galictis vittatus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+grison vittatus|1
+(noun)|grison|Grison vittatus|Galictis vittatus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+grissino|1
+(noun)|breadstick (generic term)|bread-stick (generic term)
+grist|1
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+gristle|1
+(noun)|cartilage|animal tissue (generic term)
+gristly|1
+(adj)|cartilaginous|rubbery|tough (similar term)
+gristmill|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+grit|4
+(noun)|gritrock|gritstone|sandstone (generic term)
+(noun)|backbone|guts|moxie|sand|gumption|fortitude (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|clench (generic term)
+gritrock|1
+(noun)|grit|gritstone|sandstone (generic term)
+grits|1
+(noun)|hominy grits|hot cereal (generic term)
+gritstone|1
+(noun)|grit|gritrock|sandstone (generic term)
+gritty|2
+(adj)|farinaceous|coarse-grained|grainy|granular|granulose|mealy|coarse (similar term)|harsh (similar term)
+(adj)|game|gamy|gamey|mettlesome|spirited|spunky|brave (similar term)|courageous (similar term)
+grivet|1
+(noun)|Cercopithecus aethiops|guenon (generic term)|guenon monkey (generic term)
+grizzle|3
+(noun)|wig (generic term)
+(verb)|brood|stew|sulk (generic term)|pout (generic term)|brood (generic term)
+(verb)|whine|yammer|yawp|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+grizzled|1
+(adj)|brunet (similar term)|brunette (similar term)
+grizzly|2
+(adj)|grey|gray|grey-haired|gray-haired|grey-headed|gray-headed|hoar|hoary|white-haired|old (similar term)
+(noun)|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+grizzly bear|1
+(noun)|grizzly|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+groak|1
+(verb)|view (generic term)|consider (generic term)|look at (generic term)
+groan|2
+(noun)|moan|utterance (generic term)|vocalization (generic term)
+(verb)|moan|sough|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+groaner|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+groaning|1
+(adj)|moaning|inarticulate (similar term)|unarticulate (similar term)
+groat|1
+(noun)|fourpence|coin (generic term)
+groats|1
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+grocer|1
+(noun)|merchant (generic term)|merchandiser (generic term)
+grocery|2
+(noun)|grocery store|food market|market|marketplace (generic term)|mart (generic term)
+(noun)|foodstuff|consumer goods (generic term)
+grocery bag|1
+(noun)|sack (generic term)|poke (generic term)|paper bag (generic term)|carrier bag (generic term)
+grocery boy|1
+(noun)|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+grocery list|2
+(noun)|shopping list|list (generic term)|listing (generic term)
+(noun)|shopping list (generic term)
+grocery store|1
+(noun)|grocery|food market|market|marketplace (generic term)|mart (generic term)
+groenendael|1
+(noun)|Belgian sheepdog (generic term)|Belgian shepherd (generic term)
+groenlandia|1
+(noun)|Groenlandia|genus Groenlandia|monocot genus (generic term)|liliopsid genus (generic term)
+grog|1
+(noun)|rum (generic term)
+grogginess|3
+(noun)|drunkenness (generic term)|inebriation (generic term)|inebriety (generic term)|intoxication (generic term)|tipsiness (generic term)|insobriety (generic term)
+(noun)|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+(noun)|stupor|stupefaction|semiconsciousness|unconsciousness (generic term)
+groggy|1
+(adj)|dazed|foggy|logy|stuporous|lethargic (similar term)|unergetic (similar term)
+grogram|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+groin|3
+(noun)|inguen|area (generic term)|region (generic term)
+(noun)|breakwater|groyne|mole|bulwark|seawall|jetty|barrier (generic term)
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+groined vault|1
+(noun)|vault (generic term)
+grok|1
+(verb)|get the picture|comprehend|savvy|dig|grasp|compass|apprehend|understand (generic term)
+grommet|1
+(noun)|cringle|eyelet|loop|grummet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+gromwell|1
+(noun)|Lithospermum officinale|herb (generic term)|herbaceous plant (generic term)
+gromyko|1
+(noun)|Gromyko|Andrei Gromyko|Andrei Andreyevich Gromyko|ambassador (generic term)|embassador (generic term)
+gronland|1
+(noun)|Greenland|Gronland|Kalaallit Nunaat|island (generic term)
+groom|6
+(noun)|bridegroom|participant (generic term)
+(noun)|stableman|stableboy|hostler|ostler|hired hand (generic term)|hand (generic term)|hired man (generic term)
+(noun)|bridegroom|newlywed (generic term)|honeymooner (generic term)
+(verb)|prepare|train|educate (generic term)
+(verb)|dress|curry|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|neaten|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+groom-to-be|1
+(noun)|fiance|betrothed (generic term)
+groomed|1
+(adj)|brushed (similar term)|kempt (similar term)|tidy (similar term)|plastered (similar term)|slicked (similar term)|pomaded (similar term)|sleek (similar term)|well-groomed (similar term)|well-groomed (similar term)|well-dressed (similar term)|tidy (related term)|ungroomed (antonym)
+grooming|2
+(noun)|training|preparation|activity (generic term)
+(noun)|dressing|covering (generic term)
+groomsman|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+groove|5
+(noun)|channel|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|rut|routine (generic term)|modus operandi (generic term)
+(noun)|vallecula|body part (generic term)
+(verb)|incise (generic term)
+(verb)|furrow|rut|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+grooved|2
+(adj)|well-grooved|established (similar term)|constituted (similar term)
+(adj)|furrowed (similar term)
+groover|1
+(noun)|device (generic term)
+grooving|1
+(noun)|rifling|formation (generic term)|shaping (generic term)
+groovy|2
+(adj)|bang-up|bully|corking|cracking|dandy|great|keen|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(adj)|swagger|fashionable (similar term)|stylish (similar term)
+grope|4
+(noun)|touch (generic term)|touching (generic term)
+(verb)|fumble|search (generic term)|seek (generic term)|look for (generic term)|grope for (related term)
+(verb)|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|caress (generic term)
+grope for|1
+(verb)|scrabble|feel (generic term)
+groping|1
+(adj)|hesitant|uncertain (similar term)|unsure (similar term)|incertain (similar term)
+gropius|1
+(noun)|Gropius|Walter Gropius|architect (generic term)|designer (generic term)
+gros point|2
+(noun)|stitch (generic term)
+(noun)|needlepoint (generic term)|needlepoint embroidery (generic term)
+gros ventre|2
+(noun)|Hidatsa|Gros Ventre|Sioux (generic term)|Siouan (generic term)
+(noun)|Hidatsa|Gros Ventre|Siouan (generic term)|Siouan language (generic term)
+grosbeak|1
+(noun)|grossbeak|finch (generic term)
+groschen|1
+(noun)|Austrian monetary unit (generic term)
+grosgrain|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+gross|10
+(adj)|overall (similar term)|total (similar term)|whole (similar term)|net (antonym)
+(adj)|megascopic|macroscopic (similar term)|macroscopical (similar term)
+(adj)|general (similar term)
+(adj)|porcine|fat (similar term)
+(adj)|crying|egregious|flagrant|glaring|rank|conspicuous (similar term)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adj)|coarse|crude|earthy|vulgar|indecent (similar term)
+(noun)|144|large integer (generic term)
+(noun)|revenue|receipts|income (generic term)
+(verb)|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+gross anatomy|1
+(noun)|macroscopic anatomy|anatomy (generic term)|general anatomy (generic term)
+gross domestic product|1
+(noun)|GDP|value (generic term)
+gross estate|1
+(noun)|estate (generic term)
+gross margin|1
+(noun)|margin of profit|profit margin|ratio (generic term)
+gross national product|1
+(noun)|GNP|value (generic term)
+gross out|2
+(verb)|disgust|revolt|repel|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|freak out|freak|panic (generic term)
+gross profit|1
+(noun)|gross profit margin|margin|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+gross profit margin|1
+(noun)|gross profit|margin|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+gross revenue|1
+(noun)|gross sales|sales|income (generic term)
+gross sales|1
+(noun)|gross revenue|sales|income (generic term)
+gross ton|1
+(noun)|long ton|ton|avoirdupois unit (generic term)
+grossbeak|1
+(noun)|grosbeak|finch (generic term)
+grossness|1
+(noun)|coarseness|commonness|vulgarity|vulgarism|raunch|inelegance (generic term)
+grossulariaceae|1
+(noun)|Grossulariaceae|family Grossulariaceae|gooseberry family|plant family (generic term)
+grosz|1
+(noun)|Polish monetary unit (generic term)
+grot|1
+(noun)|grotto|cave (generic term)
+grotesque|3
+(adj)|monstrous|unnatural|ugly (similar term)
+(adj)|antic|fantastic|fantastical|strange (similar term)|unusual (similar term)
+(noun)|art (generic term)|fine art (generic term)
+grotesquely|1
+(adv)|monstrously
+grotesqueness|1
+(noun)|grotesquery|grotesquerie|ugliness (generic term)
+grotesquerie|1
+(noun)|grotesqueness|grotesquery|ugliness (generic term)
+grotesquery|1
+(noun)|grotesqueness|grotesquerie|ugliness (generic term)
+grotius|1
+(noun)|Grotius|Hugo Grotius|Huig de Groot|jurist (generic term)|legal expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+grotto|1
+(noun)|grot|cave (generic term)
+grotty|1
+(adj)|nasty (similar term)|awful (similar term)
+grouch|2
+(noun)|grump|crank|churl|crosspatch|unpleasant person (generic term)|disagreeable person (generic term)
+(verb)|grumble|scold|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+grouchily|1
+(adv)|crossly|grumpily
+groucho|1
+(noun)|Marx|Julius Marx|Groucho|comedian (generic term)|comic (generic term)
+grouchy|1
+(adj)|crabbed|crabby|cross|fussy|grumpy|bad-tempered|ill-tempered|ill-natured (similar term)
+ground|22
+(noun)|land|dry land|earth|solid ground|terra firma|object (generic term)|physical object (generic term)
+(noun)|reason|rational motive (generic term)
+(noun)|earth|material (generic term)|stuff (generic term)
+(noun)|footing|basis|foundation (generic term)
+(noun)|military position (generic term)|position (generic term)
+(noun)|background|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+(noun)|land|soil|object (generic term)|physical object (generic term)
+(noun)|percept (generic term)|perception (generic term)|perceptual experience (generic term)|figure (antonym)
+(noun)|earth|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|surface (generic term)
+(noun)|flat coat|primer|priming|primer coat|priming coat|undercoat|coat of paint (generic term)
+(verb)|anchor|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|run aground|land (generic term)
+(verb)|run aground|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|throw (generic term)
+(verb)|hit (generic term)
+(verb)|prime|undercoat|paint (generic term)
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+(verb)|establish|base|found
+ground-berry|2
+(noun)|native cranberry|groundberry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+(noun)|teaberry|wintergreen|checkerberry|mountain tea|groundberry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+ground-controlled approach|1
+(noun)|GCA|aircraft landing (generic term)|airplane landing (generic term)
+ground-effect machine|1
+(noun)|hovercraft|craft (generic term)
+ground-emplaced mine|1
+(noun)|land mine|booby trap|mine (generic term)
+ground-floor|1
+(adj)|downstairs (similar term)|downstair (similar term)
+ground-hugging|1
+(adj)|low-growing|flat-growing|low (similar term)
+ground-service crew|1
+(noun)|ground crew|gang (generic term)|crew (generic term)|work party (generic term)
+ground-shaker|1
+(noun)|seismosaur|dinosaur (generic term)
+ground almond|1
+(noun)|chufa|yellow nutgrass|earth almond|rush nut|Cyperus esculentus|sedge (generic term)
+ground attack|1
+(noun)|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+ground bait|1
+(noun)|bait (generic term)|decoy (generic term)|lure (generic term)
+ground ball|1
+(noun)|grounder|groundball|hopper|hit (generic term)|hitting (generic term)|striking (generic term)
+ground bass|1
+(noun)|bass (generic term)|bass part (generic term)|ostinato (generic term)
+ground beef|1
+(noun)|hamburger|beef (generic term)|boeuf (generic term)
+ground beetle|1
+(noun)|carabid beetle|beetle (generic term)
+ground cable|1
+(noun)|cable (generic term)
+ground cedar|2
+(noun)|staghorn moss|Lycopodium complanatum|ground pine (generic term)|Christmas green (generic term)
+(noun)|dwarf juniper|Juniperus communis depressa|juniper (generic term)
+ground cherry|1
+(noun)|husk tomato|herb (generic term)|herbaceous plant (generic term)
+ground cloth|1
+(noun)|groundsheet|piece of cloth (generic term)|piece of material (generic term)
+ground control|1
+(noun)|communication system (generic term)
+ground cover|2
+(noun)|groundcover|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|groundcover|underbrush (generic term)|undergrowth (generic term)|underwood (generic term)
+ground crew|1
+(noun)|ground-service crew|gang (generic term)|crew (generic term)|work party (generic term)
+ground effect|1
+(noun)|aerodynamic lift (generic term)|lift (generic term)
+ground fir|1
+(noun)|princess pine|tree clubmoss|Lycopodium obscurum|ground pine (generic term)|Christmas green (generic term)
+ground fire|1
+(noun)|forest fire (generic term)
+ground floor|2
+(noun)|first floor|ground level|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|beginning (generic term)
+ground forces|1
+(noun)|army|regular army|military service (generic term)|armed service (generic term)|service (generic term)
+ground glass|1
+(noun)|glass (generic term)
+ground ivy|1
+(noun)|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+ground level|2
+(noun)|grade|elevation (generic term)
+(noun)|ground floor|first floor|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+ground loop|1
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+ground noise|1
+(noun)|background noise|background (generic term)|background signal (generic term)
+ground out|1
+(verb)|hit (generic term)
+ground pine|2
+(noun)|Christmas green|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+(noun)|yellow bugle|Ajuga chamaepitys|bugle (generic term)|bugleweed (generic term)
+ground pink|1
+(noun)|fringed pink|moss pink|Linanthus dianthiflorus|phlox (generic term)
+ground plan|1
+(noun)|floor plan (generic term)
+ground rattler|1
+(noun)|massasauga|Sistrurus miliaris|rattlesnake (generic term)|rattler (generic term)
+ground rent|1
+(noun)|rent (generic term)
+ground roller|1
+(noun)|roller (generic term)
+ground rose|1
+(noun)|Rosa spithamaea|rose (generic term)|rosebush (generic term)
+ground rule|1
+(noun)|rule (generic term)
+ground sloth|1
+(noun)|megathere|megatherian (generic term)|megatheriid (generic term)|megatherian mammal (generic term)
+ground snake|1
+(noun)|Sonora semiannulata|colubrid snake (generic term)|colubrid (generic term)
+ground squirrel|2
+(noun)|eastern chipmunk|hackee|striped squirrel|Tamias striatus|squirrel (generic term)
+(noun)|gopher|spermophile|squirrel (generic term)
+ground state|1
+(noun)|state (generic term)
+ground stroke|1
+(noun)|return (generic term)|volley (antonym)
+ground substance|2
+(noun)|matrix|intercellular substance|body substance (generic term)
+(noun)|hyaloplasm|cytoplasm (generic term)|cytol (generic term)
+ground swell|2
+(noun)|transition (generic term)
+(noun)|heavy swell|swell (generic term)|crestless wave (generic term)
+ground tackle|1
+(noun)|anchor|hook (generic term)|claw (generic term)
+ground water|1
+(noun)|spring water|well water|water (generic term)|H2O (generic term)
+ground wave|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+ground zero|3
+(noun)|target (generic term)|target area (generic term)
+(noun)|site (generic term)|land site (generic term)
+(noun)|point (generic term)
+groundball|1
+(noun)|grounder|ground ball|hopper|hit (generic term)|hitting (generic term)|striking (generic term)
+groundberry|2
+(noun)|native cranberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+(noun)|teaberry|wintergreen|checkerberry|mountain tea|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+groundbreaker|1
+(noun)|pioneer|innovator|trailblazer|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+groundbreaking|2
+(adj)|innovative|innovational|original (similar term)
+(noun)|groundbreaking ceremony|ceremony (generic term)|beginning (generic term)|start (generic term)|commencement (generic term)
+groundbreaking ceremony|1
+(noun)|groundbreaking|ceremony (generic term)|beginning (generic term)|start (generic term)|commencement (generic term)
+groundcover|2
+(noun)|ground cover|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|ground cover|underbrush (generic term)|undergrowth (generic term)|underwood (generic term)
+grounder|1
+(noun)|ground ball|groundball|hopper|hit (generic term)|hitting (generic term)|striking (generic term)
+groundfish|1
+(noun)|bottom fish|food fish (generic term)
+groundhog|1
+(noun)|woodchuck|Marmota monax|marmot (generic term)
+groundhog day|1
+(noun)|Groundhog Day|February 2|day (generic term)
+grounding|2
+(noun)|foundation|education (generic term)
+(noun)|earthing|fastening (generic term)|attachment (generic term)
+groundkeeper|1
+(noun)|groundsman|groundskeeper|gardener (generic term)
+groundless|1
+(adj)|baseless|idle|unfounded|unwarranted|wild|unsupported (similar term)
+groundlessness|1
+(noun)|idleness|worthlessness (generic term)|ineptitude (generic term)
+groundling|1
+(noun)|playgoer (generic term)|theatergoer (generic term)|theatregoer (generic term)
+groundmass|1
+(noun)|igneous rock (generic term)
+groundnut|3
+(noun)|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+(noun)|potato bean|wild bean|tuber (generic term)
+(noun)|peanut|earthnut|goober|goober pea|monkey nut|edible nut (generic term)
+groundnut oil|1
+(noun)|peanut oil|vegetable oil (generic term)|oil (generic term)
+groundnut vine|1
+(noun)|groundnut|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+grounds|5
+(noun)|evidence|information (generic term)
+(noun)|yard|curtilage|field (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|cause|reason|justification (generic term)
+(noun)|dregs|settlings|sediment (generic term)|deposit (generic term)
+groundsel|1
+(noun)|Senecio vulgaris|weed (generic term)
+groundsel bush|1
+(noun)|groundsel tree|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub (generic term)|bush (generic term)
+groundsel tree|1
+(noun)|groundsel bush|consumption weed|cotton-seed tree|Baccharis halimifolia|shrub (generic term)|bush (generic term)
+groundsheet|1
+(noun)|ground cloth|piece of cloth (generic term)|piece of material (generic term)
+groundskeeper|1
+(noun)|groundsman|groundkeeper|gardener (generic term)
+groundsman|1
+(noun)|groundskeeper|groundkeeper|gardener (generic term)
+groundspeed|1
+(noun)|speed (generic term)|velocity (generic term)
+groundwater level|1
+(noun)|water table|water level|geological formation (generic term)|formation (generic term)
+groundwork|3
+(noun)|basis|base|foundation|fundament|cornerstone|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|foundation|base|fundament|foot|substructure|understructure|support (generic term)
+(noun)|preparation (generic term)|readying (generic term)
+group|5
+(noun)|grouping|abstraction (generic term)
+(noun)|radical|chemical group|unit (generic term)|building block (generic term)
+(noun)|mathematical group|set (generic term)
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|aggroup|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+group a|1
+(noun)|A|type A|group A|blood group (generic term)|blood type (generic term)
+group ab|1
+(noun)|AB|type AB|group AB|blood group (generic term)|blood type (generic term)
+group action|1
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)|event (generic term)
+group amentiferae|1
+(noun)|Amentiferae|group Amentiferae|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+group b|1
+(noun)|B|type B|group B|blood group (generic term)|blood type (generic term)
+group captain|1
+(noun)|captain (generic term)|senior pilot (generic term)
+group centrospermae|1
+(noun)|Centrospermae|group Centrospermae|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+group discussion|1
+(noun)|conference|discussion (generic term)|give-and-take (generic term)|word (generic term)
+group dynamics|1
+(noun)|social psychology (generic term)
+group insurance|1
+(noun)|insurance (generic term)
+group meeting|1
+(noun)|meeting|gathering (generic term)|assemblage (generic term)
+group o|1
+(noun)|O|type O|group O|blood group (generic term)|blood type (generic term)
+group participation|1
+(noun)|engagement (generic term)|participation (generic term)|involvement (generic term)|involution (generic term)
+group practice|1
+(noun)|medical practice (generic term)
+group psychotherapy|1
+(noun)|group therapy|psychotherapy (generic term)
+group pteridospermae|1
+(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+group pteridospermaphyta|1
+(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+group theory|1
+(noun)|pure mathematics (generic term)
+group therapy|1
+(noun)|group psychotherapy|psychotherapy (generic term)
+grouped|1
+(adj)|sorted|classified (similar term)
+grouper|2
+(noun)|saltwater fish (generic term)
+(noun)|sea bass (generic term)
+groupie|1
+(noun)|fan (generic term)|buff (generic term)|devotee (generic term)|lover (generic term)
+grouping|3
+(noun)|group|abstraction (generic term)
+(noun)|activity (generic term)
+(noun)|pigeonholing|classification system (generic term)
+groupthink|1
+(noun)|decision making (generic term)|deciding (generic term)
+groupware|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+grouse|4
+(noun)|wildfowl (generic term)
+(noun)|game bird (generic term)
+(verb)|fowl (generic term)
+(verb)|gripe|crab|beef|squawk|bellyache|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+grouse-berry|1
+(noun)|grouseberry|grouse whortleberry|Vaccinium scoparium|blueberry (generic term)|blueberry bush (generic term)
+grouse whortleberry|1
+(noun)|grouseberry|grouse-berry|Vaccinium scoparium|blueberry (generic term)|blueberry bush (generic term)
+grouseberry|1
+(noun)|grouse-berry|grouse whortleberry|Vaccinium scoparium|blueberry (generic term)|blueberry bush (generic term)
+grout|2
+(noun)|plaster (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+grove|2
+(noun)|forest (generic term)|wood (generic term)|woods (generic term)
+(noun)|woodlet|orchard|plantation|garden (generic term)
+grovel|1
+(verb)|fawn|crawl|creep|cringe|cower|bend (generic term)|flex (generic term)
+groveler|1
+(noun)|apple polisher|bootlicker|fawner|groveller|truckler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+groveling|1
+(adj)|cringing|grovelling|wormlike|wormy|submissive (similar term)
+groveller|1
+(noun)|apple polisher|bootlicker|fawner|groveler|truckler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+grovelling|1
+(adj)|cringing|groveling|wormlike|wormy|submissive (similar term)
+grover cleveland|1
+(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+groves|1
+(noun)|Groves|Leslie Richard Groves|general (generic term)|full general (generic term)
+grow|10
+(verb)|turn|change (generic term)
+(verb)|increase (generic term)|grow over (related term)|grow up (related term)
+(verb)|develop (generic term)
+(verb)|develop (generic term)|make grow (generic term)
+(verb)|mature|maturate|develop (generic term)
+(verb)|originate|arise|rise|develop|uprise|spring up|become (generic term)
+(verb)|raise|farm|produce|cultivate (generic term)
+(verb)|develop|produce|get|acquire|change (generic term)
+(verb)|develop|change (generic term)
+(verb)|change (generic term)
+grow over|2
+(verb)|creep|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|overgrow|grow (generic term)
+grow up|1
+(verb)|mature (generic term)|maturate (generic term)|grow (generic term)
+grower|1
+(noun)|agriculturist|agriculturalist|cultivator|raiser|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+growing|5
+(adj)|increasing (similar term)
+(adj)|flourishing|thriving|healthy (similar term)
+(adj)|organic process|biological process (related term)
+(noun)|growth|maturation|development|ontogeny|ontogenesis|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+(noun)|production (generic term)
+growing pains|3
+(noun)|pain (generic term)|hurting (generic term)
+(noun)|pain (generic term)|painfulness (generic term)
+(noun)|trouble (generic term)|problem (generic term)
+growing season|1
+(noun)|season (generic term)
+growl|2
+(noun)|growling|cry (generic term)
+(verb)|grumble|rumble|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+growler|2
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|iceberg (generic term)|berg (generic term)
+growling|2
+(noun)|utterance (generic term)|vocalization (generic term)
+(noun)|growl|cry (generic term)
+grown|1
+(adj)|adult|big|full-grown|fully grown|grownup|mature (similar term)
+grownup|2
+(adj)|adult|big|full-grown|fully grown|grown|mature (similar term)
+(noun)|adult|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|juvenile (antonym)
+growth|7
+(noun)|growing|maturation|development|ontogeny|ontogenesis|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+(noun)|development (generic term)|evolution (generic term)
+(noun)|increase|increment|process (generic term)|physical process (generic term)|decrement (antonym)|decrease (antonym)
+(noun)|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|emergence|outgrowth|beginning (generic term)
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|object (generic term)|physical object (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+growth factor|1
+(noun)|protein (generic term)
+growth hormone|1
+(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+growth hormone-releasing factor|1
+(noun)|GHRF|releasing factor (generic term)|releasing hormone (generic term)|RF (generic term)
+growth industry|1
+(noun)|industry (generic term)
+growth rate|1
+(noun)|rate of growth|rate (generic term)
+growth regulator|1
+(noun)|phytohormone|plant hormone|plant product (generic term)
+growth ring|1
+(noun)|annual ring|organic phenomenon (generic term)
+growth stock|1
+(noun)|stock (generic term)
+groyne|1
+(noun)|breakwater|groin|mole|bulwark|seawall|jetty|barrier (generic term)
+grozny|1
+(noun)|Grozny|Groznyy|city (generic term)|metropolis (generic term)|urban center (generic term)
+groznyy|1
+(noun)|Grozny|Groznyy|city (generic term)|metropolis (generic term)|urban center (generic term)
+grub|4
+(noun)|chow|chuck|eats|fare (generic term)
+(noun)|larva (generic term)
+(verb)|mooch|bum|cadge|sponge|obtain (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+grub-like|1
+(adj)|animal (similar term)
+grub out|1
+(verb)|grub up|excavate (generic term)|dig up (generic term)|turn up (generic term)
+grub street|1
+(noun)|Grub Street|world (generic term)|domain (generic term)
+grub up|1
+(verb)|grub out|excavate (generic term)|dig up (generic term)|turn up (generic term)
+grubbily|1
+(adv)|dingily|grungily
+grubbiness|1
+(noun)|griminess|dirtiness (generic term)|uncleanness (generic term)
+grubby|3
+(adj)|larva (related term)
+(adj)|begrimed|dingy|grimy|grungy|raunchy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(noun)|Myxocephalus aenaeus|sculpin (generic term)
+grubstake|2
+(noun)|interest (generic term)|stake (generic term)
+(verb)|fund (generic term)
+grudge|2
+(noun)|score|grievance|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+(verb)|stew|resent (generic term)
+grudging|2
+(adj)|unwilling (similar term)
+(adj)|niggardly|scrimy|stingy (similar term)|ungenerous (similar term)
+grudgingly|1
+(adv)|ungrudgingly (antonym)
+gruel|1
+(noun)|porridge (generic term)
+grueling|1
+(adj)|arduous|backbreaking|gruelling|hard|heavy|laborious|operose|punishing|toilsome|effortful (similar term)
+gruelling|1
+(adj)|arduous|backbreaking|grueling|hard|heavy|laborious|operose|punishing|toilsome|effortful (similar term)
+gruesome|1
+(adj)|ghastly|grim|grisly|macabre|sick|alarming (similar term)
+gruesomeness|1
+(noun)|ghastliness|grimness|luridness|frightfulness (generic term)
+gruff|2
+(adj)|crusty|curmudgeonly|ill-humored|ill-humoured|ill-natured (similar term)
+(adj)|hoarse|husky|cacophonous (similar term)|cacophonic (similar term)
+gruffness|2
+(noun)|hoarseness|huskiness|harshness (generic term)|roughness (generic term)
+(noun)|abruptness|brusqueness|curtness|shortness|discourtesy (generic term)|rudeness (generic term)
+grugru|1
+(noun)|gri-gri|grugru palm|macamba|Acrocomia aculeata|feather palm (generic term)
+grugru nut|1
+(noun)|edible nut (generic term)
+grugru palm|1
+(noun)|grugru|gri-gri|macamba|Acrocomia aculeata|feather palm (generic term)
+gruidae|1
+(noun)|Gruidae|family Gruidae|bird family (generic term)
+gruiformes|1
+(noun)|Gruiformes|order Gruiformes|animal order (generic term)
+grumble|6
+(noun)|rumble|rumbling|grumbling|noise (generic term)
+(noun)|grumbling|murmur|murmuring|mutter|muttering|complaint (generic term)
+(verb)|grouch|scold|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|murmur|mutter|croak|gnarl|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|growl|rumble|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|rumble|sound (generic term)|go (generic term)
+grumbler|1
+(noun)|whiner|complainer|moaner|sniveller|crybaby|bellyacher|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+grumbling|4
+(adj)|rumbling|full (similar term)
+(adj)|complaining (similar term)|complaintive (similar term)
+(noun)|rumble|rumbling|grumble|noise (generic term)
+(noun)|grumble|murmur|murmuring|mutter|muttering|complaint (generic term)
+grume|2
+(noun)|liquid (generic term)
+(noun)|blood clot|blood (generic term)
+grummet|1
+(noun)|cringle|eyelet|loop|grommet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+grumose|1
+(adj)|coagulate|coagulated|curdled|grumous|thick (similar term)
+grumous|1
+(adj)|coagulate|coagulated|curdled|grumose|thick (similar term)
+grump|1
+(noun)|grouch|crank|churl|crosspatch|unpleasant person (generic term)|disagreeable person (generic term)
+grumpily|1
+(adv)|crossly|grouchily
+grumpiness|1
+(noun)|crankiness|crotchetiness|contrariness|ill nature (generic term)
+grumpy|1
+(adj)|crabbed|crabby|cross|fussy|grouchy|bad-tempered|ill-tempered|ill-natured (similar term)
+grundyism|1
+(noun)|primness|prudishness|prudery|Grundyism|modesty (generic term)|modestness (generic term)
+grunge|1
+(noun)|dirt|filth|grime|soil|stain|grease|dirtiness (generic term)|uncleanness (generic term)
+grungily|1
+(adv)|dingily|grubbily
+grungy|1
+(adj)|begrimed|dingy|grimy|grubby|raunchy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+grunt|4
+(noun)|oink|noise (generic term)
+(noun)|unskilled person (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+grunt-hoot|1
+(verb)|hoot (generic term)
+grunter|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|hog|pig|squealer|Sus scrofa|swine (generic term)
+grunting|1
+(adj)|inarticulate (similar term)|unarticulate (similar term)
+gruntle|1
+(verb)|pacify|lenify|conciliate|assuage|appease|mollify|placate|gentle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+grus|2
+(noun)|Grus|Crane|constellation (generic term)
+(noun)|Grus|genus Grus|bird genus (generic term)
+grus americana|1
+(noun)|whooping crane|whooper|Grus americana|crane (generic term)
+gruyere|1
+(noun)|Gruyere|Swiss cheese (generic term)
+gryllidae|1
+(noun)|Gryllidae|family Gryllidae|arthropod family (generic term)
+gryphon|1
+(noun)|griffin|griffon|mythical monster (generic term)|mythical creature (generic term)
+gsa|1
+(noun)|General Services Administration|GSA|independent agency (generic term)
+gspc|1
+(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+gsr|1
+(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+gu|2
+(adj)|genitourinary|GU|reproductive organ|sex organ (related term)|internal organ|viscus (related term)
+(noun)|Guam|GU|island (generic term)
+guacamole|1
+(noun)|dip (generic term)
+guacharo|1
+(noun)|oilbird|Steatornis caripensis|caprimulgiform bird (generic term)
+guadalajara|1
+(noun)|Guadalajara|city (generic term)|metropolis (generic term)|urban center (generic term)
+guadalcanal|2
+(noun)|Guadalcanal|island (generic term)
+(noun)|Guadalcanal|Battle of Guadalcanal|pitched battle (generic term)
+guadalupe cypress|1
+(noun)|Guadalupe cypress|Cupressus guadalupensis|cypress (generic term)|cypress tree (generic term)
+guadalupe fur seal|1
+(noun)|Arctocephalus philippi|fur seal (generic term)
+guadalupe island|1
+(noun)|Guadalupe Island|island (generic term)
+guadalupe mountains|1
+(noun)|Guadalupe Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+guadalupe mountains national park|1
+(noun)|Guadalupe Mountains National Park|national park (generic term)
+guadeloupe|1
+(noun)|Guadeloupe|island (generic term)
+guaiac|1
+(noun)|lignum vitae|guaiacum|wood (generic term)
+guaiac wood|1
+(noun)|guaiacum wood|wood (generic term)
+guaiacum|3
+(noun)|natural resin (generic term)
+(noun)|lignum vitae|guaiac|wood (generic term)
+(noun)|Guaiacum|genus Guaiacum|rosid dicot genus (generic term)
+guaiacum officinale|1
+(noun)|lignum vitae|Guaiacum officinale|angiospermous tree (generic term)|flowering tree (generic term)
+guaiacum sanctum|1
+(noun)|bastard lignum vitae|Guaiacum sanctum|angiospermous tree (generic term)|flowering tree (generic term)
+guaiacum wood|1
+(noun)|guaiac wood|wood (generic term)
+guaira|1
+(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall (generic term)|falls (generic term)
+guaira falls|1
+(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall (generic term)|falls (generic term)
+guallatiri|1
+(noun)|Guallatiri|volcano (generic term)
+guam|1
+(noun)|Guam|GU|island (generic term)
+guama|1
+(noun)|Inga laurina|tree (generic term)
+guan|1
+(noun)|gallinaceous bird (generic term)|gallinacean (generic term)
+guanabana|1
+(noun)|soursop|custard apple (generic term)
+guanabenz|1
+(noun)|Wytensin|antihypertensive (generic term)|antihypertensive drug (generic term)
+guanaco|1
+(noun)|Lama guanicoe|llama (generic term)
+guangdong|1
+(noun)|Guangdong|Kwangtung|Guangdong province|state (generic term)|province (generic term)
+guangdong province|1
+(noun)|Guangdong|Kwangtung|Guangdong province|state (generic term)|province (generic term)
+guangzhou|1
+(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+guanine|1
+(noun)|G|purine (generic term)
+guano|1
+(noun)|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)|organic (generic term)|organic fertilizer (generic term)|organic fertiliser (generic term)
+guano bat|1
+(noun)|Mexican freetail bat|Tadarida brasiliensis|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+guanosine|1
+(noun)|deoxyguanosine|nucleoside (generic term)
+guantanamo|1
+(noun)|Guantanamo|city (generic term)|metropolis (generic term)|urban center (generic term)
+guar|1
+(noun)|cluster bean|Cyamopsis tetragonolobus|Cyamopsis psoraloides|legume (generic term)|leguminous plant (generic term)
+guar gum|1
+(noun)|gum (generic term)
+guarani|3
+(noun)|Paraguayan monetary unit (generic term)
+(noun)|Guarani|South American Indian (generic term)
+(noun)|Guarani|Tupi-Guarani (generic term)|Tupi-Guarani language (generic term)
+guarantee|7
+(noun)|warrant|warrantee|warranty|assurance (generic term)|pledge (generic term)
+(noun)|assurance (generic term)|pledge (generic term)
+(noun)|guaranty|collateral (generic term)
+(verb)|vouch|pledge (generic term)|plight (generic term)
+(verb)|ensure|insure|assure|secure
+(verb)|undertake|promise (generic term)|assure (generic term)
+(verb)|warrant|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+guaranteed|1
+(adj)|bonded|secured|warranted|secure (similar term)
+guarantor|1
+(noun)|surety|warrantor|warranter|patron (generic term)|sponsor (generic term)|supporter (generic term)
+guaranty|1
+(noun)|guarantee|collateral (generic term)
+guard|13
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|safety|safety device|device (generic term)
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+(noun)|basketball player (generic term)|basketeer (generic term)|cager (generic term)
+(noun)|bodyguard|detachment (generic term)
+(noun)|precaution|safeguard|measure (generic term)|step (generic term)
+(noun)|guard duty|sentry duty|sentry go|assignment (generic term)|duty assignment (generic term)
+(noun)|lineman (generic term)
+(noun)|position (generic term)
+(verb)|watch (generic term)|observe (generic term)|follow (generic term)|watch over (generic term)|keep an eye on (generic term)
+(verb)|ward|protect (generic term)
+(verb)|defend|hold|protect (generic term)
+(verb)|act (generic term)|move (generic term)
+guard's van|1
+(noun)|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+guard boat|1
+(noun)|boat (generic term)
+guard dog|1
+(noun)|watchdog|working dog (generic term)
+guard duty|1
+(noun)|guard|sentry duty|sentry go|assignment (generic term)|duty assignment (generic term)
+guard hair|1
+(noun)|hair (generic term)
+guard of honor|1
+(noun)|honor guard|escort (generic term)
+guard ship|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+guardant|1
+(adj)|gardant|full-face|forward (similar term)
+guarded|1
+(adj)|restrained|cautious (similar term)
+guardedly|1
+(adv)|conservatively|cautiously
+guardhouse|1
+(noun)|headquarters (generic term)|HQ (generic term)|military headquarters (generic term)
+guardian|2
+(adj)|custodial|tutelary|tutelar|protective (similar term)
+(noun)|defender|protector|shielder|preserver (generic term)
+guardian angel|1
+(noun)|guardian spirit|angel (generic term)
+guardian spirit|1
+(noun)|guardian angel|angel (generic term)
+guardianship|2
+(noun)|care|charge|tutelage|protection (generic term)
+(noun)|keeping|safekeeping|duty (generic term)|responsibility (generic term)|obligation (generic term)
+guardrail|1
+(noun)|safety rail|railing (generic term)|rail (generic term)
+guardroom|2
+(noun)|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+(noun)|room (generic term)
+guardsman|1
+(noun)|soldier (generic term)
+guarneri|2
+(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker (generic term)
+(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker (generic term)
+guarnerius|3
+(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker (generic term)
+(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker (generic term)
+(noun)|Guarnerius|violin (generic term)|fiddle (generic term)
+guarnieri|2
+(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker (generic term)
+(noun)|Guarneri|Guarnieri|Guarnerius|Andrea Guarneri|violin maker (generic term)
+guatemala|1
+(noun)|Guatemala|Republic of Guatemala|Central American country (generic term)|Central American nation (generic term)
+guatemala city|1
+(noun)|Guatemala City|capital of Guatemala|national capital (generic term)
+guatemalan|2
+(adj)|Guatemalan|Central American country|Central American nation (related term)
+(noun)|Guatemalan|Central American (generic term)
+guatemalan monetary unit|1
+(noun)|Guatemalan monetary unit|monetary unit (generic term)
+guava|3
+(noun)|strawberry guava|yellow cattley guava|Psidium littorale|fruit tree (generic term)
+(noun)|true guava|guava bush|Psidium guajava|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+guava bush|1
+(noun)|guava|true guava|Psidium guajava|fruit tree (generic term)
+guayaquil|1
+(noun)|Guayaquil|city (generic term)|metropolis (generic term)|urban center (generic term)
+guayule|1
+(noun)|Parthenium argentatum|subshrub (generic term)|suffrutex (generic term)
+gubbins|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+gubernatorial|1
+(adj)|politician (related term)
+guck|1
+(noun)|sludge|slime|goo|gook|gunk|muck|ooze|substance (generic term)|matter (generic term)
+gudgeon|2
+(noun)|goby|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|Gobio gobio|cyprinid (generic term)|cyprinid fish (generic term)
+gudgeon pin|1
+(noun)|wrist pin|pin (generic term)
+guelder rose|1
+(noun)|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub (generic term)|bush (generic term)
+guenevere|1
+(noun)|Guinevere|Guenevere|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+guenon|1
+(noun)|guenon monkey|Old World monkey (generic term)|catarrhine (generic term)
+guenon monkey|1
+(noun)|guenon|Old World monkey (generic term)|catarrhine (generic term)
+guerdon|1
+(noun)|reward (generic term)
+guereza|1
+(noun)|Colobus guereza|colobus (generic term)|colobus monkey (generic term)
+gueridon|1
+(noun)|table (generic term)
+guerilla|1
+(noun)|guerrilla|irregular|insurgent|warrior (generic term)
+guerilla force|1
+(noun)|guerrilla force|force (generic term)|personnel (generic term)
+guernsey|2
+(noun)|Guernsey|island of Guernsey|Channel Island (generic term)
+(noun)|Guernsey|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+guernsey elm|1
+(noun)|Jersey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+guerrilla|1
+(noun)|guerilla|irregular|insurgent|warrior (generic term)
+guerrilla force|1
+(noun)|guerilla force|force (generic term)|personnel (generic term)
+guerrilla theater|1
+(noun)|street theater|dramatization (generic term)|dramatisation (generic term)
+guess|6
+(noun)|conjecture|supposition|surmise|surmisal|speculation|hypothesis|opinion (generic term)|view (generic term)
+(noun)|guesswork|guessing|shot|dead reckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(verb)|think|opine|suppose|imagine|reckon|expect (generic term)|anticipate (generic term)
+(verb)|venture|pretend|hazard|speculate (generic term)
+(verb)|estimate|gauge|approximate|judge|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|overestimate (related term)|underestimate (related term)
+(verb)|infer|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+guesser|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+guessing|1
+(noun)|guess|guesswork|shot|dead reckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+guessing game|1
+(noun)|game (generic term)
+guesstimate|2
+(noun)|guestimate|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+guesswork|1
+(noun)|guess|guessing|shot|dead reckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+guest|4
+(noun)|invitee|visitor (generic term)|visitant (generic term)
+(noun)|Guest|Edgar Guest|Edgar Albert Guest|journalist (generic term)
+(noun)|customer (generic term)|client (generic term)
+(noun)|node|client|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+guest night|1
+(noun)|evening (generic term)|eve (generic term)|even (generic term)|eventide (generic term)
+guest of honor|1
+(noun)|guest (generic term)|invitee (generic term)
+guest worker|1
+(noun)|guestworker|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+guesthouse|1
+(noun)|house (generic term)
+guestimate|1
+(noun)|guesstimate|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+guestroom|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+guestworker|1
+(noun)|guest worker|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+guevara|1
+(noun)|Guevara|Ernesto Guevara|Che Guevara|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+guevina|1
+(noun)|Guevina|genus Guevina|dicot genus (generic term)|magnoliopsid genus (generic term)
+guevina avellana|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+guevina heterophylla|1
+(noun)|Chilean nut|Chile nut|Chile hazel|Chilean hazelnut|Guevina heterophylla|Guevina avellana|shrub (generic term)|bush (generic term)
+guff|1
+(noun)|bunk|bunkum|buncombe|rot|hogwash|drivel (generic term)|garbage (generic term)
+guffaw|2
+(noun)|belly laugh|laugh (generic term)|laughter (generic term)
+(verb)|laugh loudly|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+guggenheim|2
+(noun)|Guggenheim|Solomon Guggenheim|philanthropist (generic term)|altruist (generic term)
+(noun)|Guggenheim|Meyer Guggenheim|industrialist (generic term)
+guggle|3
+(verb)|ripple|babble|burble|bubble|gurgle|sound (generic term)|go (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|gurgle|drink (generic term)|imbibe (generic term)
+guglielmo marconi|1
+(noun)|Marconi|Guglielmo Marconi|electrical engineer (generic term)
+gui|1
+(noun)|graphical user interface|GUI|interface (generic term)|user interface (generic term)
+guiana|1
+(noun)|Guiana|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+guiana highlands|1
+(noun)|Guiana Highlands|tableland (generic term)|plateau (generic term)
+guib|1
+(noun)|bushbuck|Tragelaphus scriptus|harnessed antelope (generic term)
+guibert of ravenna|1
+(noun)|Clement III|Guibert of Ravenna|antipope (generic term)
+guidance|3
+(noun)|counsel|counseling|counselling|direction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|steering|management (generic term)|direction (generic term)
+(noun)|steering|direction|control (generic term)
+guidance device|1
+(noun)|guidance system|system (generic term)
+guidance system|1
+(noun)|guidance device|system (generic term)
+guide|10
+(noun)|usher|escort (generic term)
+(noun)|leader (generic term)
+(noun)|guidebook|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+(noun)|template|templet|model (generic term)|example (generic term)
+(noun)|scout|pathfinder|expert (generic term)
+(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|head|channelize|channelise|control (generic term)|command (generic term)
+(verb)|lead|take|direct|conduct
+(verb)|steer|direct (generic term)
+(verb)|guide on|orient (generic term)|orientate (generic term)
+(verb)|run|draw|pass|pass over (related term)|pass around (related term)
+guide dog|1
+(noun)|seeing-eye dog|working dog (generic term)
+guide fossil|1
+(noun)|index fossil|fossil (generic term)
+guide on|1
+(verb)|guide|orient (generic term)|orientate (generic term)
+guide rope|1
+(noun)|rope (generic term)
+guide word|1
+(noun)|guideword|catchword|word (generic term)
+guidebook|1
+(noun)|guide|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+guided|1
+(adj)|radio-controlled (similar term)|target-hunting (similar term)|unguided (antonym)
+guided bomb unit-28|1
+(noun)|Bunker Buster|Guided Bomb Unit-28|GBU-28|laser-guided bomb (generic term)|LGB (generic term)
+guided missile|1
+(noun)|missile (generic term)
+guided missile cruiser|1
+(noun)|cruiser (generic term)
+guided missile destroyer|1
+(noun)|destroyer|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+guided missile frigate|1
+(noun)|frigate (generic term)
+guideline|3
+(noun)|line (generic term)
+(noun)|road map|plan (generic term)|program (generic term)|programme (generic term)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|guidepost|rule of thumb|rule (generic term)|regulation (generic term)
+guidepost|2
+(noun)|guideline|rule of thumb|rule (generic term)|regulation (generic term)
+(noun)|signpost|sign (generic term)
+guideword|1
+(noun)|guide word|catchword|word (generic term)
+guiding|2
+(adj)|leading (similar term)
+(adj)|directing|directional|directive|leading (similar term)
+guiding light|1
+(noun)|luminary|leading light|notable|notability|celebrity (generic term)|famous person (generic term)
+guild|1
+(noun)|club|social club|society|gild|lodge|order|association (generic term)
+guild socialism|1
+(noun)|socialism (generic term)
+guilder|2
+(noun)|gulden|florin|Surinamese monetary unit (generic term)
+(noun)|gulden|florin|Dutch florin|Dutch monetary unit (generic term)
+guildhall|1
+(noun)|hall (generic term)
+guile|3
+(noun)|craft|craftiness|cunning|foxiness|slyness|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+(noun)|craftiness|deceitfulness|disingenuousness (generic term)
+(noun)|trickery|chicanery|chicane|wile|shenanigan|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+guileful|1
+(adj)|crafty|cunning|dodgy|foxy|knavish|slick|sly|tricksy|tricky|wily|artful (similar term)
+guileless|2
+(adj)|honest|artless (similar term)
+(adj)|transparent|straight (similar term)|square (similar term)
+guillain-barre syndrome|1
+(noun)|Guillain-Barre syndrome|infectious polyneuritis|Landry's paralysis|polyneuritis (generic term)|multiple neuritis (generic term)
+guillaume apollinaire|1
+(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet (generic term)
+guillaume de grimoard|1
+(noun)|Urban V|Guillaume de Grimoard|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+guillemot|1
+(noun)|auk (generic term)
+guilloche|1
+(noun)|architectural ornament (generic term)
+guillotine|3
+(noun)|closure by compartment|closure (generic term)|cloture (generic term)|gag rule (generic term)|gag law (generic term)
+(noun)|instrument of execution (generic term)
+(verb)|decapitate (generic term)|behead (generic term)|decollate (generic term)
+guilt|2
+(noun)|guiltiness|condition (generic term)|status (generic term)|innocence (antonym)
+(noun)|guilty conscience|guilt feelings|guilt trip|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+guilt-ridden|1
+(adj)|guilty (similar term)
+guilt by association|1
+(noun)|guilt (generic term)|guiltiness (generic term)
+guilt feelings|1
+(noun)|guilt|guilty conscience|guilt trip|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+guilt pang|1
+(noun)|pang (generic term)|stab (generic term)|twinge (generic term)
+guilt trip|1
+(noun)|guilt|guilty conscience|guilt feelings|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+guiltiness|1
+(noun)|guilt|condition (generic term)|status (generic term)|innocence (antonym)
+guiltless|1
+(adj)|innocent|clean-handed|absolved (similar term)|clear (similar term)|cleared (similar term)|exculpated (similar term)|exonerated (similar term)|vindicated (similar term)|acquitted (similar term)|not guilty (similar term)|blameless (similar term)|inculpable (similar term)|irreproachable (similar term)|unimpeachable (similar term)|exculpatory (related term)|righteous (related term)|guilty (antonym)
+guiltlessness|1
+(noun)|blamelessness|inculpability|inculpableness|innocence (generic term)
+guilty|2
+(adj)|at fault (similar term)|blameworthy (similar term)|blamable (similar term)|blameable (similar term)|blameful (similar term)|censurable (similar term)|culpable (similar term)|bloodguilty (similar term)|chargeable (similar term)|indictable (similar term)|condemned (similar term)|convicted (similar term)|conscience-smitten (similar term)|criminal (similar term)|delinquent (similar term)|finable (similar term)|fineable (similar term)|guilt-ridden (similar term)|punishable (similar term)|red-handed (similar term)|inculpatory (related term)|inculpative (related term)|unrighteous (related term)|innocent (antonym)
+(adj)|hangdog|shamefaced|shamed|ashamed (similar term)
+guilty conscience|1
+(noun)|guilt|guilt feelings|guilt trip|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+guimpe|2
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(noun)|blouse (generic term)
+guine-bissau|1
+(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country (generic term)|African nation (generic term)
+guinea|4
+(noun)|coin (generic term)
+(noun)|wop|dago|ginzo|Guinea|greaseball|Italian (generic term)
+(noun)|Guinea|Republic of Guinea|French Guinea|African country (generic term)|African nation (generic term)
+(noun)|guinea fowl|Numida meleagris|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+guinea-bissau|1
+(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country (generic term)|African nation (generic term)
+guinea-bissau monetary unit|1
+(noun)|Guinea-Bissau monetary unit|monetary unit (generic term)
+guinea-bissau peso|1
+(noun)|Guinea-Bissau peso|peso|Guinea-Bissau monetary unit (generic term)
+guinea-hen flower|1
+(noun)|snake's head fritillary|checkered daffodil|leper lily|Fritillaria meleagris|fritillary (generic term)|checkered lily (generic term)
+guinea corn|1
+(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+guinea flower|1
+(noun)|guinea gold vine|shrub (generic term)|bush (generic term)
+guinea fowl|1
+(noun)|guinea|Numida meleagris|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+guinea gold|2
+(noun)|red brass|brass (generic term)
+(noun)|gold (generic term)|Au (generic term)|atomic number 79 (generic term)
+guinea gold vine|1
+(noun)|guinea flower|shrub (generic term)|bush (generic term)
+guinea grains|1
+(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb (generic term)|herbaceous plant (generic term)
+guinea hen|2
+(noun)|poultry (generic term)
+(noun)|guinea fowl (generic term)|guinea (generic term)|Numida meleagris (generic term)
+guinea pepper|2
+(noun)|grains of paradise|Guinea grains|Guinea pepper|melagueta pepper|Aframomum melegueta|herb (generic term)|herbaceous plant (generic term)
+(noun)|Guinea pepper|negro pepper|Xylopia aethiopica|tree (generic term)
+guinea pig|2
+(noun)|subject|case|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Cavia cobaya|cavy (generic term)
+guinea worm|2
+(noun)|Guinea worm disease|Guinea worm|dracunculiasis|infestation (generic term)
+(noun)|Guinea worm|Dracunculus medinensis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+guinea worm disease|1
+(noun)|Guinea worm disease|Guinea worm|dracunculiasis|infestation (generic term)
+guinean|2
+(adj)|Guinean|African country|African nation (related term)
+(noun)|Guinean|African (generic term)
+guinean franc|1
+(noun)|Guinean franc|franc (generic term)
+guinean monetary unit|1
+(noun)|Guinean monetary unit|monetary unit (generic term)
+guinevere|1
+(noun)|Guinevere|Guenevere|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+guinness|2
+(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Guinness|stout (generic term)
+guise|1
+(noun)|pretense|pretence|pretext|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+guiseppe fortunino francesco verdi|1
+(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer (generic term)
+guiseppe guarneri|1
+(noun)|Guarneri|Guarnieri|Guarnerius|Guiseppe Guarneri|violin maker (generic term)
+guitar|1
+(noun)|stringed instrument (generic term)
+guitar-shaped|1
+(adj)|formed (similar term)
+guitar pick|1
+(noun)|pick (generic term)|plectrum (generic term)|plectron (generic term)
+guitar player|1
+(noun)|guitarist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+guitarfish|1
+(noun)|ray (generic term)
+guitarist|1
+(noun)|guitar player|musician (generic term)|instrumentalist (generic term)|player (generic term)
+gujarat|2
+(noun)|Gujarat|Gujerat|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Gujarat|Gujerat|state (generic term)|province (generic term)
+gujarati|2
+(noun)|Gujarati|Gujerati|Indian (generic term)
+(noun)|Gujarati|Gujerati|Sanskrit (generic term)|Sanskritic language (generic term)
+gujerat|2
+(noun)|Gujarat|Gujerat|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Gujarat|Gujerat|state (generic term)|province (generic term)
+gujerati|2
+(noun)|Gujarati|Gujerati|Indian (generic term)
+(noun)|Gujarati|Gujerati|Sanskrit (generic term)|Sanskritic language (generic term)
+gula|2
+(noun)|Gula|Semitic deity (generic term)
+(noun)|gluttony|overeating|mortal sin (generic term)|deadly sin (generic term)
+gulag|1
+(noun)|prison camp (generic term)|internment camp (generic term)|prisoner of war camp (generic term)|POW camp (generic term)
+gulch|1
+(noun)|flume|gorge (generic term)
+gulden|2
+(noun)|guilder|florin|Surinamese monetary unit (generic term)
+(noun)|guilder|florin|Dutch florin|Dutch monetary unit (generic term)
+gulf|3
+(noun)|body of water (generic term)|water (generic term)
+(noun)|disconnect|disconnection|disparity (generic term)
+(noun)|chasm (generic term)
+gulf coast|1
+(noun)|Gulf Coast|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+gulf of aden|1
+(noun)|Gulf of Aden|gulf (generic term)
+gulf of aegina|1
+(noun)|Saronic Gulf|Gulf of Aegina|inlet (generic term)|recess (generic term)
+gulf of akaba|1
+(noun)|Gulf of Aqaba|Gulf of Akaba|gulf (generic term)
+gulf of alaska|1
+(noun)|Gulf of Alaska|gulf (generic term)
+gulf of antalya|1
+(noun)|Gulf of Antalya|gulf (generic term)
+gulf of aqaba|1
+(noun)|Gulf of Aqaba|Gulf of Akaba|gulf (generic term)
+gulf of bothnia|1
+(noun)|Gulf of Bothnia|gulf (generic term)
+gulf of california|1
+(noun)|Gulf of California|Sea of Cortes|gulf (generic term)
+gulf of campeche|1
+(noun)|Gulf of Campeche|Golfo de Campeche|Bay of Campeche|gulf (generic term)
+gulf of carpentaria|1
+(noun)|Gulf of Carpentaria|Carpentaria|gulf (generic term)|Australia (generic term)
+gulf of corinth|1
+(noun)|Gulf of Corinth|Gulf of Lepanto|gulf (generic term)
+gulf of finland|1
+(noun)|Gulf of Finland|gulf (generic term)
+gulf of guinea|1
+(noun)|Gulf of Guinea|gulf (generic term)
+gulf of lepanto|1
+(noun)|Gulf of Corinth|Gulf of Lepanto|gulf (generic term)
+gulf of martaban|1
+(noun)|Gulf of Martaban|gulf (generic term)
+gulf of mexico|1
+(noun)|Gulf of Mexico|Golfo de Mexico|gulf (generic term)
+gulf of ob|1
+(noun)|Gulf of Ob|Bay of Ob|gulf (generic term)
+gulf of oman|1
+(noun)|Gulf of Oman|gulf (generic term)
+gulf of riga|1
+(noun)|Gulf of Riga|gulf (generic term)
+gulf of saint lawrence|1
+(noun)|Gulf of Saint Lawrence|Gulf of St. Lawrence|gulf (generic term)
+gulf of siam|1
+(noun)|Gulf of Thailand|Gulf of Siam|gulf (generic term)
+gulf of sidra|1
+(noun)|Gulf of Sidra|gulf (generic term)
+gulf of st. lawrence|1
+(noun)|Gulf of Saint Lawrence|Gulf of St. Lawrence|gulf (generic term)
+gulf of suez|1
+(noun)|Gulf of Suez|gulf (generic term)
+gulf of tehuantepec|1
+(noun)|Gulf of Tehuantepec|gulf (generic term)
+gulf of thailand|1
+(noun)|Gulf of Thailand|Gulf of Siam|gulf (generic term)
+gulf of venice|1
+(noun)|Gulf of Venice|gulf (generic term)
+gulf states|1
+(noun)|Gulf States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+gulf stream|1
+(noun)|Gulf stream|ocean current (generic term)
+gulf war|2
+(noun)|Persian Gulf War|Gulf War|war (generic term)|warfare (generic term)
+(noun)|Iran-Iraq War|Gulf War|war (generic term)|warfare (generic term)
+gulf war syndrome|1
+(noun)|Gulf War syndrome|Persian Gulf illness|syndrome (generic term)
+gulfweed|1
+(noun)|sargassum|sargasso|Sargassum bacciferum|brown algae (generic term)
+gull|4
+(noun)|chump|fool|mark|patsy|fall guy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+(noun)|seagull|sea gull|larid (generic term)
+(verb)|fool|befool|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|dupe|slang|befool|cod|fool|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+gull-like|1
+(adj)|animal (similar term)
+gullet|1
+(noun)|esophagus|oesophagus|gorge|passage (generic term)|passageway (generic term)|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)
+gullibility|1
+(noun)|credulousness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+gullible|2
+(adj)|fleeceable|green|naive (similar term)|naif (similar term)
+(adj)|unwary (similar term)
+gulliver|1
+(noun)|Gulliver|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+gully|1
+(noun)|valley (generic term)|vale (generic term)
+gulo|1
+(noun)|Gulo|genus Gulo|mammal genus (generic term)
+gulo gulo|1
+(noun)|glutton|Gulo gulo|wolverine|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+gulo luscus|1
+(noun)|wolverine|carcajou|skunk bear|Gulo luscus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+gulp|4
+(noun)|draft|draught|swig|swallow (generic term)|drink (generic term)|deglutition (generic term)
+(noun)|gulping|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|quaff|swig|drink (generic term)|imbibe (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+gulper|1
+(noun)|guzzler|drinker (generic term)
+gulping|2
+(noun)|gulp|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|swilling|guzzling|drinking (generic term)|imbibing (generic term)|imbibition (generic term)
+gulu|1
+(noun)|Gulu|city (generic term)|metropolis (generic term)|urban center (generic term)
+gulyas|1
+(noun)|goulash|Hungarian goulash|stew (generic term)
+gum|10
+(noun)|chewing gum|sweet (generic term)|confection (generic term)
+(noun)|gingiva|animal tissue (generic term)
+(noun)|exudate (generic term)|exudation (generic term)
+(noun)|glue|mucilage|cement (generic term)
+(noun)|gumwood|wood (generic term)
+(noun)|gum tree|tree (generic term)
+(verb)|put on (generic term)|apply (generic term)
+(verb)|mumble|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+(verb)|change (generic term)
+(verb)|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+gum-lac|1
+(noun)|lac (generic term)
+gum-like|1
+(adj)|adhesive (similar term)
+gum acacia|1
+(noun)|gum arabic|gum (generic term)
+gum accroides|1
+(noun)|acaroid resin|accaroid resin|accroides|accroides resin|accroides gum|natural resin (generic term)
+gum albanum|1
+(noun)|galbanum|gum (generic term)
+gum ammoniac|1
+(noun)|ammoniac|gum (generic term)
+gum anime|1
+(noun)|anime|natural resin (generic term)
+gum arabic|1
+(noun)|gum acacia|gum (generic term)
+gum ball|1
+(noun)|chewing gum (generic term)|gum (generic term)
+gum benjamin|1
+(noun)|benzoin|gum benzoin|benjamin|asa dulcis|gum resin (generic term)
+gum benzoin|1
+(noun)|benzoin|benjamin|gum benjamin|asa dulcis|gum resin (generic term)
+gum boot|1
+(noun)|rubber boot|boot (generic term)
+gum butea|1
+(noun)|butea gum|butea kino|Bengal kino|gum (generic term)
+gum dammar|1
+(noun)|dammar|damar|dammar resin|natural resin (generic term)
+gum elastic|1
+(noun)|rubber|natural rubber|India rubber|caoutchouc|latex (generic term)
+gum elemi|1
+(noun)|elemi|gum resin (generic term)
+gum eurphorbium|1
+(noun)|euphorbium|gum (generic term)
+gum kino|1
+(noun)|kino|kino gum|gum (generic term)
+gum labdanum|1
+(noun)|labdanum|oleoresin (generic term)
+gum myrrh|1
+(noun)|myrrh|sweet cicely|gum resin (generic term)
+gum olibanum|1
+(noun)|frankincense|olibanum|thus|gum (generic term)
+gum plant|1
+(noun)|gumweed|tarweed|rosinweed|herb (generic term)|herbaceous plant (generic term)
+gum resin|1
+(noun)|natural resin (generic term)
+gum ridge|1
+(noun)|alveolar ridge|alveolar process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+gum sangapenum|1
+(noun)|sangapenum|gum (generic term)
+gum terpentine|1
+(noun)|turpentine|oleoresin (generic term)
+gum tree|1
+(noun)|gum|tree (generic term)
+gum up|1
+(verb)|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)
+gumbo|4
+(noun)|gumbo soil|soil (generic term)|dirt (generic term)
+(noun)|okra|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+(noun)|okra|vegetable (generic term)|veggie (generic term)
+(noun)|soup (generic term)
+gumbo-limbo|1
+(noun)|Bursera simaruba|incense tree (generic term)
+gumbo soil|1
+(noun)|gumbo|soil (generic term)|dirt (generic term)
+gumboil|1
+(noun)|boil (generic term)|furuncle (generic term)
+gumdrop|1
+(noun)|candy (generic term)|confect (generic term)
+gumma|1
+(noun)|granuloma (generic term)
+gummed|1
+(adj)|gummy|adhesive (similar term)
+gummed label|1
+(noun)|sticker|paster|label (generic term)
+gumminess|1
+(noun)|cohesiveness|glueyness|gluiness|tackiness|ropiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+gumming|1
+(noun)|mumbling|chew (generic term)|chewing (generic term)|mastication (generic term)|manduction (generic term)
+gummite|1
+(noun)|mixture (generic term)
+gummosis|2
+(noun)|plant disease (generic term)
+(noun)|brown rot gummosis|brown rot (generic term)
+gummy|2
+(adj)|gluey|glutinous|mucilaginous|pasty|sticky|viscid|viscous|adhesive (similar term)
+(adj)|gummed|adhesive (similar term)
+gumption|2
+(noun)|common sense|good sense|horse sense|sense|mother wit|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|backbone|grit|guts|moxie|sand|fortitude (generic term)
+gumptious|1
+(adj)|energetic|industrious|up-and-coming|enterprising (similar term)
+gumshield|1
+(noun)|mouthpiece|sports equipment (generic term)
+gumshoe|2
+(noun)|dick|hawkshaw|detective (generic term)|investigator (generic term)|tec (generic term)|police detective (generic term)
+(noun)|arctic|galosh|golosh|rubber|overshoe (generic term)
+gumweed|1
+(noun)|gum plant|tarweed|rosinweed|herb (generic term)|herbaceous plant (generic term)
+gumwood|1
+(noun)|gum|wood (generic term)
+gun|8
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|artillery|heavy weapon|ordnance|armament (generic term)
+(noun)|gunman|shot (generic term)|shooter (generic term)
+(noun)|gunman|gunslinger|hired gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|grease-gun|pump (generic term)
+(noun)|accelerator|accelerator pedal|gas pedal|gas|throttle|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+(noun)|discharge (generic term)|firing (generic term)|firing off (generic term)
+(verb)|shoot (generic term)|gun down (related term)
+gun-sight|1
+(noun)|gunsight|sight (generic term)
+gun barrel|1
+(noun)|barrel|tube (generic term)|tubing (generic term)
+gun carriage|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+gun case|1
+(noun)|case (generic term)
+gun chamber|1
+(noun)|firing chamber|chamber (generic term)
+gun control|1
+(noun)|regulation (generic term)|regulating (generic term)
+gun deck|1
+(noun)|deck (generic term)
+gun dog|1
+(noun)|sporting dog|hunting dog (generic term)
+gun down|1
+(verb)|shoot (generic term)|hit (generic term)|pip (generic term)
+gun emplacement|1
+(noun)|weapons emplacement|emplacement (generic term)
+gun enclosure|1
+(noun)|gun turret|turret|platform (generic term)|weapons platform (generic term)
+gun for hire|1
+(noun)|gunman|gunslinger|hired gun|gun|triggerman|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+gun moll|1
+(noun)|moll|gangster's moll|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+gun muzzle|1
+(noun)|muzzle|opening (generic term)
+gun rest|1
+(noun)|gunwale|gunnel|wale (generic term)|strake (generic term)
+gun room|1
+(noun)|military quarters (generic term)
+gun smoke|1
+(noun)|smoke (generic term)|fume (generic term)
+gun trigger|1
+(noun)|trigger|lever (generic term)
+gun turret|1
+(noun)|gun enclosure|turret|platform (generic term)|weapons platform (generic term)
+gunboat|1
+(noun)|boat (generic term)
+gunboat diplomacy|1
+(noun)|power politics|diplomacy (generic term)|diplomatic negotiations (generic term)
+guncotton|1
+(noun)|cellulose nitrate|nitrocellulose|nitrocotton|cellulose ester (generic term)|nitrate (generic term)
+gunfight|1
+(noun)|gunplay|shootout|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+gunfire|1
+(noun)|gunshot|shooting (generic term)|shot (generic term)
+gunflint|1
+(noun)|flint (generic term)
+gung ho|1
+(adj)|enthusiastic (similar term)
+gunite|1
+(noun)|building material (generic term)
+gunk|1
+(noun)|sludge|slime|goo|gook|guck|muck|ooze|substance (generic term)|matter (generic term)
+gunlock|1
+(noun)|firing mechanism|action (generic term)|action mechanism (generic term)
+gunman|2
+(noun)|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|gun|shot (generic term)|shooter (generic term)
+gunmetal|1
+(noun)|bronze (generic term)
+gunnar myrdal|1
+(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist (generic term)|economic expert (generic term)
+gunnel|2
+(noun)|gunwale|gun rest|wale (generic term)|strake (generic term)
+(noun)|bracketed blenny|blennioid fish (generic term)|blennioid (generic term)
+gunner|1
+(noun)|artilleryman|cannoneer|machine gunner|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+gunnery|1
+(noun)|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+gunnery sergeant|1
+(noun)|sergeant (generic term)
+gunny|1
+(noun)|burlap|sacking (generic term)|bagging (generic term)
+gunny sack|1
+(noun)|gunnysack|burlap bag|bag (generic term)
+gunnysack|1
+(noun)|gunny sack|burlap bag|bag (generic term)
+gunplay|1
+(noun)|gunfight|shootout|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+gunpoint|1
+(noun)|point|gun muzzle (generic term)|muzzle (generic term)
+gunpowder|1
+(noun)|powder|explosive (generic term)
+gunpowder plot|1
+(noun)|Gunpowder Plot|conspiracy (generic term)|cabal (generic term)
+gunrunner|1
+(noun)|arms-runner|smuggler (generic term)|runner (generic term)|contrabandist (generic term)|moon curser (generic term)|moon-curser (generic term)
+gunrunning|1
+(noun)|smuggling (generic term)
+gunshot|1
+(noun)|gunfire|shooting (generic term)|shot (generic term)
+gunsight|1
+(noun)|gun-sight|sight (generic term)
+gunslinger|1
+(noun)|gunman|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+gunsmith|1
+(noun)|smith (generic term)
+gunstock|1
+(noun)|stock|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)|support (generic term)
+gunter's chain|1
+(noun)|Gunter's chain|chain (generic term)
+gunter grass|1
+(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer (generic term)|author (generic term)
+gunter wilhelm grass|1
+(noun)|Grass|Gunter Grass|Gunter Wilhelm Grass|writer (generic term)|author (generic term)
+gunwale|1
+(noun)|gunnel|gun rest|wale (generic term)|strake (generic term)
+guomindang|1
+(noun)|Kuomintang|Guomindang|party (generic term)|political party (generic term)
+guppy|1
+(noun)|rainbow fish|Lebistes reticulatus|cyprinodont (generic term)
+gur|1
+(noun)|Gur|Voltaic|Niger-Congo (generic term)
+gurgle|5
+(noun)|sound (generic term)
+(verb)|ripple|babble|guggle|burble|bubble|sound (generic term)|go (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|guggle|drink (generic term)|imbibe (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+gurkha|2
+(noun)|Gurkha|soldier (generic term)
+(noun)|Gurkha|Nepalese (generic term)|Nepali (generic term)
+gurnard|1
+(noun)|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+gurney|1
+(noun)|stretcher (generic term)
+guru|3
+(noun)|religious leader (generic term)
+(noun)|Guru|religious leader (generic term)
+(noun)|leader (generic term)
+guru nanak|1
+(noun)|Nanak|Guru Nanak|religious leader (generic term)
+gush|5
+(noun)|flush|outpouring|flow (generic term)|flowing (generic term)
+(noun)|effusion|outburst|blowup|ebullition|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+(verb)|spurt|spirt|spout|pour (generic term)
+(verb)|rave|praise (generic term)
+(verb)|jet|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+gusher|1
+(noun)|oil well (generic term)|oiler (generic term)
+gushing|3
+(adj)|pouring|running (similar term)
+(adj)|burbling|burbly|effusive|lively (similar term)
+(adj)|effusive|emotional|gushy|demonstrative (similar term)
+gushy|1
+(adj)|effusive|emotional|gushing|demonstrative (similar term)
+gusset|3
+(noun)|voider|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+(noun)|gusset plate|plate (generic term)|brace (generic term)|bracing (generic term)
+(noun)|inset|piece of cloth (generic term)|piece of material (generic term)
+gusset plate|1
+(noun)|gusset|plate (generic term)|brace (generic term)|bracing (generic term)
+gusseted|1
+(adj)|ungusseted (antonym)
+gussied|1
+(adj)|fancied up|gussied up|tricked out|adorned (similar term)|decorated (similar term)
+gussied up|1
+(adj)|fancied up|gussied|tricked out|adorned (similar term)|decorated (similar term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+gust|1
+(noun)|blast|blow|wind (generic term)|air current (generic term)|current of air (generic term)
+gustation|1
+(noun)|taste|sense of taste|gustatory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+gustative|1
+(adj)|gustatory|gustatorial|sensation|esthesis|aesthesis|sense experience|sense impression|sense datum (related term)
+gustatorial|1
+(adj)|gustatory|gustative|sensation|esthesis|aesthesis|sense experience|sense impression|sense datum (related term)
+gustatory|1
+(adj)|gustative|gustatorial|sensation|esthesis|aesthesis|sense experience|sense impression|sense datum (related term)
+gustatory cell|1
+(noun)|taste cell|epithelial cell (generic term)
+gustatory modality|1
+(noun)|taste|gustation|sense of taste|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+gustatory organ|1
+(noun)|tastebud|taste bud|chemoreceptor (generic term)
+gustatory perception|1
+(noun)|taste|taste sensation|gustatory sensation|taste perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+gustatory sensation|1
+(noun)|taste|taste sensation|taste perception|gustatory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+gustav hertz|1
+(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist (generic term)
+gustav klimt|1
+(noun)|Klimt|Gustav Klimt|painter (generic term)
+gustav ludwig hertz|1
+(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist (generic term)
+gustav mahler|1
+(noun)|Mahler|Gustav Mahler|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+gustav robert kirchhoff|1
+(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist (generic term)
+gustav theodor fechner|1
+(noun)|Fechner|Gustav Theodor Fechner|physicist (generic term)
+gustave courbet|1
+(noun)|Courbet|Gustave Courbet|painter (generic term)
+gustave flaubert|1
+(noun)|Flaubert|Gustave Flaubert|writer (generic term)|author (generic term)
+gustavus|6
+(noun)|Gustavus|Gustavus VI|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Gustavus|Gustavus V|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Gustavus|Gustavus IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Gustavus|Gustavus III|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Gustavus|Gustavus I|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus adolphus|1
+(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus franklin swift|1
+(noun)|Swift|Gustavus Franklin Swift|meat packer (generic term)|packer (generic term)
+gustavus i|1
+(noun)|Gustavus|Gustavus I|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus ii|1
+(noun)|Gustavus|Gustavus II|Gustavus Adolphus|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus iii|1
+(noun)|Gustavus|Gustavus III|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus iv|1
+(noun)|Gustavus|Gustavus IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus v|1
+(noun)|Gustavus|Gustavus V|king (generic term)|male monarch (generic term)|Rex (generic term)
+gustavus vi|1
+(noun)|Gustavus|Gustavus VI|king (generic term)|male monarch (generic term)|Rex (generic term)
+gusto|1
+(noun)|relish|zest|zestfulness|enjoyment (generic term)|enthusiasm (generic term)
+gusty|1
+(adj)|puffy|stormy (similar term)
+gut|5
+(noun)|intestine|bowel|internal organ (generic term)|viscus (generic term)
+(noun)|channel (generic term)
+(noun)|catgut|cord (generic term)
+(verb)|empty (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+gutenberg|1
+(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer (generic term)|pressman (generic term)
+guthrie|1
+(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+gutierrezia|1
+(noun)|Gutierrezia|genus Gutierrezia|asterid dicot genus (generic term)
+gutierrezia microcephala|1
+(noun)|little-head snakeweed|Gutierrezia microcephala|matchweed (generic term)|matchbush (generic term)
+gutierrezia sarothrae|1
+(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+gutierrezia texana|1
+(noun)|broomweed|broom-weed|Gutierrezia texana|matchweed (generic term)|matchbush (generic term)
+gutless|2
+(adj)|gutsy (antonym)
+(adj)|namby-pamby|spineless|wishy-washy|weak (similar term)
+gutlessness|1
+(noun)|fearfulness (generic term)|gutsiness (antonym)
+guts|1
+(noun)|backbone|grit|moxie|sand|gumption|fortitude (generic term)
+gutsiness|1
+(noun)|pluck|pluckiness|fearlessness (generic term)|gutlessness (antonym)
+gutsy|1
+(adj)|plucky|gutless (antonym)
+gutta-percha|1
+(noun)|gum (generic term)
+gutta-percha tree|2
+(noun)|tree (generic term)
+(noun)|Palaquium gutta|tree (generic term)
+gutta balata|1
+(noun)|balata|gum (generic term)
+gutter|8
+(noun)|trough|channel (generic term)
+(noun)|sewer|toilet|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+(noun)|worker (generic term)
+(noun)|hand tool (generic term)
+(verb)|burn (generic term)|glow (generic term)
+(verb)|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|probe (generic term)|dig into (generic term)|poke into (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+gutter press|1
+(noun)|press (generic term)|fourth estate (generic term)
+guttersnipe|1
+(noun)|street urchin|urchin (generic term)
+guttiferae|1
+(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family (generic term)
+guttiferales|1
+(noun)|Guttiferales|order Guttiferales|plant order (generic term)
+guttle|1
+(verb)|devour|raven|pig|eat (generic term)
+guttural|3
+(adj)|croaking|croaky|cacophonous (similar term)|cacophonic (similar term)
+(adj)|tubular cavity (related term)
+(noun)|guttural consonant|pharyngeal|pharyngeal consonant|consonant (generic term)
+guttural consonant|1
+(noun)|guttural|pharyngeal|pharyngeal consonant|consonant (generic term)
+guvnor|1
+(noun)|boss (generic term)|hirer (generic term)
+guy|5
+(noun)|cat|hombre|bozo|man (generic term)|adult male (generic term)
+(noun)|Guy|effigy (generic term)|image (generic term)|simulacrum (generic term)
+(noun)|guy cable|guy rope|brace (generic term)|bracing (generic term)
+(verb)|ridicule|roast|blackguard|laugh at|jest at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+(verb)|brace (generic term)|steady (generic term)|stabilize (generic term)|stabilise (generic term)
+guy cable|1
+(noun)|guy|guy rope|brace (generic term)|bracing (generic term)
+guy de maupassant|1
+(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer (generic term)|author (generic term)
+guy fawkes|1
+(noun)|Fawkes|Guy Fawkes|conspirator (generic term)|coconspirator (generic term)|plotter (generic term)|machinator (generic term)
+guy fawkes day|1
+(noun)|Guy Fawkes Day|November 5 (generic term)
+guy fawkes night|1
+(noun)|Bonfire Night|Guy Fawkes Night|November 5 (generic term)
+guy of burgundy|1
+(noun)|Calixtus II|Guy of Burgundy|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+guy rope|1
+(noun)|guy|guy cable|brace (generic term)|bracing (generic term)
+guyana|1
+(noun)|Guyana|Co-operative Republic of Guyana|British Guiana|South American country (generic term)|South American nation (generic term)
+guyana dollar|1
+(noun)|Guyana dollar|dollar (generic term)
+guyanese|2
+(adj)|Guyanese|South American country|South American nation (related term)
+(noun)|Guyanese|South American (generic term)
+guyot|1
+(noun)|seamount (generic term)
+guzzle|1
+(verb)|drink (generic term)|imbibe (generic term)
+guzzler|2
+(noun)|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|gulper|drinker (generic term)
+guzzling|1
+(noun)|gulping|swilling|drinking (generic term)|imbibing (generic term)|imbibition (generic term)
+gwydion|1
+(noun)|Gwydion|Celtic deity (generic term)
+gwyn|1
+(noun)|Gwyn|Celtic deity (generic term)
+gwynn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+gybe|1
+(verb)|jibe|jib|change course|sail (generic term)
+gym|1
+(noun)|gymnasium|athletic facility (generic term)
+gym mat|1
+(noun)|mat|sports equipment (generic term)
+gym rat|1
+(noun)|addict (generic term)|nut (generic term)|freak (generic term)|junkie (generic term)|junky (generic term)
+gym shoe|1
+(noun)|sneaker|tennis shoe|shoe (generic term)
+gym suit|1
+(noun)|sportswear (generic term)|athletic wear (generic term)|activewear (generic term)
+gymanstic exercise|1
+(noun)|gymnastics|sport (generic term)|athletics (generic term)
+gymkhana|1
+(noun)|meet (generic term)|sports meeting (generic term)
+gymnadenia|1
+(noun)|Gymnadenia|genus Gymnadenia|monocot genus (generic term)|liliopsid genus (generic term)
+gymnadenia conopsea|1
+(noun)|fragrant orchid|Gymnadenia conopsea|orchid (generic term)|orchidaceous plant (generic term)
+gymnadenia odoratissima|1
+(noun)|short-spurred fragrant orchid|Gymnadenia odoratissima|orchid (generic term)|orchidaceous plant (generic term)
+gymnadeniopsis|1
+(noun)|Gymnadeniopsis|genus Gymnadeniopsis|monocot genus (generic term)|liliopsid genus (generic term)
+gymnasium|2
+(noun)|secondary school|lyceum|lycee|Gymnasium|middle school|school (generic term)
+(noun)|gym|athletic facility (generic term)
+gymnast|1
+(noun)|athlete (generic term)|jock (generic term)
+gymnastic|2
+(adj)|acrobatic|athletic|active (similar term)
+(adj)|sport|athletics (related term)
+gymnastic apparatus|1
+(noun)|exerciser|sports equipment (generic term)
+gymnastic exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+gymnastic horse|1
+(noun)|horse|gymnastic apparatus (generic term)|exerciser (generic term)
+gymnastics|1
+(noun)|gymanstic exercise|sport (generic term)|athletics (generic term)
+gymnelis|1
+(noun)|Gymnelis|genus Gymnelis|fish genus (generic term)
+gymnelis viridis|1
+(noun)|fish doctor|Gymnelis viridis|eelpout (generic term)|pout (generic term)
+gymnocalycium|1
+(noun)|Gymnocalycium|genus Gymnocalycium|caryophylloid dicot genus (generic term)
+gymnocarpium|1
+(noun)|Gymnocarpium|genus Gymnocarpium|fern genus (generic term)
+gymnocarpium dryopteris|1
+(noun)|oak fern|Gymnocarpium dryopteris|Thelypteris dryopteris|fern (generic term)
+gymnocarpium robertianum|1
+(noun)|limestone fern|northern oak fern|Gymnocarpium robertianum|fern (generic term)
+gymnocladus|1
+(noun)|Gymnocladus|genus Gymnocladus|rosid dicot genus (generic term)
+gymnocladus dioica|1
+(noun)|Kentucky coffee tree|bonduc|chicot|Gymnocladus dioica|tree (generic term)
+gymnogyps|1
+(noun)|Gymnogyps|genus Gymnogyps|bird genus (generic term)
+gymnogyps californianus|1
+(noun)|California condor|Gymnogyps californianus|condor (generic term)
+gymnomycota|1
+(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division (generic term)
+gymnophiona|1
+(noun)|Gymnophiona|order Gymnophiona|animal order (generic term)
+gymnopilus|1
+(noun)|Gymnopilus|genus Gymnopilus|fungus genus (generic term)
+gymnopilus spectabilis|1
+(noun)|Gymnopilus spectabilis|agaric (generic term)
+gymnopilus validipes|1
+(noun)|Gymnopilus validipes|agaric (generic term)
+gymnopilus ventricosus|1
+(noun)|Gymnopilus ventricosus|agaric (generic term)
+gymnorhina|1
+(noun)|Gymnorhina|genus Gymnorhina|bird genus (generic term)
+gymnorhina tibicen|1
+(noun)|piping crow|piping crow-shrike|Gymnorhina tibicen|Australian magpie (generic term)
+gymnosophical|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+gymnosophist|1
+(noun)|philosopher (generic term)
+gymnosophy|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+gymnosperm|1
+(noun)|spermatophyte (generic term)|phanerogam (generic term)|seed plant (generic term)
+gymnosperm family|1
+(noun)|plant family (generic term)
+gymnosperm genus|1
+(noun)|genus (generic term)
+gymnospermae|1
+(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class (generic term)
+gymnospermophyta|1
+(noun)|Gymnospermae|class Gymnospermae|Gymnospermophyta|division Gymnospermophyta|class (generic term)
+gymnospermous|1
+(adj)|class (related term)
+gymnospermous tree|1
+(noun)|tree (generic term)
+gymnospermous yellowwood|1
+(noun)|yellowwood (generic term)|yellowwood tree (generic term)
+gymnosporangium|1
+(noun)|Gymnosporangium|genus Gymnosporangium|fungus genus (generic term)
+gymnosporangium juniperi-virginianae|1
+(noun)|apple rust|cedar-apple rust|Gymnosporangium juniperi-virginianae|rust (generic term)|rust fungus (generic term)
+gymnura|1
+(noun)|Gymnura|genus Gymnura|fish genus (generic term)
+gymslip|1
+(noun)|tunic (generic term)
+gynaecological|1
+(adj)|gynecological|gynecologic|medicine|medical specialty (related term)
+gynaecologist|1
+(noun)|gynecologist|woman's doctor|specialist (generic term)|medical specialist (generic term)
+gynaecology|1
+(noun)|gynecology|medicine (generic term)|medical specialty (generic term)
+gynaeolatry|1
+(noun)|gyneolatry|woman-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+gynandromorph|1
+(noun)|hermaphrodite|intersex|androgyne|epicine|epicine person|bisexual (generic term)|bisexual person (generic term)
+gynandromorphic|1
+(adj)|gynandromorphous|androgynous (similar term)
+gynandromorphous|1
+(adj)|gynandromorphic|androgynous (similar term)
+gynarchy|1
+(noun)|gynecocracy|political system (generic term)|form of government (generic term)
+gynecocracy|1
+(noun)|gynarchy|political system (generic term)|form of government (generic term)
+gynecologic|1
+(adj)|gynecological|gynaecological|medicine|medical specialty (related term)
+gynecological|1
+(adj)|gynaecological|gynecologic|medicine|medical specialty (related term)
+gynecologist|1
+(noun)|gynaecologist|woman's doctor|specialist (generic term)|medical specialist (generic term)
+gynecology|1
+(noun)|gynaecology|medicine (generic term)|medical specialty (generic term)
+gynecomastia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+gyneolatry|1
+(noun)|gynaeolatry|woman-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+gynne|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+gynobase|1
+(noun)|receptacle (generic term)
+gynoecium|1
+(noun)|gametoecium (generic term)
+gynogenesis|1
+(noun)|parthenogenesis (generic term)|parthenogeny (generic term)|virgin birth (generic term)
+gynophobia|1
+(noun)|social phobia (generic term)
+gynophore|1
+(noun)|stalk (generic term)|stem (generic term)
+gynostegium|1
+(noun)|plant part (generic term)|plant structure (generic term)
+gynura|1
+(noun)|Gynura|genus Gynura|asterid dicot genus (generic term)
+gynura aurantiaca|1
+(noun)|velvet plant|purple velvet plant|royal velvet plant|Gynura aurantiaca|houseplant (generic term)
+gyp|2
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|hustle|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+gypaetus|1
+(noun)|Gypaetus|genus Gypaetus|bird genus (generic term)
+gypaetus barbatus|1
+(noun)|bearded vulture|lammergeier|lammergeyer|Gypaetus barbatus|Old World vulture (generic term)
+gyps|1
+(noun)|Gyps|genus Gyps|bird genus (generic term)
+gyps fulvus|1
+(noun)|griffon vulture|griffon|Gyps fulvus|Old World vulture (generic term)
+gypsophila|1
+(noun)|Gypsophila|genus Gypsophila|caryophylloid dicot genus (generic term)
+gypsophila paniculata|1
+(noun)|baby's breath|babies'-breath|Gypsophila paniculata|flower (generic term)
+gypsum|1
+(noun)|mineral (generic term)|calcium sulphate (generic term)|calcium sulfate (generic term)
+gypsum board|1
+(noun)|plasterboard|wallboard (generic term)|drywall (generic term)
+gypsy|3
+(noun)|itinerant|gipsy|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+(noun)|Romany|Gypsy|Sanskrit (generic term)|Sanskritic language (generic term)
+gypsy cab|1
+(noun)|cab (generic term)|hack (generic term)|taxi (generic term)|taxicab (generic term)
+gypsy dancing|1
+(noun)|flamenco|social dancing (generic term)
+gypsy moth|1
+(noun)|gipsy moth|Lymantria dispar|lymantriid (generic term)|tussock moth (generic term)
+gypsy rose lee|1
+(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper (generic term)|striptease artist (generic term)|striptease (generic term)|stripteaser (generic term)|exotic dancer (generic term)|ecdysiast (generic term)|peeler (generic term)
+gypsyweed|1
+(noun)|common speedwell|Veronica officinalis|veronica (generic term)|speedwell (generic term)
+gypsywort|1
+(noun)|gipsywort|Lycopus europaeus|herb (generic term)|herbaceous plant (generic term)
+gyral|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+gyrate|2
+(verb)|spiral|coil|turn (generic term)
+(verb)|spin|spin around|whirl|reel|revolve (generic term)|go around (generic term)|rotate (generic term)
+gyration|2
+(noun)|rotation|revolution|turning (generic term)|turn (generic term)
+(noun)|whirling|rotation (generic term)|rotary motion (generic term)
+gyre|1
+(noun)|coil|whorl|roll|curl|curlicue|ringlet|scroll|round shape (generic term)
+gyrfalcon|1
+(noun)|gerfalcon|Falco rusticolus|falcon (generic term)
+gyrinidae|1
+(noun)|Gyrinidae|family Gyrinidae|arthropod family (generic term)
+gyro|2
+(noun)|sandwich (generic term)
+(noun)|gyroscope|rotating mechanism (generic term)
+gyro horizon|1
+(noun)|artificial horizon|flight indicator|navigational instrument (generic term)
+gyrocompass|1
+(noun)|compass (generic term)
+gyromitra|1
+(noun)|fungus (generic term)
+gyromitra brunnea|1
+(noun)|Gyromitra fastigiata|Gyromitra brunnea|lorchel (generic term)
+gyromitra californica|1
+(noun)|Gyromitra californica|California false morel|gyromitra (generic term)
+gyromitra esculenta|1
+(noun)|Gyromitra esculenta|brain mushroom|beefsteak morel|gyromitra (generic term)
+gyromitra fastigiata|1
+(noun)|Gyromitra fastigiata|Gyromitra brunnea|lorchel (generic term)
+gyromitra gigas|1
+(noun)|Gyromitra gigas|gyromitra (generic term)
+gyromitra infula|1
+(noun)|Gyromitra infula|saddled-shaped false morel|gyromitra (generic term)
+gyromitra sphaerospora|1
+(noun)|Gyromitra sphaerospora|round-spored gyromitra|gyromitra (generic term)
+gyroplane|1
+(noun)|autogiro|autogyro|heavier-than-air craft (generic term)
+gyroscope|1
+(noun)|gyro|rotating mechanism (generic term)
+gyroscopic|1
+(adj)|rotating mechanism (related term)
+gyrostabiliser|1
+(noun)|gyrostabilizer|stabilizer (generic term)|stabiliser (generic term)
+gyrostabilizer|1
+(noun)|gyrostabiliser|stabilizer (generic term)|stabiliser (generic term)
+gyrus|1
+(noun)|convolution|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+gyrus cinguli|1
+(noun)|cingulate gyrus|neural structure (generic term)
+gywn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+h|5
+(noun)|hydrogen|H|atomic number 1|chemical element (generic term)|element (generic term)|gas (generic term)
+(noun)|henry|H|inductance unit (generic term)
+(noun)|Planck's constant|factor of proportionality (generic term)|constant of proportionality (generic term)
+(noun)|H|letter h|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|heat content|total heat|enthalpy|H|physical property (generic term)
+h-bomb|1
+(noun)|hydrogen bomb|H-bomb|fusion bomb|thermonuclear bomb|nuclear weapon (generic term)|bomb (generic term)
+h-shaped|1
+(adj)|H-shaped|formed (similar term)
+h. g. wells|1
+(noun)|Wells|H. G. Wells|Herbert George Wells|writer (generic term)|author (generic term)
+h. h. munro|1
+(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer (generic term)|author (generic term)
+h. j. eysenck|1
+(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist (generic term)
+h. l. mencken|1
+(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist (generic term)|literary critic (generic term)
+h. pylori|1
+(noun)|Heliobacter pylori|H. pylori|bacteria species (generic term)
+h.m.s. bounty|1
+(noun)|Bounty|H.M.S. Bounty|ship (generic term)
+h.p.|1
+(noun)|horsepower|HP|H.P.|power unit (generic term)
+h2o|1
+(noun)|water|H2O|binary compound (generic term)|liquid (generic term)
+ha|1
+(noun)|hour angle|HA|angular distance (generic term)
+ha'p'orth|1
+(noun)|halfpennyworth|worth (generic term)
+ha'penny|1
+(noun)|halfpenny|coin (generic term)
+ha-ha|2
+(noun)|hee-haw|horselaugh|haw-haw|laugh (generic term)|laughter (generic term)
+(noun)|sunk fence|haw-haw|ditch (generic term)
+haart|1
+(noun)|drug cocktail|highly active antiretroviral therapy|HAART|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+haastia|1
+(noun)|Haastia|genus Haastia|asterid dicot genus (generic term)
+haastia pulvinaris|1
+(noun)|vegetable sheep|sheep plant|Haastia pulvinaris|herb (generic term)|herbaceous plant (generic term)
+habacuc|1
+(noun)|Habakkuk|Habacuc|Book of Habakkuk|book (generic term)
+habakkuk|2
+(noun)|Habakkuk|prophet (generic term)
+(noun)|Habakkuk|Habacuc|Book of Habakkuk|book (generic term)
+habanera|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|social dancing (generic term)
+habeas corpus|2
+(noun)|writ of habeas corpus|writ (generic term)|judicial writ (generic term)
+(noun)|civil right (generic term)
+habenaria|1
+(noun)|Habenaria|genus Habenaria|monocot genus (generic term)|liliopsid genus (generic term)
+habenaria albiflora|1
+(noun)|white fringed orchis|white fringed orchid|Habenaria albiflora|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria bifolia|1
+(noun)|lesser butterfly orchid|Platanthera bifolia|Habenaria bifolia|orchid (generic term)|orchidaceous plant (generic term)
+habenaria chlorantha|1
+(noun)|greater butterfly orchid|Platanthera chlorantha|Habenaria chlorantha|orchid (generic term)|orchidaceous plant (generic term)
+habenaria dilatata|1
+(noun)|bog rein orchid|bog candles|Habenaria dilatata|rein orchid (generic term)|rein orchis (generic term)
+habenaria elegans|1
+(noun)|elegant Habenaria|Habenaria elegans|rein orchid (generic term)|rein orchis (generic term)
+habenaria fimbriata|1
+(noun)|purple-fringed orchid|purple-fringed orchis|Habenaria fimbriata|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria greenei|1
+(noun)|coastal rein orchid|Habenaria greenei|rein orchid (generic term)|rein orchis (generic term)
+habenaria hookeri|1
+(noun)|Hooker's orchid|Habenaria hookeri|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria lacera|1
+(noun)|ragged orchid|ragged orchis|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria leucophaea|1
+(noun)|prairie orchid|prairie white-fringed orchis|Habenaria leucophaea|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria nivea|1
+(noun)|snowy orchid|Habenaria nivea|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria orbiculata|1
+(noun)|round-leaved rein orchid|Habenaria orbiculata|rein orchid (generic term)|rein orchis (generic term)
+habenaria peramoena|1
+(noun)|purple fringeless orchid|purple fringeless orchis|Habenaria peramoena|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria psycodes|1
+(noun)|purple-fringed orchid|purple-fringed orchis|Habenaria psycodes|fringed orchis (generic term)|fringed orchid (generic term)
+habenaria unalascensis|1
+(noun)|Alaska rein orchid|Habenaria unalascensis|rein orchid (generic term)|rein orchis (generic term)
+haber|1
+(noun)|Haber|Fritz Haber|chemist (generic term)
+haber-bosch process|1
+(noun)|Haber process|Haber-Bosch process|industrial process (generic term)
+haber process|1
+(noun)|Haber process|Haber-Bosch process|industrial process (generic term)
+haberdasher|1
+(noun)|clothier|merchant (generic term)|merchandiser (generic term)
+haberdashery|2
+(noun)|clothing store|haberdashery store|mens store|shop (generic term)|store (generic term)
+(noun)|men's furnishings|drygoods (generic term)|soft goods (generic term)
+haberdashery store|1
+(noun)|clothing store|haberdashery|mens store|shop (generic term)|store (generic term)
+habergeon|1
+(noun)|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+habiliment|1
+(noun)|clothing|article of clothing|vesture|wear|wearable|covering (generic term)|consumer goods (generic term)
+habilimented|1
+(adj)|appareled|attired|dressed|garbed|garmented|robed|clothed (similar term)|clad (similar term)
+habilitate|2
+(verb)|qualify (generic term)|dispose (generic term)
+(verb)|dress|clothe|enclothe|garb|raiment|tog|garment|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+habit|5
+(noun)|wont|custom (generic term)|tradition (generic term)
+(noun)|use|wont|custom (generic term)|usage (generic term)|usance (generic term)
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|substance abuse|drug abuse|misuse (generic term)|abuse (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+habit-forming|1
+(adj)|addictive|nonaddictive (antonym)
+habitability|1
+(noun)|habitableness|fitness (generic term)|fittingness (generic term)
+habitable|1
+(adj)|inhabitable|livable (similar term)|liveable (similar term)
+habitableness|1
+(noun)|habitability|fitness (generic term)|fittingness (generic term)
+habitant|1
+(noun)|inhabitant|dweller|denizen|indweller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+habitat|1
+(noun)|home ground|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+habitation|3
+(noun)|habitat (generic term)|home ground (generic term)
+(noun)|dwelling|home|domicile|abode|dwelling house|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|inhabitancy|inhabitation|occupancy (generic term)|tenancy (generic term)
+habited|1
+(adj)|clothed (similar term)|clad (similar term)
+habitual|3
+(adj)|established (similar term)|constituted (similar term)
+(adj)|accustomed|customary|wonted|usual (similar term)
+(adj)|confirmed|inveterate|addicted (similar term)
+habitual abortion|1
+(noun)|spontaneous abortion (generic term)|miscarriage (generic term)|stillbirth (generic term)
+habitual criminal|1
+(noun)|recidivist|repeater|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+habitually|1
+(adv)|routinely
+habituate|2
+(verb)|use|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|accustom|change (generic term)|alter (generic term)|modify (generic term)
+habituation|2
+(noun)|addiction|dependence|dependance|dependency|physiological state (generic term)|physiological condition (generic term)
+(noun)|accommodation (generic term)
+habitude|1
+(noun)|practice (generic term)|pattern (generic term)
+habitue|1
+(noun)|regular|fixture|patron (generic term)|frequenter (generic term)
+habitus|2
+(noun)|sensitivity (generic term)|predisposition (generic term)
+(noun)|physique|build|body-build|bodily property (generic term)
+hablot knight browne|1
+(noun)|Browne|Hablot Knight Browne|Phiz|illustrator (generic term)
+habsburg|1
+(noun)|Habsburg|Hapsburg|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+hacek|1
+(noun)|wedge|diacritical mark (generic term)|diacritic (generic term)
+hachiman|1
+(noun)|Hachiman|Japanese deity (generic term)
+hachure|1
+(noun)|hatch|hatching|crosshatch|shading (generic term)
+hacienda|2
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|house (generic term)
+hack|15
+(noun)|drudge|hacker|unskilled person (generic term)
+(noun)|machine politician|ward-heeler|political hack|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|hack writer|literary hack|writer (generic term)|author (generic term)
+(noun)|tool (generic term)
+(noun)|cab|taxi|taxicab|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|jade|nag|plug|horse (generic term)|Equus caballus (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(verb)|chop|cut (generic term)|chop down (related term)|chop up (related term)|chop off (related term)
+(verb)|cut|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|cut (generic term)
+(verb)|foul (generic term)
+(verb)|hack on|program (generic term)|programme (generic term)
+(verb)|cut up|edit (generic term)|redact (generic term)
+(verb)|whoop|cough (generic term)
+hack-driver|1
+(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack driver|livery driver|driver (generic term)
+hack driver|1
+(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack-driver|livery driver|driver (generic term)
+hack on|1
+(verb)|hack|program (generic term)|programme (generic term)
+hack saw|1
+(noun)|hacksaw|metal saw|saw (generic term)
+hack writer|1
+(noun)|hack|literary hack|writer (generic term)|author (generic term)
+hackamore|1
+(noun)|halter|headgear (generic term)
+hackberry|2
+(noun)|nettle tree|tree (generic term)
+(noun)|sugarberry|berry (generic term)
+hackbut|1
+(noun)|arquebus|harquebus|hagbut|muzzle loader (generic term)
+hackee|1
+(noun)|eastern chipmunk|striped squirrel|ground squirrel|Tamias striatus|squirrel (generic term)
+hackelia|1
+(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus (generic term)
+hacker|4
+(noun)|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|cyber-terrorist|cyberpunk|programmer (generic term)|computer programmer (generic term)|coder (generic term)|software engineer (generic term)|terrorist (generic term)
+(noun)|programmer (generic term)|computer programmer (generic term)|coder (generic term)|software engineer (generic term)
+(noun)|hack|drudge|unskilled person (generic term)
+hackle|2
+(noun)|feather (generic term)|plume (generic term)|plumage (generic term)
+(verb)|heckle|hatchel|comb (generic term)
+hackles|1
+(noun)|dander|anger (generic term)|choler (generic term)|ire (generic term)
+hackmatack|1
+(noun)|balsam poplar|tacamahac|Populus balsamifera|poplar (generic term)|poplar tree (generic term)
+hackney|2
+(noun)|hackney carriage|hackney coach|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|harness horse (generic term)
+hackney carriage|1
+(noun)|hackney|hackney coach|carriage (generic term)|equipage (generic term)|rig (generic term)
+hackney coach|1
+(noun)|hackney|hackney carriage|carriage (generic term)|equipage (generic term)|rig (generic term)
+hackneyed|1
+(adj)|banal|commonplace|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+hacksaw|1
+(noun)|hack saw|metal saw|saw (generic term)
+hackwork|1
+(noun)|labor (generic term)|labour (generic term)|toil (generic term)
+had best|1
+(verb)|do well|act (generic term)|move (generic term)
+had crime|1
+(noun)|Had crime|crime (generic term)|law-breaking (generic term)
+hadal|1
+(adj)|bed|bottom (related term)
+haddock|2
+(noun)|fish (generic term)
+(noun)|Melanogrammus aeglefinus|gadoid (generic term)|gadoid fish (generic term)
+hadean|2
+(adj)|Hadean|Plutonian|Tartarean|infernal (similar term)
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+hadean aeon|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+hadean eon|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+hadean time|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+hades|2
+(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity (generic term)
+(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+hadith|2
+(noun)|Hadith|custom (generic term)|tradition (generic term)
+(noun)|Sunnah|Sunna|way (generic term)|path (generic term)|way of life (generic term)
+hadj|1
+(noun)|hajj|haj|pillar of Islam (generic term)|pilgrimage (generic term)|pilgrim's journey (generic term)
+hadji|1
+(noun)|hajji|haji|pilgrim (generic term)
+hadrian|1
+(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor (generic term)|Emperor of Rome (generic term)
+hadrian's wall|1
+(noun)|Hadrian's Wall|wall (generic term)
+hadron|1
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+hadrosaur|1
+(noun)|hadrosaurus|duck-billed dinosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+hadrosauridae|1
+(noun)|Hadrosauridae|family Hadrosauridae|reptile family (generic term)
+hadrosaurus|1
+(noun)|hadrosaur|duck-billed dinosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+haecceity|1
+(noun)|quiddity|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+haeckel|1
+(noun)|Haeckel|Ernst Heinrich Haeckel|biologist (generic term)|life scientist (generic term)|philosopher (generic term)
+haem|1
+(noun)|heme|hematin|haemitin|protoheme|pigment (generic term)
+haemagglutinate|1
+(verb)|hemagglutinate|agglutinate (generic term)
+haemagglutination|1
+(noun)|hemagglutination|agglutination (generic term)
+haemal|1
+(adj)|hemal|hematal|haematal|vessel|vas (related term)
+haemal arch|1
+(noun)|hemal arch|arch (generic term)
+haemangioma|1
+(noun)|hemangioma|angioma (generic term)
+haemanthus|1
+(noun)|Haemanthus|genus Haemanthus|liliid monocot genus (generic term)
+haemanthus coccineus|1
+(noun)|Cape tulip|Haemanthus coccineus|blood lily (generic term)
+haematal|1
+(adj)|hemal|haemal|hematal|vessel|vas (related term)
+haematemesis|1
+(noun)|hematemesis|vomit (generic term)|vomiting (generic term)|emesis (generic term)|regurgitation (generic term)|disgorgement (generic term)|puking (generic term)
+haematic|1
+(adj)|hemic|haemic|hematic|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+haematinic|1
+(noun)|hematinic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+haematite|1
+(noun)|hematite|iron ore (generic term)
+haematobia|1
+(noun)|Haematobia|genus Haematobia|arthropod genus (generic term)
+haematobia irritans|1
+(noun)|horn fly|Haematobia irritans|fly (generic term)
+haematocele|1
+(noun)|hematocele|hematocoele|haematocoele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+haematochezia|1
+(noun)|hematochezia|defecation (generic term)|laxation (generic term)|shitting (generic term)
+haematocoele|1
+(noun)|hematocele|haematocele|hematocoele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+haematocolpometra|1
+(noun)|hematocolpometra|disorder (generic term)|upset (generic term)
+haematocolpos|1
+(noun)|hematocolpos|disorder (generic term)|upset (generic term)
+haematocrit|2
+(noun)|hematocrit|packed cell volume|ratio (generic term)
+(noun)|hematocrit|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|centrifuge (generic term)|extractor (generic term)|separator (generic term)
+haematocytopenia|1
+(noun)|hematocytopenia|cytopenia (generic term)
+haematocyturia|1
+(noun)|hematocyturia|hematuria (generic term)|haematuria (generic term)
+haematogenesis|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+haematogenic|1
+(adj)|hematopoietic|haematopoietic|hemopoietic|haemopoietic|hematogenic|organic process|biological process (related term)
+haematohiston|1
+(noun)|globin|hematohiston|simple protein (generic term)
+haematoidin|1
+(noun)|bilirubin|hematoidin|animal pigment (generic term)
+haematological|1
+(adj)|hematologic|hematological|medicine|medical specialty (related term)
+haematologist|1
+(noun)|hematologist|specialist (generic term)|medical specialist (generic term)
+haematology|1
+(noun)|hematology|medicine (generic term)|medical specialty (generic term)
+haematolysis|1
+(noun)|hemolysis|haemolysis|hematolysis|lysis (generic term)
+haematoma|1
+(noun)|hematoma|intumescence (generic term)|intumescency (generic term)
+haematopodidae|1
+(noun)|Haematopodidae|family Haematopodidae|bird family (generic term)
+haematopoiesis|1
+(noun)|hematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+haematopoietic|1
+(adj)|hematopoietic|hemopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process (related term)
+haematopus|1
+(noun)|Haematopus|genus Haematopus|bird genus (generic term)
+haematoxylon|1
+(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus (generic term)
+haematoxylum|1
+(noun)|Haematoxylum|genus Haematoxylum|Haematoxylon|genus Haematoxylon|rosid dicot genus (generic term)
+haematoxylum campechianum|1
+(noun)|logwood|logwood tree|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood (generic term)|blackwood tree (generic term)
+haematuria|1
+(noun)|hematuria|symptom (generic term)
+haemic|1
+(adj)|hemic|hematic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+haemitin|1
+(noun)|heme|haem|hematin|protoheme|pigment (generic term)
+haemodialysis|1
+(noun)|hemodialysis|dialysis (generic term)
+haemodoraceae|1
+(noun)|Haemodoraceae|family Haemodoraceae|bloodwort family|monocot family (generic term)|liliopsid family (generic term)
+haemodorum|1
+(noun)|Haemodorum|genus Haemodorum|monocot genus (generic term)|liliopsid genus (generic term)
+haemogenesis|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+haemoglobin|1
+(noun)|hemoglobin|Hb|hemoprotein (generic term)|haemoprotein (generic term)
+haemoglobinemia|1
+(noun)|hemoglobinemia|symptom (generic term)
+haemoglobinopathy|1
+(noun)|hemoglobinopathy|blood disease (generic term)|blood disorder (generic term)
+haemoglobinuria|1
+(noun)|hemoglobinuria|symptom (generic term)
+haemolysin|1
+(noun)|hemolysin|erythrolysin|erythrocytolysin|organic compound (generic term)
+haemolysis|1
+(noun)|hemolysis|hematolysis|haematolysis|lysis (generic term)
+haemolytic|1
+(adj)|hemolytic|lysis (related term)
+haemolytic anaemia|1
+(noun)|hemolytic anemia|anemia (generic term)|anaemia (generic term)
+haemophile|1
+(noun)|hemophiliac|haemophiliac|bleeder|hemophile|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+haemophilia|1
+(noun)|hemophilia|bleeder's disease|blood disease (generic term)|blood disorder (generic term)|sex-linked disorder (generic term)
+haemophilia a|1
+(noun)|hemophilia A|haemophilia A|classical hemophilia|classical haemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+haemophilia b|1
+(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+haemophiliac|1
+(noun)|hemophiliac|bleeder|hemophile|haemophile|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+haemophilic|1
+(adj)|hemophilic|blood disease|blood disorder|sex-linked disorder (related term)
+haemopis|1
+(noun)|Haemopis|genus Haemopis|worm genus (generic term)
+haemopoiesis|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+haemopoietic|1
+(adj)|hematopoietic|haematopoietic|hemopoietic|hematogenic|haematogenic|organic process|biological process (related term)
+haemoproteid|1
+(noun)|sporozoan (generic term)
+haemoproteidae|1
+(noun)|Haemoproteidae|family Haemoproteidae|protoctist family (generic term)
+haemoprotein|1
+(noun)|hemoprotein|conjugated protein (generic term)|compound protein (generic term)
+haemoproteus|1
+(noun)|Haemoproteus|genus Haemoproteus|protoctist genus (generic term)
+haemoptysis|1
+(noun)|hemoptysis|symptom (generic term)
+haemorrhage|1
+(noun)|bleeding|hemorrhage|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+haemorrhagic|1
+(adj)|hemorrhagic|injury|hurt|harm|trauma (related term)
+haemorrhagic fever|1
+(noun)|hemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection (generic term)|virus infection (generic term)
+haemorrhagic stroke|1
+(noun)|hemorrhagic stroke|stroke (generic term)|apoplexy (generic term)|cerebrovascular accident (generic term)|CVA (generic term)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+haemorrhoid|1
+(noun)|hemorrhoid|piles|pain (generic term)|hurting (generic term)
+haemorrhoidectomy|1
+(noun)|hemorrhoidectomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+haemosiderin|1
+(noun)|hemosiderin|pigment (generic term)
+haemosiderosis|1
+(noun)|hemosiderosis|symptom (generic term)
+haemosporidia|1
+(noun)|Haemosporidia|order Haemosporidia|animal order (generic term)
+haemosporidian|1
+(noun)|sporozoan (generic term)
+haemostasia|1
+(noun)|hemostasis|haemostasis|hemostasia|stop (generic term)|stoppage (generic term)
+haemostasis|1
+(noun)|hemostasis|hemostasia|haemostasia|stop (generic term)|stoppage (generic term)
+haemostat|1
+(noun)|hemostat|surgical instrument (generic term)
+haemothorax|1
+(noun)|hemothorax|congestion (generic term)
+haemulidae|1
+(noun)|Haemulidae|family Haemulidae|fish family (generic term)
+haemulon|1
+(noun)|Haemulon|genus Haemulon|fish genus (generic term)
+haemulon album|1
+(noun)|margate|Haemulon album|grunt (generic term)
+haemulon aurolineatum|1
+(noun)|tomtate|Haemulon aurolineatum|grunt (generic term)
+haemulon macrostomum|1
+(noun)|Spanish grunt|Haemulon macrostomum|grunt (generic term)
+haemulon malanurum|1
+(noun)|cottonwick|Haemulon malanurum|grunt (generic term)
+haemulon parra|1
+(noun)|sailor's-choice|sailors choice|Haemulon parra|grunt (generic term)
+hafnium|1
+(noun)|Hf|atomic number 72|metallic element (generic term)|metal (generic term)
+haft|1
+(noun)|helve|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+haftarah|1
+(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+haftorah|1
+(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+hag|2
+(noun)|beldam|beldame|witch|crone|old woman (generic term)
+(noun)|hagfish|slime eels|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+hag-ridden|1
+(adj)|hagridden|tormented|troubled (similar term)
+hagada|1
+(noun)|Haggadah|Haggada|Hagada|Talmudic literature (generic term)
+haganah|1
+(noun)|Haganah|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+hagberry|1
+(noun)|fruit (generic term)
+hagberry tree|1
+(noun)|European bird cherry|common bird cherry|Prunus padus|bird cherry (generic term)|bird cherry tree (generic term)
+hagbut|1
+(noun)|arquebus|harquebus|hackbut|muzzle loader (generic term)
+hageman factor|1
+(noun)|Hageman factor|factor XII|coagulation factor (generic term)|clotting factor (generic term)
+hagerstown|1
+(noun)|Hagerstown|town (generic term)
+hagfish|1
+(noun)|hag|slime eels|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+haggada|1
+(noun)|Haggadah|Haggada|Hagada|Talmudic literature (generic term)
+haggadah|1
+(noun)|Haggadah|Haggada|Hagada|Talmudic literature (generic term)
+haggai|2
+(noun)|Haggai|Aggeus|prophet (generic term)
+(noun)|Haggai|Aggeus|Book of Haggai|book (generic term)
+haggard|3
+(adj)|careworn|drawn|raddled|worn|tired (similar term)
+(adj)|bony|cadaverous|emaciated|gaunt|pinched|skeletal|wasted|thin (similar term)|lean (similar term)
+(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer (generic term)|author (generic term)
+haggis|1
+(noun)|dish (generic term)
+haggle|2
+(noun)|haggling|wrangle|wrangling|bargaining (generic term)
+(verb)|higgle|chaffer|huckster|dicker (generic term)|bargain (generic term)
+haggler|1
+(noun)|bargainer (generic term)
+haggling|1
+(noun)|haggle|wrangle|wrangling|bargaining (generic term)
+hagia sofia|1
+(noun)|Hagia Sophia|Hagia Sofia|Santa Sophia|Santa Sofia|museum (generic term)
+hagia sophia|1
+(noun)|Hagia Sophia|Hagia Sofia|Santa Sophia|Santa Sofia|museum (generic term)
+hagiographa|1
+(noun)|Hagiographa|Ketubim|Writings|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+hagiographer|1
+(noun)|hagiographist|hagiologist|biographer (generic term)
+hagiographist|1
+(noun)|hagiographer|hagiologist|biographer (generic term)
+hagiography|1
+(noun)|biography (generic term)|life (generic term)|life story (generic term)|life history (generic term)
+hagiolatry|1
+(noun)|hierolatry|worship (generic term)
+hagiologist|1
+(noun)|hagiographer|hagiographist|biographer (generic term)
+hagiology|1
+(noun)|literary composition (generic term)|literary work (generic term)
+hagridden|1
+(adj)|hag-ridden|tormented|troubled (similar term)
+hahn|1
+(noun)|Hahn|Otto Hahn|chemist (generic term)
+hahnium|1
+(noun)|dubnium|Db|element 105|atomic number 105|chemical element (generic term)|element (generic term)
+haick|1
+(noun)|haik|garment (generic term)
+haida|2
+(noun)|Haida|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Haida|Na-Dene (generic term)
+haifa|1
+(noun)|Hefa|Haifa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+haik|1
+(noun)|haick|garment (generic term)
+haiku|1
+(noun)|poem (generic term)|verse form (generic term)
+hail|7
+(noun)|precipitation (generic term)|downfall (generic term)
+(noun)|greeting (generic term)|salutation (generic term)
+(verb)|acclaim|herald|applaud (generic term)
+(verb)|come|be (generic term)
+(verb)|call (generic term)|send for (generic term)
+(verb)|herald|greet (generic term)|recognize (generic term)|recognise (generic term)
+(verb)|precipitate (generic term)|come down (generic term)|fall (generic term)
+hail-fellow|1
+(adj)|comradely|hail-fellow-well-met|friendly (similar term)
+hail-fellow-well-met|1
+(adj)|comradely|hail-fellow|friendly (similar term)
+hail mary|1
+(noun)|Ave Maria|Hail Mary|prayer (generic term)
+haile selassie|1
+(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|emperor (generic term)
+hailstone|1
+(noun)|ice (generic term)|water ice (generic term)
+hailstorm|1
+(noun)|storm (generic term)|violent storm (generic term)
+haiphong|1
+(noun)|Haiphong|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+hair|6
+(noun)|body covering (generic term)
+(noun)|hair's-breadth|hairsbreadth|whisker|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|fuzz|tomentum|plant process (generic term)|enation (generic term)
+(noun)|pilus|filament (generic term)|filum (generic term)
+(noun)|haircloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+hair's-breadth|1
+(noun)|hairsbreadth|hair|whisker|small indefinite quantity (generic term)|small indefinite amount (generic term)
+hair-raiser|1
+(noun)|chiller|excitation (generic term)|excitement (generic term)
+hair-raising|1
+(adj)|bloodcurdling|nightmarish|alarming (similar term)
+hair-shirt|1
+(adj)|hair-shirted|shirt (related term)
+hair-shirted|1
+(adj)|hair-shirt|shirt (related term)
+hair-tailed mole|1
+(noun)|brewer's mole|Parascalops breweri|mole (generic term)
+hair ball|1
+(noun)|hairball|trichobezoar|tangle (generic term)
+hair care|1
+(noun)|haircare|hairdressing|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+hair cell|1
+(noun)|epithelial cell (generic term)
+hair coloring|3
+(noun)|hair dye|dye (generic term)|dyestuff (generic term)
+(noun)|coloration (generic term)|colouration (generic term)
+(noun)|coloring (generic term)|colouring (generic term)
+hair curler|1
+(noun)|curler|roller|crimper|mechanical device (generic term)
+hair drier|1
+(noun)|hand blower|blow dryer|blow drier|hair dryer|blower (generic term)|dryer (generic term)|drier (generic term)
+hair dryer|1
+(noun)|hand blower|blow dryer|blow drier|hair drier|blower (generic term)|dryer (generic term)|drier (generic term)
+hair dye|1
+(noun)|hair coloring|dye (generic term)|dyestuff (generic term)
+hair follicle|1
+(noun)|follicle (generic term)
+hair gel|1
+(noun)|mousse|hair mousse|toiletry (generic term)|toilet article (generic term)
+hair grass|1
+(noun)|needle spike rush|needle rush|slender spike rush|Eleocharis acicularis|spike rush (generic term)
+hair grease|1
+(noun)|hairdressing|hair tonic|hair oil|toiletry (generic term)|toilet article (generic term)
+hair mousse|1
+(noun)|mousse|hair gel|toiletry (generic term)|toilet article (generic term)
+hair of the dog|1
+(noun)|drink (generic term)
+hair oil|1
+(noun)|hairdressing|hair tonic|hair grease|toiletry (generic term)|toilet article (generic term)
+hair seal|1
+(noun)|earless seal|true seal|seal (generic term)
+hair shirt|1
+(noun)|shirt (generic term)
+hair slide|1
+(noun)|clip (generic term)
+hair space|1
+(noun)|quad (generic term)|space (generic term)
+hair spray|1
+(noun)|toiletry (generic term)|toilet article (generic term)
+hair stroke|1
+(noun)|hairline (generic term)
+hair style|1
+(noun)|hairdo|hairstyle|coiffure|coif|hair (generic term)
+hair tonic|1
+(noun)|hairdressing|hair oil|hair grease|toiletry (generic term)|toilet article (generic term)
+hair trigger|1
+(noun)|gun trigger (generic term)|trigger (generic term)
+hairball|1
+(noun)|hair ball|trichobezoar|tangle (generic term)
+hairbrush|1
+(noun)|brush (generic term)
+haircare|1
+(noun)|hair care|hairdressing|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+haircloth|1
+(noun)|hair|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+haircut|2
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|cut (generic term)|cutting (generic term)|cutting off (generic term)
+hairdo|1
+(noun)|hairstyle|hair style|coiffure|coif|hair (generic term)
+hairdresser|1
+(noun)|hairstylist|stylist|styler|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+hairdressing|2
+(noun)|hair tonic|hair oil|hair grease|toiletry (generic term)|toilet article (generic term)
+(noun)|hair care|haircare|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+haired|1
+(adj)|hairy|hirsute|canescent (similar term)|hoary (similar term)|coarse-haired (similar term)|coarse-furred (similar term)|comate (similar term)|comose (similar term)|comal (similar term)|curly-haired (similar term)|curly-coated (similar term)|dark-haired (similar term)|dark-coated (similar term)|downy (similar term)|pubescent (similar term)|puberulent (similar term)|sericeous (similar term)|floccose (similar term)|furlike (similar term)|furred (similar term)|furry (similar term)|fuzzed (similar term)|fuzzy (similar term)|glossy-haired (similar term)|glossy-coated (similar term)|glossy-furred (similar term)|hispid (similar term)|lanate (similar term)|woolly (similar term)|long-haired (similar term)|pappose (similar term)|pilous (similar term)|pilose (similar term)|pilary (similar term)|rough-haired (similar term)|shock-headed (similar term)|short-haired (similar term)|silky-haired (similar term)|silver-haired (similar term)|smooth-haired (similar term)|snake-haired (similar term)|soft-haired (similar term)|stiff-haired (similar term)|thick-haired (similar term)|tomentose (similar term)|tomentous (similar term)|velvety-furred (similar term)|velvety-haired (similar term)|wire-haired (similar term)|wiry-coated (similar term)|wiry (similar term)|wooly (similar term)|woolly (similar term)|wooly-haired (similar term)|woolly-haired (similar term)|hairless (antonym)
+hairgrip|1
+(noun)|bobby pin|grip|hairpin (generic term)
+hairiness|1
+(noun)|pilosity|appearance (generic term)|visual aspect (generic term)|hairlessness (antonym)
+hairless|1
+(adj)|bald (similar term)|bald-headed (similar term)|bald-pated (similar term)|balding (similar term)|beardless (similar term)|smooth-faced (similar term)|depilatory (similar term)|depilous (similar term)|glabrescent (similar term)|glabrous (similar term)|naked-muzzled (similar term)|naked-tailed (similar term)|nonhairy (similar term)|tonsured (similar term)|hairy (antonym)
+hairlessness|2
+(noun)|depilation|condition (generic term)|status (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)|hairiness (antonym)
+hairlike|1
+(adj)|capillary|thin (similar term)
+hairline|2
+(noun)|line (generic term)
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+hairline fracture|1
+(noun)|capillary fracture|fracture (generic term)|break (generic term)
+hairnet|1
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+hairpiece|1
+(noun)|false hair|postiche|attire (generic term)|garb (generic term)|dress (generic term)
+hairpin|1
+(noun)|pin (generic term)
+hairpin bend|1
+(noun)|bend (generic term)|curve (generic term)
+hairsbreadth|1
+(noun)|hair's-breadth|hair|whisker|small indefinite quantity (generic term)|small indefinite amount (generic term)
+hairsplitter|1
+(noun)|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+hairsplitting|2
+(adj)|finespun|precise (similar term)
+(noun)|word-splitting|differentiation (generic term)|distinction (generic term)
+hairspring|1
+(noun)|spiral spring (generic term)
+hairstreak|1
+(noun)|hairstreak butterfly|lycaenid (generic term)|lycaenid butterfly (generic term)
+hairstreak butterfly|1
+(noun)|hairstreak|lycaenid (generic term)|lycaenid butterfly (generic term)
+hairstyle|1
+(noun)|hairdo|hair style|coiffure|coif|hair (generic term)
+hairstylist|1
+(noun)|hairdresser|stylist|styler|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+hairtail|1
+(noun)|cutlassfish|frost fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+hairweaving|1
+(noun)|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+hairy|2
+(adj)|haired|hirsute|canescent (similar term)|hoary (similar term)|coarse-haired (similar term)|coarse-furred (similar term)|comate (similar term)|comose (similar term)|comal (similar term)|curly-haired (similar term)|curly-coated (similar term)|dark-haired (similar term)|dark-coated (similar term)|downy (similar term)|pubescent (similar term)|puberulent (similar term)|sericeous (similar term)|floccose (similar term)|furlike (similar term)|furred (similar term)|furry (similar term)|fuzzed (similar term)|fuzzy (similar term)|glossy-haired (similar term)|glossy-coated (similar term)|glossy-furred (similar term)|hispid (similar term)|lanate (similar term)|woolly (similar term)|long-haired (similar term)|pappose (similar term)|pilous (similar term)|pilose (similar term)|pilary (similar term)|rough-haired (similar term)|shock-headed (similar term)|short-haired (similar term)|silky-haired (similar term)|silver-haired (similar term)|smooth-haired (similar term)|snake-haired (similar term)|soft-haired (similar term)|stiff-haired (similar term)|thick-haired (similar term)|tomentose (similar term)|tomentous (similar term)|velvety-furred (similar term)|velvety-haired (similar term)|wire-haired (similar term)|wiry-coated (similar term)|wiry (similar term)|wooly (similar term)|woolly (similar term)|wooly-haired (similar term)|woolly-haired (similar term)|hairless (antonym)
+(adj)|alarming (similar term)
+hairy-legged vampire bat|1
+(noun)|Diphylla ecaudata|vampire bat (generic term)|true vampire bat (generic term)
+hairy darling pea|1
+(noun)|Swainsona greyana|Swainsona grandiflora|darling pea (generic term)|poison bush (generic term)
+hairy finger grass|1
+(noun)|large crabgrass|Digitaria sanguinalis|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+hairy golden aster|1
+(noun)|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower (generic term)|wild flower (generic term)
+hairy honeysuckle|1
+(noun)|Lonicera hirsuta|honeysuckle (generic term)
+hairy lip fern|1
+(noun)|wooly lip fern|Cheilanthes lanosa|lip fern (generic term)|lipfern (generic term)
+hairy root|1
+(noun)|crown gall (generic term)
+hairy spurge|1
+(noun)|Euphorbia hirsuta|spurge (generic term)
+hairy tare|1
+(noun)|hairy vetch|Vicia villosa|tare (generic term)
+hairy tongue|1
+(noun)|furry tongue|black tongue|side effect (generic term)
+hairy vetch|1
+(noun)|hairy tare|Vicia villosa|tare (generic term)
+hairy willowherb|1
+(noun)|codlins-and-cream|Epilobium hirsutum|willowherb (generic term)
+hairy wood mint|1
+(noun)|Blephilia hirsuta|wood mint (generic term)
+haiti|2
+(noun)|Haiti|Republic of Haiti|country (generic term)|state (generic term)|land (generic term)
+(noun)|Hispaniola|Haiti|Hayti|island (generic term)
+haitian|2
+(adj)|Haitian|country|state|land (related term)
+(noun)|Haitian|West Indian (generic term)
+haitian capital|1
+(noun)|Port-au-Prince|Haitian capital|national capital (generic term)
+haitian centime|1
+(noun)|Haitian centime|centime (generic term)
+haitian creole|1
+(noun)|Haitian Creole|creole (generic term)|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+haitian monetary unit|1
+(noun)|Haitian monetary unit|monetary unit (generic term)
+haj|1
+(noun)|hajj|hadj|pillar of Islam (generic term)|pilgrimage (generic term)|pilgrim's journey (generic term)
+haji|1
+(noun)|hajji|hadji|pilgrim (generic term)
+hajj|1
+(noun)|haj|hadj|pillar of Islam (generic term)|pilgrimage (generic term)|pilgrim's journey (generic term)
+hajji|2
+(noun)|Iraqi (generic term)|Iraki (generic term)
+(noun)|hadji|haji|pilgrim (generic term)
+hake|2
+(noun)|fish (generic term)
+(noun)|gadoid (generic term)|gadoid fish (generic term)
+hakea|1
+(noun)|Hakea|genus Hakea|dicot genus (generic term)|magnoliopsid genus (generic term)
+hakea laurina|1
+(noun)|cushion flower|pincushion hakea|Hakea laurina|shrub (generic term)|bush (generic term)
+hakea leucoptera|1
+(noun)|needlewood|needle-wood|needle wood|Hakea leucoptera|shrub (generic term)|bush (generic term)
+hakea lissosperma|1
+(noun)|needlebush|needle-bush|needle bush|Hakea lissosperma|shrub (generic term)|bush (generic term)
+hakeem|1
+(noun)|hakim|Muslim (generic term)|Moslem (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+hakenkreuz|1
+(noun)|swastika|Hakenkreuz|emblem (generic term)|allegory (generic term)|tetraskelion (generic term)|tetraskele (generic term)
+hakham|1
+(noun)|Hakham|title (generic term)|title of respect (generic term)|form of address (generic term)|sage (generic term)
+hakim|2
+(noun)|Muslim (generic term)|Moslem (generic term)|ruler (generic term)|swayer (generic term)
+(noun)|hakeem|Muslim (generic term)|Moslem (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+hakka|3
+(adj)|Hakka|Chinese (related term)
+(noun)|Hakka|Chinese (generic term)
+(noun)|Hakka|Hakka dialect|Chinese (generic term)
+hakka dialect|1
+(noun)|Hakka|Hakka dialect|Chinese (generic term)
+halab|1
+(noun)|Halab|Aleppo|Alep|city (generic term)|metropolis (generic term)|urban center (generic term)
+halacha|1
+(noun)|Halakah|Halaka|Halacha|Talmudic literature (generic term)
+halaka|1
+(noun)|Halakah|Halaka|Halacha|Talmudic literature (generic term)
+halakah|1
+(noun)|Halakah|Halaka|Halacha|Talmudic literature (generic term)
+halal|3
+(adj)|proper (similar term)
+(adj)|clean (similar term)
+(noun)|meat (generic term)
+halberd|1
+(noun)|pike (generic term)
+halberdier|1
+(noun)|guard (generic term)
+halchidhoma|1
+(noun)|Halchidhoma|Hokan (generic term)|Hoka (generic term)
+halcion|1
+(noun)|triazolam|Halcion|benzodiazepine (generic term)
+halcyon|5
+(adj)|peaceful (similar term)
+(adj)|golden|prosperous|happy (similar term)
+(noun)|Alcyone|Halcyon|mythical being (generic term)
+(noun)|Halcyon|genus Halcyon|bird genus (generic term)
+(noun)|mythical being (generic term)
+haldane|4
+(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist (generic term)
+(noun)|Haldane|John Haldane|John Scott Haldane|physiologist (generic term)
+(noun)|Haldane|Elizabeth Haldane|Elizabeth Sanderson Haldane|writer (generic term)|author (generic term)
+(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman (generic term)|solon (generic term)|national leader (generic term)
+haldea|1
+(noun)|Haldea|genus Haldea|reptile genus (generic term)
+haldea striatula|1
+(noun)|eastern ground snake|Potamophis striatula|Haldea striatula|colubrid snake (generic term)|colubrid (generic term)
+haldol|1
+(noun)|haloperidol|Haldol|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+hale|6
+(adj)|whole|healthy (similar term)
+(noun)|Hale|Nathan Hale|American Revolutionary leader (generic term)
+(noun)|Hale|George Ellery Hale|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Hale|Edward Everett Hale|writer (generic term)|author (generic term)
+(verb)|coerce|squeeze|pressure|force|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|haul|cart|drag|pull (generic term)|draw (generic term)|force (generic term)
+haleakala national park|1
+(noun)|Haleakala National Park|national park (generic term)
+haleness|1
+(noun)|wholeness|good health (generic term)|healthiness (generic term)
+halenia|1
+(noun)|Halenia|genus Halenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+haler|2
+(noun)|heller|Slovakian monetary unit (generic term)
+(noun)|heller|Czech monetary unit (generic term)
+halesia|1
+(noun)|Halesia|genus Halesia|dicot genus (generic term)|magnoliopsid genus (generic term)
+halesia carolina|1
+(noun)|silver-bell tree|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+halesia tetraptera|1
+(noun)|silver-bell tree|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+halevy|1
+(noun)|Halevy|Fromental Halevy|Jacques Francois Fromental Elie Halevy|composer (generic term)
+haley|2
+(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star (generic term)
+(noun)|Haley|Alex Haley|writer (generic term)|author (generic term)
+half|5
+(adj)|fractional (similar term)
+(adj)|incomplete (similar term)|uncomplete (similar term)
+(adj)|whole (antonym)
+(noun)|one-half|common fraction (generic term)|simple fraction (generic term)
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+half-and-half|2
+(adj)|equal (similar term)
+(noun)|dairy product (generic term)
+half-and-half dressing|1
+(noun)|dressing (generic term)|salad dressing (generic term)
+half-baked|2
+(adj)|crazy|screwball|softheaded|impractical (similar term)
+(adj)|underdone|raw (similar term)
+half-blooded|1
+(adj)|half-bred|half-breed|crossbred (similar term)
+half-bound|1
+(adj)|bound (similar term)
+half-bred|1
+(adj)|half-blooded|half-breed|crossbred (similar term)
+half-breed|2
+(adj)|half-blooded|half-bred|crossbred (similar term)
+(noun)|breed|half-caste (generic term)
+half-brother|1
+(noun)|stepbrother|half brother|brother (generic term)|blood brother (generic term)
+half-caste|1
+(noun)|mixed-blood (generic term)
+half-century|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+half-clothed|1
+(adj)|scantily clad|underclothed|unclothed (similar term)
+half-cock|1
+(noun)|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+half-crazed|1
+(adj)|crazed|deranged|insane (similar term)
+half-dozen|1
+(adj)|six|6|vi|half dozen|cardinal (similar term)
+half-evergreen|1
+(adj)|semi-evergreen|evergreen (similar term)
+half-free morel|1
+(noun)|Morchella semilibera|cow's head|morel (generic term)
+half-hardy|1
+(adj)|delicate (similar term)
+half-hearted|1
+(adj)|halfhearted|tepid|lukewarm|unenthusiastic (similar term)
+half-holiday|1
+(noun)|holiday (generic term)
+half-hour|1
+(noun)|30 minutes|time unit (generic term)|unit of time (generic term)
+half-hourly|1
+(adj)|time unit|unit of time (related term)
+half-intensity|1
+(noun)|intensity (generic term)|strength (generic term)|intensity level (generic term)
+half-length|3
+(adj)|short (similar term)
+(adj)|abridged (similar term)
+(noun)|portrait (generic term)|portrayal (generic term)
+half-life|1
+(noun)|half life|time period (generic term)|period of time (generic term)|period (generic term)
+half-light|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+half-mast|1
+(noun)|position (generic term)|place (generic term)
+half-moon|2
+(noun)|lunula|lunule|area (generic term)|region (generic term)
+(noun)|phase of the moon (generic term)
+half-pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+half-pint|1
+(noun)|runt|shrimp|peewee|small person (generic term)
+half-relief|1
+(noun)|mezzo-relievo|mezzo-rilievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)
+half-seas-over|1
+(adj)|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+half-sister|1
+(noun)|half sister|stepsister|sister (generic term)|sis (generic term)
+half-size|1
+(adj)|small (similar term)|little (similar term)
+half-slip|1
+(noun)|petticoat|underskirt|undergarment (generic term)|unmentionable (generic term)
+half-term|1
+(noun)|vacation (generic term)|holiday (generic term)
+half-timber|1
+(adj)|half-timbered|timbered (similar term)
+half-timbered|1
+(adj)|half-timber|timbered (similar term)
+half-time|2
+(adj)|part-time (similar term)|parttime (similar term)
+(adv)|part-time|full-time (antonym)
+half-track|1
+(adj)|half-tracked|tracked (similar term)
+half-tracked|1
+(adj)|half-track|tracked (similar term)
+half-truth|1
+(noun)|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+half-wit|2
+(noun)|idiot|imbecile|cretin|moron|changeling|retard|simpleton (generic term)|simple (generic term)
+(noun)|dimwit|nitwit|doofus|simpleton (generic term)|simple (generic term)
+half-witted|2
+(adj)|dim-witted|simple|simple-minded|retarded (similar term)
+(adj)|feebleminded|slow-witted|unintelligent (similar term)|stupid (similar term)
+half a dozen|1
+(noun)|six|6|VI|sixer|sise|Captain Hicks|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+half binding|1
+(noun)|binding (generic term)|book binding (generic term)|cover (generic term)|back (generic term)
+half blood|1
+(noun)|sibling (generic term)|sib (generic term)
+half boot|1
+(noun)|buskin|combat boot|desert boot|top boot|boot (generic term)
+half brother|1
+(noun)|stepbrother|half-brother|brother (generic term)|blood brother (generic term)
+half cross stitch|1
+(noun)|cross-stitch (generic term)
+half crown|1
+(noun)|coin (generic term)
+half dollar|1
+(noun)|fifty-cent piece|coin (generic term)
+half door|1
+(noun)|Dutch door|exterior door (generic term)|outside door (generic term)
+half dozen|1
+(adj)|six|6|vi|half-dozen|cardinal (similar term)
+half eagle|1
+(noun)|coin (generic term)
+half gainer|1
+(noun)|dive (generic term)|diving (generic term)
+half hatchet|1
+(noun)|hatchet (generic term)
+half hitch|1
+(noun)|knot (generic term)
+half life|1
+(noun)|half-life|time period (generic term)|period of time (generic term)|period (generic term)
+half mask|1
+(noun)|domino|eye mask|mask (generic term)
+half mile|1
+(noun)|880 yards|linear unit (generic term)
+half nelson|1
+(noun)|wrestling hold (generic term)
+half note|1
+(noun)|minim|note (generic term)|musical note (generic term)|tone (generic term)
+half page|1
+(noun)|page (generic term)
+half pound|1
+(noun)|avoirdupois unit (generic term)
+half rest|1
+(noun)|rest (generic term)
+half sister|1
+(noun)|half-sister|stepsister|sister (generic term)|sis (generic term)
+half snipe|1
+(noun)|jacksnipe|Limnocryptes minima|snipe (generic term)
+half sole|1
+(noun)|sole (generic term)
+half step|1
+(noun)|semitone|interval (generic term)|musical interval (generic term)
+half title|1
+(noun)|bastard title|page (generic term)
+half track|2
+(noun)|tracked vehicle (generic term)|military vehicle (generic term)
+(noun)|track (generic term)|caterpillar track (generic term)|caterpillar tread (generic term)
+half volley|1
+(noun)|return (generic term)
+halfback|2
+(noun)|running back (generic term)
+(noun)|back (generic term)
+halfbeak|1
+(noun)|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+halfhearted|1
+(adj)|half-hearted|tepid|lukewarm|unenthusiastic (similar term)
+halfpenny|1
+(noun)|ha'penny|coin (generic term)
+halfpennyworth|1
+(noun)|ha'p'orth|worth (generic term)
+halftime|1
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+halftone|2
+(noun)|engraving (generic term)
+(noun)|halftone engraving|photoengraving|engraving (generic term)
+halftone engraving|1
+(noun)|halftone|photoengraving|engraving (generic term)
+halfway|4
+(adj)|center|middle|midway|central (similar term)
+(adj)|intermediate (similar term)
+(adj)|fractional (similar term)
+(adv)|midway
+haliaeetus|1
+(noun)|Haliaeetus|genus Haliaeetus|bird genus (generic term)
+haliaeetus leucocephalus|1
+(noun)|bald eagle|American eagle|Haliaeetus leucocephalus|eagle (generic term)|bird of Jove (generic term)
+haliaeetus leucorhyphus|1
+(noun)|fishing eagle|Haliaeetus leucorhyphus|sea eagle (generic term)
+haliaeetus pelagicus|1
+(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle (generic term)
+haliatus albicilla|1
+(noun)|ern|erne|grey sea eagle|gray sea eagle|European sea eagle|white-tailed sea eagle|Haliatus albicilla|sea eagle (generic term)
+halibut|2
+(noun)|flatfish (generic term)
+(noun)|holibut|flatfish (generic term)
+halibut-liver oil|1
+(noun)|animal oil (generic term)
+halicarnassus|1
+(noun)|Halicarnassus|city (generic term)|metropolis (generic term)|urban center (generic term)
+halicoeres|1
+(noun)|Halicoeres|genus Halicoeres|fish genus (generic term)
+halicoeres bivittatus|1
+(noun)|slippery dick|Halicoeres bivittatus|wrasse (generic term)
+halicoeres radiatus|1
+(noun)|puddingwife|pudding-wife|Halicoeres radiatus|wrasse (generic term)
+halictidae|1
+(noun)|Halictidae|family Halictidae|arthropod family (generic term)
+halide|1
+(noun)|salt (generic term)
+halifax|1
+(noun)|Halifax|provincial capital (generic term)
+halimodendron|1
+(noun)|Halimodendron|genus Halimodendron|rosid dicot genus (generic term)
+halimodendron argenteum|1
+(noun)|salt tree|Halimodendron halodendron|Halimodendron argenteum|shrub (generic term)|bush (generic term)
+halimodendron halodendron|1
+(noun)|salt tree|Halimodendron halodendron|Halimodendron argenteum|shrub (generic term)|bush (generic term)
+haliotidae|1
+(noun)|Haliotidae|family Haliotidae|mollusk family (generic term)
+haliotis|1
+(noun)|Haliotis|genus Haliotis|mollusk genus (generic term)
+haliotis tuberculata|1
+(noun)|ormer|sea-ear|Haliotis tuberculata|abalone (generic term)|ear-shell (generic term)
+halite|1
+(noun)|rock salt|sodium chloride (generic term)|common salt (generic term)|mineral (generic term)
+halitosis|1
+(noun)|halitus (generic term)|exhalation (generic term)
+halitus|1
+(noun)|exhalation|breath (generic term)
+hall|12
+(noun)|hallway|corridor (generic term)
+(noun)|anteroom|antechamber|entrance hall|foyer|lobby|vestibule|room (generic term)
+(noun)|room (generic term)
+(noun)|dormitory|dorm|residence hall|student residence|living quarters (generic term)|quarters (generic term)|building (generic term)|edifice (generic term)
+(noun)|manor hall|room (generic term)
+(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer (generic term)|author (generic term)
+(noun)|Hall|G. Stanley Hall|Granville Stanley Hall|psychologist (generic term)
+(noun)|Hall|Charles Martin Hall|chemist (generic term)
+(noun)|Hall|Charles Francis Hall|explorer (generic term)|adventurer (generic term)
+(noun)|Hall|Asaph Hall|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|mansion|mansion house|manse|residence|house (generic term)
+(noun)|building (generic term)|edifice (generic term)
+hall's honeysuckle|1
+(noun)|Hall's honeysuckle|Lonicera japonica halliana|honeysuckle (generic term)
+hall of fame|1
+(noun)|Hall of Fame|building (generic term)|edifice (generic term)
+hall of residence|1
+(noun)|dormitory (generic term)|dorm (generic term)|residence hall (generic term)|hall (generic term)|student residence (generic term)
+hall pass|1
+(noun)|pass (generic term)|laissez passer (generic term)
+hall porter|1
+(noun)|doorkeeper|doorman|door guard|porter|gatekeeper|ostiary|guard (generic term)
+hallah|1
+(noun)|challah|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+halle|1
+(noun)|Halle|Halle-an-der-Saale|city (generic term)|metropolis (generic term)|urban center (generic term)
+halle-an-der-saale|1
+(noun)|Halle|Halle-an-der-Saale|city (generic term)|metropolis (generic term)|urban center (generic term)
+hallel|1
+(noun)|Hallel|chant (generic term)
+hallelujah|1
+(noun)|praise (generic term)
+halley|1
+(noun)|Halley|Edmond Halley|Edmund Halley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+halliard|1
+(noun)|halyard|rope (generic term)
+hallmark|2
+(noun)|trademark|earmark|stylemark|characteristic (generic term)
+(noun)|authentication|assay-mark|marker (generic term)|marking (generic term)|mark (generic term)
+halloo|3
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|prod (generic term)|incite (generic term)|egg on (generic term)
+(verb)|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+hallow|1
+(verb)|consecrate|bless|sanctify|declare (generic term)|desecrate (antonym)
+hallowe'en|1
+(noun)|Halloween|Hallowe'en|Allhallows Eve|day (generic term)
+hallowed|1
+(adj)|sacred|holy (similar term)
+halloween|1
+(noun)|Halloween|Hallowe'en|Allhallows Eve|day (generic term)
+hallowmas|1
+(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation (generic term)
+hallowmass|1
+(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation (generic term)
+hallstand|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+hallucinate|1
+(verb)|perceive (generic term)|comprehend (generic term)
+hallucinating|1
+(adj)|delirious|ill (similar term)|sick (similar term)
+hallucination|3
+(noun)|delusion (generic term)|psychotic belief (generic term)
+(noun)|delusion|misconception (generic term)
+(noun)|object (generic term)
+hallucinatory|1
+(adj)|unreal (similar term)
+hallucinogen|1
+(noun)|hallucinogenic drug|psychedelic drug|psychodelic drug|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+hallucinogenic|1
+(adj)|psychoactive (similar term)|psychotropic (similar term)
+hallucinogenic drug|1
+(noun)|hallucinogen|psychedelic drug|psychodelic drug|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+hallucinosis|1
+(noun)|psychological state (generic term)|mental state (generic term)
+hallux|1
+(noun)|big toe|great toe|toe (generic term)
+hallway|1
+(noun)|hall|corridor (generic term)
+halm|1
+(noun)|haulm|stalk (generic term)|stem (generic term)
+halma|1
+(noun)|board game (generic term)
+halo|3
+(noun)|aura|aureole|nimbus|glory|gloriole|light (generic term)|lightness (generic term)
+(noun)|ring|annulus|anulus|doughnut|anchor ring|toroid (generic term)
+(noun)|atmospheric phenomenon (generic term)
+halo blight|2
+(noun)|blight (generic term)
+(noun)|halo spot|bean blight|blight (generic term)
+halo spot|1
+(noun)|halo blight|bean blight|blight (generic term)
+haloalkane|1
+(noun)|alkyl halide|organic compound (generic term)
+halobacter|1
+(noun)|halobacteria|halobacterium|halophile (generic term)|halophil (generic term)
+halobacteria|1
+(noun)|halobacterium|halobacter|halophile (generic term)|halophil (generic term)
+halobacterium|1
+(noun)|halobacteria|halobacter|halophile (generic term)|halophil (generic term)
+halocarbon|1
+(noun)|organic compound (generic term)
+halocarpus|1
+(noun)|Halocarpus|genus Halocarpus|gymnosperm genus (generic term)
+halocarpus bidwilli|1
+(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer (generic term)|coniferous tree (generic term)
+haloform|1
+(noun)|alkyl halide (generic term)|haloalkane (generic term)
+halogen|1
+(noun)|group (generic term)|grouping (generic term)
+halogeton|1
+(noun)|Halogeton glomeratus|herb (generic term)|herbaceous plant (generic term)
+halogeton glomeratus|1
+(noun)|halogeton|Halogeton glomeratus|herb (generic term)|herbaceous plant (generic term)
+halogeton souda|1
+(noun)|barilla|Halogeton souda|herb (generic term)|herbaceous plant (generic term)
+halon|1
+(noun)|organic compound (generic term)|pollutant (generic term)
+haloperidol|1
+(noun)|Haldol|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+halophil|1
+(noun)|halophile|archaebacteria (generic term)|archaebacterium (generic term)|archaeobacteria (generic term)|archeobacteria (generic term)
+halophile|1
+(noun)|halophil|archaebacteria (generic term)|archaebacterium (generic term)|archaeobacteria (generic term)|archeobacteria (generic term)
+halophyte|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+haloragaceae|1
+(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family (generic term)|magnoliopsid family (generic term)
+haloragidaceae|1
+(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|water-milfoil family|dicot family (generic term)|magnoliopsid family (generic term)
+halothane|1
+(noun)|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+hals|1
+(noun)|Hals|Frans Hals|old master (generic term)
+halt|8
+(adj)|crippled|halting|lame|gimpy|game|unfit (similar term)
+(noun)|arrest|check|hitch|stay|stop|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|stop|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|freeze|pause (generic term)
+(verb)|hold|arrest|stop (generic term)
+(verb)|stop|start (antonym)
+(verb)|stop|block|kibosh|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|stem|stanch|staunch|check (generic term)
+halter|6
+(noun)|hackamore|headgear (generic term)
+(noun)|hangman's rope|hangman's halter|hemp|hempen necktie|rope (generic term)
+(noun)|top (generic term)
+(noun)|haltere|balancer|wing (generic term)
+(verb)|hang (generic term)|string up (generic term)
+(verb)|hamper|cramp|strangle|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+haltere|1
+(noun)|halter|balancer|wing (generic term)
+halting|2
+(adj)|crippled|halt|lame|gimpy|game|unfit (similar term)
+(adj)|broken (similar term)
+haltingly|1
+(adv)|not fluently
+halve|1
+(verb)|divide (generic term)|fraction (generic term)
+halyard|1
+(noun)|halliard|rope (generic term)
+ham|5
+(noun)|jambon|gammon|cut of pork (generic term)
+(noun)|Ham|man (generic term)|adult male (generic term)
+(noun)|radio operator (generic term)
+(noun)|ham actor|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(verb)|overact|ham it up|overplay|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|underact (antonym)
+ham-fisted|1
+(adj)|bumbling|bungling|butterfingered|ham-handed|handless|heavy-handed|left-handed|maladroit (similar term)
+ham-handed|1
+(adj)|bumbling|bungling|butterfingered|ham-fisted|handless|heavy-handed|left-handed|maladroit (similar term)
+ham actor|1
+(noun)|ham|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+ham and eggs|1
+(noun)|dish (generic term)
+ham hock|1
+(noun)|leg (generic term)
+ham it up|1
+(verb)|overact|ham|overplay|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|underact (antonym)
+ham sandwich|1
+(noun)|sandwich (generic term)
+hamadryad|2
+(noun)|dryad (generic term)|wood nymph (generic term)
+(noun)|king cobra|Ophiophagus hannan|Naja hannah|cobra (generic term)
+hamamelid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+hamamelid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+hamamelidaceae|1
+(noun)|Hamamelidaceae|family Hamamelidaceae|witch-hazel family|hamamelid dicot family (generic term)
+hamamelidae|1
+(noun)|Hamamelidae|subclass Hamamelidae|class (generic term)
+hamamelidanthum|1
+(noun)|Hamamelidanthum|genus Hamamelidanthum|dicot genus (generic term)|magnoliopsid genus (generic term)
+hamamelidoxylon|1
+(noun)|Hamamelidoxylon|genus Hamamelidoxylon|dicot genus (generic term)|magnoliopsid genus (generic term)
+hamamelis|1
+(noun)|Hamamelis|genus Hamamelis|plant genus (generic term)
+hamamelis vernalis|1
+(noun)|vernal witch hazel|Hamamelis vernalis|witch hazel (generic term)|witch hazel plant (generic term)|wych hazel (generic term)|wych hazel plant (generic term)
+hamamelis virginiana|1
+(noun)|Virginian witch hazel|Hamamelis virginiana|witch hazel (generic term)|witch hazel plant (generic term)|wych hazel (generic term)|wych hazel plant (generic term)
+hamamelites|1
+(noun)|Hamamelites|genus Hamamelites|dicot genus (generic term)|magnoliopsid genus (generic term)
+haman|1
+(noun)|Haman|minister (generic term)|government minister (generic term)
+hamartia|1
+(noun)|tragic flaw|flaw (generic term)
+hamartoma|1
+(noun)|growth (generic term)
+hamas|1
+(noun)|Hamas|Islamic Resistance Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+hamate|1
+(noun)|hamate bone|unciform bone|os hamatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+hamate bone|1
+(noun)|hamate|unciform bone|os hamatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+hamburg|1
+(noun)|Hamburg|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+hamburg parsley|1
+(noun)|Hamburg parsley|turnip-rooted parsley|Petroselinum crispum tuberosum|parsley (generic term)|Petroselinum crispum (generic term)
+hamburger|2
+(noun)|beefburger|burger|sandwich (generic term)
+(noun)|ground beef|beef (generic term)|boeuf (generic term)
+hamburger bun|1
+(noun)|hamburger roll|bun (generic term)|roll (generic term)
+hamburger roll|1
+(noun)|hamburger bun|bun (generic term)|roll (generic term)
+hamburger steak|1
+(noun)|chopped steak|chop steak|chopsteak|beef patty|beefsteak (generic term)
+hame|1
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+hamelia|1
+(noun)|shrub (generic term)|bush (generic term)
+hamelia erecta|1
+(noun)|scarlet bush|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia (generic term)
+hamelia patens|1
+(noun)|scarlet bush|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia (generic term)
+hamelin|1
+(noun)|Hameln|Hamelin|town (generic term)
+hameln|1
+(noun)|Hameln|Hamelin|town (generic term)
+hamilton|6
+(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician (generic term)
+(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+(noun)|Hamilton|Alice Hamilton|toxicologist (generic term)
+(noun)|Hamilton|Alexander Hamilton|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Hamilton|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Hamilton|city (generic term)|metropolis (generic term)|urban center (generic term)
+haminoea|1
+(noun)|Haminoea|genus Haminoea|mollusk genus (generic term)
+hamitic|1
+(noun)|Hamitic|Hamitic language|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+hamitic language|1
+(noun)|Hamitic|Hamitic language|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+hamito-semitic|1
+(noun)|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic|natural language (generic term)|tongue (generic term)
+hamlet|3
+(noun)|crossroads|community (generic term)
+(noun)|Hamlet|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|village|settlement (generic term)
+hammarskjold|1
+(noun)|Hammarskjold|Dag Hammarskjold|Dag Hjalmar Agne Carl Hammarskjold|diplomat (generic term)|diplomatist (generic term)
+hammer|9
+(noun)|cock|striker (generic term)
+(noun)|hand tool (generic term)
+(noun)|malleus|auditory ossicle (generic term)
+(noun)|sports equipment (generic term)
+(noun)|striker (generic term)
+(noun)|power hammer|power tool (generic term)
+(noun)|pound|hammering|pounding|blow (generic term)
+(verb)|beat (generic term)
+(verb)|forge|beat (generic term)
+hammer-shaped|1
+(adj)|formed (similar term)
+hammer and sickle|1
+(noun)|emblem (generic term)|allegory (generic term)
+hammer in|1
+(verb)|drill in|ram down|beat in|drill (generic term)
+hammer nose|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|copper nose|rhinopathy (generic term)
+hammer out|1
+(verb)|thrash out|hash out (generic term)|discuss (generic term)|talk over (generic term)
+hammer throw|1
+(noun)|field event (generic term)
+hammerhead|3
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+(noun)|head (generic term)
+(noun)|hammerhead shark|shark (generic term)
+hammerhead shark|1
+(noun)|hammerhead|shark (generic term)
+hammering|1
+(noun)|hammer|pound|pounding|blow (generic term)
+hammerlock|1
+(noun)|lock (generic term)
+hammerstein|1
+(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist (generic term)|lyrist (generic term)
+hammertoe|1
+(noun)|toe (generic term)
+hammett|1
+(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer (generic term)|author (generic term)
+hamming|1
+(noun)|overacting|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+hammock|2
+(noun)|knoll|mound|hillock|hummock|hill (generic term)
+(noun)|sack|bed (generic term)
+hammond organ|1
+(noun)|electric organ|electronic organ|Hammond organ|organ|electronic instrument (generic term)
+hammurabi|1
+(noun)|Hammurabi|Hammurapi|king (generic term)|male monarch (generic term)|Rex (generic term)
+hammurapi|1
+(noun)|Hammurabi|Hammurapi|king (generic term)|male monarch (generic term)|Rex (generic term)
+hammy|1
+(adj)|dramatic (similar term)
+hamper|4
+(noun)|shackle|bond|trammel|restraint (generic term)|constraint (generic term)
+(noun)|basket (generic term)|handbasket (generic term)
+(verb)|halter|cramp|strangle|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|handicap|hinder|disadvantage (generic term)|disfavor (generic term)|disfavour (generic term)
+hampshire|2
+(noun)|Hampshire|county (generic term)
+(noun)|Hampshire|Hampshire down|domestic sheep (generic term)|Ovis aries (generic term)
+hampshire down|1
+(noun)|Hampshire|Hampshire down|domestic sheep (generic term)|Ovis aries (generic term)
+hampton|1
+(noun)|Hampton|Lionel Hampton|jazz musician (generic term)|jazzman (generic term)
+hampton roads|2
+(noun)|Hampton Roads|channel (generic term)
+(noun)|Hampton Roads|naval battle (generic term)
+hamster|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+hamstring|3
+(noun)|hamstring tendon|tendon (generic term)|sinew (generic term)
+(verb)|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|cripple (generic term)|lame (generic term)
+hamstring tendon|1
+(noun)|hamstring|tendon (generic term)|sinew (generic term)
+hamsun|1
+(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer (generic term)|author (generic term)
+han|1
+(noun)|Han|Han dynasty|dynasty (generic term)
+han-gook|1
+(noun)|Korea|Korean Peninsula|Dae-Han-Min-Gook|Han-Gook|peninsula (generic term)
+han dynasty|1
+(noun)|Han|Han dynasty|dynasty (generic term)
+hancock|1
+(noun)|Hancock|John Hancock|American Revolutionary leader (generic term)
+hand|15
+(noun)|manus|mitt|paw|extremity (generic term)
+(noun)|hired hand|hired man|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|handwriting|script|writing (generic term)
+(noun)|ability (generic term)|power (generic term)
+(noun)|deal|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|side (generic term)
+(noun)|pointer (generic term)
+(noun)|handbreadth (generic term)|handsbreadth (generic term)
+(noun)|sailor (generic term)|crewman (generic term)
+(noun)|bridge player|card player (generic term)
+(noun)|applause (generic term)|hand clapping (generic term)|clapping (generic term)
+(noun)|forepaw (generic term)
+(noun)|helping hand|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(verb)|pass|reach|pass on|turn over|give|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+hand-build|1
+(verb)|handbuild|coil|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+hand-crafted|1
+(adj)|handmade|camp-made (similar term)|hand-loomed (similar term)|handwoven (similar term)|handsewn (similar term)|handstitched (similar term)|overhand (similar term)|oversewn (similar term)|machine-made (antonym)
+hand-down|1
+(adj)|hand-me-down|old (similar term)
+hand-dye|1
+(verb)|dye (generic term)
+hand-held|1
+(adj)|handheld
+hand-held computer|1
+(noun)|hand-held microcomputer|portable computer (generic term)
+hand-held microcomputer|1
+(noun)|hand-held computer|portable computer (generic term)
+hand-hewn|1
+(adj)|hewn|cut (similar term)
+hand-loomed|1
+(adj)|handwoven|handmade (similar term)|hand-crafted (similar term)
+hand-me-down|2
+(adj)|hand-down|old (similar term)
+(noun)|garment (generic term)
+hand-operated|1
+(adj)|non-automatic|manual (similar term)
+hand-pick|1
+(verb)|pick (generic term)
+hand-picked|1
+(adj)|selected (similar term)
+hand-schuller-christian disease|1
+(noun)|Hand-Schuller-Christian disease|Schuller-Christian disease|histiocytosis (generic term)
+hand-to-hand|1
+(adj)|close (similar term)
+hand-to-hand struggle|1
+(noun)|wrestle|wrestling|grapple|grappling|struggle (generic term)
+hand-to-mouth|1
+(adj)|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+hand-wash|1
+(verb)|handwash|wash (generic term)|launder (generic term)|machine wash (antonym)
+hand and glove|1
+(adv)|hand in glove|cooperatively
+hand ax|1
+(noun)|hand axe|edge tool (generic term)
+hand axe|1
+(noun)|hand ax|edge tool (generic term)
+hand blower|1
+(noun)|blow dryer|blow drier|hair dryer|hair drier|blower (generic term)|dryer (generic term)|drier (generic term)
+hand brake|1
+(noun)|emergency|emergency brake|parking brake|brake (generic term)
+hand by a hair|1
+(verb)|hang by a thread|depend (generic term)
+hand calculator|1
+(noun)|pocket calculator|calculator (generic term)|calculating machine (generic term)
+hand cheese|1
+(noun)|cheese (generic term)
+hand clapping|1
+(noun)|applause|clapping|approval (generic term)|commendation (generic term)
+hand cream|1
+(noun)|cream (generic term)|ointment (generic term)|emollient (generic term)
+hand down|1
+(verb)|pass on (generic term)
+hand drill|1
+(noun)|handheld drill|drill (generic term)
+hand fern|1
+(noun)|Doryopteris pedata|fern (generic term)
+hand glass|2
+(noun)|hand mirror|mirror (generic term)
+(noun)|simple microscope|magnifying glass|light microscope (generic term)
+hand grenade|1
+(noun)|grenade (generic term)
+hand in glove|1
+(adv)|hand and glove|cooperatively
+hand job|1
+(noun)|jacking off|jerking off|wank|masturbation (generic term)|onanism (generic term)
+hand line|1
+(noun)|handline|fishing line (generic term)
+hand lotion|1
+(noun)|lotion (generic term)
+hand luggage|1
+(noun)|baggage (generic term)|luggage (generic term)
+hand mirror|1
+(noun)|hand glass|mirror (generic term)
+hand mower|1
+(noun)|lawn mower (generic term)|mower (generic term)|power mower (antonym)
+hand organ|1
+(noun)|barrel organ|grind organ|hurdy gurdy|hurdy-gurdy|street organ|musical instrument (generic term)|instrument (generic term)
+hand out|1
+(verb)|distribute|give out|pass out|give (generic term)|gift (generic term)|present (generic term)
+hand over|1
+(verb)|fork over|fork out|fork up|turn in|get in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+hand pump|1
+(noun)|pump (generic term)
+hand puppet|1
+(noun)|glove puppet|glove doll|puppet (generic term)
+hand saw|1
+(noun)|handsaw|carpenter's saw|saw (generic term)
+hand shovel|1
+(noun)|shovel (generic term)|hand tool (generic term)
+hand throttle|1
+(noun)|lever (generic term)
+hand tool|1
+(noun)|tool (generic term)
+hand towel|1
+(noun)|face towel|towel (generic term)
+hand truck|1
+(noun)|truck|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+hand wear|1
+(noun)|handwear|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+handbag|1
+(noun)|bag|pocketbook|purse|container (generic term)
+handball|2
+(noun)|ball (generic term)
+(noun)|court game (generic term)
+handball court|1
+(noun)|court (generic term)
+handbarrow|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+handbasin|1
+(noun)|washbasin|washbowl|lavabo|wash-hand basin|basin (generic term)
+handbasket|1
+(noun)|basket|container (generic term)
+handbell|1
+(noun)|chime (generic term)|bell (generic term)|gong (generic term)
+handbill|1
+(noun)|circular|bill|broadside|broadsheet|flier|flyer|throwaway|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+handbook|1
+(noun)|enchiridion|vade mecum|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+handbow|1
+(noun)|bow (generic term)
+handbreadth|1
+(noun)|handsbreadth|linear unit (generic term)
+handbuild|1
+(verb)|hand-build|coil|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+handcar|1
+(noun)|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+handcart|1
+(noun)|pushcart|cart|go-cart|wheeled vehicle (generic term)
+handclap|1
+(noun)|applause (generic term)|hand clapping (generic term)|clapping (generic term)
+handclasp|1
+(noun)|handshake|shake|handshaking|acknowledgment (generic term)|acknowledgement (generic term)
+handcolor|1
+(verb)|handcolour|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+handcolour|1
+(verb)|handcolor|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+handcraft|2
+(noun)|handicraft|handiwork|handwork|work (generic term)|piece of work (generic term)
+(verb)|craft (generic term)
+handcuff|2
+(noun)|cuff|handlock|manacle|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+(verb)|manacle|cuff|fetter (generic term)|shackle (generic term)
+handed|1
+(adj)|one-handed (similar term)|two-handed (similar term)|bimanual (similar term)|handless (antonym)
+handed-down|1
+(adj)|tralatitious|traditional (similar term)
+handedness|1
+(noun)|laterality|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+handel|2
+(noun)|Handel|George Frideric Handel|George Frederick Handel|Georg Friedrich Handel|composer (generic term)
+(noun)|Handel|music (generic term)
+handelian|1
+(adj)|Handelian|composer (related term)
+handful|2
+(noun)|smattering|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|fistful|containerful (generic term)
+handgrip|1
+(noun)|handle|grip|hold|appendage (generic term)
+handgun|1
+(noun)|pistol|side arm|shooting iron|firearm (generic term)|piece (generic term)|small-arm (generic term)
+handheld|1
+(adj)|hand-held
+handheld drill|1
+(noun)|hand drill|drill (generic term)
+handhold|1
+(noun)|appendage (generic term)
+handicap|6
+(noun)|disability|disablement|impairment|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+(noun)|advantage (generic term)|vantage (generic term)
+(noun)|hindrance|hinderance|deterrent|impediment|balk|baulk|check|difficulty (generic term)
+(verb)|disable|invalid|incapacitate|injure (generic term)|wound (generic term)
+(verb)|bias (generic term)
+(verb)|hinder|hamper|disadvantage (generic term)|disfavor (generic term)|disfavour (generic term)
+handicapped|2
+(adj)|disabled|unfit (similar term)
+(noun)|disabled|people (generic term)
+handicapped person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+handicapper|1
+(noun)|odds-maker|gambler (generic term)
+handicraft|2
+(noun)|handcraft|handiwork|handwork|work (generic term)|piece of work (generic term)
+(noun)|trade (generic term)|craft (generic term)|arts and crafts (generic term)
+handies peak|1
+(noun)|Handies Peak|mountain peak (generic term)
+handily|2
+(adv)|conveniently|inconveniently (antonym)
+(adv)|hands down
+handiness|2
+(noun)|skillfulness (generic term)
+(noun)|accessibility|availability|availableness|convenience (generic term)|unavailability (antonym)|inaccessibility (antonym)
+handing over|1
+(noun)|passage|delivery (generic term)|bringing (generic term)
+handiwork|1
+(noun)|handicraft|handcraft|handwork|work (generic term)|piece of work (generic term)
+handkerchief|1
+(noun)|hankie|hanky|hankey|piece of cloth (generic term)|piece of material (generic term)
+handle|7
+(noun)|grip|handgrip|hold|appendage (generic term)
+(verb)|manage|deal|care|control (generic term)|command (generic term)
+(verb)|treat|do by|interact (generic term)
+(verb)|cover|treat|plow|deal|address|broach (generic term)|initiate (generic term)
+(verb)|palm|touch (generic term)
+(verb)|wield|manipulate (generic term)
+(verb)|manipulate (generic term)|keep in line (generic term)|control (generic term)
+handle-bars|1
+(noun)|mustachio|moustachio|mustache (generic term)|moustache (generic term)
+handle with kid gloves|1
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+handlebar|1
+(noun)|bar (generic term)
+handled|1
+(adj)|handleless (antonym)
+handleless|1
+(adj)|handled (antonym)
+handler|3
+(noun)|animal trainer|trainer (generic term)
+(noun)|agent (generic term)
+(noun)|coach|manager|trainer (generic term)
+handless|2
+(adj)|handed (antonym)
+(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|heavy-handed|left-handed|maladroit (similar term)
+handline|1
+(noun)|hand line|fishing line (generic term)
+handling|3
+(noun)|manual labor (generic term)|manual labour (generic term)
+(noun)|manipulation|touch (generic term)|touching (generic term)
+(noun)|treatment|management (generic term)|direction (generic term)
+handling charge|1
+(noun)|handling cost|cost (generic term)
+handling cost|1
+(noun)|handling charge|cost (generic term)
+handlock|1
+(noun)|handcuff|cuff|manacle|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+handloom|1
+(noun)|loom (generic term)
+handmade|1
+(adj)|hand-crafted|camp-made (similar term)|hand-loomed (similar term)|handwoven (similar term)|handsewn (similar term)|handstitched (similar term)|overhand (similar term)|oversewn (similar term)|machine-made (antonym)
+handmaid|2
+(noun)|handmaiden|servant|subordinateness (generic term)|subsidiarity (generic term)
+(noun)|handmaiden|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+handmaiden|2
+(noun)|handmaid|servant|subordinateness (generic term)|subsidiarity (generic term)
+(noun)|handmaid|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+handoff|1
+(noun)|football play (generic term)
+handout|2
+(noun)|press release|release|announcement (generic term)|promulgation (generic term)
+(noun)|charity (generic term)
+handover|1
+(noun)|relinquishment (generic term)|relinquishing (generic term)
+handrail|1
+(noun)|bannister|banister|balustrade|balusters|barrier (generic term)
+handrest|1
+(noun)|support (generic term)
+hands|2
+(noun)|custody|guardianship (generic term)|keeping (generic term)|safekeeping (generic term)
+(noun)|work force|workforce|manpower|men|force (generic term)|personnel (generic term)
+hands-down|1
+(adj)|easy (similar term)
+hands-off|1
+(adj)|passive (similar term)|inactive (similar term)
+hands-on|1
+(adj)|active (similar term)
+hands down|1
+(adv)|handily
+handsaw|1
+(noun)|hand saw|carpenter's saw|saw (generic term)
+handsaw fish|1
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+handsbreadth|1
+(noun)|handbreadth|linear unit (generic term)
+handset|1
+(noun)|French telephone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+handsewn|1
+(adj)|handstitched|handmade (similar term)|hand-crafted (similar term)
+handshake|1
+(noun)|shake|handshaking|handclasp|acknowledgment (generic term)|acknowledgement (generic term)
+handshaking|1
+(noun)|handshake|shake|handclasp|acknowledgment (generic term)|acknowledgement (generic term)
+handsome|2
+(adj)|fine-looking|good-looking|better-looking|well-favored|well-favoured|beautiful (similar term)
+(adj)|big|bighearted|bounteous|bountiful|freehanded|giving|liberal|openhanded|generous (similar term)
+handsomeness|1
+(noun)|good looks|beauty (generic term)
+handspike|1
+(noun)|bar (generic term)
+handspring|1
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+handstamp|2
+(noun)|rubber stamp|seal (generic term)|stamp (generic term)
+(verb)|rubberstamp|stamp (generic term)
+handstand|1
+(noun)|gymnastic exercise (generic term)
+handstitched|1
+(adj)|handsewn|handmade (similar term)|hand-crafted (similar term)
+handwash|1
+(verb)|hand-wash|wash (generic term)|launder (generic term)|machine wash (antonym)
+handwear|1
+(noun)|hand wear|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+handwheel|2
+(noun)|wheel (generic term)
+(noun)|control (generic term)|controller (generic term)
+handwork|1
+(noun)|handicraft|handcraft|handiwork|work (generic term)|piece of work (generic term)
+handwoven|1
+(adj)|hand-loomed|handmade (similar term)|hand-crafted (similar term)
+handwrite|1
+(verb)|write (generic term)
+handwriting|2
+(noun)|hand|script|writing (generic term)
+(noun)|writing (generic term)|committal to writing (generic term)
+handwriting expert|1
+(noun)|graphologist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+handwritten|1
+(adj)|written (similar term)
+handy|4
+(adj)|convenient|ready to hand|accessible (similar term)
+(adj)|convenient (similar term)
+(adj)|adroit (similar term)
+(noun)|Handy|W. C. Handy|William Christopher Handy|composer (generic term)
+handyman|1
+(noun)|jack of all trades|odd-job man|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+hang|14
+(noun)|bent|knack|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+(noun)|fit (generic term)
+(noun)|gymnastic exercise (generic term)
+(verb)|hang up|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|string up|execute (generic term)|put to death (generic term)
+(verb)|drop (generic term)
+(verb)|fall|flow
+(verb)|be (generic term)
+(verb)|attend|advert|pay heed|give ear|listen (generic term)
+(verb)|cling|grasp (generic term)|hold on (generic term)
+(verb)|obstruct (generic term)|blockade (generic term)|block (generic term)|hinder (generic term)|stymie (generic term)|stymy (generic term)|embarrass (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|decompose (generic term)|rot (generic term)|molder (generic term)|moulder (generic term)
+hang-up|2
+(noun)|preoccupation (generic term)
+(noun)|hitch|rub|snag|obstacle (generic term)|obstruction (generic term)
+hang around|1
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+hang back|1
+(verb)|drag|trail|get behind|drop behind|lag (generic term)|dawdle (generic term)|fall back (generic term)|fall behind (generic term)
+hang by a thread|1
+(verb)|hand by a hair|depend (generic term)
+hang glide|1
+(verb)|soar|fly (generic term)|aviate (generic term)|pilot (generic term)
+hang glider|2
+(noun)|rider (generic term)
+(noun)|glider (generic term)|sailplane (generic term)
+hang gliding|1
+(noun)|glide (generic term)|gliding (generic term)|sailplaning (generic term)|soaring (generic term)|sailing (generic term)
+hang in|1
+(verb)|persevere|persist|hang on|hold on|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+hang on|3
+(verb)|append|tag on|tack on|tack|attach (generic term)
+(verb)|persevere|persist|hang in|hold on|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|hold the line|hold on|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+hang out|1
+(verb)|frequent (generic term)|haunt (generic term)
+hang together|1
+(verb)|interdepend|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+hang up|3
+(verb)|replace (generic term)|put back (generic term)
+(verb)|hang|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|cut short (generic term)|break short (generic term)|break off (generic term)
+hangar|1
+(noun)|airdock|repair shed|structure (generic term)|construction (generic term)
+hangar queen|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+hangbird|1
+(noun)|Baltimore oriole|Baltimore bird|firebird|Icterus galbula galbula|northern oriole (generic term)|Icterus galbula (generic term)
+hangchow|1
+(noun)|Hangzhou|Hangchow|city (generic term)|metropolis (generic term)|urban center (generic term)
+hangdog|2
+(adj)|guilty|shamefaced|shamed|ashamed (similar term)
+(adj)|browbeaten|bullied|cowed|intimidated|afraid (similar term)
+hanger|2
+(noun)|worker (generic term)
+(noun)|support (generic term)
+hanger-on|1
+(noun)|tagalong|follower (generic term)
+hanging|4
+(adj)|pendent|pendant|dependent|hanging down|supported (similar term)
+(noun)|wall hanging|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|execution (generic term)|executing (generic term)|capital punishment (generic term)|death penalty (generic term)
+(noun)|suspension|dangling|support (generic term)|supporting (generic term)
+hanging chad|1
+(noun)|chad (generic term)
+hanging down|1
+(adj)|pendent|pendant|dependent|hanging|supported (similar term)
+hanging fly|1
+(noun)|mecopteran (generic term)
+hanging gardens of babylon|1
+(noun)|Hanging Gardens of Babylon|garden (generic term)
+hanging geranium|1
+(noun)|ivy geranium|ivy-leaved geranium|Pelargonium peltatum|geranium (generic term)
+hanging wall|1
+(noun)|wall (generic term)
+hangman|1
+(noun)|executioner (generic term)|public executioner (generic term)
+hangman's halter|1
+(noun)|hangman's rope|halter|hemp|hempen necktie|rope (generic term)
+hangman's rope|1
+(noun)|hangman's halter|halter|hemp|hempen necktie|rope (generic term)
+hangnail|1
+(noun)|agnail|skin (generic term)|tegument (generic term)|cutis (generic term)
+hangout|1
+(noun)|haunt|resort|repair|stamping ground|area (generic term)|country (generic term)
+hangover|3
+(noun)|katzenjammer|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|holdover|official (generic term)|functionary (generic term)
+(noun)|holdover|survival (generic term)
+hangzhou|1
+(noun)|Hangzhou|Hangchow|city (generic term)|metropolis (generic term)|urban center (generic term)
+hangzhou bay|1
+(noun)|Hangzhou Bay|bay (generic term)|embayment (generic term)
+hani|1
+(noun)|Hani|Akha|Loloish (generic term)
+hank|1
+(noun)|coil (generic term)|spiral (generic term)|volute (generic term)|whorl (generic term)|helix (generic term)
+hank aaron|1
+(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer (generic term)|baseball player (generic term)
+hank panky|1
+(noun)|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+hank williams|1
+(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+hanker|1
+(verb)|long|yearn|desire (generic term)|want (generic term)
+hankering|1
+(noun)|yen|longing (generic term)|yearning (generic term)|hungriness (generic term)
+hankey|1
+(noun)|handkerchief|hankie|hanky|piece of cloth (generic term)|piece of material (generic term)
+hankie|1
+(noun)|handkerchief|hanky|hankey|piece of cloth (generic term)|piece of material (generic term)
+hanks|1
+(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hanky|1
+(noun)|handkerchief|hankie|hankey|piece of cloth (generic term)|piece of material (generic term)
+hanky panky|1
+(noun)|trickery|hocus-pocus|slickness|jiggery-pokery|skulduggery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+hannah arendt|1
+(noun)|Arendt|Hannah Arendt|historian (generic term)|historiographer (generic term)|philosopher (generic term)
+hannibal|2
+(noun)|Hannibal|general (generic term)|full general (generic term)|Carthaginian (generic term)
+(noun)|Hannibal|town (generic term)
+hannover|1
+(noun)|Hannover|Hanover|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+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 (generic term)
+hanoi|1
+(noun)|Hanoi|capital of Vietnam|national capital (generic term)
+hanover|2
+(noun)|Hannover|Hanover|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Hanover|House of Hanover|Hanoverian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+hanoverian|3
+(adj)|Hanoverian|dynasty|royalty|royal family|royal line|royal house (related term)
+(noun)|Hanoverian|ruler (generic term)|swayer (generic term)
+(noun)|Hanoverian|English person (generic term)
+hanoverian line|1
+(noun)|Hanover|House of Hanover|Hanoverian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+hans adolf krebs|1
+(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist (generic term)
+hans albrecht bethe|1
+(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist (generic term)
+hans arp|1
+(noun)|Arp|Jean Arp|Hans Arp|artist (generic term)|creative person (generic term)|poet (generic term)
+hans bethe|1
+(noun)|Bethe|Hans Bethe|Hans Albrecht Bethe|nuclear physicist (generic term)
+hans c. j. gram|1
+(noun)|Gram|Hans C. J. Gram|bacteriologist (generic term)
+hans christian andersen|1
+(noun)|Andersen|Hans Christian Andersen|writer (generic term)|author (generic term)
+hans christian oersted|1
+(noun)|Oersted|Hans Christian Oersted|physicist (generic term)
+hans conrad julius reiter|1
+(noun)|Reiter|Hans Conrad Julius Reiter|bacteriologist (generic term)
+hans eysenck|1
+(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist (generic term)
+hans fischer|1
+(noun)|Fischer|Hans Fischer|chemist (generic term)
+hans geiger|1
+(noun)|Geiger|Hans Geiger|physicist (generic term)
+hans holbein|2
+(noun)|Holbein|Hans Holbein|Holbein the Younger|old master (generic term)|engraver (generic term)
+(noun)|Holbein|Hans Holbein|Holbein the Elder|old master (generic term)
+hans jurgen eysenck|1
+(noun)|Eysenck|Hans Eysenck|H. J. Eysenck|Hans Jurgen Eysenck|psychologist (generic term)
+hans zinsser|1
+(noun)|Zinsser|Hans Zinsser|bacteriologist (generic term)
+hansard|1
+(noun)|Hansard|minutes (generic term)|proceedings (generic term)|transactions (generic term)
+hanseatic league|1
+(noun)|Hanseatic League|confederation (generic term)|confederacy (generic term)|federation (generic term)
+hansen's disease|1
+(noun)|leprosy|Hansen's disease|infectious disease (generic term)
+hansom|1
+(noun)|hansom cab|carriage (generic term)|equipage (generic term)|rig (generic term)
+hansom cab|1
+(noun)|hansom|carriage (generic term)|equipage (generic term)|rig (generic term)
+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 (generic term)
+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 (generic term)
+hanuman|2
+(noun)|Hanuman|Hindu deity (generic term)
+(noun)|entellus|Presbytes entellus|Semnopithecus entellus|langur (generic term)
+hao|1
+(noun)|Vietnamese monetary unit (generic term)
+haoma|1
+(noun)|soma|Sarcostemma acidum|vine (generic term)
+hap|2
+(noun)|accident (generic term)|fortuity (generic term)|chance event (generic term)
+(verb)|happen|go on|pass off|occur|pass|fall out|come about|take place
+hapax legomenon|1
+(noun)|nonce word|word (generic term)
+haphazard|3
+(adj)|hit-or-miss|random (similar term)
+(adj)|slapdash|slipshod|sloppy|careless (similar term)
+(adv)|haphazardly
+haphazardly|2
+(adv)|randomly|indiscriminately|willy-nilly|arbitrarily|at random|every which way
+(adv)|haphazard
+haphazardness|1
+(noun)|randomness|stochasticity|noise|irregularity (generic term)|unregularity (generic term)
+haphtarah|1
+(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+haphtorah|1
+(noun)|Haftorah|Haftarah|Haphtorah|Haphtarah|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+hapless|1
+(adj)|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate (similar term)
+haploid|2
+(adj)|haploidic|monoploid|diploid (antonym)|polyploid (antonym)
+(noun)|organism (generic term)|being (generic term)
+haploidic|1
+(adj)|haploid|monoploid|diploid (antonym)|polyploid (antonym)
+haploidy|1
+(noun)|condition (generic term)
+haplopappus|1
+(noun)|Haplopappus|genus Haplopappus|asterid dicot genus (generic term)
+haplopappus acaulis|1
+(noun)|stemless golden weed|Stenotus acaulis|Haplopappus acaulis|wildflower (generic term)|wild flower (generic term)
+haplopappus phyllocephalus|1
+(noun)|camphor daisy|Haplopappus phyllocephalus|goldenbush (generic term)
+haplopappus spinulosus|1
+(noun)|yellow spiny daisy|Haplopappus spinulosus|goldenbush (generic term)
+haplosporidia|1
+(noun)|Haplosporidia|order Haplosporidia|animal order (generic term)
+haplosporidian|1
+(noun)|sporozoan (generic term)
+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|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|chance (generic term)
+(verb)|materialize|materialise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|dematerialise (antonym)|dematerialize (antonym)
+(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 (generic term)|regain (generic term)
+happening|2
+(adj)|on (similar term)
+(noun)|occurrence|occurrent|natural event|event (generic term)
+happenstance|1
+(noun)|coincidence|accident (generic term)|fortuity (generic term)|chance event (generic term)
+happily|2
+(adv)|merrily|mirthfully|gayly|blithely|jubilantly|with happiness|unhappily (antonym)
+(adv)|sadly (antonym)
+happiness|2
+(noun)|felicity|emotional state (generic term)|spirit (generic term)|unhappiness (antonym)
+(noun)|feeling (generic term)|sadness (antonym)
+happy|4
+(adj)|blessed (similar term)|blissful (similar term)|bright (similar term)|golden (similar term)|halcyon (similar term)|prosperous (similar term)|laughing (similar term)|riant (similar term)|cheerful (related term)|contented (related term)|content (related term)|glad (related term)|elated (related term)|euphoric (related term)|felicitous (related term)|joyful (related term)|joyous (related term)|unhappy (antonym)
+(adj)|felicitous|fortunate (similar term)
+(adj)|glad|willing (similar term)
+(adj)|well-chosen|felicitous (similar term)
+happy-go-lucky|1
+(adj)|carefree|devil-may-care|freewheeling|harum-scarum|slaphappy|irresponsible (similar term)
+happy chance|1
+(noun)|break|good luck|accident (generic term)|fortuity (generic term)|chance event (generic term)
+happy event|1
+(noun)|blessed event|live birth (generic term)
+happy hour|1
+(noun)|hour (generic term)|time of day (generic term)
+hapsburg|1
+(noun)|Habsburg|Hapsburg|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+haptic|1
+(adj)|tactile|tactual|somatosense|exteroception (related term)|perception (related term)
+haptic sensation|1
+(noun)|cutaneous sensation|skin sensation|touch (generic term)|touch sensation (generic term)|tactual sensation (generic term)|tactile sensation (generic term)|feeling (generic term)
+haptically|1
+(adv)|tactually
+hara-kiri|1
+(noun)|harakiri|harikari|suppuku|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harakat ul-jihad-i-islami|1
+(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harakiri|1
+(noun)|hara-kiri|harikari|suppuku|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+harangue|2
+(noun)|rant|ranting|declamation (generic term)
+(verb)|address (generic term)|speak (generic term)
+haranguer|1
+(noun)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+harare|1
+(noun)|Harare|Salisbury|capital of Zimbabwe|national capital (generic term)
+harass|2
+(verb)|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|attack (generic term)|aggress (generic term)
+harassed|1
+(adj)|annoyed|harried|pestered|vexed|troubled (similar term)
+harasser|2
+(noun)|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+(noun)|harrier|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+harassing fire|1
+(noun)|fire (generic term)|firing (generic term)
+harassment|2
+(noun)|torment|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|molestation|mistreatment (generic term)
+harbinger|2
+(noun)|forerunner|herald|precursor|indication (generic term)|indicant (generic term)
+(verb)|announce|annunciate|foretell|herald|tell (generic term)
+harbor|6
+(noun)|seaport|haven|harbour|port (generic term)
+(noun)|harbour|refuge (generic term)|sanctuary (generic term)|asylum (generic term)
+(verb)|harbour|hold|entertain|nurse|feel (generic term)|experience (generic term)
+(verb)|harbour|shelter (generic term)
+(verb)|harbour|keep (generic term)|hold on (generic term)
+(verb)|harbour|shield|hide (generic term)|conceal (generic term)
+harbor patrol|1
+(noun)|patrol (generic term)
+harbor porpoise|1
+(noun)|herring hog|Phocaena phocaena|porpoise (generic term)
+harbor seal|1
+(noun)|common seal|Phoca vitulina|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+harborage|1
+(noun)|harbourage|safety (generic term)|refuge (generic term)
+harbour|6
+(noun)|seaport|haven|harbor|port (generic term)
+(noun)|harbor|refuge (generic term)|sanctuary (generic term)|asylum (generic term)
+(verb)|harbor|shelter (generic term)
+(verb)|harbor|keep (generic term)|hold on (generic term)
+(verb)|harbor|shield|hide (generic term)|conceal (generic term)
+(verb)|harbor|hold|entertain|nurse|feel (generic term)|experience (generic term)
+harbourage|1
+(noun)|harborage|safety (generic term)|refuge (generic term)
+hard|15
+(adj)|difficult|ambitious (similar term)|challenging (similar term)|arduous (similar term)|awkward (similar term)|embarrassing (similar term)|sticky (similar term)|unenviable (similar term)|baffling (similar term)|knotty (similar term)|problematic (similar term)|problematical (similar term)|tough (similar term)|catchy (similar term)|tricky (similar term)|delicate (similar term)|ticklish (similar term)|touchy (similar term)|fractious (similar term)|hard-fought (similar term)|herculean (similar term)|nasty (similar term)|tight (similar term)|rocky (similar term)|rough (similar term)|rugged (similar term)|tough (similar term)|serious (similar term)|tall (similar term)|thorny (similar term)|troublesome (similar term)|trying (similar term)|vexed (similar term)|demanding (related term)|effortful (related term)|hard (related term)|easy (antonym)
+(adj)|calculating (similar term)|calculative (similar term)|conniving (similar term)|scheming (similar term)|shrewd (similar term)|case-hardened (similar term)|hardened (similar term)|hard-boiled (similar term)|steely (similar term)|difficult (related term)|hard (related term)|insensitive (related term)|merciless (related term)|unmerciful (related term)|tough (related term)|soft (antonym)
+(adj)|adamantine (similar term)|al dente (similar term)|corneous (similar term)|hornlike (similar term)|horny (similar term)|tumid (similar term)|erect (similar term)|firm (similar term)|solid (similar term)|granitic (similar term)|granitelike (similar term)|rocklike (similar term)|stony (similar term)|hardened (similar term)|set (similar term)|lignified (similar term)|woody (similar term)|ossified (similar term)|petrified (similar term)|petrous (similar term)|stonelike (similar term)|semihard (similar term)|steely (similar term)|unyielding (similar term)|soft (antonym)
+(adj)|knockout|severe|strong (similar term)
+(adj)|arduous|backbreaking|grueling|gruelling|heavy|laborious|operose|punishing|toilsome|effortful (similar term)
+(adj)|unvoiced|voiceless|surd|whispered (similar term)|voiced (antonym)
+(adj)|concentrated|soft (antonym)
+(adj)|velar (similar term)|soft (antonym)
+(adj)|intemperate|heavy|indulgent (similar term)
+(adj)|strong|alcoholic (similar term)
+(adj)|tough|bad (similar term)
+(adj)|stale (similar term)
+(adv)|firmly
+(adv)|severely
+(adv)|heavily|intemperately|lightly (antonym)
+hard-and-fast|1
+(adj)|strict|invariable (similar term)
+hard-baked|1
+(adj)|cooked (similar term)
+hard-bitten|1
+(adj)|hard-boiled|pugnacious|tough (similar term)
+hard-boiled|3
+(adj)|hard-bitten|pugnacious|tough (similar term)
+(adj)|case-hardened|hardened|hard (similar term)
+(adj)|cooked (similar term)
+hard-boiled egg|1
+(noun)|hard-cooked egg|boiled egg (generic term)|coddled egg (generic term)
+hard-cooked egg|1
+(noun)|hard-boiled egg|boiled egg (generic term)|coddled egg (generic term)
+hard-core|3
+(adj)|hardore|inflexible (similar term)
+(adj)|hardcore|loyal (similar term)
+(adj)|hardcore|explicit (similar term)|expressed (similar term)
+hard-fought|1
+(adj)|difficult (similar term)|hard (similar term)
+hard-hitting|2
+(adj)|trenchant|effective (similar term)|effectual (similar term)|efficacious (similar term)
+(adj)|high-pressure|aggressive (similar term)
+hard-line|1
+(adj)|hardline|uncompromising (similar term)|sturdy (similar term)|inflexible (similar term)
+hard-nosed|1
+(adj)|hardheaded|practical|pragmatic|realistic (similar term)
+hard-of-hearing|1
+(adj)|hearing-impaired|deaf (similar term)
+hard-on|1
+(noun)|erection|sexual arousal (generic term)
+hard-pressed|1
+(adj)|distressed|hard put|in a bad way|troubled (similar term)
+hard-shell clam|2
+(noun)|quahaug|quahog|round clam|clam (generic term)
+(noun)|quahog|quahaug|hard clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+hard-shell crab|1
+(noun)|crab (generic term)
+hard-shelled|1
+(adj)|shelled (similar term)
+hard-skinned puffball|1
+(noun)|earthball|false truffle|puffball|fungus (generic term)
+hard-to-please|1
+(adj)|hard to please|demanding (similar term)
+hard beech|1
+(noun)|Nothofagus truncata|southern beech (generic term)|evergreen beech (generic term)
+hard candy|1
+(noun)|candy (generic term)|confect (generic term)
+hard cash|1
+(noun)|cash|hard currency|currency (generic term)
+hard cheese|1
+(noun)|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+hard cider|1
+(noun)|cider (generic term)|cyder (generic term)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+hard clam|1
+(noun)|quahog|quahaug|hard-shell clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+hard coal|1
+(noun)|anthracite|anthracite coal|coal (generic term)
+hard copy|1
+(noun)|matter (generic term)
+hard core|1
+(noun)|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+hard currency|2
+(noun)|currency (generic term)
+(noun)|cash|hard cash|currency (generic term)
+hard disc|1
+(noun)|hard disk|fixed disk|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+hard disk|1
+(noun)|hard disc|fixed disk|magnetic disk (generic term)|magnetic disc (generic term)|disk (generic term)|disc (generic term)
+hard drink|1
+(noun)|liquor|spirits|booze|hard liquor|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+hard drive|1
+(noun)|disk drive|disc drive|Winchester drive|drive (generic term)
+hard drug|1
+(noun)|narcotic (generic term)|controlled substance (generic term)|soft drug (antonym)
+hard fern|1
+(noun)|fern (generic term)
+hard hat|2
+(noun)|construction worker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|tin hat|safety hat|helmet (generic term)
+hard knocks|1
+(noun)|adversity|hardship|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+hard lead|2
+(noun)|antimonial lead|lead (generic term)|Pb (generic term)|atomic number 82 (generic term)
+(noun)|lead (generic term)|Pb (generic term)|atomic number 82 (generic term)
+hard line|1
+(noun)|position (generic term)|stance (generic term)|posture (generic term)
+hard liquor|1
+(noun)|liquor|spirits|booze|hard drink|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+hard news|1
+(noun)|news (generic term)
+hard palate|1
+(noun)|surface (generic term)
+hard put|1
+(adj)|distressed|hard-pressed|in a bad way|troubled (similar term)
+hard right|1
+(noun)|right (generic term)|right wing (generic term)
+hard roe|1
+(noun)|roe|seafood (generic term)
+hard roll|1
+(noun)|Vienna roll|bun (generic term)|roll (generic term)
+hard rubber|1
+(noun)|vulcanite|ebonite|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+hard rush|1
+(noun)|Juncus inflexus|rush (generic term)
+hard sauce|1
+(noun)|sauce (generic term)
+hard sell|1
+(noun)|advertising (generic term)|publicizing (generic term)
+hard shoulder|1
+(noun)|shoulder (generic term)|berm (generic term)
+hard solder|1
+(noun)|solder (generic term)
+hard steel|1
+(noun)|steel (generic term)
+hard surface|1
+(verb)|pave (generic term)
+hard tick|1
+(noun)|ixodid|tick (generic term)
+hard time|2
+(noun)|rough sledding|difficulty (generic term)
+(noun)|prison term (generic term)|sentence (generic term)|time (generic term)
+hard times|1
+(noun)|time (generic term)
+hard to please|1
+(adj)|hard-to-please|demanding (similar term)
+hard up|1
+(adj)|impecunious|in straitened circumstances|penniless|penurious|pinched|poor (similar term)
+hard water|1
+(noun)|water (generic term)|H2O (generic term)|soft water (antonym)
+hard wheat|1
+(noun)|durum|durum wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat (generic term)
+hard worker|1
+(noun)|slave|striver|worker (generic term)
+hardback|2
+(adj)|hardbacked|hardbound|hardcover|backed (similar term)
+(noun)|hardcover|book (generic term)|volume (generic term)
+hardbacked|1
+(adj)|hardback|hardbound|hardcover|backed (similar term)
+hardbake|1
+(noun)|sweet (generic term)|confection (generic term)
+hardball|2
+(noun)|attitude (generic term)|mental attitude (generic term)
+(noun)|baseball (generic term)|baseball game (generic term)|softball (antonym)
+hardboard|1
+(noun)|chipboard|board (generic term)|plank (generic term)
+hardbound|1
+(adj)|hardbacked|hardback|hardcover|backed (similar term)
+hardcore|2
+(adj)|hard-core|loyal (similar term)
+(adj)|hard-core|explicit (similar term)|expressed (similar term)
+hardcover|2
+(adj)|hardbacked|hardback|hardbound|backed (similar term)
+(noun)|hardback|book (generic term)|volume (generic term)
+harden|4
+(verb)|indurate|change (generic term)|soften (antonym)
+(verb)|temper|modify (generic term)
+(verb)|season|toughen (generic term)
+(verb)|inure|indurate|habituate (generic term)|accustom (generic term)
+hardenbergia|1
+(noun)|Hardenbergia|genus Hardenbergia|rosid dicot genus (generic term)
+hardenbergia comnptoniana|1
+(noun)|Western Australia coral pea|Hardenbergia comnptoniana|vine (generic term)
+hardened|5
+(adj)|case-hardened|hard-boiled|hard (similar term)
+(adj)|tempered|treated|toughened|annealed (similar term)|baked (similar term)|burned (similar term)|burnt (similar term)|curable (similar term)|sunbaked (similar term)|untempered (antonym)
+(adj)|soft (antonym)
+(adj)|enured|inured|tough (similar term)|toughened (similar term)
+(adj)|set|hard (similar term)
+hardening|3
+(noun)|symptom (generic term)
+(noun)|solidifying|solidification|set|curing|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|change of integrity (generic term)
+hardening of the arteries|1
+(noun)|arteriosclerosis|arterial sclerosis|induration of the arteries|coronary-artery disease|sclerosis (generic term)|induration (generic term)
+hardfisted|1
+(adj)|closefisted|tightfisted|stingy (similar term)|ungenerous (similar term)
+hardheaded|2
+(adj)|mulish|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|hard-nosed|practical|pragmatic|realistic (similar term)
+hardheads|1
+(noun)|lesser knapweed|black knapweed|Centaurea nigra|knapweed (generic term)
+hardhearted|2
+(adj)|heartless|flinty (similar term)|granitic (similar term)|obdurate (similar term)|stony (similar term)|softhearted (antonym)
+(adj)|stonyhearted|unfeeling|uncompassionate (similar term)
+hardheartedness|1
+(noun)|heartlessness|coldheartedness|unconcern (generic term)
+hardihood|1
+(noun)|boldness|daring|hardiness|fearlessness (generic term)|timidity (antonym)
+hardiness|2
+(noun)|robustness|lustiness|strength (generic term)
+(noun)|boldness|daring|hardihood|fearlessness (generic term)|timidity (antonym)
+harding|1
+(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+harding grass|1
+(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass (generic term)
+hardinggrass|1
+(noun)|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass (generic term)
+hardline|1
+(adj)|hard-line|uncompromising (similar term)|sturdy (similar term)|inflexible (similar term)
+hardliner|1
+(noun)|conservative (generic term)|conservativist (generic term)
+hardly|2
+(adv)|barely|just|scarcely|scarce
+(adv)|scarcely
+hardly a|1
+(adj)|few (similar term)
+hardness|4
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|softness (antonym)
+(noun)|unfeelingness|callousness|callosity|insensibility|insensitivity (generic term)|insensitiveness (generic term)
+(noun)|ruggedness|difficulty (generic term)|difficultness (generic term)
+(noun)|severity|severeness|harshness|rigor|rigour|rigorousness|rigourousness|inclemency|stiffness|sternness (generic term)|strictness (generic term)
+hardore|1
+(adj)|hard-core|inflexible (similar term)
+hardpan|1
+(noun)|caliche|soil (generic term)|dirt (generic term)
+hardscrabble|2
+(adj)|poor (similar term)
+(adj)|marginal|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+hardship|3
+(noun)|adversity|hard knocks|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+(noun)|asperity|grimness|rigor|rigour|severity|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|misfortune (generic term)|bad luck (generic term)
+hardstem bulrush|1
+(noun)|hardstemmed bulrush|Scirpus acutus|sedge (generic term)
+hardstemmed bulrush|1
+(noun)|hardstem bulrush|Scirpus acutus|sedge (generic term)
+hardtack|2
+(noun)|pilot biscuit|pilot bread|sea biscuit|ship biscuit|biscuit (generic term)
+(noun)|mahogany (generic term)|mahogany tree (generic term)
+hardtop|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+hardware|3
+(noun)|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+(noun)|ironware|instrumentality (generic term)|instrumentation (generic term)
+(noun)|computer hardware|component (generic term)|constituent (generic term)|element (generic term)|software (antonym)
+hardware error|1
+(noun)|error (generic term)|computer error (generic term)
+hardware store|1
+(noun)|ironmongery|shop (generic term)|store (generic term)
+hardwareman|1
+(noun)|ironmonger|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+hardwood|1
+(noun)|wood (generic term)
+hardworking|1
+(adj)|industrious|tireless|untiring|diligent (similar term)
+hardy|5
+(adj)|stalwart|stout|sturdy|robust (similar term)
+(adj)|doughty|manly (similar term)|manful (similar term)|manlike (similar term)
+(adj)|rugged (similar term)
+(noun)|Hardy|Oliver Hardy|comedian (generic term)|comic (generic term)
+(noun)|Hardy|Thomas Hardy|writer (generic term)|author (generic term)
+hare|3
+(noun)|leporid (generic term)|leporid mammal (generic term)
+(noun)|rabbit|game (generic term)
+(verb)|run (generic term)
+hare's-foot bristle fern|1
+(noun)|Trichomanes boschianum|bristle fern (generic term)|filmy fern (generic term)
+hare's-foot fern|1
+(noun)|davallia (generic term)
+hare-like|1
+(adj)|animal (similar term)
+hare and hounds|1
+(noun)|paper chase|game (generic term)
+hare krishna|3
+(noun)|Hare Krishna|Hindu (generic term)|Hindoo (generic term)
+(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Hare Krishna|chant (generic term)
+hare wallaby|1
+(noun)|kangaroo hare|wallaby (generic term)|brush kangaroo (generic term)
+harebell|2
+(noun)|wild hyacinth|wood hyacinth|bluebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+(noun)|bluebell|Campanula rotundifolia|campanula (generic term)|bellflower (generic term)
+harebrained|1
+(adj)|insane|mad|foolish (similar term)
+haredi|1
+(noun)|Haredi|sect (generic term)|religious sect (generic term)|religious order (generic term)
+hareem|1
+(noun)|harem|seraglio|serail|living quarters (generic term)|quarters (generic term)
+harefoot|1
+(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England (generic term)|King of Great Britain (generic term)
+harelip|1
+(noun)|cleft lip|cheiloschisis|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+harem|1
+(noun)|hareem|seraglio|serail|living quarters (generic term)|quarters (generic term)
+hargeisa|1
+(noun)|Hargeisa|city (generic term)|metropolis (generic term)|urban center (generic term)
+hargreaves|1
+(noun)|Hargreaves|James Hargreaves|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+haricot|2
+(noun)|green bean (generic term)
+(noun)|flageolet|common bean (generic term)
+haricot vert|1
+(noun)|haricots verts|French bean|green bean (generic term)
+haricots verts|1
+(noun)|haricot vert|French bean|green bean (generic term)
+harijan|1
+(noun)|untouchable|Harijan|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+harikari|1
+(noun)|harakiri|hara-kiri|suppuku|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+hark|1
+(verb)|harken|hearken|listen (generic term)
+hark back|1
+(verb)|return|come back|recall|denote (generic term)|refer (generic term)
+harkat-ul-jihad-e-islami|1
+(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harkat-ul-mujahidin|1
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harkat ul-ansar|1
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harkat ul-mujahedeen|1
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+harken|1
+(verb)|hark|hearken|listen (generic term)
+harlan f. stone|1
+(noun)|Stone|Harlan Stone|Harlan F. Stone|Harlan Fisk Stone|chief justice (generic term)
+harlan fisk stone|1
+(noun)|Stone|Harlan Stone|Harlan F. Stone|Harlan Fisk Stone|chief justice (generic term)
+harlan fiske stone|1
+(noun)|Stone|Harlan Fiske Stone|jurist (generic term)|legal expert (generic term)
+harlan stone|1
+(noun)|Stone|Harlan Stone|Harlan F. Stone|Harlan Fisk Stone|chief justice (generic term)
+harlean carpenter|1
+(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress (generic term)
+harlem|1
+(noun)|Harlem|city district (generic term)
+harlem renaissance|1
+(noun)|Harlem Renaissance|historic period (generic term)|age (generic term)
+harlem river|1
+(noun)|Harlem River|channel (generic term)
+harlequin|2
+(noun)|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+(verb)|mottle (generic term)|dapple (generic term)|cloud (generic term)
+harlequin-snake|1
+(noun)|coral snake|New World coral snake|elapid (generic term)|elapid snake (generic term)
+harlequin opal|1
+(noun)|opal (generic term)
+harlequinade|1
+(noun)|buffoonery|clowning|japery|frivolity|prank|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+harley granville-barker|1
+(noun)|Granville-Barker|Harley Granville-Barker|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|dramatist (generic term)|playwright (generic term)|critic (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)|theatrical producer (generic term)
+harley street|1
+(noun)|Harley Street|street (generic term)
+harlot|1
+(noun)|prostitute|cocotte|whore|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+harlotry|1
+(noun)|prostitution|whoredom|vice crime (generic term)
+harlow|1
+(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress (generic term)
+harlow shapley|1
+(noun)|Shapley|Harlow Shapley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+harm|4
+(noun)|injury|hurt|trauma|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|damage|impairment|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|damage|hurt|scathe|change of integrity (generic term)
+(verb)|injure (generic term)|wound (generic term)
+harmattan|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+harmed|1
+(adj)|injured (similar term)
+harmful|6
+(adj)|noxious|baneful (similar term)|deadly (similar term)|pernicious (similar term)|pestilent (similar term)|corrupting (similar term)|degrading (similar term)|vesicatory (similar term)|vesicant (similar term)|harmful (related term)|toxic (related term)|unwholesome (related term)|innocuous (antonym)
+(adj)|dangerous (similar term)|unsafe (similar term)
+(adj)|abusive (similar term)|bad (similar term)|bruising (similar term)|deleterious (similar term)|hurtful (similar term)|injurious (similar term)|calumniatory (similar term)|calumnious (similar term)|defamatory (similar term)|denigrative (similar term)|denigrating (similar term)|denigratory (similar term)|libellous (similar term)|libelous (similar term)|slanderous (similar term)|catastrophic (similar term)|ruinous (similar term)|counterproductive (similar term)|damaging (similar term)|detrimental (similar term)|prejudicial (similar term)|prejudicious (similar term)|ill (similar term)|insidious (similar term)|pernicious (similar term)|subtle (similar term)|mischievous (similar term)|nocent (similar term)|stabbing (similar term)|wounding (similar term)|destructive (related term)|disadvantageous (related term)|harmful (related term)|malign (related term)|noxious (related term)|harmful (related term)|offensive (related term)|painful (related term)|toxic (related term)|unwholesome (related term)|harmless (antonym)
+(adj)|disadvantageous|minus (similar term)|negative (similar term)|inexpedient (related term)|harmful (related term)|inopportune (related term)|advantageous (antonym)
+(adj)|adverse|inauspicious|untoward|unfavorable (similar term)|unfavourable (similar term)
+(adj)|evil|injurious|malign (similar term)
+harmfully|1
+(adv)|detrimentally|noxiously|harmlessly (antonym)
+harmfulness|2
+(noun)|injuriousness|destructiveness (generic term)
+(noun)|noisomeness|noxiousness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+harmless|5
+(adj)|innocent (similar term)|innocuous (similar term)|inoffensive (similar term)|unoffending (similar term)|benign (related term)|benignant (related term)|innocuous (related term)|harmless (related term)|nontoxic (related term)|atoxic (related term)|painless (related term)|safe (related term)|harmful (antonym)
+(adj)|innocuous|innoxious (similar term)|inoffensive (similar term)|uncontroversial (similar term)|insipid (similar term)|harmless (related term)|noxious (antonym)
+(adj)|nontoxic (similar term)|atoxic (similar term)
+(adj)|innocuous|safe (similar term)
+(adj)|nonmalignant|benign (similar term)|benignant (similar term)
+harmlessly|1
+(adv)|harmfully (antonym)
+harmonic|7
+(adj)|music (related term)|nonharmonic (antonym)
+(adj)|timbre|timber|quality|tone (related term)
+(adj)|acoustics (related term)
+(adj)|sympathetic|harmonious (similar term)
+(adj)|consonant|harmonical|harmonized|harmonised|in harmony|harmonious (similar term)
+(noun)|tone (generic term)|pure tone (generic term)
+(noun)|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+harmonic analysis|1
+(noun)|Fourier analysis|analysis (generic term)
+harmonic law|1
+(noun)|Kepler's third law|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+harmonic mean|1
+(noun)|mean (generic term)|mean value (generic term)
+harmonic motion|1
+(noun)|periodic motion (generic term)|periodic movement (generic term)
+harmonic progression|1
+(noun)|progression (generic term)|patterned advance (generic term)
+harmonica|1
+(noun)|mouth organ|harp|mouth harp|free-reed instrument (generic term)
+harmonical|1
+(adj)|consonant|harmonic|harmonized|harmonised|in harmony|harmonious (similar term)
+harmonics|1
+(noun)|acoustics (generic term)
+harmonious|4
+(adj)|consonant (similar term)|harmonic (similar term)|harmonical (similar term)|harmonized (similar term)|harmonised (similar term)|in harmony (similar term)|harmonic (similar term)|sympathetic (similar term)|on-key (similar term)|true (similar term)|pure (similar term)|symphonic (similar term)|symphonious (similar term)|compatible (related term)|inharmonious (antonym)
+(adj)|proportionate|symmetrical|balanced (similar term)
+(adj)|appropriate|congruous (similar term)|congruent (similar term)
+(adj)|compatible (similar term)
+harmoniousness|2
+(noun)|consonance|harmony (generic term)
+(noun)|harmony|compatibility (generic term)
+harmonisation|2
+(noun)|harmonization|harmony (generic term)|musical harmony (generic term)
+(noun)|harmonization|singing (generic term)|vocalizing (generic term)
+harmonise|6
+(verb)|harmonize|consort|accord|concord|fit in|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|harmonize|compose (generic term)|write (generic term)
+(verb)|harmonize|sing (generic term)
+(verb)|harmonize|relate (generic term)
+(verb)|harmonize|reconcile|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|harmonize|chord|change (generic term)|alter (generic term)|modify (generic term)
+harmonised|1
+(adj)|consonant|harmonic|harmonical|harmonized|in harmony|harmonious (similar term)
+harmoniser|2
+(noun)|harmonizer|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|harmonizer|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+harmonium|1
+(noun)|organ|reed organ|free-reed instrument (generic term)
+harmonizable|1
+(adj)|reconcilable (similar term)
+harmonization|2
+(noun)|harmonisation|harmony (generic term)|musical harmony (generic term)
+(noun)|harmonisation|singing (generic term)|vocalizing (generic term)
+harmonize|6
+(verb)|harmonise|consort|accord|concord|fit in|agree|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|harmonise|compose (generic term)|write (generic term)
+(verb)|harmonise|sing (generic term)
+(verb)|harmonise|relate (generic term)
+(verb)|harmonise|reconcile|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|harmonise|chord|change (generic term)|alter (generic term)|modify (generic term)
+harmonized|1
+(adj)|consonant|harmonic|harmonical|harmonised|in harmony|harmonious (similar term)
+harmonizer|2
+(noun)|harmoniser|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|harmoniser|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+harmony|5
+(noun)|harmoniousness|compatibility (generic term)
+(noun)|musical harmony|music (generic term)
+(noun)|concord|concordance|order (generic term)
+(noun)|concord|concordance|agreement (generic term)
+(noun)|sound property (generic term)|dissonance (antonym)
+harmsworth|1
+(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher (generic term)|newspaper publisher (generic term)
+harness|6
+(noun)|support (generic term)
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(verb)|tackle|attach (generic term)|unharness (antonym)
+(verb)|exploit (generic term)|tap (generic term)
+(verb)|rein in|draw rein|rein|control (generic term)|command (generic term)
+(verb)|rule|rein|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+harness horse|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+harness race|1
+(noun)|harness racing|horse race (generic term)
+harness racing|1
+(noun)|harness race|horse race (generic term)
+harnessed|1
+(adj)|controlled (similar term)
+harnessed antelope|1
+(noun)|antelope (generic term)
+harold clayton lloyd|1
+(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+harold clayton urey|1
+(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist (generic term)
+harold harefoot|1
+(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England (generic term)|King of Great Britain (generic term)
+harold hart crane|1
+(noun)|Crane|Hart Crane|Harold Hart Crane|poet (generic term)
+harold hirschsprung|1
+(noun)|Hirschsprung|Harold Hirschsprung|baby doctor (generic term)|pediatrician (generic term)|pediatrist (generic term)|paediatrician (generic term)
+harold i|1
+(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England (generic term)|King of Great Britain (generic term)
+harold ii|1
+(noun)|Harold II|King Harold II|King of England (generic term)|King of Great Britain (generic term)
+harold kroto|1
+(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist (generic term)
+harold lloyd|1
+(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+harold nicolson|1
+(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+harold pinter|1
+(noun)|Pinter|Harold Pinter|dramatist (generic term)|playwright (generic term)
+harold urey|1
+(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist (generic term)
+harold w. kroto|1
+(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist (generic term)
+harp|5
+(noun)|chordophone (generic term)
+(noun)|support (generic term)
+(noun)|harmonica|mouth organ|mouth harp|free-reed instrument (generic term)
+(verb)|dwell|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|play (generic term)
+harp-shaped|1
+(adj)|formed (similar term)
+harp seal|1
+(noun)|Pagophilus groenlandicus|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+harper|1
+(noun)|harpist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+harper's ferry|1
+(noun)|Harpers Ferry|Harper's Ferry|town (generic term)
+harpers ferry|1
+(noun)|Harpers Ferry|Harper's Ferry|town (generic term)
+harpia|1
+(noun)|Harpia|genus Harpia|bird genus (generic term)
+harpia harpyja|1
+(noun)|harpy|harpy eagle|Harpia harpyja|eagle (generic term)|bird of Jove (generic term)
+harpist|1
+(noun)|harper|musician (generic term)|instrumentalist (generic term)|player (generic term)
+harpo|1
+(noun)|Marx|Arthur Marx|Harpo|comedian (generic term)|comic (generic term)
+harpoon|2
+(noun)|spear (generic term)|gig (generic term)|fizgig (generic term)|fishgig (generic term)|lance (generic term)
+(verb)|catch (generic term)|grab (generic term)|take hold of (generic term)
+harpoon gun|1
+(noun)|cannon (generic term)
+harpoon line|1
+(noun)|rope (generic term)
+harpoon log|1
+(noun)|log (generic term)
+harpooneer|1
+(noun)|harpooner|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+harpooner|1
+(noun)|harpooneer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+harpsichord|1
+(noun)|cembalo|clavier (generic term)|Klavier (generic term)
+harpsichordist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+harpulla|1
+(noun)|Harpullia cupanioides|harpullia (generic term)
+harpullia|1
+(noun)|tulipwood tree (generic term)
+harpullia cupanioides|1
+(noun)|harpulla|Harpullia cupanioides|harpullia (generic term)
+harpullia pendula|1
+(noun)|Moreton Bay tulipwood|Harpullia pendula|harpullia (generic term)
+harpy|4
+(noun)|vixen|hellcat|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|Harpy|mythical monster (generic term)|mythical creature (generic term)
+(noun)|harpy bat|tube-nosed bat|tube-nosed fruit bat|fruit bat (generic term)|megabat (generic term)
+(noun)|harpy eagle|Harpia harpyja|eagle (generic term)|bird of Jove (generic term)
+harpy bat|1
+(noun)|harpy|tube-nosed bat|tube-nosed fruit bat|fruit bat (generic term)|megabat (generic term)
+harpy eagle|1
+(noun)|harpy|Harpia harpyja|eagle (generic term)|bird of Jove (generic term)
+harquebus|1
+(noun)|arquebus|hackbut|hagbut|muzzle loader (generic term)
+harridan|1
+(noun)|scold (generic term)|scolder (generic term)|nag (generic term)|nagger (generic term)|common scold (generic term)
+harried|1
+(adj)|annoyed|harassed|pestered|vexed|troubled (similar term)
+harrier|3
+(noun)|harasser|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|hound (generic term)|hound dog (generic term)
+(noun)|hawk (generic term)
+harrier eagle|1
+(noun)|short-toed eagle|hawk (generic term)
+harriet beecher stowe|1
+(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer (generic term)|author (generic term)|abolitionist (generic term)|emancipationist (generic term)
+harriet elizabeth beecher stowe|1
+(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer (generic term)|author (generic term)|abolitionist (generic term)|emancipationist (generic term)
+harriet tubman|1
+(noun)|Tubman|Harriet Tubman|abolitionist (generic term)|emancipationist (generic term)
+harriet wilson|1
+(noun)|Wilson|Harriet Wilson|writer (generic term)|author (generic term)
+harriman|2
+(noun)|Harriman|Averell Harriman|William Averell Harriman|financier (generic term)|moneyman (generic term)|diplomat (generic term)|diplomatist (generic term)
+(noun)|Harriman|E. H. Harriman|Edward Henry Harriman|businessman (generic term)|man of affairs (generic term)
+harris|4
+(noun)|Harris|Townsend Harris|diplomat (generic term)|diplomatist (generic term)
+(noun)|Harris|Frank Harris|James Thomas Harris|writer (generic term)|author (generic term)
+(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+(noun)|Harris|Benjamin Harris|publisher (generic term)|newspaper publisher (generic term)
+harris tweed|1
+(noun)|Harris Tweed|tweed (generic term)
+harrisburg|1
+(noun)|Harrisburg|capital of Pennsylvania|state capital (generic term)
+harrisia|1
+(noun)|Harrisia|genus Harrisia|caryophylloid dicot genus (generic term)
+harrison|4
+(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Harrison|George Harrison|rock star (generic term)
+(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+harrod|2
+(noun)|Harrod|Charles Digby Harrod|merchant (generic term)|merchandiser (generic term)
+(noun)|Harrod|Charles Henry Harrod|merchant (generic term)|merchandiser (generic term)
+harrow|2
+(noun)|cultivator (generic term)|tiller (generic term)
+(verb)|disk|plow (generic term)|plough (generic term)|turn (generic term)
+harrowing|1
+(adj)|agonizing|agonising|excruciating|torturing|torturous|torturesome|painful (similar term)
+harry|2
+(verb)|harass|hassle|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|ravage|destroy (generic term)|ruin (generic term)
+harry bridges|1
+(noun)|Bridges|Harry Bridges|labor leader (generic term)
+harry f. klinefelter|1
+(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+harry fitch kleinfelter|1
+(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+harry hotspur|1
+(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier (generic term)
+harry houdini|1
+(noun)|Houdini|Harry Houdini|Erik Weisz|escapologist (generic term)|escape expert (generic term)
+harry lauder|1
+(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|comedian (generic term)|comic (generic term)
+harry lillis crosby|1
+(noun)|Crosby|Bing Crosby|Harry Lillis Crosby|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+harry s truman|1
+(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+harry sinclair lewis|1
+(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer (generic term)|author (generic term)
+harry stack sullivan|1
+(noun)|Sullivan|Harry Stack Sullivan|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+harry truman|1
+(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+harsh|6
+(adj)|rough|unpleasant (similar term)
+(adj)|unpleasant (similar term)
+(adj)|coarse|coarse-grained (similar term)|large-grained (similar term)|farinaceous (similar term)|coarse-grained (similar term)|grainy (similar term)|granular (similar term)|granulose (similar term)|gritty (similar term)|mealy (similar term)|granulated (similar term)|plushy (similar term)|plush-like (similar term)|loose (similar term)|open (similar term)|rough (related term)|unsmooth (related term)|fine (antonym)
+(adj)|rough|unkind (similar term)
+(adj)|heavy (similar term)
+(adj)|abrasive|disagreeable (similar term)
+harsh-voiced|1
+(adj)|loud (similar term)
+harshen|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+harshly|1
+(adv)|gratingly|raspingly
+harshness|4
+(noun)|abrasiveness|scratchiness|roughness (generic term)|raggedness (generic term)
+(noun)|roughness|unpleasantness (generic term)
+(noun)|cruelty|cruelness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+(noun)|severity|severeness|rigor|rigour|rigorousness|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+hart|3
+(noun)|Hart|Moss Hart|dramatist (generic term)|playwright (generic term)
+(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist (generic term)|lyrist (generic term)
+(noun)|stag|red deer (generic term)|Cervus elaphus (generic term)
+hart's-tongue|2
+(noun)|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern (generic term)
+(noun)|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern (generic term)
+hart's-tongue fern|3
+(noun)|hart's-tongue|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern (generic term)
+(noun)|hart's-tongue|Asplenium scolopendrium|Phyllitis scolopendrium|fern (generic term)
+(noun)|Florida strap fern|cow-tongue fern|strap fern (generic term)
+hart crane|1
+(noun)|Crane|Hart Crane|Harold Hart Crane|poet (generic term)
+harte|1
+(noun)|Harte|Bret Harte|writer (generic term)|author (generic term)
+hartebeest|1
+(noun)|antelope (generic term)
+hartford|1
+(noun)|Hartford|capital of Connecticut|state capital (generic term)
+hartford fern|1
+(noun)|creeping fern|Hartford fern|Lygodium palmatum|climbing fern (generic term)
+hartley|1
+(noun)|Hartley|David Hartley|philosopher (generic term)
+harum-scarum|3
+(adj)|carefree|devil-may-care|freewheeling|happy-go-lucky|slaphappy|irresponsible (similar term)
+(noun)|daredevil|madcap|hothead|swashbuckler|lunatic|adventurer (generic term)|venturer (generic term)
+(adv)|pell-mell
+harvard|2
+(noun)|Harvard University|Harvard|university (generic term)
+(noun)|Harvard|John Harvard|philanthropist (generic term)|altruist (generic term)
+harvard university|1
+(noun)|Harvard University|Harvard|university (generic term)
+harvery williams cushing|1
+(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist (generic term)|brain doctor (generic term)
+harvest|6
+(noun)|crop|output (generic term)|yield (generic term)
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|harvesting|harvest home|gather (generic term)|gathering (generic term)
+(noun)|harvest time|season (generic term)|time of year (generic term)
+(verb)|reap|glean|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+harvest-lice|1
+(noun)|Agrimonia eupatoria|agrimonia (generic term)|agrimony (generic term)
+harvest fly|1
+(noun)|dog-day cicada|cicada (generic term)|cicala (generic term)
+harvest home|1
+(noun)|harvest|harvesting|gather (generic term)|gathering (generic term)
+harvest mite|1
+(noun)|chigger|jigger|redbug|trombiculiid (generic term)
+harvest moon|1
+(noun)|full moon (generic term)|full-of-the-moon (generic term)|full phase of the moon (generic term)|full (generic term)
+harvest mouse|2
+(noun)|American harvest mouse|New World mouse (generic term)
+(noun)|Micromyx minutus|mouse (generic term)
+harvest time|1
+(noun)|harvest|season (generic term)|time of year (generic term)
+harvester|2
+(noun)|reaper|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+(noun)|reaper|farm machine (generic term)
+harvestfish|1
+(noun)|Paprilus alepidotus|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+harvesting|1
+(noun)|harvest|harvest home|gather (generic term)|gathering (generic term)
+harvestman|1
+(noun)|daddy longlegs|Phalangium opilio|arachnid (generic term)|arachnoid (generic term)
+harvey|1
+(noun)|Harvey|William Harvey|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|scientist (generic term)|man of science (generic term)
+harvey cushing|1
+(noun)|Cushing|Harvey Cushing|Harvery Williams Cushing|neurologist (generic term)|brain doctor (generic term)
+harvey wallbanger|1
+(noun)|Harvey Wallbanger|cocktail (generic term)
+has-been|1
+(noun)|back-number|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+haschisch|1
+(noun)|hashish|hasheesh|hash|soft drug (generic term)
+hasdrubal|1
+(noun)|Hasdrubal|general (generic term)|full general (generic term)|Carthaginian (generic term)
+hasek|1
+(noun)|Hasek|Jaroslav Hasek|writer (generic term)|author (generic term)
+hash|3
+(noun)|dish (generic term)
+(noun)|hashish|hasheesh|haschisch|soft drug (generic term)
+(verb)|chop (generic term)|chop up (generic term)
+hash head|1
+(noun)|head (generic term)
+hash house|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+hash mark|1
+(noun)|service stripe|hashmark|insignia (generic term)
+hash out|1
+(verb)|discuss|talk over|talk of (generic term)|talk about (generic term)
+hash over|1
+(verb)|retrograde|rehash|recapitulate (generic term)|recap (generic term)
+hasheesh|1
+(noun)|hashish|haschisch|hash|soft drug (generic term)
+hashemite kingdom of jordan|1
+(noun)|Jordan|Hashemite Kingdom of Jordan|Asian country (generic term)|Asian nation (generic term)
+hashimoto's disease|1
+(noun)|Hashimoto's disease|autoimmune disease (generic term)|autoimmune disorder (generic term)
+hashish|1
+(noun)|hasheesh|haschisch|hash|soft drug (generic term)
+hashmark|1
+(noun)|service stripe|hash mark|insignia (generic term)
+hasid|1
+(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew (generic term)
+hasidic|1
+(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism (related term)|Orthodox Judaism|Jewish Orthodoxy (related term)
+hasidim|1
+(noun)|Hasidim|Hassidim|Hasidism|Chasidim|Chassidim|Orthodox Judaism (generic term)|Jewish Orthodoxy (generic term)
+hasidism|2
+(noun)|Hasidim|Hassidim|Hasidism|Chasidim|Chassidim|Orthodox Judaism (generic term)|Jewish Orthodoxy (generic term)
+(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism (generic term)
+haslet|1
+(noun)|variety meat (generic term)|organs (generic term)
+hasp|2
+(noun)|catch (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+hassam|1
+(noun)|Hassam|Childe Hassam|Frederick Childe Hassam|painter (generic term)
+hassel|1
+(noun)|Hassel|Odd Hassel|chemist (generic term)
+hassid|1
+(noun)|Hasid|Hassid|Chasid|Chassid|Orthodox Jew (generic term)
+hassidic|1
+(adj)|Hasidic|Hassidic|Chasidic|Chassidic|Orthodox Judaism (related term)|Orthodox Judaism|Jewish Orthodoxy (related term)
+hassidim|1
+(noun)|Hasidim|Hassidim|Hasidism|Chasidim|Chassidim|Orthodox Judaism (generic term)|Jewish Orthodoxy (generic term)
+hassidism|1
+(noun)|Hasidism|Hassidism|Chasidism|Chassidism|Orthodox Judaism (generic term)
+hassium|1
+(noun)|Hs|element 108|atomic number 108|chemical element (generic term)|element (generic term)
+hassle|3
+(noun)|fuss|trouble|bother|perturbation (generic term)|disturbance (generic term)
+(noun)|scuffle|tussle|dogfight|rough-and-tumble|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|harass|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+hassock|2
+(noun)|ottoman|pouf|pouffe|puff|seat (generic term)
+(noun)|cushion (generic term)
+hastate|1
+(adj)|spearhead-shaped|simple (similar term)|unsubdivided (similar term)
+hastate leaf|1
+(noun)|simple leaf (generic term)
+haste|3
+(noun)|hastiness|hurry|hurriedness|precipitation|speed (generic term)|swiftness (generic term)|fastness (generic term)
+(noun)|hurry|rush|rushing|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|hurry|urgency (generic term)
+hasten|4
+(verb)|rush|hurry|look sharp|festinate|act (generic term)|move (generic term)
+(verb)|rush|hotfoot|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+(verb)|expedite|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|induce|stimulate|rush|effect (generic term)|effectuate (generic term)|set up (generic term)
+hastily|1
+(adv)|hurriedly|in haste|unhurriedly (antonym)
+hastinapura|1
+(noun)|Hastinapura|Sanskrit literature (generic term)
+hastiness|2
+(noun)|haste|hurry|hurriedness|precipitation|speed (generic term)|swiftness (generic term)|fastness (generic term)
+(noun)|impulsiveness (generic term)
+hastings|3
+(noun)|Hastings|Thomas Hastings|architect (generic term)|designer (generic term)
+(noun)|Hastings|town (generic term)
+(noun)|Hastings|battle of Hastings|pitched battle (generic term)
+hasty|2
+(adj)|headlong|hurried (similar term)
+(adj)|overhasty|precipitate|precipitant|precipitous|hurried (similar term)
+hasty defence|1
+(noun)|hasty defense|defense (generic term)|defence (generic term)|defensive measure (generic term)
+hasty defense|1
+(noun)|hasty defence|defense (generic term)|defence (generic term)|defensive measure (generic term)
+hasty pudding|2
+(noun)|porridge (generic term)
+(noun)|mush (generic term)|cornmeal mush (generic term)
+hat|4
+(noun)|chapeau|lid|headdress (generic term)|headgear (generic term)
+(noun)|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+(verb)|wear (generic term)|put on (generic term)|get into (generic term)|don (generic term)|assume (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+hat shop|1
+(noun)|millinery|shop (generic term)|store (generic term)
+hat trick|1
+(noun)|score (generic term)
+hatband|1
+(noun)|band (generic term)|banding (generic term)|stripe (generic term)
+hatbox|1
+(noun)|baggage (generic term)|luggage (generic term)
+hatch|8
+(noun)|hatching|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|hatching|crosshatch|hachure|shading (generic term)
+(noun)|movable barrier (generic term)
+(verb)|be born (generic term)
+(verb)|think up|think of|dream up|concoct|create by mental act (generic term)|create mentally (generic term)
+(verb)|inlay (generic term)
+(verb)|line (generic term)
+(verb)|brood|cover|incubate|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+hatchback|2
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|hatchback door|car door (generic term)
+hatchback door|1
+(noun)|hatchback|car door (generic term)
+hatcheck girl|1
+(noun)|check girl|checker (generic term)|chequer (generic term)
+hatched|2
+(adj)|born (similar term)
+(adj)|crosshatched|shaded (similar term)
+hatchel|2
+(noun)|heckle|comb (generic term)
+(verb)|heckle|hackle|comb (generic term)
+hatchery|1
+(noun)|place (generic term)|property (generic term)
+hatchet|2
+(noun)|tomahawk|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|ax (generic term)|axe (generic term)
+hatchet job|1
+(noun)|defamation|calumny|calumniation|obloquy|traducement|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+hatchet man|2
+(noun)|iceman|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|enforcer|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+hatching|2
+(noun)|hatch|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|hatch|crosshatch|hachure|shading (generic term)
+hatchling|1
+(noun)|young (generic term)|offspring (generic term)
+hatchway|1
+(noun)|opening|scuttle|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+hate|2
+(noun)|hatred|emotion (generic term)|love (antonym)
+(verb)|detest|dislike (generic term)|love (antonym)
+hate mail|1
+(noun)|mail (generic term)|post (generic term)
+hated|1
+(adj)|despised|detested|scorned|unloved (similar term)
+hateful|2
+(adj)|abominable (similar term)|detestable (similar term)|execrable (similar term)|odious (similar term)|unlovable (similar term)|hostile (related term)|offensive (related term)|undesirable (related term)|lovable (antonym)
+(adj)|mean|nasty (similar term)|awful (similar term)
+hatefulness|1
+(noun)|obnoxiousness|objectionableness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+hatemonger|1
+(noun)|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+hater|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+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 (generic term)|large indefinite amount (generic term)
+(noun)|containerful (generic term)
+hatha yoga|1
+(noun)|yoga (generic term)
+hathaway|1
+(noun)|Hathaway|Anne Hathaway|wife (generic term)|married woman (generic term)
+hatiora|1
+(noun)|Hatiora|genus Hatiora|caryophylloid dicot genus (generic term)
+hatiora gaertneri|1
+(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus (generic term)
+hatless|1
+(adj)|hatted (antonym)
+hatmaker|1
+(noun)|hatter|milliner|modiste|maker (generic term)|shaper (generic term)|merchant (generic term)|merchandiser (generic term)
+hatoglobin|1
+(noun)|protein (generic term)
+hatpin|1
+(noun)|pin (generic term)
+hatrack|1
+(noun)|coatrack|coat rack|rack (generic term)
+hatred|1
+(noun)|hate|emotion (generic term)|love (antonym)
+hatted|1
+(adj)|turbaned (similar term)|hatless (antonym)
+hatter|1
+(noun)|hatmaker|milliner|modiste|maker (generic term)|shaper (generic term)|merchant (generic term)|merchandiser (generic term)
+hatteras island|1
+(noun)|Hatteras Island|barrier island (generic term)
+hattiesburg|1
+(noun)|Hattiesburg|town (generic term)
+hauberk|1
+(noun)|byrnie|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+haughtiness|1
+(noun)|arrogance|hauteur|high-handedness|lordliness|pride (generic term)
+haughty|1
+(adj)|disdainful|lordly|prideful|sniffy|supercilious|swaggering|proud (similar term)
+haul|4
+(noun)|draw|haulage|pull (generic term)|pulling (generic term)
+(noun)|catch|indefinite quantity (generic term)
+(verb)|hale|cart|drag|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|transport (generic term)|carry (generic term)
+haul away|1
+(verb)|cart off|cart away|haul off|take away (generic term)|take out (generic term)
+haul off|1
+(verb)|cart off|cart away|haul away|take away (generic term)|take out (generic term)
+haul up|1
+(verb)|draw up|pull up|stop (generic term)|halt (generic term)
+haulage|1
+(noun)|draw|haul|pull (generic term)|pulling (generic term)
+hauler|1
+(noun)|haulier|contractor (generic term)
+haulier|1
+(noun)|hauler|contractor (generic term)
+hauling|1
+(noun)|trucking|truckage|transportation (generic term)|shipping (generic term)|transport (generic term)
+haulm|1
+(noun)|halm|stalk (generic term)|stem (generic term)
+haunch|2
+(noun)|body part (generic term)
+(noun)|hindquarters (generic term)|croup (generic term)|croupe (generic term)|rump (generic term)
+haunt|4
+(noun)|hangout|resort|repair|stamping ground|area (generic term)|country (generic term)
+(verb)|stalk|pursue (generic term)|follow (generic term)
+(verb)|obsess|ghost|preoccupy (generic term)
+(verb)|frequent|travel to (generic term)|visit (generic term)
+haunted|3
+(adj)|obsessed|preoccupied|taken up|concerned (similar term)
+(adj)|troubled (similar term)
+(adj)|inhabited (similar term)
+haunting|2
+(adj)|persistent|unforgettable (similar term)
+(adj)|moving (similar term)
+hausa|2
+(noun)|Hausa|Haussa|Nigerian (generic term)
+(noun)|Hausa|Haussa|West Chadic (generic term)
+hausen|1
+(noun)|beluga|white sturgeon|Acipenser huso|sturgeon (generic term)
+hausmannite|1
+(noun)|mineral (generic term)
+haussa|2
+(noun)|Hausa|Haussa|Nigerian (generic term)
+(noun)|Hausa|Haussa|West Chadic (generic term)
+haustorium|1
+(noun)|plant process (generic term)|enation (generic term)
+hautbois|1
+(noun)|oboe|hautboy|double-reed instrument (generic term)|double reed (generic term)
+hautboy|1
+(noun)|oboe|hautbois|double-reed instrument (generic term)|double reed (generic term)
+haute-normandie|1
+(noun)|Haute-Normandie|Upper-Normandy|French region (generic term)
+haute couture|1
+(noun)|high fashion|high style|fashion (generic term)
+haute cuisine|1
+(noun)|cuisine (generic term)|culinary art (generic term)
+hauteur|1
+(noun)|arrogance|haughtiness|high-handedness|lordliness|pride (generic term)
+havana|1
+(noun)|Havana|capital of Cuba|Cuban capital|national capital (generic term)
+havasupai|2
+(noun)|Havasupai|Hokan (generic term)|Hoka (generic term)
+(noun)|Havasupai|Yuman (generic term)
+have|18
+(noun)|rich person|wealthy person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|have got|hold
+(verb)|feature|lack (antonym)
+(verb)|experience|receive|get|undergo
+(verb)|own|possess
+(verb)|get|let|make (generic term)|get (generic term)
+(verb)|consume|ingest|take in|take|take up (related term)|abstain (antonym)
+(verb)|interact (generic term)
+(verb)|hold|throw|make|give|direct (generic term)
+(verb)|experience|change (generic term)
+(verb)|suffer (generic term)|hurt (generic term)
+(verb)|induce|stimulate|cause|get|make
+(verb)|accept|take|get (generic term)|acquire (generic term)|take over (related term)|take over (related term)|take up (related term)|take in (related term)|refuse (antonym)
+(verb)|receive|get (generic term)|acquire (generic term)
+(verb)|suffer|sustain|get|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|get|make|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|give birth|deliver|bear|birth|produce (generic term)|bring forth (generic term)
+(verb)|take|roll in the hay (generic term)|love (generic term)|make out (generic term)|make love (generic term)|sleep with (generic term)|get laid (generic term)|have sex (generic term)|know (generic term)|do it (generic term)|be intimate (generic term)|have intercourse (generic term)|have it away (generic term)|have it off (generic term)|screw (generic term)|fuck (generic term)|jazz (generic term)|eff (generic term)|hump (generic term)|lie with (generic term)|bed (generic term)|have a go at it (generic term)|bang (generic term)|get it on (generic term)|bonk (generic term)
+have-not|1
+(noun)|poor person|unfortunate (generic term)|unfortunate person (generic term)
+have a ball|1
+(verb)|have a good time|delight (generic term)|enjoy (generic term)|revel (generic term)
+have a bun in the oven|1
+(verb)|bear|carry|gestate|expect|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+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 (generic term)
+have a go|1
+(verb)|give it a try|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+have a good time|1
+(verb)|have a ball|delight (generic term)|enjoy (generic term)|revel (generic term)
+have a look|1
+(verb)|take a look|get a load|look (generic term)
+have down|1
+(verb)|know (generic term)
+have got|1
+(verb)|have|hold
+have in mind|1
+(verb)|think of|mean|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+have it coming|1
+(verb)|deserve (generic term)|merit (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+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 (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+have the best|1
+(verb)|get the best|overcome|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+have words|1
+(verb)|call on the carpet|take to task|rebuke|rag|trounce|reproof|lecture|reprimand|jaw|dress down|call down|scold|chide|berate|bawl out|remonstrate|chew out|chew up|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+have young|1
+(verb)|calve|litter (generic term)
+havel|1
+(noun)|Havel|Vaclav Havel|dramatist (generic term)|playwright (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+havelock|1
+(noun)|cloth covering (generic term)
+haven|2
+(noun)|oasis|shelter (generic term)
+(noun)|seaport|harbor|harbour|port (generic term)
+haverhill fever|1
+(noun)|Haverhill fever|ratbite fever (generic term)
+haversack|1
+(noun)|backpack|back pack|knapsack|packsack|rucksack|bag (generic term)
+haversian canal|1
+(noun)|Haversian canal|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+havoc|1
+(noun)|mayhem|disturbance (generic term)
+haw|3
+(noun)|hawthorn|shrub (generic term)|bush (generic term)
+(noun)|nictitating membrane (generic term)|third eyelid (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+haw-haw|2
+(noun)|hee-haw|horselaugh|ha-ha|laugh (generic term)|laughter (generic term)
+(noun)|sunk fence|ha-ha|ditch (generic term)
+hawai'i|1
+(noun)|Hawaii|Hawai'i|Aloha State|HI|American state (generic term)
+hawaii|2
+(noun)|Hawaii|Hawai'i|Aloha State|HI|American state (generic term)
+(noun)|Hawaii|Hawaii Island|island (generic term)
+hawaii island|1
+(noun)|Hawaii|Hawaii Island|island (generic term)
+hawaii standard time|1
+(noun)|Hawaii Time|Hawaii Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+hawaii time|1
+(noun)|Hawaii Time|Hawaii Standard Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+hawaii volcanoes national park|1
+(noun)|Hawaii Volcanoes National Park|national park (generic term)
+hawaiian|3
+(adj)|Hawaiian|American state (related term)|island (related term)
+(noun)|Hawaiian|Oceanic (generic term)|Eastern Malayo-Polynesian (generic term)
+(noun)|Hawaiian|American (generic term)
+hawaiian capital|1
+(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital (generic term)|port (generic term)
+hawaiian dancing|1
+(noun)|hula|hula-hula|Hawaiian dancing|rain dance (generic term)
+hawaiian guitar|1
+(noun)|Hawaiian guitar|steel guitar|guitar (generic term)
+hawaiian honeycreeper|1
+(noun)|honeycreeper|Hawaiian honeycreeper|finch (generic term)
+hawaiian islands|1
+(noun)|Hawaiian Islands|Sandwich Islands|archipelago (generic term)
+hawala|1
+(noun)|banking industry (generic term)|banking system (generic term)
+hawfinch|1
+(noun)|Coccothraustes coccothraustes|grosbeak (generic term)|grossbeak (generic term)
+hawk|6
+(noun)|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+(noun)|war hawk|militarist (generic term)|warmonger (generic term)|dove (antonym)
+(noun)|mortarboard|board (generic term)
+(verb)|peddle|monger|huckster|vend|pitch|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|clear the throat|cough (generic term)
+hawk's-beard|1
+(noun)|hawk's-beards|wildflower (generic term)|wild flower (generic term)
+hawk's-beards|1
+(noun)|hawk's-beard|wildflower (generic term)|wild flower (generic term)
+hawk-eyed|1
+(adj)|argus-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted (similar term)
+hawk-like|1
+(adj)|hawklike|animal (similar term)
+hawk moth|1
+(noun)|hawkmoth|sphingid|sphinx moth|hummingbird moth|moth (generic term)
+hawk nose|1
+(noun)|nose (generic term)|olfactory organ (generic term)
+hawk owl|1
+(noun)|Surnia ulula|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+hawkbill|1
+(noun)|hawksbill turtle|hawksbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle (generic term)|marine turtle (generic term)
+hawkbit|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+hawker|2
+(noun)|peddler|pedlar|packman|pitchman|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|falconer|hunter (generic term)|huntsman (generic term)
+hawkeye state|1
+(noun)|Iowa|Hawkeye State|IA|American state (generic term)
+hawking|2
+(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist (generic term)
+(noun)|vending|peddling|vendition|selling (generic term)|merchandising (generic term)|marketing (generic term)
+hawkins|2
+(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer (generic term)|privateersman (generic term)
+(noun)|Hawkins|Coleman Hawkins|saxophonist (generic term)|saxist (generic term)
+hawkish|1
+(adj)|militant|warlike|unpeaceful (similar term)
+hawkishness|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)|dovishness (antonym)
+hawklike|1
+(adj)|hawk-like|animal (similar term)
+hawkmoth|1
+(noun)|hawk moth|sphingid|sphinx moth|hummingbird moth|moth (generic term)
+hawksbill|1
+(noun)|hawksbill turtle|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle (generic term)|marine turtle (generic term)
+hawksbill turtle|1
+(noun)|hawksbill|hawkbill|tortoiseshell turtle|Eretmochelys imbricata|sea turtle (generic term)|marine turtle (generic term)
+hawkshaw|1
+(noun)|dick|gumshoe|detective (generic term)|investigator (generic term)|tec (generic term)|police detective (generic term)
+hawkweed|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+hawkyns|1
+(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer (generic term)|privateersman (generic term)
+haworth|1
+(noun)|Haworth|Sir Walter Norman Haworth|biochemist (generic term)
+hawse|1
+(noun)|hawsehole|hawsepipe|hole (generic term)
+hawsehole|1
+(noun)|hawse|hawsepipe|hole (generic term)
+hawsepipe|1
+(noun)|hawse|hawsehole|hole (generic term)
+hawser|1
+(noun)|rope (generic term)
+hawser bend|1
+(noun)|knot (generic term)
+hawthorn|1
+(noun)|haw|shrub (generic term)|bush (generic term)
+hawthorne|1
+(noun)|Hawthorne|Nathaniel Hawthorne|writer (generic term)|author (generic term)
+hay|2
+(noun)|fodder (generic term)
+(verb)|convert (generic term)
+hay-scented|1
+(noun)|hay-scented fern|scented fern|boulder fern|Dennstaedtia punctilobula|fern (generic term)
+hay-scented fern|1
+(noun)|hay-scented|scented fern|boulder fern|Dennstaedtia punctilobula|fern (generic term)
+hay bacillus|1
+(noun)|Bacillus subtilis|Bacillus globigii|grass bacillus|bacillus (generic term)|B (generic term)
+hay bale|1
+(noun)|bale (generic term)
+hay conditioner|1
+(noun)|haymaker|farm machine (generic term)
+hay fever|1
+(noun)|pollinosis|allergic rhinitis (generic term)
+hayastan|1
+(noun)|Armenia|Republic of Armenia|Hayastan|Asian country (generic term)|Asian nation (generic term)
+haycock|1
+(noun)|haystack (generic term)|hayrick (generic term)|rick (generic term)
+haydn|2
+(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer (generic term)
+(noun)|Haydn|music (generic term)
+hayek|1
+(noun)|Hayek|Friedrich August von Hayek|economist (generic term)|economic expert (generic term)
+hayes|2
+(noun)|Hayes|Helen Hayes|actress (generic term)
+(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+hayfield|1
+(noun)|meadow|grassland (generic term)
+hayfork|1
+(noun)|fork (generic term)
+haying|2
+(noun)|harvest (generic term)|harvesting (generic term)|harvest home (generic term)
+(noun)|haying time|season (generic term)|time of year (generic term)
+haying time|1
+(noun)|haying|season (generic term)|time of year (generic term)
+hayloft|1
+(noun)|haymow|mow|loft (generic term)|attic (generic term)|garret (generic term)
+haym salomon|1
+(noun)|Salomon|Haym Salomon|American Revolutionary leader (generic term)|financier (generic term)|moneyman (generic term)
+haymaker|2
+(noun)|hay conditioner|farm machine (generic term)
+(noun)|knockout punch|KO punch|Sunday punch|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+haymaking|2
+(noun)|accomplishment (generic term)|achievement (generic term)
+(noun)|labor (generic term)|labour (generic term)|toil (generic term)
+haymow|2
+(noun)|batch (generic term)|deal (generic term)|flock (generic term)|good deal (generic term)|great deal (generic term)|hatful (generic term)|heap (generic term)|lot (generic term)|mass (generic term)|mess (generic term)|mickle (generic term)|mint (generic term)|muckle (generic term)|peck (generic term)|pile (generic term)|plenty (generic term)|pot (generic term)|quite a little (generic term)|raft (generic term)|sight (generic term)|slew (generic term)|spate (generic term)|stack (generic term)|tidy sum (generic term)|wad (generic term)|whole lot (generic term)|whole slew (generic term)
+(noun)|hayloft|mow|loft (generic term)|attic (generic term)|garret (generic term)
+hayrack|2
+(noun)|rack (generic term)
+(noun)|hayrig|framework (generic term)|frame (generic term)|framing (generic term)
+hayrick|1
+(noun)|haystack|rick|stack (generic term)
+hayrig|1
+(noun)|hayrack|framework (generic term)|frame (generic term)|framing (generic term)
+hays|3
+(noun)|Hays|Will Hays|William Harrison Hays|lawyer (generic term)|attorney (generic term)
+(noun)|Hays|Arthur Garfield Hays|lawyer (generic term)|attorney (generic term)
+(noun)|Hays|town (generic term)
+hayseed|1
+(noun)|yokel|rube|hick|yahoo|bumpkin|chawbacon|rustic (generic term)
+haystack|1
+(noun)|hayrick|rick|stack (generic term)
+hayti|1
+(noun)|Hispaniola|Haiti|Hayti|island (generic term)
+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 (similar term)
+(adj)|amiss|awry|wrong|malfunctioning (similar term)|nonfunctional (similar term)
+(noun)|wire (generic term)
+haywood|1
+(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader (generic term)|socialist (generic term)
+hazan|1
+(noun)|cantor|spiritual leader (generic term)
+hazard|6
+(noun)|jeopardy|peril|risk|endangerment|danger (generic term)
+(noun)|luck|fortune|chance|phenomenon (generic term)
+(noun)|obstacle (generic term)
+(verb)|guess|venture|pretend|speculate (generic term)
+(verb)|venture|adventure|stake|jeopardize|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+(verb)|gamble|chance|risk|take chances|adventure|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+hazard insurance|1
+(noun)|insurance (generic term)
+hazardia|1
+(noun)|Hazardia|genus Hazardia|asterid dicot genus (generic term)
+hazardia cana|1
+(noun)|hoary golden bush|Hazardia cana|shrub (generic term)|bush (generic term)
+hazardous|1
+(adj)|risky|wild|dangerous (similar term)|unsafe (similar term)
+hazardously|1
+(adv)|perilously|dangerously
+hazardousness|1
+(noun)|perilousness|danger (generic term)
+haze|4
+(noun)|aerosol (generic term)
+(noun)|daze|fog|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(verb)|overcast (generic term)|cloud (generic term)
+(verb)|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+haze over|1
+(verb)|obscure|befog|becloud|obnubilate|fog|cloud|mist|hide (generic term)|conceal (generic term)
+hazel|4
+(adj)|chromatic (similar term)
+(noun)|hazel tree|Pomaderris apetala|tree (generic term)
+(noun)|wood (generic term)
+(noun)|hazelnut|hazelnut tree|nut tree (generic term)
+hazel-brown|1
+(adj)|chromatic (similar term)
+hazel alder|1
+(noun)|smooth alder|Alnus serrulata|alder (generic term)|alder tree (generic term)
+hazel mouse|1
+(noun)|Muscardinus avellanarius|dormouse (generic term)
+hazel tree|1
+(noun)|hazel|Pomaderris apetala|tree (generic term)
+hazelnut|2
+(noun)|hazel|hazelnut tree|nut tree (generic term)
+(noun)|filbert|cobnut|cob|edible nut (generic term)
+hazelnut tree|1
+(noun)|hazelnut|hazel|nut tree (generic term)
+hazelwood|1
+(noun)|sweet gum|satin walnut|red gum|gumwood (generic term)|gum (generic term)
+haziness|2
+(noun)|vagueness (generic term)
+(noun)|mistiness|steaminess|vaporousness|vapourousness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+hazlitt|1
+(noun)|Hazlitt|William Hazlitt|literary critic (generic term)
+hazmat|1
+(noun)|HAZMAT|material (generic term)|stuff (generic term)
+hazy|2
+(adj)|brumous|foggy|misty|cloudy (similar term)
+(adj)|bleary|blurred|blurry|foggy|fuzzy|muzzy|indistinct (similar term)
+hb|1
+(noun)|hemoglobin|haemoglobin|Hb|hemoprotein (generic term)|haemoprotein (generic term)
+hcfc|1
+(noun)|hydrochlorofluorocarbon|HCFC|chlorofluorocarbon (generic term)|CFC (generic term)
+hcg|1
+(noun)|human chorionic gonadotropin|human chorionic gonadotrophin|HCG|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+hdl|1
+(noun)|high-density lipoprotein|HDL|alpha-lipoprotein|lipoprotein (generic term)
+hdl cholesterol|1
+(noun)|HDL cholesterol|cholesterol (generic term)|cholesterin (generic term)
+hdtv|1
+(noun)|high-definition television|HDTV|television (generic term)|telecasting (generic term)|TV (generic term)|video (generic term)
+he|2
+(noun)|helium|He|atomic number 2|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+he-goat|1
+(noun)|billy|billy goat|goat (generic term)|caprine animal (generic term)
+he-huckleberry|1
+(noun)|maleberry|male berry|privet andromeda|Lyonia ligustrina|shrub (generic term)|bush (generic term)
+he-man|1
+(noun)|stud|macho-man|man (generic term)|adult male (generic term)
+head|41
+(noun)|caput|external body part (generic term)
+(noun)|domestic animal (generic term)
+(noun)|mind|brain|psyche|nous|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|chief|top dog|leader (generic term)
+(noun)|formation (generic term)|rear (antonym)
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+(noun)|top (generic term)|foot (antonym)
+(noun)|fountainhead|headspring|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|head word|word (generic term)
+(noun)|point (generic term)|tip (generic term)|peak (generic term)
+(noun)|linear unit (generic term)
+(noun)|capitulum|plant organ (generic term)
+(noun)|principal|school principal|head teacher|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|individual (generic term)
+(noun)|drug user (generic term)|substance abuser (generic term)|user (generic term)
+(noun)|promontory|headland|foreland|natural elevation (generic term)|elevation (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|foam (generic term)|froth (generic term)
+(noun)|forefront|front (generic term)|front end (generic term)|forepart (generic term)
+(noun)|pass|straits|juncture (generic term)|occasion (generic term)
+(noun)|headway|progress (generic term)|progression (generic term)|advance (generic term)
+(noun)|point|mark (generic term)
+(noun)|question|subject (generic term)|topic (generic term)|theme (generic term)
+(noun)|heading|header|line (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|read/write head|coil (generic term)
+(noun)|obverse (generic term)|tail (antonym)
+(noun)|striker (generic term)
+(noun)|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+(noun)|projection (generic term)
+(noun)|drumhead|membrane (generic term)
+(noun)|oral sex|perversion (generic term)|sexual perversion (generic term)
+(verb)|proceed (generic term)|go forward (generic term)|continue (generic term)
+(verb)|lead|direct (generic term)
+(verb)|lead|precede (generic term)|lead (generic term)
+(verb)|head up|be (generic term)
+(verb)|steer|maneuver|manoeuver|manoeuvre|direct|point|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+(verb)|lie (generic term)
+(verb)|form (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+head-in-the-clouds|1
+(adj)|flighty|flyaway|scatterbrained|frivolous (similar term)
+head-on|2
+(adj)|hostile (similar term)
+(adj)|frontal|front (similar term)
+head-shrinker|2
+(noun)|psychiatrist|shrink|specialist (generic term)|medical specialist (generic term)
+(noun)|headhunter|savage (generic term)|barbarian (generic term)
+head-to-head|3
+(adj)|tete-a-tete|private (similar term)
+(adj)|neck and neck|nip and tuck|inconclusive (similar term)
+(adv)|neck and neck|nip and tuck
+head ache|1
+(noun)|headache|cephalalgia|ache (generic term)|aching (generic term)
+head blight|1
+(noun)|blight (generic term)
+head cabbage|2
+(noun)|head cabbage plant|Brassica oleracea capitata|cabbage (generic term)|cultivated cabbage (generic term)|Brassica oleracea (generic term)
+(noun)|cabbage (generic term)|chou (generic term)
+head cabbage plant|1
+(noun)|head cabbage|Brassica oleracea capitata|cabbage (generic term)|cultivated cabbage (generic term)|Brassica oleracea (generic term)
+head cold|1
+(noun)|cold (generic term)|common cold (generic term)
+head count|1
+(noun)|headcount|count (generic term)
+head covering|1
+(noun)|veil|garment (generic term)
+head crash|1
+(noun)|crash (generic term)
+head for the hills|1
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|bunk|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+head game|1
+(noun)|delusion|illusion|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+head gasket|1
+(noun)|gasket (generic term)
+head gate|2
+(noun)|sluicegate|sluice valve|floodgate|penstock|water gate|regulator (generic term)
+(noun)|gate (generic term)
+head home|1
+(verb)|go home|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+head honcho|1
+(noun)|big shot|big gun|big wheel|big cheese|big deal|big enchilada|big fish|important person (generic term)|influential person (generic term)|personage (generic term)
+head lettuce|1
+(noun)|Lactuca sativa capitata|lettuce (generic term)
+head lice|1
+(noun)|pediculosis capitis|pediculosis (generic term)|lousiness (generic term)
+head linesman|1
+(noun)|football official (generic term)
+head louse|1
+(noun)|Pediculus capitis|louse (generic term)|sucking louse (generic term)
+head nurse|1
+(noun)|matron|nurse (generic term)|woman (generic term)|adult female (generic term)
+head of hair|1
+(noun)|mane|hair (generic term)
+head of household|1
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+head of state|1
+(noun)|chief of state|representative (generic term)
+head off|1
+(verb)|debar|obviate|deflect|avert|stave off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+head over heels|1
+(adv)|heels over head|topsy-turvy|topsy-turvily|in great confusion
+head register|1
+(noun)|head voice|head tone|register (generic term)
+head restraint|1
+(noun)|headrest|cushion (generic term)
+head rhyme|1
+(noun)|alliteration|initial rhyme|beginning rhyme|rhyme (generic term)|rime (generic term)
+head sea|1
+(noun)|sea (generic term)
+head shop|1
+(noun)|shop (generic term)|store (generic term)
+head smut|1
+(noun)|Sphacelotheca reiliana|smut (generic term)|smut fungus (generic term)
+head start|1
+(noun)|start|advantage (generic term)|vantage (generic term)
+head teacher|1
+(noun)|principal|school principal|head|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+head tone|1
+(noun)|head register|head voice|register (generic term)
+head trip|2
+(noun)|trip|experience (generic term)
+(noun)|self-gratification|gratification (generic term)
+head up|1
+(verb)|head|be (generic term)
+head voice|1
+(noun)|head register|head tone|register (generic term)
+head word|2
+(noun)|headword|content word (generic term)|open-class word (generic term)
+(noun)|head|word (generic term)
+headache|2
+(noun)|concern|worry|vexation|negative stimulus (generic term)
+(noun)|head ache|cephalalgia|ache (generic term)|aching (generic term)
+headache powder|1
+(noun)|aspirin powder|aspirin (generic term)|acetylsalicylic acid (generic term)|Bayer (generic term)|Empirin (generic term)|St. Joseph (generic term)|powder (generic term)
+headband|1
+(noun)|band (generic term)
+headboard|1
+(noun)|panel (generic term)
+headcheese|1
+(noun)|sausage (generic term)
+headcount|1
+(noun)|head count|count (generic term)
+headcounter|1
+(noun)|pollster|poll taker|canvasser|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+headdress|1
+(noun)|headgear|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+headed|4
+(adj)|oriented (similar term)|orientated (similar term)
+(adj)|unheaded (antonym)
+(adj)|bicephalous (similar term)|burr-headed (similar term)|headlike (similar term)|large-headed (similar term)|headless (antonym)
+(adj)|mature (similar term)
+header|7
+(noun)|heading|head|line (generic term)
+(noun)|lintel|beam (generic term)
+(noun)|coping|cope|brick (generic term)
+(noun)|beam (generic term)
+(noun)|harvester (generic term)|reaper (generic term)
+(noun)|hit (generic term)|hitting (generic term)|striking (generic term)
+(noun)|jump (generic term)|jumping (generic term)
+headfast|1
+(noun)|mooring (generic term)|mooring line (generic term)
+headfirst|2
+(adj)|headlong|forward (similar term)
+(adv)|headlong
+headfish|1
+(noun)|ocean sunfish|sunfish|mola|plectognath (generic term)|plectognath fish (generic term)
+headful|2
+(noun)|containerful (generic term)
+(noun)|body covering (generic term)
+headgear|3
+(noun)|headdress|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(noun)|hoist (generic term)
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+headhunter|2
+(noun)|recruiter (generic term)
+(noun)|head-shrinker|savage (generic term)|barbarian (generic term)
+heading|3
+(noun)|header|head|line (generic term)
+(noun)|bearing|aim|direction (generic term)|way (generic term)
+(noun)|drift|gallery|passageway (generic term)
+headlamp|1
+(noun)|headlight|light (generic term)|light source (generic term)
+headland|1
+(noun)|promontory|head|foreland|natural elevation (generic term)|elevation (generic term)
+headless|2
+(adj)|acephalous (similar term)|beheaded (similar term)|decapitated (similar term)|headed (antonym)
+(adj)|brainless|unintelligent (similar term)|stupid (similar term)
+headlight|1
+(noun)|headlamp|light (generic term)|light source (generic term)
+headlike|1
+(adj)|headed (similar term)
+headline|3
+(noun)|newspaper headline|heading (generic term)|header (generic term)|head (generic term)
+(verb)|advertise (generic term)|publicize (generic term)|advertize (generic term)|publicise (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+headliner|1
+(noun)|star|performer (generic term)|performing artist (generic term)
+headlinese|1
+(noun)|expressive style (generic term)|style (generic term)
+headlock|1
+(noun)|lock (generic term)
+headlong|5
+(adj)|hasty|hurried (similar term)
+(adj)|headfirst|forward (similar term)
+(adv)|headfirst
+(adv)|precipitately
+(adv)|rashly
+headman|2
+(noun)|headsman|executioner (generic term)|public executioner (generic term)
+(noun)|tribal chief|chieftain|leader (generic term)
+headmaster|1
+(noun)|schoolmaster|master|principal (generic term)|school principal (generic term)|head teacher (generic term)|head (generic term)
+headmastership|1
+(noun)|headship (generic term)
+headmistress|1
+(noun)|principal (generic term)|school principal (generic term)|head teacher (generic term)|head (generic term)
+headmistressship|1
+(noun)|headship (generic term)
+headphone|1
+(noun)|earphone|earpiece|phone|electro-acoustic transducer (generic term)
+headpiece|2
+(noun)|headstall|band (generic term)
+(noun)|helmet (generic term)
+headpin|1
+(noun)|kingpin|bowling pin (generic term)|pin (generic term)
+headquarters|3
+(noun)|central office|main office|home office|home base|office (generic term)|business office (generic term)
+(noun)|HQ|military headquarters|military installation (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+headquarters staff|1
+(noun)|staff (generic term)
+headrace|1
+(noun)|watercourse (generic term)|waterway (generic term)
+headrest|2
+(noun)|head restraint|cushion (generic term)
+(noun)|rest (generic term)
+headroom|2
+(noun)|headway|clearance|room (generic term)|way (generic term)|elbow room (generic term)
+(noun)|dynamic headroom|high fidelity (generic term)|hi-fi (generic term)
+heads-up|2
+(adj)|wide-awake|alert (similar term)
+(noun)|warning (generic term)
+headsail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+headscarf|1
+(noun)|kerchief (generic term)
+headset|1
+(noun)|telephone receiver (generic term)|receiver (generic term)
+headshake|1
+(noun)|headshaking|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+headshaking|1
+(noun)|headshake|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+headship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+headshot|3
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|shot (generic term)
+(noun)|shooting (generic term)|shot (generic term)
+headsman|1
+(noun)|headman|executioner (generic term)|public executioner (generic term)
+headspace|1
+(noun)|indefinite quantity (generic term)
+headspring|1
+(noun)|fountainhead|head|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+headstall|1
+(noun)|headpiece|band (generic term)
+headstand|1
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+headstock|1
+(noun)|support (generic term)
+headstone|2
+(noun)|keystone|key|building block (generic term)
+(noun)|gravestone|tombstone|stone (generic term)|memorial (generic term)|monument (generic term)
+headstream|1
+(noun)|stream (generic term)|watercourse (generic term)
+headstrong|1
+(adj)|froward|self-willed|willful|wilful|disobedient (similar term)
+headwaiter|1
+(noun)|captain|maitre d'hotel|maitre d'|dining-room attendant (generic term)|restaurant attendant (generic term)
+headwaters|1
+(noun)|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+headway|2
+(noun)|headroom|clearance|room (generic term)|way (generic term)|elbow room (generic term)
+(noun)|head|progress (generic term)|progression (generic term)|advance (generic term)
+headwind|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+headword|2
+(noun)|head word|content word (generic term)|open-class word (generic term)
+(noun)|word (generic term)
+heady|3
+(adj)|judicious|wise|prudent (similar term)
+(adj)|intoxicating|exciting (similar term)
+(adj)|foolhardy|rash|reckless|bold (similar term)
+heal|3
+(verb)|mend|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|bring around|cure|help (generic term)|aid (generic term)
+heal all|2
+(noun)|self-heal|Prunella vulgaris|herb (generic term)|herbaceous plant (generic term)
+(noun)|yellow clintonia|Clintonia borealis|clintonia (generic term)|Clinton's lily (generic term)
+healed|1
+(adj)|cured|recovered|well (similar term)
+healer|1
+(noun)|therapist|expert (generic term)
+healing|2
+(adj)|curative|alterative|remedial|sanative|therapeutic|healthful (similar term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+healing herb|1
+(noun)|comfrey|herb (generic term)
+health|2
+(noun)|wellness|wellbeing (generic term)|well-being (generic term)|welfare (generic term)|upbeat (generic term)|eudaemonia (generic term)|eudaimonia (generic term)|illness (antonym)|unwellness (antonym)
+(noun)|condition (generic term)|status (generic term)
+health and human services|1
+(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department (generic term)
+health care|2
+(noun)|social insurance (generic term)
+(noun)|healthcare|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+health care delivery|1
+(noun)|healthcare delivery|care delivery|provision (generic term)|supply (generic term)|supplying (generic term)
+health care provider|1
+(noun)|health professional|caregiver|professional (generic term)|professional person (generic term)
+health check|1
+(noun)|checkup|medical checkup|medical examination|medical exam|medical|examination (generic term)|scrutiny (generic term)
+health club|1
+(noun)|health spa|spa|place of business (generic term)|business establishment (generic term)
+health code|1
+(noun)|sanitary code|code (generic term)|codification (generic term)
+health facility|1
+(noun)|medical building|healthcare facility|building (generic term)|edifice (generic term)
+health food|1
+(noun)|food (generic term)|solid food (generic term)
+health hazard|1
+(noun)|hazard (generic term)|jeopardy (generic term)|peril (generic term)|risk (generic term)|endangerment (generic term)
+health insurance|1
+(noun)|insurance (generic term)
+health maintenance organization|1
+(noun)|HMO|health insurance (generic term)
+health problem|1
+(noun)|ill health|unhealthiness|pathological state (generic term)|good health (antonym)
+health profession|1
+(noun)|profession (generic term)|community (generic term)
+health professional|1
+(noun)|health care provider|caregiver|professional (generic term)|professional person (generic term)
+health spa|1
+(noun)|spa|health club|place of business (generic term)|business establishment (generic term)
+healthcare|1
+(noun)|health care|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+healthcare delivery|1
+(noun)|health care delivery|care delivery|provision (generic term)|supply (generic term)|supplying (generic term)
+healthcare facility|1
+(noun)|medical building|health facility|building (generic term)|edifice (generic term)
+healthful|2
+(adj)|anthelmintic (similar term)|anthelminthic (similar term)|helminthic (similar term)|parasiticidal (similar term)|antimicrobial (similar term)|antimicrobic (similar term)|carminative (similar term)|flatus-relieving (similar term)|cathartic (similar term)|psychotherapeutic (similar term)|curative (similar term)|healing (similar term)|alterative (similar term)|remedial (similar term)|sanative (similar term)|therapeutic (similar term)|drugless (similar term)|beneficial (similar term)|good (similar term)|salutary (similar term)|medicative (similar term)|medicinal (similar term)|organic (similar term)|preventive (similar term)|preventative (similar term)|prophylactic (similar term)|recuperative (similar term)|restorative (similar term)|antiseptic (related term)|wholesome (related term)|unhealthful (antonym)
+(adj)|sanitary|hygienic (similar term)|hygienical (similar term)|unsanitary (antonym)
+healthfulness|1
+(noun)|wholesomeness (generic term)|unhealthfulness (antonym)
+healthier|1
+(adj)|fitter|better (similar term)
+healthiness|1
+(noun)|good health|physiological state (generic term)|physiological condition (generic term)|ill health (antonym)
+healthy|5
+(adj)|flushed (similar term)|rose-cheeked (similar term)|rosy (similar term)|rosy-cheeked (similar term)|bouncing (similar term)|firm (similar term)|flourishing (similar term)|growing (similar term)|thriving (similar term)|good (similar term)|sound (similar term)|hale (similar term)|whole (similar term)|hearty (similar term)|hearty (similar term)|full-blooded (similar term)|lusty (similar term)|red-blooded (similar term)|anicteric (similar term)|rock-loving (similar term)|rubicund (similar term)|ruddy (similar term)|florid (similar term)|sanguine (similar term)|sun-loving (similar term)|water-loving (similar term)|well-preserved (similar term)|wholesome (similar term)|fit (related term)|healthy (related term)|robust (related term)|well (related term)|wholesome (related term)|unhealthy (antonym)
+(adj)|sound (similar term)
+(adj)|salubrious|good for you|wholesome (similar term)
+(adj)|fit|able (similar term)|able-bodied (similar term)|conditioned (similar term)|in condition (similar term)|healthy (related term)|sound (related term)|well (related term)|unfit (antonym)
+(adj)|intelligent|levelheaded|level-headed|sound|reasonable (similar term)|sensible (similar term)
+heap|6
+(noun)|pile|mound|agglomerate|cumulation|cumulus|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|bus|jalopy|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)|dysphemism (generic term)
+(verb)|give (generic term)
+(verb)|stack|pile|arrange (generic term)|set up (generic term)|heap up (related term)|pile up (related term)|stack up (related term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+heap up|1
+(verb)|pile up|stack up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+heaped|1
+(adj)|heaped-up|piled|cumulous|concentrated (similar term)
+heaped-up|1
+(adj)|heaped|piled|cumulous|concentrated (similar term)
+heaps|1
+(noun)|tons|dozens|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+hear|5
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|learn|get word|get wind|pick up|find out|get a line|discover|see
+(verb)|try|probe (generic term)|examine (generic term)
+(verb)|pick up (generic term)|receive (generic term)
+(verb)|listen|take heed|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+hear out|1
+(verb)|listen (generic term)
+hearable|1
+(adj)|audible|clunky (similar term)|sonic (similar term)|sounding (similar term)|loud (related term)|perceptible (related term)|inaudible (antonym)
+heard|1
+(adj)|detected (similar term)
+hearer|1
+(noun)|listener|auditor|attender|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+hearing|7
+(adj)|sharp-eared (similar term)|quick-eared (similar term)|deaf (antonym)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|audience|opportunity (generic term)|chance (generic term)
+(noun)|earshot|earreach|range (generic term)|reach (generic term)
+(noun)|listening|sensing (generic term)|perception (generic term)
+(noun)|session (generic term)
+(noun)|audition|auditory sense|sense of hearing|auditory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+hearing-impaired|1
+(adj)|hard-of-hearing|deaf (similar term)
+hearing aid|2
+(noun)|deaf-aid|electronic device (generic term)
+(noun)|ear trumpet|acoustic device (generic term)
+hearing disorder|1
+(noun)|hearing impairment|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+hearing dog|1
+(noun)|working dog (generic term)
+hearing examiner|1
+(noun)|hearing officer|official (generic term)|functionary (generic term)
+hearing impairment|1
+(noun)|hearing disorder|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+hearing loss|1
+(noun)|deafness|hearing impairment (generic term)|hearing disorder (generic term)
+hearing officer|1
+(noun)|hearing examiner|official (generic term)|functionary (generic term)
+hearken|1
+(verb)|hark|harken|listen (generic term)
+hearsay|2
+(adj)|indirect (similar term)
+(noun)|rumor|rumour|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+hearsay evidence|1
+(noun)|evidence (generic term)
+hearsay rule|1
+(noun)|rule of evidence (generic term)
+hearse|1
+(noun)|motor vehicle (generic term)|automotive vehicle (generic term)
+hearst|1
+(noun)|Hearst|William Randolph Hearst|publisher (generic term)|newspaper publisher (generic term)
+heart|10
+(noun)|bosom|intuition (generic term)|hunch (generic term)|suspicion (generic term)
+(noun)|pump|ticker|internal organ (generic term)|viscus (generic term)
+(noun)|mettle|nerve|spunk|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+(noun)|center|centre|middle|eye|area (generic term)|country (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|spirit|disposition (generic term)|temperament (generic term)
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+(noun)|variety meat (generic term)|organs (generic term)
+(noun)|affection|affectionateness|fondness|tenderness|warmness|warmheartedness|philia|feeling (generic term)
+(noun)|playing card (generic term)
+heart-healthy|1
+(adj)|wholesome (similar term)
+heart-leaf|2
+(noun)|heartleaf|Asarum shuttleworthii|herb (generic term)|herbaceous plant (generic term)
+(noun)|heartleaf|Asarum virginicum|wild ginger (generic term)
+heart-leaved aster|1
+(noun)|Aster cordifolius|wood aster (generic term)
+heart-lung machine|1
+(noun)|pump (generic term)
+heart-shaped|1
+(adj)|cordate|cordiform|simple (similar term)|unsubdivided (similar term)
+heart-to-heart|2
+(adj)|candid|open|ingenuous (similar term)|artless (similar term)
+(noun)|talk (generic term)|talking (generic term)
+heart-whole|1
+(adj)|wholehearted|whole-souled|sincere (similar term)
+heart and soul|2
+(noun)|kernel|substance|core|center|essence|gist|heart|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(adv)|body and soul
+heart attack|1
+(noun)|attack (generic term)|heart failure (generic term)|coronary failure (generic term)
+heart block|1
+(noun)|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+heart cherry|2
+(noun)|oxheart|oxheart cherry|sweet cherry (generic term)|Prunus avium (generic term)
+(noun)|oxheart|oxheart cherry|sweet cherry (generic term)|black cherry (generic term)
+heart condition|1
+(noun)|heart disease|cardiopathy|cardiovascular disease (generic term)
+heart disease|1
+(noun)|heart condition|cardiopathy|cardiovascular disease (generic term)
+heart failure|1
+(noun)|coronary failure|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)|failure (generic term)
+heart line|1
+(noun)|line of heart|love line|mensal line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+heart massage|1
+(noun)|cardiac massage|emergency procedure (generic term)|massage (generic term)
+heart monitor|1
+(noun)|cardiac monitor|monitor (generic term)
+heart murmur|1
+(noun)|cardiac murmur|murmur|symptom (generic term)
+heart muscle|1
+(noun)|cardiac muscle|muscle (generic term)|muscular tissue (generic term)
+heart of dixie|1
+(noun)|Alabama|Heart of Dixie|Camellia State|AL|American state (generic term)
+heart pea|1
+(noun)|balloon vine|Cardiospermum halicacabum|soapberry vine (generic term)
+heart rate|1
+(noun)|pulse|pulse rate|vital sign (generic term)|rate (generic term)
+heart rhythm|1
+(noun)|cardiac rhythm|rhythm (generic term)|regular recurrence (generic term)
+heart specialist|1
+(noun)|cardiologist|heart surgeon|specialist (generic term)|medical specialist (generic term)
+heart surgeon|1
+(noun)|cardiologist|heart specialist|specialist (generic term)|medical specialist (generic term)
+heart surgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+heart urchin|1
+(noun)|sea urchin (generic term)
+heart valve|2
+(noun)|cardiac valve|valve (generic term)
+(noun)|implant (generic term)
+heart ventricle|1
+(noun)|ventricle|chamber (generic term)
+heartache|1
+(noun)|grief|heartbreak|brokenheartedness|sorrow (generic term)
+heartbeat|3
+(noun)|pulse|pulsation|beat|periodic event (generic term)|recurrent event (generic term)
+(noun)|blink of an eye|flash|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+(noun)|force (generic term)
+heartbreak|1
+(noun)|grief|heartache|brokenheartedness|sorrow (generic term)
+heartbreaking|1
+(adj)|grievous|heartrending|sorrowful (similar term)
+heartbroken|1
+(adj)|brokenhearted|heartsick|sorrowful (similar term)
+heartburn|1
+(noun)|pyrosis|symptom (generic term)
+heartburning|1
+(noun)|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+hearten|1
+(verb)|cheer|recreate|embolden|encourage (generic term)|dishearten (antonym)
+heartening|1
+(adj)|inspiriting|encouraging (similar term)
+heartfelt|1
+(adj)|dear|devout|earnest|sincere (similar term)
+hearth|3
+(noun)|fireplace|open fireplace|recess (generic term)|niche (generic term)
+(noun)|fireside|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+(noun)|fireside|area (generic term)|country (generic term)
+hearth money|1
+(noun)|Peter's pence|offering (generic term)
+hearthrug|1
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+hearthstone|1
+(noun)|stone (generic term)
+heartily|1
+(adv)|cordially|warmly
+heartiness|2
+(noun)|vigor|vigour|dynamism|strength (generic term)
+(noun)|wholeheartedness|sincerity (generic term)
+heartland|1
+(noun)|region (generic term)
+heartleaf|2
+(noun)|heart-leaf|Asarum shuttleworthii|herb (generic term)|herbaceous plant (generic term)
+(noun)|heart-leaf|Asarum virginicum|wild ginger (generic term)
+heartleaf arnica|1
+(noun)|Arnica cordifolia|wildflower (generic term)|wild flower (generic term)
+heartleaf manzanita|1
+(noun)|Arctostaphylos andersonii|manzanita (generic term)
+heartless|2
+(adj)|hardhearted|flinty (similar term)|granitic (similar term)|obdurate (similar term)|stony (similar term)|softhearted (antonym)
+(adj)|spiritless (similar term)
+heartlessness|1
+(noun)|coldheartedness|hardheartedness|unconcern (generic term)
+heartrending|1
+(adj)|grievous|heartbreaking|sorrowful (similar term)
+heartrot|1
+(noun)|plant disease (generic term)
+hearts|1
+(noun)|Black Maria|whist (generic term)|long whist (generic term)|short whist (generic term)
+heartsease|4
+(noun)|wild pansy|Johnny-jump-up|love-in-idleness|pink of my John|Viola tricolor|viola (generic term)
+(noun)|two-eyed violet|Viola ocellata|violet (generic term)
+(noun)|field pansy|Viola arvensis|viola (generic term)
+(noun)|peace|peacefulness|peace of mind|repose|serenity|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+heartseed|1
+(noun)|Cardiospermum grandiflorum|soapberry vine (generic term)
+heartsick|2
+(adj)|brokenhearted|heartbroken|sorrowful (similar term)
+(adj)|despondent|hopeless (similar term)
+heartsickness|1
+(noun)|despondency|despondence|disconsolateness|depression (generic term)
+heartstrings|1
+(noun)|love (generic term)|compassion (generic term)|compassionateness (generic term)
+heartthrob|1
+(noun)|idol (generic term)|matinee idol (generic term)
+heartwarming|1
+(adj)|moving (similar term)
+heartwood|1
+(noun)|duramen|wood (generic term)
+hearty|5
+(adj)|cordial|warm (similar term)
+(adj)|satisfying|solid|square|substantial|wholesome (similar term)
+(adj)|full-blooded|lusty|red-blooded|healthy (similar term)
+(adj)|healthy (similar term)
+(adj)|complete (similar term)
+heat|11
+(noun)|heat energy|energy (generic term)
+(noun)|hotness|high temperature|temperature (generic term)|coldness (antonym)
+(noun)|warmth|temperature (generic term)
+(noun)|warmth|passion|emotionality (generic term)|emotionalism (generic term)
+(noun)|estrus|oestrus|rut|physiological state (generic term)|physiological condition (generic term)|anestrus (antonym)
+(noun)|race (generic term)
+(noun)|heating system|heating plant|heating|utility (generic term)
+(verb)|heat up|change (generic term)|alter (generic term)|modify (generic term)|cool (antonym)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|inflame|stir up|wake|ignite|fire up|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|hot up|heat up|change state (generic term)|turn (generic term)|cool (antonym)
+heat-absorbing|1
+(adj)|endothermic|endothermal|decalescent (similar term)|endoergic (related term)|energy-absorbing (related term)|exothermic (antonym)
+heat-releasing|1
+(adj)|exothermic|exothermal|exoergic (related term)|energy-releasing (related term)|endothermic (antonym)
+heat-seeking missile|1
+(noun)|missile (generic term)
+heat barrier|1
+(noun)|thermal barrier|limit (generic term)|bound (generic term)|boundary (generic term)
+heat content|1
+(noun)|total heat|enthalpy|H|physical property (generic term)
+heat dissipation|1
+(noun)|cooling (generic term)|chilling (generic term)|temperature reduction (generic term)
+heat energy|1
+(noun)|heat|energy (generic term)
+heat engine|1
+(noun)|engine (generic term)
+heat exchanger|1
+(noun)|device (generic term)
+heat exhaustion|1
+(noun)|heat prostration|prostration|heatstroke (generic term)|heat hyperpyrexia (generic term)
+heat flash|1
+(noun)|flash (generic term)
+heat hyperpyrexia|1
+(noun)|heatstroke|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+heat lamp|1
+(noun)|infrared lamp|electric heater (generic term)|electric fire (generic term)
+heat lightning|1
+(noun)|lightning (generic term)
+heat of condensation|1
+(noun)|latent heat (generic term)|heat of transformation (generic term)
+heat of dissociation|1
+(noun)|heat (generic term)|heat energy (generic term)
+heat of formation|1
+(noun)|heat (generic term)|heat energy (generic term)
+heat of fusion|1
+(noun)|latent heat (generic term)|heat of transformation (generic term)
+heat of solidification|1
+(noun)|latent heat (generic term)|heat of transformation (generic term)
+heat of solution|1
+(noun)|heat (generic term)|heat energy (generic term)
+heat of sublimation|1
+(noun)|latent heat (generic term)|heat of transformation (generic term)
+heat of transformation|1
+(noun)|latent heat|heat (generic term)|heat energy (generic term)
+heat of vaporisation|1
+(noun)|heat of vaporization|latent heat (generic term)|heat of transformation (generic term)
+heat of vaporization|1
+(noun)|heat of vaporisation|latent heat (generic term)|heat of transformation (generic term)
+heat prostration|1
+(noun)|heat exhaustion|prostration|heatstroke (generic term)|heat hyperpyrexia (generic term)
+heat pump|1
+(noun)|apparatus (generic term)|setup (generic term)
+heat rash|1
+(noun)|prickly heat|miliaria|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)
+heat ray|1
+(noun)|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+heat shield|1
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+heat sink|1
+(noun)|conductor (generic term)|sink (generic term)
+heat unit|1
+(noun)|work unit|energy unit|unit of measurement (generic term)|unit (generic term)
+heat up|3
+(verb)|heat|hot up|change state (generic term)|turn (generic term)|cool (antonym)
+(verb)|heat|change (generic term)|alter (generic term)|modify (generic term)|cool (antonym)
+(verb)|hot up|screw up|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+heat wave|1
+(noun)|wave (generic term)
+heatable|1
+(adj)|hot (similar term)
+heated|2
+(adj)|heated up|het|het up|hot (similar term)
+(adj)|hot (similar term)
+heated up|1
+(adj)|heated|het|het up|hot (similar term)
+heatedly|1
+(adv)|hotly
+heater|2
+(noun)|warmer|device (generic term)
+(noun)|fastball|smoke|hummer|bullet|pitch (generic term)|delivery (generic term)
+heath|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|heathland|barren (generic term)|waste (generic term)|wasteland (generic term)
+heath aster|2
+(noun)|Aster ericoides|aster (generic term)
+(noun)|Aster arenosus|aster (generic term)
+heath family|1
+(noun)|Ericaceae|family Ericaceae|dilleniid dicot family (generic term)|Ericales (generic term)|order Ericales (generic term)
+heath hen|2
+(noun)|Tympanuchus cupido cupido|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+(noun)|greyhen|grayhen|grey hen|gray hen|black grouse (generic term)
+heath pea|1
+(noun)|earth-nut pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine (generic term)
+heath violet|1
+(noun)|dog violet|Viola canina|violet (generic term)
+heathen|2
+(adj)|heathenish|pagan|ethnic|irreligious (similar term)
+(noun)|pagan|gentile|infidel|nonreligious person (generic term)
+heathenish|1
+(adj)|heathen|pagan|ethnic|irreligious (similar term)
+heathenism|1
+(noun)|paganism|pagan religion|religion (generic term)|faith (generic term)|religious belief (generic term)
+heather|2
+(noun)|ling|Scots heather|broom|Calluna vulgaris|heath (generic term)
+(noun)|heather mixture|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+heather bell|1
+(noun)|bell heather|fine-leaved heath|Erica cinerea|erica (generic term)|true heath (generic term)
+heather mixture|1
+(noun)|heather|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+heathfowl|1
+(noun)|European black grouse|Lyrurus tetrix|black grouse (generic term)
+heathland|1
+(noun)|heath|barren (generic term)|waste (generic term)|wasteland (generic term)
+heathlike|1
+(adj)|shrub|bush (related term)
+heating|2
+(noun)|warming|temperature change (generic term)
+(noun)|heating system|heating plant|heat|utility (generic term)
+heating element|1
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+heating oil|1
+(noun)|fuel oil|oil (generic term)|fuel (generic term)
+heating pad|1
+(noun)|hot pad|heater (generic term)|warmer (generic term)
+heating plant|1
+(noun)|heating system|heating|heat|utility (generic term)
+heating system|1
+(noun)|heating plant|heating|heat|utility (generic term)
+heatless|1
+(adj)|cold (similar term)
+heatstroke|1
+(noun)|heat hyperpyrexia|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+heaume|1
+(noun)|helmet (generic term)
+heave|14
+(noun)|heaving|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|movement (generic term)|motion (generic term)
+(noun)|heaving|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(noun)|retch|spasm (generic term)
+(noun)|lift|raise|propulsion (generic term)|actuation (generic term)
+(noun)|heaving|throw (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|throw (generic term)
+(verb)|billow|surge|inflate (generic term)|blow up (generic term)
+(verb)|heave up|heft|heft up|lift (generic term)
+(verb)|move (generic term)
+(verb)|pant|puff|gasp|blow (generic term)
+(verb)|buckle|warp|change surface (generic term)
+(verb)|gag|retch
+heave up|1
+(verb)|heave|heft|heft up|lift (generic term)
+heaven|2
+(noun)|Eden|paradise|Nirvana|promised land|Shangri-la|region (generic term)|part (generic term)
+(noun)|Heaven|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Hell (antonym)
+heaven-sent|1
+(adj)|providential|miraculous|fortunate (similar term)
+heavenly|3
+(adj)|celestial|imaginary place|mythical place|fictitious place (related term)
+(adj)|celestial|atmosphere (related term)
+(adj)|ambrosial (similar term)|ambrosian (similar term)|celestial (similar term)|ethereal (similar term)|supernal (similar term)|divine (similar term)|godly (similar term)|divine (similar term)|godlike (similar term)|paradisiacal (similar term)|paradisiac (similar term)|paradisaical (similar term)|paradisaic (similar term)|paradisal (similar term)|providential (similar term)|divine (similar term)|translunar (similar term)|translunary (similar term)|superlunar (similar term)|superlunary (similar term)|immortal (related term)|sacred (related term)|supernal (related term)|earthly (antonym)
+heavenly body|1
+(noun)|celestial body|natural object (generic term)
+heavenly city|1
+(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven (generic term)
+heavenly jewel|1
+(noun)|Tien-pao|Heavenly Jewel|Chinese deity (generic term)
+heavens|1
+(noun)|celestial sphere|sphere|empyrean|firmament|vault of heaven|welkin|surface (generic term)
+heavenward|2
+(adj)|skyward|up (similar term)
+(adv)|heavenwards|heavenwardly
+heavenwardly|1
+(adv)|heavenward|heavenwards
+heavenwards|1
+(adv)|heavenward|heavenwardly
+heaver|2
+(noun)|bar (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+heaves|1
+(noun)|broken wind|animal disease (generic term)
+heavier-than-air|1
+(adj)|heavy (similar term)
+heavier-than-air craft|1
+(noun)|aircraft (generic term)
+heavily|3
+(adv)|to a great extent
+(adv)|heavy
+(adv)|intemperately|hard|lightly (antonym)
+heavily traveled|1
+(adj)|traveled (similar term)
+heaviness|5
+(noun)|weightiness|weight (generic term)|lightness (antonym)
+(noun)|sadness (generic term)|unhappiness (generic term)
+(noun)|ponderousness|uninterestingness (generic term)
+(noun)|thickness|wideness (generic term)|broadness (generic term)
+(noun)|burdensomeness|onerousness|oppressiveness|difficulty (generic term)|difficultness (generic term)
+heaving|5
+(adj)|moving (similar term)
+(noun)|heave|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|panting|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(noun)|heave|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(noun)|heave|throw (generic term)
+heaviside|1
+(noun)|Heaviside|Oliver Heaviside|physicist (generic term)|electrical engineer (generic term)
+heaviside layer|1
+(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region (generic term)|part (generic term)
+heavy|28
+(adj)|dense (similar term)|doughy (similar term)|soggy (similar term)|heavier-than-air (similar term)|hefty (similar term)|massive (similar term)|non-buoyant (similar term)|ponderous (similar term)|light (antonym)
+(adj)|harsh (similar term)|light (antonym)
+(adj)|burdensome (similar term)|onerous (similar term)|taxing (similar term)|distressing (similar term)|distressful (similar term)|disturbing (similar term)|perturbing (similar term)|troubling (similar term)|worrisome (similar term)|worrying (similar term)|leaden (similar term)|weighted (similar term)|oppressive (similar term)|weighty (similar term)|light (antonym)
+(adj)|fleshy|overweight|fat (similar term)
+(adj)|clayey|cloggy|compact (similar term)
+(adj)|lowering|sullen|threatening|cloudy (similar term)
+(adj)|big (similar term)|light (antonym)
+(adj)|light (antonym)
+(adj)|wicked (similar term)
+(adj)|dense|impenetrable|thick (similar term)
+(adj)|thick (similar term)
+(adj)|big|intemperate (similar term)
+(adj)|sonorous|full (similar term)
+(adj)|intemperate|hard|indulgent (similar term)
+(adj)|grave|grievous|weighty|important (similar term)|of import (similar term)
+(adj)|lumbering|ponderous|heavy-footed (similar term)
+(adj)|heavy-duty (similar term)
+(adj)|indigestible (similar term)
+(adj)|steep (similar term)
+(adj)|weighed down|full (similar term)
+(adj)|labored|laboured|effortful (similar term)
+(adj)|arduous|backbreaking|grueling|gruelling|hard|laborious|operose|punishing|toilsome|effortful (similar term)
+(adj)|leaden|dull (similar term)
+(adj)|profound|sound|wakeless|deep (similar term)
+(adj)|big|enceinte|expectant|gravid|great|large|with child|pregnant (similar term)
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+(adv)|heavily
+heavy-armed|1
+(adj)|robust (similar term)
+heavy-coated|1
+(adj)|clothed (similar term)|clad (similar term)
+heavy-duty|1
+(adj)|heavy (similar term)|industrial (similar term)|light-duty (antonym)
+heavy-footed|1
+(adj)|heavy (similar term)|lumbering (similar term)|ponderous (similar term)|light-footed (antonym)
+heavy-handed|2
+(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|handless|left-handed|maladroit (similar term)
+(adj)|roughshod|domineering (similar term)
+heavy-laden|2
+(adj)|care-laden|troubled (similar term)
+(adj)|burdened|loaded down|encumbered (similar term)
+heavy-limbed|1
+(adj)|limbed (similar term)
+heavy cream|1
+(noun)|cream (generic term)
+heavy hitter|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+heavy hydrogen|1
+(noun)|deuterium|hydrogen atom (generic term)|isotope (generic term)
+heavy lifting|1
+(noun)|work (generic term)
+heavy metal|2
+(noun)|metallic element (generic term)|metal (generic term)|alloy (generic term)|metal (generic term)
+(noun)|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+heavy particle|1
+(noun)|baryon|hadron (generic term)|fermion (generic term)
+heavy spar|1
+(noun)|barite|barytes|barium sulphate|mineral (generic term)
+heavy swell|1
+(noun)|ground swell|swell (generic term)|crestless wave (generic term)
+heavy water|1
+(noun)|deuterium oxide|moderator (generic term)
+heavy weapon|1
+(noun)|artillery|gun|ordnance|armament (generic term)
+heavy whipping cream|1
+(noun)|double creme|cream (generic term)
+heavyhearted|1
+(adj)|sad (similar term)
+heavyheartedness|1
+(noun)|melancholy (generic term)
+heavyset|1
+(adj)|compact|stocky|thick|thickset|fat (similar term)
+heavyweight|5
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|prizefighter (generic term)|gladiator (generic term)
+(noun)|giant|hulk|whale|large person (generic term)
+(noun)|colossus|behemoth|giant|titan|important person (generic term)|influential person (generic term)|personage (generic term)
+hebbel|1
+(noun)|Hebbel|Friedrich Hebbel|Christian Friedrich Hebbel|dramatist (generic term)|playwright (generic term)
+hebdomad|1
+(noun)|week|time period (generic term)|period of time (generic term)|period (generic term)
+hebdomadal|1
+(adj)|hebdomadary|time period|period of time|period (related term)
+hebdomadally|1
+(adv)|weekly|every week|each week
+hebdomadary|1
+(adj)|hebdomadal|time period|period of time|period (related term)
+hebe|1
+(noun)|Hebe|Greek deity (generic term)
+hebei|1
+(noun)|Hebei|Hopei|Hopeh|Hebei province|state (generic term)|province (generic term)
+hebei province|1
+(noun)|Hebei|Hopei|Hopeh|Hebei province|state (generic term)|province (generic term)
+hebephrenia|1
+(noun)|hebephrenic schizophrenia|disorganized schizophrenia|disorganized type schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+hebephrenic|1
+(adj)|schizophrenic|insane (similar term)
+hebephrenic schizophrenia|1
+(noun)|hebephrenia|disorganized schizophrenia|disorganized type schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+hebetude|1
+(noun)|lethargy (generic term)|lassitude (generic term)|sluggishness (generic term)
+hebraic|2
+(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language (related term)
+(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|soul (related term)
+hebraic alphabet|1
+(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet (generic term)
+hebraical|2
+(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|soul (related term)
+(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language (related term)
+hebraism|1
+(noun)|Judaism|Hebraism|Jewish religion|religion (generic term)|faith (generic term)|organized religion (generic term)
+hebraist|1
+(noun)|Hebraist|linguist (generic term)|linguistic scientist (generic term)
+hebrew|4
+(adj)|Hebraic|Hebraical|Hebrew|person|individual|someone|somebody|mortal|soul (related term)
+(adj)|Hebraic|Hebraical|Hebrew|Canaanitic|Canaanitic language (related term)
+(noun)|Hebrew|Canaanitic (generic term)|Canaanitic language (generic term)
+(noun)|Jew|Hebrew|Israelite|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+hebrew alphabet|1
+(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet (generic term)
+hebrew calendar|1
+(noun)|Jewish calendar|Hebrew calendar|lunisolar calendar (generic term)
+hebrew lesson|1
+(noun)|Hebrew lesson|language lesson (generic term)
+hebrew script|1
+(noun)|Hebrew alphabet|Hebraic alphabet|Hebrew script|alphabet (generic term)
+hebrew scripture|1
+(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+hebrews|2
+(noun)|Hebrews|Israelites|ethnic group (generic term)|ethnos (generic term)|chosen people (generic term)
+(noun)|Epistle to the Hebrews|Hebrews|Epistle (generic term)
+hebridean|1
+(adj)|Hebridean|archipelago (related term)
+hebridean islands|1
+(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago (generic term)
+hebridean isles|1
+(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago (generic term)
+hebrides|1
+(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago (generic term)
+hecate|1
+(noun)|Hecate|Greek deity (generic term)
+hecatomb|1
+(noun)|sacrifice (generic term)|ritual killing (generic term)
+hecht|1
+(noun)|Hecht|Ben Hecht|writer (generic term)|author (generic term)
+heck|1
+(noun)|euphemism (generic term)
+heckelphone|1
+(noun)|basset oboe|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+heckle|3
+(noun)|hatchel|comb (generic term)
+(verb)|hackle|hatchel|comb (generic term)
+(verb)|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+heckler|1
+(noun)|badgerer|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+heckling|1
+(noun)|barracking|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+hectare|1
+(noun)|area unit (generic term)|square measure (generic term)
+hectic|1
+(adj)|feverish|agitated (similar term)
+hectically|1
+(adv)|frenziedly
+hectogram|1
+(noun)|hg|metric weight unit (generic term)|weight unit (generic term)
+hectograph|2
+(noun)|heliotype|duplicator (generic term)|copier (generic term)|collotype (generic term)|collotype printing (generic term)|photogelatin process (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+hectoliter|1
+(noun)|hectolitre|hl|metric capacity unit (generic term)
+hectolitre|1
+(noun)|hectoliter|hl|metric capacity unit (generic term)
+hectometer|1
+(noun)|hectometre|hm|metric linear unit (generic term)
+hectometre|1
+(noun)|hectometer|hm|metric linear unit (generic term)
+hector|2
+(noun)|Hector|mythical being (generic term)
+(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|push around|intimidate (generic term)
+hector berlioz|1
+(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer (generic term)
+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 (generic term)
+hector hugh munro|1
+(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer (generic term)|author (generic term)
+hedeoma|1
+(noun)|Hedeoma|genus Hedeoma|asterid dicot genus (generic term)
+hedeoma oil|1
+(noun)|pennyroyal oil|oil (generic term)
+hedeoma pulegioides|1
+(noun)|pennyroyal|American pennyroyal|Hedeoma pulegioides|herb (generic term)|herbaceous plant (generic term)
+hedera|1
+(noun)|Hedera|genus Hedera|rosid dicot genus (generic term)
+hedera helix|1
+(noun)|ivy|common ivy|English ivy|Hedera helix|vine (generic term)
+hedge|7
+(noun)|hedgerow|fence (generic term)|fencing (generic term)
+(noun)|hedging|security (generic term)|protection (generic term)
+(noun)|hedging|evasion (generic term)|equivocation (generic term)
+(verb)|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+(verb)|hem in (generic term)
+(verb)|hedge in|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|minimize (generic term)|minimise (generic term)
+hedge bindweed|1
+(noun)|wild morning-glory|Calystegia sepium|Convolvulus sepium|bindweed (generic term)
+hedge fund|1
+(noun)|hedgefund|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+hedge garlic|1
+(noun)|garlic mustard|sauce-alone|jack-by-the-hedge|Alliaria officinalis|crucifer (generic term)|cruciferous plant (generic term)
+hedge in|1
+(verb)|hedge|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+hedge maple|1
+(noun)|field maple|Acer campestre|maple (generic term)
+hedge mustard|1
+(noun)|Sisymbrium officinale|herb (generic term)|herbaceous plant (generic term)
+hedge nettle|2
+(noun)|Stachys palustris|herb (generic term)|herbaceous plant (generic term)
+(noun)|dead nettle|Stachys sylvatica|herb (generic term)|herbaceous plant (generic term)
+hedge pink|1
+(noun)|soapwort|bouncing Bet|bouncing Bess|Saponaria officinalis|flower (generic term)
+hedge sparrow|1
+(noun)|sparrow|dunnock|Prunella modularis|accentor (generic term)
+hedge thorn|1
+(noun)|natal plum|Carissa bispinosa|carissa (generic term)
+hedge trimmer|1
+(noun)|garden tool (generic term)|lawn tool (generic term)
+hedge violet|1
+(noun)|wood violet|Viola sylvatica|Viola reichenbachiana|violet (generic term)
+hedged|1
+(adj)|weasel-worded|qualified (similar term)
+hedgefund|1
+(noun)|hedge fund|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+hedgehog|2
+(noun)|porcupine|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|Erinaceus europaeus|Erinaceus europeaeus|insectivore (generic term)
+hedgehog cactus|1
+(noun)|echinocactus (generic term)|barrel cactus (generic term)
+hedgehog cereus|1
+(noun)|cactus (generic term)
+hedgehop|1
+(verb)|flat-hat|fly (generic term)|aviate (generic term)|pilot (generic term)
+hedger|3
+(noun)|equivocator|tergiversator|respondent (generic term)|responder (generic term)|answerer (generic term)
+(noun)|speculator (generic term)|plunger (generic term)
+(noun)|gardener (generic term)
+hedgerow|1
+(noun)|hedge|fence (generic term)|fencing (generic term)
+hedging|2
+(noun)|hedge|security (generic term)|protection (generic term)
+(noun)|hedge|evasion (generic term)|equivocation (generic term)
+hediondilla|1
+(noun)|creosote bush|coville|Larrea tridentata|shrub (generic term)|bush (generic term)
+hedjaz|1
+(noun)|Hejaz|Hedjaz|Hijaz|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+hedonic|1
+(adj)|hedonistic|epicurean|indulgent (similar term)
+hedonism|2
+(noun)|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+(noun)|ethics (generic term)|moral philosophy (generic term)
+hedonist|1
+(noun)|pagan|pleasure seeker|sensualist (generic term)
+hedonistic|1
+(adj)|hedonic|epicurean|indulgent (similar term)
+hedysarum|1
+(noun)|Hedysarum|genus Hedysarum|rosid dicot genus (generic term)
+hedysarum boreale|1
+(noun)|sweet vetch|Hedysarum boreale|subshrub (generic term)|suffrutex (generic term)
+hedysarum coronarium|1
+(noun)|French honeysuckle|sulla|Hedysarum coronarium|subshrub (generic term)|suffrutex (generic term)
+hee-haw|2
+(noun)|horselaugh|ha-ha|haw-haw|laugh (generic term)|laughter (generic term)
+(verb)|bray|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+heebie-jeebies|1
+(noun)|jitters|screaming meemies|nervousness (generic term)|nerves (generic term)
+heed|2
+(noun)|attentiveness|regard|paying attention|attention (generic term)|attending (generic term)|inattentiveness (antonym)
+(verb)|mind|listen|obey (generic term)
+heedful|3
+(adj)|attentive|thoughtful|paying attention|heedless (antonym)
+(adj)|careful|mindful (similar term)|aware (similar term)
+(adj)|advertent|attentive (similar term)
+heedfully|1
+(adv)|mindfully|advertently|inadvertently (antonym)|unmindfully (antonym)
+heedfulness|1
+(noun)|mindfulness|attentiveness (generic term)|heedlessness (antonym)|unmindfulness (antonym)
+heedless|2
+(adj)|thoughtless|unheeding|careless (similar term)|regardless (similar term)|deaf (similar term)|indifferent (similar term)|heedful (antonym)
+(adj)|reckless|careless (similar term)
+heedlessly|1
+(adv)|carelessly
+heedlessness|3
+(noun)|inattentiveness|inattention (generic term)|attentiveness (antonym)
+(noun)|mindlessness|rashness|imprudence (generic term)
+(noun)|unmindfulness|inadvertence|inadvertency|attentiveness (generic term)|heedfulness (antonym)|mindfulness (antonym)
+heel|10
+(noun)|bottom (generic term)|underside (generic term)|undersurface (generic term)
+(noun)|skeletal structure (generic term)
+(noun)|cad|bounder|blackguard|dog|hound|villain (generic term)|scoundrel (generic term)
+(noun)|end (generic term)
+(noun)|part (generic term)|portion (generic term)
+(verb)|list|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+(verb)|follow (generic term)|travel along (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|hit (generic term)
+(verb)|reheel|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+heel counter|1
+(noun)|counter|piece of leather (generic term)
+heelbone|1
+(noun)|calcaneus|os tarsi fibulare|bone (generic term)|os (generic term)
+heels over head|1
+(adv)|head over heels|topsy-turvy|topsy-turvily|in great confusion
+hefa|1
+(noun)|Hefa|Haifa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+heft|3
+(noun)|heftiness|massiveness|ponderousness|ponderosity|heaviness (generic term)|weightiness (generic term)
+(verb)|heave|heave up|heft up|lift (generic term)
+(verb)|weigh (generic term)|librate (generic term)
+heft up|1
+(verb)|heave|heave up|heft|lift (generic term)
+heftiness|2
+(noun)|brawn|brawniness|muscle|muscularity|sinew|strength (generic term)
+(noun)|heft|massiveness|ponderousness|ponderosity|heaviness (generic term)|weightiness (generic term)
+hefty|3
+(adj)|brawny|muscular|powerful|sinewy|strong (similar term)
+(adj)|heavy (similar term)
+(adj)|goodly|goodish|respectable|sizable|sizeable|tidy|considerable (similar term)
+hegari|1
+(noun)|grain sorghum (generic term)
+hegel|1
+(noun)|Hegel|Georg Wilhelm Friedrich Hegel|philosopher (generic term)
+hegelian|2
+(adj)|Hegelian|philosopher (related term)
+(noun)|Hegelian|follower (generic term)
+hegemony|1
+(noun)|political system (generic term)|form of government (generic term)
+hegira|2
+(noun)|Hegira|Hejira|escape (generic term)|flight (generic term)
+(noun)|exodus|hejira|escape (generic term)|flight (generic term)
+heidegger|1
+(noun)|Heidegger|Martin Heidegger|existentialist (generic term)|existentialist philosopher (generic term)
+heidelberg man|1
+(noun)|Heidelberg man|Homo heidelbergensis|primitive (generic term)|primitive person (generic term)
+heifer|1
+(noun)|cow (generic term)|moo-cow (generic term)|young mammal (generic term)
+height|4
+(noun)|tallness|dimension (generic term)
+(noun)|acme|elevation|peak|pinnacle|summit|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|stature|bodily property (generic term)
+(noun)|altitude|elevation (generic term)
+heighten|6
+(verb)|rise|increase (generic term)
+(verb)|increase (generic term)
+(verb)|enhance|raise|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|sharpen|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|intensify|compound|deepen|increase (generic term)
+heightening|1
+(adj)|intensifying (similar term)
+heights|1
+(noun)|high|topographic point (generic term)|place (generic term)|spot (generic term)
+heilong|1
+(noun)|Amur|Amur River|Heilong Jiang|Heilong|river (generic term)
+heilong jiang|1
+(noun)|Amur|Amur River|Heilong Jiang|Heilong|river (generic term)
+heimdal|1
+(noun)|Heimdall|Heimdal|Heimdallr|Norse deity (generic term)
+heimdall|1
+(noun)|Heimdall|Heimdal|Heimdallr|Norse deity (generic term)
+heimdallr|1
+(noun)|Heimdall|Heimdal|Heimdallr|Norse deity (generic term)
+heimlich maneuver|1
+(noun)|Heimlich maneuver|Heimlich manoeuvere|emergency procedure (generic term)
+heimlich manoeuvere|1
+(noun)|Heimlich maneuver|Heimlich manoeuvere|emergency procedure (generic term)
+heinlein|1
+(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer (generic term)|author (generic term)
+heinous|1
+(adj)|atrocious|flagitious|grievous|monstrous|evil (similar term)
+heinously|1
+(adv)|monstrously
+heinousness|1
+(noun)|atrocity|atrociousness|barbarity|barbarousness|inhumaneness (generic term)|inhumanity (generic term)
+heinrich boll|1
+(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer (generic term)|author (generic term)
+heinrich engelhard steinway|1
+(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker (generic term)
+heinrich hertz|1
+(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist (generic term)
+heinrich himmler|1
+(noun)|Himmler|Heinrich Himmler|Nazi (generic term)|German Nazi (generic term)
+heinrich rudolph hertz|1
+(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist (generic term)
+heinrich schliemann|1
+(noun)|Schliemann|Heinrich Schliemann|archeologist (generic term)|archaeologist (generic term)
+heinrich theodor boll|1
+(noun)|Boll|Heinrich Boll|Heinrich Theodor Boll|writer (generic term)|author (generic term)
+heinrich von kleist|1
+(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist (generic term)|playwright (generic term)
+heinz|1
+(noun)|Heinz|Henry John Heinz|industrialist (generic term)
+heir|2
+(noun)|inheritor|heritor|recipient (generic term)|receiver (generic term)
+(noun)|successor|offspring (generic term)|progeny (generic term)|issue (generic term)
+heir-at-law|1
+(noun)|heir (generic term)|inheritor (generic term)|heritor (generic term)
+heir apparent|1
+(noun)|heir (generic term)|inheritor (generic term)|heritor (generic term)|heir presumptive (antonym)
+heir presumptive|1
+(noun)|heir (generic term)|inheritor (generic term)|heritor (generic term)|heir apparent (antonym)
+heiress|1
+(noun)|inheritress|inheritrix|heir (generic term)|inheritor (generic term)|heritor (generic term)
+heirloom|2
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|inheritance (generic term)|heritage (generic term)
+heisenberg|1
+(noun)|Heisenberg|Werner Karl Heisenberg|nuclear physicist (generic term)
+heist|3
+(noun)|rip-off|robbery (generic term)
+(noun)|armed robbery|holdup|stickup|robbery (generic term)
+(verb)|burglarize|burglarise|burgle|steal (generic term)
+heitor villa-lobos|1
+(noun)|Villa-Lobos|Heitor Villa-Lobos|composer (generic term)
+hejaz|1
+(noun)|Hejaz|Hedjaz|Hijaz|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+hejira|2
+(noun)|Hegira|Hejira|escape (generic term)|flight (generic term)
+(noun)|exodus|hegira|escape (generic term)|flight (generic term)
+hel|2
+(noun)|Hel|Hela|Norse deity (generic term)
+(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+hela|1
+(noun)|Hel|Hela|Norse deity (generic term)
+held up|1
+(adj)|delayed (similar term)
+helen|1
+(noun)|Helen|Helen of Troy|mythical being (generic term)
+helen adams keller|1
+(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer (generic term)|writer (generic term)|author (generic term)
+helen hayes|1
+(noun)|Hayes|Helen Hayes|actress (generic term)
+helen hunt jackson|1
+(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer (generic term)|author (generic term)
+helen keller|1
+(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer (generic term)|writer (generic term)|author (generic term)
+helen laura sumner woodbury|1
+(noun)|Woodbury|Helen Laura Sumner Woodbury|economist (generic term)|economic expert (generic term)
+helen maria fiske hunt jackson|1
+(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer (generic term)|author (generic term)
+helen newington wills|1
+(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player (generic term)
+helen of troy|1
+(noun)|Helen|Helen of Troy|mythical being (generic term)
+helen porter mitchell|1
+(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura (generic term)|coloratura soprano (generic term)
+helen traubel|1
+(noun)|Traubel|Helen Traubel|soprano (generic term)
+helen wills|1
+(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player (generic term)
+helen wills moody|1
+(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player (generic term)
+helena|1
+(noun)|Helena|capital of Montana|state capital (generic term)
+helenium|1
+(noun)|Helenium|genus Helenium|asterid dicot genus (generic term)
+helenium autumnale|1
+(noun)|autumn sneezeweed|Helenium autumnale|sneezeweed (generic term)
+helenium hoopesii|1
+(noun)|orange sneezeweed|owlclaws|Helenium hoopesii|sneezeweed (generic term)
+helenium puberulum|1
+(noun)|rosilla|Helenium puberulum|sneezeweed (generic term)
+heleodytes|1
+(noun)|Campylorhynchus|genus Campylorhynchus|Heleodytes|genus Heleodytes|bird genus (generic term)
+heliac|1
+(adj)|heliacal|star (related term)
+heliacal|1
+(adj)|heliac|star (related term)
+heliamphora|1
+(noun)|Heliamphora|genus Heliamphora|dicot genus (generic term)|magnoliopsid genus (generic term)
+helianthemum|1
+(noun)|sunrose|sun rose|shrub (generic term)|bush (generic term)
+helianthemum canadense|1
+(noun)|frostweed|frost-weed|frostwort|Helianthemum canadense|Crocanthemum canadensei|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+helianthemum scoparium|1
+(noun)|rush rose|Helianthemum scoparium|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+helianthus|1
+(noun)|sunflower|flower (generic term)
+helianthus angustifolius|1
+(noun)|swamp sunflower|Helianthus angustifolius|sunflower (generic term)|helianthus (generic term)
+helianthus annuus|1
+(noun)|common sunflower|mirasol|Helianthus annuus|sunflower (generic term)|helianthus (generic term)
+helianthus giganteus|1
+(noun)|giant sunflower|tall sunflower|Indian potato|Helianthus giganteus|sunflower (generic term)|helianthus (generic term)
+helianthus laetiflorus|1
+(noun)|showy sunflower|Helianthus laetiflorus|sunflower (generic term)|helianthus (generic term)
+helianthus maximilianii|1
+(noun)|Maximilian's sunflower|Helianthus maximilianii|sunflower (generic term)|helianthus (generic term)
+helianthus petiolaris|1
+(noun)|prairie sunflower|Helianthus petiolaris|sunflower (generic term)|helianthus (generic term)
+helianthus tuberosus|1
+(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower (generic term)|helianthus (generic term)
+helical|1
+(adj)|coiling|spiral|spiraling|volute|voluted|whorled|turbinate|coiled (similar term)
+helichrysum|1
+(noun)|Helichrysum|genus Helichrysum|asterid dicot genus (generic term)
+helichrysum bracteatum|1
+(noun)|strawflower|golden everlasting|yellow paper daisy|Helichrysum bracteatum|everlasting (generic term)|everlasting flower (generic term)
+helichrysum secundiflorum|1
+(noun)|cascade everlasting|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting (generic term)|everlasting flower (generic term)
+helicidae|1
+(noun)|Helicidae|family Helicidae|mollusk family (generic term)
+helicon|1
+(noun)|bombardon|bass horn (generic term)|sousaphone (generic term)|tuba (generic term)
+helicopter|1
+(noun)|chopper|whirlybird|eggbeater|heavier-than-air craft (generic term)
+helicteres|1
+(noun)|Helicteres|genus Helicteres|dilleniid dicot genus (generic term)
+helicteres isora|1
+(noun)|nut-leaved screw tree|Helicteres isora|screw tree (generic term)
+heliobacter|1
+(noun)|Heliobacter|genus Heliobacter|bacteria genus (generic term)
+heliobacter pylori|1
+(noun)|Heliobacter pylori|H. pylori|bacteria species (generic term)
+heliocentric|1
+(adj)|Copernican (similar term)|geocentric (antonym)
+heliocentric parallax|1
+(noun)|annual parallax|parallax (generic term)
+heliogram|1
+(noun)|message (generic term)
+heliograph|2
+(noun)|apparatus (generic term)|setup (generic term)
+(verb)|sign (generic term)|signal (generic term)|signalize (generic term)|signalise (generic term)
+heliogravure|1
+(noun)|gravure|photogravure|print (generic term)
+heliolatry|1
+(noun)|sun-worship|worship (generic term)
+heliometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+heliopause|1
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+heliophila|1
+(noun)|flower (generic term)
+heliopsis|1
+(noun)|oxeye|wildflower (generic term)|wild flower (generic term)
+helios|1
+(noun)|Helios|Greek deity (generic term)
+heliosphere|1
+(noun)|region (generic term)|part (generic term)
+heliotherapy|1
+(noun)|insolation|therapy (generic term)
+heliothis|1
+(noun)|Heliothis|genus Heliothis|arthropod genus (generic term)
+heliothis moth|1
+(noun)|Heliothis zia|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+heliothis zia|2
+(noun)|corn earworm|cotton bollworm|tomato fruitworm|tobacco budworm|vetchworm|Heliothis zia|bollworm (generic term)
+(noun)|heliothis moth|Heliothis zia|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+heliotrope|1
+(noun)|bloodstone|chalcedony (generic term)|calcedony (generic term)
+heliotropism|1
+(noun)|tropism (generic term)
+heliotype|1
+(noun)|hectograph|duplicator (generic term)|copier (generic term)|collotype (generic term)|collotype printing (generic term)|photogelatin process (generic term)
+heliozoa|1
+(noun)|Heliozoa|order Heliozoa|animal order (generic term)
+heliozoan|1
+(noun)|actinopod (generic term)
+heliport|1
+(noun)|airport (generic term)|airdrome (generic term)|aerodrome (generic term)|drome (generic term)
+helipterum|1
+(noun)|Helipterum|genus Helipterum|asterid dicot genus (generic term)
+helipterum manglesii|1
+(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting (generic term)|everlasting flower (generic term)
+helium|1
+(noun)|He|atomic number 2|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+helium group|1
+(noun)|series (generic term)
+helix|3
+(noun)|spiral|curve (generic term)|curved shape (generic term)
+(noun)|coil|spiral|volute|whorl|structure (generic term)|construction (generic term)
+(noun)|Helix|genus Helix|mollusk genus (generic term)
+helix angle|1
+(noun)|angle (generic term)
+helix aspersa|1
+(noun)|brown snail|Helix aspersa|garden snail (generic term)
+helix hortensis|1
+(noun)|Helix hortensis|garden snail (generic term)
+helix pomatia|1
+(noun)|edible snail|Helix pomatia|snail (generic term)
+hell|6
+(noun)|hell on earth|hellhole|snake pit|the pits|inferno|region (generic term)|part (generic term)
+(noun)|blaze|trouble (generic term)
+(noun)|Hell|perdition|Inferno|infernal region|nether region|pit|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+(noun)|sin|activity (generic term)
+(noun)|blaze|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)
+hell's half acre|1
+(noun)|Hell's Kitchen|Hell's Half Acre|city district (generic term)
+hell's kitchen|1
+(noun)|Hell's Kitchen|Hell's Half Acre|city district (generic term)
+hell-bent|1
+(adj)|resolute (similar term)
+hell-kite|1
+(noun)|hell-rooster|gamecock|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+hell-rooster|1
+(noun)|hell-kite|gamecock|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+hell dust|1
+(noun)|big H|nose drops|smack|thunder|skag|scag|heroin (generic term)|diacetylmorphine (generic term)
+hell on earth|1
+(noun)|hell|hellhole|snake pit|the pits|inferno|region (generic term)|part (generic term)
+hell raising|1
+(noun)|raising hell|aggression (generic term)
+hell to pay|1
+(noun)|consequence (generic term)|import (generic term)|moment (generic term)
+helladic civilisation|1
+(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+helladic civilization|1
+(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+helladic culture|1
+(noun)|Helladic civilization|Helladic civilisation|Helladic culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+hellbender|1
+(noun)|mud puppy|Cryptobranchus alleganiensis|salamander (generic term)
+hellcat|1
+(noun)|vixen|harpy|unpleasant woman (generic term)|disagreeable woman (generic term)
+hellebore|2
+(noun)|false hellebore|liliaceous plant (generic term)
+(noun)|poisonous plant (generic term)
+helleborine|2
+(noun)|rattlesnake plantain|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+helleborus|1
+(noun)|Helleborus|genus Helleborus|magnoliid dicot genus (generic term)
+helleborus foetidus|1
+(noun)|stinking hellebore|bear's foot|setterwort|Helleborus foetidus|hellebore (generic term)
+helleborus niger|1
+(noun)|Christmas rose|winter rose|black hellebore|Helleborus niger|hellebore (generic term)
+helleborus orientalis|1
+(noun)|lenten rose|black hellebore|Helleborus orientalis|hellebore (generic term)
+helleborus viridis|1
+(noun)|green hellebore|Helleborus viridis|hellebore (generic term)
+hellene|1
+(noun)|Greek|Hellene|European (generic term)
+hellenic|4
+(adj)|Greco-Roman|Graeco-Roman|Hellenic|classical (similar term)
+(adj)|Hellenic|Hellenistic|Hellenistical|principle (related term)
+(adj)|Greek|Grecian|Hellenic|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Greek|Hellenic|Hellenic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+hellenic language|1
+(noun)|Greek|Hellenic|Hellenic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+hellenic republic|1
+(noun)|Greece|Hellenic Republic|Ellas|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+hellenism|1
+(noun)|Hellenism|principle (generic term)
+hellenistic|1
+(adj)|Hellenic|Hellenistic|Hellenistical|principle (related term)
+hellenistical|1
+(adj)|Hellenic|Hellenistic|Hellenistical|principle (related term)
+heller|4
+(noun)|haler|Slovakian monetary unit (generic term)
+(noun)|haler|Czech monetary unit (generic term)
+(noun)|Heller|Joseph Heller|writer (generic term)|author (generic term)
+(noun)|hellion|devil|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+helleri|1
+(noun)|swordtail|topminnow|Xyphophorus helleri|cyprinodont (generic term)
+hellespont|1
+(noun)|Dardanelles|Canakkale Bogazi|Hellespont|strait (generic term)|sound (generic term)
+hellfire|1
+(noun)|red region|Hell (generic term)|perdition (generic term)|Inferno (generic term)|infernal region (generic term)|nether region (generic term)|pit (generic term)
+hellgrammiate|1
+(noun)|dobson|larva (generic term)
+hellhole|1
+(noun)|hell|hell on earth|snake pit|the pits|inferno|region (generic term)|part (generic term)
+hellhound|2
+(noun)|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+(noun)|Cerberus|mythical monster (generic term)|mythical creature (generic term)
+hellion|1
+(noun)|heller|devil|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+hellish|2
+(adj)|beastly|god-awful|unpleasant (similar term)
+(adj)|demonic|diabolic|diabolical|fiendish|infernal|satanic|unholy|evil (similar term)
+hellishly|1
+(adv)|infernally
+hellman|1
+(noun)|Hellman|Lillian Hellman|dramatist (generic term)|playwright (generic term)
+hello|1
+(noun)|hullo|hi|howdy|how-do-you-do|greeting (generic term)|salutation (generic term)
+helm|2
+(noun)|steering system (generic term)|steering mechanism (generic term)
+(noun)|leadership (generic term)|leading (generic term)
+helmet|2
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|headdress (generic term)|headgear (generic term)
+helmet-shaped|1
+(adj)|convex (similar term)|bulging (similar term)
+helmet flower|1
+(noun)|monkshood|helmetflower|Aconitum napellus|aconite (generic term)
+helmet orchid|2
+(noun)|greenhood|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|helmetflower|orchid (generic term)|orchidaceous plant (generic term)
+helmeted|1
+(adj)|equipped (similar term)|equipt (similar term)
+helmetflower|3
+(noun)|skullcap|herb (generic term)|herbaceous plant (generic term)
+(noun)|helmet orchid|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|monkshood|helmet flower|Aconitum napellus|aconite (generic term)
+helmholtz|1
+(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist (generic term)|physicist (generic term)
+helminth|1
+(noun)|parasitic worm|worm (generic term)
+helminthiasis|1
+(noun)|infestation (generic term)
+helminthic|2
+(adj)|anthelmintic|anthelminthic|parasiticidal|healthful (similar term)
+(noun)|vermifuge|anthelmintic|anthelminthic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+helminthostachys|1
+(noun)|Helminthostachys|genus Helminthostachys|fern genus (generic term)
+helminthostachys zeylanica|1
+(noun)|flowering fern|Helminthostachys zeylanica|fern (generic term)
+helmsman|1
+(noun)|steersman|steerer|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+helmut heinrich waldemar schmidt|1
+(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman (generic term)|solon (generic term)|national leader (generic term)
+helmut schmidt|1
+(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman (generic term)|solon (generic term)|national leader (generic term)
+heloderma|1
+(noun)|Heloderma|genus Heloderma|reptile genus (generic term)
+heloderma horridum|1
+(noun)|beaded lizard|Mexican beaded lizard|Heloderma horridum|venomous lizard (generic term)
+heloderma suspectum|1
+(noun)|Gila monster|Heloderma suspectum|venomous lizard (generic term)
+helodermatidae|1
+(noun)|Helodermatidae|family Helodermatidae|reptile family (generic term)
+heloise|1
+(noun)|Heloise|abbess (generic term)|mother superior (generic term)|prioress (generic term)
+helot|1
+(noun)|serf|villein|thrall (generic term)
+helotiaceae|1
+(noun)|Helotiaceae|family Helotiaceae|fungus family (generic term)
+helotiales|1
+(noun)|Helotiales|order Helotiales|fungus order (generic term)
+helotium|1
+(noun)|Helotium|genus Helotium|fungus genus (generic term)
+help|12
+(noun)|aid|assist|assistance|activity (generic term)
+(noun)|aid|assistance|resource (generic term)
+(noun)|avail|service|helpfulness (generic term)
+(noun)|assistant|helper|supporter|worker (generic term)
+(verb)|assist|aid|support (generic term)|back up (generic term)
+(verb)|facilitate|serve (generic term)
+(verb)|aid|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|help oneself|refrain (generic term)|forbear (generic term)
+(verb)|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|serve|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|avail|exploit (generic term)|work (generic term)
+help desk|1
+(noun)|helpdesk|service (generic term)
+help oneself|1
+(verb)|help|refrain (generic term)|forbear (generic term)
+help out|1
+(verb)|help (generic term)|assist (generic term)|aid (generic term)
+helpdesk|1
+(noun)|help desk|service (generic term)
+helper|2
+(noun)|assistant|help|supporter|worker (generic term)
+(noun)|benefactor|good person (generic term)
+helper cell|1
+(noun)|helper T cell|CD4 T cell|CD4 cell|T cell (generic term)|T lymphocyte (generic term)
+helper t cell|1
+(noun)|helper T cell|helper cell|CD4 T cell|CD4 cell|T cell (generic term)|T lymphocyte (generic term)
+helpful|3
+(adj)|accommodating (similar term)|adjuvant (similar term)|assistive (similar term)|face-saving (similar term)|facilitative (similar term)|facilitatory (similar term)|implemental (similar term)|instrumental (similar term)|subservient (similar term)|laborsaving (similar term)|laboursaving (similar term)|ministering (similar term)|ministrant (similar term)|attending (similar term)|reformative (similar term)|reformatory (similar term)|right-hand (similar term)|stabilizing (similar term)|stabilising (similar term)|steadying (similar term)|accommodating (related term)|accommodative (related term)|cooperative (related term)|encouraging (related term)|useful (related term)|utile (related term)|unhelpful (antonym)
+(adj)|useful (similar term)|utile (similar term)
+(adj)|cooperative (similar term)
+helpfully|1
+(adv)|unhelpfully (antonym)
+helpfulness|2
+(noun)|utility (generic term)|usefulness (generic term)
+(noun)|kindliness|friendliness (generic term)
+helping|1
+(noun)|portion|serving|small indefinite quantity (generic term)|small indefinite amount (generic term)
+helping hand|1
+(noun)|hand|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+helpless|3
+(adj)|incapacitated|powerless (similar term)
+(adj)|lost|hopeless (similar term)
+(adj)|dependent (similar term)
+helplessly|1
+(adv)|impotently|unable to help
+helplessness|3
+(noun)|weakness|impuissance|powerlessness (generic term)|impotence (generic term)|impotency (generic term)
+(noun)|dependence (generic term)|dependance (generic term)|dependency (generic term)
+(noun)|depression (generic term)
+helpmate|1
+(noun)|helpmeet|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+helpmeet|1
+(noun)|helpmate|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+helsingfors|1
+(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital (generic term)|port (generic term)
+helsinki|1
+(noun)|Helsinki|Helsingfors|capital of Finland|Finnish capital|national capital (generic term)|port (generic term)
+helter-skelter|3
+(adj)|chaotic|disorganized (similar term)|disorganised (similar term)
+(adj)|pell-mell|hurried (similar term)
+(adv)|every which way
+helve|1
+(noun)|haft|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+helvella|1
+(noun)|false morel (generic term)
+helvella acetabulum|1
+(noun)|Helvella acetabulum|helvella (generic term)
+helvella crispa|1
+(noun)|Helvella crispa|miter mushroom|helvella (generic term)
+helvella sulcata|1
+(noun)|Helvella sulcata|helvella (generic term)
+helvellaceae|1
+(noun)|Helvellaceae|family Helvellaceae|fungus family (generic term)
+helvetica|1
+(noun)|sans serif|Helvetica|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+helwingia|1
+(noun)|Helwingia|genus Helwingia|rosid dicot genus (generic term)
+helxine|1
+(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus (generic term)|magnoliopsid genus (generic term)
+helxine soleirolia|1
+(noun)|baby's tears|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover (generic term)|ground cover (generic term)
+hem|3
+(noun)|lap (generic term)|overlap (generic term)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+hem and haw|1
+(verb)|hesitate (generic term)|pause (generic term)
+hem in|2
+(verb)|surround (generic term)|skirt (generic term)|border (generic term)
+(verb)|besiege|beleaguer|surround|circumvent|attack (generic term)|assail (generic term)
+hemachatus|1
+(noun)|Hemachatus|genus Hemachatus|reptile genus (generic term)
+hemachatus haemachatus|1
+(noun)|ringhals|rinkhals|spitting snake|Hemachatus haemachatus|elapid (generic term)|elapid snake (generic term)
+hemagglutinate|1
+(verb)|haemagglutinate|agglutinate (generic term)
+hemagglutination|1
+(noun)|haemagglutination|agglutination (generic term)
+hemal|1
+(adj)|haemal|hematal|haematal|vessel|vas (related term)
+hemal arch|1
+(noun)|haemal arch|arch (generic term)
+hemangioma|1
+(noun)|haemangioma|angioma (generic term)
+hemangioma simplex|1
+(noun)|strawberry|strawberry mark|birthmark (generic term)|nevus (generic term)
+hematal|1
+(adj)|hemal|haemal|haematal|vessel|vas (related term)
+hematemesis|1
+(noun)|haematemesis|vomit (generic term)|vomiting (generic term)|emesis (generic term)|regurgitation (generic term)|disgorgement (generic term)|puking (generic term)
+hematic|1
+(adj)|hemic|haemic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+hematin|1
+(noun)|heme|haem|haemitin|protoheme|pigment (generic term)
+hematinic|1
+(noun)|haematinic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+hematite|1
+(noun)|haematite|iron ore (generic term)
+hematocele|1
+(noun)|haematocele|hematocoele|haematocoele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+hematochezia|1
+(noun)|haematochezia|defecation (generic term)|laxation (generic term)|shitting (generic term)
+hematochrome|1
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+hematocoele|1
+(noun)|hematocele|haematocele|haematocoele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+hematocolpometra|1
+(noun)|haematocolpometra|disorder (generic term)|upset (generic term)
+hematocolpos|1
+(noun)|haematocolpos|disorder (generic term)|upset (generic term)
+hematocrit|2
+(noun)|haematocrit|packed cell volume|ratio (generic term)
+(noun)|haematocrit|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|centrifuge (generic term)|extractor (generic term)|separator (generic term)
+hematocyst|1
+(noun)|hemorrhagic cyst|blood cyst|cyst (generic term)
+hematocytopenia|1
+(noun)|haematocytopenia|cytopenia (generic term)
+hematocyturia|1
+(noun)|haematocyturia|hematuria (generic term)|haematuria (generic term)
+hematogenesis|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+hematogenic|1
+(adj)|hematopoietic|haematopoietic|hemopoietic|haemopoietic|haematogenic|organic process|biological process (related term)
+hematohiston|1
+(noun)|globin|haematohiston|simple protein (generic term)
+hematoidin|1
+(noun)|bilirubin|haematoidin|animal pigment (generic term)
+hematologic|1
+(adj)|haematological|hematological|medicine|medical specialty (related term)
+hematological|1
+(adj)|hematologic|haematological|medicine|medical specialty (related term)
+hematologist|1
+(noun)|haematologist|specialist (generic term)|medical specialist (generic term)
+hematology|1
+(noun)|haematology|medicine (generic term)|medical specialty (generic term)
+hematolysis|1
+(noun)|hemolysis|haemolysis|haematolysis|lysis (generic term)
+hematoma|1
+(noun)|haematoma|intumescence (generic term)|intumescency (generic term)
+hematopoeitic stem cell|1
+(noun)|stem cell (generic term)
+hematopoiesis|1
+(noun)|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+hematopoietic|1
+(adj)|haematopoietic|hemopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process (related term)
+hematuria|1
+(noun)|haematuria|symptom (generic term)
+heme|1
+(noun)|haem|hematin|haemitin|protoheme|pigment (generic term)
+hemeralopia|1
+(noun)|day blindness|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+hemerobiid|1
+(noun)|brown lacewing|hemerobiid fly|lacewing (generic term)|lacewing fly (generic term)
+hemerobiid fly|1
+(noun)|brown lacewing|hemerobiid|lacewing (generic term)|lacewing fly (generic term)
+hemerobiidae|1
+(noun)|Hemerobiidae|family Hemerobiidae|arthropod family (generic term)
+hemerocallidaceae|1
+(noun)|Hemerocallidaceae|family Hemerocallidaceae|liliid monocot family (generic term)
+hemerocallis|1
+(noun)|Hemerocallis|genus Hemerocallis|liliid monocot genus (generic term)
+hemerocallis flava|1
+(noun)|lemon lily|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily (generic term)|daylily (generic term)
+hemerocallis lilio-asphodelus|1
+(noun)|lemon lily|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily (generic term)|daylily (generic term)
+hemiacetal|1
+(noun)|organic compound (generic term)
+hemianopia|1
+(noun)|hemianopsia|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+hemianopic scotoma|1
+(noun)|scotoma (generic term)
+hemianopsia|1
+(noun)|hemianopia|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+hemiascomycetes|1
+(noun)|Hemiascomycetes|class Hemiascomycetes|class (generic term)
+hemic|1
+(adj)|haemic|hematic|haematic|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+hemicrania|1
+(noun)|migraine|megrim|sick headache|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+hemicycle|1
+(noun)|semicircle|plane figure (generic term)|two-dimensional figure (generic term)
+hemidemisemiquaver|1
+(noun)|sixty-fourth note|note (generic term)|musical note (generic term)|tone (generic term)
+hemiepiphyte|1
+(noun)|semiepiphyte|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+hemigalus|1
+(noun)|Hemigalus|genus Hemigalus|mammal genus (generic term)
+hemigalus hardwickii|1
+(noun)|banded palm civet|Hemigalus hardwickii|civet (generic term)|civet cat (generic term)
+hemigrammus|1
+(noun)|Hemigrammus|genus Hemigrammus|fish genus (generic term)
+hemimetabola|1
+(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class (generic term)
+hemimetabolic|1
+(adj)|hemimetabolous|hemimetamorphous|hemimetamorphic|metamorphic (similar term)
+hemimetabolism|1
+(noun)|hemimetamorphosis|hemimetaboly|metamorphosis (generic term)|metabolism (generic term)
+hemimetabolous|1
+(adj)|hemimetabolic|hemimetamorphous|hemimetamorphic|metamorphic (similar term)
+hemimetaboly|1
+(noun)|hemimetamorphosis|hemimetabolism|metamorphosis (generic term)|metabolism (generic term)
+hemimetamorphic|1
+(adj)|hemimetabolous|hemimetabolic|hemimetamorphous|metamorphic (similar term)
+hemimetamorphosis|1
+(noun)|hemimetabolism|hemimetaboly|metamorphosis (generic term)|metabolism (generic term)
+hemimetamorphous|1
+(adj)|hemimetabolous|hemimetabolic|hemimetamorphic|metamorphic (similar term)
+hemimorphite|1
+(noun)|calamine|mineral (generic term)
+hemin|1
+(noun)|protohemin|chloride (generic term)
+heming|1
+(noun)|Heming|Hemminge|John Heming|John Hemminge|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hemingway|1
+(noun)|Hemingway|Ernest Hemingway|writer (generic term)|author (generic term)
+hemingwayesque|1
+(adj)|Hemingwayesque|writer|author (related term)
+hemiparasite|1
+(noun)|semiparasite|parasitic plant (generic term)
+hemiparasitic|1
+(adj)|parasitic plant (related term)
+hemiplegia|1
+(noun)|unilateral paralysis|paralysis (generic term)|palsy (generic term)
+hemiplegic|1
+(noun)|handicapped person (generic term)
+hemipode|1
+(noun)|button quail|button-quail|bustard quail|wading bird (generic term)|wader (generic term)
+hemiprocnidae|1
+(noun)|Hemiprocnidae|family Hemiprocnidae|bird family (generic term)
+hemiptera|1
+(noun)|Hemiptera|order Hemiptera|animal order (generic term)
+hemipteran|1
+(noun)|hemipterous insect|bug|hemipteron|insect (generic term)
+hemipteron|1
+(noun)|hemipterous insect|bug|hemipteran|insect (generic term)
+hemipteronatus|1
+(noun)|Hemipteronatus|genus Hemipteronatus|fish genus (generic term)
+hemipteronatus novacula|1
+(noun)|pearly razorfish|Hemipteronatus novacula|razor fish (generic term)|razor-fish (generic term)
+hemipterous insect|1
+(noun)|bug|hemipteran|hemipteron|insect (generic term)
+hemiramphidae|1
+(noun)|Hemiramphidae|family Hemiramphidae|fish family (generic term)
+hemisphere|3
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|subfigure (generic term)
+(noun)|cerebral hemisphere|neural structure (generic term)
+hemispheric|1
+(adj)|neural structure (related term)
+hemispherical|1
+(adj)|subfigure (related term)
+hemitripterus|1
+(noun)|Hemitripterus|genus Hemitripterus|fish genus (generic term)
+hemitripterus americanus|1
+(noun)|sea raven|Hemitripterus americanus|sculpin (generic term)
+hemizygos vein|1
+(noun)|hemizygous vein|vena hemizygos|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+hemizygous vein|1
+(noun)|hemizygos vein|vena hemizygos|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+hemline|1
+(noun)|line (generic term)
+hemlock|4
+(noun)|plant toxin (generic term)|phytotoxin (generic term)
+(noun)|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+(noun)|wood (generic term)
+(noun)|hemlock tree|conifer (generic term)|coniferous tree (generic term)
+hemlock tree|1
+(noun)|hemlock|conifer (generic term)|coniferous tree (generic term)
+hemlock water dropwort|1
+(noun)|water dropwort|Oenanthe crocata|poisonous plant (generic term)
+hemming-stitch|1
+(noun)|stitch (generic term)
+hemminge|1
+(noun)|Heming|Hemminge|John Heming|John Hemminge|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hemochromatosis|1
+(noun)|iron-storage disease|iron overload|bronzed diabetes|pathology (generic term)
+hemodialysis|1
+(noun)|haemodialysis|dialysis (generic term)
+hemodialyzer|1
+(noun)|artificial kidney|dialyzer (generic term)|dialysis machine (generic term)
+hemodynamic|1
+(adj)|physiology (related term)
+hemodynamics|1
+(noun)|physiology (generic term)
+hemofil|1
+(noun)|antihemophilic factor|antihaemophilic factor|antihemophilic globulin|antihaemophilic globulin|factor VIII|Hemofil|coagulation factor (generic term)|clotting factor (generic term)
+hemogenesis|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+hemoglobin|1
+(noun)|haemoglobin|Hb|hemoprotein (generic term)|haemoprotein (generic term)
+hemoglobinemia|1
+(noun)|haemoglobinemia|symptom (generic term)
+hemoglobinopathy|1
+(noun)|haemoglobinopathy|blood disease (generic term)|blood disorder (generic term)
+hemoglobinuria|1
+(noun)|haemoglobinuria|symptom (generic term)
+hemolysin|1
+(noun)|haemolysin|erythrolysin|erythrocytolysin|organic compound (generic term)
+hemolysis|1
+(noun)|haemolysis|hematolysis|haematolysis|lysis (generic term)
+hemolytic|1
+(adj)|haemolytic|lysis (related term)
+hemolytic anemia|1
+(noun)|haemolytic anaemia|anemia (generic term)|anaemia (generic term)
+hemophile|1
+(noun)|hemophiliac|haemophiliac|bleeder|haemophile|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+hemophilia|1
+(noun)|haemophilia|bleeder's disease|blood disease (generic term)|blood disorder (generic term)|sex-linked disorder (generic term)
+hemophilia a|1
+(noun)|hemophilia A|haemophilia A|classical hemophilia|classical haemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+hemophilia b|1
+(noun)|hemophilia B|haemophilia B|Christmas disease|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+hemophiliac|1
+(noun)|haemophiliac|bleeder|hemophile|haemophile|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+hemophilic|1
+(adj)|haemophilic|blood disease|blood disorder|sex-linked disorder (related term)
+hemopoiesis|1
+(noun)|hematopoiesis|haematopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|sanguification|organic process (generic term)|biological process (generic term)
+hemopoietic|1
+(adj)|hematopoietic|haematopoietic|haemopoietic|hematogenic|haematogenic|organic process|biological process (related term)
+hemoprotein|1
+(noun)|haemoprotein|conjugated protein (generic term)|compound protein (generic term)
+hemoptysis|1
+(noun)|haemoptysis|symptom (generic term)
+hemorrhage|2
+(noun)|bleeding|haemorrhage|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(verb)|shed blood|bleed|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+hemorrhagic|1
+(adj)|haemorrhagic|injury|hurt|harm|trauma (related term)
+hemorrhagic cyst|1
+(noun)|blood cyst|hematocyst|cyst (generic term)
+hemorrhagic fever|1
+(noun)|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection (generic term)|virus infection (generic term)
+hemorrhagic septicemia|1
+(noun)|pasteurellosis|animal disease (generic term)
+hemorrhagic stroke|1
+(noun)|haemorrhagic stroke|stroke (generic term)|apoplexy (generic term)|cerebrovascular accident (generic term)|CVA (generic term)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+hemorrhoid|1
+(noun)|haemorrhoid|piles|pain (generic term)|hurting (generic term)
+hemorrhoidal vein|1
+(noun)|rectal vein|vena rectalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+hemorrhoidectomy|1
+(noun)|haemorrhoidectomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+hemosiderin|1
+(noun)|haemosiderin|pigment (generic term)
+hemosiderosis|1
+(noun)|haemosiderosis|symptom (generic term)
+hemostasia|1
+(noun)|hemostasis|haemostasis|haemostasia|stop (generic term)|stoppage (generic term)
+hemostasis|1
+(noun)|haemostasis|hemostasia|haemostasia|stop (generic term)|stoppage (generic term)
+hemostat|1
+(noun)|haemostat|surgical instrument (generic term)
+hemostatic|1
+(adj)|styptic|astringent (similar term)
+hemothorax|1
+(noun)|haemothorax|congestion (generic term)
+hemp|3
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+(noun)|cannabis|shrub (generic term)|bush (generic term)
+(noun)|hangman's rope|hangman's halter|halter|hempen necktie|rope (generic term)
+hemp agrimony|1
+(noun)|Eupatorium cannabinum|herb (generic term)|herbaceous plant (generic term)
+hemp family|1
+(noun)|Cannabidaceae|family Cannabidaceae|dicot family (generic term)|magnoliopsid family (generic term)
+hemp nettle|1
+(noun)|dead nettle|Galeopsis tetrahit|herb (generic term)|herbaceous plant (generic term)
+hemp willow|1
+(noun)|common osier|velvet osier|Salix viminalis|osier (generic term)
+hempen|1
+(adj)|fibrous|tough (similar term)
+hempen necktie|1
+(noun)|hangman's rope|hangman's halter|halter|hemp|rope (generic term)
+hemstitch|3
+(noun)|hemstitching|stitch (generic term)
+(noun)|embroidery (generic term)|fancywork (generic term)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+hemstitching|1
+(noun)|hemstitch|stitch (generic term)
+hen|4
+(noun)|biddy|chicken (generic term)|Gallus gallus (generic term)
+(noun)|bird (generic term)
+(noun)|chicken (generic term)|poulet (generic term)|volaille (generic term)
+(noun)|female (generic term)
+hen-of-the-woods|1
+(noun)|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus (generic term)
+hen-peck|1
+(verb)|nag|peck|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+hen harrier|1
+(noun)|marsh hawk|northern harrier|Circus cyaneus|harrier (generic term)
+hen hawk|1
+(noun)|chicken hawk|hawk (generic term)
+hen of the woods|1
+(noun)|hen-of-the-woods|Polyporus frondosus|Grifola frondosa|fungus (generic term)
+hen party|1
+(noun)|party (generic term)
+hen yard|1
+(noun)|chicken yard|chicken run|fowl run|yard (generic term)
+henbane|1
+(noun)|black henbane|stinking nightshade|Hyoscyamus niger|herb (generic term)|herbaceous plant (generic term)
+henbit|1
+(noun)|Lamium amplexicaule|dead nettle (generic term)
+hence|1
+(adv)|therefore|thence|thus
+henceforth|1
+(adv)|henceforward
+henceforward|1
+(adv)|henceforth
+henchman|1
+(noun)|confederate|collaborator|partner in crime|accessory (generic term)|accessary (generic term)
+hencoop|1
+(noun)|chicken coop|coop|henhouse|farm building (generic term)
+hendiadys|1
+(noun)|rhetorical device (generic term)
+hendrik antoon lorentz|1
+(noun)|Lorentz|Hendrik Antoon Lorentz|physicist (generic term)
+hendrik frensch verwoerd|1
+(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman (generic term)|solon (generic term)|national leader (generic term)
+hendrik petrus berlage|1
+(noun)|Berlage|Hendrik Petrus Berlage|architect (generic term)|designer (generic term)
+hendrik verwoerd|1
+(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman (generic term)|solon (generic term)|national leader (generic term)
+hendrix|1
+(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist (generic term)|guitar player (generic term)
+henhouse|1
+(noun)|chicken coop|coop|hencoop|farm building (generic term)
+henna|2
+(noun)|hair dye (generic term)|hair coloring (generic term)
+(verb)|tint (generic term)|tinct (generic term)|tinge (generic term)|touch (generic term)
+henpecked|1
+(adj)|dominated|submissive (similar term)
+henri becquerel|1
+(noun)|Becquerel|Henri Becquerel|Antoine Henri Becquerel|physicist (generic term)
+henri bergson|1
+(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher (generic term)
+henri clemens van de velde|1
+(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect (generic term)|designer (generic term)
+henri emile benoit matisse|1
+(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter (generic term)
+henri labrouste|1
+(noun)|Labrouste|Henri Labrouste|architect (generic term)|designer (generic term)
+henri louis bergson|1
+(noun)|Bergson|Henri Bergson|Henri Louis Bergson|philosopher (generic term)
+henri matisse|1
+(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter (generic term)
+henri pitot|1
+(noun)|Pitot|Henri Pitot|physicist (generic term)
+henri rene albert guy de maupassant|1
+(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer (generic term)|author (generic term)
+henri rousseau|1
+(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter (generic term)
+henri toulouse-lautrec|1
+(noun)|Toulouse-Lautrec|Henri Toulouse-Lautrec|painter (generic term)
+henri van de velde|1
+(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect (generic term)|designer (generic term)
+henriette rosine bernard|1
+(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress (generic term)
+henrik ibsen|1
+(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet (generic term)|dramatist (generic term)|playwright (generic term)
+henrik johan ibsen|1
+(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet (generic term)|dramatist (generic term)|playwright (generic term)
+henroost|1
+(noun)|roost (generic term)
+henry|4
+(noun)|H|inductance unit (generic term)
+(noun)|Henry|William Henry|chemist (generic term)
+(noun)|Henry|Patrick Henry|American Revolutionary leader (generic term)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+(noun)|Henry|Joseph Henry|physicist (generic term)
+henry's law|1
+(noun)|Henry's law|law (generic term)|law of nature (generic term)
+henry alfred kissinger|1
+(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat (generic term)|diplomatist (generic term)
+henry beauclerc|1
+(noun)|Henry I|Henry Beauclerc|King of England (generic term)|King of Great Britain (generic term)
+henry bolingbroke|1
+(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England (generic term)|King of Great Britain (generic term)
+henry cavendish|1
+(noun)|Cavendish|Henry Cavendish|chemist (generic term)|physicist (generic term)
+henry clay|1
+(noun)|Clay|Henry Clay|the Great Compromiser|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+henry clay frick|1
+(noun)|Frick|Henry Clay Frick|industrialist (generic term)
+henry david thoreau|1
+(noun)|Thoreau|Henry David Thoreau|writer (generic term)|author (generic term)
+henry engelhard steinway|1
+(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker (generic term)
+henry fielding|1
+(noun)|Fielding|Henry Fielding|writer (generic term)|author (generic term)
+henry fonda|1
+(noun)|Fonda|Henry Fonda|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+henry ford|1
+(noun)|Ford|Henry Ford|industrialist (generic term)
+henry ford ii|1
+(noun)|Ford|Henry Ford II|industrialist (generic term)
+henry graham greene|1
+(noun)|Greene|Graham Greene|Henry Graham Greene|writer (generic term)|author (generic term)
+henry hobson richardson|1
+(noun)|Richardson|Henry Hobson Richardson|architect (generic term)|designer (generic term)
+henry hubert turner|1
+(noun)|Turner|Henry Hubert Turner|endocrinologist (generic term)
+henry hudson|1
+(noun)|Hudson|Henry Hudson|navigator (generic term)
+henry i|1
+(noun)|Henry I|Henry Beauclerc|King of England (generic term)|King of Great Britain (generic term)
+henry ii|2
+(noun)|Henry II|King of France (generic term)
+(noun)|Henry II|King of England (generic term)|King of Great Britain (generic term)
+henry iii|2
+(noun)|Henry III|King of France (generic term)
+(noun)|Henry III|King of England (generic term)|King of Great Britain (generic term)
+henry iv|3
+(noun)|Henry IV|Henry of Navarre|Henry the Great|King of France (generic term)
+(noun)|Henry IV|King of the Germans (generic term)|Holy Roman Emperor (generic term)
+(noun)|Henry IV|Bolingbroke|Henry Bolingbroke|King of England (generic term)|King of Great Britain (generic term)
+henry james|1
+(noun)|James|Henry James|writer (generic term)|author (generic term)
+henry john heinz|1
+(noun)|Heinz|Henry John Heinz|industrialist (generic term)
+henry kenneth alfred russell|1
+(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+henry kissinger|1
+(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat (generic term)|diplomatist (generic term)
+henry laurens|1
+(noun)|Laurens|Henry Laurens|American Revolutionary leader (generic term)
+henry le chatelier|1
+(noun)|le Chatelier|Henry le Chatelier|chemist (generic term)
+henry lee|1
+(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier (generic term)
+henry louis aaron|1
+(noun)|Aaron|Henry Louis Aaron|Hank Aaron|ballplayer (generic term)|baseball player (generic term)
+henry louis gehrig|1
+(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer (generic term)|baseball player (generic term)
+henry louis mencken|1
+(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist (generic term)|literary critic (generic term)
+henry luce|1
+(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher (generic term)
+henry m. robert|1
+(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian (generic term)
+henry m. stanley|1
+(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist (generic term)|explorer (generic term)|adventurer (generic term)
+henry martyn robert|1
+(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian (generic term)
+henry miller|1
+(noun)|Miller|Henry Miller|Henry Valentine Miller|writer (generic term)|author (generic term)
+henry moore|1
+(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+henry morgan|1
+(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+henry norris russell|1
+(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+henry of navarre|1
+(noun)|Henry IV|Henry of Navarre|Henry the Great|King of France (generic term)
+henry oscar houghton|1
+(noun)|Houghton|Henry Oscar Houghton|publisher (generic term)
+henry purcell|1
+(noun)|Purcell|Henry Purcell|organist (generic term)|composer (generic term)
+henry robinson luce|1
+(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher (generic term)
+henry rowe schoolcraft|1
+(noun)|Schoolcraft|Henry Rowe Schoolcraft|geologist (generic term)|ethnologist (generic term)|explorer (generic term)|adventurer (generic term)
+henry russell|1
+(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+henry spencer moore|1
+(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+henry steinway|1
+(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker (generic term)
+henry sweet|1
+(noun)|Sweet|Henry Sweet|phonetician (generic term)
+henry the great|1
+(noun)|Henry IV|Henry of Navarre|Henry the Great|King of France (generic term)
+henry tudor|1
+(noun)|Henry VII|Henry Tudor|King of England (generic term)|King of Great Britain (generic term)
+henry v|1
+(noun)|Henry V|King of England (generic term)|King of Great Britain (generic term)
+henry valentine miller|1
+(noun)|Miller|Henry Miller|Henry Valentine Miller|writer (generic term)|author (generic term)
+henry vi|1
+(noun)|Henry VI|King of England (generic term)|King of Great Britain (generic term)
+henry vii|2
+(noun)|Henry VII|King of the Germans (generic term)|Holy Roman Emperor (generic term)
+(noun)|Henry VII|Henry Tudor|King of England (generic term)|King of Great Britain (generic term)
+henry viii|1
+(noun)|Henry VIII|King of England (generic term)|King of Great Britain (generic term)
+henry villard|1
+(noun)|Villard|Henry Villard|businessman (generic term)|man of affairs (generic term)
+henry wadsworth longfellow|1
+(noun)|Longfellow|Henry Wadsworth Longfellow|poet (generic term)
+henry ward beecher|1
+(noun)|Beecher|Henry Ward Beecher|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|abolitionist (generic term)|emancipationist (generic term)
+henry watson fowler|1
+(noun)|Fowler|Henry Watson Fowler|lexicographer (generic term)|lexicologist (generic term)
+henry wheeler shaw|1
+(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist (generic term)|humourist (generic term)
+henson|1
+(noun)|Henson|Jim Henson|puppeteer (generic term)
+hep|1
+(adj)|hip|hip to|informed (similar term)
+hepadnavirus|1
+(noun)|animal virus (generic term)
+heparin|1
+(noun)|Lipo-Hepin|Liquaemin|polysaccharide (generic term)|polyose (generic term)|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+hepatic|2
+(adj)|internal organ|viscus (related term)
+(noun)|liverwort|bryophyte (generic term)|nonvascular plant (generic term)
+hepatic artery|1
+(noun)|arteria hepatica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+hepatic coma|1
+(noun)|coma (generic term)|comatoseness (generic term)
+hepatic duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+hepatic lobe|1
+(noun)|lobe (generic term)
+hepatic portal vein|1
+(noun)|portal vein|portal|vena portae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+hepatic tanager|1
+(noun)|Piranga flava hepatica|tanager (generic term)
+hepatic vein|1
+(noun)|vena hepatica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+hepatica|2
+(noun)|liverleaf|herb (generic term)|herbaceous plant (generic term)
+(noun)|Marchantia polymorpha|liverwort (generic term)|hepatic (generic term)
+hepaticae|1
+(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class (generic term)
+hepaticopsida|1
+(noun)|Hepaticopsida|class Hepaticopsida|Hepaticae|class Hepaticae|class (generic term)
+hepatitis|1
+(noun)|infectious disease (generic term)|liver disease (generic term)
+hepatitis a|1
+(noun)|hepatitis A|infectious hepatitis|viral hepatitis (generic term)
+hepatitis a virus|1
+(noun)|hepatitis A virus|enterovirus (generic term)
+hepatitis b|1
+(noun)|hepatitis B|serum hepatitis|viral hepatitis (generic term)
+hepatitis c|1
+(noun)|hepatitis C|viral hepatitis (generic term)
+hepatitis delta|1
+(noun)|delta hepatitis|hepatitis (generic term)
+hepatocarcinoma|1
+(noun)|hepatoma|malignant hepatoma|hepatocellular carcinoma|carcinoma (generic term)
+hepatocellular carcinoma|1
+(noun)|hepatoma|malignant hepatoma|hepatocarcinoma|carcinoma (generic term)
+hepatoflavin|1
+(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+hepatojugular reflux|1
+(noun)|reflux (generic term)
+hepatolenticular degeneration|1
+(noun)|Wilson's disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+hepatoma|1
+(noun)|malignant hepatoma|hepatocarcinoma|hepatocellular carcinoma|carcinoma (generic term)
+hepatomegaly|1
+(noun)|megalohepatia|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hepatotoxic|1
+(adj)|toxic (similar term)
+hepatotoxin|1
+(noun)|toxin (generic term)
+hepburn|1
+(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress (generic term)
+hephaestus|1
+(noun)|Hephaestus|Hephaistos|Greek deity (generic term)
+hephaistos|1
+(noun)|Hephaestus|Hephaistos|Greek deity (generic term)
+heptad|1
+(noun)|seven|7|VII|sevener|septet|septenary|digit (generic term)|figure (generic term)
+heptadecanoic acid|1
+(noun)|margaric acid|saturated fatty acid (generic term)
+heptagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+heptane|1
+(noun)|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)
+hepworth|1
+(noun)|Hepworth|Barbara Hepworth|Dame Barbara Hepworth|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+hera|1
+(noun)|Hera|Here|Greek deity (generic term)
+heracles|1
+(noun)|Hercules|Heracles|Herakles|Alcides|mythical being (generic term)
+heracleum|1
+(noun)|Heracleum|genus Heracleum|rosid dicot genus (generic term)
+heracleum sphondylium|1
+(noun)|cow parsnip|hogweed|Heracleum sphondylium|herb (generic term)|herbaceous plant (generic term)
+heraclitus|1
+(noun)|Heraclitus|philosopher (generic term)
+herakles|1
+(noun)|Hercules|Heracles|Herakles|Alcides|mythical being (generic term)
+herald|5
+(noun)|trumpeter|messenger (generic term)|courier (generic term)
+(noun)|harbinger|forerunner|precursor|indication (generic term)|indicant (generic term)
+(verb)|announce|annunciate|harbinger|foretell|tell (generic term)
+(verb)|acclaim|hail|applaud (generic term)
+(verb)|hail|greet (generic term)|recognize (generic term)|recognise (generic term)
+heralded|1
+(adj)|publicized (similar term)|publicised (similar term)
+heraldic|2
+(adj)|communicative (similar term)|communicatory (similar term)
+(adj)|heraldist|emblem (related term)
+heraldic bearing|1
+(noun)|charge|bearing|armorial bearing|heraldry (generic term)
+heraldist|1
+(adj)|heraldic|emblem (related term)
+heraldry|2
+(noun)|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|emblem (generic term)
+herat|1
+(noun)|Herat|city (generic term)|metropolis (generic term)|urban center (generic term)
+herb|2
+(noun)|herbaceous plant|vascular plant (generic term)|tracheophyte (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+herb bennet|1
+(noun)|cloveroot|clover-root|wood avens|Geum urbanum|avens (generic term)
+herb christopher|1
+(noun)|baneberry|cohosh|herb Christopher|poisonous plant (generic term)
+herb doctor|1
+(noun)|herbalist|therapist (generic term)|healer (generic term)
+herb garden|1
+(noun)|garden (generic term)
+herb mercury|1
+(noun)|herbs mercury|boys-and-girls|Mercurialis annua|herb (generic term)|herbaceous plant (generic term)
+herb of grace|1
+(noun)|rue|Ruta graveolens|herb (generic term)|herbaceous plant (generic term)
+herb paris|1
+(noun)|herb Paris|Paris quadrifolia|herb (generic term)|herbaceous plant (generic term)
+herb robert|1
+(noun)|herbs robert|herb roberts|Geranium robertianum|cranesbill (generic term)|crane's bill (generic term)
+herb roberts|1
+(noun)|herb robert|herbs robert|Geranium robertianum|cranesbill (generic term)|crane's bill (generic term)
+herb simon|1
+(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist (generic term)|economic expert (generic term)|psychologist (generic term)
+herb tea|1
+(noun)|herbal tea|herbal|tea (generic term)
+herba impia|1
+(noun)|Filago germanica|cotton rose (generic term)|cudweed (generic term)|filago (generic term)
+herbaceous|1
+(adj)|nonwoody (similar term)
+herbaceous plant|1
+(noun)|herb|vascular plant (generic term)|tracheophyte (generic term)
+herbage|1
+(noun)|pasturage|herb (generic term)|herbaceous plant (generic term)
+herbal|2
+(adj)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning (related term)
+(noun)|herb tea|herbal tea|tea (generic term)
+herbal medicine|2
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(noun)|alternative medicine (generic term)
+herbal tea|1
+(noun)|herb tea|herbal|tea (generic term)
+herbal therapy|1
+(noun)|phytotherapy|botanical medicine|therapy (generic term)
+herbalist|1
+(noun)|herb doctor|therapist (generic term)|healer (generic term)
+herbarium|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+herbart|1
+(noun)|Herbart|Johann Friedrich Herbart|philosopher (generic term)
+herbert|1
+(noun)|Herbert|Victor Herbert|musician (generic term)
+herbert a. simon|1
+(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist (generic term)|economic expert (generic term)|psychologist (generic term)
+herbert alexander simon|1
+(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist (generic term)|economic expert (generic term)|psychologist (generic term)
+herbert blythe|1
+(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+herbert clark hoover|1
+(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+herbert george wells|1
+(noun)|Wells|H. G. Wells|Herbert George Wells|writer (generic term)|author (generic term)
+herbert hoover|1
+(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+herbert kitchener|1
+(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal (generic term)
+herbert marcuse|1
+(noun)|Marcuse|Herbert Marcuse|philosopher (generic term)
+herbert marshall mcluhan|1
+(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer (generic term)|author (generic term)
+herbert marx|1
+(noun)|Marx|Herbert Marx|Zeppo|comedian (generic term)|comic (generic term)
+herbert mclean evans|1
+(noun)|Evans|Herbert McLean Evans|anatomist (generic term)
+herbert spencer|1
+(noun)|Spencer|Herbert Spencer|philosopher (generic term)|sociologist (generic term)
+herbicide|1
+(noun)|weedkiller|weed killer|chemical (generic term)|chemical substance (generic term)
+herbivore|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+herbivorous|1
+(adj)|anthophagous (similar term)|anthophilous (similar term)|baccivorous (similar term)|carpophagous (similar term)|fruit-eating (similar term)|grass-eating (similar term)|plant-eating (similar term)|phytophagic (similar term)|phytophagous (similar term)|phytophilous (similar term)|saprophagous (similar term)|saprozoic (similar term)|saprophytic (similar term)|omnivorous (antonym)|insectivorous (antonym)|carnivorous (antonym)
+herbs mercury|1
+(noun)|herb mercury|boys-and-girls|Mercurialis annua|herb (generic term)|herbaceous plant (generic term)
+herbs robert|1
+(noun)|herb robert|herb roberts|Geranium robertianum|cranesbill (generic term)|crane's bill (generic term)
+herculaneum|1
+(noun)|Herculaneum|city (generic term)|metropolis (generic term)|urban center (generic term)
+herculean|2
+(adj)|powerful|superhuman (similar term)
+(adj)|difficult (similar term)|hard (similar term)
+hercules|2
+(noun)|Hercules|Heracles|Herakles|Alcides|mythical being (generic term)
+(noun)|Hercules|constellation (generic term)
+hercules'-club|2
+(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash (generic term)
+(noun)|American angelica tree|devil's walking stick|Hercules'-club|Aralia spinosa|shrub (generic term)|bush (generic term)
+hercules'-clubs|1
+(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash (generic term)
+hercules-club|1
+(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash (generic term)
+herculius|1
+(noun)|Maximian|Marcus Aurelius Valerius Maximianus|Herculius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+herd|5
+(noun)|animal group (generic term)
+(noun)|ruck|multitude (generic term)|throng (generic term)|concourse (generic term)
+(verb)|crowd|move (generic term)|displace (generic term)
+(verb)|crowd (generic term)|crowd together (generic term)
+(verb)|keep (generic term)
+herd's grass|1
+(noun)|timothy|Phleum pratense|grass (generic term)
+herder|2
+(noun)|Herder|Johann Gottfried von Herder|philosopher (generic term)
+(noun)|herdsman|drover|hired hand (generic term)|hand (generic term)|hired man (generic term)
+herdsman|1
+(noun)|herder|drover|hired hand (generic term)|hand (generic term)|hired man (generic term)
+here|5
+(adj)|present (similar term)
+(noun)|location (generic term)|there (antonym)
+(noun)|Hera|Here|Greek deity (generic term)
+(adv)|there (antonym)
+(adv)|hither|there (antonym)
+here and now|1
+(noun)|present moment|moment|present (generic term)|nowadays (generic term)
+hereabout|1
+(adv)|hereabouts
+hereabouts|1
+(adv)|hereabout
+hereafter|3
+(noun)|afterlife|life (generic term)|lifetime (generic term)|life-time (generic term)|lifespan (generic term)
+(noun)|future|futurity|time to come|time (generic term)|past (antonym)
+(adv)|hereinafter|hereunder
+hereby|1
+(adv)|herewith
+herediatry spinal ataxia|1
+(noun)|Friedreich's ataxia|ataxia (generic term)|ataxy (generic term)|dyssynergia (generic term)|motor ataxia (generic term)
+hereditament|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+hereditarianism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)|environmentalism (antonym)
+hereditary|2
+(adj)|familial|genetic|inherited|transmitted|transmissible|inheritable (similar term)|heritable (similar term)
+(adj)|ancestral|patrimonial|transmissible|inheritable (similar term)|heritable (similar term)
+hereditary cerebellar ataxia|1
+(noun)|ataxia (generic term)|ataxy (generic term)|dyssynergia (generic term)|motor ataxia (generic term)
+hereditary condition|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary disease|disease (generic term)
+hereditary disease|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|inherited disorder|hereditary condition|disease (generic term)
+hereditary motor and sensory neuropathy|1
+(noun)|Charcot-Marie-Tooth disease|neuropathy (generic term)
+hereditary pattern|1
+(noun)|inheritance|heredity (generic term)|genetic endowment (generic term)
+heredity|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|genetic endowment|property (generic term)
+hereford|1
+(noun)|Hereford|whiteface|beef (generic term)|beef cattle (generic term)
+hereinafter|1
+(adv)|hereafter|hereunder
+hereness|1
+(noun)|presence (generic term)|thereness (antonym)
+heresy|2
+(noun)|unorthodoxy|heterodoxy|orientation (generic term)|orthodoxy (antonym)
+(noun)|unorthodoxy|content (generic term)|cognitive content (generic term)|mental object (generic term)
+heretic|2
+(noun)|misbeliever|religious outcast|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+(noun)|nonconformist (generic term)|recusant (generic term)
+heretical|1
+(adj)|dissident|heterodox|unorthodox (similar term)
+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 (similar term)|hereditary (similar term)|patrimonial (similar term)|transmissible (similar term)|familial (similar term)|genetic (similar term)|hereditary (similar term)|inherited (similar term)|transmitted (similar term)|transmissible (similar term)|monogenic (similar term)|polygenic (similar term)|inheriting (similar term)|nee (similar term)|noninheritable (antonym)
+heritage|4
+(noun)|practice (generic term)
+(noun)|inheritance|attribute (generic term)
+(noun)|inheritance|transferred property (generic term)|transferred possession (generic term)
+(noun)|inheritance|acquisition (generic term)
+heritiera|1
+(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus (generic term)
+heritiera littoralis|1
+(noun)|looking-glass plant|Heritiera littoralis|angiospermous tree (generic term)|flowering tree (generic term)
+heritiera macrophylla|1
+(noun)|looking glass tree|Heritiera macrophylla|angiospermous tree (generic term)|flowering tree (generic term)
+heritiera trifoliolata|1
+(noun)|red beech|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+heritor|1
+(noun)|heir|inheritor|recipient (generic term)|receiver (generic term)
+herm|1
+(noun)|statue (generic term)
+herman|1
+(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician (generic term)|jazzman (generic term)|bandleader (generic term)
+herman hollerith|1
+(noun)|Hollerith|Herman Hollerith|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+herman melville|1
+(noun)|Melville|Herman Melville|writer (generic term)|author (generic term)
+herman northrop frye|1
+(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic (generic term)
+herman wouk|1
+(noun)|Wouk|Herman Wouk|writer (generic term)|author (generic term)
+hermann|1
+(noun)|Arminius|Armin|Hermann|hero (generic term)|German (generic term)
+hermann goering|1
+(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi (generic term)|German Nazi (generic term)
+hermann goring|1
+(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi (generic term)|German Nazi (generic term)
+hermann hesse|1
+(noun)|Hesse|Hermann Hesse|writer (generic term)|author (generic term)
+hermann joseph muller|1
+(noun)|Muller|Hermann Joseph Muller|geneticist (generic term)
+hermann ludwig ferdinand von helmholtz|1
+(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist (generic term)|physicist (generic term)
+hermann maurice saxe|1
+(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+hermann minkowski|1
+(noun)|Minkowski|Hermann Minkowski|mathematician (generic term)
+hermann snellen|1
+(noun)|Snellen|Hermann Snellen|ophthalmologist (generic term)|eye doctor (generic term)|oculist (generic term)
+hermann von helmholtz|1
+(noun)|Helmholtz|Hermann von Helmholtz|Hermann Ludwig Ferdinand von Helmholtz|Baron Hermann Ludwig Ferdinand von Helmholtz|physiologist (generic term)|physicist (generic term)
+hermann wilhelm goring|1
+(noun)|Goring|Goering|Hermann Goring|Hermann Goering|Hermann Wilhelm Goring|Nazi (generic term)|German Nazi (generic term)
+hermannia|1
+(noun)|Hermannia|genus Hermannia|dilleniid dicot genus (generic term)
+hermannia verticillata|1
+(noun)|honey bell|honeybells|Hermannia verticillata|Mahernia verticillata|shrub (generic term)|bush (generic term)
+hermaphrodism|1
+(noun)|hermaphroditism|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+hermaphrodite|2
+(adj)|hermaphroditic|androgynous (similar term)
+(noun)|intersex|gynandromorph|androgyne|epicine|epicine person|bisexual (generic term)|bisexual person (generic term)
+hermaphrodite brig|1
+(noun)|brigantine|sailing vessel (generic term)|sailing ship (generic term)
+hermaphroditic|2
+(adj)|monoclinous (similar term)
+(adj)|hermaphrodite|androgynous (similar term)
+hermaphroditism|2
+(noun)|hermaphrodism|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+(noun)|androgyny|bisexuality|sex (generic term)|gender (generic term)|sexuality (generic term)
+hermaphroditus|1
+(noun)|Hermaphroditus|Greek deity (generic term)
+hermeneutic|1
+(adj)|theology|divinity (related term)
+hermeneutics|1
+(noun)|theology (generic term)|divinity (generic term)
+hermes|1
+(noun)|Hermes|Greek deity (generic term)
+hermetic|1
+(adj)|tight (similar term)
+hermissenda|1
+(noun)|Hermissenda|genus Hermissenda|mollusk genus (generic term)
+hermissenda crassicornis|1
+(noun)|Hermissenda crassicornis|sea slug (generic term)|nudibranch (generic term)
+hermit|2
+(noun)|anchorite|eremite (generic term)
+(noun)|recluse|solitary|solitudinarian|troglodyte|loner (generic term)|lone wolf (generic term)|lone hand (generic term)
+hermit crab|1
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+hermit thrush|1
+(noun)|Hylocichla guttata|thrush (generic term)
+hermitage|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+hermitic|1
+(adj)|anchoritic|eremitic|eremitical|hermitical|unworldly (similar term)
+hermitical|1
+(adj)|anchoritic|eremitic|eremitical|hermitic|unworldly (similar term)
+hermosillo|1
+(noun)|Hermosillo|city (generic term)|metropolis (generic term)|urban center (generic term)
+hernan cortes|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+hernan cortez|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+hernando cortes|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+hernando cortez|1
+(noun)|Cortes|Cortez|Hernando Cortes|Hernando Cortez|Hernan Cortes|Hernan Cortez|conquistador (generic term)
+hernaria|1
+(noun)|Hernaria|genus Hernaria|caryophylloid dicot genus (generic term)
+hernaria glabra|1
+(noun)|rupturewort|Hernaria glabra|groundcover (generic term)|ground cover (generic term)
+hernia|1
+(noun)|herniation|rupture (generic term)
+herniated disc|1
+(noun)|ruptured intervertebral disc|slipped disc|rupture (generic term)
+herniation|1
+(noun)|hernia|rupture (generic term)
+hero|7
+(noun)|leader (generic term)
+(noun)|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+(noun)|champion|fighter|paladin|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|Hero|Heron|Hero of Alexandria|mathematician (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|mythical being (generic term)
+(noun)|Hero|mythical being (generic term)
+(noun)|bomber|grinder|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+hero-worship|1
+(verb)|idolize|idolise|worship|revere|adore (generic term)
+hero of alexandria|1
+(noun)|Hero|Heron|Hero of Alexandria|mathematician (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+hero sandwich|1
+(noun)|bomber|grinder|hero|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+hero worship|1
+(noun)|admiration (generic term)|esteem (generic term)
+hero worshiper|1
+(noun)|hero worshipper|worshiper (generic term)|worshipper (generic term)
+hero worshipper|1
+(noun)|hero worshiper|worshiper (generic term)|worshipper (generic term)
+herod|1
+(noun)|Herod|Herod the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+herod the great|1
+(noun)|Herod|Herod the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+herodotus|1
+(noun)|Herodotus|historian (generic term)|historiographer (generic term)
+heroic|6
+(adj)|epic|larger-than-life|large (similar term)|big (similar term)
+(adj)|mythical being (related term)
+(adj)|heroical|bold (similar term)
+(adj)|expansive|grand|impressive (similar term)
+(adj)|desperate|brave (similar term)|courageous (similar term)
+(noun)|heroic verse|heroic meter|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+heroic couplet|1
+(noun)|couplet (generic term)
+heroic meter|1
+(noun)|heroic verse|heroic|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+heroic poem|1
+(noun)|epic poem|epic|epos|poem (generic term)|verse form (generic term)
+heroic poetry|1
+(noun)|epic poetry|poetry (generic term)|poesy (generic term)|verse (generic term)
+heroic stanza|1
+(noun)|quatrain (generic term)
+heroic tale|1
+(noun)|adventure story|story (generic term)
+heroic verse|1
+(noun)|heroic meter|heroic|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+heroica puebla de zaragoza|1
+(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city (generic term)|metropolis (generic term)|urban center (generic term)
+heroical|1
+(adj)|heroic|bold (similar term)
+heroics|1
+(noun)|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+heroin|1
+(noun)|diacetylmorphine|opiate (generic term)|hard drug (generic term)
+heroin addict|1
+(noun)|drug addict (generic term)|junkie (generic term)|junky (generic term)
+heroin addiction|1
+(noun)|drug addiction (generic term)|white plague (generic term)
+heroine|2
+(noun)|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+heroism|1
+(noun)|gallantry|valor|valour|valorousness|valiance|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+heron|2
+(noun)|Hero|Heron|Hero of Alexandria|mathematician (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|wading bird (generic term)|wader (generic term)
+heron's bill|1
+(noun)|storksbill|geranium (generic term)
+heronry|1
+(noun)|rookery (generic term)
+herpangia|1
+(noun)|viral infection (generic term)|virus infection (generic term)
+herpes|2
+(noun)|infectious disease (generic term)
+(noun)|herpes virus|animal virus (generic term)
+herpes encephalitis|1
+(noun)|herpes simplex encephalitis|acute inclusion body encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+herpes genitalis|1
+(noun)|genital herpes|herpes simplex (generic term)|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+herpes labialis|1
+(noun)|oral herpes|cold sore|fever blister|herpes simplex (generic term)
+herpes simplex|2
+(noun)|herpes (generic term)
+(noun)|herpes simplex virus|herpes (generic term)|herpes virus (generic term)
+herpes simplex 1|1
+(noun)|HS1|HSV-1|HSV-I|herpes simplex (generic term)|herpes simplex virus (generic term)
+herpes simplex 2|1
+(noun)|HS2|HSV-2|HSV-II|herpes simplex (generic term)|herpes simplex virus (generic term)
+herpes simplex encephalitis|1
+(noun)|herpes encephalitis|acute inclusion body encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+herpes simplex virus|1
+(noun)|herpes simplex|herpes (generic term)|herpes virus (generic term)
+herpes varicella zoster|1
+(noun)|herpes varicella zoster virus|herpes zoster (generic term)|herpes zoster virus (generic term)
+herpes varicella zoster virus|1
+(noun)|herpes varicella zoster|herpes zoster (generic term)|herpes zoster virus (generic term)
+herpes virus|1
+(noun)|herpes|animal virus (generic term)
+herpes zoster|2
+(noun)|zoster|shingles|herpes (generic term)
+(noun)|herpes zoster virus|herpes (generic term)|herpes virus (generic term)
+herpes zoster virus|1
+(noun)|herpes zoster|herpes (generic term)|herpes virus (generic term)
+herpestes|1
+(noun)|Herpestes|genus Herpestes|mammal genus (generic term)
+herpestes ichneumon|1
+(noun)|ichneumon|Herpestes ichneumon|mongoose (generic term)
+herpestes nyula|1
+(noun)|Indian mongoose|Herpestes nyula|mongoose (generic term)
+herpetologist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+herpetology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+herr|2
+(noun)|Herr|man (generic term)|adult male (generic term)
+(noun)|Herr|title (generic term)|title of respect (generic term)|form of address (generic term)
+herrenvolk|1
+(noun)|master race|Herrenvolk|race (generic term)
+herrerasaur|1
+(noun)|herrerasaurus|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+herrerasaurus|1
+(noun)|herrerasaur|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+herrick|1
+(noun)|Herrick|Robert Herrick|poet (generic term)
+herring|2
+(noun)|saltwater fish (generic term)
+(noun)|Clupea harangus|clupeid fish (generic term)|clupeid (generic term)|food fish (generic term)
+herring-like|1
+(adj)|animal (similar term)
+herring gull|1
+(noun)|Larus argentatus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+herring hog|1
+(noun)|harbor porpoise|Phocaena phocaena|porpoise (generic term)
+herring salad|1
+(noun)|salad (generic term)
+herringbone|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|herringbone pattern|design (generic term)|pattern (generic term)|figure (generic term)
+herringbone pattern|1
+(noun)|herringbone|design (generic term)|pattern (generic term)|figure (generic term)
+herschel|2
+(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+herschelian telescope|1
+(noun)|Herschelian telescope|off-axis reflector|reflecting telescope (generic term)|reflector (generic term)
+hershey|2
+(noun)|Hershey|Milton Snavely Hershey|confectioner (generic term)|candymaker (generic term)|philanthropist (generic term)|altruist (generic term)
+(noun)|Hershey|town (generic term)
+hershey bar|1
+(noun)|Hershey bar|chocolate bar (generic term)
+hertfordshire|1
+(noun)|Hertfordshire|county (generic term)
+hertha|1
+(noun)|Nerthus|Hertha|Teutonic deity (generic term)
+hertz|3
+(noun)|Hz|cycle per second|cycles/second|cps|cycle|rate (generic term)
+(noun)|Hertz|Heinrich Hertz|Heinrich Rudolph Hertz|physicist (generic term)
+(noun)|Hertz|Gustav Hertz|Gustav Ludwig Hertz|nuclear physicist (generic term)
+hertzian|1
+(adj)|Hertzian|nuclear physicist (related term)
+hertzian wave|1
+(noun)|Hertzian wave|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+herzberg|1
+(noun)|Herzberg|Gerhard Herzberg|nuclear physicist (generic term)
+heshvan|1
+(noun)|Heshvan|Jewish calendar month (generic term)
+hesiod|1
+(noun)|Hesiod|poet (generic term)
+hesitance|1
+(noun)|hesitancy|diffidence (generic term)|self-doubt (generic term)|self-distrust (generic term)
+hesitancy|2
+(noun)|hesitance|diffidence (generic term)|self-doubt (generic term)|self-distrust (generic term)
+(noun)|reluctance|hesitation|disinclination|indisposition|unwillingness (generic term)|involuntariness (generic term)
+hesitant|2
+(adj)|hesitating|indecisive (similar term)
+(adj)|groping|uncertain (similar term)|unsure (similar term)|incertain (similar term)
+hesitantly|1
+(adv)|hesitatingly|unhesitatingly (antonym)
+hesitate|2
+(verb)|waver|waffle
+(verb)|pause|delay (generic term)
+hesitater|1
+(noun)|waverer|vacillator|hesitator|coward (generic term)
+hesitating|1
+(adj)|hesitant|indecisive (similar term)
+hesitatingly|1
+(adv)|hesitantly|unhesitatingly (antonym)
+hesitation|3
+(noun)|vacillation|wavering|indecision (generic term)|indecisiveness (generic term)|irresolution (generic term)
+(noun)|reluctance|hesitancy|disinclination|indisposition|unwillingness (generic term)|involuntariness (generic term)
+(noun)|waver|falter|faltering|pause (generic term)
+hesitator|1
+(noun)|waverer|vacillator|hesitater|coward (generic term)
+hesperian|1
+(adj)|occidental|Hesperian|western (similar term)
+hesperides|1
+(noun)|Hesperides|Atlantides|nymph (generic term)
+hesperiphona|1
+(noun)|Hesperiphona|genus Hesperiphona|bird genus (generic term)
+hesperiphona vespertina|1
+(noun)|evening grosbeak|Hesperiphona vespertina|grosbeak (generic term)|grossbeak (generic term)
+hesperis|1
+(noun)|Hesperis|genus Hesperis|dilleniid dicot genus (generic term)
+hesperis matronalis|1
+(noun)|damask violet|Dame's violet|sweet rocket|Hesperis matronalis|flower (generic term)
+hesperus|1
+(noun)|evening star|Hesperus|Vesper|planet (generic term)|major planet (generic term)
+hess|4
+(noun)|Hess|Dame Myra Hess|pianist (generic term)|piano player (generic term)
+(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist (generic term)
+(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi (generic term)|German Nazi (generic term)
+(noun)|Hess|Victor Hess|Victor Franz Hess|physicist (generic term)
+hesse|1
+(noun)|Hesse|Hermann Hesse|writer (generic term)|author (generic term)
+hessian|1
+(noun)|Hessian boot|jackboot|Wellington|Wellington boot|boot (generic term)
+hessian boot|1
+(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot (generic term)
+hessian fly|1
+(noun)|Hessian fly|Mayetiola destructor|gall midge (generic term)|gallfly (generic term)|gall gnat (generic term)
+hessonite|1
+(noun)|cinnamon stone|essonite|garnet (generic term)
+hestia|1
+(noun)|Hestia|Greek deity (generic term)
+het|1
+(adj)|heated|heated up|het up|hot (similar term)
+het up|2
+(adj)|heated|heated up|het|hot (similar term)
+(adj)|emotional (similar term)
+heteranthera|1
+(noun)|Heteranthera|genus Heteranthera|monocot genus (generic term)|liliopsid genus (generic term)
+heteranthera dubia|1
+(noun)|water star grass|mud plantain|Heteranthera dubia|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+heterobasidiomycetes|1
+(noun)|Heterobasidiomycetes|subclass Heterobasidiomycetes|class (generic term)
+heterocephalus|1
+(noun)|Heterocephalus|genus Heterocephalus|mammal genus (generic term)
+heterocercal|1
+(adj)|homocercal (antonym)
+heterocercal fin|1
+(noun)|tail fin (generic term)|caudal fin (generic term)|homocercal fin (antonym)
+heterocycle|2
+(noun)|heterocyclic compound|heterocyclic|compound (generic term)|chemical compound (generic term)
+(noun)|heterocyclic ring|closed chain (generic term)|ring (generic term)
+heterocyclic|2
+(adj)|cyclic (similar term)
+(noun)|heterocyclic compound|heterocycle|compound (generic term)|chemical compound (generic term)
+heterocyclic compound|1
+(noun)|heterocyclic|heterocycle|compound (generic term)|chemical compound (generic term)
+heterocyclic ring|1
+(noun)|heterocycle|closed chain (generic term)|ring (generic term)
+heterodactyl|1
+(adj)|zygodactyl (antonym)
+heterodactyl foot|1
+(noun)|bird's foot (generic term)|zygodactyl foot (antonym)
+heterodon|1
+(noun)|Heterodon|genus Heterodon|reptile genus (generic term)
+heterodox|1
+(adj)|dissident|heretical|unorthodox (similar term)
+heterodoxy|2
+(noun)|unorthodoxy|heresy|orientation (generic term)|orthodoxy (antonym)
+(noun)|unorthodoxy|originality (generic term)|orthodoxy (antonym)
+heterodyne|2
+(adj)|oscillation|vibration (related term)
+(verb)|compound (generic term)|combine (generic term)
+heterodyne oscillator|1
+(noun)|local oscillator|oscillator (generic term)
+heterodyne receiver|1
+(noun)|superheterodyne receiver|superhet|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+heteroecious|1
+(adj)|autoecious (antonym)
+heterogeneity|1
+(noun)|heterogeneousness|nonuniformity (generic term)|homogeneity (antonym)
+heterogeneous|2
+(adj)|heterogenous|assorted (similar term)|miscellaneous (similar term)|mixed (similar term)|motley (similar term)|sundry (similar term)|disparate (similar term)|inhomogeneous (similar term)|nonuniform (similar term)|different (related term)|diversified (related term)|varied (related term)|homogeneous (antonym)
+(adj)|heterogenous|autogenous (antonym)
+heterogeneousness|1
+(noun)|heterogeneity|nonuniformity (generic term)|homogeneity (antonym)
+heterogenesis|1
+(noun)|alternation of generations|xenogenesis|organic phenomenon (generic term)
+heterogenous|2
+(adj)|heterogeneous|assorted (similar term)|miscellaneous (similar term)|mixed (similar term)|motley (similar term)|sundry (similar term)|disparate (similar term)|inhomogeneous (similar term)|nonuniform (similar term)|different (related term)|diversified (related term)|varied (related term)|homogeneous (antonym)
+(adj)|heterogeneous|autogenous (antonym)
+heterograft|1
+(noun)|xenograft|graft (generic term)|transplant (generic term)
+heteroicous|1
+(adj)|polyoicous|polygamous|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+heterokontae|1
+(noun)|Chrysophyceae|class Chrysophyceae|Heterokontae|class Heterokontae|class (generic term)
+heterokontophyta|1
+(noun)|Heterokontophyta|division Heterokontophyta|division (generic term)
+heterologic|1
+(adj)|heterologous|heterological|analogous (antonym)|homologous (antonym)
+heterological|1
+(adj)|heterologous|heterologic|analogous (antonym)|homologous (antonym)
+heterologous|2
+(adj)|heterologic|heterological|analogous (antonym)|homologous (antonym)
+(adj)|autologous (antonym)|homologous (antonym)
+heterology|1
+(noun)|dissimilarity (generic term)|unsimilarity (generic term)
+heteromeles|1
+(noun)|Heteromeles|genus Heteromeles|rosid dicot genus (generic term)
+heteromeles arbutifolia|1
+(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+heterometabolic|1
+(adj)|heterometabolous|metamorphic (similar term)
+heterometabolism|1
+(noun)|heterometaboly|metamorphosis (generic term)|metabolism (generic term)
+heterometabolous|1
+(adj)|heterometabolic|metamorphic (similar term)
+heterometaboly|1
+(noun)|heterometabolism|metamorphosis (generic term)|metabolism (generic term)
+heteromyidae|1
+(noun)|Heteromyidae|family Heteromyidae|mammal family (generic term)
+heteronym|1
+(noun)|word (generic term)
+heterophil antibody|1
+(noun)|heterophile antibody|Forssman antibody|antibody (generic term)
+heterophil test|1
+(noun)|agglutination test (generic term)
+heterophile antibody|1
+(noun)|heterophil antibody|Forssman antibody|antibody (generic term)
+heteroploid|1
+(noun)|organism (generic term)|being (generic term)
+heteroploidy|1
+(noun)|condition (generic term)
+heteroptera|1
+(noun)|Heteroptera|suborder Heteroptera|animal order (generic term)
+heteropterous insect|1
+(noun)|insect (generic term)
+heteroscelus|1
+(noun)|Heteroscelus|genus Heteroscelus|bird genus (generic term)
+heteroscelus incanus|1
+(noun)|Polynesian tattler|Heteroscelus incanus|tattler (generic term)
+heterosexism|1
+(noun)|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+heterosexual|2
+(adj)|straight (similar term)|homosexual (antonym)|bisexual (antonym)
+(noun)|heterosexual person|straight person|straight|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+heterosexual person|1
+(noun)|heterosexual|straight person|straight|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+heterosexualism|1
+(noun)|heterosexuality|straightness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+heterosexuality|1
+(noun)|heterosexualism|straightness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+heterosomata|1
+(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order (generic term)
+heterosporous|1
+(adj)|monogenesis|sporulation (related term)
+heterospory|1
+(noun)|monogenesis (generic term)|sporulation (generic term)
+heterostracan|1
+(noun)|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+heterostraci|1
+(noun)|Heterostraci|suborder Heterostraci|animal order (generic term)
+heterotaxy|1
+(noun)|transposition|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+heterotheca|1
+(noun)|Heterotheca|genus Heterotheca|asterid dicot genus (generic term)
+heterotheca villosa|1
+(noun)|hairy golden aster|prairie golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower (generic term)|wild flower (generic term)
+heterothermic|1
+(adj)|poikilothermic|poikilothermous|ectothermic|cold-blooded (similar term)
+heterotrichales|1
+(noun)|Heterotrichales|order Heterotrichales|protoctist order (generic term)
+heterotroph|1
+(noun)|organism (generic term)|being (generic term)
+heterotrophic|1
+(adj)|autotrophic (antonym)
+heterozygosity|1
+(noun)|state (generic term)|homozygosity (antonym)
+heterozygous|1
+(adj)|homozygous (antonym)
+heth|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+heuchera|1
+(noun)|Heuchera|genus Heuchera|rosid dicot genus (generic term)
+heuchera americana|1
+(noun)|rock geranium|Heuchera americana|alumroot (generic term)|alumbloom (generic term)
+heuchera cylindrica|1
+(noun)|poker alumroot|poker heuchera|Heuchera cylindrica|alumroot (generic term)|alumbloom (generic term)
+heuchera sanguinea|1
+(noun)|coralbells|Heuchera sanguinea|alumroot (generic term)|alumbloom (generic term)
+heulandite|1
+(noun)|zeolite (generic term)
+heuristic|2
+(adj)|trial-and-error (similar term)|algorithmic (antonym)
+(noun)|heuristic rule|heuristic program|rule (generic term)|formula (generic term)
+heuristic program|1
+(noun)|heuristic|heuristic rule|rule (generic term)|formula (generic term)
+heuristic rule|1
+(noun)|heuristic|heuristic program|rule (generic term)|formula (generic term)
+hevea|1
+(noun)|Hevea|genus Hevea|rosid dicot genus (generic term)
+hevea brasiliensis|1
+(noun)|para rubber tree|caoutchouc tree|Hevea brasiliensis|angiospermous tree (generic term)|flowering tree (generic term)
+hevesy|1
+(noun)|Hevesy|George Charles Hevesy de Hevesy|chemist (generic term)
+hew|2
+(verb)|hew out|carve (generic term)
+(verb)|strike (generic term)|hew out (related term)
+hew out|1
+(verb)|hew|carve (generic term)
+hewer|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+hewn|1
+(adj)|hand-hewn|cut (similar term)
+hex|3
+(adj)|hexadecimal|positional notation|positional representation system (related term)
+(noun)|jinx|curse|whammy|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+(verb)|bewitch|glamour|witch|enchant|jinx|charm (generic term)|becharm (generic term)
+hex nut|1
+(noun)|nut (generic term)
+hexachlorophene|1
+(noun)|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+hexacosanoic acid|1
+(noun)|cerotic acid|acid (generic term)
+hexad|1
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|digit (generic term)|figure (generic term)
+hexadecanoic acid|1
+(noun)|palmitic acid|saturated fatty acid (generic term)
+hexadecimal|1
+(adj)|hex|positional notation|positional representation system (related term)
+hexadecimal digit|1
+(noun)|digit (generic term)|figure (generic term)
+hexadecimal notation|1
+(noun)|sexadecimal notation|mathematical notation (generic term)
+hexadecimal number system|1
+(noun)|sexadecimal number system|hexadecimal system|positional notation (generic term)|positional representation system (generic term)
+hexadecimal system|1
+(noun)|hexadecimal number system|sexadecimal number system|positional notation (generic term)|positional representation system (generic term)
+hexadrol|1
+(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+hexagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+hexagonal|1
+(adj)|hexangular|polygon|polygonal shape (related term)
+hexagram|1
+(noun)|star (generic term)
+hexagrammidae|1
+(noun)|Hexagrammidae|family Hexagrammidae|fish family (generic term)
+hexagrammos|1
+(noun)|Hexagrammos|genus Hexagrammos|fish genus (generic term)
+hexagrammos decagrammus|1
+(noun)|kelp greenling|Hexagrammos decagrammus|greenling (generic term)
+hexahedron|1
+(noun)|polyhedron (generic term)
+hexalectris|1
+(noun)|Hexalectris|genus Hexalectris|monocot genus (generic term)|liliopsid genus (generic term)
+hexalectris spicata|1
+(noun)|crested coral root|Hexalectris spicata|orchid (generic term)|orchidaceous plant (generic term)
+hexalectris warnockii|1
+(noun)|Texas purple spike|Hexalectris warnockii|orchid (generic term)|orchidaceous plant (generic term)
+hexameter|1
+(noun)|verse (generic term)|verse line (generic term)
+hexamita|1
+(noun)|Hexamita|genus Hexamita|protoctist genus (generic term)
+hexanchidae|1
+(noun)|Hexanchidae|family Hexanchidae|fish family (generic term)
+hexanchus|1
+(noun)|Hexanchus|genus Hexanchus|fish genus (generic term)
+hexanchus griseus|1
+(noun)|cow shark|six-gilled shark|Hexanchus griseus|shark (generic term)
+hexane|1
+(noun)|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+hexanedioic acid|1
+(noun)|adipic acid|carboxylic acid (generic term)
+hexangular|1
+(adj)|hexagonal|polygon|polygonal shape (related term)
+hexanoic acid|1
+(noun)|caproic acid|saturated fatty acid (generic term)
+hexapod|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+hexapoda|1
+(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class (generic term)
+hexed|1
+(adj)|jinxed|unlucky (similar term)|luckless (similar term)
+hexenbesen|1
+(noun)|witches' broom|witch broom|staghead|tuft (generic term)|tussock (generic term)
+hexestrol|1
+(noun)|estrogen (generic term)|oestrogen (generic term)
+hexose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+heyday|1
+(noun)|flower|prime|peak|bloom|blossom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+heyerdahl|1
+(noun)|Heyerdahl|Thor Hyerdahl|anthropologist (generic term)
+heyrovsky|1
+(noun)|Heyrovsky|Joroslav Heyrovsky|chemist (generic term)
+heyse|1
+(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer (generic term)|author (generic term)
+heyward|1
+(noun)|Heyward|DuBois Heyward|Edwin DuBois Hayward|writer (generic term)|author (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+hezekiah|1
+(noun)|Hezekiah|Ezekias|king (generic term)|male monarch (generic term)|Rex (generic term)
+hf|2
+(noun)|hafnium|Hf|atomic number 72|metallic element (generic term)|metal (generic term)
+(noun)|high frequency|HF|radio frequency (generic term)
+hfc|1
+(noun)|hydrofluorocarbon|HFC|fluorocarbon (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+hg|2
+(noun)|mercury|quicksilver|hydrargyrum|Hg|atomic number 80|metallic element (generic term)|metal (generic term)
+(noun)|hectogram|metric weight unit (generic term)|weight unit (generic term)
+hhs|1
+(noun)|Department of Health and Human Services|Health and Human Services|HHS|executive department (generic term)
+hi|2
+(noun)|hello|hullo|howdy|how-do-you-do|greeting (generic term)|salutation (generic term)
+(noun)|Hawaii|Hawai'i|Aloha State|HI|American state (generic term)
+hi-fi|3
+(adj)|high-fidelity|accurate (similar term)
+(noun)|high fidelity sound system|reproducer (generic term)
+(noun)|high fidelity|sound reproduction (generic term)
+hi-tech|1
+(adj)|high-tech|advanced (similar term)|sophisticated (similar term)|low-tech (antonym)
+hiatal hernia|1
+(noun)|hiatus hernia|diaphragmatic hernia|hernia (generic term)|herniation (generic term)
+hiatus|3
+(noun)|suspension|respite|reprieve|abatement|interruption (generic term)|break (generic term)
+(noun)|piece (generic term)
+(noun)|foramen|opening (generic term)|gap (generic term)
+hiatus hernia|1
+(noun)|hiatal hernia|diaphragmatic hernia|hernia (generic term)|herniation (generic term)
+hiawatha|1
+(noun)|Hiawatha|Indian chief (generic term)|Indian chieftain (generic term)|Onondaga (generic term)
+hiba arborvitae|1
+(noun)|Thujopsis dolobrata|arborvitae (generic term)
+hibachi|2
+(noun)|brazier (generic term)|brasier (generic term)
+(verb)|grill (generic term)
+hibbertia|1
+(noun)|Hibbertia|genus Hibbertia|dilleniid dicot genus (generic term)
+hibbing|1
+(noun)|Hibbing|town (generic term)
+hibernal|1
+(adj)|brumal|hiemal|wintry (similar term)|wintery (similar term)
+hibernate|2
+(verb)|hole up|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)|estivate (antonym)|aestivate (antonym)
+(verb)|rest (generic term)
+hibernating|1
+(adj)|dormant|torpid|asleep (similar term)
+hibernation|3
+(noun)|torpor (generic term)|torpidity (generic term)
+(noun)|dormancy (generic term)|quiescence (generic term)|quiescency (generic term)
+(noun)|retirement (generic term)
+hibernia|1
+(noun)|Ireland|Hibernia|Emerald Isle|island (generic term)
+hibiscus|1
+(noun)|mallow (generic term)
+hibiscus cannabinus|1
+(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+hibiscus elatus|1
+(noun)|Cuban bast|blue mahoe|mahoe|majagua|mahagua|Hibiscus elatus|hibiscus (generic term)
+hibiscus esculentus|1
+(noun)|okra|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+hibiscus farragei|1
+(noun)|bush hibiscus|Radyera farragei|Hibiscus farragei|shrub (generic term)|bush (generic term)
+hibiscus heterophyllus|1
+(noun)|sorrel tree|Hibiscus heterophyllus|hibiscus (generic term)
+hibiscus moschatus|1
+(noun)|abelmosk|musk mallow|Abelmoschus moschatus|Hibiscus moschatus|mallow (generic term)
+hibiscus moscheutos|1
+(noun)|rose mallow|swamp mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus (generic term)
+hibiscus mutabilis|1
+(noun)|cotton rose|Confederate rose|Confederate rose mallow|Hibiscus mutabilis|hibiscus (generic term)
+hibiscus rosa-sinensis|1
+(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus (generic term)
+hibiscus sabdariffa|1
+(noun)|roselle|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+hibiscus syriacus|1
+(noun)|rose of Sharon|Hibiscus syriacus|hibiscus (generic term)
+hibiscus tiliaceus|1
+(noun)|mahoe|majagua|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus (generic term)
+hibiscus trionum|1
+(noun)|flower-of-an-hour|flowers-of-an-hour|bladder ketmia|black-eyed Susan|Hibiscus trionum|hibiscus (generic term)
+hiccough|2
+(noun)|hiccup|singultus|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|hiccup|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+hiccough nut|1
+(noun)|hiccup nut|Combretum bracteosum|shrub (generic term)|bush (generic term)
+hiccup|2
+(noun)|hiccough|singultus|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|hiccough|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+hiccup nut|1
+(noun)|hiccough nut|Combretum bracteosum|shrub (generic term)|bush (generic term)
+hick|2
+(adj)|bumpkinly|rustic|unsophisticated|provincial (similar term)
+(noun)|yokel|rube|yahoo|hayseed|bumpkin|chawbacon|rustic (generic term)
+hickey|2
+(noun)|pimple|zit|acne (generic term)
+(noun)|love bite|erythema (generic term)
+hickock|1
+(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal (generic term)|marshall (generic term)
+hickory|2
+(noun)|wood (generic term)
+(noun)|hickory tree|nut tree (generic term)
+hickory nut|1
+(noun)|edible nut (generic term)
+hickory pine|1
+(noun)|table-mountain pine|prickly pine|Pinus pungens|pine (generic term)|pine tree (generic term)|true pine (generic term)
+hickory tree|1
+(noun)|hickory|nut tree (generic term)
+hidatsa|2
+(noun)|Hidatsa|Gros Ventre|Sioux (generic term)|Siouan (generic term)
+(noun)|Hidatsa|Gros Ventre|Siouan (generic term)|Siouan language (generic term)
+hidden|3
+(adj)|concealed|out of sight|invisible (similar term)|unseeable (similar term)
+(adj)|secret|concealed (similar term)
+(adj)|obscure|concealed (similar term)
+hidden reserve|1
+(noun)|reserve account (generic term)|reserve fund (generic term)
+hidden tax|1
+(noun)|indirect tax (generic term)
+hiddenite|1
+(noun)|spodumene (generic term)|transparent gem (generic term)
+hiddenness|1
+(noun)|covertness|privacy (generic term)|privateness (generic term)|secrecy (generic term)|concealment (generic term)
+hide|6
+(noun)|fell|animal skin (generic term)
+(noun)|pelt|skin|body covering (generic term)
+(verb)|conceal|show (antonym)
+(verb)|hide out
+(verb)|shroud|enshroud|cover|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|obscure|blot out|obliterate|veil|change (generic term)|alter (generic term)|modify (generic term)
+hide-and-seek|1
+(noun)|hide and go seek|child's game (generic term)
+hide and go seek|1
+(noun)|hide-and-seek|child's game (generic term)
+hide out|1
+(verb)|hide
+hideaway|2
+(noun)|hideout|den|hiding place (generic term)
+(noun)|retreat|area (generic term)
+hidebound|1
+(adj)|traditionalist|conservative (similar term)
+hideki yukawa|1
+(noun)|Yukawa|Hideki Yukawa|nuclear physicist (generic term)
+hideous|2
+(adj)|horrid|horrific|outrageous|offensive (similar term)
+(adj)|repulsive|ugly (similar term)
+hideously|1
+(adv)|horridly|monstrously
+hideousness|1
+(noun)|ugliness (generic term)
+hideout|1
+(noun)|hideaway|den|hiding place (generic term)
+hideyo noguchi|1
+(noun)|Noguchi|Hideyo Noguchi|bacteriologist (generic term)
+hiding|1
+(noun)|concealment|concealing|activity (generic term)
+hiding place|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+hidrosis|1
+(noun)|perspiration|sweating|diaphoresis|sudation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+hidrotic|1
+(adj)|secretion (related term)
+hie|1
+(verb)|rush|hotfoot|hasten|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+hiemal|1
+(adj)|brumal|hibernal|wintry (similar term)|wintery (similar term)
+hieracium|1
+(noun)|Hieracium|genus Hieracium|asterid dicot genus (generic term)
+hieracium aurantiacum|1
+(noun)|orange hawkweed|Pilosella aurantiaca|Hieracium aurantiacum|weed (generic term)
+hieracium pilocella|1
+(noun)|mouse-ear hawkweed|Pilosella officinarum|Hieracium pilocella|hawkweed (generic term)
+hieracium praealtum|1
+(noun)|king devil|yellow hawkweed|Hieracium praealtum|weed (generic term)
+hieracium venosum|1
+(noun)|rattlesnake weed|Hieracium venosum|hawkweed (generic term)
+hierarch|1
+(noun)|archpriest|high priest|prelate|primate|priest (generic term)
+hierarchal|1
+(adj)|hierarchical|hierarchic|class-conscious (similar term)|stratified (similar term)|gradable (similar term)|graded (similar term)|ranked (similar term)|stratified (similar term)|vertical (similar term)|nonhierarchical (antonym)
+hierarchic|1
+(adj)|hierarchical|hierarchal|class-conscious (similar term)|stratified (similar term)|gradable (similar term)|graded (similar term)|ranked (similar term)|stratified (similar term)|vertical (similar term)|nonhierarchical (antonym)
+hierarchical|1
+(adj)|hierarchal|hierarchic|class-conscious (similar term)|stratified (similar term)|gradable (similar term)|graded (similar term)|ranked (similar term)|stratified (similar term)|vertical (similar term)|nonhierarchical (antonym)
+hierarchical classification system|1
+(noun)|classification system (generic term)
+hierarchical data structure|1
+(noun)|hierarchical structure|data structure (generic term)
+hierarchical menu|1
+(noun)|cascading menu|submenu|menu (generic term)|computer menu (generic term)
+hierarchical structure|1
+(noun)|hierarchical data structure|data structure (generic term)
+hierarchy|2
+(noun)|series (generic term)
+(noun)|power structure|pecking order|organization (generic term)|organisation (generic term)
+hieratic|4
+(adj)|priestly|hieratical|sacerdotal|profession|community (related term)
+(adj)|hieroglyph|hieroglyphic (related term)
+(adj)|nonrepresentational (similar term)
+(noun)|hieratic script|hieroglyph (generic term)|hieroglyphic (generic term)
+hieratic script|1
+(noun)|hieratic|hieroglyph (generic term)|hieroglyphic (generic term)
+hieratical|1
+(adj)|priestly|hieratic|sacerdotal|profession|community (related term)
+hieroglyph|2
+(noun)|hieroglyphic|writing (generic term)
+(noun)|hieroglyphic|orthography (generic term)|writing system (generic term)
+hieroglyphic|4
+(adj)|hieroglyphical|writing (related term)
+(adj)|hieroglyphical|orthography|writing system (related term)
+(noun)|hieroglyph|writing (generic term)
+(noun)|hieroglyph|orthography (generic term)|writing system (generic term)
+hieroglyphical|2
+(adj)|hieroglyphic|writing (related term)
+(adj)|hieroglyphic|orthography|writing system (related term)
+hierolatry|1
+(noun)|hagiolatry|worship (generic term)
+hieronymus|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+hieronymus bosch|1
+(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master (generic term)
+hifalutin|1
+(adj)|grandiose|highfalutin|highfaluting|hoity-toity|la-di-da|pretentious (similar term)
+higginson|1
+(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier (generic term)|writer (generic term)|author (generic term)
+higgle|1
+(verb)|haggle|chaffer|huckster|dicker (generic term)|bargain (generic term)
+higgledy-piggledy|2
+(adj)|disorderly|hugger-mugger|jumbled|topsy-turvy|untidy (similar term)
+(adv)|topsy-turvy
+high|16
+(adj)|advanced (similar term)|broad (similar term)|full (similar term)|flooding (similar term)|in flood (similar term)|overflowing (similar term)|swollen (similar term)|graduate (similar term)|postgraduate (similar term)|higher (similar term)|higher (similar term)|last (similar term)|utmost (similar term)|soaring (similar term)|superior (related term)|low (antonym)
+(adj)|altitudinous (similar term)|commanding (similar term)|dominating (similar term)|overlooking (similar term)|eminent (similar term)|lofty (similar term)|soaring (similar term)|towering (similar term)|high-level (similar term)|high-altitude (similar term)|high-stepped (similar term)|high-stepping (similar term)|high-top (similar term)|high-topped (similar term)|steep (similar term)|upper (similar term)|tall (related term)|top (related term)|up (related term)|low (antonym)
+(adj)|eminent|superior (similar term)
+(adj)|high-pitched|adenoidal (similar term)|pinched (similar term)|nasal (similar term)|altissimo (similar term)|alto (similar term)|countertenor (similar term)|alto (similar term)|falsetto (similar term)|peaky (similar term)|spiky (similar term)|piping (similar term)|piercing (similar term)|shrill (similar term)|sharp (similar term)|screaky (similar term)|screechy (similar term)|squeaking (similar term)|squeaky (similar term)|squealing (similar term)|shrilling (similar term)|soprano (similar term)|treble (similar term)|sopranino (similar term)|tenor (similar term)|tenor (similar term)|low (antonym)
+(adj)|in high spirits|elated (similar term)
+(adj)|gamey|gamy|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|mellow|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)|low (antonym)
+(noun)|high pressure|air mass (generic term)
+(noun)|elation (generic term)|low spirits (antonym)
+(noun)|elation (generic term)
+(noun)|heights|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|senior high school|senior high|highschool|high school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+(noun)|high gear|gear (generic term)|gear mechanism (generic term)
+(adv)|high up
+(adv)|richly|luxuriously
+high-altitude|1
+(adj)|high-level|high (similar term)
+high-and-dry|1
+(adj)|beached|aground (similar term)
+high-and-mighty|1
+(adj)|autocratic|bossy|dominating|magisterial|peremptory|domineering (similar term)
+high-angle fire|1
+(noun)|artillery fire (generic term)|cannon fire (generic term)
+high-angle gun|1
+(noun)|cannon (generic term)
+high-backed|1
+(adj)|backed (similar term)
+high-bush blueberry|1
+(noun)|tall bilberry|swamp blueberry|Vaccinium corymbosum|blueberry (generic term)|blueberry bush (generic term)
+high-ceilinged|1
+(adj)|ceilinged (similar term)
+high-class|1
+(adj)|high-toned|elegant (similar term)
+high-crowned|1
+(adj)|crowned (similar term)
+high-definition television|1
+(noun)|HDTV|television (generic term)|telecasting (generic term)|TV (generic term)|video (generic term)
+high-density lipoprotein|1
+(noun)|HDL|alpha-lipoprotein|lipoprotein (generic term)
+high-energy|3
+(adj)|physical phenomenon (related term)
+(adj)|energetic (similar term)
+(adj)|high-octane|high-powered|high-power|high-voltage|dynamic (similar term)|dynamical (similar term)
+high-energy physics|1
+(noun)|particle physics|high energy physics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+high-fidelity|1
+(adj)|hi-fi|accurate (similar term)
+high-five|1
+(noun)|gesture (generic term)|motion (generic term)
+high-flown|2
+(adj)|high-sounding|inflated|pretentious (similar term)
+(adj)|exalted|sublime|grand|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+high-grade|1
+(adj)|top-quality|top-grade|best (similar term)
+high-handed|1
+(adj)|cavalier|domineering (similar term)
+high-handedness|1
+(noun)|arrogance|haughtiness|hauteur|lordliness|pride (generic term)
+high-hat cymbal|1
+(noun)|high hat|cymbal (generic term)
+high-interest|1
+(adj)|low-interest (antonym)
+high-keyed|1
+(adj)|excitable (similar term)
+high-level|2
+(adj)|high-ranking|upper-level|superior (similar term)
+(adj)|high-altitude|high (similar term)
+high-level formatting|1
+(noun)|format (generic term)|formatting (generic term)|data format (generic term)|data formatting (generic term)
+high-level language|1
+(noun)|application-oriented language (generic term)|problem-oriented language (generic term)
+high-level radioactive waste|1
+(noun)|radioactive waste (generic term)
+high-low|1
+(noun)|poker (generic term)|poker game (generic term)
+high-low-jack|1
+(noun)|all fours|card game (generic term)|cards (generic term)
+high-minded|1
+(adj)|exalted|sublime|grand|high-flown|lofty|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+high-mindedness|1
+(noun)|idealism|noble-mindedness|nobility (generic term)|nobleness (generic term)|magnanimousness (generic term)|grandeur (generic term)
+high-muck-a-muck|1
+(noun)|pooh-bah|important person (generic term)|influential person (generic term)|personage (generic term)
+high-necked|1
+(adj)|necked (similar term)
+high-octane|2
+(adj)|efficient (similar term)
+(adj)|high-powered|high-power|high-voltage|high-energy|dynamic (similar term)|dynamical (similar term)
+high-pass filter|1
+(noun)|filter (generic term)
+high-performance|1
+(adj)|superior (similar term)
+high-pitched|2
+(adj)|high|adenoidal (similar term)|pinched (similar term)|nasal (similar term)|altissimo (similar term)|alto (similar term)|countertenor (similar term)|alto (similar term)|falsetto (similar term)|peaky (similar term)|spiky (similar term)|piping (similar term)|piercing (similar term)|shrill (similar term)|sharp (similar term)|screaky (similar term)|screechy (similar term)|squeaking (similar term)|squeaky (similar term)|squealing (similar term)|shrilling (similar term)|soprano (similar term)|treble (similar term)|sopranino (similar term)|tenor (similar term)|tenor (similar term)|low (antonym)
+(adj)|inclined (similar term)
+high-potential|1
+(adj)|high-voltage|high-tension (similar term)
+high-power|1
+(adj)|high-octane|high-powered|high-voltage|high-energy|dynamic (similar term)|dynamical (similar term)
+high-powered|2
+(adj)|high-octane|high-power|high-voltage|high-energy|dynamic (similar term)|dynamical (similar term)
+(adj)|powered (similar term)
+high-pressure|1
+(adj)|hard-hitting|aggressive (similar term)
+high-priced|1
+(adj)|costly|dear|pricey|pricy|expensive (similar term)
+high-principled|1
+(adj)|principled (similar term)
+high-protein diet|1
+(noun)|diet (generic term)
+high-ranking|1
+(adj)|high-level|upper-level|superior (similar term)
+high-resolution|1
+(adj)|low-resolution (antonym)
+high-rise|2
+(adj)|multistory (similar term)|multistorey (similar term)|multistoried (similar term)|storied (similar term)|storeyed (similar term)|low-rise (antonym)
+(noun)|tower block|tower (generic term)
+high-risk|1
+(adj)|bad|risky|speculative|unsound (similar term)
+high-sounding|1
+(adj)|high-flown|inflated|pretentious (similar term)
+high-speed|1
+(adj)|high-velocity|fast (similar term)
+high-speed steel|1
+(noun)|hot-work steel|tool steel (generic term)
+high-spirited|1
+(adj)|ebullient|exuberant|spirited (similar term)
+high-spiritedness|1
+(noun)|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+high-stepped|1
+(adj)|high-stepping|high (similar term)
+high-stepping|1
+(adj)|high-stepped|high (similar term)
+high-strength brass|1
+(noun)|manganese bronze|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+high-strung|1
+(adj)|edgy|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense (similar term)
+high-sudsing|1
+(adj)|low-sudsing (antonym)
+high-tail|1
+(verb)|flee (generic term)|fly (generic term)|take flight (generic term)
+high-tech|1
+(adj)|hi-tech|advanced (similar term)|sophisticated (similar term)|low-tech (antonym)
+high-tension|1
+(adj)|high-voltage (similar term)|high-potential (similar term)|low-tension (antonym)
+high-ticket|1
+(adj)|big-ticket|expensive (similar term)
+high-toned|1
+(adj)|high-class|elegant (similar term)
+high-top|1
+(adj)|high-topped|high (similar term)
+high-topped|1
+(adj)|high-top|high (similar term)
+high-up|1
+(noun)|very important person|VIP|dignitary|panjandrum|high muckamuck|important person (generic term)|influential person (generic term)|personage (generic term)
+high-velocity|1
+(adj)|high-speed|fast (similar term)
+high-vitamin diet|1
+(noun)|vitamin-deficiency diet|diet (generic term)
+high-voltage|2
+(adj)|high-potential|high-tension (similar term)
+(adj)|high-octane|high-powered|high-power|high-energy|dynamic (similar term)|dynamical (similar term)
+high-warp loom|1
+(noun)|handloom (generic term)
+high-water mark|1
+(noun)|water line (generic term)|watermark (generic term)
+high-yield|1
+(adj)|fruitful (similar term)
+high-yield bond|1
+(noun)|junk bond|bond (generic term)|bond certificate (generic term)
+high altar|1
+(noun)|altar (generic term)
+high anglican church|1
+(noun)|High Church|High Anglican Church|sect (generic term)|religious sect (generic term)|religious order (generic term)
+high anglicanism|1
+(noun)|Anglo-Catholicism|High Anglicanism|Anglicanism (generic term)
+high bar|1
+(noun)|horizontal bar|gymnastic apparatus (generic term)|exerciser (generic term)
+high beam|1
+(noun)|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+high blood pressure|1
+(noun)|hypertension|cardiovascular disease (generic term)|hypotension (antonym)
+high brass|1
+(noun)|brass (generic term)
+high church|1
+(noun)|High Church|High Anglican Church|sect (generic term)|religious sect (generic term)|religious order (generic term)
+high colonic|1
+(noun)|colonic irrigation (generic term)|colonic (generic term)
+high comedy|1
+(noun)|comedy (generic term)
+high command|1
+(noun)|supreme headquarters|leadership (generic term)|leaders (generic term)
+high commission|1
+(noun)|High Commission|embassy (generic term)
+high commissioner|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+high court|1
+(noun)|supreme court|state supreme court|court (generic term)|tribunal (generic term)|judicature (generic term)
+high dam|1
+(noun)|Aswan High Dam|Aswan Dam|High Dam|dam (generic term)|dike (generic term)|dyke (generic term)
+high dudgeon|1
+(noun)|dudgeon|indignation (generic term)|outrage (generic term)
+high energy physics|1
+(noun)|particle physics|high-energy physics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+high explosive|1
+(noun)|explosive (generic term)|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)|low explosive (antonym)
+high fashion|1
+(noun)|haute couture|high style|fashion (generic term)
+high fidelity|1
+(noun)|hi-fi|sound reproduction (generic term)
+high fidelity sound system|1
+(noun)|hi-fi|reproducer (generic term)
+high finance|1
+(noun)|finance (generic term)
+high frequency|2
+(noun)|HF|radio frequency (generic term)
+(noun)|high pitch|pitch (generic term)|low pitch (antonym)
+high gear|1
+(noun)|high|gear (generic term)|gear mechanism (generic term)
+high german|1
+(noun)|German|High German|German language|West Germanic (generic term)|West Germanic language (generic term)
+high ground|1
+(noun)|status (generic term)|position (generic term)
+high hat|2
+(noun)|high-hat cymbal|cymbal (generic term)
+(noun)|dress hat|opera hat|silk hat|stovepipe|top hat|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+high holiday|1
+(noun)|High Holy Day|High Holiday|Jewish holy day (generic term)
+high holy day|1
+(noun)|High Holy Day|High Holiday|Jewish holy day (generic term)
+high horse|1
+(noun)|attitude (generic term)|mental attitude (generic term)
+high jinks|1
+(noun)|jinks|hijinks|high jinx|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+high jinx|1
+(noun)|jinks|high jinks|hijinks|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+high jump|2
+(noun)|field event (generic term)
+(noun)|jumping (generic term)
+high life|1
+(noun)|extravagance|prodigality|lavishness|highlife|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+high mallow|1
+(noun)|tall mallow|cheese|cheeseflower|Malva sylvestris|mallow (generic term)
+high mass|1
+(noun)|High Mass|Mass (generic term)
+high muckamuck|1
+(noun)|very important person|VIP|high-up|dignitary|panjandrum|important person (generic term)|influential person (generic term)|personage (generic term)
+high noon|1
+(noun)|noon|twelve noon|midday|noonday|noontide|hour (generic term)|time of day (generic term)
+high pitch|1
+(noun)|high frequency|pitch (generic term)|low pitch (antonym)
+high point|1
+(noun)|part (generic term)|section (generic term)|division (generic term)
+high pressure|1
+(noun)|high|air mass (generic term)
+high priest|2
+(noun)|authority (generic term)
+(noun)|archpriest|hierarch|prelate|primate|priest (generic term)
+high profile|1
+(noun)|status (generic term)|position (generic term)
+high quality|1
+(noun)|superiority|quality (generic term)|caliber (generic term)|calibre (generic term)|low quality (antonym)|inferiority (antonym)
+high relief|1
+(noun)|alto relievo|alto rilievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|low relief (antonym)
+high renaissance|1
+(noun)|High Renaissance|artistic style (generic term)|idiom (generic term)
+high roller|2
+(noun)|big spender|spendthrift (generic term)|spend-all (generic term)|spender (generic term)|scattergood (generic term)
+(noun)|gambler (generic term)
+high school|1
+(noun)|senior high school|senior high|high|highschool|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+high sea|1
+(noun)|international waters|body of water (generic term)|water (generic term)|territorial waters (antonym)|territorial waters (antonym)
+high season|1
+(noun)|peak season|season (generic term)|off-season (antonym)
+high sierra|1
+(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+high sign|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+high society|1
+(noun)|society|beau monde|smart set|bon ton|elite (generic term)|elite group (generic term)
+high spirits|1
+(noun)|elation|lightness|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+high spot|1
+(noun)|highlight|detail (generic term)|particular (generic term)|item (generic term)
+high status|1
+(noun)|status (generic term)|position (generic term)|low status (antonym)
+high stepper|1
+(noun)|stepper|horse (generic term)|Equus caballus (generic term)
+high street|1
+(noun)|main street|street (generic term)
+high style|1
+(noun)|haute couture|high fashion|fashion (generic term)
+high table|1
+(noun)|dining table (generic term)|board (generic term)
+high tea|1
+(noun)|dinner (generic term)
+high tech|1
+(noun)|high technology|technology (generic term)|engineering (generic term)
+high technology|1
+(noun)|high tech|technology (generic term)|engineering (generic term)
+high temperature|1
+(noun)|hotness|heat|temperature (generic term)|coldness (antonym)
+high tide|1
+(noun)|high water|highwater|tide (generic term)|low tide (antonym)
+high time|1
+(noun)|time (generic term)
+high treason|1
+(noun)|treason|lese majesty|crime (generic term)|law-breaking (generic term)
+high up|1
+(adv)|high
+high water|1
+(noun)|high tide|highwater|tide (generic term)|low tide (antonym)
+high wind|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+high wire|1
+(noun)|tightrope (generic term)
+highball|1
+(noun)|mixed drink (generic term)
+highball glass|1
+(noun)|glass (generic term)|drinking glass (generic term)
+highbinder|1
+(noun)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+highboard|1
+(noun)|diving board (generic term)
+highborn|1
+(adj)|coroneted|titled|noble (similar term)
+highboy|1
+(noun)|tallboy|chest of drawers (generic term)|chest (generic term)|bureau (generic term)|dresser (generic term)
+highbrow|2
+(adj)|highbrowed|intellectual (similar term)
+(noun)|intellectual (generic term)|intellect (generic term)
+highbrowed|1
+(adj)|highbrow|intellectual (similar term)
+highbush cranberry|1
+(noun)|cranberry bush|cranberry tree|American cranberry bush|Viburnum trilobum|shrub (generic term)|bush (generic term)
+highchair|1
+(noun)|feeding chair|chair (generic term)
+higher|1
+(adj)|high (similar term)
+higher-ranking|1
+(adj)|ranking|superior|senior (similar term)
+higher-up|1
+(noun)|superior|superordinate|leader (generic term)|inferior (antonym)
+higher cognitive process|1
+(noun)|process (generic term)|cognitive process (generic term)|mental process (generic term)|operation (generic term)|cognitive operation (generic term)
+higher criticism|1
+(noun)|textual criticism (generic term)
+higher education|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+higher law|1
+(noun)|principle (generic term)|precept (generic term)
+higher national diploma|1
+(noun)|Higher National Diploma|HND|diploma (generic term)|sheepskin (generic term)
+higher rank|1
+(noun)|seniority|senior status|higher status|high status (generic term)
+higher status|1
+(noun)|seniority|senior status|higher rank|high status (generic term)
+higher up|1
+(adv)|above|in a higher place|to a higher place|below (antonym)
+highest common factor|1
+(noun)|greatest common divisor|greatest common factor|common divisor (generic term)|common factor (generic term)|common measure (generic term)
+highfalutin|1
+(adj)|grandiose|hifalutin|highfaluting|hoity-toity|la-di-da|pretentious (similar term)
+highfaluting|1
+(adj)|grandiose|hifalutin|highfalutin|hoity-toity|la-di-da|pretentious (similar term)
+highflier|1
+(noun)|highflyer|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+highflyer|1
+(noun)|highflier|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+highflying|2
+(adj)|ascending (similar term)
+(adj)|unrestrained (similar term)
+highjack|2
+(noun)|hijack|crime (generic term)|law-breaking (generic term)
+(verb)|commandeer|hijack|pirate|seize (generic term)
+highjacker|2
+(noun)|hijacker|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|highwayman|hijacker|road agent|holdup man (generic term)|stickup man (generic term)
+highjacking|1
+(noun)|hijacking|robbery (generic term)
+highland|2
+(adj)|upland|alpestrine (similar term)|subalpine (similar term)|alpine (similar term)|mountainous (similar term)|lowland (antonym)
+(noun)|upland|natural elevation (generic term)|elevation (generic term)|lowland (antonym)
+highland fling|1
+(noun)|reel (generic term)|Scottish reel (generic term)
+highland scot|1
+(noun)|Highlander|Scottish Highlander|Highland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+highlander|2
+(noun)|Highlander|soldier (generic term)
+(noun)|Highlander|Scottish Highlander|Highland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+highlands|1
+(noun)|Highlands|Highlands of Scotland|highland (generic term)|upland (generic term)
+highlands of scotland|1
+(noun)|Highlands|Highlands of Scotland|highland (generic term)|upland (generic term)
+highlife|1
+(noun)|extravagance|prodigality|lavishness|high life|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+highlight|4
+(noun)|high spot|detail (generic term)|particular (generic term)|item (generic term)
+(noun)|highlighting|light (generic term)|lightness (generic term)
+(verb)|foreground|spotlight|play up|bring out (generic term)|set off (generic term)|play down (antonym)|background (antonym)
+(verb)|make up (generic term)
+highlighter|2
+(noun)|cosmetic (generic term)
+(noun)|marker (generic term)
+highlighting|1
+(noun)|highlight|light (generic term)|lightness (generic term)
+highly|1
+(adv)|extremely
+highly-developed|1
+(adj)|developed|industrial (similar term)
+highly-sexed|1
+(adj)|oversexed|sexy (similar term)
+highly active antiretroviral therapy|1
+(noun)|drug cocktail|HAART|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+highly infective|1
+(adj)|virulent (similar term)
+highly sensitive|1
+(adj)|sensitive (similar term)
+highly strung|1
+(adj)|edgy|high-strung|in suspense|jittery|jumpy|nervy|overstrung|restive|uptight|tense (similar term)
+highness|3
+(noun)|Highness|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+(noun)|loftiness|height (generic term)|tallness (generic term)|lowness (antonym)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)
+highroad|1
+(noun)|trunk road|highway (generic term)|main road (generic term)
+highschool|1
+(noun)|senior high school|senior high|high|high school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+hightail|1
+(verb)|leave (generic term)|go forth (generic term)|go away (generic term)
+hightail it|1
+(verb)|scat|run|scarper|turn tail|lam|run away|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+highwater|1
+(noun)|high tide|high water|tide (generic term)|low tide (antonym)
+highway|1
+(noun)|main road|road (generic term)|route (generic term)
+highway code|1
+(noun)|Highway Code|code (generic term)|codification (generic term)
+highway engineer|1
+(noun)|civil engineer (generic term)
+highway robbery|2
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+(noun)|robbery (generic term)
+highway system|1
+(noun)|transportation system (generic term)|transportation (generic term)|transit (generic term)
+highwayman|1
+(noun)|highjacker|hijacker|road agent|holdup man (generic term)|stickup man (generic term)
+higi|1
+(noun)|Higi|Kapsiki|Biu-Mandara (generic term)
+hijab|2
+(noun)|headscarf (generic term)
+(noun)|custom (generic term)|usage (generic term)|usance (generic term)
+hijack|3
+(noun)|highjack|crime (generic term)|law-breaking (generic term)
+(verb)|commandeer|highjack|pirate|seize (generic term)
+(verb)|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+hijacker|2
+(noun)|highjacker|highwayman|road agent|holdup man (generic term)|stickup man (generic term)
+(noun)|highjacker|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+hijacking|1
+(noun)|highjacking|robbery (generic term)
+hijaz|1
+(noun)|Hejaz|Hedjaz|Hijaz|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+hijinks|1
+(noun)|jinks|high jinks|high jinx|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+hike|5
+(noun)|hiking|tramp|walk (generic term)
+(noun)|rise|boost|cost increase|increase (generic term)|increment (generic term)
+(noun)|raise|rise|wage hike|wage increase|salary increase|increase (generic term)|increment (generic term)
+(verb)|hike up|boost|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|walk (generic term)
+hike up|2
+(verb)|hitch up|pull (generic term)
+(verb)|hike|boost|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+hiker|1
+(noun)|tramp|tramper|pedestrian (generic term)|walker (generic term)|footer (generic term)
+hiking|1
+(noun)|hike|tramp|walk (generic term)
+hilaire belloc|1
+(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer (generic term)|author (generic term)
+hilaire germain edgar degas|1
+(noun)|Degas|Edgar Degas|Hilaire Germain Edgar Degas|painter (generic term)
+hilar|1
+(adj)|fissure (related term)
+hilarious|1
+(adj)|screaming|uproarious|humorous (similar term)|humourous (similar term)
+hilariously|1
+(adv)|uproariously
+hilarity|1
+(noun)|mirth|mirthfulness|glee|gleefulness|gaiety (generic term)|merriment (generic term)
+hilary clinton|1
+(noun)|Clinton|Hilary Clinton|Hilary Rodham Clinton|senator (generic term)
+hilary rodham clinton|1
+(noun)|Clinton|Hilary Clinton|Hilary Rodham Clinton|senator (generic term)
+hilbert|1
+(noun)|Hilbert|David Hilbert|mathematician (generic term)
+hilbert space|1
+(noun)|Hilbert space|metric space (generic term)
+hildebrand|1
+(noun)|Gregory|Gregory VII|Hildebrand|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+hill|6
+(noun)|natural elevation (generic term)|elevation (generic term)
+(noun)|mound|structure (generic term)|construction (generic term)
+(noun)|Hill|J. J. Hill|James Jerome Hill|businessman (generic term)|man of affairs (generic term)
+(noun)|Hill|Benny Hill|Alfred Hawthorne|comedian (generic term)|comic (generic term)
+(noun)|mound|pitcher's mound|baseball equipment (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+hill myna|1
+(noun)|Indian grackle|grackle|Gracula religiosa|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+hillary|1
+(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer (generic term)|mountain climber (generic term)
+hillbilly|1
+(noun)|bushwhacker|rustic (generic term)
+hillbilly music|1
+(noun)|country music (generic term)|country and western (generic term)|C and W (generic term)
+hillel|1
+(noun)|Hillel|rabbi (generic term)
+hilliness|1
+(noun)|ruggedness (generic term)
+hillock|1
+(noun)|knoll|mound|hummock|hammock|hill (generic term)
+hillside|1
+(noun)|slope (generic term)|incline (generic term)|side (generic term)
+hilltop|1
+(noun)|brow|peak (generic term)|crown (generic term)|crest (generic term)|top (generic term)|tip (generic term)|summit (generic term)
+hilly|1
+(adj)|cragged|craggy|mountainous|rough (similar term)|unsmooth (similar term)
+hilo|1
+(noun)|Hilo|town (generic term)
+hilt|1
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+hilum|2
+(noun)|hilus|fissure (generic term)
+(noun)|point (generic term)
+hilus|1
+(noun)|hilum|fissure (generic term)
+himalaya|1
+(noun)|Himalayas|Himalaya Mountains|Himalaya|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+himalaya honeysuckle|1
+(noun)|Himalaya honeysuckle|Leycesteria formosa|shrub (generic term)|bush (generic term)
+himalaya mountains|1
+(noun)|Himalayas|Himalaya Mountains|Himalaya|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+himalayan|1
+(adj)|Himalayan|range|mountain range|range of mountains|chain|mountain chain|chain of mountains (related term)
+himalayan cedar|1
+(noun)|deodar|deodar cedar|Himalayan cedar|Cedrus deodara|cedar (generic term)|cedar tree (generic term)|true cedar (generic term)
+himalayan lilac|1
+(noun)|Himalayan lilac|Syringa emodi|lilac (generic term)
+himalayan rhubarb|1
+(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb (generic term)|rhubarb plant (generic term)
+himalayas|1
+(noun)|Himalayas|Himalaya Mountains|Himalaya|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+himalayish|1
+(noun)|Himalayish|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+himantoglossum|1
+(noun)|Himantoglossum|genus Himantoglossum|monocot genus (generic term)|liliopsid genus (generic term)
+himantoglossum hircinum|1
+(noun)|lizard orchid|Himantoglossum hircinum|orchid (generic term)|orchidaceous plant (generic term)
+himantopus|1
+(noun)|Himantopus|genus Himantopus|bird genus (generic term)
+himantopus himantopus|1
+(noun)|black-winged stilt|Himantopus himantopus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+himantopus himantopus leucocephalus|1
+(noun)|white-headed stilt|Himantopus himantopus leucocephalus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+himantopus mexicanus|1
+(noun)|black-necked stilt|Himantopus mexicanus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+himantopus novae-zelandiae|1
+(noun)|kaki|Himantopus novae-zelandiae|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+himantopus stilt|1
+(noun)|stilt|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+himmler|1
+(noun)|Himmler|Heinrich Himmler|Nazi (generic term)|German Nazi (generic term)
+hin|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+hinault|1
+(noun)|Hinault|Bernard Hinault|cyclist (generic term)|bicyclist (generic term)|bicycler (generic term)|wheeler (generic term)
+hinayana|2
+(noun)|Hinayana|Buddhism (generic term)
+(noun)|Hinayana|Hinayana Buddhism|Theravada (generic term)|Theravada Buddhism (generic term)
+hinayana buddhism|1
+(noun)|Hinayana|Hinayana Buddhism|Theravada (generic term)|Theravada Buddhism (generic term)
+hinayanism|1
+(noun)|Hinayanism|theological doctrine (generic term)
+hinayanist|1
+(noun)|Hinayanist|disciple (generic term)|adherent (generic term)
+hind|3
+(adj)|back|hinder|posterior (similar term)
+(noun)|grouper (generic term)
+(noun)|red deer (generic term)|Cervus elaphus (generic term)
+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 (generic term)
+hind leg|1
+(noun)|hind limb (generic term)
+hind limb|1
+(noun)|limb (generic term)
+hindbrain|1
+(noun)|rhombencephalon|neural structure (generic term)
+hindemith|1
+(noun)|Hindemith|Paul Hindemith|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+hindenburg|1
+(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general (generic term)|full general (generic term)|field marshal (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+hinder|4
+(adj)|back|hind|posterior (similar term)
+(verb)|impede|prevent (generic term)|keep (generic term)
+(verb)|obstruct|blockade|block|stymie|stymy|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|handicap|hamper|disadvantage (generic term)|disfavor (generic term)|disfavour (generic term)
+hinderance|3
+(noun)|hindrance|deterrent|impediment|balk|baulk|check|handicap|difficulty (generic term)
+(noun)|hindrance|hitch|preventive|preventative|encumbrance|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|hindrance|interference|act (generic term)|human action (generic term)|human activity (generic term)
+hindering|1
+(adj)|clogging|impeding|obstructive|preventive (similar term)|preventative (similar term)
+hinderingly|1
+(adv)|obstructively
+hindermost|1
+(adj)|backmost|hindmost|rearmost|back (similar term)
+hindfoot|1
+(noun)|animal foot (generic term)|foot (generic term)
+hindgut|1
+(noun)|internal organ (generic term)|viscus (generic term)
+hindi|2
+(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief (related term)
+(noun)|Hindi|Sanskrit (generic term)|Sanskritic language (generic term)
+hindmost|1
+(adj)|backmost|hindermost|rearmost|back (similar term)
+hindoo|3
+(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief (related term)
+(noun)|Hindu|Hindoo|Hindustani|Asian (generic term)|Asiatic (generic term)
+(noun)|Hindu|Hindoo|religious person (generic term)
+hindooism|2
+(noun)|Hinduism|Hindooism|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Hinduism|Hindooism|religion (generic term)|faith (generic term)|religious belief (generic term)
+hindoostani|1
+(noun)|Hindustani|Hindoostani|Hindostani|Hindi (generic term)
+hindostani|1
+(noun)|Hindustani|Hindoostani|Hindostani|Hindi (generic term)
+hindquarter|1
+(noun)|cut (generic term)|cut of meat (generic term)
+hindquarters|2
+(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 (generic term)
+(noun)|croup|croupe|rump|body part (generic term)
+hindrance|3
+(noun)|hinderance|deterrent|impediment|balk|baulk|check|handicap|difficulty (generic term)
+(noun)|hinderance|hitch|preventive|preventative|encumbrance|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|hinderance|interference|act (generic term)|human action (generic term)|human activity (generic term)
+hindshank|1
+(noun)|shank (generic term)
+hindsight|1
+(noun)|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+hindu|3
+(adj)|Hindu|Hindi|Hindoo|religion|faith|religious belief (related term)
+(noun)|Hindu|Hindoo|Hindustani|Asian (generic term)|Asiatic (generic term)
+(noun)|Hindu|Hindoo|religious person (generic term)
+hindu-arabic numeral|1
+(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral (generic term)|number (generic term)|Roman numeral (antonym)
+hindu calendar|1
+(noun)|Hindu calendar|lunisolar calendar (generic term)
+hindu calendar month|1
+(noun)|Hindu calendar month|calendar month (generic term)|month (generic term)
+hindu deity|1
+(noun)|Hindu deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+hindu kush|1
+(noun)|Hindu Kush|Hindu Kush Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+hindu kush mountains|1
+(noun)|Hindu Kush|Hindu Kush Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+hindu numeral|1
+(noun)|Arabic numeral|Hindu numeral|Hindu-Arabic numeral|numeral (generic term)|number (generic term)|Roman numeral (antonym)
+hinduism|2
+(noun)|Hinduism|Hindooism|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Hinduism|Hindooism|religion (generic term)|faith (generic term)|religious belief (generic term)
+hindustan|1
+(noun)|Hindustan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+hindustani|3
+(adj)|Hindustani|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Hindu|Hindoo|Hindustani|Asian (generic term)|Asiatic (generic term)
+(noun)|Hindustani|Hindoostani|Hindostani|Hindi (generic term)
+hinge|3
+(noun)|flexible joint|joint (generic term)
+(noun)|circumstance (generic term)
+(verb)|attach (generic term)
+hinge joint|2
+(noun)|ginglymus|ginglymoid joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+(noun)|knuckle joint|joint (generic term)
+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 (generic term)
+hinny|1
+(noun)|equine (generic term)|equid (generic term)
+hint|6
+(noun)|intimation|breath|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|clue|indication (generic term)|indicant (generic term)
+(noun)|touch|tinge|mite|pinch|jot|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|trace|suggestion|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|tip|lead|steer|confidential information|wind|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(verb)|suggest|convey (generic term)|impart (generic term)
+hinterland|1
+(noun)|backwoods|back country|boondocks|country (generic term)|rural area (generic term)
+hip|5
+(adj)|hep|hip to|informed (similar term)
+(noun)|body part (generic term)
+(noun)|pelvis|pelvic girdle|pelvic arch|girdle (generic term)
+(noun)|hip joint|coxa|articulatio coxae|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+(noun)|rose hip|rosehip|fruit (generic term)
+hip-hop|2
+(noun)|youth culture (generic term)
+(noun)|rap|rap music|popular music (generic term)|popular music genre (generic term)|black music (generic term)|African-American music (generic term)
+hip-length|1
+(adj)|hiplength|line (related term)
+hip bath|1
+(noun)|sitz bath|bathtub (generic term)|bathing tub (generic term)|bath (generic term)|tub (generic term)
+hip boot|1
+(noun)|thigh boot|boot (generic term)
+hip joint|1
+(noun)|hip|coxa|articulatio coxae|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+hip pad|1
+(noun)|protective garment (generic term)
+hip pocket|1
+(noun)|pocket (generic term)
+hip roof|1
+(noun)|roof (generic term)
+hip socket|1
+(noun)|socket (generic term)
+hip tile|1
+(noun)|tile (generic term)|roofing tile (generic term)
+hip to|1
+(adj)|hep|hip|informed (similar term)
+hipbone|1
+(noun)|innominate bone|bone (generic term)|os (generic term)
+hipflask|1
+(noun)|pocket flask|flask (generic term)
+hiplength|1
+(adj)|hip-length|line (related term)
+hipless|1
+(adj)|hipped (antonym)
+hipline|1
+(noun)|line (generic term)
+hipparchus|1
+(noun)|Hipparchus|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)|mathematician (generic term)
+hippeastrum|1
+(noun)|Hippeastrum puniceum|amaryllis (generic term)
+hippeastrum puniceum|1
+(noun)|hippeastrum|Hippeastrum puniceum|amaryllis (generic term)
+hipped|2
+(adj)|hipless (antonym)
+(adj)|mansard (similar term)|gabled (antonym)
+hippie|1
+(noun)|hippy|hipster|flower child|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+hippies|1
+(noun)|flower people|hipsters|youth subculture (generic term)
+hippo|2
+(noun)|Hippo|Hippo Regius|town (generic term)
+(noun)|hippopotamus|river horse|Hippopotamus amphibius|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+hippo regius|1
+(noun)|Hippo|Hippo Regius|town (generic term)
+hippobosca|1
+(noun)|Hippobosca|genus Hippobosca|arthropod genus (generic term)
+hippobosca equina|1
+(noun)|horse tick|horsefly|Hippobosca equina|louse fly (generic term)|hippoboscid (generic term)
+hippoboscid|1
+(noun)|louse fly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+hippoboscidae|1
+(noun)|Hippoboscidae|family Hippoboscidae|arthropod family (generic term)
+hippocampus|2
+(noun)|neural structure (generic term)
+(noun)|Hippocampus|genus Hippocampus|fish genus (generic term)
+hippocastanaceae|1
+(noun)|Hippocastanaceae|family Hippocastanaceae|horse-chestnut family|dicot family (generic term)|magnoliopsid family (generic term)
+hippocrates|1
+(noun)|Hippocrates|medical practitioner (generic term)|medical man (generic term)
+hippocratic|1
+(adj)|Hippocratic|medical practitioner|medical man (related term)
+hippocratic oath|1
+(noun)|Hippocratic oath|oath (generic term)
+hippocrepis|1
+(noun)|Hippocrepis|genus Hippocrepis|rosid dicot genus (generic term)
+hippocrepis comosa|1
+(noun)|horseshoe vetch|Hippocrepis comosa|subshrub (generic term)|suffrutex (generic term)
+hippodamia|1
+(noun)|Hippodamia|genus Hippodamia|arthropod genus (generic term)
+hippodamia convergens|1
+(noun)|Hippodamia convergens|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+hippodrome|1
+(noun)|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+hippoglossoides|1
+(noun)|Hippoglossoides|genus Hippoglossoides|fish genus (generic term)
+hippoglossoides platessoides|1
+(noun)|American plaice|Hippoglossoides platessoides|righteye flounder (generic term)|righteyed flounder (generic term)
+hippoglossus|1
+(noun)|Hippoglossus|genus Hippoglossus|fish genus (generic term)
+hippoglossus hippoglossus|1
+(noun)|Atlantic halibut|Hippoglossus hippoglossus|righteye flounder (generic term)|righteyed flounder (generic term)
+hippoglossus stenolepsis|1
+(noun)|Pacific halibut|Hippoglossus stenolepsis|righteye flounder (generic term)|righteyed flounder (generic term)
+hippolyte jean giraudoux|1
+(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+hippopotamidae|1
+(noun)|Hippopotamidae|family Hippopotamidae|mammal family (generic term)
+hippopotamus|1
+(noun)|hippo|river horse|Hippopotamus amphibius|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+hippopotamus amphibius|1
+(noun)|hippopotamus|hippo|river horse|Hippopotamus amphibius|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+hipposideridae|1
+(noun)|Hipposideridae|family Hipposideridae|mammal family (generic term)
+hipposideros|1
+(noun)|Hipposideros|genus Hipposideros|mammal genus (generic term)
+hippotragus|1
+(noun)|Hippotragus|genus Hippotragus|mammal genus (generic term)
+hippotragus niger|1
+(noun)|sable antelope|Hippotragus niger|antelope (generic term)
+hippy|1
+(noun)|hippie|hipster|flower child|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+hipster|1
+(noun)|hippie|hippy|flower child|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+hipsters|1
+(noun)|flower people|hippies|youth subculture (generic term)
+hipsurus|1
+(noun)|Hipsurus|genus Hipsurus|fish genus (generic term)
+hipsurus caryi|1
+(noun)|rainbow seaperch|rainbow perch|Hipsurus caryi|surfperch (generic term)|surffish (generic term)|surf fish (generic term)
+hiram king williams|1
+(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+hiram ulysses grant|1
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+hiram williams|1
+(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+hircine|1
+(adj)|bovid (related term)
+hire|5
+(noun)|employee (generic term)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(verb)|engage|employ|fire (antonym)
+(verb)|rent|charter|lease|contract (generic term)|undertake (generic term)
+(verb)|lease|rent|charter|engage|take|get (generic term)|acquire (generic term)
+hire-purchase|1
+(noun)|never-never|installment plan (generic term)|installment buying (generic term)|time plan (generic term)
+hire car|1
+(noun)|car rental|rent-a-car|self-drive|u-drive|you-drive|lease (generic term)|rental (generic term)|letting (generic term)
+hire out|1
+(verb)|rent out|farm out|lend (generic term)|loan (generic term)
+hired|2
+(adj)|employed (similar term)
+(adj)|chartered|leased|unchartered (antonym)
+hired gun|1
+(noun)|gunman|gunslinger|gun|gun for hire|triggerman|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+hired hand|1
+(noun)|hand|hired man|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+hired help|1
+(noun)|employee (generic term)
+hired man|1
+(noun)|hired hand|hand|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+hireling|1
+(noun)|pensionary|employee (generic term)
+hirer|1
+(noun)|boss|employer (generic term)
+hiring freeze|1
+(noun)|freeze (generic term)
+hiring hall|1
+(noun)|placement office (generic term)|placement center (generic term)
+hirohito|1
+(noun)|Hirohito|Michinomiya Hirohito|emperor (generic term)
+hiroshima|1
+(noun)|Hiroshima|port (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+hirschfeld|1
+(noun)|Hirschfeld|Al Hirschfeld|artist (generic term)|creative person (generic term)
+hirschsprung|1
+(noun)|Hirschsprung|Harold Hirschsprung|baby doctor (generic term)|pediatrician (generic term)|pediatrist (generic term)|paediatrician (generic term)
+hirschsprung's disease|1
+(noun)|Hirschsprung's disease|congenital megacolon|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+hirsute|1
+(adj)|hairy|haired|canescent (similar term)|hoary (similar term)|coarse-haired (similar term)|coarse-furred (similar term)|comate (similar term)|comose (similar term)|comal (similar term)|curly-haired (similar term)|curly-coated (similar term)|dark-haired (similar term)|dark-coated (similar term)|downy (similar term)|pubescent (similar term)|puberulent (similar term)|sericeous (similar term)|floccose (similar term)|furlike (similar term)|furred (similar term)|furry (similar term)|fuzzed (similar term)|fuzzy (similar term)|glossy-haired (similar term)|glossy-coated (similar term)|glossy-furred (similar term)|hispid (similar term)|lanate (similar term)|woolly (similar term)|long-haired (similar term)|pappose (similar term)|pilous (similar term)|pilose (similar term)|pilary (similar term)|rough-haired (similar term)|shock-headed (similar term)|short-haired (similar term)|silky-haired (similar term)|silver-haired (similar term)|smooth-haired (similar term)|snake-haired (similar term)|soft-haired (similar term)|stiff-haired (similar term)|thick-haired (similar term)|tomentose (similar term)|tomentous (similar term)|velvety-furred (similar term)|velvety-haired (similar term)|wire-haired (similar term)|wiry-coated (similar term)|wiry (similar term)|wooly (similar term)|woolly (similar term)|wooly-haired (similar term)|woolly-haired (similar term)|hairless (antonym)
+hirsuteness|1
+(noun)|hirsutism|hairiness (generic term)|pilosity (generic term)
+hirsutism|1
+(noun)|hirsuteness|hairiness (generic term)|pilosity (generic term)
+hirudinea|1
+(noun)|Hirudinea|class Hirudinea|class (generic term)
+hirudinean|1
+(noun)|leech|bloodsucker|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+hirudinidae|1
+(noun)|Hirudinidae|family Hirudinidae|worm family (generic term)
+hirudo|1
+(noun)|Hirudo|genus Hirudo|worm genus (generic term)
+hirudo medicinalis|1
+(noun)|medicinal leech|Hirudo medicinalis|leech (generic term)|bloodsucker (generic term)|hirudinean (generic term)
+hirundinidae|1
+(noun)|Hirundinidae|family Hirundinidae|bird family (generic term)
+hirundo|1
+(noun)|Hirundo|genus Hirundo|bird genus (generic term)
+hirundo nigricans|1
+(noun)|tree swallow|tree martin|Hirundo nigricans|swallow (generic term)
+hirundo pyrrhonota|1
+(noun)|cliff swallow|Hirundo pyrrhonota|swallow (generic term)
+hirundo rustica|1
+(noun)|barn swallow|chimney swallow|Hirundo rustica|swallow (generic term)
+hispanic|2
+(adj)|Hispanic|Latino|American (related term)
+(noun)|Spanish American|Hispanic American|Hispanic|American (generic term)
+hispanic american|1
+(noun)|Spanish American|Hispanic American|Hispanic|American (generic term)
+hispaniola|1
+(noun)|Hispaniola|Haiti|Hayti|island (generic term)
+hispaniolan|1
+(adj)|Hispaniolan|island (related term)
+hispid|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+hispid pocket mouse|1
+(noun)|Perognathus hispidus|pocket mouse (generic term)
+hiss|6
+(noun)|hissing|hushing|fizzle|sibilation|noise (generic term)
+(noun)|boo|hoot|Bronx cheer|raspberry|razzing|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|siss|sizz|sibilate|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|whoosh|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|sizz|siss|sibilate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|boo|condemn (generic term)|applaud (antonym)
+hisser|1
+(noun)|communicator (generic term)
+hissing|1
+(noun)|hiss|hushing|fizzle|sibilation|noise (generic term)
+histaminase|1
+(noun)|enzyme (generic term)
+histamine|1
+(noun)|amine (generic term)|aminoalkane (generic term)
+histamine blocker|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+histamine headache|1
+(noun)|cluster headache|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+histidine|1
+(noun)|essential amino acid (generic term)
+histiocyte|1
+(noun)|macrophage (generic term)
+histiocytic leukaemia|1
+(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|monoblastic leukaemia|histiocytic leukemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+histiocytic leukemia|1
+(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|monoblastic leukaemia|histiocytic leukaemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+histiocytosis|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+histocompatibility|1
+(noun)|organic phenomenon (generic term)
+histocompatibility complex|1
+(noun)|class (generic term)|category (generic term)|family (generic term)
+histogram|1
+(noun)|bar chart (generic term)|bar graph (generic term)
+histoincompatibility|1
+(noun)|incompatibility (generic term)
+histologic|1
+(adj)|histological|microscopic anatomy (related term)
+histological|1
+(adj)|histologic|microscopic anatomy (related term)
+histologist|1
+(noun)|anatomist (generic term)
+histology|1
+(noun)|microscopic anatomy (generic term)
+histone|1
+(noun)|simple protein (generic term)
+historian|1
+(noun)|historiographer|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+historic|2
+(adj)|historical|past (similar term)
+(adj)|important (similar term)|of import (similar term)
+historic period|2
+(noun)|period|historical period|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|age|era (generic term)|epoch (generic term)
+historical|4
+(adj)|humanistic discipline|humanities|liberal arts|arts (related term)|ahistorical (antonym)
+(adj)|real (similar term)|existent (similar term)
+(adj)|historic|past (similar term)
+(adj)|diachronic|synchronic (antonym)
+historical document|1
+(noun)|historical paper|historical record|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+historical linguistics|1
+(noun)|diachronic linguistics|diachrony|linguistics (generic term)
+historical paper|1
+(noun)|historical document|historical record|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+historical period|1
+(noun)|period|historic period|time period (generic term)|period of time (generic term)|period (generic term)
+historical present|1
+(noun)|present (generic term)|present tense (generic term)
+historical record|1
+(noun)|historical document|historical paper|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+historical school|1
+(noun)|school (generic term)
+historicalness|2
+(noun)|reality (generic term)
+(noun)|significance (generic term)
+historied|1
+(adj)|celebrated|storied|glorious (similar term)
+historiographer|1
+(noun)|historian|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+historiography|2
+(noun)|literature (generic term)
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+history|5
+(noun)|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+(noun)|continuum (generic term)
+(noun)|account|chronicle|story|record (generic term)
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+history department|1
+(noun)|department of history|academic department (generic term)
+history lesson|1
+(noun)|lesson (generic term)
+histrion|1
+(noun)|actor|player|thespian|role player|performer (generic term)|performing artist (generic term)
+histrionic|1
+(adj)|melodramatic|theatrical (similar term)
+histrionics|2
+(noun)|theatrical performance|theatrical|representation|performance (generic term)|public presentation (generic term)
+(noun)|display (generic term)
+hit|24
+(noun)|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|hitting|striking|touch (generic term)|touching (generic term)
+(noun)|smash|smasher|strike|bang|success (generic term)
+(noun)|collision|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|dose (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+(noun)|joining (generic term)|connection (generic term)|connexion (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|strike|impinge on|run into|collide with|touch (generic term)|miss (antonym)
+(verb)|strike|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|touch (generic term)
+(verb)|reach|make|attain|arrive at|gain
+(verb)|reach|attain|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|shoot|pip|injure (generic term)|wound (generic term)
+(verb)|strike|come to
+(verb)|strike|attack (generic term)|assail (generic term)
+(verb)|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|strike|touch (generic term)
+(verb)|stumble|come by (generic term)
+(verb)|score|tally|rack up|gain (generic term)|advance (generic term)|win (generic term)|pull ahead (generic term)|make headway (generic term)|get ahead (generic term)|gain ground (generic term)
+(verb)|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|murder|slay|dispatch|bump off|off|polish off|remove|kill (generic term)
+(verb)|strike|move (generic term)|displace (generic term)
+(verb)|approach (generic term)
+hit-and-run|2
+(adj)|tip-and-run|offensive (similar term)
+(adj)|negligent (similar term)
+hit-or-miss|1
+(adj)|haphazard|random (similar term)
+hit home|1
+(verb)|strike home|strike a chord|strike a note|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+hit it up|1
+(verb)|souse|soak|inebriate|drink (generic term)|booze (generic term)|fuddle (generic term)
+hit list|1
+(noun)|list (generic term)|listing (generic term)
+hit man|1
+(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+hit parade|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|list (generic term)|listing (generic term)
+hit squad|1
+(noun)|team (generic term)|squad (generic term)
+hit the books|1
+(verb)|study|learn (generic term)|larn (generic term)|acquire (generic term)
+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 (generic term)
+hit the deck|1
+(verb)|hit the dirt|move (generic term)
+hit the dirt|1
+(verb)|hit the deck|move (generic term)
+hit the hay|1
+(verb)|go to bed|turn in|bed|crawl in|kip down|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+hit the jackpot|1
+(verb)|luck out|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+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 (generic term)
+hit the sack|1
+(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+hitch|12
+(noun)|enlistment|term of enlistment|tour of duty|duty tour|tour|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|arrest|check|halt|stay|stop|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|hang-up|rub|snag|obstacle (generic term)|obstruction (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|knot (generic term)
+(noun)|hindrance|hinderance|preventive|preventative|encumbrance|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|hobble|limp|gait (generic term)
+(verb)|catch|attach (generic term)|unhitch (antonym)
+(verb)|limp|gimp|hobble|walk (generic term)
+(verb)|buck|jerk|move (generic term)
+(verb)|hitchhike|thumb|ride (generic term)
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+hitch up|1
+(verb)|hike up|pull (generic term)
+hitchcock|1
+(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director (generic term)|director (generic term)
+hitchhike|1
+(verb)|hitch|thumb|ride (generic term)
+hitchhiker|1
+(noun)|passenger (generic term)|rider (generic term)
+hitching bar|1
+(noun)|hitchrack|rail (generic term)
+hitching post|1
+(noun)|post (generic term)
+hitchings|1
+(noun)|Hitchings|George Herbert Hitchings|biochemist (generic term)
+hitchiti|2
+(noun)|Hitchiti|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Hitchiti|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+hitchrack|1
+(noun)|hitching bar|rail (generic term)
+hither|1
+(adv)|here|there (antonym)
+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 (generic term)|potentate (generic term)|Nazi (generic term)|German Nazi (generic term)
+hitlerian|1
+(adj)|Hitlerian|dictator|potentate|Nazi|German Nazi (related term)
+hitless|2
+(adj)|unsuccessful (similar term)
+(adj)|scoreless|goalless|unsuccessful (similar term)
+hitman|1
+(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+hitter|2
+(noun)|batter|slugger|batsman|ballplayer (generic term)|baseball player (generic term)
+(noun)|striker|mover (generic term)
+hitting|1
+(noun)|hit|striking|touch (generic term)|touching (generic term)
+hittite|3
+(adj)|Hittite|inhabitant|habitant|dweller|denizen|indweller (related term)|Anatolian|Anatolian language (related term)
+(noun)|Hittite|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Hittite|Anatolian (generic term)|Anatolian language (generic term)
+hiv|2
+(noun)|HIV|viral infection (generic term)|virus infection (generic term)
+(noun)|human immunodeficiency virus|HIV|retrovirus (generic term)
+hive|6
+(noun)|multitude (generic term)|throng (generic term)|concourse (generic term)
+(noun)|beehive|receptacle (generic term)
+(noun)|beehive|nest (generic term)
+(verb)|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)|hive away (related term)|hive up (related term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+hive away|1
+(verb)|store|lay in|put in|salt away|stack away|stash away|keep (generic term)|hold on (generic term)
+hive off|2
+(verb)|discriminate (generic term)|separate (generic term)|single out (generic term)
+(verb)|divert|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+hive up|1
+(verb)|hoard|stash|cache|lay away|squirrel away|save (generic term)|lay aside (generic term)|save up (generic term)
+hives|1
+(noun)|urtication|urticaria|nettle rash|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)|hypersensitivity reaction (generic term)
+hizb ut-tahrir|1
+(noun)|Hizb ut-Tahrir|Freedom Party|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+hl|1
+(noun)|hectoliter|hectolitre|metric capacity unit (generic term)
+hm|1
+(noun)|hectometer|hectometre|metric linear unit (generic term)
+hmg-coa reductase|1
+(noun)|HMG-CoA reductase|5-hydroxy-3-methylglutaryl-coenzyme A reductase|reductase (generic term)
+hmo|1
+(noun)|health maintenance organization|HMO|health insurance (generic term)
+hmong|3
+(adj)|Hmong|Asian|Asiatic (related term)
+(noun)|Hmong|Miao|Asian (generic term)|Asiatic (generic term)
+(noun)|Hmong|Hmong language|Miao|natural language (generic term)|tongue (generic term)
+hmong language|1
+(noun)|Hmong|Hmong language|Miao|natural language (generic term)|tongue (generic term)
+hn|1
+(noun)|hydrazoic acid|azoimide|hydrogen azide|HN|hydride (generic term)|explosive (generic term)
+hnd|1
+(noun)|Higher National Diploma|HND|diploma (generic term)|sheepskin (generic term)
+ho|1
+(noun)|holmium|Ho|atomic number 67|metallic element (generic term)|metal (generic term)
+ho-hum|1
+(adj)|boring|deadening|dull|irksome|slow|tedious|tiresome|wearisome|uninteresting (similar term)
+ho chi minh|1
+(noun)|Ho Chi Minh|Nguyen Tat Thanh|statesman (generic term)|solon (generic term)|national leader (generic term)
+ho chi minh city|1
+(noun)|Ho Chi Minh City|Saigon|city (generic term)|metropolis (generic term)|urban center (generic term)
+hoactzin|1
+(noun)|hoatzin|stinkbird|Opisthocomus hoazin|gallinaceous bird (generic term)|gallinacean (generic term)
+hoagie|1
+(noun)|bomber|grinder|hero|hero sandwich|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+hoagland|1
+(noun)|Hoagland|Hudson Hoagland|physiologist (generic term)
+hoagland howard carmichael|1
+(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+hoagy|1
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+hoagy carmichael|1
+(noun)|Carmichael|Hoagy Carmichael|Hoagland Howard Carmichael|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+hoar|2
+(adj)|grey|gray|grey-haired|gray-haired|grey-headed|gray-headed|grizzly|hoary|white-haired|old (similar term)
+(noun)|frost|hoarfrost|rime|ice (generic term)|water ice (generic term)
+hoard|3
+(noun)|cache|stash|store (generic term)|stock (generic term)|fund (generic term)
+(verb)|stash|cache|lay away|hive up|squirrel away|save (generic term)|lay aside (generic term)|save up (generic term)
+(verb)|roll up|collect|accumulate|pile up|amass|compile|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+hoarded wealth|1
+(noun)|treasure|wealth (generic term)|riches (generic term)
+hoarder|1
+(noun)|saver (generic term)
+hoarding|1
+(noun)|billboard|signboard (generic term)|sign (generic term)
+hoarfrost|1
+(noun)|frost|hoar|rime|ice (generic term)|water ice (generic term)
+hoariness|2
+(noun)|frostiness|white (generic term)|whiteness (generic term)
+(noun)|oldness (generic term)
+hoarse|1
+(adj)|gruff|husky|cacophonous (similar term)|cacophonic (similar term)
+hoarsely|1
+(adv)|huskily
+hoarseness|1
+(noun)|gruffness|huskiness|harshness (generic term)|roughness (generic term)
+hoary|3
+(adj)|grey|gray|grey-haired|gray-haired|grey-headed|gray-headed|grizzly|hoar|white-haired|old (similar term)
+(adj)|rusty|old (similar term)
+(adj)|canescent|hairy (similar term)|haired (similar term)|hirsute (similar term)
+hoary alison|1
+(noun)|hoary alyssum|Berteroa incana|herb (generic term)|herbaceous plant (generic term)
+hoary alyssum|1
+(noun)|hoary alison|Berteroa incana|herb (generic term)|herbaceous plant (generic term)
+hoary golden bush|1
+(noun)|Hazardia cana|shrub (generic term)|bush (generic term)
+hoary marmot|1
+(noun)|whistler|whistling marmot|Marmota caligata|marmot (generic term)
+hoary pea|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+hoary plantain|2
+(noun)|Plantago virginica|plantain (generic term)
+(noun)|Plantago media|plantain (generic term)
+hoary puccoon|1
+(noun)|Indian paint|Lithospermum canescens|herb (generic term)|herbaceous plant (generic term)
+hoary willow|1
+(noun)|sage willow|Salix candida|willow (generic term)|willow tree (generic term)
+hoatzin|1
+(noun)|hoactzin|stinkbird|Opisthocomus hoazin|gallinaceous bird (generic term)|gallinacean (generic term)
+hoax|2
+(noun)|fraud|fraudulence|dupery|humbug|put-on|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+(verb)|pull someone's leg|play a joke on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+hoaxer|1
+(noun)|prankster|cut-up|trickster|tricker|practical joker|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+hob|5
+(noun)|goblin|hobgoblin|evil spirit (generic term)
+(noun)|elf|gremlin|pixie|pixy|brownie|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|edge tool (generic term)
+(noun)|shelf (generic term)
+(verb)|cut (generic term)
+hobart|1
+(noun)|Hobart|state capital (generic term)|port (generic term)
+hobbes|1
+(noun)|Hobbes|Thomas Hobbes|philosopher (generic term)
+hobbit|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+hobble|5
+(noun)|fetter|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+(noun)|hitch|limp|gait (generic term)
+(verb)|limp|gimp|hitch|walk (generic term)
+(verb)|impede (generic term)|hinder (generic term)
+(verb)|hopple|strap (generic term)
+hobble skirt|1
+(noun)|skirt (generic term)
+hobbledehoy|1
+(noun)|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+hobbler|1
+(noun)|limper|pedestrian (generic term)|walker (generic term)|footer (generic term)
+hobbs|1
+(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer (generic term)
+hobby|3
+(noun)|avocation|by-line|pursuit|sideline|spare-time activity|pastime (generic term)|interest (generic term)|pursuit (generic term)
+(noun)|hobbyhorse|rocking horse|plaything (generic term)|toy (generic term)
+(noun)|Falco subbuteo|falcon (generic term)
+hobbyhorse|2
+(noun)|preoccupation (generic term)
+(noun)|hobby|rocking horse|plaything (generic term)|toy (generic term)
+hobbyism|1
+(noun)|devotion (generic term)
+hobbyist|1
+(noun)|amateur (generic term)
+hobgoblin|2
+(noun)|goblin|hob|evil spirit (generic term)
+(noun)|bugbear|object (generic term)
+hobnail|2
+(noun)|nail (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+hobnailed|1
+(adj)|rural (similar term)
+hobnob|1
+(verb)|socialize (generic term)|socialise (generic term)
+hobo|1
+(noun)|tramp|bum|vagrant (generic term)|drifter (generic term)|floater (generic term)|vagabond (generic term)
+hobo camp|1
+(noun)|jungle|camp (generic term)
+hobson's choice|1
+(noun)|Hobson's choice|option (generic term)|alternative (generic term)|choice (generic term)
+hock|4
+(noun)|Rhine wine|Rhenish|white wine (generic term)
+(noun)|hock-joint|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(verb)|pawn|soak|consign (generic term)|charge (generic term)
+(verb)|disable (generic term)|invalid (generic term)|incapacitate (generic term)|handicap (generic term)
+hock-joint|1
+(noun)|hock|joint (generic term)|articulation (generic term)|articulatio (generic term)
+hockey|2
+(noun)|field hockey|field game (generic term)
+(noun)|ice hockey|hockey game|athletic game (generic term)|contact sport (generic term)
+hockey clinic|1
+(noun)|clinic (generic term)
+hockey coach|1
+(noun)|coach (generic term)|manager (generic term)|handler (generic term)
+hockey game|1
+(noun)|ice hockey|hockey|athletic game (generic term)|contact sport (generic term)
+hockey league|1
+(noun)|league (generic term)|conference (generic term)
+hockey player|1
+(noun)|ice-hockey player|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+hockey puck|1
+(noun)|puck|disk (generic term)|disc (generic term)
+hockey season|1
+(noun)|season (generic term)
+hockey skate|1
+(noun)|ice skate (generic term)
+hockey stick|1
+(noun)|stick (generic term)
+hockey team|1
+(noun)|team (generic term)|squad (generic term)
+hocus-pocus|1
+(noun)|trickery|slickness|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+hod|1
+(noun)|box (generic term)
+hod carrier|1
+(noun)|hodman|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+hodeida|1
+(noun)|Hodeida|Al-Hudaydah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+hoder|1
+(noun)|Hoth|Hothr|Hoder|Hodr|Hodur|Norse deity (generic term)
+hodgepodge|2
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|patchwork|jumble|theory (generic term)
+hodgkin|3
+(noun)|Hodgkin|Thomas Hodgkin|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|Hodgkin|Dorothy Hodgkin|Dorothy Mary Crowfoot Hodgkin|chemist (generic term)
+(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist (generic term)
+hodgkin's disease|1
+(noun)|Hodgkin's disease|lymphoma (generic term)
+hodman|1
+(noun)|hod carrier|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+hodometer|1
+(noun)|odometer|mileometer|milometer|meter (generic term)
+hodoscope|1
+(noun)|scientific instrument (generic term)
+hodr|1
+(noun)|Hoth|Hothr|Hoder|Hodr|Hodur|Norse deity (generic term)
+hodur|1
+(noun)|Hoth|Hothr|Hoder|Hodr|Hodur|Norse deity (generic term)
+hoe|2
+(noun)|tool (generic term)
+(verb)|till (generic term)
+hoe handle|1
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+hoecake|1
+(noun)|johnnycake (generic term)|johnny cake (generic term)|journey cake (generic term)
+hoek van holland|1
+(noun)|Hook of Holland|Hoek van Holland|cape (generic term)|ness (generic term)
+hoenir|1
+(noun)|Hoenir|Norse deity (generic term)
+hoffa|1
+(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader (generic term)
+hoffman|2
+(noun)|Hoffman|Malvina Hoffman|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(noun)|Hoffman|Dustin Hoffman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hoffmann|4
+(noun)|Hoffmann|Josef Hoffmann|architect (generic term)|designer (generic term)
+(noun)|Hoffmann|August Wilhelm von Hoffmann|chemist (generic term)
+(noun)|Hoffmann|Roald Hoffmann|chemist (generic term)
+(noun)|Hoffmann|E. T. A. Hoffmann|Ernst Theodor Amadeus Hoffmann|Ernst Theodor Wilhelm Hoffmann|writer (generic term)|author (generic term)
+hoffmannsthal|1
+(noun)|Hoffmannsthal|Hugo von Hoffmannsthal|poet (generic term)
+hog|4
+(noun)|pig|selfish person (generic term)
+(noun)|hogget|hogg|lamb (generic term)
+(noun)|pig|grunter|squealer|Sus scrofa|swine (generic term)
+(verb)|snap up (generic term)|snaffle (generic term)|grab (generic term)
+hog-nosed badger|1
+(noun)|hog badger|sand badger|Arctonyx collaris|badger (generic term)
+hog-nosed skunk|1
+(noun)|hognosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+hog-tie|1
+(verb)|tie down (generic term)|tie up (generic term)|bind (generic term)|truss (generic term)
+hog badger|1
+(noun)|hog-nosed badger|sand badger|Arctonyx collaris|badger (generic term)
+hog cholera|1
+(noun)|animal disease (generic term)
+hog cranberry|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+hog millet|1
+(noun)|broomcorn millet|Panicum miliaceum|panic grass (generic term)
+hog molly|1
+(noun)|hog sucker|Hypentelium nigricans|sucker (generic term)
+hog peanut|1
+(noun)|wild peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine (generic term)
+hog plum|4
+(noun)|yellow mombin|yellow mombin tree|Spondias mombin|fruit tree (generic term)
+(noun)|chickasaw plum|hog plum bush|Prunus angustifolia|wild plum (generic term)|wild plum tree (generic term)
+(noun)|wild plum|edible fruit (generic term)
+(noun)|yellow mombin|edible fruit (generic term)
+hog plum bush|1
+(noun)|chickasaw plum|hog plum|Prunus angustifolia|wild plum (generic term)|wild plum tree (generic term)
+hog snapper|1
+(noun)|hogfish|Lachnolaimus maximus|wrasse (generic term)
+hog sucker|1
+(noun)|hog molly|Hypentelium nigricans|sucker (generic term)
+hogan|2
+(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|lodge (generic term)|indian lodge (generic term)
+hogarth|1
+(noun)|Hogarth|William Hogarth|old master (generic term)|engraver (generic term)
+hogback|1
+(noun)|horseback|ridge (generic term)|ridgeline (generic term)
+hogchoker|1
+(noun)|Trinectes maculatus|sole (generic term)
+hogfish|2
+(noun)|hog snapper|Lachnolaimus maximus|wrasse (generic term)
+(noun)|pigfish|Orthopristis chrysopterus|grunt (generic term)
+hogg|2
+(noun)|Hogg|James Hogg|poet (generic term)
+(noun)|hog|hogget|lamb (generic term)
+hogged|1
+(adj)|broken-backed|convex (similar term)|bulging (similar term)
+hogget|1
+(noun)|hog|hogg|lamb (generic term)
+hoggish|1
+(adj)|piggish|piggy|porcine|swinish|gluttonous (similar term)
+hoggishness|1
+(noun)|greediness|piggishness|gluttony (generic term)
+hogmanay|1
+(noun)|Hogmanay|New Year's Eve (generic term)|December 31 (generic term)
+hognose bat|1
+(noun)|Choeronycteris mexicana|leafnose bat (generic term)|leaf-nosed bat (generic term)
+hognose snake|1
+(noun)|puff adder|sand viper|colubrid snake (generic term)|colubrid (generic term)
+hognosed skunk|1
+(noun)|hog-nosed skunk|badger skunk|rooter skunk|Conepatus leuconotus|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+hogshead|2
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|barrel (generic term)|cask (generic term)
+hogwash|1
+(noun)|bunk|bunkum|buncombe|guff|rot|drivel (generic term)|garbage (generic term)
+hogweed|1
+(noun)|cow parsnip|Heracleum sphondylium|herb (generic term)|herbaceous plant (generic term)
+hohenlinden|2
+(noun)|Hohenlinden|town (generic term)
+(noun)|Hohenlinden|battle of Hohenlinden|pitched battle (generic term)
+hohenzollern|1
+(noun)|Hohenzollern|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+hohenzollern empire|1
+(noun)|Hohenzollern empire|Second Reich|Reich (generic term)
+hoheria|1
+(noun)|Hoheria|genus Hoheria|dilleniid dicot genus (generic term)
+hoheria populnea|1
+(noun)|lacebark|ribbonwood|houhere|Hoheria populnea|tree (generic term)
+hohhot|1
+(noun)|Hohhot|city (generic term)|metropolis (generic term)|urban center (generic term)
+hoi polloi|1
+(noun)|multitude|masses|mass|people|the great unwashed|group (generic term)|grouping (generic term)
+hoisin sauce|1
+(noun)|duck sauce|condiment (generic term)
+hoist|4
+(noun)|lifting device (generic term)
+(verb)|lift|wind|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|run up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+hoister|1
+(noun)|operator (generic term)|manipulator (generic term)
+hoity-toity|1
+(adj)|grandiose|hifalutin|highfalutin|highfaluting|la-di-da|pretentious (similar term)
+hoka|2
+(noun)|Hokan|Hoka|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Hokan|Hoka|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+hokan|2
+(noun)|Hokan|Hoka|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+(noun)|Hokan|Hoka|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+hokey|2
+(adj)|bathetic|drippy|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+(adj)|artificial|contrived|stilted|affected (similar term)|unnatural (similar term)
+hokkaido|1
+(noun)|Hokkaido|Ezo|Yezo|island (generic term)
+hokkianese|1
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+hokum|1
+(noun)|nonsense|bunk|nonsensicality|meaninglessness|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+hokusai|1
+(noun)|Hokusai|Katsushika Hokusai|painter (generic term)
+holandric gene|1
+(noun)|Y-linked gene|gene (generic term)|cistron (generic term)|factor (generic term)
+holarrhena|1
+(noun)|Holarrhena|genus Holarrhena|dicot genus (generic term)|magnoliopsid genus (generic term)
+holarrhena antidysenterica|1
+(noun)|ivory tree|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+holarrhena pubescens|1
+(noun)|ivory tree|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+holbein|2
+(noun)|Holbein|Hans Holbein|Holbein the Younger|old master (generic term)|engraver (generic term)
+(noun)|Holbein|Hans Holbein|Holbein the Elder|old master (generic term)
+holbein the elder|1
+(noun)|Holbein|Hans Holbein|Holbein the Elder|old master (generic term)
+holbein the younger|1
+(noun)|Holbein|Hans Holbein|Holbein the Younger|old master (generic term)|engraver (generic term)
+holbrookia|1
+(noun)|Holbrookia|genus Holbrookia|reptile genus (generic term)
+holcus|1
+(noun)|Holcus|genus Holcus|monocot genus (generic term)|liliopsid genus (generic term)
+holcus lanatus|1
+(noun)|velvet grass|Yorkshire fog|Holcus lanatus|grass (generic term)
+holcus mollis|1
+(noun)|creeping soft grass|Holcus mollis|grass (generic term)
+hold|45
+(noun)|clasp|clench|clutch|clutches|grasp|grip|grasping (generic term)|taking hold (generic term)|seizing (generic term)|prehension (generic term)
+(noun)|appreciation|grasp|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|control (generic term)
+(noun)|delay|time lag|postponement|wait|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|detention|detainment|custody|confinement (generic term)
+(noun)|stronghold (generic term)|fastness (generic term)
+(noun)|keep|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+(noun)|handle|grip|handgrip|appendage (generic term)
+(noun)|cargo area|cargo deck|cargo hold|storage area|enclosure (generic term)
+(verb)|throw|have|make|give|direct (generic term)
+(verb)|keep|maintain|hold back (related term)|hold out (related term)|hold over (related term)|hold out (related term)|hold up (related term)|keep in (related term)|keep out (related term)|keep off (related term)|keep up (related term)|keep off (related term)|keep down (related term)|keep apart (related term)|keep up (related term)
+(verb)|take hold|let go of (antonym)
+(verb)|restrain|confine|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+(verb)|bear|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|have|have got
+(verb)|deem|view as|take for|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|bear|carry|contain|include (generic term)
+(verb)|control|hold in|contain|check|curb|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|continue (generic term)|go on (generic term)|proceed (generic term)|go along (generic term)|keep (generic term)
+(verb)|harbor|harbour|entertain|nurse|feel (generic term)|experience (generic term)
+(verb)|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+(verb)|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|retain|keep back|hold back|keep (generic term)|hold on (generic term)
+(verb)|support|sustain|hold up
+(verb)|capture (generic term)|enamour (generic term)|trance (generic term)|catch (generic term)|becharm (generic term)|enamor (generic term)|captivate (generic term)|beguile (generic term)|charm (generic term)|fascinate (generic term)|bewitch (generic term)|entrance (generic term)|enchant (generic term)
+(verb)|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|carry|bear
+(verb)|accommodate|admit
+(verb)|contain|take|be (generic term)
+(verb)|prevail|obtain|exist (generic term)|be (generic term)
+(verb)|control (generic term)|command (generic term)
+(verb)|defend|guard|protect (generic term)
+(verb)|declare|adjudge|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|be (generic term)
+(verb)|halt|arrest|stop (generic term)
+(verb)|oblige|bind|obligate|relate (generic term)
+(verb)|cover (generic term)
+(verb)|carry|drink (generic term)|booze (generic term)|fuddle (generic term)
+(verb)|apply|go for|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|reserve|book|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|defy|withstand|hold up|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|prevent (generic term)|keep (generic term)
+(verb)|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+(verb)|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|agree|concur|concord|disagree (antonym)
+hold-down|1
+(noun)|limitation (generic term)|restriction (generic term)
+hold back|6
+(verb)|check|turn back|arrest|stop|contain|defend (generic term)
+(verb)|restrain|suppress|keep|keep back|prevent (generic term)|keep (generic term)
+(verb)|forbear|refrain (generic term)|forbear (generic term)
+(verb)|wait|hold off|act (generic term)|move (generic term)
+(verb)|retain|hold|keep back|keep (generic term)|hold on (generic term)
+(verb)|conceal|hold in
+hold close|1
+(verb)|cling to|hold tight|clutch|hold (generic term)|take hold (generic term)
+hold dear|1
+(verb)|care for|cherish|treasure|love (generic term)
+hold down|2
+(verb)|retain (generic term)|hold (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|limit (generic term)|circumscribe (generic term)|confine (generic term)
+hold fast|1
+(verb)|adhere|bond|bind|stick|stick to|attach (generic term)
+hold firm|1
+(verb)|stand pat|stand firm|stand fast|insist (generic term)|take a firm stand (generic term)
+hold forth|1
+(verb)|discourse|dissertate|talk (generic term)|speak (generic term)
+hold in|3
+(verb)|enclose|confine|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|control|hold|contain|check|curb|moderate|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|conceal|hold back
+hold off|2
+(verb)|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|wait|hold back|act (generic term)|move (generic term)
+hold on|5
+(verb)|grasp|hold (generic term)|take hold (generic term)
+(verb)|stop|interrupt (generic term)|break (generic term)
+(verb)|persevere|persist|hang in|hang on|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|hang on|hold the line|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+(verb)|keep|have (generic term)|have got (generic term)|hold (generic term)|keep back (related term)|keep back (related term)|lose (antonym)
+hold one's own|1
+(verb)|control (generic term)|command (generic term)
+hold open|1
+(verb)|keep open|keep|save|reserve (generic term)|hold (generic term)|book (generic term)
+hold out|5
+(verb)|exsert|stretch out|put out|extend|stretch forth|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|resist|withstand|stand firm|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)|surrender (antonym)
+(verb)|wear|endure|last (generic term)|endure (generic term)
+(verb)|wait (generic term)|hold off (generic term)|hold back (generic term)
+(verb)|survive|last|live|live on|go|endure|hold up
+hold over|5
+(verb)|intimidate (generic term)
+(verb)|carry over|keep (generic term)|hold on (generic term)
+(verb)|keep (generic term)|maintain (generic term)|hold (generic term)
+(verb)|stay (generic term)|stay on (generic term)|continue (generic term)|remain (generic term)
+(verb)|postpone|prorogue|put over|table|shelve|set back|defer|remit|put off|delay (generic term)
+hold still for|1
+(verb)|stand for|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+hold sway|1
+(verb)|control (generic term)|command (generic term)
+hold the line|2
+(verb)|conserve (generic term)|preserve (generic term)|maintain (generic term)|keep up (generic term)
+(verb)|hang on|hold on|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+hold tight|1
+(verb)|cling to|hold close|clutch|hold (generic term)|take hold (generic term)
+hold up|7
+(verb)|hold|support|sustain
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|delay|detain|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)|rush (antonym)
+(verb)|stick up|rob (generic term)
+(verb)|survive|last|live|live on|go|endure|hold out
+(verb)|defy|withstand|hold|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|stand up|hold water|survive (generic term)|last (generic term)|live (generic term)|live on (generic term)|go (generic term)|endure (generic term)|hold up (generic term)|hold out (generic term)
+hold water|1
+(verb)|stand up|hold up|survive (generic term)|last (generic term)|live (generic term)|live on (generic term)|go (generic term)|endure (generic term)|hold up (generic term)|hold out (generic term)
+holdall|1
+(noun)|carryall|tote|tote bag|bag (generic term)
+holder|2
+(noun)|holding device (generic term)
+(noun)|bearer|capitalist (generic term)
+holdfast|1
+(noun)|fastener|fastening|fixing|restraint (generic term)|constraint (generic term)
+holding|2
+(noun)|retention|keeping|possession (generic term)|ownership (generic term)
+(noun)|property|belongings|material possession|possession (generic term)
+holding cell|1
+(noun)|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+holding company|1
+(noun)|company (generic term)
+holding device|1
+(noun)|device (generic term)
+holding paddock|1
+(noun)|holding pen|holding yard|pen (generic term)
+holding pattern|2
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|air lane (generic term)|flight path (generic term)|airway (generic term)|skyway (generic term)
+holding pen|1
+(noun)|holding paddock|holding yard|pen (generic term)
+holding yard|1
+(noun)|holding pen|holding paddock|pen (generic term)
+holdout|3
+(noun)|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+(noun)|bargaining (generic term)
+(noun)|swindle (generic term)|cheat (generic term)|rig (generic term)
+holdover|2
+(noun)|hangover|official (generic term)|functionary (generic term)
+(noun)|hangover|survival (generic term)
+holdup|2
+(noun)|armed robbery|heist|stickup|robbery (generic term)
+(noun)|delay|inactivity (generic term)
+holdup man|1
+(noun)|stickup man|thief (generic term)|stealer (generic term)
+hole|10
+(noun)|opening (generic term)|gap (generic term)
+(noun)|opening (generic term)
+(noun)|golf hole|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|space (generic term)
+(noun)|hollow|natural depression (generic term)|depression (generic term)
+(noun)|defect (generic term)|fault (generic term)|flaw (generic term)
+(noun)|fix|jam|mess|muddle|pickle|kettle of fish|difficulty (generic term)
+(noun)|trap|cakehole|maw|yap|gob|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+(verb)|hole out|hit (generic term)
+(verb)|hollow (generic term)|hollow out (generic term)|core out (generic term)
+hole-and-corner|2
+(adj)|hole-in-corner|insignificant (similar term)|unimportant (similar term)
+(adj)|clandestine|cloak-and-dagger|hugger-mugger|hush-hush|secret|surreptitious|undercover|underground|covert (similar term)
+hole-in-corner|1
+(adj)|hole-and-corner|insignificant (similar term)|unimportant (similar term)
+hole-in-the-wall|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+hole card|2
+(noun)|assets (generic term)
+(noun)|playing card (generic term)
+hole out|1
+(verb)|hole|hit (generic term)
+hole up|3
+(verb)|hide (generic term)|hide out (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|hibernate|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)|estivate (antonym)|aestivate (antonym)
+holey|1
+(adj)|porous|leaky (similar term)
+holibut|1
+(noun)|halibut|flatfish (generic term)
+holiday|3
+(noun)|vacation|leisure (generic term)|leisure time (generic term)
+(noun)|day (generic term)
+(verb)|vacation|spend (generic term)|pass (generic term)
+holiday resort|1
+(noun)|resort|resort hotel|hotel (generic term)
+holiday season|1
+(noun)|season (generic term)
+holidaymaker|1
+(noun)|tourist|tourer|traveler (generic term)|traveller (generic term)
+holier-than-thou|1
+(adj)|pietistic|pietistical|pharisaic|pharisaical|sanctimonious|self-righteous|pious (similar term)
+holiness|1
+(noun)|sanctity|sanctitude|quality (generic term)|unholiness (antonym)
+holism|1
+(noun)|holistic theory|theory (generic term)|atomism (antonym)
+holistic|1
+(adj)|atomistic (antonym)
+holistic medicine|1
+(noun)|medical care (generic term)|medical aid (generic term)
+holistic theory|1
+(noun)|holism|theory (generic term)|atomism (antonym)
+holla|1
+(noun)|bellow|bellowing|holler|hollering|hollo|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+holland|1
+(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Nederland|Holland|European country (generic term)|European nation (generic term)
+holland gin|1
+(noun)|geneva|Holland gin|Hollands|gin (generic term)
+hollandaise|1
+(noun)|sauce (generic term)
+hollander|1
+(noun)|Netherlander|Dutchman|Hollander|European (generic term)
+hollands|1
+(noun)|geneva|Holland gin|Hollands|gin (generic term)
+holler|5
+(noun)|bellow|bellowing|holla|hollering|hollo|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|hollow|valley (generic term)|vale (generic term)
+(verb)|holler out|shout (generic term)
+(verb)|shout|shout out|cry|call|yell|scream|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|gripe|grouse|crab|beef|squawk|bellyache|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+holler out|1
+(verb)|holler|shout (generic term)
+hollering|1
+(noun)|bellow|bellowing|holla|holler|hollo|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+hollerith|1
+(noun)|Hollerith|Herman Hollerith|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+hollerith card|1
+(noun)|punched card|punch card|Hollerith card|card (generic term)
+hollo|4
+(noun)|bellow|bellowing|holla|holler|hollering|holloa|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|encourage (generic term)
+(verb)|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|shout|shout out|cry|call|yell|scream|holler|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+holloa|1
+(noun)|bellow|bellowing|holla|holler|hollering|hollo|roar|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+hollow|9
+(adj)|cavernous (similar term)|deep-set (similar term)|sunken (similar term)|recessed (similar term)|empty (similar term)|fistular (similar term)|fistulate (similar term)|fistulous (similar term)|tubular (similar term)|cannular (similar term)|tubelike (similar term)|tube-shaped (similar term)|vasiform (similar term)|solid (antonym)
+(adj)|false|insincere (similar term)
+(adj)|reverberant (similar term)|ringing (similar term)
+(adj)|empty|vacuous|meaningless (similar term)|nonmeaningful (similar term)
+(noun)|cavity (generic term)|enclosed space (generic term)
+(noun)|holler|valley (generic term)|vale (generic term)
+(noun)|hole|natural depression (generic term)|depression (generic term)
+(verb)|excavate|dig|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|hollow out|core out|empty (generic term)
+hollow-back|1
+(noun)|lordosis|spinal curvature (generic term)
+hollow-eyed|1
+(adj)|deep-eyed|sunken-eyed|thin (similar term)|lean (similar term)
+hollow-horned|1
+(adj)|horned (similar term)
+hollow out|1
+(verb)|hollow|core out|empty (generic term)
+holloware|1
+(noun)|hollowware|silverware (generic term)
+hollowness|3
+(noun)|emptiness (generic term)|solidity (antonym)
+(noun)|concavity (generic term)|concaveness (generic term)
+(noun)|insincerity|falseness|untruthfulness (generic term)|sincerity (antonym)
+hollowware|1
+(noun)|holloware|silverware (generic term)
+holly|2
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Holly|Buddy Holly|Charles Hardin Holley|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+holly-leaf cherry|1
+(noun)|holly-leaved cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum (generic term)|wild plum tree (generic term)
+holly-leaved cherry|1
+(noun)|holly-leaf cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum (generic term)|wild plum tree (generic term)
+holly-leaved oak|1
+(noun)|holm oak|holm tree|evergreen oak|Quercus ilex|oak (generic term)|oak tree (generic term)
+holly-leaves barberry|1
+(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+holly family|1
+(noun)|Aquifoliaceae|family Aquifoliaceae|dicot family (generic term)|magnoliopsid family (generic term)
+holly fern|2
+(noun)|fern (generic term)
+(noun)|Cyrtomium aculeatum|Polystichum aculeatum|fern (generic term)
+hollygrape|1
+(noun)|Oregon grape|Oregon holly grape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+hollyhock|2
+(noun)|althea|althaea|mallow (generic term)
+(noun)|mallow (generic term)
+hollywood|5
+(adj)|Hollywood|film industry|movie industry|screenland (related term)
+(adj)|Hollywood|indecent (similar term)
+(noun)|Hollywood|film industry (generic term)|movie industry (generic term)|screenland (generic term)
+(noun)|Hollywood|spirit (generic term)|tone (generic term)|feel (generic term)|feeling (generic term)|flavor (generic term)|flavour (generic term)|look (generic term)|smell (generic term)
+(noun)|Hollywood|city district (generic term)
+holm oak|2
+(noun)|oak (generic term)
+(noun)|holm tree|holly-leaved oak|evergreen oak|Quercus ilex|oak (generic term)|oak tree (generic term)
+holm tree|1
+(noun)|holm oak|holly-leaved oak|evergreen oak|Quercus ilex|oak (generic term)|oak tree (generic term)
+holman hunt|1
+(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite (generic term)
+holmes|4
+(noun)|Sherlock Holmes|Holmes|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|Holmes|Oliver Wendell Holmes Jr.|jurist (generic term)|legal expert (generic term)
+(noun)|Holmes|Oliver Wendell Holmes|writer (generic term)|author (generic term)
+(noun)|Holmes|Arthur Holmes|geologist (generic term)
+holmium|1
+(noun)|Ho|atomic number 67|metallic element (generic term)|metal (generic term)
+holocanthus tricolor|1
+(noun)|rock beauty|Holocanthus tricolor|butterfly fish (generic term)
+holocaust|2
+(noun)|destruction (generic term)|devastation (generic term)
+(noun)|Holocaust|final solution|genocide (generic term)|race murder (generic term)|racial extermination (generic term)
+holocene|1
+(noun)|Holocene|Holocene epoch|Recent|Recent epoch|epoch (generic term)
+holocene epoch|1
+(noun)|Holocene|Holocene epoch|Recent|Recent epoch|epoch (generic term)
+holocentridae|1
+(noun)|Holocentridae|family Holocentridae|fish family (generic term)
+holocentrus|1
+(noun)|Holocentrus|genus Holocentrus|fish genus (generic term)
+holocentrus ascensionis|1
+(noun)|Holocentrus ascensionis|squirrelfish (generic term)
+holocentrus bullisi|1
+(noun)|deepwater squirrelfish|Holocentrus bullisi|squirrelfish (generic term)
+holocentrus coruscus|1
+(noun)|reef squirrelfish|Holocentrus coruscus|squirrelfish (generic term)
+holocephalan|1
+(noun)|cartilaginous fish (generic term)|chondrichthian (generic term)
+holocephali|1
+(noun)|Holocephali|subclass Holocephali|class (generic term)
+holofernes|1
+(noun)|Holofernes|general (generic term)|full general (generic term)
+hologram|1
+(noun)|holograph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+holograph|2
+(noun)|manuscript|autograph (generic term)
+(noun)|hologram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+holographic|3
+(adj)|optics (related term)
+(adj)|holographical|autograph (related term)
+(adj)|written (similar term)
+holographical|1
+(adj)|holographic|autograph (related term)
+holography|1
+(noun)|optics (generic term)
+holometabola|1
+(noun)|metabola|insect (generic term)
+holometabolic|1
+(adj)|holometabolous|metamorphic (similar term)
+holometabolism|1
+(noun)|holometaboly|metamorphosis (generic term)|metabolism (generic term)
+holometabolous|1
+(adj)|holometabolic|metamorphic (similar term)
+holometaboly|1
+(noun)|holometabolism|metamorphosis (generic term)|metabolism (generic term)
+holonym|1
+(noun)|whole name|word (generic term)
+holonymy|1
+(noun)|whole to part relation|semantic relation (generic term)
+holophyte|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+holophytic|1
+(adj)|holozoic (antonym)
+holothuria|1
+(noun)|Holothuria|genus Holothuria|echinoderm genus (generic term)
+holothuria edulis|1
+(noun)|trepang|Holothuria edulis|sea cucumber (generic term)|holothurian (generic term)
+holothurian|1
+(noun)|sea cucumber|echinoderm (generic term)
+holothuridae|1
+(noun)|Holothuridae|family Holothuridae|echinoderm family (generic term)
+holothuroidea|1
+(noun)|Holothuroidea|class Holothuroidea|class (generic term)
+holotype|1
+(noun)|type specimen|model (generic term)|example (generic term)
+holozoic|1
+(adj)|holophytic (antonym)
+holstein|1
+(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+holstein-friesian|1
+(noun)|Friesian|Holstein|Holstein-Friesian|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+holster|2
+(noun)|sheath (generic term)
+(noun)|belt (generic term)
+holy|2
+(adj)|beatified (similar term)|blessed (similar term)|Blessed (similar term)|consecrated (similar term)|sacred (similar term)|sanctified (similar term)|hallowed (similar term)|sacred (similar term)|consecrated (related term)|consecrate (related term)|dedicated (related term)|sacred (related term)|unholy (antonym)
+(noun)|holy place|sanctum|topographic point (generic term)|place (generic term)|spot (generic term)
+holy city|1
+(noun)|Celestial City|City of God|Heavenly City|Holy City|Heaven (generic term)
+holy clover|1
+(noun)|sainfoin|sanfoin|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+holy communion|1
+(noun)|Communion|Holy Communion|sacramental manduction|manduction|ritual (generic term)
+holy day|1
+(noun)|religious holiday|holiday (generic term)
+holy day of obligation|1
+(noun)|Christian holy day (generic term)
+holy eucharist|1
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+holy father|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+holy ghost|1
+(noun)|Holy Ghost|Holy Spirit|Paraclete|hypostasis (generic term)|hypostasis of Christ (generic term)
+holy grail|1
+(noun)|grail|Holy Grail|Sangraal|chalice (generic term)|goblet (generic term)
+holy innocents' day|1
+(noun)|Holy Innocents' Day|Innocents' Day|Christian holy day (generic term)
+holy joe|1
+(noun)|military chaplain|padre|Holy Joe|sky pilot|chaplain (generic term)
+holy land|1
+(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+holy man|1
+(noun)|saint|holy person|angel|good person (generic term)
+holy of holies|2
+(noun)|sacredness (generic term)
+(noun)|sanctum sanctorum|sanctuary (generic term)
+holy oil|1
+(noun)|chrism|chrisom|sacramental oil|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+holy order|2
+(noun)|Holy Order|Order|status (generic term)|position (generic term)
+(noun)|sacrament (generic term)
+holy person|1
+(noun)|saint|holy man|angel|good person (generic term)
+holy place|1
+(noun)|sanctum|holy|topographic point (generic term)|place (generic term)|spot (generic term)
+holy roller|1
+(noun)|Holy Roller|churchgoer (generic term)|church member (generic term)
+holy roman emperor|1
+(noun)|Holy Roman Emperor|emperor (generic term)
+holy roman emperor frederick ii|1
+(noun)|Frederick II|Holy Roman Emperor Frederick II|Holy Roman Emperor (generic term)
+holy roman empire|1
+(noun)|Holy Roman Empire|political unit (generic term)|political entity (generic term)
+holy sacrament|1
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+holy saturday|1
+(noun)|Holy Saturday|Christian holy day (generic term)
+holy scripture|1
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+holy see|1
+(noun)|Holy See|The Holy See|State of the Vatican City|European country (generic term)|European nation (generic term)|see (generic term)
+holy sepulcher|1
+(noun)|Holy Sepulcher|Holy Sepulchre|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+holy sepulchre|1
+(noun)|Holy Sepulcher|Holy Sepulchre|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+holy spirit|1
+(noun)|Holy Ghost|Holy Spirit|Paraclete|hypostasis (generic term)|hypostasis of Christ (generic term)
+holy terror|1
+(noun)|terror|brat|little terror|imp (generic term)|scamp (generic term)|monkey (generic term)|rascal (generic term)|rapscallion (generic term)|scalawag (generic term)|scallywag (generic term)
+holy thistle|1
+(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|blessed thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+holy thursday|1
+(noun)|Maundy Thursday|Holy Thursday|Christian holy day (generic term)
+holy trinity|1
+(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+holy war warriors|1
+(noun)|Laskar Jihad|Holy War Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+holy water|1
+(noun)|water (generic term)|H2O (generic term)
+holy week|1
+(noun)|Holy Week|Passion Week|week (generic term)|hebdomad (generic term)
+holy writ|1
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+holy year|1
+(noun)|Holy Year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+holystone|2
+(noun)|sandstone (generic term)
+(verb)|scrub (generic term)|scour (generic term)
+homage|1
+(noun)|court|deference (generic term)|respect (generic term)
+homaridae|1
+(noun)|Homaridae|family Homaridae|arthropod family (generic term)
+homarus|1
+(noun)|Homarus|genus Homarus|arthropod genus (generic term)
+homarus americanus|1
+(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster (generic term)
+homarus capensis|1
+(noun)|Cape lobster|Homarus capensis|true lobster (generic term)
+homarus vulgaris|1
+(noun)|European lobster|Homarus vulgaris|true lobster (generic term)
+hombre|1
+(noun)|guy|cat|bozo|man (generic term)|adult male (generic term)
+homburg|1
+(noun)|fedora|felt hat|Stetson|trilby|hat (generic term)|chapeau (generic term)|lid (generic term)
+home|14
+(adj)|away (antonym)
+(adj)|location (related term)
+(adj)|interior|internal|national|domestic (similar term)
+(noun)|place|residence (generic term)|abode (generic term)
+(noun)|dwelling|domicile|abode|habitation|dwelling house|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|location (generic term)
+(noun)|environment (generic term)
+(noun)|nursing home|rest home|institution (generic term)
+(noun)|base|location (generic term)
+(noun)|family|household|house|menage|unit (generic term)|social unit (generic term)
+(noun)|home plate|home base|plate|base (generic term)|bag (generic term)
+(noun)|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(verb)|house (generic term)|put up (generic term)|domiciliate (generic term)
+(verb)|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+home-baked|1
+(adj)|homemade (similar term)
+home-brewed|1
+(adj)|homemade (similar term)
+home-builder|1
+(noun)|homebuilder|housebuilder|house-builder|builder (generic term)|constructor (generic term)
+home-cured|1
+(adj)|homemade (similar term)
+home-farm|1
+(noun)|farm (generic term)
+home-fried potatoes|1
+(noun)|home fries|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+home-loving|1
+(adj)|domestic (similar term)
+home-school|1
+(verb)|school (generic term)
+home-style|1
+(adj)|domestic (similar term)
+home appliance|1
+(noun)|household appliance|appliance (generic term)
+home away from home|1
+(noun)|home from home|home (generic term)|place (generic term)
+home banking|1
+(noun)|banking (generic term)
+home base|2
+(noun)|home plate|home|plate|base (generic term)|bag (generic term)
+(noun)|headquarters|central office|main office|home office|office (generic term)|business office (generic term)
+home brew|1
+(noun)|homebrew|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+home buyer|1
+(noun)|buyer (generic term)|purchaser (generic term)|emptor (generic term)|vendee (generic term)
+home computer|1
+(noun)|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+home counties|1
+(noun)|Home Counties|county (generic term)
+home court|1
+(noun)|basketball court (generic term)
+home ec|1
+(noun)|home economics|domestic science|household arts|social science (generic term)
+home economics|1
+(noun)|home ec|domestic science|household arts|social science (generic term)
+home equity credit|1
+(noun)|home loan|home equity loan|equity credit line|consumer credit (generic term)|loan (generic term)
+home equity loan|1
+(noun)|home loan|home equity credit|equity credit line|consumer credit (generic term)|loan (generic term)
+home folk|1
+(noun)|folk (generic term)|folks (generic term)|common people (generic term)
+home fries|1
+(noun)|home-fried potatoes|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+home from home|1
+(noun)|home away from home|home (generic term)|place (generic term)
+home front|1
+(noun)|population (generic term)
+home game|1
+(noun)|game (generic term)|away game (antonym)
+home ground|1
+(noun)|habitat|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+home guard|1
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+home help|1
+(noun)|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+home in|1
+(verb)|range in|zero in|target (generic term)|aim (generic term)|place (generic term)|direct (generic term)|point (generic term)
+home invasion|1
+(noun)|housebreaking (generic term)|break-in (generic term)|breaking and entering (generic term)
+home key|1
+(noun)|tonic key|key (generic term)|tonality (generic term)
+home loan|1
+(noun)|home equity credit|home equity loan|equity credit line|consumer credit (generic term)|loan (generic term)
+home loan bank|1
+(noun)|Home Loan Bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+home movie|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+home office|2
+(noun)|Home Office|ministry (generic term)
+(noun)|headquarters|central office|main office|home base|office (generic term)|business office (generic term)
+home page|1
+(noun)|homepage|web page (generic term)|webpage (generic term)
+home plate|1
+(noun)|home base|home|plate|base (generic term)|bag (generic term)
+home port|1
+(noun)|port (generic term)
+home range|1
+(noun)|home territory|range (generic term)
+home reserve|1
+(noun)|National Guard|territorial (generic term)|territorial reserve (generic term)
+home room|1
+(noun)|homeroom|classroom (generic term)|schoolroom (generic term)
+home rule|1
+(noun)|self-government (generic term)|self-determination (generic term)|self-rule (generic term)
+home run|2
+(noun)|homer|base hit (generic term)|safety (generic term)
+(noun)|bell ringer|bull's eye|mark|success (generic term)
+home secretary|1
+(noun)|Home Secretary|Secretary of State for the Home Department|cabinet minister (generic term)
+home stand|1
+(noun)|series (generic term)
+home study|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+home territory|1
+(noun)|home range|range (generic term)
+home theater|1
+(noun)|home theatre|theater (generic term)|theatre (generic term)|house (generic term)
+home theatre|1
+(noun)|home theater|theater (generic term)|theatre (generic term)|house (generic term)
+home truth|1
+(noun)|truth (generic term)
+homebody|1
+(noun)|stay-at-home|adult (generic term)|grownup (generic term)
+homebound|2
+(adj)|housebound|shut-in|confined (similar term)
+(noun)|people (generic term)
+homeboy|2
+(noun)|member (generic term)
+(noun)|acquaintance (generic term)|friend (generic term)
+homebrew|1
+(noun)|home brew|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+homebuilder|1
+(noun)|home-builder|housebuilder|house-builder|builder (generic term)|constructor (generic term)
+homecoming|2
+(noun)|reunion (generic term)|reunification (generic term)
+(noun)|return|arrival (generic term)
+homecourt advantage|1
+(noun)|advantage (generic term)|vantage (generic term)
+homefolk|1
+(noun)|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+homegirl|1
+(noun)|member (generic term)
+homegrown|1
+(adj)|native (similar term)
+homel|1
+(noun)|Homyel|Homel|Gomel|city (generic term)|metropolis (generic term)|urban center (generic term)
+homeland|1
+(noun)|fatherland|motherland|mother country|country of origin|native land|country (generic term)|state (generic term)|land (generic term)
+homeland security|1
+(noun)|Homeland Security|Office of Homeland Security|independent agency (generic term)
+homeless|4
+(adj)|stateless|unsettled (similar term)
+(adj)|dispossessed|roofless|unfortunate (similar term)
+(noun)|homeless person|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|poor people (generic term)|poor (generic term)
+homeless person|1
+(noun)|homeless|unfortunate (generic term)|unfortunate person (generic term)
+homelessness|1
+(noun)|condition (generic term)|status (generic term)
+homelike|1
+(adj)|homely|homey|homy|comfortable (similar term)|comfy (similar term)
+homeliness|2
+(noun)|dowdiness|drabness|inelegance (generic term)
+(noun)|plainness|appearance (generic term)|visual aspect (generic term)
+homely|4
+(adj)|plain|unattractive (similar term)
+(adj)|homelike|homey|homy|comfortable (similar term)|comfy (similar term)
+(adj)|plain (similar term)
+(adj)|inelegant (similar term)
+homemade|1
+(adj)|do-it-yourself (similar term)|home-baked (similar term)|home-brewed (similar term)|home-cured (similar term)|homespun (similar term)|factory-made (antonym)
+homemaker|1
+(noun)|housewife|lady of the house|woman of the house|wife (generic term)|married woman (generic term)
+homemaking|1
+(noun)|management (generic term)|direction (generic term)
+homeobox|1
+(noun)|homeobox gene|homeotic gene (generic term)
+homeobox gene|1
+(noun)|homeobox|homeotic gene (generic term)
+homeopath|1
+(noun)|homoeopath|practitioner (generic term)|practician (generic term)
+homeopathic|1
+(adj)|medical care|medical aid (related term)|allopathic (antonym)
+homeopathy|1
+(noun)|homoeopathy|medical care (generic term)|medical aid (generic term)|allopathy (antonym)
+homeostasis|1
+(noun)|equilibrium (generic term)
+homeostatic|1
+(adj)|equilibrium (related term)
+homeotherm|1
+(noun)|homoiotherm|homotherm|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+homeothermic|1
+(adj)|homoiothermic|homothermic|warm-blooded (similar term)
+homeotic gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+homeowner|1
+(noun)|householder|owner (generic term)|possessor (generic term)
+homepage|1
+(noun)|home page|web page (generic term)|webpage (generic term)
+homer|6
+(noun)|home run|base hit (generic term)|safety (generic term)
+(noun)|Homer|poet (generic term)
+(noun)|kor|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(noun)|Homer|Winslow Homer|painter (generic term)
+(noun)|homing pigeon|domestic pigeon (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+homer a. thompson|1
+(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist (generic term)|archaeologist (generic term)
+homer armstrong thompson|1
+(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist (generic term)|archaeologist (generic term)
+homer thompson|1
+(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist (generic term)|archaeologist (generic term)
+homeric|1
+(adj)|Homeric|poet (related term)
+homeroom|1
+(noun)|home room|classroom (generic term)|schoolroom (generic term)
+homesick|1
+(adj)|nostalgic|unhappy (similar term)
+homesickness|1
+(noun)|nostalgia (generic term)
+homespun|4
+(adj)|nubby|nubbly|slubbed|tweedy|rough (similar term)|unsmooth (similar term)
+(adj)|cracker-barrel|folksy|rural (similar term)
+(adj)|homemade (similar term)
+(noun)|homespun fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+homespun fabric|1
+(noun)|homespun|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+homestead|4
+(noun)|land (generic term)
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+(verb)|settle (generic term)
+homestead law|1
+(noun)|law (generic term)
+homesteader|1
+(noun)|squatter|nester|settler (generic term)|colonist (generic term)
+homestretch|2
+(noun)|end (generic term)|last (generic term)|final stage (generic term)
+(noun)|stretch (generic term)
+hometown|1
+(noun)|town (generic term)
+homeward|2
+(adj)|homeward-bound|oriented (similar term)|orientated (similar term)
+(adv)|homewards
+homeward-bound|1
+(adj)|homeward|oriented (similar term)|orientated (similar term)
+homewards|1
+(adv)|homeward
+homework|1
+(noun)|prep|preparation|school assignment (generic term)|schoolwork (generic term)
+homework problem|1
+(noun)|problem (generic term)
+homey|1
+(adj)|homelike|homely|homy|comfortable (similar term)|comfy (similar term)
+homicidal|1
+(adj)|murderous|bloody (similar term)
+homicide|1
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+homiletic|2
+(adj)|homiletical|sermon|discourse|preaching (related term)
+(adj)|homiletical|art|artistry|prowess (related term)
+homiletical|2
+(adj)|homiletic|sermon|discourse|preaching (related term)
+(adj)|homiletic|art|artistry|prowess (related term)
+homiletics|2
+(noun)|theology (generic term)|divinity (generic term)
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+homily|1
+(noun)|preachment|sermon (generic term)|discourse (generic term)|preaching (generic term)
+hominal|1
+(adj)|human (similar term)
+homing|1
+(adj)|orienting (similar term)|orientating (similar term)
+homing device|1
+(noun)|mechanism (generic term)
+homing pigeon|1
+(noun)|homer|domestic pigeon (generic term)
+homing torpedo|1
+(noun)|torpedo (generic term)
+hominian|1
+(adj)|hominid|human (similar term)
+hominid|2
+(adj)|hominian|human (similar term)
+(noun)|primate (generic term)
+hominidae|1
+(noun)|Hominidae|family Hominidae|mammal family (generic term)
+hominine|1
+(adj)|human (similar term)
+hominoid|1
+(noun)|primate (generic term)
+hominoidea|1
+(noun)|Hominoidea|superfamily Hominoidea|class (generic term)
+hominy|1
+(noun)|corn (generic term)|edible corn (generic term)
+hominy grits|1
+(noun)|grits|hot cereal (generic term)
+hommos|1
+(noun)|hummus|humus|hoummos|humous|spread (generic term)|paste (generic term)
+homo|2
+(noun)|homosexual|homophile|gay|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|man|human being|human|hominid (generic term)
+homo erectus|1
+(noun)|Homo erectus|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homo habilis|1
+(noun)|Homo habilis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homo heidelbergensis|1
+(noun)|Heidelberg man|Homo heidelbergensis|primitive (generic term)|primitive person (generic term)
+homo rhodesiensis|1
+(noun)|Rhodesian man|Homo rhodesiensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homo sapiens|1
+(noun)|Homo sapiens|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homo sapiens neanderthalensis|1
+(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homo sapiens sapiens|1
+(noun)|Homo sapiens sapiens|modern man|Homo sapiens (generic term)
+homo soloensis|1
+(noun)|Homo soloensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+homobasidiomycetes|1
+(noun)|Homobasidiomycetes|subclass Homobasidiomycetes|class (generic term)
+homocentric|1
+(adj)|concentric|concentrical|coaxial (similar term)|coaxal (similar term)|eccentric (antonym)
+homocercal|1
+(adj)|heterocercal (antonym)
+homocercal fin|1
+(noun)|tail fin (generic term)|caudal fin (generic term)|heterocercal fin (antonym)
+homochromatic|1
+(adj)|monochromatic|polychromatic (antonym)
+homocyclic|1
+(adj)|isocyclic|cyclic (similar term)
+homoecious|1
+(adj)|autoecious|heteroecious (antonym)
+homoeopath|1
+(noun)|homeopath|practitioner (generic term)|practician (generic term)
+homoeopathy|1
+(noun)|homeopathy|medical care (generic term)|medical aid (generic term)|allopathy (antonym)
+homoerotic|1
+(adj)|homosexual (similar term)
+homoeroticism|1
+(noun)|homosexuality|homosexualism|queerness|gayness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+homogenate|1
+(noun)|material (generic term)|stuff (generic term)
+homogeneity|2
+(noun)|homogeneousness|uniformity (generic term)|uniformness (generic term)|heterogeneity (antonym)
+(noun)|uniformity (generic term)
+homogeneous|1
+(adj)|homogenous|consistent (similar term)|uniform (similar term)|solid (similar term)|solid (similar term)|self-colored (similar term)|self-coloured (similar term)|homogenized (similar term)|homogenised (similar term)|same (related term)|undiversified (related term)|uniform (related term)|unvarying (related term)|heterogeneous (antonym)
+homogeneous polynomial|1
+(noun)|polynomial (generic term)|multinomial (generic term)
+homogeneousness|1
+(noun)|homogeneity|uniformity (generic term)|uniformness (generic term)|heterogeneity (antonym)
+homogenisation|1
+(noun)|homogenization|blend (generic term)|blending (generic term)
+homogenise|3
+(verb)|homogenize|change state (generic term)|turn (generic term)|curdle (antonym)|curdle (antonym)
+(verb)|homogenize|change state (generic term)|turn (generic term)|curdle (antonym)
+(verb)|homogenize|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+homogenised|2
+(adj)|homogenized|blended (similar term)
+(adj)|homogenized|homogeneous (similar term)|homogenous (similar term)
+homogenization|1
+(noun)|homogenisation|blend (generic term)|blending (generic term)
+homogenize|3
+(verb)|homogenise|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+(verb)|homogenise|change state (generic term)|turn (generic term)|curdle (antonym)|curdle (antonym)
+(verb)|homogenise|change state (generic term)|turn (generic term)|curdle (antonym)
+homogenized|2
+(adj)|homogenised|blended (similar term)
+(adj)|homogenised|homogeneous (similar term)|homogenous (similar term)
+homogenized milk|1
+(noun)|milk (generic term)
+homogenous|1
+(adj)|homogeneous|consistent (similar term)|uniform (similar term)|solid (similar term)|solid (similar term)|self-colored (similar term)|self-coloured (similar term)|homogenized (similar term)|homogenised (similar term)|same (related term)|undiversified (related term)|uniform (related term)|unvarying (related term)|heterogeneous (antonym)
+homogentisic acid|1
+(noun)|alkapton|alcapton|acid (generic term)
+homogeny|1
+(noun)|similarity (generic term)
+homograft|1
+(noun)|allograft|graft (generic term)|transplant (generic term)
+homograph|1
+(noun)|homonym (generic term)
+homogyne|1
+(noun)|Homogyne|genus Homogyne|asterid dicot genus (generic term)
+homogyne alpina|1
+(noun)|alpine coltsfoot|Homogyne alpina|Tussilago alpina|herb (generic term)|herbaceous plant (generic term)
+homoiotherm|1
+(noun)|homeotherm|homotherm|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+homoiothermic|1
+(adj)|homeothermic|homothermic|warm-blooded (similar term)
+homologic|1
+(adj)|homological|homologous (similar term)
+homological|1
+(adj)|homologic|homologous (similar term)
+homologise|1
+(verb)|homologize|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+homologize|2
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|homologise|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+homologous|2
+(adj)|homologic (similar term)|homological (similar term)|analogous (antonym)|heterologous (antonym)
+(adj)|heterologous (antonym)|autologous (antonym)
+homology|1
+(noun)|similarity (generic term)
+homolosine projection|1
+(noun)|equal-area projection (generic term)|equal-area map projection (generic term)
+homomorphism|1
+(noun)|homomorphy|similarity (generic term)
+homomorphy|1
+(noun)|homomorphism|similarity (generic term)
+homona|1
+(noun)|Homona|genus Homona|arthropod genus (generic term)
+homona coffearia|1
+(noun)|tea tortrix|tortrix|Homona coffearia|tortricid (generic term)|tortricid moth (generic term)
+homonym|1
+(noun)|word (generic term)
+homonymic|1
+(adj)|homonymous|word (related term)
+homonymous|1
+(adj)|homonymic|word (related term)
+homonymy|1
+(noun)|linguistic relation (generic term)
+homophile|2
+(adj)|gay|queer|homosexual (similar term)
+(noun)|homosexual|homo|gay|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+homophobe|1
+(noun)|bigot (generic term)
+homophobia|1
+(noun)|bias (generic term)|prejudice (generic term)|preconception (generic term)
+homophobic|1
+(adj)|prejudiced (similar term)|discriminatory (similar term)
+homophone|1
+(noun)|homonym (generic term)
+homophonic|2
+(adj)|same (similar term)
+(adj)|monophonic (similar term)
+homophonous|1
+(adj)|homonym (related term)
+homophony|2
+(noun)|pronunciation (generic term)
+(noun)|part music (generic term)
+homoptera|1
+(noun)|Homoptera|suborder Homoptera|animal order (generic term)
+homopteran|1
+(noun)|homopterous insect|insect (generic term)
+homopterous insect|1
+(noun)|homopteran|insect (generic term)
+homosexual|2
+(adj)|butch (similar term)|gay (similar term)|queer (similar term)|homophile (similar term)|homoerotic (similar term)|lesbian (similar term)|sapphic (similar term)|pederastic (similar term)|paederastic (similar term)|transgender (similar term)|transgendered (similar term)|transsexual (similar term)|transvestic (similar term)|transvestite (similar term)|tribadistic (similar term)|bisexual (antonym)|heterosexual (antonym)
+(noun)|homophile|homo|gay|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+homosexualism|1
+(noun)|homosexuality|homoeroticism|queerness|gayness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+homosexuality|1
+(noun)|homosexualism|homoeroticism|queerness|gayness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+homosporous|1
+(adj)|monogenesis|sporulation (related term)
+homospory|1
+(noun)|monogenesis (generic term)|sporulation (generic term)
+homostylic|1
+(adj)|homostylous|honostyled|reproductive structure (related term)
+homostylous|1
+(adj)|homostylic|honostyled|reproductive structure (related term)
+homotherm|1
+(noun)|homeotherm|homoiotherm|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+homothermic|1
+(adj)|homoiothermic|homeothermic|warm-blooded (similar term)
+homozygosity|1
+(noun)|state (generic term)|heterozygosity (antonym)
+homozygous|1
+(adj)|heterozygous (antonym)
+homunculus|2
+(noun)|manikin|mannikin|small person (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+homy|1
+(adj)|homelike|homely|homey|comfortable (similar term)|comfy (similar term)
+homyel|1
+(noun)|Homyel|Homel|Gomel|city (generic term)|metropolis (generic term)|urban center (generic term)
+honcho|1
+(noun)|foreman|chief|gaffer|boss|supervisor (generic term)
+hondo|1
+(noun)|Honshu|Hondo|island (generic term)
+honduran|2
+(adj)|Honduran|Central American country|Central American nation (related term)
+(noun)|Honduran|Central American (generic term)
+honduran capital|1
+(noun)|Tegucigalpa|Honduran capital|national capital (generic term)
+honduran monetary unit|1
+(noun)|Honduran monetary unit|monetary unit (generic term)
+honduras|1
+(noun)|Honduras|Republic of Honduras|Central American country (generic term)|Central American nation (generic term)
+honduras mahogany|1
+(noun)|Honduras mahogany|Swietinia macrophylla|mahogany (generic term)|mahogany tree (generic term)
+honduras rosewood|1
+(noun)|Honduras rosewood|Dalbergia stevensonii|rosewood (generic term)|rosewood tree (generic term)
+hone|3
+(noun)|whetstone (generic term)
+(verb)|sharpen (generic term)
+(verb)|perfect|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+honegger|1
+(noun)|Honegger|Arthur Honegger|composer (generic term)
+honest|7
+(adj)|honorable|downright (similar term)|direct (related term)|genuine (related term)|echt (related term)|honorable (related term)|honourable (related term)|ingenuous (related term)|artless (related term)|sincere (related term)|straight (related term)|square (related term)|true (related term)|trustworthy (related term)|trusty (related term)|dishonest (antonym)
+(adj)|sincere (similar term)
+(adj)|dependable|reliable|true|trustworthy (similar term)|trusty (similar term)
+(adj)|guileless|artless (similar term)
+(adj)|unpretentious (similar term)
+(adj)|veracious|truthful (similar term)|true (similar term)
+(adj)|truthful (similar term)|true (similar term)
+honest-to-god|1
+(adj)|honest-to-goodness|old|sure-enough|genuine (similar term)|echt (similar term)
+honest-to-goodness|1
+(adj)|honest-to-god|old|sure-enough|genuine (similar term)|echt (similar term)
+honest woman|1
+(noun)|wife (generic term)|married woman (generic term)
+honestly|2
+(adv)|candidly|frankly
+(adv)|aboveboard|dishonestly (antonym)
+honestness|1
+(noun)|honesty|righteousness (generic term)|dishonesty (antonym)
+honesty|2
+(noun)|honestness|righteousness (generic term)|dishonesty (antonym)
+(noun)|silver dollar|money plant|satin flower|satinpod|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+honey|4
+(adj)|chromatic (similar term)
+(noun)|sweetening (generic term)|sweetener (generic term)
+(noun)|beloved|dear|dearest|loved one|love|lover (generic term)
+(verb)|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+honey-colored|1
+(adj)|honey-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+honey-coloured|1
+(adj)|honey-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+honey-flower|2
+(noun)|honeyflower|mountain devil|Lambertia formosa|shrub (generic term)|bush (generic term)
+(noun)|honeyflower|Protea mellifera|protea (generic term)
+honey-scented|1
+(adj)|odorous (similar term)
+honey badger|1
+(noun)|ratel|Mellivora capensis|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+honey bear|1
+(noun)|kinkajou|potto|Potos flavus|Potos caudivolvulus|procyonid (generic term)
+honey bell|1
+(noun)|honeybells|Hermannia verticillata|Mahernia verticillata|shrub (generic term)|bush (generic term)
+honey berry|1
+(noun)|Spanish lime|Spanish lime tree|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+honey bun|1
+(noun)|sticky bun|caramel bun|schnecken|sweet roll (generic term)|coffee roll (generic term)
+honey buzzard|1
+(noun)|Pernis apivorus|hawk (generic term)
+honey cake|1
+(noun)|cake (generic term)
+honey crisp|1
+(noun)|candy (generic term)|confect (generic term)
+honey eater|1
+(noun)|honeysucker|oscine (generic term)|oscine bird (generic term)
+honey fungus|1
+(noun)|honey mushroom|Armillariella mellea|agaric (generic term)
+honey gland|1
+(noun)|nectary|plant organ (generic term)
+honey guide|1
+(noun)|piciform bird (generic term)
+honey locust|1
+(noun)|Gleditsia triacanthos|locust tree (generic term)|locust (generic term)
+honey mesquite|1
+(noun)|Western honey mesquite|Prosopis glandulosa|mesquite (generic term)|mesquit (generic term)
+honey mushroom|1
+(noun)|honey fungus|Armillariella mellea|agaric (generic term)
+honey oil|1
+(noun)|K|jet|super acid|special K|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+honey plant|1
+(noun)|hoya (generic term)
+honeybee|1
+(noun)|Apis mellifera|bee (generic term)
+honeybells|1
+(noun)|honey bell|Hermannia verticillata|Mahernia verticillata|shrub (generic term)|bush (generic term)
+honeycomb|5
+(noun)|structure (generic term)|construction (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|fret (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)
+honeycomb tripe|1
+(noun)|tripe (generic term)
+honeycombed|1
+(adj)|alveolate|faveolate|cavitied|pitted|cellular (similar term)
+honeycreeper|2
+(noun)|Hawaiian honeycreeper|finch (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+honeydew|1
+(noun)|honeydew melon|winter melon (generic term)
+honeydew melon|2
+(noun)|winter melon|Persian melon|winter melon vine|Cucumis melo inodorus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|honeydew|winter melon (generic term)
+honeyed|2
+(adj)|honied|syrupy|sugary (similar term)
+(adj)|dulcet|mellifluous|mellisonant|sweet|melodious (similar term)|melodic (similar term)|musical (similar term)
+honeyed words|1
+(noun)|sweet nothings|nothings (generic term)
+honeyflower|2
+(noun)|honey-flower|mountain devil|Lambertia formosa|shrub (generic term)|bush (generic term)
+(noun)|honey-flower|Protea mellifera|protea (generic term)
+honeylike|1
+(adj)|sugary (similar term)
+honeymoon|3
+(noun)|vacation (generic term)|holiday (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|vacation (generic term)|holiday (generic term)
+honeymoon resort|1
+(noun)|resort (generic term)|resort hotel (generic term)|holiday resort (generic term)
+honeymooner|1
+(noun)|newlywed|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+honeypot|1
+(noun)|king protea|Protea cynaroides|protea (generic term)
+honeysucker|1
+(noun)|honey eater|oscine (generic term)|oscine bird (generic term)
+honeysuckle|3
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|Australian honeysuckle|coast banksia|Banksia integrifolia|banksia (generic term)
+(noun)|meeting house|Aquilegia canadensis|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+honeysuckle family|1
+(noun)|Caprifoliaceae|family Caprifoliaceae|asterid dicot family (generic term)
+hong kong|1
+(noun)|Hong Kong|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+hong kong dollar|1
+(noun)|Hong Kong dollar|dollar (generic term)
+honiara|1
+(noun)|Honiara|national capital (generic term)
+honied|1
+(adj)|honeyed|syrupy|sugary (similar term)
+honk|5
+(noun)|cry (generic term)
+(verb)|blare|beep|claxon|toot|sound (generic term)|go (generic term)
+(verb)|claxon|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|cronk|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+honker|3
+(noun)|driver (generic term)
+(noun)|beak|hooter|nozzle|snoot|snout|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+(noun)|Canada goose|Canadian goose|Branta canadensis|goose (generic term)
+honkey|1
+(noun)|whitey|honky|honkie|White (generic term)|white person (generic term)|Caucasian (generic term)
+honkie|1
+(noun)|whitey|honky|honkey|White (generic term)|white person (generic term)|Caucasian (generic term)
+honky|1
+(noun)|whitey|honkey|honkie|White (generic term)|white person (generic term)|Caucasian (generic term)
+honky-tonk|1
+(noun)|barrelhouse|barroom (generic term)|bar (generic term)|saloon (generic term)|ginmill (generic term)|taproom (generic term)
+honkytonk|1
+(noun)|dive|cabaret (generic term)|nightclub (generic term)|club (generic term)|nightspot (generic term)
+honolulu|1
+(noun)|Honolulu|capital of Hawaii|Hawaiian capital|state capital (generic term)|port (generic term)
+honor|7
+(noun)|award|accolade|honour|laurels|symbol (generic term)
+(noun)|honour|laurels|standing (generic term)|dishonor (antonym)
+(noun)|honour|righteousness (generic term)|dishonor (antonym)
+(noun)|honour|purity|pureness|virtue (generic term)|chastity (generic term)|sexual morality (generic term)
+(verb)|honour|reward|recognize (generic term)|recognise (generic term)|dishonor (antonym)
+(verb)|respect|honour|abide by|observe|accept (generic term)|disrespect (antonym)
+(verb)|honour|accept (generic term)|take (generic term)|have (generic term)|dishonor (antonym)
+honor guard|1
+(noun)|guard of honor|escort (generic term)
+honor killing|1
+(noun)|homicide (generic term)
+honor system|1
+(noun)|system (generic term)|system of rules (generic term)
+honorable|5
+(adj)|honest|downright (similar term)|direct (related term)|genuine (related term)|echt (related term)|honorable (related term)|honourable (related term)|ingenuous (related term)|artless (related term)|sincere (related term)|straight (related term)|square (related term)|true (related term)|trustworthy (related term)|trusty (related term)|dishonest (antonym)
+(adj)|honourable|august (similar term)|revered (similar term)|venerable (similar term)|laureate (similar term)|time-honored (similar term)|time-honoured (similar term)|honest (related term)|honorable (related term)|just (related term)|moral (related term)|noble (related term)|reputable (related term)|worthy (related term)|dishonorable (antonym)
+(adj)|honourable|worthy (similar term)
+(adj)|ethical|honourable|moral|right (similar term)
+(adj)|estimable|good|respectable|reputable (similar term)
+honorable discharge|1
+(noun)|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+honorable mention|1
+(noun)|mention|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+honorableness|1
+(noun)|honourableness|righteousness (generic term)|dishonorableness (antonym)
+honorably|2
+(adv)|uprightly|dishonorably (antonym)
+(adv)|honourably|dishonorably (antonym)
+honorarium|1
+(noun)|reward (generic term)
+honorary|1
+(adj)|unearned (similar term)
+honorary degree|1
+(noun)|honoris causa|academic degree (generic term)|degree (generic term)
+honorary society|1
+(noun)|academy|institution (generic term)|establishment (generic term)
+honore-gabriel victor riqueti|1
+(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+honore balzac|1
+(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist (generic term)
+honore daumier|1
+(noun)|Daumier|Honore Daumier|painter (generic term)|lithographer (generic term)
+honore de balzac|1
+(noun)|Balzac|Honore Balzac|Honore de Balzac|novelist (generic term)
+honored|2
+(adj)|esteemed|prestigious|reputable (similar term)
+(adj)|honoured|worthy (similar term)
+honoree|1
+(noun)|recipient (generic term)|receiver (generic term)
+honorific|2
+(adj)|respectful (similar term)
+(noun)|formulation (generic term)|expression (generic term)
+honoring|1
+(noun)|observance|conformity (generic term)|conformation (generic term)|compliance (generic term)|abidance (generic term)|nonobservance (antonym)
+honoris causa|1
+(noun)|honorary degree|academic degree (generic term)|degree (generic term)
+honostyled|1
+(adj)|homostylous|homostylic|reproductive structure (related term)
+honour|7
+(noun)|honor|laurels|standing (generic term)|dishonor (antonym)
+(noun)|award|accolade|honor|laurels|symbol (generic term)
+(noun)|honor|righteousness (generic term)|dishonor (antonym)
+(noun)|honor|purity|pureness|virtue (generic term)|chastity (generic term)|sexual morality (generic term)
+(verb)|honor|reward|recognize (generic term)|recognise (generic term)|dishonor (antonym)
+(verb)|respect|honor|abide by|observe|accept (generic term)|disrespect (antonym)
+(verb)|honor|accept (generic term)|take (generic term)|have (generic term)|dishonor (antonym)
+honourable|3
+(adj)|honorable|august (similar term)|revered (similar term)|venerable (similar term)|laureate (similar term)|time-honored (similar term)|time-honoured (similar term)|honest (related term)|honorable (related term)|just (related term)|moral (related term)|noble (related term)|reputable (related term)|worthy (related term)|dishonorable (antonym)
+(adj)|honorable|worthy (similar term)
+(adj)|ethical|honorable|moral|right (similar term)
+honourableness|1
+(noun)|honorableness|righteousness (generic term)|dishonorableness (antonym)
+honourably|1
+(adv)|honorably|dishonorably (antonym)
+honoured|1
+(adj)|honored|worthy (similar term)
+honours|1
+(noun)|honours degree|academic degree (generic term)|degree (generic term)
+honours degree|1
+(noun)|honours|academic degree (generic term)|degree (generic term)
+honours list|1
+(noun)|class list|list (generic term)|listing (generic term)
+honshu|1
+(noun)|Honshu|Hondo|island (generic term)
+hoo-ha|1
+(noun)|disturbance|disruption|commotion|flutter|hurly burly|to-do|hoo-hah|kerfuffle|disorder (generic term)
+hoo-hah|1
+(noun)|disturbance|disruption|commotion|flutter|hurly burly|to-do|hoo-ha|kerfuffle|disorder (generic term)
+hooch|1
+(noun)|hootch|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+hood|6
+(noun)|hoodlum|goon|punk|thug|tough|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|exhaust hood|covering (generic term)
+(noun)|roof (generic term)
+(noun)|headdress (generic term)|headgear (generic term)
+(noun)|bonnet|cowl|cowling|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|cover (generic term)
+hood latch|1
+(noun)|catch (generic term)
+hood ornament|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+hooded cloak|1
+(noun)|capote|cloak (generic term)
+hooded coat|1
+(noun)|capote|greatcoat (generic term)|overcoat (generic term)|topcoat (generic term)
+hooded ladies' tresses|1
+(noun)|Spiranthes romanzoffiana|ladies' tresses (generic term)|lady's tresses (generic term)
+hooded merganser|1
+(noun)|hooded sheldrake|Lophodytes cucullatus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+hooded pitcher plant|1
+(noun)|Sarracenia minor|pitcher plant (generic term)
+hooded seal|1
+(noun)|bladdernose|Cystophora cristata|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+hooded sheldrake|1
+(noun)|hooded merganser|Lophodytes cucullatus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+hooded skunk|1
+(noun)|Mephitis macroura|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+hoodlum|1
+(noun)|hood|goon|punk|thug|tough|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+hoodmold|1
+(noun)|dripstone|hoodmould|drip (generic term)|drip mold (generic term)|drip mould (generic term)
+hoodmould|1
+(noun)|dripstone|hoodmold|drip (generic term)|drip mold (generic term)|drip mould (generic term)
+hoodoo|5
+(noun)|column (generic term)|tower (generic term)|pillar (generic term)
+(noun)|priest (generic term)|non-Christian priest (generic term)|voodoo (generic term)|vodoun (generic term)|voodooism (generic term)|hoodooism (generic term)
+(noun)|juju|voodoo|fetish|fetich|charm (generic term)|good luck charm (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(verb)|be (generic term)
+hoodooism|1
+(noun)|voodoo|vodoun|voodooism|cult (generic term)|cultus (generic term)|religious cult (generic term)
+hoodwink|2
+(verb)|juggle|beguile|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|bamboozle|snow|pull the wool over someone's eyes|lead by the nose|play false|deceive (generic term)|betray (generic term)|lead astray (generic term)
+hooey|1
+(noun)|stuff|stuff and nonsense|poppycock|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+hoof|4
+(noun)|animal foot (generic term)|foot (generic term)
+(noun)|horny structure (generic term)|unguis (generic term)
+(verb)|foot|leg it|hoof it|walk (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+hoof-and-mouth disease|1
+(noun)|foot-and-mouth disease|animal disease (generic term)
+hoof-mark|1
+(noun)|hoofprint|hoof mark|mark (generic term)|print (generic term)
+hoof it|1
+(verb)|foot|leg it|hoof|walk (generic term)
+hoof mark|1
+(noun)|hoofprint|hoof-mark|mark (generic term)|print (generic term)
+hoofed|1
+(adj)|ungulate|ungulated|hooved|solid-hoofed (similar term)|unguiculate (antonym)
+hoofed mammal|1
+(noun)|ungulate|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+hoofer|1
+(noun)|stepper|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+hoofing|1
+(noun)|step dancing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+hooflike|1
+(adj)|animal foot|foot (related term)
+hoofprint|1
+(noun)|hoof mark|hoof-mark|mark (generic term)|print (generic term)
+hook|19
+(noun)|catch (generic term)
+(noun)|crotchet|curve (generic term)|curved shape (generic term)
+(noun)|bait|come-on|lure|sweetener|temptation (generic term)|enticement (generic term)
+(noun)|claw|mechanical device (generic term)
+(noun)|implement (generic term)
+(noun)|draw|hooking|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+(noun)|hook shot|basketball shot (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|hook up (related term)|unhook (antonym)
+(verb)|overcharge|soak|surcharge|gazump|fleece|plume|pluck|rob|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|crochet|loop (generic term)|intertwine (generic term)
+(verb)|snitch|thieve|cop|knock off|glom|steal (generic term)
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|sneak|filch|nobble|lift|steal (generic term)
+(verb)|hit (generic term)
+(verb)|catch (generic term)|grab (generic term)|take hold of (generic term)
+(verb)|addict|habituate (generic term)|accustom (generic term)
+(verb)|play (generic term)
+(verb)|snare|entice (generic term)|lure (generic term)|tempt (generic term)
+(verb)|solicit|accost|offer (generic term)
+hook-nosed|1
+(adj)|nosed (similar term)
+hook-shaped|1
+(adj)|formed (similar term)
+hook and eye|1
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+hook of holland|1
+(noun)|Hook of Holland|Hoek van Holland|cape (generic term)|ness (generic term)
+hook on|1
+(verb)|take up|latch on|fasten on|seize on|espouse (generic term)|embrace (generic term)|adopt (generic term)|sweep up (generic term)
+hook shot|1
+(noun)|hook|basketball shot (generic term)
+hook spanner|1
+(noun)|hook wrench|wrench (generic term)|spanner (generic term)
+hook up|1
+(verb)|attach (generic term)
+hook up with|1
+(verb)|marry|get married|wed|conjoin|get hitched with|espouse|unite (generic term)|unify (generic term)
+hook wrench|1
+(noun)|hook spanner|wrench (generic term)|spanner (generic term)
+hookah|1
+(noun)|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+hooke|1
+(noun)|Hooke|Robert Hooke|scientist (generic term)|man of science (generic term)
+hooke's law|1
+(noun)|Hooke's law|law (generic term)|law of nature (generic term)
+hooked|2
+(adj)|aquiline|crooked (similar term)
+(adj)|dependent|dependant|drug-addicted|strung-out|addicted (similar term)
+hooker|5
+(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general (generic term)|full general (generic term)
+(noun)|Hooker|Richard Hooker|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|streetwalker|street girl|hustler|floozy|floozie|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+(noun)|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|athlete (generic term)|jock (generic term)
+hooker's green|1
+(noun)|Hooker's green|pigment (generic term)
+hooker's onion|1
+(noun)|Hooker's onion|Allium acuminatum|wild onion (generic term)
+hooker's orchid|1
+(noun)|Hooker's orchid|Habenaria hookeri|fringed orchis (generic term)|fringed orchid (generic term)
+hooking|1
+(noun)|hook|draw|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+hooklike|1
+(adj)|curved (similar term)|curving (similar term)
+hooknose|1
+(noun)|Roman nose|nose (generic term)|olfactory organ (generic term)
+hooks|1
+(noun)|meat hooks|maulers|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+hookup|2
+(noun)|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|assemblage|system (generic term)
+hookworm|2
+(noun)|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+(noun)|hookworm disease|helminthiasis (generic term)
+hookworm disease|1
+(noun)|hookworm|helminthiasis (generic term)
+hooky|1
+(noun)|truancy|nonattendance (generic term)
+hooky player|1
+(noun)|truant|absentee (generic term)
+hooligan|1
+(noun)|bully|tough|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+hooliganism|1
+(noun)|vandalism|malicious mischief|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)|destruction (generic term)|devastation (generic term)
+hoop|5
+(noun)|skeleton (generic term)|skeletal frame (generic term)|frame (generic term)|underframe (generic term)
+(noun)|ring|band (generic term)
+(noun)|wicket|croquet equipment (generic term)
+(noun)|basket|basketball hoop|goal (generic term)|basketball equipment (generic term)
+(verb)|gird (generic term)|encircle (generic term)
+hoop ash|1
+(noun)|black ash|basket ash|brown ash|Fraxinus nigra|ash (generic term)|ash tree (generic term)
+hoop pine|1
+(noun)|Moreton Bay pine|Araucaria cunninghamii|araucaria (generic term)
+hoop snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+hoopla|1
+(noun)|ballyhoo|hype|plug|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+hoopoe|1
+(noun)|hoopoo|coraciiform bird (generic term)
+hoopoo|1
+(noun)|hoopoe|coraciiform bird (generic term)
+hoops|1
+(noun)|basketball|basketball game|court game (generic term)
+hoopskirt|1
+(noun)|crinoline|skirt (generic term)
+hooray|1
+(noun)|hurrah|cheer (generic term)
+hooray henry|1
+(noun)|Hooray Henry|man (generic term)|adult male (generic term)
+hoosegow|1
+(noun)|hoosgow|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+hoosgow|1
+(noun)|hoosegow|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+hoosier|1
+(noun)|Indianan|Hoosier|American (generic term)
+hoosier state|1
+(noun)|Indiana|Hoosier State|IN|American state (generic term)
+hoot|4
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|boo|Bronx cheer|hiss|raspberry|razzing|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|damn|darn|red cent|shit|shucks|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+hoot owl|1
+(noun)|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+hootch|1
+(noun)|hooch|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+hooter|3
+(noun)|beak|honker|nozzle|snoot|snout|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+(noun)|automobile horn|car horn|motor horn|horn|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+(noun)|owl|bird of Minerva|bird of night|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+hooved|1
+(adj)|ungulate|ungulated|hoofed|solid-hoofed (similar term)|unguiculate (antonym)
+hoover|5
+(noun)|Hoover|William Hoover|William Henry Hoover|industrialist (generic term)
+(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer (generic term)|attorney (generic term)
+(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Hoover|vacuum (generic term)|vacuum cleaner (generic term)
+(verb)|vacuum|vacuum-clean|clean (generic term)|make clean (generic term)
+hoover dam|1
+(noun)|Hoover Dam|dam (generic term)|dike (generic term)|dyke (generic term)
+hop|9
+(noun)|jump (generic term)|jumping (generic term)
+(noun)|hops|vine (generic term)
+(noun)|record hop|dance (generic term)
+(verb)|skip|hop-skip|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)|skip over (related term)|hop on (related term)
+(verb)|move (generic term)
+(verb)|travel (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|clear (generic term)|top (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+hop-picker|1
+(noun)|hopper|machine (generic term)
+hop-skip|1
+(verb)|hop|skip|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)|skip over (related term)|hop on (related term)
+hop-step-and-jump|1
+(noun)|triple jump|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+hop clover|2
+(noun)|black medick|yellow trefoil|nonesuch clover|Medicago lupulina|medic (generic term)|medick (generic term)|trefoil (generic term)
+(noun)|shamrock|lesser yellow trefoil|Trifolium dubium|clover (generic term)|trefoil (generic term)
+hop field|1
+(noun)|hop garden|garden (generic term)
+hop garden|1
+(noun)|hop field|garden (generic term)
+hop hornbeam|1
+(noun)|tree (generic term)
+hop marjoram|1
+(noun)|dittany of crete|cretan dittany|crete dittany|winter sweet|Origanum dictamnus|origanum (generic term)
+hop on|1
+(verb)|mount|mount up|get on|jump on|climb on|bestride|move (generic term)|hop out (antonym)
+hop out|1
+(verb)|get off|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|hop on (antonym)
+hop pole|1
+(noun)|post (generic term)
+hop up|1
+(verb)|soup up|hot up|modify (generic term)
+hope|9
+(noun)|anticipation (generic term)|expectancy (generic term)
+(noun)|feeling (generic term)|despair (antonym)
+(noun)|promise|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian (generic term)|comic (generic term)
+(noun)|theological virtue (generic term)|supernatural virtue (generic term)
+(verb)|trust|desire|wish (generic term)
+(verb)|desire (generic term)|want (generic term)|despair (antonym)
+(verb)|go for|plan (generic term)|be after (generic term)
+hope chest|1
+(noun)|wedding chest|chest (generic term)
+hoped-for|1
+(adj)|anticipated|awaited|expected (similar term)
+hopeful|3
+(adj)|anticipant (similar term)|anticipative (similar term)|expectant (similar term)|encouraging (related term)|optimistic (related term)|hopeless (antonym)
+(adj)|fortunate|rosy|auspicious (similar term)
+(noun)|aspirant|aspirer|wannabe|wannabee|applicant (generic term)|applier (generic term)
+hopefully|1
+(adv)|hopelessly (antonym)
+hopefulness|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|hope (generic term)|hopelessness (antonym)
+hopeh|1
+(noun)|Hebei|Hopei|Hopeh|Hebei province|state (generic term)|province (generic term)
+hopei|1
+(noun)|Hebei|Hopei|Hopeh|Hebei province|state (generic term)|province (generic term)
+hopeless|4
+(adj)|abject (similar term)|resigned (similar term)|unhopeful (similar term)|black (similar term)|bleak (similar term)|dim (similar term)|despairing (similar term)|desperate (similar term)|despondent (similar term)|heartsick (similar term)|forlorn (similar term)|futureless (similar term)|gloomy (similar term)|grim (similar term)|darkening (similar term)|helpless (similar term)|lost (similar term)|insoluble (similar term)|discouraging (related term)|impossible (related term)|pessimistic (related term)|hopeful (antonym)
+(adj)|unskilled (similar term)
+(adj)|impossible (similar term)
+(adj)|bad (similar term)
+hopelessly|2
+(adv)|dispiritedly
+(adv)|hopefully (antonym)
+hopelessness|1
+(noun)|despair (generic term)|hopefulness (antonym)
+hoper|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+hopi|2
+(noun)|Hopi|Shoshone (generic term)|Shoshoni (generic term)|Pueblo (generic term)
+(noun)|Hopi|Shoshonean (generic term)|Shoshonean language (generic term)|Shoshonian (generic term)|Shoshonian language (generic term)
+hopkins|5
+(noun)|Hopkins|Mark Hopkins|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|Hopkins|Johns Hopkins|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+(noun)|Hopkins|Gerard Manley Hopkins|poet (generic term)
+(noun)|Hopkins|Sir Frederick Gowland Hopkins|biochemist (generic term)
+(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hopkinson|1
+(noun)|Hopkinson|Francis Hopkinson|American Revolutionary leader (generic term)
+hopped-up|2
+(adj)|powered (similar term)
+(adj)|stoned|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+hopper|5
+(noun)|receptacle (generic term)
+(noun)|jumper (generic term)
+(noun)|hop-picker|machine (generic term)
+(noun)|grasshopper|orthopterous insect (generic term)|orthopteron (generic term)|orthopteran (generic term)
+(noun)|grounder|ground ball|groundball|hit (generic term)|hitting (generic term)|striking (generic term)
+hopple|1
+(verb)|hobble|strap (generic term)
+hops|1
+(noun)|hop|vine (generic term)
+hopsack|1
+(noun)|hopsacking|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+hopsacking|1
+(noun)|hopsack|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+hopscotch|1
+(noun)|child's game (generic term)
+horace|1
+(noun)|Horace|poet (generic term)
+horace greeley|1
+(noun)|Greeley|Horace Greeley|journalist (generic term)
+horace mann|1
+(noun)|Mann|Horace Mann|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+horace walpole|1
+(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+horary|1
+(adj)|time unit|unit of time (related term)
+horatian ode|1
+(noun)|Horatian ode|Sapphic ode|ode (generic term)
+horatio alger|1
+(noun)|Alger|Horatio Alger|writer (generic term)|author (generic term)
+horatio herbert kitchener|1
+(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal (generic term)
+horatio hornblower|1
+(noun)|Horatio Hornblower|Captain Horatio Hornblower|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+horatio nelson|1
+(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral (generic term)|full admiral (generic term)
+horatio walpole|1
+(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+horde|3
+(noun)|host|legion|multitude (generic term)|throng (generic term)|concourse (generic term)
+(noun)|community (generic term)
+(noun)|drove|swarm|crowd (generic term)
+hordeolum|1
+(noun)|sty|stye|eye infection|infection (generic term)
+hordeum|1
+(noun)|Hordeum|genus Hordeum|monocot genus (generic term)|liliopsid genus (generic term)
+hordeum jubatum|1
+(noun)|squirreltail barley|foxtail barley|squirreltail grass|Hordeum jubatum|barley (generic term)
+hordeum murinum|1
+(noun)|barley grass|wall barley|Hordeum murinum|barley (generic term)
+hordeum pusillum|1
+(noun)|little barley|Hordeum pusillum|barley (generic term)
+hordeum vulgare|1
+(noun)|common barley|Hordeum vulgare|barley (generic term)
+horehound|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|candy (generic term)|confect (generic term)
+horizon|4
+(noun)|apparent horizon|visible horizon|sensible horizon|skyline|line (generic term)
+(noun)|view|purview|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|stratum (generic term)
+(noun)|celestial horizon|great circle (generic term)
+horizontal|2
+(adj)|crosswise (similar term)|flat (similar term)|level (similar term)|naiant (similar term)|swimming (similar term)|vertical (antonym)|inclined (antonym)
+(noun)|orientation (generic term)
+horizontal bar|1
+(noun)|high bar|gymnastic apparatus (generic term)|exerciser (generic term)
+horizontal combination|1
+(noun)|horizontal integration|consolidation (generic term)|integration (generic term)
+horizontal integration|1
+(noun)|horizontal combination|consolidation (generic term)|integration (generic term)
+horizontal parallax|1
+(noun)|geocentric parallax (generic term)|diurnal parallax (generic term)
+horizontal section|1
+(noun)|mechanical drawing (generic term)
+horizontal stabiliser|1
+(noun)|horizontal stabilizer|tailplane|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+horizontal stabilizer|1
+(noun)|horizontal stabiliser|tailplane|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+horizontal surface|1
+(noun)|level|surface (generic term)
+horizontal tail|1
+(noun)|stabilizer (generic term)
+horizontality|1
+(noun)|position (generic term)|spatial relation (generic term)
+hormonal|1
+(adj)|secretion (related term)
+hormone|1
+(noun)|endocrine|internal secretion|secretion (generic term)
+hormone-replacement therapy|1
+(noun)|hormone replacement therapy|HRT|therapy (generic term)
+hormone replacement therapy|1
+(noun)|hormone-replacement therapy|HRT|therapy (generic term)
+horn|10
+(noun)|noisemaker (generic term)
+(noun)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|saddle horn|pommel (generic term)|saddlebow (generic term)
+(noun)|cornet|trumpet|trump|brass (generic term)|brass instrument (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(noun)|animal material (generic term)
+(noun)|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+(noun)|French horn|brass (generic term)|brass instrument (generic term)
+(noun)|automobile horn|car horn|motor horn|hooter|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+(verb)|tusk|pierce (generic term)|thrust (generic term)
+horn-rimmed|1
+(adj)|rimmed (similar term)
+horn-shaped|1
+(adj)|formed (similar term)
+horn button|1
+(noun)|push button (generic term)|push (generic term)|button (generic term)
+horn fly|1
+(noun)|Haematobia irritans|fly (generic term)
+horn in|1
+(verb)|intrude|pry|nose|poke|search (generic term)|look (generic term)|nose out (related term)
+horn of africa|1
+(noun)|Somali peninsula|Horn of Africa|peninsula (generic term)
+horn of plenty|1
+(noun)|cornucopia|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+horn poppy|1
+(noun)|horned poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower (generic term)
+hornbeam|1
+(noun)|tree (generic term)
+hornbill|1
+(noun)|coraciiform bird (generic term)
+hornblende|1
+(noun)|amphibole (generic term)
+hornbook|1
+(noun)|primer (generic term)
+horne|2
+(noun)|Horne|Marilyn Horne|mezzo-soprano (generic term)|mezzo (generic term)
+(noun)|Horne|Lena Horne|Lena Calhoun Horne|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+horned|1
+(adj)|antlered (similar term)|antler-like (similar term)|bicorn (similar term)|bicorned (similar term)|bicornate (similar term)|bicornuate (similar term)|bicornuous (similar term)|hollow-horned (similar term)|horny (similar term)|hornless (antonym)
+horned asp|1
+(noun)|horned viper|cerastes|sand viper|Cerastes cornutus|viper (generic term)
+horned chameleon|1
+(noun)|Chamaeleo oweni|chameleon (generic term)|chamaeleon (generic term)
+horned dinosaur|1
+(noun)|ceratopsian|ornithischian (generic term)|ornithischian dinosaur (generic term)
+horned lizard|1
+(noun)|horned toad|horny frog|iguanid (generic term)|iguanid lizard (generic term)
+horned owl|1
+(noun)|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+horned pondweed|1
+(noun)|Zannichellia palustris|pondweed (generic term)
+horned poppy|1
+(noun)|horn poppy|yellow horned poppy|sea poppy|Glaucium flavum|flower (generic term)
+horned pout|1
+(noun)|hornpout|pout|Ameiurus Melas|bullhead (generic term)
+horned puffin|1
+(noun)|Fratercula corniculata|puffin (generic term)
+horned rattlesnake|1
+(noun)|sidewinder|Crotalus cerastes|rattlesnake (generic term)|rattler (generic term)
+horned screamer|1
+(noun)|Anhima cornuta|screamer (generic term)
+horned toad|1
+(noun)|horned lizard|horny frog|iguanid (generic term)|iguanid lizard (generic term)
+horned violet|1
+(noun)|tufted pansy|Viola cornuta|viola (generic term)
+horned viper|1
+(noun)|cerastes|sand viper|horned asp|Cerastes cornutus|viper (generic term)
+horned whiff|1
+(noun)|Citharichthys cornutus|whiff (generic term)
+horneophyton|1
+(noun)|Horneophyton|genus Horneophyton|fern genus (generic term)
+horner's syndrome|1
+(noun)|Horner's syndrome|syndrome (generic term)
+hornet|1
+(noun)|vespid (generic term)|vespid wasp (generic term)
+hornet's nest|2
+(noun)|hornets' nest|situation (generic term)
+(noun)|wasp's nest|wasps' nest|hornets' nest|nidus (generic term)
+hornets' nest|2
+(noun)|hornet's nest|situation (generic term)
+(noun)|wasp's nest|wasps' nest|hornet's nest|nidus (generic term)
+horney|1
+(noun)|Horney|Karen Horney|Karen Danielsen Horney|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+hornfels|1
+(noun)|hornstone|metamorphic rock (generic term)
+horniness|1
+(noun)|hotness|hot pants|sexual arousal (generic term)
+hornist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+hornless|1
+(adj)|horned (antonym)
+hornlike|1
+(adj)|corneous|horny|hard (similar term)
+hornpipe|3
+(noun)|folk dancing (generic term)|folk dance (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|pibgorn|stockhorn|single-reed instrument (generic term)|single-reed woodwind (generic term)
+hornpout|1
+(noun)|horned pout|pout|Ameiurus Melas|bullhead (generic term)
+hornstone|1
+(noun)|hornfels|metamorphic rock (generic term)
+hornswoggle|1
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+hornwort|2
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|liverwort (generic term)|hepatic (generic term)
+horny|3
+(adj)|aroused|randy|ruttish|steamy|turned on|sexy (similar term)
+(adj)|horned (similar term)
+(adj)|corneous|hornlike|hard (similar term)
+horny frog|1
+(noun)|horned lizard|horned toad|iguanid (generic term)|iguanid lizard (generic term)
+horny layer|1
+(noun)|stratum corneum|corneum|stratum (generic term)
+horny structure|1
+(noun)|unguis|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+horologe|1
+(noun)|timepiece|timekeeper|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+horologer|1
+(noun)|watchmaker|horologist|maker (generic term)|shaper (generic term)
+horologist|1
+(noun)|watchmaker|horologer|maker (generic term)|shaper (generic term)
+horology|1
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+horoscope|2
+(noun)|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+(noun)|diagram (generic term)
+horoscopy|1
+(noun)|astrology (generic term)|star divination (generic term)
+horowitz|1
+(noun)|Horowitz|Vladimir Horowitz|pianist (generic term)|piano player (generic term)
+horrendous|1
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrific|terrible|alarming (similar term)
+horrible|1
+(adj)|atrocious|frightful|horrifying|ugly|alarming (similar term)
+horribly|1
+(adv)|dreadfully|awfully
+horrid|2
+(adj)|bad (similar term)
+(adj)|hideous|horrific|outrageous|offensive (similar term)
+horridly|1
+(adv)|hideously|monstrously
+horridness|1
+(noun)|awfulness|dreadfulness|terribleness|unpleasantness (generic term)
+horrific|2
+(adj)|hideous|horrid|outrageous|offensive (similar term)
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|terrible|alarming (similar term)
+horrified|1
+(adj)|horror-stricken|horror-struck|afraid (similar term)
+horrify|1
+(verb)|dismay|alarm|appal|appall|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+horrifying|1
+(adj)|atrocious|frightful|horrible|ugly|alarming (similar term)
+horripilate|2
+(verb)|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|stimulate (generic term)|excite (generic term)|stir (generic term)
+horripilation|1
+(noun)|pilomotor reflex|gooseflesh|goose bump|goosebump|goose pimple|goose skin|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+horror|3
+(noun)|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|thing (generic term)
+(noun)|repugnance|repulsion|revulsion|disgust (generic term)
+horror-stricken|1
+(adj)|horrified|horror-struck|afraid (similar term)
+horror-struck|1
+(adj)|horrified|horror-stricken|afraid (similar term)
+hors d'oeuvre|1
+(noun)|appetizer (generic term)|appetiser (generic term)|starter (generic term)
+hors de combat|1
+(adj)|disabled|out of action|injured (similar term)
+horse|6
+(noun)|Equus caballus|equine (generic term)|equid (generic term)
+(noun)|gymnastic horse|gymnastic apparatus (generic term)|exerciser (generic term)
+(noun)|cavalry|horse cavalry|military personnel (generic term)|soldiery (generic term)|troops (generic term)
+(noun)|sawhorse|sawbuck|buck|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|knight|chessman (generic term)|chess piece (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+horse's foot|1
+(noun)|horse's hoof|hoof (generic term)
+horse's hoof|1
+(noun)|horse's foot|hoof (generic term)
+horse-and-buggy|1
+(adj)|nonmodern (similar term)
+horse-brier|1
+(noun)|bullbrier|greenbrier|catbrier|horse brier|brier|briar|Smilax rotundifolia|vine (generic term)
+horse-cart|1
+(noun)|horse cart|cart (generic term)
+horse-chestnut family|1
+(noun)|Hippocastanaceae|family Hippocastanaceae|dicot family (generic term)|magnoliopsid family (generic term)
+horse-drawn|1
+(adj)|equine|equid (related term)
+horse-drawn vehicle|1
+(noun)|wheeled vehicle (generic term)
+horse-head|1
+(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+horse-like|1
+(adj)|horselike|animal (similar term)
+horse-pistol|1
+(noun)|horse pistol|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+horse-race|1
+(verb)|race (generic term)|run (generic term)
+horse-trade|1
+(verb)|negociate (generic term)
+horse-trail|1
+(noun)|trail (generic term)
+horse around|1
+(verb)|arse around|fool around|fool|play (generic term)|joke (generic term)|jest (generic term)
+horse balm|1
+(noun)|horseweed|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+horse barn|1
+(noun)|stable|stalls|farm building (generic term)
+horse bean|1
+(noun)|broad bean|fodder (generic term)
+horse blanket|1
+(noun)|saddle blanket|saddlecloth|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+horse botfly|1
+(noun)|Gasterophilus intestinalis|botfly (generic term)
+horse breeding|1
+(noun)|breeding (generic term)
+horse brier|1
+(noun)|bullbrier|greenbrier|catbrier|horse-brier|brier|briar|Smilax rotundifolia|vine (generic term)
+horse cart|1
+(noun)|horse-cart|cart (generic term)
+horse cassia|2
+(noun)|Cassia roxburghii|Cassia marginata|cassia (generic term)
+(noun)|pink shower|pink shower tree|Cassia grandis|cassia (generic term)
+horse cavalry|2
+(noun)|cavalry|horse|military personnel (generic term)|soldiery (generic term)|troops (generic term)
+(noun)|cavalry (generic term)
+horse chestnut|2
+(noun)|buckeye|Aesculus hippocastanum|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|buckeye|conker|seed (generic term)
+horse doctor|1
+(noun)|veterinarian (generic term)|veterinary (generic term)|veterinary surgeon (generic term)|vet (generic term)
+horse fancier|1
+(noun)|horseman|animal fancier (generic term)
+horse fly|1
+(noun)|horsefly|cleg|clegg|gadfly (generic term)
+horse gentian|1
+(noun)|feverroot|tinker's root|wild coffee|Triostium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+horse grain|1
+(noun)|horse gram|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume (generic term)|leguminous plant (generic term)
+horse gram|1
+(noun)|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume (generic term)|leguminous plant (generic term)
+horse latitude|1
+(noun)|latitude (generic term)|line of latitude (generic term)|parallel of latitude (generic term)|parallel (generic term)
+horse mackerel|3
+(noun)|bluefin|bluefin tuna|Thunnus thynnus|tuna (generic term)|tunny (generic term)
+(noun)|saurel|Trachurus trachurus|scad (generic term)
+(noun)|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad (generic term)
+horse manure|1
+(noun)|manure (generic term)
+horse mushroom|1
+(noun)|Agaricus arvensis|agaric (generic term)
+horse nettle|1
+(noun)|ball nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade (generic term)
+horse of the wood|1
+(noun)|capercaillie|capercailzie|Tetrao urogallus|grouse (generic term)
+horse opera|1
+(noun)|Western|feature (generic term)|feature film (generic term)
+horse parsley|1
+(noun)|Alexander|Alexanders|black lovage|Smyrnium olusatrum|herb (generic term)|herbaceous plant (generic term)
+horse pistol|1
+(noun)|horse-pistol|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+horse race|1
+(noun)|race (generic term)
+horse racing|1
+(noun)|racing (generic term)
+horse radish|1
+(noun)|horseradish|red cole|Armoracia rusticana|herb (generic term)|herbaceous plant (generic term)
+horse sense|1
+(noun)|common sense|good sense|gumption|sense|mother wit|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+horse thistle|1
+(noun)|prickly lettuce|Lactuca serriola|Lactuca scariola|compass plant (generic term)|compass flower (generic term)
+horse tick|1
+(noun)|horsefly|Hippobosca equina|louse fly (generic term)|hippoboscid (generic term)
+horse trade|1
+(noun)|horse trading|barter (generic term)|swap (generic term)|swop (generic term)|trade (generic term)
+horse trader|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+horse trading|2
+(noun)|horse trade|barter (generic term)|swap (generic term)|swop (generic term)|trade (generic term)
+(noun)|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+horse wrangler|1
+(noun)|wrangler|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+horseback|3
+(noun)|body part (generic term)
+(noun)|hogback|ridge (generic term)|ridgeline (generic term)
+(adv)|ahorse|ahorseback
+horseback rider|1
+(noun)|horseman|equestrian|rider (generic term)
+horseback riding|2
+(noun)|riding|equitation|sport (generic term)|athletics (generic term)
+(noun)|riding|travel (generic term)|traveling (generic term)|travelling (generic term)
+horsebean|2
+(noun)|broad bean|fava bean|bean (generic term)
+(noun)|Jerusalem thorn|Parkinsonia aculeata|shrub (generic term)|bush (generic term)
+horsebox|1
+(noun)|conveyance (generic term)|transport (generic term)
+horsecar|1
+(noun)|streetcar (generic term)|tram (generic term)|tramcar (generic term)|trolley (generic term)|trolley car (generic term)
+horsecloth|1
+(noun)|caparison (generic term)|trapping (generic term)|housing (generic term)
+horsefish|1
+(noun)|moonfish|Atlantic moonfish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+horseflesh|1
+(noun)|horsemeat|meat (generic term)
+horsefly|2
+(noun)|horse tick|Hippobosca equina|louse fly (generic term)|hippoboscid (generic term)
+(noun)|cleg|clegg|horse fly|gadfly (generic term)
+horsefly weed|1
+(noun)|indigo broom|rattle weed|Baptisia tinctoria|wild indigo (generic term)|false indigo (generic term)
+horsehair|2
+(noun)|animal fiber (generic term)|animal fibre (generic term)
+(noun)|horsehair fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+horsehair fabric|1
+(noun)|horsehair|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+horsehair lichen|1
+(noun)|horsetail lichen|lichen (generic term)
+horsehair wig|1
+(noun)|wig (generic term)
+horsehead|1
+(noun)|moonfish|Atlantic moonfish|horsefish|horse-head|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+horsehide|1
+(noun)|leather (generic term)
+horselaugh|1
+(noun)|hee-haw|ha-ha|haw-haw|laugh (generic term)|laughter (generic term)
+horseleech|1
+(noun)|leech (generic term)|bloodsucker (generic term)|hirudinean (generic term)
+horseless carriage|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+horselike|1
+(adj)|horse-like|animal (similar term)
+horseman|2
+(noun)|equestrian|horseback rider|rider (generic term)
+(noun)|horse fancier|animal fancier (generic term)
+horsemanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+horsemeat|1
+(noun)|horseflesh|meat (generic term)
+horsemint|3
+(noun)|lemon mint|Monarda citriodora|monarda (generic term)|wild bergamot (generic term)
+(noun)|Monarda punctata|monarda (generic term)|wild bergamot (generic term)
+(noun)|Mentha longifolia|mint (generic term)
+horseplay|1
+(noun)|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+horsepond|1
+(noun)|pond (generic term)|pool (generic term)
+horsepower|1
+(noun)|HP|H.P.|power unit (generic term)
+horsepower-hour|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+horseradish|3
+(noun)|horseradish root|root (generic term)
+(noun)|horse radish|red cole|Armoracia rusticana|herb (generic term)|herbaceous plant (generic term)
+(noun)|condiment (generic term)
+horseradish peroxidase|1
+(noun)|peroxidase (generic term)
+horseradish root|1
+(noun)|horseradish|root (generic term)
+horseradish sauce|1
+(noun)|sauce Albert|sauce (generic term)
+horseshit|1
+(noun)|bullshit|bull|Irish bull|shit|crap|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+horseshoe|3
+(noun)|game equipment (generic term)
+(noun)|shoe|plate (generic term)|scale (generic term)|shell (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+horseshoe arch|1
+(noun)|Moorish arch|round arch (generic term)
+horseshoe bat|1
+(noun)|leafnose bat (generic term)|leaf-nosed bat (generic term)
+horseshoe crab|1
+(noun)|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod (generic term)
+horseshoe falls|1
+(noun)|Canadian Falls|Horseshoe Falls|waterfall (generic term)|falls (generic term)
+horseshoe vetch|1
+(noun)|Hippocrepis comosa|subshrub (generic term)|suffrutex (generic term)
+horseshoe whipsnake|1
+(noun)|Coluber hippocrepis|racer (generic term)
+horseshoer|1
+(noun)|farrier|blacksmith (generic term)
+horseshoes|1
+(noun)|quoits|outdoor game (generic term)
+horseshow|1
+(noun)|show (generic term)
+horsetail|1
+(noun)|fern ally (generic term)
+horsetail family|1
+(noun)|Equisetaceae|family Equisetaceae|fern family (generic term)
+horsetail lichen|1
+(noun)|horsehair lichen|lichen (generic term)
+horsetail milkweed|1
+(noun)|poison milkweed|Asclepias subverticillata|milkweed (generic term)|silkweed (generic term)
+horseweed|2
+(noun)|horse balm|stoneroot|stone-root|richweed|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+(noun)|Canadian fleabane|fleabane|Conyza canadensis|Erigeron canadensis|weed (generic term)
+horsewhip|2
+(noun)|whip (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+horsewhipping|1
+(noun)|whipping (generic term)|tanning (generic term)|flogging (generic term)|lashing (generic term)|flagellation (generic term)
+horsewoman|1
+(noun)|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+horsey set|1
+(noun)|horsy set|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+horst|1
+(noun)|crust (generic term)|Earth's crust (generic term)
+horsy set|1
+(noun)|horsey set|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+horta|1
+(noun)|Horta|Victor Horta|architect (generic term)|designer (generic term)
+hortative|1
+(adj)|exhortative|exhortatory|hortatory|encouraging (similar term)
+hortatory|1
+(adj)|exhortative|exhortatory|hortative|encouraging (similar term)
+hortensia|2
+(noun)|Hydrangea macrophylla hortensis|hydrangea (generic term)
+(noun)|golden glow|double gold|Rudbeckia laciniata hortensia|cutleaved coneflower (generic term)|Rudbeckia laciniata (generic term)
+horticultural|1
+(adj)|farming|agriculture|husbandry (related term)
+horticulture|1
+(noun)|gardening|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+horticulturist|1
+(noun)|plantsman|expert (generic term)
+horus|1
+(noun)|Horus|Egyptian deity (generic term)
+hosanna|1
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+hose|4
+(noun)|hosiery|footwear (generic term)
+(noun)|garment (generic term)
+(noun)|hosepipe|tube (generic term)|tubing (generic term)
+(verb)|hose down|water (generic term)|irrigate (generic term)
+hose down|1
+(verb)|hose|water (generic term)|irrigate (generic term)
+hosea|2
+(noun)|Hosea|prophet (generic term)
+(noun)|Hosea|Book of Hosea|book (generic term)
+hosepipe|1
+(noun)|hose|tube (generic term)|tubing (generic term)
+hosier|1
+(noun)|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+hosiery|1
+(noun)|hose|footwear (generic term)
+hosni mubarak|1
+(noun)|Mubarak|Hosni Mubarak|statesman (generic term)|solon (generic term)|national leader (generic term)
+hospice|2
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|medical care (generic term)|medical aid (generic term)
+hospitable|3
+(adj)|kind (similar term)|genial (similar term)|inhospitable (antonym)
+(adj)|welcoming (similar term)|friendly (related term)|inhospitable (antonym)
+(adj)|receptive (similar term)|open (similar term)
+hospitableness|1
+(noun)|friendliness (generic term)|inhospitableness (antonym)
+hospitably|1
+(adv)|inhospitably (antonym)
+hospital|2
+(noun)|infirmary|medical building (generic term)|health facility (generic term)|healthcare facility (generic term)
+(noun)|medical institution (generic term)
+hospital attendant|1
+(noun)|orderly|attendant (generic term)|attender (generic term)|tender (generic term)
+hospital bed|1
+(noun)|single bed (generic term)
+hospital care|1
+(noun)|hospitalization|hospitalisation|medical care (generic term)|medical aid (generic term)
+hospital chaplain|1
+(noun)|chaplain (generic term)
+hospital occupancy|1
+(noun)|occupancy rate (generic term)
+hospital room|1
+(noun)|room (generic term)
+hospital ship|1
+(noun)|ship (generic term)
+hospital train|1
+(noun)|train (generic term)|railroad train (generic term)
+hospital ward|1
+(noun)|ward|block (generic term)
+hospitalisation|1
+(noun)|hospitalization|hospital care|medical care (generic term)|medical aid (generic term)
+hospitalise|1
+(verb)|hospitalize|commit (generic term)|institutionalize (generic term)|institutionalise (generic term)|send (generic term)|charge (generic term)
+hospitality|1
+(noun)|cordial reception|welcome (generic term)|inhospitality (antonym)
+hospitalization|4
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|hospitalization insurance|health insurance (generic term)
+(noun)|hospitalisation|hospital care|medical care (generic term)|medical aid (generic term)
+hospitalization insurance|1
+(noun)|hospitalization|health insurance (generic term)
+hospitalize|1
+(verb)|hospitalise|commit (generic term)|institutionalize (generic term)|institutionalise (generic term)|send (generic term)|charge (generic term)
+host|11
+(noun)|adult (generic term)|grownup (generic term)
+(noun)|horde|legion|multitude (generic term)|throng (generic term)|concourse (generic term)
+(noun)|organism (generic term)|being (generic term)|parasite (antonym)
+(noun)|master of ceremonies|emcee|entertainer (generic term)
+(noun)|legion|army (generic term)|regular army (generic term)|ground forces (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|recipient (generic term)|receiver (generic term)
+(noun)|innkeeper|boniface|patron (generic term)
+(noun)|Host|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|server|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+(verb)|entertain (generic term)
+hosta|1
+(noun)|Hosta|genus Hosta|Funka|genus Funka|liliid monocot genus (generic term)
+hostaceae|1
+(noun)|Hostaceae|family Hostaceae|Funkaceae|family Funkaceae|liliid monocot family (generic term)
+hostage|1
+(noun)|surety|prisoner (generic term)|captive (generic term)
+hostel|2
+(noun)|hostelry|inn|lodge|auberge|hotel (generic term)
+(noun)|youth hostel|student lodging|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+hosteller|2
+(noun)|hotelier|hotelkeeper|hotel manager|hotelman|administrator (generic term)|decision maker (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+hostelry|1
+(noun)|hostel|inn|lodge|auberge|hotel (generic term)
+hostess|3
+(noun)|host (generic term)
+(noun)|host (generic term)|innkeeper (generic term)|boniface (generic term)
+(noun)|stewardess|air hostess|steward (generic term)|flight attendant (generic term)
+hostile|8
+(adj)|aggressive (similar term)|belligerent (similar term)|antagonistic (similar term)|antipathetic (similar term)|antipathetical (similar term)|at loggerheads (similar term)|bitter (similar term)|dirty (similar term)|head-on (similar term)|ill (similar term)|opponent (similar term)|opposing (similar term)|unfriendly (similar term)|inimical (similar term)|aggressive (related term)|hateful (related term)|offensive (related term)|unfriendly (related term)|unpeaceful (related term)|violent (related term)|amicable (antonym)
+(adj)|friendly (antonym)
+(adj)|unfriendly (similar term)
+(adj)|irreconcilable (similar term)|unreconcilable (similar term)
+(adj)|uncongenial|unfriendly|inhospitable (similar term)
+(adj)|unfavorable (similar term)|unfavourable (similar term)
+(adj)|aggressive (similar term)
+(noun)|military personnel (generic term)|soldiery (generic term)|troops (generic term)|friendly (antonym)
+hostile expedition|1
+(noun)|expedition|military expedition|campaign (generic term)|military campaign (generic term)
+hostile fire|1
+(noun)|fire (generic term)|firing (generic term)
+hostile takeover|1
+(noun)|takeover (generic term)
+hostile witness|1
+(noun)|adverse witness|witness (generic term)
+hostilely|1
+(adv)|belligerently|with hostility
+hostilities|1
+(noun)|belligerency|combat (generic term)|armed combat (generic term)
+hostility|4
+(noun)|ill will|unfriendliness (generic term)
+(noun)|enmity|antagonism|state (generic term)
+(noun)|enmity|ill will|hate (generic term)|hatred (generic term)
+(noun)|aggression|action (generic term)
+hostler|1
+(noun)|stableman|stableboy|groom|ostler|hired hand (generic term)|hand (generic term)|hired man (generic term)
+hot|21
+(adj)|baking (similar term)|baking hot (similar term)|blistering (similar term)|blistery (similar term)|burning (similar term)|calefacient (similar term)|warming (similar term)|calefactory (similar term)|calefactive (similar term)|calorifacient (similar term)|calorific (similar term)|fervent (similar term)|fervid (similar term)|fiery (similar term)|igneous (similar term)|heatable (similar term)|heated (similar term)|heated up (similar term)|het (similar term)|het up (similar term)|hottish (similar term)|overheated (similar term)|red-hot (similar term)|scorching (similar term)|sizzling (similar term)|sultry (similar term)|stifling (similar term)|sulfurous (similar term)|sulphurous (similar term)|sweltering (similar term)|sweltry (similar term)|thermal (similar term)|torrid (similar term)|tropical (similar term)|tropic (similar term)|white (similar term)|white-hot (similar term)|warm (related term)|cold (antonym)
+(adj)|raging|violent (similar term)
+(adj)|fiery (similar term)|flaming (similar term)|heated (similar term)|red-hot (similar term)|sizzling (similar term)|sensual (similar term)|sultry (similar term)|torrid (similar term)|white-hot (similar term)|passionate (related term)|cold (antonym)
+(adj)|warm (similar term)
+(adj)|sexy (similar term)
+(adj)|illegal (similar term)
+(adj)|blistering|red-hot|fast (similar term)
+(adj)|wanted (similar term)
+(adj)|tasty (similar term)
+(adj)|skilled (similar term)
+(adj)|popular (similar term)
+(adj)|unpleasant (similar term)
+(adj)|red-hot|new (similar term)
+(adj)|lucky (similar term)
+(adj)|good (similar term)
+(adj)|fresh (similar term)
+(adj)|eager (similar term)
+(adj)|near (similar term)|close (similar term)|nigh (similar term)
+(adj)|radioactive (similar term)
+(adj)|live|charged (similar term)
+(adj)|active (similar term)
+hot-air balloon|1
+(noun)|balloon (generic term)
+hot-blooded|1
+(adj)|emotional (similar term)
+hot-dog|1
+(verb)|ski (generic term)
+hot-fudge sauce|1
+(noun)|fudge sauce|chocolate sauce (generic term)|chocolate syrup (generic term)
+hot-rock penstemon|1
+(noun)|Penstemon deustus|wildflower (generic term)|wild flower (generic term)
+hot-rod|1
+(noun)|hot rod|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+hot-tempered|1
+(adj)|choleric|irascible|hotheaded|quick-tempered|short-tempered|ill-natured (similar term)
+hot-water bag|1
+(noun)|hot-water bottle|receptacle (generic term)
+hot-water bottle|1
+(noun)|hot-water bag|receptacle (generic term)
+hot-water heater|1
+(noun)|water heater|hot-water tank|heater (generic term)|warmer (generic term)|tank (generic term)|storage tank (generic term)
+hot-water tank|1
+(noun)|water heater|hot-water heater|heater (generic term)|warmer (generic term)|tank (generic term)|storage tank (generic term)
+hot-wire|1
+(verb)|start (generic term)|start up (generic term)
+hot-work|1
+(verb)|work (generic term)|work on (generic term)|process (generic term)
+hot-work steel|1
+(noun)|high-speed steel|tool steel (generic term)
+hot air|2
+(noun)|air (generic term)
+(noun)|palaver|empty words|empty talk|rhetoric|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+hot and bothered|1
+(adj)|flustered|perturbed|rattled|discomposed (similar term)
+hot cake|1
+(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|cake (generic term)
+hot cereal|1
+(noun)|cereal (generic term)
+hot chocolate|1
+(noun)|cocoa|chocolate|drinking chocolate|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+hot cross bun|1
+(noun)|cross bun|sweet roll (generic term)|coffee roll (generic term)
+hot dog|3
+(noun)|hotdog|exhibitionist (generic term)|show-off (generic term)
+(noun)|hotdog|red hot|sandwich (generic term)
+(noun)|frank|frankfurter|hotdog|dog|wiener|wienerwurst|weenie|sausage (generic term)
+hot flash|1
+(noun)|flush|symptom (generic term)
+hot issue|1
+(noun)|hot stock|stock (generic term)
+hot jazz|1
+(noun)|jazz (generic term)
+hot line|1
+(noun)|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+hot pad|2
+(noun)|table mat|pad (generic term)
+(noun)|heating pad|heater (generic term)|warmer (generic term)
+hot pants|2
+(noun)|horniness|hotness|sexual arousal (generic term)
+(noun)|short pants (generic term)|shorts (generic term)|trunks (generic term)
+hot pepper|2
+(noun)|tabasco pepper|tabasco plant|Capsicum frutescens|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|pepper (generic term)
+hot plate|1
+(noun)|hotplate|kitchen appliance (generic term)
+hot pot|1
+(noun)|hotpot|stew (generic term)
+hot potato|1
+(noun)|situation (generic term)
+hot rod|1
+(noun)|hot-rod|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+hot sauce|1
+(noun)|sauce (generic term)
+hot seat|2
+(noun)|electric chair|chair|death chair|instrument of execution (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+hot spell|1
+(noun)|while (generic term)|piece (generic term)|spell (generic term)|patch (generic term)
+hot spot|3
+(noun)|hotspot|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|hotspot|point (generic term)
+(noun)|hotspot|spot (generic term)
+hot spring|1
+(noun)|thermal spring|spring (generic term)|fountain (generic term)|outflow (generic term)|outpouring (generic term)|natural spring (generic term)
+hot springs|1
+(noun)|Hot Springs|town (generic term)
+hot springs national park|1
+(noun)|Hot Springs National Park|national park (generic term)
+hot stock|1
+(noun)|hot issue|stock (generic term)
+hot stuff|2
+(noun)|voluptuousness|quality (generic term)
+(noun)|popularity (generic term)
+hot stuffed tomato|1
+(noun)|stuffed tomato|dish (generic term)
+hot toddy|1
+(noun)|toddy|mixed drink (generic term)
+hot tub|1
+(noun)|bathtub (generic term)|bathing tub (generic term)|bath (generic term)|tub (generic term)
+hot under the collar|1
+(adj)|angry (similar term)
+hot up|3
+(verb)|heat|heat up|change state (generic term)|turn (generic term)|cool (antonym)
+(verb)|heat up|screw up|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|soup up|hop up|modify (generic term)
+hot war|1
+(noun)|war (generic term)|warfare (generic term)|cold war (antonym)
+hot water|1
+(noun)|predicament (generic term)|quandary (generic term)|plight (generic term)
+hot water plant|1
+(noun)|achimenes|flower (generic term)
+hot weather|1
+(noun)|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+hotbed|2
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|bed (generic term)
+hotbox|1
+(noun)|journal bearing (generic term)
+hotcake|1
+(noun)|pancake|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hot cake|cake (generic term)
+hotchpotch|2
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|stew (generic term)
+hotdog|3
+(noun)|hot dog|exhibitionist (generic term)|show-off (generic term)
+(noun)|hot dog|red hot|sandwich (generic term)
+(noun)|frank|frankfurter|hot dog|dog|wiener|wienerwurst|weenie|sausage (generic term)
+hotdog bun|1
+(noun)|frankfurter bun|bun (generic term)|roll (generic term)
+hotei|1
+(noun)|Hotei|Japanese deity (generic term)
+hotei-chiku|1
+(noun)|fishpole bamboo|gosan-chiku|Phyllostachys aurea|bamboo (generic term)
+hotel|1
+(noun)|building (generic term)|edifice (generic term)
+hotel-casino|2
+(noun)|casino-hotel|place of business (generic term)|business establishment (generic term)
+(noun)|casino-hotel|building (generic term)|edifice (generic term)
+hotel bill|1
+(noun)|bill (generic term)|account (generic term)|invoice (generic term)
+hotel clerk|1
+(noun)|desk clerk|hotel desk clerk|clerk (generic term)
+hotel desk clerk|1
+(noun)|desk clerk|hotel clerk|clerk (generic term)
+hotel detective|1
+(noun)|house detective|house dick|private detective (generic term)|PI (generic term)|private eye (generic term)|private investigator (generic term)|operative (generic term)|shamus (generic term)|sherlock (generic term)
+hotel manager|1
+(noun)|hotelier|hotelkeeper|hotelman|hosteller|administrator (generic term)|decision maker (generic term)
+hotel occupancy|1
+(noun)|occupancy rate (generic term)
+hotel plan|1
+(noun)|meal plan|design (generic term)|plan (generic term)
+hotel room|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+hotelier|1
+(noun)|hotelkeeper|hotel manager|hotelman|hosteller|administrator (generic term)|decision maker (generic term)
+hotelkeeper|1
+(noun)|hotelier|hotel manager|hotelman|hosteller|administrator (generic term)|decision maker (generic term)
+hotelman|1
+(noun)|hotelier|hotelkeeper|hotel manager|hosteller|administrator (generic term)|decision maker (generic term)
+hotfoot|2
+(noun)|practical joke (generic term)
+(verb)|rush|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+hoth|1
+(noun)|Hoth|Hothr|Hoder|Hodr|Hodur|Norse deity (generic term)
+hothead|2
+(noun)|fire-eater|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+(noun)|daredevil|madcap|swashbuckler|lunatic|harum-scarum|adventurer (generic term)|venturer (generic term)
+hotheaded|2
+(adj)|choleric|irascible|hot-tempered|quick-tempered|short-tempered|ill-natured (similar term)
+(adj)|impulsive|impetuous|madcap|tearaway|brainish|incautious (similar term)
+hothouse|1
+(noun)|conservatory|indoor garden|greenhouse (generic term)|nursery (generic term)|glasshouse (generic term)
+hothr|1
+(noun)|Hoth|Hothr|Hoder|Hodr|Hodur|Norse deity (generic term)
+hotly|1
+(adv)|heatedly
+hotness|3
+(noun)|heat|high temperature|temperature (generic term)|coldness (antonym)
+(noun)|horniness|hot pants|sexual arousal (generic term)
+(noun)|pepperiness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+hotplate|1
+(noun)|hot plate|kitchen appliance (generic term)
+hotpot|1
+(noun)|hot pot|stew (generic term)
+hotshot|1
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+hotspot|3
+(noun)|hot spot|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|hot spot|point (generic term)
+(noun)|hot spot|spot (generic term)
+hotspur|2
+(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier (generic term)
+(noun)|adventurer (generic term)|venturer (generic term)
+hottentot|1
+(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan (generic term)|Khoisan language (generic term)
+hottentot's bread|1
+(noun)|Hottentot bread|Hottentot's bread|root (generic term)
+hottentot's bread vine|1
+(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine (generic term)
+hottentot's fig|1
+(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent (generic term)
+hottentot bread|1
+(noun)|Hottentot bread|Hottentot's bread|root (generic term)
+hottentot bread vine|1
+(noun)|elephant's-foot|tortoise plant|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine (generic term)
+hottentot fig|1
+(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent (generic term)
+hottish|1
+(adj)|hot (similar term)
+hottonia|1
+(noun)|Hottonia|genus Hottonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+hottonia inflata|1
+(noun)|water gillyflower|American featherfoil|Hottonia inflata|featherfoil (generic term)|feather-foil (generic term)
+hottonia palustris|1
+(noun)|water violet|Hottonia palustris|featherfoil (generic term)|feather-foil (generic term)
+houdah|1
+(noun)|howdah|seat (generic term)
+houdini|1
+(noun)|Houdini|Harry Houdini|Erik Weisz|escapologist (generic term)|escape expert (generic term)
+houghton|2
+(noun)|Houghton|Henry Oscar Houghton|publisher (generic term)
+(noun)|Houghton|town (generic term)|port of entry (generic term)|point of entry (generic term)
+houhere|1
+(noun)|lacebark|ribbonwood|Hoheria populnea|tree (generic term)
+hoummos|1
+(noun)|hummus|humus|hommos|humous|spread (generic term)|paste (generic term)
+hound|3
+(noun)|hound dog|hunting dog (generic term)
+(noun)|cad|bounder|blackguard|dog|heel|villain (generic term)|scoundrel (generic term)
+(verb)|hunt|trace|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+hound's-tongue|2
+(noun)|Cynoglossum virginaticum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Cynoglossum officinale|herb (generic term)|herbaceous plant (generic term)
+hound's-tooth check|1
+(noun)|houndstooth check|dogstooth check|dogs-tooth check|dog's-tooth check|check (generic term)
+hound dog|1
+(noun)|hound|hunting dog (generic term)
+houndstooth check|1
+(noun)|hound's-tooth check|dogstooth check|dogs-tooth check|dog's-tooth check|check (generic term)
+hour|4
+(noun)|hr|60 minutes|time unit (generic term)|unit of time (generic term)
+(noun)|time of day|clock time (generic term)|time (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|minute|distance (generic term)
+hour angle|2
+(noun)|distance (generic term)
+(noun)|HA|angular distance (generic term)
+hour circle|1
+(noun)|great circle (generic term)
+hour hand|1
+(noun)|little hand|hand (generic term)
+hourglass|1
+(noun)|sandglass (generic term)
+hourglass-shaped|1
+(adj)|formed (similar term)
+houri|2
+(noun)|nymph|woman (generic term)|adult female (generic term)
+(noun)|mythical being (generic term)
+hourlong|1
+(adj)|long (similar term)
+hourly|2
+(adj)|time unit|unit of time (related term)
+(adv)|by the hour
+hours|2
+(noun)|work time (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+housatonic|1
+(noun)|Housatonic|Housatonic River|river (generic term)
+housatonic river|1
+(noun)|Housatonic|Housatonic River|river (generic term)
+house|14
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)|building (generic term)|edifice (generic term)
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|building (generic term)|edifice (generic term)
+(noun)|family|household|home|menage|unit (generic term)|social unit (generic term)
+(noun)|theater|theatre|building (generic term)|edifice (generic term)
+(noun)|firm|business firm|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+(noun)|community (generic term)
+(noun)|audience (generic term)
+(noun)|play (generic term)|child's play (generic term)
+(noun)|sign of the zodiac|star sign|sign|mansion|planetary house|region (generic term)|part (generic term)
+(noun)|management (generic term)
+(verb)|accommodate (generic term)|hold (generic term)|admit (generic term)
+(verb)|put up|domiciliate|shelter (generic term)
+house-builder|1
+(noun)|homebuilder|home-builder|housebuilder|builder (generic term)|constructor (generic term)
+house-proud|1
+(adj)|proud (similar term)
+house-raising|1
+(noun)|construction (generic term)|building (generic term)
+house-to-house|1
+(adj)|door-to-door|comprehensive (similar term)
+house-train|1
+(verb)|housebreak|train (generic term)|develop (generic term)|prepare (generic term)|educate (generic term)
+house-trained|1
+(adj)|housebroken|trained (similar term)
+house agent|1
+(noun)|realtor|real estate broker|real estate agent|estate agent|land agent|agent (generic term)|factor (generic term)|broker (generic term)
+house arrest|1
+(noun)|confinement (generic term)
+house cat|1
+(noun)|domestic cat|Felis domesticus|Felis catus|cat (generic term)|true cat (generic term)
+house centipede|1
+(noun)|Scutigera coleoptrata|centipede (generic term)
+house decorator|1
+(noun)|interior designer|designer|interior decorator|room decorator|decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+house detective|1
+(noun)|hotel detective|house dick|private detective (generic term)|PI (generic term)|private eye (generic term)|private investigator (generic term)|operative (generic term)|shamus (generic term)|sherlock (generic term)
+house dick|1
+(noun)|hotel detective|house detective|private detective (generic term)|PI (generic term)|private eye (generic term)|private investigator (generic term)|operative (generic term)|shamus (generic term)|sherlock (generic term)
+house finch|1
+(noun)|linnet|Carpodacus mexicanus|finch (generic term)
+house fly|1
+(noun)|housefly|Musca domestica|fly (generic term)
+house guest|1
+(noun)|houseguest|guest (generic term)|invitee (generic term)
+house husband|1
+(noun)|househusband|husband (generic term)|hubby (generic term)|married man (generic term)
+house martin|1
+(noun)|Delichon urbica|martin (generic term)
+house mouse|1
+(noun)|Mus musculus|mouse (generic term)
+house of burgesses|1
+(noun)|House of Burgesses|house (generic term)
+house of cards|2
+(noun)|bubble|scheme (generic term)|strategy (generic term)
+(noun)|cardhouse|card-house|cardcastle|structure (generic term)|construction (generic term)
+house of commons|1
+(noun)|House of Commons|British House of Commons|house (generic term)
+house of correction|1
+(noun)|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+house of detention|1
+(noun)|detention home|detention house|detention camp|correctional institution (generic term)
+house of god|1
+(noun)|place of worship|house of prayer|house of God|house of worship|building (generic term)|edifice (generic term)
+house of hanover|1
+(noun)|Hanover|House of Hanover|Hanoverian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+house of ill repute|1
+(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+house of islam|1
+(noun)|Dar al-Islam|House of Islam|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+house of lancaster|1
+(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+house of lords|1
+(noun)|House of Lords|British House of Lords|house (generic term)
+house of prayer|1
+(noun)|place of worship|house of God|house of worship|building (generic term)|edifice (generic term)
+house of prostitution|1
+(noun)|whorehouse|brothel|bordello|bagnio|house of ill repute|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+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 (generic term)
+house of tudor|1
+(noun)|Tudor|House of Tudor|dynasty (generic term)
+house of war|1
+(noun)|Dar al-harb|House of War|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+house of windsor|1
+(noun)|Windsor|House of Windsor|dynasty (generic term)
+house of worship|1
+(noun)|place of worship|house of prayer|house of God|building (generic term)|edifice (generic term)
+house of york|1
+(noun)|York|House of York|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+house organ|1
+(noun)|organ (generic term)
+house paint|1
+(noun)|housepaint|paint (generic term)
+house painter|1
+(noun)|painter (generic term)
+house painting|1
+(noun)|painting|trade (generic term)|craft (generic term)
+house party|1
+(noun)|party (generic term)
+house physician|1
+(noun)|resident|resident physician|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+house servant|1
+(noun)|domestic|domestic help|servant (generic term)|retainer (generic term)
+house sitter|1
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+house snake|1
+(noun)|milk snake|milk adder|checkered adder|Lampropeltis triangulum|king snake (generic term)|kingsnake (generic term)
+house sparrow|1
+(noun)|English sparrow|Passer domesticus|sparrow (generic term)|true sparrow (generic term)
+house trailer|1
+(noun)|trailer|wheeled vehicle (generic term)
+house wren|1
+(noun)|Troglodytes aedon|wren (generic term)|jenny wren (generic term)
+houseboat|1
+(noun)|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+housebound|1
+(adj)|homebound|shut-in|confined (similar term)
+housebreak|1
+(verb)|house-train|train (generic term)|develop (generic term)|prepare (generic term)|educate (generic term)
+housebreaker|2
+(noun)|cat burglar|burglar (generic term)
+(noun)|housewrecker|wrecker (generic term)
+housebreaking|1
+(noun)|break-in|breaking and entering|burglary (generic term)
+housebroken|1
+(adj)|house-trained|trained (similar term)
+housebuilder|1
+(noun)|homebuilder|home-builder|house-builder|builder (generic term)|constructor (generic term)
+houseclean|1
+(verb)|clean house|clean|tidy (generic term)|tidy up (generic term)|clean up (generic term)|neaten (generic term)|straighten (generic term)|straighten out (generic term)|square away (generic term)
+housecleaning|2
+(noun)|reform (generic term)
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+housecoat|1
+(noun)|negligee|neglige|peignoir|wrapper|woman's clothing (generic term)
+housecraft|1
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+housedog|1
+(noun)|watchdog (generic term)|guard dog (generic term)
+housefather|1
+(noun)|man (generic term)|adult male (generic term)
+housefly|1
+(noun)|house fly|Musca domestica|fly (generic term)
+houseful|1
+(noun)|containerful (generic term)
+houseguest|1
+(noun)|house guest|guest (generic term)|invitee (generic term)
+household|1
+(noun)|family|house|home|menage|unit (generic term)|social unit (generic term)
+household appliance|1
+(noun)|home appliance|appliance (generic term)
+household arts|1
+(noun)|home economics|home ec|domestic science|social science (generic term)
+household linen|1
+(noun)|white goods|drygoods (generic term)|soft goods (generic term)
+householder|1
+(noun)|homeowner|owner (generic term)|possessor (generic term)
+househusband|1
+(noun)|house husband|husband (generic term)|hubby (generic term)|married man (generic term)
+housekeep|1
+(verb)|keep (generic term)|maintain (generic term)|hold (generic term)
+housekeeper|1
+(noun)|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+housekeeping|1
+(noun)|housework|work (generic term)
+houselights|1
+(noun)|light (generic term)|light source (generic term)
+housemaid|1
+(noun)|maid|maidservant|amah|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+housemaid's knee|1
+(noun)|bursitis (generic term)
+houseman|1
+(noun)|intern|interne|medical intern|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+housemaster|1
+(noun)|headmaster (generic term)|schoolmaster (generic term)|master (generic term)
+housemate|1
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+housemother|1
+(noun)|chaperon (generic term)|chaperone (generic term)
+housepaint|1
+(noun)|house paint|paint (generic term)
+houseplant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+houseroom|1
+(noun)|room (generic term)|way (generic term)|elbow room (generic term)
+houses of parliament|1
+(noun)|Houses of Parliament|building (generic term)|edifice (generic term)
+housetop|1
+(noun)|roof (generic term)
+housewarming|1
+(noun)|party (generic term)
+housewife|1
+(noun)|homemaker|lady of the house|woman of the house|wife (generic term)|married woman (generic term)
+housewifely|1
+(adj)|domestic (similar term)
+housewifery|1
+(noun)|work (generic term)
+housework|1
+(noun)|housekeeping|work (generic term)
+housewrecker|1
+(noun)|housebreaker|wrecker (generic term)
+housing|3
+(noun)|lodging|living accommodations|structure (generic term)|construction (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|caparison|trapping|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+housing and urban development|1
+(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department (generic term)
+housing commissioner|1
+(noun)|commissioner (generic term)
+housing development|1
+(noun)|development (generic term)
+housing estate|1
+(noun)|development (generic term)
+housing industry|1
+(noun)|construction industry|industry (generic term)
+housing project|1
+(noun)|public housing|housing development (generic term)
+housing start|1
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)
+housman|1
+(noun)|Housman|A. E. Housman|Alfred Edward Housman|poet (generic term)
+houston|2
+(noun)|Houston|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Houston|Sam Houston|Samuel Houston|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|general (generic term)|full general (generic term)
+houttuynia|1
+(noun)|Houttuynia|genus Houttuynia|dicot genus (generic term)|magnoliopsid genus (generic term)
+houyhnhnm|1
+(noun)|Houyhnhnm|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+houyhnhnms|1
+(noun)|Houyhnhnms|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+hovea|1
+(noun)|purple pea|shrub (generic term)|bush (generic term)
+hovel|1
+(noun)|hut|hutch|shack|shanty|shelter (generic term)
+hover|5
+(verb)|vibrate|vacillate|oscillate|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|linger|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|fly (generic term)|wing (generic term)
+(verb)|levitate
+(verb)|brood|loom|bulk large|hang (generic term)
+hovercraft|1
+(noun)|ground-effect machine|craft (generic term)
+how-d'ye-do|1
+(noun)|how-do-you-do|situation (generic term)
+how-do-you-do|2
+(noun)|how-d'ye-do|situation (generic term)
+(noun)|hello|hullo|hi|howdy|greeting (generic term)|salutation (generic term)
+howard|2
+(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Howard|Catherine Howard|queen (generic term)
+howard carter|1
+(noun)|Carter|Howard Carter|Egyptologist (generic term)
+howard florey|1
+(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician (generic term)|pathologist (generic term)
+howard hughes|1
+(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist (generic term)|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+howard lindsay|1
+(noun)|Lindsay|Howard Lindsay|dramatist (generic term)|playwright (generic term)
+howard pyle|1
+(noun)|Pyle|Howard Pyle|illustrator (generic term)|writer (generic term)|author (generic term)
+howard robard hughes|1
+(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist (generic term)|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+howdah|1
+(noun)|houdah|seat (generic term)
+howdy|1
+(noun)|hello|hullo|hi|how-do-you-do|greeting (generic term)|salutation (generic term)
+howe|4
+(noun)|Howe|Irving Howe|editor (generic term)|editor in chief (generic term)
+(noun)|Howe|Gordie Howe|Gordon Howe|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|Howe|Julia Ward Howe|suffragist (generic term)
+(noun)|Howe|Elias Howe|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+howells|1
+(noun)|Howells|William Dean Howells|writer (generic term)|author (generic term)
+however|1
+(adv)|nevertheless|withal|still|yet|all the same|even so|nonetheless|notwithstanding
+howitzer|1
+(noun)|mortar|trench mortar|high-angle gun (generic term)
+howl|7
+(noun)|howling|ululation|utterance (generic term)|vocalization (generic term)
+(noun)|cry (generic term)
+(noun)|noise (generic term)
+(verb)|ululate|wail|roar|yawl|yaup|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|wrawl|yammer|yowl|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|roar|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|roar|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+howler|3
+(noun)|belly laugh|sidesplitter|thigh-slapper|scream|wow|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+(noun)|howler monkey|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+howler monkey|1
+(noun)|howler|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+howling|2
+(adj)|fantastic|grand|marvelous|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(noun)|howl|ululation|utterance (generic term)|vocalization (generic term)
+hoy|1
+(noun)|barge|flatboat|lighter|boat (generic term)
+hoya|1
+(noun)|vine (generic term)
+hoya carnosa|1
+(noun)|wax plant|Hoya carnosa|hoya (generic term)
+hoyden|1
+(noun)|tomboy|romp|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+hoydenish|1
+(adj)|tomboyish|unwomanly (similar term)
+hoydenism|1
+(noun)|tomboyishness|masculinity (generic term)
+hoyle|2
+(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist (generic term)
+(noun)|Hoyle|Edmond Hoyle|writer (generic term)|author (generic term)|card player (generic term)
+hp|1
+(noun)|horsepower|HP|H.P.|power unit (generic term)
+hq|1
+(noun)|headquarters|HQ|military headquarters|military installation (generic term)
+hr|1
+(noun)|hour|60 minutes|time unit (generic term)|unit of time (generic term)
+hrolf|1
+(noun)|Rollo|Rolf|Hrolf|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+hrt|1
+(noun)|hormone replacement therapy|hormone-replacement therapy|HRT|therapy (generic term)
+hrvatska|1
+(noun)|Croatia|Republic of Croatia|Hrvatska|European country (generic term)|European nation (generic term)
+hryvnia|1
+(noun)|Ukranian monetary unit (generic term)
+hs|1
+(noun)|hassium|Hs|element 108|atomic number 108|chemical element (generic term)|element (generic term)
+hs1|1
+(noun)|herpes simplex 1|HS1|HSV-1|HSV-I|herpes simplex (generic term)|herpes simplex virus (generic term)
+hs2|1
+(noun)|herpes simplex 2|HS2|HSV-2|HSV-II|herpes simplex (generic term)|herpes simplex virus (generic term)
+hsian|1
+(noun)|Xian|Sian|Singan|Changan|Hsian|city (generic term)|metropolis (generic term)|urban center (generic term)
+hsuan chiao|1
+(noun)|Taoism|Hsuan Chiao|religion (generic term)|faith (generic term)|religious belief (generic term)
+hsv-1|1
+(noun)|herpes simplex 1|HS1|HSV-1|HSV-I|herpes simplex (generic term)|herpes simplex virus (generic term)
+hsv-2|1
+(noun)|herpes simplex 2|HS2|HSV-2|HSV-II|herpes simplex (generic term)|herpes simplex virus (generic term)
+hsv-i|1
+(noun)|herpes simplex 1|HS1|HSV-1|HSV-I|herpes simplex (generic term)|herpes simplex virus (generic term)
+hsv-ii|1
+(noun)|herpes simplex 2|HS2|HSV-2|HSV-II|herpes simplex (generic term)|herpes simplex virus (generic term)
+htlv-1|1
+(noun)|human T-cell leukemia virus-1|HTLV-1|retrovirus (generic term)
+html|1
+(noun)|hypertext markup language|hypertext mark-up language|HTML|markup language (generic term)
+http|1
+(noun)|hypertext transfer protocol|HTTP|protocol (generic term)|communications protocol (generic term)
+hua|1
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+huainaputina|1
+(noun)|Huainaputina|volcano (generic term)
+hualapai|2
+(noun)|Walapai|Hualapai|Hualpai|Hokan (generic term)|Hoka (generic term)
+(noun)|Walapai|Hualapai|Hualpai|Yuman (generic term)
+hualpai|2
+(noun)|Walapai|Hualapai|Hualpai|Hokan (generic term)|Hoka (generic term)
+(noun)|Walapai|Hualapai|Hualpai|Yuman (generic term)
+huamachil|1
+(noun)|manila tamarind|camachile|wild tamarind|Pithecellobium dulce|tree (generic term)
+huambo|1
+(noun)|Huambo|Nova Lisboa|city (generic term)|metropolis (generic term)|urban center (generic term)
+huang hai|1
+(noun)|Yellow Sea|Huang Hai|sea (generic term)
+huang he|1
+(noun)|Huang He|Hwang Ho|Yellow River|river (generic term)
+huarache|1
+(noun)|huaraches|sandal (generic term)
+huaraches|1
+(noun)|huarache|sandal (generic term)
+huascaran|1
+(noun)|Huascaran|mountain peak (generic term)
+huayna capac|1
+(noun)|Huayna Capac|Inca (generic term)
+hub|2
+(noun)|part (generic term)|portion (generic term)
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+hub-and-spoke|1
+(noun)|hub-and-spoke system|air transportation system (generic term)
+hub-and-spoke system|1
+(noun)|hub-and-spoke|air transportation system (generic term)
+hub of the universe|1
+(noun)|Boston|Hub of the Universe|Bean Town|Beantown|capital of Massachusetts|state capital (generic term)
+hubbard|2
+(noun)|Hubbard|L. Ron Hubbard|writer (generic term)|author (generic term)
+(noun)|Hubbard|Mount Hubbard|mountain peak (generic term)
+hubbard squash|2
+(noun)|Cucurbita maxima|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+hubble|1
+(noun)|Hubble|Edwin Hubble|Edwin Powell Hubble|astrophysicist (generic term)
+hubble's constant|1
+(noun)|Hubble's constant|Hubble constant|constant (generic term)
+hubble's law|1
+(noun)|Hubble's law|Hubble law|law (generic term)|law of nature (generic term)
+hubble-bubble|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+hubble constant|1
+(noun)|Hubble's constant|Hubble constant|constant (generic term)
+hubble law|1
+(noun)|Hubble's law|Hubble law|law (generic term)|law of nature (generic term)
+hubbly-bubbly|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|pipe (generic term)|tobacco pipe (generic term)
+hubbub|1
+(noun)|uproar|brouhaha|katzenjammer|noise (generic term)
+hubby|1
+(noun)|husband|married man|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)|wife (antonym)
+hubcap|1
+(noun)|cap (generic term)
+hubel|1
+(noun)|Hubel|David Hubel|neuroscientist (generic term)
+hubris|1
+(noun)|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+huck|1
+(noun)|huckaback|toweling (generic term)|towelling (generic term)
+huck finn|1
+(noun)|Huckleberry Finn|Huck Finn|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+huckaback|1
+(noun)|huck|toweling (generic term)|towelling (generic term)
+huckleberry|3
+(noun)|blueberry (generic term)|blueberry bush (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|berry (generic term)
+huckleberry finn|1
+(noun)|Huckleberry Finn|Huck Finn|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+huckleberry oak|1
+(noun)|Quercus vaccinifolia|shrub (generic term)|bush (generic term)
+huckster|4
+(noun)|cheap-jack|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+(verb)|peddle|monger|hawk|vend|pitch|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|haggle|higgle|chaffer|dicker (generic term)|bargain (generic term)
+hud|1
+(noun)|Department of Housing and Urban Development|Housing and Urban Development|HUD|executive department (generic term)
+huddie leadbetter|1
+(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)|composer (generic term)
+huddle|4
+(noun)|powwow|conference (generic term)|group discussion (generic term)
+(noun)|crowd (generic term)
+(verb)|huddle together|cluster (generic term)|constellate (generic term)|flock (generic term)|clump (generic term)
+(verb)|cower|crouch (generic term)|stoop (generic term)|bend (generic term)|bow (generic term)
+huddle together|1
+(verb)|huddle|cluster (generic term)|constellate (generic term)|flock (generic term)|clump (generic term)
+huddled|2
+(adj)|crouched|crouching|hunkered|hunkered down|unerect (similar term)
+(adj)|crowded (similar term)
+huddler|2
+(noun)|member (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+hudood|1
+(noun)|hudud|shariah (generic term)|shariah law (generic term)|sharia (generic term)|sharia law (generic term)|Islamic law (generic term)
+hudson|3
+(noun)|Hudson|Hudson River|river (generic term)
+(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist (generic term)|natural scientist (generic term)
+(noun)|Hudson|Henry Hudson|navigator (generic term)
+hudson bay|1
+(noun)|Hudson Bay|sea (generic term)
+hudson bay collared lemming|1
+(noun)|Hudson bay collared lemming|Dicrostonyx hudsonius|pied lemming (generic term)
+hudson hoagland|1
+(noun)|Hoagland|Hudson Hoagland|physiologist (generic term)
+hudson river|1
+(noun)|Hudson|Hudson River|river (generic term)
+hudson river school|1
+(noun)|Hudson River school|romantic realism|artistic movement (generic term)|art movement (generic term)
+hudson seal|1
+(noun)|muskrat (generic term)|muskrat fur (generic term)
+hudsonia|1
+(noun)|Hudsonia|genus Hudsonia|dilleniid dicot genus (generic term)
+hudsonia ericoides|1
+(noun)|false heather|golden heather|Hudsonia ericoides|subshrub (generic term)|suffrutex (generic term)
+hudsonia tomentosa|1
+(noun)|beach heather|poverty grass|Hudsonia tomentosa|subshrub (generic term)|suffrutex (generic term)
+hudsonian godwit|1
+(noun)|Hudsonian godwit|Limosa haemastica|godwit (generic term)
+hudud|1
+(noun)|hudood|shariah (generic term)|shariah law (generic term)|sharia (generic term)|sharia law (generic term)|Islamic law (generic term)
+hue|3
+(noun)|chromaticity|color property (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|imbue|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+hue and cry|1
+(noun)|clamor|clamoring|clamour|clamouring|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+hueless|1
+(adj)|achromatic (similar term)
+huff|3
+(noun)|miff|seeing red|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(verb)|snort|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|puff|chuff|blow (generic term)
+huffiness|1
+(noun)|anger (generic term)|choler (generic term)|ire (generic term)
+huffing|1
+(noun)|puffing|snorting|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+huffish|1
+(adj)|sulky|ill-natured (similar term)
+huffishness|1
+(noun)|sulkiness|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+huffy|2
+(adj)|thin-skinned|feisty|touchy|sensitive (similar term)
+(adj)|mad|sore|angry (similar term)
+hug|3
+(noun)|clinch|squeeze|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(verb)|embrace|bosom|squeeze|clasp (generic term)
+(verb)|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+hug-me-tight|1
+(noun)|jacket (generic term)
+hug drug|1
+(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+huge|1
+(adj)|immense|vast|Brobdingnagian|large (similar term)|big (similar term)
+hugely|1
+(adv)|enormously|tremendously|staggeringly
+hugger|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+hugger-mugger|3
+(adj)|disorderly|higgledy-piggledy|jumbled|topsy-turvy|untidy (similar term)
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hush-hush|secret|surreptitious|undercover|underground|covert (similar term)
+(noun)|mumbo jumbo|confusion (generic term)
+hugger mugger|1
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+hugging|1
+(noun)|caressing|cuddling|fondling|kissing|necking|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+huggins|1
+(noun)|Huggins|Sir William Huggins|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+hugh capet|1
+(noun)|Capet|Hugh Capet|King of France (generic term)
+hugh dowding|1
+(noun)|Dowding|Hugh Dowding|Baron Hugh Caswall Tremenheere Dowding|Dowdy|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+hughes|4
+(noun)|Hughes|Ted Hughes|Edward James Hughes|poet (generic term)
+(noun)|Hughes|Langston Hughes|James Langston Hughes|writer (generic term)|author (generic term)
+(noun)|Hughes|Howard Hughes|Howard Robard Hughes|industrialist (generic term)|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Hughes|Charles Evans Hughes|chief justice (generic term)
+hugo|1
+(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet (generic term)|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+hugo alvar henrik aalto|1
+(noun)|Aalto|Alvar Aalto|Hugo Alvar Henrik Aalto|architect (generic term)|designer (generic term)
+hugo de vries|1
+(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+hugo devries|1
+(noun)|deVries|De Vries|Hugo deVries|Hugo De Vries|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+hugo grotius|1
+(noun)|Grotius|Hugo Grotius|Huig de Groot|jurist (generic term)|legal expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+hugo junkers|1
+(noun)|Junkers|Hugo Junkers|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+hugo von hoffmannsthal|1
+(noun)|Hoffmannsthal|Hugo von Hoffmannsthal|poet (generic term)
+hugo wolf|1
+(noun)|Wolf|Hugo Wolf|composer (generic term)
+hugoesque|1
+(adj)|Hugoesque|poet|novelist|dramatist|playwright (related term)
+hugueninia|1
+(noun)|Hugueninia|genus Hugueninia|dilleniid dicot genus (generic term)
+hugueninia tanacetifolia|1
+(noun)|tansy-leaved rocket|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb (generic term)|herbaceous plant (generic term)
+huguenot|1
+(noun)|Huguenot|Calvinist (generic term)|Genevan (generic term)
+huig de groot|1
+(noun)|Grotius|Hugo Grotius|Huig de Groot|jurist (generic term)|legal expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+huisache|1
+(noun)|cassie|mimosa bush|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+huitre|1
+(noun)|oyster|shellfish (generic term)
+huji|1
+(noun)|Harkat-ul-Jihad-e-Islami|Harakat ul-Jihad-I-Islami|HUJI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+hula|1
+(noun)|hula-hula|Hawaiian dancing|rain dance (generic term)
+hula-hoop|1
+(noun)|plaything (generic term)|toy (generic term)
+hula-hula|1
+(noun)|hula|Hawaiian dancing|rain dance (generic term)
+huldreich zwingli|1
+(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+hulk|3
+(noun)|giant|heavyweight|whale|large person (generic term)
+(noun)|ship (generic term)
+(verb)|loom|tower|predominate|rise (generic term)|lift (generic term)|rear (generic term)
+hulking|1
+(adj)|hulky|large (similar term)|big (similar term)
+hulky|1
+(adj)|hulking|large (similar term)|big (similar term)
+hull|7
+(noun)|husk (generic term)
+(noun)|calyx (generic term)
+(noun)|Hull|Isaac Hull|naval officer (generic term)
+(noun)|Hull|Cordell Hull|diplomat (generic term)|diplomatist (generic term)
+(noun)|Hull|Kingston-upon Hull|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+hullabaloo|1
+(noun)|agitation|excitement|turmoil|upheaval|disturbance (generic term)
+hullo|1
+(noun)|hello|hi|howdy|how-do-you-do|greeting (generic term)|salutation (generic term)
+hulsea|1
+(noun)|Hulsea|genus Hulsea|asterid dicot genus (generic term)
+hulsea algida|1
+(noun)|alpine gold|alpine hulsea|Hulsea algida|wildflower (generic term)|wild flower (generic term)
+hulsea nana|1
+(noun)|dwarf hulsea|Hulsea nana|wildflower (generic term)|wild flower (generic term)
+hum|7
+(noun)|busyness|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|Harkat-ul-Mujahidin|HUM|Harkat ul-Ansar|HUA|Harkat ul-Mujahedeen|Al Faran|Movement of Holy Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|humming|noise (generic term)
+(verb)|sing (generic term)
+(verb)|buzz|seethe|be (generic term)
+(verb)|thrum|sound (generic term)|go (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+human|3
+(adj)|quality (related term)
+(adj)|anthropoid (similar term)|manlike (similar term)|anthropomorphic (similar term)|anthropomorphous (similar term)|humanlike (similar term)|earthborn (similar term)|fallible (similar term)|frail (similar term)|imperfect (similar term)|weak (similar term)|hominal (similar term)|hominian (similar term)|hominid (similar term)|hominine (similar term)|nonhuman (antonym)
+(noun)|homo|man|human being|hominid (generic term)
+human-centered|1
+(adj)|human-centred|humanist|humanistic|humanitarian|humane (similar term)
+human-centred|1
+(adj)|human-centered|humanist|humanistic|humanitarian|humane (similar term)
+human-sized|1
+(adj)|sized (similar term)
+human action|1
+(noun)|act|human activity|event (generic term)
+human activity|1
+(noun)|act|human action|event (generic term)
+human being|1
+(noun)|homo|man|human|hominid (generic term)
+human beings|1
+(noun)|world|human race|humanity|humankind|humans|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+human body|1
+(noun)|physical body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+human botfly|1
+(noun)|Dermatobia hominis|botfly (generic term)
+human chorionic gonadotrophin|1
+(noun)|human chorionic gonadotropin|HCG|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+human chorionic gonadotropin|1
+(noun)|human chorionic gonadotrophin|HCG|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+human death|1
+(noun)|fatality|death (generic term)|decease (generic term)|expiry (generic term)
+human dynamo|1
+(noun)|powerhouse|ball of fire|fireball|actor (generic term)|doer (generic term)|worker (generic term)
+human ecology|1
+(noun)|demography|sociology (generic term)
+human elbow|1
+(noun)|elbow|elbow joint|cubitus|cubital joint|articulatio cubiti|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+human face|1
+(noun)|face|external body part (generic term)
+human foot|1
+(noun)|foot|pes|vertebrate foot (generic term)|pedal extremity (generic term)
+human gamma globulin|1
+(noun)|gamma globulin|plasma protein (generic term)|globulin (generic term)
+human genome project|1
+(noun)|Human Genome Project|scientific research (generic term)|research project (generic term)
+human growth hormone|1
+(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+human head|1
+(noun)|head (generic term)|caput (generic term)
+human immunodeficiency virus|1
+(noun)|HIV|retrovirus (generic term)
+human knee|1
+(noun)|knee|knee joint|articulatio genus|genu|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+human language technology|1
+(noun)|natural language processing|NLP|information science (generic term)|informatics (generic term)|information processing (generic term)|IP (generic term)
+human nature|1
+(noun)|attribute (generic term)
+human palaeontology|1
+(noun)|paleoanthropology|palaeoanthropology|human paleontology|vertebrate paleontology (generic term)
+human paleontology|1
+(noun)|paleoanthropology|palaeoanthropology|human palaeontology|vertebrate paleontology (generic term)
+human papilloma virus|1
+(noun)|papovavirus (generic term)
+human process|1
+(noun)|process (generic term)|physical process (generic term)
+human race|1
+(noun)|world|humanity|humankind|human beings|humans|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+human relationship|1
+(noun)|relationship|relation (generic term)
+human remains pouch|1
+(noun)|body bag|personnel pouch|bag (generic term)
+human reproductive cloning|1
+(noun)|reproductive cloning (generic term)
+human right|1
+(noun)|right (generic term)
+human t-cell leukemia virus-1|1
+(noun)|human T-cell leukemia virus-1|HTLV-1|retrovirus (generic term)
+human waste|1
+(noun)|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+humane|3
+(adj)|humanist|humanistic|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+(adj)|child-centered (similar term)|human-centered (similar term)|human-centred (similar term)|humanist (similar term)|humanistic (similar term)|humanitarian (similar term)|civilized (related term)|civilised (related term)|compassionate (related term)|human (related term)|merciful (related term)|inhumane (antonym)
+(adj)|civilized (similar term)|civilised (similar term)
+humanely|1
+(adv)|inhumanely (antonym)
+humaneness|1
+(noun)|quality (generic term)|inhumaneness (antonym)
+humanisation|1
+(noun)|humanization|improvement (generic term)
+humanise|1
+(verb)|humanize|change (generic term)|alter (generic term)|modify (generic term)|dehumanize (antonym)
+humanism|3
+(noun)|humanitarianism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|secular humanism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|cultural movement (generic term)
+humanist|6
+(adj)|humanistic|cultural movement (related term)
+(adj)|humanistic|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|humanistic|humane|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+(adj)|human-centered|human-centred|humanistic|humanitarian|humane (similar term)
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+humanistic|4
+(adj)|humanist|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|humanist|cultural movement (related term)
+(adj)|humanist|humane|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+(adj)|human-centered|human-centred|humanist|humanitarian|humane (similar term)
+humanistic discipline|1
+(noun)|humanities|liberal arts|arts|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+humanitarian|3
+(adj)|human-centered|human-centred|humanist|humanistic|humane (similar term)
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(noun)|do-gooder|improver|benefactor (generic term)|helper (generic term)
+humanitarianism|1
+(noun)|humanism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+humanities|1
+(noun)|humanistic discipline|liberal arts|arts|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+humanity|3
+(noun)|humaneness (generic term)
+(noun)|humanness|manhood|quality (generic term)
+(noun)|world|human race|humankind|human beings|humans|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+humanization|1
+(noun)|humanisation|improvement (generic term)
+humanize|1
+(verb)|humanise|change (generic term)|alter (generic term)|modify (generic term)|dehumanize (antonym)
+humankind|1
+(noun)|world|human race|humanity|human beings|humans|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+humanlike|1
+(adj)|anthropomorphic|anthropomorphous|human (similar term)
+humanness|1
+(noun)|humanity|manhood|quality (generic term)
+humanoid|1
+(noun)|android|mechanical man|automaton (generic term)|robot (generic term)|golem (generic term)
+humans|1
+(noun)|world|human race|humanity|humankind|human beings|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+humate|1
+(noun)|material (generic term)|stuff (generic term)
+humber|1
+(noun)|Humber|estuary (generic term)
+humber bridge|1
+(noun)|Humber Bridge|suspension bridge (generic term)
+humble|6
+(adj)|low|lowly|modest|small|inferior (similar term)
+(adj)|broken (similar term)|crushed (similar term)|humbled (similar term)|humiliated (similar term)|low (similar term)|meek (similar term)|mild (similar term)|modest (similar term)|modest (related term)|proud (antonym)
+(adj)|menial|lowly|unskilled (similar term)
+(adj)|base|baseborn|lowly|lowborn (similar term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|humiliate|mortify|chagrin|abase|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+humble plant|1
+(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|action plant|Mimosa pudica|mimosa (generic term)
+humblebee|1
+(noun)|bumblebee|bee (generic term)
+humbled|1
+(adj)|broken|crushed|humiliated|low|humble (similar term)
+humbleness|3
+(noun)|unimportance|obscureness|lowliness|obscurity (generic term)
+(noun)|humility|feeling (generic term)|pride (antonym)
+(noun)|humility|trait (generic term)|pride (antonym)
+humbling|1
+(adj)|demeaning|humiliating|mortifying|undignified (similar term)
+humbly|2
+(adv)|meekly
+(adv)|meanly
+humboldt|2
+(noun)|Humboldt|Baron Wilhelm von Humboldt|Baron Karl Wilhelm von Humboldt|philologist (generic term)|philologue (generic term)
+(noun)|Humboldt|Baron Alexander von Humboldt|Baron Friedrich Heinrich Alexander von Humboldt|naturalist (generic term)|natural scientist (generic term)
+humboldt current|1
+(noun)|Peruvian current|Humboldt current|ocean current (generic term)
+humbug|4
+(noun)|baloney|boloney|bilgewater|bosh|drool|taradiddle|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|snake oil|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|fraud|fraudulence|dupery|hoax|put-on|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+(verb)|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+humdinger|1
+(noun)|ideal (generic term)|paragon (generic term)|nonpareil (generic term)|saint (generic term)|apotheosis (generic term)|nonesuch (generic term)|nonsuch (generic term)
+humdrum|3
+(adj)|commonplace|prosaic|unglamorous|unglamourous|unexciting (similar term)
+(adj)|monotonous|dull (similar term)
+(noun)|monotony|sameness|unvariedness (generic term)
+hume|1
+(noun)|Hume|David Hume|philosopher (generic term)
+hume blake cronyn|1
+(noun)|Cronyn|Hume Cronyn|Hume Blake Cronyn|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+hume cronyn|1
+(noun)|Cronyn|Hume Cronyn|Hume Blake Cronyn|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+humectant|1
+(noun)|substance (generic term)|matter (generic term)
+humeral veil|1
+(noun)|veil|vestment (generic term)
+humerus|1
+(noun)|arm bone (generic term)
+humic|1
+(adj)|soil|dirt (related term)
+humic acid|1
+(noun)|humic substance (generic term)
+humic shale|1
+(noun)|shale (generic term)|humate (generic term)
+humic substance|1
+(noun)|organic compound (generic term)
+humid|1
+(adj)|wet (similar term)
+humidify|1
+(verb)|moisturize|moisturise|moisten (generic term)|wash (generic term)|dampen (generic term)|dehumidify (antonym)
+humidity|1
+(noun)|humidness|wetness (generic term)
+humidness|1
+(noun)|humidity|wetness (generic term)
+humification|1
+(noun)|organic process (generic term)|biological process (generic term)
+humified|1
+(adj)|soil|dirt (related term)
+humiliate|1
+(verb)|mortify|chagrin|humble|abase|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+humiliated|2
+(adj)|broken|crushed|humbled|low|humble (similar term)
+(adj)|embarrassed|mortified|ashamed (similar term)
+humiliating|1
+(adj)|demeaning|humbling|mortifying|undignified (similar term)
+humiliatingly|1
+(adv)|demeaningly
+humiliation|4
+(noun)|shame (generic term)|disgrace (generic term)|ignominy (generic term)
+(noun)|chagrin|mortification|embarrassment (generic term)
+(noun)|mortification|case (generic term)|instance (generic term)|example (generic term)
+(noun)|abasement|degradation (generic term)|debasement (generic term)
+humility|2
+(noun)|humbleness|trait (generic term)|pride (antonym)
+(noun)|humbleness|feeling (generic term)|pride (antonym)
+humin|1
+(noun)|humic substance (generic term)
+hummer|2
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|fastball|heater|smoke|bullet|pitch (generic term)|delivery (generic term)
+humming|2
+(noun)|hum|noise (generic term)
+(noun)|singing (generic term)|vocalizing (generic term)
+humming bird's trumpet|1
+(noun)|California fuchsia|Epilobium canum canum|Zauschneria californica|shrublet (generic term)
+humming top|1
+(noun)|top (generic term)|whirligig (generic term)|teetotum (generic term)|spinning top (generic term)
+hummingbird|1
+(noun)|apodiform bird (generic term)
+hummingbird moth|1
+(noun)|hawkmoth|hawk moth|sphingid|sphinx moth|moth (generic term)
+hummock|1
+(noun)|knoll|mound|hillock|hammock|hill (generic term)
+hummus|1
+(noun)|humus|hommos|hoummos|humous|spread (generic term)|paste (generic term)
+humongous|1
+(adj)|banging|thumping|whopping|walloping|large (similar term)|big (similar term)
+humor|7
+(noun)|wit|humour|witticism|wittiness|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|humour|sense of humor|sense of humour|playfulness (generic term)|fun (generic term)
+(noun)|temper|mood|humour|feeling (generic term)
+(noun)|humour|quality (generic term)
+(noun)|humour|body substance (generic term)
+(noun)|liquid body substance|bodily fluid|body fluid|humour|body substance (generic term)
+(verb)|humour|gratify (generic term)|pander (generic term)|indulge (generic term)
+humoral|1
+(adj)|body substance (related term)
+humoral immune response|1
+(noun)|immune response (generic term)|immune reaction (generic term)|immunologic response (generic term)
+humoring|1
+(noun)|indulgence|indulging|pampering|gratification (generic term)
+humorist|1
+(noun)|humourist|entertainer (generic term)
+humorless|1
+(adj)|humourless|unhumorous|sobersided (similar term)|po-faced (similar term)|unfunny (similar term)|humorous (antonym)
+humorlessly|1
+(adv)|humourlessly|humorously (antonym)
+humorous|1
+(adj)|humourous|bantering (similar term)|facetious (similar term)|tongue-in-cheek (similar term)|buffoonish (similar term)|clownish (similar term)|clownlike (similar term)|zany (similar term)|amusing (similar term)|comic (similar term)|comical (similar term)|funny (similar term)|laughable (similar term)|mirthful (similar term)|risible (similar term)|droll (similar term)|dry (similar term)|ironic (similar term)|ironical (similar term)|wry (similar term)|farcical (similar term)|ludicrous (similar term)|ridiculous (similar term)|Gilbertian (similar term)|hilarious (similar term)|screaming (similar term)|uproarious (similar term)|jesting (similar term)|jocose (similar term)|jocular (similar term)|joking (similar term)|killing (similar term)|sidesplitting (similar term)|seriocomic (similar term)|seriocomical (similar term)|slapstick (similar term)|tragicomic (similar term)|tragicomical (similar term)|waggish (similar term)|witty (similar term)|pleasing (related term)|humorless (antonym)
+humorously|1
+(adv)|humorlessly (antonym)
+humorousness|1
+(noun)|jocoseness|jocosity|merriness|levity (generic term)
+humour|7
+(noun)|temper|mood|humor|feeling (generic term)
+(noun)|wit|humor|witticism|wittiness|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|humor|body substance (generic term)
+(noun)|liquid body substance|bodily fluid|body fluid|humor|body substance (generic term)
+(noun)|humor|quality (generic term)
+(noun)|humor|sense of humor|sense of humour|playfulness (generic term)|fun (generic term)
+(verb)|humor|gratify (generic term)|pander (generic term)|indulge (generic term)
+humourist|1
+(noun)|humorist|entertainer (generic term)
+humourless|1
+(adj)|humorless|unhumorous|sobersided (similar term)|po-faced (similar term)|unfunny (similar term)|humorous (antonym)
+humourlessly|1
+(adv)|humorlessly|humorously (antonym)
+humourous|1
+(adj)|humorous|bantering (similar term)|facetious (similar term)|tongue-in-cheek (similar term)|buffoonish (similar term)|clownish (similar term)|clownlike (similar term)|zany (similar term)|amusing (similar term)|comic (similar term)|comical (similar term)|funny (similar term)|laughable (similar term)|mirthful (similar term)|risible (similar term)|droll (similar term)|dry (similar term)|ironic (similar term)|ironical (similar term)|wry (similar term)|farcical (similar term)|ludicrous (similar term)|ridiculous (similar term)|Gilbertian (similar term)|hilarious (similar term)|screaming (similar term)|uproarious (similar term)|jesting (similar term)|jocose (similar term)|jocular (similar term)|joking (similar term)|killing (similar term)|sidesplitting (similar term)|seriocomic (similar term)|seriocomical (similar term)|slapstick (similar term)|tragicomic (similar term)|tragicomical (similar term)|waggish (similar term)|witty (similar term)|pleasing (related term)|humorless (antonym)
+humous|1
+(noun)|hummus|humus|hommos|hoummos|spread (generic term)|paste (generic term)
+hump|3
+(noun)|bulge|bump|gibbosity|gibbousness|jut|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+(verb)|hunch|hunch forward|hunch over|change posture (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+humpback|3
+(noun)|kyphosis|hunchback|spinal curvature (generic term)
+(noun)|hunchback|crookback|cripple (generic term)
+(noun)|humpback whale|Megaptera novaeangliae|baleen whale (generic term)|whalebone whale (generic term)
+humpback whale|1
+(noun)|humpback|Megaptera novaeangliae|baleen whale (generic term)|whalebone whale (generic term)
+humpbacked|1
+(adj)|crookback|crookbacked|humped|hunchbacked|gibbous|kyphotic|unfit (similar term)
+humped|1
+(adj)|crookback|crookbacked|humpbacked|hunchbacked|gibbous|kyphotic|unfit (similar term)
+humperdinck|1
+(noun)|Humperdinck|Engelbert Humperdinck|composer (generic term)
+humphrey bogart|1
+(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+humphrey davy|1
+(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist (generic term)
+humphrey deforest bogart|1
+(noun)|Bogart|Humphrey Bogart|Humphrey DeForest Bogart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+humphrey gilbert|1
+(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator (generic term)
+humpty dumpty|1
+(noun)|Humpty Dumpty|imaginary being (generic term)|imaginary creature (generic term)
+humulin|1
+(noun)|recombinant human insulin|Humulin|insulin (generic term)
+humulus|1
+(noun)|Humulus|genus Humulus|dicot genus (generic term)|magnoliopsid genus (generic term)
+humulus americanus|1
+(noun)|American hop|Humulus americanus|hop (generic term)|hops (generic term)
+humulus japonicus|1
+(noun)|Japanese hop|Humulus japonicus|hop (generic term)|hops (generic term)
+humulus lupulus|1
+(noun)|common hop|common hops|bine|European hop|Humulus lupulus|hop (generic term)|hops (generic term)
+humus|2
+(noun)|soil (generic term)|dirt (generic term)
+(noun)|hummus|hommos|hoummos|humous|spread (generic term)|paste (generic term)
+hun|2
+(noun)|Hun|nomad (generic term)
+(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German (generic term)
+hunan|1
+(noun)|Hunan|Hunan province|state (generic term)|province (generic term)
+hunan province|1
+(noun)|Hunan|Hunan province|state (generic term)|province (generic term)
+hunch|3
+(noun)|intuition|suspicion|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+(noun)|bending (generic term)
+(verb)|hump|hunch forward|hunch over|change posture (generic term)
+hunch forward|1
+(verb)|hunch|hump|hunch over|change posture (generic term)
+hunch over|1
+(verb)|hunch|hump|hunch forward|change posture (generic term)
+hunchback|2
+(noun)|kyphosis|humpback|spinal curvature (generic term)
+(noun)|humpback|crookback|cripple (generic term)
+hunchbacked|1
+(adj)|crookback|crookbacked|humped|humpbacked|gibbous|kyphotic|unfit (similar term)
+hunched|1
+(adj)|round-backed|round-shouldered|stooped|stooping|crooked|unerect (similar term)
+hundred|2
+(adj)|one hundred|100|c|cardinal (similar term)
+(noun)|100|C|century|one C|centred|large integer (generic term)
+hundred-and-eightieth|1
+(adj)|180th|ordinal (similar term)
+hundred-and-fifteenth|1
+(adj)|115th|ordinal (similar term)
+hundred-and-fifth|1
+(adj)|105th|ordinal (similar term)
+hundred-and-fiftieth|1
+(adj)|150th|ordinal (similar term)
+hundred-and-fifty-fifth|1
+(adj)|155th|ordinal (similar term)
+hundred-and-first|1
+(adj)|101st|ordinal (similar term)
+hundred-and-fortieth|1
+(adj)|140th|ordinal (similar term)
+hundred-and-forty-fifth|1
+(adj)|145th|ordinal (similar term)
+hundred-and-ninetieth|1
+(adj)|190th|ordinal (similar term)
+hundred-and-seventieth|1
+(adj)|170th|ordinal (similar term)
+hundred-and-seventy-fifth|1
+(adj)|175th|ordinal (similar term)
+hundred-and-sixtieth|1
+(adj)|160th|ordinal (similar term)
+hundred-and-sixty-fifth|1
+(adj)|165th|ordinal (similar term)
+hundred-and-tenth|1
+(adj)|110th|ordinal (similar term)
+hundred-and-thirtieth|1
+(adj)|130th|ordinal (similar term)
+hundred-and-thirty-fifth|1
+(adj)|135th|ordinal (similar term)
+hundred-and-twentieth|1
+(adj)|120th|ordinal (similar term)
+hundred-and-twenty-fifth|1
+(adj)|125th|ordinal (similar term)
+hundred-percenter|1
+(noun)|chauvinist|jingoist|jingo|flag-waver|patrioteer|patriot (generic term)|nationalist (generic term)
+hundred and one|1
+(adj)|one hundred one|101|ci|cardinal (similar term)
+hundred dollar bill|1
+(noun)|c-note|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+hundred thousand|2
+(adj)|cardinal (similar term)
+(noun)|100000|lakh|large integer (generic term)
+hundred years' war|1
+(noun)|Hundred Years' War|war (generic term)|warfare (generic term)
+hundredfold|1
+(adv)|a hundred times
+hundredth|3
+(adj)|centesimal|100th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-hundredth|one percent|common fraction (generic term)|simple fraction (generic term)
+hundredweight|3
+(noun)|metric hundredweight|doppelzentner|centner|metric weight unit (generic term)|weight unit (generic term)
+(noun)|cwt|short hundredweight|centner|cental|quintal|avoirdupois unit (generic term)
+(noun)|cwt|long hundredweight|avoirdupois unit (generic term)
+hung|1
+(adj)|adorned (similar term)|decorated (similar term)
+hung jury|1
+(noun)|jury (generic term)
+hungarian|3
+(adj)|Hungarian|Magyar|European country|European nation (related term)
+(noun)|Hungarian|Magyar|European (generic term)
+(noun)|Hungarian|Magyar|Ugric (generic term)|Ugrian (generic term)
+hungarian capital|1
+(noun)|Budapest|Hungarian capital|capital of Hungary|national capital (generic term)
+hungarian goulash|1
+(noun)|goulash|Hungarian goulash|gulyas|stew (generic term)
+hungarian grass|1
+(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail (generic term)|foxtail grass (generic term)
+hungarian lilac|1
+(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac (generic term)
+hungarian monetary unit|1
+(noun)|Hungarian monetary unit|monetary unit (generic term)
+hungarian partridge|1
+(noun)|Hungarian partridge|grey partridge|gray partridge|Perdix perdix|partridge (generic term)
+hungarian pointer|1
+(noun)|vizla|Hungarian pointer|pointer (generic term)|Spanish pointer (generic term)
+hungarian sauce|1
+(noun)|Hungarian sauce|paprika sauce|sauce (generic term)
+hungary|1
+(noun)|Hungary|Republic of Hungary|Magyarorszag|European country (generic term)|European nation (generic term)
+hunger|5
+(noun)|hungriness|drive (generic term)
+(noun)|hungriness|thirst|thirstiness|desire (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|crave|thirst|starve|lust|desire (generic term)|want (generic term)
+(verb)|starve|famish|suffer (generic term)|hurt (generic term)|be full (antonym)
+hunger march|1
+(noun)|march (generic term)
+hunger marcher|1
+(noun)|unemployed person (generic term)
+hunger strike|1
+(noun)|fast (generic term)|fasting (generic term)|passive resistance (generic term)|nonviolent resistance (generic term)|nonviolence (generic term)
+hungrily|1
+(adv)|ravenously
+hungriness|3
+(noun)|hunger|drive (generic term)
+(noun)|longing|yearning|desire (generic term)
+(noun)|hunger|thirst|thirstiness|desire (generic term)
+hungry|2
+(adj)|empty (similar term)|empty-bellied (similar term)|famished (similar term)|ravenous (similar term)|sharp-set (similar term)|starved (similar term)|esurient (similar term)|peckish (similar term)|supperless (similar term)|thirsty (antonym)
+(adj)|athirst|thirsty|desirous (similar term)|wishful (similar term)
+hunk|2
+(noun)|man (generic term)|adult male (generic term)
+(noun)|lump|part (generic term)|piece (generic term)
+hunker|1
+(verb)|squat|crouch|scrunch|scrunch up|hunker down|sit (generic term)|sit down (generic term)
+hunker down|3
+(verb)|squat|crouch|scrunch|scrunch up|hunker|sit (generic term)|sit down (generic term)
+(verb)|hide (generic term)|hide out (generic term)
+(verb)|stand pat (generic term)|stand firm (generic term)|hold firm (generic term)|stand fast (generic term)
+hunkered|1
+(adj)|crouched|crouching|huddled|hunkered down|unerect (similar term)
+hunkered down|1
+(adj)|crouched|crouching|huddled|hunkered|unerect (similar term)
+hunkpapa|2
+(noun)|Hunkpapa|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+(noun)|Hunkpapa|Siouan (generic term)|Siouan language (generic term)
+hunky-dory|1
+(adj)|all right|fine|o.k.|ok|okay|satisfactory (similar term)
+hunnemania fumariifolia|1
+(noun)|golden cup|Mexican tulip poppy|Hunnemania fumariifolia|poppy (generic term)
+hunnemannia|1
+(noun)|Hunnemannia|genus Hunnemania|dilleniid dicot genus (generic term)
+hunt|15
+(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite (generic term)
+(noun)|Hunt|Richard Morris Hunt|architect (generic term)|designer (generic term)
+(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer (generic term)|author (generic term)
+(noun)|hunt club|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|search (generic term)
+(noun)|search|hunting|activity (generic term)
+(noun)|hunting|labor (generic term)|labour (generic term)|toil (generic term)
+(noun)|hunting|outdoor sport (generic term)|field sport (generic term)|blood sport (generic term)
+(verb)|run|hunt down|track down|capture (generic term)|catch (generic term)
+(verb)|hound|trace|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+(verb)|rout out (generic term)|drive out (generic term)|force out (generic term)|rouse (generic term)
+(verb)|yaw (generic term)
+(verb)|oscillate (generic term)|vibrate (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|search (generic term)|look (generic term)
+hunt club|1
+(noun)|hunt|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+hunt down|1
+(verb)|hunt|run|track down|capture (generic term)|catch (generic term)
+hunted|1
+(adj)|afraid (similar term)
+hunted person|1
+(noun)|victim (generic term)
+hunter|4
+(noun)|huntsman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|seeker (generic term)|searcher (generic term)|quester (generic term)
+(noun)|Orion|Hunter|constellation (generic term)|diffuse nebula (generic term)|gaseous nebula (generic term)
+(noun)|hunting watch|watch (generic term)|ticker (generic term)
+hunter's chicken|1
+(noun)|chicken cacciatore|chicken cacciatora|chicken casserole (generic term)
+hunter's sauce|1
+(noun)|sauce chausseur|sauce (generic term)
+hunter-gatherer|1
+(noun)|savage (generic term)|barbarian (generic term)
+hunting|3
+(noun)|hunt|outdoor sport (generic term)|field sport (generic term)|blood sport (generic term)
+(noun)|search|hunt|activity (generic term)
+(noun)|hunt|labor (generic term)|labour (generic term)|toil (generic term)
+hunting and gathering society|1
+(noun)|hunting and gathering tribe|tribal society (generic term)
+hunting and gathering tribe|1
+(noun)|hunting and gathering society|tribal society (generic term)
+hunting crop|1
+(noun)|riding crop|whip (generic term)
+hunting dog|1
+(noun)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+hunting expedition|1
+(noun)|campaign|safari|expedition (generic term)
+hunting ground|2
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|area (generic term)|country (generic term)
+hunting guide|1
+(noun)|scout (generic term)|pathfinder (generic term)|guide (generic term)
+hunting knife|1
+(noun)|knife (generic term)
+hunting licence|1
+(noun)|hunting license|hunting permit|game license|license (generic term)|licence (generic term)|permit (generic term)
+hunting license|1
+(noun)|hunting licence|hunting permit|game license|license (generic term)|licence (generic term)|permit (generic term)
+hunting lodge|1
+(noun)|lodge|house (generic term)
+hunting permit|1
+(noun)|hunting license|hunting licence|game license|license (generic term)|licence (generic term)|permit (generic term)
+hunting season|1
+(noun)|season (generic term)
+hunting spider|1
+(noun)|wolf spider|spider (generic term)
+hunting watch|1
+(noun)|hunter|watch (generic term)|ticker (generic term)
+huntingdon elm|1
+(noun)|Huntingdon elm|Ulmus hollandica vegetata|elm (generic term)|elm tree (generic term)
+huntingdon willow|1
+(noun)|white willow|Huntingdon willow|Salix alba|willow (generic term)|willow tree (generic term)
+huntington|4
+(noun)|Huntington|George Huntington|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|Huntington|Samuel Huntington|American Revolutionary leader (generic term)
+(noun)|Huntington|Collis Potter Huntington|businessman (generic term)|man of affairs (generic term)
+(noun)|Huntington|city (generic term)|metropolis (generic term)|urban center (generic term)
+huntington's chorea|1
+(noun)|Huntington's chorea|Huntington's disease|chorea (generic term)|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+huntington's disease|1
+(noun)|Huntington's chorea|Huntington's disease|chorea (generic term)|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+huntress|1
+(noun)|hunter (generic term)|huntsman (generic term)
+huntsman|1
+(noun)|hunter|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+huntsman's cup|1
+(noun)|common pitcher plant|huntsman's cups|Sarracenia purpurea|pitcher plant (generic term)
+huntsman's cups|1
+(noun)|common pitcher plant|huntsman's cup|Sarracenia purpurea|pitcher plant (generic term)
+huntsman's horn|1
+(noun)|huntsman's horns|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant (generic term)
+huntsman's horns|1
+(noun)|huntsman's horn|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant (generic term)
+huntsville|1
+(noun)|Huntsville|city (generic term)|metropolis (generic term)|urban center (generic term)
+huon pine|1
+(noun)|Lagarostrobus franklinii|Dacrydium franklinii|conifer (generic term)|coniferous tree (generic term)
+hupa|2
+(noun)|Hupa|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|Hupa|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+hurdle|4
+(noun)|barrier (generic term)
+(noun)|obstacle (generic term)|obstruction (generic term)
+(noun)|vault|jump (generic term)|jumping (generic term)
+(verb)|vault (generic term)|overleap (generic term)
+hurdle race|1
+(noun)|hurdles|hurdling|track event (generic term)
+hurdler|1
+(noun)|athlete (generic term)|jock (generic term)
+hurdles|1
+(noun)|hurdling|hurdle race|track event (generic term)
+hurdling|1
+(noun)|hurdles|hurdle race|track event (generic term)
+hurdy-gurdy|1
+(noun)|barrel organ|grind organ|hand organ|hurdy gurdy|street organ|musical instrument (generic term)|instrument (generic term)
+hurdy gurdy|1
+(noun)|barrel organ|grind organ|hand organ|hurdy-gurdy|street organ|musical instrument (generic term)|instrument (generic term)
+hurl|4
+(noun)|cast|throw (generic term)
+(verb)|hurtle|cast|throw (generic term)|cast anchor (related term)
+(verb)|lunge|hurtle|thrust|move (generic term)
+(verb)|throw|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+hurler|1
+(noun)|pitcher|twirler|thrower (generic term)|ballplayer (generic term)|baseball player (generic term)
+hurler's disease|1
+(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+hurler's syndrome|1
+(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|lipochondrodystrophy|mucopolysaccharidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+hurling|2
+(adj)|moving (similar term)
+(noun)|field game (generic term)
+hurly burly|1
+(noun)|disturbance|disruption|commotion|flutter|to-do|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+hurok|1
+(noun)|Hurok|Sol Hurok|Solomon Hurok|showman (generic term)|promoter (generic term)|impresario (generic term)
+huron|1
+(noun)|Lake Huron|Huron|lake (generic term)
+hurrah|2
+(noun)|hooray|cheer (generic term)
+(verb)|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+hurricane|1
+(noun)|cyclone (generic term)
+hurricane deck|1
+(noun)|hurricane roof|promenade deck|awning deck|deck (generic term)
+hurricane lamp|1
+(noun)|hurricane lantern|tornado lantern|storm lantern|storm lamp|lamp (generic term)
+hurricane lantern|1
+(noun)|hurricane lamp|tornado lantern|storm lantern|storm lamp|lamp (generic term)
+hurricane roof|1
+(noun)|hurricane deck|promenade deck|awning deck|deck (generic term)
+hurried|1
+(adj)|flying (similar term)|quick (similar term)|fast (similar term)|hasty (similar term)|headlong (similar term)|hasty (similar term)|overhasty (similar term)|precipitate (similar term)|precipitant (similar term)|precipitous (similar term)|helter-skelter (similar term)|pell-mell (similar term)|rush (similar term)|rushed (similar term)|fast (related term)|unhurried (antonym)
+hurriedly|1
+(adv)|hastily|in haste|unhurriedly (antonym)
+hurriedness|1
+(noun)|haste|hastiness|hurry|precipitation|speed (generic term)|swiftness (generic term)|fastness (generic term)
+hurry|6
+(noun)|haste|urgency (generic term)
+(noun)|haste|hastiness|hurriedness|precipitation|speed (generic term)|swiftness (generic term)|fastness (generic term)
+(noun)|haste|rush|rushing|motion (generic term)|movement (generic term)|move (generic term)
+(verb)|travel rapidly|speed|zip|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)
+(verb)|rush|hasten|look sharp|festinate|act (generic term)|move (generic term)
+(verb)|rush|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)|delay (antonym)
+hurrying|2
+(adj)|scurrying|fast (similar term)
+(noun)|speed|speeding|motion (generic term)|movement (generic term)|move (generic term)
+hurt|14
+(adj)|wounded|injured (similar term)
+(adj)|weakened|damaged (similar term)
+(noun)|injury|harm|trauma|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|distress|suffering|pain (generic term)|painfulness (generic term)
+(noun)|suffering|pain (generic term)|painfulness (generic term)
+(noun)|detriment|damage (generic term)|harm (generic term)|impairment (generic term)
+(noun)|damage|harm|scathe|change of integrity (generic term)
+(verb)|ache|smart|cause to be perceived (generic term)
+(verb)|indispose (generic term)
+(verb)|pain|anguish|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|injure|damage (generic term)
+(verb)|wound|injure|bruise|offend|spite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|ache|suffer|perceive (generic term)|comprehend (generic term)
+(verb)|suffer|be (generic term)|be well (antonym)
+hurtful|2
+(adj)|unkind (similar term)
+(adj)|deleterious|injurious|harmful (similar term)
+hurting|1
+(noun)|pain|symptom (generic term)
+hurtle|3
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|lunge|hurl|thrust|move (generic term)
+(verb)|hurl|cast|throw (generic term)|cast anchor (related term)
+hurtling|1
+(adj)|moving (similar term)
+hus|1
+(noun)|Huss|John Huss|Hus|Jan Hus|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+husain|2
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king (generic term)|male monarch (generic term)|Rex (generic term)
+husayn|2
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king (generic term)|male monarch (generic term)|Rex (generic term)
+husband|2
+(noun)|hubby|married man|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)|wife (antonym)
+(verb)|conserve|economize|economise|save (generic term)|preserve (generic term)|waste (antonym)
+husband-wife privilege|1
+(noun)|marital communications privilege|privilege (generic term)
+husbandly|2
+(adj)|wifely (antonym)
+(adj)|domestic (similar term)
+husbandman|1
+(noun)|farmer|granger|sodbuster|creator (generic term)
+husbandry|1
+(noun)|farming|agriculture|cultivation (generic term)
+hush|6
+(noun)|stillness|still|silence (generic term)|quiet (generic term)
+(verb)|change (generic term)
+(verb)|quieten|silence|still|shut up|hush up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+(verb)|quieten|quiet|quiesce|quiet down|pipe down|change intensity (generic term)|louden (antonym)
+(verb)|wash (generic term)|lave (generic term)
+(verb)|water (generic term)|irrigate (generic term)
+hush-hush|1
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|secret|surreptitious|undercover|underground|covert (similar term)
+hush money|1
+(noun)|bribe (generic term)|payoff (generic term)
+hush puppy|1
+(noun)|hushpuppy|cornbread (generic term)
+hush up|2
+(verb)|whitewash|gloss over|sleek over|cover (generic term)|cover up (generic term)
+(verb)|hush|quieten|silence|still|shut up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+hushed|1
+(adj)|muted|subdued|quiet|soft (similar term)
+hushed-up|1
+(adj)|suppressed (similar term)
+hushing|1
+(noun)|hiss|hissing|fizzle|sibilation|noise (generic term)
+hushpuppy|1
+(noun)|hush puppy|cornbread (generic term)
+husk|3
+(noun)|chaff|shuck|stalk|straw|stubble|plant material (generic term)
+(noun)|sheath (generic term)|case (generic term)
+(verb)|shell|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+husk tomato|2
+(noun)|ground cherry|herb (generic term)|herbaceous plant (generic term)
+(noun)|tomatillo|Mexican husk tomato|solanaceous vegetable (generic term)
+huskily|1
+(adv)|hoarsely
+huskiness|2
+(noun)|ruggedness|toughness|strength (generic term)
+(noun)|gruffness|hoarseness|harshness (generic term)|roughness (generic term)
+husking|1
+(noun)|denudation|stripping|uncovering|baring|removal (generic term)|remotion (generic term)
+husking bee|1
+(noun)|cornhusking|bee (generic term)
+husky|3
+(adj)|beefy|burly|strapping|buirdly|robust (similar term)
+(adj)|gruff|hoarse|cacophonous (similar term)|cacophonic (similar term)
+(noun)|Eskimo dog|working dog (generic term)
+huss|1
+(noun)|Huss|John Huss|Hus|Jan Hus|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+hussar|1
+(noun)|cavalryman (generic term)|trooper (generic term)
+hussar monkey|1
+(noun)|patas|Erythrocebus patas|Old World monkey (generic term)|catarrhine (generic term)
+hussein|2
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king (generic term)|male monarch (generic term)|Rex (generic term)
+husserl|1
+(noun)|Husserl|Edmund Husserl|philosopher (generic term)
+hussite|1
+(noun)|Hussite|disciple (generic term)|adherent (generic term)
+hussy|1
+(noun)|adulteress|fornicatress|jade|loose woman|slut|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+hustings|1
+(noun)|campaigning (generic term)|candidacy (generic term)|candidature (generic term)|electioneering (generic term)|political campaign (generic term)
+hustle|5
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|sting|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+(noun)|bustle|flurry|ado|fuss|stir|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|bustle|bustle about|move (generic term)
+(verb)|pluck|roll|steal (generic term)
+hustler|2
+(noun)|streetwalker|street girl|hooker|floozy|floozie|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+(noun)|wheeler dealer|operator|opportunist (generic term)|self-seeker (generic term)
+huston|1
+(noun)|Huston|John Huston|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+hut|2
+(noun)|army hut|field hut|shelter (generic term)
+(noun)|hovel|hutch|shack|shanty|shelter (generic term)
+hutch|2
+(noun)|cage (generic term)|coop (generic term)
+(noun)|hovel|hut|shack|shanty|shelter (generic term)
+hutchins|1
+(noun)|Hutchins|Robert Maynard Hutchins|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+hutchinson|1
+(noun)|Hutchinson|Anne Hutchinson|settler (generic term)|colonist (generic term)
+hutment|1
+(noun)|camp (generic term)|encampment (generic term)|cantonment (generic term)|bivouac (generic term)
+hutton|2
+(noun)|Hutton|Sir Leonard Hutton|cricketer (generic term)
+(noun)|Hutton|James Hutton|geologist (generic term)
+hutu|1
+(noun)|Hutu|Bantu (generic term)
+hutzpah|1
+(noun)|chutzpa|chutzpah|crust (generic term)|gall (generic term)|impertinence (generic term)|impudence (generic term)|insolence (generic term)|cheekiness (generic term)|freshness (generic term)
+huxleian|1
+(adj)|Huxleyan|Huxleian|biologist|life scientist (related term)
+huxley|3
+(noun)|Huxley|Andrew Huxley|Andrew Fielding Huxley|physiologist (generic term)
+(noun)|Huxley|Aldous Huxley|Aldous Leonard Huxley|writer (generic term)|author (generic term)
+(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist (generic term)|life scientist (generic term)
+huxleyan|1
+(adj)|Huxleyan|Huxleian|biologist|life scientist (related term)
+huygens|1
+(noun)|Huygens|Christiaan Huygens|Christian Huygens|physicist (generic term)
+huygens' principle of superposition|1
+(noun)|principle of superposition|Huygens' principle of superposition|principle (generic term)|rule (generic term)
+hwang ho|1
+(noun)|Huang He|Hwang Ho|Yellow River|river (generic term)
+hyacinth|2
+(noun)|jacinth|zircon (generic term)|zirconium silicate (generic term)
+(noun)|liliaceous plant (generic term)
+hyacinth bean|1
+(noun)|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+hyacinthaceae|1
+(noun)|Hyacinthaceae|family Hyacinthaceae|liliid monocot family (generic term)
+hyacinthoides|1
+(noun)|Hyacinthoides|genus Hyacinthoides|liliid monocot genus (generic term)
+hyacinthoides nonscripta|1
+(noun)|wild hyacinth|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+hyacinthus candicans|1
+(noun)|summer hyacinth|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth (generic term)
+hyacinthus orientalis|1
+(noun)|common hyacinth|Hyacinthus orientalis|hyacinth (generic term)
+hyacinthus orientalis albulus|1
+(noun)|Roman hyacinth|Hyacinthus orientalis albulus|hyacinth (generic term)
+hyades|1
+(noun)|Hyades|nymph (generic term)
+hyaena|1
+(noun)|hyena|canine (generic term)|canid (generic term)
+hyaena brunnea|1
+(noun)|brown hyena|strand wolf|Hyaena brunnea|hyena (generic term)|hyaena (generic term)
+hyaena hyaena|1
+(noun)|striped hyena|Hyaena hyaena|hyena (generic term)|hyaena (generic term)
+hyaenidae|1
+(noun)|Hyaenidae|family Hyaenidae|mammal family (generic term)
+hyalin|1
+(noun)|hyaline|transparent substance (generic term)|translucent substance (generic term)
+hyaline|2
+(adj)|hyaloid|clear (similar term)
+(noun)|hyalin|transparent substance (generic term)|translucent substance (generic term)
+hyaline cartilage|1
+(noun)|cartilage (generic term)|gristle (generic term)
+hyaline membrane disease|1
+(noun)|respiratory distress syndrome|respiratory distress syndrome of the newborn|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+hyalinisation|1
+(noun)|hyalinization|condition (generic term)|status (generic term)
+hyalinization|1
+(noun)|hyalinisation|condition (generic term)|status (generic term)
+hyaloid|2
+(adj)|hyaline|clear (similar term)
+(noun)|hyaloid membrane|membrane (generic term)|tissue layer (generic term)
+hyaloid membrane|1
+(noun)|hyaloid|membrane (generic term)|tissue layer (generic term)
+hyalophora|1
+(noun)|Hyalophora|genus Hyalophora|arthropod genus (generic term)
+hyalophora cecropia|1
+(noun)|cecropia|cecropia moth|Hyalophora cecropia|saturniid (generic term)|saturniid moth (generic term)
+hyaloplasm|1
+(noun)|ground substance|cytoplasm (generic term)|cytol (generic term)
+hyaloplasmic|1
+(adj)|cytoplasm|cytol (related term)
+hyalosperma|1
+(noun)|Hyalosperma|genus Hyalosperma|asterid dicot genus (generic term)
+hyalospongiae|1
+(noun)|Hyalospongiae|class Hyalospongiae|class (generic term)
+hyaluronic acid|1
+(noun)|mucopolysaccharide (generic term)
+hyaluronidase|1
+(noun)|spreading factor|Hyazyme|enzyme (generic term)
+hyazyme|1
+(noun)|hyaluronidase|spreading factor|Hyazyme|enzyme (generic term)
+hybanthus|1
+(noun)|Hybanthus|genus Hybanthus|dilleniid dicot genus (generic term)
+hybrid|4
+(adj)|crossed|interbred|intercrossed|crossbred (similar term)
+(noun)|loanblend|loan-blend|word (generic term)
+(noun)|complex (generic term)|composite (generic term)
+(noun)|crossbreed|cross|organism (generic term)|being (generic term)
+hybrid petunia|1
+(noun)|Petunia hybrida|petunia (generic term)
+hybrid tuberous begonia|1
+(noun)|Begonia tuberhybrida|tuberous begonia (generic term)
+hybridisation|1
+(noun)|hybridization|crossbreeding|crossing|cross|interbreeding|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+hybridise|1
+(verb)|crossbreed|cross|hybridize|interbreed|breed (generic term)
+hybridization|1
+(noun)|hybridisation|crossbreeding|crossing|cross|interbreeding|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+hybridize|1
+(verb)|crossbreed|cross|hybridise|interbreed|breed (generic term)
+hybridizing|1
+(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|interbreeding|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+hybridoma|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+hydantoin|1
+(noun)|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+hydathode|1
+(noun)|water pore|water stoma|stoma (generic term)|stomate (generic term)|pore (generic term)
+hydatid|1
+(noun)|cyst (generic term)
+hydatid disease|1
+(noun)|echinococcosis|hydatidosis|infestation (generic term)
+hydatid mole|1
+(noun)|hydatidiform mole|molar pregnancy|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hydatidiform mole|1
+(noun)|hydatid mole|molar pregnancy|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hydatidosis|1
+(noun)|echinococcosis|hydatid disease|infestation (generic term)
+hyderabad|1
+(noun)|Hyderabad|city (generic term)|metropolis (generic term)|urban center (generic term)
+hydnaceae|1
+(noun)|Hydnaceae|family Hydnaceae|fungus family (generic term)
+hydnocarpus|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+hydnocarpus kurzii|1
+(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+hydnocarpus laurifolia|1
+(noun)|Hydnocarpus laurifolia|Hydnocarpus wightiana|tree (generic term)
+hydnocarpus oil|1
+(noun)|oil (generic term)
+hydnocarpus wightiana|1
+(noun)|Hydnocarpus laurifolia|Hydnocarpus wightiana|tree (generic term)
+hydnoraceae|1
+(noun)|Hydnoraceae|family Hydnoraceae|dicot family (generic term)|magnoliopsid family (generic term)
+hydnum|1
+(noun)|Hydnum|genus Hydnum|fungus genus (generic term)
+hydra|4
+(noun)|Hydra|mythical monster (generic term)|mythical creature (generic term)
+(noun)|Hydra|Snake|constellation (generic term)
+(noun)|trouble (generic term)|problem (generic term)
+(noun)|hydrozoan (generic term)|hydroid (generic term)
+hydralazine|1
+(noun)|Apresoline|antihypertensive (generic term)|antihypertensive drug (generic term)|vasodilator (generic term)|vasodilative (generic term)
+hydramnios|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hydrangea|1
+(noun)|shrub (generic term)|bush (generic term)
+hydrangea anomala|1
+(noun)|climbing hydrangea|Hydrangea anomala|hydrangea (generic term)
+hydrangea arborescens|1
+(noun)|wild hydrangea|Hydrangea arborescens|hydrangea (generic term)
+hydrangea family|1
+(noun)|Hydrangeaceae|family Hydrangeaceae|rosid dicot family (generic term)
+hydrangea macrophylla hortensis|1
+(noun)|hortensia|Hydrangea macrophylla hortensis|hydrangea (generic term)
+hydrangea paniculata|1
+(noun)|fall-blooming hydrangea|Hydrangea paniculata|hydrangea (generic term)
+hydrangea petiolaris|1
+(noun)|climbing hydrangea|Hydrangea petiolaris|hydrangea (generic term)
+hydrangeaceae|1
+(noun)|Hydrangeaceae|family Hydrangeaceae|hydrangea family|rosid dicot family (generic term)
+hydrant|2
+(noun)|water faucet|water tap|tap|faucet (generic term)|spigot (generic term)|plumbing fixture (generic term)
+(noun)|discharge pipe (generic term)
+hydrargyrum|1
+(noun)|mercury|quicksilver|Hg|atomic number 80|metallic element (generic term)|metal (generic term)
+hydrarthrosis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+hydrastis|1
+(noun)|Hydrastis|genus Hydrastis|magnoliid dicot genus (generic term)
+hydrastis canadensis|1
+(noun)|goldenseal|golden seal|yellow root|turmeric root|Hydrastis Canadensis|herb (generic term)|herbaceous plant (generic term)
+hydrate|4
+(noun)|compound (generic term)|chemical compound (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|change (generic term)
+(verb)|humidify (generic term)|moisturize (generic term)|moisturise (generic term)|dehydrate (antonym)
+hydrated|1
+(adj)|hydrous|anhydrous (antonym)
+hydrated aluminium oxide|1
+(noun)|aluminum hydroxide|aluminium hydroxide|hydrated aluminum oxide|hydroxide (generic term)|hydrated oxide (generic term)
+hydrated aluminum oxide|1
+(noun)|aluminum hydroxide|aluminium hydroxide|hydrated aluminium oxide|hydroxide (generic term)|hydrated oxide (generic term)
+hydrated lime|1
+(noun)|calcium hydroxide|lime|slaked lime|calcium hydrate|caustic lime|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+hydrated oxide|1
+(noun)|hydroxide|compound (generic term)|chemical compound (generic term)
+hydration|1
+(noun)|association (generic term)
+hydraulic|2
+(adj)|binary compound|liquid (related term)
+(adj)|mechanics (related term)
+hydraulic brake|1
+(noun)|hydraulic brakes|brake system (generic term)|the brakes (generic term)
+hydraulic brake cylinder|1
+(noun)|brake cylinder|master cylinder|cylinder (generic term)|piston chamber (generic term)
+hydraulic brakes|1
+(noun)|hydraulic brake|brake system (generic term)|the brakes (generic term)
+hydraulic cement|1
+(noun)|Portland cement|cement (generic term)
+hydraulic engineering|1
+(noun)|civil engineering (generic term)
+hydraulic press|1
+(noun)|press (generic term)|mechanical press (generic term)
+hydraulic pump|1
+(noun)|hydraulic ram|pump (generic term)
+hydraulic ram|1
+(noun)|hydraulic pump|pump (generic term)
+hydraulic system|1
+(noun)|mechanism (generic term)
+hydraulic transmission|1
+(noun)|hydraulic transmission system|transmission (generic term)|transmission system (generic term)|hydraulic system (generic term)
+hydraulic transmission system|1
+(noun)|hydraulic transmission|transmission (generic term)|transmission system (generic term)|hydraulic system (generic term)
+hydraulically|1
+(adv)|hydraulicly
+hydraulicly|1
+(adv)|hydraulically
+hydraulics|1
+(noun)|fluid mechanics|mechanics (generic term)
+hydrazine|1
+(noun)|reducing agent (generic term)|reducer (generic term)|reductant (generic term)
+hydrazo group|1
+(noun)|hydrazo radical|group (generic term)|radical (generic term)|chemical group (generic term)
+hydrazo radical|1
+(noun)|hydrazo group|group (generic term)|radical (generic term)|chemical group (generic term)
+hydrazoic acid|1
+(noun)|azoimide|hydrogen azide|HN|hydride (generic term)|explosive (generic term)
+hydrazoite|1
+(noun)|azide (generic term)
+hydremia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+hydric|1
+(adj)|hydrophytic (similar term)|hygrophytic (similar term)|mesic (antonym)|xeric (antonym)
+hydride|1
+(noun)|binary compound (generic term)
+hydrilla|1
+(noun)|Hydrilla verticillata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+hydrilla verticillata|1
+(noun)|hydrilla|Hydrilla verticillata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+hydriodic acid|1
+(noun)|acid (generic term)
+hydrobates|1
+(noun)|Hydrobates|genus Hydrobates|bird genus (generic term)
+hydrobates pelagicus|1
+(noun)|stormy petrel|northern storm petrel|Hydrobates pelagicus|storm petrel (generic term)
+hydrobatidae|1
+(noun)|Hydrobatidae|family Hydrobatidae|bird family (generic term)
+hydrobromic acid|1
+(noun)|acid (generic term)
+hydrocarbon|1
+(noun)|organic compound (generic term)
+hydrocele|1
+(noun)|disorder (generic term)|upset (generic term)
+hydrocephalic|1
+(adj)|abnormality|abnormalcy|abnormal condition (related term)
+hydrocephalus|1
+(noun)|hydrocephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hydrocephaly|1
+(noun)|hydrocephalus|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hydrocharidaceae|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family (generic term)|liliopsid family (generic term)
+hydrocharis|1
+(noun)|Hydrocharis|genus Hydrocharis|monocot genus (generic term)|liliopsid genus (generic term)
+hydrocharis morsus-ranae|1
+(noun)|frogbit|frog's-bit|Hydrocharis morsus-ranae|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+hydrocharitaceae|1
+(noun)|Hydrocharitaceae|family Hydrocharitaceae|Hydrocharidaceae|family Hydrocharidaceae|frogbit family|frog's-bit family|monocot family (generic term)|liliopsid family (generic term)
+hydrochloric acid|1
+(noun)|chlorohydric acid|acid (generic term)
+hydrochloride|1
+(noun)|complex (generic term)|coordination compound (generic term)
+hydrochlorofluorocarbon|1
+(noun)|HCFC|chlorofluorocarbon (generic term)|CFC (generic term)
+hydrochlorothiazide|1
+(noun)|Esidrix|HydroDIURIL|thiazide (generic term)
+hydrochoeridae|1
+(noun)|Hydrochoeridae|family Hydrochoeridae|mammal family (generic term)
+hydrochoerus|1
+(noun)|Hydrochoerus|genus Hydrochoerus|mammal genus (generic term)
+hydrochoerus hydrochaeris|1
+(noun)|capybara|capibara|Hydrochoerus hydrochaeris|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+hydrocolloid|1
+(noun)|substance (generic term)|matter (generic term)
+hydrocortisone|1
+(noun)|cortisol|Hydrocortone|Cortef|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+hydrocortone|1
+(noun)|hydrocortisone|cortisol|Hydrocortone|Cortef|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+hydrocracking|1
+(noun)|cracking (generic term)
+hydrocyanic acid|1
+(noun)|prussic acid|acid (generic term)
+hydrodamalis|1
+(noun)|Hydrodamalis|genus Hydrodamalis|mammal genus (generic term)
+hydrodamalis gigas|1
+(noun)|Steller's sea cow|Hydrodamalis gigas|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+hydrodiuril|1
+(noun)|hydrochlorothiazide|Esidrix|HydroDIURIL|thiazide (generic term)
+hydrodynamic|1
+(adj)|fluid mechanics|hydraulics (related term)
+hydrodynamics|1
+(noun)|hydrokinetics|fluid mechanics (generic term)|hydraulics (generic term)
+hydroelectric|1
+(adj)|electricity (related term)
+hydroelectric turbine|1
+(noun)|turbine (generic term)
+hydroelectricity|1
+(noun)|electricity (generic term)
+hydroflumethiazide|1
+(noun)|thiazide (generic term)
+hydrofluoric acid|1
+(noun)|acid (generic term)
+hydrofluorocarbon|1
+(noun)|HFC|fluorocarbon (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+hydrofluosilicic acid|1
+(noun)|fluosilicic acid|acid (generic term)
+hydrofoil|2
+(noun)|foil|device (generic term)
+(noun)|hydroplane|speedboat (generic term)
+hydrogel|1
+(noun)|gel (generic term)|colloidal gel (generic term)
+hydrogen|1
+(noun)|H|atomic number 1|chemical element (generic term)|element (generic term)|gas (generic term)
+hydrogen-bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+hydrogen atom|1
+(noun)|atom (generic term)
+hydrogen azide|1
+(noun)|hydrazoic acid|azoimide|HN|hydride (generic term)|explosive (generic term)
+hydrogen bomb|1
+(noun)|H-bomb|fusion bomb|thermonuclear bomb|nuclear weapon (generic term)|bomb (generic term)
+hydrogen bond|1
+(noun)|chemical bond (generic term)|bond (generic term)
+hydrogen bromide|1
+(noun)|bromide (generic term)
+hydrogen carbonate|1
+(noun)|bicarbonate|carbonate (generic term)
+hydrogen chloride|1
+(noun)|acid (generic term)
+hydrogen cyanide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+hydrogen fluoride|1
+(noun)|fluoride (generic term)
+hydrogen iodide|1
+(noun)|iodide (generic term)
+hydrogen ion|1
+(noun)|proton (generic term)|cation (generic term)
+hydrogen ion concentration|1
+(noun)|concentration (generic term)
+hydrogen peroxide|1
+(noun)|peroxide|oxide (generic term)
+hydrogen sulfide|1
+(noun)|sulfide (generic term)|sulphide (generic term)
+hydrogenate|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|dehydrogenate (antonym)
+hydrogenation|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+hydrographic|1
+(adj)|hydrographical|oceanography|oceanology (related term)
+hydrographical|1
+(adj)|hydrographic|oceanography|oceanology (related term)
+hydrography|1
+(noun)|oceanography (generic term)|oceanology (generic term)
+hydroid|1
+(noun)|hydrozoan|coelenterate (generic term)|cnidarian (generic term)
+hydroiodic acid|1
+(noun)|acid (generic term)
+hydrokinetic|1
+(adj)|fluid mechanics|hydraulics (related term)|hydrostatic (antonym)
+hydrokinetics|1
+(noun)|hydrodynamics|fluid mechanics (generic term)|hydraulics (generic term)
+hydrolise|1
+(verb)|hydrolize|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+hydrolith|1
+(noun)|calcium hydride|hydride (generic term)
+hydrolize|1
+(verb)|hydrolise|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+hydrologist|1
+(noun)|geologist (generic term)
+hydrology|1
+(noun)|geophysics (generic term)|geophysical science (generic term)
+hydrolysate|1
+(noun)|product (generic term)
+hydrolyse|1
+(verb)|hydrolyze|change (generic term)
+hydrolysis|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+hydrolyzable|1
+(adj)|chemical reaction|reaction (related term)
+hydrolyze|1
+(verb)|hydrolyse|change (generic term)
+hydromancer|1
+(noun)|diviner (generic term)
+hydromancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+hydromantes|1
+(noun)|Hydromantes|genus Hydromantes|amphibian genus (generic term)
+hydromantes brunus|1
+(noun)|limestone salamander|Hydromantes brunus|web-toed salamander (generic term)
+hydromantes shastae|1
+(noun)|Shasta salamander|Hydromantes shastae|web-toed salamander (generic term)
+hydromel|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+hydrometer|1
+(noun)|gravimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+hydrometric|1
+(adj)|gravimetric|measurement|measuring|measure|mensuration (related term)
+hydrometry|1
+(noun)|gravimetry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+hydromorphone|1
+(noun)|hydromorphone hydrochloride|Dilaudid|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+hydromorphone hydrochloride|1
+(noun)|hydromorphone|Dilaudid|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+hydromyinae|1
+(noun)|Hydromyinae|subfamily Hydromyinae|mammal family (generic term)
+hydromys|1
+(noun)|Hydromys|genus Hydromys|mammal genus (generic term)
+hydronephrosis|1
+(noun)|pathology (generic term)
+hydropathic|1
+(adj)|treatment (related term)
+hydropathy|1
+(noun)|hydrotherapy|treatment (generic term)
+hydrophidae|1
+(noun)|Hydrophidae|family Hydrophidae|reptile family (generic term)
+hydrophilic|1
+(adj)|deliquescent (similar term)|hydrophobic (antonym)
+hydrophobia|3
+(noun)|symptom (generic term)
+(noun)|simple phobia (generic term)
+(noun)|rabies|lyssa|madness|zoonosis (generic term)|zoonotic disease (generic term)
+hydrophobic|2
+(adj)|hydrophilic (antonym)
+(adj)|aquaphobic|afraid (similar term)
+hydrophobicity|1
+(noun)|property (generic term)
+hydrophyllaceae|1
+(noun)|Hydrophyllaceae|family Hydrophyllaceae|waterleaf family|asterid dicot family (generic term)
+hydrophyllum|1
+(noun)|Hydrophyllum|genus Hydrophyllum|asterid dicot genus (generic term)
+hydrophyllum virginianum|1
+(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+hydrophyte|1
+(noun)|aquatic plant|water plant|hydrophytic plant|vascular plant (generic term)|tracheophyte (generic term)
+hydrophytic|1
+(adj)|hydric (similar term)
+hydrophytic plant|1
+(noun)|aquatic plant|water plant|hydrophyte|vascular plant (generic term)|tracheophyte (generic term)
+hydroplane|3
+(noun)|seaplane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+(noun)|hydrofoil|speedboat (generic term)
+(verb)|seaplane|fly (generic term)|aviate (generic term)|pilot (generic term)
+hydroplane racing|1
+(noun)|boat racing (generic term)
+hydroponic|1
+(adj)|aquicultural|aquacultural|farming|agriculture|husbandry (related term)
+hydroponics|1
+(noun)|aquiculture|tank farming|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+hydrops|1
+(noun)|edema|oedema|dropsy|swelling (generic term)|puffiness (generic term)|lump (generic term)
+hydrosphere|1
+(noun)|layer (generic term)
+hydrostatic|1
+(adj)|fluid mechanics|hydraulics (related term)|hydrokinetic (antonym)
+hydrostatic head|1
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+hydrostatics|1
+(noun)|fluid mechanics (generic term)|hydraulics (generic term)
+hydrotherapy|1
+(noun)|hydropathy|treatment (generic term)
+hydrothorax|1
+(noun)|congestion (generic term)
+hydrous|1
+(adj)|hydrated|anhydrous (antonym)
+hydroxide|2
+(noun)|hydrated oxide|compound (generic term)|chemical compound (generic term)
+(noun)|compound (generic term)|chemical compound (generic term)
+hydroxide ion|1
+(noun)|hydroxyl ion|anion (generic term)
+hydroxy|1
+(adj)|group|radical|chemical group (related term)
+hydroxy acid|1
+(noun)|acid (generic term)
+hydroxyacetic acid|1
+(noun)|glycolic acid|glycollic acid|acid (generic term)
+hydroxybenzene|1
+(noun)|carbolic acid|phenol|oxybenzene|phenylic acid|acid (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+hydroxybenzoic acid|1
+(noun)|hydroxy acid (generic term)
+hydroxybutyric acid|1
+(noun)|oxybutyric acid|butyric acid (generic term)|butanoic acid (generic term)
+hydroxychloroquine|1
+(noun)|Plaquenil|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+hydroxyl|1
+(noun)|hydroxyl group|hydroxyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+hydroxyl group|1
+(noun)|hydroxyl|hydroxyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+hydroxyl ion|1
+(noun)|hydroxide ion|anion (generic term)
+hydroxyl radical|1
+(noun)|hydroxyl|hydroxyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+hydroxymethyl|1
+(noun)|methyl (generic term)|methyl group (generic term)|methyl radical (generic term)
+hydroxyproline|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+hydroxytetracycline|1
+(noun)|oxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic (generic term)|antibiotic drug (generic term)
+hydroxyzine|1
+(noun)|hydroxyzine hydrochloride|Atarax|Vistaril|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+hydroxyzine hydrochloride|1
+(noun)|hydroxyzine|Atarax|Vistaril|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+hydrozoa|1
+(noun)|Hydrozoa|class Hydrozoa|class (generic term)
+hydrozoan|1
+(noun)|hydroid|coelenterate (generic term)|cnidarian (generic term)
+hydrus|1
+(noun)|Hydrus|constellation (generic term)
+hyemoschus|1
+(noun)|Hyemoschus|genus Hyemoschus|mammal genus (generic term)
+hyemoschus aquaticus|1
+(noun)|water chevrotain|water deer|Hyemoschus aquaticus|chevrotain (generic term)|mouse deer (generic term)
+hyena|1
+(noun)|hyaena|canine (generic term)|canid (generic term)
+hyena dog|1
+(noun)|African hunting dog|Cape hunting dog|Lycaon pictus|wild dog (generic term)
+hyerbolise|1
+(verb)|overstate|exaggerate|overdraw|hyperbolize|magnify|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+hygeia|1
+(noun)|Hygeia|Greek deity (generic term)
+hygiene|2
+(noun)|sanitariness (generic term)
+(noun)|hygienics|medicine (generic term)|medical specialty (generic term)
+hygienic|1
+(adj)|hygienical|sanitary (similar term)|healthful (similar term)
+hygienical|1
+(adj)|hygienic|sanitary (similar term)|healthful (similar term)
+hygienically|1
+(adv)|unhygienically (antonym)
+hygienics|1
+(noun)|hygiene|medicine (generic term)|medical specialty (generic term)
+hygienise|1
+(verb)|sanitize|sanitise|hygienize|clean (generic term)|make clean (generic term)
+hygienist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+hygienize|1
+(verb)|sanitize|sanitise|hygienise|clean (generic term)|make clean (generic term)
+hygrocybe|1
+(noun)|Hygrocybe|genus Hygrocybe|fungus genus (generic term)
+hygrocybe acutoconica|1
+(noun)|Hygrocybe acutoconica|conic waxycap|waxycap (generic term)
+hygrodeik|1
+(noun)|hygrometer (generic term)
+hygrometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+hygrophoraceae|1
+(noun)|Hygrophoraceae|family Hygrophoraceae|fungus family (generic term)
+hygrophorus|1
+(noun)|Hygrophorus|genus Hygrophorus|fungus genus (generic term)
+hygrophorus borealis|1
+(noun)|Hygrophorus borealis|waxycap (generic term)
+hygrophorus caeruleus|1
+(noun)|Hygrophorus caeruleus|waxycap (generic term)
+hygrophorus inocybiformis|1
+(noun)|Hygrophorus inocybiformis|waxycap (generic term)
+hygrophorus kauffmanii|1
+(noun)|Hygrophorus kauffmanii|waxycap (generic term)
+hygrophorus marzuolus|1
+(noun)|Hygrophorus marzuolus|waxycap (generic term)
+hygrophorus purpurascens|1
+(noun)|Hygrophorus purpurascens|waxycap (generic term)
+hygrophorus russula|1
+(noun)|Hygrophorus russula|waxycap (generic term)
+hygrophorus sordidus|1
+(noun)|Hygrophorus sordidus|waxycap (generic term)
+hygrophorus tennesseensis|1
+(noun)|Hygrophorus tennesseensis|waxycap (generic term)
+hygrophorus turundus|1
+(noun)|Hygrophorus turundus|waxycap (generic term)
+hygrophyte|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+hygrophytic|1
+(adj)|hydric (similar term)
+hygroscope|1
+(noun)|hygrometer (generic term)
+hygroscopic|1
+(adj)|absorbent (similar term)|absorptive (similar term)
+hygroton|1
+(noun)|chlorthalidone|Hygroton|Thalidone|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+hygrotrama|1
+(noun)|Hygrotrama|genus Hygrotrama|fungus genus (generic term)
+hygrotrama foetens|1
+(noun)|Hygrotrama foetens|waxycap (generic term)
+hyla|1
+(noun)|Hyla|genus Hyla|amphibian genus (generic term)
+hyla arenicolor|1
+(noun)|canyon treefrog|Hyla arenicolor|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+hyla crucifer|1
+(noun)|spring peeper|Hyla crucifer|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+hyla regilla|1
+(noun)|Pacific tree toad|Hyla regilla|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+hylactophryne|1
+(noun)|Hylactophryne|genus Hylactophryne|amphibian genus (generic term)
+hylactophryne augusti|1
+(noun)|barking frog|robber frog|Hylactophryne augusti|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+hylidae|1
+(noun)|Hylidae|family Hylidae|amphibian family (generic term)
+hylobates|1
+(noun)|Hylobates|genus Hylobates|mammal genus (generic term)
+hylobates lar|1
+(noun)|gibbon|Hylobates lar|lesser ape (generic term)
+hylobates syndactylus|1
+(noun)|siamang|Hylobates syndactylus|Symphalangus syndactylus|lesser ape (generic term)
+hylobatidae|1
+(noun)|Hylobatidae|family Hylobatidae|mammal family (generic term)
+hylocereus|1
+(noun)|Hylocereus|genus Hylocereus|caryophylloid dicot genus (generic term)
+hylocichla|1
+(noun)|Hylocichla|genus Hylocichla|bird genus (generic term)
+hylocichla fuscescens|1
+(noun)|veery|Wilson's thrush|Hylocichla fuscescens|thrush (generic term)
+hylocichla guttata|1
+(noun)|hermit thrush|Hylocichla guttata|thrush (generic term)
+hylocichla mustelina|1
+(noun)|wood thrush|Hylocichla mustelina|thrush (generic term)
+hylophylax|1
+(noun)|Hylophylax|genus Hylophylax|bird genus (generic term)
+hylophylax naevioides|1
+(noun)|spotted antbird|Hylophylax naevioides|antbird (generic term)|ant bird (generic term)
+hyman george rickover|1
+(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer (generic term)
+hyman rickover|1
+(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer (generic term)
+hymen|2
+(noun)|Hymen|Greek deity (generic term)
+(noun)|maidenhead|virginal membrane|mucous membrane (generic term)|mucosa (generic term)
+hymenaea|1
+(noun)|Hymenaea|genus Hymenaea|rosid dicot genus (generic term)
+hymenaea courbaril|1
+(noun)|courbaril|Hymenaea courbaril|locust tree (generic term)|locust (generic term)
+hymenal|1
+(adj)|mucous membrane|mucosa (related term)
+hymenanthera|1
+(noun)|Hymenanthera|genus Hymenanthera|dilleniid dicot genus (generic term)
+hymeneal|2
+(adj)|ritual|rite (related term)
+(noun)|hymn (generic term)|anthem (generic term)
+hymeneals|1
+(noun)|wedding|wedding ceremony|nuptials|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+hymenium|1
+(noun)|reproductive structure (generic term)
+hymenogastrales|1
+(noun)|Hymenogastrales|order Hymenogastrales|fungus order (generic term)
+hymenomycetes|1
+(noun)|Hymenomycetes|class Hymenomycetes|class (generic term)
+hymenophyllaceae|1
+(noun)|Hymenophyllaceae|family Hymenophyllaceae|fern family (generic term)
+hymenophyllum|1
+(noun)|Hymenophyllum|genus Hymenophyllum|fern genus (generic term)
+hymenopter|1
+(noun)|hymenopterous insect|hymenopteran|hymenopteron|insect (generic term)
+hymenoptera|1
+(noun)|Hymenoptera|order Hymenoptera|animal order (generic term)
+hymenopteran|1
+(noun)|hymenopterous insect|hymenopteron|hymenopter|insect (generic term)
+hymenopteron|1
+(noun)|hymenopterous insect|hymenopteran|hymenopter|insect (generic term)
+hymenopterous|1
+(adj)|animal order (related term)
+hymenopterous insect|1
+(noun)|hymenopteran|hymenopteron|hymenopter|insect (generic term)
+hymenoxys acaulis|1
+(noun)|stemless hymenoxys|Tetraneuris acaulis|Hymenoxys acaulis|wildflower (generic term)|wild flower (generic term)
+hymenoxys grandiflora|1
+(noun)|old man of the mountain|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower (generic term)|wild flower (generic term)
+hymie|1
+(noun)|kike|sheeny|yid|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+hymn|3
+(noun)|anthem|religious song (generic term)
+(verb)|sing (generic term)
+(verb)|laud (generic term)|extol (generic term)|exalt (generic term)|glorify (generic term)|proclaim (generic term)
+hymnal|1
+(noun)|hymnbook|hymnary|songbook (generic term)
+hymnary|1
+(noun)|hymnal|hymnbook|songbook (generic term)
+hymnbook|1
+(noun)|hymnal|hymnary|songbook (generic term)
+hymnody|1
+(noun)|psalmody|singing (generic term)|vocalizing (generic term)
+hynerpeton|1
+(noun)|Hynerpeton|genus Hynerpeton|amphibian genus (generic term)
+hynerpeton bassetti|1
+(noun)|Hynerpeton bassetti|amphibian (generic term)
+hyoid|2
+(adj)|bone|os (related term)
+(noun)|hyoid bone|os hyoideum|bone (generic term)|os (generic term)
+hyoid bone|1
+(noun)|hyoid|os hyoideum|bone (generic term)|os (generic term)
+hyoscine|1
+(noun)|scopolamine|alkaloid (generic term)
+hyoscyamine|1
+(noun)|alkaloid (generic term)|poison (generic term)|toxicant (generic term)|poisonous substance (generic term)
+hyoscyamus|1
+(noun)|Hyoscyamus|genus Hyoscyamus|asterid dicot genus (generic term)
+hyoscyamus muticus|1
+(noun)|Egyptian henbane|Hyoscyamus muticus|herb (generic term)|herbaceous plant (generic term)
+hyoscyamus niger|1
+(noun)|henbane|black henbane|stinking nightshade|Hyoscyamus niger|herb (generic term)|herbaceous plant (generic term)
+hypaethral|1
+(adj)|hypethral|unenclosed (similar term)
+hypallage|1
+(noun)|rhetorical device (generic term)
+hypanthium|1
+(noun)|floral cup|calyx tube|plant organ (generic term)
+hypatia|1
+(noun)|Hypatia|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)|philosopher (generic term)
+hype|1
+(noun)|ballyhoo|hoopla|plug|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+hype up|1
+(verb)|psych up|agitate (generic term)|rouse (generic term)|turn on (generic term)|charge (generic term)|commove (generic term)|excite (generic term)|charge up (generic term)
+hypentelium|1
+(noun)|Hypentelium|genus Hypentelium|fish genus (generic term)
+hypentelium nigricans|1
+(noun)|hog sucker|hog molly|Hypentelium nigricans|sucker (generic term)
+hyper-eutectoid steel|1
+(noun)|carbon steel (generic term)
+hyperacidity|1
+(noun)|acidity (generic term)
+hyperactive|1
+(adj)|overactive|active (similar term)
+hyperactivity|1
+(noun)|disorder (generic term)|upset (generic term)
+hyperacusia|1
+(noun)|hyperacusis|auditory hyperesthesia|hearing impairment (generic term)|hearing disorder (generic term)
+hyperacusis|1
+(noun)|hyperacusia|auditory hyperesthesia|hearing impairment (generic term)|hearing disorder (generic term)
+hyperadrenalism|1
+(noun)|Cushing's disease|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hyperadrenocorticism|1
+(noun)|Cushing's syndrome|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hyperaemia|1
+(noun)|hyperemia|congestion (generic term)
+hyperaldosteronism|1
+(noun)|aldosteronism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hyperalimentation|1
+(noun)|total parenteral nutrition|TPN|feeding (generic term)|alimentation (generic term)
+hyperbaric chamber|1
+(noun)|chamber (generic term)
+hyperbaton|1
+(noun)|rhetorical device (generic term)
+hyperbetalipoproteinemia|1
+(noun)|hyperlipoproteinemia (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+hyperbilirubinemia|1
+(noun)|pathology (generic term)
+hyperbilirubinemia of the newborn|1
+(noun)|neonatal hyperbilirubinemia|hyperbilirubinemia (generic term)
+hyperbola|1
+(noun)|conic section (generic term)|conic (generic term)
+hyperbole|1
+(noun)|exaggeration|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+hyperbolic|2
+(adj)|exaggerated|inflated|increased (similar term)
+(adj)|conic section|conic (related term)
+hyperbolic geometry|1
+(noun)|non-Euclidean geometry (generic term)
+hyperbolically|1
+(adv)|exaggeratedly
+hyperbolize|1
+(verb)|overstate|exaggerate|overdraw|hyerbolise|magnify|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+hyperboloid|1
+(noun)|quadric (generic term)|quadric surface (generic term)
+hyperboloidal|1
+(adj)|rounded (similar term)
+hyperborean|1
+(noun)|Hyperborean|mythical being (generic term)
+hypercalcaemia|1
+(noun)|hypercalcemia|symptom (generic term)|hypocalcemia (antonym)
+hypercalcemia|1
+(noun)|hypercalcaemia|symptom (generic term)|hypocalcemia (antonym)
+hypercalcinuria|1
+(noun)|hypercalciuria|symptom (generic term)
+hypercalciuria|1
+(noun)|hypercalcinuria|symptom (generic term)
+hypercapnia|1
+(noun)|hypercarbia|physiological state (generic term)|physiological condition (generic term)|hypocapnia (antonym)
+hypercarbia|1
+(noun)|hypercapnia|physiological state (generic term)|physiological condition (generic term)|hypocapnia (antonym)
+hypercatalectic|2
+(adj)|acatalectic (antonym)|catalectic (antonym)
+(noun)|line of poetry (generic term)|line of verse (generic term)
+hypercellularity|1
+(noun)|cellularity (generic term)
+hypercholesteremia|1
+(noun)|hypercholesterolemia|symptom (generic term)
+hypercholesterolemia|1
+(noun)|hypercholesteremia|symptom (generic term)
+hyperchromic anaemia|1
+(noun)|hyperchromic anemia|anemia (generic term)|anaemia (generic term)
+hyperchromic anemia|1
+(noun)|hyperchromic anaemia|anemia (generic term)|anaemia (generic term)
+hypercoaster|1
+(noun)|roller coaster (generic term)|big dipper (generic term)|chute-the-chute (generic term)
+hypercritical|1
+(adj)|overcritical|critical (similar term)
+hyperdactyly|1
+(noun)|polydactyly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+hyperemesis|1
+(noun)|vomit (generic term)|vomiting (generic term)|emesis (generic term)|regurgitation (generic term)|disgorgement (generic term)|puking (generic term)
+hyperemesis gravidarum|1
+(noun)|hyperemesis (generic term)
+hyperemia|1
+(noun)|hyperaemia|congestion (generic term)
+hyperemic|1
+(adj)|congestion (related term)
+hyperextend|1
+(verb)|exsert (generic term)|stretch out (generic term)|put out (generic term)|extend (generic term)|hold out (generic term)|stretch forth (generic term)
+hyperextension|1
+(noun)|extension (generic term)
+hyperfine|1
+(adj)|thin (similar term)
+hyperfocal distance|1
+(noun)|distance (generic term)
+hyperglycaemia|1
+(noun)|hyperglycemia|symptom (generic term)|hypoglycemia (antonym)
+hyperglycemia|1
+(noun)|hyperglycaemia|symptom (generic term)|hypoglycemia (antonym)
+hyperglyphe perciformis|1
+(noun)|barrelfish|black rudderfish|Hyperglyphe perciformis|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+hyperhidrosis|1
+(noun)|hyperidrosis|polyhidrosis|perspiration (generic term)|sweating (generic term)|diaphoresis (generic term)|sudation (generic term)|hidrosis (generic term)
+hypericaceae|1
+(noun)|Hypericaceae|family Hypericaceae|dilleniid dicot family (generic term)
+hypericales|1
+(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order (generic term)
+hypericism|1
+(noun)|dermatitis (generic term)
+hypericum|1
+(noun)|Hypericum|genus Hypericum|dilleniid dicot genus (generic term)
+hypericum androsaemum|1
+(noun)|common St John's wort|tutsan|Hypericum androsaemum|St John's wort (generic term)
+hypericum ascyron|1
+(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort (generic term)
+hypericum calycinum|1
+(noun)|creeping St John's wort|Hypericum calycinum|St John's wort (generic term)
+hypericum crux andrae|1
+(noun)|St Andrews's cross|Hypericum crux andrae|St John's wort (generic term)
+hypericum gentianoides|1
+(noun)|orange grass|nitweed|pineweed|pine-weed|Hypericum gentianoides|St John's wort (generic term)
+hypericum hypericoides|1
+(noun)|low St Andrew's cross|Hypericum hypericoides|St John's wort (generic term)
+hypericum maculatum|1
+(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort (generic term)
+hypericum perforatum|1
+(noun)|klammath weed|Hypericum perforatum|St John's wort (generic term)
+hypericum prolificum|1
+(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort (generic term)
+hypericum pyramidatum|1
+(noun)|great St John's wort|Hypericum ascyron|Hypericum pyramidatum|St John's wort (generic term)
+hypericum spathulatum|1
+(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort (generic term)
+hypericum tetrapterum|1
+(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort (generic term)
+hypericum virginianum|1
+(noun)|marsh St-John's wort|Hypericum virginianum|St John's wort (generic term)
+hyperidrosis|1
+(noun)|hyperhidrosis|polyhidrosis|perspiration (generic term)|sweating (generic term)|diaphoresis (generic term)|sudation (generic term)|hidrosis (generic term)
+hyperion|1
+(noun)|Hyperion|Titan (generic term)
+hyperkalemia|1
+(noun)|symptom (generic term)|hypokalemia (antonym)
+hyperkinetic syndrome|1
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+hyperlink|1
+(noun)|link (generic term)
+hyperlipaemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+hyperlipemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+hyperlipidaemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+hyperlipidemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+hyperlipoidaemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|symptom (generic term)
+hyperlipoidemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidaemia|symptom (generic term)
+hyperlipoproteinemia|1
+(noun)|metabolic disorder (generic term)
+hypermarket|1
+(noun)|supermarket (generic term)
+hypermastigina|1
+(noun)|Hypermastigina|order Hypermastigina|animal order (generic term)
+hypermastigote|1
+(noun)|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+hypermedia|1
+(noun)|hypermedia system|interactive multimedia|interactive multimedia system|multimedia (generic term)|multimedia system (generic term)
+hypermedia system|1
+(noun)|hypermedia|interactive multimedia|interactive multimedia system|multimedia (generic term)|multimedia system (generic term)
+hypermenorrhea|1
+(noun)|menorrhagia|menstruation (generic term)|menses (generic term)|menstruum (generic term)|catamenia (generic term)|period (generic term)|flow (generic term)|symptom (generic term)
+hypermetropia|1
+(noun)|hyperopia|hypermetropy|farsightedness|longsightedness|ametropia (generic term)|myopia (antonym)
+hypermetropic|1
+(adj)|hyperopic|farsighted (similar term)|presbyopic (similar term)
+hypermetropy|1
+(noun)|hyperopia|hypermetropia|farsightedness|longsightedness|ametropia (generic term)|myopia (antonym)
+hypermotility|1
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+hypernatremia|1
+(noun)|symptom (generic term)|hyponatremia (antonym)
+hypernym|1
+(noun)|superordinate|superordinate word|word (generic term)
+hypernymy|1
+(noun)|superordination|semantic relation (generic term)
+hyperoartia|1
+(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order (generic term)
+hyperodontidae|1
+(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family (generic term)
+hyperoglyphe|1
+(noun)|Hyperoglyphe|genus Hyperoglyphe|fish genus (generic term)
+hyperon|1
+(noun)|baryon (generic term)|heavy particle (generic term)
+hyperoodon|1
+(noun)|Hyperoodon|genus Hyperoodon|mammal genus (generic term)
+hyperoodon ampullatus|1
+(noun)|bottle-nosed whale|bottlenose whale|bottlenose|Hyperoodon ampullatus|beaked whale (generic term)
+hyperope|1
+(noun)|visually impaired person (generic term)
+hyperopia|1
+(noun)|hypermetropia|hypermetropy|farsightedness|longsightedness|ametropia (generic term)|myopia (antonym)
+hyperopic|1
+(adj)|hypermetropic|farsighted (similar term)|presbyopic (similar term)
+hyperotreta|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+hyperparathyroidism|1
+(noun)|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)|hypoparathyroidism (antonym)
+hyperpiesia|1
+(noun)|essential hypertension|hyperpiesis|high blood pressure (generic term)|hypertension (generic term)
+hyperpiesis|1
+(noun)|essential hypertension|hyperpiesia|high blood pressure (generic term)|hypertension (generic term)
+hyperpigmentation|1
+(noun)|physiological state (generic term)|physiological condition (generic term)|hypopigmentation (antonym)
+hyperpituitarism|1
+(noun)|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hyperplasia|1
+(noun)|dysplasia (generic term)
+hyperpnea|1
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)|hypopnea (antonym)
+hyperpyrexia|1
+(noun)|hyperthermia (generic term)|hyperthermy (generic term)|fever (generic term)|febrility (generic term)|febricity (generic term)|pyrexia (generic term)|feverishness (generic term)
+hypersecretion|1
+(noun)|secretion (generic term)|secernment (generic term)
+hypersensitised|1
+(adj)|allergic|hypersensitive|hypersensitized|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+hypersensitive|1
+(adj)|allergic|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+hypersensitivity|2
+(noun)|sensitivity (generic term)|predisposition (generic term)
+(noun)|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+hypersensitivity reaction|1
+(noun)|hypersensitivity (generic term)
+hypersensitized|1
+(adj)|allergic|hypersensitive|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+hypersomnia|1
+(noun)|sleep disorder (generic term)|insomnia (antonym)
+hypersplenism|1
+(noun)|symptom (generic term)
+hyperstat|1
+(noun)|diazoxide|Hyperstat|vasodilator (generic term)|vasodilative (generic term)
+hypertensin|1
+(noun)|angiotensin|angiotonin|Hypertensin|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+hypertension|1
+(noun)|high blood pressure|cardiovascular disease (generic term)|hypotension (antonym)
+hypertensive|2
+(adj)|hypotensive (antonym)|normotensive (antonym)
+(noun)|patient (generic term)
+hypertext|1
+(noun)|machine-readable text (generic term)
+hypertext mark-up language|1
+(noun)|hypertext markup language|HTML|markup language (generic term)
+hypertext markup language|1
+(noun)|hypertext mark-up language|HTML|markup language (generic term)
+hypertext system|1
+(noun)|object-oriented database management system (generic term)
+hypertext transfer protocol|1
+(noun)|HTTP|protocol (generic term)|communications protocol (generic term)
+hyperthermal|1
+(adj)|physiological state|physiological condition (related term)
+hyperthermia|1
+(noun)|hyperthermy|physiological state (generic term)|physiological condition (generic term)|hypothermia (antonym)
+hyperthermy|1
+(noun)|hyperthermia|physiological state (generic term)|physiological condition (generic term)|hypothermia (antonym)
+hyperthyroidism|1
+(noun)|thyrotoxicosis|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)|hypothyroidism (antonym)
+hypertonia|1
+(noun)|hypertonus|hypertonicity|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypotonicity (antonym)|hypotonus (antonym)|hypotonia (antonym)
+hypertonic|2
+(adj)|hypotonic (antonym)
+(adj)|hypotonic (antonym)|isotonic (antonym)
+hypertonicity|2
+(noun)|osmotic pressure (generic term)|hypotonicity (antonym)
+(noun)|hypertonia|hypertonus|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypotonicity (antonym)|hypotonus (antonym)|hypotonia (antonym)
+hypertonus|1
+(noun)|hypertonia|hypertonicity|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypotonicity (antonym)|hypotonus (antonym)|hypotonia (antonym)
+hypertrophic cardiomyopathy|1
+(noun)|cardiomyopathy (generic term)|myocardiopathy (generic term)
+hypertrophic rosacea|1
+(noun)|rhinophyma|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+hypertrophied|1
+(adj)|enlarged|atrophied (antonym)
+hypertrophy|2
+(noun)|dysplasia (generic term)
+(verb)|grow (generic term)
+hypervelocity|1
+(noun)|speed (generic term)|velocity (generic term)
+hyperventilate|2
+(verb)|treat (generic term)|care for (generic term)
+(verb)|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+hyperventilation|1
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+hypervitaminosis|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hypervolaemia|1
+(noun)|hypervolemia|blood disease (generic term)|blood disorder (generic term)|hypovolemia (antonym)
+hypervolemia|1
+(noun)|hypervolaemia|blood disease (generic term)|blood disorder (generic term)|hypovolemia (antonym)
+hypesthesia|1
+(noun)|hypoesthesia|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+hypethral|1
+(adj)|hypaethral|unenclosed (similar term)
+hypha|1
+(noun)|fibril (generic term)|filament (generic term)|strand (generic term)
+hyphantria|1
+(noun)|Hyphantria|genus Hyphantria|arthropod genus (generic term)
+hyphantria cunea|2
+(noun)|fall webworm|Hyphantria cunea|webworm (generic term)
+(noun)|Hyphantria cunea|webworm moth (generic term)
+hyphema|1
+(noun)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+hyphen|2
+(noun)|dash|punctuation (generic term)|punctuation mark (generic term)
+(verb)|hyphenate|spell (generic term)|write (generic term)
+hyphenate|1
+(verb)|hyphen|spell (generic term)|write (generic term)
+hyphenated|1
+(adj)|combined (similar term)
+hyphenation|2
+(noun)|word division|division (generic term)
+(noun)|punctuation (generic term)
+hypnagogic|1
+(adj)|soporific|soporiferous|somniferous|somnific|hypnogogic|depressant (similar term)
+hypnagogue|1
+(noun)|agent (generic term)
+hypnoanalysis|1
+(noun)|psychoanalysis (generic term)|analysis (generic term)|depth psychology (generic term)
+hypnogenesis|1
+(noun)|induction (generic term)
+hypnogogic|1
+(adj)|soporific|soporiferous|somniferous|somnific|hypnagogic|depressant (similar term)
+hypnoid|1
+(adj)|asleep (similar term)
+hypnopedia|1
+(noun)|sleep-learning|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+hypnophobia|1
+(noun)|simple phobia (generic term)
+hypnos|1
+(noun)|Hypnos|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+hypnosis|1
+(noun)|psychological state (generic term)|mental state (generic term)
+hypnotherapy|1
+(noun)|psychotherapy (generic term)
+hypnotic|3
+(adj)|psychological state|mental state (related term)
+(adj)|mesmeric|mesmerizing|spellbinding|attractive (similar term)
+(noun)|soporific|drug (generic term)|hypnagogue (generic term)
+hypnotic trance|1
+(noun)|trance (generic term)
+hypnotise|1
+(verb)|hypnotize|mesmerize|mesmerise|sedate (generic term)|calm (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)
+hypnotised|1
+(adj)|fascinated|hypnotized|mesmerized|mesmerised|spellbound|spell-bound|transfixed|enchanted (similar term)
+hypnotiser|1
+(noun)|hypnotist|hypnotizer|mesmerist|mesmerizer|psychologist (generic term)
+hypnotism|1
+(noun)|mesmerism|suggestion|influence (generic term)
+hypnotist|1
+(noun)|hypnotizer|hypnotiser|mesmerist|mesmerizer|psychologist (generic term)
+hypnotize|1
+(verb)|hypnotise|mesmerize|mesmerise|sedate (generic term)|calm (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)
+hypnotized|1
+(adj)|fascinated|hypnotised|mesmerized|mesmerised|spellbound|spell-bound|transfixed|enchanted (similar term)
+hypnotizer|1
+(noun)|hypnotist|hypnotiser|mesmerist|mesmerizer|psychologist (generic term)
+hypo|2
+(noun)|sodium thiosulphate|sodium thiosulfate|fixing agent (generic term)|fixer (generic term)
+(noun)|hypodermic syringe|hypodermic|syringe (generic term)
+hypo-eutectoid steel|1
+(noun)|carbon steel (generic term)
+hypoactive|1
+(adj)|underactive|inactive (similar term)
+hypoadrenalism|1
+(noun)|Addison's disease|Addison's syndrome|hypoadrenocorticism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hypoadrenocorticism|1
+(noun)|Addison's disease|Addison's syndrome|hypoadrenalism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)
+hypobasidium|1
+(noun)|plant organ (generic term)
+hypobetalipoproteinemia|1
+(noun)|hypolipoproteinemia (generic term)
+hypoblast|1
+(noun)|endoderm|entoderm|endoblast|entoblast|germ layer (generic term)
+hypocalcaemia|1
+(noun)|hypocalcemia|symptom (generic term)|hypercalcemia (antonym)
+hypocalcemia|1
+(noun)|hypocalcaemia|symptom (generic term)|hypercalcemia (antonym)
+hypocapnia|1
+(noun)|acapnia|physiological state (generic term)|physiological condition (generic term)|hypercapnia (antonym)
+hypocellularity|1
+(noun)|cellularity (generic term)
+hypochaeris|1
+(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus (generic term)
+hypochaeris radicata|1
+(noun)|cat's-ear|California dandelion|capeweed|gosmore|Hypochaeris radicata|weed (generic term)
+hypochlorite|1
+(noun)|salt (generic term)
+hypochlorous acid|1
+(noun)|acid (generic term)
+hypochoeris|1
+(noun)|Hypochaeris|genus Hypochaeris|Hypochoeris|genus Hypochoeris|asterid dicot genus (generic term)
+hypochondria|1
+(noun)|hypochondriasis|anxiety (generic term)|anxiousness (generic term)
+hypochondriac|2
+(adj)|hypochondriacal|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|patient (generic term)
+hypochondriacal|1
+(adj)|hypochondriac|neurotic (similar term)|psychoneurotic (similar term)
+hypochondriasis|1
+(noun)|hypochondria|anxiety (generic term)|anxiousness (generic term)
+hypochondrium|1
+(noun)|area (generic term)|region (generic term)
+hypochromic anaemia|1
+(noun)|hypochromic anemia|anemia (generic term)|anaemia (generic term)
+hypochromic anemia|1
+(noun)|hypochromic anaemia|anemia (generic term)|anaemia (generic term)
+hypocorism|1
+(noun)|pet name|name (generic term)
+hypocreaceae|1
+(noun)|Hypocreaceae|family Hypocreaceae|fungus family (generic term)
+hypocreales|1
+(noun)|Hypocreales|order Hypocreales|fungus order (generic term)
+hypocrisy|2
+(noun)|lip service|pretense (generic term)|pretence (generic term)|feigning (generic term)|dissembling (generic term)
+(noun)|insincerity (generic term)|falseness (generic term)|hollowness (generic term)
+hypocrite|1
+(noun)|dissembler|dissimulator|phony|phoney|pretender|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+hypocritical|1
+(adj)|insincere (similar term)
+hypocycloid|1
+(noun)|roulette (generic term)|line roulette (generic term)
+hypoderma|1
+(noun)|Hypoderma|genus Hypoderma|arthropod genus (generic term)
+hypodermal|1
+(adj)|layer (related term)
+hypodermatidae|1
+(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family (generic term)
+hypodermic|2
+(adj)|subcutaneous|connective tissue|body covering (related term)
+(noun)|hypodermic syringe|hypo|syringe (generic term)
+hypodermic needle|1
+(noun)|needle (generic term)
+hypodermic syringe|1
+(noun)|hypodermic|hypo|syringe (generic term)
+hypodermis|1
+(noun)|layer (generic term)
+hypoesthesia|1
+(noun)|hypesthesia|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+hypogammaglobulinemia|1
+(noun)|immunodeficiency (generic term)
+hypogastric artery|1
+(noun)|internal iliac artery|iliac artery (generic term)|arteria iliaca (generic term)
+hypogastric plexus|1
+(noun)|plexus hypogastricus|nerve plexus (generic term)
+hypogastric vein|1
+(noun)|internal iliac vein|iliac vein (generic term)|vena iliaca (generic term)
+hypoglossal|1
+(noun)|hypoglossal nerve|nervus hypoglosus|twelfth cranial nerve|cranial nerve (generic term)
+hypoglossal nerve|1
+(noun)|hypoglossal|nervus hypoglosus|twelfth cranial nerve|cranial nerve (generic term)
+hypoglycaemia|1
+(noun)|hypoglycemia|symptom (generic term)|hyperglycemia (antonym)
+hypoglycaemic|1
+(adj)|hypoglycemic|symptom (related term)
+hypoglycaemic agent|1
+(noun)|hypoglycemic agent|agent (generic term)
+hypoglycemia|1
+(noun)|hypoglycaemia|symptom (generic term)|hyperglycemia (antonym)
+hypoglycemic|1
+(adj)|hypoglycaemic|symptom (related term)
+hypoglycemic agent|1
+(noun)|hypoglycaemic agent|agent (generic term)
+hypognathous|1
+(adj)|prognathous|prognathic|lantern-jawed (similar term)|opisthognathous (antonym)
+hypogonadism|1
+(noun)|incompetence (generic term)
+hypokalemia|1
+(noun)|symptom (generic term)|hyperkalemia (antonym)
+hypolipoproteinemia|1
+(noun)|metabolic disorder (generic term)
+hyponatremia|1
+(noun)|symptom (generic term)|hypernatremia (antonym)
+hyponitrous acid|1
+(noun)|acid (generic term)
+hyponym|1
+(noun)|subordinate|subordinate word|word (generic term)
+hyponymy|1
+(noun)|subordination|semantic relation (generic term)
+hypopachus|1
+(noun)|Hypopachus|genus Hypopachus|amphibian genus (generic term)
+hypoparathyroidism|1
+(noun)|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)|hyperparathyroidism (antonym)
+hypophosphoric acid|1
+(noun)|oxyacid (generic term)|oxygen acid (generic term)
+hypophosphorous acid|1
+(noun)|phosphorous acid|orthophosphorous acid|oxyacid (generic term)|oxygen acid (generic term)
+hypophyseal|1
+(adj)|hypophysial|endocrine gland|endocrine|ductless gland (related term)
+hypophyseal stalk|1
+(noun)|infundibulum (generic term)
+hypophysectomise|1
+(verb)|hypophysectomize|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+hypophysectomised|1
+(adj)|hypophysectomized
+hypophysectomize|1
+(verb)|hypophysectomise|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+hypophysectomized|1
+(adj)|hypophysectomised
+hypophysectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+hypophysial|1
+(adj)|hypophyseal|endocrine gland|endocrine|ductless gland (related term)
+hypophysis|1
+(noun)|pituitary|pituitary gland|pituitary body|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+hypopigmentation|1
+(noun)|physiological state (generic term)|physiological condition (generic term)|hyperpigmentation (antonym)
+hypopitys|1
+(noun)|Hypopitys|genus Hypopitys|dilleniid dicot genus (generic term)
+hypoplasia|1
+(noun)|dysplasia (generic term)
+hypoplastic anaemia|1
+(noun)|hypoplastic anemia|anemia (generic term)|anaemia (generic term)
+hypoplastic anemia|1
+(noun)|hypoplastic anaemia|anemia (generic term)|anaemia (generic term)
+hypoplastic dwarf|1
+(noun)|primordial dwarf|true dwarf|normal dwarf|dwarf (generic term)|midget (generic term)|nanus (generic term)
+hypopnea|1
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)|hyperpnea (antonym)
+hypoproteinemia|1
+(noun)|symptom (generic term)
+hyposmia|1
+(noun)|dysomia (generic term)
+hypospadias|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+hypostasis|4
+(noun)|epistasis|organic process (generic term)|biological process (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|hypostasis of Christ|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+(noun)|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+hypostasis of christ|1
+(noun)|hypostasis|hypostasis of Christ|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+hypostatisation|1
+(noun)|hypostatization|reification|objectification (generic term)
+hypostatise|1
+(verb)|hypostatize|reify (generic term)
+hypostatization|1
+(noun)|hypostatisation|reification|objectification (generic term)
+hypostatize|1
+(verb)|hypostatise|reify (generic term)
+hypotension|1
+(noun)|cardiovascular disease (generic term)|hypertension (antonym)
+hypotensive|2
+(adj)|normotensive (antonym)|hypertensive (antonym)
+(noun)|patient (generic term)
+hypotenuse|1
+(noun)|flank (generic term)
+hypothalamic|1
+(adj)|neural structure (related term)
+hypothalamic releasing factor|1
+(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+hypothalamic releasing hormone|1
+(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing factor|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+hypothalamus|1
+(noun)|neural structure (generic term)
+hypothecate|2
+(verb)|pledge (generic term)
+(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|suppose|expect (generic term)|anticipate (generic term)
+hypothermia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)|hyperthermia (antonym)
+hypothermic|1
+(adj)|physiological state|physiological condition (related term)
+hypothesis|3
+(noun)|proposal (generic term)
+(noun)|possibility|theory|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|guess|conjecture|supposition|surmise|surmisal|speculation|opinion (generic term)|view (generic term)
+hypothesise|1
+(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+hypothesize|1
+(verb)|speculate|theorize|theorise|conjecture|hypothesise|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+hypothetic|1
+(adj)|conjectural|divinatory|hypothetical|supposed|suppositional|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+hypothetical|2
+(adj)|conjectural|divinatory|hypothetic|supposed|suppositional|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+(noun)|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+hypothetical creature|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+hypothetical imperative|1
+(noun)|principle (generic term)|precept (generic term)
+hypothrombinemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+hypothyroidism|1
+(noun)|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)|hyperthyroidism (antonym)
+hypotonia|1
+(noun)|hypotonus|hypotonicity|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypertonicity (antonym)|hypertonus (antonym)|hypertonia (antonym)
+hypotonic|2
+(adj)|hypertonic (antonym)
+(adj)|isotonic (antonym)|hypertonic (antonym)
+hypotonicity|2
+(noun)|osmotic pressure (generic term)|hypertonicity (antonym)
+(noun)|hypotonia|hypotonus|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypertonicity (antonym)|hypertonus (antonym)|hypertonia (antonym)
+hypotonus|1
+(noun)|hypotonia|hypotonicity|tonicity (generic term)|tonus (generic term)|tone (generic term)|hypertonicity (antonym)|hypertonus (antonym)|hypertonia (antonym)
+hypovitaminosis|1
+(noun)|avitaminosis|malnutrition (generic term)
+hypovolaemia|1
+(noun)|hypovolemia|blood disease (generic term)|blood disorder (generic term)|hypervolemia (antonym)
+hypovolaemic|1
+(adj)|hypovolemic|blood disease|blood disorder (related term)
+hypovolemia|1
+(noun)|hypovolaemia|blood disease (generic term)|blood disorder (generic term)|hypervolemia (antonym)
+hypovolemic|1
+(adj)|hypovolaemic|blood disease|blood disorder (related term)
+hypovolemic shock|1
+(noun)|shock (generic term)
+hypoxia|1
+(noun)|drive (generic term)
+hypoxic hypoxia|1
+(noun)|hypoxia (generic term)
+hypoxidaceae|1
+(noun)|Hypoxidaceae|family Hypoxidaceae|liliid monocot family (generic term)
+hypoxis|1
+(noun)|Hypoxis|genus Hypoxis|liliid monocot genus (generic term)
+hypoxis hirsuta|1
+(noun)|American star grass|Hypoxis hirsuta|star grass (generic term)
+hypozeugma|1
+(noun)|rhetorical device (generic term)
+hypozeuxis|1
+(noun)|rhetorical device (generic term)
+hypsiglena|1
+(noun)|Hypsiglena|genus Hypsiglena|reptile genus (generic term)
+hypsiglena torquata|1
+(noun)|night snake|Hypsiglena torquata|colubrid snake (generic term)|colubrid (generic term)
+hypsiprymnodon|1
+(noun)|Hypsiprymnodon|genus Hypsiprymnodon|mammal genus (generic term)
+hypsiprymnodon moschatus|1
+(noun)|musk kangaroo|Hypsiprymnodon moschatus|kangaroo (generic term)
+hypsography|2
+(noun)|geology (generic term)
+(noun)|hypsometry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+hypsometer|1
+(noun)|altimeter (generic term)
+hypsometry|1
+(noun)|hypsography|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+hyracoidea|1
+(noun)|Hyracoidea|order Hyracoidea|animal order (generic term)
+hyracotherium|1
+(noun)|Hyracotherium|genus Hyracotherium|mammal genus (generic term)
+hyrax|1
+(noun)|coney|cony|dassie|das|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+hyson|1
+(noun)|green tea (generic term)
+hyssop|2
+(noun)|Hyssopus officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+hyssop loosestrife|1
+(noun)|grass poly|Lythrum hyssopifolia|loosestrife (generic term)
+hyssop oil|1
+(noun)|oil (generic term)
+hyssopus|1
+(noun)|Hyssopus|genus Hyssopus|asterid dicot genus (generic term)
+hyssopus officinalis|1
+(noun)|hyssop|Hyssopus officinalis|herb (generic term)|herbaceous plant (generic term)
+hysterectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+hysteresis|1
+(noun)|physical phenomenon (generic term)
+hysteria|3
+(noun)|craze|delirium|frenzy|fury|mania (generic term)|manic disorder (generic term)
+(noun)|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|hysterical neurosis|neurosis (generic term)|neuroticism (generic term)|psychoneurosis (generic term)
+hysteric|2
+(adj)|hysterical|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+hysterical|2
+(adj)|hysteric|neurotic (similar term)|psychoneurotic (similar term)
+(adj)|agitated (similar term)
+hysterical neurosis|1
+(noun)|hysteria|neurosis (generic term)|neuroticism (generic term)|psychoneurosis (generic term)
+hysterics|1
+(noun)|attack (generic term)
+hysterocatalepsy|1
+(noun)|hysteria (generic term)|hysterical neurosis (generic term)
+hysteron proteron|2
+(noun)|rhetorical device (generic term)
+(noun)|logical fallacy (generic term)
+hysterosalpingogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+hysteroscopy|1
+(noun)|endoscopy (generic term)
+hysterotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+hystricidae|1
+(noun)|Hystricidae|family Hystricidae|mammal family (generic term)
+hystricomorpha|1
+(noun)|Hystricomorpha|suborder Hystricomorpha|animal order (generic term)
+hytrin|1
+(noun)|terazosin|Hytrin|antihypertensive (generic term)|antihypertensive drug (generic term)|alpha blocker (generic term)|alpha-blocker (generic term)|alpha-adrenergic blocker (generic term)|alpha-adrenergic blocking agent (generic term)
+hz|1
+(noun)|hertz|Hz|cycle per second|cycles/second|cps|cycle|rate (generic term)
+i|4
+(adj)|one|1|ane|cardinal (similar term)
+(noun)|iodine|iodin|I|atomic number 53|chemical element (generic term)|element (generic term)|halogen (generic term)
+(noun)|one|1|I|ace|single|unity|digit (generic term)|figure (generic term)
+(noun)|I|letter i|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+i-beam|1
+(noun)|I-beam|girder (generic term)
+i. a. richards|1
+(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic (generic term)|semanticist (generic term)|semiotician (generic term)
+i. f. stone|1
+(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist (generic term)
+i. m. pei|1
+(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect (generic term)|designer (generic term)
+i.d.|1
+(noun)|ID|I.D.|badge (generic term)|positive identification (generic term)
+i.e.|1
+(adv)|ie|id est
+i.e.d.|1
+(noun)|improvised explosive device|I.E.D.|IED|explosive device (generic term)
+i.q.|1
+(noun)|intelligence quotient|IQ|I.Q.|ratio (generic term)
+i.w.w.|1
+(noun)|Industrial Workers of the World|IWW|I.W.W.|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)|labor movement (generic term)|trade union movement (generic term)|labor (generic term)
+i chronicles|1
+(noun)|I Chronicles|1 Chronicles|book (generic term)
+i corinthians|1
+(noun)|First Epistle of Paul the Apostle to the Corinthians|First Epistle to the Corinthians|I Corinthians|Epistle (generic term)
+i esdra|1
+(noun)|I Esdra|1 Esdras|book (generic term)
+i john|1
+(noun)|First Epistle of John|I John|Epistle (generic term)
+i kings|1
+(noun)|I Kings|1 Kings|book (generic term)
+i maccabees|1
+(noun)|I Maccabees|1 Maccabees|book (generic term)
+i peter|1
+(noun)|First Epistle of Peter|I Peter|Epistle (generic term)
+i samuel|1
+(noun)|I Samuel|1 Samuel|book (generic term)
+i thessalonians|1
+(noun)|First Epistle of Paul the Apostle to the Thessalonians|First Epistle to the Thessalonians|I Thessalonians|Epistle (generic term)
+i timothy|1
+(noun)|First Epistle of Paul the Apostle to Timothy|First Epistle to Timothy|I Timothy|Epistle (generic term)
+ia|1
+(noun)|Iowa|Hawkeye State|IA|American state (generic term)
+iaa|2
+(noun)|indoleacetic acid|IAA|auxin (generic term)
+(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+iaea|1
+(noun)|International Atomic Energy Agency|IAEA|United Nations agency (generic term)|UN agency (generic term)
+iago|1
+(noun)|Iago|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+iamb|1
+(noun)|iambus|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+iambic|2
+(adj)|metrical foot|foot|metrical unit (related term)
+(noun)|verse (generic term)|verse line (generic term)
+iambus|1
+(noun)|iamb|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+ian douglas smith|1
+(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman (generic term)|solon (generic term)|national leader (generic term)
+ian fleming|1
+(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer (generic term)|author (generic term)
+ian lancaster fleming|1
+(noun)|Fleming|Ian Fleming|Ian Lancaster Fleming|writer (generic term)|author (generic term)
+ian smith|1
+(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman (generic term)|solon (generic term)|national leader (generic term)
+ian wilmut|1
+(noun)|Wilmut|Ian Wilmut|geneticist (generic term)
+ianfu|1
+(noun)|comfort woman|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+iapetus|1
+(noun)|Iapetus|Titan (generic term)
+iatrogenic|1
+(adj)|induced (similar term)
+ib.|1
+(adv)|ibid.|ibidem
+ibadan|1
+(noun)|Ibadan|city (generic term)|metropolis (generic term)|urban center (generic term)
+ibda-c|1
+(noun)|Islamic Great Eastern Raiders-Front|IBDA-C|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+iberia|2
+(noun)|Iberia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Iberian Peninsula|Iberia|peninsula (generic term)
+iberian|3
+(adj)|Iberian|peninsula (related term)
+(noun)|Iberian|Asian (generic term)|Asiatic (generic term)
+(noun)|Iberian|European (generic term)
+iberian peninsula|1
+(noun)|Iberian Peninsula|Iberia|peninsula (generic term)
+iberis|1
+(noun)|Iberis|genus Iberis|dilleniid dicot genus (generic term)
+ibero-mesornis|1
+(noun)|Ibero-mesornis|bird (generic term)
+ibert|1
+(noun)|Ibert|Jacques Francois Antoine Ibert|composer (generic term)
+ibex|1
+(noun)|Capra ibex|wild goat (generic term)
+ibid.|1
+(adv)|ib.|ibidem
+ibidem|1
+(adv)|ibid.|ib.
+ibis|1
+(noun)|wading bird (generic term)|wader (generic term)
+ibis ibis|1
+(noun)|wood ibis|wood stork|Ibis ibis|ibis (generic term)
+ibizan hound|1
+(noun)|Ibizan hound|Ibizan Podenco|hound (generic term)|hound dog (generic term)
+ibizan podenco|1
+(noun)|Ibizan hound|Ibizan Podenco|hound (generic term)|hound dog (generic term)
+ibn-roshd|1
+(noun)|Averroes|ibn-Roshd|Abul-Walid Mohammed ibn-Ahmad Ibn-Mohammed ibn-Roshd|philosopher (generic term)|lawyer (generic term)|attorney (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+ibn-sina|1
+(noun)|Avicenna|ibn-Sina|Abu Ali al-Husain ibn Abdallah ibn Sina|philosopher (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+ibn al-haytham|1
+(noun)|Alhazen|Alhacen|al-Haytham|Ibn al-Haytham|Al-Hasan ibn al-Haytham|mathematician (generic term)|physicist (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+ibn talal hussein|1
+(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king (generic term)|male monarch (generic term)|Rex (generic term)
+ibolium privet|1
+(noun)|ibota privet|Ligustrum ibolium|privet (generic term)
+ibota privet|1
+(noun)|ibolium privet|Ligustrum ibolium|privet (generic term)
+ibrahim|1
+(noun)|Abraham|Ibrahim|patriarch (generic term)
+ibrd|1
+(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency (generic term)|UN agency (generic term)
+ibsen|1
+(noun)|Ibsen|Henrik Ibsen|Henrik Johan Ibsen|poet (generic term)|dramatist (generic term)|playwright (generic term)
+ibsenian|1
+(adj)|Ibsenian|poet|dramatist|playwright (related term)
+ibuprofen|1
+(noun)|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ic|2
+(adj)|ninety-nine|99|cardinal (similar term)
+(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+icaco|2
+(noun)|coco plum|coco plum tree|cocoa plum|Chrysobalanus icaco|fruit tree (generic term)
+(noun)|cocoa plum|coco plum|edible fruit (generic term)
+icao|1
+(noun)|International Civil Aviation Organization|ICAO|United Nations agency (generic term)|UN agency (generic term)
+icarus|1
+(noun)|Icarus|mythical being (generic term)
+icbm|1
+(noun)|intercontinental ballistic missile|ICBM|ballistic missile (generic term)
+icc|1
+(noun)|Interstate Commerce Commission|ICC|independent agency (generic term)
+ice|10
+(noun)|water ice|crystal (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|sparkler|diamond (generic term)
+(noun)|frosting|icing|topping (generic term)
+(noun)|frappe|frozen dessert (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+(noun)|internal-combustion engine|ICE|heat engine (generic term)
+(noun)|ice rink|ice-skating rink|rink (generic term)|skating rink (generic term)
+(verb)|frost|cover (generic term)
+(verb)|cool (generic term)|chill (generic term)|cool down (generic term)
+ice-clogged|1
+(adj)|frozen (similar term)
+ice-cold|1
+(adj)|cold (similar term)
+ice-cream bean|1
+(noun)|Inga edulis|tree (generic term)
+ice-cream cake|1
+(noun)|icebox cake|frozen dessert (generic term)
+ice-cream cone|1
+(noun)|frozen dessert (generic term)
+ice-cream float|1
+(noun)|ice-cream soda|float|drink (generic term)
+ice-cream soda|1
+(noun)|ice-cream float|float|drink (generic term)
+ice-cream sundae|1
+(noun)|sundae|frozen dessert (generic term)
+ice-free|1
+(adj)|unfrozen (similar term)
+ice-hockey player|1
+(noun)|hockey player|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+ice-hockey rink|1
+(noun)|ice hockey rink|ice rink (generic term)|ice-skating rink (generic term)|ice (generic term)
+ice-skater|1
+(noun)|skater (generic term)
+ice-skating rink|1
+(noun)|ice rink|ice|rink (generic term)|skating rink (generic term)
+ice-wagon|1
+(noun)|ice wagon|wagon (generic term)|waggon (generic term)
+ice age|1
+(noun)|glacial period|glacial epoch|period (generic term)|geological period (generic term)
+ice ax|1
+(noun)|ice axe|piolet|ax (generic term)|axe (generic term)
+ice axe|1
+(noun)|ice ax|piolet|ax (generic term)|axe (generic term)
+ice bag|1
+(noun)|ice pack|bag (generic term)
+ice bear|1
+(noun)|polar bear|Ursus Maritimus|Thalarctos maritimus|bear (generic term)
+ice cap|1
+(noun)|icecap|ice mass (generic term)
+ice chest|1
+(noun)|cooler|refrigerator (generic term)|icebox (generic term)
+ice coffee|1
+(noun)|iced coffee|coffee (generic term)|java (generic term)
+ice cream|1
+(noun)|icecream|frozen dessert (generic term)
+ice crystal|1
+(noun)|snow mist|diamond dust|poudrin|ice needle|frost snow|frost mist|crystal (generic term)
+ice cube|1
+(noun)|cube (generic term)|square block (generic term)
+ice field|1
+(noun)|ice mass (generic term)
+ice floe|1
+(noun)|floe|ice mass (generic term)
+ice fog|1
+(noun)|pogonip|fog (generic term)
+ice hockey|1
+(noun)|hockey|hockey game|athletic game (generic term)|contact sport (generic term)
+ice hockey rink|1
+(noun)|ice-hockey rink|ice rink (generic term)|ice-skating rink (generic term)|ice (generic term)
+ice lolly|1
+(noun)|lolly|lollipop|popsicle|frozen dessert (generic term)
+ice machine|1
+(noun)|electric refrigerator (generic term)|fridge (generic term)
+ice maker|1
+(noun)|kitchen appliance (generic term)
+ice mass|1
+(noun)|geological formation (generic term)|formation (generic term)
+ice milk|1
+(noun)|frozen dessert (generic term)
+ice needle|1
+(noun)|ice crystal|snow mist|diamond dust|poudrin|frost snow|frost mist|crystal (generic term)
+ice over|1
+(verb)|ice up|frost over|change (generic term)
+ice pack|2
+(noun)|ice bag|bag (generic term)
+(noun)|pack ice|Ice pack|ice (generic term)
+ice pick|1
+(noun)|icepick|pick (generic term)
+ice plant|1
+(noun)|icicle plant|Mesembryanthemum crystallinum|fig marigold (generic term)|pebble plant (generic term)
+ice rink|1
+(noun)|ice-skating rink|ice|rink (generic term)|skating rink (generic term)
+ice shelf|1
+(noun)|shelf ice|ice (generic term)
+ice show|1
+(noun)|show (generic term)
+ice skate|2
+(noun)|skate (generic term)
+(verb)|skate (generic term)
+ice skating|1
+(noun)|skating (generic term)
+ice storm|1
+(noun)|silver storm|storm (generic term)|violent storm (generic term)
+ice tea|1
+(noun)|iced tea|tea (generic term)
+ice tongs|1
+(noun)|tongs (generic term)|pair of tongs (generic term)
+ice up|1
+(verb)|frost over|ice over|change (generic term)
+ice wagon|1
+(noun)|ice-wagon|wagon (generic term)|waggon (generic term)
+ice water|1
+(noun)|drinking water (generic term)
+ice yacht|1
+(noun)|iceboat|scooter|vessel (generic term)|watercraft (generic term)
+iceberg|2
+(noun)|berg|ice mass (generic term)|floater (generic term)
+(noun)|crisphead lettuce|iceberg lettuce|lettuce (generic term)
+iceberg lettuce|1
+(noun)|crisphead lettuce|iceberg|lettuce (generic term)
+iceboat|2
+(noun)|icebreaker|ship (generic term)
+(noun)|ice yacht|scooter|vessel (generic term)|watercraft (generic term)
+icebound|1
+(adj)|frozen (similar term)
+icebox|1
+(noun)|refrigerator|white goods (generic term)
+icebox cake|1
+(noun)|ice-cream cake|frozen dessert (generic term)
+icebreaker|2
+(noun)|iceboat|ship (generic term)
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)
+icecap|1
+(noun)|ice cap|ice mass (generic term)
+icecream|1
+(noun)|ice cream|frozen dessert (generic term)
+iced-tea spoon|1
+(noun)|teaspoon (generic term)
+iced coffee|1
+(noun)|ice coffee|coffee (generic term)|java (generic term)
+iced tea|1
+(noun)|ice tea|tea (generic term)
+icefall|1
+(noun)|ice (generic term)
+icehouse|1
+(noun)|house (generic term)
+iceland|2
+(noun)|Iceland|Republic of Iceland|European country (generic term)|European nation (generic term)
+(noun)|Iceland|island (generic term)
+iceland lichen|1
+(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen (generic term)
+iceland moss|1
+(noun)|Iceland moss|Iceland lichen|Cetraria islandica|lichen (generic term)
+iceland poppy|2
+(noun)|Iceland poppy|arctic poppy|Papaver nudicaule|poppy (generic term)
+(noun)|Iceland poppy|Papaver alpinum|poppy (generic term)
+iceland spar|1
+(noun)|Iceland spar|calcite (generic term)
+icelander|1
+(noun)|Icelander|European (generic term)
+icelandic|2
+(adj)|Icelandic|European country|European nation (related term)
+(noun)|Icelandic|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+icelandic-speaking|1
+(adj)|Icelandic-speaking|communicative (similar term)|communicatory (similar term)
+icelandic krona|1
+(noun)|Icelandic krona|krona|Icelandic monetary unit (generic term)
+icelandic monetary unit|1
+(noun)|Icelandic monetary unit|monetary unit (generic term)
+iceman|2
+(noun)|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+(noun)|hatchet man|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+icepick|1
+(noun)|ice pick|pick (generic term)
+icetray|1
+(noun)|tray (generic term)
+ichneumon|1
+(noun)|Herpestes ichneumon|mongoose (generic term)
+ichneumon fly|1
+(noun)|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+ichneumonidae|1
+(noun)|Ichneumonidae|family Ichneumonidae|arthropod family (generic term)
+ichor|2
+(noun)|fluid (generic term)
+(noun)|pus|purulence|suppuration|sanies|festering|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+ichorous|1
+(adj)|sanious|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+ichthyolatry|1
+(noun)|fish-worship|zoolatry (generic term)|animal-worship (generic term)
+ichthyologist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+ichthyology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+ichthyosaur|1
+(noun)|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+ichthyosauria|1
+(noun)|Ichthyosauria|order Ichthyosauria|animal order (generic term)
+ichthyosauridae|1
+(noun)|Ichthyosauridae|family Ichthyosauridae|reptile family (generic term)
+ichthyosaurus|1
+(noun)|ichthyosaur (generic term)
+ichthyosis|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+ichyostega|1
+(noun)|Ichyostega|amphibian (generic term)
+icicle|1
+(noun)|ice (generic term)|water ice (generic term)
+icicle plant|1
+(noun)|ice plant|Mesembryanthemum crystallinum|fig marigold (generic term)|pebble plant (generic term)
+iciness|2
+(noun)|chill|gelidity|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|coldness|coolness|frigidity|frigidness|chilliness|unemotionality (generic term)|emotionlessness (generic term)
+icing|3
+(noun)|frost|freeze (generic term)|freezing (generic term)
+(noun)|frosting|ice|topping (generic term)
+(noun)|icing the puck|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+icing sugar|1
+(noun)|powdered sugar (generic term)
+icing the puck|1
+(noun)|icing|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+icky|2
+(adj)|crappy|lousy|rotten|shitty|stinking|stinky|bad (similar term)
+(adj)|gooey|adhesive (similar term)
+icon|3
+(noun)|symbol (generic term)
+(noun)|picture|image|ikon|representation (generic term)
+(noun)|ikon|painting (generic term)|picture (generic term)
+iconic|1
+(adj)|painting|picture (related term)
+iconoclasm|1
+(noun)|unorthodoxy (generic term)|heterodoxy (generic term)|heresy (generic term)
+iconoclast|2
+(noun)|image breaker|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+(noun)|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+iconoclastic|2
+(adj)|unorthodox (similar term)
+(adj)|destructive (similar term)
+iconography|1
+(noun)|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+iconolatry|1
+(noun)|idolatry (generic term)|idol worship (generic term)
+iconology|1
+(noun)|art history (generic term)
+iconoscope|1
+(noun)|television-camera tube (generic term)|television pickup tube (generic term)
+icosahedral|1
+(adj)|polyhedron (related term)
+icosahedron|1
+(noun)|polyhedron (generic term)
+icsh|1
+(noun)|luteinizing hormone|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+ictal|1
+(adj)|ictic|attack (related term)
+ictalurus|1
+(noun)|Ictalurus|genus Ictalurus|fish genus (generic term)
+ictalurus punctatus|1
+(noun)|channel catfish|channel cat|Ictalurus punctatus|catfish (generic term)|siluriform fish (generic term)
+icteria|1
+(noun)|Icteria|genus Icteria|bird genus (generic term)
+icteria virens|1
+(noun)|yellow-breasted chat|Icteria virens|New World chat (generic term)|chat (generic term)
+icteric|1
+(adj)|jaundiced|yellow|unhealthy (similar term)
+icteridae|1
+(noun)|Icteridae|family Icteridae|bird family (generic term)
+icterogenic|1
+(adj)|symptom (related term)
+icterus|2
+(noun)|jaundice|symptom (generic term)
+(noun)|Icterus|genus Icterus|bird genus (generic term)
+icterus galbula|1
+(noun)|northern oriole|Icterus galbula|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+icterus galbula bullockii|1
+(noun)|Bullock's oriole|Icterus galbula bullockii|northern oriole (generic term)|Icterus galbula (generic term)
+icterus galbula galbula|1
+(noun)|Baltimore oriole|Baltimore bird|hangbird|firebird|Icterus galbula galbula|northern oriole (generic term)|Icterus galbula (generic term)
+icterus neonatorum|1
+(noun)|jaundice of the newborn|physiological jaundice of the newborn|jaundice (generic term)|icterus (generic term)
+icterus spurius|1
+(noun)|orchard oriole|Icterus spurius|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+ictic|1
+(adj)|ictal|attack (related term)
+ictiobus|1
+(noun)|Ictiobus|genus Ictiobus|fish genus (generic term)
+ictiobus niger|1
+(noun)|black buffalo|Ictiobus niger|buffalo fish (generic term)|buffalofish (generic term)
+ictodosaur|1
+(noun)|synapsid (generic term)|synapsid reptile (generic term)
+ictodosauria|1
+(noun)|Ictodosauria|order Ictodosauria|animal order (generic term)
+ictonyx|1
+(noun)|Ictonyx|genus Ictonyx|mammal genus (generic term)
+ictonyx frenata|1
+(noun)|zoril|Ictonyx frenata|muishond (generic term)
+ictonyx striata|1
+(noun)|striped muishond|Ictonyx striata|muishond (generic term)
+ictus|1
+(noun)|seizure|raptus|attack (generic term)
+icu|1
+(noun)|intensive care unit|ICU|unit (generic term)|social unit (generic term)
+icy|4
+(adj)|frigid|frosty|frozen|glacial|wintry|cold (similar term)
+(adj)|arctic|frigid|gelid|glacial|polar|cold (similar term)
+(adj)|frozen (similar term)
+(adj)|glazed (similar term)|shiny (similar term)
+id|3
+(noun)|Idaho|Gem State|ID|American state (generic term)
+(noun)|ID|I.D.|badge (generic term)|positive identification (generic term)
+(noun)|instinct (generic term)|inherent aptitude (generic term)
+id al-adha|1
+(noun)|Id al-Adha|Feast of Sacrifice|feast day (generic term)|fete day (generic term)
+id al-fitr|1
+(noun)|Id al-Fitr|feast day (generic term)|fete day (generic term)
+id est|1
+(adv)|i.e.|ie
+ida|1
+(noun)|International Development Association|IDA|United Nations agency (generic term)|UN agency (generic term)
+ida m. tarbell|1
+(noun)|Tarbell|Ida Tarbell|Ida M. Tarbell|Ida Minerva Tarbell|writer (generic term)|author (generic term)
+ida minerva tarbell|1
+(noun)|Tarbell|Ida Tarbell|Ida M. Tarbell|Ida Minerva Tarbell|writer (generic term)|author (generic term)
+ida tarbell|1
+(noun)|Tarbell|Ida Tarbell|Ida M. Tarbell|Ida Minerva Tarbell|writer (generic term)|author (generic term)
+idaho|1
+(noun)|Idaho|Gem State|ID|American state (generic term)
+idaho falls|1
+(noun)|Idaho Falls|town (generic term)
+idahoan|1
+(noun)|Idahoan|American (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+idea|5
+(noun)|thought|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|estimate|estimation|approximation|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|mind|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+(noun)|theme|melodic theme|musical theme|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+ideal|5
+(adj)|perfect (similar term)
+(adj)|abstract (similar term)
+(adj)|idealistic|philosophical doctrine|philosophical theory (related term)
+(noun)|idea (generic term)|thought (generic term)
+(noun)|paragon|nonpareil|saint|apotheosis|nonesuch|nonsuch|model (generic term)|role model (generic term)
+ideal gas|1
+(noun)|perfect gas|gas (generic term)
+ideal solid|1
+(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|polyhedron (generic term)
+idealisation|3
+(noun)|idealization|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|idealization|idea (generic term)|thought (generic term)
+(noun)|idealization|glorification|admiration (generic term)|appreciation (generic term)
+idealise|2
+(verb)|idealize|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|idealize|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+idealised|1
+(adj)|idealized|perfect (similar term)
+idealism|3
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|impracticality (generic term)
+(noun)|high-mindedness|noble-mindedness|nobility (generic term)|nobleness (generic term)|magnanimousness (generic term)|grandeur (generic term)
+idealist|1
+(noun)|dreamer|visionary (generic term)
+idealistic|2
+(adj)|ideal|philosophical doctrine|philosophical theory (related term)
+(adj)|exalted|sublime|grand|high-flown|high-minded|lofty|rarefied|rarified|noble-minded|noble (similar term)
+ideality|1
+(noun)|quality (generic term)
+idealization|3
+(noun)|idealisation|glorification|admiration (generic term)|appreciation (generic term)
+(noun)|idealisation|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|idealisation|idea (generic term)|thought (generic term)
+idealize|2
+(verb)|idealise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|idealise|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+idealized|1
+(adj)|idealised|perfect (similar term)
+idealogue|1
+(noun)|theorist|theoretician|theorizer|theoriser|intellectual (generic term)|intellect (generic term)
+ideate|1
+(verb)|imagine|conceive of|envisage|create by mental act (generic term)|create mentally (generic term)
+ideation|1
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+ideational|1
+(adj)|conceptional|notional|abstract (similar term)
+idempotent|1
+(adj)|unchanged (similar term)
+identical|5
+(adj)|indistinguishable|same (similar term)
+(adj)|selfsame|very|same (similar term)
+(adj)|monovular|fraternal (antonym)
+(adj)|isotropic (similar term)|isotropous (similar term)
+(adj)|superposable|congruent (similar term)
+identical twin|1
+(noun)|monozygotic twin|monozygous twin|twin (generic term)
+identicalness|1
+(noun)|identity|indistinguishability|sameness (generic term)
+identifiable|1
+(adj)|acknowledgeable (similar term)|classifiable (similar term)|distinctive (similar term)|diagnosable (similar term)|recognizable (similar term)|recognisable (similar term)|placeable (similar term)|specifiable (similar term)|unidentifiable (antonym)
+identification|5
+(noun)|designation|determination (generic term)|finding (generic term)
+(noun)|identity (generic term)|personal identity (generic term)|individuality (generic term)
+(noun)|evidence (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|recognition|memory (generic term)|remembering (generic term)
+identification number|1
+(noun)|number|positive identification (generic term)
+identification particle|1
+(noun)|atom (generic term)|molecule (generic term)|particle (generic term)|corpuscle (generic term)|mote (generic term)|speck (generic term)
+identified|1
+(adj)|known (similar term)
+identifier|1
+(noun)|symbol (generic term)
+identify|6
+(verb)|place|determine (generic term)|set (generic term)
+(verb)|name|denote (generic term)|refer (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+(verb)|discover|key|key out|distinguish|describe|name
+(verb)|recognize (generic term)|recognise (generic term)
+identifying|1
+(adj)|distinguishing|characteristic (similar term)
+identikit|1
+(noun)|Identikit|Identikit picture|likeness (generic term)|semblance (generic term)
+identikit picture|1
+(noun)|Identikit|Identikit picture|likeness (generic term)|semblance (generic term)
+identity|4
+(noun)|personal identity|individuality|personality (generic term)
+(noun)|recognition (generic term)|identification (generic term)
+(noun)|identity element|identity operator|operator (generic term)
+(noun)|identicalness|indistinguishability|sameness (generic term)
+identity card|1
+(noun)|card|positive identification (generic term)
+identity crisis|1
+(noun)|psychological state (generic term)|mental state (generic term)
+identity element|1
+(noun)|identity|identity operator|operator (generic term)
+identity matrix|1
+(noun)|unit matrix|scalar matrix (generic term)
+identity operator|1
+(noun)|identity|identity element|operator (generic term)
+identity theft|1
+(noun)|fraud (generic term)
+identity verification|1
+(noun)|biometric identification|biometric authentication|identification (generic term)
+ideogram|1
+(noun)|ideograph|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+ideograph|1
+(noun)|ideogram|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+ideographic|1
+(adj)|character|grapheme|graphic symbol (related term)
+ideography|1
+(noun)|orthography (generic term)|writing system (generic term)
+ideologic|1
+(adj)|ideological|philosophical (similar term)|philosophic (similar term)
+ideological|1
+(adj)|ideologic|philosophical (similar term)|philosophic (similar term)
+ideological barrier|1
+(noun)|barrier (generic term)|roadblock (generic term)
+ideologist|1
+(noun)|ideologue|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+ideologue|1
+(noun)|ideologist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+ideology|2
+(noun)|political orientation|political theory|orientation (generic term)
+(noun)|theorization (generic term)|theorisation (generic term)
+ides|1
+(noun)|day (generic term)
+idesia|1
+(noun)|Idesia polycarpa|tree (generic term)
+idesia polycarpa|1
+(noun)|idesia|Idesia polycarpa|tree (generic term)
+idf|1
+(noun)|Israeli Defense Force|IDF|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+idiocy|1
+(noun)|amentia|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+idiographic|1
+(adj)|nomothetic (antonym)
+idiolatry|1
+(noun)|autolatry|self-worship|worship (generic term)
+idiolect|1
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+idiom|4
+(noun)|parlance|formulation (generic term)|expression (generic term)
+(noun)|dialect|accent|non-standard speech (generic term)
+(noun)|artistic style|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|idiomatic expression|phrasal idiom|set phrase|phrase|saying (generic term)|expression (generic term)|locution (generic term)
+idiom neutral|1
+(noun)|Idiom Neutral|artificial language (generic term)
+idiomatic|1
+(adj)|idiomatical|formulation|expression (related term)
+idiomatic expression|1
+(noun)|idiom|phrasal idiom|set phrase|phrase|saying (generic term)|expression (generic term)|locution (generic term)
+idiomatical|1
+(adj)|idiomatic|formulation|expression (related term)
+idiopathic|1
+(adj)|disorder|upset (related term)
+idiopathic disease|1
+(noun)|idiopathic disorder|idiopathy|disorder (generic term)|upset (generic term)
+idiopathic disorder|1
+(noun)|idiopathic disease|idiopathy|disorder (generic term)|upset (generic term)
+idiopathic hemochromatosis|1
+(noun)|classic hemochromatosis|hemochromatosis (generic term)|iron-storage disease (generic term)|iron overload (generic term)|bronzed diabetes (generic term)
+idiopathic thrombocytopenic purpura|1
+(noun)|thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura (generic term)|peliosis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+idiopathy|1
+(noun)|idiopathic disease|idiopathic disorder|disorder (generic term)|upset (generic term)
+idiosyncrasy|1
+(noun)|foible|mannerism|peculiarity (generic term)|specialness (generic term)|specialty (generic term)|speciality (generic term)|distinctiveness (generic term)
+idiosyncratic|1
+(adj)|individual (similar term)|single (similar term)
+idiot|1
+(noun)|imbecile|cretin|moron|changeling|half-wit|retard|simpleton (generic term)|simple (generic term)
+idiot box|1
+(noun)|television receiver|television|television set|tv|tv set|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+idiot light|1
+(noun)|red light (generic term)|warning light (generic term)
+idiot savant|1
+(noun)|simpleton (generic term)|simple (generic term)
+idiotic|3
+(adj)|crackbrained|insane (similar term)
+(adj)|absurd|cockeyed|derisory|laughable|ludicrous|nonsensical|preposterous|ridiculous|foolish (similar term)
+(adj)|imbecile|imbecilic|unintelligent (similar term)|stupid (similar term)
+iditarod|1
+(noun)|Iditarod|Iditarod Trail Dog Sled Race|cross country (generic term)
+iditarod trail|1
+(noun)|Iditarod Trail|trail (generic term)
+iditarod trail dog sled race|1
+(noun)|Iditarod|Iditarod Trail Dog Sled Race|cross country (generic term)
+idle|10
+(adj)|bone-idle (similar term)|bone-lazy (similar term)|faineant (similar term)|indolent (similar term)|lazy (similar term)|otiose (similar term)|slothful (similar term)|work-shy (similar term)|lackadaisical (similar term)|leisured (similar term)|unengaged (similar term)|ineffective (related term)|uneffective (related term)|ineffectual (related term)|unemployed (related term)|busy (antonym)
+(adj)|baseless|groundless|unfounded|unwarranted|wild|unsupported (similar term)
+(adj)|unused|inactive (similar term)
+(adj)|light|frivolous (similar term)
+(adj)|loose|irresponsible (similar term)
+(adj)|dead|unprofitable (similar term)
+(adj)|jobless|out of work|unemployed (similar term)
+(noun)|operation (generic term)
+(verb)|tick over|run (antonym)
+(verb)|laze|slug|stagnate|work (antonym)
+idle pulley|1
+(noun)|idler pulley|idle wheel|pulley (generic term)|pulley-block (generic term)|block (generic term)
+idle talk|1
+(noun)|prate|prattle|blether|chin music|yak (generic term)|yack (generic term)|yakety-yak (generic term)|chatter (generic term)|cackle (generic term)
+idle wheel|1
+(noun)|idle pulley|idler pulley|pulley (generic term)|pulley-block (generic term)|block (generic term)
+idle words|1
+(noun)|wind|jazz|nothingness|talk (generic term)|talking (generic term)
+idleness|3
+(noun)|idling|loafing|inactivity (generic term)
+(noun)|groundlessness|worthlessness (generic term)|ineptitude (generic term)
+(noun)|faineance|indolence (generic term)|laziness (generic term)
+idler|1
+(noun)|loafer|do-nothing|layabout|bum|nonworker (generic term)
+idler pulley|1
+(noun)|idle pulley|idle wheel|pulley (generic term)|pulley-block (generic term)|block (generic term)
+idling|1
+(noun)|idleness|loafing|inactivity (generic term)
+idly|1
+(adv)|lazily
+ido|1
+(noun)|Ido|artificial language (generic term)
+idocrase|1
+(noun)|vesuvianite|vesuvian|mineral (generic term)
+idol|3
+(noun)|graven image|god|effigy (generic term)|image (generic term)|simulacrum (generic term)
+(noun)|matinee idol|star (generic term)|principal (generic term)|lead (generic term)
+(noun)|paragon|perfection|beau ideal|ideal (generic term)
+idol worship|1
+(noun)|idolatry|worship (generic term)
+idol worshiper|1
+(noun)|idolater|idolizer|idoliser|heathen (generic term)|pagan (generic term)|gentile (generic term)|infidel (generic term)
+idolater|1
+(noun)|idolizer|idoliser|idol worshiper|heathen (generic term)|pagan (generic term)|gentile (generic term)|infidel (generic term)
+idolatress|1
+(noun)|idolater (generic term)|idolizer (generic term)|idoliser (generic term)|idol worshiper (generic term)
+idolatrous|2
+(adj)|worship (related term)
+(adj)|loving (similar term)
+idolatry|2
+(noun)|devotion|veneration|cultism|worship (generic term)
+(noun)|idol worship|worship (generic term)
+idolisation|2
+(noun)|adoration|idolization|admiration (generic term)|appreciation (generic term)
+(noun)|idolization|worship (generic term)
+idolise|1
+(verb)|idolize|worship|hero-worship|revere|adore (generic term)
+idolised|1
+(adj)|adored|idolized|worshipped|loved (similar term)
+idoliser|2
+(noun)|idolizer|lover (generic term)
+(noun)|idolater|idolizer|idol worshiper|heathen (generic term)|pagan (generic term)|gentile (generic term)|infidel (generic term)
+idolization|2
+(noun)|adoration|idolisation|admiration (generic term)|appreciation (generic term)
+(noun)|idolisation|worship (generic term)
+idolize|1
+(verb)|idolise|worship|hero-worship|revere|adore (generic term)
+idolized|1
+(adj)|adored|idolised|worshipped|loved (similar term)
+idolizer|2
+(noun)|idoliser|lover (generic term)
+(noun)|idolater|idoliser|idol worshiper|heathen (generic term)|pagan (generic term)|gentile (generic term)|infidel (generic term)
+idp|1
+(noun)|integrated data processing|IDP|automatic data processing (generic term)|ADP (generic term)
+idria columnaris|1
+(noun)|boojum tree|cirio|Fouquieria columnaris|Idria columnaris|candlewood (generic term)
+idun|1
+(noun)|Idun|Ithunn|Norse deity (generic term)
+idyl|1
+(noun)|poem (generic term)|verse form (generic term)
+idyll|3
+(noun)|episode (generic term)
+(noun)|pastorale|pastoral|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|eclogue|bucolic|pastoral (generic term)
+idyllic|2
+(adj)|perfect (similar term)
+(adj)|pastoral|pleasant (similar term)
+ie|2
+(noun)|Internet Explorer|Explorer|IE|browser (generic term)|web browser (generic term)
+(adv)|i.e.|id est
+ied|1
+(noun)|improvised explosive device|I.E.D.|IED|explosive device (generic term)
+ieoh ming pei|1
+(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect (generic term)|designer (generic term)
+ifc|1
+(noun)|International Finance Corporation|IFC|United Nations agency (generic term)|UN agency (generic term)
+iffy|1
+(adj)|chancy|fluky|flukey|uncertain (similar term)
+ig|1
+(noun)|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|immune globulin|gamma globulin (generic term)|human gamma globulin (generic term)|antibody (generic term)
+iga|1
+(noun)|immunoglobulin A|IgA|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+igbo|1
+(noun)|Igbo|Nigerian (generic term)|ethnic group (generic term)|ethnos (generic term)
+igd|1
+(noun)|immunoglobulin D|IgD|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+ige|1
+(noun)|immunoglobulin E|IgE|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+igg|1
+(noun)|immunoglobulin G|IgG|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+igigi|1
+(noun)|Igigi|Semitic deity (generic term)
+iglesias|1
+(noun)|Iglesias|Julio Iglesias|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+igloo|1
+(noun)|iglu|hovel (generic term)|hut (generic term)|hutch (generic term)|shack (generic term)|shanty (generic term)
+iglu|1
+(noun)|igloo|hovel (generic term)|hut (generic term)|hutch (generic term)|shack (generic term)|shanty (generic term)
+igm|1
+(noun)|immunoglobulin M|IgM|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+ignace jan paderewski|1
+(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist (generic term)|piano player (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+ignace paderewski|1
+(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist (generic term)|piano player (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+ignatius|1
+(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop (generic term)|saint (generic term)
+ignatius of loyola|1
+(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)
+igneous|3
+(adj)|pyrogenic|pyrogenous|temperature (related term)
+(adj)|eruptive|aqueous (antonym)
+(adj)|fiery|hot (similar term)
+igneous rock|1
+(noun)|rock (generic term)|stone (generic term)
+ignescent|1
+(adj)|combustible (similar term)
+ignis fatuus|2
+(noun)|friar's lantern|jack-o'-lantern|will-o'-the-wisp|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|will-o'-the-wisp|illusion (generic term)|fantasy (generic term)|phantasy (generic term)|fancy (generic term)
+ignitable|1
+(adj)|burnable|ignitible|combustible (similar term)
+ignite|3
+(verb)|light|burn (generic term)|combust (generic term)|extinguish (antonym)
+(verb)|erupt|catch fire|take fire|combust|conflagrate|change state (generic term)|turn (generic term)
+(verb)|inflame|stir up|wake|heat|fire up|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+ignited|1
+(adj)|enkindled|kindled|lighted (similar term)|lit (similar term)
+igniter|2
+(noun)|ignitor|lighter|fuel (generic term)
+(noun)|lighter|light|ignitor|device (generic term)
+ignitible|1
+(adj)|burnable|ignitable|combustible (similar term)
+ignition|3
+(noun)|fire (generic term)|flame (generic term)|flaming (generic term)
+(noun)|ignition system|mechanism (generic term)
+(noun)|firing|lighting|kindling|inflammation|burning (generic term)|combustion (generic term)
+ignition coil|1
+(noun)|induction coil (generic term)
+ignition interlock|1
+(noun)|interlock|device (generic term)
+ignition key|1
+(noun)|key (generic term)
+ignition lock|1
+(noun)|lock|restraint (generic term)|constraint (generic term)
+ignition switch|1
+(noun)|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+ignition system|1
+(noun)|ignition|mechanism (generic term)
+ignitor|2
+(noun)|igniter|lighter|fuel (generic term)
+(noun)|lighter|light|igniter|device (generic term)
+ignobility|1
+(noun)|ignobleness|dishonorableness (generic term)|dishonourableness (generic term)
+ignoble|2
+(adj)|base (similar term)|mean (similar term)|meanspirited (similar term)|currish (similar term)|dishonorable (similar term)|dishonourable (similar term)|contemptible (related term)|cowardly (related term)|fearful (related term)|dishonorable (related term)|dishonourable (related term)|noble (antonym)
+(adj)|ungentle|untitled|lowborn (similar term)
+ignobleness|1
+(noun)|ignobility|dishonorableness (generic term)|dishonourableness (generic term)
+ignobly|1
+(adv)|currishly
+ignominious|1
+(adj)|black|disgraceful|inglorious|opprobrious|shameful|dishonorable (similar term)|dishonourable (similar term)
+ignominiously|1
+(adv)|disgracefully|ingloriously|discreditably|shamefully|dishonorably|dishonourably
+ignominiousness|1
+(noun)|shamefulness|disgracefulness|unworthiness (generic term)
+ignominy|1
+(noun)|shame|disgrace|dishonor (generic term)|dishonour (generic term)
+ignoramus|1
+(noun)|know nothing|uneducated person|unskilled person (generic term)
+ignorance|1
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+ignorant|3
+(adj)|nescient|unenlightened|unlearned|unlettered|uneducated (similar term)
+(adj)|illiterate|uneducated (similar term)
+(adj)|unknowledgeable|unknowing|unwitting|uninformed (similar term)
+ignorantness|1
+(noun)|nescience|unknowing|unknowingness|ignorance (generic term)
+ignoratio elenchi|1
+(noun)|logical fallacy (generic term)
+ignore|5
+(verb)|disregard|snub|cut|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|dismiss|disregard|brush aside|brush off|discount|push aside|reject (generic term)
+(verb)|notice (antonym)
+(verb)|neglect|disregard
+(verb)|know (antonym)
+ignored|1
+(adj)|neglected|unheeded|unnoticed (similar term)
+igor fyodorovich stravinsky|1
+(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer (generic term)
+igor ivanovich sikorsky|1
+(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist (generic term)
+igor sikorsky|1
+(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist (generic term)
+igor stravinsky|1
+(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer (generic term)
+igor tamm|1
+(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist (generic term)
+igor yevgeneevich tamm|1
+(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist (generic term)
+iguana|1
+(noun)|common iguana|Iguana iguana|iguanid (generic term)|iguanid lizard (generic term)
+iguana iguana|1
+(noun)|common iguana|iguana|Iguana iguana|iguanid (generic term)|iguanid lizard (generic term)
+iguania|1
+(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family (generic term)
+iguanid|1
+(noun)|iguanid lizard|lizard (generic term)
+iguanid lizard|1
+(noun)|iguanid|lizard (generic term)
+iguanidae|1
+(noun)|Iguanidae|family Iguanidae|Iguania|family Iguania|reptile family (generic term)
+iguanodon|1
+(noun)|dinosaur (generic term)
+iguanodontidae|1
+(noun)|Iguanodontidae|family Iguanodontidae|reptile family (generic term)
+iguassu|1
+(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall (generic term)|falls (generic term)
+iguassu falls|1
+(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall (generic term)|falls (generic term)
+iguazu|1
+(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall (generic term)|falls (generic term)
+iguazu falls|1
+(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall (generic term)|falls (generic term)
+ii|2
+(adj)|two|2|cardinal (similar term)
+(noun)|two|2|II|deuce|digit (generic term)|figure (generic term)
+ii chronicles|1
+(noun)|II Chronicles|2 Chronicles|book (generic term)
+ii corinthians|1
+(noun)|Second Epistle of Paul the Apostle to the Corinthians|Second Epistle to the Corinthians|II Corinthians|Epistle (generic term)
+ii esdras|1
+(noun)|II Esdras|2 Esdras|book (generic term)
+ii john|1
+(noun)|Second Epistel of John|II John|Epistle (generic term)
+ii kings|1
+(noun)|II Kings|2 Kings|book (generic term)
+ii maccabees|1
+(noun)|II Maccabees|2 Maccabees|book (generic term)
+ii peter|1
+(noun)|Second Epistle of Peter|II Peter|Epistle (generic term)
+ii samuel|1
+(noun)|II Samuel|2 Samuel|book (generic term)
+ii thessalonians|1
+(noun)|Second Epistle of Paul the Apostle to the Thessalonians|Second Epistle to the Thessalonians|II Thessalonians|Epistle (generic term)
+ii timothy|1
+(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|Epistle (generic term)
+iii|2
+(adj)|three|3|cardinal (similar term)
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+iii john|1
+(noun)|Third Epistel of John|III John|Epistle (generic term)
+iis|1
+(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency (generic term)
+ijssel|1
+(noun)|IJssel|IJssel river|river (generic term)
+ijssel river|1
+(noun)|IJssel|IJssel river|river (generic term)
+ijsselmeer|1
+(noun)|IJsselmeer|lake (generic term)
+ijtihad|1
+(noun)|interpretation (generic term)
+ike|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+ikhanaton|1
+(noun)|Akhenaton|Akhenaten|Ikhanaton|Amenhotep IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+ikon|2
+(noun)|picture|image|icon|representation (generic term)
+(noun)|icon|painting (generic term)|picture (generic term)
+il|2
+(adj)|forty-nine|49|cardinal (similar term)
+(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state (generic term)
+il duce|1
+(noun)|Mussolini|Benito Mussolini|Il Duce|dictator (generic term)|potentate (generic term)
+ilama|2
+(noun)|ilama tree|Annona diversifolia|custard apple (generic term)|custard apple tree (generic term)
+(noun)|custard apple (generic term)
+ilama tree|1
+(noun)|ilama|Annona diversifolia|custard apple (generic term)|custard apple tree (generic term)
+ilang-ilang|2
+(noun)|essential oil (generic term)|volatile oil (generic term)
+(noun)|ylang-ylang|Cananga odorata|angiospermous tree (generic term)|flowering tree (generic term)
+ile-de-france|1
+(noun)|Ile-de-France|French region (generic term)
+ile-st-louis|1
+(noun)|Ile-St-Louis|island (generic term)
+ileal artery|1
+(noun)|intestinal artery|arteria ileum|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ileitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+ileocecal valve|1
+(noun)|valve (generic term)
+ileocolic artery|1
+(noun)|arteria ileocolica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ileocolic vein|1
+(noun)|vena ileocolica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ileostomy|1
+(noun)|ostomy (generic term)
+iles comores|1
+(noun)|Comoro Islands|Iles Comores|archipelago (generic term)
+iles marquises|1
+(noun)|Marquesas Islands|Iles Marquises|archipelago (generic term)
+ileum|1
+(noun)|small intestine (generic term)
+ileus|1
+(noun)|intestinal obstruction|obstruction (generic term)|blockage (generic term)|enteropathy (generic term)
+ilex|1
+(noun)|Ilex|genus Ilex|dicot genus (generic term)|magnoliopsid genus (generic term)
+ilex cornuta|1
+(noun)|Chinese holly|Ilex cornuta|shrub (generic term)|bush (generic term)
+ilex decidua|1
+(noun)|bearberry|possum haw|winterberry|Ilex decidua|holly (generic term)
+ilex glabra|1
+(noun)|inkberry|gallberry|gall-berry|evergreen winterberry|Ilex glabra|holly (generic term)
+ilex paraguariensis|1
+(noun)|mate|Paraguay tea|Ilex paraguariensis|holly (generic term)
+iliac|1
+(adj)|bone|os (related term)
+iliac artery|1
+(noun)|arteria iliaca|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+iliac vein|1
+(noun)|vena iliaca|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+iliad|1
+(noun)|Iliad|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+iliamna|1
+(noun)|Iliamna|genus Iliamna|dilleniid dicot genus (generic term)
+iliamna acerifolia|1
+(noun)|mountain hollyhock|Iliamna ruvularis|Iliamna acerifolia|mallow (generic term)
+iliamna remota|1
+(noun)|wild hollyhock|Iliamna remota|Sphaeralcea remota|mallow (generic term)
+iliamna ruvularis|1
+(noun)|mountain hollyhock|Iliamna ruvularis|Iliamna acerifolia|mallow (generic term)
+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 (generic term)
+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 (generic term)
+iliolumbar artery|1
+(noun)|arteria iliolumbalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+iliolumbar vein|1
+(noun)|vena iliolumbalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ilion|1
+(noun)|Troy|Ilion|Ilium|city (generic term)|metropolis (generic term)|urban center (generic term)
+ilium|2
+(noun)|Troy|Ilion|Ilium|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|bone (generic term)|os (generic term)
+ilk|1
+(noun)|like|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+ill|8
+(adj)|sick|afflicted (similar term)|stricken (similar term)|aguish (similar term)|ailing (similar term)|indisposed (similar term)|peaked (similar term)|poorly (similar term)|sickly (similar term)|unwell (similar term)|under the weather (similar term)|seedy (similar term)|airsick (similar term)|air sick (similar term)|carsick (similar term)|seasick (similar term)|autistic (similar term)|bedfast (similar term)|bedridden (similar term)|bedrid (similar term)|sick-abed (similar term)|bilious (similar term)|liverish (similar term)|livery (similar term)|bronchitic (similar term)|consumptive (similar term)|convalescent (similar term)|recovering (similar term)|delirious (similar term)|hallucinating (similar term)|diabetic (similar term)|dizzy (similar term)|giddy (similar term)|woozy (similar term)|vertiginous (similar term)|dyspeptic (similar term)|faint (similar term)|light (similar term)|swooning (similar term)|light-headed (similar term)|lightheaded (similar term)|feverish (similar term)|feverous (similar term)|funny (similar term)|gouty (similar term)|green (similar term)|laid low (similar term)|stricken (similar term)|laid up (similar term)|milk-sick (similar term)|nauseated (similar term)|nauseous (similar term)|queasy (similar term)|sick (similar term)|sickish (similar term)|palsied (similar term)|paralytic (similar term)|paralyzed (similar term)|paraplegic (similar term)|rickety (similar term)|rachitic (similar term)|scrofulous (similar term)|sneezy (similar term)|spastic (similar term)|tubercular (similar term)|tuberculous (similar term)|unhealed (similar term)|upset (similar term)|unhealthy (related term)|unfit (related term)|well (antonym)
+(adj)|harmful (similar term)
+(adj)|bad (similar term)
+(adj)|hostile (similar term)
+(adj)|inauspicious|ominous|unpropitious (similar term)
+(noun)|ailment|complaint|disorder (generic term)|upset (generic term)
+(adv)|badly|poorly|well (antonym)
+(adv)|badly|well (antonym)
+ill-advised|1
+(adj)|unadvised|foolish (related term)|imprudent (related term)|well-advised (antonym)
+ill-affected|1
+(adj)|disaffected|malcontent|rebellious|discontented (similar term)|discontent (similar term)
+ill-being|1
+(noun)|adversity (generic term)|hardship (generic term)|hard knocks (generic term)|well-being (antonym)
+ill-bred|1
+(adj)|bounderish|lowbred|rude|underbred|yokelish|unrefined (similar term)
+ill-breeding|1
+(noun)|bad manners|impoliteness (generic term)
+ill-chosen|1
+(adj)|awkward|clumsy|cumbersome|inapt|inept|infelicitous (similar term)
+ill-conceived|1
+(adj)|misguided|foolish (similar term)
+ill-considered|1
+(adj)|ill-judged|improvident|shortsighted|imprudent (similar term)
+ill-defined|1
+(adj)|unclear|well-defined (antonym)
+ill-dressed|1
+(adj)|ungroomed (similar term)
+ill-equipped|1
+(adj)|unequipped (similar term)
+ill-famed|1
+(adj)|infamous|notorious|disreputable (similar term)
+ill-fated|1
+(adj)|doomed|ill-omened|ill-starred|unlucky|unfortunate (similar term)
+ill-favored|1
+(adj)|ill-favoured|ugly (similar term)
+ill-favoured|1
+(adj)|ill-favored|ugly (similar term)
+ill-fed|1
+(adj)|underfed|undernourished|malnourished (similar term)
+ill-fitting|1
+(adj)|uncomfortable (similar term)
+ill-formed|1
+(adj)|ungrammatical|grammatical (antonym)
+ill-gotten|1
+(adj)|dirty|illegal (similar term)
+ill-humored|1
+(adj)|crusty|curmudgeonly|gruff|ill-humoured|ill-natured (similar term)
+ill-humoured|1
+(adj)|crusty|curmudgeonly|gruff|ill-humored|ill-natured (similar term)
+ill-judged|1
+(adj)|ill-considered|improvident|shortsighted|imprudent (similar term)
+ill-mannered|1
+(adj)|bad-mannered|rude|unmannered|unmannerly|impolite (similar term)
+ill-natured|1
+(adj)|atrabilious (similar term)|bilious (similar term)|dyspeptic (similar term)|liverish (similar term)|bristly (similar term)|prickly (similar term)|splenetic (similar term)|waspish (similar term)|cantankerous (similar term)|crotchety (similar term)|ornery (similar term)|choleric (similar term)|irascible (similar term)|hotheaded (similar term)|hot-tempered (similar term)|quick-tempered (similar term)|short-tempered (similar term)|churlish (similar term)|crabbed (similar term)|crabby (similar term)|cross (similar term)|fussy (similar term)|grouchy (similar term)|grumpy (similar term)|bad-tempered (similar term)|ill-tempered (similar term)|cranky (similar term)|fractious (similar term)|irritable (similar term)|nettlesome (similar term)|peevish (similar term)|peckish (similar term)|pettish (similar term)|petulant (similar term)|scratchy (similar term)|testy (similar term)|tetchy (similar term)|techy (similar term)|crusty (similar term)|curmudgeonly (similar term)|gruff (similar term)|ill-humored (similar term)|ill-humoured (similar term)|currish (similar term)|dark (similar term)|dour (similar term)|glowering (similar term)|glum (similar term)|moody (similar term)|morose (similar term)|saturnine (similar term)|sour (similar term)|sullen (similar term)|huffish (similar term)|sulky (similar term)|misanthropic (similar term)|misanthropical (similar term)|misogynous (similar term)|shirty (similar term)|snorty (similar term)|shrewish (similar term)|nagging (similar term)|snappish (similar term)|snappy (similar term)|spoiled (similar term)|spoilt (similar term)|surly (similar term)|ugly (similar term)|vinegary (similar term)|vinegarish (similar term)|disagreeable (related term)|unpleasant (related term)|good-natured (antonym)
+ill-omened|1
+(adj)|doomed|ill-fated|ill-starred|unlucky|unfortunate (similar term)
+ill-proportioned|1
+(adj)|unshapely (similar term)
+ill-scented|1
+(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|stinking|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+ill-shapen|1
+(adj)|deformed|distorted|malformed|misshapen|unshapely (similar term)
+ill-smelling|1
+(adj)|malodorous|malodourous|unpeasant-smelling|stinky|bilgy (similar term)|fetid (similar term)|foetid (similar term)|foul (similar term)|foul-smelling (similar term)|funky (similar term)|noisome (similar term)|smelly (similar term)|stinking (similar term)|ill-scented (similar term)|fusty (similar term)|musty (similar term)|frowsty (similar term)|gamey (similar term)|gamy (similar term)|high (similar term)|miasmic (similar term)|mephitic (similar term)|niffy (similar term)|odoriferous (similar term)|odorous (similar term)|putrid-smelling (similar term)|rank-smelling (similar term)|reeking (similar term)|sour (similar term)|rancid (similar term)|fragrant (antonym)
+ill-sorted|1
+(adj)|incompatible|mismated|unsuited|mismatched (similar term)
+ill-starred|1
+(adj)|doomed|ill-fated|ill-omened|unlucky|unfortunate (similar term)
+ill-tempered|1
+(adj)|crabbed|crabby|cross|fussy|grouchy|grumpy|bad-tempered|ill-natured (similar term)
+ill-timed|1
+(adj)|unseasonable|untimely|wrong|inopportune (similar term)
+ill-treat|1
+(verb)|mistreat|maltreat|abuse|ill-use|step|treat (generic term)|handle (generic term)|do by (generic term)
+ill-treated|1
+(adj)|abused|maltreated|mistreated|battered (similar term)|unabused (antonym)
+ill-treatment|1
+(noun)|maltreatment|ill-usage|abuse|mistreatment (generic term)
+ill-usage|1
+(noun)|maltreatment|ill-treatment|abuse|mistreatment (generic term)
+ill-use|1
+(verb)|mistreat|maltreat|abuse|step|ill-treat|treat (generic term)|handle (generic term)|do by (generic term)
+ill-used|1
+(adj)|exploited|put-upon|used|victimized|victimised|misused (similar term)
+ill at ease|1
+(adj)|awkward|uneasy|uncomfortable (similar term)
+ill fame|1
+(noun)|notoriety|infamy (generic term)
+ill health|1
+(noun)|unhealthiness|health problem|pathological state (generic term)|good health (antonym)
+ill humor|1
+(noun)|ill humour|distemper|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|good humor (antonym)
+ill humour|1
+(noun)|ill humor|distemper|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)|good humor (antonym)
+ill luck|1
+(noun)|misfortune|bad luck|tough luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|good luck (antonym)|good fortune (antonym)
+ill nature|1
+(noun)|disposition (generic term)|temperament (generic term)|good nature (antonym)
+ill service|1
+(noun)|disservice|ill turn|injury (generic term)|service (antonym)
+ill temper|1
+(noun)|bad temper|anger (generic term)|choler (generic term)|ire (generic term)
+ill turn|1
+(noun)|disservice|ill service|injury (generic term)|service (antonym)
+ill will|2
+(noun)|hostility|enmity|hate (generic term)|hatred (generic term)
+(noun)|hostility|unfriendliness (generic term)
+illampu|1
+(noun)|Illampu|mountain peak (generic term)
+illation|1
+(noun)|inference|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+illative|3
+(adj)|inferential|reasoning|logical thinking|abstract thought (related term)
+(adj)|inferential|deductive (similar term)
+(adj)|deductive (similar term)
+illecebrum|1
+(noun)|Illecebrum|genus Illecebrum|caryophylloid dicot genus (generic term)
+illecebrum verticullatum|1
+(noun)|coral necklace|Illecebrum verticullatum|herb (generic term)|herbaceous plant (generic term)
+illegal|1
+(adj)|amerciable (similar term)|banned (similar term)|prohibited (similar term)|bootleg (similar term)|black (similar term)|black-market (similar term)|contraband (similar term)|smuggled (similar term)|criminal (similar term)|felonious (similar term)|dirty (similar term)|ill-gotten (similar term)|embezzled (similar term)|misappropriated (similar term)|extrajudicial (similar term)|extralegal (similar term)|nonlegal (similar term)|hot (similar term)|illegitimate (similar term)|illicit (similar term)|outlaw (similar term)|outlawed (similar term)|unlawful (similar term)|ineligible (similar term)|misbranded (similar term)|mislabeled (similar term)|penal (similar term)|punishable (similar term)|under-the-counter (similar term)|unratified (similar term)|illegitimate (related term)|irregular (related term)|unlawful (related term)|legal (antonym)
+illegal possession|1
+(noun)|criminal possession (generic term)
+illegalise|1
+(verb)|outlaw|criminalize|criminalise|illegalize|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)|decriminalise (antonym)|decriminalize (antonym)|legalize (antonym)
+illegality|1
+(noun)|unlawfulness (generic term)|legality (antonym)
+illegalize|1
+(verb)|outlaw|criminalize|criminalise|illegalise|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)|decriminalise (antonym)|decriminalize (antonym)|legalize (antonym)
+illegally|1
+(adv)|illicitly|lawlessly|lawfully (antonym)
+illegibility|1
+(noun)|incomprehensibility (generic term)|legibility (antonym)
+illegible|1
+(adj)|dirty (similar term)|foul (similar term)|marked-up (similar term)|indecipherable (similar term)|unclear (similar term)|undecipherable (similar term)|unreadable (similar term)|legible (antonym)
+illegibly|1
+(adv)|undecipherably|unreadably|legibly (antonym)
+illegitimacy|2
+(noun)|bastardy|bar sinister|status (generic term)|position (generic term)
+(noun)|unlawfulness (generic term)|legitimacy (antonym)
+illegitimate|3
+(adj)|illicit|outlaw|outlawed|unlawful|illegal (similar term)
+(adj)|adulterine (similar term)|base (similar term)|baseborn (similar term)|bastardly (similar term)|misbegot (similar term)|misbegotten (similar term)|spurious (similar term)|fatherless (similar term)|left-handed (similar term)|unlawful (similar term)|wrongful (similar term)|illegal (related term)|invalid (related term)|unauthorized (related term)|unauthorised (related term)|legitimate (antonym)
+(noun)|bastard|by-blow|love child|illegitimate child|whoreson|offspring (generic term)|progeny (generic term)|issue (generic term)
+illegitimate child|1
+(noun)|bastard|by-blow|love child|illegitimate|whoreson|offspring (generic term)|progeny (generic term)|issue (generic term)
+illegitimate enterprise|1
+(noun)|racket|fraudulent scheme|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+illegitimately|2
+(adv)|illicitly|licitly (antonym)|legitimately (antonym)
+(adv)|out of wedlock|legitimately (antonym)
+illiberal|1
+(adj)|intolerant|narrow-minded (similar term)|narrow (similar term)
+illiberality|1
+(noun)|stinginess (generic term)|liberality (antonym)
+illiberally|1
+(adv)|intolerantly
+illicit|2
+(adj)|adulterous (similar term)|extramarital (similar term)|extracurricular (similar term)|unlawful (similar term)|licit (antonym)
+(adj)|illegitimate|outlaw|outlawed|unlawful|illegal (similar term)
+illicitly|2
+(adv)|illegitimately|licitly (antonym)|legitimately (antonym)
+(adv)|illegally|lawlessly|lawfully (antonym)
+illicitness|1
+(noun)|unlawfulness (generic term)|licitness (antonym)
+illicium|1
+(noun)|Illicium|genus Illicium|magnoliid dicot genus (generic term)
+illicium anisatum|1
+(noun)|star anise|Illicium anisatum|anise tree (generic term)
+illicium floridanum|1
+(noun)|purple anise|Illicium floridanum|anise tree (generic term)
+illicium verum|1
+(noun)|star anise|Chinese anise|Illicium verum|anise tree (generic term)
+illimani|1
+(noun)|Illimani|mountain peak (generic term)
+illimitable|1
+(adj)|limitless|measureless|unmeasured|immeasurable (similar term)|unmeasurable (similar term)|immensurable (similar term)
+illinois|3
+(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state (generic term)
+(noun)|Illinois|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Illinois|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+illinois river|1
+(noun)|Illinois River|river (generic term)
+illinoisan|1
+(noun)|Illinoisan|American (generic term)
+illiteracy|2
+(noun)|ignorance (generic term)
+(noun)|analphabetism|inability (generic term)|literacy (antonym)
+illiterate|4
+(adj)|analphabetic (similar term)|unlettered (similar term)|functionally illiterate (similar term)|preliterate (similar term)|semiliterate (similar term)|semiliterate (similar term)|uneducated (related term)|literate (antonym)
+(adj)|ignorant|uneducated (similar term)
+(adj)|literate (antonym)
+(noun)|illiterate person|nonreader|ignoramus (generic term)|know nothing (generic term)|uneducated person (generic term)
+illiterate person|1
+(noun)|illiterate|nonreader|ignoramus (generic term)|know nothing (generic term)|uneducated person (generic term)
+illness|1
+(noun)|unwellness|malady|sickness|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|wellness (antonym)|wellness (antonym)
+illogic|1
+(noun)|illogicality|illogicalness|inconsequence|quality (generic term)|logicalness (antonym)|logicality (antonym)
+illogical|2
+(adj)|unlogical|absurd (similar term)|inconsequential (similar term)|intuitive (similar term)|nonrational (similar term)|visceral (similar term)|incoherent (related term)|irrational (related term)|unreasonable (related term)|logical (antonym)
+(adj)|confused|disconnected|disjointed|disordered|garbled|scattered|unconnected|incoherent (similar term)
+illogicality|1
+(noun)|illogicalness|illogic|inconsequence|quality (generic term)|logicalness (antonym)|logicality (antonym)
+illogically|1
+(adv)|logically (antonym)
+illogicalness|1
+(noun)|illogicality|illogic|inconsequence|quality (generic term)|logicalness (antonym)|logicality (antonym)
+illume|1
+(verb)|light|illumine|light up|illuminate|lighten (generic term)|lighten up (generic term)
+illuminance|1
+(noun)|illumination|luminosity (generic term)|brightness (generic term)|brightness level (generic term)|luminance (generic term)|luminousness (generic term)|light (generic term)
+illuminant|1
+(noun)|fuel (generic term)
+illuminate|3
+(verb)|light|illume|illumine|light up|lighten (generic term)|lighten up (generic term)
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+illuminated|1
+(adj)|lighted|lit|well-lighted|light (similar term)
+illuminating|2
+(adj)|enlightening|informative|unenlightening (antonym)
+(adj)|light (similar term)
+illumination|5
+(noun)|light|condition (generic term)|status (generic term)
+(noun)|state (generic term)
+(noun)|clarification|elucidation|interpretation (generic term)
+(noun)|illuminance|luminosity (generic term)|brightness (generic term)|brightness level (generic term)|luminance (generic term)|luminousness (generic term)|light (generic term)
+(noun)|miniature|painting (generic term)|picture (generic term)
+illumination unit|1
+(noun)|light unit (generic term)
+illumine|1
+(verb)|light|illume|light up|illuminate|lighten (generic term)|lighten up (generic term)
+illusion|4
+(noun)|semblance|appearance (generic term)
+(noun)|fantasy|phantasy|fancy|misconception (generic term)
+(noun)|delusion|head game|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|thaumaturgy|deception|performance (generic term)
+illusional|1
+(adj)|illusionary|unreal (similar term)
+illusionary|1
+(adj)|illusional|unreal (similar term)
+illusionist|2
+(noun)|visionary|seer|intellectual (generic term)|intellect (generic term)
+(noun)|magician|prestidigitator|conjurer|conjuror|performer (generic term)|performing artist (generic term)
+illusive|1
+(adj)|illusory|unreal (similar term)
+illusory|1
+(adj)|illusive|unreal (similar term)
+illustrate|3
+(verb)|exemplify|instance|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+(verb)|picture (generic term)|depict (generic term)|render (generic term)|show (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+illustration|4
+(noun)|artwork (generic term)|art (generic term)|graphics (generic term)|nontextual matter (generic term)
+(noun)|exemplification|demonstration (generic term)|demo (generic term)
+(noun)|example|instance|representative|information (generic term)
+(noun)|representation (generic term)
+illustrative|2
+(adj)|exemplifying|informative (similar term)|informatory (similar term)
+(adj)|demonstrative|instructive (similar term)|informative (similar term)
+illustrator|1
+(noun)|artist (generic term)|creative person (generic term)
+illustrious|3
+(adj)|celebrated|famed|far-famed|famous|notable|noted|renowned|known (similar term)
+(adj)|glorious (similar term)
+(adj)|glorious|redoubtable|respected|proud (similar term)
+illustriousness|1
+(noun)|greatness|importance (generic term)
+illyria|1
+(noun)|Illyria|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+illyrian|1
+(noun)|Illyrian|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+ilmen|1
+(noun)|Lake Ilmen|Ilmen|lake (generic term)
+ilmenite|1
+(noun)|mineral (generic term)
+ilo|1
+(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency (generic term)|UN agency (generic term)
+ilosone|1
+(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+ilx|1
+(adj)|fifty-nine|59|cardinal (similar term)
+ilxx|1
+(adj)|sixty-nine|69|cardinal (similar term)
+ilxxx|1
+(adj)|seventy-nine|79|cardinal (similar term)
+ilya ehrenberg|1
+(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer (generic term)|author (generic term)
+ilya grigorievich ehrenberg|1
+(noun)|Ehrenberg|Ilya Ehrenberg|Ilya Grigorievich Ehrenberg|writer (generic term)|author (generic term)
+ilya ilich metchnikov|1
+(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist (generic term)
+image|9
+(noun)|mental image|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|picture|icon|ikon|representation (generic term)
+(noun)|persona|appearance (generic term)|visual aspect (generic term)
+(noun)|prototype|paradigm|epitome|model (generic term)|example (generic term)
+(noun)|trope|figure of speech|figure|rhetorical device (generic term)
+(noun)|double|look-alike|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|impression (generic term)|effect (generic term)
+(noun)|effigy|simulacrum|representation (generic term)
+(verb)|visualize|visualise|envision|project|fancy|see|figure|picture|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+image breaker|1
+(noun)|iconoclast|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+image compression|1
+(noun)|compression (generic term)
+image orthicon|1
+(noun)|orthicon|television-camera tube (generic term)|television pickup tube (generic term)
+image scanner|1
+(noun)|scanner|digital scanner|electronic device (generic term)|data input device (generic term)|input device (generic term)
+imagery|1
+(noun)|imagination|imaging|mental imagery|representational process (generic term)
+imaginable|1
+(adj)|conceivable|possible|thinkable (similar term)
+imaginary|2
+(adj)|fanciful|imagined|notional|unreal (similar term)
+(noun)|complex number|complex quantity|imaginary number|number (generic term)
+imaginary being|1
+(noun)|imaginary creature|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+imaginary creature|1
+(noun)|imaginary being|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+imaginary number|1
+(noun)|complex number|complex quantity|imaginary|number (generic term)
+imaginary part|1
+(noun)|imaginary part of a complex number|pure imaginary number (generic term)
+imaginary part of a complex number|1
+(noun)|imaginary part|pure imaginary number (generic term)
+imaginary place|1
+(noun)|mythical place|fictitious place|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+imagination|3
+(noun)|imaginativeness|vision|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|imaging|imagery|mental imagery|representational process (generic term)
+(noun)|resource|resourcefulness|inventiveness (generic term)|ingeniousness (generic term)|ingenuity (generic term)|cleverness (generic term)
+imagination image|1
+(noun)|thought-image|image (generic term)|mental image (generic term)
+imaginative|1
+(adj)|ingenious|inventive|creative (similar term)|originative (similar term)
+imaginative comparison|1
+(noun)|comparison (generic term)
+imaginatively|1
+(adv)|unimaginatively (antonym)
+imaginativeness|1
+(noun)|imagination|vision|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+imagine|2
+(verb)|conceive of|ideate|envisage|create by mental act (generic term)|create mentally (generic term)
+(verb)|think|opine|suppose|reckon|guess|expect (generic term)|anticipate (generic term)
+imagined|1
+(adj)|fanciful|imaginary|notional|unreal (similar term)
+imaging|2
+(noun)|imagination|imagery|mental imagery|representational process (generic term)
+(noun)|tomography|pictorial representation (generic term)|picturing (generic term)
+imagism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+imago|2
+(noun)|prototype (generic term)|paradigm (generic term)|epitome (generic term)|image (generic term)
+(noun)|insect (generic term)
+imam|1
+(noun)|imaum|leader (generic term)|Muslim (generic term)|Moslem (generic term)
+imamu amiri baraka|1
+(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer (generic term)|author (generic term)
+imaret|1
+(noun)|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+imaum|1
+(noun)|imam|leader (generic term)|Muslim (generic term)|Moslem (generic term)
+imavate|1
+(noun)|imipramine|impramine hydrochloride|Imavate|Tofranil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+imbalance|2
+(noun)|instability|unbalance|disequilibrium (generic term)|balance (antonym)
+(noun)|asymmetry|dissymmetry|spatial property (generic term)|spatiality (generic term)|symmetry (antonym)
+imbalanced|1
+(adj)|unbalanced|labile (similar term)|balanced (antonym)
+imbauba|1
+(noun)|trumpetwood|trumpet-wood|trumpet tree|snake wood|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+imbecile|2
+(adj)|imbecilic|idiotic|unintelligent (similar term)|stupid (similar term)
+(noun)|idiot|cretin|moron|changeling|half-wit|retard|simpleton (generic term)|simple (generic term)
+imbecilic|1
+(adj)|imbecile|idiotic|unintelligent (similar term)|stupid (similar term)
+imbecility|2
+(noun)|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+(noun)|stupidity|betise|folly|foolishness|mistake (generic term)|error (generic term)|fault (generic term)
+imbed|1
+(verb)|implant|engraft|embed|plant|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+imbibe|4
+(verb)|absorb|suck|soak up|sop up|suck up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|assimilate|absorb (generic term)
+(verb)|drink|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)|drink up (related term)|drink down (related term)
+(verb)|absorb (generic term)|assimilate (generic term)|ingest (generic term)|take in (generic term)
+imbiber|1
+(noun)|drinker|toper|juicer|consumer (generic term)|nondrinker (antonym)
+imbibing|1
+(noun)|drinking|imbibition|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+imbibition|2
+(noun)|absorption (generic term)|soaking up (generic term)
+(noun)|drinking|imbibing|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+imbricate|3
+(adj)|imbricated|rough (similar term)|unsmooth (similar term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|overlap (generic term)
+imbricated|1
+(adj)|imbricate|rough (similar term)|unsmooth (similar term)
+imbrication|1
+(noun)|overlapping|lapping|covering (generic term)
+imbroglio|2
+(noun)|embroilment|situation (generic term)
+(noun)|misinterpretation (generic term)|misunderstanding (generic term)|mistaking (generic term)
+imbrue|1
+(verb)|drench|impregnate (generic term)|saturate (generic term)
+imbue|3
+(verb)|permeate|pervade|penetrate|interpenetrate|diffuse|riddle|penetrate (generic term)|perforate (generic term)
+(verb)|soak|impregnate (generic term)|saturate (generic term)
+(verb)|hue|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+imf|1
+(noun)|International Monetary Fund|IMF|United Nations agency (generic term)|UN agency (generic term)
+imidazole|1
+(noun)|iminazole|glyoxaline|base (generic term)|alkali (generic term)
+imide|1
+(noun)|organic compound (generic term)
+iminazole|1
+(noun)|imidazole|glyoxaline|base (generic term)|alkali (generic term)
+imipramine|1
+(noun)|impramine hydrochloride|Imavate|Tofranil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+imitate|3
+(verb)|copy|simulate|reproduce (generic term)
+(verb)|resemble (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+imitation|5
+(adj)|fake|false|faux|simulated|artificial (similar term)|unreal (similar term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|formalism (antonym)
+(noun)|counterfeit|forgery|copy (generic term)
+(noun)|copying (generic term)
+(noun)|caricature|impersonation|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+imitation leather|1
+(noun)|leatherette|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+imitative|3
+(adj)|apish (similar term)|apelike (similar term)|mimetic (similar term)|mimic (similar term)|parrotlike (similar term)|simulated (similar term)|nonimitative (antonym)
+(adj)|echoic|onomatopoeic|onomatopoeical|onomatopoetic|nonechoic (antonym)
+(adj)|counterfeit|assumed (similar term)|false (similar term)|fictitious (similar term)|fictive (similar term)|pretended (similar term)|put on (similar term)|sham (similar term)|bad (similar term)|forged (similar term)|base (similar term)|bogus (similar term)|fake (similar term)|phony (similar term)|phoney (similar term)|bastard (similar term)|inauthentic (similar term)|unauthentic (similar term)|spurious (similar term)|mock (similar term)|ostensible (similar term)|ostensive (similar term)|pinchbeck (similar term)|pseudo (similar term)|synthetic (similar term)|artificial (related term)|unreal (related term)|false (related term)|insincere (related term)|unreal (related term)|genuine (antonym)
+imitative electronic deception|1
+(noun)|electronic imitative deception|electronic deception (generic term)
+imitator|2
+(noun)|impersonator|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|copycat|emulator|ape|aper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+immaculate|3
+(adj)|speckless|spick-and-span|spic-and-span|spic|spick|spotless|clean (similar term)
+(adj)|undefiled|pure (similar term)
+(adj)|faultless|impeccable|perfect (similar term)
+immaculate conception|2
+(noun)|Immaculate Conception|December 8|holy day of obligation (generic term)
+(noun)|Immaculate Conception|Immaculate Conception of the Virgin Mary|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+immaculate conception of the virgin mary|1
+(noun)|Immaculate Conception|Immaculate Conception of the Virgin Mary|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+immaculateness|1
+(noun)|spotlessness|cleanness (generic term)
+immanence|1
+(noun)|immanency|presence (generic term)
+immanency|1
+(noun)|immanence|presence (generic term)
+immanent|2
+(adj)|subjective|transeunt (antonym)
+(adj)|distributive (similar term)
+immanuel kant|1
+(noun)|Kant|Immanuel Kant|philosopher (generic term)
+immaterial|5
+(adj)|material (antonym)
+(adj)|incorporeal|discorporate (similar term)|unembodied (similar term)|bodiless (similar term)|unbodied (similar term)|disembodied (similar term)|spiritual (similar term)|unbodied (related term)|corporeal (antonym)
+(adj)|nonmaterial|intangible (similar term)|nonphysical (similar term)|insubstantial (related term)|unsubstantial (related term)|unreal (related term)|material (antonym)
+(adj)|extraneous|impertinent|orthogonal|irrelevant (similar term)
+(adj)|indifferent|unimportant (similar term)
+immaterialise|1
+(verb)|immaterialize|unsubstantialize|unsubstantialise|change (generic term)|alter (generic term)|modify (generic term)
+immateriality|2
+(noun)|irrelevance (generic term)|irrelevancy (generic term)|materiality (antonym)
+(noun)|incorporeality|quality (generic term)|corporeality (antonym)|materiality (antonym)
+immaterialize|1
+(verb)|immaterialise|unsubstantialize|unsubstantialise|change (generic term)|alter (generic term)|modify (generic term)
+immature|6
+(adj)|adolescent (similar term)|jejune (similar term)|juvenile (similar term)|puerile (similar term)|babyish (similar term)|childish (similar term)|infantile (similar term)|mature (antonym)
+(adj)|unformed|undeveloped (similar term)
+(adj)|young|one-year-old (similar term)|two-year-old (similar term)|three-year-old (similar term)|four-year-old (similar term)|five-year-old (similar term)|adolescent (similar term)|teen (similar term)|teenage (similar term)|teenaged (similar term)|infantile (similar term)|boyish (similar term)|boylike (similar term)|schoolboyish (similar term)|childlike (similar term)|childly (similar term)|early (similar term)|formative (similar term)|girlish (similar term)|schoolgirlish (similar term)|junior (similar term)|little (similar term)|small (similar term)|newborn (similar term)|preteen (similar term)|preadolescent (similar term)|puppyish (similar term)|puppylike (similar term)|tender (similar term)|youngish (similar term)|youthful (similar term)|vernal (similar term)|young (similar term)|immature (related term)|junior (related term)|new (related term)|old (antonym)
+(adj)|green|unripe|unripened|unaged (similar term)|ripe (antonym)
+(adj)|adolescent (similar term)|embryonic (similar term)|embryologic (similar term)|embryonal (similar term)|inchoative (similar term)|larval (similar term)|prepubescent (similar term)|prepubertal (similar term)|prepupal (similar term)|pubescent (similar term)|pupal (similar term)|underdeveloped (similar term)|unformed (similar term)|premature (related term)|young (related term)|immature (related term)|mature (antonym)
+(adj)|unfledged|unfeathered (similar term)|fledged (antonym)
+immaturely|1
+(adv)|jejunely|maturely (antonym)
+immatureness|1
+(noun)|immaturity|state (generic term)|maturity (antonym)
+immaturity|1
+(noun)|immatureness|state (generic term)|maturity (antonym)
+immeasurable|2
+(adj)|unmeasurable|immensurable|abysmal (similar term)|illimitable (similar term)|limitless (similar term)|measureless (similar term)|unmeasured (similar term)|measurable (antonym)
+(adj)|incomputable|inestimable|incalculable (similar term)
+immeasurably|2
+(adv)|measurably (antonym)
+(adv)|boundlessly|infinitely
+immediacy|3
+(noun)|immediateness|directness (generic term)|straightness (generic term)|mediacy (antonym)
+(noun)|immediate apprehension|intuition (generic term)
+(noun)|immediateness|instantaneousness|instancy|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+immediate|5
+(adj)|contiguous|close (similar term)
+(adj)|direct (similar term)|unmediated (similar term)|mediate (antonym)
+(adj)|proximate (similar term)
+(adj)|present (similar term)
+(adj)|prompt|quick|straightaway|fast (similar term)
+immediate allergy|1
+(noun)|atopy|atopic allergy|type I allergic reaction|allergy (generic term)|allergic reaction (generic term)
+immediate apprehension|1
+(noun)|immediacy|intuition (generic term)
+immediate constituent|1
+(noun)|constituent (generic term)|grammatical constituent (generic term)
+immediate memory|1
+(noun)|short-term memory|STM|memory (generic term)|remembering (generic term)
+immediate payment|1
+(noun)|cash|payment (generic term)|credit (antonym)
+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 (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+(noun)|immediacy|directness (generic term)|straightness (generic term)|mediacy (antonym)
+immemorial|1
+(adj)|old (similar term)
+immense|1
+(adj)|huge|vast|Brobdingnagian|large (similar term)|big (similar term)
+immensely|1
+(adv)|vastly
+immenseness|1
+(noun)|enormousness|grandness|greatness|immensity|sizeableness|vastness|wideness|largeness (generic term)|bigness (generic term)
+immensity|1
+(noun)|enormousness|grandness|greatness|immenseness|sizeableness|vastness|wideness|largeness (generic term)|bigness (generic term)
+immensurable|1
+(adj)|immeasurable|unmeasurable|abysmal (similar term)|illimitable (similar term)|limitless (similar term)|measureless (similar term)|unmeasured (similar term)|measurable (antonym)
+immerse|4
+(verb)|plunge|penetrate (generic term)|perforate (generic term)
+(verb)|steep|engulf|plunge|engross|absorb|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|swallow|swallow up|bury|eat up|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|plunge
+immersion|5
+(noun)|submergence|submerging|submersion|sinking (generic term)
+(noun)|ingress|disappearance (generic term)|emersion (antonym)|egress (antonym)
+(noun)|concentration|engrossment|absorption|attention (generic term)
+(noun)|baptism (generic term)
+(noun)|submersion|ducking|dousing|wetting (generic term)
+immersion foot|1
+(noun)|trench foot|frostbite (generic term)|cryopathy (generic term)
+immersion heater|1
+(noun)|heating element (generic term)
+immigrant|1
+(noun)|migrant (generic term)|migrator (generic term)
+immigrant class|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+immigrate|3
+(verb)|migrate (generic term)|transmigrate (generic term)
+(verb)|bring in (generic term)|introduce (generic term)
+(verb)|migrate (generic term)|transmigrate (generic term)|emigrate (antonym)
+immigration|2
+(noun)|in-migration|migration (generic term)
+(noun)|body (generic term)
+immigration and naturalization service|1
+(noun)|Immigration and Naturalization Service|INS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+imminence|1
+(noun)|imminency|imminentness|impendence|impendency|forthcomingness|state (generic term)
+imminency|1
+(noun)|imminence|imminentness|impendence|impendency|forthcomingness|state (generic term)
+imminent|1
+(adj)|at hand|close at hand|impendent|impending|close (similar term)
+imminent abortion|1
+(noun)|threatened abortion|spontaneous abortion (generic term)|miscarriage (generic term)|stillbirth (generic term)
+imminentness|1
+(noun)|imminence|imminency|impendence|impendency|forthcomingness|state (generic term)
+immingle|1
+(verb)|blend|intermix|intermingle|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+immiscible|1
+(adj)|non-miscible|unmixable|incompatible (similar term)|miscible (antonym)
+immix|1
+(verb)|blend|flux|mix|conflate|commingle|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+immobile|2
+(adj)|immovable (similar term)|immoveable (similar term)|stabile (similar term)|unmovable (similar term)|nonmotile (similar term)|immotile (similar term)|stiff (similar term)|nonmoving (related term)|unmoving (related term)|mobile (antonym)
+(adj)|fast|firm|fixed (similar term)
+immobilisation|2
+(noun)|immobilization|preservation (generic term)|saving (generic term)
+(noun)|immobilization|immobilizing|restraint (generic term)
+immobilise|6
+(verb)|immobilize|withhold (generic term)|keep back (generic term)
+(verb)|trap|pin|immobilize
+(verb)|immobilize|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|immobilize|convert (generic term)|change over (generic term)
+(verb)|freeze|block|immobilize|withhold (generic term)|keep back (generic term)|unblock (antonym)|unfreeze (antonym)
+(verb)|immobilize|restrict (generic term)|curtail (generic term)|curb (generic term)|cut back (generic term)
+immobility|2
+(noun)|stationariness|fixedness|motionlessness (generic term)|stillness (generic term)|lifelessness (generic term)
+(noun)|quality (generic term)|mobility (antonym)
+immobilization|2
+(noun)|immobilisation|preservation (generic term)|saving (generic term)
+(noun)|immobilisation|immobilizing|restraint (generic term)
+immobilize|6
+(verb)|immobilise|withhold (generic term)|keep back (generic term)
+(verb)|trap|pin|immobilise
+(verb)|immobilise|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|immobilise|convert (generic term)|change over (generic term)
+(verb)|freeze|block|immobilise|withhold (generic term)|keep back (generic term)|unblock (antonym)|unfreeze (antonym)
+(verb)|immobilise|restrict (generic term)|curtail (generic term)|curb (generic term)|cut back (generic term)
+immobilizing|1
+(noun)|immobilization|immobilisation|restraint (generic term)
+immoderate|1
+(adj)|abnormal (similar term)|all-fired (similar term)|exaggerated (similar term)|overdone (similar term)|overstated (similar term)|excessive (similar term)|inordinate (similar term)|undue (similar term)|unreasonable (similar term)|exorbitant (similar term)|extortionate (similar term)|outrageous (similar term)|steep (similar term)|unconscionable (similar term)|usurious (similar term)|extraordinary (similar term)|over-the-top (similar term)|sinful (similar term)|extreme (similar term)|extreme (similar term)|extremist (similar term)|radical (similar term)|ultra (similar term)|far (similar term)|stark (similar term)|intemperate (related term)|intense (related term)|unreasonable (related term)|moderate (antonym)
+immoderately|2
+(adv)|without moderation|moderately (antonym)
+(adv)|unreasonably|moderately (antonym)|reasonably (antonym)
+immoderateness|1
+(noun)|immoderation|degree (generic term)|grade (generic term)|level (generic term)|moderation (antonym)
+immoderation|1
+(noun)|immoderateness|degree (generic term)|grade (generic term)|level (generic term)|moderation (antonym)
+immodest|2
+(adj)|important (similar term)|overweening (similar term)|uppity (similar term)|disrespectful (related term)|domineering (related term)|proud (related term)|modest (antonym)
+(adj)|indecent (similar term)|indecent (related term)|modest (antonym)
+immodestly|1
+(adv)|without modesty|modestly (antonym)
+immodesty|2
+(noun)|indecency (generic term)|modesty (antonym)
+(noun)|exhibitionism|paraphilia (generic term)
+immolate|1
+(verb)|sacrifice (generic term)
+immolation|1
+(noun)|sacrifice (generic term)|ritual killing (generic term)
+immoral|5
+(adj)|debauched (similar term)|degenerate (similar term)|degraded (similar term)|dissipated (similar term)|dissolute (similar term)|libertine (similar term)|profligate (similar term)|riotous (similar term)|fast (similar term)|disgraceful (similar term)|scandalous (similar term)|shameful (similar term)|shocking (similar term)|scrofulous (similar term)|evil (related term)|unchaste (related term)|unrighteous (related term)|wicked (related term)|moral (antonym)|amoral (antonym)
+(adj)|base|dishonorable|dishonourable|unethical|wrong (similar term)
+(adj)|unprincipled (similar term)
+(adj)|bad|evil (similar term)
+(adj)|depraved|perverse|perverted|reprobate|corrupt (similar term)
+immorality|2
+(noun)|quality (generic term)|morality (antonym)
+(noun)|evil|wickedness|iniquity|transgression (generic term)|evildoing (generic term)
+immorally|1
+(adv)|amorally|morally (antonym)
+immortal|3
+(adj)|amaranthine (similar term)|unfading (similar term)|deathless (similar term)|undying (similar term)|deific (similar term)|heavenly (related term)|infinite (related term)|mortal (antonym)
+(noun)|celebrity (generic term)|famous person (generic term)
+(noun)|deity|divinity|god|spiritual being (generic term)|supernatural being (generic term)
+immortalise|2
+(verb)|commemorate|memorialize|memorialise|immortalize|record|remind (generic term)
+(verb)|immortalize|eternize|eternise|eternalize|eternalise|change (generic term)|alter (generic term)|modify (generic term)
+immortality|2
+(noun)|permanence (generic term)|permanency (generic term)|mortality (antonym)
+(noun)|afterlife (generic term)|hereafter (generic term)
+immortalize|2
+(verb)|commemorate|memorialize|memorialise|immortalise|record|remind (generic term)
+(verb)|immortalise|eternize|eternise|eternalize|eternalise|change (generic term)|alter (generic term)|modify (generic term)
+immortelle|1
+(noun)|Xeranthemum annuum|everlasting (generic term)|everlasting flower (generic term)
+immotile|1
+(adj)|nonmotile|immobile (similar term)
+immotility|1
+(noun)|immobility (generic term)|motility (antonym)
+immovability|1
+(noun)|immovableness|immobility (generic term)|movableness (antonym)|movability (antonym)
+immovable|2
+(adj)|immoveable|stabile|unmovable|immobile (similar term)
+(noun)|real property|real estate|realty|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+immovable bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+immovableness|1
+(noun)|immovability|immobility (generic term)|movableness (antonym)|movability (antonym)
+immoveable|1
+(adj)|immovable|stabile|unmovable|immobile (similar term)
+immune|5
+(adj)|condition|status (related term)
+(adj)|exempt (similar term)
+(adj)|resistant|unsusceptible (similar term)|insusceptible (similar term)
+(adj)|unaffected (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+immune carrier|1
+(noun)|carrier|immune (generic term)|vector (generic term)|transmitter (generic term)
+immune gamma globulin|1
+(noun)|immunoglobulin|Ig|immune serum globulin|immune globulin|gamma globulin (generic term)|human gamma globulin (generic term)|antibody (generic term)
+immune globulin|1
+(noun)|immunoglobulin|Ig|immune serum globulin|immune gamma globulin|gamma globulin (generic term)|human gamma globulin (generic term)|antibody (generic term)
+immune reaction|1
+(noun)|immune response|immunologic response|reaction (generic term)|response (generic term)
+immune response|1
+(noun)|immune reaction|immunologic response|reaction (generic term)|response (generic term)
+immune serum globulin|1
+(noun)|immunoglobulin|Ig|immune gamma globulin|immune globulin|gamma globulin (generic term)|human gamma globulin (generic term)|antibody (generic term)
+immune suppressant drug|1
+(noun)|immunosuppressant|immunosuppressor|immunosuppressive drug|immunosuppressive|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+immune system|1
+(noun)|system (generic term)
+immunisation|1
+(noun)|immunization|protection (generic term)
+immunise|2
+(verb)|immunize|protect (generic term)
+(verb)|immunize|inoculate|vaccinate|inject (generic term)|shoot (generic term)
+immunised|1
+(adj)|immunized|vaccinated|unsusceptible (similar term)|insusceptible (similar term)
+immunity|4
+(noun)|unsusceptibility|condition (generic term)|status (generic term)|susceptibility (antonym)
+(noun)|resistance|condition (generic term)|status (generic term)
+(noun)|invulnerability (generic term)
+(noun)|exemption|granting immunity|release (generic term)|waiver (generic term)|discharge (generic term)
+immunization|1
+(noun)|immunisation|protection (generic term)
+immunize|2
+(verb)|immunise|protect (generic term)
+(verb)|immunise|inoculate|vaccinate|inject (generic term)|shoot (generic term)
+immunized|1
+(adj)|immunised|vaccinated|unsusceptible (similar term)|insusceptible (similar term)
+immunizing agent|1
+(noun)|immunogen|antigen (generic term)
+immunoassay|1
+(noun)|immunochemical assay|bioassay (generic term)|bio-assay (generic term)
+immunochemical|1
+(adj)|chemistry|chemical science|immunology (related term)
+immunochemical assay|1
+(noun)|immunoassay|bioassay (generic term)|bio-assay (generic term)
+immunochemistry|1
+(noun)|chemoimmunology|chemistry (generic term)|chemical science (generic term)|immunology (generic term)
+immunocompetence|1
+(noun)|ability (generic term)|immunodeficiency (antonym)
+immunocompetent|1
+(adj)|immunodeficient (antonym)
+immunocompromised|1
+(adj)|disorder|upset (related term)
+immunodeficiency|1
+(noun)|immunological disorder (generic term)|immunocompetence (antonym)
+immunodeficient|1
+(adj)|immunocompetent (antonym)
+immunoelectrophoresis|1
+(noun)|electrophoresis (generic term)|cataphoresis (generic term)|dielectrolysis (generic term)|ionophoresis (generic term)
+immunofluorescence|1
+(noun)|technique (generic term)
+immunogen|1
+(noun)|immunizing agent|antigen (generic term)
+immunogenic|1
+(adj)|unsusceptible (similar term)|insusceptible (similar term)
+immunogenicity|1
+(noun)|immunity (generic term)|resistance (generic term)
+immunoglobulin|1
+(noun)|Ig|immune serum globulin|immune gamma globulin|immune globulin|gamma globulin (generic term)|human gamma globulin (generic term)|antibody (generic term)
+immunoglobulin a|1
+(noun)|immunoglobulin A|IgA|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+immunoglobulin d|1
+(noun)|immunoglobulin D|IgD|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+immunoglobulin e|1
+(noun)|immunoglobulin E|IgE|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+immunoglobulin g|1
+(noun)|immunoglobulin G|IgG|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+immunoglobulin m|1
+(noun)|immunoglobulin M|IgM|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+immunohistochemistry|1
+(noun)|assay (generic term)
+immunologic|1
+(adj)|immunological|medicine|medical specialty (related term)
+immunologic response|1
+(noun)|immune response|immune reaction|reaction (generic term)|response (generic term)
+immunological|1
+(adj)|immunologic|medicine|medical specialty (related term)
+immunological disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+immunologist|1
+(noun)|medical scientist (generic term)
+immunology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+immunopathology|1
+(noun)|immunology (generic term)
+immunosuppressant|1
+(noun)|immunosuppressor|immunosuppressive drug|immunosuppressive|immune suppressant drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+immunosuppressed|1
+(adj)|immunological disorder (related term)
+immunosuppression|1
+(noun)|immunological disorder (generic term)
+immunosuppressive|2
+(adj)|immunological disorder (related term)
+(noun)|immunosuppressant|immunosuppressor|immunosuppressive drug|immune suppressant drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+immunosuppressive drug|1
+(noun)|immunosuppressant|immunosuppressor|immunosuppressive|immune suppressant drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+immunosuppressor|1
+(noun)|immunosuppressant|immunosuppressive drug|immunosuppressive|immune suppressant drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+immunotherapeutic|1
+(adj)|therapy (related term)
+immunotherapy|1
+(noun)|therapy (generic term)
+immure|1
+(verb)|imprison|incarcerate|lag|put behind bars|jail|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+immurement|1
+(noun)|captivity|imprisonment|incarceration|confinement (generic term)
+immutability|1
+(noun)|immutableness|fixity|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|mutableness (antonym)|mutability (antonym)
+immutable|1
+(adj)|changeless|mutable (antonym)
+immutableness|1
+(noun)|immutability|fixity|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|mutableness (antonym)|mutability (antonym)
+immutably|1
+(adv)|unalterably|unchangeably|unassailably
+imo|1
+(noun)|International Maritime Organization|IMO|United Nations agency (generic term)|UN agency (generic term)
+imogene coca|1
+(noun)|Coca|Imogene Coca|comedienne (generic term)
+imou pine|1
+(noun)|rimu|red pine|Dacrydium cupressinum|conifer (generic term)|coniferous tree (generic term)
+imp|2
+(noun)|elf|hob|gremlin|pixie|pixy|brownie|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|scamp|monkey|rascal|rapscallion|scalawag|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+impact|6
+(noun)|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|wallop|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|impingement|encroachment|influence (generic term)
+(noun)|shock|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|wedge (generic term)|squeeze (generic term)|force (generic term)
+(verb)|affect|bear upon|bear on|touch on|touch|change (generic term)|alter (generic term)|modify (generic term)
+impact printer|1
+(noun)|printer (generic term)|printing machine (generic term)
+impacted|1
+(adj)|wedged|compact (similar term)
+impacted fracture|1
+(noun)|fracture (generic term)|break (generic term)
+impacted tooth|1
+(noun)|impaction|disorder (generic term)|upset (generic term)
+impaction|4
+(noun)|condition (generic term)|status (generic term)
+(noun)|disorder (generic term)|upset (generic term)
+(noun)|impacted tooth|disorder (generic term)|upset (generic term)
+(noun)|impingement|crash (generic term)|smash (generic term)
+impair|2
+(verb)|damage (generic term)
+(verb)|mar|spoil|deflower|vitiate|damage (generic term)
+impaired|2
+(adj)|anosmic (similar term)|broken (similar term)|dicky (similar term)|dickey (similar term)|diminished (similar term)|lessened (similar term)|vitiated (similar term)|weakened (similar term)|dysfunctional (similar term)|dyslectic (similar term)|dyslexic (similar term)|visually impaired (similar term)|damaged (related term)|injured (related term)|unimpaired (antonym)
+(adj)|afflicted|unfit (similar term)
+impairer|1
+(noun)|agent (generic term)
+impairment|5
+(noun)|damage|harm|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|deterioration|decay (generic term)
+(noun)|disability|disablement|handicap|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+(noun)|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+(noun)|stultification|constipation|deadening|degradation (generic term)|debasement (generic term)
+impala|1
+(noun)|Aepyceros melampus|antelope (generic term)
+impala lily|1
+(noun)|mock azalia|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+impale|2
+(verb)|transfix|empale|spike|pierce (generic term)|thrust (generic term)
+(verb)|stake|kill (generic term)
+impalement|1
+(noun)|cruelty (generic term)|inhuman treatment (generic term)
+impalpability|1
+(noun)|intangibility|intangibleness|immateriality (generic term)|incorporeality (generic term)|palpability (antonym)|tangibility (antonym)
+impalpable|3
+(adj)|intangible|abstract (related term)|tangible (antonym)
+(adj)|elusive (similar term)|subtle (similar term)|imperceptible (related term)|unperceivable (related term)|palpable (antonym)
+(adj)|imperceptible (similar term)|unperceivable (similar term)
+impalpably|1
+(adv)|insubstantially
+impanel|2
+(verb)|empanel|list (generic term)
+(verb)|empanel|panel|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+imparipinnate|1
+(adj)|odd-pinnate|compound (similar term)
+impart|4
+(verb)|leave|give|pass on|tell (generic term)
+(verb)|lend|bestow|contribute|add|bring|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|expose|divulge|break|give away|let out|tell (generic term)
+(verb)|convey|communicate (generic term)|intercommunicate (generic term)
+impartation|1
+(noun)|conveyance|imparting|transmission (generic term)
+impartial|2
+(adj)|fair|disinterested (similar term)|dispassionate (similar term)|cold-eyed (similar term)|indifferent (similar term)|unbiased (similar term)|unbiassed (similar term)|indifferent (similar term)|fair (related term)|just (related term)|partial (antonym)
+(adj)|unprejudiced|color-blind (similar term)|colour-blind (similar term)|nonracist (similar term)|receptive (related term)|open (related term)|prejudiced (antonym)
+impartiality|1
+(noun)|nonpartisanship|inclination (generic term)|disposition (generic term)|tendency (generic term)|partiality (antonym)
+imparting|1
+(noun)|conveyance|impartation|transmission (generic term)
+impassable|1
+(adj)|unpassable|unsurmountable (similar term)|unclimbable (similar term)|unnavigable (similar term)|untraversable (similar term)|passable (antonym)
+impasse|2
+(noun)|deadlock|dead end|stalemate|standstill|situation (generic term)
+(noun)|blind alley|cul de sac|dead-end street|thoroughfare (generic term)
+impassioned|1
+(adj)|ardent|burning|fervent|fervid|fiery|perfervid|torrid|passionate (similar term)
+impassive|2
+(adj)|stolid|unemotional (similar term)
+(adj)|deadpan|expressionless|poker-faced|unexpressive|uncommunicative (similar term)|incommunicative (similar term)
+impassiveness|1
+(noun)|emotionlessness|impassivity|phlegm|indifference|stolidity|unemotionality|apathy (generic term)
+impassivity|1
+(noun)|emotionlessness|impassiveness|phlegm|indifference|stolidity|unemotionality|apathy (generic term)
+impasto|1
+(noun)|painting (generic term)
+impatience|3
+(noun)|restlessness|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(noun)|fidget (generic term)|fidgetiness (generic term)|restlessness (generic term)
+(noun)|ill nature (generic term)|patience (antonym)
+impatiens capensis|1
+(noun)|jewelweed|lady's earrings|orange balsam|celandine|touch-me-not|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+impatient|2
+(adj)|restive (similar term)|unforbearing (similar term)|agitated (related term)|patient (antonym)
+(adj)|raring|eager (similar term)
+impatiently|1
+(adv)|with impatience|patiently (antonym)
+impeach|3
+(verb)|challenge (generic term)
+(verb)|charge (generic term)|lodge (generic term)|file (generic term)
+(verb)|accuse|incriminate|criminate|charge (generic term)|accuse (generic term)
+impeachability|1
+(noun)|indictability|guilt (generic term)|guiltiness (generic term)
+impeachment|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+impeccability|2
+(noun)|faultlessness|correctness (generic term)
+(noun)|righteousness (generic term)
+impeccable|2
+(adj)|faultless|immaculate|perfect (similar term)
+(adj)|virtuous (similar term)
+impeccant|1
+(adj)|innocent|sinless|virtuous (similar term)
+impecunious|1
+(adj)|hard up|in straitened circumstances|penniless|penurious|pinched|poor (similar term)
+impecuniousness|1
+(noun)|pennilessness|penuriousness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+impedance|1
+(noun)|electric resistance|electrical resistance|resistance|resistivity|ohmic resistance|electrical phenomenon (generic term)
+impede|2
+(verb)|hinder|prevent (generic term)|keep (generic term)
+(verb)|obstruct|obturate|occlude|jam|block|close up|impede (generic term)|hinder (generic term)|free (antonym)
+impeded|1
+(adj)|obstructed (similar term)
+impediment|2
+(noun)|hindrance|hinderance|deterrent|balk|baulk|check|handicap|difficulty (generic term)
+(noun)|obstruction|obstructor|obstructer|impedimenta|structure (generic term)|construction (generic term)
+impedimenta|2
+(noun)|obstruction|obstructor|obstructer|impediment|structure (generic term)|construction (generic term)
+(noun)|baggage (generic term)
+impeding|1
+(adj)|clogging|hindering|obstructive|preventive (similar term)|preventative (similar term)
+impel|2
+(verb)|force|cause (generic term)|do (generic term)|make (generic term)
+(verb)|propel|move (generic term)|displace (generic term)
+impelled|1
+(adj)|driven|motivated (similar term)
+impellent|1
+(adj)|forceful (similar term)
+impeller|1
+(noun)|blade (generic term)|vane (generic term)
+impelling|1
+(adj)|effective (similar term)|effectual (similar term)|efficacious (similar term)
+impend|1
+(verb)|be (generic term)
+impendence|1
+(noun)|imminence|imminency|imminentness|impendency|forthcomingness|state (generic term)
+impendency|1
+(noun)|imminence|imminency|imminentness|impendence|forthcomingness|state (generic term)
+impendent|1
+(adj)|at hand|close at hand|imminent|impending|close (similar term)
+impending|1
+(adj)|at hand|close at hand|imminent|impendent|close (similar term)
+impenetrability|2
+(noun)|imperviousness|quality (generic term)|perviousness (antonym)|penetrability (antonym)
+(noun)|impenetrableness|incomprehensibility (generic term)
+impenetrable|3
+(adj)|dense (similar term)|thick (similar term)|penetrable (antonym)
+(adj)|dense|heavy|thick (similar term)
+(adj)|incomprehensible (similar term)|uncomprehensible (similar term)
+impenetrableness|1
+(noun)|impenetrability|incomprehensibility (generic term)
+impenitence|1
+(noun)|impenitency|stubbornness (generic term)|bullheadedness (generic term)|obstinacy (generic term)|obstinance (generic term)|pigheadedness (generic term)|self-will (generic term)
+impenitency|1
+(noun)|impenitence|stubbornness (generic term)|bullheadedness (generic term)|obstinacy (generic term)|obstinance (generic term)|pigheadedness (generic term)|self-will (generic term)
+impenitent|2
+(adj)|unrepentant|unremorseful|unashamed (related term)|unregenerate (related term)|unregenerated (related term)|repentant (antonym)|penitent (antonym)
+(adj)|unregenerate (similar term)|unregenerated (similar term)
+impenitently|1
+(adv)|unrepentantly|repentantly (antonym)|penitently (antonym)
+imperative|4
+(adj)|adjuratory (similar term)|clamant (similar term)|crying (similar term)|exigent (similar term)|insistent (similar term)|instant (similar term)|peremptory (similar term)|desperate (similar term)|pressing (similar term)|urgent (similar term)|strident (similar term)|shrill (similar term)|assertive (related term)|beseeching (antonym)
+(adj)|mood|mode|modality (related term)
+(noun)|imperative mood|jussive mood|imperative form|mood (generic term)|mode (generic term)|modality (generic term)
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+imperative form|1
+(noun)|imperative mood|imperative|jussive mood|mood (generic term)|mode (generic term)|modality (generic term)
+imperative mood|1
+(noun)|imperative|jussive mood|imperative form|mood (generic term)|mode (generic term)|modality (generic term)
+imperatively|1
+(adv)|peremptorily
+imperativeness|2
+(noun)|insistence|insistency|press|pressure|urgency (generic term)
+(noun)|instancy|urgency (generic term)
+imperceptibility|1
+(noun)|physical property (generic term)|perceptibility (antonym)
+imperceptible|1
+(adj)|unperceivable|impalpable (similar term)|incognizable (similar term)|incognoscible (similar term)|indiscernible (similar term)|insensible (similar term)|undetectable (similar term)|subliminal (similar term)|unobservable (similar term)|impalpable (related term)|inaudible (related term)|unhearable (related term)|invisible (related term)|unseeable (related term)|perceptible (antonym)
+imperceptibly|1
+(adv)|unnoticeably|perceptibly (antonym)
+imperfect|3
+(adj)|blemished (similar term)|flawed (similar term)|broken (similar term)|corrupt (similar term)|corrupted (similar term)|defective (similar term)|faulty (similar term)|imperfectible (similar term)|blemished (related term)|broken (related term)|perfect (antonym)
+(adj)|fallible|frail|weak|human (similar term)
+(noun)|progressive|progressive tense|imperfect tense|continuous tense|tense (generic term)
+imperfect tense|1
+(noun)|progressive|progressive tense|imperfect|continuous tense|tense (generic term)
+imperfectibility|1
+(noun)|capability (generic term)|capableness (generic term)|potentiality (generic term)|perfectibility (antonym)
+imperfectible|1
+(adj)|imperfect (similar term)
+imperfection|1
+(noun)|imperfectness|state (generic term)|perfection (antonym)
+imperfective|1
+(noun)|imperfective aspect|durative (generic term)|durative aspect (generic term)
+imperfective aspect|1
+(noun)|imperfective|durative (generic term)|durative aspect (generic term)
+imperfectly|1
+(adv)|amiss|perfectly (antonym)
+imperfectness|1
+(noun)|imperfection|state (generic term)|perfection (antonym)
+imperforate|1
+(adj)|uncut (similar term)
+imperforate anus|1
+(noun)|anus (generic term)|arse (generic term)|arsehole (generic term)|asshole (generic term)
+imperforate hymen|1
+(noun)|hymen (generic term)|maidenhead (generic term)|virginal membrane (generic term)
+imperial|5
+(adj)|monarchy (related term)
+(adj)|sovereign|crowned head|monarch (related term)
+(adj)|majestic|purple|regal|royal|noble (similar term)
+(noun)|imperial beard|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+(noun)|baggage (generic term)|luggage (generic term)
+imperial beard|1
+(noun)|imperial|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+imperial capacity unit|1
+(noun)|British capacity unit|Imperial capacity unit|liquid unit (generic term)|liquid measure (generic term)|dry unit (generic term)|dry measure (generic term)
+imperial decree|1
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+imperial elephant|1
+(noun)|imperial mammoth|Archidiskidon imperator|mammoth (generic term)
+imperial gallon|1
+(noun)|gallon|Imperial gallon|congius|British capacity unit (generic term)|Imperial capacity unit (generic term)
+imperial japanese morning glory|1
+(noun)|imperial Japanese morning glory|Ipomoea imperialis|morning glory (generic term)
+imperial mammoth|1
+(noun)|imperial elephant|Archidiskidon imperator|mammoth (generic term)
+imperial moth|1
+(noun)|Eacles imperialis|saturniid (generic term)|saturniid moth (generic term)
+imperialism|3
+(noun)|foreign policy (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+(noun)|control (generic term)
+imperialist|2
+(adj)|imperialistic|control (related term)
+(noun)|believer (generic term)|truster (generic term)
+imperialistic|1
+(adj)|imperialist|control (related term)
+imperil|1
+(verb)|endanger|jeopardize|jeopardise|menace|threaten|peril|exist (generic term)|be (generic term)
+imperious|1
+(adj)|masterful|domineering (similar term)
+imperiousness|1
+(noun)|domineeringness|overbearingness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+imperishability|1
+(noun)|imperishableness|imperishingness|permanence (generic term)|permanency (generic term)
+imperishable|2
+(adj)|durable (similar term)|indestructible (similar term)|perdurable (similar term)|undestroyable (similar term)|imputrescible (similar term)|perishable (antonym)
+(adj)|abiding|enduring|permanent (similar term)|lasting (similar term)
+imperishableness|1
+(noun)|imperishability|imperishingness|permanence (generic term)|permanency (generic term)
+imperishingness|1
+(noun)|imperishability|imperishableness|permanence (generic term)|permanency (generic term)
+imperium|2
+(noun)|empire|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+impermanence|1
+(noun)|impermanency|duration (generic term)|length (generic term)|permanence (antonym)
+impermanency|1
+(noun)|impermanence|duration (generic term)|length (generic term)|permanence (antonym)
+impermanent|2
+(adj)|temporary|acting (similar term)|ephemeral (similar term)|passing (similar term)|short-lived (similar term)|transient (similar term)|transitory (similar term)|fugacious (similar term)|episodic (similar term)|evanescent (similar term)|fly-by-night (similar term)|improvised (similar term)|jury-rigged (similar term)|makeshift (similar term)|interim (similar term)|pro tem (similar term)|pro tempore (similar term)|temporal (similar term)|terminable (similar term)|working (similar term)|unstable (related term)|permanent (antonym)
+(adj)|finite (similar term)
+impermeability|1
+(noun)|impermeableness|solidity (generic term)|solidness (generic term)|permeability (antonym)
+impermeable|1
+(adj)|retentive (similar term)|water-repellent (similar term)|water-resistant (similar term)|impervious (related term)|imperviable (related term)|tight (related term)|permeable (antonym)
+impermeableness|1
+(noun)|impermeability|solidity (generic term)|solidness (generic term)|permeability (antonym)
+impermissibility|1
+(noun)|inadmissibility (generic term)|permissibility (antonym)
+impermissible|2
+(adj)|forbidden (similar term)|out (similar term)|prohibited (similar term)|proscribed (similar term)|taboo (similar term)|tabu (similar term)|verboten (similar term)|unmentionable (similar term)|untouchable (similar term)|intolerable (related term)|unbearable (related term)|unendurable (related term)|permissible (antonym)
+(adj)|inadmissible (similar term)
+impermissibly|1
+(adv)|permissibly (antonym)
+impersonal|2
+(adj)|nonpersonal (similar term)|personal (antonym)
+(adj)|neutral|objective (similar term)|nonsubjective (similar term)
+impersonally|1
+(adv)|personally (antonym)
+impersonate|3
+(verb)|portray|act (generic term)|play (generic term)|represent (generic term)
+(verb)|mock (generic term)
+(verb)|pose|personate|deceive (generic term)|betray (generic term)|lead astray (generic term)
+impersonation|3
+(noun)|caricature|imitation|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|imposture|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(noun)|personation|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+impersonator|1
+(noun)|imitator|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+impertinence|3
+(noun)|impudence|cheek|disrespect (generic term)|discourtesy (generic term)
+(noun)|crust|gall|impudence|insolence|cheekiness|freshness|discourtesy (generic term)|rudeness (generic term)
+(noun)|perkiness|pertness|sauciness|archness|playfulness (generic term)|fun (generic term)
+impertinent|3
+(adj)|irreverent|pert|saucy|spirited (similar term)
+(adj)|extraneous|immaterial|orthogonal|irrelevant (similar term)
+(adj)|fresh|impudent|overbold|smart|saucy|sassy|wise|forward (similar term)
+impertinently|1
+(adv)|saucily|pertly|freshly|impudently
+imperturbability|1
+(noun)|coolness|imperturbableness|calmness (generic term)
+imperturbable|1
+(adj)|unflappable|composed (similar term)
+imperturbableness|1
+(noun)|coolness|imperturbability|calmness (generic term)
+imperviable|1
+(adj)|impervious|fast (similar term)|acid-fast (similar term)|colorfast (similar term)|greaseproof (similar term)|mothproof (similar term)|moth-resistant (similar term)|proof (similar term)|resistant (similar term)|corrosion-resistant (similar term)|rot-resistant (similar term)|runproof (similar term)|ladder-proof (similar term)|run-resistant (similar term)|soundproof (similar term)|impermeable (related term)|pervious (antonym)
+impervious|1
+(adj)|imperviable|fast (similar term)|acid-fast (similar term)|colorfast (similar term)|greaseproof (similar term)|mothproof (similar term)|moth-resistant (similar term)|proof (similar term)|resistant (similar term)|corrosion-resistant (similar term)|rot-resistant (similar term)|runproof (similar term)|ladder-proof (similar term)|run-resistant (similar term)|soundproof (similar term)|impermeable (related term)|pervious (antonym)
+imperviousness|1
+(noun)|impenetrability|quality (generic term)|perviousness (antonym)|penetrability (antonym)
+impetiginous|1
+(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition (related term)
+impetigo|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+impetuosity|1
+(noun)|impetuousness|impulsiveness (generic term)
+impetuous|2
+(adj)|hotheaded|impulsive|madcap|tearaway|brainish|incautious (similar term)
+(adj)|forceful (similar term)
+impetuously|1
+(adv)|impulsively
+impetuousness|1
+(noun)|impetuosity|impulsiveness (generic term)
+impetus|2
+(noun)|drift|impulsion|force (generic term)
+(noun)|impulse|impulsion|drive (generic term)|thrust (generic term)|driving force (generic term)
+impiety|1
+(noun)|impiousness|unrighteousness (generic term)|piety (antonym)
+impinge|2
+(verb)|encroach|entrench|trench|trespass (generic term)|take advantage (generic term)
+(verb)|encroach|infringe|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+impinge on|1
+(verb)|hit|strike|run into|collide with|touch (generic term)|miss (antonym)
+impingement|2
+(noun)|encroachment|impact|influence (generic term)
+(noun)|impaction|crash (generic term)|smash (generic term)
+impinging|1
+(noun)|contact|striking|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+impious|3
+(adj)|godless (similar term)|irreverent (similar term)|irreligious (related term)|profane (related term)|wicked (related term)|pious (antonym)
+(adj)|undutiful|disrespectful (similar term)
+(adj)|ungodly|irreligious (similar term)
+impiously|1
+(adv)|piously (antonym)
+impiousness|1
+(noun)|impiety|unrighteousness (generic term)|piety (antonym)
+impish|1
+(adj)|implike|mischievous|pixilated|prankish|puckish|wicked|playful (similar term)
+impishly|1
+(adv)|puckishly
+impishness|1
+(noun)|mischievousness|puckishness|whimsicality|playfulness (generic term)|fun (generic term)
+implacable|1
+(adj)|grim (similar term)|inexorable (similar term)|relentless (similar term)|stern (similar term)|unappeasable (similar term)|unforgiving (similar term)|unrelenting (similar term)|unmitigable (similar term)|merciless (related term)|unmerciful (related term)|placable (antonym)
+implant|4
+(noun)|prosthesis (generic term)|prosthetic device (generic term)
+(verb)|engraft|embed|imbed|plant|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|attach (generic term)
+(verb)|plant|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+implantation|3
+(noun)|nidation|organic process (generic term)|biological process (generic term)
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+implanted|1
+(adj)|deep-rooted|deep-seated|ingrained|planted|established (similar term)|constituted (similar term)
+implausibility|1
+(noun)|implausibleness|incredibility (generic term)|incredibleness (generic term)|plausibility (antonym)
+implausible|2
+(adj)|improbable (similar term)|unbelievable (similar term)|unconvincing (similar term)|unlikely (similar term)|incredible (related term)|unbelievable (related term)|plausible (antonym)
+(adj)|farfetched|unlikely (similar term)
+implausibleness|1
+(noun)|implausibility|incredibility (generic term)|incredibleness (generic term)|plausibility (antonym)
+implausibly|1
+(adv)|incredibly|improbably|unbelievably|believably (antonym)|credibly (antonym)
+implement|4
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|enforce|apply|compel (generic term)|oblige (generic term)|obligate (generic term)|exempt (antonym)
+(verb)|follow through|follow up|follow out|carry out|put through|go through|complete (generic term)|finish (generic term)
+implemental|1
+(adj)|instrumental|subservient|helpful (similar term)
+implementation|2
+(noun)|execution|carrying out|enforcement (generic term)
+(noun)|effectuation|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+implemented|1
+(adj)|enforced|unenforced (antonym)
+implements of war|1
+(noun)|weaponry|arms|weapons system|munition|instrumentality (generic term)|instrumentation (generic term)
+implicate|2
+(verb)|involve (generic term)|affect (generic term)|regard (generic term)
+(verb)|entail|lead (generic term)
+implicated|1
+(adj)|concerned|involved (similar term)
+implication|5
+(noun)|deduction|entailment|inference (generic term)|illation (generic term)
+(noun)|significance|import|meaning (generic term)|substance (generic term)
+(noun)|accusation (generic term)|accusal (generic term)
+(noun)|logical implication|conditional relation|logical relation (generic term)
+(noun)|involvement (generic term)
+implicational|1
+(adj)|logical relation (related term)
+implicative|1
+(adj)|suggestive|connotative (similar term)
+implicit|2
+(adj)|inexplicit|implicit in (similar term)|inherent (similar term)|underlying (similar term)|implied (similar term)|silent (similar term)|tacit (similar term)|understood (similar term)|unexpressed (similar term)|unsaid (similar term)|unstated (similar term)|unuttered (similar term)|unverbalized (similar term)|unverbalised (similar term)|unvoiced (similar term)|unspoken (similar term)|connotative (related term)|covert (related term)|explicit (antonym)
+(adj)|unquestioning|absolute (similar term)
+implicit in|1
+(adj)|inherent|underlying|implicit (similar term)|inexplicit (similar term)
+implicitly|1
+(adv)|explicitly (antonym)
+implicitness|1
+(noun)|inexplicitness (generic term)
+implied|1
+(adj)|silent|tacit|understood|implicit (similar term)|inexplicit (similar term)
+implied trust|1
+(noun)|trust (generic term)
+implike|1
+(adj)|impish|mischievous|pixilated|prankish|puckish|wicked|playful (similar term)
+implode|1
+(verb)|go off|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)|explode (antonym)
+implore|1
+(verb)|beg|pray|plead (generic term)|beg off (related term)
+imploring|1
+(adj)|appealing|importunate|pleading|beseeching (similar term)
+imploringly|1
+(adv)|beseechingly|importunately|pleadingly|entreatingly
+implosion|2
+(noun)|collapse (generic term)
+(noun)|blockage (generic term)|closure (generic term)|occlusion (generic term)
+implosion therapy|1
+(noun)|flooding|behavior therapy (generic term)|behavior modification (generic term)
+imply|5
+(verb)|connote|express (generic term)|show (generic term)|evince (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|entail|mean|necessitate (generic term)
+(verb)|incriminate|inculpate|suggest (generic term)|evoke (generic term)|paint a picture (generic term)
+(verb)|involve|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+impolite|1
+(adj)|bratty (similar term)|brattish (similar term)|ill-mannered (similar term)|bad-mannered (similar term)|rude (similar term)|unmannered (similar term)|unmannerly (similar term)|discourteous (similar term)|ungracious (similar term)|unparliamentary (similar term)|polite (antonym)
+impolitely|1
+(adv)|discourteously|rudely|courteously (antonym)|politely (antonym)
+impoliteness|1
+(noun)|discourtesy (generic term)|rudeness (generic term)|politeness (antonym)
+impolitic|1
+(adj)|inexpedient (similar term)|unwise (similar term)|foolish (related term)|inexpedient (related term)|politic (antonym)
+imponderable|2
+(adj)|ponderable (antonym)
+(noun)|influence (generic term)
+import|7
+(noun)|importation|commodity (generic term)|trade good (generic term)|good (generic term)|export (antonym)
+(noun)|importee|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+(noun)|meaning|significance|signification|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|significance|implication|meaning (generic term)|substance (generic term)
+(noun)|consequence|moment|significance (generic term)|inconsequence (antonym)
+(verb)|trade (generic term)|merchandise (generic term)|export (antonym)
+(verb)|spell|mean (generic term)|intend (generic term)
+import barrier|1
+(noun)|trade barrier|protectionism (generic term)
+import credit|1
+(noun)|credit (generic term)
+import duty|1
+(noun)|duty (generic term)|tariff (generic term)
+importance|2
+(noun)|value (generic term)|unimportance (antonym)
+(noun)|grandness|standing (generic term)
+important|5
+(adj)|of import|all-important (similar term)|all important (similar term)|crucial (similar term)|essential (similar term)|of the essence (similar term)|alpha (similar term)|beta (similar term)|big (similar term)|burning (similar term)|cardinal (similar term)|central (similar term)|fundamental (similar term)|key (similar term)|primal (similar term)|chief (similar term)|main (similar term)|primary (similar term)|principal (similar term)|consequential (similar term)|eventful (similar term)|Copernican (similar term)|distinguished (similar term)|eminent (similar term)|grand (similar term)|grave (similar term)|grievous (similar term)|heavy (similar term)|weighty (similar term)|great (similar term)|outstanding (similar term)|historic (similar term)|in-chief (similar term)|measurable (similar term)|most-valuable (similar term)|serious (similar term)|strategic (similar term)|essential (related term)|significant (related term)|important (related term)|valuable (related term)|unimportant (antonym)
+(adj)|significant|momentous (similar term)|epochal (similar term)|epoch-making (similar term)|earthshaking (similar term)|world-shaking (similar term)|world-shattering (similar term)|evidential (similar term)|evidentiary (similar term)|fundamental (similar term)|profound (similar term)|large (similar term)|monumental (similar term)|noteworthy (similar term)|remarkable (similar term)|probative (similar term)|probatory (similar term)|operative (similar term)|key (similar term)|portentous (similar term)|prodigious (similar term)|important (related term)|of import (related term)|meaningful (related term)|insignificant (antonym)
+(adj)|crucial|critical (similar term)|decisive (similar term)|life-and-death (similar term)|life-or-death (similar term)|pivotal (similar term)|polar (similar term)|critical (related term)|decisive (related term)|essential (related term)|noncrucial (antonym)
+(adj)|authoritative|influential (similar term)
+(adj)|immodest (similar term)
+important-looking|1
+(adj)|impressive (similar term)
+important person|1
+(noun)|influential person|personage|adult (generic term)|grownup (generic term)
+importantly|1
+(adv)|significantly
+importation|2
+(noun)|importing|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|import|commodity (generic term)|trade good (generic term)|good (generic term)|export (antonym)
+imported|1
+(adj)|foreign (similar term)|strange (similar term)
+importee|1
+(noun)|import|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+importer|1
+(noun)|businessperson (generic term)|bourgeois (generic term)
+importing|1
+(noun)|importation|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+importunate|1
+(adj)|appealing|imploring|pleading|beseeching (similar term)
+importunately|1
+(adv)|beseechingly|imploringly|pleadingly|entreatingly
+importune|1
+(verb)|insist|beg (generic term)|implore (generic term)|pray (generic term)
+importunity|1
+(noun)|urgency|urging|solicitation (generic term)
+impose|3
+(verb)|enforce|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|inflict|bring down|visit|communicate (generic term)|intercommunicate (generic term)
+(verb)|levy|charge (generic term)|bill (generic term)
+imposed|1
+(adj)|obligatory (similar term)
+imposing|2
+(adj)|baronial|noble|stately|impressive (similar term)
+(adj)|distinguished|grand|magisterial|dignified (similar term)
+imposingly|1
+(adv)|impressively|unimpressively (antonym)
+imposition|2
+(noun)|infliction|enforcement (generic term)
+(noun)|burden (generic term)|load (generic term)|encumbrance (generic term)|incumbrance (generic term)|onus (generic term)
+impossibility|2
+(noun)|impossibleness|nonexistence (generic term)|nonentity (generic term)|possibility (antonym)
+(noun)|impossible action|option (generic term)|alternative (generic term)|choice (generic term)
+impossible|4
+(adj)|hopeless (similar term)|impracticable (similar term)|infeasible (similar term)|unfeasible (similar term)|unworkable (similar term)|out (similar term)|unachievable (similar term)|unattainable (similar term)|undoable (similar term)|unrealizable (similar term)|hopeless (related term)|impractical (related term)|insurmountable (related term)|unsurmountable (related term)|unrealistic (related term)|unthinkable (related term)|possible (antonym)
+(adj)|inconceivable|out of the question|unimaginable|unthinkable (similar term)
+(adj)|insufferable|unacceptable|unsufferable|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+(noun)|impossibility (generic term)|impossible action (generic term)
+impossible action|1
+(noun)|impossibility|option (generic term)|alternative (generic term)|choice (generic term)
+impossibleness|1
+(noun)|impossibility|nonexistence (generic term)|nonentity (generic term)|possibility (antonym)
+impossibly|1
+(adv)|possibly (antonym)
+impost|2
+(noun)|customs|customs duty|custom|duty (generic term)|tariff (generic term)
+(noun)|springer|stone (generic term)
+imposter|1
+(noun)|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+impostor|1
+(noun)|imposter|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+imposture|1
+(noun)|impersonation|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+impotence|2
+(noun)|powerlessness|impotency|quality (generic term)|power (antonym)|powerfulness (antonym)
+(noun)|impotency|sterility (generic term)|infertility (generic term)|potency (antonym)|potence (antonym)
+impotency|2
+(noun)|powerlessness|impotence|quality (generic term)|power (antonym)|powerfulness (antonym)
+(noun)|impotence|sterility (generic term)|infertility (generic term)|potency (antonym)|potence (antonym)
+impotent|2
+(adj)|ineffective (similar term)|ineffectual (similar term)|unable (similar term)|impuissant (similar term)|powerless (related term)|sterile (related term)|unfertile (related term)|infertile (related term)|potent (antonym)
+(adj)|potent (antonym)
+impotently|1
+(adv)|helplessly|unable to help
+impound|2
+(verb)|attach|sequester|confiscate|seize|take (generic term)
+(verb)|pound|restrain (generic term)|confine (generic term)|hold (generic term)
+impounding|1
+(noun)|impoundment|internment|poundage|seizure (generic term)
+impoundment|1
+(noun)|impounding|internment|poundage|seizure (generic term)
+impoverish|2
+(verb)|deprive (generic term)|enrich (antonym)
+(verb)|deprive|worsen (generic term)|decline (generic term)|enrich (antonym)
+impoverished|2
+(adj)|destitute|indigent|necessitous|needy|poverty-stricken|poor (similar term)
+(adj)|broken|wiped out|destroyed (similar term)
+impoverishment|2
+(noun)|poverty|poorness|financial condition (generic term)|economic condition (generic term)|wealth (antonym)
+(noun)|pauperization|pauperisation|privation (generic term)|deprivation (generic term)
+impracticability|1
+(noun)|impracticableness|inutility (generic term)|uselessness (generic term)|unusefulness (generic term)|practicableness (antonym)|practicability (antonym)
+impracticable|1
+(adj)|infeasible|unfeasible|unworkable|impossible (similar term)
+impracticableness|1
+(noun)|impracticability|inutility (generic term)|uselessness (generic term)|unusefulness (generic term)|practicableness (antonym)|practicability (antonym)
+impractical|2
+(adj)|crazy (similar term)|half-baked (similar term)|screwball (similar term)|softheaded (similar term)|meshugge (similar term)|meshugga (similar term)|meshuga (similar term)|meshuggeneh (similar term)|meshuggener (similar term)|quixotic (similar term)|romantic (similar term)|wild-eyed (similar term)|unfunctional (similar term)|unwieldy (similar term)|impossible (related term)|unrealistic (related term)|practical (antonym)
+(adj)|airy|visionary|Laputan|windy|utopian (similar term)
+impracticality|1
+(noun)|inutility (generic term)|uselessness (generic term)|unusefulness (generic term)|practicality (antonym)
+impramine hydrochloride|1
+(noun)|imipramine|Imavate|Tofranil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+imprecate|2
+(verb)|curse|beshrew|damn|bedamn|anathemize|anathemise|maledict|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+(verb)|curse|cuss|blaspheme|swear|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+imprecation|2
+(noun)|malediction|execration (generic term)|condemnation (generic term)|curse (generic term)
+(noun)|accusation (generic term)|accusal (generic term)
+imprecise|1
+(adj)|general (similar term)|inaccuraRte (similar term)|inexact (similar term)|general (related term)|inaccurate (related term)|inexact (related term)|precise (antonym)
+imprecisely|1
+(adv)|inexactly|exactly (antonym)|precisely (antonym)
+impreciseness|1
+(noun)|imprecision|inexactness (generic term)|inexactitude (generic term)|precision (antonym)|preciseness (antonym)
+imprecision|1
+(noun)|impreciseness|inexactness (generic term)|inexactitude (generic term)|precision (antonym)|preciseness (antonym)
+impregnability|1
+(noun)|invulnerability|safety (generic term)
+impregnable|3
+(adj)|inviolable|secure|strong|unassailable|unattackable|invulnerable (similar term)
+(adj)|conceptive|fertile (similar term)
+(adj)|inexpugnable|unconquerable (similar term)
+impregnate|4
+(verb)|infuse|instill|tincture|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|saturate|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+(verb)|knock up|bang up|prang up|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+impregnation|3
+(noun)|material (generic term)|stuff (generic term)
+(noun)|saturation|permeation (generic term)|pervasion (generic term)|suffusion (generic term)
+(noun)|fertilization|fertilisation|fecundation|creation (generic term)|conception (generic term)
+impresario|1
+(noun)|showman|promoter|booker (generic term)|booking agent (generic term)
+impress|8
+(noun)|impressment|seizure (generic term)
+(verb)|affect|move|strike
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|ingrain|instill|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|imprint|change surface (generic term)
+(verb)|print|write (generic term)
+(verb)|shanghai|kidnap (generic term)|nobble (generic term)|abduct (generic term)|snatch (generic term)
+(verb)|yarn-dye|dye (generic term)
+impressed|1
+(adj)|affected (similar term)
+impressible|1
+(adj)|impressionable|easy (similar term)|spinnable (similar term)|plastic (similar term)|pliant (similar term)|susceptible (similar term)|unimpressionable (antonym)
+impression|9
+(noun)|feeling|belief|notion|opinion|idea (generic term)|thought (generic term)
+(noun)|effect|appearance (generic term)|visual aspect (generic term)
+(noun)|mental picture|picture|image (generic term)|mental image (generic term)
+(noun)|depression|imprint|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|stamp|symbol (generic term)
+(noun)|printing|publication (generic term)
+(noun)|imprint (generic term)
+(noun)|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+(noun)|press (generic term)|pressure (generic term)|pressing (generic term)
+impressionable|1
+(adj)|impressible|easy (similar term)|spinnable (similar term)|plastic (similar term)|pliant (similar term)|susceptible (similar term)|unimpressionable (antonym)
+impressionism|1
+(noun)|Impressionism|artistic movement (generic term)|art movement (generic term)
+impressionist|2
+(adj)|impressionistic|artistic movement|art movement (related term)
+(noun)|painter (generic term)
+impressionistic|2
+(adj)|idea|thought (related term)
+(adj)|impressionist|artistic movement|art movement (related term)
+impressive|2
+(adj)|amazing (similar term)|awe-inspiring (similar term)|awesome (similar term)|awful (similar term)|awing (similar term)|arresting (similar term)|sensational (similar term)|stunning (similar term)|astonishing (similar term)|astounding (similar term)|staggering (similar term)|stupefying (similar term)|baronial (similar term)|imposing (similar term)|noble (similar term)|stately (similar term)|dazzling (similar term)|eye-popping (similar term)|fulgurant (similar term)|fulgurous (similar term)|dramatic (similar term)|spectacular (similar term)|striking (similar term)|expansive (similar term)|grand (similar term)|heroic (similar term)|formidable (similar term)|gallant (similar term)|lofty (similar term)|majestic (similar term)|proud (similar term)|brilliant (similar term)|glorious (similar term)|magnificent (similar term)|splendid (similar term)|grandiose (similar term)|important-looking (similar term)|mind-boggling (similar term)|palatial (similar term)|signal (similar term)|thundering (similar term)|moving (related term)|unimpressive (antonym)
+(adj)|telling|effective (similar term)|effectual (similar term)|efficacious (similar term)
+impressive aphasia|1
+(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|sensory aphasia|aphasia (generic term)
+impressively|1
+(adv)|imposingly|unimpressively (antonym)
+impressiveness|2
+(noun)|grandness|magnificence|richness|excellence (generic term)
+(noun)|quality (generic term)
+impressment|1
+(noun)|impress|seizure (generic term)
+imprimatur|1
+(noun)|sanction|countenance|endorsement|indorsement|warrant|approval (generic term)|commendation (generic term)
+imprint|7
+(noun)|influence (generic term)
+(noun)|depression|impression|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|identification (generic term)
+(noun)|embossment|stamp (generic term)|impression (generic term)
+(noun)|device (generic term)
+(verb)|form|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|impress|change surface (generic term)
+imprinting|1
+(noun)|learning (generic term)|acquisition (generic term)
+imprison|2
+(verb)|incarcerate|lag|immure|put behind bars|jail|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+(verb)|confine (generic term)|detain (generic term)
+imprisoned|1
+(adj)|captive|confined|jailed|unfree (similar term)
+imprisonment|3
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(noun)|captivity|incarceration|immurement|confinement (generic term)
+(noun)|internment|confinement (generic term)
+improbability|1
+(noun)|improbableness|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)|probability (antonym)
+improbable|3
+(adj)|unlikely|supposed (similar term)|probable (antonym)
+(adj)|unbelievable|unconvincing|unlikely|implausible (similar term)
+(adj)|marvelous|marvellous|tall|incredible (similar term)|unbelievable (similar term)
+improbableness|1
+(noun)|improbability|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)|probability (antonym)
+improbably|1
+(adv)|incredibly|implausibly|unbelievably|believably (antonym)|credibly (antonym)
+impromptu|4
+(adj)|ad-lib|extemporaneous|extemporary|extempore|offhand|offhanded|off-the-cuff|unrehearsed|unprepared (similar term)
+(noun)|address (generic term)|speech (generic term)
+(noun)|passage (generic term)|musical passage (generic term)
+(adv)|ad lib|ad libitum|spontaneously
+improper|3
+(adj)|indecent (similar term)|indecorous (similar term)|unbecoming (similar term)|uncomely (similar term)|unseemly (similar term)|untoward (similar term)|out-of-the-way (similar term)|wrong (similar term)|inappropriate (related term)|incorrect (related term)|wrong (related term)|indecent (related term)|indecorous (related term)|indelicate (related term)|unfit (related term)|wrong (related term)|proper (antonym)
+(adj)|unconventional|unlawful|irregular (similar term)
+(adj)|unsuitable|wrong|inappropriate (similar term)
+improper fraction|1
+(noun)|fraction (generic term)
+improperly|1
+(adv)|properly (antonym)
+improperness|1
+(noun)|impropriety|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)|properness (antonym)|propriety (antonym)
+impropriety|4
+(noun)|improperness|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)|properness (antonym)|propriety (antonym)
+(noun)|condition (generic term)|status (generic term)
+(noun)|indecency|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+(noun)|familiarity|indecorum|liberty|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+improvable|1
+(adj)|corrigible (similar term)
+improve|2
+(verb)|better|amend|ameliorate|meliorate|change (generic term)|alter (generic term)|modify (generic term)|worsen (antonym)
+(verb)|better|ameliorate|meliorate|change state (generic term)|turn (generic term)|worsen (antonym)
+improved|3
+(adj)|built (similar term)|reinforced (similar term)|developed (similar term)|landscaped (similar term)|unimproved (antonym)
+(adj)|better (similar term)
+(adj)|cleared (similar term)
+improvement|3
+(noun)|change of state (generic term)
+(noun)|betterment|advance|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|melioration|condition (generic term)|status (generic term)|decline (antonym)
+improver|2
+(noun)|humanitarian|do-gooder|benefactor (generic term)|helper (generic term)
+(noun)|addition|add-on|component (generic term)|constituent (generic term)|element (generic term)
+improvidence|1
+(noun)|shortsightedness|imprudence (generic term)|providence (antonym)
+improvident|2
+(adj)|prodigal (similar term)|short (similar term)|shortsighted (similar term)|unforesightful (similar term)|myopic (similar term)|thriftless (similar term)|unforethoughtful (similar term)|imprudent (related term)|wasteful (related term)|provident (antonym)
+(adj)|ill-considered|ill-judged|shortsighted|imprudent (similar term)
+improvidently|1
+(adv)|providently (antonym)
+improving|1
+(adj)|up|rising (similar term)
+improvisation|3
+(noun)|creation (generic term)
+(noun)|temporary expedient|expedient (generic term)
+(noun)|extemporization|extemporisation|performance (generic term)
+improvise|2
+(verb)|improvize|ad-lib|extemporize|extemporise|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|extemporize|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+improvised|1
+(adj)|jury-rigged|makeshift|impermanent (similar term)|temporary (similar term)
+improvised explosive device|1
+(noun)|I.E.D.|IED|explosive device (generic term)
+improvize|1
+(verb)|improvise|ad-lib|extemporize|extemporise|perform (generic term)|execute (generic term)|do (generic term)
+imprudence|1
+(noun)|incaution (generic term)|incautiousness (generic term)|prudence (antonym)
+imprudent|2
+(adj)|ill-considered (similar term)|ill-judged (similar term)|improvident (similar term)|shortsighted (similar term)|injudicious (similar term)|rash (similar term)|careless (related term)|foolish (related term)|improvident (related term)|prudent (antonym)
+(adj)|indiscreet (similar term)
+imprudently|1
+(adv)|prudently (antonym)
+impudence|2
+(noun)|cheek|impertinence|disrespect (generic term)|discourtesy (generic term)
+(noun)|crust|gall|impertinence|insolence|cheekiness|freshness|discourtesy (generic term)|rudeness (generic term)
+impudent|2
+(adj)|insolent|snotty-nosed|flip|disrespectful (similar term)
+(adj)|fresh|impertinent|overbold|smart|saucy|sassy|wise|forward (similar term)
+impudently|1
+(adv)|impertinently|saucily|pertly|freshly
+impugn|1
+(verb)|challenge (generic term)
+impugnable|1
+(adj)|questionable (similar term)
+impuissance|1
+(noun)|helplessness|weakness|powerlessness (generic term)|impotence (generic term)|impotency (generic term)
+impuissant|1
+(adj)|impotent (similar term)
+impulse|6
+(noun)|urge|motivation (generic term)|motive (generic term)|need (generic term)
+(noun)|caprice|whim|desire (generic term)
+(noun)|nerve impulse|electrical discharge (generic term)
+(noun)|pulsation|pulsing|pulse|wave (generic term)|undulation (generic term)
+(noun)|impulsion|impetus|drive (generic term)|thrust (generic term)|driving force (generic term)
+(noun)|momentum|force (generic term)|forcefulness (generic term)|strength (generic term)
+impulse-buy|1
+(verb)|buy (generic term)|purchase (generic term)
+impulse explosive|1
+(noun)|propellant explosive|explosive (generic term)
+impulse turbine|1
+(noun)|turbine (generic term)
+impulsion|2
+(noun)|drift|impetus|force (generic term)
+(noun)|impulse|impetus|drive (generic term)|thrust (generic term)|driving force (generic term)
+impulsive|5
+(adj)|unprompted|spontaneous (similar term)|self-generated (similar term)
+(adj)|unpremeditated (similar term)
+(adj)|driving|dynamic (similar term)|dynamical (similar term)
+(adj)|capricious|whimsical|arbitrary (similar term)
+(adj)|hotheaded|impetuous|madcap|tearaway|brainish|incautious (similar term)
+impulsively|1
+(adv)|impetuously
+impulsiveness|1
+(noun)|unthoughtfulness (generic term)|thoughtlessness (generic term)
+impunity|1
+(noun)|exemption (generic term)|freedom (generic term)
+impure|3
+(adj)|adulterate (similar term)|adulterated (similar term)|debased (similar term)|alloyed (similar term)|bastardized (similar term)|bastardised (similar term)|contaminated (similar term)|polluted (similar term)|dirty (similar term)|dingy (similar term)|muddied (similar term)|muddy (similar term)|unpurified (similar term)|unclean (related term)|impure (related term)|unprocessed (related term)|pure (antonym)
+(adj)|defiled (similar term)|maculate (similar term)|unchaste (related term)|pure (antonym)
+(adj)|unclean|defiled (similar term)|nonkosher (similar term)|tref (similar term)|terefah (similar term)|untouchable (similar term)|dirty (related term)|soiled (related term)|unclean (related term)|impure (related term)|clean (antonym)
+impureness|1
+(noun)|impurity|condition (generic term)|status (generic term)|purity (antonym)
+impurity|2
+(noun)|dross|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|impureness|condition (generic term)|status (generic term)|purity (antonym)
+imputable|1
+(adj)|ascribable|due to|referable|attributable (similar term)
+imputation|2
+(noun)|accusation (generic term)|accusal (generic term)
+(noun)|attribution (generic term)|ascription (generic term)
+impute|2
+(verb)|ascribe|assign|attribute|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+imputrescible|1
+(adj)|imperishable (similar term)
+imu|1
+(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+imuran|1
+(noun)|azathioprine|Imuran|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+in|7
+(adj)|successful (similar term)
+(adj)|incoming (similar term)
+(adj)|fashionable (similar term)|stylish (similar term)
+(noun)|inch|linear unit (generic term)
+(noun)|indium|In|atomic number 49|metallic element (generic term)|metal (generic term)
+(noun)|Indiana|Hoosier State|IN|American state (generic term)
+(adv)|inwards|inward
+in-basket|1
+(noun)|in-tray|receptacle (generic term)|out-basket (antonym)
+in-between|1
+(adj)|mediate|middle|intermediate (similar term)
+in-bounds|1
+(adj)|fair (similar term)
+in-chief|1
+(adj)|important (similar term)|of import (similar term)
+in-fighting|2
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)
+in-joke|1
+(noun)|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+in-law|1
+(noun)|relative-in-law|relative (generic term)|relation (generic term)
+in-line skate|1
+(noun)|skate (generic term)
+in-migration|1
+(noun)|immigration|migration (generic term)
+in-person|1
+(adj)|in the flesh|personal (similar term)
+in-situ|1
+(adj)|unmoved|unaltered (similar term)|unchanged (similar term)
+in-tray|1
+(noun)|in-basket|receptacle (generic term)|out-basket (antonym)
+in-your-face|1
+(adj)|aggressive (similar term)
+in a bad way|2
+(adj)|stressed|distressed|troubled (similar term)
+(adj)|distressed|hard-pressed|hard put|troubled (similar term)
+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|below (antonym)
+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 accord|1
+(adv)|in unison
+in addition|1
+(adv)|additionally|to boot
+in advance|2
+(adj)|advance|advanced|front (similar term)
+(adv)|ahead|beforehand
+in agreement|1
+(adj)|agreed|united (similar term)
+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|attendant|present (similar term)
+in awe of|1
+(adj)|awed|awestruck|awestricken|overawed (similar term)|unawed (antonym)
+in bondage|1
+(adj)|bond|enslaved|enthralled|slave (similar term)
+in bonds|1
+(adj)|fettered|in fetters|shackled|bound (similar term)
+in both ears|1
+(adv)|binaurally|to both ears|monaurally (antonym)
+in brief|1
+(adv)|concisely|briefly|shortly|in short
+in camera|1
+(adv)|privately|in private|publicly (antonym)
+in case|1
+(adv)|just in case
+in chains|1
+(adj)|chained|enchained|bound (similar term)
+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
+in collaboration|1
+(adv)|together|unitedly
+in concert|1
+(adv)|together
+in conclusion|1
+(adv)|last|lastly|finally
+in condition|1
+(adj)|conditioned|fit (similar term)|healthy (similar term)
+in darkness|1
+(adv)|darkly
+in demand|1
+(adj)|coveted|desired|sought after|desirable (similar term)
+in depth|1
+(adj)|deep (similar term)
+in disagreement|1
+(adj)|divided (similar term)
+in dishabille|1
+(adj)|en deshabille|unclothed (similar term)
+in dispute|1
+(adj)|at issue|in hand|in question|under consideration|relevant (similar term)
+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 (similar term)
+in earnest|1
+(adv)|seriously|earnestly
+in effect|2
+(adj)|effective|good|in force|operative (similar term)
+(adv)|effectively
+in essence|2
+(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 (similar term)
+in fact|1
+(adv)|in point of fact|as a matter of fact
+in favor|1
+(adv)|pro|in favor of|in favour of|in favour|con (antonym)
+in favor of|1
+(adv)|pro|in favor|in favour of|in favour|con (antonym)
+in favour|1
+(adv)|pro|in favor of|in favor|in favour of|con (antonym)
+in favour of|1
+(adv)|pro|in favor of|in favor|in favour|con (antonym)
+in fetters|1
+(adj)|fettered|in bonds|shackled|bound (similar term)
+in fiscal matters|1
+(adv)|fiscally
+in flight|1
+(adv)|on the wing
+in flood|1
+(adj)|flooding|overflowing|swollen|high (similar term)
+in for|1
+(adj)|certain (similar term)|sure (similar term)
+in force|1
+(adj)|effective|good|in effect|operative (similar term)
+in front|1
+(adv)|ahead|before
+in full|1
+(adv)|fully
+in full action|1
+(adv)|in full swing
+in full swing|1
+(adv)|in full action
+in full view|1
+(adj)|unconcealed (similar term)
+in gear|1
+(adj)|geared (similar term)
+in general|1
+(adv)|generally|in the main|specifically (antonym)
+in good order|1
+(adv)|properly|decently|decent|right|the right way|improperly (antonym)
+in good spirits|1
+(adv)|in stride
+in good taste|1
+(adj)|decorous (similar term)
+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 (similar term)
+(adj)|at issue|in dispute|in question|under consideration|relevant (similar term)
+(adv)|out of hand (antonym)
+in harmony|1
+(adj)|consonant|harmonic|harmonical|harmonized|harmonised|harmonious (similar term)
+in haste|1
+(adv)|hurriedly|hastily|unhurriedly (antonym)
+in height|1
+(adj)|tall (similar term)
+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 (similar term)
+in hiding|1
+(adv)|doggo|out of sight
+in high spirits|1
+(adj)|high|elated (similar term)
+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 (similar term)
+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 large quantities|1
+(adv)|wholesale
+in league|1
+(adj)|united (similar term)
+in line|2
+(adj)|eligible (similar term)
+(adj)|succeeding (similar term)
+in love|1
+(adj)|crazy|dotty|gaga|enamored|infatuated|smitten|soft on|taken with|loving (similar term)
+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 (similar term)
+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|binaurally (antonym)
+in operation|1
+(adj)|operational|operating|operative (similar term)
+in opposition|1
+(adv)|con|pro (antonym)
+in order|2
+(adj)|systematic (similar term)
+(adj)|ready (similar term)
+in other words|1
+(adv)|put differently
+in particular|1
+(adv)|particularly
+in passing|1
+(adv)|en passant
+in person|1
+(adv)|personally
+in place|1
+(adv)|in situ
+in play|1
+(adj)|live (similar term)
+in point of fact|1
+(adv)|in fact|as a matter of fact
+in principle|1
+(adv)|in theory|in essence
+in private|1
+(adv)|privately|in camera|publicly (antonym)
+in proportion to|1
+(adj)|corresponding|proportionate|commensurate (similar term)
+in public|1
+(adv)|publicly|publically|privately (antonym)
+in question|2
+(adj)|at issue|in dispute|in hand|under consideration|relevant (similar term)
+(adj)|doubtful|dubious|dubitable|questionable (similar term)
+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 (similar term)
+in reply|1
+(adv)|back
+in restraint|1
+(adv)|in check|under control
+in return|1
+(adv)|reciprocally
+in safe custody|1
+(adj)|secure (similar term)
+in secret|1
+(adv)|secretly|on the Q.T.|on the QT
+in series|1
+(adj)|serial|nonparallel|asynchronous (similar term)
+in short|1
+(adv)|concisely|briefly|shortly|in brief
+in sight|1
+(adj)|visible (similar term)|seeable (similar term)
+in situ|1
+(adv)|in place
+in small stages|1
+(adj)|bit-by-bit|piecemeal|step-by-step|stepwise|gradual (similar term)
+in so far|1
+(adv)|insofar|so far|to that extent|to that degree
+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 (similar term)
+in store|1
+(adj)|future (similar term)
+in straitened circumstances|1
+(adj)|hard up|impecunious|penniless|penurious|pinched|poor (similar term)
+in stride|1
+(adv)|in good spirits
+in style|1
+(adj)|latest|a la mode|in vogue|modish|fashionable (similar term)|stylish (similar term)
+in suspense|1
+(adj)|edgy|high-strung|highly strung|jittery|jumpy|nervy|overstrung|restive|uptight|tense (similar term)
+in tandem|1
+(adv)|tandem
+in that|1
+(adv)|therein|in this
+in that location|1
+(adv)|there|at that place|here (antonym)
+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 (similar term)
+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 (similar term)
+in the end|2
+(adv)|in the long run
+(adv)|ultimately|finally|at last|at long last
+in the first place|2
+(adv)|earlier|in the beginning|to begin with|originally
+(adv)|primarily|secondarily (antonym)
+in the flesh|1
+(adj)|in-person|personal (similar term)
+in the head|1
+(adv)|upstairs|in the mind
+in the lead|2
+(adj)|ahead|leading|up (similar term)
+(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|specifically (antonym)
+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 (similar term)
+in the raw|1
+(adj)|bare-assed|bare-ass|in the altogether|in the buff|raw|peeled|naked as a jaybird|stark naked|unclothed (similar term)
+in the south|1
+(adv)|south|to the south
+in their right minds|1
+(adj)|in his right mind|in her right mind|sane (similar term)
+in theory|3
+(adv)|theoretically|on paper
+(adv)|in principle|in essence
+(adv)|on paper
+in this|1
+(adv)|therein|in that
+in time|3
+(noun)|musical time (generic term)
+(adv)|eventually|yet|sooner or later|one of these days
+(adv)|soon enough
+in trouble|1
+(adj)|troubled (similar term)
+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 (similar term)
+(adj)|used (similar term)
+in vain|1
+(adv)|vainly
+in vitro|2
+(adj)|ex vivo|in vivo (antonym)
+(adv)|ex vivo
+in vivo|1
+(adj)|in vitro (antonym)
+in vogue|1
+(adj)|latest|a la mode|in style|modish|fashionable (similar term)|stylish (similar term)
+in working order|1
+(adj)|functional|usable|useable|operable|operational|serviceable (similar term)
+in writing|2
+(adj)|graphic|graphical|written (similar term)
+(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 (similar term)
+inability|2
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)|ability (antonym)
+(noun)|unfitness|quality (generic term)|ability (antonym)
+inaccessibility|1
+(noun)|unavailability|inconvenience (generic term)|availability (antonym)|accessibility (antonym)
+inaccessible|2
+(adj)|unaccessible|outback (similar term)|remote (similar term)|deserted (similar term)|pathless (similar term)|roadless (similar term)|trackless (similar term)|untracked (similar term)|untrod (similar term)|untrodden (similar term)|lonely (similar term)|solitary (similar term)|unfrequented (similar term)|unapproachable (similar term)|unreachable (similar term)|unreached (similar term)|out of reach (similar term)|un-come-at-able (similar term)|un-get-at-able (similar term)|ungetatable (similar term)|accessible (antonym)
+(adj)|unobtainable|unprocurable|untouchable|unavailable (similar term)
+inaccuracy|1
+(noun)|quality (generic term)|accuracy (antonym)
+inaccurarte|1
+(adj)|inaccuraRte|inexact|imprecise (similar term)
+inaccurate|2
+(adj)|away (similar term)|outside (similar term)|faulty (similar term)|unfaithful (similar term)|wide (similar term)|wide of the mark (similar term)|imprecise (related term)|incorrect (related term)|wrong (related term)|inexact (related term)|accurate (antonym)
+(adj)|erroneous|incorrect (similar term)|wrong (similar term)
+inaccurately|1
+(adv)|accurately (antonym)
+inachis|1
+(noun)|Inachis|genus Inachis|arthropod genus (generic term)
+inachis io|1
+(noun)|peacock|peacock butterfly|Inachis io|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+inaction|1
+(noun)|inactivity|inactiveness|state (generic term)|activeness (antonym)|activity (antonym)|action (antonym)
+inactivate|2
+(verb)|demobilize|demobilise|discharge (generic term)|muster out (generic term)|mobilize (antonym)
+(verb)|deactivate|change (generic term)|alter (generic term)|modify (generic term)|activate (antonym)
+inactivation|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)|activation (antonym)
+(noun)|deactivation|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+inactive|10
+(adj)|unreactive (similar term)
+(adj)|arrested (similar term)|in remission (similar term)|dead-end (similar term)|flat (similar term)|indolent (similar term)|latent (similar term)|quiescent (similar term)|active (antonym)
+(adj)|nonoperational|operational (antonym)
+(adj)|quiescent (similar term)|active (antonym)
+(adj)|dormant|quiescent (similar term)|active (antonym)
+(adj)|passive|hands-off (similar term)|resistless (similar term)|supine (similar term)|unresisting (similar term)|active (antonym)
+(adj)|dark (similar term)|dead (similar term)|dull (similar term)|slow (similar term)|sluggish (similar term)|idle (similar term)|unused (similar term)|strikebound (similar term)|active (antonym)
+(adj)|off (similar term)|on leave (similar term)|retired (similar term)|active (antonym)
+(adj)|desk-bound (similar term)|deskbound (similar term)|dormant (similar term)|hypoactive (similar term)|underactive (similar term)|inert (similar term)|sluggish (similar term)|soggy (similar term)|torpid (similar term)|sedentary (similar term)|lethargic (related term)|unergetic (related term)|active (antonym)
+(adj)|motionless|static|still|nonmoving (similar term)|unmoving (similar term)
+inactiveness|2
+(noun)|inaction|inactivity|state (generic term)|activeness (antonym)|activity (antonym)|action (antonym)
+(noun)|inactivity|inertia|trait (generic term)|activeness (antonym)
+inactivity|3
+(noun)|inaction|inactiveness|state (generic term)|activeness (antonym)|activity (antonym)|action (antonym)
+(noun)|inactiveness|inertia|trait (generic term)|activeness (antonym)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)|activity (antonym)
+inadequacy|3
+(noun)|insufficiency|deficiency|amount (generic term)|adequacy (antonym)|sufficiency (antonym)
+(noun)|insufficiency|failing (generic term)|weakness (generic term)
+(noun)|inadequateness|unsatisfactoriness (generic term)|adequacy (antonym)
+inadequate|2
+(adj)|deficient (similar term)|lacking (similar term)|wanting (similar term)|incapable (similar term)|incompetent (similar term)|unequal to (similar term)|short-handed (similar term)|short-staffed (similar term)|undermanned (similar term)|understaffed (similar term)|unsatisfactory (related term)|adequate (antonym)
+(adj)|poor|short|insufficient (similar term)|deficient (similar term)
+inadequately|1
+(adv)|adequately (antonym)
+inadequateness|1
+(noun)|inadequacy|unsatisfactoriness (generic term)|adequacy (antonym)
+inadmissibility|1
+(noun)|unacceptability (generic term)|unacceptableness (generic term)|admissibility (antonym)
+inadmissible|1
+(adj)|impermissible (similar term)|admissible (antonym)
+inadvertence|2
+(noun)|oversight|omission (generic term)
+(noun)|unmindfulness|heedlessness|inadvertency|attentiveness (generic term)|heedfulness (antonym)|mindfulness (antonym)
+inadvertency|1
+(noun)|unmindfulness|heedlessness|inadvertence|attentiveness (generic term)|heedfulness (antonym)|mindfulness (antonym)
+inadvertent|1
+(adj)|accidental|unintended (similar term)
+inadvertently|1
+(adv)|unwittingly|unknowingly|advertently (antonym)|wittingly (antonym)|knowingly (antonym)
+inadvisability|1
+(noun)|bad (generic term)|badness (generic term)|advisability (antonym)
+inadvisable|2
+(adj)|unadvisable|foolish (related term)|imprudent (related term)|advisable (antonym)
+(adj)|inexpedient (similar term)
+inadvisably|1
+(adv)|expediently|inexpediently (antonym)
+inaesthetic|1
+(adj)|unaesthetic|inartistic (similar term)|unartistic (similar term)|aesthetic (antonym)
+inalienable|2
+(adj)|unalienable|absolute (similar term)|infrangible (similar term)|inviolable (similar term)|non-negotiable (similar term)|nontransferable (similar term)|unassignable (similar term)|untransferable (similar term)|intrinsic (related term)|intrinsical (related term)|alienable (antonym)
+(adj)|unforfeitable|indefeasible (similar term)
+inalterable|1
+(adj)|unalterable|incurable (similar term)|final (similar term)|last (similar term)|alterable (antonym)
+inamorata|1
+(noun)|woman (generic term)|adult female (generic term)|lover (generic term)
+inamorato|1
+(noun)|man (generic term)|adult male (generic term)|lover (generic term)
+inane|1
+(adj)|asinine|fatuous|mindless|vacuous|foolish (similar term)
+inanely|1
+(adv)|fatuously
+inanimate|3
+(adj)|animate (antonym)
+(adj)|nonliving|non-living|dead|nonconscious (similar term)|animate (antonym)
+(adj)|breathless|pulseless|dead (similar term)
+inanimateness|1
+(noun)|lifelessness|physiological property (generic term)|animateness (antonym)
+inanition|2
+(noun)|lassitude|lethargy|slackness|weakness (generic term)
+(noun)|exhaustion (generic term)
+inanity|1
+(noun)|senselessness|mindlessness|vacuity|pointlessness|meaninglessness (generic term)
+inanna|1
+(noun)|Inanna|Semitic deity (generic term)
+inapplicability|1
+(noun)|irrelevance (generic term)|irrelevancy (generic term)|applicability (antonym)
+inapplicable|1
+(adj)|unsuitable|irrelevant (similar term)
+inapposite|1
+(adj)|out of place|malapropos (similar term)
+inappositeness|1
+(noun)|inaptness|inappropriateness (generic term)|unworthiness (generic term)|appositeness (antonym)|aptness (antonym)
+inappreciable|1
+(adj)|insignificant (similar term)|unimportant (similar term)
+inappropriate|2
+(adj)|unbefitting (similar term)|unsuitable (similar term)|improper (similar term)|wrong (similar term)|improper (related term)|malapropos (related term)|appropriate (antonym)
+(adj)|incompatible|out or keeping|unfitting|incongruous (similar term)
+inappropriately|1
+(adv)|unsuitably|not suitably|appropriately (antonym)|suitably (antonym)
+inappropriateness|2
+(noun)|wrongness|impropriety (generic term)|improperness (generic term)|appropriateness (antonym)
+(noun)|unworthiness|unsuitability (generic term)|unsuitableness (generic term)|ineptness (generic term)|appropriateness (antonym)
+inapt|1
+(adj)|awkward|clumsy|cumbersome|inept|ill-chosen|infelicitous (similar term)
+inaptitude|1
+(noun)|inability (generic term)|aptitude (antonym)
+inaptness|1
+(noun)|inappositeness|inappropriateness (generic term)|unworthiness (generic term)|appositeness (antonym)|aptness (antonym)
+inarguable|1
+(adj)|unarguable|incontestable (similar term)|incontestible (similar term)
+inarticulate|1
+(adj)|unarticulate|aphasic (similar term)|aphonic (similar term)|voiceless (similar term)|dumb (similar term)|mute (similar term)|silent (similar term)|dumb (similar term)|groaning (similar term)|moaning (similar term)|grunting (similar term)|incoherent (similar term)|tongue-tied (similar term)|mute (similar term)|tongueless (similar term)|unspoken (similar term)|wordless (similar term)|speechless (similar term)|dumb (similar term)|unarticulated (similar term)|uncommunicative (related term)|incommunicative (related term)|articulate (antonym)
+inarticulately|2
+(adv)|ineloquently|articulately (antonym)|eloquently (antonym)
+(adv)|articulately (antonym)
+inartistic|1
+(adj)|unartistic|inaesthetic (similar term)|unaesthetic (similar term)
+inattention|1
+(noun)|basic cognitive process (generic term)|attention (antonym)
+inattentive|2
+(adj)|absent (similar term)|absentminded (similar term)|abstracted (similar term)|scatty (similar term)|distracted (similar term)|distrait (similar term)|dreamy (similar term)|moony (similar term)|woolgathering (similar term)|drowsy (similar term)|oscitant (similar term)|yawning (similar term)|forgetful (similar term)|oblivious (similar term)|careless (related term)|forgetful (related term)|oblivious (related term)|negligent (related term)|attentive (antonym)
+(adj)|neglectful|negligent (similar term)
+inattentively|1
+(adv)|absently|abstractedly|absentmindedly
+inattentiveness|2
+(noun)|heedlessness|inattention (generic term)|attentiveness (antonym)
+(noun)|trait (generic term)|attentiveness (antonym)
+inaudibility|1
+(noun)|inaudibleness|physical property (generic term)|audibility (antonym)
+inaudible|1
+(adj)|unhearable|breathed (similar term)|voiceless (similar term)|infrasonic (similar term)|silent (similar term)|silent (similar term)|unsounded (similar term)|supersonic (similar term)|ultrasonic (similar term)|unheard (similar term)|imperceptible (related term)|unperceivable (related term)|quiet (related term)|audible (antonym)
+inaudibleness|1
+(noun)|inaudibility|physical property (generic term)|audibility (antonym)
+inaudibly|1
+(adv)|audibly (antonym)
+inaugural|4
+(adj)|exaugural (antonym)
+(adj)|initiative|initiatory|first|maiden|opening (similar term)
+(noun)|inaugural address|address (generic term)|speech (generic term)
+(noun)|inauguration|initiation (generic term)|induction (generic term)|installation (generic term)
+inaugural address|1
+(noun)|inaugural|address (generic term)|speech (generic term)
+inaugurate|3
+(verb)|kick off|start (generic term)|start up (generic term)|embark on (generic term)|commence (generic term)
+(verb)|open (generic term)
+(verb)|usher in|introduce|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+inauguration|2
+(noun)|startup|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|inaugural|initiation (generic term)|induction (generic term)|installation (generic term)
+inauguration day|1
+(noun)|Inauguration Day|January 20|day (generic term)
+inauspicious|3
+(adj)|unfortunate|unpromising (similar term)|auspicious (antonym)
+(adj)|adverse|harmful|untoward|unfavorable (similar term)|unfavourable (similar term)
+(adj)|ill|ominous|unpropitious (similar term)
+inauspiciously|1
+(adv)|unpropitiously|propitiously (antonym)|auspiciously (antonym)
+inauspiciousness|1
+(noun)|unpropitiousness|unfavorableness (generic term)|unfavourableness (generic term)|propitiousness (antonym)|auspiciousness (antonym)
+inauthentic|1
+(adj)|unauthentic|spurious|counterfeit (similar term)|imitative (similar term)
+inboard|1
+(adj)|outboard (antonym)
+inborn|2
+(adj)|congenital|innate|noninheritable (similar term)|nonheritable (similar term)
+(adj)|connatural|inbred|native (similar term)
+inborn error of metabolism|1
+(noun)|metabolic disorder (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+inborn reflex|1
+(noun)|reflex|instinctive reflex|innate reflex|unconditioned reflex|physiological reaction|reaction (generic term)|response (generic term)
+inbound|1
+(adj)|inward|incoming (similar term)
+inbred|2
+(adj)|interbred (similar term)|outbred (antonym)
+(adj)|connatural|inborn|native (similar term)
+inbreeding|1
+(noun)|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+inbuilt|1
+(adj)|built-in|constitutional|inherent|integral|intrinsic (similar term)|intrinsical (similar term)
+inc|1
+(noun)|Iraqi National Congress|INC|opposition (generic term)
+inca|2
+(noun)|Inca|ruler (generic term)|swayer (generic term)
+(noun)|Inca|Inka|Incan|Quechua (generic term)|Kechua (generic term)
+incalculable|1
+(adj)|countless (similar term)|infinite (similar term)|innumerable (similar term)|innumerous (similar term)|multitudinous (similar term)|myriad (similar term)|numberless (similar term)|uncounted (similar term)|unnumberable (similar term)|unnumbered (similar term)|unnumerable (similar term)|incomputable (similar term)|inestimable (similar term)|immeasurable (similar term)|indeterminable (similar term)|indeterminable (related term)|undeterminable (related term)|calculable (antonym)
+incalescence|1
+(noun)|calefaction|hotness (generic term)|heat (generic term)|high temperature (generic term)
+incan|1
+(noun)|Inca|Inka|Incan|Quechua (generic term)|Kechua (generic term)
+incandesce|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+incandescence|2
+(noun)|glow|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|luminosity (generic term)|brightness (generic term)|brightness level (generic term)|luminance (generic term)|luminousness (generic term)|light (generic term)
+incandescent|2
+(adj)|candent|light (similar term)
+(adj)|glorious (similar term)
+incandescent lamp|1
+(noun)|light bulb|lightbulb|bulb|electric light|electric-light bulb|electric lamp (generic term)
+incantation|1
+(noun)|conjuration|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+incapability|2
+(noun)|incapableness|inaptitude (generic term)|capability (antonym)
+(noun)|incapableness|inability (generic term)|unfitness (generic term)|capableness (antonym)|capability (antonym)
+incapable|5
+(adj)|unable (similar term)|incompetent (related term)|capable (antonym)
+(adj)|unsusceptible (similar term)|insusceptible (similar term)
+(adj)|unqualified|incompetent (similar term)
+(adj)|capable (antonym)
+(adj)|incompetent|unequal to|inadequate (similar term)
+incapableness|2
+(noun)|incapability|inaptitude (generic term)|capability (antonym)
+(noun)|incapability|inability (generic term)|unfitness (generic term)|capableness (antonym)|capability (antonym)
+incapacitate|2
+(verb)|disable|disenable|change (generic term)|alter (generic term)|modify (generic term)|enable (antonym)
+(verb)|disable|invalid|handicap|injure (generic term)|wound (generic term)
+incapacitated|1
+(adj)|helpless|powerless (similar term)
+incapacitating|1
+(adj)|crippling|disabling|unhealthful (similar term)
+incapacity|2
+(noun)|inability (generic term)|capacity (antonym)
+(noun)|incapability (generic term)|incapableness (generic term)|capacity (antonym)
+incarcerate|1
+(verb)|imprison|lag|immure|put behind bars|jail|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+incarceration|1
+(noun)|captivity|imprisonment|immurement|confinement (generic term)
+incarnadine|1
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+incarnate|4
+(adj)|bodied|corporal|corporate|embodied|corporeal (similar term)|material (similar term)
+(adj)|bodied (similar term)
+(verb)|realize (generic term)|realise (generic term)|actualize (generic term)|actualise (generic term)|substantiate (generic term)|disincarnate (antonym)
+(verb)|body forth|embody|substantiate|be (generic term)
+incarnation|4
+(noun)|embodiment|avatar|personification (generic term)
+(noun)|Incarnation|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+(noun)|time (generic term)
+(noun)|personification|embodiment (generic term)
+incase|1
+(verb)|encase|case|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+incased|1
+(adj)|cased|encased|sheathed (similar term)
+incasement|1
+(noun)|encasement|enclosure (generic term)|enclosing (generic term)|envelopment (generic term)|inclosure (generic term)
+incaution|1
+(noun)|incautiousness|carelessness (generic term)|sloppiness (generic term)|caution (antonym)
+incautious|2
+(adj)|hotheaded (similar term)|impulsive (similar term)|impetuous (similar term)|madcap (similar term)|tearaway (similar term)|brainish (similar term)|adventurous (related term)|adventuresome (related term)|careless (related term)|cautious (antonym)
+(adj)|careless (similar term)
+incautiously|1
+(adv)|carelessly|carefully (antonym)|cautiously (antonym)
+incautiousness|1
+(noun)|incaution|carelessness (generic term)|sloppiness (generic term)|caution (antonym)
+incendiarism|1
+(noun)|arson|fire-raising|burning (generic term)|combustion (generic term)
+incendiary|5
+(adj)|burning|combustion (related term)
+(adj)|incitive|inflammatory|instigative|rabble-rousing|seditious|provocative (similar term)
+(adj)|combustible (similar term)
+(noun)|arsonist|firebug|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|incendiary bomb|firebomb|bomb (generic term)
+incendiary bomb|1
+(noun)|incendiary|firebomb|bomb (generic term)
+incense|4
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|aroma (generic term)|fragrance (generic term)|perfume (generic term)|scent (generic term)
+(verb)|cense|thurify|odorize (generic term)|odourise (generic term)|scent (generic term)
+(verb)|infuriate|exasperate|anger (generic term)
+incense cedar|2
+(noun)|cedar (generic term)|cedar tree (generic term)
+(noun)|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar (generic term)|cedar tree (generic term)
+incense tree|1
+(noun)|tree (generic term)
+incense wood|1
+(noun)|wood (generic term)
+incensed|1
+(adj)|indignant|outraged|umbrageous|angry (similar term)
+incentive|2
+(noun)|inducement|motivator|rational motive (generic term)|disincentive (antonym)
+(noun)|bonus|payment (generic term)
+incentive option|1
+(noun)|incentive stock option|option (generic term)
+incentive program|1
+(noun)|incentive scheme|scheme (generic term)|strategy (generic term)
+incentive scheme|1
+(noun)|incentive program|scheme (generic term)|strategy (generic term)
+incentive stock option|1
+(noun)|incentive option|option (generic term)
+inception|1
+(noun)|origin|origination|beginning (generic term)
+incertain|1
+(adj)|uncertain|unsure|ambivalent (similar term)|doubtful (similar term)|dubious (similar term)|groping (similar term)|hesitant (similar term)|sure (antonym)|certain (antonym)
+incertitude|1
+(noun)|doubt|uncertainty|dubiety|doubtfulness|dubiousness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+incessancy|1
+(noun)|continuousness|ceaselessness|incessantness|endlessness (generic term)
+incessant|2
+(adj)|perpetual|endless|continual (similar term)
+(adj)|ceaseless|constant|never-ending|perpetual|unceasing|unremitting|continuous (similar term)|uninterrupted (similar term)
+incessantly|1
+(adv)|endlessly|ceaselessly|unceasingly|unendingly|continuously
+incessantness|1
+(noun)|continuousness|ceaselessness|incessancy|endlessness (generic term)
+incest|1
+(noun)|unlawful carnal knowledge (generic term)|criminal congress (generic term)
+incestuous|2
+(adj)|friendliness (related term)
+(adj)|unlawful carnal knowledge|criminal congress (related term)
+inch|3
+(noun)|in|linear unit (generic term)
+(noun)|column inch|area unit (generic term)|square measure (generic term)
+(verb)|edge|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)|edge in (related term)
+incheon|1
+(noun)|Inchon|Incheon|Chemulpo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+inchoate|1
+(adj)|incipient|early (similar term)
+inchoative|2
+(adj)|immature (similar term)
+(noun)|inchoative aspect|aspect (generic term)
+inchoative aspect|1
+(noun)|inchoative|aspect (generic term)
+inchon|2
+(noun)|Inchon|Incheon|Chemulpo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Inchon|amphibious assault (generic term)
+inchworm|1
+(noun)|measuring worm|looper|caterpillar (generic term)
+incidence|2
+(noun)|relative incidence|frequency (generic term)|relative frequency (generic term)
+(noun)|optical phenomenon (generic term)
+incidence angle|1
+(noun)|angle of incidence|angle (generic term)
+incident|4
+(adj)|optical phenomenon (related term)
+(adj)|incidental|omissible (similar term)|parenthetic (similar term)|parenthetical (similar term)|peripheral (similar term)|secondary (similar term)|basic (antonym)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+incidental|5
+(adj)|incident|omissible (similar term)|parenthetic (similar term)|parenthetical (similar term)|peripheral (similar term)|secondary (similar term)|basic (antonym)
+(adj)|accompanying|attendant|concomitant|incidental to|related (similar term)|related to (similar term)
+(adj)|nonessential|inessential (similar term)|unessential (similar term)
+(noun)|incidental expense|minor expense|expense (generic term)
+(noun)|item (generic term)|point (generic term)
+incidental expense|1
+(noun)|incidental|minor expense|expense (generic term)
+incidental music|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+incidental to|1
+(adj)|accompanying|attendant|concomitant|incidental|related (similar term)|related to (similar term)
+incidentally|3
+(adv)|by the way|by the bye
+(adv)|accidentally|by chance
+(adv)|apropos
+incienso|1
+(noun)|brittlebush|brittle bush|Encelia farinosa|wildflower (generic term)|wild flower (generic term)
+incinerate|2
+(verb)|burn down (generic term)|burn up (generic term)|go up (generic term)
+(verb)|burn|change integrity (generic term)
+incineration|1
+(noun)|burning (generic term)|combustion (generic term)
+incinerator|1
+(noun)|furnace (generic term)
+incipience|1
+(noun)|incipiency|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)
+incipiency|1
+(noun)|incipience|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)
+incipient|1
+(adj)|inchoate|early (similar term)
+incise|1
+(verb)|cut (generic term)
+incised|3
+(adj)|compound (similar term)
+(adj)|cut (similar term)
+(adj)|engraved|etched|graven|inscribed|carved (similar term)|carven (similar term)
+incision|2
+(noun)|scratch|prick|slit|dent|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|section|surgical incision|cut (generic term)|cutting (generic term)
+incisive|2
+(adj)|acute|discriminating|keen|knifelike|penetrating|penetrative|piercing|sharp|perceptive (similar term)
+(adj)|piercing|sharp (similar term)
+incisively|1
+(adv)|precisely|exactly|inexactly (antonym)|imprecisely (antonym)
+incisiveness|1
+(noun)|trenchancy|effectiveness (generic term)|effectivity (generic term)|effectualness (generic term)|effectuality (generic term)
+incisor|1
+(noun)|tooth (generic term)
+incisura|1
+(noun)|incisure|notch (generic term)
+incisure|1
+(noun)|incisura|notch (generic term)
+incitation|2
+(noun)|incitement|provocation|psychic energy (generic term)|mental energy (generic term)
+(noun)|incitement|arousal (generic term)|rousing (generic term)
+incite|3
+(verb)|motivate|actuate|propel|move|prompt|cause (generic term)|do (generic term)|make (generic term)
+(verb)|instigate|set off|stir up|provoke (generic term)|stimulate (generic term)
+(verb)|prod|egg on
+incitement|4
+(noun)|incitation|arousal (generic term)|rousing (generic term)
+(noun)|provocation|encouragement (generic term)
+(noun)|incitation|provocation|psychic energy (generic term)|mental energy (generic term)
+(noun)|exhortation|persuasion (generic term)|suasion (generic term)
+inciter|1
+(noun)|instigator|provoker|instigant|firebrand|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+incitive|1
+(adj)|incendiary|inflammatory|instigative|rabble-rousing|seditious|provocative (similar term)
+incivility|1
+(noun)|discourtesy (generic term)|rudeness (generic term)|civility (antonym)
+inclemency|2
+(noun)|bad weather|inclementness|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)|good weather (antonym)
+(noun)|severity|severeness|harshness|rigor|rigour|rigorousness|rigourousness|hardness|stiffness|sternness (generic term)|strictness (generic term)
+inclement|2
+(adj)|intemperate (related term)|clement (antonym)
+(adj)|unsparing (similar term)|merciless (related term)|unmerciful (related term)|clement (antonym)
+inclementness|1
+(noun)|bad weather|inclemency|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)|good weather (antonym)
+inclination|8
+(noun)|disposition|tendency|attitude (generic term)|mental attitude (generic term)
+(noun)|inclination of an orbit|angle (generic term)
+(noun)|angle of inclination|angle (generic term)
+(noun)|dip|angle of dip|magnetic dip|magnetic inclination|angle (generic term)
+(noun)|liking (generic term)|disinclination (antonym)
+(noun)|tilt|list|lean|leaning|position (generic term)|spatial relation (generic term)
+(noun)|tendency|disposition (generic term)
+(noun)|inclining|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+inclination of an orbit|1
+(noun)|inclination|angle (generic term)
+incline|7
+(noun)|slope|side|geological formation (generic term)|formation (generic term)
+(noun)|ramp|inclined plane (generic term)
+(verb)|tend|be given|lean|run|be (generic term)
+(verb)|listen (generic term)|hear (generic term)|take heed (generic term)
+(verb)|lower (generic term)|take down (generic term)|let down (generic term)|get down (generic term)|bring down (generic term)
+(verb)|slope|pitch|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+(verb)|dispose|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)|indispose (antonym)
+incline bench press|1
+(noun)|bench press (generic term)
+inclined|4
+(adj)|apt (similar term)|disposed (similar term)|given (similar term)|minded (similar term)|tending (similar term)|fond (similar term)|partial (similar term)|minded (similar term)|prone (similar term)|accident-prone (similar term)|willing (related term)|disinclined (antonym)
+(adj)|atilt (similar term)|canted (similar term)|leaning (similar term)|tilted (similar term)|tipped (similar term)|aslant (similar term)|aslope (similar term)|diagonal (similar term)|slanted (similar term)|slanting (similar term)|sloped (similar term)|sloping (similar term)|high-pitched (similar term)|low-pitched (similar term)|monoclinal (similar term)|pitched (similar term)|salient (similar term)|sidelong (similar term)|skew (similar term)|skewed (similar term)|gradual (related term)|oblique (related term)|horizontal (antonym)|vertical (antonym)
+(adj)|disposed|fain|prepared|willing (similar term)
+(adj)|bent|bowed|unerect (similar term)
+inclined fault|1
+(noun)|fault (generic term)|faulting (generic term)|geological fault (generic term)|shift (generic term)|fracture (generic term)|break (generic term)
+inclined plane|1
+(noun)|machine (generic term)|simple machine (generic term)
+inclining|1
+(noun)|inclination|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+inclinometer|3
+(noun)|navigational instrument (generic term)
+(noun)|dip circle|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|clinometer|surveying instrument (generic term)|surveyor's instrument (generic term)
+inclose|2
+(verb)|enclose|close in|shut in|surround (generic term)|skirt (generic term)|border (generic term)
+(verb)|insert|enclose|stick in|put in|introduce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+inclosure|2
+(noun)|enclosure|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|enclosure|enclosing|envelopment|insertion (generic term)|introduction (generic term)|intromission (generic term)
+include|4
+(verb)|exclude (antonym)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|exclude (antonym)
+(verb)|add (generic term)
+(verb)|admit|let in|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|exclude (antonym)
+included|1
+(adj)|enclosed (similar term)
+inclusion|4
+(noun)|situation (generic term)|state of affairs (generic term)|exclusion (antonym)
+(noun)|comprehension|involvement (generic term)
+(noun)|inclusion body|cellular inclusion|body (generic term)
+(noun)|increase (generic term)|step-up (generic term)
+inclusion body|1
+(noun)|cellular inclusion|inclusion|body (generic term)
+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 (generic term)
+inclusion body myositis|1
+(noun)|myositis (generic term)
+inclusive|1
+(adj)|comprehensive (similar term)|exclusive (antonym)
+incognito|1
+(adj)|concealed (similar term)
+incognizable|1
+(adj)|incognoscible|imperceptible (similar term)|unperceivable (similar term)
+incognizance|1
+(noun)|knowing (generic term)|cognizance (antonym)
+incognizant|1
+(adj)|unaware|oblivious (similar term)|unmindful (similar term)|unconscious (similar term)|unsuspecting (similar term)|asleep (related term)|insensible (related term)|unconscious (related term)|aware (antonym)
+incognoscible|1
+(adj)|incognizable|imperceptible (similar term)|unperceivable (similar term)
+incoherence|2
+(noun)|incoherency|disjunction (generic term)|disjuncture (generic term)|disconnection (generic term)|disconnectedness (generic term)|coherence (antonym)
+(noun)|incoherency|unintelligibility|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+incoherency|2
+(noun)|incoherence|disjunction (generic term)|disjuncture (generic term)|disconnection (generic term)|disconnectedness (generic term)|coherence (antonym)
+(noun)|incoherence|unintelligibility|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+incoherent|2
+(adj)|confused (similar term)|disconnected (similar term)|disjointed (similar term)|disordered (similar term)|garbled (similar term)|illogical (similar term)|scattered (similar term)|unconnected (similar term)|fuzzy (similar term)|illogical (related term)|unlogical (related term)|irrational (related term)|coherent (antonym)
+(adj)|tongue-tied|inarticulate (similar term)|unarticulate (similar term)
+incoherently|1
+(adv)|coherently (antonym)
+incombustible|1
+(adj)|noncombustible|fireproof (similar term)|fire-retardant (similar term)|fire-resistant (similar term)|fire-resisting (similar term)|fire-resistive (similar term)|flameproof (similar term)|flame-retardant (similar term)|nonflammable (similar term)|combustible (antonym)
+income|1
+(noun)|financial gain (generic term)|outgo (antonym)
+income bracket|1
+(noun)|tax bracket|income tax bracket|bracket (generic term)
+income statement|1
+(noun)|earnings report|operating statement|profit-and-loss statement|statement (generic term)|financial statement (generic term)
+income tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+income tax bracket|1
+(noun)|income bracket|tax bracket|bracket (generic term)
+income tax return|1
+(noun)|tax return|return|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+incoming|2
+(adj)|inbound (similar term)|inward (similar term)|designate (similar term)|elect (similar term)|future (similar term)|next (similar term)|succeeding (similar term)|in (similar term)|inflowing (similar term)|influent (similar term)|inpouring (similar term)|future (related term)|outgoing (antonym)
+(noun)|entrance|entering|entry|ingress|arrival (generic term)
+incommensurable|2
+(adj)|incomparable (similar term)|uncomparable (similar term)
+(adj)|incommensurate (similar term)
+incommensurate|1
+(adj)|disproportionate (similar term)|incommensurable (similar term)|unequal (related term)|commensurate (antonym)
+incommode|1
+(verb)|trouble|put out|inconvenience|disoblige|discommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+incommodious|1
+(adj)|cramped (similar term)|commodious (antonym)
+incommodiousness|1
+(noun)|inconvenience|discomfort (generic term)|uncomfortableness (generic term)
+incommunicado|1
+(adj)|uncommunicative (similar term)|incommunicative (similar term)
+incommunicative|1
+(adj)|uncommunicative|blank (similar term)|vacuous (similar term)|close (similar term)|closelipped (similar term)|closemouthed (similar term)|secretive (similar term)|tightlipped (similar term)|deadpan (similar term)|expressionless (similar term)|impassive (similar term)|poker-faced (similar term)|unexpressive (similar term)|incommunicado (similar term)|inexpressive (similar term)|mum (similar term)|silent (similar term)|unpronounceable (similar term)|unutterable (similar term)|inarticulate (related term)|unarticulate (related term)|taciturn (related term)|communicative (antonym)
+incommutability|1
+(noun)|unexchangeability (generic term)
+incommutable|2
+(adj)|inconvertible (similar term)|untransmutable (similar term)|unalterable (similar term)|commutable (antonym)
+(adj)|unexchangeable (similar term)
+incomparable|1
+(adj)|uncomparable|all-time (similar term)|incommensurable (similar term)|matchless (similar term)|nonpareil (similar term)|one (similar term)|one and only (similar term)|peerless (similar term)|unmatched (similar term)|unmatchable (similar term)|unrivaled (similar term)|unrivalled (similar term)|alone (similar term)|unique (similar term)|unequaled (similar term)|unequalled (similar term)|unparalleled (similar term)|best (related term)|extraordinary (related term)|comparable (antonym)
+incomparably|1
+(adv)|uncomparably|comparably (antonym)
+incompatibility|3
+(noun)|mutual exclusiveness|inconsistency|repugnance|contradictoriness (generic term)
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|characteristic (generic term)|compatibility (antonym)
+incompatible|9
+(adj)|antagonistic (similar term)|clashing (similar term)|contradictory (similar term)|mutually exclusive (similar term)|uncongenial (similar term)|different (related term)|inharmonious (related term)|unharmonious (related term)|mismatched (related term)|uncongenial (related term)|incompatible (related term)|compatible (antonym)
+(adj)|antagonistic|antacid (similar term)|antiphlogistic (similar term)|synergistic (antonym)
+(adj)|uncongenial|disagreeable (similar term)|unsympathetic (similar term)|incompatible (related term)|unfriendly (related term)|unsympathetic (related term)|congenial (antonym)
+(adj)|compatible (antonym)
+(adj)|contrastive|antonymous (similar term)
+(adj)|ill-sorted|mismated|unsuited|mismatched (similar term)
+(adj)|discrepant|inconsistent (similar term)
+(adj)|inappropriate|out or keeping|unfitting|incongruous (similar term)
+(adj)|immiscible (similar term)|non-miscible (similar term)|unmixable (similar term)
+incompatibly|1
+(adv)|compatibly (antonym)
+incompetence|2
+(noun)|incompetency|inability (generic term)|unfitness (generic term)|competence (antonym)
+(noun)|disease (generic term)
+incompetency|1
+(noun)|incompetence|inability (generic term)|unfitness (generic term)|competence (antonym)
+incompetent|5
+(adj)|feckless (similar term)|inept (similar term)|incapable (similar term)|unqualified (similar term)|ineffective (similar term)|inefficient (similar term)|unqualified (similar term)|unworkmanlike (similar term)|incapable (related term)|inefficient (related term)|unqualified (related term)|unskilled (related term)|competent (antonym)
+(adj)|bungling|clumsy|fumbling|unskilled (similar term)
+(adj)|unskilled|bad (similar term)
+(adj)|incapable|unequal to|inadequate (similar term)
+(noun)|incompetent person|unskilled person (generic term)
+incompetent cervix|1
+(noun)|cervix (generic term)|uterine cervix (generic term)|cervix uteri (generic term)
+incompetent person|1
+(noun)|incompetent|unskilled person (generic term)
+incompetently|1
+(adv)|displaying incompetence|competently (antonym)
+incomplete|2
+(adj)|uncomplete|broken (similar term)|half (similar term)|partial (similar term)|rudimentary (similar term)|sketchy (similar term)|unelaborated (similar term)|uncompleted (similar term)|fractional (related term)|complete (antonym)
+(adj)|uncompleted|unfinished (similar term)
+incomplete abortion|1
+(noun)|partial abortion|spontaneous abortion (generic term)|miscarriage (generic term)|stillbirth (generic term)
+incomplete fracture|1
+(noun)|fracture (generic term)|break (generic term)
+incompleteness|1
+(noun)|rawness|integrity (generic term)|unity (generic term)|wholeness (generic term)|completeness (antonym)
+incomprehensibility|1
+(noun)|quality (generic term)|comprehensibility (antonym)
+incomprehensible|2
+(adj)|inexplicable|cryptic (similar term)|cryptical (similar term)|deep (similar term)|inscrutable (similar term)|mysterious (similar term)|mystifying (similar term)|paradoxical (similar term)|self-contradictory (similar term)|unaccountable (similar term)|unexplainable (similar term)|unexplained (similar term)|incomprehensible (related term)|uncomprehensible (related term)|insoluble (related term)|explicable (antonym)
+(adj)|uncomprehensible|dark (similar term)|obscure (similar term)|enigmatic (similar term)|enigmatical (similar term)|puzzling (similar term)|unfathomable (similar term)|impenetrable (similar term)|indecipherable (similar term)|lost (similar term)|missed (similar term)|opaque (similar term)|unintelligible (similar term)|inexplicable (related term)|incomprehensible (related term)|unclear (related term)|unintelligible (related term)|comprehensible (antonym)
+incomprehension|1
+(noun)|inability (generic term)|comprehension (antonym)
+incomprehensive|1
+(adj)|noncomprehensive|limited (similar term)|comprehensive (antonym)
+incompressibility|1
+(noun)|hardness (generic term)|compressibility (antonym)
+incompressible|1
+(adj)|compressible (antonym)
+incomputable|1
+(adj)|inestimable|immeasurable|incalculable (similar term)
+inconceivability|1
+(noun)|inconceivableness|impossibility (generic term)|impossibleness (generic term)
+inconceivable|1
+(adj)|impossible|out of the question|unimaginable|unthinkable (similar term)
+inconceivableness|1
+(noun)|inconceivability|impossibility (generic term)|impossibleness (generic term)
+inconclusive|2
+(adj)|equivocal (similar term)|indeterminate (similar term)|neck and neck (similar term)|head-to-head (similar term)|nip and tuck (similar term)|nisi (similar term)|indecisive (related term)|indeterminate (related term)|undetermined (related term)|conclusive (antonym)
+(adj)|indecisive (similar term)
+inconclusively|1
+(adv)|conclusively (antonym)
+inconclusiveness|1
+(noun)|indefiniteness (generic term)|indeterminateness (generic term)|indefinity (generic term)|indetermination (generic term)|indeterminacy (generic term)|conclusiveness (antonym)
+inconel|1
+(noun)|Inconel|alloy (generic term)|metal (generic term)
+incongruent|1
+(adj)|congruent (antonym)
+incongruity|1
+(noun)|incongruousness|incompatibility (generic term)|congruousness (antonym)|congruity (antonym)
+incongruous|1
+(adj)|discrepant (similar term)|inconsistent (similar term)|inappropriate (similar term)|incompatible (similar term)|out or keeping (similar term)|unfitting (similar term)|inharmonious (similar term)|ironic (similar term)|ironical (similar term)|congruous (antonym)
+incongruousness|1
+(noun)|incongruity|incompatibility (generic term)|congruousness (antonym)|congruity (antonym)
+inconsequence|2
+(noun)|insignificance (generic term)|consequence (antonym)
+(noun)|illogicality|illogicalness|illogic|quality (generic term)|logicalness (antonym)|logicality (antonym)
+inconsequent|1
+(adj)|inconsequential|unimportant (similar term)
+inconsequential|2
+(adj)|inconsequent|unimportant (similar term)
+(adj)|illogical (similar term)|unlogical (similar term)
+inconsequentially|1
+(adv)|inconsequently|consequentially (antonym)
+inconsequently|1
+(adv)|inconsequentially|consequentially (antonym)
+inconsiderable|1
+(adj)|insignificant (similar term)|trivial (similar term)|considerable (antonym)
+inconsiderate|2
+(adj)|thoughtless (similar term)|uncaring (similar term)|unthinking (similar term)|selfish (related term)|tactless (related term)|untactful (related term)|thoughtless (related term)|considerate (antonym)
+(adj)|unconsidered|thoughtless (similar term)
+inconsiderately|1
+(adv)|without consideration|considerately (antonym)
+inconsiderateness|1
+(noun)|inconsideration|thoughtlessness|unkindness (generic term)|thoughtfulness (antonym)|consideration (antonym)
+inconsideration|1
+(noun)|inconsiderateness|thoughtlessness|unkindness (generic term)|thoughtfulness (antonym)|consideration (antonym)
+inconsistency|2
+(noun)|incompatibility|mutual exclusiveness|repugnance|contradictoriness (generic term)
+(noun)|nonuniformity (generic term)|consistency (antonym)
+inconsistent|3
+(adj)|at odds (similar term)|conflicting (similar term)|contradictory (similar term)|self-contradictory (similar term)|discrepant (similar term)|incompatible (similar term)|spotty (similar term)|uneven (similar term)|scratchy (similar term)|unconformable (similar term)|unreconciled (similar term)|variable (related term)|consistent (antonym)
+(adj)|irreconcilable (similar term)|unreconcilable (similar term)
+(adj)|discrepant|incongruous (similar term)
+inconsistently|1
+(adv)|consistently (antonym)
+inconsolable|1
+(adj)|disconsolate|unconsolable|desolate (similar term)|consolable (antonym)
+inconspicuous|1
+(adj)|invisible|obscure (similar term)|unnoticeable (similar term)|conspicuous (antonym)
+inconspicuously|1
+(adv)|conspicuously (antonym)
+inconspicuousness|1
+(noun)|invisibility (generic term)|invisibleness (generic term)|conspicuousness (antonym)
+inconstancy|2
+(noun)|faithlessness|falseness|fickleness|infidelity (generic term)|unfaithfulness (generic term)
+(noun)|changefulness|changeableness (generic term)|changeability (generic term)|constancy (antonym)
+inconstant|1
+(adj)|false (similar term)|untrue (similar term)|fickle (similar term)|volatile (similar term)|changeable (related term)|changeful (related term)|unfaithful (related term)|unstable (related term)|variable (related term)|volatile (related term)|constant (antonym)
+incontestable|2
+(adj)|incontestible|demonstrable (similar term)|incontrovertible (similar term)|demonstrated (similar term)|inarguable (similar term)|unarguable (similar term)|unassailable (similar term)|unshakable (similar term)|watertight (similar term)|bulletproof (similar term)|unanswerable (similar term)|unquestionable (related term)|contestable (antonym)
+(adj)|indisputable|undisputable|undeniable (similar term)
+incontestible|1
+(adj)|incontestable|demonstrable (similar term)|incontrovertible (similar term)|demonstrated (similar term)|inarguable (similar term)|unarguable (similar term)|unassailable (similar term)|unshakable (similar term)|watertight (similar term)|bulletproof (similar term)|unanswerable (similar term)|unquestionable (related term)|contestable (antonym)
+incontinence|2
+(noun)|incontinency|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+(noun)|dissoluteness|self-gratification|indiscipline (generic term)|undiscipline (generic term)
+incontinency|1
+(noun)|incontinence|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+incontinent|1
+(adj)|leaky (similar term)|continent (antonym)
+incontrovertibility|1
+(noun)|incontrovertibleness|positivity|positiveness|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+incontrovertible|2
+(adj)|irrefutable|positive|undeniable (similar term)
+(adj)|demonstrable|incontestable (similar term)|incontestible (similar term)
+incontrovertibleness|1
+(noun)|incontrovertibility|positivity|positiveness|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+incontrovertibly|1
+(adv)|demonstrably|provably
+inconvenience|4
+(noun)|incommodiousness|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|troublesomeness|worriment|difficulty (generic term)|difficultness (generic term)
+(noun)|unsuitability (generic term)|unsuitableness (generic term)|ineptness (generic term)|convenience (antonym)
+(verb)|trouble|put out|disoblige|discommode|incommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+inconvenience oneself|1
+(verb)|trouble oneself|trouble|bother|strive (generic term)|reach (generic term)|strain (generic term)
+inconvenient|2
+(adj)|awkward (similar term)|convenient (antonym)
+(adj)|inopportune (similar term)
+inconveniently|1
+(adv)|conveniently (antonym)
+inconvertibility|1
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)|convertibility (antonym)
+inconvertible|2
+(adj)|unconvertible|unexchangeable|irredeemable (similar term)|convertible (antonym)
+(adj)|untransmutable|incommutable (similar term)
+incoordination|1
+(noun)|unskillfulness (generic term)|coordination (antonym)
+incorporate|5
+(adj)|incorporated|integrated|merged|unified|united (similar term)
+(verb)|integrate|compound (generic term)|combine (generic term)|disintegrate (antonym)
+(verb)|contain|comprise|include (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|take in (generic term)|gather in (generic term)
+incorporated|3
+(adj)|incorporate|integrated|merged|unified|united (similar term)
+(adj)|corporate|organized (similar term)
+(adj)|integrated (similar term)
+incorporation|3
+(noun)|consolidation (generic term)|integration (generic term)
+(noun)|internalization|internalisation|learning (generic term)|acquisition (generic term)
+(noun)|inclusion (generic term)
+incorporative|1
+(adj)|increasing (similar term)
+incorporeal|1
+(adj)|immaterial|discorporate (similar term)|unembodied (similar term)|bodiless (similar term)|unbodied (similar term)|disembodied (similar term)|spiritual (similar term)|unbodied (related term)|corporeal (antonym)
+incorporeality|1
+(noun)|immateriality|quality (generic term)|corporeality (antonym)|materiality (antonym)
+incorrect|1
+(adj)|wrong|erroneous (similar term)|inaccurate (similar term)|fallacious (similar term)|false (similar term)|mistaken (similar term)|false (related term)|improper (related term)|inaccurate (related term)|right (antonym)|correct (antonym)
+incorrectly|2
+(adv)|falsely
+(adv)|wrongly|wrong|right (antonym)|correctly (antonym)
+incorrectness|2
+(noun)|impropriety (generic term)|improperness (generic term)|correctness (antonym)
+(noun)|wrongness|quality (generic term)|rightness (antonym)|correctness (antonym)
+incorrigible|1
+(adj)|delinquent (similar term)|unreformable (similar term)|unregenerate (similar term)|uncontrollable (similar term)|uncorrectable (similar term)|unmanageable (similar term)|disobedient (related term)|corrigible (antonym)
+incorrupt|2
+(adj)|antiseptic (similar term)|incorruptible (similar term)|uncorrupted (similar term)|uncorrupted (similar term)|unspoiled (similar term)|corrupt (antonym)
+(adj)|moral (similar term)
+incorruptibility|1
+(noun)|honesty (generic term)|honestness (generic term)|corruptibility (antonym)
+incorruptible|1
+(adj)|incorrupt (similar term)
+incorruption|1
+(noun)|incorruptness|honesty (generic term)|honestness (generic term)|corruptness (antonym)
+incorruptness|1
+(noun)|incorruption|honesty (generic term)|honestness (generic term)|corruptness (antonym)
+increase|7
+(noun)|addition|gain|indefinite quantity (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)|decrease (antonym)
+(noun)|increment|growth|process (generic term)|physical process (generic term)|decrement (antonym)|decrease (antonym)
+(noun)|increment|amount (generic term)|decrease (antonym)
+(noun)|step-up|change of magnitude (generic term)|decrease (antonym)
+(verb)|change magnitude (generic term)|decrease (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|decrease (antonym)
+increased|1
+(adj)|accrued (similar term)|accumulated (similar term)|augmented (similar term)|enhanced (similar term)|exaggerated (similar term)|hyperbolic (similar term)|inflated (similar term)|exaggerated (similar term)|magnified (similar term)|enlarged (similar term)|multiplied (similar term)|raised (similar term)|inflated (similar term)|redoubled (similar term)|decreased (antonym)
+increasing|2
+(adj)|accelerative (similar term)|acceleratory (similar term)|accretionary (similar term)|accretive (similar term)|augmentative (similar term)|exploding (similar term)|flared (similar term)|flaring (similar term)|growing (similar term)|incorporative (similar term)|maximizing (similar term)|maximising (similar term)|multiplicative (similar term)|profit-maximizing (similar term)|profit-maximising (similar term)|progressive (similar term)|raising (similar term)|decreasing (antonym)
+(adj)|accelerando (similar term)|crescendo (similar term)|decreasing (antonym)
+increasing monotonic|1
+(adj)|monotonic (similar term)|monotone (similar term)
+increasingly|1
+(adv)|progressively|more and more
+incredibility|1
+(noun)|incredibleness|quality (generic term)|credibility (antonym)
+incredible|1
+(adj)|unbelievable|astounding (similar term)|dumbfounding (similar term)|dumfounding (similar term)|fabulous (similar term)|improbable (similar term)|marvelous (similar term)|marvellous (similar term)|tall (similar term)|undreamed (similar term)|undreamed of (similar term)|undreamt (similar term)|undreamt of (similar term)|unimagined (similar term)|implausible (related term)|incredulous (related term)|unconvincing (related term)|unthinkable (related term)|credible (antonym)
+incredibleness|1
+(noun)|incredibility|quality (generic term)|credibility (antonym)
+incredibly|1
+(adv)|improbably|implausibly|unbelievably|believably (antonym)|credibly (antonym)
+incredulity|1
+(noun)|disbelief|skepticism|mental rejection|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+incredulous|1
+(adj)|disbelieving (similar term)|skeptical (similar term)|sceptical (similar term)|unbelieving (similar term)|distrustful (similar term)|distrustful (related term)|incredible (related term)|unbelievable (related term)|credulous (antonym)
+incredulously|1
+(adv)|unbelievingly|disbelievingly|believingly (antonym)|credulously (antonym)
+increment|2
+(noun)|increase|growth|process (generic term)|physical process (generic term)|decrement (antonym)|decrease (antonym)
+(noun)|increase|amount (generic term)|decrease (antonym)
+incremental|1
+(adj)|additive (similar term)
+incremental cost|1
+(noun)|marginal cost|differential cost|monetary value (generic term)|price (generic term)|cost (generic term)
+incriminate|2
+(verb)|imply|inculpate|suggest (generic term)|evoke (generic term)|paint a picture (generic term)
+(verb)|accuse|impeach|criminate|charge (generic term)|accuse (generic term)
+incriminating|1
+(adj)|criminative|criminatory|incriminatory|inculpatory (similar term)|inculpative (similar term)
+incrimination|1
+(noun)|inculpation|blame|accusation (generic term)|accusal (generic term)
+incriminatory|1
+(adj)|criminative|criminatory|incriminating|inculpatory (similar term)|inculpative (similar term)
+incrust|3
+(verb)|encrust|beset|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|encrust|coat (generic term)|surface (generic term)
+(verb)|encrust|harden (generic term)|indurate (generic term)
+incrustation|3
+(noun)|encrustation|formation (generic term)
+(noun)|crust|encrustation|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|encrustation|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+incubate|2
+(verb)|develop (generic term)
+(verb)|brood|hatch|cover|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+incubation|3
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+(noun)|phase (generic term)|stage (generic term)
+(noun)|brooding|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+incubation period|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+incubator|1
+(noun)|brooder|apparatus (generic term)|setup (generic term)
+incubus|3
+(noun)|devil (generic term)|fiend (generic term)|demon (generic term)|daemon (generic term)|daimon (generic term)
+(noun)|nightmare|situation (generic term)
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+inculcate|1
+(verb)|instill|infuse|drill (generic term)
+inculcation|1
+(noun)|ingraining|instilling|indoctrination (generic term)
+inculpability|1
+(noun)|blamelessness|inculpableness|guiltlessness|innocence (generic term)
+inculpable|1
+(adj)|blameless|irreproachable|unimpeachable|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+inculpableness|1
+(noun)|blamelessness|inculpability|guiltlessness|innocence (generic term)
+inculpate|1
+(verb)|incriminate|imply|suggest (generic term)|evoke (generic term)|paint a picture (generic term)
+inculpation|1
+(noun)|incrimination|blame|accusation (generic term)|accusal (generic term)
+inculpative|1
+(adj)|inculpatory|accusative (similar term)|accusatory (similar term)|accusing (similar term)|accusive (similar term)|comminatory (similar term)|denunciative (similar term)|denunciatory (similar term)|condemnatory (similar term)|condemning (similar term)|criminative (similar term)|criminatory (similar term)|incriminating (similar term)|incriminatory (similar term)|damnatory (similar term)|damning (similar term)|recriminative (similar term)|recriminatory (similar term)|guilty (related term)|exculpatory (antonym)
+inculpatory|1
+(adj)|inculpative|accusative (similar term)|accusatory (similar term)|accusing (similar term)|accusive (similar term)|comminatory (similar term)|denunciative (similar term)|denunciatory (similar term)|condemnatory (similar term)|condemning (similar term)|criminative (similar term)|criminatory (similar term)|incriminating (similar term)|incriminatory (similar term)|damnatory (similar term)|damning (similar term)|recriminative (similar term)|recriminatory (similar term)|guilty (related term)|exculpatory (antonym)
+incumbency|3
+(noun)|tenure|term of office|term (generic term)
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+incumbent|4
+(adj)|superjacent (similar term)
+(adj)|necessary (similar term)
+(adj)|current (similar term)
+(noun)|officeholder|official (generic term)|functionary (generic term)
+incumbent on|1
+(adj)|obligatory (similar term)
+incumbrance|3
+(noun)|encumbrance|charge (generic term)
+(noun)|burden|load|encumbrance|onus|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+(noun)|hindrance|hinderance|hitch|preventive|preventative|encumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+incur|2
+(verb)|subject (generic term)
+(verb)|receive|get|find|obtain|change (generic term)
+incurability|2
+(noun)|incurableness|characteristic (generic term)|curableness (antonym)|curability (antonym)
+(noun)|unalterability (generic term)
+incurable|3
+(adj)|curable (antonym)
+(adj)|unalterable (similar term)|inalterable (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+incurableness|1
+(noun)|incurability|characteristic (generic term)|curableness (antonym)|curability (antonym)
+incurious|1
+(adj)|uninterested (similar term)|uninquiring (similar term)|uninquisitive (similar term)|curious (antonym)
+incurrence|1
+(noun)|commitment (generic term)
+incurring|1
+(noun)|acquisition (generic term)
+incursion|3
+(noun)|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|penetration|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|mistake (generic term)|error (generic term)|fault (generic term)
+incursive|1
+(adj)|invading|invasive|offensive (similar term)
+incurvate|3
+(adj)|incurved|curved (similar term)|curving (similar term)
+(verb)|bend (generic term)|flex (generic term)
+(verb)|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+incurvation|2
+(noun)|concave shape|concavity|incurvature|solid (generic term)
+(noun)|bending (generic term)
+incurvature|1
+(noun)|concave shape|concavity|incurvation|solid (generic term)
+incurved|1
+(adj)|incurvate|curved (similar term)|curving (similar term)
+incus|1
+(noun)|anvil|auditory ossicle (generic term)
+indaba|1
+(noun)|council (generic term)
+indapamide|1
+(noun)|Lozal|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+indebted|1
+(adj)|obligated (similar term)
+indebtedness|2
+(noun)|liability|financial obligation|obligation (generic term)
+(noun)|obligation|personal relation (generic term)|personal relationship (generic term)
+indecency|2
+(noun)|impropriety (generic term)|improperness (generic term)|decency (antonym)
+(noun)|impropriety|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+indecent|3
+(adj)|indecorous|unbecoming|uncomely|unseemly|untoward|improper (similar term)
+(adj)|coarse (similar term)|crude (similar term)|earthy (similar term)|gross (similar term)|vulgar (similar term)|Hollywood (similar term)|indelicate (similar term)|obscene (similar term)|dirty (related term)|improper (related term)|indecorous (related term)|indelicate (related term)|decent (antonym)
+(adj)|immodest (similar term)
+indecent exposure|1
+(noun)|public nudity|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+indecently|1
+(adv)|decently (antonym)
+indecipherable|2
+(adj)|unclear|undecipherable|unreadable|illegible (similar term)
+(adj)|incomprehensible (similar term)|uncomprehensible (similar term)
+indecision|2
+(noun)|indecisiveness|irresolution|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|indecisiveness|irresoluteness (generic term)|irresolution (generic term)|decision (antonym)|decisiveness (antonym)
+indecisive|3
+(adj)|on the fence (similar term)|undecided (similar term)|hesitant (similar term)|hesitating (similar term)|suspensive (similar term)|irresolute (related term)|decisive (antonym)
+(adj)|inconclusive (similar term)|inconclusive (related term)|irresolute (related term)|decisive (antonym)
+(adj)|indefinite (similar term)
+indecisively|1
+(adv)|decisively (antonym)
+indecisiveness|2
+(noun)|indecision|irresolution|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|indecision|irresoluteness (generic term)|irresolution (generic term)|decision (antonym)|decisiveness (antonym)
+indecorous|2
+(adj)|indelicate|improper (related term)|indecent (related term)|decorous (antonym)
+(adj)|indecent|unbecoming|uncomely|unseemly|untoward|improper (similar term)
+indecorously|1
+(adv)|unbecomingly|decorously (antonym)
+indecorousness|1
+(noun)|indecorum|impropriety (generic term)|improperness (generic term)|decorousness (antonym)|decorum (antonym)
+indecorum|2
+(noun)|indecorousness|impropriety (generic term)|improperness (generic term)|decorousness (antonym)|decorum (antonym)
+(noun)|familiarity|impropriety|liberty|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+indeed|1
+(adv)|so
+indefatigability|1
+(noun)|indefatigableness|tirelessness|determination (generic term)|purpose (generic term)
+indefatigable|1
+(adj)|tireless|unflagging|unwearying|energetic (similar term)
+indefatigableness|1
+(noun)|indefatigability|tirelessness|determination (generic term)|purpose (generic term)
+indefatigably|1
+(adv)|tirelessly|inexhaustibly
+indefeasible|1
+(adj)|unforfeitable (similar term)|inalienable (similar term)|defeasible (antonym)
+indefensible|3
+(adj)|untenable|unreasonable (similar term)
+(adj)|vulnerable (similar term)
+(adj)|insupportable|unjustifiable|unwarrantable|unwarranted|inexcusable (similar term)
+indefinable|2
+(adj)|undefinable|undefined (similar term)|vague (similar term)
+(adj)|indescribable|ineffable|unspeakable|untellable|unutterable|inexpressible (similar term)|unexpressible (similar term)
+indefinite|2
+(adj)|coy (similar term)|indecisive (similar term)|nebulous (similar term)|unfixed (similar term)|noncommittal (similar term)|one (similar term)|indistinct (related term)|unclear (related term)|undefined (related term)|vague (related term)|definite (antonym)
+(adj)|uncertain (similar term)
+indefinite article|1
+(noun)|article (generic term)
+indefinite integral|1
+(noun)|integral (generic term)
+indefinite quantity|1
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+indefiniteness|1
+(noun)|indeterminateness|indefinity|indetermination|indeterminacy|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+indefinity|1
+(noun)|indefiniteness|indeterminateness|indetermination|indeterminacy|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+indehiscent|1
+(adj)|dehiscent (antonym)
+indelible|1
+(adj)|unerasable|ineradicable (similar term)
+indelible ink|1
+(noun)|ink (generic term)
+indelicacy|2
+(noun)|impropriety (generic term)|improperness (generic term)
+(noun)|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+indelicate|3
+(adj)|off-color|off-colour|tasteless (similar term)
+(adj)|indecorous|improper (related term)|indecent (related term)|decorous (antonym)
+(adj)|indecent (similar term)
+indemnification|2
+(noun)|damages|amends|indemnity|restitution|redress|compensation (generic term)
+(noun)|recompense (generic term)|compensation (generic term)
+indemnify|2
+(verb)|cover (generic term)|insure (generic term)|underwrite (generic term)
+(verb)|compensate|recompense|repair|pay (generic term)
+indemnity|3
+(noun)|insurance|protection (generic term)|shelter (generic term)
+(noun)|exemption (generic term)|freedom (generic term)
+(noun)|damages|amends|indemnification|restitution|redress|compensation (generic term)
+indene|1
+(noun)|hydrocarbon (generic term)
+indent|7
+(noun)|order (generic term)|purchase order (generic term)
+(noun)|indentation|indention|indenture|space (generic term)|blank space (generic term)|place (generic term)
+(verb)|format (generic term)|arrange (generic term)
+(verb)|cut (generic term)
+(verb)|dent|flex (generic term)|bend (generic term)|deform (generic term)|twist (generic term)|turn (generic term)
+(verb)|notch (generic term)
+(verb)|indenture|oblige (generic term)|bind (generic term)|hold (generic term)|obligate (generic term)
+indentation|4
+(noun)|indenture|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|pitting|roughness|corrosion (generic term)|corroding (generic term)|erosion (generic term)
+(noun)|indention|indent|indenture|space (generic term)|blank space (generic term)|place (generic term)
+(noun)|change of shape (generic term)
+indented|2
+(adj)|embattled|battlemented|castled|castellated|crenelated|crenellated|crenelate|crenellate|fancy (similar term)
+(adj)|depressed|concave (similar term)
+indention|1
+(noun)|indentation|indent|indenture|space (generic term)|blank space (generic term)|place (generic term)
+indenture|5
+(noun)|indentation|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|written agreement (generic term)
+(noun)|contract (generic term)
+(noun)|indentation|indention|indent|space (generic term)|blank space (generic term)|place (generic term)
+(verb)|indent|oblige (generic term)|bind (generic term)|hold (generic term)|obligate (generic term)
+indentured|1
+(adj)|apprenticed|articled|bound|unfree (similar term)
+independence|3
+(noun)|independency|freedom (generic term)
+(noun)|victory (generic term)|triumph (generic term)
+(noun)|Independence|city (generic term)|metropolis (generic term)|urban center (generic term)
+independence day|1
+(noun)|Independence Day|Fourth of July|July 4|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+independence hall|1
+(noun)|Independence Hall|building (generic term)|edifice (generic term)
+independency|1
+(noun)|independence|freedom (generic term)
+independent|8
+(adj)|autarkic (similar term)|autarkical (similar term)|autonomous (similar term)|self-directed (similar term)|self-reliant (similar term)|autonomous (similar term)|breakaway (similar term)|fissiparous (similar term)|separatist (similar term)|commutative (similar term)|free-living (similar term)|nonparasitic (similar term)|nonsymbiotic (similar term)|indie (similar term)|individual (similar term)|case-by-case (similar term)|item-by-item (similar term)|self-sufficient (similar term)|self-sufficing (similar term)|self-sustaining (similar term)|self-supporting (similar term)|single-handed (similar term)|strong-minded (similar term)|unaffiliated (similar term)|unconditional (similar term)|free (related term)|separate (related term)|dependent (antonym)
+(adj)|absolute (similar term)
+(adj)|autonomous|self-governing|sovereign|free (similar term)
+(adj)|unconditional (similar term)
+(adj)|main|dependent (antonym)
+(adj)|nonpartisan (similar term)|nonpartizan (similar term)
+(noun)|mugwump|fencesitter|individualist (generic term)
+(noun)|freelance|self-employed person|worker (generic term)
+independent agency|1
+(noun)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+independent clause|1
+(noun)|main clause|clause (generic term)
+independent state of papua new guinea|1
+(noun)|Papua New Guinea|Independent State of Papua New Guinea|country (generic term)|state (generic term)|land (generic term)
+independent state of samoa|1
+(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country (generic term)|state (generic term)|land (generic term)
+independent variable|1
+(noun)|experimental variable|variable (generic term)|variable quantity (generic term)
+independently|1
+(adv)|severally
+inderal|1
+(noun)|propanolol|Inderal|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+indescribable|1
+(adj)|indefinable|ineffable|unspeakable|untellable|unutterable|inexpressible (similar term)|unexpressible (similar term)
+indescribably|1
+(adv)|ineffably|unutterably|unspeakably
+indestructibility|1
+(noun)|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)|destructibility (antonym)
+indestructible|2
+(adj)|undestroyable (similar term)|destructible (antonym)
+(adj)|durable|perdurable|undestroyable|imperishable (similar term)
+indeterminable|2
+(adj)|undeterminable|indeterminate (similar term)|unascertainable (similar term)|undiscoverable (similar term)|unpredictable (similar term)|incalculable (related term)|indeterminate (related term)|undetermined (related term)|determinable (antonym)
+(adj)|incalculable (similar term)
+indeterminacy|1
+(noun)|indefiniteness|indeterminateness|indefinity|indetermination|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+indeterminacy principle|1
+(noun)|uncertainty principle|scientific theory (generic term)
+indeterminate|5
+(adj)|undetermined|cost-plus (similar term)|open-ended (similar term)|inconclusive (related term)|indeterminable (related term)|undeterminable (related term)|uncertain (related term)|determinate (antonym)
+(adj)|racemose (similar term)|determinate (antonym)
+(adj)|equivocal (similar term)|ambiguous (similar term)
+(adj)|indeterminable (similar term)|undeterminable (similar term)
+(adj)|inconclusive (similar term)
+indeterminateness|1
+(noun)|indefiniteness|indefinity|indetermination|indeterminacy|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+indetermination|1
+(noun)|indefiniteness|indeterminateness|indefinity|indeterminacy|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+index|8
+(noun)|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+(noun)|index number|indicant|indicator|fact (generic term)
+(noun)|exponent|power|mathematical notation (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|index finger|forefinger|finger (generic term)
+(verb)|list (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+index case|1
+(noun)|patient (generic term)
+index finger|1
+(noun)|index|forefinger|finger (generic term)
+index fossil|1
+(noun)|guide fossil|fossil (generic term)
+index fund|1
+(noun)|mutual fund (generic term)|open-end fund (generic term)|open-end investment company (generic term)
+index number|1
+(noun)|index|indicant|indicator|fact (generic term)
+index of refraction|1
+(noun)|refractive index|ratio (generic term)
+index register|1
+(noun)|register (generic term)
+indexation|1
+(noun)|regulation (generic term)|regulating (generic term)
+indexer|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+indexical|1
+(adj)|fact (related term)
+indexing|1
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+indexless|1
+(adj)|list|listing (related term)
+india|1
+(noun)|India|Republic of India|Bharat|Asian country (generic term)|Asian nation (generic term)
+india-rubber fig|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree (generic term)
+india-rubber plant|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree (generic term)
+india-rubber tree|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|rubber plant|Assam rubber|Ficus elastica|fig tree (generic term)
+india ink|1
+(noun)|India ink|drawing ink|ink (generic term)
+india paper|1
+(noun)|paper (generic term)
+india rubber|1
+(noun)|rubber|natural rubber|India rubber|gum elastic|caoutchouc|latex (generic term)
+indiaman|1
+(noun)|Indiaman|sailing vessel (generic term)|sailing ship (generic term)
+indian|5
+(adj)|Indian|Asian country|Asian nation (related term)
+(adj)|Indian|Amerind|Amerindic|Native American|Amerindian|Native American (related term)
+(noun)|Indian|American Indian|Red Indian|Amerindian (generic term)|Native American (generic term)
+(noun)|Indian|Asian (generic term)|Asiatic (generic term)
+(noun)|Amerind|Amerindian language|American-Indian language|American Indian|Indian|natural language (generic term)|tongue (generic term)
+indian agent|1
+(noun)|Indian agent|agent (generic term)|federal agent (generic term)
+indian arrowroot|1
+(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb (generic term)|herbaceous plant (generic term)
+indian banyan|1
+(noun)|banyan|banyan tree|banian|banian tree|Indian banyan|East Indian fig tree|Ficus bengalensis|fig tree (generic term)
+indian bean|2
+(noun)|catalpa|Indian bean|bean tree (generic term)
+(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+indian beech|1
+(noun)|Indian beech|Pongamia glabra|tree (generic term)
+indian beet|1
+(noun)|wild lupine|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub (generic term)|suffrutex (generic term)
+indian blackwood|1
+(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood (generic term)|rosewood tree (generic term)
+indian blanket|1
+(noun)|blanket flower|Indian blanket|fire wheel|fire-wheel|Gaillardia pulchella|gaillardia (generic term)
+indian breadroot|1
+(noun)|breadroot|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb (generic term)|herbaceous plant (generic term)
+indian buffalo|1
+(noun)|Indian buffalo|water buffalo (generic term)|water ox (generic term)|Asiatic buffalo (generic term)|Bubalus bubalis (generic term)
+indian button fern|1
+(noun)|Indian button fern|Tectaria macrodonta|fern (generic term)
+indian capital|1
+(noun)|New Delhi|Indian capital|capital of India|national capital (generic term)
+indian cherry|1
+(noun)|Carolina buckthorn|Rhamnus carolinianus|buckthorn (generic term)
+indian chickweed|1
+(noun)|carpetweed|Indian chickweed|Molluga verticillata|weed (generic term)
+indian chief|1
+(noun)|Indian chief|Indian chieftain|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+indian chieftain|1
+(noun)|Indian chief|Indian chieftain|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+indian chocolate|1
+(noun)|water avens|Indian chocolate|purple avens|chocolate root|Geum rivale|avens (generic term)
+indian cholera|1
+(noun)|cholera|Asiatic cholera|Indian cholera|epidemic cholera|infectious disease (generic term)
+indian club|1
+(noun)|Indian club|club (generic term)
+indian cobra|1
+(noun)|Indian cobra|Naja naja|cobra (generic term)
+indian coral tree|1
+(noun)|Indian coral tree|Erythrina variegata|Erythrina Indica|coral tree (generic term)|erythrina (generic term)
+indian corn|1
+(noun)|corn|maize|Indian corn|Zea mays|cereal (generic term)|cereal grass (generic term)
+indian cress|1
+(noun)|garden nasturtium|Indian cress|Tropaeolum majus|nasturtium (generic term)
+indian crocus|1
+(noun)|Indian crocus|orchid (generic term)|orchidaceous plant (generic term)
+indian currant|1
+(noun)|coralberry|Indian currant|Symphoricarpos orbiculatus|shrub (generic term)|bush (generic term)
+indian elephant|1
+(noun)|Indian elephant|Elephas maximus|elephant (generic term)
+indian file|1
+(noun)|file|single file|Indian file|line (generic term)
+indian giver|1
+(noun)|Indian giver|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+indian grackle|1
+(noun)|hill myna|Indian grackle|grackle|Gracula religiosa|myna (generic term)|mynah (generic term)|mina (generic term)|minah (generic term)|myna bird (generic term)|mynah bird (generic term)
+indian hemp|3
+(noun)|Indian hemp|Cannabis indica|cannabis (generic term)|hemp (generic term)
+(noun)|kenaf|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+(noun)|Indian hemp|rheumatism weed|Apocynum cannabinum|dogbane (generic term)
+indian lettuce|1
+(noun)|Indian lettuce|herb (generic term)|herbaceous plant (generic term)
+indian lodge|1
+(noun)|lodge|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+indian lotus|1
+(noun)|lotus|Indian lotus|sacred lotus|Nelumbo nucifera|water lily (generic term)
+indian madder|1
+(noun)|Indian madder|munjeet|Rubia cordifolia|madderwort (generic term)|rubiaceous plant (generic term)
+indian mallow|2
+(noun)|Indian mallow|Sida spinosa|mallow (generic term)
+(noun)|velvetleaf|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+indian meal|1
+(noun)|cornmeal|Indian meal|meal (generic term)
+indian millet|2
+(noun)|durra|doura|dourah|Egyptian corn|Indian millet|Guinea corn|grain sorghum (generic term)
+(noun)|mountain rice|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass (generic term)|rice grass (generic term)
+indian monetary unit|1
+(noun)|Indian monetary unit|monetary unit (generic term)
+indian mongoose|1
+(noun)|Indian mongoose|Herpestes nyula|mongoose (generic term)
+indian mustard|2
+(noun)|chinese mustard|leaf mustard|gai choi|Brassica juncea|mustard (generic term)
+(noun)|mustard|mustard greens|leaf mustard|Indian mustard|cruciferous vegetable (generic term)
+indian mutiny|1
+(noun)|Indian Mutiny|Sepoy Mutiny|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+indian ocean|1
+(noun)|Indian Ocean|ocean (generic term)
+indian paint|2
+(noun)|hoary puccoon|Indian paint|Lithospermum canescens|herb (generic term)|herbaceous plant (generic term)
+(noun)|strawberry blite|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot (generic term)
+indian paintbrush|2
+(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+(noun)|Indian paintbrush|painted cup|wildflower (generic term)|wild flower (generic term)
+indian pea|1
+(noun)|grass pea|Indian pea|khesari|Lathyrus sativus|vetchling (generic term)
+indian pink|2
+(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory (generic term)
+(noun)|cardinal flower|Indian pink|Lobelia cardinalis|lobelia (generic term)
+indian pipe|1
+(noun)|Indian pipe|waxflower|Monotropa uniflora|wildflower (generic term)|wild flower (generic term)
+indian plantain|1
+(noun)|Indian plantain|herb (generic term)|herbaceous plant (generic term)
+indian poke|2
+(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore (generic term)|false hellebore (generic term)
+(noun)|Indian poke|Phytolacca acinosa|pokeweed (generic term)
+indian pony|1
+(noun)|cayuse|Indian pony|pony (generic term)
+indian potato|2
+(noun)|groundnut|groundnut vine|Indian potato|potato bean|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+(noun)|giant sunflower|tall sunflower|Indian potato|Helianthus giganteus|sunflower (generic term)|helianthus (generic term)
+indian python|1
+(noun)|Indian python|Python molurus|python (generic term)
+indian race|2
+(noun)|Indian race|race (generic term)
+(noun)|Indian race|Amerindian race|race (generic term)
+indian rat snake|1
+(noun)|Indian rat snake|Ptyas mucosus|rat snake (generic term)
+indian rattlebox|1
+(noun)|Indian rattlebox|Crotalaria spectabilis|crotalaria (generic term)|rattlebox (generic term)
+indian red|3
+(noun)|Indian red|pigment (generic term)
+(noun)|Indian red|soil (generic term)|dirt (generic term)
+(noun)|Indian red|reddish brown (generic term)|sepia (generic term)|burnt sienna (generic term)|Venetian red (generic term)
+indian relish|1
+(noun)|chutney|Indian relish|condiment (generic term)
+indian reservation|1
+(noun)|reservation (generic term)|reserve (generic term)
+indian rhinoceros|1
+(noun)|Indian rhinoceros|Rhinoceros unicornis|rhinoceros (generic term)|rhino (generic term)
+indian rhododendron|1
+(noun)|Indian rhododendron|Melastoma malabathricum|shrub (generic term)|bush (generic term)
+indian rhubarb|2
+(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb (generic term)|rhubarb plant (generic term)
+indian rice|1
+(noun)|wild rice|Indian rice|grain (generic term)|food grain (generic term)|cereal (generic term)
+indian rosewood|1
+(noun)|Indian blackwood|East Indian rosewood|East India rosewood|Indian rosewood|Dalbergia latifolia|rosewood (generic term)|rosewood tree (generic term)
+indian rupee|1
+(noun)|Indian rupee|rupee|Indian monetary unit (generic term)
+indian salad|1
+(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+indian senna|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+indian shot|1
+(noun)|achira|arrowroot|Canna indica|Canna edulis|canna (generic term)
+indian summer|1
+(noun)|Indian summer|Saint Martin's summer|time period (generic term)|period of time (generic term)|period (generic term)
+indian tapir|1
+(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir (generic term)
+indian tick fever|1
+(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease (generic term)
+indian tobacco|2
+(noun)|wild tobacco|Indian tobacco|Nicotiana rustica|tobacco (generic term)|tobacco plant (generic term)
+(noun)|Indian tobacco|bladderpod|Lobelia inflata|lobelia (generic term)
+indian trail|1
+(noun)|Indian trail|trail (generic term)
+indian turnip|1
+(noun)|jack-in-the-pulpit|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum (generic term)|aroid (generic term)
+indiana|1
+(noun)|Indiana|Hoosier State|IN|American state (generic term)
+indianan|1
+(noun)|Indianan|Hoosier|American (generic term)
+indianapolis|1
+(noun)|Indianapolis|capital of Indiana|state capital (generic term)
+indic|1
+(noun)|Indic|Indo-Aryan|Indo-Iranian (generic term)|Indo-Iranian language (generic term)
+indicant|2
+(noun)|indication|communication (generic term)
+(noun)|index|index number|indicator|fact (generic term)
+indicate|5
+(verb)|bespeak|betoken|point|signal|tell (generic term)
+(verb)|point|show|inform (generic term)
+(verb)|inform (generic term)|contraindicate (antonym)
+(verb)|argue|present (generic term)|represent (generic term)|lay out (generic term)
+(verb)|suggest|inform (generic term)|contraindicate (antonym)
+indication|5
+(noun)|indicant|communication (generic term)
+(noun)|denotation|naming (generic term)
+(noun)|reason (generic term)|contraindication (antonym)
+(noun)|advice (generic term)
+(noun)|reading|meter reading|datum (generic term)|data point (generic term)
+indicative|3
+(adj)|declarative|mood|mode|modality (related term)
+(adj)|indicatory|revelatory|significative|suggestive|revealing (similar term)
+(noun)|indicative mood|declarative mood|declarative|common mood|fact mood|mood (generic term)|mode (generic term)|modality (generic term)
+indicative mood|1
+(noun)|indicative|declarative mood|declarative|common mood|fact mood|mood (generic term)|mode (generic term)|modality (generic term)
+indicator|4
+(noun)|index|index number|indicant|fact (generic term)
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|device (generic term)
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+indicator lamp|1
+(noun)|pilot light|pilot lamp|indicator (generic term)
+indicatoridae|1
+(noun)|Indicatoridae|family Indicatoridae|bird family (generic term)
+indicatory|1
+(adj)|indicative|revelatory|significative|suggestive|revealing (similar term)
+indict|1
+(verb)|charge (generic term)|accuse (generic term)
+indictability|1
+(noun)|impeachability|guilt (generic term)|guiltiness (generic term)
+indictable|1
+(adj)|chargeable|guilty (similar term)
+indiction|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+indictment|2
+(noun)|bill of indictment|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|accusation (generic term)|accusal (generic term)
+indie|3
+(adj)|independent (similar term)
+(noun)|pop group (generic term)
+(noun)|film company (generic term)
+indifference|4
+(noun)|unconcern (generic term)
+(noun)|emotionlessness|impassivity|impassiveness|phlegm|stolidity|unemotionality|apathy (generic term)
+(noun)|apathy|numbness|spiritlessness|passivity (generic term)|passiveness (generic term)
+(noun)|nonchalance|unconcern|carefreeness (generic term)
+indifferent|10
+(adj)|apathetic|uninterested (similar term)
+(adj)|unconcerned (similar term)
+(adj)|deaf|heedless (similar term)|thoughtless (similar term)|unheeding (similar term)
+(adj)|immaterial|unimportant (similar term)
+(adj)|inferior (similar term)
+(adj)|inert|neutral|unreactive (similar term)
+(adj)|impartial (similar term)|fair (similar term)
+(adj)|unbiased|unbiassed|impartial (similar term)|fair (similar term)
+(adj)|so-so|ordinary (similar term)
+(adj)|moderate (similar term)
+indigen|1
+(noun)|native|indigene|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+indigence|1
+(noun)|need|penury|pauperism|pauperization|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+indigene|1
+(noun)|native|indigen|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+indigenous|1
+(adj)|autochthonal|autochthonic|autochthonous|endemic|native (similar term)
+indigenous language|1
+(noun)|language (generic term)|linguistic communication (generic term)
+indigenousness|1
+(noun)|autochthony|endemism|nativeness (generic term)
+indigent|1
+(adj)|destitute|impoverished|necessitous|needy|poverty-stricken|poor (similar term)
+indigestibility|1
+(noun)|indigestibleness|edibility (generic term)|edibleness (generic term)|digestibility (antonym)
+indigestible|1
+(adj)|flatulent (similar term)|heavy (similar term)|nondigestible (similar term)|undigested (similar term)|stodgy (similar term)|inedible (related term)|uneatable (related term)|digestible (antonym)
+indigestibleness|1
+(noun)|indigestibility|edibility (generic term)|edibleness (generic term)|digestibility (antonym)
+indigestion|1
+(noun)|dyspepsia|stomach upset|upset stomach|symptom (generic term)
+indigirka|1
+(noun)|Indigirka|Indigirka River|river (generic term)
+indigirka river|1
+(noun)|Indigirka|Indigirka River|river (generic term)
+indignant|1
+(adj)|incensed|outraged|umbrageous|angry (similar term)
+indignation|1
+(noun)|outrage|anger (generic term)|choler (generic term)|ire (generic term)
+indignity|1
+(noun)|insult (generic term)|affront (generic term)
+indigo|4
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|anil|indigotin|dye (generic term)|dyestuff (generic term)
+(noun)|indigo plant|Indigofera tinctoria|shrub (generic term)|bush (generic term)
+(noun)|violet (generic term)|reddish blue (generic term)
+indigo bird|1
+(noun)|indigo bunting|indigo finch|Passerina cyanea|bunting (generic term)
+indigo broom|1
+(noun)|horsefly weed|rattle weed|Baptisia tinctoria|wild indigo (generic term)|false indigo (generic term)
+indigo bunting|1
+(noun)|indigo finch|indigo bird|Passerina cyanea|bunting (generic term)
+indigo finch|1
+(noun)|indigo bunting|indigo bird|Passerina cyanea|bunting (generic term)
+indigo plant|1
+(noun)|indigo|Indigofera tinctoria|shrub (generic term)|bush (generic term)
+indigo snake|1
+(noun)|gopher snake|Drymarchon corais|colubrid snake (generic term)|colubrid (generic term)
+indigo squill|1
+(noun)|wild hyacinth|Camassia scilloides|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+indigofera|1
+(noun)|Indigofera|genus Indigofera|rosid dicot genus (generic term)
+indigofera anil|1
+(noun)|anil|Indigofera suffruticosa|Indigofera anil|indigo (generic term)|indigo plant (generic term)|Indigofera tinctoria (generic term)
+indigofera suffruticosa|1
+(noun)|anil|Indigofera suffruticosa|Indigofera anil|indigo (generic term)|indigo plant (generic term)|Indigofera tinctoria (generic term)
+indigofera tinctoria|1
+(noun)|indigo|indigo plant|Indigofera tinctoria|shrub (generic term)|bush (generic term)
+indigotin|1
+(noun)|anil|indigo|dye (generic term)|dyestuff (generic term)
+indinavir|1
+(noun)|Crixivan|protease inhibitor (generic term)|PI (generic term)
+indira gandhi|1
+(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman (generic term)|solon (generic term)|national leader (generic term)
+indira nehru gandhi|1
+(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman (generic term)|solon (generic term)|national leader (generic term)
+indirect|5
+(adj)|mediate (similar term)
+(adj)|askance (similar term)|askant (similar term)|asquint (similar term)|squint (similar term)|squint-eyed (similar term)|squinty (similar term)|sidelong (similar term)|devious (similar term)|circuitous (similar term)|roundabout (similar term)|diversionary (similar term)|meandering (similar term)|rambling (similar term)|wandering (similar term)|winding (similar term)|crooked (related term)|direct (antonym)
+(adj)|collateral|related (related term)|lineal (antonym)
+(adj)|allusive (similar term)|backhanded (similar term)|circuitous (similar term)|roundabout (similar term)|circumlocutious (similar term)|circumlocutory (similar term)|periphrastic (similar term)|ambagious (similar term)|devious (similar term)|oblique (similar term)|digressive (similar term)|discursive (similar term)|excursive (similar term)|rambling (similar term)|hearsay (similar term)|mealymouthed (similar term)|mealy-mouthed (similar term)|tortuous (similar term)|direct (antonym)
+(adj)|secondary (similar term)
+indirect antonym|1
+(noun)|antonym (generic term)|opposite word (generic term)|opposite (generic term)
+indirect correlation|1
+(noun)|negative correlation|correlation (generic term)|correlational statistics (generic term)
+indirect discourse|1
+(noun)|report (generic term)|account (generic term)|direct discourse (antonym)
+indirect evidence|1
+(noun)|circumstantial evidence|evidence (generic term)|direct evidence (antonym)
+indirect expression|1
+(noun)|circumlocution|evasion (generic term)|equivocation (generic term)
+indirect fire|1
+(noun)|fire (generic term)|firing (generic term)
+indirect immunofluorescence|1
+(noun)|fluorescence microscopy (generic term)
+indirect lighting|1
+(noun)|lighting fixture (generic term)
+indirect object|1
+(noun)|object (generic term)
+indirect request|1
+(noun)|wish|request (generic term)|asking (generic term)
+indirect tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+indirect transmission|1
+(noun)|transmission mechanism (generic term)
+indirection|2
+(noun)|procedure (generic term)|process (generic term)
+(noun)|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+indirectly|1
+(adv)|directly (antonym)
+indirectness|1
+(noun)|characteristic (generic term)|directness (antonym)
+indiscernible|2
+(adj)|discernible (antonym)
+(adj)|insensible|undetectable|imperceptible (similar term)|unperceivable (similar term)
+indiscipline|1
+(noun)|undiscipline|trait (generic term)|discipline (antonym)
+indiscreet|1
+(adj)|bigmouthed (similar term)|blabbermouthed (similar term)|blabby (similar term)|talkative (similar term)|imprudent (similar term)|discreet (antonym)
+indiscreetly|1
+(adv)|discreetly (antonym)
+indiscreetness|1
+(noun)|injudiciousness|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)|judiciousness (antonym)
+indiscrete|1
+(adj)|indivisible (similar term)
+indiscretion|2
+(noun)|injudiciousness|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+(noun)|peccadillo|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+indiscriminate|2
+(adj)|undiscriminating (similar term)|indiscriminating (similar term)
+(adj)|promiscuous (similar term)|sweeping (similar term)|wholesale (similar term)|general (related term)|undiscriminating (related term)|indiscriminating (related term)|discriminate (antonym)
+indiscriminately|2
+(adv)|randomly|haphazardly|willy-nilly|arbitrarily|at random|every which way
+(adv)|promiscuously
+indiscriminating|1
+(adj)|undiscriminating|indiscriminate (similar term)|scattershot (similar term)|unperceptive (similar term)|unselective (similar term)|indiscriminate (related term)|discriminating (antonym)
+indispensability|1
+(noun)|indispensableness|vitalness|essentiality (generic term)|essentialness (generic term)|dispensableness (antonym)|dispensability (antonym)
+indispensable|3
+(adj)|critical (similar term)|vital (similar term)|necessary (related term)|dispensable (antonym)
+(adj)|essential|necessary (similar term)
+(adj)|obligatory (similar term)
+indispensableness|1
+(noun)|indispensability|vitalness|essentiality (generic term)|essentialness (generic term)|dispensableness (antonym)|dispensability (antonym)
+indispose|3
+(verb)|disincline|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)|dispose (antonym)
+(verb)|disqualify|unfit|change (generic term)|alter (generic term)|modify (generic term)|qualify (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+indisposed|2
+(adj)|ailing|peaked|poorly|sickly|unwell|under the weather|seedy|ill (similar term)|sick (similar term)
+(adj)|antipathetic|antipathetical|averse|loath|loth|disinclined (similar term)
+indisposition|2
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|reluctance|hesitancy|hesitation|disinclination|unwillingness (generic term)|involuntariness (generic term)
+indisputability|1
+(noun)|indubitability|unquestionability|unquestionableness|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+indisputable|2
+(adj)|incontestable|undisputable|undeniable (similar term)
+(adj)|sure|certain (similar term)
+indissoluble|2
+(adj)|insoluble|water-insoluble (similar term)|non-water-soluble (similar term)|soluble (antonym)
+(adj)|permanent (similar term)|lasting (similar term)
+indistinct|1
+(adj)|bedimmed (similar term)|bleary (similar term)|blurred (similar term)|blurry (similar term)|foggy (similar term)|fuzzy (similar term)|hazy (similar term)|muzzy (similar term)|cloudy (similar term)|nebulose (similar term)|nebulous (similar term)|dim (similar term)|faint (similar term)|shadowy (similar term)|vague (similar term)|wispy (similar term)|faint (similar term)|veiled (similar term)|indefinite (related term)|unclear (related term)|distinct (antonym)
+indistinctly|1
+(adv)|dimly
+indistinctness|1
+(noun)|softness|blurriness|fogginess|fuzziness|opacity (generic term)|opaqueness (generic term)|sharpness (antonym)|distinctness (antonym)
+indistinguishability|1
+(noun)|identity|identicalness|sameness (generic term)
+indistinguishable|2
+(adj)|identical|same (similar term)
+(adj)|undistinguishable|distinguishable (antonym)
+indite|1
+(verb)|write|compose|pen|create verbally (generic term)|write out (related term)
+indium|1
+(noun)|In|atomic number 49|metallic element (generic term)|metal (generic term)
+individual|6
+(adj)|single|idiosyncratic (similar term)|individualist (similar term)|individualistic (similar term)|one-on-one (similar term)|man-to-man (similar term)|respective (similar term)|several (similar term)|various (similar term)|singular (similar term)|separate (related term)|common (antonym)
+(adj)|case-by-case|item-by-item|independent (similar term)
+(adj)|separate|single|unshared (similar term)
+(adj)|private|personal (similar term)
+(noun)|person|someone|somebody|mortal|soul|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|organism (generic term)|being (generic term)
+individual retirement account|1
+(noun)|IRA|pension plan (generic term)|pension account (generic term)|retirement plan (generic term)|retirement savings plan (generic term)|retirement savings account (generic term)|retirement account (generic term)|retirement program (generic term)
+individualisation|1
+(noun)|individualization|individuation|discrimination (generic term)|secernment (generic term)
+individualise|2
+(verb)|individualize|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|personalize|personalise|individualize|change (generic term)|alter (generic term)|modify (generic term)|depersonalise (antonym)|depersonalize (antonym)
+individualised|1
+(adj)|individualized|personalized|personalised|personal (similar term)
+individualism|3
+(noun)|individuality|individuation|trait (generic term)|commonality (antonym)
+(noun)|belief (generic term)
+(noun)|laissez faire|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+individualist|2
+(adj)|individualistic|individual (similar term)|single (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+individualistic|2
+(adj)|individualist|individual (similar term)|single (similar term)
+(adj)|laissez-faire|capitalistic (similar term)|capitalist (similar term)
+individuality|2
+(noun)|individualism|individuation|trait (generic term)|commonality (antonym)
+(noun)|identity|personal identity|personality (generic term)
+individualization|1
+(noun)|individualisation|individuation|discrimination (generic term)|secernment (generic term)
+individualize|2
+(verb)|individualise|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|personalize|personalise|individualise|change (generic term)|alter (generic term)|modify (generic term)|depersonalise (antonym)|depersonalize (antonym)
+individualized|1
+(adj)|individualised|personalized|personalised|personal (similar term)
+individually|1
+(adv)|separately|singly|severally|one by one|on an individual basis
+individuate|2
+(verb)|characterize (generic term)|characterise (generic term)
+(verb)|shape (generic term)|form (generic term)
+individuation|2
+(noun)|individualization|individualisation|discrimination (generic term)|secernment (generic term)
+(noun)|individuality|individualism|trait (generic term)|commonality (antonym)
+indivisible|1
+(adj)|indiscrete (similar term)|undividable (similar term)|indivisible by (similar term)|inseparable (similar term)|divisible (antonym)
+indivisible by|1
+(adj)|undividable|indivisible (similar term)
+indo-aryan|2
+(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person (related term)
+(noun)|Indic|Indo-Aryan|Indo-Iranian (generic term)|Indo-Iranian language (generic term)
+indo-european|4
+(adj)|Indo-European|Indo-Germanic|natural language|tongue (related term)
+(adj)|Indo-European|Indo-Aryan|Aryan|primitive|primitive person (related term)
+(noun)|Aryan|Indo-European|primitive (generic term)|primitive person (generic term)
+(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language (generic term)|tongue (generic term)
+indo-european language|1
+(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language (generic term)|tongue (generic term)
+indo-germanic|1
+(adj)|Indo-European|Indo-Germanic|natural language|tongue (related term)
+indo-hittite|1
+(noun)|Indo-European|Indo-European language|Indo-Hittite|natural language (generic term)|tongue (generic term)
+indo-iranian|1
+(noun)|Indo-Iranian|Indo-Iranian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+indo-iranian language|1
+(noun)|Indo-Iranian|Indo-Iranian language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+indochina|1
+(noun)|Indochina|Indochinese peninsula|peninsula (generic term)
+indochinese peninsula|1
+(noun)|Indochina|Indochinese peninsula|peninsula (generic term)
+indocile|1
+(adj)|uncontrollable|ungovernable|unruly|unmanageable (similar term)|difficult (similar term)
+indocin|1
+(noun)|indomethacin|Indocin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+indoctrinate|1
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+indoctrination|1
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+indoleacetic acid|1
+(noun)|IAA|auxin (generic term)
+indolebutyric acid|1
+(noun)|auxin (generic term)
+indolence|1
+(noun)|laziness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+indolent|2
+(adj)|faineant|lazy|otiose|slothful|work-shy|idle (similar term)
+(adj)|inactive (similar term)
+indomethacin|1
+(noun)|Indocin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+indomitability|1
+(noun)|invincibility|strength (generic term)
+indomitable|1
+(adj)|never-say-die|unsubduable|unconquerable (similar term)
+indonesia|1
+(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country (generic term)|state (generic term)|land (generic term)
+indonesian|3
+(adj)|Indonesian|country|state|land (related term)
+(noun)|Indonesian|Asian (generic term)|Asiatic (generic term)
+(noun)|Indonesian|Bahasa Indonesia|Bahasa|Malay (generic term)
+indonesian borneo|1
+(noun)|Indonesian Borneo|Kalimantan|state (generic term)|province (generic term)
+indonesian monetary unit|1
+(noun)|Indonesian monetary unit|monetary unit (generic term)
+indoor|2
+(adj)|interior (related term)|outdoor (antonym)
+(adj)|interior (similar term)
+indoor garden|1
+(noun)|conservatory|hothouse|greenhouse (generic term)|nursery (generic term)|glasshouse (generic term)
+indoors|1
+(adv)|inside|outdoors (antonym)|outside (antonym)
+indorse|4
+(verb)|back|endorse|plump for|plunk for|support|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+(verb)|second|back|endorse|support (generic term)|back up (generic term)
+(verb)|certify|endorse|guarantee (generic term)|warrant (generic term)
+(verb)|endorse|sign (generic term)
+indorsement|5
+(noun)|endorsement|blurb|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(noun)|second|secondment|endorsement|agreement (generic term)
+(noun)|sanction|countenance|endorsement|warrant|imprimatur|approval (generic term)|commendation (generic term)
+(noun)|endorsement|signature (generic term)
+(noun)|endorsement|support (generic term)
+indorser|2
+(noun)|subscriber|endorser|ratifier|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|endorser|signer (generic term)|signatory (generic term)
+indra|1
+(noun)|Indra|Hindu deity (generic term)
+indrawn|1
+(adj)|withdrawn|reserved (similar term)
+indri|1
+(noun)|indris|Indri indri|Indri brevicaudatus|lemur (generic term)
+indri brevicaudatus|1
+(noun)|indri|indris|Indri indri|Indri brevicaudatus|lemur (generic term)
+indri indri|1
+(noun)|indri|indris|Indri indri|Indri brevicaudatus|lemur (generic term)
+indriidae|1
+(noun)|Indriidae|family Indriidae|mammal family (generic term)
+indris|1
+(noun)|indri|Indri indri|Indri brevicaudatus|lemur (generic term)
+indubitability|1
+(noun)|indisputability|unquestionability|unquestionableness|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+indubitable|1
+(adj)|beyond doubt|unquestionable (similar term)
+induce|5
+(verb)|bring on|generate (generic term)|bring forth (generic term)
+(verb)|stimulate|cause|have|get|make
+(verb)|stimulate|rush|hasten|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|induct|produce (generic term)|bring about (generic term)|give rise (generic term)
+induced|1
+(adj)|elicited (similar term)|evoked (similar term)|iatrogenic (similar term)|spontaneous (antonym)
+induced abortion|1
+(noun)|abortion (generic term)
+inducement|2
+(noun)|incentive|motivator|rational motive (generic term)|disincentive (antonym)
+(noun)|inducing|causing (generic term)|causation (generic term)
+inducer|2
+(noun)|agent (generic term)
+(noun)|persuader|communicator (generic term)
+inducing|1
+(noun)|inducement|causing (generic term)|causation (generic term)
+inducive|1
+(adj)|inductive|causative (similar term)
+induct|5
+(verb)|invest|seat|install (generic term)
+(verb)|initiate|admit (generic term)|let in (generic term)|include (generic term)
+(verb)|receive (generic term)|take in (generic term)|invite (generic term)
+(verb)|induce|produce (generic term)|bring about (generic term)|give rise (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+inductance|2
+(noun)|induction|electrical phenomenon (generic term)
+(noun)|inductor|electrical device (generic term)
+inductance unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+inductee|2
+(noun)|member (generic term)
+(noun)|draftee|conscript|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|volunteer (antonym)
+induction|6
+(noun)|initiation|installation|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|inductance|electrical phenomenon (generic term)
+(noun)|generalization|generalisation|inductive reasoning|colligation (generic term)
+(noun)|evocation|elicitation|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+(noun)|introduction (generic term)|debut (generic term)|first appearance (generic term)|launching (generic term)|unveiling (generic term)|entry (generic term)
+(noun)|trigger|initiation|causing (generic term)|causation (generic term)
+induction accelerator|1
+(noun)|betatron|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+induction coil|1
+(noun)|coil (generic term)
+induction heating|1
+(noun)|heating (generic term)|warming (generic term)
+induction of labor|1
+(noun)|induction (generic term)
+inductive|3
+(adj)|electrical phenomenon (related term)
+(adj)|a posteriori (related term)|synthetic (related term)|synthetical (related term)|deductive (antonym)
+(adj)|inducive|causative (similar term)
+inductive reasoning|1
+(noun)|generalization|generalisation|induction|colligation (generic term)
+inductor|1
+(noun)|inductance|electrical device (generic term)
+indue|1
+(verb)|endow|gift|empower|invest|endue|enable (generic term)
+indulge|3
+(verb)|gratify|pander|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|luxuriate|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|pamper|featherbed|cosset|cocker|baby|coddle|mollycoddle|spoil|treat (generic term)|handle (generic term)|do by (generic term)
+indulgence|5
+(noun)|self-indulgence|indiscipline (generic term)|undiscipline (generic term)
+(noun)|lenience|leniency|permissiveness (generic term)|tolerance (generic term)
+(noun)|indulging|pampering|humoring|gratification (generic term)
+(noun)|folly|foolery|tomfoolery|craziness|lunacy|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+(noun)|absolution (generic term)|remission (generic term)|remittal (generic term)|remission of sin (generic term)
+indulgent|3
+(adj)|decadent (similar term)|effete (similar term)|dissipated (similar term)|betting (similar term)|card-playing (similar term)|sporting (similar term)|epicurean (similar term)|luxurious (similar term)|luxuriant (similar term)|sybaritic (similar term)|voluptuary (similar term)|voluptuous (similar term)|gay (similar term)|hedonic (similar term)|hedonistic (similar term)|epicurean (similar term)|intemperate (similar term)|hard (similar term)|heavy (similar term)|overindulgent (similar term)|pampering (similar term)|self-indulgent (similar term)|gluttonous (related term)|nonindulgent (antonym)
+(adj)|lenient|soft|permissive (similar term)
+(adj)|favorable (similar term)|favourable (similar term)
+indulging|1
+(noun)|indulgence|pampering|humoring|gratification (generic term)
+indument|1
+(noun)|indumentum|covering (generic term)|natural covering (generic term)|cover (generic term)
+indumentum|1
+(noun)|indument|covering (generic term)|natural covering (generic term)|cover (generic term)
+indurate|4
+(adj)|callous|pachydermatous|insensitive (similar term)
+(verb)|change (generic term)
+(verb)|harden|change (generic term)|soften (antonym)
+(verb)|inure|harden|habituate (generic term)|accustom (generic term)
+indurated clay|1
+(noun)|soil (generic term)|dirt (generic term)
+induration|1
+(noun)|sclerosis|pathology (generic term)
+induration of the arteries|1
+(noun)|arteriosclerosis|arterial sclerosis|hardening of the arteries|coronary-artery disease|sclerosis (generic term)|induration (generic term)
+indus|2
+(noun)|Indus|constellation (generic term)
+(noun)|Indus|Indus River|river (generic term)
+indus civilization|1
+(noun)|Indus civilization|culture (generic term)|civilization (generic term)|civilisation (generic term)
+indus river|1
+(noun)|Indus|Indus River|river (generic term)
+indusial|1
+(adj)|covering|natural covering|cover (related term)
+indusium|1
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+industrial|5
+(adj)|commercial enterprise|business enterprise|business (related term)
+(adj)|developed (similar term)|highly-developed (similar term)|industrialized (similar term)|industrialised (similar term)|postindustrial (similar term)|progressive (related term)|nonindustrial (antonym)
+(adj)|commercial enterprise (related term)
+(adj)|blue-collar (similar term)
+(adj)|heavy-duty (similar term)
+industrial-strength|1
+(adj)|weapons-grade|strong (similar term)
+industrial air pollution|1
+(noun)|air pollution (generic term)
+industrial arts|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+industrial bank|1
+(noun)|industrial loan company|consumer finance company (generic term)|small loan company (generic term)
+industrial disease|1
+(noun)|occupational disease|disease (generic term)
+industrial engineering|1
+(noun)|industrial management|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+industrial enterprise|1
+(noun)|industrialization|industrialisation|industry (generic term)|manufacture (generic term)
+industrial loan company|1
+(noun)|industrial bank|consumer finance company (generic term)|small loan company (generic term)
+industrial management|1
+(noun)|industrial engineering|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+industrial park|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+industrial plant|1
+(noun)|plant|works|building complex (generic term)|complex (generic term)
+industrial process|1
+(noun)|process (generic term)|physical process (generic term)
+industrial psychology|1
+(noun)|applied psychology|psychology (generic term)|psychological science (generic term)
+industrial revolution|1
+(noun)|Industrial Revolution|technological revolution|historic period (generic term)|age (generic term)
+industrial union|1
+(noun)|vertical union|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)
+industrial watercourse|1
+(noun)|canal (generic term)
+industrial workers of the world|1
+(noun)|Industrial Workers of the World|IWW|I.W.W.|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)|labor movement (generic term)|trade union movement (generic term)|labor (generic term)
+industrialisation|1
+(noun)|industrialization|industrial enterprise|industry (generic term)|manufacture (generic term)
+industrialise|2
+(verb)|industrialize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|industrialize|change (generic term)
+industrialised|1
+(adj)|industrialized|industrial (similar term)
+industrialism|1
+(noun)|economy (generic term)|economic system (generic term)
+industrialist|1
+(noun)|businessman (generic term)|man of affairs (generic term)
+industrialization|1
+(noun)|industrialisation|industrial enterprise|industry (generic term)|manufacture (generic term)
+industrialize|2
+(verb)|industrialise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|industrialise|change (generic term)
+industrialized|1
+(adj)|industrialised|industrial (similar term)
+industrious|2
+(adj)|hardworking|tireless|untiring|diligent (similar term)
+(adj)|energetic|gumptious|up-and-coming|enterprising (similar term)
+industriousness|1
+(noun)|diligence|industry|determination (generic term)|purpose (generic term)
+industry|3
+(noun)|commercial enterprise (generic term)
+(noun)|manufacture|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|diligence|industriousness|determination (generic term)|purpose (generic term)
+industry analyst|1
+(noun)|analyst (generic term)
+indwell|1
+(verb)|exist (generic term)|survive (generic term)|live (generic term)|subsist (generic term)
+indweller|2
+(noun)|activation (generic term)
+(noun)|inhabitant|habitant|dweller|denizen|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+indwelling|1
+(adj)|inward (similar term)
+inebriant|1
+(noun)|alcohol|alcoholic beverage|intoxicant|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)|drug of abuse (generic term)|street drug (generic term)
+inebriate|4
+(noun)|drunkard|drunk|rummy|sot|wino|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(verb)|exhilarate|thrill|exalt|beatify|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+(verb)|intoxicate|soak|affect (generic term)
+(verb)|souse|soak|hit it up|drink (generic term)|booze (generic term)|fuddle (generic term)
+inebriated|1
+(adj)|intoxicated|drunk|bacchanalian (similar term)|bacchanal (similar term)|bacchic (similar term)|carousing (similar term)|orgiastic (similar term)|beery (similar term)|besotted (similar term)|blind drunk (similar term)|blotto (similar term)|crocked (similar term)|cockeyed (similar term)|fuddled (similar term)|loaded (similar term)|pie-eyed (similar term)|pissed (similar term)|pixilated (similar term)|plastered (similar term)|potty (similar term)|slopped (similar term)|sloshed (similar term)|smashed (similar term)|soaked (similar term)|soused (similar term)|sozzled (similar term)|squiffy (similar term)|stiff (similar term)|tiddly (similar term)|tiddley (similar term)|tight (similar term)|tipsy (similar term)|wet (similar term)|bibulous (similar term)|boozy (similar term)|drunken (similar term)|sottish (similar term)|doped (similar term)|drugged (similar term)|narcotized (similar term)|narcotised (similar term)|half-seas-over (similar term)|high (similar term)|mellow (similar term)|hopped-up (similar term)|stoned (similar term)|sober (antonym)
+inebriation|2
+(noun)|alcoholism|alcohol addiction|drunkenness|drug addiction (generic term)|white plague (generic term)
+(noun)|drunkenness|inebriety|intoxication|tipsiness|insobriety|temporary state (generic term)|soberness (antonym)
+inebriety|1
+(noun)|drunkenness|inebriation|intoxication|tipsiness|insobriety|temporary state (generic term)|soberness (antonym)
+inedible|1
+(adj)|uneatable|poisonous (similar term)|indigestible (related term)|tough (related term)|unpalatable (related term)|edible (antonym)
+ineffable|2
+(adj)|indefinable|indescribable|unspeakable|untellable|unutterable|inexpressible (similar term)|unexpressible (similar term)
+(adj)|unnameable|unspeakable|unutterable|sacred (similar term)
+ineffably|1
+(adv)|indescribably|unutterably|unspeakably
+ineffective|3
+(adj)|uneffective|ineffectual|toothless (similar term)|unproductive (similar term)|idle (related term)|inefficacious (related term)|inefficient (related term)|powerless (related term)|useless (related term)|effective (antonym)
+(adj)|ineffectual|unable|impotent (similar term)
+(adj)|inefficient|incompetent (similar term)
+ineffectively|1
+(adv)|inefficaciously|effectively (antonym)|efficaciously (antonym)
+ineffectiveness|1
+(noun)|ineffectualness|ineffectuality|powerlessness (generic term)|impotence (generic term)|impotency (generic term)|effectiveness (antonym)
+ineffectual|3
+(adj)|ineffective|uneffective|toothless (similar term)|unproductive (similar term)|idle (related term)|inefficacious (related term)|inefficient (related term)|powerless (related term)|useless (related term)|effective (antonym)
+(adj)|futile|otiose|unavailing|useless (similar term)
+(adj)|ineffective|unable|impotent (similar term)
+ineffectuality|1
+(noun)|ineffectiveness|ineffectualness|powerlessness (generic term)|impotence (generic term)|impotency (generic term)|effectiveness (antonym)
+ineffectually|1
+(adv)|effectually (antonym)
+ineffectualness|1
+(noun)|ineffectiveness|ineffectuality|powerlessness (generic term)|impotence (generic term)|impotency (generic term)|effectiveness (antonym)
+inefficacious|1
+(adj)|ineffective (related term)|uneffective (related term)|ineffectual (related term)|efficacious (antonym)
+inefficaciously|1
+(adv)|ineffectively|effectively (antonym)|efficaciously (antonym)
+inefficaciousness|1
+(noun)|inefficacy|ineffectiveness (generic term)|ineffectualness (generic term)|ineffectuality (generic term)|efficacy (antonym)
+inefficacy|1
+(noun)|inefficaciousness|ineffectiveness (generic term)|ineffectualness (generic term)|ineffectuality (generic term)|efficacy (antonym)
+inefficiency|1
+(noun)|unskillfulness (generic term)|efficiency (antonym)
+inefficient|2
+(adj)|uneconomical (similar term)|wasteful (similar term)|incompetent (related term)|ineffective (related term)|uneffective (related term)|ineffectual (related term)|efficient (antonym)
+(adj)|ineffective|incompetent (similar term)
+inefficiently|1
+(adv)|efficiently (antonym)
+inelaborate|1
+(adj)|unelaborate|plain (similar term)
+inelastic|1
+(adj)|dead (similar term)|nonresilient (similar term)|springless (similar term)|inflexible (related term)|elastic (antonym)
+inelasticity|1
+(noun)|physical property (generic term)|elasticity (antonym)
+inelegance|1
+(noun)|quality (generic term)|elegance (antonym)
+inelegant|1
+(adj)|gauche (similar term)|graceless (similar term)|unpolished (similar term)|homely (similar term)|tactless (related term)|untactful (related term)|tasteless (related term)|undignified (related term)|unrefined (related term)|elegant (antonym)
+inelegantly|1
+(adv)|elegantly (antonym)
+ineligibility|1
+(noun)|qualification (generic term)|making (generic term)|eligibility (antonym)
+ineligible|2
+(adj)|disqualified (similar term)|disqualified (similar term)|undesirable (similar term)|unsuitable (similar term)|unentitled (similar term)|unqualified (similar term)|unqualified (related term)|eligible (antonym)
+(adj)|illegal (similar term)
+ineloquently|1
+(adv)|inarticulately|articulately (antonym)|eloquently (antonym)
+ineluctability|1
+(noun)|unavoidability|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+ineluctable|1
+(adj)|inescapable|unavoidable|inevitable (similar term)
+ineluctably|1
+(adv)|inescapably|inevitably|unavoidably
+inept|3
+(adj)|awkward|clumsy|cumbersome|inapt|ill-chosen|infelicitous (similar term)
+(adj)|feckless|incompetent (similar term)
+(adj)|tactless|maladroit (similar term)
+ineptitude|2
+(noun)|awkwardness|clumsiness|ineptness|maladroitness|slowness|unskillfulness (generic term)
+(noun)|worthlessness|quality (generic term)|worth (antonym)
+ineptly|1
+(adv)|fecklessly
+ineptness|2
+(noun)|awkwardness|clumsiness|ineptitude|maladroitness|slowness|unskillfulness (generic term)
+(noun)|unsuitability|unsuitableness|quality (generic term)|suitableness (antonym)|suitability (antonym)
+inequality|1
+(noun)|difference (generic term)|equality (antonym)
+inequitable|1
+(adj)|unjust|equitable (antonym)
+inequitably|1
+(adv)|equitably (antonym)
+inequity|1
+(noun)|unfairness|injustice (generic term)|unjustness (generic term)|equity (antonym)|fairness (antonym)
+ineradicable|1
+(adj)|indelible (similar term)|unerasable (similar term)|inexpungible (similar term)|inexpungeable (similar term)|inexterminable (similar term)|inextirpable (similar term)|permanent (related term)|lasting (related term)|eradicable (antonym)
+inerrable|1
+(adj)|inerrant|unerring|infallible (similar term)
+inerrancy|1
+(noun)|infallibility (generic term)|errancy (antonym)
+inerrant|1
+(adj)|inerrable|unerring|infallible (similar term)
+inert|3
+(adj)|nonmoving (similar term)|unmoving (similar term)
+(adj)|indifferent|neutral|unreactive (similar term)
+(adj)|sluggish|soggy|torpid|inactive (similar term)
+inert gas|1
+(noun)|noble gas|argonon|chemical element (generic term)|element (generic term)|gas (generic term)
+inertia|2
+(noun)|inactiveness|inactivity|trait (generic term)|activeness (antonym)
+(noun)|mechanical phenomenon (generic term)
+inertial|1
+(adj)|mechanical phenomenon (related term)
+inertial frame|1
+(noun)|inertial reference frame|coordinate system (generic term)|frame of reference (generic term)|reference system (generic term)|reference frame (generic term)
+inertial guidance|1
+(noun)|inertial navigation|steering (generic term)|guidance (generic term)|direction (generic term)
+inertial guidance system|1
+(noun)|inertial navigation system|system (generic term)
+inertial mass|1
+(noun)|mass (generic term)
+inertial navigation|1
+(noun)|inertial guidance|steering (generic term)|guidance (generic term)|direction (generic term)
+inertial navigation system|1
+(noun)|inertial guidance system|system (generic term)
+inertial reference frame|1
+(noun)|inertial frame|coordinate system (generic term)|frame of reference (generic term)|reference system (generic term)|reference frame (generic term)
+inertness|1
+(noun)|immobility (generic term)
+inescapable|1
+(adj)|ineluctable|unavoidable|inevitable (similar term)
+inescapably|1
+(adv)|ineluctably|inevitably|unavoidably
+inessential|3
+(adj)|unessential|accessorial (similar term)|adscititious (similar term)|incidental (similar term)|nonessential (similar term)|dispensable (related term)|expendable (related term)|extrinsic (related term)|secondary (related term)|unimportant (related term)|unnecessary (related term)|unneeded (related term)|essential (antonym)
+(adj)|unnecessary (similar term)|unneeded (similar term)
+(noun)|nonessential|thing (generic term)|essential (antonym)
+inessentiality|1
+(noun)|unimportance (generic term)|essentiality (antonym)
+inestimable|1
+(adj)|incomputable|immeasurable|incalculable (similar term)
+inevitability|1
+(noun)|inevitableness|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+inevitable|3
+(adj)|fatal (similar term)|fateful (similar term)|ineluctable (similar term)|inescapable (similar term)|unavoidable (similar term)|necessary (similar term)|evitable (antonym)
+(adj)|predictable (similar term)
+(noun)|destiny (generic term)|fate (generic term)
+inevitable accident|1
+(noun)|act of God|force majeure|vis major|unavoidable casualty|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+inevitableness|1
+(noun)|inevitability|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+inevitably|2
+(adv)|necessarily|of necessity|needs
+(adv)|inescapably|ineluctably|unavoidably
+inexact|2
+(adj)|approximate (similar term)|approximative (similar term)|rough (similar term)|free (similar term)|loose (similar term)|liberal (similar term)|odd (similar term)|round (similar term)|imprecise (related term)|inaccurate (related term)|exact (antonym)
+(adj)|inaccuraRte|imprecise (similar term)
+inexactitude|1
+(noun)|inexactness|inaccuracy (generic term)|exactness (antonym)
+inexactly|1
+(adv)|imprecisely|exactly (antonym)|precisely (antonym)
+inexactness|1
+(noun)|inexactitude|inaccuracy (generic term)|exactness (antonym)
+inexcusable|2
+(adj)|indefensible (similar term)|insupportable (similar term)|unjustifiable (similar term)|unwarrantable (similar term)|unwarranted (similar term)|excusable (antonym)
+(adj)|unforgivable|unpardonable (similar term)
+inexcusably|2
+(adv)|unpardonably|unforgivably|forgivably (antonym)|pardonably (antonym)|excusably (antonym)
+(adv)|unjustifiably|justifiably (antonym)
+inexhaustible|2
+(adj)|unlimited|infinite (similar term)
+(adj)|renewable (similar term)|unfailing (similar term)|exhaustible (antonym)
+inexhaustibly|1
+(adv)|indefatigably|tirelessly
+inexorability|1
+(noun)|relentlessness|inexorableness|mercilessness (generic term)|unmercifulness (generic term)
+inexorable|2
+(adj)|grim|relentless|stern|unappeasable|unforgiving|unrelenting|implacable (similar term)
+(adj)|adamant|adamantine|intransigent|inflexible (similar term)
+inexorableness|1
+(noun)|relentlessness|inexorability|mercilessness (generic term)|unmercifulness (generic term)
+inexpedience|1
+(noun)|inexpediency|disadvantage (generic term)|expediency (antonym)|expedience (antonym)
+inexpediency|1
+(noun)|inexpedience|disadvantage (generic term)|expediency (antonym)|expedience (antonym)
+inexpedient|2
+(adj)|inadvisable (similar term)|disadvantageous (related term)|harmful (related term)|impolitic (related term)|expedient (antonym)
+(adj)|unwise|impolitic (similar term)
+inexpediently|1
+(adv)|expediently (antonym)
+inexpensive|1
+(adj)|cheap|bargain-priced (similar term)|cut-rate (similar term)|cut-price (similar term)|catchpenny (similar term)|dirt cheap (similar term)|low-budget (similar term)|low-cost (similar term)|low-priced (similar term)|affordable (similar term)|nickel-and-dime (similar term)|sixpenny (similar term)|threepenny (similar term)|twopenny (similar term)|tuppeny (similar term)|two-a-penny (similar term)|twopenny-halfpenny (similar term)|expensive (antonym)
+inexpensively|2
+(adv)|cheaply|tattily|expensively (antonym)
+(adv)|cheaply
+inexpensiveness|1
+(noun)|monetary value (generic term)|price (generic term)|cost (generic term)|expensiveness (antonym)
+inexperience|1
+(noun)|rawness|ignorance (generic term)|experience (antonym)
+inexperienced|1
+(adj)|inexperient|fledgling (similar term)|unfledged (similar term)|callow (similar term)|raw (similar term)|new (similar term)|uninitiate (similar term)|uninitiated (similar term)|naive (similar term)|unpracticed (similar term)|unpractised (similar term)|unversed (similar term)|unseasoned (similar term)|untested (similar term)|untried (similar term)|young (similar term)|unskilled (related term)|naive (related term)|naif (related term)|experienced (antonym)
+inexperienced person|1
+(noun)|innocent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+inexperient|1
+(adj)|inexperienced|fledgling (similar term)|unfledged (similar term)|callow (similar term)|raw (similar term)|new (similar term)|uninitiate (similar term)|uninitiated (similar term)|naive (similar term)|unpracticed (similar term)|unpractised (similar term)|unversed (similar term)|unseasoned (similar term)|untested (similar term)|untried (similar term)|young (similar term)|unskilled (related term)|naive (related term)|naif (related term)|experienced (antonym)
+inexpert|1
+(adj)|amateurish|amateur|unskilled|unprofessional (similar term)
+inexpertly|1
+(adv)|artlessly|crudely
+inexpiable|1
+(adj)|unpardonable (similar term)
+inexplicable|1
+(adj)|incomprehensible|cryptic (similar term)|cryptical (similar term)|deep (similar term)|inscrutable (similar term)|mysterious (similar term)|mystifying (similar term)|paradoxical (similar term)|self-contradictory (similar term)|unaccountable (similar term)|unexplainable (similar term)|unexplained (similar term)|incomprehensible (related term)|uncomprehensible (related term)|insoluble (related term)|explicable (antonym)
+inexplicit|1
+(adj)|implicit|implicit in (similar term)|inherent (similar term)|underlying (similar term)|implied (similar term)|silent (similar term)|tacit (similar term)|understood (similar term)|unexpressed (similar term)|unsaid (similar term)|unstated (similar term)|unuttered (similar term)|unverbalized (similar term)|unverbalised (similar term)|unvoiced (similar term)|unspoken (similar term)|connotative (related term)|covert (related term)|explicit (antonym)
+inexplicitness|1
+(noun)|unclearness (generic term)|explicitness (antonym)
+inexpressible|1
+(adj)|unexpressible|indefinable (similar term)|indescribable (similar term)|ineffable (similar term)|unspeakable (similar term)|untellable (similar term)|unutterable (similar term)|expressible (antonym)
+inexpressive|1
+(adj)|uncommunicative (similar term)|incommunicative (similar term)
+inexpressively|1
+(adv)|expressively (antonym)
+inexpugnable|1
+(adj)|impregnable|unconquerable (similar term)
+inexpungeable|1
+(adj)|inexpungible|ineradicable (similar term)
+inexpungible|1
+(adj)|inexpungeable|ineradicable (similar term)
+inextensible|1
+(adj)|nonextensile|nonprotractile|extensile (antonym)
+inexterminable|1
+(adj)|inextirpable|ineradicable (similar term)
+inextinguishable|1
+(adj)|extinguishable (antonym)
+inextirpable|1
+(adj)|inexterminable|ineradicable (similar term)
+inextricable|1
+(adj)|unresolvable (similar term)|extricable (antonym)
+infallibility|1
+(noun)|dependability (generic term)|dependableness (generic term)|reliability (generic term)|reliableness (generic term)|fallibility (antonym)
+infallible|1
+(adj)|foolproof (similar term)|unfailing (similar term)|inerrable (similar term)|inerrant (similar term)|unerring (similar term)|fallible (antonym)
+infamous|1
+(adj)|ill-famed|notorious|disreputable (similar term)
+infamy|2
+(noun)|opprobrium|dishonor (generic term)|dishonour (generic term)|fame (antonym)
+(noun)|disrepute (generic term)|discredit (generic term)|fame (antonym)
+infancy|2
+(noun)|babyhood|early childhood|time of life (generic term)
+(noun)|babyhood|immaturity (generic term)|immatureness (generic term)
+infant|1
+(noun)|baby|babe|child (generic term)|kid (generic term)
+infant's-breath|1
+(noun)|wild madder|white madder|white bedstraw|false baby's breath|Galium mollugo|bedstraw (generic term)
+infant death|1
+(noun)|sudden infant death syndrome|SIDS|crib death|cot death|death (generic term)|sleep apnea (generic term)
+infant deathrate|1
+(noun)|infant mortality|infant mortality rate|deathrate (generic term)|death rate (generic term)|mortality (generic term)|mortality rate (generic term)|fatality rate (generic term)
+infant feeding|1
+(noun)|feeding (generic term)|alimentation (generic term)
+infant mortality|1
+(noun)|infant deathrate|infant mortality rate|deathrate (generic term)|death rate (generic term)|mortality (generic term)|mortality rate (generic term)|fatality rate (generic term)
+infant mortality rate|1
+(noun)|infant deathrate|infant mortality|deathrate (generic term)|death rate (generic term)|mortality (generic term)|mortality rate (generic term)|fatality rate (generic term)
+infant prodigy|1
+(noun)|child prodigy|wonder child|prodigy (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+infant school|1
+(noun)|grade school (generic term)|grammar school (generic term)|elementary school (generic term)|primary school (generic term)
+infanticide|2
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+infantile|3
+(adj)|childish|immature (similar term)
+(adj)|time of life (related term)
+(adj)|young (similar term)|immature (similar term)
+infantile amaurotic idiocy|1
+(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|lipidosis (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+infantile autism|1
+(noun)|autism (generic term)
+infantile fixation|1
+(noun)|arrested development|fixation|regression|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+infantile paralysis|1
+(noun)|poliomyelitis|polio|acute anterior poliomyelitis|infectious disease (generic term)
+infantilism|2
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+infantry|1
+(noun)|foot|army unit (generic term)
+infantryman|1
+(noun)|marcher|foot soldier|footslogger|soldier (generic term)
+infarct|1
+(noun)|infarction|pathology (generic term)
+infarction|1
+(noun)|infarct|pathology (generic term)
+infatuate|1
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+infatuated|1
+(adj)|crazy|dotty|gaga|enamored|in love|smitten|soft on|taken with|loving (similar term)
+infatuation|3
+(noun)|passion (generic term)|passionateness (generic term)
+(noun)|puppy love|calf love|crush|love (generic term)
+(noun)|object (generic term)
+infeasibility|1
+(noun)|unfeasibility|impracticability (generic term)|impracticableness (generic term)|feasibility (antonym)
+infeasible|1
+(adj)|impracticable|unfeasible|unworkable|impossible (similar term)
+infect|4
+(verb)|give (generic term)
+(verb)|taint|pollute (generic term)|foul (generic term)|contaminate (generic term)|disinfect (antonym)
+(verb)|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+infected|1
+(adj)|septic|abscessed (similar term)|contaminated (similar term)|dirty (similar term)|pestiferous (similar term)|contaminative (similar term)|purulent (similar term)|pussy (similar term)|infectious (similar term)|infective (similar term)|putrefactive (similar term)|putrefacient (similar term)|septicemic (similar term)|germy (related term)|unhealthful (related term)|antiseptic (antonym)
+infection|7
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|linguistic process (generic term)
+(noun)|pathologic process (generic term)|pathological process (generic term)
+(noun)|contagion|transmission|incident (generic term)
+(noun)|contagion|communication (generic term)
+(noun)|corruptness (generic term)|corruption (generic term)
+(noun)|illegality (generic term)
+infectious|3
+(adj)|infective|septic (similar term)|infected (similar term)
+(adj)|catching (similar term)|communicable (similar term)|contagious (similar term)|contractable (similar term)|transmissible (similar term)|transmittable (similar term)|contagious (similar term)|corrupting (similar term)|contaminating (similar term)|noninfectious (antonym)
+(adj)|ill health|unhealthiness|health problem (related term)
+infectious agent|1
+(noun)|infective agent|agent (generic term)
+infectious disease|1
+(noun)|communicable disease (generic term)
+infectious hepatitis|1
+(noun)|hepatitis A|viral hepatitis (generic term)
+infectious mononucleosis|1
+(noun)|mononucleosis|mono|glandular fever|kissing disease|infectious disease (generic term)
+infectious polyneuritis|1
+(noun)|Guillain-Barre syndrome|Landry's paralysis|polyneuritis (generic term)|multiple neuritis (generic term)
+infectiously|1
+(adv)|contagiously
+infective|2
+(adj)|morbific|pathogenic|unhealthful (similar term)
+(adj)|infectious|septic (similar term)|infected (similar term)
+infective agent|1
+(noun)|infectious agent|agent (generic term)
+infelicitous|2
+(adj)|awkward (similar term)|clumsy (similar term)|cumbersome (similar term)|inapt (similar term)|inept (similar term)|ill-chosen (similar term)|unfortunate (similar term)|unhappy (related term)|felicitous (antonym)
+(adj)|unhappy|unfortunate (similar term)
+infelicitously|1
+(adv)|felicitously (antonym)
+infelicity|1
+(noun)|inappropriateness (generic term)|unworthiness (generic term)|felicity (antonym)
+infer|5
+(verb)|deduce|deduct|derive|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|generalize|generalise|extrapolate|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|deduce|reason (generic term)|reason out (generic term)|conclude (generic term)
+(verb)|guess|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+(verb)|understand|believe (generic term)
+inference|1
+(noun)|illation|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+inferential|5
+(adj)|illative|reasoning|logical thinking|abstract thought (related term)
+(adj)|deductive (similar term)
+(adj)|illative|deductive (similar term)
+(adj)|connotative (similar term)
+(adj)|constructive (similar term)
+inferior|9
+(adj)|humble (similar term)|low (similar term)|lowly (similar term)|modest (similar term)|small (similar term)|indifferent (similar term)|low-level (similar term)|middle-level (similar term)|outclassed (similar term)|low (related term)|low (related term)|subordinate (related term)|low-level (related term)|superior (antonym)
+(adj)|bad (similar term)|base (similar term)|bum (similar term)|cheap (similar term)|cheesy (similar term)|chintzy (similar term)|crummy (similar term)|punk (similar term)|sleazy (similar term)|tinny (similar term)|bush-league (similar term)|bush (similar term)|flimsy (similar term)|cheapjack (similar term)|shoddy (similar term)|tawdry (similar term)|coarse (similar term)|common (similar term)|coarsened (similar term)|commercial (similar term)|deplorable (similar term)|execrable (similar term)|miserable (similar term)|woeful (similar term)|wretched (similar term)|less (similar term)|low-grade (similar term)|mediocre (similar term)|second-rate (similar term)|ropey (similar term)|ropy (similar term)|scrawny (similar term)|scrubby (similar term)|stunted (similar term)|second-class (similar term)|third-rate (similar term)|utility (similar term)|utility-grade (similar term)|worst (related term)|superior (antonym)
+(adj)|junior-grade|lower-ranking|lowly|petty|secondary|subaltern|subordinate|junior (similar term)
+(adj)|subscript|adscript (antonym)|superscript (antonym)
+(adj)|superior (antonym)
+(adj)|bottom (similar term)
+(adj)|deficient|substandard|nonstandard (similar term)
+(noun)|follower (generic term)|superior (antonym)
+(noun)|subscript|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|superscript (antonym)
+inferior alveolar artery|1
+(noun)|arteria alveolaris inferior|alveolar artery (generic term)|arteria alveolaris (generic term)
+inferior cerebellar artery|1
+(noun)|cerebellar artery (generic term)|arteria cerebelli (generic term)
+inferior cerebral vein|1
+(noun)|venae cerebrum inferior|cerebral vein (generic term)|vena cerebri (generic term)
+inferior colliculus|1
+(noun)|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+inferior conjunction|1
+(noun)|conjunction (generic term)|alignment (generic term)
+inferior court|1
+(noun)|lower court|court (generic term)|tribunal (generic term)|judicature (generic term)
+inferior epigastric vein|1
+(noun)|vena epigastrica inferior|epigastric vein (generic term)
+inferior labial artery|1
+(noun)|arteria labialis inferior|labial artery (generic term)|arteria labialis (generic term)
+inferior labial vein|1
+(noun)|vena labialis inferior|labial vein (generic term)|vena labialis (generic term)
+inferior mesenteric artery|1
+(noun)|mesenteric artery (generic term)|arteria mesenterica (generic term)
+inferior ophthalmic vein|1
+(noun)|ophthalmic vein (generic term)|vena ophthalmica (generic term)
+inferior planet|1
+(noun)|planet (generic term)|major planet (generic term)
+inferior pulmonary vein|1
+(noun)|vena pulmanalis inferior|pulmonary vein (generic term)|vena pulmonalis (generic term)
+inferior rectus|1
+(noun)|inferior rectus muscle|rectus inferior|ocular muscle (generic term)|eye muscle (generic term)
+inferior rectus muscle|1
+(noun)|inferior rectus|rectus inferior|ocular muscle (generic term)|eye muscle (generic term)
+inferior thalamostriate vein|1
+(noun)|striate vein|thalamostriate vein (generic term)
+inferior thyroid vein|1
+(noun)|thyroid vein (generic term)|vena thyroidea (generic term)
+inferior vena cava|1
+(noun)|postcava|vena cava (generic term)
+inferior vocal cord|1
+(noun)|true vocal cord|true vocal fold|inferior vocal fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+inferior vocal fold|1
+(noun)|true vocal cord|true vocal fold|inferior vocal cord|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+inferiority|3
+(noun)|lower status|lower rank|low status (generic term)|lowness (generic term)|lowliness (generic term)
+(noun)|low quality|quality (generic term)|caliber (generic term)|calibre (generic term)|high quality (antonym)|superiority (antonym)
+(noun)|unfavorable position|disadvantage (generic term)
+inferiority complex|1
+(noun)|complex (generic term)
+infernal|6
+(adj)|region|part (related term)
+(adj)|demonic|diabolic|diabolical|fiendish|hellish|satanic|unholy|evil (similar term)
+(adj)|blasted|blame|blamed|blessed|damn|damned|darned|deuced|goddam|goddamn|goddamned|cursed (similar term)|curst (similar term)
+(adj)|fire (related term)
+(adj)|chthonian (similar term)|chthonic (similar term)|nether (similar term)|Hadean (similar term)|Plutonian (similar term)|Tartarean (similar term)|Stygian (similar term)|evil (related term)|supernal (antonym)
+(noun)|dead person (generic term)|dead soul (generic term)|deceased person (generic term)|deceased (generic term)|decedent (generic term)|departed (generic term)
+infernal machine|1
+(noun)|time bomb|bomb (generic term)
+infernal region|2
+(noun)|Hell|perdition|Inferno|nether region|pit|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+(noun)|Hel|Hell|Hades|netherworld|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+infernally|1
+(adv)|hellishly
+inferno|3
+(noun)|hell|hell on earth|hellhole|snake pit|the pits|region (generic term)|part (generic term)
+(noun)|conflagration|fire (generic term)
+(noun)|Hell|perdition|Inferno|infernal region|nether region|pit|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+infertile|1
+(adj)|sterile|unfertile|barren (similar term)|sterilized (similar term)|sterilised (similar term)|unfertilized (similar term)|unfertilised (similar term)|unimpregnated (similar term)|unfruitful (related term)|impotent (related term)|unproductive (related term)|fertile (antonym)
+infertility|1
+(noun)|sterility|physiological state (generic term)|physiological condition (generic term)|fertility (antonym)
+infest|3
+(verb)|overrun|invade (generic term)|occupy (generic term)
+(verb)|invade|overrun|inhabit (generic term)|occupy (generic term)
+(verb)|inhabit (generic term)|occupy (generic term)
+infestation|2
+(noun)|fullness (generic term)
+(noun)|plague|swarm (generic term)|cloud (generic term)
+infested|1
+(adj)|overrun|plagued|troubled (similar term)
+infidel|1
+(noun)|heathen|pagan|gentile|nonreligious person (generic term)
+infidelity|1
+(noun)|unfaithfulness|quality (generic term)|faithfulness (antonym)|fidelity (antonym)
+infield|1
+(noun)|baseball diamond|diamond|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|outfield (antonym)
+infielder|1
+(noun)|fielder (generic term)
+infiltrate|3
+(verb)|penetrate|join (generic term)|fall in (generic term)|get together (generic term)
+(verb)|percolate (generic term)|sink in (generic term)|permeate (generic term)|filter (generic term)
+(verb)|pass through|pass (generic term)|go through (generic term)|go across (generic term)
+infiltration|2
+(noun)|penetration (generic term)|incursion (generic term)
+(noun)|percolation|filtration (generic term)
+infiltrator|2
+(noun)|spy (generic term)|undercover agent (generic term)
+(noun)|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+infinite|5
+(adj)|boundless (similar term)|unbounded (similar term)|limitless (similar term)|dateless (similar term)|endless (similar term)|sempiternal (similar term)|endless (similar term)|inexhaustible (similar term)|unlimited (similar term)|immortal (related term)|finite (antonym)
+(adj)|non-finite|finite (antonym)
+(adj)|countless|innumerable|innumerous|multitudinous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+(adj)|absolute (similar term)
+(noun)|space|attribute (generic term)
+infinitely|2
+(adv)|boundlessly|immeasurably
+(adv)|endlessly|finitely (antonym)
+infiniteness|1
+(noun)|infinitude|unboundedness|boundlessness|limitlessness|quality (generic term)|finiteness (antonym)
+infinitesimal|2
+(adj)|minute|microscopic|small (similar term)|little (similar term)
+(noun)|variable (generic term)|variable quantity (generic term)
+infinitesimal calculus|1
+(noun)|calculus|pure mathematics (generic term)
+infinitival|1
+(adj)|verb (related term)
+infinitive|1
+(noun)|verb (generic term)
+infinitude|2
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|infiniteness|unboundedness|boundlessness|limitlessness|quality (generic term)|finiteness (antonym)
+infinity|1
+(noun)|eternity|time (generic term)
+infirm|2
+(adj)|decrepit|debile|feeble|rickety|sapless|weak|weakly|frail (similar term)
+(adj)|irresolute (similar term)
+infirmary|1
+(noun)|hospital|medical building (generic term)|health facility (generic term)|healthcare facility (generic term)
+infirmity|1
+(noun)|frailty|debility|feebleness|frailness|valetudinarianism|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+infix|3
+(noun)|affix (generic term)
+(verb)|insert|enter|introduce|attach (generic term)
+(verb)|affix (generic term)
+infix notation|1
+(noun)|mathematical notation (generic term)
+inflame|5
+(verb)|worsen (generic term)|aggravate (generic term)|exacerbate (generic term)|exasperate (generic term)
+(verb)|kindle|flare up (generic term)
+(verb)|kindle|enkindle|conflagrate|ignite (generic term)|light (generic term)
+(verb)|stir up|wake|ignite|heat|fire up|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|worsen (generic term)|decline (generic term)
+inflamed|3
+(adj)|unhealthy (similar term)
+(adj)|ablaze|reddened|light (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+inflaming|1
+(noun)|inflammation|arousal (generic term)|rousing (generic term)
+inflammability|1
+(noun)|flammability|combustibility (generic term)|combustibleness (generic term)|burnability (generic term)
+inflammable|1
+(adj)|flammable|combustible (similar term)
+inflammation|4
+(noun)|redness|rubor|symptom (generic term)
+(noun)|excitement|excitation|fervor|fervour|emotional arousal (generic term)
+(noun)|inflaming|arousal (generic term)|rousing (generic term)
+(noun)|ignition|firing|lighting|kindling|burning (generic term)|combustion (generic term)
+inflammatory|2
+(adj)|unhealthy (similar term)
+(adj)|incendiary|incitive|instigative|rabble-rousing|seditious|provocative (similar term)
+inflammatory bowel disease|1
+(noun)|colitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+inflammatory disease|1
+(noun)|disease (generic term)
+inflatable|1
+(adj)|expansive (similar term)
+inflatable cushion|1
+(noun)|air cushion|cushion (generic term)
+inflate|5
+(verb)|blow up|expand (generic term)|deflate (antonym)
+(verb)|blow up|expand|amplify|increase (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|deflate (antonym)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)|deflate (antonym)
+(verb)|balloon|billow|expand (generic term)
+inflated|4
+(adj)|exaggerated|hyperbolic|increased (similar term)
+(adj)|blown-up (similar term)|blown up (similar term)|deflated (antonym)
+(adj)|high-flown|high-sounding|pretentious (similar term)
+(adj)|raised|increased (similar term)
+inflater|1
+(noun)|inflator|air pump (generic term)|vacuum pump (generic term)
+inflation|4
+(noun)|rising prices|economic process (generic term)|deflation (antonym)|disinflation (antonym)
+(noun)|explosion (generic term)|detonation (generic term)|blowup (generic term)
+(noun)|ostentation|ostentatiousness|pomposity|pompousness|pretentiousness|puffiness|splashiness|inelegance (generic term)
+(noun)|expansion (generic term)|enlargement (generic term)|deflation (antonym)
+inflation rate|1
+(noun)|rate of inflation|rate (generic term)
+inflation therapy|1
+(noun)|therapy (generic term)
+inflationary|1
+(adj)|deflationary (antonym)
+inflationary spiral|1
+(noun)|inflation (generic term)|rising prices (generic term)
+inflator|1
+(noun)|inflater|air pump (generic term)|vacuum pump (generic term)
+inflect|2
+(verb)|modify (generic term)
+(verb)|tone|modulate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+inflected|2
+(adj)|modulated (similar term)|uninflected (antonym)
+(adj)|uninflected (antonym)
+inflection|4
+(noun)|inflexion|grammatical relation (generic term)
+(noun)|prosody|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|flection|flexion|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+(noun)|modulation|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+inflectional|1
+(adj)|derivational (antonym)
+inflectional ending|1
+(noun)|inflectional suffix|ending (generic term)|termination (generic term)
+inflectional morphology|1
+(noun)|accidence|morphology (generic term)
+inflectional suffix|1
+(noun)|inflectional ending|ending (generic term)|termination (generic term)
+inflexibility|2
+(noun)|inflexibleness|rigidity (generic term)|rigidness (generic term)|flexibility (antonym)
+(noun)|rigidity|rigidness|unadaptability (generic term)|flexibility (antonym)
+inflexible|4
+(adj)|adamant (similar term)|adamantine (similar term)|inexorable (similar term)|intransigent (similar term)|die-hard (similar term)|rock-ribbed (similar term)|fossilized (similar term)|fossilised (similar term)|ossified (similar term)|hard-core (similar term)|hardore (similar term)|ironclad (similar term)|brassbound (similar term)|flexible (antonym)
+(adj)|uncompromising|sturdy|hard-line (similar term)|hardline (similar term)|compromising (antonym)
+(adj)|muscle-bound (similar term)|rigid (similar term)|stiff (similar term)|semirigid (similar term)|inelastic (related term)|flexible (antonym)
+(adj)|rigid|unbending|unadaptable (similar term)
+inflexibleness|1
+(noun)|inflexibility|rigidity (generic term)|rigidness (generic term)|flexibility (antonym)
+inflexibly|1
+(adv)|flexibly (antonym)
+inflexion|1
+(noun)|inflection|grammatical relation (generic term)
+inflict|1
+(verb)|bring down|visit|impose|communicate (generic term)|intercommunicate (generic term)
+infliction|3
+(noun)|imposition|enforcement (generic term)
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|annoyance|bother|botheration|pain|pain in the neck|pain in the ass|negative stimulus (generic term)
+infliximab|1
+(noun)|Remicade|anti-TNF compound (generic term)
+inflorescence|2
+(noun)|blossoming|flowering|florescence|anthesis|efflorescence|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|flower (generic term)|bloom (generic term)|blossom (generic term)
+inflow|1
+(noun)|influx|flow (generic term)|efflux (antonym)|outflow (antonym)
+inflowing|1
+(adj)|influent|incoming (similar term)
+influence|8
+(noun)|power (generic term)|powerfulness (generic term)
+(noun)|causing (generic term)|causation (generic term)
+(noun)|determinant (generic term)|determiner (generic term)|determinative (generic term)|determining factor (generic term)|causal factor (generic term)
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|power (generic term)|force (generic term)
+(verb)|act upon|work|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|determine|shape|mold|regulate|cause (generic term)|do (generic term)|make (generic term)
+(verb)|charm|tempt|persuade (generic term)
+influence peddler|1
+(noun)|fixer|important person (generic term)|influential person (generic term)|personage (generic term)
+influent|1
+(adj)|inflowing|incoming (similar term)
+influential|1
+(adj)|authoritative (similar term)|important (similar term)|potent (similar term)|powerful (similar term)|prestigious (similar term)|uninfluential (antonym)
+influential person|1
+(noun)|important person|personage|adult (generic term)|grownup (generic term)
+influenza|1
+(noun)|flu|grippe|contagious disease (generic term)|contagion (generic term)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+influx|1
+(noun)|inflow|flow (generic term)|efflux (antonym)|outflow (antonym)
+info|1
+(noun)|information|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+infolding|1
+(noun)|invagination|introversion|intussusception|organic process (generic term)|biological process (generic term)
+infomercial|1
+(noun)|informercial|commercial (generic term)|commercial message (generic term)
+inform|3
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|inform (generic term)
+informal|4
+(adj)|casual (similar term)|everyday (similar term)|free-and-easy (similar term)|casual (similar term)|folksy (similar term)|unceremonious (similar term)|unceremonial (similar term)|informal (related term)|formal (antonym)
+(adj)|loose|unofficial (similar term)
+(adj)|colloquial (similar term)|conversational (similar term)|common (similar term)|vernacular (similar term)|vulgar (similar term)|epistolary (similar term)|epistolatory (similar term)|slangy (similar term)|subliterary (similar term)|unliterary (similar term)|nonliterary (similar term)|informal (related term)|unrhetorical (related term)|formal (antonym)
+(adj)|cozy|intimate|friendly (similar term)
+informality|2
+(noun)|manner (generic term)|personal manner (generic term)|formality (antonym)
+(noun)|ease|naturalness (generic term)
+informally|3
+(adv)|formally (antonym)
+(adv)|colloquially|conversationally
+(adv)|en famille
+informant|2
+(noun)|source|communicator (generic term)
+(noun)|witness|witnesser|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+informatics|1
+(noun)|information science|information processing|IP|science (generic term)|scientific discipline (generic term)
+information|5
+(noun)|info|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|data|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|selective information|entropy|information measure (generic term)
+(noun)|accusation (generic term)|accusal (generic term)
+information age|1
+(noun)|modern era (generic term)
+information bulletin|1
+(noun)|bulletin (generic term)
+information gathering|1
+(noun)|operation (generic term)|military operation (generic term)
+information measure|1
+(noun)|system of measurement (generic term)|metric (generic term)
+information processing|1
+(noun)|information science|informatics|IP|science (generic term)|scientific discipline (generic term)
+information processing system|1
+(noun)|computer|computing machine|computing device|data processor|electronic computer|machine (generic term)
+information return|1
+(noun)|tax return (generic term)|income tax return (generic term)|return (generic term)
+information science|1
+(noun)|informatics|information processing|IP|science (generic term)|scientific discipline (generic term)
+information superhighway|1
+(noun)|superhighway|network (generic term)|electronic network (generic term)
+information system|1
+(noun)|data system|system (generic term)
+information technology|1
+(noun)|IT|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+information theory|1
+(noun)|scientific theory (generic term)
+information warfare|1
+(noun)|IW|war (generic term)|warfare (generic term)
+informational|1
+(adj)|cognition|knowledge|noesis (related term)
+informational rna|1
+(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid (generic term)|RNA (generic term)
+informative|3
+(adj)|enlightening|illuminating|unenlightening (antonym)
+(adj)|instructive|clarifying (similar term)|elucidative (similar term)|demonstrative (similar term)|illustrative (similar term)|didactic (similar term)|didactical (similar term)|doctrinaire (similar term)|educative (similar term)|educational (similar term)|explanatory (similar term)|expository (similar term)|expositive (similar term)|interpretative (similar term)|interpretive (similar term)|ostensive (similar term)|preachy (similar term)|informative (related term)|informatory (related term)|uninstructive (antonym)
+(adj)|informatory|advisory (similar term)|consultative (similar term)|consultatory (similar term)|consultive (similar term)|exemplifying (similar term)|illustrative (similar term)|newsy (similar term)|revealing (similar term)|telling (similar term)|telltale (similar term)|instructive (related term)|informative (related term)|uninformative (antonym)
+informatively|1
+(adv)|instructively|uninstructively (antonym)|uninformatively (antonym)
+informatory|1
+(adj)|informative|advisory (similar term)|consultative (similar term)|consultatory (similar term)|consultive (similar term)|exemplifying (similar term)|illustrative (similar term)|newsy (similar term)|revealing (similar term)|telling (similar term)|telltale (similar term)|instructive (related term)|informative (related term)|uninformative (antonym)
+informed|1
+(adj)|abreast (similar term)|au courant (similar term)|au fait (similar term)|up on (similar term)|advised (similar term)|conversant (similar term)|familiar (similar term)|educated (similar term)|enlightened (similar term)|hep (similar term)|hip (similar term)|hip to (similar term)|knowing (similar term)|wise (similar term)|wise to (similar term)|knowledgeable (similar term)|knowing (similar term)|privy (similar term)|well-read (similar term)|educated (related term)|enlightened (related term)|sophisticated (related term)|uninformed (antonym)
+informed consent|1
+(noun)|consent (generic term)
+informer|1
+(noun)|betrayer|rat|squealer|blabber|informant (generic term)|source (generic term)
+informer's privilege|1
+(noun)|privilege (generic term)
+informercial|1
+(noun)|infomercial|commercial (generic term)|commercial message (generic term)
+informing|2
+(noun)|ratting|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(noun)|making known|speech act (generic term)
+infotainment|1
+(noun)|documentary|docudrama|documentary film|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+infra|1
+(adv)|below
+infra dig|1
+(adj)|undignified (similar term)
+infract|1
+(verb)|transgress|offend|violate|go against|breach|break|disrespect (generic term)|keep (antonym)
+infraction|1
+(noun)|misdemeanor|misdemeanour|offence|offense|violation|infringement|crime (generic term)|law-breaking (generic term)
+infrahuman|1
+(adj)|subhuman (similar term)
+inframaxillary|1
+(adj)|mandibular|jaw|articulator (related term)
+infrangible|2
+(adj)|unbreakable (similar term)
+(adj)|absolute|inviolable|inalienable (similar term)|unalienable (similar term)
+infraorbital artery|1
+(noun)|arteria infraorbitalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+infrared|3
+(adj)|invisible (similar term)|unseeable (similar term)
+(noun)|infrared frequency|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+(noun)|infrared light|infrared radiation|infrared emission|actinic radiation (generic term)|actinic ray (generic term)
+infrared emission|1
+(noun)|infrared|infrared light|infrared radiation|actinic radiation (generic term)|actinic ray (generic term)
+infrared frequency|1
+(noun)|infrared|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+infrared lamp|1
+(noun)|heat lamp|electric heater (generic term)|electric fire (generic term)
+infrared light|1
+(noun)|infrared|infrared radiation|infrared emission|actinic radiation (generic term)|actinic ray (generic term)
+infrared radiation|1
+(noun)|infrared|infrared light|infrared emission|actinic radiation (generic term)|actinic ray (generic term)
+infrared ray|1
+(noun)|heat ray (generic term)
+infrared spectrum|1
+(noun)|spectrum (generic term)
+infrared therapy|1
+(noun)|therapy (generic term)
+infrasonic|1
+(adj)|inaudible (similar term)|unhearable (similar term)
+infrastructure|2
+(noun)|substructure|structure (generic term)
+(noun)|base|store (generic term)|stock (generic term)|fund (generic term)
+infrequency|1
+(noun)|rarity|rareness|scarcity (generic term)|scarceness (generic term)
+infrequent|1
+(adj)|occasional (similar term)|rare (similar term)|sporadic (related term)|frequent (antonym)
+infrequently|1
+(adv)|frequently (antonym)
+infrigidation|1
+(noun)|refrigeration|cooling (generic term)|chilling (generic term)|temperature reduction (generic term)|preservation (generic term)
+infringe|2
+(verb)|conflict|run afoul|contravene|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|encroach|impinge|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+infringement|2
+(noun)|violation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|misdemeanor|misdemeanour|infraction|offence|offense|violation|crime (generic term)|law-breaking (generic term)
+infringement of copyright|1
+(noun)|copyright infringement|violation (generic term)|infringement (generic term)
+infructescence|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+infundibulum|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+infuriate|1
+(verb)|exasperate|incense|anger (generic term)
+infuriated|1
+(adj)|angered|enraged|furious|maddened|angry (similar term)
+infuriating|1
+(adj)|exasperating|maddening|vexing|displeasing (similar term)
+infuriation|1
+(noun)|enragement|anger (generic term)|choler (generic term)|ire (generic term)
+infuscate|1
+(verb)|discolor (generic term)
+infuse|5
+(verb)|inculcate|instill|drill (generic term)
+(verb)|impregnate|instill|tincture|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|steep (generic term)|infuse (generic term)
+(verb)|steep|soak (generic term)|imbue (generic term)
+(verb)|inject (generic term)|shoot (generic term)
+infusion|4
+(noun)|extract|solution (generic term)
+(noun)|extraction (generic term)
+(noun)|instillation (generic term)|instillment (generic term)|instilment (generic term)
+(noun)|change of state (generic term)
+infusoria|1
+(noun)|Infusoria|subclass Infusoria|class (generic term)
+infusorian|1
+(noun)|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+inga|1
+(noun)|tree (generic term)
+inga edulis|1
+(noun)|ice-cream bean|Inga edulis|tree (generic term)
+inga laurina|1
+(noun)|guama|Inga laurina|tree (generic term)
+ingathering|1
+(noun)|solicitation|appeal|collection|request (generic term)|petition (generic term)|postulation (generic term)
+inge|2
+(noun)|Inge|William Ralph Inge|Gloomy Dean|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+(noun)|Inge|William Inge|dramatist (generic term)|playwright (generic term)
+ingeminate|1
+(verb)|repeat|reiterate|iterate|restate|retell|tell (generic term)
+ingenious|3
+(adj)|imaginative|inventive|creative (similar term)|originative (similar term)
+(adj)|adroit|clever|artful (similar term)
+(adj)|clever|cunning|adroit (similar term)
+ingeniousness|2
+(noun)|inventiveness|ingenuity|cleverness|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|ingenuity|cleverness|superiority (generic term)|high quality (generic term)
+ingenue|3
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|juvenile (generic term)|juvenile person (generic term)
+(noun)|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+ingenuity|2
+(noun)|inventiveness|ingeniousness|cleverness|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|ingeniousness|cleverness|superiority (generic term)|high quality (generic term)
+ingenuous|2
+(adj)|artless|candid (similar term)|open (similar term)|heart-to-heart (similar term)|undistorted (similar term)|naive (related term)|naif (related term)|sincere (related term)|disingenuous (antonym)
+(adj)|innocent|naive (similar term)|naif (similar term)
+ingenuously|1
+(adv)|artlessly
+ingenuousness|2
+(noun)|artlessness|innocence|naturalness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|candor (generic term)|candour (generic term)|candidness (generic term)|frankness (generic term)|directness (generic term)|forthrightness (generic term)|disingenuousness (antonym)
+inger|1
+(noun)|Ingrian|Inger|Ingerman|Russian (generic term)
+ingerman|1
+(noun)|Ingrian|Inger|Ingerman|Russian (generic term)
+ingest|2
+(verb)|consume|take in|take|have|take up (related term)|abstain (antonym)
+(verb)|absorb|assimilate|take in|learn (generic term)|larn (generic term)|acquire (generic term)
+ingesta|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+ingestion|1
+(noun)|consumption|intake|uptake|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+inglenook|1
+(noun)|chimney corner|corner (generic term)|nook (generic term)
+inglorious|2
+(adj)|black|disgraceful|ignominious|opprobrious|shameful|dishonorable (similar term)|dishonourable (similar term)
+(adj)|dishonorable|obscure (similar term)|unknown (similar term)|unsung (similar term)|dishonorable (related term)|dishonourable (related term)|unknown (related term)|glorious (antonym)
+ingloriously|1
+(adv)|disgracefully|ignominiously|discreditably|shamefully|dishonorably|dishonourably
+ingmar bergman|1
+(noun)|Bergman|Ingmar Bergman|film director (generic term)|director (generic term)
+ingot|1
+(noun)|metal bar|block of metal|block (generic term)
+ingot iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+ingraft|1
+(verb)|graft|engraft|join (generic term)|conjoin (generic term)
+ingrain|2
+(verb)|grain|penetrate (generic term)|perforate (generic term)
+(verb)|impress|instill|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+ingrained|1
+(adj)|deep-rooted|deep-seated|implanted|planted|established (similar term)|constituted (similar term)
+ingraining|1
+(noun)|inculcation|instilling|indoctrination (generic term)
+ingrate|1
+(noun)|thankless wretch|ungrateful person|unwelcome person (generic term)|persona non grata (generic term)
+ingratiate|1
+(verb)|manipulate (generic term)|keep in line (generic term)|control (generic term)
+ingratiating|2
+(adj)|pleasing (similar term)
+(adj)|insinuating|ingratiatory|flattering (similar term)
+ingratiation|1
+(noun)|insinuation|blandishment (generic term)|wheedling (generic term)
+ingratiatory|2
+(adj)|coaxing|persuasive (similar term)
+(adj)|ingratiating|insinuating|flattering (similar term)
+ingratitude|1
+(noun)|ungratefulness|feeling (generic term)|gratitude (antonym)
+ingredient|3
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|component|constituent|element|factor|part (generic term)|section (generic term)|division (generic term)
+(noun)|fixings|foodstuff (generic term)|food product (generic term)
+ingres|1
+(noun)|Ingres|Jean Auguste Dominique Ingres|painter (generic term)
+ingress|2
+(noun)|immersion|disappearance (generic term)|emersion (antonym)|egress (antonym)
+(noun)|entrance|entering|entry|incoming|arrival (generic term)
+ingrian|2
+(noun)|Ingrian|Inger|Ingerman|Russian (generic term)
+(noun)|Ingrian|Baltic-Finnic (generic term)
+ingrid bergman|1
+(noun)|Bergman|Ingrid Bergman|actress (generic term)
+ingroup|1
+(noun)|clique|coterie|inner circle|pack|camp|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+ingrowing|1
+(adj)|ingrown|unhealthy (similar term)
+ingrown|1
+(adj)|ingrowing|unhealthy (similar term)
+ingrown hair|1
+(noun)|hair (generic term)|pilus (generic term)
+ingrown toenail|1
+(noun)|onyxis|toenail (generic term)
+ingrowth|1
+(noun)|growth (generic term)
+inguen|1
+(noun)|groin|area (generic term)|region (generic term)
+inguinal|1
+(adj)|area|region (related term)
+inguinal canal|1
+(noun)|canalis inguinalis|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+inguinal hernia|1
+(noun)|hernia (generic term)|herniation (generic term)
+ingurgitate|1
+(verb)|gorge|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+inh|1
+(noun)|isoniazid|INH|Nydrazid|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+inhabit|2
+(verb)|dwell|live|be (generic term)|live in (related term)|live out (related term)
+(verb)|occupy|be (generic term)
+inhabitable|1
+(adj)|habitable|livable (similar term)|liveable (similar term)
+inhabitancy|1
+(noun)|inhabitation|habitation|occupancy (generic term)|tenancy (generic term)
+inhabitant|1
+(noun)|habitant|dweller|denizen|indweller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+inhabitation|1
+(noun)|inhabitancy|habitation|occupancy (generic term)|tenancy (generic term)
+inhabited|1
+(adj)|colonized (similar term)|colonised (similar term)|settled (similar term)|haunted (similar term)|occupied (similar term)|tenanted (similar term)|owner-occupied (similar term)|peopled (similar term)|populated (similar term)|populous (similar term)|thickly settled (similar term)|rock-inhabiting (similar term)|underpopulated (similar term)|uninhabited (antonym)
+inhalant|3
+(adj)|breath (related term)
+(noun)|gas (generic term)
+(noun)|inhalation|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+inhalation|2
+(noun)|inspiration|aspiration|breathing in|breath (generic term)
+(noun)|inhalant|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+inhalation anaesthetic|1
+(noun)|inhalation anesthetic|inhalation general anesthetic|inhalation general anaesthetic|general anesthetic (generic term)|general anaesthetic (generic term)
+inhalation anesthesia|1
+(noun)|general anesthesia (generic term)|general anaesthesia (generic term)
+inhalation anesthetic|1
+(noun)|inhalation anaesthetic|inhalation general anesthetic|inhalation general anaesthetic|general anesthetic (generic term)|general anaesthetic (generic term)
+inhalation anthrax|1
+(noun)|pulmonary anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax (generic term)
+inhalation general anaesthetic|1
+(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anesthetic|general anesthetic (generic term)|general anaesthetic (generic term)
+inhalation general anesthetic|1
+(noun)|inhalation anesthetic|inhalation anaesthetic|inhalation general anaesthetic|general anesthetic (generic term)|general anaesthetic (generic term)
+inhalator|2
+(noun)|respirator|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+(noun)|inhaler|dispenser (generic term)
+inhale|2
+(verb)|smoke (generic term)
+(verb)|inspire|breathe in|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|exhale (antonym)
+inhaler|1
+(noun)|inhalator|dispenser (generic term)
+inharmonic|1
+(adj)|discordant|disharmonious|dissonant|inharmonious (similar term)|unharmonious (similar term)
+inharmonious|2
+(adj)|unharmonious|discordant (similar term)|disharmonious (similar term)|dissonant (similar term)|inharmonic (similar term)|false (similar term)|off-key (similar term)|sour (similar term)|unresolved (similar term)|dissonant (similar term)|incompatible (related term)|harmonious (antonym)
+(adj)|incongruous (similar term)
+inharmoniousness|1
+(noun)|disharmony|dissonance (generic term)
+inhere|1
+(verb)|dwell (generic term)|consist (generic term)|lie (generic term)|belong (generic term)|lie in (generic term)
+inhere in|1
+(verb)|attach to|include (generic term)
+inherence|1
+(noun)|inherency|presence (generic term)
+inherency|1
+(noun)|inherence|presence (generic term)
+inherent|2
+(adj)|built-in|constitutional|inbuilt|integral|intrinsic (similar term)|intrinsical (similar term)
+(adj)|implicit in|underlying|implicit (similar term)|inexplicit (similar term)
+inherent aptitude|1
+(noun)|instinct|aptitude (generic term)
+inherit|2
+(verb)|come into|get (generic term)|acquire (generic term)
+(verb)|receive (generic term)|have (generic term)
+inheritable|1
+(adj)|heritable|ancestral (similar term)|hereditary (similar term)|patrimonial (similar term)|transmissible (similar term)|familial (similar term)|genetic (similar term)|hereditary (similar term)|inherited (similar term)|transmitted (similar term)|transmissible (similar term)|monogenic (similar term)|polygenic (similar term)|inheriting (similar term)|nee (similar term)|noninheritable (antonym)
+inheritance|4
+(noun)|heritage|acquisition (generic term)
+(noun)|heritage|transferred property (generic term)|transferred possession (generic term)
+(noun)|hereditary pattern|heredity (generic term)|genetic endowment (generic term)
+(noun)|heritage|attribute (generic term)
+inheritance tax|1
+(noun)|estate tax|death tax|death duty|transfer tax (generic term)
+inherited|1
+(adj)|familial|genetic|hereditary|transmitted|transmissible|inheritable (similar term)|heritable (similar term)
+inherited disease|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disorder|hereditary disease|hereditary condition|disease (generic term)
+inherited disorder|1
+(noun)|genetic disease|genetic disorder|genetic abnormality|genetic defect|congenital disease|inherited disease|hereditary disease|hereditary condition|disease (generic term)
+inherited wealth|1
+(noun)|wealth (generic term)|wealthiness (generic term)
+inheriting|1
+(adj)|inheritable (similar term)|heritable (similar term)
+inheritor|1
+(noun)|heir|heritor|recipient (generic term)|receiver (generic term)
+inheritress|1
+(noun)|heiress|inheritrix|heir (generic term)|inheritor (generic term)|heritor (generic term)
+inheritrix|1
+(noun)|heiress|inheritress|heir (generic term)|inheritor (generic term)|heritor (generic term)
+inhibit|2
+(verb)|suppress|stamp down|subdue|conquer|curb|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+inhibited|1
+(adj)|pent-up (similar term)|repressed (similar term)|smothered (similar term)|stifled (similar term)|strangled (similar term)|suppressed (similar term)|reserved (related term)|restrained (related term)|uninhibited (antonym)
+inhibition|4
+(noun)|suppression|abstinence (generic term)
+(noun)|restraint (generic term)|control (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|prohibition|forbiddance|action (generic term)
+inhibitor|1
+(noun)|substance (generic term)|matter (generic term)|activator (antonym)
+inhibitory|1
+(adj)|repressive|repressing|restrictive (similar term)
+inhomogeneity|1
+(noun)|irregularity (generic term)|unregularity (generic term)
+inhomogeneous|1
+(adj)|nonuniform|heterogeneous (similar term)|heterogenous (similar term)
+inhospitable|2
+(adj)|bare (similar term)|barren (similar term)|bleak (similar term)|desolate (similar term)|stark (similar term)|desert (similar term)|godforsaken (similar term)|waste (similar term)|wild (similar term)|hostile (similar term)|uncongenial (similar term)|unfriendly (similar term)|water-washed (similar term)|windswept (similar term)|hospitable (antonym)
+(adj)|unfriendly (related term)|hospitable (antonym)
+inhospitableness|2
+(noun)|environmental condition (generic term)
+(noun)|unfriendliness (generic term)|hospitableness (antonym)
+inhospitably|1
+(adv)|hospitably (antonym)
+inhospitality|1
+(noun)|welcome (generic term)|hospitality (antonym)
+inhuman|2
+(adj)|cold|cold-blooded|insensate|inhumane (similar term)
+(adj)|nonhuman (similar term)
+inhuman treatment|1
+(noun)|cruelty|maltreatment (generic term)|ill-treatment (generic term)|ill-usage (generic term)|abuse (generic term)
+inhumane|1
+(adj)|barbarous (similar term)|brutal (similar term)|cruel (similar term)|fell (similar term)|roughshod (similar term)|savage (similar term)|vicious (similar term)|beastly (similar term)|bestial (similar term)|brute (similar term)|brutish (similar term)|brutal (similar term)|cruel (similar term)|cannibalic (similar term)|cold (similar term)|cold-blooded (similar term)|inhuman (similar term)|insensate (similar term)|pitiless (similar term)|unkind (similar term)|painful (related term)|humane (antonym)
+inhumanely|1
+(adv)|humanely (antonym)
+inhumaneness|1
+(noun)|inhumanity|quality (generic term)|humaneness (antonym)
+inhumanity|2
+(noun)|inhumaneness|quality (generic term)|humaneness (antonym)
+(noun)|atrocity|cruelty (generic term)|inhuman treatment (generic term)
+inhumation|1
+(noun)|burial|entombment|interment|sepulture|funeral (generic term)
+inhume|1
+(verb)|bury|entomb|inter|lay to rest|lay (generic term)|put down (generic term)|repose (generic term)
+inhumed|1
+(adj)|buried|interred|belowground (similar term)|unburied (antonym)
+inigo jones|1
+(noun)|Jones|Inigo Jones|architect (generic term)|designer (generic term)
+inimical|1
+(adj)|unfriendly|hostile (similar term)
+inimitable|1
+(adj)|unreproducible (similar term)|irreproducible (similar term)
+inimitably|1
+(adv)|unreproducibly
+inion|1
+(noun)|craniometric point (generic term)
+iniquitous|1
+(adj)|sinful|ungodly|wicked (similar term)
+iniquity|3
+(noun)|wickedness|darkness|dark|condition (generic term)|status (generic term)
+(noun)|evil|immorality|wickedness|transgression (generic term)|evildoing (generic term)
+(noun)|injustice|unfairness|shabbiness|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+initial|3
+(adj)|first (similar term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(verb)|sign (generic term)
+initial offering|1
+(noun)|initial public offering|IPO|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+initial public offering|1
+(noun)|IPO|initial offering|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+initial rhyme|1
+(noun)|alliteration|beginning rhyme|head rhyme|rhyme (generic term)|rime (generic term)
+initialisation|1
+(noun)|low-level formatting|initialization|format (generic term)|formatting (generic term)|data format (generic term)|data formatting (generic term)
+initialise|2
+(verb)|initialize|determine (generic term)|set (generic term)
+(verb)|format|initialize|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+initialization|1
+(noun)|low-level formatting|initialisation|format (generic term)|formatting (generic term)|data format (generic term)|data formatting (generic term)
+initialize|2
+(verb)|initialise|determine (generic term)|set (generic term)
+(verb)|format|initialise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+initially|1
+(adv)|ab initio|at first|at the start
+initiate|8
+(noun)|novice|beginner|tyro|tiro|unskilled person (generic term)
+(noun)|learned person|pundit|savant|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|enlightened|people (generic term)|uninitiate (antonym)
+(verb)|originate|start|make (generic term)|create (generic term)|originate in (related term)
+(verb)|pioneer|cause (generic term)|do (generic term)|make (generic term)
+(verb)|induct|admit (generic term)|let in (generic term)|include (generic term)
+(verb)|broach|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|lead up|originate (generic term)|initiate (generic term)|start (generic term)
+initiation|4
+(noun)|induction|installation|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|founding|foundation|institution|origination|creation|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|knowledgeability|knowledgeableness|wisdom (generic term)|wiseness (generic term)
+(noun)|trigger|induction|causing (generic term)|causation (generic term)
+initiative|3
+(adj)|inaugural|initiatory|first|maiden|opening (similar term)
+(noun)|enterprise|enterprisingness|go-ahead|drive (generic term)
+(noun)|first step|opening move|opening|beginning (generic term)|start (generic term)|commencement (generic term)
+initiator|1
+(noun)|instigator|leader (generic term)
+initiatory|1
+(adj)|inaugural|initiative|first|maiden|opening (similar term)
+inject|6
+(verb)|shoot|administer (generic term)|dispense (generic term)
+(verb)|add (generic term)
+(verb)|shoot|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|drug (generic term)|do drugs (generic term)
+(verb)|feed (generic term)|give (generic term)
+(verb)|interject|come in|interpose|put in|throw in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+injectable|1
+(adj)|uninjectable (antonym)
+injectant|1
+(noun)|injection|solution (generic term)
+injection|3
+(noun)|insertion (generic term)|introduction (generic term)|intromission (generic term)
+(noun)|injectant|solution (generic term)
+(noun)|shot|medical care (generic term)|medical aid (generic term)
+injector|1
+(noun)|appliance (generic term)|contraption (generic term)|contrivance (generic term)|convenience (generic term)|gadget (generic term)|gizmo (generic term)|gismo (generic term)|widget (generic term)
+injudicious|1
+(adj)|imprudent (similar term)
+injudiciously|1
+(adv)|judiciously (antonym)
+injudiciousness|2
+(noun)|indiscreetness|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)|judiciousness (antonym)
+(noun)|indiscretion|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+injun|1
+(noun)|Redskin|Injun|red man|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+injunction|2
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|enjoining|enjoinment|cease and desist order|prohibition (generic term)|ban (generic term)|proscription (generic term)
+injure|3
+(verb)|wound|hurt (generic term)
+(verb)|hurt|wound|bruise|offend|spite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|hurt|damage (generic term)
+injured|1
+(adj)|battle-scarred (similar term)|black-and-blue (similar term)|livid (similar term)|blistered (similar term)|bruised (similar term)|contused (similar term)|contusioned (similar term)|burned (similar term)|cut (similar term)|gashed (similar term)|slashed (similar term)|disabled (similar term)|hors de combat (similar term)|out of action (similar term)|disjointed (similar term)|dislocated (similar term)|separated (similar term)|eviscerate (similar term)|harmed (similar term)|hurt (similar term)|wounded (similar term)|lacerate (similar term)|lacerated (similar term)|mangled (similar term)|torn (similar term)|maimed (similar term)|mutilated (similar term)|raw (similar term)|stabbed (similar term)|broken (related term)|damaged (related term)|impaired (related term)|unsound (related term)|uninjured (antonym)
+injured party|1
+(noun)|casualty|victim (generic term)
+injurious|2
+(adj)|deleterious|hurtful|harmful (similar term)
+(adj)|evil|harmful|malign (similar term)
+injuriousness|1
+(noun)|harmfulness|destructiveness (generic term)
+injury|4
+(noun)|hurt|harm|trauma|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|accidental injury|accident (generic term)
+(noun)|wound|combat injury|personnel casualty (generic term)|loss (generic term)
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+injustice|2
+(noun)|unfairness|iniquity|shabbiness|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|unjustness|unrighteousness (generic term)|justice (antonym)
+ink|4
+(noun)|liquid (generic term)
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+(verb)|sign (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+ink-black|1
+(adj)|inky|inky-black|achromatic (similar term)
+ink-jet|1
+(adj)|dot matrix printer|matrix printer|dot printer (related term)
+ink-jet printer|1
+(noun)|dot matrix printer (generic term)|matrix printer (generic term)|dot printer (generic term)
+ink bottle|1
+(noun)|inkpot|bottle (generic term)
+ink cartridge|1
+(noun)|cartridge (generic term)
+ink eraser|1
+(noun)|eraser (generic term)
+inka|1
+(noun)|Inca|Inka|Incan|Quechua (generic term)|Kechua (generic term)
+inkberry|1
+(noun)|gallberry|gall-berry|evergreen winterberry|Ilex glabra|holly (generic term)
+inkblot|1
+(noun)|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+inkblot test|1
+(noun)|Rorschach|Rorschach test|projective test (generic term)|projective device (generic term)|projective technique (generic term)
+inkiness|1
+(noun)|black|blackness|achromatic color (generic term)|achromatic colour (generic term)|white (antonym)
+inking pad|1
+(noun)|pad|inkpad|stamp pad|block (generic term)
+inkle|1
+(noun)|tape (generic term)
+inkling|1
+(noun)|intimation|glimmering|glimmer|suggestion (generic term)
+inkpad|1
+(noun)|pad|inking pad|stamp pad|block (generic term)
+inkpot|1
+(noun)|ink bottle|bottle (generic term)
+inkstand|2
+(noun)|inkwell|well (generic term)
+(noun)|tray (generic term)
+inkwell|1
+(noun)|inkstand|well (generic term)
+inky|1
+(adj)|ink-black|inky-black|achromatic (similar term)
+inky-black|1
+(adj)|ink-black|inky|achromatic (similar term)
+inky-cap mushroom|1
+(noun)|inky cap|Coprinus atramentarius|agaric (generic term)
+inky cap|1
+(noun)|inky-cap mushroom|Coprinus atramentarius|agaric (generic term)
+inla|1
+(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+inlaid|1
+(adj)|adorned (similar term)|decorated (similar term)
+inland|1
+(adj)|interior (similar term)|midland (similar term)|upcountry (similar term)|landlocked (similar term)|coastal (antonym)
+inland bill|1
+(noun)|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+inland passage|1
+(noun)|Inland Passage|Inside Passage|waterway (generic term)
+inland revenue|1
+(noun)|Inland Revenue|IR|administrative unit (generic term)|administrative body (generic term)
+inland sea|1
+(noun)|Inland Sea|sea (generic term)
+inlay|3
+(noun)|filling (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+inlet|1
+(noun)|recess|body of water (generic term)|water (generic term)
+inlet manifold|1
+(noun)|manifold (generic term)
+inmarriage|1
+(noun)|endogamy|intermarriage|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)|exogamy (antonym)
+inmarry|1
+(verb)|marry (generic term)|get married (generic term)|wed (generic term)|conjoin (generic term)|hook up with (generic term)|get hitched with (generic term)|espouse (generic term)
+inmate|3
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+(noun)|inpatient|patient (generic term)|outpatient (antonym)
+(noun)|convict|con|jail bird|jailbird|gaolbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+inmost|2
+(adj)|innermost|inward (similar term)
+(adj)|innermost|inner (similar term)
+inn|1
+(noun)|hostel|hostelry|lodge|auberge|hotel (generic term)
+innards|1
+(noun)|viscera|entrails|internal organ (generic term)|viscus (generic term)
+innate|3
+(adj)|unconditioned|unlearned|naive (similar term)|conditioned (antonym)
+(adj)|natural|born|intelligent (similar term)
+(adj)|congenital|inborn|noninheritable (similar term)|nonheritable (similar term)
+innate immunity|1
+(noun)|natural immunity|immunity (generic term)|resistance (generic term)
+innate reflex|1
+(noun)|reflex|instinctive reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction (generic term)|response (generic term)
+innateness|1
+(noun)|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)
+inner|6
+(adj)|interior|internal|inward (similar term)
+(adj)|central (similar term)|inmost (similar term)|innermost (similar term)|inside (similar term)|outer (antonym)
+(adj)|internal|intimate|intrinsic (similar term)|intrinsical (similar term)
+(adj)|inside|privileged|exclusive (similar term)
+(adj)|exclusive (similar term)
+(adj)|internal (similar term)
+inner circle|1
+(noun)|clique|coterie|ingroup|pack|camp|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+inner city|1
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+inner ear|1
+(noun)|internal ear|labyrinth|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+inner hebrides|1
+(noun)|Inner Hebrides|archipelago (generic term)
+inner light|1
+(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+inner mongolia|1
+(noun)|Inner Mongolia|Nei Monggol|state (generic term)|province (generic term)
+inner product|1
+(noun)|scalar product|dot product|real number (generic term)|real (generic term)
+inner resource|1
+(noun)|resource (generic term)
+inner tube|1
+(noun)|tube (generic term)|tubing (generic term)
+innermost|2
+(adj)|inmost|inward (similar term)
+(adj)|inmost|inner (similar term)
+innersole|1
+(noun)|insole|sole (generic term)
+innervate|2
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|stimulate (generic term)|excite (generic term)
+innervation|2
+(noun)|excitation|irritation|arousal (generic term)
+(noun)|distribution (generic term)|dispersion (generic term)
+inning|1
+(noun)|frame|playing period (generic term)|period of play (generic term)|play (generic term)
+innings|1
+(noun)|turn (generic term)|play (generic term)
+innkeeper|1
+(noun)|host|boniface|patron (generic term)
+innocence|3
+(noun)|artlessness|ingenuousness|naturalness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|purity|pureness|sinlessness|whiteness|condition (generic term)|status (generic term)
+(noun)|condition (generic term)|status (generic term)|guilt (antonym)
+innocency|1
+(noun)|artlessness (generic term)|innocence (generic term)|ingenuousness (generic term)|naturalness (generic term)
+innocense|1
+(noun)|purple chinese houses|Collinsia bicolor|Collinsia heterophylla|wildflower (generic term)|wild flower (generic term)
+innocent|8
+(adj)|guiltless|clean-handed|absolved (similar term)|clear (similar term)|cleared (similar term)|exculpated (similar term)|exonerated (similar term)|vindicated (similar term)|acquitted (similar term)|not guilty (similar term)|blameless (similar term)|inculpable (similar term)|irreproachable (similar term)|unimpeachable (similar term)|exculpatory (related term)|righteous (related term)|guilty (antonym)
+(adj)|innocuous|harmless (similar term)
+(adj)|impeccant|sinless|virtuous (similar term)
+(adj)|ingenuous|naive (similar term)|naif (similar term)
+(adj)|unacquainted|uninformed (similar term)
+(adj)|barren|destitute|devoid|empty (similar term)
+(adj)|unconscious (similar term)
+(noun)|inexperienced person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+innocent iii|1
+(noun)|Innocent III|Lotario di Segni|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+innocent viii|1
+(noun)|Innocent VIII|Giovanni Battista Cibo|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+innocent xi|1
+(noun)|Innocent XI|Benedetto Odescalchi|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+innocent xii|1
+(noun)|Innocent XII|Antonio Pignatelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+innocents' day|1
+(noun)|Holy Innocents' Day|Innocents' Day|Christian holy day (generic term)
+innocuous|4
+(adj)|harmless|innoxious (similar term)|inoffensive (similar term)|uncontroversial (similar term)|insipid (similar term)|harmless (related term)|noxious (antonym)
+(adj)|harmless|safe (similar term)
+(adj)|unobjectionable|inoffensive (similar term)
+(adj)|innocent|harmless (similar term)
+innominate artery|1
+(noun)|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+innominate bone|1
+(noun)|hipbone|bone (generic term)|os (generic term)
+innominate vein|1
+(noun)|brachiocephalic vein|vena brachiocephalica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+innovate|1
+(verb)|introduce|initiate (generic term)|pioneer (generic term)
+innovation|3
+(noun)|invention|creation (generic term)
+(noun)|invention|excogitation|conception|design|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|initiation|founding|foundation|institution|origination|creation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+innovational|1
+(adj)|innovative|groundbreaking|original (similar term)
+innovative|2
+(adj)|advanced|forward-looking|modern|progressive (similar term)
+(adj)|innovational|groundbreaking|original (similar term)
+innovativeness|1
+(noun)|originality (generic term)
+innovator|1
+(noun)|pioneer|trailblazer|groundbreaker|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+innoxious|1
+(adj)|innocuous (similar term)|harmless (similar term)
+innsbruck|1
+(noun)|Innsbruck|city (generic term)|metropolis (generic term)|urban center (generic term)
+innuendo|1
+(noun)|insinuation|implication (generic term)
+innumerable|1
+(adj)|countless|infinite|innumerous|multitudinous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+innumerableness|1
+(noun)|countlessness|number (generic term)|figure (generic term)
+innumerate|1
+(adj)|educated (related term)|numerate (antonym)
+innumerous|1
+(adj)|countless|infinite|innumerable|multitudinous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+inocor|1
+(noun)|amrinone|Inocor|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+inoculant|1
+(noun)|inoculum|substance (generic term)|matter (generic term)
+inoculate|5
+(verb)|inform (generic term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|immunize|immunise|vaccinate|inject (generic term)|shoot (generic term)
+(verb)|propagate (generic term)
+(verb)|impregnate (generic term)
+inoculating|1
+(noun)|vaccinating|protection (generic term)
+inoculation|1
+(noun)|vaccination|immunization (generic term)|immunisation (generic term)
+inoculator|1
+(noun)|vaccinator|medical practitioner (generic term)|medical man (generic term)
+inoculum|1
+(noun)|inoculant|substance (generic term)|matter (generic term)
+inodorous|1
+(adj)|odorless|odourless|non-aromatic (similar term)|scentless (similar term)|odorous (antonym)
+inoffensive|6
+(adj)|unoffending|offenseless (similar term)|offenceless (similar term)|offensive (antonym)
+(adj)|savory|savoury|unsavory (antonym)
+(adj)|innocuous (similar term)|unobjectionable (similar term)|offensive (antonym)
+(adj)|euphemistic|dysphemistic (antonym)
+(adj)|uncontroversial|innocuous (similar term)|harmless (similar term)
+(adj)|unoffending|harmless (similar term)
+inoffensively|1
+(adv)|offensively (antonym)
+inoic beam|1
+(noun)|ion beam|particle beam (generic term)
+inoperable|2
+(adj)|unserviceable (similar term)
+(adj)|operable (antonym)
+inoperative|1
+(adj)|down (similar term)|dead (similar term)|defunct (similar term)|operative (antonym)
+inopportune|1
+(adj)|ill-timed (similar term)|unseasonable (similar term)|untimely (similar term)|wrong (similar term)|inconvenient (similar term)|disadvantageous (related term)|harmful (related term)|opportune (antonym)
+inopportunely|1
+(adv)|malapropos|opportunely (antonym)
+inopportuneness|1
+(noun)|untimeliness|inconvenience (generic term)|opportuneness (antonym)
+inordinate|1
+(adj)|excessive|undue|unreasonable|immoderate (similar term)
+inordinately|1
+(adv)|extraordinarily
+inordinateness|1
+(noun)|excess|excessiveness|immoderation (generic term)|immoderateness (generic term)
+inorganic|2
+(adj)|organic (antonym)
+(adj)|amorphous (similar term)|unstructured (similar term)|artificial (similar term)|mineral (similar term)|organic (antonym)
+inorganic chemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+inorganic compound|1
+(noun)|compound (generic term)|chemical compound (generic term)
+inorganic phosphate|1
+(noun)|phosphate|orthophosphate|salt (generic term)
+inorganically|1
+(adv)|organically (antonym)
+inosculate|2
+(verb)|anastomose|join (generic term)|conjoin (generic term)
+(verb)|anastomose|join (generic term)|bring together (generic term)
+inosculation|1
+(noun)|anastomosis|junction (generic term)|conjunction (generic term)|conjugation (generic term)|colligation (generic term)
+inosine|1
+(noun)|nucleoside (generic term)
+inositol|1
+(noun)|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+inpatient|1
+(noun)|inmate|patient (generic term)|outpatient (antonym)
+inpour|1
+(noun)|inpouring|inrush|inflow (generic term)|influx (generic term)
+inpouring|2
+(adj)|incoming (similar term)
+(noun)|inpour|inrush|inflow (generic term)|influx (generic term)
+input|4
+(noun)|input signal|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|stimulation|stimulus|stimulant|information (generic term)
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+(verb)|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+input data|1
+(noun)|input file|computer file (generic term)
+input device|1
+(noun)|data input device|device (generic term)
+input file|1
+(noun)|input data|computer file (generic term)
+input program|1
+(noun)|utility program (generic term)|utility (generic term)|service program (generic term)
+input routine|1
+(noun)|utility routine (generic term)|service routine (generic term)
+input signal|1
+(noun)|input|signal (generic term)|signaling (generic term)|sign (generic term)
+inquest|1
+(noun)|inquiry (generic term)|enquiry (generic term)
+inquietude|1
+(noun)|edginess|uneasiness|disquietude|anxiety (generic term)
+inquire|3
+(verb)|ask|enquire|communicate (generic term)|intercommunicate (generic term)
+(verb)|wonder|enquire|question (generic term)|query (generic term)
+(verb)|investigate|enquire|probe (generic term)|examine (generic term)
+inquirer|1
+(noun)|enquirer|questioner|querier|asker|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+inquiring|2
+(adj)|fact-finding (similar term)|investigative (similar term)|investigatory (similar term)|inquisitive (similar term)|inquisitorial (similar term)|inquisitorial (similar term)|inquisitory (similar term)|probing (similar term)|searching (similar term)|curious (related term)|uninquiring (antonym)
+(noun)|questioning|request (generic term)|asking (generic term)
+inquiringly|1
+(adv)|enquiringly
+inquiry|3
+(noun)|enquiry|research|problem solving (generic term)
+(noun)|question|enquiry|query|interrogation|questioning (generic term)|inquiring (generic term)|answer (antonym)
+(noun)|enquiry|investigation (generic term)|investigating (generic term)
+inquiry agent|1
+(noun)|private detective (generic term)|PI (generic term)|private eye (generic term)|private investigator (generic term)|operative (generic term)|shamus (generic term)|sherlock (generic term)
+inquisition|2
+(noun)|Inquisition|court (generic term)|tribunal (generic term)|judicature (generic term)
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+inquisitive|2
+(adj)|speculative|questioning|wondering|curious (similar term)
+(adj)|inquiring (similar term)
+inquisitively|1
+(adv)|curiously|interrogatively
+inquisitiveness|1
+(noun)|curiousness|curiosity (generic term)|wonder (generic term)
+inquisitor|2
+(noun)|interrogator|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+(noun)|Inquisitor|official (generic term)|functionary (generic term)
+inquisitorial|2
+(adj)|inquirer|enquirer|questioner|querier|asker (related term)|accusatorial (antonym)
+(adj)|inquiring (similar term)
+inquisitory|1
+(adj)|probing|searching|inquiring (similar term)
+inr|1
+(noun)|Bureau of Intelligence and Research|INR|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+inroad|2
+(noun)|trespass (generic term)|encroachment (generic term)|violation (generic term)|intrusion (generic term)|usurpation (generic term)
+(noun)|invasion (generic term)
+inrush|1
+(noun)|inpouring|inpour|inflow (generic term)|influx (generic term)
+ins|1
+(noun)|Immigration and Naturalization Service|INS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+insalubrious|1
+(adj)|unhealthful|unhealthy|unwholesome (similar term)
+insalubriousness|1
+(noun)|insalubrity|unhealthfulness (generic term)|salubriousness (antonym)|salubrity (antonym)
+insalubrity|1
+(noun)|insalubriousness|unhealthfulness (generic term)|salubriousness (antonym)|salubrity (antonym)
+insane|2
+(adj)|amuck (similar term)|amok (similar term)|berserk (similar term)|demoniac (similar term)|demoniacal (similar term)|possessed (similar term)|balmy (similar term)|barmy (similar term)|bats (similar term)|batty (similar term)|bonkers (similar term)|buggy (similar term)|cracked (similar term)|crackers (similar term)|daft (similar term)|dotty (similar term)|fruity (similar term)|haywire (similar term)|kooky (similar term)|kookie (similar term)|loco (similar term)|loony (similar term)|loopy (similar term)|nuts (similar term)|nutty (similar term)|round the bend (similar term)|around the bend (similar term)|wacky (similar term)|whacky (similar term)|brainsick (similar term)|crazy (similar term)|demented (similar term)|distracted (similar term)|disturbed (similar term)|mad (similar term)|sick (similar term)|unbalanced (similar term)|unhinged (similar term)|certifiable (similar term)|certified (similar term)|crackbrained (similar term)|idiotic (similar term)|crazed (similar term)|deranged (similar term)|half-crazed (similar term)|fey (similar term)|touched (similar term)|hebephrenic (similar term)|schizophrenic (similar term)|lunatic (similar term)|moonstruck (similar term)|maniacal (similar term)|maniac (similar term)|manic-depressive (similar term)|maniclike (similar term)|mentally ill (similar term)|unsound (similar term)|unstable (similar term)|non compos mentis (similar term)|of unsound mind (similar term)|paranoid (similar term)|psychopathic (similar term)|psychopathologic (similar term)|psychopathological (similar term)|psychotic (similar term)|raving (similar term)|raving mad (similar term)|wild (similar term)|schizophrenic (similar term)|screw-loose (similar term)|screwy (similar term)|irrational (related term)|unreasonable (related term)|sane (antonym)
+(adj)|harebrained|mad|foolish (similar term)
+insane asylum|1
+(noun)|mental hospital|psychiatric hospital|mental institution|institution|mental home|asylum|hospital (generic term)|infirmary (generic term)
+insanely|2
+(adv)|crazily|dementedly|madly|sanely (antonym)
+(adv)|madly|deadly|deucedly|devilishly
+insaneness|1
+(noun)|lunacy|madness|insanity (generic term)
+insanitary|1
+(adj)|unsanitary|unhealthful|unhygienic (similar term)|sanitary (antonym)
+insanity|1
+(noun)|mental illness (generic term)|mental disease (generic term)|psychopathy (generic term)|sanity (antonym)
+insanity plea|1
+(noun)|plea of insanity|plea (generic term)
+insatiable|1
+(adj)|insatiate|unsatiable|quenchless (similar term)|unquenchable (similar term)|unsated (similar term)|unsatiated (similar term)|unsatisfied (similar term)|unsatisfiable (similar term)|satiate (antonym)
+insatiably|1
+(adv)|unsatiably
+insatiate|1
+(adj)|insatiable|unsatiable|quenchless (similar term)|unquenchable (similar term)|unsated (similar term)|unsatiated (similar term)|unsatisfied (similar term)|unsatisfiable (similar term)|satiate (antonym)
+inscribe|7
+(verb)|scratch|engrave|grave|carve (generic term)|chip at (generic term)
+(verb)|enroll|enter|enrol|recruit|register (generic term)
+(verb)|trace (generic term)|draw (generic term)|line (generic term)|describe (generic term)|delineate (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|autograph|sign (generic term)
+(verb)|encode|code|encipher|cipher|cypher|encrypt|write in code|write (generic term)|decode (antonym)
+(verb)|dedicate (generic term)
+inscribed|2
+(adj)|written (similar term)
+(adj)|engraved|etched|graven|incised|carved (similar term)|carven (similar term)
+inscription|3
+(noun)|lettering|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|dedication|message (generic term)
+(noun)|writing (generic term)|committal to writing (generic term)
+inscriptive|1
+(adj)|writing|written material|piece of writing (related term)
+inscrutability|1
+(noun)|incomprehensibility (generic term)
+inscrutable|1
+(adj)|cryptic|cryptical|deep|mysterious|mystifying|inexplicable (similar term)|incomprehensible (similar term)
+insect|2
+(noun)|arthropod (generic term)
+(noun)|worm|louse|dirt ball|unpleasant person (generic term)|disagreeable person (generic term)
+insect-like|1
+(adj)|insectlike|animal (similar term)
+insect bite|1
+(noun)|sting|bite|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+insect powder|1
+(noun)|insecticide|pesticide (generic term)
+insect repellant|1
+(noun)|insectifuge|insect repellent|repellent (generic term)|repellant (generic term)
+insect repellent|1
+(noun)|insectifuge|insect repellant|repellent (generic term)|repellant (generic term)
+insecta|1
+(noun)|Insecta|class Insecta|Hexapoda|class Hexapoda|class (generic term)
+insectan|1
+(adj)|arthropod (related term)
+insecticidal|1
+(adj)|pesticide (related term)
+insecticide|1
+(noun)|insect powder|pesticide (generic term)
+insectifuge|1
+(noun)|insect repellent|insect repellant|repellent (generic term)|repellant (generic term)
+insectivora|1
+(noun)|Insectivora|order Insectivora|animal order (generic term)
+insectivore|2
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+insectivorous|1
+(adj)|apivorous (similar term)|myrmecophagous (similar term)|carnivorous (antonym)|herbivorous (antonym)|omnivorous (antonym)
+insectlike|1
+(adj)|insect-like|animal (similar term)
+insecure|4
+(adj)|loose (similar term)|precarious (similar term)|unfixed (related term)|secure (antonym)
+(adj)|unsafe|embattled (similar term)|precarious (similar term)|shaky (similar term)|unguaranteed (similar term)|unsecured (similar term)|dangerous (related term)|unsafe (related term)|unprotected (related term)|vulnerable (related term)|secure (antonym)
+(adj)|overanxious (similar term)|unassured (similar term)|secure (antonym)
+(adj)|unsafe|vulnerable (similar term)
+insecurely|1
+(adv)|securely (antonym)
+insecureness|1
+(noun)|insecurity (generic term)|secureness (antonym)
+insecurity|2
+(noun)|danger (generic term)|security (antonym)
+(noun)|anxiety (generic term)
+inseminate|2
+(verb)|sow|sow in|sow (generic term)|sough (generic term)|seed (generic term)
+(verb)|fecundate|fertilize|fertilise|change (generic term)|alter (generic term)|modify (generic term)
+insemination|2
+(noun)|planting (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+insensate|2
+(adj)|insentient|unfeeling (similar term)|sentient (antonym)
+(adj)|cold|cold-blooded|inhuman|inhumane (similar term)
+insensibility|2
+(noun)|unconsciousness (generic term)|sensibility (antonym)
+(noun)|unfeelingness|callousness|callosity|hardness|insensitivity (generic term)|insensitiveness (generic term)
+insensible|4
+(adj)|anesthetic (similar term)|anaesthetic (similar term)|anesthetized (similar term)|anesthetised (similar term)|anaesthetized (similar term)|anaesthetised (similar term)|asleep (similar term)|benumbed (similar term)|numb (similar term)|sedated (similar term)|insensitive (related term)|insensitive (related term)|unaware (related term)|incognizant (related term)|unconscious (related term)|sensible (antonym)
+(adj)|unaffected|insensitive (similar term)
+(adj)|indiscernible|undetectable|imperceptible (similar term)|unperceivable (similar term)
+(adj)|senseless|unconscious (similar term)
+insensibly|1
+(adv)|numbly
+insensitive|2
+(adj)|dead (similar term)|deadened (similar term)|desensitized (similar term)|desensitised (similar term)|unreactive (similar term)|insensible (related term)|unresponsive (related term)|unsusceptible (related term)|insusceptible (related term)|sensitive (antonym)
+(adj)|callous (similar term)|indurate (similar term)|pachydermatous (similar term)|dead (similar term)|numb (similar term)|desensitized (similar term)|desensitised (similar term)|dull (similar term)|insensible (similar term)|unaffected (similar term)|soulless (similar term)|thick-skinned (similar term)|tough-skinned (similar term)|hard (related term)|insensible (related term)|tough (related term)|unresponsive (related term)|sensitive (antonym)
+insensitively|1
+(adv)|sensitively (antonym)
+insensitiveness|1
+(noun)|insensitivity|inability (generic term)|unfitness (generic term)|sensitiveness (antonym)|sensitivity (antonym)
+insensitivity|1
+(noun)|insensitiveness|inability (generic term)|unfitness (generic term)|sensitiveness (antonym)|sensitivity (antonym)
+insentience|1
+(noun)|inanimateness (generic term)|lifelessness (generic term)|sentience (antonym)
+insentient|1
+(adj)|insensate|unfeeling (similar term)|sentient (antonym)
+inseparable|1
+(adj)|indivisible (similar term)
+inseparably|1
+(adv)|separably (antonym)
+insert|7
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|inset|artifact (generic term)|artefact (generic term)
+(noun)|cut-in|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+(verb)|infix|enter|introduce|attach (generic term)
+(verb)|enclose|inclose|stick in|put in|introduce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|tuck|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|slip in|stick in|sneak in|add (generic term)|append (generic term)|supply (generic term)
+insertion|2
+(noun)|interpolation|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|introduction|intromission|movement (generic term)
+insessores|1
+(noun)|Insessores|order Insessores|perching bird|percher|animal order (generic term)
+inset|4
+(noun)|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(noun)|insert|artifact (generic term)|artefact (generic term)
+(noun)|gusset|piece of cloth (generic term)|piece of material (generic term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+inshore|2
+(adj)|onshore|seaward|offshore (antonym)
+(adj)|coastal (similar term)
+inside|10
+(adj)|wrong (similar term)|internal (related term)|outside (antonym)
+(adj)|interior (similar term)
+(adj)|inner|privileged|exclusive (similar term)
+(adj)|inner (similar term)
+(noun)|interior|region (generic term)|part (generic term)|outside (antonym)
+(noun)|interior|surface (generic term)|outside (antonym)
+(adv)|indoors|outdoors (antonym)|outside (antonym)
+(adv)|within|outside (antonym)
+(adv)|inwardly|outwardly (antonym)
+(adv)|at heart|at bottom|deep down|in spite of appearance
+inside-out|1
+(adj)|wrong-side-out|turned (similar term)
+inside caliper|1
+(noun)|caliper (generic term)|calliper (generic term)
+inside clinch|1
+(noun)|clinch (generic term)|clench (generic term)
+inside information|1
+(noun)|details|information (generic term)|info (generic term)
+inside job|1
+(noun)|transgression (generic term)|evildoing (generic term)
+inside loop|1
+(noun)|loop (generic term)|loop-the-loop (generic term)
+inside passage|1
+(noun)|Inland Passage|Inside Passage|waterway (generic term)
+inside track|2
+(noun)|superiority (generic term)|favorable position (generic term)|favourable position (generic term)
+(noun)|path (generic term)|track (generic term)|course (generic term)
+insider|1
+(noun)|corporate executive (generic term)|business executive (generic term)
+insider information|1
+(noun)|information (generic term)|info (generic term)
+insider trading|1
+(noun)|trading (generic term)
+insidious|3
+(adj)|seductive (similar term)
+(adj)|dangerous (similar term)|unsafe (similar term)
+(adj)|pernicious|subtle|harmful (similar term)
+insidiously|1
+(adv)|perniciously
+insidiousness|2
+(noun)|harmfulness (generic term)|injuriousness (generic term)
+(noun)|perfidy (generic term)|perfidiousness (generic term)|treachery (generic term)
+insight|4
+(noun)|penetration|perception (generic term)
+(noun)|perceptiveness|perceptivity|sensibility (generic term)
+(noun)|brainstorm|brainwave|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|sixth sense|intuition (generic term)
+insightful|1
+(adj)|perceptive (similar term)
+insightfulness|1
+(noun)|acumen|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+insignia|1
+(noun)|badge (generic term)
+insignia of rank|1
+(noun)|insignia (generic term)
+insignificance|1
+(noun)|unimportance (generic term)|significance (antonym)
+insignificant|5
+(adj)|trivial|inconsiderable (similar term)
+(adj)|undistinguished|unnoticeable (similar term)
+(adj)|unmeaning|meaningless (similar term)|nonmeaningful (similar term)
+(adj)|peanut|minor (similar term)
+(adj)|unimportant|hole-and-corner (similar term)|hole-in-corner (similar term)|inappreciable (similar term)|light (similar term)|superficial (similar term)|trivial (similar term)|meaningless (related term)|nonmeaningful (related term)|unimportant (related term)|significant (antonym)
+insignificantly|1
+(adv)|significantly (antonym)
+insincere|1
+(adj)|bootlicking (similar term)|fawning (similar term)|obsequious (similar term)|sycophantic (similar term)|toadyish (similar term)|buttery (similar term)|fulsome (similar term)|oily (similar term)|oleaginous (similar term)|smarmy (similar term)|soapy (similar term)|unctuous (similar term)|dissembling (similar term)|dissimulating (similar term)|dissimulative (similar term)|false (similar term)|hollow (similar term)|feigned (similar term)|gilded (similar term)|meretricious (similar term)|specious (similar term)|hypocritical (similar term)|plausible (similar term)|counterfeit (related term)|imitative (related term)|dishonest (related term)|dishonorable (related term)|disingenuous (related term)|artful (related term)|false (related term)|unreal (related term)|sincere (antonym)
+insincerely|1
+(adv)|sincerely (antonym)
+insincerity|1
+(noun)|falseness|hollowness|untruthfulness (generic term)|sincerity (antonym)
+insinuate|2
+(verb)|bring in (generic term)|introduce (generic term)
+(verb)|intimate|adumbrate|hint (generic term)|suggest (generic term)
+insinuating|1
+(adj)|ingratiating|ingratiatory|flattering (similar term)
+insinuation|2
+(noun)|innuendo|implication (generic term)
+(noun)|ingratiation|blandishment (generic term)|wheedling (generic term)
+insipid|4
+(adj)|bland|flat|flavorless|flavourless|savorless|savourless|vapid|tasteless (similar term)
+(adj)|innocuous (similar term)|harmless (similar term)
+(adj)|jejune|uninteresting (similar term)
+(adj)|unappetizing (similar term)|unappetising (similar term)
+insipidity|2
+(noun)|boringness|dreariness|insipidness|dullness (generic term)
+(noun)|blandness|insipidness|unappetizingness (generic term)|unappetisingness (generic term)
+insipidness|2
+(noun)|boringness|dreariness|insipidity|dullness (generic term)
+(noun)|blandness|insipidity|unappetizingness (generic term)|unappetisingness (generic term)
+insist|3
+(verb)|take a firm stand
+(verb)|importune|beg (generic term)|implore (generic term)|pray (generic term)
+(verb)|assert|postulate (generic term)|posit (generic term)
+insistence|3
+(noun)|insisting|demand (generic term)
+(noun)|imperativeness|insistency|press|pressure|urgency (generic term)
+(noun)|insistency|advocacy (generic term)|protagonism (generic term)
+insistency|2
+(noun)|imperativeness|insistence|press|pressure|urgency (generic term)
+(noun)|insistence|advocacy (generic term)|protagonism (generic term)
+insistent|2
+(adj)|repetitive|continual (similar term)
+(adj)|clamant|crying|exigent|instant|imperative (similar term)
+insisting|1
+(noun)|insistence|demand (generic term)
+insobriety|1
+(noun)|drunkenness|inebriation|inebriety|intoxication|tipsiness|temporary state (generic term)|soberness (antonym)
+insofar|1
+(adv)|in so far|so far|to that extent|to that degree
+insolate|1
+(verb)|sun|solarize|solarise|expose (generic term)
+insolation|3
+(noun)|sunstroke|thermic fever|siriasis|heatstroke (generic term)|heat hyperpyrexia (generic term)
+(noun)|solar radiation (generic term)
+(noun)|heliotherapy|therapy (generic term)
+insole|1
+(noun)|innersole|sole (generic term)
+insolence|2
+(noun)|crust|gall|impertinence|impudence|cheekiness|freshness|discourtesy (generic term)|rudeness (generic term)
+(noun)|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+insolent|2
+(adj)|impudent|snotty-nosed|flip|disrespectful (similar term)
+(adj)|audacious|barefaced|bodacious|bald-faced|brassy|brazen|brazen-faced|unashamed (similar term)
+insolubility|2
+(noun)|unsolvability|property (generic term)|solubility (antonym)|solvability (antonym)
+(noun)|quality (generic term)|solubility (antonym)
+insoluble|3
+(adj)|indissoluble|water-insoluble (similar term)|non-water-soluble (similar term)|soluble (antonym)
+(adj)|insolvable (similar term)|unsoluble (similar term)|unsolvable (similar term)|unresolvable (similar term)|inexplicable (related term)|incomprehensible (related term)|soluble (antonym)
+(adj)|hopeless (similar term)
+insolvable|1
+(adj)|unsoluble|unsolvable|unresolvable|insoluble (similar term)
+insolvency|1
+(noun)|financial condition (generic term)|economic condition (generic term)|solvency (antonym)
+insolvent|2
+(adj)|bankrupt (similar term)|belly-up (similar term)|solvent (antonym)
+(noun)|bankrupt|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+insomnia|1
+(noun)|sleep disorder (generic term)|hypersomnia (antonym)
+insomniac|2
+(adj)|sleepless|watchful|awake (similar term)
+(noun)|sleepless person|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+insouciance|1
+(noun)|carefreeness|lightheartedness|lightsomeness|cheerfulness (generic term)|blitheness (generic term)
+insouciant|1
+(adj)|casual|nonchalant|unconcerned (similar term)
+inspan|1
+(verb)|yoke (generic term)|harness (generic term)|tackle (generic term)|outspan (antonym)
+inspect|3
+(verb)|examine (generic term)|see (generic term)
+(verb)|visit
+(verb)|audit|scrutinize|scrutinise|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+inspection|1
+(noun)|review|examination (generic term)|scrutiny (generic term)
+inspection and repair|1
+(noun)|overhaul|service|care (generic term)|maintenance (generic term)|upkeep (generic term)
+inspector|2
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|examiner|investigator (generic term)
+inspector general|1
+(noun)|military officer (generic term)|officer (generic term)
+inspector maigret|1
+(noun)|Inspector Maigret|Commissaire Maigret|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+inspectorate|1
+(noun)|body (generic term)
+inspectorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+inspiration|6
+(noun)|idea (generic term)|thought (generic term)
+(noun)|brainchild|product (generic term)|production (generic term)
+(noun)|intuition (generic term)
+(noun)|divine guidance|cognitive factor (generic term)
+(noun)|stirring|arousal (generic term)|rousing (generic term)
+(noun)|inhalation|aspiration|breathing in|breath (generic term)
+inspirational|1
+(adj)|sacred (similar term)
+inspirationally|1
+(adv)|with inspiration
+inspiratory|1
+(adj)|breath (related term)
+inspire|6
+(verb)|animate|invigorate|enliven|exalt|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|occasion (generic term)
+(verb)|prompt|instigate|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|cheer|urge|barrack|urge on|exhort|pep up|encourage (generic term)
+(verb)|revolutionize|revolutionise|indoctrinate (generic term)
+(verb)|inhale|breathe in|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)|exhale (antonym)
+inspired|1
+(adj)|divine|elysian|glorious (similar term)
+inspirer|1
+(noun)|galvanizer|galvaniser|leader (generic term)
+inspiring|1
+(adj)|ennobling (similar term)|exalting (similar term)|uninspiring (antonym)
+inspirit|1
+(verb)|spirit|spirit up|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+inspiriting|1
+(adj)|heartening|encouraging (similar term)
+inspissate|3
+(verb)|thicken|change integrity (generic term)
+(verb)|thicken|change (generic term)|alter (generic term)|modify (generic term)|thin (antonym)
+(verb)|thicken|change state (generic term)|turn (generic term)|thin (antonym)
+inspissation|2
+(noun)|dehydration (generic term)|desiccation (generic term)|drying up (generic term)|evaporation (generic term)
+(noun)|thickening|condensing (generic term)|condensation (generic term)
+inst|1
+(adj)|instant|present (similar term)
+instability|4
+(noun)|disorder (generic term)|stability (antonym)
+(noun)|undependability (generic term)|undependableness (generic term)|unreliability (generic term)|unreliableness (generic term)
+(noun)|imbalance|unbalance|disequilibrium (generic term)|balance (antonym)
+(noun)|unstableness|unsteadiness (generic term)|stableness (antonym)|stability (antonym)
+instal|2
+(verb)|install|put in|set up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|install|set up|establish
+install|2
+(verb)|instal|put in|set up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|instal|set up|establish
+installation|3
+(noun)|installing|installment|instalment|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|facility|artifact (generic term)|artefact (generic term)
+(noun)|initiation|induction|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+installation charge|1
+(noun)|charge (generic term)
+installing|1
+(noun)|installation|installment|instalment|beginning (generic term)|start (generic term)|commencement (generic term)
+installment|4
+(noun)|payment (generic term)
+(noun)|episode|instalment|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|instalment|text (generic term)|textual matter (generic term)
+(noun)|installation|installing|instalment|beginning (generic term)|start (generic term)|commencement (generic term)
+installment buying|1
+(noun)|installment plan|time plan|regular payment (generic term)
+installment credit|1
+(noun)|installment loan|consumer credit (generic term)|loan (generic term)
+installment debt|1
+(noun)|debt (generic term)
+installment loan|1
+(noun)|installment credit|consumer credit (generic term)|loan (generic term)
+installment plan|1
+(noun)|installment buying|time plan|regular payment (generic term)
+installment rate|1
+(noun)|payment rate|rate of payment|repayment rate|rate (generic term)|charge per unit (generic term)
+instalment|3
+(noun)|episode|installment|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|installment|text (generic term)|textual matter (generic term)
+(noun)|installation|installing|installment|beginning (generic term)|start (generic term)|commencement (generic term)
+instance|3
+(noun)|case|example|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|example|illustration|representative|information (generic term)
+(verb)|exemplify|illustrate|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+instancy|2
+(noun)|immediacy|immediateness|instantaneousness|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+(noun)|imperativeness|urgency (generic term)
+instant|5
+(adj)|instantaneous|fast (similar term)
+(adj)|inst|present (similar term)
+(adj)|clamant|crying|exigent|insistent|imperative (similar term)
+(noun)|blink of an eye|flash|heartbeat|jiffy|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+(noun)|moment|minute|second|point (generic term)|point in time (generic term)
+instantaneous|1
+(adj)|instant|fast (similar term)
+instantaneous sound pressure|1
+(noun)|sound pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+instantaneously|1
+(adv)|outright|instantly|in a flash
+instantaneousness|1
+(noun)|immediacy|immediateness|instancy|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+instantiate|2
+(verb)|represent (generic term)
+(verb)|detect (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+instantiation|1
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+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 (generic term)
+instauration|1
+(noun)|initiation|founding|foundation|institution|origination|creation|innovation|introduction|beginning (generic term)|start (generic term)|commencement (generic term)
+instead|2
+(adv)|alternatively|as an alternative|or else
+(adv)|rather
+instep|2
+(noun)|arch (generic term)
+(noun)|covering (generic term)
+instigant|1
+(noun)|instigator|provoker|inciter|firebrand|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+instigate|2
+(verb)|incite|set off|stir up|provoke (generic term)|stimulate (generic term)
+(verb)|prompt|inspire|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+instigation|2
+(noun)|abetment|abettal|encouragement (generic term)
+(noun)|fomentation|trigger (generic term)|induction (generic term)|initiation (generic term)
+instigative|1
+(adj)|incendiary|incitive|inflammatory|rabble-rousing|seditious|provocative (similar term)
+instigator|2
+(noun)|provoker|inciter|instigant|firebrand|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+(noun)|initiator|leader (generic term)
+instil|1
+(verb)|instill|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+instill|5
+(verb)|transfuse|lend (generic term)|impart (generic term)|bestow (generic term)|contribute (generic term)|add (generic term)|bring (generic term)
+(verb)|instil|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|impress|ingrain|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|inculcate|infuse|drill (generic term)
+(verb)|impregnate|infuse|tincture|fill (generic term)|fill up (generic term)|make full (generic term)
+instillation|2
+(noun)|instillment|instilment|insertion (generic term)|introduction (generic term)|intromission (generic term)
+(noun)|liquid (generic term)
+instillator|1
+(noun)|apparatus (generic term)|setup (generic term)
+instilling|1
+(noun)|inculcation|ingraining|indoctrination (generic term)
+instillment|1
+(noun)|instillation|instilment|insertion (generic term)|introduction (generic term)|intromission (generic term)
+instilment|1
+(noun)|instillation|instillment|insertion (generic term)|introduction (generic term)|intromission (generic term)
+instinct|2
+(adj)|replete|full (similar term)
+(noun)|inherent aptitude|aptitude (generic term)
+instinctive|1
+(adj)|natural|spontaneous (similar term)|self-generated (similar term)
+instinctive reflex|1
+(noun)|reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction (generic term)|response (generic term)
+institute|3
+(noun)|association (generic term)
+(verb)|establish|found|plant|constitute|initiate (generic term)|pioneer (generic term)
+(verb)|bring|make (generic term)|create (generic term)
+institution|5
+(noun)|establishment|organization (generic term)|organisation (generic term)
+(noun)|establishment (generic term)
+(noun)|custom (generic term)|tradition (generic term)
+(noun)|initiation|founding|foundation|origination|creation|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|mental hospital|psychiatric hospital|mental institution|mental home|insane asylum|asylum|hospital (generic term)|infirmary (generic term)
+institutional|2
+(adj)|organization|organisation (related term)
+(adj)|institutionalized (similar term)|institutionalised (similar term)|uninteresting (similar term)|noninstitutional (antonym)
+institutionalise|1
+(verb)|commit|institutionalize|send|charge|transfer (generic term)
+institutionalised|2
+(adj)|institutionalized|noninstitutionalized (antonym)
+(adj)|institutionalized|institutional (similar term)
+institutionalize|1
+(verb)|commit|institutionalise|send|charge|transfer (generic term)
+institutionalized|2
+(adj)|institutionalised|noninstitutionalized (antonym)
+(adj)|institutionalised|institutional (similar term)
+instroke|1
+(noun)|throw (generic term)|stroke (generic term)|cam stroke (generic term)
+instruct|3
+(verb)|teach|learn|inform (generic term)
+(verb)|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+(verb)|apprise|apprize|inform (generic term)
+instruction|4
+(noun)|direction|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|education|teaching|pedagogy|didactics|educational activity|activity (generic term)
+(noun)|teaching|pedagogy|education (generic term)
+(noun)|command|statement|program line|code (generic term)|computer code (generic term)
+instruction book|1
+(noun)|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+instruction execution|1
+(noun)|execution|process (generic term)|physical process (generic term)
+instruction manual|1
+(noun)|instructions|book of instructions|operating instructions|manual (generic term)
+instructional|1
+(adj)|education (related term)
+instructions|1
+(noun)|instruction manual|book of instructions|operating instructions|manual (generic term)
+instructive|1
+(adj)|informative|clarifying (similar term)|elucidative (similar term)|demonstrative (similar term)|illustrative (similar term)|didactic (similar term)|didactical (similar term)|doctrinaire (similar term)|educative (similar term)|educational (similar term)|explanatory (similar term)|expository (similar term)|expositive (similar term)|interpretative (similar term)|interpretive (similar term)|ostensive (similar term)|preachy (similar term)|informative (related term)|informatory (related term)|uninstructive (antonym)
+instructively|1
+(adv)|informatively|uninstructively (antonym)|uninformatively (antonym)
+instructor|1
+(noun)|teacher|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+instructorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+instructress|1
+(noun)|teacher (generic term)|instructor (generic term)
+instrument|9
+(noun)|device (generic term)
+(noun)|tool|means (generic term)|agency (generic term)|way (generic term)
+(noun)|pawn|cat's-paw|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|legal document|legal instrument|official document|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|instrumental role|semantic role (generic term)|participant role (generic term)
+(noun)|musical instrument|device (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|instrumentate|compose (generic term)|write (generic term)
+(verb)|address (generic term)|direct (generic term)
+instrument flying|1
+(noun)|navigation (generic term)|pilotage (generic term)|piloting (generic term)
+instrument landing|1
+(noun)|aircraft landing (generic term)|airplane landing (generic term)
+instrument of execution|1
+(noun)|instrument (generic term)
+instrument of punishment|1
+(noun)|instrument (generic term)
+instrument of torture|1
+(noun)|instrument of punishment (generic term)
+instrument panel|1
+(noun)|control panel|control board|board|panel|electrical device (generic term)
+instrumental|2
+(adj)|device (related term)|vocal (antonym)
+(adj)|implemental|subservient|helpful (similar term)
+instrumental conditioning|1
+(noun)|operant conditioning (generic term)
+instrumental music|1
+(noun)|music (generic term)
+instrumental role|1
+(noun)|instrument|semantic role (generic term)|participant role (generic term)
+instrumentalism|1
+(noun)|pragmatism (generic term)
+instrumentalist|1
+(noun)|musician|player|performer (generic term)|performing artist (generic term)
+instrumentality|3
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|utility (generic term)|usefulness (generic term)
+(noun)|instrumentation|artifact (generic term)|artefact (generic term)
+instrumentate|1
+(verb)|instrument|compose (generic term)|write (generic term)
+instrumentation|4
+(noun)|instrumentality|artifact (generic term)|artefact (generic term)
+(noun)|implementation (generic term)|effectuation (generic term)
+(noun)|musical arrangement (generic term)|arrangement (generic term)
+(noun)|orchestration|arrangement (generic term)|arranging (generic term)|transcription (generic term)
+insubordinate|2
+(adj)|contumacious (similar term)|disobedient (similar term)|unruly (similar term)|mutinous (similar term)|rebellious (similar term)|defiant (related term)|noncompliant (related term)|subordinate (antonym)
+(adj)|resistant|resistive|defiant (similar term)|noncompliant (similar term)
+insubordination|2
+(noun)|defiance (generic term)|rebelliousness (generic term)|subordination (antonym)
+(noun)|rebelliousness|resistance (generic term)
+insubstantial|2
+(adj)|unsubstantial|unreal|aeriform (similar term)|aerial (similar term)|airy (similar term)|aery (similar term)|ethereal (similar term)|shadowy (similar term)|wraithlike (similar term)|stringy (similar term)|immaterial (related term)|nonmaterial (related term)|substantial (antonym)
+(adj)|jejune|unwholesome (similar term)
+insubstantiality|2
+(noun)|weakness (generic term)
+(noun)|immateriality (generic term)|incorporeality (generic term)|substantiality (antonym)
+insubstantially|1
+(adv)|impalpably
+insufferable|1
+(adj)|impossible|unacceptable|unsufferable|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+insufficiency|3
+(noun)|inadequacy|failing (generic term)|weakness (generic term)
+(noun)|inability (generic term)|unfitness (generic term)
+(noun)|inadequacy|deficiency|amount (generic term)|adequacy (antonym)|sufficiency (antonym)
+insufficient|1
+(adj)|deficient|depleted (similar term)|low (similar term)|inadequate (similar term)|poor (similar term)|short (similar term)|lean (similar term)|skimpy (similar term)|light (similar term)|scant (similar term)|short (similar term)|scarce (similar term)|shy (similar term)|too little (similar term)|meager (related term)|meagre (related term)|meagerly (related term)|stingy (related term)|scrimpy (related term)|sufficient (antonym)
+insufficiently|1
+(adv)|sufficiently (antonym)
+insufflate|3
+(verb)|administer (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|blow (generic term)
+insufflation|2
+(noun)|blowing (generic term)
+(noun)|blow (generic term)|puff (generic term)
+insulant|1
+(noun)|insulating material|insulation|building material (generic term)
+insular|3
+(adj)|land|dry land|earth|ground|solid ground|terra firma (related term)
+(adj)|private (similar term)
+(adj)|parochial|provincial (similar term)
+insularism|1
+(noun)|insulation|insularity|detachment|isolation (generic term)
+insularity|1
+(noun)|insulation|insularism|detachment|isolation (generic term)
+insulate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|isolate|discriminate (generic term)|separate (generic term)|single out (generic term)
+insulating material|1
+(noun)|insulant|insulation|building material (generic term)
+insulating tape|1
+(noun)|friction tape|adhesive tape (generic term)
+insulation|3
+(noun)|insularity|insularism|detachment|isolation (generic term)
+(noun)|insulating material|insulant|building material (generic term)
+(noun)|protection (generic term)
+insulator|1
+(noun)|dielectric|nonconductor|material (generic term)|stuff (generic term)|conductor (antonym)
+insulin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|hypoglycemic agent (generic term)|hypoglycaemic agent (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+insulin reaction|1
+(noun)|insulin shock|shock (generic term)
+insulin shock|2
+(noun)|insulin reaction|shock (generic term)
+(noun)|insulin shock therapy|insulin shock treatment|shock therapy (generic term)|shock treatment (generic term)
+insulin shock therapy|1
+(noun)|insulin shock|insulin shock treatment|shock therapy (generic term)|shock treatment (generic term)
+insulin shock treatment|1
+(noun)|insulin shock|insulin shock therapy|shock therapy (generic term)|shock treatment (generic term)
+insult|3
+(noun)|abuse|revilement|contumely|vilification|disrespect (generic term)|discourtesy (generic term)
+(noun)|affront|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+(verb)|diss|affront|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+insulting|2
+(adj)|abusive|opprobrious|scurrilous|offensive (similar term)
+(adj)|contemptuous|disdainful|scornful|disrespectful (similar term)
+insultingly|1
+(adv)|foully
+insuperable|2
+(adj)|insurmountable|unconquerable (similar term)
+(adj)|unconquerable|insurmountable (similar term)|unsurmountable (similar term)
+insupportable|1
+(adj)|indefensible|unjustifiable|unwarrantable|unwarranted|inexcusable (similar term)
+insurability|1
+(noun)|eligibility (generic term)|uninsurability (antonym)
+insurable|1
+(adj)|insured (similar term)
+insurable interest|1
+(noun)|interest (generic term)|stake (generic term)
+insurance|3
+(noun)|security (generic term)|protection (generic term)
+(noun)|policy|insurance policy|contract (generic term)
+(noun)|indemnity|protection (generic term)|shelter (generic term)
+insurance agent|1
+(noun)|insurance broker|general agent|underwriter|agent (generic term)|factor (generic term)|broker (generic term)
+insurance broker|1
+(noun)|insurance agent|general agent|underwriter|agent (generic term)|factor (generic term)|broker (generic term)
+insurance claim|1
+(noun)|claim (generic term)
+insurance company|1
+(noun)|insurance firm|insurer|insurance underwriter|underwriter|nondepository financial institution (generic term)
+insurance coverage|1
+(noun)|coverage|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+insurance firm|1
+(noun)|insurance company|insurer|insurance underwriter|underwriter|nondepository financial institution (generic term)
+insurance policy|1
+(noun)|policy|insurance|contract (generic term)
+insurance premium|1
+(noun)|premium|payment (generic term)
+insurance underwriter|1
+(noun)|insurance company|insurance firm|insurer|underwriter|nondepository financial institution (generic term)
+insure|4
+(verb)|see|check|see to it|ensure|control|ascertain|assure|verify (generic term)
+(verb)|guarantee|ensure|assure|secure
+(verb)|cover|underwrite|guarantee (generic term)|warrant (generic term)
+(verb)|protect (generic term)
+insured|2
+(adj)|insurable (similar term)|uninsured (antonym)
+(noun)|insured person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+insured person|1
+(noun)|insured|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+insurer|1
+(noun)|insurance company|insurance firm|insurance underwriter|underwriter|nondepository financial institution (generic term)
+insurgence|1
+(noun)|insurgency|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+insurgency|1
+(noun)|insurgence|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+insurgent|3
+(adj)|seditious|subversive|disloyal (similar term)
+(noun)|insurrectionist|freedom fighter|rebel|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(noun)|guerrilla|guerilla|irregular|warrior (generic term)
+insurmountable|2
+(adj)|unsurmountable|insuperable (similar term)|unconquerable (similar term)|impossible (related term)|unconquerable (related term)|surmountable (antonym)
+(adj)|insuperable|unconquerable (similar term)
+insurrection|1
+(noun)|rebellion|revolt|rising|uprising|conflict (generic term)|struggle (generic term)|battle (generic term)
+insurrectional|1
+(adj)|insurrectionary|conflict|struggle|battle (related term)
+insurrectionary|1
+(adj)|insurrectional|conflict|struggle|battle (related term)
+insurrectionism|1
+(noun)|principle (generic term)
+insurrectionist|1
+(noun)|insurgent|freedom fighter|rebel|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+insusceptible|1
+(adj)|unsusceptible|immune (similar term)|resistant (similar term)|immunized (similar term)|immunised (similar term)|vaccinated (similar term)|immunogenic (similar term)|incapable (similar term)|unpersuadable (similar term)|unsuasible (similar term)|unresponsive (similar term)|insensitive (related term)|susceptible (antonym)
+intact|5
+(adj)|integral|entire|whole (similar term)
+(adj)|whole|unimpaired (similar term)
+(adj)|inviolate|uninjured (similar term)
+(adj)|entire|uncastrated (similar term)
+(adj)|undamaged (similar term)
+intactness|1
+(noun)|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+intaglio|2
+(noun)|intaglio printing|gravure|printing (generic term)|printing process (generic term)
+(noun)|diaglyph|glyptic art (generic term)|glyptography (generic term)
+intaglio printing|1
+(noun)|intaglio|gravure|printing (generic term)|printing process (generic term)
+intake|2
+(noun)|consumption|ingestion|uptake|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|opening (generic term)
+intake manifold|1
+(noun)|manifold (generic term)
+intake valve|1
+(noun)|valve (generic term)
+intangibility|1
+(noun)|intangibleness|impalpability|immateriality (generic term)|incorporeality (generic term)|palpability (antonym)|tangibility (antonym)
+intangible|5
+(adj)|tangible (antonym)
+(adj)|impalpable|abstract (related term)|tangible (antonym)
+(adj)|unidentifiable (similar term)
+(adj)|nonphysical|immaterial (similar term)|nonmaterial (similar term)
+(noun)|intangible asset|assets (generic term)
+intangible asset|1
+(noun)|intangible|assets (generic term)
+intangibleness|1
+(noun)|intangibility|impalpability|immateriality (generic term)|incorporeality (generic term)|palpability (antonym)|tangibility (antonym)
+integer|1
+(noun)|whole number|number (generic term)
+integral|3
+(adj)|built-in|constitutional|inbuilt|inherent|intrinsic (similar term)|intrinsical (similar term)
+(adj)|entire|intact|whole (similar term)
+(noun)|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+integral calculus|1
+(noun)|calculus (generic term)|infinitesimal calculus (generic term)
+integrality|1
+(noun)|entirety|entireness|totality|completeness (generic term)
+integrate|4
+(verb)|incorporate|compound (generic term)|combine (generic term)|disintegrate (antonym)
+(verb)|desegregate|mix|segregate (antonym)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|differentiate (antonym)
+integrated|5
+(adj)|incorporate|incorporated|merged|unified|united (similar term)
+(adj)|coordinated (similar term)|co-ordinated (similar term)|interconnected (similar term)|unified (similar term)|embedded (similar term)|incorporated (similar term)|introjected (similar term)|tight-knit (similar term)|tightly knit (similar term)|nonintegrated (antonym)
+(adj)|co-ed (similar term)|coeducational (similar term)|desegrated (similar term)|nonsegregated (similar term)|unsegregated (similar term)|interracial (similar term)|mixed (similar term)|mainstreamed (similar term)|integrative (related term)|joint (related term)|united (related term)|segregated (antonym)
+(adj)|structured|organic (similar term)
+(adj)|amalgamated|intermingled|mixed|blended (similar term)
+integrated circuit|1
+(noun)|microcircuit|computer circuit (generic term)
+integrated data processing|1
+(noun)|IDP|automatic data processing (generic term)|ADP (generic term)
+integrated logistic support|1
+(noun)|logistic support (generic term)|logistic assistance (generic term)
+integrating|1
+(noun)|integration|desegregation|group action (generic term)|segregation (antonym)
+integration|3
+(noun)|integrating|desegregation|group action (generic term)|segregation (antonym)
+(noun)|consolidation|combination (generic term)|combining (generic term)|compounding (generic term)
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+integrative|2
+(adj)|combinative (similar term)|combinatory (similar term)|combinatorial (similar term)|compositional (similar term)|consolidative (similar term)|unifying (similar term)|endogenic (similar term)|endogenetic (similar term)|collective (related term)|combinative (related term)|combinatory (related term)|integrated (related term)|disintegrative (antonym)
+(adj)|consolidative|centralizing (similar term)|centralising (similar term)
+integrator|1
+(noun)|planimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+integrity|2
+(noun)|unity|wholeness|state (generic term)
+(noun)|honesty (generic term)|honestness (generic term)
+integument|1
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+integumental|1
+(adj)|integumentary|covering|natural covering|cover (related term)
+integumentary|1
+(adj)|integumental|covering|natural covering|cover (related term)
+integumentary system|1
+(noun)|system (generic term)
+intellect|3
+(noun)|mind|intelligence (generic term)
+(noun)|reason|understanding|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|intellectual|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+intellection|1
+(noun)|thinking|thought|thought process|cerebration|mentation|higher cognitive process (generic term)
+intellectual|5
+(adj)|intelligence (related term)
+(adj)|rational|noetic|mental (similar term)
+(adj)|highbrow (similar term)|highbrowed (similar term)|rational (similar term)|reflective (similar term)|good (similar term)|serious (similar term)|sophisticated (similar term)|educated (related term)|mental (related term)|scholarly (related term)|nonintellectual (antonym)
+(adj)|cerebral|emotional (antonym)
+(noun)|intellect|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+intellectual nourishment|1
+(noun)|food|food for thought|content (generic term)|cognitive content (generic term)|mental object (generic term)
+intellectual property|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+intellectualisation|1
+(noun)|intellectualization|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+intellectualization|1
+(noun)|intellectualisation|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+intelligence|5
+(noun)|ability (generic term)|power (generic term)|stupidity (antonym)
+(noun)|intelligence service|intelligence agency|administrative unit (generic term)|administrative body (generic term)
+(noun)|intelligence information|information (generic term)|info (generic term)
+(noun)|news|tidings|word|information (generic term)|info (generic term)
+(noun)|intelligence activity|intelligence operation|information gathering (generic term)
+intelligence activity|1
+(noun)|intelligence|intelligence operation|information gathering (generic term)
+intelligence agency|1
+(noun)|intelligence|intelligence service|administrative unit (generic term)|administrative body (generic term)
+intelligence agent|1
+(noun)|secret agent|intelligence officer|operative|agent (generic term)
+intelligence analyst|1
+(noun)|analyst (generic term)
+intelligence cell|1
+(noun)|terrorist cell (generic term)|radical cell (generic term)
+intelligence community|1
+(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+intelligence information|1
+(noun)|intelligence|information (generic term)|info (generic term)
+intelligence officer|1
+(noun)|secret agent|intelligence agent|operative|agent (generic term)
+intelligence operation|1
+(noun)|intelligence|intelligence activity|information gathering (generic term)
+intelligence quotient|1
+(noun)|IQ|I.Q.|ratio (generic term)
+intelligence service|1
+(noun)|intelligence|intelligence agency|administrative unit (generic term)|administrative body (generic term)
+intelligence test|1
+(noun)|IQ test|test (generic term)|mental test (generic term)|mental testing (generic term)|psychometric test (generic term)
+intelligent|4
+(adj)|agile (similar term)|nimble (similar term)|alert (similar term)|apt (similar term)|clever (similar term)|brainy (similar term)|brilliant (similar term)|smart as a whip (similar term)|bright (similar term)|smart (similar term)|natural (similar term)|born (similar term)|innate (similar term)|quick (similar term)|ready (similar term)|prehensile (similar term)|scintillating (similar term)|searching (similar term)|trenchant (similar term)|precocious (related term)|smart (related term)|unintelligent (antonym)
+(adj)|well-informed|sophisticated (similar term)
+(adj)|healthy|levelheaded|level-headed|sound|reasonable (similar term)|sensible (similar term)
+(adj)|reasoning|thinking|rational (similar term)
+intelligently|1
+(adv)|unintelligently (antonym)
+intelligentsia|1
+(noun)|clerisy|elite (generic term)|elite group (generic term)
+intelligibility|1
+(noun)|comprehensibility (generic term)|understandability (generic term)|unintelligibility (antonym)
+intelligible|2
+(adj)|apprehensible|graspable|perceivable|understandable|comprehensible (similar term)|comprehendible (similar term)
+(adj)|comprehensible (related term)|comprehendible (related term)|unintelligible (antonym)
+intelligibly|1
+(adv)|clearly|understandably|unintelligibly (antonym)
+intelnet|1
+(noun)|Intelnet|computer network (generic term)
+intemperance|3
+(noun)|unrestraint (generic term)|temperance (antonym)
+(noun)|intemperateness|vice (generic term)
+(noun)|intemperateness|self-indulgence|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+intemperate|3
+(adj)|inclement (related term)|temperate (antonym)
+(adj)|big (similar term)|heavy (similar term)|immoderate (related term)|intense (related term)|temperate (antonym)
+(adj)|hard|heavy|indulgent (similar term)
+intemperately|1
+(adv)|heavily|hard|lightly (antonym)
+intemperateness|2
+(noun)|intemperance|vice (generic term)
+(noun)|intemperance|self-indulgence|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+intend|4
+(verb)|mean|think|will (generic term)|wish (generic term)
+(verb)|destine|designate|specify|plan (generic term)
+(verb)|mean|convey (generic term)|impart (generic term)
+(verb)|mean|signify|stand for
+intended|2
+(adj)|conscious (similar term)|witting (similar term)|deliberate (similar term)|intentional (similar term)|knowing (similar term)|supposed (similar term)|well-intentioned (similar term)|well-meaning (similar term)|well-meant (similar term)|motivated (related term)|planned (related term)|premeditated (related term)|unintended (antonym)
+(adj)|attached (similar term)|committed (similar term)
+intense|3
+(adj)|aggravated (similar term)|bad (similar term)|big (similar term)|blood-and-guts (similar term)|cold (similar term)|concentrated (similar term)|consuming (similar term)|overwhelming (similar term)|deep (similar term)|exquisite (similar term)|keen (similar term)|extreme (similar term)|utmost (similar term)|uttermost (similar term)|fierce (similar term)|tearing (similar term)|vehement (similar term)|violent (similar term)|trigger-happy (similar term)|intensified (similar term)|intensive (similar term)|main (similar term)|profound (similar term)|raging (similar term)|screaming (similar term)|severe (similar term)|terrible (similar term)|wicked (similar term)|smart (similar term)|strong (similar term)|terrific (similar term)|thick (similar term)|deep (similar term)|unabated (similar term)|violent (similar term)|wild (similar term)|immoderate (related term)|intemperate (related term)|profound (related term)|mild (antonym)
+(adj)|acute|sharp (similar term)
+(adj)|vivid|saturated (similar term)|pure (similar term)
+intensification|1
+(noun)|increase (generic term)|step-up (generic term)
+intensified|1
+(adj)|intense (similar term)
+intensifier|1
+(noun)|intensive|modifier (generic term)|qualifier (generic term)
+intensify|4
+(verb)|escalate|step up|increase (generic term)|de-escalate (antonym)
+(verb)|compound|heighten|deepen|increase (generic term)
+(verb)|deepen|increase (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+intensifying|1
+(adj)|aggravating (similar term)|exacerbating (similar term)|exasperating (similar term)|augmentative (similar term)|enhancive (similar term)|deepening (similar term)|thickening (similar term)|heightening (similar term)|moderating (antonym)
+intension|1
+(noun)|connotation|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+intensional|1
+(adj)|connotative (similar term)
+intensity|4
+(noun)|strength|intensity level|magnitude (generic term)
+(noun)|intensiveness|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|volume|loudness|sound property (generic term)|softness (antonym)
+(noun)|saturation|chroma|vividness|color property (generic term)
+intensity level|1
+(noun)|intensity|strength|magnitude (generic term)
+intensive|4
+(adj)|intense (similar term)
+(adj)|modifier|qualifier (related term)
+(adj)|extensive (antonym)
+(noun)|intensifier|modifier (generic term)|qualifier (generic term)
+intensive care|1
+(noun)|medical care (generic term)|medical aid (generic term)
+intensive care unit|1
+(noun)|ICU|unit (generic term)|social unit (generic term)
+intensiveness|1
+(noun)|intensity|degree (generic term)|grade (generic term)|level (generic term)
+intent|3
+(adj)|captive|absorbed|engrossed|enwrapped|wrapped|attentive (similar term)
+(noun)|purpose|intention|aim|design|goal (generic term)|end (generic term)
+(noun)|purport|spirit|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+intent on|1
+(adj)|bent|bent on|dead set|out to|resolute (similar term)
+intention|3
+(noun)|purpose|intent|aim|design|goal (generic term)|end (generic term)
+(noun)|goal (generic term)|end (generic term)
+(noun)|volition (generic term)|willing (generic term)
+intentional|3
+(adj)|deliberate|knowing|intended (similar term)
+(adj)|designed|fashioned (similar term)|undesigned (antonym)
+(adj)|willful|wilful|voluntary (similar term)
+intentionality|1
+(noun)|deliberation (generic term)|deliberateness (generic term)
+intentionally|1
+(adv)|deliberately|designedly|on purpose|purposely|advisedly|by choice|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+intentness|1
+(noun)|engrossment|assiduity (generic term)|assiduousness (generic term)|concentration (generic term)
+inter|1
+(verb)|bury|entomb|inhume|lay to rest|lay (generic term)|put down (generic term)|repose (generic term)
+inter-group communication|1
+(noun)|liaison|link|contact|channel (generic term)|communication channel (generic term)|line (generic term)
+inter-service support|1
+(noun)|logistic support (generic term)|logistic assistance (generic term)
+inter-services intelligence|1
+(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency (generic term)
+inter vivos trust|1
+(noun)|living trust|trust (generic term)
+interact|1
+(verb)|act (generic term)|move (generic term)
+interaction|2
+(noun)|action (generic term)
+(noun)|fundamental interaction|physical phenomenon (generic term)
+interactional|1
+(adj)|interactive|reciprocal (similar term)|mutual (similar term)
+interactive|2
+(adj)|synergistic|antagonistic (antonym)
+(adj)|interactional|reciprocal (similar term)|mutual (similar term)
+interactive multimedia|1
+(noun)|hypermedia|hypermedia system|interactive multimedia system|multimedia (generic term)|multimedia system (generic term)
+interactive multimedia system|1
+(noun)|hypermedia|hypermedia system|interactive multimedia|multimedia (generic term)|multimedia system (generic term)
+interagency support|1
+(noun)|interdepartmental support|logistic support (generic term)|logistic assistance (generic term)
+interahamwe|1
+(noun)|Army for the Liberation of Rwanda|ALIR|Former Armed Forces|FAR|Interahamwe|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+interbank loan|1
+(noun)|bank loan (generic term)
+interbrain|1
+(noun)|diencephalon|betweenbrain|thalmencephalon|neural structure (generic term)
+interbred|3
+(adj)|crossed|hybrid|intercrossed|crossbred (similar term)
+(adj)|crossbred|outbred (similar term)
+(adj)|inbred (similar term)
+interbreed|1
+(verb)|crossbreed|cross|hybridize|hybridise|breed (generic term)
+interbreeding|2
+(noun)|hybridization|hybridisation|crossbreeding|crossing|cross|hybridizing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+(noun)|miscegenation|crossbreeding|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+intercalary|1
+(adj)|additive (similar term)
+intercalary year|1
+(noun)|leap year|366 days|bissextile year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+intercalate|1
+(verb)|add (generic term)
+intercalation|1
+(noun)|embolism|time interval (generic term)|interval (generic term)
+intercapitular vein|1
+(noun)|vena intercapitalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+intercede|1
+(verb)|mediate|intermediate|liaise|arbitrate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+intercellular|1
+(adj)|living thing|animate thing (related term)
+intercellular substance|1
+(noun)|matrix|ground substance|body substance (generic term)
+intercept|3
+(noun)|point (generic term)
+(verb)|stop|catch (generic term)|grab (generic term)|take hold of (generic term)
+(verb)|wiretap|tap|bug|listen in (generic term)|eavesdrop (generic term)
+interception|2
+(noun)|prevention (generic term)|bar (generic term)
+(noun)|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+interceptor|1
+(noun)|fighter (generic term)|fighter aircraft (generic term)|attack aircraft (generic term)
+intercession|2
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|intervention|engagement (generic term)|participation (generic term)|involvement (generic term)|involution (generic term)
+intercessor|1
+(noun)|mediator|go-between|intermediator|intermediary|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+interchange|6
+(noun)|junction (generic term)
+(noun)|reciprocation|give-and-take|interaction (generic term)
+(noun)|exchange|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(verb)|exchange|change|transfer (generic term)
+(verb)|counterchange|transpose|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tack|switch|alternate|flip|flip-flop|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+interchangeability|1
+(noun)|exchangeability|interchangeableness|fungibility|changeableness (generic term)|changeability (generic term)|unexchangeability (antonym)
+interchangeable|2
+(adj)|symmetrical (similar term)|symmetric (similar term)
+(adj)|exchangeable|similar|standardized|standardised|replaceable (similar term)
+interchangeableness|1
+(noun)|exchangeability|interchangeability|fungibility|changeableness (generic term)|changeability (generic term)|unexchangeability (antonym)
+interchurch|1
+(adj)|interdenominational|nonsectarian (similar term)|unsectarian (similar term)
+intercollegiate|1
+(adj)|extramural (similar term)
+intercom|1
+(noun)|intercommunication system|communication system (generic term)
+intercom speaker|1
+(noun)|squawk box|squawker|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+intercommunicate|2
+(verb)|complect (generic term)|interconnect (generic term)|interlink (generic term)
+(verb)|communicate|interact (generic term)
+intercommunication|1
+(noun)|communication (generic term)|communicating (generic term)
+intercommunication system|1
+(noun)|intercom|communication system (generic term)
+intercommunion|1
+(noun)|Communion (generic term)|Holy Communion (generic term)|sacramental manduction (generic term)|manduction (generic term)
+interconnect|2
+(verb)|complect|interlink|connect (generic term)|link (generic term)|link up (generic term)|join (generic term)|unite (generic term)
+(verb)|interlink|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+interconnected|2
+(adj)|interrelated|reticulate (similar term)|reticular (similar term)
+(adj)|coordinated|co-ordinated|unified|integrated (similar term)
+interconnectedness|1
+(noun)|interconnection|connection (generic term)|link (generic term)|connectedness (generic term)
+interconnection|2
+(noun)|interconnectedness|connection (generic term)|link (generic term)|connectedness (generic term)
+(noun)|joining (generic term)|connection (generic term)|connexion (generic term)
+intercontinental|1
+(adj)|worldwide (similar term)|world-wide (similar term)|continental (antonym)
+intercontinental ballistic missile|1
+(noun)|ICBM|ballistic missile (generic term)
+intercostal|2
+(adj)|bone|os (related term)
+(noun)|intercostal muscle|musculus intercostalis|skeletal muscle (generic term)|striated muscle (generic term)
+intercostal artery|1
+(noun)|arteria intercostalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+intercostal muscle|1
+(noun)|intercostal|musculus intercostalis|skeletal muscle (generic term)|striated muscle (generic term)
+intercostal vein|1
+(noun)|vena intercostalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+intercourse|2
+(noun)|social intercourse|intercommunication (generic term)
+(noun)|sexual intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+intercrossed|1
+(adj)|crossed|hybrid|interbred|crossbred (similar term)
+interdenominational|1
+(adj)|interchurch|nonsectarian (similar term)|unsectarian (similar term)
+interdepartmental|1
+(adj)|division (related term)|intradepartmental (antonym)
+interdepartmental support|1
+(noun)|interagency support|logistic support (generic term)|logistic assistance (generic term)
+interdepend|1
+(verb)|hang together|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+interdependence|1
+(noun)|mutuality|interdependency|reciprocality (generic term)|reciprocity (generic term)
+interdependency|1
+(noun)|mutuality|interdependence|reciprocality (generic term)|reciprocity (generic term)
+interdependent|1
+(adj)|mutualist|mutually beneficial|dependent (similar term)
+interdict|4
+(noun)|censure (generic term)|animadversion (generic term)
+(noun)|interdiction|court order (generic term)|prohibition (generic term)|ban (generic term)|proscription (generic term)
+(verb)|destroy (generic term)|destruct (generic term)
+(verb)|forbid|prohibit|proscribe|veto|disallow|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+interdiction|2
+(noun)|prohibition (generic term)
+(noun)|interdict|court order (generic term)|prohibition (generic term)|ban (generic term)|proscription (generic term)
+interdiction fire|1
+(noun)|fire (generic term)|firing (generic term)
+interdisciplinary|1
+(adj)|knowledge domain|knowledge base (related term)
+interest|10
+(noun)|involvement|curiosity (generic term)|wonder (generic term)
+(noun)|interestingness|power (generic term)|powerfulness (generic term)|uninterestingness (antonym)
+(noun)|sake|benefit (generic term)|welfare (generic term)
+(noun)|fixed charge (generic term)|fixed cost (generic term)|fixed costs (generic term)
+(noun)|pastime|pursuit|diversion (generic term)|recreation (generic term)
+(noun)|stake|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|interest group|social group (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|bore (antonym)
+(verb)|concern|occupy|worry
+(verb)|matter to|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+interest-bearing|1
+(adj)|fixed charge|fixed cost|fixed costs (related term)
+interest expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+interest group|1
+(noun)|interest|social group (generic term)
+interest rate|1
+(noun)|rate of interest|rate (generic term)|charge per unit (generic term)
+interested|2
+(adj)|curious (similar term)|fascinated (similar term)|uninterested (antonym)
+(adj)|concerned|involved (similar term)
+interestedness|1
+(noun)|cognitive state (generic term)|state of mind (generic term)
+interesting|1
+(adj)|absorbing (similar term)|engrossing (similar term)|fascinating (similar term)|gripping (similar term)|riveting (similar term)|intriguing (similar term)|newsworthy (similar term)|unputdownable (similar term)|exciting (related term)|stimulating (related term)|uninteresting (antonym)
+interestingly|1
+(adv)|uninterestingly (antonym)
+interestingness|1
+(noun)|interest|power (generic term)|powerfulness (generic term)|uninterestingness (antonym)
+interface|4
+(noun)|surface (generic term)
+(noun)|user interface|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|overlap (generic term)|convergence (generic term)|intersection (generic term)
+(noun)|port|computer circuit (generic term)
+interfacial|1
+(adj)|surface (related term)
+interfacial surface tension|1
+(noun)|interfacial tension|surface tension (generic term)
+interfacial tension|1
+(noun)|interfacial surface tension|surface tension (generic term)
+interfaith|1
+(adj)|religious (similar term)
+interfere|2
+(verb)|impede (generic term)|hinder (generic term)
+(verb)|intervene|step in|interpose|interact (generic term)
+interference|5
+(noun)|intervention|foreign policy (generic term)|noninterference (antonym)|nonintervention (antonym)
+(noun)|hindrance|hinderance|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|noise|disturbance|trouble (generic term)
+(noun)|blocking (generic term)|block (generic term)
+(noun)|hindrance|hinderance|hitch|preventive|preventative|encumbrance|incumbrance|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+interfering|1
+(adj)|meddlesome|meddling|officious|busy|busybodied|intrusive (similar term)
+interferometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+interferon|1
+(noun)|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+intergalactic|1
+(adj)|collection|aggregation|accumulation|assemblage (related term)
+intergalactic space|1
+(noun)|region (generic term)|part (generic term)
+interim|2
+(adj)|impermanent (similar term)|temporary (similar term)
+(noun)|meantime|meanwhile|lag|time interval (generic term)|interval (generic term)
+interim overhaul|1
+(noun)|overhaul (generic term)|inspection and repair (generic term)|service (generic term)
+interior|8
+(adj)|indoor (similar term)|inside (similar term)|indoor (related term)|exterior (antonym)
+(adj)|home|internal|national|domestic (similar term)
+(adj)|inner|internal|inward (similar term)
+(adj)|internal (similar term)
+(adj)|midland|upcountry|inland (similar term)
+(noun)|inside|region (generic term)|part (generic term)|outside (antonym)
+(noun)|inside|surface (generic term)|outside (antonym)
+(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department (generic term)
+interior angle|1
+(noun)|internal angle|angle (generic term)
+interior decoration|2
+(noun)|decor|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|interior design|trade (generic term)|craft (generic term)
+interior decorator|1
+(noun)|interior designer|designer|house decorator|room decorator|decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+interior department|1
+(noun)|Department of the Interior|Interior Department|Interior|DoI|executive department (generic term)
+interior design|2
+(noun)|interior decoration|trade (generic term)|craft (generic term)
+(noun)|architecture (generic term)
+interior designer|1
+(noun)|designer|interior decorator|house decorator|room decorator|decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+interior door|1
+(noun)|door (generic term)
+interior live oak|1
+(noun)|Quercus wislizenii|Quercus wizlizenii|live oak (generic term)
+interior monologue|1
+(noun)|prose (generic term)
+interior secretary|2
+(noun)|Secretary of the Interior|Interior Secretary|secretary (generic term)
+(noun)|Secretary of the Interior|Interior Secretary|secretaryship (generic term)
+interiorise|1
+(verb)|internalize|internalise|interiorize|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+interiorize|1
+(verb)|internalize|internalise|interiorise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+interject|1
+(verb)|come in|interpose|put in|throw in|inject|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+interjection|2
+(noun)|ejaculation|exclamation (generic term)|exclaiming (generic term)
+(noun)|interposition|interpolation|interpellation|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+interlace|2
+(verb)|intertwine|twine|entwine|enlace|lace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+(verb)|lock|interlock|hold (generic term)|take hold (generic term)
+interlaced|1
+(adj)|fretted|latticed|latticelike|reticulate (similar term)|reticular (similar term)
+interlacing|1
+(adj)|interlinking|interlocking|interwoven|complex (similar term)
+interlaken|1
+(noun)|Interlaken|town (generic term)
+interlanguage|1
+(noun)|lingua franca|koine|language (generic term)|linguistic communication (generic term)
+interlard|1
+(verb)|intersperse|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+interlayer|1
+(noun)|layer (generic term)|bed (generic term)
+interleaf|1
+(noun)|leaf (generic term)|folio (generic term)
+interleave|3
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|intersperse (generic term)
+(verb)|intersperse (generic term)|interlard (generic term)
+interleukin|1
+(noun)|lymphokine (generic term)
+interlineal|1
+(adj)|interlinear|text|textual matter (related term)
+interlinear|1
+(adj)|interlineal|text|textual matter (related term)
+interlingua|1
+(noun)|Interlingua|artificial language (generic term)
+interlingual rendition|1
+(noun)|translation|rendering|version|written record (generic term)|written account (generic term)
+interlink|2
+(verb)|complect|interconnect|connect (generic term)|link (generic term)|link up (generic term)|join (generic term)|unite (generic term)
+(verb)|interconnect|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+interlinking|1
+(adj)|interlacing|interlocking|interwoven|complex (similar term)
+interlock|5
+(noun)|ignition interlock|device (generic term)
+(noun)|mesh|meshing|interlocking|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+(verb)|mesh|organize (generic term)|organise (generic term)|coordinate (generic term)
+(verb)|lock|interlace|hold (generic term)|take hold (generic term)
+(verb)|lock|embrace (generic term)|hug (generic term)|bosom (generic term)|squeeze (generic term)
+interlocking|3
+(adj)|interlacing|interlinking|interwoven|complex (similar term)
+(noun)|engagement|mesh|meshing|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|mesh|meshing|interlock|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+interlocutor|2
+(noun)|middleman|minstrel (generic term)
+(noun)|conversational partner|conversationalist (generic term)|conversationist (generic term)|schmoozer (generic term)
+interlocutory|1
+(adj)|talk|talking (related term)
+interlocutory injunction|1
+(noun)|temporary injunction|injunction (generic term)|enjoining (generic term)|enjoinment (generic term)|cease and desist order (generic term)
+interlope|1
+(verb)|intervene (generic term)|step in (generic term)|interfere (generic term)|interpose (generic term)
+interloper|1
+(noun)|intruder|trespasser|entrant (generic term)|unwelcome person (generic term)|persona non grata (generic term)
+interlude|3
+(noun)|time interval (generic term)|interval (generic term)
+(noun)|intermezzo|entr'acte|show (generic term)
+(verb)|perform (generic term)
+intermarriage|2
+(noun)|exogamy|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)|endogamy (antonym)
+(noun)|endogamy|inmarriage|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)|exogamy (antonym)
+intermarry|1
+(verb)|marry (generic term)|get married (generic term)|wed (generic term)|conjoin (generic term)|hook up with (generic term)|get hitched with (generic term)|espouse (generic term)
+intermaxillary suture|1
+(noun)|sutura intermaxillaris|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+intermediary|1
+(noun)|mediator|go-between|intermediator|intercessor|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+intermediate|4
+(adj)|grey (similar term)|gray (similar term)|halfway (similar term)|in-between (similar term)|mediate (similar term)|middle (similar term)|junior (similar term)|third-year (similar term)|next-to-last (similar term)|second (similar term)|sophomore (similar term)|second-year (similar term)|first (antonym)|last (antonym)
+(adj)|average|medium|moderate (similar term)
+(noun)|chemical (generic term)|chemical substance (generic term)
+(verb)|intercede|mediate|liaise|arbitrate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+intermediate host|1
+(noun)|host (generic term)
+intermediate temporal artery|1
+(noun)|arteria temporalis intermedia|temporal artery (generic term)
+intermediate vector boson|1
+(noun)|gauge boson (generic term)
+intermediate wheatgrass|1
+(noun)|Agropyron intermedium|Elymus hispidus|wheatgrass (generic term)|wheat-grass (generic term)
+intermediation|1
+(noun)|mediation|intervention (generic term)|intercession (generic term)
+intermediator|1
+(noun)|mediator|go-between|intermediary|intercessor|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+interment|1
+(noun)|burial|entombment|inhumation|sepulture|funeral (generic term)
+intermeshed|2
+(adj)|enmeshed|tangled (similar term)
+(adj)|engaged|meshed|geared (similar term)
+intermezzo|3
+(noun)|movement (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|interlude|entr'acte|show (generic term)
+interminable|1
+(adj)|endless|eternal|long (similar term)
+interminably|1
+(adv)|endlessly
+intermingle|1
+(verb)|blend|intermix|immingle|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+intermingled|1
+(adj)|amalgamated|mixed|integrated|blended (similar term)
+intermission|2
+(noun)|pause (generic term)
+(noun)|pause|break|interruption|suspension|time interval (generic term)|interval (generic term)
+intermit|1
+(verb)|pause|break|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+intermittence|1
+(noun)|intermittency|irregularity (generic term)|unregularity (generic term)
+intermittency|1
+(noun)|intermittence|irregularity (generic term)|unregularity (generic term)
+intermittent|2
+(adj)|sporadic (similar term)
+(adj)|periodic (similar term)|periodical (similar term)
+intermittent claudication|1
+(noun)|lameness (generic term)|limping (generic term)|gimp (generic term)|gimpiness (generic term)|gameness (generic term)|claudication (generic term)
+intermittent cramp|1
+(noun)|tetany|tetanilla|intermittent tetanus|apyretic tetanus|syndrome (generic term)
+intermittent tetanus|1
+(noun)|tetany|tetanilla|intermittent cramp|apyretic tetanus|syndrome (generic term)
+intermix|1
+(verb)|blend|immingle|intermingle|mix (generic term)|mingle (generic term)|commix (generic term)|unify (generic term)|amalgamate (generic term)
+intermixture|3
+(noun)|concoction|mixture|foodstuff (generic term)|food product (generic term)
+(noun)|admixture|ingredient (generic term)
+(noun)|mix|commixture|admixture|mixture|mixing|combination (generic term)|combining (generic term)|compounding (generic term)
+intermolecular|1
+(adj)|unit|building block (related term)
+intermural|1
+(adj)|extramural (similar term)
+intern|3
+(noun)|interne|houseman|medical intern|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(verb)|confine (generic term)|detain (generic term)
+(verb)|work (generic term)
+internal|5
+(adj)|inner (similar term)|interior (similar term)|internecine (similar term)|intrinsic (similar term)|inside (related term)|external (antonym)
+(adj)|intragroup|intramural (similar term)
+(adj)|home|interior|national|domestic (similar term)
+(adj)|inner|interior|inward (similar term)
+(adj)|inner|intimate|intrinsic (similar term)|intrinsical (similar term)
+internal-combustion engine|1
+(noun)|ICE|heat engine (generic term)
+internal angle|1
+(noun)|interior angle|angle (generic term)
+internal auditor|1
+(noun)|auditor (generic term)
+internal auditory artery|1
+(noun)|labyrinthine artery|artery of the labyrinth|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+internal auditory vein|1
+(noun)|labyrinthine vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+internal carotid artery|1
+(noun)|carotid artery (generic term)|arteria carotis (generic term)
+internal cerebral vein|1
+(noun)|vena cerebrum internus|cerebral vein (generic term)|vena cerebri (generic term)
+internal combustion|1
+(noun)|combustion (generic term)|burning (generic term)
+internal control|1
+(noun)|control (generic term)
+internal drive|1
+(noun)|drive (generic term)
+internal ear|1
+(noun)|inner ear|labyrinth|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+internal iliac artery|1
+(noun)|hypogastric artery|iliac artery (generic term)|arteria iliaca (generic term)
+internal iliac vein|1
+(noun)|hypogastric vein|iliac vein (generic term)|vena iliaca (generic term)
+internal jugular vein|1
+(noun)|jugular vein (generic term)|vena jugularis (generic term)|jugular (generic term)
+internal maxillary artery|1
+(noun)|maxillary artery (generic term)|arteria maxillaris (generic term)
+internal medicine|1
+(noun)|general medicine|medicine (generic term)|medical specialty (generic term)
+internal organ|1
+(noun)|viscus|organ (generic term)
+internal representation|1
+(noun)|representation|mental representation|content (generic term)|cognitive content (generic term)|mental object (generic term)
+internal respiration|1
+(noun)|respiration|cellular respiration|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+internal revenue|1
+(noun)|tax income (generic term)|taxation (generic term)|tax revenue (generic term)|revenue (generic term)
+internal revenue agent|1
+(noun)|tax collector|taxman|exciseman|collector of internal revenue|bureaucrat (generic term)|administrative official (generic term)
+internal revenue service|1
+(noun)|Internal Revenue Service|IRS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+internal rhyme|1
+(noun)|rhyme (generic term)|rime (generic term)
+internal secretion|1
+(noun)|hormone|endocrine|secretion (generic term)
+internal spermatic artery|1
+(noun)|testicular artery|arteria testicularis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+internalisation|1
+(noun)|internalization|incorporation|learning (generic term)|acquisition (generic term)
+internalise|1
+(verb)|internalize|interiorize|interiorise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+internalization|1
+(noun)|internalisation|incorporation|learning (generic term)|acquisition (generic term)
+internalize|1
+(verb)|internalise|interiorize|interiorise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+internally|1
+(adv)|externally (antonym)
+internasal suture|1
+(noun)|sutura internasalis|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+international|3
+(adj)|global (similar term)|planetary (similar term)|world (similar term)|worldwide (similar term)|world-wide (similar term)|internationalist (similar term)|internationalistic (similar term)|multinational (similar term)|transnational (similar term)|supranational (similar term)|foreign (related term)|national (antonym)
+(adj)|external|outside|foreign (similar term)
+(noun)|International|socialism (generic term)|socialist economy (generic term)
+international affairs|1
+(noun)|world affairs|affairs (generic term)
+international ampere|1
+(noun)|ampere|current unit (generic term)
+international association of lions clubs|1
+(noun)|Lions Club|International Association of Lions clubs|service club (generic term)
+international atomic energy agency|1
+(noun)|International Atomic Energy Agency|IAEA|United Nations agency (generic term)|UN agency (generic term)
+international bank for reconstruction and development|1
+(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency (generic term)|UN agency (generic term)
+international candle|1
+(noun)|luminous intensity unit (generic term)|candlepower unit (generic term)
+international civil aviation organization|1
+(noun)|International Civil Aviation Organization|ICAO|United Nations agency (generic term)|UN agency (generic term)
+international court of justice|1
+(noun)|International Court of Justice|World Court|court (generic term)|tribunal (generic term)|judicature (generic term)
+international date line|1
+(noun)|dateline|date line|International Date Line|meridian (generic term)|line of longitude (generic term)
+international development association|1
+(noun)|International Development Association|IDA|United Nations agency (generic term)|UN agency (generic term)
+international finance corporation|1
+(noun)|International Finance Corporation|IFC|United Nations agency (generic term)|UN agency (generic term)
+international flight|1
+(noun)|flight (generic term)|domestic flight (antonym)
+international grandmaster|1
+(noun)|International Grandmaster|grandmaster (generic term)
+international intelligence agency|1
+(noun)|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+international islamic front for jihad against jews and crusaders|1
+(noun)|International Islamic Front for Jihad against Jews and Crusaders|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+international jihad|1
+(noun)|jihad|jehad|war (generic term)|warfare (generic term)
+international labor organization|1
+(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency (generic term)|UN agency (generic term)
+international labour organization|1
+(noun)|International Labor Organization|International Labour Organization|ILO|United Nations agency (generic term)|UN agency (generic term)
+international law|1
+(noun)|law of nations|law (generic term)|jurisprudence (generic term)|civil law (antonym)
+international law enforcement agency|1
+(noun)|administrative unit (generic term)|administrative body (generic term)
+international logistic support|1
+(noun)|mutual aid|logistic support (generic term)|logistic assistance (generic term)
+international maritime organization|1
+(noun)|International Maritime Organization|IMO|United Nations agency (generic term)|UN agency (generic term)
+international monetary fund|1
+(noun)|International Monetary Fund|IMF|United Nations agency (generic term)|UN agency (generic term)
+international morse code|1
+(noun)|Morse|Morse code|international Morse code|code (generic term)
+international nautical mile|1
+(noun)|nautical mile|mile|mi|naut mi|knot|air mile|nautical linear unit (generic term)
+international organisation|1
+(noun)|world organization|world organisation|international organization|global organization|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+international organization|1
+(noun)|world organization|world organisation|international organisation|global organization|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+international pitch|1
+(noun)|concert pitch|philharmonic pitch|pitch (generic term)
+international relations and security network|1
+(noun)|International Relations and Security Network|ISN|international intelligence agency (generic term)
+international scale|1
+(noun)|Celsius scale|centigrade scale|temperature scale (generic term)
+international society for krishna consciousness|1
+(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect (generic term)|religious sect (generic term)|religious order (generic term)
+international system|1
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+international system of units|1
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+international terrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+international wanted notice|1
+(noun)|International Wanted Notice|Red Notice|wanted notice (generic term)|wanted poster (generic term)
+international waters|1
+(noun)|high sea|body of water (generic term)|water (generic term)|territorial waters (antonym)|territorial waters (antonym)
+internationale|1
+(noun)|Internationale|hymn (generic term)|anthem (generic term)
+internationalisation|1
+(noun)|internationalization|group action (generic term)
+internationalise|2
+(verb)|internationalize|control (generic term)|command (generic term)
+(verb)|internationalize|change (generic term)|alter (generic term)|modify (generic term)
+internationalism|2
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|nationalism (antonym)|nationalism (antonym)
+(noun)|internationality|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+internationalist|3
+(adj)|internationalistic|international (similar term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|socialist (generic term)
+internationalistic|1
+(adj)|internationalist|international (similar term)
+internationality|1
+(noun)|internationalism|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+internationalization|1
+(noun)|internationalisation|group action (generic term)
+internationalize|2
+(verb)|internationalise|control (generic term)|command (generic term)
+(verb)|internationalise|change (generic term)|alter (generic term)|modify (generic term)
+interne|1
+(noun)|intern|houseman|medical intern|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+internecine|2
+(adj)|internal (similar term)
+(adj)|mutually ruinous|bloody (similar term)
+internee|1
+(noun)|prisoner (generic term)|captive (generic term)
+internet|1
+(noun)|net|cyberspace|computer network (generic term)
+internet explorer|1
+(noun)|Internet Explorer|Explorer|IE|browser (generic term)|web browser (generic term)
+internet site|1
+(noun)|web site|website|site|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+internist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+internment|3
+(noun)|captivity (generic term)|imprisonment (generic term)|incarceration (generic term)|immurement (generic term)
+(noun)|imprisonment|confinement (generic term)
+(noun)|impoundment|impounding|poundage|seizure (generic term)
+internment camp|1
+(noun)|prison camp|prisoner of war camp|POW camp|camp (generic term)
+internode|1
+(noun)|segment (generic term)
+internship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+internuncio|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+interoception|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+interoceptive|1
+(adj)|sensitivity|sensitiveness|sensibility (related term)
+interoceptor|1
+(noun)|enteroceptor|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+interoperability|1
+(noun)|ability (generic term)
+interoperable|1
+(adj)|practical (similar term)
+interparietal suture|1
+(noun)|sagittal suture|sutura sagittalis|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+interpellate|1
+(verb)|question (generic term)|query (generic term)
+interpellation|2
+(noun)|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+(noun)|interjection|interposition|interpolation|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+interpenetrate|2
+(verb)|permeate|penetrate (generic term)|perforate (generic term)
+(verb)|permeate|pervade|penetrate|diffuse|imbue|riddle|penetrate (generic term)|perforate (generic term)
+interpenetration|2
+(noun)|penetration (generic term)|incursion (generic term)
+(noun)|permeation|penetration (generic term)
+interpersonal|1
+(adj)|social (similar term)
+interpersonal chemistry|1
+(noun)|chemistry|alchemy|social relation (generic term)
+interphalangeal joint|1
+(noun)|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+interphone|1
+(noun)|intercommunication system (generic term)|intercom (generic term)
+interplanetary|1
+(adj)|celestial body|heavenly body (related term)
+interplanetary dust|1
+(noun)|dust (generic term)
+interplanetary gas|1
+(noun)|plasma (generic term)
+interplanetary medium|1
+(noun)|interplanetary space (generic term)
+interplanetary space|1
+(noun)|region (generic term)|part (generic term)
+interplay|1
+(noun)|interaction (generic term)
+interpol|1
+(noun)|Interpol|international law enforcement agency (generic term)
+interpolate|2
+(verb)|extrapolate|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|alter|falsify|edit (generic term)|redact (generic term)
+interpolation|3
+(noun)|insertion|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|calculation (generic term)|computation (generic term)|figuring (generic term)|reckoning (generic term)
+(noun)|interjection|interposition|interpellation|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+interpose|3
+(verb)|introduce (generic term)
+(verb)|interject|come in|put in|throw in|inject|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|intervene|step in|interfere|interact (generic term)
+interposition|2
+(noun)|interjection|interpolation|interpellation|break (generic term)|interruption (generic term)|disruption (generic term)|gap (generic term)
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+interpret|6
+(verb)|construe|see|understand (generic term)|construe with (related term)
+(verb)|rede|explain (generic term)|explicate (generic term)
+(verb)|render|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|represent|re-create (generic term)
+(verb)|translate|render|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|understand|read|translate|understand (generic term)
+interpretable|1
+(adj)|explainable|explicable (similar term)
+interpretation|4
+(noun)|reading|version|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|rendition|rendering|performance (generic term)
+(noun)|explanation (generic term)|account (generic term)
+(noun)|interpreting|rendition|rendering|explanation (generic term)
+interpretative|1
+(adj)|interpretive|instructive (similar term)|informative (similar term)
+interpretative dance|1
+(noun)|interpretive dance|interpretive dancing|interpretative dancing|modern dance (generic term)
+interpretative dancing|1
+(noun)|interpretive dance|interpretive dancing|interpretative dance|modern dance (generic term)
+interpreted|1
+(adj)|taken|understood (similar term)
+interpreter|4
+(noun)|translator|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|spokesperson|representative|voice|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|interpretive program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+interpreting|1
+(noun)|interpretation|rendition|rendering|explanation (generic term)
+interpretive|1
+(adj)|interpretative|instructive (similar term)|informative (similar term)
+interpretive dance|1
+(noun)|interpretive dancing|interpretative dance|interpretative dancing|modern dance (generic term)
+interpretive dancing|1
+(noun)|interpretive dance|interpretative dance|interpretative dancing|modern dance (generic term)
+interpretive program|1
+(noun)|interpreter|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+interracial|2
+(adj)|racial (similar term)
+(adj)|mixed|integrated (similar term)
+interred|1
+(adj)|buried|inhumed|belowground (similar term)|unburied (antonym)
+interreflection|1
+(noun)|reflection (generic term)|reflexion (generic term)
+interregnum|1
+(noun)|interim (generic term)|meantime (generic term)|meanwhile (generic term)|lag (generic term)
+interrelate|2
+(verb)|relate|be (generic term)
+(verb)|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+interrelated|1
+(adj)|interconnected|reticulate (similar term)|reticular (similar term)
+interrelatedness|1
+(noun)|interrelation|interrelationship|relation (generic term)
+interrelation|1
+(noun)|interrelationship|interrelatedness|relation (generic term)
+interrelationship|1
+(noun)|interrelation|interrelatedness|relation (generic term)
+interrogate|2
+(verb)|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+(verb)|question|ask (generic term)
+interrogation|4
+(noun)|question|interrogative|interrogative sentence|sentence (generic term)
+(noun)|transmission (generic term)
+(noun)|examination|interrogatory|questioning (generic term)|inquiring (generic term)
+(noun)|question|inquiry|enquiry|query|questioning (generic term)|inquiring (generic term)|answer (antonym)
+interrogation point|1
+(noun)|question mark|punctuation (generic term)|punctuation mark (generic term)
+interrogative|4
+(adj)|mood|mode|modality (related term)
+(adj)|interrogatory|asking|declaratory (antonym)|declarative (antonym)
+(noun)|question|interrogation|interrogative sentence|sentence (generic term)
+(noun)|interrogative mood|mood (generic term)|mode (generic term)|modality (generic term)
+interrogative mood|1
+(noun)|interrogative|mood (generic term)|mode (generic term)|modality (generic term)
+interrogative sentence|1
+(noun)|question|interrogation|interrogative|sentence (generic term)
+interrogatively|1
+(adv)|curiously|inquisitively
+interrogator|1
+(noun)|inquisitor|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+interrogatory|2
+(adj)|interrogative|asking|declaratory (antonym)|declarative (antonym)
+(noun)|interrogation|examination|questioning (generic term)|inquiring (generic term)
+interrupt|5
+(noun)|signal (generic term)
+(verb)|disrupt|break up|cut off|break (generic term)|break off (generic term)|discontinue (generic term)|stop (generic term)
+(verb)|disturb|act (generic term)|move (generic term)
+(verb)|disrupt|chime in (generic term)|cut in (generic term)|put in (generic term)|butt in (generic term)|chisel in (generic term)|barge in (generic term)|break in (generic term)
+(verb)|break|end (generic term)|terminate (generic term)
+interrupted|2
+(adj)|discontinued (similar term)
+(adj)|fitful|off-and-on|broken (similar term)
+interrupted fern|1
+(noun)|Osmunda clatonia|flowering fern (generic term)|osmund (generic term)
+interrupter|1
+(noun)|device (generic term)
+interruption|3
+(noun)|break|disruption|gap|delay (generic term)|holdup (generic term)
+(noun)|break|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|pause|intermission|break|suspension|time interval (generic term)|interval (generic term)
+interscholastic|1
+(adj)|interschool|extramural (similar term)
+interschool|1
+(adj)|interscholastic|extramural (similar term)
+intersect|1
+(verb)|cross|meet (generic term)|run into (generic term)|encounter (generic term)|run across (generic term)|come across (generic term)|see (generic term)
+intersectant|1
+(adj)|decussate|intersecting|crossed (similar term)
+intersecting|1
+(adj)|decussate|intersectant|crossed (similar term)
+intersection|6
+(noun)|intersection point|point of intersection|point (generic term)
+(noun)|crossroad|crossway|crossing|carrefour|junction (generic term)
+(noun)|set (generic term)
+(noun)|product|cartesian product|set (generic term)
+(noun)|overlap|convergence|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|joining (generic term)|connection (generic term)|connexion (generic term)
+intersection point|1
+(noun)|intersection|point of intersection|point (generic term)
+intersex|1
+(noun)|hermaphrodite|gynandromorph|androgyne|epicine|epicine person|bisexual (generic term)|bisexual person (generic term)
+intersexual|2
+(adj)|sexual (similar term)
+(adj)|androgynous (similar term)
+interspecies|1
+(adj)|interspecific|intraspecies (antonym)
+interspecific|1
+(adj)|interspecies|intraspecies (antonym)
+interspersal|1
+(noun)|interspersion|combination (generic term)|combining (generic term)|compounding (generic term)
+intersperse|2
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|interlard|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+interspersion|1
+(noun)|interspersal|combination (generic term)|combining (generic term)|compounding (generic term)
+interstate|2
+(adj)|intrastate (antonym)
+(noun)|interstate highway|highway (generic term)|main road (generic term)
+interstate commerce commission|1
+(noun)|Interstate Commerce Commission|ICC|independent agency (generic term)
+interstate highway|1
+(noun)|interstate|highway (generic term)|main road (generic term)
+interstellar|1
+(adj)|celestial body|heavenly body (related term)
+interstellar medium|1
+(noun)|interstellar space (generic term)
+interstellar space|1
+(noun)|region (generic term)|part (generic term)
+interstice|2
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|opening (generic term)
+interstitial|1
+(adj)|opening (related term)
+interstitial cell-stimulating hormone|1
+(noun)|luteinizing hormone|LH|ICSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+interstitial fluid|1
+(noun)|extracellular fluid (generic term)|ECF (generic term)
+interstitial plasma cell pneumonia|1
+(noun)|pneumocytosis|pneumocystis pneumonia|pneumocystis carinii pneumonia|pneumonia (generic term)
+interstitial pneumonia|1
+(noun)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+interstitial tissue|1
+(noun)|animal tissue (generic term)|plant tissue (generic term)
+interstratify|1
+(verb)|stratify (generic term)
+intertidal|1
+(adj)|seashore|coast|seacoast|sea-coast (related term)
+intertribal|1
+(adj)|social group (related term)
+intertrigo|1
+(noun)|chafing (generic term)
+intertwine|3
+(verb)|twine|entwine|enlace|interlace|lace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+(verb)|tat|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|loop|knit (generic term)|entwine (generic term)
+intertwined|1
+(adj)|tangled (similar term)
+interval|4
+(noun)|time interval|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|set (generic term)
+(noun)|separation|distance (generic term)
+(noun)|musical interval|musical notation (generic term)
+intervene|3
+(verb)|step in|interfere|interpose|interact (generic term)
+(verb)|lie (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+intervening|2
+(adj)|middle (similar term)
+(adj)|disjunctive (similar term)
+intervenor|1
+(noun)|party (generic term)
+intervention|3
+(noun)|intercession|engagement (generic term)|participation (generic term)|involvement (generic term)|involution (generic term)
+(noun)|interference|foreign policy (generic term)|noninterference (antonym)|nonintervention (antonym)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+interventricular foramen|1
+(noun)|foramen of Monro|Monro's foramen|foramen (generic term)|hiatus (generic term)
+intervertebral|1
+(adj)|bone|os (related term)
+intervertebral disc|1
+(noun)|intervertebral disk|disk (generic term)|disc (generic term)|saucer (generic term)
+intervertebral disk|1
+(noun)|intervertebral disc|disk (generic term)|disc (generic term)|saucer (generic term)
+intervertebral vein|1
+(noun)|vena intervertebralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+interview|4
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+(noun)|consultation|audience|conference (generic term)|group discussion (generic term)
+(verb)|question|converse (generic term)|discourse (generic term)
+(verb)|converse (generic term)|discourse (generic term)
+interviewee|1
+(noun)|respondent (generic term)|responder (generic term)|answerer (generic term)
+interviewer|1
+(noun)|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+interweave|1
+(verb)|weave|twist (generic term)|twine (generic term)|distort (generic term)|unweave (antonym)
+interwoven|1
+(adj)|interlacing|interlinking|interlocking|complex (similar term)
+intestacy|1
+(noun)|situation (generic term)|state of affairs (generic term)
+intestate|1
+(adj)|testate (antonym)
+intestinal|1
+(adj)|enteric|enteral|internal organ|viscus (related term)
+intestinal artery|2
+(noun)|jejunal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+(noun)|ileal artery|arteria ileum|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+intestinal bypass|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+intestinal colic|1
+(noun)|colic|gripes|griping|pain (generic term)|hurting (generic term)
+intestinal flora|1
+(noun)|microorganism (generic term)|micro-organism (generic term)
+intestinal flu|1
+(noun)|gastroenteritis|stomach flu|inflammatory disease (generic term)
+intestinal juice|1
+(noun)|secretion (generic term)
+intestinal obstruction|1
+(noun)|ileus|obstruction (generic term)|blockage (generic term)|enteropathy (generic term)
+intestine|1
+(noun)|bowel|gut|internal organ (generic term)|viscus (generic term)
+inti|1
+(noun)|Peruvian monetary unit (generic term)
+intifada|1
+(noun)|intifadah|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+intifadah|1
+(noun)|intifada|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+intima|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+intimacy|3
+(noun)|familiarity|closeness|friendliness (generic term)
+(noun)|affair|affaire|liaison|involvement|amour|sexual relationship (generic term)
+(noun)|closeness|belonging (generic term)
+intimal|1
+(adj)|membrane|tissue layer (related term)
+intimate|9
+(adj)|close (similar term)
+(adj)|cozy|informal|friendly (similar term)
+(adj)|familiar|close (similar term)
+(adj)|sexual|sexy (similar term)
+(adj)|inner|internal|intrinsic (similar term)|intrinsical (similar term)
+(adj)|knowledgeable|versed|experienced (similar term)|experient (similar term)
+(noun)|confidant|friend (generic term)
+(verb)|adumbrate|insinuate|hint (generic term)|suggest (generic term)
+(verb)|suggest|imply (generic term)
+intimate apparel|1
+(noun)|lingerie|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+intimately|2
+(adv)|closely|nearly
+(adv)|well
+intimation|2
+(noun)|hint|breath|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|inkling|glimmering|glimmer|suggestion (generic term)
+intimidate|2
+(verb)|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+(verb)|restrain|discourage (generic term)
+intimidated|2
+(adj)|timid (similar term)
+(adj)|browbeaten|bullied|cowed|hangdog|afraid (similar term)
+intimidating|1
+(adj)|daunting|discouraging (similar term)
+intimidation|4
+(noun)|bullying|aggression (generic term)
+(noun)|discouragement (generic term)|disheartenment (generic term)|dismay (generic term)
+(noun)|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|determent|deterrence|discouragement (generic term)
+into the bargain|1
+(adv)|in the bargain
+into the wind|1
+(adv)|upwind|against the wind|downwind (antonym)
+intolerable|1
+(adj)|unbearable|unendurable|bitter (similar term)|impossible (similar term)|insufferable (similar term)|unacceptable (similar term)|unsufferable (similar term)|unsupportable (similar term)|impermissible (related term)|tolerable (antonym)
+intolerably|1
+(adv)|unacceptably|tolerably (antonym)|acceptably (antonym)
+intolerance|2
+(noun)|impatience (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)|tolerance (antonym)
+intolerant|2
+(adj)|bigoted (similar term)|rigid (similar term)|strict (similar term)|uncharitable (related term)|tolerant (antonym)
+(adj)|illiberal|narrow-minded (similar term)|narrow (similar term)
+intolerantly|2
+(adv)|tolerantly (antonym)
+(adv)|illiberally
+intonate|2
+(verb)|intone|pronounce (generic term)|label (generic term)|judge (generic term)
+(verb)|chant|intone|cantillate|sing (generic term)
+intonation|4
+(noun)|modulation|pitch contour|prosody (generic term)|inflection (generic term)
+(noun)|singing (generic term)|vocalizing (generic term)
+(noun)|chanting|singing (generic term)|vocalizing (generic term)
+(noun)|music (generic term)
+intonation pattern|1
+(noun)|intonation (generic term)|modulation (generic term)|pitch contour (generic term)
+intone|3
+(verb)|tone|chant|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|chant|intonate|cantillate|sing (generic term)
+(verb)|intonate|pronounce (generic term)|label (generic term)|judge (generic term)
+intoned|1
+(adj)|chantlike|singsong|rhythmical (similar term)|rhythmic (similar term)
+intoxicant|3
+(adj)|intoxicating|alcoholic (similar term)
+(noun)|alcohol|alcoholic beverage|inebriant|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)|drug of abuse (generic term)|street drug (generic term)
+(noun)|drug (generic term)
+intoxicate|3
+(verb)|elate|lift up|uplift|pick up|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|depress (antonym)
+(verb)|soak|inebriate|affect (generic term)
+(verb)|poison (generic term)
+intoxicated|2
+(adj)|drunk|inebriated|bacchanalian (similar term)|bacchanal (similar term)|bacchic (similar term)|carousing (similar term)|orgiastic (similar term)|beery (similar term)|besotted (similar term)|blind drunk (similar term)|blotto (similar term)|crocked (similar term)|cockeyed (similar term)|fuddled (similar term)|loaded (similar term)|pie-eyed (similar term)|pissed (similar term)|pixilated (similar term)|plastered (similar term)|potty (similar term)|slopped (similar term)|sloshed (similar term)|smashed (similar term)|soaked (similar term)|soused (similar term)|sozzled (similar term)|squiffy (similar term)|stiff (similar term)|tiddly (similar term)|tiddley (similar term)|tight (similar term)|tipsy (similar term)|wet (similar term)|bibulous (similar term)|boozy (similar term)|drunken (similar term)|sottish (similar term)|doped (similar term)|drugged (similar term)|narcotized (similar term)|narcotised (similar term)|half-seas-over (similar term)|high (similar term)|mellow (similar term)|hopped-up (similar term)|stoned (similar term)|sober (antonym)
+(adj)|drunk|excited (similar term)
+intoxicating|2
+(adj)|intoxicant|alcoholic (similar term)
+(adj)|heady|exciting (similar term)
+intoxication|3
+(noun)|poisoning|toxic condition|physiological state (generic term)|physiological condition (generic term)
+(noun)|drunkenness|inebriation|inebriety|tipsiness|insobriety|temporary state (generic term)|soberness (antonym)
+(noun)|exhilaration (generic term)|excitement (generic term)
+intra vires|1
+(adj)|ultra vires (antonym)
+intracellular|1
+(adj)|living thing|animate thing (related term)|extracellular (antonym)
+intracellular fluid|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+intracerebral|1
+(adj)|neural structure (related term)
+intracranial aneurysm|1
+(noun)|aneurysm (generic term)|aneurism (generic term)
+intracranial cavity|1
+(noun)|cranial cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+intractability|1
+(noun)|intractableness|trait (generic term)|tractability (antonym)
+intractable|1
+(adj)|balking (similar term)|balky (similar term)|refractory (similar term)|stubborn (similar term)|uncontrollable (similar term)|unmanageable (similar term)|unmalleable (similar term)|defiant (related term)|noncompliant (related term)|disobedient (related term)|stubborn (related term)|obstinate (related term)|unregenerate (related term)|unmanageable (related term)|difficult (related term)|wild (related term)|untamed (related term)|tractable (antonym)
+intractableness|1
+(noun)|intractability|trait (generic term)|tractability (antonym)
+intracutaneous|1
+(adj)|intradermal|intradermic|connective tissue|body covering (related term)
+intradepartmental|1
+(adj)|division (related term)|interdepartmental (antonym)
+intradermal|1
+(adj)|intradermic|intracutaneous|connective tissue|body covering (related term)
+intradermal injection|1
+(noun)|injection (generic term)|shot (generic term)
+intradermal test|1
+(noun)|subcutaneous test|skin test (generic term)
+intradermic|1
+(adj)|intradermal|intracutaneous|connective tissue|body covering (related term)
+intrados|1
+(noun)|curve (generic term)|curved shape (generic term)
+intragroup|1
+(adj)|internal|intramural (similar term)
+intralinguistic|1
+(adj)|communication (related term)
+intramolecular|1
+(adj)|unit|building block (related term)
+intramural|1
+(adj)|internal (similar term)|intragroup (similar term)|extramural (antonym)
+intramuscular|1
+(adj)|contractile organ|contractor (related term)
+intramuscular injection|1
+(noun)|injection (generic term)|shot (generic term)
+intranet|1
+(noun)|computer network (generic term)
+intransigence|1
+(noun)|intransigency|stubbornness (generic term)|bullheadedness (generic term)|obstinacy (generic term)|obstinance (generic term)|pigheadedness (generic term)|self-will (generic term)
+intransigency|1
+(noun)|intransigence|stubbornness (generic term)|bullheadedness (generic term)|obstinacy (generic term)|obstinance (generic term)|pigheadedness (generic term)|self-will (generic term)
+intransigent|1
+(adj)|adamant|adamantine|inexorable|inflexible (similar term)
+intransitive|2
+(adj)|transitive (antonym)
+(noun)|intransitive verb|intransitive verb form|verb (generic term)
+intransitive verb|1
+(noun)|intransitive verb form|intransitive|verb (generic term)
+intransitive verb form|1
+(noun)|intransitive verb|intransitive|verb (generic term)
+intransitively|1
+(adv)|transitively (antonym)
+intransitiveness|1
+(noun)|intransitivity|grammatical relation (generic term)|transitivity (antonym)
+intransitivise|1
+(verb)|detransitivize|detransitivise|intransitivize|change (generic term)|alter (generic term)|modify (generic term)|transitivize (antonym)
+intransitivity|1
+(noun)|intransitiveness|grammatical relation (generic term)|transitivity (antonym)
+intransitivize|1
+(verb)|detransitivize|detransitivise|intransitivise|change (generic term)|alter (generic term)|modify (generic term)|transitivize (antonym)
+intraocular lens|1
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+intraocular pressure|1
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+intrapulmonary|1
+(adj)|respiratory organ (related term)
+intraspecies|1
+(adj)|intraspecific|interspecies (antonym)
+intraspecific|1
+(adj)|intraspecies|interspecies (antonym)
+intrastate|1
+(adj)|interstate (antonym)
+intrauterine device|1
+(noun)|IUD|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+intravasation|1
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+intravenous|1
+(adj)|endovenous|blood vessel (related term)
+intravenous anesthetic|1
+(noun)|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+intravenous drip|1
+(noun)|drip (generic term)|trickle (generic term)|dribble (generic term)
+intravenous feeding|1
+(noun)|IV|feeding (generic term)|alimentation (generic term)
+intravenous injection|1
+(noun)|injection (generic term)|shot (generic term)
+intravenous pyelogram|1
+(noun)|IVP|pyelogram (generic term)
+intravenous pyelography|1
+(noun)|IVP|pyelography (generic term)
+intraventricular|1
+(adj)|cavity|bodily cavity|cavum (related term)
+intrench|1
+(verb)|entrench|fasten (generic term)|fix (generic term)|secure (generic term)
+intrenchment|1
+(noun)|entrenchment|fortification (generic term)|munition (generic term)
+intrepid|1
+(adj)|audacious|brave|dauntless|fearless|unfearing|bold (similar term)
+intrepidity|1
+(noun)|dauntlessness|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+intrepidly|1
+(adv)|fearlessly|dauntlessly|fearfully (antonym)
+intricacy|1
+(noun)|elaborateness|elaboration|involution|complexity (generic term)|complexness (generic term)
+intricate|1
+(adj)|complex (similar term)
+intricately|1
+(adv)|elaborately|in an elaborate way
+intrigue|4
+(noun)|machination|plot (generic term)|secret plan (generic term)|game (generic term)
+(noun)|love affair (generic term)|romance (generic term)
+(verb)|fascinate|matter to (generic term)|interest (generic term)
+(verb)|scheme|connive|plot (generic term)
+intriguer|1
+(noun)|designer|planner (generic term)|contriver (generic term)|deviser (generic term)
+intriguing|2
+(adj)|challenging|provocative (similar term)
+(adj)|interesting (similar term)
+intrinsic|2
+(adj)|intrinsical|built-in (similar term)|constitutional (similar term)|inbuilt (similar term)|inherent (similar term)|integral (similar term)|inner (similar term)|internal (similar term)|intimate (similar term)|essential (related term)|inalienable (related term)|unalienable (related term)|extrinsic (antonym)
+(adj)|internal (similar term)
+intrinsic factor|1
+(noun)|factor (generic term)
+intrinsic fraud|1
+(noun)|fraud (generic term)
+intrinsical|1
+(adj)|intrinsic|built-in (similar term)|constitutional (similar term)|inbuilt (similar term)|inherent (similar term)|integral (similar term)|inner (similar term)|internal (similar term)|intimate (similar term)|essential (related term)|inalienable (related term)|unalienable (related term)|extrinsic (antonym)
+intrinsically|1
+(adv)|per se|as such|in and of itself
+intro|2
+(noun)|presentation|introduction|informing (generic term)|making known (generic term)
+(noun)|passage (generic term)|musical passage (generic term)
+introduce|10
+(verb)|present|acquaint|inform (generic term)
+(verb)|innovate|initiate (generic term)|pioneer (generic term)
+(verb)|insert|enclose|inclose|stick in|put in|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|bring in
+(verb)|establish (generic term)|give (generic term)
+(verb)|insert|infix|enter|attach (generic term)
+(verb)|bring out|introduce (generic term)|present (generic term)|acquaint (generic term)
+(verb)|project (generic term)|propose (generic term)
+(verb)|precede|preface|premise|state (generic term)|say (generic term)|tell (generic term)
+(verb)|inaugurate|usher in|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+introduction|7
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|debut|first appearance|launching|unveiling|entry|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|presentation|intro|informing (generic term)|making known (generic term)
+(noun)|textbook (generic term)|text (generic term)|text edition (generic term)|schoolbook (generic term)|school text (generic term)
+(noun)|proposal (generic term)
+(noun)|insertion|intromission|movement (generic term)
+(noun)|initiation|founding|foundation|institution|origination|creation|innovation|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+introductory|3
+(adj)|opening (similar term)
+(adj)|basic|first (similar term)
+(adj)|prefatorial|prefatory|preceding (similar term)
+introit|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+introitus|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+introject|2
+(noun)|value (generic term)
+(verb)|change (generic term)
+introjected|1
+(adj)|integrated (similar term)
+introjection|1
+(noun)|internalization (generic term)|internalisation (generic term)|incorporation (generic term)
+intromission|1
+(noun)|insertion|introduction|movement (generic term)
+intromit|1
+(verb)|admit|allow in|let in|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|reject (antonym)
+intron|1
+(noun)|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)|exon (antonym)
+intropin|1
+(noun)|dopamine|Dopastat|Intropin|monoamine neurotransmitter (generic term)
+introspect|1
+(verb)|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+introspection|1
+(noun)|self-contemplation|self-examination|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+introspective|1
+(adj)|introverted|self-examining|extrospective (antonym)
+introspectiveness|1
+(noun)|thoughtfulness (generic term)
+introuvable|1
+(adj)|absent (similar term)
+introversion|3
+(noun)|invagination|condition (generic term)
+(noun)|invagination|intussusception|infolding|organic process (generic term)|biological process (generic term)
+(noun)|unsociability (generic term)|unsociableness (generic term)|ambiversion (antonym)|extraversion (antonym)
+introversive|1
+(adj)|introvertive|introvertish (similar term)|shut-in (similar term)|unsociable (related term)|extroversive (antonym)|ambiversive (antonym)
+introvert|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|extrovert (antonym)
+(verb)|invaginate|draw in (generic term)|retract (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+introverted|1
+(adj)|introspective|self-examining|extrospective (antonym)
+introvertish|1
+(adj)|shut-in|introversive (similar term)|introvertive (similar term)
+introvertive|1
+(adj)|introversive|introvertish (similar term)|shut-in (similar term)|unsociable (related term)|extroversive (antonym)|ambiversive (antonym)
+intrude|4
+(verb)|irrupt|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|intrude on (related term)
+(verb)|trespass|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)|trespass (related term)
+(verb)|horn in|pry|nose|poke|search (generic term)|look (generic term)|nose out (related term)
+(verb)|obtrude|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+intrude on|1
+(verb)|invade|obtrude upon|encroach upon|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+intruder|1
+(noun)|interloper|trespasser|entrant (generic term)|unwelcome person (generic term)|persona non grata (generic term)
+intruding|1
+(adj)|intrusive (similar term)
+intrusion|5
+(noun)|invasion|encroachment|entrance (generic term)|entering (generic term)
+(noun)|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|geological process (generic term)|geologic process (generic term)
+(noun)|rock (generic term)|stone (generic term)
+(noun)|trespass|encroachment|violation|usurpation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+intrusive|3
+(adj)|encroaching (similar term)|invasive (similar term)|trespassing (similar term)|interfering (similar term)|meddlesome (similar term)|meddling (similar term)|officious (similar term)|busy (similar term)|busybodied (similar term)|unintrusive (antonym)
+(adj)|irruptive (similar term)|plutonic (similar term)|extrusive (antonym)
+(adj)|intruding (similar term)|concave (related term)|protrusive (antonym)
+intrusiveness|1
+(noun)|meddlesomeness|officiousness|aggressiveness (generic term)
+intrust|1
+(verb)|entrust|trust|confide|commit|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+intubate|1
+(verb)|cannulate|cannulize|cannulise|canulate|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+intubation|1
+(noun)|cannulation|canulation|cannulization|cannulisation|canulization|canulisation|insertion (generic term)|introduction (generic term)|intromission (generic term)
+intuit|1
+(verb)|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+intuition|2
+(noun)|basic cognitive process (generic term)
+(noun)|hunch|suspicion|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+intuitionism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+intuitionist|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+intuitive|2
+(adj)|spontaneous (similar term)|self-generated (similar term)
+(adj)|nonrational|visceral|illogical (similar term)|unlogical (similar term)
+intuitive feeling|1
+(noun)|feeling|intuition (generic term)
+intumesce|2
+(verb)|bubble up|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+(verb)|swell|swell up|tumefy|tumesce|expand (generic term)
+intumescence|2
+(noun)|intumescency|swelling (generic term)|puffiness (generic term)|lump (generic term)
+(noun)|intumescency|swelling|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+intumescency|2
+(noun)|intumescence|swelling (generic term)|puffiness (generic term)|lump (generic term)
+(noun)|intumescence|swelling|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+intumescent|1
+(adj)|bloated|distended|puffed|puffy|swollen|tumescent|tumid|turgid|unhealthy (similar term)
+intussuscept|1
+(verb)|invaginate (generic term)|introvert (generic term)
+intussusception|2
+(noun)|invagination|introversion|infolding|organic process (generic term)|biological process (generic term)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+inuit|1
+(noun)|Eskimo|Esquimau|Inuit|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+inula|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+inula helenium|1
+(noun)|elecampane|Inula helenium|inula (generic term)
+inulin|1
+(noun)|polysaccharide (generic term)|polyose (generic term)
+inunct|1
+(verb)|anoint|oil|anele|embrocate|bless (generic term)
+inunction|1
+(noun)|unction|anointing (generic term)|anointment (generic term)|religious ceremony (generic term)|religious ritual (generic term)
+inundate|2
+(verb)|deluge|flood|swamp|fill (generic term)|fill up (generic term)|make full (generic term)|flood in (related term)
+(verb)|deluge|submerge|flood (generic term)
+inundated|1
+(adj)|afloat|awash|flooded|overflowing|full (similar term)
+inundation|2
+(noun)|flood|deluge|alluvion|geological phenomenon (generic term)
+(noun)|flood|deluge|torrent|batch (generic term)|deal (generic term)|flock (generic term)|good deal (generic term)|great deal (generic term)|hatful (generic term)|heap (generic term)|lot (generic term)|mass (generic term)|mess (generic term)|mickle (generic term)|mint (generic term)|muckle (generic term)|peck (generic term)|pile (generic term)|plenty (generic term)|pot (generic term)|quite a little (generic term)|raft (generic term)|sight (generic term)|slew (generic term)|spate (generic term)|stack (generic term)|tidy sum (generic term)|wad (generic term)|whole lot (generic term)|whole slew (generic term)
+inure|1
+(verb)|harden|indurate|habituate (generic term)|accustom (generic term)
+inured|1
+(adj)|enured|hardened|tough (similar term)|toughened (similar term)
+inutile|1
+(adj)|unprofitable|useless (similar term)
+inutility|1
+(noun)|uselessness|unusefulness|quality (generic term)|usefulness (antonym)|utility (antonym)
+invade|4
+(verb)|occupy|attack (generic term)|assail (generic term)
+(verb)|intrude on|obtrude upon|encroach upon|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+(verb)|overrun|infest|inhabit (generic term)|occupy (generic term)
+(verb)|interpenetrate (generic term)|permeate (generic term)
+invader|1
+(noun)|encroacher|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+invading|1
+(adj)|incursive|invasive|offensive (similar term)
+invaginate|2
+(verb)|sheathe (generic term)
+(verb)|introvert|draw in (generic term)|retract (generic term)
+invagination|2
+(noun)|introversion|condition (generic term)
+(noun)|introversion|intussusception|infolding|organic process (generic term)|biological process (generic term)
+invalid|5
+(adj)|bad (similar term)|uncollectible (similar term)|fallacious (similar term)|unsound (similar term)|false (similar term)|invalidated (similar term)|nullified (similar term)|null (similar term)|void (similar term)|sophistic (similar term)|sophistical (similar term)|illegitimate (related term)|valid (antonym)
+(adj)|expired (similar term)
+(noun)|shut-in|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(verb)|remove (generic term)
+(verb)|disable|incapacitate|handicap|injure (generic term)|wound (generic term)
+invalidate|4
+(verb)|annul|quash|void|avoid|nullify|cancel (generic term)|strike down (generic term)|validate (antonym)
+(verb)|cancel|score (generic term)|mark (generic term)
+(verb)|nullify|negate (generic term)|contradict (generic term)|validate (antonym)
+(verb)|void|vitiate|change (generic term)|alter (generic term)|modify (generic term)|validate (antonym)
+invalidated|1
+(adj)|nullified|invalid (similar term)
+invalidating|1
+(adj)|disconfirming|unsupportive (similar term)
+invalidation|1
+(noun)|annulment|dissolution (generic term)|breakup (generic term)
+invalidator|1
+(noun)|voider|nullifier|official (generic term)|functionary (generic term)
+invalidism|1
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+invalidity|1
+(noun)|invalidness|illogicality (generic term)|illogicalness (generic term)|illogic (generic term)|inconsequence (generic term)
+invalidness|1
+(noun)|invalidity|illogicality (generic term)|illogicalness (generic term)|illogic (generic term)|inconsequence (generic term)
+invaluable|1
+(adj)|priceless|valuable (similar term)
+invaluableness|1
+(noun)|preciousness|pricelessness|valuableness|value (generic term)
+invar|1
+(noun)|Invar|alloy (generic term)|metal (generic term)
+invariability|2
+(noun)|evenness|regularity (generic term)|variability (antonym)|unevenness (antonym)
+(noun)|invariableness|invariance|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|variableness (antonym)|variability (antonym)
+invariable|2
+(adj)|changeless (similar term)|constant (similar term)|invariant (similar term)|unvarying (similar term)|fixed-income (similar term)|hard-and-fast (similar term)|strict (similar term)|invariant (similar term)|consistent (related term)|constant (related term)|variable (antonym)
+(noun)|constant|constant quantity|quantity (generic term)
+invariableness|1
+(noun)|invariability|invariance|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|variableness (antonym)|variability (antonym)
+invariance|2
+(noun)|invariability|invariableness|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|variableness (antonym)|variability (antonym)
+(noun)|constancy (generic term)|stability (generic term)
+invariant|3
+(adj)|invariable (similar term)
+(adj)|changeless|constant|unvarying|invariable (similar term)
+(noun)|feature (generic term)|characteristic (generic term)
+invasion|3
+(noun)|penetration (generic term)|incursion (generic term)
+(noun)|encroachment|intrusion|entrance (generic term)|entering (generic term)
+(noun)|spread (generic term)|spreading (generic term)
+invasion of iwo|1
+(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault (generic term)
+invasion of privacy|1
+(noun)|tort (generic term)|civil wrong (generic term)
+invasive|4
+(adj)|noninvasive (antonym)
+(adj)|aggressive (similar term)|fast-growing (similar term)|strong-growing (similar term)|confined (antonym)
+(adj)|incursive|invading|offensive (similar term)
+(adj)|encroaching|trespassing|intrusive (similar term)
+invective|1
+(noun)|vituperation|vitriol|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+inveigh|2
+(verb)|rail|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|declaim|protest (generic term)
+inveigle|1
+(verb)|wheedle|cajole|palaver|blarney|coax|sweet-talk|persuade (generic term)
+invent|2
+(verb)|contrive|devise|excogitate|formulate|forge|create by mental act (generic term)|create mentally (generic term)
+(verb)|fabricate|manufacture|cook up|make up|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+invented|1
+(adj)|fabricated|fancied|fictional|fictitious|made-up|unreal (similar term)
+invention|3
+(noun)|innovation|excogitation|conception|design|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|innovation|creation (generic term)
+(noun)|creating by mental acts (generic term)
+inventive|1
+(adj)|imaginative|ingenious|creative (similar term)|originative (similar term)
+inventiveness|1
+(noun)|ingeniousness|ingenuity|cleverness|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+inventor|1
+(noun)|discoverer|artificer|creator (generic term)
+inventory|6
+(noun)|stock list|list (generic term)|listing (generic term)
+(noun)|stock|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|register (generic term)
+(noun)|armory|armoury|resource (generic term)|resourcefulness (generic term)|imagination (generic term)
+(noun)|inventorying|stocktaking|stock-taking|listing (generic term)|itemization (generic term)|itemisation (generic term)
+(verb)|take stock|stock-take|list (generic term)
+inventory-clearance sale|1
+(noun)|clearance sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+inventory accounting|1
+(noun)|accountancy (generic term)|accounting (generic term)
+inventory control|1
+(noun)|internal control (generic term)
+inventory item|1
+(noun)|item (generic term)|point (generic term)
+inventorying|1
+(noun)|inventory|stocktaking|stock-taking|listing (generic term)|itemization (generic term)|itemisation (generic term)
+inverse|3
+(adj)|reverse|backward (similar term)
+(adj)|reciprocal (similar term)|direct (antonym)
+(noun)|opposite|opposition (generic term)|oppositeness (generic term)
+inverse cosecant|1
+(noun)|arc cosecant|arccosecant|trigonometric function (generic term)|circular function (generic term)
+inverse cosine|1
+(noun)|arc cosine|arccosine|arccos|trigonometric function (generic term)|circular function (generic term)
+inverse cotangent|1
+(noun)|arc cotangent|arccotangent|trigonometric function (generic term)|circular function (generic term)
+inverse function|1
+(noun)|function (generic term)|mathematical function (generic term)
+inverse secant|1
+(noun)|arc secant|arcsecant|arcsec|trigonometric function (generic term)|circular function (generic term)
+inverse sine|1
+(noun)|arc sine|arcsine|arcsin|trigonometric function (generic term)|circular function (generic term)
+inverse tangent|1
+(noun)|arc tangent|arctangent|arctan|trigonometric function (generic term)|circular function (generic term)
+inversely|1
+(adv)|reciprocally
+inversion|9
+(noun)|atmospheric phenomenon (generic term)
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+(noun)|anastrophe|rhetorical device (generic term)
+(noun)|variation (generic term)
+(noun)|sexual inversion|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)
+(noun)|upending|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|eversion|everting|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+invert|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|turn back|reverse|change (generic term)|alter (generic term)|modify (generic term)
+invert soap|1
+(noun)|cationic detergent|detergent (generic term)
+invert sugar|1
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+invertase|1
+(noun)|saccharase|sucrase|disaccharidase (generic term)
+invertebrate|2
+(adj)|spineless|vertebrate (antonym)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+invertebrate foot|1
+(noun)|foot|organ (generic term)
+inverted|2
+(adj)|upside-down|turned (similar term)
+(adj)|anatropous|amphitropous (antonym)
+inverted comma|1
+(noun)|quotation mark|quote|punctuation (generic term)|punctuation mark (generic term)
+inverted hang|1
+(noun)|hang (generic term)
+inverted pleat|1
+(noun)|pleat (generic term)|plait (generic term)
+inverter|1
+(noun)|electrical converter (generic term)
+invertible|1
+(adj)|non-invertible (antonym)
+invest|5
+(verb)|put|commit|place|spend (generic term)|expend (generic term)|drop (generic term)|divest (antonym)
+(verb)|endow|indue|gift|empower|endue|enable (generic term)
+(verb)|clothe|adorn|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|vest|enthrone|install (generic term)|divest (antonym)
+(verb)|induct|seat|install (generic term)
+invested|1
+(adj)|invested with|endowed (similar term)
+invested with|1
+(adj)|invested|endowed (similar term)
+investigate|2
+(verb)|look into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|inquire|enquire|probe (generic term)|examine (generic term)
+investigating|1
+(noun)|investigation|work (generic term)
+investigation|2
+(noun)|probe|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|investigating|work (generic term)
+investigative|1
+(adj)|fact-finding|investigatory|inquiring (similar term)
+investigator|3
+(noun)|research worker|researcher|scientist (generic term)|man of science (generic term)
+(noun)|expert (generic term)
+(noun)|detective|tec|police detective|policeman (generic term)|police officer (generic term)|officer (generic term)
+investigatory|1
+(adj)|fact-finding|investigative|inquiring (similar term)
+investing|1
+(noun)|investment|finance (generic term)
+investiture|2
+(noun)|coronation|enthronement|enthronization|enthronisation|initiation (generic term)|induction (generic term)|installation (generic term)
+(noun)|investment|promotion (generic term)
+investment|5
+(noun)|investing|finance (generic term)
+(noun)|investment funds|assets (generic term)
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+(noun)|dressing (generic term)|grooming (generic term)
+(noun)|investiture|promotion (generic term)
+investment adviser|1
+(noun)|investment advisor|adviser (generic term)|advisor (generic term)|consultant (generic term)
+investment advisor|1
+(noun)|investment adviser|adviser (generic term)|advisor (generic term)|consultant (generic term)
+investment banker|1
+(noun)|underwriter|agent (generic term)|factor (generic term)|broker (generic term)
+investment company|1
+(noun)|investment trust|investment firm|fund|nondepository financial institution (generic term)
+investment firm|1
+(noun)|investment company|investment trust|fund|nondepository financial institution (generic term)
+investment funds|1
+(noun)|investment|assets (generic term)
+investment letter|1
+(noun)|letter of intent (generic term)
+investment trust|1
+(noun)|investment company|investment firm|fund|nondepository financial institution (generic term)
+investor|1
+(noun)|capitalist (generic term)
+investors club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+inveterate|1
+(adj)|confirmed|habitual|addicted (similar term)
+inveterately|1
+(adv)|chronically
+invidia|1
+(noun)|envy|mortal sin (generic term)|deadly sin (generic term)
+invidious|1
+(adj)|discriminatory|unfavorable (similar term)|unfavourable (similar term)
+invigilate|1
+(verb)|proctor|watch (generic term)|observe (generic term)|follow (generic term)|watch over (generic term)|keep an eye on (generic term)
+invigilation|1
+(noun)|supervision (generic term)|supervising (generic term)|superintendence (generic term)|oversight (generic term)
+invigilator|1
+(noun)|proctor (generic term)|monitor (generic term)
+invigorate|4
+(verb)|inspire|animate|enliven|exalt|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|quicken|stimulate (generic term)|excite (generic term)
+(verb)|enliven|liven|liven up|animate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)|deaden (antonym)
+(verb)|reinvigorate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+invigorated|1
+(adj)|fresh|refreshed|reinvigorated|rested (similar term)
+invigorating|1
+(adj)|animating (similar term)|enlivening (similar term)|bracing (similar term)|brisk (similar term)|energizing (similar term)|energising (similar term)|fresh (similar term)|refreshing (similar term)|refreshful (similar term)|tonic (similar term)|corroborant (similar term)|exhilarating (similar term)|stimulating (similar term)|life-giving (similar term)|vitalizing (similar term)|renewing (similar term)|restorative (similar term)|reviving (similar term)|revitalizing (similar term)|revitalising (similar term)|stimulating (related term)|debilitating (antonym)
+invigoration|2
+(noun)|animation|spiritedness|brio|vivification|activeness (generic term)|activity (generic term)
+(noun)|vivification|animation|energizing (generic term)|activating (generic term)|activation (generic term)
+invigorator|1
+(noun)|quickener|enlivener|agent (generic term)
+invincibility|1
+(noun)|indomitability|strength (generic term)
+invincible|1
+(adj)|unbeatable|unvanquishable|unconquerable (similar term)
+invincible armada|1
+(noun)|Spanish Armada|Invincible Armada|armada (generic term)
+inviolable|4
+(adj)|unassailable (similar term)|untouchable (similar term)|violable (antonym)
+(adj)|impregnable|secure|strong|unassailable|unattackable|invulnerable (similar term)
+(adj)|inviolate|sacrosanct|sacred (similar term)
+(adj)|absolute|infrangible|inalienable (similar term)|unalienable (similar term)
+inviolate|2
+(adj)|intact|uninjured (similar term)
+(adj)|inviolable|sacrosanct|sacred (similar term)
+invirase|1
+(noun)|saquinavir|Invirase|protease inhibitor (generic term)|PI (generic term)
+invisibility|1
+(noun)|invisibleness|physical property (generic term)|visibility (antonym)
+invisible|2
+(adj)|unseeable|camouflaged (similar term)|concealed (similar term)|hidden (similar term)|out of sight (similar term)|infrared (similar term)|lightless (similar term)|nonvisual (similar term)|occult (similar term)|ultraviolet (similar term)|undetectable (similar term)|unseen (similar term)|imperceptible (related term)|unperceivable (related term)|covert (related term)|visible (antonym)
+(adj)|inconspicuous|obscure (similar term)|unnoticeable (similar term)|conspicuous (antonym)
+invisible balance|1
+(noun)|balance (generic term)
+invisibleness|1
+(noun)|invisibility|physical property (generic term)|visibility (antonym)
+invisibly|1
+(adv)|visibly (antonym)
+invitation|2
+(noun)|request (generic term)|asking (generic term)|letter (generic term)|missive (generic term)
+(noun)|allure (generic term)|allurement (generic term)|temptingness (generic term)
+invitational|1
+(adj)|request|asking|letter|missive (related term)
+invitatory|1
+(adj)|inviting (similar term)
+invite|9
+(noun)|invitation (generic term)
+(verb)|ask for|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|ask over|ask round|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|tempt|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|bid|request (generic term)
+(verb)|pay for|interact (generic term)|invite out (related term)
+(verb)|ask in|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|call for|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|receive|take in
+invite out|1
+(verb)|ask out|take out|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+invitee|1
+(noun)|guest|visitor (generic term)|visitant (generic term)
+inviting|1
+(adj)|invitatory (similar term)|tantalizing (similar term)|tantalising (similar term)|tempting (similar term)|tantalizing (similar term)|tantalising (similar term)|attractive (related term)|uninviting (antonym)
+invitingly|1
+(adv)|tantalizingly
+invocation|4
+(noun)|supplication|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|incantation (generic term)|conjuration (generic term)
+(noun)|conjuring|conjuration|conjury|magic (generic term)|thaumaturgy (generic term)
+(noun)|implementation (generic term)|effectuation (generic term)
+invoice|2
+(noun)|bill|account|statement (generic term)|financial statement (generic term)
+(verb)|charge (generic term)|bill (generic term)
+invoke|3
+(verb)|raise|conjure|conjure up|evoke|stir|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|appeal|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|appeal|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+involucrate|1
+(adj)|bract (related term)
+involucre|1
+(noun)|bract (generic term)
+involuntarily|1
+(adv)|voluntarily (antonym)
+involuntariness|1
+(noun)|unwillingness|disposition (generic term)|temperament (generic term)|willingness (antonym)
+involuntary|2
+(adj)|nonvoluntary|unvoluntary|driven (similar term)|goaded (similar term)|forced (similar term)|unconscious (similar term)|unwilled (similar term)|unwilling (similar term)|unconscious (related term)|unwilling (related term)|voluntary (antonym)
+(adj)|automatic (similar term)|reflex (similar term)|reflexive (similar term)|autonomic (similar term)|vegetative (similar term)|voluntary (antonym)
+involuntary muscle|1
+(noun)|smooth muscle|muscle (generic term)|musculus (generic term)
+involuntary trust|1
+(noun)|constructive trust|implied trust (generic term)
+involute|2
+(adj)|rolled|coiled (similar term)
+(adj)|coiled (similar term)
+involution|6
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+(noun)|elaborateness|elaboration|intricacy|complexity (generic term)|complexness (generic term)
+(noun)|engagement|participation|involvement|group action (generic term)|non-involvement (antonym)|nonparticipation (antonym)|non-engagement (antonym)
+(noun)|exponentiation|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|enfolding|change of shape (generic term)
+involutional depression|1
+(noun)|major depressive episode (generic term)
+involve|8
+(verb)|affect|regard|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|admit (generic term)|let in (generic term)|include (generic term)
+(verb)|imply|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+(verb)|necessitate|ask|postulate|need|require|take|call for|demand|obviate (antonym)
+(verb)|include (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|absorb (generic term)|engross (generic term)|engage (generic term)|occupy (generic term)
+(verb)|complicate (generic term)|refine (generic term)|rarify (generic term)|elaborate (generic term)
+involved|5
+(adj)|active (similar term)|participating (similar term)|caught up (similar term)|concerned (similar term)|interested (similar term)|embroiled (similar term)|entangled (similar term)|engaged (similar term)|implicated (similar term)|concerned (similar term)|neck-deep (similar term)|up to my neck (similar term)|up to your neck (similar term)|up to her neck (similar term)|up to his neck (similar term)|up to our necks (similar term)|up to their necks (similar term)|uninvolved (antonym)
+(adj)|mired|encumbered (similar term)
+(adj)|attached (similar term)|committed (similar term)
+(adj)|Byzantine|convoluted|knotty|tangled|tortuous|complex (similar term)
+(adj)|enclosed (similar term)
+involvement|5
+(noun)|engagement|participation|involution|group action (generic term)|non-involvement (antonym)|nonparticipation (antonym)|non-engagement (antonym)
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|interest|curiosity (generic term)|wonder (generic term)
+(noun)|affair|affaire|intimacy|liaison|amour|sexual relationship (generic term)
+(noun)|participation|condition (generic term)|status (generic term)
+invulnerability|2
+(noun)|impregnability|safety (generic term)
+(noun)|strength (generic term)|vulnerability (antonym)
+invulnerable|1
+(adj)|airtight (similar term)|air-tight (similar term)|bombproof (similar term)|shellproof (similar term)|defendable (similar term)|defensible (similar term)|entrenched (similar term)|impregnable (similar term)|inviolable (similar term)|secure (similar term)|strong (similar term)|unassailable (similar term)|unattackable (similar term)|tight (similar term)|untouchable (similar term)|protected (related term)|secure (related term)|safe (related term)|secure (related term)|unconquerable (related term)|vulnerable (antonym)
+inward|4
+(adj)|indwelling (similar term)|inmost (similar term)|innermost (similar term)|inner (similar term)|interior (similar term)|internal (similar term)|secret (similar term)|private (similar term)|self-whispered (similar term)|outward (antonym)
+(adj)|inbound|incoming (similar term)
+(adv)|inwards|outward (antonym)
+(adv)|in|inwards
+inward-developing|1
+(adj)|centripetal (similar term)
+inward-moving|1
+(adj)|centripetal (similar term)
+inwardly|1
+(adv)|inside|outwardly (antonym)
+inwardness|4
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|cognitive state (generic term)|state of mind (generic term)|outwardness (antonym)
+(noun)|position (generic term)|spatial relation (generic term)|outwardness (antonym)
+(noun)|introversion (generic term)|outwardness (antonym)
+inwards|2
+(adv)|in|inward
+(adv)|inward|outward (antonym)
+inweave|1
+(verb)|weave (generic term)|interweave (generic term)
+inwrought|1
+(adj)|adorned (similar term)|decorated (similar term)
+io|2
+(noun)|Io|maid (generic term)|maiden (generic term)
+(noun)|Io|Galilean satellite (generic term)|Galilean (generic term)
+io moth|1
+(noun)|Automeris io|saturniid (generic term)|saturniid moth (generic term)
+iodic acid|1
+(noun)|acid (generic term)
+iodide|1
+(noun)|halide (generic term)
+iodin|1
+(noun)|iodine|I|atomic number 53|chemical element (generic term)|element (generic term)|halogen (generic term)
+iodinate|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|de-iodinate (antonym)
+iodinated|1
+(adj)|iodized|iodised|chemical element|element|halogen (related term)
+iodinated protein|1
+(noun)|iodoprotein|protein (generic term)
+iodinating|1
+(adj)|de-iodinating (antonym)
+iodination|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+iodine|2
+(noun)|iodin|I|atomic number 53|chemical element (generic term)|element (generic term)|halogen (generic term)
+(noun)|tincture of iodine|tincture (generic term)|antiseptic (generic term)
+iodine-125|1
+(noun)|iodine (generic term)|iodin (generic term)|I (generic term)|atomic number 53 (generic term)|radioisotope (generic term)
+iodine-131|1
+(noun)|iodine (generic term)|iodin (generic term)|I (generic term)|atomic number 53 (generic term)|radioisotope (generic term)
+iodise|2
+(verb)|iodize|process (generic term)|treat (generic term)
+(verb)|iodize|treat (generic term)|care for (generic term)
+iodised|1
+(adj)|iodinated|iodized|chemical element|element|halogen (related term)
+iodize|2
+(verb)|iodise|process (generic term)|treat (generic term)
+(verb)|iodise|treat (generic term)|care for (generic term)
+iodized|1
+(adj)|iodinated|iodised|chemical element|element|halogen (related term)
+iodoamino acid|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+iodochlorhydroxyquin|1
+(noun)|Clioquinol|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+iodocompound|1
+(noun)|compound (generic term)|chemical compound (generic term)
+iodoform|2
+(noun)|tri-iodomethane|haloform (generic term)
+(noun)|triiodomethane|antiseptic (generic term)
+iodoprotein|1
+(noun)|iodinated protein|protein (generic term)
+iodopsin|1
+(noun)|photopigment (generic term)
+iodothyronine|1
+(noun)|iodoamino acid (generic term)
+iodotyrosine|1
+(noun)|iodoamino acid (generic term)
+ion|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+ion beam|1
+(noun)|inoic beam|particle beam (generic term)
+ion engine|1
+(noun)|reaction-propulsion engine (generic term)|reaction engine (generic term)
+ion exchange|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ion pump|1
+(noun)|air pump (generic term)|vacuum pump (generic term)
+ionate|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|de-ionate (antonym)
+ionesco|1
+(noun)|Ionesco|Eugene Ionesco|dramatist (generic term)|playwright (generic term)
+ionia|1
+(noun)|Ionia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+ionian|1
+(noun)|Ionian|Greek (generic term)|Hellene (generic term)
+ionian order|1
+(noun)|Ionic order|Ionian order|order (generic term)
+ionian sea|1
+(noun)|Ionian Sea|sea (generic term)
+ionic|4
+(adj)|particle|subatomic particle (related term)|nonionic (antonym)
+(adj)|order (related term)
+(adj)|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Ionic|Ancient Greek (generic term)
+ionic bond|1
+(noun)|electrovalent bond|electrostatic bond|chemical bond (generic term)|bond (generic term)
+ionic charge|1
+(noun)|constant (generic term)
+ionic medication|1
+(noun)|iontophoresis|iontotherapy|electromotive drug administration|EMDA|therapy (generic term)
+ionic order|1
+(noun)|Ionic order|Ionian order|order (generic term)
+ionisation|2
+(noun)|ionization|condition (generic term)|status (generic term)
+(noun)|ionization|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ionise|2
+(verb)|ionize|change (generic term)
+(verb)|ionize|change state (generic term)|turn (generic term)
+ionised|1
+(adj)|ionized|ionizing (similar term)|ionising (similar term)|nonionized (antonym)
+ionising|1
+(adj)|ionizing|ionized (similar term)|ionised (similar term)
+ionization|2
+(noun)|ionisation|condition (generic term)|status (generic term)
+(noun)|ionisation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ionization chamber|1
+(noun)|ionization tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+ionization tube|1
+(noun)|ionization chamber|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+ionize|2
+(verb)|ionise|change (generic term)
+(verb)|ionise|change state (generic term)|turn (generic term)
+ionized|1
+(adj)|ionised|ionizing (similar term)|ionising (similar term)|nonionized (antonym)
+ionizing|1
+(adj)|ionising|ionized (similar term)|ionised (similar term)
+ionizing radiation|1
+(noun)|radiation (generic term)
+ionophoresis|1
+(noun)|electrophoresis|cataphoresis|dielectrolysis|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+ionosphere|1
+(noun)|region (generic term)|part (generic term)
+ionospheric wave|1
+(noun)|sky wave (generic term)
+iontophoresis|1
+(noun)|ionic medication|iontotherapy|electromotive drug administration|EMDA|therapy (generic term)
+iontotherapy|1
+(noun)|iontophoresis|ionic medication|electromotive drug administration|EMDA|therapy (generic term)
+iosif vissarionovich dzhugashvili|1
+(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist (generic term)|commie (generic term)
+iota|2
+(noun)|shred|scintilla|whit|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+iou|1
+(noun)|IOU|note (generic term)|promissory note (generic term)|note of hand (generic term)
+iowa|3
+(noun)|Iowa|Ioway|Sioux (generic term)|Siouan (generic term)
+(noun)|Iowa|Hawkeye State|IA|American state (generic term)
+(noun)|Iowa|Ioway|Chiwere (generic term)
+iowa crab|1
+(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+iowa crab apple|1
+(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+iowan|1
+(noun)|Iowan|American (generic term)
+ioway|2
+(noun)|Iowa|Ioway|Sioux (generic term)|Siouan (generic term)
+(noun)|Iowa|Ioway|Chiwere (generic term)
+ip|1
+(noun)|information science|informatics|information processing|IP|science (generic term)|scientific discipline (generic term)
+ipecac|1
+(noun)|emetic (generic term)|vomit (generic term)|vomitive (generic term)|nauseant (generic term)
+iphigenia|1
+(noun)|Iphigenia|mythical being (generic term)
+ipidae|1
+(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family (generic term)
+ipo|1
+(noun)|initial public offering|IPO|initial offering|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+ipomoea|1
+(noun)|Ipomoea|genus Ipomoea|dicot genus (generic term)|magnoliopsid genus (generic term)
+ipomoea alba|1
+(noun)|moonflower|belle de nuit|Ipomoea alba|morning glory (generic term)
+ipomoea batatas|1
+(noun)|sweet potato|sweet potato vine|Ipomoea batatas|morning glory (generic term)
+ipomoea coccinea|1
+(noun)|red morning-glory|star ipomoea|Ipomoea coccinea|morning glory (generic term)
+ipomoea fastigiata|1
+(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+ipomoea imperialis|1
+(noun)|imperial Japanese morning glory|Ipomoea imperialis|morning glory (generic term)
+ipomoea leptophylla|1
+(noun)|man-of-the-earth|Ipomoea leptophylla|morning glory (generic term)
+ipomoea nil|1
+(noun)|Japanese morning glory|Ipomoea nil|morning glory (generic term)
+ipomoea orizabensis|1
+(noun)|scammony|Ipomoea orizabensis|morning glory (generic term)
+ipomoea panurata|1
+(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+ipomoea pes-caprae|1
+(noun)|railroad vine|beach morning glory|Ipomoea pes-caprae|morning glory (generic term)
+ipomoea purpurea|1
+(noun)|common morning glory|Ipomoea purpurea|morning glory (generic term)
+ipomoea quamoclit|1
+(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory (generic term)
+ipomoea tricolor|1
+(noun)|common morning glory|Ipomoea tricolor|morning glory (generic term)
+ipratropium bromide|1
+(noun)|Atrovent|bronchodilator (generic term)
+iproclozid|1
+(noun)|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+ipse dixit|1
+(noun)|ipsedixitism|assertion (generic term)|averment (generic term)|asseveration (generic term)
+ipsedixitism|1
+(noun)|ipse dixit|assertion (generic term)|averment (generic term)|asseveration (generic term)
+ipsilateral|1
+(adj)|contralateral (antonym)
+ipsus|1
+(noun)|Ipsus|battle of Ipsus|pitched battle (generic term)
+ipv|1
+(noun)|Salk vaccine|IPV|poliovirus vaccine (generic term)
+iq|1
+(noun)|intelligence quotient|IQ|I.Q.|ratio (generic term)
+iq test|1
+(noun)|intelligence test|IQ test|test (generic term)|mental test (generic term)|mental testing (generic term)|psychometric test (generic term)
+ir|2
+(noun)|iridium|Ir|atomic number 77|metallic element (generic term)|metal (generic term)
+(noun)|Inland Revenue|IR|administrative unit (generic term)|administrative body (generic term)
+ira|3
+(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|individual retirement account|IRA|pension plan (generic term)|pension account (generic term)|retirement plan (generic term)|retirement savings plan (generic term)|retirement savings account (generic term)|retirement account (generic term)|retirement program (generic term)
+(noun)|wrath|anger|ire|mortal sin (generic term)|deadly sin (generic term)
+ira gershwin|1
+(noun)|Gershwin|Ira Gershwin|lyricist (generic term)|lyrist (generic term)
+irak|1
+(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country (generic term)|Asian nation (generic term)
+iraki|2
+(adj)|Iraqi|Iraki|Asian country|Asian nation (related term)
+(noun)|Iraqi|Iraki|Asian (generic term)|Asiatic (generic term)
+iran|1
+(noun)|Iran|Islamic Republic of Iran|Persia|Asian country (generic term)|Asian nation (generic term)
+iran-iraq war|1
+(noun)|Iran-Iraq War|Gulf War|war (generic term)|warfare (generic term)
+irani|1
+(noun)|Irani|Iranian|Persian|Asian (generic term)|Asiatic (generic term)
+iranian|3
+(adj)|Iranian|Persian|Asian country|Asian nation (related term)
+(noun)|Irani|Iranian|Persian|Asian (generic term)|Asiatic (generic term)
+(noun)|Iranian|Iranian language|Indo-Iranian (generic term)|Indo-Iranian language (generic term)
+iranian capital|1
+(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital (generic term)
+iranian dinar|1
+(noun)|Iranian dinar|dinar|Iranian monetary unit (generic term)
+iranian language|1
+(noun)|Iranian|Iranian language|Indo-Iranian (generic term)|Indo-Iranian language (generic term)
+iranian monetary unit|1
+(noun)|Iranian monetary unit|monetary unit (generic term)
+iranian rial|1
+(noun)|Iranian rial|rial|Iranian monetary unit (generic term)
+iraq|1
+(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country (generic term)|Asian nation (generic term)
+iraqi|2
+(adj)|Iraqi|Iraki|Asian country|Asian nation (related term)
+(noun)|Iraqi|Iraki|Asian (generic term)|Asiatic (generic term)
+iraqi dinar|1
+(noun)|Iraqi dinar|dinar|Iraqi monetary unit (generic term)
+iraqi intelligence service|1
+(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency (generic term)
+iraqi kurdistan|1
+(noun)|Iraqi Kurdistan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+iraqi monetary unit|1
+(noun)|Iraqi monetary unit|monetary unit (generic term)
+iraqi mukhabarat|1
+(noun)|Iraqi Intelligence Service|IIS|Iraqi Mukhabarat|international intelligence agency (generic term)
+iraqi national congress|1
+(noun)|Iraqi National Congress|INC|opposition (generic term)
+irascibility|1
+(noun)|short temper|spleen|quick temper|bad temper (generic term)|ill temper (generic term)
+irascible|2
+(adj)|choleric|hotheaded|hot-tempered|quick-tempered|short-tempered|ill-natured (similar term)
+(adj)|choleric|angry (similar term)
+irate|1
+(adj)|ireful|angry (similar term)
+ire|2
+(noun)|anger|choler|emotion (generic term)
+(noun)|wrath|anger|ira|mortal sin (generic term)|deadly sin (generic term)
+ireful|1
+(adj)|irate|angry (similar term)
+ireland|2
+(noun)|Ireland|Eire|Irish Free State|European country (generic term)|European nation (generic term)
+(noun)|Ireland|Hibernia|Emerald Isle|island (generic term)
+irelander|1
+(noun)|Irish person|Irelander|European (generic term)
+irena|1
+(noun)|Irena|genus Irena|bird genus (generic term)
+irenaeus|1
+(noun)|Irenaeus|Saint Irenaeus|St. Irenaeus|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+irene joliot-curie|1
+(noun)|Joliot-Curie|Irene Joliot-Curie|physicist (generic term)
+irenic|1
+(adj)|peaceful (similar term)
+irenidae|1
+(noun)|Irenidae|family Irenidae|bird family (generic term)
+iresine|1
+(noun)|Iresine|genus Iresine|caryophylloid dicot genus (generic term)
+iresine herbstii|1
+(noun)|beefsteak plant|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf (generic term)
+iresine reticulata|1
+(noun)|beefsteak plant|beef plant|Iresine herbstii|Iresine reticulata|bloodleaf (generic term)
+iridaceae|1
+(noun)|Iridaceae|family Iridaceae|iris family|liliid monocot family (generic term)
+iridaceous|1
+(adj)|liliid monocot family (related term)
+iridaceous plant|1
+(noun)|bulbous plant (generic term)
+iridectomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+iridesce|1
+(verb)|be (generic term)
+iridescence|1
+(noun)|opalescence|brightness (generic term)
+iridescent|2
+(adj)|changeable|chatoyant|shot|colorful (similar term)|colourful (similar term)
+(adj)|nacreous|opalescent|opaline|pearlescent|bright (similar term)
+iridic|2
+(adj)|metallic element|metal (related term)
+(adj)|membrane|tissue layer (related term)
+iridium|1
+(noun)|Ir|atomic number 77|metallic element (generic term)|metal (generic term)
+iridocyclitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+iridokeratitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+iridoncus|1
+(noun)|swelling (generic term)|puffiness (generic term)|lump (generic term)
+iridoprocne|1
+(noun)|Iridoprocne|genus Iridoprocne|bird genus (generic term)
+iridoprocne bicolor|1
+(noun)|white-bellied swallow|tree swallow|Iridoprocne bicolor|swallow (generic term)
+iridosmine|1
+(noun)|osmiridium|mineral (generic term)
+iridotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+iris|3
+(noun)|flag|fleur-de-lis|sword lily|iridaceous plant (generic term)
+(noun)|membrane (generic term)|tissue layer (generic term)
+(noun)|iris diaphragm|diaphragm (generic term)|stop (generic term)
+iris cristata|1
+(noun)|dwarf iris|Iris cristata|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris diaphragm|1
+(noun)|iris|diaphragm (generic term)|stop (generic term)
+iris family|1
+(noun)|Iridaceae|family Iridaceae|liliid monocot family (generic term)
+iris filifolia|1
+(noun)|Dutch iris|Iris filifolia|beardless iris (generic term)
+iris florentina|1
+(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris (generic term)
+iris foetidissima|1
+(noun)|stinking iris|gladdon|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris germanica|1
+(noun)|German iris|Iris germanica|bearded iris (generic term)
+iris germanica florentina|1
+(noun)|Florentine iris|orris|Iris germanica florentina|Iris florentina|bearded iris (generic term)
+iris kaempferi|1
+(noun)|Japanese iris|Iris kaempferi|beardless iris (generic term)
+iris kochii|1
+(noun)|German iris|Iris kochii|bearded iris (generic term)
+iris murdoch|1
+(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer (generic term)|author (generic term)
+iris pallida|1
+(noun)|Dalmatian iris|Iris pallida|bearded iris (generic term)
+iris persica|1
+(noun)|Persian iris|Iris persica|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris pseudacorus|1
+(noun)|yellow iris|yellow flag|yellow water flag|Iris pseudacorus|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris scanning|1
+(noun)|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+iris tingitana|1
+(noun)|Dutch iris|Iris tingitana|beardless iris (generic term)
+iris verna|1
+(noun)|dwarf iris|vernal iris|Iris verna|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris versicolor|1
+(noun)|blue flag|Iris versicolor|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris virginica|1
+(noun)|southern blue flag|Iris virginica|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris xiphioides|1
+(noun)|English iris|Iris xiphioides|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+iris xiphium|1
+(noun)|Spanish iris|xiphium iris|Iris xiphium|beardless iris (generic term)
+irish|4
+(adj)|Irish|island (related term)
+(noun)|Irish|Irish people|nation (generic term)|land (generic term)|country (generic term)
+(noun)|Irish|Irish whiskey|Irish whisky|whiskey (generic term)|whisky (generic term)
+(noun)|Irish|Irish Gaelic|Gaelic (generic term)|Goidelic (generic term)|Erse (generic term)
+irish bull|1
+(noun)|bullshit|bull|Irish bull|horseshit|shit|crap|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+irish burgoo|1
+(noun)|mulligan stew|mulligan|Irish burgoo|stew (generic term)
+irish capital|1
+(noun)|Dublin|Irish capital|capital of Ireland|national capital (generic term)|port (generic term)
+irish coffee|1
+(noun)|Irish coffee|coffee (generic term)|java (generic term)
+irish free state|1
+(noun)|Ireland|Eire|Irish Free State|European country (generic term)|European nation (generic term)
+irish gaelic|1
+(noun)|Irish|Irish Gaelic|Gaelic (generic term)|Goidelic (generic term)|Erse (generic term)
+irish gorse|1
+(noun)|gorse|furze|whin|Irish gorse|Ulex europaeus|shrub (generic term)|bush (generic term)
+irish monetary unit|1
+(noun)|Irish monetary unit|monetary unit (generic term)
+irish moss|1
+(noun)|Irish moss|carrageen|carageen|carragheen|Chondrus crispus|red algae (generic term)
+irish national liberation army|1
+(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+irish people|1
+(noun)|Irish|Irish people|nation (generic term)|land (generic term)|country (generic term)
+irish person|1
+(noun)|Irish person|Irelander|European (generic term)
+irish potato|1
+(noun)|potato|white potato|Irish potato|murphy|spud|tater|root vegetable (generic term)|solanaceous vegetable (generic term)
+irish pound|1
+(noun)|Irish pound|Irish punt|punt|pound|Irish monetary unit (generic term)
+irish punt|1
+(noun)|Irish pound|Irish punt|punt|pound|Irish monetary unit (generic term)
+irish republican army|1
+(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+irish sea|1
+(noun)|Irish Sea|sea (generic term)
+irish setter|1
+(noun)|Irish setter|red setter|setter (generic term)
+irish soda bread|1
+(noun)|Irish soda bread|quick bread (generic term)
+irish stew|1
+(noun)|Irish stew|stew (generic term)
+irish strawberry|1
+(noun)|strawberry tree|Irish strawberry|Arbutus unedo|arbutus (generic term)
+irish terrier|1
+(noun)|Irish terrier|terrier (generic term)
+irish water spaniel|1
+(noun)|Irish water spaniel|water spaniel (generic term)
+irish whiskey|1
+(noun)|Irish|Irish whiskey|Irish whisky|whiskey (generic term)|whisky (generic term)
+irish whisky|1
+(noun)|Irish|Irish whiskey|Irish whisky|whiskey (generic term)|whisky (generic term)
+irish wolfhound|1
+(noun)|Irish wolfhound|wolfhound (generic term)
+irishman|1
+(noun)|Irishman|Irish person (generic term)|Irelander (generic term)
+irishwoman|1
+(noun)|Irishwoman|Irish person (generic term)|Irelander (generic term)
+iritic|1
+(adj)|membrane|tissue layer (related term)
+iritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+irk|1
+(verb)|gall|anger (generic term)
+irksome|1
+(adj)|boring|deadening|dull|ho-hum|slow|tedious|tiresome|wearisome|uninteresting (similar term)
+iron|6
+(adj)|cast-iron|robust (similar term)
+(noun)|Fe|atomic number 26|metallic element (generic term)|metal (generic term)
+(noun)|golf club (generic term)|golf-club (generic term)|club (generic term)
+(noun)|branding iron|implement (generic term)
+(noun)|smoothing iron|home appliance (generic term)|household appliance (generic term)
+(verb)|iron out|press|press (generic term)
+iron-gray|2
+(adj)|iron-grey|achromatic (similar term)
+(noun)|iron-grey|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+iron-grey|2
+(adj)|iron-gray|achromatic (similar term)
+(noun)|iron-gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+iron-storage disease|1
+(noun)|hemochromatosis|iron overload|bronzed diabetes|pathology (generic term)
+iron-tree|1
+(noun)|iron tree|ironwood|ironwood tree|angiospermous tree (generic term)|flowering tree (generic term)
+iron age|2
+(noun)|Iron Age|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+iron blue|2
+(noun)|steel grey|steel gray|Davy's grey|Davy's gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+(noun)|Prussian blue|pigment (generic term)
+iron boot|1
+(noun)|boot|the boot|iron heel|instrument of torture (generic term)
+iron cage|1
+(noun)|cage (generic term)
+iron carbide|1
+(noun)|cementite|compound (generic term)|chemical compound (generic term)
+iron chancellor|1
+(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman (generic term)|solon (generic term)|national leader (generic term)
+iron collar|1
+(noun)|garrote|garotte|garrotte|instrument of execution (generic term)
+iron curtain|1
+(noun)|ideological barrier (generic term)
+iron deficiency anaemia|1
+(noun)|iron deficiency anemia|anemia (generic term)|anaemia (generic term)
+iron deficiency anemia|1
+(noun)|iron deficiency anaemia|anemia (generic term)|anaemia (generic term)
+iron disulfide|1
+(noun)|sulfide (generic term)|sulphide (generic term)
+iron duke|1
+(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|Iron Duke|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+iron filing|1
+(noun)|metal filing (generic term)
+iron fist|1
+(noun)|control (generic term)
+iron foundry|1
+(noun)|foundry (generic term)|metalworks (generic term)
+iron heel|1
+(noun)|boot|the boot|iron boot|instrument of torture (generic term)
+iron horse|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+iron lady|1
+(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman (generic term)
+iron lung|1
+(noun)|respirator (generic term)|inhalator (generic term)
+iron maiden|1
+(noun)|instrument of torture (generic term)
+iron man|1
+(noun)|ironman|man (generic term)|adult male (generic term)
+iron manganese tungsten|1
+(noun)|wolframite|mineral (generic term)
+iron mold|1
+(noun)|iron mould|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+iron mould|1
+(noun)|iron mold|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+iron oak|2
+(noun)|post oak|box white oak|brash oak|Quercus stellata|oak (generic term)|oak tree (generic term)
+(noun)|canyon oak|canyon live oak|maul oak|Quercus chrysolepis|live oak (generic term)
+iron ore|1
+(noun)|ore (generic term)
+iron out|2
+(verb)|straighten out|put right|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|iron|press|press (generic term)
+iron overload|1
+(noun)|hemochromatosis|iron-storage disease|bronzed diabetes|pathology (generic term)
+iron perchloride|1
+(noun)|perchloride (generic term)
+iron putty|1
+(noun)|cement (generic term)
+iron pyrite|1
+(noun)|pyrite|fool's gold|mineral (generic term)
+iron trap|1
+(noun)|trap (generic term)|snare (generic term)
+iron tree|1
+(noun)|iron-tree|ironwood|ironwood tree|angiospermous tree (generic term)|flowering tree (generic term)
+ironclad|3
+(adj)|sheathed (similar term)
+(adj)|brassbound|inflexible (similar term)
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+ironed|1
+(adj)|pressed (similar term)|smoothed (similar term)|smoothened (similar term)|smooth (related term)|unironed (antonym)
+ironic|2
+(adj)|dry|ironical|wry|humorous (similar term)|humourous (similar term)
+(adj)|ironical|incongruous (similar term)
+ironical|2
+(adj)|ironic|incongruous (similar term)
+(adj)|dry|ironic|wry|humorous (similar term)|humourous (similar term)
+ironing|2
+(noun)|garment (generic term)|white goods (generic term)|household linen (generic term)
+(noun)|work (generic term)
+ironing board|1
+(noun)|board (generic term)
+ironist|1
+(noun)|satirist|ridiculer|humorist (generic term)|humourist (generic term)
+ironlike|1
+(adj)|strong (similar term)
+ironman|1
+(noun)|iron man|man (generic term)|adult male (generic term)
+ironmonger|1
+(noun)|hardwareman|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+ironmongery|1
+(noun)|hardware store|shop (generic term)|store (generic term)
+irons|1
+(noun)|chains|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+ironshod|1
+(adj)|shod (similar term)|shodden (similar term)|shoed (similar term)
+ironside|1
+(noun)|man (generic term)|adult male (generic term)
+ironsides|1
+(noun)|Cromwell|Oliver Cromwell|Ironsides|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+ironware|1
+(noun)|hardware|instrumentality (generic term)|instrumentation (generic term)
+ironweed|1
+(noun)|vernonia|herb (generic term)|herbaceous plant (generic term)
+ironwood|4
+(noun)|rose chestnut|ironwood tree|Mesua ferrea|tree (generic term)
+(noun)|wood (generic term)
+(noun)|iron tree|iron-tree|ironwood tree|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Eastern hop hornbeam|ironwood tree|Ostrya virginiana|hop hornbeam (generic term)
+ironwood tree|3
+(noun)|rose chestnut|ironwood|Mesua ferrea|tree (generic term)
+(noun)|iron tree|iron-tree|ironwood|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Eastern hop hornbeam|ironwood|Ostrya virginiana|hop hornbeam (generic term)
+ironwork|1
+(noun)|work (generic term)|piece of work (generic term)
+ironworker|1
+(noun)|maker (generic term)|shaper (generic term)
+ironworks|1
+(noun)|workplace (generic term)|work (generic term)
+irony|3
+(noun)|sarcasm|satire|caustic remark|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|incongruity (generic term)|incongruousness (generic term)
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+iroquoian|1
+(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+iroquoian language|1
+(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+iroquois|2
+(noun)|Iroquois|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Iroquoian|Iroquois|Iroquoian language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+iroquois league|1
+(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league (generic term)
+irradiate|3
+(verb)|enlighten|prophesy (generic term)|vaticinate (generic term)
+(verb)|lighten (generic term)|lighten up (generic term)
+(verb)|ray|process (generic term)|treat (generic term)
+irradiation|6
+(noun)|condition (generic term)|status (generic term)
+(noun)|beam|beam of light|light beam|ray|ray of light|shaft|shaft of light|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|spread (generic term)|spreading (generic term)
+(noun)|illusion (generic term)|semblance (generic term)
+(noun)|generalization (generic term)|generalisation (generic term)|stimulus generalization (generic term)|stimulus generalisation (generic term)
+(noun)|radiotherapy|radiation therapy|radiation|actinotherapy|therapy (generic term)
+irrational|3
+(adj)|blind (similar term)|unreasoning (similar term)|reasonless (similar term)|nonrational (similar term)|superstitious (similar term)|illogical (related term)|unlogical (related term)|incoherent (related term)|unreasonable (related term)|rational (antonym)
+(adj)|magnitude relation|quantitative relation (related term)|rational (antonym)
+(noun)|irrational number|real number (generic term)|real (generic term)
+irrational hostility|1
+(noun)|bias (generic term)|prejudice (generic term)|preconception (generic term)
+irrational impulse|1
+(noun)|irrational motive (generic term)
+irrational motive|1
+(noun)|motivation (generic term)|motive (generic term)|need (generic term)
+irrational number|1
+(noun)|irrational|real number (generic term)|real (generic term)
+irrationality|1
+(noun)|unreason|insanity (generic term)
+irrationally|1
+(adv)|without reasoning|rationally (antonym)
+irrawaddy|1
+(noun)|Irrawaddy|Irrawaddy River|river (generic term)
+irrawaddy river|1
+(noun)|Irrawaddy|Irrawaddy River|river (generic term)
+irreality|1
+(noun)|unreality|nonexistence (generic term)|nonentity (generic term)|reality (antonym)
+irreclaimable|1
+(adj)|irredeemable|unredeemable|unreformable|wicked (similar term)
+irreconcilable|1
+(adj)|unreconcilable|hostile (similar term)|inconsistent (similar term)|reconcilable (antonym)
+irrecoverable|1
+(adj)|unrecoverable|forgotten (similar term)|lost (similar term)|irretrievable (similar term)|unretrievable (similar term)|lost (similar term)|recoverable (antonym)
+irredeemable|2
+(adj)|irreclaimable|unredeemable|unreformable|wicked (similar term)
+(adj)|inconvertible (similar term)|unconvertible (similar term)|unexchangeable (similar term)
+irredenta|1
+(noun)|irridenta|region (generic term)
+irredentism|1
+(noun)|irridentism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+irredentist|1
+(noun)|irridentist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+irreducible|1
+(adj)|reducible (antonym)
+irrefutable|1
+(adj)|incontrovertible|positive|undeniable (similar term)
+irregular|10
+(adj)|asymmetrical (similar term)|crooked (similar term)|casual (similar term)|occasional (similar term)|improper (similar term)|unconventional (similar term)|unlawful (similar term)|randomized (similar term)|randomised (similar term)|strong (similar term)|asymmetrical (related term)|asymmetric (related term)|illegal (related term)|rough (related term)|unsmooth (related term)|unrhythmical (related term)|unrhythmic (related term)|unsteady (related term)|unsystematic (related term)|regular (antonym)
+(adj)|regular (antonym)
+(adj)|unpredictable|sporadic (similar term)
+(adj)|partisan (related term)|partizan (related term)|regular (antonym)
+(adj)|atypical|abnormal (similar term)
+(adj)|temporary|part-time (similar term)|parttime (similar term)
+(adj)|uneven (similar term)
+(adj)|maverick|unorthodox|unconventional (similar term)
+(noun)|guerrilla|guerilla|insurgent|warrior (generic term)
+(noun)|second|merchandise (generic term)|ware (generic term)|product (generic term)
+irregularity|4
+(noun)|abnormality|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+(noun)|unregularity|quality (generic term)|regularity (antonym)
+(noun)|geometrical irregularity|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+(noun)|constipation|symptom (generic term)
+irregularly|2
+(adv)|regularly (antonym)
+(adv)|on an irregular basis|regularly (antonym)
+irrelevance|1
+(noun)|irrelevancy|unconnectedness (generic term)|relevance (antonym)
+irrelevancy|1
+(noun)|irrelevance|unconnectedness (generic term)|relevance (antonym)
+irrelevant|1
+(adj)|digressive (similar term)|tangential (similar term)|extraneous (similar term)|immaterial (similar term)|impertinent (similar term)|orthogonal (similar term)|inapplicable (similar term)|unsuitable (similar term)|moot (similar term)|relevant (antonym)
+irrelevantly|1
+(adv)|relevantly (antonym)
+irreligion|1
+(noun)|irreligiousness|impiety (generic term)|impiousness (generic term)
+irreligionist|1
+(noun)|disbeliever (generic term)|nonbeliever (generic term)|unbeliever (generic term)
+irreligious|1
+(adj)|atheistic (similar term)|atheistical (similar term)|unbelieving (similar term)|heathen (similar term)|heathenish (similar term)|pagan (similar term)|ethnic (similar term)|impious (similar term)|ungodly (similar term)|lapsed (similar term)|nonchurchgoing (similar term)|nonobservant (similar term)|impious (related term)|religious (antonym)
+irreligiousness|1
+(noun)|irreligion|impiety (generic term)|impiousness (generic term)
+irremediable|1
+(adj)|remediable (antonym)
+irremovable|1
+(adj)|tenured (similar term)|removable (antonym)
+irreparable|1
+(adj)|reparable (antonym)
+irreplaceable|1
+(adj)|unreplaceable|unexpendable (related term)|replaceable (antonym)
+irreplaceableness|1
+(noun)|unexchangeability (generic term)
+irrepressibility|1
+(noun)|buoyancy|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+irrepressible|1
+(adj)|uncontrollable|uncontrolled (similar term)
+irreproachable|1
+(adj)|blameless|inculpable|unimpeachable|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+irreproachably|1
+(adv)|blamelessly
+irreproducibility|1
+(noun)|undependability (generic term)|undependableness (generic term)|unreliability (generic term)|unreliableness (generic term)
+irreproducible|1
+(adj)|unreproducible|inimitable (similar term)|unrepeatable (similar term)|reproducible (antonym)
+irresistibility|1
+(noun)|irresistibleness|power (generic term)|powerfulness (generic term)
+irresistible|2
+(adj)|resistless|overpowering (similar term)|overwhelming (similar term)|resistible (antonym)
+(adj)|attractive (similar term)
+irresistible impulse|1
+(noun)|compulsion|irrational impulse (generic term)
+irresistibleness|1
+(noun)|irresistibility|power (generic term)|powerfulness (generic term)
+irresistibly|1
+(adv)|overwhelmingly|overpoweringly
+irresolute|1
+(adj)|discouraged (similar term)|infirm (similar term)|unstable (similar term)|vacillant (similar term)|vacillating (similar term)|wavering (similar term)|weak-kneed (similar term)|indecisive (related term)|resolute (antonym)
+irresolutely|1
+(adv)|resolutely (antonym)
+irresoluteness|1
+(noun)|irresolution|trait (generic term)|resoluteness (antonym)
+irresolution|2
+(noun)|indecision|indecisiveness|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|irresoluteness|trait (generic term)|resoluteness (antonym)
+irrespective|1
+(adv)|regardless|disregardless|no matter|disregarding
+irresponsibility|1
+(noun)|irresponsibleness|untrustworthiness (generic term)|untrustiness (generic term)|responsibleness (antonym)|responsibility (antonym)
+irresponsible|1
+(adj)|carefree (similar term)|devil-may-care (similar term)|freewheeling (similar term)|happy-go-lucky (similar term)|harum-scarum (similar term)|slaphappy (similar term)|do-nothing (similar term)|feckless (similar term)|idle (similar term)|loose (similar term)|trigger-happy (similar term)|unaccountable (similar term)|unreliable (similar term)|responsible (antonym)
+irresponsibleness|1
+(noun)|irresponsibility|untrustworthiness (generic term)|untrustiness (generic term)|responsibleness (antonym)|responsibility (antonym)
+irresponsibly|1
+(adv)|responsibly (antonym)
+irretrievable|1
+(adj)|unretrievable|unrecoverable (similar term)|irrecoverable (similar term)
+irreverence|2
+(noun)|attitude (generic term)|mental attitude (generic term)|reverence (antonym)
+(noun)|violation|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+irreverent|3
+(adj)|blasphemous (similar term)|profane (similar term)|sacrilegious (similar term)|aweless (similar term)|awless (similar term)|disrespectful (similar term)|disrespectful (related term)|reverent (antonym)
+(adj)|impertinent|pert|saucy|spirited (similar term)
+(adj)|godless|impious (similar term)
+irreverently|1
+(adv)|reverently (antonym)
+irreversibility|1
+(noun)|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|reversibility (antonym)
+irreversible|1
+(adj)|permanent (similar term)|reversible (antonym)
+irreversible process|1
+(noun)|process (generic term)|physical process (generic term)|reversible process (antonym)
+irrevocable|1
+(adj)|irrevokable|sealed (similar term)|revocable (antonym)
+irrevokable|1
+(adj)|irrevocable|sealed (similar term)|revocable (antonym)
+irridenta|1
+(noun)|irredenta|region (generic term)
+irridentism|1
+(noun)|irredentism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+irridentist|1
+(noun)|irredentist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+irrigate|2
+(verb)|water|wet (generic term)
+(verb)|treat (generic term)|care for (generic term)
+irrigation|2
+(noun)|provision (generic term)|supply (generic term)|supplying (generic term)
+(noun)|medical care (generic term)|medical aid (generic term)
+irrigation ditch|1
+(noun)|ditch (generic term)
+irritability|3
+(noun)|crossness|fretfulness|fussiness|peevishness|petulance|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|excitability|responsiveness (generic term)|reactivity (generic term)
+(noun)|temper|biliousness|peevishness|pettishness|snappishness|surliness|ill nature (generic term)
+irritable|3
+(adj)|cranky|fractious|nettlesome|peevish|peckish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+(adj)|sensitive (similar term)
+(adj)|excitable|sensitive (similar term)
+irritable bowel syndrome|1
+(noun)|spastic colon|mucous colitis|colitis (generic term)|inflammatory bowel disease (generic term)
+irritably|1
+(adv)|testily|petulantly|pettishly
+irritant|1
+(noun)|thorn|annoyance (generic term)|bother (generic term)|botheration (generic term)|pain (generic term)|infliction (generic term)|pain in the neck (generic term)|pain in the ass (generic term)
+irritate|3
+(verb)|annoy|rag|get to|bother|get at|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+(verb)|worsen (generic term)|aggravate (generic term)|exacerbate (generic term)|exasperate (generic term)|soothe (antonym)
+(verb)|stimulate (generic term)|excite (generic term)
+irritated|1
+(adj)|annoyed|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+irritating|3
+(adj)|annoying|bothersome|galling|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+(adj)|irritative|stimulative (similar term)
+(adj)|painful|uncomfortable (similar term)
+irritation|7
+(noun)|annoyance|vexation|botheration|psychological state (generic term)|mental state (generic term)
+(noun)|pique|temper|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)|sensitization (generic term)|sensitisation (generic term)
+(noun)|excitation|innervation|arousal (generic term)
+(noun)|discomfort|soreness|suffering (generic term)|hurt (generic term)
+(noun)|aggravation|provocation|aggression (generic term)
+(noun)|annoyance|annoying|vexation|mistreatment (generic term)
+irritative|1
+(adj)|irritating|stimulative (similar term)
+irrupt|3
+(verb)|intrude|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|intrude on (related term)
+(verb)|erupt|flare up|flare|break open|burst out|intensify (generic term)|deepen (generic term)
+(verb)|explode|increase (generic term)
+irruption|3
+(noun)|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|population growth (generic term)
+(noun)|outbreak|eruption|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+irruptive|1
+(adj)|plutonic|intrusive (similar term)
+irs|1
+(noun)|Internal Revenue Service|IRS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+irtish|1
+(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river (generic term)
+irtish river|1
+(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river (generic term)
+irtysh|1
+(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river (generic term)
+irtysh river|1
+(noun)|Irtish|Irtish River|Irtysh|Irtysh River|river (generic term)
+irula|1
+(noun)|Irula|South Dravidian (generic term)
+irving|2
+(noun)|Irving|Washington Irving|writer (generic term)|author (generic term)
+(noun)|Irving|John Irving|writer (generic term)|author (generic term)
+irving berlin|1
+(noun)|Berlin|Irving Berlin|Israel Baline|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+irving howe|1
+(noun)|Howe|Irving Howe|editor (generic term)|editor in chief (generic term)
+irving langmuir|1
+(noun)|Langmuir|Irving Langmuir|chemist (generic term)
+irvingia|1
+(noun)|Irvingia|genus Irvingia|rosid dicot genus (generic term)
+irvingia gabonensis|1
+(noun)|wild mango|dika|wild mango tree|Irvingia gabonensis|fruit tree (generic term)
+isaac|1
+(noun)|Isaac|patriarch (generic term)
+isaac asimov|1
+(noun)|Asimov|Isaac Asimov|writer (generic term)|author (generic term)
+isaac bashevis singer|1
+(noun)|Singer|Isaac Bashevis Singer|writer (generic term)|author (generic term)
+isaac hull|1
+(noun)|Hull|Isaac Hull|naval officer (generic term)
+isaac m. singer|1
+(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+isaac mayer wise|1
+(noun)|Wise|Isaac Mayer Wise|religious leader (generic term)
+isaac merrit singer|1
+(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+isaac newton|1
+(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician (generic term)|physicist (generic term)
+isaac stern|1
+(noun)|Stern|Isaac Stern|violinist (generic term)|fiddler (generic term)
+isaac watts|1
+(noun)|Watts|Isaac Watts|poet (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+isabella|1
+(noun)|Isabella|Queen Isabella|Isabella I|Isabella the Catholic|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+isabella i|1
+(noun)|Isabella|Queen Isabella|Isabella I|Isabella the Catholic|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+isabella stewart gardner|1
+(noun)|Gardner|Isabella Stewart Gardner|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+isabella the catholic|1
+(noun)|Isabella|Queen Isabella|Isabella I|Isabella the Catholic|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+isadora duncan|1
+(noun)|Duncan|Isadora Duncan|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+isaiah|2
+(noun)|Isaiah|prophet (generic term)
+(noun)|Isaiah|Book of Isaiah|book (generic term)
+isak dinesen|1
+(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer (generic term)|author (generic term)
+isamu noguchi|1
+(noun)|Noguchi|Isamu Noguchi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+isarithm|1
+(noun)|isogram|isopleth|line (generic term)
+isatis|1
+(noun)|Isatis|genus Isatis|dilleniid dicot genus (generic term)
+isatis tinctoria|1
+(noun)|dyer's woad|Isatis tinctoria|woad (generic term)
+ischaemia|1
+(noun)|ischemia|anemia (generic term)|anaemia (generic term)
+ischaemic|1
+(adj)|ischemic|anemia|anaemia (related term)
+ischaemic stroke|1
+(noun)|ischemic stroke|stroke (generic term)|apoplexy (generic term)|cerebrovascular accident (generic term)|CVA (generic term)|ischemia (generic term)|ischaemia (generic term)
+ischemia|1
+(noun)|ischaemia|anemia (generic term)|anaemia (generic term)
+ischemic|1
+(adj)|ischaemic|anemia|anaemia (related term)
+ischemic anoxia|1
+(noun)|stagnant anoxia|anoxia (generic term)
+ischemic hypoxia|1
+(noun)|stagnant hypoxia|hypoxia (generic term)
+ischemic stroke|1
+(noun)|ischaemic stroke|stroke (generic term)|apoplexy (generic term)|cerebrovascular accident (generic term)|CVA (generic term)|ischemia (generic term)|ischaemia (generic term)
+ischia|1
+(noun)|Ischia|island (generic term)
+ischial bone|1
+(noun)|ischium|os ischii|bone (generic term)|os (generic term)
+ischigualastia|1
+(noun)|Ischigualastia|genus Ischigualastia|reptile genus (generic term)
+ischium|1
+(noun)|ischial bone|os ischii|bone (generic term)|os (generic term)
+isentropic|1
+(adj)|physical property (related term)
+isere|1
+(noun)|Isere|Isere River|river (generic term)
+isere river|1
+(noun)|Isere|Isere River|river (generic term)
+iseult|1
+(noun)|Iseult|Isolde|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+isfahan|1
+(noun)|Isfahan|Esfahan|Aspadana|city (generic term)|metropolis (generic term)|urban center (generic term)
+isherwood|1
+(noun)|Isherwood|Christopher Isherwood|Christopher William Bradshaw Isherwood|writer (generic term)|author (generic term)
+ishmael|2
+(noun)|Ishmael|patriarch (generic term)
+(noun)|outcast|castaway|pariah|Ishmael|unfortunate (generic term)|unfortunate person (generic term)
+ishtar|1
+(noun)|Ishtar|Mylitta|Semitic deity (generic term)
+isi|1
+(noun)|Directorate for Inter-Services Intelligence|Inter-Services Intelligence|ISI|international intelligence agency (generic term)
+isidor feinstein stone|1
+(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist (generic term)
+isidore auguste marie francois comte|1
+(noun)|Comte|Auguste Comte|Isidore Auguste Marie Francois Comte|philosopher (generic term)
+isinglass|1
+(noun)|mica|mineral (generic term)|transparent substance (generic term)|translucent substance (generic term)
+isis|1
+(noun)|Isis|Egyptian deity (generic term)
+iskcon|1
+(noun)|Hare Krishna|International Society for Krishna Consciousness|ISKCON|sect (generic term)|religious sect (generic term)|religious order (generic term)
+islam|2
+(noun)|Islam|Muslimism|civilization (generic term)|civilisation (generic term)
+(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism (generic term)
+islam nation|1
+(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community (generic term)
+islamabad|1
+(noun)|Islamabad|capital of Pakistan|national capital (generic term)
+islamic|1
+(adj)|Muslim|Moslem|Islamic|monotheism (related term)
+islamic army of aden|1
+(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic army of aden-abyan|1
+(noun)|Islamic Army of Aden|IAA|Islamic Army of Aden-Abyan|Aden-Abyan Islamic Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic calendar|1
+(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar (generic term)
+islamic calendar month|1
+(noun)|Islamic calendar month|calendar month (generic term)|month (generic term)
+islamic community|1
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic great eastern raiders-front|1
+(noun)|Islamic Great Eastern Raiders-Front|IBDA-C|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic group|2
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|al-Gama'a al-Islamiyya|Islamic Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic group of uzbekistan|1
+(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic law|1
+(noun)|shariah|shariah law|sharia|sharia law|Islamic law|law (generic term)|jurisprudence (generic term)
+islamic party of turkestan|1
+(noun)|Islamic Group of Uzbekistan|IMU|Islamic Party of Turkestan|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic republic of iran|1
+(noun)|Iran|Islamic Republic of Iran|Persia|Asian country (generic term)|Asian nation (generic term)
+islamic republic of mauritania|1
+(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country (generic term)|African nation (generic term)
+islamic republic of pakistan|1
+(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country (generic term)|Asian nation (generic term)
+islamic resistance movement|1
+(noun)|Hamas|Islamic Resistance Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamic state of afghanistan|1
+(noun)|Afghanistan|Islamic State of Afghanistan|Asian country (generic term)|Asian nation (generic term)
+islamic ummah|1
+(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community (generic term)
+islamic unity|1
+(noun)|al Itihaad al Islamiya|al-Itihaad al-Islamiya|Islamic Unity|AIAI|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+islamise|2
+(verb)|Islamize|Islamise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|Islamize|Islamise|convert (generic term)
+islamism|2
+(noun)|Islamism|religious movement (generic term)
+(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism (generic term)
+islamist|2
+(noun)|Islamist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|Islamist|Muslim (generic term)|Moslem (generic term)
+islamize|2
+(verb)|Islamize|Islamise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|Islamize|Islamise|convert (generic term)
+islamophobia|1
+(noun)|Islamophobia|bias (generic term)|prejudice (generic term)|preconception (generic term)
+island|2
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|zone (generic term)
+island-dweller|1
+(noun)|islander|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+island dispenser|1
+(noun)|gas pump|gasoline pump|pump (generic term)
+island hop|1
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+island of guernsey|1
+(noun)|Guernsey|island of Guernsey|Channel Island (generic term)
+island of jersey|1
+(noun)|Jersey|island of Jersey|Channel Island (generic term)
+islander|1
+(noun)|island-dweller|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+islands of langerhans|1
+(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+islay|2
+(noun)|holly-leaved cherry|holly-leaf cherry|evergreen cherry|Prunus ilicifolia|wild plum (generic term)|wild plum tree (generic term)
+(noun)|Islay|island (generic term)
+isle|1
+(noun)|islet|island (generic term)
+isle of man|1
+(noun)|Man|Isle of Man|island (generic term)
+isle of skye|1
+(noun)|Isle of Skye|island (generic term)
+isle of wight|1
+(noun)|Wight|Isle of Wight|isle (generic term)|islet (generic term)|county (generic term)
+isle royal national park|1
+(noun)|Isle Royal National Park|national park (generic term)
+isles of langerhans|1
+(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+isles of scilly|1
+(noun)|Scilly Islands|Isles of Scilly|archipelago (generic term)
+islet|1
+(noun)|isle|island (generic term)
+islets of langerhans|1
+(noun)|islands of Langerhans|isles of Langerhans|islets of Langerhans|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+ism|1
+(noun)|doctrine|philosophy|philosophical system|school of thought|belief (generic term)
+ismaili|2
+(adj)|Ismaili|Shiism (related term)
+(noun)|Ismaili|Ismailian|disciple (generic term)|adherent (generic term)
+ismailian|1
+(noun)|Ismaili|Ismailian|disciple (generic term)|adherent (generic term)
+ismailism|1
+(noun)|Ismailism|Shiism (generic term)
+isn|1
+(noun)|International Relations and Security Network|ISN|international intelligence agency (generic term)
+isoagglutination|1
+(noun)|agglutination (generic term)
+isoagglutinin|1
+(noun)|agglutinin (generic term)
+isoagglutinogen|1
+(noun)|agglutinogen (generic term)
+isoantibody|1
+(noun)|alloantibody|antibody (generic term)
+isobar|1
+(noun)|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isobilateral|1
+(adj)|bilateral|bilaterally symmetrical|bilaterally symmetric|symmetrical (similar term)|symmetric (similar term)
+isobutyl nitrite|1
+(noun)|butyl nitrite|vasodilator (generic term)|vasodilative (generic term)|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+isobutylene|1
+(noun)|butylene (generic term)|butene (generic term)
+isobutylphenyl propionic acid|1
+(noun)|ibuprofen|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+isocarboxazid|1
+(noun)|Marplan|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+isoceles|1
+(adj)|symmetrical (similar term)|symmetric (similar term)
+isochronal|1
+(adj)|isochronous|equal (similar term)
+isochrone|1
+(noun)|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isochronous|1
+(adj)|isochronal|equal (similar term)
+isoclinal|2
+(adj)|isoclinic|equal (similar term)
+(noun)|isoclinic line|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isoclinic|1
+(adj)|isoclinal|equal (similar term)
+isoclinic line|1
+(noun)|isoclinal|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isocrates|1
+(noun)|Isocrates|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+isocyanate|1
+(noun)|salt (generic term)
+isocyanic acid|1
+(noun)|acid (generic term)
+isocyclic|1
+(adj)|homocyclic|cyclic (similar term)
+isoetaceae|1
+(noun)|Isoetaceae|family Isoetaceae|quillwort family|fern family (generic term)
+isoetales|1
+(noun)|Isoetales|order Isoetales|plant order (generic term)
+isoetes|1
+(noun)|Isoetes|genus Isoetes|fern genus (generic term)
+isoflurane|1
+(noun)|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+isogamete|1
+(noun)|gamete (generic term)
+isogamy|1
+(noun)|sexual reproduction (generic term)|amphimixis (generic term)
+isogon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+isogonal line|1
+(noun)|isogonic line|isogone|line (generic term)
+isogone|1
+(noun)|isogonic line|isogonal line|line (generic term)
+isogonic|1
+(adj)|angular (similar term)|angulate (similar term)
+isogonic line|1
+(noun)|isogonal line|isogone|line (generic term)
+isogram|1
+(noun)|isopleth|isarithm|line (generic term)
+isohel|1
+(noun)|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isolable|1
+(adj)|separate (similar term)
+isolate|4
+(verb)|insulate|discriminate (generic term)|separate (generic term)|single out (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|sequester|sequestrate|keep apart|set apart|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+isolated|6
+(adj)|stray|sporadic (similar term)
+(adj)|detached|separated|set-apart|separate (similar term)
+(adj)|disjunct|separate (similar term)
+(adj)|marooned|stranded|unaccompanied (similar term)
+(adj)|quarantined|segregated (similar term)|unintegrated (similar term)
+(adj)|apart|obscure|unconnected (similar term)
+isolating|1
+(adj)|analytic (similar term)|uninflected (similar term)
+isolation|5
+(noun)|separation (generic term)
+(noun)|closing off|separation (generic term)
+(noun)|alienation (generic term)|disaffection (generic term)|estrangement (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|non-engagement (generic term)|nonparticipation (generic term)|non-involvement (generic term)
+isolationism|1
+(noun)|foreign policy (generic term)
+isolationist|2
+(adj)|isolationistic|foreign policy (related term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+isolationistic|1
+(adj)|isolationist|foreign policy (related term)
+isolde|1
+(noun)|Iseult|Isolde|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+isole egadi|1
+(noun)|Egadi Islands|Aegadean Isles|Aegadean Islands|Isole Egadi|Aegates|island (generic term)
+isoleucine|1
+(noun)|essential amino acid (generic term)
+isomer|1
+(noun)|compound (generic term)|chemical compound (generic term)
+isomerase|1
+(noun)|enzyme (generic term)
+isomeric|1
+(adj)|state (related term)
+isomerisation|1
+(noun)|isomerization|conversion (generic term)|transition (generic term)|changeover (generic term)
+isomerise|2
+(verb)|isomerize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|isomerize|change (generic term)
+isomerism|1
+(noun)|state (generic term)
+isomerization|1
+(noun)|isomerisation|conversion (generic term)|transition (generic term)|changeover (generic term)
+isomerize|2
+(verb)|isomerise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|isomerise|change (generic term)
+isometric|5
+(adj)|mapping|map|correspondence (related term)
+(adj)|isotonic (antonym)
+(adj)|isometrical|equal (similar term)
+(adj)|cubic (similar term)|three-dimensional (similar term)
+(noun)|isometric line|line (generic term)
+isometric exercise|1
+(noun)|isometrics|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+isometric line|1
+(noun)|isometric|line (generic term)
+isometrical|1
+(adj)|isometric|equal (similar term)
+isometrics|1
+(noun)|isometric exercise|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+isometropia|1
+(noun)|eye condition (generic term)
+isometry|4
+(noun)|growth rate (generic term)|rate of growth (generic term)
+(noun)|mapping (generic term)|map (generic term)|correspondence (generic term)
+(noun)|elevation (generic term)
+(noun)|equality (generic term)
+isomorphic|1
+(adj)|isomorphous|similarity (related term)
+isomorphism|1
+(noun)|isomorphy|similarity (generic term)
+isomorphous|1
+(adj)|isomorphic|similarity (related term)
+isomorphy|1
+(noun)|isomorphism|similarity (generic term)
+isoniazid|1
+(noun)|INH|Nydrazid|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+isopleth|1
+(noun)|isogram|isarithm|line (generic term)
+isopod|1
+(noun)|malacostracan crustacean (generic term)
+isopoda|1
+(noun)|Isopoda|order Isopoda|animal order (generic term)
+isopropanol|1
+(noun)|isopropyl alcohol|alcohol (generic term)
+isopropyl alcohol|1
+(noun)|isopropanol|alcohol (generic term)
+isoproterenol|1
+(noun)|Isuprel|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+isoptera|1
+(noun)|Isoptera|order Isoptera|animal order (generic term)
+isopteran|1
+(adj)|animal order (related term)
+isoptin|1
+(noun)|verapamil|Calan|Isoptin|calcium blocker (generic term)|calcium-channel blocker (generic term)
+isopyrum|1
+(noun)|Isopyrum|genus Isopyrum|magnoliid dicot genus (generic term)
+isopyrum biternatum|1
+(noun)|false rue anemone|false rue|Isopyrum biternatum|herb (generic term)|herbaceous plant (generic term)
+isordil|1
+(noun)|isosorbide|Isordil|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+isoroku yamamoto|1
+(noun)|Yamamoto|Isoroku Yamamoto|admiral (generic term)|full admiral (generic term)
+isosceles triangle|1
+(noun)|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+isosmotic|1
+(adj)|isotonic|hypertonic (antonym)|hypotonic (antonym)
+isosmotic solution|1
+(noun)|isotonic solution|solution (generic term)
+isosorbide|1
+(noun)|Isordil|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+isospondyli|1
+(noun)|Isospondyli|order Isospondyli|animal order (generic term)
+isostasy|1
+(noun)|equilibrium (generic term)
+isotherm|1
+(noun)|isogram (generic term)|isopleth (generic term)|isarithm (generic term)
+isothermal|1
+(adj)|equal (similar term)
+isothermic|1
+(adj)|isogram|isopleth|isarithm (related term)
+isothiocyanate|1
+(noun)|chemical irritant (generic term)
+isotonic|4
+(adj)|isosmotic|hypertonic (antonym)|hypotonic (antonym)
+(adj)|interval|musical interval (related term)
+(adj)|isometric (antonym)
+(adj)|tense (similar term)
+isotonic exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+isotonic solution|1
+(noun)|isosmotic solution|solution (generic term)
+isotope|1
+(noun)|atom (generic term)
+isotopic|1
+(adj)|atom (related term)
+isotropic|1
+(adj)|isotropous|identical (similar term)|anisotropic (antonym)
+isotropous|1
+(adj)|isotropic|identical (similar term)|anisotropic (antonym)
+isotropy|1
+(noun)|symmetry|property (generic term)|anisotropy (antonym)
+israel|2
+(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country (generic term)|state (generic term)|land (generic term)
+(noun)|Israel|kingdom (generic term)
+israel baline|1
+(noun)|Berlin|Irving Berlin|Israel Baline|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+israel strassberg|1
+(noun)|Strasberg|Lee Strasberg|Israel Strassberg|film director (generic term)|director (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+israel zangwill|1
+(noun)|Zangwill|Israel Zangwill|writer (generic term)|author (generic term)
+israeli|2
+(adj)|Israeli|country|state|land (related term)
+(noun)|Israeli|Asian (generic term)|Asiatic (generic term)
+israeli defense force|1
+(noun)|Israeli Defense Force|IDF|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+israeli monetary unit|1
+(noun)|Israeli monetary unit|monetary unit (generic term)
+israelite|2
+(noun)|Israelite|Asian (generic term)|Asiatic (generic term)
+(noun)|Jew|Hebrew|Israelite|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+israelites|1
+(noun)|Hebrews|Israelites|ethnic group (generic term)|ethnos (generic term)|chosen people (generic term)
+issachar|1
+(noun)|Issachar|patriarch (generic term)
+issuance|1
+(noun)|issue|issuing|provision (generic term)|supply (generic term)|supplying (generic term)
+issue|16
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|number|periodical (generic term)
+(noun)|issuing|issuance|provision (generic term)|supply (generic term)|supplying (generic term)
+(noun)|topic|subject|matter|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|military issue|government issue|store (generic term)|stock (generic term)|fund (generic term)
+(noun)|offspring|progeny|relative (generic term)|relation (generic term)
+(noun)|consequence|effect|outcome|result|event|upshot|phenomenon (generic term)
+(noun)|return|take|takings|proceeds|yield|payoff|income (generic term)
+(noun)|emergence|egress|beginning (generic term)
+(noun)|exit|outlet|way out|opening (generic term)
+(noun)|publication|printing (generic term)
+(verb)|publish|bring out|put out|release|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|supply|distribute (generic term)|recall (antonym)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|emerge|come out|come forth|go forth|egress
+(verb)|write out|make out|cut|write (generic term)
+issue forth|1
+(verb)|come
+issuer|1
+(noun)|institution (generic term)|establishment (generic term)
+issuing|1
+(noun)|issue|issuance|provision (generic term)|supply (generic term)|supplying (generic term)
+issus|1
+(noun)|Issus|battle of Issus|pitched battle (generic term)
+istanbul|1
+(noun)|Istanbul|Stambul|Stamboul|Constantinople|city (generic term)|metropolis (generic term)|urban center (generic term)
+isthmian|1
+(adj)|land|dry land|earth|ground|solid ground|terra firma (related term)
+isthmian games|1
+(noun)|Isthmian Games|agon (generic term)
+isthmus|2
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|band|tissue (generic term)
+isthmus of corinth|1
+(noun)|Isthmus of Corinth|isthmus (generic term)
+isthmus of darien|1
+(noun)|Isthmus of Panama|Isthmus of Darien|isthmus (generic term)
+isthmus of kra|1
+(noun)|Isthmus of Kra|isthmus (generic term)
+isthmus of panama|1
+(noun)|Isthmus of Panama|Isthmus of Darien|isthmus (generic term)
+isthmus of suez|1
+(noun)|Isthmus of Suez|isthmus (generic term)
+isthmus of tehuantepec|1
+(noun)|Isthmus of Tehuantepec|isthmus (generic term)
+istiophoridae|1
+(noun)|Istiophoridae|family Istiophoridae|fish family (generic term)
+istiophorus|1
+(noun)|Istiophorus|genus Istiophorus|fish genus (generic term)
+istiophorus albicans|1
+(noun)|Atlantic sailfish|Istiophorus albicans|sailfish (generic term)
+isuprel|1
+(noun)|isoproterenol|Isuprel|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+isuridae|1
+(noun)|Isuridae|family Isuridae|fish family (generic term)
+isurus|1
+(noun)|Isurus|genus Isurus|fish genus (generic term)
+isurus glaucus|1
+(noun)|bonito shark|blue pointed|Isurus glaucus|mako (generic term)|mako shark (generic term)
+isurus oxyrhincus|1
+(noun)|shortfin mako|Isurus oxyrhincus|mako (generic term)|mako shark (generic term)
+isurus paucus|1
+(noun)|longfin mako|Isurus paucus|mako (generic term)|mako shark (generic term)
+it|1
+(noun)|information technology|IT|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+itaconic acid|1
+(noun)|acid (generic term)
+italia|1
+(noun)|Italy|Italian Republic|Italia|European country (generic term)|European nation (generic term)
+italian|3
+(adj)|Italian|European country|European nation (related term)
+(noun)|Italian|European (generic term)
+(noun)|Italian|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+italian-speaking|1
+(adj)|Italian-speaking|communicative (similar term)|communicatory (similar term)
+italian bee|1
+(noun)|Italian bee|honeybee (generic term)|Apis mellifera (generic term)
+italian bread|1
+(noun)|Italian bread|white bread (generic term)|light bread (generic term)
+italian capital|1
+(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital (generic term)
+italian clover|1
+(noun)|crimson clover|Italian clover|Trifolium incarnatum|clover (generic term)|trefoil (generic term)
+italian cypress|1
+(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress (generic term)|cypress tree (generic term)
+italian dressing|1
+(noun)|Italian dressing|dressing (generic term)|salad dressing (generic term)
+italian greyhound|1
+(noun)|Italian greyhound|greyhound (generic term)
+italian honeysuckle|1
+(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle (generic term)
+italian lira|1
+(noun)|lira|Italian lira|Italian monetary unit (generic term)
+italian millet|1
+(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail (generic term)|foxtail grass (generic term)
+italian monetary unit|1
+(noun)|Italian monetary unit|monetary unit (generic term)
+italian parsley|1
+(noun)|Italian parsley|flat-leaf parsley|Petroselinum crispum neapolitanum|parsley (generic term)|Petroselinum crispum (generic term)
+italian peninsula|1
+(noun)|Italian Peninsula|peninsula (generic term)
+italian region|1
+(noun)|Italian region|state (generic term)|province (generic term)
+italian renaissance|1
+(noun)|Italian Renaissance|historic period (generic term)|age (generic term)
+italian republic|1
+(noun)|Italy|Italian Republic|Italia|European country (generic term)|European nation (generic term)
+italian rice|1
+(noun)|risotto|Italian rice|dish (generic term)
+italian rye|1
+(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass (generic term)|ryegrass (generic term)
+italian ryegrass|1
+(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass (generic term)|ryegrass (generic term)
+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 (generic term)
+italian sonnet|1
+(noun)|Petrarchan sonnet|Italian sonnet|sonnet (generic term)
+italian vegetable marrow|1
+(noun)|cocozelle|Italian vegetable marrow|marrow (generic term)|marrow squash (generic term)|vegetable marrow (generic term)
+italian vermouth|1
+(noun)|sweet vermouth|Italian vermouth|vermouth (generic term)
+italian woodbine|1
+(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle (generic term)
+italic|5
+(adj)|font|fount|typeface|face (related term)
+(adj)|Italic|Indo-European|Indo-European language|Indo-Hittite (related term)
+(noun)|longhand (generic term)|running hand (generic term)|cursive (generic term)|cursive script (generic term)
+(noun)|Italic|Italic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+(noun)|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+italic language|1
+(noun)|Italic|Italic language|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+italicise|1
+(verb)|italicize|print (generic term)|impress (generic term)
+italicize|1
+(verb)|italicise|print (generic term)|impress (generic term)
+italo calvino|1
+(noun)|Calvino|Italo Calvino|writer (generic term)|author (generic term)
+italy|1
+(noun)|Italy|Italian Republic|Italia|European country (generic term)|European nation (generic term)
+itch|6
+(noun)|scabies|infection (generic term)
+(noun)|urge|desire (generic term)
+(noun)|itchiness|itching|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+(verb)|rub|scratch|irritate (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|spoil|desire (generic term)|want (generic term)
+itch mite|1
+(noun)|sarcoptid|mite (generic term)
+itchiness|1
+(noun)|itch|itching|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+itching|1
+(noun)|itch|itchiness|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+itchy|2
+(adj)|antsy|fidgety|fretful|restless|unquiet (similar term)
+(adj)|painful (similar term)
+itchy feet|1
+(noun)|wanderlust|urge (generic term)|impulse (generic term)
+item|5
+(noun)|point|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|whole (generic term)|unit (generic term)
+(noun)|detail|particular|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|detail|point|fact (generic term)
+(noun)|token|symbol (generic term)
+item-by-item|1
+(adj)|individual|case-by-case|independent (similar term)
+itemisation|1
+(noun)|listing|itemization|organization (generic term)|organisation (generic term)
+itemise|2
+(verb)|itemize|number (generic term)|list (generic term)
+(verb)|enumerate|recite|itemize|name (generic term)|identify (generic term)
+itemization|1
+(noun)|listing|itemisation|organization (generic term)|organisation (generic term)
+itemize|2
+(verb)|enumerate|recite|itemise|name (generic term)|identify (generic term)
+(verb)|itemise|number (generic term)|list (generic term)
+iterate|2
+(verb)|repeat|reiterate|ingeminate|restate|retell|tell (generic term)
+(verb)|recur (generic term)|repeat (generic term)
+iteration|3
+(noun)|loop|process (generic term)|physical process (generic term)
+(noun)|looping|process (generic term)|physical process (generic term)
+(noun)|repetition (generic term)|repeating (generic term)
+iterative|2
+(adj)|reiterative|repetitive (similar term)|repetitious (similar term)
+(noun)|iterative aspect|aspect (generic term)
+iterative aspect|1
+(noun)|iterative|aspect (generic term)
+ithaca|2
+(noun)|Ithaca|town (generic term)
+(noun)|Ithaca|Ithaki|island (generic term)
+ithaki|1
+(noun)|Ithaca|Ithaki|island (generic term)
+ithunn|1
+(noun)|Idun|Ithunn|Norse deity (generic term)
+itinerant|3
+(adj)|unsettled (similar term)
+(adj)|road|touring|traveling|moving (similar term)
+(noun)|gypsy|gipsy|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+itinerary|3
+(noun)|path|route|line (generic term)
+(noun)|travel guidebook|guidebook (generic term)|guide (generic term)
+(noun)|travel plan|plan of action (generic term)
+itinerate|1
+(verb)|travel (generic term)|move around (generic term)
+itineration|1
+(noun)|tour (generic term)|circuit (generic term)
+itraconazole|1
+(noun)|Sporanox|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+itsy-bitsy|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|small (similar term)|little (similar term)
+itty-bitty|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itsy-bitsy|small (similar term)|little (similar term)
+iud|1
+(noun)|intrauterine device|IUD|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+iv|3
+(adj)|four|4|cardinal (similar term)
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+(noun)|intravenous feeding|IV|feeding (generic term)|alimentation (generic term)
+iva|1
+(noun)|marsh elder|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+iva xanthifolia|1
+(noun)|burweed marsh elder|false ragweed|Iva xanthifolia|marsh elder (generic term)|iva (generic term)
+ivan iii|1
+(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke (generic term)
+ivan iii vasilievich|1
+(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke (generic term)
+ivan iv|1
+(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar (generic term)|tsar (generic term)|tzar (generic term)
+ivan iv vasilievich|1
+(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar (generic term)|tsar (generic term)|tzar (generic term)
+ivan lendl|1
+(noun)|Lendl|Ivan Lendl|tennis player (generic term)
+ivan pavlov|1
+(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist (generic term)
+ivan petrovich pavlov|1
+(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist (generic term)
+ivan sergeevich turgenev|1
+(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer (generic term)|author (generic term)
+ivan the great|1
+(noun)|Ivan III|Ivan III Vasilievich|Ivan the Great|grand duke (generic term)
+ivan the terrible|1
+(noun)|Ivan IV|Ivan Iv Vasilievich|Ivan the Terrible|czar (generic term)|tsar (generic term)|tzar (generic term)
+ivan turgenev|1
+(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer (generic term)|author (generic term)
+ivanov|1
+(noun)|Ivanov|Lev Ivanov|choreographer (generic term)
+ives|2
+(noun)|Ives|Charles Edward Ives|composer (generic term)
+(noun)|Ives|James Ives|James Merritt Ives|lithographer (generic term)
+ivied|1
+(adj)|ivy-covered|leafy (similar term)
+ivor armstrong richards|1
+(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic (generic term)|semanticist (generic term)|semiotician (generic term)
+ivory|2
+(noun)|tusk|dentine (generic term)|dentin (generic term)
+(noun)|bone|pearl|off-white|white (generic term)|whiteness (generic term)
+ivory-billed woodpecker|1
+(noun)|ivorybill|Campephilus principalis|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+ivory-nut palm|1
+(noun)|ivory palm|ivory plant|Phytelephas macrocarpa|feather palm (generic term)
+ivory black|1
+(noun)|pigment (generic term)
+ivory coast|1
+(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country (generic term)|African nation (generic term)
+ivory coast franc|1
+(noun)|Ivory Coast franc|Cote d'Ivoire franc|franc (generic term)
+ivory gull|1
+(noun)|Pagophila eburnea|gull (generic term)|seagull (generic term)|sea gull (generic term)
+ivory nut|1
+(noun)|vegetable ivory|apple nut|seed (generic term)
+ivory palm|1
+(noun)|ivory-nut palm|ivory plant|Phytelephas macrocarpa|feather palm (generic term)
+ivory plant|1
+(noun)|ivory palm|ivory-nut palm|Phytelephas macrocarpa|feather palm (generic term)
+ivory tower|1
+(noun)|cognitive state (generic term)|state of mind (generic term)
+ivory tree|1
+(noun)|conessi|kurchi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+ivorybill|1
+(noun)|ivory-billed woodpecker|Campephilus principalis|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+ivp|2
+(noun)|intravenous pyelogram|IVP|pyelogram (generic term)
+(noun)|intravenous pyelography|IVP|pyelography (generic term)
+ivry|1
+(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle (generic term)
+ivry la bataille|1
+(noun)|Ivry|battle of Ivry|Ivry la Bataille|pitched battle (generic term)
+ivy|1
+(noun)|common ivy|English ivy|Hedera helix|vine (generic term)
+ivy-covered|1
+(adj)|ivied|leafy (similar term)
+ivy-leaved geranium|1
+(noun)|ivy geranium|hanging geranium|Pelargonium peltatum|geranium (generic term)
+ivy arum|1
+(noun)|golden pothos|pothos|Epipremnum aureum|Scindapsus aureus|liana (generic term)
+ivy family|1
+(noun)|Araliaceae|family Araliaceae|rosid dicot family (generic term)
+ivy geranium|1
+(noun)|ivy-leaved geranium|hanging geranium|Pelargonium peltatum|geranium (generic term)
+ivy league|1
+(noun)|Ivy League|league (generic term)|conference (generic term)
+ivy leaguer|1
+(noun)|Ivy Leaguer|student (generic term)|pupil (generic term)|educatee (generic term)|alumnus (generic term)|alumna (generic term)|alum (generic term)|graduate (generic term)|grad (generic term)
+iw|1
+(noun)|information warfare|IW|war (generic term)|warfare (generic term)
+iwo|1
+(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault (generic term)
+iwo jima|2
+(noun)|Iwo Jima|island (generic term)
+(noun)|Iwo|Iwo Jima|invasion of Iwo|amphibious assault (generic term)
+iww|1
+(noun)|Industrial Workers of the World|IWW|I.W.W.|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)|labor movement (generic term)|trade union movement (generic term)|labor (generic term)
+ix|2
+(adj)|nine|9|cardinal (similar term)
+(noun)|nine|9|IX|niner|Nina from Carolina|ennead|digit (generic term)|figure (generic term)
+ixc|1
+(adj)|eighty-nine|89|cardinal (similar term)
+ixia|1
+(noun)|Ixia|genus Ixia|liliid monocot genus (generic term)
+ixl|1
+(adj)|thirty-nine|39|cardinal (similar term)
+ixobrychus|1
+(noun)|Ixobrychus|genus Ixobrychus|bird genus (generic term)
+ixobrychus exilis|1
+(noun)|least bittern|Ixobrychus exilis|bittern (generic term)
+ixodes|1
+(noun)|Ixodes|genus Ixodes|arthropod genus (generic term)
+ixodes dammini|1
+(noun)|Ixodes dammini|deer tick|hard tick (generic term)|ixodid (generic term)
+ixodes dentatus|1
+(noun)|Ixodes dentatus|hard tick (generic term)|ixodid (generic term)
+ixodes neotomae|1
+(noun)|Ixodes neotomae|hard tick (generic term)|ixodid (generic term)
+ixodes pacificus|1
+(noun)|Ixodes pacificus|western black-legged tick|hard tick (generic term)|ixodid (generic term)
+ixodes persulcatus|1
+(noun)|Ixodes persulcatus|hard tick (generic term)|ixodid (generic term)
+ixodes ricinus|1
+(noun)|sheep-tick|sheep tick|Ixodes ricinus|hard tick (generic term)|ixodid (generic term)
+ixodes scapularis|1
+(noun)|Ixodes scapularis|black-legged tick|hard tick (generic term)|ixodid (generic term)
+ixodes spinipalpis|1
+(noun)|Ixodes spinipalpis|hard tick (generic term)|ixodid (generic term)
+ixodid|1
+(noun)|hard tick|tick (generic term)
+ixodidae|1
+(noun)|Ixodidae|family Ixodidae|arthropod family (generic term)
+iyar|1
+(noun)|Iyar|Iyyar|Jewish calendar month (generic term)
+iyyar|1
+(noun)|Iyar|Iyyar|Jewish calendar month (generic term)
+iz al-din al-qassam battalions|1
+(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+izaak walton|1
+(noun)|Walton|Izaak Walton|writer (generic term)|author (generic term)
+izanagi|1
+(noun)|Izanagi|Japanese deity (generic term)
+izanami|1
+(noun)|Izanami|Japanese deity (generic term)
+izar|1
+(noun)|overgarment (generic term)|outer garment (generic term)
+izmir|1
+(noun)|Izmir|Smyrna|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+izzard|1
+(noun)|Z|letter z|zee|zed|ezed|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+j|2
+(noun)|joule|J|watt second|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+(noun)|J|letter j|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+j. b. rhine|1
+(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist (generic term)
+j. b. s. haldane|1
+(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist (generic term)
+j. c. maxwell|1
+(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist (generic term)
+j. craig ventner|1
+(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist (generic term)
+j. d. salinger|1
+(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer (generic term)|author (generic term)
+j. e. johnston|1
+(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general (generic term)|full general (generic term)
+j. edgar hoover|1
+(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer (generic term)|attorney (generic term)
+j. j. hill|1
+(noun)|Hill|J. J. Hill|James Jerome Hill|businessman (generic term)|man of affairs (generic term)
+j. m. barrie|1
+(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist (generic term)|playwright (generic term)
+j. m. synge|1
+(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist (generic term)|playwright (generic term)|poet (generic term)
+j. p. morgan|1
+(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier (generic term)|moneyman (generic term)
+j. r. firth|1
+(noun)|Firth|J. R. Firth|John Rupert Firth|linguist (generic term)|linguistic scientist (generic term)
+j.r.r. tolkien|1
+(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist (generic term)|philologue (generic term)|writer (generic term)|author (generic term)
+j particle|1
+(noun)|J particle|psi particle|meson (generic term)|mesotron (generic term)
+jab|6
+(noun)|jabbing|poke|poking|thrust|thrusting|gesture (generic term)
+(noun)|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+(noun)|dig|touch (generic term)|touching (generic term)
+(verb)|prod|stab|poke|dig|thrust (generic term)
+(verb)|strike (generic term)
+(verb)|stab|thrust (generic term)
+jabalpur|1
+(noun)|Jabalpur|Jubbulpore|city (generic term)|metropolis (generic term)|urban center (generic term)
+jabat al-tahrir al-filistiniyyah|1
+(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jabber|2
+(noun)|jabbering|gabble|gibberish (generic term)|gibber (generic term)
+(verb)|rant|mouth off|spout|rabbit on|rave|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+jabberer|1
+(noun)|driveller|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+jabbering|2
+(adj)|blathering|blithering|babbling|voluble (similar term)
+(noun)|jabber|gabble|gibberish (generic term)|gibber (generic term)
+jabberwocky|1
+(noun)|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+jabbing|1
+(noun)|jab|poke|poking|thrust|thrusting|gesture (generic term)
+jabiru|3
+(noun)|policeman bird|black-necked stork|Xenorhyncus asiaticus|stork (generic term)
+(noun)|saddlebill|Ephippiorhynchus senegalensis|stork (generic term)
+(noun)|Jabiru mycteria|stork (generic term)
+jabiru mycteria|1
+(noun)|jabiru|Jabiru mycteria|stork (generic term)
+jaboncillo|1
+(noun)|China tree|false dogwood|chinaberry|Sapindus saponaria|soapberry (generic term)|soapberry tree (generic term)
+jabot|1
+(noun)|frill (generic term)|flounce (generic term)|ruffle (generic term)|furbelow (generic term)
+jaboticaba|2
+(noun)|jaboticaba tree|Myrciaria cauliflora|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+jaboticaba tree|1
+(noun)|jaboticaba|Myrciaria cauliflora|fruit tree (generic term)
+jacamar|1
+(noun)|piciform bird (generic term)
+jacaranda|1
+(noun)|Brazilian rosewood|caviuna wood|Dalbergia nigra|rosewood (generic term)|rosewood tree (generic term)
+jacinth|1
+(noun)|hyacinth|zircon (generic term)|zirconium silicate (generic term)
+jack|14
+(noun)|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+(noun)|laborer|manual laborer|labourer|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|jackfruit|jak|edible fruit (generic term)
+(noun)|ball (generic term)
+(noun)|electrical device (generic term)
+(noun)|jackstones|game equipment (generic term)
+(noun)|flag (generic term)
+(noun)|knave|face card (generic term)|picture card (generic term)|court card (generic term)
+(noun)|tool (generic term)
+(noun)|carangid fish (generic term)|carangid (generic term)
+(noun)|jackass|ass (generic term)
+(verb)|jack up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|jacklight|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+jack-a-lantern|1
+(noun)|jack-o-lantern fungus|jack-o-lantern|Omphalotus illudens|agaric (generic term)
+jack-by-the-hedge|1
+(noun)|garlic mustard|hedge garlic|sauce-alone|Alliaria officinalis|crucifer (generic term)|cruciferous plant (generic term)
+jack-in-the-box|1
+(noun)|plaything (generic term)|toy (generic term)
+jack-in-the-pulpit|2
+(noun)|Indian turnip|wake-robin|Arisaema triphyllum|Arisaema atrorubens|arum (generic term)|aroid (generic term)
+(noun)|cuckoopint|lords-and-ladies|Arum maculatum|arum (generic term)|aroid (generic term)
+jack-o'-lantern|2
+(noun)|friar's lantern|ignis fatuus|will-o'-the-wisp|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|lantern (generic term)
+jack-o-lantern|1
+(noun)|jack-o-lantern fungus|jack-a-lantern|Omphalotus illudens|agaric (generic term)
+jack-o-lantern fungus|1
+(noun)|jack-o-lantern|jack-a-lantern|Omphalotus illudens|agaric (generic term)
+jack-tar|1
+(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+jack bean|1
+(noun)|wonder bean|giant stock bean|Canavalia ensiformis|vine (generic term)
+jack benny|1
+(noun)|Benny|Jack Benny|Benjamin Kubelsky|comedian (generic term)|comic (generic term)
+jack crevalle|1
+(noun)|crevalle jack|Caranx hippos|jack (generic term)
+jack dempsey|1
+(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|Manassa Mauler|prizefighter (generic term)|gladiator (generic term)
+jack frost|1
+(noun)|Jack Frost|imaginary being (generic term)|imaginary creature (generic term)
+jack kennedy|1
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+jack kerouac|1
+(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer (generic term)|author (generic term)
+jack ladder|1
+(noun)|Jacob's ladder|pilot ladder|ladder (generic term)
+jack lemmon|1
+(noun)|Lemmon|Jack Lemmon|John Uhler|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+jack london|1
+(noun)|London|Jack London|John Griffith Chaney|writer (generic term)|author (generic term)
+jack mackerel|1
+(noun)|horse mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad (generic term)
+jack nicklaus|1
+(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer (generic term)|golf player (generic term)|linksman (generic term)
+jack oak|2
+(noun)|blackjack oak|blackjack|Quercus marilandica|scrub oak (generic term)
+(noun)|northern pin oak|Quercus ellipsoidalis|oak (generic term)|oak tree (generic term)
+jack of all trades|2
+(noun)|Jack of all trades|adult (generic term)|grownup (generic term)
+(noun)|handyman|odd-job man|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+jack off|1
+(verb)|masturbate|wank|fuck off|she-bop|jerk off|stimulate (generic term)|excite (generic term)|stir (generic term)
+jack pine|1
+(noun)|Pinus banksiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+jack plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+jack roosevelt robinson|1
+(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer (generic term)|baseball player (generic term)
+jack salmon|1
+(noun)|walleye|walleyed pike|dory|Stizostedion vitreum|pike-perch (generic term)|pike perch (generic term)
+jack the ripper|1
+(noun)|Jack the Ripper|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+jack up|1
+(verb)|jack|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+jack william nicklaus|1
+(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer (generic term)|golf player (generic term)|linksman (generic term)
+jackal|1
+(noun)|Canis aureus|canine (generic term)|canid (generic term)
+jackanapes|1
+(noun)|whippersnapper|lightweight|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+jackass|2
+(noun)|fathead|goof|goofball|bozo|goose|cuckoo|twat|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|jack|ass (generic term)
+jackass bat|1
+(noun)|spotted bat|Euderma maculata|vespertilian bat (generic term)|vespertilionid (generic term)
+jackass penguin|1
+(noun)|Spheniscus demersus|penguin (generic term)
+jackboot|1
+(noun)|Hessian boot|hessian|Wellington|Wellington boot|boot (generic term)
+jackdaw|1
+(noun)|daw|Corvus monedula|corvine bird (generic term)
+jacket|7
+(noun)|coat (generic term)
+(noun)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+(noun)|jacket crown|crown (generic term)
+(noun)|peel (generic term)|skin (generic term)
+(noun)|shell (generic term)|case (generic term)|casing (generic term)
+(verb)|cover (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+jacket crown|1
+(noun)|jacket|crown (generic term)
+jacket potato|1
+(noun)|baked potato (generic term)
+jackfruit|2
+(noun)|jackfruit tree|Artocarpus heterophyllus|fruit tree (generic term)
+(noun)|jak|jack|edible fruit (generic term)
+jackfruit tree|1
+(noun)|jackfruit|Artocarpus heterophyllus|fruit tree (generic term)
+jackhammer|1
+(noun)|air hammer|pneumatic hammer|hammer (generic term)|power hammer (generic term)
+jackie robinson|1
+(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer (generic term)|baseball player (generic term)
+jacking off|1
+(noun)|jerking off|hand job|wank|masturbation (generic term)|onanism (generic term)
+jackknife|3
+(noun)|clasp knife|pocketknife (generic term)|pocket knife (generic term)
+(noun)|dive (generic term)|diving (generic term)
+(verb)|dive (generic term)
+jackknife-fish|1
+(noun)|Equetus lanceolatus|drum (generic term)|drumfish (generic term)
+jackknife clam|1
+(noun)|razor clam|knife-handle|clam (generic term)
+jacklight|2
+(noun)|light (generic term)|light source (generic term)
+(verb)|jack|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+jackpot|2
+(noun)|pot|kitty|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(noun)|prize (generic term)|award (generic term)
+jackrabbit|2
+(noun)|hare (generic term)
+(verb)|startle (generic term)|jump (generic term)|start (generic term)
+jacks|1
+(noun)|jackstones|knucklebones|child's game (generic term)
+jackscrew|1
+(noun)|screw jack|jack (generic term)
+jacksmelt|1
+(noun)|Atherinopsis californiensis|silversides (generic term)|silverside (generic term)
+jacksnipe|2
+(noun)|half snipe|Limnocryptes minima|snipe (generic term)
+(noun)|pectoral sandpiper|Calidris melanotos|sandpiper (generic term)
+jackson|9
+(noun)|Jackson|Glenda Jackson|actress (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Jackson|Mahalia Jackson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Jackson|Helen Hunt Jackson|Helen Maria Fiske Hunt Jackson|writer (generic term)|author (generic term)
+(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general (generic term)|full general (generic term)
+(noun)|Jackson|Andrew Jackson|Old Hickory|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Jackson|capital of Mississippi|state capital (generic term)
+(noun)|Jackson|town (generic term)
+jackson pollock|1
+(noun)|Pollock|Jackson Pollock|painter (generic term)
+jacksonia|1
+(noun)|Jacksonia|genus Jacksonia|rosid dicot genus (generic term)
+jacksonian|2
+(adj)|Jacksonian|general|full general|President of the United States|United States President|President|Chief Executive (related term)
+(noun)|Jacksonian|follower (generic term)
+jacksonian epilepsy|1
+(noun)|Jacksonian epilepsy|cortical epilepsy (generic term)|focal epilepsy (generic term)
+jacksonville|1
+(noun)|Jacksonville|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+jackstones|2
+(noun)|jack|game equipment (generic term)
+(noun)|jacks|knucklebones|child's game (generic term)
+jackstraw|1
+(noun)|spillikin|strip (generic term)
+jackstraws|1
+(noun)|spillikins|child's game (generic term)
+jacob|2
+(noun)|Jacob|Francois Jacob|biochemist (generic term)
+(noun)|Jacob|patriarch (generic term)
+jacob's ladder|2
+(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+(noun)|Jacob's ladder|jack ladder|pilot ladder|ladder (generic term)
+jacob's rod|1
+(noun)|Jacob's rod|asphodel (generic term)
+jacob's staff|1
+(noun)|ocotillo|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood (generic term)
+jacob epstein|1
+(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+jacob harmensen|1
+(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jacobean|2
+(adj)|Jacobean|King of England|King of Great Britain (related term)
+(noun)|Jacobean|Englishman (generic term)
+jacobean lily|1
+(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis (generic term)
+jacobi|1
+(noun)|Jacobi|Karl Gustav Jacob Jacobi|mathematician (generic term)
+jacobin|1
+(noun)|Jacobin|terrorist (generic term)
+jacobinic|1
+(adj)|Jacobinic|Jacobinical|terrorist (related term)
+jacobinical|1
+(adj)|Jacobinic|Jacobinical|terrorist (related term)
+jacobinism|1
+(noun)|Jacobinism|radicalism (generic term)
+jacobite|1
+(noun)|Jacobite|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+jacobs|3
+(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer (generic term)|author (generic term)
+(noun)|Jacobs|Jane Jacobs|writer (generic term)|author (generic term)
+(noun)|Jacobs|Aletta Jacobs|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+jacobus arminius|1
+(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jaconet|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+jacopo robusti|1
+(noun)|Tintoretto|Jacopo Robusti|old master (generic term)
+jacquard|3
+(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|Jacquard loom|Jacquard|loom (generic term)
+jacquard loom|1
+(noun)|Jacquard loom|Jacquard|loom (generic term)
+jacqueline cochran|1
+(noun)|Cochran|Jacqueline Cochran|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+jacquemier's sign|1
+(noun)|Jacquemier's sign|symptom (generic term)
+jacques alexandre cesar charles|1
+(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist (generic term)
+jacques anatole francois thibault|1
+(noun)|France|Anatole France|Jacques Anatole Francois Thibault|writer (generic term)|author (generic term)
+jacques bernoulli|1
+(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician (generic term)
+jacques cartier|1
+(noun)|Cartier|Jacques Cartier|navigator (generic term)
+jacques charles|1
+(noun)|Charles|Jacques Charles|Jacques Alexandre Cesar Charles|physicist (generic term)
+jacques costeau|1
+(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer (generic term)|adventurer (generic term)
+jacques derrida|1
+(noun)|Derrida|Jacques Derrida|philosopher (generic term)|literary critic (generic term)
+jacques etienne montgolfier|1
+(noun)|Montgolfier|Jacques Etienne Montgolfier|balloonist (generic term)
+jacques francois antoine ibert|1
+(noun)|Ibert|Jacques Francois Antoine Ibert|composer (generic term)
+jacques francois fromental elie halevy|1
+(noun)|Halevy|Fromental Halevy|Jacques Francois Fromental Elie Halevy|composer (generic term)
+jacques germain soufflot|1
+(noun)|Soufflot|Jacques Germain Soufflot|architect (generic term)|designer (generic term)
+jacques lipchitz|1
+(noun)|Lipchitz|Jacques Lipchitz|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+jacques loeb|1
+(noun)|Loeb|Jacques Loeb|physiologist (generic term)
+jacques louis david|1
+(noun)|David|Jacques Louis David|painter (generic term)
+jacques lucien monod|1
+(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist (generic term)
+jacques marquette|1
+(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary (generic term)|missioner (generic term)
+jacques monod|1
+(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist (generic term)
+jacques offenbach|1
+(noun)|Offenbach|Jacques Offenbach|composer (generic term)
+jacques tati|1
+(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+jacques tatischeff|1
+(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+jacques yves costeau|1
+(noun)|Cousteau|Jacques Costeau|Jacques Yves Costeau|explorer (generic term)|adventurer (generic term)
+jacquinia|1
+(noun)|Jacquinia|genus Jacquinia|dicot genus (generic term)|magnoliopsid genus (generic term)
+jacquinia armillaris|1
+(noun)|bracelet wood|Jacquinia armillaris|shrub (generic term)|bush (generic term)
+jacquinia keyensis|1
+(noun)|barbasco|joewood|Jacquinia keyensis|shrub (generic term)|bush (generic term)
+jactation|1
+(noun)|jactitation|restlessness (generic term)|uneasiness (generic term)|queasiness (generic term)
+jactitate|1
+(verb)|convulse|thresh|thresh about|thrash|thrash about|slash|toss|shake (generic term)|agitate (generic term)
+jactitation|3
+(noun)|boast|boasting|self-praise|speech act (generic term)
+(noun)|lie (generic term)|prevarication (generic term)
+(noun)|jactation|restlessness (generic term)|uneasiness (generic term)|queasiness (generic term)
+jaculus|1
+(noun)|Jaculus|genus Jaculus|mammal genus (generic term)
+jaculus jaculus|1
+(noun)|Jaculus jaculus|jerboa (generic term)
+jacuzzi|1
+(noun)|Jacuzzi|bathtub (generic term)|bathing tub (generic term)|bath (generic term)|tub (generic term)
+jade|7
+(adj)|jade-green|chromatic (similar term)
+(noun)|jadestone|opaque gem (generic term)
+(noun)|adulteress|fornicatress|hussy|loose woman|slut|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+(noun)|jade green|green (generic term)|greenness (generic term)|viridity (generic term)
+(noun)|hack|nag|plug|horse (generic term)|Equus caballus (generic term)
+(verb)|tire|pall|weary|fatigue|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+(verb)|tire|wear upon|tire out|wear|weary|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+jade-green|1
+(adj)|jade|chromatic (similar term)
+jade green|1
+(noun)|jade|green (generic term)|greenness (generic term)|viridity (generic term)
+jade vine|1
+(noun)|emerald creeper|Strongylodon macrobotrys|liana (generic term)
+jaded|2
+(adj)|wearied|tired (similar term)
+(adj)|satiate (similar term)|satiated (similar term)
+jadeite|1
+(noun)|mineral (generic term)
+jadestone|1
+(noun)|jade|opaque gem (generic term)
+jaeger|1
+(noun)|coastal diving bird (generic term)
+jafar|1
+(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist (generic term)
+jafar umar thalib|1
+(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist (generic term)
+jaffa|1
+(noun)|Jaffa|Joppa|Yafo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jaffa orange|1
+(noun)|Jaffa orange|sweet orange (generic term)
+jaffar|1
+(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist (generic term)
+jaffar umar thalib|1
+(noun)|Jaffar|Jafar|Jaffar Umar Thalib|Jafar Umar Thalib|terrorist (generic term)
+jafnea semitosta|1
+(noun)|Jafnea semitosta|discomycete (generic term)|cup fungus (generic term)
+jag|5
+(noun)|projection (generic term)
+(noun)|slit (generic term)
+(noun)|dag|flap (generic term)
+(noun)|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+(verb)|cut (generic term)
+jagannath|1
+(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar (generic term)
+jagannatha|1
+(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar (generic term)
+jagatai|1
+(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+jagganath|1
+(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar (generic term)
+jaggary|1
+(noun)|jaggery|jagghery|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+jagged|2
+(adj)|jaggy|scraggy|uneven (similar term)
+(adj)|erose|jaggy|notched|toothed|rough (similar term)
+jaggedly|1
+(adv)|raggedly
+jaggedness|1
+(noun)|unevenness (generic term)|variability (generic term)
+jagger|1
+(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star (generic term)
+jaggery|1
+(noun)|jagghery|jaggary|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+jaggery palm|1
+(noun)|wine palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm (generic term)
+jagghery|1
+(noun)|jaggery|jaggary|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+jaggy|2
+(adj)|erose|jagged|notched|toothed|rough (similar term)
+(adj)|jagged|scraggy|uneven (similar term)
+jaghatai|1
+(noun)|Chagatai|Jagatai|Jaghatai|Eastern Turki|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+jagua|1
+(noun)|genipap fruit|marmalade box|Genipa Americana|genipa (generic term)
+jaguar|1
+(noun)|panther|Panthera onca|Felis onca|big cat (generic term)|cat (generic term)
+jaguarondi|1
+(noun)|jaguarundi|jaguarundi cat|eyra|Felis yagouaroundi|wildcat (generic term)
+jaguarundi|1
+(noun)|jaguarundi cat|jaguarondi|eyra|Felis yagouaroundi|wildcat (generic term)
+jaguarundi cat|1
+(noun)|jaguarundi|jaguarondi|eyra|Felis yagouaroundi|wildcat (generic term)
+jahvey|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+jahweh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+jai alai|1
+(noun)|pelota|court game (generic term)
+jail|2
+(noun)|jailhouse|gaol|clink|slammer|poky|pokey|correctional institution (generic term)
+(verb)|imprison|incarcerate|lag|immure|put behind bars|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+jail bird|1
+(noun)|convict|con|inmate|jailbird|gaolbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+jail cell|1
+(noun)|cell|prison cell|room (generic term)
+jail delivery|1
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+jailbird|1
+(noun)|convict|con|inmate|jail bird|gaolbird|yard bird|yardbird|prisoner (generic term)|captive (generic term)
+jailbreak|1
+(noun)|break|breakout|gaolbreak|prisonbreak|prison-breaking|escape (generic term)|flight (generic term)
+jailed|1
+(adj)|captive|confined|imprisoned|unfree (similar term)
+jailer|1
+(noun)|prison guard|jailor|gaoler|screw|turnkey|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+jailhouse|1
+(noun)|jail|gaol|clink|slammer|poky|pokey|correctional institution (generic term)
+jailor|1
+(noun)|prison guard|jailer|gaoler|screw|turnkey|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+jain|1
+(adj)|Jain|Jainist|religion|faith|religious belief (related term)
+jainism|2
+(noun)|Jainism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Jainism|religion (generic term)|faith (generic term)|religious belief (generic term)
+jainist|2
+(adj)|Jain|Jainist|religion|faith|religious belief (related term)
+(noun)|Jainist|disciple (generic term)|adherent (generic term)
+jaish-e-muhammad|1
+(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jaish-i-mohammed|1
+(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jak|1
+(noun)|jackfruit|jack|edible fruit (generic term)
+jakarta|1
+(noun)|Jakarta|Djakarta|capital of Indonesia|national capital (generic term)
+jakes|1
+(noun)|outhouse|privy|earth-closet|outbuilding (generic term)
+jakob-creutzfeldt disease|1
+(noun)|Creutzfeldt-Jakob disease|CJD|Jakob-Creutzfeldt disease|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+jakob behmen|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+jakob bernoulli|1
+(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician (generic term)
+jakob boehm|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+jakob boehme|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+jakob bohme|1
+(noun)|Boehme|Jakob Boehme|Bohme|Jakob Bohme|Boehm|Jakob Boehm|Behmen|Jakob Behmen|mystic (generic term)|religious mystic (generic term)
+jakob grimm|1
+(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer (generic term)|author (generic term)|linguist (generic term)|linguistic scientist (generic term)
+jakob hermandszoon|1
+(noun)|Arminius|Jacobus Arminius|Jacob Harmensen|Jakob Hermandszoon|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jakob liebmann beer|1
+(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer (generic term)
+jakob ludwig felix mendelssohn-bartholdy|1
+(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer (generic term)
+jakob ludwig karl grimm|1
+(noun)|Grimm|Jakob Grimm|Jakob Ludwig Karl Grimm|writer (generic term)|author (generic term)|linguist (generic term)|linguistic scientist (generic term)
+jakobson|1
+(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist (generic term)|linguistic scientist (generic term)
+jalalabad|1
+(noun)|Jalalabad|town (generic term)
+jalapeno|2
+(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|long pepper|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|jalapeno pepper|chili (generic term)|chili pepper (generic term)|chilli (generic term)|chilly (generic term)|chile (generic term)
+jalapeno pepper|1
+(noun)|jalapeno|chili (generic term)|chili pepper (generic term)|chilli (generic term)|chilly (generic term)|chile (generic term)
+jalopy|1
+(noun)|bus|heap|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)|dysphemism (generic term)
+jalousie|2
+(noun)|louvered window|window (generic term)
+(noun)|shutter (generic term)
+jam|11
+(noun)|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+(noun)|fix|hole|mess|muddle|pickle|kettle of fish|difficulty (generic term)
+(noun)|crush|press|crowd (generic term)
+(noun)|jamming|electronic jamming|electronic countermeasures (generic term)|ECM (generic term)
+(verb)|throng|mob|pack|pile|crowd (generic term)|crowd together (generic term)
+(verb)|push (generic term)|force (generic term)
+(verb)|crush|bruise (generic term)|contuse (generic term)
+(verb)|block|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|malfunction (generic term)|misfunction (generic term)
+(verb)|jampack|ram|chock up|cram|wad|stuff (generic term)
+(verb)|obstruct|obturate|impede|occlude|block|close up|impede (generic term)|hinder (generic term)|free (antonym)
+jam-packed|1
+(adj)|jammed|packed|crowded (similar term)
+jam session|1
+(noun)|musical performance (generic term)
+jamaat ul-fuqra|1
+(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jamaica|2
+(noun)|Jamaica|country (generic term)|state (generic term)|land (generic term)
+(noun)|Jamaica|island (generic term)
+jamaica apple|1
+(noun)|bullock's heart|Jamaica apple|custard apple (generic term)
+jamaica bayberry|1
+(noun)|bayberry|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree (generic term)
+jamaica caper tree|1
+(noun)|caper tree|Jamaica caper tree|Capparis cynophallophora|caper (generic term)
+jamaica dogwood|1
+(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree (generic term)
+jamaica honeysuckle|1
+(noun)|Jamaica honeysuckle|yellow granadilla|Passiflora laurifolia|passionflower (generic term)|passionflower vine (generic term)
+jamaica quassia|2
+(noun)|Jamaica quassia|quassia (generic term)
+(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree (generic term)
+jamaica rum|1
+(noun)|Jamaica rum|rum (generic term)
+jamaica shorts|1
+(noun)|Bermuda shorts|Jamaica shorts|short pants (generic term)|shorts (generic term)|trunks (generic term)
+jamaica sorrel|1
+(noun)|roselle|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+jamaican|2
+(adj)|Jamaican|country|state|land (related term)
+(noun)|Jamaican|West Indian (generic term)
+jamaican capital|1
+(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital (generic term)
+jamaican cherry|1
+(noun)|Jamaican cherry|calabur tree|calabura|silk wood|silkwood|Muntingia calabura|tree (generic term)
+jamaican dollar|1
+(noun)|Jamaican dollar|dollar (generic term)
+jamais vu|1
+(noun)|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+jamb|1
+(noun)|upright (generic term)|vertical (generic term)
+jambalaya|1
+(noun)|dish (generic term)
+jambeau|1
+(noun)|greave|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+jamberry|2
+(noun)|tomatillo|miltomate|purple ground cherry|Physalis philadelphica|ground cherry (generic term)|husk tomato (generic term)
+(noun)|tomatillo|Mexican husk tomato|Physalis ixocarpa|ground cherry (generic term)|husk tomato (generic term)
+jambon|1
+(noun)|ham|gammon|cut of pork (generic term)
+jamboree|1
+(noun)|gala|gala affair|blowout|celebration (generic term)|festivity (generic term)
+jambos|1
+(noun)|Jambos|genus Jambos|dicot genus (generic term)|magnoliopsid genus (generic term)
+jambosa|1
+(noun)|rose apple|rose-apple tree|Eugenia jambos|fruit tree (generic term)
+james|9
+(noun)|James|James IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|James|James II|King of England (generic term)|King of Great Britain (generic term)
+(noun)|James|James I|King James|King James I|King of England (generic term)|King of Great Britain (generic term)
+(noun)|James|Jesse James|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|James|William James|psychologist (generic term)|philosopher (generic term)
+(noun)|James|Henry James|writer (generic term)|author (generic term)
+(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle (generic term)|saint (generic term)
+(noun)|James|James River|river (generic term)
+(noun)|Epistle of James|James|Epistle (generic term)
+james a. garfield|1
+(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james abbott mcneill whistler|1
+(noun)|Whistler|James Abbott McNeill Whistler|painter (generic term)
+james abraham garfield|1
+(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james agee|1
+(noun)|Agee|James Agee|novelist (generic term)
+james albert michener|1
+(noun)|Michener|James Michener|James Albert Michener|writer (generic term)|author (generic term)
+james alfred van allen|1
+(noun)|Van Allen|James Alfred Van Allen|physicist (generic term)
+james arthur baldwin|1
+(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer (generic term)|author (generic term)
+james augustine aloysius joyce|1
+(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer (generic term)|author (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+james baldwin|1
+(noun)|Baldwin|James Baldwin|James Arthur Baldwin|writer (generic term)|author (generic term)
+james barrie|1
+(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist (generic term)|playwright (generic term)
+james bay|1
+(noun)|James Bay|bay (generic term)|embayment (generic term)
+james bernoulli|1
+(noun)|Bernoulli|Jakob Bernoulli|Jacques Bernoulli|James Bernoulli|mathematician (generic term)
+james bond|1
+(noun)|Bond|James Bond|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+james boswell|1
+(noun)|Boswell|James Boswell|writer (generic term)|author (generic term)
+james bowie|1
+(noun)|Bowie|Jim Bowie|James Bowie|pioneer (generic term)
+james branch cabell|1
+(noun)|Cabell|James Branch Cabell|writer (generic term)|author (generic term)
+james buchanan|1
+(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james buchanan brady|1
+(noun)|Brady|James Buchanan Brady|Diamond Jim Brady|Diamond Jim|financier (generic term)|moneyman (generic term)
+james butler hickock|1
+(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal (generic term)|marshall (generic term)
+james byron dean|1
+(noun)|Dean|James Dean|James Byron Dean|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james cagney|1
+(noun)|Cagney|Jimmy Cagney|James Cagney|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james clark ross|1
+(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer (generic term)|adventurer (generic term)
+james clerk maxwell|1
+(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist (generic term)
+james cleveland owens|1
+(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete (generic term)|jock (generic term)
+james cook|1
+(noun)|Cook|James Cook|Captain Cook|Captain James Cook|navigator (generic term)
+james crichton|1
+(noun)|Crichton|James Crichton|The Admirable Crichton|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+james dean|1
+(noun)|Dean|James Dean|James Byron Dean|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james dewey watson|1
+(noun)|Watson|James Watson|James Dewey Watson|geneticist (generic term)
+james douglas morrison|1
+(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star (generic term)
+james earl carter|1
+(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james earl carter jr.|1
+(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james edmund scripps|1
+(noun)|Scripps|James Edmund Scripps|publisher (generic term)|newspaper publisher (generic term)
+james edward meade|1
+(noun)|Meade|James Edward Meade|economist (generic term)|economic expert (generic term)
+james fenimore cooper|1
+(noun)|Cooper|James Fenimore Cooper|writer (generic term)|author (generic term)
+james francis thorpe|1
+(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete (generic term)|jock (generic term)
+james franck|1
+(noun)|Franck|James Franck|physicist (generic term)
+james garfield|1
+(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james george frazer|1
+(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist (generic term)
+james grover thurber|1
+(noun)|Thurber|James Thurber|James Grover Thurber|humorist (generic term)|humourist (generic term)|cartoonist (generic term)
+james hargreaves|1
+(noun)|Hargreaves|James Hargreaves|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+james harold doolittle|1
+(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+james harvey robinson|1
+(noun)|Robinson|James Harvey Robinson|historian (generic term)|historiographer (generic term)
+james henry leigh hunt|1
+(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer (generic term)|author (generic term)
+james hogg|1
+(noun)|Hogg|James Hogg|poet (generic term)
+james howard meredith|1
+(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+james hutton|1
+(noun)|Hutton|James Hutton|geologist (generic term)
+james i|1
+(noun)|James|James I|King James|King James I|King of England (generic term)|King of Great Britain (generic term)
+james ii|1
+(noun)|James|James II|King of England (generic term)|King of Great Britain (generic term)
+james iv|1
+(noun)|James|James IV|king (generic term)|male monarch (generic term)|Rex (generic term)
+james ives|1
+(noun)|Ives|James Ives|James Merritt Ives|lithographer (generic term)
+james jerome hill|1
+(noun)|Hill|J. J. Hill|James Jerome Hill|businessman (generic term)|man of affairs (generic term)
+james john corbett|1
+(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter (generic term)|gladiator (generic term)
+james joseph tunney|1
+(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter (generic term)|gladiator (generic term)
+james joyce|1
+(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer (generic term)|author (generic term)
+james k. polk|1
+(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james knox polk|1
+(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james langston hughes|1
+(noun)|Hughes|Langston Hughes|James Langston Hughes|writer (generic term)|author (generic term)
+james leonard farmer|1
+(noun)|Farmer|James Leonard Farmer|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+james madison|1
+(noun)|Madison|James Madison|President Madison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james maitland stewart|1
+(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james marshall hendrix|1
+(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist (generic term)|guitar player (generic term)
+james mason|1
+(noun)|Mason|James Mason|James Neville Mason|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james matthew barrie|1
+(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist (generic term)|playwright (generic term)
+james mckeen cattell|1
+(noun)|Cattell|James McKeen Cattell|psychologist (generic term)|editor (generic term)|editor in chief (generic term)
+james meredith|1
+(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+james merritt ives|1
+(noun)|Ives|James Ives|James Merritt Ives|lithographer (generic term)
+james michener|1
+(noun)|Michener|James Michener|James Albert Michener|writer (generic term)|author (generic term)
+james mill|1
+(noun)|Mill|James Mill|philosopher (generic term)
+james monroe|1
+(noun)|Monroe|James Monroe|President Monroe|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+james naismith|1
+(noun)|Naismith|James Naismith|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+james neville mason|1
+(noun)|Mason|James Mason|James Neville Mason|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+james parkinson|1
+(noun)|Parkinson|James Parkinson|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+james polk|1
+(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+james prescott joule|1
+(noun)|Joule|James Prescott Joule|physicist (generic term)
+james riddle hoffa|1
+(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader (generic term)
+james river|1
+(noun)|James|James River|river (generic term)
+james scott connors|1
+(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player (generic term)
+james thomas farrell|1
+(noun)|Farrell|James Thomas Farrell|writer (generic term)|author (generic term)
+james thomas harris|1
+(noun)|Harris|Frank Harris|James Thomas Harris|writer (generic term)|author (generic term)
+james thurber|1
+(noun)|Thurber|James Thurber|James Grover Thurber|humorist (generic term)|humourist (generic term)|cartoonist (generic term)
+james tobin|1
+(noun)|Tobin|James Tobin|economist (generic term)|economic expert (generic term)
+james usher|1
+(noun)|Ussher|James Ussher|Usher|James Usher|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+james ussher|1
+(noun)|Ussher|James Ussher|Usher|James Usher|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+james watson|1
+(noun)|Watson|James Watson|James Dewey Watson|geneticist (generic term)
+james watt|1
+(noun)|Watt|James Watt|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+james whitcomb riley|1
+(noun)|Riley|James Whitcomb Riley|poet (generic term)
+james william fulbright|1
+(noun)|Fulbright|William Fulbright|James William Fulbright|senator (generic term)
+james wilson|1
+(noun)|Wilson|James Wilson|American Revolutionary leader (generic term)
+james wyatt|1
+(noun)|Wyatt|James Wyatt|architect (generic term)|designer (generic term)
+jamesian|2
+(adj)|Jamesian|psychologist|philosopher (related term)
+(adj)|Jamesian|writer|author (related term)
+jamesonia|1
+(noun)|Jamesonia|genus Jamesonia|fern genus (generic term)
+jamestown|1
+(noun)|Jamestown|village (generic term)|hamlet (generic term)
+jamestown weed|1
+(noun)|jimsonweed|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple (generic term)
+jamison|1
+(noun)|Jamison|Judith Jamison|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+jamjar|1
+(noun)|jampot|jar (generic term)
+jammed|1
+(adj)|jam-packed|packed|crowded (similar term)
+jammer|1
+(noun)|transmitter (generic term)|sender (generic term)
+jammies|1
+(noun)|pajama|pyjama|pj's|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+jamming|1
+(noun)|electronic jamming|jam|electronic countermeasures (generic term)|ECM (generic term)
+jammu and kashmir|1
+(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+jampack|1
+(verb)|jam|ram|chock up|cram|wad|stuff (generic term)
+jampan|1
+(noun)|sedan (generic term)|sedan chair (generic term)
+jampot|1
+(noun)|jamjar|jar (generic term)
+jan|1
+(noun)|January|Jan|Gregorian calendar month (generic term)
+jan amos komensky|1
+(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+jan christian smuts|1
+(noun)|Smuts|Jan Christian Smuts|soldier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+jan evangelista purkinje|1
+(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist (generic term)
+jan hendrix oort|1
+(noun)|Oort|Jan Hendrix Oort|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+jan hus|1
+(noun)|Huss|John Huss|Hus|Jan Hus|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+jan steen|1
+(noun)|Steen|Jan Steen|old master (generic term)
+jan swammerdam|1
+(noun)|Swammerdam|Jan Swammerdam|naturalist (generic term)|natural scientist (generic term)|microscopist (generic term)
+jan tinbergen|1
+(noun)|Tinbergen|Jan Tinbergen|economist (generic term)|economic expert (generic term)
+jan van der meer|1
+(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master (generic term)
+jan van eyck|1
+(noun)|Eyck|van Eyck|Jan van Eyck|old master (generic term)
+jan vermeer|1
+(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master (generic term)
+jane austen|1
+(noun)|Austen|Jane Austen|writer (generic term)|author (generic term)
+jane doe|1
+(noun)|Jane Doe|party (generic term)
+jane fonda|1
+(noun)|Fonda|Jane Fonda|actress (generic term)
+jane goodall|1
+(noun)|Goodall|Jane Goodall|zoologist (generic term)|animal scientist (generic term)
+jane jacobs|1
+(noun)|Jacobs|Jane Jacobs|writer (generic term)|author (generic term)
+jane seymour|1
+(noun)|Seymour|Jane Seymour|queen (generic term)
+jangle|2
+(noun)|jingle|sound (generic term)
+(verb)|jingle|jingle-jangle|make noise (generic term)|resound (generic term)|noise (generic term)
+jangling|1
+(adj)|jangly|cacophonous (similar term)|cacophonic (similar term)
+jangly|1
+(adj)|jangling|cacophonous (similar term)|cacophonic (similar term)
+janis joplin|1
+(noun)|Joplin|Janis Joplin|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+janissary|2
+(noun)|follower (generic term)
+(noun)|Janissary|soldier (generic term)
+janitor|1
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+jansen|1
+(noun)|Jansen|Cornelis Jansen|Cornelius Jansenius|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jansenism|1
+(noun)|Jansenism|theological doctrine (generic term)
+jansenist|1
+(noun)|Jansenist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+january|1
+(noun)|January|Jan|Gregorian calendar month (generic term)
+january 1|3
+(noun)|Circumcision|Feast of the Circumcision|January 1|feast day (generic term)|fete day (generic term)
+(noun)|Solemnity of Mary|January 1|holy day of obligation (generic term)
+(noun)|New Year's Day|New Year's|January 1|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+january 19|1
+(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day (generic term)
+january 20|2
+(noun)|Saint Agnes's Eve|January 20|Christian holy day (generic term)
+(noun)|Inauguration Day|January 20|day (generic term)
+january 6|1
+(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day (generic term)
+janus|1
+(noun)|Janus|Roman deity (generic term)
+janus-faced|3
+(adj)|Janus-faced|bipolar (similar term)
+(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|two-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+(adj)|Janus-faced|two-faced|faced (similar term)
+jap|1
+(noun)|Jap|Nip|Japanese (generic term)|Nipponese (generic term)
+jap clover|1
+(noun)|japanese clover|japan clover|Lespedeza striata|bush clover (generic term)|lespedeza (generic term)
+japan|5
+(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago (generic term)
+(noun)|Japan|Nippon|Nihon|Asian country (generic term)|Asian nation (generic term)
+(noun)|lacquerware (generic term)
+(noun)|lacquer (generic term)
+(verb)|lacquer (generic term)
+japan allspice|1
+(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub (generic term)|bush (generic term)
+japan bittersweet|1
+(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine (generic term)
+japan cedar|1
+(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar (generic term)|cedar tree (generic term)
+japan clover|1
+(noun)|japanese clover|jap clover|Lespedeza striata|bush clover (generic term)|lespedeza (generic term)
+japan current|1
+(noun)|Japan current|Kuroshio current|Kuroshio|ocean current (generic term)
+japan tallow|1
+(noun)|Japan wax|Japan tallow|wax (generic term)
+japan trench|1
+(noun)|Japan Trench|trench (generic term)|deep (generic term)|oceanic abyss (generic term)
+japan wax|1
+(noun)|Japan wax|Japan tallow|wax (generic term)
+japanese|3
+(adj)|Japanese|Nipponese|Asian country|Asian nation (related term)
+(noun)|Japanese|Nipponese|Asian (generic term)|Asiatic (generic term)
+(noun)|Japanese|Altaic (generic term)|Altaic language (generic term)
+japanese-speaking|1
+(adj)|Japanese-speaking|communicative (similar term)|communicatory (similar term)
+japanese allspice|1
+(noun)|Japan allspice|Japanese allspice|winter sweet|Chimonanthus praecox|shrub (generic term)|bush (generic term)
+japanese andromeda|1
+(noun)|andromeda|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub (generic term)|bush (generic term)
+japanese angelica tree|1
+(noun)|Japanese angelica tree|Aralia elata|shrub (generic term)|bush (generic term)
+japanese apricot|1
+(noun)|Japanese apricot|mei|Prunus mume|apricot (generic term)|apricot tree (generic term)
+japanese archipelago|1
+(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago (generic term)
+japanese banana|1
+(noun)|Japanese banana|Musa basjoo|banana (generic term)|banana tree (generic term)
+japanese barberry|1
+(noun)|Japanese barberry|Berberis thunbergii|barberry (generic term)
+japanese barnyard millet|1
+(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet (generic term)
+japanese beech|1
+(noun)|Japanese beech|beech (generic term)|beech tree (generic term)
+japanese beetle|1
+(noun)|Japanese beetle|Popillia japonica|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+japanese bittersweet|1
+(noun)|Japanese bittersweet|Japan bittersweet|oriental bittersweet|Celastrus orbiculatus|Celastric articulatus|vine (generic term)
+japanese black pine|1
+(noun)|Japanese black pine|black pine|Pinus thunbergii|pine (generic term)|pine tree (generic term)|true pine (generic term)
+japanese brome|1
+(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome (generic term)|bromegrass (generic term)
+japanese capital|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+japanese carpet grass|1
+(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia (generic term)
+japanese cedar|1
+(noun)|Japanese cedar|Japan cedar|sugi|Cryptomeria japonica|cedar (generic term)|cedar tree (generic term)
+japanese cherry|1
+(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry (generic term)
+japanese chess|1
+(noun)|Japanese brome|Japanese chess|Bromus japonicus|brome (generic term)|bromegrass (generic term)
+japanese chestnut|1
+(noun)|Japanese chestnut|Castanea crenata|chestnut (generic term)|chestnut tree (generic term)
+japanese clover|1
+(noun)|japan clover|jap clover|Lespedeza striata|bush clover (generic term)|lespedeza (generic term)
+japanese crab|1
+(noun)|Japanese crab|crab (generic term)|crabmeat (generic term)
+japanese deer|1
+(noun)|Japanese deer|sika|Cervus nipon|Cervus sika|deer (generic term)|cervid (generic term)
+japanese deity|1
+(noun)|Japanese deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+japanese flowering cherry|2
+(noun)|Japanese flowering cherry|Prunus sieboldii|flowering cherry (generic term)
+(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry (generic term)
+japanese honeysuckle|1
+(noun)|Japanese honeysuckle|Lonicera japonica|honeysuckle (generic term)
+japanese hop|1
+(noun)|Japanese hop|Humulus japonicus|hop (generic term)|hops (generic term)
+japanese iris|1
+(noun)|Japanese iris|Iris kaempferi|beardless iris (generic term)
+japanese islands|1
+(noun)|Japan|Japanese Islands|Japanese Archipelago|archipelago (generic term)
+japanese ivy|1
+(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine (generic term)
+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 (generic term)
+japanese lawn grass|1
+(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia (generic term)
+japanese leaf|1
+(noun)|Chinese evergreen|Japanese leaf|Aglaonema modestum|houseplant (generic term)
+japanese leek|1
+(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+japanese lilac|1
+(noun)|Japanese lilac|Syringa villosa|lilac (generic term)
+japanese lime|1
+(noun)|Japanese linden|Japanese lime|Tilia japonica|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+japanese linden|1
+(noun)|Japanese linden|Japanese lime|Tilia japonica|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+japanese maple|2
+(noun)|Japanese maple|Acer palmatum|maple (generic term)
+(noun)|Japanese maple|full moon maple|Acer japonicum|maple (generic term)
+japanese medlar|1
+(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree (generic term)
+japanese millet|1
+(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|sanwa millet|Echinochloa frumentacea|millet (generic term)
+japanese monetary unit|1
+(noun)|Japanese monetary unit|monetary unit (generic term)
+japanese morning glory|1
+(noun)|Japanese morning glory|Ipomoea nil|morning glory (generic term)
+japanese oak|2
+(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak (generic term)|oak tree (generic term)
+(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak (generic term)|Lithocarpus densiflorus (generic term)
+japanese oyster|1
+(noun)|Japanese oyster|Ostrea gigas|oyster (generic term)
+japanese pagoda tree|1
+(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree (generic term)
+japanese persimmon|1
+(noun)|Japanese persimmon|kaki|Diospyros kaki|persimmon (generic term)|persimmon tree (generic term)
+japanese pink|1
+(noun)|Japanese pink|Dianthus chinensis heddewigii|china pink (generic term)|rainbow pink (generic term)|Dianthus chinensis (generic term)
+japanese plum|3
+(noun)|Japanese plum|Prunus salicina|plum (generic term)|plum tree (generic term)
+(noun)|loquat|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree (generic term)
+(noun)|loquat|Japanese plum|edible fruit (generic term)
+japanese poinsettia|1
+(noun)|Japanese poinsettia|mole plant|paint leaf|Euphorbia heterophylla|spurge (generic term)
+japanese privet|1
+(noun)|Japanese privet|Ligustrum japonicum|privet (generic term)
+japanese quince|1
+(noun)|Japanese quince|Chaenomeles speciosa|flowering quince (generic term)
+japanese radish|1
+(noun)|radish|daikon|Japanese radish|Raphanus sativus longipinnatus|radish plant (generic term)|radish (generic term)
+japanese red army|1
+(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+japanese red pine|1
+(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine (generic term)|pine tree (generic term)|true pine (generic term)
+japanese rose|1
+(noun)|multiflora|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose (generic term)|rosebush (generic term)
+japanese snowbell|1
+(noun)|Japanese snowbell|Styrax japonicum|styrax (generic term)
+japanese spaniel|1
+(noun)|Japanese spaniel|toy dog (generic term)|toy (generic term)
+japanese spurge|1
+(noun)|Japanese spurge|Pachysandra terminalis|pachysandra (generic term)
+japanese stranglehold|1
+(noun)|Japanese stranglehold|wrestling hold (generic term)
+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 (generic term)
+japanese table pine|1
+(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine (generic term)|pine tree (generic term)|true pine (generic term)
+japanese tree lilac|1
+(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac (generic term)
+japanese umbrella pine|1
+(noun)|Japanese umbrella pine|Sciadopitys verticillata|conifer (generic term)|coniferous tree (generic term)
+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 (generic term)
+(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|phoenix tree|Firmiana simplex|tree (generic term)
+japanese wistaria|1
+(noun)|Japanese wistaria|Wisteria floribunda|wisteria (generic term)|wistaria (generic term)
+japanese yew|1
+(noun)|Japanese yew|Taxus cuspidata|yew (generic term)
+jape|1
+(noun)|joke|gag|laugh|jest|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+japery|1
+(noun)|buffoonery|clowning|frivolity|harlequinade|prank|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+japheth|1
+(noun)|Japheth|man (generic term)|adult male (generic term)
+japonica|2
+(noun)|Camellia japonica|camellia (generic term)|camelia (generic term)
+(noun)|maule's quince|Chaenomeles japonica|flowering quince (generic term)
+jar|8
+(noun)|vessel (generic term)
+(noun)|jarful|containerful (generic term)
+(noun)|jolt|jounce|blow (generic term)|bump (generic term)
+(verb)|clash|collide|conflict (generic term)
+(verb)|jolt|move (generic term)
+(verb)|shake up|bump around|move (generic term)|displace (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+jar against|1
+(verb)|run into|bump into|butt against|knock against|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+jarful|1
+(noun)|jar|containerful (generic term)
+jargon|3
+(noun)|slang|cant|lingo|argot|patois|vernacular|non-standard speech (generic term)
+(noun)|jargoon|zircon (generic term)|zirconium silicate (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+jargoon|1
+(noun)|jargon|zircon (generic term)|zirconium silicate (generic term)
+jaroslav hasek|1
+(noun)|Hasek|Jaroslav Hasek|writer (generic term)|author (generic term)
+jarrell|1
+(noun)|Jarrell|Randall Jarrell|poet (generic term)
+jarring|1
+(adj)|cacophonous (similar term)|cacophonic (similar term)
+jarvik artificial heart|1
+(noun)|Jarvik heart|Jarvik artificial heart|artificial heart (generic term)
+jarvik heart|1
+(noun)|Jarvik heart|Jarvik artificial heart|artificial heart (generic term)
+jasmine|1
+(noun)|shrub (generic term)|bush (generic term)
+jasmine tobacco|1
+(noun)|flowering tobacco|Jasmine tobacco|Nicotiana alata|tobacco (generic term)|tobacco plant (generic term)
+jasminum|1
+(noun)|Jasminum|genus Jasminum|dicot genus (generic term)|magnoliopsid genus (generic term)
+jasminum mesnyi|1
+(noun)|primrose jasmine|Jasminum mesnyi|jasmine (generic term)
+jasminum nudiflorum|1
+(noun)|winter jasmine|Jasminum nudiflorum|jasmine (generic term)
+jasminum officinale|1
+(noun)|common jasmine|true jasmine|jessamine|Jasminum officinale|jasmine (generic term)
+jasminum sambac|1
+(noun)|Arabian jasmine|Jasminum sambac|jasmine (generic term)
+jason|1
+(noun)|Jason|mythical being (generic term)
+jasper|1
+(noun)|opaque gem (generic term)
+jasper johns|1
+(noun)|Johns|Jasper Johns|artist (generic term)|creative person (generic term)
+jaspers|1
+(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+jassid|1
+(noun)|leafhopper (generic term)
+jassidae|1
+(noun)|Jassidae|family Jassidae|arthropod family (generic term)
+jat|1
+(noun)|Jat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+jati|1
+(noun)|caste (generic term)
+jatropha|1
+(noun)|Jatropha|genus Jatropha|rosid dicot genus (generic term)
+jatropha curcus|1
+(noun)|physic nut|Jatropha curcus|angiospermous tree (generic term)|flowering tree (generic term)
+jatropha stimulosus|1
+(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+jatropha urens|1
+(noun)|spurge nettle|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+jaun gris|1
+(noun)|Gris|Jaun Gris|painter (generic term)
+jaundice|4
+(noun)|icterus|symptom (generic term)
+(noun)|bitterness|acrimony|acerbity|tartness|thorniness|disagreeableness (generic term)
+(verb)|deform (generic term)|distort (generic term)|strain (generic term)
+(verb)|affect (generic term)
+jaundice of the newborn|1
+(noun)|physiological jaundice of the newborn|icterus neonatorum|jaundice (generic term)|icterus (generic term)
+jaundiced|2
+(adj)|icteric|yellow|unhealthy (similar term)
+(adj)|prejudiced (similar term)|discriminatory (similar term)
+jaunt|2
+(noun)|excursion|outing|junket|pleasure trip|expedition|sashay|journey (generic term)|journeying (generic term)
+(verb)|travel|trip
+jauntiness|2
+(noun)|nattiness|dapperness|rakishness|chic (generic term)|chicness (generic term)|chichi (generic term)|modishness (generic term)|smartness (generic term)|stylishness (generic term)|swank (generic term)|last word (generic term)
+(noun)|breeziness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+jaunting car|1
+(noun)|jaunty car|cart (generic term)
+jaunty|2
+(adj)|dapper|dashing|natty|raffish|rakish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+(adj)|chipper|debonair|debonaire|cheerful (similar term)
+jaunty car|1
+(noun)|jaunting car|cart (generic term)
+java|3
+(noun)|Java|island (generic term)
+(noun)|coffee|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|Java|object-oriented programming language (generic term)|object-oriented programing language (generic term)
+java finch|1
+(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+java man|1
+(noun)|Java man|Trinil man|Homo erectus (generic term)
+java olives|1
+(noun)|kalumpang|Java olives|Sterculia foetida|sterculia (generic term)
+java pepper|1
+(noun)|cubeb|cubeb vine|Java pepper|Piper cubeba|true pepper (generic term)|pepper vine (generic term)
+java sparrow|1
+(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+javan|2
+(adj)|Javanese|Javan|island (related term)
+(noun)|Javanese|Javan|Indonesian (generic term)
+javanese|3
+(adj)|Javanese|Javan|island (related term)
+(noun)|Javanese|Javan|Indonesian (generic term)
+(noun)|Javanese|Indonesian (generic term)|Bahasa Indonesia (generic term)|Bahasa (generic term)
+javanthropus|1
+(noun)|Javanthropus|genus Javanthropus|hominid (generic term)
+javel water|1
+(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite (generic term)
+javelin|2
+(noun)|field event (generic term)
+(noun)|spear (generic term)|lance (generic term)|shaft (generic term)|sports equipment (generic term)
+javelina|1
+(noun)|collared peccary|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary (generic term)|musk hog (generic term)
+javelle water|1
+(noun)|Javelle water|Javel water|eau de Javelle|sodium hypochlorite (generic term)
+jaw|7
+(noun)|bone (generic term)|os (generic term)
+(noun)|feature (generic term)|lineament (generic term)
+(noun)|holding device (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|claver|visit|converse (generic term)|discourse (generic term)
+(verb)|yack|yack away|rattle on|yap away|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|chew|masticate|manducate|grate (generic term)|grind (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+jawaharlal nehru|1
+(noun)|Nehru|Jawaharlal Nehru|statesman (generic term)|solon (generic term)|national leader (generic term)
+jawan|1
+(noun)|Indian (generic term)|soldier (generic term)
+jawbone|2
+(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jowl|jaw (generic term)|articulator (generic term)
+(verb)|shmooze|shmoose|schmooze|schmoose|chew the fat (generic term)|shoot the breeze (generic term)|chat (generic term)|confabulate (generic term)|confab (generic term)|chitchat (generic term)|chatter (generic term)|chaffer (generic term)|natter (generic term)|gossip (generic term)|jaw (generic term)|claver (generic term)|visit (generic term)
+jawbreaker|2
+(noun)|hard candy (generic term)
+(noun)|polysyllable (generic term)|polysyllabic word (generic term)
+jawed|1
+(adj)|long-jawed (similar term)|square-jawed (similar term)|jawless (antonym)
+jawfish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+jawless|1
+(adj)|jawed (antonym)
+jawless fish|1
+(noun)|jawless vertebrate|agnathan|aquatic vertebrate (generic term)
+jawless vertebrate|1
+(noun)|jawless fish|agnathan|aquatic vertebrate (generic term)
+jaws of life|1
+(noun)|Jaws of Life|tool (generic term)
+jay|2
+(noun)|Jay|John Jay|diplomat (generic term)|diplomatist (generic term)|chief justice (generic term)
+(noun)|corvine bird (generic term)
+jay cooke|1
+(noun)|Cooke|Jay Cooke|financier (generic term)|moneyman (generic term)
+jay gould|1
+(noun)|Gould|Jay Gould|financier (generic term)|moneyman (generic term)
+jaybird|1
+(noun)|blue jay|Cyanocitta cristata|New World jay (generic term)
+jayshullah|1
+(noun)|Jayshullah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jaywalk|1
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+jaywalker|1
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+jazz|5
+(noun)|wind|idle words|nothingness|talk (generic term)|talking (generic term)
+(noun)|popular music (generic term)|popular music genre (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+jazz around|1
+(verb)|gallivant|gad|roll (generic term)|wander (generic term)|swan (generic term)|stray (generic term)|tramp (generic term)|roam (generic term)|cast (generic term)|ramble (generic term)|rove (generic term)|range (generic term)|drift (generic term)|vagabond (generic term)
+jazz band|1
+(noun)|jazz group|combo|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+jazz festival|1
+(noun)|festival (generic term)|fete (generic term)
+jazz group|1
+(noun)|jazz band|combo|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+jazz musician|1
+(noun)|jazzman|musician (generic term)|instrumentalist (generic term)|player (generic term)
+jazz up|1
+(verb)|juice up|pep up|ginger up|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+jazzman|1
+(noun)|jazz musician|musician (generic term)|instrumentalist (generic term)|player (generic term)
+jazzy|2
+(adj)|rhythmical (similar term)|rhythmic (similar term)
+(adj)|flashy|gaudy|showy|sporty|colorful (similar term)|colourful (similar term)
+jdam|1
+(noun)|Joint Direct Attack Munition|JDAM|guidance system (generic term)|guidance device (generic term)
+je ne sais quoi|1
+(noun)|object (generic term)|physical object (generic term)
+jealous|2
+(adj)|covetous|envious|desirous (similar term)|wishful (similar term)
+(adj)|green-eyed|overjealous|distrustful (similar term)
+jealously|1
+(adv)|enviously|covetously
+jealousy|2
+(noun)|green-eyed monster|envy (generic term)|enviousness (generic term)
+(noun)|watchfulness (generic term)|wakefulness (generic term)|vigilance (generic term)|alertness (generic term)
+jean|2
+(noun)|blue jean|denim|trouser (generic term)|pant (generic term)|workwear (generic term)
+(noun)|denim|denim fabric|dungaree|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+jean-baptiste poquelin|1
+(noun)|Moliere|Jean-Baptiste Poquelin|dramatist (generic term)|playwright (generic term)
+jean-claude duvalier|1
+(noun)|Duvalier|Jean-Claude Duvalier|Baby Doc|dictator (generic term)|potentate (generic term)
+jean-frederic joliot|1
+(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist (generic term)
+jean-frederic joliot-curie|1
+(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist (generic term)
+jean-jacques rousseau|1
+(noun)|Rousseau|Jean-Jacques Rousseau|writer (generic term)|author (generic term)|philosopher (generic term)
+jean-louis lebris de kerouac|1
+(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer (generic term)|author (generic term)
+jean-paul sartre|1
+(noun)|Sartre|Jean-Paul Sartre|dramatist (generic term)|playwright (generic term)|existentialist (generic term)|existentialist philosopher (generic term)
+jean-philippe rameau|1
+(noun)|Rameau|Jean-Philippe Rameau|composer (generic term)
+jean anouilh|1
+(noun)|Anouilh|Jean Anouilh|dramatist (generic term)|playwright (generic term)
+jean antoine watteau|1
+(noun)|Watteau|Jean Antoine Watteau|old master (generic term)
+jean arp|1
+(noun)|Arp|Jean Arp|Hans Arp|artist (generic term)|creative person (generic term)|poet (generic term)
+jean auguste dominique ingres|1
+(noun)|Ingres|Jean Auguste Dominique Ingres|painter (generic term)
+jean baptiste camille corot|1
+(noun)|Corot|Jean Baptiste Camille Corot|painter (generic term)
+jean baptiste de lamarck|1
+(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist (generic term)|natural scientist (generic term)
+jean baptiste donatien de vimeur|1
+(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general (generic term)|full general (generic term)
+jean baptiste joseph fourier|1
+(noun)|Fourier|Jean Baptiste Joseph Fourier|Baron Jean Baptiste Joseph Fourier|mathematician (generic term)|physicist (generic term)
+jean baptiste lully|1
+(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer (generic term)
+jean baptiste racine|1
+(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist (generic term)|playwright (generic term)|poet (generic term)
+jean bernard leon foucault|1
+(noun)|Foucault|Jean Bernard Leon Foucault|physicist (generic term)
+jean bernoulli|1
+(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician (generic term)
+jean caulvin|1
+(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jean cauvin|1
+(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jean chauvin|1
+(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jean cocteau|1
+(noun)|Cocteau|Jean Cocteau|writer (generic term)|author (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+jean de la fontaine|1
+(noun)|La Fontaine|Jean de La Fontaine|writer (generic term)|author (generic term)
+jean edouard vuillard|1
+(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter (generic term)
+jean francois champollion|1
+(noun)|Champollion|Jean Francois Champollion|Egyptologist (generic term)
+jean francois millet|1
+(noun)|Millet|Jean Francois Millet|painter (generic term)
+jean genet|1
+(noun)|Genet|Jean Genet|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+jean giraudoux|1
+(noun)|Giraudoux|Jean Giraudoux|Hippolyte Jean Giraudoux|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+jean harlow|1
+(noun)|Harlow|Jean Harlow|Harlean Carpenter|actress (generic term)
+jean honore fragonard|1
+(noun)|Fragonard|Jean Honore Fragonard|painter (generic term)
+jean laffite|1
+(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+jean lafitte|1
+(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+jean louis charles garnier|1
+(noun)|Garnier|Jean Louis Charles Garnier|architect (generic term)|designer (generic term)
+jean louis rodolphe agassiz|1
+(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist (generic term)|natural scientist (generic term)
+jean luc godard|1
+(noun)|Godard|Jean Luc Godard|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+jean martin charcot|1
+(noun)|Charcot|Jean Martin Charcot|neurologist (generic term)|brain doctor (generic term)
+jean monnet|1
+(noun)|Monnet|Jean Monnet|economist (generic term)|economic expert (generic term)
+jean nicholas arthur rimbaud|1
+(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet (generic term)
+jean paul marat|1
+(noun)|Marat|Jean Paul Marat|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+jean piaget|1
+(noun)|Piaget|Jean Piaget|psychologist (generic term)
+jean racine|1
+(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist (generic term)|playwright (generic term)|poet (generic term)
+jean sibelius|1
+(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer (generic term)
+jeanne antoinette poisson|1
+(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness (generic term)|marquise (generic term)
+jeanne d'arc|1
+(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader (generic term)|martyr (generic term)
+jeannette rankin|1
+(noun)|Rankin|Jeannette Rankin|suffragist (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+jebel musa|1
+(noun)|Jebel Musa|Abila|Abyla|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+jed'dah|1
+(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jeddah|1
+(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jeep|1
+(noun)|landrover|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+jeer|2
+(noun)|jeering|mockery|scoff|scoffing|derision (generic term)
+(verb)|scoff|flout|barrack|gibe|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+jeerer|1
+(noun)|scoffer|flouter|mocker|unpleasant person (generic term)|disagreeable person (generic term)
+jeering|2
+(adj)|derisive|gibelike|mocking|taunting|disrespectful (similar term)
+(noun)|jeer|mockery|scoff|scoffing|derision (generic term)
+jeeringly|1
+(adv)|mockingly|gibingly
+jeffers|1
+(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet (generic term)
+jefferson|1
+(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+jefferson city|1
+(noun)|Jefferson City|capital of Missouri|state capital (generic term)
+jefferson davis|1
+(noun)|Davis|Jefferson Davis|statesman (generic term)|solon (generic term)|national leader (generic term)
+jefferson davis' birthday|1
+(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day (generic term)
+jeffersonian|2
+(adj)|Jeffersonian|President of the United States|United States President|President|Chief Executive (related term)
+(noun)|Jeffersonian|follower (generic term)
+jeffrey's pine|1
+(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine (generic term)|pine tree (generic term)|true pine (generic term)
+jeffrey pine|1
+(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine (generic term)|pine tree (generic term)|true pine (generic term)
+jehad|2
+(noun)|jihad|international jihad|war (generic term)|warfare (generic term)
+(noun)|jihad|striving (generic term)|nisus (generic term)|pains (generic term)|strain (generic term)
+jehovah|2
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+jehovah's witness|1
+(noun)|Jehovah's Witness|Protestant (generic term)
+jehovah's witnesses|1
+(noun)|Jehovah's Witnesses|Protestant denomination (generic term)
+jejunal artery|1
+(noun)|intestinal artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+jejune|3
+(adj)|insubstantial|unwholesome (similar term)
+(adj)|adolescent|juvenile|puerile|immature (similar term)
+(adj)|insipid|uninteresting (similar term)
+jejunely|1
+(adv)|immaturely|maturely (antonym)
+jejuneness|3
+(noun)|callowness|juvenility|immaturity (generic term)|immatureness (generic term)
+(noun)|jejunity|tameness|vapidity|vapidness|dullness (generic term)
+(noun)|jejunity|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+jejunitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+jejunity|2
+(noun)|jejuneness|tameness|vapidity|vapidness|dullness (generic term)
+(noun)|jejuneness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+jejunoileitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+jejunostomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+jejunum|1
+(noun)|small intestine (generic term)
+jekyll and hyde|1
+(noun)|Jekyll and Hyde|anomaly (generic term)|unusual person (generic term)
+jell|1
+(verb)|set|congeal|solidify (generic term)
+jell-o|1
+(noun)|jello|Jell-O|gelatin dessert (generic term)|hydrocolloid (generic term)
+jellaba|1
+(noun)|cloak (generic term)
+jelled|1
+(adj)|congealed|jellied|solid (similar term)
+jellied|1
+(adj)|congealed|jelled|solid (similar term)
+jellify|2
+(verb)|change integrity (generic term)
+(verb)|jelly|change integrity (generic term)
+jello|1
+(noun)|Jell-O|gelatin dessert (generic term)|hydrocolloid (generic term)
+jelly|4
+(noun)|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+(noun)|gelatin|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(verb)|jellify|change integrity (generic term)
+jelly bean|1
+(noun)|jelly egg|candy (generic term)|confect (generic term)
+jelly doughnut|1
+(noun)|Berlin doughnut|bismark|raised doughnut (generic term)
+jelly egg|1
+(noun)|jelly bean|candy (generic term)|confect (generic term)
+jelly fungus|1
+(noun)|fungus (generic term)
+jelly roll morton|1
+(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician (generic term)|jazzman (generic term)
+jellyfish|2
+(noun)|Portuguese man-of-war|man-of-war|siphonophore (generic term)
+(noun)|medusa|medusan|coelenterate (generic term)|cnidarian (generic term)
+jellyleaf|1
+(noun)|Queensland hemp|Sida rhombifolia|mallow (generic term)
+jellylike|1
+(adj)|gelatinous|gelatinlike|thick (similar term)
+jellyroll|1
+(noun)|Swiss roll|sponge cake (generic term)
+jem|1
+(noun)|Jaish-i-Mohammed|Jaish-e-Muhammad|JEM|Army of Muhammad|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jemaah islamiyah|1
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jemmy|1
+(noun)|jimmy|crowbar (generic term)|wrecking bar (generic term)|pry (generic term)|pry bar (generic term)
+jena|1
+(noun)|Jena|Battle of Jena|pitched battle (generic term)
+jenghiz khan|1
+(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Temujin|emperor (generic term)
+jenner|1
+(noun)|Jenner|Edward Jenner|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+jennet|1
+(noun)|jenny|jenny ass|ass (generic term)
+jenny|2
+(noun)|Jenny|William Le Baron Jenny|architect (generic term)|designer (generic term)
+(noun)|jennet|jenny ass|ass (generic term)
+jenny ass|1
+(noun)|jennet|jenny|ass (generic term)
+jenny lind|1
+(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano (generic term)
+jenny wren|1
+(noun)|wren|passerine (generic term)|passeriform bird (generic term)
+jens otto harry jespersen|1
+(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist (generic term)|linguistic scientist (generic term)
+jensen|1
+(noun)|Jensen|Johannes Vilhelm Jensen|writer (generic term)|author (generic term)
+jeopardise|1
+(verb)|endanger|jeopardize|menace|threaten|imperil|peril|exist (generic term)|be (generic term)
+jeopardize|2
+(verb)|endanger|jeopardise|menace|threaten|imperil|peril|exist (generic term)|be (generic term)
+(verb)|venture|hazard|adventure|stake|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+jeopardy|1
+(noun)|hazard|peril|risk|endangerment|danger (generic term)
+jerboa|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+jerboa kangaroo|1
+(noun)|kangaroo jerboa|rat kangaroo (generic term)|kangaroo rat (generic term)
+jerboa rat|1
+(noun)|rat (generic term)
+jeremiad|1
+(noun)|complaint (generic term)
+jeremiah|2
+(noun)|Jeremiah|prophet (generic term)
+(noun)|Jeremiah|Book of Jeremiah|book (generic term)
+jeremy bentham|1
+(noun)|Bentham|Jeremy Bentham|philosopher (generic term)|jurist (generic term)|legal expert (generic term)
+jerevan|1
+(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital (generic term)
+jerez|1
+(noun)|Jerez|Jerez de la Frontera|city (generic term)|metropolis (generic term)|urban center (generic term)
+jerez de la frontera|1
+(noun)|Jerez|Jerez de la Frontera|city (generic term)|metropolis (generic term)|urban center (generic term)
+jericho|1
+(noun)|Jericho|village (generic term)|hamlet (generic term)
+jerk|11
+(noun)|dork|misfit (generic term)
+(noun)|jerking|jolt|saccade|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|rate (generic term)
+(noun)|jerky|jerked meat|meat (generic term)
+(noun)|weightlift (generic term)|weightlifting (generic term)
+(noun)|tug|pull (generic term)|pulling (generic term)
+(verb)|yank|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|twitch|move (generic term)
+(verb)|twitch|move involuntarily (generic term)|move reflexively (generic term)
+(verb)|buck|hitch|move (generic term)
+(verb)|flick|push (generic term)|force (generic term)
+jerk-off|1
+(noun)|tosser|wanker|masturbator (generic term)|onanist (generic term)
+jerk off|1
+(verb)|masturbate|wank|fuck off|she-bop|jack off|stimulate (generic term)|excite (generic term)|stir (generic term)
+jerked meat|1
+(noun)|jerky|jerk|meat (generic term)
+jerker|1
+(noun)|yanker|puller (generic term)
+jerkily|1
+(adv)|spasmodically
+jerkin|1
+(noun)|jacket (generic term)
+jerkiness|1
+(noun)|fitfulness|irregularity (generic term)|unregularity (generic term)
+jerking|2
+(adj)|arrhythmic|jerky|unsteady (similar term)
+(noun)|jerk|jolt|saccade|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+jerking off|1
+(noun)|jacking off|hand job|wank|masturbation (generic term)|onanism (generic term)
+jerkwater|1
+(adj)|one-horse|pokey|poky|provincial (similar term)
+jerky|4
+(adj)|arrhythmic|jerking|unsteady (similar term)
+(adj)|choppy|sudden (similar term)
+(adj)|anserine|dopy|dopey|foolish|goosey|goosy|gooselike|stupid (similar term)
+(noun)|jerked meat|jerk|meat (generic term)
+jeroboam|2
+(noun)|Jeroboam|Jeroboam I|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|double-magnum|wine bottle (generic term)
+jeroboam i|1
+(noun)|Jeroboam|Jeroboam I|king (generic term)|male monarch (generic term)|Rex (generic term)
+jerom bos|1
+(noun)|Bosch|Hieronymus Bosch|Jerom Bos|old master (generic term)
+jerome|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+jerome david kern|1
+(noun)|Kern|Jerome Kern|Jerome David Kern|composer (generic term)
+jerome david salinger|1
+(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer (generic term)|author (generic term)
+jerome kern|1
+(noun)|Kern|Jerome Kern|Jerome David Kern|composer (generic term)
+jerome robbins|1
+(noun)|Robbins|Jerome Robbins|choreographer (generic term)
+jerry|1
+(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German (generic term)
+jerry-builder|1
+(noun)|builder (generic term)|constructor (generic term)
+jerry-building|1
+(noun)|construction (generic term)|building (generic term)
+jerry-built|1
+(adj)|shoddy|weak (similar term)
+jerry lee lewis|1
+(noun)|Lewis|Jerry Lee Lewis|rock star (generic term)|pianist (generic term)|piano player (generic term)
+jersey|5
+(noun)|New Jersey|Jersey|Garden State|NJ|American state (generic term)
+(noun)|Jersey|island of Jersey|Channel Island (generic term)
+(noun)|T-shirt|tee shirt|shirt (generic term)
+(noun)|knit (generic term)|knitted fabric (generic term)
+(noun)|Jersey|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+jersey city|1
+(noun)|Jersey City|city (generic term)|metropolis (generic term)|urban center (generic term)
+jersey elm|1
+(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+jersey fern|1
+(noun)|annual fern|Jersey fern|Anogramma leptophylla|fern (generic term)
+jersey knapweed|1
+(noun)|Jersey knapweed|knapweed (generic term)
+jersey lillie|1
+(noun)|Langtry|Lillie Langtry|Jersey Lillie|Emilie Charlotte le Breton|actress (generic term)
+jersey pine|1
+(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+jerusalem|1
+(noun)|Jerusalem|capital of Israel|national capital (generic term)
+jerusalem artichoke|3
+(noun)|Jerusalem artichoke|tuber (generic term)
+(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower (generic term)|helianthus (generic term)
+(noun)|Jerusalem artichoke|sunchoke|root vegetable (generic term)
+jerusalem artichoke sunflower|1
+(noun)|Jerusalem artichoke|girasol|Jerusalem artichoke sunflower|Helianthus tuberosus|sunflower (generic term)|helianthus (generic term)
+jerusalem cherry|1
+(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade (generic term)
+jerusalem cricket|1
+(noun)|sand cricket|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper (generic term)|tettigoniid (generic term)
+jerusalem cross|1
+(noun)|Jerusalem cross|Cross (generic term)
+jerusalem oak|1
+(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot (generic term)
+jerusalem sage|1
+(noun)|Jerusalem sage|Phlomis fruticosa|subshrub (generic term)|suffrutex (generic term)
+jerusalem thorn|4
+(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub (generic term)|bush (generic term)
+(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub (generic term)|bush (generic term)
+(noun)|Jerusalem thorn|horsebean|Parkinsonia aculeata|shrub (generic term)|bush (generic term)
+(noun)|catechu|Jerusalem thorn|Acacia catechu|acacia (generic term)
+jerusalem warriors|1
+(noun)|Jerusalem Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jespersen|1
+(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist (generic term)|linguistic scientist (generic term)
+jessamine|1
+(noun)|common jasmine|true jasmine|Jasminum officinale|jasmine (generic term)
+jesse jackson|1
+(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+jesse james|1
+(noun)|James|Jesse James|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+jesse louis jackson|1
+(noun)|Jackson|Jesse Jackson|Jesse Louis Jackson|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+jesse owens|1
+(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete (generic term)|jock (generic term)
+jessica lucy mitford|1
+(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer (generic term)|author (generic term)
+jessica mitford|1
+(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer (generic term)|author (generic term)
+jessica tandy|1
+(noun)|Tandy|Jessica Tandy|actress (generic term)
+jessye norman|1
+(noun)|Norman|Jessye Norman|soprano (generic term)
+jest|4
+(noun)|joke|gag|laugh|jape|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|joke|jocularity|diversion (generic term)|recreation (generic term)
+(verb)|joke|communicate (generic term)|intercommunicate (generic term)|jest at (related term)
+(verb)|joke|act (generic term)|behave (generic term)|do (generic term)
+jest at|1
+(verb)|ridicule|roast|guy|blackguard|laugh at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+jester|1
+(noun)|fool|motley fool|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+jesting|1
+(adj)|jocose|jocular|joking|humorous (similar term)|humourous (similar term)
+jestingly|1
+(adv)|jokingly
+jesuit|2
+(adj)|Jesuitical|Jesuitic|Jesuit|religious (related term)|Christian theology (related term)
+(noun)|Jesuit|religious (generic term)
+jesuit's bark|1
+(noun)|cinchona|cinchona bark|Peruvian bark|Jesuit's bark|bark (generic term)
+jesuit order|1
+(noun)|Society of Jesus|Jesuit order|order (generic term)|monastic order (generic term)
+jesuitic|1
+(adj)|Jesuitical|Jesuitic|Jesuit|religious (related term)|Christian theology (related term)
+jesuitical|1
+(adj)|Jesuitical|Jesuitic|Jesuit|religious (related term)|Christian theology (related term)
+jesuitism|1
+(noun)|Jesuitism|Jesuitry|Christian theology (generic term)
+jesuitry|1
+(noun)|Jesuitism|Jesuitry|Christian theology (generic term)
+jesuits' nut|1
+(noun)|water caltrop|Jesuits' nut|Trapa natans|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+jesus|1
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+jesus christ|1
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+jesus of nazareth|1
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+jet|8
+(adj)|coal-black|jet-black|pitchy|sooty|achromatic (similar term)
+(noun)|jet plane|jet-propelled plane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+(noun)|squirt|spurt|spirt|discharge (generic term)|outpouring (generic term)|run (generic term)
+(noun)|lignite (generic term)|brown coal (generic term)|wood coal (generic term)
+(noun)|K|super acid|special K|honey oil|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+(noun)|fountain|flow (generic term)|flowing (generic term)
+(verb)|gush|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+jet-black|1
+(adj)|coal-black|jet|pitchy|sooty|achromatic (similar term)
+jet-propelled|1
+(adj)|reaction propulsion (related term)
+jet-propelled plane|1
+(noun)|jet|jet plane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+jet black|1
+(noun)|coal black|ebony|pitch black|sable|soot black|black (generic term)|blackness (generic term)|inkiness (generic term)
+jet bridge|1
+(noun)|footbridge (generic term)|overcrossing (generic term)|pedestrian bridge (generic term)
+jet engine|1
+(noun)|reaction-propulsion engine (generic term)|reaction engine (generic term)
+jet lag|1
+(noun)|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+jet plane|1
+(noun)|jet|jet-propelled plane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+jet propulsion|1
+(noun)|reaction propulsion (generic term)
+jet set|1
+(noun)|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+jet stream|1
+(noun)|airstream (generic term)
+jeth|1
+(noun)|Jeth|Jyaistha|Hindu calendar month (generic term)
+jetliner|1
+(noun)|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+jets|1
+(noun)|blue jets|atmospheric electricity (generic term)
+jetsam|2
+(noun)|part (generic term)|portion (generic term)
+(noun)|flotsam|wreckage (generic term)
+jetting|1
+(adj)|spouting|spurting|squirting|running (similar term)
+jettison|2
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|throw (generic term)
+jetty|1
+(noun)|breakwater|groin|groyne|mole|bulwark|seawall|barrier (generic term)
+jeu d'esprit|1
+(noun)|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+jeune fille|1
+(noun)|lass|lassie|young girl|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+jevons|1
+(noun)|Jevons|William Stanley Jevons|economist (generic term)|economic expert (generic term)|logician (generic term)|logistician (generic term)
+jew|1
+(noun)|Jew|Hebrew|Israelite|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+jew's-ear|1
+(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus (generic term)
+jew's-ears|1
+(noun)|Jew's-ear|Jew's-ears|ear fungus|Auricularia auricula|jelly fungus (generic term)
+jew's harp|1
+(noun)|jews' harp|mouth bow|musical instrument (generic term)|instrument (generic term)
+jew-baiter|1
+(noun)|anti-Semite|Jew-baiter|hater (generic term)
+jew-bush|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+jew bush|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+jewbush|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+jewel|3
+(noun)|gem|precious stone|jewelry (generic term)|jewellery (generic term)
+(noun)|gem|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|bejewel|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+jewel casket|1
+(noun)|casket|box (generic term)
+jewel orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+jeweled|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jewelled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+jeweler|2
+(noun)|jewelry maker|jeweller|maker (generic term)|shaper (generic term)
+(noun)|jeweller|merchant (generic term)|merchandiser (generic term)
+jeweler's glass|1
+(noun)|optical instrument (generic term)
+jeweler's loupe|1
+(noun)|loupe|hand glass (generic term)|simple microscope (generic term)|magnifying glass (generic term)
+jewelled|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|sequined|spangled|spangly|adorned (similar term)|decorated (similar term)
+jewelled headdress|1
+(noun)|headdress (generic term)|headgear (generic term)
+jeweller|2
+(noun)|jewelry maker|jeweler|maker (generic term)|shaper (generic term)
+(noun)|jeweler|merchant (generic term)|merchandiser (generic term)
+jewellery|1
+(noun)|jewelry|adornment (generic term)
+jewelry|1
+(noun)|jewellery|adornment (generic term)
+jewelry dealer|1
+(noun)|jewelry store|dealer (generic term)
+jewelry maker|1
+(noun)|jeweler|jeweller|maker (generic term)|shaper (generic term)
+jewelry store|1
+(noun)|jewelry dealer|dealer (generic term)
+jewels-of-opar|1
+(noun)|Talinum paniculatum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+jewelweed|1
+(noun)|lady's earrings|orange balsam|celandine|touch-me-not|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+jewess|1
+(noun)|Jewess|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+jewfish|2
+(noun)|mulloway|Sciaena antarctica|sciaenid fish (generic term)|sciaenid (generic term)
+(noun)|Mycteroperca bonaci|grouper (generic term)
+jewish|1
+(adj)|Jewish|Judaic|person|individual|someone|somebody|mortal|soul (related term)
+jewish-orthodox|1
+(adj)|Orthodox|Jewish-Orthodox|monotheism (related term)
+jewish calendar|1
+(noun)|Jewish calendar|Hebrew calendar|lunisolar calendar (generic term)
+jewish calendar month|1
+(noun)|Jewish calendar month|calendar month (generic term)|month (generic term)
+jewish holy day|1
+(noun)|Jewish holy day|religious holiday (generic term)|holy day (generic term)
+jewish new year|1
+(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day (generic term)|High Holiday (generic term)|feast day (generic term)|fete day (generic term)
+jewish orthodoxy|1
+(noun)|Orthodox Judaism|Jewish Orthodoxy|Judaism (generic term)|Hebraism (generic term)|Jewish religion (generic term)
+jewish religion|1
+(noun)|Judaism|Hebraism|Jewish religion|religion (generic term)|faith (generic term)|organized religion (generic term)
+jewish rye|1
+(noun)|Jewish rye bread|Jewish rye|rye bread (generic term)
+jewish rye bread|1
+(noun)|Jewish rye bread|Jewish rye|rye bread (generic term)
+jewison|1
+(noun)|Jewison|Norman Jewison|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+jewry|1
+(noun)|Jewry|social group (generic term)
+jews' harp|1
+(noun)|jew's harp|mouth bow|musical instrument (generic term)|instrument (generic term)
+jezebel|2
+(noun)|Jezebel|queen (generic term)|Jewess (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+jfk|1
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+jhvh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+ji|1
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+jiao|1
+(noun)|Chinese monetary unit (generic term)
+jib|3
+(noun)|fore-and-aft sail (generic term)
+(verb)|resist|balk|baulk|disobey (generic term)
+(verb)|jibe|gybe|change course|sail (generic term)
+jibboom|1
+(noun)|spar (generic term)
+jibe|3
+(noun)|shot|shaft|slam|dig|barb|gibe|remark (generic term)|comment (generic term)
+(verb)|match|fit|correspond|check|gibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|gybe|jib|change course|sail (generic term)
+jidda|1
+(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jiddah|1
+(noun)|Jeddah|Jed'dah|Jiddah|Jidda|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jiffy|1
+(noun)|blink of an eye|flash|heartbeat|instant|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+jig|5
+(noun)|gigue|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|fisherman's lure (generic term)|fish lure (generic term)
+(noun)|device (generic term)
+(noun)|folk dancing (generic term)|folk dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+jigaboo|1
+(noun)|nigger|nigga|spade|coon|nigra|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+jigger|3
+(noun)|shot glass|pony|glass (generic term)|drinking glass (generic term)
+(noun)|jiggermast|mast (generic term)
+(noun)|harvest mite|chigger|redbug|trombiculiid (generic term)
+jiggered|1
+(adj)|surprised (similar term)
+jiggermast|1
+(noun)|jigger|mast (generic term)
+jiggery-pokery|1
+(noun)|trickery|hocus-pocus|slickness|hanky panky|skulduggery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+jiggle|2
+(noun)|joggle|shaking (generic term)
+(verb)|joggle|wiggle|shake (generic term)|agitate (generic term)
+jigsaw|2
+(noun)|saber saw|reciprocating saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+(noun)|scroll saw|fretsaw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+jigsaw puzzle|1
+(noun)|puzzle (generic term)
+jihad|2
+(noun)|jehad|international jihad|war (generic term)|warfare (generic term)
+(noun)|jehad|striving (generic term)|nisus (generic term)|pains (generic term)|strain (generic term)
+jihadi|1
+(adj)|striving|nisus|pains|strain (related term)
+jihadist|1
+(noun)|Jihadist|Muslim (generic term)|Moslem (generic term)
+jillion|1
+(noun)|million|billion|trillion|zillion|large indefinite quantity (generic term)|large indefinite amount (generic term)
+jilt|2
+(noun)|woman (generic term)|adult female (generic term)
+(verb)|leave (generic term)
+jilted|1
+(adj)|rejected|spurned|unloved (similar term)
+jim bowie|1
+(noun)|Bowie|Jim Bowie|James Bowie|pioneer (generic term)
+jim corbett|1
+(noun)|Corbett|Jim Corbett|James John Corbett|Gentleman Jim|prizefighter (generic term)|gladiator (generic term)
+jim crow|2
+(noun)|color bar|colour bar|color line|colour line|Jim Crow|ideological barrier (generic term)
+(noun)|crowbar (generic term)|wrecking bar (generic term)|pry (generic term)|pry bar (generic term)
+jim henson|1
+(noun)|Henson|Jim Henson|puppeteer (generic term)
+jim morrison|1
+(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star (generic term)
+jim thorpe|1
+(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete (generic term)|jock (generic term)
+jimdandy|2
+(noun)|jimhickey|crackerjack|ideal (generic term)|paragon (generic term)|nonpareil (generic term)|saint (generic term)|apotheosis (generic term)|nonesuch (generic term)|nonsuch (generic term)
+(noun)|jimhickey|crackerjack|thing (generic term)
+jimenez|1
+(noun)|Jimenez|Juan Ramon Jimenez|poet (generic term)
+jimenez de cisneros|1
+(noun)|Jimenez de Cisneros|Francisco Jimenez de Cisneros|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|Grand Inquisitor (generic term)
+jimhickey|2
+(noun)|jimdandy|crackerjack|ideal (generic term)|paragon (generic term)|nonpareil (generic term)|saint (generic term)|apotheosis (generic term)|nonesuch (generic term)|nonsuch (generic term)
+(noun)|jimdandy|crackerjack|thing (generic term)
+jimi hendrix|1
+(noun)|Hendrix|Jimi Hendrix|James Marshall Hendrix|guitarist (generic term)|guitar player (generic term)
+jimmies|1
+(noun)|sprinkles|chocolate candy (generic term)
+jimmy|2
+(noun)|jemmy|crowbar (generic term)|wrecking bar (generic term)|pry (generic term)|pry bar (generic term)
+(verb)|pry|prise|prize|lever|open (generic term)|open up (generic term)
+jimmy cagney|1
+(noun)|Cagney|Jimmy Cagney|James Cagney|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+jimmy carter|1
+(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+jimmy conors|1
+(noun)|Connors|Jimmy Conors|James Scott Connors|tennis player (generic term)
+jimmy doolittle|1
+(noun)|Doolittle|Jimmy Doolittle|James Harold Doolittle|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+jimmy durante|1
+(noun)|Durante|Jimmy Durante|comedian (generic term)|comic (generic term)
+jimmy hoffa|1
+(noun)|Hoffa|Jimmy Hoffa|James Riddle Hoffa|labor leader (generic term)
+jimmy stewart|1
+(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+jimson weed|1
+(noun)|jimsonweed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple (generic term)
+jimsonweed|1
+(noun)|jimson weed|Jamestown weed|common thorn apple|apple of Peru|Datura stramonium|thorn apple (generic term)
+jinghis khan|1
+(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Temujin|emperor (generic term)
+jinghpaw|1
+(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin (generic term)|Kachinic (generic term)
+jinghpo|1
+(noun)|Jinghpo|Jinghpaw|Chingpo|Kachin (generic term)|Kachinic (generic term)
+jingle|3
+(noun)|jangle|sound (generic term)
+(noun)|doggerel|doggerel verse|verse (generic term)|rhyme (generic term)
+(verb)|jingle-jangle|jangle|make noise (generic term)|resound (generic term)|noise (generic term)
+jingle-jangle|1
+(verb)|jingle|jangle|make noise (generic term)|resound (generic term)|noise (generic term)
+jingling|1
+(adj)|jingly|reverberant (similar term)|ringing (similar term)
+jingly|1
+(adj)|jingling|reverberant (similar term)|ringing (similar term)
+jingo|1
+(noun)|chauvinist|jingoist|flag-waver|hundred-percenter|patrioteer|patriot (generic term)|nationalist (generic term)
+jingoism|2
+(noun)|flag waving|demagoguery (generic term)|demagogy (generic term)
+(noun)|chauvinism|superpatriotism|ultranationalism|patriotism (generic term)|nationalism (generic term)
+jingoist|1
+(noun)|chauvinist|jingo|flag-waver|hundred-percenter|patrioteer|patriot (generic term)|nationalist (generic term)
+jingoistic|1
+(adj)|chauvinistic|flag-waving|nationalistic|ultranationalistic|superpatriotic|patriotic (similar term)|loyal (similar term)
+jinja|1
+(noun)|Jinja|city (generic term)|metropolis (generic term)|urban center (generic term)
+jinks|1
+(noun)|high jinks|hijinks|high jinx|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+jinnah|1
+(noun)|Jinnah|Muhammad Ali Jinnah|statesman (generic term)|solon (generic term)|national leader (generic term)
+jinnee|1
+(noun)|genie|jinni|djinni|djinny|spirit (generic term)|disembodied spirit (generic term)
+jinni|1
+(noun)|genie|jinnee|djinni|djinny|spirit (generic term)|disembodied spirit (generic term)
+jinrikisha|1
+(noun)|ricksha|rickshaw|cart (generic term)
+jinx|4
+(noun)|jonah|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|hex|curse|whammy|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+(verb)|hex|bewitch|glamour|witch|enchant|charm (generic term)|becharm (generic term)
+(verb)|predestine (generic term)|foreordain (generic term)|preordain (generic term)
+jinxed|1
+(adj)|hexed|unlucky (similar term)|luckless (similar term)
+jiqui|1
+(noun)|Malpighia obovata|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+jird|1
+(noun)|gerbil (generic term)|gerbille (generic term)
+jirga|1
+(noun)|Jirga|council (generic term)
+jirrbal|1
+(noun)|Dyirbal|Jirrbal|Australian (generic term)|Aboriginal Australian (generic term)
+jitney|1
+(noun)|bus|autobus|coach|charabanc|double-decker|motorbus|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+jitter|2
+(noun)|noise (generic term)|interference (generic term)|disturbance (generic term)
+(noun)|movement (generic term)|motion (generic term)
+jitterbug|2
+(noun)|social dancing (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+jitteriness|1
+(noun)|jumpiness|nervousness|restiveness|anxiety (generic term)
+jittering|1
+(adj)|changeable (similar term)|changeful (similar term)
+jitters|1
+(noun)|heebie-jeebies|screaming meemies|nervousness (generic term)|nerves (generic term)
+jittery|2
+(adj)|movement|motion (related term)
+(adj)|edgy|high-strung|highly strung|in suspense|jumpy|nervy|overstrung|restive|uptight|tense (similar term)
+jiujitsu|1
+(noun)|jujutsu|jujitsu|martial art (generic term)
+jive|2
+(noun)|swing|swing music|jazz (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+jnd|1
+(noun)|just-noticeable difference|difference threshold (generic term)|differential threshold (generic term)|difference limen (generic term)|differential limen (generic term)
+jnr|1
+(noun)|Junior|Jr|Jnr|son (generic term)|boy (generic term)
+joachim|1
+(noun)|Joachim|Joseph Joachim|violinist (generic term)|fiddler (generic term)|composer (generic term)
+joan crawford|1
+(noun)|Crawford|Joan Crawford|actress (generic term)
+joan didion|1
+(noun)|Didion|Joan Didion|writer (generic term)|author (generic term)
+joan miro|1
+(noun)|Miro|Joan Miro|painter (generic term)
+joan of arc|1
+(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader (generic term)|martyr (generic term)
+joan sutherland|1
+(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano (generic term)
+joao pessoa|1
+(noun)|Joao Pessoa|city (generic term)|metropolis (generic term)|urban center (generic term)
+job|16
+(noun)|occupation|business|line of work|line|activity (generic term)
+(noun)|task|chore|duty (generic term)
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+(noun)|workplace (generic term)|work (generic term)
+(noun)|product (generic term)|production (generic term)
+(noun)|problem|difficulty (generic term)
+(noun)|work (generic term)
+(noun)|caper|robbery (generic term)
+(noun)|Job|hero (generic term)
+(noun)|Job|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|application (generic term)|application program (generic term)|applications programme (generic term)
+(noun)|Job|Book of Job|book (generic term)
+(verb)|cheat (generic term)|chisel (generic term)
+(verb)|subcontract|farm out|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|speculate|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+job's comforter|1
+(noun)|Job's comforter|sympathizer (generic term)|sympathiser (generic term)|comforter (generic term)
+job's tears|1
+(noun)|Job's tears|seed (generic term)
+job-control language|1
+(noun)|application-oriented language (generic term)|problem-oriented language (generic term)
+job-oriented terminal|1
+(noun)|terminal (generic term)
+job action|1
+(noun)|direct action (generic term)
+job application|1
+(noun)|application (generic term)
+job candidate|1
+(noun)|applicant (generic term)|applier (generic term)
+job control|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+job description|1
+(noun)|description (generic term)|verbal description (generic term)
+job interview|1
+(noun)|employment interview|interview (generic term)
+job lot|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+jobber|1
+(noun)|middleman|wholesaler|distributor (generic term)|distributer (generic term)
+jobbery|1
+(noun)|corruptness (generic term)|corruption (generic term)
+jobcentre|1
+(noun)|government office (generic term)
+jobholder|1
+(noun)|employee (generic term)
+jobless|1
+(adj)|idle|out of work|unemployed (similar term)
+jocasta|1
+(noun)|Jocasta|mythical being (generic term)
+jock|2
+(noun)|athlete|contestant (generic term)
+(noun)|athletic supporter|supporter|suspensor|jockstrap|protective garment (generic term)|man's clothing (generic term)
+jock itch|1
+(noun)|tinea cruris|eczema marginatum|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+jockey|5
+(noun)|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+(noun)|operator (generic term)|manipulator (generic term)
+(verb)|cheat|chouse|shaft|screw|chicane|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|manoeuver (generic term)|maneuver (generic term)|manoeuvre (generic term)|operate (generic term)
+(verb)|horse-race (generic term)
+jockey cap|1
+(noun)|baseball cap|golf cap|cap (generic term)
+jockey club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+jockey shorts|1
+(noun)|briefs|Jockey shorts|underpants (generic term)
+jockstrap|1
+(noun)|athletic supporter|supporter|suspensor|jock|protective garment (generic term)|man's clothing (generic term)
+jocose|1
+(adj)|jesting|jocular|joking|humorous (similar term)|humourous (similar term)
+jocosely|1
+(adv)|jocular
+jocoseness|1
+(noun)|jocosity|merriness|humorousness|levity (generic term)
+jocosity|2
+(noun)|jocularity|fun (generic term)|play (generic term)|sport (generic term)
+(noun)|jocoseness|merriness|humorousness|levity (generic term)
+jocote|1
+(noun)|mombin|mombin tree|Spondias purpurea|fruit tree (generic term)
+jocular|2
+(adj)|jesting|jocose|joking|humorous (similar term)|humourous (similar term)
+(adv)|jocosely
+jocularity|3
+(noun)|jocundity|gaiety (generic term)|merriment (generic term)
+(noun)|jocosity|fun (generic term)|play (generic term)|sport (generic term)
+(noun)|jest|joke|diversion (generic term)|recreation (generic term)
+jocund|1
+(adj)|gay|jolly|jovial|merry|mirthful|joyous (similar term)
+jocundity|1
+(noun)|jocularity|gaiety (generic term)|merriment (generic term)
+jodhpur|1
+(noun)|jodhpur boot|jodhpur shoe|riding boot (generic term)
+jodhpur boot|1
+(noun)|jodhpur|jodhpur shoe|riding boot (generic term)
+jodhpur breeches|1
+(noun)|jodhpurs|riding breeches|trouser (generic term)|pant (generic term)
+jodhpur shoe|1
+(noun)|jodhpur|jodhpur boot|riding boot (generic term)
+jodhpurs|1
+(noun)|jodhpur breeches|riding breeches|trouser (generic term)|pant (generic term)
+joe-pye weed|2
+(noun)|Joe-Pye weed|purple boneset|trumpet weed|marsh milkweed|Eupatorium purpureum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb (generic term)|herbaceous plant (generic term)
+joe bloggs|1
+(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner (generic term)|common man (generic term)|common person (generic term)
+joe blow|1
+(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner (generic term)|common man (generic term)|common person (generic term)
+joe clark|1
+(noun)|Clark|Joe Clark|Charles Joseph Clark|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+joe dimaggio|1
+(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer (generic term)|baseball player (generic term)
+joe louis|1
+(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter (generic term)|gladiator (generic term)
+joel|2
+(noun)|Joel|prophet (generic term)
+(noun)|Joel|Book of Joel|book (generic term)
+joewood|1
+(noun)|barbasco|Jacquinia keyensis|shrub (generic term)|bush (generic term)
+joffre|1
+(noun)|Joffre|Joseph Jacques Cesaire Joffre|field marshal (generic term)
+joffrey|1
+(noun)|Joffrey|Robert Joffrey|choreographer (generic term)
+jog|9
+(noun)|angular shape (generic term)|angularity (generic term)
+(noun)|trot|lope|locomotion (generic term)|travel (generic term)
+(noun)|nudge|push (generic term)|pushing (generic term)
+(verb)|ramble on|ramble|continue (generic term)|go on (generic term)|carry on (generic term)|proceed (generic term)
+(verb)|square up|even up|square (generic term)
+(verb)|run (generic term)
+(verb)|trot|clip|run (generic term)
+(verb)|nudge (generic term)|poke at (generic term)|prod (generic term)
+(verb)|provoke (generic term)|stimulate (generic term)
+jog trot|1
+(noun)|gait (generic term)
+jogger|1
+(noun)|runner (generic term)
+jogging|1
+(noun)|cardiopulmonary exercise (generic term)
+joggle|4
+(noun)|dowel|dowel pin|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|jiggle|shaking (generic term)
+(verb)|jiggle|wiggle|shake (generic term)|agitate (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+johan august strindberg|1
+(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist (generic term)|playwright (generic term)
+johan julius christian sibelius|1
+(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer (generic term)
+johan kepler|1
+(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+johann bernoulli|1
+(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician (generic term)
+johann christoph friedrich von schiller|1
+(noun)|Schiller|Johann Christoph Friedrich von Schiller|writer (generic term)|author (generic term)
+johann eck|1
+(noun)|Eck|Johann Eck|Johann Maier Eck|Johann Maier|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+johann friedrich herbart|1
+(noun)|Herbart|Johann Friedrich Herbart|philosopher (generic term)
+johann gottfried von herder|1
+(noun)|Herder|Johann Gottfried von Herder|philosopher (generic term)
+johann gutenberg|1
+(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer (generic term)|pressman (generic term)
+johann joachim winckelmann|1
+(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist (generic term)|archaeologist (generic term)|art historian (generic term)
+johann ludwig uhland|1
+(noun)|Uhland|Johann Ludwig Uhland|poet (generic term)
+johann maier|1
+(noun)|Eck|Johann Eck|Johann Maier Eck|Johann Maier|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+johann maier eck|1
+(noun)|Eck|Johann Eck|Johann Maier Eck|Johann Maier|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+johann mendel|1
+(noun)|Mendel|Gregor Mendel|Johann Mendel|monk (generic term)|monastic (generic term)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+johann muller|1
+(noun)|Muller|Johann Muller|Regiomontanus|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+johann sebastian bach|1
+(noun)|Bach|Johann Sebastian Bach|organist (generic term)|composer (generic term)
+johann strauss|2
+(noun)|Strauss|Johann Strauss|Strauss the Younger|composer (generic term)
+(noun)|Strauss|Johann Strauss|Strauss the Elder|composer (generic term)
+johann winckelmann|1
+(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist (generic term)|archaeologist (generic term)|art historian (generic term)
+johann wolfgang von goethe|1
+(noun)|Goethe|Johann Wolfgang von Goethe|poet (generic term)|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+johannes brahms|1
+(noun)|Brahms|Johannes Brahms|composer (generic term)
+johannes diderik van der waals|1
+(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist (generic term)
+johannes eckhart|1
+(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|mystic (generic term)|religious mystic (generic term)
+johannes evangelista purkinje|1
+(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist (generic term)
+johannes gutenberg|1
+(noun)|Gutenberg|Johann Gutenberg|Johannes Gutenberg|printer (generic term)|pressman (generic term)
+johannes kepler|1
+(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+johannes peter muller|1
+(noun)|Muller|Johannes Peter Muller|physiologist (generic term)|anatomist (generic term)
+johannes van der waals|1
+(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist (generic term)
+johannes vilhelm jensen|1
+(noun)|Jensen|Johannes Vilhelm Jensen|writer (generic term)|author (generic term)
+johannesburg|1
+(noun)|Johannesburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+john|5
+(noun)|toilet|lavatory|lav|can|privy|bathroom|room (generic term)
+(noun)|John|King John|John Lackland|King of England (generic term)|King of Great Britain (generic term)
+(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|whoremaster|whoremonger|trick|customer (generic term)|client (generic term)
+(noun)|John|Gospel According to John|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+john's cabbage|1
+(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+john adams|1
+(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+john addington symonds|1
+(noun)|Symonds|John Addington Symonds|writer (generic term)|author (generic term)
+john amos comenius|1
+(noun)|Comenius|John Amos Comenius|Jan Amos Komensky|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+john anthony ciardi|1
+(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet (generic term)|literary critic (generic term)
+john augustus roebling|1
+(noun)|Roebling|John Roebling|John Augustus Roebling|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+john bach mcmaster|1
+(noun)|McMaster|John Bach McMaster|historian (generic term)|historiographer (generic term)
+john bardeen|1
+(noun)|Bardeen|John Bardeen|physicist (generic term)
+john barleycorn|1
+(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+john barrington wain|1
+(noun)|Wain|John Wain|John Barrington Wain|writer (generic term)|author (generic term)
+john barrymore|1
+(noun)|Barrymore|John Barrymore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john barth|1
+(noun)|Barth|John Barth|John Simmons Barth|writer (generic term)|author (generic term)
+john bartlett|1
+(noun)|Bartlett|John Bartlett|publisher (generic term)
+john bernoulli|1
+(noun)|Bernoulli|Johann Bernoulli|Jean Bernoulli|John Bernoulli|mathematician (generic term)
+john berry hobbs|1
+(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer (generic term)
+john birks gillespie|1
+(noun)|Gillespie|Dizzy Gillespie|John Birks Gillespie|trumpeter (generic term)|cornetist (generic term)
+john broadus watson|1
+(noun)|Watson|John Broadus Watson|psychologist (generic term)
+john brown|1
+(noun)|Brown|John Brown|abolitionist (generic term)|emancipationist (generic term)
+john bull|1
+(noun)|limey|John Bull|Englishman (generic term)
+john bunyan|1
+(noun)|Bunyan|John Bunyan|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)|writer (generic term)|author (generic term)
+john burdon sanderson haldane|1
+(noun)|Haldane|J. B. S. Haldane|John Burdon Sanderson Haldane|geneticist (generic term)
+john burgoyne|1
+(noun)|Burgoyne|John Burgoyne|Gentleman Johnny|general (generic term)|full general (generic term)
+john c. fremont|1
+(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer (generic term)|adventurer (generic term)
+john cabot|1
+(noun)|Cabot|John Cabot|Giovanni Cabato|navigator (generic term)
+john cage|1
+(noun)|Cage|John Cage|John Milton Cage Jr.|composer (generic term)
+john calvin|1
+(noun)|Calvin|John Calvin|Jean Cauvin|Jean Caulvin|Jean Chauvin|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john cash|1
+(noun)|Cash|Johnny Cash|John Cash|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+john chapman|1
+(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer (generic term)
+john charles fremont|1
+(noun)|Fremont|John C. Fremont|John Charles Fremont|explorer (generic term)|adventurer (generic term)
+john cheever|1
+(noun)|Cheever|John Cheever|writer (generic term)|author (generic term)
+john chrysostom|1
+(noun)|John Chrysostom|St. John Chrysostom|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+john churchill|1
+(noun)|Churchill|John Churchill|Duke of Marlborough|First Duke of Marlborough|general (generic term)|full general (generic term)
+john ciardi|1
+(noun)|Ciardi|John Ciardi|John Anthony Ciardi|poet (generic term)|literary critic (generic term)
+john constable|1
+(noun)|Constable|John Constable|painter (generic term)
+john copley|1
+(noun)|Copley|John Copley|John Singleton Copley|painter (generic term)
+john cowper powys|1
+(noun)|Powys|John Cowper Powys|writer (generic term)|author (generic term)
+john d. rockefeller|1
+(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+john dalton|1
+(noun)|Dalton|John Dalton|chemist (generic term)|physicist (generic term)
+john davis|1
+(noun)|Davys|John Davys|Davis|John Davis|navigator (generic term)
+john davison rockefeller|1
+(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+john davys|1
+(noun)|Davys|John Davys|Davis|John Davis|navigator (generic term)
+john deere|1
+(noun)|Deere|John Deere|industrialist (generic term)
+john dewey|1
+(noun)|Dewey|John Dewey|philosopher (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+john doe|2
+(noun)|John Doe|Joe Blow|Joe Bloggs|man in the street|commoner (generic term)|common man (generic term)|common person (generic term)
+(noun)|John Doe|party (generic term)
+john donald budge|1
+(noun)|Budge|Don Budge|John Donald Budge|tennis player (generic term)
+john donne|1
+(noun)|Donne|John Donne|poet (generic term)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+john dory|1
+(noun)|John Dory|Zeus faber|dory (generic term)
+john dos passos|1
+(noun)|Dos Passos|John Dos Passos|John Roderigo Dos Passos|writer (generic term)|author (generic term)
+john dowland|1
+(noun)|Dowland|John Dowland|lutist (generic term)|lutanist (generic term)|lutenist (generic term)|composer (generic term)
+john drew|1
+(noun)|Drew|John Drew|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john dryden|1
+(noun)|Dryden|John Dryden|poet (generic term)|dramatist (generic term)|playwright (generic term)
+john duns scotus|1
+(noun)|Duns Scotus|John Duns Scotus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john eccles|1
+(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist (generic term)
+john edgar hoover|1
+(noun)|Hoover|J. Edgar Hoover|John Edgar Hoover|lawyer (generic term)|attorney (generic term)
+john edward masefield|1
+(noun)|Masefield|John Masefield|John Edward Masefield|poet (generic term)
+john endecott|1
+(noun)|Endecott|Endicott|John Endecott|John Endicott|settler (generic term)|colonist (generic term)
+john endicott|1
+(noun)|Endecott|Endicott|John Endecott|John Endicott|settler (generic term)|colonist (generic term)
+john ernst steinbeck|1
+(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer (generic term)|author (generic term)
+john fitzgerald kennedy|1
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+john fletcher|1
+(noun)|Fletcher|John Fletcher|dramatist (generic term)|playwright (generic term)
+john florio|1
+(noun)|Florio|John Florio|lexicographer (generic term)|lexicologist (generic term)
+john ford|1
+(noun)|Ford|John Ford|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+john foster dulles|1
+(noun)|Dulles|John Foster Dulles|diplomat (generic term)|diplomatist (generic term)
+john galbraith|1
+(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist (generic term)|economic expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+john galsworthy|1
+(noun)|Galsworthy|John Galsworthy|writer (generic term)|author (generic term)
+john glenn|1
+(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)|senator (generic term)
+john greenleaf whittier|1
+(noun)|Whittier|John Greenleaf Whittier|poet (generic term)
+john griffith chaney|1
+(noun)|London|Jack London|John Griffith Chaney|writer (generic term)|author (generic term)
+john haldane|1
+(noun)|Haldane|John Haldane|John Scott Haldane|physiologist (generic term)
+john hancock|2
+(noun)|Hancock|John Hancock|American Revolutionary leader (generic term)
+(noun)|autograph|John Hancock|signature (generic term)
+john hanning speke|1
+(noun)|Speke|John Speke|John Hanning Speke|explorer (generic term)|adventurer (generic term)
+john harvard|1
+(noun)|Harvard|John Harvard|philanthropist (generic term)|altruist (generic term)
+john hasbrouck van vleck|1
+(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist (generic term)
+john heming|1
+(noun)|Heming|Hemminge|John Heming|John Hemminge|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john hemminge|1
+(noun)|Heming|Hemminge|John Heming|John Hemminge|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john henry|1
+(noun)|John Henry|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+john henry newman|1
+(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john henry o'hara|1
+(noun)|O'Hara|John Henry O'Hara|writer (generic term)|author (generic term)
+john herschel|1
+(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+john herschel glenn jr.|1
+(noun)|Glenn|John Glenn|John Herschel Glenn Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)|senator (generic term)
+john hope franklin|1
+(noun)|Franklin|John Hope Franklin|historian (generic term)|historiographer (generic term)
+john howard northrop|1
+(noun)|Northrop|John Howard Northrop|biochemist (generic term)
+john hoyer updike|1
+(noun)|Updike|John Updike|John Hoyer Updike|writer (generic term)|author (generic term)
+john huss|1
+(noun)|Huss|John Huss|Hus|Jan Hus|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+john huston|1
+(noun)|Huston|John Huston|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+john irving|1
+(noun)|Irving|John Irving|writer (generic term)|author (generic term)
+john jacob astor|1
+(noun)|Astor|John Jacob Astor|capitalist (generic term)
+john james audubon|1
+(noun)|Audubon|John James Audubon|ornithologist (generic term)|bird watcher (generic term)|artist (generic term)|creative person (generic term)
+john james osborne|1
+(noun)|Osborne|John Osborne|John James Osborne|dramatist (generic term)|playwright (generic term)
+john james rickard macleod|1
+(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist (generic term)
+john jay|1
+(noun)|Jay|John Jay|diplomat (generic term)|diplomatist (generic term)|chief justice (generic term)
+john joseph mcgraw|1
+(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer (generic term)|baseball player (generic term)|coach (generic term)|manager (generic term)|handler (generic term)
+john joseph pershing|1
+(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general (generic term)|full general (generic term)
+john keats|1
+(noun)|Keats|John Keats|poet (generic term)
+john keble|1
+(noun)|Keble|John Keble|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+john kenneth galbraith|1
+(noun)|Galbraith|John Galbraith|John Kenneth Galbraith|economist (generic term)|economic expert (generic term)|diplomat (generic term)|diplomatist (generic term)
+john knox|1
+(noun)|Knox|John Knox|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|historian (generic term)|historiographer (generic term)
+john l. h. down|1
+(noun)|Down|John L. H. Down|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+john l. lewis|1
+(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader (generic term)
+john lackland|1
+(noun)|John|King John|John Lackland|King of England (generic term)|King of Great Britain (generic term)
+john le carre|1
+(noun)|le Carre|John le Carre|David John Moore Cornwell|writer (generic term)|author (generic term)
+john lennon|1
+(noun)|Lennon|John Lennon|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+john llewelly lewis|1
+(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader (generic term)
+john locke|1
+(noun)|Locke|John Locke|philosopher (generic term)
+john luther jones|1
+(noun)|Jones|Casey Jones|John Luther Jones|engineer (generic term)|locomotive engineer (generic term)|railroad engineer (generic term)|engine driver (generic term)
+john lyly|1
+(noun)|Lyly|John Lyly|writer (generic term)|author (generic term)
+john m. browning|1
+(noun)|Browning|John M. Browning|John Moses Browning|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+john macleod|1
+(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist (generic term)
+john major|1
+(noun)|Major|John Major|John R. Major|John Roy Major|statesman (generic term)|solon (generic term)|national leader (generic term)
+john marquand|1
+(noun)|Marquand|John Marquand|John Philip Marquand|writer (generic term)|author (generic term)
+john marshall|1
+(noun)|Marshall|John Marshall|jurist (generic term)|legal expert (generic term)|chief justice (generic term)
+john marstan|1
+(noun)|Marstan|John Marstan|dramatist (generic term)|playwright (generic term)
+john masefield|1
+(noun)|Masefield|John Masefield|John Edward Masefield|poet (generic term)
+john maynard keynes|1
+(noun)|Keynes|John Maynard Keynes|economist (generic term)|economic expert (generic term)
+john mccormick|1
+(noun)|McCormick|John McCormick|tenor (generic term)
+john mcgraw|1
+(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer (generic term)|baseball player (generic term)|coach (generic term)|manager (generic term)|handler (generic term)
+john mercer|1
+(noun)|Mercer|John Mercer|manufacturer (generic term)|producer (generic term)
+john merven carrere|1
+(noun)|Carrere|John Merven Carrere|architect (generic term)|designer (generic term)
+john mill|1
+(noun)|Mill|John Mill|John Stuart Mill|philosopher (generic term)|economist (generic term)|economic expert (generic term)
+john millington synge|1
+(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist (generic term)|playwright (generic term)|poet (generic term)
+john milton|1
+(noun)|Milton|John Milton|poet (generic term)
+john milton cage jr.|1
+(noun)|Cage|John Cage|John Milton Cage Jr.|composer (generic term)
+john mitchell|1
+(noun)|Mitchell|John Mitchell|labor leader (generic term)
+john moses browning|1
+(noun)|Browning|John M. Browning|John Moses Browning|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+john muir|1
+(noun)|Muir|John Muir|naturalist (generic term)|natural scientist (generic term)
+john napier|1
+(noun)|Napier|John Napier|mathematician (generic term)
+john of gaunt|1
+(noun)|John of Gaunt|Duke of Lancaster|duke (generic term)
+john orley allen tate|1
+(noun)|Tate|Allen Tate|John Orley Allen Tate|critic (generic term)|poet (generic term)
+john osborne|1
+(noun)|Osborne|John Osborne|John James Osborne|dramatist (generic term)|playwright (generic term)
+john paul i|1
+(noun)|John Paul I|Albino Luciano|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+john paul ii|1
+(noun)|John Paul II|Karol Wojtyla|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+john paul jones|1
+(noun)|Jones|John Paul Jones|naval commander (generic term)
+john philip marquand|1
+(noun)|Marquand|John Marquand|John Philip Marquand|writer (generic term)|author (generic term)
+john philip sousa|1
+(noun)|Sousa|John Philip Sousa|March King|bandmaster (generic term)|composer (generic term)
+john pierpont morgan|1
+(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier (generic term)|moneyman (generic term)
+john quincy adams|1
+(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+john r. major|1
+(noun)|Major|John Major|John R. Major|John Roy Major|statesman (generic term)|solon (generic term)|national leader (generic term)
+john reed|1
+(noun)|Reed|John Reed|journalist (generic term)|communist (generic term)|commie (generic term)
+john robinson jeffers|1
+(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet (generic term)
+john rock|1
+(noun)|Rock|John Rock|gynecologist (generic term)|gynaecologist (generic term)|woman's doctor (generic term)
+john roderigo dos passos|1
+(noun)|Dos Passos|John Dos Passos|John Roderigo Dos Passos|writer (generic term)|author (generic term)
+john roebling|1
+(noun)|Roebling|John Roebling|John Augustus Roebling|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+john ronald reuel tolkien|1
+(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist (generic term)|philologue (generic term)|writer (generic term)|author (generic term)
+john ross|1
+(noun)|Ross|John Ross|Sir John Ross|explorer (generic term)|adventurer (generic term)
+john rowlands|1
+(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist (generic term)|explorer (generic term)|adventurer (generic term)
+john roy major|1
+(noun)|Major|John Major|John R. Major|John Roy Major|statesman (generic term)|solon (generic term)|national leader (generic term)
+john rupert firth|1
+(noun)|Firth|J. R. Firth|John Rupert Firth|linguist (generic term)|linguistic scientist (generic term)
+john ruskin|1
+(noun)|Ruskin|John Ruskin|art critic (generic term)
+john rutledge|1
+(noun)|Rutledge|John Rutledge|chief justice (generic term)
+john scopes|1
+(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher (generic term)|school teacher (generic term)
+john scott haldane|1
+(noun)|Haldane|John Haldane|John Scott Haldane|physiologist (generic term)
+john simmons barth|1
+(noun)|Barth|John Barth|John Simmons Barth|writer (generic term)|author (generic term)
+john singer sargent|1
+(noun)|Sargent|John Singer Sargent|painter (generic term)
+john singleton copley|1
+(noun)|Copley|John Copley|John Singleton Copley|painter (generic term)
+john smith|1
+(noun)|Smith|John Smith|Captain John Smith|explorer (generic term)|adventurer (generic term)
+john speke|1
+(noun)|Speke|John Speke|John Hanning Speke|explorer (generic term)|adventurer (generic term)
+john steinbeck|1
+(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer (generic term)|author (generic term)
+john stuart mill|1
+(noun)|Mill|John Mill|John Stuart Mill|philosopher (generic term)|economist (generic term)|economic expert (generic term)
+john the baptist|1
+(noun)|John the Baptist|St. John the Baptist|hermit (generic term)|recluse (generic term)|solitary (generic term)|solitudinarian (generic term)|troglodyte (generic term)|saint (generic term)
+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 (generic term)|Evangelist (generic term)|saint (generic term)
+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 (generic term)|Evangelist (generic term)|saint (generic term)
+john thomas scopes|1
+(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher (generic term)|school teacher (generic term)
+john tradescant|1
+(noun)|Tradescant|John Tradescant|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+john trumbull|2
+(noun)|Trumbull|John Trumbull|painter (generic term)
+(noun)|Trumbull|John Trumbull|poet (generic term)
+john tuzo wilson|1
+(noun)|Wilson|John Tuzo Wilson|geophysicist (generic term)
+john tyler|1
+(noun)|Tyler|John Tyler|President Tyler|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+john tyndall|1
+(noun)|Tyndall|John Tyndall|physicist (generic term)
+john uhler|1
+(noun)|Lemmon|Jack Lemmon|John Uhler|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john updike|1
+(noun)|Updike|John Updike|John Hoyer Updike|writer (generic term)|author (generic term)
+john van vleck|1
+(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist (generic term)
+john vanbrugh|1
+(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect (generic term)|designer (generic term)
+john venn|1
+(noun)|Venn|John Venn|logician (generic term)|logistician (generic term)
+john von neumann|1
+(noun)|von Neumann|Neumann|John von Neumann|mathematician (generic term)
+john wain|1
+(noun)|Wain|John Wain|John Barrington Wain|writer (generic term)|author (generic term)
+john walker|1
+(noun)|Walker|John Walker|four-minute man (generic term)
+john wanamaker|1
+(noun)|Wanamaker|John Wanamaker|businessman (generic term)|man of affairs (generic term)
+john wayne|1
+(noun)|Wayne|John Wayne|Duke Wayne|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+john webster|1
+(noun)|Webster|John Webster|dramatist (generic term)|playwright (generic term)
+john wesley|1
+(noun)|Wesley|John Wesley|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+john wickliffe|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john wiclif|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john wilkes|1
+(noun)|Wilkes|John Wilkes|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+john wilkes booth|1
+(noun)|Booth|John Wilkes Booth|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|assassin (generic term)|assassinator (generic term)|bravo (generic term)
+john william strutt|1
+(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist (generic term)
+john witherspoon|1
+(noun)|Witherspoon|John Witherspoon|American Revolutionary leader (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+john wyclif|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john wycliffe|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+john xxiii|1
+(noun)|John XXIII|Angelo Guiseppe Roncalli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+johnny|1
+(noun)|Rebel|Reb|Johnny Reb|Johnny|greyback|Confederate soldier (generic term)
+johnny-jump-up|2
+(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola (generic term)
+(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet (generic term)
+johnny appleseed|1
+(noun)|Chapman|John Chapman|Johnny Appleseed|pioneer (generic term)
+johnny cake|1
+(noun)|johnnycake|journey cake|cornbread (generic term)
+johnny cash|1
+(noun)|Cash|Johnny Cash|John Cash|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+johnny reb|1
+(noun)|Rebel|Reb|Johnny Reb|Johnny|greyback|Confederate soldier (generic term)
+johnnycake|1
+(noun)|johnny cake|journey cake|cornbread (generic term)
+johns|1
+(noun)|Johns|Jasper Johns|artist (generic term)|creative person (generic term)
+johns hopkins|2
+(noun)|Hopkins|Johns Hopkins|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+(noun)|Johns Hopkins|university (generic term)
+johnson|3
+(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer (generic term)|author (generic term)|lexicographer (generic term)|lexicologist (generic term)
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+johnson city|1
+(noun)|Johnson City|town (generic term)
+johnson grass|1
+(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+johnston|1
+(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general (generic term)|full general (generic term)
+joie de vivre|1
+(noun)|enjoyment (generic term)
+join|6
+(noun)|articulation|joint|juncture|junction|connection (generic term)|connexion (generic term)|link (generic term)
+(noun)|union|sum|set (generic term)
+(verb)|fall in|get together
+(verb)|bring together|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|disjoin (antonym)
+(verb)|conjoin|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)|disjoin (antonym)
+(verb)|connect|link|link up|unite
+join battle|1
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+join forces|1
+(verb)|collaborate|cooperate|get together|work (generic term)
+joined|2
+(adj)|united|married (similar term)
+(adj)|coupled|linked|connected (similar term)
+joiner|2
+(noun)|member (generic term)
+(noun)|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+joinery|2
+(noun)|woodwork (generic term)
+(noun)|cabinetmaking|carpentry (generic term)|woodworking (generic term)|woodwork (generic term)
+joining|1
+(noun)|connection|connexion|change of integrity (generic term)
+joint|13
+(adj)|associated (similar term)|clannish (similar term)|combined (similar term)|concerted (similar term)|conjunct (similar term)|conjunctive (similar term)|cooperative (similar term)|united (similar term)|conjoined (similar term)|conjoint (similar term)|corporate (similar term)|collective (similar term)|cosignatory (similar term)|sharing (similar term)|collective (related term)|common (related term)|integrated (related term)|shared (related term)|united (related term)|separate (antonym)
+(adj)|shared (similar term)
+(adj)|multilateral (similar term)|many-sided (similar term)
+(noun)|articulation|articulatio|body part (generic term)
+(noun)|spot (generic term)
+(noun)|articulation|join|juncture|junction|connection (generic term)|connexion (generic term)|link (generic term)
+(noun)|roast|cut (generic term)|cut of meat (generic term)
+(noun)|junction (generic term)|conjunction (generic term)
+(noun)|marijuana cigarette|reefer|stick|spliff|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+(verb)|fit (generic term)|go (generic term)
+(verb)|articulate|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+joint-stock company|1
+(noun)|company (generic term)
+joint author|1
+(noun)|coauthor|writer (generic term)|author (generic term)
+joint chiefs|1
+(noun)|Joint Chiefs of Staff|Joint Chiefs|executive agency (generic term)
+joint chiefs of staff|1
+(noun)|Joint Chiefs of Staff|Joint Chiefs|executive agency (generic term)
+joint direct attack munition|1
+(noun)|Joint Direct Attack Munition|JDAM|guidance system (generic term)|guidance device (generic term)
+joint fir|1
+(noun)|ephedra|shrub (generic term)|bush (generic term)
+joint hinge|1
+(noun)|strap hinge|hinge (generic term)|flexible joint (generic term)
+joint probability|1
+(noun)|probability (generic term)|chance (generic term)
+joint resolution|1
+(noun)|resolution (generic term)|declaration (generic term)|resolve (generic term)
+joint return|1
+(noun)|tax return (generic term)|income tax return (generic term)|return (generic term)
+joint snake|1
+(noun)|glass lizard|glass snake|anguid lizard (generic term)
+joint venture|1
+(noun)|venture (generic term)
+jointed|1
+(adj)|articulated (similar term)|articulate (similar term)
+jointed charlock|1
+(noun)|wild radish|wild rape|runch|Raphanus raphanistrum|weed (generic term)
+jointed rush|1
+(noun)|Juncus articulatus|rush (generic term)
+jointer|1
+(noun)|jointer plane|jointing plane|long plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+jointer plane|1
+(noun)|jointer|jointing plane|long plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+jointing plane|1
+(noun)|jointer|jointer plane|long plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+jointly|1
+(adv)|collectively|conjointly|together|put together
+jointure|2
+(noun)|legal jointure|estate (generic term)
+(noun)|union|unification|uniting|conjugation|combination (generic term)|combining (generic term)|compounding (generic term)|disunion (antonym)
+jointworm|1
+(noun)|strawworm|larva (generic term)
+joist|1
+(noun)|beam (generic term)
+joke|6
+(noun)|gag|laugh|jest|jape|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|jest|jocularity|diversion (generic term)|recreation (generic term)
+(noun)|antic|prank|trick|caper|put-on|diversion (generic term)|recreation (generic term)
+(noun)|pettiness (generic term)|triviality (generic term)|slightness (generic term)|puniness (generic term)
+(verb)|jest|communicate (generic term)|intercommunicate (generic term)|jest at (related term)
+(verb)|jest|act (generic term)|behave (generic term)|do (generic term)
+joker|4
+(noun)|jokester|comedian (generic term)|comic (generic term)
+(noun)|turkey|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|article (generic term)|clause (generic term)
+(noun)|playing card (generic term)
+jokester|1
+(noun)|joker|comedian (generic term)|comic (generic term)
+joking|1
+(adj)|jesting|jocose|jocular|humorous (similar term)|humourous (similar term)
+jokingly|2
+(adv)|jestingly
+(adv)|facetiously|tongue-in-cheek
+joliet|1
+(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer (generic term)|adventurer (generic term)
+joliot|1
+(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist (generic term)
+joliot-curie|2
+(noun)|Joliot-Curie|Irene Joliot-Curie|physicist (generic term)
+(noun)|Joliot|Jean-Frederic Joliot|Joliot-Curie|Jean-Frederic Joliot-Curie|physicist (generic term)
+jolliet|1
+(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer (generic term)|adventurer (generic term)
+jollification|1
+(noun)|merrymaking|conviviality|celebration (generic term)|festivity (generic term)
+jollify|1
+(verb)|revel|racket|make whoopie|make merry|make happy|whoop it up|wassail|celebrate (generic term)|fete (generic term)
+jolliness|1
+(noun)|jollity|joviality|good humor (generic term)|good humour (generic term)|good temper (generic term)|amiability (generic term)|gaiety (generic term)|merriment (generic term)
+jollity|1
+(noun)|jolliness|joviality|good humor (generic term)|good humour (generic term)|good temper (generic term)|amiability (generic term)|gaiety (generic term)|merriment (generic term)
+jolly|5
+(adj)|gay|jocund|jovial|merry|mirthful|joyous (similar term)
+(noun)|party (generic term)
+(noun)|jolly boat|yawl (generic term)
+(verb)|kid|chaff|josh|banter|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+(adv)|pretty
+jolly along|1
+(verb)|cheer|cheer up|jolly up
+jolly boat|1
+(noun)|jolly|yawl (generic term)
+jolly roger|1
+(noun)|black flag|pirate flag|Jolly Roger|blackjack|flag (generic term)
+jolly up|1
+(verb)|cheer|cheer up|jolly along
+jolson|1
+(noun)|Jolson|Al Jolson|Asa Yoelson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+jolt|4
+(noun)|jar|jounce|blow (generic term)|bump (generic term)
+(noun)|jerk|jerking|saccade|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|jar|move (generic term)
+(verb)|disturb (generic term)|upset (generic term)|trouble (generic term)
+jolted|2
+(adj)|agitated (similar term)
+(adj)|shaken|agitated (similar term)
+jolting|1
+(adj)|rough|rocky|bumpy|jolty|jumpy|smooth (antonym)
+jolty|1
+(adj)|rough|rocky|bumpy|jolting|jumpy|smooth (antonym)
+jomada i|1
+(noun)|Jumada I|Jomada I|Islamic calendar month (generic term)
+jomada ii|1
+(noun)|Jumada II|Jomada II|Islamic calendar month (generic term)
+jomo kenyata|1
+(noun)|Kenyata|Jomo Kenyata|statesman (generic term)|solon (generic term)|national leader (generic term)
+jonah|3
+(noun)|Jonah|prophet (generic term)
+(noun)|jinx|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|Jonah|Book of Jonah|book (generic term)
+jonah crab|1
+(noun)|Jonah crab|Cancer borealis|crab (generic term)
+jonas edward salk|1
+(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist (generic term)
+jonas salk|1
+(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist (generic term)
+jonathan|1
+(noun)|Jonathan|eating apple (generic term)|dessert apple (generic term)
+jonathan edwards|1
+(noun)|Edwards|Jonathan Edwards|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+jonathan swift|1
+(noun)|Swift|Jonathan Swift|Dean Swift|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+jonathan trumbull|1
+(noun)|Trumbull|Jonathan Trumbull|American Revolutionary leader (generic term)
+jones|6
+(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader (generic term)
+(noun)|Jones|Casey Jones|John Luther Jones|engineer (generic term)|locomotive engineer (generic term)|railroad engineer (generic term)|engine driver (generic term)
+(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|Jones|John Paul Jones|naval commander (generic term)
+(noun)|Jones|Inigo Jones|architect (generic term)|designer (generic term)
+(noun)|Jones|Daniel Jones|phonetician (generic term)
+jones' penstemon|1
+(noun)|Jones' penstemon|Penstemon dolius|wildflower (generic term)|wild flower (generic term)
+jonesboro|1
+(noun)|Jonesboro|town (generic term)
+jong|1
+(noun)|Jong|Erica Jong|writer (generic term)|author (generic term)
+jongleur|1
+(noun)|folk singer|minstrel|poet-singer|troubadour|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+jonquil|2
+(noun)|Narcissus jonquilla|narcissus (generic term)
+(noun)|daffodil (generic term)|Narcissus pseudonarcissus (generic term)
+jons jakob berzelius|1
+(noun)|Berzelius|Jons Jakob Berzelius|chemist (generic term)
+jonson|1
+(noun)|Jonson|Ben Jonson|Benjamin Jonson|dramatist (generic term)|playwright (generic term)|poet (generic term)
+jook|2
+(noun)|congee|gruel (generic term)
+(noun)|juke|juke joint|jook joint|juke house|jook house|joint (generic term)
+jook house|1
+(noun)|juke|jook|juke joint|jook joint|juke house|joint (generic term)
+jook joint|1
+(noun)|juke|jook|juke joint|juke house|jook house|joint (generic term)
+joplin|2
+(noun)|Joplin|Janis Joplin|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Joplin|Scott Joplin|composer (generic term)
+joppa|1
+(noun)|Jaffa|Joppa|Yafo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+jordan|2
+(noun)|Jordan|Jordan River|river (generic term)
+(noun)|Jordan|Hashemite Kingdom of Jordan|Asian country (generic term)|Asian nation (generic term)
+jordan almond|2
+(noun)|almond (generic term)|sweet almond (generic term)|Prunus dulcis (generic term)|Prunus amygdalus (generic term)|Amygdalus communis (generic term)
+(noun)|Jordan almond|almond (generic term)
+jordan curve|1
+(noun)|simple closed curve|Jordan curve|closed curve (generic term)
+jordan river|1
+(noun)|Jordan|Jordan River|river (generic term)
+jordanella|1
+(noun)|Jordanella|genus Jordanella|fish genus (generic term)
+jordanella floridae|1
+(noun)|flagfish|American flagfish|Jordanella floridae|killifish (generic term)
+jordanian|2
+(adj)|Jordanian|Asian country|Asian nation (related term)
+(noun)|Jordanian|Asian (generic term)|Asiatic (generic term)
+jordanian dinar|1
+(noun)|Jordanian dinar|dinar|Jordanian monetary unit (generic term)
+jordanian monetary unit|1
+(noun)|Jordanian monetary unit|monetary unit (generic term)
+jorge borges|1
+(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer (generic term)|author (generic term)
+jorge luis borges|1
+(noun)|Borges|Jorge Borges|Jorge Luis Borges|writer (generic term)|author (generic term)
+jorge mario pedro vargas llosa|1
+(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer (generic term)|author (generic term)
+joroslav heyrovsky|1
+(noun)|Heyrovsky|Joroslav Heyrovsky|chemist (generic term)
+jorum|1
+(noun)|bowl (generic term)
+jose clemente orozco|1
+(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist (generic term)
+jose julian marti|1
+(noun)|Marti|Jose Julian Marti|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|poet (generic term)
+jose orozco|1
+(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist (generic term)
+jose ortega y gasset|1
+(noun)|Ortega y Gasset|Jose Ortega y Gasset|philosopher (generic term)
+josef albers|1
+(noun)|Albers|Josef Albers|abstractionist (generic term)|abstract artist (generic term)
+josef hoffmann|1
+(noun)|Hoffmann|Josef Hoffmann|architect (generic term)|designer (generic term)
+josef michel montgolfier|1
+(noun)|Montgolfier|Josef Michel Montgolfier|balloonist (generic term)
+josef von sternberg|1
+(noun)|von Sternberg|Josef von Sternberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+joseph|3
+(noun)|Joseph|Chief Joseph|Indian chief (generic term)|Indian chieftain (generic term)|Nez Perce (generic term)
+(noun)|Joseph|patriarch (generic term)
+(noun)|Joseph|carpenter (generic term)
+joseph's coat|1
+(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus (generic term)|flame nettle (generic term)
+joseph alois schumpeter|1
+(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist (generic term)|economic expert (generic term)
+joseph banks rhine|1
+(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist (generic term)
+joseph ben matthias|1
+(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general (generic term)|full general (generic term)|historian (generic term)|historiographer (generic term)|Pharisee (generic term)
+joseph black|1
+(noun)|Black|Joseph Black|chemist (generic term)
+joseph campbell|1
+(noun)|Campbell|Joseph Campbell|mythologist (generic term)
+joseph conrad|1
+(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer (generic term)|author (generic term)
+joseph deems taylor|1
+(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer (generic term)|music critic (generic term)
+joseph eggleston johnston|1
+(noun)|Johnston|J. E. Johnston|Joseph Eggleston Johnston|general (generic term)|full general (generic term)
+joseph emerson worcester|1
+(noun)|Worcester|Joseph Emerson Worcester|lexicographer (generic term)|lexicologist (generic term)
+joseph francis keaton|1
+(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian (generic term)|comic (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+joseph goebbels|1
+(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi (generic term)|German Nazi (generic term)|propagandist (generic term)
+joseph greenberg|1
+(noun)|Greenberg|Joseph Greenberg|linguist (generic term)|polyglot (generic term)
+joseph haydn|1
+(noun)|Haydn|Joseph Haydn|Franz Joseph Haydn|composer (generic term)
+joseph heller|1
+(noun)|Heller|Joseph Heller|writer (generic term)|author (generic term)
+joseph henry|1
+(noun)|Henry|Joseph Henry|physicist (generic term)
+joseph hilaire peter belloc|1
+(noun)|Belloc|Hilaire Belloc|Joseph Hilaire Peter Belloc|writer (generic term)|author (generic term)
+joseph hooker|1
+(noun)|Hooker|Joseph Hooker|Fighting Joe Hooker|general (generic term)|full general (generic term)
+joseph jacques cesaire joffre|1
+(noun)|Joffre|Joseph Jacques Cesaire Joffre|field marshal (generic term)
+joseph joachim|1
+(noun)|Joachim|Joseph Joachim|violinist (generic term)|fiddler (generic term)|composer (generic term)
+joseph john thomson|1
+(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist (generic term)
+joseph lincoln steffens|1
+(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist (generic term)
+joseph lister|1
+(noun)|Lister|Joseph Lister|Baron Lister|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+joseph louis barrow|1
+(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter (generic term)|gladiator (generic term)
+joseph louis gay-lussac|1
+(noun)|Gay-Lussac|Joseph Louis Gay-Lussac|chemist (generic term)|physicist (generic term)
+joseph m. jacquard|1
+(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+joseph mallord william turner|1
+(noun)|Turner|Joseph Mallord William Turner|painter (generic term)
+joseph marie jacquard|1
+(noun)|Jacquard|Joseph M. Jacquard|Joseph Marie Jacquard|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+joseph mccarthy|1
+(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+joseph oliver|1
+(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician (generic term)|jazzman (generic term)
+joseph paul dimaggio|1
+(noun)|DiMaggio|Joe DiMaggio|Joseph Paul DiMaggio|ballplayer (generic term)|baseball player (generic term)
+joseph paxton|1
+(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect (generic term)|designer (generic term)
+joseph priestley|1
+(noun)|Priestley|Joseph Priestley|chemist (generic term)
+joseph pulitzer|1
+(noun)|Pulitzer|Joseph Pulitzer|publisher (generic term)|newspaper publisher (generic term)
+joseph raymond mccarthy|1
+(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+joseph rudyard kipling|1
+(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer (generic term)|author (generic term)
+joseph schumpeter|1
+(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist (generic term)|economic expert (generic term)
+joseph smith|1
+(noun)|Smith|Joseph Smith|Latter-Day Saint (generic term)|Mormon (generic term)
+joseph stalin|1
+(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist (generic term)|commie (generic term)
+joseph warren stilwell|1
+(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general (generic term)|full general (generic term)
+josephus|1
+(noun)|Josephus|Flavius Josephus|Joseph ben Matthias|general (generic term)|full general (generic term)|historian (generic term)|historiographer (generic term)|Pharisee (generic term)
+josh|1
+(verb)|kid|chaff|jolly|banter|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+josh billings|1
+(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist (generic term)|humourist (generic term)
+joshua|2
+(noun)|Joshua|religious leader (generic term)
+(noun)|Joshua|Josue|Book of Joshua|book (generic term)
+joshua tree|1
+(noun)|Joshua tree|Yucca brevifolia|yucca (generic term)
+josiah quincy|1
+(noun)|Quincy|Josiah Quincy|American Revolutionary leader (generic term)
+josiah spode|1
+(noun)|Spode|Josiah Spode|potter (generic term)|thrower (generic term)|ceramicist (generic term)|ceramist (generic term)
+josiah wedgwood|1
+(noun)|Wedgwood|Josiah Wedgwood|potter (generic term)|thrower (generic term)|ceramicist (generic term)|ceramist (generic term)
+josiah willard gibbs|1
+(noun)|Gibbs|Josiah Willard Gibbs|chemist (generic term)
+josip broz|1
+(noun)|Tito|Marshal Tito|Josip Broz|statesman (generic term)|solon (generic term)|national leader (generic term)
+joss|1
+(noun)|idol (generic term)|graven image (generic term)|god (generic term)
+joss house|1
+(noun)|temple (generic term)
+joss stick|1
+(noun)|incense (generic term)
+jostle|3
+(noun)|jostling|shove (generic term)
+(verb)|make (generic term)|work (generic term)
+(verb)|shove|push (generic term)|force (generic term)
+jostling|1
+(noun)|jostle|shove (generic term)
+josue|1
+(noun)|Joshua|Josue|Book of Joshua|book (generic term)
+jot|3
+(noun)|jotting|note (generic term)
+(noun)|touch|hint|tinge|mite|pinch|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(verb)|jot down|write (generic term)
+jot down|1
+(verb)|jot|write (generic term)
+jotter|1
+(noun)|notebook (generic term)
+jotting|1
+(noun)|jot|note (generic term)
+jotun|1
+(noun)|Jotun|Jotunn|giant (generic term)
+jotunn|1
+(noun)|Jotun|Jotunn|giant (generic term)
+joule|2
+(noun)|J|watt second|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+(noun)|Joule|James Prescott Joule|physicist (generic term)
+jounce|2
+(noun)|jolt|jar|blow (generic term)|bump (generic term)
+(verb)|bounce|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+journal|5
+(noun)|diary|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|periodical (generic term)
+(noun)|daybook|ledger (generic term)|leger (generic term)|account book (generic term)|book of account (generic term)|book (generic term)
+(noun)|book (generic term)|volume (generic term)
+(noun)|axle (generic term)
+journal bearing|1
+(noun)|bearing (generic term)
+journal box|1
+(noun)|housing (generic term)
+journalese|1
+(noun)|expressive style (generic term)|style (generic term)
+journalism|2
+(noun)|news media|fourth estate|print media (generic term)
+(noun)|profession (generic term)
+journalist|2
+(noun)|writer (generic term)|author (generic term)
+(noun)|diarist|diary keeper|writer (generic term)
+journalist's privilege|1
+(noun)|privilege (generic term)
+journalistic|1
+(adj)|print media (related term)
+journey|3
+(noun)|journeying|travel (generic term)|traveling (generic term)|travelling (generic term)
+(verb)|travel|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|travel|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+journey cake|1
+(noun)|johnnycake|johnny cake|cornbread (generic term)
+journeyer|1
+(noun)|wayfarer|traveler (generic term)|traveller (generic term)
+journeying|1
+(noun)|journey|travel (generic term)|traveling (generic term)|travelling (generic term)
+journeyman|1
+(noun)|craftsman|artisan|artificer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+joust|2
+(noun)|tilt|struggle (generic term)|battle (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+jove|1
+(noun)|Jupiter|Jove|Roman deity (generic term)
+jovial|1
+(adj)|gay|jocund|jolly|merry|mirthful|joyous (similar term)
+joviality|2
+(noun)|jollity|jolliness|good humor (generic term)|good humour (generic term)|good temper (generic term)|amiability (generic term)|gaiety (generic term)|merriment (generic term)
+(noun)|conviviality|sociability (generic term)|sociableness (generic term)
+jovian|2
+(adj)|Jovian|Jovian planet|gas giant|superior planet|outer planet (related term)
+(adj)|Jovian|Roman deity (related term)
+jovian planet|1
+(noun)|Jovian planet|gas giant|planet (generic term)|major planet (generic term)
+jowett|1
+(noun)|Jowett|Benjamin Jowett|classicist (generic term)|classical scholar (generic term)|interpreter (generic term)|translator (generic term)
+jowl|2
+(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jaw (generic term)|articulator (generic term)
+(noun)|feature (generic term)|lineament (generic term)
+jowly|1
+(adj)|double-chinned|loose-jowled|fat (similar term)
+joy|4
+(noun)|joyousness|joyfulness|emotion (generic term)|sorrow (antonym)
+(noun)|delight|pleasure|positive stimulus (generic term)
+(verb)|rejoice|feel (generic term)|experience (generic term)
+(verb)|gladden|sadden (antonym)
+joyce|1
+(noun)|Joyce|James Joyce|James Augustine Aloysius Joyce|writer (generic term)|author (generic term)
+joyce carol oates|1
+(noun)|Oates|Joyce Carol Oates|writer (generic term)|author (generic term)
+joyful|2
+(adj)|beatific (similar term)|overjoyed (similar term)|happy (related term)|joyous (related term)|sorrowful (antonym)
+(adj)|elated|gleeful|jubilant|joyous (similar term)
+joyfully|1
+(adv)|gleefully|joyously|joylessly (antonym)
+joyfulness|1
+(noun)|joy|joyousness|emotion (generic term)|sorrow (antonym)
+joyless|1
+(adj)|funereal (similar term)|sepulchral (similar term)|mirthless (similar term)|unamused (similar term)|unsmiling (similar term)|cheerless (related term)|uncheerful (related term)|sorrowful (related term)|unhappy (related term)|joyous (antonym)
+joylessly|1
+(adv)|joyfully (antonym)
+joylessness|1
+(noun)|cheerlessness (generic term)|uncheerfulness (generic term)
+joyous|1
+(adj)|ecstatic (similar term)|enraptured (similar term)|rapturous (similar term)|rapt (similar term)|rhapsodic (similar term)|elated (similar term)|gleeful (similar term)|joyful (similar term)|jubilant (similar term)|gay (similar term)|festal (similar term)|festive (similar term)|merry (similar term)|gay (similar term)|jocund (similar term)|jolly (similar term)|jovial (similar term)|merry (similar term)|mirthful (similar term)|elated (related term)|happy (related term)|joyful (related term)|joyless (antonym)
+joyously|1
+(adv)|gleefully|joyfully|joylessly (antonym)
+joyousness|1
+(noun)|joy|joyfulness|emotion (generic term)|sorrow (antonym)
+joyride|2
+(noun)|drive (generic term)|ride (generic term)
+(verb)|tool|tool around|ride (generic term)
+joystick|2
+(noun)|stick|control stick|lever (generic term)
+(noun)|control (generic term)|controller (generic term)|data input device (generic term)|input device (generic term)
+jr|1
+(noun)|Junior|Jr|Jnr|son (generic term)|boy (generic term)
+jr.|1
+(adj)|younger|junior (similar term)
+jra|1
+(noun)|Japanese Red Army|JRA|Anti-Imperialist International Brigade|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+juan carlos|1
+(noun)|Juan Carlos|Juan Carlos Victor Maria de Borbon y Borbon|king (generic term)|male monarch (generic term)|Rex (generic term)
+juan carlos victor maria de borbon y borbon|1
+(noun)|Juan Carlos|Juan Carlos Victor Maria de Borbon y Borbon|king (generic term)|male monarch (generic term)|Rex (generic term)
+juan domingo peron|1
+(noun)|Peron|Juan Domingo Peron|soldier (generic term)
+juan ponce de leon|1
+(noun)|Ponce de Leon|Juan Ponce de Leon|navigator (generic term)
+juan ramon jimenez|1
+(noun)|Jimenez|Juan Ramon Jimenez|poet (generic term)
+juarez|1
+(noun)|Ciudad Juarez|Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)
+jubbulpore|1
+(noun)|Jabalpur|Jubbulpore|city (generic term)|metropolis (generic term)|urban center (generic term)
+jubilance|1
+(noun)|exultation|jubilancy|jubilation|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+jubilancy|1
+(noun)|exultation|jubilance|jubilation|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+jubilant|2
+(adj)|exultant|exulting|prideful|rejoicing|triumphal|triumphant|elated (similar term)
+(adj)|elated|gleeful|joyful|joyous (similar term)
+jubilantly|1
+(adv)|happily|merrily|mirthfully|gayly|blithely|with happiness|unhappily (antonym)
+jubilate|2
+(verb)|celebrate (generic term)|fete (generic term)
+(verb)|exuberate|exult|rejoice|triumph|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+jubilation|3
+(noun)|exultation|jubilance|jubilancy|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+(noun)|celebration|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+(noun)|exultation|rejoicing|utterance (generic term)|vocalization (generic term)
+jubilee|1
+(noun)|anniversary (generic term)|day of remembrance (generic term)
+juda|1
+(noun)|Judah|Juda|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+judaea|1
+(noun)|Judea|Judaea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+judah|2
+(noun)|Judah|patriarch (generic term)
+(noun)|Judah|Juda|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+judaic|2
+(adj)|Judaic|Judaical|monotheism (related term)
+(adj)|Jewish|Judaic|person|individual|someone|somebody|mortal|soul (related term)
+judaica|1
+(noun)|Judaica|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+judaical|1
+(adj)|Judaic|Judaical|monotheism (related term)
+judaism|2
+(noun)|Judaism|Hebraism|Jewish religion|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Judaism|monotheism (generic term)
+judas|4
+(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle (generic term)|saint (generic term)
+(noun)|Judas|Judas Iscariot|Apostle (generic term)
+(noun)|Judas|double-crosser (generic term)|double-dealer (generic term)|two-timer (generic term)|betrayer (generic term)|traitor (generic term)
+(noun)|peephole (generic term)|spyhole (generic term)|eyehole (generic term)
+judas iscariot|1
+(noun)|Judas|Judas Iscariot|Apostle (generic term)
+judas maccabaeus|1
+(noun)|Judas Maccabaeus|leader (generic term)
+judas tree|1
+(noun)|Judas tree|love tree|Circis siliquastrum|angiospermous tree (generic term)|flowering tree (generic term)
+judder|1
+(verb)|shake|vibrate (generic term)
+jude|2
+(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle (generic term)|saint (generic term)
+(noun)|Epistle of Jude|Jude|Epistle (generic term)
+judea|1
+(noun)|Judea|Judaea|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+judeo-christian|1
+(adj)|Judeo-Christian|monotheism (related term)|religion|faith|religious belief (related term)
+judeo-spanish|1
+(noun)|Judeo-Spanish|Ladino|Spanish (generic term)
+judge|7
+(noun)|justice|jurist|magistrate|official (generic term)|functionary (generic term)|adjudicator (generic term)
+(noun)|evaluator|authority (generic term)
+(verb)|decide (generic term)|settle (generic term)|resolve (generic term)|adjudicate (generic term)
+(verb)|evaluate|pass judgment|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|estimate|gauge|approximate|guess|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|overestimate (related term)|underestimate (related term)
+(verb)|pronounce|label|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|adjudicate|try|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+judge's robe|1
+(noun)|academic gown|academic robe|gown (generic term)|robe (generic term)
+judge advocate|2
+(noun)|commissioned officer (generic term)
+(noun)|staff officer (generic term)
+judge advocate general|1
+(noun)|commissioned officer (generic term)
+judgement|7
+(noun)|opinion|legal opinion|judgment|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|judgment|mind|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|judgment|judging|decision making (generic term)|deciding (generic term)
+(noun)|sagacity|sagaciousness|judgment|discernment|wisdom (generic term)|sapience (generic term)
+(noun)|judgment|sound judgment|sound judgement|perspicacity|trait (generic term)
+(noun)|judgment|judicial decision|due process (generic term)|due process of law (generic term)
+(noun)|judgment|assessment|act (generic term)|human action (generic term)|human activity (generic term)
+judgement by default|1
+(noun)|default judgment|default judgement|judgment by default|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+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 (generic term)
+judgement in personam|1
+(noun)|judgment in personam|personal judgment|personal judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in rem (antonym)
+judgement in rem|1
+(noun)|judgment in rem|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in personam (antonym)
+judgement of dismissal|1
+(noun)|judgment of dismissal|dismissal|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judgement on the merits|1
+(noun)|judgment on the merits|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judgement on the pleadings|1
+(noun)|summary judgment|summary judgement|judgment on the pleadings|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judges|1
+(noun)|Judges|Book of Judges|book (generic term)
+judgeship|1
+(noun)|judicature|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+judging|1
+(noun)|judgment|judgement|decision making (generic term)|deciding (generic term)
+judgment|7
+(noun)|judgement|mind|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|judgement|assessment|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|judgement|judicial decision|due process (generic term)|due process of law (generic term)
+(noun)|judgement|judging|decision making (generic term)|deciding (generic term)
+(noun)|opinion|legal opinion|judgement|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|judgement|sound judgment|sound judgement|perspicacity|trait (generic term)
+(noun)|sagacity|sagaciousness|judgement|discernment|wisdom (generic term)|sapience (generic term)
+judgment by default|1
+(noun)|default judgment|default judgement|judgement by default|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+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 (generic term)
+judgment in personam|1
+(noun)|judgement in personam|personal judgment|personal judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in rem (antonym)
+judgment in rem|1
+(noun)|judgement in rem|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in personam (antonym)
+judgment lien|1
+(noun)|lien (generic term)
+judgment of conviction|1
+(noun)|conviction|condemnation|sentence|final judgment (generic term)|final decision (generic term)|acquittal (antonym)
+judgment of dismissal|1
+(noun)|judgement of dismissal|dismissal|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judgment on the merits|1
+(noun)|judgement on the merits|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judgment on the pleadings|1
+(noun)|summary judgment|summary judgement|judgement on the pleadings|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+judgmental|1
+(adj)|faultfinding (similar term)|nonjudgmental (antonym)
+judicable|1
+(adj)|determinable (similar term)
+judicatory|1
+(noun)|judiciary|judicature|judicial system|system (generic term)|scheme (generic term)
+judicature|4
+(noun)|court|tribunal|assembly (generic term)
+(noun)|judiciary|judicatory|judicial system|system (generic term)|scheme (generic term)
+(noun)|justice|administration (generic term)|disposal (generic term)
+(noun)|judgeship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+judicial|4
+(adj)|legal (similar term)
+(adj)|official|functionary|adjudicator (related term)
+(adj)|juridical|juridic|righteousness|natural virtue (related term)
+(adj)|discriminative|critical (similar term)
+judicial activism|1
+(noun)|broad interpretation|interpretation (generic term)|interpreting (generic term)|rendition (generic term)|rendering (generic term)
+judicial admission|1
+(noun)|stipulation|concession (generic term)
+judicial branch|1
+(noun)|branch (generic term)|subdivision (generic term)|arm (generic term)
+judicial decision|1
+(noun)|judgment|judgement|due process (generic term)|due process of law (generic term)
+judicial doctrine|1
+(noun)|legal principle|judicial principle|principle (generic term)
+judicial principle|1
+(noun)|legal principle|judicial doctrine|principle (generic term)
+judicial proceeding|1
+(noun)|litigation|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+judicial review|1
+(noun)|review (generic term)
+judicial sale|1
+(noun)|sheriff's sale|execution sale|forced sale|sale (generic term)|sales agreement (generic term)
+judicial separation|1
+(noun)|legal separation|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+judicial system|1
+(noun)|judiciary|judicature|judicatory|system (generic term)|scheme (generic term)
+judicial torture|1
+(noun)|torture (generic term)|torturing (generic term)
+judicial writ|1
+(noun)|writ|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+judiciary|2
+(noun)|bench|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+(noun)|judicature|judicatory|judicial system|system (generic term)|scheme (generic term)
+judicious|1
+(adj)|wise|heady|prudent (similar term)
+judiciously|1
+(adv)|injudiciously (antonym)
+judiciousness|2
+(noun)|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)|injudiciousness (antonym)
+(noun)|sagacity|sagaciousness|wisdom (generic term)|wiseness (generic term)
+judith|2
+(noun)|Judith|heroine (generic term)
+(noun)|Judith|Book of Judith|book (generic term)
+judith jamison|1
+(noun)|Jamison|Judith Jamison|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+judo|1
+(noun)|martial art (generic term)|sport (generic term)|athletics (generic term)
+judy garland|1
+(noun)|Garland|Judy Garland|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+jug|4
+(noun)|bottle (generic term)
+(noun)|jugful|containerful (generic term)
+(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|gaol|put away|remand|confine (generic term)|detain (generic term)
+(verb)|stew (generic term)
+jug band|1
+(noun)|ensemble (generic term)
+jug wine|1
+(noun)|wine (generic term)|vino (generic term)
+jugal bone|1
+(noun)|cheekbone|zygomatic bone|zygomatic|malar|malar bone|os zygomaticum|bone (generic term)|os (generic term)
+jugal point|1
+(noun)|jugale|craniometric point (generic term)
+jugale|1
+(noun)|jugal point|craniometric point (generic term)
+jugful|1
+(noun)|jug|containerful (generic term)
+juggernaut|3
+(noun)|steamroller|power (generic term)|force (generic term)
+(noun)|Jagannath|Jagannatha|Jagganath|Juggernaut|avatar (generic term)
+(noun)|Juggernaut|idol (generic term)|graven image (generic term)|god (generic term)
+juggle|7
+(noun)|juggling|rearrangement (generic term)
+(noun)|juggling|performance (generic term)
+(verb)|beguile|hoodwink|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|fudge (generic term)|manipulate (generic term)|fake (generic term)|falsify (generic term)|cook (generic term)|wangle (generic term)|misrepresent (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|throw (generic term)
+(verb)|poise (generic term)|balance (generic term)
+juggler|1
+(noun)|performer (generic term)|performing artist (generic term)
+jugglery|2
+(noun)|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+juggling|2
+(noun)|juggle|rearrangement (generic term)
+(noun)|juggle|performance (generic term)
+juglandaceae|1
+(noun)|Juglandaceae|family Juglandaceae|walnut family|dicot family (generic term)|magnoliopsid family (generic term)
+juglandales|1
+(noun)|Juglandales|order Juglandales|plant order (generic term)
+juglans|1
+(noun)|Juglans|genus Juglans|dicot genus (generic term)|magnoliopsid genus (generic term)
+juglans californica|1
+(noun)|California black walnut|Juglans californica|walnut (generic term)|walnut tree (generic term)
+juglans cinerea|1
+(noun)|butternut|butternut tree|white walnut|Juglans cinerea|walnut (generic term)|walnut tree (generic term)
+juglans nigra|1
+(noun)|black walnut|black walnut tree|black hickory|Juglans nigra|walnut (generic term)|walnut tree (generic term)
+juglans regia|1
+(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut (generic term)|walnut tree (generic term)
+jugoslav|1
+(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European (generic term)
+jugoslavian|1
+(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European (generic term)
+jugoslavija|1
+(noun)|Serbia and Montenegro|Union of Serbia and Montenegro|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|European country (generic term)|European nation (generic term)
+jugular|3
+(adj)|external body part (related term)
+(noun)|jugular vein|vena jugularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+(noun)|weak part (generic term)|weak spot (generic term)|soft spot (generic term)
+jugular vein|1
+(noun)|vena jugularis|jugular|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+juice|4
+(noun)|foodstuff (generic term)|food product (generic term)
+(noun)|energy (generic term)|vim (generic term)|vitality (generic term)
+(noun)|current (generic term)|electric current (generic term)
+(noun)|succus|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+juice reamer|1
+(noun)|reamer|juicer|squeezer (generic term)
+juice up|1
+(verb)|jazz up|pep up|ginger up|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+juiceless|2
+(adj)|sapless (similar term)|juicy (antonym)
+(adj)|dry|unstimulating (similar term)|unexciting (similar term)
+juicer|2
+(noun)|drinker|imbiber|toper|consumer (generic term)|nondrinker (antonym)
+(noun)|reamer|juice reamer|squeezer (generic term)
+juiciness|1
+(noun)|succulence|succulency|appetizingness (generic term)|appetisingness (generic term)
+juicy|4
+(adj)|au jus (similar term)|lush (similar term)|succulent (similar term)|sappy (similar term)|juiceless (antonym)
+(adj)|luscious|red-hot|toothsome|voluptuous|sexy (similar term)
+(adj)|fat|profitable (similar term)
+(adj)|blue|gamy|gamey|naughty|racy|risque|spicy|sexy (similar term)
+jujitsu|1
+(noun)|jujutsu|jiujitsu|martial art (generic term)
+juju|2
+(noun)|magic (generic term)|thaumaturgy (generic term)
+(noun)|voodoo|hoodoo|fetish|fetich|charm (generic term)|good luck charm (generic term)
+jujube|3
+(noun)|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub (generic term)|bush (generic term)
+(noun)|Chinese date|Chinese jujube|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+(noun)|gumdrop (generic term)
+jujube bush|1
+(noun)|jujube|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub (generic term)|bush (generic term)
+jujutsu|1
+(noun)|jujitsu|jiujitsu|martial art (generic term)
+juke|2
+(noun)|jook|juke joint|jook joint|juke house|jook house|joint (generic term)
+(noun)|fake|feint (generic term)
+juke house|1
+(noun)|juke|jook|juke joint|jook joint|jook house|joint (generic term)
+juke joint|1
+(noun)|juke|jook|jook joint|juke house|jook house|joint (generic term)
+jukebox|1
+(noun)|nickelodeon|record player (generic term)|phonograph (generic term)
+julep|1
+(noun)|mint julep|highball (generic term)
+jules alfred huot de goncourt|1
+(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer (generic term)|author (generic term)
+jules de goncourt|1
+(noun)|Goncourt|Jules de Goncourt|Jules Alfred Huot de Goncourt|writer (generic term)|author (generic term)
+jules emile frederic massenet|1
+(noun)|Massenet|Jules Emile Frederic Massenet|composer (generic term)
+jules feifer|1
+(noun)|Feifer|Jules Feifer|cartoonist (generic term)
+jules verne|1
+(noun)|Verne|Jules Verne|writer (generic term)|author (generic term)
+julia evelina smith|1
+(noun)|Smith|Julia Evelina Smith|suffragist (generic term)
+julia ward howe|1
+(noun)|Howe|Julia Ward Howe|suffragist (generic term)
+julian|2
+(adj)|Julian|general|full general|statesman|solon|national leader (related term)
+(noun)|Julian|Julian the Apostate|Flavius Claudius Julianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+julian bond|1
+(noun)|Bond|Julian Bond|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+julian calendar|1
+(noun)|Julian calendar|Old Style calendar|solar calendar (generic term)
+julian the apostate|1
+(noun)|Julian|Julian the Apostate|Flavius Claudius Julianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+julienne|3
+(noun)|julienne vegetable|vegetable (generic term)|veggie (generic term)
+(noun)|soup (generic term)
+(verb)|cut (generic term)
+julienne vegetable|1
+(noun)|julienne|vegetable (generic term)|veggie (generic term)
+julio iglesias|1
+(noun)|Iglesias|Julio Iglesias|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+julius caesar|1
+(noun)|Caesar|Julius Caesar|Gaius Julius Caesar|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+julius erving|1
+(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward (generic term)
+julius marx|1
+(noun)|Marx|Julius Marx|Groucho|comedian (generic term)|comic (generic term)
+julius ullman|1
+(noun)|Fairbanks|Douglas Fairbanks|Douglas Elton Fairbanks|Julius Ullman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+julius winfield erving|1
+(noun)|Erving|Julius Erving|Julius Winfield Erving|Dr. J|forward (generic term)
+july|1
+(noun)|July|Gregorian calendar month (generic term)
+july 1|1
+(noun)|Dominion Day|July 1|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+july 4|1
+(noun)|Independence Day|Fourth of July|July 4|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+jumada i|1
+(noun)|Jumada I|Jomada I|Islamic calendar month (generic term)
+jumada ii|1
+(noun)|Jumada II|Jomada II|Islamic calendar month (generic term)
+jumbal|1
+(noun)|jumble|cake (generic term)
+jumbie bead|1
+(noun)|jumby bead|Ormosia coarctata|necklace tree (generic term)
+jumble|6
+(noun)|clutter|muddle|fuddle|mare's nest|welter|smother|disorderliness (generic term)|disorder (generic term)
+(noun)|jumbal|cake (generic term)
+(noun)|patchwork|hodgepodge|theory (generic term)
+(verb)|mingle|be (generic term)
+(verb)|confuse|mix up|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+(verb)|scramble|throw together|disorder (generic term)|disarray (generic term)
+jumble sale|1
+(noun)|rummage sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+jumbled|1
+(adj)|disorderly|higgledy-piggledy|hugger-mugger|topsy-turvy|untidy (similar term)
+jumbo|1
+(adj)|elephantine|gargantuan|giant|large (similar term)|big (similar term)
+jumbo jet|1
+(noun)|jumbojet|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+jumbojet|1
+(noun)|jumbo jet|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+jumby bead|1
+(noun)|jumbie bead|Ormosia coarctata|necklace tree (generic term)
+jumby bean|1
+(noun)|bead tree|jumby tree|Ormosia monosperma|necklace tree (generic term)
+jumby tree|1
+(noun)|bead tree|jumby bean|Ormosia monosperma|necklace tree (generic term)
+jument|1
+(noun)|beast of burden|work animal (generic term)
+jumentous|1
+(adj)|work animal (related term)
+jump|21
+(noun)|leap|increase (generic term)
+(noun)|leap|saltation|transition (generic term)
+(noun)|transition (generic term)
+(noun)|startle|start|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|parachuting|descent (generic term)
+(noun)|jumping|propulsion (generic term)|actuation (generic term)
+(verb)|leap|bound|spring|move (generic term)|leap out (related term)|jump on (related term)
+(verb)|startle|start|move (generic term)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|wax (generic term)|mount (generic term)|climb (generic term)|rise (generic term)
+(verb)|leap out|jump out|stand out|stick out|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|enter (generic term)|participate (generic term)
+(verb)|rise|climb up|change (generic term)
+(verb)|leap|jump off|move (generic term)
+(verb)|derail|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|chute|parachute|dive (generic term)|plunge (generic term)|plunk (generic term)
+(verb)|leap
+(verb)|jumpstart|jump-start|start (generic term)|start up (generic term)
+(verb)|pass over|skip|skip over|neglect (generic term)|pretermit (generic term)|omit (generic term)|drop (generic term)|miss (generic term)|leave out (generic term)|overlook (generic term)|overleap (generic term)
+(verb)|leap|switch (generic term)|shift (generic term)|change (generic term)
+(verb)|alternate|change (generic term)|alter (generic term)|vary (generic term)
+jump-start|3
+(noun)|jumpstart|action (generic term)
+(verb)|jumpstart|jump|start (generic term)|start up (generic term)
+(verb)|jumpstart|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+jump ball|1
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)
+jump cut|1
+(noun)|cut (generic term)
+jump for joy|1
+(verb)|exult|walk on air|be on cloud nine|rejoice (generic term)|joy (generic term)
+jump off|2
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|jump|leap|move (generic term)
+jump on|1
+(verb)|hop on|mount|mount up|get on|climb on|bestride|move (generic term)|hop out (antonym)
+jump out|1
+(verb)|leap out|jump|stand out|stick out|look (generic term)|appear (generic term)|seem (generic term)
+jump rope|2
+(noun)|skip rope|skipping rope|rope (generic term)
+(noun)|child's game (generic term)|cardiopulmonary exercise (generic term)
+jump seat|1
+(noun)|seat (generic term)
+jump shot|1
+(noun)|jumper|basketball shot (generic term)
+jump suit|2
+(noun)|jumpsuit|garment (generic term)
+(noun)|uniform (generic term)
+jumped-up|1
+(adj)|pretentious (similar term)
+jumper|7
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|coverall (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|jacket (generic term)
+(noun)|pinafore|pinny|dress (generic term)|frock (generic term)
+(noun)|jump shot|basketball shot (generic term)
+jumper cable|1
+(noun)|jumper lead|lead|booster cable|jumper (generic term)|wire (generic term)|conducting wire (generic term)
+jumper lead|1
+(noun)|jumper cable|lead|booster cable|jumper (generic term)|wire (generic term)|conducting wire (generic term)
+jumpiness|1
+(noun)|jitteriness|nervousness|restiveness|anxiety (generic term)
+jumping|2
+(noun)|track and field (generic term)
+(noun)|jump|propulsion (generic term)|actuation (generic term)
+jumping-off place|1
+(noun)|point of departure|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+jumping-off point|1
+(noun)|springboard|point of departure|beginning (generic term)|start (generic term)|commencement (generic term)
+jumping bean|1
+(noun)|jumping seed|Mexican jumping bean|seed (generic term)
+jumping bristletail|1
+(noun)|machilid|thysanuran insect (generic term)|thysanuron (generic term)
+jumping gene|1
+(noun)|transposon|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+jumping jack|1
+(noun)|plaything (generic term)|toy (generic term)
+jumping mouse|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+jumping orchid|1
+(noun)|Catasetum macrocarpum|orchid (generic term)|orchidaceous plant (generic term)
+jumping plant louse|1
+(noun)|psylla|psyllid|plant louse (generic term)|louse (generic term)
+jumping seed|1
+(noun)|jumping bean|Mexican jumping bean|seed (generic term)
+jumping up and down|1
+(noun)|jump (generic term)|jumping (generic term)
+jumpstart|3
+(noun)|jump-start|action (generic term)
+(verb)|jump-start|jump|start (generic term)|start up (generic term)
+(verb)|jump-start|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+jumpsuit|1
+(noun)|jump suit|garment (generic term)
+jumpy|2
+(adj)|edgy|high-strung|highly strung|in suspense|jittery|nervy|overstrung|restive|uptight|tense (similar term)
+(adj)|rough|rocky|bumpy|jolty|jolting|smooth (antonym)
+juncaceae|1
+(noun)|Juncaceae|family Juncaceae|rush family|monocot family (generic term)|liliopsid family (generic term)
+juncaginaceae|1
+(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family (generic term)|liliopsid family (generic term)
+junco|1
+(noun)|snowbird|finch (generic term)
+junco hyemalis|1
+(noun)|dark-eyed junco|slate-colored junco|Junco hyemalis|junco (generic term)|snowbird (generic term)
+junction|5
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|conjunction|conjugation|colligation|union (generic term)|unification (generic term)
+(noun)|articulation|join|joint|juncture|connection (generic term)|connexion (generic term)|link (generic term)
+(noun)|conjunction|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|adjunction|joining (generic term)|connection (generic term)|connexion (generic term)
+junction barrier|1
+(noun)|barrier strip|junction (generic term)|conjunction (generic term)
+junction rectifier|1
+(noun)|diode|semiconductor diode|crystal rectifier|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+junction transistor|1
+(noun)|transistor|electronic transistor|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+juncture|3
+(noun)|occasion|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|critical point|crossroads|crisis (generic term)
+(noun)|articulation|join|joint|junction|connection (generic term)|connexion (generic term)|link (generic term)
+juncus|1
+(noun)|Juncus|genus Juncus|monocot genus (generic term)|liliopsid genus (generic term)
+juncus articulatus|1
+(noun)|jointed rush|Juncus articulatus|rush (generic term)
+juncus bufonius|1
+(noun)|toad rush|Juncus bufonius|rush (generic term)
+juncus effusus|1
+(noun)|bulrush|bullrush|common rush|soft rush|Juncus effusus|rush (generic term)
+juncus inflexus|1
+(noun)|hard rush|Juncus inflexus|rush (generic term)
+juncus leseurii|1
+(noun)|salt rush|Juncus leseurii|rush (generic term)
+juncus tenuis|1
+(noun)|slender rush|Juncus tenuis|rush (generic term)
+jund-ul-islam|1
+(noun)|Jund-ul-Islam|Soldiers of God|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+june|1
+(noun)|June|Gregorian calendar month (generic term)
+june 14|1
+(noun)|Flag Day|June 14|day (generic term)
+june 21|1
+(noun)|summer solstice|June 21|midsummer|solstice (generic term)|winter solstice (antonym)
+june 23|1
+(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day (generic term)
+june 24|1
+(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day (generic term)
+june 29|1
+(noun)|Saints Peter and Paul|June 29|Christian holy day (generic term)
+june 3|1
+(noun)|Jefferson Davis' Birthday|Davis' Birthday|June 3|day (generic term)
+june beetle|1
+(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+june bug|1
+(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+june grass|1
+(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass (generic term)|blue grass (generic term)
+juneau|1
+(noun)|Juneau|capital of Alaska|state capital (generic term)
+juneberry|2
+(noun)|Juneberry|serviceberry|service tree|shadbush|shadblow|shrub (generic term)|bush (generic term)
+(noun)|saskatoon|serviceberry|shadberry|berry (generic term)
+juneberry holly|1
+(noun)|holly (generic term)
+jung|1
+(noun)|Jung|Carl Jung|Carl Gustav Jung|psychologist (generic term)
+jungermanniaceae|1
+(noun)|Jungermanniaceae|family Jungermanniaceae|moss family (generic term)
+jungermanniales|1
+(noun)|Jungermanniales|order Jungermanniales|plant order (generic term)
+jungian|2
+(adj)|Jungian|psychologist (related term)
+(noun)|Jungian|follower (generic term)
+jungian psychology|1
+(noun)|Jungian psychology|psychotherapy (generic term)|psychotherapeutics (generic term)|mental hygiene (generic term)
+jungle|3
+(noun)|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+(noun)|location (generic term)
+(noun)|hobo camp|camp (generic term)
+jungle cat|1
+(noun)|Felis chaus|wildcat (generic term)
+jungle cock|1
+(noun)|jungle fowl (generic term)|gallina (generic term)
+jungle fever|1
+(noun)|malaria (generic term)
+jungle fowl|1
+(noun)|gallina|gallinaceous bird (generic term)|gallinacean (generic term)
+jungle gym|1
+(noun)|structure (generic term)|construction (generic term)|plaything (generic term)|toy (generic term)
+jungle hen|1
+(noun)|jungle fowl (generic term)|gallina (generic term)
+jungle rot|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+jungly|1
+(adj)|wooded (similar term)
+junin virus|1
+(noun)|Junin virus|arenavirus (generic term)
+junior|7
+(adj)|junior-grade (similar term)|inferior (similar term)|lower-ranking (similar term)|lowly (similar term)|petty (similar term)|secondary (similar term)|subaltern (similar term)|subordinate (similar term)|minor (similar term)|younger (similar term)|jr. (similar term)|young (related term)|immature (related term)|senior (antonym)
+(adj)|third-year|next-to-last|intermediate (similar term)
+(adj)|young (similar term)|immature (similar term)
+(noun)|upstart (generic term)|parvenu (generic term)|nouveau-riche (generic term)|arriviste (generic term)
+(noun)|lowerclassman (generic term)|underclassman (generic term)
+(noun)|man (generic term)|adult male (generic term)
+(noun)|Junior|Jr|Jnr|son (generic term)|boy (generic term)
+junior-grade|1
+(adj)|inferior|lower-ranking|lowly|petty|secondary|subaltern|subordinate|junior (similar term)
+junior class|1
+(noun)|class (generic term)|year (generic term)
+junior college|1
+(noun)|college (generic term)
+junior featherweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+junior high|1
+(noun)|junior high school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+junior high school|1
+(noun)|junior high|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+junior lightweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+junior middleweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+junior school|1
+(noun)|grade school (generic term)|grammar school (generic term)|elementary school (generic term)|primary school (generic term)
+junior status|1
+(noun)|subordinateness (generic term)|subsidiarity (generic term)
+junior varsity|1
+(noun)|JV|team (generic term)|squad (generic term)
+junior welterweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+juniper|2
+(noun)|retem|raetam|juniper bush|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+(noun)|cypress (generic term)
+juniper berries|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+juniper berry|1
+(noun)|fruit (generic term)
+juniper bush|1
+(noun)|retem|raetam|juniper|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+juniperic acid|1
+(noun)|hydroxy acid (generic term)
+junipero serra|1
+(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary (generic term)|missioner (generic term)
+juniperus|1
+(noun)|Juniperus|genus Juniperus|gymnosperm genus (generic term)
+juniperus bermudiana|1
+(noun)|Bermuda cedar|Juniperus bermudiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+juniperus communis|1
+(noun)|common juniper|Juniperus communis|juniper (generic term)
+juniperus communis depressa|1
+(noun)|ground cedar|dwarf juniper|Juniperus communis depressa|juniper (generic term)
+juniperus flaccida|1
+(noun)|Mexican juniper|drooping juniper|Juniperus flaccida|juniper (generic term)
+juniperus horizontalis|1
+(noun)|creeping juniper|Juniperus horizontalis|juniper (generic term)
+juniperus procera|1
+(noun)|east African cedar|Juniperus procera|pencil cedar (generic term)|pencil cedar tree (generic term)
+juniperus sabina|1
+(noun)|dwarf juniper|savin|Juniperus sabina|juniper (generic term)
+juniperus silicicola|1
+(noun)|southern red cedar|Juniperus silicicola|juniper (generic term)
+juniperus virginiana|1
+(noun)|eastern red cedar|red cedar|red juniper|Juniperus virginiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+junk|3
+(noun)|debris|dust|rubble|detritus|rubbish (generic term)|trash (generic term)|scrap (generic term)
+(noun)|boat (generic term)
+(verb)|trash|scrap|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+junk bond|1
+(noun)|high-yield bond|bond (generic term)|bond certificate (generic term)
+junk dna|1
+(noun)|junk DNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+junk e-mail|1
+(noun)|spam|electronic mail (generic term)|e-mail (generic term)|email (generic term)
+junk food|1
+(noun)|food (generic term)|solid food (generic term)
+junk heap|1
+(noun)|garbage heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+junk mail|1
+(noun)|third-class mail (generic term)|third class (generic term)
+junk pile|1
+(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+junk shop|1
+(noun)|shop (generic term)|store (generic term)
+junker|1
+(noun)|Junker|Prussian (generic term)
+junkers|1
+(noun)|Junkers|Hugo Junkers|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+junket|6
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+(noun)|excursion|jaunt|outing|pleasure trip|expedition|sashay|journey (generic term)|journeying (generic term)
+(noun)|trip (generic term)
+(verb)|junketeer|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|feast|banquet|host (generic term)
+(verb)|feast|banquet|eat (generic term)
+junketeer|1
+(verb)|junket|travel (generic term)|trip (generic term)|jaunt (generic term)
+junketing|1
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+junkie|2
+(noun)|drug addict|junky|addict (generic term)
+(noun)|addict|nut|freak|junky|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+junky|2
+(noun)|drug addict|junkie|addict (generic term)
+(noun)|addict|nut|freak|junkie|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+junkyard|1
+(noun)|yard (generic term)
+juno|1
+(noun)|Juno|Roman deity (generic term)
+junoesque|1
+(adj)|Junoesque|statuesque|shapely (similar term)
+junta|1
+(noun)|military junta|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+junto|1
+(noun)|cabal|faction|camarilla|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+jupati|1
+(noun)|jupaty|jupati palm|Raffia taedigera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+jupati palm|1
+(noun)|jupati|jupaty|Raffia taedigera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+jupaty|1
+(noun)|jupati|jupati palm|Raffia taedigera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+jupiter|2
+(noun)|Jupiter|Jovian planet (generic term)|gas giant (generic term)|superior planet (generic term)|outer planet (generic term)
+(noun)|Jupiter|Jove|Roman deity (generic term)
+jupiter's beard|1
+(noun)|Jupiter's beard|silverbush|silver-bush|Anthyllis barba-jovis|shrub (generic term)|bush (generic term)
+jupiter fidius|1
+(noun)|Jupiter Fidius|Protector of Boundaries|Jupiter (generic term)|Jove (generic term)
+jupiter fulgur|1
+(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter (generic term)|Jove (generic term)
+jupiter fulminator|1
+(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter (generic term)|Jove (generic term)
+jupiter optimus maximus|1
+(noun)|Jupiter Optimus Maximus|Best and Greatest|Jupiter (generic term)|Jove (generic term)
+jupiter pluvius|1
+(noun)|Jupiter Pluvius|Rain-giver|Jupiter (generic term)|Jove (generic term)
+jupiter tonans|1
+(noun)|Jupiter Tonans|Thunderer|Jupiter (generic term)|Jove (generic term)
+jural|1
+(adj)|juristic|legal (similar term)
+jurassic|2
+(adj)|Jurassic|period|geological period (related term)
+(noun)|Jurassic|Jurassic period|period (generic term)|geological period (generic term)
+jurassic period|1
+(noun)|Jurassic|Jurassic period|period (generic term)|geological period (generic term)
+juridic|2
+(adj)|juridical|philosophy (related term)
+(adj)|judicial|juridical|righteousness|natural virtue (related term)
+juridical|2
+(adj)|juridic|philosophy (related term)
+(adj)|judicial|juridic|righteousness|natural virtue (related term)
+jurisdiction|2
+(noun)|legal power|power (generic term)|powerfulness (generic term)
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+jurisdictional|1
+(adj)|territorial (similar term)
+jurisprudence|2
+(noun)|law|legal philosophy|philosophy (generic term)
+(noun)|law|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+jurisprudential|1
+(adj)|philosophy (related term)
+jurist|2
+(noun)|legal expert|expert (generic term)
+(noun)|judge|justice|magistrate|official (generic term)|functionary (generic term)|adjudicator (generic term)
+juristic|1
+(adj)|jural|legal (similar term)
+juror|1
+(noun)|juryman|jurywoman|panelist (generic term)|panellist (generic term)
+jury|2
+(noun)|body (generic term)
+(noun)|panel|committee (generic term)|commission (generic term)
+jury-rigged|1
+(adj)|improvised|makeshift|impermanent (similar term)|temporary (similar term)
+jury box|1
+(noun)|box (generic term)
+jury duty|1
+(noun)|civic duty (generic term)|civic responsibility (generic term)
+jury mast|1
+(noun)|mast (generic term)
+jury system|1
+(noun)|legal system (generic term)
+juryman|1
+(noun)|juror|jurywoman|panelist (generic term)|panellist (generic term)
+jurywoman|1
+(noun)|juror|juryman|panelist (generic term)|panellist (generic term)
+jus civile|1
+(noun)|Roman law|Justinian code|civil law|legal code (generic term)
+jus sanguinis|1
+(noun)|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+jus soli|1
+(noun)|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+jussieu|1
+(noun)|Jussieu|Antoine Laurent de Jussieu|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+jussive mood|1
+(noun)|imperative mood|imperative|imperative form|mood (generic term)|mode (generic term)|modality (generic term)
+just|9
+(adj)|conscionable (similar term)|fitting (similar term)|meet (similar term)|retributive (similar term)|retributory (similar term)|vindicatory (similar term)|rightful (similar term)|fair (related term)|just (related term)|honorable (related term)|honourable (related term)|right (related term)|righteous (related term)|unjust (antonym)
+(adj)|equitable|evenhanded (similar term)|inequitable (antonym)
+(adj)|fair|antimonopoly (similar term)|antitrust (similar term)|clean (similar term)|sporting (similar term)|sporty (similar term)|sportsmanlike (similar term)|fair-minded (similar term)|fair-and-square (similar term)|impartial (related term)|fair (related term)|just (related term)|reasonable (related term)|sensible (related term)|unfair (antonym)
+(adj)|good|upright|righteous (similar term)
+(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 (generic term)|differential threshold (generic term)|difference limen (generic term)|differential limen (generic term)
+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 (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+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 (generic term)
+justice|4
+(noun)|justness|righteousness (generic term)|natural virtue (generic term)|injustice (antonym)
+(noun)|judicature|administration (generic term)|disposal (generic term)
+(noun)|judge|jurist|magistrate|official (generic term)|functionary (generic term)|adjudicator (generic term)
+(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department (generic term)
+justice department|1
+(noun)|Department of Justice|Justice Department|Justice|DoJ|executive department (generic term)
+justice of the peace|1
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+justiciar|1
+(noun)|justiciary|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+justiciary|2
+(noun)|justiciar|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|jurisdiction (generic term)
+justifiable|1
+(adj)|excusable (similar term)
+justifiably|1
+(adv)|with reason|unjustifiably (antonym)
+justification|3
+(noun)|circumstance (generic term)|condition (generic term)|consideration (generic term)
+(noun)|explanation (generic term)|account (generic term)
+(noun)|vindication (generic term)|exoneration (generic term)
+justificative|2
+(adj)|defensive|justificatory|apologetic (similar term)|excusatory (similar term)
+(adj)|justificatory|vindicatory|exculpatory (similar term)
+justificatory|2
+(adj)|defensive|justificative|apologetic (similar term)|excusatory (similar term)
+(adj)|justificative|vindicatory|exculpatory (similar term)
+justified|1
+(adj)|even (similar term)
+justifiedly|1
+(adv)|rightly|justly|unjustly (antonym)
+justifier|1
+(noun)|apologist|vindicator|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+justify|5
+(verb)|warrant|confirm (generic term)|reassert (generic term)
+(verb)|vindicate|uphold (generic term)|maintain (generic term)
+(verb)|apologize|apologise|excuse|rationalize|rationalise|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|absolve|free|forgive (generic term)|blame (antonym)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+justinian|1
+(noun)|Justinian|Justinian I|Justinian the Great|emperor (generic term)
+justinian code|1
+(noun)|Roman law|Justinian code|civil law|jus civile|legal code (generic term)
+justinian i|1
+(noun)|Justinian|Justinian I|Justinian the Great|emperor (generic term)
+justinian the great|1
+(noun)|Justinian|Justinian I|Justinian the Great|emperor (generic term)
+justly|2
+(adv)|rightly|justifiedly|unjustly (antonym)
+(adv)|right
+justness|2
+(noun)|rightness|nicety|conformity (generic term)|conformance (generic term)
+(noun)|justice|righteousness (generic term)|natural virtue (generic term)|injustice (antonym)
+jut|3
+(noun)|bulge|bump|hump|gibbosity|gibbousness|prominence|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+(noun)|protrusion|projection|jutting|change of shape (generic term)
+(verb)|stick out|protrude|jut out|project
+jut out|1
+(verb)|stick out|protrude|jut|project
+jute|2
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+(noun)|Jute|European (generic term)
+jutish|1
+(noun)|Kentish|Jutish|Old English (generic term)|Anglo-Saxon (generic term)
+jutland|2
+(noun)|Jutland|Jylland|peninsula (generic term)
+(noun)|Jutland|battle of Jutland|naval battle (generic term)
+jutting|2
+(adj)|projected|projecting|protruding|sticking|sticking out|protrusive (similar term)
+(noun)|protrusion|projection|jut|change of shape (generic term)
+juvenal|1
+(noun)|Juvenal|Decimus Junius Juvenalis|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+juvenescence|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+juvenile|3
+(adj)|time of life (related term)
+(adj)|adolescent|jejune|puerile|immature (similar term)
+(noun)|juvenile person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|adult (antonym)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+juvenile amaurotic idiocy|1
+(noun)|Spielmeyer-Vogt disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+juvenile body|1
+(noun)|human body (generic term)|physical body (generic term)|material body (generic term)|soma (generic term)|build (generic term)|figure (generic term)|physique (generic term)|anatomy (generic term)|shape (generic term)|bod (generic term)|chassis (generic term)|frame (generic term)|form (generic term)|flesh (generic term)
+juvenile court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+juvenile delinquency|1
+(noun)|delinquency|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+juvenile delinquent|1
+(noun)|delinquent|wrongdoer (generic term)|offender (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+juvenile person|1
+(noun)|juvenile|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|adult (antonym)
+juvenile rheumatoid arthritis|1
+(noun)|Still's disease|rheumatoid arthritis (generic term)|atrophic arthritis (generic term)|rheumatism (generic term)
+juvenile wart|1
+(noun)|wart (generic term)|verruca (generic term)
+juvenility|2
+(noun)|callowness|jejuneness|immaturity (generic term)|immatureness (generic term)
+(noun)|youth|youthfulness|youngness (generic term)
+juxtapose|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+juxtaposed|1
+(adj)|close (similar term)
+juxtaposition|2
+(noun)|apposition|collocation|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|position (generic term)|place (generic term)
+jv|1
+(noun)|junior varsity|JV|team (generic term)|squad (generic term)
+jyaistha|1
+(noun)|Jeth|Jyaistha|Hindu calendar month (generic term)
+jylland|1
+(noun)|Jutland|Jylland|peninsula (generic term)
+jynx|1
+(noun)|Jynx|genus Jynx|bird genus (generic term)
+k|7
+(adj)|thousand|one thousand|1000|m|cardinal (similar term)
+(noun)|kelvin|K|temperature unit (generic term)
+(noun)|potassium|K|atomic number 19|metallic element (generic term)|metal (generic term)
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+(noun)|kilobyte|K|KB|computer memory unit (generic term)
+(noun)|K|letter k|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+k'ung futzu|1
+(noun)|Confucius|Kongfuze|K'ung Futzu|Kong the Master|philosopher (generic term)
+k-dur 20|1
+(noun)|potassium chloride|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+k-lor|1
+(noun)|potassium chloride|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+k-lyte|1
+(noun)|potassium chloride|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+k-meson|1
+(noun)|kaon|kappa-meson|K particle|meson (generic term)|mesotron (generic term)
+k.e.|1
+(noun)|kinetic energy|K.E.|mechanical energy (generic term)
+k2|1
+(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak (generic term)
+k particle|1
+(noun)|kaon|kappa-meson|k-meson|K particle|meson (generic term)|mesotron (generic term)
+k ration|1
+(noun)|K ration|field ration (generic term)
+ka|1
+(noun)|Ka|Hindu deity (generic term)
+kaaba|1
+(noun)|Kaaba|Caaba|shrine (generic term)
+kabala|2
+(noun)|cabala|cabbala|cabbalah|kabbala|kabbalah|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+kabbala|2
+(noun)|cabala|cabbala|cabbalah|kabala|kabbalah|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+kabbalah|2
+(noun)|cabala|cabbala|cabbalah|kabala|kabbala|qabala|qabalah|secret (generic term)|arcanum (generic term)
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+kabbalism|2
+(noun)|Kabbalism|Cabalism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|cabalism|attachment (generic term)|adherence (generic term)|adhesion (generic term)
+kabbalist|2
+(noun)|cabalist|expert (generic term)
+(noun)|Cabalist|Kabbalist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+kabbalistic|1
+(adj)|cabalistic|qabalistic|cryptic|cryptical|sibylline|esoteric (similar term)
+kabob|1
+(noun)|kebab|shish kebab|dish (generic term)
+kabolin|1
+(noun)|nandrolone|Durabolin|Kabolin|androgen (generic term)|androgenic hormone (generic term)
+kabul|1
+(noun)|Kabul|capital of Afghanistan|national capital (generic term)
+kach|1
+(noun)|Kahane Chai|Kach|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kachaturian|1
+(noun)|Kachaturian|Aram Kachaturian|composer (generic term)
+kachin|1
+(noun)|Kachin|Kachinic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+kachina|3
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+(noun)|doll (generic term)|dolly (generic term)
+kachinic|1
+(noun)|Kachin|Kachinic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+kadai|1
+(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+kadai language|1
+(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+kadikoy|1
+(noun)|Chalcedon|Kadikoy|town (generic term)
+kaffir|2
+(noun)|great millet|kafir corn|kaffir corn|Sorghum bicolor|sorghum (generic term)
+(noun)|kafir|caffer|caffre|Black African (generic term)
+kaffir boom|2
+(noun)|Transvaal kafferboom|Erythrina lysistemon|coral tree (generic term)|erythrina (generic term)
+(noun)|Cape kafferboom|Erythrina caffra|coral tree (generic term)|erythrina (generic term)
+kaffir bread|1
+(noun)|Encephalartos caffer|cycad (generic term)
+kaffir cat|1
+(noun)|caffer cat|Felis ocreata|wildcat (generic term)
+kaffir corn|1
+(noun)|great millet|kaffir|kafir corn|Sorghum bicolor|sorghum (generic term)
+kaffir pox|1
+(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+kaffiyeh|1
+(noun)|headdress (generic term)|headgear (generic term)
+kafir|2
+(noun)|kaffir|caffer|caffre|Black African (generic term)
+(noun)|Kafir|Afghan (generic term)|Afghanistani (generic term)
+kafir corn|1
+(noun)|great millet|kaffir|kaffir corn|Sorghum bicolor|sorghum (generic term)
+kafiri|1
+(noun)|Kafiri|Dard (generic term)|Dardic (generic term)|Dardic language (generic term)
+kafka|1
+(noun)|Kafka|Franz Kafka|writer (generic term)|author (generic term)
+kafkaesque|2
+(adj)|Kafkaesque|writer|author (related term)
+(adj)|unrealistic (similar term)
+kafocin|1
+(noun)|cephaloglycin|Kafocin|antibiotic (generic term)|antibiotic drug (generic term)
+kaftan|2
+(noun)|caftan|dress (generic term)|frock (generic term)
+(noun)|caftan|cloak (generic term)
+kahane chai|1
+(noun)|Kahane Chai|Kach|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kahikatea|1
+(noun)|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer (generic term)|coniferous tree (generic term)
+kahlil gibran|1
+(noun)|Gibran|Kahlil Gibran|writer (generic term)|author (generic term)
+kahlua|1
+(noun)|Kahlua|coffee liqueur (generic term)
+kahn|1
+(noun)|Kahn|Louis Isadore Kahn|architect (generic term)|designer (generic term)
+kahoolawe|1
+(noun)|Kahoolawe|Kahoolawe Island|island (generic term)
+kahoolawe island|1
+(noun)|Kahoolawe|Kahoolawe Island|island (generic term)
+kai apple|1
+(noun)|edible fruit (generic term)
+kail|2
+(noun)|kale|cole|borecole|colewort|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|kale|cole|cabbage (generic term)|chou (generic term)
+kainite|1
+(noun)|mineral (generic term)
+kainogenesis|1
+(noun)|cenogenesis|kenogenesis|caenogenesis|cainogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|palingenesis (antonym)
+kaiser|1
+(noun)|Kaiser|emperor (generic term)
+kaiser bill|1
+(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser (generic term)
+kaiser roll|1
+(noun)|bun (generic term)|roll (generic term)
+kaiser wilhelm|1
+(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser (generic term)
+kakatoe|1
+(noun)|Kakatoe|genus Kakatoe|Cacatua|genus Cacatua|bird genus (generic term)
+kakatoe galerita|1
+(noun)|sulphur-crested cockatoo|Kakatoe galerita|Cacatua galerita|cockatoo (generic term)
+kakatoe leadbeateri|1
+(noun)|pink cockatoo|Kakatoe leadbeateri|cockatoo (generic term)
+kakemono|1
+(noun)|Kakemono|hanging (generic term)|wall hanging (generic term)
+kaki|2
+(noun)|Japanese persimmon|Diospyros kaki|persimmon (generic term)|persimmon tree (generic term)
+(noun)|Himantopus novae-zelandiae|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+kakke disease|1
+(noun)|beriberi (generic term)
+kala-azar|1
+(noun)|visceral leishmaniasis|Assam fever|dumdum fever|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+kala azar|1
+(noun)|leishmaniasis|leishmaniosis|protozoal infection (generic term)
+kalaallit nunaat|1
+(noun)|Greenland|Gronland|Kalaallit Nunaat|island (generic term)
+kalahari|1
+(noun)|Kalahari|Kalahari Desert|desert (generic term)
+kalahari desert|1
+(noun)|Kalahari|Kalahari Desert|desert (generic term)
+kalamazoo|1
+(noun)|Kalamazoo|town (generic term)
+kalansuwa|1
+(noun)|cap (generic term)
+kalantas|1
+(noun)|Philippine mahogany|Philippine cedar|Toona calantas|Cedrela calantas|mahogany (generic term)|mahogany tree (generic term)
+kalapooia|1
+(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian (generic term)
+kalapooian|1
+(noun)|Kalapooian|Kalapuyan|Penutian (generic term)
+kalapuya|1
+(noun)|Kalapooia|Kalapuya|Calapooya|Calapuya|Penutian (generic term)
+kalapuyan|1
+(noun)|Kalapooian|Kalapuyan|Penutian (generic term)
+kalashnikov|1
+(noun)|Kalashnikov|submachine gun (generic term)
+kalashnikov culture|1
+(noun)|Kalashnikov culture|culture (generic term)
+kale|3
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|kail|cole|borecole|colewort|Brassica oleracea acephala|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|kail|cole|cabbage (generic term)|chou (generic term)
+kaleidoscope|2
+(noun)|form (generic term)|shape (generic term)|pattern (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+kaleidoscopic|1
+(adj)|kaleidoscopical|changeable (similar term)|changeful (similar term)
+kaleidoscopical|1
+(adj)|kaleidoscopic|changeable (similar term)|changeful (similar term)
+kalemia|1
+(noun)|state (generic term)
+kali|2
+(noun)|saltwort|barilla|glasswort|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+(noun)|Kali|Hindu deity (generic term)
+kalian|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+kalif|1
+(noun)|caliph|calif|kaliph|khalif|khalifah|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+kalimantan|2
+(noun)|Indonesian Borneo|Kalimantan|state (generic term)|province (generic term)
+(noun)|Borneo|Kalimantan|island (generic term)
+kalinin|1
+(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman (generic term)|solon (generic term)|national leader (generic term)
+kaliph|1
+(noun)|caliph|calif|kalif|khalif|khalifah|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+kaliuresis|1
+(noun)|kaluresis|symptom (generic term)
+kalka|2
+(noun)|Khalkha|Khalka|Kalka|Mongol (generic term)|Mongolian (generic term)
+(noun)|Khalkha|Khalka|Kalka|Mongolian (generic term)|Mongolic (generic term)|Mongolic language (generic term)
+kalki|1
+(noun)|Kalki|avatar (generic term)
+kallman's syndrome|1
+(noun)|Kallman's syndrome|hypogonadism (generic term)
+kalmia|1
+(noun)|shrub (generic term)|bush (generic term)
+kalmia angustifolia|1
+(noun)|sheep laurel|pig laurel|lambkill|Kalmia angustifolia|kalmia (generic term)
+kalmia latifolia|1
+(noun)|mountain laurel|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia (generic term)
+kalmia polifolia|1
+(noun)|swamp laurel|bog laurel|bog kalmia|Kalmia polifolia|kalmia (generic term)
+kalon tripa|1
+(noun)|Kalon Tripa|president (generic term)|chairman (generic term)|chairwoman (generic term)|chair (generic term)|chairperson (generic term)
+kalotermes|1
+(noun)|Kalotermes|genus Kalotermes|arthropod genus (generic term)
+kalotermitidae|1
+(noun)|Kalotermitidae|family Kalotermitidae|arthropod family (generic term)
+kalpac|1
+(noun)|calpac|calpack|cap (generic term)
+kaluga|1
+(noun)|Kaluga|city (generic term)|metropolis (generic term)|urban center (generic term)
+kalumpang|1
+(noun)|Java olives|Sterculia foetida|sterculia (generic term)
+kaluresis|1
+(noun)|kaliuresis|symptom (generic term)
+kam-sui|1
+(noun)|Kam-Sui|Kadai (generic term)|Kam-Tai (generic term)|Kadai language (generic term)
+kam-tai|1
+(noun)|Kadai|Kam-Tai|Kadai language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+kam muang|1
+(noun)|Tai Yuan|Kam Muang|Tai (generic term)
+kama|1
+(noun)|Kama|Hindu deity (generic term)
+kamarupan|1
+(noun)|Kamarupan|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+kamasutra|1
+(noun)|Kamasutra|Sanskrit literature (generic term)
+kamba|1
+(noun)|Kamba|Bantu (generic term)|Bantoid language (generic term)
+kamchatka peninsula|1
+(noun)|Kamchatka Peninsula|peninsula (generic term)
+kamchatkan sea eagle|1
+(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle (generic term)
+kameez|1
+(noun)|tunic (generic term)
+kamehameha i|1
+(noun)|Kamehameha I|Kamehameha the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+kamehameha the great|1
+(noun)|Kamehameha I|Kamehameha the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+kamet|1
+(noun)|Kamet|mountain peak (generic term)
+kami|1
+(noun)|Kami|Japanese deity (generic term)
+kamia|2
+(noun)|Kamia|Hokan (generic term)|Hoka (generic term)
+(noun)|Kamia|Yuman (generic term)
+kamikaze|2
+(noun)|fighter (generic term)|fighter aircraft (generic term)|attack aircraft (generic term)
+(noun)|pilot (generic term)|airplane pilot (generic term)|suicide bomber (generic term)
+kammon strait bridge|1
+(noun)|Kammon Strait Bridge|suspension bridge (generic term)
+kampala|1
+(noun)|Kampala|capital of Uganda|national capital (generic term)
+kampong|1
+(noun)|campong|village (generic term)|hamlet (generic term)
+kampuchea|1
+(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country (generic term)|Asian nation (generic term)
+kampuchean|2
+(adj)|Cambodian|Kampuchean|Asian country|Asian nation (related term)
+(noun)|Cambodian|Kampuchean|Asian (generic term)|Asiatic (generic term)
+kan river|1
+(noun)|Gan Jiang|Kan River|river (generic term)
+kanaf|1
+(noun)|kenaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+kanamycin|1
+(noun)|Kantrex|antibiotic (generic term)|antibiotic drug (generic term)
+kananga|1
+(noun)|Kananga|Luluabourg|city (generic term)|metropolis (generic term)|urban center (generic term)
+kanara|1
+(noun)|Kanara|Canara|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+kanarese|2
+(noun)|Kanarese|Canarese|Dravidian (generic term)
+(noun)|Kannada|Kanarese|South Dravidian (generic term)
+kanawha|1
+(noun)|Kanawha|Kanawha River|river (generic term)
+kanawha river|1
+(noun)|Kanawha|Kanawha River|river (generic term)
+kanchanjanga|1
+(noun)|Kanchenjunga|Mount Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak (generic term)
+kanchenjunga|1
+(noun)|Kanchenjunga|Mount Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak (generic term)
+kanchil|1
+(noun)|Tragulus kanchil|chevrotain (generic term)|mouse deer (generic term)
+kandahar|1
+(noun)|Kandahar|Qandahar|city (generic term)|metropolis (generic term)|urban center (generic term)
+kandinski|1
+(noun)|Kandinsky|Wassily Kandinsky|Kandinski|Wassily Kandinski|painter (generic term)
+kandinsky|1
+(noun)|Kandinsky|Wassily Kandinsky|Kandinski|Wassily Kandinski|painter (generic term)
+kandy|1
+(noun)|Kandy|city (generic term)|metropolis (generic term)|urban center (generic term)
+kangaroo|1
+(noun)|marsupial (generic term)|pouched mammal (generic term)
+kangaroo's-foot|1
+(noun)|kangaroo paw|kangaroo's paw|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+kangaroo's paw|1
+(noun)|kangaroo paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+kangaroo-foot plant|1
+(noun)|kangaroo paw|kangaroo's paw|kangaroo's-foot|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+kangaroo apple|1
+(noun)|poroporo|Solanum aviculare|nightshade (generic term)
+kangaroo bear|1
+(noun)|koala|koala bear|native bear|Phascolarctos cinereus|phalanger (generic term)|opossum (generic term)|possum (generic term)
+kangaroo court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+kangaroo hare|1
+(noun)|hare wallaby|wallaby (generic term)|brush kangaroo (generic term)
+kangaroo jerboa|1
+(noun)|jerboa kangaroo|rat kangaroo (generic term)|kangaroo rat (generic term)
+kangaroo mouse|2
+(noun)|dwarf pocket rat|pocket rat (generic term)
+(noun)|jerboa rat (generic term)
+kangaroo paw|1
+(noun)|kangaroo's paw|kangaroo's-foot|kangaroo-foot plant|Australian sword lily|Anigozanthus manglesii|herb (generic term)|herbaceous plant (generic term)
+kangaroo rat|2
+(noun)|desert rat|Dipodomys phillipsii|pocket rat (generic term)
+(noun)|rat kangaroo|kangaroo (generic term)
+kannada|1
+(noun)|Kannada|Kanarese|South Dravidian (generic term)
+kannada-speaking|1
+(adj)|Kannada-speaking|communicative (similar term)|communicatory (similar term)
+kansa|1
+(noun)|Kansa|Kansas|Dhegiha (generic term)
+kansan|1
+(noun)|Kansan|American (generic term)
+kansas|3
+(noun)|Kansas|Sunflower State|KS|American state (generic term)
+(noun)|Kansas|Kansas River|Kaw River|river (generic term)
+(noun)|Kansa|Kansas|Dhegiha (generic term)
+kansas city|1
+(noun)|Kansas City|city (generic term)|metropolis (generic term)|urban center (generic term)
+kansas river|1
+(noun)|Kansas|Kansas River|Kaw River|river (generic term)
+kansu|1
+(noun)|Gansu|Kansu|Gansu province|state (generic term)|province (generic term)
+kant|1
+(noun)|Kant|Immanuel Kant|philosopher (generic term)
+kantian|1
+(adj)|Kantian|philosopher (related term)
+kantrex|1
+(noun)|kanamycin|Kantrex|antibiotic (generic term)|antibiotic drug (generic term)
+kanzu|1
+(noun)|garment (generic term)
+kaochlor|1
+(noun)|potassium chloride|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+kaoliang|1
+(noun)|grain sorghum (generic term)
+kaolin|1
+(noun)|china clay|china stone|kaoline|porcelain clay|terra alba|clay (generic term)
+kaoline|1
+(noun)|china clay|china stone|kaolin|porcelain clay|terra alba|clay (generic term)
+kaolinite|1
+(noun)|mineral (generic term)
+kaon|1
+(noun)|kappa-meson|k-meson|K particle|meson (generic term)|mesotron (generic term)
+kaopectate|1
+(noun)|Kaopectate|antidiarrheal (generic term)|antidiarrheal drug (generic term)
+kapeika|1
+(noun)|Belarusian monetary unit (generic term)
+kaph|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+kaplan group|1
+(noun)|Kaplan Group|Association of Islamic Groups and Communities|Caliphate State|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kapok|2
+(noun)|silk cotton|vegetable silk|plant fiber (generic term)|plant fibre (generic term)
+(noun)|ceiba tree|silk-cotton tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+kaposi's sarcoma|1
+(noun)|Kaposi's sarcoma|sarcoma (generic term)
+kaposi's varicelliform eruption|1
+(noun)|eczema vaccinatum|Kaposi's varicelliform eruption|eczema (generic term)|eruption (generic term)
+kappa|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+kappa-meson|1
+(noun)|kaon|k-meson|K particle|meson (generic term)|mesotron (generic term)
+kapsiki|1
+(noun)|Higi|Kapsiki|Biu-Mandara (generic term)
+kapuka|1
+(noun)|Griselinia littoralis|shrub (generic term)|bush (generic term)
+kaput|1
+(adj)|done for|gone|destroyed (similar term)
+kara kum|1
+(noun)|Kara Kum|Qara Qum|Turkestan Desert|desert (generic term)
+kara sea|1
+(noun)|Kara Sea|sea (generic term)
+karabiner|1
+(noun)|carabiner|snap ring|hoop (generic term)|ring (generic term)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+karachi|1
+(noun)|Karachi|city (generic term)|metropolis (generic term)|urban center (generic term)
+karaites|1
+(noun)|Karaites|sect (generic term)|religious sect (generic term)|religious order (generic term)
+karakalpak|2
+(noun)|Karakalpak|Turki (generic term)
+(noun)|Karakalpak|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+karakoram|1
+(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+karakoram range|1
+(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+karakorum range|1
+(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+karakul|1
+(noun)|broadtail|caracul|domestic sheep (generic term)|Ovis aries (generic term)
+karaoke|1
+(noun)|singing (generic term)|vocalizing (generic term)
+karat|1
+(noun)|carat|kt|unit of measurement (generic term)|unit (generic term)
+karate|1
+(noun)|martial art (generic term)
+karaya gum|1
+(noun)|sterculia gum|gum (generic term)
+karbala|1
+(noun)|Kerbala|Karbala|Kerbela|city (generic term)|metropolis (generic term)|urban center (generic term)
+karel capek|1
+(noun)|Capek|Karel Capek|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+karelia|1
+(noun)|Karelia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+karelian|2
+(noun)|Karelian|Carelian|Russian (generic term)
+(noun)|Karelian|Carelian|Baltic-Finnic (generic term)
+karelian isthmus|1
+(noun)|Karelian Isthmus|isthmus (generic term)
+karen|1
+(noun)|Karen|Karenic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+karen blixen|1
+(noun)|Dinesen|Isak Dinesen|Blixen|Karen Blixen|Baroness Karen Blixen|writer (generic term)|author (generic term)
+karen danielsen horney|1
+(noun)|Horney|Karen Horney|Karen Danielsen Horney|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karen horney|1
+(noun)|Horney|Karen Horney|Karen Danielsen Horney|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karenic|1
+(noun)|Karen|Karenic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+karl-marx-stadt|1
+(noun)|Chemnitz|Karl-Marx-Stadt|city (generic term)|metropolis (generic term)|urban center (generic term)
+karl adolf eichmann|1
+(noun)|Eichmann|Adolf Eichmann|Karl Adolf Eichmann|Nazi (generic term)|German Nazi (generic term)
+karl adolph verner|1
+(noun)|Verner|Karl Adolph Verner|philologist (generic term)|philologue (generic term)
+karl alex muller|1
+(noun)|Muller|Karl Alex Muller|nuclear physicist (generic term)
+karl augustus menninger|1
+(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karl baedeker|1
+(noun)|Baedeker|Karl Baedeker|publisher (generic term)
+karl barth|1
+(noun)|Barth|Karl Barth|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+karl czerny|1
+(noun)|Czerny|Karl Czerny|pianist (generic term)|piano player (generic term)|composer (generic term)
+karl friedrich gauss|1
+(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician (generic term)
+karl friedrich hieronymus von munchhausen|1
+(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist (generic term)|raconteur (generic term)
+karl gauss|1
+(noun)|Gauss|Karl Gauss|Karl Friedrich Gauss|mathematician (generic term)
+karl gjellerup|1
+(noun)|Gjellerup|Karl Gjellerup|writer (generic term)|author (generic term)
+karl gunnar myrdal|1
+(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist (generic term)|economic expert (generic term)
+karl gustav jacob jacobi|1
+(noun)|Jacobi|Karl Gustav Jacob Jacobi|mathematician (generic term)
+karl jaspers|1
+(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karl landsteiner|1
+(noun)|Landsteiner|Karl Landsteiner|diagnostician (generic term)|pathologist (generic term)
+karl linne|1
+(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+karl marx|1
+(noun)|Marx|Karl Marx|philosopher (generic term)|economist (generic term)|economic expert (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+karl menninger|1
+(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karl rudolf gerd von rundstedt|1
+(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal (generic term)
+karl scheele|1
+(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist (generic term)
+karl theodor jaspers|1
+(noun)|Jaspers|Karl Jaspers|Karl Theodor Jaspers|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+karl von clausewitz|1
+(noun)|Clausewitz|Karl von Clausewitz|general (generic term)|full general (generic term)
+karl von frisch|1
+(noun)|Frisch|Karl von Frisch|zoologist (generic term)|animal scientist (generic term)
+karl waldemar ziegler|1
+(noun)|Ziegler|Karl Waldemar Ziegler|chemist (generic term)
+karl wernicke|1
+(noun)|Wernicke|Karl Wernicke|neurologist (generic term)|brain doctor (generic term)
+karl wilhelm scheele|1
+(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist (generic term)
+karl wilhelm siemens|1
+(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+karlfeldt|1
+(noun)|Karlfeldt|Erik Axel Karlfeldt|poet (generic term)
+karloff|1
+(noun)|Karloff|Boris Karloff|William Henry Pratt|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+karma|1
+(noun)|destiny (generic term)|fate (generic term)
+karnataka|1
+(noun)|Karnataka|Mysore|state (generic term)|province (generic term)
+karok|2
+(noun)|Karok|Hokan (generic term)|Hoka (generic term)
+(noun)|Karok|Quoratean (generic term)
+karol wojtyla|1
+(noun)|John Paul II|Karol Wojtyla|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+karpov|1
+(noun)|Karpov|Anatoli Karpov|Anatoli Yevgenevich Karpov|chess master (generic term)
+karsavina|1
+(noun)|Karsavina|Tamara Karsavina|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+kartik|1
+(noun)|Kartik|Karttika|Hindu calendar month (generic term)
+kartikeya|1
+(noun)|Kartikeya|Karttikeya|Hindu deity (generic term)
+karttika|1
+(noun)|Kartik|Karttika|Hindu calendar month (generic term)
+karttikeya|1
+(noun)|Kartikeya|Karttikeya|Hindu deity (generic term)
+karyokinesis|1
+(noun)|organic process (generic term)|biological process (generic term)
+karyokinetic|1
+(adj)|organic process|biological process (related term)
+karyolymph|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+karyolysis|1
+(noun)|lysis (generic term)
+karyon|1
+(noun)|nucleus|cell nucleus|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+karyoplasm|1
+(noun)|nucleoplasm|protoplasm (generic term)|living substance (generic term)
+karyotype|1
+(noun)|constitution (generic term)|composition (generic term)|makeup (generic term)
+kasai|1
+(noun)|Kasai|Kasai River|River Kasai|river (generic term)
+kasai river|1
+(noun)|Kasai|Kasai River|River Kasai|river (generic term)
+kasbah|1
+(noun)|casbah|quarter (generic term)
+kasha|1
+(noun)|hot cereal (generic term)
+kashag|1
+(noun)|Kashag|advisory board (generic term)|planning board (generic term)
+kashmir|1
+(noun)|Kashmir|Cashmere|Jammu and Kashmir|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+kashmir goat|1
+(noun)|Cashmere goat|Kashmir goat|domestic goat (generic term)|Capra hircus (generic term)
+kashmiri|3
+(adj)|Kashmiri|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Kashmiri|Indian (generic term)
+(noun)|Kashmiri|Dard (generic term)|Dardic (generic term)|Dardic language (generic term)
+kaspar friedrich wolff|1
+(noun)|Wolff|Kaspar Friedrich Wolff|anatomist (generic term)
+kasparov|1
+(noun)|Kasparov|Gary Kasparov|Gary Weinstein|chess master (generic term)
+kassite|2
+(noun)|Kassite|Cassite|White (generic term)|white person (generic term)|Caucasian (generic term)
+(noun)|Kassite|Cassite|natural language (generic term)|tongue (generic term)
+kastler|1
+(noun)|Kastler|Alfred Kastler|physicist (generic term)
+kat|1
+(noun)|khat|qat|quat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+katabatic|1
+(adj)|catabatic|anabatic (antonym)
+katabatic wind|1
+(noun)|catabatic wind|wind (generic term)|air current (generic term)|current of air (generic term)
+katabolic|2
+(adj)|catabolic|organic process|biological process (related term)
+(adj)|catabolic|destructive-metabolic (similar term)|energy-releasing (similar term)|anabolic (antonym)
+katabolism|1
+(noun)|catabolism|dissimilation|destructive metabolism|organic process (generic term)|biological process (generic term)|anabolism (antonym)
+katamorphism|1
+(noun)|metamorphism (generic term)|anamorphism (antonym)
+katar|2
+(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country (generic term)|Asian nation (generic term)
+(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula (generic term)
+katar peninsula|1
+(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula (generic term)
+katari|2
+(adj)|Qatari|Katari|Asian country|Asian nation (related term)
+(noun)|Qatari|Katari|Arab (generic term)|Arabian (generic term)
+kate chopin|1
+(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer (generic term)|author (generic term)
+kate o'flaherty chopin|1
+(noun)|Chopin|Kate Chopin|Kate O'Flaherty Chopin|writer (generic term)|author (generic term)
+kate smith|1
+(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+katharevusa|1
+(noun)|Katharevusa|Modern Greek (generic term)|New Greek (generic term)
+katharine hepburn|1
+(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress (generic term)
+katharine houghton hepburn|1
+(noun)|Hepburn|Katharine Hepburn|Katharine Houghton Hepburn|actress (generic term)
+katharobe|1
+(noun)|organism (generic term)|being (generic term)
+katharobic|1
+(adj)|organism|being (related term)
+katharometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+katharsis|2
+(noun)|catharsis|purgation|purge (generic term)|purging (generic term)
+(noun)|catharsis|abreaction|purge (generic term)|purging (generic term)
+katherine anne porter|1
+(noun)|Porter|Katherine Anne Porter|writer (generic term)|author (generic term)
+katherine cornell|1
+(noun)|Cornell|Katherine Cornell|actress (generic term)
+katherine mansfield|1
+(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer (generic term)|author (generic term)
+kathleen mansfield beauchamp|1
+(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer (generic term)|author (generic term)
+kathmandu|1
+(noun)|Kathmandu|Katmandu|capital of Nepal|national capital (generic term)
+kathryn elizabeth smith|1
+(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+katmai national park|1
+(noun)|Katmai National Park|national park (generic term)
+katmandu|1
+(noun)|Kathmandu|Katmandu|capital of Nepal|national capital (generic term)
+katowice|1
+(noun)|Katowice|city (generic term)|metropolis (generic term)|urban center (generic term)
+katsina|1
+(noun)|Katsina|city (generic term)|metropolis (generic term)|urban center (generic term)
+katsura tree|1
+(noun)|Cercidiphyllum japonicum|angiospermous tree (generic term)|flowering tree (generic term)
+katsushika hokusai|1
+(noun)|Hokusai|Katsushika Hokusai|painter (generic term)
+katsuwonidae|1
+(noun)|Katsuwonidae|family Kasuwonidae|fish family (generic term)
+katsuwonus|1
+(noun)|Katsuwonus|genus Katsuwonus|fish genus (generic term)
+katsuwonus pelamis|1
+(noun)|bonito|oceanic bonito|Katsuwonus pelamis|scombroid (generic term)|scombroid fish (generic term)
+kattegatt|1
+(noun)|Kattegatt|strait (generic term)|sound (generic term)
+katydid|1
+(noun)|long-horned grasshopper (generic term)|tettigoniid (generic term)
+katzenjammer|2
+(noun)|hangover|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|hubbub|uproar|brouhaha|noise (generic term)
+kauai|1
+(noun)|Kauai|Kauai Island|island (generic term)
+kauai island|1
+(noun)|Kauai|Kauai Island|island (generic term)
+kaufman|1
+(noun)|Kaufman|George S. Kaufman|George Simon Kaufman|dramatist (generic term)|playwright (generic term)
+kaunas|1
+(noun)|Kaunas|Kovna|Kovno|city (generic term)|metropolis (generic term)|urban center (generic term)
+kaunda|1
+(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman (generic term)|solon (generic term)|national leader (generic term)
+kauri|3
+(noun)|kauri copal|kauri resin|kauri gum|copal (generic term)
+(noun)|kaury|Agathis australis|kauri pine (generic term)|dammar pine (generic term)
+(noun)|wood (generic term)
+kauri copal|1
+(noun)|kauri|kauri resin|kauri gum|copal (generic term)
+kauri gum|1
+(noun)|kauri|kauri copal|kauri resin|copal (generic term)
+kauri pine|1
+(noun)|dammar pine|conifer (generic term)|coniferous tree (generic term)
+kauri resin|1
+(noun)|kauri|kauri copal|kauri gum|copal (generic term)
+kaury|1
+(noun)|kauri|Agathis australis|kauri pine (generic term)|dammar pine (generic term)
+kava|1
+(noun)|kavakava|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+kavakava|1
+(noun)|kava|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+kavir desert|1
+(noun)|Dasht-e-Kavir|Kavir Desert|Great Salt Desert|desert (generic term)
+kavrin|1
+(noun)|papaverine|Kavrin|muscle relaxant (generic term)
+kaw river|1
+(noun)|Kansas|Kansas River|Kaw River|river (generic term)
+kawaka|1
+(noun)|Libocedrus plumosa|cedar (generic term)|cedar tree (generic term)
+kawasaki disease|1
+(noun)|Kawasaki disease|mucocutaneous lymph node syndrome|disease (generic term)
+kay boyle|1
+(noun)|Boyle|Kay Boyle|writer (generic term)|author (generic term)
+kayak|2
+(noun)|canoe (generic term)
+(verb)|boat (generic term)
+kayo|2
+(noun)|knockout|KO|blow (generic term)
+(verb)|knock cold|knock out|beat (generic term)|beat up (generic term)|work over (generic term)
+kayoed|1
+(adj)|knocked out|KO'd|out|stunned|unconscious (similar term)
+kayser-fleischer ring|1
+(noun)|Kayser-Fleischer ring|symptom (generic term)
+kazak|3
+(noun)|Kazak|Kazakh|Turki (generic term)
+(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country (generic term)|Asian nation (generic term)
+(noun)|Kazak|Kazakh|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+kazakh|3
+(noun)|Kazak|Kazakh|Turki (generic term)
+(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country (generic term)|Asian nation (generic term)
+(noun)|Kazak|Kazakh|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+kazakhstan|1
+(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country (generic term)|Asian nation (generic term)
+kazakhstani|2
+(adj)|Kazakhstani|Asian country|Asian nation (related term)
+(noun)|Kazakhstani|Asian (generic term)|Asiatic (generic term)
+kazakhstani monetary unit|1
+(noun)|Kazakhstani monetary unit|monetary unit (generic term)
+kazakstan|1
+(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country (generic term)|Asian nation (generic term)
+kazan|2
+(noun)|Kazan|Elia Kazan|Elia Kazanjoglous|director (generic term)|theater director (generic term)|theatre director (generic term)
+(noun)|Kazan|city (generic term)|metropolis (generic term)|urban center (generic term)
+kazimir malevich|1
+(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter (generic term)
+kazimir severinovich malevich|1
+(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter (generic term)
+kazoo|1
+(noun)|wind instrument (generic term)|wind (generic term)
+kb|1
+(noun)|kilobyte|K|KB|computer memory unit (generic term)
+kbo|1
+(noun)|Kuiper belt object|KBO|minor planet (generic term)|planetoid (generic term)
+kc|1
+(noun)|kilohertz|kHz|kilocycle per second|kilocycle|rate (generic term)
+kea|1
+(noun)|Nestor notabilis|parrot (generic term)
+kean|1
+(noun)|Kean|Edmund Kean|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+keaton|1
+(noun)|Keaton|Buster Keaton|Joseph Francis Keaton|comedian (generic term)|comic (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+keats|1
+(noun)|Keats|John Keats|poet (generic term)
+keb|1
+(noun)|Geb|Keb|Egyptian deity (generic term)
+kebab|1
+(noun)|kabob|shish kebab|dish (generic term)
+keble|1
+(noun)|Keble|John Keble|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+kechua|2
+(noun)|Quechua|Kechua|South American Indian (generic term)
+(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+kechuan|2
+(adj)|Quechuan|Kechuan|South American Indian (related term)|Amerind|Amerindian language|American-Indian language|American Indian|Indian (related term)
+(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+kedgeree|1
+(noun)|dish (generic term)
+keel|3
+(noun)|carina (generic term)
+(noun)|beam (generic term)
+(verb)|stagger|reel|lurch|swag|careen|walk (generic term)
+keel-shaped|1
+(adj)|formed (similar term)
+keel arch|1
+(noun)|ogee arch|pointed arch (generic term)
+keel over|1
+(verb)|tumble (generic term)|topple (generic term)
+keelboat|1
+(noun)|river boat (generic term)
+keeled|1
+(adj)|ridged|carinate|carinated
+keeled garlic|1
+(noun)|Allium carinatum|alliaceous plant (generic term)
+keelson|1
+(noun)|beam (generic term)
+keen|7
+(adj)|acute|discriminating|incisive|knifelike|penetrating|penetrative|piercing|sharp|perceptive (similar term)
+(adj)|exquisite|intense (similar term)
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|neat|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(adj)|cutting|knifelike|piercing|stabbing|lancinate|lancinating|sharp (similar term)
+(adj)|sharp (similar term)
+(noun)|dirge (generic term)|coronach (generic term)|lament (generic term)|requiem (generic term)|threnody (generic term)
+(verb)|lament|express emotion (generic term)|express feelings (generic term)
+keen-eyed|1
+(adj)|sharp-eyed|eyed (similar term)
+keen-sighted|2
+(adj)|argus-eyed|hawk-eyed|lynx-eyed|quick-sighted|sharp-eyed|sharp-sighted|sighted (similar term)
+(adj)|eagle-eyed|farseeing|longsighted|farsighted (similar term)|presbyopic (similar term)
+keenness|3
+(noun)|acuteness|acuity|sharpness|intelligence (generic term)
+(noun)|eagerness|avidity|avidness|enthusiasm (generic term)
+(noun)|sharpness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|dullness (antonym)
+keep|24
+(noun)|support|livelihood|living|bread and butter|sustenance|resource (generic term)
+(noun)|donjon|dungeon|stronghold (generic term)|fastness (generic term)
+(noun)|hold|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+(verb)|maintain|hold|hold back (related term)|hold out (related term)|hold over (related term)|hold out (related term)|hold up (related term)|keep in (related term)|keep out (related term)|keep off (related term)|keep up (related term)|keep off (related term)|keep down (related term)|keep apart (related term)|keep up (related term)
+(verb)|continue|go on|proceed|go along|act (generic term)|move (generic term)|discontinue (antonym)
+(verb)|hold on|have (generic term)|have got (generic term)|hold (generic term)|keep back (related term)|keep back (related term)|lose (antonym)
+(verb)|prevent|let (antonym)
+(verb)|observe|break (antonym)
+(verb)|observe|maintain
+(verb)|maintain|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|lodge (generic term)|accommodate (generic term)
+(verb)|retain|continue|keep on|keep going|prolong (generic term)|sustain (generic term)|keep up (generic term)
+(verb)|sustain|maintain|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|stay fresh|stay (generic term)|remain (generic term)|rest (generic term)
+(verb)|observe|celebrate
+(verb)|restrain|suppress|keep back|hold back|prevent (generic term)|keep (generic term)
+(verb)|preserve|protect (generic term)
+(verb)|grow (generic term)|raise (generic term)|farm (generic term)|produce (generic term)
+(verb)|keep open|hold open|save|reserve (generic term)|hold (generic term)|book (generic term)
+(verb)|store (generic term)
+(verb)|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|maintain|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|confine (generic term)|detain (generic term)
+(verb)|preserve|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+keep abreast|1
+(verb)|keep up|follow
+keep an eye on|1
+(verb)|watch|observe|follow|watch over|check (generic term)|check up on (generic term)|look into (generic term)|check out (generic term)|suss out (generic term)|check over (generic term)|go over (generic term)|check into (generic term)
+keep apart|1
+(verb)|sequester|sequestrate|set apart|isolate|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+keep away|1
+(verb)|prevent (generic term)|keep (generic term)
+keep back|3
+(verb)|restrain|suppress|keep|hold back|prevent (generic term)|keep (generic term)
+(verb)|retain|hold|hold back|keep (generic term)|hold on (generic term)
+(verb)|withhold|deny (generic term)|refuse (generic term)
+keep company|1
+(verb)|company|companion|accompany|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+keep down|3
+(verb)|number|limit (generic term)|circumscribe (generic term)|confine (generic term)
+(verb)|repress|quash|subdue|subjugate|reduce|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|vomit (antonym)
+keep going|4
+(verb)|run on|continue (generic term)|go on (generic term)|proceed (generic term)|go along (generic term)|keep (generic term)
+(verb)|tide over|bridge over|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|retain|continue|keep|keep on|prolong (generic term)|sustain (generic term)|keep up (generic term)
+(verb)|patronize|patronise|patronage|support|foster (generic term)|nurture (generic term)
+keep guard|1
+(verb)|stand guard|stand watch|stand sentinel|guard (generic term)
+keep in|1
+(verb)|confine (generic term)|detain (generic term)
+keep in line|1
+(verb)|manipulate|control|interact (generic term)
+keep mum|1
+(verb)|close up|clam up|dummy up|shut up|belt up|button up|be quiet|open up (antonym)
+keep note|1
+(verb)|remember (generic term)|think of (generic term)
+keep off|2
+(verb)|avoid|abstain (generic term)|refrain (generic term)|desist (generic term)
+(verb)|stay off|avoid (generic term)
+keep on|1
+(verb)|retain|continue|keep|keep going|prolong (generic term)|sustain (generic term)|keep up (generic term)
+keep one's distance|1
+(verb)|stand back|keep one's eyes off|keep one's hands off|stay away|be (generic term)
+keep one's eyes off|1
+(verb)|stand back|keep one's distance|keep one's hands off|stay away|be (generic term)
+keep one's eyes open|1
+(verb)|keep one's eyes peeled|keep one's eyes skinned|watch (generic term)|look out (generic term)|watch out (generic term)
+keep one's eyes peeled|1
+(verb)|keep one's eyes skinned|keep one's eyes open|watch (generic term)|look out (generic term)|watch out (generic term)
+keep one's eyes skinned|1
+(verb)|keep one's eyes peeled|keep one's eyes open|watch (generic term)|look out (generic term)|watch out (generic term)
+keep one's hands off|1
+(verb)|stand back|keep one's eyes off|keep one's distance|stay away|be (generic term)
+keep one's mouth shut|1
+(verb)|keep quiet|shut one's mouth|talk (antonym)
+keep one's nose to the grindstone|1
+(verb)|plug away|peg away|slog|keep one's shoulder to the wheel|work (generic term)
+keep one's shoulder to the wheel|1
+(verb)|plug away|peg away|slog|keep one's nose to the grindstone|work (generic term)
+keep open|1
+(verb)|hold open|keep|save|reserve (generic term)|hold (generic term)|book (generic term)
+keep out|1
+(verb)|exclude|shut out|shut|prevent (generic term)|keep (generic term)|admit (antonym)
+keep pace|1
+(verb)|keep step|keep up (generic term)
+keep quiet|1
+(verb)|shut one's mouth|keep one's mouth shut|talk (antonym)
+keep step|1
+(verb)|keep pace|keep up (generic term)
+keep tabs on|1
+(verb)|watch (generic term)|observe (generic term)|follow (generic term)|watch over (generic term)|keep an eye on (generic term)
+keep to oneself|1
+(verb)|withhold (generic term)|keep back (generic term)
+keep up|3
+(verb)|prolong|sustain|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|conserve|preserve|maintain|keep (generic term)
+(verb)|keep abreast|follow
+keeper|2
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|custodian|steward|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+keeping|3
+(noun)|conformity (generic term)|conformation (generic term)|compliance (generic term)|abidance (generic term)
+(noun)|guardianship|safekeeping|duty (generic term)|responsibility (generic term)|obligation (generic term)
+(noun)|retention|holding|possession (generic term)|ownership (generic term)
+keepsake|1
+(noun)|souvenir|token|relic|object (generic term)|physical object (generic term)
+keeshond|1
+(noun)|spitz (generic term)
+keflex|1
+(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin (generic term)|Mefoxin (generic term)
+keflin|1
+(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin (generic term)|Mefoxin (generic term)
+keftab|1
+(noun)|cephalexin|Keflex|Keflin|Keftab|cephalosporin (generic term)|Mefoxin (generic term)
+keg|2
+(noun)|kegful|containerful (generic term)
+(noun)|barrel (generic term)|cask (generic term)
+kegel exercises|1
+(noun)|Kegel exercises|pubococcygeus exercises|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+kegful|1
+(noun)|keg|containerful (generic term)
+kei apple|1
+(noun)|kei apple bush|Dovyalis caffra|shrub (generic term)|bush (generic term)
+kei apple bush|1
+(noun)|kei apple|Dovyalis caffra|shrub (generic term)|bush (generic term)
+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 (generic term)
+keith rupert murdoch|1
+(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher (generic term)
+kekchi|2
+(noun)|Kekchi|Mayan (generic term)|Maya (generic term)
+(noun)|Kekchi|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+kekule|1
+(noun)|Kekule|Friedrich August Kekule|Friedrich August Kekule von Stradonitz|chemist (generic term)
+kekule formula|1
+(noun)|benzene formula|benzene ring|benzene nucleus|Kekule formula|benzene (generic term)|benzine (generic term)|benzol (generic term)
+keller|1
+(noun)|Keller|Helen Keller|Helen Adams Keller|lecturer (generic term)|writer (generic term)|author (generic term)
+kellogg|1
+(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer (generic term)
+kelly|3
+(noun)|Kelly|Emmett Kelly|Weary Willie|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress (generic term)
+(noun)|Kelly|Gene Kelly|Eugene Curran Kelly|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+keloid|1
+(noun)|cheloid|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+kelp|1
+(noun)|brown algae (generic term)
+kelp greenling|1
+(noun)|Hexagrammos decagrammus|greenling (generic term)
+kelpie|2
+(noun)|kelpy|evil spirit (generic term)
+(noun)|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+kelpwort|1
+(noun)|saltwort|barilla|glasswort|kali|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+kelpy|1
+(noun)|kelpie|evil spirit (generic term)
+kelt|1
+(noun)|Celt|Kelt|European (generic term)
+kelter|1
+(noun)|kilter|orderliness (generic term)|order (generic term)
+kelvin|2
+(noun)|K|temperature unit (generic term)
+(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist (generic term)
+kelvin scale|1
+(noun)|Kelvin scale|absolute scale|temperature scale (generic term)
+kemadrin|1
+(noun)|procyclidine|Kemadrin|muscle relaxant (generic term)
+kemal ataturk|1
+(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman (generic term)|solon (generic term)|national leader (generic term)
+kemal pasha|1
+(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman (generic term)|solon (generic term)|national leader (generic term)
+kempt|1
+(adj)|tidy|groomed (similar term)
+ken|2
+(noun)|cognizance|knowing (generic term)
+(noun)|sight|compass (generic term)|range (generic term)|reach (generic term)|grasp (generic term)
+ken elton kesey|1
+(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer (generic term)|author (generic term)
+ken kesey|1
+(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer (generic term)|author (generic term)
+ken russell|1
+(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+kenaf|2
+(noun)|deccan hemp|hemp (generic term)
+(noun)|kanaf|deccan hemp|bimli|bimli hemp|Indian hemp|Bombay hemp|Hibiscus cannabinus|hibiscus (generic term)
+kenai fjords national park|1
+(noun)|Kenai Fjords National Park|national park (generic term)
+kenalog|1
+(noun)|triamcinolone|Aristocort|Aristopak|Kenalog|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+kendal|1
+(noun)|Kendal green|Kendal|dye (generic term)|dyestuff (generic term)
+kendal green|1
+(noun)|Kendal green|Kendal|dye (generic term)|dyestuff (generic term)
+kendall|1
+(noun)|Kendall|Edward Kendall|Edward Calvin Kendall|biochemist (generic term)
+kendall's tau|1
+(noun)|tau coefficient of correlation|Kendall's tau|Kendall rank correlation|Kendall test (generic term)
+kendall partial rank correlation|1
+(noun)|Kendall partial rank correlation|Kendall test (generic term)
+kendall rank correlation|1
+(noun)|tau coefficient of correlation|Kendall's tau|Kendall rank correlation|Kendall test (generic term)
+kendall test|1
+(noun)|Kendall test|nonparametric statistic (generic term)|distribution free statistic (generic term)
+kendrew|1
+(noun)|Kendrew|Sir John Cowdery Kendrew|biologist (generic term)|life scientist (generic term)
+kennedia|1
+(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus (generic term)
+kennedia coccinea|1
+(noun)|coral vine|Kennedia coccinea|coral pea (generic term)
+kennedia prostrata|1
+(noun)|scarlet runner|running postman|Kennedia prostrata|coral pea (generic term)
+kennedy|2
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport (generic term)|airdrome (generic term)|aerodrome (generic term)|drome (generic term)
+kennedy international airport|1
+(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport (generic term)|airdrome (generic term)|aerodrome (generic term)|drome (generic term)
+kennedy interrnational|1
+(noun)|Kennedy|Kennedy Interrnational|Kennedy International Airport|airport (generic term)|airdrome (generic term)|aerodrome (generic term)|drome (generic term)
+kennedya|1
+(noun)|Kennedia|genus Kennedia|Kennedya|genus Kennedya|rosid dicot genus (generic term)
+kennel|2
+(noun)|doghouse|dog house|outbuilding (generic term)
+(verb)|shelter (generic term)
+kennelly|1
+(noun)|Kennelly|A. E. Kennelly|Arthur Edwin Kennelly|electrical engineer (generic term)
+kennelly-heaviside layer|1
+(noun)|Heaviside layer|Kennelly-Heaviside layer|E layer|E region|region (generic term)|part (generic term)
+kennesaw mountain|1
+(noun)|Kennesaw Mountain|pitched battle (generic term)
+kenneth bancroft clark|1
+(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist (generic term)
+kenneth clark|1
+(noun)|Clark|Kenneth Clark|Kenneth Bancroft Clark|psychologist (generic term)
+kenneth david kaunda|1
+(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman (generic term)|solon (generic term)|national leader (generic term)
+kenneth grahame|1
+(noun)|Grahame|Kenneth Grahame|writer (generic term)|author (generic term)
+kenneth kaunda|1
+(noun)|Kaunda|Kenneth Kaunda|Kenneth David Kaunda|statesman (generic term)|solon (generic term)|national leader (generic term)
+kenneth roberts|1
+(noun)|Roberts|Kenneth Roberts|writer (generic term)|author (generic term)
+kennewick|1
+(noun)|Kennewick|town (generic term)
+kenning|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+keno|1
+(noun)|lotto|bingo|beano|board game (generic term)
+kenogenesis|1
+(noun)|cenogenesis|caenogenesis|cainogenesis|kainogenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|palingenesis (antonym)
+kent|2
+(noun)|Kent|county (generic term)
+(noun)|Kent|Rockwell Kent|painter (generic term)
+kentan|1
+(noun)|tiger lily|devil lily|Lilium lancifolium|lily (generic term)
+kentish|2
+(noun)|Kentish|Jutish|Old English (generic term)|Anglo-Saxon (generic term)
+(noun)|Kentish|Middle English (generic term)
+kentuckian|1
+(noun)|Kentuckian|Bluegrass Stater|American (generic term)
+kentucky|1
+(noun)|Kentucky|Bluegrass State|KY|American state (generic term)
+kentucky black bass|1
+(noun)|Kentucky black bass|spotted black bass|Micropterus pseudoplites|black bass (generic term)
+kentucky blue|1
+(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass (generic term)|blue grass (generic term)
+kentucky bluegrass|1
+(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass (generic term)|blue grass (generic term)
+kentucky coffee tree|1
+(noun)|Kentucky coffee tree|bonduc|chicot|Gymnocladus dioica|tree (generic term)
+kentucky derby|1
+(noun)|Kentucky Derby|thoroughbred race (generic term)
+kentucky wonder|1
+(noun)|Kentucky wonder|Kentucky wonder bean|green bean (generic term)
+kentucky wonder bean|1
+(noun)|Kentucky wonder|Kentucky wonder bean|green bean (generic term)
+kentucky yellowwood|1
+(noun)|Kentucky yellowwood|gopherwood|Cladrastis lutea|Cladrastis kentukea|angiospermous yellowwood (generic term)
+kentucy blue grass|1
+(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass (generic term)|blue grass (generic term)
+kenya|1
+(noun)|Kenya|Republic of Kenya|African country (generic term)|African nation (generic term)
+kenya fever|1
+(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease (generic term)
+kenyan|2
+(adj)|Kenyan|African country|African nation (related term)
+(noun)|Kenyan|African (generic term)
+kenyan monetary unit|1
+(noun)|Kenyan monetary unit|monetary unit (generic term)
+kenyan shilling|1
+(noun)|Kenyan shilling|shilling|Kenyan monetary unit (generic term)
+kenyapithecus|1
+(noun)|Kenyapithecus|genus Kenyapithecus|mammal genus (generic term)
+kenyata|1
+(noun)|Kenyata|Jomo Kenyata|statesman (generic term)|solon (generic term)|national leader (generic term)
+kenzo tange|1
+(noun)|Tange|Kenzo Tange|architect (generic term)|designer (generic term)
+keogh plan|1
+(noun)|Keogh plan|pension plan (generic term)|pension account (generic term)|retirement plan (generic term)|retirement savings plan (generic term)|retirement savings account (generic term)|retirement account (generic term)|retirement program (generic term)
+keokuk|1
+(noun)|Keokuk|Indian chief (generic term)|Indian chieftain (generic term)|Sauk (generic term)|Sac (generic term)
+kepi|1
+(noun)|peaked cap|service cap|yachting cap|cap (generic term)
+kepler|1
+(noun)|Kepler|Johannes Kepler|Johan Kepler|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+kepler's first law|1
+(noun)|Kepler's first law|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+kepler's law|1
+(noun)|Kepler's law|Kepler's law of planetary motion|law (generic term)|law of nature (generic term)
+kepler's law of planetary motion|1
+(noun)|Kepler's law|Kepler's law of planetary motion|law (generic term)|law of nature (generic term)
+kepler's second law|1
+(noun)|Kepler's second law|law of areas|law of equal areas|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+kepler's third law|1
+(noun)|Kepler's third law|harmonic law|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+kept|1
+(adj)|unbroken|broken (antonym)
+kept up|1
+(adj)|maintained|well-kept|preserved (similar term)
+kept woman|1
+(noun)|mistress|fancy woman|woman (generic term)|adult female (generic term)|lover (generic term)
+kera|1
+(noun)|Kera|East Chadic (generic term)
+keratalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+keratectasia|1
+(noun)|astigmatism (generic term)|astigmia (generic term)
+keratin|1
+(noun)|ceratin|scleroprotein (generic term)|albuminoid (generic term)
+keratinisation|1
+(noun)|keratinization|organic process (generic term)|biological process (generic term)
+keratinise|2
+(verb)|keratinize|convert (generic term)
+(verb)|keratinize|change (generic term)
+keratinization|1
+(noun)|keratinisation|organic process (generic term)|biological process (generic term)
+keratinize|2
+(verb)|keratinise|convert (generic term)
+(verb)|keratinise|change (generic term)
+keratitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+keratoacanthoma|1
+(noun)|acanthoma (generic term)|skin tumor (generic term)
+keratocele|1
+(noun)|hernia (generic term)|herniation (generic term)
+keratoconjunctivitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+keratoconus|1
+(noun)|astigmatism (generic term)|astigmia (generic term)
+keratoderma|1
+(noun)|keratodermia|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+keratoderma blennorrhagica|1
+(noun)|keratosis blennorrhagica|keratosis (generic term)
+keratodermia|1
+(noun)|keratoderma|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+keratohyalin|1
+(noun)|hyaline (generic term)|hyalin (generic term)
+keratoiritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+keratomalacia|1
+(noun)|symptom (generic term)
+keratomycosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+keratonosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+keratonosus|1
+(noun)|eye disease (generic term)
+keratoplasty|1
+(noun)|corneal graft|corneal transplant|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)|transplant (generic term)|transplantation (generic term)|organ transplant (generic term)
+keratoscleritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+keratoscope|1
+(noun)|medical instrument (generic term)
+keratoscopy|1
+(noun)|examination (generic term)|scrutiny (generic term)
+keratosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+keratosis blennorrhagica|1
+(noun)|keratoderma blennorrhagica|keratosis (generic term)
+keratosis follicularis|1
+(noun)|Darier's disease|keratosis (generic term)
+keratosis nigricans|1
+(noun)|acanthosis nigricans|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+keratosis pilaris|1
+(noun)|keratosis (generic term)
+keratotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+kerb|1
+(noun)|curb|curbing|edge (generic term)
+kerb crawler|1
+(noun)|driver (generic term)
+kerbala|1
+(noun)|Kerbala|Karbala|Kerbela|city (generic term)|metropolis (generic term)|urban center (generic term)
+kerbela|1
+(noun)|Kerbala|Karbala|Kerbela|city (generic term)|metropolis (generic term)|urban center (generic term)
+kerbstone|1
+(noun)|curbstone|paving stone (generic term)
+kerchief|1
+(noun)|scarf (generic term)
+kerensky|1
+(noun)|Kerensky|Aleksandr Feodorovich Kerensky|statesman (generic term)|solon (generic term)|national leader (generic term)
+kerfuffle|1
+(noun)|disturbance|disruption|commotion|flutter|hurly burly|to-do|hoo-ha|hoo-hah|disorder (generic term)
+kerion|1
+(noun)|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+kern|4
+(noun)|Kern|Jerome Kern|Jerome David Kern|composer (generic term)
+(noun)|type (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)|kern (antonym)
+(verb)|get rid of (generic term)|remove (generic term)|kern (antonym)
+kernel|3
+(noun)|meat|plant part (generic term)|plant structure (generic term)
+(noun)|grain (generic term)|caryopsis (generic term)
+(noun)|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+kernicterus|1
+(noun)|jaundice (generic term)|icterus (generic term)
+kernig's sign|1
+(noun)|Kernig's sign|symptom (generic term)
+kernite|1
+(noun)|mineral (generic term)
+kerosene|1
+(noun)|kerosine|lamp oil|coal oil|fuel (generic term)|hydrocarbon (generic term)
+kerosene heater|1
+(noun)|oil heater|oilstove|kerosine heater|heater (generic term)|warmer (generic term)
+kerosene lamp|1
+(noun)|oil lamp|kerosine lamp|lamp (generic term)
+kerosine|1
+(noun)|kerosene|lamp oil|coal oil|fuel (generic term)|hydrocarbon (generic term)
+kerosine heater|1
+(noun)|oil heater|oilstove|kerosene heater|heater (generic term)|warmer (generic term)
+kerosine lamp|1
+(noun)|oil lamp|kerosene lamp|lamp (generic term)
+kerouac|1
+(noun)|Kerouac|Jack Kerouac|Jean-Louis Lebris de Kerouac|writer (generic term)|author (generic term)
+kerr cell|1
+(noun)|Kerr cell|optical device (generic term)
+kerry blue terrier|1
+(noun)|Kerry blue terrier|terrier (generic term)
+kerugma|1
+(noun)|kerygma|sermon (generic term)|discourse (generic term)|preaching (generic term)
+kerygma|1
+(noun)|kerugma|sermon (generic term)|discourse (generic term)|preaching (generic term)
+kesey|1
+(noun)|Kesey|Ken Kesey|Ken Elton Kesey|writer (generic term)|author (generic term)
+kestrel|2
+(noun)|sparrow hawk|American kestrel|Falco sparverius|falcon (generic term)
+(noun)|Falco tinnunculus|falcon (generic term)
+ketalar|1
+(noun)|ketamine|ketamine hydrochloride|Ketalar|general anesthetic (generic term)|general anaesthetic (generic term)|club drug (generic term)
+ketamine|1
+(noun)|ketamine hydrochloride|Ketalar|general anesthetic (generic term)|general anaesthetic (generic term)|club drug (generic term)
+ketamine hydrochloride|1
+(noun)|ketamine|Ketalar|general anesthetic (generic term)|general anaesthetic (generic term)|club drug (generic term)
+ketch|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+ketchup|1
+(noun)|catsup|cetchup|tomato ketchup|condiment (generic term)
+ketchup bottle|1
+(noun)|catsup bottle|bottle (generic term)
+keteleeria|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+ketembilla|2
+(noun)|kitembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+(noun)|kitembilla|kitambilla|edible fruit (generic term)
+ketembilla tree|1
+(noun)|ketembilla|kitembilla|kitambilla|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+ketoacidosis|1
+(noun)|diabetic acidosis|acidosis (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+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 (generic term)|DM (generic term)
+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 (generic term)|DM (generic term)
+ketoaciduria|1
+(noun)|ketonuria|acetonuria|symptom (generic term)
+ketohexose|1
+(noun)|ketose (generic term)|hexose (generic term)
+ketone|1
+(noun)|organic compound (generic term)
+ketone body|1
+(noun)|acetone body|ketone (generic term)
+ketone group|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+ketonemia|1
+(noun)|ketosis|acetonemia|symptom (generic term)
+ketonuria|1
+(noun)|ketoaciduria|acetonuria|symptom (generic term)
+ketoprofen|1
+(noun)|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ketorolac|1
+(noun)|Torodal|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ketorolac tromethamine|1
+(noun)|Acular|Toradol|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ketose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+ketosis|1
+(noun)|ketonemia|acetonemia|symptom (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+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 (generic term)|DM (generic term)
+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 (generic term)|DM (generic term)
+ketosteroid|1
+(noun)|steroid (generic term)
+kettering|1
+(noun)|Kettering|Charles Kettering|Charles Franklin Kettering|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+kettle|4
+(noun)|boiler|pot (generic term)
+(noun)|kettleful|containerful (generic term)
+(noun)|kettle hole|hole (generic term)|hollow (generic term)
+(noun)|kettledrum|tympanum|tympani|timpani|percussion instrument (generic term)|percussive instrument (generic term)
+kettle hole|1
+(noun)|kettle|hole (generic term)|hollow (generic term)
+kettle of fish|1
+(noun)|fix|hole|jam|mess|muddle|pickle|difficulty (generic term)
+kettledrum|1
+(noun)|kettle|tympanum|tympani|timpani|percussion instrument (generic term)|percussive instrument (generic term)
+kettleful|1
+(noun)|kettle|containerful (generic term)
+ketubim|1
+(noun)|Hagiographa|Ketubim|Writings|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+keuka lake|1
+(noun)|Keuka Lake|Lake Keuka|lake (generic term)
+keurboom|2
+(noun)|Virgilia divaricata|tree (generic term)
+(noun)|Virgilia capensis|Virgilia oroboides|tree (generic term)
+key|21
+(adj)|cardinal|central|fundamental|primal|important (similar term)|of import (similar term)
+(adj)|operative|significant (similar term)|important (similar term)
+(noun)|device (generic term)
+(noun)|explanation (generic term)
+(noun)|pitch (generic term)
+(noun)|tonality|musical notation (generic term)|atonality (antonym)
+(noun)|kilogram (generic term)|kg (generic term)|kilo (generic term)
+(noun)|samara|key fruit|achene (generic term)
+(noun)|Key|Francis Scott Key|lawyer (generic term)|attorney (generic term)|poet (generic term)
+(noun)|cay|Florida key|coral reef (generic term)
+(noun)|paint|space (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|positive identification (generic term)
+(noun)|winder|mechanical device (generic term)
+(noun)|keystone|headstone|building block (generic term)
+(noun)|lever (generic term)
+(verb)|identify|discover|key out|distinguish|describe|name
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|vandalize (generic term)|vandalise (generic term)
+(verb)|harmonize (generic term)|harmonise (generic term)|chord (generic term)
+(verb)|harmonize (generic term)|harmonise (generic term)|reconcile (generic term)
+key fruit|1
+(noun)|samara|key|achene (generic term)
+key lime|1
+(noun)|lime (generic term)
+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 (generic term)
+key pattern|1
+(noun)|fret|Greek fret|Greek key|architectural ornament (generic term)
+key ring|1
+(noun)|hoop (generic term)|ring (generic term)
+key signature|1
+(noun)|signature|musical notation (generic term)
+key west|1
+(noun)|Key West|town (generic term)
+key word|2
+(noun)|key (generic term)
+(noun)|word (generic term)
+keyboard|2
+(noun)|device (generic term)
+(noun)|holder (generic term)
+keyboard buffer|1
+(noun)|buffer (generic term)|buffer storage (generic term)|buffer store (generic term)
+keyboardist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+keycard|1
+(noun)|card (generic term)|identity card (generic term)
+keyed|3
+(adj)|attuned|tuned|adjusted (similar term)
+(adj)|keyless (antonym)
+(adj)|tonal (similar term)
+keyhole|1
+(noun)|hole (generic term)
+keyhole limpet|1
+(noun)|Fissurella apertura|Diodora apertura|limpet (generic term)
+keyhole saw|1
+(noun)|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+keyless|1
+(adj)|keyed (antonym)
+keynes|1
+(noun)|Keynes|John Maynard Keynes|economist (generic term)|economic expert (generic term)
+keynesian|2
+(adj)|Keynesian|economist|economic expert (related term)|economic theory (related term)
+(noun)|Keynesian|follower (generic term)
+keynesianism|1
+(noun)|Keynesianism|economic theory (generic term)
+keynote|5
+(noun)|subject (generic term)|topic (generic term)|theme (generic term)
+(noun)|idea (generic term)|thought (generic term)
+(noun)|tonic|note (generic term)|musical note (generic term)|tone (generic term)
+(verb)|set (generic term)
+(verb)|address (generic term)|speak (generic term)
+keynote address|1
+(noun)|keynote speech|oratory (generic term)
+keynote speech|1
+(noun)|keynote address|oratory (generic term)
+keypad|1
+(noun)|computer keyboard|keyboard (generic term)|data input device (generic term)|input device (generic term)
+keystone|2
+(noun)|anchor|mainstay|backbone|linchpin|lynchpin|support (generic term)
+(noun)|key|headstone|building block (generic term)
+keystone state|1
+(noun)|Pennsylvania|Keystone State|PA|American state (generic term)
+keystone stater|1
+(noun)|Pennsylvanian|Keystone Stater|American (generic term)
+kg|1
+(noun)|kilogram|kilo|metric weight unit (generic term)|weight unit (generic term)
+kgb|1
+(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency (generic term)
+khabarovsk|2
+(noun)|Khabarovsk|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Khabarovsk|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+khachaturian|1
+(noun)|Khachaturian|Aram Khachaturian|Aram Ilich Khachaturian|composer (generic term)
+khadafy|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+khaddar|1
+(noun)|khadi|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+khadi|1
+(noun)|khaddar|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+khaki|2
+(adj)|chromatic (similar term)
+(noun)|khaki fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+khaki fabric|1
+(noun)|khaki|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+khakis|1
+(noun)|military uniform (generic term)
+khalif|1
+(noun)|caliph|calif|kaliph|kalif|khalifah|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+khalifah|1
+(noun)|caliph|calif|kaliph|kalif|khalif|ruler (generic term)|swayer (generic term)|Muslim (generic term)|Moslem (generic term)
+khalka|2
+(noun)|Khalkha|Khalka|Kalka|Mongol (generic term)|Mongolian (generic term)
+(noun)|Khalkha|Khalka|Kalka|Mongolian (generic term)|Mongolic (generic term)|Mongolic language (generic term)
+khalkha|2
+(noun)|Khalkha|Khalka|Kalka|Mongol (generic term)|Mongolian (generic term)
+(noun)|Khalkha|Khalka|Kalka|Mongolian (generic term)|Mongolic (generic term)|Mongolic language (generic term)
+khalsa|1
+(noun)|Khalsa|religion (generic term)|faith (generic term)|organized religion (generic term)
+khama|1
+(noun)|Khama|Sir Seretse Khama|statesman (generic term)|solon (generic term)|national leader (generic term)
+khamsin|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+khamti|1
+(noun)|Khamti|Tai (generic term)
+khan|2
+(noun)|ruler (generic term)|swayer (generic term)
+(noun)|caravansary|caravanserai|caravan inn|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+khanate|2
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+khanty|2
+(noun)|Ostyak|Khanty|Russian (generic term)
+(noun)|Khanty|Ostyak|Ugric (generic term)|Ugrian (generic term)
+kharkiv|1
+(noun)|Kharkov|Kharkiv|city (generic term)|metropolis (generic term)|urban center (generic term)
+kharkov|1
+(noun)|Kharkov|Kharkiv|city (generic term)|metropolis (generic term)|urban center (generic term)
+khartoum|1
+(noun)|Khartoum|capital of Sudan|national capital (generic term)
+khat|1
+(noun)|kat|qat|quat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+khaya|1
+(noun)|Khaya|genus Khaya|rosid dicot genus (generic term)
+khayr ad-din|1
+(noun)|Barbarossa|Khayr ad-Din|corsair (generic term)|Barbary pirate (generic term)
+khedive|1
+(noun)|Khedive|viceroy (generic term)|vicereine (generic term)
+khepera|1
+(noun)|Khepera|Egyptian deity (generic term)
+khesari|1
+(noun)|grass pea|Indian pea|Lathyrus sativus|vetchling (generic term)
+khi|1
+(noun)|chi|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+khimar|1
+(noun)|headscarf (generic term)
+khios|1
+(noun)|Chios|Khios|Aegean island (generic term)
+khirghiz|2
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+khmer|2
+(noun)|Khmer|Mon-Khmer (generic term)
+(noun)|Khmer|Cambodian (generic term)|Kampuchean (generic term)
+khmer rouge|1
+(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+khoikhoi|1
+(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan (generic term)|Khoisan language (generic term)
+khoikhoin|1
+(noun)|Khoikhoin|Khoikhoi|Hottentot|Khoisan (generic term)|Khoisan language (generic term)
+khoisan|1
+(noun)|Khoisan|Khoisan language|natural language (generic term)|tongue (generic term)
+khoisan language|1
+(noun)|Khoisan|Khoisan language|natural language (generic term)|tongue (generic term)
+khomeini|1
+(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader (generic term)
+khoum|1
+(noun)|Mauritanian monetary unit (generic term)
+khowar|1
+(noun)|Khowar|Dard (generic term)|Dardic (generic term)|Dardic language (generic term)
+khrushchev|1
+(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman (generic term)|solon (generic term)|national leader (generic term)
+khuen|1
+(noun)|Khuen|Tai (generic term)
+khufu|1
+(noun)|Cheops|Khufu|Pharaoh (generic term)|Pharaoh of Egypt (generic term)
+khukuri|1
+(noun)|knife (generic term)
+khyber pass|1
+(noun)|Khyber Pass|pass (generic term)|mountain pass (generic term)|notch (generic term)
+khz|1
+(noun)|kilohertz|kHz|kilocycle per second|kilocycle|kc|rate (generic term)
+ki|2
+(noun)|qi|chi|ch'i|energy (generic term)|vim (generic term)|vitality (generic term)
+(noun)|Ki|Semitic deity (generic term)
+kia quen|1
+(noun)|torture (generic term)|torturing (generic term)
+kiaat|1
+(noun)|bloodwood tree|Pterocarpus angolensis|tree (generic term)
+kiang|1
+(noun)|Equus kiang|wild ass (generic term)
+kibbitz|1
+(verb)|kibitz|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)
+kibble|2
+(noun)|meal (generic term)
+(noun)|bucket (generic term)|pail (generic term)
+kibbutz|1
+(noun)|collective farm (generic term)
+kibbutznik|1
+(noun)|member (generic term)
+kibe|1
+(noun)|chilblain (generic term)|chilblains (generic term)|pernio (generic term)
+kibitz|1
+(verb)|kibbitz|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)
+kibitzer|1
+(noun)|meddler (generic term)
+kibosh|1
+(verb)|stop|halt|block|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+kichaga|1
+(noun)|Kichaga|Chaga|Chagga|Bantu (generic term)|Bantoid language (generic term)
+kichai|1
+(noun)|Kichai|Caddo (generic term)
+kick|14
+(noun)|boot|kicking|blow (generic term)
+(noun)|bang|boot|charge|rush|flush|thrill|exhilaration (generic term)|excitement (generic term)
+(noun)|recoil|movement (generic term)|motion (generic term)
+(noun)|gripe|beef|bitch|squawk|objection (generic term)
+(noun)|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+(noun)|kicking|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|strike out (generic term)
+(verb)|hit (generic term)|kick out (related term)|kick up (related term)|kick in (related term)|kick down (related term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|kick back|recoil|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+(verb)|forgo (generic term)|give up (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|complain|plain|sound off|quetch|kvetch|cheer (antonym)
+kick-start|1
+(verb)|start (generic term)|start up (generic term)
+kick about|1
+(verb)|kick around|knock about|exist (generic term)|be (generic term)
+kick around|3
+(verb)|knock about|kick about|exist (generic term)|be (generic term)
+(verb)|mistreat (generic term)|maltreat (generic term)|abuse (generic term)|ill-use (generic term)|step (generic term)|ill-treat (generic term)
+(verb)|bandy|hash out (generic term)|discuss (generic term)|talk over (generic term)
+kick back|2
+(verb)|pay (generic term)
+(verb)|recoil|kick|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+kick down|1
+(verb)|kick in|destroy (generic term)|ruin (generic term)
+kick downstairs|1
+(verb)|demote|bump|relegate|break|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|bump off (related term)|promote (antonym)
+kick in|3
+(verb)|set in|begin (generic term)|start (generic term)
+(verb)|contribute|give|chip in|give (generic term)
+(verb)|kick down|destroy (generic term)|ruin (generic term)
+kick in the butt|1
+(noun)|corporal punishment (generic term)
+kick off|1
+(verb)|inaugurate|start (generic term)|start up (generic term)|embark on (generic term)|commence (generic term)
+kick one's heels|1
+(verb)|cool one's heels|wait (generic term)
+kick out|3
+(verb)|expel|throw out|move (generic term)|displace (generic term)
+(verb)|oust|throw out|drum out|boot out|expel|remove (generic term)
+(verb)|expel|eject|chuck out|exclude|throw out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+kick pleat|1
+(noun)|pleat (generic term)|plait (generic term)
+kick start|1
+(noun)|kick starter|starter (generic term)|starter motor (generic term)|starting motor (generic term)
+kick starter|1
+(noun)|kick start|starter (generic term)|starter motor (generic term)|starting motor (generic term)
+kick the bucket|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+kick turn|1
+(noun)|turn (generic term)|turning (generic term)
+kick up|3
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|provoke|evoke|call forth|cause (generic term)|do (generic term)|make (generic term)
+kick upstairs|1
+(verb)|promote|upgrade|advance|raise|elevate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+kickapoo|2
+(noun)|Kickapoo|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Kickapoo|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+kickback|1
+(noun)|bribe (generic term)|payoff (generic term)
+kicker|1
+(noun)|football player (generic term)|footballer (generic term)
+kicking|2
+(noun)|kick|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|kick|boot|blow (generic term)
+kickoff|3
+(noun)|place kick (generic term)|place-kicking (generic term)|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|beginning|commencement|first|outset|get-go|start|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|send-off|start-off|start (generic term)
+kickshaw|1
+(noun)|dainty|delicacy|goody|treat|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+kicksorter|1
+(noun)|pulse height analyzer|scientific instrument (generic term)
+kid|7
+(noun)|child|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+(noun)|kidskin|leather (generic term)
+(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist (generic term)|playwright (generic term)
+(noun)|child|offspring (generic term)|progeny (generic term)|issue (generic term)|parent (antonym)
+(noun)|goat (generic term)|caprine animal (generic term)
+(verb)|pull the leg of|gull (generic term)|dupe (generic term)|slang (generic term)|befool (generic term)|cod (generic term)|fool (generic term)|put on (generic term)|take in (generic term)|put one over (generic term)|put one across (generic term)
+(verb)|chaff|jolly|josh|banter|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+kid-glove|1
+(adj)|tactful|diplomatic (similar term)|diplomatical (similar term)
+kid glove|1
+(noun)|suede glove|glove (generic term)
+kidd|1
+(noun)|Kidd|William Kidd|Captain Kidd|master (generic term)|captain (generic term)|sea captain (generic term)|skipper (generic term)
+kiddie porn|1
+(noun)|child pornography|kiddy porn|pornography (generic term)|porno (generic term)|porn (generic term)|erotica (generic term)|smut (generic term)
+kiddy|1
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+kiddy porn|1
+(noun)|child pornography|kiddie porn|pornography (generic term)|porno (generic term)|porn (generic term)|erotica (generic term)|smut (generic term)
+kidnap|1
+(verb)|nobble|abduct|snatch|seize (generic term)
+kidnaped|1
+(adj)|kidnapped|abducted
+kidnaper|1
+(noun)|kidnapper|abductor|snatcher|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|captor (generic term)|capturer (generic term)
+kidnapped|1
+(adj)|kidnaped|abducted
+kidnapper|1
+(noun)|kidnaper|abductor|snatcher|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|captor (generic term)|capturer (generic term)
+kidnapping|1
+(noun)|snatch|capture (generic term)|seizure (generic term)
+kidney|1
+(noun)|excretory organ (generic term)|urinary organ (generic term)
+kidney-shaped|1
+(adj)|reniform|simple (similar term)|unsubdivided (similar term)
+kidney bean|2
+(noun)|frijol|frijole|common bean (generic term)|common bean plant (generic term)|Phaseolus vulgaris (generic term)
+(noun)|common bean (generic term)
+kidney begonia|1
+(noun)|beefsteak begonia|Begonia erythrophylla|Begonia feastii|begonia (generic term)
+kidney disease|1
+(noun)|renal disorder|nephropathy|nephrosis|uropathy (generic term)
+kidney failure|1
+(noun)|renal failure|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)|failure (generic term)
+kidney fern|1
+(noun)|Trichomanes reniforme|bristle fern (generic term)|filmy fern (generic term)
+kidney pie|1
+(noun)|meat pie (generic term)
+kidney stone|1
+(noun)|urinary calculus|nephrolith|renal calculus|calculus (generic term)|concretion (generic term)
+kidney vetch|1
+(noun)|Anthyllis vulneraria|herb (generic term)|herbaceous plant (generic term)
+kidney wort|1
+(noun)|coyote brush|coyote bush|chaparral broom|Baccharis pilularis|shrub (generic term)|bush (generic term)
+kidskin|1
+(noun)|kid|leather (generic term)
+kierkegaard|1
+(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher (generic term)
+kieselguhr|1
+(noun)|diatomaceous earth|diatomite|earth (generic term)|ground (generic term)|filter (generic term)
+kieserite|1
+(noun)|mineral (generic term)
+kieslowski|1
+(noun)|Kieslowski|Krzysztof Kieslowski|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+kiev|1
+(noun)|Kyyiv|Kiev|capital of the Ukraine|capital (generic term)
+kigali|1
+(noun)|Kigali|capital of Rwanda|national capital (generic term)
+kiggelaria|1
+(noun)|Kiggelaria|genus Kiggelaria|dilleniid dicot genus (generic term)
+kiggelaria africana|1
+(noun)|wild peach|Kiggelaria africana|shrub (generic term)|bush (generic term)
+kike|1
+(noun)|hymie|sheeny|yid|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+kikladhes|1
+(noun)|Cyclades|Kikladhes|Aegean island (generic term)
+kildeer|1
+(noun)|killdeer|killdeer plover|Charadrius vociferus|plover (generic term)
+kilderkin|1
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+kiley|1
+(noun)|kylie|boomerang (generic term)|throwing stick (generic term)|throw stick (generic term)
+kilimanjaro|1
+(noun)|Kilimanjaro|Mount Kilimanjaro|mountain peak (generic term)
+kiliwa|2
+(noun)|Kiliwa|Kiliwi|Hokan (generic term)|Hoka (generic term)
+(noun)|Kiliwa|Kiliwi|Yuman (generic term)
+kiliwi|2
+(noun)|Kiliwa|Kiliwi|Hokan (generic term)|Hoka (generic term)
+(noun)|Kiliwa|Kiliwi|Yuman (generic term)
+kill|14
+(noun)|killing|putting to death|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|destruction (generic term)|devastation (generic term)
+(verb)|kill off (related term)
+(verb)|shoot down|defeat|vote down|vote out|veto (generic term)|blackball (generic term)|negative (generic term)
+(verb)|stamp out|end (generic term)|terminate (generic term)
+(verb)|be (generic term)
+(verb)|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+(verb)|hit (generic term)
+(verb)|toss off|pop|bolt down|belt down|pour down|down|drink down|drink (generic term)|imbibe (generic term)
+(verb)|obliterate|wipe out|take away (generic term)|take out (generic term)
+(verb)|exhaust (generic term)|wash up (generic term)|beat (generic term)|tucker (generic term)|tucker out (generic term)
+(verb)|switch off (generic term)|cut (generic term)|turn off (generic term)|turn out (generic term)
+(verb)|destroy (generic term)|destruct (generic term)
+kill off|1
+(verb)|exterminate|kill (generic term)
+kill oneself|1
+(verb)|overexert oneself|strive (generic term)|reach (generic term)|strain (generic term)
+kill zone|1
+(noun)|killing zone|zone (generic term)
+killable|1
+(adj)|edible (similar term)|comestible (similar term)|eatable (similar term)
+killarney fern|1
+(noun)|Killarney fern|Trichomanes speciosum|bristle fern (generic term)|filmy fern (generic term)
+killdeer|1
+(noun)|kildeer|killdeer plover|Charadrius vociferus|plover (generic term)
+killdeer plover|1
+(noun)|killdeer|kildeer|Charadrius vociferus|plover (generic term)
+killer|4
+(noun)|slayer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|cause of death|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|difficulty (generic term)
+(noun)|killer whale|orca|grampus|sea wolf|Orcinus orca|dolphin (generic term)
+killer bee|2
+(noun)|investment banker (generic term)|underwriter (generic term)
+(noun)|Africanized bee|Africanized honey bee|Apis mellifera scutellata|Apis mellifera adansonii|honeybee (generic term)|Apis mellifera (generic term)
+killer cell|1
+(noun)|killer T cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell (generic term)|T lymphocyte (generic term)
+killer t cell|1
+(noun)|killer T cell|killer cell|cytotoxic T cell|CD8 T cell|CD8 cell|T cell (generic term)|T lymphocyte (generic term)
+killer whale|1
+(noun)|killer|orca|grampus|sea wolf|Orcinus orca|dolphin (generic term)
+killifish|1
+(noun)|cyprinodont (generic term)
+killing|4
+(adj)|sidesplitting|humorous (similar term)|humourous (similar term)
+(noun)|violent death|fatality (generic term)|human death (generic term)
+(noun)|kill|putting to death|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|cleanup|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+killing field|1
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+killing zone|1
+(noun)|kill zone|zone (generic term)
+killingly|1
+(adv)|sidesplittingly
+killjoy|1
+(noun)|spoilsport|wet blanket|party pooper|unwelcome person (generic term)|persona non grata (generic term)
+kiln|1
+(noun)|furnace (generic term)
+kiln-dried|1
+(adj)|dry (similar term)
+kilo|1
+(noun)|kilogram|kg|metric weight unit (generic term)|weight unit (generic term)
+kilobyte|1
+(noun)|K|KB|computer memory unit (generic term)
+kilocalorie|1
+(noun)|Calorie|kilogram calorie|large calorie|nutritionist's calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+kilocycle|1
+(noun)|kilohertz|kHz|kilocycle per second|kc|rate (generic term)
+kilocycle per second|1
+(noun)|kilohertz|kHz|kilocycle|kc|rate (generic term)
+kilogram|1
+(noun)|kg|kilo|metric weight unit (generic term)|weight unit (generic term)
+kilogram-meter|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+kilogram calorie|1
+(noun)|Calorie|kilocalorie|large calorie|nutritionist's calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+kilohertz|1
+(noun)|kHz|kilocycle per second|kilocycle|kc|rate (generic term)
+kiloliter|1
+(noun)|kilolitre|cubic meter|cubic metre|metric capacity unit (generic term)
+kilolitre|1
+(noun)|kiloliter|cubic meter|cubic metre|metric capacity unit (generic term)
+kilometer|1
+(noun)|kilometre|km|klick|metric linear unit (generic term)
+kilometers per hour|1
+(noun)|kilometres per hour|kph|km/h|rate (generic term)
+kilometre|1
+(noun)|kilometer|km|klick|metric linear unit (generic term)
+kilometres per hour|1
+(noun)|kilometers per hour|kph|km/h|rate (generic term)
+kiloton|2
+(noun)|avoirdupois unit (generic term)
+(noun)|explosive unit (generic term)
+kilovolt|1
+(noun)|kV|potential unit (generic term)
+kilovolt-ampere|1
+(noun)|power unit (generic term)
+kilowatt|1
+(noun)|kW|power unit (generic term)
+kilowatt hour|1
+(noun)|kW-hr|Board of Trade unit|B.T.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+kilroy|1
+(noun)|Kilroy|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+kilt|1
+(noun)|skirt (generic term)
+kilter|1
+(noun)|kelter|orderliness (generic term)|order (generic term)
+kimberley|1
+(noun)|Kimberley|city (generic term)|metropolis (generic term)|urban center (generic term)
+kimberlite|1
+(noun)|peridotite (generic term)
+kimono|1
+(noun)|robe (generic term)
+kin|3
+(adj)|akin|blood-related|cognate|consanguine|consanguineous|consanguineal|related (similar term)
+(noun)|kinsperson|family|relative (generic term)|relation (generic term)
+(noun)|kin group|kinship group|kindred|clan|tribe|social group (generic term)
+kin group|1
+(noun)|kin|kinship group|kindred|clan|tribe|social group (generic term)
+kina|1
+(noun)|Papuan monetary unit (generic term)
+kinaesthesia|2
+(noun)|kinesthesia|feeling of movement|somatosense (generic term)|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+(noun)|kinesthesis|kinaesthesis|kinesthesia|kinesthetics|muscle sense|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+kinaesthesis|1
+(noun)|kinesthesis|kinesthesia|kinaesthesia|kinesthetics|muscle sense|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+kinaesthetic|1
+(adj)|kinesthetic|proprioception (related term)
+kinaesthetically|1
+(adv)|kinesthetically
+kinanesthesia|1
+(noun)|proprioception (generic term)|kinesthesia (antonym)
+kinase|1
+(noun)|enzyme (generic term)
+kinchinjunga|1
+(noun)|Kanchenjunga|Mount Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak (generic term)
+kind|4
+(adj)|benignant (similar term)|gracious (similar term)|benign (similar term)|charitable (similar term)|benevolent (similar term)|kindly (similar term)|sympathetic (similar term)|good-hearted (similar term)|openhearted (similar term)|large-hearted (similar term)|gentle (similar term)|kindhearted (similar term)|kind-hearted (similar term)|considerate (related term)|benign (related term)|benignant (related term)|good-natured (related term)|merciful (related term)|soft (related term)|unkind (antonym)
+(adj)|genial|hospitable (similar term)
+(adj)|tolerant|forgiving (similar term)
+(noun)|sort|form|variety|category (generic term)
+kind-hearted|1
+(adj)|kindhearted|kind (similar term)
+kind-heartedness|1
+(noun)|kindheartedness|sympathy (generic term)|fellow feeling (generic term)
+kind of|1
+(adv)|rather|kinda|sort of
+kinda|1
+(adv)|rather|kind of|sort of
+kindergarten|1
+(noun)|preschool (generic term)
+kindergartener|1
+(noun)|preschooler|kindergartner|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+kindergartner|1
+(noun)|preschooler|kindergartener|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+kindhearted|1
+(adj)|kind-hearted|kind (similar term)
+kindheartedness|1
+(noun)|kind-heartedness|sympathy (generic term)|fellow feeling (generic term)
+kindle|3
+(verb)|inflame|flare up (generic term)
+(verb)|enkindle|conflagrate|inflame|ignite (generic term)|light (generic term)
+(verb)|arouse|elicit|enkindle|evoke|fire|raise|provoke|make (generic term)|create (generic term)
+kindled|1
+(adj)|ignited|enkindled|lighted (similar term)|lit (similar term)
+kindliness|1
+(noun)|helpfulness|friendliness (generic term)
+kindling|2
+(noun)|tinder|touchwood|spunk|punk|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+(noun)|ignition|firing|lighting|inflammation|burning (generic term)|combustion (generic term)
+kindly|3
+(adj)|charitable|benevolent|sympathetic|good-hearted|openhearted|large-hearted|kind (similar term)
+(adj)|benign (similar term)|benignant (similar term)
+(adv)|unkindly (antonym)
+kindness|3
+(noun)|good (generic term)|goodness (generic term)|unkindness (antonym)
+(noun)|forgivingness|mercifulness (generic term)|mercy (generic term)
+(noun)|benignity|action (generic term)
+kindred|3
+(adj)|akin|related|similar (similar term)
+(adj)|related (similar term)
+(noun)|kin|kin group|kinship group|clan|tribe|social group (generic term)
+kine|1
+(noun)|cattle|cows|oxen|Bos taurus|bovine (generic term)
+kinematics|1
+(noun)|mechanics (generic term)
+kinescope|1
+(noun)|picture tube|television tube|cathode-ray tube (generic term)|CRT (generic term)
+kinesiology|1
+(noun)|physiology (generic term)
+kinesis|1
+(noun)|reaction (generic term)|response (generic term)
+kinesthesia|2
+(noun)|kinaesthesia|feeling of movement|somatosense (generic term)|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+(noun)|kinesthesis|kinaesthesis|kinaesthesia|kinesthetics|muscle sense|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+kinesthesis|1
+(noun)|kinaesthesis|kinesthesia|kinaesthesia|kinesthetics|muscle sense|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+kinesthetic|1
+(adj)|kinaesthetic|proprioception (related term)
+kinesthetically|1
+(adv)|kinaesthetically
+kinesthetics|1
+(noun)|kinesthesis|kinaesthesis|kinesthesia|kinaesthesia|muscle sense|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+kinetic|3
+(adj)|mechanics (related term)
+(adj)|moving (similar term)
+(adj)|energizing|energising|dynamic (similar term)|dynamical (similar term)
+kinetic energy|1
+(noun)|K.E.|mechanical energy (generic term)
+kinetic theory|1
+(noun)|kinetic theory of gases|scientific theory (generic term)
+kinetic theory of gases|1
+(noun)|kinetic theory|scientific theory (generic term)
+kinetic theory of heat|1
+(noun)|kinetic theory (generic term)|kinetic theory of gases (generic term)
+kinetics|1
+(noun)|dynamics|mechanics (generic term)
+kinetochore|1
+(noun)|centromere|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+kinetoscope|1
+(noun)|Kinetoscope|device (generic term)
+kinetosis|1
+(noun)|motion sickness|ailment (generic term)|complaint (generic term)|ill (generic term)|nausea (generic term)|sickness (generic term)
+kinfolk|1
+(noun)|family|family line|folk|kinsfolk|sept|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+king|10
+(noun)|male monarch|Rex|sovereign (generic term)|crowned head (generic term)|monarch (generic term)|female monarch (antonym)|queen (antonym)
+(noun)|queen|world-beater|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|baron|big businessman|business leader|magnate|mogul|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+(noun)|eminence (generic term)|distinction (generic term)|preeminence (generic term)|note (generic term)
+(noun)|King|Billie Jean King|Billie Jean Moffitt King|tennis player (generic term)
+(noun)|King|B. B. King|Riley B King|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)
+(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|checker (generic term)
+(noun)|face card (generic term)|picture card (generic term)|court card (generic term)
+(noun)|chessman (generic term)|chess piece (generic term)
+king's counsel|1
+(noun)|King's Counsel|Counsel to the Crown (generic term)
+king's english|1
+(noun)|King's English|English (generic term)|English language (generic term)
+king's evil|1
+(noun)|scrofula|struma|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+king's ransom|1
+(noun)|treasure (generic term)|hoarded wealth (generic term)
+king's spear|1
+(noun)|yellow asphodel|Asphodeline lutea|asphodel (generic term)
+king-size|1
+(adj)|king-sized|large (similar term)|big (similar term)
+king-sized|1
+(adj)|king-size|large (similar term)|big (similar term)
+king arthur|1
+(noun)|Arthur|King Arthur|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+king arthur's round table|1
+(noun)|Round Table|King Arthur's Round Table|table (generic term)
+king begonia|1
+(noun)|rex begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia (generic term)
+king camp gilette|1
+(noun)|Gillette|King Camp Gilette|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+king charles spaniel|1
+(noun)|King Charles spaniel|toy spaniel (generic term)
+king cobra|1
+(noun)|hamadryad|Ophiophagus hannan|Naja hannah|cobra (generic term)
+king crab|4
+(noun)|Alaska king crab|Alaskan king crab|Alaska crab|crab (generic term)|crabmeat (generic term)
+(noun)|European spider crab|Maja squinado|spider crab (generic term)
+(noun)|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab (generic term)
+(noun)|horseshoe crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod (generic term)
+king devil|1
+(noun)|yellow hawkweed|Hieracium praealtum|weed (generic term)
+king ferdinand|1
+(noun)|Ferdinand|King Ferdinand|Ferdinand of Aragon|Ferdinand V|Ferdinand the Catholic|king (generic term)|male monarch (generic term)|Rex (generic term)
+king fern|2
+(noun)|crepe fern|Todea barbara|fern (generic term)
+(noun)|royal fern|royal osmund|ditch fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+king harold i|1
+(noun)|Harold I|King Harold I|Harold Harefoot|Harefoot|King of England (generic term)|King of Great Britain (generic term)
+king harold ii|1
+(noun)|Harold II|King Harold II|King of England (generic term)|King of Great Britain (generic term)
+king hussein|1
+(noun)|Hussein|Husain|Husayn|ibn Talal Hussein|King Hussein|king (generic term)|male monarch (generic term)|Rex (generic term)
+king james|1
+(noun)|James|James I|King James|King James I|King of England (generic term)|King of Great Britain (generic term)
+king james bible|1
+(noun)|Authorized Version|King James Version|King James Bible|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+king james i|1
+(noun)|James|James I|King James|King James I|King of England (generic term)|King of Great Britain (generic term)
+king james version|1
+(noun)|Authorized Version|King James Version|King James Bible|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+king john|1
+(noun)|John|King John|John Lackland|King of England (generic term)|King of Great Britain (generic term)
+king lear|1
+(noun)|Lear|King Lear|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+king mackerel|1
+(noun)|cavalla|cero|Scomberomorus cavalla|Spanish mackerel (generic term)
+king nut|1
+(noun)|big shellbark|big shellbark hickory|big shagbark|king nut hickory|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+king nut hickory|1
+(noun)|big shellbark|big shellbark hickory|big shagbark|king nut|Carya laciniosa|hickory (generic term)|hickory tree (generic term)
+king oedipus|1
+(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being (generic term)
+king of beasts|1
+(noun)|lion|Panthera leo|big cat (generic term)|cat (generic term)
+king of england|1
+(noun)|King of England|King of Great Britain|king (generic term)|male monarch (generic term)|Rex (generic term)
+king of france|1
+(noun)|King of France|king (generic term)|male monarch (generic term)|Rex (generic term)
+king of great britain|1
+(noun)|King of England|King of Great Britain|king (generic term)|male monarch (generic term)|Rex (generic term)
+king of swing|1
+(noun)|Goodman|Benny Goodman|Benjamin David Goodman|King of Swing|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+king of the germans|1
+(noun)|King of the Germans|king (generic term)|male monarch (generic term)|Rex (generic term)
+king of the herring|1
+(noun)|oarfish|ribbonfish|Regalecus glesne|soft-finned fish (generic term)|malacopterygian (generic term)
+king oliver|1
+(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician (generic term)|jazzman (generic term)
+king orange|1
+(noun)|temple orange|temple orange tree|tangor|Citrus nobilis|orange (generic term)|orange tree (generic term)
+king penguin|1
+(noun)|Aptenodytes patagonica|penguin (generic term)
+king post|1
+(noun)|post (generic term)
+king protea|1
+(noun)|honeypot|Protea cynaroides|protea (generic term)
+king salmon|2
+(noun)|chinook salmon|chinook|salmon (generic term)
+(noun)|chinook|chinook salmon|quinnat salmon|Oncorhynchus tshawytscha|salmon (generic term)
+king snake|1
+(noun)|kingsnake|colubrid snake (generic term)|colubrid (generic term)
+king vulture|1
+(noun)|Sarcorhamphus papa|New World vulture (generic term)|cathartid (generic term)
+king whiting|1
+(noun)|Menticirrhus americanus|whiting (generic term)
+king william pine|1
+(noun)|King William pine|Athrotaxis selaginoides|conifer (generic term)|coniferous tree (generic term)
+kingbird|1
+(noun)|Tyrannus tyrannus|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+kingbolt|1
+(noun)|kingpin|swivel pin|bolt (generic term)
+kingcup|2
+(noun)|marsh marigold|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|buttercup|butterflower|butter-flower|crowfoot|goldcup|herb (generic term)|herbaceous plant (generic term)
+kingdom|6
+(noun)|land|realm|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|country (generic term)|state (generic term)|land (generic term)
+(noun)|realm|domain (generic term)|demesne (generic term)|land (generic term)
+(noun)|monarchy (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|group (generic term)|grouping (generic term)
+kingdom animalia|1
+(noun)|Animalia|kingdom Animalia|animal kingdom|kingdom (generic term)
+kingdom come|2
+(noun)|afterlife (generic term)|hereafter (generic term)
+(noun)|future (generic term)|hereafter (generic term)|futurity (generic term)|time to come (generic term)
+kingdom fungi|1
+(noun)|Fungi|kingdom Fungi|fungus kingdom|kingdom (generic term)
+kingdom monera|1
+(noun)|Monera|kingdom Monera|Prokayotae|kingdom Prokaryotae|kingdom (generic term)
+kingdom of belgium|1
+(noun)|Belgium|Kingdom of Belgium|Belgique|European country (generic term)|European nation (generic term)
+kingdom of bhutan|1
+(noun)|Bhutan|Kingdom of Bhutan|Asian country (generic term)|Asian nation (generic term)
+kingdom of cambodia|1
+(noun)|Cambodia|Kingdom of Cambodia|Kampuchea|Asian country (generic term)|Asian nation (generic term)
+kingdom of denmark|1
+(noun)|Denmark|Kingdom of Denmark|Danmark|Scandinavian country (generic term)|Scandinavian nation (generic term)
+kingdom of god|1
+(noun)|Kingdom of God|domain (generic term)|demesne (generic term)|land (generic term)
+kingdom of lesotho|1
+(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country (generic term)|African nation (generic term)
+kingdom of morocco|1
+(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country (generic term)|African nation (generic term)
+kingdom of nepal|1
+(noun)|Nepal|Kingdom of Nepal|Asian country (generic term)|Asian nation (generic term)
+kingdom of norway|1
+(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country (generic term)|Scandinavian nation (generic term)
+kingdom of saudi arabia|1
+(noun)|Saudi Arabia|Kingdom of Saudi Arabia|Asian country (generic term)|Asian nation (generic term)
+kingdom of spain|1
+(noun)|Spain|Kingdom of Spain|Espana|European country (generic term)|European nation (generic term)
+kingdom of swaziland|1
+(noun)|Swaziland|Kingdom of Swaziland|African country (generic term)|African nation (generic term)
+kingdom of sweden|1
+(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country (generic term)|Scandinavian nation (generic term)
+kingdom of thailand|1
+(noun)|Thailand|Kingdom of Thailand|Siam|Asian country (generic term)|Asian nation (generic term)
+kingdom of the netherlands|1
+(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Nederland|Holland|European country (generic term)|European nation (generic term)
+kingdom of tonga|1
+(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country (generic term)|state (generic term)|land (generic term)
+kingdom plantae|1
+(noun)|Plantae|kingdom Plantae|plant kingdom|kingdom (generic term)
+kingdom prokaryotae|1
+(noun)|Monera|kingdom Monera|Prokayotae|kingdom Prokaryotae|kingdom (generic term)
+kingdom protoctista|1
+(noun)|Protoctista|kingdom Protoctista|kingdom (generic term)
+kingfish|5
+(noun)|saltwater fish (generic term)
+(noun)|cero|pintado|Scomberomorus regalis|Spanish mackerel (generic term)
+(noun)|white croaker|chenfish|Genyonemus lineatus|croaker (generic term)
+(noun)|whiting (generic term)
+(noun)|Seriola grandis|jack (generic term)
+kingfisher|1
+(noun)|coraciiform bird (generic term)
+kingfisher daisy|1
+(noun)|Felicia bergeriana|flower (generic term)
+kinglet|1
+(noun)|warbler (generic term)
+kinglike|1
+(adj)|kingly|noble (similar term)
+kingly|1
+(adj)|kinglike|noble (similar term)
+kingmaker|2
+(noun)|Warwick|Earl of Warwick|Richard Neville|Kingmaker|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+kingpin|3
+(noun)|top banana|bigwig|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|kingbolt|swivel pin|bolt (generic term)
+(noun)|headpin|bowling pin (generic term)|pin (generic term)
+kings canyon national park|1
+(noun)|Kings Canyon National Park|national park (generic term)
+kingship|1
+(noun)|rank (generic term)
+kingsnake|1
+(noun)|king snake|colubrid snake (generic term)|colubrid (generic term)
+kingston|2
+(noun)|Kingston|town (generic term)
+(noun)|Kingston|capital of Jamaica|Jamaican capital|national capital (generic term)
+kingston-upon hull|1
+(noun)|Hull|Kingston-upon Hull|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+kingstown|1
+(noun)|Kingstown|national capital (generic term)
+kingwood|2
+(noun)|wood (generic term)
+(noun)|kingwood tree|Dalbergia cearensis|tree (generic term)
+kingwood tree|1
+(noun)|kingwood|Dalbergia cearensis|tree (generic term)
+kinin|1
+(noun)|cytokinin|phytohormone (generic term)|plant hormone (generic term)|growth regulator (generic term)
+kink|7
+(noun)|crick|rick|wrick|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+(noun)|twist|twirl|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|idea (generic term)|thought (generic term)
+(noun)|difficulty (generic term)
+(verb)|crimp|crape|frizzle|frizz|kink up|curl (generic term)|wave (generic term)
+(verb)|curl|curve|change surface (generic term)
+kink up|1
+(verb)|crimp|crape|frizzle|frizz|kink|curl (generic term)|wave (generic term)
+kinkajou|2
+(noun)|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid (generic term)
+(noun)|potto|Perodicticus potto|lemur (generic term)
+kinky|3
+(adj)|perverted|abnormal (similar term)
+(adj)|crisp|frizzly|frizzy|nappy|curly (similar term)
+(adj)|far-out|offbeat|quirky|way-out|unconventional (similar term)
+kino|2
+(noun)|gum kino|kino gum|gum (generic term)
+(noun)|Pterocarpus marsupium|tree (generic term)
+kino gum|2
+(noun)|kino|gum kino|gum (generic term)
+(noun)|East India kino|Malabar kino|resin (generic term)|rosin (generic term)
+kinosternidae|1
+(noun)|Kinosternidae|family Kinosternidae|reptile family (generic term)
+kinosternon|1
+(noun)|Kinosternon|genus Kinosternon|reptile genus (generic term)
+kinsey|1
+(noun)|Kinsey|Alfred Charles Kinsey|zoologist (generic term)|animal scientist (generic term)
+kinsfolk|1
+(noun)|family|family line|folk|kinfolk|sept|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+kinshasa|1
+(noun)|Kinshasa|Leopoldville|national capital (generic term)
+kinship|2
+(noun)|affinity|relation (generic term)
+(noun)|family relationship|relationship|relation (generic term)
+kinship group|1
+(noun)|kin|kin group|kindred|clan|tribe|social group (generic term)
+kinsman|1
+(noun)|relative (generic term)|relation (generic term)
+kinsperson|1
+(noun)|kin|family|relative (generic term)|relation (generic term)
+kinswoman|1
+(noun)|relative (generic term)|relation (generic term)
+kinyarwanda|1
+(noun)|Kinyarwanda|Bantu (generic term)|Bantoid language (generic term)
+kiosk|1
+(noun)|booth|cubicle|stall|closet (generic term)
+kiowa|2
+(noun)|Kiowa|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Kiowa|Tanoan (generic term)|Tanoan language (generic term)
+kip|4
+(noun)|sleep (generic term)|nap (generic term)
+(noun)|Laotian monetary unit (generic term)
+(noun)|upstart|gymnastic exercise (generic term)
+(verb)|sleep|slumber|log Z's|catch some Z's|rest (generic term)|sleep in (related term)|sleep late (related term)|sleep in (related term)|sleep out (related term)|wake (antonym)
+kip down|1
+(verb)|go to bed|turn in|bed|crawl in|hit the hay|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+kipling|1
+(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer (generic term)|author (generic term)
+kiplingesque|1
+(adj)|Kiplingesque|writer|author (related term)
+kipp's apparatus|1
+(noun)|Kipp's apparatus|apparatus (generic term)|setup (generic term)
+kipper|1
+(noun)|kippered herring|herring (generic term)
+kippered herring|1
+(noun)|kipper|herring (generic term)
+kippered salmon|1
+(noun)|salmon (generic term)
+kirchhoff|1
+(noun)|Kirchhoff|G. R. Kirchhoff|Gustav Robert Kirchhoff|physicist (generic term)
+kirchhoff's laws|1
+(noun)|Kirchhoff's laws|law (generic term)|law of nature (generic term)
+kirchner|1
+(noun)|Kirchner|Ernst Ludwig Kirchner|painter (generic term)
+kirghiz|3
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+kirghizia|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kirghizstan|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kirgiz|3
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+(noun)|Kirghiz|Kirgiz|Khirghiz|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+kirgizia|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kirgizstan|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kiribati|1
+(noun)|Kiribati|Republic of Kiribati|country (generic term)|state (generic term)|land (generic term)
+kiribati dollar|1
+(noun)|Kiribati dollar|dollar (generic term)
+kirk|1
+(noun)|church (generic term)|church building (generic term)
+kirkia|1
+(noun)|Kirkia|genus Kirkia|rosid dicot genus (generic term)
+kirkia wilmsii|1
+(noun)|pepper tree|Kirkia wilmsii|tree (generic term)
+kirkuk|1
+(noun)|Kirkuk|city (generic term)|metropolis (generic term)|urban center (generic term)
+kirpan|1
+(noun)|dagger (generic term)|sticker (generic term)
+kirsch|1
+(noun)|brandy (generic term)
+kirtle|2
+(noun)|tunic (generic term)
+(noun)|dress (generic term)|frock (generic term)
+kishar|1
+(noun)|Kishar|Semitic deity (generic term)
+kishinev|1
+(noun)|Kishinev|Chisinau|capital of Moldova|capital (generic term)
+kishke|1
+(noun)|stuffed derma|dish (generic term)
+kislev|1
+(noun)|Kislev|Chislev|Jewish calendar month (generic term)
+kismat|1
+(noun)|kismet|destiny (generic term)|fate (generic term)
+kismet|1
+(noun)|kismat|destiny (generic term)|fate (generic term)
+kiss|6
+(noun)|buss|osculation|touch (generic term)|touching (generic term)
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+(noun)|candy kiss|candy (generic term)|confect (generic term)
+(noun)|touch (generic term)|touching (generic term)
+(verb)|buss|osculate|touch (generic term)
+(verb)|touch (generic term)
+kiss-me-over-the-garden-gate|1
+(noun)|prince's-feather|princess feather|prince's-plume|Polygonum orientale|subshrub (generic term)|suffrutex (generic term)
+kiss curl|1
+(noun)|spit curl|crimp (generic term)
+kiss of death|1
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+kiss of life|1
+(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|mouth-to-mouth resuscitation|resuscitation (generic term)|emergency procedure (generic term)
+kiss of peace|1
+(noun)|pax|greeting (generic term)|salutation (generic term)
+kisser|2
+(noun)|osculator|lover (generic term)
+(noun)|countenance|physiognomy|phiz|visage|smiler|mug|face (generic term)|human face (generic term)
+kissing|1
+(noun)|caressing|cuddling|fondling|hugging|necking|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+kissing bug|1
+(noun)|conenose|cone-nosed bug|conenose bug|big bedbug|assassin bug (generic term)|reduviid (generic term)
+kissing cousin|1
+(noun)|kissing kin|relative (generic term)|relation (generic term)
+kissing disease|1
+(noun)|infectious mononucleosis|mononucleosis|mono|glandular fever|infectious disease (generic term)
+kissing kin|1
+(noun)|kissing cousin|relative (generic term)|relation (generic term)
+kissinger|1
+(noun)|Kissinger|Henry Kissinger|Henry Alfred Kissinger|diplomat (generic term)|diplomatist (generic term)
+kisumu|1
+(noun)|Kisumu|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+kiswahili|1
+(noun)|Kiswahili|Bantu (generic term)|Bantoid language (generic term)
+kit|4
+(noun)|case (generic term)
+(noun)|outfit|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|young mammal (generic term)
+(verb)|kit out|kit up|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+kit bag|1
+(noun)|kitbag|backpack (generic term)|back pack (generic term)|knapsack (generic term)|packsack (generic term)|rucksack (generic term)|haversack (generic term)
+kit carson|1
+(noun)|Carson|Kit Carson|Christopher Carson|frontiersman (generic term)|backwoodsman (generic term)|mountain man (generic term)
+kit fox|2
+(noun)|Vulpes macrotis|fox (generic term)
+(noun)|prairie fox|Vulpes velox|fox (generic term)
+kit out|1
+(verb)|kit up|kit|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+kit up|1
+(verb)|kit out|kit|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+kitakyushu|1
+(noun)|Kitakyushu|city (generic term)|metropolis (generic term)|urban center (generic term)
+kitambilla|2
+(noun)|ketembilla|kitembilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+(noun)|ketembilla|kitembilla|edible fruit (generic term)
+kitbag|1
+(noun)|kit bag|backpack (generic term)|back pack (generic term)|knapsack (generic term)|packsack (generic term)|rucksack (generic term)|haversack (generic term)
+kitchen|1
+(noun)|room (generic term)
+kitchen appliance|1
+(noun)|home appliance (generic term)|household appliance (generic term)
+kitchen cabinet|1
+(noun)|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+kitchen garden|1
+(noun)|vegetable garden|vegetable patch|garden (generic term)
+kitchen help|1
+(noun)|hired help (generic term)
+kitchen island|1
+(noun)|island (generic term)
+kitchen match|1
+(noun)|match (generic term)|lucifer (generic term)|friction match (generic term)
+kitchen midden|1
+(noun)|eitchen midden|midden|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+kitchen range|1
+(noun)|stove|kitchen stove|range|cooking stove|kitchen appliance (generic term)
+kitchen sink|1
+(noun)|sink (generic term)
+kitchen stove|1
+(noun)|stove|range|kitchen range|cooking stove|kitchen appliance (generic term)
+kitchen table|1
+(noun)|table (generic term)
+kitchen utensil|1
+(noun)|utensil (generic term)
+kitchener|1
+(noun)|Kitchener|Herbert Kitchener|Horatio Herbert Kitchener|First Earl Kitchener of Khartoum|field marshal (generic term)
+kitchenette|1
+(noun)|kitchen (generic term)
+kitchenware|1
+(noun)|kitchen utensil (generic term)
+kite|7
+(noun)|check (generic term)|bank check (generic term)|cheque (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+(noun)|hawk (generic term)
+(verb)|increase (generic term)
+(verb)|obtain (generic term)
+(verb)|glide (generic term)
+(verb)|fly (generic term)
+kite balloon|1
+(noun)|barrage balloon (generic term)
+kite tail|1
+(noun)|bob (generic term)
+kitembilla|2
+(noun)|ketembilla|kitambilla|ketembilla tree|Ceylon gooseberry|Dovyalis hebecarpa|tree (generic term)
+(noun)|ketembilla|kitambilla|edible fruit (generic term)
+kith|1
+(noun)|social group (generic term)
+kitsch|2
+(adj)|ostentatious|pretentious|tasteless (similar term)
+(noun)|art (generic term)|fine art (generic term)
+kittee|1
+(noun)|torture (generic term)|torturing (generic term)
+kitten|2
+(noun)|kitty|young mammal (generic term)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+kitten-tails|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+kittenish|1
+(adj)|frisky|playful (similar term)
+kittiwake|1
+(noun)|gull (generic term)|seagull (generic term)|sea gull (generic term)
+kittul|1
+(noun)|wine palm|jaggery palm|kitul|kitul tree|toddy alm|Caryota urens|sago palm (generic term)
+kitty|4
+(noun)|pool|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(noun)|pot|jackpot|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(noun)|kitten|young mammal (generic term)
+(noun)|kitty-cat|puss|pussy|pussycat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+kitty-cat|1
+(noun)|kitty|puss|pussy|pussycat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+kitty-corner|1
+(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-cornered|oblique (similar term)
+kitty-cornered|1
+(adj)|catacorner|cata-cornered|catercorner|cater-cornered|catty-corner|catty-cornered|kitty-corner|oblique (similar term)
+kitty litter|1
+(noun)|Kitty Litter|clay (generic term)
+kitul|1
+(noun)|wine palm|jaggery palm|kittul|kitul tree|toddy alm|Caryota urens|sago palm (generic term)
+kitul tree|1
+(noun)|wine palm|jaggery palm|kitul|kittul|toddy alm|Caryota urens|sago palm (generic term)
+kivu|1
+(noun)|Kivu|Lake Kivu|lake (generic term)
+kiwi|4
+(noun)|Chinese gooseberry|kiwi vine|Actinidia chinensis|Actinidia deliciosa|vine (generic term)
+(noun)|New Zealander|Kiwi|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|kiwi fruit|Chinese gooseberry|edible fruit (generic term)
+(noun)|apteryx|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+kiwi-sized|1
+(adj)|sized (similar term)
+kiwi fruit|1
+(noun)|kiwi|Chinese gooseberry|edible fruit (generic term)
+kiwi vine|1
+(noun)|Chinese gooseberry|kiwi|Actinidia chinensis|Actinidia deliciosa|vine (generic term)
+kizil kum|1
+(noun)|Kyzyl Kum|Kizil Kum|Qizil Qum|desert (generic term)
+kkk|1
+(noun)|Ku Klux Klan|Klan|KKK|secret society (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+klaipeda|1
+(noun)|Klaipeda|Memel|city (generic term)|metropolis (generic term)|urban center (generic term)
+klamath|1
+(noun)|Klamath|Klamath River|river (generic term)
+klamath falls|1
+(noun)|Klamath Falls|town (generic term)
+klamath river|1
+(noun)|Klamath|Klamath River|river (generic term)
+klammath weed|1
+(noun)|Hypericum perforatum|St John's wort (generic term)
+klan|1
+(noun)|Ku Klux Klan|Klan|KKK|secret society (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+klansman|1
+(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist (generic term)
+klaproth|1
+(noun)|Klaproth|Martin Heinrich Klaproth|chemist (generic term)
+klaus fuchs|1
+(noun)|Fuchs|Klaus Fuchs|Emil Klaus Julius Fuchs|physicist (generic term)
+klavern|1
+(noun)|unit (generic term)|social unit (generic term)
+klavier|1
+(noun)|clavier|Klavier|stringed instrument (generic term)
+klaxon|1
+(noun)|claxon|horn (generic term)
+klebs-loeffler bacillus|1
+(noun)|Corynebacterium diphtheriae|C. diphtheriae|Klebs-Loeffler bacillus|corynebacterium (generic term)
+klebsiella|1
+(noun)|enteric bacteria (generic term)|enterobacteria (generic term)|enterics (generic term)|entric (generic term)
+klee|1
+(noun)|Klee|Paul Klee|painter (generic term)
+kleenex|1
+(noun)|Kleenex|tissue (generic term)|tissue paper (generic term)
+klein|3
+(noun)|Klein|Felix Klein|mathematician (generic term)
+(noun)|Klein|Melanie Klein|analyst (generic term)|psychoanalyst (generic term)
+(noun)|Klein|Calvin Klein|Calvin Richard Klein|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+klein bottle|1
+(noun)|Klein bottle|surface (generic term)
+kleist|1
+(noun)|Kleist|Heinrich von Kleist|Bernd Heinrich Wilhelm von Kleist|dramatist (generic term)|playwright (generic term)
+klemens metternich|1
+(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman (generic term)|solon (generic term)|national leader (generic term)
+kleptomania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+kleptomaniac|1
+(noun)|appropriator (generic term)
+klick|1
+(noun)|kilometer|kilometre|km|metric linear unit (generic term)
+klieg light|1
+(noun)|carbon arc lamp (generic term)|carbon arc (generic term)
+klimt|1
+(noun)|Klimt|Gustav Klimt|painter (generic term)
+kline|1
+(noun)|Kline|Franz Kline|Franz Joseph Kline|painter (generic term)
+klinefelter|1
+(noun)|Klinefelter|Harry F. Klinefelter|Harry Fitch Kleinfelter|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+klinefelter's syndrome|1
+(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome (generic term)
+klinefelter syndrome|1
+(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome (generic term)
+klondike|2
+(noun)|Klondike|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|solitaire (generic term)|patience (generic term)
+klopstock|1
+(noun)|Klopstock|Friedrich Gottlieb Klopstock|poet (generic term)
+klorvess|1
+(noun)|potassium chloride|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+kludge|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+klutz|1
+(noun)|stupid (generic term)|stupid person (generic term)|stupe (generic term)|dullard (generic term)|dolt (generic term)|pudding head (generic term)|pudden-head (generic term)|poor fish (generic term)|pillock (generic term)
+kluxer|1
+(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist (generic term)
+klystron|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+klyuchevskaya|1
+(noun)|Klyuchevskaya|volcano (generic term)
+km|1
+(noun)|kilometer|kilometre|klick|metric linear unit (generic term)
+km/h|1
+(noun)|kilometers per hour|kilometres per hour|kph|rate (generic term)
+knack|1
+(noun)|bent|hang|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+knacker|2
+(noun)|wrecker (generic term)
+(noun)|butcher (generic term)|slaughterer (generic term)
+knackered|1
+(adj)|drained|tired (similar term)
+knackwurst|1
+(noun)|knockwurst|sausage (generic term)
+knap|2
+(verb)|rap|strike (generic term)
+(verb)|chip|cut off|break off|cut (generic term)|chip at (related term)
+knapsack|1
+(noun)|backpack|back pack|packsack|rucksack|haversack|bag (generic term)
+knapweed|1
+(noun)|centaury (generic term)
+knave|2
+(noun)|rogue|rascal|rapscallion|scalawag|scallywag|varlet|villain (generic term)|scoundrel (generic term)
+(noun)|jack|face card (generic term)|picture card (generic term)|court card (generic term)
+knavery|1
+(noun)|dishonesty|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+knavish|1
+(adj)|crafty|cunning|dodgy|foxy|guileful|slick|sly|tricksy|tricky|wily|artful (similar term)
+knavishly|1
+(adv)|craftily|cunningly|foxily|slyly|trickily|artfully
+knawe|1
+(noun)|knawel|Scleranthus annuus|weed (generic term)
+knawel|1
+(noun)|knawe|Scleranthus annuus|weed (generic term)
+knead|2
+(verb)|work|manipulate (generic term)
+(verb)|massage|rub down|manipulate (generic term)
+knee|3
+(noun)|knee joint|human knee|articulatio genus|genu|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+(noun)|stifle|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(noun)|cloth covering (generic term)
+knee-deep|2
+(adj)|ankle-deep|shallow (similar term)
+(adv)|knee-high
+knee-hi|1
+(noun)|knee-high|sock (generic term)|stocking (generic term)
+knee-high|2
+(noun)|knee-hi|sock (generic term)|stocking (generic term)
+(adv)|knee-deep
+knee-jerk reflex|1
+(noun)|knee jerk|patellar reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+knee-length|1
+(adj)|hinge joint|ginglymus|ginglymoid joint (related term)
+knee bend|1
+(noun)|squat|squatting|leg exercise (generic term)
+knee brace|1
+(noun)|brace (generic term)
+knee breeches|1
+(noun)|breeches|knee pants|knickerbockers|knickers|trouser (generic term)|pant (generic term)
+knee jerk|1
+(noun)|knee-jerk reflex|patellar reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+knee joint|1
+(noun)|knee|human knee|articulatio genus|genu|hinge joint (generic term)|ginglymus (generic term)|ginglymoid joint (generic term)
+knee pad|1
+(noun)|protective garment (generic term)
+knee pants|1
+(noun)|breeches|knee breeches|knickerbockers|knickers|trouser (generic term)|pant (generic term)
+knee piece|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+kneecap|2
+(noun)|patella|kneepan|sesamoid bone (generic term)|sesamoid (generic term)|os sesamoideum (generic term)
+(verb)|shoot (generic term)|hit (generic term)|pip (generic term)
+kneel|2
+(noun)|kneeling|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|rest (generic term)
+kneeler|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|board (generic term)
+kneeling|1
+(noun)|kneel|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+kneepan|1
+(noun)|patella|kneecap|sesamoid bone (generic term)|sesamoid (generic term)|os sesamoideum (generic term)
+knell|3
+(noun)|bell (generic term)|toll (generic term)
+(verb)|ring (generic term)|peal (generic term)
+(verb)|ring|sound (generic term)
+knesset|1
+(noun)|Knesset|Knesseth|parliament (generic term)
+knesseth|1
+(noun)|Knesset|Knesseth|parliament (generic term)
+knickerbockers|1
+(noun)|breeches|knee breeches|knee pants|knickers|trouser (generic term)|pant (generic term)
+knickers|2
+(noun)|breeches|knee breeches|knee pants|knickerbockers|trouser (generic term)|pant (generic term)
+(noun)|bloomers|pants|drawers|underpants (generic term)
+knickknack|2
+(noun)|novelty|article (generic term)
+(noun)|bric-a-brac|nicknack|knickknackery|whatnot|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+knickknackery|1
+(noun)|bric-a-brac|knickknack|nicknack|whatnot|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+knife|4
+(noun)|edge tool (generic term)
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|tongue|projection (generic term)
+(verb)|stab|injure (generic term)|wound (generic term)
+knife-edge|1
+(noun)|limit (generic term)|bound (generic term)|boundary (generic term)
+knife-handle|1
+(noun)|razor clam|jackknife clam|clam (generic term)
+knife blade|1
+(noun)|blade (generic term)
+knife edge|1
+(noun)|cutting edge|edge (generic term)
+knife fight|1
+(noun)|snickersnee|cut-and-thrust|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+knife pleat|1
+(noun)|pleat (generic term)|plait (generic term)
+knife thrust|1
+(noun)|stab|thrust|blow (generic term)
+knifelike|4
+(adj)|sharp (similar term)
+(adj)|acute|discriminating|incisive|keen|penetrating|penetrative|piercing|sharp|perceptive (similar term)
+(adj)|cutting|keen|piercing|stabbing|lancinate|lancinating|sharp (similar term)
+(adj)|distinct (similar term)
+knight|3
+(noun)|male aristocrat (generic term)
+(noun)|horse|chessman (generic term)|chess piece (generic term)
+(verb)|dub|ennoble (generic term)|gentle (generic term)|entitle (generic term)
+knight's service|1
+(noun)|service (generic term)
+knight-errant|1
+(noun)|knight (generic term)
+knight bachelor|1
+(noun)|bachelor-at-arms|bachelor|knight (generic term)
+knight banneret|1
+(noun)|knight of the square flag|banneret|knight (generic term)
+knight errantry|2
+(noun)|quixotism|idealism (generic term)
+(noun)|code of conduct (generic term)|code of behavior (generic term)
+knight of the round table|1
+(noun)|Knight of the Round Table|knight (generic term)
+knight of the square flag|1
+(noun)|knight banneret|banneret|knight (generic term)
+knight templar|2
+(noun)|Knight Templar|Freemason (generic term)|Mason (generic term)
+(noun)|Knight Templar|Templar|knight (generic term)
+knighthood|1
+(noun)|nobility (generic term)|aristocracy (generic term)
+knightia|1
+(noun)|Knightia|genus Knightia|dicot genus (generic term)|magnoliopsid genus (generic term)
+knightliness|1
+(noun)|chivalry|principle (generic term)
+knightly|2
+(adj)|chivalric|medieval|past (similar term)
+(adj)|chivalrous|gallant|courteous (similar term)
+kniphofia|1
+(noun)|tritoma|flame flower|flame-flower|flameflower|herb (generic term)|herbaceous plant (generic term)
+kniphofia praecox|1
+(noun)|red-hot poker|Kniphofia praecox|poker plant (generic term)|Kniphofia uvaria (generic term)
+kniphofia uvaria|1
+(noun)|poker plant|Kniphofia uvaria|kniphofia (generic term)|tritoma (generic term)|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)
+knish|1
+(noun)|dish (generic term)
+knit|6
+(noun)|knitted fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|knit stitch|plain|plain stitch|knitting stitch (generic term)
+(noun)|knitting|knitwork|needlework (generic term)|needlecraft (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|entwine|join (generic term)|conjoin (generic term)
+(verb)|pucker|rumple|cockle|crumple|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+knit stitch|1
+(noun)|knit|plain|plain stitch|knitting stitch (generic term)
+knitted|1
+(adj)|unwoven (similar term)
+knitted fabric|1
+(noun)|knit|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+knitter|1
+(noun)|needleworker (generic term)
+knitting|2
+(noun)|knit|knitwork|needlework (generic term)|needlecraft (generic term)
+(noun)|handicraft (generic term)
+knitting machine|1
+(noun)|textile machine (generic term)
+knitting needle|1
+(noun)|needle (generic term)
+knitting stitch|1
+(noun)|stitch (generic term)
+knitwear|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+knitwork|1
+(noun)|knit|knitting|needlework (generic term)|needlecraft (generic term)
+knob|4
+(noun)|boss|projection (generic term)
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(noun)|node|thickening|convex shape (generic term)|convexity (generic term)
+(noun)|pommel|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+knob celery|1
+(noun)|celeriac|celery root|root celery|turnip-rooted celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+knobbed|1
+(adj)|gnarled|gnarly|knotted|knotty|crooked (similar term)
+knobble|1
+(noun)|knob (generic term)|boss (generic term)
+knobbly|1
+(adj)|knobby|unshapely (similar term)
+knobby|1
+(adj)|knobbly|unshapely (similar term)
+knobcone pine|1
+(noun)|Pinus attenuata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+knobkerrie|1
+(noun)|knobkerry|club (generic term)
+knobkerry|1
+(noun)|knobkerrie|club (generic term)
+knock|11
+(noun)|knocking|sound (generic term)
+(noun)|roast|criticism (generic term)|critique (generic term)
+(noun)|bash|bang|smash|belt|blow (generic term)|bump (generic term)
+(noun)|misfortune (generic term)|bad luck (generic term)
+(noun)|belt|rap|whack|whang|blow (generic term)
+(verb)|strike hard|strike (generic term)|knock over (related term)|knock down (related term)|knock out (related term)|knock cold (related term)
+(verb)|rap (generic term)|knap (generic term)
+(verb)|bump|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)|knock against (related term)|knock about (related term)|bump into (related term)
+(verb)|tap|rap|pink|sound (generic term)|go (generic term)
+(verb)|pink|ping|sound (generic term)|go (generic term)
+(verb)|criticize|criticise|pick apart|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)|praise (antonym)
+knock-down|1
+(adj)|powerful|strong (similar term)
+knock-down-and-drag-out|1
+(adj)|knockdown-dragout|violent (similar term)
+knock-knee|1
+(noun)|genu valgum|tibia valga|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+knock-kneed|1
+(adj)|unfit (similar term)
+knock-on effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+knock about|2
+(verb)|buffet|batter|strike (generic term)
+(verb)|kick around|kick about|exist (generic term)|be (generic term)
+knock against|1
+(verb)|run into|bump into|jar against|butt against|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+knock back|1
+(verb)|set back|put back|cost (generic term)|be (generic term)
+knock cold|1
+(verb)|knock out|kayo|beat (generic term)|beat up (generic term)|work over (generic term)
+knock down|2
+(verb)|down|cut down|push down|pull down|strike (generic term)
+(verb)|deck|coldcock|dump|floor|beat (generic term)
+knock off|5
+(verb)|neutralize|neutralise|liquidate|waste|do in|kill (generic term)
+(verb)|shave|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+(verb)|hook|snitch|thieve|cop|glom|steal (generic term)
+(verb)|dash off|scratch off|toss off|fling off|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|drop|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+knock on|1
+(noun)|play (generic term)
+knock out|5
+(verb)|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+(verb)|knock cold|kayo|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+(verb)|empty (generic term)
+knock over|1
+(verb)|overturn|tip over|turn over|upset|bowl over|tump over|move (generic term)|displace (generic term)
+knock rummy|1
+(noun)|gin|gin rummy|rummy (generic term)|rum (generic term)
+knock up|1
+(verb)|impregnate|bang up|prang up|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+knockabout|3
+(adj)|boisterous|spirited (similar term)
+(adj)|rugged (similar term)
+(noun)|sloop (generic term)
+knockdown|2
+(adj)|collective (similar term)
+(noun)|blow (generic term)
+knockdown-dragout|1
+(adj)|knock-down-and-drag-out|violent (similar term)
+knocked-out|1
+(adj)|damaged (similar term)
+knocked out|1
+(adj)|kayoed|KO'd|out|stunned|unconscious (similar term)
+knocker|5
+(noun)|big shot (generic term)|big gun (generic term)|big wheel (generic term)|big cheese (generic term)|big deal (generic term)|big enchilada (generic term)|big fish (generic term)|head honcho (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|detractor|disparager|depreciator|cynic (generic term)|faultfinder (generic term)
+(noun)|breast|bosom|boob|tit|titty|mammary gland (generic term)|mamma (generic term)
+(noun)|doorknocker|rapper|device (generic term)
+knocking|1
+(noun)|knock|sound (generic term)
+knockoff|1
+(noun)|clone|copy (generic term)
+knockout|3
+(adj)|hard|severe|strong (similar term)
+(noun)|smasher|stunner|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+(noun)|KO|kayo|blow (generic term)
+knockout drops|1
+(noun)|chloral hydrate (generic term)
+knockout punch|1
+(noun)|haymaker|KO punch|Sunday punch|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+knockwurst|1
+(noun)|knackwurst|sausage (generic term)
+knoll|1
+(noun)|mound|hillock|hummock|hammock|hill (generic term)
+knossos|1
+(noun)|Knossos|Cnossos|Cnossus|town (generic term)
+knot|10
+(noun)|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|wood (generic term)
+(noun)|gnarl|distorted shape (generic term)|distortion (generic term)
+(noun)|nautical mile|mile|mi|naut mi|international nautical mile|air mile|nautical linear unit (generic term)
+(noun)|slub|burl|roughness (generic term)|raggedness (generic term)
+(noun)|greyback|grayback|Calidris canutus|sandpiper (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|tie (generic term)|bind (generic term)
+(verb)|ravel|tangle|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)|unknot (antonym)|unravel (antonym)|unravel (antonym)
+knotgrass|1
+(noun)|Paspalum distichum|grass (generic term)
+knothole|1
+(noun)|hole (generic term)
+knotted|3
+(adj)|tied (similar term)|fastened (similar term)
+(adj)|gnarled|gnarly|knotty|knobbed|crooked (similar term)
+(adj)|knotty|snarled|snarly|tangled (similar term)
+knotted marjoram|1
+(noun)|sweet marjoram|Origanum majorana|Majorana hortensis|origanum (generic term)
+knottiness|1
+(noun)|complicatedness|complication|tortuousness|complexity (generic term)|complexness (generic term)
+knotty|4
+(adj)|baffling|problematic|problematical|tough|difficult (similar term)|hard (similar term)
+(adj)|gnarled|gnarly|knotted|knobbed|crooked (similar term)
+(adj)|Byzantine|convoluted|involved|tangled|tortuous|complex (similar term)
+(adj)|knotted|snarled|snarly|tangled (similar term)
+knotty pine|1
+(noun)|pine (generic term)
+knout|1
+(noun)|whip (generic term)
+know|8
+(noun)|knowing (generic term)
+(verb)|cognize|cognise|ignore (antonym)
+(verb)|experience|live|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|acknowledge|recognize|recognise|accept (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|recognize (generic term)|recognise (generic term)|realize (generic term)|realise (generic term)|agnize (generic term)|agnise (generic term)
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+know-all|1
+(noun)|know-it-all|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+know-how|1
+(noun)|ability (generic term)|power (generic term)
+know-it-all|1
+(noun)|know-all|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+know-nothing party|1
+(noun)|American Party|Know-Nothing Party|party (generic term)|political party (generic term)
+know apart|1
+(verb)|discriminate|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+know nothing|1
+(noun)|ignoramus|uneducated person|unskilled person (generic term)
+know the score|1
+(verb)|be with it|be on the ball|know what's going on|know what's what|know (generic term)
+know what's going on|1
+(verb)|know the score|be with it|be on the ball|know what's what|know (generic term)
+know what's what|1
+(verb)|know the score|be with it|be on the ball|know what's going on|know (generic term)
+knowable|1
+(adj)|cognizable|cognisable|cognoscible|unknowable (antonym)
+knower|1
+(noun)|apprehender|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+knowing|5
+(adj)|wise|wise to|informed (similar term)
+(adj)|deliberate|intentional|intended (similar term)
+(adj)|knowledgeable|informed (similar term)
+(adj)|enlightened|knowledgeable|learned|lettered|well-educated|well-read|educated (similar term)
+(noun)|higher cognitive process (generic term)
+knowingly|1
+(adv)|wittingly|unknowingly (antonym)|unwittingly (antonym)
+knowingness|2
+(noun)|awareness|consciousness|cognizance|cognisance|knowing (generic term)|incognizance (antonym)
+(noun)|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+knowledge|1
+(noun)|cognition|noesis|psychological feature (generic term)
+knowledge base|1
+(noun)|knowledge domain|content (generic term)|cognitive content (generic term)|mental object (generic term)
+knowledge domain|1
+(noun)|knowledge base|content (generic term)|cognitive content (generic term)|mental object (generic term)
+knowledgeability|1
+(noun)|knowledgeableness|initiation|wisdom (generic term)|wiseness (generic term)
+knowledgeable|3
+(adj)|enlightened|knowing|learned|lettered|well-educated|well-read|educated (similar term)
+(adj)|knowing|informed (similar term)
+(adj)|intimate|versed|experienced (similar term)|experient (similar term)
+knowledgeableness|1
+(noun)|knowledgeability|initiation|wisdom (generic term)|wiseness (generic term)
+knowlton's cactus|1
+(noun)|Knowlton's cactus|Pediocactus knowltonii|cactus (generic term)
+known|1
+(adj)|best-known (similar term)|better-known (similar term)|celebrated (similar term)|famed (similar term)|far-famed (similar term)|famous (similar term)|illustrious (similar term)|notable (similar term)|noted (similar term)|renowned (similar term)|identified (similar term)|legendary (similar term)|proverbial (similar term)|well-known (similar term)|acknowledged (related term)|familiar (related term)|glorious (related term)|unknown (antonym)
+known as|1
+(adj)|called|titled (similar term)
+knox|1
+(noun)|Knox|John Knox|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|historian (generic term)|historiographer (generic term)
+knoxville|1
+(noun)|Knoxville|city (generic term)|metropolis (generic term)|urban center (generic term)
+knuckle|3
+(noun)|knuckle joint|metacarpophalangeal joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+(verb)|press (generic term)
+(verb)|shoot (generic term)
+knuckle down|1
+(verb)|slave|break one's back|buckle down|work (generic term)|do work (generic term)
+knuckle duster|1
+(noun)|brass knucks|knucks|brass knuckles|knuckles|weapon (generic term)|arm (generic term)|weapon system (generic term)
+knuckle joint|2
+(noun)|knuckle|metacarpophalangeal joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+(noun)|hinge joint|joint (generic term)
+knuckle under|1
+(verb)|yield|give in|succumb|buckle under|accept (generic term)|consent (generic term)|go for (generic term)
+knuckleball|1
+(noun)|knuckler|pitch (generic term)|delivery (generic term)
+knucklebones|1
+(noun)|jacks|jackstones|child's game (generic term)
+knucklehead|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+knuckler|1
+(noun)|knuckleball|pitch (generic term)|delivery (generic term)
+knuckles|1
+(noun)|brass knucks|knucks|brass knuckles|knuckle duster|weapon (generic term)|arm (generic term)|weapon system (generic term)
+knucks|1
+(noun)|brass knucks|brass knuckles|knuckles|knuckle duster|weapon (generic term)|arm (generic term)|weapon system (generic term)
+knut|1
+(noun)|Canute|Cnut|Knut|Canute the Great|King of England (generic term)|King of Great Britain (generic term)
+knut hamsun|1
+(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer (generic term)|author (generic term)
+knut pedersen|1
+(noun)|Hamsun|Knut Hamsun|Knut Pedersen|writer (generic term)|author (generic term)
+ko|1
+(noun)|knockout|KO|kayo|blow (generic term)
+ko'd|1
+(adj)|knocked out|kayoed|KO'd|out|stunned|unconscious (similar term)
+ko punch|1
+(noun)|haymaker|knockout punch|KO punch|Sunday punch|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+koala|1
+(noun)|koala bear|kangaroo bear|native bear|Phascolarctos cinereus|phalanger (generic term)|opossum (generic term)|possum (generic term)
+koala bear|1
+(noun)|koala|kangaroo bear|native bear|Phascolarctos cinereus|phalanger (generic term)|opossum (generic term)|possum (generic term)
+koan|1
+(noun)|problem (generic term)
+koasati|2
+(noun)|Koasati|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Koasati|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+kob|1
+(noun)|Kobus kob|waterbuck (generic term)
+kobe|1
+(noun)|Kobe|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+kobenhavn|1
+(noun)|Copenhagen|Kobenhavn|Danish capital|national capital (generic term)
+kobo|1
+(noun)|Nigerian monetary unit (generic term)
+kobuk valley national park|1
+(noun)|Kobuk Valley National Park|national park (generic term)
+kobus|1
+(noun)|Kobus|genus Kobus|mammal genus (generic term)
+kobus kob|1
+(noun)|kob|Kobus kob|waterbuck (generic term)
+kobus leche|1
+(noun)|lechwe|Kobus leche|waterbuck (generic term)
+koch|1
+(noun)|Koch|Robert Koch|bacteriologist (generic term)
+kochia|1
+(noun)|Bassia|genus Bassia|Kochia|genus Kochia|caryophylloid dicot genus (generic term)
+kochia scoparia|1
+(noun)|summer cypress|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+kodagu|2
+(noun)|Kodagu|Dravidian (generic term)
+(noun)|Kodagu|South Dravidian (generic term)
+kodiak|2
+(noun)|Kodiak|Kodiak Island|island (generic term)
+(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+kodiak bear|1
+(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+kodiak island|1
+(noun)|Kodiak|Kodiak Island|island (generic term)
+koellia|1
+(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus (generic term)
+koestler|1
+(noun)|Koestler|Arthur Koestler|writer (generic term)|author (generic term)
+kogia|1
+(noun)|Kogia|genus Kogia|mammal genus (generic term)
+kogia breviceps|1
+(noun)|pygmy sperm whale|Kogia breviceps|toothed whale (generic term)
+kogia simus|1
+(noun)|dwarf sperm whale|Kogia simus|toothed whale (generic term)
+kohl|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+kohleria|1
+(noun)|houseplant (generic term)
+kohlrabi|2
+(noun)|Brassica oleracea gongylodes|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|turnip cabbage|cruciferous vegetable (generic term)
+koine|2
+(noun)|Koine|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+(noun)|lingua franca|interlanguage|language (generic term)|linguistic communication (generic term)
+koinonia|1
+(noun)|family (generic term)|fellowship (generic term)
+kok-saghyz|1
+(noun)|Russian dandelion|kok-sagyz|Taraxacum kok-saghyz|dandelion (generic term)|blowball (generic term)
+kok-sagyz|1
+(noun)|Russian dandelion|kok-saghyz|Taraxacum kok-saghyz|dandelion (generic term)|blowball (generic term)
+kokka|2
+(adj)|Kokka|sect|religious sect|religious order (related term)
+(noun)|Kokka Shinto|Kokka|sect (generic term)|religious sect (generic term)|religious order (generic term)
+kokka shinto|1
+(noun)|Kokka Shinto|Kokka|sect (generic term)|religious sect (generic term)|religious order (generic term)
+kokoi venom|1
+(noun)|venom (generic term)|neurotoxin (generic term)|neurolysin (generic term)
+kol nidre|1
+(noun)|Kol Nidre|prayer (generic term)
+kola|2
+(noun)|kola nut|kola nut tree|goora nut|Cola acuminata|nut tree (generic term)
+(noun)|Daba|Kola|Musgoi|Biu-Mandara (generic term)
+kola nut|2
+(noun)|cola nut|nut (generic term)
+(noun)|kola|kola nut tree|goora nut|Cola acuminata|nut tree (generic term)
+kola nut tree|1
+(noun)|kola|kola nut|goora nut|Cola acuminata|nut tree (generic term)
+kola peninsula|1
+(noun)|Kola Peninsula|peninsula (generic term)
+kolam|1
+(noun)|Kolam|Dravidian (generic term)
+kolami|1
+(noun)|Kolami|Central Dravidian (generic term)
+kolkata|1
+(noun)|Kolkata|Calcutta|city (generic term)|metropolis (generic term)|urban center (generic term)
+kolkhoz|1
+(noun)|collective farm (generic term)
+kolkhoznik|1
+(noun)|member (generic term)
+kolkwitzia|1
+(noun)|Kolkwitzia|genus Kolkwitzia|asterid dicot genus (generic term)
+kolkwitzia amabilis|1
+(noun)|beauty bush|Kolkwitzia amabilis|shrub (generic term)|bush (generic term)
+koln|1
+(noun)|Cologne|Koln|city (generic term)|metropolis (generic term)|urban center (generic term)
+kolonia|1
+(noun)|Kolonia|national capital (generic term)
+komi|2
+(noun)|Komi|Russian (generic term)
+(noun)|Komi|Zyrian|Permic (generic term)
+komodo dragon|1
+(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+komodo lizard|1
+(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+komondor|1
+(noun)|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+kon tiki|1
+(noun)|balsa raft|Kon Tiki|raft (generic term)
+konakri|1
+(noun)|Conakry|Konakri|capital of Guinea|national capital (generic term)|port (generic term)
+kong the master|1
+(noun)|Confucius|Kongfuze|K'ung Futzu|Kong the Master|philosopher (generic term)
+kongfuze|1
+(noun)|Confucius|Kongfuze|K'ung Futzu|Kong the Master|philosopher (generic term)
+kongo|1
+(noun)|Kongo|Bantu (generic term)|Bantoid language (generic term)
+konini|1
+(noun)|tree fuchsia|native fuchsia|Fuchsia excorticata|fuchsia (generic term)
+konoe|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+konoye|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+konqueror|1
+(noun)|Konqueror|browser (generic term)|web browser (generic term)
+konrad adenauer|1
+(noun)|Adenauer|Konrad Adenauer|statesman (generic term)|solon (generic term)|national leader (generic term)
+konrad lorenz|1
+(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist (generic term)|animal scientist (generic term)
+konrad von gesner|1
+(noun)|Gesner|Konrad von Gesner|naturalist (generic term)|natural scientist (generic term)
+konrad zacharias lorenz|1
+(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist (generic term)|animal scientist (generic term)
+konstantin sergeevich alekseev|1
+(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)
+konstantin sergeyevich stanislavsky|1
+(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)
+konstantin stanislavsky|1
+(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)
+koodoo|1
+(noun)|kudu|koudou|antelope (generic term)
+kook|1
+(noun)|odd fellow|odd fish|queer bird|queer duck|odd man out|anomaly (generic term)|unusual person (generic term)
+kookaburra|1
+(noun)|laughing jackass|Dacelo gigas|kingfisher (generic term)
+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 (similar term)
+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 (similar term)
+koopmans|1
+(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist (generic term)|economic expert (generic term)
+kopeck|1
+(noun)|kopek|copeck|Russian monetary unit (generic term)
+kopek|1
+(noun)|kopeck|copeck|Russian monetary unit (generic term)
+kopiyka|1
+(noun)|Ukranian monetary unit (generic term)
+kopje|1
+(noun)|koppie|knoll (generic term)|mound (generic term)|hillock (generic term)|hummock (generic term)|hammock (generic term)
+koplik's spots|1
+(noun)|Koplik's spots|symptom (generic term)
+koppie|1
+(noun)|kopje|knoll (generic term)|mound (generic term)|hillock (generic term)|hummock (generic term)|hammock (generic term)
+kor|1
+(noun)|homer|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+koran|1
+(noun)|Koran|Quran|al-Qur'an|Book|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+koranic|1
+(adj)|Koranic|sacred text|sacred writing|religious writing|religious text (related term)
+korbut|1
+(noun)|Korbut|Olga Korbut|gymnast (generic term)
+korchnoi|1
+(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master (generic term)
+korda|1
+(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+kordofan|1
+(noun)|Kordofan|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+kordofanian|1
+(noun)|Kordofanian|Niger-Kordofanian (generic term)|Niger-Kordofanian language (generic term)
+kore|1
+(noun)|Persephone|Despoina|Kore|Cora|Greek deity (generic term)
+korea|1
+(noun)|Korea|Korean Peninsula|Dae-Han-Min-Gook|Han-Gook|peninsula (generic term)
+korea bay|1
+(noun)|Korea Bay|bay (generic term)|embayment (generic term)
+korea strait|1
+(noun)|Korean Strait|Korea Strait|strait (generic term)|sound (generic term)
+korean|3
+(adj)|Korean|peninsula (related term)
+(noun)|Korean|Asian (generic term)|Asiatic (generic term)
+(noun)|Korean|Altaic (generic term)|Altaic language (generic term)
+korean lawn grass|1
+(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia (generic term)
+korean lespedeza|1
+(noun)|Korean lespedeza|Lespedeza stipulacea|bush clover (generic term)|lespedeza (generic term)
+korean peninsula|1
+(noun)|Korea|Korean Peninsula|Dae-Han-Min-Gook|Han-Gook|peninsula (generic term)
+korean strait|1
+(noun)|Korean Strait|Korea Strait|strait (generic term)|sound (generic term)
+korean velvet grass|1
+(noun)|mascarene grass|Korean velvet grass|Zoysia tenuifolia|zoysia (generic term)
+korean war|1
+(noun)|Korean War|war (generic term)|warfare (generic term)
+korinthos|1
+(noun)|Corinth|Korinthos|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+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 (generic term)|dementedness (generic term)
+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 (generic term)|dementedness (generic term)
+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 (generic term)|dementedness (generic term)
+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 (generic term)|dementedness (generic term)
+koruna|2
+(noun)|Slovakian monetary unit (generic term)
+(noun)|Czech monetary unit (generic term)
+korzybski|1
+(noun)|Korzybski|Alfred Korzybski|Alfred Habdank Skarbek Korzybski|semanticist (generic term)|semiotician (generic term)
+kos|1
+(noun)|coss|linear unit (generic term)
+kosciusko|1
+(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot (generic term)|nationalist (generic term)|soldier (generic term)
+kosciuszko|1
+(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot (generic term)|nationalist (generic term)|soldier (generic term)
+kosher|3
+(adj)|cosher|clean (similar term)
+(adj)|proper (similar term)
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+kosovo|1
+(noun)|Kosovo|state (generic term)|province (generic term)
+kosteletzya|1
+(noun)|Kosteletzya|genus Kosteletzya|dilleniid dicot genus (generic term)
+kosteletzya virginica|1
+(noun)|salt marsh mallow|Kosteletzya virginica|seashore mallow (generic term)
+kota|2
+(noun)|Kota|Kotar|Dravidian (generic term)
+(noun)|Kota|Kotar|South Dravidian (generic term)
+kotar|2
+(noun)|Kota|Kotar|Dravidian (generic term)
+(noun)|Kota|Kotar|South Dravidian (generic term)
+kotex|1
+(noun)|sanitary napkin|Kotex|pad (generic term)
+koto|1
+(noun)|stringed instrument (generic term)
+koto player|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+kotoko|1
+(noun)|Kotoko|Biu-Mandara (generic term)
+kotow|2
+(noun)|kowtow|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(verb)|fawn|toady|truckle|bootlick|kowtow|suck up|flatter (generic term)|blandish (generic term)
+koudou|1
+(noun)|kudu|koodoo|antelope (generic term)
+koumiss|1
+(noun)|kumis|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+koussevitzky|1
+(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor (generic term)|music director (generic term)|director (generic term)
+kovna|1
+(noun)|Kaunas|Kovna|Kovno|city (generic term)|metropolis (generic term)|urban center (generic term)
+kovno|1
+(noun)|Kaunas|Kovna|Kovno|city (generic term)|metropolis (generic term)|urban center (generic term)
+koweit|2
+(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital (generic term)
+(noun)|Kuwait|State of Kuwait|Koweit|Asian country (generic term)|Asian nation (generic term)
+kowhai|1
+(noun)|Sophora tetraptera|tree (generic term)
+kowtow|3
+(noun)|kotow|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(verb)|scrape|genuflect|bow (generic term)
+(verb)|fawn|toady|truckle|bootlick|kotow|suck up|flatter (generic term)|blandish (generic term)
+kph|1
+(noun)|kilometers per hour|kilometres per hour|km/h|rate (generic term)
+kr|2
+(noun)|krypton|Kr|atomic number 36|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kraal|2
+(noun)|village (generic term)|hamlet (generic term)
+(noun)|pen (generic term)
+krafft-ebing|1
+(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist (generic term)|brain doctor (generic term)
+kraft|1
+(noun)|kraft paper|wrapping paper (generic term)
+kraft paper|1
+(noun)|kraft|wrapping paper (generic term)
+krait|1
+(noun)|elapid (generic term)|elapid snake (generic term)
+krakatao|1
+(noun)|Krakatau|Krakatao|Krakatoa|volcano (generic term)|island (generic term)
+krakatau|1
+(noun)|Krakatau|Krakatao|Krakatoa|volcano (generic term)|island (generic term)
+krakatoa|1
+(noun)|Krakatau|Krakatao|Krakatoa|volcano (generic term)|island (generic term)
+krakau|1
+(noun)|Cracow|Krakow|Krakau|city (generic term)|metropolis (generic term)|urban center (generic term)
+krakow|1
+(noun)|Cracow|Krakow|Krakau|city (generic term)|metropolis (generic term)|urban center (generic term)
+krasner|1
+(noun)|Krasner|Lee Krasner|painter (generic term)
+kraurosis|1
+(noun)|atrophy (generic term)|wasting (generic term)|wasting away (generic term)
+kraurosis vulvae|1
+(noun)|kraurosis (generic term)
+kraut|1
+(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German (generic term)
+krauthead|1
+(noun)|Kraut|Krauthead|Boche|Jerry|Hun|German (generic term)
+krebs|1
+(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist (generic term)
+krebs citric acid cycle|1
+(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|tricarboxylic acid cycle|organic process (generic term)|biological process (generic term)
+krebs cycle|1
+(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|tricarboxylic acid cycle|organic process (generic term)|biological process (generic term)
+kreisler|1
+(noun)|Kreisler|Fritz Kreisler|violinist (generic term)|fiddler (generic term)
+kremlin|2
+(noun)|Kremlin|bastion (generic term)|citadel (generic term)
+(noun)|bastion (generic term)|citadel (generic term)
+krigia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+krigia bulbosa|1
+(noun)|dwarf dandelion|Krigia dandelion|Krigia bulbosa|krigia (generic term)
+krigia dandelion|1
+(noun)|dwarf dandelion|Krigia dandelion|Krigia bulbosa|krigia (generic term)
+krill|1
+(noun)|malacostracan crustacean (generic term)
+kris|1
+(noun)|creese|crease|dagger (generic term)|sticker (generic term)
+krishna|1
+(noun)|Krishna|avatar (generic term)
+krishnaism|1
+(noun)|Krishnaism|Hinduism (generic term)|Hindooism (generic term)
+kriss kringle|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+kriti|1
+(noun)|Crete|Kriti|island (generic term)
+kroeber|1
+(noun)|Kroeber|Alfred Kroeber|Alfred Louis Kroeber|anthropologist (generic term)
+krona|2
+(noun)|Swedish krona|Swedish monetary unit (generic term)
+(noun)|Icelandic krona|Icelandic monetary unit (generic term)
+krone|2
+(noun)|Norwegian krone|Norwegian monetary unit (generic term)
+(noun)|Danish krone|Danish monetary unit (generic term)
+kronecker|1
+(noun)|Kronecker|Leopold Kronecker|mathematician (generic term)
+kronecker delta|1
+(noun)|Kronecker delta|function (generic term)|mathematical function (generic term)
+kroon|1
+(noun)|Estonian monetary unit (generic term)
+kropotkin|1
+(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+kroto|1
+(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist (generic term)
+krubi|1
+(noun)|titan arum|Amorphophallus titanum|arum (generic term)|aroid (generic term)
+kruger|1
+(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman (generic term)|solon (generic term)|national leader (generic term)
+krummhorn|1
+(noun)|crumhorn|cromorne|double-reed instrument (generic term)|double reed (generic term)
+krung thep|1
+(noun)|Bangkok|capital of Thailand|Krung Thep|national capital (generic term)|port (generic term)
+krupp|2
+(noun)|Krupp|Alfred Krupp|arms manufacturer (generic term)
+(noun)|Krupp|Friedrich Krupp|industrialist (generic term)
+krypterophaneron|1
+(noun)|Krypterophaneron|genus Krypterophaneron|fish genus (generic term)
+krypton|1
+(noun)|Kr|atomic number 36|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+krzysztof kieslowski|1
+(noun)|Kieslowski|Krzysztof Kieslowski|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+ks|1
+(noun)|Kansas|Sunflower State|KS|American state (generic term)
+kshatriya|1
+(noun)|Kshatriya|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+kt|1
+(noun)|karat|carat|unit of measurement (generic term)|unit (generic term)
+ku-chiku|1
+(noun)|giant timber bamboo|madake|Phyllostachys bambusoides|bamboo (generic term)
+ku klux klan|1
+(noun)|Ku Klux Klan|Klan|KKK|secret society (generic term)|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ku kluxer|1
+(noun)|Klansman|Ku Kluxer|Kluxer|white supremacist (generic term)
+kuala lumpur|1
+(noun)|Kuala Lumpur|city (generic term)|metropolis (generic term)|urban center (generic term)
+kuan yin|1
+(noun)|Kwan-yin|Kuan Yin|Chinese deity (generic term)
+kuangchou|1
+(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+kubla khan|1
+(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|emperor (generic term)
+kublai kaan|1
+(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|emperor (generic term)
+kublai khan|1
+(noun)|Kublai Khan|Kubla Khan|Kublai Kaan|emperor (generic term)
+kubrick|1
+(noun)|Kubrick|Stanley Kubrick|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+kuchean|1
+(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian (generic term)
+kuchean dialect|1
+(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian (generic term)
+kudos|1
+(noun)|praise|congratulations|extolment|approval (generic term)|commendation (generic term)
+kudu|1
+(noun)|koodoo|koudou|antelope (generic term)
+kudu lily|1
+(noun)|impala lily|mock azalia|desert rose|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+kudzu|1
+(noun)|kudzu vine|Pueraria lobata|vine (generic term)
+kudzu vine|1
+(noun)|kudzu|Pueraria lobata|vine (generic term)
+kuenlun|1
+(noun)|Kunlun|Kunlan Shan|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+kuenlun mountains|1
+(noun)|Kunlun|Kunlan Shan|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+kuhn|1
+(noun)|Kuhn|Richard Kuhn|chemist (generic term)
+kui|2
+(noun)|Kui|Dravidian (generic term)
+(noun)|Kui|South-Central Dravidian (generic term)
+kuiper|1
+(noun)|Kuiper|Gerard Kuiper|Gerard Peter Kuiper|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+kuiper belt|1
+(noun)|Kuiper belt|Edgeworth-Kuiper belt|region (generic term)|part (generic term)
+kuiper belt object|1
+(noun)|Kuiper belt object|KBO|minor planet (generic term)|planetoid (generic term)
+kukenaam|1
+(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall (generic term)|falls (generic term)
+kukenaam falls|1
+(noun)|Cuquenan|Cuquenan Falls|Kukenaam|Kukenaam Falls|waterfall (generic term)|falls (generic term)
+kuki|1
+(noun)|Kuki|Chin|Kuki-Chin|Kamarupan (generic term)
+kuki-chin|1
+(noun)|Kuki|Chin|Kuki-Chin|Kamarupan (generic term)
+kulanapan|1
+(noun)|Kulanapan|Hokan (generic term)|Hoka (generic term)
+kulun|1
+(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital (generic term)
+kumasi|1
+(noun)|Kumasi|city (generic term)|metropolis (generic term)|urban center (generic term)
+kumis|1
+(noun)|koumiss|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+kummel|1
+(noun)|liqueur (generic term)|cordial (generic term)
+kumquat|2
+(noun)|cumquat|kumquat tree|citrus (generic term)|citrus tree (generic term)
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+kumquat tree|1
+(noun)|kumquat|cumquat|citrus (generic term)|citrus tree (generic term)
+kund johan victor rasmussen|1
+(noun)|Rasmussen|Kund Johan Victor Rasmussen|explorer (generic term)|adventurer (generic term)|ethnologist (generic term)
+kundt's tube|1
+(noun)|Kundt's tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+kung fu|1
+(noun)|martial art (generic term)
+kunlan shan|1
+(noun)|Kunlun|Kunlan Shan|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+kunlun|1
+(noun)|Kunlun|Kunlan Shan|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+kunlun mountains|1
+(noun)|Kunlun|Kunlan Shan|Kunlun Mountains|Kuenlun|Kuenlun Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+kunzite|1
+(noun)|spodumene (generic term)|transparent gem (generic term)
+kuomintang|1
+(noun)|Kuomintang|Guomindang|party (generic term)|political party (generic term)
+kupffer's cell|1
+(noun)|Kupffer's cell|cell (generic term)
+kura|1
+(noun)|Kura|Kura River|river (generic term)
+kura river|1
+(noun)|Kura|Kura River|river (generic term)
+kurakkan|1
+(noun)|finger millet|ragi|ragee|African millet|coracan|corakan|Eleusine coracana|millet (generic term)
+kurchee|1
+(noun)|ivory tree|conessi|kurchi|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+kurchi|1
+(noun)|ivory tree|conessi|kurchee|Holarrhena pubescens|Holarrhena antidysenterica|tree (generic term)
+kurd|1
+(noun)|Kurd|Asian (generic term)|Asiatic (generic term)|ethnic group (generic term)|ethnos (generic term)
+kurdish|2
+(adj)|Kurdish|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Kurdish|Iranian (generic term)|Iranian language (generic term)
+kurdistan|2
+(noun)|Kurdistan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Kurdistan|rug (generic term)|carpet (generic term)|carpeting (generic term)
+kurdistan labor pary|1
+(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kurdistan workers party|1
+(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+kuri-chiku|1
+(noun)|black bamboo|Phyllostachys nigra|bamboo (generic term)
+kurosawa|1
+(noun)|Kurosawa|Akira Kurosawa|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+kuroshio|1
+(noun)|Japan current|Kuroshio current|Kuroshio|ocean current (generic term)
+kuroshio current|1
+(noun)|Japan current|Kuroshio current|Kuroshio|ocean current (generic term)
+kurrajong|1
+(noun)|currajong|Brachychiton populneus|bottle-tree (generic term)|bottle tree (generic term)
+kurrat|1
+(noun)|wild leek|Levant garlic|Allium ampeloprasum|alliaceous plant (generic term)
+kursk|1
+(noun)|Kursk|city (generic term)|metropolis (generic term)|urban center (generic term)
+kurt godel|1
+(noun)|Godel|Kurt Godel|mathematician (generic term)
+kurt vonnegut|1
+(noun)|Vonnegut|Kurt Vonnegut|writer (generic term)|author (generic term)
+kurt waldheim|1
+(noun)|Waldheim|Kurt Waldheim|diplomat (generic term)|diplomatist (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+kurt weill|1
+(noun)|Weill|Kurt Weill|composer (generic term)
+kurta|1
+(noun)|shirt (generic term)
+kuru|2
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+(noun)|piaster|piastre|Turkish monetary unit (generic term)
+kurux|1
+(noun)|Kurux|North Dravidian (generic term)
+kusan|1
+(noun)|Kusan|Penutian (generic term)
+kussmaul's coma|1
+(noun)|diabetic coma|Kussmaul's coma|coma (generic term)|comatoseness (generic term)
+kutch|1
+(noun)|cutch|tannin (generic term)|tannic acid (generic term)
+kutuzov|1
+(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal (generic term)
+kuvasz|1
+(noun)|watchdog (generic term)|guard dog (generic term)
+kuvi|1
+(noun)|Kuvi|South-Central Dravidian (generic term)
+kuwait|2
+(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital (generic term)
+(noun)|Kuwait|State of Kuwait|Koweit|Asian country (generic term)|Asian nation (generic term)
+kuwait city|1
+(noun)|Kuwait|Kuwait City|Koweit|capital of Kuwait|national capital (generic term)
+kuwaiti|3
+(adj)|Kuwaiti|Asian country|Asian nation (related term)
+(adj)|Kuwaiti|national capital (related term)
+(noun)|Kuwaiti|Asian (generic term)|Asiatic (generic term)
+kuwaiti dinar|1
+(noun)|Kuwaiti dinar|dinar|Kuwaiti monetary unit (generic term)
+kuwaiti dirham|1
+(noun)|Kuwaiti dirham|dirham|Kuwaiti monetary unit (generic term)
+kuwaiti monetary unit|1
+(noun)|Kuwaiti monetary unit|monetary unit (generic term)
+kuznets|1
+(noun)|Kuznets|Simon Kuznets|economist (generic term)|economic expert (generic term)
+kv|1
+(noun)|kilovolt|kV|potential unit (generic term)
+kvass|1
+(noun)|brew (generic term)|brewage (generic term)
+kvetch|3
+(noun)|whiner (generic term)|complainer (generic term)|moaner (generic term)|sniveller (generic term)|crybaby (generic term)|bellyacher (generic term)|grumbler (generic term)|squawker (generic term)
+(noun)|complaint (generic term)
+(verb)|complain|kick|plain|sound off|quetch|cheer (antonym)
+kw|1
+(noun)|kilowatt|kW|power unit (generic term)
+kw-hr|1
+(noun)|kilowatt hour|kW-hr|Board of Trade unit|B.T.U.|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+kwa|1
+(noun)|Kwa|Niger-Congo (generic term)
+kwacha|2
+(noun)|Zambian kwacha|Zambian monetary unit (generic term)
+(noun)|Malawi kwacha|Malawian monetary unit (generic term)
+kwai|1
+(noun)|yuan|Chinese monetary unit (generic term)
+kwajalein|2
+(noun)|Kwajalein|atoll (generic term)
+(noun)|Kwajalein|amphibious assault (generic term)
+kwakiutl|2
+(noun)|Kwakiutl|Wakashan (generic term)
+(noun)|Kwakiutl|Wakashan (generic term)|Wakashan language (generic term)
+kwan-yin|1
+(noun)|Kwan-yin|Kuan Yin|Chinese deity (generic term)
+kwangchow|1
+(noun)|Guangzhou|Kuangchou|Kwangchow|Canton|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+kwangju|1
+(noun)|Kwangju|city (generic term)|metropolis (generic term)|urban center (generic term)
+kwangtung|1
+(noun)|Guangdong|Kwangtung|Guangdong province|state (generic term)|province (generic term)
+kwannon|1
+(noun)|Kwannon|Japanese deity (generic term)
+kwanza|2
+(noun)|Angolan monetary unit (generic term)
+(noun)|Kwanzaa|Kwanza|festival (generic term)|fete (generic term)
+kwanzaa|1
+(noun)|Kwanzaa|Kwanza|festival (generic term)|fete (generic term)
+kwashiorkor|1
+(noun)|malnutrition (generic term)
+kwazulu-natal|1
+(noun)|Natal|KwaZulu-Natal|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+kweek|1
+(noun)|Bermuda grass|devil grass|Bahama grass|doob|scutch grass|star grass|Cynodon dactylon|grass (generic term)
+kwela|1
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+kwell|1
+(noun)|Kwell|lindane (generic term)
+ky|1
+(noun)|Kentucky|Bluegrass State|KY|American state (generic term)
+kyanite|1
+(noun)|cyanite|mineral (generic term)
+kyat|1
+(noun)|Myanmar monetary unit (generic term)
+kyd|1
+(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist (generic term)|playwright (generic term)
+kylie|1
+(noun)|kiley|boomerang (generic term)|throwing stick (generic term)|throw stick (generic term)
+kylix|1
+(noun)|cylix|cup (generic term)
+kymograph|1
+(noun)|cymograph|scientific instrument (generic term)
+kyo-chiku|1
+(noun)|giant bamboo|Dendrocalamus giganteus|bamboo (generic term)
+kyoto|1
+(noun)|Kyoto|city (generic term)|metropolis (generic term)|urban center (generic term)
+kyphosidae|1
+(noun)|Kyphosidae|family Kyphosidae|fish family (generic term)
+kyphosis|1
+(noun)|humpback|hunchback|spinal curvature (generic term)
+kyphosus|1
+(noun)|Kyphosus|genus Kyphosus|fish genus (generic term)
+kyphosus sectatrix|1
+(noun)|Bermuda chub|rudderfish|Kyphosus sectatrix|sea chub (generic term)
+kyphotic|1
+(adj)|crookback|crookbacked|humped|humpbacked|hunchbacked|gibbous|unfit (similar term)
+kyrgyz republic|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kyrgyzstan|1
+(noun)|Kyrgyzstan|Kyrgyz Republic|Kirghizia|Kirgizia|Kirghiz|Kirgiz|Kirghizstan|Kirgizstan|Asian country (generic term)|Asian nation (generic term)
+kyrgyzstani|1
+(adj)|Kyrgyzstani|Asian country|Asian nation (related term)
+kyrgyzstani monetary unit|1
+(noun)|Kyrgyzstani monetary unit|monetary unit (generic term)
+kyushu|1
+(noun)|Kyushu|island (generic term)
+kyyiv|1
+(noun)|Kyyiv|Kiev|capital of the Ukraine|capital (generic term)
+kyzyl kum|1
+(noun)|Kyzyl Kum|Kizil Kum|Qizil Qum|desert (generic term)
+l|5
+(adj)|fifty|50|cardinal (similar term)
+(noun)|liter|litre|cubic decimeter|cubic decimetre|metric capacity unit (generic term)
+(noun)|fifty|50|L|large integer (generic term)
+(noun)|lambert|L|illumination unit (generic term)
+(noun)|L|letter l|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+l'aquila|1
+(noun)|Aquila|L'Aquila|Aquila degli Abruzzi|city (generic term)|metropolis (generic term)|urban center (generic term)
+l'enfant|1
+(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect (generic term)|designer (generic term)
+l-dopa|1
+(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa (generic term)|dihydroxyphenylalanine (generic term)
+l-p|1
+(noun)|LP|L-P|phonograph record (generic term)|phonograph recording (generic term)|record (generic term)|disk (generic term)|disc (generic term)|platter (generic term)
+l-plate|1
+(noun)|L-plate|plate (generic term)
+l-shaped|1
+(adj)|L-shaped|formed (similar term)
+l. m. montgomery|1
+(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer (generic term)|author (generic term)
+l. monocytogenes|1
+(noun)|Listeria monocytogenes|L. monocytogenes|listeria (generic term)
+l. ron hubbard|1
+(noun)|Hubbard|L. Ron Hubbard|writer (generic term)|author (generic term)
+l. s. lowry|1
+(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter (generic term)
+la|3
+(noun)|lanthanum|La|atomic number 57|metallic element (generic term)|metal (generic term)
+(noun)|Louisiana|Pelican State|LA|American state (generic term)
+(noun)|lah|solfa syllable (generic term)
+la-di-da|1
+(adj)|grandiose|hifalutin|highfalutin|highfaluting|hoity-toity|pretentious (similar term)
+la crosse|1
+(noun)|La Crosse|town (generic term)
+la fayette|1
+(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier (generic term)
+la fontaine|1
+(noun)|La Fontaine|Jean de La Fontaine|writer (generic term)|author (generic term)
+la paz|1
+(noun)|La Paz|seat (generic term)
+la plata|1
+(noun)|Rio de la Plata|La Plata|Plata River|estuary (generic term)
+la rochefoucauld|1
+(noun)|La Rochefoucauld|Francois de La Rochefoucauld|writer (generic term)|author (generic term)
+la spezia|1
+(noun)|La Spezia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+la tour|1
+(noun)|La Tour|Georges de La Tour|old master (generic term)
+laager|1
+(noun)|lager|camp (generic term)|encampment (generic term)|cantonment (generic term)|bivouac (generic term)
+lab|1
+(noun)|laboratory|research lab|research laboratory|science lab|science laboratory|workplace (generic term)|work (generic term)
+lab bench|1
+(noun)|laboratory bench|workbench (generic term)|work bench (generic term)|bench (generic term)
+lab coat|1
+(noun)|laboratory coat|coat (generic term)
+laban|1
+(noun)|Laban|Rudolph Laban|choreographer (generic term)
+labanotation|1
+(noun)|Labanotation|choreography (generic term)
+labdanum|2
+(noun)|gum labdanum|oleoresin (generic term)
+(noun)|ladanum|oleoresin (generic term)
+label|8
+(noun)|description (generic term)
+(noun)|recording label|trade name (generic term)|brand name (generic term)|brand (generic term)|marque (generic term)
+(noun)|radioisotope (generic term)
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(verb)|designate (generic term)|denominate (generic term)
+(verb)|tag|mark|attach (generic term)|mark down (related term)|mark up (related term)
+(verb)|pronounce|judge|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+labeled|1
+(adj)|labelled|tagged|unlabeled (antonym)
+labelled|1
+(adj)|labeled|tagged|unlabeled (antonym)
+labetalol|1
+(noun)|labetalol hydrochloride|Trandate|Normodyne|blocker (generic term)|blocking agent (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+labetalol hydrochloride|1
+(noun)|labetalol|Trandate|Normodyne|blocker (generic term)|blocking agent (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+labia majora|1
+(noun)|labium (generic term)
+labia minora|1
+(noun)|labium (generic term)
+labial|3
+(adj)|external body part|articulator (related term)
+(adj)|lip (related term)
+(noun)|labial consonant|consonant (generic term)
+labial artery|1
+(noun)|arteria labialis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+labial consonant|1
+(noun)|labial|consonant (generic term)
+labial pipe|1
+(noun)|flue pipe|flue|organ pipe (generic term)|pipe (generic term)|pipework (generic term)
+labial stop|1
+(noun)|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)|labial consonant (generic term)|labial (generic term)
+labial vein|1
+(noun)|vena labialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+labialise|1
+(verb)|round|labialize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+labialize|1
+(verb)|round|labialise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+labiatae|1
+(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family (generic term)
+labiate|1
+(adj)|liplike|lipped (similar term)
+labile|2
+(adj)|reactive (similar term)
+(adj)|unbalanced (similar term)|imbalanced (similar term)
+labiodental|1
+(noun)|labiodental consonant|consonant (generic term)
+labiodental consonant|1
+(noun)|labiodental|consonant (generic term)
+labium|1
+(noun)|lip (generic term)
+lablab|1
+(noun)|Lablab|genus Lablab|rosid dicot genus (generic term)
+lablab purpureus|1
+(noun)|hyacinth bean|bonavist|Indian bean|Egyptian bean|Lablab purpureus|Dolichos lablab|vine (generic term)
+lablink|1
+(noun)|Department of Defense Laboratory System|LABLINK|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+labor|10
+(noun)|labour|toil|work (generic term)
+(noun)|labour|working class|proletariat|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|parturiency|labour|confinement|lying-in|travail|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|labor movement|trade union movement|reform movement (generic term)
+(noun)|Labour Party|Labour|Labor Party|Labor|party (generic term)|political party (generic term)
+(noun)|Department of Labor|Labor Department|Labor|DoL|executive department (generic term)
+(noun)|undertaking|project|task|work (generic term)
+(verb)|tug|labour|push|drive|fight (generic term)|struggle (generic term)|push on (related term)
+(verb)|labour|toil|fag|travail|grind|drudge|dig|moil|work (generic term)|do work (generic term)
+(verb)|labour|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+labor-intensive|1
+(adj)|labour-intensive|effortful (similar term)
+labor agreement|1
+(noun)|labor contract|collective agreement|contract (generic term)
+labor coach|1
+(noun)|monitrice|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+labor contract|1
+(noun)|labor agreement|collective agreement|contract (generic term)
+labor day|1
+(noun)|Labor Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+labor department|1
+(noun)|Department of Labor|Labor Department|Labor|DoL|executive department (generic term)
+labor force|1
+(noun)|labor pool|labor (generic term)|labour (generic term)|working class (generic term)|proletariat (generic term)
+labor leader|1
+(noun)|leader (generic term)
+labor market|1
+(noun)|market (generic term)|marketplace (generic term)
+labor movement|1
+(noun)|trade union movement|labor|reform movement (generic term)
+labor of love|1
+(noun)|labour of love|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+labor organizer|1
+(noun)|organizer|organiser|union representative (generic term)
+labor pain|1
+(noun)|pain (generic term)|hurting (generic term)
+labor pains|1
+(noun)|birth pangs|labour pains|pang (generic term)
+labor party|1
+(noun)|Labour Party|Labour|Labor Party|Labor|party (generic term)|political party (generic term)
+labor pool|1
+(noun)|labor force|labor (generic term)|labour (generic term)|working class (generic term)|proletariat (generic term)
+labor resources|1
+(noun)|resource (generic term)
+labor secretary|2
+(noun)|Secretary of Labor|Labor Secretary|secretary (generic term)
+(noun)|Secretary of Labor|Labor Secretary|secretaryship (generic term)
+labor union|1
+(noun)|union|trade union|trades union|brotherhood|organization (generic term)|organisation (generic term)
+laboratory|2
+(noun)|lab|research lab|research laboratory|science lab|science laboratory|workplace (generic term)|work (generic term)
+(noun)|testing ground|region (generic term)
+laboratory bench|1
+(noun)|lab bench|workbench (generic term)|work bench (generic term)|bench (generic term)
+laboratory coat|1
+(noun)|lab coat|coat (generic term)
+labored|2
+(adj)|laboured|strained|awkward (similar term)
+(adj)|heavy|laboured|effortful (similar term)
+laborer|1
+(noun)|manual laborer|labourer|jack|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+laboring|1
+(adj)|drudging|labouring|toiling|busy (similar term)
+laborious|1
+(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|operose|punishing|toilsome|effortful (similar term)
+laboriousness|1
+(noun)|operoseness|toilsomeness|effortfulness (generic term)
+laborsaving|1
+(adj)|laboursaving|helpful (similar term)
+labour|7
+(noun)|labor|working class|proletariat|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|parturiency|labor|confinement|lying-in|travail|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|Labour Party|Labour|Labor Party|Labor|party (generic term)|political party (generic term)
+(noun)|labor|toil|work (generic term)
+(verb)|labor|toil|fag|travail|grind|drudge|dig|moil|work (generic term)|do work (generic term)
+(verb)|tug|labor|push|drive|fight (generic term)|struggle (generic term)|push on (related term)
+(verb)|labor|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+labour-intensive|1
+(adj)|labor-intensive|effortful (similar term)
+labour of love|1
+(noun)|labor of love|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+labour pains|1
+(noun)|birth pangs|labor pains|pang (generic term)
+labour party|1
+(noun)|Labour Party|Labour|Labor Party|Labor|party (generic term)|political party (generic term)
+laboured|2
+(adj)|labored|strained|awkward (similar term)
+(adj)|heavy|labored|effortful (similar term)
+labourer|1
+(noun)|laborer|manual laborer|jack|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+labouring|1
+(adj)|drudging|laboring|toiling|busy (similar term)
+labourite|1
+(noun)|Labourite|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+laboursaving|1
+(adj)|laborsaving|helpful (similar term)
+labrador|1
+(noun)|Labrador|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+labrador-ungava peninsula|1
+(noun)|Labrador-Ungava Peninsula|Labrador Peninsula|peninsula (generic term)
+labrador peninsula|1
+(noun)|Labrador-Ungava Peninsula|Labrador Peninsula|peninsula (generic term)
+labrador retriever|1
+(noun)|Labrador retriever|retriever (generic term)
+labrador sea|1
+(noun)|Labrador Sea|sea (generic term)
+labrador tea|1
+(noun)|Labrador tea|crystal tea|Ledum groenlandicum|shrub (generic term)|bush (generic term)
+labridae|1
+(noun)|Labridae|family Labridae|fish family (generic term)
+labrocyte|1
+(noun)|mast cell|mastocyte|somatic cell (generic term)|vegetative cell (generic term)
+labrouste|1
+(noun)|Labrouste|Henri Labrouste|architect (generic term)|designer (generic term)
+laburnum|1
+(noun)|Laburnum|genus Laburnum|rosid dicot genus (generic term)
+laburnum alpinum|1
+(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub (generic term)
+laburnum anagyroides|1
+(noun)|common laburnum|golden chain|golden rain|Laburnum anagyroides|flowering shrub (generic term)
+labyrinth|2
+(noun)|maze|system (generic term)
+(noun)|inner ear|internal ear|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+labyrinth of minos|1
+(noun)|Labyrinth of Minos|maze (generic term)|labyrinth (generic term)
+labyrinthian|1
+(adj)|labyrinthine|mazy|complex (similar term)
+labyrinthine|2
+(adj)|sense organ|sensory receptor|receptor (related term)
+(adj)|labyrinthian|mazy|complex (similar term)
+labyrinthine artery|1
+(noun)|artery of the labyrinth|internal auditory artery|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+labyrinthine sense|1
+(noun)|equilibrium|vestibular sense|sense of balance|sense of equilibrium|proprioception (generic term)
+labyrinthine vein|1
+(noun)|internal auditory vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+labyrinthitis|1
+(noun)|otitis interna|otitis (generic term)
+labyrinthodont|1
+(noun)|amphibian (generic term)
+labyrinthodonta|1
+(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order (generic term)
+labyrinthodontia|1
+(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order (generic term)
+lac|1
+(noun)|animal product (generic term)
+lac dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+lac wax|1
+(noun)|shellac wax|wax (generic term)
+laccopetalum|1
+(noun)|Laccopetalum|genus Laccopetalum|magnoliid dicot genus (generic term)
+laccopetalum giganteum|1
+(noun)|giant buttercup|Laccopetalum giganteum|herb (generic term)|herbaceous plant (generic term)
+lace|7
+(noun)|lacing|cord (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|intertwine|twine|entwine|enlace|interlace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+(verb)|braid|plait|weave (generic term)|tissue (generic term)
+(verb)|weave (generic term)|tissue (generic term)
+(verb)|lace up|tie (generic term)|bind (generic term)
+(verb)|spike|fortify|change (generic term)|alter (generic term)|modify (generic term)
+lace-flower vine|1
+(noun)|Alsobia dianthiflora|Episcia dianthiflora|flower (generic term)
+lace bug|1
+(noun)|leaf bug (generic term)|plant bug (generic term)
+lace fern|1
+(noun)|Cheilanthes gracillima|fern (generic term)
+lace into|1
+(verb)|lam into|tear into|pitch into|lay into|hit (generic term)
+lace making|1
+(noun)|tatting|handicraft (generic term)
+lace up|1
+(verb)|lace|tie (generic term)|bind (generic term)
+lacebark|1
+(noun)|ribbonwood|houhere|Hoheria populnea|tree (generic term)
+laced|3
+(adj)|tied|unlaced (antonym)
+(adj)|patterned (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+lacelike|1
+(adj)|lacy|fancy (similar term)
+lacepod|1
+(noun)|fringepod|herb (generic term)|herbaceous plant (generic term)
+lacer|1
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+lacerate|4
+(adj)|lacerated|rough (similar term)
+(adj)|lacerated|mangled|torn|injured (similar term)
+(verb)|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+(verb)|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+lacerated|2
+(adj)|lacerate|rough (similar term)
+(adj)|lacerate|mangled|torn|injured (similar term)
+laceration|2
+(noun)|wound (generic term)|lesion (generic term)
+(noun)|tear (generic term)
+lacerta|1
+(noun)|Lacerta|genus Lacerta|reptile genus (generic term)
+lacerta agilis|1
+(noun)|sand lizard|Lacerta agilis|lacertid lizard (generic term)|lacertid (generic term)
+lacerta viridis|1
+(noun)|green lizard|Lacerta viridis|lacertid lizard (generic term)|lacertid (generic term)
+lacertid|1
+(noun)|lacertid lizard|lizard (generic term)
+lacertid lizard|1
+(noun)|lacertid|lizard (generic term)
+lacertidae|1
+(noun)|Lacertidae|family Lacertidae|reptile family (generic term)
+lacertilia|1
+(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order (generic term)
+lacertilian|1
+(adj)|saurian|saurian (related term)
+lacewing|1
+(noun)|lacewing fly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+lacewing fly|1
+(noun)|lacewing|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+lacewood|1
+(noun)|sycamore|wood (generic term)
+lacework|1
+(noun)|work (generic term)|piece of work (generic term)
+lachaise|1
+(noun)|Lachaise|Gaston Lachaise|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+lachesis|1
+(noun)|Lachesis|Greek deity (generic term)
+lachnolaimus|1
+(noun)|Lachnolaimus|genus Lachnolaimus|fish genus (generic term)
+lachnolaimus maximus|1
+(noun)|hogfish|hog snapper|Lachnolaimus maximus|wrasse (generic term)
+lachrymal|2
+(adj)|lacrimal|drop|drib|driblet (related term)
+(adj)|lacrimal|exocrine gland|exocrine|duct gland (related term)
+lachrymal duct|1
+(noun)|lacrimal duct|tear duct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+lachrymal gland|1
+(noun)|lacrimal gland|tear gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+lachrymal secretion|1
+(noun)|lacrimal secretion|secretion (generic term)
+lachrymation|1
+(noun)|lacrimation|tearing|watering|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+lachrymator|1
+(noun)|tear gas|teargas|lacrimator|gas (generic term)|chemical weapon (generic term)
+lachrymatory|1
+(adj)|lacrimatory|drop|drib|driblet (related term)
+lachrymose|1
+(adj)|dolorous|dolourous|tearful|weeping|sorrowful (similar term)
+lacing|3
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+(noun)|lace|cord (generic term)
+(noun)|beating|thrashing|licking|drubbing|trouncing|whacking|corporal punishment (generic term)
+laciniate|1
+(adj)|fringed|rough (similar term)
+lack|2
+(noun)|deficiency|want|need (generic term)|demand (generic term)
+(verb)|miss|have (antonym)
+lackadaisical|2
+(adj)|dreamy|languid|languorous|lethargic (similar term)|unergetic (similar term)
+(adj)|idle (similar term)
+lackey|2
+(noun)|flunky|flunkey|servant (generic term)|retainer (generic term)
+(noun)|sycophant|toady|crawler|flatterer (generic term)|adulator (generic term)
+lacking|2
+(adj)|missing|nonexistent|wanting|absent (similar term)
+(adj)|deficient|wanting|inadequate (similar term)
+lackluster|1
+(adj)|lacklustre|lusterless|lustreless|dull (similar term)
+lacklustre|1
+(adj)|lackluster|lusterless|lustreless|dull (similar term)
+laconia|1
+(noun)|Laconia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+laconian|1
+(noun)|Laconian|Greek (generic term)|Hellene (generic term)
+laconic|1
+(adj)|crisp|curt|terse|concise (similar term)
+laconically|1
+(adv)|dryly|drily
+laconicism|1
+(noun)|laconism|terseness (generic term)
+laconism|1
+(noun)|laconicism|terseness (generic term)
+lacquer|3
+(noun)|gum (generic term)
+(noun)|coating (generic term)|coat (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+lacquer tree|1
+(noun)|varnish tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant (generic term)
+lacquerware|1
+(noun)|work (generic term)|piece of work (generic term)
+lacrimal|2
+(adj)|lachrymal|drop|drib|driblet (related term)
+(adj)|lachrymal|exocrine gland|exocrine|duct gland (related term)
+lacrimal apparatus|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+lacrimal artery|1
+(noun)|arteria lacrimalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+lacrimal bone|1
+(noun)|bone (generic term)|os (generic term)
+lacrimal duct|1
+(noun)|lachrymal duct|tear duct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+lacrimal gland|1
+(noun)|lachrymal gland|tear gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+lacrimal sac|1
+(noun)|tear sac|dacryocyst|vesicle (generic term)|cyst (generic term)
+lacrimal secretion|1
+(noun)|lachrymal secretion|secretion (generic term)
+lacrimal vein|1
+(noun)|vena lacrimalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+lacrimation|1
+(noun)|lachrymation|tearing|watering|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+lacrimator|1
+(noun)|tear gas|teargas|lachrymator|gas (generic term)|chemical weapon (generic term)
+lacrimatory|1
+(adj)|lachrymatory|drop|drib|driblet (related term)
+lacrosse|1
+(noun)|field game (generic term)
+lacrosse ball|1
+(noun)|ball (generic term)
+lacrosse player|1
+(noun)|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+lactaid|1
+(noun)|lactase|Lactaid|disaccharidase (generic term)
+lactalbumin|1
+(noun)|albumin (generic term)|albumen (generic term)
+lactarius|1
+(noun)|Lactarius|genus Lactarius|fungus genus (generic term)
+lactarius delicioso|1
+(noun)|milkcap|Lactarius delicioso|agaric (generic term)
+lactase|1
+(noun)|Lactaid|disaccharidase (generic term)
+lactase deficiency|1
+(noun)|lactose intolerance|milk intolerance|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+lactate|2
+(noun)|salt (generic term)|ester (generic term)
+(verb)|breastfeed|bottle-feed|suckle|suck|nurse|wet-nurse|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+lactating|1
+(adj)|wet|fresh (similar term)|dry (antonym)
+lactation|3
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|suckling|feeding (generic term)|alimentation (generic term)
+lacteal|2
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals (related term)
+(noun)|lymph vessel (generic term)|lymphatic vessel (generic term)
+lactic|1
+(adj)|dairy product|beverage|drink|drinkable|potable (related term)
+lactic acid|1
+(noun)|carboxylic acid (generic term)
+lactiferous duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+lactifuge|1
+(noun)|agent (generic term)
+lactobacillaceae|1
+(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family (generic term)
+lactobacillus|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+lactobacteriaceae|1
+(noun)|Lactobacillaceae|family Lactobacillaceae|Lactobacteriaceae|family Lactobacteriaceae|bacteria family (generic term)
+lactoflavin|1
+(noun)|vitamin B2|vitamin G|riboflavin|ovoflavin|hepatoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+lactogen|1
+(noun)|agent (generic term)
+lactogenic|1
+(adj)|agent (related term)
+lactogenic hormone|1
+(noun)|prolactin|luteotropin|lactogen (generic term)|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+lactophrys|1
+(noun)|Lactophrys|genus Lactophrys|fish genus (generic term)
+lactophrys quadricornis|1
+(noun)|cowfish|Lactophrys quadricornis|boxfish (generic term)|trunkfish (generic term)
+lactose|1
+(noun)|milk sugar|disaccharide (generic term)
+lactose intolerance|1
+(noun)|lactase deficiency|milk intolerance|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+lactosuria|1
+(noun)|condition (generic term)|status (generic term)
+lactuca|1
+(noun)|Lactuca|genus Lactuca|asterid dicot genus (generic term)
+lactuca sativa|1
+(noun)|garden lettuce|common lettuce|Lactuca sativa|lettuce (generic term)
+lactuca sativa asparagina|1
+(noun)|celtuce|stem lettuce|Lactuca sativa asparagina|lettuce (generic term)
+lactuca sativa capitata|1
+(noun)|head lettuce|Lactuca sativa capitata|lettuce (generic term)
+lactuca sativa crispa|1
+(noun)|leaf lettuce|Lactuca sativa crispa|lettuce (generic term)
+lactuca sativa longifolia|1
+(noun)|cos lettuce|romaine lettuce|Lactuca sativa longifolia|lettuce (generic term)
+lactuca scariola|1
+(noun)|prickly lettuce|horse thistle|Lactuca serriola|Lactuca scariola|compass plant (generic term)|compass flower (generic term)
+lactuca serriola|1
+(noun)|prickly lettuce|horse thistle|Lactuca serriola|Lactuca scariola|compass plant (generic term)|compass flower (generic term)
+lacuna|2
+(noun)|blank|gap (generic term)|crack (generic term)
+(noun)|coffer|caisson|panel (generic term)
+lacustrine|1
+(adj)|body of water|water (related term)
+lacy|2
+(adj)|lacelike|fancy (similar term)
+(adj)|netlike|netted|webbed|weblike|webby|reticulate (similar term)|reticular (similar term)
+lad|2
+(noun)|chap|fellow|feller|gent|fella|blighter|cuss|male (generic term)|male person (generic term)
+(noun)|cub|laddie|sonny|sonny boy|male child (generic term)|boy (generic term)
+lad's love|1
+(noun)|common wormwood|absinthe|old man|Artemisia absinthium|wormwood (generic term)
+ladanum|1
+(noun)|labdanum|oleoresin (generic term)
+ladder|4
+(noun)|stairs (generic term)|steps (generic term)
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|run|ravel|damage (generic term)|harm (generic term)|impairment (generic term)
+(verb)|run|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+ladder-back|2
+(noun)|ladder-back chair|chair (generic term)
+(noun)|back (generic term)|backrest (generic term)
+ladder-back chair|1
+(noun)|ladder-back|chair (generic term)
+ladder-proof|1
+(adj)|runproof|run-resistant|impervious (similar term)|imperviable (similar term)
+ladder truck|1
+(noun)|aerial ladder truck|fire engine (generic term)|fire truck (generic term)
+laddie|1
+(noun)|cub|lad|sonny|sonny boy|male child (generic term)|boy (generic term)
+lade|2
+(verb)|ladle|laden|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|load|laden|load up|fill (generic term)|fill up (generic term)|make full (generic term)
+laden|4
+(adj)|loaded|ladened|full (similar term)
+(adj)|oppressed|burdened (similar term)
+(verb)|ladle|lade|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|load|lade|load up|fill (generic term)|fill up (generic term)|make full (generic term)
+ladened|1
+(adj)|laden|loaded|full (similar term)
+ladies'-eardrop|1
+(noun)|lady's-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia (generic term)
+ladies'-eardrops|1
+(noun)|lady's-eardrop|ladies'-eardrop|lady's-eardrops|Fuchsia coccinea|fuchsia (generic term)
+ladies' man|1
+(noun)|seducer|lady killer|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+ladies' room|1
+(noun)|powder room|public toilet (generic term)|comfort station (generic term)|public convenience (generic term)|convenience (generic term)|public lavatory (generic term)|restroom (generic term)|toilet facility (generic term)|wash room (generic term)
+ladies' slipper|1
+(noun)|lady's slipper|lady-slipper|slipper orchid|orchid (generic term)|orchidaceous plant (generic term)
+ladies' tobacco|1
+(noun)|lady's tobacco|Antennaria plantaginifolia|herb (generic term)|herbaceous plant (generic term)
+ladies' tresses|1
+(noun)|lady's tresses|orchid (generic term)|orchidaceous plant (generic term)
+ladin|1
+(noun)|Ladin|Rhaeto-Romance (generic term)|Rhaeto-Romanic (generic term)
+lading|1
+(noun)|cargo|freight|load|loading|payload|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+ladino|2
+(noun)|mestizo|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Judeo-Spanish|Ladino|Spanish (generic term)
+ladle|3
+(noun)|vessel (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|lade|laden|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+ladoga|1
+(noun)|Lake Ladoga|Ladoga|lake (generic term)
+ladrone islands|1
+(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago (generic term)
+lady|3
+(noun)|woman (generic term)|adult female (generic term)
+(noun)|dame|madam|ma'am|gentlewoman|woman (generic term)|adult female (generic term)
+(noun)|Lady|noblewoman|peeress|female aristocrat (generic term)|nobleman (antonym)|Lord (antonym)
+lady's-eardrop|1
+(noun)|ladies'-eardrop|lady's-eardrops|ladies'-eardrops|Fuchsia coccinea|fuchsia (generic term)
+lady's-eardrops|1
+(noun)|lady's-eardrop|ladies'-eardrop|ladies'-eardrops|Fuchsia coccinea|fuchsia (generic term)
+lady's-finger|1
+(noun)|okra|gumbo|okra plant|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+lady's earrings|1
+(noun)|jewelweed|orange balsam|celandine|touch-me-not|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+lady's laces|1
+(noun)|reed canary grass|gardener's garters|ribbon grass|Phalaris arundinacea|grass (generic term)
+lady's leek|1
+(noun)|nodding onion|nodding wild onion|Allium cernuum|wild onion (generic term)
+lady's maid|1
+(noun)|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+lady's slipper|1
+(noun)|lady-slipper|ladies' slipper|slipper orchid|orchid (generic term)|orchidaceous plant (generic term)
+lady's smock|1
+(noun)|cuckooflower|cuckoo flower|meadow cress|Cardamine pratensis|bittercress (generic term)|bitter cress (generic term)
+lady's thistle|1
+(noun)|milk thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+lady's tobacco|1
+(noun)|ladies' tobacco|Antennaria plantaginifolia|herb (generic term)|herbaceous plant (generic term)
+lady's tresses|1
+(noun)|ladies' tresses|orchid (generic term)|orchidaceous plant (generic term)
+lady-in-waiting|1
+(noun)|Lady-in-waiting|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+lady-of-the-night|1
+(noun)|Brunfelsia americana|shrub (generic term)|bush (generic term)
+lady-slipper|1
+(noun)|lady's slipper|ladies' slipper|slipper orchid|orchid (generic term)|orchidaceous plant (generic term)
+lady beetle|1
+(noun)|ladybug|ladybeetle|ladybird|ladybird beetle|beetle (generic term)
+lady chapel|1
+(noun)|chapel (generic term)
+lady crab|1
+(noun)|American lady crab|calico crab|Ovalipes ocellatus|swimming crab (generic term)
+lady day|1
+(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day (generic term)
+lady diana frances spencer|1
+(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat (generic term)
+lady emma hamilton|1
+(noun)|Hamilton|Lady Emma Hamilton|Amy Lyon|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+lady fern|1
+(noun)|Athyrium filix-femina|fern (generic term)
+lady friend|1
+(noun)|girlfriend|girl|woman (generic term)|adult female (generic term)|lover (generic term)
+lady godiva|1
+(noun)|Godiva|Lady Godiva|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+lady jane grey|1
+(noun)|Grey|Lady Jane Grey|Queen of England (generic term)
+lady killer|1
+(noun)|seducer|ladies' man|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+lady of pleasure|1
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|woman of the street|woman (generic term)|adult female (generic term)
+lady of the house|1
+(noun)|housewife|homemaker|woman of the house|wife (generic term)|married woman (generic term)
+lady palm|1
+(noun)|palm (generic term)|palm tree (generic term)
+lady peel|1
+(noun)|Lillie|Beatrice Lillie|Lady Peel|actress (generic term)
+lady tulip|1
+(noun)|candlestick tulip|Tulipa clusiana|tulip (generic term)
+lady with the lamp|1
+(noun)|Nightingale|Florence Nightingale|Lady with the Lamp|nurse (generic term)
+ladybeetle|1
+(noun)|ladybug|lady beetle|ladybird|ladybird beetle|beetle (generic term)
+ladybird|1
+(noun)|ladybug|ladybeetle|lady beetle|ladybird beetle|beetle (generic term)
+ladybird beetle|1
+(noun)|ladybug|ladybeetle|lady beetle|ladybird|beetle (generic term)
+ladybug|1
+(noun)|ladybeetle|lady beetle|ladybird|ladybird beetle|beetle (generic term)
+ladyfinger|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+ladyfish|1
+(noun)|tenpounder|Elops saurus|tarpon (generic term)|Tarpon atlanticus (generic term)
+ladylike|1
+(adj)|refined (similar term)
+ladylikeness|1
+(noun)|femininity (generic term)|muliebrity (generic term)
+ladylove|1
+(noun)|dulcinea|sweetheart (generic term)|sweetie (generic term)|steady (generic term)|truelove (generic term)
+ladyship|1
+(noun)|Ladyship|title (generic term)
+laelia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+laertes|1
+(noun)|Laertes|mythical being (generic term)
+laetrile|1
+(noun)|amygdalin (generic term)
+laevulose|1
+(noun)|fructose|fruit sugar|levulose|ketohexose (generic term)
+lafayette|2
+(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier (generic term)
+(noun)|Lafayette|town (generic term)
+laffer|1
+(noun)|Laffer|Arthur Laffer|economist (generic term)|economic expert (generic term)
+laffer curve|1
+(noun)|Laffer curve|graph (generic term)|graphical record (generic term)
+laffite|1
+(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+lafitte|1
+(noun)|Laffite|Lafitte|Jean Laffite|Jean Lafitte|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+lafora's disease|1
+(noun)|myoclonus epilepsy|Lafora's disease|epilepsy (generic term)
+lag|7
+(noun)|slowdown|retardation|delay (generic term)|holdup (generic term)
+(noun)|interim|meantime|meanwhile|time interval (generic term)|interval (generic term)
+(noun)|stave|slat (generic term)|spline (generic term)
+(verb)|dawdle|fall back|fall behind|follow (generic term)
+(verb)|imprison|incarcerate|immure|put behind bars|jail|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+(verb)|flip (generic term)|toss (generic term)|sky (generic term)|pitch (generic term)
+(verb)|cover (generic term)
+lag b'omer|1
+(noun)|Lag b'Omer|Jewish holy day (generic term)
+lag bolt|1
+(noun)|lag screw|woodscrew (generic term)
+lag screw|1
+(noun)|lag bolt|woodscrew (generic term)
+lagan|1
+(noun)|lagend|ligan|wreckage (generic term)
+lagarostrobus|1
+(noun)|Lagarostrobus|genus Lagarostrobus|gymnosperm genus (generic term)
+lagarostrobus colensoi|1
+(noun)|westland pine|silver pine|Lagarostrobus colensoi|conifer (generic term)|coniferous tree (generic term)
+lagarostrobus franklinii|1
+(noun)|huon pine|Lagarostrobus franklinii|Dacrydium franklinii|conifer (generic term)|coniferous tree (generic term)
+lagenaria|1
+(noun)|Lagenaria|genus Lagenaria|dicot genus (generic term)|magnoliopsid genus (generic term)
+lagenaria siceraria|1
+(noun)|bottle gourd|calabash|Lagenaria siceraria|gourd (generic term)|gourd vine (generic term)
+lagend|1
+(noun)|lagan|ligan|wreckage (generic term)
+lagenophera|1
+(noun)|Lagenophera|genus Lagenophera|asterid dicot genus (generic term)
+lager|2
+(noun)|laager|camp (generic term)|encampment (generic term)|cantonment (generic term)|bivouac (generic term)
+(noun)|lager beer|beer (generic term)
+lager beer|1
+(noun)|lager|beer (generic term)
+lagerstroemia|1
+(noun)|Lagerstroemia|genus Lagerstroemia|plant genus (generic term)
+lagerstroemia indica|1
+(noun)|crape myrtle|crepe myrtle|crepe flower|Lagerstroemia indica|shrub (generic term)|bush (generic term)
+lagerstroemia speciosa|1
+(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree (generic term)|flowering tree (generic term)
+laggard|3
+(adj)|dilatory|unpunctual (similar term)
+(adj)|dilatory|poky|pokey|slow (similar term)
+(noun)|dawdler|drone|lagger|trailer|poke|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+lagger|1
+(noun)|dawdler|drone|laggard|trailer|poke|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+lagging|1
+(noun)|insulating material (generic term)|insulant (generic term)|insulation (generic term)
+lagidium|1
+(noun)|Lagidium|genus Lagidium|mammal genus (generic term)
+lagniappe|1
+(noun)|gift (generic term)
+lagodon|1
+(noun)|Lagodon|genus Lagodon|fish genus (generic term)
+lagodon rhomboides|1
+(noun)|pinfish|sailor's-choice|squirrelfish|Lagodon rhomboides|sparid (generic term)|sparid fish (generic term)
+lagomorph|1
+(noun)|gnawing mammal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+lagomorpha|1
+(noun)|Lagomorpha|order Lagomorpha|animal order (generic term)
+lagoon|1
+(noun)|laguna|lagune|lake (generic term)
+lagophthalmos|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+lagopus|1
+(noun)|Lagopus|genus Lagopus|bird genus (generic term)
+lagopus scoticus|1
+(noun)|red grouse|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan (generic term)
+lagorchestes|1
+(noun)|Lagorchestes|genus Lagorchestes|mammal genus (generic term)
+lagos|1
+(noun)|Lagos|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+lagostomus|1
+(noun)|Lagostomus|genus Lagostomus|mammal genus (generic term)
+lagostomus maximus|1
+(noun)|viscacha|chinchillon|Lagostomus maximus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+lagothrix|1
+(noun)|Lagothrix|genus Lagothrix|mammal genus (generic term)
+laguna|1
+(noun)|lagoon|lagune|lake (generic term)
+laguncularia|1
+(noun)|Laguncularia|genus Laguncularia|plant genus (generic term)
+laguncularia racemosa|1
+(noun)|white mangrove|Laguncularia racemosa|tree (generic term)
+lagune|1
+(noun)|lagoon|laguna|lake (generic term)
+lah|1
+(noun)|la|solfa syllable (generic term)
+lahar|1
+(noun)|avalanche (generic term)
+lahore|1
+(noun)|Lahore|city (generic term)|metropolis (generic term)|urban center (generic term)
+lahu|1
+(noun)|Lahu|Loloish (generic term)
+laic|1
+(adj)|lay|secular|profane (similar term)
+laicise|1
+(verb)|laicize|change (generic term)|alter (generic term)|modify (generic term)
+laicize|1
+(verb)|laicise|change (generic term)|alter (generic term)|modify (generic term)
+laid|1
+(adj)|set|arranged (similar term)|ordered (similar term)
+laid-back|1
+(adj)|mellow|relaxed (similar term)
+laid-off|1
+(adj)|discharged|dismissed|fired|pink-slipped|unemployed (similar term)
+laid low|1
+(adj)|stricken|ill (similar term)|sick (similar term)
+laid paper|1
+(noun)|writing paper (generic term)
+laid up|1
+(adj)|ill (similar term)|sick (similar term)
+lair|1
+(noun)|den|habitation (generic term)
+laird|1
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+laissez-faire|1
+(adj)|individualistic|capitalistic (similar term)|capitalist (similar term)
+laissez-faire economy|1
+(noun)|market economy|free enterprise|private enterprise|economy (generic term)|economic system (generic term)|non-market economy (antonym)
+laissez faire|1
+(noun)|individualism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+laissez passer|1
+(noun)|pass|permission (generic term)
+laity|1
+(noun)|temporalty|multitude (generic term)|masses (generic term)|mass (generic term)|hoi polloi (generic term)|people (generic term)|the great unwashed (generic term)|clergy (antonym)
+laius|1
+(noun)|Laius|mythical being (generic term)
+lake|2
+(noun)|body of water (generic term)|water (generic term)
+(noun)|pigment (generic term)
+lake albert|1
+(noun)|Lake Albert|Lake Albert Nyanza|Mobuto Lake|lake (generic term)
+lake albert nyanza|1
+(noun)|Lake Albert|Lake Albert Nyanza|Mobuto Lake|lake (generic term)
+lake aral|1
+(noun)|Lake Aral|Aral Sea|lake (generic term)
+lake baikal|1
+(noun)|Lake Baikal|Lake Baykal|lake (generic term)
+lake balaton|1
+(noun)|Balaton|Lake Balaton|Plattensee|lake (generic term)
+lake baykal|1
+(noun)|Lake Baikal|Lake Baykal|lake (generic term)
+lake bed|1
+(noun)|lake bottom|bed (generic term)|bottom (generic term)
+lake bottom|1
+(noun)|lake bed|bed (generic term)|bottom (generic term)
+lake canandaigua|1
+(noun)|Canandaigua Lake|Lake Canandaigua|lake (generic term)
+lake cayuga|1
+(noun)|Cayuga Lake|Lake Cayuga|lake (generic term)
+lake chad|1
+(noun)|Lake Chad|Chad|lake (generic term)
+lake champlain|1
+(noun)|Lake Champlain|Champlain|lake (generic term)
+lake chelan|1
+(noun)|Lake Chelan|lake (generic term)
+lake clark national park|1
+(noun)|Lake Clark National Park|national park (generic term)
+lake constance|1
+(noun)|Constance|Lake Constance|Bodensee|lake (generic term)
+lake district|1
+(noun)|Lake District|Lakeland|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+lake duck|1
+(noun)|lesser scaup|lesser scaup duck|Aythya affinis|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+lake dwelling|1
+(noun)|pile dwelling|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+lake edward|1
+(noun)|Lake Edward|lake (generic term)
+lake erie|1
+(noun)|Lake Erie|Erie|lake (generic term)
+lake eyre|1
+(noun)|Eyre|Lake Eyre|lake (generic term)
+lake geneva|1
+(noun)|Lake Geneva|Lake Leman|lake (generic term)
+lake herring|2
+(noun)|cisco|whitefish (generic term)
+(noun)|cisco|Coregonus artedi|whitefish (generic term)
+lake huron|1
+(noun)|Lake Huron|Huron|lake (generic term)
+lake ilmen|1
+(noun)|Lake Ilmen|Ilmen|lake (generic term)
+lake keuka|1
+(noun)|Keuka Lake|Lake Keuka|lake (generic term)
+lake kivu|1
+(noun)|Kivu|Lake Kivu|lake (generic term)
+lake ladoga|1
+(noun)|Lake Ladoga|Ladoga|lake (generic term)
+lake leman|1
+(noun)|Lake Geneva|Lake Leman|lake (generic term)
+lake malawi|1
+(noun)|Lake Nyasa|Lake Malawi|lake (generic term)
+lake mead|1
+(noun)|Lake Mead|reservoir (generic term)|artificial lake (generic term)
+lake michigan|1
+(noun)|Lake Michigan|Michigan|lake (generic term)
+lake nasser|1
+(noun)|Lake Nasser|Nasser|lake (generic term)
+lake nyasa|1
+(noun)|Lake Nyasa|Lake Malawi|lake (generic term)
+lake okeechobee|1
+(noun)|Okeechobee|Lake Okeechobee|lake (generic term)
+lake onega|1
+(noun)|Lake Onega|Onega|lake (generic term)
+lake ontario|1
+(noun)|Lake Ontario|Ontario|lake (generic term)
+lake poets|1
+(noun)|school (generic term)|artistic movement (generic term)|art movement (generic term)
+lake powell|1
+(noun)|Lake Powell|reservoir (generic term)|artificial lake (generic term)
+lake saint clair|1
+(noun)|Lake St. Clair|Lake Saint Clair|lake (generic term)
+lake salmon|1
+(noun)|landlocked salmon|Atlantic salmon (generic term)|Salmo salar (generic term)
+lake seneca|1
+(noun)|Seneca Lake|Lake Seneca|lake (generic term)
+lake st. clair|1
+(noun)|Lake St. Clair|Lake Saint Clair|lake (generic term)
+lake superior|1
+(noun)|Lake Superior|Superior|lake (generic term)
+lake tahoe|1
+(noun)|Lake Tahoe|lake (generic term)
+lake tana|1
+(noun)|Lake Tana|Lake Tsana|lake (generic term)
+lake tanganyika|1
+(noun)|Lake Tanganyika|Tanganyika|lake (generic term)
+lake trasimenus|1
+(noun)|Lake Trasimenus|Battle of Lake Trasimenus|pitched battle (generic term)
+lake trout|2
+(noun)|freshwater fish (generic term)
+(noun)|salmon trout|Salvelinus namaycush|trout (generic term)
+lake tsana|1
+(noun)|Lake Tana|Lake Tsana|lake (generic term)
+lake urmia|1
+(noun)|Lake Urmia|Urmia|Daryacheh-ye Orumiyeh|lake (generic term)
+lake vanern|1
+(noun)|Lake Vanern|Vanern|lake (generic term)
+lake victoria|1
+(noun)|Lake Victoria|Victoria Nyanza|lake (generic term)
+lake whitefish|1
+(noun)|Coregonus clupeaformis|whitefish (generic term)
+lake winnipeg|1
+(noun)|Winnipeg|Lake Winnipeg|lake (generic term)
+lakefront|1
+(noun)|geological formation (generic term)|formation (generic term)
+lakeland|1
+(noun)|Lake District|Lakeland|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+lakeland terrier|1
+(noun)|Lakeland terrier|wirehair (generic term)|wirehaired terrier (generic term)|wire-haired terrier (generic term)
+lakeshore|1
+(noun)|lakeside|shore (generic term)
+lakeside|1
+(noun)|lakeshore|shore (generic term)
+lakh|1
+(noun)|hundred thousand|100000|large integer (generic term)
+lakota|1
+(noun)|Teton|Lakota|Teton Sioux|Teton Dakota|Sioux (generic term)|Siouan (generic term)
+lakshmi|1
+(noun)|Lakshmi|Hindu deity (generic term)
+lallans|1
+(noun)|Lallans|Scottish Lallans|Scottish (generic term)|Scots (generic term)|Scots English (generic term)
+lallation|2
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+(noun)|babble|babbling|gibberish (generic term)|gibber (generic term)
+lally|1
+(noun)|lally column|support column (generic term)
+lally column|1
+(noun)|lally|support column (generic term)
+lallygag|1
+(verb)|loiter|lounge|footle|lollygag|loaf|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+lalthyrus tingitanus|1
+(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea (generic term)
+lam|3
+(noun)|getaway|escape (generic term)|flight (generic term)
+(verb)|scat|run|scarper|turn tail|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|thrash|thresh|flail|beat (generic term)|beat up (generic term)|work over (generic term)
+lam into|1
+(verb)|tear into|lace into|pitch into|lay into|hit (generic term)
+lama|2
+(noun)|priest (generic term)|non-Christian priest (generic term)
+(noun)|Lama|genus Lama|mammal genus (generic term)
+lama guanicoe|1
+(noun)|guanaco|Lama guanicoe|llama (generic term)
+lama pacos|1
+(noun)|alpaca|Lama pacos|llama (generic term)
+lama peruana|1
+(noun)|domestic llama|Lama peruana|llama (generic term)
+lamaism|1
+(noun)|Lamaism|Tibetan Buddhism|Buddhism (generic term)
+lamaist|1
+(noun)|Lamaist|disciple (generic term)|adherent (generic term)
+lamarck|1
+(noun)|Lamarck|Jean Baptiste de Lamarck|Chevalier de Lamarck|naturalist (generic term)|natural scientist (generic term)
+lamarckian|2
+(adj)|Lamarckian|theory of evolution|theory of organic evolution|evolutionism (related term)
+(noun)|Lamarckian|follower (generic term)
+lamarckism|1
+(noun)|Lamarckism|theory of evolution (generic term)|theory of organic evolution (generic term)|evolutionism (generic term)
+lamasery|1
+(noun)|monastery (generic term)
+lamaze|1
+(adj)|Lamaze|natural childbirth (related term)
+lamaze method|1
+(noun)|Lamaze method of childbirth|Lamaze method|natural childbirth (generic term)
+lamaze method of childbirth|1
+(noun)|Lamaze method of childbirth|Lamaze method|natural childbirth (generic term)
+lamb|6
+(noun)|young mammal (generic term)
+(noun)|Lamb|Charles Lamb|Elia|essayist (generic term)|litterateur (generic term)
+(noun)|victim (generic term)|dupe (generic term)
+(noun)|dear|innocent (generic term)|inexperienced person (generic term)
+(noun)|meat (generic term)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+lamb's-quarter|1
+(noun)|pigweed|wild spinach|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+lamb's-quarters|1
+(noun)|pigweed|wild spinach|Chenopodium album|goosefoot (generic term)
+lamb's lettuce|1
+(noun)|common corn salad|Valerianella olitoria|Valerianella locusta|corn salad (generic term)
+lamb-chop|1
+(noun)|lamb chop|lambchop|chop (generic term)
+lamb chop|1
+(noun)|lamb-chop|lambchop|chop (generic term)
+lamb curry|1
+(noun)|curry (generic term)
+lamb roast|1
+(noun)|roast lamb|roast (generic term)|joint (generic term)
+lamb succory|1
+(noun)|dwarf nipplewort|Arnoseris minima|herb (generic term)|herbaceous plant (generic term)
+lambast|2
+(verb)|cane|flog|lambaste|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+lambaste|2
+(verb)|cane|flog|lambast|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+lambchop|1
+(noun)|lamb chop|lamb-chop|chop (generic term)
+lambda|2
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|craniometric point (generic term)
+lambda hyperon|1
+(noun)|lambda particle|hyperon (generic term)
+lambda particle|1
+(noun)|lambda hyperon|hyperon (generic term)
+lambdacism|1
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+lambency|1
+(noun)|gleam|gleaming|glow|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+lambent|1
+(adj)|aglow|lucent|luminous|bright (similar term)
+lambert|2
+(noun)|L|illumination unit (generic term)
+(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+lambert-eaton syndrome|1
+(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|myasthenic syndrome|carcinomatous myopathy|disease of the neuromuscular junction (generic term)
+lambertia|1
+(noun)|Lambertia|genus Lambertia|dicot genus (generic term)|magnoliopsid genus (generic term)
+lambertia formosa|1
+(noun)|honeyflower|honey-flower|mountain devil|Lambertia formosa|shrub (generic term)|bush (generic term)
+lambis|1
+(noun)|Lambis|genus Lambis|mollusk genus (generic term)
+lambkill|1
+(noun)|sheep laurel|pig laurel|Kalmia angustifolia|kalmia (generic term)
+lambkin|1
+(noun)|lamb (generic term)
+lamblike|1
+(adj)|compliant (similar term)
+lamboid suture|1
+(noun)|sutura lamboidea|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+lambrequin|2
+(noun)|scarf (generic term)
+(noun)|hanging (generic term)|wall hanging (generic term)
+lambskin|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|parchment|sheepskin|animal skin (generic term)
+lame|5
+(adj)|feeble|weak (similar term)
+(adj)|crippled|halt|halting|gimpy|game|unfit (similar term)
+(noun)|square|simpleton (generic term)|simple (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|cripple|maim (generic term)
+lame duck|1
+(noun)|elected official (generic term)
+lamedh|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+lamella|3
+(noun)|gill|plant organ (generic term)
+(noun)|membrane (generic term)|tissue layer (generic term)
+(noun)|plate (generic term)
+lamellar mixture|1
+(noun)|mixture (generic term)
+lamellate placentation|1
+(noun)|placentation (generic term)
+lamellibranch|2
+(adj)|pelecypod|pelecypodous|bivalve (similar term)|bivalved (similar term)
+(noun)|bivalve|pelecypod|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+lamellibranchia|1
+(noun)|Bivalvia|class Bivalvia|Lamellibranchia|class Lamellibranchia|class Pelecypoda|class (generic term)
+lamellicorn beetle|1
+(noun)|beetle (generic term)
+lamellicornia|1
+(noun)|Lamellicornia|superfamily Lamellicornia|arthropod family (generic term)
+lameness|2
+(noun)|limping|gimp|gimpiness|gameness|claudication|disability of walking (generic term)
+(noun)|defectiveness (generic term)|faultiness (generic term)
+lament|5
+(noun)|lamentation|plaint|wail|complaint (generic term)
+(noun)|dirge|coronach|requiem|threnody|song (generic term)|vocal (generic term)
+(noun)|elegy|poem (generic term)|verse form (generic term)
+(verb)|keen|express emotion (generic term)|express feelings (generic term)
+(verb)|deplore|bewail|bemoan|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+lamentable|1
+(adj)|deplorable|distressing|pitiful|sad|sorry|bad (similar term)
+lamentably|1
+(adv)|deplorably|sadly|woefully
+lamentation|2
+(noun)|lament|plaint|wail|complaint (generic term)
+(noun)|mourning|activity (generic term)|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+lamentations|1
+(noun)|Lamentations|Book of Lamentations|book (generic term)
+lamented|1
+(adj)|unlamented (antonym)
+lamenter|1
+(noun)|mourner|griever|sorrower|unfortunate (generic term)|unfortunate person (generic term)
+lamenting|1
+(adj)|wailing|wailful|sorrowful (similar term)
+lamia|1
+(noun)|vampire|evil spirit (generic term)
+lamiaceae|1
+(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|mint family|asterid dicot family (generic term)
+lamina|1
+(noun)|plate (generic term)
+lamina arcus vertebrae|1
+(noun)|lamina (generic term)
+laminal|1
+(adj)|laminar|stratified (similar term)|bedded (similar term)
+laminar|1
+(adj)|laminal|stratified (similar term)|bedded (similar term)
+laminar flow|1
+(noun)|streamline flow (generic term)
+laminar flow clean room|1
+(noun)|clean room (generic term)|white room (generic term)
+laminaria|1
+(noun)|Laminaria|genus Laminaria|protoctist genus (generic term)
+laminariaceae|1
+(noun)|Laminariaceae|family Laminariaceae|protoctist family (generic term)
+laminariales|1
+(noun)|Laminariales|order Laminariales|protoctist order (generic term)
+laminate|5
+(noun)|sheet (generic term)|flat solid (generic term)|lamination (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|flatten (generic term)
+(verb)|cover (generic term)
+(verb)|cleave (generic term)|split (generic term)|rive (generic term)
+laminated glass|1
+(noun)|safety glass|shatterproof glass|glass (generic term)
+lamination|2
+(noun)|structure (generic term)|construction (generic term)
+(noun)|creating from raw materials (generic term)
+laminator|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+laminectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+laminitis|1
+(noun)|founder|inflammation (generic term)|redness (generic term)|rubor (generic term)
+lamisil|1
+(noun)|terbinafine|Lamisil|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+lamium|1
+(noun)|Lamium|genus Lamium|asterid dicot genus (generic term)
+lamium album|1
+(noun)|white dead nettle|Lamium album|dead nettle (generic term)
+lamium amplexicaule|1
+(noun)|henbit|Lamium amplexicaule|dead nettle (generic term)
+lamivudine|1
+(noun)|3TC|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+lammas|1
+(noun)|Lammas|Lammas Day|August 1|quarter day (generic term)
+lammas day|1
+(noun)|Lammas|Lammas Day|August 1|quarter day (generic term)
+lammastide|1
+(noun)|Lammastide|season (generic term)
+lammergeier|1
+(noun)|bearded vulture|lammergeyer|Gypaetus barbatus|Old World vulture (generic term)
+lammergeyer|1
+(noun)|bearded vulture|lammergeier|Gypaetus barbatus|Old World vulture (generic term)
+lamna|1
+(noun)|Lamna|genus Lamna|fish genus (generic term)
+lamna nasus|1
+(noun)|porbeagle|Lamna nasus|mackerel shark (generic term)
+lamnidae|1
+(noun)|Lamnidae|family Lamnidae|fish family (generic term)
+lamp|2
+(noun)|source of illumination (generic term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+lamp chimney|1
+(noun)|chimney|flue (generic term)
+lamp house|1
+(noun)|lamphouse|lamp housing|housing (generic term)
+lamp housing|1
+(noun)|lamp house|lamphouse|housing (generic term)
+lamp oil|1
+(noun)|kerosene|kerosine|coal oil|fuel (generic term)|hydrocarbon (generic term)
+lamp shade|1
+(noun)|lampshade|shade (generic term)
+lamp shell|1
+(noun)|brachiopod|lampshell|invertebrate (generic term)
+lampblack|1
+(noun)|carbon black|soot|smut|crock|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+lamper eel|1
+(noun)|lamprey|lamprey eel|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+lamphouse|1
+(noun)|lamp house|lamp housing|housing (generic term)
+lamplight|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+lamplighter|1
+(noun)|worker (generic term)
+lamplit|1
+(adj)|light (similar term)
+lampoon|2
+(noun)|parody|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(verb)|satirize|satirise|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+lampoon artist|1
+(noun)|cartoonist (generic term)
+lampooner|1
+(noun)|parodist|humorist (generic term)|humourist (generic term)
+lamppost|1
+(noun)|post (generic term)
+lamprey|1
+(noun)|lamprey eel|lamper eel|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+lamprey eel|1
+(noun)|lamprey|lamper eel|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+lampridae|1
+(noun)|Lampridae|family Lampridae|fish family (generic term)
+lampris|1
+(noun)|Lampris|genus Lampris|fish genus (generic term)
+lampris guttatus|1
+(noun)|New World opah|Lampris guttatus|soft-finned fish (generic term)|malacopterygian (generic term)
+lampris regius|1
+(noun)|opah|moonfish|Lampris regius|soft-finned fish (generic term)|malacopterygian (generic term)
+lampropeltis|1
+(noun)|Lampropeltis|genus Lampropeltis|reptile genus (generic term)
+lampropeltis getulus|1
+(noun)|common kingsnake|Lampropeltis getulus|king snake (generic term)|kingsnake (generic term)
+lampropeltis triangulum|1
+(noun)|milk snake|house snake|milk adder|checkered adder|Lampropeltis triangulum|king snake (generic term)|kingsnake (generic term)
+lampshade|1
+(noun)|lamp shade|shade (generic term)
+lampshell|1
+(noun)|brachiopod|lamp shell|invertebrate (generic term)
+lampyridae|1
+(noun)|Lampyridae|family Lampyridae|arthropod family (generic term)
+lan|1
+(noun)|local area network|LAN|computer network (generic term)
+lanai|2
+(noun)|Lanai|Lanai Island|island (generic term)
+(noun)|veranda (generic term)|verandah (generic term)|gallery (generic term)
+lanai island|1
+(noun)|Lanai|Lanai Island|island (generic term)
+lanate|1
+(adj)|woolly|hairy (similar term)|haired (similar term)|hirsute (similar term)
+lancashire|1
+(noun)|Lancashire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lancaster|2
+(noun)|Lancaster|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+lancastrian|3
+(adj)|Lancastrian|dynasty|royalty|royal family|royal line|royal house (related term)
+(adj)|Lancastrian|city|metropolis|urban center (related term)
+(noun)|Lancastrian|English person (generic term)
+lancastrian line|1
+(noun)|Lancaster|House of Lancaster|Lancastrian line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+lance|6
+(noun)|spear|shaft|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|spear|gig|fizgig|fishgig|implement (generic term)
+(noun)|lancet|surgical knife (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|pierce (generic term)|thrust (generic term)
+(verb)|open (generic term)|open up (generic term)
+lance-shaped|1
+(adj)|formed (similar term)
+lance corporal|1
+(noun)|noncommissioned officer (generic term)|noncom (generic term)
+lancelet|1
+(noun)|amphioxus|cephalochordate (generic term)
+lancelike|1
+(adj)|lanceolate|simple (similar term)|unsubdivided (similar term)
+lancelot|1
+(noun)|Lancelot|Sir Lancelot|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+lanceolate|1
+(adj)|lancelike|simple (similar term)|unsubdivided (similar term)
+lanceolate leaf|1
+(noun)|simple leaf (generic term)
+lanceolate spleenwort|1
+(noun)|Asplenium billotii|spleenwort (generic term)
+lancer|1
+(noun)|cavalryman (generic term)|trooper (generic term)
+lancers|1
+(noun)|quadrille (generic term)
+lancet|2
+(noun)|lancet arch|Gothic arch (generic term)
+(noun)|lance|surgical knife (generic term)
+lancet-shaped|1
+(adj)|formed (similar term)
+lancet arch|1
+(noun)|lancet|Gothic arch (generic term)
+lancet fish|1
+(noun)|lancetfish|wolffish|soft-finned fish (generic term)|malacopterygian (generic term)
+lancet window|1
+(noun)|window (generic term)
+lancetfish|1
+(noun)|lancet fish|wolffish|soft-finned fish (generic term)|malacopterygian (generic term)
+lancewood|2
+(noun)|wood (generic term)
+(noun)|lancewood tree|Oxandra lanceolata|tree (generic term)
+lancewood tree|2
+(noun)|laurelwood|Calophyllum candidissimum|tree (generic term)
+(noun)|lancewood|Oxandra lanceolata|tree (generic term)
+lanchou|1
+(noun)|Lanzhou|Lanchou|Lanchow|city (generic term)|metropolis (generic term)|urban center (generic term)
+lanchow|1
+(noun)|Lanzhou|Lanchou|Lanchow|city (generic term)|metropolis (generic term)|urban center (generic term)
+lancinate|1
+(adj)|cutting|keen|knifelike|piercing|stabbing|lancinating|sharp (similar term)
+lancinating|1
+(adj)|cutting|keen|knifelike|piercing|stabbing|lancinate|sharp (similar term)
+land|19
+(adj)|onshore (similar term)|overland (similar term)|sea (antonym)|air (antonym)
+(noun)|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|ground|soil|object (generic term)|physical object (generic term)
+(noun)|dry land|earth|ground|solid ground|terra firma|object (generic term)|physical object (generic term)
+(noun)|domain|demesne|region (generic term)
+(noun)|country|state|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|kingdom|realm|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|estate|landed estate|acres|demesne|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|nation|country|people (generic term)
+(noun)|state|nation|country|commonwealth|res publica|body politic|political unit (generic term)|political entity (generic term)
+(noun)|Land|Din Land|Edwin Herbert Land|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+(noun)|farming|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(verb)|set down|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|put down|bring down|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|bring|change (generic term)|alter (generic term)|modify (generic term)|bring down (related term)|bring up (related term)
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|deliver (generic term)|drive home (generic term)
+(verb)|set ashore|shore|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|down|shoot down
+land-office business|1
+(noun)|business (generic term)
+land agent|2
+(noun)|realtor|real estate broker|real estate agent|estate agent|house agent|agent (generic term)|factor (generic term)|broker (generic term)
+(noun)|administrator (generic term)|decision maker (generic term)
+land area|1
+(noun)|acreage|area (generic term)|expanse (generic term)|surface area (generic term)
+land cress|1
+(noun)|Belle Isle cress|early winter cress|American cress|American watercress|Barbarea verna|Barbarea praecox|winter cress (generic term)|St. Barbara's herb (generic term)|scurvy grass (generic term)
+land development|1
+(noun)|exploitation (generic term)|development (generic term)
+land grant|1
+(noun)|grant (generic term)|assignment (generic term)
+land line|1
+(noun)|landline|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+land mile|1
+(noun)|mile|statute mile|stat mi|mi|linear unit (generic term)
+land mine|1
+(noun)|ground-emplaced mine|booby trap|mine (generic term)
+land of enchantment|1
+(noun)|New Mexico|Land of Enchantment|NM|American state (generic term)
+land of lincoln|1
+(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state (generic term)
+land of opportunity|1
+(noun)|Arkansas|Land of Opportunity|AR|American state (generic term)
+land office|1
+(noun)|government office (generic term)
+land rail|1
+(noun)|corncrake|Crex crex|crake (generic term)
+land reform|1
+(noun)|reform (generic term)
+land resources|1
+(noun)|natural resource (generic term)|natural resources (generic term)
+land site|1
+(noun)|site|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+land tax|1
+(noun)|property tax|capital levy (generic term)
+land tenure|1
+(noun)|tenure|legal right (generic term)
+land up|2
+(verb)|earth up|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|finish up|fetch up|end up|wind up|finish|act (generic term)|move (generic term)
+landau|2
+(noun)|Landau|Lev Davidovich Landau|physicist (generic term)
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+landed|1
+(adj)|landless (antonym)
+landed estate|1
+(noun)|estate|land|acres|demesne|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+landed gentry|1
+(noun)|squirearchy|gentry (generic term)|aristocracy (generic term)
+lander|2
+(noun)|Lander|town (generic term)
+(noun)|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+landfall|2
+(noun)|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+(noun)|sighting (generic term)
+landfill|1
+(noun)|lowland (generic term)
+landgrave|1
+(noun)|count (generic term)
+landholder|1
+(noun)|landowner|property owner|owner (generic term)|possessor (generic term)
+landholding|2
+(noun)|ownership (generic term)
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+landing|3
+(noun)|platform (generic term)
+(noun)|landing place|structure (generic term)|construction (generic term)
+(noun)|arrival (generic term)
+landing approach|1
+(noun)|approach (generic term)|approaching (generic term)|coming (generic term)
+landing craft|1
+(noun)|craft (generic term)
+landing deck|1
+(noun)|flight deck|deck (generic term)
+landing field|1
+(noun)|airfield|flying field|field|facility (generic term)|installation (generic term)
+landing flap|1
+(noun)|flap (generic term)|flaps (generic term)
+landing gear|1
+(noun)|undercarriage (generic term)
+landing net|1
+(noun)|fishnet (generic term)|fishing net (generic term)
+landing party|1
+(noun)|party (generic term)|company (generic term)
+landing place|1
+(noun)|landing|structure (generic term)|construction (generic term)
+landing skid|1
+(noun)|landing gear (generic term)
+landing stage|1
+(noun)|platform (generic term)
+landing strip|1
+(noun)|airstrip|flight strip|strip|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+landlady|1
+(noun)|landlord (generic term)
+landler|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+landless|1
+(adj)|landed (antonym)
+landline|1
+(noun)|land line|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+landlocked|1
+(adj)|inland (similar term)
+landlocked salmon|1
+(noun)|lake salmon|Atlantic salmon (generic term)|Salmo salar (generic term)
+landlord|1
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+landlord's lien|1
+(noun)|lien (generic term)
+landlubber|2
+(noun)|landsman|landman|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|lubber|landsman|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+landlubberly|1
+(adj)|lubberly|unseamanlike (similar term)
+landman|1
+(noun)|landlubber|landsman|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+landmark|4
+(noun)|position (generic term)|place (generic term)
+(noun)|turning point|watershed|juncture (generic term)|occasion (generic term)
+(noun)|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+landmass|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+landowner|1
+(noun)|landholder|property owner|owner (generic term)|possessor (generic term)
+landowska|1
+(noun)|Landowska|Wanda Landowska|harpsichordist (generic term)
+landrover|1
+(noun)|jeep|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+landry's paralysis|1
+(noun)|Guillain-Barre syndrome|infectious polyneuritis|Landry's paralysis|polyneuritis (generic term)|multiple neuritis (generic term)
+landscape|6
+(noun)|scenery (generic term)
+(noun)|painting (generic term)|picture (generic term)
+(noun)|landscape painting|genre (generic term)
+(noun)|point of view (generic term)|viewpoint (generic term)|stand (generic term)|standpoint (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|garden (generic term)
+landscape architect|1
+(noun)|landscape gardener|landscaper|landscapist|architect (generic term)|designer (generic term)
+landscape architecture|1
+(noun)|architecture (generic term)
+landscape gardener|1
+(noun)|landscape architect|landscaper|landscapist|architect (generic term)|designer (generic term)
+landscape gardening|1
+(noun)|landscaping|gardening (generic term)|horticulture (generic term)
+landscape painting|1
+(noun)|landscape|genre (generic term)
+landscaped|1
+(adj)|improved (similar term)
+landscaper|1
+(noun)|landscape architect|landscape gardener|landscapist|architect (generic term)|designer (generic term)
+landscaping|2
+(noun)|landscape gardening|gardening (generic term)|horticulture (generic term)
+(noun)|garden (generic term)
+landscapist|2
+(noun)|painter (generic term)
+(noun)|landscape architect|landscape gardener|landscaper|architect (generic term)|designer (generic term)
+landside|1
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+landslide|2
+(noun)|victory (generic term)|triumph (generic term)
+(noun)|landslip|slide (generic term)
+landslip|1
+(noun)|landslide|slide (generic term)
+landsmal|1
+(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian (generic term)
+landsman|2
+(noun)|landlubber|landman|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|landlubber|lubber|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+landsteiner|1
+(noun)|Landsteiner|Karl Landsteiner|diagnostician (generic term)|pathologist (generic term)
+landward|1
+(adv)|landwards
+landwards|1
+(adv)|landward
+lane|2
+(noun)|way (generic term)
+(noun)|path (generic term)
+lane's prince albert|1
+(noun)|Lane's Prince Albert|cooking apple (generic term)
+laney|1
+(noun)|Laney|Lucy Craft Laney|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+lang syne|1
+(adv)|long ago|long since
+langbeinite|1
+(noun)|mineral (generic term)
+lange|1
+(noun)|Lange|Dorothea Lange|photographer (generic term)|lensman (generic term)
+langlauffer|1
+(noun)|skier (generic term)
+langley|2
+(noun)|unit of measurement (generic term)|unit (generic term)
+(noun)|Langley|Samuel Pierpoint Langley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+langmuir|1
+(noun)|Langmuir|Irving Langmuir|chemist (generic term)
+langobard|1
+(noun)|Lombard|Langobard|European (generic term)
+langouste|2
+(noun)|spiny lobster|rock lobster|crayfish|shellfish (generic term)
+(noun)|spiny lobster|rock lobster|crawfish|crayfish|sea crawfish|lobster (generic term)
+langoustine|1
+(noun)|Norwegian lobster|scampo|lobster (generic term)
+langsat|1
+(noun)|lanseh tree|langset|Lansium domesticum|tree (generic term)
+langset|1
+(noun)|lanseh tree|langsat|Lansium domesticum|tree (generic term)
+langside|1
+(noun)|Langside|battle of Langside|pitched battle (generic term)
+langston hughes|1
+(noun)|Hughes|Langston Hughes|James Langston Hughes|writer (generic term)|author (generic term)
+langsyne|1
+(noun)|auld langsyne|old times|good old days|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+langtry|1
+(noun)|Langtry|Lillie Langtry|Jersey Lillie|Emilie Charlotte le Breton|actress (generic term)
+language|6
+(noun)|linguistic communication|communication (generic term)
+(noun)|speech|speech communication|spoken communication|spoken language|voice communication|oral communication|auditory communication (generic term)
+(noun)|terminology|nomenclature|word (generic term)
+(noun)|linguistic process|higher cognitive process (generic term)
+(noun)|speech|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|lyric|words|text (generic term)|textual matter (generic term)
+language area|1
+(noun)|language zone|cortical area (generic term)|cortical region (generic term)
+language barrier|1
+(noun)|barrier (generic term)|roadblock (generic term)
+language learning|1
+(noun)|learning (generic term)|acquisition (generic term)
+language lesson|1
+(noun)|lesson (generic term)
+language requirement|1
+(noun)|academic requirement (generic term)
+language school|1
+(noun)|school (generic term)
+language system|1
+(noun)|system (generic term)|scheme (generic term)
+language teaching|1
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+language unit|1
+(noun)|linguistic unit|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+language zone|1
+(noun)|language area|cortical area (generic term)|cortical region (generic term)
+languas speciosa|1
+(noun)|shellflower|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+langue d'oc|1
+(noun)|Langue d'oc|Langue d'oc French|French (generic term)
+langue d'oc french|1
+(noun)|Langue d'oc|Langue d'oc French|French (generic term)
+langue d'oil|1
+(noun)|Langue d'oil|Langue d'oil French|French (generic term)
+langue d'oil french|1
+(noun)|Langue d'oil|Langue d'oil French|French (generic term)
+languedoc-roussillon|1
+(noun)|Languedoc-Roussillon|French region (generic term)
+languid|1
+(adj)|dreamy|lackadaisical|languorous|lethargic (similar term)|unergetic (similar term)
+languish|3
+(verb)|pine away|waste|weaken (generic term)
+(verb)|ache|yearn|yen|pine|hanker (generic term)|long (generic term)|yearn (generic term)
+(verb)|fade|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+languisher|1
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+languor|3
+(noun)|dreaminess|easiness (generic term)|relaxation (generic term)
+(noun)|lassitude|listlessness|apathy (generic term)
+(noun)|lethargy|sluggishness|phlegm|flatness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+languorous|1
+(adj)|dreamy|lackadaisical|languid|lethargic (similar term)|unergetic (similar term)
+langur|1
+(noun)|Old World monkey (generic term)|catarrhine (generic term)
+laniard|2
+(noun)|lanyard|cord (generic term)
+(noun)|lanyard|line (generic term)
+laniary|1
+(adj)|canine|tooth (related term)
+laniidae|1
+(noun)|Laniidae|family Laniidae|bird family (generic term)
+lanius|1
+(noun)|Lanius|genus Lanius|bird genus (generic term)
+lanius borealis|1
+(noun)|northern shrike|Lanius borealis|butcherbird (generic term)
+lanius excubitor|1
+(noun)|European shrike|Lanius excubitor|butcherbird (generic term)
+lanius lucovicianus|1
+(noun)|loggerhead shrike|Lanius lucovicianus|shrike (generic term)
+lanius ludovicianus excubitorides|1
+(noun)|white-rumped shrike|Lanius ludovicianus excubitorides|butcherbird (generic term)
+lanius ludovicianus migrans|1
+(noun)|migrant shrike|Lanius ludovicianus migrans|shrike (generic term)
+lank|2
+(adj)|long (similar term)
+(adj)|spindly|thin (similar term)|lean (similar term)
+lankiness|1
+(noun)|physique (generic term)|build (generic term)|body-build (generic term)|habitus (generic term)
+lanky|2
+(adj)|gangling|gangly|rangy|tall (similar term)
+(adj)|gangling|gangly|thin (similar term)|lean (similar term)
+lanolin|2
+(noun)|wool fat|wool grease|animal oil (generic term)
+(noun)|cream (generic term)|ointment (generic term)|emollient (generic term)
+lanoxin|1
+(noun)|digoxin|Lanoxin|digitalis (generic term)|digitalis glycoside (generic term)|digitalin (generic term)
+lansa|1
+(noun)|lanseh|lansat|lanset|edible fruit (generic term)
+lansat|1
+(noun)|lanseh|lansa|lanset|edible fruit (generic term)
+lanseh|1
+(noun)|lansa|lansat|lanset|edible fruit (generic term)
+lanseh tree|1
+(noun)|langsat|langset|Lansium domesticum|tree (generic term)
+lanset|1
+(noun)|lanseh|lansa|lansat|edible fruit (generic term)
+lansing|1
+(noun)|Lansing|capital of Michigan|state capital (generic term)
+lansium domesticum|1
+(noun)|lanseh tree|langsat|langset|Lansium domesticum|tree (generic term)
+lansoprazole|1
+(noun)|Prevacid|acid (generic term)
+lantana|1
+(noun)|poisonous plant (generic term)
+lantern|1
+(noun)|lamp (generic term)
+lantern-fly|1
+(noun)|lantern fly|plant hopper (generic term)|planthopper (generic term)
+lantern-jawed|1
+(adj)|prognathous (similar term)|prognathic (similar term)|hypognathous (similar term)
+lantern fly|1
+(noun)|lantern-fly|plant hopper (generic term)|planthopper (generic term)
+lantern jaw|1
+(noun)|lower jaw (generic term)|mandible (generic term)|mandibula (generic term)|mandibular bone (generic term)|submaxilla (generic term)|lower jawbone (generic term)|jawbone (generic term)|jowl (generic term)
+lantern pinion|1
+(noun)|lantern wheel|pinion (generic term)
+lantern slide|1
+(noun)|slide|foil (generic term)|transparency (generic term)
+lantern wheel|1
+(noun)|lantern pinion|pinion (generic term)
+lanternfish|1
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+lanthanide|1
+(noun)|rare earth|rare-earth element|lanthanoid|lanthanon|group (generic term)|grouping (generic term)
+lanthanide series|1
+(noun)|series (generic term)
+lanthanoid|1
+(noun)|rare earth|rare-earth element|lanthanide|lanthanon|group (generic term)|grouping (generic term)
+lanthanon|1
+(noun)|rare earth|rare-earth element|lanthanoid|lanthanide|group (generic term)|grouping (generic term)
+lanthanotidae|1
+(noun)|Lanthanotidae|family Lanthanotidae|reptile family (generic term)
+lanthanotus|1
+(noun)|Lanthanotus|genus Lanthanotus|reptile genus (generic term)
+lanthanotus borneensis|1
+(noun)|Lanthanotus borneensis|lizard (generic term)
+lanthanum|1
+(noun)|La|atomic number 57|metallic element (generic term)|metal (generic term)
+lanugo|1
+(noun)|down (generic term)|pile (generic term)
+lanyard|2
+(noun)|laniard|cord (generic term)
+(noun)|laniard|line (generic term)
+lanzhou|1
+(noun)|Lanzhou|Lanchou|Lanchow|city (generic term)|metropolis (generic term)|urban center (generic term)
+lao|3
+(adj)|Lao|Asian|Asiatic (related term)
+(noun)|Lao|Laotian|Asian (generic term)|Asiatic (generic term)
+(noun)|Lao|Tai (generic term)
+lao-tse|1
+(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher (generic term)
+lao-tzu|1
+(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher (generic term)
+lao-zi|1
+(noun)|Lao-tzu|Lao-tse|Lao-zi|philosopher (generic term)
+lao people's democratic republic|1
+(noun)|Laos|Lao People's Democratic Republic|Asian country (generic term)|Asian nation (generic term)
+laocoon|1
+(noun)|Laocoon|mythical being (generic term)
+laos|1
+(noun)|Laos|Lao People's Democratic Republic|Asian country (generic term)|Asian nation (generic term)
+laotian|2
+(adj)|Laotian|Asian country|Asian nation (related term)
+(noun)|Lao|Laotian|Asian (generic term)|Asiatic (generic term)
+laotian capital|1
+(noun)|Vientiane|Laotian capital|capital of Laos|national capital (generic term)
+laotian monetary unit|1
+(noun)|Laotian monetary unit|monetary unit (generic term)
+lap|11
+(noun)|thigh (generic term)
+(noun)|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|lap covering|cloth covering (generic term)
+(noun)|overlap|flap (generic term)
+(noun)|circle|circuit|locomotion (generic term)|travel (generic term)
+(noun)|lick|touch (generic term)|touching (generic term)
+(verb)|lie (generic term)
+(verb)|lick|stroke (generic term)|fondle (generic term)
+(verb)|swish|swosh|swoosh|sound (generic term)|go (generic term)
+(verb)|lap up|lick|drink (generic term)|imbibe (generic term)
+(verb)|lave|wash|flow (generic term)
+lap-jointed|1
+(adj)|lap-strake|lap-straked|lap-streak|lap-streaked|overlapping|clinker-built (similar term)|clincher-built (similar term)
+lap-strake|1
+(adj)|lap-jointed|lap-straked|lap-streak|lap-streaked|overlapping|clinker-built (similar term)|clincher-built (similar term)
+lap-straked|1
+(adj)|lap-jointed|lap-strake|lap-streak|lap-streaked|overlapping|clinker-built (similar term)|clincher-built (similar term)
+lap-streak|1
+(adj)|lap-jointed|lap-strake|lap-straked|lap-streaked|overlapping|clinker-built (similar term)|clincher-built (similar term)
+lap-streaked|1
+(adj)|lap-jointed|lap-strake|lap-straked|lap-streak|overlapping|clinker-built (similar term)|clincher-built (similar term)
+lap choly|1
+(noun)|laparoscopic cholecystectomy|cholecystectomy (generic term)
+lap covering|1
+(noun)|lap|cloth covering (generic term)
+lap joint|1
+(noun)|splice|joint (generic term)
+lap of honour|1
+(noun)|victory lap|lap (generic term)|circle (generic term)|circuit (generic term)
+lap of luxury|1
+(noun)|ease (generic term)|comfort (generic term)
+lap of the gods|1
+(noun)|lap (generic term)
+lap up|1
+(verb)|lap|lick|drink (generic term)|imbibe (generic term)
+laparocele|1
+(noun)|hernia (generic term)|herniation (generic term)
+laparoscope|1
+(noun)|endoscope (generic term)
+laparoscopic cholecystectomy|1
+(noun)|lap choly|cholecystectomy (generic term)
+laparoscopy|1
+(noun)|laparotomy (generic term)
+laparotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+lapboard|1
+(noun)|writing board (generic term)
+lapdog|1
+(noun)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+lapel|1
+(noun)|lap (generic term)|overlap (generic term)
+lapful|1
+(noun)|containerful (generic term)
+lapidarian|1
+(adj)|carved (similar term)|carven (similar term)
+lapidarist|1
+(noun)|lapidary|expert (generic term)
+lapidary|3
+(adj)|crystal (related term)
+(noun)|lapidarist|expert (generic term)
+(noun)|lapidist|engraver (generic term)
+lapidate|2
+(verb)|stone|kill (generic term)
+(verb)|pelt (generic term)|bombard (generic term)
+lapidation|1
+(noun)|stoning|corporal punishment (generic term)
+lapidator|1
+(noun)|stoner|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+lapidify|1
+(verb)|petrify|fossilize (generic term)|fossilise (generic term)
+lapidist|1
+(noun)|lapidary|engraver (generic term)
+lapin|2
+(noun)|rabbit|fur (generic term)|pelt (generic term)
+(noun)|rabbit (generic term)|coney (generic term)|cony (generic term)
+lapis lazuli|1
+(noun)|lazuli|opaque gem (generic term)
+laplace|1
+(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+lapland|1
+(noun)|Lappland|Lapland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+laportea|1
+(noun)|Laportea|genus Laportea|dicot genus (generic term)|magnoliopsid genus (generic term)
+laportea canadensis|1
+(noun)|wood nettle|Laportea canadensis|nettle (generic term)
+lapp|2
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+(noun)|Lapp|Sami|Saami|Same|Saame|Lappic (generic term)|Lappish (generic term)
+lappet|3
+(noun)|wattle|caruncle (generic term)|caruncula (generic term)
+(noun)|lap (generic term)|overlap (generic term)
+(noun)|lappet moth|lasiocampid (generic term)|lasiocampid moth (generic term)
+lappet caterpillar|1
+(noun)|caterpillar (generic term)
+lappet moth|1
+(noun)|lappet|lasiocampid (generic term)|lasiocampid moth (generic term)
+lappic|1
+(noun)|Lappic|Lappish|Uralic (generic term)|Uralic language (generic term)
+lapping|1
+(noun)|imbrication|overlapping|covering (generic term)
+lappish|1
+(noun)|Lappic|Lappish|Uralic (generic term)|Uralic language (generic term)
+lappland|1
+(noun)|Lappland|Lapland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lapplander|1
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+lappula|1
+(noun)|Hackelia|genus Hackelia|Lappula|genus Lappula|plant genus (generic term)
+lapse|9
+(noun)|oversight|mistake (generic term)|error (generic term)|fault (generic term)
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|backsliding|lapsing|relapse|relapsing|reversion|reverting|failure (generic term)
+(verb)|sink|pass|move (generic term)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|backslide|slip (generic term)|drop off (generic term)|drop away (generic term)|fall away (generic term)
+(verb)|relapse|recidivate|regress|retrogress|fall back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+(verb)|forfeit (generic term)|give up (generic term)|throw overboard (generic term)|waive (generic term)|forgo (generic term)
+(verb)|elapse|pass|slip by|glide by|slip away|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+lapsed|1
+(adj)|nonchurchgoing|irreligious (similar term)
+lapsing|1
+(noun)|backsliding|lapse|relapse|relapsing|reversion|reverting|failure (generic term)
+laptev sea|1
+(noun)|Laptev Sea|sea (generic term)
+laptop|1
+(noun)|laptop computer|portable computer (generic term)
+laptop computer|1
+(noun)|laptop|portable computer (generic term)
+laputa|1
+(noun)|Laputa|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+laputan|2
+(adj)|Laputan|imaginary place|mythical place|fictitious place (related term)
+(adj)|airy|impractical|visionary|Laputan|windy|utopian (similar term)
+lapwing|1
+(noun)|green plover|peewit|pewit|plover (generic term)
+laramie|1
+(noun)|Laramie|town (generic term)
+larboard|2
+(adj)|port|left (similar term)
+(noun)|port|side (generic term)|starboard (antonym)
+larcener|1
+(noun)|larcenist|thief (generic term)|stealer (generic term)
+larcenist|1
+(noun)|larcener|thief (generic term)|stealer (generic term)
+larcenous|1
+(noun)|thievishness|dishonesty (generic term)
+larceny|1
+(noun)|theft|thievery|thieving|stealing|felony (generic term)
+larch|2
+(noun)|wood (generic term)
+(noun)|larch tree|conifer (generic term)|coniferous tree (generic term)
+larch tree|1
+(noun)|larch|conifer (generic term)|coniferous tree (generic term)
+lard|3
+(noun)|edible fat (generic term)
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|embroider|pad|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+lard oil|1
+(noun)|animal oil (generic term)
+larder|2
+(noun)|commissariat (generic term)|provisions (generic term)|provender (generic term)|viands (generic term)|victuals (generic term)
+(noun)|pantry|buttery|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+lardizabala|1
+(noun)|Lardizabala|genus Lardizabala|magnoliid dicot genus (generic term)
+lardizabala family|1
+(noun)|Lardizabalaceae|family Lardizabalaceae|magnoliid dicot family (generic term)
+lardizabalaceae|1
+(noun)|Lardizabalaceae|family Lardizabalaceae|lardizabala family|magnoliid dicot family (generic term)
+lardner|1
+(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+laredo|1
+(noun)|Laredo|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+large|9
+(adj)|big|ample (similar term)|sizable (similar term)|sizeable (similar term)|astronomic (similar term)|astronomical (similar term)|galactic (similar term)|bear-sized (similar term)|bigger (similar term)|larger (similar term)|biggish (similar term)|largish (similar term)|blown-up (similar term)|enlarged (similar term)|bouffant (similar term)|puffy (similar term)|broad (similar term)|spacious (similar term)|wide (similar term)|bulky (similar term)|capacious (similar term)|colossal (similar term)|prodigious (similar term)|stupendous (similar term)|deep (similar term)|double (similar term)|enormous (similar term)|tremendous (similar term)|cosmic (similar term)|elephantine (similar term)|gargantuan (similar term)|giant (similar term)|jumbo (similar term)|epic (similar term)|heroic (similar term)|larger-than-life (similar term)|extensive (similar term)|extended (similar term)|gigantic (similar term)|mammoth (similar term)|great (similar term)|grand (similar term)|huge (similar term)|immense (similar term)|vast (similar term)|Brobdingnagian (similar term)|hulking (similar term)|hulky (similar term)|humongous (similar term)|banging (similar term)|thumping (similar term)|whopping (similar term)|walloping (similar term)|king-size (similar term)|king-sized (similar term)|large-mouthed (similar term)|large-scale (similar term)|large-scale (similar term)|life-size (similar term)|lifesize (similar term)|life-sized (similar term)|full-size (similar term)|macro (similar term)|man-sized (similar term)|massive (similar term)|monolithic (similar term)|monumental (similar term)|massive (similar term)|medium-large (similar term)|monstrous (similar term)|mountainous (similar term)|outsize (similar term)|outsized (similar term)|oversize (similar term)|oversized (similar term)|overlarge (similar term)|too large (similar term)|plumping (similar term)|queen-size (similar term)|queen-sized (similar term)|rangy (similar term)|super (similar term)|titanic (similar term)|volumed (similar term)|voluminous (similar term)|whacking (similar term)|wide-ranging (similar term)|little (antonym)|small (antonym)
+(adj)|significant (similar term)|important (similar term)
+(adj)|bombastic|declamatory|orotund|tumid|turgid|rhetorical (similar term)
+(adj)|big|magnanimous|generous (similar term)
+(adj)|big|prominent|conspicuous (similar term)
+(adj)|comprehensive (similar term)
+(adj)|big|enceinte|expectant|gravid|great|heavy|with child|pregnant (similar term)
+(noun)|size (generic term)
+(adv)|boastfully|vauntingly|big
+large-cap|1
+(adj)|large-capitalization|large-capitalisation|capitalization|capitalisation (related term)
+large-capitalisation|1
+(adj)|large-capitalization|large-cap|capitalization|capitalisation (related term)
+large-capitalization|1
+(adj)|large-capitalisation|large-cap|capitalization|capitalisation (related term)
+large-flowered calamint|1
+(noun)|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint (generic term)
+large-flowered fiddleneck|1
+(noun)|Amsinckia grandiflora|herb (generic term)|herbaceous plant (generic term)
+large-flowering magnolia|1
+(noun)|southern magnolia|evergreen magnolia|bull bay|Magnolia grandiflora|magnolia (generic term)
+large-grained|1
+(adj)|coarse-grained|coarse (similar term)|harsh (similar term)
+large-headed|1
+(adj)|headed (similar term)
+large-hearted|1
+(adj)|charitable|benevolent|kindly|sympathetic|good-hearted|openhearted|kind (similar term)
+large-leafed|1
+(adj)|large-leaved|leafy (similar term)
+large-leaved|1
+(adj)|large-leafed|leafy (similar term)
+large-leaved aster|1
+(noun)|Aster macrophyllus|wood aster (generic term)
+large-leaved cucumber tree|1
+(noun)|large-leaved magnolia|great-leaved macrophylla|Magnolia macrophylla|magnolia (generic term)
+large-leaved magnolia|1
+(noun)|large-leaved cucumber tree|great-leaved macrophylla|Magnolia macrophylla|magnolia (generic term)
+large-minded|1
+(adj)|broad|liberal|tolerant|broad-minded (similar term)
+large-mouthed|1
+(adj)|large (similar term)|big (similar term)
+large-scale|1
+(adj)|large (similar term)|big (similar term)
+large-toothed aspen|1
+(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+large calorie|1
+(noun)|Calorie|kilogram calorie|kilocalorie|nutritionist's calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+large cap|1
+(noun)|corporation (generic term)|corp (generic term)
+large civet|1
+(noun)|Viverra zibetha|civet (generic term)|civet cat (generic term)
+large crabgrass|1
+(noun)|hairy finger grass|Digitaria sanguinalis|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+large cranberry|1
+(noun)|American cranberry|Vaccinium macrocarpon|cranberry (generic term)
+large indefinite amount|1
+(noun)|large indefinite quantity|indefinite quantity (generic term)
+large indefinite quantity|1
+(noun)|large indefinite amount|indefinite quantity (generic term)
+large integer|1
+(noun)|integer (generic term)|whole number (generic term)
+large intestine|1
+(noun)|intestine (generic term)|bowel (generic term)|gut (generic term)
+large magellanic cloud|1
+(noun)|Large Magellanic Cloud|Magellanic Cloud (generic term)
+large number|1
+(noun)|battalion|multitude|plurality|pack|large indefinite quantity (generic term)|large indefinite amount (generic term)
+large order|1
+(noun)|tall order|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+large periwinkle|1
+(noun)|Vinca major|periwinkle (generic term)
+large person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+large poodle|1
+(noun)|poodle (generic term)|poodle dog (generic term)
+large tooth aspen|1
+(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|Populus grandidentata|aspen (generic term)
+large white|1
+(noun)|Pieris brassicae|cabbage butterfly (generic term)
+large white petunia|1
+(noun)|Petunia axillaris|petunia (generic term)
+large yellow lady's slipper|1
+(noun)|Cypripedium calceolus pubescens|yellow lady's slipper (generic term)|yellow lady-slipper (generic term)|Cypripedium calceolus (generic term)|Cypripedium parviflorum (generic term)
+largeleaf holly|1
+(noun)|holly (generic term)
+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 (generic term)
+largemouth bass|2
+(noun)|freshwater bass (generic term)|bass (generic term)
+(noun)|largemouth|largemouthed bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass (generic term)
+largemouth black bass|1
+(noun)|largemouth|largemouth bass|largemouthed bass|largemouthed black bass|Micropterus salmoides|black bass (generic term)
+largemouthed bass|1
+(noun)|largemouth|largemouth bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass (generic term)
+largemouthed black bass|1
+(noun)|largemouth|largemouth bass|largemouthed bass|largemouth black bass|Micropterus salmoides|black bass (generic term)
+largeness|4
+(noun)|breadth|comprehensiveness|intelligence (generic term)
+(noun)|extensiveness|magnitude (generic term)
+(noun)|bigness|size (generic term)|littleness (antonym)|smallness (antonym)
+(noun)|pretentiousness|pretension|unnaturalness (generic term)|unpretentiousness (antonym)
+larger|1
+(adj)|bigger|large (similar term)|big (similar term)
+larger-than-life|1
+(adj)|epic|heroic|large (similar term)|big (similar term)
+largess|2
+(noun)|largesse|gift (generic term)
+(noun)|munificence|largesse|magnanimity|openhandedness|liberality (generic term)|liberalness (generic term)
+largesse|2
+(noun)|largess|gift (generic term)
+(noun)|munificence|largess|magnanimity|openhandedness|liberality (generic term)|liberalness (generic term)
+larghetto|2
+(adj)|slow (similar term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+larghissimo|1
+(adj)|slow (similar term)
+largish|1
+(adj)|biggish|large (similar term)|big (similar term)
+largo|2
+(adj)|slow (similar term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)|passage (generic term)|musical passage (generic term)
+lari|2
+(noun)|Georgian monetary unit (generic term)
+(noun)|Lari|suborder Lari|animal order (generic term)
+lariat|1
+(noun)|lasso|riata|reata|rope (generic term)
+laricariidae|1
+(noun)|Laricariidae|family Laricariidae|fish family (generic term)
+larid|1
+(noun)|coastal diving bird (generic term)
+laridae|1
+(noun)|Laridae|family Laridae|bird family (generic term)
+larium|1
+(noun)|mefloquine|mefloquine hydrochloride|Larium|Mephaquine|antimalarial (generic term)|antimalarial drug (generic term)
+larix|1
+(noun)|Larix|genus Larix|gymnosperm genus (generic term)
+larix decidua|1
+(noun)|European larch|Larix decidua|larch (generic term)|larch tree (generic term)
+larix laricina|1
+(noun)|American larch|tamarack|black larch|Larix laricina|larch (generic term)|larch tree (generic term)
+larix lyallii|1
+(noun)|subalpine larch|Larix lyallii|larch (generic term)|larch tree (generic term)
+larix occidentalis|1
+(noun)|western larch|western tamarack|Oregon larch|Larix occidentalis|larch (generic term)|larch tree (generic term)
+larix russica|1
+(noun)|Siberian larch|Larix siberica|Larix russica|larch (generic term)|larch tree (generic term)
+larix siberica|1
+(noun)|Siberian larch|Larix siberica|Larix russica|larch (generic term)|larch tree (generic term)
+lark|5
+(noun)|meadowlark|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+(noun)|pipit|titlark|oscine (generic term)|oscine bird (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+(noun)|escapade|diversion (generic term)|recreation (generic term)
+(verb)|frolic|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+lark about|1
+(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|run around|play (generic term)
+larkspur|1
+(noun)|delphinium (generic term)
+larn|1
+(verb)|learn|acquire
+larodopa|1
+(noun)|L-dopa|levodopa|Bendopa|Brocadopa|Larodopa|dopa (generic term)|dihydroxyphenylalanine (generic term)
+larotid|1
+(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+larousse|1
+(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer (generic term)|lexicologist (generic term)
+larrea|1
+(noun)|Larrea|genus Larrea|rosid dicot genus (generic term)
+larrea tridentata|1
+(noun)|creosote bush|coville|hediondilla|Larrea tridentata|shrub (generic term)|bush (generic term)
+larrup|1
+(verb)|spank|paddle|beat (generic term)|beat up (generic term)|work over (generic term)
+lars onsager|1
+(noun)|Onsager|Lars Onsager|chemist (generic term)
+larus|1
+(noun)|Larus|genus Larus|bird genus (generic term)
+larus argentatus|1
+(noun)|herring gull|Larus argentatus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+larus canus|1
+(noun)|mew|mew gull|sea mew|Larus canus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+larus marinus|1
+(noun)|black-backed gull|great black-backed gull|cob|Larus marinus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+larus ridibundus|1
+(noun)|laughing gull|blackcap|pewit|pewit gull|Larus ridibundus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+larva|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+larvacea|1
+(noun)|Larvacea|class Larvacea|class (generic term)|category (generic term)|family (generic term)
+larvacean|1
+(noun)|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+larvacide|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+larval|2
+(adj)|immature (similar term)
+(adj)|animal|animate being|beast|brute|creature|fauna (related term)
+larvicide|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+laryngeal|1
+(adj)|cartilaginous structure|speech organ|vocal organ|organ of speech (related term)
+laryngeal artery|1
+(noun)|arteria laryngea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+laryngeal vein|1
+(noun)|vena laryngea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+laryngectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+laryngismus|1
+(noun)|spasm (generic term)
+laryngitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+laryngopharyngeal|1
+(adj)|cartilaginous structure|speech organ|vocal organ|organ of speech (related term)|tubular cavity (related term)
+laryngopharyngitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+laryngopharynx|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+laryngoscope|1
+(noun)|medical instrument (generic term)
+laryngospasm|1
+(noun)|occlusion (generic term)
+laryngostenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)
+laryngotracheobronchitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+larynx|1
+(noun)|voice box|cartilaginous structure (generic term)|speech organ (generic term)|vocal organ (generic term)|organ of speech (generic term)
+las cruces|1
+(noun)|Las Cruces|town (generic term)
+las vegas|1
+(noun)|Las Vegas|city (generic term)|metropolis (generic term)|urban center (generic term)
+lasagna|2
+(noun)|lasagne|pasta (generic term)
+(noun)|lasagne|pasta (generic term)|alimentary paste (generic term)
+lasagne|2
+(noun)|lasagna|pasta (generic term)
+(noun)|lasagna|pasta (generic term)|alimentary paste (generic term)
+lasalle|1
+(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer (generic term)|adventurer (generic term)
+lascar|2
+(noun)|sailor (generic term)|crewman (generic term)
+(noun)|Lascar|volcano (generic term)
+lascaux|1
+(noun)|Lascaux|cave (generic term)
+lascivious|1
+(adj)|lewd|libidinous|lustful|sexy (similar term)
+lasciviously|1
+(adv)|salaciously
+lasciviousness|1
+(noun)|prurience|pruriency|carnality|lubricity|amorousness (generic term)|eroticism (generic term)|erotism (generic term)|sexiness (generic term)|amativeness (generic term)
+laser|1
+(noun)|optical maser|optical device (generic term)
+laser-guided bomb|1
+(noun)|LGB|smart bomb (generic term)
+laser beam|1
+(noun)|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+laser printer|1
+(noun)|electrostatic printer (generic term)
+lash|7
+(noun)|eyelash|cilium|hair (generic term)
+(noun)|thong|leather strip (generic term)
+(noun)|whip|whiplash|blow (generic term)
+(verb)|flog|welt|whip|lather|slash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|swing (generic term)|sway (generic term)
+(verb)|whip|strike (generic term)
+(verb)|tie (generic term)|bind (generic term)|unlash (antonym)
+lash-like|1
+(adj)|flagellate|flagellated|whiplike|leather strip (related term)|instrument (related term)|process|outgrowth|appendage (related term)
+lash-up|1
+(noun)|contrivance|arrangement (generic term)
+lash out|1
+(verb)|attack|round|assail|snipe|assault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+lash together|1
+(verb)|tie (generic term)|bind (generic term)
+lasher|1
+(noun)|driver (generic term)
+lashing|3
+(adj)|violent (similar term)
+(noun)|whipping|tanning|flogging|flagellation|beating (generic term)|thrashing (generic term)|licking (generic term)|drubbing (generic term)|lacing (generic term)|trouncing (generic term)|whacking (generic term)
+(noun)|rope (generic term)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+lashings|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|large indefinite quantity (generic term)|large indefinite amount (generic term)
+lashkar-e-jhangvi|1
+(noun)|Lashkar-e-Jhangvi|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lashkar-e-omar|1
+(noun)|Lashkar-e-Omar|Al Qanoon|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lasiocampa|1
+(noun)|Lasiocampa|genus Lasiocampa|arthropod genus (generic term)
+lasiocampid|1
+(noun)|lasiocampid moth|moth (generic term)
+lasiocampid moth|1
+(noun)|lasiocampid|moth (generic term)
+lasiocampidae|1
+(noun)|Lasiocampidae|family Lasiocampidae|arthropod family (generic term)
+lasiurus|1
+(noun)|Lasiurus|genus Lasiurus|mammal genus (generic term)
+lasiurus borealis|1
+(noun)|red bat|Lasiurus borealis|vespertilian bat (generic term)|vespertilionid (generic term)
+lasix|1
+(noun)|furosemide|Lasix|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+laskar jihad|1
+(noun)|Laskar Jihad|Holy War Warriors|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lass|1
+(noun)|lassie|young girl|jeune fille|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+lassa|1
+(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital (generic term)
+lassa fever|1
+(noun)|Lassa fever|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+lassa virus|1
+(noun)|Lassa virus|arenavirus (generic term)
+lassen volcanic national park|1
+(noun)|Lassen Volcanic National Park|national park (generic term)
+lassie|1
+(noun)|lass|young girl|jeune fille|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+lassitude|3
+(noun)|lethargy|sluggishness|torpor (generic term)|torpidity (generic term)
+(noun)|languor|listlessness|apathy (generic term)
+(noun)|inanition|lethargy|slackness|weakness (generic term)
+lasso|3
+(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer (generic term)
+(noun)|lariat|riata|reata|rope (generic term)
+(verb)|rope|get (generic term)|catch (generic term)|capture (generic term)
+last|21
+(adj)|past (similar term)
+(adj)|antepenultimate (similar term)|endmost (similar term)|terminal (similar term)|parting (similar term)|parthian (similar term)|penultimate (similar term)|next-to-last (similar term)|senior (similar term)|fourth-year (similar term)|subterminal (similar term)|sunset (similar term)|ultimate (similar term)|intermediate (antonym)|first (antonym)
+(adj)|concluding|final|terminal|closing (similar term)
+(adj)|final|net|ultimate (similar term)
+(adj)|unlikely (similar term)
+(adj)|dying (similar term)
+(adj)|final|unalterable (similar term)|inalterable (similar term)
+(adj)|last-place|lowest|worst (similar term)
+(adj)|utmost|high (similar term)
+(noun)|stopping point|finale|finis|finish|conclusion|close|end (generic term)|ending (generic term)
+(noun)|rank (generic term)
+(noun)|activity (generic term)
+(noun)|death|end (generic term)|ending (generic term)
+(noun)|weight unit (generic term)|weight (generic term)
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(noun)|end|final stage|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|shoemaker's last|cobbler's last|holding device (generic term)
+(verb)|endure|measure (generic term)
+(verb)|survive|live|live on|go|endure|hold up|hold out
+(adv)|most recently
+(adv)|lastly|in conclusion|finally
+last-ditch|1
+(adj)|ultimate (similar term)
+last-minute|1
+(adj)|unpunctual (similar term)
+last-place|1
+(adj)|last|lowest|worst (similar term)
+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 (generic term)
+last frontier|1
+(noun)|Alaska|Last Frontier|AK|American state (generic term)
+last gasp|1
+(noun)|end (generic term)|ending (generic term)
+last half|1
+(noun)|second half|half (generic term)
+last hurrah|1
+(noun)|swan song|performance (generic term)
+last in first out|1
+(noun)|LIFO|inventory accounting (generic term)
+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 (generic term)
+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 (generic term)
+last laugh|1
+(noun)|victory (generic term)|triumph (generic term)
+last mentioned|1
+(adj)|latter (similar term)
+last mile|1
+(noun)|walk (generic term)
+last minute|1
+(noun)|eleventh hour|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+last name|1
+(noun)|surname|family name|cognomen|name (generic term)
+last not least|1
+(adv)|last but not least
+last out|1
+(verb)|stay|ride out|outride
+last quarter|1
+(noun)|half-moon (generic term)
+last resort|1
+(noun)|pis aller|expedient (generic term)
+last respects|1
+(noun)|deference (generic term)|respect (generic term)
+last rites|2
+(noun)|anointing of the sick|extreme unction|sacrament (generic term)
+(noun)|rite (generic term)|religious rite (generic term)
+last straw|1
+(noun)|aggravation (generic term)|irritation (generic term)|provocation (generic term)
+last supper|1
+(noun)|Last Supper|Lord's Supper|Seder (generic term)|Passover supper (generic term)
+last word|3
+(noun)|argument (generic term)|statement (generic term)
+(noun)|authority (generic term)
+(noun)|chic|chicness|chichi|modishness|smartness|stylishness|swank|elegance (generic term)
+lastex|1
+(noun)|Lastex|thread (generic term)|yarn (generic term)
+lasthenia|1
+(noun)|Lasthenia|genus Lasthenia|asterid dicot genus (generic term)
+lasthenia chrysostoma|1
+(noun)|goldfields|Lasthenia chrysostoma|wildflower (generic term)|wild flower (generic term)
+lasting|4
+(adj)|permanent|abiding (similar term)|enduring (similar term)|imperishable (similar term)|ageless (similar term)|aeonian (similar term)|eonian (similar term)|eternal (similar term)|everlasting (similar term)|perpetual (similar term)|unending (similar term)|unceasing (similar term)|indissoluble (similar term)|standing (similar term)|ineradicable (related term)|stable (related term)|unchangeable (related term)|impermanent (antonym)
+(adj)|durable|long-lasting|long-lived|long (similar term)
+(adj)|persistent|caducous (antonym)
+(adj)|stable (similar term)
+lastingness|1
+(noun)|durability|enduringness|strength|permanence (generic term)|permanency (generic term)
+lastly|1
+(adv)|last|in conclusion|finally
+lastreopsis|1
+(noun)|Lastreopsis|genus Lastreopsis|fern genus (generic term)
+laszlo lowestein|1
+(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lat|1
+(noun)|latisimus dorsi|skeletal muscle (generic term)|striated muscle (generic term)
+latakia|2
+(noun)|Turkish tobacco (generic term)
+(noun)|Al Ladhiqiyah|Latakia|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+latanier|1
+(noun)|latanier palm|fan palm (generic term)
+latanier palm|1
+(noun)|latanier|fan palm (generic term)
+latch|3
+(noun)|door latch|lock (generic term)
+(noun)|catch (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+latch on|3
+(verb)|grasp (generic term)|hold on (generic term)
+(verb)|take up|fasten on|hook on|seize on|espouse (generic term)|embrace (generic term)|adopt (generic term)|sweep up (generic term)
+(verb)|catch on|get wise|get onto|tumble|cotton on|twig|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+latched|1
+(adj)|barred|bolted|fast|locked|secured|fastened (similar term)
+latchet|1
+(noun)|strap (generic term)
+latchkey|1
+(noun)|key (generic term)
+latchkey child|1
+(noun)|schoolchild (generic term)|school-age child (generic term)|pupil (generic term)
+latchstring|1
+(noun)|opener (generic term)
+late|10
+(adj)|advanced (similar term)|ripe (similar term)|after-hours (similar term)|latish (similar term)|posthumous (similar term)|early (antonym)|middle (antonym)
+(adj)|belated|tardy|unpunctual (similar term)
+(adj)|recent|past (similar term)
+(adj)|dead (similar term)
+(adj)|Modern (similar term)|New (similar term)|New (similar term)|early (antonym)|middle (antonym)
+(adj)|later|advanced (similar term)|tardive (similar term)|early (antonym)
+(adj)|former|previous|past (similar term)
+(adv)|belatedly|tardily|early (antonym)
+(adv)|deep
+(adv)|recently|lately|of late|latterly
+late-blooming|1
+(adj)|autumn-flowering|autumn-blooming|fall-flowering|fall-blooming|late-flowering|autumnal (similar term)
+late-flowering|1
+(adj)|autumn-flowering|autumn-blooming|fall-flowering|fall-blooming|late-blooming|autumnal (similar term)
+late-night hour|1
+(noun)|hour (generic term)|time of day (generic term)
+late-ripening|1
+(adj)|autumnal (similar term)
+late-spring-blooming|1
+(adj)|spring-flowering|early-flowering|spring-blooming|early-blooming|vernal (similar term)
+late blight|1
+(noun)|blight (generic term)
+late greek|1
+(noun)|Late Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+late latin|1
+(noun)|Late Latin|Biblical Latin|Latin (generic term)
+late purple aster|1
+(noun)|aster (generic term)
+latecomer|1
+(noun)|arrival (generic term)|arriver (generic term)|comer (generic term)
+lateen|2
+(adj)|lateen-rigged|rigged (similar term)
+(noun)|lateen sail|fore-and-aft sail (generic term)
+lateen-rig|1
+(noun)|rig (generic term)|rigging (generic term)
+lateen-rigged|1
+(adj)|lateen|rigged (similar term)
+lateen sail|1
+(noun)|lateen|fore-and-aft sail (generic term)
+lately|1
+(adv)|recently|late|of late|latterly
+latency|3
+(noun)|rotational latency|time interval (generic term)|interval (generic term)
+(noun)|reaction time|response time|latent period|time interval (generic term)|interval (generic term)
+(noun)|potential (generic term)|potentiality (generic term)|potency (generic term)
+latency period|1
+(noun)|latency stage|latency phase|phase (generic term)|stage (generic term)
+latency phase|1
+(noun)|latency stage|latency period|phase (generic term)|stage (generic term)
+latency stage|1
+(noun)|latency phase|latency period|phase (generic term)|stage (generic term)
+lateness|1
+(noun)|timing (generic term)|earliness (antonym)
+latent|2
+(adj)|potential (similar term)|possible (similar term)
+(adj)|inactive (similar term)
+latent content|1
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+latent diabetes|1
+(noun)|chemical diabetes|diabetes mellitus (generic term)|DM (generic term)
+latent heat|1
+(noun)|heat of transformation|heat (generic term)|heat energy (generic term)
+latent hostility|1
+(noun)|tension|hostility (generic term)|enmity (generic term)|antagonism (generic term)
+latent period|2
+(noun)|reaction time|response time|latency|time interval (generic term)|interval (generic term)
+(noun)|time interval (generic term)|interval (generic term)
+latent schizophrenia|1
+(noun)|borderline schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+later|4
+(adj)|future|ulterior|subsequent (similar term)
+(adj)|late|advanced (similar term)|tardive (similar term)|early (antonym)
+(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 (similar term)
+(adj)|distal (similar term)
+(noun)|lateral pass|pass (generic term)|passing play (generic term)|passing game (generic term)|passing (generic term)
+lateral cerebral sulcus|1
+(noun)|fissure of Sylvius|Sylvian fissure|sulcus lateralis cerebri|sulcus (generic term)
+lateral condyle|1
+(noun)|condyle (generic term)
+lateral epicondyle|1
+(noun)|epicondyle (generic term)
+lateral epicondylitis|1
+(noun)|tennis elbow|lateral humeral epicondylitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|epicondylitis (generic term)
+lateral geniculate body|1
+(noun)|corpus geniculatum laterale|geniculate body (generic term)
+lateral humeral epicondylitis|1
+(noun)|tennis elbow|lateral epicondylitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|epicondylitis (generic term)
+lateral line|1
+(noun)|lateral line organ|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+lateral line organ|1
+(noun)|lateral line|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+lateral pass|1
+(noun)|lateral|pass (generic term)|passing play (generic term)|passing game (generic term)|passing (generic term)
+lateral rectus|1
+(noun)|abducens muscle|lateral rectus muscle|rectus lateralis|ocular muscle (generic term)|eye muscle (generic term)
+lateral rectus muscle|1
+(noun)|abducens muscle|lateral rectus|rectus lateralis|ocular muscle (generic term)|eye muscle (generic term)
+lateral thinking|1
+(noun)|heuristic (generic term)|heuristic rule (generic term)|heuristic program (generic term)
+lateral ventricle|1
+(noun)|ventricle (generic term)
+lateralisation|1
+(noun)|lateralization|laterality|localization of function (generic term)|localisation of function (generic term)|localization principle (generic term)|localisation principle (generic term)|localization (generic term)|localisation (generic term)
+laterality|3
+(noun)|lateralization|lateralisation|localization of function (generic term)|localisation of function (generic term)|localization principle (generic term)|localisation principle (generic term)|localization (generic term)|localisation (generic term)
+(noun)|handedness|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+(noun)|dominance|bodily property (generic term)
+lateralization|1
+(noun)|lateralisation|laterality|localization of function (generic term)|localisation of function (generic term)|localization principle (generic term)|localisation principle (generic term)|localization (generic term)|localisation (generic term)
+lateralize|1
+(verb)|move (generic term)|displace (generic term)
+lateran|1
+(noun)|Lateran|site (generic term)|land site (generic term)
+lateran council|1
+(noun)|Lateran Council|council (generic term)
+lateran palace|1
+(noun)|Lateran Palace|palace (generic term)
+lateran treaty|1
+(noun)|Lateran Treaty|covenant (generic term)|compact (generic term)|concordat (generic term)
+laterite|1
+(noun)|soil (generic term)|dirt (generic term)
+latest|3
+(adj)|up-to-the-minute|current (similar term)
+(adj)|a la mode|in style|in vogue|modish|fashionable (similar term)|stylish (similar term)
+(noun)|news (generic term)|intelligence (generic term)|tidings (generic term)|word (generic term)
+latex|2
+(noun)|exudate (generic term)|exudation (generic term)
+(noun)|latex paint|rubber-base paint|water-base paint (generic term)
+latex paint|1
+(noun)|latex|rubber-base paint|water-base paint (generic term)
+lath|1
+(noun)|slat (generic term)|spline (generic term)
+lath and plaster|1
+(noun)|building material (generic term)
+lathe|1
+(noun)|shaper (generic term)|shaping machine (generic term)
+lathee|1
+(noun)|lathi|club (generic term)
+lather|8
+(noun)|soapsuds|suds|foam (generic term)|froth (generic term)
+(noun)|fret|stew|sweat|swither|agitation (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|foam (generic term)|froth (generic term)
+(verb)|cover (generic term)
+(verb)|flog|welt|whip|lash|slash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|foam (generic term)|froth (generic term)|fizz (generic term)|effervesce (generic term)|sparkle (generic term)
+(verb)|soap|cleanse (generic term)|clean (generic term)
+lathery|1
+(adj)|sudsy|foam|froth (related term)
+lathi|1
+(noun)|lathee|club (generic term)
+lathyrus|1
+(noun)|Lathyrus|genus Lathyrus|rosid dicot genus (generic term)
+lathyrus hirsutus|1
+(noun)|singletary pea|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea (generic term)
+lathyrus japonicus|1
+(noun)|beach pea|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea (generic term)
+lathyrus latifolius|1
+(noun)|broad-leaved everlasting pea|perennial pea|Lathyrus latifolius|everlasting pea (generic term)
+lathyrus maritimus|1
+(noun)|beach pea|sea pea|Lathyrus maritimus|Lathyrus japonicus|wild pea (generic term)
+lathyrus niger|1
+(noun)|black pea|Lathyrus niger|vetchling (generic term)
+lathyrus nissolia|1
+(noun)|grass vetch|grass vetchling|Lathyrus nissolia|vetchling (generic term)
+lathyrus odoratus|1
+(noun)|sweet pea|sweetpea|Lathyrus odoratus|vine (generic term)
+lathyrus palustris|1
+(noun)|marsh pea|Lathyrus palustris|wild pea (generic term)
+lathyrus pratensis|1
+(noun)|common vetchling|meadow pea|yellow vetchling|Lathyrus pratensis|wild pea (generic term)
+lathyrus sativus|1
+(noun)|grass pea|Indian pea|khesari|Lathyrus sativus|vetchling (generic term)
+lathyrus splendens|1
+(noun)|pride of California|Lathyrus splendens|wild pea (generic term)
+lathyrus sylvestris|1
+(noun)|flat pea|narrow-leaved everlasting pea|Lathyrus sylvestris|everlasting pea (generic term)
+lathyrus tuberosus|1
+(noun)|heath pea|earth-nut pea|earthnut pea|tuberous vetch|Lathyrus tuberosus|vine (generic term)
+lathyrus vernus|1
+(noun)|spring vetchling|spring vetch|Lathyrus vernus|vetchling (generic term)
+laticifer|1
+(noun)|duct (generic term)
+latimeria|1
+(noun)|Latimeria|genus Latimeria|fish genus (generic term)
+latimeria chalumnae|1
+(noun)|coelacanth|Latimeria chalumnae|crossopterygian (generic term)|lobefin (generic term)|lobe-finned fish (generic term)
+latimeridae|1
+(noun)|Latimeridae|family Latimeridae|fish family (generic term)
+latin|8
+(adj)|Latin|Italic|Italic language (related term)
+(adj)|Latin|emotional (similar term)
+(adj)|Latin
+(adj)|Romance|Latin|Latin (related term)
+(adj)|Latin|Italian region (related term)
+(noun)|Latin|Italic (generic term)|Italic language (generic term)
+(noun)|Latin|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Latin|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+latin-american|1
+(adj)|Latin-American|geographical area|geographic area|geographical region|geographic region (related term)
+latin alphabet|1
+(noun)|Roman alphabet|Latin alphabet|alphabet (generic term)
+latin america|1
+(noun)|Latin America|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+latin american|1
+(noun)|Latin American|Latino|resident (generic term)|occupant (generic term)|occupier (generic term)
+latin cross|1
+(noun)|Latin cross|Cross (generic term)
+latin quarter|1
+(noun)|Left Bank|Latin Quarter|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+latin square|1
+(noun)|Latin square|square matrix (generic term)
+latinate|1
+(adj)|Italic|Italic language (related term)
+latinesce|1
+(noun)|Latinesce|artificial language (generic term)
+latinian language|1
+(noun)|Romance|Romance language|Latinian language|Latin (generic term)
+latinise|2
+(verb)|Romanize|Romanise|Latinize|Latinise|transliterate (generic term)|transcribe (generic term)
+(verb)|catholicize|catholicise|latinize|convert (generic term)
+latinism|1
+(noun)|Latinism|loanword (generic term)|loan (generic term)
+latinist|1
+(noun)|Latinist|classicist (generic term)|classical scholar (generic term)
+latinize|3
+(verb)|Romanize|Romanise|Latinize|Latinise|transliterate (generic term)|transcribe (generic term)
+(verb)|Latinize|translate (generic term)|interpret (generic term)|render (generic term)
+(verb)|catholicize|catholicise|latinise|convert (generic term)
+latino|3
+(adj)|Hispanic|Latino|American (related term)
+(noun)|Latin American|Latino|resident (generic term)|occupant (generic term)|occupier (generic term)
+(noun)|Latino|artificial language (generic term)
+latino sine flexione|1
+(noun)|Latino sine flexione|Latino (generic term)
+latish|1
+(adj)|late (similar term)
+latisimus dorsi|1
+(noun)|lat|skeletal muscle (generic term)|striated muscle (generic term)
+latitude|4
+(noun)|angular distance (generic term)
+(noun)|liberty (generic term)
+(noun)|line of latitude|parallel of latitude|parallel|line (generic term)
+(noun)|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+latitudinal|1
+(adj)|angular distance (related term)
+latitudinarian|2
+(adj)|free-thinking|undogmatic|undogmatical|broad-minded (similar term)
+(noun)|liberal (generic term)|liberalist (generic term)|progressive (generic term)
+latium|1
+(noun)|Latium|Lazio|Italian region (generic term)
+latke|1
+(noun)|potato pancake|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+latona|1
+(noun)|Leto|Latona|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+latria|1
+(noun)|adoration|worship (generic term)
+latrine|1
+(noun)|public toilet (generic term)|comfort station (generic term)|public convenience (generic term)|convenience (generic term)|public lavatory (generic term)|restroom (generic term)|toilet facility (generic term)|wash room (generic term)
+latrobe|1
+(noun)|Latrobe|Benjamin Henry Latrobe|architect (generic term)|designer (generic term)
+latrodectus|1
+(noun)|Latrodectus|genus Latrodectus|arthropod genus (generic term)
+latrodectus mactans|1
+(noun)|black widow|Latrodectus mactans|spider (generic term)
+lats|1
+(noun)|Latvian monetary unit (generic term)
+latte|1
+(noun)|caffe latte|espresso (generic term)
+latten|1
+(noun)|brass (generic term)
+latter|2
+(adj)|last mentioned (similar term)|former (antonym)
+(noun)|second (generic term)|former (antonym)
+latter-day|1
+(adj)|present (similar term)
+latter-day saint|1
+(noun)|Latter-Day Saint|Mormon|Protestant (generic term)
+latterly|1
+(adv)|recently|late|lately|of late
+lattice|3
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|wicket|grille|opening (generic term)
+(noun)|latticework|fretwork|framework (generic term)|frame (generic term)|framing (generic term)
+latticed|1
+(adj)|fretted|interlaced|latticelike|reticulate (similar term)|reticular (similar term)
+latticelike|1
+(adj)|fretted|interlaced|latticed|reticulate (similar term)|reticular (similar term)
+latticework|1
+(noun)|lattice|fretwork|framework (generic term)|frame (generic term)|framing (generic term)
+latvia|1
+(noun)|Latvia|Republic of Latvia|Baltic State (generic term)|Baltic Republic (generic term)
+latvian|3
+(adj)|Latvian|Baltic State|Baltic Republic (related term)
+(noun)|Latvian|European (generic term)
+(noun)|Latvian|Lettish|Baltic (generic term)|Baltic language (generic term)
+latvian monetary unit|1
+(noun)|Latvian monetary unit|monetary unit (generic term)
+laud|1
+(verb)|extol|exalt|glorify|proclaim|praise (generic term)
+laudability|1
+(noun)|praiseworthiness|laudableness|worthiness (generic term)
+laudable|1
+(adj)|applaudable|commendable|praiseworthy|worthy (similar term)
+laudableness|1
+(noun)|praiseworthiness|laudability|worthiness (generic term)
+laudably|1
+(adv)|admirably|praiseworthily|commendable
+laudanum|1
+(noun)|tincture of opium|opiate (generic term)
+laudator|1
+(noun)|lauder|extoller|communicator (generic term)
+laudatory|1
+(adj)|praiseful|praising|complimentary (similar term)
+lauder|2
+(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|comedian (generic term)|comic (generic term)
+(noun)|laudator|extoller|communicator (generic term)
+laudo|1
+(noun)|Laudo|mountain peak (generic term)
+laugh|4
+(noun)|laughter|utterance (generic term)|vocalization (generic term)
+(noun)|facial expression (generic term)|facial gesture (generic term)
+(noun)|joke|gag|jest|jape|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(verb)|express joy|express mirth|express emotion (generic term)|express feelings (generic term)|laugh off (related term)|laugh away (related term)|laugh at (related term)|cry (antonym)
+laugh at|1
+(verb)|ridicule|roast|guy|blackguard|jest at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+laugh away|1
+(verb)|laugh off|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+laugh line|2
+(noun)|crow's foot|crow's feet|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+(noun)|punch line|gag line|tag line|line (generic term)
+laugh loudly|1
+(verb)|guffaw|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+laugh off|1
+(verb)|laugh away|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+laugh softly|1
+(verb)|chuckle|chortle|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+laugh track|1
+(noun)|soundtrack (generic term)
+laughable|2
+(adj)|absurd|cockeyed|derisory|idiotic|ludicrous|nonsensical|preposterous|ridiculous|foolish (similar term)
+(adj)|amusing|comic|comical|funny|mirthful|risible|humorous (similar term)|humourous (similar term)
+laughably|1
+(adv)|ridiculously|ludicrously|preposterously
+laugher|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|runaway|blowout|romp|shoo-in|walkaway|victory (generic term)|triumph (generic term)
+laughing|1
+(adj)|riant|happy (similar term)
+laughing gas|1
+(noun)|nitrous oxide|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+laughing gull|1
+(noun)|blackcap|pewit|pewit gull|Larus ridibundus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+laughing hyena|1
+(noun)|spotted hyena|Crocuta crocuta|hyena (generic term)|hyaena (generic term)
+laughing jackass|2
+(noun)|kookaburra|Dacelo gigas|kingfisher (generic term)
+(noun)|laughing owl|Sceloglaux albifacies|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+laughing owl|1
+(noun)|laughing jackass|Sceloglaux albifacies|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+laughingstock|1
+(noun)|butt|goat|stooge|victim (generic term)|dupe (generic term)
+laughter|2
+(noun)|laugh|utterance (generic term)|vocalization (generic term)
+(noun)|activity (generic term)
+laughton|1
+(noun)|Laughton|Charles Laughton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lauhala|1
+(noun)|textile screw pine|Pandanus tectorius|pandanus (generic term)|screw pine (generic term)
+launce|1
+(noun)|sand lance|sand launce|sand eel|spiny-finned fish (generic term)|acanthopterygian (generic term)
+launch|8
+(noun)|motorboat (generic term)|powerboat (generic term)
+(noun)|launching|propulsion (generic term)|actuation (generic term)
+(verb)|establish|set up|found|open (generic term)|open up (generic term)|abolish (antonym)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|launch (generic term)|set in motion (generic term)
+(verb)|plunge|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|set in motion|move (generic term)|displace (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+launch area|1
+(noun)|launching pad|launchpad|launch pad|pad|platform (generic term)
+launch pad|1
+(noun)|launching pad|launchpad|launch area|pad|platform (generic term)
+launcher|2
+(noun)|rocket launcher|armament (generic term)
+(noun)|catapult|device (generic term)
+launching|3
+(noun)|propulsion (generic term)|actuation (generic term)
+(noun)|introduction|debut|first appearance|unveiling|entry|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|launch|propulsion (generic term)|actuation (generic term)
+launching pad|1
+(noun)|launchpad|launch pad|launch area|pad|platform (generic term)
+launching site|1
+(noun)|site (generic term)|land site (generic term)
+launchpad|1
+(noun)|launching pad|launch pad|launch area|pad|platform (generic term)
+launder|2
+(verb)|wash|clean (generic term)|make clean (generic term)
+(verb)|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+launderette|1
+(noun)|Laundromat|laundry (generic term)
+laundering|1
+(noun)|wash (generic term)|washing (generic term)|lavation (generic term)
+laundress|1
+(noun)|washwoman|washerwoman|laundrywoman|washer (generic term)
+laundromat|1
+(noun)|launderette|Laundromat|laundry (generic term)
+laundry|2
+(noun)|wash|washing|washables|garment (generic term)|white goods (generic term)|household linen (generic term)
+(noun)|workplace (generic term)|work (generic term)
+laundry basket|1
+(noun)|clothes hamper|clothes basket|voider|hamper (generic term)
+laundry cart|1
+(noun)|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+laundry detergent|1
+(noun)|detergent (generic term)
+laundry truck|1
+(noun)|van (generic term)
+laundryman|1
+(noun)|washerman|washer (generic term)
+laundrywoman|1
+(noun)|washwoman|washerwoman|laundress|washer (generic term)
+lauraceae|1
+(noun)|Lauraceae|family Lauraceae|laurel family|magnoliid dicot family (generic term)
+laurasia|1
+(noun)|Laurasia|continent (generic term)
+laureate|2
+(adj)|honorable (similar term)|honourable (similar term)
+(noun)|honoree (generic term)
+laurel|3
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian (generic term)|comic (generic term)
+(noun)|laurel wreath|bay wreath|wreath (generic term)|garland (generic term)|coronal (generic term)|chaplet (generic term)|lei (generic term)
+laurel-tree|1
+(noun)|red bay|Persea borbonia|laurel (generic term)
+laurel and hardy|1
+(noun)|Laurel and Hardy|duet (generic term)|duette (generic term)|duo (generic term)
+laurel cherry|2
+(noun)|cherry laurel|Prunus laurocerasus|shrub (generic term)|bush (generic term)
+(noun)|cherry laurel|mock orange|wild orange|Prunus caroliniana|angiospermous tree (generic term)|flowering tree (generic term)
+laurel family|1
+(noun)|Lauraceae|family Lauraceae|magnoliid dicot family (generic term)
+laurel oak|2
+(noun)|pin oak|Quercus laurifolia|oak (generic term)|oak tree (generic term)
+(noun)|shingle oak|Quercus imbricaria|oak (generic term)|oak tree (generic term)
+laurel sumac|1
+(noun)|Malosma laurina|Rhus laurina|shrub (generic term)|bush (generic term)
+laurel willow|1
+(noun)|bay willow|Salix pentandra|willow (generic term)|willow tree (generic term)
+laurel wreath|2
+(noun)|decoration|medal|medallion|palm|ribbon|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|laurel|bay wreath|wreath (generic term)|garland (generic term)|coronal (generic term)|chaplet (generic term)|lei (generic term)
+laureled|1
+(adj)|laurelled|crowned|unlaureled (antonym)
+laurelled|1
+(adj)|laureled|crowned|unlaureled (antonym)
+laurels|2
+(noun)|award|accolade|honor|honour|symbol (generic term)
+(noun)|honor|honour|standing (generic term)|dishonor (antonym)
+laurelwood|1
+(noun)|lancewood tree|Calophyllum candidissimum|tree (generic term)
+laurence olivier|1
+(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+laurence stephen lowry|1
+(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter (generic term)
+laurence sterne|1
+(noun)|Sterne|Laurence Sterne|writer (generic term)|author (generic term)
+laurens|1
+(noun)|Laurens|Henry Laurens|American Revolutionary leader (generic term)
+laurentius|1
+(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr (generic term)|saint (generic term)
+lauric acid|1
+(noun)|dodecanoic acid|saturated fatty acid (generic term)
+lauritz lebrecht hommel melchior|1
+(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor (generic term)
+lauritz melchior|1
+(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor (generic term)
+laurus|1
+(noun)|Laurus|genus Laurus|magnoliid dicot genus (generic term)
+laurus nobilis|1
+(noun)|true laurel|bay|bay laurel|bay tree|Laurus nobilis|laurel (generic term)
+lauryl alcohol|1
+(noun)|1-dodecanol|alcohol (generic term)
+lausanne|1
+(noun)|Lausanne|city (generic term)|metropolis (generic term)|urban center (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lautaro popular rebel forces|1
+(noun)|Lautaro Youth Movement|Lautaro Faction of the United Popular Action Movement|Lautaro Popular Rebel Forces|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lautaro youth movement|1
+(noun)|Lautaro Youth Movement|Lautaro Faction of the United Popular Action Movement|Lautaro Popular Rebel Forces|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lav|1
+(noun)|toilet|lavatory|can|john|privy|bathroom|room (generic term)
+lava|1
+(noun)|volcanic rock (generic term)
+lavabo|1
+(noun)|washbasin|handbasin|washbowl|wash-hand basin|basin (generic term)
+lavage|1
+(noun)|irrigation (generic term)
+lavalava|1
+(noun)|skirt (generic term)
+lavalier|1
+(noun)|lavaliere|lavalliere|pendant (generic term)|pendent (generic term)
+lavaliere|1
+(noun)|lavalier|lavalliere|pendant (generic term)|pendent (generic term)
+lavalliere|1
+(noun)|lavaliere|lavalier|pendant (generic term)|pendent (generic term)
+lavandula|1
+(noun)|Lavandula|genus Lavandula|asterid dicot genus (generic term)
+lavandula angustifolia|1
+(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender (generic term)
+lavandula latifolia|1
+(noun)|spike lavender|French lavender|Lavandula latifolia|lavender (generic term)
+lavandula officinalis|1
+(noun)|English lavender|Lavandula angustifolia|Lavandula officinalis|lavender (generic term)
+lavandula stoechas|1
+(noun)|French lavender|Lavandula stoechas|lavender (generic term)
+lavatera|1
+(noun)|Lavatera|genus Lavatera|dilleniid dicot genus (generic term)
+lavatera arborea|1
+(noun)|tree mallow|velvetleaf|velvet-leaf|Lavatera arborea|shrub (generic term)|bush (generic term)
+lavation|1
+(noun)|wash|washing|work (generic term)
+lavatory|3
+(noun)|toilet|lav|can|john|privy|bathroom|room (generic term)
+(noun)|washbasin|basin|washbowl|washstand|sink (generic term)
+(noun)|flush toilet|toilet (generic term)|can (generic term)|commode (generic term)|crapper (generic term)|pot (generic term)|potty (generic term)|stool (generic term)|throne (generic term)
+lave|3
+(verb)|lap|wash|flow (generic term)
+(verb)|wash|cleanse (generic term)|clean (generic term)|wash up (related term)
+(verb)|wash up|freshen (generic term)|refresh (generic term)|refreshen (generic term)|freshen up (generic term)
+lavender|2
+(adj)|lilac|lilac-colored|chromatic (similar term)
+(noun)|shrub (generic term)|bush (generic term)
+lavender-pink|1
+(adj)|lilac-pink|violet-pink|chromatic (similar term)
+lavender-tinged|1
+(adj)|chromatic (similar term)
+lavender cotton|1
+(noun)|Santolina chamaecyparissus|shrub (generic term)|bush (generic term)
+laver|4
+(noun)|Laver|Rod Laver|Rodney George Laver|tennis player (generic term)
+(noun)|basin (generic term)
+(noun)|red laver|red algae (generic term)
+(noun)|sea lettuce|green algae (generic term)|chlorophyte (generic term)
+lavish|3
+(adj)|munificent|overgenerous|prodigal|too-generous|unsparing|unstinted|unstinting|generous (similar term)
+(adj)|lucullan|lush|plush|plushy|rich (similar term)
+(verb)|shower|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+lavishly|2
+(adv)|extravagantly
+(adv)|richly|extravagantly
+lavishness|2
+(noun)|luxury|sumptuosity|sumptuousness|expensiveness (generic term)
+(noun)|extravagance|prodigality|highlife|high life|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+lavoisier|1
+(noun)|Lavoisier|Antoine Lavoisier|Antoine Laurent Lavoisier|chemist (generic term)
+lavrenti pavlovich beria|1
+(noun)|Beria|Lavrenti Pavlovich Beria|captain (generic term)|police captain (generic term)|police chief (generic term)
+law|7
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|jurisprudence|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|law of nature|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|natural law|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|practice of law|learned profession (generic term)
+(noun)|police|police force|constabulary|force (generic term)|personnel (generic term)|law enforcement agency (generic term)
+(noun)|jurisprudence|legal philosophy|philosophy (generic term)
+law-abiding|2
+(adj)|peaceful|orderly (similar term)
+(adj)|observant|lawful (similar term)
+law-breaking|1
+(noun)|crime|transgression (generic term)|evildoing (generic term)
+law-makers|1
+(noun)|legislature|legislative assembly|legislative|general assembly|assembly (generic term)
+law agent|1
+(noun)|solicitor (generic term)
+law degree|1
+(noun)|academic degree (generic term)|degree (generic term)
+law enforcement|1
+(noun)|enforcement (generic term)
+law enforcement agency|1
+(noun)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+law firm|1
+(noun)|firm (generic term)|house (generic term)|business firm (generic term)
+law merchant|1
+(noun)|mercantile law|commercial law|law (generic term)|jurisprudence (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+law of archimedes|1
+(noun)|Archimedes' principle|law of Archimedes|law (generic term)|law of nature (generic term)
+law of areas|1
+(noun)|Kepler's second law|law of equal areas|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+law of averages|1
+(noun)|law (generic term)|law of nature (generic term)
+law of chemical equilibrium|1
+(noun)|equilibrium law|law (generic term)|law of nature (generic term)
+law of closure|1
+(noun)|closure|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+law of common fate|1
+(noun)|common fate|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+law of conservation of energy|1
+(noun)|conservation of energy|first law of thermodynamics|conservation (generic term)|law of thermodynamics (generic term)
+law of conservation of mass|1
+(noun)|conservation of mass|conservation of matter|law of conservation of matter|conservation (generic term)
+law of conservation of matter|1
+(noun)|conservation of mass|conservation of matter|law of conservation of mass|conservation (generic term)
+law of constant proportion|1
+(noun)|law of definite proportions|law (generic term)|law of nature (generic term)
+law of continuation|1
+(noun)|good continuation|continuation|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+law of definite proportions|1
+(noun)|law of constant proportion|law (generic term)|law of nature (generic term)
+law of diminishing returns|1
+(noun)|law (generic term)|law of nature (generic term)
+law of effect|1
+(noun)|law (generic term)|law of nature (generic term)
+law of equal areas|1
+(noun)|Kepler's second law|law of areas|Kepler's law (generic term)|Kepler's law of planetary motion (generic term)
+law of equivalent proportions|1
+(noun)|law of reciprocal proportions|law (generic term)|law of nature (generic term)
+law of gravitation|1
+(noun)|Newton's law of gravitation|law (generic term)|law of nature (generic term)
+law of independent assortment|1
+(noun)|Mendel's law (generic term)
+law of large numbers|1
+(noun)|Bernoulli's law|law (generic term)|law of nature (generic term)
+law of mass action|1
+(noun)|law (generic term)|law of nature (generic term)
+law of moses|1
+(noun)|Mosaic law|Law of Moses|law (generic term)|jurisprudence (generic term)
+law of motion|1
+(noun)|Newton's law of motion|Newton's law|law (generic term)|law of nature (generic term)
+law of multiple proportions|1
+(noun)|Dalton's law|law (generic term)|law of nature (generic term)
+law of nations|1
+(noun)|international law|law (generic term)|jurisprudence (generic term)|civil law (antonym)
+law of nature|1
+(noun)|law|concept (generic term)|conception (generic term)|construct (generic term)
+law of parsimony|1
+(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|principle (generic term)|rule (generic term)
+law of partial pressures|1
+(noun)|Dalton's law|Dalton's law of partial pressures|law (generic term)|law of nature (generic term)
+law of proximity|1
+(noun)|proximity|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+law of reciprocal proportions|1
+(noun)|law of equivalent proportions|law (generic term)|law of nature (generic term)
+law of segregation|1
+(noun)|Mendel's law (generic term)
+law of similarity|1
+(noun)|similarity|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+law of the land|1
+(noun)|law (generic term)|jurisprudence (generic term)
+law of thermodynamics|1
+(noun)|law (generic term)|law of nature (generic term)
+law of volumes|1
+(noun)|Gay-Lussac's law|Charles's law|law (generic term)|law of nature (generic term)
+law offender|1
+(noun)|violator|lawbreaker|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+law officer|1
+(noun)|lawman|peace officer|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+law practice|1
+(noun)|practice (generic term)
+law school|1
+(noun)|school of law|graduate school (generic term)|grad school (generic term)
+law student|1
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+lawbreaker|1
+(noun)|violator|law offender|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+lawcourt|1
+(noun)|room (generic term)
+lawful|4
+(adj)|law-abiding (similar term)|observant (similar term)|legal (related term)|straight (related term)|square (related term)|unlawful (antonym)
+(adj)|orderly|rule-governed|regular (similar term)
+(adj)|true|rightful|legitimate (similar term)
+(adj)|legitimate|licit|legal (similar term)
+lawfully|2
+(adv)|legitimately|licitly|illicitly (antonym)|lawlessly (antonym)|illegitimately (antonym)
+(adv)|legally|de jure|unlawfully (antonym)
+lawfully-begotten|1
+(adj)|legitimate (similar term)
+lawfulness|1
+(noun)|quality (generic term)|unlawfulness (antonym)
+lawgiver|1
+(noun)|lawmaker|leader (generic term)
+lawless|3
+(adj)|anarchic|anarchical|uncontrolled (similar term)
+(adj)|wide-open|unlawful (similar term)
+(adj)|outlaw|unlawful (similar term)
+lawlessly|1
+(adv)|illegally|illicitly|lawfully (antonym)
+lawlessness|2
+(noun)|anarchy|disorder (generic term)
+(noun)|outlawry|illegality (generic term)
+lawmaker|1
+(noun)|lawgiver|leader (generic term)
+lawmaking|1
+(noun)|legislation|legislating|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+lawman|1
+(noun)|law officer|peace officer|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+lawn|1
+(noun)|field (generic term)
+lawn bowling|1
+(noun)|bowls|bowling (generic term)
+lawn cart|1
+(noun)|barrow|garden cart|wheelbarrow|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+lawn chair|1
+(noun)|garden chair|chair (generic term)
+lawn furniture|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+lawn mower|1
+(noun)|mower|garden tool (generic term)|lawn tool (generic term)
+lawn party|1
+(noun)|garden party|fete champetre|party (generic term)
+lawn tennis|1
+(noun)|tennis|court game (generic term)
+lawn tool|1
+(noun)|garden tool|tool (generic term)
+lawrence|7
+(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr (generic term)|saint (generic term)
+(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier (generic term)|writer (generic term)|author (generic term)
+(noun)|Lawrence|Sir Thomas Lawrence|painter (generic term)
+(noun)|Lawrence|Gertrude Lawrence|actress (generic term)
+(noun)|Lawrence|E. O. Lawrence|Ernest Orlando Lawrence|nuclear physicist (generic term)
+(noun)|Lawrence|D. H. Lawrence|David Herbert Lawrence|writer (generic term)|author (generic term)
+(noun)|Lawrence|town (generic term)
+lawrence durrell|1
+(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer (generic term)|author (generic term)
+lawrence george durrell|1
+(noun)|Durrell|Lawrence Durrell|Lawrence George Durrell|writer (generic term)|author (generic term)
+lawrence of arabia|1
+(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier (generic term)|writer (generic term)|author (generic term)
+lawrence peter berra|1
+(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer (generic term)|baseball player (generic term)
+lawrencium|1
+(noun)|Lr|atomic number 103|chemical element (generic term)|element (generic term)
+laws|1
+(noun)|Torah|Pentateuch|Laws|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+lawson's cedar|1
+(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar (generic term)|cedar tree (generic term)
+lawson's cypress|1
+(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar (generic term)|cedar tree (generic term)
+lawsuit|1
+(noun)|suit|case|cause|causa|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+lawton|1
+(noun)|Lawton|town (generic term)
+lawyer|1
+(noun)|attorney|professional (generic term)|professional person (generic term)
+lawyer-client relation|1
+(noun)|attorney-client relation|fiduciary relation (generic term)
+lawyer bush|1
+(noun)|lawyerbush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush (generic term)
+lawyer cane|1
+(noun)|Calamus australis|calamus (generic term)
+lawyerbush|1
+(noun)|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush (generic term)
+lax|5
+(adj)|slack|negligent (similar term)
+(adj)|tense (antonym)
+(adj)|drooping (similar term)|droopy (similar term)|sagging (similar term)|floppy (similar term)|loose (similar term)|slack (similar term)|loose-jointed (similar term)|relaxed (similar term)|tensionless (similar term)|loose (related term)|tense (antonym)
+(adj)|flaccid|limp|slack|weak (similar term)
+(adj)|loose|unconstipated (similar term)|regular (similar term)
+laxation|2
+(noun)|defecation|shitting|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+(noun)|loosening|alteration (generic term)|modification (generic term)|adjustment (generic term)|tightening (antonym)
+laxative|2
+(adj)|aperient (similar term)|cathartic (similar term)|evacuant (similar term)|purgative (similar term)|costive (antonym)
+(noun)|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+laxity|2
+(noun)|laxness|condition (generic term)|status (generic term)
+(noun)|laxness|remissness|slackness|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+laxly|1
+(adv)|leniently
+laxness|2
+(noun)|laxity|remissness|slackness|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+(noun)|laxity|condition (generic term)|status (generic term)
+lay|9
+(adj)|laic|secular|profane (similar term)
+(adj)|nonprofessional (similar term)
+(noun)|ballad|song (generic term)|vocal (generic term)
+(noun)|ballad|poem (generic term)|verse form (generic term)
+(verb)|put|set|place|pose|position|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+(verb)|put down|repose|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|repose on (related term)|put (related term)|lay over (related term)|lay away (related term)|lay aside (related term)
+(verb)|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|lay (generic term)|put down (generic term)|repose (generic term)
+(verb)|levy (generic term)|impose (generic term)
+lay-by|1
+(noun)|layby|pull-off|rest area|rest stop|area (generic term)
+lay-up|1
+(noun)|layup|basketball shot (generic term)
+lay aside|1
+(verb)|save|save up
+lay away|1
+(verb)|hoard|stash|cache|hive up|squirrel away|save (generic term)|lay aside (generic term)|save up (generic term)
+lay claim|1
+(verb)|claim|arrogate|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)|forfeit (antonym)
+lay down|1
+(verb)|establish|make|make (generic term)|create (generic term)
+lay eyes on|1
+(verb)|behold|see (generic term)
+lay figure|1
+(noun)|dummy (generic term)
+lay hands on|1
+(verb)|manipulate (generic term)
+lay in|1
+(verb)|store|hive away|put in|salt away|stack away|stash away|keep (generic term)|hold on (generic term)
+lay into|1
+(verb)|lam into|tear into|lace into|pitch into|hit (generic term)
+lay off|2
+(verb)|discontinue|stop|cease|give up|quit|continue (antonym)
+(verb)|furlough|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+lay on the line|1
+(verb)|risk|put on the line|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+lay out|5
+(verb)|range|array|set out|arrange (generic term)|set up (generic term)
+(verb)|set up|set|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|present|represent|state (generic term)|say (generic term)|tell (generic term)
+(verb)|plan (generic term)
+lay over|2
+(verb)|stop over|stop (generic term)|stop over (generic term)
+(verb)|superimpose|superpose|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+lay reader|1
+(noun)|layman (generic term)|layperson (generic term)|secular (generic term)
+lay to rest|1
+(verb)|bury|entomb|inhume|inter|lay (generic term)|put down (generic term)|repose (generic term)
+lay up|1
+(verb)|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+lay waste to|1
+(verb)|waste|devastate|desolate|ravage|scourge|destroy (generic term)|ruin (generic term)
+lay witness|1
+(noun)|witness (generic term)|expert witness (antonym)
+layabout|1
+(noun)|idler|loafer|do-nothing|bum|nonworker (generic term)
+layby|1
+(noun)|lay-by|pull-off|rest area|rest stop|area (generic term)
+layer|6
+(noun)|bed|sheet (generic term)|flat solid (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|level|stratum|place (generic term)
+(noun)|hen (generic term)|biddy (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+layer cake|1
+(noun)|cake (generic term)
+layered|1
+(adj)|superimposed|stratified (similar term)|bedded (similar term)
+layette|1
+(noun)|kit (generic term)|outfit (generic term)
+layia|1
+(noun)|Layia|genus Layia|asterid dicot genus (generic term)
+layia platyglossa|1
+(noun)|tidytips|tidy tips|Layia platyglossa|flower (generic term)
+laying|1
+(noun)|egg laying|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+laying claim|1
+(noun)|assumption|acquisition (generic term)
+laying on|1
+(noun)|contact (generic term)|physical contact (generic term)
+laying on of hands|2
+(noun)|faith healing (generic term)|faith cure (generic term)
+(noun)|ordination (generic term)|ordinance (generic term)
+laying waste|1
+(noun)|ruin|ruining|ruination|wrecking|destruction (generic term)|devastation (generic term)
+layman|1
+(noun)|layperson|secular|commoner (generic term)|common man (generic term)|common person (generic term)|clergyman (antonym)
+layoff|1
+(noun)|closure (generic term)|closedown (generic term)|closing (generic term)|shutdown (generic term)
+layout|2
+(noun)|design (generic term)|plan (generic term)
+(noun)|order (generic term)|ordering (generic term)
+layover|1
+(noun)|stop|stopover|stay (generic term)
+layperson|1
+(noun)|layman|secular|commoner (generic term)|common man (generic term)|common person (generic term)|clergyman (antonym)
+layup|1
+(noun)|lay-up|basketball shot (generic term)
+lazar|1
+(noun)|leper|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+lazar house|1
+(noun)|lazaretto|lazaret|lazarette|pesthouse|hospital (generic term)|infirmary (generic term)
+lazaret|1
+(noun)|lazaretto|lazarette|lazar house|pesthouse|hospital (generic term)|infirmary (generic term)
+lazarette|1
+(noun)|lazaretto|lazaret|lazar house|pesthouse|hospital (generic term)|infirmary (generic term)
+lazaretto|2
+(noun)|lazaret|lazarette|lazar house|pesthouse|hospital (generic term)|infirmary (generic term)
+(noun)|glory hole|cabinet (generic term)|locker (generic term)|storage locker (generic term)
+lazarus|2
+(noun)|Lazarus|dead person (generic term)|dead soul (generic term)|deceased person (generic term)|deceased (generic term)|decedent (generic term)|departed (generic term)
+(noun)|Lazarus|beggar (generic term)|mendicant (generic term)
+laze|1
+(verb)|idle|slug|stagnate|work (antonym)
+lazily|1
+(adv)|idly
+laziness|3
+(noun)|indolence|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+(noun)|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+(noun)|sloth|acedia|mortal sin (generic term)|deadly sin (generic term)
+lazio|1
+(noun)|Latium|Lazio|Italian region (generic term)
+lazuli|1
+(noun)|lapis lazuli|opaque gem (generic term)
+lazuline|1
+(noun)|azure|cerulean|sapphire|sky-blue|blue (generic term)|blueness (generic term)
+lazy|2
+(adj)|slow (similar term)
+(adj)|faineant|indolent|otiose|slothful|work-shy|idle (similar term)
+lazy daisy stitch|1
+(noun)|stitch (generic term)
+lazy susan|1
+(noun)|turntable|lazy Susan|tray (generic term)
+lazybones|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+lazzaro spallanzani|1
+(noun)|Spallanzani|Lazzaro Spallanzani|physiologist (generic term)
+lb|1
+(noun)|pound|avoirdupois unit (generic term)
+lbf.|1
+(noun)|pound|force unit (generic term)
+lbj|1
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+lcd|1
+(noun)|liquid crystal display|LCD|digital display (generic term)|alphanumeric display (generic term)
+lcm|1
+(noun)|lowest common multiple|least common multiple|multiple (generic term)
+ld.|1
+(noun)|limited company|Ltd.|Ld.|company (generic term)
+ldl|1
+(noun)|low-density lipoprotein|LDL|beta-lipoprotein|lipoprotein (generic term)
+ldl cholesterol|1
+(noun)|LDL cholesterol|cholesterol (generic term)|cholesterin (generic term)
+le|1
+(noun)|lupus erythematosus|LE|lupus (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+le carre|1
+(noun)|le Carre|John le Carre|David John Moore Cornwell|writer (generic term)|author (generic term)
+le chatelier|1
+(noun)|le Chatelier|Henry le Chatelier|chemist (generic term)
+le chatelier's law|1
+(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle (generic term)|rule (generic term)
+le chatelier's principle|1
+(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle (generic term)|rule (generic term)
+le chatelier-braun principle|1
+(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle (generic term)|rule (generic term)
+le chatelier principle|1
+(noun)|Le Chatelier's principle|Le Chatelier's law|Le Chatelier principle|Le Chatelier-Braun principle|principle (generic term)|rule (generic term)
+le corbusier|1
+(noun)|Le Corbusier|Charles Edouard Jeanneret|architect (generic term)|designer (generic term)
+le douanier rousseau|1
+(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter (generic term)
+le duc tho|1
+(noun)|Le Duc Tho|diplomat (generic term)|diplomatist (generic term)
+le gallienne|1
+(noun)|Le Gallienne|Eva Le Gallienne|actress (generic term)
+le havre|1
+(noun)|Le Havre|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+le notre|1
+(noun)|Le Notre|Andre Le Notre|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+lea|2
+(noun)|linear unit (generic term)
+(noun)|pasture|pastureland|grazing land|ley|grassland (generic term)
+leach|4
+(noun)|leaching|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|percolate|trickle (generic term)|dribble (generic term)|filter (generic term)
+(verb)|strip|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+leaching|1
+(noun)|leach|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+leacock|1
+(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist (generic term)|economic expert (generic term)|humorist (generic term)|humourist (generic term)
+lead|32
+(noun)|Pb|atomic number 82|metallic element (generic term)|metal (generic term)
+(noun)|advantage (generic term)|vantage (generic term)
+(noun)|track|trail|evidence (generic term)|grounds (generic term)
+(noun)|leadership (generic term)|leading (generic term)
+(noun)|angle (generic term)
+(noun)|lead-in|lede|section (generic term)|subdivision (generic term)
+(noun)|score (generic term)|deficit (antonym)
+(noun)|star|principal|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|position (generic term)|place (generic term)
+(noun)|tip|steer|confidential information|wind|hint|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|lead story|news article (generic term)|news story (generic term)|newspaper article (generic term)
+(noun)|spark advance|timing (generic term)
+(noun)|leash|tether|restraint (generic term)|constraint (generic term)
+(noun)|leading|strip (generic term)|slip (generic term)
+(noun)|pencil lead|graphite (generic term)|black lead (generic term)|plumbago (generic term)
+(noun)|jumper cable|jumper lead|booster cable|jumper (generic term)|wire (generic term)|conducting wire (generic term)
+(noun)|turn (generic term)|play (generic term)
+(verb)|take|direct|conduct|guide
+(verb)|leave|result|produce (generic term)|bring about (generic term)|give rise (generic term)
+(verb)|leave (generic term)|result (generic term)|lead (generic term)
+(verb)|head|precede (generic term)|lead (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|run|go|pass|extend|be (generic term)|extend to (related term)|run along (related term)
+(verb)|head|direct (generic term)
+(verb)|top
+(verb)|contribute|conduce|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|conduct|direct|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|spend (generic term)|pass (generic term)
+(verb)|go|be (generic term)
+(verb)|precede|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|follow (antonym)
+(verb)|run|pass (generic term)|make pass (generic term)
+(verb)|moderate|chair|hash out (generic term)|discuss (generic term)|talk over (generic term)
+lead-acid accumulator|1
+(noun)|lead-acid battery|storage battery (generic term)|accumulator (generic term)
+lead-acid battery|1
+(noun)|lead-acid accumulator|storage battery (generic term)|accumulator (generic term)
+lead-colored|1
+(adj)|lead-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+lead-coloured|1
+(adj)|lead-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+lead-free|1
+(adj)|nonleaded|unleaded (similar term)|leadless (similar term)
+lead-in|2
+(noun)|lead|lede|section (generic term)|subdivision (generic term)
+(noun)|wire (generic term)|conducting wire (generic term)
+lead acetate|1
+(noun)|sugar of lead|acetate (generic term)|ethanoate (generic term)|dye (generic term)|dyestuff (generic term)
+lead arsenate|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+lead astray|3
+(verb)|lead off|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|mislead|misdirect|misguide|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+(verb)|deceive|betray|misinform (generic term)|mislead (generic term)|undeceive (antonym)
+lead bank|1
+(noun)|agent bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+lead by the nose|1
+(verb)|bamboozle|snow|hoodwink|pull the wool over someone's eyes|play false|deceive (generic term)|betray (generic term)|lead astray (generic term)
+lead carbonate|1
+(noun)|white lead|ceruse|pigment (generic term)
+lead chromate|1
+(noun)|chromate (generic term)
+lead colic|1
+(noun)|painter's colic|colic (generic term)|intestinal colic (generic term)|gripes (generic term)|griping (generic term)
+lead glass|1
+(noun)|glass (generic term)
+lead line|1
+(noun)|sounding line|plumb line (generic term)|perpendicular (generic term)
+lead off|2
+(verb)|lead astray|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|begin|start|commence|end (antonym)
+lead on|2
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+(verb)|deceive|delude|cozen|victimize (generic term)|victimise (generic term)
+lead ore|1
+(noun)|ore (generic term)
+lead pencil|1
+(noun)|pencil (generic term)
+lead plant|1
+(noun)|leadplant|Amorpha canescens|amorpha (generic term)
+lead poisoning|1
+(noun)|plumbism|saturnism|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+lead sheet|1
+(noun)|sheet music (generic term)
+lead story|1
+(noun)|lead|news article (generic term)|news story (generic term)|newspaper article (generic term)
+lead tetraethyl|1
+(noun)|tetraethyl lead|antiknock (generic term)
+lead time|1
+(noun)|time interval (generic term)|interval (generic term)
+lead tree|1
+(noun)|white popinac|Leucaena glauca|Leucaena leucocephala|tree (generic term)
+lead up|1
+(verb)|initiate|originate (generic term)|initiate (generic term)|start (generic term)
+leadbelly|1
+(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)|composer (generic term)
+leaded|3
+(adj)|fixed (similar term)
+(adj)|antiknock (similar term)|unleaded (antonym)
+(adj)|spaced (similar term)
+leaded bronze|1
+(noun)|bronze (generic term)
+leaded gasoline|1
+(noun)|gasoline (generic term)|gasolene (generic term)|gas (generic term)|petrol (generic term)|unleaded gasoline (antonym)
+leaden|5
+(adj)|dull|grey|gray|cloudy (similar term)
+(adj)|weighted|heavy (similar term)
+(adj)|metallic element|metal (related term)
+(adj)|plodding|effortful (similar term)
+(adj)|heavy|dull (similar term)
+leader|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|follower (antonym)
+(noun)|drawing card|loss leader|feature (generic term)
+leaders|1
+(noun)|leadership|body (generic term)
+leadership|4
+(noun)|leading|activity (generic term)
+(noun)|leaders|body (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|ability (generic term)|power (generic term)
+leading|6
+(adj)|prima|star|starring|stellar|major (similar term)
+(adj)|directing (similar term)|directional (similar term)|directive (similar term)|guiding (similar term)|guiding (similar term)|following (antonym)
+(adj)|preeminent|superior (similar term)
+(adj)|ahead|in the lead|up (similar term)
+(noun)|lead|strip (generic term)|slip (generic term)
+(noun)|leadership|activity (generic term)
+leading astray|1
+(noun)|leading off|enticement (generic term)|temptation (generic term)
+leading edge|1
+(noun)|edge (generic term)
+leading indicator|1
+(noun)|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+leading lady|1
+(noun)|actress (generic term)
+leading light|1
+(noun)|luminary|guiding light|notable|notability|celebrity (generic term)|famous person (generic term)
+leading man|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+leading off|1
+(noun)|leading astray|enticement (generic term)|temptation (generic term)
+leading question|1
+(noun)|question (generic term)|interrogation (generic term)|interrogative (generic term)|interrogative sentence (generic term)
+leading rein|1
+(noun)|rein (generic term)
+leading tone|1
+(noun)|subtonic|note (generic term)|musical note (generic term)|tone (generic term)
+leadless|1
+(adj)|unleaded|lead-free (similar term)|nonleaded (similar term)|leaded (antonym)
+leadplant|1
+(noun)|lead plant|Amorpha canescens|amorpha (generic term)
+leadwort|1
+(noun)|Plumbago europaea|shrub (generic term)|bush (generic term)
+leadwort family|1
+(noun)|Plumbaginaceae|family Plumbaginaceae|sea-lavender family|dicot family (generic term)|magnoliopsid family (generic term)
+leaf|6
+(noun)|leafage|foliage|plant organ (generic term)
+(noun)|folio|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+(noun)|section (generic term)|segment (generic term)
+(verb)|flick|flip|thumb|riffle|riff|peruse (generic term)
+(verb)|turn (generic term)|turn over (generic term)
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+leaf-book|1
+(noun)|codex|manuscript (generic term)|holograph (generic term)
+leaf-cutter|1
+(noun)|leaf-cutting bee|leaf-cutter bee|bee (generic term)
+leaf-cutter bee|1
+(noun)|leaf-cutting bee|leaf-cutter|bee (generic term)
+leaf-cutting bee|1
+(noun)|leaf-cutter|leaf-cutter bee|bee (generic term)
+leaf-foot bug|1
+(noun)|leaf-footed bug|coreid bug (generic term)|coreid (generic term)
+leaf-footed bug|1
+(noun)|leaf-foot bug|coreid bug (generic term)|coreid (generic term)
+leaf-like|1
+(adj)|leaflike|leafy (similar term)
+leaf-miner|1
+(noun)|leaf miner|insect (generic term)
+leaf-nosed bat|1
+(noun)|leafnose bat|carnivorous bat (generic term)|microbat (generic term)
+leaf-nosed snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+leaf-roller|1
+(noun)|leaf roller|tortricid (generic term)|tortricid moth (generic term)
+leaf beet|2
+(noun)|chard|Swiss chard|spinach beet|chard plant|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|chard|Swiss chard|spinach beet|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+leaf beetle|1
+(noun)|chrysomelid|beetle (generic term)
+leaf blade|1
+(noun)|blade|leaf (generic term)|leafage (generic term)|foliage (generic term)
+leaf blight|1
+(noun)|blight (generic term)
+leaf bud|1
+(noun)|bud (generic term)
+leaf bug|1
+(noun)|plant bug|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+leaf cast|1
+(noun)|needle blight|needle cast|leaf blight (generic term)
+leaf disease|1
+(noun)|plant disease (generic term)
+leaf fat|1
+(noun)|leaf lard|fat (generic term)
+leaf form|1
+(noun)|leaf shape|natural shape (generic term)
+leaf insect|1
+(noun)|walking leaf|phasmid (generic term)|phasmid insect (generic term)
+leaf lard|1
+(noun)|leaf fat|fat (generic term)
+leaf lettuce|2
+(noun)|Lactuca sativa crispa|lettuce (generic term)
+(noun)|loose-leaf lettuce|lettuce (generic term)
+leaf miner|1
+(noun)|leaf-miner|insect (generic term)
+leaf mold|1
+(noun)|leaf mould|leaf soil|mold (generic term)|mould (generic term)
+leaf mould|1
+(noun)|leaf mold|leaf soil|mold (generic term)|mould (generic term)
+leaf mustard|2
+(noun)|chinese mustard|indian mustard|gai choi|Brassica juncea|mustard (generic term)
+(noun)|mustard|mustard greens|Indian mustard|cruciferous vegetable (generic term)
+leaf roller|1
+(noun)|leaf-roller|tortricid (generic term)|tortricid moth (generic term)
+leaf scorch|1
+(noun)|scorch (generic term)
+leaf shape|1
+(noun)|leaf form|natural shape (generic term)
+leaf soil|1
+(noun)|leaf mold|leaf mould|mold (generic term)|mould (generic term)
+leaf spring|1
+(noun)|spring (generic term)
+leafage|1
+(noun)|leaf|foliage|plant organ (generic term)
+leafed|1
+(adj)|leaved|leafy (similar term)
+leafhopper|1
+(noun)|homopterous insect (generic term)|homopteran (generic term)
+leafing|1
+(noun)|foliation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+leafless|1
+(adj)|aphyllous (similar term)|defoliate (similar term)|defoliated (similar term)|scapose (similar term)|leafy (antonym)
+leaflet|3
+(noun)|cusp|flap (generic term)
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|booklet|brochure|folder|pamphlet|book (generic term)
+leaflike|1
+(adj)|leaf-like|leafy (similar term)
+leafnose bat|1
+(noun)|leaf-nosed bat|carnivorous bat (generic term)|microbat (generic term)
+leafstalk|1
+(noun)|petiole|stalk (generic term)|stem (generic term)
+leafy|1
+(adj)|bifoliate (similar term)|bowery (similar term)|curly-leaved (similar term)|curly-leafed (similar term)|fan-leaved (similar term)|fan-leafed (similar term)|fine-leaved (similar term)|fine-leafed (similar term)|foliaceous (similar term)|foliose (similar term)|foliaged (similar term)|foliate (similar term)|foliolate (similar term)|grassy-leaved (similar term)|grassy-leafed (similar term)|ivied (similar term)|ivy-covered (similar term)|large-leaved (similar term)|large-leafed (similar term)|leafed (similar term)|leaved (similar term)|leaflike (similar term)|leaf-like (similar term)|leather-leaved (similar term)|leather-leafed (similar term)|petallike (similar term)|petal-like (similar term)|pinnate-leaved (similar term)|pinnate-leafed (similar term)|prickly-leaved (similar term)|prickly-leafed (similar term)|silky-leaved (similar term)|silky-leafed (similar term)|silver-leaved (similar term)|silvery-leaved (similar term)|silver-leafed (similar term)|silvery-leafed (similar term)|spiny-leaved (similar term)|spiny-leafed (similar term)|two-leaved (similar term)|two-leafed (similar term)|unifoliate (similar term)|leafless (antonym)
+leafy-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+leafy liverwort|1
+(noun)|scale moss|liverwort (generic term)|hepatic (generic term)
+leafy spurge|1
+(noun)|wolf's milk|Euphorbia esula|spurge (generic term)
+leafy vegetable|1
+(noun)|greens|green|vegetable (generic term)|veggie (generic term)
+league|4
+(noun)|conference|association (generic term)
+(noun)|union (generic term)
+(noun)|linear unit (generic term)
+(verb)|unite (generic term)|unify (generic term)
+league of iroquois|1
+(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league (generic term)
+league of nations|1
+(noun)|League of Nations|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+league together|1
+(verb)|band oneself|join (generic term)|fall in (generic term)|get together (generic term)
+leak|8
+(noun)|hole (generic term)
+(noun)|soft rot (generic term)
+(noun)|wetting|making water|passing water|micturition (generic term)|urination (generic term)
+(noun)|escape|leakage|outflow|discharge (generic term)|outpouring (generic term)|run (generic term)
+(noun)|news leak|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|leak out|break (generic term)|get out (generic term)|get around (generic term)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+leak fungus|1
+(noun)|ring rot fungus|Rhizopus stolonifer|rhizoid (generic term)
+leak out|1
+(verb)|leak|break (generic term)|get out (generic term)|get around (generic term)
+leakage|1
+(noun)|escape|leak|outflow|discharge (generic term)|outpouring (generic term)|run (generic term)
+leaker|1
+(noun)|informant (generic term)|source (generic term)
+leakey|3
+(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+leakiness|1
+(noun)|condition (generic term)|status (generic term)
+leakproof|1
+(adj)|tight (similar term)
+leaky|3
+(adj)|drafty (similar term)|draughty (similar term)|drippy (similar term)|oozing (similar term)|oozy (similar term)|seeping (similar term)|holey (similar term)|porous (similar term)|permeable (related term)|unseaworthy (related term)|tight (antonym)
+(adj)|incontinent (similar term)
+(adj)|blabbermouthed|talebearing|tattling|communicative (similar term)|communicatory (similar term)
+leal|1
+(adj)|loyal (similar term)
+lean|10
+(adj)|thin|anorexic (similar term)|anorectic (similar term)|bony (similar term)|cadaverous (similar term)|emaciated (similar term)|gaunt (similar term)|haggard (similar term)|pinched (similar term)|skeletal (similar term)|wasted (similar term)|deep-eyed (similar term)|hollow-eyed (similar term)|sunken-eyed (similar term)|gangling (similar term)|gangly (similar term)|lanky (similar term)|lank (similar term)|spindly (similar term)|rawboned (similar term)|reedy (similar term)|reedlike (similar term)|twiggy (similar term)|twiglike (similar term)|scarecrowish (similar term)|scraggy (similar term)|boney (similar term)|scrawny (similar term)|skinny (similar term)|underweight (similar term)|weedy (similar term)|shriveled (similar term)|shrivelled (similar term)|shrunken (similar term)|withered (similar term)|wizen (similar term)|wizened (similar term)|slender (similar term)|slight (similar term)|slim (similar term)|svelte (similar term)|slender-waisted (similar term)|slim-waisted (similar term)|wasp-waisted (similar term)|spare (similar term)|trim (similar term)|spindle-legged (similar term)|spindle-shanked (similar term)|stringy (similar term)|wiry (similar term)|wisplike (similar term)|wispy (similar term)|ectomorphic (related term)|thin (related term)|fat (antonym)
+(adj)|rich (antonym)
+(adj)|skimpy|insufficient (similar term)|deficient (similar term)
+(adj)|unprofitable (similar term)
+(noun)|tilt|list|inclination|leaning|position (generic term)|spatial relation (generic term)
+(verb)|tilt|tip|slant|angle|bend (generic term)|flex (generic term)|tip over (related term)|tip over (related term)|lean against (related term)|lean on (related term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|tend|be given|incline|run|be (generic term)
+(verb)|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+(verb)|list|move (generic term)
+lean-to|1
+(noun)|shelter (generic term)
+lean-to tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+lean against|1
+(verb)|lean on|rest on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+lean back|1
+(verb)|recline|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+lean on|1
+(verb)|rest on|lean against|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+leander|1
+(noun)|Leander|mythical being (generic term)
+leaner|1
+(noun)|throw (generic term)
+leaning|5
+(adj)|atilt|canted|tilted|tipped|inclined (similar term)
+(noun)|propensity|tendency|inclination (generic term)
+(noun)|proclivity|propensity|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|tilt|list|inclination|lean|position (generic term)|spatial relation (generic term)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+leaning tower|1
+(noun)|Leaning Tower|Leaning Tower of Pisa|campanile (generic term)|belfry (generic term)
+leaning tower of pisa|1
+(noun)|Leaning Tower|Leaning Tower of Pisa|campanile (generic term)|belfry (generic term)
+leanness|2
+(noun)|meagerness|meagreness|poorness|scantiness|scantness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+(noun)|thinness|spareness|bodily property (generic term)|fatness (antonym)
+leap|8
+(noun)|leaping|spring|saltation|bound|bounce|jump (generic term)|jumping (generic term)
+(noun)|jump|saltation|transition (generic term)
+(noun)|jump|increase (generic term)
+(noun)|distance (generic term)
+(verb)|jump|bound|spring|move (generic term)|leap out (related term)|jump on (related term)
+(verb)|jump|switch (generic term)|shift (generic term)|change (generic term)
+(verb)|jump|jump off|move (generic term)
+(verb)|jump
+leap day|1
+(noun)|bissextile day|February 29|day (generic term)
+leap out|2
+(verb)|jump out|jump|stand out|stick out|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|rush out|sally out|burst forth|appear (generic term)
+leap second|1
+(noun)|second (generic term)|sec (generic term)|s (generic term)
+leap year|1
+(noun)|intercalary year|366 days|bissextile year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+leaper|1
+(noun)|bounder|jumper (generic term)
+leapfrog|4
+(noun)|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+(noun)|child's game (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|progress (generic term)|come on (generic term)|come along (generic term)|advance (generic term)|get on (generic term)|get along (generic term)|shape up (generic term)
+leaping|1
+(noun)|leap|spring|saltation|bound|bounce|jump (generic term)|jumping (generic term)
+lear|2
+(noun)|Lear|Edward Lear|artist (generic term)|creative person (generic term)|humorist (generic term)|humourist (generic term)
+(noun)|Lear|King Lear|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+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 (generic term)|hit the books (generic term)
+(verb)|study|read|take
+(verb)|teach|instruct|inform (generic term)
+(verb)|determine|check|find out|see|ascertain|watch
+learned|4
+(adj)|erudite|scholarly (similar term)
+(adj)|enlightened|knowing|knowledgeable|lettered|well-educated|well-read|educated (similar term)
+(adj)|conditioned|unconditioned (antonym)
+(adj)|noninheritable (similar term)|nonheritable (similar term)
+learned person|1
+(noun)|initiate|pundit|savant|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+learned profession|1
+(noun)|profession (generic term)
+learned reaction|1
+(noun)|learned response|reaction (generic term)|response (generic term)
+learned response|1
+(noun)|learned reaction|reaction (generic term)|response (generic term)
+learnedly|1
+(adv)|eruditely
+learnedness|1
+(noun)|eruditeness|erudition|learning|scholarship|encyclopedism|encyclopaedism|education (generic term)
+learner|2
+(noun)|scholar|assimilator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|apprentice|prentice|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+learner's dictionary|1
+(noun)|school dictionary|dictionary (generic term)|lexicon (generic term)
+learner's permit|1
+(noun)|license (generic term)|licence (generic term)|permit (generic term)
+learning|2
+(noun)|acquisition|basic cognitive process (generic term)
+(noun)|eruditeness|erudition|learnedness|scholarship|encyclopedism|encyclopaedism|education (generic term)
+learning ability|1
+(noun)|brain|brainpower|mental capacity|mentality|wit|intelligence (generic term)
+learning disability|1
+(noun)|learning disorder|disorder (generic term)|upset (generic term)
+learning disorder|1
+(noun)|learning disability|disorder (generic term)|upset (generic term)
+leary|1
+(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist (generic term)
+lease|7
+(noun)|rental|letting|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|contract (generic term)
+(noun)|term of a contract|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|rent|contract (generic term)|undertake (generic term)
+(verb)|rent|hire|charter|contract (generic term)|undertake (generic term)
+(verb)|let|rent|give (generic term)|rent out (related term)
+(verb)|rent|hire|charter|engage|take|get (generic term)|acquire (generic term)
+lease-lend|1
+(noun)|lend-lease|transfer (generic term)|transference (generic term)
+lease giver|1
+(noun)|lessor|owner (generic term)|proprietor (generic term)
+leased|1
+(adj)|chartered|hired|unchartered (antonym)
+leasehold|1
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+leaseholder|1
+(noun)|lessee|tenant (generic term)|renter (generic term)
+leash|4
+(noun)|tether|lead|restraint (generic term)|constraint (generic term)
+(noun)|three|3|III|trio|threesome|tierce|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|collar|restraint (generic term)
+(verb)|rope|tie (generic term)|bind (generic term)|rope in (related term)
+least|3
+(adj)|most (antonym)
+(noun)|matter (generic term)|affair (generic term)|thing (generic term)
+(adv)|to the lowest degree|most (antonym)
+least bittern|1
+(noun)|Ixobrychus exilis|bittern (generic term)
+least common multiple|1
+(noun)|lowest common multiple|lcm|multiple (generic term)
+least effort|1
+(noun)|least resistance|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+least resistance|1
+(noun)|least effort|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+least sandpiper|1
+(noun)|stint|Erolia minutilla|sandpiper (generic term)
+least shrew|1
+(noun)|Cryptotis parva|shrew (generic term)|shrewmouse (generic term)
+least squares|1
+(noun)|method of least squares|statistical method (generic term)|statistical procedure (generic term)
+leastways|1
+(adv)|at least|leastwise|at any rate
+leastwise|1
+(adv)|at least|leastways|at any rate
+leather|2
+(noun)|animal skin (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+leather-leafed|1
+(adj)|leather-leaved|leafy (similar term)
+leather-leaved|1
+(adj)|leather-leafed|leafy (similar term)
+leather carp|1
+(noun)|domestic carp (generic term)|Cyprinus carpio (generic term)
+leather fern|2
+(noun)|golden fern|Acrostichum aureum|fern (generic term)
+(noun)|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern (generic term)
+leather flower|2
+(noun)|vase-fine|vase vine|Clematis viorna|clematis (generic term)
+(noun)|Clematis versicolor|clematis (generic term)
+leather soap|1
+(noun)|saddle soap|soap (generic term)
+leather strip|1
+(noun)|implement (generic term)
+leatherback|1
+(noun)|leatherback turtle|leathery turtle|Dermochelys coriacea|sea turtle (generic term)|marine turtle (generic term)
+leatherback turtle|1
+(noun)|leatherback|leathery turtle|Dermochelys coriacea|sea turtle (generic term)|marine turtle (generic term)
+leathered|1
+(adj)|coriaceous|leatherlike|leathery|tough (similar term)
+leatherette|1
+(noun)|imitation leather|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+leatherfish|1
+(noun)|leatherjacket|filefish (generic term)
+leatherjack|1
+(noun)|leatherjacket|jack (generic term)
+leatherjacket|3
+(noun)|leatherfish|filefish (generic term)
+(noun)|leatherjack|jack (generic term)
+(noun)|grub (generic term)
+leatherleaf|2
+(noun)|leathery polypody|coast polypody|Polypodium scouleri|polypody (generic term)
+(noun)|Chamaedaphne calyculata|shrub (generic term)|bush (generic term)
+leatherleaf fern|1
+(noun)|leather fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern (generic term)
+leatherleaf saxifrage|1
+(noun)|Leptarrhena pyrolifolia|wildflower (generic term)|wild flower (generic term)
+leatherleaf wood fern|1
+(noun)|marginal wood fern|evergreen wood fern|Dryopteris marginalis|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+leatherlike|1
+(adj)|coriaceous|leathered|leathery|tough (similar term)
+leatherneck|1
+(noun)|Marine|devil dog|shipboard soldier|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+leatherwood|2
+(noun)|cyrilla|white titi|Cyrilla racemiflora|shrub (generic term)|bush (generic term)
+(noun)|moosewood|moose-wood|wicopy|ropebark|Dirca palustris|shrub (generic term)|bush (generic term)
+leatherwork|1
+(noun)|work (generic term)|piece of work (generic term)
+leathery|1
+(adj)|coriaceous|leathered|leatherlike|tough (similar term)
+leathery grape fern|1
+(noun)|Botrychium multifidum|grape fern (generic term)
+leathery polypody|1
+(noun)|leatherleaf|coast polypody|Polypodium scouleri|polypody (generic term)
+leathery turtle|1
+(noun)|leatherback turtle|leatherback|Dermochelys coriacea|sea turtle (generic term)|marine turtle (generic term)
+leave|16
+(noun)|leave of absence|time off (generic term)
+(noun)|permission (generic term)
+(noun)|farewell|leave-taking|parting|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(verb)|go forth|go away|arrive (antonym)
+(verb)|make (generic term)|get (generic term)
+(verb)|leave alone|leave behind|refrain (generic term)|forbear (generic term)
+(verb)|exit|go out|get out|move (generic term)|enter (antonym)
+(verb)|allow for|allow|provide|yield (generic term)|give (generic term)|afford (generic term)
+(verb)|result|lead|produce (generic term)|bring about (generic term)|give rise (generic term)
+(verb)|depart|pull up stakes|change (generic term)
+(verb)|entrust|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|bequeath|will|give (generic term)|gift (generic term)|present (generic term)|disinherit (antonym)
+(verb)|have (generic term)
+(verb)|leave behind
+(verb)|impart|give|pass on|tell (generic term)
+(verb)|forget|lose (generic term)
+leave-taking|1
+(noun)|farewell|leave|parting|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+leave alone|1
+(verb)|leave|leave behind|refrain (generic term)|forbear (generic term)
+leave behind|2
+(verb)|leave
+(verb)|leave|leave alone|refrain (generic term)|forbear (generic term)
+leave no stone unturned|1
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+leave of absence|1
+(noun)|leave|time off (generic term)
+leave off|3
+(verb)|discontinue (generic term)
+(verb)|exclude|except|leave out|omit|take out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+(verb)|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+leave office|1
+(verb)|quit|step down|resign|leave (generic term)|depart (generic term)|pull up stakes (generic term)|take office (antonym)
+leave out|2
+(verb)|exclude|except|leave off|omit|take out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+(verb)|neglect|pretermit|omit|drop|miss|overlook|overleap|attend to (antonym)
+leaved|1
+(adj)|leafed|leafy (similar term)
+leaven|3
+(noun)|leavening|substance (generic term)|matter (generic term)
+(noun)|leavening|imponderable (generic term)
+(verb)|raise|prove|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+leavened|1
+(adj)|unleavened (antonym)
+leavening|2
+(noun)|leaven|imponderable (generic term)
+(noun)|leaven|substance (generic term)|matter (generic term)
+leaver|1
+(noun)|departer|goer|migrant (generic term)|migrator (generic term)
+leaving|1
+(noun)|departure|going|going away|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+lebanese|2
+(adj)|Lebanese|Asian country|Asian nation (related term)
+(noun)|Lebanese|Asian (generic term)|Asiatic (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lebanese monetary unit|1
+(noun)|Lebanese monetary unit|monetary unit (generic term)
+lebanese pound|1
+(noun)|Lebanese pound|pound|Lebanese monetary unit (generic term)
+lebanese republic|1
+(noun)|Lebanon|Lebanese Republic|Asian country (generic term)|Asian nation (generic term)
+lebanon|1
+(noun)|Lebanon|Lebanese Republic|Asian country (generic term)|Asian nation (generic term)
+lebensraum|1
+(noun)|living space|room (generic term)|way (generic term)|elbow room (generic term)
+lebistes|1
+(noun)|Lebistes|genus Lebistes|fish genus (generic term)
+lebistes reticulatus|1
+(noun)|guppy|rainbow fish|Lebistes reticulatus|cyprinodont (generic term)
+leboyer method|1
+(noun)|Leboyer method of childbirth|Leboyer method|natural childbirth (generic term)
+leboyer method of childbirth|1
+(noun)|Leboyer method of childbirth|Leboyer method|natural childbirth (generic term)
+lecanopteris|1
+(noun)|fern (generic term)
+lecanora|1
+(noun)|lichen (generic term)
+lecanoraceae|1
+(noun)|Lecanoraceae|family Lecanoraceae|fungus family (generic term)
+leccinum|1
+(noun)|Leccinum|genus Leccinum|fungus genus (generic term)
+leccinum fibrillosum|1
+(noun)|Leccinum fibrillosum|bolete (generic term)
+lech|1
+(noun)|satyr|lecher|letch|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+lech after|1
+(verb)|lust after|desire (generic term)|want (generic term)
+lech walesa|1
+(noun)|Walesa|Lech Walesa|labor leader (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+lechanorales|1
+(noun)|Lechanorales|order Lechanorales|fungus order (generic term)
+lechartelierite|1
+(noun)|mineral (generic term)
+lechatelierite|1
+(noun)|quartz glass|quartz|vitreous silica|crystal|natural glass (generic term)
+lecher|1
+(noun)|satyr|lech|letch|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+lecherous|1
+(adj)|sexy (similar term)
+lecherousness|1
+(noun)|lust|lustfulness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+lechery|1
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+lechwe|1
+(noun)|Kobus leche|waterbuck (generic term)
+lecithin|1
+(noun)|phospholipid (generic term)|emulsifier (generic term)
+leclanche cell|1
+(noun)|Leclanche cell|voltaic cell (generic term)|galvanic cell (generic term)|primary cell (generic term)
+lectern|1
+(noun)|reading desk|stand (generic term)
+lectin|1
+(noun)|glycoprotein (generic term)
+lector|2
+(noun)|reader|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+(noun)|lecturer|reader|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+lecture|5
+(noun)|public lecture|talk|address (generic term)|speech (generic term)
+(noun)|speech|talking to|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|lecturing|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+(verb)|talk|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+lecture demonstration|1
+(noun)|presentation (generic term)|presentment (generic term)|demonstration (generic term)
+lecture room|1
+(noun)|classroom (generic term)|schoolroom (generic term)
+lecturer|2
+(noun)|lector|reader|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+lectureship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+lecturing|1
+(noun)|lecture|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+lecythidaceae|1
+(noun)|Lecythidaceae|family Lecythidaceae|dicot family (generic term)|magnoliopsid family (generic term)
+led|1
+(noun)|light-emitting diode|LED|diode (generic term)|semiconductor diode (generic term)|junction rectifier (generic term)|crystal rectifier (generic term)
+leda|1
+(noun)|Leda|mythical being (generic term)
+ledbetter|1
+(noun)|Ledbetter|Huddie Leadbetter|Leadbelly|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)|composer (generic term)
+lede|1
+(noun)|lead|lead-in|section (generic term)|subdivision (generic term)
+ledercillin vk|1
+(noun)|penicillin V potassium|Ledercillin VK|penicillin V (generic term)|phenoxymethyl penicillin (generic term)
+lederhosen|1
+(noun)|short pants (generic term)|shorts (generic term)|trunks (generic term)
+ledge|1
+(noun)|shelf|ridge (generic term)
+ledgeman|1
+(noun)|breaker|quarryman (generic term)|quarrier (generic term)
+ledger|2
+(noun)|leger|account book|book of account|book|record (generic term)
+(noun)|daybook|journal (generic term)
+ledger board|1
+(noun)|rail (generic term)
+ledger entry|1
+(noun)|entry|accounting entry|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+ledger line|1
+(noun)|leger line|line (generic term)
+ledger paper|1
+(noun)|writing paper (generic term)
+ledum|1
+(noun)|Ledum|genus Ledum|dilleniid dicot genus (generic term)
+ledum groenlandicum|1
+(noun)|Labrador tea|crystal tea|Ledum groenlandicum|shrub (generic term)|bush (generic term)
+ledum palustre|1
+(noun)|wild rosemary|marsh tea|Ledum palustre|shrub (generic term)|bush (generic term)
+lee|9
+(adj)|downwind|leeward (similar term)
+(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper (generic term)|striptease artist (generic term)|striptease (generic term)|stripteaser (generic term)|exotic dancer (generic term)|ecdysiast (generic term)|peeler (generic term)
+(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Lee|Tsung Dao Lee|nuclear physicist (generic term)
+(noun)|Lee|Richard Henry Lee|American Revolutionary leader (generic term)
+(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier (generic term)
+(noun)|Lee|Robert E. Lee|Robert Edward Lee|general (generic term)|full general (generic term)
+(noun)|lee side|leeward|side (generic term)|face (generic term)
+lee's birthday|1
+(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day (generic term)
+lee buck trevino|1
+(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer (generic term)|golf player (generic term)|linksman (generic term)
+lee de forest|1
+(noun)|De Forest|Lee De Forest|Father of Radio|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+lee harvey oswald|1
+(noun)|Oswald|Lee Harvey Oswald|assassin (generic term)|assassinator (generic term)|bravo (generic term)
+lee krasner|1
+(noun)|Krasner|Lee Krasner|painter (generic term)
+lee side|1
+(noun)|lee|leeward|side (generic term)|face (generic term)
+lee strasberg|1
+(noun)|Strasberg|Lee Strasberg|Israel Strassberg|film director (generic term)|director (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lee tide|1
+(noun)|leeward tide|tide (generic term)
+lee trevino|1
+(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer (generic term)|golf player (generic term)|linksman (generic term)
+lee yuen kam|1
+(noun)|Lee|Bruce Lee|Lee Yuen Kam|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+leech|3
+(noun)|bloodsucker|hirudinean|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+(noun)|parasite|sponge|sponger|follower (generic term)
+(verb)|bleed|phlebotomize|phlebotomise|treat (generic term)|care for (generic term)
+leech onto|1
+(verb)|attach (generic term)
+leechee|1
+(noun)|litchi|litchi nut|litchee|lichi|lichee|lychee|edible fruit (generic term)
+leechlike|1
+(adj)|parasitic|parasitical|bloodsucking|dependent (similar term)
+leeds|1
+(noun)|Leeds|city (generic term)|metropolis (generic term)|urban center (generic term)
+leek|2
+(noun)|scallion|Allium porrum|alliaceous plant (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+leer|3
+(noun)|sneer|contempt (generic term)|scorn (generic term)
+(noun)|expression (generic term)|look (generic term)|aspect (generic term)|facial expression (generic term)|face (generic term)
+(verb)|look (generic term)
+leering|2
+(adj)|malicious (similar term)
+(adj)|sexy (similar term)
+leery|1
+(adj)|mistrustful|suspicious|untrusting|wary|distrustful (similar term)
+lees|1
+(noun)|sediment (generic term)|deposit (generic term)
+leeuwenhoek|1
+(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist (generic term)
+leeward|4
+(adj)|downwind (similar term)|lee (similar term)|windward (antonym)
+(noun)|direction (generic term)|windward (antonym)
+(noun)|lee|lee side|side (generic term)|face (generic term)
+(adv)|upwind|downwind (antonym)|windward (antonym)
+leeward islands|1
+(noun)|Leeward Islands|archipelago (generic term)
+leeward side|1
+(noun)|to leeward|leeward (generic term)
+leeward tide|1
+(noun)|lee tide|tide (generic term)
+leeway|2
+(noun)|drift (generic term)
+(noun)|allowance|margin|tolerance|discrepancy (generic term)|disagreement (generic term)|divergence (generic term)|variance (generic term)
+leflunomide|1
+(noun)|Arava|anti-TNF compound (generic term)
+left|10
+(adj)|left-hand (similar term)|leftmost (similar term)|near (similar term)|nigh (similar term)|port (similar term)|larboard (similar term)|left-handed (related term)|right (antonym)
+(adj)|leftover|left over|odd|remaining|unexpended|unexhausted (similar term)
+(adj)|left-hand|left-handed (similar term)
+(adj)|far left (similar term)|leftish (similar term)|leftist (similar term)|left-of-center (similar term)|left-wing (similar term)|liberal (similar term)|liberal (related term)|socialistic (related term)|socialist (related term)|center (antonym)|right (antonym)
+(noun)|position (generic term)|place (generic term)|right (antonym)
+(noun)|left wing|faction (generic term)|sect (generic term)
+(noun)|left hand|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+(noun)|left field|leftfield|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|turn (generic term)|turning (generic term)
+(adv)|right (antonym)
+left-eyed|1
+(adj)|eyed (similar term)
+left-hand|2
+(adj)|left|left-handed (similar term)
+(adj)|left (similar term)
+left-handed|6
+(adj)|left (similar term)|left-hand (similar term)|sinistral (similar term)|sinistral (related term)|left (related term)|ambidextrous (antonym)|right-handed (antonym)
+(adj)|illegitimate (similar term)
+(adj)|morganatic|legitimate (similar term)
+(adj)|levorotary|levorotatory|counterclockwise (similar term)|anticlockwise (similar term)|contraclockwise (similar term)
+(adj)|ambiguous (similar term)
+(adj)|bumbling|bungling|butterfingered|ham-fisted|ham-handed|handless|heavy-handed|maladroit (similar term)
+left-handed pitcher|1
+(noun)|left-hander|left hander|lefthander|lefty|southpaw|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+left-handedess|1
+(noun)|status (generic term)|position (generic term)
+left-handedness|1
+(noun)|sinistrality|handedness (generic term)|laterality (generic term)
+left-hander|2
+(noun)|left-handed pitcher|left hander|lefthander|lefty|southpaw|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+(noun)|lefty|southpaw|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+left-luggage office|1
+(noun)|checkroom|room (generic term)
+left-of-center|1
+(adj)|leftist|left-wing|left (similar term)
+left-slanting|1
+(adj)|backhand|written (similar term)
+left-wing|1
+(adj)|leftist|left-of-center|left (similar term)
+left-winger|1
+(noun)|collectivist|leftist|socialist (generic term)
+left atrioventricular valve|1
+(noun)|mitral valve|bicuspid valve|atrioventricular valve (generic term)
+left atrium|1
+(noun)|left atrium of the heart|atrium sinistrum|atrium cordis (generic term)|atrium of the heart (generic term)
+left atrium of the heart|1
+(noun)|left atrium|atrium sinistrum|atrium cordis (generic term)|atrium of the heart (generic term)
+left bank|1
+(noun)|Left Bank|Latin Quarter|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+left brain|1
+(noun)|left hemisphere|hemisphere (generic term)|cerebral hemisphere (generic term)
+left coronary artery|1
+(noun)|coronary artery (generic term)|arteria coronaria (generic term)
+left field|2
+(noun)|leftfield|left|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|leftfield|position (generic term)
+left fielder|1
+(noun)|outfielder (generic term)
+left gastric artery|1
+(noun)|arteria gastrica sinistra|gastric artery (generic term)|arteria gastrica (generic term)
+left gastric vein|1
+(noun)|vena gastrica sinistra|gastric vein (generic term)|vena gastrica (generic term)
+left hand|1
+(noun)|left|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+left hander|1
+(noun)|left-handed pitcher|left-hander|lefthander|lefty|southpaw|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+left hemisphere|1
+(noun)|left brain|hemisphere (generic term)|cerebral hemisphere (generic term)
+left over|1
+(adj)|leftover|left|odd|remaining|unexpended|unexhausted (similar term)
+left stage|1
+(noun)|stage left|left (generic term)
+left ventricle|1
+(noun)|ventricle (generic term)|heart ventricle (generic term)
+left wing|1
+(noun)|left|faction (generic term)|sect (generic term)
+lefteye flounder|1
+(noun)|lefteyed flounder|flatfish (generic term)
+lefteyed flounder|1
+(noun)|lefteye flounder|flatfish (generic term)
+leftfield|2
+(noun)|left field|left|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|left field|position (generic term)
+lefthander|1
+(noun)|left-handed pitcher|left-hander|left hander|lefty|southpaw|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+leftish|1
+(adj)|left (similar term)
+leftism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+leftist|2
+(adj)|left-of-center|left-wing|left (similar term)
+(noun)|collectivist|left-winger|socialist (generic term)
+leftmost|1
+(adj)|left (similar term)
+leftover|2
+(adj)|left over|left|odd|remaining|unexpended|unexhausted (similar term)
+(noun)|remnant|remainder (generic term)|balance (generic term)|residual (generic term)|residue (generic term)|residuum (generic term)|rest (generic term)
+leftovers|1
+(noun)|food (generic term)|solid food (generic term)
+lefty|2
+(noun)|left-hander|southpaw|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|left-handed pitcher|left-hander|left hander|lefthander|southpaw|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+leg|8
+(noun)|limb (generic term)
+(noun)|support (generic term)
+(noun)|branch|ramification|subfigure (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|peg|wooden leg|pegleg|prosthesis (generic term)|prosthetic device (generic term)
+(noun)|cloth covering (generic term)
+(noun)|distance (generic term)|length (generic term)
+(noun)|stage|travel (generic term)|traveling (generic term)|travelling (generic term)
+leg-pull|1
+(noun)|leg-pulling|jest (generic term)|joke (generic term)|jocularity (generic term)
+leg-pulling|1
+(noun)|leg-pull|jest (generic term)|joke (generic term)|jocularity (generic term)
+leg bone|1
+(noun)|long bone (generic term)|os longum (generic term)
+leg covering|1
+(noun)|legging|legin|garment (generic term)
+leg curl|1
+(noun)|leg curling|leg exercise (generic term)
+leg curling|1
+(noun)|leg curl|leg exercise (generic term)
+leg exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+leg extensor|1
+(noun)|leg exercise (generic term)
+leg it|1
+(verb)|foot|hoof|hoof it|walk (generic term)
+leg of lamb|1
+(noun)|gigot|lamb roast (generic term)|roast lamb (generic term)|leg (generic term)
+legacy|1
+(noun)|bequest|gift (generic term)|inheritance (generic term)|heritage (generic term)
+legal|5
+(adj)|court-ordered (similar term)|judicial (similar term)|jural (similar term)|juristic (similar term)|lawful (similar term)|legitimate (similar term)|licit (similar term)|ratified (similar term)|sanctioned (similar term)|statutory (similar term)|sub judice (similar term)|lawful (related term)|legitimate (related term)|illegal (antonym)
+(adj)|collection|aggregation|accumulation|assemblage (related term)
+(adj)|sound|effectual|valid (similar term)
+(adj)|learned profession (related term)
+(adj)|eligible (similar term)
+legal action|1
+(noun)|action|action at law|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+legal age|1
+(noun)|majority|age (generic term)|eld (generic term)|minority (antonym)
+legal assistant|1
+(noun)|paralegal|paraprofessional (generic term)
+legal brief|1
+(noun)|brief|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+legal code|1
+(noun)|code (generic term)|codification (generic term)
+legal community|1
+(noun)|legal profession|bar|profession (generic term)|community (generic term)
+legal document|1
+(noun)|legal instrument|official document|instrument|document (generic term)|written document (generic term)|papers (generic term)
+legal duty|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+legal expert|1
+(noun)|jurist|expert (generic term)
+legal fee|1
+(noun)|fee (generic term)
+legal fraud|1
+(noun)|constructive fraud|fraud (generic term)
+legal guardian|1
+(noun)|trustee|fiduciary (generic term)
+legal holiday|1
+(noun)|national holiday|public holiday|holiday (generic term)
+legal injury|1
+(noun)|wrong|damage|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+legal instrument|1
+(noun)|legal document|official document|instrument|document (generic term)|written document (generic term)|papers (generic term)
+legal jointure|1
+(noun)|jointure|estate (generic term)
+legal opinion|1
+(noun)|opinion|judgment|judgement|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+legal ouster|1
+(noun)|eviction|dispossession|due process (generic term)|due process of law (generic term)
+legal philosophy|1
+(noun)|jurisprudence|law|philosophy (generic term)
+legal power|1
+(noun)|jurisdiction|power (generic term)|powerfulness (generic term)
+legal principle|1
+(noun)|judicial principle|judicial doctrine|principle (generic term)
+legal proceeding|1
+(noun)|proceeding|proceedings|due process (generic term)|due process of law (generic term)
+legal profession|1
+(noun)|bar|legal community|profession (generic term)|community (generic term)
+legal relation|1
+(noun)|professional relation (generic term)
+legal representation|1
+(noun)|representation (generic term)|delegacy (generic term)|agency (generic term)
+legal representative|1
+(noun)|personal representative (generic term)
+legal residence|1
+(noun)|domicile|residence (generic term)|abode (generic term)
+legal right|1
+(noun)|right (generic term)
+legal separation|2
+(noun)|judicial separation|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|separation|cessation (generic term)|surcease (generic term)
+legal status|1
+(noun)|status (generic term)|position (generic term)
+legal system|1
+(noun)|system (generic term)
+legal tender|1
+(noun)|tender|medium of exchange (generic term)|monetary system (generic term)
+legal transfer|1
+(noun)|delivery|livery|conveyance (generic term)|conveyance of title (generic term)|conveyancing (generic term)|conveying (generic term)
+legalese|1
+(noun)|expressive style (generic term)|style (generic term)
+legalisation|1
+(noun)|legalization|legitimation|group action (generic term)
+legalise|1
+(verb)|legalize|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legalism|1
+(noun)|conformity (generic term)|conformism (generic term)
+legality|1
+(noun)|lawfulness (generic term)|illegality (antonym)
+legalization|1
+(noun)|legalisation|legitimation|group action (generic term)
+legalize|1
+(verb)|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legally|1
+(adv)|lawfully|de jure|unlawfully (antonym)
+legate|1
+(noun)|official emissary|emissary (generic term)|envoy (generic term)
+legatee|1
+(noun)|beneficiary (generic term)|donee (generic term)
+legateship|1
+(noun)|legation|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+legation|2
+(noun)|legateship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+(noun)|foreign mission|diplomatic mission (generic term)
+legato|2
+(adj)|smooth|staccato (antonym)
+(adv)|staccato (antonym)
+legend|2
+(noun)|fable|story (generic term)
+(noun)|caption|title (generic term)
+legendary|2
+(adj)|known (similar term)
+(adj)|fabled|unreal (similar term)
+legendary creature|1
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+leger|2
+(noun)|ledger|account book|book of account|book|record (generic term)
+(noun)|Leger|Fernand Leger|painter (generic term)
+leger line|1
+(noun)|ledger line|line (generic term)
+legerdemain|1
+(noun)|magic trick|conjuring trick|trick|magic|conjuration|thaumaturgy|illusion|deception|performance (generic term)
+legerity|1
+(noun)|agility|lightness|lightsomeness|nimbleness|gracefulness (generic term)
+legged|1
+(adj)|leglike (similar term)|straight-legged (similar term)|three-legged (similar term)|legless (antonym)
+legging|1
+(noun)|legin|leg covering|garment (generic term)
+leggy|2
+(adj)|tall-growing|tall (similar term)
+(adj)|long-legged|long-shanked|tall (similar term)
+leghorn|1
+(noun)|boater|Panama|Panama hat|sailor|skimmer|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+legibility|2
+(noun)|discernability|distinctness (generic term)|sharpness (generic term)
+(noun)|readability|comprehensibility (generic term)|understandability (generic term)|illegibility (antonym)
+legible|1
+(adj)|clean (similar term)|fair (similar term)|clear (similar term)|decipherable (similar term)|readable (similar term)|illegible (antonym)
+legibly|1
+(adv)|decipherably|readably|illegibly (antonym)
+legin|1
+(noun)|legging|leg covering|garment (generic term)
+legion|4
+(noun)|host|army (generic term)|regular army (generic term)|ground forces (generic term)
+(noun)|association (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|horde|host|multitude (generic term)|throng (generic term)|concourse (generic term)
+legionary|1
+(noun)|legionnaire|soldier (generic term)
+legionary ant|1
+(noun)|army ant|driver ant|ant (generic term)|emmet (generic term)|pismire (generic term)
+legionella|1
+(noun)|Legionella pneumophilia|bacteria (generic term)|bacterium (generic term)
+legionella pneumophilia|1
+(noun)|Legionella pneumophilia|legionella|bacteria (generic term)|bacterium (generic term)
+legionnaire|2
+(noun)|Legionnaire|veteran (generic term)|vet (generic term)|ex-serviceman (generic term)
+(noun)|legionary|soldier (generic term)
+legionnaires' disease|1
+(noun)|Legionnaires' disease|lobar pneumonia (generic term)
+legislate|1
+(verb)|pass|ordain (generic term)|enact (generic term)
+legislating|1
+(noun)|legislation|lawmaking|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+legislation|2
+(noun)|statute law|civil law (generic term)
+(noun)|legislating|lawmaking|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+legislative|3
+(adj)|assembly (related term)
+(adj)|civil law (related term)
+(noun)|legislature|legislative assembly|general assembly|law-makers|assembly (generic term)
+legislative act|1
+(noun)|statute|act (generic term)|enactment (generic term)
+legislative assembly|1
+(noun)|legislature|legislative|general assembly|law-makers|assembly (generic term)
+legislative branch|1
+(noun)|branch (generic term)|subdivision (generic term)|arm (generic term)
+legislative council|1
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+legislator|1
+(noun)|lawgiver (generic term)|lawmaker (generic term)|politician (generic term)
+legislatorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+legislature|1
+(noun)|legislative assembly|legislative|general assembly|law-makers|assembly (generic term)
+legitimacy|2
+(noun)|lawfulness (generic term)|illegitimacy (antonym)
+(noun)|authenticity|genuineness|credibility (generic term)|credibleness (generic term)|believability (generic term)
+legitimate|7
+(adj)|lawfully-begotten (similar term)|morganatic (similar term)|left-handed (similar term)|true (similar term)|lawful (similar term)|rightful (similar term)|authorized (related term)|authorised (related term)|legal (related term)|valid (related term)|illegitimate (antonym)
+(adj)|logical|valid (similar term)
+(adj)|established (similar term)|constituted (similar term)
+(adj)|lawful|licit|legal (similar term)
+(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+(verb)|justify (generic term)|vindicate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+legitimately|2
+(adv)|lawfully|licitly|illicitly (antonym)|lawlessly (antonym)|illegitimately (antonym)
+(adv)|illegitimately (antonym)
+legitimation|2
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|legalization|legalisation|group action (generic term)
+legitimatise|1
+(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatize|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legitimatize|1
+(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimise|legitimate|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legitimise|1
+(verb)|legalize|legalise|decriminalize|decriminalise|legitimize|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legitimize|1
+(verb)|legalize|legalise|decriminalize|decriminalise|legitimise|legitimate|legitimatize|legitimatise|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|criminalise (antonym)|criminalize (antonym)|outlaw (antonym)|outlaw (antonym)
+legless|1
+(adj)|legged (antonym)
+legless lizard|1
+(noun)|lizard (generic term)
+leglike|1
+(adj)|legged (similar term)
+lego|1
+(noun)|Lego|Lego set|plaything (generic term)|toy (generic term)
+lego set|1
+(noun)|Lego|Lego set|plaything (generic term)|toy (generic term)
+legs|1
+(noun)|stamina (generic term)|staying power (generic term)|toughness (generic term)
+legume|3
+(noun)|leguminous plant|herb (generic term)|herbaceous plant (generic term)
+(noun)|pod (generic term)|seedpod (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+legume family|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|pea family|rosid dicot family (generic term)
+leguminious|1
+(adj)|vegetable|veggie (related term)
+leguminosae|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|pea family|rosid dicot family (generic term)
+leguminous|1
+(adj)|herb|herbaceous plant (related term)
+leguminous plant|1
+(noun)|legume|herb (generic term)|herbaceous plant (generic term)
+lehar|1
+(noun)|Lehar|Franz Lehar|composer (generic term)
+lehigh river|1
+(noun)|Lehigh River|river (generic term)
+lei|1
+(noun)|wreath|garland|coronal|chaplet|flower arrangement (generic term)
+leibnitz|1
+(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician (generic term)|philosopher (generic term)
+leibnitzian|1
+(adj)|Leibnizian|Leibnitzian|mathematician|philosopher (related term)
+leibniz|1
+(noun)|Leibniz|Leibnitz|Gottfried Wilhelm Leibniz|Gottfried Wilhelm Leibnitz|mathematician (generic term)|philosopher (generic term)
+leibnizian|1
+(adj)|Leibnizian|Leibnitzian|mathematician|philosopher (related term)
+leicester|2
+(noun)|Leicestershire|Leicester|county (generic term)
+(noun)|Leicester|city (generic term)|metropolis (generic term)|urban center (generic term)
+leicestershire|1
+(noun)|Leicestershire|Leicester|county (generic term)
+leichtlin's camas|1
+(noun)|Leichtlin's camas|Camassia leichtlinii|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+leiden|1
+(noun)|Leiden|Leyden|city (generic term)|metropolis (generic term)|urban center (generic term)
+leiden jar|1
+(noun)|Leiden jar|Leyden jar|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+leigh|1
+(noun)|Leigh|Vivien Leigh|actress (generic term)
+leigh hunt|1
+(noun)|Hunt|Leigh Hunt|James Henry Leigh Hunt|writer (generic term)|author (generic term)
+leiomyoma|1
+(noun)|myoma (generic term)
+leiomyosarcoma|1
+(noun)|sarcoma (generic term)
+leiopelma|1
+(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus (generic term)
+leiopelmatidae|1
+(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family (generic term)
+leiophyllum|1
+(noun)|Leiophyllum|genus Leiophyllum|dilleniid dicot genus (generic term)
+leiophyllum buxifolium|1
+(noun)|sand myrtle|Leiophyllum buxifolium|shrub (generic term)|bush (generic term)
+leipoa|1
+(noun)|mallee fowl|lowan|Leipoa ocellata|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+leipoa ocellata|1
+(noun)|mallee fowl|leipoa|lowan|Leipoa ocellata|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+leipzig|1
+(noun)|Leipzig|city (generic term)|metropolis (generic term)|urban center (generic term)
+leishmania|1
+(noun)|Leishmania|genus Leishmania|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+leishmaniasis|1
+(noun)|leishmaniosis|kala azar|protozoal infection (generic term)
+leishmaniasis americana|1
+(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|nasopharyngeal leishmaniasis|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+leishmaniosis|1
+(noun)|leishmaniasis|kala azar|protozoal infection (generic term)
+leister|1
+(noun)|spear (generic term)|gig (generic term)|fizgig (generic term)|fishgig (generic term)|lance (generic term)
+leisure|2
+(noun)|leisure time|time off (generic term)
+(noun)|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+leisure time|1
+(noun)|leisure|time off (generic term)
+leisure wear|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+leisured|1
+(adj)|idle (similar term)
+leisureliness|1
+(noun)|slowness (generic term)|deliberation (generic term)|deliberateness (generic term)|unhurriedness (generic term)
+leisurely|2
+(adj)|easy|easygoing|unhurried (similar term)
+(adv)|at leisure
+leitmotif|1
+(noun)|leitmotiv|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+leitmotiv|1
+(noun)|leitmotif|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+leitneria|1
+(noun)|Leitneria|genus Leitneria|dicot genus (generic term)|magnoliopsid genus (generic term)
+leitneria floridana|1
+(noun)|corkwood|corkwood tree|Leitneria floridana|shrub (generic term)|bush (generic term)
+leitneriaceae|1
+(noun)|Leitneriaceae|family Leitneriaceae|corkwood family|dicot family (generic term)|magnoliopsid family (generic term)
+lek|1
+(noun)|Albanian monetary unit (generic term)
+lekvar|1
+(noun)|filling (generic term)
+leland stanford|1
+(noun)|Stanford|Leland Stanford|businessman (generic term)|man of affairs (generic term)
+lem|1
+(noun)|lunar excursion module|lunar module|LEM|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+lemaireocereus|1
+(noun)|Lemaireocereus|genus Lemaireocereus|caryophylloid dicot genus (generic term)
+lemaireocereus chichipe|1
+(noun)|chichipe|Lemaireocereus chichipe|cactus (generic term)
+lemaitre|1
+(noun)|Lemaitre|Georges Henri Lemaitre|Edouard Lemaitre|cosmologist (generic term)
+lemanderin|1
+(noun)|rangpur|rangpur lime|Citrus limonia|citrus (generic term)|citrus tree (generic term)
+lemma|3
+(noun)|proposition (generic term)
+(noun)|flowering glume|glume (generic term)
+(noun)|heading (generic term)|header (generic term)|head (generic term)
+lemming|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+lemmon|1
+(noun)|Lemmon|Jack Lemmon|John Uhler|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lemmus|1
+(noun)|Lemmus|genus lemmus|mammal genus (generic term)
+lemmus lemmus|1
+(noun)|European lemming|Lemmus lemmus|lemming (generic term)
+lemmus trimucronatus|1
+(noun)|brown lemming|Lemmus trimucronatus|lemming (generic term)
+lemna|1
+(noun)|Lemna|genus Lemna|monocot genus (generic term)|liliopsid genus (generic term)
+lemna minor|1
+(noun)|common duckweed|lesser duckweed|Lemna minor|duckweed (generic term)
+lemna trisulca|1
+(noun)|star-duckweed|Lemna trisulca|duckweed (generic term)
+lemnaceae|1
+(noun)|Lemnaceae|family Lemnaceae|duckweed family|monocot family (generic term)|liliopsid family (generic term)
+lemniscus|1
+(noun)|fillet|sensory nerve (generic term)|afferent nerve (generic term)|afferent (generic term)
+lemnos|1
+(noun)|Lemnos|Limnos|island (generic term)
+lemon|5
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+(noun)|gamboge|lemon yellow|maize|yellow (generic term)|yellowness (generic term)
+(noun)|lemon tree|Citrus limon|citrus (generic term)|citrus tree (generic term)
+(noun)|relish (generic term)|flavor (generic term)|flavour (generic term)|sapidity (generic term)|savor (generic term)|savour (generic term)|smack (generic term)|nip (generic term)|tang (generic term)
+(noun)|stinker|artifact (generic term)|artefact (generic term)
+lemon-scented|1
+(adj)|odorous (similar term)
+lemon-scented gum|1
+(noun)|Eucalyptus citriodora|Eucalyptus maculata citriodora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+lemon-wood|1
+(noun)|lemonwood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree (generic term)
+lemon-wood tree|1
+(noun)|lemonwood|lemon-wood|lemonwood tree|Psychotria capensis|tree (generic term)
+lemon balm|2
+(noun)|garden balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+lemon butter|1
+(noun)|Meuniere butter|butter (generic term)
+lemon cheese|1
+(noun)|lemon curd|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+lemon curd|1
+(noun)|lemon cheese|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+lemon drop|1
+(noun)|hard candy (generic term)
+lemon extract|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+lemon geranium|1
+(noun)|Pelargonium limoneum|geranium (generic term)
+lemon grass|1
+(noun)|lemongrass|lemongrass oil|oil (generic term)
+lemon grove|1
+(noun)|grove (generic term)|woodlet (generic term)|orchard (generic term)|plantation (generic term)
+lemon juice|1
+(noun)|juice (generic term)
+lemon lily|1
+(noun)|Hemerocallis lilio-asphodelus|Hemerocallis flava|day lily (generic term)|daylily (generic term)
+lemon meringue pie|1
+(noun)|pie (generic term)
+lemon mint|2
+(noun)|horsemint|Monarda citriodora|monarda (generic term)|wild bergamot (generic term)
+(noun)|bergamot mint|eau de cologne mint|Mentha citrata|mint (generic term)
+lemon oil|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+lemon peel|1
+(noun)|lemon rind|peel (generic term)|skin (generic term)
+lemon rind|1
+(noun)|lemon peel|peel (generic term)|skin (generic term)
+lemon shark|1
+(noun)|Negaprion brevirostris|requiem shark (generic term)
+lemon sole|6
+(noun)|winter flounder|flounder (generic term)
+(noun)|English sole|sole (generic term)|fillet of sole (generic term)
+(noun)|English sole|Parophrys vitulus|sole (generic term)
+(noun)|Solea lascaris|sole (generic term)
+(noun)|Microstomus kitt|righteye flounder (generic term)|righteyed flounder (generic term)
+(noun)|winter flounder|blackback flounder|Pseudopleuronectes americanus|righteye flounder (generic term)|righteyed flounder (generic term)
+lemon sumac|1
+(noun)|fragrant sumac|Rhus aromatica|sumac (generic term)|sumach (generic term)|shumac (generic term)
+lemon tree|1
+(noun)|lemon|Citrus limon|citrus (generic term)|citrus tree (generic term)
+lemon yellow|1
+(noun)|gamboge|lemon|maize|yellow (generic term)|yellowness (generic term)
+lemon zest|1
+(noun)|lemon peel (generic term)|lemon rind (generic term)
+lemonade|1
+(noun)|fruit drink (generic term)|ade (generic term)
+lemonade mix|1
+(noun)|ready-mix (generic term)
+lemongrass|1
+(noun)|lemon grass|lemongrass oil|oil (generic term)
+lemongrass oil|1
+(noun)|lemongrass|lemon grass|oil (generic term)
+lemonlike|1
+(adj)|lemony|sourish|tangy|tart|sour (similar term)
+lemonwood|2
+(noun)|wood (generic term)
+(noun)|lemon-wood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree (generic term)
+lemonwood tree|2
+(noun)|lemonwood|lemon-wood|lemon-wood tree|Psychotria capensis|tree (generic term)
+(noun)|dagame|Calycophyllum candidissimum|tree (generic term)
+lemony|1
+(adj)|lemonlike|sourish|tangy|tart|sour (similar term)
+lempira|1
+(noun)|Honduran monetary unit (generic term)
+lemur|1
+(noun)|primate (generic term)
+lemur catta|1
+(noun)|Madagascar cat|ring-tailed lemur|Lemur catta|lemur (generic term)
+lemuridae|1
+(noun)|Lemuridae|family Lemuridae|mammal family (generic term)
+lemuroidea|1
+(noun)|Lemuroidea|suborder Lemuroidea|animal order (generic term)
+lena|1
+(noun)|Lena|Lena River|river (generic term)
+lena calhoun horne|1
+(noun)|Horne|Lena Horne|Lena Calhoun Horne|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+lena horne|1
+(noun)|Horne|Lena Horne|Lena Calhoun Horne|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+lena river|1
+(noun)|Lena|Lena River|river (generic term)
+lenard|1
+(noun)|Lenard|Philipp Lenard|physicist (generic term)
+lend|3
+(verb)|impart|bestow|contribute|add|bring|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|loan|give (generic term)|borrow (antonym)
+(verb)|be (generic term)
+lend-lease|1
+(noun)|lease-lend|transfer (generic term)|transference (generic term)
+lend oneself|1
+(verb)|apply|defy (antonym)
+lendable|1
+(adj)|available (similar term)
+lender|1
+(noun)|loaner|investor (generic term)|borrower (antonym)
+lending|1
+(noun)|loaning|disposal (generic term)|disposition (generic term)
+lending institution|1
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+lending library|1
+(noun)|circulating library|library (generic term)|depository library (generic term)
+lendl|1
+(noun)|Lendl|Ivan Lendl|tennis player (generic term)
+length|5
+(noun)|fundamental quantity (generic term)|fundamental measure (generic term)|physical property (generic term)|dimension (generic term)
+(noun)|duration|temporal property (generic term)
+(noun)|extent (generic term)
+(noun)|distance|size (generic term)
+(noun)|section (generic term)|segment (generic term)
+length of service|1
+(noun)|longevity|longness (generic term)
+lengthen|2
+(verb)|increase (generic term)|shorten (antonym)
+(verb)|grow (generic term)|shorten (antonym)
+lengthened|1
+(adj)|elongated|extended|prolonged|long (similar term)
+lengthening|1
+(noun)|prolongation|protraction|perpetuation|continuance (generic term)|continuation (generic term)
+lengthily|1
+(adv)|at length
+lengthiness|2
+(noun)|extension|prolongation|longness (generic term)
+(noun)|prolongation|continuation|protraction|duration (generic term)|length (generic term)
+lengthways|2
+(adj)|lengthwise|axial (similar term)|end-to-end (similar term)|fore-and-aft (similar term)|linear (similar term)|running (similar term)|longitudinal (similar term)|crosswise (antonym)
+(adv)|lengthwise|longwise|longways|longitudinally
+lengthwise|2
+(adj)|lengthways|axial (similar term)|end-to-end (similar term)|fore-and-aft (similar term)|linear (similar term)|running (similar term)|longitudinal (similar term)|crosswise (antonym)
+(adv)|lengthways|longwise|longways|longitudinally
+lengthy|1
+(adj)|drawn-out|extended|prolonged|protracted|long (similar term)
+lenience|3
+(noun)|leniency|mildness|lenity|mercifulness (generic term)|mercy (generic term)
+(noun)|indulgence|leniency|permissiveness (generic term)|tolerance (generic term)
+(noun)|leniency|tolerance (generic term)
+leniency|3
+(noun)|lenience|mildness|lenity|mercifulness (generic term)|mercy (generic term)
+(noun)|indulgence|lenience|permissiveness (generic term)|tolerance (generic term)
+(noun)|lenience|tolerance (generic term)
+lenient|3
+(adj)|indulgent|soft|permissive (similar term)
+(adj)|easy|undemanding (similar term)
+(adj)|clement (similar term)
+leniently|1
+(adv)|laxly
+lenify|1
+(verb)|pacify|conciliate|assuage|appease|mollify|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+lenin|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+leningrad|1
+(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+leninism|1
+(noun)|Leninism|Marxism-Leninism|communism (generic term)
+lenitive|2
+(adj)|alleviative|alleviatory|mitigative|mitigatory|palliative|moderating (similar term)
+(noun)|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+lenity|1
+(noun)|lenience|leniency|mildness|mercifulness (generic term)|mercy (generic term)
+lennoaceae|1
+(noun)|Lennoaceae|family Lennoaceae|dilleniid dicot family (generic term)
+lennon|1
+(noun)|Lennon|John Lennon|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+lennox robinson|1
+(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist (generic term)|playwright (generic term)
+lens|5
+(noun)|lense|lens system|optical device (generic term)
+(noun)|Lens|genus Lens|rosid dicot genus (generic term)
+(noun)|channel (generic term)|communication channel (generic term)|line (generic term)
+(noun)|crystalline lens|organ (generic term)
+(noun)|electron lens|electronic equipment (generic term)
+lens cap|1
+(noun)|lens cover|cap (generic term)
+lens capsule|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+lens cover|1
+(noun)|lens cap|cap (generic term)
+lens culinaris|1
+(noun)|lentil|lentil plant|Lens culinaris|legume (generic term)|leguminous plant (generic term)
+lens implant|1
+(noun)|implant (generic term)
+lens maker|1
+(noun)|optician|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+lens system|1
+(noun)|lens|lense|optical device (generic term)
+lense|1
+(noun)|lens|lens system|optical device (generic term)
+lensman|1
+(noun)|photographer|artist (generic term)|creative person (generic term)
+lent|1
+(noun)|Lent|Lententide|season (generic term)
+lent lily|1
+(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily (generic term)
+lente iletin|1
+(noun)|Lente Insulin|Lente Iletin|insulin (generic term)
+lente insulin|1
+(noun)|Lente Insulin|Lente Iletin|insulin (generic term)
+lenten|1
+(adj)|season (related term)
+lenten rose|1
+(noun)|black hellebore|Helleborus orientalis|hellebore (generic term)
+lententide|1
+(noun)|Lent|Lententide|season (generic term)
+lentia|1
+(noun)|Linz|Lentia|city (generic term)|metropolis (generic term)|urban center (generic term)
+lentibulariaceae|1
+(noun)|Lentibulariaceae|family Lentibulariaceae|bladderwort family|plant family (generic term)
+lentic|1
+(adj)|lotic (antonym)
+lenticel|1
+(noun)|stoma (generic term)|stomate (generic term)|pore (generic term)
+lenticular|1
+(adj)|biconvex|convexo-convex|lentiform|convex (similar term)|bulging (similar term)
+lenticular nucleus|1
+(noun)|lentiform nucleus|basal ganglion (generic term)
+lentiform|1
+(adj)|biconvex|convexo-convex|lenticular|convex (similar term)|bulging (similar term)
+lentiform nucleus|1
+(noun)|lenticular nucleus|basal ganglion (generic term)
+lentiginose|1
+(adj)|freckled|lentiginous|patterned (similar term)
+lentiginous|1
+(adj)|freckled|lentiginose|patterned (similar term)
+lentigo|1
+(noun)|freckle|macule (generic term)|macula (generic term)
+lentil|2
+(noun)|legume (generic term)
+(noun)|lentil plant|Lens culinaris|legume (generic term)|leguminous plant (generic term)
+lentil plant|1
+(noun)|lentil|Lens culinaris|legume (generic term)|leguminous plant (generic term)
+lentil soup|1
+(noun)|soup (generic term)
+lentinus|1
+(noun)|Lentinus|genus Lentinus|fungus genus (generic term)
+lentinus edodes|1
+(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+lentinus lepideus|1
+(noun)|scaly lentinus|Lentinus lepideus|fungus (generic term)
+lentisk|1
+(noun)|mastic|mastic tree|Pistacia lentiscus|shrub (generic term)|bush (generic term)
+lentissimo|1
+(adj)|slow (similar term)
+lento|2
+(adj)|slow (similar term)
+(adv)|slowly
+leo|3
+(noun)|Leo|Lion|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Leo|constellation (generic term)
+(noun)|Leo|Leo the Lion|Lion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+leo delibes|1
+(noun)|Delibes|Leo Delibes|Clement Philibert Leo Delibes|composer (generic term)
+leo esaki|1
+(noun)|Esaki|Leo Esaki|physicist (generic term)
+leo i|1
+(noun)|Leo I|St. Leo I|Leo the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)
+leo iii|1
+(noun)|Leo III|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+leo ix|1
+(noun)|Leo IX|Bruno|Bruno of Toul|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+leo szilard|1
+(noun)|Szilard|Leo Szilard|nuclear physicist (generic term)|molecular biologist (generic term)
+leo the great|1
+(noun)|Leo I|St. Leo I|Leo the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)
+leo the lion|1
+(noun)|Leo|Leo the Lion|Lion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+leo tolstoy|1
+(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer (generic term)|author (generic term)
+leo x|1
+(noun)|Leo X|Giovanni de'Medici|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+leo xiii|1
+(noun)|Leo XIII|Gioacchino Pecci|Giovanni Vincenzo Pecci|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+leon|2
+(noun)|Leon|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Leon|city (generic term)|metropolis (generic term)|urban center (generic term)
+leon battista alberti|1
+(noun)|Alberti|Leon Battista Alberti|architect (generic term)|designer (generic term)|painter (generic term)
+leon trotsky|1
+(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik (generic term)|Bolshevist (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+leonard|1
+(noun)|Leonard|Elmore Leonard|Elmore John Leonard|Dutch Leonard|writer (generic term)|author (generic term)
+leonard bernstein|1
+(noun)|Bernstein|Leonard Bernstein|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+leonard bloomfield|1
+(noun)|Bloomfield|Leonard Bloomfield|linguist (generic term)|linguistic scientist (generic term)
+leonard constant lambert|1
+(noun)|Lambert|Constant Lambert|Leonard Constant Lambert|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+leonard marx|1
+(noun)|Marx|Leonard Marx|Chico|comedian (generic term)|comic (generic term)
+leonardesque|1
+(adj)|Leonardesque|old master|sculptor|sculpturer|carver|statue maker|engineer|applied scientist|technologist|architect|designer (related term)
+leonardo|1
+(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|architect (generic term)|designer (generic term)
+leonardo da vinci|1
+(noun)|Leonardo|Leonardo da Vinci|da Vinci|old master (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|architect (generic term)|designer (generic term)
+leonberg|1
+(noun)|Leonberg|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+leoncita|1
+(noun)|tamarin|lion monkey|lion marmoset|marmoset (generic term)
+leone|1
+(noun)|Sierra Leone monetary unit (generic term)
+leonhard euler|1
+(noun)|Euler|Leonhard Euler|mathematician (generic term)
+leonid brezhnev|1
+(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman (generic term)|solon (generic term)|national leader (generic term)
+leonid fyodorovich myasin|1
+(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+leonid ilyich brezhnev|1
+(noun)|Brezhnev|Leonid Brezhnev|Leonid Ilyich Brezhnev|statesman (generic term)|solon (generic term)|national leader (generic term)
+leonidas|1
+(noun)|Leonidas|king (generic term)|male monarch (generic term)|Rex (generic term)
+leonide fedorovitch massine|1
+(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+leonine|1
+(adj)|big cat|cat (related term)
+leonotis|1
+(noun)|Leonotis|genus Leonotis|asterid dicot genus (generic term)
+leonotis leonurus|1
+(noun)|dagga|Cape dagga|red dagga|wilde dagga|Leonotis leonurus|herb (generic term)|herbaceous plant (generic term)
+leonotis nepetaefolia|1
+(noun)|lion's-ear|Leonotis nepetaefolia|Leonotis nepetifolia|herb (generic term)|herbaceous plant (generic term)
+leonotis nepetifolia|1
+(noun)|lion's-ear|Leonotis nepetaefolia|Leonotis nepetifolia|herb (generic term)|herbaceous plant (generic term)
+leontief|1
+(noun)|Leontief|Wassily Leontief|economist (generic term)|economic expert (generic term)
+leontocebus|1
+(noun)|Leontocebus|genus Leontocebus|genus Leontideus|mammal genus (generic term)
+leontocebus oedipus|1
+(noun)|pinche|Leontocebus oedipus|tamarin (generic term)|lion monkey (generic term)|lion marmoset (generic term)|leoncita (generic term)
+leontocebus rosalia|1
+(noun)|silky tamarin|Leontocebus rosalia|tamarin (generic term)|lion monkey (generic term)|lion marmoset (generic term)|leoncita (generic term)
+leontodon|1
+(noun)|Leontodon|genus Leontodon|asterid dicot genus (generic term)
+leontodon autumnalis|1
+(noun)|fall dandelion|arnica bud|Leontodon autumnalis|hawkbit (generic term)
+leontopodium|1
+(noun)|Leontopodium|genus Leontopodium|asterid dicot genus (generic term)
+leontopodium alpinum|1
+(noun)|edelweiss|Leontopodium alpinum|wildflower (generic term)|wild flower (generic term)
+leontyne price|1
+(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano (generic term)
+leonurus|1
+(noun)|Leonurus|genus Leonurus|asterid dicot genus (generic term)
+leonurus cardiaca|1
+(noun)|motherwort|Leonurus cardiaca|herb (generic term)|herbaceous plant (generic term)
+leopard|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|Panthera pardus|big cat (generic term)|cat (generic term)
+leopard's-bane|1
+(noun)|leopardbane|herb (generic term)|herbaceous plant (generic term)
+leopard cat|1
+(noun)|Felis bengalensis|wildcat (generic term)
+leopard frog|1
+(noun)|spring frog|Rana pipiens|true frog (generic term)|ranid (generic term)
+leopard lily|3
+(noun)|panther lily|Lilium pardalinum|lily (generic term)
+(noun)|tiger lily|pine lily|Lilium catesbaei|lily (generic term)
+(noun)|blackberry-lily|Belamcanda chinensis|iridaceous plant (generic term)
+leopard lizard|1
+(noun)|iguanid (generic term)|iguanid lizard (generic term)
+leopard plant|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+leopardbane|1
+(noun)|leopard's-bane|herb (generic term)|herbaceous plant (generic term)
+leopardess|1
+(noun)|leopard (generic term)|Panthera pardus (generic term)
+leopold antoni stanislaw stokowski|1
+(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor (generic term)|music director (generic term)|director (generic term)
+leopold kronecker|1
+(noun)|Kronecker|Leopold Kronecker|mathematician (generic term)
+leopold stokowski|1
+(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor (generic term)|music director (generic term)|director (generic term)
+leopoldville|1
+(noun)|Kinshasa|Leopoldville|national capital (generic term)
+leotard|1
+(noun)|unitard|body suit|cat suit|garment (generic term)
+leotards|1
+(noun)|tights|hosiery (generic term)|hose (generic term)
+leotia lubrica|1
+(noun)|Leotia lubrica|discomycete (generic term)|cup fungus (generic term)
+lepadidae|1
+(noun)|Lepadidae|family Lepadidae|arthropod family (generic term)
+lepanto|1
+(noun)|Lepanto|Battle of Lepanto|naval battle (generic term)
+lepas|1
+(noun)|Lepas|genus Lepas|arthropod genus (generic term)
+lepas fascicularis|1
+(noun)|goose barnacle|gooseneck barnacle|Lepas fascicularis|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+lepechinia|1
+(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus (generic term)
+lepechinia calycina|1
+(noun)|pitcher sage|Lepechinia calycina|Sphacele calycina|shrub (generic term)|bush (generic term)
+leper|2
+(noun)|lazar|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(noun)|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+leper lily|1
+(noun)|snake's head fritillary|guinea-hen flower|checkered daffodil|Fritillaria meleagris|fritillary (generic term)|checkered lily (generic term)
+lepidium|1
+(noun)|Lepidium|genus Lepidium|dilleniid dicot genus (generic term)
+lepidium alpina|1
+(noun)|chamois cress|Pritzelago alpina|Lepidium alpina|herb (generic term)|herbaceous plant (generic term)
+lepidium sativum|1
+(noun)|common garden cress|garden pepper cress|pepper grass|pepperwort|Lepidium sativum|cress (generic term)|cress plant (generic term)
+lepidobotryaceae|1
+(noun)|Lepidobotryaceae|family Lepidobotryaceae|rosid dicot family (generic term)
+lepidobotrys|1
+(noun)|tree (generic term)
+lepidochelys|1
+(noun)|Lepidochelys|genus Lepidochelys|reptile genus (generic term)
+lepidochelys kempii|1
+(noun)|Atlantic ridley|bastard ridley|bastard turtle|Lepidochelys kempii|ridley (generic term)
+lepidochelys olivacea|1
+(noun)|Pacific ridley|olive ridley|Lepidochelys olivacea|ridley (generic term)
+lepidocrocite|1
+(noun)|iron ore (generic term)
+lepidocybium|1
+(noun)|Lepidocybium|genus Lepidocybium|fish genus (generic term)
+lepidocybium flavobrunneum|1
+(noun)|escolar|Lepidocybium flavobrunneum|gempylid (generic term)
+lepidodendraceae|1
+(noun)|Lepidodendraceae|family Lepidodendraceae|fern family (generic term)
+lepidodendrales|1
+(noun)|Lepidodendrales|order Lepidodendrales|plant order (generic term)
+lepidolite|1
+(noun)|mica (generic term)|isinglass (generic term)
+lepidomelane|1
+(noun)|biotite (generic term)
+lepidophobia|1
+(noun)|zoophobia (generic term)
+lepidoptera|1
+(noun)|Lepidoptera|order Lepidoptera|animal order (generic term)
+lepidopteran|1
+(noun)|lepidopterous insect|lepidopteron|insect (generic term)
+lepidopterist|1
+(noun)|lepidopterologist|butterfly collector|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+lepidopterologist|1
+(noun)|lepidopterist|butterfly collector|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+lepidopterology|1
+(noun)|lepidoptery|entomology (generic term)|bugology (generic term)
+lepidopteron|1
+(noun)|lepidopterous insect|lepidopteran|insect (generic term)
+lepidopterous insect|1
+(noun)|lepidopteron|lepidopteran|insect (generic term)
+lepidoptery|1
+(noun)|lepidopterology|entomology (generic term)|bugology (generic term)
+lepidosauria|1
+(noun)|Lepidosauria|subclass Lepidosauria|class (generic term)
+lepidote|1
+(adj)|leprose|scabrous|scaly|scurfy|rough (similar term)|unsmooth (similar term)
+lepidothamnus|1
+(noun)|Lepidothamnus|genus Lepidothamnus|gymnosperm genus (generic term)
+lepidothamnus fonkii|1
+(noun)|Chilean rimu|Lepidothamnus fonkii|shrub (generic term)|bush (generic term)
+lepidothamnus laxifolius|1
+(noun)|mountain rimu|Lepidothamnus laxifolius|Dacridium laxifolius|shrub (generic term)|bush (generic term)
+lepiota|1
+(noun)|agaric (generic term)
+lepiota americana|1
+(noun)|American parasol|Lepiota americana|lepiota (generic term)
+lepiota cepaestipes|1
+(noun)|onion stem|Lepiota cepaestipes|lepiota (generic term)
+lepiota clypeolaria|1
+(noun)|Lepiota clypeolaria|lepiota (generic term)
+lepiota morgani|1
+(noun)|poisonous parasol|Lepiota morgani|lepiota (generic term)
+lepiota naucina|1
+(noun)|Lepiota naucina|lepiota (generic term)
+lepiota procera|1
+(noun)|parasol mushroom|Lepiota procera|agaric (generic term)
+lepiota rhacodes|1
+(noun)|Lepiota rhacodes|lepiota (generic term)
+lepiota rubrotincta|1
+(noun)|Lepiota rubrotincta|lepiota (generic term)
+lepiotaceae|1
+(noun)|Lepiotaceae|family Lepiotaceae|fungus family (generic term)
+lepisma|1
+(noun)|Lepisma|genus Lepisma|arthropod genus (generic term)
+lepisma saccharina|1
+(noun)|silverfish|Lepisma saccharina|thysanuran insect (generic term)|thysanuron (generic term)
+lepismatidae|1
+(noun)|Lepismatidae|family Lepismatidae|arthropod family (generic term)
+lepisosteidae|1
+(noun)|Lepisosteidae|family Lepisosteidae|fish family (generic term)
+lepisosteus|1
+(noun)|Lepisosteus|genus Lepisosteus|fish genus (generic term)
+lepisosteus osseus|1
+(noun)|gar|garfish|garpike|billfish|Lepisosteus osseus|ganoid (generic term)|ganoid fish (generic term)
+lepista irina|1
+(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric (generic term)
+lepomis|1
+(noun)|Lepomis|genus Lepomis|fish genus (generic term)
+lepomis gibbosus|1
+(noun)|pumpkinseed|Lepomis gibbosus|sunfish (generic term)|centrarchid (generic term)
+lepomis macrochirus|1
+(noun)|bluegill|Lepomis macrochirus|freshwater bream (generic term)|bream (generic term)
+lepomis punctatus|1
+(noun)|spotted sunfish|stumpknocker|Lepomis punctatus|freshwater bream (generic term)|bream (generic term)
+leporid|1
+(noun)|leporid mammal|lagomorph (generic term)|gnawing mammal (generic term)
+leporid mammal|1
+(noun)|leporid|lagomorph (generic term)|gnawing mammal (generic term)
+leporidae|1
+(noun)|Leporidae|family Leporidae|mammal family (generic term)
+leporide|1
+(noun)|Belgian hare|rabbit (generic term)|coney (generic term)|cony (generic term)
+leppy|1
+(noun)|dogie|dogy|calf (generic term)
+leprechaun|1
+(noun)|elf (generic term)|hob (generic term)|gremlin (generic term)|pixie (generic term)|pixy (generic term)|brownie (generic term)|imp (generic term)
+lepromatous leprosy|1
+(noun)|leprosy (generic term)|Hansen's disease (generic term)
+leprose|1
+(adj)|lepidote|scabrous|scaly|scurfy|rough (similar term)|unsmooth (similar term)
+leprosy|1
+(noun)|Hansen's disease|infectious disease (generic term)
+leprosy bacillus|1
+(noun)|Mycobacterium leprae|mycobacteria (generic term)|mycobacterium (generic term)
+leprous|1
+(adj)|infectious disease (related term)
+leptarrhena|1
+(noun)|Leptarrhena|genus Leptarrhena|rosid dicot genus (generic term)
+leptarrhena pyrolifolia|1
+(noun)|leatherleaf saxifrage|Leptarrhena pyrolifolia|wildflower (generic term)|wild flower (generic term)
+leptinotarsa|1
+(noun)|Leptinotarsa|genus Leptinotarsa|arthropod genus (generic term)
+leptinotarsa decemlineata|1
+(noun)|Colorado potato beetle|Colorado beetle|potato bug|potato beetle|Leptinotarsa decemlineata|leaf beetle (generic term)|chrysomelid (generic term)
+leptocephalus|1
+(noun)|larva (generic term)
+leptodactylid|1
+(noun)|leptodactylid frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+leptodactylid frog|1
+(noun)|leptodactylid|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+leptodactylidae|1
+(noun)|Leptodactylidae|family Leptodactylidae|amphibian family (generic term)
+leptodactylus|1
+(noun)|Leptodactylus|genus Leptodactylus|amphibian genus (generic term)
+leptodactylus pentadactylus|1
+(noun)|crapaud|South American bullfrog|Leptodactylus pentadactylus|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+leptoglossus|1
+(noun)|Leptoglossus|genus Leptoglossus|arthropod genus (generic term)
+leptomeninges|1
+(noun)|meninx (generic term)|meninges (generic term)
+leptomeningitis|1
+(noun)|meningitis (generic term)
+lepton|2
+(noun)|Greek monetary unit (generic term)
+(noun)|elementary particle (generic term)|fundamental particle (generic term)|fermion (generic term)
+leptopteris|1
+(noun)|Leptopteris|genus Leptopteris|fern genus (generic term)
+leptopteris superba|1
+(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern (generic term)
+leptoptilus|1
+(noun)|Leptoptilus|genus Leptoptilus|bird genus (generic term)
+leptoptilus crumeniferus|1
+(noun)|marabou|marabout|marabou stork|Leptoptilus crumeniferus|stork (generic term)
+leptoptilus dubius|1
+(noun)|adjutant bird|adjutant|adjutant stork|Leptoptilus dubius|stork (generic term)
+leptorhine|1
+(adj)|leptorrhine|leptorrhinian|leptorrhinic|catarrhine (antonym)|platyrrhine (antonym)
+leptorrhine|1
+(adj)|leptorhine|leptorrhinian|leptorrhinic|catarrhine (antonym)|platyrrhine (antonym)
+leptorrhinian|1
+(adj)|leptorrhine|leptorhine|leptorrhinic|catarrhine (antonym)|platyrrhine (antonym)
+leptorrhinic|1
+(adj)|leptorrhine|leptorhine|leptorrhinian|catarrhine (antonym)|platyrrhine (antonym)
+leptospira|1
+(noun)|spirochete (generic term)|spirochaete (generic term)
+leptospirosis|1
+(noun)|swamp fever|zoonosis (generic term)|zoonotic disease (generic term)
+leptosporangiate|1
+(adj)|eusporangiate (antonym)
+leptosporangium|1
+(noun)|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+leptotene|1
+(noun)|phase (generic term)|stage (generic term)
+leptotyphlopidae|1
+(noun)|Leptotyphlopidae|family Leptotyphlopidae|reptile family (generic term)
+leptotyphlops|1
+(noun)|Leptotyphlops|genus Leptotyphlops|reptile genus (generic term)
+leptotyphlops humilis|1
+(noun)|western blind snake|Leptotyphlops humilis|blind snake (generic term)|worm snake (generic term)
+lepus|2
+(noun)|Lepus|constellation (generic term)
+(noun)|Lepus|genus Lepus|mammal genus (generic term)
+lepus americanus|1
+(noun)|snowshoe hare|snowshoe rabbit|varying hare|Lepus americanus|hare (generic term)
+lepus arcticus|1
+(noun)|polar hare|Arctic hare|Lepus arcticus|hare (generic term)
+lepus californicus|1
+(noun)|blacktail jackrabbit|Lepus californicus|jackrabbit (generic term)
+lepus europaeus|1
+(noun)|European hare|Lepus europaeus|hare (generic term)
+lepus townsendi|1
+(noun)|white-tailed jackrabbit|whitetail jackrabbit|Lepus townsendi|jackrabbit (generic term)
+ler|1
+(noun)|Lir|Ler|Celtic deity (generic term)
+leresis|1
+(noun)|garrulity (generic term)|garrulousness (generic term)|loquaciousness (generic term)|loquacity (generic term)|talkativeness (generic term)
+lermontov|1
+(noun)|Lermontov|Mikhail Yurievich Lermontov|writer (generic term)|author (generic term)
+lerner|1
+(noun)|Lerner|Alan Jay Lerner|lyricist (generic term)|lyrist (generic term)
+leroi jones|1
+(noun)|Baraka|Imamu Amiri Baraka|LeRoi Jones|writer (generic term)|author (generic term)
+lerot|1
+(noun)|dormouse (generic term)
+leroy robert paige|1
+(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer (generic term)|baseball player (generic term)
+lesbian|3
+(adj)|sapphic|homosexual (similar term)
+(noun)|tribade|gay woman|homosexual (generic term)|homophile (generic term)|homo (generic term)|gay (generic term)
+(noun)|Lesbian|Greek (generic term)|Hellene (generic term)
+lesbianism|1
+(noun)|sapphism|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)
+lesbos|1
+(noun)|Lesbos|Lesvos|Mytilene|Aegean island (generic term)
+lescol|1
+(noun)|fluvastatin|Lescol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+lese majesty|1
+(noun)|treason|high treason|crime (generic term)|law-breaking (generic term)
+lesion|2
+(noun)|pathology (generic term)
+(noun)|wound|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+leslie howard|1
+(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+leslie howard stainer|1
+(noun)|Howard|Leslie Howard|Leslie Howard Stainer|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+leslie richard groves|1
+(noun)|Groves|Leslie Richard Groves|general (generic term)|full general (generic term)
+leslie townes hope|1
+(noun)|Hope|Bob Hope|Leslie Townes Hope|comedian (generic term)|comic (generic term)
+lesotho|1
+(noun)|Lesotho|Kingdom of Lesotho|Basutoland|African country (generic term)|African nation (generic term)
+lesotho monetary unit|1
+(noun)|Lesotho monetary unit|monetary unit (generic term)
+lespedeza|1
+(noun)|bush clover|woody plant (generic term)|ligneous plant (generic term)
+lespedeza bicolor|1
+(noun)|bicolor lespediza|ezo-yama-hagi|Lespedeza bicolor|bush clover (generic term)|lespedeza (generic term)
+lespedeza cuneata|1
+(noun)|sericea lespedeza|Lespedeza sericea|Lespedeza cuneata|bush clover (generic term)|lespedeza (generic term)
+lespedeza sericea|1
+(noun)|sericea lespedeza|Lespedeza sericea|Lespedeza cuneata|bush clover (generic term)|lespedeza (generic term)
+lespedeza stipulacea|1
+(noun)|Korean lespedeza|Lespedeza stipulacea|bush clover (generic term)|lespedeza (generic term)
+lespedeza striata|1
+(noun)|japanese clover|japan clover|jap clover|Lespedeza striata|bush clover (generic term)|lespedeza (generic term)
+lesquerella|1
+(noun)|Lesquerella|genus Lesquerella|dilleniid dicot genus (generic term)
+less|5
+(adj)|little (related term)|more (antonym)
+(adj)|inferior (similar term)
+(adj)|fewer (similar term)
+(adv)|to a lesser extent|more (antonym)
+(adv)|more (antonym)
+less-traveled|1
+(adj)|unpopular (similar term)
+less than|1
+(adv)|to a lesser degree|more than (antonym)
+lessee|1
+(noun)|leaseholder|tenant (generic term)|renter (generic term)
+lessen|3
+(verb)|decrease|diminish|fall|change magnitude (generic term)|increase (antonym)
+(verb)|decrease|minify|change (generic term)|alter (generic term)|modify (generic term)|increase (antonym)
+(verb)|subside|weaken (generic term)
+lessened|2
+(adj)|diminished|vitiated|weakened|impaired (similar term)
+(adj)|mitigated (similar term)
+lessening|1
+(noun)|decrease|drop-off|change (generic term)|alteration (generic term)|modification (generic term)|increase (antonym)
+lesseps|1
+(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat (generic term)|diplomatist (generic term)
+lesser|2
+(adj)|greater (antonym)
+(adj)|small (similar term)|little (similar term)
+lesser anteater|1
+(noun)|tamandua|tamandu|Tamandua tetradactyla|anteater (generic term)|New World anteater (generic term)
+lesser antilles|1
+(noun)|Lesser Antilles|Caribees|archipelago (generic term)
+lesser ape|1
+(noun)|anthropoid ape (generic term)
+lesser bullrush|1
+(noun)|narrow-leaf cattail|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail (generic term)
+lesser burdock|1
+(noun)|common burdock|Arctium minus|burdock (generic term)|clotbur (generic term)
+lesser butterfly orchid|1
+(noun)|Platanthera bifolia|Habenaria bifolia|orchid (generic term)|orchidaceous plant (generic term)
+lesser calamint|1
+(noun)|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+lesser celandine|1
+(noun)|pilewort|Ranunculus ficaria|flower (generic term)
+lesser centaury|1
+(noun)|Centaurium minus|centaury (generic term)
+lesser duckweed|1
+(noun)|common duckweed|Lemna minor|duckweed (generic term)
+lesser galangal|1
+(noun)|Alpinia officinarum|Alpinia officinalis|ginger (generic term)
+lesser hemlock|1
+(noun)|fool's parsley|Aethusa cynapium|poisonous plant (generic term)
+lesser knapweed|1
+(noun)|black knapweed|hardheads|Centaurea nigra|knapweed (generic term)
+lesser kudu|1
+(noun)|Tragelaphus imberbis|kudu (generic term)|koodoo (generic term)|koudou (generic term)
+lesser omentum|1
+(noun)|omentum (generic term)
+lesser panda|1
+(noun)|red panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid (generic term)
+lesser peritoneal cavity|1
+(noun)|bursa omentalis|omental bursa|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+lesser prairie chicken|1
+(noun)|Tympanuchus pallidicinctus|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+lesser rhomboid muscle|1
+(noun)|rhomboid minor muscle|musculus rhomboideus minor|rhomboid (generic term)|rhomboid muscle (generic term)
+lesser rorqual|1
+(noun)|piked whale|minke whale|Balaenoptera acutorostrata|rorqual (generic term)|razorback (generic term)
+lesser scaup|1
+(noun)|lesser scaup duck|lake duck|Aythya affinis|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+lesser scaup duck|1
+(noun)|lesser scaup|lake duck|Aythya affinis|scaup (generic term)|scaup duck (generic term)|bluebill (generic term)|broadbill (generic term)
+lesser spearwort|1
+(noun)|Ranunculus flammula|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+lesser sunda islands|1
+(noun)|Lesser Sunda Islands|Nusa Tenggara|archipelago (generic term)
+lesser twayblade|1
+(noun)|Listera cordata|orchid (generic term)|orchidaceous plant (generic term)
+lesser whitethroat|1
+(noun)|whitethroat|Sylvia curruca|warbler (generic term)
+lesser wintergreen|1
+(noun)|Pyrola minor|wintergreen (generic term)|pyrola (generic term)
+lesser yellow trefoil|1
+(noun)|hop clover|shamrock|Trifolium dubium|clover (generic term)|trefoil (generic term)
+lesser yellowlegs|1
+(noun)|Tringa flavipes|yellowlegs (generic term)
+lessing|2
+(noun)|Lessing|Gotthold Ephraim Lessing|dramatist (generic term)|playwright (generic term)
+(noun)|Lessing|Doris Lessing|Doris May Lessing|writer (generic term)|author (generic term)
+lesson|4
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+(noun)|example|deterrent example|object lesson|admonition (generic term)|monition (generic term)|warning (generic term)|word of advice (generic term)
+(noun)|moral|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|school assignment (generic term)|schoolwork (generic term)
+lessor|1
+(noun)|lease giver|owner (generic term)|proprietor (generic term)
+lester willis young|1
+(noun)|Young|Pres Young|Lester Willis Young|saxophonist (generic term)|saxist (generic term)
+lesvos|1
+(noun)|Lesbos|Lesvos|Mytilene|Aegean island (generic term)
+let|8
+(noun)|Lashkar-e-Taiba|Lashkar-e-Toiba|Lashkar-e-Tayyiba|LET|Army of the Pure|Army of the Righteous|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|net ball|serve (generic term)|service (generic term)
+(verb)|allow|permit|prevent (antonym)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|permit|allow|countenance|accept (generic term)|consent (generic term)|go for (generic term)|disallow (antonym)|forbid (antonym)
+(verb)|get|have|make (generic term)|get (generic term)
+(verb)|leave (generic term)|leave alone (generic term)|leave behind (generic term)
+(verb)|lease|rent|give (generic term)|rent out (related term)
+let alone|1
+(adv)|not to mention
+let down|2
+(verb)|lower|take down|get down|bring down|move (generic term)|displace (generic term)|raise (antonym)
+(verb)|disappoint|thwart (generic term)|queer (generic term)|spoil (generic term)|scotch (generic term)|foil (generic term)|cross (generic term)|frustrate (generic term)|baffle (generic term)|bilk (generic term)
+let drive|1
+(verb)|loose off|let fly|fire (generic term)|discharge (generic term)
+let fly|1
+(verb)|loose off|let drive|fire (generic term)|discharge (generic term)
+let go|2
+(verb)|let go of|release|relinquish|hold (antonym)
+(verb)|be (generic term)
+let go of|1
+(verb)|let go|release|relinquish|hold (antonym)
+let in|2
+(verb)|admit|include|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|exclude (antonym)
+(verb)|admit|allow in|intromit|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)|reject (antonym)
+let it go|1
+(verb)|refrain (generic term)|forbear (generic term)
+let loose|2
+(verb)|utter|emit|let out
+(verb)|unleash|loose|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+let off|1
+(verb)|excuse|relieve|exempt|absolve (generic term)|justify (generic term)|free (generic term)
+let on|1
+(verb)|unwrap|disclose|bring out|reveal|discover|expose|divulge|impart|break|give away|let out|tell (generic term)
+let out|4
+(verb)|utter|emit|let loose
+(verb)|unwrap|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|tell (generic term)
+(verb)|bring out|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+(verb)|widen|change (generic term)|alter (generic term)|vary (generic term)|take in (antonym)
+let the cat out of the bag|1
+(verb)|spill the beans|talk|tattle|blab|peach|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+let up|2
+(verb)|abate|slack off|slack|die away|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|ease up|ease off|change (generic term)|alter (generic term)|modify (generic term)
+letch|1
+(noun)|satyr|lecher|lech|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+letdown|1
+(noun)|disappointment|dissatisfaction (generic term)
+lethal|1
+(adj)|deadly|fatal (similar term)
+lethal agent|1
+(noun)|agent (generic term)
+lethal dose|1
+(noun)|dose (generic term)
+lethal gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+lethality|1
+(noun)|deadliness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+lethargic|1
+(adj)|unergetic|dazed (similar term)|foggy (similar term)|groggy (similar term)|logy (similar term)|stuporous (similar term)|dreamy (similar term)|lackadaisical (similar term)|languid (similar term)|languorous (similar term)|listless (similar term)|inactive (related term)|energetic (antonym)
+lethargic encephalitis|1
+(noun)|sleeping sickness|sleepy sickness|epidemic encephalitis|encephalitis lethargica|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+lethargically|1
+(adv)|unenergetically
+lethargy|3
+(noun)|lassitude|sluggishness|torpor (generic term)|torpidity (generic term)
+(noun)|inanition|lassitude|slackness|weakness (generic term)
+(noun)|languor|sluggishness|phlegm|flatness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+lethe|1
+(noun)|Lethe|River Lethe|river (generic term)
+leto|1
+(noun)|Leto|Latona|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+letter|8
+(noun)|missive|text (generic term)|textual matter (generic term)|document (generic term)
+(noun)|letter of the alphabet|alphabetic character|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|literal interpretation (generic term)
+(noun)|varsity letter|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|owner (generic term)|proprietor (generic term)
+(verb)|earn (generic term)|garner (generic term)
+(verb)|print (generic term)|impress (generic term)
+(verb)|write (generic term)
+letter-perfect|1
+(adj)|word-perfect|correct (similar term)|right (similar term)
+letter a|1
+(noun)|A|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter b|1
+(noun)|B|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter bomb|2
+(noun)|parcel bomb|package bomb|bomb (generic term)
+(verb)|bombard (generic term)|bomb (generic term)
+letter bond|1
+(noun)|letter security (generic term)
+letter box|3
+(noun)|Post-Office box|PO Box|POB|call box|compartment (generic term)
+(noun)|postbox|mailbox|maildrop (generic term)
+(noun)|mailbox|box (generic term)
+letter c|1
+(noun)|C|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter carrier|1
+(noun)|mailman|postman|mail carrier|carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+letter case|1
+(noun)|case (generic term)
+letter d|1
+(noun)|D|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter e|1
+(noun)|E|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter f|1
+(noun)|F|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter g|1
+(noun)|G|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter h|1
+(noun)|H|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter i|1
+(noun)|I|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter j|1
+(noun)|J|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter k|1
+(noun)|K|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter l|1
+(noun)|L|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter m|1
+(noun)|M|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter n|1
+(noun)|N|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter o|1
+(noun)|O|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter of credit|1
+(noun)|document (generic term)|credit (generic term)
+letter of intent|1
+(noun)|letter (generic term)|missive (generic term)
+letter of jeremiah|1
+(noun)|Letter of Jeremiah|Epistle of Jeremiah|book (generic term)
+letter of mark and reprisal|1
+(noun)|letter of marque|letters of marque|license (generic term)|licence (generic term)|permit (generic term)
+letter of marque|1
+(noun)|letters of marque|letter of mark and reprisal|license (generic term)|licence (generic term)|permit (generic term)
+letter of the alphabet|1
+(noun)|letter|alphabetic character|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+letter opener|1
+(noun)|paper knife|paperknife|knife (generic term)
+letter p|1
+(noun)|P|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter paper|2
+(noun)|writing paper (generic term)
+(noun)|stationery|writing paper (generic term)
+letter q|1
+(noun)|Q|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter r|1
+(noun)|R|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter s|1
+(noun)|S|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter security|1
+(noun)|security (generic term)|certificate (generic term)
+letter stock|1
+(noun)|letter security (generic term)
+letter t|1
+(noun)|T|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter telegram|1
+(noun)|telegram (generic term)|wire (generic term)
+letter u|1
+(noun)|U|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter v|1
+(noun)|V|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter w|1
+(noun)|W|double-u|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter writer|1
+(noun)|correspondent|communicator (generic term)
+letter x|1
+(noun)|X|ex|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter y|1
+(noun)|Y|wye|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+letter z|1
+(noun)|Z|zee|zed|ezed|izzard|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+lettercard|1
+(noun)|postcard (generic term)|post card (generic term)|postal card (generic term)|mailing-card (generic term)
+lettered|1
+(adj)|enlightened|knowing|knowledgeable|learned|well-educated|well-read|educated (similar term)
+letterer|1
+(noun)|painter (generic term)
+letterhead|1
+(noun)|stationery (generic term)|letter paper (generic term)
+lettering|1
+(noun)|inscription|writing (generic term)|written material (generic term)|piece of writing (generic term)
+letterman|1
+(noun)|athlete (generic term)|jock (generic term)
+letterpress|1
+(noun)|relief printing|printing (generic term)|printing process (generic term)
+letters|2
+(noun)|culture (generic term)
+(noun)|eruditeness (generic term)|erudition (generic term)|learnedness (generic term)|learning (generic term)|scholarship (generic term)|encyclopedism (generic term)|encyclopaedism (generic term)
+letters of administration|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+letters of marque|1
+(noun)|letter of marque|letter of mark and reprisal|license (generic term)|licence (generic term)|permit (generic term)
+letters patent|1
+(noun)|patent|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+letters testamentary|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+letterset printing|1
+(noun)|offset (generic term)|offset printing (generic term)
+letting|1
+(noun)|lease|rental|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+letting down|1
+(noun)|lowering|movement (generic term)
+lettish|1
+(noun)|Latvian|Lettish|Baltic (generic term)|Baltic language (generic term)
+lettre de cachet|1
+(noun)|cachet|warrant (generic term)
+lettuce|3
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|salad green (generic term)|salad greens (generic term)
+letup|1
+(noun)|lull|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+leu|2
+(noun)|Moldovan monetary unit (generic term)
+(noun)|Romanian monetary unit (generic term)
+leucadendron|1
+(noun)|Leucadendron|genus Leucadendron|dicot genus (generic term)|magnoliopsid genus (generic term)
+leucadendron argenteum|1
+(noun)|silver tree|Leucadendron argenteum|tree (generic term)
+leucaemia|1
+(noun)|leukemia|leukaemia|cancer of the blood|cancer (generic term)|malignant neoplastic disease (generic term)
+leucaena|1
+(noun)|Leucaena|genus Leucaena|rosid dicot genus (generic term)
+leucaena glauca|1
+(noun)|lead tree|white popinac|Leucaena glauca|Leucaena leucocephala|tree (generic term)
+leucaena leucocephala|1
+(noun)|lead tree|white popinac|Leucaena glauca|Leucaena leucocephala|tree (generic term)
+leucanthemum|1
+(noun)|Leucanthemum|genus Leucanthemum|asterid dicot genus (generic term)
+leucanthemum lacustre|1
+(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite (generic term)|composite plant (generic term)
+leucanthemum maximum|1
+(noun)|oxeye daisy|Leucanthemum maximum|Chrysanthemum maximum|composite (generic term)|composite plant (generic term)
+leucanthemum superbum|1
+(noun)|shasta daisy|Leucanthemum superbum|Chrysanthemum maximum maximum|composite (generic term)|composite plant (generic term)
+leucanthemum vulgare|1
+(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+leucine|1
+(noun)|essential amino acid (generic term)
+leuciscus|1
+(noun)|Leuciscus|genus Leuciscus|fish genus (generic term)
+leuciscus cephalus|1
+(noun)|chub|Leuciscus cephalus|cyprinid (generic term)|cyprinid fish (generic term)
+leuciscus leuciscus|1
+(noun)|dace|Leuciscus leuciscus|cyprinid (generic term)|cyprinid fish (generic term)
+leucocyte|1
+(noun)|leukocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+leucocytosis|1
+(noun)|leukocytosis|blood disease (generic term)|blood disorder (generic term)
+leucocytozoan|1
+(noun)|leucocytozoon|sporozoan (generic term)
+leucocytozoon|1
+(noun)|leucocytozoan|sporozoan (generic term)
+leucogenes|1
+(noun)|Leucogenes|genus Leucogenes|asterid dicot genus (generic term)
+leucogenes leontopodium|1
+(noun)|north island edelweiss|Leucogenes leontopodium|wildflower (generic term)|wild flower (generic term)
+leucoma|1
+(noun)|leukoma|eye disease (generic term)
+leucopenia|1
+(noun)|leukopenia|blood disease (generic term)|blood disorder (generic term)
+leucorrhea|1
+(noun)|leukorrhea|mucus (generic term)|mucous secretion (generic term)
+leucothoe|1
+(noun)|shrub (generic term)|bush (generic term)
+leucothoe editorum|1
+(noun)|dog laurel|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub (generic term)|bush (generic term)
+leucothoe fontanesiana|1
+(noun)|dog laurel|dog hobble|switch-ivy|Leucothoe fontanesiana|Leucothoe editorum|shrub (generic term)|bush (generic term)
+leucothoe racemosa|1
+(noun)|sweet bells|Leucothoe racemosa|shrub (generic term)|bush (generic term)
+leucotomy|1
+(noun)|lobotomy|leukotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery (generic term)
+leuctra|1
+(noun)|Leuctra|battle of Leuctra|pitched battle (generic term)
+leukaemia|1
+(noun)|leukemia|leucaemia|cancer of the blood|cancer (generic term)|malignant neoplastic disease (generic term)
+leukemia|1
+(noun)|leukaemia|leucaemia|cancer of the blood|cancer (generic term)|malignant neoplastic disease (generic term)
+leukeran|1
+(noun)|chlorambucil|Leukeran|alkalating agent (generic term)
+leukocyte|1
+(noun)|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+leukocytosis|1
+(noun)|leucocytosis|blood disease (generic term)|blood disorder (generic term)
+leukoderma|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+leukoencephalitis|1
+(noun)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+leukoma|1
+(noun)|leucoma|eye disease (generic term)
+leukopenia|1
+(noun)|leucopenia|blood disease (generic term)|blood disorder (generic term)
+leukorrhea|1
+(noun)|leucorrhea|mucus (generic term)|mucous secretion (generic term)
+leukotomy|1
+(noun)|lobotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery (generic term)
+leuwenhoek|1
+(noun)|Leuwenhoek|Leeuwenhoek|Anton van Leuwenhoek|Anton van Leeuwenhoek|microscopist (generic term)
+lev|1
+(noun)|Bulgarian monetary unit (generic term)
+lev davidovich bronstein|1
+(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik (generic term)|Bolshevist (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+lev davidovich landau|1
+(noun)|Landau|Lev Davidovich Landau|physicist (generic term)
+lev ivanov|1
+(noun)|Ivanov|Lev Ivanov|choreographer (generic term)
+levallorphan|1
+(noun)|Lorfan|drug (generic term)
+levant|3
+(noun)|Levant|Levant morocco|morocco (generic term)
+(noun)|Levant|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(verb)|abscond (generic term)|bolt (generic term)|absquatulate (generic term)|decamp (generic term)|run off (generic term)|go off (generic term)|make off (generic term)
+levant cotton|1
+(noun)|Levant cotton|Gossypium herbaceum|cotton (generic term)|cotton plant (generic term)
+levant garlic|1
+(noun)|wild leek|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant (generic term)
+levant morocco|1
+(noun)|Levant|Levant morocco|morocco (generic term)
+levanter|1
+(noun)|east wind (generic term)|easter (generic term)|easterly (generic term)
+levantine|2
+(adj)|Levantine|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Levantine|native (generic term)|indigen (generic term)|indigene (generic term)
+levator|1
+(noun)|muscle (generic term)|musculus (generic term)
+levee|3
+(noun)|reception (generic term)
+(noun)|pier (generic term)|wharf (generic term)|wharfage (generic term)|dock (generic term)
+(noun)|embankment (generic term)
+level|19
+(adj)|flat|plane|even (similar term)
+(adj)|unwavering|steady (similar term)
+(adj)|horizontal (similar term)
+(adj)|even (similar term)
+(adj)|tied|even|equal (similar term)
+(noun)|degree|grade|property (generic term)
+(noun)|grade|tier|rank (generic term)
+(noun)|degree|stage|point|state (generic term)
+(noun)|altitude (generic term)|height (generic term)
+(noun)|spirit level|indicator (generic term)
+(noun)|horizontal surface|surface (generic term)
+(noun)|floor|storey|story|structure (generic term)|construction (generic term)
+(noun)|layer|stratum|place (generic term)
+(verb)|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|raze|rase|dismantle|tear down|take down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+(verb)|flush|even out|even|change surface (generic term)
+(verb)|charge|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|talk (generic term)|speak (generic term)
+(verb)|level off|change surface (generic term)
+level-headed|1
+(adj)|healthy|intelligent|levelheaded|sound|reasonable (similar term)|sensible (similar term)
+level best|1
+(noun)|utmost|uttermost|maximum|limit (generic term)|bound (generic term)|boundary (generic term)
+level crossing|1
+(noun)|grade crossing|intersection (generic term)|crossroad (generic term)|crossway (generic term)|crossing (generic term)|carrefour (generic term)
+level off|1
+(verb)|level|change surface (generic term)
+leveler|1
+(noun)|leveller|radical (generic term)
+levelheaded|1
+(adj)|healthy|intelligent|level-headed|sound|reasonable (similar term)|sensible (similar term)
+leveling|3
+(noun)|grading|construction (generic term)|building (generic term)
+(noun)|razing|tearing down|demolishing|destruction (generic term)|devastation (generic term)
+(noun)|equalization|equalisation|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+leveller|1
+(noun)|leveler|radical (generic term)
+lever|4
+(noun)|bar (generic term)
+(noun)|machine (generic term)|simple machine (generic term)
+(noun)|lever tumbler|tumbler (generic term)
+(verb)|pry|prise|prize|jimmy|open (generic term)|open up (generic term)
+lever hang|1
+(noun)|hang (generic term)
+lever lock|1
+(noun)|lock (generic term)
+lever scale|1
+(noun)|steelyard|beam scale|balance (generic term)
+lever tumbler|1
+(noun)|lever|tumbler (generic term)
+leverage|5
+(noun)|purchase|mechanical phenomenon (generic term)
+(noun)|advantage (generic term)|vantage (generic term)
+(noun)|leveraging|investing (generic term)|investment (generic term)
+(verb)|supplement (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+leveraged buyout|1
+(noun)|buyout (generic term)
+leveraging|1
+(noun)|leverage|investing (generic term)|investment (generic term)
+leveret|1
+(noun)|hare (generic term)
+levi|1
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+levi's|1
+(noun)|Levi's|levis|jean (generic term)|blue jean (generic term)|denim (generic term)
+levi-strauss|1
+(noun)|Levi-Strauss|Claude Levi-Strauss|anthropologist (generic term)
+leviathan|2
+(noun)|freak (generic term)|monster (generic term)|monstrosity (generic term)|lusus naturae (generic term)
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+levirate|1
+(noun)|institution (generic term)
+levis|1
+(noun)|Levi's|jean (generic term)|blue jean (generic term)|denim (generic term)
+levisticum|1
+(noun)|Levisticum|genus Levisticum|rosid dicot genus (generic term)
+levisticum officinale|1
+(noun)|lovage|Levisticum officinale|herb (generic term)|herbaceous plant (generic term)
+levitate|2
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|hover
+levitation|3
+(noun)|phenomenon (generic term)
+(noun)|change of location (generic term)|travel (generic term)|gravitation (antonym)
+(noun)|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+levite|1
+(noun)|Levite|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+levitical|1
+(adj)|Levitical|book (related term)
+leviticus|1
+(noun)|Leviticus|Book of Leviticus|book (generic term)
+levitra|1
+(noun)|vardenafil|Levitra|virility drug (generic term)|anti-impotence drug (generic term)
+levity|2
+(noun)|feeling (generic term)|gravity (antonym)
+(noun)|frivolity (generic term)|frivolousness (generic term)
+levodopa|1
+(noun)|L-dopa|Bendopa|Brocadopa|Larodopa|dopa (generic term)|dihydroxyphenylalanine (generic term)
+levorotary|1
+(adj)|levorotatory|left-handed|counterclockwise (similar term)|anticlockwise (similar term)|contraclockwise (similar term)
+levorotation|1
+(noun)|counterclockwise rotation|rotation (generic term)|revolution (generic term)|gyration (generic term)|dextrorotation (antonym)
+levorotatory|1
+(adj)|levorotary|left-handed|counterclockwise (similar term)|anticlockwise (similar term)|contraclockwise (similar term)
+levulose|1
+(noun)|fructose|fruit sugar|laevulose|ketohexose (generic term)
+levy|4
+(noun)|charge (generic term)
+(noun)|levy en masse|conscription (generic term)|muster (generic term)|draft (generic term)|selective service (generic term)
+(verb)|impose|charge (generic term)|bill (generic term)
+(verb)|recruit|raise|enlist (generic term)|draft (generic term)|muster in (generic term)
+levy en masse|1
+(noun)|levy|conscription (generic term)|muster (generic term)|draft (generic term)|selective service (generic term)
+lewd|2
+(adj)|obscene|raunchy|salacious|dirty (similar term)
+(adj)|lascivious|libidinous|lustful|sexy (similar term)
+lewdly|1
+(adv)|obscenely
+lewdness|1
+(noun)|obscenity|bawdiness|salaciousness|salacity|indecency (generic term)
+lewis|6
+(noun)|Lewis|Jerry Lee Lewis|rock star (generic term)|pianist (generic term)|piano player (generic term)
+(noun)|Lewis|Carl Lewis|Frederick Carleton Lewis|sprinter (generic term)|jumper (generic term)
+(noun)|Lewis|Meriwether Lewis|explorer (generic term)|adventurer (generic term)
+(noun)|Lewis|John L. Lewis|John Llewelly Lewis|labor leader (generic term)
+(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer (generic term)|author (generic term)
+(noun)|Lewis|C. S. Lewis|Clive Staples Lewis|writer (generic term)|author (generic term)
+lewis and clark expedition|1
+(noun)|Lewis and Clark Expedition|expedition (generic term)
+lewis carroll|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+lewis henry morgan|1
+(noun)|Morgan|Lewis Henry Morgan|anthropologist (generic term)
+lewisia|1
+(noun)|Lewisia|genus Lewisia|caryophylloid dicot genus (generic term)
+lewisia cotyledon|1
+(noun)|siskiyou lewisia|Lewisia cotyledon|wildflower (generic term)|wild flower (generic term)
+lewisia rediviva|1
+(noun)|bitterroot|Lewisia rediviva|wildflower (generic term)|wild flower (generic term)
+lewiston|1
+(noun)|Lewiston|town (generic term)
+lexeme|1
+(noun)|language unit (generic term)|linguistic unit (generic term)
+lexical|2
+(adj)|language unit|linguistic unit (related term)
+(adj)|wordbook (related term)
+lexical ambiguity|1
+(noun)|polysemy|ambiguity (generic term)|equivocalness (generic term)|monosemy (antonym)
+lexical database|1
+(noun)|electronic database (generic term)|on-line database (generic term)|computer database (generic term)|electronic information service (generic term)
+lexical disambiguation|1
+(noun)|disambiguation (generic term)
+lexical entry|1
+(noun)|dictionary entry|entry (generic term)
+lexical meaning|1
+(noun)|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+lexical semantics|1
+(noun)|semantics (generic term)
+lexicalisation|1
+(noun)|lexicalization|linguistic process (generic term)
+lexicalise|1
+(verb)|lexicalize|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+lexicalised|1
+(adj)|lexicalized|linguistic process (related term)
+lexicalization|1
+(noun)|lexicalisation|linguistic process (generic term)
+lexicalize|1
+(verb)|lexicalise|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+lexicalized|1
+(adj)|lexicalised|linguistic process (related term)
+lexicalized concept|1
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+lexicographer|1
+(noun)|lexicologist|linguist (generic term)|linguistic scientist (generic term)
+lexicographic|1
+(adj)|lexicographical|writing|authorship|composition|penning (related term)
+lexicographical|1
+(adj)|lexicographic|writing|authorship|composition|penning (related term)
+lexicography|1
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+lexicologist|1
+(noun)|lexicographer|linguist (generic term)|linguistic scientist (generic term)
+lexicology|1
+(noun)|linguistics (generic term)|philology (generic term)
+lexicon|2
+(noun)|vocabulary|mental lexicon|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|dictionary|wordbook (generic term)
+lexicostatistic|1
+(adj)|etymology (related term)
+lexicostatistics|1
+(noun)|etymology (generic term)
+lexington|3
+(noun)|Lexington|town (generic term)
+(noun)|Lexington|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Lexington|Concord|Lexington and Concord|pitched battle (generic term)
+lexington and concord|1
+(noun)|Lexington|Concord|Lexington and Concord|pitched battle (generic term)
+lexis|1
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+ley|1
+(noun)|pasture|pastureland|grazing land|lea|grassland (generic term)
+leycesteria|1
+(noun)|Leycesteria|genus Leycesteria|asterid dicot genus (generic term)
+leycesteria formosa|1
+(noun)|Himalaya honeysuckle|Leycesteria formosa|shrub (generic term)|bush (generic term)
+leyden|1
+(noun)|Leiden|Leyden|city (generic term)|metropolis (generic term)|urban center (generic term)
+leyden jar|1
+(noun)|Leiden jar|Leyden jar|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+leydig's cell|1
+(noun)|Leydig cell|Leydig's cell|cell (generic term)
+leydig cell|1
+(noun)|Leydig cell|Leydig's cell|cell (generic term)
+leymus|1
+(noun)|Leymus|genus Leymus|monocot genus (generic term)|liliopsid genus (generic term)
+leymus arenaria|1
+(noun)|sea lyme grass|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass (generic term)
+leymus condensatus|1
+(noun)|giant ryegrass|Elymus condensatus|Leymus condensatus|lyme grass (generic term)
+leyte|1
+(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault (generic term)
+leyte invasion|1
+(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault (generic term)
+leyte island|1
+(noun)|Leyte|Leyte Island|Leyte invasion|amphibious assault (generic term)
+lf|1
+(noun)|low frequency|LF|radio frequency (generic term)
+lgb|1
+(noun)|laser-guided bomb|LGB|smart bomb (generic term)
+lgv|1
+(noun)|lymphogranuloma venereum|LGV|lymphopathia venereum|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+lh|1
+(noun)|luteinizing hormone|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+lhasa|2
+(noun)|Lhasa|Lassa|capital of Tibet|Forbidden City|national capital (generic term)
+(noun)|Lhasa|Lhasa apso|terrier (generic term)
+lhasa apso|1
+(noun)|Lhasa|Lhasa apso|terrier (generic term)
+lhotse|1
+(noun)|Lhotse|mountain peak (generic term)
+li|3
+(adj)|fifty-one|51|cardinal (similar term)
+(noun)|lithium|Li|atomic number 3|metallic element (generic term)|metal (generic term)
+(noun)|linear unit (generic term)
+li po|1
+(noun)|Li Po|poet (generic term)
+liabilities|1
+(noun)|possession (generic term)
+liability|3
+(noun)|susceptibility (generic term)|susceptibleness (generic term)
+(noun)|indebtedness|financial obligation|obligation (generic term)
+(noun)|bad (generic term)|badness (generic term)|asset (antonym)
+liability insurance|1
+(noun)|insurance (generic term)
+liable|4
+(adj)|apt|likely (similar term)
+(adj)|nonexempt (similar term)
+(adj)|nonimmune|nonresistant|unresistant|susceptible (similar term)
+(adj)|responsible (similar term)
+liaise|1
+(verb)|intercede|mediate|intermediate|arbitrate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+liaison|2
+(noun)|affair|affaire|intimacy|involvement|amour|sexual relationship (generic term)
+(noun)|link|contact|inter-group communication|channel (generic term)|communication channel (generic term)|line (generic term)
+liakoura|1
+(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak (generic term)
+liam o'flaherty|1
+(noun)|O'Flaherty|Liam O'Flaherty|writer (generic term)|author (generic term)
+liana|1
+(noun)|vine (generic term)
+liao|1
+(noun)|Liao|Liao dynasty|dynasty (generic term)
+liao dynasty|1
+(noun)|Liao|Liao dynasty|dynasty (generic term)
+liar|1
+(noun)|prevaricator|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)|square shooter (antonym)
+liatris|1
+(noun)|Liatris|genus Liatris|asterid dicot genus (generic term)
+liatris punctata|1
+(noun)|dotted gayfeather|Liatris punctata|blazing star (generic term)|button snakeroot (generic term)|gayfeather (generic term)|gay-feather (generic term)|snakeroot (generic term)
+liatris pycnostachya|1
+(noun)|dense blazing star|Liatris pycnostachya|blazing star (generic term)|button snakeroot (generic term)|gayfeather (generic term)|gay-feather (generic term)|snakeroot (generic term)
+libation|3
+(noun)|drink (generic term)
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|religious ceremony (generic term)|religious ritual (generic term)
+libber|1
+(noun)|feminist|women's rightist|women's liberationist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+libby|1
+(noun)|Libby|Willard Frank Libby|chemist (generic term)
+libel|3
+(noun)|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|complaint (generic term)
+(verb)|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+libeler|1
+(noun)|defamer|maligner|slanderer|vilifier|backbiter|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+libellous|1
+(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libelous|slanderous|harmful (similar term)
+libelous|1
+(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|slanderous|harmful (similar term)
+liberal|7
+(adj)|broad|large-minded|tolerant|broad-minded (similar term)
+(adj)|left (similar term)
+(adj)|civil-libertarian (similar term)|liberalistic (similar term)|neoliberal (similar term)|progressive (similar term)|reformist (similar term)|reform-minded (similar term)|socialized (similar term)|socialised (similar term)|welfarist (similar term)|welfare-statist (similar term)|left (related term)|conservative (antonym)
+(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|openhanded|generous (similar term)
+(adj)|free|loose|inexact (similar term)
+(noun)|liberalist|progressive|adult (generic term)|grownup (generic term)|conservative (antonym)
+(noun)|adult (generic term)|grownup (generic term)
+liberal arts|1
+(noun)|humanistic discipline|humanities|arts|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+liberal party|1
+(noun)|Liberal Party|party (generic term)|political party (generic term)
+liberalisation|1
+(noun)|liberalization|relaxation|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+liberalise|2
+(verb)|liberalize|change (generic term)
+(verb)|liberalize|change (generic term)|alter (generic term)|modify (generic term)
+liberalism|2
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+(noun)|economic theory (generic term)
+liberalist|1
+(noun)|liberal|progressive|adult (generic term)|grownup (generic term)|conservative (antonym)
+liberalistic|1
+(adj)|liberal (similar term)
+liberality|2
+(noun)|liberalness|tolerance (generic term)
+(noun)|liberalness|generosity (generic term)|generousness (generic term)|illiberality (antonym)
+liberalization|1
+(noun)|liberalisation|relaxation|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+liberalize|2
+(verb)|liberalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|liberalise|change (generic term)
+liberally|1
+(adv)|munificently|generously
+liberalness|2
+(noun)|liberality|tolerance (generic term)
+(noun)|liberality|generosity (generic term)|generousness (generic term)|illiberality (antonym)
+liberate|3
+(verb)|emancipate|change state (generic term)|turn (generic term)
+(verb)|free|release|unloose|unloosen|loose|confine (antonym)
+(verb)|set free|free (generic term)|discharge (generic term)
+liberated|3
+(adj)|free (similar term)
+(adj)|emancipated|freed|free (similar term)
+(adj)|emancipated|free (similar term)
+liberation|3
+(noun)|release|freeing|accomplishment (generic term)|achievement (generic term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|dismissal|dismission|discharge|firing|release|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+liberation theology|1
+(noun)|theology (generic term)|theological system (generic term)
+liberation tigers of tamil eelam|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+liberator|1
+(noun)|benefactor (generic term)|helper (generic term)|captor (antonym)
+liberia|1
+(noun)|Liberia|Republic of Liberia|African country (generic term)|African nation (generic term)
+liberian|2
+(adj)|Liberian|African country|African nation (related term)
+(noun)|Liberian|African (generic term)
+liberian capital|1
+(noun)|Monrovia|Liberian capital|capital of Liberia|national capital (generic term)|port (generic term)
+liberian coffee|1
+(noun)|Liberian coffee|Coffea liberica|coffee (generic term)|coffee tree (generic term)
+liberian dollar|1
+(noun)|Liberian dollar|dollar (generic term)
+libertarian|1
+(noun)|philosopher (generic term)|necessitarian (antonym)
+libertarianism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+libertine|2
+(adj)|debauched|degenerate|degraded|dissipated|dissolute|profligate|riotous|fast|immoral (similar term)
+(noun)|debauchee|rounder|bad person (generic term)
+liberty|4
+(noun)|autonomy|independence (generic term)|independency (generic term)
+(noun)|freedom (generic term)
+(noun)|shore leave|leave (generic term)|leave of absence (generic term)
+(noun)|familiarity|impropriety|indecorum|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+liberty bell|1
+(noun)|Liberty Bell|bell (generic term)
+liberty cap|1
+(noun)|cap (generic term)
+liberty chit|1
+(noun)|pass|license (generic term)|licence (generic term)|permit (generic term)
+liberty island|1
+(noun)|Liberty Island|Bedloe's Island|island (generic term)
+liberty party|1
+(noun)|Liberty Party|party (generic term)|political party (generic term)
+liberty ship|1
+(noun)|Liberty ship|cargo ship (generic term)|cargo vessel (generic term)
+libidinal|1
+(adj)|sexual desire|eros|concupiscence|physical attraction (related term)
+libidinal energy|1
+(noun)|psychic energy (generic term)|mental energy (generic term)
+libidinous|1
+(adj)|lascivious|lewd|lustful|sexy (similar term)
+libido|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+libocedrus|1
+(noun)|Libocedrus|genus Libocedrus|gymnosperm genus (generic term)
+libocedrus bidwillii|1
+(noun)|pahautea|Libocedrus bidwillii|mountain pine|cedar (generic term)|cedar tree (generic term)
+libocedrus decurrens|1
+(noun)|incense cedar|red cedar|Calocedrus decurrens|Libocedrus decurrens|cedar (generic term)|cedar tree (generic term)
+libocedrus plumosa|1
+(noun)|kawaka|Libocedrus plumosa|cedar (generic term)|cedar tree (generic term)
+libra|3
+(noun)|Libra|Balance|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Libra|constellation (generic term)
+(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+libra the balance|1
+(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+libra the scales|1
+(noun)|Libra|Libra the Balance|Balance|Libra the Scales|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+librarian|1
+(noun)|bibliothec|professional (generic term)|professional person (generic term)
+librarianship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+library|5
+(noun)|room (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|depository library|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(noun)|program library|subroutine library|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|building (generic term)|edifice (generic term)
+library card|1
+(noun)|borrower's card|card (generic term)|identity card (generic term)
+library catalog|1
+(noun)|library catalogue|catalog (generic term)|catalogue (generic term)
+library catalogue|1
+(noun)|library catalog|catalog (generic term)|catalogue (generic term)
+library fine|1
+(noun)|fine (generic term)|mulct (generic term)|amercement (generic term)
+library paste|1
+(noun)|paste|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+library program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+library routine|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+library science|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+librate|2
+(verb)|weigh|quantify (generic term)|measure (generic term)
+(verb)|oscillate (generic term)|vibrate (generic term)
+libration|1
+(noun)|oscillation (generic term)|variation (generic term)
+librettist|1
+(noun)|writer (generic term)|author (generic term)
+libretto|1
+(noun)|script (generic term)|book (generic term)|playscript (generic term)
+libreville|1
+(noun)|Libreville|capital of Gabon|national capital (generic term)
+libritabs|1
+(noun)|chlordiazepoxide|Librium|Libritabs|benzodiazepine (generic term)
+librium|1
+(noun)|chlordiazepoxide|Librium|Libritabs|benzodiazepine (generic term)
+libya|1
+(noun)|Libya|Socialist People's Libyan Arab Jamahiriya|African country (generic term)|African nation (generic term)
+libyan|2
+(adj)|Libyan|African country|African nation (related term)
+(noun)|Libyan|African (generic term)
+libyan desert|1
+(noun)|Libyan Desert|desert (generic term)
+libyan dinar|1
+(noun)|Libyan dinar|dinar|Libyan monetary unit (generic term)
+libyan dirham|1
+(noun)|Libyan dirham|dirham|Libyan monetary unit (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+libyan monetary unit|1
+(noun)|Libyan monetary unit|monetary unit (generic term)
+licence|3
+(noun)|license|liberty (generic term)
+(noun)|license|permit|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(verb)|license|certify|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|decertify (antonym)
+licenced|1
+(adj)|accredited|commissioned|licensed|authorized (similar term)|authorised (similar term)
+licencee|1
+(noun)|licensee|retailer (generic term)|retail merchant (generic term)
+license|4
+(noun)|licence|permit|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|licence|liberty (generic term)
+(noun)|permission|permit|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+(verb)|licence|certify|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|decertify (antonym)
+license fee|1
+(noun)|licensing fee|license tax|fee (generic term)
+license number|1
+(noun)|registration number|number (generic term)|identification number (generic term)
+license plate|1
+(noun)|numberplate|plate (generic term)
+license tax|1
+(noun)|licensing fee|license fee|fee (generic term)
+licensed|1
+(adj)|accredited|commissioned|licenced|authorized (similar term)|authorised (similar term)
+licensed practical nurse|1
+(noun)|LPN|practical nurse|nurse (generic term)
+licensee|1
+(noun)|licencee|retailer (generic term)|retail merchant (generic term)
+licenser|1
+(noun)|official (generic term)|functionary (generic term)
+licensing agreement|1
+(noun)|contract (generic term)
+licensing fee|1
+(noun)|license fee|license tax|fee (generic term)
+licentiate|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+licentious|1
+(adj)|unchaste (similar term)
+licentiously|1
+(adv)|wantonly|promiscuously
+licentiousness|2
+(noun)|wantonness|immorality (generic term)
+(noun)|profligacy|dissipation|dissolution|looseness|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+lichanura|1
+(noun)|Lichanura|genus Lichanura|reptile genus (generic term)
+lichanura trivirgata|1
+(noun)|rosy boa|Lichanura trivirgata|boa (generic term)
+lichee|2
+(noun)|litchi|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree (generic term)
+(noun)|litchi|litchi nut|litchee|lichi|leechee|lychee|edible fruit (generic term)
+lichen|2
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+(noun)|fungus (generic term)
+lichen planus|1
+(noun)|lichen ruber planus|lichen (generic term)
+lichen ruber planus|1
+(noun)|lichen planus|lichen (generic term)
+lichenales|1
+(noun)|Lichenales|order Lichenales|fungus order (generic term)
+lichenes|1
+(noun)|Lichenes|division Lichenes|division (generic term)
+lichgate|1
+(noun)|lychgate|gate (generic term)
+lichi|1
+(noun)|litchi|litchi nut|litchee|leechee|lichee|lychee|edible fruit (generic term)
+lichtenoid eczema|1
+(noun)|chronic eczema|eczema hypertrophicum|eczema (generic term)
+lichtenstein|1
+(noun)|Lichtenstein|Roy Lichtenstein|painter (generic term)
+licinius lucullus|1
+(noun)|Lucullus|Licinius Lucullus|Lucius Licinius Lucullus|general (generic term)|full general (generic term)
+licit|2
+(adj)|illicit (antonym)
+(adj)|lawful|legitimate|legal (similar term)
+licitly|1
+(adv)|legitimately|lawfully|illicitly (antonym)|lawlessly (antonym)|illegitimately (antonym)
+licitness|1
+(noun)|lawfulness (generic term)|illicitness (antonym)
+lick|7
+(noun)|salt lick|sediment (generic term)|deposit (generic term)
+(noun)|lap|touch (generic term)|touching (generic term)
+(noun)|punch|clout|poke|biff|blow (generic term)
+(verb)|cream|bat|clobber|drub|thrash|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|lap|stroke (generic term)|fondle (generic term)
+(verb)|solve|work out|figure out|puzzle out|work|understand (generic term)
+(verb)|lap|lap up|drink (generic term)|imbibe (generic term)
+licked|1
+(adj)|defeated (similar term)
+lickety cut|1
+(adv)|lickety split
+lickety split|1
+(adv)|lickety cut
+licking|2
+(noun)|defeat|ending (generic term)|conclusion (generic term)|finish (generic term)|failure (generic term)|victory (antonym)
+(noun)|beating|thrashing|drubbing|lacing|trouncing|whacking|corporal punishment (generic term)
+licorice|2
+(noun)|liquorice|Glycyrrhiza glabra|herb (generic term)|herbaceous plant (generic term)
+(noun)|liquorice|candy (generic term)|confect (generic term)
+licorice fern|1
+(noun)|Polypodium glycyrrhiza|polypody (generic term)
+licorice root|1
+(noun)|root (generic term)
+licorice stick|1
+(noun)|B-flat clarinet|clarinet (generic term)
+lid|3
+(noun)|eyelid|palpebra|protective fold (generic term)
+(noun)|top (generic term)|cover (generic term)
+(noun)|hat|chapeau|headdress (generic term)|headgear (generic term)
+lidar|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+lidded|2
+(adj)|lidless (antonym)
+(adj)|topped (similar term)
+lidless|3
+(adj)|lidded (antonym)
+(adj)|topless (similar term)
+(adj)|sleepless|alert (similar term)
+lido|1
+(noun)|recreational facility (generic term)|recreation facility (generic term)
+lido deck|1
+(noun)|deck (generic term)
+lidocaine|1
+(noun)|Lidocaine|Xylocaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+lie|9
+(noun)|prevarication|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat (generic term)|diplomatist (generic term)
+(noun)|position (generic term)|place (generic term)
+(verb)|stand (antonym)|sit (antonym)
+(verb)|dwell|consist|belong|lie in|exist (generic term)|be (generic term)
+(verb)|be (generic term)
+(verb)|misinform (generic term)|mislead (generic term)
+(verb)|rest|be (generic term)
+(verb)|lie down|change posture (generic term)|arise (antonym)
+lie-abed|1
+(noun)|slugabed|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+lie-in|1
+(noun)|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+lie about|1
+(verb)|lie around|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+lie around|1
+(verb)|lie about|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+lie awake|1
+(verb)|lie (generic term)
+lie detector|1
+(noun)|polygraph (generic term)
+lie down|1
+(verb)|lie|change posture (generic term)|arise (antonym)
+lie in|1
+(verb)|dwell|consist|lie|belong|exist (generic term)|be (generic term)
+lie in wait|1
+(verb)|ambush|scupper|bushwhack|waylay|lurk|ambuscade|wait (generic term)
+lie low|1
+(verb)|hide (generic term)|hide out (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+liebfraumilch|1
+(noun)|Rhine wine (generic term)|Rhenish (generic term)|hock (generic term)
+liebig condenser|1
+(noun)|Liebig condenser|condenser (generic term)
+liechtenstein|1
+(noun)|Liechtenstein|Principality of Liechtenstein|European country (generic term)|European nation (generic term)
+liechtensteiner|2
+(adj)|Liechtensteiner|European country|European nation (related term)
+(noun)|Liechtensteiner|European (generic term)
+lied|1
+(noun)|song (generic term)|vocal (generic term)
+lieder singer|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+liederkranz|1
+(noun)|Liederkranz|cheese (generic term)
+lief|1
+(adv)|gladly|fain
+liege|4
+(adj)|loyal (similar term)
+(noun)|vassal|liegeman|liege subject|feudatory|follower (generic term)
+(noun)|liege lord|feudal lord (generic term)|seigneur (generic term)|seignior (generic term)
+(noun)|Liege|Luik|city (generic term)|metropolis (generic term)|urban center (generic term)
+liege lord|1
+(noun)|liege|feudal lord (generic term)|seigneur (generic term)|seignior (generic term)
+liege subject|1
+(noun)|vassal|liege|liegeman|feudatory|follower (generic term)
+liegeman|1
+(noun)|vassal|liege|liege subject|feudatory|follower (generic term)
+lien|2
+(noun)|security interest (generic term)
+(noun)|spleen|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+lienal|1
+(adj)|splenic|splenetic|lymphatic tissue|lymphoid tissue (related term)
+lienal artery|1
+(noun)|splenic artery|arteria lienalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+liepaja|1
+(noun)|Liepaja|city (generic term)|metropolis (generic term)|urban center (generic term)
+lietuva|1
+(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State (generic term)|Baltic Republic (generic term)
+lieu|1
+(noun)|stead|position|place|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+lieutenancy|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+lieutenant|4
+(noun)|commissioned military officer (generic term)
+(noun)|police lieutenant|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|deputy|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|commissioned naval officer (generic term)
+lieutenant colonel|1
+(noun)|light colonel|colonel (generic term)
+lieutenant commander|1
+(noun)|commissioned naval officer (generic term)
+lieutenant general|1
+(noun)|general officer (generic term)
+lieutenant governor|1
+(noun)|elected official (generic term)
+lieutenant jg|1
+(noun)|lieutenant junior grade|lieutenant JG|commissioned naval officer (generic term)
+lieutenant junior grade|1
+(noun)|lieutenant JG|commissioned naval officer (generic term)
+life|12
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|living|experience (generic term)
+(noun)|animation|living|aliveness|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|lifetime|life-time|lifespan|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|liveliness|spirit|sprightliness|animation (generic term)|spiritedness (generic term)|invigoration (generic term)|brio (generic term)|vivification (generic term)
+(noun)|biography|life story|life history|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|living thing (generic term)|animate thing (generic term)
+(noun)|motivation (generic term)|motive (generic term)|need (generic term)
+(noun)|organic phenomenon (generic term)
+(noun)|life sentence|prison term (generic term)|sentence (generic term)|time (generic term)
+life-and-death|1
+(adj)|life-or-death|crucial (similar term)|important (similar term)
+life-giving|1
+(adj)|vitalizing|invigorating (similar term)
+life-of-man|1
+(noun)|American spikenard|petty morel|Aralia racemosa|subshrub (generic term)|suffrutex (generic term)
+life-or-death|1
+(adj)|life-and-death|crucial (similar term)|important (similar term)
+life-size|1
+(adj)|lifesize|life-sized|full-size|large (similar term)|big (similar term)
+life-sized|1
+(adj)|life-size|lifesize|full-size|large (similar term)|big (similar term)
+life-style|1
+(noun)|life style|lifestyle|modus vivendi|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+life-support|1
+(adj)|equipment (related term)
+life-support system|1
+(noun)|life support|equipment (generic term)
+life-sustaining|1
+(adj)|vital|essential (similar term)
+life-threatening|1
+(adj)|dangerous|grave|grievous|serious|severe|critical (similar term)
+life-time|1
+(noun)|life|lifetime|lifespan|time period (generic term)|period of time (generic term)|period (generic term)
+life assurance|1
+(noun)|life insurance|insurance (generic term)
+life belt|2
+(noun)|safety belt|safety harness|belt (generic term)|restraint (generic term)|constraint (generic term)
+(noun)|life buoy|lifesaver|life ring|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+life buoy|1
+(noun)|lifesaver|life belt|life ring|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+life class|1
+(noun)|art class (generic term)
+life cycle|2
+(noun)|organic phenomenon (generic term)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+life estate|1
+(noun)|estate for life|estate (generic term)
+life eternal|1
+(noun)|eternal life|animation (generic term)|life (generic term)|living (generic term)|aliveness (generic term)
+life expectancy|1
+(noun)|anticipation (generic term)|expectancy (generic term)
+life force|1
+(noun)|vital force|vitality|elan vital|force (generic term)
+life form|1
+(noun)|body (generic term)|organic structure (generic term)|physical structure (generic term)
+life history|2
+(noun)|biography|life|life story|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+(noun)|career|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+life imprisonment|1
+(noun)|captivity (generic term)|imprisonment (generic term)|incarceration (generic term)|immurement (generic term)
+life insurance|1
+(noun)|life assurance|insurance (generic term)
+life jacket|1
+(noun)|life vest|cork jacket|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+life line|1
+(noun)|line of life|lifeline|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+life mask|1
+(noun)|cast (generic term)|casting (generic term)
+life office|1
+(noun)|office (generic term)|business office (generic term)
+life peer|1
+(noun)|peer (generic term)
+life preserver|1
+(noun)|preserver|flotation device|float (generic term)|rescue equipment (generic term)
+life principle|1
+(noun)|vital principle|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+life raft|1
+(noun)|Carling float|raft (generic term)
+life ring|1
+(noun)|life buoy|lifesaver|life belt|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+life saver|1
+(noun)|Life Saver|candy (generic term)|confect (generic term)
+life science|1
+(noun)|bioscience|natural science (generic term)
+life scientist|1
+(noun)|biologist|scientist (generic term)|man of science (generic term)
+life sentence|1
+(noun)|life|prison term (generic term)|sentence (generic term)|time (generic term)
+life story|1
+(noun)|biography|life|life history|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+life style|1
+(noun)|life-style|lifestyle|modus vivendi|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+life support|1
+(noun)|life-support system|equipment (generic term)
+life tenant|1
+(noun)|tenant (generic term)
+life vest|1
+(noun)|life jacket|cork jacket|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+lifeblood|2
+(noun)|blood (generic term)
+(noun)|force (generic term)
+lifeboat|1
+(noun)|sea boat (generic term)
+lifeguard|1
+(noun)|lifesaver|attendant (generic term)|attender (generic term)|tender (generic term)
+lifeless|4
+(adj)|exanimate|dead (similar term)
+(adj)|empty (similar term)
+(adj)|dead|unanimated (similar term)
+(adj)|dead (similar term)
+lifelessly|1
+(adv)|deadly
+lifelessness|2
+(noun)|motionlessness|stillness|state (generic term)|motion (antonym)
+(noun)|inanimateness|physiological property (generic term)|animateness (antonym)
+lifelike|2
+(adj)|graphic|pictorial|vivid|realistic (similar term)
+(adj)|natural|unaffected (similar term)
+lifeline|3
+(noun)|line of life|life line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+(noun)|support (generic term)
+(noun)|line (generic term)
+lifelong|1
+(adj)|womb-to-tomb|long (similar term)
+lifer|1
+(noun)|convict (generic term)|con (generic term)|inmate (generic term)|jail bird (generic term)|jailbird (generic term)|gaolbird (generic term)|yard bird (generic term)|yardbird (generic term)
+lifesaver|2
+(noun)|lifeguard|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|life buoy|life belt|life ring|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+lifesaving|1
+(noun)|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+lifesize|1
+(adj)|life-size|life-sized|full-size|large (similar term)|big (similar term)
+lifespan|1
+(noun)|life|lifetime|life-time|time period (generic term)|period of time (generic term)|period (generic term)
+lifestyle|1
+(noun)|life style|life-style|modus vivendi|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+lifetime|1
+(noun)|life|life-time|lifespan|time period (generic term)|period of time (generic term)|period (generic term)
+lifework|1
+(noun)|career (generic term)|calling (generic term)|vocation (generic term)
+lifo|1
+(noun)|last in first out|LIFO|inventory accounting (generic term)
+lift|34
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|aerodynamic lift|aerodynamic force (generic term)
+(noun)|elevation|raising|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|rise|wave (generic term)|moving ridge (generic term)
+(noun)|ski tow|ski lift|conveyance (generic term)|transport (generic term)
+(noun)|device (generic term)
+(noun)|layer (generic term)|bed (generic term)
+(noun)|elevator|lifting device (generic term)
+(noun)|face lift|facelift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+(noun)|airlift|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|drive (generic term)|ride (generic term)
+(noun)|raise|heave|propulsion (generic term)|actuation (generic term)
+(verb)|raise|elevate|get up|bring up|move (generic term)|displace (generic term)|lift up (related term)|lower (antonym)
+(verb)|move (generic term)|displace (generic term)
+(verb)|raise|move (generic term)|displace (generic term)
+(verb)|rise|arise|move up|go up|come up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|revoke|annul|countermand|reverse|repeal|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|steal (generic term)
+(verb)|hoist|wind|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|raise|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|raise|elevate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|rise|rear|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|liquidate (generic term)|pay off (generic term)
+(verb)|plagiarize|plagiarise|steal (generic term)
+(verb)|rustle|steal (generic term)
+(verb)|airlift|fly (generic term)
+(verb)|dig (generic term)|dig out (generic term)
+(verb)|call (generic term)|send for (generic term)
+(verb)|heave (generic term)|buckle (generic term)|warp (generic term)
+(verb)|raise|end (generic term)|terminate (generic term)
+(verb)|scalp (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|face-lift|operate on (generic term)|operate (generic term)
+lift bridge|1
+(noun)|drawbridge|bridge (generic term)|span (generic term)
+lift off|1
+(verb)|take off|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+lift out|1
+(verb)|scoop|scoop out|scoop up|take up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+lift pump|1
+(noun)|pump (generic term)
+lift up|2
+(verb)|pick up|gather up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|elate|uplift|pick up|intoxicate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|depress (antonym)
+lifted|1
+(adj)|upraised|raised (similar term)
+lifter|2
+(noun)|weightlifter|athlete (generic term)|jock (generic term)
+(noun)|booster|shoplifter|thief (generic term)|stealer (generic term)
+lifting device|1
+(noun)|device (generic term)
+liftman|1
+(noun)|elevator man|elevator boy|elevator operator (generic term)
+liftoff|1
+(noun)|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+ligament|2
+(noun)|connective tissue (generic term)
+(noun)|attachment (generic term)|bond (generic term)
+ligamentum teres uteri|1
+(noun)|round ligament of the uterus|ligament (generic term)
+ligan|1
+(noun)|lagan|lagend|wreckage (generic term)
+ligand|1
+(noun)|substance (generic term)|matter (generic term)
+ligate|3
+(verb)|join (generic term)|bring together (generic term)
+(verb)|bind (generic term)
+(verb)|bandage (generic term)
+ligation|1
+(noun)|tying (generic term)|ligature (generic term)
+ligature|6
+(noun)|phrase (generic term)|musical phrase (generic term)
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|band (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+(noun)|binder|ligament (generic term)
+(noun)|tying|fastening (generic term)|attachment (generic term)
+liger|1
+(noun)|big cat (generic term)|cat (generic term)
+light|46
+(adj)|airy (similar term)|buoyant (similar term)|floaty (similar term)|lighter-than-air (similar term)|low-density (similar term)|heavy (antonym)
+(adj)|light-colored|pale (similar term)|palish (similar term)|pastel (similar term)|powdery (similar term)|white (related term)|dark (antonym)
+(adj)|light-armed (similar term)|lightly-armed (similar term)|heavy (antonym)
+(adj)|fooling (similar term)|casual (similar term)|heavy (antonym)
+(adj)|ablaze (similar term)|inflamed (similar term)|reddened (similar term)|autofluorescent (similar term)|bioluminescent (similar term)|bright (similar term)|candescent (similar term)|floodlit (similar term)|floodlighted (similar term)|fluorescent (similar term)|illuminated (similar term)|lighted (similar term)|lit (similar term)|well-lighted (similar term)|illuminating (similar term)|incandescent (similar term)|candent (similar term)|lamplit (similar term)|lighting-up (similar term)|livid (similar term)|luminescent (similar term)|phosphorescent (similar term)|sunlit (similar term)|sunstruck (similar term)|white (similar term)|dark (antonym)
+(adj)|unaccented|weak|unstressed (similar term)
+(adj)|digestible (similar term)
+(adj)|friable|sandy|loose (similar term)
+(adj)|clean|clear|unclouded|pure (similar term)
+(adj)|lightsome|tripping|light-footed (similar term)
+(adj)|undemanding (similar term)
+(adj)|easy (similar term)|gentle (similar term)|soft (similar term)|heavy (antonym)
+(adj)|heavy (antonym)
+(adj)|faint|swooning|light-headed|lightheaded|ill (similar term)|sick (similar term)
+(adj)|flimsy|thin (similar term)
+(adj)|abstemious|temperate (similar term)
+(adj)|scant|short|insufficient (similar term)|deficient (similar term)
+(adj)|insignificant (similar term)|unimportant (similar term)
+(adj)|frivolous (similar term)
+(adj)|idle|frivolous (similar term)
+(adj)|light-duty (similar term)
+(adj)|lite|low-cal|calorie-free|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+(adj)|wakeful|shallow (similar term)
+(adj)|easy|loose|promiscuous|sluttish|wanton|unchaste (similar term)
+(noun)|visible light|visible radiation|actinic radiation (generic term)|actinic ray (generic term)
+(noun)|light source|source of illumination (generic term)
+(noun)|position (generic term)|view (generic term)|perspective (generic term)
+(noun)|luminosity|brightness|brightness level|luminance|luminousness|physical property (generic term)
+(noun)|scene (generic term)
+(noun)|illumination|condition (generic term)|status (generic term)
+(noun)|lightness|visual property (generic term)
+(noun)|friend (generic term)
+(noun)|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|lighting|illumination (generic term)|dark (antonym)
+(noun)|public knowledge (generic term)|general knowledge (generic term)
+(noun)|sparkle|twinkle|spark|vitality (generic term)|verve (generic term)|expression (generic term)|look (generic term)|aspect (generic term)|facial expression (generic term)|face (generic term)
+(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+(noun)|visual signal (generic term)
+(noun)|lighter|igniter|ignitor|device (generic term)
+(verb)|illume|illumine|light up|illuminate|lighten (generic term)|lighten up (generic term)
+(verb)|light up|fire up|ignite (generic term)|light (generic term)
+(verb)|alight|perch|land (generic term)|set down (generic term)
+(verb)|ignite|burn (generic term)|combust (generic term)|extinguish (antonym)
+(verb)|fall|fall (generic term)|return (generic term)|pass (generic term)|devolve (generic term)
+(verb)|unhorse|dismount|get off|get down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(adv)|lightly
+light-armed|2
+(adj)|lightly-armed|light (similar term)
+(adj)|armed (similar term)
+light-blue|1
+(adj)|pale blue|chromatic (similar term)
+light-boned|1
+(adj)|frail (similar term)
+light-colored|1
+(adj)|light|pale (similar term)|palish (similar term)|pastel (similar term)|powdery (similar term)|white (related term)|dark (antonym)
+light-duty|1
+(adj)|light (similar term)|heavy-duty (antonym)
+light-emitting diode|1
+(noun)|LED|diode (generic term)|semiconductor diode (generic term)|junction rectifier (generic term)|crystal rectifier (generic term)
+light-fingered|1
+(adj)|nimble-fingered|adroit (similar term)
+light-footed|1
+(adj)|light (similar term)|lightsome (similar term)|tripping (similar term)|heavy-footed (antonym)
+light-green|1
+(adj)|green|greenish|dark-green|chromatic (similar term)
+light-haired|1
+(adj)|blond|blonde|ash-blonde (similar term)|platinum-blonde (similar term)|towheaded (similar term)|fair (similar term)|fairish (similar term)|flaxen (similar term)|sandy (similar term)|nordic (similar term)|redheaded (similar term)|brunet (antonym)
+light-handed|1
+(adj)|delicate (similar term)
+light-headed|2
+(adj)|faint|light|swooning|lightheaded|ill (similar term)|sick (similar term)
+(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|lightheaded|silly|frivolous (similar term)
+light-headedly|1
+(adv)|dizzily|giddily
+light-hearted|1
+(adj)|blithe|blithesome|lighthearted|lightsome|cheerful (similar term)
+light-heartedly|1
+(adv)|lightsomely
+light-minded|1
+(adj)|flippant|frivolous (similar term)
+light-mindedness|1
+(noun)|flippancy|levity (generic term)
+light-o'-love|1
+(noun)|light-of-love|wanton (generic term)
+light-of-love|1
+(noun)|light-o'-love|wanton (generic term)
+light-sensitive|1
+(adj)|photosensitive|sensitive (similar term)
+light-skinned|1
+(adj)|white (similar term)
+light-tight|1
+(adj)|lightproof|opaque (similar term)
+light-year|1
+(noun)|light year|astronomy unit (generic term)
+light adaptation|1
+(noun)|adaptation (generic term)
+light air|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+light arm|1
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+light ballast|1
+(noun)|ballast|electrical device (generic term)
+light beam|1
+(noun)|beam|beam of light|ray|ray of light|shaft|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+light beer|1
+(noun)|lager (generic term)|lager beer (generic term)
+light bread|1
+(noun)|white bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+light breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+light brown|1
+(noun)|brown (generic term)|brownness (generic term)
+light bulb|1
+(noun)|lightbulb|bulb|incandescent lamp|electric light|electric-light bulb|electric lamp (generic term)
+light circuit|1
+(noun)|lighting circuit|wiring (generic term)
+light colonel|1
+(noun)|lieutenant colonel|colonel (generic term)
+light company|1
+(noun)|power company|power service|electric company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+light cream|1
+(noun)|coffee cream|single cream|cream (generic term)
+light diet|1
+(noun)|diet (generic term)
+light filter|1
+(noun)|diffusing screen|filter (generic term)
+light flyweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+light heavyweight|3
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|cruiserweight|prizefighter (generic term)|gladiator (generic term)
+light hour|1
+(noun)|astronomy unit (generic term)
+light intensity|1
+(noun)|candlepower|intensity (generic term)|strength (generic term)|intensity level (generic term)
+light machine gun|1
+(noun)|submachine gun (generic term)
+light meter|1
+(noun)|exposure meter|photometer|photographic equipment (generic term)
+light microscope|1
+(noun)|microscope (generic term)
+light middleweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+light minute|1
+(noun)|astronomy unit (generic term)
+light opera|1
+(noun)|operetta|comic opera (generic term)|opera bouffe (generic term)|bouffe (generic term)|opera comique (generic term)
+light pen|1
+(noun)|electronic stylus|pointer (generic term)
+light reaction|1
+(noun)|photochemical reaction (generic term)
+light reflex|1
+(noun)|pupillary reflex|miosis|myosis|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+light second|1
+(noun)|astronomy unit (generic term)
+light show|1
+(noun)|display (generic term)|exhibit (generic term)|showing (generic term)
+light source|1
+(noun)|light|source of illumination (generic term)
+light speed|1
+(noun)|speed of light|c|speed (generic term)|velocity (generic term)|constant (generic term)
+light time|1
+(noun)|distance (generic term)|length (generic term)
+light touch|1
+(noun)|brush|touch (generic term)|touching (generic term)
+light unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+light up|5
+(verb)|erupt (generic term)|ignite (generic term)|catch fire (generic term)|take fire (generic term)|combust (generic term)|conflagrate (generic term)
+(verb)|light|illume|illumine|illuminate|lighten (generic term)|lighten up (generic term)
+(verb)|clear up|clear|brighten|overcast (antonym)
+(verb)|ignite (generic term)|light (generic term)
+(verb)|fire up|light|ignite (generic term)|light (generic term)
+light upon|1
+(verb)|fall upon|strike|come upon|chance upon|come across|chance on|happen upon|attain|discover|find (generic term)|regain (generic term)
+light welterweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+light whipping cream|1
+(noun)|whipping cream|cream (generic term)
+light within|1
+(noun)|Inner Light|Light|Light Within|Christ Within|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+light year|1
+(noun)|light-year|astronomy unit (generic term)
+lightbulb|1
+(noun)|light bulb|bulb|incandescent lamp|electric light|electric-light bulb|electric lamp (generic term)
+lighted|2
+(adj)|lit|ablaze (similar term)|afire (similar term)|aflame (similar term)|aflare (similar term)|alight (similar term)|blazing (similar term)|burning (similar term)|flaming (similar term)|on fire (similar term)|ignited (similar term)|enkindled (similar term)|kindled (similar term)|unlighted (antonym)
+(adj)|illuminated|lit|well-lighted|light (similar term)
+lighten|7
+(verb)|lighten up|buoy up|cheer (generic term)|weigh down (antonym)
+(verb)|unburden (generic term)|disburden (generic term)
+(verb)|lighten up|buoy up|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+(verb)|brighten|lighten up|change (generic term)|alter (generic term)|modify (generic term)|darken (antonym)
+(verb)|brighten|change (generic term)|darken (antonym)
+(verb)|lighten up|change (generic term)
+(verb)|relieve|mitigate (generic term)
+lighten up|4
+(verb)|lighten|buoy up|cheer (generic term)|weigh down (antonym)
+(verb)|lighten|buoy up|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+(verb)|brighten|lighten|change (generic term)|alter (generic term)|modify (generic term)|darken (antonym)
+(verb)|lighten|change (generic term)
+lightening|2
+(noun)|descent (generic term)
+(noun)|whitening|change of color (generic term)
+lighter|4
+(noun)|igniter|ignitor|fuel (generic term)
+(noun)|light|igniter|ignitor|device (generic term)
+(noun)|barge|flatboat|hoy|boat (generic term)
+(verb)|transport (generic term)
+lighter-than-air|1
+(adj)|light (similar term)
+lighter-than-air craft|1
+(noun)|aircraft (generic term)
+lighterage|2
+(noun)|fee (generic term)
+(noun)|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+lighterman|1
+(noun)|bargeman|bargee|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+lightheaded|2
+(adj)|faint|light|swooning|light-headed|ill (similar term)|sick (similar term)
+(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|light-headed|silly|frivolous (similar term)
+lightheadedness|2
+(noun)|dizziness|giddiness|vertigo|symptom (generic term)
+(noun)|heedlessness (generic term)|mindlessness (generic term)|rashness (generic term)
+lighthearted|1
+(adj)|blithe|blithesome|lightsome|light-hearted|cheerful (similar term)
+lightheartedness|1
+(noun)|carefreeness|insouciance|lightsomeness|cheerfulness (generic term)|blitheness (generic term)
+lighthorse harry lee|1
+(noun)|Lee|Henry Lee|Lighthorse Harry Lee|soldier (generic term)
+lighthouse|1
+(noun)|beacon|beacon light|pharos|tower (generic term)
+lighthouse keeper|1
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+lighting|4
+(noun)|light|illumination (generic term)|dark (antonym)
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|interior decoration (generic term)|interior design (generic term)
+(noun)|ignition|firing|kindling|inflammation|burning (generic term)|combustion (generic term)
+lighting-up|1
+(adj)|light (similar term)
+lighting circuit|1
+(noun)|light circuit|wiring (generic term)
+lighting fixture|1
+(noun)|fixture (generic term)
+lighting industry|1
+(noun)|industry (generic term)
+lightless|2
+(adj)|invisible (similar term)|unseeable (similar term)
+(adj)|unilluminated|unlighted|unlit|dark (similar term)
+lightlessness|1
+(noun)|total darkness|blackness|pitch blackness|black|dark (generic term)|darkness (generic term)
+lightly|4
+(adv)|light
+(adv)|softly|gently
+(adv)|heavily (antonym)
+(adv)|thinly|thickly (antonym)
+lightly-armed|1
+(adj)|light-armed|light (similar term)
+lightly armored|1
+(adj)|lightly armoured|armored (similar term)|armoured (similar term)
+lightly armoured|1
+(adj)|lightly armored|armored (similar term)|armoured (similar term)
+lightness|6
+(noun)|elation|high spirits|joy (generic term)|joyousness (generic term)|joyfulness (generic term)
+(noun)|weightlessness|weight (generic term)|heaviness (antonym)
+(noun)|agility|legerity|lightsomeness|nimbleness|gracefulness (generic term)
+(noun)|value (generic term)|darkness (antonym)
+(noun)|light|visual property (generic term)
+(noun)|lightsomeness|giddiness (generic term)|silliness (generic term)
+lightning|2
+(noun)|atmospheric electricity (generic term)
+(noun)|flash (generic term)
+lightning arrester|1
+(noun)|surge suppressor|surge protector|spike suppressor|spike arrester|suppressor (generic term)|suppresser (generic term)
+lightning bug|1
+(noun)|firefly|beetle (generic term)
+lightning conductor|1
+(noun)|lightning rod|conductor (generic term)
+lightning hurler|1
+(noun)|Jupiter Fulgur|Jupiter Fulminator|Lightning Hurler|Jupiter (generic term)|Jove (generic term)
+lightning rod|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|lightning conductor|conductor (generic term)
+lightproof|1
+(adj)|light-tight|opaque (similar term)
+lights-out|2
+(noun)|bedtime (generic term)
+(noun)|taps|bugle call (generic term)
+lightship|1
+(noun)|ship (generic term)
+lightsome|2
+(adj)|light|tripping|light-footed (similar term)
+(adj)|blithe|blithesome|lighthearted|light-hearted|cheerful (similar term)
+lightsomely|2
+(adv)|trippingly
+(adv)|light-heartedly
+lightsomeness|3
+(noun)|carefreeness|insouciance|lightheartedness|cheerfulness (generic term)|blitheness (generic term)
+(noun)|agility|legerity|lightness|nimbleness|gracefulness (generic term)
+(noun)|lightness|giddiness (generic term)|silliness (generic term)
+lightweight|5
+(adj)|unimportant (similar term)
+(noun)|prizefighter (generic term)|gladiator (generic term)
+(noun)|whippersnapper|jackanapes|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+lightwood|1
+(noun)|Acacia melanoxylon|blackwood (generic term)|blackwood tree (generic term)
+ligne|1
+(noun)|linear unit (generic term)
+ligneous|1
+(adj)|woody (similar term)
+ligneous plant|1
+(noun)|woody plant|vascular plant (generic term)|tracheophyte (generic term)
+lignified|1
+(adj)|woody|hard (similar term)
+lignify|1
+(verb)|convert (generic term)
+lignin|1
+(noun)|polymer (generic term)
+lignite|1
+(noun)|brown coal|wood coal|coal (generic term)|humate (generic term)
+lignosae|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+lignum|1
+(noun)|plant tissue (generic term)
+lignum vitae|2
+(noun)|guaiac|guaiacum|wood (generic term)
+(noun)|Guaiacum officinale|angiospermous tree (generic term)|flowering tree (generic term)
+ligularia|1
+(noun)|Ligularia|genus Ligularia|asterid dicot genus (generic term)
+ligule|1
+(noun)|plant part (generic term)|plant structure (generic term)
+liguria|1
+(noun)|Liguria|Italian region (generic term)
+ligurian sea|1
+(noun)|Ligurian Sea|sea (generic term)
+ligustrum|1
+(noun)|Ligustrum|genus Ligustrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+ligustrum amurense|1
+(noun)|Amur privet|Ligustrum amurense|privet (generic term)
+ligustrum ibolium|1
+(noun)|ibolium privet|ibota privet|Ligustrum ibolium|privet (generic term)
+ligustrum japonicum|1
+(noun)|Japanese privet|Ligustrum japonicum|privet (generic term)
+ligustrum lucidum|1
+(noun)|Chinese privet|white wax tree|Ligustrum lucidum|privet (generic term)
+ligustrum obtusifolium|1
+(noun)|Ligustrum obtusifolium|privet (generic term)
+ligustrum ovalifolium|1
+(noun)|California privet|Ligustrum ovalifolium|privet (generic term)
+ligustrum vulgare|1
+(noun)|common privet|Ligustrum vulgare|privet (generic term)
+lii|1
+(adj)|fifty-two|52|cardinal (similar term)
+liii|1
+(adj)|fifty-three|53|cardinal (similar term)
+likable|2
+(adj)|sympathetic|appealing|likeable|unsympathetic (antonym)
+(adj)|likeable|liked (similar term)
+like|10
+(adj)|similar|like-minded (similar term)|look-alike (similar term)|suchlike (similar term)|same (related term)|unlike (antonym)
+(adj)|equal|equivalent|same|unlike (antonym)
+(adj)|alike|similar|unalike (antonym)
+(adj)|comparable|corresponding|same (similar term)
+(noun)|the like|the likes of|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|ilk|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(verb)|wish|care|desire (generic term)|want (generic term)
+(verb)|dislike (antonym)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|desire (generic term)|want (generic term)
+like-minded|1
+(adj)|like (similar term)|similar (similar term)
+like a shot|1
+(adv)|immediately|instantly|straightaway|straight off|directly|now|right away|at once|forthwith|in real time
+like an expert|1
+(adv)|expertly|amateurishly (antonym)
+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|unsympathetic (antonym)
+(adj)|likable|liked (similar term)
+liked|1
+(adj)|likable (similar term)|likeable (similar term)|disliked (antonym)
+likelihood|1
+(noun)|likeliness|probability (generic term)|unlikeliness (antonym)|unlikelihood (antonym)
+likeliness|1
+(noun)|likelihood|probability (generic term)|unlikeliness (antonym)|unlikelihood (antonym)
+likely|5
+(adj)|apt (similar term)|liable (similar term)|probable (similar term)|promising (similar term)|possible (related term)|unlikely (antonym)
+(adj)|probable|equiprobable (similar term)|presumptive (similar term)|verisimilar (similar term)|improbable (antonym)
+(adj)|expected|potential|prospective (similar term)
+(adj)|credible (similar term)|believable (similar term)
+(adv)|probably|in all likelihood|in all probability|belike
+liken|1
+(verb)|compare|equate|study (generic term)|consider (generic term)
+likeness|2
+(noun)|alikeness|similitude|similarity (generic term)|dissimilitude (antonym)|unlikeness (antonym)
+(noun)|semblance|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+likening|1
+(noun)|comparison (generic term)|comparing (generic term)
+likewise|3
+(adv)|similarly
+(adv)|besides|too|also|as well
+(adv)|alike
+liking|1
+(noun)|feeling (generic term)|dislike (antonym)
+likuta|1
+(noun)|Zairese monetary unit (generic term)
+lilac|2
+(adj)|lavender|lilac-colored|chromatic (similar term)
+(noun)|shrub (generic term)|bush (generic term)
+lilac-blue|1
+(adj)|violet-blue|chromatic (similar term)
+lilac-colored|1
+(adj)|lavender|lilac|chromatic (similar term)
+lilac-pink|1
+(adj)|lavender-pink|violet-pink|chromatic (similar term)
+lilac-purple|1
+(adj)|chromatic (similar term)
+lilangeni|1
+(noun)|Swaziland monetary unit (generic term)
+liliaceae|1
+(noun)|Liliaceae|family Liliaceae|lily family|liliid monocot family (generic term)
+liliaceous|1
+(adj)|liliid monocot family (related term)
+liliaceous plant|1
+(noun)|bulbous plant (generic term)
+liliales|1
+(noun)|Liliales|order Liliales|plant order (generic term)
+lilian alicia marks|1
+(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+liliid monocot family|1
+(noun)|monocot family (generic term)|liliopsid family (generic term)
+liliid monocot genus|1
+(noun)|monocot genus (generic term)|liliopsid genus (generic term)
+liliidae|1
+(noun)|Liliidae|subclass Liliidae|class (generic term)
+liliopsid|1
+(noun)|monocot|monocotyledon|endogen|angiosperm (generic term)|flowering plant (generic term)
+liliopsid family|1
+(noun)|monocot family|family (generic term)
+liliopsid genus|1
+(noun)|monocot genus|genus (generic term)
+liliopsida|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+lilith|1
+(noun)|Lilith|Semitic deity (generic term)
+lilium|1
+(noun)|Lilium|genus Lilium|liliid monocot genus (generic term)
+lilium auratum|1
+(noun)|mountain lily|Lilium auratum|lily (generic term)
+lilium canadense|1
+(noun)|Canada lily|wild yellow lily|meadow lily|wild meadow lily|Lilium canadense|lily (generic term)
+lilium candidum|1
+(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily (generic term)
+lilium catesbaei|1
+(noun)|tiger lily|leopard lily|pine lily|Lilium catesbaei|lily (generic term)
+lilium columbianum|1
+(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily (generic term)
+lilium lancifolium|1
+(noun)|tiger lily|devil lily|kentan|Lilium lancifolium|lily (generic term)
+lilium longiflorum|1
+(noun)|Easter lily|Bermuda lily|white trumpet lily|Lilium longiflorum|lily (generic term)
+lilium maritinum|1
+(noun)|coast lily|Lilium maritinum|lily (generic term)
+lilium martagon|1
+(noun)|Turk's-cap|martagon|Lilium martagon|lily (generic term)
+lilium michiganense|1
+(noun)|Michigan lily|Lilium michiganense|lily (generic term)
+lilium pardalinum|1
+(noun)|leopard lily|panther lily|Lilium pardalinum|lily (generic term)
+lilium philadelphicum|1
+(noun)|wood lily|Lilium philadelphicum|lily (generic term)
+lilium superbum|1
+(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily (generic term)
+liliuokalani|1
+(noun)|Liliuokalani|Lydia Kamekeha Paki Liliuokalani|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+lille|1
+(noun)|Lille|city (generic term)|metropolis (generic term)|urban center (generic term)
+lillian gish|1
+(noun)|Gish|Lillian Gish|actress (generic term)
+lillian hellman|1
+(noun)|Hellman|Lillian Hellman|dramatist (generic term)|playwright (generic term)
+lillian russell|1
+(noun)|Russell|Lillian Russell|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+lillie|1
+(noun)|Lillie|Beatrice Lillie|Lady Peel|actress (generic term)
+lillie langtry|1
+(noun)|Langtry|Lillie Langtry|Jersey Lillie|Emilie Charlotte le Breton|actress (generic term)
+lilliput|1
+(noun)|Lilliput|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+lilliputian|5
+(adj)|Lilliputian|imaginary place|mythical place|fictitious place (related term)
+(adj)|bantam|diminutive|midget|petite|tiny|flyspeck|small (similar term)|little (similar term)
+(adj)|fiddling|footling|little|niggling|piddling|piffling|petty|picayune|trivial|unimportant (similar term)
+(noun)|small person (generic term)
+(noun)|Lilliputian|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+lilo|1
+(noun)|Lilo|air mattress (generic term)
+lilongwe|1
+(noun)|Lilongwe|capital of Malawi|national capital (generic term)
+lilt|2
+(noun)|swing|rhythmicity (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+lilting|1
+(adj)|swinging|swingy|tripping|rhythmical (similar term)|rhythmic (similar term)
+lily|1
+(noun)|liliaceous plant (generic term)
+lily-like|1
+(adj)|lilylike|flowering (similar term)
+lily-livered|1
+(adj)|chicken|chickenhearted|white-livered|yellow|yellow-bellied|cowardly (similar term)|fearful (similar term)
+lily-of-the-valley tree|1
+(noun)|andromeda|Japanese andromeda|Pieris japonica|shrub (generic term)|bush (generic term)
+lily-white|2
+(adj)|white|segregated (similar term)|unintegrated (similar term)
+(adj)|achromatic (similar term)
+lily family|1
+(noun)|Liliaceae|family Liliaceae|liliid monocot family (generic term)
+lily of the incas|1
+(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria (generic term)
+lily of the nile|1
+(noun)|agapanthus|lily of the Nile|liliaceous plant (generic term)
+lily of the valley|1
+(noun)|May lily|Convallaria majalis|liliaceous plant (generic term)
+lily pad|1
+(noun)|pad (generic term)
+lily pons|1
+(noun)|Pons|Lily Pons|Alice-Josephine Pons|coloratura (generic term)|coloratura soprano (generic term)
+lily turf|1
+(noun)|lilyturf|Liriope muscari|liliaceous plant (generic term)
+lilylike|1
+(adj)|lily-like|flowering (similar term)
+lilyturf|1
+(noun)|lily turf|Liriope muscari|liliaceous plant (generic term)
+lima|1
+(noun)|Lima|capital of Peru|national capital (generic term)
+lima bean|3
+(noun)|sieva bean|butter bean|butter-bean plant|Phaseolus lunatus|shell bean (generic term)|shell bean plant (generic term)
+(noun)|lima bean plant|Phaseolus limensis|shell bean (generic term)|shell bean plant (generic term)
+(noun)|shell bean (generic term)
+lima bean plant|1
+(noun)|lima bean|Phaseolus limensis|shell bean (generic term)|shell bean plant (generic term)
+limacidae|1
+(noun)|Limacidae|family Limacidae|mollusk family (generic term)
+limacine|1
+(adj)|limacoid|gastropod|univalve (related term)
+limacoid|1
+(adj)|limacine|gastropod|univalve (related term)
+liman|1
+(noun)|lagoon (generic term)|laguna (generic term)|lagune (generic term)
+limanda|1
+(noun)|Limanda|genus Limanda|fish genus (generic term)
+limanda ferruginea|1
+(noun)|yellowtail flounder|Limanda ferruginea|righteye flounder (generic term)|righteyed flounder (generic term)
+limax|1
+(noun)|Limax|genus Limax|mollusk genus (generic term)
+limb|6
+(noun)|extremity (generic term)|appendage (generic term)|member (generic term)
+(noun)|tree branch|branch (generic term)
+(noun)|edge (generic term)|border (generic term)
+(noun)|part (generic term)|portion (generic term)
+(noun)|arc (generic term)
+(noun)|arm|branch|projection (generic term)
+limb-girdle muscular dystrophy|1
+(noun)|muscular dystrophy (generic term)|dystrophy (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)
+limbed|1
+(adj)|boughed (similar term)|flipper-like (similar term)|heavy-limbed (similar term)|sharp-limbed (similar term)|limbless (antonym)
+limber|6
+(adj)|supple|flexible (similar term)
+(adj)|flexible (similar term)|flexile (similar term)
+(adj)|supple|flexible (similar term)|flexile (similar term)
+(noun)|horse-drawn vehicle (generic term)
+(verb)|limber up|attach (generic term)
+(verb)|warm up (generic term)
+limber pine|1
+(noun)|Pinus flexilis|white pine (generic term)
+limber up|2
+(verb)|limber|attach (generic term)
+(verb)|warm up|loosen up|exercise (generic term)|work out (generic term)
+limbers|1
+(noun)|channel (generic term)
+limbic|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+limbic brain|1
+(noun)|limbic system|visceral brain|neural structure (generic term)
+limbic system|1
+(noun)|visceral brain|limbic brain|neural structure (generic term)
+limbless|1
+(adj)|boughless (similar term)|limbed (antonym)
+limbo|2
+(noun)|oblivion|obscurity (generic term)
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+limburger|1
+(noun)|Limburger|cheese (generic term)
+limbus|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+lime|8
+(noun)|calcium hydroxide|slaked lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+(noun)|calcium oxide|quicklime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide (generic term)
+(noun)|birdlime|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+(noun)|lime tree|Citrus aurantifolia|citrus (generic term)|citrus tree (generic term)
+(noun)|linden|linden tree|basswood|lime tree|tree (generic term)
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+(verb)|birdlime|spread (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|cover (generic term)
+lime disease spirochete|1
+(noun)|Borrelia burgdorferi|Lime disease spirochete|spirochete (generic term)|spirochaete (generic term)
+lime hydrate|1
+(noun)|calcium hydroxide|lime|slaked lime|hydrated lime|calcium hydrate|caustic lime|hydroxide (generic term)|hydrated oxide (generic term)
+lime juice|1
+(noun)|juice (generic term)
+lime tree|2
+(noun)|lime|Citrus aurantifolia|citrus (generic term)|citrus tree (generic term)
+(noun)|linden|linden tree|basswood|lime|tree (generic term)
+limeade|1
+(noun)|fruit drink (generic term)|ade (generic term)
+limeira|1
+(noun)|Limeira|city (generic term)|metropolis (generic term)|urban center (generic term)
+limekiln|1
+(noun)|kiln (generic term)
+limelight|2
+(noun)|spotlight|glare|public eye|prominence (generic term)
+(noun)|calcium light|lamp (generic term)
+limen|1
+(noun)|threshold|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+limenitis|1
+(noun)|Limenitis|genus Limenitis|arthropod genus (generic term)
+limenitis archippus|1
+(noun)|viceroy|Limenitis archippus|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+limenitis arthemis|1
+(noun)|banded purple|white admiral|Limenitis arthemis|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+limenitis astyanax|1
+(noun)|red-spotted purple|Limenitis astyanax|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+limenitis camilla|1
+(noun)|white admiral|Limenitis camilla|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+limerick|2
+(noun)|Limerick|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|verse (generic term)|rhyme (generic term)
+limestone|1
+(noun)|rock (generic term)|stone (generic term)|sedimentary rock (generic term)
+limestone fern|1
+(noun)|northern oak fern|Gymnocarpium robertianum|fern (generic term)
+limestone salamander|1
+(noun)|Hydromantes brunus|web-toed salamander (generic term)
+limewater|1
+(noun)|water (generic term)|H2O (generic term)
+limey|1
+(noun)|John Bull|Englishman (generic term)
+limicolae|1
+(noun)|Limicolae|suborder Limicolae|animal order (generic term)
+limicoline bird|1
+(noun)|shorebird|shore bird|wading bird (generic term)|wader (generic term)
+limit|9
+(noun)|bound|boundary|extent (generic term)
+(noun)|terminus ad quem|terminal point|end (generic term)|ending (generic term)
+(noun)|demarcation|demarcation line|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|extremity (generic term)
+(noun)|limit point|point of accumulation|indefinite quantity (generic term)
+(noun)|limitation|indefinite quantity (generic term)
+(verb)|restrict|restrain|trammel|bound|confine|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|circumscribe|confine|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|specify|set|determine|fix|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+limit point|1
+(noun)|limit|point of accumulation|indefinite quantity (generic term)
+limitation|5
+(noun)|restriction|rule (generic term)|regulation (generic term)
+(noun)|disadvantage (generic term)
+(noun)|limit|indefinite quantity (generic term)
+(noun)|time limit (generic term)
+(noun)|restriction|regulation (generic term)|regulating (generic term)
+limited|8
+(adj)|constricted (similar term)|controlled (similar term)|restricted (similar term)|minor (similar term)|modest (similar term)|small (similar term)|small-scale (similar term)|pocket-size (similar term)|pocket-sized (similar term)|narrow (similar term)|narrow (related term)|unlimited (antonym)
+(adj)|circumscribed|restricted (similar term)
+(adj)|noncomprehensive (similar term)|incomprehensive (similar term)
+(adj)|modified|qualified (similar term)
+(adj)|moderate (similar term)
+(adj)|special|specific (similar term)
+(adj)|finite (similar term)
+(noun)|express|public transport (generic term)|local (antonym)
+limited audit|1
+(noun)|audited account (generic term)|audit (generic term)
+limited company|1
+(noun)|Ltd.|Ld.|company (generic term)
+limited edition|1
+(noun)|edition (generic term)
+limited liability|1
+(noun)|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+limited review|1
+(noun)|review|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+limited war|1
+(noun)|war (generic term)|warfare (generic term)
+limiter|1
+(noun)|clipper|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+limiting|3
+(adj)|confining|constraining|constrictive|restricting|restrictive (similar term)
+(adj)|restrictive (similar term)
+(noun)|modification|qualifying|grammatical relation (generic term)
+limitless|3
+(adj)|illimitable|measureless|unmeasured|immeasurable (similar term)|unmeasurable (similar term)|immensurable (similar term)
+(adj)|unlimited|bottomless (similar term)|oceanic (similar term)|untrammeled (similar term)|untrammelled (similar term)|limited (antonym)
+(adj)|boundless|unbounded|infinite (similar term)
+limitlessness|1
+(noun)|infiniteness|infinitude|unboundedness|boundlessness|quality (generic term)|finiteness (antonym)
+limn|2
+(verb)|delineate|outline|draw (generic term)
+(verb)|portray|depict|represent (generic term)|interpret (generic term)
+limner|1
+(noun)|portraitist|portrait painter|portrayer|painter (generic term)
+limning|1
+(noun)|delineation|depiction|line drawing|drawing (generic term)
+limnobium|1
+(noun)|Limnobium|genus Limnobium|monocot genus (generic term)|liliopsid genus (generic term)
+limnocryptes|1
+(noun)|Limnocryptes|genus Limnocryptes|bird genus (generic term)
+limnocryptes minima|1
+(noun)|jacksnipe|half snipe|Limnocryptes minima|snipe (generic term)
+limnodium spongia|1
+(noun)|American frogbit|Limnodium spongia|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+limnodromus|1
+(noun)|Limnodromus|genus Limnodromus|bird genus (generic term)
+limnodromus griseus|1
+(noun)|greyback|grayback|Limnodromus griseus|dowitcher (generic term)
+limnodromus scolopaceus|1
+(noun)|red-breasted snipe|Limnodromus scolopaceus|dowitcher (generic term)
+limnological|1
+(adj)|earth science (related term)
+limnologist|1
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+limnology|1
+(noun)|earth science (generic term)
+limnos|1
+(noun)|Lemnos|Limnos|island (generic term)
+limo|1
+(noun)|limousine|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+limonene|1
+(noun)|terpene (generic term)
+limonite|1
+(noun)|iron ore (generic term)
+limonium|1
+(noun)|Limonium|genus Limonium|dicot genus (generic term)|magnoliopsid genus (generic term)
+limosa|1
+(noun)|Limosa|genus Limosa|bird genus (generic term)
+limosa haemastica|1
+(noun)|Hudsonian godwit|Limosa haemastica|godwit (generic term)
+limousin|1
+(noun)|Limousin|French region (generic term)
+limousine|1
+(noun)|limo|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+limp|5
+(adj)|flaccid|lax|slack|weak (similar term)
+(adj)|wilted|stale (similar term)
+(noun)|hitch|hobble|gait (generic term)
+(verb)|gimp|hobble|hitch|walk (generic term)
+(verb)|proceed (generic term)|go forward (generic term)|continue (generic term)
+limpa|1
+(noun)|rye bread (generic term)
+limper|1
+(noun)|hobbler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+limpet|2
+(noun)|shellfish (generic term)
+(noun)|seasnail (generic term)
+limpid|3
+(adj)|liquid|clear (similar term)
+(adj)|crystalline|crystal clear|lucid|pellucid|transparent|clear (similar term)
+(adj)|lucid|luculent|pellucid|crystal clear|perspicuous|clear (similar term)
+limpidity|2
+(noun)|clarity|lucidity|lucidness|pellucidity|clearness|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+(noun)|pellucidness|pellucidity|transparency (generic term)|transparence (generic term)|transparentness (generic term)
+limpidly|1
+(adv)|lucidly|pellucidly|perspicuously
+limping|1
+(noun)|lameness|gimp|gimpiness|gameness|claudication|disability of walking (generic term)
+limpkin|1
+(noun)|Aramus pictus|wading bird (generic term)|wader (generic term)
+limpness|1
+(noun)|flabbiness|flaccidity|softness (generic term)
+limpopo|1
+(noun)|Limpopo|Crocodile River|river (generic term)
+limulidae|1
+(noun)|Limulidae|family Limulidae|arthropod family (generic term)
+limulus|1
+(noun)|Limulus|genus Limulus|arthropod genus (generic term)
+limulus polyphemus|1
+(noun)|horseshoe crab|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod (generic term)
+lin|1
+(noun)|Lin|Maya Lin|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|architect (generic term)|designer (generic term)
+linac|1
+(noun)|linear accelerator|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+linaceae|1
+(noun)|Linaceae|family Linaceae|flax family|dicot family (generic term)|magnoliopsid family (generic term)
+linage|2
+(noun)|lineage|number (generic term)
+(noun)|lineage|rate (generic term)|charge per unit (generic term)
+linalool|1
+(noun)|essential oil (generic term)|volatile oil (generic term)
+linanthus|1
+(noun)|Linanthus|genus Linanthus|plant genus (generic term)
+linanthus dianthiflorus|1
+(noun)|ground pink|fringed pink|moss pink|Linanthus dianthiflorus|phlox (generic term)
+linanthus dichotomus|1
+(noun)|evening-snow|Linanthus dichotomus|phlox (generic term)
+linaria|1
+(noun)|Linaria|genus Linaria|asterid dicot genus (generic term)
+linaria canadensis|1
+(noun)|blue toadflax|old-field toadflax|Linaria canadensis|toadflax (generic term)|butter-and-eggs (generic term)|wild snapdragon (generic term)|devil's flax (generic term)|Linaria vulgaris (generic term)
+linaria vulgaris|1
+(noun)|toadflax|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris|flower (generic term)
+linchpin|2
+(noun)|anchor|mainstay|keystone|backbone|lynchpin|support (generic term)
+(noun)|lynchpin|pin (generic term)
+lincocin|1
+(noun)|lincomycin|Lincocin|antibiotic (generic term)|antibiotic drug (generic term)
+lincoln|3
+(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer (generic term)|attorney (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Lincoln|capital of Nebraska|state capital (generic term)
+(noun)|Lincoln|domestic sheep (generic term)|Ovis aries (generic term)
+lincoln's birthday|1
+(noun)|Lincoln's Birthday|February 12|day (generic term)
+lincoln memorial|1
+(noun)|Lincoln Memorial|memorial (generic term)|monument (generic term)
+lincoln steffens|1
+(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist (generic term)
+lincolnesque|1
+(adj)|Lincolnesque|Lincolnian|lawyer|attorney|President of the United States|United States President|President|Chief Executive (related term)
+lincolnian|1
+(adj)|Lincolnesque|Lincolnian|lawyer|attorney|President of the United States|United States President|President|Chief Executive (related term)
+lincolnshire|1
+(noun)|Lincolnshire|county (generic term)
+lincomycin|1
+(noun)|Lincocin|antibiotic (generic term)|antibiotic drug (generic term)
+lind|1
+(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano (generic term)
+lindane|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+lindbergh|1
+(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+linden|2
+(noun)|basswood|wood (generic term)
+(noun)|linden tree|basswood|lime|lime tree|tree (generic term)
+linden family|1
+(noun)|Tiliaceae|family Tiliaceae|dilleniid dicot family (generic term)
+linden tree|1
+(noun)|linden|basswood|lime|lime tree|tree (generic term)
+lindera|1
+(noun)|Lindera|genus Lindera|magnoliid dicot genus (generic term)
+lindera benzoin|1
+(noun)|spicebush|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+lindesnes|1
+(noun)|Lindesnes|Naze|cape (generic term)|ness (generic term)
+lindheimera|1
+(noun)|Lindheimera|genus Lindheimera|asterid dicot genus (generic term)
+lindheimera texana|1
+(noun)|Texas star|Lindheimera texana|flower (generic term)
+lindsay|2
+(noun)|Lindsay|Howard Lindsay|dramatist (generic term)|playwright (generic term)
+(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet (generic term)
+lindy|1
+(noun)|lindy hop|social dancing (generic term)
+lindy hop|1
+(noun)|lindy|social dancing (generic term)
+line|33
+(noun)|formation (generic term)
+(noun)|shape (generic term)|form (generic term)
+(noun)|text (generic term)|textual matter (generic term)
+(noun)|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+(noun)|military position (generic term)|position (generic term)
+(noun)|argumentation|logical argument|line of reasoning|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(noun)|cable|transmission line|conductor (generic term)
+(noun)|course|series (generic term)
+(noun)|location (generic term)
+(noun)|wrinkle|furrow|crease|crinkle|seam|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|pipeline|pipe (generic term)|pipage (generic term)|piping (generic term)
+(noun)|railway line|rail line|road (generic term)|route (generic term)
+(noun)|telephone line|phone line|telephone circuit|subscriber line|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|conformity (generic term)|conformation (generic term)|compliance (generic term)|abidance (generic term)
+(noun)|lineage|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|occupation|business|job|line of work|activity (generic term)
+(noun)|mark (generic term)|print (generic term)
+(noun)|channel|communication channel|communication (generic term)|communicating (generic term)
+(noun)|product line|line of products|line of merchandise|business line|line of business|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|carrier (generic term)|common carrier (generic term)
+(noun)|agate line|area unit (generic term)|square measure (generic term)
+(noun)|credit line|line of credit|bank line|personal credit line|personal line of credit|credit (generic term)
+(noun)|tune|melody|air|strain|melodic line|melodic phrase|music (generic term)
+(noun)|note|short letter|billet|personal letter (generic term)
+(noun)|dividing line|demarcation|contrast|differentiation (generic term)|distinction (generic term)
+(noun)|production line|assembly line|mechanical system (generic term)
+(verb)|run along|lie (generic term)
+(verb)|cover (generic term)
+(verb)|trace|draw|describe|delineate|mark (generic term)
+(verb)|score (generic term)|nock (generic term)|mark (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|reinforce (generic term)|reenforce (generic term)
+line-at-a-time printer|1
+(noun)|line printer|printer (generic term)|printing machine (generic term)
+line-drive double|1
+(noun)|line double|double (generic term)|two-base hit (generic term)|two-bagger (generic term)|two-baser (generic term)
+line-drive single|1
+(noun)|line single|single (generic term)|bingle (generic term)
+line-drive triple|1
+(noun)|line triple|triple (generic term)|three-base hit (generic term)|three-bagger (generic term)
+line-shooter|1
+(noun)|bragger|braggart|boaster|blowhard|vaunter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+line-shooting|1
+(noun)|brag|bragging|crow|crowing|vaporing|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+line backer|2
+(noun)|linebacker|football player (generic term)|footballer (generic term)
+(noun)|linebacker|back (generic term)
+line block|1
+(noun)|linecut|line engraving|engraving (generic term)
+line coach|1
+(noun)|football coach (generic term)
+line double|1
+(noun)|line-drive double|double (generic term)|two-base hit (generic term)|two-bagger (generic term)|two-baser (generic term)
+line drawing|1
+(noun)|delineation|depiction|limning|drawing (generic term)
+line drive|1
+(noun)|liner|fly (generic term)|fly ball (generic term)
+line duty|1
+(noun)|line function|activity (generic term)
+line engraving|2
+(noun)|linecut|engraving (generic term)
+(noun)|linecut|line block|engraving (generic term)
+line feed|1
+(noun)|printing operation (generic term)
+line function|1
+(noun)|line duty|activity (generic term)
+line item|1
+(noun)|item (generic term)|point (generic term)
+line judge|1
+(noun)|football official (generic term)
+line management|1
+(noun)|administration (generic term)|disposal (generic term)
+line of battle|1
+(noun)|line (generic term)
+line of business|2
+(noun)|line|product line|line of products|line of merchandise|business line|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|field|field of operation|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+line of control|1
+(noun)|Line of Control|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+line of credit|1
+(noun)|credit line|bank line|line|personal credit line|personal line of credit|credit (generic term)
+line of defence|2
+(noun)|line of defense|organization (generic term)|organisation (generic term)
+(noun)|line of defense|defensive structure (generic term)|defense (generic term)|defence (generic term)
+line of defense|2
+(noun)|line of defence|organization (generic term)|organisation (generic term)
+(noun)|line of defence|defensive structure (generic term)|defense (generic term)|defence (generic term)
+line of descent|2
+(noun)|descent|lineage|filiation|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|lineage|line|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+line of destiny|1
+(noun)|line of fate|line of Saturn|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+line of duty|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+line of fate|1
+(noun)|line of destiny|line of Saturn|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+line of fire|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+line of flight|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+line of force|1
+(noun)|field line|line (generic term)
+line of gab|1
+(noun)|spiel|patter|line (generic term)
+line of heart|1
+(noun)|heart line|love line|mensal line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+line of inquiry|1
+(noun)|line of questioning|argumentation (generic term)|logical argument (generic term)|line of reasoning (generic term)|line (generic term)
+line of latitude|1
+(noun)|latitude|parallel of latitude|parallel|line (generic term)
+line of least resistance|1
+(noun)|path of least resistance|fashion (generic term)
+line of life|1
+(noun)|life line|lifeline|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+line of longitude|1
+(noun)|meridian|great circle (generic term)
+line of march|2
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|line (generic term)
+line of merchandise|1
+(noun)|line|product line|line of products|business line|line of business|merchandise (generic term)|ware (generic term)|product (generic term)
+line of poetry|1
+(noun)|line of verse|line (generic term)
+line of products|1
+(noun)|line|product line|line of merchandise|business line|line of business|merchandise (generic term)|ware (generic term)|product (generic term)
+line of questioning|1
+(noun)|line of inquiry|argumentation (generic term)|logical argument (generic term)|line of reasoning (generic term)|line (generic term)
+line of reasoning|1
+(noun)|argumentation|logical argument|line|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+line of saturn|1
+(noun)|line of fate|line of destiny|line of Saturn|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+line of scrimmage|1
+(noun)|scrimmage line|line (generic term)
+line of sight|1
+(noun)|line of vision|line (generic term)
+line of succession|1
+(noun)|line (generic term)
+line of thought|1
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+line of verse|1
+(noun)|line of poetry|line (generic term)
+line of vision|1
+(noun)|line of sight|line (generic term)
+line of work|1
+(noun)|occupation|business|job|line|activity (generic term)
+line officer|1
+(noun)|commissioned officer (generic term)
+line one's pockets|1
+(verb)|profit (generic term)|turn a profit (generic term)
+line organisation|1
+(noun)|line organization|organization (generic term)|organisation (generic term)
+line organization|1
+(noun)|line organisation|organization (generic term)|organisation (generic term)
+line personnel|1
+(noun)|force (generic term)|personnel (generic term)
+line printer|1
+(noun)|line-at-a-time printer|printer (generic term)|printing machine (generic term)
+line roulette|1
+(noun)|roulette|curve (generic term)|curved shape (generic term)
+line score|1
+(noun)|summary (generic term)|sum-up (generic term)
+line single|1
+(noun)|line-drive single|single (generic term)|bingle (generic term)
+line spectrum|1
+(noun)|spectrum (generic term)
+line squall|1
+(noun)|squall (generic term)
+line storm|1
+(noun)|equinoctial storm|rainstorm (generic term)
+line triple|1
+(noun)|line-drive triple|triple (generic term)|three-base hit (generic term)|three-bagger (generic term)
+line up|6
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|get hold|come up|find|get (generic term)|acquire (generic term)
+(verb)|queue up|queue|stand (generic term)|stand up (generic term)
+(verb)|align|aline|adjust|reorient (generic term)|skew (antonym)
+(verb)|dress|position (generic term)
+(verb)|play (generic term)
+line worker|1
+(noun)|employee (generic term)
+lineage|5
+(noun)|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|descent|line of descent|filiation|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|linage|number (generic term)
+(noun)|linage|rate (generic term)|charge per unit (generic term)
+(noun)|ancestry|derivation|filiation|inheritance (generic term)|hereditary pattern (generic term)
+lineal|2
+(adj)|direct|matrilineal (similar term)|matrilinear (similar term)|patrilineal (similar term)|patrilinear (similar term)|unilateral (similar term)|unilateralist (similar term)|related (related term)|collateral (antonym)
+(adj)|linear (similar term)|one-dimensional (similar term)
+lineament|2
+(noun)|quality|character|property (generic term)|attribute (generic term)|dimension (generic term)
+(noun)|feature|body part (generic term)
+linear|5
+(adj)|additive|bilinear (similar term)|nonlinear (antonym)
+(adj)|one-dimensional|collinear (similar term)|lineal (similar term)|linelike (similar term)|rectilinear (similar term)|rectilineal (similar term)|planar (antonym)|cubic (antonym)
+(adj)|analogue|analog|digital (antonym)
+(adj)|elongate|simple (similar term)|unsubdivided (similar term)
+(adj)|running|lengthwise (similar term)|lengthways (similar term)
+linear a|1
+(noun)|Linear A|orthography (generic term)|writing system (generic term)
+linear accelerator|1
+(noun)|linac|accelerator (generic term)|particle accelerator (generic term)|atom smasher (generic term)
+linear algebra|1
+(noun)|algebra (generic term)
+linear b|1
+(noun)|Linear B|syllabary (generic term)|syllabic script (generic term)
+linear equation|1
+(noun)|equation (generic term)
+linear leaf|1
+(noun)|elongate leaf|simple leaf (generic term)
+linear measure|1
+(noun)|long measure|measure (generic term)|quantity (generic term)|amount (generic term)
+linear operator|1
+(noun)|operator (generic term)
+linear perspective|1
+(noun)|perspective|appearance (generic term)|visual aspect (generic term)
+linear programming|1
+(noun)|applied mathematics (generic term)|applied math (generic term)
+linear regression|1
+(noun)|rectilinear regression|regression (generic term)|simple regression (generic term)|regression toward the mean (generic term)|statistical regression (generic term)
+linear unit|1
+(noun)|linear measure (generic term)|long measure (generic term)
+linearise|1
+(verb)|linearize|adjust (generic term)|set (generic term)|correct (generic term)
+linearity|1
+(noun)|one-dimensionality|dimensionality (generic term)
+linearize|1
+(verb)|linearise|adjust (generic term)|set (generic term)|correct (generic term)
+linearly|1
+(adv)|geometrically (antonym)
+lineation|2
+(noun)|outline|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|marking (generic term)
+linebacker|2
+(noun)|line backer|football player (generic term)|footballer (generic term)
+(noun)|line backer|back (generic term)
+linebacker blitzing|1
+(noun)|safety blitz|blitz|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+linecut|2
+(noun)|line engraving|engraving (generic term)
+(noun)|line block|line engraving|engraving (generic term)
+lined|3
+(adj)|bordered (similar term)
+(adj)|seamed|rough (similar term)|unsmooth (similar term)
+(adj)|silk-lined (similar term)|unlined (antonym)
+lined snake|1
+(noun)|Tropidoclonion lineatum|colubrid snake (generic term)|colubrid (generic term)
+linelike|1
+(adj)|linear (similar term)|one-dimensional (similar term)
+lineman|4
+(noun)|football player (generic term)|footballer (generic term)
+(noun)|surveyor (generic term)
+(noun)|electrician|linesman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|position (generic term)
+linemen|1
+(noun)|line (generic term)
+linen|3
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|linen paper|paper (generic term)
+(noun)|white goods (generic term)|household linen (generic term)
+linen paper|1
+(noun)|linen|paper (generic term)
+linendraper|1
+(noun)|draper (generic term)
+liner|3
+(noun)|line drive|fly (generic term)|fly ball (generic term)
+(noun)|lining|piece of cloth (generic term)|piece of material (generic term)
+(noun)|ocean liner|passenger ship (generic term)
+liner train|1
+(noun)|freight liner|freight train (generic term)|rattler (generic term)
+linesman|2
+(noun)|official (generic term)
+(noun)|electrician|lineman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+lineup|2
+(noun)|batting order|card|roll (generic term)|roster (generic term)
+(noun)|line (generic term)
+ling|5
+(noun)|ling ko|Trapa bicornis|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+(noun)|heather|Scots heather|broom|Calluna vulgaris|heath (generic term)
+(noun)|Molva molva|gadoid (generic term)|gadoid fish (generic term)
+(noun)|hake (generic term)
+(noun)|burbot|eelpout|cusk|Lota lota|cod (generic term)|codfish (generic term)
+ling-pao|1
+(noun)|Ling-pao|Mystic Jewel|Chinese deity (generic term)
+ling ko|1
+(noun)|ling|Trapa bicornis|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+lingam|1
+(noun)|symbol (generic term)
+lingberry|1
+(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+lingcod|2
+(noun)|saltwater fish (generic term)
+(noun)|Ophiodon elongatus|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+lingenberry|1
+(noun)|cowberry|mountain cranberry|lingonberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+linger|5
+(verb)|persist (generic term)|remain (generic term)|stay (generic term)
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|lurk|mill about|mill around|be (generic term)
+(verb)|tarry|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|dawdle|move (generic term)|linger over (related term)|rush (antonym)
+(verb)|hover|hesitate (generic term)|waver (generic term)|waffle (generic term)
+linger over|1
+(verb)|dwell on|hesitate (generic term)|waver (generic term)|waffle (generic term)
+lingerer|1
+(noun)|loiterer|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+lingerie|1
+(noun)|intimate apparel|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+lingering|1
+(noun)|tarriance|delay (generic term)|holdup (generic term)
+lingeringly|1
+(adv)|protractedly
+lingo|1
+(noun)|slang|cant|jargon|argot|patois|vernacular|non-standard speech (generic term)
+lingonberry|2
+(noun)|cowberry|mountain cranberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+(noun)|mountain cranberry|cowberry|lowbush cranberry|berry (generic term)
+lingua|1
+(noun)|tongue|glossa|clapper|organ (generic term)|articulator (generic term)
+lingua franca|1
+(noun)|interlanguage|koine|language (generic term)|linguistic communication (generic term)
+lingual|3
+(adj)|linguistic|communication (related term)|nonlinguistic (antonym)
+(adj)|organ|articulator (related term)
+(noun)|consonant (generic term)
+lingual artery|1
+(noun)|arteria lingualis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+lingual vein|1
+(noun)|vena lingualis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+lingually|1
+(adv)|linguistically
+lingualumina|1
+(noun)|Lingualumina|artificial language (generic term)
+linguica|1
+(noun)|pork sausage (generic term)
+linguine|1
+(noun)|linguini|pasta (generic term)|alimentary paste (generic term)
+linguini|1
+(noun)|linguine|pasta (generic term)|alimentary paste (generic term)
+linguist|2
+(noun)|linguistic scientist|scientist (generic term)|man of science (generic term)
+(noun)|polyglot|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+linguistic|2
+(adj)|lingual|communication (related term)|nonlinguistic (antonym)
+(adj)|science|scientific discipline (related term)
+linguistic atlas|1
+(noun)|dialect atlas|atlas (generic term)|book of maps (generic term)|map collection (generic term)
+linguistic communication|1
+(noun)|language|communication (generic term)
+linguistic context|1
+(noun)|context|context of use|discourse (generic term)
+linguistic geography|1
+(noun)|dialect geography|linguistics (generic term)
+linguistic process|2
+(noun)|human process (generic term)
+(noun)|language|higher cognitive process (generic term)
+linguistic profiling|1
+(noun)|identification (generic term)
+linguistic relation|1
+(noun)|relation (generic term)
+linguistic rule|1
+(noun)|rule|concept (generic term)|conception (generic term)|construct (generic term)
+linguistic scientist|1
+(noun)|linguist|scientist (generic term)|man of science (generic term)
+linguistic string|1
+(noun)|string of words|word string|string (generic term)|language (generic term)|linguistic communication (generic term)
+linguistic unit|1
+(noun)|language unit|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+linguistic universal|1
+(noun)|universal|rule (generic term)|linguistic rule (generic term)
+linguistically|1
+(adv)|lingually
+linguistics|2
+(noun)|science (generic term)|scientific discipline (generic term)
+(noun)|philology|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+linguistics department|1
+(noun)|department of linguistics|academic department (generic term)
+lingulate|1
+(adj)|tongue-shaped|rounded (similar term)
+lingvo kosmopolita|1
+(noun)|Lingvo Kosmopolita|artificial language (generic term)
+liniment|1
+(noun)|embrocation|lotion (generic term)|application (generic term)
+linin|1
+(noun)|body substance (generic term)
+lining|4
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|liner|piece of cloth (generic term)|piece of material (generic term)
+(noun)|facing|application (generic term)|coating (generic term)|covering (generic term)
+(noun)|insulation (generic term)
+link|13
+(noun)|nexus|linkage (generic term)
+(noun)|linkup|tie|tie-in|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|connection|connectedness|union (generic term)|unification (generic term)|disconnectedness (antonym)
+(noun)|connection|connexion|shape (generic term)|form (generic term)
+(noun)|linear unit (generic term)
+(noun)|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+(noun)|liaison|contact|inter-group communication|channel (generic term)|communication channel (generic term)|line (generic term)
+(noun)|radio link|communication system (generic term)
+(noun)|data link|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(verb)|associate|tie in|relate|colligate|link up|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+(verb)|connect|tie|link up|disconnect (antonym)
+(verb)|connect|link up|join|unite
+(verb)|yoke|attach (generic term)
+link-attached station|1
+(noun)|remote terminal|link-attached terminal|remote station|terminal (generic term)
+link-attached terminal|1
+(noun)|remote terminal|remote station|link-attached station|terminal (generic term)
+link trainer|1
+(noun)|Link trainer|flight simulator (generic term)|trainer (generic term)
+link up|3
+(verb)|connect|link|join|unite
+(verb)|connect|link|tie|disconnect (antonym)
+(verb)|associate|tie in|relate|link|colligate|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+linkage|4
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+(noun)|gene linkage|inheritance (generic term)|hereditary pattern (generic term)
+(noun)|mechanical system (generic term)
+(noun)|fastening (generic term)|attachment (generic term)
+linkage editor|1
+(noun)|editor program (generic term)|editor (generic term)
+linkage group|1
+(noun)|linked genes|gene (generic term)|cistron (generic term)|factor (generic term)
+linkboy|1
+(noun)|linkman|attendant (generic term)|attender (generic term)|tender (generic term)
+linked|1
+(adj)|coupled|joined|connected (similar term)
+linked genes|1
+(noun)|linkage group|gene (generic term)|cistron (generic term)|factor (generic term)
+linking verb|1
+(noun)|copula|copulative|verb (generic term)
+linkman|1
+(noun)|linkboy|attendant (generic term)|attender (generic term)|tender (generic term)
+links|1
+(noun)|golf links|golf course (generic term)|links course (generic term)
+links course|1
+(noun)|golf course|course (generic term)
+linksman|1
+(noun)|golfer|golf player|player (generic term)|participant (generic term)
+linkup|1
+(noun)|link|tie|tie-in|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+linnaea|1
+(noun)|Linnaea|genus Linnaea|asterid dicot genus (generic term)
+linnaea borealis|1
+(noun)|twinflower|Linnaea borealis|subshrub (generic term)|suffrutex (generic term)
+linnaea borealis americana|1
+(noun)|American twinflower|Linnaea borealis americana|twinflower (generic term)|Linnaea borealis (generic term)
+linnaean|1
+(adj)|Linnaean|Linnean|botanist|phytologist|plant scientist (related term)
+linnaeus|1
+(noun)|Linnaeus|Carolus Linnaeus|Carl von Linne|Karl Linne|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+linnean|1
+(adj)|Linnaean|Linnean|botanist|phytologist|plant scientist (related term)
+linnet|2
+(noun)|house finch|Carpodacus mexicanus|finch (generic term)
+(noun)|lintwhite|Carduelis cannabina|finch (generic term)
+lino|1
+(noun)|linoleum|covering material (generic term)
+linocut|2
+(noun)|print (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+linoleic acid|1
+(noun)|linolic acid|polyunsaturated fatty acid (generic term)
+linolenic acid|1
+(noun)|omega-6 fatty acid (generic term)|omega-6 (generic term)
+linoleum|1
+(noun)|lino|covering material (generic term)
+linoleum cutter|1
+(noun)|linoleum knife|knife (generic term)
+linoleum knife|1
+(noun)|linoleum cutter|knife (generic term)
+linolic acid|1
+(noun)|linoleic acid|polyunsaturated fatty acid (generic term)
+linosyris vulgaris|1
+(noun)|goldilocks|goldilocks aster|Aster linosyris|Linosyris vulgaris|aster (generic term)
+linotype|1
+(noun)|Linotype|Linotype machine|typesetting machine (generic term)
+linotype machine|1
+(noun)|Linotype|Linotype machine|typesetting machine (generic term)
+linseed|1
+(noun)|flaxseed|oilseed (generic term)|oil-rich seed (generic term)
+linseed oil|1
+(noun)|flaxseed oil|oil (generic term)
+linsey-woolsey|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+linstock|1
+(noun)|stick (generic term)
+lint|2
+(noun)|fiber (generic term)|fibre (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+lintel|1
+(noun)|header|beam (generic term)
+lintwhite|1
+(noun)|linnet|Carduelis cannabina|finch (generic term)
+linum|1
+(noun)|Linum|genus Linum|plant genus (generic term)
+linuron|1
+(noun)|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+linus carl pauling|1
+(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist (generic term)
+linus pauling|1
+(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist (generic term)
+linux|1
+(noun)|Linux|UNIX (generic term)|UNIX system (generic term)|UNIX operating system (generic term)
+linz|1
+(noun)|Linz|Lentia|city (generic term)|metropolis (generic term)|urban center (generic term)
+liomys|1
+(noun)|Liomys|genus Liomys|mammal genus (generic term)
+liomys irroratus|1
+(noun)|Mexican pocket mouse|Liomys irroratus|pocket mouse (generic term)
+lion|4
+(noun)|king of beasts|Panthera leo|big cat (generic term)|cat (generic term)
+(noun)|social lion|celebrity (generic term)|famous person (generic term)
+(noun)|Leo|Lion|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Leo|Leo the Lion|Lion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+lion's-ear|1
+(noun)|Leonotis nepetaefolia|Leonotis nepetifolia|herb (generic term)|herbaceous plant (generic term)
+lion's beard|1
+(noun)|American pasqueflower|Eastern pasque flower|wild crocus|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower (generic term)|pasque flower (generic term)
+lion's foot|1
+(noun)|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb (generic term)|herbaceous plant (generic term)
+lion-hunter|2
+(noun)|social climber (generic term)|climber (generic term)
+(noun)|hunter (generic term)|huntsman (generic term)
+lion-jaw forceps|1
+(noun)|forceps (generic term)
+lion cub|1
+(noun)|cub (generic term)|young carnivore (generic term)|lion (generic term)|king of beasts (generic term)|Panthera leo (generic term)
+lion marmoset|1
+(noun)|tamarin|lion monkey|leoncita|marmoset (generic term)
+lion monkey|1
+(noun)|tamarin|lion marmoset|leoncita|marmoset (generic term)
+lionel barrymore|1
+(noun)|Barrymore|Lionel Barrymore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lionel hampton|1
+(noun)|Hampton|Lionel Hampton|jazz musician (generic term)|jazzman (generic term)
+lionel trilling|1
+(noun)|Trilling|Lionel Trilling|literary critic (generic term)
+lioness|1
+(noun)|lion (generic term)|king of beasts (generic term)|Panthera leo (generic term)
+lionet|1
+(noun)|lion (generic term)|king of beasts (generic term)|Panthera leo (generic term)
+lionfish|1
+(noun)|scorpaenid (generic term)|scorpaenid fish (generic term)
+lionhearted|1
+(adj)|brave (similar term)|courageous (similar term)
+lionise|1
+(verb)|lionize|celebrate|respect (generic term)|honor (generic term)|honour (generic term)|abide by (generic term)|observe (generic term)
+lionize|1
+(verb)|lionise|celebrate|respect (generic term)|honor (generic term)|honour (generic term)|abide by (generic term)|observe (generic term)
+lions club|1
+(noun)|Lions Club|International Association of Lions clubs|service club (generic term)
+liopelma|1
+(noun)|Leiopelma|genus Leiopelma|Liopelma|genus Liopelma|amphibian genus (generic term)
+liopelma hamiltoni|1
+(noun)|Liopelma hamiltoni|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+liopelmidae|1
+(noun)|Leiopelmatidae|family Leiopelmatidae|Liopelmidae|family Liopelmidae|amphibian family (generic term)
+liothyronine|1
+(noun)|triiodothyronine|T|thyroid hormone (generic term)
+lip|3
+(noun)|external body part (generic term)|articulator (generic term)
+(noun)|sass|sassing|backtalk|back talk|mouth|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+(noun)|brim|rim|edge (generic term)
+lip-gloss|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+lip-read|1
+(verb)|lipread|speech-read|read (generic term)
+lip-shaped|1
+(adj)|formed (similar term)
+lip-sync|1
+(verb)|lip-synch|mouth (generic term)
+lip-synch|1
+(verb)|lip-sync|mouth (generic term)
+lip balm|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+lip fern|1
+(noun)|lipfern|fern (generic term)
+lip off|1
+(verb)|shoot one's mouth off|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+lip reader|1
+(noun)|deaf person (generic term)
+lip rouge|1
+(noun)|lipstick|makeup (generic term)|make-up (generic term)|war paint (generic term)
+lip service|1
+(noun)|hypocrisy|pretense (generic term)|pretence (generic term)|feigning (generic term)|dissembling (generic term)
+lip sync|1
+(noun)|lip synchronization|lip synchronisation|lip synch|recording (generic term)|transcription (generic term)
+lip synch|1
+(noun)|lip synchronization|lip synchronisation|lip sync|recording (generic term)|transcription (generic term)
+lip synchronisation|1
+(noun)|lip synchronization|lip synch|lip sync|recording (generic term)|transcription (generic term)
+lip synchronization|1
+(noun)|lip synchronisation|lip synch|lip sync|recording (generic term)|transcription (generic term)
+lipaemia|1
+(noun)|lipemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+liparidae|1
+(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family (generic term)
+liparididae|1
+(noun)|Liparididae|family Liparididae|Liparidae|family Liparidae|fish family (generic term)
+liparis|2
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Liparis|genus Liparis|fish genus (generic term)
+liparis liparis|1
+(noun)|snailfish|seasnail|sea snail|Liparis liparis|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+liparis loeselii|1
+(noun)|fen orchid|fen orchis|Liparis loeselii|orchid (generic term)|orchidaceous plant (generic term)
+lipase|1
+(noun)|enzyme (generic term)
+lipchitz|1
+(noun)|Lipchitz|Jacques Lipchitz|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+lipectomy|1
+(noun)|selective lipectomy|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+lipemia|1
+(noun)|lipaemia|lipidemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+lipfern|1
+(noun)|lip fern|fern (generic term)
+lipid|1
+(noun)|lipide|lipoid|macromolecule (generic term)|supermolecule (generic term)
+lipid-lowering medication|1
+(noun)|lipid-lowering medicine|statin drug|statin|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+lipid-lowering medicine|1
+(noun)|lipid-lowering medication|statin drug|statin|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+lipid granulomatosis|1
+(noun)|xanthomatosis|xanthoma multiplex|cholesterosis cutis|lipoid granulomatosis|xanthoma (generic term)
+lipidaemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+lipide|1
+(noun)|lipid|lipoid|macromolecule (generic term)|supermolecule (generic term)
+lipidemia|1
+(noun)|lipemia|lipaemia|lipidaemia|lipoidemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+lipidosis|1
+(noun)|metabolic disorder (generic term)
+lipitor|1
+(noun)|atorvastatin|Lipitor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+lipizzan|1
+(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+lipless|1
+(adj)|unlipped|lipped (antonym)
+liplike|1
+(adj)|labiate|lipped (similar term)
+lipmann|1
+(noun)|Lipmann|Fritz Albert Lipmann|biochemist (generic term)
+lipo-hepin|1
+(noun)|heparin|Lipo-Hepin|Liquaemin|polysaccharide (generic term)|polyose (generic term)|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+lipo-lutin|1
+(noun)|progesterone|Lipo-Lutin|progestin (generic term)|progestogen (generic term)
+lipochondrodystrophy|1
+(noun)|Hurler's syndrome|Hurler's disease|gargoylism|dysostosis multiplex|mucopolysaccharidosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+lipogram|1
+(noun)|text (generic term)|textual matter (generic term)
+lipoid|1
+(noun)|lipid|lipide|macromolecule (generic term)|supermolecule (generic term)
+lipoid granulomatosis|1
+(noun)|xanthomatosis|xanthoma multiplex|cholesterosis cutis|lipid granulomatosis|xanthoma (generic term)
+lipoidaemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+lipoidemia|1
+(noun)|lipemia|lipaemia|lipidemia|lipidaemia|lipoidaemia|hyperlipemia|hyperlipaemia|hyperlipidemia|hyperlipidaemia|hyperlipoidemia|hyperlipoidaemia|symptom (generic term)
+lipoma|1
+(noun)|adipose tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+lipomatosis|1
+(noun)|pathology (generic term)
+lipophilic|1
+(adj)|lipotropic|oleophilic (similar term)
+lipoprotein|1
+(noun)|conjugated protein (generic term)|compound protein (generic term)
+liposarcoma|1
+(noun)|sarcoma (generic term)
+liposcelis|1
+(noun)|Liposcelis|genus Liposcelis|arthropod genus (generic term)
+liposcelis divinatorius|1
+(noun)|booklouse|book louse|deathwatch|Liposcelis divinatorius|psocopterous insect (generic term)
+liposomal delivery vector|1
+(noun)|transducing vector (generic term)|gene delivery vector (generic term)
+liposome|1
+(noun)|vesicle (generic term)|cyst (generic term)
+lipotropic|1
+(adj)|lipophilic|oleophilic (similar term)
+lipotyphla|1
+(noun)|Lipotyphla|suborder Lipotyphla|animal order (generic term)
+lipped|1
+(adj)|bilabiate (similar term)|two-lipped (similar term)|labiate (similar term)|liplike (similar term)|thick-lipped (similar term)|three-lipped (similar term)|lipless (antonym)
+lippi|2
+(noun)|Lippi|Filippino Lippi|old master (generic term)
+(noun)|Lippi|Fra Filippo Lippi|old master (generic term)
+lippizan|1
+(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+lippizaner|1
+(noun)|Lippizan|Lipizzan|Lippizaner|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+lippmann|2
+(noun)|Lippmann|Walter Lippmann|journalist (generic term)
+(noun)|Lippmann|Gabriel Lippmann|physicist (generic term)
+lipread|1
+(verb)|lip-read|speech-read|read (generic term)
+lipreading|1
+(noun)|sensing (generic term)|perception (generic term)
+lipscomb|1
+(noun)|Lipscomb|William Nunn Lipscom Jr.|chemist (generic term)
+lipstick|3
+(noun)|lip rouge|makeup (generic term)|make-up (generic term)|war paint (generic term)
+(verb)|delineate (generic term)|limn (generic term)|outline (generic term)
+(verb)|make up (generic term)
+lipstick plant|1
+(noun)|Aeschynanthus radicans|aeschynanthus (generic term)
+liquaemin|1
+(noun)|heparin|Lipo-Hepin|Liquaemin|polysaccharide (generic term)|polyose (generic term)|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+liquefaction|1
+(noun)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+liquefiable|1
+(adj)|liquifiable|liquid (similar term)
+liquefied|2
+(adj)|liquified|liquid (similar term)
+(adj)|molten|liquified|melted (similar term)|liquid (similar term)|liquified (similar term)
+liquefied petroleum gas|1
+(noun)|bottled gas|gas (generic term)|hydrocarbon (generic term)
+liquefy|3
+(verb)|change state (generic term)|turn (generic term)
+(verb)|liquify|liquidize|liquidise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|flux|liquify|change integrity (generic term)
+liquescent|1
+(adj)|melting|unfrozen (similar term)
+liqueur|1
+(noun)|cordial|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+liqueur glass|1
+(noun)|glass (generic term)|drinking glass (generic term)
+liquid|10
+(adj)|fluid (similar term)|runny (similar term)|liquefiable (similar term)|liquifiable (similar term)|liquefied (similar term)|liquified (similar term)|semiliquid (similar term)|watery (similar term)|gaseous (antonym)|solid (antonym)
+(adj)|swimming|tearful (similar term)
+(adj)|limpid|clear (similar term)
+(adj)|melted|liquified|dissolved (similar term)|fusible (similar term)|molten (similar term)|liquefied (similar term)|liquified (similar term)|thawed (similar term)|unfrozen (related term)|unmelted (antonym)
+(adj)|musical (similar term)
+(adj)|fluent|fluid|smooth|graceful (similar term)
+(adj)|fluid|disposable (similar term)
+(noun)|liquidness|liquidity|liquid state|state of matter (generic term)|state (generic term)
+(noun)|fluid (generic term)
+(noun)|consonant (generic term)
+liquid-fueled|1
+(adj)|fueled (similar term)
+liquid air|1
+(noun)|air (generic term)|cryogen (generic term)
+liquid assets|1
+(noun)|current assets|quick assets|assets (generic term)
+liquid bleach|1
+(noun)|solution (generic term)
+liquid body substance|1
+(noun)|bodily fluid|body fluid|humor|humour|body substance (generic term)
+liquid crystal|1
+(noun)|liquid (generic term)
+liquid crystal display|1
+(noun)|LCD|digital display (generic term)|alphanumeric display (generic term)
+liquid detergent|1
+(noun)|detergent (generic term)
+liquid diet|1
+(noun)|diet (generic term)
+liquid ecstasy|1
+(noun)|soap|scoop|max|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+liquid measure|1
+(noun)|liquid unit|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+liquid metal reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)
+liquid nitrogen|1
+(noun)|nitrogen (generic term)|N (generic term)|atomic number 7 (generic term)|cryogen (generic term)
+liquid oxygen|1
+(noun)|LOX|oxygen (generic term)|O (generic term)|atomic number 8 (generic term)
+liquid pred|1
+(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+liquid soap|1
+(noun)|soap (generic term)
+liquid state|1
+(noun)|liquid|liquidness|liquidity|state of matter (generic term)|state (generic term)
+liquid unit|1
+(noun)|liquid measure|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+liquidambar|3
+(noun)|sweet gum|gum (generic term)
+(noun)|gum tree (generic term)|gum (generic term)
+(noun)|genus Liquidambar|Liquidambar|plant genus (generic term)
+liquidambar styraciflua|1
+(noun)|sweet gum|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+liquidate|4
+(verb)|neutralize|neutralise|waste|knock off|do in|kill (generic term)
+(verb)|pay off|pay up (generic term)|ante up (generic term)|pay (generic term)
+(verb)|cash (generic term)|cash in (generic term)
+(verb)|settle (generic term)
+liquidation|3
+(noun)|settlement|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|extermination|destruction (generic term)|devastation (generic term)
+(noun)|elimination|murder (generic term)|slaying (generic term)|execution (generic term)
+liquidator|2
+(noun)|murderer|manslayer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|killer (generic term)|slayer (generic term)
+(noun)|receiver|fiduciary (generic term)
+liquidise|1
+(verb)|liquefy|liquify|liquidize|change (generic term)|alter (generic term)|modify (generic term)
+liquidiser|1
+(noun)|blender|liquidizer|mixer (generic term)
+liquidity|3
+(noun)|liquid|liquidness|liquid state|state of matter (generic term)|state (generic term)
+(noun)|fluidity|fluidness|liquidness|runniness|thinness (generic term)
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+liquidity crisis|1
+(noun)|credit crunch|squeeze|financial condition (generic term)|economic condition (generic term)
+liquidize|2
+(verb)|sell out|sell up|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|liquefy|liquify|liquidise|change (generic term)|alter (generic term)|modify (generic term)
+liquidizer|1
+(noun)|blender|liquidiser|mixer (generic term)
+liquidness|2
+(noun)|liquid|liquidity|liquid state|state of matter (generic term)|state (generic term)
+(noun)|fluidity|fluidness|liquidity|runniness|thinness (generic term)
+liquifiable|1
+(adj)|liquefiable|liquid (similar term)
+liquified|3
+(adj)|melted|liquid|dissolved (similar term)|fusible (similar term)|molten (similar term)|liquefied (similar term)|liquified (similar term)|thawed (similar term)|unfrozen (related term)|unmelted (antonym)
+(adj)|liquefied|liquid (similar term)
+(adj)|molten|liquefied|melted (similar term)|liquid (similar term)|liquified (similar term)
+liquify|2
+(verb)|liquefy|liquidize|liquidise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|liquefy|flux|change integrity (generic term)
+liquor|3
+(noun)|spirits|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(noun)|liquid (generic term)
+(noun)|pot liquor|pot likker|broth (generic term)|stock (generic term)
+liquor licence|1
+(noun)|liquor license|license (generic term)|licence (generic term)|permit (generic term)
+liquor license|1
+(noun)|liquor licence|license (generic term)|licence (generic term)|permit (generic term)
+liquor store|1
+(noun)|package store|off-licence|shop (generic term)|store (generic term)
+liquorice|2
+(noun)|licorice|Glycyrrhiza glabra|herb (generic term)|herbaceous plant (generic term)
+(noun)|licorice|candy (generic term)|confect (generic term)
+lir|1
+(noun)|Lir|Ler|Celtic deity (generic term)
+lira|3
+(noun)|Maltese lira|Maltese monetary unit (generic term)
+(noun)|Turkish lira|Turkish monetary unit (generic term)
+(noun)|Italian lira|Italian monetary unit (generic term)
+liriodendron|1
+(noun)|Liriodendron|genus Liriodendron|magnoliid dicot genus (generic term)
+liriodendron tulipifera|1
+(noun)|tulip tree|tulip poplar|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree (generic term)|flowering tree (generic term)
+liriope|1
+(noun)|Liriope|genus Liriope|liliid monocot genus (generic term)
+liriope muscari|1
+(noun)|lilyturf|lily turf|Liriope muscari|liliaceous plant (generic term)
+lis pendens|1
+(noun)|legal action (generic term)|action (generic term)|action at law (generic term)
+lisboa|1
+(noun)|Lisbon|Lisboa|capital of Portugal|national capital (generic term)|port (generic term)
+lisbon|1
+(noun)|Lisbon|Lisboa|capital of Portugal|national capital (generic term)|port (generic term)
+lise meitner|1
+(noun)|Meitner|Lise Meitner|nuclear physicist (generic term)
+lisinopril|1
+(noun)|Prinival|Zestril|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+lisle|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|lisle thread|cotton (generic term)
+lisle thread|1
+(noun)|lisle|cotton (generic term)
+lisp|3
+(noun)|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+(noun)|LISP|list-processing language|programming language (generic term)|programing language (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+lisp compiler|1
+(noun)|LISP compiler|compiler (generic term)|compiling program (generic term)
+lisp program|1
+(noun)|LISP program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+lisper|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+lissom|1
+(adj)|lissome|lithe|lithesome|slender|supple|svelte|sylphlike|graceful (similar term)
+lissome|1
+(adj)|lissom|lithe|lithesome|slender|supple|svelte|sylphlike|graceful (similar term)
+lissomeness|1
+(noun)|litheness|suppleness|gracefulness (generic term)
+list|7
+(noun)|listing|database (generic term)
+(noun)|tilt|inclination|lean|leaning|position (generic term)|spatial relation (generic term)
+(verb)|name|enumerate (generic term)|recite (generic term)|itemize (generic term)|itemise (generic term)
+(verb)|register (generic term)
+(verb)|number|name (generic term)|identify (generic term)
+(verb)|lean|move (generic term)
+(verb)|heel|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+list-processing language|1
+(noun)|LISP|programming language (generic term)|programing language (generic term)
+list price|1
+(noun)|asking price (generic term)|selling price (generic term)
+list processing|1
+(noun)|data processing (generic term)
+list system|1
+(noun)|scrutin de liste|scrutin de liste system|voting system (generic term)|electoral system (generic term)
+listed|2
+(adj)|catalogued (similar term)|recorded (similar term)|traded (similar term)|unlisted (antonym)
+(adj)|enrolled|registered (similar term)
+listed security|1
+(noun)|security (generic term)|certificate (generic term)|unlisted security (antonym)
+listen|3
+(verb)|perceive (generic term)|comprehend (generic term)|listen in (related term)
+(verb)|hear|take heed|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|heed|mind|obey (generic term)
+listen in|2
+(verb)|listen (generic term)
+(verb)|eavesdrop|listen (generic term)
+listener|1
+(noun)|hearer|auditor|attender|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+listening|1
+(noun)|hearing|sensing (generic term)|perception (generic term)
+listening watch|1
+(noun)|continuous receiver watch|watch (generic term)|vigil (generic term)
+lister|3
+(noun)|Lister|Joseph Lister|Baron Lister|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|tax assessor (generic term)|assessor (generic term)
+(noun)|lister plow|lister plough|middlebreaker|middle buster|moldboard plow (generic term)|mouldboard plough (generic term)
+lister plough|1
+(noun)|lister|lister plow|middlebreaker|middle buster|moldboard plow (generic term)|mouldboard plough (generic term)
+lister plow|1
+(noun)|lister|lister plough|middlebreaker|middle buster|moldboard plow (generic term)|mouldboard plough (generic term)
+listera|1
+(noun)|Listera|genus Listera|monocot genus (generic term)|liliopsid genus (generic term)
+listera convallarioides|1
+(noun)|broad-leaved twayblade|Listera convallarioides|orchid (generic term)|orchidaceous plant (generic term)
+listera cordata|1
+(noun)|lesser twayblade|Listera cordata|orchid (generic term)|orchidaceous plant (generic term)
+listera ovata|1
+(noun)|twayblade|Listera ovata|orchid (generic term)|orchidaceous plant (generic term)
+listeria|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+listeria meningitis|1
+(noun)|listeriosis|infectious disease (generic term)
+listeria monocytogenes|1
+(noun)|Listeria monocytogenes|L. monocytogenes|listeria (generic term)
+listeriosis|1
+(noun)|listeria meningitis|infectious disease (generic term)
+listing|2
+(noun)|list|database (generic term)
+(noun)|itemization|itemisation|organization (generic term)|organisation (generic term)
+listless|2
+(adj)|lethargic (similar term)|unergetic (similar term)
+(adj)|dispirited|spiritless (similar term)
+listlessness|2
+(noun)|languor|lassitude|apathy (generic term)
+(noun)|torpidity|torpidness|torpor|passivity (generic term)|passiveness (generic term)
+liston|1
+(noun)|Liston|Sonny Liston|Charles Liston|prizefighter (generic term)|gladiator (generic term)
+lisu|1
+(noun)|Lisu|Loloish (generic term)
+liszt|1
+(noun)|Liszt|Franz Liszt|pianist (generic term)|piano player (generic term)|composer (generic term)
+lit|3
+(adj)|illuminated|lighted|well-lighted|light (similar term)
+(adj)|lighted|ablaze (similar term)|afire (similar term)|aflame (similar term)|aflare (similar term)|alight (similar term)|blazing (similar term)|burning (similar term)|flaming (similar term)|on fire (similar term)|ignited (similar term)|enkindled (similar term)|kindled (similar term)|unlighted (antonym)
+(noun)|literature|literary study (generic term)
+lit crit|1
+(noun)|literary criticism|literary study (generic term)
+litany|2
+(noun)|address (generic term)|speech (generic term)
+(noun)|Litany|prayer (generic term)
+litas|1
+(noun)|Lithuanian monetary unit (generic term)
+litchee|1
+(noun)|litchi|litchi nut|lichi|leechee|lichee|lychee|edible fruit (generic term)
+litchi|2
+(noun)|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree (generic term)
+(noun)|litchi nut|litchee|lichi|leechee|lichee|lychee|edible fruit (generic term)
+litchi chinensis|1
+(noun)|litchi|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree (generic term)
+litchi nut|1
+(noun)|litchi|litchee|lichi|leechee|lichee|lychee|edible fruit (generic term)
+litchi tree|1
+(noun)|litchi|lichee|Litchi chinensis|Nephelium litchi|fruit tree (generic term)
+lite|1
+(adj)|light|low-cal|calorie-free|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+liter|1
+(noun)|litre|l|cubic decimeter|cubic decimetre|metric capacity unit (generic term)
+literacy|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)|illiteracy (antonym)
+literal|5
+(adj)|actual|genuine|real|true (similar term)
+(adj)|exact (similar term)
+(adj)|denotative (similar term)|explicit (similar term)|exact (related term)|unrhetorical (related term)|figurative (antonym)
+(adj)|plain (similar term)
+(noun)|misprint|erratum|typographical error|typo|literal error|error (generic term)|mistake (generic term)
+literal error|1
+(noun)|misprint|erratum|typographical error|typo|literal|error (generic term)|mistake (generic term)
+literal interpretation|1
+(noun)|interpretation (generic term)
+literalise|1
+(verb)|literalize|interpret (generic term)|construe (generic term)|see (generic term)|spiritualize (antonym)
+literalism|2
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+literalize|1
+(verb)|literalise|interpret (generic term)|construe (generic term)|see (generic term)|spiritualize (antonym)
+literally|1
+(adv)|figuratively (antonym)
+literalness|1
+(noun)|concreteness (generic term)
+literary|3
+(adj)|writing|written material|piece of writing (related term)
+(adj)|literate (similar term)
+(adj)|formal (similar term)
+literary agent|1
+(noun)|agent (generic term)
+literary argument|1
+(noun)|argument|summary (generic term)|sum-up (generic term)
+literary composition|1
+(noun)|literary work|writing (generic term)|written material (generic term)|piece of writing (generic term)
+literary critic|1
+(noun)|critic (generic term)
+literary criticism|2
+(noun)|criticism|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|lit crit|literary study (generic term)
+literary genre|1
+(noun)|writing style|genre|expressive style (generic term)|style (generic term)
+literary hack|1
+(noun)|hack|hack writer|writer (generic term)|author (generic term)
+literary pirate|1
+(noun)|plagiarist|plagiarizer|plagiariser|pirate|thief (generic term)|stealer (generic term)
+literary review|1
+(noun)|review (generic term)
+literary study|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+literary work|1
+(noun)|literary composition|writing (generic term)|written material (generic term)|piece of writing (generic term)
+literate|4
+(adj)|illiterate (antonym)
+(adj)|belletristic (similar term)|literary (similar term)|educated (related term)|sophisticated (related term)|illiterate (antonym)
+(adj)|educated (similar term)
+(noun)|literate person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+literate person|1
+(noun)|literate|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+literati|1
+(noun)|intelligentsia (generic term)|clerisy (generic term)
+literature|3
+(noun)|lit|literary study (generic term)
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|profession (generic term)
+lithane|1
+(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate (generic term)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+lithe|1
+(adj)|lissome|lissom|lithesome|slender|supple|svelte|sylphlike|graceful (similar term)
+lithe-bodied|1
+(adj)|bodied (similar term)
+litheness|1
+(noun)|lissomeness|suppleness|gracefulness (generic term)
+lithesome|1
+(adj)|lissome|lissom|lithe|slender|supple|svelte|sylphlike|graceful (similar term)
+lithia water|1
+(noun)|mineral water (generic term)
+lithiasis|1
+(noun)|pathology (generic term)
+lithic|2
+(adj)|metallic element|metal (related term)
+(adj)|material|stuff (related term)
+lithium|1
+(noun)|Li|atomic number 3|metallic element (generic term)|metal (generic term)
+lithium carbonate|1
+(noun)|Lithane|Lithonate|Eskalith|carbonate (generic term)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+lithocarpus|1
+(noun)|Lithocarpus|genus Lithocarpus|hamamelid dicot genus (generic term)
+lithocarpus densiflorus|1
+(noun)|tanbark oak|Lithocarpus densiflorus|tree (generic term)
+lithocarpus glaber|1
+(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak (generic term)|Lithocarpus densiflorus (generic term)
+lithocarpus glabra|1
+(noun)|Japanese oak|Lithocarpus glabra|Lithocarpus glaber|tanbark oak (generic term)|Lithocarpus densiflorus (generic term)
+lithodidae|1
+(noun)|Lithodidae|family Lithodidae|arthropod family (generic term)
+lithoglyptics|1
+(noun)|glyptics|glyptic art (generic term)|glyptography (generic term)
+lithograph|3
+(noun)|print (generic term)
+(noun)|lithograph machine|duplicator (generic term)|copier (generic term)
+(verb)|print (generic term)
+lithograph machine|1
+(noun)|lithograph|duplicator (generic term)|copier (generic term)
+lithographer|1
+(noun)|printmaker (generic term)|graphic artist (generic term)
+lithographic|1
+(adj)|planographic printing|planography (related term)
+lithography|2
+(noun)|planographic printing (generic term)|planography (generic term)
+(noun)|printmaking (generic term)
+lithology|1
+(noun)|petrology|morphology (generic term)|geomorphology (generic term)
+lithomancer|1
+(noun)|diviner (generic term)
+lithomancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+lithomantic|1
+(adj)|divination|foretelling|soothsaying|fortune telling (related term)
+lithonate|1
+(noun)|lithium carbonate|Lithane|Lithonate|Eskalith|carbonate (generic term)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+lithophragma|1
+(noun)|Lithophragma|genus Lithophragma|rosid dicot genus (generic term)
+lithophragma affine|1
+(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower (generic term)
+lithophragma affinis|1
+(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower (generic term)
+lithophragma parviflorum|1
+(noun)|prairie star|Lithophragma parviflorum|wildflower (generic term)|wild flower (generic term)
+lithophyte|1
+(noun)|lithophytic plant|rock plant (generic term)
+lithophytic|1
+(adj)|rock plant (related term)
+lithophytic plant|1
+(noun)|lithophyte|rock plant (generic term)
+lithops|1
+(noun)|living stone|stoneface|stone-face|stone plant|stone life face|flowering stone|succulent (generic term)
+lithospermum|1
+(noun)|Lithospermum|genus Lithospermum|plant genus (generic term)
+lithospermum canescens|1
+(noun)|hoary puccoon|Indian paint|Lithospermum canescens|herb (generic term)|herbaceous plant (generic term)
+lithospermum caroliniense|1
+(noun)|puccoon|Lithospermum caroliniense|herb (generic term)|herbaceous plant (generic term)
+lithospermum officinale|1
+(noun)|gromwell|Lithospermum officinale|herb (generic term)|herbaceous plant (generic term)
+lithosphere|1
+(noun)|geosphere|layer (generic term)
+lithotomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+lithotomy position|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+lithuania|1
+(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State (generic term)|Baltic Republic (generic term)
+lithuanian|3
+(adj)|Lithuanian|Baltic State|Baltic Republic (related term)
+(noun)|Lithuanian|European (generic term)
+(noun)|Lithuanian|Baltic (generic term)|Baltic language (generic term)
+lithuanian monetary unit|1
+(noun)|Lithuanian monetary unit|monetary unit (generic term)
+lithuresis|1
+(noun)|micturition (generic term)|urination (generic term)
+litigant|1
+(noun)|litigator|party (generic term)
+litigate|2
+(verb)|challenge (generic term)
+(verb)|action|sue|process|challenge (generic term)
+litigation|1
+(noun)|judicial proceeding|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+litigator|1
+(noun)|litigant|party (generic term)
+litigious|2
+(adj)|proceeding|legal proceeding|proceedings (related term)
+(adj)|contentious|combative|disputatious|disputative|argumentative (similar term)
+litigiousness|1
+(noun)|quarrelsomeness (generic term)|contentiousness (generic term)
+litmus|1
+(noun)|litmus test|acid-base indicator (generic term)
+litmus paper|1
+(noun)|paper (generic term)
+litmus test|2
+(noun)|litmus|acid-base indicator (generic term)
+(noun)|examination (generic term)|exam (generic term)|test (generic term)
+litocranius|1
+(noun)|Litocranius|genus Litocranius|mammal genus (generic term)
+litocranius walleri|1
+(noun)|gerenuk|Litocranius walleri|antelope (generic term)
+litoral|1
+(noun)|littoral|littoral zone|sands|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+litotes|1
+(noun)|meiosis|rhetorical device (generic term)|understatement (generic term)
+litre|1
+(noun)|liter|l|cubic decimeter|cubic decimetre|metric capacity unit (generic term)
+litter|7
+(noun)|animal group (generic term)
+(noun)|rubbish (generic term)|trash (generic term)|scrap (generic term)
+(noun)|conveyance (generic term)|transport (generic term)
+(noun)|bedding material|bedding|substance (generic term)|matter (generic term)
+(verb)|be (generic term)
+(verb)|strew (generic term)|straw (generic term)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+litter-basket|1
+(noun)|litterbin|litter basket|bin (generic term)
+litter-bearer|1
+(noun)|stretcher-bearer|attendant (generic term)|attender (generic term)|tender (generic term)
+litter basket|1
+(noun)|litterbin|litter-basket|bin (generic term)
+litter lout|1
+(noun)|litterer|litterbug|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+litterateur|1
+(noun)|essayist|writer (generic term)|author (generic term)
+litterbin|1
+(noun)|litter basket|litter-basket|bin (generic term)
+litterbug|1
+(noun)|litterer|litter lout|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+littered|1
+(adj)|cluttered|untidy (similar term)
+litterer|1
+(noun)|litterbug|litter lout|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+little|9
+(adj)|small|bantam (similar term)|diminutive (similar term)|lilliputian (similar term)|midget (similar term)|petite (similar term)|tiny (similar term)|flyspeck (similar term)|bitty (similar term)|bittie (similar term)|teensy (similar term)|teentsy (similar term)|teeny (similar term)|wee (similar term)|weeny (similar term)|weensy (similar term)|teensy-weensy (similar term)|teeny-weeny (similar term)|itty-bitty (similar term)|itsy-bitsy (similar term)|dinky (similar term)|dwarfish (similar term)|elfin (similar term)|elflike (similar term)|gnomish (similar term)|half-size (similar term)|infinitesimal (similar term)|minute (similar term)|microscopic (similar term)|lesser (similar term)|micro (similar term)|miniature (similar term)|minuscule (similar term)|miniscule (similar term)|olive-sized (similar term)|pocket-size (similar term)|pocket-sized (similar term)|pocketable (similar term)|puny (similar term)|runty (similar term)|shrimpy (similar term)|slender (similar term)|slim (similar term)|smaller (similar term)|littler (similar term)|smallish (similar term)|small-scale (similar term)|undersize (similar term)|undersized (similar term)|big (antonym)|large (antonym)
+(adj)|slight (similar term)|small (similar term)|less (related term)|much (antonym)
+(adj)|brief|short (similar term)
+(adj)|small|young (similar term)|immature (similar term)
+(adj)|fiddling|footling|lilliputian|niggling|piddling|piffling|petty|picayune|trivial|unimportant (similar term)
+(adj)|small|soft (similar term)
+(adj)|minuscule|small|lowercase (similar term)
+(adj)|emotional (similar term)
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+little-head snakeweed|1
+(noun)|Gutierrezia microcephala|matchweed (generic term)|matchbush (generic term)
+little-known|1
+(adj)|unknown (similar term)
+little-leaf fig|1
+(noun)|Port Jackson fig|rusty rig|Botany Bay fig|Ficus rubiginosa|fig tree (generic term)
+little-league team|1
+(noun)|team (generic term)|squad (generic term)
+little auk|1
+(noun)|dovekie|Plautus alle|auk (generic term)
+little barley|1
+(noun)|Hordeum pusillum|barley (generic term)
+little bear|1
+(noun)|Little Bear|Ursa Minor|constellation (generic term)
+little bighorn|2
+(noun)|Little Bighorn|Little Bighorn River|Little Horn|river (generic term)
+(noun)|Little Bighorn|Battle of Little Bighorn|Battle of the Little Bighorn|Custer's Last Stand|slaughter (generic term)|massacre (generic term)|mass murder (generic term)|carnage (generic term)|butchery (generic term)
+little bighorn river|1
+(noun)|Little Bighorn|Little Bighorn River|Little Horn|river (generic term)
+little black ant|1
+(noun)|Monomorium minimum|ant (generic term)|emmet (generic term)|pismire (generic term)
+little blue heron|1
+(noun)|Egretta caerulea|heron (generic term)
+little brother|1
+(noun)|brother (generic term)|blood brother (generic term)
+little brown bat|1
+(noun)|little brown myotis|Myotis leucifugus|vespertilian bat (generic term)|vespertilionid (generic term)
+little brown myotis|1
+(noun)|little brown bat|Myotis leucifugus|vespertilian bat (generic term)|vespertilionid (generic term)
+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 (generic term)|mouse hare (generic term)|rock rabbit (generic term)|coney (generic term)|cony (generic term)
+little club moss|1
+(noun)|spikemoss|spike moss|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+little clubmoss|1
+(noun)|fir clubmoss|mountain clubmoss|Lycopodium selago|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+little corporal|1
+(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|Little Corporal|general (generic term)|full general (generic term)|emperor (generic term)
+little dictionary|1
+(noun)|pocket dictionary|dictionary (generic term)|lexicon (generic term)
+little dipper|1
+(noun)|Little Dipper|Dipper|asterism (generic term)
+little dog|1
+(noun)|Canis Minor|Little Dog|constellation (generic term)
+little ebony spleenwort|1
+(noun)|black-stem spleenwort|black-stemmed spleenwort|spleenwort (generic term)
+little egret|1
+(noun)|Egretta garzetta|egret (generic term)
+little finger|1
+(noun)|pinkie|pinky|finger (generic term)|minimus (generic term)
+little giant|1
+(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|Little Giant|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+little girl|1
+(noun)|female child|girl|female (generic term)|female person (generic term)|boy (antonym)|male child (antonym)
+little golden zinnia|1
+(noun)|Zinnia grandiflora|zinnia (generic term)|old maid (generic term)|old maid flower (generic term)
+little grebe|1
+(noun)|dabchick|Podiceps ruficollis|grebe (generic term)
+little hand|1
+(noun)|hour hand|hand (generic term)
+little horn|1
+(noun)|Little Bighorn|Little Bighorn River|Little Horn|river (generic term)
+little joe|1
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+little john|1
+(noun)|Little John|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+little league|1
+(noun)|baseball league (generic term)
+little leaguer|1
+(noun)|ballplayer (generic term)|baseball player (generic term)
+little lord fauntleroy|1
+(noun)|Fauntleroy|Little Lord Fauntleroy|male child (generic term)|boy (generic term)
+little missouri|1
+(noun)|Little Missouri|Little Missouri River|river (generic term)
+little missouri river|1
+(noun)|Little Missouri|Little Missouri River|river (generic term)
+little mo connolly|1
+(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player (generic term)
+little office|1
+(noun)|Little Office|office (generic term)
+little owl|1
+(noun)|Athene noctua|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+little phoebe|1
+(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+little potato|1
+(noun)|rosette|russet scab|stem canker|rhizoctinia disease (generic term)
+little red riding hood|1
+(noun)|Little Red Riding Hood|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+little rhody|1
+(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state (generic term)
+little rock|1
+(noun)|Little Rock|capital of Arkansas|state capital (generic term)
+little sioux river|1
+(noun)|Little Sioux River|river (generic term)
+little sister|1
+(noun)|sister (generic term)|sis (generic term)
+little skate|1
+(noun)|Raja erinacea|skate (generic term)
+little slam|1
+(noun)|small slam|slam (generic term)|sweep (generic term)
+little sparrow|1
+(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+little spotted skunk|1
+(noun)|spotted skunk|Spilogale putorius|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+little terror|1
+(noun)|terror|brat|holy terror|imp (generic term)|scamp (generic term)|monkey (generic term)|rascal (generic term)|rapscallion (generic term)|scalawag (generic term)|scallywag (generic term)
+little theater|1
+(noun)|little theatre|theater (generic term)|theatre (generic term)|house (generic term)
+little theatre|1
+(noun)|little theater|theater (generic term)|theatre (generic term)|house (generic term)
+little toe|1
+(noun)|toe (generic term)|minimus (generic term)
+little wabash|1
+(noun)|Little Wabash|Little Wabash River|river (generic term)
+little wabash river|1
+(noun)|Little Wabash|Little Wabash River|river (generic term)
+littleneck|2
+(noun)|littleneck clam|quahaug (generic term)|quahog (generic term)|hard-shell clam (generic term)|round clam (generic term)
+(noun)|littleneck clam|quahog (generic term)|quahaug (generic term)|hard-shell clam (generic term)|hard clam (generic term)|round clam (generic term)|Venus mercenaria (generic term)|Mercenaria mercenaria (generic term)
+littleneck clam|2
+(noun)|littleneck|quahaug (generic term)|quahog (generic term)|hard-shell clam (generic term)|round clam (generic term)
+(noun)|littleneck|quahog (generic term)|quahaug (generic term)|hard-shell clam (generic term)|hard clam (generic term)|round clam (generic term)|Venus mercenaria (generic term)|Mercenaria mercenaria (generic term)
+littleness|3
+(noun)|smallness|size (generic term)|bigness (antonym)|largeness (antonym)
+(noun)|smallness|weakness (generic term)
+(noun)|pettiness|smallness|meanness (generic term)|minginess (generic term)|niggardliness (generic term)|niggardness (generic term)|parsimony (generic term)|parsimoniousness (generic term)|tightness (generic term)|tightfistedness (generic term)|closeness (generic term)
+littler|1
+(adj)|smaller|small (similar term)|little (similar term)
+littoral|2
+(adj)|seashore|coast|seacoast|sea-coast (related term)
+(noun)|litoral|littoral zone|sands|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+littoral zone|1
+(noun)|littoral|litoral|sands|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+littorina|1
+(noun)|Littorina|genus Littorina|mollusk genus (generic term)
+littorinidae|1
+(noun)|Littorinidae|family Littorinidae|mollusk family (generic term)
+littre|1
+(noun)|Littre|Maximilien Paul Emile Littre|lexicographer (generic term)|lexicologist (generic term)
+liturgical|1
+(adj)|rite|religious rite (related term)
+liturgics|1
+(noun)|liturgiology|theology (generic term)|divinity (generic term)
+liturgiology|1
+(noun)|liturgics|theology (generic term)|divinity (generic term)
+liturgist|1
+(noun)|authority (generic term)
+liturgy|2
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+(noun)|rite (generic term)|religious rite (generic term)
+liv|1
+(adj)|fifty-four|54|cardinal (similar term)
+livable|1
+(adj)|liveable|habitable (similar term)|inhabitable (similar term)|unlivable (antonym)
+live|15
+(adj)|unrecorded|unfilmed (similar term)|untaped (similar term)|recorded (antonym)
+(adj)|in play (similar term)|living (similar term)|active (related term)|dead (antonym)
+(adj)|alive|liveborn (similar term)|viable (similar term)|vital (similar term)|animate (related term)|dead (antonym)
+(adj)|reverberant (similar term)|ringing (similar term)
+(adj)|loaded (similar term)
+(adj)|bouncy|lively|resilient|springy|elastic (similar term)
+(adj)|lively (similar term)
+(adj)|current (similar term)
+(adj)|hot|charged (similar term)
+(adj)|alive|active (similar term)
+(verb)|dwell|inhabit|be (generic term)|live in (related term)|live out (related term)
+(verb)|survive|last|live on|go|endure|hold up|hold out
+(verb)|exist|survive|subsist
+(verb)|be
+(verb)|know|experience|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+live-and-die|1
+(noun)|sensitive plant|touch-me-not|shame plant|humble plant|action plant|Mimosa pudica|mimosa (generic term)
+live-bearer|1
+(noun)|topminnow|poeciliid fish|poeciliid|cypriniform fish (generic term)
+live-bearing|1
+(adj)|viviparous|oviparous (antonym)|ovoviviparous (antonym)
+live-forever|1
+(noun)|orpine|orpin|livelong|Sedum telephium|sedum (generic term)
+live axle|1
+(noun)|driving axle|axle (generic term)
+live birth|1
+(noun)|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)|stillbirth (antonym)
+live body|1
+(noun)|body (generic term)|organic structure (generic term)|physical structure (generic term)
+live down|1
+(verb)|unlive|live (generic term)
+live in|1
+(verb)|sleep in|board (generic term)|live out (antonym)
+live it up|1
+(verb)|delight (generic term)|enjoy (generic term)|revel (generic term)
+live load|1
+(noun)|superload|load (generic term)|loading (generic term)|burden (generic term)
+live oak|1
+(noun)|oak (generic term)|oak tree (generic term)
+live on|1
+(verb)|survive|last|live|go|endure|hold up|hold out
+live out|2
+(verb)|survive (generic term)|last (generic term)|live (generic term)|live on (generic term)|go (generic term)|endure (generic term)|hold up (generic term)|hold out (generic term)
+(verb)|sleep out|commute (generic term)|travel back and forth (generic term)|live in (antonym)
+live over|1
+(verb)|relive|know (generic term)|experience (generic term)|live (generic term)
+live steam|1
+(noun)|steam (generic term)
+live up to|1
+(verb)|satisfy|fulfill|fulfil|meet (generic term)|fit (generic term)|conform to (generic term)|fall short of (antonym)
+live wire|1
+(noun)|eager beaver|busy bee|sharpie|sharpy|actor (generic term)|doer (generic term)|worker (generic term)
+live with|1
+(verb)|accept|swallow|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+liveable|1
+(adj)|livable|habitable (similar term)|inhabitable (similar term)|unlivable (antonym)
+liveborn|1
+(adj)|alive (similar term)|live (similar term)
+liveborn infant|1
+(noun)|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)|stillborn infant (antonym)
+livedo|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+livelihood|1
+(noun)|support|keep|living|bread and butter|sustenance|resource (generic term)
+liveliness|2
+(noun)|animation|activity (generic term)
+(noun)|life|spirit|sprightliness|animation (generic term)|spiritedness (generic term)|invigoration (generic term)|brio (generic term)|vivification (generic term)
+livelong|2
+(adj)|whole (similar term)
+(noun)|orpine|orpin|live-forever|Sedum telephium|sedum (generic term)
+lively|7
+(adj)|alive (similar term)|bouncing (similar term)|bouncy (similar term)|peppy (similar term)|spirited (similar term)|zippy (similar term)|breezy (similar term)|bubbly (similar term)|bubbling (similar term)|effervescent (similar term)|scintillating (similar term)|sparkly (similar term)|burbling (similar term)|burbly (similar term)|effusive (similar term)|gushing (similar term)|live (similar term)|warm (similar term)|alert (related term)|animated (related term)|alive (related term)|energetic (related term)|rested (related term)|spirited (related term)|dull (antonym)
+(adj)|racy|spirited (similar term)
+(adj)|brisk|merry|rattling|snappy|spanking|zippy|energetic (similar term)
+(adj)|bouncy|live|resilient|springy|elastic (similar term)
+(adj)|eventful (similar term)
+(adj)|full of life|vital|animated (similar term)|alive (similar term)
+(adj)|active (similar term)
+liven|1
+(verb)|enliven|liven up|invigorate|animate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)|deaden (antonym)
+liven up|1
+(verb)|enliven|liven|invigorate|animate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)|deaden (antonym)
+liveness|1
+(noun)|animateness|aliveness|physiological property (generic term)|inanimateness (antonym)
+liver|5
+(adj)|liver-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|internal organ (generic term)|viscus (generic term)
+(noun)|variety meat (generic term)|organs (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+liver-colored|1
+(adj)|liver|colored (similar term)|coloured (similar term)|colorful (similar term)
+liver-spotted dalmatian|1
+(noun)|dalmatian (generic term)|coach dog (generic term)|carriage dog (generic term)
+liver cancer|1
+(noun)|cancer of the liver|liver disease (generic term)|carcinoma (generic term)
+liver chestnut|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+liver disease|1
+(noun)|disease (generic term)
+liver fluke|1
+(noun)|Fasciola hepatica|fluke (generic term)|trematode (generic term)|trematode worm (generic term)
+liver pudding|1
+(noun)|liver sausage|liverwurst|sausage (generic term)
+liver rot|1
+(noun)|black disease|sheep rot|distomatosis|animal disease (generic term)
+liver sausage|1
+(noun)|liver pudding|liverwurst|sausage (generic term)
+liver spot|1
+(noun)|macule (generic term)|macula (generic term)
+liveried|1
+(adj)|unliveried (antonym)
+liverish|2
+(adj)|bilious|livery|ill (similar term)|sick (similar term)
+(adj)|atrabilious|bilious|dyspeptic|ill-natured (similar term)
+liverleaf|1
+(noun)|hepatica|herb (generic term)|herbaceous plant (generic term)
+livermore|1
+(noun)|Livermore|Mary Ashton Rice Livermore|suffragist (generic term)
+liverpool|1
+(noun)|Liverpool|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+liverpudlian|2
+(adj)|Liverpudlian|city|metropolis|urban center|port (related term)
+(noun)|Liverpudlian|Scouser|English person (generic term)
+liverwort|1
+(noun)|hepatic|bryophyte (generic term)|nonvascular plant (generic term)
+liverwurst|1
+(noun)|liver pudding|liver sausage|sausage (generic term)
+livery|4
+(adj)|bilious|liverish|ill (similar term)|sick (similar term)
+(noun)|uniform (generic term)
+(noun)|delivery|legal transfer|conveyance (generic term)|conveyance of title (generic term)|conveyancing (generic term)|conveying (generic term)
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+livery company|1
+(noun)|company (generic term)
+livery driver|1
+(noun)|taxidriver|taximan|cabdriver|cabman|cabby|hack driver|hack-driver|driver (generic term)
+livery stable|1
+(noun)|stable (generic term)|stalls (generic term)|horse barn (generic term)
+liveryman|1
+(noun)|employee (generic term)
+livestock|1
+(noun)|stock|farm animal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+livid|4
+(adj)|ashen|blanched|bloodless|white|colorless (similar term)|colourless (similar term)
+(adj)|light (similar term)
+(adj)|angry (similar term)
+(adj)|black-and-blue|injured (similar term)
+lividity|2
+(noun)|fury (generic term)|rage (generic term)|madness (generic term)
+(noun)|lividness|luridness|paleness|pallidness|pallor|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+lividness|1
+(noun)|lividity|luridness|paleness|pallidness|pallor|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+living|10
+(adj)|people (related term)
+(adj)|realistic (similar term)
+(adj)|absolute (similar term)
+(adj)|surviving|extant (similar term)
+(adj)|extant (similar term)
+(adj)|live (similar term)
+(noun)|life|experience (generic term)
+(noun)|people (generic term)|dead (antonym)
+(noun)|animation|life|aliveness|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|support|keep|livelihood|bread and butter|sustenance|resource (generic term)
+living-room|1
+(noun)|living room|sitting room|front room|parlor|parlour|room (generic term)
+living accommodations|1
+(noun)|housing|lodging|structure (generic term)|construction (generic term)
+living arrangement|1
+(noun)|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+living dead|1
+(noun)|zombi|zombie|dead person (generic term)|dead soul (generic term)|deceased person (generic term)|deceased (generic term)|decedent (generic term)|departed (generic term)
+living death|1
+(noun)|misery (generic term)|wretchedness (generic term)|miserableness (generic term)
+living granite|1
+(noun)|living rock|stone mimicry plant|succulent (generic term)
+living quarters|1
+(noun)|quarters|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+living rock|2
+(noun)|Ariocarpus fissuratus|cactus (generic term)
+(noun)|living granite|stone mimicry plant|succulent (generic term)
+living room|1
+(noun)|living-room|sitting room|front room|parlor|parlour|room (generic term)
+living space|1
+(noun)|lebensraum|room (generic term)|way (generic term)|elbow room (generic term)
+living stone|1
+(noun)|lithops|stoneface|stone-face|stone plant|stone life face|flowering stone|succulent (generic term)
+living substance|1
+(noun)|protoplasm|substance (generic term)|matter (generic term)
+living thing|1
+(noun)|animate thing|object (generic term)|physical object (generic term)
+living trust|1
+(noun)|inter vivos trust|trust (generic term)
+living wage|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+living will|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+livingroom set|1
+(noun)|livingroom suite|suite (generic term)
+livingroom suite|1
+(noun)|livingroom set|suite (generic term)
+livingston|1
+(noun)|Livingston|Robert R. Livingston|American Revolutionary leader (generic term)
+livingstone|1
+(noun)|Livingstone|David Livingstone|missionary (generic term)|explorer (generic term)|adventurer (generic term)
+livingstone daisy|1
+(noun)|Dorotheanthus bellidiformis|succulent (generic term)
+livistona|1
+(noun)|Livistona|genus Livistona|plant genus (generic term)
+livistona australis|1
+(noun)|cabbage palm|cabbage tree|Livistona australis|palm (generic term)|palm tree (generic term)
+livonia|1
+(noun)|Livonia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+livonian|2
+(noun)|Livonian|Latvian (generic term)
+(noun)|Livonian|Baltic-Finnic (generic term)
+livonian-speaking|1
+(adj)|Livonian-speaking|communicative (similar term)|communicatory (similar term)
+livy|1
+(noun)|Livy|Titus Livius|historian (generic term)|historiographer (generic term)
+liza|1
+(noun)|Mugil liza|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+lizard|2
+(noun)|saurian (generic term)
+(noun)|lounge lizard|gigolo (generic term)
+lizard's-tail|1
+(noun)|swamp lily|water dragon|Saururus cernuus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+lizard's-tail family|1
+(noun)|Saururaceae|family Saururaceae|dicot family (generic term)|magnoliopsid family (generic term)
+lizard-like|1
+(adj)|animal (similar term)
+lizard orchid|1
+(noun)|Himantoglossum hircinum|orchid (generic term)|orchidaceous plant (generic term)
+lizardfish|1
+(noun)|snakefish|snake-fish|soft-finned fish (generic term)|malacopterygian (generic term)
+ljubljana|1
+(noun)|Ljubljana|national capital (generic term)
+llama|1
+(noun)|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+llano|1
+(noun)|plain (generic term)|field (generic term)|champaign (generic term)
+llano estacado|1
+(noun)|Llano Estacado|tableland (generic term)|plateau (generic term)
+llb|1
+(noun)|Bachelor of Laws|LLB|law degree (generic term)
+lld|1
+(noun)|Doctor of Laws|LLD|honorary degree (generic term)|honoris causa (generic term)
+llew llaw gyffes|1
+(noun)|Llew Llaw Gyffes|Celtic deity (generic term)
+llewelyn powys|1
+(noun)|Powys|Llewelyn Powys|writer (generic term)|author (generic term)
+llm|1
+(noun)|Master of Laws|LLM|law degree (generic term)
+lloyd|1
+(noun)|Lloyd|Harold Lloyd|Harold Clayton Lloyd|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lloyd webber|1
+(noun)|Lloyd Webber|Andrew Lloyd Webber|Baron Lloyd Webber of Sydmonton|composer (generic term)
+llud|1
+(noun)|LLud|Celtic deity (generic term)
+llullaillaco|1
+(noun)|Llullaillaco|mountain peak (generic term)
+llyr|1
+(noun)|Llyr|Celtic deity (generic term)
+lm|1
+(noun)|lumen|luminous flux unit (generic term)
+lo/ovral|1
+(noun)|Lo/Ovral|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+loach|1
+(noun)|cypriniform fish (generic term)
+load|12
+(noun)|loading|burden|weight (generic term)
+(noun)|loading|indefinite quantity (generic term)
+(noun)|cargo|lading|freight|loading|payload|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|indefinite quantity (generic term)
+(noun)|electrical power (generic term)|electric power (generic term)|wattage (generic term)
+(noun)|burden|encumbrance|incumbrance|onus|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+(noun)|lode|deposit (generic term)|sedimentation (generic term)|alluviation (generic term)
+(noun)|warhead|payload|explosive (generic term)
+(noun)|electrical device (generic term)
+(verb)|lade|laden|load up|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|charge|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+load-bearing|1
+(adj)|supporting|bearing (similar term)
+load-shedding|1
+(noun)|limitation (generic term)|restriction (generic term)
+load down|1
+(verb)|pack|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+load factor|1
+(noun)|ratio (generic term)
+load line|1
+(noun)|Plimsoll line|Plimsoll mark|Plimsoll|waterline (generic term)|water line (generic term)|water level (generic term)
+load up|1
+(verb)|load|lade|laden|fill (generic term)|fill up (generic term)|make full (generic term)
+loaded|5
+(adj)|laden|ladened|full (similar term)
+(adj)|live (similar term)|undischarged (similar term)|unexploded (similar term)|unloaded (antonym)
+(adj)|prejudiced (similar term)|discriminatory (similar term)
+(adj)|affluent|flush|moneyed|wealthy|rich (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+loaded down|2
+(adj)|bowed down|overburdened|weighed down|burdened (similar term)
+(adj)|burdened|heavy-laden|encumbered (similar term)
+loader|2
+(noun)|stevedore|longshoreman|docker|dockhand|dock worker|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+loading|5
+(noun)|load|burden|weight (generic term)
+(noun)|load|indefinite quantity (generic term)
+(noun)|ratio (generic term)
+(noun)|cargo|lading|freight|load|payload|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|handling (generic term)|unloading (antonym)
+loading area|1
+(noun)|loading zone|stop (generic term)
+loading dock|1
+(noun)|dock|platform (generic term)
+loading zone|1
+(noun)|loading area|stop (generic term)
+loads|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+loadstar|2
+(noun)|lodestar|star (generic term)
+(noun)|lodestar|model (generic term)|example (generic term)
+loadstone|1
+(noun)|lodestone|permanent magnet (generic term)|static magnet (generic term)
+loaf|3
+(noun)|loaf of bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|loiter|lounge|footle|lollygag|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+loaf of bread|1
+(noun)|loaf|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+loaf sugar|1
+(noun)|sugarloaf|sugar loaf|sugar (generic term)|refined sugar (generic term)
+loafer|2
+(noun)|idler|do-nothing|layabout|bum|nonworker (generic term)
+(noun)|Loafer|shoe (generic term)
+loafing|1
+(noun)|idleness|idling|inactivity (generic term)
+loam|1
+(noun)|soil (generic term)|dirt (generic term)
+loamless|1
+(adj)|loamy (antonym)
+loamy|1
+(adj)|loamless (antonym)
+loan|3
+(noun)|debt (generic term)
+(noun)|loanword|word (generic term)
+(verb)|lend|give (generic term)|borrow (antonym)
+loan-blend|1
+(noun)|loanblend|hybrid|word (generic term)
+loan application|1
+(noun)|application (generic term)
+loan approval|1
+(noun)|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+loan collection|1
+(noun)|art collection (generic term)
+loan office|2
+(noun)|pawnbroker's shop|pawnshop|shop (generic term)|store (generic term)
+(noun)|office (generic term)|business office (generic term)
+loan participation|1
+(noun)|participation loan|participation financing|loan (generic term)
+loan shark|1
+(noun)|usurer|moneylender|shylock|lender (generic term)|loaner (generic term)|shark (generic term)
+loan translation|1
+(noun)|calque|calque formation|saying (generic term)|expression (generic term)|locution (generic term)
+loanblend|1
+(noun)|loan-blend|hybrid|word (generic term)
+loaner|2
+(noun)|lender|investor (generic term)|borrower (antonym)
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+loaning|1
+(noun)|lending|disposal (generic term)|disposition (generic term)
+loanword|1
+(noun)|loan|word (generic term)
+loasa|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+loasa family|1
+(noun)|Loasaceae|family Loasaceae|dilleniid dicot family (generic term)
+loasaceae|1
+(noun)|Loasaceae|family Loasaceae|loasa family|dilleniid dicot family (generic term)
+loath|2
+(adj)|loth|reluctant|unwilling (similar term)
+(adj)|antipathetic|antipathetical|averse|indisposed|loth|disinclined (similar term)
+loathe|1
+(verb)|abhor|abominate|execrate|hate (generic term)|detest (generic term)
+loather|1
+(noun)|abominator|hater (generic term)
+loathing|1
+(noun)|abhorrence|abomination|detestation|execration|odium|hate (generic term)|hatred (generic term)|disgust (generic term)
+loathly|1
+(adj)|disgusting|disgustful|distasteful|foul|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+loathsome|2
+(adj)|nauseating|nauseous|noisome|queasy|offensive|sickening|vile|unwholesome (similar term)
+(adj)|disgusting|disgustful|distasteful|foul|loathly|repellent|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+loathsomeness|1
+(noun)|repulsiveness|sliminess|vileness|lousiness|wickedness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+lob|3
+(noun)|return (generic term)
+(noun)|propulsion (generic term)|actuation (generic term)
+(verb)|throw (generic term)
+lobachevsky|1
+(noun)|Lobachevsky|Nikolai Ivanovich Lobachevsky|mathematician (generic term)
+lobar|1
+(adj)|body part (related term)
+lobar pneumonia|1
+(noun)|pneumonia (generic term)
+lobata|1
+(noun)|Lobata|order Lobata|animal order (generic term)
+lobate|2
+(adj)|lobated|body part (related term)
+(adj)|lobed|compound (similar term)
+lobate foot|1
+(noun)|bird's foot (generic term)
+lobated|1
+(adj)|lobate|body part (related term)
+lobby|4
+(noun)|anteroom|antechamber|entrance hall|hall|foyer|vestibule|room (generic term)
+(noun)|people (generic term)
+(noun)|pressure group|third house|political unit (generic term)|political entity (generic term)
+(verb)|buttonhole|solicit (generic term)|beg (generic term)|tap (generic term)
+lobbying expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+lobbyism|1
+(noun)|practice (generic term)|pattern (generic term)
+lobbyist|1
+(noun)|persuader (generic term)|inducer (generic term)
+lobe|4
+(noun)|body part (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|loop (generic term)
+(noun)|projection (generic term)
+lobe-finned fish|1
+(noun)|crossopterygian|lobefin|bony fish (generic term)
+lobe of the lung|1
+(noun)|lobe (generic term)
+lobectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+lobed|1
+(adj)|lobate|compound (similar term)
+lobed leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+lobed spleenwort|1
+(noun)|Asplenium pinnatifidum|spleenwort (generic term)
+lobefin|1
+(noun)|crossopterygian|lobe-finned fish|bony fish (generic term)
+lobelia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+lobelia cardinalis|1
+(noun)|cardinal flower|Indian pink|Lobelia cardinalis|lobelia (generic term)
+lobelia dortmanna|1
+(noun)|water lobelia|Lobelia dortmanna|lobelia (generic term)
+lobelia family|1
+(noun)|Lobeliaceae|family Lobeliaceae|dicot family (generic term)|magnoliopsid family (generic term)
+lobelia inflata|1
+(noun)|Indian tobacco|bladderpod|Lobelia inflata|lobelia (generic term)
+lobelia siphilitica|1
+(noun)|great lobelia|blue cardinal flower|Lobelia siphilitica|lobelia (generic term)
+lobeliaceae|1
+(noun)|Lobeliaceae|family Lobeliaceae|lobelia family|dicot family (generic term)|magnoliopsid family (generic term)
+lobeliaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+lobipes|1
+(noun)|Lobipes|genus Lobipes|bird genus (generic term)
+lobipes lobatus|1
+(noun)|northern phalarope|Lobipes lobatus|phalarope (generic term)
+lobito|1
+(noun)|Lobito|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+loblolly|1
+(noun)|gruel (generic term)
+loblolly pine|1
+(noun)|frankincense pine|Pinus taeda|pine (generic term)|pine tree (generic term)|true pine (generic term)
+lobotes|1
+(noun)|Lobotes|genus Lobotes|fish genus (generic term)
+lobotes pacificus|1
+(noun)|Pacific tripletail|Lobotes pacificus|tripletail (generic term)
+lobotes surinamensis|1
+(noun)|Atlantic tripletail|Lobotes surinamensis|tripletail (generic term)
+lobotidae|1
+(noun)|Lobotidae|family Lobotidae|fish family (generic term)
+lobotomy|1
+(noun)|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery (generic term)
+lobscouse|1
+(noun)|lobscuse|scouse|stew (generic term)
+lobscuse|1
+(noun)|lobscouse|scouse|stew (generic term)
+lobster|2
+(noun)|shellfish (generic term)
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+lobster-backed|1
+(adj)|red-coated|clothed (similar term)|clad (similar term)
+lobster-like|1
+(adj)|animal (similar term)
+lobster a la newburg|1
+(noun)|lobster Newburg|lobster a la Newburg|seafood Newburg (generic term)
+lobster butter|1
+(noun)|spread (generic term)|paste (generic term)
+lobster newburg|1
+(noun)|lobster Newburg|lobster a la Newburg|seafood Newburg (generic term)
+lobster plant|1
+(noun)|poinsettia|Christmas star|Christmas flower|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+lobster pot|1
+(noun)|trap (generic term)
+lobster stew|1
+(noun)|stew (generic term)
+lobster tail|1
+(noun)|lobster (generic term)
+lobster tart|1
+(noun)|tart (generic term)
+lobster thermidor|1
+(noun)|dish (generic term)
+lobsterback|1
+(noun)|redcoat|soldier (generic term)
+lobsterman|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+lobular|1
+(adj)|lobe (related term)
+lobularia|1
+(noun)|Lobularia|genus Lobularia|dilleniid dicot genus (generic term)
+lobularia maritima|1
+(noun)|sweet alyssum|sweet alison|Lobularia maritima|flower (generic term)
+lobularity|1
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+lobule|1
+(noun)|lobe (generic term)
+lobworm|1
+(noun)|lugworm|lug|polychaete (generic term)|polychete (generic term)|polychaete worm (generic term)|polychete worm (generic term)
+local|5
+(adj)|national (antonym)
+(adj)|section (related term)
+(adj)|localized (similar term)|localised (similar term)|topical (similar term)|general (antonym)
+(noun)|public transport (generic term)|express (antonym)
+(noun)|local anesthetic|local anaesthetic|topical anesthetic|topical anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+local anaesthesia|1
+(noun)|local anesthesia|anesthesia (generic term)|anaesthesia (generic term)
+local anaesthetic|1
+(noun)|local anesthetic|local|topical anesthetic|topical anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+local anesthesia|1
+(noun)|local anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+local anesthetic|1
+(noun)|local anaesthetic|local|topical anesthetic|topical anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+local area network|1
+(noun)|LAN|computer network (generic term)
+local authority|1
+(noun)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+local call|1
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+local department|1
+(noun)|department of local government|government department (generic term)
+local government|1
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+local option|1
+(noun)|self-government (generic term)|self-determination (generic term)|self-rule (generic term)
+local oscillator|1
+(noun)|heterodyne oscillator|oscillator (generic term)
+local post office|1
+(noun)|post office|branch (generic term)|subdivision (generic term)|arm (generic term)
+local road|1
+(noun)|local street|street (generic term)
+local street|1
+(noun)|local road|street (generic term)
+local time|1
+(noun)|civil time|standard time|time (generic term)
+locale|1
+(noun)|venue|locus|scene (generic term)
+localisation|2
+(noun)|localization of function|localisation of function|localization principle|localisation principle|localization|principle (generic term)|rule (generic term)
+(noun)|localization|location|locating|fix|determination (generic term)|finding (generic term)
+localisation of function|1
+(noun)|localization of function|localization principle|localisation principle|localization|localisation|principle (generic term)|rule (generic term)
+localisation principle|1
+(noun)|localization of function|localisation of function|localization principle|localization|localisation|principle (generic term)|rule (generic term)
+localise|4
+(verb)|place|localize|situate (generic term)|locate (generic term)
+(verb)|localize|focalize|focalise|lie (generic term)
+(verb)|localize|restrict (generic term)
+(verb)|set|localize|place|stage (generic term)|present (generic term)|represent (generic term)
+localised|2
+(adj)|localized|local (similar term)
+(adj)|localized|decentralized (similar term)|decentralised (similar term)
+localism|2
+(noun)|non-standard speech (generic term)
+(noun)|sectionalism|provincialism|partiality (generic term)|partisanship (generic term)
+locality|1
+(noun)|vicinity|neighborhood|neighbourhood|neck of the woods|section (generic term)
+localization|2
+(noun)|localisation|location|locating|fix|determination (generic term)|finding (generic term)
+(noun)|localization of function|localisation of function|localization principle|localisation principle|localisation|principle (generic term)|rule (generic term)
+localization of function|1
+(noun)|localisation of function|localization principle|localisation principle|localization|localisation|principle (generic term)|rule (generic term)
+localization principle|1
+(noun)|localization of function|localisation of function|localisation principle|localization|localisation|principle (generic term)|rule (generic term)
+localize|4
+(verb)|place|localise|situate (generic term)|locate (generic term)
+(verb)|localise|focalize|focalise|lie (generic term)
+(verb)|localise|restrict (generic term)
+(verb)|set|localise|place|stage (generic term)|present (generic term)|represent (generic term)
+localized|2
+(adj)|localised|local (similar term)
+(adj)|localised|decentralized (similar term)|decentralised (similar term)
+locally|1
+(adv)|topically
+locate|4
+(verb)|turn up|find (generic term)|regain (generic term)
+(verb)|situate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|place|site|station (generic term)|post (generic term)|base (generic term)|send (generic term)|place (generic term)
+(verb)|settle
+located|1
+(adj)|placed|set|situated|settled (similar term)
+locater|1
+(noun)|locator|surveyor (generic term)
+locating|2
+(noun)|placement|location|position|positioning|emplacement|activity (generic term)
+(noun)|localization|localisation|location|fix|determination (generic term)|finding (generic term)
+location|4
+(noun)|object (generic term)|physical object (generic term)
+(noun)|placement|locating|position|positioning|emplacement|activity (generic term)
+(noun)|localization|localisation|locating|fix|determination (generic term)|finding (generic term)
+(noun)|workplace (generic term)|work (generic term)|studio (antonym)
+locative|1
+(noun)|locative role|semantic role (generic term)|participant role (generic term)
+locative role|1
+(noun)|locative|semantic role (generic term)|participant role (generic term)
+locator|1
+(noun)|locater|surveyor (generic term)
+loch|2
+(noun)|inlet (generic term)|recess (generic term)
+(noun)|lake (generic term)
+loch achray|1
+(noun)|Loch Achray|loch (generic term)
+loch linnhe|1
+(noun)|Loch Linnhe|loch (generic term)
+loch ness|1
+(noun)|Loch Ness|loch (generic term)
+loch ness monster|1
+(noun)|Loch Ness monster|Nessie|legendary creature (generic term)
+lochaber ax|1
+(noun)|Lochaber ax|battle-ax (generic term)|battle-axe (generic term)
+lochia|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+lock|15
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|curl|ringlet|whorl|hair (generic term)
+(noun)|mechanism (generic term)
+(noun)|lock chamber|enclosure (generic term)
+(noun)|ignition lock|restraint (generic term)|constraint (generic term)
+(noun)|wrestling hold (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|lock up (related term)|lock up (related term)|unlock (antonym)|unlock (antonym)
+(verb)|engage|mesh|operate|move (generic term)|displace (generic term)|disengage (antonym)
+(verb)|engage (generic term)|unlock (antonym)
+(verb)|interlock|interlace|hold (generic term)|take hold (generic term)
+(verb)|interlock|embrace (generic term)|hug (generic term)|bosom (generic term)|squeeze (generic term)
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+(verb)|lock in|lock away|put away|shut up|shut away|lock up|confine (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+lock-gate|1
+(noun)|gate (generic term)
+lock-up option|1
+(noun)|option (generic term)
+lock away|1
+(verb)|lock in|lock|put away|shut up|shut away|lock up|confine (generic term)
+lock chamber|1
+(noun)|lock|enclosure (generic term)
+lock in|2
+(verb)|seal in|confine (generic term)
+(verb)|lock away|lock|put away|shut up|shut away|lock up|confine (generic term)
+lock out|1
+(verb)|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)
+lock ring|1
+(noun)|lockring|lock washer|washer (generic term)
+lock up|2
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|lock in|lock away|lock|put away|shut up|shut away|confine (generic term)
+lock washer|1
+(noun)|lockring|lock ring|washer (generic term)
+lockage|3
+(noun)|fee (generic term)
+(noun)|system (generic term)
+(noun)|passage (generic term)|transit (generic term)
+lockbox|1
+(noun)|safe-deposit|safe-deposit box|safety-deposit|safety deposit box|deposit box|strongbox (generic term)|deedbox (generic term)
+lockdown|1
+(noun)|imprisonment (generic term)|internment (generic term)
+locke|1
+(noun)|Locke|John Locke|philosopher (generic term)
+locked|1
+(adj)|barred|bolted|fast|latched|secured|fastened (similar term)
+locker|3
+(noun)|cabinet|storage locker|compartment (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|footlocker|trunk (generic term)
+locker-room|1
+(adj)|room (related term)
+locker room|1
+(noun)|room (generic term)
+locket|1
+(noun)|case (generic term)
+locking|1
+(noun)|lockup|protection (generic term)
+locking pliers|1
+(noun)|pliers (generic term)|pair of pliers (generic term)|plyers (generic term)
+lockjaw|1
+(noun)|tetanus|infection (generic term)
+lockkeeper|1
+(noun)|lockmaster|lockman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+lockman|1
+(noun)|lockmaster|lockkeeper|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+lockmaster|1
+(noun)|lockman|lockkeeper|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+locknut|1
+(noun)|safety nut|nut (generic term)
+lockout|1
+(noun)|resistance (generic term)|opposition (generic term)
+lockring|1
+(noun)|lock ring|lock washer|washer (generic term)
+locksmith|1
+(noun)|smith (generic term)
+lockstep|2
+(noun)|standing operating procedure (generic term)|standard operating procedure (generic term)|SOP (generic term)|standard procedure (generic term)
+(noun)|march (generic term)|marching (generic term)
+lockstitch|1
+(noun)|machine stitch (generic term)|sewing-machine stitch (generic term)
+lockup|2
+(noun)|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+(noun)|locking|protection (generic term)
+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 (similar term)
+loco disease|1
+(noun)|locoism|animal disease (generic term)
+locoism|1
+(noun)|loco disease|animal disease (generic term)
+locomote|1
+(verb)|travel|go|move|move on (related term)|move out (related term)|move back (related term)|go on (related term)|go up (related term)|go by (related term)|go off (related term)|go out (related term)|go by (related term)|go up (related term)|go down (related term)|go down (related term)|go down (related term)|go under (related term)|go on (related term)|go around (related term)|stay in place (antonym)
+locomotion|2
+(noun)|motive power|motivity|mobility (generic term)
+(noun)|travel|motion (generic term)|movement (generic term)|move (generic term)
+locomotive|2
+(adj)|locomotor|motion|movement|move (related term)
+(noun)|engine|locomotive engine|railway locomotive|self-propelled vehicle (generic term)
+locomotive engine|1
+(noun)|locomotive|engine|railway locomotive|self-propelled vehicle (generic term)
+locomotive engineer|1
+(noun)|engineer|railroad engineer|engine driver|operator (generic term)|manipulator (generic term)
+locomotor|1
+(adj)|locomotive|motion|movement|move (related term)
+locomotor ataxia|1
+(noun)|tabes dorsalis|neurosyphilis (generic term)
+locoweed|2
+(noun)|crazyweed|crazy weed|legume (generic term)|leguminous plant (generic term)
+(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+locule|1
+(noun)|loculus|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+loculus|1
+(noun)|locule|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+locum|1
+(noun)|locum tenens|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+locum tenens|1
+(noun)|locum|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+locus|3
+(noun)|venue|locale|scene (generic term)
+(noun)|site (generic term)|situation (generic term)
+(noun)|set (generic term)
+locus classicus|1
+(noun)|passage (generic term)
+locus niger|1
+(noun)|substantia nigra|nucleus niger|neural structure (generic term)
+locus of infection|1
+(noun)|site (generic term)|situation (generic term)
+locust|3
+(noun)|short-horned grasshopper (generic term)|acridid (generic term)
+(noun)|wood (generic term)
+(noun)|locust tree|tree (generic term)
+locust bean|1
+(noun)|carob|carob bean|algarroba bean|algarroba|locust pod|bean (generic term)
+locust pod|1
+(noun)|carob|carob bean|algarroba bean|algarroba|locust bean|bean (generic term)
+locust tree|1
+(noun)|locust|tree (generic term)
+locusta|1
+(noun)|Locusta|genus Locusta|arthropod genus (generic term)
+locusta migratoria|1
+(noun)|migratory locust|Locusta migratoria|locust (generic term)
+locustidae|1
+(noun)|Acrididae|family Acrididae|Locustidae|family Locustidae|arthropod family (generic term)
+locution|1
+(noun)|saying|expression|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+loddon pondweed|1
+(noun)|Potamogeton nodosus|Potamogeton americanus|pondweed (generic term)
+lode|1
+(noun)|load|deposit (generic term)|sedimentation (generic term)|alluviation (generic term)
+lodestar|2
+(noun)|loadstar|star (generic term)
+(noun)|loadstar|model (generic term)|example (generic term)
+lodestone|1
+(noun)|loadstone|permanent magnet (generic term)|static magnet (generic term)
+lodge|10
+(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist (generic term)
+(noun)|club|social club|society|guild|gild|order|association (generic term)
+(noun)|gatehouse (generic term)
+(noun)|hunting lodge|house (generic term)
+(noun)|indian lodge|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+(noun)|hostel|hostelry|inn|auberge|hotel (generic term)
+(verb)|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|wedge|stick|deposit|fasten (generic term)|fix (generic term)|secure (generic term)|stick out (related term)|dislodge (antonym)
+(verb)|charge|file|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+(verb)|accommodate|house (generic term)|put up (generic term)|domiciliate (generic term)|lodge in (related term)
+lodge in|1
+(verb)|occupy|reside|dwell (generic term)|live (generic term)|inhabit (generic term)
+lodgement|2
+(noun)|lodgment|allegation (generic term)
+(noun)|lodgment|lodging|fastness (generic term)|fixedness (generic term)|fixity (generic term)|fixture (generic term)|secureness (generic term)
+lodgepole|1
+(noun)|shore pine|lodgepole pine|spruce pine|Pinus contorta|pine (generic term)|pine tree (generic term)|true pine (generic term)
+lodgepole pine|1
+(noun)|shore pine|lodgepole|spruce pine|Pinus contorta|pine (generic term)|pine tree (generic term)|true pine (generic term)
+lodger|1
+(noun)|boarder|roomer|tenant (generic term)|renter (generic term)
+lodging|3
+(noun)|housing|living accommodations|structure (generic term)|construction (generic term)
+(noun)|lodgment|lodgement|fastness (generic term)|fixedness (generic term)|fixity (generic term)|fixture (generic term)|secureness (generic term)
+(noun)|residency (generic term)|residence (generic term)|abidance (generic term)
+lodging house|1
+(noun)|rooming house|house (generic term)|accommodation (generic term)
+lodgings|1
+(noun)|diggings|digs|domiciliation|pad|living quarters (generic term)|quarters (generic term)
+lodgment|2
+(noun)|lodgement|allegation (generic term)
+(noun)|lodgement|lodging|fastness (generic term)|fixedness (generic term)|fixity (generic term)|fixture (generic term)|secureness (generic term)
+lodine|1
+(noun)|etodolac|Lodine|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+lodz|1
+(noun)|Lodz|city (generic term)|metropolis (generic term)|urban center (generic term)
+loeb|1
+(noun)|Loeb|Jacques Loeb|physiologist (generic term)
+loess|1
+(noun)|soil (generic term)|dirt (generic term)
+loestrin|1
+(noun)|Loestrin|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+loewe|1
+(noun)|Loewe|Frederick Loewe|composer (generic term)
+loewi|1
+(noun)|Loewi|Otto Loewi|pharmacologist (generic term)|pharmaceutical chemist (generic term)
+lofortyx|1
+(noun)|Lofortyx|genus Lofortyx|bird genus (generic term)
+lofortyx californicus|1
+(noun)|California quail|Lofortyx californicus|quail (generic term)
+lofoten|1
+(noun)|Lofoten|archipelago (generic term)
+loft|7
+(noun)|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|attic|garret|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+(noun)|pigeon loft|shelter (generic term)
+(verb)|store (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|hit (generic term)
+(verb)|lay out (generic term)
+loft bombing|1
+(noun)|toss bombing|bombing run (generic term)
+loftiness|2
+(noun)|highness|height (generic term)|tallness (generic term)|lowness (antonym)
+(noun)|stateliness|majesty|impressiveness (generic term)|grandness (generic term)|magnificence (generic term)|richness (generic term)
+lofty|3
+(adj)|exalted|sublime|grand|high-flown|high-minded|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+(adj)|eminent|soaring|towering|high (similar term)
+(adj)|gallant|majestic|proud|impressive (similar term)
+log|7
+(noun)|wood (generic term)
+(noun)|backlog|firewood (generic term)
+(noun)|logarithm|exponent (generic term)|power (generic term)|index (generic term)
+(noun)|written record (generic term)|written account (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)|log up (related term)
+(verb)|lumber|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+log-in|1
+(verb)|log in|log on|access (generic term)|log out (antonym)
+log cabin|1
+(noun)|cabin (generic term)
+log in|1
+(verb)|log on|log-in|access (generic term)|log out (antonym)
+log line|1
+(noun)|cord (generic term)
+log off|1
+(verb)|log out|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|log in (antonym)
+log on|1
+(verb)|log in|log-in|access (generic term)|log out (antonym)
+log out|1
+(verb)|log off|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|log in (antonym)
+log up|1
+(verb)|clock up|record (generic term)|enter (generic term)|put down (generic term)
+log z's|1
+(verb)|sleep|kip|slumber|log Z's|catch some Z's|rest (generic term)|sleep in (related term)|sleep late (related term)|sleep in (related term)|sleep out (related term)|wake (antonym)
+logagraphia|1
+(noun)|agraphia|anorthography|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+logan|1
+(noun)|Logan|Mount Logan|mountain peak (generic term)
+loganberry|2
+(noun)|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry (generic term)|western dewberry (generic term)|Rubus ursinus (generic term)
+(noun)|berry (generic term)
+logania|1
+(noun)|Logania|genus Logania|dicot genus (generic term)|magnoliopsid genus (generic term)
+loganiaceae|1
+(noun)|Loganiaceae|family Loganiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+logarithm|1
+(noun)|log|exponent (generic term)|power (generic term)|index (generic term)
+logarithmic|1
+(adj)|exponent|power|index (related term)
+logarithmic scale|1
+(noun)|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+logbook|1
+(noun)|record (generic term)|record book (generic term)|book (generic term)
+loge|2
+(noun)|balcony (generic term)
+(noun)|box|compartment (generic term)
+logger|1
+(noun)|lumberman|lumberjack|feller|faller|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+loggerhead|2
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+(noun)|loggerhead turtle|Caretta caretta|sea turtle (generic term)|marine turtle (generic term)
+loggerhead shrike|1
+(noun)|Lanius lucovicianus|shrike (generic term)
+loggerhead turtle|1
+(noun)|loggerhead|Caretta caretta|sea turtle (generic term)|marine turtle (generic term)
+loggerheaded|1
+(adj)|blockheaded|boneheaded|fatheaded|thick|thickheaded|thick-skulled|wooden-headed|stupid (similar term)
+loggia|1
+(noun)|arcade (generic term)|colonnade (generic term)
+logginess|1
+(noun)|loginess|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+logging|1
+(noun)|work (generic term)
+logic|5
+(noun)|philosophy (generic term)
+(noun)|common sense (generic term)|good sense (generic term)|gumption (generic term)|horse sense (generic term)|sense (generic term)|mother wit (generic term)
+(noun)|principle (generic term)
+(noun)|logical system|system of logic|system (generic term)|system of rules (generic term)
+(noun)|system (generic term)|system of rules (generic term)
+logic bomb|1
+(noun)|slag code|malevolent program (generic term)
+logic diagram|1
+(noun)|logical diagram|multidimensional language (generic term)
+logic element|1
+(noun)|electronic device (generic term)
+logic gate|1
+(noun)|gate|computer circuit (generic term)
+logic operation|1
+(noun)|logical operation|operation (generic term)
+logic programing|1
+(noun)|Prolog|logic programming|programming language (generic term)|programing language (generic term)
+logic programming|2
+(noun)|Prolog|logic programing|programming language (generic term)|programing language (generic term)
+(noun)|programming (generic term)|programing (generic term)|computer programming (generic term)|computer programing (generic term)
+logical|4
+(adj)|dianoetic (similar term)|discursive (similar term)|formal (similar term)|ratiocinative (similar term)|analytic (related term)|analytical (related term)|coherent (related term)|consistent (related term)|logical (related term)|ordered (related term)|orderly (related term)|synthetic (related term)|synthetical (related term)|rational (related term)|reasonable (related term)|sensible (related term)|illogical (antonym)
+(adj)|legitimate|valid (similar term)
+(adj)|coherent|consistent|ordered|orderly|seamless (similar term)|logical (related term)|rational (related term)|incoherent (antonym)
+(adj)|coherent|lucid|rational (similar term)
+logical argument|1
+(noun)|argumentation|line of reasoning|line|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+logical diagram|1
+(noun)|logic diagram|multidimensional language (generic term)
+logical fallacy|1
+(noun)|fallacy (generic term)|false belief (generic term)
+logical implication|1
+(noun)|implication|conditional relation|logical relation (generic term)
+logical operation|1
+(noun)|logic operation|operation (generic term)
+logical positivism|1
+(noun)|positivism|empiricism (generic term)|empiricist philosophy (generic term)|sensationalism (generic term)
+logical positivist|1
+(noun)|positivist (generic term)|rationalist (generic term)
+logical proof|1
+(noun)|proof (generic term)
+logical quantifier|1
+(noun)|quantifier|word (generic term)
+logical relation|1
+(noun)|relation (generic term)
+logical system|1
+(noun)|logic|system of logic|system (generic term)|system of rules (generic term)
+logical thinking|1
+(noun)|reasoning|abstract thought|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+logical topology|1
+(noun)|topology (generic term)|network topology (generic term)
+logicality|1
+(noun)|logicalness|quality (generic term)|illogicalness (antonym)|illogicality (antonym)
+logically|1
+(adv)|illogically (antonym)
+logicalness|1
+(noun)|logicality|quality (generic term)|illogicalness (antonym)|illogicality (antonym)
+logician|1
+(noun)|logistician|expert (generic term)
+logicism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+loginess|1
+(noun)|logginess|fatigue (generic term)|weariness (generic term)|tiredness (generic term)
+logion|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+logistic|1
+(adj)|logistical|provision|supply|supplying (related term)
+logistic assessment|1
+(noun)|judgment (generic term)|judgement (generic term)|assessment (generic term)
+logistic assistance|1
+(noun)|logistic support|support (generic term)
+logistic support|1
+(noun)|logistic assistance|support (generic term)
+logistical|1
+(adj)|logistic|provision|supply|supplying (related term)
+logistician|1
+(noun)|logician|expert (generic term)
+logistics|1
+(noun)|provision (generic term)|supply (generic term)|supplying (generic term)
+logjam|2
+(noun)|arrest (generic term)|check (generic term)|halt (generic term)|hitch (generic term)|stay (generic term)|stop (generic term)|stoppage (generic term)
+(noun)|mass (generic term)
+logo|1
+(noun)|logotype|trademark (generic term)
+logogram|1
+(noun)|logograph|ideogram (generic term)|ideograph (generic term)
+logogrammatic|1
+(adj)|logographic|ideogram|ideograph (related term)
+logograph|1
+(noun)|logogram|ideogram (generic term)|ideograph (generic term)
+logographic|1
+(adj)|logogrammatic|ideogram|ideograph (related term)
+logomach|1
+(noun)|logomachist|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+logomachist|1
+(noun)|logomach|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+logomachy|1
+(noun)|argument (generic term)|argumentation (generic term)|debate (generic term)
+logomania|1
+(noun)|logorrhea|mania (generic term)|passion (generic term)|cacoethes (generic term)
+logorrhea|1
+(noun)|logomania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+logos|1
+(noun)|Son|Word|Logos|hypostasis (generic term)|hypostasis of Christ (generic term)
+logotype|1
+(noun)|logo|trademark (generic term)
+logroll|1
+(verb)|politick (generic term)
+logrolling|2
+(noun)|exchange (generic term)
+(noun)|birling|spin (generic term)|twirl (generic term)|twist (generic term)|twisting (generic term)|whirl (generic term)
+logrono|1
+(noun)|Logrono|city (generic term)|metropolis (generic term)|urban center (generic term)|Spain (generic term)|Kingdom of Spain (generic term)|Espana (generic term)
+logwood|2
+(noun)|wood (generic term)
+(noun)|logwood tree|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood (generic term)|blackwood tree (generic term)
+logwood tree|1
+(noun)|logwood|campeachy|bloodwood tree|Haematoxylum campechianum|blackwood (generic term)|blackwood tree (generic term)
+logy|1
+(adj)|dazed|foggy|groggy|stuporous|lethargic (similar term)|unergetic (similar term)
+lohan|1
+(noun)|Arhat|Arhant|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+loin|2
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|lumbus|body part (generic term)
+loin of lamb|1
+(noun)|cut of lamb (generic term)
+loincloth|1
+(noun)|breechcloth|breechclout|garment (generic term)
+loins|2
+(noun)|pubes|pubic region|area (generic term)|region (generic term)
+(noun)|body part (generic term)
+loir|1
+(noun)|Glis glis|dormouse (generic term)
+loire|1
+(noun)|Loire|Loire River|river (generic term)
+loire river|1
+(noun)|Loire|Loire River|river (generic term)
+loire vally|1
+(noun)|Loire Vally|valley (generic term)|vale (generic term)
+loiseleuria|1
+(noun)|Loiseleuria|genus Loiseleuria|dilleniid dicot genus (generic term)
+loiseleuria procumbens|1
+(noun)|alpine azalea|mountain azalea|Loiseleuria procumbens|shrub (generic term)|bush (generic term)
+loiter|1
+(verb)|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+loiterer|1
+(noun)|lingerer|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+loki|1
+(noun)|Loki|Norse deity (generic term)
+lola montez|1
+(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+loligo|1
+(noun)|squid (generic term)
+lolita|1
+(noun)|Lolita|lass (generic term)|lassie (generic term)|young girl (generic term)|jeune fille (generic term)
+lolium|1
+(noun)|Lolium|genus Lolium|monocot genus (generic term)|liliopsid genus (generic term)
+lolium multiflorum|1
+(noun)|Italian ryegrass|Italian rye|Lolium multiflorum|rye grass (generic term)|ryegrass (generic term)
+lolium perenne|1
+(noun)|perennial ryegrass|English ryegrass|Lolium perenne|rye grass (generic term)|ryegrass (generic term)
+lolium temulentum|1
+(noun)|darnel|tare|bearded darnel|cheat|Lolium temulentum|rye grass (generic term)|ryegrass (generic term)
+loll|2
+(verb)|droop|dangle (generic term)|swing (generic term)|drop (generic term)
+(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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+lollipop|2
+(noun)|ice lolly|lolly|popsicle|frozen dessert (generic term)
+(noun)|sucker|all-day sucker|candy (generic term)|confect (generic term)
+lollipop lady|1
+(noun)|lollipop woman|crossing guard (generic term)
+lollipop woman|1
+(noun)|lollipop lady|crossing guard (generic term)
+lollop|1
+(verb)|walk (generic term)
+lolly|2
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|ice lolly|lollipop|popsicle|frozen dessert (generic term)
+lollygag|1
+(verb)|loiter|lounge|footle|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+lolo|1
+(noun)|Lolo|Yi|Loloish (generic term)
+lolo-burmese|1
+(noun)|Lolo-Burmese|Burmese-Yi|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+loloish|1
+(noun)|Loloish|Lolo-Burmese (generic term)|Burmese-Yi (generic term)
+lomariopsidaceae|1
+(noun)|Lomariopsidaceae|family Lomariopsidaceae|fern family (generic term)
+lomatia|1
+(noun)|shrub (generic term)|bush (generic term)
+lombard|1
+(noun)|Lombard|Langobard|European (generic term)
+lombard street|1
+(noun)|Lombard Street|street (generic term)
+lombardia|1
+(noun)|Lombardy|Lombardia|Italian region (generic term)
+lombardy|1
+(noun)|Lombardy|Lombardia|Italian region (generic term)
+lombardy poplar|1
+(noun)|Lombardy poplar|Populus nigra italica|black poplar (generic term)|Populus nigra (generic term)
+lome|1
+(noun)|Lome|capital of Togo|national capital (generic term)
+loment|1
+(noun)|pod (generic term)|seedpod (generic term)
+lomogramma|1
+(noun)|Lomogramma|genus Lomogramma|fern genus (generic term)
+lomotil|1
+(noun)|Lomotil|antidiarrheal (generic term)|antidiarrheal drug (generic term)
+lomustine|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+lonas|1
+(noun)|Lonas|genus Lonas|asterid dicot genus (generic term)
+lonas annua|1
+(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower (generic term)
+lonas inodora|1
+(noun)|African daisy|yellow ageratum|Lonas inodora|Lonas annua|flower (generic term)
+lonchocarpus|1
+(noun)|Lonchocarpus|genus Lonchocarpus|rosid dicot genus (generic term)
+london|2
+(noun)|London|Greater London|British capital|capital of the United Kingdom|national capital (generic term)
+(noun)|London|Jack London|John Griffith Chaney|writer (generic term)|author (generic term)
+london plane|1
+(noun)|London plane|Platanus acerifolia|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+londoner|1
+(noun)|Londoner|English person (generic term)
+lone|3
+(adj)|alone|lonely|solitary|unaccompanied (similar term)
+(adj)|lonely|solitary|unsocial (similar term)
+(adj)|lonesome|only|sole|solitary|single (similar term)
+lone-star state|1
+(noun)|Texas|Lone-Star State|TX|American state (generic term)
+lone hand|1
+(noun)|loner|lone wolf|individualist (generic term)
+lone wolf|1
+(noun)|loner|lone hand|individualist (generic term)
+loneliness|3
+(noun)|solitariness|isolation (generic term)
+(noun)|forlornness|desolation|sadness (generic term)|unhappiness (generic term)
+(noun)|aloneness|lonesomeness|solitude|disposition (generic term)|temperament (generic term)
+lonely|4
+(adj)|alone|lone|solitary|unaccompanied (similar term)
+(adj)|lonesome|dejected (similar term)
+(adj)|solitary|unfrequented|inaccessible (similar term)|unaccessible (similar term)
+(adj)|lone|solitary|unsocial (similar term)
+loner|1
+(noun)|lone wolf|lone hand|individualist (generic term)
+lonesome|2
+(adj)|lone|only|sole|solitary|single (similar term)
+(adj)|lonely|dejected (similar term)
+lonesomeness|1
+(noun)|aloneness|loneliness|solitude|disposition (generic term)|temperament (generic term)
+long|9
+(adj)|agelong (similar term)|bimestrial (similar term)|daylong (similar term)|drawn-out (similar term)|extended (similar term)|lengthy (similar term)|prolonged (similar term)|protracted (similar term)|durable (similar term)|lasting (similar term)|long-lasting (similar term)|long-lived (similar term)|eight-day (similar term)|endless (similar term)|eternal (similar term)|interminable (similar term)|hourlong (similar term)|lifelong (similar term)|womb-to-tomb (similar term)|long-acting (similar term)|long-dated (similar term)|longish (similar term)|long-life (similar term)|longitudinal (similar term)|long-range (similar term)|long-run (similar term)|long-term (similar term)|semipermanent (similar term)|longstanding (similar term)|monthlong (similar term)|nightlong (similar term)|all-night (similar term)|overnight (similar term)|perennial (similar term)|time-consuming (similar term)|weeklong (similar term)|seven-day (similar term)|yearlong (similar term)|short (antonym)
+(adj)|elongate (similar term)|elongated (similar term)|elongated (similar term)|extended (similar term)|lengthened (similar term)|prolonged (similar term)|extendible (similar term)|extendable (similar term)|far (similar term)|lank (similar term)|long-handled (similar term)|pole-handled (similar term)|long-range (similar term)|long-snouted (similar term)|long-staple (similar term)|long-wool (similar term)|long-wooled (similar term)|oblong (similar term)|polysyllabic (similar term)|sesquipedalian (similar term)|stretch (similar term)|short (antonym)
+(adj)|tall (similar term)
+(adj)|retentive|recollective|tenacious|mindful (related term)|aware (related term)|unretentive (antonym)
+(adj)|short (antonym)
+(adj)|unsound (similar term)
+(adj)|farseeing|farsighted|foresighted|foresightful|prospicient|longsighted|provident (similar term)
+(adj)|abundant (similar term)
+(verb)|hanker|yearn|desire (generic term)|want (generic term)
+long-acting|1
+(adj)|long (similar term)
+long-ago|1
+(adj)|old (similar term)
+long-armed|1
+(adj)|armed (similar term)
+long-beard|1
+(noun)|bellarmine|longbeard|greybeard|jug (generic term)
+long-billed marsh wren|1
+(noun)|Cistothorus palustris|marsh wren (generic term)
+long-bodied|1
+(adj)|bodied (similar term)
+long-branched|1
+(adj)|branchy (similar term)
+long-chain|1
+(adj)|chain|chemical chain (related term)
+long-chain molecule|1
+(noun)|long chain|chain (generic term)|chemical chain (generic term)
+long-clawed prawn|1
+(noun)|river prawn|Palaemon australis|prawn (generic term)
+long-dated|1
+(adj)|long (similar term)
+long-distance|2
+(adj)|call|phone call|telephone call (related term)
+(adj)|distant (similar term)
+long-distance call|1
+(noun)|long distance|trunk call|call (generic term)|phone call (generic term)|telephone call (generic term)
+long-distance runner|1
+(noun)|marathoner|marathon runner|road runner|runner (generic term)
+long-eared bat|1
+(noun)|vespertilian bat (generic term)|vespertilionid (generic term)
+long-eared owl|1
+(noun)|Asio otus|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+long-faced|2
+(adj)|glum|gloomy|dejected (similar term)
+(adj)|faced (similar term)
+long-familiar|1
+(adj)|well-known|familiar (similar term)
+long-fin tunny|1
+(noun)|albacore|Thunnus alalunga|tuna (generic term)|tunny (generic term)
+long-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+long-handled|1
+(adj)|pole-handled|long (similar term)
+long-handled spade|1
+(noun)|ditch spade|spade (generic term)
+long-head coneflower|1
+(noun)|prairie coneflower|Ratibida columnifera|coneflower (generic term)
+long-headed|1
+(adj)|dolichocephalic (similar term)|dolichocranial (similar term)|dolichocranic (similar term)
+long-horned beetle|1
+(noun)|longicorn|longicorn beetle|beetle (generic term)
+long-horned grasshopper|1
+(noun)|tettigoniid|grasshopper (generic term)|hopper (generic term)
+long-jawed|1
+(adj)|jawed (similar term)
+long-lasting|1
+(adj)|durable|lasting|long-lived|long (similar term)
+long-legged|1
+(adj)|leggy|long-shanked|tall (similar term)
+long-legs|1
+(noun)|stilt|stiltbird|longlegs|stilt plover|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+long-life|1
+(adj)|long (similar term)
+long-lived|1
+(adj)|durable|lasting|long-lasting|long (similar term)
+long-neck clam|2
+(noun)|soft-shell clam|steamer|steamer clam|clam (generic term)
+(noun)|soft-shell clam|steamer|steamer clam|Mya arenaria|clam (generic term)
+long-play|1
+(adj)|long-playing|slow (similar term)
+long-playing|1
+(adj)|long-play|slow (similar term)
+long-range|1
+(adj)|long (similar term)
+long-run|1
+(adj)|long-term|semipermanent|long (similar term)
+long-shanked|1
+(adj)|leggy|long-legged|tall (similar term)
+long-snouted|1
+(adj)|long (similar term)
+long-spurred|1
+(adj)|short-spurred (antonym)
+long-spurred violet|1
+(noun)|Viola rostrata|violet (generic term)
+long-stalked|1
+(adj)|tall-stalked|tall (similar term)
+long-standing|1
+(adj)|longstanding|traditional (similar term)
+long-staple|1
+(adj)|long (similar term)
+long-staple cotton|1
+(noun)|cotton (generic term)|cotton fiber (generic term)|cotton wool (generic term)
+long-sufferance|1
+(noun)|long-suffering|endurance (generic term)
+long-suffering|2
+(adj)|enduring|patient (similar term)
+(noun)|long-sufferance|endurance (generic term)
+long-tailed porcupine|1
+(noun)|Trichys lipura|Old World porcupine (generic term)
+long-tailed weasel|1
+(noun)|longtail weasel|Mustela frenata|weasel (generic term)
+long-term|1
+(adj)|long-run|semipermanent|long (similar term)
+long-term memory|1
+(noun)|LTM|memory (generic term)|remembering (generic term)
+long-wearing|1
+(adj)|durable|serviceable (similar term)
+long-winded|1
+(adj)|tedious|verbose|windy|wordy|prolix (similar term)
+long-windedly|1
+(adv)|verbosely|windily|wordily
+long-windedness|1
+(noun)|prolixity|prolixness|windiness|wordiness|verboseness (generic term)|verbosity (generic term)
+long-wool|1
+(adj)|long-wooled|long (similar term)
+long-wooled|1
+(adj)|long-wool|long (similar term)
+long ago|1
+(adv)|long since|lang syne
+long beach|1
+(noun)|Long Beach|city (generic term)|metropolis (generic term)|urban center (generic term)
+long beech fern|1
+(noun)|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+long bone|1
+(noun)|os longum|bone (generic term)|os (generic term)
+long chain|1
+(noun)|long-chain molecule|chain (generic term)|chemical chain (generic term)
+long distance|1
+(noun)|long-distance call|trunk call|call (generic term)|phone call (generic term)|telephone call (generic term)
+long division|1
+(noun)|division (generic term)
+long dozen|1
+(noun)|thirteen|13|XIII|baker's dozen|large integer (generic term)
+long fly|1
+(noun)|gymnastic exercise (generic term)
+long haul|2
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|long run|time period (generic term)|period of time (generic term)|period (generic term)
+long horse|1
+(noun)|vaulting horse|buck|horse (generic term)|gymnastic horse (generic term)
+long hundred|1
+(noun)|great hundred|120|large integer (generic term)
+long hundredweight|1
+(noun)|hundredweight|cwt|avoirdupois unit (generic term)
+long iron|1
+(noun)|iron (generic term)
+long island|1
+(noun)|Long Island|island (generic term)
+long island sound|1
+(noun)|Long Island Sound|sound (generic term)
+long johns|1
+(noun)|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+long jump|2
+(noun)|broad jump|field event (generic term)
+(noun)|broad jump|jumping (generic term)
+long measure|1
+(noun)|linear measure|measure (generic term)|quantity (generic term)|amount (generic term)
+long moss|1
+(noun)|Spanish moss|old man's beard|black moss|Tillandsia usneoides|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+long pants|1
+(noun)|long trousers|trouser (generic term)|pant (generic term)
+long pepper|2
+(noun)|Piper longum|true pepper (generic term)|pepper vine (generic term)
+(noun)|cayenne|cayenne pepper|chili pepper|chilli pepper|jalapeno|Capsicum annuum longum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+long pillow|1
+(noun)|bolster|pillow (generic term)
+long plane|1
+(noun)|jointer|jointer plane|jointing plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+long run|1
+(noun)|long haul|time period (generic term)|period of time (generic term)|period (generic term)
+long saphenous vein|1
+(noun)|great saphenous vein|saphenous vein (generic term)|vena saphena (generic term)
+long shot|2
+(noun)|gamble (generic term)
+(noun)|contestant (generic term)
+long since|1
+(adv)|long ago|lang syne
+long sleeve|1
+(noun)|sleeve (generic term)|arm (generic term)
+long suit|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|forte|strong suit|metier|specialty|speciality|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+long time|1
+(noun)|age|years|time period (generic term)|period of time (generic term)|period (generic term)
+long tom|1
+(noun)|cannon (generic term)
+long ton|1
+(noun)|ton|gross ton|avoirdupois unit (generic term)
+long trousers|1
+(noun)|long pants|trouser (generic term)|pant (generic term)
+long underwear|1
+(noun)|union suit|undergarment (generic term)|unmentionable (generic term)
+long wave|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+long whist|1
+(noun)|whist|short whist|card game (generic term)|cards (generic term)
+longan|1
+(noun)|lungen|longanberry|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+longanberry|2
+(noun)|longan|lungen|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+(noun)|dragon's eye|edible fruit (generic term)
+longanimity|1
+(noun)|patience|forbearance|good nature (generic term)|impatience (antonym)
+longanimous|1
+(adj)|forbearing|patient (similar term)
+longar palm|1
+(noun)|palmyra|palmyra palm|toddy palm|wine palm|lontar|Borassus flabellifer|fan palm (generic term)
+longbeard|1
+(noun)|bellarmine|long-beard|greybeard|jug (generic term)
+longboat|1
+(noun)|boat (generic term)
+longbow|1
+(noun)|bow (generic term)
+longbowman|1
+(noun)|archer (generic term)|bowman (generic term)
+longcase clock|1
+(noun)|grandfather clock|pendulum clock (generic term)
+longed-for|1
+(adj)|wished-for|yearned-for|wanted (similar term)
+longer|1
+(noun)|thirster|yearner|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+longevity|2
+(noun)|length of service|longness (generic term)
+(noun)|seniority|oldness (generic term)
+longfellow|1
+(noun)|Longfellow|Henry Wadsworth Longfellow|poet (generic term)
+longfin mako|1
+(noun)|Isurus paucus|mako (generic term)|mako shark (generic term)
+longhand|2
+(adj)|written (similar term)
+(noun)|running hand|cursive|cursive script|handwriting (generic term)|hand (generic term)|script (generic term)
+longheaded thimbleweed|1
+(noun)|Anemone riparia|thimbleweed (generic term)|Anemone cylindrica (generic term)
+longhorn|1
+(noun)|Texas longhorn|beef (generic term)|beef cattle (generic term)
+longicorn|1
+(noun)|long-horned beetle|longicorn beetle|beetle (generic term)
+longicorn beetle|1
+(noun)|long-horned beetle|longicorn|beetle (generic term)
+longing|1
+(noun)|yearning|hungriness|desire (generic term)
+longingly|1
+(adv)|yearningly
+longish|1
+(adj)|long (similar term)
+longitude|1
+(noun)|angular distance (generic term)
+longitudinal|3
+(adj)|angular distance (related term)
+(adj)|lengthwise (similar term)|lengthways (similar term)
+(adj)|long (similar term)
+longitudinally|1
+(adv)|lengthways|lengthwise|longwise|longways
+longleaf pine|1
+(noun)|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine (generic term)
+longlegs|1
+(noun)|stilt|stiltbird|long-legs|stilt plover|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+longness|2
+(noun)|length (generic term)|shortness (antonym)
+(noun)|duration (generic term)|length (generic term)|shortness (antonym)
+longroot|1
+(noun)|pine-barren sandwort|Arenaria caroliniana|sandwort (generic term)
+longshoreman|1
+(noun)|stevedore|loader|docker|dockhand|dock worker|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+longshot|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+longsighted|2
+(adj)|eagle-eyed|keen-sighted|farseeing|farsighted (similar term)|presbyopic (similar term)
+(adj)|farseeing|farsighted|foresighted|foresightful|prospicient|long|provident (similar term)
+longsightedness|1
+(noun)|hyperopia|hypermetropia|hypermetropy|farsightedness|ametropia (generic term)|myopia (antonym)
+longstanding|2
+(adj)|long (similar term)
+(adj)|long-standing|traditional (similar term)
+longtail weasel|1
+(noun)|long-tailed weasel|Mustela frenata|weasel (generic term)
+longtime|1
+(adj)|old (similar term)
+longueur|1
+(noun)|duration (generic term)|continuance (generic term)
+longways|2
+(noun)|longways dance|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+(adv)|lengthways|lengthwise|longwise|longitudinally
+longways dance|1
+(noun)|longways|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+longwise|1
+(adv)|lengthways|lengthwise|longways|longitudinally
+longwool|1
+(noun)|domestic sheep (generic term)|Ovis aries (generic term)
+longyi|1
+(noun)|lungi|lungyi|piece of cloth (generic term)|piece of material (generic term)
+lonicera|1
+(noun)|Lonicera|genus Lonicera|asterid dicot genus (generic term)
+lonicera albiflora|1
+(noun)|white honeysuckle|Lonicera albiflora|honeysuckle (generic term)
+lonicera canadensis|1
+(noun)|American fly honeysuckle|fly honeysuckle|Lonicera canadensis|honeysuckle (generic term)
+lonicera caprifolium|1
+(noun)|Italian honeysuckle|Italian woodbine|Lonicera caprifolium|honeysuckle (generic term)
+lonicera dioica|1
+(noun)|yellow honeysuckle|Lonicera dioica|honeysuckle (generic term)
+lonicera flava|1
+(noun)|yellow honeysuckle|Lonicera flava|honeysuckle (generic term)
+lonicera hirsuta|1
+(noun)|hairy honeysuckle|Lonicera hirsuta|honeysuckle (generic term)
+lonicera involucrata|1
+(noun)|twinberry|Lonicera involucrata|honeysuckle (generic term)
+lonicera japonica|1
+(noun)|Japanese honeysuckle|Lonicera japonica|honeysuckle (generic term)
+lonicera japonica halliana|1
+(noun)|Hall's honeysuckle|Lonicera japonica halliana|honeysuckle (generic term)
+lonicera morrowii|1
+(noun)|Morrow's honeysuckle|Lonicera morrowii|honeysuckle (generic term)
+lonicera periclymenum|1
+(noun)|woodbine|Lonicera periclymenum|honeysuckle (generic term)
+lonicera sempervirens|1
+(noun)|trumpet honeysuckle|coral honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle (generic term)
+lonicera tatarica|1
+(noun)|bush honeysuckle|Tartarian honeysuckle|Lonicera tatarica|honeysuckle (generic term)
+lonicera xylosteum|1
+(noun)|European fly honeysuckle|European honeysuckle|Lonicera xylosteum|honeysuckle (generic term)
+loniten|1
+(noun)|minoxidil|Loniten|Rogaine|vasodilator (generic term)|vasodilative (generic term)
+lontar|1
+(noun)|palmyra|palmyra palm|toddy palm|wine palm|longar palm|Borassus flabellifer|fan palm (generic term)
+loo|1
+(noun)|water closet|closet|W.C.|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+loofa|1
+(noun)|loofah|luffa|loufah sponge|fiber (generic term)|fibre (generic term)
+loofah|2
+(noun)|loofa|luffa|loufah sponge|fiber (generic term)|fibre (generic term)
+(noun)|vegetable sponge|Luffa cylindrica|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+look|14
+(noun)|expression|aspect|facial expression|face|countenance (generic term)|visage (generic term)
+(noun)|looking|looking at|sensing (generic term)|perception (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|spirit|tone|feel|feeling|flavor|flavour|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(verb)|look back (related term)|look away (related term)|look after (related term)|look on (related term)|look up to (related term)|look for (related term)|look into (related term)|look back (related term)|look up (related term)
+(verb)|appear|seem|be (generic term)
+(verb)|be (generic term)
+(verb)|search|examine (generic term)|see (generic term)
+(verb)|front|face|lie (generic term)|back (antonym)
+(verb)|attend|take care|see|care (generic term)|give care (generic term)
+(verb)|convey (generic term)|impart (generic term)
+(verb)|expect|await|wait
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|count|bet|depend|calculate|reckon|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+look-alike|2
+(adj)|like (similar term)|similar (similar term)
+(noun)|double|image|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+look-over|1
+(noun)|once-over|examination (generic term)|scrutiny (generic term)
+look across|1
+(verb)|look out on|look out over|overlook|lie (generic term)
+look after|1
+(verb)|watch (generic term)|look out (generic term)|watch out (generic term)
+look around|1
+(verb)|look (generic term)
+look at|2
+(verb)|consider|take|deal|think about (generic term)
+(verb)|view|consider|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+look away|1
+(verb)|look (generic term)
+look back|2
+(verb)|look backward|look (generic term)
+(verb)|review|retrospect|remember (generic term)|think back (generic term)
+look backward|1
+(verb)|look back|look (generic term)
+look down on|1
+(verb)|contemn (generic term)|despise (generic term)|scorn (generic term)|disdain (generic term)|admire (antonym)
+look for|2
+(verb)|search|seek
+(verb)|anticipate|look to|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+look forward|1
+(verb)|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+look into|2
+(verb)|investigate|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|check|check up on|check out|suss out|check over|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+look like|1
+(verb)|resemble (generic term)
+look on|2
+(verb)|watch
+(verb)|think of|repute|regard as|look upon|esteem|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+look out|2
+(verb)|watch|watch out
+(verb)|protect (generic term)
+look out on|1
+(verb)|look out over|overlook|look across|lie (generic term)
+look out over|1
+(verb)|look out on|overlook|look across|lie (generic term)
+look sharp|1
+(verb)|rush|hasten|hurry|festinate|act (generic term)|move (generic term)
+look to|2
+(verb)|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+(verb)|anticipate|look for|expect (generic term)|look (generic term)|await (generic term)|wait (generic term)
+look up|1
+(verb)|consult|refer|research (generic term)
+look up to|1
+(verb)|admire|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)|look down on (antonym)
+look upon|1
+(verb)|think of|repute|regard as|look on|esteem|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+lookdown|1
+(noun)|lookdown fish|Selene vomer|moonfish (generic term)|Atlantic moonfish (generic term)|horsefish (generic term)|horsehead (generic term)|horse-head (generic term)|dollarfish (generic term)|Selene setapinnis (generic term)
+lookdown fish|1
+(noun)|lookdown|Selene vomer|moonfish (generic term)|Atlantic moonfish (generic term)|horsefish (generic term)|horsehead (generic term)|horse-head (generic term)|dollarfish (generic term)|Selene setapinnis (generic term)
+looker|2
+(noun)|spectator|witness|viewer|watcher|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|mantrap|dish|woman (generic term)|adult female (generic term)
+looker-on|1
+(noun)|onlooker|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+looking|3
+(adj)|sounding|superficial (similar term)
+(noun)|look|looking at|sensing (generic term)|perception (generic term)
+(noun)|looking for|search (generic term)|hunt (generic term)|hunting (generic term)
+looking-glass plant|1
+(noun)|Heritiera littoralis|angiospermous tree (generic term)|flowering tree (generic term)
+looking at|1
+(noun)|look|looking|sensing (generic term)|perception (generic term)
+looking for|1
+(noun)|looking|search (generic term)|hunt (generic term)|hunting (generic term)
+looking glass|1
+(noun)|glass|mirror (generic term)
+looking glass tree|1
+(noun)|Heritiera macrophylla|angiospermous tree (generic term)|flowering tree (generic term)
+lookout|4
+(noun)|lookout man|sentinel|sentry|watch|spotter|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+(noun)|observation post|post (generic term)|station (generic term)
+(noun)|observation tower|lookout station|observatory|structure (generic term)|construction (generic term)
+(noun)|outlook|look (generic term)|looking (generic term)|looking at (generic term)
+lookout man|1
+(noun)|lookout|sentinel|sentry|watch|spotter|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+lookout station|1
+(noun)|lookout|observation tower|observatory|structure (generic term)|construction (generic term)
+lookup|1
+(noun)|search|operation (generic term)
+loom|4
+(noun)|textile machine (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|tower|predominate|hulk|rise (generic term)|lift (generic term)|rear (generic term)
+(verb)|brood|hover|bulk large|hang (generic term)
+loon|3
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|diver|gaviiform seabird (generic term)
+(noun)|addle-head|addlehead|birdbrain|misfit (generic term)
+looney|1
+(noun)|crazy|loony|weirdo|lunatic (generic term)|madman (generic term)|maniac (generic term)
+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 (similar term)
+(noun)|crazy|looney|weirdo|lunatic (generic term)|madman (generic term)|maniac (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+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 (generic term)|LSD (generic term)
+loop|14
+(noun)|cringle|eyelet|grommet|grummet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|simple closed curve (generic term)|Jordan curve (generic term)
+(noun)|iteration|process (generic term)|physical process (generic term)
+(noun)|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+(noun)|fingerprint (generic term)
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|loop topology|topology (generic term)|network topology (generic term)
+(noun)|intrauterine device (generic term)|IUD (generic term)
+(noun)|closed circuit|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)|open circuit (antonym)
+(noun)|loop-the-loop|flight maneuver (generic term)|airplane maneuver (generic term)
+(verb)|intertwine|knit (generic term)|entwine (generic term)
+(verb)|circle (generic term)|circulate (generic term)
+(verb)|coil|curl|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)|uncoil (antonym)
+(verb)|tie (generic term)|bind (generic term)
+loop-line|1
+(noun)|branch line (generic term)|spur track (generic term)|spur (generic term)
+loop-the-loop|1
+(noun)|loop|flight maneuver (generic term)|airplane maneuver (generic term)
+loop gain|1
+(noun)|amplification (generic term)|gain (generic term)
+loop knot|1
+(noun)|knot (generic term)
+loop topology|1
+(noun)|loop|topology (generic term)|network topology (generic term)
+looped|1
+(adj)|whorled|coiled (similar term)
+looper|1
+(noun)|measuring worm|inchworm|caterpillar (generic term)
+loophole|2
+(noun)|ambiguity (generic term)
+(noun)|hole (generic term)
+looping|1
+(noun)|iteration|process (generic term)|physical process (generic term)
+loopy|2
+(adj)|simple closed curve|Jordan curve (related term)
+(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 (similar term)
+loos|1
+(noun)|Loos|Adolf Loos|architect (generic term)|designer (generic term)
+loose|22
+(adj)|free (similar term)
+(adj)|friable (similar term)|light (similar term)|sandy (similar term)|shifting (similar term)|unfirm (similar term)|silty (similar term)|unconsolidated (similar term)|compact (antonym)
+(adj)|uncontrolled (similar term)
+(adj)|baggy (similar term)|loose-fitting (similar term)|sloppy (similar term)|flyaway (similar term)|lax (related term)|tight (antonym)
+(adj)|informal|unofficial (similar term)
+(adj)|free|liberal|inexact (similar term)
+(adj)|lax|unconstipated (similar term)|regular (similar term)
+(adj)|unaffixed|affixed (antonym)
+(adj)|slack|lax (similar term)
+(adj)|open|coarse (similar term)|harsh (similar term)
+(adj)|insecure (similar term)
+(adj)|idle|irresponsible (similar term)
+(adj)|unpackaged (similar term)
+(adj)|phlegmy (similar term)
+(adj)|at large|escaped|on the loose|free (similar term)
+(adj)|easy|light|promiscuous|sluttish|wanton|unchaste (similar term)
+(adj)|unbound (similar term)
+(verb)|free|liberate|release|unloose|unloosen|confine (antonym)
+(verb)|unleash|let loose|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+(verb)|loosen|change (generic term)|alter (generic term)|modify (generic term)|stiffen (antonym)
+(verb)|loosen|relax|weaken (generic term)|stiffen (antonym)
+(adv)|free
+loose-fitting|1
+(adj)|baggy|sloppy|loose (similar term)
+loose-jointed|1
+(adj)|lax (similar term)
+loose-jowled|1
+(adj)|double-chinned|jowly|fat (similar term)
+loose-leaf lettuce|1
+(noun)|leaf lettuce|lettuce (generic term)
+loose cannon|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+loose end|1
+(noun)|unfinished business|work (generic term)
+loose off|1
+(verb)|let fly|let drive|fire (generic term)|discharge (generic term)
+loose sentence|1
+(noun)|complex sentence (generic term)
+loose smut|2
+(noun)|smut (generic term)
+(noun)|smut (generic term)|smut fungus (generic term)
+loose trousers|1
+(noun)|protective garment (generic term)
+loose woman|1
+(noun)|adulteress|fornicatress|hussy|jade|slut|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+looseleaf|1
+(adj)|unbound (similar term)
+loosely|2
+(adv)|slackly
+(adv)|broadly|broadly speaking|generally|narrowly (antonym)
+loosely knit|1
+(adj)|distant (similar term)
+loosen|7
+(verb)|loose|change (generic term)|alter (generic term)|modify (generic term)|stiffen (antonym)
+(verb)|relax|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|relax|change (generic term)
+(verb)|tease|tease apart|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)
+(verb)|untie|undo|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|relax|loose|weaken (generic term)|stiffen (antonym)
+loosen up|5
+(verb)|unstuff|free (generic term)|disengage (generic term)|stuff (antonym)
+(verb)|relax|act (generic term)|behave (generic term)|do (generic term)
+(verb)|limber up|warm up|exercise (generic term)|work out (generic term)
+(verb)|relax|unbend|unwind|decompress|slow down|change state (generic term)|turn (generic term)|tense (antonym)
+(verb)|relax|unstrain|unlax|unwind|make relaxed|affect (generic term)|strain (antonym)|tense (antonym)
+loosened|1
+(adj)|disentangled|unsnarled|untangled (similar term)
+looseness|6
+(noun)|diarrhea|diarrhoea|looseness of the bowels|symptom (generic term)
+(noun)|unrestraint (generic term)
+(noun)|inaccuracy (generic term)
+(noun)|movability (generic term)|movableness (generic term)|fixedness (antonym)
+(noun)|play|movability (generic term)|movableness (generic term)|tightness (antonym)
+(noun)|profligacy|dissipation|dissolution|licentiousness|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+looseness of the bowels|1
+(noun)|diarrhea|diarrhoea|looseness|symptom (generic term)
+loosening|2
+(noun)|relaxation|slackening|weakening (generic term)
+(noun)|laxation|alteration (generic term)|modification (generic term)|adjustment (generic term)|tightening (antonym)
+loosestrife|2
+(noun)|subshrub (generic term)|suffrutex (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+loosestrife family|1
+(noun)|Lythraceae|family Lythraceae|dicot family (generic term)|magnoliopsid family (generic term)
+loot|4
+(noun)|booty|pillage|plunder|prize|swag|dirty money|stolen property (generic term)
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(verb)|plunder|steal (generic term)
+(verb)|plunder|despoil|reave|strip|rifle|ransack|pillage|foray|take (generic term)
+looted|1
+(adj)|pillaged|plundered|ransacked|empty (similar term)
+looter|1
+(noun)|plunderer|pillager|spoiler|despoiler|raider|freebooter|thief (generic term)|stealer (generic term)
+looting|1
+(noun)|robbery|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+lop|2
+(verb)|discerp|sever|cut (generic term)
+(verb)|snip|clip|crop|trim|dress|prune|cut back|thin out (generic term)
+lop-eared|1
+(adj)|eared (similar term)
+lop off|1
+(verb)|cut off|chop off|detach (generic term)|come off (generic term)|come away (generic term)
+lope|3
+(noun)|jog|trot|locomotion (generic term)|travel (generic term)
+(noun)|canter|gait (generic term)
+(verb)|run (generic term)
+lope de vega|1
+(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist (generic term)|playwright (generic term)
+lope felix de vega carpio|1
+(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist (generic term)|playwright (generic term)
+lophiidae|1
+(noun)|Lophiidae|family Lophiidae|fish family (generic term)
+lophius|1
+(noun)|Lophius|genus Lophius|fish genus (generic term)
+lophius americanus|1
+(noun)|goosefish|angler|anglerfish|angler fish|monkfish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+lophodytes|1
+(noun)|Lophodytes|genus Lophodytes|bird genus (generic term)
+lophodytes cucullatus|1
+(noun)|hooded merganser|hooded sheldrake|Lophodytes cucullatus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+lopholatilus|1
+(noun)|Lopholatilus|genus Lopholatilus|fish genus (generic term)
+lopholatilus chamaeleonticeps|1
+(noun)|tilefish|Lopholatilus chamaeleonticeps|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+lophophora|1
+(noun)|Lophophora|genus Lophophora|caryophylloid dicot genus (generic term)
+lophophora williamsii|1
+(noun)|mescal|mezcal|peyote|Lophophora williamsii|cactus (generic term)
+lophophorus|1
+(noun)|Lophophorus|genus Lophophorus|bird genus (generic term)
+lophosoria|1
+(noun)|Lophosoria|genus Lophosoria|fern genus (generic term)
+lophosoriaceae|1
+(noun)|Lophosoriaceae|family Lophosoriaceae|fern family (generic term)
+lopid|1
+(noun)|gemfibrozil|Lopid|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+lopper|1
+(noun)|pruner|pruning hook|pruning saw (generic term)
+lopressor|1
+(noun)|metoprolol|Lopressor|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+lopsided|2
+(adj)|asymmetrical (similar term)|asymmetric (similar term)
+(adj)|askew|awry|cockeyed|wonky|skew-whiff|crooked (similar term)
+lopsidedly|1
+(adv)|crookedly
+lopsidedness|1
+(noun)|skewness|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+loquacious|1
+(adj)|chatty|gabby|garrulous|talkative|talky|voluble (similar term)
+loquaciously|1
+(adv)|garrulously|talkatively|talkily
+loquaciousness|1
+(noun)|garrulity|garrulousness|loquacity|talkativeness|communicativeness (generic term)
+loquacity|1
+(noun)|garrulity|garrulousness|loquaciousness|talkativeness|communicativeness (generic term)
+loquat|2
+(noun)|loquat tree|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree (generic term)
+(noun)|Japanese plum|edible fruit (generic term)
+loquat tree|1
+(noun)|loquat|Japanese medlar|Japanese plum|Eriobotrya japonica|fruit tree (generic term)
+lorado taft|1
+(noun)|Taft|Lorado Taft|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+loranthaceae|1
+(noun)|Loranthaceae|family Loranthaceae|mistletoe family|dilleniid dicot family (generic term)|parasitic plant (generic term)
+loranthus|1
+(noun)|Loranthus|genus Loranthus|dilleniid dicot genus (generic term)
+loranthus europaeus|1
+(noun)|mistletoe|Loranthus europaeus|parasitic plant (generic term)
+lorazepam|1
+(noun)|Ativan|benzodiazepine (generic term)
+lorca|1
+(noun)|Garcia Lorca|Frederico Garcia Lorca|Lorca|poet (generic term)|dramatist (generic term)|playwright (generic term)
+lorchel|1
+(noun)|fungus (generic term)
+lord|4
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+(noun)|overlord|master|ruler (generic term)|swayer (generic term)
+(noun)|Lord|noble|nobleman|male aristocrat (generic term)|noblewoman (antonym)|Lady (antonym)
+(verb)|ennoble (generic term)|gentle (generic term)|entitle (generic term)
+lord's day|1
+(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day (generic term)|day of rest (generic term)
+lord's prayer|1
+(noun)|Lord's Prayer|prayer (generic term)
+lord's resistance army|1
+(noun)|Lord's Resistance Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lord's supper|2
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+(noun)|Last Supper|Lord's Supper|Seder (generic term)|Passover supper (generic term)
+lord's table|1
+(noun)|altar|communion table|Lord's table|table (generic term)
+lord britten of aldeburgh|1
+(noun)|Britten|Benjamin Britten|Edward Benjamin Britten|Lord Britten of Aldeburgh|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+lord chancellor|1
+(noun)|Lord Chancellor|Lord High Chancellor|cabinet minister (generic term)
+lord george gordon byron|1
+(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet (generic term)
+lord high chancellor|1
+(noun)|Lord Chancellor|Lord High Chancellor|cabinet minister (generic term)
+lord it over|1
+(verb)|queen it over|put on airs|act superior|act (generic term)|move (generic term)
+lord macaulay|1
+(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian (generic term)|historiographer (generic term)
+lord nelson|1
+(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral (generic term)|full admiral (generic term)
+lord of misrule|1
+(noun)|Lord of Misrule|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+lord privy seal|1
+(noun)|Lord Privy Seal|cabinet minister (generic term)
+lord rayleigh|1
+(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist (generic term)
+lordless|1
+(adj)|masterless|uncontrolled (similar term)
+lordliness|2
+(noun)|dignity|gravitas|bearing (generic term)|comportment (generic term)|presence (generic term)|mien (generic term)
+(noun)|arrogance|haughtiness|hauteur|high-handedness|pride (generic term)
+lordly|2
+(adj)|august|grand|noble (similar term)
+(adj)|disdainful|haughty|prideful|sniffy|supercilious|swaggering|proud (similar term)
+lordolatry|1
+(noun)|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+lordosis|1
+(noun)|hollow-back|spinal curvature (generic term)
+lordotic|1
+(adj)|dipped|swayback|swaybacked|unfit (similar term)
+lords-and-ladies|1
+(noun)|cuckoopint|jack-in-the-pulpit|Arum maculatum|arum (generic term)|aroid (generic term)
+lords spiritual|1
+(noun)|first estate|clergy (generic term)
+lords temporal|1
+(noun)|second estate|nobility (generic term)|aristocracy (generic term)
+lordship|2
+(noun)|Lordship|title (generic term)
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+lore|1
+(noun)|traditional knowledge|content (generic term)|cognitive content (generic term)|mental object (generic term)
+lorelei|1
+(noun)|Lorelei|Siren (generic term)
+loren|1
+(noun)|Loren|Sophia Loren|Sofia Scicolone|actress (generic term)
+lorentz|1
+(noun)|Lorentz|Hendrik Antoon Lorentz|physicist (generic term)
+lorentz force|1
+(noun)|Lorentz force|force (generic term)
+lorenz|1
+(noun)|Lorenz|Konrad Lorenz|Konrad Zacharias Lorenz|zoologist (generic term)|animal scientist (generic term)
+lorenz hart|1
+(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist (generic term)|lyrist (generic term)
+lorenz milton hart|1
+(noun)|Hart|Lorenz Hart|Lorenz Milton Hart|lyricist (generic term)|lyrist (generic term)
+lorenz oken|1
+(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist (generic term)|natural scientist (generic term)
+lorenz okenfuss|1
+(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist (generic term)|natural scientist (generic term)
+lorenzo de'medici|1
+(noun)|Lorenzo de'Medici|Lorenzo the Magnificent|statesman (generic term)|solon (generic term)|national leader (generic term)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+lorenzo dressing|1
+(noun)|Lorenzo dressing|dressing (generic term)|salad dressing (generic term)
+lorenzo ganganelli|1
+(noun)|Clement XIV|Lorenzo Ganganelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+lorenzo the magnificent|1
+(noun)|Lorenzo de'Medici|Lorenzo the Magnificent|statesman (generic term)|solon (generic term)|national leader (generic term)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+loretta young|1
+(noun)|Young|Loretta Young|actress (generic term)
+lorfan|1
+(noun)|levallorphan|Lorfan|drug (generic term)
+lorgnette|1
+(noun)|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+lorica|1
+(noun)|sheath (generic term)|case (generic term)
+loricata|1
+(noun)|Loricata|order Loricata|animal order (generic term)
+loriinae|1
+(noun)|Loriinae|subfamily Loriinae|bird family (generic term)
+lorikeet|1
+(noun)|lory (generic term)
+loris gracilis|1
+(noun)|slender loris|Loris gracilis|lemur (generic term)
+lorisidae|1
+(noun)|Lorisidae|family Lorisidae|mammal family (generic term)
+lorraine|1
+(noun)|Lorraine|Lothringen|French region (generic term)
+lorraine cross|1
+(noun)|Lorraine cross|cross of Lorraine|Cross (generic term)
+lorre|1
+(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lorry|2
+(noun)|wagon (generic term)|waggon (generic term)
+(noun)|camion|truck (generic term)|motortruck (generic term)
+lory|1
+(noun)|parrot (generic term)
+los alamos|1
+(noun)|Los Alamos|town (generic term)
+los angeles|1
+(noun)|Los Angeles|City of the Angels|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+lose|9
+(verb)|keep (antonym)
+(verb)|suffer (generic term)
+(verb)|misplace|mislay|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|find (antonym)
+(verb)|turn a loss|profit (antonym)|break even (antonym)
+(verb)|win (antonym)
+(verb)|fall back|drop off|fall behind|recede|regress (generic term)|retrograde (generic term)|retrogress (generic term)|gain (antonym)
+(verb)|miss
+(verb)|suffer|worsen (generic term)|decline (generic term)
+lose it|1
+(verb)|break down|snap|act (generic term)|behave (generic term)|do (generic term)
+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 (generic term)
+lose weight|1
+(verb)|reduce|melt off|slim|slenderize|thin|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+loser|3
+(noun)|also-ran|contestant (generic term)|winner (antonym)
+(noun)|failure|nonstarter|unsuccessful person|unfortunate (generic term)|unfortunate person (generic term)|achiever (antonym)
+(noun)|gambler (generic term)|winner (antonym)
+losing streak|1
+(noun)|streak (generic term)|run (generic term)
+losings|1
+(noun)|losses|financial loss (generic term)|winnings (antonym)
+loss|8
+(noun)|failure (generic term)
+(noun)|transferred property (generic term)|transferred possession (generic term)
+(noun)|red ink|red|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)|gain (antonym)
+(noun)|decline (generic term)|diminution (generic term)
+(noun)|deprivation|disadvantage (generic term)
+(noun)|personnel casualty|casualty (generic term)
+(noun)|experience (generic term)
+(noun)|passing|departure|exit|expiration|going|release|death (generic term)|decease (generic term)|expiry (generic term)
+loss leader|1
+(noun)|drawing card|leader|feature (generic term)
+loss of consciousness|1
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+loss ratio|1
+(noun)|ratio (generic term)
+losses|1
+(noun)|losings|financial loss (generic term)|winnings (antonym)
+lossless|1
+(adj)|lossy (antonym)
+lossy|1
+(adj)|lossless (antonym)
+lost|11
+(adj)|mislaid (similar term)|misplaced (similar term)|gone (similar term)|missing (similar term)|squandered (similar term)|wasted (similar term)|straying (similar term)|lost (related term)|found (antonym)
+(adj)|confused|disoriented|unoriented (similar term)
+(adj)|cursed (similar term)|damned (similar term)|doomed (similar term)|unredeemed (similar term)|unsaved (similar term)|destroyed (similar term)|ruined (similar term)|cursed (related term)|curst (related term)|lost (related term)|unregenerate (related term)|unregenerated (related term)|saved (antonym)
+(adj)|confiscate (similar term)|forfeit (similar term)|forfeited (similar term)|won (antonym)
+(adj)|unrecoverable (similar term)|irrecoverable (similar term)
+(adj)|missed|incomprehensible (similar term)|uncomprehensible (similar term)
+(adj)|bemused|deep in thought|preoccupied|thoughtful (similar term)
+(adj)|forgotten|unrecoverable (similar term)|irrecoverable (similar term)
+(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|mazed|mixed-up|at sea|perplexed (similar term)
+(adj)|helpless|hopeless (similar term)
+(noun)|doomed|people (generic term)
+lost-and-found|1
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+lost cause|1
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+lost tribes|1
+(noun)|Lost Tribes|Tribes of Israel (generic term)|Twelve Tribes of Israel (generic term)
+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 (generic term)|large indefinite amount (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|fortune|destiny|fate|luck|circumstances|portion|condition (generic term)
+(noun)|bunch|caboodle|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|set|circle|band|social group (generic term)
+(noun)|draw|object (generic term)|physical object (generic term)
+(noun)|Lot|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|distribute|administer|mete out|deal|parcel out|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+lot's wife|1
+(noun)|Lot's wife|Jewess (generic term)
+lota|2
+(noun)|water bottle (generic term)
+(noun)|Lota|genus Lota|fish genus (generic term)
+lota lota|1
+(noun)|burbot|eelpout|ling|cusk|Lota lota|cod (generic term)|codfish (generic term)
+lotario di segni|1
+(noun)|Innocent III|Lotario di Segni|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+loth|2
+(adj)|loath|reluctant|unwilling (similar term)
+(adj)|antipathetic|antipathetical|averse|indisposed|loath|disinclined (similar term)
+lothario|1
+(noun)|Lothario|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+lothian region|1
+(noun)|Lothian Region|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+lothringen|1
+(noun)|Lorraine|Lothringen|French region (generic term)
+loti|1
+(noun)|Lesotho monetary unit (generic term)
+lotic|1
+(adj)|lentic (antonym)
+lotion|2
+(noun)|toiletry (generic term)|toilet article (generic term)
+(noun)|application|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+lots|1
+(noun)|tons|dozens|heaps|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+lotte|1
+(noun)|goosefish|angler|anglerfish|angler fish|monkfish|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+lottery|2
+(noun)|accident (generic term)|fortuity (generic term)|chance event (generic term)
+(noun)|drawing|game of chance (generic term)|gambling game (generic term)
+lottery winner|1
+(noun)|prize winner|winner (generic term)
+lotto|1
+(noun)|bingo|beano|keno|board game (generic term)
+lotus|3
+(noun)|Indian lotus|sacred lotus|Nelumbo nucifera|water lily (generic term)
+(noun)|Lotus|genus Lotus|rosid dicot genus (generic term)
+(noun)|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily (generic term)
+lotus-eater|1
+(noun)|stargazer|daydreamer (generic term)|woolgatherer (generic term)
+lotus americanus|1
+(noun)|prairie bird's-foot trefoil|compass plant|prairie lotus|prairie trefoil|Lotus americanus|subshrub (generic term)|suffrutex (generic term)
+lotus berthelotii|1
+(noun)|coral gem|Lotus berthelotii|subshrub (generic term)|suffrutex (generic term)
+lotus corniculatus|1
+(noun)|bird's foot trefoil|bird's foot clover|babies' slippers|bacon and eggs|Lotus corniculatus|subshrub (generic term)|suffrutex (generic term)
+lotus land|1
+(noun)|lotusland|kingdom (generic term)|land (generic term)|realm (generic term)
+lotus position|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+lotus tetragonolobus|1
+(noun)|winged pea|asparagus pea|Lotus tetragonolobus|herb (generic term)|herbaceous plant (generic term)
+lotus tree|1
+(noun)|Ziziphus lotus|shrub (generic term)|bush (generic term)
+lotusland|1
+(noun)|lotus land|kingdom (generic term)|land (generic term)|realm (generic term)
+lou gehrig|1
+(noun)|Gehrig|Lou Gehrig|Henry Louis Gehrig|ballplayer (generic term)|baseball player (generic term)
+lou gehrig's disease|1
+(noun)|amyotrophic lateral sclerosis|ALS|Lou Gehrig's disease|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)|sclerosis (generic term)|induration (generic term)
+louche|1
+(adj)|shady|disreputable (similar term)
+loud|5
+(adj)|big (similar term)|blaring (similar term)|blasting (similar term)|clarion (similar term)|deafening (similar term)|earsplitting (similar term)|roaring (similar term)|thunderous (similar term)|thundery (similar term)|earthshaking (similar term)|harsh-voiced (similar term)|loud-mouthed (similar term)|loud-voiced (similar term)|shattering (similar term)|shouted (similar term)|yelled (similar term)|trumpet-like (similar term)|vocal (similar term)|audible (related term)|hearable (related term)|noisy (related term)|soft (antonym)
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|meretricious|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|forte|fortemente (similar term)|fortissimo (similar term)|piano (antonym)
+(adj)|noisy|colorful (similar term)|colourful (similar term)
+(adv)|loudly|aloud|softly (antonym)
+loud-hailer|1
+(noun)|bullhorn|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+loud-mouthed|1
+(adj)|loud (similar term)
+loud-voiced|1
+(adj)|loud (similar term)
+loud pedal|1
+(noun)|sustaining pedal|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+louden|2
+(verb)|change intensity (generic term)|quieten (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|quieten (antonym)
+loudly|3
+(adv)|loud|aloud|softly (antonym)
+(adv)|obstreperously|clamorously
+(adv)|forte|piano (antonym)
+loudmouth|1
+(noun)|blusterer|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+loudness|2
+(noun)|volume|intensity|sound property (generic term)|softness (antonym)
+(noun)|flashiness|garishness|gaudiness|brashness|meretriciousness|tawdriness|glitz|tastelessness (generic term)
+loudspeaker|1
+(noun)|speaker|speaker unit|loudspeaker system|speaker system|electro-acoustic transducer (generic term)
+loudspeaker system|1
+(noun)|loudspeaker|speaker|speaker unit|speaker system|electro-acoustic transducer (generic term)
+loufah sponge|1
+(noun)|loofa|loofah|luffa|fiber (generic term)|fibre (generic term)
+lough|2
+(noun)|cove (generic term)
+(noun)|lake (generic term)
+louis|1
+(noun)|Louis|Joe Louis|Joseph Louis Barrow|prizefighter (generic term)|gladiator (generic term)
+louis-hector berlioz|1
+(noun)|Berlioz|Hector Berlioz|Louis-Hector Berlioz|composer (generic term)
+louis agassiz|1
+(noun)|Agassiz|Louis Agassiz|Jean Louis Rodolphe Agassiz|naturalist (generic term)|natural scientist (generic term)
+louis antoine de bougainville|1
+(noun)|Bougainville|Louis Antoine de Bougainville|explorer (generic term)|adventurer (generic term)
+louis aragon|1
+(noun)|Aragon|Louis Aragon|writer (generic term)|author (generic term)
+louis armstrong|1
+(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician (generic term)|jazzman (generic term)|trumpeter (generic term)|cornetist (generic term)
+louis auchincloss|1
+(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer (generic term)|author (generic term)
+louis b. mayer|1
+(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+louis bleriot|1
+(noun)|Bleriot|Louis Bleriot|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+louis braille|1
+(noun)|Braille|Louis Braille|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+louis burt mayer|1
+(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+louis charles alfred de musset|1
+(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer (generic term)|author (generic term)|poet (generic term)
+louis comfort tiffany|1
+(noun)|Tiffany|Louis Comfort Tiffany|artist (generic term)|creative person (generic term)
+louis d'or|1
+(noun)|coin (generic term)
+louis d'outremer|1
+(noun)|Louis IV|Louis d'Outremer|King of France (generic term)
+louis eugene felix neel|1
+(noun)|Neel|Louis Eugene Felix Neel|physicist (generic term)
+louis henri sullivan|1
+(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect (generic term)|designer (generic term)
+louis henry sullivan|1
+(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect (generic term)|designer (generic term)
+louis i|1
+(noun)|Louis I|Louis the Pious|King of France (generic term)
+louis ii|1
+(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France (generic term)
+louis iii|1
+(noun)|Louis III|King of France (generic term)
+louis isadore kahn|1
+(noun)|Kahn|Louis Isadore Kahn|architect (generic term)|designer (generic term)
+louis iv|1
+(noun)|Louis IV|Louis d'Outremer|King of France (generic term)
+louis ix|1
+(noun)|Louis IX|Saint Louis|St. Louis|King of France (generic term)|saint (generic term)
+louis jacques mande daguerre|1
+(noun)|Daguerre|Louis Jacques Mande Daguerre|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+louis joliet|1
+(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer (generic term)|adventurer (generic term)
+louis jolliet|1
+(noun)|Jolliet|Louis Jolliet|Joliet|Louis Joliet|explorer (generic term)|adventurer (generic term)
+louis le begue|1
+(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France (generic term)
+louis le faineant|1
+(noun)|Louis V|Louis le Faineant|King of France (generic term)
+louis le hutin|1
+(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France (generic term)
+louis leakey|1
+(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+louis pasteur|1
+(noun)|Pasteur|Louis Pasteur|chemist (generic term)|biologist (generic term)|life scientist (generic term)
+louis seymour bazett leakey|1
+(noun)|Leakey|Louis Leakey|Louis Seymour Bazett Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+louis stanton auchincloss|1
+(noun)|Auchincloss|Louis Auchincloss|Louis Stanton Auchincloss|writer (generic term)|author (generic term)
+louis sullivan|1
+(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect (generic term)|designer (generic term)
+louis the bruiser|1
+(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France (generic term)
+louis the far|1
+(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France (generic term)
+louis the german|1
+(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France (generic term)
+louis the great|1
+(noun)|Louis XIV|Sun King|Louis the Great|King of France (generic term)
+louis the pious|1
+(noun)|Louis I|Louis the Pious|King of France (generic term)
+louis the quarreller|1
+(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France (generic term)
+louis the stammerer|1
+(noun)|Louis II|Louis le Begue|Louis the Stammerer|Louis the German|King of France (generic term)
+louis the wideawake|1
+(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France (generic term)
+louis untermeyer|1
+(noun)|Untermeyer|Louis Untermeyer|writer (generic term)|author (generic term)
+louis v|1
+(noun)|Louis V|Louis le Faineant|King of France (generic term)
+louis vi|1
+(noun)|Louis VI|Louis the Far|Louis the Wideawake|Louis the Bruiser|King of France (generic term)
+louis victor de broglie|1
+(noun)|Broglie|de Broglie|Louis Victor de Broglie|nuclear physicist (generic term)
+louis vii|1
+(noun)|Louis VII|King of France (generic term)
+louis viii|1
+(noun)|Louis VIII|King of France (generic term)
+louis x|1
+(noun)|Louis X|Louis le Hutin|Louis the Quarreller|King of France (generic term)
+louis xi|1
+(noun)|Louis XI|King of France (generic term)
+louis xii|1
+(noun)|Louis XII|King of France (generic term)
+louis xiii|1
+(noun)|Louis XIII|King of France (generic term)
+louis xiv|1
+(noun)|Louis XIV|Sun King|Louis the Great|King of France (generic term)
+louis xv|1
+(noun)|Louis XV|King of France (generic term)
+louis xvi|1
+(noun)|Louis XVI|King of France (generic term)
+louisa may alcott|1
+(noun)|Alcott|Louisa May Alcott|novelist (generic term)
+louise nevelson|1
+(noun)|Nevelson|Louise Nevelson|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+louisiana|1
+(noun)|Louisiana|Pelican State|LA|American state (generic term)
+louisiana purchase|1
+(noun)|Louisiana Purchase|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+louisianan|1
+(noun)|Louisianan|Louisianian|American (generic term)
+louisianian|1
+(noun)|Louisianan|Louisianian|American (generic term)
+louisville|1
+(noun)|Louisville|city (generic term)|metropolis (generic term)|urban center (generic term)
+lounge|4
+(noun)|sofa|couch|seat (generic term)
+(noun)|waiting room|waiting area|room (generic term)
+(verb)|sit (generic term)|sit down (generic term)
+(verb)|loiter|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|mill around|be (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+lounge car|1
+(noun)|club car|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+lounge chair|1
+(noun)|easy chair|overstuffed chair|armchair (generic term)
+lounge lizard|1
+(noun)|lizard|gigolo (generic term)
+lounge suit|1
+(noun)|two-piece|two-piece suit|business suit (generic term)
+lounger|3
+(noun)|dallier|dillydallier|dilly-dallier|mope|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|recliner|reclining chair|armchair (generic term)
+(noun)|loungewear (generic term)
+loungewear|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+lounging jacket|1
+(noun)|smoking jacket|loungewear (generic term)
+lounging pajama|1
+(noun)|lounging pyjama|loungewear (generic term)
+lounging pyjama|1
+(noun)|lounging pajama|loungewear (generic term)
+lounging robe|1
+(noun)|dressing gown|robe-de-chambre|robe (generic term)
+loupe|1
+(noun)|jeweler's loupe|hand glass (generic term)|simple microscope (generic term)|magnifying glass (generic term)
+lour|3
+(verb)|lower|devalue (generic term)
+(verb)|turn down|lower|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|frown|glower|lower|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+louse|4
+(noun)|sucking louse|insect (generic term)
+(noun)|worm|insect|dirt ball|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|plant louse|homopterous insect (generic term)|homopteran (generic term)
+(noun)|bird louse|biting louse|insect (generic term)
+louse fly|1
+(noun)|hippoboscid|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+louse up|1
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+lousiness|2
+(noun)|pediculosis|infestation (generic term)
+(noun)|loathsomeness|repulsiveness|sliminess|vileness|wickedness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+lousy|3
+(adj)|icky|crappy|rotten|shitty|stinking|stinky|bad (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|dirty|filthy|nasty (similar term)|awful (similar term)
+lout|1
+(noun)|clod|stumblebum|goon|oaf|lubber|lummox|lump|gawk|clumsy person (generic term)
+loutish|1
+(adj)|boorish|neanderthal|neandertal|oafish|swinish|unrefined (similar term)
+louvar|1
+(noun)|Luvarus imperialis|scombroid (generic term)|scombroid fish (generic term)
+louver|1
+(noun)|louvre|fin|slat (generic term)|spline (generic term)
+louvered|1
+(adj)|ventilated (similar term)
+louvered window|1
+(noun)|jalousie|window (generic term)
+louvre|2
+(noun)|Louvre|Louvre Museum|museum (generic term)
+(noun)|louver|fin|slat (generic term)|spline (generic term)
+louvre museum|1
+(noun)|Louvre|Louvre Museum|museum (generic term)
+lovable|1
+(adj)|loveable|adorable (similar term)|endearing (similar term)|lovely (similar term)|angelic (similar term)|angelical (similar term)|cherubic (similar term)|seraphic (similar term)|sweet (similar term)|cuddlesome (similar term)|cuddly (similar term)|amicable (related term)|desirable (related term)|loving (related term)|hateful (antonym)
+lovage|2
+(noun)|Levisticum officinale|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+lovastatin|1
+(noun)|Mevacor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+love|10
+(noun)|emotion (generic term)|hate (antonym)
+(noun)|passion|object (generic term)
+(noun)|beloved|dear|dearest|loved one|honey|lover (generic term)
+(noun)|sexual love|erotic love|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|score (generic term)
+(noun)|sexual love|lovemaking|making love|love life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(verb)|hate (antonym)
+(verb)|enjoy|like (generic term)
+(verb)|love (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+love-in-a-mist|3
+(noun)|running pop|wild water lemon|Passiflora foetida|passionflower (generic term)|passionflower vine (generic term)
+(noun)|snow-in-summer|Cerastium tomentosum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+(noun)|Nigella damascena|nigella (generic term)
+love-in-idleness|1
+(noun)|wild pansy|Johnny-jump-up|heartsease|pink of my John|Viola tricolor|viola (generic term)
+love-in-winter|1
+(noun)|western prince's pine|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa (generic term)|prince's pine (generic term)
+love-lies-bleeding|1
+(noun)|velvet flower|tassel flower|Amaranthus caudatus|amaranth (generic term)
+love-philter|1
+(noun)|philter|philtre|love-potion|love-philtre|potion (generic term)
+love-philtre|1
+(noun)|philter|philtre|love-potion|love-philter|potion (generic term)
+love-potion|1
+(noun)|philter|philtre|love-philter|love-philtre|potion (generic term)
+love-song|1
+(noun)|love song|song (generic term)|vocal (generic term)
+love-token|1
+(noun)|keepsake (generic term)|souvenir (generic term)|token (generic term)|relic (generic term)
+love affair|1
+(noun)|romance|relationship (generic term)
+love apple|1
+(noun)|tomato|tomato plant|Lycopersicon esculentum|herb (generic term)|herbaceous plant (generic term)
+love bite|1
+(noun)|hickey|erythema (generic term)
+love child|1
+(noun)|bastard|by-blow|illegitimate child|illegitimate|whoreson|offspring (generic term)|progeny (generic term)|issue (generic term)
+love feast|2
+(noun)|social gathering (generic term)|social affair (generic term)
+(noun)|agape|religious ceremony (generic term)|religious ritual (generic term)
+love grass|1
+(noun)|bay grass|grass (generic term)
+love handle|1
+(noun)|spare tire|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+love knot|1
+(noun)|lovers' knot|lover's knot|true lovers' knot|true lover's knot|knot (generic term)
+love letter|1
+(noun)|billet doux|personal letter (generic term)
+love life|1
+(noun)|sexual love|lovemaking|making love|love|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+love line|1
+(noun)|line of heart|heart line|mensal line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+love lyric|1
+(noun)|lyric (generic term)|words (generic term)|language (generic term)
+love match|1
+(noun)|marriage (generic term)|wedding (generic term)|marriage ceremony (generic term)
+love seat|1
+(noun)|loveseat|tete-a-tete|vis-a-vis|sofa (generic term)|couch (generic term)|lounge (generic term)
+love song|1
+(noun)|love-song|song (generic term)|vocal (generic term)
+love story|1
+(noun)|romance|story (generic term)
+love tree|1
+(noun)|Judas tree|Circis siliquastrum|angiospermous tree (generic term)|flowering tree (generic term)
+love vine|1
+(noun)|Cuscuta gronovii|dodder (generic term)
+loveable|1
+(adj)|lovable|adorable (similar term)|endearing (similar term)|lovely (similar term)|angelic (similar term)|angelical (similar term)|cherubic (similar term)|seraphic (similar term)|sweet (similar term)|cuddlesome (similar term)|cuddly (similar term)|amicable (related term)|desirable (related term)|loving (related term)|hateful (antonym)
+lovebird|2
+(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+(noun)|parrot (generic term)
+loved|1
+(adj)|admired (similar term)|adored (similar term)|idolized (similar term)|idolised (similar term)|worshipped (similar term)|beloved (similar term)|darling (similar term)|dear (similar term)|blue-eyed (similar term)|fair-haired (similar term)|white-haired (similar term)|cherished (similar term)|precious (similar term)|treasured (similar term)|wanted (similar term)|favored (similar term)|favorite (similar term)|favourite (similar term)|best-loved (similar term)|pet (similar term)|preferred (similar term)|preferent (similar term)|wanted (related term)|unloved (antonym)
+loved one|1
+(noun)|beloved|dear|dearest|honey|love|lover (generic term)
+lovelace|1
+(noun)|Lovelace|Richard Lovelace|poet (generic term)
+loveless|2
+(adj)|unloving (similar term)
+(adj)|unloved (similar term)
+loveliness|1
+(noun)|comeliness|fairness|beauteousness|beauty (generic term)
+lovell|1
+(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+lovelorn|1
+(adj)|bereft|unbeloved|unloved (similar term)
+lovely|3
+(adj)|beautiful (similar term)
+(adj)|adorable|endearing|lovable (similar term)|loveable (similar term)
+(noun)|cover girl|pin-up|photographer's model (generic term)
+lovemaking|1
+(noun)|sexual love|making love|love|love life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+lover|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|fan|buff|devotee|follower (generic term)
+(noun)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+lover's knot|1
+(noun)|love knot|lovers' knot|true lovers' knot|true lover's knot|knot (generic term)
+loverlike|1
+(adj)|loverly|loving (similar term)
+loverly|1
+(adj)|loverlike|loving (similar term)
+lovers' knot|1
+(noun)|love knot|lover's knot|true lovers' knot|true lover's knot|knot (generic term)
+loveseat|1
+(noun)|love seat|tete-a-tete|vis-a-vis|sofa (generic term)|couch (generic term)|lounge (generic term)
+lovesick|1
+(adj)|unhappy (similar term)
+lovesickness|1
+(noun)|pining (generic term)
+lovesome|1
+(adj)|affectionate|caring|fond|tender|warm|loving (similar term)
+loving|1
+(adj)|admiring (similar term)|adoring (similar term)|doting (similar term)|fond (similar term)|affectionate (similar term)|caring (similar term)|fond (similar term)|lovesome (similar term)|tender (similar term)|warm (similar term)|affectioned (similar term)|amative (similar term)|amorous (similar term)|amatory (similar term)|amorous (similar term)|romantic (similar term)|captivated (similar term)|charmed (similar term)|caressing (similar term)|caressive (similar term)|crazy (similar term)|dotty (similar term)|gaga (similar term)|enamored (similar term)|infatuated (similar term)|in love (similar term)|smitten (similar term)|soft on (similar term)|taken with (similar term)|fatherly (similar term)|idolatrous (similar term)|loverlike (similar term)|loverly (similar term)|overfond (similar term)|tenderhearted (similar term)|touchy-feely (similar term)|uxorious (similar term)|attached (related term)|committed (related term)|lovable (related term)|loveable (related term)|passionate (related term)|warmhearted (related term)|unloving (antonym)
+loving-kindness|1
+(noun)|kindness (generic term)
+loving cup|2
+(noun)|drinking vessel (generic term)
+(noun)|cup|trophy (generic term)|prize (generic term)
+lovingly|1
+(adv)|fondly
+lovingness|2
+(noun)|caring|love (generic term)
+(noun)|affectionateness|fondness|warmth|emotionality (generic term)|emotionalism (generic term)
+lovoa|1
+(noun)|Lovoa|genus Lovoa|rosid dicot genus (generic term)
+lovoa klaineana|1
+(noun)|African walnut|Lovoa klaineana|tree (generic term)
+low|16
+(adj)|debased (similar term)|devalued (similar term)|degraded (similar term)|depressed (similar term)|down (similar term)|low-level (similar term)|reduced (similar term)|rock-bottom (similar term)|inferior (related term)|high (antonym)
+(adj)|deep (similar term)|low-growing (similar term)|flat-growing (similar term)|ground-hugging (similar term)|low-level (similar term)|low-altitude (similar term)|low-lying (similar term)|lowset (similar term)|low-set (similar term)|nether (similar term)|under (similar term)|squat (similar term)|underslung (similar term)|down (related term)|inferior (related term)|short (related term)|high (antonym)
+(adj)|low-toned|soft (similar term)
+(adj)|unrefined (similar term)
+(adj)|low-pitched|alto (similar term)|contralto (similar term)|baritone (similar term)|bass (similar term)|deep (similar term)|contrabass (similar term)|double-bass (similar term)|throaty (similar term)|high (antonym)
+(adj)|abject|low-down|miserable|scummy|scurvy|contemptible (similar term)
+(adj)|humble|lowly|modest|small|inferior (similar term)
+(adj)|depleted|insufficient (similar term)|deficient (similar term)
+(adj)|broken|crushed|humbled|humiliated|humble (similar term)
+(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low-spirited|dejected (similar term)
+(adj)|first|forward (similar term)
+(noun)|low pressure|depression|air mass (generic term)
+(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist (generic term)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)|high (antonym)
+(noun)|first gear|first|low gear|gear (generic term)|gear mechanism (generic term)
+(verb)|moo|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+low-altitude|1
+(adj)|low-level|low (similar term)
+low-backed|1
+(adj)|backed (similar term)
+low-beam|1
+(adj)|dimmed (similar term)|dim (similar term)
+low-birth-weight baby|1
+(noun)|low-birth-weight infant|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+low-birth-weight infant|1
+(noun)|low-birth-weight baby|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+low-budget|1
+(adj)|cheap (similar term)|inexpensive (similar term)
+low-bush blueberry|1
+(noun)|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry (generic term)|blueberry bush (generic term)
+low-cal|1
+(adj)|light|lite|calorie-free|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+low-calorie diet|1
+(noun)|reducing diet (generic term)|obesity diet (generic term)
+low-carbon steel|1
+(noun)|mild steel|soft-cast steel|steel (generic term)
+low-ceilinged|1
+(adj)|ceilinged (similar term)
+low-class|1
+(adj)|lower-class|non-U (similar term)|proletarian (similar term)|propertyless (similar term)|wage-earning (similar term)|working-class (similar term)|blue-collar (similar term)|upper-lower-class (similar term)|lowborn (related term)|proletarian (related term)|propertyless (related term)|middle-class (antonym)|upper-class (antonym)
+low-cost|1
+(adj)|low-priced|affordable|cheap (similar term)|inexpensive (similar term)
+low-cut|2
+(adj)|decollete|low-necked|necked (similar term)
+(adj)|backless (similar term)
+low-density|2
+(adj)|light (similar term)
+(adj)|distributed (similar term)
+low-density lipoprotein|1
+(noun)|LDL|beta-lipoprotein|lipoprotein (generic term)
+low-down|3
+(adj)|abject|low|miserable|scummy|scurvy|contemptible (similar term)
+(adj)|funky|emotional (similar term)
+(noun)|dope|poop|the skinny|details (generic term)|inside information (generic term)
+low-fat diet|1
+(noun)|diet (generic term)
+low-fat milk|1
+(noun)|milk (generic term)
+low-grade|1
+(adj)|inferior (similar term)
+low-growing|1
+(adj)|flat-growing|ground-hugging|low (similar term)
+low-interest|1
+(adj)|high-interest (antonym)
+low-key|1
+(adj)|low-keyed|subdued|restrained (similar term)
+low-keyed|1
+(adj)|low-key|subdued|restrained (similar term)
+low-level|4
+(adj)|low (similar term)
+(adj)|subordinate|adjunct (similar term)|assistant (similar term)|associate (similar term)|secondary (similar term)|under (similar term)|inferior (related term)|subordinate (related term)|dominant (antonym)
+(adj)|inferior (similar term)
+(adj)|low-altitude|low (similar term)
+low-level formatting|1
+(noun)|initialization|initialisation|format (generic term)|formatting (generic term)|data format (generic term)|data formatting (generic term)
+low-level radioactive waste|1
+(noun)|radioactive waste (generic term)
+low-lying|2
+(adj)|low (similar term)
+(adj)|sea-level|lowland (similar term)
+low-necked|1
+(adj)|decollete|low-cut|necked (similar term)
+low-pass filter|1
+(noun)|filter (generic term)
+low-pitched|2
+(adj)|low|alto (similar term)|contralto (similar term)|baritone (similar term)|bass (similar term)|deep (similar term)|contrabass (similar term)|double-bass (similar term)|throaty (similar term)|high (antonym)
+(adj)|inclined (similar term)
+low-powered|1
+(adj)|powerless (similar term)
+low-pressure|1
+(adj)|unaggressive (similar term)|nonaggressive (similar term)
+low-priced|1
+(adj)|low-cost|affordable|cheap (similar term)|inexpensive (similar term)
+low-resolution|1
+(adj)|high-resolution (antonym)
+low-rise|1
+(adj)|walk-up (similar term)|high-rise (antonym)
+low-salt diet|1
+(noun)|low-sodium diet|salt-free diet|diet (generic term)
+low-set|2
+(adj)|chunky|dumpy|squat|squatty|stumpy|short (similar term)
+(adj)|lowset|low (similar term)
+low-sodium diet|1
+(noun)|low-salt diet|salt-free diet|diet (generic term)
+low-spirited|1
+(adj)|blue|depressed|dispirited|down|downcast|downhearted|down in the mouth|low|dejected (similar term)
+low-spiritedness|1
+(noun)|downheartedness|dejectedness|lowness|dispiritedness|sadness (generic term)|unhappiness (generic term)
+low-sudsing|1
+(adj)|high-sudsing (antonym)
+low-tech|1
+(adj)|high-tech (antonym)
+low-tension|1
+(adj)|low-voltage|high-tension (antonym)
+low-toned|1
+(adj)|low|soft (similar term)
+low-voltage|1
+(adj)|low-tension|high-tension (antonym)
+low-warp-loom|1
+(noun)|handloom (generic term)
+low-water mark|2
+(noun)|nadir|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|water line (generic term)|watermark (generic term)
+low archipelago|1
+(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago (generic term)
+low beam|1
+(noun)|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+low blow|1
+(noun)|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+low blueberry|1
+(noun)|low-bush blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry (generic term)|blueberry bush (generic term)
+low brass|1
+(noun)|brass (generic term)
+low comedy|1
+(noun)|comedy (generic term)
+low countries|1
+(noun)|Low Countries|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+low density|1
+(noun)|rarity|tenuity|density (generic term)|denseness (generic term)
+low explosive|1
+(noun)|explosive (generic term)|high explosive (antonym)
+low frequency|2
+(noun)|LF|radio frequency (generic term)
+(noun)|low pitch|pitch (generic term)|high pitch (antonym)
+low gallberry holly|1
+(noun)|holly (generic term)
+low gear|1
+(noun)|first gear|first|low|gear (generic term)|gear mechanism (generic term)
+low german|1
+(noun)|Low German|Plattdeutsch|West Germanic (generic term)|West Germanic language (generic term)
+low latin|1
+(noun)|Low Latin|Latin (generic term)
+low level flight|1
+(noun)|terrain flight|flight (generic term)|flying (generic term)
+low mass|1
+(noun)|Low Mass|Mass (generic term)
+low pitch|1
+(noun)|low frequency|pitch (generic term)|high pitch (antonym)
+low pressure|1
+(noun)|low|depression|air mass (generic term)
+low profile|1
+(noun)|visibility (generic term)|profile (generic term)
+low quality|1
+(noun)|inferiority|quality (generic term)|caliber (generic term)|calibre (generic term)|high quality (antonym)|superiority (antonym)
+low relief|1
+(noun)|bas relief|basso relievo|basso rilievo|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)|high relief (antonym)
+low spirits|1
+(noun)|depression (generic term)|high (antonym)
+low st andrew's cross|1
+(noun)|low St Andrew's cross|Hypericum hypericoides|St John's wort (generic term)
+low status|1
+(noun)|lowness|lowliness|status (generic term)|position (generic term)|high status (antonym)
+low sunday|1
+(noun)|Low Sunday|Christian holy day (generic term)
+low temperature|1
+(noun)|coldness|cold|frigidity|frigidness|temperature (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|hotness (antonym)
+low tide|1
+(noun)|low water|tide (generic term)|high tide (antonym)
+low water|1
+(noun)|low tide|tide (generic term)|high tide (antonym)
+lowan|1
+(noun)|mallee fowl|leipoa|Leipoa ocellata|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+lowball|1
+(verb)|underestimate|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+lowborn|1
+(adj)|base (similar term)|baseborn (similar term)|humble (similar term)|lowly (similar term)|common (similar term)|plebeian (similar term)|vulgar (similar term)|unwashed (similar term)|ignoble (similar term)|ungentle (similar term)|untitled (similar term)|lower-class (related term)|low-class (related term)|plebeian (related term)|noble (antonym)
+lowboy|1
+(noun)|chest of drawers (generic term)|chest (generic term)|bureau (generic term)|dresser (generic term)
+lowbred|1
+(adj)|ill-bred|bounderish|rude|underbred|yokelish|unrefined (similar term)
+lowbrow|2
+(adj)|lowbrowed|uncultivated|nonintellectual (similar term)
+(noun)|philistine|anti-intellectual|plebeian (generic term)|pleb (generic term)
+lowbrowed|1
+(adj)|lowbrow|uncultivated|nonintellectual (similar term)
+lowbush cranberry|1
+(noun)|lingonberry|mountain cranberry|cowberry|berry (generic term)
+lowbush penstemon|1
+(noun)|shrubby penstemon|Penstemon fruticosus|wildflower (generic term)|wild flower (generic term)
+lowell|4
+(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet (generic term)
+(noun)|Lowell|Percival Lowell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Lowell|Amy Lowell|poet (generic term)
+(noun)|Lowell|Abbott Lawrence Lowell|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+lowell jackson thomas|1
+(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist (generic term)
+lowell thomas|1
+(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist (generic term)
+lower|6
+(noun)|lower berth|berth (generic term)|bunk (generic term)|built in bed (generic term)
+(verb)|take down|let down|get down|bring down|move (generic term)|displace (generic term)|raise (antonym)
+(verb)|lour|devalue (generic term)
+(verb)|depress|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|turn down|lour|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|frown|glower|lour|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+lower-case letter|1
+(noun)|small letter|lowercase|minuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|uppercase (antonym)
+lower-class|1
+(adj)|low-class|non-U (similar term)|proletarian (similar term)|propertyless (similar term)|wage-earning (similar term)|working-class (similar term)|blue-collar (similar term)|upper-lower-class (similar term)|lowborn (related term)|proletarian (related term)|propertyless (related term)|middle-class (antonym)|upper-class (antonym)
+lower-middle-class|1
+(adj)|middle-class (similar term)
+lower-normandy|1
+(noun)|Basse-Normandie|Lower-Normandy|French region (generic term)
+lower-ranking|1
+(adj)|junior-grade|inferior|lowly|petty|secondary|subaltern|subordinate|junior (similar term)
+lower berth|1
+(noun)|lower|berth (generic term)|bunk (generic term)|built in bed (generic term)
+lower bound|1
+(noun)|boundary (generic term)|edge (generic term)|bound (generic term)
+lower california|1
+(noun)|Lower California|Baja California|peninsula (generic term)
+lower cannon|1
+(noun)|vambrace|cannon (generic term)
+lower carboniferous|1
+(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period (generic term)|geological period (generic term)
+lower carboniferous period|1
+(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period (generic term)|geological period (generic term)
+lower class|1
+(noun)|underclass|class (generic term)|social class (generic term)|socio-economic class (generic term)
+lower court|1
+(noun)|inferior court|court (generic term)|tribunal (generic term)|judicature (generic term)
+lower criticism|1
+(noun)|textual criticism (generic term)
+lower deck|1
+(noun)|third deck|deck (generic term)
+lower egypt|1
+(noun)|Lower Egypt|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+lower jaw|1
+(noun)|mandible|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw (generic term)|articulator (generic term)
+lower jawbone|1
+(noun)|lower jaw|mandible|mandibula|mandibular bone|submaxilla|jawbone|jowl|jaw (generic term)|articulator (generic term)
+lower limit|2
+(noun)|minimum|extremum (generic term)|peak (generic term)|small indefinite quantity (generic term)|small indefinite amount (generic term)|maximum (antonym)
+(noun)|limit (generic term)|demarcation (generic term)|demarcation line (generic term)
+lower mantle|1
+(noun)|layer (generic term)
+lower oneself|1
+(verb)|condescend|stoop|act (generic term)|move (generic term)
+lower paleolithic|1
+(noun)|Lower Paleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+lower peninsula|1
+(noun)|Lower Peninsula|peninsula (generic term)
+lower rank|1
+(noun)|inferiority|lower status|low status (generic term)|lowness (generic term)|lowliness (generic term)
+lower respiratory infection|1
+(noun)|respiratory tract infection (generic term)|respiratory infection (generic term)
+lower respiratory tract|1
+(noun)|respiratory tract (generic term)|airway (generic term)
+lower respiratory tract smear|1
+(noun)|bronchoscopic smear|sputum smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+lower saxony|1
+(noun)|Lower Saxony|state (generic term)|province (generic term)
+lower status|1
+(noun)|inferiority|lower rank|low status (generic term)|lowness (generic term)|lowliness (generic term)
+lower tunguska|1
+(noun)|Tunguska|Lower Tunguska|river (generic term)
+lowercase|2
+(adj)|little (similar term)|minuscule (similar term)|small (similar term)|minuscule (related term)|minuscular (related term)|uppercase (antonym)
+(noun)|small letter|lower-case letter|minuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|uppercase (antonym)
+lowerclassman|1
+(noun)|underclassman|undergraduate (generic term)|undergrad (generic term)
+lowered|1
+(adj)|down (similar term)|raised (antonym)
+lowering|3
+(adj)|heavy|sullen|threatening|cloudy (similar term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|letting down|movement (generic term)
+lowermost|1
+(adj)|bottommost|nethermost|bottom (similar term)
+lowest|1
+(adj)|last|last-place|worst (similar term)
+lowest common multiple|1
+(noun)|least common multiple|lcm|multiple (generic term)
+lowland|2
+(adj)|low-lying (similar term)|sea-level (similar term)|upland (antonym)
+(noun)|natural depression (generic term)|depression (generic term)|highland (antonym)
+lowland burrowing treefrog|1
+(noun)|northern casque-headed frog|Pternohyla fodiens|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+lowland fir|1
+(noun)|lowland white fir|giant fir|grand fir|Abies grandis|silver fir (generic term)
+lowland scot|1
+(noun)|Lowlander|Scottish Lowlander|Lowland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+lowland white fir|1
+(noun)|lowland fir|giant fir|grand fir|Abies grandis|silver fir (generic term)
+lowlander|1
+(noun)|Lowlander|Scottish Lowlander|Lowland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+lowlands|1
+(noun)|Lowlands|Lowlands of Scotland|lowland (generic term)
+lowlands of scotland|1
+(noun)|Lowlands|Lowlands of Scotland|lowland (generic term)
+lowlife|1
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+lowliness|2
+(noun)|humbleness|unimportance|obscureness|obscurity (generic term)
+(noun)|low status|lowness|status (generic term)|position (generic term)|high status (antonym)
+lowly|4
+(adj)|humble|low|modest|small|inferior (similar term)
+(adj)|junior-grade|inferior|lower-ranking|petty|secondary|subaltern|subordinate|junior (similar term)
+(adj)|humble|menial|unskilled (similar term)
+(adj)|base|baseborn|humble|lowborn (similar term)
+lowness|4
+(noun)|low status|lowliness|status (generic term)|position (generic term)|high status (antonym)
+(noun)|downheartedness|dejectedness|low-spiritedness|dispiritedness|sadness (generic term)|unhappiness (generic term)
+(noun)|height (generic term)|tallness (generic term)|highness (antonym)
+(noun)|degree (generic term)|grade (generic term)|level (generic term)
+lowry|2
+(noun)|Lowry|L. S. Lowry|Laurence Stephen Lowry|painter (generic term)
+(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer (generic term)|author (generic term)
+lowset|1
+(adj)|low-set|low (similar term)
+lox|2
+(noun)|liquid oxygen|LOX|oxygen (generic term)|O (generic term)|atomic number 8 (generic term)
+(noun)|smoked salmon (generic term)
+loxapine|1
+(noun)|Loxitane|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+loxia|1
+(noun)|Loxia|genus Loxia|bird genus (generic term)
+loxia curvirostra|1
+(noun)|crossbill|Loxia curvirostra|finch (generic term)
+loxitane|1
+(noun)|loxapine|Loxitane|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+loxodonta|1
+(noun)|Loxodonta|genus Loxodonta|mammal genus (generic term)
+loxodonta africana|1
+(noun)|African elephant|Loxodonta africana|elephant (generic term)
+loxodrome|1
+(noun)|rhumb line|rhumb|line (generic term)
+loxoma|1
+(noun)|Loxoma|genus Loxoma|fern genus (generic term)
+loxomataceae|1
+(noun)|Loxomataceae|family Loxomataceae|fern family (generic term)
+loxostege|1
+(noun)|Loxostege|genus Loxostege|arthropod genus (generic term)
+loxostege similalis|2
+(noun)|garden webworm|Loxostege similalis|webworm (generic term)
+(noun)|Loxostege similalis|webworm moth (generic term)
+loya jirga|1
+(noun)|Loya Jirga|Jirga (generic term)
+loyal|3
+(adj)|allegiant (similar term)|doglike (similar term)|hard-core (similar term)|hardcore (similar term)|leal (similar term)|liege (similar term)|true-blue (similar term)|patriotic (related term)|loyal (related term)|disloyal (antonym)
+(adj)|patriotic|chauvinistic (similar term)|flag-waving (similar term)|jingoistic (similar term)|nationalistic (similar term)|ultranationalistic (similar term)|superpatriotic (similar term)|loyal (related term)|unpatriotic (antonym)
+(adj)|firm|truehearted|fast|faithful (similar term)
+loyalist|1
+(noun)|stalwart|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+loyalist volunteer force|1
+(noun)|Loyalist Volunteer Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+loyally|1
+(adv)|disloyally (antonym)
+loyalty|3
+(noun)|trueness|fidelity (generic term)|faithfulness (generic term)|disloyalty (antonym)
+(noun)|love (generic term)
+(noun)|commitment|allegiance|dedication|cooperation (generic term)
+loyang|1
+(noun)|Luoyang|Loyang|city (generic term)|metropolis (generic term)|urban center (generic term)
+loyola|1
+(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)
+lozal|1
+(noun)|indapamide|Lozal|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+lozenge|2
+(noun)|candy (generic term)|confect (generic term)
+(noun)|pill|tablet|tab|dose (generic term)
+lozier|1
+(noun)|Lozier|Clemence Sophia Harned Lozier|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+lp|1
+(noun)|LP|L-P|phonograph record (generic term)|phonograph recording (generic term)|record (generic term)|disk (generic term)|disc (generic term)|platter (generic term)
+lpn|1
+(noun)|licensed practical nurse|LPN|practical nurse|nurse (generic term)
+lr|1
+(noun)|lawrencium|Lr|atomic number 103|chemical element (generic term)|element (generic term)
+lsd|1
+(noun)|lysergic acid diethylamide|LSD|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)|drug of abuse (generic term)|street drug (generic term)|controlled substance (generic term)
+ltd.|1
+(noun)|limited company|Ltd.|Ld.|company (generic term)
+ltm|1
+(noun)|long-term memory|LTM|memory (generic term)|remembering (generic term)
+ltte|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+lu|1
+(noun)|lutetium|lutecium|Lu|atomic number 71|metallic element (generic term)|metal (generic term)
+luanda|1
+(noun)|Luanda|Angolan capital|national capital (generic term)|port (generic term)
+luba|2
+(noun)|Luba|Bantu (generic term)
+(noun)|Luba|Tshiluba|Bantu (generic term)|Bantoid language (generic term)
+lubavitch|2
+(noun)|Lubavitch|town (generic term)
+(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement (generic term)
+lubavitch movement|1
+(noun)|Lubavitch|Lubavitch movement|Chabad-Lubavitch|Chabad|religious movement (generic term)
+lubavitcher|1
+(noun)|Lubavitcher|Orthodox Jew (generic term)
+lubber|2
+(noun)|lout|clod|stumblebum|goon|oaf|lummox|lump|gawk|clumsy person (generic term)
+(noun)|landlubber|landsman|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+lubber's hole|1
+(noun)|hole (generic term)
+lubber's line|1
+(noun)|lubber line|lubber's mark|lubber's point|reference point (generic term)|point of reference (generic term)|reference (generic term)
+lubber's mark|1
+(noun)|lubber's line|lubber line|lubber's point|reference point (generic term)|point of reference (generic term)|reference (generic term)
+lubber's point|1
+(noun)|lubber's line|lubber line|lubber's mark|reference point (generic term)|point of reference (generic term)|reference (generic term)
+lubber line|1
+(noun)|lubber's line|lubber's mark|lubber's point|reference point (generic term)|point of reference (generic term)|reference (generic term)
+lubberly|2
+(adj)|unskilled (similar term)
+(adj)|landlubberly|unseamanlike (similar term)
+lubbock|1
+(noun)|Lubbock|city (generic term)|metropolis (generic term)|urban center (generic term)
+lube|2
+(noun)|lubricant|lubricator|lubricating substance|material (generic term)|stuff (generic term)
+(verb)|lubricate|fill (generic term)|fill up (generic term)|make full (generic term)
+lubeck|1
+(noun)|Lubeck|city (generic term)|metropolis (generic term)|urban center (generic term)
+lubitsch|1
+(noun)|Lubitsch|Ernst Lubitsch|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+lublin|1
+(noun)|Lublin|city (generic term)|metropolis (generic term)|urban center (generic term)
+lubricant|1
+(noun)|lubricator|lubricating substance|lube|material (generic term)|stuff (generic term)
+lubricate|3
+(verb)|be (generic term)
+(verb)|lube|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+lubricated|1
+(adj)|greased|unlubricated (antonym)
+lubricating oil|1
+(noun)|grease|oil (generic term)
+lubricating substance|1
+(noun)|lubricant|lubricator|lube|material (generic term)|stuff (generic term)
+lubricating system|1
+(noun)|force-feed lubricating system|force feed|pressure-feed lubricating system|pressure feed|mechanical system (generic term)
+lubrication|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+lubricator|1
+(noun)|lubricant|lubricating substance|lube|material (generic term)|stuff (generic term)
+lubricious|2
+(adj)|slippery (similar term)|slippy (similar term)
+(adj)|lustful|prurient|salacious|sexy (similar term)
+lubricity|1
+(noun)|prurience|pruriency|lasciviousness|carnality|amorousness (generic term)|eroticism (generic term)|erotism (generic term)|sexiness (generic term)|amativeness (generic term)
+lubumbashi|1
+(noun)|Lubumbashi|Elisabethville|city (generic term)|metropolis (generic term)|urban center (generic term)
+lucania|1
+(noun)|Basilicata|Lucania|Italian region (generic term)
+lucanidae|1
+(noun)|Lucanidae|family Lucanidae|arthropod family (generic term)
+lucas|1
+(noun)|Lucas|George Lucas|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)|screenwriter (generic term)|film writer (generic term)
+luce|2
+(noun)|Luce|Henry Luce|Henry Robinson Luce|publisher (generic term)
+(noun)|Luce|Clare Booth Luce|dramatist (generic term)|playwright (generic term)
+lucent|1
+(adj)|aglow|lambent|luminous|bright (similar term)
+lucerne|1
+(noun)|alfalfa|Medicago sativa|medic (generic term)|medick (generic term)|trefoil (generic term)
+luchino visconti|1
+(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+luciano pavarotti|1
+(noun)|Pavarotti|Luciano Pavarotti|tenor (generic term)
+lucid|4
+(adj)|limpid|luculent|pellucid|crystal clear|perspicuous|clear (similar term)
+(adj)|sane (similar term)
+(adj)|coherent|logical|rational (similar term)
+(adj)|crystalline|crystal clear|limpid|pellucid|transparent|clear (similar term)
+lucidity|2
+(noun)|clarity|lucidness|pellucidity|clearness|limpidity|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+(noun)|sanity (generic term)|saneness (generic term)
+lucidly|1
+(adv)|pellucidly|limpidly|perspicuously
+lucidness|1
+(noun)|clarity|lucidity|pellucidity|clearness|limpidity|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+lucifer|3
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+(noun)|morning star|daystar|Phosphorus|Lucifer|planet (generic term)|major planet (generic term)
+(noun)|match|friction match|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+luciferin|1
+(noun)|animal pigment (generic term)
+lucifugal|1
+(adj)|lucifugous|tropism (related term)
+lucifugous|1
+(adj)|lucifugal|tropism (related term)
+lucilia|1
+(noun)|Lucilia|genus Lucilia|arthropod genus (generic term)
+lucille ball|1
+(noun)|Ball|Lucille Ball|actress (generic term)|comedienne (generic term)
+lucite|1
+(noun)|Lucite|Perspex|polymethyl methacrylate (generic term)
+lucius annaeus seneca|1
+(noun)|Seneca|Lucius Annaeus Seneca|statesman (generic term)|solon (generic term)|national leader (generic term)|dramatist (generic term)|playwright (generic term)|philosopher (generic term)
+lucius clay|1
+(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general (generic term)|full general (generic term)
+lucius cornelius sulla felix|1
+(noun)|Sulla|Lucius Cornelius Sulla Felix|general (generic term)|full general (generic term)
+lucius domitius ahenobarbus|1
+(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+lucius dubignon clay|1
+(noun)|Clay|Lucius Clay|Lucius DuBignon Clay|general (generic term)|full general (generic term)
+lucius licinius lucullus|1
+(noun)|Lucullus|Licinius Lucullus|Lucius Licinius Lucullus|general (generic term)|full general (generic term)
+lucius licinius luculus|1
+(noun)|Luculus|Lucius Licinius Luculus|general (generic term)|full general (generic term)
+lucius quinctius cincinnatus|1
+(noun)|Cincinnatus|Lucius Quinctius Cincinnatus|statesman (generic term)|solon (generic term)|national leader (generic term)
+lucius tarquinius superbus|1
+(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king (generic term)|male monarch (generic term)|Rex (generic term)
+luck|3
+(noun)|fortune|destiny|fate|lot|circumstances|portion|condition (generic term)
+(noun)|fortune|chance|hazard|phenomenon (generic term)
+(noun)|fortune|phenomenon (generic term)
+luck into|1
+(verb)|enter upon|come upon|get (generic term)|acquire (generic term)
+luck it|1
+(verb)|luck through|gamble (generic term)|chance (generic term)|risk (generic term)|hazard (generic term)|take chances (generic term)|adventure (generic term)|run a risk (generic term)|take a chance (generic term)
+luck out|1
+(verb)|hit the jackpot|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+luck through|1
+(verb)|luck it|gamble (generic term)|chance (generic term)|risk (generic term)|hazard (generic term)|take chances (generic term)|adventure (generic term)|run a risk (generic term)|take a chance (generic term)
+luckily|1
+(adv)|fortunately|fortuitously|as luck would have it|unluckily (antonym)|unfortunately (antonym)
+luckiness|1
+(noun)|good fortune|good luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|bad luck (antonym)|misfortune (antonym)
+luckless|1
+(adj)|unlucky|hexed (similar term)|jinxed (similar term)|unfortunate (related term)|lucky (antonym)
+lucknow|2
+(noun)|Lucknow|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Lucknow|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+lucky|3
+(adj)|fortunate (similar term)
+(adj)|apotropaic (similar term)|hot (similar term)|serendipitous (similar term)|fortunate (related term)|unlucky (antonym)
+(adj)|golden|favorable|favourable|prosperous|propitious (similar term)
+lucky dip|2
+(noun)|lottery (generic term)|drawing (generic term)
+(noun)|random sampling (generic term)
+lucky lindy|1
+(noun)|Lindbergh|Charles Lindbergh|Charles A. Lindbergh|Charles Augustus Lindbergh|Lucky Lindy|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+lucrative|1
+(adj)|moneymaking|remunerative|profitable (similar term)
+lucrativeness|1
+(noun)|profitableness|profitability|gainfulness|profit (generic term)|gain (generic term)|unprofitability (antonym)|unprofitableness (antonym)
+lucre|2
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|loot|moolah|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|net income|net|net profit|profit|profits|earnings|income (generic term)
+lucretia coffin mott|1
+(noun)|Mott|Lucretia Coffin Mott|suffragist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+lucretius|1
+(noun)|Lucretius|Titus Lucretius Carus|philosopher (generic term)|poet (generic term)
+lucrezia borgia|1
+(noun)|Borgia|Lucrezia Borgia|Duchess of Ferrara|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+lucubrate|1
+(verb)|elaborate|expatiate|exposit|enlarge|flesh out|expand|expound|dilate|clarify (generic term)|clear up (generic term)|elucidate (generic term)|contract (antonym)
+lucubration|2
+(noun)|literary composition (generic term)|literary work (generic term)
+(noun)|cogitation (generic term)|study (generic term)
+luculent|1
+(adj)|limpid|lucid|pellucid|crystal clear|perspicuous|clear (similar term)
+lucullan|1
+(adj)|lavish|lush|plush|plushy|rich (similar term)
+lucullus|1
+(noun)|Lucullus|Licinius Lucullus|Lucius Licinius Lucullus|general (generic term)|full general (generic term)
+luculus|1
+(noun)|Luculus|Lucius Licinius Luculus|general (generic term)|full general (generic term)
+lucy|1
+(noun)|Lucy|Australopithecus afarensis (generic term)
+lucy craft laney|1
+(noun)|Laney|Lucy Craft Laney|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+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 (generic term)|LSD (generic term)
+lucy maud montgomery|1
+(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer (generic term)|author (generic term)
+lucy stone|1
+(noun)|Stone|Lucy Stone|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)|suffragist (generic term)
+luda|1
+(noun)|Luda|Luta|conurbation (generic term)|urban sprawl (generic term)|sprawl (generic term)
+luddite|2
+(noun)|Luddite|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+(noun)|Luddite|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+ludi saeculares|1
+(noun)|Ludi Saeculares|secular games|celebration (generic term)|festivity (generic term)
+ludian|1
+(noun)|Ludian|Baltic-Finnic (generic term)
+ludicrous|2
+(adj)|farcical|ridiculous|humorous (similar term)|humourous (similar term)
+(adj)|absurd|cockeyed|derisory|idiotic|laughable|nonsensical|preposterous|ridiculous|foolish (similar term)
+ludicrously|1
+(adv)|laughably|ridiculously|preposterously
+ludo|1
+(noun)|board game (generic term)
+ludwig boltzmann|1
+(noun)|Boltzmann|Ludwig Boltzmann|physicist (generic term)
+ludwig josef johan wittgenstein|1
+(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher (generic term)
+ludwig mies van der rohe|1
+(noun)|Mies Van Der Rohe|Ludwig Mies Van Der Rohe|architect (generic term)|designer (generic term)
+ludwig van beethoven|1
+(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer (generic term)
+ludwig wittgenstein|1
+(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher (generic term)
+lufengpithecus|1
+(noun)|Lufengpithecus|genus Lufengpithecus|mammal genus (generic term)
+luff|4
+(noun)|edge (generic term)|margin (generic term)
+(noun)|sailing (generic term)
+(verb)|point|sail (generic term)
+(verb)|roll (generic term)|undulate (generic term)|flap (generic term)|wave (generic term)
+luffa|2
+(noun)|loofa|loofah|loufah sponge|fiber (generic term)|fibre (generic term)
+(noun)|dishcloth gourd|sponge gourd|rag gourd|strainer vine|vine (generic term)
+luffa acutangula|1
+(noun)|angled loofah|sing-kwa|Luffa acutangula|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+luffa cylindrica|1
+(noun)|loofah|vegetable sponge|Luffa cylindrica|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+lufkin|1
+(noun)|Lufkin|town (generic term)
+luftwaffe|1
+(noun)|Luftwaffe|German Luftwaffe|air force (generic term)|airforce (generic term)
+lug|6
+(noun)|Lug|Lugh|Celtic deity (generic term)
+(noun)|lugsail|fore-and-aft sail (generic term)
+(noun)|projection (generic term)
+(noun)|lugworm|lobworm|polychaete (generic term)|polychete (generic term)|polychaete worm (generic term)|polychete worm (generic term)
+(verb)|tote|tug|transport (generic term)|carry (generic term)
+(verb)|stuff|choke up|block|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)|unstuff (antonym)
+lug wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+luganda|1
+(noun)|LuGanda|Bantu (generic term)|Bantoid language (generic term)
+luge|2
+(noun)|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(verb)|toboggan|sled (generic term)|sleigh (generic term)
+luger|2
+(noun)|Luger|semiautomatic pistol (generic term)|semiautomatic (generic term)
+(noun)|slider|sledder (generic term)
+luggage|1
+(noun)|baggage|case (generic term)
+luggage carousel|1
+(noun)|carousel|carrousel|luggage carrousel|conveyer belt (generic term)|conveyor belt (generic term)|conveyer (generic term)|conveyor (generic term)|transporter (generic term)
+luggage carrier|1
+(noun)|carrier (generic term)
+luggage carrousel|1
+(noun)|carousel|carrousel|luggage carousel|conveyer belt (generic term)|conveyor belt (generic term)|conveyer (generic term)|conveyor (generic term)|transporter (generic term)
+luggage compartment|1
+(noun)|automobile trunk|trunk|compartment (generic term)
+luggage rack|1
+(noun)|roof rack|carrier (generic term)
+luggage van|1
+(noun)|baggage car|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+lugger|1
+(noun)|boat (generic term)
+lugh|1
+(noun)|Lug|Lugh|Celtic deity (generic term)
+luging|1
+(noun)|tobogganing (generic term)
+lugosi|1
+(noun)|Lugosi|Bela Lugosi|Bela Ferenc Blasko|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lugsail|1
+(noun)|lug|fore-and-aft sail (generic term)
+lugubrious|1
+(adj)|sorrowful (similar term)
+lugubriousness|1
+(noun)|gloominess|sadness|uncheerfulness (generic term)
+lugworm|1
+(noun)|lug|lobworm|polychaete (generic term)|polychete (generic term)|polychaete worm (generic term)|polychete worm (generic term)
+luigi barnaba gregorio chiaramonti|1
+(noun)|Pius VII|Barnaba Chiaramonti|Luigi Barnaba Gregorio Chiaramonti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+luigi cherubini|1
+(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer (generic term)
+luigi galvani|1
+(noun)|Galvani|Luigi Galvani|physiologist (generic term)
+luigi pirandello|1
+(noun)|Pirandello|Luigi Pirandello|dramatist (generic term)|playwright (generic term)|novelist (generic term)
+luik|1
+(noun)|Liege|Luik|city (generic term)|metropolis (generic term)|urban center (generic term)
+luis bunuel|1
+(noun)|Bunuel|Luis Bunuel|film director (generic term)|director (generic term)
+luis de gongora y argote|1
+(noun)|Gongora|Luis de Gongora y Argote|poet (generic term)
+lukasiewicz notation|1
+(noun)|prefix notation|Lukasiewicz notation|Polish notation|parenthesis-free notation (generic term)
+luke|2
+(noun)|Luke|Saint Luke|St. Luke|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|Luke|Gospel of Luke|Gospel According to Luke|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+lukewarm|2
+(adj)|tepid|warm (similar term)
+(adj)|halfhearted|half-hearted|tepid|unenthusiastic (similar term)
+lukewarmly|1
+(adv)|tepidly
+lukewarmness|2
+(noun)|tepidity|tepidness|warmth (generic term)|warmness (generic term)
+(noun)|tepidness|coldness (generic term)|coolness (generic term)|frigidity (generic term)|frigidness (generic term)|iciness (generic term)|chilliness (generic term)
+lule burgas|1
+(noun)|Lule Burgas|battle of Lule Burgas|pitched battle (generic term)
+lull|5
+(noun)|letup|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|quiet|calmness (generic term)
+(verb)|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|calm down|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+lullaby|2
+(noun)|cradlesong|berceuse|song (generic term)|vocal (generic term)
+(noun)|cradlesong|song (generic term)|strain (generic term)
+lulli|1
+(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer (generic term)
+lulling|1
+(adj)|calming|quietening|unalarming (similar term)
+lully|2
+(noun)|Lully|Raymond Lully|Ramon Lully|philosopher (generic term)
+(noun)|Lully|Jean Baptiste Lully|Lulli|Giambattista Lulli|composer (generic term)
+lulu|1
+(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+luluabourg|1
+(noun)|Kananga|Luluabourg|city (generic term)|metropolis (generic term)|urban center (generic term)
+lumbago|1
+(noun)|lumbar pain|backache (generic term)
+lumbar|1
+(adj)|body part (related term)
+lumbar artery|1
+(noun)|arteria lumbalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+lumbar nerve|1
+(noun)|spinal nerve (generic term)|nervus spinalis (generic term)
+lumbar pain|1
+(noun)|lumbago|backache (generic term)
+lumbar plexus|2
+(noun)|plexus lumbalis|plexus (generic term)|rete (generic term)
+(noun)|plexus lumbalis|nerve plexus (generic term)
+lumbar puncture|1
+(noun)|spinal puncture|spinal tap|centesis (generic term)
+lumbar vein|1
+(noun)|vena lumbalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+lumbar vertebra|1
+(noun)|vertebra (generic term)
+lumber|4
+(noun)|timber|building material (generic term)
+(noun)|baseball bat|bat (generic term)|baseball equipment (generic term)
+(verb)|pound|walk (generic term)
+(verb)|log|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+lumber jacket|1
+(noun)|lumberjack|jacket (generic term)
+lumber room|1
+(noun)|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+lumbering|2
+(adj)|heavy|ponderous|heavy-footed (similar term)
+(noun)|trade (generic term)|craft (generic term)
+lumberjack|2
+(noun)|lumberman|logger|feller|faller|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|lumber jacket|jacket (generic term)
+lumberman|1
+(noun)|lumberjack|logger|feller|faller|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+lumberman's saw|1
+(noun)|two-handed saw|whipsaw|two-man saw|saw (generic term)
+lumbermill|1
+(noun)|sawmill|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+lumberyard|1
+(noun)|workplace (generic term)|work (generic term)
+lumbosacral plexus|1
+(noun)|nerve plexus (generic term)
+lumbus|1
+(noun)|loin|body part (generic term)
+lumen|2
+(noun)|lm|luminous flux unit (generic term)
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+luminal|1
+(noun)|sodium thiopental|phenobarbital|phenobarbitone|Luminal|purple heart|barbiturate (generic term)
+luminance|1
+(noun)|luminosity|brightness|brightness level|luminousness|light|physical property (generic term)
+luminance unit|1
+(noun)|light unit (generic term)
+luminary|1
+(noun)|leading light|guiding light|notable|notability|celebrity (generic term)|famous person (generic term)
+luminesce|1
+(verb)|reflect (generic term)|shine (generic term)
+luminescence|2
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|glow|luminosity (generic term)|brightness (generic term)|brightness level (generic term)|luminance (generic term)|luminousness (generic term)|light (generic term)
+luminescent|1
+(adj)|light (similar term)
+luminism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+luminosity|1
+(noun)|brightness|brightness level|luminance|luminousness|light|physical property (generic term)
+luminous|1
+(adj)|aglow|lambent|lucent|bright (similar term)
+luminous energy|1
+(noun)|radiant energy (generic term)
+luminous flux|1
+(noun)|radiant flux (generic term)
+luminous flux unit|1
+(noun)|light unit (generic term)
+luminous intensity unit|1
+(noun)|candlepower unit|light unit (generic term)
+luminousness|1
+(noun)|luminosity|brightness|brightness level|luminance|light|physical property (generic term)
+lumma|1
+(noun)|Armenian monetary unit (generic term)
+lummox|1
+(noun)|lout|clod|stumblebum|goon|oaf|lubber|lump|gawk|clumsy person (generic term)
+lump|6
+(noun)|hunk|part (generic term)|piece (generic term)
+(noun)|ball|clod|glob|clump|chunk|agglomeration (generic term)
+(noun)|swelling|puffiness|enlargement (generic term)|symptom (generic term)
+(noun)|lout|clod|stumblebum|goon|oaf|lubber|lummox|gawk|clumsy person (generic term)
+(verb)|chunk|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|collocate|chunk|group (generic term)
+lump sugar|1
+(noun)|sugar (generic term)|refined sugar (generic term)
+lump sum|1
+(noun)|payment (generic term)
+lumpectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+lumpen|1
+(adj)|lumpish|unthinking|stupid (similar term)
+lumpenproletariat|1
+(noun)|labor (generic term)|labour (generic term)|working class (generic term)|proletariat (generic term)
+lumpenus|1
+(noun)|Lumpenus|genus Lumpenus|fish genus (generic term)
+lumpenus lumpretaeformis|1
+(noun)|snakeblenny|Lumpenus lumpretaeformis|prickleback (generic term)
+lumper|2
+(noun)|stevedore|loader|longshoreman|docker|dockhand|dock worker|dockworker|dock-walloper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|taxonomist (generic term)|taxonomer (generic term)|systematist (generic term)|splitter (antonym)
+lumpfish|1
+(noun)|Cyclopterus lumpus|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+lumpish|1
+(adj)|lumpen|unthinking|stupid (similar term)
+lumpsucker|1
+(noun)|lumpfish (generic term)|Cyclopterus lumpus (generic term)
+lumpy|2
+(adj)|chunky|unshapely (similar term)
+(adj)|uneven (similar term)
+lumpy jaw|1
+(noun)|cervicofacial actinomycosis|actinomycosis (generic term)
+luna|1
+(noun)|Luna|Roman deity (generic term)
+luna moth|1
+(noun)|Actias luna|saturniid (generic term)|saturniid moth (generic term)
+lunacy|2
+(noun)|madness|insaneness|insanity (generic term)
+(noun)|folly|foolery|tomfoolery|craziness|indulgence|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+lunar|1
+(adj)|satellite (related term)
+lunar calendar|1
+(noun)|calendar (generic term)
+lunar caustic|1
+(noun)|silver nitrate (generic term)
+lunar crater|1
+(noun)|crater (generic term)
+lunar day|1
+(noun)|day (generic term)
+lunar eclipse|1
+(noun)|eclipse (generic term)|occultation (generic term)
+lunar excursion module|1
+(noun)|lunar module|LEM|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+lunar latitude|1
+(noun)|line (generic term)
+lunar module|1
+(noun)|lunar excursion module|LEM|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+lunar month|1
+(noun)|moon|lunation|synodic month|month (generic term)
+lunar time period|1
+(noun)|tide|time period (generic term)|period of time (generic term)|period (generic term)
+lunar year|1
+(noun)|year (generic term)
+lunaria|1
+(noun)|Lunaria|genus Lunaria|dilleniid dicot genus (generic term)
+lunaria annua|1
+(noun)|honesty|silver dollar|money plant|satin flower|satinpod|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+lunate|1
+(adj)|crescent|crescent-shaped|semilunar|rounded (similar term)
+lunate bone|1
+(noun)|semilunar bone|os lunatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+lunatic|3
+(adj)|moonstruck|insane (similar term)
+(noun)|madman|maniac|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(noun)|daredevil|madcap|hothead|swashbuckler|harum-scarum|adventurer (generic term)|venturer (generic term)
+lunatic fringe|1
+(noun)|political unit (generic term)|political entity (generic term)
+lunation|1
+(noun)|lunar month|moon|synodic month|month (generic term)
+lunch|3
+(noun)|luncheon|tiffin|dejeuner|meal (generic term)|repast (generic term)
+(verb)|eat (generic term)
+(verb)|feed (generic term)|give (generic term)
+lunch meat|1
+(noun)|luncheon meat|cold cuts (generic term)
+lunch meeting|1
+(noun)|luncheon meeting|meeting (generic term)|get together (generic term)
+lunch period|1
+(noun)|lunchtime|mealtime (generic term)
+luncheon|1
+(noun)|lunch|tiffin|dejeuner|meal (generic term)|repast (generic term)
+luncheon meat|1
+(noun)|lunch meat|cold cuts (generic term)
+luncheon meeting|1
+(noun)|lunch meeting|meeting (generic term)|get together (generic term)
+luncheon voucher|1
+(noun)|meal ticket|coupon (generic term)|voucher (generic term)
+luncher|1
+(noun)|eater (generic term)|feeder (generic term)
+lunching|1
+(noun)|eating (generic term)|feeding (generic term)
+lunchroom|1
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+lunchtime|1
+(noun)|lunch period|mealtime (generic term)
+lund|1
+(noun)|Lund|city (generic term)|metropolis (generic term)|urban center (generic term)
+lunda|1
+(noun)|Lunda|genus Lunda|bird genus (generic term)
+lunda cirrhata|1
+(noun)|tufted puffin|Lunda cirrhata|puffin (generic term)
+lunette|2
+(noun)|fortification (generic term)|munition (generic term)
+(noun)|fenestella|opening (generic term)
+lung|1
+(noun)|respiratory organ (generic term)
+lung-like|1
+(adj)|respiratory organ (related term)
+lung-power|1
+(noun)|voice (generic term)
+lung cancer|1
+(noun)|carcinoma (generic term)
+lunge|3
+(noun)|lurch|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|straight thrust|passado|stab (generic term)|thrust (generic term)|knife thrust (generic term)
+(verb)|hurl|hurtle|thrust|move (generic term)
+lungen|1
+(noun)|longan|longanberry|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+lunger|2
+(noun)|mover (generic term)
+(noun)|consumptive|tubercular|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+lungfish|1
+(noun)|bony fish (generic term)
+lungi|1
+(noun)|lungyi|longyi|piece of cloth (generic term)|piece of material (generic term)
+lungless salamander|1
+(noun)|plethodont|salamander (generic term)
+lungyi|1
+(noun)|lungi|longyi|piece of cloth (generic term)|piece of material (generic term)
+lunisolar|1
+(adj)|satellite (related term)|star (related term)
+lunisolar calendar|1
+(noun)|calendar (generic term)
+lunitidal interval|1
+(noun)|time interval (generic term)|interval (generic term)
+lunkhead|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+lunt|1
+(noun)|Lunt|Alfred Lunt|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+lunula|2
+(noun)|half-moon|lunule|area (generic term)|region (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+lunule|1
+(noun)|half-moon|lunula|area (generic term)|region (generic term)
+luo|1
+(noun)|Luo|Nilotic (generic term)|Nilotic language (generic term)
+luoyang|1
+(noun)|Luoyang|Loyang|city (generic term)|metropolis (generic term)|urban center (generic term)
+lupin|1
+(noun)|lupine|woody plant (generic term)|ligneous plant (generic term)
+lupine|2
+(adj)|canine|canid (related term)
+(noun)|lupin|woody plant (generic term)|ligneous plant (generic term)
+lupinus|1
+(noun)|Lupinus|genus Lupinus|rosid dicot genus (generic term)
+lupinus albus|1
+(noun)|white lupine|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine (generic term)|lupin (generic term)
+lupinus arboreus|1
+(noun)|tree lupine|Lupinus arboreus|shrub (generic term)|bush (generic term)
+lupinus luteus|1
+(noun)|yellow lupine|Lupinus luteus|lupine (generic term)|lupin (generic term)
+lupinus perennis|1
+(noun)|wild lupine|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub (generic term)|suffrutex (generic term)
+lupinus subcarnosus|1
+(noun)|bluebonnet|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine (generic term)|lupin (generic term)
+lupinus texensis|1
+(noun)|Texas bluebonnet|Lupinus texensis|lupine (generic term)|lupin (generic term)
+lupus|2
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+(noun)|Lupus|constellation (generic term)
+lupus erythematosus|1
+(noun)|LE|lupus (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+lupus vulgaris|1
+(noun)|lupus (generic term)|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+lurch|9
+(noun)|stumble|stagger|gait (generic term)
+(noun)|defeat (generic term)|licking (generic term)
+(noun)|pitch|pitching|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|lunge|motion (generic term)|movement (generic term)|move (generic term)
+(verb)|stagger|reel|keel|swag|careen|walk (generic term)
+(verb)|pitch|shift|move (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|prowl|loiter (generic term)|lounge (generic term)|footle (generic term)|lollygag (generic term)|loaf (generic term)|lallygag (generic term)|hang around (generic term)|mess about (generic term)|tarry (generic term)|linger (generic term)|lurk (generic term)|mill about (generic term)|mill around (generic term)
+(verb)|skunk|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+lurcher|1
+(noun)|lurker|skulker|waiter (generic term)
+lure|4
+(noun)|enticement|come-on|attraction (generic term)|attractiveness (generic term)
+(noun)|bait|come-on|hook|sweetener|temptation (generic term)|enticement (generic term)
+(noun)|bait|decoy|device (generic term)
+(verb)|entice|tempt|provoke (generic term)|stimulate (generic term)
+lurid|4
+(adj)|violent (similar term)
+(adj)|shocking|sensational (similar term)
+(adj)|bright (similar term)
+(adj)|colorless (similar term)|colourless (similar term)
+luridness|3
+(noun)|sensationalism|journalese (generic term)
+(noun)|lividness|lividity|paleness|pallidness|pallor|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+(noun)|ghastliness|grimness|gruesomeness|frightfulness (generic term)
+lurk|3
+(verb)|skulk|hide (generic term)|conceal (generic term)
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|mill about|mill around|be (generic term)
+(verb)|ambush|scupper|bushwhack|waylay|ambuscade|lie in wait|wait (generic term)
+lurker|1
+(noun)|skulker|lurcher|waiter (generic term)
+lurking place|1
+(noun)|hiding place (generic term)
+lusaka|1
+(noun)|Lusaka|capital of Zambia|national capital (generic term)
+lusatian|1
+(noun)|Sorbian|Lusatian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+luschka's tonsil|1
+(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+luscinia|1
+(noun)|Luscinia|genus Luscinia|bird genus (generic term)
+luscinia luscinia|1
+(noun)|thrush nightingale|Luscinia luscinia|thrush (generic term)
+luscinia megarhynchos|1
+(noun)|nightingale|Luscinia megarhynchos|thrush (generic term)
+luscious|2
+(adj)|juicy|red-hot|toothsome|voluptuous|sexy (similar term)
+(adj)|delectable|delicious|pleasant-tasting|scrumptious|toothsome|yummy|tasty (similar term)
+lusciously|1
+(adv)|deliciously|scrumptiously
+lusciousness|1
+(noun)|delectability|deliciousness|toothsomeness|appetizingness (generic term)|appetisingness (generic term)
+lush|4
+(adj)|exuberant|luxuriant|profuse|riotous|abundant (similar term)
+(adj)|lavish|lucullan|plush|plushy|rich (similar term)
+(adj)|succulent|juicy (similar term)
+(noun)|alcoholic|alky|dipsomaniac|boozer|soaker|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+lushness|1
+(noun)|luxuriance|voluptuousness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+lushun|1
+(noun)|Lushun|Port Arthur|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+lusitania|1
+(noun)|Lusitania|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lusitanian|2
+(adj)|Portuguese|Lusitanian|European country|European nation (related term)
+(adj)|Lusitanian|geographical area|geographic area|geographical region|geographic region (related term)
+lust|3
+(noun)|lecherousness|lustfulness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|luxuria|mortal sin (generic term)|deadly sin (generic term)
+(verb)|crave|hunger|thirst|starve|desire (generic term)|want (generic term)
+lust after|1
+(verb)|lech after|desire (generic term)|want (generic term)
+lust for learning|1
+(noun)|desire to know|thirst for knowledge|curiosity (generic term)|wonder (generic term)
+luster|3
+(noun)|lustre|brilliancy|splendor|splendour|brightness (generic term)
+(noun)|shininess|sheen|lustre|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+(noun)|lustre|glaze (generic term)
+lusterless|1
+(adj)|lackluster|lacklustre|lustreless|dull (similar term)
+lusterlessness|1
+(noun)|flatness|lustrelessness|mat|matt|matte|dullness (generic term)
+lusterware|1
+(noun)|pottery (generic term)|clayware (generic term)
+lustful|3
+(adj)|lubricious|prurient|salacious|sexy (similar term)
+(adj)|lascivious|lewd|libidinous|sexy (similar term)
+(adj)|lusty|concupiscent|passionate (similar term)
+lustfulness|1
+(noun)|lecherousness|lust|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+lustiness|1
+(noun)|robustness|hardiness|strength (generic term)
+lustrate|1
+(verb)|purify (generic term)|purge (generic term)|sanctify (generic term)
+lustre|3
+(noun)|luster|glaze (generic term)
+(noun)|luster|brilliancy|splendor|splendour|brightness (generic term)
+(noun)|shininess|sheen|luster|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+lustreless|1
+(adj)|lackluster|lacklustre|lusterless|dull (similar term)
+lustrelessness|1
+(noun)|flatness|lusterlessness|mat|matt|matte|dullness (generic term)
+lustrous|3
+(adj)|bright|burnished|shining|shiny|polished (similar term)
+(adj)|glorious (similar term)
+(adj)|glistening|glossy|sheeny|shiny|shining|bright (similar term)
+lustrum|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|ceremony (generic term)
+lusty|2
+(adj)|lustful|concupiscent|passionate (similar term)
+(adj)|hearty|full-blooded|red-blooded|healthy (similar term)
+lusus naturae|1
+(noun)|freak|monster|monstrosity|mutant (generic term)|mutation (generic term)|variation (generic term)|sport (generic term)
+lut desert|1
+(noun)|Dasht-e-Lut|Lut Desert|desert (generic term)
+luta|1
+(noun)|Luda|Luta|conurbation (generic term)|urban sprawl (generic term)|sprawl (generic term)
+lutanist|1
+(noun)|lutist|lutenist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+lute|2
+(noun)|luting|sealing material (generic term)
+(noun)|chordophone (generic term)
+luteal|1
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+luteal phase|1
+(noun)|secretory phase|phase (generic term)|stage (generic term)
+lutecium|1
+(noun)|lutetium|Lu|atomic number 71|metallic element (generic term)|metal (generic term)
+lutefisk|1
+(noun)|lutfisk|dish (generic term)
+lutein|1
+(noun)|xanthophyll|xanthophyl|carotenoid (generic term)
+luteinizing hormone|1
+(noun)|LH|interstitial cell-stimulating hormone|ICSH|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+lutenist|1
+(noun)|lutist|lutanist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+luteotropin|1
+(noun)|prolactin|lactogenic hormone|lactogen (generic term)|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+lutetium|1
+(noun)|lutecium|Lu|atomic number 71|metallic element (generic term)|metal (generic term)
+lutfisk|1
+(noun)|lutefisk|dish (generic term)
+luther|1
+(noun)|Luther|Martin Luther|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+luther burbank|1
+(noun)|Burbank|Luther Burbank|horticulturist (generic term)|plantsman (generic term)
+lutheran|3
+(adj)|Lutheran|theologian|theologist|theologizer|theologiser (related term)
+(adj)|Lutheran|Protestant denomination (related term)
+(noun)|Lutheran|disciple (generic term)|adherent (generic term)
+lutheran church|1
+(noun)|Lutheran Church|Protestant denomination (generic term)
+lutheranism|1
+(noun)|Lutheranism|Protestantism (generic term)
+luthier|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+luting|1
+(noun)|lute|sealing material (generic term)
+lutist|1
+(noun)|lutanist|lutenist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+lutjanidae|1
+(noun)|Lutjanidae|family Lutjanidae|fish family (generic term)
+lutjanus|1
+(noun)|Lutjanus|genus Lutjanus|fish genus (generic term)
+lutjanus analis|1
+(noun)|mutton snapper|muttonfish|Lutjanus analis|snapper (generic term)
+lutjanus apodus|1
+(noun)|schoolmaster|Lutjanus apodus|snapper (generic term)
+lutjanus blackfordi|1
+(noun)|red snapper|Lutjanus blackfordi|snapper (generic term)
+lutjanus griseus|1
+(noun)|grey snapper|gray snapper|mangrove snapper|Lutjanus griseus|snapper (generic term)
+lutra|1
+(noun)|Lutra|genus Lutra|mammal genus (generic term)
+lutra canadensis|1
+(noun)|river otter|Lutra canadensis|otter (generic term)
+lutra lutra|1
+(noun)|Eurasian otter|Lutra lutra|otter (generic term)
+lutrinae|1
+(noun)|Lutrinae|subfamily Lutrinae|mammal family (generic term)
+lutyens|1
+(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect (generic term)|designer (generic term)
+lutzen|1
+(noun)|Lutzen|battle of Lutzen|pitched battle (generic term)
+luvaridae|1
+(noun)|Luvaridae|family Luvaridae|fish family (generic term)
+luvarus|1
+(noun)|Luvarus|genus Luvarus|fish genus (generic term)
+luvarus imperialis|1
+(noun)|louvar|Luvarus imperialis|scombroid (generic term)|scombroid fish (generic term)
+luvian|1
+(noun)|Luwian|Luvian|Anatolian (generic term)|Anatolian language (generic term)
+luwian|1
+(noun)|Luwian|Luvian|Anatolian (generic term)|Anatolian language (generic term)
+lux|1
+(noun)|lx|illumination unit (generic term)
+luxate|1
+(verb)|dislocate|splay|slip|move (generic term)|displace (generic term)
+luxation|1
+(noun)|shift (generic term)|displacement (generic term)
+luxe|1
+(adj)|deluxe|de luxe|elegant (similar term)
+luxembourg|2
+(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital (generic term)
+(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country (generic term)|European nation (generic term)
+luxembourg-ville|1
+(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital (generic term)
+luxembourg city|1
+(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital (generic term)
+luxembourg franc|1
+(noun)|Luxembourg franc|franc (generic term)
+luxembourger|1
+(noun)|Luxemburger|Luxembourger|European (generic term)
+luxembourgian|1
+(adj)|Luxembourgian|European country|European nation (related term)
+luxemburg|2
+(noun)|Luxembourg-Ville|Luxembourg|Luxemburg|Luxembourg City|capital of Luxembourg|national capital (generic term)
+(noun)|Luxembourg|Grand Duchy of Luxembourg|Luxemburg|European country (generic term)|European nation (generic term)
+luxemburger|3
+(adj)|Luxemburger|national capital (related term)
+(adj)|Luxemburger|European country|European nation (related term)
+(noun)|Luxemburger|Luxembourger|European (generic term)
+luxor|1
+(noun)|Luxor|El-Aksur|city (generic term)|metropolis (generic term)|urban center (generic term)
+luxuria|1
+(noun)|lust|mortal sin (generic term)|deadly sin (generic term)
+luxuriance|1
+(noun)|lushness|voluptuousness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+luxuriant|3
+(adj)|elaborate|fancy (similar term)
+(adj)|epicurean|luxurious|sybaritic|voluptuary|voluptuous|indulgent (similar term)
+(adj)|exuberant|lush|profuse|riotous|abundant (similar term)
+luxuriate|3
+(verb)|wanton|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|indulge|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|boom (generic term)|prosper (generic term)|thrive (generic term)|get ahead (generic term)|flourish (generic term)|expand (generic term)
+luxuriation|1
+(noun)|pleasure (generic term)
+luxurious|2
+(adj)|epicurean|luxuriant|sybaritic|voluptuary|voluptuous|indulgent (similar term)
+(adj)|deluxe|gilded|grand|opulent|princely|sumptuous|rich (similar term)
+luxuriously|1
+(adv)|high|richly
+luxuriousness|1
+(noun)|luxury|opulence|sumptuousness|wealth (generic term)|wealthiness (generic term)
+luxury|3
+(noun)|indulgence (generic term)|self-indulgence (generic term)
+(noun)|lavishness|sumptuosity|sumptuousness|expensiveness (generic term)
+(noun)|luxuriousness|opulence|sumptuousness|wealth (generic term)|wealthiness (generic term)
+luxury liner|1
+(noun)|express luxury liner|liner (generic term)|ocean liner (generic term)
+luyia|1
+(noun)|Luyia|Bantu (generic term)|Bantoid language (generic term)
+luzon|1
+(noun)|Luzon|island (generic term)
+lv|1
+(adj)|fifty-five|55|cardinal (similar term)
+lvi|1
+(adj)|fifty-six|56|cardinal (similar term)
+lvii|1
+(adj)|fifty-seven|57|cardinal (similar term)
+lviii|1
+(adj)|fifty-eight|58|cardinal (similar term)
+lwei|1
+(noun)|Angolan monetary unit (generic term)
+lx|3
+(adj)|sixty|60|threescore|cardinal (similar term)
+(noun)|sixty|60|LX|large integer (generic term)
+(noun)|lux|illumination unit (generic term)
+lxi|1
+(adj)|sixty-one|61|cardinal (similar term)
+lxii|1
+(adj)|sixty-two|62|cardinal (similar term)
+lxiii|1
+(adj)|sixty-three|63|cardinal (similar term)
+lxiv|1
+(adj)|sixty-four|64|cardinal (similar term)
+lxv|1
+(adj)|sixty-five|65|cardinal (similar term)
+lxvi|1
+(adj)|sixty-six|66|cardinal (similar term)
+lxvii|1
+(adj)|sixty-seven|67|cardinal (similar term)
+lxviii|1
+(adj)|sixty-eight|68|cardinal (similar term)
+lxx|2
+(adj)|seventy|70|cardinal (similar term)
+(noun)|seventy|70|LXX|large integer (generic term)
+lxxi|1
+(adj)|seventy-one|71|cardinal (similar term)
+lxxii|1
+(adj)|seventy-two|72|cardinal (similar term)
+lxxiii|1
+(adj)|seventy-three|73|cardinal (similar term)
+lxxiv|1
+(adj)|seventy-four|74|cardinal (similar term)
+lxxv|1
+(adj)|seventy-five|75|cardinal (similar term)
+lxxvi|1
+(adj)|seventy-six|76|cardinal (similar term)
+lxxvii|1
+(adj)|seventy-seven|77|cardinal (similar term)
+lxxviii|2
+(adj)|seventy-eight|78|cardinal (similar term)
+(noun)|seventy-eight|78|LXXVIII|large integer (generic term)
+lxxx|2
+(adj)|eighty|80|fourscore|cardinal (similar term)
+(noun)|eighty|80|LXXX|fourscore|large integer (generic term)
+lxxxi|1
+(adj)|eighty-one|81|cardinal (similar term)
+lxxxii|1
+(adj)|eighty-two|82|cardinal (similar term)
+lxxxiii|1
+(adj)|eighty-three|83|cardinal (similar term)
+lxxxiv|1
+(adj)|eighty-four|84|cardinal (similar term)
+lxxxv|1
+(adj)|eighty-five|85|cardinal (similar term)
+lxxxvi|1
+(adj)|eighty-six|86|cardinal (similar term)
+lxxxvii|1
+(adj)|eighty-seven|87|cardinal (similar term)
+lxxxviii|1
+(adj)|eighty-eight|88|cardinal (similar term)
+lyallpur|1
+(noun)|Faisalabad|Lyallpur|city (generic term)|metropolis (generic term)|urban center (generic term)
+lycaena|1
+(noun)|Lycaena|genus Lycaena|arthropod genus (generic term)
+lycaena hypophlaeas|1
+(noun)|American copper|Lycaena hypophlaeas|copper (generic term)
+lycaenid|1
+(noun)|lycaenid butterfly|butterfly (generic term)
+lycaenid butterfly|1
+(noun)|lycaenid|butterfly (generic term)
+lycaenidae|1
+(noun)|Lycaenidae|family Lycaenidae|arthropod family (generic term)
+lycaeon|1
+(noun)|Lycaeon|genus Lycaeon|mammal genus (generic term)
+lycanthrope|1
+(noun)|werewolf|wolfman|mythical monster (generic term)|mythical creature (generic term)
+lycanthropy|1
+(noun)|magical ability (generic term)|magical power (generic term)
+lycaon pictus|1
+(noun)|African hunting dog|hyena dog|Cape hunting dog|Lycaon pictus|wild dog (generic term)
+lycee|1
+(noun)|secondary school|lyceum|Gymnasium|middle school|school (generic term)
+lyceum|2
+(noun)|secondary school|lycee|Gymnasium|middle school|school (generic term)
+(noun)|hall (generic term)
+lychee|1
+(noun)|litchi|litchi nut|litchee|lichi|leechee|lichee|edible fruit (generic term)
+lychgate|1
+(noun)|lichgate|gate (generic term)
+lychins chalcedonica|1
+(noun)|scarlet lychnis|maltese cross|Lychins chalcedonica|lychnis (generic term)|catchfly (generic term)
+lychins floscuculi|1
+(noun)|ragged robin|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis (generic term)|catchfly (generic term)
+lychnis|1
+(noun)|catchfly|flower (generic term)
+lychnis alba|1
+(noun)|white campion|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+lychnis coronaria|1
+(noun)|mullein pink|rose campion|gardener's delight|dusty miller|Lychnis coronaria|lychnis (generic term)|catchfly (generic term)
+lychnis dioica|1
+(noun)|red campion|red bird's eye|Silene dioica|Lychnis dioica|silene (generic term)|campion (generic term)|catchfly (generic term)
+lychnis flos-cuculi|1
+(noun)|ragged robin|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis (generic term)|catchfly (generic term)
+lycia|1
+(noun)|Lycia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lycian|1
+(noun)|Lycian|Anatolian (generic term)|Anatolian language (generic term)
+lycium|1
+(noun)|Lycium|genus Lycium|asterid dicot genus (generic term)
+lycium barbarum|1
+(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine (generic term)|boxthorn (generic term)
+lycium carolinianum|1
+(noun)|Christmasberry|Christmas berry|Lycium carolinianum|shrub (generic term)|bush (generic term)
+lycium halimifolium|1
+(noun)|common matrimony vine|Duke of Argyll's tea tree|Lycium barbarum|Lycium halimifolium|matrimony vine (generic term)|boxthorn (generic term)
+lycopene|1
+(noun)|carotenoid (generic term)
+lycoperdaceae|1
+(noun)|Lycoperdaceae|family Lycoperdaceae|fungus family (generic term)
+lycoperdales|1
+(noun)|Lycoperdales|order Lycoperdales|fungus order (generic term)
+lycoperdon|1
+(noun)|Lycoperdon|genus Lycoperdon|fungus genus (generic term)
+lycopersicon|1
+(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus (generic term)
+lycopersicon esculentum|1
+(noun)|tomato|love apple|tomato plant|Lycopersicon esculentum|herb (generic term)|herbaceous plant (generic term)
+lycopersicon esculentum cerasiforme|1
+(noun)|cherry tomato|Lycopersicon esculentum cerasiforme|tomato (generic term)|love apple (generic term)|tomato plant (generic term)|Lycopersicon esculentum (generic term)
+lycopersicum|1
+(noun)|Lycopersicon|genus Lycopersicon|Lycopersicum|genus Lycopersicum|asterid dicot genus (generic term)
+lycophyta|1
+(noun)|Lycophyta|division (generic term)
+lycopod|1
+(noun)|club moss|club-moss|fern ally (generic term)
+lycopodiaceae|1
+(noun)|Lycopodiaceae|family Lycopodiaceae|clubmoss family|fern family (generic term)
+lycopodiales|1
+(noun)|Lycopodiales|order Lycopodiales|plant order (generic term)
+lycopodiate|1
+(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class (generic term)
+lycopodineae|1
+(noun)|Lycopodineae|class Lycopodineae|class (generic term)
+lycopodium|1
+(noun)|Lycopodium|genus Lycopodium|fern genus (generic term)
+lycopodium alopecuroides|1
+(noun)|foxtail grass|Lycopodium alopecuroides|ground pine (generic term)|Christmas green (generic term)
+lycopodium alpinum|1
+(noun)|alpine clubmoss|Lycopodium alpinum|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+lycopodium clavitum|1
+(noun)|running pine|Lycopodium clavitum|ground pine (generic term)|Christmas green (generic term)
+lycopodium complanatum|1
+(noun)|ground cedar|staghorn moss|Lycopodium complanatum|ground pine (generic term)|Christmas green (generic term)
+lycopodium lucidulum|1
+(noun)|shining clubmoss|Lycopodium lucidulum|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+lycopodium obscurum|1
+(noun)|ground fir|princess pine|tree clubmoss|Lycopodium obscurum|ground pine (generic term)|Christmas green (generic term)
+lycopodium selago|1
+(noun)|fir clubmoss|mountain clubmoss|little clubmoss|Lycopodium selago|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+lycopsida|1
+(noun)|Lycopsida|class Lycopsida|Lycopodiate|class Lycopodiate|class (generic term)
+lycopus|1
+(noun)|Lycopus|genus Lycopus|asterid dicot genus (generic term)
+lycopus americanus|1
+(noun)|water horehound|Lycopus americanus|herb (generic term)|herbaceous plant (generic term)
+lycopus europaeus|1
+(noun)|gipsywort|gypsywort|Lycopus europaeus|herb (generic term)|herbaceous plant (generic term)
+lycopus virginicus|1
+(noun)|bugleweed|Lycopus virginicus|herb (generic term)|herbaceous plant (generic term)
+lycosa|1
+(noun)|Lycosa|genus Lycosa|arthropod genus (generic term)
+lycosa tarentula|1
+(noun)|European wolf spider|tarantula|Lycosa tarentula|wolf spider (generic term)|hunting spider (generic term)
+lycosidae|1
+(noun)|Lycosidae|family Lycosidae|arthropod family (generic term)
+lydia|1
+(noun)|Lydia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lydia kamekeha paki liliuokalani|1
+(noun)|Liliuokalani|Lydia Kamekeha Paki Liliuokalani|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+lydian|1
+(noun)|Lydian|Anatolian (generic term)|Anatolian language (generic term)
+lye|1
+(noun)|caustic (generic term)
+lye hominy|1
+(noun)|hominy (generic term)
+lygaeid|1
+(noun)|lygaeid bug|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+lygaeid bug|1
+(noun)|lygaeid|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+lygaeidae|1
+(noun)|Lygaeidae|family Lygaeidae|arthropod family (generic term)
+lyginopteridales|1
+(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order (generic term)
+lyginopteris|1
+(noun)|Lyginopteris|genus Lyginopteris|gymnosperm genus (generic term)
+lygodium|1
+(noun)|Lygodium|genus Lygodium|fern genus (generic term)
+lygodium microphyllum|1
+(noun)|climbing maidenhair|climbing maidenhair fern|snake fern|Lygodium microphyllum|climbing fern (generic term)
+lygodium palmatum|1
+(noun)|creeping fern|Hartford fern|Lygodium palmatum|climbing fern (generic term)
+lygus|1
+(noun)|Lygus|genus Lygus|arthropod genus (generic term)
+lygus bug|1
+(noun)|mirid bug (generic term)|mirid (generic term)|capsid (generic term)
+lygus lineolaris|1
+(noun)|tarnished plant bug|Lygus lineolaris|lygus bug (generic term)
+lying|2
+(adj)|mendacious|untruthful (similar term)
+(noun)|prevarication|fabrication|falsification (generic term)|misrepresentaation (generic term)
+lying-in|1
+(noun)|parturiency|labor|labour|confinement|travail|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+lying in wait|2
+(adj)|concealed (similar term)
+(noun)|ambush|ambuscade|trap|surprise attack (generic term)|coup de main (generic term)
+lying under oath|1
+(noun)|perjury|bearing false witness|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+lyly|1
+(noun)|Lyly|John Lyly|writer (generic term)|author (generic term)
+lyman frank brown|1
+(noun)|Baum|Frank Baum|Lyman Frank Brown|writer (generic term)|author (generic term)
+lymantria|1
+(noun)|Lymantria|genus Lymantria|arthropod genus (generic term)
+lymantria dispar|1
+(noun)|gypsy moth|gipsy moth|Lymantria dispar|lymantriid (generic term)|tussock moth (generic term)
+lymantriid|1
+(noun)|tussock moth|moth (generic term)
+lymantriidae|1
+(noun)|Lymantriidae|family Lymantriidae|arthropod family (generic term)
+lyme arthritis|1
+(noun)|Lyme disease|Lyme arthritis|zoonosis (generic term)|zoonotic disease (generic term)
+lyme disease|1
+(noun)|Lyme disease|Lyme arthritis|zoonosis (generic term)|zoonotic disease (generic term)
+lyme grass|1
+(noun)|grass (generic term)
+lymph|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+lymph cell|1
+(noun)|lymphocyte|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+lymph gland|1
+(noun)|lymph node|node|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+lymph node|1
+(noun)|lymph gland|node|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+lymph vessel|1
+(noun)|lymphatic vessel|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+lymphadenitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+lymphadenoma|1
+(noun)|adenoma (generic term)
+lymphadenopathy|1
+(noun)|pathology (generic term)
+lymphangiectasia|1
+(noun)|lymphangiectasis|ectasia (generic term)|ectasis (generic term)
+lymphangiectasis|1
+(noun)|lymphangiectasia|ectasia (generic term)|ectasis (generic term)
+lymphangiogram|1
+(noun)|angiogram (generic term)
+lymphangiography|1
+(noun)|lymphography|angiography (generic term)
+lymphangioma|1
+(noun)|angioma (generic term)
+lymphangitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+lymphatic|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+lymphatic system|1
+(noun)|systema lymphaticum|vascular system (generic term)
+lymphatic tissue|1
+(noun)|lymphoid tissue|animal tissue (generic term)
+lymphatic vessel|1
+(noun)|lymph vessel|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+lymphedema|1
+(noun)|edema (generic term)|oedema (generic term)|hydrops (generic term)|dropsy (generic term)
+lymphoblast|1
+(noun)|lymphocyte (generic term)|lymph cell (generic term)
+lymphoblast-like|1
+(adj)|cellular (similar term)
+lymphoblastic leukemia|1
+(noun)|lymphocytic leukemia (generic term)
+lymphocyte|1
+(noun)|lymph cell|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+lymphocytic|1
+(adj)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC (related term)
+lymphocytic choriomeningitis|1
+(noun)|choriomeningitis (generic term)
+lymphocytic choriomeningitis virus|1
+(noun)|arenavirus (generic term)
+lymphocytic leukemia|1
+(noun)|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+lymphocytopenia|1
+(noun)|lymphopenia|blood disease (generic term)|blood disorder (generic term)
+lymphocytosis|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+lymphogranuloma|1
+(noun)|swelling (generic term)|puffiness (generic term)|lump (generic term)
+lymphogranuloma venereum|1
+(noun)|LGV|lymphopathia venereum|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+lymphography|1
+(noun)|lymphangiography|angiography (generic term)
+lymphoid|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+lymphoid tissue|1
+(noun)|lymphatic tissue|animal tissue (generic term)
+lymphokine|1
+(noun)|cytokine (generic term)
+lymphoma|1
+(noun)|cancer (generic term)|malignant neoplastic disease (generic term)
+lymphopathia venereum|1
+(noun)|lymphogranuloma venereum|LGV|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+lymphopenia|1
+(noun)|lymphocytopenia|blood disease (generic term)|blood disorder (generic term)
+lymphopoiesis|1
+(noun)|organic process (generic term)|biological process (generic term)
+lymphuria|1
+(noun)|symptom (generic term)
+lynch|1
+(verb)|kill (generic term)
+lynch law|1
+(noun)|practice (generic term)|pattern (generic term)
+lynch mob|1
+(noun)|mob (generic term)|rabble (generic term)|rout (generic term)
+lynchburg|1
+(noun)|Lynchburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+lynching|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+lynchpin|2
+(noun)|anchor|mainstay|keystone|backbone|linchpin|support (generic term)
+(noun)|linchpin|pin (generic term)
+lyndon baines johnson|1
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+lyndon johnson|1
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+lynn fontanne|1
+(noun)|Fontanne|Lynn Fontanne|actress (generic term)
+lynx|2
+(noun)|browser (generic term)|web browser (generic term)
+(noun)|catamount|wildcat (generic term)
+lynx-eyed|1
+(adj)|argus-eyed|hawk-eyed|keen-sighted|quick-sighted|sharp-eyed|sharp-sighted|sighted (similar term)
+lynx canadensis|1
+(noun)|Canada lynx|Lynx canadensis|lynx (generic term)|catamount (generic term)
+lynx caracal|1
+(noun)|caracal|desert lynx|Lynx caracal|lynx (generic term)|catamount (generic term)
+lynx lynx|1
+(noun)|common lynx|Lynx lynx|lynx (generic term)|catamount (generic term)
+lynx pardina|1
+(noun)|spotted lynx|Lynx pardina|lynx (generic term)|catamount (generic term)
+lynx rufus|1
+(noun)|bobcat|bay lynx|Lynx rufus|lynx (generic term)|catamount (generic term)
+lyon|1
+(noun)|Lyon|Lyons|city (generic term)|metropolis (generic term)|urban center (generic term)
+lyonia|1
+(noun)|Lyonia|genus Lyonia|dilleniid dicot genus (generic term)
+lyonia ligustrina|1
+(noun)|maleberry|male berry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub (generic term)|bush (generic term)
+lyonia lucida|1
+(noun)|fetterbush|fetter bush|shiny lyonia|Lyonia lucida|shrub (generic term)|bush (generic term)
+lyonia mariana|1
+(noun)|staggerbush|stagger bush|Lyonia mariana|shrub (generic term)|bush (generic term)
+lyonnais|1
+(noun)|Lyonnais|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+lyonnaise|1
+(adj)|cooked (similar term)
+lyonnaise sauce|1
+(noun)|Lyonnaise sauce|brown onion sauce|sauce (generic term)
+lyons|3
+(noun)|Lyon|Lyons|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Lyons|Second Council of Lyons|council (generic term)
+(noun)|Lyons|First Council of Lyons|council (generic term)
+lyophilisation|1
+(noun)|freeze-drying|lyophilization|freeze (generic term)|freezing (generic term)|dehydration (generic term)|desiccation (generic term)|drying up (generic term)|evaporation (generic term)
+lyophilise|1
+(verb)|lyophilize|freeze-dry (generic term)
+lyophilised|1
+(adj)|lyophilized|freeze-dried|preserved (similar term)
+lyophilization|1
+(noun)|freeze-drying|lyophilisation|freeze (generic term)|freezing (generic term)|dehydration (generic term)|desiccation (generic term)|drying up (generic term)|evaporation (generic term)
+lyophilize|1
+(verb)|lyophilise|freeze-dry (generic term)
+lyophilized|1
+(adj)|lyophilised|freeze-dried|preserved (similar term)
+lypressin|1
+(noun)|antidiuretic (generic term)|antidiuretic drug (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+lyra|1
+(noun)|Lyra|constellation (generic term)
+lyrate|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+lyrate leaf|1
+(noun)|simple leaf (generic term)
+lyre|1
+(noun)|harp (generic term)
+lyre-flower|1
+(noun)|bleeding heart|lyreflower|Dicentra spectabilis|herb (generic term)|herbaceous plant (generic term)
+lyre-shaped|1
+(adj)|formed (similar term)
+lyre snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+lyrebird|1
+(noun)|passerine (generic term)|passeriform bird (generic term)
+lyreflower|1
+(noun)|bleeding heart|lyre-flower|Dicentra spectabilis|herb (generic term)|herbaceous plant (generic term)
+lyric|7
+(adj)|lyrical|emotional (similar term)
+(adj)|dramatic (antonym)
+(adj)|classical music|classical|serious music (related term)
+(adj)|poem|verse form (related term)
+(noun)|words|language|text (generic term)|textual matter (generic term)
+(noun)|lyric poem|poem (generic term)|verse form (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+lyric poem|1
+(noun)|lyric|poem (generic term)|verse form (generic term)
+lyrical|2
+(adj)|melodious (similar term)|melodic (similar term)|musical (similar term)
+(adj)|lyric|emotional (similar term)
+lyricality|1
+(noun)|lyricism|songfulness|musicality (generic term)|musicalness (generic term)
+lyricism|2
+(noun)|lyricality|songfulness|musicality (generic term)|musicalness (generic term)
+(noun)|exuberance (generic term)|enthusiasm (generic term)|ebullience (generic term)
+lyricist|1
+(noun)|lyrist|writer (generic term)|author (generic term)
+lyrist|1
+(noun)|lyricist|writer (generic term)|author (generic term)
+lyrurus|1
+(noun)|Lyrurus|genus Lyrurus|bird genus (generic term)
+lyrurus mlokosiewiczi|1
+(noun)|Asian black grouse|Lyrurus mlokosiewiczi|black grouse (generic term)
+lyrurus tetrix|1
+(noun)|European black grouse|heathfowl|Lyrurus tetrix|black grouse (generic term)
+lysander|1
+(noun)|Lysander|general (generic term)|full general (generic term)
+lysenko|1
+(noun)|Lysenko|Trofim Denisovich Lysenko|geneticist (generic term)
+lysergic acid|1
+(noun)|acid (generic term)
+lysergic acid diethylamide|1
+(noun)|LSD|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)|drug of abuse (generic term)|street drug (generic term)|controlled substance (generic term)
+lysichiton|1
+(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus (generic term)|liliopsid genus (generic term)
+lysichiton americanum|1
+(noun)|skunk cabbage|Lysichiton americanum|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+lysichitum|1
+(noun)|Lysichiton|genus Lysichiton|Lysichitum|genus Lysichitum|monocot genus (generic term)|liliopsid genus (generic term)
+lysiloma|1
+(noun)|Lysiloma|genus Lysiloma|rosid dicot genus (generic term)
+lysiloma bahamensis|1
+(noun)|wild tamarind|Lysiloma latisiliqua|Lysiloma bahamensis|tree (generic term)
+lysiloma latisiliqua|1
+(noun)|wild tamarind|Lysiloma latisiliqua|Lysiloma bahamensis|tree (generic term)
+lysiloma sabicu|1
+(noun)|sabicu|Lysiloma sabicu|shrub (generic term)|bush (generic term)
+lysimachia|1
+(noun)|Lysimachia|genus Lysimachia|dicot genus (generic term)|magnoliopsid genus (generic term)
+lysimachia ciliatum|1
+(noun)|fringed loosestrife|Lysimachia ciliatum|loosestrife (generic term)
+lysimachia clethroides duby|1
+(noun)|gooseneck loosestrife|Lysimachia clethroides Duby|loosestrife (generic term)
+lysimachia nemorum|1
+(noun)|yellow pimpernel|Lysimachia nemorum|loosestrife (generic term)
+lysimachia nummularia|1
+(noun)|moneywort|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife (generic term)
+lysimachia quadrifolia|1
+(noun)|whorled loosestrife|Lysimachia quadrifolia|loosestrife (generic term)
+lysimachia terrestris|1
+(noun)|swamp candles|Lysimachia terrestris|loosestrife (generic term)
+lysimachia vulgaris|1
+(noun)|yellow loosestrife|garden loosestrife|Lysimachia vulgaris|loosestrife (generic term)
+lysimachus|1
+(noun)|Lysimachus|general (generic term)|full general (generic term)|Macedonian (generic term)
+lysin|1
+(noun)|substance (generic term)|matter (generic term)
+lysine|1
+(noun)|essential amino acid (generic term)
+lysine intolerance|1
+(noun)|metabolic disorder (generic term)
+lysinemia|1
+(noun)|inborn error of metabolism (generic term)
+lysippus|1
+(noun)|Lysippus|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+lysis|2
+(noun)|convalescence (generic term)|recuperation (generic term)|recovery (generic term)
+(noun)|dissolution (generic term)|disintegration (generic term)
+lysogenic|2
+(adj)|condition (related term)
+(adj)|dissolution|disintegration (related term)
+lysogenicity|1
+(noun)|lysogeny|condition (generic term)
+lysogenisation|1
+(noun)|lysogenization|organic process (generic term)|biological process (generic term)
+lysogenization|1
+(noun)|lysogenisation|organic process (generic term)|biological process (generic term)
+lysogenize|1
+(verb)|integrate (generic term)
+lysogeny|1
+(noun)|lysogenicity|condition (generic term)
+lysol|1
+(noun)|Lysol|cresol (generic term)|methyl phenol (generic term)
+lysosome|1
+(noun)|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+lysozyme|1
+(noun)|muramidase|enzyme (generic term)
+lyssa|1
+(noun)|rabies|hydrophobia|madness|zoonosis (generic term)|zoonotic disease (generic term)
+lyssavirus|1
+(noun)|animal virus (generic term)
+lythraceae|1
+(noun)|Lythraceae|family Lythraceae|loosestrife family|dicot family (generic term)|magnoliopsid family (generic term)
+lythrum|1
+(noun)|Lythrum|genus Lythrum|dicot genus (generic term)|magnoliopsid genus (generic term)
+lythrum hyssopifolia|1
+(noun)|grass poly|hyssop loosestrife|Lythrum hyssopifolia|loosestrife (generic term)
+lythrum salicaria|1
+(noun)|purple loosestrife|spiked loosestrife|Lythrum salicaria|loosestrife (generic term)
+lytton|1
+(noun)|Lytton|First Baron Lytton|Bulwer-Lytton|Edward George Earle Bulwer-Lytton|writer (generic term)|author (generic term)
+lytton strachey|1
+(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer (generic term)
+m|5
+(adj)|thousand|one thousand|1000|k|cardinal (similar term)
+(noun)|meter|metre|metric linear unit (generic term)
+(noun)|molarity|molar concentration|M|concentration (generic term)
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+(noun)|M|letter m|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+m-1|1
+(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm (generic term)|rifle (generic term)
+m-1 rifle|1
+(noun)|Garand rifle|Garand|M-1|M-1 rifle|semiautomatic firearm (generic term)|rifle (generic term)
+m-theory|1
+(noun)|M-theory|model (generic term)|theoretical account (generic term)|framework (generic term)
+m. j. schleiden|1
+(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist (generic term)|histologist (generic term)
+m.m.|1
+(noun)|beats per minute|bpm|metronome marking|M.M.|pace (generic term)|gait (generic term)
+m1|1
+(noun)|M1|money supply (generic term)
+m2|1
+(noun)|M2|money supply (generic term)
+m3|1
+(noun)|M3|money supply (generic term)
+ma|4
+(noun)|mama|mamma|mom|momma|mommy|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+(noun)|Master of Arts|MA|Artium Magister|AM|master's degree (generic term)
+(noun)|milliampere|mA|current unit (generic term)
+(noun)|Massachusetts|Bay State|Old Colony|MA|American state (generic term)
+ma'am|1
+(noun)|dame|madam|lady|gentlewoman|woman (generic term)|adult female (generic term)
+maalox|1
+(noun)|Maalox|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+maar|1
+(noun)|volcanic crater (generic term)|crater (generic term)
+maarianhamina|1
+(noun)|Mariehamn|Maarianhamina|town (generic term)|port (generic term)
+mac|1
+(noun)|macintosh|mackintosh|mack|raincoat (generic term)|waterproof (generic term)
+macabre|1
+(adj)|ghastly|grim|grisly|gruesome|sick|alarming (similar term)
+macaca|1
+(noun)|Macaca|genus Macaca|mammal genus (generic term)
+macaca irus|1
+(noun)|crab-eating macaque|croo monkey|Macaca irus|macaque (generic term)
+macaca mulatta|1
+(noun)|rhesus|rhesus monkey|Macaca mulatta|macaque (generic term)
+macaca radiata|1
+(noun)|bonnet macaque|bonnet monkey|capped macaque|crown monkey|Macaca radiata|macaque (generic term)
+macaca sylvana|1
+(noun)|Barbary ape|Macaca sylvana|macaque (generic term)
+macadam|2
+(noun)|paving material (generic term)
+(noun)|tarmacadam|tarmac|paved surface (generic term)
+macadamia|1
+(noun)|macadamia tree|nut tree (generic term)
+macadamia integrifolia|1
+(noun)|Macadamia integrifolia|macadamia (generic term)|macadamia tree (generic term)
+macadamia nut|2
+(noun)|macadamia nut tree|Macadamia ternifolia|macadamia (generic term)|macadamia tree (generic term)
+(noun)|edible nut (generic term)
+macadamia nut tree|1
+(noun)|macadamia nut|Macadamia ternifolia|macadamia (generic term)|macadamia tree (generic term)
+macadamia ternifolia|1
+(noun)|macadamia nut|macadamia nut tree|Macadamia ternifolia|macadamia (generic term)|macadamia tree (generic term)
+macadamia tetraphylla|1
+(noun)|Queensland nut|Macadamia tetraphylla|macadamia (generic term)|macadamia tree (generic term)
+macadamia tree|1
+(noun)|macadamia|nut tree (generic term)
+macadamise|1
+(verb)|macadamize|tarmac|coat (generic term)|surface (generic term)
+macadamize|1
+(verb)|macadamise|tarmac|coat (generic term)|surface (generic term)
+macamba|1
+(noun)|grugru|gri-gri|grugru palm|Acrocomia aculeata|feather palm (generic term)
+macao|1
+(noun)|Macao|Macau|possession (generic term)
+macao monetary unit|1
+(noun)|Macao monetary unit|monetary unit (generic term)
+macaque|1
+(noun)|Old World monkey (generic term)|catarrhine (generic term)
+macaroni|2
+(noun)|dandy (generic term)|dude (generic term)|fop (generic term)|gallant (generic term)|sheik (generic term)|beau (generic term)|swell (generic term)|fashion plate (generic term)|clotheshorse (generic term)
+(noun)|pasta (generic term)|alimentary paste (generic term)
+macaroni and cheese|1
+(noun)|pasta (generic term)
+macaroni salad|1
+(noun)|pasta salad (generic term)
+macaroni wheat|1
+(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|wheat (generic term)
+macaronic|1
+(adj)|Italic|Italic language (related term)|non-standard speech (related term)
+macaroon|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+macarthur|1
+(noun)|MacArthur|Douglas MacArthur|general (generic term)|full general (generic term)
+macau|1
+(noun)|Macao|Macau|possession (generic term)
+macaulay|1
+(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian (generic term)|historiographer (generic term)
+macaw|1
+(noun)|parrot (generic term)
+macbeth|1
+(noun)|Macbeth|king (generic term)|male monarch (generic term)|Rex (generic term)
+macdowell|1
+(noun)|MacDowell|Edward MacDowell|composer (generic term)
+mace|4
+(noun)|Mace|Chemical Mace|chloroacetophenone (generic term)|CN gas (generic term)
+(noun)|macebearer|macer|official (generic term)|functionary (generic term)
+(noun)|spice (generic term)
+(noun)|staff (generic term)
+macebearer|1
+(noun)|mace|macer|official (generic term)|functionary (generic term)
+macedoine|1
+(noun)|dish (generic term)
+macedon|1
+(noun)|Macedon|Macedonia|Makedonija|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+macedonia|2
+(noun)|Macedonia|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+(noun)|Macedon|Macedonia|Makedonija|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+macedonian|3
+(adj)|Macedonian|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Macedonian|European (generic term)
+(noun)|Macedonian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+macedonian war|1
+(noun)|Macedonian War|war (generic term)|warfare (generic term)
+macer|1
+(noun)|macebearer|mace|official (generic term)|functionary (generic term)
+macerate|3
+(verb)|separate (generic term)
+(verb)|soften (generic term)
+(verb)|waste|emaciate|enfeeble (generic term)|debilitate (generic term)|drain (generic term)
+maceration|2
+(noun)|softening (generic term)
+(noun)|bonyness|boniness|emaciation|gauntness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+macerative|1
+(adj)|softening (related term)
+macgregor|1
+(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+macguffin|1
+(noun)|McGuffin|MacGuffin|plot element (generic term)
+mach|1
+(noun)|Mach|Ernst Mach|physicist (generic term)|philosopher (generic term)
+mach number|1
+(noun)|Mach number|ratio (generic term)
+machaeranthera|1
+(noun)|Machaeranthera|genus Machaeranthera|asterid dicot genus (generic term)
+machaeranthera bigelovii|1
+(noun)|sticky aster|Machaeranthera bigelovii|wildflower (generic term)|wild flower (generic term)
+machaeranthera tanacetifolia|1
+(noun)|tahoka daisy|tansy leaf aster|Machaeranthera tanacetifolia|wildflower (generic term)|wild flower (generic term)
+machaeranthera tortifoloia|1
+(noun)|Mojave aster|Machaeranthera tortifoloia|wildflower (generic term)|wild flower (generic term)
+machete|1
+(noun)|matchet|panga|knife (generic term)
+machiavelli|1
+(noun)|Machiavelli|Niccolo Machiavelli|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+machiavellian|2
+(adj)|Machiavellian|statesman|solon|national leader|philosopher (related term)|autocracy (related term)
+(noun)|Machiavellian|follower (generic term)
+machiavellianism|1
+(noun)|Machiavellianism|autocracy (generic term)
+machicolate|1
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+machicolation|1
+(noun)|parapet (generic term)|breastwork (generic term)
+machilid|1
+(noun)|jumping bristletail|thysanuran insect (generic term)|thysanuron (generic term)
+machilidae|1
+(noun)|Machilidae|family Machilidae|arthropod family (generic term)
+machinate|2
+(verb)|organize|organise|prepare|devise|get up|initiate (generic term)|pioneer (generic term)
+(verb)|conspire|cabal|complot|conjure|plot (generic term)
+machination|1
+(noun)|intrigue|plot (generic term)|secret plan (generic term)|game (generic term)
+machinator|1
+(noun)|conspirator|coconspirator|plotter|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+machine|8
+(noun)|device (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|car|auto|automobile|motorcar|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|political machine|organization (generic term)|organisation (generic term)
+(noun)|simple machine|mechanical device (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+machine-accessible|1
+(adj)|connected|on-line (similar term)
+machine-controlled|1
+(adj)|automated|machine-driven|automatic (similar term)
+machine-displayable text|1
+(noun)|electronic text (generic term)
+machine-driven|1
+(adj)|automated|machine-controlled|automatic (similar term)
+machine-made|1
+(adj)|handmade (antonym)
+machine-oriented language|1
+(noun)|computer language|computer-oriented language|machine language|programming language (generic term)|programing language (generic term)
+machine-readable text|1
+(noun)|electronic text (generic term)
+machine-wash|1
+(verb)|machine wash|wash (generic term)|launder (generic term)|handwash (antonym)
+machine bolt|1
+(noun)|bolt (generic term)
+machine code|1
+(noun)|machine language|code (generic term)|computer code (generic term)
+machine gun|2
+(noun)|firearm (generic term)|piece (generic term)|small-arm (generic term)
+(verb)|gun (generic term)
+machine gunner|1
+(noun)|artilleryman|cannoneer|gunner|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+machine language|2
+(noun)|computer language|computer-oriented language|machine-oriented language|programming language (generic term)|programing language (generic term)
+(noun)|machine code|code (generic term)|computer code (generic term)
+machine operation|1
+(noun)|computer operation|operation (generic term)
+machine pistol|1
+(noun)|burp gun|submachine gun (generic term)
+machine politician|1
+(noun)|ward-heeler|political hack|hack|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+machine readable|1
+(adj)|computer readable|code|computer code (related term)
+machine readable dictionary|1
+(noun)|MRD|electronic dictionary|lexical database (generic term)
+machine rifle|1
+(noun)|automatic rifle|automatic|automatic firearm (generic term)|machine gun (generic term)
+machine screw|1
+(noun)|screw (generic term)
+machine shop|1
+(noun)|workshop (generic term)|shop (generic term)
+machine stitch|1
+(noun)|sewing-machine stitch|stitch (generic term)
+machine tool|1
+(noun)|machine (generic term)
+machine translation|1
+(noun)|MT|artificial intelligence (generic term)|AI (generic term)|computational linguistics (generic term)
+machine wash|1
+(verb)|machine-wash|wash (generic term)|launder (generic term)|handwash (antonym)
+machinelike|1
+(adj)|automatic|automatonlike|robotlike|mechanical (similar term)
+machinery|2
+(noun)|machine (generic term)
+(noun)|system (generic term)|scheme (generic term)
+machinist|1
+(noun)|mechanic|shop mechanic|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+machinist's vise|1
+(noun)|metalworking vise|vise (generic term)|bench vise (generic term)
+machismo|1
+(noun)|masculinity (generic term)
+machmeter|1
+(noun)|speedometer (generic term)|speed indicator (generic term)
+macho|2
+(adj)|butch|masculine (similar term)
+(noun)|male (generic term)|male person (generic term)
+macho-man|1
+(noun)|stud|he-man|man (generic term)|adult male (generic term)
+machu picchu|1
+(noun)|Machu Picchu|fortress (generic term)|fort (generic term)
+machupo virus|1
+(noun)|Machupo virus|arenavirus (generic term)
+macintosh|2
+(noun)|mackintosh|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|mackintosh|mac|mack|raincoat (generic term)|waterproof (generic term)
+mack|1
+(noun)|macintosh|mackintosh|mac|raincoat (generic term)|waterproof (generic term)
+mack sennett|1
+(noun)|Sennett|Mack Sennett|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+mackem|1
+(noun)|Mackem|English person (generic term)
+mackenzie|2
+(noun)|Mackenzie|Sir Alexander Mackenzie|explorer (generic term)|adventurer (generic term)
+(noun)|Mackenzie|Mackenzie River|river (generic term)
+mackenzie river|1
+(noun)|Mackenzie|Mackenzie River|river (generic term)
+mackerel|2
+(noun)|saltwater fish (generic term)
+(noun)|scombroid (generic term)|scombroid fish (generic term)
+mackerel scad|1
+(noun)|mackerel shad|Decapterus macarellus|scad (generic term)
+mackerel shad|1
+(noun)|mackerel scad|Decapterus macarellus|scad (generic term)
+mackerel shark|1
+(noun)|shark (generic term)
+mackerel sky|1
+(noun)|sky (generic term)
+mackinac bridge|1
+(noun)|Mackinac Bridge|suspension bridge (generic term)
+mackinaw|4
+(noun)|Mackinaw coat|coat (generic term)
+(noun)|Mackinaw blanket|blanket (generic term)|cover (generic term)
+(noun)|Mackinaw boat|boat (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+mackinaw blanket|1
+(noun)|mackinaw|Mackinaw blanket|blanket (generic term)|cover (generic term)
+mackinaw boat|1
+(noun)|mackinaw|Mackinaw boat|boat (generic term)
+mackinaw coat|1
+(noun)|mackinaw|Mackinaw coat|coat (generic term)
+mackintosh|2
+(noun)|macintosh|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|macintosh|mac|mack|raincoat (generic term)|waterproof (generic term)
+mackle|1
+(noun)|impression (generic term)|printing (generic term)
+macleaya|1
+(noun)|Macleaya|genus Macleaya|dilleniid dicot genus (generic term)
+macleaya cordata|1
+(noun)|plume poppy|bocconia|Macleaya cordata|poppy (generic term)
+macleish|1
+(noun)|MacLeish|Archibald MacLeish|poet (generic term)
+macleod|1
+(noun)|Macleod|John Macleod|John James Rickard Macleod|physiologist (generic term)
+maclura|1
+(noun)|Maclura|genus Maclura|dicot genus (generic term)|magnoliopsid genus (generic term)
+maclura pomifera|1
+(noun)|osage orange|bow wood|mock orange|Maclura pomifera|angiospermous yellowwood (generic term)
+macon|2
+(noun)|Macon|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|maconnais|wine (generic term)|vino (generic term)
+maconnais|1
+(noun)|macon|wine (generic term)|vino (generic term)
+macoun|1
+(noun)|Macoun|McIntosh (generic term)
+macowanites|1
+(noun)|Macowanites|genus Macowanites|fungus genus (generic term)
+macowanites americanus|1
+(noun)|Macowanites americanus|fungus (generic term)
+macrame|2
+(noun)|lace (generic term)
+(verb)|knot (generic term)
+macrencephalic|1
+(adj)|macrencephalous|abnormality|abnormalcy|abnormal condition (related term)
+macrencephalous|1
+(adj)|macrencephalic|abnormality|abnormalcy|abnormal condition (related term)
+macrencephaly|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+macro|2
+(adj)|large (similar term)|big (similar term)
+(noun)|macro instruction|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+macro instruction|1
+(noun)|macro|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+macrobiotic|1
+(adj)|dietetics (related term)
+macrobiotic diet|1
+(noun)|vegetarianism (generic term)
+macrobiotics|1
+(noun)|dietetics (generic term)
+macrocephalic|1
+(adj)|macrocephalous|abnormality|abnormalcy|abnormal condition (related term)
+macrocephalon|1
+(noun)|Macrocephalon|genus Macrocephalon|bird genus (generic term)
+macrocephalon maleo|1
+(noun)|maleo|Macrocephalon maleo|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+macrocephalous|1
+(adj)|macrocephalic|abnormality|abnormalcy|abnormal condition (related term)
+macrocephaly|1
+(noun)|megacephaly|megalocephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+macrocheira|1
+(noun)|Macrocheira|genus Macrocheira|arthropod genus (generic term)
+macrocheira kaempferi|1
+(noun)|giant crab|Macrocheira kaempferi|spider crab (generic term)
+macroclemys|1
+(noun)|Macroclemys|genus Macroclemys|reptile genus (generic term)
+macroclemys temmincki|1
+(noun)|alligator snapping turtle|alligator snapper|Macroclemys temmincki|snapping turtle (generic term)
+macrocosm|1
+(noun)|universe|existence|creation|world|cosmos|natural object (generic term)
+macrocosmic|1
+(adj)|natural object (related term)
+macrocyte|1
+(noun)|megalocyte|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+macrocytic anaemia|1
+(noun)|macrocytic anemia|anemia (generic term)|anaemia (generic term)
+macrocytic anemia|1
+(noun)|macrocytic anaemia|anemia (generic term)|anaemia (generic term)
+macrocytosis|1
+(noun)|pathology (generic term)
+macrodactylus|1
+(noun)|Macrodactylus|genus Macrodactylus|arthropod genus (generic term)
+macrodactylus subspinosus|1
+(noun)|rose chafer|rose bug|Macrodactylus subspinosus|melolonthid beetle (generic term)
+macrodantin|1
+(noun)|nitrofurantoin|Macrodantin|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+macroeconomic|1
+(adj)|economics|economic science|political economy (related term)
+macroeconomic expert|1
+(noun)|macroeconomist|economist (generic term)|economic expert (generic term)
+macroeconomics|1
+(noun)|economics (generic term)|economic science (generic term)|political economy (generic term)
+macroeconomist|1
+(noun)|macroeconomic expert|economist (generic term)|economic expert (generic term)
+macroevolution|1
+(noun)|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+macroglia|1
+(noun)|astroglia|neuroglia (generic term)|glia (generic term)
+macroglossia|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+macromolecular|1
+(adj)|molecule|organic compound (related term)
+macromolecule|1
+(noun)|supermolecule|molecule (generic term)|organic compound (generic term)
+macron|1
+(noun)|diacritical mark (generic term)|diacritic (generic term)
+macronectes|1
+(noun)|Macronectes|genus Macronectes|bird genus (generic term)
+macronectes giganteus|1
+(noun)|giant petrel|giant fulmar|Macronectes giganteus|petrel (generic term)
+macrophage|1
+(noun)|phagocyte (generic term)|scavenger cell (generic term)
+macropodidae|1
+(noun)|Macropodidae|family Macropodidae|mammal family (generic term)
+macropus|1
+(noun)|Macropus|genus Macropus|mammal genus (generic term)
+macropus agiles|1
+(noun)|common wallaby|Macropus agiles|wallaby (generic term)|brush kangaroo (generic term)
+macropus giganteus|1
+(noun)|giant kangaroo|great grey kangaroo|Macropus giganteus|kangaroo (generic term)
+macrorhamphosidae|1
+(noun)|Macrorhamphosidae|family Macrorhamphosidae|fish family (generic term)
+macroscopic|1
+(adj)|macroscopical|megascopic (similar term)|gross (similar term)|small (related term)|little (related term)|microscopic (antonym)
+macroscopic anatomy|1
+(noun)|gross anatomy|anatomy (generic term)|general anatomy (generic term)
+macroscopical|1
+(adj)|macroscopic|megascopic (similar term)|gross (similar term)|small (related term)|little (related term)|microscopic (antonym)
+macrosporangium|1
+(noun)|megasporangium|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+macrospore|1
+(noun)|megaspore|spore (generic term)
+macrothelypteris|1
+(noun)|Macrothelypteris|genus Macrothelypteris|fern genus (generic term)
+macrotis|1
+(noun)|Macrotis|genus Macrotis|mammal genus (generic term)
+macrotis lagotis|1
+(noun)|rabbit-eared bandicoot|rabbit bandicoot|bilby|Macrotis lagotis|bandicoot (generic term)
+macrotus|1
+(noun)|Macrotus californicus|leafnose bat (generic term)|leaf-nosed bat (generic term)
+macrotus californicus|1
+(noun)|macrotus|Macrotus californicus|leafnose bat (generic term)|leaf-nosed bat (generic term)
+macrotyloma|1
+(noun)|Macrotyloma|genus Macrotyloma|rosid dicot genus (generic term)
+macrotyloma uniflorum|1
+(noun)|horse gram|horse grain|poor man's pulse|Macrotyloma uniflorum|Dolichos biflorus|legume (generic term)|leguminous plant (generic term)
+macrouridae|1
+(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family (generic term)
+macrozamia|1
+(noun)|cycad (generic term)
+macrozamia communis|1
+(noun)|burrawong|Macrozamia communis|Macrozamia spiralis|cycad (generic term)
+macrozamia spiralis|1
+(noun)|burrawong|Macrozamia communis|Macrozamia spiralis|cycad (generic term)
+macrozoarces|1
+(noun)|Macrozoarces|genus Macrozoarces|fish genus (generic term)
+macrozoarces americanus|1
+(noun)|ocean pout|Macrozoarces americanus|eelpout (generic term)|pout (generic term)
+macruridae|1
+(noun)|Macrouridae|family Macrouridae|Macruridae|family Macruridae|fish family (generic term)
+macula|3
+(noun)|sunspot|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|macula lutea|macular area|yellow spot|area (generic term)|region (generic term)
+(noun)|macule|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+macula lutea|1
+(noun)|macula|macular area|yellow spot|area (generic term)|region (generic term)
+macular area|1
+(noun)|macula|macula lutea|yellow spot|area (generic term)|region (generic term)
+macular degeneration|1
+(noun)|degeneration (generic term)|devolution (generic term)
+maculate|4
+(adj)|defiled|impure (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(verb)|tarnish|stain|sully|defile|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+(verb)|foul|befoul|defile|dishonor (generic term)|disgrace (generic term)|dishonour (generic term)|attaint (generic term)|shame (generic term)
+maculation|2
+(noun)|spot|speckle|dapple|patch|fleck|marking (generic term)
+(noun)|staining|spotting|soiling (generic term)|soilure (generic term)|dirtying (generic term)
+macule|1
+(noun)|macula|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+macumba|2
+(noun)|popular music (generic term)|popular music genre (generic term)
+(noun)|cult (generic term)|cultus (generic term)|religious cult (generic term)
+macushla|1
+(noun)|darling (generic term)|favorite (generic term)|favourite (generic term)|pet (generic term)|dearie (generic term)|deary (generic term)|ducky (generic term)
+mad|4
+(adj)|huffy|sore|angry (similar term)
+(adj)|brainsick|crazy|demented|distracted|disturbed|sick|unbalanced|unhinged|insane (similar term)
+(adj)|delirious|excited|frantic|unrestrained|wild (similar term)
+(adj)|harebrained|insane|foolish (similar term)
+mad-dog skullcap|1
+(noun)|blue pimpernel|blue skullcap|mad-dog weed|Scutellaria lateriflora|herb (generic term)|herbaceous plant (generic term)
+mad-dog weed|1
+(noun)|blue pimpernel|blue skullcap|mad-dog skullcap|Scutellaria lateriflora|herb (generic term)|herbaceous plant (generic term)
+mad anthony wayne|1
+(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general (generic term)|full general (generic term)
+mad apple|2
+(noun)|eggplant|aubergine|brinjal|eggplant bush|garden egg|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+(noun)|eggplant|aubergine|solanaceous vegetable (generic term)
+mad cow disease|1
+(noun)|bovine spongiform encephalitis|BSE|animal disease (generic term)
+madagascan|2
+(adj)|Madagascan|African country|African nation (related term)
+(noun)|Madagascan|African (generic term)
+madagascar|2
+(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country (generic term)|African nation (generic term)
+(noun)|Madagascar|island (generic term)
+madagascar cat|1
+(noun)|Madagascar cat|ring-tailed lemur|Lemur catta|lemur (generic term)
+madagascar franc|1
+(noun)|Madagascar franc|franc (generic term)
+madagascar jasmine|1
+(noun)|Madagascar jasmine|waxflower|Stephanotis floribunda|stephanotis (generic term)
+madagascar pepper|1
+(noun)|pepper|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+madagascar periwinkle|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+madagascar plum|1
+(noun)|governor's plum|governor plum|Madagascar plum|ramontchi|batoko palm|Flacourtia indica|shrub (generic term)|bush (generic term)
+madake|1
+(noun)|giant timber bamboo|ku-chiku|Phyllostachys bambusoides|bamboo (generic term)
+madam|2
+(noun)|dame|ma'am|lady|gentlewoman|woman (generic term)|adult female (generic term)
+(noun)|brothel keeper|businesswoman (generic term)
+madame|1
+(noun)|dame (generic term)|madam (generic term)|ma'am (generic term)|lady (generic term)|gentlewoman (generic term)
+madame curie|1
+(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist (generic term)
+madame de maintenon|1
+(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness (generic term)|marquise (generic term)|consort (generic term)
+madame de stael|1
+(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer (generic term)|author (generic term)
+madame tussaud|1
+(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler (generic term)|modeller (generic term)
+madcap|2
+(adj)|hotheaded|impulsive|impetuous|tearaway|brainish|incautious (similar term)
+(noun)|daredevil|hothead|swashbuckler|lunatic|harum-scarum|adventurer (generic term)|venturer (generic term)
+madden|3
+(verb)|craze
+(verb)|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|anger (generic term)
+maddened|1
+(adj)|angered|enraged|furious|infuriated|angry (similar term)
+maddening|1
+(adj)|exasperating|infuriating|vexing|displeasing (similar term)
+madder|2
+(noun)|Rubia tinctorum|madderwort (generic term)|rubiaceous plant (generic term)
+(verb)|redden (generic term)
+madder family|1
+(noun)|Rubiaceae|family Rubiaceae|asterid dicot family (generic term)
+madderwort|1
+(noun)|rubiaceous plant|angiosperm (generic term)|flowering plant (generic term)
+made|3
+(adj)|ready-made (similar term)
+(adj)|unmade (antonym)
+(adj)|successful (similar term)
+made-to-order|2
+(adj)|custom-built|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+(adj)|bespoke|bespoken|tailored|tailor-made|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+made-up|4
+(adj)|fabricated|fancied|fictional|fictitious|invented|unreal (similar term)
+(adj)|paved (similar term)
+(adj)|painted (similar term)
+(adj)|assembled|built|collective (similar term)
+made use of|1
+(adj)|employed|exploited (similar term)
+madeira|3
+(noun)|Madeira|Madeira River|river (generic term)
+(noun)|Madeira|island (generic term)
+(noun)|Madeira|fortified wine (generic term)
+madeira cake|1
+(noun)|Madeira cake|Madeira sponge|sponge cake (generic term)
+madeira islands|1
+(noun)|Madeira Islands|Madeiras|archipelago (generic term)
+madeira river|1
+(noun)|Madeira|Madeira River|river (generic term)
+madeira sponge|1
+(noun)|Madeira cake|Madeira sponge|sponge cake (generic term)
+madeira winter cherry|1
+(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade (generic term)
+madeiras|1
+(noun)|Madeira Islands|Madeiras|archipelago (generic term)
+mademoiselle|1
+(noun)|silver perch|Bairdiella chrysoura|drum (generic term)|drumfish (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+madia|1
+(noun)|Madia|genus Madia|asterid dicot genus (generic term)
+madia elegans|1
+(noun)|common madia|common tarweed|Madia elegans|wildflower (generic term)|wild flower (generic term)
+madia oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+madia oil plant|1
+(noun)|melosa|Chile tarweed|Madia sativa|tarweed (generic term)
+madia sativa|1
+(noun)|melosa|Chile tarweed|madia oil plant|Madia sativa|tarweed (generic term)
+madison|2
+(noun)|Madison|James Madison|President Madison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Madison|capital of Wisconsin|state capital (generic term)
+madly|2
+(adv)|insanely|crazily|dementedly|sanely (antonym)
+(adv)|insanely|deadly|deucedly|devilishly
+madman|1
+(noun)|lunatic|maniac|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+madnep|1
+(noun)|wild parsnip|parsnip (generic term)|Pastinaca sativa (generic term)|weed (generic term)
+madness|5
+(noun)|lunacy|insaneness|insanity (generic term)
+(noun)|rabies|hydrophobia|lyssa|zoonosis (generic term)|zoonotic disease (generic term)
+(noun)|fury|rage|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|folly|foolishness|craziness|stupidity (generic term)
+(noun)|rabidity|rabidness|exuberance (generic term)|enthusiasm (generic term)|ebullience (generic term)
+madonna|2
+(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess (generic term)|mother (generic term)|female parent (generic term)
+(noun)|Madonna|Madonna Louise Ciccone|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+madonna lily|1
+(noun)|Madonna lily|white lily|Annunciation lily|Lent lily|Lilium candidum|lily (generic term)
+madonna louise ciccone|1
+(noun)|Madonna|Madonna Louise Ciccone|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+madoqua|1
+(noun)|Madoqua|genus Madoqua|mammal genus (generic term)
+madras|3
+(noun)|Tamil Nadu|Madras|state (generic term)|province (generic term)
+(noun)|Chennai|Madras|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+madrasa|1
+(noun)|madrasah|religious school (generic term)
+madrasah|1
+(noun)|madrasa|religious school (generic term)
+madreporaria|1
+(noun)|Madreporaria|order Madreporaria|animal order (generic term)
+madrepore|1
+(noun)|stony coral|madriporian coral|coral (generic term)
+madrid|1
+(noun)|Madrid|capital of Spain|Spanish capital|national capital (generic term)
+madrigal|2
+(noun)|partsong (generic term)
+(verb)|sing (generic term)
+madrigalist|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+madrilene|1
+(noun)|consomme (generic term)
+madriporian coral|1
+(noun)|stony coral|madrepore|coral (generic term)
+madrona|1
+(noun)|madrono|manzanita|Arbutus menziesii|arbutus (generic term)
+madrono|1
+(noun)|madrona|manzanita|Arbutus menziesii|arbutus (generic term)
+madwoman|1
+(noun)|lunatic (generic term)|madman (generic term)|maniac (generic term)
+madwort|1
+(noun)|alyssum|crucifer (generic term)|cruciferous plant (generic term)
+mae west|2
+(noun)|West|Mae West|actress (generic term)|comedienne (generic term)
+(noun)|Mae West|air jacket|life jacket (generic term)|life vest (generic term)|cork jacket (generic term)
+maeandra|1
+(noun)|Maeandra|genus Maeandra|coelenterate genus (generic term)
+maelstrom|1
+(noun)|whirlpool|vortex|current (generic term)|stream (generic term)
+maenad|1
+(noun)|woman (generic term)|adult female (generic term)
+maestro|1
+(noun)|master|artist (generic term)|creative person (generic term)
+maeterlinck|1
+(noun)|Maeterlinck|Count Maurice Maeterlinck|dramatist (generic term)|playwright (generic term)
+mafa|1
+(noun)|Matakam|Mafa|Biu-Mandara (generic term)
+maffeo barberini|1
+(noun)|Urban VIII|Maffeo Barberini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+maffia|3
+(noun)|Mafia|Maffia|Cosa Nostra|syndicate (generic term)|crime syndicate (generic term)|mob (generic term)|family (generic term)
+(noun)|Mafia|Maffia|Sicilian Mafia|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+(noun)|mafia|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+mafia|3
+(noun)|Mafia|Maffia|Cosa Nostra|syndicate (generic term)|crime syndicate (generic term)|mob (generic term)|family (generic term)
+(noun)|Mafia|Maffia|Sicilian Mafia|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+(noun)|maffia|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+mafioso|2
+(noun)|Sicilian (generic term)
+(noun)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+mag|1
+(noun)|magazine|press (generic term)|public press (generic term)|publication (generic term)
+mag tape|1
+(noun)|magnetic tape|tape|memory device (generic term)|storage device (generic term)
+magadhan|1
+(noun)|Magadhan|Sanskrit (generic term)|Sanskritic language (generic term)
+magazine|6
+(noun)|mag|press (generic term)|public press (generic term)|publication (generic term)
+(noun)|product (generic term)|production (generic term)
+(noun)|magazine publisher|publisher (generic term)|publishing house (generic term)|publishing firm (generic term)|publishing company (generic term)
+(noun)|cartridge|supply chamber (generic term)
+(noun)|powder store|powder magazine|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+(noun)|cartridge holder|cartridge clip|clip|supply chamber (generic term)
+magazine article|1
+(noun)|article (generic term)
+magazine publisher|1
+(noun)|magazine|publisher (generic term)|publishing house (generic term)|publishing firm (generic term)|publishing company (generic term)
+magazine rack|1
+(noun)|rack (generic term)|stand (generic term)
+magdalen|1
+(noun)|sinner (generic term)|evildoer (generic term)
+magdalena|1
+(noun)|Magdalena|Magdalena River|river (generic term)
+magdalena river|1
+(noun)|Magdalena|Magdalena River|river (generic term)
+magellan|1
+(noun)|Magellan|Ferdinand Magellan|Fernao Magalhaes|navigator (generic term)
+magellanic cloud|1
+(noun)|Magellanic Cloud|galaxy (generic term)|extragalactic nebula (generic term)
+magen david|1
+(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem (generic term)|allegory (generic term)|hexagram (generic term)
+magenta|3
+(adj)|chromatic (similar term)
+(noun)|fuchsia|purplish red (generic term)
+(noun)|Magenta|Battle of Magenta|pitched battle (generic term)
+magenta pink|1
+(adj)|chromatic (similar term)
+maggot|1
+(noun)|grub (generic term)
+maggoty|1
+(adj)|flyblown|stale (similar term)
+magh|1
+(noun)|Magh|Magha|Hindu calendar month (generic term)
+magha|1
+(noun)|Magh|Magha|Hindu calendar month (generic term)
+maghreb|1
+(noun)|Maghreb|Mahgrib|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+magi|1
+(noun)|Wise Men|Magi|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+magic|3
+(adj)|charming|magical|sorcerous|witching|wizard|wizardly|supernatural (similar term)
+(noun)|thaumaturgy|supernaturalism (generic term)
+(noun)|magic trick|conjuring trick|trick|legerdemain|conjuration|thaumaturgy|illusion|deception|performance (generic term)
+magic bullet|1
+(noun)|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+magic eye|1
+(noun)|photoelectric cell|photoconductive cell|photocell|electric eye|transducer (generic term)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+magic lantern|1
+(noun)|slide projector (generic term)
+magic marker|1
+(noun)|felt-tip pen|felt-tipped pen|felt tip|Magic Marker|pen (generic term)
+magic mushroom|1
+(noun)|mescal button|sacred mushroom|plant organ (generic term)
+magic number|1
+(noun)|atomic number (generic term)
+magic realism|1
+(noun)|genre (generic term)
+magic spell|1
+(noun)|spell|magical spell|charm|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+magic square|1
+(noun)|square matrix (generic term)
+magic trick|1
+(noun)|conjuring trick|trick|magic|legerdemain|conjuration|thaumaturgy|illusion|deception|performance (generic term)
+magical|1
+(adj)|charming|magic|sorcerous|witching|wizard|wizardly|supernatural (similar term)
+magical ability|1
+(noun)|magical power|ability (generic term)
+magical power|1
+(noun)|magical ability|ability (generic term)
+magical spell|1
+(noun)|spell|magic spell|charm|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+magically|1
+(adv)|as if by magic
+magician|2
+(noun)|prestidigitator|conjurer|conjuror|illusionist|performer (generic term)|performing artist (generic term)
+(noun)|sorcerer|wizard|necromancer|thaumaturge|thaumaturgist|occultist (generic term)
+magicicada|1
+(noun)|Magicicada|genus Magicicada|arthropod genus (generic term)
+magicicada septendecim|1
+(noun)|seventeen-year locust|periodical cicada|Magicicada septendecim|cicada (generic term)|cicala (generic term)
+maginot|1
+(noun)|Maginot|Andre Maginot|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+maginot line|1
+(noun)|Maginot Line|fortification (generic term)|munition (generic term)
+magisterial|3
+(adj)|official|functionary|adjudicator (related term)
+(adj)|autocratic|bossy|dominating|high-and-mighty|peremptory|domineering (similar term)
+(adj)|distinguished|grand|imposing|dignified (similar term)
+magisterially|2
+(adv)|dictatorially|autocratically
+(adv)|authoritatively
+magistracy|1
+(noun)|magistrature|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+magistrate|1
+(noun)|judge|justice|jurist|official (generic term)|functionary (generic term)|adjudicator (generic term)
+magistrature|1
+(noun)|magistracy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+maglev|1
+(noun)|magnetic levitation|rail technology (generic term)|railroading (generic term)
+magma|1
+(noun)|rock (generic term)|stone (generic term)
+magna carta|1
+(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter (generic term)
+magna charta|1
+(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter (generic term)
+magna cum laude|1
+(adj)|worthy (similar term)
+magna mater|1
+(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity (generic term)
+magnanimity|1
+(noun)|munificence|largess|largesse|openhandedness|liberality (generic term)|liberalness (generic term)
+magnanimous|2
+(adj)|greathearted|noble (similar term)
+(adj)|big|large|generous (similar term)
+magnanimousness|1
+(noun)|nobility|nobleness|grandeur|honorableness (generic term)|honourableness (generic term)
+magnate|1
+(noun)|baron|big businessman|business leader|king|mogul|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+magnesia|1
+(noun)|periclase|magnesium oxide|mineral (generic term)
+magnesite|1
+(noun)|mineral (generic term)
+magnesium|1
+(noun)|Mg|atomic number 12|metallic element (generic term)|metal (generic term)
+magnesium bicarbonate|1
+(noun)|bicarbonate (generic term)|hydrogen carbonate (generic term)
+magnesium carbonate|1
+(noun)|carbonate (generic term)
+magnesium hydroxide|1
+(noun)|hydroxide (generic term)|hydrated oxide (generic term)
+magnesium nitride|1
+(noun)|nitride (generic term)
+magnesium oxide|1
+(noun)|periclase|magnesia|mineral (generic term)
+magnesium sulfate|1
+(noun)|sulfate (generic term)|sulphate (generic term)
+magnet|2
+(noun)|device (generic term)
+(noun)|attraction|attractor|attracter|attractive feature|feature (generic term)|characteristic (generic term)
+magnetic|6
+(adj)|attraction|attractive force (related term)
+(adj)|magnetized|magnetised|attractable (similar term)|antimagnetic (antonym)
+(adj)|nonmagnetic (antonym)
+(adj)|geographic (antonym)
+(adj)|attractive|repulsive (antonym)
+(adj)|charismatic|attractive (similar term)
+magnetic attraction|1
+(noun)|magnetism|magnetic force|attraction (generic term)|attractive force (generic term)
+magnetic bottle|1
+(noun)|container (generic term)
+magnetic bubble memory|1
+(noun)|non-volatile storage (generic term)|nonvolatile storage (generic term)
+magnetic compass|1
+(noun)|compass (generic term)
+magnetic core|1
+(noun)|core (generic term)
+magnetic declination|1
+(noun)|magnetic variation|variation|angle (generic term)
+magnetic dip|1
+(noun)|dip|angle of dip|magnetic inclination|inclination|angle (generic term)
+magnetic dipole|1
+(noun)|dipole (generic term)
+magnetic dipole moment|1
+(noun)|dipole moment (generic term)
+magnetic disc|1
+(noun)|magnetic disk|disk|disc|memory device (generic term)|storage device (generic term)
+magnetic disk|1
+(noun)|magnetic disc|disk|disc|memory device (generic term)|storage device (generic term)
+magnetic equator|1
+(noun)|aclinic line|line (generic term)
+magnetic field|1
+(noun)|magnetic flux|flux|field (generic term)|field of force (generic term)|force field (generic term)
+magnetic field strength|1
+(noun)|magnetic intensity|magnetic induction|magnetic flux density|field strength (generic term)|field intensity (generic term)
+magnetic flux|2
+(noun)|magnetization (generic term)|magnetisation (generic term)
+(noun)|magnetic field|flux|field (generic term)|field of force (generic term)|force field (generic term)
+magnetic flux density|1
+(noun)|magnetic field strength|magnetic intensity|magnetic induction|field strength (generic term)|field intensity (generic term)
+magnetic flux unit|1
+(noun)|flux unit|magnetic flux (generic term)
+magnetic force|1
+(noun)|magnetism|magnetic attraction|attraction (generic term)|attractive force (generic term)
+magnetic head|1
+(noun)|electromagnet (generic term)
+magnetic inclination|1
+(noun)|dip|angle of dip|magnetic dip|inclination|angle (generic term)
+magnetic induction|2
+(noun)|magnetization|magnetisation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|magnetic field strength|magnetic intensity|magnetic flux density|field strength (generic term)|field intensity (generic term)
+magnetic ink|1
+(noun)|ink (generic term)
+magnetic intensity|1
+(noun)|magnetic field strength|magnetic induction|magnetic flux density|field strength (generic term)|field intensity (generic term)
+magnetic iron-ore|1
+(noun)|magnetite|iron ore (generic term)
+magnetic levitation|1
+(noun)|maglev|rail technology (generic term)|railroading (generic term)
+magnetic line of force|1
+(noun)|line of force (generic term)|field line (generic term)
+magnetic medium|1
+(noun)|magnetic storage medium|magnetic storage|storage medium (generic term)|data-storage medium (generic term)
+magnetic meridian|1
+(noun)|meridian (generic term)|line of longitude (generic term)
+magnetic mine|1
+(noun)|floating mine (generic term)|marine mine (generic term)
+magnetic moment|1
+(noun)|moment of a magnet|torsion (generic term)|torque (generic term)
+magnetic monopole|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+magnetic needle|1
+(noun)|magnet (generic term)
+magnetic north|1
+(noun)|north|compass north|direction (generic term)
+magnetic pole|2
+(noun)|geographic point (generic term)|geographical point (generic term)
+(noun)|pole|end (generic term)
+magnetic pyrites|1
+(noun)|pyrrhotite|pyrrhotine|mineral (generic term)
+magnetic recorder|1
+(noun)|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+magnetic resonance|1
+(noun)|resonance (generic term)
+magnetic resonance imaging|1
+(noun)|MRI|imaging (generic term)|tomography (generic term)
+magnetic storage|1
+(noun)|magnetic storage medium|magnetic medium|storage medium (generic term)|data-storage medium (generic term)
+magnetic storage medium|1
+(noun)|magnetic medium|magnetic storage|storage medium (generic term)|data-storage medium (generic term)
+magnetic storm|1
+(noun)|perturbation (generic term)|disturbance (generic term)
+magnetic stripe|1
+(noun)|magnetic tape (generic term)|mag tape (generic term)|tape (generic term)
+magnetic tape|1
+(noun)|mag tape|tape|memory device (generic term)|storage device (generic term)
+magnetic variation|1
+(noun)|magnetic declination|variation|angle (generic term)
+magnetics|1
+(noun)|magnetism|geophysics (generic term)|geophysical science (generic term)
+magnetisation|3
+(noun)|magnetization|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|magnetization|magnetic induction|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|magnetization|physical property (generic term)
+magnetise|2
+(verb)|magnetize|mesmerize|mesmerise|bewitch|spellbind|charm (generic term)|influence (generic term)|tempt (generic term)
+(verb)|magnetize|change (generic term)|alter (generic term)|modify (generic term)|demagnetise (antonym)|demagnetize (antonym)
+magnetised|1
+(adj)|magnetic|magnetized|attractable (similar term)|antimagnetic (antonym)
+magnetism|2
+(noun)|magnetic attraction|magnetic force|attraction (generic term)|attractive force (generic term)
+(noun)|magnetics|geophysics (generic term)|geophysical science (generic term)
+magnetite|1
+(noun)|magnetic iron-ore|iron ore (generic term)
+magnetization|3
+(noun)|magnetisation|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|magnetisation|magnetic induction|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|magnetisation|physical property (generic term)
+magnetize|2
+(verb)|magnetise|change (generic term)|alter (generic term)|modify (generic term)|demagnetise (antonym)|demagnetize (antonym)
+(verb)|mesmerize|mesmerise|magnetise|bewitch|spellbind|charm (generic term)|influence (generic term)|tempt (generic term)
+magnetized|1
+(adj)|magnetic|magnetised|attractable (similar term)|antimagnetic (antonym)
+magneto|1
+(noun)|magnetoelectric machine|generator (generic term)
+magnetoelectric machine|1
+(noun)|magneto|generator (generic term)
+magnetograph|1
+(noun)|scientific instrument (generic term)
+magnetohydrodynamics|1
+(noun)|hydrodynamics (generic term)|hydrokinetics (generic term)
+magnetometer|1
+(noun)|gaussmeter|meter (generic term)
+magnetomotive force|1
+(noun)|force (generic term)
+magnetomotive force unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+magneton|1
+(noun)|magnetomotive force unit (generic term)
+magnetosphere|1
+(noun)|magnetic field (generic term)|magnetic flux (generic term)|flux (generic term)
+magnetron|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+magnificat|1
+(noun)|Magnificat|canticle (generic term)
+magnification|4
+(noun)|expansion (generic term)|enlargement (generic term)
+(noun)|ratio (generic term)
+(noun)|exaggeration|overstatement|misrepresentation (generic term)|deceit (generic term)|deception (generic term)|understatement (antonym)
+(noun)|enlargement|blowup|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+magnificence|2
+(noun)|impressiveness|grandness|richness|excellence (generic term)
+(noun)|brilliance|splendor|splendour|grandeur|grandness|elegance (generic term)
+magnificent|1
+(adj)|brilliant|glorious|splendid|impressive (similar term)
+magnificently|2
+(adv)|splendidly|famously
+(adv)|gorgeously|splendidly|resplendently
+magnificio|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+magnified|1
+(adj)|exaggerated|enlarged|increased (similar term)
+magnifier|1
+(noun)|scientific instrument (generic term)
+magnify|3
+(verb)|amplify|enlarge (generic term)
+(verb)|overstate|exaggerate|overdraw|hyperbolize|hyerbolise|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+(verb)|blow up|enlarge|increase (generic term)|reduce (antonym)
+magnifying glass|1
+(noun)|hand glass|simple microscope|light microscope (generic term)
+magniloquence|1
+(noun)|grandiosity|ornateness|grandiloquence|rhetoric|expressive style (generic term)|style (generic term)
+magniloquent|1
+(adj)|grandiloquent|tall|rhetorical (similar term)
+magniloquently|1
+(adv)|grandiloquently
+magnitude|3
+(noun)|property (generic term)
+(noun)|order of magnitude|ratio (generic term)
+(noun)|importance (generic term)
+magnitude relation|1
+(noun)|quantitative relation|relation (generic term)
+magnolia|2
+(noun)|bark (generic term)
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+magnolia acuminata|1
+(noun)|cucumber tree|Magnolia acuminata|magnolia (generic term)
+magnolia family|1
+(noun)|Magnoliaceae|family Magnoliaceae|magnoliid dicot family (generic term)
+magnolia fraseri|1
+(noun)|earleaved umbrella tree|Magnolia fraseri|magnolia (generic term)
+magnolia grandiflora|1
+(noun)|southern magnolia|evergreen magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia (generic term)
+magnolia macrophylla|1
+(noun)|large-leaved magnolia|large-leaved cucumber tree|great-leaved macrophylla|Magnolia macrophylla|magnolia (generic term)
+magnolia soulangiana|1
+(noun)|saucer magnolia|Chinese magnolia|Magnolia soulangiana|magnolia (generic term)
+magnolia state|1
+(noun)|Mississippi|Magnolia State|MS|American state (generic term)
+magnolia stellata|1
+(noun)|star magnolia|Magnolia stellata|magnolia (generic term)
+magnolia tripetala|1
+(noun)|umbrella tree|umbrella magnolia|elkwood|elk-wood|Magnolia tripetala|magnolia (generic term)
+magnolia virginiana|1
+(noun)|sweet bay|swamp bay|swamp laurel|Magnolia virginiana|magnolia (generic term)
+magnoliaceae|1
+(noun)|Magnoliaceae|family Magnoliaceae|magnolia family|magnoliid dicot family (generic term)
+magnoliid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+magnoliid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+magnoliidae|1
+(noun)|Magnoliidae|subclass Magnoliidae|ranalian complex|class (generic term)
+magnoliophyta|1
+(noun)|Angiospermae|class Angiospermae|Magnoliophyta|division Magnoliophyta|Anthophyta|division Anthophyta|class (generic term)
+magnoliopsid|1
+(noun)|dicot|dicotyledon|exogen|angiosperm (generic term)|flowering plant (generic term)
+magnoliopsid family|1
+(noun)|dicot family|family (generic term)
+magnoliopsid genus|1
+(noun)|dicot genus|genus (generic term)
+magnoliopsida|1
+(noun)|Dicotyledones|class Dicotyledones|Dicotyledonae|class Dicotyledonae|Magnoliopsida|class Magnoliopsida|class (generic term)
+magnum|1
+(noun)|wine bottle (generic term)
+magnum opus|1
+(noun)|work of art (generic term)
+magnus hitch|1
+(noun)|rolling hitch (generic term)
+magpie|3
+(noun)|corvine bird (generic term)
+(noun)|scavenger|pack rat|hoarder (generic term)
+(noun)|chatterer|babbler|prater|chatterbox|spouter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+magritte|1
+(noun)|Magritte|Rene Magritte|painter (generic term)
+maguey|2
+(noun)|Agave atrovirens|agave (generic term)|century plant (generic term)|American aloe (generic term)
+(noun)|cantala|Agave cantala|agave (generic term)|century plant (generic term)|American aloe (generic term)
+magus|2
+(noun)|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+(noun)|priest (generic term)|non-Christian priest (generic term)
+magyar|3
+(adj)|Hungarian|Magyar|European country|European nation (related term)
+(noun)|Hungarian|Magyar|European (generic term)
+(noun)|Hungarian|Magyar|Ugric (generic term)|Ugrian (generic term)
+magyarorszag|1
+(noun)|Hungary|Republic of Hungary|Magyarorszag|European country (generic term)|European nation (generic term)
+mah-jongg|1
+(noun)|Mah-Jongg|mahjong|board game (generic term)
+maha|1
+(noun)|Omaha|Maha|Dhegiha (generic term)
+mahabharata|1
+(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mahabharatam|1
+(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mahabharatum|1
+(noun)|Mahabharata|Mahabharatam|Mahabharatum|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mahagua|2
+(noun)|mahoe|majagua|balibago|purau|Hibiscus tiliaceus|hibiscus (generic term)
+(noun)|Cuban bast|blue mahoe|mahoe|majagua|Hibiscus elatus|hibiscus (generic term)
+mahalia jackson|1
+(noun)|Jackson|Mahalia Jackson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+mahan|1
+(noun)|Mahan|Alfred Thayer Mahan|naval officer (generic term)|historian (generic term)|historiographer (generic term)
+maharaja|1
+(noun)|maharajah|prince (generic term)
+maharajah|1
+(noun)|maharaja|prince (generic term)
+maharanee|1
+(noun)|maharani|princess (generic term)
+maharani|1
+(noun)|maharanee|princess (generic term)
+maharashtra|1
+(noun)|Maharashtra|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mahatma|1
+(noun)|sage (generic term)
+mahatma gandhi|1
+(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader (generic term)|spiritual leader (generic term)
+mahayana|2
+(noun)|Mahayana|Buddhism (generic term)
+(noun)|Mahayana|Mahayana Buddhism|Buddhism (generic term)
+mahayana buddhism|1
+(noun)|Mahayana|Mahayana Buddhism|Buddhism (generic term)
+mahayanism|1
+(noun)|Mahayanism|theological doctrine (generic term)
+mahayanist|1
+(noun)|Mahayanist|disciple (generic term)|adherent (generic term)
+mahdi|1
+(noun)|Mahdi|religious leader (generic term)
+mahdism|1
+(noun)|Mahdism|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+mahdist|1
+(noun)|Mahdist|disciple (generic term)|adherent (generic term)
+mahernia verticillata|1
+(noun)|honey bell|honeybells|Hermannia verticillata|Mahernia verticillata|shrub (generic term)|bush (generic term)
+mahgrib|1
+(noun)|Maghreb|Mahgrib|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mahican|2
+(noun)|Mohican|Mahican|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Mohican|Mahican|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+mahimahi|2
+(noun)|dolphinfish|saltwater fish (generic term)
+(noun)|dolphinfish|dolphin|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+mahjong|1
+(noun)|Mah-Jongg|board game (generic term)
+mahler|1
+(noun)|Mahler|Gustav Mahler|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+mahlstick|1
+(noun)|maulstick|stick (generic term)
+mahoe|2
+(noun)|majagua|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus (generic term)
+(noun)|Cuban bast|blue mahoe|majagua|mahagua|Hibiscus elatus|hibiscus (generic term)
+mahogany|2
+(noun)|wood (generic term)
+(noun)|mahogany tree|tree (generic term)
+mahogany-red|1
+(adj)|red-brown|reddish-brown|chromatic (similar term)
+mahogany family|1
+(noun)|Meliaceae|family Meliaceae|rosid dicot family (generic term)
+mahogany tree|1
+(noun)|mahogany|tree (generic term)
+mahomet|1
+(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet (generic term)
+mahonia|1
+(noun)|Mahonia|genus Mahonia|magnoliid dicot genus (generic term)
+mahonia aquifolium|1
+(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+mahonia nervosa|1
+(noun)|Oregon grape|Mahonia nervosa|shrub (generic term)|bush (generic term)
+mahound|1
+(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet (generic term)
+mahout|1
+(noun)|driver (generic term)
+mahratta|1
+(noun)|Maratha|Mahratta|Indian (generic term)
+mahratti|1
+(noun)|Marathi|Mahratti|Sanskrit (generic term)|Sanskritic language (generic term)
+mahuang|1
+(noun)|Ephedra sinica|ephedra (generic term)|joint fir (generic term)
+maia|1
+(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus (generic term)
+maianthemum|1
+(noun)|Maianthemum|genus Maianthemum|liliid monocot genus (generic term)
+maianthemum bifolium|1
+(noun)|false lily of the valley|Maianthemum bifolium|liliaceous plant (generic term)
+maianthemum canadense|1
+(noun)|false lily of the valley|Maianthemum canadense|liliaceous plant (generic term)
+maid|2
+(noun)|maidservant|housemaid|amah|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+(noun)|maiden|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+maid of honor|1
+(noun)|bridesmaid|attendant (generic term)|attender (generic term)|tender (generic term)|woman (generic term)|adult female (generic term)
+maiden|3
+(adj)|inaugural|initiative|initiatory|first|opening (similar term)
+(noun)|maid|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|maiden over|over (generic term)
+maiden aunt|1
+(noun)|aunt (generic term)|auntie (generic term)|aunty (generic term)
+maiden blue-eyed mary|1
+(noun)|maiden blue-eyed Mary|Collinsia parviflora|wildflower (generic term)|wild flower (generic term)
+maiden flight|1
+(noun)|flight (generic term)|flying (generic term)
+maiden name|1
+(noun)|surname (generic term)|family name (generic term)|cognomen (generic term)|last name (generic term)
+maiden over|1
+(noun)|maiden|over (generic term)
+maiden pink|1
+(noun)|Dianthus deltoides|pink (generic term)|garden pink (generic term)
+maiden voyage|1
+(noun)|ocean trip (generic term)|voyage (generic term)
+maidenhair|1
+(noun)|maidenhair fern|fern (generic term)
+maidenhair berry|1
+(noun)|creeping snowberry|moxie plum|Gaultheria hispidula|shrublet (generic term)
+maidenhair fern|1
+(noun)|maidenhair|fern (generic term)
+maidenhair spleenwort|1
+(noun)|Asplenium trichomanes|spleenwort (generic term)
+maidenhair tree|1
+(noun)|ginkgo|gingko|Ginkgo biloba|gymnospermous tree (generic term)
+maidenhead|1
+(noun)|hymen|virginal membrane|mucous membrane (generic term)|mucosa (generic term)
+maidenhood|1
+(noun)|girlhood|maidhood|childhood (generic term)
+maidenlike|1
+(adj)|maidenly|feminine (similar term)
+maidenliness|1
+(noun)|femininity (generic term)|muliebrity (generic term)
+maidenly|1
+(adj)|maidenlike|feminine (similar term)
+maidhood|1
+(noun)|girlhood|maidenhood|childhood (generic term)
+maidism|1
+(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+maidservant|1
+(noun)|maid|housemaid|amah|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+maidu|2
+(noun)|Maidu|Penutian (generic term)
+(noun)|Pujunan|Maidu|Penutian (generic term)
+maiduguri|1
+(noun)|Maiduguri|Yerwa-Maiduguri|city (generic term)|metropolis (generic term)|urban center (generic term)
+maieutic method|1
+(noun)|Socratic method|teaching method (generic term)|pedagogics (generic term)|pedagogy (generic term)
+maiger|1
+(noun)|maigre|Sciaena aquila|sciaenid fish (generic term)|sciaenid (generic term)
+maigre|1
+(noun)|maiger|Sciaena aquila|sciaenid fish (generic term)|sciaenid (generic term)
+maikoa|1
+(noun)|angel's trumpet|Brugmansia arborea|Datura arborea|shrub (generic term)|bush (generic term)
+mail|7
+(noun)|message (generic term)
+(noun)|mail service|postal service|post|communication (generic term)|communicating (generic term)
+(noun)|conveyance (generic term)|transport (generic term)
+(noun)|post|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|chain mail|ring mail|chain armor|chain armour|ring armor|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+(verb)|get off|send (generic term)|send out (generic term)
+(verb)|post|send|transfer (generic term)
+mail-cheeked|1
+(adj)|armored (similar term)|armoured (similar term)
+mail-clad|1
+(adj)|mailed|armored (similar term)|armoured (similar term)
+mail-order buying|1
+(noun)|catalog buying|buying (generic term)|purchasing (generic term)
+mail boat|1
+(noun)|mailboat|packet|packet boat|boat (generic term)
+mail call|1
+(noun)|roll call (generic term)
+mail car|1
+(noun)|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+mail carrier|1
+(noun)|mailman|postman|letter carrier|carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+mail clerk|1
+(noun)|postal clerk|clerk (generic term)
+mail fraud|1
+(noun)|fraud (generic term)
+mail order|1
+(noun)|order (generic term)|purchase order (generic term)
+mail out|1
+(verb)|send (generic term)|send out (generic term)
+mail pouch|1
+(noun)|mailbag|pouch (generic term)
+mail service|1
+(noun)|mail|postal service|post|communication (generic term)|communicating (generic term)
+mail slot|1
+(noun)|slot (generic term)
+mail train|1
+(noun)|train (generic term)|railroad train (generic term)
+mailbag|2
+(noun)|mail pouch|pouch (generic term)
+(noun)|postbag|bag (generic term)
+mailboat|1
+(noun)|mail boat|packet|packet boat|boat (generic term)
+mailbox|2
+(noun)|letter box|box (generic term)
+(noun)|postbox|letter box|maildrop (generic term)
+maildrop|1
+(noun)|drop (generic term)
+mailed|1
+(adj)|mail-clad|armored (similar term)|armoured (similar term)
+mailer|4
+(noun)|Mailer|Norman Mailer|writer (generic term)|author (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|container (generic term)
+mailing|2
+(noun)|mail (generic term)|post (generic term)
+(noun)|posting|transmission (generic term)|transmittal (generic term)|transmitting (generic term)
+mailing-card|1
+(noun)|postcard|post card|postal card|card (generic term)
+mailing address|1
+(noun)|address (generic term)
+mailing list|1
+(noun)|list (generic term)|listing (generic term)
+maillol|1
+(noun)|Maillol|Aristide Maillol|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+maillot|2
+(noun)|tank suit|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+(noun)|tights (generic term)|leotards (generic term)
+mailman|1
+(noun)|postman|mail carrier|letter carrier|carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+mailsorter|1
+(noun)|sorter (generic term)
+maim|1
+(verb)|injure (generic term)|wound (generic term)
+maimed|3
+(adj)|mutilated|injured (similar term)
+(adj)|mutilated|unfit (similar term)
+(noun)|wounded|people (generic term)
+maimer|1
+(noun)|mutilator|mangler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+maimonides|1
+(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher (generic term)
+main|5
+(adj)|chief|primary|principal|important (similar term)|of import (similar term)
+(adj)|independent|dependent (antonym)
+(adj)|intense (similar term)
+(noun)|briny|body of water (generic term)|water (generic term)
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+main-topmast|1
+(noun)|topmast (generic term)
+main-topsail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+main clause|1
+(noun)|independent clause|clause (generic term)
+main course|2
+(noun)|entree|course (generic term)
+(noun)|mainsail (generic term)
+main deck|1
+(noun)|second deck|deck (generic term)
+main diagonal|1
+(noun)|principal diagonal|diagonal (generic term)
+main drag|1
+(noun)|main street (generic term)|high street (generic term)
+main entry word|1
+(noun)|citation form|entry word|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+main file|1
+(noun)|master file|computer file (generic term)
+main line|1
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+main office|1
+(noun)|headquarters|central office|home office|home base|office (generic term)|business office (generic term)
+main road|1
+(noun)|highway|road (generic term)|route (generic term)
+main rotor|1
+(noun)|rotor (generic term)
+main street|2
+(noun)|high street|street (generic term)
+(noun)|Main Street|town (generic term)
+main yard|1
+(noun)|yard (generic term)
+maine|1
+(noun)|Maine|Pine Tree State|ME|American state (generic term)
+maine lobster|2
+(noun)|American lobster|Northern lobster|Maine lobster|lobster (generic term)
+(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster (generic term)
+mainer|1
+(noun)|Mainer|Down Easter|American (generic term)
+mainframe|2
+(noun)|mainframe computer|digital computer (generic term)
+(noun)|central processing unit|CPU|C.P.U.|central processor|processor|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+mainframe computer|1
+(noun)|mainframe|digital computer (generic term)
+mainland|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+mainland china|1
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+mainline|1
+(verb)|inject (generic term)
+mainly|1
+(adv)|chiefly|principally|primarily|in the main
+mainmast|1
+(noun)|mast (generic term)
+mainsail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+mainsheet|1
+(noun)|sheet|tack|weather sheet|shroud|line (generic term)
+mainspring|1
+(noun)|spring (generic term)
+mainstay|3
+(noun)|pillar|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|anchor|keystone|backbone|linchpin|lynchpin|support (generic term)
+(noun)|forestay (generic term)
+mainstream|1
+(noun)|thought (generic term)
+mainstreamed|1
+(adj)|integrated (similar term)
+maintain|10
+(verb)|keep|hold|hold back (related term)|hold out (related term)|hold over (related term)|hold out (related term)|hold up (related term)|keep in (related term)|keep out (related term)|keep off (related term)|keep up (related term)|keep off (related term)|keep down (related term)|keep apart (related term)|keep up (related term)
+(verb)|conserve|preserve|keep up|keep (generic term)
+(verb)|sustain|keep|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|assert|asseverate|insist (generic term)|take a firm stand (generic term)
+(verb)|wield|exert|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|keep|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|keep|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|defend|affirm (generic term)
+(verb)|uphold|confirm (generic term)|reassert (generic term)
+(verb)|observe|keep
+maintainable|1
+(adj)|reparable (similar term)|rectifiable (similar term)
+maintained|2
+(adj)|kept up|well-kept|preserved (similar term)
+(adj)|retained|preserved (similar term)
+maintainer|1
+(noun)|upholder|sustainer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+maintenance|5
+(noun)|care|upkeep|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(noun)|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+(noun)|alimony|support payment (generic term)
+(noun)|sustenance|sustentation|sustainment|upkeep|support (generic term)
+(noun)|criminal maintenance|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+maintenance man|1
+(noun)|repairman|service man|mender (generic term)|repairer (generic term)|fixer (generic term)
+maintenance staff|1
+(noun)|service staff|staff (generic term)
+maintenon|1
+(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness (generic term)|marquise (generic term)|consort (generic term)
+maiolica|1
+(noun)|majolica|earthenware (generic term)
+maisonette|2
+(noun)|maisonnette|apartment (generic term)|flat (generic term)
+(noun)|maisonnette|house (generic term)
+maisonnette|2
+(noun)|maisonette|apartment (generic term)|flat (generic term)
+(noun)|maisonette|house (generic term)
+maitland|1
+(noun)|Maitland|Frederic William Maitland|historian (generic term)|historiographer (generic term)
+maitre d'|1
+(noun)|captain|headwaiter|maitre d'hotel|dining-room attendant (generic term)|restaurant attendant (generic term)
+maitre d'hotel|1
+(noun)|captain|headwaiter|maitre d'|dining-room attendant (generic term)|restaurant attendant (generic term)
+maitreya|1
+(noun)|Maitreya|Bodhisattva (generic term)|Boddhisatva (generic term)
+maize|2
+(noun)|corn|Indian corn|Zea mays|cereal (generic term)|cereal grass (generic term)
+(noun)|gamboge|lemon|lemon yellow|yellow (generic term)|yellowness (generic term)
+maja|1
+(noun)|Maja|genus Maja|Maia|genus Maia|arthropod genus (generic term)
+maja squinado|1
+(noun)|European spider crab|king crab|Maja squinado|spider crab (generic term)
+majagua|2
+(noun)|mahoe|mahagua|balibago|purau|Hibiscus tiliaceus|hibiscus (generic term)
+(noun)|Cuban bast|blue mahoe|mahoe|mahagua|Hibiscus elatus|hibiscus (generic term)
+majestic|3
+(adj)|olympian|superior (similar term)
+(adj)|gallant|lofty|proud|impressive (similar term)
+(adj)|imperial|purple|regal|royal|noble (similar term)
+majesty|1
+(noun)|stateliness|loftiness|impressiveness (generic term)|grandness (generic term)|magnificence (generic term)|richness (generic term)
+majidae|1
+(noun)|Majidae|family Majidae|arthropod family (generic term)
+majolica|1
+(noun)|maiolica|earthenware (generic term)
+major|9
+(adj)|leading (similar term)|prima (similar term)|star (similar term)|starring (similar term)|stellar (similar term)|minor (antonym)
+(adj)|better (similar term)|minor (antonym)
+(adj)|minor (antonym)
+(adj)|senior (similar term)
+(noun)|commissioned military officer (generic term)
+(noun)|Major|John Major|John R. Major|John Roy Major|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+(verb)|study (generic term)
+major-domo|1
+(noun)|seneschal|servant (generic term)|retainer (generic term)
+major-general|1
+(noun)|general officer (generic term)
+major-league club|1
+(noun)|major-league team|team (generic term)|squad (generic term)
+major-league team|1
+(noun)|major-league club|team (generic term)|squad (generic term)
+major affective disorder|1
+(noun)|affective disorder|emotional disorder|emotional disturbance|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+major axis|1
+(noun)|axis (generic term)
+major depressive episode|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+major diatonic scale|1
+(noun)|major scale|mode (generic term)|musical mode (generic term)
+major fast day|1
+(noun)|fast day (generic term)
+major form class|1
+(noun)|part of speech (generic term)|form class (generic term)|word class (generic term)
+major key|1
+(noun)|major mode|key (generic term)|tonality (generic term)
+major league|1
+(noun)|big league|majors|league (generic term)|conference (generic term)
+major leaguer|1
+(noun)|big leaguer|ballplayer (generic term)|baseball player (generic term)
+major lobe|1
+(noun)|lobe (generic term)
+major mode|1
+(noun)|major key|key (generic term)|tonality (generic term)
+major planet|1
+(noun)|planet|celestial body (generic term)|heavenly body (generic term)
+major power|1
+(noun)|world power|great power|power|superpower|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+major premise|1
+(noun)|major premiss|premise (generic term)|premiss (generic term)|assumption (generic term)
+major premiss|1
+(noun)|major premise|premise (generic term)|premiss (generic term)|assumption (generic term)
+major scale|1
+(noun)|major diatonic scale|mode (generic term)|musical mode (generic term)
+major suit|1
+(noun)|suit (generic term)
+major surgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)|minor surgery (antonym)
+major term|1
+(noun)|term (generic term)
+major tranquilizer|1
+(noun)|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+major tranquilliser|1
+(noun)|major tranquilizer|major tranquillizer|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+major tranquillizer|1
+(noun)|major tranquilizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+majorana|1
+(noun)|Majorana|genus Majorana|asterid dicot genus (generic term)
+majorana hortensis|1
+(noun)|sweet marjoram|knotted marjoram|Origanum majorana|Majorana hortensis|origanum (generic term)
+majorca|1
+(noun)|Majorca|island (generic term)
+majorette|2
+(noun)|drum majorette|baton twirler (generic term)|twirler (generic term)
+(noun)|drum majorette|conductor (generic term)|music director (generic term)|director (generic term)
+majority|3
+(noun)|bulk|number (generic term)|figure (generic term)|minority (antonym)
+(noun)|absolute majority|relative quantity (generic term)
+(noun)|legal age|age (generic term)|eld (generic term)|minority (antonym)
+majority leader|1
+(noun)|legislator (generic term)
+majority operation|1
+(noun)|threshold operation (generic term)
+majority opinion|1
+(noun)|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+majority rule|1
+(noun)|democracy|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+majors|1
+(noun)|major league|big league|league (generic term)|conference (generic term)
+majuscular|1
+(adj)|majuscule (similar term)
+majuscule|3
+(adj)|majuscular (similar term)|uppercase (related term)|minuscule (antonym)
+(adj)|capital|great|uppercase (similar term)
+(noun)|capital|capital letter|uppercase|upper-case letter|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|lowercase (antonym)
+mak|1
+(noun)|Maktab al-Khidmat|MAK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+makaira|1
+(noun)|Makaira|genus Makaira|fish genus (generic term)
+makaira albida|1
+(noun)|white marlin|Makaira albida|marlin (generic term)
+makaira marlina|1
+(noun)|black marlin|Makaira mazara|Makaira marlina|marlin (generic term)
+makaira mazara|1
+(noun)|black marlin|Makaira mazara|Makaira marlina|marlin (generic term)
+makaira mitsukurii|1
+(noun)|striped marlin|Makaira mitsukurii|marlin (generic term)
+makaira nigricans|1
+(noun)|blue marlin|Makaira nigricans|marlin (generic term)
+makalu|1
+(noun)|Makalu|mountain peak (generic term)
+makarios iii|1
+(noun)|Makarios III|ethnarch (generic term)
+makataimeshekiakiak|1
+(noun)|Black Hawk|Makataimeshekiakiak|Indian chief (generic term)|Indian chieftain (generic term)|Sauk (generic term)|Sac (generic term)
+make|48
+(noun)|brand|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|shuffle|shuffling|reordering (generic term)
+(verb)|do
+(verb)|get|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|create|make over (related term)|make up (related term)
+(verb)|induce|stimulate|cause|have|get
+(verb)|cause|do|make (generic term)|create (generic term)
+(verb)|produce|create
+(verb)|draw|create by mental act (generic term)|create mentally (generic term)
+(verb)|cause (generic term)|do (generic term)|make (generic term)
+(verb)|create|make (generic term)|create (generic term)
+(verb)|gain|take in|clear|earn|realize|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|do|create (generic term)|make (generic term)|unmake (antonym)
+(verb)|form|constitute|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|reach|get to|progress to|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|become (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|construct|build|make (generic term)|create (generic term)
+(verb)|name|nominate|appoint (generic term)|charge (generic term)
+(verb)|have|get|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|reach|attain|hit|arrive at|gain
+(verb)|lay down|establish|make (generic term)|create (generic term)
+(verb)|perpetrate (generic term)|commit (generic term)|pull (generic term)
+(verb)|total (generic term)|number (generic term)|add up (generic term)|come (generic term)|amount (generic term)
+(verb)|assemble (generic term)|gather (generic term)|get together (generic term)
+(verb)|hold|throw|have|give|direct (generic term)
+(verb)|cook|fix|ready|prepare|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|make up|tidy (generic term)|tidy up (generic term)|clean up (generic term)|neaten (generic term)|straighten (generic term)|straighten out (generic term)|square away (generic term)
+(verb)|take|head (generic term)
+(verb)|stool|defecate|shit|take a shit|take a crap|ca-ca|crap|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+(verb)|change (generic term)
+(verb)|be (generic term)
+(verb)|amount (generic term)
+(verb)|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|work|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|seduce|score|persuade (generic term)
+(verb)|guarantee (generic term)|ensure (generic term)|insure (generic term)|assure (generic term)|secure (generic term)|break (antonym)
+(verb)|pretend|make believe|act (generic term)|play (generic term)|represent (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|develop (generic term)
+(verb)|develop (generic term)|grow (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+make-believe|3
+(adj)|pretend|unreal (similar term)
+(noun)|pretense|pretence|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|pretend|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+make-do|1
+(noun)|makeshift|stopgap|expedient (generic term)
+make-peace|1
+(noun)|conciliator|pacifier|peacemaker|reconciler|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+make-up|1
+(noun)|makeup|war paint|cosmetic (generic term)
+make-work|1
+(noun)|busywork|work (generic term)
+make a face|1
+(verb)|grimace|pull a face|communicate (generic term)|intercommunicate (generic term)
+make a motion|1
+(verb)|move|propose (generic term)|suggest (generic term)|advise (generic term)
+make a point|1
+(verb)|make sure|act (generic term)|move (generic term)
+make a stink|1
+(verb)|raise hell|object (generic term)
+make as if|1
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+make believe|1
+(verb)|make|pretend|act (generic term)|play (generic term)|represent (generic term)
+make bold|1
+(verb)|dare|presume|act (generic term)|move (generic term)
+make clean|1
+(verb)|clean|change (generic term)|alter (generic term)|modify (generic term)|dirty (antonym)
+make do|1
+(verb)|cope|get by|make out|contend|grapple|deal|manage|act (generic term)|move (generic term)
+make for|1
+(verb)|bring|work|play|wreak|make (generic term)|create (generic term)|bring on (related term)|bring off (related term)|bring up (related term)
+make full|1
+(verb)|fill|fill up|change (generic term)|alter (generic term)|modify (generic term)|fill in (related term)|fill out (related term)|empty (antonym)
+make fun|1
+(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|poke fun|mock (generic term)|bemock (generic term)
+make good|1
+(verb)|observe (generic term)|keep (generic term)
+make grow|1
+(verb)|develop|change (generic term)|alter (generic term)|modify (generic term)
+make happy|1
+(verb)|revel|racket|make whoopie|make merry|whoop it up|jollify|wassail|celebrate (generic term)|fete (generic term)
+make hay|1
+(verb)|exploit (generic term)|work (generic term)
+make headway|1
+(verb)|gain|advance|win|pull ahead|get ahead|gain ground|fall back (antonym)
+make it|3
+(verb)|survive|pull through|pull round|come through|get the better of (generic term)|overcome (generic term)|defeat (generic term)|succumb (antonym)
+(verb)|arrive|get in|go far|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|pass|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+make merry|1
+(verb)|revel|racket|make whoopie|make happy|whoop it up|jollify|wassail|celebrate (generic term)|fete (generic term)
+make no bones about|1
+(verb)|admit (generic term)|acknowledge (generic term)
+make noise|1
+(verb)|resound|noise|sound (generic term)|go (generic term)
+make off|1
+(verb)|abscond|bolt|absquatulate|decamp|run off|go off|flee (generic term)|fly (generic term)|take flight (generic term)
+make out|10
+(verb)|recognize|recognise|distinguish|discern|pick out|tell apart
+(verb)|write out|issue|cut|write (generic term)
+(verb)|understand (generic term)
+(verb)|do|fare|come|get along|proceed (generic term)|go (generic term)
+(verb)|cope|get by|make do|contend|grapple|deal|manage|act (generic term)|move (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|neck|pet (generic term)
+(verb)|complete|fill out|fill in
+(verb)|suggest (generic term)|intimate (generic term)
+(verb)|claim (generic term)
+make over|2
+(verb)|rework|retread|work (generic term)|work on (generic term)|process (generic term)
+(verb)|remake|refashion|redo|produce (generic term)|make (generic term)|create (generic term)
+make pass|1
+(verb)|pass
+make peace|1
+(verb)|reconcile (generic term)|patch up (generic term)|make up (generic term)|conciliate (generic term)|settle (generic term)|war (antonym)
+make possible|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+make pure|1
+(verb)|purify|sublimate|distill|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+make relaxed|1
+(verb)|relax|unstrain|unlax|loosen up|unwind|affect (generic term)|strain (antonym)|tense (antonym)
+make sense|1
+(verb)|add up|be (generic term)
+make sure|1
+(verb)|make a point|act (generic term)|move (generic term)
+make unnecessary|1
+(verb)|save|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+make up|9
+(verb)|constitute|represent|comprise|be
+(verb)|design (generic term)
+(verb)|pay|pay off|compensate|settle (generic term)|pay back (related term)|pay off (related term)
+(verb)|catch up with|recover (generic term)|recoup (generic term)|recuperate (generic term)
+(verb)|fabricate|manufacture|cook up|invent|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+(verb)|make|tidy (generic term)|tidy up (generic term)|clean up (generic term)|neaten (generic term)|straighten (generic term)|straighten out (generic term)|square away (generic term)
+(verb)|compensate|counterbalance|correct|even out|even off|even up|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|reconcile|patch up|conciliate|settle|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+make up one's mind|1
+(verb)|decide|determine
+make vibrant sounds|1
+(verb)|purr|resonate (generic term)|vibrate (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+make way|1
+(verb)|move (generic term)
+make whoopie|1
+(verb)|revel|racket|make merry|make happy|whoop it up|jollify|wassail|celebrate (generic term)|fete (generic term)
+makedonija|1
+(noun)|Macedon|Macedonia|Makedonija|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+makeover|2
+(noun)|beauty treatment (generic term)
+(noun)|reconstruction (generic term)
+maker|3
+(noun)|shaper|creator (generic term)
+(noun)|Godhead|Lord|Creator|Maker|Divine|God Almighty|Almighty|Jehovah|God (generic term)|Supreme Being (generic term)
+(noun)|manufacturer|manufacturing business|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+makeready|1
+(noun)|preparation (generic term)|readying (generic term)
+makeshift|2
+(adj)|improvised|jury-rigged|impermanent (similar term)|temporary (similar term)
+(noun)|stopgap|make-do|expedient (generic term)
+makeup|3
+(noun)|constitution|composition|property (generic term)
+(noun)|make-up|war paint|cosmetic (generic term)
+(noun)|event (generic term)
+makeweight|2
+(noun)|filler|object (generic term)|physical object (generic term)
+(noun)|weight (generic term)
+makin|1
+(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault (generic term)
+making|3
+(noun)|devising|fashioning|production (generic term)
+(noun)|qualification|fitness (generic term)|fittingness (generic term)
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+making known|1
+(noun)|informing|speech act (generic term)
+making love|1
+(noun)|sexual love|lovemaking|love|love life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+making water|1
+(noun)|leak|wetting|passing water|micturition (generic term)|urination (generic term)
+mako|1
+(noun)|mako shark|mackerel shark (generic term)
+mako shark|1
+(noun)|mako|mackerel shark (generic term)
+makomako|1
+(noun)|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub (generic term)|bush (generic term)
+maksim gorky|1
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+maksutov telescope|1
+(noun)|Maksutov telescope|reflecting telescope (generic term)|reflector (generic term)
+maktab al-khidmat|1
+(noun)|Maktab al-Khidmat|MAK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+mal de la rosa|1
+(noun)|pellagra|Alpine scurvy|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+mal de mer|1
+(noun)|seasickness|naupathia|motion sickness (generic term)|kinetosis (generic term)
+mal rosso|1
+(noun)|pellagra|Alpine scurvy|mal de la rosa|maidism|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+malabar kino|1
+(noun)|East India kino|Malabar kino|kino gum|resin (generic term)|rosin (generic term)
+malabo|1
+(noun)|Malabo|national capital (generic term)
+malabsorption|1
+(noun)|assimilation (generic term)|absorption (generic term)
+malabsorption syndrome|1
+(noun)|syndrome (generic term)
+malacanthidae|1
+(noun)|Malacanthidae|family Malacanthidae|fish family (generic term)
+malacca|2
+(noun)|cane (generic term)
+(noun)|malacca cane|cane (generic term)
+malacca cane|1
+(noun)|malacca|cane (generic term)
+malachi|2
+(noun)|Malachi|Malachias|prophet (generic term)
+(noun)|Malachi|Malachias|Book of Malachi|book (generic term)
+malachias|2
+(noun)|Malachi|Malachias|prophet (generic term)
+(noun)|Malachi|Malachias|Book of Malachi|book (generic term)
+malachite|1
+(noun)|mineral (generic term)
+malacia|1
+(noun)|pathology (generic term)
+malaclemys|1
+(noun)|Malaclemys|genus Malaclemys|reptile genus (generic term)
+malaclemys centrata|1
+(noun)|diamondback terrapin|Malaclemys centrata|terrapin (generic term)
+malacologist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+malacology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+malaconotinae|1
+(noun)|Malaconotinae|subfamily Malaconotinae|bird family (generic term)
+malacopterygian|1
+(noun)|soft-finned fish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)|spiny-finned fish (antonym)
+malacopterygii|1
+(noun)|Malacopterygii|superorder Malacopterygii|animal order (generic term)
+malacosoma|1
+(noun)|Malacosoma|genus Malacosoma|arthropod genus (generic term)
+malacosoma americana|1
+(noun)|tent-caterpillar moth|Malacosoma americana|moth (generic term)
+malacosoma disstria|2
+(noun)|forest tent caterpillar|Malacosoma disstria|tent caterpillar (generic term)
+(noun)|tent-caterpillar moth|Malacosoma disstria|lasiocampid (generic term)|lasiocampid moth (generic term)
+malacostraca|1
+(noun)|Malacostraca|subclass Malacostraca|class (generic term)|category (generic term)|family (generic term)
+malacostracan crustacean|1
+(noun)|crustacean (generic term)
+malacothamnus|1
+(noun)|Malacothamnus|genus Malacothamnus|dilleniid dicot genus (generic term)
+malacothamnus fasciculatus|1
+(noun)|chaparral mallow|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow (generic term)
+maladaptive|1
+(adj)|dysfunctional (similar term)|nonadaptive (similar term)|maladjustive (similar term)|adaptive (antonym)
+maladjusted|3
+(adj)|unadapted (similar term)|unadjusted (similar term)|adjusted (antonym)
+(adj)|disturbed|neurotic (similar term)|psychoneurotic (similar term)
+(adj)|unadjusted (similar term)
+maladjustive|1
+(adj)|maladaptive (similar term)
+maladjustment|1
+(noun)|personality disorder (generic term)
+maladroit|1
+(adj)|bumbling (similar term)|bungling (similar term)|butterfingered (similar term)|ham-fisted (similar term)|ham-handed (similar term)|handless (similar term)|heavy-handed (similar term)|left-handed (similar term)|inept (similar term)|tactless (similar term)|uncoordinated (similar term)|unmechanical (similar term)|nonmechanical (similar term)|awkward (related term)|adroit (antonym)
+maladroitly|1
+(adv)|adroitly (antonym)
+maladroitness|1
+(noun)|awkwardness|clumsiness|ineptness|ineptitude|slowness|unskillfulness (generic term)
+malady|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|illness|unwellness|sickness|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|wellness (antonym)|wellness (antonym)
+malaga|1
+(noun)|Malaga|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+malagasy republic|1
+(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country (generic term)|African nation (generic term)
+malahini|1
+(noun)|newcomer (generic term)
+malaise|1
+(noun)|unease|uneasiness|discomfort (generic term)|uncomfortableness (generic term)
+malamud|1
+(noun)|Malamud|Bernard Malamud|writer (generic term)|author (generic term)
+malamute|1
+(noun)|malemute|Alaskan malamute|sled dog (generic term)|sledge dog (generic term)
+malanga|1
+(noun)|yautia|tannia|spoonflower|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+malaprop|1
+(noun)|malapropism|misstatement (generic term)
+malapropism|1
+(noun)|malaprop|misstatement (generic term)
+malapropos|2
+(adj)|inapposite (similar term)|out of place (similar term)|inappropriate (related term)|apropos (antonym)
+(adv)|inopportunely|opportunely (antonym)
+malar|1
+(noun)|cheekbone|zygomatic bone|zygomatic|malar bone|jugal bone|os zygomaticum|bone (generic term)|os (generic term)
+malar bone|1
+(noun)|cheekbone|zygomatic bone|zygomatic|malar|jugal bone|os zygomaticum|bone (generic term)|os (generic term)
+malaria|1
+(noun)|protozoal infection (generic term)
+malaria mosquito|1
+(noun)|malarial mosquito|mosquito (generic term)
+malaria parasite|1
+(noun)|plasmodium|Plasmodium vivax|sporozoan (generic term)
+malarial|1
+(adj)|protozoal infection (related term)
+malarial mosquito|1
+(noun)|malaria mosquito|mosquito (generic term)
+malathion|1
+(noun)|Malathion|insecticide (generic term)|insect powder (generic term)
+malathion poisoning|1
+(noun)|pesticide poisoning (generic term)
+malawi|1
+(noun)|Malawi|Republic of Malawi|Nyasaland|African country (generic term)|African nation (generic term)
+malawi kwacha|1
+(noun)|Malawi kwacha|kwacha|Malawian monetary unit (generic term)
+malawian|2
+(adj)|Malawian|African country|African nation (related term)
+(noun)|Malawian|African (generic term)
+malawian monetary unit|1
+(noun)|Malawian monetary unit|monetary unit (generic term)
+malaxis|1
+(noun)|Malaxis|genus Malaxis|monocot genus (generic term)|liliopsid genus (generic term)
+malaxis-unifolia|1
+(noun)|green adder's mouth|Malaxis-unifolia|Malaxis ophioglossoides|orchid (generic term)|orchidaceous plant (generic term)
+malaxis ophioglossoides|1
+(noun)|green adder's mouth|Malaxis-unifolia|Malaxis ophioglossoides|orchid (generic term)|orchidaceous plant (generic term)
+malay|3
+(adj)|Malay|Malayan|Asian|Asiatic (related term)
+(noun)|Malay|Malayan|Asian (generic term)|Asiatic (generic term)
+(noun)|Malay|Western Malayo-Polynesian (generic term)
+malay archipelago|1
+(noun)|Malay Archipelago|East Indies|East India|archipelago (generic term)
+malay peninsula|1
+(noun)|Malay Peninsula|peninsula (generic term)
+malaya|1
+(noun)|Malaysia|Malaya|Asian country (generic term)|Asian nation (generic term)
+malayalam|1
+(noun)|Malayalam|South Dravidian (generic term)
+malayan|3
+(adj)|Malaysian|Malayan|Asian country|Asian nation (related term)
+(adj)|Malay|Malayan|Asian|Asiatic (related term)
+(noun)|Malay|Malayan|Asian (generic term)|Asiatic (generic term)
+malayan tapir|1
+(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir (generic term)
+malayo-polynesian|2
+(adj)|Malayo-Polynesian|Austronesian|Austronesian language (related term)
+(noun)|Malayo-Polynesian|Polynesian|Austronesian (generic term)|Austronesian language (generic term)
+malaysia|1
+(noun)|Malaysia|Malaya|Asian country (generic term)|Asian nation (generic term)
+malaysia militant group|1
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+malaysian|3
+(adj)|Malaysian|Malayan|Asian country|Asian nation (related term)
+(noun)|Malaysian|Asian (generic term)|Asiatic (generic term)
+(noun)|Malaysian|Bahasa Malaysia|Bahasa Melayu|Bahasa Kebangsaan|Malay (generic term)
+malaysian monetary unit|1
+(noun)|Malaysian monetary unit|monetary unit (generic term)
+malaysian mujahidin group|1
+(noun)|Jemaah Islamiyah|JI|Islamic Group|Islamic Community|Malaysian Mujahidin Group|Malaysia Militant Group|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+malcolm little|1
+(noun)|Malcolm X|Malcolm Little|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)|militant (generic term)|activist (generic term)
+malcolm lowry|1
+(noun)|Lowry|Malcolm Lowry|Clarence Malcolm Lowry|writer (generic term)|author (generic term)
+malcolm stock|1
+(noun)|Malcolm stock|stock|flower (generic term)
+malcolm x|1
+(noun)|Malcolm X|Malcolm Little|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)|militant (generic term)|activist (generic term)
+malcolmia|1
+(noun)|Malcolmia|genus Malcolmia|dilleniid dicot genus (generic term)
+malcolmia maritima|1
+(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower (generic term)
+malcontent|2
+(adj)|disaffected|ill-affected|rebellious|discontented (similar term)|discontent (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+maldivan|1
+(noun)|Maldivian|Maldivan|Asian (generic term)|Asiatic (generic term)
+maldive islands|1
+(noun)|Maldives|Maldive Islands|island (generic term)
+maldives|2
+(noun)|Maldives|Republic of Maldives|country (generic term)|state (generic term)|land (generic term)
+(noun)|Maldives|Maldive Islands|island (generic term)
+maldivian|1
+(noun)|Maldivian|Maldivan|Asian (generic term)|Asiatic (generic term)
+maldon|1
+(noun)|Maldon|Battle of Maldon|pitched battle (generic term)
+male|6
+(adj)|male (similar term)|antheral (similar term)|staminate (similar term)|phallic (similar term)|priapic (similar term)|priapic (similar term)|young-begetting (similar term)|masculine (related term)|female (antonym)|androgynous (antonym)
+(adj)|manful|manlike|manly|virile|masculine (similar term)
+(adj)|male (similar term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)|female (antonym)
+(noun)|male person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|female (antonym)
+(noun)|Male|national capital (generic term)
+male-patterned baldness|1
+(noun)|baldness (generic term)|phalacrosis (generic term)
+male aristocrat|1
+(noun)|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)|female aristocrat (antonym)
+male berry|1
+(noun)|maleberry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub (generic term)|bush (generic term)
+male body|1
+(noun)|human body (generic term)|physical body (generic term)|material body (generic term)|soma (generic term)|build (generic term)|figure (generic term)|physique (generic term)|anatomy (generic term)|shape (generic term)|bod (generic term)|chassis (generic term)|frame (generic term)|form (generic term)|flesh (generic term)
+male bonding|1
+(noun)|bonding (generic term)
+male chauvinism|1
+(noun)|chauvinism|antifeminism|sexism (generic term)
+male chauvinist|1
+(noun)|sexist|antifeminist (generic term)
+male chest|1
+(noun)|thorax (generic term)|chest (generic term)|pectus (generic term)
+male child|1
+(noun)|boy|male (generic term)|male person (generic term)|girl (antonym)|female child (antonym)
+male erecticle dysfunction|1
+(noun)|erectile dysfunction|ED|impotence (generic term)|impotency (generic term)|dysfunction (generic term)|disfunction (generic term)
+male fern|1
+(noun)|Dryopteris filix-mas|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+male genital organ|1
+(noun)|male genitalia|male genitals|family jewels|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+male genitalia|1
+(noun)|male genitals|male genital organ|family jewels|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+male genitals|1
+(noun)|male genitalia|male genital organ|family jewels|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+male horse|1
+(noun)|horse (generic term)|Equus caballus (generic term)|male (generic term)
+male hypogonadism|1
+(noun)|eunuchoidism|hypogonadism (generic term)
+male internal reproductive organ|1
+(noun)|reproductive organ (generic term)|sex organ (generic term)
+male monarch|1
+(noun)|king|Rex|sovereign (generic term)|crowned head (generic term)|monarch (generic term)|female monarch (antonym)|queen (antonym)
+male offspring|1
+(noun)|man-child|child (generic term)|kid (generic term)|male (generic term)|male person (generic term)|female offspring (antonym)
+male orchis|1
+(noun)|early purple orchid|Orchis mascula|orchis (generic term)
+male orgasm|1
+(noun)|orgasm (generic term)|climax (generic term)|sexual climax (generic term)|coming (generic term)
+male parent|1
+(noun)|father|begetter|parent (generic term)|female parent (antonym)|mother (antonym)
+male person|1
+(noun)|male|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|female (antonym)
+male plug|1
+(noun)|plug|electrical device (generic term)
+male reproductive gland|1
+(noun)|reproductive organ (generic term)|sex organ (generic term)
+male reproductive system|1
+(noun)|reproductive system (generic term)|genital system (generic term)
+male sibling|1
+(noun)|kinsman (generic term)|female sibling (antonym)
+maleate|1
+(noun)|ester (generic term)|antidepressant (generic term)|antidepressant drug (generic term)
+maleberry|1
+(noun)|male berry|privet andromeda|he-huckleberry|Lyonia ligustrina|shrub (generic term)|bush (generic term)
+malebranche|1
+(noun)|Malebranche|Nicolas de Malebranche|philosopher (generic term)
+malecite|2
+(noun)|Malecite|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Malecite|Maleseet|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+maledict|2
+(adj)|accursed|accurst|cursed (similar term)|curst (similar term)
+(verb)|curse|beshrew|damn|bedamn|anathemize|anathemise|imprecate|raise (generic term)|conjure (generic term)|conjure up (generic term)|invoke (generic term)|evoke (generic term)|stir (generic term)|call down (generic term)|arouse (generic term)|bring up (generic term)|put forward (generic term)|call forth (generic term)|bless (antonym)
+malediction|1
+(noun)|imprecation|execration (generic term)|condemnation (generic term)|curse (generic term)
+malefactor|1
+(noun)|criminal|felon|crook|outlaw|wrongdoer (generic term)|offender (generic term)
+malefic|1
+(adj)|malevolent|malign|evil|maleficent (similar term)
+maleficence|2
+(noun)|malevolence (generic term)|malignity (generic term)|beneficence (antonym)
+(noun)|mischief|balefulness|evil (generic term)|evilness (generic term)|beneficence (antonym)
+maleficent|1
+(adj)|baleful (similar term)|baneful (similar term)|malefic (similar term)|malevolent (similar term)|malign (similar term)|evil (similar term)|malign (related term)|beneficent (antonym)
+maleic acid|1
+(noun)|acid (generic term)
+malemute|1
+(noun)|malamute|Alaskan malamute|sled dog (generic term)|sledge dog (generic term)
+maleness|1
+(noun)|masculinity|sex (generic term)|gender (generic term)|sexuality (generic term)|femaleness (antonym)
+maleo|1
+(noun)|Macrocephalon maleo|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+maleseet|1
+(noun)|Malecite|Maleseet|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+malevich|1
+(noun)|Malevich|Kazimir Malevich|Kazimir Severinovich Malevich|painter (generic term)
+malevolence|2
+(noun)|malignity|hate (generic term)|hatred (generic term)|benevolence (antonym)
+(noun)|malevolency|malice|evil (generic term)|evilness (generic term)
+malevolency|1
+(noun)|malevolence|malice|evil (generic term)|evilness (generic term)
+malevolent|2
+(adj)|malicious (similar term)
+(adj)|malefic|malign|evil|maleficent (similar term)
+malevolent program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+malevolently|1
+(adv)|benevolently (antonym)
+malfeasance|1
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+malfeasant|1
+(noun)|wrongdoer (generic term)|offender (generic term)
+malformation|2
+(noun)|deformity|misshapenness|affliction (generic term)
+(noun)|miscreation|failure (generic term)
+malformed|1
+(adj)|deformed|distorted|ill-shapen|misshapen|unshapely (similar term)
+malfunction|2
+(noun)|failure (generic term)
+(verb)|misfunction|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)|function (antonym)
+malfunctioning|1
+(adj)|nonfunctional|amiss (similar term)|awry (similar term)|haywire (similar term)|wrong (similar term)|bad (similar term)|defective (similar term)|dead (similar term)|out of whack (similar term)|run-down (similar term)|functioning (antonym)
+malheur wire lettuce|1
+(noun)|Stephanomeria malheurensis|crucifer (generic term)|cruciferous plant (generic term)
+mali|1
+(noun)|Mali|Republic of Mali|French Sudan|African country (generic term)|African nation (generic term)
+mali franc|1
+(noun)|Mali franc|franc (generic term)
+malian|2
+(adj)|Malian|African country|African nation (related term)
+(noun)|Malian|African (generic term)
+malice|2
+(noun)|maliciousness|spite|spitefulness|venom|malevolence (generic term)|malignity (generic term)
+(noun)|malevolence|malevolency|evil (generic term)|evilness (generic term)
+malice aforethought|1
+(noun)|mens rea|planning (generic term)|preparation (generic term)|provision (generic term)
+malicious|1
+(adj)|despiteful (similar term)|spiteful (similar term)|vindictive (similar term)|leering (similar term)|malevolent (similar term)|beady-eyed (similar term)|bitchy (similar term)|catty (similar term)|cattish (similar term)|poisonous (similar term)|venomous (similar term)|vicious (similar term)|venomed (similar term)|vixenish (similar term)|unmalicious (antonym)
+malicious gossip|1
+(noun)|scandal|dirt|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+malicious mischief|1
+(noun)|vandalism|hooliganism|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)|destruction (generic term)|devastation (generic term)
+maliciousness|1
+(noun)|malice|spite|spitefulness|venom|malevolence (generic term)|malignity (generic term)
+malign|3
+(adj)|cancerous (similar term)|evil (similar term)|harmful (similar term)|injurious (similar term)|harmful (related term)|maleficent (related term)|unkind (related term)|benign (antonym)
+(adj)|malefic|malevolent|evil|maleficent (similar term)
+(verb)|badmouth|traduce|drag through the mud|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+malignance|2
+(noun)|malignancy|disease (generic term)
+(noun)|malignity|malignancy|evil (generic term)|evilness (generic term)|benignancy (antonym)|benignity (antonym)
+malignancy|2
+(noun)|malignance|disease (generic term)
+(noun)|malignity|malignance|evil (generic term)|evilness (generic term)|benignancy (antonym)|benignity (antonym)
+malignant|1
+(adj)|cancerous (similar term)|benign (antonym)
+malignant anaemia|1
+(noun)|pernicious anemia|pernicious anaemia|malignant anemia|anemia (generic term)|anaemia (generic term)
+malignant anemia|1
+(noun)|pernicious anemia|pernicious anaemia|malignant anaemia|anemia (generic term)|anaemia (generic term)
+malignant hepatoma|1
+(noun)|hepatoma|hepatocarcinoma|hepatocellular carcinoma|carcinoma (generic term)
+malignant hypertension|1
+(noun)|high blood pressure (generic term)|hypertension (generic term)
+malignant hyperthermia|1
+(noun)|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)
+malignant melanoma|1
+(noun)|melanoma|skin cancer (generic term)
+malignant neoplasm|1
+(noun)|malignant tumor|metastatic tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)|malignancy (generic term)|malignance (generic term)
+malignant neoplastic disease|1
+(noun)|cancer|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+malignant neuroma|1
+(noun)|neurosarcoma|sarcoma (generic term)
+malignant pustule|1
+(noun)|cutaneous anthrax|anthrax (generic term)
+malignant tumor|1
+(noun)|malignant neoplasm|metastatic tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)|malignancy (generic term)|malignance (generic term)
+maligner|1
+(noun)|defamer|slanderer|vilifier|libeler|backbiter|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+malignity|2
+(noun)|malevolence|hate (generic term)|hatred (generic term)|benevolence (antonym)
+(noun)|malignancy|malignance|evil (generic term)|evilness (generic term)|benignancy (antonym)|benignity (antonym)
+malignment|1
+(noun)|smear|vilification|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+malik|1
+(noun)|leader (generic term)
+malinger|1
+(verb)|skulk|fiddle (generic term)|shirk (generic term)|shrink from (generic term)|goldbrick (generic term)
+malingerer|1
+(noun)|skulker|shammer|slacker (generic term)|shirker (generic term)
+malingering|1
+(noun)|skulking|evasion (generic term)|escape (generic term)|dodging (generic term)
+malinois|1
+(noun)|Belgian sheepdog (generic term)|Belgian shepherd (generic term)
+malinowski|1
+(noun)|Malinowski|Bronislaw Malinowski|Bronislaw Kasper Malinowski|anthropologist (generic term)
+mall|2
+(noun)|promenade|walk (generic term)|walkway (generic term)|paseo (generic term)
+(noun)|plaza|center|shopping mall|shopping center|shopping centre|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+mallard|1
+(noun)|Anas platyrhynchos|duck (generic term)
+mallarme|1
+(noun)|Mallarme|Stephane Mallarme|poet (generic term)
+malleability|1
+(noun)|plasticity|physical property (generic term)|unmalleability (antonym)
+malleable|2
+(adj)|ductile|tractable (similar term)|manipulable (similar term)
+(adj)|ductile|pliable|pliant|tensile|tractile|formed (similar term)
+mallee|1
+(noun)|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+mallee fowl|1
+(noun)|leipoa|lowan|Leipoa ocellata|megapode (generic term)|mound bird (generic term)|mound-bird (generic term)|mound builder (generic term)|scrub fowl (generic term)
+mallee hen|1
+(noun)|mallee fowl (generic term)|leipoa (generic term)|lowan (generic term)|Leipoa ocellata (generic term)
+mallet|3
+(noun)|sports implement (generic term)
+(noun)|drumstick (generic term)
+(noun)|beetle|hammer (generic term)
+malleus|1
+(noun)|hammer|auditory ossicle (generic term)
+mallon|1
+(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier (generic term)|immune carrier (generic term)
+mallophaga|1
+(noun)|Mallophaga|order Mallophaga|animal order (generic term)
+mallotus|1
+(noun)|Mallotus|genus Mallotus|fish genus (generic term)
+mallow|1
+(noun)|shrub (generic term)|bush (generic term)
+mallow family|1
+(noun)|Malvaceae|family Malvaceae|dilleniid dicot family (generic term)
+malmo|1
+(noun)|Malmo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+malmsey|1
+(noun)|Madeira (generic term)
+malnourish|1
+(verb)|undernourish|feed (generic term)|give (generic term)
+malnourished|1
+(adj)|foodless (similar term)|ill-fed (similar term)|underfed (similar term)|undernourished (similar term)|starved (similar term)|starving (similar term)|unfed (similar term)|unnourished (similar term)|nourished (antonym)
+malnourishment|1
+(noun)|undernourishment|hunger (generic term)|hungriness (generic term)
+malnutrition|1
+(noun)|deficiency disease (generic term)
+malocclusion|1
+(noun)|disorder (generic term)|upset (generic term)
+malodor|1
+(noun)|malodour|stench|stink|reek|fetor|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+malodorous|1
+(adj)|malodourous|unpeasant-smelling|ill-smelling|stinky|bilgy (similar term)|fetid (similar term)|foetid (similar term)|foul (similar term)|foul-smelling (similar term)|funky (similar term)|noisome (similar term)|smelly (similar term)|stinking (similar term)|ill-scented (similar term)|fusty (similar term)|musty (similar term)|frowsty (similar term)|gamey (similar term)|gamy (similar term)|high (similar term)|miasmic (similar term)|mephitic (similar term)|niffy (similar term)|odoriferous (similar term)|odorous (similar term)|putrid-smelling (similar term)|rank-smelling (similar term)|reeking (similar term)|sour (similar term)|rancid (similar term)|fragrant (antonym)
+malodorousness|1
+(noun)|stinkiness|foulness|rankness|fetidness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+malodour|1
+(noun)|malodor|stench|stink|reek|fetor|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+malodourous|1
+(adj)|malodorous|unpeasant-smelling|ill-smelling|stinky|bilgy (similar term)|fetid (similar term)|foetid (similar term)|foul (similar term)|foul-smelling (similar term)|funky (similar term)|noisome (similar term)|smelly (similar term)|stinking (similar term)|ill-scented (similar term)|fusty (similar term)|musty (similar term)|frowsty (similar term)|gamey (similar term)|gamy (similar term)|high (similar term)|miasmic (similar term)|mephitic (similar term)|niffy (similar term)|odoriferous (similar term)|odorous (similar term)|putrid-smelling (similar term)|rank-smelling (similar term)|reeking (similar term)|sour (similar term)|rancid (similar term)|fragrant (antonym)
+malone|1
+(noun)|Malone|Edmund Malone|Edmond Malone|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+malonylurea|1
+(noun)|barbituric acid|acid (generic term)
+malope|1
+(noun)|Malope trifida|mallow (generic term)
+malope trifida|1
+(noun)|malope|Malope trifida|mallow (generic term)
+malopterurus|1
+(noun)|Malopterurus|genus Malopterurus|fish genus (generic term)
+malopterurus electricus|1
+(noun)|electric catfish|Malopterurus electricus|silurid (generic term)|silurid fish (generic term)
+malory|1
+(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer (generic term)|author (generic term)
+malosma|1
+(noun)|Malosma|genus Malosma|dicot genus (generic term)|magnoliopsid genus (generic term)
+malosma laurina|1
+(noun)|laurel sumac|Malosma laurina|Rhus laurina|shrub (generic term)|bush (generic term)
+malpighi|1
+(noun)|Malpighi|Marcello Malpighi|histologist (generic term)
+malpighia|1
+(noun)|Malpighia|genus Malpighia|rosid dicot genus (generic term)
+malpighia glabra|1
+(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+malpighia obovata|1
+(noun)|jiqui|Malpighia obovata|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+malpighiaceae|1
+(noun)|Malpighiaceae|family Malpighiaceae|rosid dicot family (generic term)
+malpighian body|1
+(noun)|malpighian corpuscle|renal corpuscle|capsule (generic term)
+malpighian corpuscle|1
+(noun)|malpighian body|renal corpuscle|capsule (generic term)
+malpighian layer|1
+(noun)|stratum germinativum|stratum basale|rete Malpighii|stratum (generic term)
+malposed|1
+(adj)|crooked (similar term)
+malposed tooth|1
+(noun)|tooth (generic term)
+malposition|1
+(noun)|misplacement|position (generic term)|spatial relation (generic term)
+malpractice|1
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+malpractice insurance|1
+(noun)|insurance (generic term)
+malraux|1
+(noun)|Malraux|Andre Malraux|writer (generic term)|author (generic term)
+mals|1
+(noun)|Master of Arts in Library Science|MALS|master's degree (generic term)
+malt|5
+(noun)|malted|malted milk|milkshake (generic term)|milk shake (generic term)|shake (generic term)
+(noun)|malt liquor|lager (generic term)|lager beer (generic term)
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|convert (generic term)
+malt liquor|1
+(noun)|malt|lager (generic term)|lager beer (generic term)
+malt sugar|1
+(noun)|maltose|disaccharide (generic term)
+malt whiskey|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+malt whisky|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+malta|2
+(noun)|Malta|Republic of Malta|country (generic term)|state (generic term)|land (generic term)
+(noun)|Malta|island (generic term)
+malta fever|1
+(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+malted|2
+(adj)|unmalted (antonym)
+(noun)|malt|malted milk|milkshake (generic term)|milk shake (generic term)|shake (generic term)
+malted milk|2
+(noun)|malted|malt|milkshake (generic term)|milk shake (generic term)|shake (generic term)
+(noun)|ingredient (generic term)|fixings (generic term)
+maltese|2
+(adj)|Maltese|country|state|land (related term)|island (related term)
+(noun)|Maltese dog|Maltese|toy dog (generic term)|toy (generic term)
+maltese cat|1
+(noun)|Maltese cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+maltese cross|2
+(noun)|scarlet lychnis|Lychins chalcedonica|lychnis (generic term)|catchfly (generic term)
+(noun)|Maltese cross|Cross (generic term)
+maltese dog|1
+(noun)|Maltese dog|Maltese|toy dog (generic term)|toy (generic term)
+maltese lira|1
+(noun)|lira|Maltese lira|Maltese monetary unit (generic term)
+maltese monetary unit|1
+(noun)|Maltese monetary unit|monetary unit (generic term)
+maltha|1
+(noun)|mineral tar|mineral (generic term)
+malthus|1
+(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist (generic term)|economic expert (generic term)
+malthusian|2
+(adj)|Malthusian|economist|economic expert (related term)|economic theory (related term)
+(noun)|Malthusian|believer (generic term)|truster (generic term)
+malthusian theory|1
+(noun)|Malthusianism|Malthusian theory|economic theory (generic term)
+malthusianism|1
+(noun)|Malthusianism|Malthusian theory|economic theory (generic term)
+maltman|1
+(noun)|maltster|maker (generic term)|shaper (generic term)
+malto|2
+(noun)|Malto|Dravidian (generic term)
+(noun)|Malto|North Dravidian (generic term)
+maltose|1
+(noun)|malt sugar|disaccharide (generic term)
+maltreat|1
+(verb)|mistreat|abuse|ill-use|step|ill-treat|treat (generic term)|handle (generic term)|do by (generic term)
+maltreated|1
+(adj)|abused|ill-treated|mistreated|battered (similar term)|unabused (antonym)
+maltreater|1
+(noun)|abuser|wrongdoer (generic term)|offender (generic term)
+maltreatment|1
+(noun)|ill-treatment|ill-usage|abuse|mistreatment (generic term)
+maltster|1
+(noun)|maltman|maker (generic term)|shaper (generic term)
+malus|1
+(noun)|Malus|genus Malus|rosid dicot genus (generic term)
+malus angustifolia|1
+(noun)|Southern crab apple|flowering crab|Malus angustifolia|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+malus baccata|1
+(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+malus coronaria|1
+(noun)|American crab apple|garland crab|Malus coronaria|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+malus fusca|1
+(noun)|Oregon crab apple|Malus fusca|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+malus ioensis|1
+(noun)|Iowa crab|Iowa crab apple|prairie crab|western crab apple|Malus ioensis|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+malus pumila|1
+(noun)|apple|orchard apple tree|Malus pumila|apple tree (generic term)
+malus sylvestris|1
+(noun)|wild crab|Malus sylvestris|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+malva|1
+(noun)|Malva|genus Malva|dilleniid dicot genus (generic term)
+malva moschata|1
+(noun)|musk mallow|mus rose|Malva moschata|mallow (generic term)
+malva neglecta|1
+(noun)|common mallow|Malva neglecta|mallow (generic term)
+malva sylvestris|1
+(noun)|tall mallow|high mallow|cheese|cheeseflower|Malva sylvestris|mallow (generic term)
+malvaceae|1
+(noun)|Malvaceae|family Malvaceae|mallow family|dilleniid dicot family (generic term)
+malvales|1
+(noun)|Malvales|order Malvales|plant order (generic term)
+malvasia|1
+(noun)|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+malvastrum|1
+(noun)|Malvastrum|genus Malvastrum|dilleniid dicot genus (generic term)
+malvastrum coccineum|1
+(noun)|prairie mallow|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow (generic term)|false mallow (generic term)
+malvaviscus|1
+(noun)|Malvaviscus|genus Malvaviscus|dilleniid dicot genus (generic term)
+malversate|1
+(verb)|embezzle|defalcate|peculate|misappropriate|steal (generic term)
+malversation|1
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+malvina hoffman|1
+(noun)|Hoffman|Malvina Hoffman|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+mam|2
+(noun)|Mam|Mayan (generic term)|Maya (generic term)
+(noun)|Mam|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+mama|2
+(noun)|ma|mamma|mom|momma|mommy|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+(noun)|Mama|Semitic deity (generic term)
+mama's boy|1
+(noun)|mother's boy|mamma's boy|son (generic term)|boy (generic term)
+mamba|1
+(noun)|elapid (generic term)|elapid snake (generic term)
+mambo|2
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+mamet|1
+(noun)|Mamet|David Mamet|dramatist (generic term)|playwright (generic term)
+mamey|2
+(noun)|mammee apple|mammee|mammee tree|Mammea americana|fruit tree (generic term)
+(noun)|mammee|mammee apple|edible fruit (generic term)
+mamilla|1
+(noun)|nipple|mammilla|pap|teat|tit|reproductive organ (generic term)|sex organ (generic term)
+mamillary body|1
+(noun)|mammillary body|corpus mamillare|neural structure (generic term)
+mamma|2
+(noun)|ma|mama|mom|momma|mommy|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+(noun)|mammary gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+mamma's boy|1
+(noun)|mother's boy|mama's boy|son (generic term)|boy (generic term)
+mammal|1
+(noun)|mammalian|vertebrate (generic term)|craniate (generic term)
+mammal-like|1
+(adj)|animal (similar term)
+mammal family|1
+(noun)|family (generic term)
+mammal genus|1
+(noun)|genus (generic term)
+mammal semnopithecus|1
+(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus (generic term)
+mammalia|1
+(noun)|Mammalia|class Mammalia|class (generic term)
+mammalian|2
+(adj)|class (related term)
+(noun)|mammal|vertebrate (generic term)|craniate (generic term)
+mammalogist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+mammalogy|1
+(noun)|zoology (generic term)|zoological science (generic term)
+mammary|1
+(adj)|exocrine gland|exocrine|duct gland (related term)
+mammary gland|1
+(noun)|mamma|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+mammea|1
+(noun)|Mammea|genus Mammea|dilleniid dicot genus (generic term)
+mammea americana|1
+(noun)|mammee apple|mammee|mamey|mammee tree|Mammea americana|fruit tree (generic term)
+mammee|4
+(noun)|marmalade tree|sapote|Pouteria zapota|Calocarpum zapota|tree (generic term)
+(noun)|mammee apple|mamey|mammee tree|Mammea americana|fruit tree (generic term)
+(noun)|mamey|mammee apple|edible fruit (generic term)
+(noun)|sapote|marmalade plum|edible fruit (generic term)
+mammee apple|2
+(noun)|mammee|mamey|mammee tree|Mammea americana|fruit tree (generic term)
+(noun)|mamey|mammee|edible fruit (generic term)
+mammee tree|1
+(noun)|mammee apple|mammee|mamey|Mammea americana|fruit tree (generic term)
+mammilla|1
+(noun)|nipple|mamilla|pap|teat|tit|reproductive organ (generic term)|sex organ (generic term)
+mammillaria|1
+(noun)|cactus (generic term)
+mammillaria plumosa|1
+(noun)|feather ball|Mammillaria plumosa|cactus (generic term)
+mammillary body|1
+(noun)|mamillary body|corpus mamillare|neural structure (generic term)
+mammogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+mammography|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+mammon|2
+(noun)|wealth (generic term)|wealthiness (generic term)
+(noun)|Mammon|imaginary being (generic term)|imaginary creature (generic term)
+mammoth|2
+(adj)|gigantic|large (similar term)|big (similar term)
+(noun)|elephant (generic term)
+mammoth cave national park|1
+(noun)|Mammoth Cave National Park|national park (generic term)
+mammothermography|1
+(noun)|thermography (generic term)
+mammut|1
+(noun)|Mammut|genus Mammut|genus Mastodon|mammal genus (generic term)
+mammut americanum|1
+(noun)|American mastodon|American mastodont|Mammut americanum|mastodon (generic term)|mastodont (generic term)
+mammuthus|1
+(noun)|Mammuthus|genus Mammuthus|mammal genus (generic term)
+mammuthus columbi|1
+(noun)|columbian mammoth|Mammuthus columbi|mammoth (generic term)
+mammuthus primigenius|1
+(noun)|woolly mammoth|northern mammoth|Mammuthus primigenius|mammoth (generic term)
+mammutidae|1
+(noun)|Mammutidae|family Mammutidae|family Mastodontidae|mammal family (generic term)
+mammy|2
+(noun)|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+(noun)|ma|mama|mamma|mom|momma|mommy|mum|mummy|mother (generic term)|female parent (generic term)
+mamo|1
+(noun)|honeycreeper (generic term)|Hawaiian honeycreeper (generic term)
+mamoncillo|1
+(noun)|Spanish lime|Spanish lime tree|honey berry|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+man|13
+(noun)|adult male|male (generic term)|male person (generic term)|woman (antonym)
+(noun)|serviceman|military man|military personnel|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)|civilian (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|homo|human being|human|hominid (generic term)
+(noun)|subordinate (generic term)|subsidiary (generic term)|underling (generic term)|foot soldier (generic term)
+(noun)|male (generic term)|male person (generic term)
+(noun)|male (generic term)|male person (generic term)|lover (generic term)|woman (antonym)
+(noun)|valet|valet de chambre|gentleman|gentleman's gentleman|manservant (generic term)|body servant (generic term)
+(noun)|Man|Isle of Man|island (generic term)
+(noun)|piece|game equipment (generic term)
+(noun)|world|human race|humanity|humankind|human beings|humans|mankind|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|staff (generic term)
+man's body|1
+(noun)|adult male body|adult body (generic term)|male body (generic term)
+man's clothing|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+man-about-town|1
+(noun)|playboy|Corinthian|hedonist (generic term)|pagan (generic term)|pleasure seeker (generic term)
+man-at-arms|1
+(noun)|soldier (generic term)
+man-child|1
+(noun)|male offspring|child (generic term)|kid (generic term)|male (generic term)|male person (generic term)|female offspring (antonym)
+man-eater|2
+(noun)|cannibal|anthropophagus|anthropophagite|savage (generic term)|barbarian (generic term)
+(noun)|great white shark|white shark|man-eating shark|Carcharodon carcharias|mackerel shark (generic term)
+man-eating shark|1
+(noun)|great white shark|white shark|man-eater|Carcharodon carcharias|mackerel shark (generic term)
+man-made|1
+(adj)|semisynthetic|synthetic|artificial (similar term)|unreal (similar term)
+man-made fiber|1
+(noun)|synthetic fiber|fiber (generic term)|fibre (generic term)
+man-of-the-earth|2
+(noun)|Ipomoea leptophylla|morning glory (generic term)
+(noun)|wild potato vine|wild sweet potato vine|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+man-of-war|2
+(noun)|ship of the line|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+(noun)|Portuguese man-of-war|jellyfish|siphonophore (generic term)
+man-of-war bird|1
+(noun)|frigate bird|pelecaniform seabird (generic term)
+man-on-a-horse|1
+(noun)|Tricholoma flavovirens|agaric (generic term)
+man-portable|1
+(adj)|portable (similar term)
+man-sized|2
+(adj)|manly (similar term)|manful (similar term)|manlike (similar term)
+(adj)|large (similar term)|big (similar term)
+man-to-man|2
+(adj)|direct (similar term)
+(adj)|one-on-one|individual (similar term)|single (similar term)
+man and wife|1
+(noun)|marriage|married couple|family (generic term)|family unit (generic term)
+man friday|1
+(noun)|right-hand man|chief assistant|man Friday|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+man hour|1
+(noun)|person hour|hour (generic term)|hr (generic term)|60 minutes (generic term)
+man in the street|1
+(noun)|John Doe|Joe Blow|Joe Bloggs|commoner (generic term)|common man (generic term)|common person (generic term)
+man jack|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+man of action|1
+(noun)|man of deeds|actor (generic term)|doer (generic term)|worker (generic term)
+man of affairs|1
+(noun)|businessman|businessperson (generic term)|bourgeois (generic term)
+man of deeds|1
+(noun)|man of action|actor (generic term)|doer (generic term)|worker (generic term)
+man of letters|1
+(noun)|humanist (generic term)
+man of means|1
+(noun)|rich man|wealthy man|rich person (generic term)|wealthy person (generic term)|have (generic term)
+man of science|1
+(noun)|scientist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+man of the cloth|1
+(noun)|clergyman|reverend|spiritual leader (generic term)|layman (antonym)
+man of the world|1
+(noun)|sophisticate|adult (generic term)|grownup (generic term)
+manacle|2
+(noun)|handcuff|cuff|handlock|shackle (generic term)|bond (generic term)|hamper (generic term)|trammel (generic term)
+(verb)|cuff|handcuff|fetter (generic term)|shackle (generic term)
+manage|6
+(verb)|pull off|negociate|bring off|carry off|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+(verb)|deal|care|handle|control (generic term)|command (generic term)
+(verb)|cope|get by|make out|make do|contend|grapple|deal|act (generic term)|move (generic term)
+(verb)|oversee|supervise|superintend|administer (generic term)|administrate (generic term)
+(verb)|wangle|finagle|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|do
+manageability|1
+(noun)|manageableness|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+manageable|2
+(adj)|administrable (similar term)|controllable (similar term)|governable (similar term)|directed (similar term)|steerable (similar term)|dirigible (similar term)|compliant (related term)|obedient (related term)|tractable (related term)|manipulable (related term)|unmanageable (antonym)
+(adj)|accomplishable|achievable|doable|realizable|possible (similar term)
+manageableness|1
+(noun)|manageability|tractability (generic term)|tractableness (generic term)|flexibility (generic term)
+manageably|1
+(adv)|unmanageably (antonym)
+managed economy|1
+(noun)|non-market economy (generic term)
+management|2
+(noun)|direction|social control (generic term)
+(noun)|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+management consultant|1
+(noun)|adviser (generic term)|advisor (generic term)|consultant (generic term)
+management consulting|1
+(noun)|service industry (generic term)
+management control|1
+(noun)|internal control (generic term)
+management personnel|1
+(noun)|force (generic term)|personnel (generic term)
+manager|2
+(noun)|director|managing director|administrator (generic term)|decision maker (generic term)
+(noun)|coach|handler|trainer (generic term)
+manageress|1
+(noun)|director (generic term)|manager (generic term)|managing director (generic term)
+managerial|1
+(adj)|social control (related term)
+managership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+managing director|1
+(noun)|director|manager|administrator (generic term)|decision maker (generic term)
+managing editor|1
+(noun)|editor (generic term)|editor in chief (generic term)
+managua|1
+(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital (generic term)
+manakin|3
+(noun)|mannequin|manikin|mannikin|fashion model|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|mannequin|manikin|mannikin|form|dummy (generic term)
+(noun)|tyrannid (generic term)
+manama|1
+(noun)|Manama|capital of Bahrain|national capital (generic term)
+manannan|1
+(noun)|Manannan|Celtic deity (generic term)
+manassa mauler|1
+(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|Manassa Mauler|prizefighter (generic term)|gladiator (generic term)
+manat|2
+(noun)|Turkmen monetary unit (generic term)
+(noun)|Azerbaijani monetary unit (generic term)
+manatee|1
+(noun)|Trichechus manatus|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+manawydan|1
+(noun)|Manawydan|Manawyddan|Celtic deity (generic term)
+manawyddan|1
+(noun)|Manawydan|Manawyddan|Celtic deity (generic term)
+manchester|1
+(noun)|Manchester|city (generic term)|metropolis (generic term)|urban center (generic term)
+manchester terrier|1
+(noun)|Manchester terrier|black-and-tan terrier|rat terrier (generic term)|ratter (generic term)
+manchu|3
+(noun)|Manchu|Tungusic (generic term)
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+(noun)|Manchu|Tungusic (generic term)|Tungusic language (generic term)
+manchu dynasty|1
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+manchuria|1
+(noun)|Manchuria|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+manchurian|1
+(adj)|Manchurian|geographical area|geographic area|geographical region|geographic region (related term)
+mancunian|2
+(adj)|Mancunian|city|metropolis|urban center (related term)
+(noun)|Mancunian|English person (generic term)
+manda|1
+(noun)|Manda|South-Central Dravidian (generic term)
+mandaean|3
+(adj)|Mandaean|Mandean|religious person (related term)|Aramaic (related term)
+(noun)|Mandaean|Mandean|religious person (generic term)
+(noun)|Mandaean|Mandean|Aramaic (generic term)
+mandaeanism|1
+(noun)|Mandaeanism|Mandeanism|Gnosticism (generic term)
+mandala|1
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+mandalay|1
+(noun)|Mandalay|city (generic term)|metropolis (generic term)|urban center (generic term)
+mandamus|1
+(noun)|writ of mandamus|writ (generic term)|judicial writ (generic term)
+mandara|1
+(noun)|Mandara|Wandala|Biu-Mandara (generic term)
+mandarin|6
+(noun)|mandarin orange|mandarin orange tree|Citrus reticulata|citrus (generic term)|citrus tree (generic term)
+(noun)|elitist (generic term)
+(noun)|official (generic term)|functionary (generic term)
+(noun)|Chinese (generic term)
+(noun)|mandarin orange|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese (generic term)
+mandarin chinese|1
+(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese (generic term)
+mandarin dialect|1
+(noun)|Mandarin|Mandarin Chinese|Mandarin dialect|Beijing dialect|Chinese (generic term)
+mandarin duck|1
+(noun)|Aix galericulata|duck (generic term)
+mandarin orange|2
+(noun)|mandarin|mandarin orange tree|Citrus reticulata|citrus (generic term)|citrus tree (generic term)
+(noun)|mandarin|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+mandarin orange tree|1
+(noun)|mandarin|mandarin orange|Citrus reticulata|citrus (generic term)|citrus tree (generic term)
+mandatary|1
+(noun)|mandatory|recipient (generic term)|receiver (generic term)
+mandate|5
+(noun)|authorization|authorisation|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|mandatory|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|commission (generic term)|commissioning (generic term)
+(verb)|order (generic term)|prescribe (generic term)|dictate (generic term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+mandator|1
+(noun)|authority (generic term)
+mandatorily|1
+(adv)|compulsorily|obligatorily
+mandatory|3
+(adj)|compulsory|required|obligatory (similar term)
+(noun)|mandatary|recipient (generic term)|receiver (generic term)
+(noun)|mandate|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+mandatory injunction|1
+(noun)|injunction (generic term)|enjoining (generic term)|enjoinment (generic term)|cease and desist order (generic term)
+mande|1
+(noun)|Mande|Niger-Congo (generic term)
+mandean|3
+(adj)|Mandaean|Mandean|religious person (related term)|Aramaic (related term)
+(noun)|Mandaean|Mandean|religious person (generic term)
+(noun)|Mandaean|Mandean|Aramaic (generic term)
+mandeanism|1
+(noun)|Mandaeanism|Mandeanism|Gnosticism (generic term)
+mandela|1
+(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+mandelamine|1
+(noun)|methenamine|Mandelamine|Urex|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+mandelbrot|1
+(noun)|Mandelbrot|Benoit Mandelbrot|mathematician (generic term)
+mandelbrot set|1
+(noun)|Mandelbrot set|set (generic term)
+mandelshtam|1
+(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet (generic term)
+mandelstam|1
+(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet (generic term)
+mandevilla|1
+(noun)|Mandevilla|genus Mandevilla|Dipladenia|genus Dipladenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+mandevilla boliviensis|1
+(noun)|white dipladenia|Mandevilla boliviensis|Dipladenia boliviensis|liana (generic term)
+mandevilla laxa|1
+(noun)|Chilean jasmine|Mandevilla laxa|liana (generic term)
+mandible|1
+(noun)|lower jaw|mandibula|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw (generic term)|articulator (generic term)
+mandibula|1
+(noun)|lower jaw|mandible|mandibular bone|submaxilla|lower jawbone|jawbone|jowl|jaw (generic term)|articulator (generic term)
+mandibular|1
+(adj)|inframaxillary|jaw|articulator (related term)
+mandibular bone|1
+(noun)|lower jaw|mandible|mandibula|submaxilla|lower jawbone|jawbone|jowl|jaw (generic term)|articulator (generic term)
+mandibular condyle|1
+(noun)|condylar process|condyloid process|condyle (generic term)
+mandibular fossa|1
+(noun)|glenoid fossa|pit (generic term)|fossa (generic term)
+mandibular gland|1
+(noun)|submaxillary gland|submaxillary salivary gland|submandibular gland|submandibular salivary gland|salivary gland (generic term)
+mandibular joint|1
+(noun)|temporomandibular joint|articulatio temporomandibularis|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+mandibular notch|1
+(noun)|incisure (generic term)|incisura (generic term)
+mandibulate|1
+(adj)|jaw|articulator (related term)
+mandibulofacial|1
+(adj)|external body part (related term)
+mandioc|1
+(noun)|bitter cassava|manioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+mandioca|1
+(noun)|bitter cassava|manioc|mandioc|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+mandola|1
+(noun)|mandolin (generic term)
+mandolin|1
+(noun)|chordophone (generic term)
+mandragora|1
+(noun)|Mandragora|genus Mandragora|asterid dicot genus (generic term)
+mandragora officinarum|1
+(noun)|mandrake|devil's apples|Mandragora officinarum|herb (generic term)|herbaceous plant (generic term)
+mandrake|2
+(noun)|mandrake root|root (generic term)
+(noun)|devil's apples|Mandragora officinarum|herb (generic term)|herbaceous plant (generic term)
+mandrake root|1
+(noun)|mandrake|root (generic term)
+mandrel|1
+(noun)|spindle|mandril|arbor|rotating shaft (generic term)|shaft (generic term)
+mandril|1
+(noun)|spindle|mandrel|arbor|rotating shaft (generic term)|shaft (generic term)
+mandrill|1
+(noun)|Mandrillus sphinx|baboon (generic term)
+mandrillus|1
+(noun)|Mandrillus|genus Mandrillus|mammal genus (generic term)
+mandrillus leucophaeus|1
+(noun)|drill|Mandrillus leucophaeus|baboon (generic term)
+mandrillus sphinx|1
+(noun)|mandrill|Mandrillus sphinx|baboon (generic term)
+manduca|1
+(noun)|Manduca|genus Manduca|arthropod genus (generic term)
+manduca quinquemaculata|2
+(noun)|tomato hornworm|potato worm|Manduca quinquemaculata|caterpillar (generic term)
+(noun)|Manduca quinquemaculata|hawkmoth (generic term)|hawk moth (generic term)|sphingid (generic term)|sphinx moth (generic term)|hummingbird moth (generic term)
+manduca sexta|2
+(noun)|tobacco hornworm|tomato worm|Manduca sexta|caterpillar (generic term)
+(noun)|Manduca sexta|hawkmoth (generic term)|hawk moth (generic term)|sphingid (generic term)|sphinx moth (generic term)|hummingbird moth (generic term)
+manducate|1
+(verb)|chew|masticate|jaw|grate (generic term)|grind (generic term)
+manduction|2
+(noun)|Communion|Holy Communion|sacramental manduction|ritual (generic term)
+(noun)|chew|chewing|mastication|change of state (generic term)
+mane|2
+(noun)|hair (generic term)
+(noun)|head of hair|hair (generic term)
+maned sheep|1
+(noun)|aoudad|arui|audad|Barbary sheep|Ammotragus lervia|wild sheep (generic term)
+maned wolf|1
+(noun)|red wolf|Canis rufus|Canis niger|wolf (generic term)
+manes|1
+(noun)|Manes|prophet (generic term)
+manet|1
+(noun)|Manet|Edouard Manet|painter (generic term)
+maneuver|8
+(noun)|manoeuvre|simulated military operation|operation (generic term)|military operation (generic term)
+(noun)|tactic|tactics|manoeuvre|plan of action (generic term)
+(noun)|manoeuvre|play|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|manoeuvre|tactical maneuver|tactical manoeuvre|move (generic term)
+(noun)|manoeuvre|evasive action|evasion (generic term)
+(verb)|steer|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|manoeuver|manoeuvre|act (generic term)|move (generic term)
+(verb)|manoeuver|manoeuvre|operate|move (generic term)|go (generic term)
+maneuverability|1
+(noun)|manoeuvrability|mobility (generic term)
+maneuverable|1
+(adj)|manoeuvrable|mobile (similar term)
+maneuverer|1
+(noun)|manoeuvrer|planner (generic term)|contriver (generic term)|deviser (generic term)
+manfred eigen|1
+(noun)|Eigen|Manfred Eigen|chemist (generic term)
+manful|2
+(adj)|manly|manlike|doughty (similar term)|hardy (similar term)|man-sized (similar term)|masculine (related term)|unmanly (antonym)
+(adj)|male|manlike|manly|virile|masculine (similar term)
+manfully|1
+(adv)|manly|unmanfully (antonym)
+manfulness|1
+(noun)|manliness|virility|masculinity (generic term)
+mangabey|1
+(noun)|Old World monkey (generic term)|catarrhine (generic term)
+manganate|1
+(noun)|salt (generic term)
+manganese|1
+(noun)|Mn|atomic number 25|metallic element (generic term)|metal (generic term)
+manganese bronze|1
+(noun)|high-strength brass|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+manganese steel|1
+(noun)|austenitic manganese steel|alloy steel (generic term)
+manganese tetroxide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+manganic acid|1
+(noun)|acid (generic term)
+manganite|1
+(noun)|mineral (generic term)
+mange|1
+(noun)|animal disease (generic term)
+mangel-wurzel|2
+(noun)|mangold-wurzel|mangold|Beta vulgaris vulgaris|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|beet (generic term)|beetroot (generic term)
+manger|1
+(noun)|trough|container (generic term)
+mangey|1
+(adj)|mangy|worn (similar term)
+mangifera|1
+(noun)|Mangifera|genus Mangifera|dicot genus (generic term)|magnoliopsid genus (generic term)
+mangifera indica|1
+(noun)|mango|mango tree|Mangifera indica|fruit tree (generic term)
+manginess|1
+(noun)|shabbiness|seediness|sleaziness|inelegance (generic term)
+mangle|5
+(noun)|clothes dryer (generic term)|clothes drier (generic term)
+(verb)|iron (generic term)|iron out (generic term)|press (generic term)
+(verb)|maul|deface (generic term)|disfigure (generic term)|blemish (generic term)
+(verb)|mutilate|murder|falsify (generic term)|distort (generic term)|garble (generic term)|warp (generic term)
+(verb)|mutilate|cut up|damage (generic term)
+mangled|2
+(adj)|lacerate|lacerated|torn|injured (similar term)
+(adj)|mutilated|damaged (similar term)
+mangler|1
+(noun)|mutilator|maimer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+manglietia|1
+(noun)|genus Manglietia|angiospermous tree (generic term)|flowering tree (generic term)
+mango|2
+(noun)|mango tree|Mangifera indica|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+mango tree|1
+(noun)|mango|Mangifera indica|fruit tree (generic term)
+mangold|1
+(noun)|mangel-wurzel|mangold-wurzel|Beta vulgaris vulgaris|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+mangold-wurzel|1
+(noun)|mangel-wurzel|mangold|Beta vulgaris vulgaris|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+mangonel|1
+(noun)|catapult|arbalest|arbalist|ballista|bricole|onager|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+mangosteen|2
+(noun)|mangosteen tree|Garcinia mangostana|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+mangosteen tree|1
+(noun)|mangosteen|Garcinia mangostana|fruit tree (generic term)
+mangrove|1
+(noun)|Rhizophora mangle|angiospermous tree (generic term)|flowering tree (generic term)
+mangrove family|1
+(noun)|Rhizophoraceae|family Rhizophoraceae|dicot family (generic term)|magnoliopsid family (generic term)
+mangrove snapper|1
+(noun)|grey snapper|gray snapper|Lutjanus griseus|snapper (generic term)
+mangy|1
+(adj)|mangey|worn (similar term)
+manhandle|1
+(verb)|handle (generic term)|palm (generic term)
+manhattan|2
+(noun)|Manhattan|borough (generic term)
+(noun)|cocktail (generic term)
+manhattan clam chowder|1
+(noun)|Manhattan clam chowder|clam chowder (generic term)
+manhattan island|1
+(noun)|Manhattan Island|island (generic term)
+manhattan project|2
+(noun)|Manhattan Project|executive agency (generic term)
+(noun)|Manhattan Project|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+manhole|1
+(noun)|hole (generic term)
+manhole cover|1
+(noun)|top (generic term)|cover (generic term)
+manhood|3
+(noun)|adulthood (generic term)
+(noun)|humanness|humanity|quality (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+manhunt|1
+(noun)|search (generic term)|hunt (generic term)|hunting (generic term)
+mania|2
+(noun)|passion|cacoethes|irrational motive (generic term)
+(noun)|manic disorder|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+maniac|3
+(adj)|maniacal|insane (similar term)
+(noun)|lunatic|madman|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(noun)|fancier (generic term)|enthusiast (generic term)
+maniacal|1
+(adj)|maniac|insane (similar term)
+manic|1
+(adj)|frenzied|wild (similar term)
+manic-depressive|2
+(adj)|insane (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+manic-depressive psychosis|1
+(noun)|bipolar disorder|manic depression|manic depressive illness|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+manic depression|1
+(noun)|bipolar disorder|manic depressive illness|manic-depressive psychosis|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+manic depressive illness|1
+(noun)|bipolar disorder|manic depression|manic-depressive psychosis|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+manic disorder|1
+(noun)|mania|affective disorder (generic term)|major affective disorder (generic term)|emotional disorder (generic term)|emotional disturbance (generic term)
+manichaean|3
+(adj)|dualistic|Manichaean|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief (related term)
+(noun)|Manichaean|Manichean|Manichee|disciple (generic term)|adherent (generic term)
+manichaeanism|1
+(noun)|Manichaeism|Manichaeanism|religion (generic term)|faith (generic term)|religious belief (generic term)
+manichaeism|1
+(noun)|Manichaeism|Manichaeanism|religion (generic term)|faith (generic term)|religious belief (generic term)
+manichean|2
+(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief (related term)
+(noun)|Manichaean|Manichean|Manichee|disciple (generic term)|adherent (generic term)
+manichee|2
+(adj)|Manichaean|Manichean|Manichee|religion|faith|religious belief (related term)
+(noun)|Manichaean|Manichean|Manichee|disciple (generic term)|adherent (generic term)
+maniclike|1
+(adj)|insane (similar term)
+manicotti|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+manicure|3
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)|beauty treatment (generic term)
+(verb)|cut (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+manicure set|1
+(noun)|set (generic term)
+manicurist|1
+(noun)|beautician (generic term)|cosmetician (generic term)
+manidae|1
+(noun)|Manidae|family Manidae|mammal family (generic term)
+manifest|5
+(adj)|apparent|evident|patent|plain|unmistakable|obvious (similar term)
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(verb)|attest|certify|demonstrate|evidence|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|appear (generic term)
+manifest destiny|1
+(noun)|imperialism (generic term)
+manifestation|5
+(noun)|appearance (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+(noun)|materialization|materialisation|appearance (generic term)
+(noun)|expression|reflection|reflexion|demonstration (generic term)|demo (generic term)
+(noun)|demonstration|protest (generic term)|objection (generic term)|dissent (generic term)
+manifestly|1
+(adv)|obviously|evidently|patently|apparently|plainly|plain
+manifesto|1
+(noun)|pronunciamento|declaration (generic term)
+manifold|6
+(adj)|multiplex|multiple (similar term)
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+(noun)|manifold paper|paper (generic term)
+(noun)|mathematical space (generic term)|topological space (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+(verb)|multiply|increase (generic term)
+manifold paper|1
+(noun)|manifold|paper (generic term)
+manihot|1
+(noun)|Manihot|genus Manihot|rosid dicot genus (generic term)
+manihot dulcis|1
+(noun)|sweet cassava|Manihot dulcis|cassava (generic term)|casava (generic term)
+manihot esculenta|1
+(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+manihot utilissima|1
+(noun)|bitter cassava|manioc|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+manikin|3
+(noun)|mannikin|homunculus|small person (generic term)
+(noun)|mannequin|mannikin|manakin|fashion model|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|mannequin|mannikin|manakin|form|dummy (generic term)
+manila|2
+(noun)|manila paper|manilla|manilla paper|paper (generic term)
+(noun)|Manila|capital of the Philippines|national capital (generic term)
+manila bay|1
+(noun)|Manila Bay|naval battle (generic term)
+manila bean|1
+(noun)|winged bean|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+manila grass|1
+(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia (generic term)
+manila hemp|2
+(noun)|Manila hemp|Manilla hemp|abaca|hemp (generic term)
+(noun)|abaca|Manila hemp|Musa textilis|banana (generic term)|banana tree (generic term)
+manila maguey|1
+(noun)|cantala|Cebu maguey|fiber (generic term)|fibre (generic term)
+manila paper|1
+(noun)|manila|manilla|manilla paper|paper (generic term)
+manila tamarind|1
+(noun)|camachile|huamachil|wild tamarind|Pithecellobium dulce|tree (generic term)
+manilkara|1
+(noun)|Manilkara|genus Manilkara|dicot genus (generic term)|magnoliopsid genus (generic term)
+manilkara bidentata|1
+(noun)|balata|balata tree|beefwood|bully tree|Manilkara bidentata|tree (generic term)
+manilkara zapota|1
+(noun)|sapodilla|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree (generic term)
+manilla|1
+(noun)|manila|manila paper|manilla paper|paper (generic term)
+manilla hemp|1
+(noun)|Manila hemp|Manilla hemp|abaca|hemp (generic term)
+manilla paper|1
+(noun)|manila|manila paper|manilla|paper (generic term)
+manioc|3
+(noun)|cassava|cassava starch|manioca|starch (generic term)|amylum (generic term)
+(noun)|cassava|root (generic term)
+(noun)|bitter cassava|mandioc|mandioca|tapioca plant|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+manioca|1
+(noun)|cassava|cassava starch|manioc|starch (generic term)|amylum (generic term)
+manipulability|1
+(noun)|mobility (generic term)
+manipulable|1
+(adj)|tractable|ductile (similar term)|malleable (similar term)|docile (similar term)|teachable (similar term)|tamable (similar term)|tameable (similar term)|compliant (related term)|docile (related term)|manageable (related term)|obedient (related term)|tame (related term)|tamed (related term)|intractable (antonym)
+manipulate|6
+(verb)|pull strings|pull wires|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|handle (generic term)|palm (generic term)
+(verb)|fudge|fake|falsify|cook|wangle|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+(verb)|rig|price (generic term)
+(verb)|keep in line|control|interact (generic term)
+(verb)|treat (generic term)|care for (generic term)
+manipulation|2
+(noun)|use|influence (generic term)
+(noun)|handling|touch (generic term)|touching (generic term)
+manipulative|1
+(adj)|artful (similar term)
+manipulative electronic deception|1
+(noun)|electronic manipulative deception|electronic deception (generic term)
+manipulator|2
+(noun)|operator|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+manipur|1
+(noun)|Manipur|state (generic term)|province (generic term)
+maniraptor|1
+(noun)|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+maniraptora|1
+(noun)|Maniraptora|suborder Maniraptora|animal order (generic term)
+manis|1
+(noun)|Manis|genus Manis|mammal genus (generic term)
+manitoba|1
+(noun)|Manitoba|Canadian province (generic term)
+mankato|1
+(noun)|Mankato|town (generic term)
+mankind|1
+(noun)|world|human race|humanity|humankind|human beings|humans|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+manky|1
+(adj)|worthless (similar term)
+manlike|3
+(adj)|manly|manful|doughty (similar term)|hardy (similar term)|man-sized (similar term)|masculine (related term)|unmanly (antonym)
+(adj)|male|manful|manly|virile|masculine (similar term)
+(adj)|anthropoid|human (similar term)
+manliness|1
+(noun)|manfulness|virility|masculinity (generic term)
+manly|3
+(adj)|manful|manlike|doughty (similar term)|hardy (similar term)|man-sized (similar term)|masculine (related term)|unmanly (antonym)
+(adj)|male|manful|manlike|virile|masculine (similar term)
+(adv)|manfully|unmanfully (antonym)
+mann|2
+(noun)|Mann|Horace Mann|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|Mann|Thomas Mann|writer (generic term)|author (generic term)
+manna|2
+(noun)|sap (generic term)
+(noun)|miraculous food|manna from heaven|food (generic term)|nutrient (generic term)
+manna ash|1
+(noun)|flowering ash|Fraxinus ornus|ash (generic term)|ash tree (generic term)
+manna from heaven|2
+(noun)|miraculous food|manna|food (generic term)|nutrient (generic term)
+(noun)|boom|bonanza|gold rush|gravy|godsend|windfall|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+manna grass|1
+(noun)|sweet grass|meadowgrass (generic term)|meadow grass (generic term)
+manna gum|1
+(noun)|Eucalyptus viminalis|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+manna lichen|1
+(noun)|lecanora (generic term)
+manned|1
+(adj)|unmanned (antonym)
+mannequin|2
+(noun)|manikin|mannikin|manakin|fashion model|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|manikin|mannikin|manakin|form|dummy (generic term)
+manner|3
+(noun)|mode|style|way|fashion|property (generic term)
+(noun)|personal manner|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+manner name|1
+(noun)|troponym|word (generic term)
+manner of speaking|1
+(noun)|speech|delivery|expressive style (generic term)|style (generic term)
+manner of walking|1
+(noun)|walk|carriage (generic term)|bearing (generic term)|posture (generic term)
+mannered|1
+(adj)|affected (similar term)|unnatural (similar term)
+mannerism|2
+(noun)|idiosyncrasy|foible|peculiarity (generic term)|specialness (generic term)|specialty (generic term)|speciality (generic term)|distinctiveness (generic term)
+(noun)|affectation|pose|affectedness|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+mannerly|1
+(adj)|well-mannered|polite (similar term)
+manners|1
+(noun)|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)
+mannheim|1
+(noun)|Mannheim|city (generic term)|metropolis (generic term)|urban center (generic term)
+mannikin|3
+(noun)|manikin|homunculus|small person (generic term)
+(noun)|mannequin|manikin|manakin|fashion model|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|mannequin|manikin|manakin|form|dummy (generic term)
+mannish|2
+(adj)|unwomanly (similar term)
+(adj)|masculine (similar term)
+mannitol|1
+(noun)|Osmitrol|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+manoeuver|3
+(verb)|maneuver|manoeuvre|act (generic term)|move (generic term)
+(verb)|steer|maneuver|manoeuvre|direct|point|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|maneuver|manoeuvre|operate|move (generic term)|go (generic term)
+manoeuvrability|1
+(noun)|maneuverability|mobility (generic term)
+manoeuvrable|1
+(adj)|maneuverable|mobile (similar term)
+manoeuvre|8
+(noun)|tactic|tactics|maneuver|plan of action (generic term)
+(noun)|maneuver|simulated military operation|operation (generic term)|military operation (generic term)
+(noun)|maneuver|play|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|maneuver|tactical maneuver|tactical manoeuvre|move (generic term)
+(noun)|maneuver|evasive action|evasion (generic term)
+(verb)|maneuver|manoeuver|act (generic term)|move (generic term)
+(verb)|steer|maneuver|manoeuver|direct|point|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|manoeuver|maneuver|operate|move (generic term)|go (generic term)
+manoeuvrer|1
+(noun)|maneuverer|planner (generic term)|contriver (generic term)|deviser (generic term)
+manometer|1
+(noun)|pressure gauge (generic term)|pressure gage (generic term)
+manor|2
+(noun)|manor house|mansion (generic term)|mansion house (generic term)|manse (generic term)|hall (generic term)|residence (generic term)
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+manor hall|1
+(noun)|hall|room (generic term)
+manor house|1
+(noun)|manor|mansion (generic term)|mansion house (generic term)|manse (generic term)|hall (generic term)|residence (generic term)
+manorial|1
+(adj)|mansion|mansion house|manse|hall|residence (related term)
+manpad|1
+(noun)|MANPAD|surface-to-air missile (generic term)|SAM (generic term)
+manpower|1
+(noun)|work force|workforce|hands|men|force (generic term)|personnel (generic term)
+manque|1
+(adj)|would-be|ambitious (similar term)
+manroot|1
+(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+mansard|2
+(adj)|hipped (similar term)
+(noun)|mansard roof|curb roof (generic term)
+mansard roof|1
+(noun)|mansard|curb roof (generic term)
+mansart|1
+(noun)|Mansart|Francois Mansart|architect (generic term)|designer (generic term)
+manse|2
+(noun)|mansion|mansion house|hall|residence|house (generic term)
+(noun)|residence (generic term)
+manservant|1
+(noun)|servant (generic term)|retainer (generic term)
+mansfield|2
+(noun)|Mansfield|Katherine Mansfield|Kathleen Mansfield Beauchamp|writer (generic term)|author (generic term)
+(noun)|Mansfield|town (generic term)
+mansi|2
+(noun)|Vogul|Mansi|Russian (generic term)
+(noun)|Mansi|Vogul|Ugric (generic term)|Ugrian (generic term)
+mansion|2
+(noun)|sign of the zodiac|star sign|sign|house|planetary house|region (generic term)|part (generic term)
+(noun)|mansion house|manse|hall|residence|house (generic term)
+mansion house|1
+(noun)|mansion|manse|hall|residence|house (generic term)
+manslaughter|1
+(noun)|homicide (generic term)
+manslayer|1
+(noun)|murderer|liquidator|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|killer (generic term)|slayer (generic term)
+manson|1
+(noun)|Manson|Sir Patrick Manson|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+manta|2
+(noun)|blanket (generic term)|cover (generic term)
+(noun)|manta ray|devilfish|ray (generic term)
+manta birostris|1
+(noun)|Atlantic manta|Manta birostris|manta (generic term)|manta ray (generic term)|devilfish (generic term)
+manta ray|1
+(noun)|manta|devilfish|ray (generic term)
+mantegna|1
+(noun)|Mantegna|Andrea Mantegna|painter (generic term)|engraver (generic term)
+manteidae|1
+(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family (generic term)
+mantel|1
+(noun)|mantelpiece|mantle|mantlepiece|chimneypiece|shelf (generic term)
+mantelet|2
+(noun)|mantlet|shelter (generic term)
+(noun)|mantilla|cape (generic term)|mantle (generic term)
+mantell|1
+(noun)|Mantell|Gideon Algernon Mantell|geologist (generic term)
+mantelpiece|1
+(noun)|mantel|mantle|mantlepiece|chimneypiece|shelf (generic term)
+manteodea|1
+(noun)|Manteodea|suborder Manteodea|animal order (generic term)
+mantic|1
+(adj)|divinatory|sibylline|sibyllic|vatic|vatical|prophetic (similar term)|prophetical (similar term)
+mantichora|1
+(noun)|manticore|manticora|mantiger|mythical monster (generic term)|mythical creature (generic term)
+manticora|1
+(noun)|manticore|mantichora|mantiger|mythical monster (generic term)|mythical creature (generic term)
+manticore|1
+(noun)|mantichora|manticora|mantiger|mythical monster (generic term)|mythical creature (generic term)
+mantid|1
+(noun)|mantis|dictyopterous insect (generic term)
+mantidae|1
+(noun)|Mantidae|family Mantidae|Manteidae|family Manteidae|arthropod family (generic term)
+mantiger|1
+(noun)|manticore|mantichora|manticora|mythical monster (generic term)|mythical creature (generic term)
+mantilla|2
+(noun)|scarf (generic term)
+(noun)|mantelet|cape (generic term)|mantle (generic term)
+mantinea|1
+(noun)|Mantinea|Mantineia|pitched battle (generic term)
+mantineia|1
+(noun)|Mantinea|Mantineia|pitched battle (generic term)
+mantis|1
+(noun)|mantid|dictyopterous insect (generic term)
+mantis crab|1
+(noun)|mantis shrimp|stomatopod (generic term)|stomatopod crustacean (generic term)
+mantis prawn|1
+(noun)|squilla|mantis shrimp (generic term)|mantis crab (generic term)
+mantis religioso|1
+(noun)|praying mantis|praying mantid|Mantis religioso|mantis (generic term)|mantid (generic term)
+mantis shrimp|1
+(noun)|mantis crab|stomatopod (generic term)|stomatopod crustacean (generic term)
+mantispid|1
+(noun)|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+mantispidae|1
+(noun)|Mantispidae|family Mantispidae|arthropod family (generic term)
+mantissa|1
+(noun)|fixed-point part|fraction (generic term)
+mantle|10
+(noun)|symbol (generic term)
+(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer (generic term)|baseball player (generic term)
+(noun)|layer (generic term)
+(noun)|blanket|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|pallium|epidermis (generic term)|cuticle (generic term)
+(noun)|mantel|mantelpiece|mantlepiece|chimneypiece|shelf (generic term)
+(noun)|curtain|drape|drapery|pall|blind (generic term)|screen (generic term)|furnishing (generic term)
+(noun)|cape|cloak (generic term)
+(verb)|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+mantled|1
+(adj)|cloaked|clothed|draped|wrapped|covered (similar term)
+mantled ground squirrel|1
+(noun)|Citellus lateralis|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+mantlepiece|1
+(noun)|mantel|mantelpiece|mantle|chimneypiece|shelf (generic term)
+mantlet|1
+(noun)|mantelet|shelter (generic term)
+mantophasmatodea|1
+(noun)|Mantophasmatodea|order mantophasmatodea|animal order (generic term)
+mantoux test|1
+(noun)|Mantoux test|tuberculin test (generic term)|tuberculin skin test (generic term)
+mantra|2
+(noun)|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+(noun)|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mantrap|2
+(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|dish|woman (generic term)|adult female (generic term)
+(noun)|trap (generic term)
+mantua|1
+(noun)|gown (generic term)
+manual|5
+(adj)|extremity (related term)
+(adj)|hand-operated (similar term)|non-automatic (similar term)|automatic (antonym)
+(adj)|blue-collar (similar term)
+(noun)|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+(noun)|manual of arms|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+manual alphabet|1
+(noun)|finger alphabet|alphabet (generic term)
+manual dexterity|1
+(noun)|dexterity|sleight|adeptness (generic term)|adroitness (generic term)|deftness (generic term)|facility (generic term)|quickness (generic term)
+manual labor|1
+(noun)|manual labour|labor (generic term)|labour (generic term)|toil (generic term)
+manual laborer|1
+(noun)|laborer|labourer|jack|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+manual labour|1
+(noun)|manual labor|labor (generic term)|labour (generic term)|toil (generic term)
+manual of arms|1
+(noun)|manual|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+manubrium|1
+(noun)|bone (generic term)|os (generic term)
+manuel de falla|1
+(noun)|Falla|Manuel de Falla|composer (generic term)|pianist (generic term)|piano player (generic term)
+manuel rodriquez patriotic front|1
+(noun)|Manuel Rodriquez Patriotic Front|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+manufactory|1
+(noun)|factory|mill|manufacturing plant|plant (generic term)|works (generic term)|industrial plant (generic term)
+manufacture|4
+(noun)|industry|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|fabrication|creating from raw materials (generic term)
+(verb)|fabricate|construct|make (generic term)
+(verb)|fabricate|cook up|make up|invent|think up (generic term)|think of (generic term)|dream up (generic term)|hatch (generic term)|concoct (generic term)
+manufactured|1
+(adj)|factory-made (similar term)
+manufactured home|1
+(noun)|mobile home|trailer (generic term)|house trailer (generic term)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+manufacturer|2
+(noun)|maker|manufacturing business|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|producer|maker (generic term)|shaper (generic term)
+manufacturing business|1
+(noun)|manufacturer|maker|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+manufacturing plant|1
+(noun)|factory|mill|manufactory|plant (generic term)|works (generic term)|industrial plant (generic term)
+manul|1
+(noun)|Pallas's cat|Felis manul|wildcat (generic term)
+manumission|1
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+manumit|1
+(verb)|emancipate|liberate (generic term)|set free (generic term)
+manumitter|1
+(noun)|emancipator|liberator (generic term)
+manure|2
+(noun)|organic (generic term)|organic fertilizer (generic term)|organic fertiliser (generic term)
+(verb)|muck|spread (generic term)|scatter (generic term)|spread out (generic term)
+manus|1
+(noun)|hand|mitt|paw|extremity (generic term)
+manuscript|2
+(noun)|ms|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|holograph|autograph (generic term)
+manx|2
+(adj)|Manx|island (related term)
+(noun)|Manx|Gaelic (generic term)|Goidelic (generic term)|Erse (generic term)
+manx cat|1
+(noun)|Manx cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+manx shearwater|1
+(noun)|Manx shearwater|Puffinus puffinus|shearwater (generic term)
+many|1
+(adj)|galore (similar term)|many a (similar term)|many an (similar term)|many another (similar term)|numerous (similar term)|some (similar term)|umpteen (similar term)|umteen (similar term)|more (related term)|some (related term)|few (antonym)
+many-chambered|1
+(adj)|divided (similar term)
+many-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+many-sided|3
+(adj)|multilateral|bilateral (similar term)|two-sided (similar term)|deep-lobed (similar term)|two-lobed (similar term)|bipartite (similar term)|two-part (similar term)|two-way (similar term)|joint (similar term)|multipartite (similar term)|quadrilateral (similar term)|four-sided (similar term)|five-sided (similar term)|six-sided (similar term)|seven-sided (similar term)|eight-sided (similar term)|nine-sided (similar term)|ten-sided (similar term)|eleven-sided (similar term)|twelve-sided (similar term)|quadripartite (similar term)|four-party (similar term)|tetramerous (similar term)|three-cornered (similar term)|three-lobed (similar term)|four-lobed (similar term)|five-lobed (similar term)|many-lobed (similar term)|palmately-lobed (similar term)|trilateral (similar term)|triangular (similar term)|three-sided (similar term)|triangular (similar term)|trilateral (similar term)|tripartite (similar term)|three-party (similar term)|three-way (similar term)|unilateral (antonym)
+(adj)|multifaceted|multifarious|varied (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+many a|1
+(adj)|many an|many another|many (similar term)
+many an|1
+(adj)|many a|many another|many (similar term)
+many another|1
+(adj)|many a|many an|many (similar term)
+manzanilla|1
+(noun)|Manzanilla|sherry (generic term)
+manzanita|2
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|madrona|madrono|Arbutus menziesii|arbutus (generic term)
+manzoni|1
+(noun)|Manzoni|Alessandro Manzoni|writer (generic term)|author (generic term)
+mao|2
+(noun)|monoamine oxidase|MAO|enzyme (generic term)
+(noun)|Mao|Mao Zedong|Mao Tsetung|communist (generic term)|commie (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+mao jacket|1
+(noun)|Mao jacket|jacket (generic term)
+mao tsetung|1
+(noun)|Mao|Mao Zedong|Mao Tsetung|communist (generic term)|commie (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+mao zedong|1
+(noun)|Mao|Mao Zedong|Mao Tsetung|communist (generic term)|commie (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+maoi|1
+(noun)|monoamine oxidase inhibitor|MAOI|antidepressant (generic term)|antidepressant drug (generic term)
+maoism|1
+(noun)|Maoism|communism (generic term)
+maoist|2
+(adj)|Maoist|communism (related term)
+(noun)|Maoist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+maori|2
+(noun)|Maori|ethnic minority (generic term)
+(noun)|Maori|Oceanic (generic term)|Eastern Malayo-Polynesian (generic term)
+maori hen|1
+(noun)|weka|wood hen|rail (generic term)
+map|8
+(noun)|representation (generic term)
+(noun)|mapping|correspondence|function (generic term)|mathematical function (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+(verb)|explore (generic term)
+(verb)|situate (generic term)|locate (generic term)
+(verb)|map out|plan (generic term)|project (generic term)|contrive (generic term)|design (generic term)
+(verb)|picture (generic term)|depict (generic term)|render (generic term)|show (generic term)
+(verb)|represent|permute (generic term)|commute (generic term)|transpose (generic term)
+map-reader|1
+(noun)|reader (generic term)
+map collection|1
+(noun)|atlas|book of maps|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+map maker|1
+(noun)|cartographer|geographer (generic term)
+map out|1
+(verb)|map|plan (generic term)|project (generic term)|contrive (generic term)|design (generic term)
+map projection|1
+(noun)|projection (generic term)
+mapinguari|1
+(noun)|mylodontid (generic term)
+maple|2
+(noun)|wood (generic term)
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+maple-leaf|1
+(noun)|emblem (generic term)|allegory (generic term)
+maple-leaf begonia|1
+(noun)|grape-leaf begonia|Begonia dregei|begonia (generic term)
+maple-leaved bayur|1
+(noun)|mayeng|Pterospermum acerifolium|tree (generic term)
+maple-like|1
+(adj)|maplelike|branchy (similar term)
+maple family|1
+(noun)|Aceraceae|family Aceraceae|dicot family (generic term)|magnoliopsid family (generic term)
+maple sugar|1
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+maple syrup|1
+(noun)|syrup (generic term)|sirup (generic term)
+maple syrup urine disease|1
+(noun)|branched chain ketoaciduria|ketonuria (generic term)|ketoaciduria (generic term)|acetonuria (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+maplelike|1
+(adj)|maple-like|branchy (similar term)
+mapmaking|1
+(noun)|cartography|devising (generic term)|fashioning (generic term)|making (generic term)
+mapper|1
+(noun)|plotter|clerk (generic term)
+mapping|2
+(noun)|map|correspondence|function (generic term)|mathematical function (generic term)
+(noun)|chromosome mapping|procedure (generic term)|process (generic term)
+maputo|1
+(noun)|Maputo|capital of Mozambique|national capital (generic term)
+maquiladora|1
+(noun)|assembly plant (generic term)
+maquis|2
+(noun)|Maquis|Maquisard|guerrilla (generic term)|guerilla (generic term)|irregular (generic term)|insurgent (generic term)
+(noun)|Maquis|underground (generic term)|resistance (generic term)
+maquisard|1
+(noun)|Maquis|Maquisard|guerrilla (generic term)|guerilla (generic term)|irregular (generic term)|insurgent (generic term)
+mar|4
+(noun)|March|Mar|Gregorian calendar month (generic term)
+(noun)|blemish|defect|appearance (generic term)|visual aspect (generic term)
+(verb)|impair|spoil|deflower|vitiate|damage (generic term)
+(verb)|mutilate|maim (generic term)
+mara|2
+(noun)|Mara|Hindu deity (generic term)
+(noun)|Dolichotis patagonum|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+marabou|2
+(noun)|marabout|marabou stork|Leptoptilus crumeniferus|stork (generic term)
+(noun)|feather (generic term)|plume (generic term)|plumage (generic term)
+marabou stork|1
+(noun)|marabou|marabout|Leptoptilus crumeniferus|stork (generic term)
+marabout|1
+(noun)|marabou|marabou stork|Leptoptilus crumeniferus|stork (generic term)
+maraca|1
+(noun)|bones|castanets|clappers|finger cymbals|percussion instrument (generic term)|percussive instrument (generic term)
+maracaibo|1
+(noun)|Maracaibo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+maracan language|1
+(noun)|Maraco|Maracan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+maracay|1
+(noun)|Maracay|city (generic term)|metropolis (generic term)|urban center (generic term)
+maraco|2
+(noun)|Maraco|South American Indian (generic term)
+(noun)|Maraco|Maracan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+marang|2
+(noun)|marang tree|Artocarpus odoratissima|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+marang tree|1
+(noun)|marang|Artocarpus odoratissima|fruit tree (generic term)
+maranta|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+maranta arundinaceae|1
+(noun)|arrowroot|American arrowroot|obedience plant|Maranta arundinaceae|maranta (generic term)
+marantaceae|1
+(noun)|Marantaceae|family Marantaceae|arrowroot family|monocot family (generic term)|liliopsid family (generic term)
+marasca|2
+(noun)|fruit (generic term)
+(noun)|marasca cherry|maraschino cherry|Prunus cerasus marasca|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+marasca cherry|1
+(noun)|marasca|maraschino cherry|Prunus cerasus marasca|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+maraschino|2
+(noun)|maraschino liqueur|liqueur (generic term)|cordial (generic term)
+(noun)|maraschino cherry|sweet (generic term)|confection (generic term)
+maraschino cherry|2
+(noun)|marasca|marasca cherry|Prunus cerasus marasca|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+(noun)|maraschino|sweet (generic term)|confection (generic term)
+maraschino liqueur|1
+(noun)|maraschino|liqueur (generic term)|cordial (generic term)
+marasmius|1
+(noun)|Marasmius|genus Marasmius|fungus genus (generic term)
+marasmius oreades|1
+(noun)|fairy-ring mushroom|Marasmius oreades|agaric (generic term)
+marasmus|1
+(noun)|malnutrition (generic term)
+marat|1
+(noun)|Marat|Jean Paul Marat|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+maratha|1
+(noun)|Maratha|Mahratta|Indian (generic term)
+marathi|1
+(noun)|Marathi|Mahratti|Sanskrit (generic term)|Sanskritic language (generic term)
+marathon|3
+(noun)|endurance contest|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|footrace (generic term)|foot race (generic term)|run (generic term)
+(noun)|Marathon|battle of Marathon|pitched battle (generic term)
+marathon runner|1
+(noun)|marathoner|road runner|long-distance runner|runner (generic term)
+marathoner|1
+(noun)|marathon runner|road runner|long-distance runner|runner (generic term)
+marattia|1
+(noun)|Marattia|genus Marattia|fern genus (generic term)
+marattia salicina|1
+(noun)|potato fern|Marattia salicina|fern (generic term)
+marattiaceae|1
+(noun)|Marattiaceae|family Marattiaceae|fern family (generic term)
+marattiales|1
+(noun)|Marattiales|order Marattiales|plant order (generic term)
+maraud|2
+(noun)|foray|raid|penetration (generic term)|incursion (generic term)
+(verb)|foray into (generic term)|raid (generic term)
+marauder|1
+(noun)|predator|vulture|piranha|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+marauding|1
+(adj)|predatory|raiding|offensive (similar term)
+maravilla|2
+(noun)|desert four o'clock|Colorado four o'clock|Mirabilis multiflora|four o'clock (generic term)
+(noun)|sweet four o'clock|Mirabilis longiflora|four o'clock (generic term)
+marble|4
+(noun)|rock (generic term)|stone (generic term)
+(noun)|ball (generic term)
+(noun)|sculpture (generic term)
+(verb)|stain (generic term)
+marble-wood|2
+(noun)|marblewood|zebrawood (generic term)|zebrawood tree (generic term)
+(noun)|marblewood|Andaman marble|Diospyros kurzii|tree (generic term)
+marble bones disease|1
+(noun)|osteopetrosis|Albers-Schonberg disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+marble cake|1
+(noun)|cake (generic term)
+marbled|1
+(adj)|marbleized|marbleised|patterned (similar term)
+marbleisation|1
+(noun)|marbleization|marbleizing|marbleising|texture (generic term)
+marbleise|1
+(verb)|marbleize|change surface (generic term)
+marbleised|1
+(adj)|marbled|marbleized|patterned (similar term)
+marbleising|1
+(noun)|marbleization|marbleisation|marbleizing|texture (generic term)
+marbleization|1
+(noun)|marbleisation|marbleizing|marbleising|texture (generic term)
+marbleize|1
+(verb)|marbleise|change surface (generic term)
+marbleized|1
+(adj)|marbled|marbleised|patterned (similar term)
+marbleizing|1
+(noun)|marbleization|marbleisation|marbleising|texture (generic term)
+marbles|2
+(noun)|child's game (generic term)
+(noun)|wits|intelligence (generic term)
+marblewood|2
+(noun)|marble-wood|zebrawood (generic term)|zebrawood tree (generic term)
+(noun)|marble-wood|Andaman marble|Diospyros kurzii|tree (generic term)
+marbling|1
+(noun)|edible fat (generic term)
+marburg disease|1
+(noun)|Marburg disease|Marburg hemorrhagic fever|green monkey disease|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+marburg hemorrhagic fever|1
+(noun)|Marburg disease|Marburg hemorrhagic fever|green monkey disease|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+marburg virus|1
+(noun)|Marburg virus|filovirus (generic term)
+marc|1
+(noun)|brandy (generic term)
+marc blitzstein|1
+(noun)|Blitzstein|Marc Blitzstein|pianist (generic term)|piano player (generic term)|composer (generic term)
+marc chagall|1
+(noun)|Chagall|Marc Chagall|painter (generic term)
+marceau|1
+(noun)|Marceau|Marcel Marceau|mime (generic term)|mimer (generic term)|mummer (generic term)|pantomimer (generic term)|pantomimist (generic term)
+marcel|2
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(verb)|wave (generic term)
+marcel duchamp|1
+(noun)|Duchamp|Marcel Duchamp|artist (generic term)|creative person (generic term)
+marcel lajos breuer|1
+(noun)|Breuer|Marcel Lajos Breuer|architect (generic term)|designer (generic term)
+marcel marceau|1
+(noun)|Marceau|Marcel Marceau|mime (generic term)|mimer (generic term)|mummer (generic term)|pantomimer (generic term)|pantomimist (generic term)
+marcel proust|1
+(noun)|Proust|Marcel Proust|novelist (generic term)
+marcello malpighi|1
+(noun)|Malpighi|Marcello Malpighi|histologist (generic term)
+march|13
+(noun)|March|Mar|Gregorian calendar month (generic term)
+(noun)|marching|walk (generic term)|walking (generic term)
+(noun)|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+(noun)|procession (generic term)
+(noun)|borderland|border district|marchland|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|marching music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+(noun)|Master of Architecture|MArch|master's degree (generic term)
+(verb)|process|walk (generic term)
+(verb)|walk (generic term)|march on (related term)
+(verb)|demonstrate|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|parade|exhibit|walk (generic term)
+(verb)|walk (generic term)
+(verb)|border|adjoin|edge|abut|butt|butt against|butt on|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+march 17|1
+(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day (generic term)
+march 19|1
+(noun)|Saint Joseph|St Joseph|March 19|Christian holy day (generic term)
+march 2|1
+(noun)|Texas Independence Day|March 2|day (generic term)
+march 25|1
+(noun)|Annunciation|Lady Day|Annunciation Day|March 25|quarter day (generic term)
+march equinox|1
+(noun)|vernal equinox|March equinox|spring equinox|equinox (generic term)|autumnal equinox (antonym)
+march king|1
+(noun)|Sousa|John Philip Sousa|March King|bandmaster (generic term)|composer (generic term)
+march on|1
+(verb)|advance|progress|pass on|move on|go on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+march out|1
+(verb)|debouch|march (generic term)|process (generic term)
+marchand de vin|1
+(noun)|mushroom wine sauce|sauce (generic term)
+marchantia|1
+(noun)|Marchantia|genus Marchantia|moss genus (generic term)
+marchantia polymorpha|1
+(noun)|hepatica|Marchantia polymorpha|liverwort (generic term)|hepatic (generic term)
+marchantiaceae|1
+(noun)|Marchantiaceae|family Marchantiaceae|moss family (generic term)
+marchantiales|1
+(noun)|Marchantiales|order Marchantiales|plant order (generic term)
+marche|1
+(noun)|Marche|Marches|Italian region (generic term)
+marcher|3
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|parader|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|infantryman|foot soldier|footslogger|soldier (generic term)
+marches|1
+(noun)|Marche|Marches|Italian region (generic term)
+marching|1
+(noun)|march|walk (generic term)|walking (generic term)
+marching music|1
+(noun)|march|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+marching order|1
+(noun)|materiel (generic term)|equipage (generic term)
+marching orders|2
+(noun)|walking papers|dismissal (generic term)|dismission (generic term)|pink slip (generic term)
+(noun)|order (generic term)
+marchioness|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|marquise|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+marchland|1
+(noun)|borderland|border district|march|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+marchpane|1
+(noun)|marzipan|candy (generic term)|confect (generic term)
+marciano|1
+(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter (generic term)|gladiator (generic term)
+marcionism|1
+(noun)|Marcionism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+marco polo|1
+(noun)|Polo|Marco Polo|traveler (generic term)|traveller (generic term)
+marco polo's sheep|1
+(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep (generic term)
+marco polo sheep|1
+(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep (generic term)
+marconi|1
+(noun)|Marconi|Guglielmo Marconi|electrical engineer (generic term)
+marconi rig|1
+(noun)|Bermuda rig|Bermudan rig|Bermudian rig|Marconi rig|rig (generic term)|rigging (generic term)
+marcus annius verus|1
+(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus antonius|1
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+marcus aurelius|1
+(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus aurelius antoninus|1
+(noun)|Antoninus|Aurelius|Marcus Aurelius|Marcus Aurelius Antoninus|Marcus Annius Verus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus aurelius valerius maximianus|1
+(noun)|Maximian|Marcus Aurelius Valerius Maximianus|Herculius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus cocceius nerva|1
+(noun)|Nerva|Marcus Cocceius Nerva|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus junius brutus|1
+(noun)|Brutus|Marcus Junius Brutus|statesman (generic term)|solon (generic term)|national leader (generic term)
+marcus terentius varro|1
+(noun)|Varro|Marcus Terentius Varro|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+marcus tullius cicero|1
+(noun)|Cicero|Marcus Tullius Cicero|Tully|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+marcus ulpius traianus|1
+(noun)|Trajan|Marcus Ulpius Traianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+marcus vipsanius agrippa|1
+(noun)|Agrippa|Marcus Vipsanius Agrippa|statesman (generic term)|solon (generic term)|national leader (generic term)
+marcus whitman|1
+(noun)|Whitman|Marcus Whitman|missionary (generic term)
+marcuse|1
+(noun)|Marcuse|Herbert Marcuse|philosopher (generic term)
+mardi gras|2
+(noun)|Mardi Gras|Shrove Tuesday|pancake day|Christian holy day (generic term)
+(noun)|Mardi Gras|Fat Tuesday|carnival (generic term)
+marduk|1
+(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity (generic term)
+mare|2
+(noun)|female horse|horse (generic term)|Equus caballus (generic term)
+(noun)|maria|region (generic term)|part (generic term)
+mare's nest|1
+(noun)|clutter|jumble|muddle|fuddle|welter|smother|disorderliness (generic term)|disorder (generic term)
+mare's tail|1
+(noun)|cirrus (generic term)|cirrus cloud (generic term)
+mare clausum|1
+(noun)|waterway (generic term)
+mare liberum|1
+(noun)|waterway (generic term)
+mare nostrum|1
+(noun)|Mediterranean (generic term)|Mediterranean Sea (generic term)
+marengo|1
+(noun)|Marengo|pitched battle (generic term)
+marfan's syndrome|1
+(noun)|Marfan's syndrome|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)
+margaret court|1
+(noun)|Court|Margaret Court|tennis player (generic term)
+margaret higgins sanger|1
+(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse (generic term)
+margaret hilda thatcher|1
+(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman (generic term)
+margaret mead|1
+(noun)|Mead|Margaret Mead|anthropologist (generic term)
+margaret mitchell|1
+(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer (generic term)|author (generic term)
+margaret munnerlyn mitchell|1
+(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer (generic term)|author (generic term)
+margaret sanger|1
+(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse (generic term)
+margaret thatcher|1
+(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman (generic term)
+margarete gertrud zelle|1
+(noun)|Mata Hari|Margarete Gertrud Zelle|spy (generic term)|undercover agent (generic term)
+margaric acid|1
+(noun)|heptadecanoic acid|saturated fatty acid (generic term)
+margarin|2
+(noun)|glycerol trimargarate|glyceryl ester (generic term)
+(noun)|margarine|oleo|oleomargarine|marge|spread (generic term)|paste (generic term)
+margarine|1
+(noun)|margarin|oleo|oleomargarine|marge|spread (generic term)|paste (generic term)
+margarita|1
+(noun)|cocktail (generic term)
+margasivsa|1
+(noun)|Aghan|Margasivsa|Hindu calendar month (generic term)
+margate|1
+(noun)|Haemulon album|grunt (generic term)
+margay|1
+(noun)|margay cat|Felis wiedi|wildcat (generic term)
+margay cat|1
+(noun)|margay|Felis wiedi|wildcat (generic term)
+marge|1
+(noun)|margarine|margarin|oleo|oleomargarine|spread (generic term)|paste (generic term)
+margin|7
+(noun)|border|perimeter|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|amount (generic term)
+(noun)|security deposit|down payment (generic term)|deposit (generic term)
+(noun)|gross profit|gross profit margin|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+(noun)|space (generic term)|blank space (generic term)|place (generic term)
+(noun)|allowance|leeway|tolerance|discrepancy (generic term)|disagreement (generic term)|divergence (generic term)|variance (generic term)
+(noun)|edge|strip (generic term)|slip (generic term)
+margin account|1
+(noun)|brokerage account (generic term)|cash account (antonym)
+margin call|1
+(noun)|call|demand (generic term)
+margin of error|1
+(noun)|margin of safety|safety margin|margin (generic term)|index (generic term)
+margin of profit|1
+(noun)|profit margin|gross margin|ratio (generic term)
+margin of safety|1
+(noun)|safety margin|margin of error|margin (generic term)|index (generic term)
+marginal|6
+(adj)|fringy|peripheral (similar term)
+(adj)|borderline|minimal (similar term)|minimum (similar term)
+(adj)|hardscrabble|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+(adj)|bare|narrow (similar term)
+(adj)|unprofitable (similar term)
+(adj)|disapproved (similar term)
+marginal cost|1
+(noun)|incremental cost|differential cost|monetary value (generic term)|price (generic term)|cost (generic term)
+marginal placentation|1
+(noun)|ventral placentation|placentation (generic term)
+marginal utility|1
+(noun)|utility (generic term)
+marginal wood fern|1
+(noun)|evergreen wood fern|leatherleaf wood fern|Dryopteris marginalis|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+marginalia|1
+(noun)|note (generic term)
+marginalisation|1
+(noun)|marginalization|social process (generic term)
+marginalise|1
+(verb)|marginalize|interact (generic term)
+marginality|1
+(noun)|position (generic term)|spatial relation (generic term)|centrality (antonym)
+marginalization|1
+(noun)|marginalisation|social process (generic term)
+marginalize|1
+(verb)|marginalise|interact (generic term)
+marginocephalia|1
+(noun)|Marginocephalia|suborder Marginocephalia|marginocephalian|animal order (generic term)
+marginocephalian|1
+(noun)|Marginocephalia|suborder Marginocephalia|animal order (generic term)
+margosa|1
+(noun)|neem|neem tree|nim tree|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+margrave|2
+(noun)|military governor (generic term)
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+marguerite|2
+(noun)|oxeye daisy|ox-eyed daisy|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+(noun)|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub (generic term)|suffrutex (generic term)
+marguerite daisy|1
+(noun)|marguerite|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub (generic term)|suffrutex (generic term)
+marguerite radclyffe hall|1
+(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer (generic term)|author (generic term)
+mari|2
+(noun)|Cheremis|Cheremiss|Mari|Russian (generic term)
+(noun)|Cheremis|Cheremiss|Mari|Volgaic (generic term)
+maria|2
+(noun)|mare|region (generic term)|part (generic term)
+(noun)|Maria|Calophyllum longifolium|tree (generic term)
+maria callas|1
+(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura (generic term)|coloratura soprano (generic term)
+maria luigi carlo zenobio cherubini|1
+(noun)|Cherubini|Luigi Cherubini|Maria Luigi Carlo Zenobio Cherubini|composer (generic term)
+maria magdalene von losch|1
+(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+maria meneghini callas|1
+(noun)|Callas|Maria Callas|Maria Meneghini Callas|coloratura (generic term)|coloratura soprano (generic term)
+maria mitchell|1
+(noun)|Mitchell|Maria Mitchell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+maria montesorri|1
+(noun)|Montessori|Maria Montesorri|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+maria tallchief|1
+(noun)|Tallchief|Maria Tallchief|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+mariachi|1
+(noun)|ensemble (generic term)
+marian|1
+(adj)|Marian|Jewess|mother|female parent (related term)
+marian anderson|1
+(noun)|Anderson|Marian Anderson|contralto (generic term)
+mariana islands|1
+(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago (generic term)
+marianas|1
+(noun)|Mariana Islands|Marianas|Ladrone Islands|archipelago (generic term)
+marianne craig moore|1
+(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet (generic term)
+marianne moore|1
+(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet (generic term)
+maricopa|2
+(noun)|Maricopa|Hokan (generic term)|Hoka (generic term)
+(noun)|Maricopa|Yuman (generic term)
+marie-strumpell disease|1
+(noun)|ankylosing spondylitis|Marie-Strumpell disease|rheumatoid spondylitis|spondylitis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+marie anne charlotte corday d'armont|1
+(noun)|Corday|Charlotte Corday|Marie Anne Charlotte Corday d'Armont|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+marie antoinette|1
+(noun)|Marie Antoinette|queen (generic term)
+marie charlotte carmichael stopes|1
+(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner (generic term)|birth-control reformer (generic term)
+marie curie|1
+(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist (generic term)
+marie dolores eliza rosanna gilbert|1
+(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+marie goeppert mayer|1
+(noun)|Mayer|Marie Goeppert Mayer|nuclear physicist (generic term)
+marie grosholtz|1
+(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler (generic term)|modeller (generic term)
+marie henri beyle|1
+(noun)|Stendhal|Marie Henri Beyle|writer (generic term)|author (generic term)
+marie jean antoine nicolas caritat|1
+(noun)|Condorcet|Marquis de Condorcet|Marie Jean Antoine Nicolas Caritat|mathematician (generic term)|philosopher (generic term)
+marie jeanne becu|1
+(noun)|Du Barry|Comtesse Du Barry|Marie Jeanne Becu|courtier (generic term)
+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 (generic term)
+marie louise elisabeth vigee-lebrun|1
+(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter (generic term)
+marie stopes|1
+(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner (generic term)|birth-control reformer (generic term)
+marie tussaud|1
+(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler (generic term)|modeller (generic term)
+mariehamn|1
+(noun)|Mariehamn|Maarianhamina|town (generic term)|port (generic term)
+marigold|1
+(noun)|flower (generic term)
+marihuana|2
+(noun)|marijuana|ganja|Cannabis sativa|cannabis (generic term)|hemp (generic term)
+(noun)|cannabis|marijuana|ganja|soft drug (generic term)|controlled substance (generic term)
+marijuana|2
+(noun)|marihuana|ganja|Cannabis sativa|cannabis (generic term)|hemp (generic term)
+(noun)|cannabis|marihuana|ganja|soft drug (generic term)|controlled substance (generic term)
+marijuana cigarette|1
+(noun)|joint|reefer|stick|spliff|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+marilyn horne|1
+(noun)|Horne|Marilyn Horne|mezzo-soprano (generic term)|mezzo (generic term)
+marilyn monroe|1
+(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress (generic term)
+marimba|1
+(noun)|xylophone|percussion instrument (generic term)|percussive instrument (generic term)
+marina|1
+(noun)|dock (generic term)|dockage (generic term)|docking facility (generic term)
+marinade|2
+(noun)|condiment (generic term)
+(verb)|marinate|steep (generic term)|infuse (generic term)
+marinara|1
+(noun)|spaghetti sauce (generic term)|pasta sauce (generic term)
+marinate|1
+(verb)|marinade|steep (generic term)|infuse (generic term)
+marine|6
+(adj)|body of water|water (related term)
+(adj)|nautical|maritime|transportation|shipping|transport (related term)
+(adj)|naval unit (related term)
+(adj)|aquatic (similar term)
+(noun)|Marine|devil dog|leatherneck|shipboard soldier|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|soldier (generic term)
+marine animal|1
+(noun)|marine creature|sea animal|sea creature|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+marine archaeology|1
+(noun)|marine archeology|underwater archeology|underwater archaeology|archeology (generic term)|archaeology (generic term)
+marine archeology|1
+(noun)|marine archaeology|underwater archeology|underwater archaeology|archeology (generic term)|archaeology (generic term)
+marine corps|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+marine corps intelligence activity|1
+(noun)|Marine Corps Intelligence Activity|MCIA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+marine creature|1
+(noun)|marine animal|sea animal|sea creature|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+marine engineer|1
+(noun)|naval engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+marine glue|1
+(noun)|glue (generic term)|gum (generic term)|mucilage (generic term)
+marine iguana|1
+(noun)|Amblyrhynchus cristatus|iguanid (generic term)|iguanid lizard (generic term)
+marine law|1
+(noun)|maritime law|admiralty law|international law (generic term)|law of nations (generic term)
+marine mine|1
+(noun)|floating mine|mine (generic term)
+marine museum|1
+(noun)|aquarium|fish tank|vivarium (generic term)|tank (generic term)|storage tank (generic term)
+marine mussel|1
+(noun)|mytilid|mussel (generic term)
+marine turtle|1
+(noun)|sea turtle|turtle (generic term)
+marineland|1
+(noun)|Marineland|aquarium (generic term)|fish tank (generic term)|marine museum (generic term)
+mariner|1
+(noun)|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+mariner's compass|1
+(noun)|compass card|magnetic compass (generic term)
+marines|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+marini|1
+(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet (generic term)
+marino|1
+(noun)|Marini|Giambattista Marini|Marino|Giambattista Marino|poet (generic term)
+mario vargas llosa|1
+(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer (generic term)|author (generic term)
+marionette|1
+(noun)|puppet|figure (generic term)
+mariotte's law|1
+(noun)|Boyle's law|Mariotte's law|law (generic term)|law of nature (generic term)
+mariposa|1
+(noun)|mariposa tulip|mariposa lily|liliaceous plant (generic term)
+mariposa lily|1
+(noun)|mariposa|mariposa tulip|liliaceous plant (generic term)
+mariposa tulip|1
+(noun)|mariposa|mariposa lily|liliaceous plant (generic term)
+mariposan|1
+(noun)|Mariposan|Yokuts|Penutian (generic term)
+marital|1
+(adj)|matrimonial|married|marital status (related term)
+marital bed|1
+(noun)|marital relationship|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+marital communications privilege|1
+(noun)|husband-wife privilege|privilege (generic term)
+marital relationship|1
+(noun)|marital bed|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+marital status|1
+(noun)|legal status (generic term)
+mariticide|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+maritime|2
+(adj)|nautical|marine|transportation|shipping|transport (related term)
+(adj)|coastal (similar term)
+maritime law|1
+(noun)|marine law|admiralty law|international law (generic term)|law of nations (generic term)
+maritime provinces|1
+(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+maritimes|1
+(noun)|Maritime Provinces|Maritimes|Canadian Maritime Provinces|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+marjoram|2
+(noun)|oregano|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum (generic term)
+(noun)|oregano|herb (generic term)
+mark|30
+(noun)|grade|score|evaluation (generic term)|valuation (generic term)|rating (generic term)
+(noun)|marker|marking|symbol (generic term)
+(noun)|target|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|print|indication (generic term)|indicant (generic term)
+(noun)|impression (generic term)|effect (generic term)
+(noun)|stigma|brand|stain|symbol (generic term)
+(noun)|German mark|Deutsche Mark|Deutschmark|German monetary unit (generic term)
+(noun)|Mark|Saint Mark|St. Mark|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|chump|fool|gull|patsy|fall guy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+(noun)|written symbol (generic term)|printed symbol (generic term)
+(noun)|sign|clue (generic term)|clew (generic term)|cue (generic term)
+(noun)|Mark|Gospel According to Mark|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+(noun)|scratch|scrape|scar|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|crisscross|cross|marking (generic term)
+(noun)|bell ringer|bull's eye|home run|success (generic term)
+(verb)|tag|label|attach (generic term)|mark down (related term)|mark up (related term)
+(verb)|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+(verb)|distinguish|differentiate|qualify (generic term)|characterize (generic term)|characterise (generic term)
+(verb)|commemorate|observe (generic term)|celebrate (generic term)|keep (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|mark off (related term)|mark out (related term)
+(verb)|stigmatize|stigmatise|brand|denounce|label (generic term)
+(verb)|notice|note|ignore (antonym)
+(verb)|scar|pock|pit|deface (generic term)|disfigure (generic term)|blemish (generic term)
+(verb)|score|nock|notch (generic term)
+(verb)|set|lay down (generic term)|establish (generic term)|make (generic term)
+(verb)|score|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|cross off|cross out|strike out|strike off|take away (generic term)|take out (generic term)
+(verb)|check|check off|mark off|tick off|tick|verify (generic term)
+(verb)|grade|score|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+(verb)|punctuate|add (generic term)
+mark anthony|1
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+mark antony|1
+(noun)|Antony|Anthony|Mark Antony|Mark Anthony|Antonius|Marcus Antonius|general (generic term)|full general (generic term)
+mark clark|1
+(noun)|Clark|Mark Clark|Mark Wayne Clark|general (generic term)|full general (generic term)
+mark down|1
+(verb)|shave (generic term)|knock off (generic term)|mark up (antonym)
+mark hopkins|1
+(noun)|Hopkins|Mark Hopkins|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+mark of cain|1
+(noun)|mark of Cain|sin (generic term)|sinfulness (generic term)|wickedness (generic term)
+mark off|2
+(verb)|mark out|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|check|check off|mark|tick off|tick|verify (generic term)
+mark out|1
+(verb)|mark off|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+mark rothko|1
+(noun)|Rothko|Mark Rothko|painter (generic term)
+mark tobey|1
+(noun)|Tobey|Mark Tobey|painter (generic term)
+mark twain|1
+(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer (generic term)|author (generic term)|humorist (generic term)|humourist (generic term)
+mark up|1
+(verb)|price (generic term)|mark down (antonym)
+mark wayne clark|1
+(noun)|Clark|Mark Clark|Mark Wayne Clark|general (generic term)|full general (generic term)
+markaz-ud-dawa-wal-irshad|1
+(noun)|Markaz-ud-Dawa-wal-Irshad|MDI|nongovernmental organization (generic term)|NGO (generic term)
+marked|3
+(adj)|pronounced|noticeable (similar term)
+(adj)|conspicuous (similar term)
+(adj)|asterisked (similar term)|starred (similar term)|scarred (similar term)|well-marked (similar term)|unmarked (antonym)
+marked-up|1
+(adj)|dirty|foul|illegible (similar term)
+marker|3
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|marking|mark|symbol (generic term)
+(noun)|writing implement (generic term)
+market|8
+(noun)|marketplace|activity (generic term)
+(noun)|securities industry|industry (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|grocery store|grocery|food market|marketplace (generic term)|mart (generic term)
+(verb)|trade (generic term)|merchandise (generic term)
+(verb)|shop (generic term)
+(verb)|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|commercialize|commercialise|change (generic term)|alter (generic term)|modify (generic term)
+market analysis|1
+(noun)|marketing research (generic term)|market research (generic term)
+market analyst|1
+(noun)|analyst (generic term)
+market capitalisation|1
+(noun)|market capitalization|capitalization (generic term)|capitalisation (generic term)
+market capitalization|1
+(noun)|market capitalisation|capitalization (generic term)|capitalisation (generic term)
+market cross|1
+(noun)|monument (generic term)
+market day|1
+(noun)|day (generic term)
+market economy|1
+(noun)|free enterprise|private enterprise|laissez-faire economy|economy (generic term)|economic system (generic term)|non-market economy (antonym)
+market forces|1
+(noun)|economic process (generic term)
+market garden|1
+(noun)|garden (generic term)
+market gardening|1
+(noun)|gardening (generic term)|horticulture (generic term)
+market keeper|1
+(noun)|shopkeeper|tradesman|storekeeper|merchant (generic term)|merchandiser (generic term)
+market letter|1
+(noun)|newsletter (generic term)|newssheet (generic term)
+market order|1
+(noun)|order (generic term)|purchase order (generic term)
+market penetration|1
+(noun)|penetration (generic term)
+market price|1
+(noun)|market value|value (generic term)
+market research|1
+(noun)|marketing research|research (generic term)
+market square|1
+(noun)|open-air market|open-air marketplace|marketplace (generic term)|mart (generic term)
+market strategist|1
+(noun)|strategist (generic term)|strategian (generic term)
+market town|1
+(noun)|town (generic term)
+market value|1
+(noun)|market price|value (generic term)
+marketable|3
+(adj)|salable (similar term)|saleable (similar term)
+(adj)|merchantable|sellable|vendable|vendible|salable (similar term)|saleable (similar term)
+(adj)|exportable (similar term)
+marketer|1
+(noun)|seller|vender|vendor|trafficker|merchant (generic term)|merchandiser (generic term)
+marketing|3
+(noun)|selling|merchandising|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|shopping (generic term)
+marketing cost|1
+(noun)|cost (generic term)
+marketing research|1
+(noun)|market research|research (generic term)
+marketplace|2
+(noun)|market|activity (generic term)
+(noun)|mart|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+markhoor|1
+(noun)|markhor|Capra falconeri|wild goat (generic term)
+markhor|1
+(noun)|markhoor|Capra falconeri|wild goat (generic term)
+marking|4
+(noun)|marker|mark|symbol (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|grading|scoring|evaluation (generic term)|rating (generic term)
+(noun)|decoration (generic term)
+marking ink|1
+(noun)|indelible ink (generic term)
+markka|1
+(noun)|Finnish mark|Finnish monetary unit (generic term)
+markoff|1
+(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician (generic term)
+markoff chain|1
+(noun)|Markov chain|Markoff chain|Markov process (generic term)|Markoff process (generic term)
+markoff process|1
+(noun)|Markov process|Markoff process|stochastic process (generic term)
+markov|1
+(noun)|Markov|Andrei Markov|Markoff|Andre Markoff|mathematician (generic term)
+markov chain|1
+(noun)|Markov chain|Markoff chain|Markov process (generic term)|Markoff process (generic term)
+markov process|1
+(noun)|Markov process|Markoff process|stochastic process (generic term)
+markova|1
+(noun)|Markova|Dame Alicia Markova|Lilian Alicia Marks|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+markovian|1
+(adj)|Markovian|stochastic process (related term)
+marks|1
+(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman (generic term)|man of affairs (generic term)
+marksman|1
+(noun)|sharpshooter|crack shot|shot (generic term)|shooter (generic term)
+marksmanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+markup|2
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+(noun)|direction (generic term)|instruction (generic term)
+markup language|1
+(noun)|terminology (generic term)|nomenclature (generic term)|language (generic term)
+markweed|1
+(noun)|poison ivy|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+marl|1
+(noun)|soil (generic term)|dirt (generic term)
+marlberry|1
+(noun)|Ardisia escallonoides|Ardisia paniculata|shrub (generic term)|bush (generic term)
+marlene dietrich|1
+(noun)|Dietrich|Marlene Dietrich|Maria Magdalene von Losch|actress (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+marley|1
+(noun)|Marley|Robert Nesta Marley|Bob Marley|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+marlin|1
+(noun)|billfish (generic term)
+marline|1
+(noun)|small stuff (generic term)
+marlinespike|1
+(noun)|marlinspike|marlingspike|hand tool (generic term)
+marlingspike|1
+(noun)|marlinespike|marlinspike|hand tool (generic term)
+marlinspike|1
+(noun)|marlinespike|marlingspike|hand tool (generic term)
+marlite|1
+(noun)|marlstone|metamorphic rock (generic term)
+marlowe|2
+(noun)|Marlowe|Christopher Marlowe|dramatist (generic term)|playwright (generic term)|poet (generic term)
+(noun)|Marlowe|Philip Marlowe|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+marlstone|1
+(noun)|marlite|metamorphic rock (generic term)
+marly|1
+(adj)|soil|dirt (related term)
+marmalade|1
+(noun)|conserve (generic term)|preserve (generic term)|conserves (generic term)|preserves (generic term)
+marmalade box|1
+(noun)|genipap fruit|jagua|Genipa Americana|genipa (generic term)
+marmalade bush|1
+(noun)|fire bush|fire-bush|Streptosolen jamesonii|shrub (generic term)|bush (generic term)
+marmalade orange|1
+(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|Citrus aurantium|orange (generic term)|orange tree (generic term)
+marmalade plum|1
+(noun)|sapote|mammee|edible fruit (generic term)
+marmalade tree|1
+(noun)|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree (generic term)
+marmara|1
+(noun)|Marmara|Sea of Marmara|Marmara Denizi|Marmora|Sea of Marmora|sea (generic term)
+marmara denizi|1
+(noun)|Marmara|Sea of Marmara|Marmara Denizi|Marmora|Sea of Marmora|sea (generic term)
+marmite|2
+(noun)|soup (generic term)
+(noun)|pot (generic term)
+marmora|1
+(noun)|Marmara|Sea of Marmara|Marmara Denizi|Marmora|Sea of Marmora|sea (generic term)
+marmoreal|1
+(adj)|marmorean|rock|stone (related term)
+marmorean|1
+(adj)|marmoreal|rock|stone (related term)
+marmoset|1
+(noun)|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+marmot|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+marmota|1
+(noun)|Marmota|genus Marmota|mammal genus (generic term)
+marmota caligata|1
+(noun)|hoary marmot|whistler|whistling marmot|Marmota caligata|marmot (generic term)
+marmota flaviventris|1
+(noun)|yellowbelly marmot|rockchuck|Marmota flaviventris|marmot (generic term)
+marmota monax|1
+(noun)|groundhog|woodchuck|Marmota monax|marmot (generic term)
+marne river|1
+(noun)|Battle of the Marne|Belleau Wood|Chateau-Thierry|Marne River|pitched battle (generic term)
+maroc|2
+(adj)|Moroccan|Maroc|African country|African nation (related term)
+(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country (generic term)|African nation (generic term)
+marocain|1
+(noun)|crepe marocain|crepe (generic term)|crape (generic term)
+maroon|6
+(adj)|brownish-red|chromatic (similar term)
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|purplish red (generic term)
+(noun)|firework (generic term)|pyrotechnic (generic term)
+(verb)|strand|abandon (generic term)|forsake (generic term)|desolate (generic term)|desert (generic term)
+(verb)|isolate (generic term)|insulate (generic term)
+maroon-purple|1
+(adj)|chromatic (similar term)
+maroon-spotted|1
+(adj)|patterned (similar term)
+marooned|1
+(adj)|isolated|stranded|unaccompanied (similar term)
+marplan|1
+(noun)|isocarboxazid|Marplan|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+marquand|1
+(noun)|Marquand|John Marquand|John Philip Marquand|writer (generic term)|author (generic term)
+marque|1
+(noun)|trade name|brand name|brand|name (generic term)
+marquee|2
+(noun)|pavilion|tent (generic term)|collapsible shelter (generic term)
+(noun)|marquise|canopy (generic term)
+marquesas islands|1
+(noun)|Marquesas Islands|Iles Marquises|archipelago (generic term)
+marquess|2
+(noun)|marquis|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|peer (generic term)
+marqueterie|1
+(noun)|marquetry|inlay (generic term)
+marquetry|1
+(noun)|marqueterie|inlay (generic term)
+marquette|2
+(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary (generic term)|missioner (generic term)
+(noun)|Marquette|town (generic term)
+marquis|2
+(noun)|Marquis|Don Marquis|Donald Robert Perry Marquis|humorist (generic term)|humourist (generic term)
+(noun)|marquess|Lord (generic term)|noble (generic term)|nobleman (generic term)
+marquis de condorcet|1
+(noun)|Condorcet|Marquis de Condorcet|Marie Jean Antoine Nicolas Caritat|mathematician (generic term)|philosopher (generic term)
+marquis de lafayette|1
+(noun)|Lafayette|La Fayette|Marie Joseph Paul Yves Roch Gilbert du Motier|Marquis de Lafayette|soldier (generic term)
+marquis de laplace|1
+(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+marquis de sade|1
+(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer (generic term)|author (generic term)
+marquise|2
+(noun)|marchioness|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+(noun)|marquee|canopy (generic term)
+marquise de maintenon|1
+(noun)|Maintenon|Marquise de Maintenon|Francoise d'Aubigne|Madame de Maintenon|marchioness (generic term)|marquise (generic term)|consort (generic term)
+marquise de montespan|1
+(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness (generic term)|marquise (generic term)
+marquise de pompdour|1
+(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness (generic term)|marquise (generic term)
+marrakech|1
+(noun)|Marrakesh|Marrakech|city (generic term)|metropolis (generic term)|urban center (generic term)
+marrakesh|1
+(noun)|Marrakesh|Marrakech|city (generic term)|metropolis (generic term)|urban center (generic term)
+marrano|1
+(noun)|Marrano|Converso|convert (generic term)
+marred|2
+(adj)|defaced|damaged (similar term)
+(adj)|scarred|blemished (similar term)
+marri|1
+(noun)|red gum|Eucalyptus calophylla|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+marriage|4
+(noun)|matrimony|union|spousal relationship|wedlock|marital status (generic term)
+(noun)|married couple|man and wife|family (generic term)|family unit (generic term)
+(noun)|wedding|marriage ceremony|ritual (generic term)|rite (generic term)
+(noun)|union (generic term)|unification (generic term)
+marriage bed|1
+(noun)|bed (generic term)
+marriage broker|1
+(noun)|matchmaker|matcher|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+marriage brokerage|1
+(noun)|marriage mart|brokerage (generic term)|brokerage firm (generic term)|securities firm (generic term)
+marriage ceremony|1
+(noun)|marriage|wedding|ritual (generic term)|rite (generic term)
+marriage contract|1
+(noun)|marriage settlement|contract (generic term)
+marriage counseling|1
+(noun)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+marriage licence|1
+(noun)|marriage license|wedding license|wedding licence|license (generic term)|licence (generic term)|permit (generic term)
+marriage license|1
+(noun)|marriage licence|wedding license|wedding licence|license (generic term)|licence (generic term)|permit (generic term)
+marriage mart|1
+(noun)|marriage brokerage|brokerage (generic term)|brokerage firm (generic term)|securities firm (generic term)
+marriage of convenience|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+marriage offer|1
+(noun)|marriage proposal|proposal of marriage|proposal|offer (generic term)|offering (generic term)
+marriage proposal|1
+(noun)|proposal of marriage|marriage offer|proposal|offer (generic term)|offering (generic term)
+marriage settlement|1
+(noun)|marriage contract|contract (generic term)
+marriageability|1
+(noun)|eligibility (generic term)
+marriageable|1
+(adj)|nubile|mature (similar term)
+married|3
+(adj)|joined (similar term)|united (similar term)|mated (similar term)|ringed (similar term)|wed (similar term)|wedded (similar term)|mated (related term)|unmarried (antonym)
+(adj)|marital|matrimonial|marital status (related term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+married couple|1
+(noun)|marriage|man and wife|family (generic term)|family unit (generic term)
+married man|1
+(noun)|husband|hubby|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)|wife (antonym)
+married person|1
+(noun)|spouse|partner|mate|better half|relative (generic term)|relation (generic term)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+married woman|1
+(noun)|wife|woman (generic term)|adult female (generic term)|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)|husband (antonym)
+marrow|5
+(noun)|bone marrow|connective tissue (generic term)
+(noun)|marrow squash|vegetable marrow|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+(noun)|bone marrow|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+(noun)|vegetable marrow|summer squash (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+marrow squash|1
+(noun)|marrow|vegetable marrow|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+marrowbone|1
+(noun)|bone (generic term)|os (generic term)
+marrowfat pea|1
+(noun)|pea (generic term)
+marrubium|1
+(noun)|Marrubium|genus Marrubium|asterid dicot genus (generic term)
+marrubium vulgare|1
+(noun)|common horehound|white horehound|Marrubium vulgare|horehound (generic term)
+marruecos|1
+(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country (generic term)|African nation (generic term)
+marry|2
+(verb)|get married|wed|conjoin|hook up with|get hitched with|espouse|unite (generic term)|unify (generic term)
+(verb)|wed|tie|splice|officiate (generic term)
+mars|2
+(noun)|Mars|Red Planet|terrestrial planet (generic term)|superior planet (generic term)
+(noun)|Mars|Roman deity (generic term)
+marsala|1
+(noun)|Marsala|fortified wine (generic term)
+marseillaise|1
+(noun)|Marseillaise|national anthem (generic term)
+marseille|2
+(noun)|Marseille|Marseilles|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+marseilles|1
+(noun)|Marseille|Marseilles|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+marseilles fever|1
+(noun)|Marseilles fever|Kenya fever|Indian tick fever|boutonneuse fever|disease (generic term)
+marsh|3
+(noun)|marshland|fen|fenland|wetland (generic term)
+(noun)|Marsh|Reginald Marsh|painter (generic term)
+(noun)|Marsh|Ngaio Marsh|writer (generic term)|author (generic term)
+marsh andromeda|1
+(noun)|common bog rosemary|Andromeda polifolia|andromeda (generic term)
+marsh bellflower|1
+(noun)|Campanula aparinoides|campanula (generic term)|bellflower (generic term)
+marsh buggy|1
+(noun)|swamp buggy|amphibian (generic term)|amphibious vehicle (generic term)
+marsh clematis|1
+(noun)|blue jasmine|blue jessamine|curly clematis|Clematis crispa|clematis (generic term)
+marsh cress|1
+(noun)|yellow watercress|Rorippa islandica|watercress (generic term)
+marsh elder|1
+(noun)|iva|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+marsh felwort|1
+(noun)|Swertia perennia|herb (generic term)|herbaceous plant (generic term)
+marsh fern|1
+(noun)|Thelypteris palustris|Dryopteris thelypteris|fern (generic term)
+marsh gas|1
+(noun)|methane (generic term)
+marsh gentian|1
+(noun)|calathian violet|Gentiana pneumonanthe|gentian (generic term)
+marsh hare|1
+(noun)|swamp rabbit|Sylvilagus palustris|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+marsh harrier|1
+(noun)|Circus Aeruginosus|harrier (generic term)
+marsh hawk|1
+(noun)|northern harrier|hen harrier|Circus cyaneus|harrier (generic term)
+marsh hen|2
+(noun)|American coot|mud hen|water hen|Fulica americana|coot (generic term)
+(noun)|gallinule|water hen|swamphen|aquatic bird (generic term)
+marsh horsetail|1
+(noun)|Equisetum palustre|horsetail (generic term)
+marsh mallow|1
+(noun)|white mallow|Althea officinalis|althea (generic term)|althaea (generic term)|hollyhock (generic term)
+marsh marigold|1
+(noun)|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+marsh milkweed|1
+(noun)|Joe-Pye weed|purple boneset|trumpet weed|Eupatorium purpureum|herb (generic term)|herbaceous plant (generic term)
+marsh orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+marsh pea|1
+(noun)|Lathyrus palustris|wild pea (generic term)
+marsh pink|1
+(noun)|rose pink|bitter floom|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+marsh plant|1
+(noun)|bog plant|swamp plant|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+marsh rosemary|1
+(noun)|sea lavender|statice|subshrub (generic term)|suffrutex (generic term)
+marsh st-john's wort|1
+(noun)|marsh St-John's wort|Hypericum virginianum|St John's wort (generic term)
+marsh tea|1
+(noun)|wild rosemary|Ledum palustre|shrub (generic term)|bush (generic term)
+marsh trefoil|1
+(noun)|water shamrock|buckbean|bogbean|bog myrtle|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+marsh wren|1
+(noun)|wren (generic term)|jenny wren (generic term)
+marshal|6
+(noun)|marshall|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|marshall|commissioned military officer (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|mobilize|mobilise|summon|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|usher (generic term)|show (generic term)
+marshal saxe|1
+(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+marshal tito|1
+(noun)|Tito|Marshal Tito|Josip Broz|statesman (generic term)|solon (generic term)|national leader (generic term)
+marshall|5
+(noun)|Marshall|E. G. Marshall|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Marshall|George Marshall|George Catlett Marshall|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Marshall|John Marshall|jurist (generic term)|legal expert (generic term)|chief justice (generic term)
+(noun)|marshal|commissioned military officer (generic term)
+(noun)|marshal|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+marshall islands|2
+(noun)|Marshall Islands|Republic of the Marshall Islands|country (generic term)|state (generic term)|land (generic term)
+(noun)|Marshall Islands|archipelago (generic term)
+marshall mcluhan|1
+(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer (generic term)|author (generic term)
+marshall plan|1
+(noun)|Marshall Plan|European Recovery Program|foreign aid (generic term)
+marshalling yard|1
+(noun)|yard (generic term)|railway yard (generic term)
+marshals|1
+(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency (generic term)
+marshalship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+marshland|1
+(noun)|marsh|fen|fenland|wetland (generic term)
+marshmallow|1
+(noun)|candy (generic term)|confect (generic term)
+marshmallow fluff|1
+(noun)|spread (generic term)|paste (generic term)
+marshy|1
+(adj)|boggy|miry|mucky|muddy|quaggy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+marsilea|1
+(noun)|Marsilea|genus Marsilea|fern genus (generic term)
+marsilea drummondii|1
+(noun)|nardoo|nardo|common nardoo|Marsilea drummondii|clover fern (generic term)|pepperwort (generic term)
+marsilea quadrifolia|1
+(noun)|water clover|Marsilea quadrifolia|clover fern (generic term)|pepperwort (generic term)
+marsileaceae|1
+(noun)|Marsileaceae|family Marsileaceae|fern family (generic term)
+marstan|1
+(noun)|Marstan|John Marstan|dramatist (generic term)|playwright (generic term)
+marston moor|2
+(noun)|Marston Moor|moor (generic term)|moorland (generic term)
+(noun)|Marston Moor|battle of Marston Moor|pitched battle (generic term)
+marsupial|2
+(adj)|pouch|pocket (related term)
+(noun)|pouched mammal|metatherian (generic term)
+marsupial mole|1
+(noun)|pouched mole|Notoryctus typhlops|marsupial (generic term)|pouched mammal (generic term)
+marsupial mouse|1
+(noun)|pouched mouse|marsupial rat|dasyurid marsupial (generic term)|dasyurid (generic term)
+marsupial rat|1
+(noun)|pouched mouse|marsupial mouse|dasyurid marsupial (generic term)|dasyurid (generic term)
+marsupialia|1
+(noun)|Marsupialia|order Marsupialia|animal order (generic term)
+marsupium|1
+(noun)|pouch (generic term)|pocket (generic term)
+mart|1
+(noun)|marketplace|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+marta brigit nilsson|1
+(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano (generic term)
+martagon|1
+(noun)|Turk's-cap|Lilium martagon|lily (generic term)
+martello tower|1
+(noun)|fortress (generic term)|fort (generic term)
+marten|1
+(noun)|marten cat|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+marten cat|1
+(noun)|marten|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+martensite|1
+(noun)|solid solution (generic term)|primary solid solution (generic term)
+martes|1
+(noun)|Martes|genus Martes|mammal genus (generic term)
+martes americana|1
+(noun)|American marten|American sable|Martes americana|marten (generic term)|marten cat (generic term)
+martes foina|1
+(noun)|stone marten|beech marten|Martes foina|marten (generic term)|marten cat (generic term)
+martes martes|1
+(noun)|pine marten|Martes martes|marten (generic term)|marten cat (generic term)
+martes pennanti|1
+(noun)|fisher|pekan|fisher cat|black cat|Martes pennanti|marten (generic term)|marten cat (generic term)
+martes zibellina|1
+(noun)|sable|Martes zibellina|marten (generic term)|marten cat (generic term)
+martha's vineyard|1
+(noun)|Martha's Vineyard|island (generic term)
+martha beatrice potter webb|1
+(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer (generic term)|author (generic term)
+martha graham|1
+(noun)|Graham|Martha Graham|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+martha jane burk|1
+(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman (generic term)
+martha jane burke|1
+(noun)|Burk|Martha Jane Burk|Burke|Martha Jane Burke|Calamity Jane|frontierswoman (generic term)
+marti|1
+(noun)|Marti|Jose Julian Marti|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|poet (generic term)
+martial|4
+(adj)|soldierly|soldierlike|warriorlike|military (similar term)
+(adj)|warlike|military (similar term)
+(adj)|military (similar term)
+(noun)|Martial|poet (generic term)
+martial art|1
+(noun)|self-defense (generic term)|self-defence (generic term)|self-protection (generic term)
+martial law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+martial music|1
+(noun)|military march|military music|marching music (generic term)|march (generic term)
+martian|2
+(adj)|Martian|terrestrial planet|superior planet (related term)
+(noun)|Martian|imaginary being (generic term)|imaginary creature (generic term)
+martin|5
+(noun)|Martin|St. Martin|bishop (generic term)|saint (generic term)
+(noun)|Martin|Steve Martin|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|comedian (generic term)|comic (generic term)
+(noun)|Martin|Mary Martin|actress (generic term)
+(noun)|Martin|Dean Martin|Dino Paul Crocetti|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|swallow (generic term)
+martin buber|1
+(noun)|Buber|Martin Buber|philosopher (generic term)
+martin cline|1
+(noun)|Cline|Martin Cline|geneticist (generic term)
+martin heidegger|1
+(noun)|Heidegger|Martin Heidegger|existentialist (generic term)|existentialist philosopher (generic term)
+martin heinrich klaproth|1
+(noun)|Klaproth|Martin Heinrich Klaproth|chemist (generic term)
+martin luther|1
+(noun)|Luther|Martin Luther|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+martin luther king|1
+(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+martin luther king day|1
+(noun)|Martin Luther King Jr's Birthday|Martin Luther King Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+martin luther king jr's birthday|1
+(noun)|Martin Luther King Jr's Birthday|Martin Luther King Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+martin luther king jr.|1
+(noun)|King|Martin Luther King|Martin Luther King Jr.|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+martin scorsese|1
+(noun)|Scorsese|Martin Scorsese|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+martin v|1
+(noun)|Martin V|Oddone Colonna|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+martin van buren|1
+(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+martina navratilova|1
+(noun)|Navratilova|Martina Navratilova|tennis player (generic term)
+martinet|1
+(noun)|disciplinarian|moralist|authoritarian (generic term)|dictator (generic term)
+martingale|2
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(noun)|dolphin striker|spar (generic term)
+martini|1
+(noun)|cocktail (generic term)
+martinique|1
+(noun)|Martinique|island (generic term)|French region (generic term)
+martinmas|1
+(noun)|Martinmas|St Martin's Day|11 November|quarter day (generic term)
+martynia|1
+(noun)|Martynia annua|herb (generic term)|herbaceous plant (generic term)
+martynia annua|1
+(noun)|martynia|Martynia annua|herb (generic term)|herbaceous plant (generic term)
+martynia arenaria|1
+(noun)|sand devil's claw|Proboscidea arenaria|Martynia arenaria|herb (generic term)|herbaceous plant (generic term)
+martynia fragrans|1
+(noun)|sweet unicorn plant|Proboscidea fragrans|Martynia fragrans|herb (generic term)|herbaceous plant (generic term)
+martyniaceae|1
+(noun)|Martyniaceae|family Martyniaceae|plant family (generic term)
+martyr|4
+(noun)|sufferer|victim (generic term)
+(noun)|victim (generic term)
+(verb)|kill (generic term)
+(verb)|martyrize|martyrise|torture (generic term)|excruciate (generic term)|torment (generic term)
+martyr operation|1
+(noun)|suicide mission|sacrifice operation|mission (generic term)|charge (generic term)|commission (generic term)
+martyrdom|2
+(noun)|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|calvary|affliction (generic term)
+martyrise|1
+(verb)|martyr|martyrize|torture (generic term)|excruciate (generic term)|torment (generic term)
+martyrize|1
+(verb)|martyr|martyrise|torture (generic term)|excruciate (generic term)|torment (generic term)
+martyrs of al-aqsa|1
+(noun)|Aksa Martyrs Brigades|al-Aksa Martyrs Brigades|Martyrs of al-Aqsa|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+marum|1
+(noun)|cat thyme|Teucrium marum|germander (generic term)
+marumi|1
+(noun)|marumi kumquat|round kumquat|Fortunella japonica|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+marumi kumquat|1
+(noun)|marumi|round kumquat|Fortunella japonica|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+marupa|1
+(noun)|Simarouba amara|bitterwood tree (generic term)
+marut|1
+(noun)|Marut|Hindu deity (generic term)
+marvel|3
+(noun)|wonder|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|wonder|react (generic term)|respond (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+marvel-of-peru|1
+(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock (generic term)
+marvell|1
+(noun)|Marvell|Andrew Marvell|poet (generic term)
+marveller|1
+(noun)|wonderer|admirer (generic term)
+marvellous|3
+(adj)|fantastic|grand|howling|marvelous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|marvelous|miraculous|supernatural (similar term)
+(adj)|improbable|marvelous|tall|incredible (similar term)|unbelievable (similar term)
+marvellously|1
+(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|terrifically|marvelously
+marvelous|3
+(adj)|fantastic|grand|howling|marvellous|rattling|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|improbable|marvellous|tall|incredible (similar term)|unbelievable (similar term)
+(adj)|marvellous|miraculous|supernatural (similar term)
+marvelously|1
+(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|marvellously|terrifically
+marvin neil simon|1
+(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist (generic term)|playwright (generic term)
+marx|5
+(noun)|Marx|Herbert Marx|Zeppo|comedian (generic term)|comic (generic term)
+(noun)|Marx|Arthur Marx|Harpo|comedian (generic term)|comic (generic term)
+(noun)|Marx|Leonard Marx|Chico|comedian (generic term)|comic (generic term)
+(noun)|Marx|Julius Marx|Groucho|comedian (generic term)|comic (generic term)
+(noun)|Marx|Karl Marx|philosopher (generic term)|economist (generic term)|economic expert (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+marx brothers|1
+(noun)|Marx Brothers|family (generic term)|family unit (generic term)
+marxism|1
+(noun)|Marxism|communism (generic term)
+marxism-leninism|1
+(noun)|Leninism|Marxism-Leninism|communism (generic term)
+marxist|3
+(adj)|Marxist|communism (related term)
+(noun)|Marxist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|Bolshevik|Marxist|red|bolshie|bolshy|radical (generic term)
+marxist-leninist|1
+(adj)|Marxist-Leninist|communism (related term)
+mary|1
+(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess (generic term)|mother (generic term)|female parent (generic term)
+mary ann evans|1
+(noun)|Eliot|George Eliot|Mary Ann Evans|writer (generic term)|author (generic term)
+mary ashton rice livermore|1
+(noun)|Livermore|Mary Ashton Rice Livermore|suffragist (generic term)
+mary augusta arnold ward|1
+(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer (generic term)|author (generic term)
+mary baker eddy|1
+(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religious person (generic term)
+mary douglas leakey|1
+(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+mary flannery o'connor|1
+(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer (generic term)|author (generic term)
+mary godwin wollstonecraft shelley|1
+(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer (generic term)|author (generic term)
+mary harris jones|1
+(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader (generic term)
+mary i|1
+(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England (generic term)
+mary ii|1
+(noun)|Mary II|Queen of England (generic term)
+mary jane|1
+(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+mary leakey|1
+(noun)|Leakey|Mary Leakey|Mary Douglas Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+mary leontyne price|1
+(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano (generic term)
+mary ludwig hays mccauley|1
+(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine (generic term)
+mary magdalen|1
+(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner (generic term)|evildoer (generic term)|saint (generic term)
+mary magdalene|1
+(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner (generic term)|evildoer (generic term)|saint (generic term)
+mary mallon|1
+(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier (generic term)|immune carrier (generic term)
+mary martin|1
+(noun)|Martin|Mary Martin|actress (generic term)
+mary mccarthy|1
+(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer (generic term)|author (generic term)
+mary mccauley|1
+(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine (generic term)
+mary mcleod bethune|1
+(noun)|Bethune|Mary McLeod Bethune|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+mary morse baker eddy|1
+(noun)|Eddy|Mary Baker Eddy|Mary Morse Baker Eddy|religious person (generic term)
+mary pickford|1
+(noun)|Pickford|Mary Pickford|Gladys Smith|actress (generic term)
+mary queen of scots|1
+(noun)|Mary Queen of Scots|Mary Stuart|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+mary shelley|1
+(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer (generic term)|author (generic term)
+mary stuart|1
+(noun)|Mary Queen of Scots|Mary Stuart|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+mary therese mccarthy|1
+(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer (generic term)|author (generic term)
+mary tudor|1
+(noun)|Mary I|Mary Tudor|Bloody Mary|Queen of England (generic term)
+mary wollstonecraft|1
+(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer (generic term)|author (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+mary wollstonecraft godwin|1
+(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer (generic term)|author (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+mary wollstonecraft shelley|1
+(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer (generic term)|author (generic term)
+marya sklodowska|1
+(noun)|Curie|Marie Curie|Madame Curie|Marya Sklodowska|chemist (generic term)
+maryland|2
+(noun)|Maryland|Old Line State|Free State|MD|American state (generic term)
+(noun)|Maryland|Colony (generic term)
+maryland chicken|1
+(noun)|Maryland chicken|dish (generic term)
+maryland golden aster|1
+(noun)|Maryland golden aster|Chrysopsis mariana|golden aster (generic term)
+maryland yellowthroat|1
+(noun)|common yellowthroat|Maryland yellowthroat|Geothlypis trichas|yellowthroat (generic term)
+marylander|1
+(noun)|Marylander|American (generic term)
+marzipan|1
+(noun)|marchpane|candy (generic term)|confect (generic term)
+masa|1
+(noun)|Masa|Chad (generic term)|Chadic (generic term)|Chadic language (generic term)
+masai|1
+(noun)|Masai|Nilotic (generic term)|Nilotic language (generic term)
+mascara|1
+(noun)|makeup (generic term)|make-up (generic term)|war paint (generic term)
+mascarene grass|1
+(noun)|Korean velvet grass|Zoysia tenuifolia|zoysia (generic term)
+mascarpone|1
+(noun)|cream cheese (generic term)
+mascot|1
+(noun)|organism (generic term)|being (generic term)
+masculine|4
+(adj)|masculine (related term)|feminine (antonym)|neuter (antonym)
+(adj)|butch (similar term)|macho (similar term)|male (similar term)|manful (similar term)|manlike (similar term)|manly (similar term)|virile (similar term)|mannish (similar term)|male (related term)|manly (related term)|manful (related term)|manlike (related term)|masculine (related term)|feminine (antonym)
+(adj)|stressed (similar term)|accented (similar term)
+(noun)|gender (generic term)|grammatical gender (generic term)
+masculinisation|1
+(noun)|masculinization|virilization|virilisation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+masculinise|1
+(verb)|masculinize|virilize|virilise|change (generic term)|alter (generic term)|modify (generic term)
+masculinity|2
+(noun)|maleness|sex (generic term)|gender (generic term)|sexuality (generic term)|femaleness (antonym)
+(noun)|trait (generic term)|femininity (antonym)
+masculinization|1
+(noun)|masculinisation|virilization|virilisation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+masculinize|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|masculinise|virilize|virilise|change (generic term)|alter (generic term)|modify (generic term)
+masdevallia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+masefield|1
+(noun)|Masefield|John Masefield|John Edward Masefield|poet (generic term)
+maser|1
+(noun)|amplifier (generic term)
+maseru|1
+(noun)|Maseru|capital of Lesotho|national capital (generic term)
+mash|5
+(noun)|suspension (generic term)
+(noun)|feed (generic term)|provender (generic term)
+(verb)|squash|crush|squelch|squeeze|press (generic term)
+(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|philander|talk (generic term)|speak (generic term)
+(verb)|grind|crunch|bray|comminute|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+mashed potato|1
+(noun)|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+masher|2
+(noun)|wolf|woman chaser|skirt chaser|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+(noun)|kitchen utensil (generic term)
+mashhad|1
+(noun)|Mashhad|Meshed|city (generic term)|metropolis (generic term)|urban center (generic term)
+mashi|1
+(noun)|Mashi|Bantu (generic term)|Bantoid language (generic term)
+mashie|1
+(noun)|five iron|iron (generic term)
+mashie niblick|1
+(noun)|seven iron|iron (generic term)
+mashriq|1
+(noun)|Mashriq|Middle East (generic term)|Mideast (generic term)|Near East (generic term)
+masjid|1
+(noun)|musjid|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+mask|8
+(noun)|covering (generic term)|disguise (generic term)
+(noun)|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(noun)|masquerade|masquerade party|masque|party (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|dissemble|cloak|disguise (generic term)
+(verb)|cover (generic term)|unmask (antonym)
+(verb)|cover (generic term)
+(verb)|block out|cover (generic term)
+mask of pregnancy|1
+(noun)|chloasma|melasma|symptom (generic term)
+masked|1
+(adj)|cloaked|disguised|covert (similar term)
+masked ball|1
+(noun)|masquerade ball|fancy-dress ball|ball (generic term)|formal (generic term)|masquerade (generic term)|masquerade party (generic term)|masque (generic term)|mask (generic term)
+masked shrew|1
+(noun)|Sorex cinereus|shrew (generic term)|shrewmouse (generic term)
+masker|1
+(noun)|masquerader|masquer|participant (generic term)
+masking|3
+(noun)|cover|covering|screening|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(noun)|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|masking piece|scenery (generic term)|scene (generic term)
+masking paper|1
+(noun)|masking tape|adhesive tape (generic term)
+masking piece|1
+(noun)|masking|scenery (generic term)|scene (generic term)
+masking tape|1
+(noun)|masking paper|adhesive tape (generic term)
+masochism|1
+(noun)|sexual pleasure (generic term)
+masochist|1
+(noun)|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)|sadist (antonym)
+masochistic|1
+(adj)|sadistic (antonym)
+mason|5
+(noun)|Mason|George Mason|American Revolutionary leader (generic term)
+(noun)|Mason|James Mason|James Neville Mason|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Mason|A. E. W. Mason|Alfred Edward Woodley Mason|writer (generic term)|author (generic term)
+(noun)|stonemason|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|Freemason|Mason|brother (generic term)
+mason's level|1
+(noun)|level (generic term)|spirit level (generic term)
+mason's trowel|1
+(noun)|brick trowel|trowel (generic term)
+mason-dixon line|1
+(noun)|Mason-Dixon line|Mason and Dixon line|Mason and Dixon's line|state line (generic term)|state boundary (generic term)
+mason and dixon's line|1
+(noun)|Mason-Dixon line|Mason and Dixon line|Mason and Dixon's line|state line (generic term)|state boundary (generic term)
+mason and dixon line|1
+(noun)|Mason-Dixon line|Mason and Dixon line|Mason and Dixon's line|state line (generic term)|state boundary (generic term)
+mason bee|1
+(noun)|bee (generic term)
+mason city|1
+(noun)|Mason City|town (generic term)
+mason jar|1
+(noun)|Mason jar|jar (generic term)
+mason wasp|2
+(noun)|sphecoid wasp (generic term)|sphecoid (generic term)
+(noun)|vespid (generic term)|vespid wasp (generic term)
+masonic|2
+(adj)|craftsman|artisan|journeyman|artificer (related term)|trade|craft (related term)
+(adj)|Masonic|brother (related term)|secret society (related term)
+masonite|1
+(noun)|Masonite|fiberboard (generic term)|fibreboard (generic term)|particle board (generic term)
+masonry|3
+(noun)|structure (generic term)|construction (generic term)
+(noun)|Freemasonry|Masonry|secret society (generic term)
+(noun)|trade (generic term)|craft (generic term)
+masora|1
+(noun)|Masorah|Masora|textual criticism (generic term)
+masorah|1
+(noun)|Masorah|Masora|textual criticism (generic term)
+masorete|1
+(noun)|Masorete|Massorete|Masorite|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+masoretic|1
+(adj)|Masoretic|textual criticism (related term)
+masorite|1
+(noun)|Masorete|Massorete|Masorite|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+masoud|1
+(noun)|Masoud|Ahmad Shah Masoud|leader (generic term)
+masqat|1
+(noun)|Muscat|Masqat|capital of Oman|national capital (generic term)|port (generic term)
+masque|1
+(noun)|masquerade|masquerade party|mask|party (generic term)
+masquer|1
+(noun)|masquerader|masker|participant (generic term)
+masquerade|5
+(noun)|masquerade party|masque|mask|party (generic term)
+(noun)|fancy dress|masquerade costume|costume (generic term)|disguise (generic term)
+(noun)|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+(verb)|disguise (generic term)
+(verb)|pose (generic term)|impersonate (generic term)|personate (generic term)
+masquerade ball|1
+(noun)|masked ball|fancy-dress ball|ball (generic term)|formal (generic term)|masquerade (generic term)|masquerade party (generic term)|masque (generic term)|mask (generic term)
+masquerade costume|1
+(noun)|fancy dress|masquerade|costume (generic term)|disguise (generic term)
+masquerade party|1
+(noun)|masquerade|masque|mask|party (generic term)
+masquerader|1
+(noun)|masker|masquer|participant (generic term)
+mass|11
+(adj)|aggregate|aggregated|aggregative|collective (similar term)
+(noun)|fundamental quantity (generic term)|fundamental measure (generic term)|physical property (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|Mass|religious ceremony (generic term)|religious ritual (generic term)
+(noun)|body (generic term)
+(noun)|multitude|masses|hoi polloi|people|the great unwashed|group (generic term)|grouping (generic term)
+(noun)|bulk|volume|magnitude (generic term)
+(noun)|Mass|religious music (generic term)|church music (generic term)
+(noun)|Mass|prayer (generic term)
+(verb)|crowd (generic term)|crowd together (generic term)
+mass-action principle|1
+(noun)|mass action|principle (generic term)|rule (generic term)
+mass-energy equivalence|1
+(noun)|principle (generic term)|rule (generic term)
+mass-produce|1
+(verb)|manufacture (generic term)|fabricate (generic term)|construct (generic term)
+mass-produced|1
+(adj)|factory-made (similar term)
+mass-spectrometric|1
+(adj)|spectroscope|prism spectroscope (related term)
+mass action|1
+(noun)|mass-action principle|principle (generic term)|rule (generic term)
+mass card|1
+(noun)|Mass card|sympathy card (generic term)
+mass culture|1
+(noun)|culture (generic term)
+mass defect|1
+(noun)|mass deficiency|mass (generic term)
+mass deficiency|1
+(noun)|mass defect|mass (generic term)
+mass energy|1
+(noun)|mass (generic term)
+mass hysteria|1
+(noun)|epidemic hysertia|craze (generic term)|delirium (generic term)|frenzy (generic term)|fury (generic term)|hysteria (generic term)
+mass medium|1
+(noun)|medium|transmission (generic term)
+mass meeting|1
+(noun)|rally|gathering (generic term)|assemblage (generic term)
+mass murder|1
+(noun)|slaughter|massacre|carnage|butchery|murder (generic term)|slaying (generic term)|execution (generic term)
+mass murderer|1
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+mass noun|1
+(noun)|noun (generic term)
+mass number|1
+(noun)|nucleon number|mass unit (generic term)
+mass production|1
+(noun)|production (generic term)
+mass rapid transit|1
+(noun)|rapid transit|public transit (generic term)
+mass spectrograph|1
+(noun)|mass spectrometer (generic term)|spectrometer (generic term)
+mass spectrometer|1
+(noun)|spectrometer|spectroscope (generic term)|prism spectroscope (generic term)
+mass spectroscopic|1
+(adj)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis (related term)
+mass spectroscopy|1
+(noun)|spectroscopy (generic term)|spectrometry (generic term)|spectroscopic analysis (generic term)|spectrum analysis (generic term)|spectrographic analysis (generic term)
+mass spectrum|1
+(noun)|spectrum (generic term)
+mass unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+massachuset|2
+(noun)|Massachuset|Massachusetts|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+(noun)|Massachuset|Massachusetts|Algonquian (generic term)|Algonquin (generic term)
+massachusetts|4
+(noun)|Massachusetts|Bay State|Old Colony|MA|American state (generic term)
+(noun)|Massachuset|Massachusetts|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Massachusetts|Massachusetts Bay Colony|Colony (generic term)
+(noun)|Massachuset|Massachusetts|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+massachusetts bay|1
+(noun)|Massachusetts Bay|bay (generic term)|embayment (generic term)
+massachusetts bay colony|1
+(noun)|Massachusetts|Massachusetts Bay Colony|Colony (generic term)
+massachusetts fern|1
+(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern (generic term)
+massachusetts institute of technology|1
+(noun)|Massachusetts Institute of Technology|MIT|university (generic term)
+massacre|2
+(noun)|slaughter|mass murder|carnage|butchery|murder (generic term)|slaying (generic term)|execution (generic term)
+(verb)|slaughter|mow down|kill (generic term)
+massage|3
+(noun)|treatment (generic term)
+(verb)|rub down|knead|manipulate (generic term)
+(verb)|treat (generic term)|care for (generic term)
+massage parlor|2
+(noun)|whorehouse (generic term)|brothel (generic term)|bordello (generic term)|bagnio (generic term)|house of prostitution (generic term)|house of ill repute (generic term)|bawdyhouse (generic term)|cathouse (generic term)|sporting house (generic term)
+(noun)|place of business (generic term)|business establishment (generic term)
+massager|1
+(noun)|physical therapist (generic term)|physiotherapist (generic term)
+massasauga|2
+(noun)|ground rattler|Sistrurus miliaris|rattlesnake (generic term)|rattler (generic term)
+(noun)|massasauga rattler|Sistrurus catenatus|rattlesnake (generic term)|rattler (generic term)
+massasauga rattler|1
+(noun)|massasauga|Sistrurus catenatus|rattlesnake (generic term)|rattler (generic term)
+massasoit|1
+(noun)|Massasoit|Indian chief (generic term)|Indian chieftain (generic term)|Wampanoag (generic term)
+massawa|1
+(noun)|Massawa|town (generic term)|port (generic term)
+masse|1
+(noun)|masse shot|stroke (generic term)|shot (generic term)
+masse shot|1
+(noun)|masse|stroke (generic term)|shot (generic term)
+massed|1
+(adj)|accumulated|amassed|assembled|collected|congregate|concentrated (similar term)
+massed fire|1
+(noun)|concentrated fire|fire (generic term)|firing (generic term)
+massenet|1
+(noun)|Massenet|Jules Emile Frederic Massenet|composer (generic term)
+masses|1
+(noun)|multitude|mass|hoi polloi|people|the great unwashed|group (generic term)|grouping (generic term)
+masseter|1
+(noun)|facial muscle (generic term)
+masseur|1
+(noun)|massager (generic term)
+masseuse|1
+(noun)|massager (generic term)
+massicot|1
+(noun)|massicotite|lead ore (generic term)
+massicotite|1
+(noun)|massicot|lead ore (generic term)
+massif|1
+(noun)|geological formation (generic term)|formation (generic term)
+massif central|1
+(noun)|Massif Central|tableland (generic term)|plateau (generic term)|massif (generic term)
+massine|1
+(noun)|Massine|Leonide Fedorovitch Massine|Leonid Fyodorovich Myasin|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+massive|4
+(adj)|monolithic|monumental|large (similar term)|big (similar term)
+(adj)|solid (similar term)
+(adj)|large (similar term)|big (similar term)
+(adj)|heavy (similar term)
+massiveness|2
+(noun)|bulkiness|largeness (generic term)|bigness (generic term)
+(noun)|heft|heftiness|ponderousness|ponderosity|heaviness (generic term)|weightiness (generic term)
+massorete|1
+(noun)|Masorete|Massorete|Masorite|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+mast|4
+(noun)|spar (generic term)
+(noun)|nut (generic term)
+(noun)|feed (generic term)|provender (generic term)
+(noun)|pole (generic term)
+mast cell|1
+(noun)|mastocyte|labrocyte|somatic cell (generic term)|vegetative cell (generic term)
+mastaba|1
+(noun)|mastabah|grave (generic term)|tomb (generic term)
+mastabah|1
+(noun)|mastaba|grave (generic term)|tomb (generic term)
+mastalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+mastectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+masted|1
+(adj)|spar (related term)
+master|14
+(noun)|maestro|artist (generic term)|creative person (generic term)
+(noun)|overlord|lord|ruler (generic term)|swayer (generic term)
+(noun)|victor|superior|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|employer (generic term)
+(noun)|headmaster|schoolmaster|principal (generic term)|school principal (generic term)|head teacher (generic term)|head (generic term)
+(noun)|master copy|original|creation (generic term)
+(noun)|captain|sea captain|skipper|officer (generic term)|ship's officer (generic term)
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|professional|authority (generic term)
+(noun)|passkey|passe-partout|master key|key (generic term)
+(verb)|get the hang|know (generic term)
+(verb)|overcome|get over|subdue|surmount|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|dominate|control (generic term)|command (generic term)
+(verb)|control|know (generic term)
+master's degree|1
+(noun)|academic degree (generic term)|degree (generic term)
+master-at-arms|1
+(noun)|petty officer (generic term)|PO (generic term)|P.O. (generic term)
+master bedroom|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+master class|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+master copy|1
+(noun)|master|original|creation (generic term)
+master cylinder|1
+(noun)|brake cylinder|hydraulic brake cylinder|cylinder (generic term)|piston chamber (generic term)
+master file|1
+(noun)|main file|computer file (generic term)
+master in business|1
+(noun)|Master in Business|Master in Business Administration|MBA|master's degree (generic term)
+master in business administration|1
+(noun)|Master in Business|Master in Business Administration|MBA|master's degree (generic term)
+master in public affairs|1
+(noun)|Master in Public Affairs|master's degree (generic term)
+master key|1
+(noun)|passkey|passe-partout|master|key (generic term)
+master of architecture|1
+(noun)|Master of Architecture|MArch|master's degree (generic term)
+master of arts|1
+(noun)|Master of Arts|MA|Artium Magister|AM|master's degree (generic term)
+master of arts in library science|1
+(noun)|Master of Arts in Library Science|MALS|master's degree (generic term)
+master of arts in teaching|1
+(noun)|Master of Arts in Teaching|MAT|master's degree (generic term)
+master of ceremonies|1
+(noun)|emcee|host|entertainer (generic term)
+master of divinity|1
+(noun)|Master of Divinity|MDiv|master's degree (generic term)
+master of education|1
+(noun)|Master of Education|MEd|master's degree (generic term)
+master of fine arts|1
+(noun)|Master of Fine Arts|MFA|master's degree (generic term)
+master of laws|1
+(noun)|Master of Laws|LLM|law degree (generic term)
+master of library science|1
+(noun)|Master of Library Science|MLS|master's degree (generic term)
+master of literature|1
+(noun)|Master of Literature|MLitt|master's degree (generic term)
+master of science|1
+(noun)|Master of Science|MS|SM|MSc|master's degree (generic term)
+master of science in engineering|1
+(noun)|Master of Science in Engineering|master's degree (generic term)
+master of theology|1
+(noun)|Master of Theology|ThM|master's degree (generic term)
+master plan|1
+(noun)|plan (generic term)|program (generic term)|programme (generic term)
+master race|1
+(noun)|Herrenvolk|race (generic term)
+master sergeant|1
+(noun)|sergeant (generic term)
+mastered|1
+(adj)|down|down pat|perfect (similar term)
+masterful|2
+(adj)|consummate|masterly|virtuoso|skilled (similar term)
+(adj)|imperious|domineering (similar term)
+mastering|2
+(noun)|education (generic term)
+(noun)|recording (generic term)|transcription (generic term)
+masterless|1
+(adj)|lordless|uncontrolled (similar term)
+masterly|1
+(adj)|consummate|masterful|virtuoso|skilled (similar term)
+mastermind|3
+(noun)|originator|conceiver|creator (generic term)
+(noun)|genius|brain|brainiac|Einstein|intellectual (generic term)|intellect (generic term)
+(verb)|engineer|direct|organize|organise|orchestrate|plan (generic term)
+masterpiece|2
+(noun)|chef-d'oeuvre|work (generic term)|piece of work (generic term)
+(noun)|accomplishment (generic term)|achievement (generic term)
+masters|1
+(noun)|Masters|Edgar Lee Masters|poet (generic term)
+mastership|2
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+masterstroke|1
+(noun)|accomplishment (generic term)|achievement (generic term)
+masterwort|1
+(noun)|astrantia|herb (generic term)|herbaceous plant (generic term)
+mastery|3
+(noun)|command|control|skillfulness (generic term)
+(noun)|domination|supremacy|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|subordination|domination (generic term)
+masthead|3
+(noun)|flag|list (generic term)|listing (generic term)
+(noun)|title (generic term)
+(noun)|top (generic term)
+mastic|3
+(noun)|natural resin (generic term)
+(noun)|cement (generic term)|filler (generic term)
+(noun)|mastic tree|lentisk|Pistacia lentiscus|shrub (generic term)|bush (generic term)
+mastic tree|1
+(noun)|mastic|lentisk|Pistacia lentiscus|shrub (generic term)|bush (generic term)
+masticate|2
+(verb)|knead (generic term)|work (generic term)
+(verb)|chew|manducate|jaw|grate (generic term)|grind (generic term)
+mastication|1
+(noun)|chew|chewing|manduction|change of state (generic term)
+masticophis|1
+(noun)|Masticophis|genus Masticophis|reptile genus (generic term)
+masticophis bilineatus|1
+(noun)|Sonoran whipsnake|Masticophis bilineatus|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+masticophis flagellum|1
+(noun)|coachwhip|coachwhip snake|Masticophis flagellum|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+masticophis lateralis|1
+(noun)|California whipsnake|striped racer|Masticophis lateralis|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+mastiff|1
+(noun)|working dog (generic term)
+mastiff bat|1
+(noun)|carnivorous bat (generic term)|microbat (generic term)
+mastigomycota|1
+(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division (generic term)
+mastigomycotina|1
+(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division (generic term)
+mastigophora|1
+(noun)|Mastigophora|class Mastigophora|Flagellata|class Flagellata|class (generic term)
+mastigophoran|1
+(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophore|protozoan (generic term)|protozoon (generic term)
+mastigophore|1
+(noun)|flagellate|flagellate protozoan|flagellated protozoan|mastigophoran|protozoan (generic term)|protozoon (generic term)
+mastigoproctus|1
+(noun)|Mastigoproctus|genus Mastigoproctus|arthropod genus (generic term)
+mastigoproctus giganteus|1
+(noun)|vinegarroon|Mastigoproctus giganteus|whip-scorpion (generic term)|whip scorpion (generic term)
+mastitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+mastocyte|1
+(noun)|mast cell|labrocyte|somatic cell (generic term)|vegetative cell (generic term)
+mastodon|1
+(noun)|mastodont|proboscidean (generic term)|proboscidian (generic term)
+mastodont|1
+(noun)|mastodon|proboscidean (generic term)|proboscidian (generic term)
+mastoid|3
+(adj)|process|outgrowth|appendage (related term)
+(adj)|mastoidal|reproductive organ|sex organ (related term)
+(noun)|mastoid process|mastoid bone|mastoidal|process (generic term)|outgrowth (generic term)|appendage (generic term)
+mastoid bone|1
+(noun)|mastoid|mastoid process|mastoidal|process (generic term)|outgrowth (generic term)|appendage (generic term)
+mastoid process|1
+(noun)|mastoid|mastoid bone|mastoidal|process (generic term)|outgrowth (generic term)|appendage (generic term)
+mastoidal|2
+(adj)|mastoid|reproductive organ|sex organ (related term)
+(noun)|mastoid|mastoid process|mastoid bone|process (generic term)|outgrowth (generic term)|appendage (generic term)
+mastoidale|1
+(noun)|craniometric point (generic term)
+mastoidectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+mastoiditis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+mastopathy|1
+(noun)|mazopathy|pathology (generic term)
+mastopexy|1
+(noun)|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+mastotermes|1
+(noun)|Mastotermes|genus Mastotermes|arthropod genus (generic term)
+mastotermes darwiniensis|1
+(noun)|Mastotermes darwiniensis|termite (generic term)|white ant (generic term)
+mastotermes electrodominicus|1
+(noun)|Mastotermes electrodominicus|termite (generic term)|white ant (generic term)
+mastotermes electromexicus|1
+(noun)|Mastotermes electromexicus|termite (generic term)|white ant (generic term)
+mastotermitidae|1
+(noun)|Mastotermitidae|family Mastotermitidae|arthropod family (generic term)
+masturbate|2
+(verb)|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|wank|fuck off|she-bop|jack off|jerk off|stimulate (generic term)|excite (generic term)|stir (generic term)
+masturbation|1
+(noun)|onanism|autoeroticism (generic term)|autoerotism (generic term)
+masturbator|1
+(noun)|onanist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+mat|10
+(adj)|flat|matt|matte|matted|dull (similar term)
+(noun)|floor cover (generic term)|floor covering (generic term)
+(noun)|matting|mounting (generic term)
+(noun)|gym mat|sports equipment (generic term)
+(noun)|mass (generic term)
+(noun)|Master of Arts in Teaching|MAT|master's degree (generic term)
+(noun)|flatness|lusterlessness|lustrelessness|matt|matte|dullness (generic term)
+(noun)|pad (generic term)
+(verb)|entangle|tangle|snarl|twist (generic term)|twine (generic term)|distort (generic term)|unsnarl (antonym)|disentangle (antonym)
+(verb)|felt|felt up|mat up|matt-up|matte up|matte|change (generic term)
+mat up|1
+(verb)|felt|felt up|matt-up|matte up|matte|mat|change (generic term)
+mata hari|1
+(noun)|Mata Hari|Margarete Gertrud Zelle|spy (generic term)|undercover agent (generic term)
+matabele|1
+(noun)|Ndebele|Matabele|Nguni (generic term)
+matador|1
+(noun)|bullfighter (generic term)|toreador (generic term)
+matai|1
+(noun)|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer (generic term)|coniferous tree (generic term)
+matakam|1
+(noun)|Matakam|Mafa|Biu-Mandara (generic term)
+matamoros|1
+(noun)|Matamoros|city (generic term)|metropolis (generic term)|urban center (generic term)
+match|19
+(noun)|lucifer|friction match|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+(noun)|mate|duplicate (generic term)|duplication (generic term)
+(noun)|score (generic term)
+(noun)|catch|adult (generic term)|grownup (generic term)
+(noun)|peer|equal|compeer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|couple|mates|family (generic term)|family unit (generic term)
+(noun)|counterpart (generic term)|opposite number (generic term)|vis-a-vis (generic term)
+(verb)|fit|correspond|check|jibe|gibe|tally|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|mate|couple|pair|twin|join (generic term)|bring together (generic term)
+(verb)|equal|touch|rival|compete (generic term)|vie (generic term)|contend (generic term)
+(verb)|fit|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|meet|cope with|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|pit|oppose|play off|confront (generic term)|face (generic term)
+(verb)|adjust (generic term)|conform (generic term)|adapt (generic term)
+(verb)|equal|equalize|equalise|equate|change (generic term)|alter (generic term)|modify (generic term)
+match-up|1
+(noun)|matchup|pairing (generic term)
+match game|1
+(noun)|test match|matched game|match (generic term)
+match plane|1
+(noun)|tonguing and grooving plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+match play|1
+(noun)|golf (generic term)|golf game (generic term)
+match point|1
+(noun)|point (generic term)
+matchboard|1
+(noun)|board (generic term)|plank (generic term)
+matchbook|1
+(noun)|folder (generic term)
+matchbox|1
+(noun)|box (generic term)
+matchbush|1
+(noun)|matchweed|subshrub (generic term)|suffrutex (generic term)
+matched|2
+(adj)|competitive (similar term)|competitory (similar term)
+(adj)|compatible (similar term)|well-matched (similar term)|coordinated (similar term)|co-ordinated (similar term)|matching (similar term)|duplicate (similar term)|matching (similar term)|twin (similar term)|twinned (similar term)|mated (similar term)|paired (similar term)|one-to-one (similar term)|compatible (related term)|mated (related term)|mismatched (antonym)
+matched game|1
+(noun)|test match|match game|match (generic term)
+matcher|1
+(noun)|matchmaker|marriage broker|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+matchet|1
+(noun)|machete|panga|knife (generic term)
+matching|2
+(adj)|duplicate|twin|twinned|matched (similar term)
+(adj)|coordinated|co-ordinated|matched (similar term)
+matching funds|1
+(noun)|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+matchless|1
+(adj)|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+matchlock|1
+(noun)|musket (generic term)
+matchmaker|1
+(noun)|matcher|marriage broker|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+matchmaking|1
+(noun)|mediation (generic term)|intermediation (generic term)
+matchstick|1
+(noun)|stick (generic term)
+matchup|1
+(noun)|match-up|pairing (generic term)
+matchweed|1
+(noun)|matchbush|subshrub (generic term)|suffrutex (generic term)
+matchwood|3
+(noun)|splinters|wood (generic term)
+(noun)|wood (generic term)
+(noun)|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+mate|12
+(noun)|first mate|officer (generic term)|ship's officer (generic term)
+(noun)|teammate|associate (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|spouse|partner|married person|better half|relative (generic term)|relation (generic term)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+(noun)|match|duplicate (generic term)|duplication (generic term)
+(noun)|Paraguay tea|Ilex paraguariensis|holly (generic term)
+(noun)|friend (generic term)
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|checkmate|chess move (generic term)
+(verb)|copulate|pair|couple|join (generic term)|conjoin (generic term)
+(verb)|match|couple|pair|twin|join (generic term)|bring together (generic term)
+(verb)|checkmate|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+mated|3
+(adj)|paired (similar term)|married (related term)|matched (related term)|unmated (antonym)
+(adj)|paired|matched (similar term)
+(adj)|married (similar term)
+mateless|2
+(adj)|unmated (similar term)
+(adj)|unmarried (similar term)|single (similar term)
+matelote|1
+(noun)|fish stew (generic term)
+mater|1
+(noun)|mother (generic term)|female parent (generic term)
+mater turrita|1
+(noun)|Cybele|Dindymene|Great Mother|Magna Mater|Mater Turrita|Phrygian deity (generic term)
+materfamilias|1
+(noun)|matriarch|woman (generic term)|adult female (generic term)|head of household (generic term)
+materia medica|1
+(noun)|pharmacology|pharmacological medicine|medicine (generic term)|medical specialty (generic term)
+material|11
+(adj)|worldly (similar term)
+(adj)|physical (similar term)|physical (similar term)|substantial (related term)|real (related term)|material (related term)|immaterial (antonym)
+(adj)|crucial (similar term)|immaterial (antonym)
+(adj)|physical (similar term)
+(adj)|corporeal|bodily (similar term)|bodied (similar term)|corporal (similar term)|corporate (similar term)|embodied (similar term)|incarnate (similar term)|reincarnate (similar term)|bodied (related term)|incorporeal (antonym)
+(adj)|substantial|real|material (related term)|insubstantial (antonym)
+(noun)|stuff|substance (generic term)|matter (generic term)
+(noun)|information (generic term)|info (generic term)
+(noun)|equipment (generic term)
+(noun)|fabric|cloth|textile|artifact (generic term)|artefact (generic term)
+(noun)|applicant (generic term)|applier (generic term)
+material body|1
+(noun)|human body|physical body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+material breach|1
+(noun)|breach of contract (generic term)
+material possession|1
+(noun)|property|belongings|holding|possession (generic term)
+material resource|1
+(noun)|assets (generic term)
+material witness|1
+(noun)|witness (generic term)
+materialisation|3
+(noun)|materialization|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|materialization|manifestation|appearance (generic term)
+(noun)|offspring|materialization|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+materialise|1
+(verb)|happen|materialize|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|dematerialise (antonym)|dematerialize (antonym)
+materialism|2
+(noun)|philistinism|desire (generic term)
+(noun)|physicalism|philosophical doctrine (generic term)|philosophical theory (generic term)
+materialist|2
+(noun)|capitalist (generic term)
+(noun)|disbeliever (generic term)|nonbeliever (generic term)|unbeliever (generic term)
+materialistic|2
+(adj)|mercenary|worldly-minded|worldly (similar term)
+(adj)|bourgeois|conservative|middle-class (similar term)
+materiality|2
+(noun)|relevance (generic term)|relevancy (generic term)|immateriality (antonym)
+(noun)|physicalness|corporeality|corporality|quality (generic term)|incorporeality (antonym)|immateriality (antonym)
+materialization|3
+(noun)|materialisation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|materialisation|manifestation|appearance (generic term)
+(noun)|offspring|materialisation|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+materialize|1
+(verb)|happen|materialise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|dematerialise (antonym)|dematerialize (antonym)
+materials handling|1
+(noun)|handling (generic term)
+materiel|1
+(noun)|equipage|equipment (generic term)
+maternal|4
+(adj)|maternalistic (similar term)|motherlike (similar term)|motherly (similar term)|matriarchal (related term)|paternal (antonym)
+(adj)|parent (related term)
+(adj)|parental|paternal|filial (antonym)
+(adj)|enate|enatic|related (similar term)
+maternal-infant bonding|1
+(noun)|bonding (generic term)
+maternal language|1
+(noun)|mother tongue|first language|natural language (generic term)|tongue (generic term)
+maternal quality|1
+(noun)|motherliness|maternalism|maternity|parental quality (generic term)
+maternalism|2
+(noun)|motherliness|maternal quality|maternity|parental quality (generic term)
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+maternalistic|1
+(adj)|maternal (similar term)
+maternally|1
+(adv)|motherly
+maternity|3
+(noun)|pregnancy|gestation|physiological state (generic term)|physiological condition (generic term)
+(noun)|motherhood|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|motherliness|maternalism|maternal quality|parental quality (generic term)
+maternity hospital|1
+(noun)|hospital (generic term)|infirmary (generic term)
+maternity ward|1
+(noun)|ward (generic term)|hospital ward (generic term)
+mates|1
+(noun)|couple|match|family (generic term)|family unit (generic term)
+matey|1
+(adj)|chummy|pally|palsy-walsy|friendly (similar term)
+math|1
+(noun)|mathematics|maths|science (generic term)|scientific discipline (generic term)
+math teacher|1
+(noun)|mathematics teacher|teacher (generic term)|instructor (generic term)
+mathematical|5
+(adj)|science|scientific discipline (related term)
+(adj)|numerical|nonverbal (similar term)|verbal (antonym)
+(adj)|unquestionable (similar term)
+(adj)|possible (similar term)
+(adj)|exact (similar term)
+mathematical function|1
+(noun)|function|mathematical relation (generic term)
+mathematical group|1
+(noun)|group|set (generic term)
+mathematical logic|1
+(noun)|symbolic logic|formal logic|logic (generic term)|logical system (generic term)|system of logic (generic term)
+mathematical notation|1
+(noun)|notation (generic term)|notational system (generic term)
+mathematical operation|1
+(noun)|mathematical process|operation|calculation (generic term)|computation (generic term)|computing (generic term)
+mathematical process|1
+(noun)|mathematical operation|operation|calculation (generic term)|computation (generic term)|computing (generic term)
+mathematical product|1
+(noun)|product|quantity (generic term)
+mathematical proof|1
+(noun)|proof (generic term)
+mathematical relation|1
+(noun)|relation (generic term)
+mathematical space|1
+(noun)|topological space|space (generic term)|infinite (generic term)|set (generic term)
+mathematical statement|1
+(noun)|statement (generic term)
+mathematical statistician|1
+(noun)|statistician|mathematician (generic term)
+mathematical symbol|1
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+mathematician|1
+(noun)|scientist (generic term)|man of science (generic term)
+mathematics|1
+(noun)|math|maths|science (generic term)|scientific discipline (generic term)
+mathematics department|1
+(noun)|department of mathematics|academic department (generic term)
+mathematics teacher|1
+(noun)|math teacher|teacher (generic term)|instructor (generic term)
+mathew b. brady|1
+(noun)|Brady|Mathew B. Brady|photographer (generic term)|lensman (generic term)
+mathias|1
+(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete (generic term)|jock (generic term)
+maths|1
+(noun)|mathematics|math|science (generic term)|scientific discipline (generic term)
+matilija poppy|1
+(noun)|California tree poppy|Romneya coulteri|subshrub (generic term)|suffrutex (generic term)
+matinee|1
+(noun)|theatrical performance (generic term)|theatrical (generic term)|representation (generic term)|histrionics (generic term)
+matinee idol|1
+(noun)|idol|star (generic term)|principal (generic term)|lead (generic term)
+mating|1
+(noun)|coupling|pairing|conjugation|union|sexual union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+matins|1
+(noun)|morning prayer|canonical hour (generic term)
+matisse|1
+(noun)|Matisse|Henri Matisse|Henri Emile Benoit Matisse|painter (generic term)
+matman|1
+(noun)|wrestler|grappler|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+matoaka|1
+(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan (generic term)
+matriarch|2
+(noun)|materfamilias|woman (generic term)|adult female (generic term)|head of household (generic term)
+(noun)|woman (generic term)|adult female (generic term)
+matriarchal|1
+(adj)|matriarchic (similar term)|matricentric (similar term)|maternal (related term)|patriarchal (antonym)
+matriarchate|1
+(noun)|matriarchy|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+matriarchic|1
+(adj)|matriarchal (similar term)
+matriarchy|1
+(noun)|matriarchate|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+matric|1
+(noun)|matriculation|admission (generic term)|admittance (generic term)
+matricaria|1
+(noun)|Matricaria|genus Matricaria|asterid dicot genus (generic term)
+matricaria chamomilla|1
+(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb (generic term)|herbaceous plant (generic term)
+matricaria inodorum|1
+(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+matricaria matricarioides|1
+(noun)|pineapple weed|rayless chamomile|Matricaria matricarioides|herb (generic term)|herbaceous plant (generic term)
+matricaria oreades|1
+(noun)|turfing daisy|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb (generic term)|herbaceous plant (generic term)
+matricaria recutita|1
+(noun)|sweet false chamomile|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb (generic term)|herbaceous plant (generic term)
+matricaria tchihatchewii|1
+(noun)|turfing daisy|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb (generic term)|herbaceous plant (generic term)
+matricentric|1
+(adj)|matriarchal (similar term)
+matricide|1
+(noun)|parricide (generic term)
+matriculate|2
+(noun)|college student (generic term)|university student (generic term)
+(verb)|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)
+matriculation|1
+(noun)|matric|admission (generic term)|admittance (generic term)
+matrikin|1
+(noun)|enate|matrilineal kin|matrisib|matrilineal sib|relative (generic term)|relation (generic term)
+matrilineage|1
+(noun)|enation|cognation|unilateral descent (generic term)
+matrilineal|1
+(adj)|matrilinear|lineal (similar term)|direct (similar term)
+matrilineal kin|1
+(noun)|enate|matrikin|matrisib|matrilineal sib|relative (generic term)|relation (generic term)
+matrilineal sib|1
+(noun)|enate|matrikin|matrilineal kin|matrisib|relative (generic term)|relation (generic term)
+matrilinear|1
+(adj)|matrilineal|lineal (similar term)|direct (similar term)
+matrimonial|1
+(adj)|marital|married|marital status (related term)
+matrimonial law|1
+(noun)|jurisprudence (generic term)|law (generic term)|legal philosophy (generic term)
+matrimony|2
+(noun)|marriage|union|spousal relationship|wedlock|marital status (generic term)
+(noun)|sacrament (generic term)
+matrimony vine|1
+(noun)|boxthorn|shrub (generic term)|bush (generic term)
+matrisib|1
+(noun)|enate|matrikin|matrilineal kin|matrilineal sib|relative (generic term)|relation (generic term)
+matrix|5
+(noun)|array (generic term)
+(noun)|enclosure (generic term)|natural enclosure (generic term)
+(noun)|intercellular substance|ground substance|body substance (generic term)
+(noun)|animal tissue (generic term)
+(noun)|mold (generic term)|mould (generic term)|cast (generic term)
+matrix addition|1
+(noun)|matrix operation (generic term)
+matrix algebra|1
+(noun)|algebra (generic term)
+matrix inversion|1
+(noun)|matrix operation (generic term)
+matrix multiplication|1
+(noun)|matrix operation (generic term)
+matrix operation|1
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+matrix printer|1
+(noun)|dot matrix printer|dot printer|printer (generic term)
+matrix transposition|1
+(noun)|matrix operation (generic term)
+matron|3
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|wardress (generic term)
+(noun)|head nurse|nurse (generic term)|woman (generic term)|adult female (generic term)
+matron of honor|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+matronly|1
+(adj)|womanly (similar term)|feminine (similar term)
+matronymic|1
+(noun)|metronymic|name (generic term)
+matsyendra|1
+(noun)|asana (generic term)
+matt|2
+(adj)|flat|mat|matte|matted|dull (similar term)
+(noun)|flatness|lusterlessness|lustrelessness|mat|matte|dullness (generic term)
+matt-up|1
+(verb)|felt|felt up|mat up|matte up|matte|mat|change (generic term)
+matte|4
+(adj)|flat|mat|matt|matted|dull (similar term)
+(noun)|mixture (generic term)
+(noun)|flatness|lusterlessness|lustrelessness|mat|matt|dullness (generic term)
+(verb)|felt|felt up|mat up|matt-up|matte up|mat|change (generic term)
+matte up|1
+(verb)|felt|felt up|mat up|matt-up|matte|mat|change (generic term)
+matted|2
+(adj)|tangled (similar term)
+(adj)|flat|mat|matt|matte|dull (similar term)
+matter|7
+(noun)|substance|physical entity (generic term)
+(noun)|affair|thing|concern (generic term)
+(noun)|topic|subject|issue|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|trouble (generic term)|problem (generic term)
+(noun)|consequence (generic term)|import (generic term)|moment (generic term)
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(verb)|count|weigh|be (generic term)|matter to (related term)
+matter-of-course|1
+(adj)|expected (similar term)
+matter-of-fact|2
+(adj)|prosaic|unrhetorical (similar term)
+(adj)|pragmatic|pragmatical|practical (similar term)
+matter of course|1
+(noun)|foregone conclusion|ending (generic term)|conclusion (generic term)|finish (generic term)
+matter of fact|2
+(noun)|question of fact|question (generic term)|head (generic term)
+(noun)|fact (generic term)
+matter of law|1
+(noun)|question of law|question (generic term)|head (generic term)
+matter to|1
+(verb)|interest|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+matterhorn|1
+(noun)|Matterhorn|mountain peak (generic term)
+matteuccia|1
+(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus (generic term)
+matteuccia struthiopteris|1
+(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+matthew|2
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|Matthew|Gospel According to Matthew|Gospel (generic term)|Gospels (generic term)|evangel (generic term)|book (generic term)
+matthew arnold|1
+(noun)|Arnold|Matthew Arnold|poet (generic term)|literary critic (generic term)
+matthew calbraith perry|1
+(noun)|Perry|Matthew Calbraith Perry|naval officer (generic term)
+matthew flinders|1
+(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer (generic term)|adventurer (generic term)
+matthew walker|1
+(noun)|Matthew Walker|Matthew Walker knot|stopper knot (generic term)
+matthew walker knot|1
+(noun)|Matthew Walker|Matthew Walker knot|stopper knot (generic term)
+matthias schleiden|1
+(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist (generic term)|histologist (generic term)
+matthiola|1
+(noun)|Matthiola|genus Matthiola|dilleniid dicot genus (generic term)
+matthiola incana|1
+(noun)|brompton stock|Matthiola incana|stock (generic term)|gillyflower (generic term)
+matting|2
+(noun)|floor cover (generic term)|floor covering (generic term)
+(noun)|mat|mounting (generic term)
+mattock|1
+(noun)|pick (generic term)|pickax (generic term)|pickaxe (generic term)
+mattole|2
+(noun)|Mattole|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|Mattole|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+mattress|1
+(noun)|pad (generic term)
+mattress cover|1
+(noun)|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+mattress pad|1
+(noun)|pad (generic term)
+maturate|3
+(verb)|mature|grow|develop (generic term)
+(verb)|senesce|age|get on|mature|develop (generic term)
+(verb)|fester|suppurate|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+maturation|3
+(noun)|ripening|maturement|organic process (generic term)|biological process (generic term)
+(noun)|growth|growing|development|ontogeny|ontogenesis|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+(noun)|festering|suppuration|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+maturational|1
+(adj)|organic process|biological process (related term)
+mature|11
+(adj)|autumnal (similar term)|mellow (similar term)|mellowed (similar term)|ripe (similar term)|immature (antonym)
+(adj)|matured|developed (similar term)
+(adj)|adult (similar term)|big (similar term)|full-grown (similar term)|fully grown (similar term)|grown (similar term)|grownup (similar term)|abloom (similar term)|efflorescent (similar term)|fruiting (similar term)|full-blown (similar term)|matured (similar term)|headed (similar term)|marriageable (similar term)|nubile (similar term)|overblown (similar term)|prime (similar term)|meridian (similar term)|old (related term)|immature (antonym)
+(adj)|ripe|aged (similar term)|ripened (similar term)|mellow (similar term)|mellowed (similar term)|overripe (similar term)|green (antonym)
+(adj)|fledged|fledgling (similar term)|fledgeling (similar term)|full-fledged (similar term)|fully fledged (similar term)|unfledged (antonym)
+(verb)|maturate|grow|develop (generic term)
+(verb)|explicate (generic term)|formulate (generic term)|develop (generic term)
+(verb)|change (generic term)
+(verb)|ripen|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|senesce|age|get on|maturate|develop (generic term)
+(verb)|suppurate|draw (generic term)
+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 (generic term)|DM (generic term)
+matured|2
+(adj)|full-blown|mature (similar term)
+(adj)|mature|developed (similar term)
+maturely|1
+(adv)|immaturely (antonym)
+maturement|1
+(noun)|maturation|ripening|organic process (generic term)|biological process (generic term)
+matureness|1
+(noun)|maturity|state (generic term)|immaturity (antonym)
+maturity|3
+(noun)|adulthood|time of life (generic term)
+(noun)|matureness|state (generic term)|immaturity (antonym)
+(noun)|maturity date|due date|date (generic term)|day of the month (generic term)
+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 (generic term)|DM (generic term)
+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 (generic term)|DM (generic term)
+maturity date|1
+(noun)|maturity|due date|date (generic term)|day of the month (generic term)
+matutinal|1
+(adj)|time period|period of time|period (related term)
+matzah|1
+(noun)|matzo|matzoh|unleavened bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+matzah ball|1
+(noun)|matzo ball|matzoh ball|dumpling (generic term)|dumplings (generic term)
+matzah meal|1
+(noun)|matzo meal|matzoh meal|meal (generic term)
+matzo|1
+(noun)|matzoh|matzah|unleavened bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+matzo ball|1
+(noun)|matzoh ball|matzah ball|dumpling (generic term)|dumplings (generic term)
+matzo meal|1
+(noun)|matzoh meal|matzah meal|meal (generic term)
+matzoh|1
+(noun)|matzo|matzah|unleavened bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+matzoh ball|1
+(noun)|matzo ball|matzah ball|dumpling (generic term)|dumplings (generic term)
+matzoh meal|1
+(noun)|matzo meal|matzah meal|meal (generic term)
+maud gonne|1
+(noun)|Gonne|Maud Gonne|patriot (generic term)|nationalist (generic term)
+maudlin|1
+(adj)|bathetic|drippy|hokey|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+maugham|1
+(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer (generic term)|author (generic term)
+maui|1
+(noun)|Maui|Maui Island|island (generic term)
+maui island|1
+(noun)|Maui|Maui Island|island (generic term)
+maul|3
+(noun)|sledge|sledgehammer|hammer (generic term)
+(verb)|cleave (generic term)|split (generic term)|rive (generic term)
+(verb)|mangle|deface (generic term)|disfigure (generic term)|blemish (generic term)
+maul oak|1
+(noun)|canyon oak|canyon live oak|iron oak|Quercus chrysolepis|live oak (generic term)
+mauldin|1
+(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist (generic term)
+maule's quince|1
+(noun)|japonica|Chaenomeles japonica|flowering quince (generic term)
+mauler|1
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+maulers|1
+(noun)|hooks|meat hooks|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+maulstick|1
+(noun)|mahlstick|stick (generic term)
+mauna kea|1
+(noun)|Mauna Kea|volcano (generic term)
+mauna loa|1
+(noun)|Mauna Loa|volcano (generic term)
+maund|1
+(noun)|weight unit (generic term)|weight (generic term)
+maunder|3
+(verb)|roll (generic term)|wander (generic term)|swan (generic term)|stray (generic term)|tramp (generic term)|roam (generic term)|cast (generic term)|ramble (generic term)|rove (generic term)|range (generic term)|drift (generic term)|vagabond (generic term)
+(verb)|mumble|mutter|mussitate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+maundy|1
+(noun)|Maundy|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+maundy money|1
+(noun)|Maundy money|coin (generic term)
+maundy thursday|1
+(noun)|Maundy Thursday|Holy Thursday|Christian holy day (generic term)
+maupassant|1
+(noun)|Maupassant|Guy de Maupassant|Henri Rene Albert Guy de Maupassant|writer (generic term)|author (generic term)
+maureen catherine connolly|1
+(noun)|Connolly|Maureen Catherine Connolly|Little Mo Connolly|tennis player (generic term)
+mauriac|1
+(noun)|Mauriac|Francois Mauriac|Francois Charles Mauriac|writer (generic term)|author (generic term)
+maurice barrymore|1
+(noun)|Barrymore|Maurice Barrymore|Herbert Blythe|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+maurice chevalier|1
+(noun)|Chevalier|Maurice Chevalier|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+maurice de vlaminck|1
+(noun)|Vlaminck|Maurice de Vlaminck|painter (generic term)
+maurice hugh frederick wilkins|1
+(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist (generic term)
+maurice ravel|1
+(noun)|Ravel|Maurice Ravel|composer (generic term)
+maurice utrillo|1
+(noun)|Utrillo|Maurice Utrillo|painter (generic term)
+maurice wilkins|1
+(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist (generic term)
+mauritania|1
+(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country (generic term)|African nation (generic term)
+mauritanian|2
+(adj)|Mauritanian|Mauritian|island (related term)|country|state|land (related term)
+(noun)|Mauritanian|African (generic term)
+mauritanian monetary unit|1
+(noun)|Mauritanian monetary unit|monetary unit (generic term)
+mauritanie|1
+(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country (generic term)|African nation (generic term)
+mauritian|2
+(adj)|Mauritanian|Mauritian|island (related term)|country|state|land (related term)
+(noun)|Mauritian|native (generic term)|indigen (generic term)|indigene (generic term)
+mauritian monetary unit|1
+(noun)|Mauritian monetary unit|monetary unit (generic term)
+mauritian rupee|1
+(noun)|Mauritian rupee|rupee|Mauritian monetary unit (generic term)
+mauritius|2
+(noun)|Mauritius|Republic of Mauritius|country (generic term)|state (generic term)|land (generic term)
+(noun)|Mauritius|island (generic term)
+maurois|1
+(noun)|Maurois|Andre Maurois|Emile Herzog|writer (generic term)|author (generic term)
+mauser|2
+(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor (generic term)|discoverer (generic term)|artificer (generic term)|arms manufacturer (generic term)
+(noun)|Mauser|repeating firearm (generic term)|repeater (generic term)
+mausoleum|1
+(noun)|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+mausoleum at halicarnasus|1
+(noun)|Mausoleum at Halicarnasus|mausoleum (generic term)
+mauve|2
+(adj)|chromatic (similar term)
+(noun)|purple (generic term)|purpleness (generic term)
+mauve-blue|1
+(adj)|chromatic (similar term)
+mauve-pink|1
+(adj)|chromatic (similar term)
+maven|1
+(noun)|ace|adept|champion|sensation|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+maverick|3
+(adj)|irregular|unorthodox|unconventional (similar term)
+(noun)|rebel|nonconformist (generic term)|recusant (generic term)
+(noun)|calf (generic term)
+mavin|1
+(noun)|ace|adept|champion|sensation|maven|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+mavis|1
+(noun)|song thrush|throstle|Turdus philomelos|thrush (generic term)
+maw|1
+(noun)|trap|cakehole|hole|yap|gob|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+mawkish|1
+(adj)|bathetic|drippy|hokey|maudlin|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+mawkishly|1
+(adv)|drippily
+mawkishness|2
+(noun)|bathos|sentimentality (generic term)
+(noun)|sentimentality|drippiness|mushiness|soupiness|sloppiness|emotionality (generic term)|emotionalism (generic term)
+mawlamyine|1
+(noun)|Moulmein|Mawlamyine|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+max|1
+(noun)|soap|scoop|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+max beerbohm|1
+(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer (generic term)|author (generic term)|caricaturist (generic term)
+max born|1
+(noun)|Born|Max Born|nuclear physicist (generic term)
+max bruch|1
+(noun)|Bruch|Max Bruch|composer (generic term)
+max delbruck|1
+(noun)|Delbruck|Max Delbruck|biologist (generic term)|life scientist (generic term)
+max ernst|1
+(noun)|Ernst|Max Ernst|painter (generic term)
+max ferdinand perutz|1
+(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist (generic term)
+max karl ernst ludwig planck|1
+(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist (generic term)
+max muller|1
+(noun)|Muller|Max Muller|Friedrich Max Muller|philologist (generic term)|philologue (generic term)
+max out|1
+(verb)|reach (generic term)|hit (generic term)|attain (generic term)
+max perutz|1
+(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist (generic term)
+max planck|1
+(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist (generic term)
+max weber|2
+(noun)|Weber|Max Weber|painter (generic term)
+(noun)|Weber|Max Weber|sociologist (generic term)
+maxfield frederick parrish|1
+(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter (generic term)
+maxfield parrish|1
+(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter (generic term)
+maxi|2
+(adj)|mini (antonym)|midi (antonym)
+(noun)|skirt (generic term)
+maxilla|1
+(noun)|upper jaw|upper jawbone|maxillary|jaw (generic term)
+maxillaria|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+maxillary|2
+(adj)|jaw (related term)
+(noun)|upper jaw|upper jawbone|maxilla|jaw (generic term)
+maxillary artery|1
+(noun)|arteria maxillaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+maxillary sinus|1
+(noun)|sinus (generic term)
+maxillary vein|1
+(noun)|vena maxillaris|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+maxillodental|1
+(adj)|jaw (related term)
+maxillofacial|1
+(adj)|external body part (related term)
+maxillomandibular|1
+(adj)|bone|os (related term)
+maxim|2
+(noun)|axiom|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|Maxim|Sir Hiram Stevens Maxim|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+maxim gorki|1
+(noun)|Gorky|Maksim Gorky|Gorki|Maxim Gorki|Aleksey Maksimovich Peshkov|Aleksey Maximovich Peshkov|writer (generic term)|author (generic term)
+maxim gun|1
+(noun)|Maxim gun|machine gun (generic term)
+maximal|1
+(adj)|maximum|supreme (similar term)|minimum (antonym)|minimal (antonym)
+maximally|1
+(adv)|minimally (antonym)
+maximation|1
+(noun)|maximization|maximisation|increase (generic term)|step-up (generic term)|minimization (antonym)
+maximian|1
+(noun)|Maximian|Marcus Aurelius Valerius Maximianus|Herculius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+maximilian's sunflower|1
+(noun)|Maximilian's sunflower|Helianthus maximilianii|sunflower (generic term)|helianthus (generic term)
+maximilien paul emile littre|1
+(noun)|Littre|Maximilien Paul Emile Littre|lexicographer (generic term)|lexicologist (generic term)
+maximisation|1
+(noun)|maximization|maximation|increase (generic term)|step-up (generic term)|minimization (antonym)
+maximise|2
+(verb)|maximize|exploit (generic term)|tap (generic term)
+(verb)|maximize|increase (generic term)|minimise (antonym)|minimize (antonym)
+maximising|1
+(adj)|maximizing|increasing (similar term)
+maximization|2
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|maximisation|maximation|increase (generic term)|step-up (generic term)|minimization (antonym)
+maximize|2
+(verb)|maximise|increase (generic term)|minimise (antonym)|minimize (antonym)
+(verb)|maximise|exploit (generic term)|tap (generic term)
+maximizing|1
+(adj)|maximising|increasing (similar term)
+maximum|4
+(adj)|maximal|supreme (similar term)|minimum (antonym)|minimal (antonym)
+(noun)|upper limit|extremum (generic term)|peak (generic term)|large indefinite quantity (generic term)|large indefinite amount (generic term)|minimum (antonym)
+(noun)|utmost|uttermost|level best|limit (generic term)|bound (generic term)|boundary (generic term)
+(noun)|limit (generic term)|minimum (antonym)
+maximum and minimum thermometer|1
+(noun)|thermometer (generic term)
+maxmilien de bethune|1
+(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman (generic term)|solon (generic term)|national leader (generic term)
+maxmillien marie isidore de robespierre|1
+(noun)|Robespierre|Maxmillien Marie Isidore de Robespierre|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+maxostoma|1
+(noun)|Maxostoma|genus Maxostoma|fish genus (generic term)
+maxwell|2
+(noun)|Mx|flux unit (generic term)|magnetic flux unit (generic term)
+(noun)|Maxwell|J. C. Maxwell|James Clerk Maxwell|physicist (generic term)
+maxwell's demon|1
+(noun)|Maxwell's demon|imaginary being (generic term)|imaginary creature (generic term)
+maxwell's equations|1
+(noun)|Maxwell's equations|differential equation (generic term)
+maxwell-boltzmann distribution law|1
+(noun)|Maxwell-Boltzmann distribution law|Boltzmann distribution law|distribution law (generic term)
+maxwell anderson|1
+(noun)|Anderson|Maxwell Anderson|dramatist (generic term)|playwright (generic term)
+maxzide|1
+(noun)|Maxzide|antihypertensive (generic term)|antihypertensive drug (generic term)
+may|2
+(noun)|May|Gregorian calendar month (generic term)
+(noun)|whitethorn|English hawthorn|Crataegus laevigata|Crataegus oxycantha|hawthorn (generic term)|haw (generic term)
+may 1|1
+(noun)|May Day|First of May|May 1|day (generic term)
+may 24|1
+(noun)|Commonwealth Day|Empire day|May 24|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+may apple|2
+(noun)|May apple|fruit (generic term)
+(noun)|mayapple|May apple|wild mandrake|Podophyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+may beetle|2
+(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle (generic term)
+(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+may blob|1
+(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+may bug|2
+(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle (generic term)
+(noun)|June beetle|June bug|May bug|May beetle|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+may day|1
+(noun)|May Day|First of May|May 1|day (generic term)
+may fish|1
+(noun)|striped killifish|mayfish|Fundulus majalis|killifish (generic term)
+may lily|1
+(noun)|lily of the valley|May lily|Convallaria majalis|liliaceous plant (generic term)
+may queen|1
+(noun)|May queen|queen of the May|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+may wine|1
+(noun)|May wine|punch (generic term)
+maya|3
+(noun)|Mayan|Maya|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Maya|ethnic minority (generic term)
+(noun)|Maya|Mayan|Mayan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+maya lin|1
+(noun)|Lin|Maya Lin|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|architect (generic term)|designer (generic term)
+mayaca|1
+(noun)|Mayaca|genus Mayaca|monocot genus (generic term)|liliopsid genus (generic term)
+mayacaceae|1
+(noun)|Mayacaceae|family Mayacaceae|monocot family (generic term)|liliopsid family (generic term)
+mayakovski|1
+(noun)|Mayakovski|Vladimir Vladimirovich Mayakovski|poet (generic term)
+mayan|2
+(noun)|Mayan|Maya|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Maya|Mayan|Mayan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+mayan language|1
+(noun)|Maya|Mayan|Mayan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+mayapple|1
+(noun)|May apple|wild mandrake|Podophyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+maybe|1
+(adv)|possibly|perchance|perhaps|mayhap|peradventure
+mayday|1
+(noun)|Mayday|distress signal (generic term)|distress call (generic term)
+mayeng|1
+(noun)|maple-leaved bayur|Pterospermum acerifolium|tree (generic term)
+mayenne|1
+(noun)|Mayenne|French region (generic term)
+mayer|2
+(noun)|Mayer|Marie Goeppert Mayer|nuclear physicist (generic term)
+(noun)|Mayer|Louis B. Mayer|Louis Burt Mayer|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+mayetiola|1
+(noun)|Mayetiola|genus Mayetiola|arthropod genus (generic term)
+mayetiola destructor|1
+(noun)|Hessian fly|Mayetiola destructor|gall midge (generic term)|gallfly (generic term)|gall gnat (generic term)
+mayfish|1
+(noun)|striped killifish|may fish|Fundulus majalis|killifish (generic term)
+mayflower|2
+(noun)|Mayflower|ship (generic term)
+(noun)|trailing arbutus|Epigaea repens|shrub (generic term)|bush (generic term)
+mayfly|1
+(noun)|dayfly|shadfly|ephemerid (generic term)|ephemeropteran (generic term)
+mayhap|1
+(adv)|possibly|perchance|perhaps|maybe|peradventure
+mayhaw|1
+(noun)|summer haw|Crataegus aestivalis|hawthorn (generic term)|haw (generic term)
+mayhem|2
+(noun)|crime (generic term)|law-breaking (generic term)
+(noun)|havoc|disturbance (generic term)
+mayidism|1
+(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+mayo|1
+(noun)|mayonnaise|dressing (generic term)|salad dressing (generic term)
+mayonnaise|1
+(noun)|mayo|dressing (generic term)|salad dressing (generic term)
+mayor|1
+(noun)|city manager|civil authority (generic term)|politician (generic term)
+mayoral|1
+(adj)|civil authority|politician (related term)
+mayoralty|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+mayoress|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|mayor (generic term)|city manager (generic term)
+maypole|1
+(noun)|post (generic term)
+maypop|1
+(noun)|Passiflora incarnata|passionflower (generic term)|passionflower vine (generic term)
+mays|1
+(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|Say Hey Kid|ballplayer (generic term)|baseball player (generic term)
+mayweed|1
+(noun)|dog fennel|stinking mayweed|stinking chamomile|Anthemis cotula|composite (generic term)|composite plant (generic term)
+mazama|1
+(noun)|Mazama|genus Mazama|mammal genus (generic term)
+mazar-i-sharif|1
+(noun)|Mazar-i-Sharif|city (generic term)|metropolis (generic term)|urban center (generic term)
+mazatlan|1
+(noun)|Mazatlan|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+mazdaism|1
+(noun)|Zoroastrianism|Mazdaism|religion (generic term)|faith (generic term)|religious belief (generic term)
+maze|2
+(noun)|labyrinth|system (generic term)
+(noun)|tangle|snarl|perplexity (generic term)
+mazed|1
+(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mixed-up|at sea|perplexed (similar term)
+mazer|1
+(noun)|bowl (generic term)
+mazopathy|1
+(noun)|mastopathy|pathology (generic term)
+mazurka|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|folk dancing (generic term)|folk dance (generic term)
+mazy|1
+(adj)|labyrinthine|labyrinthian|complex (similar term)
+mazzard|1
+(noun)|gean|mazzard cherry|sweet cherry (generic term)|Prunus avium (generic term)
+mazzard cherry|1
+(noun)|gean|mazzard|sweet cherry (generic term)|Prunus avium (generic term)
+mazzini|1
+(noun)|Mazzini|Giuseppe Mazzini|patriot (generic term)|nationalist (generic term)
+mb|2
+(noun)|megabyte|MB|computer memory unit (generic term)
+(noun)|Bachelor of Medicine|MB|bachelor's degree (generic term)|baccalaureate (generic term)
+mba|1
+(noun)|Master in Business|Master in Business Administration|MBA|master's degree (generic term)
+mbabane|1
+(noun)|Mbabane|capital of Swaziland|national capital (generic term)
+mbd|1
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|minimal brain damage|MBD|syndrome (generic term)
+mbeya|1
+(noun)|Mbeya|city (generic term)|metropolis (generic term)|urban center (generic term)
+mbundu|1
+(noun)|Mbundu|Ovimbundu|ethnic group (generic term)|ethnos (generic term)
+mc|1
+(noun)|megahertz|MHz|megacycle per second|megacycle|Mc|rate (generic term)
+mcalester|1
+(noun)|McAlester|town (generic term)
+mcallen|1
+(noun)|McAllen|town (generic term)
+mcardle's disease|1
+(noun)|McArdle's disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+mcburney's point|1
+(noun)|McBurney's point|point (generic term)
+mccarthy|2
+(noun)|McCarthy|Mary McCarthy|Mary Therese McCarthy|writer (generic term)|author (generic term)
+(noun)|McCarthy|Joseph McCarthy|Joseph Raymond McCarthy|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+mccarthyism|1
+(noun)|McCarthyism|witch-hunt (generic term)
+mccartney|1
+(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+mccauley|1
+(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine (generic term)
+mccormick|2
+(noun)|McCormick|Cyrus McCormick|Cyrus Hall McCormick|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+(noun)|McCormick|John McCormick|tenor (generic term)
+mccullers|1
+(noun)|McCullers|Carson McCullers|Carson Smith McCullers|writer (generic term)|author (generic term)
+mcg|1
+(noun)|microgram|metric weight unit (generic term)|weight unit (generic term)
+mcgraw|1
+(noun)|McGraw|John McGraw|John Joseph McGraw|ballplayer (generic term)|baseball player (generic term)|coach (generic term)|manager (generic term)|handler (generic term)
+mcguffey|1
+(noun)|McGuffey|William Holmes McGuffey|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+mcguffey eclectic readers|1
+(noun)|McGuffey Eclectic Readers|reader (generic term)
+mcguffin|1
+(noun)|McGuffin|MacGuffin|plot element (generic term)
+mcia|1
+(noun)|Marine Corps Intelligence Activity|MCIA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+mcintosh|1
+(noun)|McIntosh|eating apple (generic term)|dessert apple (generic term)
+mckim|1
+(noun)|McKim|Charles Follen McKim|architect (generic term)|designer (generic term)
+mckinley|2
+(noun)|McKinley|William McKinley|President McKinley|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak (generic term)
+mcluhan|1
+(noun)|McLuhan|Marshall McLuhan|Herbert Marshall McLuhan|writer (generic term)|author (generic term)
+mcmaster|1
+(noun)|McMaster|John Bach McMaster|historian (generic term)|historiographer (generic term)
+mcpherson|1
+(noun)|McPherson|Aimee Semple McPherson|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+md|4
+(noun)|mendelevium|Md|Mv|atomic number 101|chemical element (generic term)|element (generic term)
+(noun)|doctor|doc|physician|MD|Dr.|medico|medical practitioner (generic term)|medical man (generic term)
+(noun)|Maryland|Old Line State|Free State|MD|American state (generic term)
+(noun)|Doctor of Medicine|MD|doctor's degree (generic term)|doctorate (generic term)
+mdi|1
+(noun)|Markaz-ud-Dawa-wal-Irshad|MDI|nongovernmental organization (generic term)|NGO (generic term)
+mdiv|1
+(noun)|Master of Divinity|MDiv|master's degree (generic term)
+mdma|1
+(noun)|methylenedioxymethamphetamine|MDMA|club drug (generic term)
+me|1
+(noun)|Maine|Pine Tree State|ME|American state (generic term)
+mea culpa|1
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)
+mead|3
+(noun)|Mead|Margaret Mead|anthropologist (generic term)
+(noun)|Mead|George Herbert Mead|philosopher (generic term)
+(noun)|brew (generic term)|brewage (generic term)
+mead's milkweed|1
+(noun)|Mead's milkweed|Asclepias meadii|Asclepia meadii|milkweed (generic term)|silkweed (generic term)
+meade|2
+(noun)|Meade|James Edward Meade|economist (generic term)|economic expert (generic term)
+(noun)|Meade|George Gordon Meade|general (generic term)|full general (generic term)
+meadow|1
+(noun)|hayfield|grassland (generic term)
+meadow-beauty family|1
+(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|rosid dicot family (generic term)
+meadow beauty|1
+(noun)|deer grass|subshrub (generic term)|suffrutex (generic term)
+meadow bright|1
+(noun)|marsh marigold|kingcup|May blob|cowslip|water dragon|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+meadow buttercup|1
+(noun)|tall buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+meadow clary|1
+(noun)|Salvia pratensis|sage (generic term)|salvia (generic term)
+meadow cranesbill|1
+(noun)|Geranium pratense|cranesbill (generic term)|crane's bill (generic term)
+meadow cress|1
+(noun)|lady's smock|cuckooflower|cuckoo flower|Cardamine pratensis|bittercress (generic term)|bitter cress (generic term)
+meadow fern|1
+(noun)|snuffbox fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern (generic term)|Thelypteris palustris (generic term)|Dryopteris thelypteris (generic term)
+meadow fescue|1
+(noun)|fescue|fescue grass|Festuca elatior|grass (generic term)
+meadow foxtail|1
+(noun)|Alopecurus pratensis|foxtail (generic term)|foxtail grass (generic term)
+meadow goldenrod|1
+(noun)|Canadian goldenrod|Solidago canadensis|goldenrod (generic term)
+meadow grass|1
+(noun)|meadowgrass|grass (generic term)
+meadow jumping mouse|1
+(noun)|Zapus hudsonius|jumping mouse (generic term)
+meadow leek|1
+(noun)|Canada garlic|rose leek|Allium canadense|alliaceous plant (generic term)
+meadow lily|1
+(noun)|Canada lily|wild yellow lily|wild meadow lily|Lilium canadense|lily (generic term)
+meadow mouse|1
+(noun)|meadow vole|Microtus pennsylvaticus|vole (generic term)|field mouse (generic term)
+meadow mushroom|1
+(noun)|field mushroom|Agaricus campestris|agaric (generic term)
+meadow pea|1
+(noun)|common vetchling|yellow vetchling|Lathyrus pratensis|wild pea (generic term)
+meadow pipit|1
+(noun)|Anthus pratensis|pipit (generic term)|titlark (generic term)|lark (generic term)
+meadow rue|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+meadow saffron|1
+(noun)|autumn crocus|naked lady|Colchicum autumnale|bulbous plant (generic term)
+meadow salsify|1
+(noun)|goatsbeard|shepherd's clock|Tragopogon pratensis|wildflower (generic term)|wild flower (generic term)
+meadow saxifrage|1
+(noun)|fair-maids-of-France|Saxifraga granulata|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+meadow spikemoss|1
+(noun)|basket spikemoss|Selaginella apoda|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+meadow spittlebug|1
+(noun)|Philaenus spumarius|spittle insect (generic term)|spittlebug (generic term)
+meadow vole|1
+(noun)|meadow mouse|Microtus pennsylvaticus|vole (generic term)|field mouse (generic term)
+meadowgrass|1
+(noun)|meadow grass|grass (generic term)
+meadowlark|1
+(noun)|lark|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+meager|1
+(adj)|meagre|meagerly|stingy|scrimpy|bare (similar term)|scanty (similar term)|spare (similar term)|exiguous (similar term)|hand-to-mouth (similar term)|hardscrabble (similar term)|marginal (similar term)|measly (similar term)|miserable (similar term)|paltry (similar term)|insufficient (related term)|deficient (related term)|scarce (related term)|ample (antonym)
+meagerly|2
+(adj)|meager|meagre|stingy|scrimpy|bare (similar term)|scanty (similar term)|spare (similar term)|exiguous (similar term)|hand-to-mouth (similar term)|hardscrabble (similar term)|marginal (similar term)|measly (similar term)|miserable (similar term)|paltry (similar term)|insufficient (related term)|deficient (related term)|scarce (related term)|ample (antonym)
+(adv)|sparingly|slenderly|meagrely|amply (antonym)|amply (antonym)
+meagerness|1
+(noun)|meagreness|leanness|poorness|scantiness|scantness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+meagre|1
+(adj)|meager|meagerly|stingy|scrimpy|bare (similar term)|scanty (similar term)|spare (similar term)|exiguous (similar term)|hand-to-mouth (similar term)|hardscrabble (similar term)|marginal (similar term)|measly (similar term)|miserable (similar term)|paltry (similar term)|insufficient (related term)|deficient (related term)|scarce (related term)|ample (antonym)
+meagrely|1
+(adv)|meagerly|sparingly|slenderly|amply (antonym)|amply (antonym)
+meagreness|1
+(noun)|meagerness|leanness|poorness|scantiness|scantness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+meal|3
+(noun)|repast|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|occasion (generic term)
+(noun)|foodstuff (generic term)|food product (generic term)
+meal plan|1
+(noun)|hotel plan|design (generic term)|plan (generic term)
+meal ticket|2
+(noun)|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+(noun)|luncheon voucher|coupon (generic term)|voucher (generic term)
+mealberry|1
+(noun)|common bearberry|red bearberry|wild cranberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+mealie|1
+(noun)|ear (generic term)|spike (generic term)|capitulum (generic term)
+mealtime|1
+(noun)|hour (generic term)|time of day (generic term)
+mealworm|1
+(noun)|larva (generic term)
+mealy|2
+(adj)|foodstuff|food product (related term)
+(adj)|farinaceous|coarse-grained|grainy|granular|granulose|gritty|coarse (similar term)|harsh (similar term)
+mealy-mouthed|1
+(adj)|mealymouthed|indirect (similar term)
+mealy bug|1
+(noun)|mealybug|coccid insect (generic term)
+mealy sage|1
+(noun)|blue sage|Salvia farinacea|sage (generic term)|salvia (generic term)
+mealybug|1
+(noun)|mealy bug|coccid insect (generic term)
+mealymouthed|1
+(adj)|mealy-mouthed|indirect (similar term)
+mean|15
+(adj)|average|normal (similar term)
+(adj)|hateful|nasty (similar term)|awful (similar term)
+(adj)|base|meanspirited|ignoble (similar term)
+(adj)|skilled (similar term)
+(adj)|beggarly|poor (similar term)
+(adj)|mingy|miserly|tight|stingy (similar term)|ungenerous (similar term)
+(adj)|beggarly|stingy (similar term)|ungenerous (similar term)
+(adj)|bastardly|contemptible (similar term)
+(noun)|mean value|average (generic term)|norm (generic term)
+(verb)|intend|convey (generic term)|impart (generic term)
+(verb)|entail|imply|necessitate (generic term)
+(verb)|intend|signify|stand for
+(verb)|intend|think|will (generic term)|wish (generic term)
+(verb)|think of|have in mind|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+(verb)|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+mean deviation|1
+(noun)|mean deviation from the mean|deviation (generic term)
+mean deviation from the mean|1
+(noun)|mean deviation|deviation (generic term)
+mean distance|1
+(noun)|distance (generic term)
+mean solar day|1
+(noun)|day|twenty-four hours|twenty-four hour period|24-hour interval|solar day|time unit (generic term)|unit of time (generic term)
+mean solar time|1
+(noun)|mean time|time unit (generic term)|unit of time (generic term)
+mean sun|1
+(noun)|model (generic term)|theoretical account (generic term)|framework (generic term)
+mean time|1
+(noun)|mean solar time|time unit (generic term)|unit of time (generic term)
+mean value|1
+(noun)|mean|average (generic term)|norm (generic term)
+meander|3
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|ramble|amble (generic term)|promenade (generic term)|saunter (generic term)|stroll (generic term)|perambulation (generic term)
+(verb)|weave|wind|thread|wander|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+meandering|1
+(adj)|rambling|wandering|winding|indirect (similar term)
+meanie|1
+(noun)|meany|unkind person|oppressor (generic term)
+meaning|3
+(adj)|pregnant|significant|meaningful (similar term)
+(noun)|significance|signification|import|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|substance|idea (generic term)|thought (generic term)
+meaningful|1
+(adj)|meaty (similar term)|substantive (similar term)|meaning (similar term)|pregnant (similar term)|significant (similar term)|purposeful (similar term)|purposeful (related term)|significant (related term)|important (related term)|meaningless (antonym)
+meaningfulness|1
+(noun)|significance (generic term)|meaninglessness (antonym)
+meaningless|1
+(adj)|nonmeaningful|empty (similar term)|hollow (similar term)|vacuous (similar term)|insignificant (similar term)|unmeaning (similar term)|mindless (similar term)|nonsense (similar term)|nonsensical (similar term)|pointless (similar term)|purposeless (similar term)|senseless (similar term)|insignificant (related term)|unimportant (related term)|purposeless (related term)|unimportant (related term)|meaningful (antonym)
+meaninglessness|2
+(noun)|nonsense|bunk|nonsensicality|hokum|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|insignificance (generic term)|meaningfulness (antonym)
+meanly|3
+(adv)|nastily
+(adv)|scurvily|basely
+(adv)|humbly
+meanness|2
+(noun)|beastliness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+(noun)|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess (generic term)
+means|3
+(noun)|agency|way|implementation (generic term)|effectuation (generic term)
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(noun)|substance|capital (generic term)
+means grass|1
+(noun)|Johnson grass|Aleppa grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+means test|1
+(noun)|inquiry (generic term)|enquiry (generic term)
+meanspirited|2
+(adj)|ungenerous|stingy (related term)|ungenerous (related term)|generous (antonym)
+(adj)|base|mean|ignoble (similar term)
+meantime|2
+(noun)|interim|meanwhile|lag|time interval (generic term)|interval (generic term)
+(adv)|meanwhile|in the meantime
+meanwhile|2
+(noun)|interim|meantime|lag|time interval (generic term)|interval (generic term)
+(adv)|meantime|in the meantime
+meany|2
+(noun)|Meany|George Meany|labor leader (generic term)
+(noun)|meanie|unkind person|oppressor (generic term)
+mearstone|1
+(noun)|merestone|meerestone|landmark (generic term)
+measles|1
+(noun)|rubeola|morbilli|contagious disease (generic term)|contagion (generic term)
+measly|1
+(adj)|miserable|paltry|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+measurability|1
+(noun)|quantifiability|quality (generic term)
+measurable|2
+(adj)|mensurable|immeasurable (antonym)
+(adj)|important (similar term)|of import (similar term)
+measurably|1
+(adv)|immeasurably (antonym)
+measure|12
+(noun)|measurement|measuring|mensuration|activity (generic term)
+(noun)|standard|criterion|touchstone|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|quantity|amount|abstraction (generic term)
+(noun)|step|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|bill|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|meter|metre|beat|cadence|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+(noun)|bar|musical notation (generic term)
+(noun)|measuring stick|measuring rod|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(verb)|mensurate|measure out|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|quantify|carry (generic term)|convey (generic term)|express (generic term)
+(verb)|be (generic term)|measure up (related term)
+(verb)|evaluate|valuate|assess|appraise|value|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+measure out|1
+(verb)|measure|mensurate|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+measure up|1
+(verb)|qualify|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+measured|4
+(adj)|plumbed (similar term)|sounded (similar term)|unmeasured (antonym)
+(adj)|metrical|metric|rhythmical (similar term)|rhythmic (similar term)
+(adj)|calculated|deliberate|premeditated (similar term)
+(adj)|careful|deliberate|unhurried (similar term)
+measuredly|1
+(adv)|deliberately
+measureless|1
+(adj)|illimitable|limitless|unmeasured|immeasurable (similar term)|unmeasurable (similar term)|immensurable (similar term)
+measurement|1
+(noun)|measuring|measure|mensuration|activity (generic term)
+measurer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+measuring|1
+(noun)|measurement|measure|mensuration|activity (generic term)
+measuring block|1
+(noun)|measuring unit|unit of measurement (generic term)|unit (generic term)
+measuring cup|1
+(noun)|cup (generic term)
+measuring device|1
+(noun)|measuring instrument|measuring system|instrument (generic term)
+measuring instrument|1
+(noun)|measuring system|measuring device|instrument (generic term)
+measuring rod|1
+(noun)|measuring stick|measure|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+measuring stick|1
+(noun)|measure|measuring rod|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+measuring system|1
+(noun)|measuring instrument|measuring device|instrument (generic term)
+measuring unit|1
+(noun)|measuring block|unit of measurement (generic term)|unit (generic term)
+measuring worm|1
+(noun)|inchworm|looper|caterpillar (generic term)
+meat|3
+(noun)|food (generic term)|solid food (generic term)
+(noun)|kernel|plant part (generic term)|plant structure (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+meat-eating|1
+(adj)|flesh-eating|zoophagous|carnivorous (similar term)
+meat-packing business|1
+(noun)|meatpacking|meat packing|packaging (generic term)
+meat and potatoes|1
+(noun)|basis (generic term)|base (generic term)|foundation (generic term)|fundament (generic term)|groundwork (generic term)|cornerstone (generic term)
+meat cleaver|1
+(noun)|cleaver|chopper|knife (generic term)
+meat counter|1
+(noun)|counter (generic term)
+meat grinder|2
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+(noun)|aggression (generic term)|hostility (generic term)
+meat hook|1
+(noun)|hook (generic term)
+meat hooks|1
+(noun)|hooks|maulers|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+meat house|2
+(noun)|smokehouse|house (generic term)
+(noun)|house (generic term)
+meat loaf|1
+(noun)|meatloaf|dish (generic term)
+meat market|1
+(noun)|butcher shop|shop (generic term)|store (generic term)
+meat packer|1
+(noun)|packer|jobber (generic term)|middleman (generic term)|wholesaler (generic term)
+meat packing|1
+(noun)|meatpacking|meat-packing business|packaging (generic term)
+meat pie|1
+(noun)|pie (generic term)
+meat safe|1
+(noun)|safe (generic term)
+meat thermometer|1
+(noun)|thermometer (generic term)
+meatball|1
+(noun)|dish (generic term)
+meatless|1
+(adj)|meaty (antonym)
+meatloaf|1
+(noun)|meat loaf|dish (generic term)
+meatman|1
+(noun)|butcher|merchant (generic term)|merchandiser (generic term)
+meatpacking|1
+(noun)|meat packing|meat-packing business|packaging (generic term)
+meatus|1
+(noun)|passage (generic term)|passageway (generic term)
+meaty|2
+(adj)|meatless (antonym)
+(adj)|substantive|meaningful (similar term)
+mebaral|1
+(noun)|mephobarbital|Mebaral|barbiturate (generic term)|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+mebendazole|1
+(noun)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+mecca|2
+(noun)|Mecca|Riyadh (generic term)|capital of Saudi Arabia (generic term)
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+meccano|1
+(noun)|Meccano|Meccano set|plaything (generic term)|toy (generic term)
+meccano set|1
+(noun)|Meccano|Meccano set|plaything (generic term)|toy (generic term)
+mechanic|3
+(adj)|mechanical (similar term)
+(noun)|machinist|shop mechanic|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|automobile mechanic|auto-mechanic|car-mechanic|grease monkey|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+mechanic's lien|1
+(noun)|lien (generic term)
+mechanical|3
+(adj)|automatic (similar term)|automatonlike (similar term)|machinelike (similar term)|robotlike (similar term)|mechanic (similar term)|mechanistic (similar term)|mechanized (similar term)|mechanised (similar term)|windup (similar term)|nonmechanical (antonym)
+(adj)|mechanically skillful|machine (related term)
+(adj)|physics|physical science|natural philosophy (related term)
+mechanical advantage|1
+(noun)|ratio (generic term)
+mechanical device|1
+(noun)|mechanism (generic term)
+mechanical drawing|2
+(noun)|drawing (generic term)
+(noun)|drafting|trade (generic term)|craft (generic term)
+mechanical energy|1
+(noun)|energy (generic term)
+mechanical engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+mechanical engineering|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+mechanical man|1
+(noun)|android|humanoid|automaton (generic term)|robot (generic term)|golem (generic term)
+mechanical mixture|1
+(noun)|mixture (generic term)
+mechanical phenomenon|1
+(noun)|physical phenomenon (generic term)
+mechanical piano|1
+(noun)|Pianola|player piano|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+mechanical press|1
+(noun)|press|machine (generic term)
+mechanical system|1
+(noun)|system (generic term)
+mechanically|1
+(adv)|automatically
+mechanically skillful|1
+(adj)|mechanical|machine (related term)
+mechanics|2
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+(noun)|mechanism|performance (generic term)|execution (generic term)|carrying out (generic term)|carrying into action (generic term)
+mechanisation|2
+(noun)|mechanization|condition (generic term)|status (generic term)
+(noun)|automation|mechanization|high technology (generic term)|high tech (generic term)
+mechanise|2
+(verb)|mechanize|motorize|motorise|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|mechanize|change (generic term)|alter (generic term)|modify (generic term)
+mechanised|2
+(adj)|mechanized|motorized|mobile (similar term)
+(adj)|mechanized|mechanical (similar term)
+mechanism|5
+(noun)|chemical mechanism|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|mechanics|performance (generic term)|execution (generic term)|carrying out (generic term)|carrying into action (generic term)
+(noun)|natural object (generic term)
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|device (generic term)
+mechanist|1
+(noun)|philosopher (generic term)
+mechanistic|2
+(adj)|mechanical (similar term)
+(adj)|philosophical doctrine|philosophical theory (related term)
+mechanization|2
+(noun)|mechanisation|condition (generic term)|status (generic term)
+(noun)|automation|mechanisation|high technology (generic term)|high tech (generic term)
+mechanize|2
+(verb)|mechanise|motorize|motorise|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|mechanise|change (generic term)|alter (generic term)|modify (generic term)
+mechanized|2
+(adj)|mechanised|mechanical (similar term)
+(adj)|mechanised|motorized|mobile (similar term)
+mechanized cavalry|1
+(noun)|cavalry (generic term)
+mecholyl|1
+(noun)|methacholine|Mecholyl|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+meckel's diverticulum|1
+(noun)|Meckel's diverticulum|diverticulum (generic term)
+meclizine|1
+(noun)|meclizine hydrochloride|Antivert|antihistamine (generic term)
+meclizine hydrochloride|1
+(noun)|meclizine|Antivert|antihistamine (generic term)
+meclofenamate|1
+(noun)|meclofenamate sodium|Meclomen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+meclofenamate sodium|1
+(noun)|meclofenamate|Meclomen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+meclomen|1
+(noun)|meclofenamate|meclofenamate sodium|Meclomen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+meconium|1
+(noun)|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+meconopsis|1
+(noun)|Meconopsis|genus Meconopsis|dilleniid dicot genus (generic term)
+meconopsis betonicifolia|1
+(noun)|blue poppy|Meconopsis betonicifolia|poppy (generic term)
+meconopsis cambrica|1
+(noun)|Welsh poppy|Meconopsis cambrica|poppy (generic term)
+mecoptera|1
+(noun)|Mecoptera|order Mecoptera|animal order (generic term)
+mecopteran|1
+(noun)|insect (generic term)
+mecopterous|1
+(adj)|insect (related term)
+med|1
+(noun)|Master of Education|MEd|master's degree (generic term)
+medai guru|1
+(noun)|media consultant|adviser (generic term)|advisor (generic term)|consultant (generic term)
+medaille militaire|1
+(noun)|Medaille Militaire|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+medal|1
+(noun)|decoration|laurel wreath|medallion|palm|ribbon|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+medal of honor|1
+(noun)|Medal of Honor|Congressional Medal of Honor|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+medal play|1
+(noun)|stroke play|golf (generic term)|golf game (generic term)
+medal winner|1
+(noun)|medalist|medallist|golfer (generic term)|golf player (generic term)|linksman (generic term)
+medalist|2
+(noun)|medallist|winner (generic term)|victor (generic term)
+(noun)|medallist|medal winner|golfer (generic term)|golf player (generic term)|linksman (generic term)
+medallion|4
+(noun)|coin (generic term)
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+(noun)|decoration|laurel wreath|medal|palm|ribbon|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+medallist|2
+(noun)|medalist|winner (generic term)|victor (generic term)
+(noun)|medalist|medal winner|golfer (generic term)|golf player (generic term)|linksman (generic term)
+medan|1
+(noun)|Medan|city (generic term)|metropolis (generic term)|urban center (generic term)
+medawar|1
+(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist (generic term)
+meddle|1
+(verb)|tamper|intervene (generic term)|step in (generic term)|interfere (generic term)|interpose (generic term)
+meddler|1
+(noun)|unwelcome person (generic term)|persona non grata (generic term)
+meddlesome|1
+(adj)|interfering|meddling|officious|busy|busybodied|intrusive (similar term)
+meddlesomeness|1
+(noun)|intrusiveness|officiousness|aggressiveness (generic term)
+meddling|2
+(adj)|interfering|meddlesome|officious|busy|busybodied|intrusive (similar term)
+(noun)|tampering|change of state (generic term)
+medea|1
+(noun)|Medea|mythical being (generic term)
+medellin|1
+(noun)|Medellin|city (generic term)|metropolis (generic term)|urban center (generic term)
+medellin cartel|1
+(noun)|Medellin cartel|drug cartel (generic term)
+medevac|1
+(noun)|medical evacuation|medivac|evacuation (generic term)
+medfly|1
+(noun)|Mediterranean fruit fly|Ceratitis capitata|fruit fly (generic term)|pomace fly (generic term)
+medford|1
+(noun)|Medford|town (generic term)
+medgar evers|1
+(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+medgar wiley evers|1
+(noun)|Evers|Medgar Evers|Medgar Wiley Evers|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+media consultant|1
+(noun)|medai guru|adviser (generic term)|advisor (generic term)|consultant (generic term)
+mediacy|1
+(noun)|mediateness|indirectness (generic term)|immediacy (antonym)
+mediaeval|2
+(adj)|medieval|historic period|age (related term)
+(adj)|medieval|gothic|nonmodern (similar term)
+medial|2
+(adj)|median|mesial (similar term)
+(adj)|median|central (similar term)
+medial condyle|1
+(noun)|condyle (generic term)
+medial geniculate body|1
+(noun)|corpus geniculatum mediale|geniculate body (generic term)
+medial rectus|1
+(noun)|medial rectus muscle|rectus medialis|ocular muscle (generic term)|eye muscle (generic term)
+medial rectus muscle|1
+(noun)|medial rectus|rectus medialis|ocular muscle (generic term)|eye muscle (generic term)
+median|4
+(adj)|average|normal (similar term)
+(adj)|medial|mesial (similar term)
+(adj)|medial|central (similar term)
+(noun)|median value|average (generic term)|norm (generic term)
+median value|1
+(noun)|median|average (generic term)|norm (generic term)
+mediant|1
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+mediastinum|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+mediate|4
+(adj)|indirect (similar term)|mediated (similar term)|immediate (antonym)
+(adj)|in-between|middle|intermediate (similar term)
+(verb)|intercede|intermediate|liaise|arbitrate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+(verb)|lie (generic term)
+mediated|1
+(adj)|mediate (similar term)
+mediateness|1
+(noun)|mediacy|indirectness (generic term)|immediacy (antonym)
+mediation|2
+(noun)|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+(noun)|intermediation|intervention (generic term)|intercession (generic term)
+mediator|1
+(noun)|go-between|intermediator|intermediary|intercessor|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+mediatorial|1
+(adj)|negotiator|negotiant|treater (related term)
+mediatory|1
+(adj)|negotiation|dialogue|talks (related term)|intervention|intercession (related term)
+mediatrix|1
+(noun)|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+medic|2
+(noun)|medick|trefoil|herb (generic term)|herbaceous plant (generic term)
+(noun)|medical officer|medical practitioner (generic term)|medical man (generic term)
+medicago|1
+(noun)|Medicago|genus Medicago|rosid dicot genus (generic term)|Papilionoideae (generic term)|subfamily Papilionoideae (generic term)
+medicago arborea|1
+(noun)|moon trefoil|Medicago arborea|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicago echinus|1
+(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicago falcata|1
+(noun)|sickle alfalfa|sickle lucerne|sickle medick|Medicago falcata|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicago intertexta|1
+(noun)|Calvary clover|Medicago intertexta|Medicago echinus|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicago lupulina|1
+(noun)|black medick|hop clover|yellow trefoil|nonesuch clover|Medicago lupulina|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicago sativa|1
+(noun)|alfalfa|lucerne|Medicago sativa|medic (generic term)|medick (generic term)|trefoil (generic term)
+medicaid|1
+(noun)|Medicaid|health care (generic term)
+medicaid funds|1
+(noun)|Medicaid funds|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+medical|4
+(adj)|learned profession (related term)
+(adj)|surgical (antonym)
+(adj)|aesculapian|Greco-Roman deity|Graeco-Roman deity (related term)
+(noun)|checkup|medical checkup|medical examination|medical exam|health check|examination (generic term)|scrutiny (generic term)
+medical aid|1
+(noun)|medical care|treatment (generic term)
+medical assistant|1
+(noun)|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+medical bill|1
+(noun)|doctor's bill|bill (generic term)|account (generic term)|invoice (generic term)
+medical building|1
+(noun)|health facility|healthcare facility|building (generic term)|edifice (generic term)
+medical care|1
+(noun)|medical aid|treatment (generic term)
+medical center|1
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+medical checkup|1
+(noun)|checkup|medical examination|medical exam|medical|health check|examination (generic term)|scrutiny (generic term)
+medical community|1
+(noun)|medical profession|health profession (generic term)
+medical diagnosis|1
+(noun)|diagnosis (generic term)|diagnosing (generic term)
+medical dressing|1
+(noun)|dressing|cloth covering (generic term)
+medical evacuation|1
+(noun)|medevac|medivac|evacuation (generic term)
+medical exam|1
+(noun)|checkup|medical checkup|medical examination|medical|health check|examination (generic term)|scrutiny (generic term)
+medical examination|1
+(noun)|checkup|medical checkup|medical exam|medical|health check|examination (generic term)|scrutiny (generic term)
+medical examiner|1
+(noun)|coroner|investigator (generic term)
+medical expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+medical extern|1
+(noun)|extern|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+medical history|1
+(noun)|medical record|anamnesis|case history (generic term)
+medical institution|1
+(noun)|institution (generic term)|establishment (generic term)
+medical instrument|1
+(noun)|instrument (generic term)
+medical intern|1
+(noun)|intern|interne|houseman|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+medical literature analysis and retrieval system|1
+(noun)|Medical Literature Analysis and Retrieval System|MEDLARS|relational database (generic term)
+medical man|1
+(noun)|medical practitioner|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+medical officer|1
+(noun)|medic|medical practitioner (generic term)|medical man (generic term)
+medical practice|1
+(noun)|practice (generic term)
+medical practitioner|1
+(noun)|medical man|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+medical procedure|1
+(noun)|procedure (generic term)|process (generic term)
+medical profession|1
+(noun)|medical community|health profession (generic term)
+medical prognosis|1
+(noun)|prognosis|prospect|medical diagnosis (generic term)
+medical record|1
+(noun)|medical history|anamnesis|case history (generic term)
+medical relation|1
+(noun)|professional relation (generic term)
+medical report|1
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+medical school|1
+(noun)|school of medicine|graduate school (generic term)|grad school (generic term)
+medical science|1
+(noun)|life science (generic term)|bioscience (generic term)
+medical scientist|1
+(noun)|scientist (generic term)|man of science (generic term)
+medical social worker|1
+(noun)|almoner|social worker (generic term)|caseworker (generic term)|welfare worker (generic term)
+medical specialist|1
+(noun)|specialist|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+medical specialty|1
+(noun)|medicine|medical science (generic term)
+medical student|1
+(noun)|medico|student (generic term)|pupil (generic term)|educatee (generic term)
+medicament|1
+(noun)|medicine|medication|medicinal drug|drug (generic term)
+medicare|1
+(noun)|Medicare|health care (generic term)
+medicare check|1
+(noun)|medicare payment|check (generic term)|bank check (generic term)|cheque (generic term)
+medicare payment|1
+(noun)|medicare check|check (generic term)|bank check (generic term)|cheque (generic term)
+medicate|2
+(verb)|impregnate (generic term)|saturate (generic term)
+(verb)|medicine|treat (generic term)|care for (generic term)
+medication|2
+(noun)|medicine|medicament|medicinal drug|drug (generic term)
+(noun)|therapy (generic term)
+medicative|1
+(adj)|medicinal|healthful (similar term)
+medici|1
+(noun)|Medici|house (generic term)
+medicinal|1
+(adj)|medicative|healthful (similar term)
+medicinal drug|1
+(noun)|medicine|medication|medicament|drug (generic term)
+medicinal leech|1
+(noun)|Hirudo medicinalis|leech (generic term)|bloodsucker (generic term)|hirudinean (generic term)
+medicine|5
+(noun)|medical specialty|medical science (generic term)
+(noun)|medication|medicament|medicinal drug|drug (generic term)
+(noun)|practice of medicine|learned profession (generic term)
+(noun)|music|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(verb)|medicate|treat (generic term)|care for (generic term)
+medicine ball|1
+(noun)|ball (generic term)
+medicine cabinet|1
+(noun)|medicine chest|cabinet (generic term)
+medicine chest|1
+(noun)|medicine cabinet|cabinet (generic term)
+medicine man|1
+(noun)|shaman (generic term)|priest-doctor (generic term)
+medick|1
+(noun)|medic|trefoil|herb (generic term)|herbaceous plant (generic term)
+medico|2
+(noun)|medical student|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|doctor|doc|physician|MD|Dr.|medical practitioner (generic term)|medical man (generic term)
+medicolegal|1
+(adj)|learned profession (related term)|collection|aggregation|accumulation|assemblage (related term)
+mediety|1
+(noun)|moiety|one-half (generic term)|half (generic term)
+medieval|3
+(adj)|mediaeval|historic period|age (related term)
+(adj)|mediaeval|gothic|nonmodern (similar term)
+(adj)|chivalric|knightly|past (similar term)
+medieval greek|1
+(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+medieval latin|1
+(noun)|Medieval Latin|Low Latin (generic term)
+medieval mode|1
+(noun)|ecclesiastical mode|Gregorian mode|church mode|mode (generic term)|musical mode (generic term)
+medieval schoolman|1
+(noun)|Schoolman|medieval Schoolman|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+medina|2
+(noun)|Medina|Al Madinah|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|quarter (generic term)
+medinilla|1
+(noun)|Medinilla|genus Medinilla|rosid dicot genus (generic term)
+medinilla magnifica|1
+(noun)|Medinilla magnifica|shrub (generic term)|bush (generic term)
+mediocre|3
+(adj)|second-rate|inferior (similar term)
+(adj)|average|fair|middling|ordinary (similar term)
+(adj)|bad (similar term)
+mediocrity|2
+(noun)|averageness|ordinariness (generic term)|mundaneness (generic term)|mundanity (generic term)
+(noun)|second-rater|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+meditate|2
+(verb)|chew over|think over|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|study|contemplate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+meditation|2
+(noun)|speculation|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+(noun)|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+meditative|1
+(adj)|brooding|broody|contemplative|musing|pensive|pondering|reflective|ruminative|thoughtful (similar term)
+meditativeness|1
+(noun)|pensiveness|contemplativeness|thoughtfulness (generic term)
+mediterranean|2
+(adj)|Mediterranean|sea (related term)
+(noun)|Mediterranean|Mediterranean Sea|sea (generic term)
+mediterranean anaemia|1
+(noun)|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia (generic term)|hypochromic anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+mediterranean anchovy|1
+(noun)|Engraulis encrasicholus|anchovy (generic term)
+mediterranean anemia|1
+(noun)|thalassemia|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia (generic term)|hypochromic anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+mediterranean cypress|1
+(noun)|Italian cypress|Mediterranean cypress|Cupressus sempervirens|cypress (generic term)|cypress tree (generic term)
+mediterranean fever|1
+(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+mediterranean flour moth|1
+(noun)|Mediterranean flour moth|Anagasta kuehniella|pyralid (generic term)|pyralid moth (generic term)
+mediterranean fruit fly|1
+(noun)|Mediterranean fruit fly|medfly|Ceratitis capitata|fruit fly (generic term)|pomace fly (generic term)
+mediterranean hackberry|1
+(noun)|European hackberry|Mediterranean hackberry|Celtis australis|hackberry (generic term)|nettle tree (generic term)
+mediterranean sea|1
+(noun)|Mediterranean|Mediterranean Sea|sea (generic term)
+mediterranean snapdragon|1
+(noun)|Mediterranean snapdragon|Antirrhinum majus|snapdragon (generic term)
+mediterranean water shrew|1
+(noun)|Mediterranean water shrew|Neomys anomalus|water shrew (generic term)
+medium|12
+(adj)|average|intermediate|moderate (similar term)
+(adj)|cooked (similar term)
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(noun)|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+(noun)|communication (generic term)|communicating (generic term)
+(noun)|culture medium|substance (generic term)|matter (generic term)
+(noun)|liquid (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|state (generic term)
+(noun)|spiritualist|sensitive|psychic (generic term)
+(noun)|mass medium|transmission (generic term)
+(noun)|metier|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+medium-dry|1
+(adj)|dry (similar term)
+medium-large|1
+(adj)|large (similar term)|big (similar term)
+medium-size|1
+(adj)|medium-sized|moderate-sized|moderate-size|sized (similar term)
+medium-sized|1
+(adj)|medium-size|moderate-sized|moderate-size|sized (similar term)
+medium frequency|1
+(noun)|MF|radio frequency (generic term)
+medium of exchange|1
+(noun)|monetary system|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+medium steel|1
+(noun)|steel (generic term)
+medium wave|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+medivac|1
+(noun)|medical evacuation|medevac|evacuation (generic term)
+medlar|3
+(noun)|wild medlar|wild medlar tree|Vangueria infausta|tree (generic term)
+(noun)|medlar tree|Mespilus germanica|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+medlar tree|1
+(noun)|medlar|Mespilus germanica|fruit tree (generic term)
+medlars|1
+(noun)|Medical Literature Analysis and Retrieval System|MEDLARS|relational database (generic term)
+medley|1
+(noun)|potpourri|pastiche|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+medline|1
+(noun)|MEDLINE|telephone system (generic term)|phone system (generic term)
+medoc|1
+(noun)|Medoc|Bordeaux (generic term)|Bordeaux wine (generic term)|red wine (generic term)
+medroxyprogesterone|1
+(noun)|Provera|progestin (generic term)|progestogen (generic term)
+medulla|3
+(noun)|myelin|myeline|fat (generic term)
+(noun)|medulla oblongata|bulb|neural structure (generic term)
+(noun)|animal tissue (generic term)|plant tissue (generic term)|cortex (antonym)
+medulla oblongata|1
+(noun)|medulla|bulb|neural structure (generic term)
+medulla spinalis|1
+(noun)|spinal cord|neural structure (generic term)|funiculus (generic term)
+medullary|3
+(adj)|connective tissue (related term)
+(adj)|neural structure (related term)
+(adj)|animal tissue|plant tissue (related term)
+medullary ray|1
+(noun)|vascular ray|vascular tissue (generic term)
+medullary sheath|1
+(noun)|myelin sheath|sheath (generic term)|case (generic term)
+medullated|1
+(adj)|myelinated|fat (related term)|unmyelinated (antonym)
+medullated nerve fiber|1
+(noun)|myelinated nerve fiber|nerve fiber (generic term)|nerve fibre (generic term)
+medusa|3
+(noun)|Medusa|Gorgon (generic term)
+(noun)|jellyfish|medusan|coelenterate (generic term)|cnidarian (generic term)
+(noun)|coelenterate (generic term)|cnidarian (generic term)
+medusa's head|2
+(noun)|Euphorbia medusae|Euphorbia caput-medusae|spurge (generic term)
+(noun)|Elymus caput-medusae|wild rye (generic term)
+medusan|1
+(noun)|jellyfish|medusa|coelenterate (generic term)|cnidarian (generic term)
+medusoid|1
+(adj)|coelenterate|cnidarian (related term)
+meed|1
+(noun)|reward (generic term)
+meek|3
+(adj)|mild|modest|humble (similar term)
+(adj)|tame|docile (similar term)
+(adj)|spiritless|submissive (similar term)
+meekly|1
+(adv)|humbly
+meekness|2
+(noun)|submission|humility (generic term)|humbleness (generic term)
+(noun)|subduedness|humility (generic term)|humbleness (generic term)
+meerestone|1
+(noun)|merestone|mearstone|landmark (generic term)
+meerkat|1
+(noun)|mierkat|viverrine (generic term)|viverrine mammal (generic term)
+meerschaum|2
+(noun)|sepiolite|mineral (generic term)
+(noun)|pipe (generic term)|tobacco pipe (generic term)
+meet|14
+(adj)|fitting|just (similar term)
+(noun)|sports meeting|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+(verb)|run into|encounter|run across|come across|see
+(verb)|get together
+(verb)|converge|diverge (antonym)|diverge (antonym)
+(verb)|satisfy|fill|fulfill|fulfil|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|fit|conform to|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|match|cope with|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|gather|assemble|forgather|foregather|interact (generic term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|encounter|play|take on
+(verb)|encounter|receive|have (generic term)|experience (generic term)
+(verb)|suffer|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|touch|adjoin|contact
+meet up with|1
+(verb)|meet (generic term)
+meeter|1
+(noun)|attendant|attender|attendee|participant (generic term)
+meeting|6
+(noun)|group meeting|gathering (generic term)|assemblage (generic term)
+(noun)|coming together|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+(noun)|get together|social gathering (generic term)|social affair (generic term)
+(noun)|encounter|convergence (generic term)
+(noun)|merging|coming together|convergence (generic term)|converging (generic term)|convergency (generic term)
+(noun)|confluence|geographic point (generic term)|geographical point (generic term)
+meeting house|1
+(noun)|honeysuckle|Aquilegia canadensis|columbine (generic term)|aquilegia (generic term)|aquilege (generic term)
+meeting of minds|1
+(noun)|concurrence|agreement (generic term)|accord (generic term)
+meeting place|1
+(noun)|forum|assembly|facility (generic term)|installation (generic term)
+meetinghouse|1
+(noun)|conventicle|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+mefenamic acid|1
+(noun)|Ponstel|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+mefloquine|1
+(noun)|mefloquine hydrochloride|Larium|Mephaquine|antimalarial (generic term)|antimalarial drug (generic term)
+mefloquine hydrochloride|1
+(noun)|mefloquine|Larium|Mephaquine|antimalarial (generic term)|antimalarial drug (generic term)
+mefoxin|1
+(noun)|cephalosporin|Mefoxin|antibiotic (generic term)|antibiotic drug (generic term)
+meg|1
+(noun)|million|1000000|one thousand thousand|large integer (generic term)
+megabat|1
+(noun)|fruit bat|bat (generic term)|chiropteran (generic term)
+megabit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+megabucks|1
+(noun)|pile|bundle|big bucks|big money|money (generic term)
+megabyte|1
+(noun)|MB|computer memory unit (generic term)
+megacardia|1
+(noun)|cardiomegaly|megalocardia|enlarged heart|symptom (generic term)
+megacephaly|1
+(noun)|macrocephaly|megalocephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+megachile|1
+(noun)|Megachile|genus Megachile|arthropod genus (generic term)
+megachilidae|1
+(noun)|Megachilidae|family Megachilidae|arthropod family (generic term)
+megachiroptera|1
+(noun)|Megachiroptera|suborder Megachiroptera|animal order (generic term)
+megacolon|1
+(noun)|colon (generic term)
+megacycle|1
+(noun)|megahertz|MHz|megacycle per second|Mc|rate (generic term)
+megacycle per second|1
+(noun)|megahertz|MHz|megacycle|Mc|rate (generic term)
+megadeath|1
+(noun)|death (generic term)|decease (generic term)|expiry (generic term)
+megaderma|1
+(noun)|Megaderma|genus Megaderma|mammal genus (generic term)
+megaderma lyra|1
+(noun)|big-eared bat|Megaderma lyra|false vampire (generic term)|false vampire bat (generic term)
+megadermatidae|1
+(noun)|Megadermatidae|family Megadermatidae|mammal family (generic term)
+megaera|1
+(noun)|Megaera|Fury (generic term)|Eumenides (generic term)|Erinyes (generic term)
+megaflop|1
+(noun)|MFLOP|million floating point operations per second|unit of measurement (generic term)|unit (generic term)
+megagametophyte|1
+(noun)|gametophyte (generic term)
+megahertz|1
+(noun)|MHz|megacycle per second|megacycle|Mc|rate (generic term)
+megahit|1
+(noun)|blockbuster|smash hit|hit (generic term)|smash (generic term)|smasher (generic term)|strike (generic term)|bang (generic term)
+megakaryocyte|1
+(noun)|bone cell (generic term)
+megakaryocytic|1
+(adj)|bone cell (related term)
+megalith|1
+(noun)|megalithic structure|memorial (generic term)|monument (generic term)
+megalithic|1
+(adj)|memorial|monument (related term)
+megalithic structure|1
+(noun)|megalith|memorial (generic term)|monument (generic term)
+megalobatrachus|1
+(noun)|Megalobatrachus|genus Megalobatrachus|amphibian genus (generic term)
+megalobatrachus maximus|1
+(noun)|giant salamander|Megalobatrachus maximus|salamander (generic term)
+megaloblast|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+megaloblastic|1
+(adj)|red blood cell|RBC|erythrocyte (related term)
+megaloblastic anaemia|1
+(noun)|megaloblastic anemia|pernicious anemia (generic term)|pernicious anaemia (generic term)|malignant anemia (generic term)|malignant anaemia (generic term)
+megaloblastic anemia|1
+(noun)|megaloblastic anaemia|pernicious anemia (generic term)|pernicious anaemia (generic term)|malignant anemia (generic term)|malignant anaemia (generic term)
+megalocardia|1
+(noun)|cardiomegaly|megacardia|enlarged heart|symptom (generic term)
+megalocephaly|1
+(noun)|macrocephaly|megacephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+megalocyte|1
+(noun)|macrocyte|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+megalohepatia|1
+(noun)|hepatomegaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+megalomania|1
+(noun)|mental illness (generic term)|mental disease (generic term)|psychopathy (generic term)
+megalomaniac|1
+(noun)|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+megalomaniacal|1
+(adj)|megalomanic|neurotic (similar term)|psychoneurotic (similar term)
+megalomanic|1
+(adj)|megalomaniacal|neurotic (similar term)|psychoneurotic (similar term)
+megalonychidae|1
+(noun)|Megalonychidae|family Megalonychidae|mammal family (generic term)
+megalopolis|1
+(noun)|urban area (generic term)|populated area (generic term)
+megaloptera|1
+(noun)|Megaloptera|suborder Megaloptera|animal order (generic term)
+megalosaur|1
+(noun)|megalosaurus|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+megalosauridae|1
+(noun)|Megalosauridae|family Megalosauridae|reptile family (generic term)
+megalosaurus|1
+(noun)|megalosaur|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+megalp|1
+(noun)|megilp|medium (generic term)
+megaphone|1
+(noun)|acoustic device (generic term)
+megapode|1
+(noun)|mound bird|mound-bird|mound builder|scrub fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+megapodiidae|1
+(noun)|Megapodiidae|family Megapodiidae|bird family (generic term)
+megapodius|1
+(noun)|Megapodius|genus-Megapodius|bird genus (generic term)
+megaptera|1
+(noun)|Megaptera|genus Megaptera|mammal genus (generic term)
+megaptera novaeangliae|1
+(noun)|humpback|humpback whale|Megaptera novaeangliae|baleen whale (generic term)|whalebone whale (generic term)
+megascopic|1
+(adj)|gross|macroscopic (similar term)|macroscopical (similar term)
+megasporangium|1
+(noun)|macrosporangium|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+megaspore|1
+(noun)|macrospore|spore (generic term)
+megasporophyll|1
+(noun)|sporophyll (generic term)|sporophyl (generic term)
+megathere|1
+(noun)|ground sloth|megatherian (generic term)|megatheriid (generic term)|megatherian mammal (generic term)
+megatherian|1
+(noun)|megatheriid|megatherian mammal|edentate (generic term)
+megatherian mammal|1
+(noun)|megatherian|megatheriid|edentate (generic term)
+megatheriid|1
+(noun)|megatherian|megatherian mammal|edentate (generic term)
+megatheriidae|1
+(noun)|Megatheriidae|family Megatheriidae|mammal family (generic term)
+megatherium|1
+(noun)|Megatherium|genus Megatherium|mammal genus (generic term)
+megaton|2
+(noun)|explosive unit (generic term)
+(noun)|avoirdupois unit (generic term)
+megaton bomb|1
+(noun)|nuclear weapon (generic term)|bomb (generic term)
+megavitamin therapy|1
+(noun)|therapy (generic term)
+megawatt|1
+(noun)|power unit (generic term)
+megesterol|1
+(noun)|megestrol acetate|progestin (generic term)|progestogen (generic term)
+megestrol acetate|1
+(noun)|megesterol|progestin (generic term)|progestogen (generic term)
+megillah|2
+(noun)|report (generic term)|account (generic term)
+(noun)|Megillah|scroll (generic term)|roll (generic term)
+megilp|1
+(noun)|megalp|medium (generic term)
+megohm|1
+(noun)|resistance unit (generic term)
+megrim|1
+(noun)|migraine|sick headache|hemicrania|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+megrims|1
+(noun)|blues|blue devils|vapors|vapours|depression (generic term)
+mehemet ali|1
+(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier (generic term)
+mei|1
+(noun)|Japanese apricot|Prunus mume|apricot (generic term)|apricot tree (generic term)
+meibomian cyst|1
+(noun)|chalazion|Meibomian cyst|sebaceous cyst (generic term)|pilar cyst (generic term)|wen (generic term)|steatocystoma (generic term)
+meibomian gland|1
+(noun)|Meibomian gland|tarsal gland|sebaceous gland (generic term)|sebaceous follicle (generic term)|glandulae sebaceae (generic term)
+meiji tenno|1
+(noun)|Meiji Tenno|Mutsuhito|emperor (generic term)
+meiosis|2
+(noun)|miosis|reduction division|cell division (generic term)|cellular division (generic term)
+(noun)|litotes|rhetorical device (generic term)|understatement (generic term)
+meiotic|1
+(adj)|cell division|cellular division (related term)
+meir|1
+(noun)|Meir|Golda Meir|statesman (generic term)|solon (generic term)|national leader (generic term)
+meissner|2
+(noun)|Meissner|Georg Meissner|anatomist (generic term)
+(noun)|Meissner|Fritz W. Meissner|physicist (generic term)
+meister eckhart|1
+(noun)|Eckhart|Johannes Eckhart|Meister Eckhart|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|mystic (generic term)|religious mystic (generic term)
+meitner|1
+(noun)|Meitner|Lise Meitner|nuclear physicist (generic term)
+meitnerium|1
+(noun)|Mt|element 109|atomic number 109|chemical element (generic term)|element (generic term)
+mek|1
+(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+mekong|1
+(noun)|Mekong|Mekong River|river (generic term)
+mekong river|1
+(noun)|Mekong|Mekong River|river (generic term)
+mel columcille gerard gibson|1
+(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+mel gibson|1
+(noun)|Gibson|Mel Gibson|Mel Columcille Gerard Gibson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+melaena|1
+(noun)|melena|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+melagra|1
+(noun)|pain (generic term)|hurting (generic term)
+melagueta pepper|1
+(noun)|grains of paradise|Guinea grains|Guinea pepper|Aframomum melegueta|herb (generic term)|herbaceous plant (generic term)
+melamine|1
+(noun)|cyanuramide|base (generic term)|alkali (generic term)
+melamine resin|1
+(noun)|synthetic resin (generic term)
+melampodium|1
+(noun)|Melampodium|genus Melampodium|asterid dicot genus (generic term)
+melampodium leucanthum|1
+(noun)|blackfoot daisy|Melampodium leucanthum|wildflower (generic term)|wild flower (generic term)
+melampsora|1
+(noun)|Melampsora|genus Melampsora|fungus genus (generic term)
+melampsora lini|1
+(noun)|flax rust|flax rust fungus|Melampsora lini|rust (generic term)|rust fungus (generic term)
+melampsoraceae|1
+(noun)|Melampsoraceae|family Melampsoraceae|fungus family (generic term)
+melancholia|1
+(noun)|depression (generic term)
+melancholiac|1
+(noun)|melancholic|depressive (generic term)
+melancholic|2
+(adj)|melancholy|sad (similar term)
+(noun)|melancholiac|depressive (generic term)
+melancholy|5
+(adj)|melancholic|sad (similar term)
+(adj)|somber|sombre|cheerless (similar term)|uncheerful (similar term)
+(noun)|sadness (generic term)|unhappiness (generic term)
+(noun)|depression (generic term)
+(noun)|black bile|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+melancholy thistle|1
+(noun)|Cirsium heterophylum|Cirsium helenioides|thistle (generic term)
+melanchthon|1
+(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+melanerpes|1
+(noun)|Melanerpes|genus Melanerpes|bird genus (generic term)
+melanerpes erythrocephalus|1
+(noun)|redheaded woodpecker|redhead|Melanerpes erythrocephalus|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+melanesia|1
+(noun)|Melanesia|archipelago (generic term)
+melanesian|1
+(adj)|Melanesian|archipelago (related term)
+melange|1
+(noun)|odds and ends|oddments|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+melanie klein|1
+(noun)|Klein|Melanie Klein|analyst (generic term)|psychoanalyst (generic term)
+melanin|1
+(noun)|animal pigment (generic term)
+melanise|2
+(verb)|melanize|convert (generic term)
+(verb)|blacken|melanize|nigrify|black|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|whiten (antonym)
+melanism|1
+(noun)|melanosis|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+melanitta|1
+(noun)|Melanitta|genus Melanitta|bird genus (generic term)
+melanitta nigra|1
+(noun)|common scoter|Melanitta nigra|scoter (generic term)|scooter (generic term)
+melanize|2
+(verb)|melanise|convert (generic term)
+(verb)|blacken|melanise|nigrify|black|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|whiten (antonym)
+melanoblast|1
+(noun)|epidermal cell (generic term)
+melanocyte|1
+(noun)|epidermal cell (generic term)
+melanocyte-stimulating hormone|1
+(noun)|MSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+melanoderma|1
+(noun)|pigmentation (generic term)
+melanogrammus|1
+(noun)|Melanogrammus|genus Melanogrammus|fish genus (generic term)
+melanogrammus aeglefinus|1
+(noun)|haddock|Melanogrammus aeglefinus|gadoid (generic term)|gadoid fish (generic term)
+melanoma|1
+(noun)|malignant melanoma|skin cancer (generic term)
+melanoplus|1
+(noun)|Melanoplus|genus Melanoplus|arthropod genus (generic term)
+melanosis|1
+(noun)|melanism|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+melanotis|1
+(noun)|Melanotis|genus Melanotis|bird genus (generic term)
+melanotis caerulescens|1
+(noun)|blue mockingbird|Melanotis caerulescens|oscine (generic term)|oscine bird (generic term)
+melanthiaceae|1
+(noun)|Melanthiaceae|family Melanthiaceae|liliid monocot family (generic term)
+melasma|1
+(noun)|chloasma|mask of pregnancy|symptom (generic term)
+melastoma|1
+(noun)|Melastoma|genus Melastoma|rosid dicot genus (generic term)
+melastoma malabathricum|1
+(noun)|Indian rhododendron|Melastoma malabathricum|shrub (generic term)|bush (generic term)
+melastomaceae|1
+(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family (generic term)
+melastomataceae|1
+(noun)|Melastomataceae|family Melastomataceae|Melastomaceae|family Melastomaceae|meadow-beauty family|rosid dicot family (generic term)
+melatonin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+melba|1
+(noun)|Melba|Dame Nellie Melba|Helen Porter Mitchell|coloratura (generic term)|coloratura soprano (generic term)
+melba toast|1
+(noun)|Melba toast|toast (generic term)
+melbourne|2
+(noun)|Melbourne|town (generic term)
+(noun)|Melbourne|state capital (generic term)
+melchior|2
+(noun)|Melchior|Lauritz Melchior|Lauritz Lebrecht Hommel Melchior|tenor (generic term)
+(noun)|Melchior|sage (generic term)
+melchite|1
+(noun)|Melkite|Melchite|Christian (generic term)
+meld|4
+(noun)|canasta|basket rummy|rummy (generic term)|rum (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|melt|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|combine|merge|change integrity (generic term)|mix up (related term)
+meleagrididae|1
+(noun)|Meleagrididae|family Meleagrididae|bird family (generic term)
+meleagris|1
+(noun)|Meleagris|genus Meleagris|bird genus (generic term)
+meleagris gallopavo|1
+(noun)|turkey|Meleagris gallopavo|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+melee|1
+(noun)|scrimmage|battle royal|disturbance (generic term)
+melena|1
+(noun)|melaena|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+meles|1
+(noun)|Meles|genus Meles|mammal genus (generic term)
+meles meles|1
+(noun)|Eurasian badger|Meles meles|badger (generic term)
+melia|1
+(noun)|Melia|genus Melia|rosid dicot genus (generic term)
+melia azadirachta|1
+(noun)|neem|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+melia azedarach|1
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+melia azederach|1
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+meliaceae|1
+(noun)|Meliaceae|family Meliaceae|mahogany family|rosid dicot family (generic term)
+melicocca|1
+(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus (generic term)|magnoliopsid genus (generic term)
+melicocca bijuga|1
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+melicocca bijugatus|1
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+melicoccus|1
+(noun)|Melicoccus|genus Melicoccus|Melicocca|genus Melicocca|dicot genus (generic term)|magnoliopsid genus (generic term)
+melicytus|1
+(noun)|Melicytus|genus Melicytus|dilleniid dicot genus (generic term)
+melilot|1
+(noun)|melilotus|sweet clover|woody plant (generic term)|ligneous plant (generic term)
+melilotus|1
+(noun)|melilot|sweet clover|woody plant (generic term)|ligneous plant (generic term)
+melilotus alba|1
+(noun)|white sweet clover|white melilot|Melilotus alba|melilotus (generic term)|melilot (generic term)|sweet clover (generic term)
+melilotus officinalis|1
+(noun)|yellow sweet clover|Melilotus officinalis|melilotus (generic term)|melilot (generic term)|sweet clover (generic term)
+melina mercouri|1
+(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress (generic term)
+melinae|1
+(noun)|Melinae|subfamily Melinae|mammal family (generic term)
+meliorate|2
+(verb)|better|improve|amend|ameliorate|change (generic term)|alter (generic term)|modify (generic term)|worsen (antonym)
+(verb)|better|improve|ameliorate|change state (generic term)|turn (generic term)|worsen (antonym)
+melioration|3
+(noun)|amelioration|betterment|improvement (generic term)
+(noun)|improvement|condition (generic term)|status (generic term)|decline (antonym)
+(noun)|drift (generic term)
+meliorative|1
+(adj)|ameliorating|ameliorative|amelioratory|bettering (similar term)
+meliorism|1
+(noun)|belief (generic term)
+meliorist|1
+(noun)|reformer|reformist|crusader|social reformer|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+meliphagidae|1
+(noun)|Meliphagidae|family Meliphagidae|bird family (generic term)
+melissa|1
+(noun)|Melissa|genus Melissa|asterid dicot genus (generic term)
+melissa officinalis|1
+(noun)|lemon balm|garden balm|sweet balm|bee balm|beebalm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+melkite|1
+(noun)|Melkite|Melchite|Christian (generic term)
+mellaril|1
+(noun)|thioridazine|Mellaril|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+mellifluous|1
+(adj)|dulcet|honeyed|mellisonant|sweet|melodious (similar term)|melodic (similar term)|musical (similar term)
+mellisonant|1
+(adj)|dulcet|honeyed|mellifluous|sweet|melodious (similar term)|melodic (similar term)|musical (similar term)
+mellivora|1
+(noun)|Mellivora|genus Mellivora|mammal genus (generic term)
+mellivora capensis|1
+(noun)|ratel|honey badger|Mellivora capensis|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+mellon|1
+(noun)|Mellon|Andrew Mellon|Andrew W. Mellon|Andrew William Mellon|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+mellow|8
+(adj)|laid-back|relaxed (similar term)
+(adj)|mellowed|ripe (similar term)|mature (similar term)
+(adj)|mellowed|mature (similar term)
+(adj)|soft (similar term)
+(adj)|high|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+(verb)|melt|mellow out|change (generic term)
+(verb)|soften (generic term)
+(adv)|mellowly
+mellow out|1
+(verb)|mellow|melt|change (generic term)
+mellowed|2
+(adj)|mellow|ripe (similar term)|mature (similar term)
+(adj)|mellow|mature (similar term)
+mellowing|1
+(noun)|ripening (generic term)|aging (generic term)|ageing (generic term)
+mellowly|1
+(adv)|mellow
+mellowness|5
+(noun)|kindheartedness (generic term)|kind-heartedness (generic term)
+(noun)|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|fullness|richness|property (generic term)
+(noun)|shade (generic term)|tint (generic term)|tincture (generic term)|tone (generic term)
+(noun)|affability (generic term)|affableness (generic term)|amiability (generic term)|amiableness (generic term)|bonhomie (generic term)|geniality (generic term)
+melocactus|1
+(noun)|Melocactus|genus Melocactus|caryophylloid dicot genus (generic term)
+melodic|2
+(adj)|melodious|musical|ariose (similar term)|songlike (similar term)|canorous (similar term)|songful (similar term)|cantabile (similar term)|singing (similar term)|dulcet (similar term)|honeyed (similar term)|mellifluous (similar term)|mellisonant (similar term)|sweet (similar term)|lyrical (similar term)|unmelodious (antonym)
+(adj)|music (related term)
+melodic line|1
+(noun)|tune|melody|air|strain|line|melodic phrase|music (generic term)
+melodic phrase|1
+(noun)|tune|melody|air|strain|melodic line|line|music (generic term)
+melodic theme|1
+(noun)|theme|musical theme|idea|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+melodious|2
+(adj)|tuneful|tuneless (antonym)
+(adj)|melodic|musical|ariose (similar term)|songlike (similar term)|canorous (similar term)|songful (similar term)|cantabile (similar term)|singing (similar term)|dulcet (similar term)|honeyed (similar term)|mellifluous (similar term)|mellisonant (similar term)|sweet (similar term)|lyrical (similar term)|unmelodious (antonym)
+melodiously|1
+(adv)|tunefully|unmelodiously (antonym)
+melodiousness|1
+(noun)|tunefulness|musicality (generic term)|musicalness (generic term)
+melodise|1
+(verb)|melodize|compose (generic term)|write (generic term)
+melodize|1
+(verb)|melodise|compose (generic term)|write (generic term)
+melodrama|1
+(noun)|comedy (generic term)
+melodramatic|2
+(adj)|dramatic (similar term)
+(adj)|histrionic|theatrical (similar term)
+melody|2
+(noun)|tune|air|strain|melodic line|line|melodic phrase|music (generic term)
+(noun)|tonal pattern|musical perception (generic term)
+melody pipe|1
+(noun)|chanter|pipe (generic term)|tabor pipe (generic term)
+melogale|1
+(noun)|Melogale|genus Melogale|mammal genus (generic term)
+meloid|1
+(noun)|blister beetle|beetle (generic term)
+meloidae|1
+(noun)|Meloidae|family Meloidae|arthropod family (generic term)
+melolontha|1
+(noun)|Melolontha|genus Melolontha|arthropod genus (generic term)
+melolontha melolontha|1
+(noun)|cockchafer|May bug|May beetle|Melolontha melolontha|melolonthid beetle (generic term)
+melolonthid beetle|1
+(noun)|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+melolonthidae|1
+(noun)|Melolonthidae|subfamily Melolonthidae|arthropod family (generic term)
+melon|2
+(noun)|edible fruit (generic term)
+(noun)|melon vine|gourd (generic term)|gourd vine (generic term)
+melon-like|1
+(adj)|vegetable (similar term)
+melon ball|1
+(noun)|melon (generic term)
+melon tree|1
+(noun)|papaya|papaia|pawpaw|papaya tree|Carica papaya|fruit tree (generic term)
+melon vine|1
+(noun)|melon|gourd (generic term)|gourd vine (generic term)
+melophagus|1
+(noun)|Melophagus|genus Melophagus|arthropod genus (generic term)
+melophagus ovinus|1
+(noun)|sheep ked|sheep-tick|sheep tick|Melophagus Ovinus|louse fly (generic term)|hippoboscid (generic term)
+melopsittacus|1
+(noun)|Melopsittacus|genus Melopsittacus|bird genus (generic term)
+melopsittacus undulatus|1
+(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|lovebird|shell parakeet|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+melosa|1
+(noun)|Chile tarweed|madia oil plant|Madia sativa|tarweed (generic term)
+melospiza|1
+(noun)|Melospiza|genus Melospiza|bird genus (generic term)
+melospiza georgiana|1
+(noun)|swamp sparrow|Melospiza georgiana|New World sparrow (generic term)
+melospiza melodia|1
+(noun)|song sparrow|Melospiza melodia|New World sparrow (generic term)
+melphalan|1
+(noun)|Alkeran|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+melpomene|1
+(noun)|Melpomene|Muse (generic term)
+melt|7
+(noun)|thaw|thawing|melting|heating (generic term)|warming (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(verb)|run|melt down|dissolve (generic term)|resolve (generic term)|break up (generic term)
+(verb)|dissolve|thaw|unfreeze|unthaw|dethaw|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|mellow|mellow out|change (generic term)
+(verb)|meld|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|fade|weaken (generic term)
+(verb)|disappear|weaken (generic term)
+melt down|1
+(verb)|melt|run|dissolve (generic term)|resolve (generic term)|break up (generic term)
+melt off|1
+(verb)|reduce|lose weight|slim|slenderize|thin|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+meltable|1
+(adj)|disintegrable|soluble (similar term)
+meltdown|2
+(noun)|nuclear meltdown|overheating (generic term)
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+melted|1
+(adj)|liquid|liquified|dissolved (similar term)|fusible (similar term)|molten (similar term)|liquefied (similar term)|liquified (similar term)|thawed (similar term)|unfrozen (related term)|unmelted (antonym)
+melter|1
+(noun)|worker (generic term)
+melting|2
+(adj)|liquescent|unfrozen (similar term)
+(noun)|thaw|melt|thawing|heating (generic term)|warming (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+melting point|1
+(noun)|freezing point|temperature (generic term)
+melting pot|2
+(noun)|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+(noun)|crucible|vessel (generic term)
+meltwater|1
+(noun)|water (generic term)|H2O (generic term)
+melursus|1
+(noun)|Melursus|genus Melursus|mammal genus (generic term)
+melursus ursinus|1
+(noun)|sloth bear|Melursus ursinus|Ursus ursinus|bear (generic term)
+melvil dewey|1
+(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian (generic term)|bibliothec (generic term)
+melville|1
+(noun)|Melville|Herman Melville|writer (generic term)|author (generic term)
+melville bell|1
+(noun)|Bell|Melville Bell|Alexander Melville Bell|phonetician (generic term)
+melville louis kossuth dewey|1
+(noun)|Dewey|Melvil Dewey|Melville Louis Kossuth Dewey|librarian (generic term)|bibliothec (generic term)
+melville w. fuller|1
+(noun)|Fuller|Melville W. Fuller|Melville Weston Fuller|chief justice (generic term)
+melville weston fuller|1
+(noun)|Fuller|Melville W. Fuller|Melville Weston Fuller|chief justice (generic term)
+melvin calvin|1
+(noun)|Calvin|Melvin Calvin|chemist (generic term)
+mem|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+member|5
+(noun)|associate (generic term)|nonmember (antonym)
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|extremity|appendage|external body part (generic term)
+(noun)|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|penis|phallus|erectile organ (generic term)
+member bank|1
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+member of parliament|1
+(noun)|Parliamentarian|Member of Parliament|legislator (generic term)
+membered|1
+(adj)|three-membered (similar term)|3-membered (similar term)|four-membered (similar term)|4-membered (similar term)|five-membered (similar term)|5-membered (similar term)|six-membered (similar term)|6-membered (similar term)|seven-membered (similar term)|7-membered (similar term)|eight-membered (similar term)|8-membered (similar term)|nine-membered (similar term)|9-membered (similar term)|ten-membered (similar term)|10-membered (similar term)|memberless (antonym)
+memberless|1
+(adj)|membered (antonym)
+membership|2
+(noun)|rank|body (generic term)
+(noun)|relationship (generic term)
+membership card|1
+(noun)|card (generic term)|identity card (generic term)
+membracidae|1
+(noun)|Membracidae|family Membracidae|arthropod family (generic term)
+membrane|2
+(noun)|sheet (generic term)|flat solid (generic term)
+(noun)|tissue layer|animal tissue (generic term)
+membrane-forming|1
+(adj)|membranous|unhealthy (similar term)
+membrane bone|1
+(noun)|bone (generic term)|os (generic term)
+membranophone|1
+(noun)|drum|tympan|percussion instrument (generic term)|percussive instrument (generic term)
+membranous|2
+(adj)|animal tissue (related term)
+(adj)|membrane-forming|unhealthy (similar term)
+membranous labyrinth|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+meme|1
+(noun)|acculturation (generic term)|culture (generic term)
+memel|1
+(noun)|Klaipeda|Memel|city (generic term)|metropolis (generic term)|urban center (generic term)
+memento|1
+(noun)|souvenir|reminder (generic term)
+memento mori|1
+(noun)|reminder (generic term)
+memo|1
+(noun)|memorandum|memoranda|note (generic term)
+memoir|2
+(noun)|autobiography (generic term)
+(noun)|essay (generic term)
+memorabilia|1
+(noun)|record (generic term)
+memorability|1
+(noun)|quality (generic term)
+memorable|1
+(adj)|unforgettable (similar term)
+memorably|1
+(adv)|unforgettably|unmemorably (antonym)
+memoranda|1
+(noun)|memo|memorandum|note (generic term)
+memorandum|1
+(noun)|memo|memoranda|note (generic term)
+memorial|3
+(noun)|commemoration|remembrance|recognition (generic term)|credit (generic term)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|monument|structure (generic term)|construction (generic term)
+memorial day|1
+(noun)|Memorial Day|Decoration Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+memorial park|1
+(noun)|cemetery|graveyard|burial site|burial ground|burying ground|necropolis|site (generic term)|land site (generic term)
+memorial tablet|1
+(noun)|brass|plaque|memorial (generic term)|monument (generic term)
+memorialisation|1
+(noun)|commemoration|memorialization|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+memorialise|2
+(verb)|memorialize|address (generic term)|speak (generic term)
+(verb)|commemorate|memorialize|immortalize|immortalise|record|remind (generic term)
+memorialization|1
+(noun)|commemoration|memorialisation|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+memorialize|2
+(verb)|memorialise|address (generic term)|speak (generic term)
+(verb)|commemorate|memorialise|immortalize|immortalise|record|remind (generic term)
+memorisation|1
+(noun)|memorization|committal to memory|learning (generic term)|acquisition (generic term)
+memorise|1
+(verb)|memorize|con|learn|study (generic term)|hit the books (generic term)
+memoriser|1
+(noun)|memorizer|learner (generic term)|scholar (generic term)|assimilator (generic term)
+memorization|1
+(noun)|memorisation|committal to memory|learning (generic term)|acquisition (generic term)
+memorize|1
+(verb)|memorise|con|learn|study (generic term)|hit the books (generic term)
+memorizer|1
+(noun)|memoriser|learner (generic term)|scholar (generic term)|assimilator (generic term)
+memory|5
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|remembering|basic cognitive process (generic term)
+(noun)|retention|retentiveness|retentivity|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|computer memory|storage|computer storage|store|memory board|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+(noun)|cognitive psychology (generic term)
+memory access|1
+(noun)|access|operation (generic term)
+memory board|1
+(noun)|memory|computer memory|storage|computer storage|store|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+memory cache|1
+(noun)|cache|buffer (generic term)|buffer storage (generic term)|buffer store (generic term)
+memory chip|1
+(noun)|chip (generic term)|microchip (generic term)|micro chip (generic term)|silicon chip (generic term)
+memory device|1
+(noun)|storage device|device (generic term)
+memory image|1
+(noun)|image (generic term)|mental image (generic term)
+memory loss|1
+(noun)|amnesia|blackout|cognitive state (generic term)|state of mind (generic term)
+memory picture|1
+(noun)|memory image (generic term)
+memory trace|1
+(noun)|engram|memory (generic term)
+memphis|1
+(noun)|Memphis|city (generic term)|metropolis (generic term)|urban center (generic term)
+memsahib|1
+(noun)|sahib (generic term)
+men|1
+(noun)|work force|workforce|manpower|hands|force (generic term)|personnel (generic term)
+men's|1
+(noun)|men's room|public toilet (generic term)|comfort station (generic term)|public convenience (generic term)|convenience (generic term)|public lavatory (generic term)|restroom (generic term)|toilet facility (generic term)|wash room (generic term)
+men's furnishings|1
+(noun)|haberdashery|drygoods (generic term)|soft goods (generic term)
+men's room|1
+(noun)|men's|public toilet (generic term)|comfort station (generic term)|public convenience (generic term)|convenience (generic term)|public lavatory (generic term)|restroom (generic term)|toilet facility (generic term)|wash room (generic term)
+menace|5
+(noun)|threat|danger (generic term)
+(noun)|threat (generic term)
+(verb)|endanger|jeopardize|jeopardise|threaten|imperil|peril|exist (generic term)|be (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+menachem begin|1
+(noun)|Begin|Menachem Begin|statesman (generic term)|solon (generic term)|national leader (generic term)
+menacing|1
+(adj)|baleful|forbidding|minacious|minatory|ominous|sinister|threatening|alarming (similar term)
+menacingly|1
+(adv)|threateningly
+menadione|1
+(noun)|vitamin K3|vitamin K (generic term)|naphthoquinone (generic term)|antihemorrhagic factor (generic term)
+menage|1
+(noun)|family|household|house|home|unit (generic term)|social unit (generic term)
+menage a trois|1
+(noun)|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+menagerie|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|zoo|zoological garden|facility (generic term)|installation (generic term)
+menai strait|1
+(noun)|Menai Strait|strait (generic term)|sound (generic term)
+menander|1
+(noun)|Menander|dramatist (generic term)|playwright (generic term)
+menarche|1
+(noun)|start (generic term)
+mencken|1
+(noun)|Mencken|H. L. Mencken|Henry Louis Mencken|journalist (generic term)|literary critic (generic term)
+mend|4
+(noun)|patch|darn|sewing (generic term)|stitchery (generic term)
+(noun)|repair|fix|fixing|fixture|mending|reparation|improvement (generic term)
+(verb)|repair|fix|bushel|doctor|furbish up|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+(verb)|heal|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+mendacious|2
+(adj)|lying|untruthful (similar term)
+(adj)|false (similar term)
+mendaciously|1
+(adv)|untruthfully|truthfully (antonym)
+mendacity|1
+(noun)|untruthfulness (generic term)|veracity (antonym)
+mendel|1
+(noun)|Mendel|Gregor Mendel|Johann Mendel|monk (generic term)|monastic (generic term)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+mendel's law|1
+(noun)|Mendel's law|law (generic term)|law of nature (generic term)
+mendeleev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+mendeleev's law|1
+(noun)|periodic law|Mendeleev's law|law (generic term)|law of nature (generic term)
+mendelevium|1
+(noun)|Md|Mv|atomic number 101|chemical element (generic term)|element (generic term)
+mendeleyev|1
+(noun)|Mendeleyev|Mendeleev|Dmitri Mendeleyev|Dmitri Mendeleev|Dmitri Ivanovich Mendeleyev|Dmitri Ivanovich Mendeleev|chemist (generic term)
+mendelian|2
+(adj)|Mendelian|monk|monastic|botanist|phytologist|plant scientist (related term)
+(noun)|Mendelian|follower (generic term)
+mendelianism|1
+(noun)|Mendelism|Mendelianism|theory of inheritance (generic term)
+mendelism|1
+(noun)|Mendelism|Mendelianism|theory of inheritance (generic term)
+mendelsohn|1
+(noun)|Mendelsohn|Erich Mendelsohn|architect (generic term)|designer (generic term)
+mendelssohn|1
+(noun)|Mendelssohn|Felix Mendelssohn|Jakob Ludwig Felix Mendelssohn-Bartholdy|composer (generic term)
+mendenhall glacier|1
+(noun)|Mendenhall Glacier|Great Mendenhall Glacier|Piedmont glacier (generic term)|Piedmont type of glacier (generic term)
+mender|1
+(noun)|repairer|fixer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+mendicancy|2
+(noun)|beggary|mendicity|indigence (generic term)|need (generic term)|penury (generic term)|pauperism (generic term)|pauperization (generic term)
+(noun)|beggary|begging|solicitation (generic term)
+mendicant|3
+(adj)|beseeching (similar term)
+(noun)|friar|religious (generic term)
+(noun)|beggar|pauper (generic term)|poor man (generic term)
+mendicity|1
+(noun)|beggary|mendicancy|indigence (generic term)|need (generic term)|penury (generic term)|pauperism (generic term)|pauperization (generic term)
+mending|2
+(noun)|garment (generic term)
+(noun)|repair|fix|fixing|fixture|mend|reparation|improvement (generic term)
+menelaus|1
+(noun)|Menelaus|mythical being (generic term)
+menhaden|1
+(noun)|Brevoortia tyrannis|clupeid fish (generic term)|clupeid (generic term)
+menhaden oil|1
+(noun)|animal oil (generic term)
+menhir|1
+(noun)|standing stone|megalith (generic term)|megalithic structure (generic term)
+menial|2
+(adj)|humble|lowly|unskilled (similar term)
+(noun)|dogsbody|servant (generic term)|retainer (generic term)
+meniere|1
+(noun)|Meniere|Prosper Meniere|ear doctor (generic term)|ear specialist (generic term)|otologist (generic term)
+meniere's disease|1
+(noun)|Meniere's disease|disease (generic term)
+meningeal|1
+(adj)|membrane|tissue layer (related term)
+meningeal artery|1
+(noun)|arteria meningea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+meningeal veins|1
+(noun)|venae meningeae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+meninges|1
+(noun)|meninx|membrane (generic term)|tissue layer (generic term)
+meningioma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+meningism|1
+(noun)|symptom (generic term)
+meningitis|1
+(noun)|infectious disease (generic term)
+meningocele|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+meningoencephalitis|1
+(noun)|cerebromeningitis|encephalomeningitis|meningitis (generic term)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+meninx|1
+(noun)|meninges|membrane (generic term)|tissue layer (generic term)
+menippe|1
+(noun)|Menippe|genus Menippe|arthropod genus (generic term)
+menippe mercenaria|1
+(noun)|stone crab|Menippe mercenaria|crab (generic term)
+meniscectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+meniscium|1
+(noun)|Meniscium|genus Meniscium|fern genus (generic term)
+meniscus|3
+(noun)|semilunar cartilage|cartilage (generic term)|gristle (generic term)
+(noun)|lens (generic term)|lense (generic term)|lens system (generic term)
+(noun)|surface (generic term)
+menispermaceae|1
+(noun)|Menispermaceae|family Menispermaceae|moonseed family|magnoliid dicot family (generic term)
+menispermum|1
+(noun)|Menispermum|genus Menispermum|magnoliid dicot genus (generic term)
+menispermum canadense|1
+(noun)|common moonseed|Canada moonseed|yellow parilla|Menispermum canadense|moonseed (generic term)
+menninger|3
+(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+(noun)|Menninger|Karl Menninger|Karl Augustus Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+(noun)|Menninger|Charles Menninger|Charles Frederick Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+mennonite|1
+(noun)|Mennonite|Anabaptist (generic term)
+mennonite church|1
+(noun)|Mennonite Church|Protestant denomination (generic term)
+mennonitism|1
+(noun)|Mennonitism|Protestantism (generic term)
+meno mosso|1
+(noun)|tempo (generic term)|pacing (generic term)
+menominee|2
+(noun)|Menomini|Menominee|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Menomini|Menominee|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+menominee whitefish|1
+(noun)|round whitefish|Menominee whitefish|Prosopium cylindraceum|whitefish (generic term)
+menomini|2
+(noun)|Menomini|Menominee|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Menomini|Menominee|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+menopausal|1
+(adj)|biological time (related term)
+menopause|1
+(noun)|climacteric|change of life|biological time (generic term)
+menopon|1
+(noun)|Menopon|genus Menopon|arthropod genus (generic term)
+menopon gallinae|1
+(noun)|chicken louse|shaft louse|Menopon palladum|Menopon gallinae|bird louse (generic term)|biting louse (generic term)|louse (generic term)
+menopon palladum|1
+(noun)|chicken louse|shaft louse|Menopon palladum|Menopon gallinae|bird louse (generic term)|biting louse (generic term)|louse (generic term)
+menorah|2
+(noun)|Menorah|candelabrum (generic term)|candelabra (generic term)
+(noun)|candelabrum (generic term)|candelabra (generic term)
+menorrhagia|1
+(noun)|hypermenorrhea|menstruation (generic term)|menses (generic term)|menstruum (generic term)|catamenia (generic term)|period (generic term)|flow (generic term)|symptom (generic term)
+menorrhea|1
+(noun)|menstrual blood|menstrual flow|blood (generic term)
+menotti|1
+(noun)|Menotti|Gian Carlo Menotti|composer (generic term)
+menotyphla|1
+(noun)|Menotyphla|suborder Menotyphla|animal order (generic term)
+mens rea|1
+(noun)|malice aforethought|planning (generic term)|preparation (generic term)|provision (generic term)
+mens store|1
+(noun)|clothing store|haberdashery|haberdashery store|shop (generic term)|store (generic term)
+mensa|1
+(noun)|Mensa|constellation (generic term)
+mensal|1
+(adj)|table (related term)
+mensal line|1
+(noun)|line of heart|heart line|love line|wrinkle (generic term)|furrow (generic term)|crease (generic term)|crinkle (generic term)|seam (generic term)|line (generic term)
+mensch|1
+(noun)|mensh|good person (generic term)
+menses|1
+(noun)|menstruation|menstruum|catamenia|period|flow|discharge (generic term)|emission (generic term)|expelling (generic term)
+mensh|1
+(noun)|mensch|good person (generic term)
+menshevik|1
+(noun)|Menshevik|socialist (generic term)
+menstrual|1
+(adj)|catamenial|discharge|emission|expelling (related term)
+menstrual blood|1
+(noun)|menorrhea|menstrual flow|blood (generic term)
+menstrual cycle|1
+(noun)|cycle (generic term)|oscillation (generic term)
+menstrual flow|1
+(noun)|menorrhea|menstrual blood|blood (generic term)
+menstrual phase|1
+(noun)|phase (generic term)|stage (generic term)
+menstruate|1
+(verb)|flow|shed blood (generic term)|bleed (generic term)|hemorrhage (generic term)
+menstruation|1
+(noun)|menses|menstruum|catamenia|period|flow|discharge (generic term)|emission (generic term)|expelling (generic term)
+menstruum|2
+(noun)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+(noun)|menstruation|menses|catamenia|period|flow|discharge (generic term)|emission (generic term)|expelling (generic term)
+mensurable|1
+(adj)|measurable|immeasurable (antonym)
+mensural|2
+(adj)|abstraction (related term)
+(adj)|musical notation (related term)
+mensurate|1
+(verb)|measure|measure out|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+mensuration|1
+(noun)|measurement|measuring|measure|activity (generic term)
+mental|5
+(adj)|intellectual (similar term)|rational (similar term)|noetic (similar term)|moral (similar term)|psychic (similar term)|psychical (similar term)|psychogenic (similar term)|psychological (similar term)|physical (antonym)
+(adj)|cognition|knowledge|noesis (related term)
+(adj)|body part (related term)
+(adj)|genial|body part (related term)|feature|lineament (related term)
+(adj)|unhealthy (similar term)
+mental ability|1
+(noun)|capacity|ability (generic term)|power (generic term)|incapacity (antonym)
+mental abnormality|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+mental age|1
+(noun)|age (generic term)
+mental anguish|1
+(noun)|pain (generic term)|painfulness (generic term)
+mental attitude|1
+(noun)|attitude|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+mental balance|1
+(noun)|mental soundness|mental health (generic term)
+mental block|1
+(noun)|block|inability (generic term)
+mental capacity|1
+(noun)|brain|brainpower|learning ability|mentality|wit|intelligence (generic term)
+mental case|1
+(noun)|neurotic|psychoneurotic|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+mental confusion|1
+(noun)|confusion|confusedness|muddiness|disarray|cognitive state (generic term)|state of mind (generic term)
+mental defectiveness|1
+(noun)|abnormality|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+mental deficiency|1
+(noun)|moronity|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+mental dexterity|1
+(noun)|nimbleness|intelligence (generic term)
+mental disease|1
+(noun)|mental illness|psychopathy|psychological state (generic term)|mental state (generic term)|mental health (antonym)
+mental disorder|1
+(noun)|mental disturbance|disturbance|psychological disorder|folie|disorder (generic term)|upset (generic term)
+mental disturbance|1
+(noun)|mental disorder|disturbance|psychological disorder|folie|disorder (generic term)|upset (generic term)
+mental energy|1
+(noun)|psychic energy|motivation (generic term)|motive (generic term)|need (generic term)
+mental exhaustion|1
+(noun)|brain-fag|exhaustion (generic term)
+mental faculty|1
+(noun)|faculty|module|ability (generic term)|power (generic term)
+mental health|1
+(noun)|psychological state (generic term)|mental state (generic term)|mental illness (antonym)
+mental home|1
+(noun)|mental hospital|psychiatric hospital|mental institution|institution|insane asylum|asylum|hospital (generic term)|infirmary (generic term)
+mental hospital|1
+(noun)|psychiatric hospital|mental institution|institution|mental home|insane asylum|asylum|hospital (generic term)|infirmary (generic term)
+mental hygiene|1
+(noun)|psychotherapy|psychotherapeutics|psychiatry (generic term)|psychopathology (generic term)|psychological medicine (generic term)
+mental illness|1
+(noun)|mental disease|psychopathy|psychological state (generic term)|mental state (generic term)|mental health (antonym)
+mental image|1
+(noun)|image|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+mental imagery|1
+(noun)|imagination|imaging|imagery|representational process (generic term)
+mental institution|1
+(noun)|mental hospital|psychiatric hospital|institution|mental home|insane asylum|asylum|hospital (generic term)|infirmary (generic term)
+mental lexicon|1
+(noun)|vocabulary|lexicon|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+mental measurement|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+mental note|1
+(noun)|attention (generic term)
+mental object|1
+(noun)|content|cognitive content|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+mental picture|1
+(noun)|picture|impression|image (generic term)|mental image (generic term)
+mental process|1
+(noun)|process|cognitive process|operation|cognitive operation|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+mental quickness|1
+(noun)|quickness|quick-wittedness|intelligence (generic term)
+mental rejection|1
+(noun)|incredulity|disbelief|skepticism|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+mental representation|1
+(noun)|representation|internal representation|content (generic term)|cognitive content (generic term)|mental object (generic term)
+mental reservation|1
+(noun)|reservation|arriere pensee|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+mental retardation|1
+(noun)|retardation|backwardness|slowness|subnormality|stupidity (generic term)
+mental soundness|1
+(noun)|mental balance|mental health (generic term)
+mental state|1
+(noun)|psychological state|condition (generic term)|status (generic term)
+mental strain|1
+(noun)|strain|nervous strain|nervousness (generic term)|nerves (generic term)
+mental synthesis|1
+(noun)|construction|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+mental telepathist|1
+(noun)|telepathist|thought-reader|mind reader|communicator (generic term)
+mental test|1
+(noun)|test|mental testing|psychometric test|mental measurement (generic term)
+mental testing|1
+(noun)|test|mental test|psychometric test|mental measurement (generic term)
+mental unsoundness|1
+(noun)|derangement|unbalance|insanity (generic term)
+mentalism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+mentality|2
+(noun)|outlook|mindset|mind-set|attitude (generic term)|mental attitude (generic term)
+(noun)|brain|brainpower|learning ability|mental capacity|wit|intelligence (generic term)
+mentally ill|1
+(adj)|unsound|unstable|insane (similar term)
+mentally retarded|1
+(noun)|retarded|people (generic term)
+mentation|1
+(noun)|thinking|thought|thought process|cerebration|intellection|higher cognitive process (generic term)
+mentha|1
+(noun)|Mentha|genus Mentha|asterid dicot genus (generic term)
+mentha aquatica|1
+(noun)|water-mint|water mint|Mentha aquatica|mint (generic term)
+mentha arvensis|1
+(noun)|corn mint|field mint|Mentha arvensis|mint (generic term)
+mentha citrata|1
+(noun)|bergamot mint|lemon mint|eau de cologne mint|Mentha citrata|mint (generic term)
+mentha longifolia|1
+(noun)|horsemint|Mentha longifolia|mint (generic term)
+mentha piperita|1
+(noun)|peppermint|Mentha piperita|mint (generic term)
+mentha pulegium|1
+(noun)|pennyroyal|Mentha pulegium|mint (generic term)
+mentha rotundifolia|1
+(noun)|apple mint|applemint|Mentha rotundifolia|Mentha suaveolens|mint (generic term)
+mentha spicata|1
+(noun)|spearmint|Mentha spicata|mint (generic term)
+mentha suaveolens|1
+(noun)|apple mint|applemint|Mentha rotundifolia|Mentha suaveolens|mint (generic term)
+menthol|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|lotion (generic term)|application (generic term)
+mentholated|1
+(adj)|compound|chemical compound (related term)
+mentholated salve|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+menticirrhus|1
+(noun)|Menticirrhus|genus Menticirrhus|fish genus (generic term)
+menticirrhus americanus|1
+(noun)|king whiting|Menticirrhus americanus|whiting (generic term)
+menticirrhus littoralis|1
+(noun)|silver whiting|Menticirrhus littoralis|whiting (generic term)
+menticirrhus saxatilis|1
+(noun)|northern whiting|Menticirrhus saxatilis|whiting (generic term)
+menticirrhus undulatus|1
+(noun)|corbina|Menticirrhus undulatus|whiting (generic term)
+mention|6
+(noun)|reference|remark (generic term)|comment (generic term)
+(noun)|citation|cite|acknowledgment|credit|reference|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|honorable mention|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(verb)|advert|bring up|cite|name|refer|think of (generic term)|have in mind (generic term)|mean (generic term)
+(verb)|note|observe|remark|state (generic term)|say (generic term)|tell (generic term)
+(verb)|cite|notice (generic term)|acknowledge (generic term)
+mentioner|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+mentor|2
+(noun)|wise man|intellectual (generic term)|intellect (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+mentum|3
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|chin|feature (generic term)|lineament (generic term)
+(noun)|body part (generic term)
+mentzelia|1
+(noun)|Mentzelia|genus Mentzelia|dilleniid dicot genus (generic term)
+mentzelia laevicaulis|1
+(noun)|blazing star|Mentzelia livicaulis|Mentzelia laevicaulis|flower (generic term)
+mentzelia lindleyi|1
+(noun)|bartonia|Mentzelia lindleyi|flower (generic term)
+mentzelia livicaulis|1
+(noun)|blazing star|Mentzelia livicaulis|Mentzelia laevicaulis|flower (generic term)
+menu|4
+(noun)|bill of fare|card|carte du jour|carte|bill (generic term)
+(noun)|fare (generic term)
+(noun)|computer menu|list (generic term)|listing (generic term)
+(noun)|fare|agenda (generic term)|docket (generic term)|schedule (generic term)
+menuhin|1
+(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist (generic term)|fiddler (generic term)
+menura|1
+(noun)|Menura|genus Menura|bird genus (generic term)
+menurae|1
+(noun)|Menurae|suborder Menurae|animal order (generic term)
+menuridae|1
+(noun)|Menuridae|family Menuridae|bird family (generic term)
+menyanthaceae|1
+(noun)|Menyanthaceae|family Menyanthaceae|buckbean family|dicot family (generic term)|magnoliopsid family (generic term)
+menyanthes|1
+(noun)|Menyanthes|genus Menyanthes|dicot genus (generic term)|magnoliopsid genus (generic term)
+menyanthes trifoliata|1
+(noun)|water shamrock|buckbean|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+menziesia|1
+(noun)|Menziesia|genus Menziesia|dilleniid dicot genus (generic term)
+menziesia ferruginea|1
+(noun)|false azalea|fool's huckleberry|Menziesia ferruginea|shrub (generic term)|bush (generic term)
+menziesia pilosa|1
+(noun)|minniebush|minnie bush|Menziesia pilosa|shrub (generic term)|bush (generic term)
+meow|2
+(noun)|mew|miaou|miaow|miaul|cry (generic term)
+(verb)|mew|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+mepacrine|1
+(noun)|quinacrine|quinacrine hydrochloride|Atabrine|antimalarial (generic term)|antimalarial drug (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+meperidine|1
+(noun)|meperidine hydrochloride|Demerol|narcotic (generic term)
+meperidine hydrochloride|1
+(noun)|meperidine|Demerol|narcotic (generic term)
+mephaquine|1
+(noun)|mefloquine|mefloquine hydrochloride|Larium|Mephaquine|antimalarial (generic term)|antimalarial drug (generic term)
+mephenytoin|1
+(noun)|Mesantoin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+mephistophelean|1
+(adj)|devilish|diabolic|diabolical|mephistophelian|evil (similar term)
+mephistopheles|1
+(noun)|Mephistopheles|evil spirit (generic term)
+mephistophelian|1
+(adj)|devilish|diabolic|diabolical|mephistophelean|evil (similar term)
+mephitic|1
+(adj)|miasmic|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+mephitinae|1
+(noun)|Mephitinae|subfamily Mephitinae|mammal family (generic term)
+mephitis|3
+(noun)|gas (generic term)
+(noun)|malodor|malodour|stench|stink|reek|fetor|foetor|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(noun)|Mephitis|genus Mephitis|mammal genus (generic term)
+mephitis macroura|1
+(noun)|hooded skunk|Mephitis macroura|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+mephitis mephitis|1
+(noun)|striped skunk|Mephitis mephitis|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+mephobarbital|1
+(noun)|Mebaral|barbiturate (generic term)|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+meprin|1
+(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+meprobamate|1
+(noun)|Miltown|Equanil|Meprin|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+meq|1
+(noun)|milliequivalent|atomic weight (generic term)|relative atomic mass (generic term)
+meralgia|1
+(noun)|pain (generic term)|hurting (generic term)
+merbromine|1
+(noun)|Mercurochrome|antiseptic (generic term)
+mercalli scale|1
+(noun)|Mercalli scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+mercantile|3
+(adj)|managed economy (related term)
+(adj)|mercenary|moneymaking|commercial (similar term)
+(adj)|commercial (similar term)
+mercantile agency|1
+(noun)|commercial agency|agency (generic term)
+mercantile establishment|1
+(noun)|retail store|sales outlet|outlet|place of business (generic term)|business establishment (generic term)
+mercantile law|1
+(noun)|commercial law|law merchant|law (generic term)|jurisprudence (generic term)
+mercantile system|1
+(noun)|mercantilism|managed economy (generic term)
+mercantilism|2
+(noun)|mercantile system|managed economy (generic term)
+(noun)|commerce|commercialism|transaction (generic term)|dealing (generic term)|dealings (generic term)
+mercaptopurine|1
+(noun)|Purinethol|antimetabolite (generic term)|immunosuppressant (generic term)|immunosuppressor (generic term)|immunosuppressive drug (generic term)|immunosuppressive (generic term)|immune suppressant drug (generic term)
+mercator|1
+(noun)|Mercator|Gerardus Mercator|Gerhard Kremer|geographer (generic term)
+mercator's projection|1
+(noun)|Mercator projection|Mercator's projection|map projection (generic term)
+mercator projection|1
+(noun)|Mercator projection|Mercator's projection|map projection (generic term)
+merce cunningham|1
+(noun)|Cunningham|Merce Cunningham|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+mercedario|1
+(noun)|Mercedario|mountain peak (generic term)
+mercenaria|1
+(noun)|Mercenaria|genus Mercenaria|mollusk genus (generic term)
+mercenaria mercenaria|1
+(noun)|quahog|quahaug|hard-shell clam|hard clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+mercenary|4
+(adj)|materialistic|worldly-minded|worldly (similar term)
+(adj)|freelance|paid (similar term)
+(adj)|mercantile|moneymaking|commercial (similar term)
+(noun)|soldier of fortune|adventurer (generic term)|venturer (generic term)
+mercer|2
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+(noun)|Mercer|John Mercer|manufacturer (generic term)|producer (generic term)
+mercerise|1
+(verb)|mercerize|process (generic term)|treat (generic term)
+mercerised|1
+(adj)|mercerized
+mercerize|1
+(verb)|mercerise|process (generic term)|treat (generic term)
+mercerized|1
+(adj)|mercerised
+merchandise|2
+(noun)|ware|product|commodity (generic term)|trade good (generic term)|good (generic term)
+(verb)|trade
+merchandiser|1
+(noun)|merchant|businessperson (generic term)|bourgeois (generic term)
+merchandising|1
+(noun)|selling|marketing|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+merchant|1
+(noun)|merchandiser|businessperson (generic term)|bourgeois (generic term)
+merchant-venturer|1
+(noun)|venturer|merchant (generic term)|merchandiser (generic term)
+merchant bank|1
+(noun)|acquirer|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+merchant marine|2
+(noun)|crew (generic term)
+(noun)|shipping|cargo ships|merchant vessels|conveyance (generic term)|transport (generic term)
+merchant ship|1
+(noun)|bottom|freighter|merchantman|cargo ship (generic term)|cargo vessel (generic term)
+merchant vessels|1
+(noun)|shipping|cargo ships|merchant marine|conveyance (generic term)|transport (generic term)
+merchantability|1
+(noun)|state (generic term)
+merchantable|1
+(adj)|marketable|sellable|vendable|vendible|salable (similar term)|saleable (similar term)
+merchantman|1
+(noun)|bottom|freighter|merchant ship|cargo ship (generic term)|cargo vessel (generic term)
+merciful|2
+(adj)|compassionate (similar term)|clement (related term)|compassionate (related term)|humane (related term)|kind (related term)|soft (related term)|merciless (antonym)
+(adj)|gracious (similar term)
+mercifulness|3
+(noun)|mercy|compassion (generic term)|compassionateness (generic term)
+(noun)|mercy|humaneness (generic term)|mercilessness (antonym)
+(noun)|clemency|mercy|lenience (generic term)|leniency (generic term)
+merciless|1
+(adj)|unmerciful|cutthroat (similar term)|fierce (similar term)|bowelless (similar term)|mortal (similar term)|pitiless (similar term)|remorseless (similar term)|ruthless (similar term)|unpitying (similar term)|tigerish (similar term)|bloody (related term)|hard (related term)|inclement (related term)|implacable (related term)|uncompassionate (related term)|unkind (related term)|merciful (antonym)
+mercilessly|1
+(adv)|pitilessly|unmercifully|remorselessly
+mercilessness|2
+(noun)|cruelty|pitilessness|ruthlessness|heartlessness (generic term)|coldheartedness (generic term)|hardheartedness (generic term)
+(noun)|unmercifulness|inhumaneness (generic term)|inhumanity (generic term)|mercifulness (antonym)
+merckx|1
+(noun)|Merckx|Eddy Merckx|cyclist (generic term)|bicyclist (generic term)|bicycler (generic term)|wheeler (generic term)
+mercouri|1
+(noun)|Mercouri|Melina Mercouri|Anna Amalia Mercouri|actress (generic term)
+mercurial|4
+(adj)|erratic|fickle|quicksilver|changeable (similar term)|changeful (similar term)
+(adj)|Mercurial|terrestrial planet|inferior planet (related term)
+(adj)|Mercurial|Roman deity (related term)
+(adj)|metallic element|metal (related term)
+mercurial ointment|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+mercurialis|1
+(noun)|Mercurialis|genus Mercurialis|rosid dicot genus (generic term)
+mercurialis annua|1
+(noun)|herb mercury|herbs mercury|boys-and-girls|Mercurialis annua|herb (generic term)|herbaceous plant (generic term)
+mercurialis perennis|1
+(noun)|dog's mercury|dog mercury|Mercurialis perennis|herb (generic term)|herbaceous plant (generic term)
+mercuric|1
+(adj)|mercurous|metallic element|metal (related term)
+mercuric chloride|1
+(noun)|mercury chloride|bichloride of mercury|corrosive sublimate|sublimate (generic term)
+mercurochrome|1
+(noun)|merbromine|Mercurochrome|antiseptic (generic term)
+mercurous|1
+(adj)|mercuric|metallic element|metal (related term)
+mercurous chloride|1
+(noun)|calomel|chloride (generic term)
+mercury|4
+(noun)|quicksilver|hydrargyrum|Hg|atomic number 80|metallic element (generic term)|metal (generic term)
+(noun)|Mercury|Roman deity (generic term)
+(noun)|Mercury|terrestrial planet (generic term)|inferior planet (generic term)
+(noun)|temperature (generic term)
+mercury-contaminated|1
+(adj)|contaminated (similar term)
+mercury-in-glass clinical thermometer|1
+(noun)|clinical thermometer|mercury thermometer (generic term)|mercury-in-glass thermometer (generic term)
+mercury-in-glass thermometer|1
+(noun)|mercury thermometer|thermometer (generic term)
+mercury-vapor lamp|1
+(noun)|ultraviolet lamp (generic term)|ultraviolet source (generic term)
+mercury barometer|1
+(noun)|barometer (generic term)
+mercury cell|1
+(noun)|voltaic cell (generic term)|galvanic cell (generic term)|primary cell (generic term)
+mercury chloride|1
+(noun)|mercuric chloride|bichloride of mercury|corrosive sublimate|sublimate (generic term)
+mercury fulminate|1
+(noun)|fulminate of mercury|fulminating mercury|fulminate (generic term)
+mercury poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+mercury program|1
+(noun)|Mercury program|space program (generic term)
+mercury thermometer|1
+(noun)|mercury-in-glass thermometer|thermometer (generic term)
+mercy|5
+(noun)|clemency|mercifulness|lenience (generic term)|leniency (generic term)
+(noun)|mercifulness|humaneness (generic term)|mercilessness (antonym)
+(noun)|mercifulness|compassion (generic term)|compassionateness (generic term)
+(noun)|blessing (generic term)|boon (generic term)
+(noun)|relief (generic term)|succor (generic term)|succour (generic term)|ministration (generic term)
+mercy killing|1
+(noun)|euthanasia|killing (generic term)|kill (generic term)|putting to death (generic term)
+mercy seat|2
+(noun)|throne (generic term)
+(noun)|covering (generic term)
+mere|3
+(adj)|specified (similar term)
+(adj)|bare|simple|plain (similar term)
+(noun)|pond (generic term)|pool (generic term)
+meredith|2
+(noun)|Meredith|James Meredith|James Howard Meredith|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|Meredith|George Meredith|novelist (generic term)|poet (generic term)
+merely|1
+(adv)|simply|just|only|but
+merestone|1
+(noun)|meerestone|mearstone|landmark (generic term)
+meretricious|3
+(adj)|woman|adult female (related term)
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|tacky|tatty|tawdry|trashy|tasteless (similar term)
+(adj)|gilded|specious|insincere (similar term)
+meretriciously|1
+(adv)|flashily
+meretriciousness|2
+(noun)|speciousness|deceptiveness (generic term)|obliquity (generic term)
+(noun)|flashiness|garishness|gaudiness|loudness|brashness|tawdriness|glitz|tastelessness (generic term)
+merganser|1
+(noun)|fish duck|sawbill|sheldrake|sea duck (generic term)
+merge|3
+(verb)|unify|unite|integrate (generic term)|disunify (antonym)
+(verb)|blend|flux|mix|conflate|commingle|immix|fuse|coalesce|meld|combine|change integrity (generic term)|mix up (related term)
+(verb)|unite|unify|change (generic term)|alter (generic term)|modify (generic term)
+merged|1
+(adj)|incorporate|incorporated|integrated|unified|united (similar term)
+mergenthaler|1
+(noun)|Mergenthaler|Ottmar Mergenthaler|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+merger|2
+(noun)|amalgamation|uniting|consolidation (generic term)|integration (generic term)
+(noun)|fusion|unification|union (generic term)
+merger agreement|1
+(noun)|acquisition agreement|contract (generic term)
+merginae|1
+(noun)|Merginae|subfamily Merginae|bird family (generic term)
+merging|4
+(adj)|blending|mingling|blended (similar term)
+(adj)|confluent|convergent (similar term)
+(noun)|meeting|coming together|convergence (generic term)|converging (generic term)|convergency (generic term)
+(noun)|confluence|conflux|blend (generic term)|blending (generic term)
+mergus|1
+(noun)|Mergus|genus Mergus|bird genus (generic term)
+mergus albellus|1
+(noun)|smew|Mergus albellus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+mergus merganser|1
+(noun)|goosander|Mergus merganser|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+mergus merganser americanus|1
+(noun)|American merganser|Mergus merganser americanus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+mergus serrator|1
+(noun)|red-breasted merganser|Mergus serrator|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+mericarp|1
+(noun)|carpel (generic term)
+merida|1
+(noun)|Merida|city (generic term)|metropolis (generic term)|urban center (generic term)
+meridian|5
+(adj)|hour|time of day (related term)
+(adj)|prime|mature (similar term)
+(noun)|acme|height|elevation|peak|pinnacle|summit|superlative|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|Meridian|town (generic term)
+(noun)|line of longitude|great circle (generic term)
+meridional|2
+(adj)|great circle (related term)
+(adj)|southern (similar term)
+meringue|1
+(noun)|topping (generic term)
+meringue kiss|1
+(noun)|kiss (generic term)|candy kiss (generic term)
+merino|1
+(noun)|merino sheep|domestic sheep (generic term)|Ovis aries (generic term)
+merino sheep|1
+(noun)|merino|domestic sheep (generic term)|Ovis aries (generic term)
+meriones|1
+(noun)|Meriones|genus Meriones|mammal genus (generic term)
+meriones longifrons|1
+(noun)|sand rat|Meriones longifrons|gerbil (generic term)|gerbille (generic term)
+meriones unguiculatus|1
+(noun)|tamarisk gerbil|Meriones unguiculatus|gerbil (generic term)|gerbille (generic term)
+meristem|1
+(noun)|plant tissue (generic term)
+merit|3
+(noun)|virtue|worth (generic term)|demerit (antonym)
+(noun)|deservingness|meritoriousness|worthiness (generic term)
+(verb)|deserve|be (generic term)
+merit badge|1
+(noun)|badge (generic term)
+merit pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+merit system|1
+(noun)|system (generic term)|system of rules (generic term)|spoils system (antonym)
+meritable|1
+(adj)|meritorious|worthy (similar term)
+merited|1
+(adj)|deserved|condign (similar term)|unmerited (antonym)
+meriting|1
+(adj)|deserving|worth|worthy (similar term)
+meritless|1
+(adj)|good-for-nothing|good-for-naught|no-account|no-count|no-good|sorry|worthless (similar term)
+meritocracy|2
+(noun)|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+meritocratic|1
+(adj)|social organization|social organisation|social structure|social system|structure (related term)
+meritorious|1
+(adj)|meritable|worthy (similar term)
+meritoriousness|1
+(noun)|deservingness|merit|worthiness (generic term)
+meriwether lewis|1
+(noun)|Lewis|Meriwether Lewis|explorer (generic term)|adventurer (generic term)
+merl|1
+(noun)|blackbird|merle|ouzel|ousel|European blackbird|Turdus merula|thrush (generic term)
+merlangus|1
+(noun)|Merlangus|genus Merlangus|fish genus (generic term)
+merlangus merlangus|1
+(noun)|whiting|Merlangus merlangus|Gadus merlangus|gadoid (generic term)|gadoid fish (generic term)
+merle|1
+(noun)|blackbird|merl|ouzel|ousel|European blackbird|Turdus merula|thrush (generic term)
+merlin|2
+(noun)|Merlin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|pigeon hawk|Falco columbarius|falcon (generic term)
+merlon|1
+(noun)|rampart (generic term)|bulwark (generic term)|wall (generic term)
+merlot|2
+(noun)|Merlot|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Merlot|red wine (generic term)
+merluccius|1
+(noun)|Merluccius|genus Merluccius|fish genus (generic term)
+merluccius bilinearis|1
+(noun)|silver hake|Merluccius bilinearis|whiting|hake (generic term)
+mermaid|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+merman|2
+(noun)|Merman|Ethel Merman|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+merodach|1
+(noun)|Marduk|Merodach|Baal Merodach|Bel-Merodach|Semitic deity (generic term)
+meromelia|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+meronym|1
+(noun)|part name|word (generic term)
+meronymy|1
+(noun)|part to whole relation|semantic relation (generic term)
+meropidae|1
+(noun)|Meropidae|family Meropidae|bird family (generic term)
+merops|1
+(noun)|Merops|genus Merops|bird genus (generic term)
+merostomata|1
+(noun)|Merostomata|class Merostomata|arthropod (generic term)
+merovingian|3
+(adj)|Merovingian|dynasty (related term)
+(noun)|Merovingian|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+(noun)|Merovingian|Merovingian dynasty|dynasty (generic term)
+merovingian dynasty|1
+(noun)|Merovingian|Merovingian dynasty|dynasty (generic term)
+merozoite|1
+(noun)|sporozoan (generic term)
+merrily|1
+(adv)|happily|mirthfully|gayly|blithely|jubilantly|with happiness|unhappily (antonym)
+merrimac|1
+(noun)|Merrimac|vessel (generic term)|watercraft (generic term)
+merrimack|1
+(noun)|Merrimack|Merrimack River|river (generic term)
+merrimack river|1
+(noun)|Merrimack|Merrimack River|river (generic term)
+merriment|2
+(noun)|gaiety|happiness (generic term)
+(noun)|fun|playfulness|diversion (generic term)|recreation (generic term)
+merriness|1
+(noun)|jocoseness|jocosity|humorousness|levity (generic term)
+merry|3
+(adj)|gay|jocund|jolly|jovial|mirthful|joyous (similar term)
+(adj)|gay|festal|festive|joyous (similar term)
+(adj)|brisk|lively|rattling|snappy|spanking|zippy|energetic (similar term)
+merry-go-round|2
+(noun)|cycle (generic term)
+(noun)|carousel|carrousel|roundabout|whirligig|ride (generic term)
+merry andrew|1
+(noun)|clown|buffoon|comedian (generic term)|comic (generic term)
+merry bells|1
+(noun)|bellwort|wild oats|flower (generic term)
+merrymaker|1
+(noun)|reveler|reveller|celebrant (generic term)|celebrator (generic term)|celebrater (generic term)
+merrymaking|1
+(noun)|conviviality|jollification|celebration (generic term)|festivity (generic term)
+mertensia|1
+(noun)|Mertensia|genus Mertensia|plant genus (generic term)
+mertensia virginica|1
+(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb (generic term)|herbaceous plant (generic term)
+merthiolate|1
+(noun)|thimerosal|sodium ethylmercurithiosalicylate|Merthiolate|antiseptic (generic term)
+merton|2
+(noun)|Merton|Thomas Merton|religious (generic term)|writer (generic term)|author (generic term)
+(noun)|Merton|Robert Merton|Robert King Merton|sociologist (generic term)
+meryl streep|1
+(noun)|Streep|Meryl Streep|actress (generic term)
+meryta|1
+(noun)|Meryta|genus Meryta|rosid dicot genus (generic term)
+meryta sinclairii|1
+(noun)|puka|Meryta sinclairii|tree (generic term)
+mesa|2
+(noun)|table|tableland (generic term)|plateau (generic term)
+(noun)|Mesa|city (generic term)|metropolis (generic term)|urban center (generic term)
+mesa verde national park|1
+(noun)|Mesa Verde National Park|national park (generic term)
+mesabi range|1
+(noun)|Mesabi Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+mesalliance|1
+(noun)|misalliance (generic term)
+mesantoin|1
+(noun)|mephenytoin|Mesantoin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+mesasamkranti|1
+(noun)|Mesasamkranti|holiday (generic term)
+mescal|2
+(noun)|mezcal|peyote|Lophophora williamsii|cactus (generic term)
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+mescal bean|1
+(noun)|coral bean|frijolito|frijolillo|Sophora secundiflora|tree (generic term)
+mescal button|1
+(noun)|sacred mushroom|magic mushroom|plant organ (generic term)
+mescaline|1
+(noun)|peyote|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+mesembryanthemum|1
+(noun)|Mesembryanthemum|genus Mesembryanthemum|caryophylloid dicot genus (generic term)
+mesembryanthemum crystallinum|1
+(noun)|ice plant|icicle plant|Mesembryanthemum crystallinum|fig marigold (generic term)|pebble plant (generic term)
+mesembryanthemum edule|1
+(noun)|Hottentot fig|Hottentot's fig|sour fig|Carpobrotus edulis|Mesembryanthemum edule|succulent (generic term)
+mesencephalon|1
+(noun)|midbrain|neural structure (generic term)
+mesenchyme|1
+(noun)|mesoderm (generic term)|mesoblast (generic term)
+mesenteric|1
+(adj)|peritoneum (related term)
+mesenteric artery|1
+(noun)|arteria mesenterica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+mesenteric plexus|1
+(noun)|plexus mesentericus|nerve plexus (generic term)
+mesenteric vein|1
+(noun)|vena mesenterica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+mesentery|1
+(noun)|peritoneum (generic term)
+mesh|9
+(noun)|linear unit (generic term)
+(noun)|engagement|meshing|interlocking|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|mesh topology|topology (generic term)|network topology (generic term)
+(noun)|net|network|meshing|meshwork|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|meshing|interlock|interlocking|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+(verb)|engage|lock|operate|move (generic term)|displace (generic term)|disengage (antonym)
+(verb)|interlock|organize (generic term)|organise (generic term)|coordinate (generic term)
+(verb)|relate (generic term)
+(verb)|enmesh|ensnarl|entangle (generic term)|tangle (generic term)|mat (generic term)|snarl (generic term)
+mesh topology|1
+(noun)|mesh|topology (generic term)|network topology (generic term)
+meshed|3
+(adj)|reticulate (similar term)|reticular (similar term)
+(adj)|engaged|intermeshed|geared (similar term)
+(noun)|Mashhad|Meshed|city (generic term)|metropolis (generic term)|urban center (generic term)
+meshing|3
+(noun)|engagement|mesh|interlocking|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|net|network|mesh|meshwork|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|mesh|interlock|interlocking|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+meshuga|1
+(adj)|meshugge|meshugga|meshuggeneh|meshuggener|impractical (similar term)
+meshugaas|1
+(noun)|mishegaas|mishegoss|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+meshugga|1
+(adj)|meshugge|meshuga|meshuggeneh|meshuggener|impractical (similar term)
+meshugge|1
+(adj)|meshugga|meshuga|meshuggeneh|meshuggener|impractical (similar term)
+meshuggeneh|2
+(adj)|meshugge|meshugga|meshuga|meshuggener|impractical (similar term)
+(noun)|meshuggener|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+meshuggener|2
+(adj)|meshugge|meshugga|meshuga|meshuggeneh|impractical (similar term)
+(noun)|meshuggeneh|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+meshwork|1
+(noun)|net|network|mesh|meshing|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+mesial|1
+(adj)|medial (similar term)|median (similar term)|sagittal (similar term)|distal (antonym)
+mesic|2
+(adj)|mesonic|hadron|boson (related term)
+(adj)|mesophytic (similar term)|xeric (antonym)|hydric (antonym)
+mesmer|1
+(noun)|Mesmer|Franz Anton Mesmer|Friedrich Anton Mesmer|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+mesmeric|1
+(adj)|hypnotic|mesmerizing|spellbinding|attractive (similar term)
+mesmerise|2
+(verb)|magnetize|mesmerize|magnetise|bewitch|spellbind|charm (generic term)|influence (generic term)|tempt (generic term)
+(verb)|hypnotize|hypnotise|mesmerize|sedate (generic term)|calm (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)
+mesmerised|1
+(adj)|fascinated|hypnotized|hypnotised|mesmerized|spellbound|spell-bound|transfixed|enchanted (similar term)
+mesmerism|1
+(noun)|hypnotism|suggestion|influence (generic term)
+mesmerist|1
+(noun)|hypnotist|hypnotizer|hypnotiser|mesmerizer|psychologist (generic term)
+mesmerize|2
+(verb)|magnetize|mesmerise|magnetise|bewitch|spellbind|charm (generic term)|influence (generic term)|tempt (generic term)
+(verb)|hypnotize|hypnotise|mesmerise|sedate (generic term)|calm (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)
+mesmerized|1
+(adj)|fascinated|hypnotized|hypnotised|mesmerised|spellbound|spell-bound|transfixed|enchanted (similar term)
+mesmerizer|1
+(noun)|hypnotist|hypnotizer|hypnotiser|mesmerist|psychologist (generic term)
+mesmerizing|1
+(adj)|hypnotic|mesmeric|spellbinding|attractive (similar term)
+mesne lord|1
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+mesoamerica|1
+(noun)|Mesoamerica|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mesoamerican|2
+(adj)|Mesoamerican|American (related term)
+(noun)|Mesoamerican|American (generic term)
+mesoblast|1
+(noun)|mesoderm|germ layer (generic term)
+mesoblastic|1
+(adj)|mesodermal|germ layer (related term)
+mesocarp|1
+(noun)|pericarp (generic term)|seed vessel (generic term)
+mesocolon|1
+(noun)|mesentery (generic term)
+mesocricetus|1
+(noun)|Mesocricetus|genus Mesocricetus|mammal genus (generic term)
+mesocricetus auratus|1
+(noun)|golden hamster|Syrian hamster|Mesocricetus auratus|hamster (generic term)
+mesoderm|1
+(noun)|mesoblast|germ layer (generic term)
+mesodermal|1
+(adj)|mesoblastic|germ layer (related term)
+mesohippus|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+mesolithic|2
+(adj)|time period|period of time|period (related term)
+(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+mesolithic age|1
+(noun)|Mesolithic Age|Mesolithic|Epipaleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+mesomorph|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+mesomorphic|1
+(adj)|muscular|athletic (similar term)|ectomorphic (antonym)|endomorphic (antonym)
+mesomorphy|1
+(noun)|athletic type|body type (generic term)|somatotype (generic term)
+meson|1
+(noun)|mesotron|hadron (generic term)|boson (generic term)
+mesonic|1
+(adj)|mesic|hadron|boson (related term)
+mesophyron|1
+(noun)|glabella|craniometric point (generic term)
+mesophyte|1
+(noun)|mesophytic plant|vascular plant (generic term)|tracheophyte (generic term)
+mesophytic|1
+(adj)|mesic (similar term)
+mesophytic plant|1
+(noun)|mesophyte|vascular plant (generic term)|tracheophyte (generic term)
+mesopotamia|1
+(noun)|Mesopotamia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mesosphere|1
+(noun)|layer (generic term)
+mesothelioma|1
+(noun)|carcinoma (generic term)
+mesothelium|1
+(noun)|epithelium (generic term)|epithelial tissue (generic term)
+mesotron|1
+(noun)|meson|hadron (generic term)|boson (generic term)
+mesozoic|2
+(adj)|Mesozoic|era|geological era (related term)
+(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era (generic term)|geological era (generic term)
+mesozoic era|1
+(noun)|Mesozoic|Mesozoic era|Age of Reptiles|era (generic term)|geological era (generic term)
+mespilus|1
+(noun)|Mespilus|genus Mespilus|rosid dicot genus (generic term)
+mespilus germanica|1
+(noun)|medlar|medlar tree|Mespilus germanica|fruit tree (generic term)
+mesquit|1
+(noun)|mesquite|shrub (generic term)|bush (generic term)
+mesquite|1
+(noun)|mesquit|shrub (generic term)|bush (generic term)
+mesquite gum|1
+(noun)|gum (generic term)
+mess|8
+(noun)|messiness|muss|mussiness|disorderliness (generic term)|disorder (generic term)
+(noun)|fix|hole|jam|muddle|pickle|kettle of fish|difficulty (generic term)
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|meal (generic term)|repast (generic term)
+(noun)|mess hall|dining room (generic term)|dining-room (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(verb)|eat (generic term)
+(verb)|mess up|disorder (generic term)|disarray (generic term)
+mess-up|1
+(noun)|ballup|balls-up|cockup|mistake (generic term)|error (generic term)|fault (generic term)
+mess about|1
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|tarry|linger|lurk|mill about|mill around|be (generic term)
+mess around|1
+(verb)|putter|potter|tinker|monkey|monkey around|muck about|muck around|work (generic term)
+mess hall|1
+(noun)|mess|dining room (generic term)|dining-room (generic term)
+mess jacket|1
+(noun)|monkey jacket|shell jacket|jacket (generic term)
+mess kit|1
+(noun)|kit (generic term)|outfit (generic term)
+mess of pottage|1
+(noun)|value (generic term)|economic value (generic term)
+mess up|3
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|ruffle|ruffle up|rumple|disarrange (generic term)
+(verb)|mess|disorder (generic term)|disarray (generic term)
+message|4
+(noun)|communication (generic term)
+(noun)|content|subject matter|substance|communication (generic term)
+(verb)|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|communicate (generic term)
+message pad|1
+(noun)|writing pad|pad (generic term)|pad of paper (generic term)|tablet (generic term)
+messaging|1
+(noun)|electronic messaging|electronic communication (generic term)
+messenger|1
+(noun)|courier|traveler (generic term)|traveller (generic term)
+messenger boy|1
+(noun)|errand boy|messenger (generic term)|courier (generic term)
+messenger rna|1
+(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid (generic term)|RNA (generic term)
+messiah|4
+(noun)|christ|savior (generic term)|saviour (generic term)|rescuer (generic term)|deliverer (generic term)
+(noun)|Messiah|Son (generic term)|Word (generic term)|Logos (generic term)
+(noun)|Messiah|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Messiah|cantata (generic term)|oratorio (generic term)
+messiahship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+messianic|1
+(adj)|savior|saviour|rescuer|deliverer (related term)
+messidor|1
+(noun)|Messidor|Revolutionary calendar month (generic term)
+messily|1
+(adv)|untidily
+messina|1
+(noun)|Messina|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+messiness|2
+(noun)|mess|muss|mussiness|disorderliness (generic term)|disorder (generic term)
+(noun)|untidiness|uncleanliness (generic term)|tidiness (antonym)
+messmate|1
+(noun)|acquaintance (generic term)|friend (generic term)
+messuage|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+messy|1
+(adj)|mussy|untidy (similar term)
+mestiza|1
+(noun)|woman (generic term)|adult female (generic term)
+mestizo|1
+(noun)|ladino|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+mestranol|1
+(noun)|estrogen (generic term)|oestrogen (generic term)
+mesua|1
+(noun)|Mesua|genus Mesua|dilleniid dicot genus (generic term)
+mesua ferrea|1
+(noun)|rose chestnut|ironwood|ironwood tree|Mesua ferrea|tree (generic term)
+metabola|1
+(noun)|holometabola|insect (generic term)
+metabolic|2
+(adj)|organic process|biological process (related term)
+(adj)|metabolous|ametabolic (antonym)
+metabolic acidosis|1
+(noun)|acidosis (generic term)
+metabolic alkalosis|1
+(noun)|alkalosis (generic term)
+metabolic disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+metabolic process|1
+(noun)|metabolism|metastasis|organic process (generic term)|biological process (generic term)
+metabolic rate|1
+(noun)|rate (generic term)
+metabolise|1
+(verb)|metabolize
+metabolism|2
+(noun)|metamorphosis|organic process (generic term)|biological process (generic term)
+(noun)|metabolic process|metastasis|organic process (generic term)|biological process (generic term)
+metabolite|1
+(noun)|substance (generic term)|matter (generic term)
+metabolize|1
+(verb)|metabolise
+metabolous|1
+(adj)|metabolic|ametabolic (antonym)
+metacarpal|2
+(adj)|skeletal structure (related term)
+(noun)|metacarpal bone|bone (generic term)|os (generic term)
+metacarpal artery|1
+(noun)|arteria metacarpea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+metacarpal bone|1
+(noun)|metacarpal|bone (generic term)|os (generic term)
+metacarpal vein|1
+(noun)|vena metacarpus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+metacarpophalangeal joint|1
+(noun)|knuckle|knuckle joint|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+metacarpus|1
+(noun)|skeletal structure (generic term)
+metacenter|1
+(noun)|metacentre|intersection (generic term)|intersection point (generic term)|point of intersection (generic term)
+metacentre|1
+(noun)|metacenter|intersection (generic term)|intersection point (generic term)|point of intersection (generic term)
+metacentric|2
+(adj)|intersection|intersection point|point of intersection (related term)
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+metacentric chromosome|1
+(noun)|chromosome (generic term)
+metacyesis|1
+(noun)|ectopic pregnancy|extrauterine pregnancy|ectopic gestation|extrauterine gestation|eccyesis|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+metadata|1
+(noun)|data (generic term)|information (generic term)
+metagenesis|1
+(noun)|digenesis|alternation of generations (generic term)|heterogenesis (generic term)|xenogenesis (generic term)
+metagrabolised|1
+(adj)|metagrobolized|metagrobolised|metagrabolized|mystified|perplexed (similar term)
+metagrabolized|1
+(adj)|metagrobolized|metagrobolised|metagrabolised|mystified|perplexed (similar term)
+metagrobolised|1
+(adj)|metagrobolized|metagrabolized|metagrabolised|mystified|perplexed (similar term)
+metagrobolized|1
+(adj)|metagrobolised|metagrabolized|metagrabolised|mystified|perplexed (similar term)
+metaknowledge|1
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+metal|4
+(adj)|metallic|all-metal (similar term)|aluminiferous (similar term)|antimonial (similar term)|argentiferous (similar term)|auriferous (similar term)|gold-bearing (similar term)|bimetal (similar term)|bimetallic (similar term)|bronze (similar term)|gold (similar term)|golden (similar term)|gilded (similar term)|metallike (similar term)|metal-looking (similar term)|metallic-looking (similar term)|silver (similar term)|tinny (similar term)|nonmetallic (antonym)
+(noun)|metallic element|chemical element (generic term)|element (generic term)
+(noun)|alloy|mixture (generic term)
+(verb)|coat (generic term)|surface (generic term)
+metal-colored|1
+(adj)|metal-coloured|metallic-colored|metallic-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+metal-coloured|1
+(adj)|metal-colored|metallic-colored|metallic-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+metal-cutting|1
+(adj)|sharp (similar term)
+metal-looking|1
+(adj)|metallike|metallic-looking|metallic (similar term)|metal (similar term)
+metal bar|1
+(noun)|ingot|block of metal|block (generic term)
+metal detector|1
+(noun)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+metal drum|1
+(noun)|drum|vessel (generic term)
+metal filing|1
+(noun)|filing (generic term)
+metal glove|1
+(noun)|gauntlet|gantlet|glove (generic term)
+metal money|1
+(noun)|coinage|mintage|specie|currency (generic term)
+metal plating|1
+(noun)|plating|coating (generic term)|coat (generic term)
+metal saw|1
+(noun)|hacksaw|hack saw|saw (generic term)
+metal screw|1
+(noun)|screw (generic term)
+metal wood|1
+(noun)|wood (generic term)
+metalanguage|1
+(noun)|language (generic term)|linguistic communication (generic term)
+metalepsis|1
+(noun)|metonymy (generic term)
+metalize|1
+(verb)|metallize|coat (generic term)|surface (generic term)
+metallic|3
+(adj)|metal|all-metal (similar term)|aluminiferous (similar term)|antimonial (similar term)|argentiferous (similar term)|auriferous (similar term)|gold-bearing (similar term)|bimetal (similar term)|bimetallic (similar term)|bronze (similar term)|gold (similar term)|golden (similar term)|gilded (similar term)|metallike (similar term)|metal-looking (similar term)|metallic-looking (similar term)|silver (similar term)|tinny (similar term)|nonmetallic (antonym)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+metallic-colored|1
+(adj)|metal-colored|metal-coloured|metallic-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+metallic-coloured|1
+(adj)|metal-colored|metal-coloured|metallic-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+metallic-looking|1
+(adj)|metallike|metal-looking|metallic (similar term)|metal (similar term)
+metallic bond|1
+(noun)|chemical bond (generic term)|bond (generic term)
+metallic element|1
+(noun)|metal|chemical element (generic term)|element (generic term)
+metallike|1
+(adj)|metal-looking|metallic-looking|metallic (similar term)|metal (similar term)
+metallize|1
+(verb)|metalize|coat (generic term)|surface (generic term)
+metallized dye|1
+(noun)|acid dye (generic term)
+metalloid|1
+(adj)|nonmetallic (similar term)|nonmetal (similar term)
+metallurgic|1
+(adj)|metallurgical|science|scientific discipline (related term)
+metallurgical|1
+(adj)|metallurgic|science|scientific discipline (related term)
+metallurgical engineer|1
+(noun)|metallurgist|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+metallurgist|1
+(noun)|metallurgical engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+metallurgy|1
+(noun)|science (generic term)|scientific discipline (generic term)
+metalware|1
+(noun)|ware (generic term)
+metalwork|2
+(noun)|work (generic term)|piece of work (generic term)
+(noun)|metalworking|formation (generic term)|shaping (generic term)
+metalworker|1
+(noun)|smith|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+metalworking|1
+(noun)|metalwork|formation (generic term)|shaping (generic term)
+metalworking vise|1
+(noun)|machinist's vise|vise (generic term)|bench vise (generic term)
+metalworks|1
+(noun)|foundry|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+metamathematics|1
+(noun)|pure mathematics (generic term)
+metamere|1
+(noun)|somite|segment (generic term)
+metameric|1
+(adj)|segmental|segmented|divided (similar term)
+metamorphic|2
+(adj)|metamorphous|organic process|biological process (related term)
+(adj)|epimorphic (similar term)|hemimetabolous (similar term)|hemimetabolic (similar term)|hemimetamorphous (similar term)|hemimetamorphic (similar term)|heterometabolous (similar term)|heterometabolic (similar term)|holometabolic (similar term)|holometabolous (similar term)|metamorphous (similar term)|changed (similar term)|nonmetamorphic (antonym)
+metamorphic rock|1
+(noun)|rock (generic term)|stone (generic term)
+metamorphism|1
+(noun)|geological process (generic term)|geologic process (generic term)
+metamorphopsia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+metamorphose|2
+(verb)|transfigure|transmogrify|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|transform|transmute|change (generic term)
+metamorphosis|3
+(noun)|metabolism|organic process (generic term)|biological process (generic term)
+(noun)|transfiguration|revision (generic term)|alteration (generic term)
+(noun)|transformation (generic term)|translation (generic term)
+metamorphous|2
+(adj)|metamorphic|organic process|biological process (related term)
+(adj)|metamorphic (similar term)
+metaphase|1
+(noun)|phase of cell division (generic term)
+metaphor|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+metaphoric|1
+(adj)|metaphorical|figurative (similar term)|nonliteral (similar term)
+metaphorical|1
+(adj)|metaphoric|figurative (similar term)|nonliteral (similar term)
+metaphosphoric acid|1
+(noun)|polyphosphoric acid (generic term)
+metaphysical|3
+(adj)|philosophy (related term)
+(adj)|supernatural (similar term)
+(adj)|theoretical (similar term)|theoretic (similar term)
+metaphysics|1
+(noun)|philosophy (generic term)
+metaphysis|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+metaplastic anaemia|1
+(noun)|metaplastic anemia|pernicious anemia (generic term)|pernicious anaemia (generic term)|malignant anemia (generic term)|malignant anaemia (generic term)
+metaplastic anemia|1
+(noun)|metaplastic anaemia|pernicious anemia (generic term)|pernicious anaemia (generic term)|malignant anemia (generic term)|malignant anaemia (generic term)
+metaproterenol|1
+(noun)|Alupent|bronchodilator (generic term)
+metarule|1
+(noun)|rule (generic term)|formula (generic term)
+metasequoia|1
+(noun)|dawn redwood|Metasequoia glyptostrodoides|conifer (generic term)|coniferous tree (generic term)
+metasequoia glyptostrodoides|1
+(noun)|metasequoia|dawn redwood|Metasequoia glyptostrodoides|conifer (generic term)|coniferous tree (generic term)
+metastability|1
+(noun)|constancy (generic term)|stability (generic term)
+metastable|1
+(adj)|constancy|stability (related term)
+metastasis|2
+(noun)|pathologic process (generic term)|pathological process (generic term)
+(noun)|metabolism|metabolic process|organic process (generic term)|biological process (generic term)
+metastasise|1
+(verb)|metastasize|spread (generic term)|distribute (generic term)
+metastasize|1
+(verb)|metastasise|spread (generic term)|distribute (generic term)
+metastatic|1
+(adj)|pathologic process|pathological process (related term)
+metastatic tumor|1
+(noun)|malignant tumor|malignant neoplasm|tumor (generic term)|tumour (generic term)|neoplasm (generic term)|malignancy (generic term)|malignance (generic term)
+metatarsal|2
+(adj)|skeletal structure (related term)
+(noun)|bone (generic term)|os (generic term)
+metatarsal arch|1
+(noun)|arch (generic term)
+metatarsal artery|1
+(noun)|arteria metatarsea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+metatarsal vein|1
+(noun)|vena metatarsus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+metatarsus|1
+(noun)|skeletal structure (generic term)
+metatheria|1
+(noun)|Metatheria|subclass Metatheria|class (generic term)
+metatherian|1
+(noun)|mammal (generic term)|mammalian (generic term)
+metathesis|2
+(noun)|linguistic process (generic term)
+(noun)|double decomposition|double decomposition reaction|chemical reaction (generic term)|reaction (generic term)
+metaurus river|1
+(noun)|Metaurus River|pitched battle (generic term)
+metazoa|1
+(noun)|Metazoa|subkingdom Metazoa|subkingdom (generic term)
+metazoan|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+metchnikoff|1
+(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist (generic term)
+metchnikov|1
+(noun)|Metchnikoff|Elie Metchnikoff|Metchnikov|Elie Metchnikov|Ilya Ilich Metchnikov|bacteriologist (generic term)
+mete|1
+(noun)|boundary line|border|borderline|delimitation|boundary (generic term)|bound (generic term)|bounds (generic term)
+mete out|1
+(verb)|distribute|administer|deal|parcel out|lot|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+meted out|1
+(adj)|apportioned|dealt out|doled out|parceled out|distributed (similar term)
+metempsychosis|1
+(noun)|rebirth|phenomenon (generic term)
+metencephalon|1
+(noun)|hindbrain (generic term)|rhombencephalon (generic term)
+meteor|2
+(noun)|shooting star|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|meteoroid|extraterrestrial object (generic term)|estraterrestrial body (generic term)
+meteor shower|1
+(noun)|meteor stream|atmospheric phenomenon (generic term)
+meteor stream|1
+(noun)|meteor shower|atmospheric phenomenon (generic term)
+meteor swarm|1
+(noun)|meteoroid (generic term)|meteor (generic term)
+meteoric|3
+(adj)|meteorologic|meteorological|earth science (related term)
+(adj)|extraterrestrial object|estraterrestrial body (related term)
+(adj)|fast (similar term)
+meteorite|1
+(noun)|meteoroid (generic term)|meteor (generic term)
+meteoritic|1
+(adj)|meteoritical|meteoroid|meteor (related term)
+meteoritical|1
+(adj)|meteoritic|meteoroid|meteor (related term)
+meteoroid|1
+(noun)|meteor|extraterrestrial object (generic term)|estraterrestrial body (generic term)
+meteorologic|1
+(adj)|meteorological|meteoric|earth science (related term)
+meteorological|1
+(adj)|meteorologic|meteoric|earth science (related term)
+meteorological balloon|1
+(noun)|balloon (generic term)
+meteorological conditions|1
+(noun)|environmental condition (generic term)
+meteorological observation post|1
+(noun)|weather station|lookout (generic term)|observation post (generic term)
+meteorological satellite|1
+(noun)|weather satellite|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+meteorologist|1
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+meteorology|2
+(noun)|weather forecasting|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+(noun)|earth science (generic term)
+meteortropism|1
+(noun)|tropism (generic term)
+meter|6
+(noun)|metre|m|metric linear unit (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|metre|measure|beat|cadence|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+(noun)|metre|time|rhythmicity (generic term)
+(verb)|quantify (generic term)|measure (generic term)
+(verb)|stamp (generic term)
+meter maid|1
+(noun)|police matron (generic term)|policewoman (generic term)
+meter reading|2
+(noun)|reading|indication|datum (generic term)|data point (generic term)
+(noun)|reading|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+meterstick|1
+(noun)|metrestick|rule (generic term)|ruler (generic term)
+metformin|1
+(noun)|Glucophage|antidiabetic (generic term)|antidiabetic drug (generic term)
+meth|1
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+methacholine|1
+(noun)|Mecholyl|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+methacrylic acid|1
+(noun)|2-methylpropenoic acid|acid (generic term)
+methadon|1
+(noun)|methadone|methadone hydrochloride|dolophine hydrochloride|fixer|synthetic heroin|narcotic (generic term)
+methadone|1
+(noun)|methadone hydrochloride|methadon|dolophine hydrochloride|fixer|synthetic heroin|narcotic (generic term)
+methadone hydrochloride|1
+(noun)|methadone|methadon|dolophine hydrochloride|fixer|synthetic heroin|narcotic (generic term)
+methamphetamine|1
+(noun)|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+methamphetamine hydrochloride|1
+(noun)|methamphetamine|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+methanal|1
+(noun)|formaldehyde|aldehyde (generic term)|gas (generic term)
+methane|1
+(noun)|methane series (generic term)|alkane series (generic term)|alkane (generic term)|paraffin series (generic term)|paraffin (generic term)|gas (generic term)
+methane series|1
+(noun)|alkane series|alkane|paraffin series|paraffin|aliphatic compound (generic term)
+methanogen|1
+(noun)|archaebacteria (generic term)|archaebacterium (generic term)|archaeobacteria (generic term)|archeobacteria (generic term)
+methanol|1
+(noun)|methyl alcohol|wood alcohol|wood spirit|alcohol (generic term)|fuel (generic term)
+methapyrilene|1
+(noun)|antihistamine (generic term)
+methaqualone|1
+(noun)|Quaalude|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+metharbital|1
+(noun)|Gemonil|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+methedrine|1
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+metheglin|1
+(noun)|mead (generic term)
+methenamine|1
+(noun)|Mandelamine|Urex|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+methicillin|1
+(noun)|penicillin (generic term)
+methionine|1
+(noun)|essential amino acid (generic term)
+methocarbamol|1
+(noun)|Robaxin|muscle relaxant (generic term)
+method|2
+(noun)|know-how (generic term)
+(noun)|method acting|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+method acting|1
+(noun)|method|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+method of accounting|1
+(noun)|accounting|accounting system|register (generic term)
+method of choice|1
+(noun)|method (generic term)
+method of fluxions|1
+(noun)|differential calculus|calculus (generic term)|infinitesimal calculus (generic term)
+method of least squares|1
+(noun)|least squares|statistical method (generic term)|statistical procedure (generic term)
+methodical|1
+(adj)|organized (similar term)
+methodicalness|1
+(noun)|orderliness|regularity (generic term)
+methodism|1
+(noun)|Methodism|Protestantism (generic term)
+methodist|2
+(adj)|Methodist|Wesleyan|Protestant denomination (related term)
+(noun)|Methodist|Protestant (generic term)
+methodist church|1
+(noun)|Methodist Church|Methodists|Protestant denomination (generic term)
+methodist denomination|1
+(noun)|Methodist denomination|Protestant denomination (generic term)
+methodists|1
+(noun)|Methodist Church|Methodists|Protestant denomination (generic term)
+methodological|1
+(adj)|method (related term)
+methodological analysis|1
+(noun)|methodology|epistemology (generic term)
+methodology|2
+(noun)|methodological analysis|epistemology (generic term)
+(noun)|method (generic term)
+methotrexate|1
+(noun)|methotrexate sodium|amethopterin|antimetabolite (generic term)|immunosuppressant (generic term)|immunosuppressor (generic term)|immunosuppressive drug (generic term)|immunosuppressive (generic term)|immune suppressant drug (generic term)
+methotrexate sodium|1
+(noun)|methotrexate|amethopterin|antimetabolite (generic term)|immunosuppressant (generic term)|immunosuppressor (generic term)|immunosuppressive drug (generic term)|immunosuppressive (generic term)|immune suppressant drug (generic term)
+methuselah|2
+(noun)|Methuselah|patriarch (generic term)
+(noun)|old man|greybeard|graybeard|Methuselah|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)|man (generic term)|adult male (generic term)
+methyl|1
+(noun)|methyl group|methyl radical|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+methyl alcohol|1
+(noun)|methanol|wood alcohol|wood spirit|alcohol (generic term)|fuel (generic term)
+methyl bromide|1
+(noun)|bromide (generic term)
+methyl ethyl ketone|1
+(noun)|butanone|ketone (generic term)
+methyl group|1
+(noun)|methyl|methyl radical|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+methyl orange|1
+(noun)|azo dye (generic term)|acid-base indicator (generic term)
+methyl phenol|1
+(noun)|cresol|phenol (generic term)
+methyl radical|1
+(noun)|methyl|methyl group|alkyl (generic term)|alkyl group (generic term)|alkyl radical (generic term)
+methyl salicylate|1
+(noun)|birch oil|sweet-birch oil|salicylate (generic term)
+methylated|1
+(adj)|alkyl|alkyl group|alkyl radical (related term)
+methylated spirit|1
+(noun)|denatured alcohol (generic term)
+methylbenzene|1
+(noun)|toluene|alkylbenzene (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+methyldopa|1
+(noun)|alpha methyl dopa|Aldomet|antihypertensive (generic term)|antihypertensive drug (generic term)
+methylene|1
+(noun)|methylene group|methylene radical|group (generic term)|radical (generic term)|chemical group (generic term)
+methylene blue|1
+(noun)|methylthionine chloride|stain (generic term)|thiazine (generic term)
+methylene chloride|1
+(noun)|dichloromethane|chloride (generic term)
+methylene group|1
+(noun)|methylene radical|methylene|group (generic term)|radical (generic term)|chemical group (generic term)
+methylene radical|1
+(noun)|methylene group|methylene|group (generic term)|radical (generic term)|chemical group (generic term)
+methylenedioxymethamphetamine|1
+(noun)|MDMA|club drug (generic term)
+methylphenidate|1
+(noun)|Ritalin|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+methyltestosterone|1
+(noun)|androgen (generic term)|androgenic hormone (generic term)
+methylthionine chloride|1
+(noun)|methylene blue|stain (generic term)|thiazine (generic term)
+metic|1
+(noun)|foreigner (generic term)|alien (generic term)|noncitizen (generic term)|outlander (generic term)
+metical|1
+(noun)|Mozambique monetary unit (generic term)
+meticorten|1
+(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+meticulosity|1
+(noun)|meticulousness|punctiliousness|scrupulousness|conscientiousness (generic term)|painstakingness (generic term)
+meticulous|2
+(adj)|punctilious|precise (similar term)
+(adj)|fastidious (similar term)
+meticulousness|1
+(noun)|meticulosity|punctiliousness|scrupulousness|conscientiousness (generic term)|painstakingness (generic term)
+metier|2
+(noun)|forte|strong suit|long suit|specialty|speciality|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+(noun)|medium|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+metis|1
+(noun)|half-breed (generic term)|breed (generic term)
+metonym|1
+(noun)|word (generic term)
+metonymic|1
+(adj)|metonymical|figurative (similar term)|nonliteral (similar term)
+metonymical|1
+(adj)|metonymic|figurative (similar term)|nonliteral (similar term)
+metonymy|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+metopion|1
+(noun)|craniometric point (generic term)
+metoprolol|1
+(noun)|Lopressor|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+metralgia|1
+(noun)|pain (generic term)|hurting (generic term)
+metrazol|1
+(noun)|pentylenetetrazol|pentamethylenetetrazol|Metrazol|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+metrazol shock|1
+(noun)|metrazol shock therapy|metrazol shock treatment|shock therapy (generic term)|shock treatment (generic term)
+metrazol shock therapy|1
+(noun)|metrazol shock|metrazol shock treatment|shock therapy (generic term)|shock treatment (generic term)
+metrazol shock treatment|1
+(noun)|metrazol shock|metrazol shock therapy|shock therapy (generic term)|shock treatment (generic term)
+metre|3
+(noun)|meter|m|metric linear unit (generic term)
+(noun)|meter|measure|beat|cadence|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+(noun)|meter|time|rhythmicity (generic term)
+metrestick|1
+(noun)|meterstick|rule (generic term)|ruler (generic term)
+metric|5
+(adj)|metrical|metric linear unit (related term)
+(adj)|measured|metrical|rhythmical (similar term)|rhythmic (similar term)
+(noun)|metric function|function (generic term)|mathematical function (generic term)
+(noun)|metric unit|unit of measurement (generic term)|unit (generic term)
+(noun)|system of measurement|measure (generic term)|quantity (generic term)|amount (generic term)
+metric capacity unit|1
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)|metric unit (generic term)|metric (generic term)
+metric function|1
+(noun)|metric|function (generic term)|mathematical function (generic term)
+metric grain|1
+(noun)|grain|metric weight unit (generic term)|weight unit (generic term)
+metric hundredweight|1
+(noun)|hundredweight|doppelzentner|centner|metric weight unit (generic term)|weight unit (generic term)
+metric linear unit|1
+(noun)|linear unit (generic term)|metric unit (generic term)|metric (generic term)
+metric space|1
+(noun)|mathematical space (generic term)|topological space (generic term)
+metric system|1
+(noun)|system of weights and measures (generic term)
+metric ton|1
+(noun)|MT|tonne|t|metric weight unit (generic term)|weight unit (generic term)
+metric unit|1
+(noun)|metric|unit of measurement (generic term)|unit (generic term)
+metric weight unit|1
+(noun)|weight unit|mass unit (generic term)|metric unit (generic term)|metric (generic term)
+metrical|2
+(adj)|metric|metric linear unit (related term)
+(adj)|measured|metric|rhythmical (similar term)|rhythmic (similar term)
+metrical foot|1
+(noun)|foot|metrical unit|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+metrical unit|1
+(noun)|metrical foot|foot|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+metricate|1
+(verb)|metricize|metricise|metrify|convert (generic term)|change over (generic term)
+metrication|1
+(noun)|metrification|change (generic term)
+metricise|2
+(verb)|metricize|translate (generic term)|transform (generic term)
+(verb)|metricize|metrify|metricate|convert (generic term)|change over (generic term)
+metricize|2
+(verb)|metricise|translate (generic term)|transform (generic term)
+(verb)|metricise|metrify|metricate|convert (generic term)|change over (generic term)
+metrics|1
+(noun)|prosody|poetics (generic term)
+metrification|2
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+(noun)|metrication|change (generic term)
+metrify|2
+(verb)|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+(verb)|metricize|metricise|metricate|convert (generic term)|change over (generic term)
+metritis|1
+(noun)|endometritis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+metro|1
+(noun)|tube|underground|subway system|subway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+metrological|1
+(adj)|science|scientific discipline (related term)
+metrology|1
+(noun)|science (generic term)|scientific discipline (generic term)
+metronidazole|1
+(noun)|Flagyl|antiprotozoal (generic term)|antiprotozoal drug (generic term)
+metronome|1
+(noun)|pendulum (generic term)
+metronome marking|1
+(noun)|beats per minute|bpm|M.M.|pace (generic term)|gait (generic term)
+metronymic|1
+(noun)|matronymic|name (generic term)
+metropolis|2
+(noun)|city|urban center|municipality (generic term)
+(noun)|city|municipality (generic term)
+metropolitan|3
+(adj)|municipality (related term)
+(noun)|archbishop (generic term)
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+metroptosis|1
+(noun)|descensus uteri|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+metrorrhagia|1
+(noun)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+metroxylon|1
+(noun)|Metroxylon|genus Metroxylon|monocot genus (generic term)|liliopsid genus (generic term)
+metroxylon sagu|1
+(noun)|true sago palm|Metroxylon sagu|sago palm (generic term)
+metternich|1
+(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman (generic term)|solon (generic term)|national leader (generic term)
+mettle|1
+(noun)|heart|nerve|spunk|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+mettlesome|2
+(adj)|spirited (similar term)
+(adj)|game|gamy|gamey|gritty|spirited|spunky|brave (similar term)|courageous (similar term)
+mettlesomeness|1
+(noun)|high-spiritedness (generic term)
+metycaine|1
+(noun)|piperocaine|piperocaine hydrochloride|Metycaine|spinal anesthetic (generic term)|spinal anaesthetic (generic term)
+meuniere butter|1
+(noun)|Meuniere butter|lemon butter|butter (generic term)
+meuse|2
+(noun)|Meuse|Meuse River|river (generic term)
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+meuse-argonne|1
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+meuse-argonne operation|1
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+meuse river|2
+(noun)|Meuse|Meuse River|river (generic term)
+(noun)|Meuse|Meuse River|Argonne|Argonne Forest|Meuse-Argonne|Meuse-Argonne operation|operation (generic term)|military operation (generic term)
+mevacor|1
+(noun)|lovastatin|Mevacor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+mew|4
+(noun)|meow|miaou|miaow|miaul|cry (generic term)
+(noun)|mew gull|sea mew|Larus canus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+(verb)|meow|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+mew gull|1
+(noun)|mew|sea mew|Larus canus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+mewl|1
+(verb)|wail|whimper|pule|cry (generic term)|weep (generic term)
+mews|1
+(noun)|street (generic term)
+mexicali|1
+(noun)|Mexicali|city (generic term)|metropolis (generic term)|urban center (generic term)
+mexican|2
+(adj)|Mexican|North American country|North American nation (related term)
+(noun)|Mexican|Central American (generic term)
+mexican-american|1
+(noun)|Mexican-American|Mexicano|Mexican (generic term)
+mexican beaded lizard|1
+(noun)|beaded lizard|Mexican beaded lizard|Heloderma horridum|venomous lizard (generic term)
+mexican bean beetle|1
+(noun)|Mexican bean beetle|bean beetle|Epilachna varivestis|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+mexican black cherry|1
+(noun)|capulin|Mexican black cherry|cherry (generic term)
+mexican capital|1
+(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital (generic term)
+mexican cypress|1
+(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress (generic term)|cypress tree (generic term)
+mexican fire plant|1
+(noun)|fire-on-the-mountain|painted leaf|Mexican fire plant|Euphorbia cyathophora|spurge (generic term)
+mexican flameleaf|1
+(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+mexican freetail bat|1
+(noun)|guano bat|Mexican freetail bat|Tadarida brasiliensis|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+mexican green|1
+(noun)|Acapulco gold|Mexican green|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+mexican hairless|1
+(noun)|Mexican hairless|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+mexican hat|1
+(noun)|Mexican hat|Ratibida columnaris|coneflower (generic term)
+mexican husk tomato|2
+(noun)|tomatillo|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry (generic term)|husk tomato (generic term)
+(noun)|tomatillo|husk tomato|Mexican husk tomato|solanaceous vegetable (generic term)
+mexican hyssop|1
+(noun)|Mexican hyssop|Agastache mexicana|giant hyssop (generic term)
+mexican jumping bean|1
+(noun)|jumping bean|jumping seed|Mexican jumping bean|seed (generic term)
+mexican juniper|1
+(noun)|Mexican juniper|drooping juniper|Juniperus flaccida|juniper (generic term)
+mexican mint|1
+(noun)|Mexican mint|Salvia divinorum|sage (generic term)|salvia (generic term)
+mexican monetary unit|1
+(noun)|Mexican monetary unit|monetary unit (generic term)
+mexican nut pine|1
+(noun)|pinon pine|Mexican nut pine|Pinus cembroides|nut pine (generic term)
+mexican onyx|1
+(noun)|alabaster|oriental alabaster|onyx marble|Mexican onyx|calcite (generic term)
+mexican peso|1
+(noun)|Mexican peso|peso|Mexican monetary unit (generic term)
+mexican pocket mouse|1
+(noun)|Mexican pocket mouse|Liomys irroratus|pocket mouse (generic term)
+mexican poppy|1
+(noun)|Mexican poppy|Argemone mexicana|prickly poppy (generic term)|argemone (generic term)|white thistle (generic term)|devil's fig (generic term)
+mexican revolution|1
+(noun)|Mexican Revolution|revolution (generic term)
+mexican spanish|1
+(noun)|Mexican Spanish|Spanish (generic term)
+mexican standoff|1
+(noun)|Mexican standoff|situation (generic term)
+mexican sunflower|1
+(noun)|Mexican sunflower|tithonia|flower (generic term)
+mexican swamp cypress|1
+(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress (generic term)
+mexican tea|2
+(noun)|Jerusalem oak|feather geranium|Mexican tea|Chenopodium botrys|Atriplex mexicana|goosefoot (generic term)
+(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot (generic term)
+mexican tulip poppy|1
+(noun)|golden cup|Mexican tulip poppy|Hunnemania fumariifolia|poppy (generic term)
+mexican valium|1
+(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+mexican war|1
+(noun)|Mexican War|war (generic term)|warfare (generic term)
+mexicano|1
+(noun)|Mexican-American|Mexicano|Mexican (generic term)
+mexico|1
+(noun)|Mexico|United Mexican States|North American country (generic term)|North American nation (generic term)
+mexico city|1
+(noun)|Mexico City|Ciudad de Mexico|Mexican capital|capital of Mexico|national capital (generic term)
+mexiletine|1
+(noun)|Mexitil|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+mexitil|1
+(noun)|mexiletine|Mexitil|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+meyer guggenheim|1
+(noun)|Guggenheim|Meyer Guggenheim|industrialist (generic term)
+meyerbeer|1
+(noun)|Meyerbeer|Giacomo Meyerbeer|Jakob Liebmann Beer|composer (generic term)
+meyerhof|1
+(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist (generic term)
+mezcal|1
+(noun)|mescal|peyote|Lophophora williamsii|cactus (generic term)
+mezereon|1
+(noun)|February daphne|Daphne mezereum|daphne (generic term)
+mezereum|1
+(noun)|bark (generic term)
+mezuza|1
+(noun)|mezuzah|section (generic term)|subdivision (generic term)
+mezuzah|1
+(noun)|mezuza|section (generic term)|subdivision (generic term)
+mezzanine|2
+(noun)|first balcony|balcony (generic term)
+(noun)|mezzanine floor|entresol|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+mezzanine floor|1
+(noun)|mezzanine|entresol|floor (generic term)|level (generic term)|storey (generic term)|story (generic term)
+mezzo|2
+(noun)|mezzo-soprano|soprano (generic term)
+(noun)|mezzo-soprano|singing voice (generic term)
+mezzo-relievo|1
+(noun)|mezzo-rilievo|half-relief|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)
+mezzo-rilievo|1
+(noun)|mezzo-relievo|half-relief|relief (generic term)|relievo (generic term)|rilievo (generic term)|embossment (generic term)|sculptural relief (generic term)
+mezzo-soprano|2
+(noun)|mezzo|soprano (generic term)
+(noun)|mezzo|singing voice (generic term)
+mezzotint|1
+(noun)|print (generic term)
+mf|1
+(noun)|medium frequency|MF|radio frequency (generic term)
+mfa|1
+(noun)|Master of Fine Arts|MFA|master's degree (generic term)
+mflop|1
+(noun)|megaflop|MFLOP|million floating point operations per second|unit of measurement (generic term)|unit (generic term)
+mg|2
+(noun)|milligram|metric weight unit (generic term)|weight unit (generic term)
+(noun)|magnesium|Mg|atomic number 12|metallic element (generic term)|metal (generic term)
+mho|1
+(noun)|siemens|reciprocal ohm|S|conductance unit (generic term)
+mhz|1
+(noun)|megahertz|MHz|megacycle per second|megacycle|Mc|rate (generic term)
+mi|8
+(noun)|myocardial infarction|myocardial infarct|MI|infarct (generic term)|infarction (generic term)
+(noun)|nautical mile|naut mi|mile|geographical mile|Admiralty mile|nautical linear unit (generic term)
+(noun)|nautical mile|mile|naut mi|knot|international nautical mile|air mile|nautical linear unit (generic term)
+(noun)|mile|statute mile|stat mi|land mile|linear unit (generic term)
+(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state (generic term)
+(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency (generic term)
+(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency (generic term)
+(noun)|solfa syllable (generic term)
+miami|2
+(noun)|Miami|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Miami|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+miami beach|1
+(noun)|Miami Beach|city (generic term)|metropolis (generic term)|urban center (generic term)
+miao|2
+(noun)|Hmong|Miao|Asian (generic term)|Asiatic (generic term)
+(noun)|Hmong|Hmong language|Miao|natural language (generic term)|tongue (generic term)
+miaou|2
+(noun)|meow|mew|miaow|miaul|cry (generic term)
+(verb)|miaow|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+miaow|2
+(noun)|meow|mew|miaou|miaul|cry (generic term)
+(verb)|miaou|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+miasm|2
+(noun)|miasma|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|miasma|air pollution (generic term)
+miasma|2
+(noun)|miasm|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|miasm|air pollution (generic term)
+miasmal|1
+(adj)|miasmic|vaporous|vapourous|cloudy (similar term)
+miasmic|2
+(adj)|mephitic|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|miasmal|vaporous|vapourous|cloudy (similar term)
+miaul|1
+(noun)|meow|mew|miaou|miaow|cry (generic term)
+mica|1
+(noun)|isinglass|mineral (generic term)|transparent substance (generic term)|translucent substance (generic term)
+micaceous|1
+(adj)|mineral|transparent substance|translucent substance (related term)
+micah|2
+(noun)|Micah|Micheas|prophet (generic term)
+(noun)|Micah|Micheas|Book of Micah|book (generic term)
+micawber|1
+(noun)|Micawber|Wilkins Micawber|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+micelle|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+michael|1
+(noun)|Michael|archangel (generic term)
+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 (generic term)
+michael ellis de bakey|1
+(noun)|De Bakey|Michael Ellis De Bakey|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+michael faraday|1
+(noun)|Faraday|Michael Faraday|chemist (generic term)|physicist (generic term)
+michael gerald tyson|1
+(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter (generic term)|gladiator (generic term)
+michael jackson|1
+(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+michael joe jackson|1
+(noun)|Jackson|Michael Jackson|Michael Joe Jackson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+michael ondaatje|1
+(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer (generic term)|author (generic term)
+michael philip jagger|1
+(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star (generic term)
+michaelmas|1
+(noun)|Michaelmas|Michaelmas Day|September 29|quarter day (generic term)
+michaelmas daisy|1
+(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster (generic term)
+michaelmas day|1
+(noun)|Michaelmas|Michaelmas Day|September 29|quarter day (generic term)
+michaelmastide|1
+(noun)|Michaelmastide|season (generic term)
+micheas|2
+(noun)|Micah|Micheas|prophet (generic term)
+(noun)|Micah|Micheas|Book of Micah|book (generic term)
+michel de notredame|1
+(noun)|Nostradamus|Michel de Notredame|astrologer (generic term)|astrologist (generic term)
+michel eyquem montaigne|1
+(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer (generic term)|author (generic term)
+michel montaigne|1
+(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer (generic term)|author (generic term)
+michel ney|1
+(noun)|Ney|Michel Ney|Duc d'Elchingen|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+michelangelesque|1
+(adj)|Michelangelesque|sculptor|sculpturer|carver|statue maker|old master|architect|designer (related term)
+michelangelo|1
+(noun)|Michelangelo|Michelangelo Buonarroti|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|old master (generic term)|architect (generic term)|designer (generic term)
+michelangelo buonarroti|1
+(noun)|Michelangelo|Michelangelo Buonarroti|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)|old master (generic term)|architect (generic term)|designer (generic term)
+michelangelo merisi da caravaggio|1
+(noun)|Caravaggio|Michelangelo Merisi da Caravaggio|old master (generic term)
+michelson|1
+(noun)|Michelson|A. A. Michelson|Albert Michelson|Albert Abraham Michelson|physicist (generic term)
+michelson-morley experiment|1
+(noun)|Michelson-Morley experiment|experiment (generic term)|experimentation (generic term)
+michener|1
+(noun)|Michener|James Michener|James Albert Michener|writer (generic term)|author (generic term)
+michigan|3
+(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state (generic term)
+(noun)|Lake Michigan|Michigan|lake (generic term)
+(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game (generic term)|cards (generic term)
+michigan lily|1
+(noun)|Michigan lily|Lilium michiganense|lily (generic term)
+michigander|1
+(noun)|Michigander|Wolverine|American (generic term)
+michinomiya hirohito|1
+(noun)|Hirohito|Michinomiya Hirohito|emperor (generic term)
+mick|1
+(noun)|Paddy|Mick|Mickey|Irishman (generic term)
+mick jagger|1
+(noun)|Jagger|Mick Jagger|Michael Philip Jagger|rock star (generic term)
+mickey|1
+(noun)|Paddy|Mick|Mickey|Irishman (generic term)
+mickey charles mantle|1
+(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer (generic term)|baseball player (generic term)
+mickey finn|1
+(noun)|Mickey Finn|knockout drops (generic term)
+mickey mantle|1
+(noun)|Mantle|Mickey Mantle|Mickey Charles Mantle|ballplayer (generic term)|baseball player (generic term)
+mickey mouse|1
+(noun)|Mickey Mouse|fictional animal (generic term)
+mickey spillane|1
+(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer (generic term)|author (generic term)
+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 (generic term)|large indefinite amount (generic term)
+micmac|2
+(noun)|Micmac|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Micmac|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+miconazole|1
+(noun)|Monistat|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+micophage|1
+(noun)|mycophagist|eater (generic term)|feeder (generic term)
+micro|1
+(adj)|small (similar term)|little (similar term)
+micro-cook|1
+(verb)|microwave|zap|nuke|cook (generic term)
+micro-organism|1
+(noun)|microorganism|organism (generic term)|being (generic term)
+micro chip|1
+(noun)|chip|microchip|silicon chip|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+microbalance|1
+(noun)|balance (generic term)
+microbar|1
+(noun)|barye|bar absolute|pressure unit (generic term)
+microbat|1
+(noun)|carnivorous bat|bat (generic term)|chiropteran (generic term)
+microbe|1
+(noun)|bug|germ|microorganism (generic term)|micro-organism (generic term)
+microbial|1
+(adj)|microbic|microorganism|micro-organism (related term)
+microbic|1
+(adj)|microbial|microorganism|micro-organism (related term)
+microbiologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+microbiology|1
+(noun)|biology (generic term)|biological science (generic term)
+microbrachia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+microbrewery|1
+(noun)|brewery (generic term)
+microcentrum|1
+(noun)|Microcentrum|genus Microcentrum|arthropod genus (generic term)
+microcephalic|1
+(adj)|microcephalous|nanocephalic|abnormality|abnormalcy|abnormal condition (related term)
+microcephalous|1
+(adj)|microcephalic|nanocephalic|abnormality|abnormalcy|abnormal condition (related term)
+microcephalus|1
+(noun)|microcephaly|nanocephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+microcephaly|1
+(noun)|microcephalus|nanocephaly|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+microchip|1
+(noun)|chip|micro chip|silicon chip|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+microchiroptera|1
+(noun)|Microchiroptera|suborder Microchiroptera|animal order (generic term)
+microcircuit|1
+(noun)|integrated circuit|computer circuit (generic term)
+micrococcaceae|1
+(noun)|Micrococcaceae|family Micrococcaceae|bacteria family (generic term)
+micrococcus|1
+(noun)|Micrococcus|genus Micrococcus|bacteria genus (generic term)
+microcode|1
+(noun)|firmware|code (generic term)|computer code (generic term)
+microcomputer|1
+(noun)|personal computer|PC|digital computer (generic term)
+microcopy|1
+(verb)|photocopy (generic term)|run off (generic term)|xerox (generic term)
+microcosm|1
+(noun)|model (generic term)|example (generic term)
+microcosmic|1
+(adj)|model|example (related term)
+microcosmic salt|1
+(noun)|salt (generic term)
+microcrystalline|1
+(adj)|crystalline (similar term)
+microcyte|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+microcytic anaemia|1
+(noun)|microcytic anemia|anemia (generic term)|anaemia (generic term)
+microcytic anemia|1
+(noun)|microcytic anaemia|anemia (generic term)|anaemia (generic term)
+microcytosis|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+microdesmidae|1
+(noun)|Microdesmidae|family Microdesmidae|fish family (generic term)
+microdipodops|1
+(noun)|Microdipodops|genus Microdipodops|mammal genus (generic term)
+microdot|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+microeconomic|1
+(adj)|economics|economic science|political economy (related term)
+microeconomic expert|1
+(noun)|microeconomist|economist (generic term)|economic expert (generic term)
+microeconomics|1
+(noun)|economics (generic term)|economic science (generic term)|political economy (generic term)
+microeconomist|1
+(noun)|microeconomic expert|economist (generic term)|economic expert (generic term)
+microelectronic|1
+(adj)|electronics (related term)
+microelectronics|1
+(noun)|electronics (generic term)
+microevolution|1
+(noun)|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+microfarad|1
+(noun)|capacitance unit (generic term)
+microfiche|1
+(noun)|microfilm (generic term)
+microfilm|2
+(noun)|film (generic term)|photographic film (generic term)
+(verb)|film (generic term)
+microfossil|1
+(noun)|fossil (generic term)
+microgametophyte|1
+(noun)|gametophyte (generic term)
+microgauss|1
+(noun)|flux density unit (generic term)
+microglia|1
+(noun)|neuroglia (generic term)|glia (generic term)
+microgliacyte|1
+(noun)|neurogliacyte (generic term)|neuroglial cell (generic term)|glial cell (generic term)
+microgram|1
+(noun)|mcg|metric weight unit (generic term)|weight unit (generic term)
+microgramma|1
+(noun)|Microgramma|genus Microgramma|fern genus (generic term)
+microgramma-piloselloides|1
+(noun)|snake polypody|Microgramma-piloselloides|fern (generic term)
+microhylidae|1
+(noun)|Microhylidae|family Microhylidae|Brevicipitidae|family Brevicipitidae|amphibian family (generic term)
+micromeria|1
+(noun)|Micromeria|genus Micromeria|asterid dicot genus (generic term)
+micromeria chamissonis|1
+(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb (generic term)|herbaceous plant (generic term)
+micromeria douglasii|1
+(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb (generic term)|herbaceous plant (generic term)
+micromeria juliana|1
+(noun)|savory|Micromeria juliana|herb (generic term)|herbaceous plant (generic term)
+micrometeor|1
+(noun)|micrometeorite|micrometeoroid|meteorite (generic term)
+micrometeoric|1
+(adj)|meteorite (related term)
+micrometeorite|1
+(noun)|micrometeoroid|micrometeor|meteorite (generic term)
+micrometeoritic|1
+(adj)|meteorite (related term)
+micrometeoroid|1
+(noun)|micrometeorite|micrometeor|meteorite (generic term)
+micrometer|2
+(noun)|micrometer gauge|micrometer caliper|caliper (generic term)|calliper (generic term)
+(noun)|micron|metric linear unit (generic term)
+micrometer caliper|1
+(noun)|micrometer|micrometer gauge|caliper (generic term)|calliper (generic term)
+micrometer gauge|1
+(noun)|micrometer|micrometer caliper|caliper (generic term)|calliper (generic term)
+micrometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+micromicron|1
+(noun)|picometer|picometre|metric linear unit (generic term)
+micromillimeter|1
+(noun)|nanometer|nanometre|nm|millimicron|micromillimetre|metric linear unit (generic term)
+micromillimetre|1
+(noun)|nanometer|nanometre|nm|millimicron|micromillimeter|metric linear unit (generic term)
+micromyx|1
+(noun)|Micromyx|genus Micromyx|mammal genus (generic term)
+micromyx minutus|1
+(noun)|harvest mouse|Micromyx minutus|mouse (generic term)
+micron|1
+(noun)|micrometer|metric linear unit (generic term)
+micronase|1
+(noun)|glyburide|DiaBeta|Micronase|antidiabetic (generic term)|antidiabetic drug (generic term)
+micronesia|2
+(noun)|Micronesia|Federated States of Micronesia|TT|country (generic term)|state (generic term)|land (generic term)
+(noun)|Micronesia|archipelago (generic term)
+micronor|1
+(noun)|Micronor|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+micronutrient|1
+(noun)|substance (generic term)|matter (generic term)
+microorganism|1
+(noun)|micro-organism|organism (generic term)|being (generic term)
+micropaleontology|1
+(noun)|paleontology (generic term)|palaeontology (generic term)|fossilology (generic term)
+micropenis|1
+(noun)|microphallus|penis (generic term)|phallus (generic term)|member (generic term)
+microphage|1
+(noun)|neutrophil (generic term)|neutrophile (generic term)
+microphallus|1
+(noun)|micropenis|penis (generic term)|phallus (generic term)|member (generic term)
+microphone|1
+(noun)|mike|electro-acoustic transducer (generic term)
+microphone boom|1
+(noun)|boom|pole (generic term)
+microphoning|1
+(noun)|transduction (generic term)
+microphotometer|1
+(noun)|densitometer (generic term)
+micropogonias|1
+(noun)|Micropogonias|genus Micropogonias|fish genus (generic term)
+micropogonias undulatus|1
+(noun)|Atlantic croaker|Micropogonias undulatus|croaker (generic term)
+microprocessor|1
+(noun)|chip (generic term)|microchip (generic term)|micro chip (generic term)|silicon chip (generic term)
+micropterus|1
+(noun)|Micropterus|genus Micropterus|fish genus (generic term)
+micropterus dolomieu|1
+(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass (generic term)
+micropterus pseudoplites|1
+(noun)|Kentucky black bass|spotted black bass|Micropterus pseudoplites|black bass (generic term)
+micropterus salmoides|1
+(noun)|largemouth|largemouth bass|largemouthed bass|largemouth black bass|largemouthed black bass|Micropterus salmoides|black bass (generic term)
+micropylar|1
+(adj)|aperture (related term)
+micropyle|1
+(noun)|aperture (generic term)
+microradian|1
+(noun)|angular unit (generic term)
+microscope|1
+(noun)|magnifier (generic term)
+microscope slide|1
+(noun)|slide|plate glass (generic term)|sheet glass (generic term)
+microscope stage|1
+(noun)|stage|platform (generic term)
+microscopic|4
+(adj)|microscopical|research (related term)
+(adj)|microscopical|atomic (similar term)|atomlike (similar term)|minute (similar term)|subatomic (similar term)|subgross (similar term)|small (related term)|little (related term)|macroscopic (antonym)
+(adj)|precise (similar term)
+(adj)|infinitesimal|minute|small (similar term)|little (similar term)
+microscopic anatomy|1
+(noun)|anatomy (generic term)|general anatomy (generic term)
+microscopic field|1
+(noun)|field (generic term)|field of view (generic term)
+microscopical|2
+(adj)|microscopic|research (related term)
+(adj)|microscopic|atomic (similar term)|atomlike (similar term)|minute (similar term)|subatomic (similar term)|subgross (similar term)|small (related term)|little (related term)|macroscopic (antonym)
+microscopist|1
+(noun)|scientist (generic term)|man of science (generic term)
+microscopium|1
+(noun)|Microscopium|constellation (generic term)
+microscopy|1
+(noun)|research (generic term)
+microsecond|1
+(noun)|time unit (generic term)|unit of time (generic term)
+microseism|1
+(noun)|tremor|earth tremor|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+microsoft disk operating system|1
+(noun)|MS-DOS|Microsoft disk operating system|DOS (generic term)|disk operating system (generic term)
+microsomal|1
+(adj)|granule (related term)
+microsome|1
+(noun)|granule (generic term)
+microsorium|1
+(noun)|Microsorium|genus Microsorium|fern genus (generic term)
+microsorium punctatum|1
+(noun)|climbing bird's nest fern|Microsorium punctatum|fern (generic term)
+microsporangium|1
+(noun)|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+microspore|1
+(noun)|spore (generic term)
+microsporidian|1
+(noun)|sporozoan (generic term)
+microsporophyll|1
+(noun)|sporophyll (generic term)|sporophyl (generic term)
+microsporum|1
+(noun)|Microsporum|genus Microsporum|fungus genus (generic term)
+microstomus|1
+(noun)|Microstomus|genus Microstomus|fish genus (generic term)
+microstomus kitt|1
+(noun)|lemon sole|Microstomus kitt|righteye flounder (generic term)|righteyed flounder (generic term)
+microstrobos|1
+(noun)|Microstrobos|genus Microstrobos|gymnosperm genus (generic term)
+microstrobos niphophilus|1
+(noun)|Tasman dwarf pine|Microstrobos niphophilus|shrub (generic term)|bush (generic term)
+microsurgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+microtaggant|1
+(noun)|Microtaggant|identification particle (generic term)
+microtome|1
+(noun)|scientific instrument (generic term)
+microtubule|1
+(noun)|tubule (generic term)
+microtus|1
+(noun)|Microtus|genus Microtus|mammal genus (generic term)
+microtus ochrogaster|1
+(noun)|prairie vole|Microtus ochrogaster|vole (generic term)|field mouse (generic term)
+microtus pennsylvaticus|1
+(noun)|meadow vole|meadow mouse|Microtus pennsylvaticus|vole (generic term)|field mouse (generic term)
+microtus richardsoni|1
+(noun)|water vole|Richardson vole|Microtus richardsoni|vole (generic term)|field mouse (generic term)
+microvolt|1
+(noun)|potential unit (generic term)
+microwave|3
+(noun)|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+(noun)|microwave oven|kitchen appliance (generic term)
+(verb)|micro-cook|zap|nuke|cook (generic term)
+microwave bomb|1
+(noun)|E-bomb|bomb (generic term)
+microwave diathermy machine|1
+(noun)|diathermy machine (generic term)
+microwave linear accelerator|1
+(noun)|linear accelerator (generic term)|linac (generic term)
+microwave oven|1
+(noun)|microwave|kitchen appliance (generic term)
+microwave radar|1
+(noun)|radar|radio detection and ranging|radiolocation|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+microwave spectroscopy|1
+(noun)|spectroscopy (generic term)|spectrometry (generic term)|spectroscopic analysis (generic term)|spectrum analysis (generic term)|spectrographic analysis (generic term)
+microwave spectrum|1
+(noun)|spectrum (generic term)
+micruroides|1
+(noun)|Micruroides|genus Micruroides|reptile genus (generic term)
+micruroides euryxanthus|1
+(noun)|western coral snake|Micruroides euryxanthus|coral snake (generic term)|harlequin-snake (generic term)|New World coral snake (generic term)
+micrurus|1
+(noun)|Micrurus|genus Micrurus|reptile genus (generic term)
+micrurus fulvius|1
+(noun)|eastern coral snake|Micrurus fulvius|coral snake (generic term)|harlequin-snake (generic term)|New World coral snake (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+micturition|1
+(noun)|urination|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+micturition reflex|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+mid|1
+(adj)|middle (similar term)
+mid-april|1
+(noun)|mid-April|time period (generic term)|period of time (generic term)|period (generic term)
+mid-atlantic|1
+(adj)|middle Atlantic|mid-Atlantic|eastern (similar term)
+mid-atlantic ridge|1
+(noun)|Mid-Atlantic Ridge|ridge (generic term)
+mid-atlantic states|1
+(noun)|Mid-Atlantic states|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mid-august|1
+(noun)|mid-August|time period (generic term)|period of time (generic term)|period (generic term)
+mid-calf|1
+(noun)|calf (generic term)|sura (generic term)
+mid-december|1
+(noun)|mid-December|time period (generic term)|period of time (generic term)|period (generic term)
+mid-eighties|1
+(noun)|eighties|time of life (generic term)
+mid-february|1
+(noun)|mid-February|time period (generic term)|period of time (generic term)|period (generic term)
+mid-fifties|1
+(noun)|fifties|time of life (generic term)
+mid-forties|1
+(noun)|forties|time of life (generic term)
+mid-january|1
+(noun)|mid-January|time period (generic term)|period of time (generic term)|period (generic term)
+mid-july|1
+(noun)|mid-July|time period (generic term)|period of time (generic term)|period (generic term)
+mid-june|1
+(noun)|mid-June|time period (generic term)|period of time (generic term)|period (generic term)
+mid-march|1
+(noun)|mid-March|time period (generic term)|period of time (generic term)|period (generic term)
+mid-may|1
+(noun)|mid-May|time period (generic term)|period of time (generic term)|period (generic term)
+mid-nineties|1
+(noun)|nineties|time of life (generic term)
+mid-november|1
+(noun)|mid-November|time period (generic term)|period of time (generic term)|period (generic term)
+mid-october|1
+(noun)|mid-October|time period (generic term)|period of time (generic term)|period (generic term)
+mid-off|1
+(noun)|position (generic term)
+mid-on|1
+(noun)|position (generic term)
+mid-september|1
+(noun)|mid-September|time period (generic term)|period of time (generic term)|period (generic term)
+mid-seventies|1
+(noun)|seventies|time of life (generic term)
+mid-sixties|1
+(noun)|sixties|time of life (generic term)
+mid-thirties|1
+(noun)|thirties|thirty-something|time of life (generic term)
+mid-twenties|1
+(noun)|twenties|time of life (generic term)
+mid-water|1
+(noun)|body of water (generic term)|water (generic term)
+midafternoon|1
+(noun)|day (generic term)|daytime (generic term)|daylight (generic term)
+midair|1
+(noun)|point (generic term)
+midas|1
+(noun)|Midas|mythical being (generic term)
+midas touch|1
+(noun)|Midas touch|ability (generic term)
+midazolam|1
+(noun)|Versed|benzodiazepine (generic term)
+midbrain|1
+(noun)|mesencephalon|neural structure (generic term)
+midday|1
+(noun)|noon|twelve noon|high noon|noonday|noontide|hour (generic term)|time of day (generic term)
+midden|2
+(noun)|eitchen midden|kitchen midden|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+(noun)|dunghill|muckheap|muckhill|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+middle|9
+(adj)|in-between|mediate|intermediate (similar term)
+(adj)|center|halfway|midway|central (similar term)
+(adj)|late (antonym)|early (antonym)
+(adj)|intervening (similar term)|mid (similar term)|late (antonym)|early (antonym)
+(noun)|center|centre|heart|eye|area (generic term)|country (generic term)
+(noun)|part (generic term)|section (generic term)|division (generic term)|end (antonym)|beginning (antonym)
+(noun)|midriff|midsection|area (generic term)|region (generic term)
+(noun)|point (generic term)|point in time (generic term)|end (antonym)|beginning (antonym)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+middle-aged|1
+(adj)|old (similar term)
+middle-aged man|1
+(noun)|man (generic term)|adult male (generic term)
+middle-class|1
+(adj)|bourgeois (similar term)|bourgeois (similar term)|conservative (similar term)|materialistic (similar term)|lower-middle-class (similar term)|upper-middle-class (similar term)|upper-class (antonym)|lower-class (antonym)
+middle-ear deafness|1
+(noun)|conductive hearing loss|conduction deafness|hearing impairment (generic term)|hearing disorder (generic term)
+middle-level|1
+(adj)|inferior (similar term)
+middle-of-the-road|2
+(adj)|centrist|center (similar term)
+(adj)|moderate (similar term)
+middle age|1
+(noun)|time of life (generic term)
+middle ages|1
+(noun)|Middle Ages|Dark Ages|historic period (generic term)|age (generic term)
+middle atlantic|1
+(adj)|middle Atlantic|mid-Atlantic|eastern (similar term)
+middle buster|1
+(noun)|lister|lister plow|lister plough|middlebreaker|moldboard plow (generic term)|mouldboard plough (generic term)
+middle c|1
+(noun)|middle C|note (generic term)|musical note (generic term)|tone (generic term)
+middle cerebral artery|1
+(noun)|cerebral artery (generic term)|arteria cerebri (generic term)
+middle cerebral vein|1
+(noun)|vena cerebri media|cerebral vein (generic term)|vena cerebri (generic term)
+middle class|1
+(noun)|bourgeoisie|class (generic term)|social class (generic term)|socio-economic class (generic term)
+middle distance|1
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+middle ear|1
+(noun)|tympanic cavity|tympanum|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+middle east|1
+(noun)|Middle East|Mideast|Near East|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+middle eastern|1
+(adj)|Middle Eastern|geographical area|geographic area|geographical region|geographic region (related term)
+middle english|1
+(noun)|Middle English|English (generic term)|English language (generic term)
+middle finger|1
+(noun)|finger (generic term)
+middle greek|1
+(noun)|Medieval Greek|Middle Greek|Byzantine Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+middle high german|1
+(noun)|Middle High German|German (generic term)|High German (generic term)|German language (generic term)
+middle irish|1
+(noun)|Middle Irish|Irish (generic term)|Irish Gaelic (generic term)
+middle low german|1
+(noun)|Middle Low German|Low German (generic term)|Plattdeutsch (generic term)
+middle meningeal artery|1
+(noun)|meningeal artery (generic term)|arteria meningea (generic term)
+middle name|1
+(noun)|name (generic term)
+middle of the roader|1
+(noun)|centrist|moderate|moderationist|adult (generic term)|grownup (generic term)
+middle paleolithic|1
+(noun)|Middle Paleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+middle school|1
+(noun)|secondary school|lyceum|lycee|Gymnasium|school (generic term)
+middle temporal vein|1
+(noun)|temporal vein (generic term)|vena temporalis (generic term)
+middle term|1
+(noun)|term (generic term)
+middle thyroid vein|1
+(noun)|thyroid vein (generic term)|vena thyroidea (generic term)
+middle watch|1
+(noun)|graveyard watch|midwatch|night watch|watch (generic term)
+middle west|1
+(noun)|Midwest|midwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+middlebreaker|1
+(noun)|lister|lister plow|lister plough|middle buster|moldboard plow (generic term)|mouldboard plough (generic term)
+middlebrow|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+middleman|3
+(noun)|jobber|wholesaler|distributor (generic term)|distributer (generic term)
+(noun)|interlocutor|minstrel (generic term)
+(noun)|contact|representative (generic term)
+middlemost|1
+(adj)|midmost|central (similar term)
+middleton|1
+(noun)|Middleton|Thomas Middleton|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+middleweight|3
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|prizefighter (generic term)|gladiator (generic term)
+middling|3
+(adj)|average|fair|mediocre|ordinary (similar term)
+(noun)|commodity (generic term)|trade good (generic term)|good (generic term)
+(adv)|reasonably|moderately|within reason|somewhat|fairly|passably|immoderately (antonym)|unreasonably (antonym)
+middy|1
+(noun)|middy blouse|blouse (generic term)
+middy blouse|1
+(noun)|middy|blouse (generic term)
+mideast|1
+(noun)|Middle East|Mideast|Near East|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+midfield|1
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+midgard|1
+(noun)|Midgard|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+midge|1
+(noun)|gnat (generic term)
+midget|2
+(adj)|bantam|diminutive|lilliputian|petite|tiny|flyspeck|small (similar term)|little (similar term)
+(noun)|dwarf|nanus|small person (generic term)
+midgrass|1
+(noun)|grass (generic term)
+midi|3
+(adj)|maxi (antonym)|mini (antonym)
+(noun)|Midi|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|musical instrument digital interface|MIDI|protocol (generic term)|communications protocol (generic term)
+midi-pyrenees|1
+(noun)|Midi-Pyrenees|French region (generic term)
+midinette|1
+(noun)|salesgirl (generic term)|saleswoman (generic term)|saleslady (generic term)
+midiron|1
+(noun)|two iron|iron (generic term)
+midland|3
+(adj)|interior|upcountry|inland (similar term)
+(noun)|Midland|town (generic term)
+(noun)|inside (generic term)|interior (generic term)
+midline|1
+(noun)|midplane|plane (generic term)|sheet (generic term)
+midmost|2
+(adj)|middlemost|central (similar term)
+(adv)|in the midst|in the middle
+midnight|1
+(noun)|hour (generic term)|time of day (generic term)
+midnight sun|1
+(noun)|atmospheric phenomenon (generic term)
+midplane|1
+(noun)|midline|plane (generic term)|sheet (generic term)
+midpoint|1
+(noun)|center|centre|point (generic term)
+midrash|1
+(noun)|Midrash|comment (generic term)|commentary (generic term)
+midrib|1
+(noun)|midvein|vein (generic term)|nervure (generic term)
+midriff|2
+(noun)|middle|midsection|area (generic term)|region (generic term)
+(noun)|diaphragm|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)|membrane (generic term)|tissue layer (generic term)
+midsection|1
+(noun)|middle|midriff|area (generic term)|region (generic term)
+midshipman|1
+(noun)|cadet (generic term)|plebe (generic term)
+midships|1
+(adv)|amidships|amidship
+midst|1
+(noun)|thick|inside (generic term)|interior (generic term)
+midstream|1
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+midsummer|1
+(noun)|summer solstice|June 21|solstice (generic term)|winter solstice (antonym)
+midsummer's day|1
+(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day (generic term)
+midsummer-men|1
+(noun)|rose-root|Sedum rosea|sedum (generic term)
+midsummer day|1
+(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day (generic term)
+midsummer eve|1
+(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day (generic term)
+midsummer night|1
+(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day (generic term)
+midterm|2
+(noun)|point (generic term)|point in time (generic term)
+(noun)|midterm examination|midterm exam|examination (generic term)|exam (generic term)|test (generic term)
+midterm exam|1
+(noun)|midterm examination|midterm|examination (generic term)|exam (generic term)|test (generic term)
+midterm examination|1
+(noun)|midterm exam|midterm|examination (generic term)|exam (generic term)|test (generic term)
+midvein|1
+(noun)|midrib|vein (generic term)|nervure (generic term)
+midwatch|1
+(noun)|graveyard watch|middle watch|night watch|watch (generic term)
+midway|4
+(adj)|center|halfway|middle|central (similar term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|Midway|Battle of Midway|naval battle (generic term)
+(adv)|halfway
+midway islands|1
+(noun)|Midway Islands|atoll (generic term)
+midweek|3
+(adj)|midweekly|time period|period of time|period (related term)
+(noun)|Wednesday|Midweek|Wed|weekday (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+midweekly|1
+(adj)|midweek|time period|period of time|period (related term)
+midwest|1
+(noun)|Midwest|middle west|midwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+midwestern|1
+(adj)|western (similar term)
+midwestern united states|1
+(noun)|Midwest|middle west|midwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+midwife|1
+(noun)|accoucheuse|nurse (generic term)
+midwife toad|2
+(noun)|Alytes cisternasi|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+(noun)|obstetrical toad|Alytes obstetricans|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+midwifery|2
+(noun)|obstetrics|OB|tocology|medicine (generic term)|medical specialty (generic term)
+(noun)|delivery (generic term)|obstetrical delivery (generic term)
+midwinter|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+mien|1
+(noun)|bearing|comportment|presence|manner (generic term)|personal manner (generic term)
+mierkat|1
+(noun)|meerkat|viverrine (generic term)|viverrine mammal (generic term)
+mies van der rohe|1
+(noun)|Mies Van Der Rohe|Ludwig Mies Van Der Rohe|architect (generic term)|designer (generic term)
+mifepristone|1
+(noun)|abortion pill|RU 486|abortifacient (generic term)|aborticide (generic term)|abortion-inducing drug (generic term)
+miff|2
+(noun)|huff|seeing red|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(verb)|anger (generic term)
+miffed|1
+(adj)|annoyed|irritated|nettled|peeved|pissed|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+might|1
+(noun)|mightiness|power|strength (generic term)
+might-have-been|1
+(noun)|event (generic term)
+mightiness|1
+(noun)|might|power|strength (generic term)
+mighty|2
+(adj)|powerful (similar term)
+(adv)|powerful|right
+mighty mouse|1
+(noun)|Mighty Mouse|fictional animal (generic term)
+mignonette|1
+(noun)|sweet reseda|Reseda odorata|reseda (generic term)
+mignonette family|1
+(noun)|Resedaceae|family Resedaceae|dilleniid dicot family (generic term)
+migraine|1
+(noun)|megrim|sick headache|hemicrania|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+migrant|2
+(adj)|migratory|unsettled (similar term)
+(noun)|migrator|traveler (generic term)|traveller (generic term)
+migrant shrike|1
+(noun)|Lanius ludovicianus migrans|shrike (generic term)
+migrate|2
+(verb)|transmigrate|move (generic term)
+(verb)|move (generic term)
+migration|4
+(noun)|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|people (generic term)
+(noun)|event (generic term)
+(noun)|periodic event (generic term)|recurrent event (generic term)
+migration route|1
+(noun)|flyway|path (generic term)|route (generic term)|itinerary (generic term)
+migrational|1
+(adj)|motion|movement|move (related term)|periodic event|recurrent event (related term)|event (related term)
+migrator|2
+(noun)|migrant|traveler (generic term)|traveller (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+migratory|2
+(adj)|nonmigratory (antonym)
+(adj)|migrant|unsettled (similar term)
+migratory grasshopper|1
+(noun)|locust (generic term)
+migratory locust|1
+(noun)|Locusta migratoria|locust (generic term)
+migratory quail|1
+(noun)|Coturnix coturnix|Coturnix communis|Old World quail (generic term)
+miguel de cervantes|1
+(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+miguel de cervantes saavedra|1
+(noun)|Cervantes|Miguel de Cervantes|Cervantes Saavedra|Miguel de Cervantes Saavedra|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+miguel jose serra|1
+(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary (generic term)|missioner (generic term)
+mihrab|2
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|recess (generic term)|niche (generic term)
+mikado|1
+(noun)|tenno|emperor (generic term)
+mikania|1
+(noun)|Mikania|genus Mikania|asterid dicot genus (generic term)
+mikania scandens|1
+(noun)|climbing hempweed|climbing boneset|wild climbing hempweed|climbing hemp-vine|Mikania scandens|vine (generic term)
+mike|1
+(noun)|microphone|electro-acoustic transducer (generic term)
+mike tyson|1
+(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter (generic term)|gladiator (generic term)
+mikhail aleksandrovich bakunin|1
+(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+mikhail bakunin|1
+(noun)|Bakunin|Mikhail Bakunin|Mikhail Aleksandrovich Bakunin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+mikhail baryshnikov|1
+(noun)|Baryshnikov|Mikhail Baryshnikov|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+mikhail glinka|1
+(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer (generic term)
+mikhail gorbachev|1
+(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman (generic term)|solon (generic term)|national leader (generic term)
+mikhail ilarionovich kutuzov|1
+(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal (generic term)
+mikhail ivanovich glinka|1
+(noun)|Glinka|Mikhail Glinka|Mikhail Ivanovich Glinka|composer (generic term)
+mikhail ivanovich kalinin|1
+(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman (generic term)|solon (generic term)|national leader (generic term)
+mikhail kalinin|1
+(noun)|Kalinin|Mikhail Kalinin|Mikhail Ivanovich Kalinin|statesman (generic term)|solon (generic term)|national leader (generic term)
+mikhail sergeyevich gorbachev|1
+(noun)|Gorbachev|Mikhail Gorbachev|Mikhail Sergeyevich Gorbachev|statesman (generic term)|solon (generic term)|national leader (generic term)
+mikhail yurievich lermontov|1
+(noun)|Lermontov|Mikhail Yurievich Lermontov|writer (generic term)|author (generic term)
+mikir-meithei|1
+(noun)|Mikir-Meithei|Kamarupan (generic term)
+mikolaj kopernik|1
+(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+mikvah|1
+(noun)|bath (generic term)
+mil|4
+(noun)|linear unit (generic term)
+(noun)|Cypriot monetary unit (generic term)
+(noun)|milliliter|millilitre|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit (generic term)
+(noun)|angular unit (generic term)
+milady|1
+(noun)|Milady|Lady (generic term)|noblewoman (generic term)|peeress (generic term)
+milage|1
+(noun)|mileage|distance (generic term)
+milan|1
+(noun)|Milan|Milano|city (generic term)|metropolis (generic term)|urban center (generic term)
+milanese|2
+(adj)|Milanese|city|metropolis|urban center (related term)
+(noun)|Milanese|Italian (generic term)
+milano|1
+(noun)|Milan|Milano|city (generic term)|metropolis (generic term)|urban center (generic term)
+milch|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals (related term)
+milch cow|1
+(noun)|dairy cattle|dairy cow|milk cow|milcher|milker|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+milcher|1
+(noun)|dairy cattle|dairy cow|milch cow|milk cow|milker|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+mild|3
+(adj)|gentle (similar term)|soft (similar term)|mild-mannered (similar term)|moderate (similar term)|temperate (similar term)|moderate (related term)|temperate (related term)|intense (antonym)
+(adj)|meek|modest|humble (similar term)
+(adj)|balmy|soft|clement (similar term)
+mild-mannered|1
+(adj)|mild (similar term)
+mild-tasting|1
+(adj)|tasty (similar term)
+mild silver protein|1
+(noun)|Argyrol|antiseptic (generic term)
+mild steel|1
+(noun)|low-carbon steel|soft-cast steel|steel (generic term)
+mildew|3
+(noun)|mold|spoilage (generic term)|spoiling (generic term)
+(noun)|fungus (generic term)
+(verb)|mold|change (generic term)
+mildly|1
+(adv)|gently
+mildness|3
+(noun)|clemency|good weather (generic term)
+(noun)|gentleness|softness|manner (generic term)|personal manner (generic term)
+(noun)|lenience|leniency|lenity|mercifulness (generic term)|mercy (generic term)
+mildred ella didrikson|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+mildred ella didrikson zaharias|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+mile|8
+(noun)|statute mile|stat mi|land mile|mi|linear unit (generic term)
+(noun)|nautical mile|mi|naut mi|knot|international nautical mile|air mile|nautical linear unit (generic term)
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|sea mile|nautical linear unit (generic term)
+(noun)|nautical mile|naut mi|mi|geographical mile|Admiralty mile|nautical linear unit (generic term)
+(noun)|Roman mile|linear unit (generic term)
+(noun)|Swedish mile|linear unit (generic term)
+(noun)|track event (generic term)
+mile-high city|1
+(noun)|Denver|Mile-High City|capital of Colorado|state capital (generic term)
+mileage|3
+(noun)|milage|distance (generic term)
+(noun)|fuel consumption rate|gasoline mileage|gas mileage|ratio (generic term)
+(noun)|travel allowance (generic term)|travel reimbursement (generic term)
+mileometer|1
+(noun)|odometer|hodometer|milometer|meter (generic term)
+milepost|1
+(noun)|milestone|marker (generic term)|marking (generic term)|mark (generic term)
+miler|2
+(noun)|linear unit (generic term)
+(noun)|runner (generic term)
+miles davis|1
+(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician (generic term)|jazzman (generic term)
+miles dewey davis jr.|1
+(noun)|Davis|Miles Davis|Miles Dewey Davis Jr.|jazz musician (generic term)|jazzman (generic term)
+miles gloriosus|1
+(noun)|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+miles per gallon|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+miles per hour|2
+(noun)|mph|rate (generic term)
+(noun)|mph|reading (generic term)|meter reading (generic term)|indication (generic term)
+miles standish|1
+(noun)|Standish|Miles Standish|Myles Standish|settler (generic term)|colonist (generic term)
+milestone|2
+(noun)|milepost|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|juncture (generic term)|occasion (generic term)
+milfoil|1
+(noun)|yarrow|Achillea millefolium|achillea (generic term)
+milhaud|1
+(noun)|Milhaud|Darius Milhaud|composer (generic term)
+miliaria|1
+(noun)|prickly heat|heat rash|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)
+miliary fever|1
+(noun)|sweating sickness|infectious disease (generic term)
+miliary tuberculosis|1
+(noun)|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+milieu|1
+(noun)|surroundings|environment (generic term)
+militainment|1
+(noun)|entertainment (generic term)|amusement (generic term)
+militance|1
+(noun)|combativeness|militancy|aggressiveness (generic term)
+militancy|1
+(noun)|combativeness|militance|aggressiveness (generic term)
+militant|4
+(adj)|hawkish|warlike|unpeaceful (similar term)
+(adj)|competitive|aggressive (similar term)
+(adj)|belligerent|fighting|war-ridden|warring|unpeaceful (similar term)
+(noun)|activist|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+militant tendency|1
+(noun)|Militant Tendency|party (generic term)|political party (generic term)
+militarisation|1
+(noun)|mobilization|mobilisation|militarization|social control (generic term)|demobilization (antonym)
+militarise|2
+(verb)|militarize|change (generic term)|alter (generic term)|modify (generic term)|demilitarise (antonym)|demilitarize (antonym)
+(verb)|militarize|change (generic term)|alter (generic term)|modify (generic term)
+militarised|1
+(adj)|militarized|armed (similar term)
+militarism|1
+(noun)|hawkishness (generic term)
+militarist|1
+(noun)|warmonger|adult (generic term)|grownup (generic term)
+militaristic|1
+(adj)|military (similar term)
+militarization|1
+(noun)|mobilization|mobilisation|militarisation|social control (generic term)|demobilization (antonym)
+militarize|2
+(verb)|militarise|change (generic term)|alter (generic term)|modify (generic term)|demilitarise (antonym)|demilitarize (antonym)
+(verb)|militarise|change (generic term)|alter (generic term)|modify (generic term)
+militarized|1
+(adj)|militarised|armed (similar term)
+military|4
+(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+(adj)|militaristic (similar term)|soldierly (similar term)|soldierlike (similar term)|warriorlike (similar term)|martial (similar term)|warlike (similar term)|martial (similar term)|unmilitary (antonym)
+(adj)|expeditionary (similar term)|martial (similar term)|combatant (similar term)|noncombatant (similar term)|civilian (antonym)
+(noun)|armed forces|armed services|military machine|war machine|force (generic term)|personnel (generic term)
+military-industrial complex|1
+(noun)|vested interest (generic term)
+military academy|1
+(noun)|academy (generic term)
+military action|1
+(noun)|action|group action (generic term)
+military adviser|1
+(noun)|military advisor|adviser (generic term)|advisor (generic term)|consultant (generic term)|military officer (generic term)|officer (generic term)
+military advisor|1
+(noun)|military adviser|adviser (generic term)|advisor (generic term)|consultant (generic term)|military officer (generic term)|officer (generic term)
+military attache|1
+(noun)|attache (generic term)
+military band|1
+(noun)|concert band|band (generic term)
+military blockade|1
+(noun)|siege|besieging|beleaguering|blockade (generic term)|encirclement (generic term)
+military campaign|1
+(noun)|campaign|operation (generic term)|military operation (generic term)
+military capability|1
+(noun)|military strength|strength|military posture|posture|capability (generic term)|capableness (generic term)
+military censorship|1
+(noun)|censoring (generic term)|censorship (generic term)|security review (generic term)
+military ceremony|2
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|ceremony (generic term)
+military chaplain|1
+(noun)|padre|Holy Joe|sky pilot|chaplain (generic term)
+military commission|1
+(noun)|commission|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+military control|1
+(noun)|occupation|social control (generic term)
+military court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+military drill|1
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+military engineer|1
+(noun)|army engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+military expedition|1
+(noun)|expedition|hostile expedition|campaign (generic term)|military campaign (generic term)
+military force|1
+(noun)|military unit|military group|force|unit (generic term)|social unit (generic term)
+military formation|1
+(noun)|formation (generic term)
+military government|1
+(noun)|stratocracy|government (generic term)|authorities (generic term)|regime (generic term)
+military governor|1
+(noun)|governor (generic term)
+military greeting|1
+(noun)|salute|greeting (generic term)|salutation (generic term)
+military group|1
+(noun)|military unit|military force|force|unit (generic term)|social unit (generic term)
+military headquarters|1
+(noun)|headquarters|HQ|military installation (generic term)
+military hospital|1
+(noun)|hospital (generic term)|infirmary (generic term)
+military installation|1
+(noun)|facility (generic term)|installation (generic term)
+military intelligence|2
+(noun)|military intelligence agency|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+(noun)|intelligence (generic term)|intelligence information (generic term)
+military intelligence agency|1
+(noun)|military intelligence|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+military intelligence section 5|1
+(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency (generic term)
+military intelligence section 6|1
+(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency (generic term)
+military issue|1
+(noun)|issue|government issue|store (generic term)|stock (generic term)|fund (generic term)
+military junta|1
+(noun)|junta|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+military law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+military leader|1
+(noun)|leader (generic term)
+military machine|1
+(noun)|military|armed forces|armed services|war machine|force (generic term)|personnel (generic term)
+military man|1
+(noun)|serviceman|man|military personnel|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)|civilian (antonym)
+military march|1
+(noun)|military music|martial music|marching music (generic term)|march (generic term)
+military mission|1
+(noun)|mission|operation (generic term)|military operation (generic term)
+military music|1
+(noun)|military march|martial music|marching music (generic term)|march (generic term)
+military officer|1
+(noun)|officer|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+military operation|1
+(noun)|operation|activity (generic term)
+military pace|1
+(noun)|linear unit (generic term)
+military personnel|2
+(noun)|soldiery|troops|force (generic term)|personnel (generic term)
+(noun)|serviceman|military man|man|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)|civilian (antonym)
+military plane|1
+(noun)|warplane|heavier-than-air craft (generic term)|military vehicle (generic term)
+military police|1
+(noun)|MP|force (generic term)|personnel (generic term)
+military policeman|1
+(noun)|MP|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+military position|1
+(noun)|position|point (generic term)
+military post|1
+(noun)|post|military installation (generic term)
+military posture|1
+(noun)|military capability|military strength|strength|posture|capability (generic term)|capableness (generic term)
+military press|1
+(noun)|press|weightlift (generic term)|weightlifting (generic term)
+military quarters|1
+(noun)|living quarters (generic term)|quarters (generic term)
+military rank|1
+(noun)|military rating|paygrade|rating|rank (generic term)
+military rating|1
+(noun)|military rank|paygrade|rating|rank (generic term)
+military recruit|1
+(noun)|recruit|enlisted man (generic term)
+military reserve|1
+(noun)|reserve|military (generic term)|armed forces (generic term)|armed services (generic term)|military machine (generic term)|war machine (generic term)
+military science|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+military service|2
+(noun)|armed service|service|force (generic term)|personnel (generic term)
+(noun)|service (generic term)
+military strength|1
+(noun)|military capability|strength|military posture|posture|capability (generic term)|capableness (generic term)
+military training|1
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+military uniform|1
+(noun)|uniform (generic term)
+military unit|1
+(noun)|military force|military group|force|unit (generic term)|social unit (generic term)
+military vehicle|1
+(noun)|vehicle (generic term)
+military volunteer|1
+(noun)|volunteer|voluntary|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|draftee (antonym)
+militate|1
+(verb)|influence (generic term)|act upon (generic term)|work (generic term)
+militia|2
+(noun)|reserves|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|body (generic term)
+militiaman|1
+(noun)|soldier (generic term)
+milium|1
+(noun)|whitehead|blemish (generic term)|defect (generic term)|mar (generic term)
+milk|7
+(noun)|dairy product (generic term)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|Milk|Milk River|river (generic term)
+(noun)|foodstuff (generic term)|food product (generic term)
+(verb)|draw (generic term)|take out (generic term)
+(verb)|exploit (generic term)|tap (generic term)
+(verb)|add (generic term)
+milk-sick|1
+(adj)|ill (similar term)|sick (similar term)
+milk-vetch|1
+(noun)|milk vetch|woody plant (generic term)|ligneous plant (generic term)
+milk-white|1
+(adj)|achromatic (similar term)
+milk adder|1
+(noun)|milk snake|house snake|checkered adder|Lampropeltis triangulum|king snake (generic term)|kingsnake (generic term)
+milk bar|1
+(noun)|snack bar (generic term)|snack counter (generic term)|buffet (generic term)
+milk can|1
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+milk chocolate|1
+(noun)|chocolate (generic term)
+milk cow|1
+(noun)|dairy cattle|dairy cow|milch cow|milcher|milker|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+milk float|1
+(noun)|van (generic term)
+milk glass|1
+(noun)|opal glass|glass (generic term)
+milk intolerance|1
+(noun)|lactose intolerance|lactase deficiency|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+milk leg|1
+(noun)|white leg|phlegmasia alba dolens|thrombosis (generic term)
+milk of magnesia|1
+(noun)|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+milk powder|1
+(noun)|powdered milk|dry milk|dried milk|milk (generic term)
+milk pox|1
+(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+milk punch|1
+(noun)|punch (generic term)
+milk river|1
+(noun)|Milk|Milk River|river (generic term)
+milk shake|1
+(noun)|milkshake|shake|drink (generic term)
+milk sickness|2
+(noun)|trembles|animal disease (generic term)
+(noun)|disease (generic term)
+milk snake|1
+(noun)|house snake|milk adder|checkered adder|Lampropeltis triangulum|king snake (generic term)|kingsnake (generic term)
+milk sugar|1
+(noun)|lactose|disaccharide (generic term)
+milk thistle|2
+(noun)|sow thistle|shrub (generic term)|bush (generic term)
+(noun)|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+milk tooth|1
+(noun)|primary tooth|deciduous tooth|baby tooth|tooth (generic term)
+milk vetch|1
+(noun)|milk-vetch|woody plant (generic term)|ligneous plant (generic term)
+milk wagon|1
+(noun)|milkwagon|wagon (generic term)|waggon (generic term)
+milk whey|1
+(noun)|whey|serum (generic term)|blood serum (generic term)
+milkcap|1
+(noun)|Lactarius delicioso|agaric (generic term)
+milker|1
+(noun)|dairy cattle|dairy cow|milch cow|milk cow|milcher|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+milking machine|1
+(noun)|machine (generic term)
+milking shorthorn|1
+(noun)|dairy cattle (generic term)|dairy cow (generic term)|milch cow (generic term)|milk cow (generic term)|milcher (generic term)|milker (generic term)
+milking stool|1
+(noun)|stool (generic term)
+milkless|1
+(adj)|dry (similar term)
+milklike|1
+(adj)|milky|whitish|opaque (similar term)
+milkmaid|1
+(noun)|dairymaid|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+milkman|1
+(noun)|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+milkshake|1
+(noun)|milk shake|shake|drink (generic term)
+milksop|1
+(noun)|sissy|pantywaist|pansy|Milquetoast|coward (generic term)
+milkwagon|1
+(noun)|milk wagon|wagon (generic term)|waggon (generic term)
+milkweed|2
+(noun)|silkweed|herb (generic term)|herbaceous plant (generic term)
+(noun)|Sonchus oleraceus|sow thistle (generic term)|milk thistle (generic term)
+milkweed butterfly|1
+(noun)|monarch|monarch butterfly|Danaus plexippus|danaid (generic term)|danaid butterfly (generic term)
+milkweed family|1
+(noun)|Asclepiadaceae|family Asclepiadaceae|dicot family (generic term)|magnoliopsid family (generic term)
+milkwort|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+milkwort family|1
+(noun)|Polygalaceae|family Polygalaceae|rosid dicot family (generic term)
+milky|1
+(adj)|milklike|whitish|opaque (similar term)
+milky way|1
+(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy (generic term)|extragalactic nebula (generic term)
+milky way galaxy|1
+(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy (generic term)|extragalactic nebula (generic term)
+milky way system|1
+(noun)|Milky Way|Milky Way Galaxy|Milky Way System|galaxy (generic term)|extragalactic nebula (generic term)
+mill|9
+(noun)|factory|manufacturing plant|manufactory|plant (generic term)|works (generic term)|industrial plant (generic term)
+(noun)|Mill|James Mill|philosopher (generic term)
+(noun)|Mill|John Mill|John Stuart Mill|philosopher (generic term)|economist (generic term)|economic expert (generic term)
+(noun)|grinder|milling machinery|machinery (generic term)
+(noun)|grind|pulverization|pulverisation|crush (generic term)|crunch (generic term)|compaction (generic term)
+(verb)|mill about|mill around|move (generic term)
+(verb)|grind (generic term)|mash (generic term)|crunch (generic term)|bray (generic term)|comminute (generic term)
+(verb)|groove (generic term)
+(verb)|roll out (generic term)|roll (generic term)
+mill-girl|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)|mill-hand (generic term)|factory worker (generic term)
+mill-hand|1
+(noun)|factory worker|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+mill about|2
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill around|be (generic term)
+(verb)|mill|mill around|move (generic term)
+mill agent|1
+(noun)|agent (generic term)
+mill around|2
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|tarry|linger|lurk|mill about|be (generic term)
+(verb)|mill|mill about|move (generic term)
+mill wheel|1
+(noun)|millwheel|waterwheel (generic term)|water wheel (generic term)
+millais|1
+(noun)|Millais|Sir John Everett Millais|Pre-Raphaelite (generic term)
+millard fillmore|1
+(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+millay|1
+(noun)|Millay|Edna Millay|Edna Saint Vincent Millay|poetess (generic term)
+millboard|1
+(noun)|pasteboard (generic term)
+milldam|1
+(noun)|dam (generic term)|dike (generic term)|dyke (generic term)
+milled|1
+(adj)|polished|processed (similar term)
+millenarian|2
+(adj)|chiliastic|time period|period of time|period (related term)
+(noun)|millenarist|chiliast|optimist (generic term)
+millenarianism|1
+(noun)|millenarism|millenniumism|chiliasm|theological doctrine (generic term)
+millenarism|1
+(noun)|millenarianism|millenniumism|chiliasm|theological doctrine (generic term)
+millenarist|1
+(noun)|millenarian|chiliast|optimist (generic term)
+millenary|5
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+(adj)|large integer (related term)
+(noun)|millennium|anniversary (generic term)|day of remembrance (generic term)
+(noun)|millennium|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|thousand (generic term)|one thousand (generic term)|1000 (generic term)|M (generic term)|K (generic term)|chiliad (generic term)|G (generic term)|grand (generic term)|thou (generic term)|yard (generic term)
+millennial|1
+(adj)|millennian|time period|period of time|period (related term)
+millennian|1
+(adj)|millennial|time period|period of time|period (related term)
+millennium|3
+(noun)|millenary|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|millenary|anniversary (generic term)|day of remembrance (generic term)
+millenniumism|1
+(noun)|millenarianism|millenarism|chiliasm|theological doctrine (generic term)
+millepede|1
+(noun)|millipede|milliped|arthropod (generic term)
+miller|6
+(noun)|Miller|Glenn Miller|Alton Glenn Miller|bandleader (generic term)
+(noun)|Miller|Henry Miller|Henry Valentine Miller|writer (generic term)|author (generic term)
+(noun)|Miller|Arthur Miller|dramatist (generic term)|playwright (generic term)
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|milling machine|shaper (generic term)|shaping machine (generic term)
+(noun)|moth miller|moth (generic term)
+miller's-thumb|1
+(noun)|sculpin (generic term)
+millerite|1
+(noun)|mineral (generic term)
+millet|3
+(noun)|cereal (generic term)|cereal grass (generic term)
+(noun)|Millet|Jean Francois Millet|painter (generic term)
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+millettia|1
+(noun)|tree (generic term)
+milliammeter|1
+(noun)|ammeter (generic term)
+milliampere|1
+(noun)|mA|current unit (generic term)
+milliard|1
+(noun)|billion (generic term)|one thousand million (generic term)|1000000000 (generic term)
+millibar|1
+(noun)|pressure unit (generic term)
+millicurie|1
+(noun)|radioactivity unit (generic term)
+millidegree|1
+(noun)|temperature unit (generic term)
+milliequivalent|1
+(noun)|meq|atomic weight (generic term)|relative atomic mass (generic term)
+millifarad|1
+(noun)|capacitance unit (generic term)
+milligram|1
+(noun)|mg|metric weight unit (generic term)|weight unit (generic term)
+millihenry|1
+(noun)|inductance unit (generic term)
+millikan|1
+(noun)|Millikan|Robert Andrews Millikan|physicist (generic term)
+milliliter|1
+(noun)|millilitre|mil|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit (generic term)
+millilitre|1
+(noun)|milliliter|mil|ml|cubic centimeter|cubic centimetre|cc|metric capacity unit (generic term)
+millime|1
+(noun)|Tunisian monetary unit (generic term)
+millimeter|1
+(noun)|millimetre|mm|metric linear unit (generic term)
+millimeter of mercury|1
+(noun)|torr|mm Hg|pressure unit (generic term)
+millimetre|1
+(noun)|millimeter|mm|metric linear unit (generic term)
+millimicron|1
+(noun)|nanometer|nanometre|nm|micromillimeter|micromillimetre|metric linear unit (generic term)
+milline|1
+(noun)|printing unit (generic term)
+milliner|1
+(noun)|hatmaker|hatter|modiste|maker (generic term)|shaper (generic term)|merchant (generic term)|merchandiser (generic term)
+millinery|2
+(noun)|hat shop|shop (generic term)|store (generic term)
+(noun)|woman's hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+milling|1
+(noun)|edge (generic term)
+milling machine|1
+(noun)|miller|shaper (generic term)|shaping machine (generic term)
+milling machinery|1
+(noun)|mill|grinder|machinery (generic term)
+million|3
+(adj)|cardinal (similar term)
+(noun)|1000000|one thousand thousand|meg|large integer (generic term)
+(noun)|billion|trillion|zillion|jillion|large indefinite quantity (generic term)|large indefinite amount (generic term)
+million floating point operations per second|1
+(noun)|megaflop|MFLOP|unit of measurement (generic term)|unit (generic term)
+million instructions per second|1
+(noun)|MIPS|unit of measurement (generic term)|unit (generic term)
+millionaire|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+millionairess|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+millionfold|1
+(adv)|a million times
+millionth|3
+(adj)|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-millionth|common fraction (generic term)|simple fraction (generic term)
+milliped|1
+(noun)|millipede|millepede|arthropod (generic term)
+millipede|1
+(noun)|millepede|milliped|arthropod (generic term)
+milliradian|1
+(noun)|angular unit (generic term)
+millisecond|1
+(noun)|msec|time unit (generic term)|unit of time (generic term)
+millivolt|1
+(noun)|mV|potential unit (generic term)
+millivoltmeter|1
+(noun)|voltmeter (generic term)
+milliwatt|1
+(noun)|power unit (generic term)
+millpond|1
+(noun)|pond (generic term)|pool (generic term)
+millrace|1
+(noun)|millrun|conduit (generic term)
+millrun|1
+(noun)|millrace|conduit (generic term)
+mills|1
+(noun)|Mills|Robert Mills|architect (generic term)|designer (generic term)
+millstone|3
+(noun)|albatross|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|load (generic term)|loading (generic term)|burden (generic term)
+(noun)|stone (generic term)
+millwheel|1
+(noun)|mill wheel|waterwheel (generic term)|water wheel (generic term)
+millwork|1
+(noun)|woodwork (generic term)
+millwright|1
+(noun)|wright (generic term)
+milne|1
+(noun)|Milne|A. A. Milne|Alan Alexander Milne|writer (generic term)|author (generic term)
+milo|1
+(noun)|milo maize|grain sorghum (generic term)
+milo maize|1
+(noun)|milo|grain sorghum (generic term)
+milometer|1
+(noun)|odometer|hodometer|mileometer|meter (generic term)
+milontin|1
+(noun)|phensuximide|Milontin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+milord|1
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+milquetoast|1
+(noun)|sissy|pantywaist|pansy|milksop|Milquetoast|coward (generic term)
+milt|2
+(noun)|soft roe|seafood (generic term)
+(noun)|semen (generic term)|seed (generic term)|seminal fluid (generic term)|ejaculate (generic term)|cum (generic term)|come (generic term)
+miltiades|1
+(noun)|Miltiades|general (generic term)|full general (generic term)
+miltomate|1
+(noun)|tomatillo|purple ground cherry|jamberry|Physalis philadelphica|ground cherry (generic term)|husk tomato (generic term)
+milton|1
+(noun)|Milton|John Milton|poet (generic term)
+milton friedman|1
+(noun)|Friedman|Milton Friedman|economist (generic term)|economic expert (generic term)
+milton snavely hershey|1
+(noun)|Hershey|Milton Snavely Hershey|confectioner (generic term)|candymaker (generic term)|philanthropist (generic term)|altruist (generic term)
+miltonia|1
+(noun)|Miltonia|genus Miltonia|monocot genus (generic term)|liliopsid genus (generic term)
+miltown|1
+(noun)|meprobamate|Miltown|Equanil|Meprin|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+milvus|1
+(noun)|Milvus|genus-Milvus|bird genus (generic term)
+milvus migrans|1
+(noun)|black kite|Milvus migrans|kite (generic term)
+milwaukee|1
+(noun)|Milwaukee|city (generic term)|metropolis (generic term)|urban center (generic term)
+mimamsa|1
+(noun)|Mimamsa|Hinduism (generic term)|Hindooism (generic term)
+mime|4
+(noun)|mimer|mummer|pantomimer|pantomimist|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|pantomime|dumb show|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+(verb)|mimic|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|pantomime|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)
+mimeo|2
+(noun)|mimeograph|mimeograph machine|Roneo|Roneograph|duplicator (generic term)|copier (generic term)
+(verb)|mimeograph|copy (generic term)|re-create (generic term)
+mimeograph|2
+(noun)|mimeo|mimeograph machine|Roneo|Roneograph|duplicator (generic term)|copier (generic term)
+(verb)|mimeo|copy (generic term)|re-create (generic term)
+mimeograph machine|1
+(noun)|mimeograph|mimeo|Roneo|Roneograph|duplicator (generic term)|copier (generic term)
+mimer|1
+(noun)|mime|mummer|pantomimer|pantomimist|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+mimesis|3
+(noun)|imitation (generic term)
+(noun)|disease (generic term)
+(noun)|quotation (generic term)|quote (generic term)|citation (generic term)
+mimetic|2
+(adj)|representational (similar term)
+(adj)|imitative (similar term)
+mimic|3
+(adj)|imitative (similar term)
+(noun)|mimicker|impersonator (generic term)|imitator (generic term)
+(verb)|mime|imitate (generic term)|copy (generic term)|simulate (generic term)
+mimicker|1
+(noun)|mimic|impersonator (generic term)|imitator (generic term)
+mimicry|2
+(noun)|apery|impersonation (generic term)|personation (generic term)
+(noun)|imitation (generic term)
+mimidae|1
+(noun)|Mimidae|family Mimidae|bird family (generic term)
+mimir|1
+(noun)|Mimir|giant (generic term)
+mimosa|3
+(noun)|silver wattle|Acacia dealbata|acacia (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+(noun)|mixed drink (generic term)
+mimosa bush|1
+(noun)|huisache|cassie|sweet wattle|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+mimosa pudica|1
+(noun)|sensitive plant|touch-me-not|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa (generic term)
+mimosa sensitiva|1
+(noun)|sensitive plant|Mimosa sensitiva|mimosa (generic term)
+mimosaceae|1
+(noun)|Mimosaceae|family Mimosaceae|rosid dicot family (generic term)
+mimosoideae|1
+(noun)|Mimosoideae|subfamily Mimosoideae|rosid dicot family (generic term)
+mimus|1
+(noun)|Mimus|genus Mimus|bird genus (generic term)
+mimus polyglotktos|1
+(noun)|mockingbird|mocker|Mimus polyglotktos|oscine (generic term)|oscine bird (generic term)
+min|3
+(noun)|minute|time unit (generic term)|unit of time (generic term)
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+(noun)|Min|Egyptian deity (generic term)
+min dialect|1
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+mina|1
+(noun)|myna|mynah|minah|myna bird|mynah bird|starling (generic term)
+minacious|1
+(adj)|baleful|forbidding|menacing|minatory|ominous|sinister|threatening|alarming (similar term)
+minah|1
+(noun)|myna|mynah|mina|myna bird|mynah bird|starling (generic term)
+minamata bay|1
+(noun)|Minamata Bay|bay (generic term)|embayment (generic term)
+minamata disease|1
+(noun)|Minamata disease|mercury poisoning (generic term)
+minaret|1
+(noun)|tower (generic term)
+minato ohashi bridge|1
+(noun)|Minato Ohashi Bridge|cantilever bridge (generic term)
+minatory|1
+(adj)|baleful|forbidding|menacing|minacious|ominous|sinister|threatening|alarming (similar term)
+mince|4
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(verb)|soften|moderate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|walk (generic term)
+(verb)|chop (generic term)|chop up (generic term)
+mince pie|1
+(noun)|pie (generic term)
+mincemeat|1
+(noun)|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+mincer|1
+(noun)|mincing machine|kitchen utensil (generic term)
+mincing|1
+(adj)|dainty|niminy-piminy|prim|twee|refined (similar term)
+mincing machine|1
+(noun)|mincer|kitchen utensil (generic term)
+mind|13
+(noun)|head|brain|psyche|nous|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+(noun)|judgment|judgement|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|thinker|creative thinker|intellectual (generic term)|intellect (generic term)
+(noun)|notice (generic term)|observation (generic term)|observance (generic term)
+(noun)|idea|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+(noun)|intellect|intelligence (generic term)
+(verb)|object (generic term)
+(verb)|think about (generic term)
+(verb)|take care|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|heed|listen|obey (generic term)
+(verb)|beware|watch (generic term)|look out (generic term)|watch out (generic term)
+(verb)|bear in mind|remember (generic term)|think of (generic term)|forget (antonym)
+mind's eye|1
+(noun)|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+mind-altering|1
+(adj)|psychoactive (similar term)|psychotropic (similar term)
+mind-altering drug|1
+(noun)|psychoactive drug|consciousness-altering drug|psychoactive substance|drug (generic term)
+mind-bending|1
+(adj)|mind-blowing|psychoactive (similar term)|psychotropic (similar term)
+mind-blowing|2
+(adj)|mind-bending|psychoactive (similar term)|psychotropic (similar term)
+(adj)|emotional (similar term)
+mind-boggling|1
+(adj)|impressive (similar term)
+mind-expanding|1
+(adj)|psychoactive (similar term)|psychotropic (similar term)
+mind-set|1
+(noun)|mentality|outlook|mindset|attitude (generic term)|mental attitude (generic term)
+mind game|2
+(noun)|game (generic term)
+(noun)|manipulation (generic term)|use (generic term)
+mind reader|2
+(noun)|telepathist|thought-reader|mental telepathist|communicator (generic term)
+(noun)|telepathist|thought-reader|magician (generic term)|prestidigitator (generic term)|conjurer (generic term)|conjuror (generic term)|illusionist (generic term)
+mindanao|1
+(noun)|Mindanao|island (generic term)
+minded|3
+(adj)|oriented (similar term)|orientated (similar term)
+(adj)|inclined (similar term)
+(adj)|apt|disposed|given|tending|inclined (similar term)
+minden|1
+(noun)|Minden|battle of Minden|pitched battle (generic term)
+minder|1
+(noun)|babyminder|baby minder|keeper (generic term)
+mindful|1
+(adj)|aware|careful (similar term)|heedful (similar term)|evocative (similar term)|redolent (similar term)|remindful (similar term)|reminiscent (similar term)|unmindful (antonym)
+mindfully|1
+(adv)|heedfully|advertently|inadvertently (antonym)|unmindfully (antonym)
+mindfulness|1
+(noun)|heedfulness|attentiveness (generic term)|heedlessness (antonym)|unmindfulness (antonym)
+mindless|5
+(adj)|meaningless (similar term)|nonmeaningful (similar term)
+(adj)|nonintellectual (similar term)
+(adj)|unmindful|forgetful|amnesic (similar term)|amnesiac (similar term)|mindful (antonym)
+(adj)|asinine|fatuous|inane|vacuous|foolish (similar term)
+(adj)|reasonless|senseless|unreasonable (similar term)
+mindlessly|1
+(adv)|senselessly
+mindlessness|2
+(noun)|inanity|senselessness|vacuity|pointlessness|meaninglessness (generic term)
+(noun)|heedlessness|rashness|imprudence (generic term)
+mindoro|1
+(noun)|Mindoro|island (generic term)
+mindset|1
+(noun)|mentality|outlook|mind-set|attitude (generic term)|mental attitude (generic term)
+mine|4
+(noun)|excavation (generic term)
+(noun)|explosive device (generic term)
+(verb)|exploit (generic term)|tap (generic term)
+(verb)|reinforce (generic term)|reenforce (generic term)
+mine detector|1
+(noun)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+mine disposal|1
+(noun)|disposal (generic term)|disposition (generic term)
+mine field|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+mine pig|1
+(noun)|pig iron (generic term)
+mine run|1
+(adj)|run-of-the-mill|run-of-the-mine|unexceptional|ordinary (similar term)
+mined|1
+(adj)|deep-mined (similar term)|well-mined (similar term)|strip-mined (similar term)|unmined (antonym)
+minefield|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+minelayer|1
+(noun)|ship (generic term)
+minelaying|1
+(noun)|mining|defense (generic term)|defence (generic term)|defensive measure (generic term)
+miner|1
+(noun)|mineworker|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+miner's cat|1
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|ring-tailed cat|civet cat|Bassariscus astutus|procyonid (generic term)
+miner's lettuce|1
+(noun)|winter purslane|Cuban spinach|Montia perfoliata|Indian lettuce (generic term)
+mineral|4
+(adj)|material|stuff (related term)
+(adj)|asphaltic (similar term)|mineralized (similar term)|petrified (similar term)|mineralized (similar term)|animal (antonym)|vegetable (antonym)
+(adj)|inorganic (similar term)
+(noun)|material (generic term)|stuff (generic term)
+mineral deficiency|1
+(noun)|lack (generic term)|deficiency (generic term)|want (generic term)
+mineral dressing|1
+(noun)|mineral extraction|mineral processing|ore processing|ore dressing|beneficiation|extraction (generic term)
+mineral extraction|1
+(noun)|mineral processing|mineral dressing|ore processing|ore dressing|beneficiation|extraction (generic term)
+mineral jelly|1
+(noun)|petrolatum|petroleum jelly|jelly (generic term)|mixture (generic term)
+mineral kingdom|1
+(noun)|kingdom (generic term)
+mineral oil|1
+(noun)|oil (generic term)
+mineral pitch|1
+(noun)|asphalt|mineral (generic term)
+mineral processing|1
+(noun)|mineral extraction|mineral dressing|ore processing|ore dressing|beneficiation|extraction (generic term)
+mineral resources|1
+(noun)|natural resource (generic term)|natural resources (generic term)
+mineral tar|1
+(noun)|maltha|mineral (generic term)
+mineral vein|1
+(noun)|vein|geological formation (generic term)|formation (generic term)
+mineral water|1
+(noun)|drinking water (generic term)
+mineral wax|1
+(noun)|ader wax|earth wax|ozokerite|ozocerite|mineral (generic term)
+mineral wool|1
+(noun)|rock wool|insulator (generic term)|dielectric (generic term)|nonconductor (generic term)
+mineralize|1
+(verb)|convert (generic term)
+mineralized|2
+(adj)|mineral (similar term)
+(adj)|petrified|mineral (similar term)
+mineralocorticoid|1
+(noun)|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+mineralogist|1
+(noun)|scientist (generic term)|man of science (generic term)
+mineralogy|1
+(noun)|geology (generic term)
+minerva|1
+(noun)|Minerva|Roman deity (generic term)
+mineshaft|1
+(noun)|excavation (generic term)
+minestrone|1
+(noun)|petite marmite|vegetable soup|soup (generic term)
+minesweeper|1
+(noun)|ship (generic term)
+minesweeping|1
+(noun)|mine disposal (generic term)
+mineworker|1
+(noun)|miner|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+ming|1
+(noun)|Ming|Ming dynasty|dynasty (generic term)
+ming dynasty|1
+(noun)|Ming|Ming dynasty|dynasty (generic term)
+ming tree|1
+(noun)|bonsai (generic term)
+minge|1
+(noun)|pubic hair (generic term)|bush (generic term)|crotch hair (generic term)|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+minginess|1
+(noun)|meanness|niggardliness|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess (generic term)
+mingle|2
+(verb)|mix|commix|unify|amalgamate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|jumble|be (generic term)
+mingle-mangle|1
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+mingling|2
+(adj)|blending|merging|blended (similar term)
+(noun)|social activity (generic term)
+mingy|1
+(adj)|mean|miserly|tight|stingy (similar term)|ungenerous (similar term)
+mini|2
+(adj)|midi (antonym)|maxi (antonym)
+(noun)|miniskirt|skirt (generic term)
+miniate|2
+(verb)|color (generic term)|colour (generic term)|emblazon (generic term)
+(verb)|rubricate|illuminate (generic term)
+miniature|3
+(adj)|small (similar term)|little (similar term)
+(noun)|illumination|painting (generic term)|picture (generic term)
+(noun)|toy|copy (generic term)
+miniature fan palm|1
+(noun)|bamboo palm|fern rhapis|Rhapis excelsa|lady palm (generic term)
+miniature golf|1
+(noun)|golf (generic term)|golf game (generic term)
+miniature pinscher|1
+(noun)|pinscher (generic term)
+miniature poodle|1
+(noun)|poodle (generic term)|poodle dog (generic term)
+miniature schnauzer|1
+(noun)|schnauzer (generic term)
+miniaturisation|1
+(noun)|miniaturization|shrinking (generic term)
+miniaturise|1
+(verb)|miniaturize|shrink (generic term)|reduce (generic term)
+miniaturist|1
+(noun)|painter (generic term)
+miniaturization|1
+(noun)|miniaturisation|shrinking (generic term)
+miniaturize|1
+(verb)|miniaturise|shrink (generic term)|reduce (generic term)
+minibar|1
+(noun)|cellaret|buffet (generic term)|counter (generic term)|sideboard (generic term)
+minibike|1
+(noun)|motorbike|motorcycle (generic term)|bike (generic term)
+minibus|1
+(noun)|bus (generic term)|autobus (generic term)|coach (generic term)|charabanc (generic term)|double-decker (generic term)|jitney (generic term)|motorbus (generic term)|motorcoach (generic term)|omnibus (generic term)|passenger vehicle (generic term)
+minicab|1
+(noun)|cab (generic term)|hack (generic term)|taxi (generic term)|taxicab (generic term)|minicar (generic term)
+minicar|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+minicomputer|1
+(noun)|digital computer (generic term)
+miniconju|1
+(noun)|Miniconju|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+minify|1
+(verb)|decrease|lessen|change (generic term)|alter (generic term)|modify (generic term)|increase (antonym)
+minim|3
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|United States liquid unit (generic term)
+(noun)|half note|note (generic term)|musical note (generic term)|tone (generic term)
+minimal|1
+(adj)|minimum|borderline (similar term)|marginal (similar term)|negligible (similar term)|nominal (similar term)|token (similar term)|tokenish (similar term)|stripped (similar term)|stripped-down (similar term)|maximum (antonym)|maximal (antonym)
+minimal art|1
+(noun)|minimalism|reductivism|artistic movement (generic term)|art movement (generic term)
+minimal brain damage|1
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain dysfunction|MBD|syndrome (generic term)
+minimal brain dysfunction|1
+(noun)|attention deficit disorder|ADD|attention deficit hyperactivity disorder|ADHD|hyperkinetic syndrome|minimal brain damage|MBD|syndrome (generic term)
+minimalism|1
+(noun)|minimal art|reductivism|artistic movement (generic term)|art movement (generic term)
+minimalist|4
+(adj)|artistic movement|art movement (related term)
+(adj)|moderate (similar term)
+(noun)|conservative (generic term)|conservativist (generic term)
+(noun)|artist (generic term)|creative person (generic term)
+minimally|1
+(adv)|maximally (antonym)
+minimally invasive coronary bypass surgery|1
+(noun)|closed-heart surgery (generic term)
+minimisation|1
+(noun)|minimization|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|maximization (antonym)
+minimise|2
+(verb)|understate|minimize|downplay|inform (generic term)|overstate (antonym)
+(verb)|minimize|decrease (generic term)|lessen (generic term)|minify (generic term)|maximise (antonym)|maximize (antonym)
+minimization|1
+(noun)|minimisation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|maximization (antonym)
+minimize|3
+(verb)|minimise|decrease (generic term)|lessen (generic term)|minify (generic term)|maximise (antonym)|maximize (antonym)
+(verb)|understate|minimise|downplay|inform (generic term)|overstate (antonym)
+(verb)|belittle|denigrate|derogate|disparage (generic term)|belittle (generic term)|pick at (generic term)
+minimized|1
+(adj)|decreased (similar term)|reduced (similar term)
+minimum|3
+(adj)|minimal|borderline (similar term)|marginal (similar term)|negligible (similar term)|nominal (similar term)|token (similar term)|tokenish (similar term)|stripped (similar term)|stripped-down (similar term)|maximum (antonym)|maximal (antonym)
+(noun)|lower limit|extremum (generic term)|peak (generic term)|small indefinite quantity (generic term)|small indefinite amount (generic term)|maximum (antonym)
+(noun)|limit (generic term)|maximum (antonym)
+minimum wage|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+minimus|1
+(noun)|digit (generic term)|dactyl (generic term)
+mining|2
+(noun)|excavation|production (generic term)
+(noun)|minelaying|defense (generic term)|defence (generic term)|defensive measure (generic term)
+mining bee|1
+(noun)|andrena|andrenid|bee (generic term)
+mining company|1
+(noun)|company (generic term)
+mining engineer|1
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+mining geology|1
+(noun)|economic geology (generic term)
+minion|1
+(noun)|dependant (generic term)|dependent (generic term)
+minipress|1
+(noun)|prazosin|Minipress|antihypertensive (generic term)|antihypertensive drug (generic term)|alpha blocker (generic term)|alpha-blocker (generic term)|alpha-adrenergic blocker (generic term)|alpha-adrenergic blocking agent (generic term)
+miniscule|1
+(adj)|minuscule|small (similar term)|little (similar term)
+miniskirt|1
+(noun)|mini|skirt (generic term)
+minister|6
+(noun)|curate|minister of religion|parson|pastor|rector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|government minister|executive (generic term)|executive director (generic term)
+(noun)|diplomatic minister|diplomat (generic term)|diplomatist (generic term)
+(noun)|public service (generic term)
+(verb)|attend (generic term)|take care (generic term)|look (generic term)|see (generic term)
+(verb)|work (generic term)
+minister of finance|1
+(noun)|finance minister|minister (generic term)|government minister (generic term)
+minister of religion|1
+(noun)|curate|minister|parson|pastor|rector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+minister plenipotentiary|1
+(noun)|envoy|envoy extraordinary|diplomat (generic term)|diplomatist (generic term)
+ministerial|2
+(adj)|clergyman|reverend|man of the cloth (related term)
+(adj)|diplomat|diplomatist (related term)
+ministering|1
+(adj)|ministrant|attending|helpful (similar term)
+ministrant|2
+(adj)|ministering|attending|helpful (similar term)
+(noun)|curate (generic term)|minister of religion (generic term)|minister (generic term)|parson (generic term)|pastor (generic term)|rector (generic term)
+ministration|1
+(noun)|relief|succor|succour|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+ministry|4
+(noun)|priesthood (generic term)
+(noun)|building (generic term)|edifice (generic term)
+(noun)|government department (generic term)
+(noun)|employment (generic term)|work (generic term)
+ministry of transportation test|1
+(noun)|MOT|MOT test|Ministry of Transportation test|test (generic term)|trial (generic term)|run (generic term)
+minisub|1
+(noun)|minisubmarine|submersible (generic term)
+minisubmarine|1
+(noun)|minisub|submersible (generic term)
+minium|1
+(noun)|red lead|oxide (generic term)
+minivan|1
+(noun)|passenger van (generic term)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+miniver|1
+(noun)|trimming (generic term)|trim (generic term)|passementerie (generic term)
+mink|3
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|mink coat|fur coat (generic term)
+(noun)|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+mink coat|1
+(noun)|mink|fur coat (generic term)
+minke whale|1
+(noun)|lesser rorqual|piked whale|Balaenoptera acutorostrata|rorqual (generic term)|razorback (generic term)
+minkowski|1
+(noun)|Minkowski|Hermann Minkowski|mathematician (generic term)
+minneapolis|1
+(noun)|Minneapolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+minnesota|1
+(noun)|Minnesota|Gopher State|North Star State|MN|American state (generic term)
+minnesota multiphasic personality inventory|1
+(noun)|Minnesota Multiphasic Personality Inventory|MMPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+minnesotan|1
+(noun)|Minnesotan|Gopher|American (generic term)
+minnewit|1
+(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler (generic term)|colonist (generic term)
+minnie bush|1
+(noun)|minniebush|Menziesia pilosa|shrub (generic term)|bush (generic term)
+minnie mouse|1
+(noun)|Minnie Mouse|fictional animal (generic term)
+minniebush|1
+(noun)|minnie bush|Menziesia pilosa|shrub (generic term)|bush (generic term)
+minnow|1
+(noun)|Phoxinus phoxinus|cyprinid (generic term)|cyprinid fish (generic term)
+minoan|2
+(adj)|Minoan|culture|civilization|civilisation (related term)
+(noun)|Minoan|Cretan (generic term)
+minoan civilisation|1
+(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+minoan civilization|1
+(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+minoan culture|1
+(noun)|Minoan civilization|Minoan civilisation|Minoan culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+minocin|1
+(noun)|minocycline|Minocin|tetracycline (generic term)|Achromycin (generic term)
+minocycline|1
+(noun)|Minocin|tetracycline (generic term)|Achromycin (generic term)
+minor|7
+(adj)|insignificant (similar term)|peanut (similar term)|secondary (similar term)|major (antonym)
+(adj)|nonaged|underage|major (antonym)
+(adj)|major (antonym)
+(adj)|junior (similar term)
+(adj)|venial|pardonable (similar term)
+(adj)|modest|small|small-scale|pocket-size|pocket-sized|limited (similar term)
+(noun)|child|kid|youngster|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+minor-league club|1
+(noun)|minor-league team|team (generic term)|squad (generic term)
+minor-league team|1
+(noun)|minor-league club|team (generic term)|squad (generic term)
+minor axis|1
+(noun)|axis (generic term)
+minor diatonic scale|1
+(noun)|minor scale|mode (generic term)|musical mode (generic term)
+minor expense|1
+(noun)|incidental expense|incidental|expense (generic term)
+minor fast day|1
+(noun)|fast day (generic term)
+minor key|1
+(noun)|minor mode|key (generic term)|tonality (generic term)
+minor league|1
+(noun)|minors|bush league|league (generic term)|conference (generic term)
+minor leaguer|1
+(noun)|bush leaguer|ballplayer (generic term)|baseball player (generic term)
+minor mode|1
+(noun)|minor key|key (generic term)|tonality (generic term)
+minor planet|1
+(noun)|planetoid|celestial body (generic term)|heavenly body (generic term)
+minor premise|1
+(noun)|minor premiss|subsumption|premise (generic term)|premiss (generic term)|assumption (generic term)
+minor premiss|1
+(noun)|minor premise|subsumption|premise (generic term)|premiss (generic term)|assumption (generic term)
+minor role|1
+(noun)|bit part|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+minor scale|1
+(noun)|minor diatonic scale|mode (generic term)|musical mode (generic term)
+minor suit|1
+(noun)|suit (generic term)
+minor surgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)|major surgery (antonym)
+minor term|1
+(noun)|term (generic term)
+minor tranquilizer|1
+(noun)|minor tranquillizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+minor tranquilliser|1
+(noun)|minor tranquilizer|minor tranquillizer|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+minor tranquillizer|1
+(noun)|minor tranquilizer|minor tranquilliser|antianxiety drug|anxiolytic|anxiolytic drug|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+minority|3
+(noun)|social group (generic term)
+(noun)|number (generic term)|figure (generic term)|majority (antonym)
+(noun)|nonage|age (generic term)|eld (generic term)|legal status (generic term)|majority (antonym)
+minority leader|1
+(noun)|legislator (generic term)
+minors|1
+(noun)|minor league|bush league|league (generic term)|conference (generic term)
+minos|1
+(noun)|Minos|Greek deity (generic term)
+minotaur|1
+(noun)|Minotaur|mythical monster (generic term)|mythical creature (generic term)
+minoxidil|1
+(noun)|Loniten|Rogaine|vasodilator (generic term)|vasodilative (generic term)
+minsk|1
+(noun)|Minsk|capital of Belarus|capital (generic term)
+minster|1
+(noun)|cathedral (generic term)
+minstrel|3
+(noun)|folk singer|jongleur|poet-singer|troubadour|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|performer (generic term)|performing artist (generic term)
+(verb)|sing (generic term)
+minstrel show|2
+(noun)|company (generic term)|troupe (generic term)
+(noun)|variety show (generic term)|variety (generic term)
+minstrelsy|3
+(noun)|company (generic term)|troupe (generic term)
+(noun)|ballad (generic term)|lay (generic term)
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+mint|7
+(adj)|perfect (similar term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+(noun)|mint candy|candy (generic term)|confect (generic term)
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+(verb)|coin|strike|create from raw material (generic term)|create from raw stuff (generic term)
+mint-scented|1
+(adj)|odorous (similar term)
+mint candy|1
+(noun)|mint|candy (generic term)|confect (generic term)
+mint family|1
+(noun)|Labiatae|family Labiatae|Lamiaceae|family Lamiaceae|asterid dicot family (generic term)
+mint geranium|1
+(noun)|costmary|alecost|bible leaf|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+mint julep|1
+(noun)|julep|highball (generic term)
+mint sauce|1
+(noun)|condiment (generic term)
+mintage|3
+(noun)|coinage|specie|metal money|currency (generic term)
+(noun)|fee (generic term)
+(noun)|trade (generic term)|craft (generic term)
+minter|1
+(noun)|coiner|moneyer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+mintmark|1
+(noun)|mark (generic term)|print (generic term)
+minuartia|1
+(noun)|Minuartia|genus Minuartia|caryophylloid dicot genus (generic term)
+minuend|1
+(noun)|number (generic term)
+minuet|2
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+minuit|1
+(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler (generic term)|colonist (generic term)
+minus|3
+(adj)|negative (similar term)|plus (antonym)
+(adj)|negative|disadvantageous (similar term)|harmful (similar term)
+(noun)|subtraction|arithmetic operation (generic term)
+minus sign|1
+(noun)|sign (generic term)
+minuscular|1
+(adj)|minuscule|lowercase (related term)|majuscule (antonym)
+minuscule|5
+(adj)|minuscular|lowercase (related term)|majuscule (antonym)
+(adj)|little|small|lowercase (similar term)
+(adj)|miniscule|small (similar term)|little (similar term)
+(noun)|small letter|lowercase|lower-case letter|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|uppercase (antonym)
+(noun)|longhand (generic term)|running hand (generic term)|cursive (generic term)|cursive script (generic term)
+minute|9
+(adj)|infinitesimal|microscopic|small (similar term)|little (similar term)
+(adj)|atomic|atomlike|microscopic (similar term)|microscopical (similar term)
+(adj)|narrow|careful (similar term)
+(noun)|min|time unit (generic term)|unit of time (generic term)
+(noun)|moment|second|bit|time (generic term)
+(noun)|moment|second|instant|point (generic term)|point in time (generic term)
+(noun)|arcminute|minute of arc|angular unit (generic term)
+(noun)|note (generic term)
+(noun)|hour|distance (generic term)
+minute book|1
+(noun)|written record (generic term)|written account (generic term)
+minute gun|1
+(noun)|gun (generic term)
+minute hand|1
+(noun)|big hand|hand (generic term)
+minute of arc|1
+(noun)|minute|arcminute|angular unit (generic term)
+minute steak|1
+(noun)|beefsteak (generic term)
+minutely|1
+(adv)|circumstantially
+minuteman|2
+(noun)|Minuteman|militiaman (generic term)
+(noun)|Minuteman|intercontinental ballistic missile (generic term)|ICBM (generic term)
+minuteness|2
+(noun)|diminutiveness|petiteness|tininess|weeness|smallness (generic term)|littleness (generic term)
+(noun)|exactness (generic term)|exactitude (generic term)
+minutes|1
+(noun)|proceedings|transactions|written record (generic term)|written account (generic term)
+minutia|1
+(noun)|detail (generic term)|item (generic term)|point (generic term)
+minx|1
+(noun)|coquette|flirt|vamp|vamper|tease|prickteaser|woman (generic term)|adult female (generic term)
+minyan|1
+(noun)|quorum (generic term)
+miocene|1
+(noun)|Miocene|Miocene epoch|epoch (generic term)
+miocene epoch|1
+(noun)|Miocene|Miocene epoch|epoch (generic term)
+miosis|2
+(noun)|meiosis|reduction division|cell division (generic term)|cellular division (generic term)
+(noun)|light reflex|pupillary reflex|myosis|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+miotic|2
+(adj)|myotic|drug (related term)
+(noun)|miotic drug|myotic drug|myotic|drug (generic term)
+miotic drug|1
+(noun)|myotic drug|miotic|myotic|drug (generic term)
+mips|1
+(noun)|MIPS|million instructions per second|unit of measurement (generic term)|unit (generic term)
+mirabeau|1
+(noun)|Mirabeau|Comte de Mirabeau|Honore-Gabriel Victor Riqueti|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+mirabilis|1
+(noun)|Mirabilis|genus Mirabilis|caryophylloid dicot genus (generic term)
+mirabilis californica|1
+(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock (generic term)
+mirabilis jalapa|1
+(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock (generic term)
+mirabilis laevis|1
+(noun)|California four o'clock|Mirabilis laevis|Mirabilis californica|four o'clock (generic term)
+mirabilis longiflora|1
+(noun)|sweet four o'clock|maravilla|Mirabilis longiflora|four o'clock (generic term)
+mirabilis multiflora|1
+(noun)|desert four o'clock|Colorado four o'clock|maravilla|Mirabilis multiflora|four o'clock (generic term)
+mirabilis oblongifolia|1
+(noun)|mountain four o'clock|Mirabilis oblongifolia|four o'clock (generic term)
+mirabilis uniflora|1
+(noun)|common four-o'clock|marvel-of-Peru|Mirabilis jalapa|Mirabilis uniflora|four o'clock (generic term)
+miracle|2
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|event (generic term)
+miracle-worship|1
+(noun)|thaumatolatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+miracle man|1
+(noun)|miracle worker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+miracle play|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+miracle worker|1
+(noun)|miracle man|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+miraculous|2
+(adj)|marvelous|marvellous|supernatural (similar term)
+(adj)|heaven-sent|providential|fortunate (similar term)
+miraculous food|1
+(noun)|manna|manna from heaven|food (generic term)|nutrient (generic term)
+mirage|2
+(noun)|optical illusion (generic term)
+(noun)|misconception (generic term)
+miranda rule|1
+(noun)|Miranda rule|rule (generic term)|prescript (generic term)
+mirasol|1
+(noun)|common sunflower|Helianthus annuus|sunflower (generic term)|helianthus (generic term)
+mire|7
+(noun)|quagmire|quag|morass|slack|bog (generic term)|peat bog (generic term)
+(noun)|slop|mud (generic term)|clay (generic term)
+(noun)|difficulty (generic term)
+(verb)|entangle|involve (generic term)
+(verb)|bog down
+(verb)|grind to a halt|get stuck|bog down|stand still (generic term)
+(verb)|muck|mud|muck up|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+mired|1
+(adj)|involved|encumbered (similar term)
+miri|1
+(noun)|Miri|Mirish|Abor|Dafla|Kamarupan (generic term)
+mirid|1
+(noun)|mirid bug|capsid|leaf bug (generic term)|plant bug (generic term)
+mirid bug|1
+(noun)|mirid|capsid|leaf bug (generic term)|plant bug (generic term)
+miridae|1
+(noun)|Miridae|family Miridae|Capsidae|family Capsidae|arthropod family (generic term)
+mirish|1
+(noun)|Miri|Mirish|Abor|Dafla|Kamarupan (generic term)
+mirky|2
+(adj)|cloudy|muddy|murky|turbid|opaque (similar term)
+(adj)|murky|shaded (similar term)
+miro|2
+(noun)|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer (generic term)|coniferous tree (generic term)
+(noun)|Miro|Joan Miro|painter (generic term)
+mirounga|1
+(noun)|Mirounga|genus Mirounga|mammal genus (generic term)
+mirror|4
+(noun)|reflector (generic term)
+(noun)|depicting (generic term)|depiction (generic term)|portraying (generic term)|portrayal (generic term)
+(verb)|reflect (generic term)|reverberate (generic term)
+(verb)|reflect (generic term)
+mirror-image relation|1
+(noun)|enantiomorphism|opposition (generic term)
+mirror carp|1
+(noun)|domestic carp (generic term)|Cyprinus carpio (generic term)
+mirror image|1
+(noun)|reflection|reflexion|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+mirror symmetry|1
+(noun)|parity|conservation of parity|space-reflection symmetry|conservation (generic term)
+mirrored|1
+(adj)|reflected (similar term)
+mirrorlike|1
+(adj)|specular|reflective (similar term)
+mirth|1
+(noun)|hilarity|mirthfulness|glee|gleefulness|gaiety (generic term)|merriment (generic term)
+mirthful|2
+(adj)|gay|jocund|jolly|jovial|merry|joyous (similar term)
+(adj)|amusing|comic|comical|funny|laughable|risible|humorous (similar term)|humourous (similar term)
+mirthfully|1
+(adv)|happily|merrily|gayly|blithely|jubilantly|with happiness|unhappily (antonym)
+mirthfulness|1
+(noun)|hilarity|mirth|glee|gleefulness|gaiety (generic term)|merriment (generic term)
+mirthless|1
+(adj)|unamused|joyless (similar term)
+miry|1
+(adj)|boggy|marshy|mucky|muddy|quaggy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+misaddress|1
+(verb)|misdirect|address (generic term)|direct (generic term)
+misadventure|1
+(noun)|mishap|mischance|misfortune (generic term)|bad luck (generic term)
+misadvise|1
+(verb)|misguide|rede (generic term)|advise (generic term)|counsel (generic term)
+misalign|1
+(verb)|align (generic term)|ordinate (generic term)|coordinate (generic term)
+misalignment|1
+(noun)|placement (generic term)|arrangement (generic term)
+misalliance|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+misally|1
+(verb)|ally (generic term)
+misanthrope|1
+(noun)|misanthropist|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+misanthropic|2
+(adj)|cynical|misanthropical|distrustful (similar term)
+(adj)|misanthropical|ill-natured (similar term)
+misanthropical|2
+(adj)|cynical|misanthropic|distrustful (similar term)
+(adj)|misanthropic|ill-natured (similar term)
+misanthropist|1
+(noun)|misanthrope|grouch (generic term)|grump (generic term)|crank (generic term)|churl (generic term)|crosspatch (generic term)
+misanthropy|2
+(noun)|hate (generic term)|hatred (generic term)
+(noun)|unfriendliness (generic term)
+misapplication|2
+(noun)|application (generic term)|practical application (generic term)
+(noun)|embezzlement|peculation|defalcation|misappropriation|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+misapply|1
+(verb)|misuse|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+misapprehend|1
+(verb)|misconstrue|misinterpret|misconceive|misunderstand|be amiss|interpret (generic term)|construe (generic term)|see (generic term)
+misapprehension|1
+(noun)|mistake|misunderstanding|misconception (generic term)
+misappropriate|1
+(verb)|embezzle|defalcate|peculate|malversate|steal (generic term)
+misappropriated|1
+(adj)|embezzled|illegal (similar term)
+misappropriation|2
+(noun)|embezzlement|peculation|defalcation|misapplication|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+(noun)|borrowing (generic term)|adoption (generic term)
+misbegot|1
+(adj)|bastardly|misbegotten|spurious|illegitimate (similar term)
+misbegotten|1
+(adj)|bastardly|misbegot|spurious|illegitimate (similar term)
+misbehave|1
+(verb)|misconduct|misdemean|act (generic term)|move (generic term)|behave (antonym)
+misbehavior|1
+(noun)|misbehaviour|misdeed|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+misbehaviour|1
+(noun)|misbehavior|misdeed|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+misbelieve|1
+(verb)|believe (generic term)
+misbeliever|1
+(noun)|heretic|religious outcast|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+misbranded|1
+(adj)|mislabeled|illegal (similar term)
+miscalculate|2
+(verb)|misestimate|misjudge (generic term)
+(verb)|misestimate|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+miscalculation|1
+(noun)|misreckoning|misestimation|mistake (generic term)|error (generic term)|fault (generic term)
+miscall|1
+(verb)|misname|call (generic term)
+miscarriage|2
+(noun)|abortion|failure (generic term)
+(noun)|spontaneous abortion|stillbirth|abortion (generic term)|live birth (antonym)
+miscarry|2
+(verb)|fail|go wrong|succeed (antonym)
+(verb)|abort (generic term)|carry to term (antonym)
+miscast|1
+(verb)|cast (generic term)
+miscegenate|1
+(verb)|cohabit (generic term)|shack up (generic term)
+miscegenation|1
+(noun)|crossbreeding|interbreeding|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+miscellanea|1
+(noun)|assortment|mixture|mixed bag|miscellany|variety|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+miscellaneous|2
+(adj)|general (similar term)
+(adj)|assorted|mixed|motley|sundry|heterogeneous (similar term)|heterogenous (similar term)
+miscellany|2
+(noun)|assortment|mixture|mixed bag|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|florilegium|garland|anthology (generic term)
+misch metal|1
+(noun)|pyrophoric alloy (generic term)
+mischance|2
+(noun)|bad luck|mishap|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+(noun)|mishap|misadventure|misfortune (generic term)|bad luck (generic term)
+mischief|2
+(noun)|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+(noun)|maleficence|balefulness|evil (generic term)|evilness (generic term)|beneficence (antonym)
+mischief-maker|1
+(noun)|troublemaker|trouble maker|troubler|bad hat|unwelcome person (generic term)|persona non grata (generic term)
+mischief-making|1
+(noun)|mischief|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+mischievous|3
+(adj)|impish|implike|pixilated|prankish|puckish|wicked|playful (similar term)
+(adj)|naughty|bad (similar term)
+(adj)|harmful (similar term)
+mischievously|1
+(adv)|badly|naughtily
+mischievousness|3
+(noun)|naughtiness|badness|disobedience (generic term)
+(noun)|impishness|puckishness|whimsicality|playfulness (generic term)|fun (generic term)
+(noun)|mischief|mischief-making|deviltry|devilry|devilment|rascality|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+miscible|1
+(adj)|mixable|compatible (similar term)|immiscible (antonym)
+misconceive|1
+(verb)|misconstrue|misinterpret|misunderstand|misapprehend|be amiss|interpret (generic term)|construe (generic term)|see (generic term)
+misconception|1
+(noun)|idea (generic term)|thought (generic term)|conception (antonym)
+misconduct|4
+(noun)|management (generic term)|direction (generic term)
+(noun)|wrongdoing|wrongful conduct|actus reus|activity (generic term)
+(verb)|misbehave|misdemean|act (generic term)|move (generic term)|behave (antonym)
+(verb)|mismanage|mishandle|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+misconstrual|1
+(noun)|misconstruction|misinterpretation (generic term)|misunderstanding (generic term)|mistaking (generic term)
+misconstruction|2
+(noun)|misconstrual|misinterpretation (generic term)|misunderstanding (generic term)|mistaking (generic term)
+(noun)|constituent (generic term)|grammatical constituent (generic term)|construction (antonym)
+misconstrue|1
+(verb)|misinterpret|misconceive|misunderstand|misapprehend|be amiss|interpret (generic term)|construe (generic term)|see (generic term)
+miscount|2
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+(verb)|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+miscreant|1
+(noun)|reprobate|wrongdoer (generic term)|offender (generic term)
+miscreate|1
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+miscreation|1
+(noun)|malformation|failure (generic term)
+miscue|2
+(noun)|stroke (generic term)|shot (generic term)
+(noun)|slip|slip-up|parapraxis|mistake (generic term)|error (generic term)|fault (generic term)
+misdate|1
+(verb)|date (generic term)
+misdating|1
+(noun)|anachronism|mistiming|timekeeping (generic term)
+misdeal|2
+(noun)|deal (generic term)
+(verb)|deal (generic term)
+misdeed|1
+(noun)|misbehavior|misbehaviour|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+misdeliver|1
+(verb)|deliver (generic term)
+misdemean|1
+(verb)|misbehave|misconduct|act (generic term)|move (generic term)|behave (antonym)
+misdemeanor|1
+(noun)|misdemeanour|infraction|offence|offense|violation|infringement|crime (generic term)|law-breaking (generic term)
+misdemeanour|1
+(noun)|misdemeanor|infraction|offence|offense|violation|infringement|crime (generic term)|law-breaking (generic term)
+misdirect|3
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|mislead|misguide|lead astray|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+(verb)|misaddress|address (generic term)|direct (generic term)
+misdirection|4
+(noun)|commission (generic term)|charge (generic term)|direction (generic term)
+(noun)|direction (generic term)|instruction (generic term)
+(noun)|mismanagement|management (generic term)|direction (generic term)
+(noun)|distraction|revision (generic term)|alteration (generic term)
+misdo|1
+(verb)|do (generic term)|perform (generic term)
+mise en scene|1
+(noun)|stage setting|setting|stage (generic term)
+miser|1
+(noun)|hoarder (generic term)
+miserable|6
+(adj)|suffering|wretched|unhappy (similar term)
+(adj)|hapless|misfortunate|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate (similar term)
+(adj)|abject|low|low-down|scummy|scurvy|contemptible (similar term)
+(adj)|deplorable|execrable|woeful|wretched|inferior (similar term)
+(adj)|wretched|uncomfortable (similar term)
+(adj)|measly|paltry|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+miserableness|1
+(noun)|misery|wretchedness|ill-being (generic term)
+miserliness|1
+(noun)|meanness (generic term)|minginess (generic term)|niggardliness (generic term)|niggardness (generic term)|parsimony (generic term)|parsimoniousness (generic term)|tightness (generic term)|tightfistedness (generic term)|closeness (generic term)
+miserly|1
+(adj)|mean|mingy|tight|stingy (similar term)|ungenerous (similar term)
+misery|2
+(noun)|wretchedness|miserableness|ill-being (generic term)
+(noun)|sadness (generic term)|unhappiness (generic term)
+misestimate|2
+(verb)|miscalculate|misjudge (generic term)
+(verb)|miscalculate|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+misestimation|1
+(noun)|miscalculation|misreckoning|mistake (generic term)|error (generic term)|fault (generic term)
+misfeasance|1
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+misfire|3
+(noun)|dud|breakdown (generic term)|equipment failure (generic term)
+(noun)|miss|failure (generic term)
+(verb)|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)
+misfit|1
+(noun)|anomaly (generic term)|unusual person (generic term)
+misfortunate|1
+(adj)|hapless|miserable|pathetic|piteous|pitiable|pitiful|poor|wretched|unfortunate (similar term)
+misfortune|2
+(noun)|bad luck|trouble (generic term)
+(noun)|bad luck|tough luck|ill luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|good luck (antonym)|good fortune (antonym)
+misfunction|1
+(verb)|malfunction|fail (generic term)|go bad (generic term)|give way (generic term)|die (generic term)|give out (generic term)|conk out (generic term)|go (generic term)|break (generic term)|break down (generic term)|function (antonym)
+misgauge|1
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+misgive|1
+(verb)|worry (generic term)|vex (generic term)
+misgiving|3
+(noun)|scruple|qualm|anxiety (generic term)
+(noun)|apprehension|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(noun)|mistrust|distrust|suspicion|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+misgovern|1
+(verb)|govern (generic term)|rule (generic term)
+misgovernment|1
+(noun)|misrule|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+misguide|2
+(verb)|mislead|misdirect|lead astray|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+(verb)|misadvise|rede (generic term)|advise (generic term)|counsel (generic term)
+misguided|2
+(adj)|ill-conceived|foolish (similar term)
+(adj)|mistaken|wrong (similar term)
+mishandle|2
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|mismanage|misconduct|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+mishap|2
+(noun)|bad luck|mischance|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+(noun)|misadventure|mischance|misfortune (generic term)|bad luck (generic term)
+mishegaas|1
+(noun)|meshugaas|mishegoss|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+mishegoss|1
+(noun)|meshugaas|mishegaas|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+mishmash|1
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+mishna|1
+(noun)|Mishna|Mishnah|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mishnah|1
+(noun)|Mishna|Mishnah|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+mishnaic|1
+(adj)|Mishnaic|sacred text|sacred writing|religious writing|religious text (related term)
+mishpachah|1
+(noun)|mishpocha|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+mishpocha|1
+(noun)|mishpachah|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+misidentify|1
+(verb)|mistake|identify (generic term)
+misinform|1
+(verb)|mislead|inform (generic term)
+misinformation|1
+(noun)|information (generic term)|info (generic term)
+misinterpret|3
+(verb)|rede (generic term)|interpret (generic term)
+(verb)|misread|take (generic term)|read (generic term)
+(verb)|misconstrue|misconceive|misunderstand|misapprehend|be amiss|interpret (generic term)|construe (generic term)|see (generic term)
+misinterpretation|1
+(noun)|misunderstanding|mistaking|interpretation (generic term)
+misjudge|1
+(verb)|err (generic term)|mistake (generic term)|slip (generic term)
+mislabeled|1
+(adj)|misbranded|illegal (similar term)
+mislaid|1
+(adj)|misplaced|lost (similar term)
+mislay|1
+(verb)|misplace|lose|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+mislead|2
+(verb)|misdirect|misguide|lead astray|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+(verb)|misinform|inform (generic term)
+misleader|1
+(noun)|leader (generic term)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+misleading|1
+(adj)|deceptive|shoddy|dishonest (similar term)|dishonorable (similar term)
+misleadingly|1
+(adv)|deceptively|deceivingly
+mismanage|1
+(verb)|mishandle|misconduct|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+mismanagement|1
+(noun)|misdirection|management (generic term)|direction (generic term)
+mismarry|1
+(verb)|marry (generic term)|get married (generic term)|wed (generic term)|conjoin (generic term)|hook up with (generic term)|get hitched with (generic term)|espouse (generic term)
+mismatch|2
+(noun)|counterpart (generic term)|opposite number (generic term)|vis-a-vis (generic term)
+(verb)|match (generic term)|mate (generic term)|couple (generic term)|pair (generic term)|twin (generic term)
+mismatched|2
+(adj)|ill-sorted (similar term)|incompatible (similar term)|mismated (similar term)|unsuited (similar term)|odd (similar term)|unmatched (similar term)|unmated (similar term)|unpaired (similar term)|incompatible (related term)|matched (antonym)
+(adj)|uneven|unequal (similar term)
+mismate|1
+(verb)|match (generic term)|mate (generic term)|couple (generic term)|pair (generic term)|twin (generic term)
+mismated|1
+(adj)|ill-sorted|incompatible|unsuited|mismatched (similar term)
+misname|1
+(verb)|miscall|call (generic term)
+misnomer|1
+(noun)|name (generic term)
+misocainea|1
+(noun)|misoneism (generic term)
+misogamist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+misogamy|1
+(noun)|hate (generic term)|hatred (generic term)
+misogynic|1
+(adj)|distrustful (similar term)
+misogynism|1
+(noun)|misogyny|hate (generic term)|hatred (generic term)|philogyny (antonym)
+misogynist|1
+(noun)|woman hater|misanthrope (generic term)|misanthropist (generic term)
+misogynous|1
+(adj)|ill-natured (similar term)
+misogyny|1
+(noun)|misogynism|hate (generic term)|hatred (generic term)|philogyny (antonym)
+misology|1
+(noun)|hate (generic term)|hatred (generic term)
+misoneism|1
+(noun)|hate (generic term)|hatred (generic term)
+misopedia|1
+(noun)|hate (generic term)|hatred (generic term)
+misperceive|1
+(verb)|perceive (generic term)|comprehend (generic term)
+mispickel|1
+(noun)|arsenopyrite|mineral (generic term)
+misplace|2
+(verb)|mislay|lose|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+misplaced|2
+(adj)|disarranged (similar term)
+(adj)|mislaid|lost (similar term)
+misplaced modifier|1
+(noun)|dangling modifier|modifier (generic term)|qualifier (generic term)
+misplacement|1
+(noun)|malposition|position (generic term)|spatial relation (generic term)
+misplay|3
+(noun)|error|failure (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|play (generic term)
+misprint|2
+(noun)|erratum|typographical error|typo|literal error|literal|error (generic term)|mistake (generic term)
+(verb)|print (generic term)
+mispronounce|1
+(verb)|misspeka|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+mispronunciation|1
+(noun)|pronunciation (generic term)
+misquotation|1
+(noun)|misquote|quotation (generic term)|quote (generic term)|citation (generic term)
+misquote|2
+(noun)|misquotation|quotation (generic term)|quote (generic term)|citation (generic term)
+(verb)|quote (generic term)|cite (generic term)
+misread|2
+(verb)|read (generic term)|scan (generic term)
+(verb)|misinterpret|take (generic term)|read (generic term)
+misreading|1
+(noun)|misinterpretation (generic term)|misunderstanding (generic term)|mistaking (generic term)
+misreckoning|1
+(noun)|miscalculation|misestimation|mistake (generic term)|error (generic term)|fault (generic term)
+misrelated|1
+(adj)|unrelated (similar term)
+misremember|1
+(verb)|err (generic term)|mistake (generic term)|slip (generic term)
+misrepresent|2
+(verb)|belie|represent (generic term)
+(verb)|fudge|manipulate|fake|falsify|cook|wangle|cheat (generic term)|chisel (generic term)|cook up (related term)
+misrepresentaation|1
+(noun)|falsification|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+misrepresentation|1
+(noun)|deceit|deception|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+misrepresented|1
+(adj)|distorted|perverted|twisted|disingenuous (similar term)|artful (similar term)
+misrule|1
+(noun)|misgovernment|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+miss|11
+(noun)|girl|missy|young lady|young woman|fille|woman (generic term)|adult female (generic term)
+(noun)|misfire|failure (generic term)
+(noun)|Miss|title (generic term)|title of respect (generic term)|form of address (generic term)
+(verb)|lose
+(verb)|desire (generic term)|want (generic term)
+(verb)|fail (generic term)|neglect (generic term)|attend (antonym)
+(verb)|neglect|pretermit|omit|drop|leave out|overlook|overleap|attend to (antonym)
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|lack|have (antonym)
+(verb)|hit (antonym)
+(verb)|escape|avoid (generic term)
+missal|1
+(noun)|prayer book (generic term)|prayerbook (generic term)
+missed|1
+(adj)|lost|incomprehensible (similar term)|uncomprehensible (similar term)
+missel thrush|1
+(noun)|mistle thrush|mistletoe thrush|Turdus viscivorus|thrush (generic term)
+misshapen|1
+(adj)|deformed|distorted|ill-shapen|malformed|unshapely (similar term)
+misshapenness|1
+(noun)|deformity|malformation|affliction (generic term)
+missile|2
+(noun)|rocket (generic term)|projectile (generic term)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|projectile|weapon (generic term)|arm (generic term)|weapon system (generic term)
+missile defence system|1
+(noun)|missile defense system|naval weaponry (generic term)
+missile defense system|1
+(noun)|missile defence system|naval weaponry (generic term)
+missing|2
+(adj)|lacking|nonexistent|wanting|absent (similar term)
+(adj)|lost (similar term)
+missing link|1
+(noun)|ape-man|primitive (generic term)|primitive person (generic term)
+mission|5
+(noun)|missionary post|missionary station|foreign mission|nongovernmental organization (generic term)|NGO (generic term)
+(noun)|military mission|operation (generic term)|military operation (generic term)
+(noun)|charge|commission|assignment (generic term)|duty assignment (generic term)
+(noun)|missionary work|work (generic term)
+(noun)|deputation|commission|delegation|delegacy|organization (generic term)|organisation (generic term)
+mission bells|2
+(noun)|black fritillary|Fritillaria biflora|fritillary (generic term)|checkered lily (generic term)
+(noun)|rice-grain fritillary|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary (generic term)|checkered lily (generic term)
+mission impossible|1
+(noun)|mission (generic term)|charge (generic term)|commission (generic term)
+missional|1
+(adj)|missionary|nongovernmental organization|NGO (related term)
+missionary|3
+(adj)|missional|nongovernmental organization|NGO (related term)
+(noun)|teacher (generic term)|instructor (generic term)
+(noun)|missioner|religious person (generic term)
+missionary position|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+missionary post|1
+(noun)|mission|missionary station|foreign mission|nongovernmental organization (generic term)|NGO (generic term)
+missionary station|1
+(noun)|mission|missionary post|foreign mission|nongovernmental organization (generic term)|NGO (generic term)
+missionary work|1
+(noun)|mission|work (generic term)
+missioner|1
+(noun)|missionary|religious person (generic term)
+missippian period|1
+(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period (generic term)|geological period (generic term)
+missis|1
+(noun)|missus|wife (generic term)|married woman (generic term)
+mississippi|2
+(noun)|Mississippi|Mississippi River|river (generic term)
+(noun)|Mississippi|Magnolia State|MS|American state (generic term)
+mississippi river|1
+(noun)|Mississippi|Mississippi River|river (generic term)
+mississippian|2
+(noun)|Mississippian|Missippian period|Lower Carboniferous|Lower Carboniferous period|period (generic term)|geological period (generic term)
+(noun)|Mississippian|American (generic term)
+missive|1
+(noun)|letter|text (generic term)|textual matter (generic term)|document (generic term)
+missoula|1
+(noun)|Missoula|town (generic term)
+missouri|4
+(noun)|Missouri|Show Me State|MO|American state (generic term)
+(noun)|Missouri|Missouri River|river (generic term)
+(noun)|Missouri|Sioux (generic term)|Siouan (generic term)
+(noun)|Missouri|Chiwere (generic term)
+missouri compromise|1
+(noun)|Missouri Compromise|compromise (generic term)
+missouri goldenrod|1
+(noun)|Missouri goldenrod|Solidago missouriensis|goldenrod (generic term)
+missouri gourd|1
+(noun)|prairie gourd|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+missouri primrose|1
+(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose (generic term)
+missouri river|1
+(noun)|Missouri|Missouri River|river (generic term)
+missourian|1
+(noun)|Missourian|American (generic term)
+misspeka|1
+(verb)|mispronounce|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+misspell|1
+(verb)|spell (generic term)|spell out (generic term)
+misspelling|1
+(noun)|spelling (generic term)
+misspend|2
+(verb)|spend (generic term)|pass (generic term)
+(verb)|spend (generic term)|expend (generic term)|drop (generic term)
+misstate|1
+(verb)|state (generic term)|say (generic term)|tell (generic term)
+misstatement|1
+(noun)|statement (generic term)
+misstep|1
+(noun)|trip|trip-up|stumble|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+missus|1
+(noun)|missis|wife (generic term)|married woman (generic term)
+missy|1
+(noun)|girl|miss|young lady|young woman|fille|woman (generic term)|adult female (generic term)
+mist|4
+(noun)|fog (generic term)
+(verb)|mist over|cover (generic term)|spread over (generic term)
+(verb)|obscure|befog|becloud|obnubilate|haze over|fog|cloud|hide (generic term)|conceal (generic term)
+(verb)|spray (generic term)
+mist-flower|1
+(noun)|mistflower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower (generic term)
+mist over|1
+(verb)|mist|cover (generic term)|spread over (generic term)
+mistakable|1
+(adj)|confusable|similar (similar term)
+mistake|5
+(noun)|error|fault|nonaccomplishment (generic term)|nonachievement (generic term)
+(noun)|misunderstanding|misapprehension|misconception (generic term)
+(noun)|error|misstatement (generic term)
+(verb)|misidentify|identify (generic term)
+(verb)|err|slip|slip up (related term)
+mistaken|2
+(adj)|misguided|wrong (similar term)
+(adj)|false|incorrect (similar term)|wrong (similar term)
+mistakenly|1
+(adv)|erroneously
+mistaking|1
+(noun)|misinterpretation|misunderstanding|interpretation (generic term)
+mister|1
+(noun)|Mr|Mr.|title (generic term)|title of respect (generic term)|form of address (generic term)
+mistflower|1
+(noun)|mist-flower|ageratum|Conoclinium coelestinum|Eupatorium coelestinum|flower (generic term)
+mistily|1
+(adv)|vaguely
+mistime|1
+(verb)|clock (generic term)|time (generic term)
+mistiming|1
+(noun)|anachronism|misdating|timekeeping (generic term)
+mistiness|1
+(noun)|haziness|steaminess|vaporousness|vapourousness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+mistle thrush|1
+(noun)|missel thrush|mistletoe thrush|Turdus viscivorus|thrush (generic term)
+mistletoe|3
+(noun)|false mistletoe|parasitic plant (generic term)
+(noun)|Viscum album|Old World mistletoe|parasitic plant (generic term)
+(noun)|Loranthus europaeus|parasitic plant (generic term)
+mistletoe cactus|1
+(noun)|cactus (generic term)
+mistletoe family|2
+(noun)|Viscaceae|family Viscaceae|dilleniid dicot family (generic term)
+(noun)|Loranthaceae|family Loranthaceae|dilleniid dicot family (generic term)|parasitic plant (generic term)
+mistletoe fig|1
+(noun)|mistletoe rubber plant|Ficus diversifolia|Ficus deltoidea|fig tree (generic term)
+mistletoe rubber plant|1
+(noun)|mistletoe fig|Ficus diversifolia|Ficus deltoidea|fig tree (generic term)
+mistletoe thrush|1
+(noun)|missel thrush|mistle thrush|Turdus viscivorus|thrush (generic term)
+mistral|1
+(noun)|north wind (generic term)|northerly (generic term)|norther (generic term)|boreas (generic term)
+mistranslate|1
+(verb)|translate (generic term)|interpret (generic term)|render (generic term)
+mistranslation|1
+(noun)|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+mistreat|1
+(verb)|maltreat|abuse|ill-use|step|ill-treat|treat (generic term)|handle (generic term)|do by (generic term)
+mistreated|1
+(adj)|abused|ill-treated|maltreated|battered (similar term)|unabused (antonym)
+mistreatment|1
+(noun)|practice (generic term)|pattern (generic term)
+mistress|3
+(noun)|kept woman|fancy woman|woman (generic term)|adult female (generic term)|lover (generic term)
+(noun)|schoolmarm|schoolma'am|schoolmistress|schoolteacher (generic term)|school teacher (generic term)
+(noun)|employer (generic term)
+mistrial|1
+(noun)|trial (generic term)
+mistrust|3
+(noun)|misgiving|distrust|suspicion|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|distrust|distrustfulness|trait (generic term)|trust (antonym)
+(verb)|distrust|suspect|disbelieve (generic term)|discredit (generic term)|trust (antonym)|trust (antonym)
+mistrustful|1
+(adj)|leery|suspicious|untrusting|wary|distrustful (similar term)
+mistrustfully|1
+(adv)|distrustfully|trustfully (antonym)
+misty|2
+(adj)|brumous|foggy|hazy|cloudy (similar term)
+(adj)|wet (similar term)
+misty-eyed|1
+(adj)|tearful (similar term)
+misunderstand|1
+(verb)|misconstrue|misinterpret|misconceive|misapprehend|be amiss|interpret (generic term)|construe (generic term)|see (generic term)
+misunderstanding|2
+(noun)|misinterpretation|mistaking|interpretation (generic term)
+(noun)|mistake|misapprehension|misconception (generic term)
+misunderstood|1
+(adj)|ununderstood (similar term)
+misuse|3
+(noun)|abuse|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(verb)|misapply|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|pervert|abuse|use (generic term)|expend (generic term)
+misused|1
+(adj)|abused (similar term)|exploited (similar term)|ill-used (similar term)|put-upon (similar term)|used (similar term)|victimized (similar term)|victimised (similar term)|used (antonym)
+mit|1
+(noun)|Massachusetts Institute of Technology|MIT|university (generic term)
+mitchell|6
+(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer (generic term)
+(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+(noun)|Mitchell|Maria Mitchell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Mitchell|Margaret Mitchell|Margaret Munnerlyn Mitchell|writer (generic term)|author (generic term)
+(noun)|Mitchell|John Mitchell|labor leader (generic term)
+(noun)|Mitchell|Arthur Mitchell|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+mitchella|1
+(noun)|Mitchella|genus Mitchella|asterid dicot genus (generic term)
+mitchella repens|1
+(noun)|partridgeberry|boxberry|twinberry|Mitchella repens|vine (generic term)
+mitchum|1
+(noun)|Mitchum|Robert Mitchum|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+mite|2
+(noun)|touch|hint|tinge|pinch|jot|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|acarine (generic term)
+mite box|1
+(noun)|poor box|alms box|box (generic term)
+mitella|1
+(noun)|Mitella|genus Mitella|rosid dicot genus (generic term)
+mitella diphylla|1
+(noun)|fairy cup|Mitella diphylla|miterwort (generic term)|mitrewort (generic term)|bishop's cap (generic term)
+mitella pentandra|1
+(noun)|five-point bishop's cap|Mitella pentandra|miterwort (generic term)|mitrewort (generic term)|bishop's cap (generic term)
+miter|6
+(noun)|miter joint|mitre joint|mitre|joint (generic term)
+(noun)|mitre|surface (generic term)
+(noun)|mitre|headdress (generic term)|headgear (generic term)
+(verb)|bevel (generic term)|chamfer (generic term)
+(verb)|confer (generic term)|bestow (generic term)
+(verb)|join (generic term)|bring together (generic term)
+miter box|1
+(noun)|mitre box|hand tool (generic term)
+miter joint|1
+(noun)|mitre joint|miter|mitre|joint (generic term)
+miter mushroom|1
+(noun)|Helvella crispa|helvella (generic term)
+miterwort|1
+(noun)|mitrewort|bishop's cap|herb (generic term)|herbaceous plant (generic term)
+mitford|2
+(noun)|Mitford|Jessica Mitford|Jessica Lucy Mitford|writer (generic term)|author (generic term)
+(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer (generic term)|author (generic term)
+mithan|1
+(noun)|gayal|Bibos frontalis|Asian wild ox (generic term)
+mithra|1
+(noun)|Mithras|Mithra|Persian deity (generic term)
+mithracin|1
+(noun)|mithramycin|Mithracin|antineoplastic antibiotic (generic term)
+mithraic|1
+(adj)|mithraistic|religion|faith|religious belief (related term)
+mithraicism|1
+(noun)|Mithraism|Mithraicism|religion (generic term)|faith (generic term)|religious belief (generic term)
+mithraism|1
+(noun)|Mithraism|Mithraicism|religion (generic term)|faith (generic term)|religious belief (generic term)
+mithraist|1
+(noun)|Mithraist|disciple (generic term)|adherent (generic term)
+mithraistic|1
+(adj)|mithraic|religion|faith|religious belief (related term)
+mithramycin|1
+(noun)|Mithracin|antineoplastic antibiotic (generic term)
+mithras|1
+(noun)|Mithras|Mithra|Persian deity (generic term)
+mithridate mustard|1
+(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|Thlaspi arvense|pennycress (generic term)
+mithridates|1
+(noun)|Mithridates|Mithridates VI|Mithridates the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+mithridates the great|1
+(noun)|Mithridates|Mithridates VI|Mithridates the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+mithridates vi|1
+(noun)|Mithridates|Mithridates VI|Mithridates the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+mitigable|1
+(adj)|placable (similar term)
+mitigate|2
+(verb)|extenuate|palliate|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+(verb)|decrease (generic term)|lessen (generic term)|minify (generic term)
+mitigated|1
+(adj)|alleviated (similar term)|eased (similar term)|relieved (similar term)|lessened (similar term)|quenched (similar term)|satisfied (similar term)|slaked (similar term)|unmitigated (antonym)
+mitigating circumstance|1
+(noun)|circumstance (generic term)|condition (generic term)|consideration (generic term)
+mitigation|3
+(noun)|extenuation|palliation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|extenuation|excuse (generic term)|alibi (generic term)|exculpation (generic term)|self-justification (generic term)
+(noun)|moderation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+mitigative|1
+(adj)|alleviative|alleviatory|lenitive|mitigatory|palliative|moderating (similar term)
+mitigatory|1
+(adj)|alleviative|alleviatory|lenitive|mitigative|palliative|moderating (similar term)
+mitochondrion|1
+(noun)|chondriosome|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+mitogen|1
+(noun)|agent (generic term)
+mitomycin|1
+(noun)|Mutamycin|antibiotic (generic term)|antibiotic drug (generic term)
+mitosis|1
+(noun)|cell division (generic term)|cellular division (generic term)
+mitotic|1
+(adj)|cell division|cellular division (related term)
+mitra|1
+(noun)|Mitra|Hindu deity (generic term)
+mitral|2
+(adj)|atrioventricular valve (related term)
+(adj)|headdress|headgear (related term)
+mitral stenosis|1
+(noun)|mitral valve stenosis|stenosis (generic term)|stricture (generic term)|valvular heart disease (generic term)
+mitral valve|1
+(noun)|bicuspid valve|left atrioventricular valve|atrioventricular valve (generic term)
+mitral valve prolapse|1
+(noun)|valvular heart disease (generic term)
+mitral valve stenosis|1
+(noun)|mitral stenosis|stenosis (generic term)|stricture (generic term)|valvular heart disease (generic term)
+mitre|3
+(noun)|miter joint|mitre joint|miter|joint (generic term)
+(noun)|miter|surface (generic term)
+(noun)|miter|headdress (generic term)|headgear (generic term)
+mitre box|1
+(noun)|miter box|hand tool (generic term)
+mitre joint|1
+(noun)|miter joint|miter|mitre|joint (generic term)
+mitrewort|1
+(noun)|miterwort|bishop's cap|herb (generic term)|herbaceous plant (generic term)
+mitrula elegans|1
+(noun)|Mitrula elegans|discomycete (generic term)|cup fungus (generic term)
+mitsvah|2
+(noun)|mitzvah|teaching (generic term)|precept (generic term)|commandment (generic term)
+(noun)|mitzvah|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+mitt|2
+(noun)|hand|manus|paw|extremity (generic term)
+(noun)|baseball glove|glove|baseball mitt|baseball equipment (generic term)
+mittelschmerz|1
+(noun)|pain (generic term)|pain sensation (generic term)|painful sensation (generic term)
+mitten|1
+(noun)|glove (generic term)
+mitterand|1
+(noun)|Mitterand|Francois Mitterand|Francois Maurice Marie Mitterand|statesman (generic term)|solon (generic term)|national leader (generic term)
+mitzvah|2
+(noun)|mitsvah|teaching (generic term)|precept (generic term)|commandment (generic term)
+(noun)|mitsvah|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+miwok|2
+(noun)|Miwok|Penutian (generic term)
+(noun)|Moquelumnan|Miwok|Penutian (generic term)
+mix|9
+(noun)|premix|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(noun)|mixture|combining (generic term)|combine (generic term)
+(noun)|commixture|admixture|mixture|intermixture|mixing|combination (generic term)|combining (generic term)|compounding (generic term)
+(verb)|blend|flux|conflate|commingle|immix|fuse|coalesce|meld|combine|merge|change integrity (generic term)|mix up (related term)
+(verb)|desegregate|integrate|segregate (antonym)
+(verb)|mingle|commix|unify|amalgamate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|compound (generic term)|combine (generic term)
+(verb)|mix in|add (generic term)
+(verb)|shuffle|ruffle|manipulate (generic term)
+mix-up|1
+(noun)|confusion|mistake (generic term)|error (generic term)|fault (generic term)
+mix in|2
+(verb)|blend in|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|mix|add (generic term)
+mix up|2
+(verb)|jumble|confuse|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+(verb)|stump|perplex (generic term)|vex (generic term)|stick (generic term)|get (generic term)|puzzle (generic term)|mystify (generic term)|baffle (generic term)|beat (generic term)|pose (generic term)|bewilder (generic term)|flummox (generic term)|stupefy (generic term)|nonplus (generic term)|gravel (generic term)|amaze (generic term)|dumbfound (generic term)
+mixable|1
+(adj)|miscible|compatible (similar term)|immiscible (antonym)
+mixed|3
+(adj)|amalgamated|intermingled|integrated|blended (similar term)
+(adj)|assorted|miscellaneous|motley|sundry|heterogeneous (similar term)|heterogenous (similar term)
+(adj)|interracial|integrated (similar term)
+mixed-blood|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|thoroughbred (antonym)
+mixed-up|1
+(adj)|baffled|befuddled|bemused|bewildered|confounded|confused|lost|mazed|at sea|perplexed (similar term)
+mixed bag|1
+(noun)|assortment|mixture|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+mixed bud|1
+(noun)|bud (generic term)
+mixed drink|1
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+mixed economy|1
+(noun)|economy (generic term)|economic system (generic term)
+mixed farming|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+mixed marriage|1
+(noun)|marriage (generic term)|married couple (generic term)|man and wife (generic term)
+mixed metaphor|1
+(noun)|metaphor (generic term)
+mixed nuisance|1
+(noun)|nuisance (generic term)
+mixer|4
+(noun)|sociable|social|party (generic term)
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|electronic equipment (generic term)
+(noun)|kitchen utensil (generic term)
+mixing|1
+(noun)|mix|commixture|admixture|mixture|intermixture|combination (generic term)|combining (generic term)|compounding (generic term)
+mixing bowl|1
+(noun)|bowl (generic term)
+mixing faucet|1
+(noun)|faucet (generic term)|spigot (generic term)
+mixologist|1
+(noun)|bartender|barman|barkeep|barkeeper|employee (generic term)
+mixology|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+mixture|5
+(noun)|substance (generic term)|matter (generic term)
+(noun)|concoction|intermixture|foodstuff (generic term)|food product (generic term)
+(noun)|assortment|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|mix|combining (generic term)|combine (generic term)
+(noun)|mix|commixture|admixture|intermixture|mixing|combination (generic term)|combining (generic term)|compounding (generic term)
+mizen|2
+(noun)|mizzenmast|mizenmast|mizzen|mast (generic term)
+(noun)|mizzen|fore-and-aft sail (generic term)
+mizenmast|1
+(noun)|mizzenmast|mizzen|mizen|mast (generic term)
+mizzen|2
+(noun)|mizzenmast|mizenmast|mizen|mast (generic term)
+(noun)|mizen|fore-and-aft sail (generic term)
+mizzen course|1
+(noun)|crossjack|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+mizzenmast|1
+(noun)|mizenmast|mizzen|mizen|mast (generic term)
+mizzle|2
+(noun)|drizzle|rain (generic term)|rainfall (generic term)
+(verb)|drizzle|rain (generic term)|rain down (generic term)
+mko|1
+(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ml|1
+(noun)|milliliter|millilitre|mil|cubic centimeter|cubic centimetre|cc|metric capacity unit (generic term)
+mlitt|1
+(noun)|Master of Literature|MLitt|master's degree (generic term)
+mls|1
+(noun)|Master of Library Science|MLS|master's degree (generic term)
+mm|1
+(noun)|millimeter|millimetre|metric linear unit (generic term)
+mm hg|1
+(noun)|torr|millimeter of mercury|mm Hg|pressure unit (generic term)
+mmpi|1
+(noun)|Minnesota Multiphasic Personality Inventory|MMPI|self-report personality inventory (generic term)|self-report inventory (generic term)
+mn|2
+(noun)|manganese|Mn|atomic number 25|metallic element (generic term)|metal (generic term)
+(noun)|Minnesota|Gopher State|North Star State|MN|American state (generic term)
+mnemonic|2
+(adj)|mnemotechnic|mnemotechnical|method (related term)
+(noun)|device (generic term)|gimmick (generic term)|twist (generic term)
+mnemonics|1
+(noun)|method (generic term)
+mnemonist|1
+(noun)|expert (generic term)
+mnemosyne|1
+(noun)|Mnemosyne|Titaness (generic term)
+mnemotechnic|1
+(adj)|mnemonic|mnemotechnical|method (related term)
+mnemotechnical|1
+(adj)|mnemonic|mnemotechnic|method (related term)
+mniaceae|1
+(noun)|Mniaceae|family Mniaceae|moss family (generic term)
+mnium|1
+(noun)|Mnium|genus Mnium|moss genus (generic term)
+mo|2
+(noun)|molybdenum|Mo|atomic number 42|metallic element (generic term)|metal (generic term)
+(noun)|Missouri|Show Me State|MO|American state (generic term)
+moa|1
+(noun)|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+moan|2
+(noun)|groan|utterance (generic term)|vocalization (generic term)
+(verb)|groan|sough|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+moaner|1
+(noun)|whiner|complainer|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+moaning|1
+(adj)|groaning|inarticulate (similar term)|unarticulate (similar term)
+moat|1
+(noun)|fosse|trench (generic term)
+moated|1
+(adj)|protected (similar term)|secure (similar term)
+mob|4
+(noun)|rabble|rout|crowd (generic term)
+(noun)|syndicate|crime syndicate|family|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+(noun)|gang|pack|ring|association (generic term)
+(verb)|throng|pack|pile|jam|crowd (generic term)|crowd together (generic term)
+moban|1
+(noun)|molindone|Moban|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+mobbish|1
+(adj)|moblike|disorderly (similar term)
+mobcap|1
+(noun)|cap (generic term)
+mobile|8
+(adj)|airborne (similar term)|ambulant (similar term)|ambulatory (similar term)|floating (similar term)|flying (similar term)|maneuverable (similar term)|manoeuvrable (similar term)|mechanized (similar term)|mechanised (similar term)|motorized (similar term)|motile (similar term)|movable (similar term)|moveable (similar term)|transferable (similar term)|transferrable (similar term)|transportable (similar term)|perambulating (similar term)|racy (similar term)|raisable (similar term)|raiseable (similar term)|rangy (similar term)|rotatable (similar term)|seaborne (similar term)|transplantable (similar term)|versatile (similar term)|waterborne (similar term)|moving (related term)|immobile (antonym)
+(adj)|nomadic|peregrine|roving|wandering|unsettled (similar term)
+(adj)|moving (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+(adj)|fluid|changeable (similar term)|changeful (similar term)
+(noun)|Mobile|Mobile River|river (generic term)
+(noun)|Mobile|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|sculpture (generic term)|stabile (antonym)
+mobile bay|1
+(noun)|Mobile Bay|bay (generic term)|embayment (generic term)
+mobile canteen|1
+(noun)|canteen|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+mobile home|1
+(noun)|manufactured home|trailer (generic term)|house trailer (generic term)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+mobile phone|1
+(noun)|cellular telephone|cellular phone|cellphone|cell|radiotelephone (generic term)|radiophone (generic term)|wireless telephone (generic term)
+mobile river|1
+(noun)|Mobile|Mobile River|river (generic term)
+mobilisation|2
+(noun)|mobilization|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+(noun)|mobilization|militarization|militarisation|social control (generic term)|demobilization (antonym)
+mobilise|4
+(verb)|call up|mobilize|rally|call (generic term)|send for (generic term)|demobilize (antonym)
+(verb)|mobilize|militarize (generic term)|militarise (generic term)|demobilise (antonym)|demobilize (antonym)
+(verb)|mobilize|marshal|summon|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|mobilize|circulate|move (generic term)|displace (generic term)
+mobility|1
+(noun)|quality (generic term)|immobility (antonym)
+mobilization|2
+(noun)|mobilisation|militarization|militarisation|social control (generic term)|demobilization (antonym)
+(noun)|mobilisation|assembly (generic term)|assemblage (generic term)|gathering (generic term)
+mobilize|4
+(verb)|mobilise|marshal|summon|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|call up|mobilise|rally|call (generic term)|send for (generic term)|demobilize (antonym)
+(verb)|mobilise|militarize (generic term)|militarise (generic term)|demobilise (antonym)|demobilize (antonym)
+(verb)|mobilise|circulate|move (generic term)|displace (generic term)
+mobius|1
+(noun)|Mobius|August F. Mobius|August Ferdinand Mobius|mathematician (generic term)
+mobius strip|1
+(noun)|Mobius strip|surface (generic term)
+moblike|1
+(adj)|mobbish|disorderly (similar term)
+mobocracy|1
+(noun)|ochlocracy|political system (generic term)|form of government (generic term)
+mobster|1
+(noun)|gangster|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+mobula|1
+(noun)|Mobula|genus Mobula|fish genus (generic term)
+mobula hypostoma|1
+(noun)|devil ray|Mobula hypostoma|manta (generic term)|manta ray (generic term)|devilfish (generic term)
+mobulidae|1
+(noun)|Mobulidae|family Mobulidae|fish family (generic term)
+mobuto lake|1
+(noun)|Lake Albert|Lake Albert Nyanza|Mobuto Lake|lake (generic term)
+mocambique|1
+(noun)|Mozambique|Republic of Mozambique|Mocambique|African country (generic term)|African nation (generic term)
+mocassin|1
+(noun)|moccasin|shoe (generic term)
+moccasin|1
+(noun)|mocassin|shoe (generic term)
+moccasin flower|1
+(noun)|nerveroot|Cypripedium acaule|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+mocha|3
+(noun)|leather (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|coffee (generic term)|java (generic term)
+mock|4
+(adj)|counterfeit (similar term)|imitative (similar term)
+(noun)|derision (generic term)|ridicule (generic term)
+(verb)|bemock|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|imitate (generic term)|copy (generic term)|simulate (generic term)
+mock-heroic|1
+(noun)|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+mock-up|1
+(noun)|model (generic term)|simulation (generic term)
+mock azalia|1
+(noun)|impala lily|desert rose|kudu lily|Adenium obesum|Adenium multiflorum|shrub (generic term)|bush (generic term)
+mock orange|4
+(noun)|syringa|Philadelphus coronarius|philadelphus (generic term)
+(noun)|southern buckthorn|shittimwood|shittim|Bumelia lycioides|buckthorn (generic term)
+(noun)|cherry laurel|laurel cherry|wild orange|Prunus caroliniana|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|osage orange|bow wood|Maclura pomifera|angiospermous yellowwood (generic term)
+mock privet|1
+(noun)|shrub (generic term)|bush (generic term)
+mock sun|1
+(noun)|parhelion|sundog|topographic point (generic term)|place (generic term)|spot (generic term)
+mock turtle soup|1
+(noun)|soup (generic term)
+mock up|1
+(verb)|model|represent (generic term)|interpret (generic term)
+mocker|2
+(noun)|scoffer|flouter|jeerer|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|mockingbird|Mimus polyglotktos|oscine (generic term)|oscine bird (generic term)
+mockernut|1
+(noun)|mockernut hickory|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+mockernut hickory|1
+(noun)|mockernut|black hickory|white-heart hickory|big-bud hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+mockery|3
+(noun)|jeer|jeering|scoff|scoffing|derision (generic term)
+(noun)|parody|lampoon|spoof|sendup|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(noun)|parody|takeoff|apery (generic term)|mimicry (generic term)
+mocking|2
+(adj)|derisive|gibelike|jeering|taunting|disrespectful (similar term)
+(adj)|teasing|quizzical|playful (similar term)
+mocking thrush|1
+(noun)|thrasher|oscine (generic term)|oscine bird (generic term)
+mockingbird|1
+(noun)|mocker|Mimus polyglotktos|oscine (generic term)|oscine bird (generic term)
+mockingly|2
+(adv)|jeeringly|gibingly
+(adv)|derisively|scoffingly|derisorily
+mod|2
+(adj)|modern|modernistic|fashionable (similar term)|stylish (similar term)
+(noun)|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+mod con|1
+(noun)|appliance (generic term)|contraption (generic term)|contrivance (generic term)|convenience (generic term)|gadget (generic term)|gizmo (generic term)|gismo (generic term)|widget (generic term)
+modal|4
+(adj)|average|normal (similar term)
+(adj)|diatonic scale (related term)
+(adj)|grammatical relation (related term)
+(noun)|modal auxiliary verb|modal auxiliary|auxiliary verb (generic term)
+modal auxiliary|1
+(noun)|modal auxiliary verb|modal|auxiliary verb (generic term)
+modal auxiliary verb|1
+(noun)|modal auxiliary|modal|auxiliary verb (generic term)
+modal logic|2
+(noun)|logic (generic term)
+(noun)|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+modal value|1
+(noun)|mode|average (generic term)|norm (generic term)
+modality|4
+(noun)|mode|logical relation (generic term)
+(noun)|mood|mode|grammatical relation (generic term)
+(noun)|sense modality|sensory system|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+(noun)|treatment (generic term)
+mode|6
+(noun)|manner|style|way|fashion|property (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|modality|logical relation (generic term)
+(noun)|mood|modality|grammatical relation (generic term)
+(noun)|musical mode|diatonic scale (generic term)
+(noun)|modal value|average (generic term)|norm (generic term)
+model|16
+(adj)|exemplary|worthy (similar term)
+(noun)|theoretical account|framework|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|poser|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|simulation|representation (generic term)
+(noun)|exemplar|example|good example|ideal (generic term)
+(noun)|role model|leader (generic term)
+(noun)|example|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|mannequin|manikin|mannikin|manakin|fashion model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|modelling|modeling|representation (generic term)
+(verb)|pattern|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|mold|mould|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|pose|sit|posture|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|simulate|re-create (generic term)
+(verb)|mock up|represent (generic term)|interpret (generic term)
+model t|1
+(noun)|Model T|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+modeled|1
+(adj)|sculptural|sculptured|sculpturesque|shapely (similar term)
+modeler|1
+(noun)|modeller|creator (generic term)
+modeling|3
+(noun)|mold|mould|molding|moulding|clay sculpture|sculpture (generic term)
+(noun)|modelling|molding|moulding|sculpture (generic term)|carving (generic term)
+(noun)|model|modelling|representation (generic term)
+modeller|1
+(noun)|modeler|creator (generic term)
+modelling|2
+(noun)|modeling|molding|moulding|sculpture (generic term)|carving (generic term)
+(noun)|model|modeling|representation (generic term)
+modem|1
+(noun)|electronic equipment (generic term)
+moderate|10
+(adj)|average (similar term)|intermediate (similar term)|medium (similar term)|cautious (similar term)|conservative (similar term)|fair (similar term)|fairish (similar term)|reasonable (similar term)|indifferent (similar term)|limited (similar term)|middle-of-the-road (similar term)|minimalist (similar term)|modest (similar term)|small (similar term)|mild (related term)|temperate (related term)|immoderate (antonym)
+(adj)|temperate|mild (similar term)
+(adj)|restrained|temperate (similar term)
+(noun)|centrist|middle of the roader|moderationist|adult (generic term)|grownup (generic term)
+(verb)|chair|lead|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|decelerate (generic term)|slow down (generic term)
+(verb)|control|hold in|hold|contain|check|curb|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|mince|soften|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tone down|tame|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|chasten|temper|change (generic term)|alter (generic term)|modify (generic term)
+moderate-size|1
+(adj)|medium-sized|medium-size|moderate-sized|sized (similar term)
+moderate-sized|1
+(adj)|medium-sized|medium-size|moderate-size|sized (similar term)
+moderate breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+moderate gale|1
+(noun)|near gale|gale (generic term)
+moderated|1
+(adj)|qualified|tempered (similar term)
+moderately|2
+(adv)|reasonably|within reason|somewhat|fairly|middling|passably|immoderately (antonym)|unreasonably (antonym)
+(adv)|with moderation|immoderately (antonym)
+moderateness|2
+(noun)|reasonableness|modestness|inexpensiveness (generic term)
+(noun)|moderation|degree (generic term)|grade (generic term)|level (generic term)|immoderation (antonym)
+moderating|1
+(adj)|alleviative (similar term)|alleviatory (similar term)|lenitive (similar term)|mitigative (similar term)|mitigatory (similar term)|palliative (similar term)|analgesic (similar term)|analgetic (similar term)|anodyne (similar term)|tempering (similar term)|weakening (similar term)|intensifying (antonym)
+moderation|4
+(noun)|moderateness|degree (generic term)|grade (generic term)|level (generic term)|immoderation (antonym)
+(noun)|easing|relief|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|temperance|restraint (generic term)|control (generic term)|natural virtue (generic term)|intemperance (antonym)
+(noun)|mitigation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+moderationism|1
+(noun)|policy (generic term)
+moderationist|2
+(noun)|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|centrist|middle of the roader|moderate|adult (generic term)|grownup (generic term)
+moderatism|1
+(noun)|centrism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+moderato|1
+(adj)|slow (similar term)
+moderator|3
+(noun)|inhibitor (generic term)
+(noun)|presiding officer (generic term)
+(noun)|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+moderatorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+modern|7
+(adj)|contemporary (similar term)|modern-day (similar term)|neo (similar term)|recent (similar term)|red-brick (similar term)|redbrick (similar term)|ultramodern (similar term)|moderne (similar term)|current (related term)|late (related term)|new (related term)|nonmodern (antonym)
+(adj)|mod|modernistic|fashionable (similar term)|stylish (similar term)
+(adj)|nonclassical (similar term)
+(adj)|advanced|forward-looking|innovative|progressive (similar term)
+(adj)|Modern|New|late (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|modern font|Bodoni|Bodoni font|proportional font (generic term)|old style (antonym)
+modern-day|1
+(adj)|contemporary|modern (similar term)
+modern ballet|1
+(noun)|ballet (generic term)|concert dance (generic term)
+modern dance|1
+(noun)|stage dancing (generic term)|choreography (generic term)
+modern english|1
+(noun)|Modern English|English (generic term)|English language (generic term)
+modern era|1
+(noun)|era (generic term)|epoch (generic term)
+modern font|1
+(noun)|modern|Bodoni|Bodoni font|proportional font (generic term)|old style (antonym)
+modern greek|1
+(noun)|Modern Greek|New Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+modern hebrew|1
+(noun)|Modern Hebrew|Hebrew (generic term)
+modern jazz|1
+(noun)|new jazz|neo jazz|jazz (generic term)
+modern man|1
+(noun)|Homo sapiens sapiens|Homo sapiens (generic term)
+modern times|1
+(noun)|present times|modern world|contemporary world|times (generic term)
+modern world|1
+(noun)|modern times|present times|contemporary world|times (generic term)
+moderne|1
+(adj)|modern (similar term)
+modernisation|1
+(noun)|modernization|improvement (generic term)
+modernise|2
+(verb)|modernize|develop|change (generic term)
+(verb)|overhaul|modernize|regenerate (generic term)|renew (generic term)
+modernised|1
+(adj)|modernized|progressive (similar term)
+modernism|3
+(noun)|genre (generic term)
+(noun)|modernity|modernness|contemporaneity|contemporaneousness|currentness (generic term)|currency (generic term)|up-to-dateness (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+modernist|1
+(noun)|artist (generic term)|creative person (generic term)
+modernistic|1
+(adj)|mod|modern|fashionable (similar term)|stylish (similar term)
+modernity|1
+(noun)|modernness|modernism|contemporaneity|contemporaneousness|currentness (generic term)|currency (generic term)|up-to-dateness (generic term)
+modernization|2
+(noun)|modernisation|improvement (generic term)
+(noun)|adaptation (generic term)|version (generic term)
+modernize|2
+(verb)|overhaul|modernise|regenerate (generic term)|renew (generic term)
+(verb)|modernise|develop|change (generic term)
+modernized|1
+(adj)|modernised|progressive (similar term)
+modernness|1
+(noun)|modernity|modernism|contemporaneity|contemporaneousness|currentness (generic term)|currency (generic term)|up-to-dateness (generic term)
+modest|8
+(adj)|retiring (similar term)|unassuming (similar term)|humble (related term)|immodest (antonym)
+(adj)|small|moderate (similar term)
+(adj)|unpretentious (similar term)
+(adj)|coy (similar term)|demure (similar term)|overmodest (similar term)|decent (similar term)|decent (similar term)|shamefaced (similar term)|decent (related term)|immodest (antonym)
+(adj)|humble|low|lowly|small|inferior (similar term)
+(adj)|meek|mild|humble (similar term)
+(adj)|minor|small|small-scale|pocket-size|pocket-sized|limited (similar term)
+(adj)|restrained|unostentatious|discreet (similar term)
+modest moussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+modest mussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+modest petrovich moussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+modest petrovich mussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+modestly|1
+(adv)|with modesty|immodestly (antonym)
+modestness|2
+(noun)|reasonableness|moderateness|inexpensiveness (generic term)
+(noun)|modesty|decency (generic term)|immodesty (antonym)
+modesty|2
+(noun)|modestness|decency (generic term)|immodesty (antonym)
+(noun)|reserve|propriety (generic term)|properness (generic term)|correctitude (generic term)
+modicon|1
+(noun)|Modicon|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+modicum|1
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+modifiable|1
+(adj)|unmodifiable (antonym)
+modification|4
+(noun)|alteration|adjustment|change (generic term)
+(noun)|copy (generic term)
+(noun)|qualifying|limiting|grammatical relation (generic term)
+(noun)|change|alteration|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+modified|2
+(adj)|adapted (similar term)|altered (similar term)|restricted (similar term)|qualified (similar term)|qualified (related term)|varied (related term)|unmodified (antonym)
+(adj)|limited|qualified (similar term)
+modified american plan|1
+(noun)|modified American plan|American plan (generic term)
+modified radical mastectomy|1
+(noun)|mastectomy (generic term)
+modifier|4
+(noun)|qualifier|content word (generic term)|open-class word (generic term)
+(noun)|moderator (generic term)
+(noun)|changer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|modifier gene|gene (generic term)|cistron (generic term)|factor (generic term)
+modifier gene|1
+(noun)|modifier|gene (generic term)|cistron (generic term)|factor (generic term)
+modify|3
+(verb)|change (generic term)
+(verb)|qualify|add (generic term)
+(verb)|change|alter
+modigliani|1
+(noun)|Modigliani|Amedeo Modigliano|painter (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+modillion|1
+(noun)|bracket (generic term)
+modiolus|1
+(noun)|bone (generic term)|os (generic term)
+modish|1
+(adj)|latest|a la mode|in style|in vogue|fashionable (similar term)|stylish (similar term)
+modishly|1
+(adv)|smartly|sprucely
+modishness|1
+(noun)|chic|chicness|chichi|smartness|stylishness|swank|last word|elegance (generic term)
+modiste|2
+(noun)|hatmaker|hatter|milliner|maker (generic term)|shaper (generic term)|merchant (generic term)|merchandiser (generic term)
+(noun)|dressmaker|needlewoman|seamstress|sempstress|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+mods|1
+(noun)|youth subculture (generic term)
+modular|1
+(adj)|standard (similar term)
+modulate|5
+(verb)|play (generic term)|spiel (generic term)
+(verb)|tone|inflect|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|regulate|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)
+modulated|2
+(adj)|softened (similar term)|unmodulated (antonym)
+(adj)|inflected (similar term)
+modulation|5
+(noun)|transition|passage (generic term)|musical passage (generic term)
+(noun)|transmission (generic term)
+(noun)|intonation|pitch contour|prosody (generic term)|inflection (generic term)
+(noun)|inflection|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|revision (generic term)|alteration (generic term)
+module|4
+(noun)|faculty|mental faculty|ability (generic term)|power (generic term)
+(noun)|compartment (generic term)
+(noun)|computer circuit (generic term)
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+modulus|3
+(noun)|integer (generic term)|whole number (generic term)
+(noun)|absolute value (generic term)
+(noun)|coefficient (generic term)
+modulus of elasticity|1
+(noun)|coefficient of elasticity|elastic modulus|modulus (generic term)
+modulus of rigidity|1
+(noun)|coefficient of elasticity (generic term)|modulus of elasticity (generic term)|elastic modulus (generic term)
+modus operandi|1
+(noun)|routine|procedure (generic term)|process (generic term)
+modus vivendi|2
+(noun)|accommodation (generic term)
+(noun)|life style|life-style|lifestyle|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+moehringia|1
+(noun)|Moehringia|genus Moehringia|caryophylloid dicot genus (generic term)
+moehringia lateriflora|1
+(noun)|sandwort|Moehringia lateriflora|flower (generic term)
+moehringia mucosa|1
+(noun)|sandwort|Moehringia mucosa|flower (generic term)
+moeller's glossitis|1
+(noun)|Moeller's glossitis|glossodynia exfoliativa|glossitis (generic term)
+mogadiscio|1
+(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital (generic term)|port (generic term)
+mogadishu|1
+(noun)|Mogadishu|Mogadiscio|capital of Somalia|national capital (generic term)|port (generic term)
+mogdad coffee|1
+(noun)|coffee senna|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+mogen david|1
+(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem (generic term)|allegory (generic term)|hexagram (generic term)
+moghul|1
+(noun)|Mogul|Moghul|ruler (generic term)|swayer (generic term)
+mogul|3
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|Mogul|Moghul|ruler (generic term)|swayer (generic term)
+(noun)|baron|big businessman|business leader|king|magnate|power|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+mogul empire|1
+(noun)|Mogul empire|empire (generic term)
+mohair|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+mohammad|1
+(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet (generic term)
+mohammed|1
+(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet (generic term)
+mohammed ali|1
+(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier (generic term)
+mohammed reza pahlavi|1
+(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Pahlavi|Pahlevi|Mohammed Reza Pahlevi|Shah (generic term)|Shah of Iran (generic term)
+mohammed reza pahlevi|1
+(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Pahlavi|Pahlevi|Mohammed Reza Pahlevi|Shah (generic term)|Shah of Iran (generic term)
+mohammedan|2
+(adj)|Muhammadan|Mohammedan|prophet (related term)
+(noun)|Mohammedan|Muhammedan|Muhammadan|follower (generic term)
+mohammedan calendar|1
+(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar (generic term)
+mohammedanism|1
+(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism (generic term)
+mohandas karamchand gandhi|1
+(noun)|Gandhi|Mahatma Gandhi|Mohandas Karamchand Gandhi|nationalist leader (generic term)|spiritual leader (generic term)
+moharram|1
+(noun)|Muharram|Moharram|Muharrum|Islamic calendar month (generic term)
+mohave|3
+(noun)|Mohave|Mojave|Hokan (generic term)|Hoka (generic term)
+(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert (generic term)
+(noun)|Mohave|Mojave|Yuman (generic term)
+mohave desert|1
+(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert (generic term)
+mohawk|2
+(noun)|Mohawk|Iroquois (generic term)
+(noun)|Mohawk|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+mohawk river|1
+(noun)|Mohawk River|river (generic term)
+mohican|3
+(noun)|Mohican|Mahican|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Mohican|Mahican|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+(noun)|Mohican|Mohican haircut|haircut (generic term)
+mohican haircut|1
+(noun)|Mohican|Mohican haircut|haircut (generic term)
+moho|1
+(noun)|Mohorovicic discontinuity|Moho|boundary (generic term)|bound (generic term)|bounds (generic term)
+mohorovicic|1
+(noun)|Mohorovicic|Andrija Mohorovicic|geophysicist (generic term)
+mohorovicic discontinuity|1
+(noun)|Mohorovicic discontinuity|Moho|boundary (generic term)|bound (generic term)|bounds (generic term)
+mohria|1
+(noun)|Mohria|genus Mohria|fern genus (generic term)
+mohria caffrorum|1
+(noun)|scented fern|Mohria caffrorum|fern (generic term)
+mohs scale|1
+(noun)|Mohs scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+moiety|2
+(noun)|mediety|one-half (generic term)|half (generic term)
+(noun)|social group (generic term)
+moil|3
+(verb)|labor|labour|toil|fag|travail|grind|drudge|dig|work (generic term)|do work (generic term)
+(verb)|churn|boil|roil|move (generic term)
+(verb)|smear (generic term)
+moira shearer|1
+(noun)|Shearer|Moira Shearer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+moirae|1
+(noun)|Moirai|Moirae|Greek deity (generic term)
+moirai|1
+(noun)|Moirai|Moirae|Greek deity (generic term)
+moire|2
+(adj)|watered|patterned (similar term)
+(noun)|watered-silk|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+moist|1
+(adj)|damp|dampish|wet (similar term)
+moisten|2
+(verb)|wash|dampen|wet (generic term)
+(verb)|drizzle|sprinkle (generic term)|splash (generic term)|splosh (generic term)
+moistener|1
+(noun)|dampener|device (generic term)
+moistening|1
+(noun)|dampening|wetting (generic term)
+moistly|1
+(adv)|damply
+moistness|1
+(noun)|damp|dampness|wetness (generic term)
+moisture|1
+(noun)|wet|wetness (generic term)
+moisturise|1
+(verb)|humidify|moisturize|moisten (generic term)|wash (generic term)|dampen (generic term)|dehumidify (antonym)
+moisturize|1
+(verb)|humidify|moisturise|moisten (generic term)|wash (generic term)|dampen (generic term)|dehumidify (antonym)
+mojarra|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+mojave|3
+(noun)|Mohave|Mojave|Hokan (generic term)|Hoka (generic term)
+(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert (generic term)
+(noun)|Mohave|Mojave|Yuman (generic term)
+mojave aster|1
+(noun)|Mojave aster|Machaeranthera tortifoloia|wildflower (generic term)|wild flower (generic term)
+mojave desert|1
+(noun)|Mojave|Mojave Desert|Mohave|Mohave Desert|desert (generic term)
+mojave rattlesnake|1
+(noun)|Mojave rattlesnake|Crotalus scutulatus|rattlesnake (generic term)|rattler (generic term)
+mojo|1
+(noun)|magic (generic term)|thaumaturgy (generic term)
+moke|1
+(noun)|domestic ass (generic term)|donkey (generic term)|Equus asinus (generic term)
+moksa|1
+(noun)|cycle of rebirth (generic term)
+mokulu|1
+(noun)|Mokulu|East Chadic (generic term)
+mol|1
+(noun)|gram molecule|mole|metric weight unit (generic term)|weight unit (generic term)
+mola|1
+(noun)|ocean sunfish|sunfish|headfish|plectognath (generic term)|plectognath fish (generic term)
+mola lanceolata|1
+(noun)|sharptail mola|Mola lanceolata|ocean sunfish (generic term)|sunfish (generic term)|mola (generic term)|headfish (generic term)
+molal|1
+(adj)|metric weight unit|weight unit (related term)
+molal concentration|1
+(noun)|molality|concentration (generic term)
+molality|1
+(noun)|molal concentration|concentration (generic term)
+molar|4
+(adj)|tooth (related term)
+(adj)|metric weight unit|weight unit (related term)
+(adj)|molecular (antonym)
+(noun)|grinder|tooth (generic term)
+molar concentration|1
+(noun)|molarity|M|concentration (generic term)
+molar pregnancy|1
+(noun)|hydatid mole|hydatidiform mole|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+molarity|1
+(noun)|molar concentration|M|concentration (generic term)
+molasses|1
+(noun)|syrup (generic term)|sirup (generic term)
+molasses cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+molasses kiss|1
+(noun)|kiss (generic term)|candy kiss (generic term)
+molasses taffy|1
+(noun)|taffy (generic term)
+mold|12
+(noun)|cast|stamp|solid (generic term)
+(noun)|mould|cast|container (generic term)
+(noun)|mould|soil (generic term)|dirt (generic term)
+(noun)|mildew|spoilage (generic term)|spoiling (generic term)
+(noun)|mould|fungus (generic term)
+(noun)|mould|molding|moulding|modeling|clay sculpture|sculpture (generic term)
+(verb)|model|mould|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|mildew|change (generic term)
+(verb)|cast|mould|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|shape|form|work|mould|forge|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|cling (generic term)|cleave (generic term)|adhere (generic term)|stick (generic term)|cohere (generic term)
+(verb)|determine|shape|influence|regulate|cause (generic term)|do (generic term)|make (generic term)
+moldable|1
+(adj)|fictile|plastic|elastic (similar term)
+moldavia|1
+(noun)|Moldova|Republic of Moldova|Moldavia|European country (generic term)|European nation (generic term)
+moldboard|1
+(noun)|mouldboard|wedge (generic term)
+moldboard plow|1
+(noun)|mouldboard plough|plow (generic term)|plough (generic term)
+molded|1
+(adj)|shaped|wrought|formed (similar term)
+molded salad|1
+(noun)|salad (generic term)
+molder|1
+(verb)|decompose|rot|moulder|decay (generic term)
+moldiness|1
+(noun)|mustiness|must|staleness (generic term)
+molding|5
+(noun)|casting|creating from raw materials (generic term)
+(noun)|moulding|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|moulding|border|edge (generic term)|margin (generic term)
+(noun)|mold|mould|moulding|modeling|clay sculpture|sculpture (generic term)
+(noun)|modeling|modelling|moulding|sculpture (generic term)|carving (generic term)
+moldova|1
+(noun)|Moldova|Republic of Moldova|Moldavia|European country (generic term)|European nation (generic term)
+moldovan|1
+(adj)|Moldovan|European country|European nation (related term)
+moldovan monetary unit|1
+(noun)|Moldovan monetary unit|monetary unit (generic term)
+moldy|1
+(adj)|mouldy|musty|stale (similar term)
+mole|6
+(noun)|gram molecule|mol|metric weight unit (generic term)|weight unit (generic term)
+(noun)|counterspy|spy (generic term)|undercover agent (generic term)
+(noun)|sauce (generic term)
+(noun)|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|breakwater|groin|groyne|bulwark|seawall|jetty|barrier (generic term)
+(noun)|insectivore (generic term)
+mole cricket|1
+(noun)|cricket (generic term)
+mole plant|2
+(noun)|Japanese poinsettia|paint leaf|Euphorbia heterophylla|spurge (generic term)
+(noun)|caper spurge|myrtle spurge|Euphorbia lathyris|spurge (generic term)
+mole rat|2
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|bandicoot rat|rat (generic term)
+mole salamander|1
+(noun)|Ambystoma talpoideum|ambystomid (generic term)|ambystomid salamander (generic term)
+molech|1
+(noun)|Moloch|Molech|Semitic deity (generic term)
+molecular|2
+(adj)|unit|building block (related term)
+(adj)|molar (antonym)
+molecular biologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+molecular biology|1
+(noun)|biology (generic term)|biological science (generic term)
+molecular formula|1
+(noun)|formula (generic term)|chemical formula (generic term)
+molecular genetics|1
+(noun)|genetics (generic term)|genetic science (generic term)
+molecular weight|1
+(noun)|relative molecular mass|mass (generic term)
+molecule|2
+(noun)|unit (generic term)|building block (generic term)
+(noun)|atom|particle|corpuscle|mote|speck|material (generic term)|stuff (generic term)
+molehill|1
+(noun)|knoll (generic term)|mound (generic term)|hillock (generic term)|hummock (generic term)|hammock (generic term)
+moleskin|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+molest|2
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+molestation|2
+(noun)|sexual assault (generic term)|sexual abuse (generic term)|sex crime (generic term)|sex offense (generic term)
+(noun)|harassment|mistreatment (generic term)
+molester|1
+(noun)|wrongdoer (generic term)|offender (generic term)
+molidae|1
+(noun)|Molidae|family Molidae|fish family (generic term)
+moliere|1
+(noun)|Moliere|Jean-Baptiste Poquelin|dramatist (generic term)|playwright (generic term)
+molindone|1
+(noun)|Moban|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+moline|1
+(noun)|Moline|town (generic term)
+molisch's test|1
+(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator (generic term)
+molisch reaction|1
+(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator (generic term)
+molisch test|1
+(noun)|alpha-naphthol test|Molisch's test|Molisch test|Molisch reaction|indicator (generic term)
+molise|1
+(noun)|Molise|Italian region (generic term)
+moll|1
+(noun)|gun moll|gangster's moll|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+mollah|1
+(noun)|Mullah|Mollah|Mulla|Muslim (generic term)|Moslem (generic term)
+molle|1
+(noun)|pepper tree|Peruvian mastic tree|Schinus molle|tree (generic term)
+mollie|1
+(noun)|molly|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+mollienesia|1
+(noun)|Mollienesia|genus Mollienesia|fish genus (generic term)
+mollification|2
+(noun)|peaceableness (generic term)|peacefulness (generic term)
+(noun)|pacification|appeasement (generic term)|calming (generic term)
+mollify|3
+(verb)|pacify|lenify|conciliate|assuage|appease|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|temper|season|weaken (generic term)
+(verb)|soften (generic term)
+molluga|1
+(noun)|Molluga|genus Molluga|caryophylloid dicot genus (generic term)
+molluga verticillata|1
+(noun)|carpetweed|Indian chickweed|Molluga verticillata|weed (generic term)
+mollusc|1
+(noun)|mollusk|shellfish|invertebrate (generic term)
+mollusca|1
+(noun)|Mollusca|phylum Mollusca|phylum (generic term)
+molluscum|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+molluscum contagiosum|1
+(noun)|molluscum (generic term)
+mollusk|1
+(noun)|mollusc|shellfish|invertebrate (generic term)
+mollusk family|1
+(noun)|family (generic term)
+mollusk genus|1
+(noun)|genus (generic term)
+molly|1
+(noun)|mollie|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+molly miller|1
+(noun)|Molly Miller|Scartella cristata|blenny (generic term)|combtooth blenny (generic term)
+molly pitcher|1
+(noun)|McCauley|Mary McCauley|Mary Ludwig Hays McCauley|Molly Pitcher|heroine (generic term)
+mollycoddle|2
+(noun)|darling (generic term)|favorite (generic term)|favourite (generic term)|pet (generic term)|dearie (generic term)|deary (generic term)|ducky (generic term)
+(verb)|pamper|featherbed|cosset|cocker|baby|coddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+mollycoddler|1
+(noun)|pamperer|spoiler|coddler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+mollymawk|1
+(noun)|albatross|pelagic bird (generic term)|oceanic bird (generic term)
+molnar|1
+(noun)|Molnar|Ferenc Molnar|dramatist (generic term)|playwright (generic term)
+moloch|3
+(noun)|Moloch|power (generic term)|force (generic term)
+(noun)|Moloch|Molech|Semitic deity (generic term)
+(noun)|agamid (generic term)|agamid lizard (generic term)
+moloch horridus|1
+(noun)|mountain devil|spiny lizard|Moloch horridus|moloch (generic term)
+molokai|1
+(noun)|Molokai|Molokai Island|island (generic term)
+molokai island|1
+(noun)|Molokai|Molokai Island|island (generic term)
+molossidae|1
+(noun)|Molossidae|family Molossidae|mammal family (generic term)
+molothrus|1
+(noun)|Molothrus|genus Molothrus|bird genus (generic term)
+molotov|2
+(noun)|Molotov|Vyacheslav Mikhailovich Molotov|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Perm|Molotov|city (generic term)|metropolis (generic term)|urban center (generic term)
+molotov cocktail|1
+(noun)|Molotov cocktail|petrol bomb|gasoline bomb|improvised explosive device (generic term)|I.E.D. (generic term)|IED (generic term)
+molt|2
+(noun)|molting|moult|moulting|ecdysis|shedding (generic term)|sloughing (generic term)
+(verb)|shed|exuviate|moult|slough|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+molten|1
+(adj)|liquefied|liquified|melted (similar term)|liquid (similar term)|liquified (similar term)
+molter|1
+(noun)|moulter|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+molting|1
+(noun)|molt|moult|moulting|ecdysis|shedding (generic term)|sloughing (generic term)
+molucca balm|1
+(noun)|bells of Ireland|Molucella laevis|herb (generic term)|herbaceous plant (generic term)
+moluccas|1
+(noun)|Moluccas|Spice Islands|island (generic term)
+molucella|1
+(noun)|Molucella|genus Molucella|asterid dicot genus (generic term)
+molucella laevis|1
+(noun)|molucca balm|bells of Ireland|Molucella laevis|herb (generic term)|herbaceous plant (generic term)
+molva|1
+(noun)|Molva|genus Molva|fish genus (generic term)
+molva molva|1
+(noun)|ling|Molva molva|gadoid (generic term)|gadoid fish (generic term)
+molybdenite|1
+(noun)|mineral (generic term)
+molybdenum|1
+(noun)|Mo|atomic number 42|metallic element (generic term)|metal (generic term)
+molybdenum steel|1
+(noun)|alloy steel (generic term)
+mom|1
+(noun)|ma|mama|mamma|momma|mommy|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+mombasa|1
+(noun)|Mombasa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+mombin|2
+(noun)|mombin tree|jocote|Spondias purpurea|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+mombin tree|1
+(noun)|mombin|jocote|Spondias purpurea|fruit tree (generic term)
+moment|6
+(noun)|minute|second|instant|point (generic term)|point in time (generic term)
+(noun)|minute|second|bit|time (generic term)
+(noun)|here and now|present moment|present (generic term)|nowadays (generic term)
+(noun)|consequence|import|significance (generic term)|inconsequence (antonym)
+(noun)|force (generic term)
+(noun)|statistic (generic term)
+moment of a couple|1
+(noun)|moment (generic term)
+moment of a magnet|1
+(noun)|magnetic moment|torsion (generic term)|torque (generic term)
+moment of inertia|1
+(noun)|inertia (generic term)|moment (generic term)
+moment of truth|1
+(noun)|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+momentaneous|1
+(adj)|fleeting|fugitive|momentary|short (similar term)
+momentarily|2
+(adv)|momently
+(adv)|in a moment|momently
+momentary|1
+(adj)|fleeting|fugitive|momentaneous|short (similar term)
+momently|2
+(adv)|momentarily
+(adv)|momentarily|in a moment
+momentous|1
+(adj)|significant (similar term)|important (similar term)
+momentousness|1
+(noun)|importance (generic term)
+momentum|2
+(noun)|impulse|force (generic term)|forcefulness (generic term)|strength (generic term)
+(noun)|physical property (generic term)
+momism|1
+(noun)|overprotection|overshielding|protection (generic term)
+momma|1
+(noun)|ma|mama|mamma|mom|mommy|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+mommsen|1
+(noun)|Mommsen|Theodor Mommsen|historian (generic term)|historiographer (generic term)
+mommy|1
+(noun)|ma|mama|mamma|mom|momma|mammy|mum|mummy|mother (generic term)|female parent (generic term)
+momordica|1
+(noun)|Momordica|genus Momordica|dicot genus (generic term)|magnoliopsid genus (generic term)
+momordica balsamina|1
+(noun)|balsam apple|Momordica balsamina|gourd (generic term)|gourd vine (generic term)
+momordica charantia|1
+(noun)|balsam pear|Momordica charantia|gourd (generic term)|gourd vine (generic term)
+momos|1
+(noun)|Momus|Momos|Greek deity (generic term)
+momot|1
+(noun)|motmot|coraciiform bird (generic term)
+momotidae|1
+(noun)|Momotidae|family Momotidae|bird family (generic term)
+momotus|1
+(noun)|Momotus|genus Momotus|bird genus (generic term)
+momus|1
+(noun)|Momus|Momos|Greek deity (generic term)
+mon|3
+(noun)|Monday|Mon|weekday (generic term)
+(noun)|Mon|Buddhist (generic term)
+(noun)|Mon|Mon-Khmer (generic term)
+mon-khmer|1
+(noun)|Mon-Khmer|Austro-Asiatic (generic term)|Austro-Asiatic language (generic term)|Munda-Mon-Khmer (generic term)
+mona|1
+(noun)|Anglesey|Anglesey Island|Anglesea|Anglesea Island|Mona|island (generic term)
+monacan|2
+(adj)|Monacan|Monegasque|principality|princedom|European country|European nation (related term)
+(noun)|Monegasque|Monacan|European (generic term)
+monaco|1
+(noun)|Monaco|Principality of Monaco|principality (generic term)|princedom (generic term)|European country (generic term)|European nation (generic term)
+monaco-ville|1
+(noun)|Monaco-Ville|national capital (generic term)
+monad|3
+(noun)|atom (generic term)
+(noun)|monas|one (generic term)|1 (generic term)|I (generic term)|ace (generic term)|single (generic term)|unity (generic term)
+(noun)|microorganism (generic term)|micro-organism (generic term)
+monadic operation|1
+(noun)|unary operation|operation (generic term)
+monal|1
+(noun)|monaul|pheasant (generic term)
+monandrous|1
+(adj)|monogamous (similar term)
+monandry|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+monarch|2
+(noun)|sovereign|crowned head|ruler (generic term)|swayer (generic term)|head of state (generic term)|chief of state (generic term)
+(noun)|monarch butterfly|milkweed butterfly|Danaus plexippus|danaid (generic term)|danaid butterfly (generic term)
+monarch butterfly|1
+(noun)|monarch|milkweed butterfly|Danaus plexippus|danaid (generic term)|danaid butterfly (generic term)
+monarchal|2
+(adj)|monarchical|noble (similar term)
+(adj)|monarchical|monarchic|undemocratic (similar term)
+monarchic|1
+(adj)|monarchal|monarchical|undemocratic (similar term)
+monarchical|2
+(adj)|monarchal|noble (similar term)
+(adj)|monarchal|monarchic|undemocratic (similar term)
+monarchism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+monarchist|1
+(noun)|royalist|rightist (generic term)|right-winger (generic term)
+monarchy|1
+(noun)|autocracy (generic term)|autarchy (generic term)
+monarda|1
+(noun)|wild bergamot|herb (generic term)|herbaceous plant (generic term)
+monarda citriodora|1
+(noun)|lemon mint|horsemint|Monarda citriodora|monarda (generic term)|wild bergamot (generic term)
+monarda clinopodia|1
+(noun)|basil balm|Monarda clinopodia|monarda (generic term)|wild bergamot (generic term)
+monarda didyma|1
+(noun)|bee balm|beebalm|bergamot mint|oswego tea|Monarda didyma|monarda (generic term)|wild bergamot (generic term)
+monarda fistulosa|1
+(noun)|bee balm|beebalm|Monarda fistulosa|monarda (generic term)|wild bergamot (generic term)
+monarda pectinata|1
+(noun)|plains lemon monarda|Monarda pectinata|monarda (generic term)|wild bergamot (generic term)
+monarda punctata|1
+(noun)|horsemint|Monarda punctata|monarda (generic term)|wild bergamot (generic term)
+monardella|1
+(noun)|Monardella|genus Monardella|dicot genus (generic term)|magnoliopsid genus (generic term)
+monardella lanceolata|1
+(noun)|mustang mint|Monardella lanceolata|herb (generic term)|herbaceous plant (generic term)
+monario|1
+(noun)|Monario|artificial language (generic term)
+monas|1
+(noun)|monad|one (generic term)|1 (generic term)|I (generic term)|ace (generic term)|single (generic term)|unity (generic term)
+monastery|1
+(noun)|religious residence (generic term)|cloister (generic term)
+monastic|2
+(adj)|cloistered|cloistral|conventual|monastical|unworldly (similar term)
+(noun)|monk|religious (generic term)
+monastic habit|1
+(noun)|habit (generic term)
+monastic order|1
+(noun)|order|sect (generic term)|religious sect (generic term)|religious order (generic term)
+monastical|1
+(adj)|cloistered|cloistral|conventual|monastic|unworldly (similar term)
+monasticism|1
+(noun)|austerity (generic term)|asceticism (generic term)|nonindulgence (generic term)
+monatomic|1
+(adj)|monoatomic|substance|matter (related term)
+monaul|1
+(noun)|monal|pheasant (generic term)
+monaural|1
+(adj)|one-eared (similar term)|mono (similar term)|monophonic (similar term)|single-channel (similar term)|binaural (antonym)
+monaurally|1
+(adv)|to one ear|in one ear|binaurally (antonym)
+monazite|1
+(noun)|mineral (generic term)
+monday|1
+(noun)|Monday|Mon|weekday (generic term)
+mondrian|1
+(noun)|Mondrian|Piet Mondrian|abstractionist (generic term)|abstract artist (generic term)
+monecious|1
+(adj)|monoecious|monoicous|autoicous (similar term)|heteroicous (similar term)|polyoicous (similar term)|polygamous (similar term)|synoicous (similar term)|synoecious (similar term)|paroicous (similar term)|dioecious (antonym)
+monegasque|2
+(adj)|Monacan|Monegasque|principality|princedom|European country|European nation (related term)
+(noun)|Monegasque|Monacan|European (generic term)
+monel metal|1
+(noun)|Monel metal|Monell metal|nickel-base alloy (generic term)|nickel alloy (generic term)
+monell metal|1
+(noun)|Monel metal|Monell metal|nickel-base alloy (generic term)|nickel alloy (generic term)
+monera|1
+(noun)|Monera|kingdom Monera|Prokayotae|kingdom Prokaryotae|kingdom (generic term)
+moneran|2
+(adj)|kingdom (related term)
+(noun)|moneron|microorganism (generic term)|micro-organism (generic term)
+moneron|1
+(noun)|moneran|microorganism (generic term)|micro-organism (generic term)
+moneses|1
+(noun)|Moneses|genus Moneses|dilleniid dicot genus (generic term)
+moneses uniflora|1
+(noun)|one-flowered wintergreen|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb (generic term)|herbaceous plant (generic term)
+monestrous|1
+(adj)|monoestrous|estrous (similar term)
+monet|1
+(noun)|Monet|Claude Monet|painter (generic term)
+monetarism|1
+(noun)|economic theory (generic term)
+monetarist|1
+(noun)|economist (generic term)|economic expert (generic term)
+monetary|1
+(adj)|pecuniary|medium of exchange|monetary system (related term)
+monetary fund|1
+(noun)|fund|money (generic term)
+monetary resource|1
+(noun)|funds|finances|cash in hand|pecuniary resource|assets (generic term)
+monetary standard|1
+(noun)|standard|value (generic term)
+monetary system|1
+(noun)|medium of exchange|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+monetary unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+monetary value|1
+(noun)|price|cost|value (generic term)
+monetisation|1
+(noun)|monetization|validation (generic term)|proof (generic term)|substantiation (generic term)|demonetization (antonym)
+monetise|1
+(verb)|monetize|legalize (generic term)|legalise (generic term)|decriminalize (generic term)|decriminalise (generic term)|legitimize (generic term)|legitimise (generic term)|legitimate (generic term)|legitimatize (generic term)|legitimatise (generic term)
+monetization|1
+(noun)|monetisation|validation (generic term)|proof (generic term)|substantiation (generic term)|demonetization (antonym)
+monetize|1
+(verb)|monetise|legalize (generic term)|legalise (generic term)|decriminalize (generic term)|decriminalise (generic term)|legitimize (generic term)|legitimise (generic term)|legitimate (generic term)|legitimatize (generic term)|legitimatise (generic term)
+money|3
+(noun)|medium of exchange (generic term)|monetary system (generic term)
+(noun)|wealth (generic term)
+(noun)|currency (generic term)
+money-spinner|1
+(noun)|moneymaker|cash cow|project (generic term)|projection (generic term)
+money belt|1
+(noun)|belt (generic term)
+money box|2
+(noun)|savings bank|coin bank|bank|container (generic term)
+(noun)|cashbox|till|strongbox (generic term)|deedbox (generic term)
+money changer|1
+(noun)|exchanger|money handler (generic term)|money dealer (generic term)
+money cowrie|1
+(noun)|Cypraea moneta|cowrie (generic term)|cowry (generic term)
+money dealer|1
+(noun)|money handler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+money handler|1
+(noun)|money dealer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+money laundering|1
+(noun)|concealment (generic term)|concealing (generic term)|hiding (generic term)
+money market|1
+(noun)|market (generic term)|securities industry (generic term)
+money order|1
+(noun)|postal order|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+money plant|1
+(noun)|honesty|silver dollar|satin flower|satinpod|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+money supply|1
+(noun)|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+moneybag|1
+(noun)|drawstring bag (generic term)
+moneyed|2
+(adj)|monied|moneyless (antonym)
+(adj)|affluent|flush|loaded|wealthy|rich (similar term)
+moneyer|1
+(noun)|coiner|minter|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+moneygrubber|1
+(noun)|moneymaker (generic term)
+moneylender|1
+(noun)|usurer|loan shark|shylock|lender (generic term)|loaner (generic term)|shark (generic term)
+moneyless|2
+(adj)|moneyed (antonym)
+(adj)|poor (similar term)
+moneymaker|2
+(noun)|capitalist (generic term)
+(noun)|money-spinner|cash cow|project (generic term)|projection (generic term)
+moneymaking|3
+(adj)|lucrative|remunerative|profitable (similar term)
+(adj)|mercantile|mercenary|commercial (similar term)
+(noun)|acquisition (generic term)
+moneyman|1
+(noun)|financier|capitalist (generic term)
+moneywort|1
+(noun)|creeping Jenny|creeping Charlie|Lysimachia nummularia|loosestrife (generic term)
+monger|2
+(noun)|trader|bargainer|dealer|merchant (generic term)|merchandiser (generic term)
+(verb)|peddle|huckster|hawk|vend|pitch|deal (generic term)|sell (generic term)|trade (generic term)
+mongo|1
+(noun)|Mongolian monetary unit (generic term)
+mongol|2
+(adj)|Mongol|Mongolian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Mongol|Mongolian|Oriental (generic term)|oriental person (generic term)
+mongol dynasty|1
+(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty (generic term)
+mongol tatar|1
+(noun)|Tatar|Tartar|Mongol Tatar|Mongol (generic term)|Mongolian (generic term)
+mongolia|2
+(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country (generic term)|Asian nation (generic term)
+(noun)|Mongolia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+mongolian|4
+(adj)|Mongolian|Asian country|Asian nation (related term)
+(adj)|Mongol|Mongolian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Mongol|Mongolian|Oriental (generic term)|oriental person (generic term)
+(noun)|Mongolian|Mongolic|Mongolic language|Altaic (generic term)|Altaic language (generic term)
+mongolian monetary unit|1
+(noun)|Mongolian monetary unit|monetary unit (generic term)
+mongolian people's republic|1
+(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country (generic term)|Asian nation (generic term)
+mongolian race|1
+(noun)|Yellow race|Mongoloid race|Mongolian race|race (generic term)
+mongolianism|1
+(noun)|mongolism|Down's syndrome|Down syndrome|trisomy 21|trisomy (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+mongolic|1
+(noun)|Mongolian|Mongolic|Mongolic language|Altaic (generic term)|Altaic language (generic term)
+mongolic language|1
+(noun)|Mongolian|Mongolic|Mongolic language|Altaic (generic term)|Altaic language (generic term)
+mongolism|1
+(noun)|mongolianism|Down's syndrome|Down syndrome|trisomy 21|trisomy (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+mongoloid|5
+(adj)|Oriental|oriental person (related term)
+(adj)|Mongoloid|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|trisomy|birth defect|congenital anomaly|congenital defect|congenital disorder|congenital abnormality (related term)
+(noun)|Mongoloid|Asian (generic term)|Asiatic (generic term)
+(noun)|idiot (generic term)|imbecile (generic term)|cretin (generic term)|moron (generic term)|changeling (generic term)|half-wit (generic term)|retard (generic term)
+mongoloid race|1
+(noun)|Yellow race|Mongoloid race|Mongolian race|race (generic term)
+mongoose|1
+(noun)|viverrine (generic term)|viverrine mammal (generic term)
+mongoose-like|1
+(adj)|animal (similar term)
+mongrel|2
+(noun)|bastard|variation (generic term)
+(noun)|cur|mutt|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+mongrelise|1
+(verb)|mongrelize|breed (generic term)
+mongrelize|1
+(verb)|mongrelise|breed (generic term)
+monic polynomial|1
+(noun)|polynomial (generic term)|multinomial (generic term)
+monica seles|1
+(noun)|Seles|Monica Seles|tennis player (generic term)
+monied|1
+(adj)|moneyed|moneyless (antonym)
+moniker|1
+(noun)|nickname|cognomen|sobriquet|soubriquet|byname|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+monilia|1
+(noun)|fungus (generic term)
+monilia albicans|1
+(noun)|Candida albicans|Monilia albicans|candida (generic term)
+monilia disease|1
+(noun)|candidiasis|moniliasis|fungal infection (generic term)|mycosis (generic term)
+moniliaceae|1
+(noun)|Moniliaceae|family Moniliaceae|fungus family (generic term)
+moniliales|1
+(noun)|Moniliales|order Moniliales|fungus order (generic term)
+moniliasis|1
+(noun)|candidiasis|monilia disease|fungal infection (generic term)|mycosis (generic term)
+monish|2
+(verb)|caution|admonish|warn (generic term)
+(verb)|warn|discourage|admonish|rede (generic term)|advise (generic term)|counsel (generic term)
+monism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|pluralism (antonym)
+monistat|1
+(noun)|miconazole|Monistat|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+monistic|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+monition|3
+(noun)|admonition|admonishment|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|admonition|warning|word of advice|advice (generic term)
+(noun)|process of monition|summons (generic term)|process (generic term)
+monitor|7
+(noun)|monitoring device|display (generic term)|video display (generic term)
+(noun)|proctor|supervisor (generic term)
+(noun)|admonisher|reminder|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|Monitor|vessel (generic term)|watercraft (generic term)
+(noun)|electronic equipment (generic term)
+(noun)|monitor lizard|varan|lizard (generic term)
+(verb)|supervise|ride herd on|observe (generic term)
+monitor lizard|1
+(noun)|monitor|varan|lizard (generic term)
+monitor program|1
+(noun)|monitoring program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+monitoring|1
+(noun)|observation (generic term)|observance (generic term)|watching (generic term)
+monitoring device|1
+(noun)|monitor|display (generic term)|video display (generic term)
+monitoring program|1
+(noun)|monitor program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+monitory|1
+(adj)|admonitory|cautionary|exemplary|warning|dissuasive (similar term)
+monitrice|1
+(noun)|labor coach|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+monk|2
+(noun)|monastic|religious (generic term)
+(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician (generic term)|jazzman (generic term)
+monk's cloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+monkey|4
+(noun)|primate (generic term)
+(noun)|imp|scamp|rascal|rapscallion|scalawag|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(verb)|tamper|fiddle|manipulate (generic term)
+(verb)|putter|mess around|potter|tinker|monkey around|muck about|muck around|work (generic term)
+monkey-bread tree|1
+(noun)|baobab|Adansonia digitata|angiospermous tree (generic term)|flowering tree (generic term)
+monkey-like|1
+(adj)|animal (similar term)
+monkey-wrench|1
+(noun)|monkey wrench|adjustable wrench (generic term)|adjustable spanner (generic term)
+monkey around|1
+(verb)|putter|mess around|potter|tinker|monkey|muck about|muck around|work (generic term)
+monkey bread|1
+(noun)|sour gourd|edible fruit (generic term)
+monkey bridge|2
+(noun)|platform (generic term)
+(noun)|flying bridge|flybridge|fly bridge|bridge (generic term)|bridge deck (generic term)
+monkey business|1
+(noun)|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)
+monkey dog|1
+(noun)|affenpinscher|monkey pinscher|pinscher (generic term)
+monkey jacket|1
+(noun)|mess jacket|shell jacket|jacket (generic term)
+monkey ladder|1
+(noun)|ladder (generic term)
+monkey nut|1
+(noun)|peanut|earthnut|goober|goober pea|groundnut|edible nut (generic term)
+monkey pinscher|1
+(noun)|affenpinscher|monkey dog|pinscher (generic term)
+monkey pod|1
+(noun)|rain tree|saman|monkeypod|zaman|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+monkey puzzle|1
+(noun)|chile pine|Araucaria araucana|araucaria (generic term)
+monkey wrench|1
+(noun)|monkey-wrench|adjustable wrench (generic term)|adjustable spanner (generic term)
+monkeypod|1
+(noun)|rain tree|saman|monkey pod|zaman|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+monkfish|3
+(noun)|saltwater fish (generic term)
+(noun)|goosefish|angler|anglerfish|angler fish|lotte|allmouth|Lophius Americanus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+(noun)|angel shark|angelfish|Squatina squatina|shark (generic term)
+monkish|1
+(adj)|nonindulgent (similar term)|strict (similar term)
+monkshood|1
+(noun)|helmetflower|helmet flower|Aconitum napellus|aconite (generic term)
+monmouth court house|1
+(noun)|Monmouth Court House|Battle of Monmouth Court House|Battle of Monmouth|pitched battle (generic term)
+monnet|1
+(noun)|Monnet|Jean Monnet|economist (generic term)|economic expert (generic term)
+mono|2
+(adj)|monophonic|single-channel|monaural (similar term)
+(noun)|infectious mononucleosis|mononucleosis|glandular fever|kissing disease|infectious disease (generic term)
+mono-iodotyrosine|1
+(noun)|iodotyrosine (generic term)
+monoamine|1
+(noun)|amine (generic term)|aminoalkane (generic term)
+monoamine neurotransmitter|1
+(noun)|monoamine (generic term)
+monoamine oxidase|1
+(noun)|MAO|enzyme (generic term)
+monoamine oxidase inhibitor|1
+(noun)|MAOI|antidepressant (generic term)|antidepressant drug (generic term)
+monoatomic|1
+(adj)|monatomic|substance|matter (related term)
+monobasic acid|1
+(noun)|acid (generic term)
+monoblast|1
+(noun)|monocyte (generic term)
+monoblastic leukaemia|1
+(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukemia|histiocytic leukemia|histiocytic leukaemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+monoblastic leukemia|1
+(noun)|monocytic leukemia|monocytic leukaemia|monoblastic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+monocanthidae|1
+(noun)|Monocanthidae|family Monocanthidae|fish family (generic term)
+monocanthus|1
+(noun)|Monocanthus|genus Monocanthus|fish genus (generic term)
+monocarboxylic|1
+(adj)|group|radical|chemical group (related term)
+monocarp|1
+(noun)|monocarpic plant|monocarpous plant|plant (generic term)|flora (generic term)|plant life (generic term)
+monocarpic|1
+(adj)|plant|flora|plant life (related term)
+monocarpic plant|1
+(noun)|monocarp|monocarpous plant|plant (generic term)|flora (generic term)|plant life (generic term)
+monocarpous plant|1
+(noun)|monocarp|monocarpic plant|plant (generic term)|flora (generic term)|plant life (generic term)
+monochamus|1
+(noun)|Monochamus|genus Monochamus|arthropod genus (generic term)
+monochromacy|1
+(noun)|monochromatism|monochromatic vision|monochromia|monochromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+monochromasy|1
+(noun)|monochromacy|monochromatism|monochromatic vision|monochromia|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+monochromat|1
+(noun)|color-blind person (generic term)
+monochromatic|3
+(adj)|color blindness|colour blindness|color vision deficiency|colour vision deficiency (related term)
+(adj)|homochromatic|polychromatic (antonym)
+(adj)|monochrome|monochromic|monochromous|colored (similar term)|coloured (similar term)|colorful (similar term)
+monochromatic vision|1
+(noun)|monochromacy|monochromatism|monochromia|monochromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+monochromatism|1
+(noun)|monochromacy|monochromatic vision|monochromia|monochromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+monochrome|3
+(adj)|monochromatic|monochromic|monochromous|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|painting (generic term)|picture (generic term)
+(noun)|black and white|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+monochromia|1
+(noun)|monochromacy|monochromatism|monochromatic vision|monochromasy|color blindness (generic term)|colour blindness (generic term)|color vision deficiency (generic term)|colour vision deficiency (generic term)
+monochromic|1
+(adj)|monochromatic|monochrome|monochromous|colored (similar term)|coloured (similar term)|colorful (similar term)
+monochromous|1
+(adj)|monochromatic|monochrome|monochromic|colored (similar term)|coloured (similar term)|colorful (similar term)
+monocle|1
+(noun)|eyeglass|lens (generic term)|lense (generic term)|lens system (generic term)
+monocled|1
+(adj)|bespectacled|spectacled|adorned (similar term)|decorated (similar term)
+monoclinal|1
+(adj)|inclined (similar term)
+monocline|1
+(noun)|geological formation (generic term)|formation (generic term)
+monoclinic|1
+(adj)|triclinic (antonym)
+monoclinous|1
+(adj)|hermaphroditic (similar term)|diclinous (antonym)
+monoclonal|2
+(adj)|organism|being (related term)
+(noun)|monoclonal antibody|antibody (generic term)
+monoclonal antibody|1
+(noun)|monoclonal|antibody (generic term)
+monocot|1
+(noun)|monocotyledon|liliopsid|endogen|angiosperm (generic term)|flowering plant (generic term)
+monocot family|1
+(noun)|liliopsid family|family (generic term)
+monocot genus|1
+(noun)|liliopsid genus|genus (generic term)
+monocotyledon|1
+(noun)|monocot|liliopsid|endogen|angiosperm (generic term)|flowering plant (generic term)
+monocotyledonae|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+monocotyledones|1
+(noun)|Monocotyledones|class Monocotyledones|Monocotyledonae|class Monocotyledonae|Liliopsida|class Liliopsida|class (generic term)
+monocotyledonous|1
+(adj)|dicotyledonous (antonym)
+monocracy|1
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+monocular vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+monoculture|1
+(noun)|culture (generic term)
+monocycle|1
+(noun)|unicycle|wheeled vehicle (generic term)
+monocyte|1
+(noun)|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+monocytic leukaemia|1
+(noun)|monocytic leukemia|monoblastic leukemia|monoblastic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+monocytic leukemia|1
+(noun)|monocytic leukaemia|monoblastic leukemia|monoblastic leukaemia|histiocytic leukemia|histiocytic leukaemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+monocytosis|1
+(noun)|symptom (generic term)
+monod|1
+(noun)|Monod|Jacques Monod|Jacques Lucien Monod|biochemist (generic term)
+monodic|1
+(adj)|monodical|monophonic (similar term)
+monodical|1
+(adj)|monodic|monophonic (similar term)
+monodon|1
+(noun)|Monodon|genus Monodon|mammal genus (generic term)
+monodon monoceros|1
+(noun)|narwhal|narwal|narwhale|Monodon monoceros|whale (generic term)
+monodontidae|1
+(noun)|Monodontidae|family Monodontidae|mammal family (generic term)
+monody|1
+(noun)|monophony|monophonic music|music (generic term)|polyphonic music (antonym)|polyphony (antonym)
+monoecious|1
+(adj)|monecious|monoicous|autoicous (similar term)|heteroicous (similar term)|polyoicous (similar term)|polygamous (similar term)|synoicous (similar term)|synoecious (similar term)|paroicous (similar term)|dioecious (antonym)
+monoestrous|1
+(adj)|monestrous|estrous (similar term)
+monogamist|1
+(noun)|monogynist|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+monogamous|1
+(adj)|monandrous (similar term)|monogynous (similar term)|monogynic (similar term)|polygamous (antonym)
+monogamousness|1
+(noun)|monogamy|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+monogamy|1
+(noun)|monogamousness|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+monogenesis|1
+(noun)|sporulation|asexual reproduction (generic term)|agamogenesis (generic term)
+monogenic|1
+(adj)|inheritable (similar term)|heritable (similar term)
+monogenic disease|1
+(noun)|monogenic disorder|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+monogenic disorder|1
+(noun)|monogenic disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+monogram|1
+(noun)|symbol (generic term)
+monograph|1
+(noun)|treatise (generic term)
+monogynic|1
+(adj)|monogynous|monogamous (similar term)
+monogynist|1
+(noun)|monogamist|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+monogynous|1
+(adj)|monogynic|monogamous (similar term)
+monogyny|1
+(noun)|monogamy (generic term)|monogamousness (generic term)
+monohybrid|1
+(noun)|hybrid (generic term)|crossbreed (generic term)|cross (generic term)
+monohybrid cross|1
+(noun)|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+monohydrate|1
+(noun)|hydrate (generic term)
+monoicous|1
+(adj)|monoecious|monecious|autoicous (similar term)|heteroicous (similar term)|polyoicous (similar term)|polygamous (similar term)|synoicous (similar term)|synoecious (similar term)|paroicous (similar term)|dioecious (antonym)
+monolatry|1
+(noun)|worship (generic term)
+monolingual|2
+(adj)|multilingual (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+monolith|1
+(noun)|stone (generic term)
+monolithic|2
+(adj)|massive|monumental|large (similar term)|big (similar term)
+(adj)|undiversified (similar term)
+monologist|1
+(noun)|performer (generic term)|performing artist (generic term)
+monologue|3
+(noun)|soliloquy|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|actor's line (generic term)|speech (generic term)|words (generic term)
+monologuise|1
+(verb)|monologuize|soliloquize|soliloquise|talk (generic term)|speak (generic term)
+monologuize|1
+(verb)|monologuise|soliloquize|soliloquise|talk (generic term)|speak (generic term)
+monomania|1
+(noun)|possession|mania (generic term)|passion (generic term)|cacoethes (generic term)
+monomaniac|1
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+monomaniacal|1
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+monomer|1
+(noun)|compound (generic term)|chemical compound (generic term)
+monometallic|1
+(adj)|chemical element|element (related term)
+monomorium|1
+(noun)|Monomorium|genus Monomorium|arthropod genus (generic term)
+monomorium minimum|1
+(noun)|little black ant|Monomorium minimum|ant (generic term)|emmet (generic term)|pismire (generic term)
+monomorium pharaonis|1
+(noun)|pharaoh ant|pharaoh's ant|Monomorium pharaonis|ant (generic term)|emmet (generic term)|pismire (generic term)
+mononeuropathy|1
+(noun)|neuropathy (generic term)
+monongahela|1
+(noun)|Monongahela|Monongahela River|river (generic term)
+monongahela river|1
+(noun)|Monongahela|Monongahela River|river (generic term)
+mononuclear|1
+(adj)|mononucleate|binucleate (antonym)|trinucleate (antonym)
+mononuclear phagocyte system|1
+(noun)|MPS|system of macrophages|system (generic term)
+mononucleate|1
+(adj)|mononuclear|binucleate (antonym)|trinucleate (antonym)
+mononucleosis|1
+(noun)|infectious mononucleosis|mono|glandular fever|kissing disease|infectious disease (generic term)
+mononychus olecranus|1
+(noun)|Mononychus olecranus|maniraptor (generic term)
+monophonic|2
+(adj)|mono|single-channel|monaural (similar term)
+(adj)|homophonic (similar term)|monodic (similar term)|monodical (similar term)|polyphonic (antonym)
+monophonic music|1
+(noun)|monophony|monody|music (generic term)|polyphonic music (antonym)|polyphony (antonym)
+monophony|1
+(noun)|monophonic music|monody|music (generic term)|polyphonic music (antonym)|polyphony (antonym)
+monophthalmos|1
+(noun)|Antigonus|Antigonus Cyclops|Monophthalmos|general (generic term)|full general (generic term)|Macedonian (generic term)
+monophysite|2
+(adj)|Monophysite|Monophysitic|theological doctrine|heresy|unorthodoxy (related term)
+(noun)|Monophysite|disciple (generic term)|adherent (generic term)
+monophysitic|1
+(adj)|Monophysite|Monophysitic|theological doctrine|heresy|unorthodoxy (related term)
+monophysitism|1
+(noun)|Monophysitism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+monoplane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+monoplane flying fish|1
+(noun)|two-wing flying fish|flying fish (generic term)
+monoplegia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+monoploid|1
+(adj)|haploid|haploidic|diploid (antonym)|polyploid (antonym)
+monopolisation|1
+(noun)|monopolization|domination (generic term)
+monopolise|2
+(verb)|monopolize|control (generic term)|command (generic term)
+(verb)|monopolize|have (generic term)|have got (generic term)|hold (generic term)
+monopoliser|1
+(noun)|monopolist|monopolizer|selfish person (generic term)
+monopolist|1
+(noun)|monopolizer|monopoliser|selfish person (generic term)
+monopolistic|1
+(adj)|noncompetitive (similar term)
+monopolization|1
+(noun)|monopolisation|domination (generic term)
+monopolize|2
+(verb)|monopolise|control (generic term)|command (generic term)
+(verb)|monopolise|have (generic term)|have got (generic term)|hold (generic term)
+monopolizer|1
+(noun)|monopolist|monopoliser|selfish person (generic term)
+monopoly|3
+(noun)|market (generic term)|marketplace (generic term)
+(noun)|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|Monopoly|board game (generic term)
+monopoly board|1
+(noun)|board (generic term)|gameboard (generic term)
+monopsony|1
+(noun)|market (generic term)|marketplace (generic term)
+monopteral|1
+(adj)|peripteral (similar term)
+monorail|1
+(noun)|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+monorchidism|1
+(noun)|monorchism|cryptorchidy (generic term)|cryptorchidism (generic term)|cryptorchism (generic term)
+monorchism|1
+(noun)|monorchidism|cryptorchidy (generic term)|cryptorchidism (generic term)|cryptorchism (generic term)
+monosaccharide|1
+(noun)|monosaccharose|simple sugar|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+monosaccharose|1
+(noun)|monosaccharide|simple sugar|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+monosemous|1
+(adj)|unambiguous (similar term)
+monosemy|1
+(noun)|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)|polysemy (antonym)
+monosodium glutamate|1
+(noun)|MSG|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+monosomy|1
+(noun)|chromosomal aberration (generic term)|chromosomal anomaly (generic term)|chrosomal abnormality (generic term)|chromosonal disorder (generic term)
+monospaced font|1
+(noun)|typewriter font|constant-width font|fixed-width font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)|proportional font (antonym)
+monostotic fibrous dysplasia|1
+(noun)|fibrous dysplasia of bone (generic term)
+monosyllabic|1
+(adj)|syllabic (similar term)
+monosyllabic word|1
+(noun)|monosyllable|word (generic term)
+monosyllable|1
+(noun)|monosyllabic word|word (generic term)
+monotheism|1
+(noun)|theism (generic term)|polytheism (antonym)
+monotheist|1
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+monotheistic|1
+(adj)|polytheistic (antonym)
+monothelitism|1
+(noun)|Monothelitism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+monotone|4
+(adj)|monotonic|decreasing monotonic (similar term)|increasing monotonic (similar term)|nonmonotonic (antonym)
+(adj)|flat|monotonic|monotonous|unmodulated (similar term)
+(noun)|drone|droning|intonation (generic term)|modulation (generic term)|pitch contour (generic term)
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+monotonic|2
+(adj)|monotone|decreasing monotonic (similar term)|increasing monotonic (similar term)|nonmonotonic (antonym)
+(adj)|flat|monotone|monotonous|unmodulated (similar term)
+monotonous|2
+(adj)|humdrum|dull (similar term)
+(adj)|flat|monotone|monotonic|unmodulated (similar term)
+monotony|2
+(noun)|humdrum|sameness|unvariedness (generic term)
+(noun)|constancy (generic term)|stability (generic term)
+monotremata|1
+(noun)|Monotremata|order Monotremata|animal order (generic term)
+monotreme|1
+(noun)|egg-laying mammal|prototherian (generic term)
+monotropa|1
+(noun)|Monotropa|genus Monotropa|dilleniid dicot genus (generic term)
+monotropa hypopithys|1
+(noun)|pinesap|false beachdrops|Monotropa hypopithys|wildflower (generic term)|wild flower (generic term)
+monotropa uniflora|1
+(noun)|Indian pipe|waxflower|Monotropa uniflora|wildflower (generic term)|wild flower (generic term)
+monotropaceae|1
+(noun)|Monotropaceae|family Monotropaceae|dilleniid dicot family (generic term)
+monotype|2
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|typesetting machine (generic term)
+monotypic|1
+(adj)|taxonomic group|taxonomic category|taxon (related term)
+monounsaturated|1
+(adj)|unsaturated (similar term)
+monounsaturated fatty acid|1
+(noun)|unsaturated fatty acid (generic term)
+monovalent|2
+(adj)|polyvalent (antonym)
+(adj)|univalent|polyvalent (antonym)
+monovular|1
+(adj)|identical|fraternal (antonym)
+monoxide|1
+(noun)|oxide (generic term)
+monozygotic twin|1
+(noun)|identical twin|monozygous twin|twin (generic term)
+monozygous twin|1
+(noun)|identical twin|monozygotic twin|twin (generic term)
+monro's foramen|1
+(noun)|interventricular foramen|foramen of Monro|Monro's foramen|foramen (generic term)|hiatus (generic term)
+monroe|3
+(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress (generic term)
+(noun)|Monroe|James Monroe|President Monroe|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Monroe|town (generic term)
+monroe doctrine|1
+(noun)|Monroe Doctrine|foreign policy (generic term)
+monrovia|1
+(noun)|Monrovia|Liberian capital|capital of Liberia|national capital (generic term)|port (generic term)
+mons|1
+(noun)|mons veneris|mons pubis|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+mons pubis|1
+(noun)|mons|mons veneris|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+mons veneris|1
+(noun)|mons|mons pubis|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+monsieur|1
+(noun)|Monsieur|man (generic term)|adult male (generic term)
+monsignor|1
+(noun)|Monsignor|priest (generic term)
+monsoon|3
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|rainy season (generic term)
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)|rain (generic term)|rainfall (generic term)
+monster|5
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|giant|goliath|behemoth|colossus|anomaly (generic term)|unusual person (generic term)
+(noun)|freak|monstrosity|lusus naturae|mutant (generic term)|mutation (generic term)|variation (generic term)|sport (generic term)
+(noun)|fiend|devil|demon|ogre|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|teras|fetus (generic term)|foetus (generic term)
+monstera|2
+(noun)|liana (generic term)
+(noun)|ceriman|edible fruit (generic term)
+monstera deliciosa|1
+(noun)|ceriman|Monstera deliciosa|monstera (generic term)
+monstrance|2
+(noun)|demonstration|proof (generic term)
+(noun)|vessel (generic term)
+monstrosity|2
+(noun)|freak|monster|lusus naturae|mutant (generic term)|mutation (generic term)|variation (generic term)|sport (generic term)
+(noun)|malformation (generic term)|miscreation (generic term)
+monstrous|3
+(adj)|large (similar term)|big (similar term)
+(adj)|atrocious|flagitious|grievous|heinous|evil (similar term)
+(adj)|grotesque|unnatural|ugly (similar term)
+monstrously|3
+(adv)|hideously|horridly
+(adv)|heinously
+(adv)|grotesquely
+mont blanc|1
+(noun)|Mont Blanc|Monte Bianco|mountain peak (generic term)
+montage|1
+(noun)|collage|paste-up (generic term)|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+montagu|1
+(noun)|Montagu|Ashley Montagu|anthropologist (generic term)
+montagu's harrier|1
+(noun)|Montagu's harrier|Circus pygargus|harrier (generic term)
+montaigne|1
+(noun)|Montaigne|Michel Montaigne|Michel Eyquem Montaigne|writer (generic term)|author (generic term)
+montan wax|1
+(noun)|wax (generic term)
+montana|1
+(noun)|Montana|Treasure State|MT|American state (generic term)
+montanan|1
+(noun)|Montanan|American (generic term)
+montane|1
+(adj)|natural elevation|elevation (related term)
+monte|1
+(noun)|four-card monte|three-card monte|card game (generic term)|cards (generic term)
+monte bianco|1
+(noun)|Mont Blanc|Monte Bianco|mountain peak (generic term)
+monte carlo|1
+(noun)|Monte Carlo|town (generic term)
+montego bay|1
+(noun)|Montego Bay|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+montenegro|1
+(noun)|Montenegro|Crna Gora|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+monterey|1
+(noun)|Monterey|town (generic term)
+monterey bay|1
+(noun)|Monterey Bay|bay (generic term)|embayment (generic term)
+monterey cypress|1
+(noun)|Monterey cypress|Cupressus macrocarpa|cypress (generic term)|cypress tree (generic term)
+monterey pine|1
+(noun)|Monterey pine|Pinus radiata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+monterrey|1
+(noun)|Monterrey|city (generic term)|metropolis (generic term)|urban center (generic term)
+montespan|1
+(noun)|Montespan|Marquise de Montespan|Francoise-Athenais de Rochechouart|marchioness (generic term)|marquise (generic term)
+montesquieu|1
+(noun)|Montesquieu|Baron de la Brede et de Montesquieu|Charles Louis de Secondat|philosopher (generic term)
+montessori|1
+(noun)|Montessori|Maria Montesorri|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+monteverdi|1
+(noun)|Monteverdi|Claudio Monteverdi|composer (generic term)
+montevideo|1
+(noun)|Montevideo|capital of Uruguay|national capital (generic term)
+montez|1
+(noun)|Montez|Lola Montez|Marie Dolores Eliza Rosanna Gilbert|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+montezuma|1
+(noun)|Montezuma|tree (generic term)
+montezuma's revenge|1
+(noun)|Montezuma's revenge|diarrhea (generic term)|diarrhoea (generic term)|looseness of the bowels (generic term)|looseness (generic term)
+montezuma cypress|1
+(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress (generic term)
+montezuma ii|1
+(noun)|Montezuma II|emperor (generic term)
+montfort|1
+(noun)|Montfort|Simon de Montfort|Earl of Leicester|earl (generic term)
+montgolfier|2
+(noun)|Montgolfier|Jacques Etienne Montgolfier|balloonist (generic term)
+(noun)|Montgolfier|Josef Michel Montgolfier|balloonist (generic term)
+montgomery|3
+(noun)|Montgomery|L. M. Montgomery|Lucy Maud Montgomery|writer (generic term)|author (generic term)
+(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general (generic term)|full general (generic term)
+(noun)|Montgomery|capital of Alabama|state capital (generic term)
+montgomery's tubercle|1
+(noun)|Montgomery's tubercle|sebaceous gland (generic term)|sebaceous follicle (generic term)|glandulae sebaceae (generic term)
+montgomery ward|1
+(noun)|Ward|Montgomery Ward|Aaron Montgomery Ward|businessman (generic term)|man of affairs (generic term)
+month|2
+(noun)|calendar month|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time unit (generic term)|unit of time (generic term)
+month of sundays|1
+(noun)|month of Sundays|long time (generic term)|age (generic term)|years (generic term)
+monthlong|1
+(adj)|long (similar term)
+monthly|3
+(adj)|time unit|unit of time (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|every month|each month
+montia|1
+(noun)|Montia|genus Montia|caryophylloid dicot genus (generic term)
+montia chamissoi|1
+(noun)|toad lily|Montia chamissoi|Indian lettuce (generic term)
+montia cordifolia|1
+(noun)|broad-leaved montia|Montia cordifolia|Indian lettuce (generic term)
+montia lamprosperma|1
+(noun)|blinks|blinking chickweed|water chickweed|Montia lamprosperma|Indian lettuce (generic term)
+montia perfoliata|1
+(noun)|winter purslane|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce (generic term)
+montmartre|1
+(noun)|Montmartre|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+montpelier|1
+(noun)|Montpelier|capital of Vermont|state capital (generic term)
+montrachet|1
+(noun)|Montrachet|Burgundy (generic term)|Burgundy wine (generic term)|white wine (generic term)
+montreal|1
+(noun)|Montreal|city (generic term)|metropolis (generic term)|urban center (generic term)
+montserrat|1
+(noun)|Montserrat|island (generic term)
+montserratian|2
+(adj)|Montserratian|West Indian (related term)
+(noun)|Montserratian|West Indian (generic term)
+monument|3
+(noun)|memorial|structure (generic term)|construction (generic term)
+(noun)|site (generic term)|land site (generic term)
+(noun)|repository|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+monumental|3
+(adj)|structure|construction (related term)
+(adj)|significant (similar term)|important (similar term)
+(adj)|massive|monolithic|large (similar term)|big (similar term)
+monumentalise|1
+(verb)|monumentalize|commemorate (generic term)|memorialize (generic term)|memorialise (generic term)|immortalize (generic term)|immortalise (generic term)|record (generic term)
+monumentalize|1
+(verb)|monumentalise|commemorate (generic term)|memorialize (generic term)|memorialise (generic term)|immortalize (generic term)|immortalise (generic term)|record (generic term)
+moo|2
+(noun)|cry (generic term)
+(verb)|low|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+moo-cow|1
+(noun)|cow|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+moo goo gai pan|1
+(noun)|dish (generic term)
+mooch|2
+(noun)|moocher|cadger|scrounger|beggar (generic term)|mendicant (generic term)
+(verb)|bum|cadge|grub|sponge|obtain (generic term)
+moocher|1
+(noun)|mooch|cadger|scrounger|beggar (generic term)|mendicant (generic term)
+mood|3
+(noun)|temper|humor|humour|feeling (generic term)
+(noun)|climate|condition (generic term)|status (generic term)
+(noun)|mode|modality|grammatical relation (generic term)
+moodiness|2
+(noun)|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|disposition (generic term)|temperament (generic term)
+moody|4
+(adj)|dark|dour|glowering|glum|morose|saturnine|sour|sullen|ill-natured (similar term)
+(adj)|temperamental|emotional (similar term)
+(noun)|Moody|Helen Wills Moody|Helen Wills|Helen Newington Wills|tennis player (generic term)
+(noun)|Moody|Dwight Lyman Moody|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+moolah|1
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|pelf|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+moon|9
+(noun)|Moon|satellite (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|lunar month|lunation|synodic month|month (generic term)
+(noun)|moonlight|moonshine|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|Moon|Sun Myung Moon|religious leader (generic term)
+(noun)|satellite (generic term)
+(verb)|daydream|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|moon around|moon on|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)
+moon-curser|1
+(noun)|smuggler|runner|contrabandist|moon curser|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+moon-faced|1
+(adj)|round-faced|faced (similar term)
+moon-ray|1
+(noun)|moonbeam|moon ray|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+moon-round|1
+(adj)|moonlike|round (similar term)|circular (similar term)
+moon-splashed|1
+(adj)|covered (similar term)
+moon-worship|1
+(noun)|selenolatry|worship (generic term)
+moon about|1
+(verb)|mope|moon around|be (generic term)
+moon around|2
+(verb)|moon|moon on|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+(verb)|mope|moon about|be (generic term)
+moon blindness|2
+(noun)|nyctalopia|night blindness|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|avitaminosis (generic term)|hypovitaminosis (generic term)
+(noun)|mooneye|animal disease (generic term)
+moon carrot|1
+(noun)|stone parsley|herb (generic term)|herbaceous plant (generic term)
+moon curser|1
+(noun)|smuggler|runner|contrabandist|moon-curser|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+moon daisy|1
+(noun)|oxeye daisy|ox-eyed daisy|marguerite|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+moon on|1
+(verb)|moon|moon around|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+moon ray|1
+(noun)|moonbeam|moon-ray|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+moon shell|1
+(noun)|moonshell|seasnail (generic term)
+moon shot|1
+(noun)|rocket firing (generic term)|rocket launching (generic term)
+moon trefoil|1
+(noun)|Medicago arborea|medic (generic term)|medick (generic term)|trefoil (generic term)
+moonbeam|1
+(noun)|moon ray|moon-ray|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+mooneye|1
+(noun)|moon blindness|animal disease (generic term)
+moonfish|2
+(noun)|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+(noun)|opah|Lampris regius|soft-finned fish (generic term)|malacopterygian (generic term)
+moonflower|1
+(noun)|belle de nuit|Ipomoea alba|morning glory (generic term)
+moonie|1
+(noun)|Moonie|religious person (generic term)
+moonily|1
+(adv)|dreamily|dreamfully
+moonless|1
+(adj)|moonlit (antonym)
+moonlight|2
+(noun)|moonshine|moon|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(verb)|work (generic term)|do work (generic term)
+moonlighter|1
+(noun)|worker (generic term)
+moonlike|1
+(adj)|moon-round|round (similar term)|circular (similar term)
+moonlit|1
+(adj)|moony|moonless (antonym)
+moonseed|1
+(noun)|vine (generic term)
+moonseed family|1
+(noun)|Menispermaceae|family Menispermaceae|magnoliid dicot family (generic term)
+moonshell|1
+(noun)|moon shell|seasnail (generic term)
+moonshine|3
+(noun)|moonlight|moon|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|bootleg|corn liquor|corn whiskey (generic term)|corn whisky (generic term)|corn (generic term)
+(verb)|distill (generic term)|extract (generic term)|distil (generic term)
+moonshiner|1
+(noun)|bootlegger|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+moonstone|1
+(noun)|transparent gem (generic term)|feldspar (generic term)|felspar (generic term)
+moonstruck|1
+(adj)|lunatic|insane (similar term)
+moonwalk|2
+(noun)|dance step (generic term)|step (generic term)
+(noun)|walk (generic term)
+moonwort|1
+(noun)|common moonwort|Botrychium lunaria|grape fern (generic term)
+moony|2
+(adj)|moonlit|moonless (antonym)
+(adj)|dreamy|woolgathering|inattentive (similar term)
+moor|5
+(noun)|Moor|Muslim (generic term)|Moslem (generic term)
+(noun)|moorland|plain (generic term)|field (generic term)|champaign (generic term)
+(verb)|berth|tie up|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|berth|wharf|dock (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+moor-bird|1
+(noun)|red grouse|moorfowl|moorbird|moorgame|Lagopus scoticus|ptarmigan (generic term)
+moor berry|1
+(noun)|bog bilberry|bog whortleberry|Vaccinium uliginosum alpinum|blueberry (generic term)|blueberry bush (generic term)
+moorage|3
+(noun)|fee (generic term)
+(noun)|mooring|berth|slip|anchorage (generic term)|anchorage ground (generic term)
+(noun)|docking|dockage|tying up|arrival (generic term)
+moorbird|1
+(noun)|red grouse|moorfowl|moor-bird|moorgame|Lagopus scoticus|ptarmigan (generic term)
+moorcock|1
+(noun)|red grouse (generic term)|moorfowl (generic term)|moorbird (generic term)|moor-bird (generic term)|moorgame (generic term)|Lagopus scoticus (generic term)
+moore|6
+(noun)|Moore|Douglas Moore|composer (generic term)
+(noun)|Moore|Dudley Moore|Dudley Stuart John Moore|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|comedian (generic term)|comic (generic term)
+(noun)|Moore|G. E. Moore|George Edward Moore|philosopher (generic term)
+(noun)|Moore|Thomas Moore|poet (generic term)
+(noun)|Moore|Marianne Moore|Marianne Craig Moore|poet (generic term)
+(noun)|Moore|Henry Moore|Henry Spencer Moore|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+moorfowl|1
+(noun)|red grouse|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan (generic term)
+moorgame|1
+(noun)|red grouse|moorfowl|moorbird|moor-bird|Lagopus scoticus|ptarmigan (generic term)
+moorhen|2
+(noun)|Gallinula chloropus|gallinule (generic term)|marsh hen (generic term)|water hen (generic term)|swamphen (generic term)
+(noun)|red grouse (generic term)|moorfowl (generic term)|moorbird (generic term)|moor-bird (generic term)|moorgame (generic term)|Lagopus scoticus (generic term)
+mooring|2
+(noun)|moorage|berth|slip|anchorage (generic term)|anchorage ground (generic term)
+(noun)|mooring line|line (generic term)
+mooring anchor|1
+(noun)|anchor (generic term)|ground tackle (generic term)
+mooring line|1
+(noun)|mooring|line (generic term)
+mooring mast|1
+(noun)|mooring tower|tower (generic term)
+mooring tower|1
+(noun)|mooring mast|tower (generic term)
+moorish|2
+(adj)|Moorish|Moresque|Muslim|Moslem (related term)
+(noun)|Moorish|Moorish architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+moorish arch|1
+(noun)|Moorish arch|horseshoe arch|round arch (generic term)
+moorish architecture|1
+(noun)|Moorish|Moorish architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+moorland|1
+(noun)|moor|plain (generic term)|field (generic term)|champaign (generic term)
+moorwort|1
+(noun)|bog rosemary|Andromeda glaucophylla|andromeda (generic term)
+moose|1
+(noun)|elk|European elk|Alces alces|deer (generic term)|cervid (generic term)
+moose-wood|2
+(noun)|moosewood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple (generic term)
+(noun)|leatherwood|moosewood|wicopy|ropebark|Dirca palustris|shrub (generic term)|bush (generic term)
+moosewood|2
+(noun)|moose-wood|striped maple|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple (generic term)
+(noun)|leatherwood|moose-wood|wicopy|ropebark|Dirca palustris|shrub (generic term)|bush (generic term)
+moot|4
+(adj)|irrelevant (similar term)
+(adj)|arguable|debatable|disputable|controversial (similar term)
+(noun)|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+(verb)|consider|debate|turn over|deliberate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+moot court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+mop|3
+(noun)|swab|swob|cleaning implement (generic term)
+(verb)|wipe up|mop up|absorb (generic term)|suck (generic term)|imbibe (generic term)|soak up (generic term)|sop up (generic term)|suck up (generic term)|draw (generic term)|take in (generic term)|take up (generic term)
+(verb)|pout|mow|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+mop-headed|1
+(adj)|branchy (similar term)
+mop handle|1
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+mop up|4
+(noun)|completion|culmination|closing|windup|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|wipe up|mop|absorb (generic term)|suck (generic term)|imbibe (generic term)|soak up (generic term)|sop up (generic term)|suck up (generic term)|draw (generic term)|take in (generic term)|take up (generic term)
+(verb)|worst|pip|whip|rack up|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|get through|wrap up|finish off|polish off|clear up|finish up|complete (generic term)|finish (generic term)
+mopboard|1
+(noun)|baseboard|skirting board|molding (generic term)|moulding (generic term)
+mope|3
+(noun)|dallier|dillydallier|dilly-dallier|lounger|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(verb)|mope around|move (generic term)
+(verb)|moon around|moon about|be (generic term)
+mope around|1
+(verb)|mope|move (generic term)
+moped|1
+(noun)|minibike (generic term)|motorbike (generic term)
+mopes|1
+(noun)|dumps|low spirits (generic term)
+mopper|1
+(noun)|worker (generic term)
+moppet|1
+(noun)|female child (generic term)|girl (generic term)|little girl (generic term)
+mopping|1
+(noun)|swabbing|scrub (generic term)|scrubbing (generic term)|scouring (generic term)
+moquelumnan|1
+(noun)|Moquelumnan|Miwok|Penutian (generic term)
+moquette|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+moraceae|1
+(noun)|Moraceae|family Moraceae|mulberry family|dicot family (generic term)|magnoliopsid family (generic term)
+moraceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+moraine|1
+(noun)|earth (generic term)|ground (generic term)
+moral|6
+(adj)|motivation|motive|need (related term)
+(adj)|chaste (similar term)|clean (similar term)|clean-living (similar term)|moralistic (similar term)|righteous (similar term)|incorrupt (similar term)|chaste (related term)|good (related term)|honorable (related term)|honourable (related term)|righteous (related term)|virtuous (related term)|immoral (antonym)|amoral (antonym)
+(adj)|ethical|honorable|honourable|right (similar term)
+(adj)|conscientious (similar term)
+(adj)|mental (similar term)
+(noun)|lesson|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+moral certainty|1
+(noun)|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+moral excellence|1
+(noun)|virtue|virtuousness|good (generic term)|goodness (generic term)
+moral force|1
+(noun)|dynamic|incentive (generic term)|inducement (generic term)|motivator (generic term)
+moral hazard|1
+(noun)|hazard (generic term)|jeopardy (generic term)|peril (generic term)|risk (generic term)|endangerment (generic term)
+moral obligation|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+moral philosophy|1
+(noun)|ethics|philosophy (generic term)
+moral principle|2
+(noun)|ethic|value-system|value orientation|principle (generic term)
+(noun)|principle (generic term)|precept (generic term)
+moral sense|1
+(noun)|conscience|scruples|sense of right and wrong|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+morale|2
+(noun)|psychological state (generic term)|mental state (generic term)
+(noun)|esprit de corps|team spirit|disposition (generic term)|temperament (generic term)
+morale booster|1
+(noun)|morale building|boost (generic term)|encouragement (generic term)
+morale builder|1
+(noun)|influence (generic term)
+morale building|1
+(noun)|morale booster|boost (generic term)|encouragement (generic term)
+moralisation|2
+(noun)|moralizing|moralization|philosophizing (generic term)
+(noun)|moralization|reform (generic term)
+moralise|3
+(verb)|moralize|rede (generic term)|interpret (generic term)
+(verb)|sermonize|sermonise|preachify|moralize|preach (generic term)|advocate (generic term)
+(verb)|moralize|reform (generic term)|reclaim (generic term)|regenerate (generic term)|rectify (generic term)
+moralism|2
+(noun)|maxim (generic term)|axiom (generic term)
+(noun)|value judgment (generic term)|value judgement (generic term)
+moralist|2
+(noun)|philosopher (generic term)
+(noun)|martinet|disciplinarian|authoritarian (generic term)|dictator (generic term)
+moralistic|1
+(adj)|moral (similar term)
+morality|2
+(noun)|quality (generic term)|immorality (antonym)
+(noun)|ethical motive|ethics|morals|motivation (generic term)|motive (generic term)|need (generic term)
+morality play|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+moralization|2
+(noun)|moralizing|moralisation|philosophizing (generic term)
+(noun)|moralisation|reform (generic term)
+moralize|3
+(verb)|moralise|rede (generic term)|interpret (generic term)
+(verb)|sermonize|sermonise|preachify|moralise|preach (generic term)|advocate (generic term)
+(verb)|moralise|reform (generic term)|reclaim (generic term)|regenerate (generic term)|rectify (generic term)
+moralizing|1
+(noun)|moralization|moralisation|philosophizing (generic term)
+morally|1
+(adv)|virtuously|immorally (antonym)
+morals|1
+(noun)|ethical motive|ethics|morality|motivation (generic term)|motive (generic term)|need (generic term)
+moranzanist patriotic front|1
+(noun)|Moranzanist Patriotic Front|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+morass|1
+(noun)|mire|quagmire|quag|slack|bog (generic term)|peat bog (generic term)
+moratorium|2
+(noun)|delay (generic term)|hold (generic term)|time lag (generic term)|postponement (generic term)|wait (generic term)
+(noun)|abeyance (generic term)|suspension (generic term)
+moravia|1
+(noun)|Moravia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+moravian|1
+(adj)|Moravian|geographical area|geographic area|geographical region|geographic region (related term)
+moray|1
+(noun)|moray eel|eel (generic term)
+moray eel|1
+(noun)|moray|eel (generic term)
+moray firth|1
+(noun)|Moray Firth|firth (generic term)
+morbid|3
+(adj)|unwholesome (similar term)
+(adj)|ghoulish|offensive (similar term)
+(adj)|diseased|pathologic|pathological|unhealthy (similar term)
+morbidity|3
+(noun)|incidence (generic term)|relative incidence (generic term)
+(noun)|morbidness|cognitive state (generic term)|state of mind (generic term)
+(noun)|unwholesomeness|morbidness|quality (generic term)|wholesomeness (antonym)
+morbidness|2
+(noun)|morbidity|cognitive state (generic term)|state of mind (generic term)
+(noun)|unwholesomeness|morbidity|quality (generic term)|wholesomeness (antonym)
+morbific|1
+(adj)|infective|pathogenic|unhealthful (similar term)
+morbilli|1
+(noun)|measles|rubeola|contagious disease (generic term)|contagion (generic term)
+morbilliform|1
+(adj)|contagious disease|contagion (related term)
+morceau|1
+(noun)|piece (generic term)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+morchella|1
+(noun)|Morchella|genus Morchella|fungus genus (generic term)
+morchella angusticeps|1
+(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel (generic term)
+morchella conica|1
+(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|narrowhead morel|morel (generic term)
+morchella crassipes|1
+(noun)|Morchella crassipes|thick-footed morel|morel (generic term)
+morchella esculenta|1
+(noun)|common morel|Morchella esculenta|sponge mushroom|sponge morel|morel (generic term)
+morchella semilibera|1
+(noun)|Morchella semilibera|half-free morel|cow's head|morel (generic term)
+morchellaceae|1
+(noun)|Morchellaceae|family Morchellaceae|fungus family (generic term)
+mordacious|2
+(adj)|barbed|biting|nipping|pungent|sarcastic (similar term)
+(adj)|dangerous (similar term)|unsafe (similar term)
+mordacity|1
+(noun)|disposition (generic term)
+mordant|3
+(adj)|black|grim|sarcastic (similar term)
+(adj)|caustic|corrosive|erosive|vitriolic|destructive (similar term)
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+mordecai richler|1
+(noun)|Richler|Mordecai Richler|writer (generic term)|author (generic term)
+mordva|2
+(noun)|Mordva|Mordvin|Mordvinian|Russian (generic term)
+(noun)|Mordva|Mordvin|Mordvinian|Volgaic (generic term)
+mordvin|2
+(noun)|Mordva|Mordvin|Mordvinian|Russian (generic term)
+(noun)|Mordva|Mordvin|Mordvinian|Volgaic (generic term)
+mordvinian|2
+(noun)|Mordva|Mordvin|Mordvinian|Russian (generic term)
+(noun)|Mordva|Mordvin|Mordvinian|Volgaic (generic term)
+more|5
+(adj)|more than|much (related term)|less (antonym)
+(adj)|many (related term)|more (related term)|more than (related term)|fewer (antonym)
+(noun)|More|Thomas More|Sir Thomas More|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+(adv)|to a greater extent|less (antonym)
+(adv)|less (antonym)
+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|2
+(adj)|more|much (related term)|less (antonym)
+(adv)|to a higher degree|less than (antonym)
+moreau river|1
+(noun)|Moreau River|river (generic term)
+moreen|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+morel|1
+(noun)|mushroom (generic term)
+morelia spilotes variegatus|1
+(noun)|carpet snake|Python variegatus|Morelia spilotes variegatus|python (generic term)
+morello|2
+(noun)|Prunus cerasus austera|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+(noun)|sour cherry (generic term)
+moreover|1
+(adv)|furthermore|what is more
+mores|1
+(noun)|convention (generic term)|normal (generic term)|pattern (generic term)|rule (generic term)|formula (generic term)
+moresque|1
+(adj)|Moorish|Moresque|Muslim|Moslem (related term)
+moreton bay|1
+(noun)|Moreton Bay|bay (generic term)|embayment (generic term)
+moreton bay chestnut|1
+(noun)|Moreton Bay chestnut|Australian chestnut|bean tree (generic term)
+moreton bay pine|1
+(noun)|hoop pine|Moreton Bay pine|Araucaria cunninghamii|araucaria (generic term)
+moreton bay tulipwood|1
+(noun)|Moreton Bay tulipwood|Harpullia pendula|harpullia (generic term)
+morgan|6
+(noun)|Morgan|Lewis Henry Morgan|anthropologist (generic term)
+(noun)|Morgan|Thomas Hunt Morgan|biologist (generic term)|life scientist (generic term)
+(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+(noun)|Morgan|Daniel Morgan|soldier (generic term)
+(noun)|Morgan|J. P. Morgan|John Pierpont Morgan|financier (generic term)|moneyman (generic term)
+(noun)|Morgan|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+morgan city|1
+(noun)|Morgan City|town (generic term)
+morgan le fay|1
+(noun)|Morgan le Fay|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+morganatic|1
+(adj)|left-handed|legitimate (similar term)
+morganite|1
+(noun)|transparent gem (generic term)|beryl (generic term)
+morgantown|1
+(noun)|Morgantown|city (generic term)|metropolis (generic term)|urban center (generic term)
+morgen|1
+(noun)|area unit (generic term)|square measure (generic term)
+morgue|1
+(noun)|mortuary|dead room|building (generic term)|edifice (generic term)
+moribund|2
+(adj)|stagnant|undynamic (similar term)|adynamic (similar term)
+(adj)|dying (similar term)
+morion|1
+(noun)|cabasset|helmet (generic term)
+morlett's crocodile|1
+(noun)|Morlett's crocodile|crocodile (generic term)
+morley|1
+(noun)|Morley|E. W. Morley|Edward Morley|Edward Williams Morley|chemist (generic term)
+mormon|3
+(adj)|Mormon|Protestant denomination (related term)
+(noun)|Mormon|prophet (generic term)
+(noun)|Latter-Day Saint|Mormon|Protestant (generic term)
+mormon church|1
+(noun)|Church of Jesus Christ of Latter-Day Saints|Mormon Church|Mormons|Protestant denomination (generic term)
+mormon cricket|1
+(noun)|Anabrus simplex|katydid (generic term)
+mormon state|1
+(noun)|Utah|Beehive State|Mormon State|UT|American state (generic term)
+mormon tabernacle|1
+(noun)|Tabernacle|Mormon Tabernacle|temple (generic term)
+mormonism|1
+(noun)|Mormonism|Protestantism (generic term)
+mormons|1
+(noun)|Church of Jesus Christ of Latter-Day Saints|Mormon Church|Mormons|Protestant denomination (generic term)
+morn|1
+(noun)|morning|morning time|forenoon|time period (generic term)|period of time (generic term)|period (generic term)
+mornay sauce|1
+(noun)|Mornay sauce|cheese sauce (generic term)
+morning|4
+(noun)|morn|morning time|forenoon|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|good morning|greeting (generic term)|salutation (generic term)|farewell (generic term)|word of farewell (generic term)
+(noun)|dawn|dawning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+(noun)|dawn|start (generic term)
+morning-after pill|1
+(noun)|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+morning-glory family|1
+(noun)|Convolvulaceae|family Convolvulaceae|dicot family (generic term)|magnoliopsid family (generic term)
+morning coat|1
+(noun)|swallow-tailed coat|swallowtail|jacket (generic term)
+morning dress|2
+(noun)|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|dress (generic term)|frock (generic term)
+morning glory|1
+(noun)|vine (generic term)
+morning prayer|1
+(noun)|matins|canonical hour (generic term)
+morning room|1
+(noun)|living room (generic term)|living-room (generic term)|sitting room (generic term)|front room (generic term)|parlor (generic term)|parlour (generic term)
+morning sickness|1
+(noun)|nausea (generic term)|sickness (generic term)
+morning star|1
+(noun)|daystar|Phosphorus|Lucifer|planet (generic term)|major planet (generic term)
+morning time|1
+(noun)|morning|morn|forenoon|time period (generic term)|period of time (generic term)|period (generic term)
+moro|1
+(noun)|Moro|Filipino (generic term)
+moro islamic liberation front|1
+(noun)|Moro Islamic Liberation Front|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+moro reflex|1
+(noun)|startle reflex|Moro reflex|startle (generic term)|jump (generic term)|start (generic term)
+moroccan|2
+(adj)|Moroccan|Maroc|African country|African nation (related term)
+(noun)|Moroccan|African (generic term)
+moroccan dirham|1
+(noun)|Moroccan dirham|dirham|Moroccan monetary unit (generic term)
+moroccan monetary unit|1
+(noun)|Moroccan monetary unit|monetary unit (generic term)
+morocco|2
+(noun)|Morocco|Kingdom of Morocco|Maroc|Marruecos|Al-Magrib|African country (generic term)|African nation (generic term)
+(noun)|leather (generic term)
+moron|1
+(noun)|idiot|imbecile|cretin|changeling|half-wit|retard|simpleton (generic term)|simple (generic term)
+morone|1
+(noun)|Morone|genus Morone|fish genus (generic term)
+morone americana|1
+(noun)|white perch|silver perch|Morone americana|serranid fish (generic term)|serranid (generic term)
+morone interrupta|1
+(noun)|yellow bass|Morone interrupta|serranid fish (generic term)|serranid (generic term)
+moronic|1
+(adj)|unintelligent (similar term)|stupid (similar term)
+moronity|1
+(noun)|mental deficiency|retardation (generic term)|mental retardation (generic term)|backwardness (generic term)|slowness (generic term)|subnormality (generic term)
+morose|1
+(adj)|dark|dour|glowering|glum|moody|saturnine|sour|sullen|ill-natured (similar term)
+moroseness|2
+(noun)|glumness|sullenness|moodiness (generic term)
+(noun)|sulkiness|sullenness|sourness|ill nature (generic term)
+morosoph|1
+(noun)|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+morph|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|contort (generic term)|deform (generic term)|distort (generic term)|wring (generic term)
+morphallaxis|1
+(noun)|regeneration (generic term)
+morphea|1
+(noun)|scleroderma (generic term)|dermatosclerosis (generic term)
+morpheme|1
+(noun)|language unit (generic term)|linguistic unit (generic term)
+morphemic|1
+(adj)|language unit|linguistic unit (related term)
+morpheus|1
+(noun)|Morpheus|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+morphia|1
+(noun)|morphine|opiate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+morphine|1
+(noun)|morphia|opiate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+morphogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+morphologic|3
+(adj)|morphological|structural|biology|biological science (related term)
+(adj)|morphological|grammar (related term)
+(adj)|geomorphologic|geomorphological|morphological|structural|geophysics|geophysical science (related term)
+morphological|3
+(adj)|morphologic|grammar (related term)
+(adj)|geomorphologic|geomorphological|morphologic|structural|geophysics|geophysical science (related term)
+(adj)|morphologic|structural|biology|biological science (related term)
+morphological rule|1
+(noun)|rule of morphology|rule (generic term)|linguistic rule (generic term)
+morphology|4
+(noun)|biology (generic term)|biological science (generic term)
+(noun)|grammar (generic term)
+(noun)|sound structure|syllable structure|word structure|structure (generic term)
+(noun)|geomorphology|geophysics (generic term)|geophysical science (generic term)
+morphophoneme|1
+(noun)|allomorph (generic term)
+morphophonemic|1
+(adj)|descriptive linguistics (related term)
+morphophonemic system|1
+(noun)|language system (generic term)
+morphophonemics|1
+(noun)|descriptive linguistics (generic term)
+morphophysiology|1
+(noun)|functional anatomy|physiological anatomy|anatomy (generic term)|general anatomy (generic term)
+morrigan|1
+(noun)|Morrigan|Morrigu|Celtic deity (generic term)
+morrigu|1
+(noun)|Morrigan|Morrigu|Celtic deity (generic term)
+morris|4
+(noun)|Morris|Esther Morris|Esther Hobart McQuigg Slack Morris|suffragist (generic term)
+(noun)|Morris|William Morris|poet (generic term)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|Morris|Robert Morris|American Revolutionary leader (generic term)|financier (generic term)|moneyman (generic term)
+(noun)|Morris|Gouverneur Morris|statesman (generic term)|solon (generic term)|national leader (generic term)
+morris chair|1
+(noun)|Morris chair|armchair (generic term)
+morris dance|1
+(noun)|morris dancing|folk dancing (generic term)|folk dance (generic term)
+morris dancer|1
+(noun)|folk dancer (generic term)
+morris dancing|1
+(noun)|morris dance|folk dancing (generic term)|folk dance (generic term)
+morrison|2
+(noun)|Morrison|Jim Morrison|James Douglas Morrison|rock star (generic term)
+(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer (generic term)|author (generic term)
+morrison r. waite|1
+(noun)|Waite|Morrison Waite|Morrison R. Waite|Morrison Remick Waite|chief justice (generic term)
+morrison remick waite|1
+(noun)|Waite|Morrison Waite|Morrison R. Waite|Morrison Remick Waite|chief justice (generic term)
+morrison waite|1
+(noun)|Waite|Morrison Waite|Morrison R. Waite|Morrison Remick Waite|chief justice (generic term)
+morristown|1
+(noun)|Morristown|town (generic term)
+morrow|1
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+morrow's honeysuckle|1
+(noun)|Morrow's honeysuckle|Lonicera morrowii|honeysuckle (generic term)
+mors|1
+(noun)|Mors|Roman deity (generic term)
+morse|2
+(noun)|Morse|Morse code|international Morse code|code (generic term)
+(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor (generic term)|discoverer (generic term)|artificer (generic term)|painter (generic term)
+morse code|1
+(noun)|Morse|Morse code|international Morse code|code (generic term)
+morsel|2
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|bit|bite|taste (generic term)|mouthful (generic term)
+morta|1
+(noun)|Morta|Roman deity (generic term)
+mortal|5
+(adj)|earthborn (similar term)|earthly (related term)|finite (related term)|immortal (antonym)
+(adj)|deadly|unpardonable (similar term)
+(adj)|merciless (similar term)|unmerciful (similar term)
+(adj)|deadly|deathly|fatal (similar term)
+(noun)|person|individual|someone|somebody|soul|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+mortal enemy|1
+(noun)|foe (generic term)|enemy (generic term)
+mortal sin|1
+(noun)|deadly sin|sin (generic term)|sinning (generic term)|venial sin (antonym)
+mortality|2
+(noun)|impermanence (generic term)|impermanency (generic term)|immortality (antonym)
+(noun)|deathrate|death rate|mortality rate|fatality rate|rate (generic term)
+mortality rate|1
+(noun)|deathrate|death rate|mortality|fatality rate|rate (generic term)
+mortality table|1
+(noun)|actuarial table (generic term)|statistical table (generic term)
+mortar|4
+(noun)|howitzer|trench mortar|high-angle gun (generic term)
+(noun)|building material (generic term)
+(noun)|vessel (generic term)
+(verb)|plaster (generic term)|daub (generic term)
+mortar fire|1
+(noun)|artillery fire (generic term)|cannon fire (generic term)
+mortarboard|2
+(noun)|hawk|board (generic term)
+(noun)|cap (generic term)
+mortgage|2
+(noun)|security interest (generic term)
+(verb)|owe (generic term)
+mortgage-backed security|1
+(noun)|security (generic term)|certificate (generic term)
+mortgage application|1
+(noun)|loan application (generic term)
+mortgage deed|1
+(noun)|deed (generic term)|deed of conveyance (generic term)|title (generic term)
+mortgage holder|1
+(noun)|mortgagee|creditor (generic term)
+mortgage loan|1
+(noun)|real estate loan|loan (generic term)
+mortgaged|1
+(adj)|encumbered (similar term)
+mortgagee|1
+(noun)|mortgage holder|creditor (generic term)
+mortgager|1
+(noun)|mortgagor|debtor (generic term)|debitor (generic term)
+mortgagor|1
+(noun)|mortgager|debtor (generic term)|debitor (generic term)
+mortice|3
+(noun)|mortise|hole (generic term)
+(verb)|mortise|cut (generic term)
+(verb)|mortise|join (generic term)|bring together (generic term)
+mortician|1
+(noun)|undertaker|funeral undertaker|funeral director|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+mortification|4
+(noun)|chagrin|humiliation|embarrassment (generic term)
+(noun)|necrosis|gangrene|sphacelus|death (generic term)
+(noun)|humiliation|case (generic term)|instance (generic term)|example (generic term)
+(noun)|self-denial (generic term)|self-discipline (generic term)|self-control (generic term)
+mortified|2
+(adj)|gangrenous|unhealthy (similar term)
+(adj)|embarrassed|humiliated|ashamed (similar term)
+mortify|4
+(verb)|mortify (generic term)|subdue (generic term)|cricify (generic term)|discipline (generic term)|train (generic term)|check (generic term)|condition (generic term)
+(verb)|subdue|cricify|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|humiliate|chagrin|humble|abase|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+(verb)|necrose|gangrene|sphacelate|waste (generic term)|rot (generic term)
+mortifying|2
+(adj)|embarrassing|unpleasant (similar term)
+(adj)|demeaning|humbling|humiliating|undignified (similar term)
+mortimer|1
+(noun)|Mortimer|Roger de Mortimer|Lord (generic term)|noble (generic term)|nobleman (generic term)
+mortise|3
+(noun)|mortice|hole (generic term)
+(verb)|mortice|cut (generic term)
+(verb)|mortice|join (generic term)|bring together (generic term)
+mortise-and-tenon joint|1
+(noun)|mortise joint|joint (generic term)
+mortise joint|2
+(noun)|ankle|ankle joint|articulatio talocruralis|gliding joint (generic term)|articulatio plana (generic term)
+(noun)|mortise-and-tenon joint|joint (generic term)
+mortmain|2
+(noun)|dead hand|real property (generic term)|real estate (generic term)|realty (generic term)|immovable (generic term)
+(noun)|dead hand|dead hand of the past|influence (generic term)
+morton|1
+(noun)|Morton|Jelly Roll Morton|Ferdinand Joseph La Menthe Morton|jazz musician (generic term)|jazzman (generic term)
+mortuary|3
+(adj)|organic phenomenon (related term)
+(adj)|ceremony|ceremonial|ceremonial occasion|observance (related term)
+(noun)|morgue|dead room|building (generic term)|edifice (generic term)
+morula|1
+(noun)|embryo (generic term)|conceptus (generic term)|fertilized egg (generic term)
+morus|1
+(noun)|Morus|genus Morus|dicot genus (generic term)|magnoliopsid genus (generic term)
+morus alba|1
+(noun)|white mulberry|Morus alba|mulberry (generic term)|mulberry tree (generic term)
+morus nigra|1
+(noun)|black mulberry|Morus nigra|mulberry (generic term)|mulberry tree (generic term)
+morus rubra|1
+(noun)|red mulberry|Morus rubra|mulberry (generic term)|mulberry tree (generic term)
+mosaic|8
+(adj)|Mosaic|prophet (related term)
+(adj)|tessellated|adorned (similar term)|decorated (similar term)
+(noun)|art (generic term)|fine art (generic term)
+(noun)|plant disease (generic term)
+(noun)|Mosaic|browser (generic term)|web browser (generic term)
+(noun)|form (generic term)|shape (generic term)|pattern (generic term)
+(noun)|transducer (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+mosaic culture|1
+(noun)|culture (generic term)
+mosaic gold|1
+(noun)|stannic sulfide|pigment (generic term)
+mosaic law|1
+(noun)|Mosaic law|Law of Moses|law (generic term)|jurisprudence (generic term)
+mosaicism|1
+(noun)|condition (generic term)
+mosan|1
+(noun)|Mosan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+mosander|1
+(noun)|Mosander|Carl Gustaf Mossander|chemist (generic term)
+moschus|1
+(noun)|Moschus|genus Moschus|mammal genus (generic term)
+moschus moschiferus|1
+(noun)|musk deer|Moschus moschiferus|deer (generic term)|cervid (generic term)
+moscow|1
+(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital (generic term)
+moselle|1
+(noun)|Moselle|white wine (generic term)
+moses|2
+(noun)|Moses|prophet (generic term)
+(noun)|Moses|Grandma Moses|Anna Mary Robertson Moses|painter (generic term)
+moses maimonides|1
+(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher (generic term)
+mosey|1
+(verb)|amble|walk (generic term)
+mosh|1
+(verb)|slam dance|slam|thrash|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+moshav|1
+(noun)|village (generic term)|small town (generic term)|settlement (generic term)
+moshe dayan|1
+(noun)|Dayan|Moshe Dayan|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+moslem|2
+(adj)|Muslim|Moslem|Islamic|monotheism (related term)
+(noun)|Muslim|Moslem|religious person (generic term)
+moslem calendar|1
+(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar (generic term)
+mosque|1
+(noun)|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+mosquito|1
+(noun)|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+mosquito-like|1
+(adj)|animal (similar term)
+mosquito bite|1
+(noun)|sting (generic term)|bite (generic term)|insect bite (generic term)
+mosquito boat|1
+(noun)|PT boat|mosquito craft|motor torpedo boat|torpedo boat (generic term)
+mosquito craft|1
+(noun)|PT boat|mosquito boat|motor torpedo boat|torpedo boat (generic term)
+mosquito fern|1
+(noun)|floating fern|Carolina pond fern|Azolla caroliniana|aquatic fern (generic term)|water fern (generic term)
+mosquito hawk|2
+(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|skeeter hawk|odonate (generic term)
+(noun)|nighthawk|bullbat|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+mosquito net|1
+(noun)|screen (generic term)
+mosquitofish|1
+(noun)|Gambusia affinis|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+moss|1
+(noun)|bryophyte (generic term)|nonvascular plant (generic term)
+moss-grown|2
+(adj)|mossy|covered (similar term)
+(adj)|fogyish|mossy|stick-in-the-mud|stodgy|unfashionable (similar term)|unstylish (similar term)
+moss-like|1
+(adj)|mosslike|vegetable (similar term)
+moss-trooper|1
+(noun)|marauder (generic term)|predator (generic term)|vulture (generic term)|piranha (generic term)
+moss agate|1
+(noun)|agate (generic term)
+moss animal|1
+(noun)|bryozoan|polyzoan|sea mat|sea moss|invertebrate (generic term)
+moss campion|1
+(noun)|Silene acaulis|silene (generic term)|campion (generic term)|catchfly (generic term)
+moss family|1
+(noun)|family (generic term)
+moss genus|1
+(noun)|genus (generic term)
+moss green|1
+(adj)|mosstone|chromatic (similar term)
+moss hart|1
+(noun)|Hart|Moss Hart|dramatist (generic term)|playwright (generic term)
+moss locust|1
+(noun)|bristly locust|rose acacia|Robinia hispida|shrub (generic term)|bush (generic term)
+moss phlox|1
+(noun)|moss pink|mountain phlox|dwarf phlox|Phlox subulata|phlox (generic term)
+moss pink|2
+(noun)|ground pink|fringed pink|Linanthus dianthiflorus|phlox (generic term)
+(noun)|mountain phlox|moss phlox|dwarf phlox|Phlox subulata|phlox (generic term)
+mossad|1
+(noun)|Mossad|international intelligence agency (generic term)
+mossback|1
+(noun)|conservative (generic term)|conservativist (generic term)
+mossbauer|1
+(noun)|Mossbauer|Rudolf Ludwig Mossbauer|nuclear physicist (generic term)
+mosslike|1
+(adj)|moss-like|vegetable (similar term)
+mosstone|1
+(adj)|moss green|chromatic (similar term)
+mossy|2
+(adj)|moss-grown|covered (similar term)
+(adj)|fogyish|moss-grown|stick-in-the-mud|stodgy|unfashionable (similar term)|unstylish (similar term)
+mossy-cup oak|1
+(noun)|bur oak|burr oak|mossycup oak|Quercus macrocarpa|white oak (generic term)
+mossy saxifrage|1
+(noun)|Saxifraga hypnoides|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+mossycup oak|1
+(noun)|bur oak|burr oak|mossy-cup oak|Quercus macrocarpa|white oak (generic term)
+most|4
+(adj)|fewest (antonym)
+(adj)|least (antonym)
+(adv)|to the highest degree|least (antonym)
+(adv)|about|just about|almost|all but|nearly|near|nigh|virtually|well-nigh
+most-favored-nation|1
+(adj)|treaty|pact|accord (related term)
+most-valuable|1
+(adj)|important (similar term)|of import (similar term)
+most especially|1
+(adv)|above all|most importantly
+most importantly|2
+(adv)|first and foremost
+(adv)|above all|most especially
+most recently|1
+(adv)|last
+most valuable player|1
+(noun)|MVP|player (generic term)|participant (generic term)
+mostaccioli|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+mostly|2
+(adv)|largely|for the most part
+(adv)|by and large|generally|more often than not
+mosul|1
+(noun)|Mosul|city (generic term)|metropolis (generic term)|urban center (generic term)
+mot|2
+(noun)|bon mot|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|MOT|MOT test|Ministry of Transportation test|test (generic term)|trial (generic term)|run (generic term)
+mot juste|1
+(noun)|wording (generic term)|diction (generic term)|phrasing (generic term)|phraseology (generic term)|choice of words (generic term)|verbiage (generic term)
+mot test|1
+(noun)|MOT|MOT test|Ministry of Transportation test|test (generic term)|trial (generic term)|run (generic term)
+motacilla|1
+(noun)|Motacilla|genus Motacilla|bird genus (generic term)
+motacillidae|1
+(noun)|Motacillidae|family Motacillidae|bird family (generic term)
+mote|1
+(noun)|atom|molecule|particle|corpuscle|speck|material (generic term)|stuff (generic term)
+motel|1
+(noun)|motor hotel (generic term)|motor inn (generic term)|motor lodge (generic term)|tourist court (generic term)|court (generic term)
+motel room|1
+(noun)|bedroom (generic term)|sleeping room (generic term)|chamber (generic term)|bedchamber (generic term)
+motet|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+moth|1
+(noun)|lepidopterous insect (generic term)|lepidopteron (generic term)|lepidopteran (generic term)
+moth-eaten|3
+(adj)|ratty|shabby|tatty|worn (similar term)
+(adj)|mothy|worn (similar term)
+(adj)|stale|dusty|unoriginal (similar term)
+moth-like|1
+(adj)|animal (similar term)
+moth-resistant|1
+(adj)|mothproof|impervious (similar term)|imperviable (similar term)
+moth bean|1
+(noun)|Vigna aconitifolia|Phaseolus aconitifolius|legume (generic term)|leguminous plant (generic term)
+moth miller|1
+(noun)|miller|moth (generic term)
+moth mullein|1
+(noun)|Verbascum blattaria|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+moth orchid|1
+(noun)|moth plant|orchid (generic term)|orchidaceous plant (generic term)
+moth plant|1
+(noun)|moth orchid|orchid (generic term)|orchidaceous plant (generic term)
+mothball|2
+(noun)|camphor ball|ball (generic term)|globe (generic term)|orb (generic term)
+(verb)|store (generic term)
+mother|7
+(noun)|female parent|parent (generic term)|male parent (antonym)|father (antonym)
+(noun)|yeast (generic term)|barm (generic term)
+(noun)|old woman (generic term)
+(noun)|abbess (generic term)|mother superior (generic term)|prioress (generic term)
+(noun)|inspiration (generic term)
+(verb)|fuss|overprotect|care (generic term)|give care (generic term)
+(verb)|beget|get|engender|father|sire|generate|bring forth|make (generic term)|create (generic term)
+mother's boy|1
+(noun)|mamma's boy|mama's boy|son (generic term)|boy (generic term)
+mother's daughter|1
+(noun)|daughter (generic term)|girl (generic term)
+mother's day|1
+(noun)|Mother's Day|day (generic term)
+mother's milk|1
+(noun)|milk (generic term)
+mother's son|1
+(noun)|male (generic term)|male person (generic term)
+mother-in-law|1
+(noun)|mother (generic term)|female parent (generic term)|in-law (generic term)|relative-in-law (generic term)
+mother-in-law's tongue|2
+(noun)|snake plant|Sansevieria trifasciata|sansevieria (generic term)|bowstring hemp (generic term)
+(noun)|dumb cane|mother-in-law plant|Dieffenbachia sequine|arum (generic term)|aroid (generic term)
+mother-in-law plant|1
+(noun)|dumb cane|mother-in-law's tongue|Dieffenbachia sequine|arum (generic term)|aroid (generic term)
+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 (similar term)
+mother-of-pearl|1
+(noun)|nacre|shell (generic term)
+mother-of-pearl cloud|1
+(noun)|nacreous cloud|cloud (generic term)
+mother-of-thousands|1
+(noun)|strawberry geranium|strawberry saxifrage|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+mother board|1
+(noun)|CPU board|circuit board (generic term)|circuit card (generic term)|board (generic term)|card (generic term)|plug-in (generic term)|add-in (generic term)
+mother carey's chicken|1
+(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel (generic term)
+mother carey's hen|1
+(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel (generic term)
+mother cell|1
+(noun)|cell (generic term)
+mother country|1
+(noun)|fatherland|homeland|motherland|country of origin|native land|country (generic term)|state (generic term)|land (generic term)
+mother figure|1
+(noun)|woman (generic term)|adult female (generic term)
+mother fucker|1
+(noun)|asshole|bastard|cocksucker|dickhead|shit|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+mother goose|1
+(noun)|Mother Goose|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+mother hen|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|hen (generic term)|biddy (generic term)
+mother hubbard|1
+(noun)|Mother Hubbard|muumuu|dress (generic term)|frock (generic term)
+mother jones|1
+(noun)|Jones|Mother Jones|Mary Harris Jones|labor leader (generic term)
+mother lode|1
+(noun)|champion lode|lode (generic term)|load (generic term)
+mother of thyme|1
+(noun)|basil thyme|basil balm|Acinos arvensis|Satureja acinos|herb (generic term)|herbaceous plant (generic term)
+mother seton|1
+(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader (generic term)
+mother superior|1
+(noun)|abbess|prioress|superior (generic term)
+mother teresa|1
+(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun (generic term)|missionary (generic term)|missioner (generic term)
+mother theresa|1
+(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun (generic term)|missionary (generic term)|missioner (generic term)
+mother tongue|1
+(noun)|maternal language|first language|natural language (generic term)|tongue (generic term)
+mother wit|1
+(noun)|common sense|good sense|gumption|horse sense|sense|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+motherese|1
+(noun)|baby talk|babytalk|non-standard speech (generic term)
+motherfucker|1
+(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+motherhood|1
+(noun)|maternity|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+motherland|1
+(noun)|fatherland|homeland|mother country|country of origin|native land|country (generic term)|state (generic term)|land (generic term)
+motherless|1
+(adj)|unparented (similar term)|parentless (similar term)
+motherlike|1
+(adj)|maternal (similar term)
+motherliness|1
+(noun)|maternalism|maternal quality|maternity|parental quality (generic term)
+motherly|2
+(adj)|maternal (similar term)
+(adv)|maternally
+motherwell|1
+(noun)|Motherwell|Robert Motherwell|painter (generic term)
+motherwort|1
+(noun)|Leonurus cardiaca|herb (generic term)|herbaceous plant (generic term)
+mothproof|2
+(adj)|moth-resistant|impervious (similar term)|imperviable (similar term)
+(verb)|protect (generic term)
+mothy|2
+(adj)|moth-eaten|worn (similar term)
+(adj)|troubled (similar term)
+motif|3
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|motive|theme (generic term)|melodic theme (generic term)|musical theme (generic term)|idea (generic term)
+(noun)|theme|idea (generic term)|thought (generic term)
+motile|2
+(adj)|mobile (similar term)
+(noun)|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+motility|2
+(noun)|mobility (generic term)|immotility (antonym)
+(noun)|motion|movement|move|change (generic term)
+motion|8
+(noun)|movement|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|gesture|visual communication (generic term)
+(noun)|movement|move|motility|change (generic term)
+(noun)|state (generic term)|motionlessness (antonym)
+(noun)|question|proposal (generic term)
+(noun)|movement|move|change (generic term)
+(noun)|apparent motion|apparent movement|movement|optical illusion (generic term)
+(verb)|gesticulate|gesture|communicate (generic term)|intercommunicate (generic term)
+motion-picture camera|1
+(noun)|movie camera|cine-camera|camera (generic term)|photographic camera (generic term)
+motion-picture fan|1
+(noun)|moviegoer|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+motion-picture film|1
+(noun)|movie film|cine-film|film (generic term)|photographic film (generic term)
+motion-picture photography|1
+(noun)|filming|cinematography|photography (generic term)|picture taking (generic term)
+motion-picture show|1
+(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|picture show|pic|flick|show (generic term)
+motion picture|1
+(noun)|movie|film|picture|moving picture|moving-picture show|motion-picture show|picture show|pic|flick|show (generic term)
+motion sickness|1
+(noun)|kinetosis|ailment (generic term)|complaint (generic term)|ill (generic term)|nausea (generic term)|sickness (generic term)
+motion study|1
+(noun)|time and motion study|time-and-motion study|time-motion study|time study|work study|examination (generic term)|scrutiny (generic term)
+motional|1
+(adj)|happening|occurrence|occurrent|natural event (related term)
+motionless|1
+(adj)|inactive|static|still|nonmoving (similar term)|unmoving (similar term)
+motionlessness|1
+(noun)|stillness|lifelessness|state (generic term)|motion (antonym)
+motivate|1
+(verb)|actuate|propel|move|prompt|incite|cause (generic term)|do (generic term)|make (generic term)
+motivated|1
+(adj)|actuated (similar term)|driven (similar term)|impelled (similar term)|intended (related term)|unmotivated (antonym)
+motivating|2
+(adj)|motivative|motive|causative (similar term)
+(noun)|motivation|act (generic term)|human action (generic term)|human activity (generic term)
+motivation|3
+(noun)|motive|need|psychological feature (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|motivating|act (generic term)|human action (generic term)|human activity (generic term)
+motivational|1
+(adj)|psychological feature (related term)
+motivative|1
+(adj)|motive|motivating|causative (similar term)
+motivator|1
+(noun)|incentive|inducement|rational motive (generic term)|disincentive (antonym)
+motive|4
+(adj)|motor|causative (similar term)
+(adj)|motivative|motivating|causative (similar term)
+(noun)|motivation|need|psychological feature (generic term)
+(noun)|motif|theme (generic term)|melodic theme (generic term)|musical theme (generic term)|idea (generic term)
+motive power|1
+(noun)|locomotion|motivity|mobility (generic term)
+motiveless|1
+(adj)|unprovoked|wanton|unmotivated (similar term)
+motivity|1
+(noun)|locomotion|motive power|mobility (generic term)
+motley|7
+(adj)|assorted|miscellaneous|mixed|sundry|heterogeneous (similar term)|heterogenous (similar term)
+(adj)|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|potpourri|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|garment (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|vary|variegate|diversify (generic term)
+(verb)|parti-color|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+motley fool|1
+(noun)|jester|fool|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+motmot|1
+(noun)|momot|coraciiform bird (generic term)
+motoneuron|1
+(noun)|motor neuron|efferent neuron|motor nerve fiber|nerve cell (generic term)|neuron (generic term)
+motor|5
+(adj)|centrifugal|efferent (similar term)|motorial (similar term)
+(adj)|motive|causative (similar term)
+(noun)|machine (generic term)
+(noun)|agent (generic term)
+(verb)|drive|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+motor-assisted|1
+(adj)|assisted (similar term)|aided (similar term)
+motor aphasia|1
+(noun)|Broca's aphasia|ataxic aphasia|expressive aphasia|nonfluent aphasia|aphasia (generic term)
+motor area|1
+(noun)|motor region|motor cortex|Rolando's area|excitable area|cortical area (generic term)|cortical region (generic term)
+motor ataxia|1
+(noun)|ataxia|ataxy|dyssynergia|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+motor city|1
+(noun)|Detroit|Motor City|Motown|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+motor control|1
+(noun)|control (generic term)
+motor cortex|1
+(noun)|motor area|motor region|Rolando's area|excitable area|cortical area (generic term)|cortical region (generic term)
+motor end plate|1
+(noun)|end-plate|endplate|end organ (generic term)
+motor home|1
+(noun)|camper|camping bus|recreational vehicle (generic term)|RV (generic term)|R.V. (generic term)
+motor horn|1
+(noun)|automobile horn|car horn|horn|hooter|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+motor hotel|1
+(noun)|motor inn|motor lodge|tourist court|court|hotel (generic term)
+motor inn|1
+(noun)|motor hotel|motor lodge|tourist court|court|hotel (generic term)
+motor lodge|1
+(noun)|motor hotel|motor inn|tourist court|court|hotel (generic term)
+motor memory|1
+(noun)|muscle memory|long-term memory (generic term)|LTM (generic term)
+motor mower|1
+(noun)|power mower|lawn mower (generic term)|mower (generic term)|hand mower (antonym)
+motor nerve|1
+(noun)|efferent nerve|efferent|nerve (generic term)|nervus (generic term)
+motor nerve fiber|1
+(noun)|motor neuron|efferent neuron|motoneuron|nerve cell (generic term)|neuron (generic term)
+motor neuron|1
+(noun)|efferent neuron|motor nerve fiber|motoneuron|nerve cell (generic term)|neuron (generic term)
+motor oil|1
+(noun)|oil (generic term)|lubricant (generic term)|lubricator (generic term)|lubricating substance (generic term)|lube (generic term)
+motor pool|1
+(noun)|fleet (generic term)
+motor region|1
+(noun)|motor area|motor cortex|Rolando's area|excitable area|cortical area (generic term)|cortical region (generic term)
+motor scooter|1
+(noun)|scooter|wheeled vehicle (generic term)
+motor torpedo boat|1
+(noun)|PT boat|mosquito boat|mosquito craft|torpedo boat (generic term)
+motor vehicle|1
+(noun)|automotive vehicle|self-propelled vehicle (generic term)
+motorbike|2
+(noun)|minibike|motorcycle (generic term)|bike (generic term)
+(verb)|motorcycle|cycle|ride (generic term)
+motorboat|2
+(noun)|powerboat|boat (generic term)
+(verb)|boat (generic term)
+motorbus|1
+(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorcoach|omnibus|passenger vehicle|public transport (generic term)
+motorcade|1
+(noun)|procession (generic term)
+motorcar|1
+(noun)|car|auto|automobile|machine|motor vehicle (generic term)|automotive vehicle (generic term)
+motorcoach|1
+(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|omnibus|passenger vehicle|public transport (generic term)
+motorcycle|2
+(noun)|bike|motor vehicle (generic term)|automotive vehicle (generic term)
+(verb)|motorbike|cycle|ride (generic term)
+motorcycle cop|1
+(noun)|motorcycle policeman|speed cop|policeman (generic term)|police officer (generic term)|officer (generic term)
+motorcycle policeman|1
+(noun)|motorcycle cop|speed cop|policeman (generic term)|police officer (generic term)|officer (generic term)
+motorcycling|1
+(noun)|cycling (generic term)
+motorcyclist|1
+(noun)|traveler (generic term)|traveller (generic term)
+motored|1
+(adj)|motorized|motorised|bimotored (similar term)|trimotored (similar term)|unmotorized (antonym)
+motorial|1
+(adj)|efferent|centrifugal (similar term)|motor (similar term)|corticoefferent (similar term)|corticofugal (similar term)|corticifugal (similar term)|neuromotor (similar term)|afferent (antonym)
+motoring|1
+(noun)|driving (generic term)
+motorisation|1
+(noun)|motorization|implementation (generic term)|effectuation (generic term)
+motorise|1
+(verb)|mechanize|mechanise|motorize|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+motorised|1
+(adj)|motorized|motored|bimotored (similar term)|trimotored (similar term)|unmotorized (antonym)
+motorist|1
+(noun)|automobilist|driver (generic term)
+motorization|1
+(noun)|motorisation|implementation (generic term)|effectuation (generic term)
+motorize|2
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|mechanize|mechanise|motorise|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+motorized|2
+(adj)|motorised|motored|bimotored (similar term)|trimotored (similar term)|unmotorized (antonym)
+(adj)|mechanized|mechanised|mobile (similar term)
+motorized wheelchair|1
+(noun)|wheelchair (generic term)
+motorless|1
+(adj)|unmotorized|unmotorised|motorized (antonym)
+motorman|1
+(noun)|operator (generic term)|manipulator (generic term)
+motormouth|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+motortruck|1
+(noun)|truck|motor vehicle (generic term)|automotive vehicle (generic term)
+motorway|1
+(noun)|expressway|freeway|pike|state highway|superhighway|throughway|thruway|highway (generic term)|main road (generic term)
+motown|1
+(noun)|Detroit|Motor City|Motown|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+motrin|1
+(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+mott|1
+(noun)|Mott|Lucretia Coffin Mott|suffragist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+mottle|3
+(noun)|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(verb)|streak|blotch|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|dapple|cloud|spot (generic term)
+mottled|1
+(adj)|dappled|patterned (similar term)
+mottling|1
+(noun)|marking (generic term)
+motto|1
+(noun)|slogan|catchword|shibboleth|saying (generic term)|expression (generic term)|locution (generic term)
+moue|1
+(noun)|pout|wry face|grimace (generic term)|face (generic term)
+moufflon|1
+(noun)|mouflon|Ovis musimon|mountain sheep (generic term)
+mouflon|1
+(noun)|moufflon|Ovis musimon|mountain sheep (generic term)
+moujik|1
+(noun)|muzhik|mujik|muzjik|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+moukden|1
+(noun)|Shenyang|Mukden|Moukden|Fengtien|city (generic term)|metropolis (generic term)|urban center (generic term)
+mould|7
+(noun)|mold|soil (generic term)|dirt (generic term)
+(noun)|mold|fungus (generic term)
+(noun)|mold|molding|moulding|modeling|clay sculpture|sculpture (generic term)
+(noun)|mold|cast|container (generic term)
+(verb)|model|mold|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|cast|mold|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|shape|form|work|mold|forge|create from raw material (generic term)|create from raw stuff (generic term)
+mouldboard|1
+(noun)|moldboard|wedge (generic term)
+mouldboard plough|1
+(noun)|moldboard plow|plow (generic term)|plough (generic term)
+moulder|1
+(verb)|decompose|rot|molder|decay (generic term)
+moulding|4
+(noun)|molding|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|molding|border|edge (generic term)|margin (generic term)
+(noun)|mold|mould|molding|modeling|clay sculpture|sculpture (generic term)
+(noun)|modeling|modelling|molding|sculpture (generic term)|carving (generic term)
+mouldy|1
+(adj)|moldy|musty|stale (similar term)
+moulmein|1
+(noun)|Moulmein|Mawlamyine|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+moult|2
+(noun)|molt|molting|moulting|ecdysis|shedding (generic term)|sloughing (generic term)
+(verb)|shed|molt|exuviate|slough|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+moulter|1
+(noun)|molter|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+moulting|1
+(noun)|molt|molting|moult|ecdysis|shedding (generic term)|sloughing (generic term)
+mound|6
+(noun)|hill|pitcher's mound|baseball equipment (generic term)
+(noun)|knoll|hillock|hummock|hammock|hill (generic term)
+(noun)|pile|heap|agglomerate|cumulation|cumulus|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|hill|structure (generic term)|construction (generic term)
+(noun)|pitcher|position (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+mound-bird|1
+(noun)|megapode|mound bird|mound builder|scrub fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+mound bird|1
+(noun)|megapode|mound-bird|mound builder|scrub fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+mound builder|2
+(noun)|Mound Builder|primitive (generic term)|primitive person (generic term)
+(noun)|megapode|mound bird|mound-bird|scrub fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+mound over|2
+(verb)|cover (generic term)
+(verb)|mound (generic term)
+mount|13
+(noun)|saddle horse|riding horse|horse (generic term)|Equus caballus (generic term)
+(noun)|climb|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(noun)|mountain|natural elevation (generic term)|elevation (generic term)
+(noun)|setting|mounting (generic term)
+(noun)|backing|layer (generic term)|bed (generic term)|strengthener (generic term)|reinforcement (generic term)
+(verb)|attach (generic term)
+(verb)|wax|climb|rise|increase (generic term)|wane (antonym)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|initiate (generic term)|pioneer (generic term)
+(verb)|hop on|mount up|get on|jump on|climb on|bestride|move (generic term)|hop out (antonym)
+(verb)|climb|climb up|go up|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|climb on (related term)|climb down (related term)
+(verb)|put on|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|ride|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+mount adams|1
+(noun)|Adams|Mount Adams|mountain peak (generic term)
+mount ararat|1
+(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak (generic term)
+mount asama|1
+(noun)|Asama|Mount Asama|volcano (generic term)
+mount athos|1
+(noun)|Athos|Mount Athos|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+mount bartle frere|1
+(noun)|Mount Bartle Frere|mountain peak (generic term)
+mount carmel|1
+(noun)|Mount Carmel|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+mount communism|1
+(noun)|Communism Peak|Mount Communism|Stalin Peak|Mount Garmo|mountain peak (generic term)
+mount cook lily|1
+(noun)|mountain lily|Mount Cook lily|Ranunculus lyalii|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+mount elbert|1
+(noun)|Mount Elbert|mountain peak (generic term)
+mount etna|1
+(noun)|Etna|Mount Etna|Mt Etna|volcano (generic term)
+mount everest|1
+(noun)|Everest|Mount Everest|Mt. Everest|mountain peak (generic term)
+mount fuji|1
+(noun)|Fuji|Mount Fuji|Fujiyama|Fujinoyama|Fuji-san|volcano (generic term)
+mount garmo|1
+(noun)|Communism Peak|Mount Communism|Stalin Peak|Mount Garmo|mountain peak (generic term)
+mount godwin austen|1
+(noun)|K2|Godwin Austen|Mount Godwin Austen|Dapsang|mountain peak (generic term)
+mount hubbard|1
+(noun)|Hubbard|Mount Hubbard|mountain peak (generic term)
+mount kanchenjunga|1
+(noun)|Kanchenjunga|Mount Kanchenjunga|Kanchanjanga|Kinchinjunga|mountain peak (generic term)
+mount kilimanjaro|1
+(noun)|Kilimanjaro|Mount Kilimanjaro|mountain peak (generic term)
+mount logan|1
+(noun)|Logan|Mount Logan|mountain peak (generic term)
+mount mckinley|1
+(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak (generic term)
+mount olympus|1
+(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak (generic term)
+mount orizaba|1
+(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano (generic term)
+mount parnassus|1
+(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak (generic term)
+mount pinatubo|1
+(noun)|Pinatubo|Mount Pinatubo|volcano (generic term)
+mount ranier|1
+(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak (generic term)
+mount ranier national park|1
+(noun)|Mount Ranier National Park|national park (generic term)
+mount rushmore|1
+(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak (generic term)
+mount rushmore state|1
+(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state (generic term)
+mount saint helens|1
+(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano (generic term)
+mount shasta|1
+(noun)|Shasta|Mount Shasta|mountain peak (generic term)
+mount sherman|1
+(noun)|Sherman|Mount Sherman|mountain peak (generic term)
+mount sinai|1
+(noun)|Sinai|Mount Sinai|mountain peak (generic term)
+mount st. helens|1
+(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano (generic term)
+mount tacoma|1
+(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak (generic term)
+mount up|1
+(verb)|hop on|mount|get on|jump on|climb on|bestride|move (generic term)|hop out (antonym)
+mount vernon|1
+(noun)|Mount Vernon|residence (generic term)
+mount vesuvius|1
+(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano (generic term)
+mount whitney|1
+(noun)|Whitney|Mount Whitney|mountain peak (generic term)
+mount wilson|1
+(noun)|Wilson|Mount Wilson|mountain peak (generic term)
+mountain|2
+(noun)|mount|natural elevation (generic term)|elevation (generic term)
+(noun)|tons|dozens|heaps|lots|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+mountain alder|2
+(noun)|mountain maple|Acer spicatum|maple (generic term)
+(noun)|white alder|Alnus rhombifolia|alder (generic term)|alder tree (generic term)
+mountain andromeda|1
+(noun)|fetterbush|mountain fetterbush|Pieris floribunda|shrub (generic term)|bush (generic term)
+mountain anemone|1
+(noun)|Alpine anemone|Anemone tetonensis|anemone (generic term)|windflower (generic term)
+mountain ash|3
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Eucalyptus regnans|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|Fraxinus texensis|ash (generic term)|ash tree (generic term)
+mountain avens|1
+(noun)|Dryas octopetala|subshrub (generic term)|suffrutex (generic term)
+mountain azalea|1
+(noun)|alpine azalea|Loiseleuria procumbens|shrub (generic term)|bush (generic term)
+mountain beaver|1
+(noun)|sewellel|Aplodontia rufa|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+mountain bike|1
+(noun)|all-terrain bike|off-roader|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+mountain birch|1
+(noun)|swamp birch|water birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+mountain blacksnake|1
+(noun)|black rat snake|blacksnake|pilot blacksnake|Elaphe obsoleta|rat snake (generic term)
+mountain bladder fern|1
+(noun)|Cystopteris montana|bladder fern (generic term)
+mountain blue berry|1
+(noun)|bilberry|thin-leaved bilberry|Viccinium membranaceum|blueberry (generic term)|blueberry bush (generic term)
+mountain box|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+mountain chain|1
+(noun)|range|mountain range|range of mountains|chain|chain of mountains|geological formation (generic term)|formation (generic term)
+mountain chinchilla|1
+(noun)|mountain viscacha|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+mountain clematis|1
+(noun)|purple clematis|purple virgin's bower|Clematis verticillaris|clematis (generic term)
+mountain climber|1
+(noun)|mountaineer|climber (generic term)|adventurer (generic term)|venturer (generic term)
+mountain climbing|1
+(noun)|mountaineering|climb (generic term)|mount (generic term)
+mountain clubmoss|1
+(noun)|fir clubmoss|little clubmoss|Lycopodium selago|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+mountain cranberry|2
+(noun)|cowberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+(noun)|lingonberry|cowberry|lowbush cranberry|berry (generic term)
+mountain daisy|1
+(noun)|mountain sandwort|mountain starwort|Arenaria groenlandica|sandwort (generic term)
+mountain devil|2
+(noun)|honeyflower|honey-flower|Lambertia formosa|shrub (generic term)|bush (generic term)
+(noun)|spiny lizard|Moloch horridus|moloch (generic term)
+mountain ebony|1
+(noun)|orchid tree|Bauhinia variegata|angiospermous tree (generic term)|flowering tree (generic term)
+mountain everlasting|1
+(noun)|cat's foot (generic term)|cat's feet (generic term)|pussytoes (generic term)|Antennaria dioica (generic term)
+mountain fern|1
+(noun)|Oreopteris limbosperma|Dryopteris oreopteris|fern (generic term)
+mountain fetterbush|1
+(noun)|fetterbush|mountain andromeda|Pieris floribunda|shrub (generic term)|bush (generic term)
+mountain fever|1
+(noun)|Rocky Mountain spotted fever|tick fever|spotted fever (generic term)
+mountain four o'clock|1
+(noun)|Mirabilis oblongifolia|four o'clock (generic term)
+mountain goat|1
+(noun)|Rocky Mountain goat|Oreamnos americanus|goat antelope (generic term)
+mountain gorilla|1
+(noun)|Gorilla gorilla beringei|gorilla (generic term)|Gorilla gorilla (generic term)
+mountain grape|1
+(noun)|Oregon grape|Oregon holly grape|hollygrape|holly-leaves barberry|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+mountain heath|1
+(noun)|Phyllodoce caerulea|Bryanthus taxifolius|heath (generic term)
+mountain hemlock|1
+(noun)|black hemlock|Tsuga mertensiana|hemlock (generic term)|hemlock tree (generic term)
+mountain hollyhock|1
+(noun)|Iliamna ruvularis|Iliamna acerifolia|mallow (generic term)
+mountain lady's slipper|1
+(noun)|Cypripedium montanum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+mountain laurel|2
+(noun)|wood laurel|American laurel|calico bush|Kalmia latifolia|kalmia (generic term)
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|Umbellularia californica|laurel (generic term)
+mountain lily|2
+(noun)|Lilium auratum|lily (generic term)
+(noun)|Mount Cook lily|Ranunculus lyalii|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+mountain lion|1
+(noun)|cougar|puma|catamount|painter|panther|Felis concolor|wildcat (generic term)
+mountain male fern|1
+(noun)|Dryopteris oreades|wood fern (generic term)|wood-fern (generic term)|woodfern (generic term)
+mountain man|1
+(noun)|frontiersman|backwoodsman|pioneer (generic term)
+mountain maple|1
+(noun)|mountain alder|Acer spicatum|maple (generic term)
+mountain mint|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+mountain nyala|1
+(noun)|Tragelaphus buxtoni|antelope (generic term)
+mountain oak|1
+(noun)|alpine ash|Eucalyptus delegatensis|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+mountain paca|1
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+mountain parsley fern|1
+(noun)|European parsley fern|Cryptogramma crispa|rock brake (generic term)
+mountain partridge|1
+(noun)|mountain quail|Oreortyx picta palmeri|partridge (generic term)
+mountain pass|1
+(noun)|pass|notch|location (generic term)
+mountain peak|1
+(noun)|peak (generic term)|crown (generic term)|crest (generic term)|top (generic term)|tip (generic term)|summit (generic term)
+mountain phlox|1
+(noun)|moss pink|moss phlox|dwarf phlox|Phlox subulata|phlox (generic term)
+mountain pine|3
+(noun)|pahautea|Libocedrus bidwillii|cedar (generic term)|cedar tree (generic term)
+(noun)|western white pine|silver pine|Pinus monticola|white pine (generic term)
+(noun)|Swiss mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+mountain pride|1
+(noun)|Penstemon newberryi|wildflower (generic term)|wild flower (generic term)
+mountain quail|1
+(noun)|mountain partridge|Oreortyx picta palmeri|partridge (generic term)
+mountain range|1
+(noun)|range|range of mountains|chain|mountain chain|chain of mountains|geological formation (generic term)|formation (generic term)
+mountain rice|1
+(noun)|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass (generic term)|rice grass (generic term)
+mountain rimu|1
+(noun)|Lepidothamnus laxifolius|Dacridium laxifolius|shrub (generic term)|bush (generic term)
+mountain rose|1
+(noun)|Rosa pendulina|rose (generic term)|rosebush (generic term)
+mountain sandwort|1
+(noun)|mountain starwort|mountain daisy|Arenaria groenlandica|sandwort (generic term)
+mountain sheep|1
+(noun)|wild sheep (generic term)
+mountain sickness|1
+(noun)|altitude sickness (generic term)
+mountain skink|1
+(noun)|Eumeces callicephalus|skink (generic term)|scincid (generic term)|scincid lizard (generic term)
+mountain spinach|1
+(noun)|garden orache|Atriplex hortensis|orach (generic term)|orache (generic term)
+mountain spleenwort|1
+(noun)|Asplenium montanum|spleenwort (generic term)
+mountain standard time|1
+(noun)|Mountain Time|Mountain Standard Time|MST|civil time (generic term)|standard time (generic term)|local time (generic term)
+mountain starwort|1
+(noun)|mountain sandwort|mountain daisy|Arenaria groenlandica|sandwort (generic term)
+mountain state|1
+(noun)|West Virginia|Mountain State|WV|American state (generic term)
+mountain sumac|1
+(noun)|dwarf sumac|black sumac|shining sumac|Rhus copallina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+mountain swamp gum|1
+(noun)|Eucalyptus camphora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+mountain tea|1
+(noun)|teaberry|wintergreen|checkerberry|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+mountain tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+mountain time|1
+(noun)|Mountain Time|Mountain Standard Time|MST|civil time (generic term)|standard time (generic term)|local time (generic term)
+mountain trail|1
+(noun)|trail (generic term)
+mountain viscacha|1
+(noun)|mountain chinchilla|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+mountain watercress|1
+(noun)|American watercress|Cardamine rotundifolia|watercress (generic term)
+mountain zebra|1
+(noun)|Equus zebra zebra|zebra (generic term)
+mountaineer|2
+(noun)|mountain climber|climber (generic term)|adventurer (generic term)|venturer (generic term)
+(verb)|climb (generic term)|climb up (generic term)|mount (generic term)|go up (generic term)
+mountaineering|1
+(noun)|mountain climbing|climb (generic term)|mount (generic term)
+mountainous|3
+(adj)|cragged|craggy|hilly|rough (similar term)|unsmooth (similar term)
+(adj)|large (similar term)|big (similar term)
+(adj)|upland (similar term)|highland (similar term)
+mountainside|1
+(noun)|versant|slope (generic term)|incline (generic term)|side (generic term)
+mountebank|1
+(noun)|charlatan|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+mounted|2
+(adj)|affixed (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+mounter|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|climber|ascender (generic term)
+mountie|1
+(noun)|Mountie|policeman (generic term)|police officer (generic term)|officer (generic term)
+mounties|1
+(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)|international law enforcement agency (generic term)
+mounting|2
+(noun)|climb|climbing|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+mourn|2
+(verb)|grieve (generic term)|sorrow (generic term)
+(verb)|observe (generic term)|celebrate (generic term)|keep (generic term)
+mourner|1
+(noun)|griever|sorrower|lamenter|unfortunate (generic term)|unfortunate person (generic term)
+mournful|2
+(adj)|plaintive|sorrowful (similar term)
+(adj)|doleful|sad (similar term)
+mournful widow|1
+(noun)|sweet scabious|pincushion flower|Scabiosa atropurpurea|scabious (generic term)|scabiosa (generic term)
+mournfulness|1
+(noun)|sorrowfulness|ruthfulness|sorrow (generic term)
+mourning|3
+(adj)|bereaved|bereft|grief-stricken|grieving|sorrowing|sorrowful (similar term)
+(noun)|bereavement|sadness (generic term)|sorrow (generic term)|sorrowfulness (generic term)
+(noun)|lamentation|activity (generic term)|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+mourning band|1
+(noun)|weed|band (generic term)
+mourning cloak|1
+(noun)|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+mourning cloak butterfly|1
+(noun)|mourning cloak|Camberwell beauty|Nymphalis antiopa|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+mourning dove|1
+(noun)|Zenaidura macroura|dove (generic term)
+mourning ring|1
+(noun)|ring (generic term)|band (generic term)
+mouse|6
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|shiner|black eye|bruise (generic term)|contusion (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|computer mouse|electronic device (generic term)
+(verb)|sneak|creep|pussyfoot|walk (generic term)|sneak away (related term)|sneak out (related term)
+(verb)|manipulate (generic term)
+mouse's nest|1
+(noun)|mouse nest|nest (generic term)
+mouse-colored|1
+(adj)|mousy|mousey|mouselike|chromatic (similar term)
+mouse-ear chickweed|1
+(noun)|mouse eared chickweed|mouse ear|clammy chickweed|chickweed|herb (generic term)|herbaceous plant (generic term)
+mouse-ear cress|1
+(noun)|Arabidopsis thaliana|cress (generic term)|cress plant (generic term)
+mouse-ear hawkweed|1
+(noun)|Pilosella officinarum|Hieracium pilocella|hawkweed (generic term)
+mouse-eared|1
+(adj)|eared (similar term)
+mouse-eared bat|1
+(noun)|carnivorous bat (generic term)|microbat (generic term)
+mouse-sized|1
+(adj)|sized (similar term)
+mouse-tooth forceps|1
+(noun)|forceps (generic term)
+mouse button|1
+(noun)|push button (generic term)|push (generic term)|button (generic term)
+mouse click|1
+(noun)|click|depression (generic term)
+mouse deer|1
+(noun)|chevrotain|ruminant (generic term)
+mouse ear|2
+(noun)|forget-me-not|Myosotis scorpiodes|herb (generic term)|herbaceous plant (generic term)
+(noun)|mouse-ear chickweed|mouse eared chickweed|clammy chickweed|chickweed|herb (generic term)|herbaceous plant (generic term)
+mouse eared chickweed|1
+(noun)|mouse-ear chickweed|mouse ear|clammy chickweed|chickweed|herb (generic term)|herbaceous plant (generic term)
+mouse hare|1
+(noun)|pika|rock rabbit|coney|cony|lagomorph (generic term)|gnawing mammal (generic term)
+mouse mat|1
+(noun)|mousepad|mat (generic term)
+mouse nest|1
+(noun)|mouse's nest|nest (generic term)
+mouselike|1
+(adj)|mousy|mousey|mouse-colored|chromatic (similar term)
+mousepad|1
+(noun)|mouse mat|mat (generic term)
+mouser|1
+(noun)|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+mousetrap|2
+(noun)|trap (generic term)
+(noun)|trap play|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+mousey|3
+(adj)|mousy|rodent|gnawer|gnawing animal (related term)
+(adj)|mousy|mouse-colored|mouselike|chromatic (similar term)
+(adj)|mousy|timid (similar term)
+moussaka|1
+(noun)|dish (generic term)
+mousse|4
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+(noun)|dish (generic term)
+(noun)|hair mousse|hair gel|toiletry (generic term)|toilet article (generic term)
+(verb)|gel|groom (generic term)|neaten (generic term)
+mousseline de sole|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+moussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+moustache|1
+(noun)|mustache|hair (generic term)
+moustache cup|1
+(noun)|mustache cup|cup (generic term)
+moustachio|1
+(noun)|mustachio|handle-bars|mustache (generic term)|moustache (generic term)
+mousy|3
+(adj)|mousey|timid (similar term)
+(adj)|mousey|rodent|gnawer|gnawing animal (related term)
+(adj)|mousey|mouse-colored|mouselike|chromatic (similar term)
+mouth|11
+(noun)|oral cavity|oral fissure|rima oris|rima (generic term)
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+(noun)|opening (generic term)|gap (generic term)
+(noun)|geological formation (generic term)|formation (generic term)
+(noun)|eater (generic term)|feeder (generic term)
+(noun)|mouthpiece|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|sass|sassing|backtalk|back talk|lip|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+(noun)|opening (generic term)
+(verb)|talk|speak|utter|verbalize|verbalise|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+(verb)|touch (generic term)
+mouth-to-mouth resuscitation|1
+(noun)|cardiopulmonary resuscitation|CPR|cardiac resuscitation|kiss of life|resuscitation (generic term)|emergency procedure (generic term)
+mouth-watering|1
+(adj)|savory|savoury|appetizing (similar term)|appetising (similar term)
+mouth bow|1
+(noun)|jew's harp|jews' harp|musical instrument (generic term)|instrument (generic term)
+mouth harp|1
+(noun)|harmonica|mouth organ|harp|free-reed instrument (generic term)
+mouth hole|1
+(noun)|hole (generic term)
+mouth off|1
+(verb)|rant|jabber|spout|rabbit on|rave|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+mouth organ|1
+(noun)|harmonica|harp|mouth harp|free-reed instrument (generic term)
+mouthbreeder|1
+(noun)|fish (generic term)
+mouthful|2
+(noun)|containerful (generic term)
+(noun)|taste|small indefinite quantity (generic term)|small indefinite amount (generic term)
+mouthless|1
+(adj)|astomatous|stomatous (antonym)
+mouthlike|1
+(adj)|stomatous (similar term)
+mouthpart|1
+(noun)|extremity (generic term)|appendage (generic term)|member (generic term)
+mouthpiece|6
+(noun)|aperture (generic term)
+(noun)|acoustic device (generic term)
+(noun)|mouth|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|gumshield|sports equipment (generic term)
+(noun)|tube (generic term)|tubing (generic term)
+(noun)|embouchure|aperture (generic term)
+mouthwash|1
+(noun)|gargle|solution (generic term)
+mouton|1
+(noun)|mutton|meat (generic term)
+movability|1
+(noun)|movableness|mobility (generic term)|immovableness (antonym)|immovability (antonym)
+movable|3
+(adj)|portable (similar term)
+(adj)|moveable|transferable|transferrable|transportable|mobile (similar term)
+(noun)|chattel|personal chattel|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+movable barrier|1
+(noun)|barrier (generic term)
+movable feast|1
+(noun)|moveable feast|feast day (generic term)|fete day (generic term)
+movableness|1
+(noun)|movability|mobility (generic term)|immovableness (antonym)|immovability (antonym)
+move|21
+(noun)|decision (generic term)|determination (generic term)|conclusion (generic term)
+(noun)|relocation|change (generic term)
+(noun)|motion|movement|motility|change (generic term)
+(noun)|motion|movement|change (generic term)
+(noun)|turn (generic term)|play (generic term)
+(verb)|travel|go|locomote|move on (related term)|move out (related term)|move back (related term)|go on (related term)|go up (related term)|go by (related term)|go off (related term)|go out (related term)|go by (related term)|go up (related term)|go down (related term)|go down (related term)|go down (related term)|go under (related term)|go on (related term)|go around (related term)|stay in place (antonym)
+(verb)|displace
+(verb)|move over (related term)|stand still (antonym)
+(verb)|stay (antonym)
+(verb)|go|proceed|act (generic term)|move (generic term)
+(verb)|be active|rest (antonym)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)
+(verb)|act|act on (related term)|act up (related term)|act upon (related term)|refrain (antonym)
+(verb)|affect|impress|strike
+(verb)|motivate|actuate|propel|prompt|incite|cause (generic term)|do (generic term)|make (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|sell (generic term)
+(verb)|go|run|change (generic term)
+(verb)|live (generic term)
+(verb)|go
+(verb)|make a motion|propose (generic term)|suggest (generic term)|advise (generic term)
+move around|2
+(verb)|turn|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|travel|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+move back|1
+(verb)|withdraw|retreat|pull away|draw back|recede|pull back|retire|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+move back and forth|1
+(verb)|move (generic term)
+move in|3
+(verb)|occupy (generic term)|reside (generic term)|lodge in (generic term)
+(verb)|pull in|get in|draw in|arrive (generic term)|get (generic term)|come (generic term)|pull out (antonym)
+(verb)|move (generic term)|move out (antonym)
+move in on|2
+(verb)|intrude (generic term)|irrupt (generic term)
+(verb)|take hold (generic term)|take charge (generic term)|take control (generic term)
+move into|1
+(verb)|enter|come in|get into|get in|go into|go in|move in (related term)|enter upon (related term)|exit (antonym)
+move involuntarily|1
+(verb)|move reflexively|move (generic term)
+move on|1
+(verb)|advance|progress|pass on|march on|go on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+move out|2
+(verb)|take out|remove
+(verb)|move (generic term)|move in (antonym)
+move over|1
+(verb)|give way|give|ease up|yield|move (generic term)
+move reflexively|1
+(verb)|move involuntarily|move (generic term)
+move through|1
+(verb)|transit|pass through|pass across|pass over|pass (generic term)|go through (generic term)|go across (generic term)
+move up|2
+(verb)|rise|lift|arise|go up|come up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|rise|change (generic term)
+moveable|1
+(adj)|movable|transferable|transferrable|transportable|mobile (similar term)
+moveable feast|1
+(noun)|movable feast|feast day (generic term)|fete day (generic term)
+moved|1
+(adj)|affected|stirred|touched|sick (similar term)|affected (related term)|emotional (related term)|unmoved (antonym)
+movement|11
+(noun)|motion|move|motility|change (generic term)
+(noun)|motion|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|motion|move|change (generic term)
+(noun)|social movement|front|social group (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|campaign|cause|crusade|drive|effort|venture (generic term)
+(noun)|apparent motion|motion|apparent movement|optical illusion (generic term)
+(noun)|bowel movement|bm|defecation (generic term)|laxation (generic term)|shitting (generic term)
+(noun)|drift|trend|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|action (generic term)|action mechanism (generic term)
+(noun)|change (generic term)
+movement for revenge|1
+(noun)|Tareekh e Kasas|Movement for Revenge|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+mover|4
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|proposer|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+(noun)|public mover|moving company|removal firm|removal company|company (generic term)
+mover and shaker|1
+(noun)|shaker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+movie|1
+(noun)|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show (generic term)
+movie actor|1
+(noun)|screen actor|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+movie camera|1
+(noun)|motion-picture camera|cine-camera|camera (generic term)|photographic camera (generic term)
+movie film|1
+(noun)|motion-picture film|cine-film|film (generic term)|photographic film (generic term)
+movie house|1
+(noun)|cinema|movie theater|movie theatre|picture palace|theater (generic term)|theatre (generic term)|house (generic term)
+movie industry|1
+(noun)|film industry|screenland|industry (generic term)
+movie maker|1
+(noun)|film maker|filmmaker|film producer|producer (generic term)
+movie making|1
+(noun)|moviemaking|film making|devising (generic term)|fashioning (generic term)|making (generic term)
+movie projector|1
+(noun)|cine projector|film projector|projector (generic term)
+movie star|1
+(noun)|film star|star (generic term)|principal (generic term)|lead (generic term)|screen actor (generic term)|movie actor (generic term)
+movie theater|1
+(noun)|cinema|movie theatre|movie house|picture palace|theater (generic term)|theatre (generic term)|house (generic term)
+movie theatre|1
+(noun)|cinema|movie theater|movie house|picture palace|theater (generic term)|theatre (generic term)|house (generic term)
+moviegoer|1
+(noun)|motion-picture fan|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+moviemaking|1
+(noun)|movie making|film making|devising (generic term)|fashioning (generic term)|making (generic term)
+movimiento revolucionario tupac anaru|1
+(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+moving|3
+(adj)|afoot (similar term)|agitated (similar term)|tossing (similar term)|ahorse (similar term)|ahorseback (similar term)|oncoming (similar term)|automotive (similar term)|self-propelled (similar term)|self-propelling (similar term)|awheel (similar term)|riding (similar term)|billowing (similar term)|rolling (similar term)|tumbling (similar term)|blown (similar term)|fast-flying (similar term)|flying (similar term)|aflare (similar term)|flaring (similar term)|flying (similar term)|waving (similar term)|flowing (similar term)|streaming (similar term)|heaving (similar term)|hurling (similar term)|hurtling (similar term)|itinerant (similar term)|road (similar term)|touring (similar term)|traveling (similar term)|kinetic (similar term)|mobile (similar term)|restless (similar term)|running (similar term)|soaring (similar term)|squirming (similar term)|twisting (similar term)|wiggling (similar term)|wiggly (similar term)|wriggling (similar term)|wriggly (similar term)|writhing (similar term)|vibrating (similar term)|vibratory (similar term)|unreeling (similar term)|unwinding (similar term)|whirling (similar term)|swirling (similar term)|mobile (related term)|nonmoving (antonym)
+(adj)|affecting (similar term)|poignant (similar term)|touching (similar term)|haunting (similar term)|heartwarming (similar term)|stirring (similar term)|soul-stirring (similar term)|emotional (related term)|impressive (related term)|stimulating (related term)|unmoving (antonym)
+(adj)|animated (similar term)|still (antonym)
+moving-coil galvanometer|1
+(noun)|galvanometer (generic term)
+moving-picture show|1
+(noun)|movie|film|picture|moving picture|motion picture|motion-picture show|picture show|pic|flick|show (generic term)
+moving company|1
+(noun)|mover|public mover|removal firm|removal company|company (generic term)
+moving expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+moving in|1
+(noun)|occupation|occupancy|taking possession|acquiring (generic term)|getting (generic term)
+moving picture|1
+(noun)|movie|film|picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show (generic term)
+moving ridge|1
+(noun)|wave|movement (generic term)|motion (generic term)
+moving staircase|1
+(noun)|escalator|moving stairway|stairway (generic term)|staircase (generic term)
+moving stairway|1
+(noun)|escalator|moving staircase|stairway (generic term)|staircase (generic term)
+moving van|1
+(noun)|van (generic term)
+mow|3
+(noun)|hayloft|haymow|loft (generic term)|attic (generic term)|garret (generic term)
+(verb)|cut down|cut (generic term)
+(verb)|pout|mop|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+mow down|1
+(verb)|massacre|slaughter|kill (generic term)
+mower|1
+(noun)|lawn mower|garden tool (generic term)|lawn tool (generic term)
+mown|1
+(adj)|cut|new-mown (similar term)|unmown (antonym)
+moxie|1
+(noun)|backbone|grit|guts|sand|gumption|fortitude (generic term)
+moxie plum|1
+(noun)|creeping snowberry|maidenhair berry|Gaultheria hispidula|shrublet (generic term)
+moynihan|1
+(noun)|Moynihan|Daniel Patrick Moynihan|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+mozambican|3
+(adj)|Mozambican|African country|African nation (related term)
+(adj)|Mozambican|African (related term)
+(noun)|Mozambican|African (generic term)
+mozambique|1
+(noun)|Mozambique|Republic of Mozambique|Mocambique|African country (generic term)|African nation (generic term)
+mozambique channel|1
+(noun)|Mozambique Channel|channel (generic term)
+mozambique monetary unit|1
+(noun)|Mozambique monetary unit|monetary unit (generic term)
+mozart|2
+(noun)|Mozart|Wolfgang Amadeus Mozart|composer (generic term)
+(noun)|Mozart|music (generic term)
+mozartean|1
+(adj)|Mozartian|Mozartean|composer (related term)
+mozartian|1
+(adj)|Mozartian|Mozartean|composer (related term)
+mozzarella|1
+(noun)|cheese (generic term)
+mp|2
+(noun)|military policeman|MP|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|military police|MP|force (generic term)|personnel (generic term)
+mph|2
+(noun)|miles per hour|rate (generic term)
+(noun)|miles per hour|reading (generic term)|meter reading (generic term)|indication (generic term)
+mps|1
+(noun)|mononuclear phagocyte system|MPS|system of macrophages|system (generic term)
+mr|1
+(noun)|mister|Mr|Mr.|title (generic term)|title of respect (generic term)|form of address (generic term)
+mr.|1
+(noun)|mister|Mr|Mr.|title (generic term)|title of respect (generic term)|form of address (generic term)
+mr. moto|1
+(noun)|Mr. Moto|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+mrd|1
+(noun)|machine readable dictionary|MRD|electronic dictionary|lexical database (generic term)
+mri|1
+(noun)|magnetic resonance imaging|MRI|imaging (generic term)|tomography (generic term)
+mrna|1
+(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid (generic term)|RNA (generic term)
+mrs|1
+(noun)|Mrs|Mrs.|title (generic term)|title of respect (generic term)|form of address (generic term)
+mrs.|1
+(noun)|Mrs|Mrs.|title (generic term)|title of respect (generic term)|form of address (generic term)
+mrs. gandhi|1
+(noun)|Gandhi|Indira Gandhi|Indira Nehru Gandhi|Mrs. Gandhi|statesman (generic term)|solon (generic term)|national leader (generic term)
+mrs. henry wood|1
+(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer (generic term)|author (generic term)
+mrs. humphrey ward|1
+(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer (generic term)|author (generic term)
+mrs. simpson|1
+(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee (generic term)|grass widow (generic term)
+mrta|1
+(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ms|5
+(noun)|multiple sclerosis|MS|disseminated sclerosis|disseminated multiple sclerosis|sclerosis (generic term)|induration (generic term)|degenerative disorder (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+(noun)|Mississippi|Magnolia State|MS|American state (generic term)
+(noun)|Master of Science|MS|SM|MSc|master's degree (generic term)
+(noun)|manuscript|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|Ms|Ms.|title (generic term)|title of respect (generic term)|form of address (generic term)
+ms-dos|1
+(noun)|MS-DOS|Microsoft disk operating system|DOS (generic term)|disk operating system (generic term)
+ms.|1
+(noun)|Ms|Ms.|title (generic term)|title of respect (generic term)|form of address (generic term)
+msasa|1
+(noun)|Brachystegia speciformis|tree (generic term)
+msb|1
+(noun)|mutual savings bank|MSB|savings bank (generic term)
+msc|1
+(noun)|Master of Science|MS|SM|MSc|master's degree (generic term)
+msec|1
+(noun)|millisecond|time unit (generic term)|unit of time (generic term)
+msg|1
+(noun)|monosodium glutamate|MSG|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+msh|1
+(noun)|melanocyte-stimulating hormone|MSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+mst|1
+(noun)|Mountain Time|Mountain Standard Time|MST|civil time (generic term)|standard time (generic term)|local time (generic term)
+mt|4
+(noun)|meitnerium|Mt|element 109|atomic number 109|chemical element (generic term)|element (generic term)
+(noun)|metric ton|MT|tonne|t|metric weight unit (generic term)|weight unit (generic term)
+(noun)|Montana|Treasure State|MT|American state (generic term)
+(noun)|machine translation|MT|artificial intelligence (generic term)|AI (generic term)|computational linguistics (generic term)
+mt. ararat|1
+(noun)|Ararat|Mount Ararat|Mt. Ararat|mountain peak (generic term)
+mt. everest|1
+(noun)|Everest|Mount Everest|Mt. Everest|mountain peak (generic term)
+mt. mckinley|1
+(noun)|McKinley|Mount McKinley|Mt. McKinley|Denali|mountain peak (generic term)
+mt. olympus|1
+(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak (generic term)
+mt. ranier|1
+(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak (generic term)
+mt. rushmore|1
+(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak (generic term)
+mt. st. helens|1
+(noun)|Mount Saint Helens|Mount St. Helens|Mt. St. Helens|volcano (generic term)
+mt. vesuvius|1
+(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano (generic term)
+mt etna|1
+(noun)|Etna|Mount Etna|Mt Etna|volcano (generic term)
+mt orizaba|1
+(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano (generic term)
+mu|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+mu-meson|1
+(noun)|muon|negative muon|lepton (generic term)
+muadhdhin|1
+(noun)|muezzin|muazzin|announcer (generic term)
+muammar al-qaddafi|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+muammar el-qaddafi|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+muazzin|1
+(noun)|muezzin|muadhdhin|announcer (generic term)
+mubarak|1
+(noun)|Mubarak|Hosni Mubarak|statesman (generic term)|solon (generic term)|national leader (generic term)
+much|5
+(adj)|overmuch (similar term)|some (similar term)|such (similar term)|so much (similar term)|untold (similar term)|more (related term)|more than (related term)|little (antonym)
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(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 (generic term)
+mucic acid|1
+(noun)|carboxylic acid (generic term)
+muciferous|1
+(adj)|secretion (related term)
+mucilage|2
+(noun)|gum (generic term)
+(noun)|glue|gum|cement (generic term)
+mucilaginous|1
+(adj)|gluey|glutinous|gummy|pasty|sticky|viscid|viscous|adhesive (similar term)
+mucin|1
+(noun)|glycoprotein (generic term)
+mucinoid|1
+(adj)|glycoprotein (related term)
+mucinous|1
+(adj)|glycoprotein (related term)
+muck|5
+(noun)|sludge|slime|goo|gook|guck|gunk|ooze|substance (generic term)|matter (generic term)
+(noun)|droppings|dung|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|manure|spread (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|mire|mud|muck up|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+muck about|1
+(verb)|putter|mess around|potter|tinker|monkey|monkey around|muck around|work (generic term)
+muck around|1
+(verb)|putter|mess around|potter|tinker|monkey|monkey around|muck about|work (generic term)
+muck up|2
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|mire|muck|mud|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+muckheap|1
+(noun)|dunghill|midden|muckhill|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+muckhill|1
+(noun)|dunghill|midden|muckheap|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+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 (generic term)|large indefinite amount (generic term)
+muckrake|1
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+muckraker|1
+(noun)|mudslinger|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+muckraking|1
+(noun)|exposure (generic term)
+mucky|2
+(adj)|boggy|marshy|miry|muddy|quaggy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+(adj)|muddy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+mucocutaneous|1
+(adj)|membrane|tissue layer (related term)|connective tissue|body covering (related term)
+mucocutaneous leishmaniasis|1
+(noun)|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+mucocutaneous lymph node syndrome|1
+(noun)|Kawasaki disease|disease (generic term)
+mucoid|2
+(adj)|mucoidal|secretion (related term)
+(noun)|glycoprotein (generic term)
+mucoidal|1
+(adj)|mucoid|secretion (related term)
+mucopolysaccharide|1
+(noun)|polysaccharide (generic term)|polyose (generic term)
+mucopolysaccharidosis|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+mucopurulent|1
+(adj)|secretion (related term)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+mucor|1
+(noun)|mold (generic term)|mould (generic term)
+mucoraceae|1
+(noun)|Mucoraceae|family Mucoraceae|fungus family (generic term)
+mucorales|1
+(noun)|Mucorales|order Mucorales|fungus order (generic term)
+mucosa|1
+(noun)|mucous membrane|membrane (generic term)|tissue layer (generic term)
+mucosal|1
+(adj)|membrane|tissue layer (related term)
+mucose|1
+(adj)|mucous|secretion (related term)
+mucous|1
+(adj)|mucose|secretion (related term)
+mucous colitis|1
+(noun)|irritable bowel syndrome|spastic colon|colitis (generic term)|inflammatory bowel disease (generic term)
+mucous membrane|1
+(noun)|mucosa|membrane (generic term)|tissue layer (generic term)
+mucous secretion|1
+(noun)|mucus|secretion (generic term)
+mucoviscidosis|1
+(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|pancreatic fibrosis|fibrosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+mucuna|1
+(noun)|shrub (generic term)|bush (generic term)
+mucuna aterrima|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+mucuna deeringiana|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+mucuna pruriens utilis|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+mucus|1
+(noun)|mucous secretion|secretion (generic term)
+mud|4
+(noun)|clay|soil (generic term)|dirt (generic term)
+(noun)|slander (generic term)
+(verb)|mire|muck|muck up|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|plaster (generic term)|daub (generic term)
+mud-beplastered|1
+(adj)|covered (similar term)
+mud-brick|1
+(adj)|brick (related term)
+mud-wrestle|1
+(verb)|mudwrestle|wrestle (generic term)
+mud bath|1
+(noun)|bath (generic term)
+mud brick|1
+(noun)|brick (generic term)
+mud dauber|1
+(noun)|sphecoid wasp (generic term)|sphecoid (generic term)
+mud digger|1
+(noun)|ditch digger|digger (generic term)
+mud flat|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+mud hen|1
+(noun)|American coot|marsh hen|water hen|Fulica americana|coot (generic term)
+mud midget|1
+(noun)|bogmat|Wolffiella gladiata|duckweed (generic term)
+mud pie|1
+(noun)|mud (generic term)|clay (generic term)
+mud plantain|1
+(noun)|water star grass|Heteranthera dubia|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+mud puddle|1
+(noun)|pool (generic term)|puddle (generic term)
+mud puppy|3
+(noun)|Necturus maculosus|salamander (generic term)
+(noun)|hellbender|Cryptobranchus alleganiensis|salamander (generic term)
+(noun)|axolotl|Ambystoma mexicanum|ambystomid (generic term)|ambystomid salamander (generic term)
+mud stain|1
+(noun)|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+mud turtle|1
+(noun)|turtle (generic term)
+mudcat|2
+(noun)|catfish|freshwater fish (generic term)
+(noun)|flathead catfish|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+mudder|1
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+muddied|1
+(adj)|dirty|dingy|muddy|impure (similar term)
+muddiness|3
+(noun)|wateriness|sloppiness|wetness (generic term)
+(noun)|confusion|mental confusion|confusedness|disarray|cognitive state (generic term)|state of mind (generic term)
+(noun)|cloudiness|murkiness|opacity (generic term)|opaqueness (generic term)
+muddle|4
+(noun)|clutter|jumble|fuddle|mare's nest|welter|smother|disorderliness (generic term)|disorder (generic term)
+(noun)|fix|hole|jam|mess|pickle|kettle of fish|difficulty (generic term)
+(verb)|puddle|roil (generic term)|rile (generic term)
+(verb)|addle|puddle|jumble (generic term)|confuse (generic term)|mix up (generic term)
+muddled|1
+(adj)|addled|befuddled|muzzy|woolly|wooly|woolly-headed|wooly-minded|confused (similar term)
+muddleheaded|1
+(adj)|addlebrained|addlepated|potty|puddingheaded|confused (similar term)
+muddy|7
+(adj)|boggy|marshy|miry|mucky|quaggy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+(adj)|mucky|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|dirty|dingy|muddied|impure (similar term)
+(adj)|cloudy|mirky|murky|turbid|opaque (similar term)
+(verb)|muddy up|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|confuse (generic term)|blur (generic term)|obscure (generic term)|obnubilate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+muddy up|1
+(verb)|muddy|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+mudguard|1
+(noun)|splash guard|splash-guard|fender (generic term)|wing (generic term)
+mudhif|1
+(noun)|hovel (generic term)|hut (generic term)|hutch (generic term)|shack (generic term)|shanty (generic term)
+mudra|1
+(noun)|gesture (generic term)
+mudskipper|1
+(noun)|mudspringer|goby (generic term)|gudgeon (generic term)
+mudslide|1
+(noun)|landslide (generic term)|landslip (generic term)
+mudslinger|1
+(noun)|muckraker|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+mudspringer|1
+(noun)|mudskipper|goby (generic term)|gudgeon (generic term)
+mudwrestle|1
+(verb)|mud-wrestle|wrestle (generic term)
+muenchen|1
+(noun)|Munich|Muenchen|city (generic term)|metropolis (generic term)|urban center (generic term)
+muenster|1
+(noun)|Muenster|cheese (generic term)
+muesli|1
+(noun)|breakfast food (generic term)
+muezzin|1
+(noun)|muazzin|muadhdhin|announcer (generic term)
+muff|4
+(noun)|handwear (generic term)|hand wear (generic term)
+(noun)|fumble|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|fail (generic term)|neglect (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+muffin|1
+(noun)|gem|quick bread (generic term)
+muffin man|1
+(noun)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)
+muffle|3
+(noun)|kiln (generic term)
+(verb)|smother|stifle|strangle|repress|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|mute|dull|damp|dampen|tone down|soften (generic term)
+muffled|2
+(adj)|dull|muted|softened|soft (similar term)
+(adj)|covered (similar term)
+muffler|3
+(noun)|silencer|acoustic device (generic term)
+(noun)|scarf (generic term)
+(noun)|damper|device (generic term)
+mufti|2
+(noun)|jurist (generic term)|legal expert (generic term)
+(noun)|civilian clothing (generic term)|civilian dress (generic term)|civilian garb (generic term)|plain clothes (generic term)
+mug|5
+(noun)|mugful|containerful (generic term)
+(noun)|chump|fool|gull|mark|patsy|fall guy|sucker|soft touch|victim (generic term)|dupe (generic term)
+(noun)|countenance|physiognomy|phiz|visage|kisser|smiler|face (generic term)|human face (generic term)
+(noun)|drinking vessel (generic term)
+(verb)|hold up (generic term)|stick up (generic term)
+mug's game|1
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+mug book|1
+(noun)|mug file|file (generic term)|data file (generic term)
+mug file|1
+(noun)|mug book|file (generic term)|data file (generic term)
+mug shot|1
+(noun)|mugshot|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+mug up|1
+(verb)|cram|grind away|drum|bone up|swot|get up|swot up|bone|study (generic term)|hit the books (generic term)
+mugful|1
+(noun)|mug|containerful (generic term)
+muggee|1
+(noun)|victim (generic term)
+mugger|1
+(noun)|robber (generic term)
+mugginess|1
+(noun)|humidity (generic term)|humidness (generic term)
+mugging|1
+(noun)|assault (generic term)
+muggins|1
+(noun)|fool|sap|saphead|tomfool|simpleton (generic term)|simple (generic term)
+muggy|1
+(adj)|steamy|sticky|wet (similar term)
+mugho pine|1
+(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugo pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+mugil|1
+(noun)|Mugil|genus Mugil|fish genus (generic term)
+mugil cephalus|1
+(noun)|striped mullet|Mugil cephalus|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+mugil curema|1
+(noun)|white mullet|Mugil curema|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+mugil liza|1
+(noun)|liza|Mugil liza|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+mugilidae|1
+(noun)|Mugilidae|family Mugilidae|fish family (generic term)
+mugiloidea|1
+(noun)|Mugiloidea|suborder Mugiloidea|animal order (generic term)
+mugo pine|1
+(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+mugshot|1
+(noun)|mug shot|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+mugwort|1
+(noun)|wormwood (generic term)
+mugwump|2
+(noun)|Mugwump|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|independent|fencesitter|individualist (generic term)
+muhammad|2
+(noun)|Muhammad|Elijah Muhammad|Black Muslim (generic term)
+(noun)|Mohammed|Mohammad|Muhammad|Mahomet|Mahound|prophet (generic term)
+muhammad ali|2
+(noun)|Mohammed Ali|Mehemet Ali|Muhammad Ali|soldier (generic term)
+(noun)|Ali|Muhammad Ali|Cassius Clay|Cassius Marcellus Clay|prizefighter (generic term)|gladiator (generic term)
+muhammad ali jinnah|1
+(noun)|Jinnah|Muhammad Ali Jinnah|statesman (generic term)|solon (generic term)|national leader (generic term)
+muhammadan|2
+(adj)|Muhammadan|Mohammedan|prophet (related term)
+(noun)|Mohammedan|Muhammedan|Muhammadan|follower (generic term)
+muhammadan calendar|1
+(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar (generic term)
+muhammadanism|1
+(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism (generic term)
+muhammedan|1
+(noun)|Mohammedan|Muhammedan|Muhammadan|follower (generic term)
+muharram|1
+(noun)|Muharram|Moharram|Muharrum|Islamic calendar month (generic term)
+muharrum|1
+(noun)|Muharram|Moharram|Muharrum|Islamic calendar month (generic term)
+muhlenbergia|1
+(noun)|Muhlenbergia|genus Muhlenbergia|monocot genus (generic term)|liliopsid genus (generic term)
+muhlenbergia schreberi|1
+(noun)|nimblewill|nimble Will|Muhlenbergia schreberi|grass (generic term)
+muir|1
+(noun)|Muir|John Muir|naturalist (generic term)|natural scientist (generic term)
+muishond|1
+(noun)|weasel (generic term)
+mujahadeen|1
+(noun)|mujahidin|mujahedin|mujahedeen|mujahadin|mujahideen|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahadein|1
+(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahideen|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahadin|1
+(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahideen|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahedeen|1
+(noun)|mujahidin|mujahedin|mujahadeen|mujahadin|mujahideen|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahedeen khalq|1
+(noun)|Mujahedeen Khalq|mujahidin (generic term)|mujahedin (generic term)|mujahedeen (generic term)|mujahadeen (generic term)|mujahadin (generic term)|mujahideen (generic term)|mujahadein (generic term)
+mujahedeen kompak|1
+(noun)|Mujahedeen Kompak|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+mujahedin|1
+(noun)|mujahidin|mujahedeen|mujahadeen|mujahadin|mujahideen|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahid|1
+(noun)|Muslim (generic term)|Moslem (generic term)
+mujahideen|1
+(noun)|mujahidin|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahidin|1
+(noun)|mujahedin|mujahedeen|mujahadeen|mujahadin|mujahideen|mujahadein|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+mujahidin-e khalq organization|1
+(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+mujik|1
+(noun)|muzhik|moujik|muzjik|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+mujtihad|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)|Muslim (generic term)|Moslem (generic term)
+mukalla|1
+(noun)|Mukalla|Al-Mukalla|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+mukataa|1
+(noun)|headquarters (generic term)|central office (generic term)|main office (generic term)|home office (generic term)|home base (generic term)
+mukden|1
+(noun)|Shenyang|Mukden|Moukden|Fengtien|city (generic term)|metropolis (generic term)|urban center (generic term)
+mulatto|1
+(noun)|Mulatto|mixed-blood (generic term)
+mulberry|2
+(noun)|mulberry tree|fruit tree (generic term)
+(noun)|berry (generic term)
+mulberry family|1
+(noun)|Moraceae|family Moraceae|dicot family (generic term)|magnoliopsid family (generic term)
+mulberry fig|1
+(noun)|sycamore|sycamore fig|Ficus sycomorus|fig tree (generic term)
+mulberry tree|1
+(noun)|mulberry|fruit tree (generic term)
+mulch|2
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|cover (generic term)
+mulct|3
+(noun)|fine|amercement|penalty (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|levy (generic term)|impose (generic term)
+mule|2
+(noun)|equine (generic term)|equid (generic term)
+(noun)|scuff|slipper (generic term)|carpet slipper (generic term)
+mule's ears|1
+(noun)|Wyethia amplexicaulis|wildflower (generic term)|wild flower (generic term)
+mule deer|1
+(noun)|burro deer|Odocoileus hemionus|deer (generic term)|cervid (generic term)
+mule driver|1
+(noun)|muleteer|mule skinner|skinner|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+mule fat|1
+(noun)|Baccharis viminea|shrub (generic term)|bush (generic term)
+mule skinner|1
+(noun)|muleteer|mule driver|skinner|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+muleteer|1
+(noun)|mule skinner|mule driver|skinner|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+muliebrity|2
+(noun)|womanhood|adulthood (generic term)
+(noun)|femininity|trait (generic term)|masculinity (antonym)
+mulish|1
+(adj)|hardheaded|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+mulishly|1
+(adv)|stubbornly|pig-headedly|obdurately|obstinately|cussedly
+mulishness|1
+(noun)|stubbornness|obstinacy|obstinance|intractability (generic term)|intractableness (generic term)
+mull|4
+(noun)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+(noun)|Mull|island (generic term)
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+mull over|1
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+mulla|1
+(noun)|Mullah|Mollah|Mulla|Muslim (generic term)|Moslem (generic term)
+mullah|1
+(noun)|Mullah|Mollah|Mulla|Muslim (generic term)|Moslem (generic term)
+mullah mohammed omar|1
+(noun)|Mullah Omar|Mullah Mohammed Omar|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+mullah omar|1
+(noun)|Mullah Omar|Mullah Mohammed Omar|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+mulled cider|1
+(noun)|sweet cider (generic term)
+mulled wine|1
+(noun)|wine (generic term)|vino (generic term)
+mullein|1
+(noun)|flannel leaf|velvet plant|herb (generic term)|herbaceous plant (generic term)
+mullein pink|1
+(noun)|rose campion|gardener's delight|dusty miller|Lychnis coronaria|lychnis (generic term)|catchfly (generic term)
+muller|9
+(noun)|Muller|Paul Hermann Muller|chemist (generic term)
+(noun)|Muller|Karl Alex Muller|nuclear physicist (generic term)
+(noun)|Muller|Johannes Peter Muller|physiologist (generic term)|anatomist (generic term)
+(noun)|Muller|Johann Muller|Regiomontanus|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Muller|Max Muller|Friedrich Max Muller|philologist (generic term)|philologue (generic term)
+(noun)|Muller|Hermann Joseph Muller|geneticist (generic term)
+(noun)|muser|ponderer|ruminator|thinker (generic term)
+(noun)|pestle|pounder|tool (generic term)
+(noun)|vessel (generic term)
+mullet|3
+(noun)|grey mullet|gray mullet|fish (generic term)
+(noun)|grey mullet|gray mullet|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)|bottom-feeder (generic term)|bottom-dweller (generic term)
+mullet-like|1
+(adj)|animal (similar term)
+mullidae|1
+(noun)|Mullidae|family Mullidae|fish family (generic term)
+mulligan|1
+(noun)|mulligan stew|Irish burgoo|stew (generic term)
+mulligan stew|1
+(noun)|mulligan|Irish burgoo|stew (generic term)
+mulligatawny|1
+(noun)|soup (generic term)
+mullion|1
+(noun)|strip (generic term)|slip (generic term)
+mullioned|1
+(adj)|divided (similar term)
+mulloidichthys|1
+(noun)|Mulloidichthys|genus Mulloidichthys|fish genus (generic term)
+mulloidichthys martinicus|1
+(noun)|yellow goatfish|Mulloidichthys martinicus|goatfish (generic term)|red mullet (generic term)|surmullet (generic term)|Mullus surmuletus (generic term)
+mulloway|1
+(noun)|jewfish|Sciaena antarctica|sciaenid fish (generic term)|sciaenid (generic term)
+mullus|1
+(noun)|Mullus|genus Mullus|fish genus (generic term)
+mullus auratus|1
+(noun)|red goatfish|Mullus auratus|goatfish (generic term)|red mullet (generic term)|surmullet (generic term)|Mullus surmuletus (generic term)
+mullus surmuletus|1
+(noun)|goatfish|red mullet|surmullet|Mullus surmuletus|mullet (generic term)
+multi-billionaire|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+multi-color|1
+(adj)|motley|calico|multicolor|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multi-colored|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multi-colour|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multi-coloured|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multi-ethnic|1
+(adj)|multiethnic|social (similar term)
+multi-seeded|1
+(adj)|several-seeded|seedy (similar term)
+multi-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+multi-valued|1
+(adj)|multivalent|ambiguous (similar term)
+multibank holding company|1
+(noun)|bank holding company (generic term)
+multicellular|1
+(adj)|cellular (similar term)
+multichannel recorder|1
+(noun)|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+multicollinearity|1
+(noun)|multiple regression (generic term)|multiple correlation (generic term)
+multicolor|1
+(adj)|motley|calico|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multicolored|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multicolour|1
+(adj)|motley|calico|multicolor|multi-color|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multicoloured|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+multicultural|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+multiculturalism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|nationalism (antonym)
+multidimensional|1
+(adj)|dimensional (similar term)|two-dimensional (similar term)|2-dimensional (similar term)|flat (similar term)|three-dimensional (similar term)|3-dimensional (similar term)|third-dimensional (similar term)|three-d (similar term)|four-dimensional (similar term)|4-dimensional (similar term)|unidimensional (antonym)
+multidimensional language|1
+(noun)|programming language (generic term)|programing language (generic term)|one-dimensional language (antonym)
+multiengine airplane|1
+(noun)|multiengine plane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+multiengine plane|1
+(noun)|multiengine airplane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+multiethnic|1
+(adj)|multi-ethnic|social (similar term)
+multifaceted|1
+(adj)|many-sided|multifarious|varied (similar term)
+multifactorial|1
+(adj)|complex (similar term)
+multifarious|1
+(adj)|many-sided|multifaceted|varied (similar term)
+multifariously|1
+(adv)|variously|diversely
+multifariousness|1
+(noun)|diverseness|diversity|variety|heterogeneity (generic term)|heterogeneousness (generic term)
+multiflora|1
+(noun)|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose (generic term)|rosebush (generic term)
+multiflora rose|1
+(noun)|multiflora|Japanese rose|baby rose|Rosa multiflora|rose (generic term)|rosebush (generic term)
+multiform|1
+(adj)|polymorphic (similar term)|polymorphous (similar term)|uniform (antonym)
+multilane|1
+(adj)|divided (similar term)|dual-lane (similar term)|two-lane (similar term)|three-lane (similar term)|four-lane (similar term)|single-lane (antonym)
+multilateral|1
+(adj)|many-sided|bilateral (similar term)|two-sided (similar term)|deep-lobed (similar term)|two-lobed (similar term)|bipartite (similar term)|two-part (similar term)|two-way (similar term)|joint (similar term)|multipartite (similar term)|quadrilateral (similar term)|four-sided (similar term)|five-sided (similar term)|six-sided (similar term)|seven-sided (similar term)|eight-sided (similar term)|nine-sided (similar term)|ten-sided (similar term)|eleven-sided (similar term)|twelve-sided (similar term)|quadripartite (similar term)|four-party (similar term)|tetramerous (similar term)|three-cornered (similar term)|three-lobed (similar term)|four-lobed (similar term)|five-lobed (similar term)|many-lobed (similar term)|palmately-lobed (similar term)|trilateral (similar term)|triangular (similar term)|three-sided (similar term)|triangular (similar term)|trilateral (similar term)|tripartite (similar term)|three-party (similar term)|three-way (similar term)|unilateral (antonym)
+multilevel|1
+(adj)|structure|construction (related term)
+multilingual|1
+(adj)|bilingual (similar term)|polyglot (similar term)|trilingual (similar term)|monolingual (antonym)
+multimedia|1
+(noun)|multimedia system|transmission (generic term)
+multimedia system|1
+(noun)|multimedia|transmission (generic term)
+multinational|1
+(adj)|transnational|international (similar term)
+multinomial|2
+(adj)|polynomial|function|mathematical function (related term)
+(noun)|polynomial|function (generic term)|mathematical function (generic term)
+multinucleate|1
+(adj)|organelle|cell organelle|cell organ (related term)|uninucleate (antonym)
+multiparous|1
+(adj)|biparous (similar term)|twinning (similar term)|uniparous (antonym)
+multipartite|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+multiphase|1
+(adj)|polyphase|point|point in time (related term)
+multiple|2
+(adj)|aggregate (similar term)|bigeminal (similar term)|binary (similar term)|double (similar term)|doubled (similar term)|twofold (similar term)|two-fold (similar term)|double (similar term)|dual (similar term)|duple (similar term)|double (similar term)|dual (similar term)|twofold (similar term)|two-fold (similar term)|treble (similar term)|threefold (similar term)|three-fold (similar term)|duplex (similar term)|manifold (similar term)|multiplex (similar term)|ternary (similar term)|treble (similar term)|triple (similar term)|triplex (similar term)|treble (similar term)|threefold (similar term)|three-fold (similar term)|triple (similar term)|triune (similar term)|quadruple (similar term)|fourfold (similar term)|four-fold (similar term)|quadruple (similar term)|quadruplicate (similar term)|quadruplex (similar term)|fourfold (similar term)|four-fold (similar term)|quaternate (similar term)|quaternary (similar term)|quintuple (similar term)|fivefold (similar term)|five-fold (similar term)|sextuple (similar term)|sixfold (similar term)|six-fold (similar term)|septuple (similar term)|sevenfold (similar term)|seven-fold (similar term)|octuple (similar term)|eightfold (similar term)|eight-fold (similar term)|nonuple (similar term)|ninefold (similar term)|nine-fold (similar term)|tenfold (similar term)|ten-fold (similar term)|denary (similar term)|single (antonym)
+(noun)|product (generic term)|mathematical product (generic term)
+multiple-choice|1
+(adj)|true-false (antonym)
+multiple correlation|1
+(noun)|multiple regression|multivariate analysis (generic term)
+multiple correlation coefficient|1
+(noun)|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+multiple fruit|1
+(noun)|aggregate fruit|syncarp|fruit (generic term)
+multiple mononeuropathy|1
+(noun)|neuropathy (generic term)
+multiple myeloma|1
+(noun)|myeloma (generic term)
+multiple neuritis|1
+(noun)|polyneuritis|neuritis (generic term)
+multiple personality|1
+(noun)|split personality|dissociative disorder (generic term)
+multiple regression|1
+(noun)|multiple correlation|multivariate analysis (generic term)
+multiple sclerosis|1
+(noun)|MS|disseminated sclerosis|disseminated multiple sclerosis|sclerosis (generic term)|induration (generic term)|degenerative disorder (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+multiple star|1
+(noun)|star (generic term)
+multiple voting|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+multiplex|3
+(adj)|manifold|multiple (similar term)
+(adj)|complex (similar term)
+(noun)|telecommunication (generic term)|telecom (generic term)
+multiplex operation|1
+(noun)|operation (generic term)
+multiplexer|1
+(noun)|electronic device (generic term)
+multiplicand|1
+(noun)|number (generic term)
+multiplication|3
+(noun)|times|arithmetic operation (generic term)
+(noun)|generation|propagation|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+multiplicative|1
+(adj)|increasing (similar term)
+multiplicative inverse|1
+(noun)|reciprocal|inverse (generic term)|opposite (generic term)
+multiplicity|2
+(noun)|magnitude (generic term)
+(noun)|numerousness|numerosity|number (generic term)|figure (generic term)
+multiplied|1
+(adj)|increased (similar term)
+multiplier|1
+(noun)|multiplier factor|number (generic term)
+multiplier factor|1
+(noun)|multiplier|number (generic term)
+multiplier onion|1
+(noun)|shallot|eschalot|Allium cepa aggregatum|Allium ascalonicum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+multiply|5
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|divide (antonym)
+(verb)|manifold|increase (generic term)
+(verb)|breed|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+(verb)|reproduce|procreate|make (generic term)|create (generic term)
+(adv)|singly (antonym)
+multipotent|1
+(adj)|potent (similar term)|strong (similar term)|stiff (similar term)
+multiprocessing|1
+(noun)|parallel processing|data processing (generic term)
+multiprocessor|1
+(noun)|digital computer (generic term)
+multiprogramming|1
+(noun)|concurrent execution|execution (generic term)|instruction execution (generic term)
+multipurpose|1
+(adj)|useful (similar term)|utile (similar term)
+multiracial|1
+(adj)|racial (similar term)
+multistage|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+multistage rocket|1
+(noun)|step rocket|rocket (generic term)|projectile (generic term)
+multistorey|1
+(adj)|multistory|multistoried|high-rise (similar term)
+multistoried|1
+(adj)|multistory|multistorey|high-rise (similar term)
+multistory|1
+(adj)|multistorey|multistoried|high-rise (similar term)
+multitude|3
+(noun)|battalion|large number|plurality|pack|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|throng|concourse|gathering (generic term)|assemblage (generic term)
+(noun)|masses|mass|hoi polloi|people|the great unwashed|group (generic term)|grouping (generic term)
+multitudinous|1
+(adj)|countless|infinite|innumerable|innumerous|myriad|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+multitudinousness|1
+(noun)|numerousness (generic term)|numerosity (generic term)|multiplicity (generic term)
+multivalence|1
+(noun)|polyvalence|polyvalency|multivalency|state (generic term)
+multivalency|1
+(noun)|polyvalence|polyvalency|multivalence|state (generic term)
+multivalent|3
+(adj)|univalent (antonym)|bivalent (antonym)
+(adj)|polyvalent|monovalent (antonym)
+(adj)|multi-valued|ambiguous (similar term)
+multivariate|1
+(adj)|variable (similar term)
+multivariate analysis|1
+(noun)|statistical method (generic term)|statistical procedure (generic term)
+multiversity|1
+(noun)|university (generic term)
+multivitamin|1
+(noun)|multivitamin pill|vitamin pill (generic term)
+multivitamin pill|1
+(noun)|multivitamin|vitamin pill (generic term)
+mulwi|1
+(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara (generic term)
+mum|4
+(adj)|silent|uncommunicative (similar term)|incommunicative (similar term)
+(noun)|florist's chrysanthemum|florists' chrysanthemum|Dendranthema grandifloruom|Chrysanthemum morifolium|chrysanthemum (generic term)
+(noun)|ma|mama|mamma|mom|momma|mommy|mammy|mummy|mother (generic term)|female parent (generic term)
+(noun)|secrecy (generic term)|secretiveness (generic term)|silence (generic term)
+mumbai|1
+(noun)|Mumbai|Bombay|city (generic term)|metropolis (generic term)|urban center (generic term)
+mumble|3
+(noun)|utterance (generic term)|vocalization (generic term)
+(verb)|mutter|maunder|mussitate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|gum|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+mumble-the-peg|1
+(noun)|mumblety-peg|child's game (generic term)
+mumbler|1
+(noun)|mutterer|murmurer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+mumblety-peg|1
+(noun)|mumble-the-peg|child's game (generic term)
+mumbling|2
+(noun)|enunciation (generic term)|diction (generic term)
+(noun)|gumming|chew (generic term)|chewing (generic term)|mastication (generic term)|manduction (generic term)
+mumbo jumbo|2
+(noun)|gibberish (generic term)|gibber (generic term)
+(noun)|hugger-mugger|confusion (generic term)
+mumification necrosis|1
+(noun)|dry gangrene|cold gangrene|mummification|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+mummer|1
+(noun)|mime|mimer|pantomimer|pantomimist|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+mummery|1
+(noun)|flummery|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+mummichog|1
+(noun)|Fundulus heteroclitus|killifish (generic term)
+mummification|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|dry gangrene|cold gangrene|mumification necrosis|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+(noun)|embalmment (generic term)
+mummify|3
+(verb)|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|embalm (generic term)
+(verb)|dry up|shrivel (generic term)|shrivel up (generic term)|shrink (generic term)|wither (generic term)
+mummy|2
+(noun)|ma|mama|mamma|mom|momma|mommy|mammy|mum|mother (generic term)|female parent (generic term)
+(noun)|body (generic term)|dead body (generic term)
+mummy-brown|1
+(adj)|snuff|snuff-brown|chukker-brown|chromatic (similar term)
+mumps|1
+(noun)|epidemic parotitis|infectious disease (generic term)
+mumpsimus|1
+(noun)|notion (generic term)
+munch|3
+(noun)|Munch|Edvard Munch|painter (generic term)
+(noun)|bite (generic term)|chomp (generic term)
+(verb)|crunch|chew (generic term)|masticate (generic term)|manducate (generic term)|jaw (generic term)
+munchausen|1
+(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist (generic term)|raconteur (generic term)
+munchausen's syndrome|1
+(noun)|Munchausen's syndrome|Munchausen syndrome|syndrome (generic term)
+munchausen syndrome|1
+(noun)|Munchausen's syndrome|Munchausen syndrome|syndrome (generic term)
+munchener|1
+(noun)|Munich beer|Munchener|lager (generic term)|lager beer (generic term)
+muncher|1
+(noun)|chewer (generic term)
+munchhausen|1
+(noun)|Munchhausen|Karl Friedrich Hieronymus von Munchhausen|Munchausen|Baron Munchausen|anecdotist (generic term)|raconteur (generic term)
+muncie|1
+(noun)|Muncie|town (generic term)
+munda|1
+(noun)|Munda|Austro-Asiatic (generic term)|Austro-Asiatic language (generic term)|Munda-Mon-Khmer (generic term)
+munda-mon-khmer|1
+(noun)|Austro-Asiatic|Austro-Asiatic language|Munda-Mon-Khmer|natural language (generic term)|tongue (generic term)
+mundane|3
+(adj)|everyday|quotidian|routine|unremarkable|workaday|ordinary (similar term)
+(adj)|terrestrial|worldly (similar term)
+(adj)|terrene|earthly (similar term)
+mundanely|1
+(adv)|terrestrially
+mundaneness|2
+(noun)|sophistication|worldliness|mundanity|quality (generic term)|naivete (antonym)
+(noun)|ordinariness|mundanity|quality (generic term)|extraordinariness (antonym)
+mundanity|2
+(noun)|sophistication|worldliness|mundaneness|quality (generic term)|naivete (antonym)
+(noun)|ordinariness|mundaneness|quality (generic term)|extraordinariness (antonym)
+mung|1
+(noun)|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+mung bean|1
+(noun)|mung|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+mungo park|1
+(noun)|Park|Mungo Park|explorer (generic term)|adventurer (generic term)
+munich|1
+(noun)|Munich|Muenchen|city (generic term)|metropolis (generic term)|urban center (generic term)
+munich beer|1
+(noun)|Munich beer|Munchener|lager (generic term)|lager beer (generic term)
+municipal|2
+(adj)|gathering|assemblage (related term)
+(adj)|domestic (similar term)
+municipal bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+municipal center|1
+(noun)|civic center|down town|hub (generic term)
+municipal government|1
+(noun)|local government (generic term)
+municipal note|1
+(noun)|note (generic term)|promissory note (generic term)|note of hand (generic term)
+municipality|2
+(noun)|urban area (generic term)|populated area (generic term)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+munificence|1
+(noun)|largess|largesse|magnanimity|openhandedness|liberality (generic term)|liberalness (generic term)
+munificent|1
+(adj)|lavish|overgenerous|prodigal|too-generous|unsparing|unstinted|unstinting|generous (similar term)
+munificently|1
+(adv)|liberally|generously
+muniments|1
+(noun)|title deed (generic term)
+munition|4
+(noun)|weaponry|arms|implements of war|weapons system|instrumentality (generic term)|instrumentation (generic term)
+(noun)|ordnance|ordnance store|armament (generic term)
+(noun)|fortification|defensive structure (generic term)|defense (generic term)|defence (generic term)
+(verb)|arm (generic term)
+munitions industry|1
+(noun)|arms industry|industry (generic term)
+munj|1
+(noun)|munja|Saccharum bengalense|Saccharum munja|grass (generic term)
+munja|1
+(noun)|munj|Saccharum bengalense|Saccharum munja|grass (generic term)
+munjeet|1
+(noun)|Indian madder|Rubia cordifolia|madderwort (generic term)|rubiaceous plant (generic term)
+munjuk|1
+(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara (generic term)
+munro|1
+(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer (generic term)|author (generic term)
+muntiacus|1
+(noun)|Muntiacus|genus Muntiacus|mammal genus (generic term)
+muntingia|1
+(noun)|Muntingia|genus Muntingia|dilleniid dicot genus (generic term)
+muntingia calabura|1
+(noun)|Jamaican cherry|calabur tree|calabura|silk wood|silkwood|Muntingia calabura|tree (generic term)
+muntjac|1
+(noun)|barking deer|deer (generic term)|cervid (generic term)
+muntz metal|1
+(noun)|alpha-beta brass|Muntz metal|yellow metal|brass (generic term)
+muon|1
+(noun)|negative muon|mu-meson|lepton (generic term)
+muraenidae|1
+(noun)|Muraenidae|family Muraenidae|fish family (generic term)
+mural|2
+(adj)|partition|divider (related term)
+(noun)|wall painting|painting (generic term)|picture (generic term)
+muralist|1
+(noun)|painter (generic term)
+muramidase|1
+(noun)|lysozyme|enzyme (generic term)
+murder|3
+(noun)|slaying|execution|homicide (generic term)
+(verb)|slay|hit|dispatch|bump off|off|polish off|remove|kill (generic term)
+(verb)|mangle|mutilate|falsify (generic term)|distort (generic term)|garble (generic term)|warp (generic term)
+murder charge|1
+(noun)|murder indictment|indictment (generic term)|bill of indictment (generic term)
+murder conviction|1
+(noun)|conviction (generic term)|judgment of conviction (generic term)|condemnation (generic term)|sentence (generic term)
+murder indictment|1
+(noun)|murder charge|indictment (generic term)|bill of indictment (generic term)
+murder mystery|1
+(noun)|mystery (generic term)|mystery story (generic term)|whodunit (generic term)
+murder suspect|1
+(noun)|suspect (generic term)
+murdered|1
+(adj)|dead (similar term)
+murderee|1
+(noun)|victim (generic term)
+murderer|1
+(noun)|liquidator|manslayer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|killer (generic term)|slayer (generic term)
+murderess|1
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+murderous|1
+(adj)|homicidal|bloody (similar term)
+murderously|1
+(adv)|amok|amuck
+murderousness|2
+(noun)|hate (generic term)|hatred (generic term)
+(noun)|cruelty (generic term)|cruelness (generic term)|harshness (generic term)
+murdoch|2
+(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher (generic term)
+(noun)|Murdoch|Iris Murdoch|Dame Jean Iris Murdoch|writer (generic term)|author (generic term)
+muriatic acid|1
+(noun)|hydrochloric acid (generic term)|chlorohydric acid (generic term)
+muridae|1
+(noun)|Muridae|family Muridae|mammal family (generic term)
+muriel sarah spark|1
+(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer (generic term)|author (generic term)
+muriel spark|1
+(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer (generic term)|author (generic term)
+murillo|1
+(noun)|Murillo|Bartolome Esteban Murillo|painter (generic term)
+murine|2
+(adj)|mammal family (related term)
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+murine typhus|1
+(noun)|rat typhus|urban typhus|endemic typhus|typhus (generic term)|typhus fever (generic term)
+muritaniya|1
+(noun)|Mauritania|Islamic Republic of Mauritania|Mauritanie|Muritaniya|African country (generic term)|African nation (generic term)
+murk|2
+(noun)|fog|fogginess|murkiness|atmosphere (generic term)|atmospheric state (generic term)
+(verb)|darken (generic term)
+murkily|1
+(adv)|dimly
+murkiness|2
+(noun)|fog|fogginess|murk|atmosphere (generic term)|atmospheric state (generic term)
+(noun)|cloudiness|muddiness|opacity (generic term)|opaqueness (generic term)
+murky|2
+(adj)|cloudy|muddy|mirky|turbid|opaque (similar term)
+(adj)|mirky|shaded (similar term)
+murmansk|1
+(noun)|Murmansk|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+murmur|6
+(noun)|mutter|muttering|murmuring|murmuration|mussitation|sound (generic term)
+(noun)|murmur vowel|schwa (generic term)|shwa (generic term)
+(noun)|heart murmur|cardiac murmur|symptom (generic term)
+(noun)|grumble|grumbling|murmuring|mutter|muttering|complaint (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|mutter|grumble|croak|gnarl|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+murmur vowel|1
+(noun)|murmur|schwa (generic term)|shwa (generic term)
+murmuration|1
+(noun)|mutter|muttering|murmur|murmuring|mussitation|sound (generic term)
+murmurer|1
+(noun)|mutterer|mumbler|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+murmuring|3
+(adj)|susurrant|whispering|soft (similar term)
+(noun)|mutter|muttering|murmur|murmuration|mussitation|sound (generic term)
+(noun)|grumble|grumbling|murmur|mutter|muttering|complaint (generic term)
+murmurous|1
+(adj)|rustling|soughing|susurrous|soft (similar term)
+muroidea|1
+(noun)|Muroidea|superfamily Muroidea|mammal family (generic term)
+murphy|1
+(noun)|potato|white potato|Irish potato|spud|tater|root vegetable (generic term)|solanaceous vegetable (generic term)
+murphy's law|1
+(noun)|Murphy's Law|Sod's Law|gnome (generic term)
+murphy bed|1
+(noun)|Murphy bed|bed (generic term)
+murrain|1
+(noun)|animal disease (generic term)
+murray|3
+(noun)|Murray|Gilbert Murray|George Gilbert Aime Murphy|classicist (generic term)|classical scholar (generic term)
+(noun)|Murray|James Murray|James Augustus Murray|James Augustus Henry Murray|Sir James Murray|Sir James Augustus Murray|Sir James Augustus Henry Murray|philologist (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+(noun)|Murray|Murray River|river (generic term)
+murray gell-mann|1
+(noun)|Gell-Mann|Murray Gell-Mann|nuclear physicist (generic term)
+murray river|1
+(noun)|Murray|Murray River|river (generic term)
+murre|1
+(noun)|guillemot (generic term)
+murrow|1
+(noun)|Murrow|Edward R. Murrow|Edward Roscoe Murrow|broadcast journalist (generic term)
+murrumbidgee|1
+(noun)|Murrumbidgee|Murrumbidgee River|river (generic term)
+murrumbidgee river|1
+(noun)|Murrumbidgee|Murrumbidgee River|river (generic term)
+mus|1
+(noun)|Mus|genus Mus|mammal genus (generic term)
+mus musculus|1
+(noun)|house mouse|Mus musculus|mouse (generic term)
+mus rose|1
+(noun)|musk mallow|Malva moschata|mallow (generic term)
+musa|1
+(noun)|Musa|genus Musa|monocot genus (generic term)|liliopsid genus (generic term)
+musa acuminata|1
+(noun)|dwarf banana|Musa acuminata|banana (generic term)|banana tree (generic term)
+musa basjoo|1
+(noun)|Japanese banana|Musa basjoo|banana (generic term)|banana tree (generic term)
+musa ensete|1
+(noun)|Abyssinian banana|Ethiopian banana|Ensete ventricosum|Musa ensete|herb (generic term)|herbaceous plant (generic term)
+musa paradisiaca|1
+(noun)|plantain|plantain tree|Musa paradisiaca|banana (generic term)|banana tree (generic term)
+musa paradisiaca sapientum|1
+(noun)|edible banana|Musa paradisiaca sapientum|banana (generic term)|banana tree (generic term)
+musa textilis|1
+(noun)|abaca|Manila hemp|Musa textilis|banana (generic term)|banana tree (generic term)
+musaceae|1
+(noun)|Musaceae|family Musaceae|banana family|monocot family (generic term)|liliopsid family (generic term)
+musales|1
+(noun)|Musales|order Musales|plant order (generic term)
+musca|2
+(noun)|Musca|constellation (generic term)
+(noun)|Musca|genus Musca|arthropod genus (generic term)
+musca domestica|1
+(noun)|housefly|house fly|Musca domestica|fly (generic term)
+musca volitans|1
+(noun)|muscae volitantes|floater|spots|symptom (generic term)
+muscadel|1
+(noun)|muscat|muscatel|muscadelle|fortified wine (generic term)
+muscadelle|1
+(noun)|muscat|muscatel|muscadel|fortified wine (generic term)
+muscadet|2
+(noun)|Muscadet|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Muscadet|white wine (generic term)
+muscadine|2
+(noun)|Vitis rotundifolia|grape (generic term)|grapevine (generic term)
+(noun)|bullace grape|grape (generic term)
+muscae volitantes|1
+(noun)|musca volitans|floater|spots|symptom (generic term)
+muscardinus|1
+(noun)|Muscardinus|genus Muscardinus|mammal genus (generic term)
+muscardinus avellanarius|1
+(noun)|hazel mouse|Muscardinus avellanarius|dormouse (generic term)
+muscari|1
+(noun)|Muscari|genus Muscari|liliid monocot genus (generic term)
+muscari comosum|1
+(noun)|tassel hyacinth|Muscari comosum|grape hyacinth (generic term)
+muscari neglectum|1
+(noun)|common grape hyacinth|Muscari neglectum|grape hyacinth (generic term)
+muscat|4
+(noun)|muskat|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Muscat|Masqat|capital of Oman|national capital (generic term)|port (generic term)
+(noun)|muscatel|muscadel|muscadelle|fortified wine (generic term)
+(noun)|muscatel|muscat grape|vinifera grape (generic term)
+muscat and oman|1
+(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country (generic term)|Asian nation (generic term)
+muscat grape|1
+(noun)|muscat|muscatel|vinifera grape (generic term)
+muscatel|2
+(noun)|muscat|muscadel|muscadelle|fortified wine (generic term)
+(noun)|muscat|muscat grape|vinifera grape (generic term)
+musci|1
+(noun)|Bryopsida|class Bryopsida|Musci|class Musci|class (generic term)
+muscicapa|1
+(noun)|Muscicapa|genus Muscicapa|bird genus (generic term)
+muscicapa grisola|1
+(noun)|spotted flycatcher|Muscicapa striata|Muscicapa grisola|Old World flycatcher (generic term)|true flycatcher (generic term)|flycatcher (generic term)
+muscicapa striata|1
+(noun)|spotted flycatcher|Muscicapa striata|Muscicapa grisola|Old World flycatcher (generic term)|true flycatcher (generic term)|flycatcher (generic term)
+muscicapidae|1
+(noun)|Muscicapidae|family Muscicapidae|bird family (generic term)
+muscidae|1
+(noun)|Muscidae|family Muscidae|arthropod family (generic term)
+muscivora|1
+(noun)|Muscivora|genus Muscivora|bird genus (generic term)
+muscivora-forficata|1
+(noun)|scissortail|scissortailed flycatcher|Muscivora-forficata|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+muscle|6
+(noun)|musculus|contractile organ (generic term)|contractor (generic term)
+(noun)|muscular tissue|animal tissue (generic term)
+(noun)|muscleman|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+(noun)|brawn|brawniness|muscularity|sinew|heftiness|strength (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+muscle-bound|1
+(adj)|inflexible (similar term)
+muscle-builder|1
+(noun)|bodybuilder|muscle builder|musclebuilder|muscleman|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+muscle builder|1
+(noun)|bodybuilder|muscle-builder|musclebuilder|muscleman|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+muscle building|1
+(noun)|bodybuilding|anaerobic exercise|musclebuilding|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+muscle cell|1
+(noun)|muscle fiber|muscle fibre|somatic cell (generic term)|vegetative cell (generic term)
+muscle contraction|1
+(noun)|contraction|muscular contraction|shortening (generic term)
+muscle fiber|1
+(noun)|muscle cell|muscle fibre|somatic cell (generic term)|vegetative cell (generic term)
+muscle fibre|1
+(noun)|muscle cell|muscle fiber|somatic cell (generic term)|vegetative cell (generic term)
+muscle into|1
+(verb)|push (generic term)|force (generic term)
+muscle memory|1
+(noun)|motor memory|long-term memory (generic term)|LTM (generic term)
+muscle relaxant|1
+(noun)|relaxant (generic term)
+muscle sense|1
+(noun)|kinesthesis|kinaesthesis|kinesthesia|kinaesthesia|kinesthetics|sense of movement|proprioception (generic term)|kinanesthesia (antonym)
+muscle spasm|1
+(noun)|spasm|cramp|symptom (generic term)
+muscle system|1
+(noun)|muscular structure|musculature|system (generic term)
+muscle tone|1
+(noun)|muscular tonus|tonicity (generic term)|tonus (generic term)|tone (generic term)
+musclebuilder|1
+(noun)|bodybuilder|muscle builder|muscle-builder|muscleman|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+musclebuilding|1
+(noun)|bodybuilding|anaerobic exercise|muscle building|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+muscleman|2
+(noun)|muscle|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+(noun)|bodybuilder|muscle builder|muscle-builder|musclebuilder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+muscoidea|1
+(noun)|Muscoidea|superfamily Muscoidea|arthropod family (generic term)
+muscovite|3
+(adj)|Muscovite|Russian (related term)
+(noun)|mica (generic term)|isinglass (generic term)
+(noun)|Muscovite|Russian (generic term)
+muscovy|1
+(noun)|Muscovy|principality (generic term)|princedom (generic term)
+muscovy duck|1
+(noun)|musk duck|Cairina moschata|duck (generic term)
+muscular|4
+(adj)|contractile organ|contractor (related term)
+(adj)|mesomorphic|athletic (similar term)|ectomorphic (antonym)|endomorphic (antonym)
+(adj)|powerful (similar term)
+(adj)|brawny|hefty|powerful|sinewy|strong (similar term)
+muscular contraction|1
+(noun)|contraction|muscle contraction|shortening (generic term)
+muscular dystrophy|1
+(noun)|dystrophy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+muscular structure|1
+(noun)|musculature|muscle system|system (generic term)
+muscular tissue|1
+(noun)|muscle|animal tissue (generic term)
+muscular tonus|1
+(noun)|muscle tone|tonicity (generic term)|tonus (generic term)|tone (generic term)
+muscularity|3
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|brawn|brawniness|muscle|sinew|heftiness|strength (generic term)
+(noun)|energy|vigor|vigour|vim|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+musculature|1
+(noun)|muscular structure|muscle system|system (generic term)
+musculophrenic artery|1
+(noun)|arteria musculophrenica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+musculophrenic vein|1
+(noun)|vena musculophrenica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+musculoskeletal|1
+(adj)|contractile organ|contractor (related term)|system (related term)
+musculoskeletal system|1
+(noun)|system (generic term)
+musculospiral nerve|1
+(noun)|radial nerve|nervus radialis|nerve (generic term)|nervus (generic term)
+musculus|1
+(noun)|muscle|contractile organ (generic term)|contractor (generic term)
+musculus abductor digiti minimi manus|1
+(noun)|abductor (generic term)|abductor muscle (generic term)
+musculus abductor digiti minimi pedis|1
+(noun)|abductor (generic term)|abductor muscle (generic term)
+musculus abductor hallucis|1
+(noun)|abductor (generic term)|abductor muscle (generic term)
+musculus abductor pollicis|1
+(noun)|abductor (generic term)|abductor muscle (generic term)
+musculus adductor brevis|1
+(noun)|adductor (generic term)|adductor muscle (generic term)
+musculus adductor hallucis|1
+(noun)|adductor (generic term)|adductor muscle (generic term)
+musculus adductor longus|1
+(noun)|adductor (generic term)|adductor muscle (generic term)
+musculus adductor magnus|1
+(noun)|great adductor muscle|adductor (generic term)|adductor muscle (generic term)
+musculus anconeus|1
+(noun)|anconeous muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus articularis cubiti|1
+(noun)|articular muscle (generic term)
+musculus articularis genus|1
+(noun)|articular muscle (generic term)
+musculus biceps brachii|1
+(noun)|biceps brachii|biceps humeri|biceps (generic term)
+musculus biceps femoris|1
+(noun)|femoral biceps|biceps (generic term)
+musculus buccinator|1
+(noun)|cheek muscle|buccinator muscle|facial muscle (generic term)
+musculus deltoideus|1
+(noun)|deltoid|deltoid muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus intercostalis|1
+(noun)|intercostal|intercostal muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus obliquus externus abdominis|1
+(noun)|external oblique muscle|abdominal external oblique muscle|oblique|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+musculus pectoralis|1
+(noun)|pectoral|pectoral muscle|pectoralis|pecs|skeletal muscle (generic term)|striated muscle (generic term)
+musculus pectoralis major|1
+(noun)|pectoralis major|greater pectoral muscle|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+musculus pectoralis minor|1
+(noun)|pectoralis minor|smaller pectoral muscle|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+musculus quadriceps femoris|1
+(noun)|quadriceps|quadriceps femoris|quad|extensor muscle (generic term)|extensor (generic term)
+musculus rhomboideus major|1
+(noun)|rhomboideus major muscle|greater rhomboid muscle|rhomboid (generic term)|rhomboid muscle (generic term)
+musculus rhomboideus minor|1
+(noun)|rhomboid minor muscle|lesser rhomboid muscle|rhomboid (generic term)|rhomboid muscle (generic term)
+musculus sartorius|1
+(noun)|sartorius|sartorius muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus scalenus|1
+(noun)|scalenus|scalene muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus serratus anterior|1
+(noun)|anterior serratus muscle|serratus anterior|serratus magnus|serratus (generic term)|serratus muscles (generic term)
+musculus serratus posterior|1
+(noun)|posterior serratus muscle|serratus posterior|serratus (generic term)|serratus muscles (generic term)
+musculus sphincter ani|1
+(noun)|anal sphincter|sphincter ani|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter ani externus|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+musculus sphincter ani internus|1
+(noun)|smooth muscle (generic term)|involuntary muscle (generic term)
+musculus sphincter ductus choledochi|1
+(noun)|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter ductus pancreatici|1
+(noun)|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter pupillae|1
+(noun)|pupillary sphincter|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter pylori|1
+(noun)|pyloric sphincter|pyloric valve|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter urethrae|1
+(noun)|urethral sphincter|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sphincter vesicae|1
+(noun)|bladder sphincter|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+musculus sternocleidomastoideus|1
+(noun)|sternocleidomastoid|sternocleidomastoid muscle|sternocleido mastoideus|skeletal muscle (generic term)|striated muscle (generic term)
+musculus temporalis|1
+(noun)|temporalis muscle|temporal muscle|temporalis|skeletal muscle (generic term)|striated muscle (generic term)
+musculus teres major|1
+(noun)|teres major|teres major muscle|teres (generic term)|teres muscle (generic term)
+musculus teres minor|1
+(noun)|teres minor|teres minor muscle|teres (generic term)|teres muscle (generic term)
+musculus tibialis|1
+(noun)|tibialis|tibialis muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus transversalis abdominis|1
+(noun)|transversus abdominis muscle|transverse muscle of abdomen|transversus abdominis|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+musculus trapezius|1
+(noun)|trapezius|trapezius muscle|cowl muscle|skeletal muscle (generic term)|striated muscle (generic term)
+musculus triceps brachii|1
+(noun)|triceps brachii|triceps (generic term)
+musd|1
+(noun)|Doctor of Music|DMus|MusD|doctor's degree (generic term)|doctorate (generic term)
+muse|3
+(noun)|Muse|Greek deity (generic term)
+(noun)|source (generic term)|seed (generic term)|germ (generic term)
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+muser|1
+(noun)|muller|ponderer|ruminator|thinker (generic term)
+musette|1
+(noun)|shepherd's pipe|bagpipe (generic term)|pipe (generic term)
+musette pipe|1
+(noun)|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+museum|1
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+musgoi|1
+(noun)|Daba|Kola|Musgoi|Biu-Mandara (generic term)
+musgu|1
+(noun)|Musgu|Munjuk|Mulwi|Biu-Mandara (generic term)
+mush|6
+(noun)|pulp|mass (generic term)
+(noun)|cornmeal mush|hot cereal (generic term)
+(noun)|treacle|slop|sentimentalism (generic term)
+(noun)|journey (generic term)|journeying (generic term)
+(verb)|drive (generic term)
+(verb)|dogsled|sled (generic term)|sleigh (generic term)
+musher|1
+(noun)|traveler (generic term)|traveller (generic term)
+mushiness|2
+(noun)|pulpiness|softness (generic term)
+(noun)|mawkishness|sentimentality|drippiness|soupiness|sloppiness|emotionality (generic term)|emotionalism (generic term)
+mushroom|6
+(noun)|agaric (generic term)|toadstool (antonym)
+(noun)|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+(noun)|mushroom cloud|mushroom-shaped cloud|cloud (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+(verb)|pick (generic term)|pluck (generic term)|cull (generic term)
+(verb)|grow (generic term)
+mushroom-shaped|1
+(adj)|vegetable (similar term)
+mushroom-shaped cloud|1
+(noun)|mushroom|mushroom cloud|cloud (generic term)
+mushroom anchor|1
+(noun)|anchor (generic term)|ground tackle (generic term)
+mushroom cloud|1
+(noun)|mushroom|mushroom-shaped cloud|cloud (generic term)
+mushroom coral|1
+(noun)|stony coral (generic term)|madrepore (generic term)|madriporian coral (generic term)
+mushroom pimple|1
+(noun)|Hypocreaceae (generic term)|family Hypocreaceae (generic term)
+mushroom poisoning|1
+(noun)|food poisoning (generic term)|gastrointestinal disorder (generic term)
+mushroom sauce|1
+(noun)|sauce (generic term)
+mushroom wine sauce|1
+(noun)|marchand de vin|sauce (generic term)
+mushy|2
+(adj)|soft (similar term)
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|schmaltzy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+mushy peas|1
+(noun)|side dish (generic term)|entremots (generic term)
+musial|1
+(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer (generic term)|baseball player (generic term)
+music|5
+(noun)|auditory communication (generic term)
+(noun)|euphony|sound (generic term)|auditory sensation (generic term)
+(noun)|activity (generic term)
+(noun)|sound (generic term)|auditory sensation (generic term)
+(noun)|medicine|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+music box|1
+(noun)|musical box|musical instrument (generic term)|instrument (generic term)
+music critic|1
+(noun)|critic (generic term)
+music department|1
+(noun)|department of music|academic department (generic term)
+music director|1
+(noun)|conductor|director|musician (generic term)
+music genre|1
+(noun)|musical genre|genre|musical style|expressive style (generic term)|style (generic term)|music (generic term)
+music hall|2
+(noun)|vaudeville theater|vaudeville theatre|theater (generic term)|theatre (generic term)|house (generic term)
+(noun)|vaudeville|variety show (generic term)|variety (generic term)
+music lesson|1
+(noun)|lesson (generic term)
+music lover|1
+(noun)|concert-goer|consumer (generic term)
+music of the spheres|1
+(noun)|music (generic term)|euphony (generic term)
+music paper|1
+(noun)|score paper|paper (generic term)
+music rack|1
+(noun)|music stand|rack (generic term)|stand (generic term)
+music school|2
+(noun)|school of music|conservatory (generic term)
+(noun)|conservatory (generic term)|conservatoire (generic term)
+music stand|1
+(noun)|music rack|rack (generic term)|stand (generic term)
+music stool|1
+(noun)|piano stool|stool (generic term)
+music teacher|1
+(noun)|teacher (generic term)|instructor (generic term)
+musical|5
+(adj)|auditory communication (related term)
+(adj)|philharmonic (similar term)|unmusical (antonym)
+(adj)|chanted (similar term)|liquid (similar term)|singable (similar term)|unmusical (antonym)
+(adj)|melodious|melodic|ariose (similar term)|songlike (similar term)|canorous (similar term)|songful (similar term)|cantabile (similar term)|singing (similar term)|dulcet (similar term)|honeyed (similar term)|mellifluous (similar term)|mellisonant (similar term)|sweet (similar term)|lyrical (similar term)|unmelodious (antonym)
+(noun)|musical comedy|musical theater|play (generic term)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+musical accompaniment|1
+(noun)|accompaniment|backup|support|part (generic term)|voice (generic term)
+musical arrangement|1
+(noun)|arrangement|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+musical box|1
+(noun)|music box|musical instrument (generic term)|instrument (generic term)
+musical chairs|2
+(noun)|going to Jerusalem|child's game (generic term)
+(noun)|rearrangement (generic term)
+musical comedy|1
+(noun)|musical|musical theater|play (generic term)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+musical composition|1
+(noun)|opus|composition|piece|piece of music|music (generic term)
+musical drama|1
+(noun)|opera (generic term)
+musical genre|1
+(noun)|music genre|genre|musical style|expressive style (generic term)|style (generic term)|music (generic term)
+musical group|1
+(noun)|musical organization|musical organisation|organization (generic term)|organisation (generic term)
+musical harmony|1
+(noun)|harmony|music (generic term)
+musical instrument|1
+(noun)|instrument|device (generic term)
+musical instrument digital interface|1
+(noun)|MIDI|protocol (generic term)|communications protocol (generic term)
+musical interval|1
+(noun)|interval|musical notation (generic term)
+musical mode|1
+(noun)|mode|diatonic scale (generic term)
+musical notation|1
+(noun)|notation (generic term)|notational system (generic term)
+musical note|1
+(noun)|note|tone|musical notation (generic term)
+musical octave|1
+(noun)|octave|interval (generic term)|musical interval (generic term)
+musical organisation|1
+(noun)|musical organization|musical group|organization (generic term)|organisation (generic term)
+musical organization|1
+(noun)|musical organisation|musical group|organization (generic term)|organisation (generic term)
+musical passage|1
+(noun)|passage|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+musical perception|1
+(noun)|auditory perception (generic term)|sound perception (generic term)
+musical performance|1
+(noun)|performance (generic term)|performing arts (generic term)
+musical phrase|1
+(noun)|phrase|passage (generic term)|musical passage (generic term)
+musical rhythm|1
+(noun)|rhythm|beat|musical time (generic term)
+musical scale|1
+(noun)|scale|musical notation (generic term)
+musical score|1
+(noun)|score|sheet music (generic term)
+musical soiree|1
+(noun)|soiree musicale|soiree (generic term)
+musical style|1
+(noun)|music genre|musical genre|genre|expressive style (generic term)|style (generic term)|music (generic term)
+musical theater|1
+(noun)|musical|musical comedy|play (generic term)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+musical theme|1
+(noun)|theme|melodic theme|idea|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+musical time|1
+(noun)|time (generic term)
+musical time signature|1
+(noun)|time signature|musical notation (generic term)
+musicality|1
+(noun)|musicalness|sound property (generic term)
+musically|1
+(adv)|unmusically (antonym)
+musicalness|1
+(noun)|musicality|sound property (generic term)
+musician|2
+(noun)|instrumentalist|player|performer (generic term)|performing artist (generic term)
+(noun)|artist (generic term)|creative person (generic term)
+musicianship|1
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+musicogenic epilepsy|1
+(noun)|reflex epilepsy (generic term)
+musicological|1
+(adj)|humanistic discipline|humanities|liberal arts|arts (related term)
+musicologist|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+musicology|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+musing|2
+(adj)|brooding|broody|contemplative|meditative|pensive|pondering|reflective|ruminative|thoughtful (similar term)
+(noun)|contemplation|reflection|reflexion|rumination|thoughtfulness|consideration (generic term)
+musjid|1
+(noun)|masjid|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+musk|2
+(noun)|secretion (generic term)
+(noun)|scent (generic term)
+musk-scented|1
+(adj)|musky-scented|odorous (similar term)
+musk clover|1
+(noun)|muskus grass|white-stemmed filaree|Erodium moschatum|storksbill (generic term)|heron's bill (generic term)
+musk deer|1
+(noun)|Moschus moschiferus|deer (generic term)|cervid (generic term)
+musk duck|1
+(noun)|muscovy duck|Cairina moschata|duck (generic term)
+musk hog|1
+(noun)|peccary|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+musk kangaroo|1
+(noun)|Hypsiprymnodon moschatus|kangaroo (generic term)
+musk mallow|2
+(noun)|abelmosk|Abelmoschus moschatus|Hibiscus moschatus|mallow (generic term)
+(noun)|mus rose|Malva moschata|mallow (generic term)
+musk ox|1
+(noun)|musk sheep|Ovibos moschatus|bovid (generic term)
+musk rose|1
+(noun)|Rosa moschata|rose (generic term)|rosebush (generic term)
+musk sheep|1
+(noun)|musk ox|Ovibos moschatus|bovid (generic term)
+musk thistle|1
+(noun)|nodding thistle|Carduus nutans|thistle (generic term)
+musk turtle|1
+(noun)|stinkpot|mud turtle (generic term)
+muskat|1
+(noun)|muscat|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+muskellunge|2
+(noun)|pike (generic term)
+(noun)|Esox masquinongy|pike (generic term)
+musket|1
+(noun)|muzzle loader (generic term)
+musket ball|1
+(noun)|ball|shot (generic term)|pellet (generic term)
+musketeer|1
+(noun)|infantryman (generic term)|marcher (generic term)|foot soldier (generic term)|footslogger (generic term)
+musketry|2
+(noun)|army unit (generic term)
+(noun)|proficiency (generic term)|technique (generic term)
+muskhogean|2
+(noun)|Muskhogean|Muskogean|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+muskhogean language|1
+(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+muskiness|1
+(noun)|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+muskmelon|2
+(noun)|sweet melon|sweet melon vine|Cucumis melo|melon (generic term)|melon vine (generic term)
+(noun)|sweet melon|melon (generic term)
+muskogean|2
+(noun)|Muskhogean|Muskogean|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+muskogean language|1
+(noun)|Muskhogean|Muskhogean language|Muskogean|Muskogean language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+muskogee|3
+(noun)|Muskogee|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Muskogee|town (generic term)
+(noun)|Muskogee|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+muskrat|2
+(noun)|muskrat fur|fur (generic term)|pelt (generic term)
+(noun)|musquash|Ondatra zibethica|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+muskrat fur|1
+(noun)|muskrat|fur (generic term)|pelt (generic term)
+muskus grass|1
+(noun)|musk clover|white-stemmed filaree|Erodium moschatum|storksbill (generic term)|heron's bill (generic term)
+muskwood|1
+(noun)|Olearia argophylla|daisybush (generic term)|daisy-bush (generic term)|daisy bush (generic term)
+musky|1
+(adj)|fragrant (similar term)
+musky-scented|1
+(adj)|musk-scented|odorous (similar term)
+muslim|2
+(adj)|Muslim|Moslem|Islamic|monotheism (related term)
+(noun)|Muslim|Moslem|religious person (generic term)
+muslim calendar|1
+(noun)|Islamic calendar|Muhammadan calendar|Mohammedan calendar|Moslem calendar|Muslim calendar|lunar calendar (generic term)
+muslim ummah|1
+(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community (generic term)
+muslimah|1
+(noun)|Muslimah|Muslim (generic term)|Moslem (generic term)
+muslimism|2
+(noun)|Islam|Muslimism|civilization (generic term)|civilisation (generic term)
+(noun)|Islam|Islamism|Mohammedanism|Muhammadanism|Muslimism|monotheism (generic term)
+muslin|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+musnud|1
+(noun)|throne (generic term)
+musophaga|1
+(noun)|Musophaga|genus Musophaga|bird genus (generic term)
+musophagidae|1
+(noun)|Musophagidae|family Musophagidae|bird family (generic term)
+musophobia|1
+(noun)|zoophobia (generic term)
+musquash|1
+(noun)|muskrat|Ondatra zibethica|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+muss|2
+(noun)|mess|messiness|mussiness|disorderliness (generic term)|disorder (generic term)
+(verb)|tussle|disarrange (generic term)
+mussel|2
+(noun)|shellfish (generic term)
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+mussel shrimp|1
+(noun)|seed shrimp|ostracod|crustacean (generic term)
+musset|1
+(noun)|Musset|Alfred de Musset|Louis Charles Alfred de Musset|writer (generic term)|author (generic term)|poet (generic term)
+mussiness|1
+(noun)|mess|messiness|muss|disorderliness (generic term)|disorder (generic term)
+mussitate|1
+(verb)|mumble|mutter|maunder|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+mussitation|1
+(noun)|mutter|muttering|murmur|murmuring|murmuration|sound (generic term)
+mussolini|1
+(noun)|Mussolini|Benito Mussolini|Il Duce|dictator (generic term)|potentate (generic term)
+mussorgsky|1
+(noun)|Mussorgsky|Moussorgsky|Modest Mussorgsky|Modest Moussorgsky|Modest Petrovich Mussorgsky|Modest Petrovich Moussorgsky|composer (generic term)
+mussy|1
+(adj)|messy|untidy (similar term)
+must|4
+(adj)|essential (similar term)
+(noun)|necessity (generic term)|essential (generic term)|requirement (generic term)|requisite (generic term)|necessary (generic term)
+(noun)|grape juice (generic term)
+(noun)|mustiness|moldiness|staleness (generic term)
+mustache|1
+(noun)|moustache|hair (generic term)
+mustache cup|1
+(noun)|moustache cup|cup (generic term)
+mustached|1
+(adj)|mustachioed|unshaven (similar term)|unshaved (similar term)
+mustachio|1
+(noun)|moustachio|handle-bars|mustache (generic term)|moustache (generic term)
+mustachioed|1
+(adj)|mustached|unshaven (similar term)|unshaved (similar term)
+mustafa kemal|1
+(noun)|Ataturk|Kemal Ataturk|Kemal Pasha|Mustafa Kemal|statesman (generic term)|solon (generic term)|national leader (generic term)
+mustagh|1
+(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+mustagh range|1
+(noun)|Karakoram|Karakoram Range|Karakorum Range|Mustagh|Mustagh Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+mustang|1
+(noun)|pony (generic term)
+mustang mint|1
+(noun)|Monardella lanceolata|herb (generic term)|herbaceous plant (generic term)
+mustard|3
+(noun)|crucifer (generic term)|cruciferous plant (generic term)
+(noun)|table mustard|condiment (generic term)
+(noun)|mustard greens|leaf mustard|Indian mustard|cruciferous vegetable (generic term)
+mustard agent|1
+(noun)|mustard gas|blistering agent|dichloroethyl sulfide|sulfur mustard|poison gas (generic term)|vesicant (generic term)|vesicatory (generic term)
+mustard family|1
+(noun)|Cruciferae|family Cruciferae|Brassicaceae|family Brassicaceae|dilleniid dicot family (generic term)
+mustard gas|1
+(noun)|mustard agent|blistering agent|dichloroethyl sulfide|sulfur mustard|poison gas (generic term)|vesicant (generic term)|vesicatory (generic term)
+mustard greens|1
+(noun)|mustard|leaf mustard|Indian mustard|cruciferous vegetable (generic term)
+mustard oil|1
+(noun)|oil (generic term)
+mustard plaster|1
+(noun)|sinapism|poultice (generic term)|cataplasm (generic term)|plaster (generic term)
+mustard sauce|1
+(noun)|sauce (generic term)
+mustard seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+mustard tree|2
+(noun)|tree tobacco|Nicotiana glauca|tobacco (generic term)|tobacco plant (generic term)
+(noun)|toothbrush tree|Salvadora persica|fruit tree (generic term)
+mustela|1
+(noun)|Mustela|genus Mustela|mammal genus (generic term)
+mustela erminea|1
+(noun)|ermine|shorttail weasel|Mustela erminea|weasel (generic term)
+mustela frenata|1
+(noun)|longtail weasel|long-tailed weasel|Mustela frenata|weasel (generic term)
+mustela nigripes|1
+(noun)|black-footed ferret|ferret|Mustela nigripes|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+mustela nivalis|1
+(noun)|Old World least weasel|Mustela nivalis|weasel (generic term)
+mustela putorius|1
+(noun)|polecat|fitch|foulmart|foumart|Mustela putorius|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+mustela rixosa|1
+(noun)|New World least weasel|Mustela rixosa|weasel (generic term)
+mustela vison|1
+(noun)|American mink|Mustela vison|mink (generic term)
+mustelid|1
+(noun)|musteline mammal|musteline|carnivore (generic term)
+mustelidae|1
+(noun)|Mustelidae|family Mustelidae|mammal family (generic term)
+musteline|1
+(noun)|musteline mammal|mustelid|carnivore (generic term)
+musteline mammal|1
+(noun)|mustelid|musteline|carnivore (generic term)
+mustelus|1
+(noun)|Mustelus|genus Mustelus|fish genus (generic term)
+mustelus canis|1
+(noun)|American smooth dogfish|Mustelus canis|smooth dogfish (generic term)
+mustelus mustelus|1
+(noun)|smoothhound|smoothhound shark|Mustelus mustelus|smooth dogfish (generic term)
+mustelus norrisi|1
+(noun)|Florida smoothhound|Mustelus norrisi|smooth dogfish (generic term)
+muster|4
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|conscription|draft|selective service|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+(verb)|rally|summon|come up|muster up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|call (generic term)|send for (generic term)
+muster call|1
+(noun)|roll call (generic term)
+muster in|1
+(verb)|enlist|draft|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)|discharge (antonym)
+muster out|1
+(verb)|discharge|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)|enlist (antonym)
+muster roll|1
+(noun)|roll (generic term)|roster (generic term)
+muster up|1
+(verb)|muster|rally|summon|come up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+musth|1
+(noun)|phase (generic term)|stage (generic term)
+mustiness|1
+(noun)|must|moldiness|staleness (generic term)
+musty|2
+(adj)|moldy|mouldy|stale (similar term)
+(adj)|fusty|frowsty|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+mut|1
+(noun)|em|mutton|area unit (generic term)|square measure (generic term)
+mutability|1
+(noun)|mutableness|changeableness (generic term)|changeability (generic term)|immutableness (antonym)|immutability (antonym)
+mutable|1
+(adj)|changeable|immutable (antonym)
+mutableness|1
+(noun)|mutability|changeableness (generic term)|changeability (generic term)|immutableness (antonym)|immutability (antonym)
+mutafacient|1
+(adj)|agent (related term)
+mutagen|1
+(noun)|agent (generic term)
+mutagenesis|1
+(noun)|cause (generic term)
+mutagenic|1
+(adj)|agent (related term)
+mutamycin|1
+(noun)|mitomycin|Mutamycin|antibiotic (generic term)|antibiotic drug (generic term)
+mutant|3
+(adj)|change|alteration|modification (related term)
+(noun)|mutation|variation|sport|organism (generic term)|being (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+mutant gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+mutate|1
+(verb)|change (generic term)
+mutation|3
+(noun)|mutant|variation|sport|organism (generic term)|being (generic term)
+(noun)|genetic mutation|chromosomal mutation|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+mutational|1
+(adj)|change|alteration|modification (related term)
+mutative|1
+(adj)|change|alteration|modification (related term)
+mutawa|1
+(noun)|Mutawa'een|Mutawa|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+mutawa'een|1
+(noun)|Mutawa'een|Mutawa|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+mutchkin|1
+(noun)|liquid unit (generic term)|liquid measure (generic term)
+mute|6
+(adj)|tongueless|unspoken|wordless|inarticulate (similar term)|unarticulate (similar term)
+(adj)|tongueless|nonspeaking (similar term)|walk-on (similar term)
+(adj)|dumb|silent|inarticulate (similar term)|unarticulate (similar term)
+(noun)|deaf-mute|deaf-and-dumb person|deaf person (generic term)
+(noun)|acoustic device (generic term)
+(verb)|muffle|dull|damp|dampen|tone down|soften (generic term)
+mute swan|1
+(noun)|Cygnus olor|swan (generic term)
+muted|2
+(adj)|hushed|subdued|quiet|soft (similar term)
+(adj)|dull|muffled|softened|soft (similar term)
+mutely|1
+(adv)|wordlessly|silently|taciturnly
+muteness|2
+(noun)|mutism|condition (generic term)|status (generic term)
+(noun)|silence|uncommunicativeness (generic term)
+mutilate|3
+(verb)|mangle|cut up|damage (generic term)
+(verb)|mangle|murder|falsify (generic term)|distort (generic term)|garble (generic term)|warp (generic term)
+(verb)|mar|maim (generic term)
+mutilated|3
+(adj)|maimed|injured (similar term)
+(adj)|maimed|unfit (similar term)
+(adj)|mangled|damaged (similar term)
+mutilation|1
+(noun)|injury (generic term)|accidental injury (generic term)
+mutilator|1
+(noun)|maimer|mangler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+mutillidae|1
+(noun)|Mutillidae|family Mutillidae|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+mutineer|1
+(noun)|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+mutinous|2
+(adj)|insubordinate (similar term)
+(adj)|disloyal (similar term)
+mutinus|1
+(noun)|Mutinus|genus Mutinus|fungus genus (generic term)
+mutinus caninus|1
+(noun)|dog stinkhorn|Mutinus caninus|stinkhorn (generic term)|carrion fungus (generic term)
+mutiny|2
+(noun)|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+(verb)|rebel (generic term)|arise (generic term)|rise (generic term)|rise up (generic term)
+mutisia|1
+(noun)|shrub (generic term)|bush (generic term)
+mutism|1
+(noun)|muteness|condition (generic term)|status (generic term)
+muton|1
+(noun)|nucleotide (generic term)
+mutsuhito|1
+(noun)|Meiji Tenno|Mutsuhito|emperor (generic term)
+mutt|1
+(noun)|cur|mongrel|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+mutter|4
+(noun)|muttering|murmur|murmuring|murmuration|mussitation|sound (generic term)
+(noun)|grumble|grumbling|murmur|murmuring|muttering|complaint (generic term)
+(verb)|mumble|maunder|mussitate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|murmur|grumble|croak|gnarl|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+mutterer|1
+(noun)|mumbler|murmurer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+muttering|2
+(noun)|mutter|murmur|murmuring|murmuration|mussitation|sound (generic term)
+(noun)|grumble|grumbling|murmur|murmuring|mutter|complaint (generic term)
+mutton|2
+(noun)|mouton|meat (generic term)
+(noun)|em|mut|area unit (generic term)|square measure (generic term)
+mutton chop|2
+(noun)|chop (generic term)
+(noun)|sideburn|burnside|side-whiskers|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+mutton snapper|1
+(noun)|muttonfish|Lutjanus analis|snapper (generic term)
+mutton tallow|1
+(noun)|tallow (generic term)
+muttonfish|1
+(noun)|mutton snapper|Lutjanus analis|snapper (generic term)
+muttonhead|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+mutual|2
+(adj)|common|shared (similar term)
+(adj)|reciprocal|bilateral (similar term)|correlative (similar term)|interactional (similar term)|interactive (similar term)|reciprocating (similar term)|reciprocatory (similar term)|reciprocative (similar term)|nonreciprocal (antonym)
+mutual affection|1
+(noun)|mutual understanding|sympathy (generic term)
+mutual aid|1
+(noun)|international logistic support|logistic support (generic term)|logistic assistance (generic term)
+mutual exclusiveness|1
+(noun)|incompatibility|inconsistency|repugnance|contradictoriness (generic term)
+mutual fund|1
+(noun)|open-end fund|open-end investment company|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+mutual inductance|1
+(noun)|coefficient of mutual induction|coefficient (generic term)
+mutual induction|1
+(noun)|induction (generic term)|inductance (generic term)
+mutual opposition|1
+(noun)|polarity|opposition (generic term)|oppositeness (generic term)
+mutual resemblance|1
+(noun)|resemblance (generic term)
+mutual savings bank|1
+(noun)|MSB|savings bank (generic term)
+mutual understanding|1
+(noun)|mutual affection|sympathy (generic term)
+mutualism|1
+(noun)|symbiosis|mutuality (generic term)|interdependence (generic term)|interdependency (generic term)
+mutualist|1
+(adj)|interdependent|mutually beneficial|dependent (similar term)
+mutuality|2
+(noun)|mutualness|reciprocality (generic term)|reciprocity (generic term)
+(noun)|interdependence|interdependency|reciprocality (generic term)|reciprocity (generic term)
+mutually|1
+(adv)|reciprocally
+mutually beneficial|1
+(adj)|interdependent|mutualist|dependent (similar term)
+mutually exclusive|2
+(adj)|contradictory|incompatible (similar term)
+(adj)|alternative|disjunctive (similar term)
+mutually ruinous|1
+(adj)|internecine|bloody (similar term)
+mutualness|1
+(noun)|mutuality|reciprocality (generic term)|reciprocity (generic term)
+muumuu|1
+(noun)|Mother Hubbard|dress (generic term)|frock (generic term)
+muybridge|1
+(noun)|Muybridge|Eadweard Muybridge|Edward James Muggeridge|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+muzhik|1
+(noun)|moujik|mujik|muzjik|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+muzjik|1
+(noun)|muzhik|moujik|mujik|peasant (generic term)|provincial (generic term)|bucolic (generic term)
+muztag|1
+(noun)|Muztag|Muztagh|mountain peak (generic term)
+muztagh|1
+(noun)|Muztag|Muztagh|mountain peak (generic term)
+muzzle|7
+(noun)|gun muzzle|opening (generic term)
+(noun)|face (generic term)
+(noun)|restraint (generic term)|constraint (generic term)
+(noun)|gag|restraint (generic term)|constraint (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)|unmuzzle (antonym)
+(verb)|gag|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+(verb)|gag|tie (generic term)|bind (generic term)
+muzzle-loading|1
+(adj)|opening (related term)
+muzzle loader|1
+(noun)|firearm (generic term)|piece (generic term)|small-arm (generic term)
+muzzle velocity|1
+(noun)|speed (generic term)|velocity (generic term)
+muzzler|1
+(noun)|worker (generic term)
+muzzy|2
+(adj)|bleary|blurred|blurry|foggy|fuzzy|hazy|indistinct (similar term)
+(adj)|addled|befuddled|muddled|woolly|wooly|woolly-headed|wooly-minded|confused (similar term)
+mv|2
+(noun)|millivolt|mV|potential unit (generic term)
+(noun)|mendelevium|Md|Mv|atomic number 101|chemical element (generic term)|element (generic term)
+mvp|1
+(noun)|most valuable player|MVP|player (generic term)|participant (generic term)
+mwanza|1
+(noun)|Mwanza|city (generic term)|metropolis (generic term)|urban center (generic term)
+mwera|1
+(noun)|Mwera|Bantu (generic term)|Bantoid language (generic term)
+mx|1
+(noun)|maxwell|Mx|flux unit (generic term)|magnetic flux unit (generic term)
+mya|1
+(noun)|Mya|genus Mya|mollusk genus (generic term)
+mya arenaria|1
+(noun)|soft-shell clam|steamer|steamer clam|long-neck clam|Mya arenaria|clam (generic term)
+myaceae|1
+(noun)|Myaceae|order Myaceae|animal order (generic term)
+myacidae|1
+(noun)|Myacidae|family Myacidae|mollusk family (generic term)
+myadestes|1
+(noun)|Myadestes|genus Myadestes|bird genus (generic term)
+myalgia|1
+(noun)|myodynia|pain (generic term)|hurting (generic term)
+myalgic|1
+(adj)|pain|hurting (related term)
+myanmar|1
+(noun)|Myanmar|Union of Burma|Burma|Asian country (generic term)|Asian nation (generic term)
+myanmar monetary unit|1
+(noun)|Myanmar monetary unit|monetary unit (generic term)
+myasthenia|2
+(noun)|myasthenia gravis|disease of the neuromuscular junction (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+(noun)|physiological state (generic term)|physiological condition (generic term)
+myasthenia gravis|1
+(noun)|myasthenia|disease of the neuromuscular junction (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+myasthenic syndrome|1
+(noun)|Lambert-Eaton syndrome|Eaton-Lambert syndrome|carcinomatous myopathy|disease of the neuromuscular junction (generic term)
+mycelia sterilia|1
+(noun)|Mycelia Sterilia|order Mycelia Sterilia|fungus order (generic term)
+mycelium|1
+(noun)|plant part (generic term)|plant structure (generic term)
+mycenae|1
+(noun)|Mycenae|city (generic term)|metropolis (generic term)|urban center (generic term)
+mycenaean|1
+(adj)|Mycenaean|city|metropolis|urban center (related term)
+mycenaean civilisation|1
+(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+mycenaean civilization|1
+(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+mycenaean culture|1
+(noun)|Mycenaean civilization|Mycenaean civilisation|Mycenaean culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+mycenaen|1
+(noun)|Mycenaen|Greek (generic term)|Hellene (generic term)
+mycetophilidae|1
+(noun)|Mycetophilidae|family Mycetophylidae|arthropod family (generic term)
+mycobacteria|1
+(noun)|mycobacterium|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+mycobacteriaceae|1
+(noun)|Mycobacteriaceae|family Mycobacteriaceae|bacteria family (generic term)
+mycobacterium|1
+(noun)|mycobacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+mycobacterium leprae|1
+(noun)|leprosy bacillus|Mycobacterium leprae|mycobacteria (generic term)|mycobacterium (generic term)
+mycobacterium tuberculosis|1
+(noun)|tubercle bacillus|Mycobacterium tuberculosis|mycobacteria (generic term)|mycobacterium (generic term)
+mycologist|1
+(noun)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+mycology|1
+(noun)|botany (generic term)|phytology (generic term)
+mycomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+mycophagist|1
+(noun)|micophage|eater (generic term)|feeder (generic term)
+mycophagy|1
+(noun)|eating (generic term)|feeding (generic term)
+mycoplasma|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+mycoplasmal pneumonia|1
+(noun)|atypical pneumonia|primary atypical pneumonia|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+mycoplasmataceae|1
+(noun)|Mycoplasmataceae|family Mycoplasmataceae|bacteria family (generic term)
+mycoplasmatales|1
+(noun)|Mycoplasmatales|order Mycoplasmatales|animal order (generic term)
+mycosis|1
+(noun)|fungal infection|zymosis (generic term)
+mycostatin|1
+(noun)|nystatin|Mycostatin|Nystan|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|antibiotic (generic term)|antibiotic drug (generic term)
+mycotoxin|1
+(noun)|plant toxin (generic term)|phytotoxin (generic term)
+mycrosporidia|1
+(noun)|Mycrosporidia|order Mycrosporidia|animal order (generic term)
+mycteria|1
+(noun)|Mycteria|genus Mycteria|bird genus (generic term)
+mycteria americana|1
+(noun)|wood ibis|wood stork|flinthead|Mycteria americana|stork (generic term)
+mycteroperca|1
+(noun)|Mycteroperca|genus Mycteroperca|fish genus (generic term)
+mycteroperca bonaci|1
+(noun)|jewfish|Mycteroperca bonaci|grouper (generic term)
+myctophidae|1
+(noun)|Myctophidae|family Myctophidae|fish family (generic term)
+mydriasis|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|dilation (generic term)|dilatation (generic term)
+mydriatic|1
+(noun)|mydriatic drug|drug (generic term)
+mydriatic drug|1
+(noun)|mydriatic|drug (generic term)
+myelatelia|1
+(noun)|defect (generic term)
+myelencephalon|1
+(noun)|neural structure (generic term)
+myelic|1
+(adj)|neural structure|funiculus (related term)
+myelin|1
+(noun)|myeline|medulla|fat (generic term)
+myelin sheath|1
+(noun)|medullary sheath|sheath (generic term)|case (generic term)
+myelinated|1
+(adj)|medullated|fat (related term)|unmyelinated (antonym)
+myelinated nerve fiber|1
+(noun)|medullated nerve fiber|nerve fiber (generic term)|nerve fibre (generic term)
+myeline|1
+(noun)|myelin|medulla|fat (generic term)
+myelinic|1
+(adj)|fat (related term)
+myelinisation|1
+(noun)|myelinization|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+myelinization|1
+(noun)|myelinisation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+myelitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+myeloblast|1
+(noun)|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+myeloblastic leukemia|1
+(noun)|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+myelocyte|1
+(noun)|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+myelocytic leukemia|1
+(noun)|granulocytic leukemia|leukemia (generic term)|leukaemia (generic term)|leucaemia (generic term)|cancer of the blood (generic term)
+myelofibrosis|1
+(noun)|fibrosis (generic term)
+myelogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+myelography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+myeloid|2
+(adj)|connective tissue (related term)
+(adj)|neural structure|funiculus (related term)
+myeloid leukemia|1
+(noun)|chronic myelocytic leukemia|myelocytic leukemia (generic term)|granulocytic leukemia (generic term)|chronic leukemia (generic term)
+myeloma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+myelomeningocele|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+myenteric plexus|1
+(noun)|plexus myentericus|nerve plexus (generic term)
+myg|1
+(noun)|myriagram|metric weight unit (generic term)|weight unit (generic term)
+myiasis|1
+(noun)|infestation (generic term)
+mylanta|1
+(noun)|Mylanta|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+mylar|1
+(noun)|Mylar|plastic (generic term)
+myles standish|1
+(noun)|Standish|Miles Standish|Myles Standish|settler (generic term)|colonist (generic term)
+myliobatidae|1
+(noun)|Myliobatidae|family Myliobatidae|fish family (generic term)
+mylitta|1
+(noun)|Ishtar|Mylitta|Semitic deity (generic term)
+mylodon|1
+(noun)|edentate (generic term)
+mylodontid|1
+(noun)|edentate (generic term)
+mylodontidae|1
+(noun)|Mylodontidae|family Mylodontidae|mammal family (generic term)
+mym|1
+(noun)|myriameter|myriametre|metric linear unit (generic term)
+myna|1
+(noun)|mynah|mina|minah|myna bird|mynah bird|starling (generic term)
+myna bird|1
+(noun)|myna|mynah|mina|minah|mynah bird|starling (generic term)
+mynah|1
+(noun)|myna|mina|minah|myna bird|mynah bird|starling (generic term)
+mynah bird|1
+(noun)|myna|mynah|mina|minah|myna bird|starling (generic term)
+myocardial|1
+(adj)|cardiac muscle|heart muscle (related term)
+myocardial infarct|1
+(noun)|myocardial infarction|MI|infarct (generic term)|infarction (generic term)
+myocardial infarction|1
+(noun)|myocardial infarct|MI|infarct (generic term)|infarction (generic term)
+myocardial inflammation|1
+(noun)|myocarditis|carditis (generic term)
+myocardiopathy|1
+(noun)|cardiomyopathy|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+myocarditis|1
+(noun)|myocardial inflammation|carditis (generic term)
+myocardium|1
+(noun)|cardiac muscle (generic term)|heart muscle (generic term)
+myocastor|1
+(noun)|Myocastor|genus Myocastor|mammal genus (generic term)
+myocastor coypus|1
+(noun)|coypu|nutria|Myocastor coypus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+myoclonus|1
+(noun)|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+myoclonus epilepsy|1
+(noun)|Lafora's disease|epilepsy (generic term)
+myodynia|1
+(noun)|myalgia|pain (generic term)|hurting (generic term)
+myofibril|1
+(noun)|myofibrilla|sarcostyle|fibril (generic term)|filament (generic term)|strand (generic term)
+myofibrilla|1
+(noun)|myofibril|sarcostyle|fibril (generic term)|filament (generic term)|strand (generic term)
+myoglobin|1
+(noun)|hemoprotein (generic term)|haemoprotein (generic term)
+myoglobinuria|1
+(noun)|symptom (generic term)
+myogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+myoid|1
+(adj)|animal tissue (related term)
+myology|1
+(noun)|physiology (generic term)
+myoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+myometritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+myometrium|1
+(noun)|smooth muscle (generic term)|involuntary muscle (generic term)
+myomorpha|1
+(noun)|Myomorpha|suborder Myomorpha|animal order (generic term)
+myonecrosis|1
+(noun)|necrosis (generic term)|mortification (generic term)|gangrene (generic term)|sphacelus (generic term)
+myoneural junction|1
+(noun)|neuromuscular junction|synapse (generic term)
+myopathic|1
+(adj)|pathology (related term)
+myopathy|1
+(noun)|pathology (generic term)
+myope|1
+(noun)|visually impaired person (generic term)
+myopia|1
+(noun)|nearsightedness|shortsightedness|ametropia (generic term)|hyperopia (antonym)
+myopic|2
+(adj)|nearsighted|shortsighted|farsighted (antonym)
+(adj)|short|shortsighted|unforesightful|improvident (similar term)
+myopus|1
+(noun)|Myopus|genus Myopus|mammal genus (generic term)
+myosarcoma|1
+(noun)|sarcoma (generic term)
+myosin|1
+(noun)|globulin (generic term)
+myosis|2
+(noun)|epidemic pleurodynia|epidemic myalgia|diaphragmatic pleurisy|Bornholm disease|epidemic disease (generic term)
+(noun)|light reflex|pupillary reflex|miosis|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+myositis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+myositis trichinosa|1
+(noun)|trichinosis|trichiniasis|myositis (generic term)|infestation (generic term)
+myosotis|1
+(noun)|Myosotis|genus Myosotis|plant genus (generic term)
+myosotis scorpiodes|1
+(noun)|forget-me-not|mouse ear|Myosotis scorpiodes|herb (generic term)|herbaceous plant (generic term)
+myosotis sylvatica|1
+(noun)|garden forget-me-not|Myosotis sylvatica|herb (generic term)|herbaceous plant (generic term)
+myotactic reflex|1
+(noun)|stretch reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+myotic|2
+(adj)|miotic|drug (related term)
+(noun)|miotic drug|myotic drug|miotic|drug (generic term)
+myotic drug|1
+(noun)|miotic drug|miotic|myotic|drug (generic term)
+myotis|1
+(noun)|Myotis|genus Myotis|mammal genus (generic term)
+myotis leucifugus|1
+(noun)|little brown bat|little brown myotis|Myotis leucifugus|vespertilian bat (generic term)|vespertilionid (generic term)
+myotis velifer|1
+(noun)|cave myotis|Myotis velifer|vespertilian bat (generic term)|vespertilionid (generic term)
+myotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+myotonia|1
+(noun)|tonicity (generic term)|tonus (generic term)|tone (generic term)
+myotonia atrophica|1
+(noun)|myotonic muscular dystrophy|myotonic dystrophy|Steinert's disease|muscular dystrophy (generic term)|dystrophy (generic term)
+myotonia congenita|1
+(noun)|Thomsen's disease|myotonia (generic term)
+myotonic|1
+(adj)|tonicity|tonus|tone (related term)
+myotonic dystrophy|1
+(noun)|myotonic muscular dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy (generic term)|dystrophy (generic term)
+myotonic muscular dystrophy|1
+(noun)|myotonic dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy (generic term)|dystrophy (generic term)
+myrcia|1
+(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus (generic term)|magnoliopsid genus (generic term)
+myrciaria|1
+(noun)|Myrciaria|genus Myrciaria|Myrcia|dicot genus (generic term)|magnoliopsid genus (generic term)
+myrciaria cauliflora|1
+(noun)|jaboticaba|jaboticaba tree|Myrciaria cauliflora|fruit tree (generic term)
+myrdal|1
+(noun)|Myrdal|Gunnar Myrdal|Karl Gunnar Myrdal|economist (generic term)|economic expert (generic term)
+myriad|3
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|numberless|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|ten thousand|10000|large integer (generic term)
+myriagram|1
+(noun)|myg|metric weight unit (generic term)|weight unit (generic term)
+myriameter|1
+(noun)|myriametre|mym|metric linear unit (generic term)
+myriametre|1
+(noun)|myriameter|mym|metric linear unit (generic term)
+myriapod|1
+(noun)|arthropod (generic term)
+myriapoda|1
+(noun)|Diplopoda|class Diplopoda|Myriapoda|class Myriapoda|class (generic term)|category (generic term)|family (generic term)
+myrica|1
+(noun)|Myrica|genus Myrica|dicot genus (generic term)|magnoliopsid genus (generic term)
+myrica cerifera|1
+(noun)|bay myrtle|puckerbush|Myrica cerifera|wax myrtle (generic term)
+myrica gale|1
+(noun)|sweet gale|Scotch gale|Myrica gale|shrub (generic term)|bush (generic term)
+myrica pensylvanica|1
+(noun)|bayberry|candleberry|swamp candleberry|waxberry|Myrica pensylvanica|wax myrtle (generic term)
+myricaceae|1
+(noun)|Myricaceae|family Myricaceae|wax-myrtle family|dicot family (generic term)|magnoliopsid family (generic term)
+myricales|1
+(noun)|Myricales|order Myricales|plant order (generic term)
+myricaria|1
+(noun)|Myricaria|genus Myricaria|dilleniid dicot genus (generic term)
+myricaria germanica|1
+(noun)|false tamarisk|German tamarisk|Myricaria germanica|shrub (generic term)|bush (generic term)
+myringa|1
+(noun)|eardrum|tympanum|tympanic membrane|membrane (generic term)|tissue layer (generic term)
+myringectomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+myringoplasty|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+myringotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+myriophyllum|1
+(noun)|Myriophyllum|genus Myriophyllum|dicot genus (generic term)|magnoliopsid genus (generic term)
+myristic acid|1
+(noun)|tetradecanoic acid|saturated fatty acid (generic term)
+myristica|1
+(noun)|Myristica|genus Myristica|magnoliid dicot genus (generic term)
+myristica fragrans|1
+(noun)|nutmeg|nutmeg tree|Myristica fragrans|spice tree (generic term)
+myristicaceae|1
+(noun)|Myristicaceae|family Myristicaceae|nutmeg family|magnoliid dicot family (generic term)
+myrmecia|1
+(noun)|Myrmecia|genus Myrmecia|arthropod genus (generic term)
+myrmecobius|1
+(noun)|Myrmecobius|genus Myrmecobius|mammal genus (generic term)
+myrmecobius fasciatus|1
+(noun)|numbat|banded anteater|anteater|Myrmecobius fasciatus|dasyurid marsupial (generic term)|dasyurid (generic term)
+myrmecophaga|1
+(noun)|Myrmecophaga|genus Myrmecophaga|mammal genus (generic term)
+myrmecophaga jubata|1
+(noun)|ant bear|giant anteater|great anteater|tamanoir|Myrmecophaga jubata|anteater (generic term)|New World anteater (generic term)
+myrmecophagidae|1
+(noun)|Myrmecophagidae|family Myrmecophagidae|mammal family (generic term)
+myrmecophagous|1
+(adj)|insectivorous (similar term)
+myrmecophile|1
+(noun)|organism (generic term)|being (generic term)
+myrmecophilous|1
+(adj)|dependent (similar term)
+myrmecophyte|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+myrmecophytic|1
+(adj)|plant|flora|plant life (related term)
+myrmeleon|1
+(noun)|Myrmeleon|genus Myrmeleon|arthropod genus (generic term)
+myrmeleontidae|1
+(noun)|Myrmeleontidae|family Myrmeleontidae|arthropod family (generic term)
+myrmidon|2
+(noun)|follower (generic term)
+(noun)|Myrmidon|mythical being (generic term)
+myrobalan|1
+(noun)|cherry plum|myrobalan plum|Prunus cerasifera|plum (generic term)|plum tree (generic term)
+myrobalan plum|1
+(noun)|cherry plum|myrobalan|Prunus cerasifera|plum (generic term)|plum tree (generic term)
+myroxylon|1
+(noun)|Myroxylon|genus Myroxylon|rosid dicot genus (generic term)
+myroxylon balsamum|1
+(noun)|tolu tree|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree (generic term)
+myroxylon balsamum pereirae|1
+(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree (generic term)
+myroxylon pereirae|1
+(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree (generic term)
+myroxylon toluiferum|1
+(noun)|tolu tree|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree (generic term)
+myrrh|1
+(noun)|gum myrrh|sweet cicely|gum resin (generic term)
+myrrh tree|1
+(noun)|Commiphora myrrha|incense tree (generic term)
+myrrhis|1
+(noun)|Myrrhis|genus Myrrhis|rosid dicot genus (generic term)
+myrrhis odorata|1
+(noun)|sweet cicely|Myrrhis odorata|herb (generic term)|herbaceous plant (generic term)
+myrsinaceae|1
+(noun)|Myrsinaceae|family Myrsinaceae|myrsine family|dicot family (generic term)|magnoliopsid family (generic term)
+myrsine|1
+(noun)|Myrsine|genus Myrsine|dicot genus (generic term)|magnoliopsid genus (generic term)
+myrsine family|1
+(noun)|Myrsinaceae|family Myrsinaceae|dicot family (generic term)|magnoliopsid family (generic term)
+myrtaceae|1
+(noun)|Myrtaceae|family Myrtaceae|myrtle family|dicot family (generic term)|magnoliopsid family (generic term)
+myrtaceous tree|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+myrtales|1
+(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order (generic term)
+myrtillocactus|1
+(noun)|Myrtillocactus|genus Myrtillocactus|caryophylloid dicot genus (generic term)
+myrtillocactus geometrizans|1
+(noun)|garambulla|garambulla cactus|Myrtillocactus geometrizans|cactus (generic term)
+myrtle|2
+(noun)|Vinca minor|periwinkle (generic term)
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+myrtle beech|1
+(noun)|Nothofagus cuninghamii|southern beech (generic term)|evergreen beech (generic term)
+myrtle bird|1
+(noun)|myrtle warbler|Dendroica coronata|New World warbler (generic term)|wood warbler (generic term)
+myrtle family|1
+(noun)|Myrtaceae|family Myrtaceae|dicot family (generic term)|magnoliopsid family (generic term)
+myrtle flag|1
+(noun)|sweet flag|calamus|sweet calamus|flagroot|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+myrtle oak|1
+(noun)|seaside scrub oak|Quercus myrtifolia|scrub oak (generic term)
+myrtle spurge|1
+(noun)|caper spurge|mole plant|Euphorbia lathyris|spurge (generic term)
+myrtle warbler|1
+(noun)|myrtle bird|Dendroica coronata|New World warbler (generic term)|wood warbler (generic term)
+myrtus|1
+(noun)|Myrtus|genus Myrtus|dicot genus (generic term)|magnoliopsid genus (generic term)
+myrtus communis|1
+(noun)|common myrtle|Myrtus communis|myrtle (generic term)
+mysidacea|1
+(noun)|Mysidacea|order Mysidacea|animal order (generic term)
+mysidae|1
+(noun)|Mysidae|family Mysidae|arthropod family (generic term)
+mysis|1
+(noun)|Mysis|genus Mysis|arthropod genus (generic term)
+mysoline|1
+(noun)|primidone|Mysoline|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+mysophilia|1
+(noun)|liking (generic term)
+mysophobia|1
+(noun)|simple phobia (generic term)
+mysophobic|1
+(adj)|afraid (similar term)
+mysore|2
+(noun)|Mysore|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Karnataka|Mysore|state (generic term)|province (generic term)
+mysore thorn|1
+(noun)|Mysore thorn|Caesalpinia decapetala|Caesalpinia sepiaria|shrub (generic term)|bush (generic term)
+mysterious|2
+(adj)|cryptic|cryptical|deep|inscrutable|mystifying|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|mystic|mystical|occult|secret|orphic|esoteric (similar term)
+mysteriously|1
+(adv)|cryptically|enigmatically
+mystery|2
+(noun)|enigma|secret|closed book|perplexity (generic term)
+(noun)|mystery story|whodunit|story (generic term)
+mystery novel|1
+(noun)|detective novel|novel (generic term)
+mystery play|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+mystery story|1
+(noun)|mystery|whodunit|story (generic term)
+mystic|4
+(adj)|mysterious|mystical|occult|secret|orphic|esoteric (similar term)
+(adj)|mystical|thinking|thought|thought process|cerebration|intellection|mentation (related term)
+(adj)|mystical|religion|faith|religious belief (related term)
+(noun)|religious mystic|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+mystic jewel|1
+(noun)|Ling-pao|Mystic Jewel|Chinese deity (generic term)
+mystical|3
+(adj)|mystic|religion|faith|religious belief (related term)
+(adj)|mystic|thinking|thought|thought process|cerebration|intellection|mentation (related term)
+(adj)|mysterious|mystic|occult|secret|orphic|esoteric (similar term)
+mysticeti|1
+(noun)|Mysticeti|suborder Mysticeti|animal order (generic term)
+mysticism|2
+(noun)|religious mysticism|religion (generic term)|faith (generic term)|religious belief (generic term)
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+mystification|3
+(noun)|bewilderment|obfuscation|puzzlement|befuddlement|bafflement|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|obfuscation|activity (generic term)
+mystified|1
+(adj)|metagrobolized|metagrobolised|metagrabolized|metagrabolised|perplexed (similar term)
+mystifier|1
+(noun)|puzzle|puzzler|teaser|problem (generic term)
+mystify|2
+(verb)|perplex|vex|stick|get|puzzle|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|obscure (generic term)|bedim (generic term)|overcloud (generic term)|demystify (antonym)
+mystifying|1
+(adj)|cryptic|cryptical|deep|inscrutable|mysterious|inexplicable (similar term)|incomprehensible (similar term)
+mystique|1
+(noun)|air (generic term)|aura (generic term)|atmosphere (generic term)
+myth|1
+(noun)|story (generic term)
+mythic|2
+(adj)|story (related term)
+(adj)|fabulous|mythical|mythologic|mythological|unreal (similar term)
+mythical|1
+(adj)|fabulous|mythic|mythologic|mythological|unreal (similar term)
+mythical being|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+mythical creature|1
+(noun)|mythical monster|monster (generic term)|mythical being (generic term)
+mythical monster|1
+(noun)|mythical creature|monster (generic term)|mythical being (generic term)
+mythical place|1
+(noun)|imaginary place|fictitious place|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+mythicise|2
+(verb)|mythicize|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|mythologize|mythologise|mythicize|change (generic term)|alter (generic term)|modify (generic term)|demythologize (antonym)
+mythicize|2
+(verb)|mythicise|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|mythologize|mythologise|mythicise|change (generic term)|alter (generic term)|modify (generic term)|demythologize (antonym)
+mythologic|1
+(adj)|fabulous|mythic|mythical|mythological|unreal (similar term)
+mythological|1
+(adj)|fabulous|mythic|mythical|mythologic|unreal (similar term)
+mythologisation|1
+(noun)|mythologization|restatement (generic term)
+mythologise|2
+(verb)|mythologize|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|mythologize|mythicize|mythicise|change (generic term)|alter (generic term)|modify (generic term)|demythologize (antonym)
+mythologist|1
+(noun)|expert (generic term)
+mythologization|1
+(noun)|mythologisation|restatement (generic term)
+mythologize|2
+(verb)|mythologise|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|mythologise|mythicize|mythicise|change (generic term)|alter (generic term)|modify (generic term)|demythologize (antonym)
+mythology|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|social anthropology (generic term)|cultural anthropology (generic term)
+mytilene|1
+(noun)|Lesbos|Lesvos|Mytilene|Aegean island (generic term)
+mytilid|1
+(noun)|marine mussel|mussel (generic term)
+mytilidae|1
+(noun)|Mytilidae|family Mytilidae|mollusk family (generic term)
+mytilus|1
+(noun)|Mytilus|genus Mytilus|mollusk genus (generic term)
+mytilus edulis|1
+(noun)|edible mussel|Mytilus edulis|marine mussel (generic term)|mytilid (generic term)
+myxedema|1
+(noun)|myxoedema|hypothyroidism (generic term)
+myxine|1
+(noun)|Myxine|genus Myxine|fish genus (generic term)
+myxine glutinosa|1
+(noun)|Myxine glutinosa|hagfish (generic term)|hag (generic term)|slime eels (generic term)
+myxinidae|1
+(noun)|Myxinidae|family Myxinidae|fish family (generic term)
+myxiniformes|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+myxinikela|1
+(noun)|Myxinikela|genus Myxinikela|fish genus (generic term)
+myxinikela siroka|1
+(noun)|Myxinikela siroka|hagfish (generic term)|hag (generic term)|slime eels (generic term)
+myxinoidea|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+myxinoidei|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+myxobacter|1
+(noun)|myxobacteria|myxobacterium|gliding bacteria|slime bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+myxobacterales|1
+(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order (generic term)
+myxobacteria|1
+(noun)|myxobacterium|myxobacter|gliding bacteria|slime bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+myxobacteriaceae|1
+(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family (generic term)
+myxobacteriales|1
+(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order (generic term)
+myxobacterium|1
+(noun)|myxobacteria|myxobacter|gliding bacteria|slime bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+myxocephalus|1
+(noun)|Myxocephalus|genus Myxocephalus|fish genus (generic term)
+myxocephalus aenaeus|1
+(noun)|grubby|Myxocephalus aenaeus|sculpin (generic term)
+myxoedema|1
+(noun)|myxedema|hypothyroidism (generic term)
+myxoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+myxoma virus|1
+(noun)|poxvirus (generic term)
+myxomatosis|1
+(noun)|animal disease (generic term)
+myxomycete|1
+(noun)|true slime mold|acellular slime mold|plasmodial slime mold|slime mold (generic term)|slime mould (generic term)
+myxomycetes|1
+(noun)|Myxomycetes|class Myxomycetes|class (generic term)
+myxomycota|1
+(noun)|Myxomycota|division Myxomycota|Gymnomycota|division Gymnomycota|division (generic term)
+myxophyceae|1
+(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family (generic term)
+myxosporidia|1
+(noun)|Myxosporidia|order Myxosporidia|animal order (generic term)
+myxosporidian|1
+(noun)|sporozoan (generic term)
+myxovirus|1
+(noun)|animal virus (generic term)
+n|5
+(noun)|normality|N|relative quantity (generic term)
+(noun)|nitrogen|N|atomic number 7|chemical element (generic term)|element (generic term)|gas (generic term)
+(noun)|north|due north|northward|N|cardinal compass point (generic term)
+(noun)|newton|N|force unit (generic term)
+(noun)|N|letter n|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+n'djamena|1
+(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital (generic term)
+n-th|1
+(adj)|nth|ordinal (similar term)
+n-type semiconductor|1
+(noun)|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+n. y. stock exchange|1
+(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+n.b.|1
+(noun)|nota bene|NB|N.B.|note (generic term)|annotation (generic term)|notation (generic term)
+na|1
+(noun)|sodium|Na|atomic number 11|metallic element (generic term)|metal (generic term)
+na-dene|1
+(noun)|Na-Dene|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+nab|3
+(verb)|tag (generic term)
+(verb)|collar|nail|apprehend|arrest|pick up|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+nabalus|1
+(noun)|Nabalus|genus Nabalus|asterid dicot genus (generic term)
+nabalus alba|1
+(noun)|white lettuce|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root (generic term)
+nabalus serpentarius|1
+(noun)|lion's foot|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb (generic term)|herbaceous plant (generic term)
+nablus|1
+(noun)|Nablus|city (generic term)|metropolis (generic term)|urban center (generic term)
+nabob|2
+(noun)|nawab|governor (generic term)
+(noun)|man of means (generic term)|rich man (generic term)|wealthy man (generic term)
+nabokov|1
+(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer (generic term)|author (generic term)
+naboom|1
+(noun)|cactus euphorbia|Euphorbia ingens|spurge (generic term)
+nabothian cyst|1
+(noun)|nabothian follicle|cyst (generic term)
+nabothian follicle|1
+(noun)|nabothian cyst|cyst (generic term)
+nabothian gland|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+nabu|1
+(noun)|Nabu|Nebo|Semitic deity (generic term)
+nabumetone|1
+(noun)|Relafen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+nac|1
+(noun)|North Atlantic Council|NAC|council (generic term)
+nacelle|1
+(noun)|enclosure (generic term)
+nacho|1
+(noun)|tortilla chip (generic term)
+nacimiento|1
+(noun)|Nacimiento|mountain peak (generic term)
+nacre|1
+(noun)|mother-of-pearl|shell (generic term)
+nacreous|2
+(adj)|shell (related term)
+(adj)|iridescent|opalescent|opaline|pearlescent|bright (similar term)
+nacreous cloud|1
+(noun)|mother-of-pearl cloud|cloud (generic term)
+nad|1
+(noun)|nicotinamide adenine dinucleotide|NAD|coenzyme (generic term)
+nada|1
+(noun)|nothing|nil|nix|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+nada daiquiri|1
+(noun)|NADA daiquiri|daiquiri (generic term)|rum cocktail (generic term)
+nadine gordimer|1
+(noun)|Gordimer|Nadine Gordimer|writer (generic term)|author (generic term)
+nadir|2
+(noun)|low-water mark|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|celestial point (generic term)|zenith (antonym)
+nadolol|1
+(noun)|Corgard|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+nadp|1
+(noun)|nicotinamide adenine dinucleotide phosphate|NADP|coenzyme (generic term)
+naegele's rule|1
+(noun)|Naegele's rule|principle (generic term)|rule (generic term)
+naemorhedus|1
+(noun)|Naemorhedus|genus Naemorhedus|mammal genus (generic term)
+naemorhedus goral|1
+(noun)|goral|Naemorhedus goral|goat antelope (generic term)
+nafcil|1
+(noun)|nafcillin|Nafcil|penicillinase-resistant antibiotic (generic term)
+nafcillin|1
+(noun)|Nafcil|penicillinase-resistant antibiotic (generic term)
+nafta|1
+(noun)|North American Free Trade Agreement|NAFTA|free trade (generic term)
+nafud|1
+(noun)|Nefud|An Nefud|Nafud|An Nafud|desert (generic term)
+nag|5
+(noun)|scold|scolder|nagger|common scold|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|hack|jade|plug|horse (generic term)|Equus caballus (generic term)
+(verb)|peck|hen-peck|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|worry (generic term)|vex (generic term)
+(verb)|remind (generic term)
+nag hammadi|2
+(noun)|Nag Hammadi|town (generic term)
+(noun)|Nag Hammadi|Nag Hammadi Library|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+nag hammadi library|1
+(noun)|Nag Hammadi|Nag Hammadi Library|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+naga|1
+(noun)|Naga|Kamarupan (generic term)
+nagami|1
+(noun)|nagami kumquat|oval kumquat|Fortunella margarita|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+nagami kumquat|1
+(noun)|nagami|oval kumquat|Fortunella margarita|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+nagano|1
+(noun)|Nagano|city (generic term)|metropolis (generic term)|urban center (generic term)
+nagari|1
+(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary (generic term)|syllabic script (generic term)|script (generic term)
+nagari script|1
+(noun)|Devanagari|Devanagari script|Nagari|Nagari script|syllabary (generic term)|syllabic script (generic term)|script (generic term)
+nagasaki|1
+(noun)|Nagasaki|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+nageia|1
+(noun)|Nageia|genus Nageia|gymnosperm genus (generic term)
+nageia nagi|1
+(noun)|nagi|Nageia nagi|conifer (generic term)|coniferous tree (generic term)
+nagger|1
+(noun)|scold|scolder|nag|common scold|unpleasant person (generic term)|disagreeable person (generic term)
+nagging|1
+(adj)|shrewish|ill-natured (similar term)
+nagi|1
+(noun)|Nageia nagi|conifer (generic term)|coniferous tree (generic term)
+nagoya|1
+(noun)|Nagoya|city (generic term)|metropolis (generic term)|urban center (generic term)
+naha city|1
+(noun)|Naha City|city (generic term)|metropolis (generic term)|urban center (generic term)
+nahuatl|2
+(noun)|Nahuatl|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Nahuatl|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+nahum|2
+(noun)|Nahum|prophet (generic term)
+(noun)|Nahum|Book of Nahum|book (generic term)
+naiad|2
+(noun)|water nymph|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|water nymph (generic term)
+naiad family|1
+(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|monocot family (generic term)|liliopsid family (generic term)
+naiadaceae|1
+(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family (generic term)|liliopsid family (generic term)
+naiadales|1
+(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order (generic term)
+naiant|1
+(adj)|swimming|horizontal (similar term)
+naias|1
+(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus (generic term)|liliopsid genus (generic term)
+naif|2
+(adj)|naive|childlike (similar term)|wide-eyed (similar term)|round-eyed (similar term)|dewy-eyed (similar term)|simple (similar term)|credulous (similar term)|fleeceable (similar term)|green (similar term)|gullible (similar term)|innocent (similar term)|ingenuous (similar term)|simple-minded (similar term)|unsophisticated (similar term)|unworldly (similar term)|credulous (related term)|uninformed (related term)|unworldly (related term)|sophisticated (antonym)
+(noun)|innocent (generic term)|inexperienced person (generic term)
+naiki|1
+(noun)|Naiki|Central Dravidian (generic term)
+nail|10
+(noun)|horny structure (generic term)|unguis (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|linear unit (generic term)
+(verb)|attach (generic term)|nail down (related term)
+(verb)|collar|apprehend|arrest|pick up|nab|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|smash|boom|blast|hit (generic term)
+(verb)|nail down|peg|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|breeze through|ace|pass with flying colors|sweep through|sail through|pass (generic term)|make it (generic term)
+(verb)|pinpoint|locate (generic term)|turn up (generic term)
+(verb)|complete|play (generic term)
+nail-biting|1
+(adj)|cliff-hanging|suspenseful|suspensive|tense (similar term)
+nail-tailed kangaroo|1
+(noun)|nail-tailed wallaby|wallaby (generic term)|brush kangaroo (generic term)
+nail-tailed wallaby|1
+(noun)|nail-tailed kangaroo|wallaby (generic term)|brush kangaroo (generic term)
+nail down|3
+(verb)|nail|peg|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|pin down|peg down|narrow down|narrow|specify|determine (generic term)
+(verb)|finalize|finalise|settle|end (generic term)|terminate (generic term)|settle on (related term)
+nail enamel|1
+(noun)|nail polish|nail varnish|cosmetic (generic term)|enamel (generic term)
+nail hole|1
+(noun)|hole (generic term)
+nail polish|1
+(noun)|nail enamel|nail varnish|cosmetic (generic term)|enamel (generic term)
+nail pulling|1
+(noun)|nail removal|torture (generic term)|torturing (generic term)
+nail removal|1
+(noun)|nail pulling|torture (generic term)|torturing (generic term)
+nail varnish|1
+(noun)|nail polish|nail enamel|cosmetic (generic term)|enamel (generic term)
+nailbrush|1
+(noun)|brush (generic term)
+nailer|1
+(noun)|worker (generic term)
+nailfile|1
+(noun)|file (generic term)
+nailhead|2
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|knob (generic term)|boss (generic term)
+nailrod|1
+(noun)|cat's-tail|bullrush|bulrush|reed mace|reedmace|Typha latifolia|cattail (generic term)
+nainsook|1
+(noun)|muslin (generic term)
+naira|1
+(noun)|Nigerian monetary unit (generic term)
+nairobi|1
+(noun)|Nairobi|capital of Kenya|national capital (generic term)
+naismith|1
+(noun)|Naismith|James Naismith|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+naive|5
+(adj)|naif|childlike (similar term)|wide-eyed (similar term)|round-eyed (similar term)|dewy-eyed (similar term)|simple (similar term)|credulous (similar term)|fleeceable (similar term)|green (similar term)|gullible (similar term)|innocent (similar term)|ingenuous (similar term)|simple-minded (similar term)|unsophisticated (similar term)|unworldly (similar term)|credulous (related term)|uninformed (related term)|unworldly (related term)|sophisticated (antonym)
+(adj)|primitive|untrained (similar term)
+(adj)|unconditioned (similar term)|innate (similar term)|unlearned (similar term)
+(adj)|uninstructed|unenlightened|uninformed (similar term)
+(adj)|uninitiate|uninitiated|inexperienced (similar term)|inexperient (similar term)
+naive art|1
+(noun)|outsider art|self-taught art|vernacular art|primitive art|genre (generic term)
+naive realism|1
+(noun)|realism|philosophical doctrine (generic term)|philosophical theory (generic term)
+naiveness|1
+(noun)|naivete|naivety|quality (generic term)|sophistication (antonym)
+naivete|1
+(noun)|naivety|naiveness|quality (generic term)|sophistication (antonym)
+naivety|1
+(noun)|naivete|naiveness|quality (generic term)|sophistication (antonym)
+naja|1
+(noun)|Naja|genus Naja|reptile genus (generic term)
+naja haje|1
+(noun)|asp|Egyptian cobra|Naja haje|cobra (generic term)
+naja hannah|1
+(noun)|hamadryad|king cobra|Ophiophagus hannan|Naja hannah|cobra (generic term)
+naja naja|1
+(noun)|Indian cobra|Naja naja|cobra (generic term)
+naja nigricollis|1
+(noun)|black-necked cobra|spitting cobra|Naja nigricollis|cobra (generic term)
+najadaceae|1
+(noun)|Naiadaceae|family Naiadaceae|Najadaceae|family Najadaceae|naiad family|monocot family (generic term)|liliopsid family (generic term)
+najas|1
+(noun)|Naias|genus Naias|Najas|genus Najas|monocot genus (generic term)|liliopsid genus (generic term)
+najd|1
+(noun)|Nejd|Najd|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|tableland (generic term)|plateau (generic term)
+naked|5
+(adj)|bare|au naturel|nude|unclothed (similar term)
+(adj)|defenseless|unprotected (similar term)
+(adj)|unassisted (similar term)
+(adj)|raw|overt (similar term)|open (similar term)
+(adj)|bare (similar term)
+naked-muzzled|1
+(adj)|hairless (similar term)
+naked-tailed|1
+(adj)|hairless (similar term)
+naked as a jaybird|1
+(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|stark naked|unclothed (similar term)
+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 (similar term)
+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 (similar term)
+naked eye|1
+(noun)|eye (generic term)|oculus (generic term)|optic (generic term)
+naked lady|2
+(noun)|autumn crocus|meadow saffron|Colchicum autumnale|bulbous plant (generic term)
+(noun)|belladonna lily|Amaryllis belladonna|amaryllis (generic term)
+naked mole rat|1
+(noun)|fossorial mammal (generic term)
+naked option|1
+(noun)|option (generic term)
+nakedness|3
+(noun)|nudity|nudeness|condition (generic term)|status (generic term)
+(noun)|bleakness|desolation|bareness|gloom (generic term)|gloominess (generic term)|glumness (generic term)
+(noun)|openness|sociability (generic term)|sociableness (generic term)|closeness (antonym)
+nakedwood|2
+(noun)|tree (generic term)
+(noun)|Eugenia dicrana|zebrawood (generic term)|zebrawood tree (generic term)
+nakuru|1
+(noun)|Nakuru|city (generic term)|metropolis (generic term)|urban center (generic term)
+nalchik|1
+(noun)|Nalchik|city (generic term)|metropolis (generic term)|urban center (generic term)
+nalfon|1
+(noun)|fenoprofen|fenoprofen calcium|Nalfon|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+nalidixic acid|1
+(noun)|NegGram|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+nalline|1
+(noun)|nalorphine|Nalline|narcotic antagonist (generic term)
+nalorphine|1
+(noun)|Nalline|narcotic antagonist (generic term)
+naloxone|1
+(noun)|Narcan|narcotic antagonist (generic term)
+naltrexone|1
+(noun)|narcotic antagonist (generic term)
+namby-pamby|2
+(adj)|gutless|spineless|wishy-washy|weak (similar term)
+(noun)|weakling (generic term)|doormat (generic term)|wuss (generic term)
+name|15
+(noun)|language unit (generic term)|linguistic unit (generic term)
+(noun)|sanction (generic term)
+(noun)|repute (generic term)|reputation (generic term)
+(noun)|figure|public figure|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|gens|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+(noun)|epithet|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(verb)|call|label (generic term)
+(verb)|identify|denote (generic term)|refer (generic term)
+(verb)|nominate|make|appoint (generic term)|charge (generic term)
+(verb)|appoint|nominate|constitute|establish (generic term)|found (generic term)|plant (generic term)|constitute (generic term)|institute (generic term)
+(verb)|specify (generic term)|set (generic term)|determine (generic term)|fix (generic term)|limit (generic term)
+(verb)|identify|discover|key|key out|distinguish|describe
+(verb)|mention|advert|bring up|cite|refer|think of (generic term)|have in mind (generic term)|mean (generic term)
+(verb)|list|enumerate (generic term)|recite (generic term)|itemize (generic term)|itemise (generic term)
+(verb)|diagnose|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+name-dropping|1
+(noun)|mention (generic term)|reference (generic term)
+name and address|1
+(noun)|address|destination|direction (generic term)|instruction (generic term)
+name calling|1
+(noun)|names|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+name day|1
+(noun)|saint's day (generic term)
+name dropper|1
+(noun)|imposter (generic term)|impostor (generic term)|pretender (generic term)|fake (generic term)|faker (generic term)|fraud (generic term)|sham (generic term)|shammer (generic term)|pseudo (generic term)|pseud (generic term)|role player (generic term)
+name part|1
+(noun)|title role|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+name tag|1
+(noun)|tag (generic term)
+named|2
+(adj)|called|titled (similar term)
+(adj)|onymous (similar term)
+namedrop|1
+(verb)|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+nameko|1
+(noun)|viscid mushroom|Pholiota nameko|agaric (generic term)
+nameless|1
+(adj)|unidentified|unknown|unnamed|anonymous (similar term)|anon. (similar term)
+namelessness|1
+(noun)|anonymity|obscurity (generic term)
+namely|1
+(adv)|viz.|that is to say|videlicet
+nameplate|1
+(noun)|plate (generic term)
+namer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+names|1
+(noun)|name calling|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+namesake|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+namib desert|1
+(noun)|Namib Desert|desert (generic term)
+namibia|1
+(noun)|Namibia|Republic of Namibia|South West Africa|African country (generic term)|African nation (generic term)
+namibian|2
+(adj)|Namibian|African country|African nation (related term)
+(noun)|Namibian|African (generic term)
+naming|3
+(adj)|appellative|denotative (similar term)|denotive (similar term)
+(noun)|speech act (generic term)
+(noun)|appointment|assignment|designation|decision (generic term)|determination (generic term)|conclusion (generic term)
+nammad|1
+(noun)|numdah|numdah rug|rug (generic term)|carpet (generic term)|carpeting (generic term)
+nammu|1
+(noun)|Nammu|Semitic deity (generic term)
+namoi|1
+(noun)|Namoi|Namoi River|river (generic term)
+namoi river|1
+(noun)|Namoi|Namoi River|river (generic term)
+nampa|1
+(noun)|Nampa|town (generic term)
+namtar|1
+(noun)|Namtar|Namtaru|Semitic deity (generic term)
+namtaru|1
+(noun)|Namtar|Namtaru|Semitic deity (generic term)
+namur|1
+(noun)|Namur|city (generic term)|metropolis (generic term)|urban center (generic term)
+nan|3
+(noun)|grandma (generic term)|grandmother (generic term)|granny (generic term)|grannie (generic term)|gran (generic term)
+(noun)|Nan|Nan River|river (generic term)
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+nan-chang|1
+(noun)|Nanchang|Nan-chang|city (generic term)|metropolis (generic term)|urban center (generic term)
+nan-ning|1
+(noun)|Nanning|Nan-ning|city (generic term)|metropolis (generic term)|urban center (generic term)
+nan ling|1
+(noun)|Nan Ling|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+nan river|1
+(noun)|Nan|Nan River|river (generic term)
+nanaimo|1
+(noun)|Nanaimo|town (generic term)
+nanak|1
+(noun)|Nanak|Guru Nanak|religious leader (generic term)
+nance|1
+(noun)|fagot|faggot|fag|fairy|pansy|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+nancere|1
+(noun)|Nancere|East Chadic (generic term)
+nanchang|1
+(noun)|Nanchang|Nan-chang|city (generic term)|metropolis (generic term)|urban center (generic term)
+nancy|1
+(noun)|Nancy|city (generic term)|metropolis (generic term)|urban center (generic term)
+nancy freeman mitford|1
+(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer (generic term)|author (generic term)
+nancy mitford|1
+(noun)|Mitford|Nancy Mitford|Nancy Freeman Mitford|writer (generic term)|author (generic term)
+nancy witcher astor|1
+(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+nand circuit|1
+(noun)|NAND circuit|NAND gate|gate (generic term)|logic gate (generic term)
+nand gate|1
+(noun)|NAND circuit|NAND gate|gate (generic term)|logic gate (generic term)
+nanda devi|1
+(noun)|Nanda Devi|mountain peak (generic term)
+nandrolone|1
+(noun)|Durabolin|Kabolin|androgen (generic term)|androgenic hormone (generic term)
+nandu|1
+(noun)|rhea|Pterocnemia pennata|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+nanga parbat|1
+(noun)|Nanga Parbat|mountain peak (generic term)
+nanism|1
+(noun)|dwarfism|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+nanjing|1
+(noun)|Nanjing|Nanking|city (generic term)|metropolis (generic term)|urban center (generic term)
+nankeen|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+nanking|1
+(noun)|Nanjing|Nanking|city (generic term)|metropolis (generic term)|urban center (generic term)
+nanna|2
+(noun)|Nanna|Norse deity (generic term)
+(noun)|Nanna|Semitic deity (generic term)
+nanning|1
+(noun)|Nanning|Nan-ning|city (generic term)|metropolis (generic term)|urban center (generic term)
+nanny|2
+(noun)|nursemaid|nurse|woman (generic term)|adult female (generic term)|keeper (generic term)
+(noun)|nanny-goat|she-goat|goat (generic term)|caprine animal (generic term)
+nanny-goat|1
+(noun)|nanny|she-goat|goat (generic term)|caprine animal (generic term)
+nanocephalic|1
+(adj)|microcephalic|microcephalous|abnormality|abnormalcy|abnormal condition (related term)
+nanocephaly|1
+(noun)|microcephaly|microcephalus|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+nanogram|1
+(noun)|ng|metric weight unit (generic term)|weight unit (generic term)
+nanometer|1
+(noun)|nanometre|nm|millimicron|micromillimeter|micromillimetre|metric linear unit (generic term)
+nanometre|1
+(noun)|nanometer|nm|millimicron|micromillimeter|micromillimetre|metric linear unit (generic term)
+nanomia|1
+(noun)|siphonophore (generic term)
+nanophthalmos|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+nanosecond|1
+(noun)|time unit (generic term)|unit of time (generic term)
+nanotechnology|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+nanotube|1
+(noun)|carbon nanotube|fullerene (generic term)
+nanovolt|1
+(noun)|potential unit (generic term)
+nansen|1
+(noun)|Nansen|Fridtjof Nansen|explorer (generic term)|adventurer (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+nantes|1
+(noun)|Nantes|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+nanticoke|2
+(noun)|Nanticoke|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Nanticoke|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+nantua|1
+(noun)|Nantua|shrimp sauce|sauce (generic term)
+nantucket|1
+(noun)|Nantucket|island (generic term)
+nanus|1
+(noun)|dwarf|midget|small person (generic term)
+naomi|1
+(noun)|Naomi|Noemi|mother-in-law (generic term)
+nap|6
+(noun)|sleep|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|texture (generic term)
+(noun)|pile|thread (generic term)|yarn (generic term)
+(noun)|catnap|cat sleep|forty winks|short sleep|snooze|sleeping (generic term)
+(noun)|Napoleon|card game (generic term)|cards (generic term)
+(verb)|catnap|catch a wink|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+napa|1
+(noun)|Chinese cabbage|celery cabbage|pe-tsai|Brassica rapa pekinensis|crucifer (generic term)|cruciferous plant (generic term)
+napaea|2
+(noun)|Napaea|genus Napaea|dilleniid dicot genus (generic term)
+(noun)|Napaea|Napea|dryad (generic term)|wood nymph (generic term)
+napaea dioica|1
+(noun)|glade mallow|Napaea dioica|mallow (generic term)
+napalm|1
+(noun)|gasoline (generic term)|gasolene (generic term)|gas (generic term)|petrol (generic term)
+nape|1
+(noun)|scruff|nucha|rear (generic term)|backside (generic term)|back end (generic term)
+napea|1
+(noun)|Napaea|Napea|dryad (generic term)|wood nymph (generic term)
+napery|1
+(noun)|table linen|linen (generic term)
+naphazoline|1
+(noun)|Privine|Sudafed|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|nasal decongestant (generic term)
+naphtha|1
+(noun)|hydrocarbon (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+naphthalene|1
+(noun)|hydrocarbon (generic term)
+naphthalene poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+naphthol|1
+(noun)|phenol (generic term)
+naphthoquinone|1
+(noun)|vitamin K|antihemorrhagic factor|fat-soluble vitamin (generic term)
+napier|1
+(noun)|Napier|John Napier|mathematician (generic term)
+napier's bones|1
+(noun)|Napier's bones|Napier's rods|calculator (generic term)|calculating machine (generic term)
+napier's rods|1
+(noun)|Napier's bones|Napier's rods|calculator (generic term)|calculating machine (generic term)
+napierian logarithm|1
+(noun)|natural logarithm|Napierian logarithm|logarithm (generic term)|log (generic term)
+napkin|2
+(noun)|table napkin|serviette|table linen (generic term)|napery (generic term)
+(noun)|diaper|nappy|garment (generic term)
+napkin ring|1
+(noun)|hoop (generic term)|ring (generic term)
+naples|1
+(noun)|Naples|Napoli|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+naples garlic|1
+(noun)|daffodil garlic|flowering onion|Naples garlic|Allium neopolitanum|alliaceous plant (generic term)
+napoleon|3
+(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|Little Corporal|general (generic term)|full general (generic term)|emperor (generic term)
+(noun)|French pastry (generic term)
+(noun)|Napoleon|nap|card game (generic term)|cards (generic term)
+napoleon bonaparte|1
+(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|Little Corporal|general (generic term)|full general (generic term)|emperor (generic term)
+napoleon i|1
+(noun)|Napoleon|Napoleon I|Napoleon Bonaparte|Bonaparte|Little Corporal|general (generic term)|full general (generic term)|emperor (generic term)
+napoleon iii|1
+(noun)|Napoleon III|Emperor Napoleon III|Charles Louis Napoleon Bonaparte|emperor (generic term)
+napoleonic|1
+(adj)|Napoleonic|general|full general|emperor (related term)
+napoleonic wars|1
+(noun)|Napoleonic Wars|war (generic term)|warfare (generic term)
+napoli|1
+(noun)|Naples|Napoli|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+napped|1
+(adj)|brushed|fleecy|soft (similar term)
+napping|1
+(adj)|off-guard|off guard|off one's guard|off his guard|off her guard|off your guard|unready (similar term)
+nappy|2
+(adj)|crisp|frizzly|frizzy|kinky|curly (similar term)
+(noun)|diaper|napkin|garment (generic term)
+naprapath|1
+(noun)|therapist (generic term)|healer (generic term)
+naprapathy|1
+(noun)|treatment (generic term)
+naprosyn|1
+(noun)|naproxen|Naprosyn|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+naproxen|1
+(noun)|Naprosyn|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+naproxen sodium|1
+(noun)|Aleve|Anaprox|Aflaxen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+napu|1
+(noun)|Tragulus Javanicus|chevrotain (generic term)|mouse deer (generic term)
+naqua|1
+(noun)|trichlormethiazide|Naqua|thiazide (generic term)
+nara|1
+(noun)|National Archives and Records Administration|NARA|independent agency (generic term)
+naranjilla|1
+(noun)|Solanum quitoense|shrub (generic term)|bush (generic term)
+narc|1
+(noun)|nark|narcotics agent|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+narcan|1
+(noun)|naloxone|Narcan|narcotic antagonist (generic term)
+narcism|1
+(noun)|self-love|narcissism|egoism (generic term)|egocentrism (generic term)|self-interest (generic term)|self-concern (generic term)|self-centeredness (generic term)
+narcissism|1
+(noun)|self-love|narcism|egoism (generic term)|egocentrism (generic term)|self-interest (generic term)|self-concern (generic term)|self-centeredness (generic term)
+narcissist|1
+(noun)|narcist|selfish person (generic term)
+narcissistic|1
+(adj)|egotistic|egotistical|self-loving|selfish (similar term)
+narcissistic personality|1
+(noun)|personality (generic term)
+narcissus|2
+(noun)|bulbous plant (generic term)
+(noun)|Narcissus|mythical being (generic term)
+narcissus jonquilla|1
+(noun)|jonquil|Narcissus jonquilla|narcissus (generic term)
+narcissus papyraceus|1
+(noun)|paper white|Narcissus papyraceus|daffodil (generic term)|Narcissus pseudonarcissus (generic term)
+narcissus pseudonarcissus|1
+(noun)|daffodil|Narcissus pseudonarcissus|narcissus (generic term)
+narcist|1
+(noun)|narcissist|selfish person (generic term)
+narco-state|1
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+narcolepsy|1
+(noun)|hypersomnia (generic term)
+narcoleptic|3
+(adj)|hypersomnia (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(noun)|soporific (generic term)|hypnotic (generic term)
+narcosis|1
+(noun)|unconsciousness (generic term)
+narcoterrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+narcotic|4
+(adj)|drug (related term)
+(adj)|narcotizing|narcotising|depressant (similar term)
+(adj)|soporiferous|soporific|uninteresting (similar term)
+(noun)|drug (generic term)
+narcotic antagonist|1
+(noun)|antagonist (generic term)
+narcotics agent|1
+(noun)|narc|nark|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+narcotise|1
+(verb)|narcotize|drug (generic term)|dose (generic term)
+narcotised|1
+(adj)|doped|drugged|narcotized|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+narcotising|1
+(adj)|narcotic|narcotizing|depressant (similar term)
+narcotize|1
+(verb)|narcotise|drug (generic term)|dose (generic term)
+narcotized|1
+(adj)|doped|drugged|narcotised|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+narcotizing|1
+(adj)|narcotic|narcotising|depressant (similar term)
+narcotraffic|1
+(noun)|drug traffic|drug trafficking|traffic (generic term)
+nard|1
+(noun)|spikenard|cream (generic term)|ointment (generic term)|emollient (generic term)
+nardil|1
+(noun)|phenelzine|Nardil|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+nardo|1
+(noun)|nardoo|common nardoo|Marsilea drummondii|clover fern (generic term)|pepperwort (generic term)
+nardoo|1
+(noun)|nardo|common nardoo|Marsilea drummondii|clover fern (generic term)|pepperwort (generic term)
+nares deep|1
+(noun)|Nares Deep|trench (generic term)|deep (generic term)|oceanic abyss (generic term)
+narghile|1
+(noun)|hookah|nargileh|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+nargileh|1
+(noun)|hookah|narghile|sheesha|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+narial|1
+(adj)|orifice|opening|porta (related term)
+naris|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+nark|4
+(noun)|copper's nark|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(noun)|narc|narcotics agent|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nettle|gravel|vex|chafe|devil|displease (generic term)
+(verb)|inform (generic term)
+narragansett bay|1
+(noun)|Narragansett Bay|bay (generic term)|embayment (generic term)
+narrate|2
+(verb)|inform (generic term)
+(verb)|tell|recount|recite|inform (generic term)
+narration|3
+(noun)|narrative|story|tale|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|recital|yarn|report (generic term)|account (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+narrative|2
+(adj)|communicative (similar term)|communicatory (similar term)
+(noun)|narration|story|tale|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+narrator|1
+(noun)|storyteller|teller|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+narrow|10
+(adj)|constricting (similar term)|constrictive (similar term)|narrowing (similar term)|narrowed (similar term)|narrow-mouthed (similar term)|slender (similar term)|thin (similar term)|strait (similar term)|straplike (similar term)|tapered (similar term)|tapering (similar term)|narrowing (similar term)|limited (related term)|narrow-minded (related term)|narrow (related term)|thin (related term)|wide (antonym)
+(adj)|limited (similar term)
+(adj)|narrow-minded|close-minded (similar term)|closed-minded (similar term)|dogmatic (similar term)|dogmatical (similar term)|illiberal (similar term)|intolerant (similar term)|opinionated (similar term)|opinionative (similar term)|self-opinionated (similar term)|petty (similar term)|small-minded (similar term)|narrow (related term)|broad-minded (antonym)
+(adj)|bare (similar term)|marginal (similar term)|wide (antonym)
+(adj)|minute|careful (similar term)
+(noun)|strait (generic term)|sound (generic term)
+(verb)|contract|change (generic term)|narrow down (related term)|widen (antonym)
+(verb)|pin down|peg down|nail down|narrow down|specify|determine (generic term)
+(verb)|specialize|specialise|narrow down|change (generic term)|alter (generic term)|vary (generic term)|diversify (antonym)|diversify (antonym)
+(verb)|constrict|constringe|tighten (generic term)
+narrow-bodied|1
+(adj)|bodied (similar term)
+narrow-body|1
+(noun)|narrowbody aircraft|narrow-body aircraft|airliner (generic term)
+narrow-body aircraft|1
+(noun)|narrowbody aircraft|narrow-body|airliner (generic term)
+narrow-leaf cattail|1
+(noun)|lesser bullrush|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail (generic term)
+narrow-leaf penstemon|1
+(noun)|Penstemon linarioides|wildflower (generic term)|wild flower (generic term)
+narrow-leaved bottletree|1
+(noun)|Queensland bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree (generic term)|bottle tree (generic term)
+narrow-leaved everlasting pea|1
+(noun)|flat pea|Lathyrus sylvestris|everlasting pea (generic term)
+narrow-leaved flame flower|1
+(noun)|Talinum augustissimum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+narrow-leaved plantain|1
+(noun)|English plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain (generic term)
+narrow-leaved reedmace|1
+(noun)|lesser bullrush|narrow-leaf cattail|soft flag|Typha angustifolia|cattail (generic term)
+narrow-leaved spleenwort|1
+(noun)|silvery spleenwort|glade fern|Athyrium pycnocarpon|Diplazium pycnocarpon|fern (generic term)
+narrow-leaved strap fern|1
+(noun)|Central American strap fern|Campyloneurum augustifolium|strap fern (generic term)
+narrow-leaved water plantain|1
+(noun)|water plantain (generic term)|Alisma plantago-aquatica (generic term)
+narrow-leaved white-topped aster|1
+(noun)|white-topped aster (generic term)
+narrow-minded|3
+(adj)|shockable|unshockable (antonym)
+(adj)|narrow|close-minded (similar term)|closed-minded (similar term)|dogmatic (similar term)|dogmatical (similar term)|illiberal (similar term)|intolerant (similar term)|opinionated (similar term)|opinionative (similar term)|self-opinionated (similar term)|petty (similar term)|small-minded (similar term)|narrow (related term)|broad-minded (antonym)
+(adj)|sectarian (similar term)
+narrow-mindedly|1
+(adv)|small-mindedly|broad-mindedly (antonym)
+narrow-mindedness|1
+(noun)|narrowness|intolerance (generic term)|broad-mindedness (antonym)
+narrow-mouthed|1
+(adj)|narrow (similar term)
+narrow beech fern|1
+(noun)|long beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+narrow boat|1
+(noun)|canal boat|narrowboat|boat (generic term)
+narrow down|2
+(verb)|pin down|peg down|nail down|narrow|specify|determine (generic term)
+(verb)|specialize|specialise|narrow|change (generic term)|alter (generic term)|vary (generic term)|diversify (antonym)|diversify (antonym)
+narrow escape|1
+(noun)|close call|close shave|squeak|squeaker|accomplishment (generic term)|achievement (generic term)
+narrow gauge|1
+(noun)|railroad track (generic term)|railroad (generic term)|railway (generic term)|gauge (generic term)
+narrow goldenrod|1
+(noun)|Solidago spathulata|goldenrod (generic term)
+narrow margin|1
+(noun)|narrowness|slimness|margin (generic term)
+narrow wale|1
+(noun)|cord (generic term)|corduroy (generic term)
+narrowboat|1
+(noun)|canal boat|narrow boat|boat (generic term)
+narrowbody aircraft|1
+(noun)|narrow-body aircraft|narrow-body|airliner (generic term)
+narrowed|3
+(adj)|narrow (similar term)
+(adj)|constricted (similar term)
+(adj)|contracted (similar term)
+narrowhead morel|1
+(noun)|black morel|Morchella conica|conic morel|Morchella angusticeps|morel (generic term)
+narrowing|5
+(adj)|tapered|tapering|narrow (similar term)
+(adj)|constricting|constrictive|narrow (similar term)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+(noun)|decrease (generic term)|decrement (generic term)|widening (antonym)
+(noun)|change of shape (generic term)|widening (antonym)
+narrowly|1
+(adv)|broadly (antonym)
+narrowness|4
+(noun)|width (generic term)|breadth (generic term)|wideness (antonym)
+(noun)|narrow-mindedness|intolerance (generic term)|broad-mindedness (antonym)
+(noun)|restriction (generic term)|limitation (generic term)
+(noun)|narrow margin|slimness|margin (generic term)
+narthecium|1
+(noun)|Narthecium|genus Narthecium|liliid monocot genus (generic term)
+narthecium americanum|1
+(noun)|American bog asphodel|Narthecium americanum|bog asphodel (generic term)
+narthecium ossifragum|1
+(noun)|European bog asphodel|Narthecium ossifragum|bog asphodel (generic term)
+narthex|2
+(noun)|portico (generic term)
+(noun)|anteroom (generic term)|antechamber (generic term)|entrance hall (generic term)|hall (generic term)|foyer (generic term)|lobby (generic term)|vestibule (generic term)
+narwal|1
+(noun)|narwhal|narwhale|Monodon monoceros|whale (generic term)
+narwhal|1
+(noun)|narwal|narwhale|Monodon monoceros|whale (generic term)
+narwhale|1
+(noun)|narwhal|narwal|Monodon monoceros|whale (generic term)
+nary|1
+(adj)|no (similar term)
+nasa|1
+(noun)|National Aeronautics and Space Administration|NASA|independent agency (generic term)
+nasal|4
+(adj)|rhinal|chemoreceptor (related term)
+(adj)|adenoidal|pinched|high (similar term)|high-pitched (similar term)
+(noun)|nasal consonant|consonant (generic term)
+(noun)|nasal bone|os nasale|bone (generic term)|os (generic term)
+nasal bone|1
+(noun)|nasal|os nasale|bone (generic term)|os (generic term)
+nasal canthus|1
+(noun)|canthus (generic term)
+nasal cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+nasal concha|1
+(noun)|turbinate bone (generic term)|turbinate (generic term)|turbinal (generic term)|concha (generic term)
+nasal consonant|1
+(noun)|nasal|consonant (generic term)
+nasal decongestant|1
+(noun)|decongestant (generic term)
+nasal meatus|1
+(noun)|meatus (generic term)
+nasal septum|1
+(noun)|septum (generic term)
+nasal sinus|1
+(noun)|paranasal sinus|sinus paranasales|sinus (generic term)
+nasal twang|1
+(noun)|twang|nasality (generic term)
+nasale|1
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+nasalis|1
+(noun)|Nasalis|genus Nasalis|mammal genus (generic term)
+nasalis larvatus|1
+(noun)|proboscis monkey|Nasalis larvatus|Old World monkey (generic term)|catarrhine (generic term)
+nasalisation|1
+(noun)|nasalization|articulation (generic term)
+nasalise|2
+(verb)|nasalize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|nasalize|pronounce (generic term)|label (generic term)|judge (generic term)
+nasality|1
+(noun)|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+nasalization|1
+(noun)|nasalisation|articulation (generic term)
+nasalize|2
+(verb)|nasalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|nasalise|pronounce (generic term)|label (generic term)|judge (generic term)
+nascence|1
+(noun)|birth|nativity|nascency|change (generic term)|alteration (generic term)|modification (generic term)|death (antonym)
+nascency|1
+(noun)|birth|nativity|nascence|change (generic term)|alteration (generic term)|modification (generic term)|death (antonym)
+nascent|1
+(adj)|emergent (similar term)|emerging (similar term)|dissilient (similar term)|parturient (similar term)|dying (antonym)
+nasdaq|1
+(noun)|National Association of Securities Dealers Automated Quotations|NASDAQ|data system (generic term)|information system (generic term)
+naseby|2
+(noun)|Naseby|town (generic term)
+(noun)|Naseby|Battle of Naseby|pitched battle (generic term)
+nash|1
+(noun)|Nash|Ogden Nash|writer (generic term)|author (generic term)
+nash equilibrium|1
+(noun)|Nash equilibrium|equilibrium (generic term)
+nashville|1
+(noun)|Nashville|capital of Tennessee|state capital (generic term)
+nasion|1
+(noun)|craniometric point (generic term)
+nasofrontal vein|1
+(noun)|vena nasofrontalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+nasogastric feeding|1
+(noun)|forced feeding (generic term)|gavage (generic term)
+nasolacrimal duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+nasopharyngeal|1
+(adj)|cavity|bodily cavity|cavum (related term)
+nasopharyngeal leishmaniasis|1
+(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+nasopharynx|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+nasotracheal tube|1
+(noun)|endotracheal tube (generic term)
+nassau|1
+(noun)|Nassau|capital of the Bahamas|national capital (generic term)
+nasser|2
+(noun)|Nasser|Gamal Abdel Nasser|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Lake Nasser|Nasser|lake (generic term)
+nast|1
+(noun)|Nast|Thomas Nast|cartoonist (generic term)
+nastily|1
+(adv)|meanly
+nastiness|3
+(noun)|filth|filthiness|foulness|unsanitariness (generic term)
+(noun)|cattiness|bitchiness|spite|spitefulness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+(noun)|unpleasantness (generic term)|niceness (antonym)
+nasturtium|3
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|Nasturtium|genus Nasturtium|dilleniid dicot genus (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+nasturtium amphibium|1
+(noun)|great yellowcress|Rorippa amphibia|Nasturtium amphibium|watercress (generic term)
+nasturtium family|1
+(noun)|Tropaeolaceae|family Tropaeolaceae|rosid dicot family (generic term)
+nasturtium officinale|1
+(noun)|common watercress|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress (generic term)
+nasty|4
+(adj)|awful|dirty (similar term)|filthy (similar term)|lousy (similar term)|grotty (similar term)|hateful (similar term)|mean (similar term)|unpleasant (related term)|nice (antonym)
+(adj)|tight|difficult (similar term)|hard (similar term)
+(adj)|filthy|foul|smutty|dirty (similar term)
+(adj)|filthy|foul|dirty (similar term)|soiled (similar term)|unclean (similar term)
+nasua|1
+(noun)|Nasua|genus Nasua|mammal genus (generic term)
+nasua narica|1
+(noun)|coati|coati-mondi|coati-mundi|coon cat|Nasua narica|procyonid (generic term)
+nat turner|1
+(noun)|Turner|Nat Turner|slave (generic term)|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+natal|4
+(adj)|change|alteration|modification (related term)
+(adj)|body part (related term)
+(noun)|Natal|KwaZulu-Natal|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|Natal|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+natal day|1
+(noun)|birthday|date (generic term)|day of the month (generic term)
+natal plum|3
+(noun)|amatungulu|Carissa macrocarpa|Carissa grandiflora|carissa (generic term)
+(noun)|hedge thorn|Carissa bispinosa|carissa (generic term)
+(noun)|carissa plum|edible fruit (generic term)
+natalie wood|1
+(noun)|Wood|Natalie Wood|actress (generic term)
+natality|1
+(noun)|birthrate|birth rate|fertility|fertility rate|rate (generic term)
+natantia|1
+(noun)|Natantia|suborder Natantia|animal order (generic term)
+natation|1
+(noun)|floating|swimming (generic term)|swim (generic term)
+natator|1
+(noun)|swimmer|bather|traveler (generic term)|traveller (generic term)
+natatorium|1
+(noun)|swimming pool|swimming bath|pool (generic term)|athletic facility (generic term)
+natchez|1
+(noun)|Natchez|town (generic term)
+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 (generic term)
+nathan bailey|1
+(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer (generic term)|lexicologist (generic term)
+nathan birnbaum|1
+(noun)|Burns|George Burns|Nathan Birnbaum|vaudevillian (generic term)|comedian (generic term)|comic (generic term)
+nathan hale|1
+(noun)|Hale|Nathan Hale|American Revolutionary leader (generic term)
+nathaniel bailey|1
+(noun)|Bailey|Nathan Bailey|Nathaniel Bailey|lexicographer (generic term)|lexicologist (generic term)
+nathaniel bowditch|1
+(noun)|Bowditch|Nathaniel Bowditch|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+nathaniel currier|1
+(noun)|Currier|Nathaniel Currier|lithographer (generic term)
+nathaniel hawthorne|1
+(noun)|Hawthorne|Nathaniel Hawthorne|writer (generic term)|author (generic term)
+naticidae|1
+(noun)|Naticidae|family Naticidae|mollusk family (generic term)
+nation|4
+(noun)|state|country|land|commonwealth|res publica|body politic|political unit (generic term)|political entity (generic term)
+(noun)|land|country|people (generic term)
+(noun)|confederation (generic term)|confederacy (generic term)|federation (generic term)
+(noun)|Nation|Carry Nation|Carry Amelia Moore Nation|dry (generic term)|prohibitionist (generic term)
+nation of islam|1
+(noun)|Nation of Islam|religious movement (generic term)
+national|8
+(adj)|political unit|political entity (related term)
+(adj)|nationalist (similar term)|nationalistic (similar term)|domestic (related term)|international (antonym)
+(adj)|federal (similar term)|general (similar term)|local (antonym)
+(adj)|public (similar term)
+(adj)|home|interior|internal|domestic (similar term)
+(adj)|people (related term)
+(adj)|status|position (related term)
+(noun)|subject|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+national academy of sciences|1
+(noun)|National Academy of Sciences|academy (generic term)|honorary society (generic term)
+national aeronautics and space administration|1
+(noun)|National Aeronautics and Space Administration|NASA|independent agency (generic term)
+national anthem|1
+(noun)|anthem (generic term)
+national archives and records administration|1
+(noun)|National Archives and Records Administration|NARA|independent agency (generic term)
+national assistance|1
+(noun)|supplementary benefit|social assistance|social insurance (generic term)
+national association of securities dealers automated quotations|1
+(noun)|National Association of Securities Dealers Automated Quotations|NASDAQ|data system (generic term)|information system (generic term)
+national bank|1
+(noun)|commercial bank (generic term)|full service bank (generic term)
+national baseball hall of fame|1
+(noun)|National Baseball Hall of Fame|Hall of Fame (generic term)
+national capital|1
+(noun)|capital (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+national censorship|1
+(noun)|censoring (generic term)|censorship (generic term)|security review (generic term)
+national climatic data center|1
+(noun)|National Climatic Data Center|NCDC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national debt|1
+(noun)|debt (generic term)
+national debt ceiling|1
+(noun)|debt limit (generic term)|debt ceiling (generic term)
+national flag|1
+(noun)|ensign|emblem (generic term)|allegory (generic term)|flag (generic term)
+national geospatial-intelligence agency|1
+(noun)|National Geospatial-Intelligence Agency|NGA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national guard|1
+(noun)|National Guard|home reserve|territorial (generic term)|territorial reserve (generic term)
+national guard bureau|1
+(noun)|National Guard Bureau|NGB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national holiday|1
+(noun)|legal holiday|public holiday|holiday (generic term)
+national income|1
+(noun)|value (generic term)
+national institute of justice|1
+(noun)|National Institute of Justice|NIJ|law enforcement agency (generic term)
+national institute of standards and technology|1
+(noun)|National Institute of Standards and Technology|NIST|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national institutes of health|1
+(noun)|National Institutes of Health|NIH|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national insurance|1
+(noun)|social insurance (generic term)
+national intelligence community|1
+(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+national labor relations board|1
+(noun)|National Labor Relations Board|NLRB|independent agency (generic term)
+national leader|1
+(noun)|statesman|solon|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+national liberation army|2
+(noun)|National Liberation Army|ELN|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+national liberation front of corsica|1
+(noun)|National Liberation Front of Corsica|FLNC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+national library of medicine|1
+(noun)|National Library of Medicine|United States National Library of Medicine|U.S. National Library of Medicine|library (generic term)
+national monument|1
+(noun)|memorial (generic term)|monument (generic term)
+national oceanic and atmospheric administration|1
+(noun)|National Oceanic and Atmospheric Administration|NOAA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national park|1
+(noun)|park (generic term)|parkland (generic term)
+national park service|1
+(noun)|National Park Service|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national reconnaissance office|1
+(noun)|National Reconnaissance Office|NRO|United States intelligence agency (generic term)
+national rifle association|1
+(noun)|National Rifle Association|NRA|lobby (generic term)|pressure group (generic term)|third house (generic term)
+national science foundation|1
+(noun)|National Science Foundation|NSF|independent agency (generic term)
+national security agency|1
+(noun)|National Security Agency|NSA|United States intelligence agency (generic term)
+national security council|1
+(noun)|National Security Council|NSC|executive agency (generic term)
+national service|1
+(noun)|service (generic term)
+national socialism|1
+(noun)|Nazism|Naziism|fascism (generic term)|socialism (generic term)|socialist economy (generic term)
+national socialist|1
+(adj)|Nazi|managed economy (related term)
+national socialist german workers' party|1
+(noun)|National Socialist German Workers' Party|Nazi Party|party (generic term)|political party (generic term)
+national technical information service|1
+(noun)|National Technical Information Service|NTIS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+national trading policy|1
+(noun)|trade policy|foreign policy (generic term)
+national trust|1
+(noun)|National Trust|NT|nongovernmental organization (generic term)|NGO (generic term)
+national volunteers association|1
+(noun)|Rashtriya Swayamsevak Sangh|National Volunteers Association|secret society (generic term)
+national weather service|1
+(noun)|National Weather Service|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nationalisation|3
+(noun)|nationalization|group action (generic term)
+(noun)|nationalization|change (generic term)
+(noun)|nationalization|communization|communisation|social control (generic term)|denationalization (antonym)
+nationalise|2
+(verb)|nationalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|nationalize|change (generic term)|alter (generic term)|modify (generic term)|denationalise (antonym)|denationalize (antonym)
+nationalism|4
+(noun)|patriotism|loyalty (generic term)|trueness (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|multiculturalism (antonym)|internationalism (antonym)
+(noun)|ambition (generic term)|aspiration (generic term)|dream (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|internationalism (antonym)
+nationalist|3
+(adj)|nationalistic|national (similar term)
+(noun)|patriot|national (generic term)|subject (generic term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+nationalist china|1
+(noun)|Taiwan|China|Nationalist China|Republic of China|island (generic term)
+nationalist leader|1
+(noun)|nationalist (generic term)|leader (generic term)
+nationalistic|2
+(adj)|chauvinistic|flag-waving|jingoistic|ultranationalistic|superpatriotic|patriotic (similar term)|loyal (similar term)
+(adj)|nationalist|national (similar term)
+nationality|2
+(noun)|status (generic term)|position (generic term)
+(noun)|people (generic term)
+nationalization|3
+(noun)|nationalisation|group action (generic term)
+(noun)|nationalisation|change (generic term)
+(noun)|nationalisation|communization|communisation|social control (generic term)|denationalization (antonym)
+nationalize|2
+(verb)|nationalise|change (generic term)|alter (generic term)|modify (generic term)|denationalise (antonym)|denationalize (antonym)
+(verb)|nationalise|change (generic term)|alter (generic term)|modify (generic term)
+nationally|1
+(adv)|nationwide|across the nation|across the country
+nationhood|1
+(noun)|state (generic term)
+nationwide|2
+(adj)|countrywide|comprehensive (similar term)
+(adv)|nationally|across the nation|across the country
+native|5
+(adj)|autochthonal (similar term)|autochthonic (similar term)|autochthonous (similar term)|endemic (similar term)|indigenous (similar term)|domestic (similar term)|homegrown (similar term)|native-born (similar term)|foreign (antonym)
+(adj)|connatural (similar term)|inborn (similar term)|inbred (similar term)|adopted (antonym)
+(adj)|aboriginal|nonnative (antonym)
+(adj)|pure (similar term)
+(noun)|indigen|indigene|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+native-born|1
+(adj)|native (similar term)
+native alaskan|1
+(noun)|Alaska Native|Alaskan Native|Native Alaskan|Alaskan (generic term)
+native american|2
+(adj)|Indian|Amerind|Amerindic|Native American|Amerindian|Native American (related term)
+(noun)|Amerindian|Native American|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+native australian|1
+(noun)|Aborigine|Abo|Aboriginal|native Australian|Australian Aborigine|Australian (generic term)|Aussie (generic term)|ethnic group (generic term)|ethnos (generic term)
+native bear|1
+(noun)|koala|koala bear|kangaroo bear|Phascolarctos cinereus|phalanger (generic term)|opossum (generic term)|possum (generic term)
+native beech|1
+(noun)|flindosa|flindosy|Flindersia australis|silver ash (generic term)
+native cat|1
+(noun)|Dasyurus viverrinus|dasyure (generic term)
+native cranberry|1
+(noun)|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+native fuchsia|1
+(noun)|konini|tree fuchsia|Fuchsia excorticata|fuchsia (generic term)
+native hawaiian|1
+(noun)|Native Hawaiian|Hawaiian (generic term)
+native holly|1
+(noun)|common flat pea|Playlobium obtusangulum|shrub (generic term)|bush (generic term)
+native land|1
+(noun)|fatherland|homeland|motherland|mother country|country of origin|country (generic term)|state (generic term)|land (generic term)
+native language|1
+(noun)|language (generic term)|linguistic communication (generic term)
+native orange|1
+(noun)|Capparis mitchellii|caper (generic term)
+native peach|1
+(noun)|quandong|quandang|quantong|edible fruit (generic term)
+native pear|1
+(noun)|woody pear|Xylomelum pyriforme|shrub (generic term)|bush (generic term)
+native pomegranate|1
+(noun)|Capparis arborea|caper (generic term)
+native speaker|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+native sulfur|1
+(noun)|brimstone|native sulphur|sulfur (generic term)|S (generic term)|sulphur (generic term)|atomic number 16 (generic term)
+native sulphur|1
+(noun)|brimstone|native sulfur|sulfur (generic term)|S (generic term)|sulphur (generic term)|atomic number 16 (generic term)
+nativeness|1
+(noun)|quality (generic term)|foreignness (antonym)
+nativism|2
+(noun)|social policy (generic term)
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+nativist|3
+(adj)|nativistic|social policy (related term)
+(adj)|nativistic|philosophical doctrine|philosophical theory (related term)
+(noun)|philosopher (generic term)
+nativistic|2
+(adj)|nativist|social policy (related term)
+(adj)|nativist|philosophical doctrine|philosophical theory (related term)
+nativity|2
+(noun)|birth|nascency|nascence|change (generic term)|alteration (generic term)|modification (generic term)|death (antonym)
+(noun)|Virgin Birth|Nativity|theological doctrine (generic term)
+nato|1
+(noun)|North Atlantic Treaty Organization|NATO|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+natriuresis|1
+(noun)|symptom (generic term)
+natriuretic|1
+(adj)|symptom (related term)
+natrix|1
+(noun)|Natrix|genus Natrix|reptile genus (generic term)
+natrix maura|1
+(noun)|viperine grass snake|Natrix maura|grass snake (generic term)|ring snake (generic term)|ringed snake (generic term)|Natrix natrix (generic term)
+natrix natrix|1
+(noun)|grass snake|ring snake|ringed snake|Natrix natrix|water snake (generic term)
+natrix sipedon|1
+(noun)|common water snake|banded water snake|Natrix sipedon|Nerodia sipedon|water snake (generic term)
+natrolite|1
+(noun)|zeolite (generic term)
+natta|1
+(noun)|Natta|Giulio Natta|chemist (generic term)
+natter|1
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+natterjack|1
+(noun)|Bufo calamita|true toad (generic term)
+nattiness|1
+(noun)|jauntiness|dapperness|rakishness|chic (generic term)|chicness (generic term)|chichi (generic term)|modishness (generic term)|smartness (generic term)|stylishness (generic term)|swank (generic term)|last word (generic term)
+natty|1
+(adj)|dapper|dashing|jaunty|raffish|rakish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+natural|13
+(adj)|earthy (similar term)|natural (related term)|natural (related term)|unnatural (antonym)
+(adj)|unbleached (similar term)|uncolored (similar term)|undyed (similar term)|natural (related term)|artificial (antonym)
+(adj)|physical (similar term)|supernatural (antonym)
+(adj)|normal (similar term)
+(adj)|sharp (antonym)|flat (antonym)
+(adj)|instinctive|spontaneous (similar term)|self-generated (similar term)
+(adj)|raw|rude|unprocessed (similar term)
+(adj)|biological (similar term)
+(adj)|born|innate|intelligent (similar term)
+(adj)|lifelike|unaffected (similar term)
+(noun)|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+(noun)|cancel|musical notation (generic term)
+(noun)|cast (generic term)|roll (generic term)
+natural ability|1
+(noun)|aptitude (generic term)
+natural action|1
+(noun)|natural process|action|activity|process (generic term)|physical process (generic term)
+natural childbirth|1
+(noun)|childbirth (generic term)|childbearing (generic term)|accouchement (generic term)|vaginal birth (generic term)
+natural covering|1
+(noun)|covering|cover|natural object (generic term)
+natural depression|1
+(noun)|depression|geological formation (generic term)|formation (generic term)|natural elevation (antonym)
+natural elevation|1
+(noun)|elevation|geological formation (generic term)|formation (generic term)|natural depression (antonym)
+natural enclosure|1
+(noun)|enclosure|space (generic term)
+natural endowment|1
+(noun)|endowment|gift|talent|natural ability (generic term)
+natural event|1
+(noun)|happening|occurrence|occurrent|event (generic term)
+natural family planning|1
+(noun)|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+natural fiber|1
+(noun)|natural fibre|fiber (generic term)|fibre (generic term)
+natural fibre|1
+(noun)|natural fiber|fiber (generic term)|fibre (generic term)
+natural gas|1
+(noun)|gas|fossil fuel (generic term)
+natural glass|1
+(noun)|glass (generic term)
+natural history|1
+(noun)|science (generic term)|scientific discipline (generic term)
+natural immunity|1
+(noun)|innate immunity|immunity (generic term)|resistance (generic term)
+natural language|1
+(noun)|tongue|language (generic term)|linguistic communication (generic term)|artificial language (antonym)
+natural language processing|1
+(noun)|NLP|human language technology|information science (generic term)|informatics (generic term)|information processing (generic term)|IP (generic term)
+natural language processing application|1
+(noun)|natural language processor|application (generic term)|application program (generic term)|applications programme (generic term)
+natural language processor|1
+(noun)|natural language processing application|application (generic term)|application program (generic term)|applications programme (generic term)
+natural law|1
+(noun)|law|concept (generic term)|conception (generic term)|construct (generic term)
+natural logarithm|1
+(noun)|Napierian logarithm|logarithm (generic term)|log (generic term)
+natural number|1
+(noun)|number (generic term)
+natural object|1
+(noun)|whole (generic term)|unit (generic term)|artifact (antonym)
+natural order|1
+(noun)|universe (generic term)|existence (generic term)|creation (generic term)|world (generic term)|cosmos (generic term)|macrocosm (generic term)
+natural phenomenon|1
+(noun)|phenomenon (generic term)
+natural philosophy|1
+(noun)|physics|physical science|natural science (generic term)
+natural process|1
+(noun)|natural action|action|activity|process (generic term)|physical process (generic term)
+natural resin|1
+(noun)|resin (generic term)|rosin (generic term)|plant product (generic term)
+natural resource|1
+(noun)|natural resources|resource (generic term)
+natural resources|1
+(noun)|natural resource|resource (generic term)
+natural rubber|1
+(noun)|rubber|India rubber|gum elastic|caoutchouc|latex (generic term)
+natural science|1
+(noun)|science (generic term)|scientific discipline (generic term)
+natural scientist|1
+(noun)|naturalist|biologist (generic term)|life scientist (generic term)
+natural selection|1
+(noun)|survival|survival of the fittest|selection|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+natural shape|1
+(noun)|shape (generic term)|form (generic term)
+natural spring|1
+(noun)|spring|fountain|outflow|outpouring|geological formation (generic term)|formation (generic term)
+natural state|1
+(noun)|wild|state of nature|state (generic term)
+natural theology|1
+(noun)|theology (generic term)|theological system (generic term)
+natural virtue|1
+(noun)|cardinal virtue (generic term)
+naturalisation|4
+(noun)|naturalization|naturalness (generic term)
+(noun)|naturalization|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|naturalization|introduction (generic term)|debut (generic term)|first appearance (generic term)|launching (generic term)|unveiling (generic term)|entry (generic term)
+(noun)|naturalization|borrowing (generic term)|adoption (generic term)
+naturalise|3
+(verb)|naturalize|adapt (generic term)|accommodate (generic term)
+(verb)|naturalize|change (generic term)|alter (generic term)|modify (generic term)|denaturalize (antonym)
+(verb)|domesticate|cultivate|naturalize|tame|adapt (generic term)|accommodate (generic term)
+naturalised|1
+(adj)|naturalized|planted (similar term)
+naturalism|2
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|realism|artistic movement (generic term)|art movement (generic term)
+naturalist|2
+(noun)|philosopher (generic term)
+(noun)|natural scientist|biologist (generic term)|life scientist (generic term)
+naturalistic|1
+(adj)|realistic|representational (similar term)
+naturalization|4
+(noun)|naturalisation|naturalness (generic term)
+(noun)|naturalisation|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|naturalisation|introduction (generic term)|debut (generic term)|first appearance (generic term)|launching (generic term)|unveiling (generic term)|entry (generic term)
+(noun)|naturalisation|borrowing (generic term)|adoption (generic term)
+naturalize|4
+(verb)|explain (generic term)|explicate (generic term)
+(verb)|naturalise|adapt (generic term)|accommodate (generic term)
+(verb)|naturalise|change (generic term)|alter (generic term)|modify (generic term)|denaturalize (antonym)
+(verb)|domesticate|cultivate|naturalise|tame|adapt (generic term)|accommodate (generic term)
+naturalized|2
+(adj)|established|foreign (similar term)|strange (similar term)
+(adj)|naturalised|planted (similar term)
+naturally|4
+(adv)|of course|course|unnaturally (antonym)
+(adv)|by nature
+(adv)|artificially (antonym)
+(adv)|unnaturally (antonym)
+naturally occurring|1
+(adj)|present (similar term)
+naturalness|3
+(noun)|quality (generic term)|unnaturalness (antonym)
+(noun)|artlessness|innocence|ingenuousness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+nature|5
+(noun)|quality (generic term)
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|universe (generic term)|existence (generic term)|creation (generic term)|world (generic term)|cosmos (generic term)|macrocosm (generic term)
+(noun)|trait (generic term)
+(noun)|type (generic term)
+nature study|1
+(noun)|inquiry (generic term)|enquiry (generic term)|research (generic term)
+nature worship|1
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)
+naturism|1
+(noun)|nudism|practice (generic term)|pattern (generic term)
+naturist|1
+(noun)|nudist|individualist (generic term)
+naturistic|1
+(adj)|practice|pattern (related term)
+naturopath|1
+(noun)|therapist (generic term)|healer (generic term)
+naturopathy|1
+(noun)|treatment (generic term)
+nauch|1
+(noun)|nautch|nautch dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+nauclea|1
+(noun)|Nauclea|genus Nauclea|asterid dicot genus (generic term)
+nauclea diderrichii|1
+(noun)|opepe|Nauclea diderrichii|Sarcocephalus diderrichii|tree (generic term)
+naucrates|1
+(noun)|Naucrates|genus Naucrates|fish genus (generic term)
+naucrates ductor|1
+(noun)|pilotfish|Naucrates ductor|carangid fish (generic term)|carangid (generic term)
+naught|2
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|zero|zilch|zip|zippo|relative quantity (generic term)
+(noun)|failure (generic term)
+naughtily|1
+(adv)|badly|mischievously
+naughtiness|1
+(noun)|mischievousness|badness|disobedience (generic term)
+naughty|2
+(adj)|blue|gamy|gamey|juicy|racy|risque|spicy|sexy (similar term)
+(adj)|mischievous|bad (similar term)
+naumachia|1
+(noun)|naumachy|spectacle (generic term)
+naumachy|1
+(noun)|naumachia|spectacle (generic term)
+naupathia|1
+(noun)|seasickness|mal de mer|motion sickness (generic term)|kinetosis (generic term)
+nauru|2
+(noun)|Nauru|Republic of Nauru|country (generic term)|state (generic term)|land (generic term)
+(noun)|Nauru|Nauru Island|Pleasant Island|island (generic term)
+nauru island|1
+(noun)|Nauru|Nauru Island|Pleasant Island|island (generic term)
+nauruan|2
+(adj)|Nauruan|country|state|land (related term)
+(noun)|Nauruan|Austronesian (generic term)
+nausea|2
+(noun)|sickness|symptom (generic term)
+(noun)|disgust (generic term)
+nauseant|1
+(noun)|emetic|vomit|vomitive|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+nauseate|2
+(verb)|sicken|turn one's stomach|disgust (generic term)|gross out (generic term)|revolt (generic term)|repel (generic term)
+(verb)|disgust|revolt|sicken|churn up|repel (generic term)|repulse (generic term)
+nauseated|1
+(adj)|nauseous|queasy|sick|sickish|ill (similar term)|sick (similar term)
+nauseating|1
+(adj)|nauseous|noisome|queasy|loathsome|offensive|sickening|vile|unwholesome (similar term)
+nauseatingness|1
+(noun)|disgustingness|distastefulness|sickeningness|unsavoriness|unpalatability (generic term)|unpalatableness (generic term)
+nauseous|2
+(adj)|nauseating|noisome|queasy|loathsome|offensive|sickening|vile|unwholesome (similar term)
+(adj)|nauseated|queasy|sick|sickish|ill (similar term)|sick (similar term)
+naut mi|2
+(noun)|nautical mile|mile|mi|geographical mile|Admiralty mile|nautical linear unit (generic term)
+(noun)|nautical mile|mile|mi|knot|international nautical mile|air mile|nautical linear unit (generic term)
+nautch|1
+(noun)|nauch|nautch dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+nautch dance|1
+(noun)|nautch|nauch|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+nautch girl|1
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+nautical|1
+(adj)|maritime|marine|transportation|shipping|transport (related term)
+nautical chain|1
+(noun)|chain (generic term)
+nautical linear unit|1
+(noun)|linear unit (generic term)
+nautical mile|2
+(noun)|naut mi|mile|mi|geographical mile|Admiralty mile|nautical linear unit (generic term)
+(noun)|mile|mi|naut mi|knot|international nautical mile|air mile|nautical linear unit (generic term)
+nautical signal flag|1
+(noun)|code flag|flag (generic term)|signal flag (generic term)
+nautilidae|1
+(noun)|Nautilidae|family Nautilidae|mollusk family (generic term)
+nautilus|3
+(noun)|nuclear submarine|nuclear-powered submarine|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+(noun)|paper nautilus|Argonaut|Argonauta argo|octopod (generic term)
+(noun)|chambered nautilus|pearly nautilus|cephalopod (generic term)|cephalopod mollusk (generic term)
+navaho|2
+(noun)|Navaho|Navajo|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|Navaho|Navajo|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+navajo|2
+(noun)|Navaho|Navajo|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)
+(noun)|Navaho|Navajo|Athapaskan (generic term)|Athapascan (generic term)|Athabaskan (generic term)|Athabascan (generic term)|Athapaskan language (generic term)
+naval|1
+(adj)|military service|armed service|service (related term)
+naval academy|1
+(noun)|academy (generic term)
+naval air warfare center weapons division|1
+(noun)|Naval Air Warfare Center Weapons Division|NAWCWPNS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+naval attache|1
+(noun)|military attache (generic term)
+naval battle|1
+(noun)|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+naval blockade|1
+(noun)|blockade (generic term)|encirclement (generic term)
+naval brass|1
+(noun)|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+naval campaign|1
+(noun)|operation (generic term)|military operation (generic term)
+naval chart|1
+(noun)|navigational chart|pilot chart|chart (generic term)
+naval commander|1
+(noun)|naval officer (generic term)
+naval division|1
+(noun)|division|naval unit (generic term)
+naval engineer|1
+(noun)|marine engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+naval engineering|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+naval equipment|1
+(noun)|equipment (generic term)
+naval forces|1
+(noun)|navy|military service (generic term)|armed service (generic term)|service (generic term)
+naval gun|1
+(noun)|naval weaponry (generic term)
+naval installation|1
+(noun)|shore station|military installation (generic term)
+naval missile|1
+(noun)|naval weaponry (generic term)
+naval officer|1
+(noun)|military officer (generic term)|officer (generic term)
+naval radar|1
+(noun)|naval equipment (generic term)
+naval research laboratory|1
+(noun)|Naval Research Laboratory|NRL|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+naval shipyard|1
+(noun)|navy yard|shipyard (generic term)
+naval special warfare|1
+(noun)|Naval Special Warfare|NSW|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+naval surface warfare center|1
+(noun)|Naval Surface Warfare Center|NSWC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+naval tactical data system|1
+(noun)|shipboard system (generic term)
+naval underwater warfare center|1
+(noun)|Naval Underwater Warfare Center|NUWC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+naval unit|1
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+naval weaponry|1
+(noun)|weaponry (generic term)|arms (generic term)|implements of war (generic term)|weapons system (generic term)|munition (generic term)
+navane|1
+(noun)|thiothixene|Navane|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+navarino|1
+(noun)|Navarino|battle of Navarino|naval battle (generic term)
+nave|1
+(noun)|area (generic term)
+navel|2
+(noun)|umbilicus|bellybutton|omphalos|omphalus|point (generic term)
+(noun)|navel point|center (generic term)|centre (generic term)|midpoint (generic term)
+navel orange|1
+(noun)|sweet orange (generic term)
+navel point|1
+(noun)|navel|center (generic term)|centre (generic term)|midpoint (generic term)
+navicular|2
+(adj)|scaphoid|formed (similar term)
+(noun)|scaphoid bone|os scaphoideum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+navigability|1
+(noun)|quality (generic term)
+navigable|1
+(adj)|passable (similar term)
+navigate|3
+(verb)|voyage|sail|travel (generic term)|journey (generic term)
+(verb)|pilot|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+navigation|3
+(noun)|pilotage|piloting|steering (generic term)|guidance (generic term)|direction (generic term)
+(noun)|transportation (generic term)|shipping (generic term)|transport (generic term)
+(noun)|seafaring|sailing|employment (generic term)|work (generic term)
+navigation light|1
+(noun)|light (generic term)|light source (generic term)
+navigational|1
+(adj)|steering|guidance|direction (related term)
+navigational chart|1
+(noun)|naval chart|pilot chart|chart (generic term)
+navigational instrument|1
+(noun)|instrument (generic term)
+navigational system|1
+(noun)|system (generic term)
+navigator|3
+(noun)|sailing master|officer (generic term)|ship's officer (generic term)
+(noun)|aircrewman (generic term)
+(noun)|explorer (generic term)|adventurer (generic term)
+navratilova|1
+(noun)|Navratilova|Martina Navratilova|tennis player (generic term)
+navvy|1
+(noun)|drudge|peon|galley slave|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+navy|3
+(noun)|naval forces|military service (generic term)|armed service (generic term)|service (generic term)
+(noun)|dark blue|navy blue|blue (generic term)|blueness (generic term)
+(noun)|United States Navy|US Navy|USN|Navy|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+navy base|1
+(noun)|base (generic term)|base of operations (generic term)
+navy bean|1
+(noun)|pea bean|white bean|common bean (generic term)
+navy blue|1
+(noun)|dark blue|navy|blue (generic term)|blueness (generic term)
+navy cross|1
+(noun)|Navy Cross|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+navy department|1
+(noun)|Navy Department|executive department (generic term)
+navy man|1
+(noun)|bluejacket|sailor|sailor boy|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+navy seal|1
+(noun)|Navy SEAL|SEAL|bluejacket (generic term)|navy man (generic term)|sailor (generic term)|sailor boy (generic term)
+navy secretary|1
+(noun)|Secretary of the Navy|Navy Secretary|secretaryship (generic term)
+navy yard|1
+(noun)|naval shipyard|shipyard (generic term)
+nawab|1
+(noun)|nabob|governor (generic term)
+nawcwpns|1
+(noun)|Naval Air Warfare Center Weapons Division|NAWCWPNS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nay|1
+(noun)|negative (generic term)|yea (antonym)
+naysayer|1
+(noun)|obstructionist (generic term)|obstructor (generic term)|obstructer (generic term)|resister (generic term)|thwarter (generic term)
+naysaying|1
+(noun)|denial (generic term)
+nazarene|5
+(adj)|Nazarene|religious person (related term)
+(adj)|Nazarene|town (related term)|inhabitant|habitant|dweller|denizen|indweller (related term)
+(noun)|Nazarene|Ebionite|religious person (generic term)
+(noun)|Nazarene|Christian (generic term)
+(noun)|Nazarene|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+nazareth|1
+(noun)|Nazareth|town (generic term)
+naze|1
+(noun)|Lindesnes|Naze|cape (generic term)|ness (generic term)
+nazi|4
+(adj)|Nazi|fascism|socialism|socialist economy (related term)
+(adj)|national socialist|Nazi|managed economy (related term)
+(noun)|Nazi|German Nazi|fascist (generic term)
+(noun)|restrainer (generic term)|controller (generic term)
+nazi germany|1
+(noun)|Third Reich|Nazi Germany|Reich (generic term)
+nazi party|1
+(noun)|National Socialist German Workers' Party|Nazi Party|party (generic term)|political party (generic term)
+nazification|1
+(noun)|Nazification|social process (generic term)
+nazify|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|denazify (antonym)
+naziism|1
+(noun)|Nazism|Naziism|national socialism|fascism (generic term)|socialism (generic term)|socialist economy (generic term)
+nazimova|1
+(noun)|Nazimova|Alla Nazimova|actress (generic term)
+nazism|1
+(noun)|Nazism|Naziism|national socialism|fascism (generic term)|socialism (generic term)|socialist economy (generic term)
+nb|2
+(noun)|niobium|Nb|atomic number 41|metallic element (generic term)|metal (generic term)
+(noun)|nota bene|NB|N.B.|note (generic term)|annotation (generic term)|notation (generic term)
+nbe|1
+(noun)|north by east|NbE|compass point (generic term)|point (generic term)
+nbw|1
+(noun)|north by west|NbW|compass point (generic term)|point (generic term)
+nc|1
+(noun)|North Carolina|Old North State|Tar Heel State|NC|American state (generic term)
+ncdc|1
+(noun)|National Climatic Data Center|NCDC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nd|2
+(noun)|neodymium|Nd|atomic number 60|metallic element (generic term)|metal (generic term)
+(noun)|North Dakota|Peace Garden State|ND|American state (generic term)
+ndebele|1
+(noun)|Ndebele|Matabele|Nguni (generic term)
+ndjamena|1
+(noun)|N'Djamena|Ndjamena|Fort-Lamy|capital of Chad|national capital (generic term)
+ne|3
+(noun)|neon|Ne|atomic number 10|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+(noun)|northeast|nor'-east|northeastward|NE|compass point (generic term)|point (generic term)
+(noun)|Nebraska|Cornhusker State|NE|American state (generic term)
+ne'er|1
+(adv)|never|ever (antonym)
+ne'er-do-well|1
+(noun)|goldbrick|goof-off|good-for-nothing|no-account|good-for-naught|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+ne plus ultra|1
+(noun)|perfection|flawlessness|state (generic term)|imperfection (antonym)
+neandertal|3
+(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human (related term)
+(adj)|boorish|loutish|neanderthal|oafish|swinish|unrefined (similar term)
+(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+neandertal man|1
+(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+neanderthal|3
+(adj)|boorish|loutish|neandertal|oafish|swinish|unrefined (similar term)
+(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human (related term)
+(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+neanderthal man|1
+(noun)|Neandertal man|Neanderthal man|Neandertal|Neanderthal|Homo sapiens neanderthalensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+neanderthalian|1
+(adj)|Neanderthal|Neanderthalian|Neandertal|homo|man|human being|human (related term)
+neap|1
+(noun)|neap tide|high tide (generic term)|high water (generic term)|highwater (generic term)|springtide (antonym)
+neap tide|1
+(noun)|neap|high tide (generic term)|high water (generic term)|highwater (generic term)|springtide (antonym)
+neapolitan|2
+(adj)|Neapolitan|city|metropolis|urban center|port (related term)
+(noun)|Neapolitan|Italian (generic term)
+neapolitan ice cream|1
+(noun)|Neapolitan ice cream|ice cream (generic term)|icecream (generic term)
+near|9
+(adj)|close|nigh|adjacent (similar term)|nearby (similar term)|neighboring (similar term)|neighbouring (similar term)|warm (similar term)|hot (similar term)|far (antonym)
+(adj)|nigh|left (similar term)
+(adj)|artificial (similar term)|unreal (similar term)
+(adj)|cheeseparing|close|penny-pinching|skinny|stingy (similar term)|ungenerous (similar term)
+(adj)|dear|good|close (similar term)
+(adj)|approximate|close (similar term)
+(verb)|approach|come on|go up|draw near|draw close|come near|come (generic term)|come up (generic term)
+(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 (similar term)|unsighted (similar term)
+near-death experience|1
+(noun)|experience (generic term)
+near beer|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+near east|1
+(noun)|Middle East|Mideast|Near East|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+near gale|1
+(noun)|moderate gale|gale (generic term)
+near miss|1
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+near thing|1
+(noun)|avoidance (generic term)|turning away (generic term)|shunning (generic term)|dodging (generic term)
+near vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+nearby|1
+(adj)|near (similar term)|close (similar term)|nigh (similar term)
+nearer|1
+(adv)|nigher|closer
+nearest|1
+(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 (generic term)|farness (antonym)
+nearside|1
+(noun)|side (generic term)
+nearsighted|1
+(adj)|shortsighted|myopic|farsighted (antonym)
+nearsightedness|1
+(noun)|myopia|shortsightedness|ametropia (generic term)|hyperopia (antonym)
+neat|5
+(adj)|tidy (similar term)
+(adj)|refined|tasteful|elegant (similar term)
+(adj)|clean|adroit (similar term)
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|nifty|not bad|peachy|slap-up|swell|smashing|good (similar term)
+(adj)|straight|full-strength|undiluted (similar term)
+neat's-foot oil|1
+(noun)|animal oil (generic term)
+neaten|2
+(verb)|tidy|tidy up|clean up|straighten|straighten out|square away|order (generic term)
+(verb)|groom|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+neatness|2
+(noun)|spruceness|tidiness (generic term)
+(noun)|tidiness|cleanliness (generic term)|untidiness (antonym)
+neb|2
+(noun)|snout|nose (generic term)|olfactory organ (generic term)
+(noun)|beak|bill|nib|pecker|mouth (generic term)
+nebbech|1
+(noun)|nebbish|simpleton (generic term)|simple (generic term)
+nebbish|1
+(noun)|nebbech|simpleton (generic term)|simple (generic term)
+nebcin|1
+(noun)|tobramycin|Nebcin|antibiotic (generic term)|antibiotic drug (generic term)
+nebe|1
+(noun)|northeast by east|NEbE|compass point (generic term)|point (generic term)
+nebiim|1
+(noun)|Prophets|Nebiim|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+nebn|1
+(noun)|northeast by north|NEbN|compass point (generic term)|point (generic term)
+nebo|1
+(noun)|Nabu|Nebo|Semitic deity (generic term)
+nebraska|1
+(noun)|Nebraska|Cornhusker State|NE|American state (generic term)
+nebraska fern|1
+(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+nebraskan|1
+(noun)|Nebraskan|Cornhusker|American (generic term)
+nebuchadnezzar|2
+(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|wine bottle (generic term)
+nebuchadnezzar ii|1
+(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king (generic term)|male monarch (generic term)|Rex (generic term)
+nebuchadrezzar|1
+(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king (generic term)|male monarch (generic term)|Rex (generic term)
+nebuchadrezzar ii|1
+(noun)|Nebuchadnezzar|Nebuchadnezzar II|Nebuchadrezzar|Nebuchadrezzar II|king (generic term)|male monarch (generic term)|Rex (generic term)
+nebula|4
+(noun)|formulation (generic term)|preparation (generic term)
+(noun)|symptom (generic term)
+(noun)|cloud (generic term)
+(noun)|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+nebular|2
+(adj)|nebulous|cloud (related term)
+(adj)|cloudlike|cloudy (similar term)
+nebular hypothesis|1
+(noun)|scientific theory (generic term)
+nebule|1
+(noun)|cloud (generic term)
+nebuliser|1
+(noun)|atomizer|atomiser|spray|sprayer|nebulizer|dispenser (generic term)
+nebulizer|1
+(noun)|atomizer|atomiser|spray|sprayer|nebuliser|dispenser (generic term)
+nebulose|1
+(adj)|cloudy|nebulous|indistinct (similar term)
+nebulous|3
+(adj)|cloudy|nebulose|indistinct (similar term)
+(adj)|nebular|cloud (related term)
+(adj)|unfixed|indefinite (similar term)
+nec|1
+(noun)|necrotizing enterocolitis|NEC|inflammatory disease (generic term)
+necessarily|2
+(adv)|needfully|unnecessarily (antonym)
+(adv)|inevitably|of necessity|needs
+necessary|3
+(adj)|essential (similar term)|indispensable (similar term)|incumbent (similar term)|needed (similar term)|needful (similar term)|required (similar term)|requisite (similar term)|obligatory (similar term)|essential (related term)|indispensable (related term)|obligatory (related term)|unnecessary (antonym)
+(adj)|inevitable (similar term)
+(noun)|necessity|essential|requirement|requisite|thing (generic term)|inessential (antonym)
+necessitarian|1
+(noun)|philosopher (generic term)|libertarian (antonym)
+necessitate|2
+(verb)|ask|postulate|need|require|take|involve|call for|demand|obviate (antonym)
+(verb)|lead (generic term)
+necessitous|1
+(adj)|destitute|impoverished|indigent|needy|poverty-stricken|poor (similar term)
+necessity|2
+(noun)|need (generic term)|demand (generic term)
+(noun)|essential|requirement|requisite|necessary|thing (generic term)|inessential (antonym)
+neck|5
+(noun)|cervix|external body part (generic term)
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|neck opening|opening (generic term)
+(verb)|make out|pet (generic term)
+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 (similar term)
+neck and neck|2
+(adj)|head-to-head|nip and tuck|inconclusive (similar term)
+(adv)|head-to-head|nip and tuck
+neck bone|1
+(noun)|cervical vertebra|vertebra (generic term)
+neck brace|1
+(noun)|brace (generic term)
+neck exercise|1
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+neck of the woods|1
+(noun)|vicinity|locality|neighborhood|neighbourhood|section (generic term)
+neck opening|1
+(noun)|neck|opening (generic term)
+neck ruff|1
+(noun)|choker|ruff|ruffle|collar (generic term)|neckband (generic term)
+neck sweetbread|1
+(noun)|throat sweetbread|variety meat (generic term)|organs (generic term)
+neckar|1
+(noun)|Neckar|Neckar River|river (generic term)
+neckar river|1
+(noun)|Neckar|Neckar River|river (generic term)
+neckband|3
+(noun)|band (generic term)|banding (generic term)|stripe (generic term)
+(noun)|collar|band (generic term)
+(noun)|choker|collar|dog collar|necklace (generic term)
+neckcloth|1
+(noun)|stock|cravat (generic term)
+necked|1
+(adj)|decollete (similar term)|low-cut (similar term)|low-necked (similar term)|high-necked (similar term)|necklike (similar term)|polo-neck (similar term)|throated (similar term)|turtleneck (similar term)|turtlenecked (similar term)|neckless (antonym)
+necker|1
+(noun)|lover (generic term)
+neckerchief|1
+(noun)|kerchief (generic term)
+necking|2
+(noun)|gorgerin|molding (generic term)|moulding (generic term)
+(noun)|caressing|cuddling|fondling|hugging|kissing|petting|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+necklace|1
+(noun)|jewelry (generic term)|jewellery (generic term)
+necklace poplar|1
+(noun)|Eastern cottonwood|Populus deltoides|cottonwood (generic term)
+necklace tree|1
+(noun)|tree (generic term)
+neckless|1
+(adj)|necked (antonym)
+necklet|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+necklike|1
+(adj)|necked (similar term)
+neckline|1
+(noun)|neck (generic term)|neck opening (generic term)
+neckpiece|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+necktie|1
+(noun)|tie|neckwear (generic term)
+neckwear|1
+(noun)|garment (generic term)
+necrobiosis|1
+(noun)|cell death|death (generic term)
+necrobiosis lipoidica|1
+(noun)|necrobiosis lipoidica diabeticorum|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+necrobiosis lipoidica diabeticorum|1
+(noun)|necrobiosis lipoidica|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+necrology|2
+(noun)|obituary|obit|announcement (generic term)|promulgation (generic term)
+(noun)|list (generic term)|listing (generic term)
+necrolysis|1
+(noun)|lysis (generic term)
+necromancer|2
+(noun)|sorcerer|magician|wizard|thaumaturge|thaumaturgist|occultist (generic term)
+(noun)|diviner (generic term)
+necromancy|2
+(noun)|sorcery|black magic|black art|magic (generic term)|thaumaturgy (generic term)
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+necromania|1
+(noun)|necrophilia|necrophilism|mania (generic term)|passion (generic term)|cacoethes (generic term)
+necromantic|2
+(adj)|necromantical|divination|foretelling|soothsaying|fortune telling (related term)
+(adj)|supernatural (similar term)
+necromantical|1
+(adj)|necromantic|divination|foretelling|soothsaying|fortune telling (related term)
+necrophagia|1
+(noun)|necrophagy|eating (generic term)|feeding (generic term)
+necrophagy|1
+(noun)|necrophagia|eating (generic term)|feeding (generic term)
+necrophilia|1
+(noun)|necrophilism|necromania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+necrophilism|1
+(noun)|necrophilia|necromania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+necropolis|1
+(noun)|cemetery|graveyard|burial site|burial ground|burying ground|memorial park|site (generic term)|land site (generic term)
+necropsy|1
+(noun)|autopsy|postmortem|post-mortem|PM|postmortem examination|post-mortem examination|examination (generic term)|scrutiny (generic term)
+necrose|1
+(verb)|gangrene|mortify|sphacelate|waste (generic term)|rot (generic term)
+necrosis|1
+(noun)|mortification|gangrene|sphacelus|death (generic term)
+necrotic|1
+(adj)|death (related term)
+necrotizing enteritis|1
+(noun)|enteritis (generic term)
+necrotizing enterocolitis|1
+(noun)|NEC|inflammatory disease (generic term)
+nectar|3
+(noun)|secretion (generic term)
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+(noun)|ambrosia|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+nectar-rich|1
+(adj)|secretion (related term)
+nectariferous|1
+(adj)|plant organ (related term)
+nectarine|2
+(noun)|nectarine tree|Prunus persica nectarina|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+nectarine tree|1
+(noun)|nectarine|Prunus persica nectarina|fruit tree (generic term)
+nectarous|1
+(adj)|ambrosial|ambrosian|tasty (similar term)
+nectary|1
+(noun)|honey gland|plant organ (generic term)
+necturus|1
+(noun)|Necturus|genus Necturus|amphibian genus (generic term)
+necturus maculosus|1
+(noun)|mud puppy|Necturus maculosus|salamander (generic term)
+nederland|1
+(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Nederland|Holland|European country (generic term)|European nation (generic term)
+nee|1
+(adj)|inheritable (similar term)|heritable (similar term)
+need|6
+(noun)|demand|condition (generic term)|status (generic term)
+(noun)|want|necessity (generic term)|essential (generic term)|requirement (generic term)|requisite (generic term)|necessary (generic term)
+(noun)|motivation|motive|psychological feature (generic term)
+(noun)|indigence|penury|pauperism|pauperization|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(verb)|necessitate|ask|postulate|require|take|involve|call for|demand|obviate (antonym)
+(verb)|want|require|be (generic term)
+needed|1
+(adj)|needful|required|requisite|necessary (similar term)
+needer|1
+(noun)|wanter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+needful|1
+(adj)|needed|required|requisite|necessary (similar term)
+needfully|1
+(adv)|necessarily|unnecessarily (antonym)
+neediness|2
+(noun)|privation|want|deprivation|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|quality (generic term)
+needle|6
+(noun)|acerate leaf|simple leaf (generic term)
+(noun)|pointer (generic term)
+(noun)|implement (generic term)
+(noun)|phonograph needle|stylus (generic term)
+(verb)|goad|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|prickle (generic term)|prick (generic term)
+needle-bush|1
+(noun)|needlebush|needle bush|Hakea lissosperma|shrub (generic term)|bush (generic term)
+needle-shaped|1
+(adj)|acerate|acerose|acicular|simple (similar term)|unsubdivided (similar term)
+needle-wood|1
+(noun)|needlewood|needle wood|Hakea leucoptera|shrub (generic term)|bush (generic term)
+needle bearing|1
+(noun)|ball bearing|roller bearing|bearing (generic term)
+needle biopsy|1
+(noun)|biopsy (generic term)
+needle blight|1
+(noun)|needle cast|leaf cast|leaf blight (generic term)
+needle bush|1
+(noun)|needlebush|needle-bush|Hakea lissosperma|shrub (generic term)|bush (generic term)
+needle cast|1
+(noun)|needle blight|leaf cast|leaf blight (generic term)
+needle furze|1
+(noun)|broom tree|petty whin|Genista anglica|broom (generic term)
+needle palm|1
+(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|Yucca filamentosa|yucca (generic term)
+needle rush|1
+(noun)|needle spike rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush (generic term)
+needle spike rush|1
+(noun)|needle rush|slender spike rush|hair grass|Eleocharis acicularis|spike rush (generic term)
+needle wood|1
+(noun)|needlewood|needle-wood|Hakea leucoptera|shrub (generic term)|bush (generic term)
+needlebush|1
+(noun)|needle-bush|needle bush|Hakea lissosperma|shrub (generic term)|bush (generic term)
+needlecraft|2
+(noun)|needlework|creation (generic term)
+(noun)|needlework|handicraft (generic term)
+needled|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+needlefish|2
+(noun)|gar|billfish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+(noun)|pipefish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+needlelike|1
+(adj)|acuate|acute|sharp|pointed (similar term)
+needlenose pliers|1
+(noun)|pliers (generic term)|pair of pliers (generic term)|plyers (generic term)
+needlepoint|2
+(noun)|point lace|lace (generic term)
+(noun)|needlepoint embroidery|embroidery (generic term)|fancywork (generic term)
+needlepoint embroidery|1
+(noun)|needlepoint|embroidery (generic term)|fancywork (generic term)
+needless|1
+(adj)|gratuitous|uncalled-for|unnecessary (similar term)|unneeded (similar term)
+needlewoman|1
+(noun)|dressmaker|modiste|seamstress|sempstress|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+needlewood|1
+(noun)|needle-wood|needle wood|Hakea leucoptera|shrub (generic term)|bush (generic term)
+needlework|2
+(noun)|needlecraft|creation (generic term)
+(noun)|needlecraft|handicraft (generic term)
+needleworker|1
+(noun)|maker (generic term)|shaper (generic term)
+needs|1
+(adv)|inevitably|necessarily|of necessity
+needy|3
+(adj)|destitute|impoverished|indigent|necessitous|poverty-stricken|poor (similar term)
+(adj)|demanding (similar term)
+(noun)|poor people (generic term)|poor (generic term)
+neel|1
+(noun)|Neel|Louis Eugene Felix Neel|physicist (generic term)
+neem|1
+(noun)|neem tree|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+neem cake|1
+(noun)|organic (generic term)|organic fertilizer (generic term)|organic fertiliser (generic term)
+neem seed|1
+(noun)|seed (generic term)
+neem tree|1
+(noun)|neem|nim tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+neencephalon|1
+(noun)|neoencephalon|neural structure (generic term)
+nefarious|1
+(adj)|villainous|wicked (similar term)
+nefariousness|1
+(noun)|wickedness|vileness|ugliness|evil (generic term)|evilness (generic term)
+nefazodone|1
+(noun)|Serzone|antidepressant (generic term)|antidepressant drug (generic term)
+nefertiti|1
+(noun)|Nefertiti|queen (generic term)
+neftali ricardo reyes|1
+(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet (generic term)
+nefud|1
+(noun)|Nefud|An Nefud|Nafud|An Nafud|desert (generic term)
+negaprion|1
+(noun)|Negaprion|genus Negaprion|fish genus (generic term)
+negaprion brevirostris|1
+(noun)|lemon shark|Negaprion brevirostris|requiem shark (generic term)
+negara brunei darussalam|1
+(noun)|Brunei|Negara Brunei Darussalam|sultanate (generic term)
+negate|4
+(verb)|contradict|belie|deviate (generic term)|vary (generic term)|diverge (generic term)|depart (generic term)
+(verb)|contradict|contravene|disagree (generic term)|differ (generic term)|dissent (generic term)|take issue (generic term)
+(verb)|contradict|prove (generic term)|demonstrate (generic term)|establish (generic term)|show (generic term)|shew (generic term)|affirm (antonym)
+(verb)|neutralize|neutralise|nullify|weaken (generic term)
+negation|3
+(noun)|statement (generic term)
+(noun)|denial (generic term)|disaffirmation (generic term)
+(noun)|proposition (generic term)
+negative|12
+(adj)|antagonistic (similar term)|counter (similar term)|perverse (similar term)|destructive (related term)|pessimistic (related term)|unsupportive (related term)|neutral (antonym)|positive (antonym)
+(adj)|electronegative|neutral (antonym)|positive (antonym)
+(adj)|dismissive (similar term)|dissentient (similar term)|dissenting (similar term)|dissident (similar term)|disinclined (related term)|unfavorable (related term)|unfavourable (related term)|affirmative (antonym)
+(adj)|bad (similar term)
+(adj)|disconfirming|Gram-negative (similar term)|positive (antonym)
+(adj)|positive (antonym)
+(adj)|minus (similar term)
+(adj)|damaging|destructive (similar term)
+(adj)|minus|disadvantageous (similar term)|harmful (similar term)
+(noun)|denial (generic term)|affirmative (antonym)
+(noun)|film (generic term)|photographic film (generic term)
+(verb)|veto|blackball|oppose (generic term)|controvert (generic term)|contradict (generic term)
+negative charge|1
+(noun)|charge (generic term)|electric charge (generic term)|positive charge (antonym)
+negative chemotaxis|1
+(noun)|chemotaxis (generic term)
+negative correlation|1
+(noun)|indirect correlation|correlation (generic term)|correlational statistics (generic term)
+negative feedback|1
+(noun)|feedback (generic term)
+negative feedback circuit|1
+(noun)|control circuit|feedback circuit (generic term)|feedback loop (generic term)
+negative identification|1
+(noun)|identification (generic term)
+negative magnetic pole|1
+(noun)|negative pole|south-seeking pole|pole (generic term)|magnetic pole (generic term)
+negative muon|1
+(noun)|muon|mu-meson|lepton (generic term)
+negative pole|2
+(noun)|terminal (generic term)|pole (generic term)
+(noun)|negative magnetic pole|south-seeking pole|pole (generic term)|magnetic pole (generic term)
+negative reinforcer|1
+(noun)|negative reinforcing stimulus|reinforcing stimulus (generic term)|reinforcer (generic term)|reinforcement (generic term)
+negative reinforcing stimulus|1
+(noun)|negative reinforcer|reinforcing stimulus (generic term)|reinforcer (generic term)|reinforcement (generic term)
+negative stimulation|1
+(noun)|turnoff|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+negative stimulus|1
+(noun)|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+negatively charged|1
+(adj)|charged (similar term)
+negativeness|3
+(noun)|negativity|polarity (generic term)|sign (generic term)|positiveness (antonym)|positivity (antonym)
+(noun)|negativity|negativism|quality (generic term)|positiveness (antonym)|positivity (antonym)
+(noun)|negativity|amount (generic term)|positiveness (antonym)|positivity (antonym)
+negativism|1
+(noun)|negativity|negativeness|quality (generic term)|positiveness (antonym)|positivity (antonym)
+negativist|2
+(noun)|balker (generic term)|baulker (generic term)|noncompliant (generic term)
+(noun)|defeatist|pessimist (generic term)
+negativity|4
+(noun)|negativeness|polarity (generic term)|sign (generic term)|positiveness (antonym)|positivity (antonym)
+(noun)|negativeness|negativism|quality (generic term)|positiveness (antonym)|positivity (antonym)
+(noun)|negativeness|amount (generic term)|positiveness (antonym)|positivity (antonym)
+(noun)|electronegativity|tendency (generic term)|inclination (generic term)
+negatron|1
+(noun)|electron|lepton (generic term)
+negev|1
+(noun)|Negev|Negev Desert|desert (generic term)
+negev desert|1
+(noun)|Negev|Negev Desert|desert (generic term)
+neggram|1
+(noun)|nalidixic acid|NegGram|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+neglect|8
+(noun)|disregard|inattention (generic term)
+(noun)|disuse|decline (generic term)|declination (generic term)
+(noun)|disregard|mistreatment (generic term)
+(noun)|negligence|neglectfulness|carelessness (generic term)|sloppiness (generic term)
+(noun)|negligence|carelessness|nonperformance|nonaccomplishment (generic term)|nonachievement (generic term)
+(verb)|pretermit|omit|drop|miss|leave out|overlook|overleap|attend to (antonym)
+(verb)|fail
+(verb)|ignore|disregard
+neglect of duty|1
+(noun)|negligence (generic term)|carelessness (generic term)|neglect (generic term)|nonperformance (generic term)
+neglected|2
+(adj)|ignored|unheeded|unnoticed (similar term)
+(adj)|unattended|uncared-for (similar term)
+neglecter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+neglectful|2
+(adj)|inattentive|negligent (similar term)
+(adj)|derelict|delinquent|remiss|negligent (similar term)
+neglectfulness|1
+(noun)|negligence|neglect|carelessness (generic term)|sloppiness (generic term)
+neglige|1
+(noun)|negligee|peignoir|wrapper|housecoat|woman's clothing (generic term)
+negligee|1
+(noun)|neglige|peignoir|wrapper|housecoat|woman's clothing (generic term)
+negligence|2
+(noun)|carelessness|neglect|nonperformance|nonaccomplishment (generic term)|nonachievement (generic term)
+(noun)|neglect|neglectfulness|carelessness (generic term)|sloppiness (generic term)
+negligent|2
+(adj)|derelict (similar term)|delinquent (similar term)|neglectful (similar term)|remiss (similar term)|lax (similar term)|slack (similar term)|hit-and-run (similar term)|inattentive (similar term)|neglectful (similar term)|careless (related term)|inattentive (related term)|diligent (antonym)
+(adj)|careless (similar term)
+negligible|2
+(adj)|minimal (similar term)|minimum (similar term)
+(adj)|paltry|trifling|worthless (similar term)
+negociate|5
+(verb)|pull off|bring off|carry off|manage|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+(verb)|sell (generic term)
+(verb)|transfer (generic term)
+(verb)|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|negotiate|talk terms|hash out (generic term)|discuss (generic term)|talk over (generic term)
+negotiable|3
+(adj)|passable (similar term)
+(adj)|on the table|flexible (similar term)
+(adj)|assignable|conveyable|transferable|transferrable|alienable (similar term)
+negotiable instrument|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+negotiant|1
+(noun)|negotiator|treater|communicator (generic term)
+negotiate|2
+(verb)|negociate|talk terms|hash out (generic term)|discuss (generic term)|talk over (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+negotiation|2
+(noun)|dialogue|talks|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|activity (generic term)
+negotiator|1
+(noun)|negotiant|treater|communicator (generic term)
+negotiatress|1
+(noun)|negotiatrix|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+negotiatrix|1
+(noun)|negotiatress|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+negress|1
+(noun)|Negress|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+negritude|1
+(noun)|Negritude|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+negro|2
+(adj)|black (similar term)
+(noun)|Black|Black person|blackamoor|Negro|Negroid|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+negro peach|1
+(noun)|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub (generic term)|bush (generic term)
+negro pepper|1
+(noun)|Guinea pepper|Xylopia aethiopica|tree (generic term)
+negro race|1
+(noun)|Black race|Negroid race|Negro race|race (generic term)
+negro spiritual|1
+(noun)|spiritual|Negro spiritual|religious song (generic term)
+negro vine|1
+(noun)|Vincetoxicum hirsutum|Vincetoxicum negrum|vine (generic term)
+negroid|2
+(adj)|black (similar term)
+(noun)|Black|Black person|blackamoor|Negro|Negroid|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|person of color (generic term)|person of colour (generic term)
+negroid race|1
+(noun)|Black race|Negroid race|Negro race|race (generic term)
+negus|1
+(noun)|mulled wine (generic term)
+nehemiah|1
+(noun)|Nehemiah|Book of Nehemiah|book (generic term)
+nehru|1
+(noun)|Nehru|Jawaharlal Nehru|statesman (generic term)|solon (generic term)|national leader (generic term)
+nei monggol|1
+(noun)|Inner Mongolia|Nei Monggol|state (generic term)|province (generic term)
+neigh|2
+(noun)|nicker|whicker|whinny|cry (generic term)
+(verb)|nicker|whicker|whinny|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+neighbor|4
+(noun)|neighbour|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|neighbour|object (generic term)|physical object (generic term)
+(verb)|neighbour|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|neighbour|border (generic term)|adjoin (generic term)|edge (generic term)|abut (generic term)|march (generic term)|butt (generic term)|butt against (generic term)|butt on (generic term)
+neighborhood|3
+(noun)|vicinity|locality|neighbourhood|neck of the woods|section (generic term)
+(noun)|neighbourhood|community (generic term)
+(noun)|region|indefinite quantity (generic term)
+neighboring|2
+(adj)|neighbouring|near (similar term)|close (similar term)|nigh (similar term)
+(adj)|abutting|adjacent|adjoining|conterminous|contiguous|connected (similar term)
+neighborliness|1
+(noun)|neighbourliness|good-neighborliness|good-neighbourliness|friendliness (generic term)|unneighborliness (antonym)
+neighborly|1
+(adj)|neighbourly|friendly (similar term)
+neighbour|4
+(noun)|neighbor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|neighbor|object (generic term)|physical object (generic term)
+(verb)|neighbor|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|neighbor|border (generic term)|adjoin (generic term)|edge (generic term)|abut (generic term)|march (generic term)|butt (generic term)|butt against (generic term)|butt on (generic term)
+neighbourhood|2
+(noun)|vicinity|locality|neighborhood|neck of the woods|section (generic term)
+(noun)|neighborhood|community (generic term)
+neighbouring|1
+(adj)|neighboring|near (similar term)|close (similar term)|nigh (similar term)
+neighbourliness|1
+(noun)|neighborliness|good-neighborliness|good-neighbourliness|friendliness (generic term)|unneighborliness (antonym)
+neighbourly|1
+(adj)|neighborly|friendly (similar term)
+neil armstrong|1
+(noun)|Armstrong|Neil Armstrong|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+neil simon|1
+(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist (generic term)|playwright (generic term)
+neisseria gonorrhoeae|1
+(noun)|gonococcus|Neisseria gonorrhoeae|bacteria (generic term)|bacterium (generic term)
+nejd|1
+(noun)|Nejd|Najd|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|tableland (generic term)|plateau (generic term)
+nekton|1
+(noun)|organism (generic term)|being (generic term)
+nelfinavir|1
+(noun)|Viracept|protease inhibitor (generic term)|PI (generic term)
+nell gwynn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+nell gwynne|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+nell gywn|1
+(noun)|Gwynn|Gywn|Gynne|Nell Gwynn|Nell Gywn|Nell Gwynne|Eleanor Gwynn|Eleanor Gwyn|Eleanor Gwynne|comedienne (generic term)
+nellie bly|1
+(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist (generic term)
+nellie ross|1
+(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+nellie tayloe ross|1
+(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+nelson|1
+(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral (generic term)|full admiral (generic term)
+nelson algren|1
+(noun)|Algren|Nelson Algren|writer (generic term)|author (generic term)
+nelson mandela|1
+(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+nelson rolihlahla mandela|1
+(noun)|Mandela|Nelson Mandela|Nelson Rolihlahla Mandela|nationalist leader (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+nelumbo|1
+(noun)|Nelumbo|genus Nelumbo|magnoliid dicot genus (generic term)
+nelumbo lutea|1
+(noun)|water chinquapin|American lotus|yanquapin|Nelumbo lutea|water lily (generic term)
+nelumbo nucifera|1
+(noun)|lotus|Indian lotus|sacred lotus|Nelumbo nucifera|water lily (generic term)
+nelumbonaceae|1
+(noun)|Nelumbonaceae|subfamily Nelumbonaceae|magnoliid dicot family (generic term)
+nem con|1
+(adv)|unanimously|nemine contradicente
+nematocera|1
+(noun)|Nematocera|suborder Nematocera|animal order (generic term)
+nematoda|1
+(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum (generic term)
+nematode|1
+(noun)|nematode worm|roundworm|worm (generic term)
+nematode worm|1
+(noun)|nematode|roundworm|worm (generic term)
+nembutal|1
+(noun)|pentobarbital sodium|pentobarbital|Nembutal|yellow jacket|barbiturate (generic term)
+nemea|1
+(noun)|Nemea|valley (generic term)|vale (generic term)
+nemean games|1
+(noun)|Nemean Games|agon (generic term)
+nemean lion|1
+(noun)|Nemean lion|mythical monster (generic term)|mythical creature (generic term)
+nemertea|1
+(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum (generic term)
+nemertean|1
+(noun)|ribbon worm|nemertine|proboscis worm|worm (generic term)
+nemertina|1
+(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum (generic term)
+nemertine|1
+(noun)|ribbon worm|nemertean|proboscis worm|worm (generic term)
+nemesis|2
+(noun)|Nemesis|Greek deity (generic term)
+(noun)|bane|curse|scourge|affliction (generic term)
+nemine contradicente|1
+(adv)|unanimously|nem con
+nemophila|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+nemophila aurita|1
+(noun)|fiesta flower|Pholistoma auritum|Nemophila aurita|herb (generic term)|herbaceous plant (generic term)
+nemophila maculata|1
+(noun)|five-spot|Nemophila maculata|nemophila (generic term)
+nemophila menziesii|1
+(noun)|baby blue-eyes|Nemophila menziesii|herb (generic term)|herbaceous plant (generic term)
+nenets|1
+(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+nentsi|1
+(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+nentsy|1
+(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+neo|1
+(adj)|modern (similar term)
+neo-darwinian|1
+(adj)|neo-Darwinian|Darwinism (related term)
+neo-darwinism|1
+(noun)|neo-Darwinism|Darwinism (generic term)
+neo-lamarckian|1
+(adj)|neo-Lamarckian|Lamarckism (related term)
+neo-lamarckism|1
+(noun)|Neo-Lamarckism|Lamarckism (generic term)
+neo-latin|1
+(noun)|Neo-Latin|New Latin|Latin (generic term)
+neo jazz|1
+(noun)|modern jazz|new jazz|jazz (generic term)
+neobiotic|1
+(noun)|neomycin|fradicin|Neobiotic|antibiotic (generic term)|antibiotic drug (generic term)|antiseptic (generic term)
+neoceratodus|1
+(noun)|Neoceratodus|genus Neoceratodus|fish genus (generic term)
+neoceratodus forsteri|1
+(noun)|barramunda|barramundi|Neoceratodus forsteri|lungfish (generic term)
+neoclassic|1
+(adj)|neoclassical|classical (similar term)
+neoclassical|1
+(adj)|neoclassic|classical (similar term)
+neoclassicism|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)|artistic style (generic term)|idiom (generic term)
+neoclassicist|2
+(adj)|neoclassicistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+neoclassicistic|1
+(adj)|neoclassicist|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+neocolonialism|1
+(noun)|colonialism (generic term)
+neocon|1
+(noun)|neoconservative|conservative (generic term)|conservativist (generic term)
+neoconservatism|1
+(noun)|conservatism (generic term)|conservativism (generic term)
+neoconservative|1
+(noun)|neocon|conservative (generic term)|conservativist (generic term)
+neocortex|1
+(noun)|neopallium|cerebral cortex (generic term)|cerebral mantle (generic term)|pallium (generic term)|cortex (generic term)
+neocortical|1
+(adj)|cerebral cortex|cerebral mantle|pallium|cortex (related term)
+neodymium|1
+(noun)|Nd|atomic number 60|metallic element (generic term)|metal (generic term)
+neoencephalon|1
+(noun)|neencephalon|neural structure (generic term)
+neoexpressionism|1
+(noun)|expressionism (generic term)
+neofiber|1
+(noun)|Neofiber|genus Neofiber|mammal genus (generic term)
+neofiber alleni|1
+(noun)|round-tailed muskrat|Florida water rat|Neofiber alleni|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+neohygrophorus|1
+(noun)|Neohygrophorus|genus Neohygrophorus|fungus genus (generic term)
+neohygrophorus angelesianus|1
+(noun)|Neohygrophorus angelesianus|waxycap (generic term)
+neolentinus|1
+(noun)|Neolentinus|genus Neolentinus|fungus genus (generic term)
+neolentinus ponderosus|1
+(noun)|Neolentinus ponderosus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+neoliberal|2
+(adj)|liberal (similar term)
+(noun)|liberal (generic term)|liberalist (generic term)|progressive (generic term)
+neoliberalism|1
+(noun)|liberalism (generic term)
+neolith|1
+(noun)|tool (generic term)
+neolithic|2
+(adj)|time period|period of time|period (related term)
+(noun)|Neolithic Age|Neolithic|New Stone Age|time period (generic term)|period of time (generic term)|period (generic term)
+neolithic age|1
+(noun)|Neolithic Age|Neolithic|New Stone Age|time period (generic term)|period of time (generic term)|period (generic term)
+neologism|2
+(noun)|neology|coinage|word (generic term)
+(noun)|neology|coinage|invention (generic term)
+neologist|1
+(noun)|lexicographer (generic term)|lexicologist (generic term)
+neology|2
+(noun)|neologism|coinage|word (generic term)
+(noun)|neologism|coinage|invention (generic term)
+neomycin|1
+(noun)|fradicin|Neobiotic|antibiotic (generic term)|antibiotic drug (generic term)|antiseptic (generic term)
+neomys|1
+(noun)|Neomys|genus Neomys|mammal genus (generic term)
+neomys anomalus|1
+(noun)|Mediterranean water shrew|Neomys anomalus|water shrew (generic term)
+neomys fodiens|1
+(noun)|European water shrew|Neomys fodiens|water shrew (generic term)
+neon|1
+(noun)|Ne|atomic number 10|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+neon induction lamp|1
+(noun)|neon lamp|neon tube|lamp (generic term)
+neon lamp|1
+(noun)|neon induction lamp|neon tube|lamp (generic term)
+neon tube|1
+(noun)|neon lamp|neon induction lamp|lamp (generic term)
+neonatal|1
+(adj)|baby|babe|infant (related term)
+neonatal death|1
+(noun)|death (generic term)
+neonatal hyperbilirubinemia|1
+(noun)|hyperbilirubinemia of the newborn|hyperbilirubinemia (generic term)
+neonatal intensive care unit|1
+(noun)|NICU|intensive care unit (generic term)|ICU (generic term)
+neonatal mortality|1
+(noun)|neonatal mortality rate|deathrate (generic term)|death rate (generic term)|mortality (generic term)|mortality rate (generic term)|fatality rate (generic term)
+neonatal mortality rate|1
+(noun)|neonatal mortality|deathrate (generic term)|death rate (generic term)|mortality (generic term)|mortality rate (generic term)|fatality rate (generic term)
+neonatal period|1
+(noun)|time of life (generic term)
+neonate|1
+(noun)|newborn|newborn infant|newborn baby|baby (generic term)|babe (generic term)|infant (generic term)
+neonatology|1
+(noun)|pediatrics (generic term)|paediatrics (generic term)|pediatric medicine (generic term)|pedology (generic term)
+neopallium|1
+(noun)|neocortex|cerebral cortex (generic term)|cerebral mantle (generic term)|pallium (generic term)|cortex (generic term)
+neophobia|1
+(noun)|simple phobia (generic term)
+neophron|1
+(noun)|Neophron|genus Neophron|bird genus (generic term)
+neophron percnopterus|1
+(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture (generic term)
+neophyte|3
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(noun)|newcomer|fledgling|fledgeling|starter|freshman|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|catechumen|student (generic term)|pupil (generic term)|educatee (generic term)
+neoplasia|1
+(noun)|pathologic process (generic term)|pathological process (generic term)
+neoplasm|1
+(noun)|tumor|tumour|growth (generic term)
+neoplastic|1
+(adj)|growth (related term)
+neoplastic cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+neoplatonism|1
+(noun)|Neoplatonism|philosophical doctrine (generic term)|philosophical theory (generic term)|theological doctrine (generic term)
+neoplatonist|1
+(noun)|Neoplatonist|disciple (generic term)|adherent (generic term)
+neopolitan|1
+(noun)|Neopolitan|Italian (generic term)
+neoprene|1
+(noun)|rubber (generic term)|synthetic rubber (generic term)
+neoromanticism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+neosho|1
+(noun)|Neosho|Neosho River|river (generic term)
+neosho river|1
+(noun)|Neosho|Neosho River|river (generic term)
+neosporin|1
+(noun)|Neosporin|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+neostigmine|1
+(noun)|Prostigmin|anticholinesterase (generic term)
+neotenic|1
+(adj)|neotenous|evolutionary trend (related term)
+neotenous|1
+(adj)|neotenic|evolutionary trend (related term)
+neoteny|1
+(noun)|evolutionary trend (generic term)
+neotoma|1
+(noun)|Neotoma|genus Neotoma|mammal genus (generic term)
+neotoma cinerea|1
+(noun)|packrat|pack rat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat (generic term)|wood-rat (generic term)
+neotoma floridana|1
+(noun)|eastern woodrat|Neotoma floridana|wood rat (generic term)|wood-rat (generic term)
+neotoma fuscipes|1
+(noun)|dusky-footed woodrat|Neotoma fuscipes|packrat (generic term)|pack rat (generic term)|trade rat (generic term)|bushytail woodrat (generic term)|Neotoma cinerea (generic term)
+neotony|1
+(noun)|state (generic term)
+nepa|1
+(noun)|Nepa|genus Nepa|arthropod genus (generic term)
+nepal|1
+(noun)|Nepal|Kingdom of Nepal|Asian country (generic term)|Asian nation (generic term)
+nepal trumpet flower|1
+(noun)|Nepal trumpet flower|Easter lily vine|Beaumontia grandiflora|vine (generic term)
+nepalese|2
+(adj)|Nepalese|Nepali|Asian country|Asian nation (related term)
+(noun)|Nepalese|Nepali|Asian (generic term)|Asiatic (generic term)
+nepalese monetary unit|1
+(noun)|Nepalese monetary unit|monetary unit (generic term)
+nepalese rupee|1
+(noun)|Nepalese rupee|rupee|Nepalese monetary unit (generic term)
+nepali|3
+(adj)|Nepalese|Nepali|Asian country|Asian nation (related term)
+(noun)|Nepalese|Nepali|Asian (generic term)|Asiatic (generic term)
+(noun)|Nepali|Indic (generic term)|Indo-Aryan (generic term)
+nepenthaceae|1
+(noun)|Nepenthaceae|family Nepenthaceae|dicot family (generic term)|magnoliopsid family (generic term)
+nepenthes|1
+(noun)|Nepenthes|genus Nepenthes|dicot genus (generic term)|magnoliopsid genus (generic term)
+nepeta|1
+(noun)|Nepeta|genus Nepeta|asterid dicot genus (generic term)
+nepeta cataria|1
+(noun)|catmint|catnip|Nepeta cataria|herb (generic term)|herbaceous plant (generic term)
+nepeta hederaceae|1
+(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|runaway robin|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+nepheline|1
+(noun)|nephelite|mineral (generic term)
+nephelinite|1
+(noun)|mineral (generic term)
+nephelite|1
+(noun)|nepheline|mineral (generic term)
+nephelium|1
+(noun)|Nephelium|genus Nephelium|dicot genus (generic term)|magnoliopsid genus (generic term)
+nephelium lappaceum|1
+(noun)|rambutan|rambotan|rambutan tree|Nephelium lappaceum|fruit tree (generic term)
+nephelium litchi|1
+(noun)|litchi|lichee|litchi tree|Litchi chinensis|Nephelium litchi|fruit tree (generic term)
+nephelium longana|1
+(noun)|longan|lungen|longanberry|Dimocarpus longan|Euphorbia litchi|Nephelium longana|fruit tree (generic term)
+nephelium mutabile|1
+(noun)|pulasan|pulassan|pulasan tree|Nephelium mutabile|fruit tree (generic term)
+nephew|1
+(noun)|kinsman (generic term)|niece (antonym)
+nephology|1
+(noun)|meteorology (generic term)
+nephoscope|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+nephralgia|1
+(noun)|pain (generic term)|hurting (generic term)
+nephrectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+nephrite|1
+(noun)|amphibole (generic term)
+nephritic|2
+(adj)|kidney disease|renal disorder|nephropathy|nephrosis (related term)
+(adj)|renal|excretory organ|urinary organ (related term)
+nephritis|1
+(noun)|Bright's disease|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+nephroangiosclerosis|1
+(noun)|nephrosclerosis|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+nephroblastoma|1
+(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|embryoma of the kidney|sarcoma (generic term)
+nephrocalcinosis|1
+(noun)|nephrolithiasis (generic term)|renal lithiasis (generic term)
+nephrogenic diabetes insipidus|1
+(noun)|diabetes insipidus (generic term)
+nephrolepis|1
+(noun)|Nephrolepis|genus Nephrolepis|fern genus (generic term)
+nephrolepis exaltata|1
+(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern (generic term)
+nephrolepis exaltata bostoniensis|1
+(noun)|Boston fern|Nephrolepis exaltata|Nephrolepis exaltata bostoniensis|sword fern (generic term)
+nephrolepis pectinata|1
+(noun)|basket fern|toothed sword fern|Nephrolepis pectinata|sword fern (generic term)
+nephrolith|1
+(noun)|kidney stone|urinary calculus|renal calculus|calculus (generic term)|concretion (generic term)
+nephrolithiasis|1
+(noun)|renal lithiasis|lithiasis (generic term)
+nephrology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+nephron|1
+(noun)|uriniferous tubule|tubule (generic term)
+nephropathy|1
+(noun)|kidney disease|renal disorder|nephrosis|uropathy (generic term)
+nephrops|1
+(noun)|Nephrops|genus Nephrops|arthropod genus (generic term)
+nephrops norvegicus|1
+(noun)|Norway lobster|Nephrops norvegicus|lobster (generic term)
+nephropsidae|1
+(noun)|Nephropsidae|family Nephropsidae|arthropod family (generic term)
+nephroptosia|1
+(noun)|nephroptosis|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+nephroptosis|1
+(noun)|nephroptosia|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+nephrosclerosis|1
+(noun)|nephroangiosclerosis|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+nephrosis|2
+(noun)|nephrotic syndrome|syndrome (generic term)
+(noun)|kidney disease|renal disorder|nephropathy|uropathy (generic term)
+nephrotic syndrome|1
+(noun)|nephrosis|syndrome (generic term)
+nephrotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+nephrotoxic|1
+(adj)|toxic (similar term)
+nephrotoxin|1
+(noun)|toxin (generic term)
+nephthys|1
+(noun)|Nephthys|Egyptian deity (generic term)
+nephthytis|1
+(noun)|arum (generic term)|aroid (generic term)
+nephthytis afzelii|1
+(noun)|Nephthytis afzelii|nephthytis (generic term)
+nepidae|1
+(noun)|Nepidae|family Nepidae|arthropod family (generic term)
+nepotism|1
+(noun)|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+nepotist|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+neptune|2
+(noun)|Neptune|Roman deity (generic term)
+(noun)|Neptune|Jovian planet (generic term)|gas giant (generic term)|superior planet (generic term)|outer planet (generic term)
+neptunium|1
+(noun)|Np|atomic number 93|metallic element (generic term)|metal (generic term)
+nerd|1
+(noun)|swot|grind|wonk|dweeb|learner (generic term)|scholar (generic term)|assimilator (generic term)
+nereid|1
+(noun)|Nereid|sea nymph (generic term)
+nereus|1
+(noun)|Nereus|Greek deity (generic term)
+nergal|1
+(noun)|Nergal|Semitic deity (generic term)
+nerita|1
+(noun)|neritid (generic term)|neritid gastropod (generic term)
+nerita peloronta|1
+(noun)|bleeding tooth|Nerita peloronta|neritid (generic term)|neritid gastropod (generic term)
+neritic|2
+(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones (related term)
+(adj)|shallow (similar term)
+neritic zone|1
+(noun)|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+neritid|1
+(noun)|neritid gastropod|seasnail (generic term)
+neritid gastropod|1
+(noun)|neritid|seasnail (generic term)
+neritidae|1
+(noun)|Neritidae|family Neritidae|mollusk family (generic term)
+neritina|1
+(noun)|neritid (generic term)|neritid gastropod (generic term)
+nerium|1
+(noun)|Nerium|genus Nerium|dicot genus (generic term)|magnoliopsid genus (generic term)
+nerium oleander|1
+(noun)|oleander|rose bay|Nerium oleander|poisonous plant (generic term)
+nernst|1
+(noun)|Nernst|Walther Hermann Nernst|chemist (generic term)|physicist (generic term)
+nero|1
+(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+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 (generic term)|bush (generic term)
+nero claudius caesar drusus germanicus|1
+(noun)|Nero|Nero Claudius Caesar Drusus Germanicus|Lucius Domitius Ahenobarbus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+nerodia|1
+(noun)|Nerodia|genus Nerodia|reptile genus (generic term)
+nerodia sipedon|1
+(noun)|common water snake|banded water snake|Natrix sipedon|Nerodia sipedon|water snake (generic term)
+neroli oil|1
+(noun)|oil (generic term)
+nerthus|1
+(noun)|Nerthus|Hertha|Teutonic deity (generic term)
+neruda|1
+(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet (generic term)
+nerva|1
+(noun)|Nerva|Marcus Cocceius Nerva|Roman Emperor (generic term)|Emperor of Rome (generic term)
+nerve|4
+(noun)|nervus|fiber bundle (generic term)|fibre bundle (generic term)|fascicle (generic term)|fasciculus (generic term)
+(noun)|heart|mettle|spunk|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+(noun)|boldness|brass|face|cheek|aggressiveness (generic term)
+(verb)|steel|brace (generic term)|poise (generic term)
+nerve-racking|1
+(adj)|nerve-wracking|stressful|trying|disagreeable (similar term)
+nerve-wracking|1
+(adj)|nerve-racking|stressful|trying|disagreeable (similar term)
+nerve agent|1
+(noun)|nerve gas|poison gas (generic term)|agent (generic term)
+nerve block anaesthesia|1
+(noun)|conduction anesthesia|conduction anaesthesia|nerve block anesthesia|block anesthesia|block anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+nerve block anesthesia|1
+(noun)|conduction anesthesia|conduction anaesthesia|nerve block anaesthesia|block anesthesia|block anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+nerve cell|1
+(noun)|neuron|somatic cell (generic term)|vegetative cell (generic term)
+nerve center|2
+(noun)|nerve centre|center (generic term)|centre (generic term)
+(noun)|center|centre|nerve centre|neural structure (generic term)
+nerve centre|2
+(noun)|nerve center|center (generic term)|centre (generic term)
+(noun)|center|centre|nerve center|neural structure (generic term)
+nerve compression|1
+(noun)|nervous disorder (generic term)|neurological disorder (generic term)|neurological disease (generic term)
+nerve deafness|1
+(noun)|sensorineural hearing loss|hearing impairment (generic term)|hearing disorder (generic term)
+nerve end|1
+(noun)|nerve ending|end (generic term)
+nerve ending|1
+(noun)|nerve end|end (generic term)
+nerve entrapment|1
+(noun)|nerve compression (generic term)
+nerve fiber|1
+(noun)|nerve fibre|fiber (generic term)|fibre (generic term)
+nerve fibre|1
+(noun)|nerve fiber|fiber (generic term)|fibre (generic term)
+nerve gas|1
+(noun)|nerve agent|poison gas (generic term)|agent (generic term)
+nerve growth factor|1
+(noun)|NGF|growth factor (generic term)
+nerve impulse|1
+(noun)|impulse|electrical discharge (generic term)
+nerve pathway|1
+(noun)|tract|nerve tract|pathway|white matter (generic term)|substantia alba (generic term)
+nerve plexus|1
+(noun)|plexus (generic term)|rete (generic term)
+nerve tissue|1
+(noun)|nervous tissue|animal tissue (generic term)
+nerve tract|1
+(noun)|nerve pathway|tract|pathway|white matter (generic term)|substantia alba (generic term)
+nerveless|2
+(adj)|cool|coolheaded|composed (similar term)
+(adj)|feeble|powerless (similar term)
+nervelessly|1
+(adv)|coolly|nonchalantly
+nervelessness|1
+(noun)|coolness|fearlessness (generic term)
+nerveroot|1
+(noun)|moccasin flower|Cypripedium acaule|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+nerves|2
+(noun)|nervousness|psychological state (generic term)|mental state (generic term)
+(noun)|self-control (generic term)|self-possession (generic term)|possession (generic term)|willpower (generic term)|self-command (generic term)|self-will (generic term)
+nervi|1
+(noun)|Nervi|Pier Luigi Nervi|architect (generic term)|designer (generic term)
+nervii olfactorii|1
+(noun)|olfactory nerve|first cranial nerve|cranial nerve (generic term)
+nervily|1
+(adv)|cheekily|brashly
+nervous|5
+(adj)|tense (similar term)
+(adj)|anxious|queasy|uneasy|unquiet|troubled (similar term)
+(adj)|neural|system (related term)
+(adj)|aflutter|excited (similar term)
+(adj)|skittish|flighty|spooky|excitable (similar term)
+nervous breakdown|1
+(noun)|breakdown (generic term)|crack-up (generic term)
+nervous disorder|1
+(noun)|neurological disorder|neurological disease|disorder (generic term)|upset (generic term)
+nervous exhaustion|1
+(noun)|nervous prostration|nervous breakdown (generic term)
+nervous prostration|1
+(noun)|nervous exhaustion|nervous breakdown (generic term)
+nervous strain|1
+(noun)|strain|mental strain|nervousness (generic term)|nerves (generic term)
+nervous system|1
+(noun)|systema nervosum|system (generic term)
+nervous tissue|1
+(noun)|nerve tissue|animal tissue (generic term)
+nervousness|3
+(noun)|jitteriness|jumpiness|restiveness|anxiety (generic term)
+(noun)|nerves|psychological state (generic term)|mental state (generic term)
+(noun)|disposition (generic term)|temperament (generic term)
+nervure|2
+(noun)|vein|vascular bundle (generic term)|vascular strand (generic term)|fibrovascular bundle (generic term)
+(noun)|vein|rib (generic term)
+nervus|1
+(noun)|nerve|fiber bundle (generic term)|fibre bundle (generic term)|fascicle (generic term)|fasciculus (generic term)
+nervus abducens|1
+(noun)|abducent|abducent nerve|abducens|abducens nerve|sixth cranial nerve|cranial nerve (generic term)
+nervus accessorius|1
+(noun)|accessory nerve|spinal accessory|eleventh cranial nerve|cranial nerve (generic term)
+nervus coccygeus|1
+(noun)|coccygeal nerve|spinal nerve (generic term)|nervus spinalis (generic term)
+nervus facialis|1
+(noun)|facial|facial nerve|seventh cranial nerve|cranial nerve (generic term)
+nervus femoralis|1
+(noun)|femoral nerve|anterior crural nerve|spinal nerve (generic term)|nervus spinalis (generic term)
+nervus glossopharyngeus|1
+(noun)|glossopharyngeal nerve|ninth cranial nerve|cranial nerve (generic term)
+nervus hypoglosus|1
+(noun)|hypoglossal|hypoglossal nerve|twelfth cranial nerve|cranial nerve (generic term)
+nervus ischiadicus|1
+(noun)|sciatic nerve|nerve (generic term)|nervus (generic term)
+nervus oculomotorius|1
+(noun)|oculomotor|oculomotor nerve|third cranial nerve|cranial nerve (generic term)
+nervus opticus|1
+(noun)|optic nerve|second cranial nerve|optic tract|cranial nerve (generic term)
+nervus phrenicus|1
+(noun)|phrenic nerve|spinal nerve (generic term)|nervus spinalis (generic term)
+nervus radialis|1
+(noun)|radial nerve|musculospiral nerve|nerve (generic term)|nervus (generic term)
+nervus saphenus|1
+(noun)|saphenous nerve|nerve (generic term)|nervus (generic term)
+nervus spinalis|1
+(noun)|spinal nerve|nerve (generic term)|nervus (generic term)
+nervus trigeminus|1
+(noun)|trigeminal|trigeminal nerve|trigeminus|fifth cranial nerve|cranial nerve (generic term)
+nervus ulnaris|1
+(noun)|ulnar nerve|cubital nerve|nerve (generic term)|nervus (generic term)
+nervus vagus|1
+(noun)|vagus|vagus nerve|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve (generic term)
+nervus vestibulocochlearis|1
+(noun)|acoustic nerve|auditory nerve|vestibulocochlear nerve|eighth cranial nerve|cranial nerve (generic term)
+nervy|3
+(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|overstrung|restive|uptight|tense (similar term)
+(adj)|bold (similar term)
+(adj)|brash|cheeky|forward (similar term)
+nescience|1
+(noun)|ignorantness|unknowing|unknowingness|ignorance (generic term)
+nescient|2
+(adj)|unbelieving|agnostic (similar term)|agnostical (similar term)
+(adj)|ignorant|unenlightened|unlearned|unlettered|uneducated (similar term)
+nesokia|1
+(noun)|Nesokia|genus Nesokia|mammal genus (generic term)
+ness|1
+(noun)|cape|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+nesselrode|1
+(noun)|Nesselrode|Nesselrode pudding|pudding (generic term)
+nesselrode pudding|1
+(noun)|Nesselrode|Nesselrode pudding|pudding (generic term)
+nessie|1
+(noun)|Loch Ness monster|Nessie|legendary creature (generic term)
+nest|9
+(noun)|natural object (generic term)
+(noun)|gun emplacement (generic term)|weapons emplacement (generic term)
+(noun)|retreat (generic term)
+(noun)|gang (generic term)|pack (generic term)|ring (generic term)|mob (generic term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(verb)|inhabit (generic term)|occupy (generic term)
+(verb)|implant (generic term)|engraft (generic term)|embed (generic term)|imbed (generic term)|plant (generic term)
+(verb)|cuddle|snuggle|nestle|nuzzle|draw close|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+nest egg|2
+(noun)|savings|fund (generic term)|monetary fund (generic term)
+(noun)|device (generic term)
+nester|2
+(noun)|squatter|homesteader|settler (generic term)|colonist (generic term)
+(noun)|bird (generic term)
+nesting place|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+nestle|4
+(noun)|cuddle|snuggle|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(verb)|cuddle|snuggle|nest|nuzzle|draw close|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|lie (generic term)
+(verb)|snuggle|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+nestled|1
+(adj)|snuggled|close (similar term)
+nestling|2
+(noun)|baby bird|young bird (generic term)
+(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|juvenile (generic term)|juvenile person (generic term)
+nestor|2
+(noun)|Nestor|counselor (generic term)|counsellor (generic term)
+(noun)|Nestor|genus Nestor|bird genus (generic term)
+nestor notabilis|1
+(noun)|kea|Nestor notabilis|parrot (generic term)
+nestor paz zamora commission|1
+(noun)|National Liberation Army|ELN|Nestor Paz Zamora Commission|CNPZ|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+nestorian|2
+(adj)|Nestorian|Patriarch (related term)|theological doctrine|heresy|unorthodoxy (related term)
+(noun)|Nestorian|follower (generic term)
+nestorian church|1
+(noun)|Nestorian Church|church (generic term)|Christian church (generic term)
+nestorianism|1
+(noun)|Nestorianism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+nestorius|1
+(noun)|Nestorius|Patriarch (generic term)
+net|12
+(adj)|nett|clear (similar term)|take-home (similar term)|gross (antonym)
+(adj)|final|last|ultimate (similar term)
+(noun)|internet|cyberspace|computer network (generic term)
+(noun)|trap (generic term)
+(noun)|net income|net profit|lucre|profit|profits|earnings|income (generic term)
+(noun)|goal (generic term)
+(noun)|game equipment (generic term)
+(noun)|network|mesh|meshing|meshwork|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|sack|sack up|clear|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|clear|yield (generic term)|pay (generic term)|bear (generic term)
+(verb)|web|weave (generic term)|tissue (generic term)
+(verb)|nett|catch (generic term)|grab (generic term)|take hold of (generic term)
+net ball|1
+(noun)|let|serve (generic term)|service (generic term)
+net estate|1
+(noun)|estate (generic term)
+net fish|1
+(verb)|fish (generic term)
+net income|1
+(noun)|net|net profit|lucre|profit|profits|earnings|income (generic term)
+net melon|2
+(noun)|netted melon|nutmeg melon|Cucumis melo reticulatus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|netted melon|nutmeg melon|muskmelon (generic term)|sweet melon (generic term)
+net profit|1
+(noun)|net income|net|lucre|profit|profits|earnings|income (generic term)
+net sales|1
+(noun)|income (generic term)
+net ton|1
+(noun)|short ton|ton|avoirdupois unit (generic term)
+netball|1
+(noun)|court game (generic term)
+nether|3
+(adj)|bottom (similar term)
+(adj)|chthonian|chthonic|infernal (similar term)
+(adj)|under|low (similar term)
+nether region|1
+(noun)|Hell|perdition|Inferno|infernal region|pit|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+netherlander|1
+(noun)|Netherlander|Dutchman|Hollander|European (generic term)
+netherlands|1
+(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Nederland|Holland|European country (generic term)|European nation (generic term)
+netherlands antilles|1
+(noun)|Netherlands Antilles|island (generic term)
+netherlands guiana|1
+(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country (generic term)|South American nation (generic term)
+nethermost|1
+(adj)|bottommost|lowermost|bottom (similar term)
+netherworld|1
+(noun)|Hel|Hell|Hades|infernal region|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+netkeeper|2
+(noun)|goalkeeper|goalie|goaltender|netminder|soccer player (generic term)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|goalkeeper|goalie|goaltender|position (generic term)
+netlike|1
+(adj)|lacy|netted|webbed|weblike|webby|reticulate (similar term)|reticular (similar term)
+netmail|1
+(verb)|e-mail|email|telecommunicate (generic term)
+netminder|1
+(noun)|goalkeeper|goalie|goaltender|netkeeper|soccer player (generic term)|hockey player (generic term)|ice-hockey player (generic term)
+netscape|1
+(noun)|Netscape|browser (generic term)|web browser (generic term)
+nett|2
+(adj)|net|clear (similar term)|take-home (similar term)|gross (antonym)
+(verb)|net|catch (generic term)|grab (generic term)|take hold of (generic term)
+netted|1
+(adj)|lacy|netlike|webbed|weblike|webby|reticulate (similar term)|reticular (similar term)
+netted melon|2
+(noun)|net melon|nutmeg melon|Cucumis melo reticulatus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|net melon|nutmeg melon|muskmelon (generic term)|sweet melon (generic term)
+netting|2
+(noun)|gauze|veiling|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+(noun)|weaving (generic term)
+nettle|3
+(noun)|weed (generic term)
+(verb)|urticate|bite (generic term)|sting (generic term)|burn (generic term)
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|gravel|vex|chafe|devil|displease (generic term)
+nettle-leaved bellflower|1
+(noun)|throatwort|Campanula trachelium|campanula (generic term)|bellflower (generic term)
+nettle-leaved goosefoot|1
+(noun)|nettleleaf goosefoot|Chenopodium murale|goosefoot (generic term)
+nettle family|1
+(noun)|Urticaceae|family Urticaceae|dicot family (generic term)|magnoliopsid family (generic term)
+nettle rash|1
+(noun)|urtication|urticaria|hives|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)|hypersensitivity reaction (generic term)
+nettle tree|1
+(noun)|hackberry|tree (generic term)
+nettled|1
+(adj)|annoyed|irritated|miffed|peeved|pissed|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+nettleleaf goosefoot|1
+(noun)|nettle-leaved goosefoot|Chenopodium murale|goosefoot (generic term)
+nettlesome|2
+(adj)|annoying|bothersome|galling|irritating|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+(adj)|cranky|fractious|irritable|peevish|peckish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+network|6
+(noun)|web|system (generic term)|scheme (generic term)
+(noun)|communication system (generic term)|communication equipment (generic term)
+(noun)|net|mesh|meshing|meshwork|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|system (generic term)
+(noun)|electronic network|system (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+network architecture|1
+(noun)|specification (generic term)|spec (generic term)
+network army|1
+(noun)|people (generic term)
+network programming|1
+(noun)|schedule (generic term)
+network topology|1
+(noun)|topology|configuration (generic term)|constellation (generic term)
+networklike|1
+(adj)|reticulate (similar term)|reticular (similar term)
+neumann|1
+(noun)|von Neumann|Neumann|John von Neumann|mathematician (generic term)
+neural|2
+(adj)|nervous|system (related term)
+(adj)|neuronal|neuronic|somatic cell|vegetative cell (related term)
+neural arch|1
+(noun)|vertebral arch|arch (generic term)
+neural net|2
+(noun)|neural network|computer architecture (generic term)
+(noun)|neural network|reticulum (generic term)
+neural network|2
+(noun)|neural net|computer architecture (generic term)
+(noun)|neural net|reticulum (generic term)
+neural structure|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+neural tube|1
+(noun)|ectoderm (generic term)|exoderm (generic term)|ectoblast (generic term)
+neuralgia|1
+(noun)|neuralgy|pain (generic term)|hurting (generic term)
+neuralgic|1
+(adj)|pain|hurting (related term)
+neuralgy|1
+(noun)|neuralgia|pain (generic term)|hurting (generic term)
+neurasthenia|1
+(noun)|nervous breakdown (generic term)
+neurasthenic|2
+(adj)|nervous breakdown (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+neurectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+neurilemma|1
+(noun)|neurolemma|sheath (generic term)|case (generic term)
+neurilemoma|1
+(noun)|neurofibroma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+neurinoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+neuritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+neuroanatomic|1
+(adj)|neuroanatomical|anatomy|general anatomy (related term)
+neuroanatomical|1
+(adj)|neuroanatomic|anatomy|general anatomy (related term)
+neuroanatomy|1
+(noun)|anatomy (generic term)|general anatomy (generic term)
+neurobiological|1
+(adj)|biology|biological science (related term)
+neurobiologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+neurobiology|1
+(noun)|biology (generic term)|biological science (generic term)
+neuroblast|1
+(noun)|embryonic cell (generic term)|formative cell (generic term)
+neuroblastoma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+neurochemical|1
+(noun)|organic compound (generic term)
+neurodermatitis|1
+(noun)|dermatitis (generic term)
+neuroendocrine|1
+(adj)|system (related term)
+neuroepithelioma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+neuroepithelium|1
+(noun)|epithelium (generic term)|epithelial tissue (generic term)
+neuroethics|1
+(noun)|bioethics (generic term)
+neurofibroma|1
+(noun)|neurilemoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+neurofibromatosis|1
+(noun)|von Recklinghausen's disease|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+neurogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+neurogenic|1
+(adj)|animal tissue (related term)
+neurogenic bladder|1
+(noun)|bladder disorder (generic term)
+neuroglia|1
+(noun)|glia|interstitial tissue (generic term)
+neurogliacyte|1
+(noun)|neuroglial cell|glial cell|somatic cell (generic term)|vegetative cell (generic term)
+neuroglial|1
+(adj)|interstitial tissue (related term)
+neuroglial cell|1
+(noun)|neurogliacyte|glial cell|somatic cell (generic term)|vegetative cell (generic term)
+neurohormone|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+neurohypophysis|1
+(noun)|posterior pituitary|posterior pituitary gland|pars nervosa|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+neurolemma|1
+(noun)|neurilemma|sheath (generic term)|case (generic term)
+neuroleptic|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic agent|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+neuroleptic agent|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic drug|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+neuroleptic drug|1
+(noun)|major tranquilizer|major tranquillizer|major tranquilliser|antipsychotic drug|antipsychotic agent|antipsychotic|neuroleptic agent|neuroleptic|tranquilizer (generic term)|tranquillizer (generic term)|tranquilliser (generic term)|antianxiety agent (generic term)|ataractic drug (generic term)|ataractic agent (generic term)|ataractic (generic term)
+neurolinguist|1
+(noun)|neuroscientist (generic term)|linguist (generic term)|linguistic scientist (generic term)
+neurolinguistics|1
+(noun)|linguistics (generic term)
+neurologic|1
+(adj)|neurological|medicine|medical specialty (related term)
+neurological|1
+(adj)|neurologic|medicine|medical specialty (related term)
+neurological disease|1
+(noun)|nervous disorder|neurological disorder|disorder (generic term)|upset (generic term)
+neurological disorder|1
+(noun)|nervous disorder|neurological disease|disorder (generic term)|upset (generic term)
+neurologist|1
+(noun)|brain doctor|specialist (generic term)|medical specialist (generic term)
+neurology|2
+(noun)|medical science (generic term)
+(noun)|clinical neurology|medicine (generic term)|medical specialty (generic term)
+neurolysin|1
+(noun)|neurotoxin|toxin (generic term)
+neuroma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+neuromatous|1
+(adj)|tumor|tumour|neoplasm (related term)
+neuromotor|1
+(adj)|efferent (similar term)|motorial (similar term)
+neuromuscular|1
+(adj)|contractile organ|contractor (related term)|fiber bundle|fibre bundle|fascicle|fasciculus (related term)
+neuromuscular blocking agent|1
+(noun)|blocker (generic term)|blocking agent (generic term)
+neuromuscular junction|1
+(noun)|myoneural junction|synapse (generic term)
+neuron|1
+(noun)|nerve cell|somatic cell (generic term)|vegetative cell (generic term)
+neuronal|1
+(adj)|neural|neuronic|somatic cell|vegetative cell (related term)
+neuronic|1
+(adj)|neural|neuronal|somatic cell|vegetative cell (related term)
+neuropathy|1
+(noun)|pathology (generic term)
+neurophysiological|1
+(adj)|neuroscience|physiology (related term)
+neurophysiology|1
+(noun)|neuroscience (generic term)|physiology (generic term)
+neuroplasty|1
+(noun)|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+neuropsychiatric|1
+(adj)|medicine|medical specialty (related term)
+neuropsychiatry|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+neuropsychological|1
+(adj)|psychology|psychological science (related term)
+neuropsychology|1
+(noun)|physiological psychology|psychophysiology|psychology (generic term)|psychological science (generic term)
+neuroptera|1
+(noun)|Neuroptera|order Neuroptera|animal order (generic term)
+neuropteran|1
+(noun)|neuropteron|neuropterous insect|insect (generic term)
+neuropteron|1
+(noun)|neuropteran|neuropterous insect|insect (generic term)
+neuropterous insect|1
+(noun)|neuropteron|neuropteran|insect (generic term)
+neurosarcoma|1
+(noun)|malignant neuroma|sarcoma (generic term)
+neuroscience|1
+(noun)|neurobiology (generic term)
+neuroscientist|1
+(noun)|neurobiologist (generic term)
+neurosis|1
+(noun)|neuroticism|psychoneurosis|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+neurospora|1
+(noun)|Neurospora|genus Neurospora|fungus genus (generic term)
+neurosurgeon|1
+(noun)|brain surgeon|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+neurosurgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+neurosyphilis|1
+(noun)|syphilis (generic term)|syph (generic term)|pox (generic term)
+neurotic|3
+(adj)|mental disorder|mental disturbance|disturbance|psychological disorder|folie (related term)
+(adj)|psychoneurotic|abulic (similar term)|aboulic (similar term)|compulsive (similar term)|delusional (similar term)|disturbed (similar term)|maladjusted (similar term)|hypochondriac (similar term)|hypochondriacal (similar term)|hysteric (similar term)|hysterical (similar term)|megalomaniacal (similar term)|megalomanic (similar term)|monomaniacal (similar term)|nymphomaniacal (similar term)|nymphomaniac (similar term)|obsessional (similar term)|obsessive (similar term)|obsessive-compulsive (similar term)|pathological (similar term)|phobic (similar term)|psychosomatic (similar term)|schizoid (similar term)|unneurotic (antonym)
+(noun)|psychoneurotic|mental case|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+neurotic depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)|psychotic depression (antonym)
+neuroticism|1
+(noun)|neurosis|psychoneurosis|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+neurotoxic|1
+(adj)|toxin (related term)
+neurotoxin|1
+(noun)|neurolysin|toxin (generic term)
+neurotransmitter|1
+(noun)|neurochemical (generic term)
+neurotrichus|1
+(noun)|Neurotrichus|genus Neurotrichus|mammal genus (generic term)
+neurotrichus gibbsii|1
+(noun)|American shrew mole|Neurotrichus gibbsii|shrew mole (generic term)
+neurotropic|1
+(adj)|tropism (related term)
+neurotropism|1
+(noun)|tropism (generic term)
+neuter|4
+(adj)|masculine (antonym)|feminine (antonym)
+(adj)|sexless|asexual (similar term)|nonsexual (similar term)
+(noun)|gender (generic term)|grammatical gender (generic term)
+(verb)|alter|spay|castrate|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+neutered|1
+(adj)|altered|castrated (similar term)|unsexed (similar term)
+neutering|1
+(noun)|fixing|altering|sterilization (generic term)|sterilisation (generic term)
+neutral|9
+(adj)|amoral (similar term)|unmoral (similar term)
+(adj)|impersonal|objective (similar term)|nonsubjective (similar term)
+(adj)|inert|indifferent|unreactive (similar term)
+(adj)|nonaligned (similar term)
+(adj)|electroneutral|positive (antonym)|negative (antonym)
+(adj)|achromatic (similar term)
+(adj)|neutralized (similar term)|neutralised (similar term)|viewless (similar term)|positive (antonym)|negative (antonym)
+(adj)|colorless (similar term)|colourless (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+neutral-colored|1
+(adj)|neutral-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+neutral-coloured|1
+(adj)|neutral-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+neutral spirits|1
+(noun)|ethyl alcohol|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+neutralisation|4
+(noun)|neutralization|neutralization reaction|neutralisation reaction|chemical reaction (generic term)|reaction (generic term)
+(noun)|neutralization|destruction (generic term)|devastation (generic term)
+(noun)|neutralization|nullification (generic term)|override (generic term)
+(noun)|neutralization|counteraction|nullification (generic term)|override (generic term)
+neutralisation reaction|1
+(noun)|neutralization|neutralisation|neutralization reaction|chemical reaction (generic term)|reaction (generic term)
+neutralise|4
+(verb)|neutralize|liquidate|waste|knock off|do in|kill (generic term)
+(verb)|neutralize|demilitarize (generic term)|demilitarise (generic term)
+(verb)|neutralize|nullify|negate|weaken (generic term)
+(verb)|neutralize|change (generic term)|alter (generic term)|modify (generic term)
+neutralised|1
+(adj)|neutralized|neutral (similar term)
+neutralism|1
+(noun)|foreign policy (generic term)
+neutralist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+neutrality|3
+(noun)|non-engagement (generic term)|nonparticipation (generic term)|non-involvement (generic term)
+(noun)|disinterest|tolerance (generic term)
+(noun)|pH (generic term)|pH scale (generic term)
+neutralization|4
+(noun)|neutralisation|neutralization reaction|neutralisation reaction|chemical reaction (generic term)|reaction (generic term)
+(noun)|neutralisation|nullification (generic term)|override (generic term)
+(noun)|neutralisation|destruction (generic term)|devastation (generic term)
+(noun)|neutralisation|counteraction|nullification (generic term)|override (generic term)
+neutralization fire|1
+(noun)|fire (generic term)|firing (generic term)
+neutralization reaction|1
+(noun)|neutralization|neutralisation|neutralisation reaction|chemical reaction (generic term)|reaction (generic term)
+neutralize|6
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|neutralise|nullify|negate|weaken (generic term)
+(verb)|counteract|countervail|counterbalance|cancel (generic term)|offset (generic term)|set off (generic term)
+(verb)|neutralise|liquidate|waste|knock off|do in|kill (generic term)
+(verb)|neutralise|demilitarize (generic term)|demilitarise (generic term)
+(verb)|neutralise|change (generic term)|alter (generic term)|modify (generic term)
+neutralized|1
+(adj)|neutralised|neutral (similar term)
+neutrino|1
+(noun)|lepton (generic term)
+neutron|1
+(noun)|nucleon (generic term)
+neutron bomb|1
+(noun)|atom bomb (generic term)|atomic bomb (generic term)|A-bomb (generic term)|fission bomb (generic term)|plutonium bomb (generic term)
+neutron flux|1
+(noun)|flux (generic term)
+neutron radiation|1
+(noun)|corpuscular radiation (generic term)|particulate radiation (generic term)|ionizing radiation (generic term)
+neutron star|1
+(noun)|star (generic term)
+neutropenia|1
+(noun)|leukopenia (generic term)|leucopenia (generic term)
+neutrophil|1
+(noun)|neutrophile|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+neutrophile|1
+(noun)|neutrophil|leukocyte (generic term)|leucocyte (generic term)|white blood cell (generic term)|white cell (generic term)|white blood corpuscle (generic term)|white corpuscle (generic term)|WBC (generic term)
+neva|1
+(noun)|Neva|Neva River|river (generic term)
+neva river|1
+(noun)|Neva|Neva River|river (generic term)
+nevada|1
+(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state (generic term)
+nevadan|1
+(noun)|Nevadan|American (generic term)
+nevado de colima|1
+(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano (generic term)
+neve|1
+(noun)|ice (generic term)
+nevelson|1
+(noun)|Nevelson|Louise Nevelson|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+never|1
+(adv)|ne'er|ever (antonym)
+never-ending|1
+(adj)|ceaseless|constant|incessant|perpetual|unceasing|unremitting|continuous (similar term)|uninterrupted (similar term)
+never-never|2
+(noun)|hire-purchase|installment plan (generic term)|installment buying (generic term)|time plan (generic term)
+(noun)|Never-Never|outback (generic term)
+never-never land|1
+(noun)|dreamland|dreamworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+never-say-die|1
+(adj)|indomitable|unsubduable|unconquerable (similar term)
+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 (generic term)|author (generic term)
+nevil shute norway|1
+(noun)|Shute|Nevil Shute|Nevil Shute Norway|writer (generic term)|author (generic term)
+neville chamberlain|1
+(noun)|Chamberlain|Neville Chamberlain|Arthur Neville Chamberlain|statesman (generic term)|solon (generic term)|national leader (generic term)
+nevirapine|1
+(noun)|Viramune|non-nucleoside reverse transcriptase inhibitor (generic term)|NNRTI (generic term)
+nevis|1
+(noun)|Nevis|island (generic term)
+nevoid elephantiasis|1
+(noun)|pachyderma|elephantiasis (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+nevus|1
+(noun)|birthmark|blemish (generic term)|defect (generic term)|mar (generic term)
+nevus flammeus|1
+(noun)|port-wine stain|birthmark (generic term)|nevus (generic term)
+new|12
+(adj)|brand-new (similar term)|bran-new (similar term)|spic-and-span (similar term)|spick-and-span (similar term)|fresh (similar term)|hot (similar term)|red-hot (similar term)|newborn (similar term)|new-sprung (similar term)|newfound (similar term)|novel (similar term)|refreshing (similar term)|parvenu (similar term)|parvenue (similar term)|recent (similar term)|revolutionary (similar term)|radical (similar term)|rising (similar term)|sunrise (similar term)|untested (similar term)|untried (similar term)|unused (similar term)|virgin (similar term)|young (similar term)|current (related term)|fresh (related term)|modern (related term)|old (antonym)
+(adj)|other (similar term)
+(adj)|unexampled|unprecedented (similar term)
+(adj)|fresh|novel|original (similar term)
+(adj)|raw|inexperienced (similar term)|inexperient (similar term)
+(adj)|newfangled|original (similar term)
+(adj)|unaccustomed (similar term)
+(adj)|young|early (similar term)
+(adj)|unweathered (similar term)|worn (antonym)
+(adj)|New|late (similar term)
+(adj)|Modern|New|late (similar term)
+(adv)|recently|newly|freshly|fresh
+new-made|1
+(adj)|fresh (similar term)
+new-mown|1
+(adj)|mown (similar term)|cut (similar term)
+new-sprung|1
+(adj)|newborn|new (similar term)
+new amsterdam|1
+(noun)|New Amsterdam|colony (generic term)|settlement (generic term)
+new ballgame|1
+(noun)|ballgame|situation (generic term)|state of affairs (generic term)
+new britain|1
+(noun)|New Britain|island (generic term)
+new brunswick|2
+(noun)|New Brunswick|town (generic term)
+(noun)|New Brunswick|Canadian province (generic term)
+new caledonia|1
+(noun)|New Caledonia|island (generic term)
+new caledonian|1
+(adj)|New Caledonian|island (related term)
+new caledonian pine|1
+(noun)|Araucaria columnaris|araucaria (generic term)
+new caledonian yew|1
+(noun)|New Caledonian yew|Austrotaxus spicata|yew (generic term)
+new criticism|1
+(noun)|criticism (generic term)|literary criticism (generic term)
+new deal|3
+(noun)|New Deal|economic policy (generic term)
+(noun)|New Deal|historic period (generic term)|age (generic term)
+(noun)|deal (generic term)
+new dealer|1
+(noun)|New Dealer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+new delhi|1
+(noun)|New Delhi|Indian capital|capital of India|national capital (generic term)
+new edition|1
+(noun)|publication (generic term)
+new england|1
+(noun)|New England|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+new england aster|1
+(noun)|New England aster|Aster novae-angliae|aster (generic term)
+new england boiled dinner|1
+(noun)|boiled dinner|New England boiled dinner|dish (generic term)
+new england clam chowder|1
+(noun)|New England clam chowder|clam chowder (generic term)
+new englander|1
+(noun)|New Englander|Yankee|American (generic term)
+new english bible|1
+(noun)|New English Bible|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+new flower|1
+(noun)|Addis Ababa|New Flower|capital of Ethiopia|national capital (generic term)
+new forest|1
+(noun)|New Forest|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+new greek|1
+(noun)|Modern Greek|New Greek|Greek (generic term)|Hellenic (generic term)|Hellenic language (generic term)
+new guinea|1
+(noun)|New Guinea|Papua|island (generic term)
+new hampshire|2
+(noun)|New Hampshire|Granite State|NH|American state (generic term)
+(noun)|New Hampshire|Colony (generic term)
+new hampshirite|1
+(noun)|New Hampshirite|Granite Stater|American (generic term)
+new haven|1
+(noun)|New Haven|city (generic term)|metropolis (generic term)|urban center (generic term)
+new hebrides|1
+(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country (generic term)|state (generic term)|land (generic term)
+new ireland|1
+(noun)|New Ireland|island (generic term)
+new jazz|1
+(noun)|modern jazz|neo jazz|jazz (generic term)
+new jersey|2
+(noun)|New Jersey|Jersey|Garden State|NJ|American state (generic term)
+(noun)|New Jersey|Colony (generic term)
+new jerseyan|1
+(noun)|New Jerseyan|New Jerseyite|Garden Stater|American (generic term)
+new jerseyite|1
+(noun)|New Jerseyan|New Jerseyite|Garden Stater|American (generic term)
+new latin|1
+(noun)|Neo-Latin|New Latin|Latin (generic term)
+new line|1
+(noun)|printing operation (generic term)
+new london|1
+(noun)|New London|town (generic term)
+new look|1
+(noun)|New Look|vogue (generic term)|trend (generic term)|style (generic term)
+new mexican|1
+(noun)|New Mexican|American (generic term)
+new mexico|1
+(noun)|New Mexico|Land of Enchantment|NM|American state (generic term)
+new moon|1
+(noun)|new phase of the moon|phase of the moon (generic term)
+new netherland|1
+(noun)|New Netherland|colony (generic term)|dependency (generic term)
+new norwegian|1
+(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian (generic term)
+new orleans|1
+(noun)|New Orleans|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+new penny|1
+(noun)|penny (generic term)|cent (generic term)|centime (generic term)
+new people's army|1
+(noun)|New People's Army|NPA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+new phase of the moon|1
+(noun)|new moon|phase of the moon (generic term)
+new river|1
+(noun)|New River|river (generic term)
+new river gorge bridge|1
+(noun)|New River Gorge Bridge|steel arch bridge (generic term)
+new scotland yard|1
+(noun)|Scotland Yard|New Scotland Yard|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+new siberian islands|1
+(noun)|New Siberian Islands|island (generic term)
+new south wales|1
+(noun)|New South Wales|Australian state (generic term)
+new stone age|1
+(noun)|Neolithic Age|Neolithic|New Stone Age|time period (generic term)|period of time (generic term)|period (generic term)
+new style calendar|1
+(noun)|Gregorian calendar|New Style calendar|solar calendar (generic term)
+new testament|1
+(noun)|New Testament|will (generic term)|testament (generic term)
+new town|1
+(noun)|urban area (generic term)|populated area (generic term)
+new wave|2
+(noun)|New Wave|Nouvelle Vague|artistic movement (generic term)|art movement (generic term)
+(noun)|avant-garde|vanguard|van|artistic movement (generic term)|art movement (generic term)
+new waver|1
+(noun)|New Waver|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+new world|2
+(adj)|New World|hemisphere (related term)
+(noun)|western hemisphere|occident|New World|hemisphere (generic term)
+new world anteater|1
+(noun)|anteater|New World anteater|edentate (generic term)
+new world beaver|1
+(noun)|New World beaver|Castor canadensis|beaver (generic term)
+new world blackbird|1
+(noun)|New World blackbird|blackbird|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+new world chat|1
+(noun)|New World chat|chat|New World warbler (generic term)|wood warbler (generic term)
+new world coral snake|1
+(noun)|coral snake|harlequin-snake|New World coral snake|elapid (generic term)|elapid snake (generic term)
+new world flycatcher|1
+(noun)|New World flycatcher|flycatcher|tyrant flycatcher|tyrant bird|tyrannid (generic term)
+new world goldfinch|1
+(noun)|New world goldfinch|goldfinch|yellowbird|Spinus tristis|finch (generic term)
+new world jay|1
+(noun)|New World jay|jay (generic term)
+new world least weasel|1
+(noun)|New World least weasel|Mustela rixosa|weasel (generic term)
+new world leishmaniasis|1
+(noun)|mucocutaneous leishmaniasis|New World leishmaniasis|American leishmaniasis|leishmaniasis americana|nasopharyngeal leishmaniasis|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+new world monkey|1
+(noun)|New World monkey|platyrrhine|platyrrhinian|monkey (generic term)
+new world mouse|1
+(noun)|New World mouse|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+new world opah|1
+(noun)|New World opah|Lampris guttatus|soft-finned fish (generic term)|malacopterygian (generic term)
+new world oriole|1
+(noun)|New World oriole|American oriole|oriole|oscine (generic term)|oscine bird (generic term)
+new world porcupine|1
+(noun)|New World porcupine|porcupine (generic term)|hedgehog (generic term)
+new world sparrow|1
+(noun)|New World sparrow|finch (generic term)
+new world tapir|1
+(noun)|New World tapir|Tapirus terrestris|tapir (generic term)
+new world vulture|1
+(noun)|New World vulture|cathartid|vulture (generic term)
+new world warbler|1
+(noun)|New World warbler|wood warbler|warbler (generic term)
+new year|1
+(noun)|New Year|year (generic term)|twelvemonth (generic term)|yr (generic term)
+new year's|1
+(noun)|New Year's Day|New Year's|January 1|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+new year's day|1
+(noun)|New Year's Day|New Year's|January 1|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+new year's eve|1
+(noun)|New Year's Eve|December 31|day (generic term)
+new york|3
+(noun)|New York|New York City|Greater New York|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|New York|New York State|Empire State|NY|American state (generic term)
+(noun)|New York|Colony (generic term)
+new york aster|1
+(noun)|Michaelmas daisy|New York aster|Aster novi-belgii|aster (generic term)
+new york bay|1
+(noun)|New York Bay|bay (generic term)|embayment (generic term)
+new york city|1
+(noun)|New York|New York City|Greater New York|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+new york fern|1
+(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern (generic term)
+new york minute|1
+(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+new york state|1
+(noun)|New York|New York State|Empire State|NY|American state (generic term)
+new york state barge canal|1
+(noun)|New York State Barge Canal|canal (generic term)
+new york stock exchange|1
+(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+new york strip|1
+(noun)|strip steak|New York strip|beefsteak (generic term)
+new yorker|1
+(noun)|New Yorker|American (generic term)
+new zealand|2
+(noun)|New Zealand|country (generic term)|state (generic term)|land (generic term)
+(noun)|New Zealand|New Zealand Islands|island (generic term)
+new zealand beech|1
+(noun)|New Zealand beech|southern beech (generic term)|evergreen beech (generic term)
+new zealand cotton|1
+(noun)|New Zealand cotton|natural fiber (generic term)|natural fibre (generic term)
+new zealand dacryberry|1
+(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer (generic term)|coniferous tree (generic term)
+new zealand daisybush|1
+(noun)|New Zealand daisybush|Olearia haastii|daisybush (generic term)|daisy-bush (generic term)|daisy bush (generic term)
+new zealand dollar|1
+(noun)|New Zealand dollar|dollar (generic term)
+new zealand honeysuckle|1
+(noun)|rewa-rewa|New Zealand honeysuckle|angiospermous tree (generic term)|flowering tree (generic term)
+new zealand islands|1
+(noun)|New Zealand|New Zealand Islands|island (generic term)
+new zealand mountain pine|1
+(noun)|tarwood|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer (generic term)|coniferous tree (generic term)
+new zealand spinach|1
+(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb (generic term)|herbaceous plant (generic term)
+new zealand white pine|1
+(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer (generic term)|coniferous tree (generic term)
+new zealand wine berry|1
+(noun)|makomako|New Zealand wine berry|wineberry|Aristotelia serrata|Aristotelia racemosa|shrub (generic term)|bush (generic term)
+new zealand wren|1
+(noun)|New Zealand wren|oscine (generic term)|oscine bird (generic term)
+new zealander|2
+(adj)|New Zealander|island (related term)
+(noun)|New Zealander|Kiwi|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+newari|1
+(noun)|Newari|Himalayish (generic term)
+newark|1
+(noun)|Newark|city (generic term)|metropolis (generic term)|urban center (generic term)
+newbie|1
+(noun)|newcomer|fledgling|fledgeling|starter|neophyte|freshman|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+newborn|3
+(adj)|young (similar term)|immature (similar term)
+(adj)|new-sprung|new (similar term)
+(noun)|neonate|newborn infant|newborn baby|baby (generic term)|babe (generic term)|infant (generic term)
+newborn baby|1
+(noun)|neonate|newborn|newborn infant|baby (generic term)|babe (generic term)|infant (generic term)
+newborn infant|1
+(noun)|neonate|newborn|newborn baby|baby (generic term)|babe (generic term)|infant (generic term)
+newburg sauce|1
+(noun)|Newburg sauce|sauce (generic term)
+newburgh|1
+(noun)|Newburgh|town (generic term)
+newcastle|1
+(noun)|Newcastle|Newcastle-upon-Tyne|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+newcastle-upon-tyne|1
+(noun)|Newcastle|Newcastle-upon-Tyne|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+newcastle disease|1
+(noun)|Newcastle disease|animal disease (generic term)
+newcomb|1
+(noun)|Newcomb|Simon Newcomb|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+newcomer|2
+(noun)|fledgling|fledgeling|starter|neophyte|freshman|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|arrival (generic term)|arriver (generic term)|comer (generic term)
+newel|2
+(noun)|newel post|post (generic term)
+(noun)|column (generic term)|pillar (generic term)
+newel post|1
+(noun)|newel|post (generic term)
+newfangled|1
+(adj)|new|original (similar term)
+newfound|1
+(adj)|new (similar term)
+newfoundland|2
+(noun)|Newfoundland|Newfoundland dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(noun)|Newfoundland|island (generic term)
+newfoundland and labrador|1
+(noun)|Newfoundland and Labrador|Canadian province (generic term)
+newfoundland dog|1
+(noun)|Newfoundland|Newfoundland dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+newfoundland dwarf birch|1
+(noun)|Newfoundland dwarf birch|American dwarf birch|Betula glandulosa|birch (generic term)|birch tree (generic term)
+newgate|1
+(noun)|Newgate|prison (generic term)|prison house (generic term)
+newly|1
+(adv)|recently|freshly|fresh|new
+newlywed|1
+(noun)|honeymooner|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+newman|2
+(noun)|Newman|Paul Newman|Paul Leonard Newman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Newman|John Henry Newman|Cardinal Newman|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+newmarket|2
+(noun)|coat (generic term)
+(noun)|Michigan|Chicago|Newmarket|boodle|stops|card game (generic term)|cards (generic term)
+newness|1
+(noun)|age (generic term)|oldness (antonym)
+newport|2
+(noun)|Newport|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Newport|city (generic term)|metropolis (generic term)|urban center (generic term)
+newport news|1
+(noun)|Newport News|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+news|4
+(noun)|intelligence|tidings|word|information (generic term)|info (generic term)
+(noun)|news program|news show|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|information (generic term)|info (generic term)
+(noun)|newsworthiness|interest (generic term)|interestingness (generic term)
+news agency|1
+(noun)|press agency|wire service|press association|news organization|news organisation|agency (generic term)
+news article|1
+(noun)|news story|newspaper article|article (generic term)
+news bulletin|1
+(noun)|newsflash|flash|newsbreak|bulletin (generic term)
+news conference|1
+(noun)|press conference|conference (generic term)|group discussion (generic term)
+news event|1
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+news item|1
+(noun)|item (generic term)|point (generic term)
+news leak|1
+(noun)|leak|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+news media|1
+(noun)|journalism|fourth estate|print media (generic term)
+news organisation|1
+(noun)|news agency|press agency|wire service|press association|news organization|agency (generic term)
+news organization|1
+(noun)|news agency|press agency|wire service|press association|news organisation|agency (generic term)
+news photography|1
+(noun)|photojournalism (generic term)
+news program|1
+(noun)|news show|news|broadcast (generic term)|program (generic term)|programme (generic term)
+news reader|1
+(noun)|newsreader|newscaster (generic term)
+news report|1
+(noun)|report|story|account|write up|news (generic term)
+news show|1
+(noun)|news program|news|broadcast (generic term)|program (generic term)|programme (generic term)
+news story|1
+(noun)|news article|newspaper article|article (generic term)
+newsagent|1
+(noun)|newsdealer|newsvendor|newsstand operator|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+newsboy|1
+(noun)|carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+newsbreak|1
+(noun)|news bulletin|newsflash|flash|bulletin (generic term)
+newscast|1
+(noun)|news (generic term)|broadcast (generic term)
+newscaster|1
+(noun)|announcer (generic term)
+newsdealer|1
+(noun)|newsagent|newsvendor|newsstand operator|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+newsflash|1
+(noun)|news bulletin|flash|newsbreak|bulletin (generic term)
+newsless|2
+(adj)|uninformed (similar term)
+(adj)|uninformative (similar term)
+newsletter|1
+(noun)|newssheet|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+newsman|1
+(noun)|reporter|newsperson|communicator (generic term)
+newsmonger|1
+(noun)|gossip|gossiper|gossipmonger|rumormonger|rumourmonger|communicator (generic term)
+newspaper|4
+(noun)|paper|press (generic term)|public press (generic term)
+(noun)|paper|newspaper publisher|publisher (generic term)|publishing house (generic term)|publishing firm (generic term)|publishing company (generic term)
+(noun)|paper|product (generic term)|production (generic term)
+(noun)|newsprint|paper (generic term)
+newspaper ad|1
+(noun)|newspaper advertisement|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+newspaper advertisement|1
+(noun)|newspaper ad|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+newspaper article|1
+(noun)|news article|news story|article (generic term)
+newspaper clipping|1
+(noun)|clipping|press clipping|cutting|press cutting|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+newspaper column|1
+(noun)|column|editorial|article (generic term)
+newspaper columnist|1
+(noun)|columnist (generic term)|editorialist (generic term)
+newspaper critic|1
+(noun)|critic (generic term)|newspaper columnist (generic term)
+newspaper editor|1
+(noun)|editor (generic term)|editor in chief (generic term)
+newspaper headline|1
+(noun)|headline|heading (generic term)|header (generic term)|head (generic term)
+newspaper publisher|2
+(noun)|publisher|owner (generic term)|proprietor (generic term)
+(noun)|newspaper|paper|publisher (generic term)|publishing house (generic term)|publishing firm (generic term)|publishing company (generic term)
+newspapering|1
+(noun)|journalism (generic term)
+newspaperman|1
+(noun)|correspondent|newspaperwoman|newswriter|pressman|journalist (generic term)
+newspaperwoman|1
+(noun)|correspondent|newspaperman|newswriter|pressman|journalist (generic term)
+newspeak|1
+(noun)|fabrication (generic term)|manufacture (generic term)
+newsperson|1
+(noun)|reporter|newsman|communicator (generic term)
+newsprint|1
+(noun)|newspaper|paper (generic term)
+newsreader|1
+(noun)|news reader|newscaster (generic term)
+newsreel|1
+(noun)|short subject (generic term)
+newsroom|3
+(noun)|staff (generic term)
+(noun)|office (generic term)|business office (generic term)
+(noun)|reading room (generic term)
+newssheet|1
+(noun)|newsletter|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+newsstand|1
+(noun)|stall (generic term)|stand (generic term)|sales booth (generic term)
+newsstand operator|1
+(noun)|newsagent|newsdealer|newsvendor|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+newsvendor|1
+(noun)|newsagent|newsdealer|newsstand operator|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+newswoman|1
+(noun)|reporter (generic term)|newsman (generic term)|newsperson (generic term)
+newsworthiness|1
+(noun)|news|interest (generic term)|interestingness (generic term)
+newsworthy|1
+(adj)|interesting (similar term)
+newswriter|1
+(noun)|correspondent|newspaperman|newspaperwoman|pressman|journalist (generic term)
+newsy|2
+(adj)|informative (similar term)|informatory (similar term)
+(adj)|chatty|gossipy|communicative (similar term)|communicatory (similar term)
+newt|1
+(noun)|triton|salamander (generic term)
+newton|2
+(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician (generic term)|physicist (generic term)
+(noun)|N|force unit (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+newton's law|1
+(noun)|Newton's law of motion|Newton's law|law of motion|law (generic term)|law of nature (generic term)
+newton's law of gravitation|1
+(noun)|law of gravitation|Newton's law of gravitation|law (generic term)|law of nature (generic term)
+newton's law of motion|1
+(noun)|Newton's law of motion|Newton's law|law of motion|law (generic term)|law of nature (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+newton's theory of gravitation|1
+(noun)|theory of gravitation|theory of gravity|gravitational theory|Newton's theory of gravitation|scientific theory (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+newtonian|2
+(adj)|Newtonian|mathematician|physicist (related term)
+(noun)|Newtonian|follower (generic term)
+newtonian mechanics|1
+(noun)|classical mechanics|Newtonian mechanics|mechanics (generic term)
+newtonian reflector|1
+(noun)|Newtonian telescope|Newtonian reflector|reflecting telescope (generic term)|reflector (generic term)
+newtonian telescope|1
+(noun)|Newtonian telescope|Newtonian reflector|reflecting telescope (generic term)|reflector (generic term)
+newtown wonder|1
+(noun)|Newtown Wonder|cooking apple (generic term)
+next|3
+(adj)|adjacent|side by side|close (similar term)
+(adj)|future|succeeding|incoming (similar term)
+(adj)|following|succeeding (similar term)
+next-to-last|2
+(adj)|penultimate|last (similar term)
+(adj)|junior|third-year|intermediate (similar term)
+next door|1
+(adv)|in the adjacent house|in the adjacent apartment
+next friend|1
+(noun)|agent (generic term)
+next of kin|1
+(noun)|relative (generic term)|relation (generic term)
+nexus|2
+(noun)|link|linkage (generic term)
+(noun)|series (generic term)
+ney|1
+(noun)|Ney|Michel Ney|Duc d'Elchingen|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+nez perce|2
+(noun)|Nez Perce|Shahaptian (generic term)|Sahaptin (generic term)|Sahaptino (generic term)
+(noun)|Nez Perce|Shahaptian (generic term)|Sahaptin (generic term)
+ng|1
+(noun)|nanogram|metric weight unit (generic term)|weight unit (generic term)
+nga|1
+(noun)|National Geospatial-Intelligence Agency|NGA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ngaio marsh|1
+(noun)|Marsh|Ngaio Marsh|writer (generic term)|author (generic term)
+nganasan|2
+(noun)|Nganasan|Russian (generic term)
+(noun)|Nganasan|Samoyedic (generic term)|Samoyed (generic term)
+ngb|1
+(noun)|National Guard Bureau|NGB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ngf|1
+(noun)|nerve growth factor|NGF|growth factor (generic term)
+ngo|1
+(noun)|nongovernmental organization|NGO|organization (generic term)|organisation (generic term)
+ngu|1
+(noun)|nongonococcal urethritis|NGU|urethritis (generic term)
+ngultrum|1
+(noun)|Bhutanese monetary unit (generic term)
+nguni|1
+(noun)|Nguni|Bantu (generic term)|Bantoid language (generic term)
+nguyen tat thanh|1
+(noun)|Ho Chi Minh|Nguyen Tat Thanh|statesman (generic term)|solon (generic term)|national leader (generic term)
+ngwee|1
+(noun)|Zambian monetary unit (generic term)
+nh|1
+(noun)|New Hampshire|Granite State|NH|American state (generic term)
+ni|1
+(noun)|nickel|Ni|atomic number 28|metallic element (generic term)|metal (generic term)
+ni-hard|1
+(noun)|Ni-hard|Ni-hard iron|alloy iron (generic term)|alloy cast iron (generic term)
+ni-hard iron|1
+(noun)|Ni-hard|Ni-hard iron|alloy iron (generic term)|alloy cast iron (generic term)
+ni-resist|1
+(noun)|Ni-resist|Ni-resist iron|alloy iron (generic term)|alloy cast iron (generic term)
+ni-resist iron|1
+(noun)|Ni-resist|Ni-resist iron|alloy iron (generic term)|alloy cast iron (generic term)
+niacin|1
+(noun)|nicotinic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+niagara|2
+(noun)|Niagara|Niagara Falls|waterfall (generic term)|falls (generic term)
+(noun)|Niagara|Niagara River|river (generic term)
+niagara falls|2
+(noun)|Niagara|Niagara Falls|waterfall (generic term)|falls (generic term)
+(noun)|Niagara Falls|city (generic term)|metropolis (generic term)|urban center (generic term)
+niagara river|1
+(noun)|Niagara|Niagara River|river (generic term)
+niamey|1
+(noun)|Niamey|capital of Niger|national capital (generic term)
+nib|2
+(noun)|pen nib|point (generic term)
+(noun)|beak|bill|neb|pecker|mouth (generic term)
+nibbed|1
+(adj)|pointed (similar term)
+nibble|4
+(noun)|nybble|computer memory unit (generic term)
+(noun)|bite (generic term)|chomp (generic term)
+(verb)|bite (generic term)|seize with teeth (generic term)
+(verb)|pick|piece|eat (generic term)
+nibbler|1
+(noun)|biter (generic term)
+nibelung|2
+(noun)|Nibelung|mythical being (generic term)
+(noun)|Nibelung|gnome (generic term)|dwarf (generic term)
+nibelungenlied|1
+(noun)|Nibelungenlied|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+niblick|1
+(noun)|nine iron|iron (generic term)
+nicad|1
+(noun)|nickel-cadmium accumulator|storage battery (generic term)|accumulator (generic term)
+nicaea|3
+(noun)|Nicaea|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Nicaea|Second Council of Nicaea|ecumenical council (generic term)
+(noun)|Nicaea|First Council of Nicaea|ecumenical council (generic term)
+nicaean|1
+(adj)|Nicaean|Nicene|city|metropolis|urban center (related term)
+nicandra|1
+(noun)|Nicandra|genus Nicandra|asterid dicot genus (generic term)
+nicandra physaloides|1
+(noun)|apple of Peru|shoo fly|Nicandra physaloides|herb (generic term)|herbaceous plant (generic term)
+nicaragua|1
+(noun)|Nicaragua|Republic of Nicaragua|Central American country (generic term)|Central American nation (generic term)
+nicaraguan|2
+(adj)|Nicaraguan|Central American country|Central American nation (related term)
+(noun)|Nicaraguan|Central American (generic term)
+nicaraguan capital|1
+(noun)|Managua|capital of Nicaragua|Nicaraguan capital|national capital (generic term)
+nicaraguan monetary unit|1
+(noun)|Nicaraguan monetary unit|monetary unit (generic term)
+niccolo machiavelli|1
+(noun)|Machiavelli|Niccolo Machiavelli|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+niccolo paganini|1
+(noun)|Paganini|Niccolo Paganini|violinist (generic term)|fiddler (generic term)
+nice|7
+(adj)|good (similar term)|pleasant (similar term)|pleasant (related term)|nasty (antonym)
+(adj)|decent|respectable (similar term)
+(adj)|skillful|precise (similar term)
+(adj)|dainty|overnice|prissy|squeamish|fastidious (similar term)
+(adj)|discriminate|discriminating (similar term)
+(adj)|courteous|gracious|polite (similar term)
+(noun)|Nice|city (generic term)|metropolis (generic term)|urban center (generic term)
+nicene|1
+(adj)|Nicaean|Nicene|city|metropolis|urban center (related term)
+nicene creed|1
+(noun)|Nicene Creed|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+niceness|3
+(noun)|politeness|courtesy (generic term)|good manners (generic term)|impoliteness (antonym)
+(noun)|pleasantness (generic term)|sweetness (generic term)|nastiness (antonym)
+(noun)|subtlety|difficulty (generic term)|difficultness (generic term)
+nicety|2
+(noun)|justness|rightness|conformity (generic term)|conformance (generic term)
+(noun)|nuance|shade|subtlety|refinement|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+niche|4
+(noun)|place (generic term)|station (generic term)
+(noun)|recess|recession|corner|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|recess|enclosure (generic term)
+(noun)|ecological niche|condition (generic term)|status (generic term)
+nicholas|1
+(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop (generic term)|saint (generic term)
+nicholas i|1
+(noun)|Nicholas I|Czar Nicholas I|czar (generic term)|tsar (generic term)|tzar (generic term)
+nicholas ii|1
+(noun)|Nicholas II|czar (generic term)|tsar (generic term)|tzar (generic term)
+nicholas v|1
+(noun)|Nicholas V|Tomasso Parentucelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+nicholas vachel lindsay|1
+(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet (generic term)
+nichrome|1
+(noun)|Nichrome|nickel-base alloy (generic term)|nickel alloy (generic term)
+nick|7
+(noun)|dent|ding|gouge|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|prison (generic term)|prison house (generic term)
+(noun)|notch|snick|cut (generic term)|cutting (generic term)
+(verb)|snick|cut (generic term)
+(verb)|chip|cut (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+nickel|4
+(noun)|Ni|atomic number 28|metallic element (generic term)|metal (generic term)
+(noun)|coin (generic term)
+(noun)|nickel note|fiver (generic term)|five-spot (generic term)|five dollar bill (generic term)
+(verb)|plate (generic term)
+nickel-and-dime|4
+(adj)|small-time|unimportant (similar term)
+(adj)|cheap (similar term)|inexpensive (similar term)
+(verb)|penny-pinch|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|scrape (generic term)|scrape up (generic term)|scratch (generic term)|come up (generic term)
+nickel-base alloy|1
+(noun)|nickel alloy|alloy (generic term)|metal (generic term)
+nickel-cadmium accumulator|1
+(noun)|nicad|storage battery (generic term)|accumulator (generic term)
+nickel-iron accumulator|1
+(noun)|nickel-iron battery|storage battery (generic term)|accumulator (generic term)
+nickel-iron battery|1
+(noun)|nickel-iron accumulator|storage battery (generic term)|accumulator (generic term)
+nickel alloy|1
+(noun)|nickel-base alloy|alloy (generic term)|metal (generic term)
+nickel bronze|1
+(noun)|bronze (generic term)
+nickel note|1
+(noun)|nickel|fiver (generic term)|five-spot (generic term)|five dollar bill (generic term)
+nickel silver|1
+(noun)|German silver|alloy (generic term)|metal (generic term)
+nickel steel|1
+(noun)|alloy steel (generic term)
+nickelodeon|1
+(noun)|jukebox|record player (generic term)|phonograph (generic term)
+nicker|2
+(noun)|neigh|whicker|whinny|cry (generic term)
+(verb)|neigh|whicker|whinny|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+nicker nut|1
+(noun)|bonduc nut|nicker seed|seed (generic term)
+nicker seed|1
+(noun)|bonduc nut|nicker nut|seed (generic term)
+nicklaus|1
+(noun)|Nicklaus|Jack Nicklaus|Jack William Nicklaus|golfer (generic term)|golf player (generic term)|linksman (generic term)
+nicknack|1
+(noun)|bric-a-brac|knickknack|knickknackery|whatnot|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+nickname|3
+(noun)|moniker|cognomen|sobriquet|soubriquet|byname|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+(noun)|name (generic term)
+(verb)|dub|name (generic term)|call (generic term)
+nicol prism|1
+(noun)|Nicol prism|optical device (generic term)
+nicola amati|1
+(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker (generic term)
+nicola sacco|1
+(noun)|Sacco|Nicola Sacco|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+nicolas de malebranche|1
+(noun)|Malebranche|Nicolas de Malebranche|philosopher (generic term)
+nicolas leonard sadi carnot|1
+(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist (generic term)
+nicolas poussin|1
+(noun)|Poussin|Nicolas Poussin|old master (generic term)
+nicolaus copernicus|1
+(noun)|Copernicus|Nicolaus Copernicus|Mikolaj Kopernik|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+nicolo amati|1
+(noun)|Amati|Nicolo Amati|Nicola Amati|violin maker (generic term)
+nicolson|1
+(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+nicosia|1
+(noun)|Nicosia|capital of Cyprus|national capital (generic term)
+nicotiana|1
+(noun)|Nicotiana|genus Nicotiana|asterid dicot genus (generic term)
+nicotiana alata|1
+(noun)|flowering tobacco|Jasmine tobacco|Nicotiana alata|tobacco (generic term)|tobacco plant (generic term)
+nicotiana glauca|1
+(noun)|tree tobacco|mustard tree|Nicotiana glauca|tobacco (generic term)|tobacco plant (generic term)
+nicotiana rustica|1
+(noun)|wild tobacco|Indian tobacco|Nicotiana rustica|tobacco (generic term)|tobacco plant (generic term)
+nicotiana tabacum|1
+(noun)|common tobacco|Nicotiana tabacum|tobacco (generic term)|tobacco plant (generic term)
+nicotinamide adenine dinucleotide|1
+(noun)|NAD|coenzyme (generic term)
+nicotinamide adenine dinucleotide phosphate|1
+(noun)|NADP|coenzyme (generic term)
+nicotine|1
+(noun)|plant toxin (generic term)|phytotoxin (generic term)|alkaloid (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+nicotine addiction|1
+(noun)|drug addiction (generic term)|white plague (generic term)
+nicotine poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+nicotinic acid|1
+(noun)|niacin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+nictate|1
+(verb)|blink|wink|nictitate|act involuntarily (generic term)|act reflexively (generic term)
+nictation|1
+(noun)|blink|eye blink|blinking|wink|winking|nictitation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+nictitate|1
+(verb)|blink|wink|nictate|act involuntarily (generic term)|act reflexively (generic term)
+nictitating membrane|1
+(noun)|third eyelid|protective fold (generic term)
+nictitation|1
+(noun)|blink|eye blink|blinking|wink|winking|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+nicu|1
+(noun)|neonatal intensive care unit|NICU|intensive care unit (generic term)|ICU (generic term)
+nidaros|1
+(noun)|Trondheim|Nidaros|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+nidation|1
+(noun)|implantation|organic process (generic term)|biological process (generic term)
+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 (generic term)|DM (generic term)
+nidicolous|1
+(adj)|nidifugous (antonym)
+nidifugous|1
+(adj)|nidicolous (antonym)
+nidularia|1
+(noun)|Nidularia|genus Nidularia|fungus genus (generic term)
+nidulariaceae|1
+(noun)|Nidulariaceae|family Nidulariaceae|fungus family (generic term)
+nidulariales|1
+(noun)|Nidulariales|order Nidulariales|fungus order (generic term)
+nidus|2
+(noun)|focus|focal point|point (generic term)
+(noun)|nest (generic term)
+niebuhr|2
+(noun)|Niebuhr|Reinhold Niebuhr|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+(noun)|Niebuhr|Barthold George Niebuhr|historian (generic term)|historiographer (generic term)
+niece|1
+(noun)|kinswoman (generic term)|nephew (antonym)
+niels abel|1
+(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician (generic term)
+niels bohr|1
+(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist (generic term)
+niels henrik abel|1
+(noun)|Abel|Niels Abel|Niels Henrik Abel|mathematician (generic term)
+niels henrik david bohr|1
+(noun)|Bohr|Niels Bohr|Niels Henrik David Bohr|nuclear physicist (generic term)
+nielson|1
+(noun)|Nielson|Carl Nielson|Carl August Nielson|composer (generic term)
+niemann-pick disease|1
+(noun)|Niemann-Pick disease|inborn error of metabolism (generic term)|lipidosis (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)
+nierembergia|1
+(noun)|cupflower|herb (generic term)|herbaceous plant (generic term)
+nierembergia frutescens|1
+(noun)|tall cupflower|Nierembergia frutescens|cupflower (generic term)|nierembergia (generic term)
+nierembergia repens|1
+(noun)|whitecup|Nierembergia repens|Nierembergia rivularis|cupflower (generic term)|nierembergia (generic term)
+nierembergia rivularis|1
+(noun)|whitecup|Nierembergia repens|Nierembergia rivularis|cupflower (generic term)|nierembergia (generic term)
+nietzsche|1
+(noun)|Nietzsche|Friedrich Wilhelm Nietzsche|philosopher (generic term)
+nifedipine|1
+(noun)|Procardia|calcium blocker (generic term)|calcium-channel blocker (generic term)
+niff|1
+(noun)|pong|malodor (generic term)|malodour (generic term)|stench (generic term)|stink (generic term)|reek (generic term)|fetor (generic term)|foetor (generic term)|mephitis (generic term)
+niffy|1
+(adj)|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+nifty|1
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|not bad|peachy|slap-up|swell|smashing|good (similar term)
+nigella|1
+(noun)|flower (generic term)
+nigella damascena|1
+(noun)|love-in-a-mist|Nigella damascena|nigella (generic term)
+nigella hispanica|1
+(noun)|fennel flower|Nigella hispanica|nigella (generic term)
+nigella sativa|1
+(noun)|black caraway|nutmeg flower|Roman coriander|Nigella sativa|nigella (generic term)
+niger|2
+(noun)|Niger|Niger River|river (generic term)
+(noun)|Niger|Republic of Niger|African country (generic term)|African nation (generic term)
+niger-congo|1
+(noun)|Niger-Congo|Niger-Kordofanian (generic term)|Niger-Kordofanian language (generic term)
+niger-kordofanian|1
+(noun)|Niger-Kordofanian|Niger-Kordofanian language|natural language (generic term)|tongue (generic term)
+niger-kordofanian language|1
+(noun)|Niger-Kordofanian|Niger-Kordofanian language|natural language (generic term)|tongue (generic term)
+niger franc|1
+(noun)|Niger franc|franc (generic term)
+niger river|1
+(noun)|Niger|Niger River|river (generic term)
+nigeria|1
+(noun)|Nigeria|Federal Republic of Nigeria|African country (generic term)|African nation (generic term)
+nigerian|3
+(adj)|Nigerian|African country|African nation (related term)
+(adj)|Nigerian|Nigerien|African (related term)
+(noun)|Nigerian|African (generic term)
+nigerian capital|1
+(noun)|Abuja|capital of Nigeria|Nigerian capital|national capital (generic term)
+nigerian monetary unit|1
+(noun)|Nigerian monetary unit|monetary unit (generic term)
+nigerien|2
+(adj)|Nigerian|Nigerien|African (related term)
+(noun)|Nigerien|African (generic term)
+nigga|1
+(noun)|nigger|spade|coon|jigaboo|nigra|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+niggard|1
+(noun)|skinflint|scrooge|churl|hoarder (generic term)
+niggardliness|1
+(noun)|meanness|minginess|niggardness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess (generic term)
+niggardly|1
+(adj)|grudging|scrimy|stingy (similar term)|ungenerous (similar term)
+niggardness|1
+(noun)|meanness|minginess|niggardliness|parsimony|parsimoniousness|tightness|tightfistedness|closeness|stinginess (generic term)
+nigger|1
+(noun)|nigga|spade|coon|jigaboo|nigra|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+niggle|2
+(verb)|fuss|fret|worry (generic term)
+(verb)|quibble|pettifog|bicker|squabble|brabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+niggler|1
+(noun)|carper|critic (generic term)
+niggling|1
+(adj)|fiddling|footling|lilliputian|little|piddling|piffling|petty|picayune|trivial|unimportant (similar term)
+nigh|4
+(adj)|near|close|adjacent (similar term)|nearby (similar term)|neighboring (similar term)|neighbouring (similar term)|warm (similar term)|hot (similar term)|far (antonym)
+(adj)|near|left (similar term)
+(adv)|near|close
+(adv)|about|just about|almost|most|all but|nearly|near|virtually|well-nigh
+nigher|1
+(adv)|nearer|closer
+nighest|1
+(adv)|nearest|closest
+night|6
+(noun)|nighttime|dark|time period (generic term)|period of time (generic term)|period (generic term)|day (antonym)
+(noun)|time unit (generic term)|unit of time (generic term)
+(noun)|dark (generic term)|darkness (generic term)
+(noun)|twilight (generic term)|dusk (generic term)|gloaming (generic term)|gloam (generic term)|nightfall (generic term)|evenfall (generic term)|fall (generic term)|crepuscule (generic term)|crepuscle (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|Nox|Night|Roman deity (generic term)
+night-blooming cereus|1
+(noun)|cactus (generic term)
+night-light|1
+(noun)|light (generic term)|light source (generic term)
+night-line|1
+(noun)|fishing line (generic term)
+night-robe|1
+(noun)|nightgown|gown|nightie|nightdress|lingerie (generic term)|intimate apparel (generic term)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+night-sight|1
+(noun)|night vision|scotopic vision|twilight vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+night-stop|1
+(noun)|stop (generic term)|stopover (generic term)|layover (generic term)
+night bell|1
+(noun)|doorbell (generic term)|bell (generic term)|buzzer (generic term)
+night bird|1
+(noun)|bird (generic term)
+night blindness|1
+(noun)|nyctalopia|moon blindness|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|avitaminosis (generic term)|hypovitaminosis (generic term)
+night court|1
+(noun)|criminal court (generic term)
+night game|1
+(noun)|outdoor game (generic term)|day game (antonym)
+night heron|1
+(noun)|night raven|heron (generic term)
+night jasmine|1
+(noun)|night jessamine|Cestrum nocturnum|shrub (generic term)|bush (generic term)
+night jessamine|1
+(noun)|night jasmine|Cestrum nocturnum|shrub (generic term)|bush (generic term)
+night latch|1
+(noun)|doorlock (generic term)
+night letter|1
+(noun)|telegram (generic term)|wire (generic term)
+night life|2
+(noun)|nightlife|entertainment (generic term)|amusement (generic term)
+(noun)|nightlife|diversion (generic term)|recreation (generic term)
+night lizard|1
+(noun)|lizard (generic term)
+night owl|1
+(noun)|nighthawk|nightbird|individualist (generic term)
+night porter|1
+(noun)|doorkeeper (generic term)|doorman (generic term)|door guard (generic term)|hall porter (generic term)|porter (generic term)|gatekeeper (generic term)|ostiary (generic term)
+night raven|2
+(noun)|night heron|heron (generic term)
+(noun)|night bird (generic term)
+night rider|1
+(noun)|nightrider|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+night school|1
+(noun)|school (generic term)|day school (antonym)
+night shift|2
+(noun)|graveyard shift|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|graveyard shift|shift (generic term)
+night snake|1
+(noun)|Hypsiglena torquata|colubrid snake (generic term)|colubrid (generic term)
+night soil|1
+(noun)|manure (generic term)
+night terror|1
+(noun)|drama (generic term)|dramatic event (generic term)
+night vision|1
+(noun)|night-sight|scotopic vision|twilight vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+night watch|1
+(noun)|graveyard watch|middle watch|midwatch|watch (generic term)
+night watchman|1
+(noun)|watchman (generic term)|watcher (generic term)|security guard (generic term)
+nightbird|1
+(noun)|night owl|nighthawk|individualist (generic term)
+nightcap|3
+(noun)|drink (generic term)
+(noun)|cap (generic term)
+(noun)|game (generic term)
+nightclothes|1
+(noun)|nightwear|sleepwear|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+nightclub|1
+(noun)|cabaret|club|nightspot|spot (generic term)
+nightcrawler|1
+(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+nightdress|1
+(noun)|nightgown|gown|nightie|night-robe|lingerie (generic term)|intimate apparel (generic term)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+nighted|1
+(adj)|benighted|unpunctual (similar term)
+nightfall|1
+(noun)|twilight|dusk|gloaming|gloam|evenfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+nightgown|1
+(noun)|gown|nightie|night-robe|nightdress|lingerie (generic term)|intimate apparel (generic term)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+nighthawk|2
+(noun)|night owl|nightbird|individualist (generic term)
+(noun)|bullbat|mosquito hawk|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+nightie|1
+(noun)|nightgown|gown|night-robe|nightdress|lingerie (generic term)|intimate apparel (generic term)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+nightingale|2
+(noun)|Luscinia megarhynchos|thrush (generic term)
+(noun)|Nightingale|Florence Nightingale|Lady with the Lamp|nurse (generic term)
+nightjar|1
+(noun)|goatsucker|caprimulgid|caprimulgiform bird (generic term)
+nightlife|2
+(noun)|night life|entertainment (generic term)|amusement (generic term)
+(noun)|night life|diversion (generic term)|recreation (generic term)
+nightlong|1
+(adj)|all-night|overnight|long (similar term)
+nightly|2
+(adj)|regular (similar term)
+(adv)|every night
+nightmare|2
+(noun)|incubus|situation (generic term)
+(noun)|dream (generic term)|dreaming (generic term)
+nightmarish|1
+(adj)|bloodcurdling|hair-raising|alarming (similar term)
+nightrider|1
+(noun)|night rider|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+nightshade|1
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+nightshirt|1
+(noun)|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+nightspot|1
+(noun)|cabaret|nightclub|club|spot (generic term)
+nightstick|1
+(noun)|truncheon|baton|billy|billystick|billy club|club (generic term)
+nighttime|1
+(noun)|night|dark|time period (generic term)|period of time (generic term)|period (generic term)|day (antonym)
+nightwalker|1
+(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+nightwear|1
+(noun)|sleepwear|nightclothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+nightwork|1
+(noun)|work (generic term)
+nigra|1
+(noun)|nigger|nigga|spade|coon|jigaboo|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+nigrify|1
+(verb)|blacken|melanize|melanise|black|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|whiten (antonym)
+nigroporus|1
+(noun)|Nigroporus|genus Nigroporus|fungus genus (generic term)
+nigroporus vinosus|1
+(noun)|Nigroporus vinosus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+nih|1
+(noun)|National Institutes of Health|NIH|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nihau|1
+(noun)|Nihau|Nihau Island|island (generic term)
+nihau island|1
+(noun)|Nihau|Nihau Island|island (generic term)
+nihil|1
+(noun)|nothing (generic term)|nil (generic term)|nix (generic term)|nada (generic term)|null (generic term)|aught (generic term)|cipher (generic term)|cypher (generic term)|goose egg (generic term)|naught (generic term)|zero (generic term)|zilch (generic term)|zip (generic term)|zippo (generic term)
+nihil obstat|2
+(noun)|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+(noun)|sanction (generic term)
+nihilism|3
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|nihilistic delusion|delusion (generic term)|psychotic belief (generic term)
+(noun)|anarchy (generic term)|lawlessness (generic term)
+nihilist|2
+(noun)|nonreligious person (generic term)
+(noun)|anarchist|syndicalist|radical (generic term)
+nihilistic|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+nihilistic delusion|1
+(noun)|nihilism|delusion (generic term)|psychotic belief (generic term)
+nihility|1
+(noun)|nothingness|void|nullity|nonexistence (generic term)|nonentity (generic term)
+nihon|1
+(noun)|Japan|Nippon|Nihon|Asian country (generic term)|Asian nation (generic term)
+nij|1
+(noun)|National Institute of Justice|NIJ|law enforcement agency (generic term)
+nijinsky|1
+(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+nijmegen|1
+(noun)|Nijmegen|city (generic term)|metropolis (generic term)|urban center (generic term)
+nike|1
+(noun)|Nike|Greek deity (generic term)
+nikita khrushchev|1
+(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman (generic term)|solon (generic term)|national leader (generic term)
+nikita sergeyevich khrushchev|1
+(noun)|Khrushchev|Nikita Khrushchev|Nikita Sergeyevich Khrushchev|statesman (generic term)|solon (generic term)|national leader (generic term)
+nikola tesla|1
+(noun)|Tesla|Nikola Tesla|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+nikolaas tinbergen|1
+(noun)|Tinbergen|Nikolaas Tinbergen|zoologist (generic term)|animal scientist (generic term)
+nikolai andreyevich rimski-korsakov|1
+(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer (generic term)
+nikolai andreyevich rimsky-korsakov|1
+(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer (generic term)
+nikolai ivanovich bukharin|1
+(noun)|Bukharin|Nikolai Ivanovich Bukharin|Bolshevik (generic term)|Bolshevist (generic term)
+nikolai ivanovich lobachevsky|1
+(noun)|Lobachevsky|Nikolai Ivanovich Lobachevsky|mathematician (generic term)
+nikolai lenin|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+nikolai vasilievich gogol|1
+(noun)|Gogol|Nikolai Vasilievich Gogol|writer (generic term)|author (generic term)
+nil|1
+(noun)|nothing|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+nile|1
+(noun)|Nile|Nile River|river (generic term)
+nile crocodile|1
+(noun)|African crocodile|Nile crocodile|Crocodylus niloticus|crocodile (generic term)
+nile river|1
+(noun)|Nile|Nile River|river (generic term)
+nilgai|1
+(noun)|nylghai|nylghau|blue bull|Boselaphus tragocamelus|antelope (generic term)
+nilgiri hills|1
+(noun)|Nilgiri Hills|hill (generic term)
+nilo-saharan|1
+(noun)|Nilo-Saharan|Nilo-Saharan language|natural language (generic term)|tongue (generic term)
+nilo-saharan language|1
+(noun)|Nilo-Saharan|Nilo-Saharan language|natural language (generic term)|tongue (generic term)
+nilotic|3
+(adj)|Nilotic|river (related term)
+(adj)|Nilotic|Chari-Nile (related term)
+(noun)|Nilotic|Nilotic language|Chari-Nile (generic term)
+nilotic language|1
+(noun)|Nilotic|Nilotic language|Chari-Nile (generic term)
+nilpotent|1
+(adj)|digit|figure (related term)
+nilsson|1
+(noun)|Nilsson|Brigit Nilsson|Marta Brigit Nilsson|soprano (generic term)
+nim|1
+(noun)|table game (generic term)
+nim tree|1
+(noun)|neem|neem tree|margosa|arishth|Azadirachta indica|Melia Azadirachta|tree (generic term)
+nimble|2
+(adj)|agile|quick|spry|active (similar term)
+(adj)|agile|intelligent (similar term)
+nimble-fingered|1
+(adj)|light-fingered|adroit (similar term)
+nimble will|1
+(noun)|nimblewill|nimble Will|Muhlenbergia schreberi|grass (generic term)
+nimbleness|2
+(noun)|mental dexterity|intelligence (generic term)
+(noun)|agility|legerity|lightness|lightsomeness|gracefulness (generic term)
+nimblewill|1
+(noun)|nimble Will|Muhlenbergia schreberi|grass (generic term)
+nimbly|1
+(adv)|agilely
+nimbus|2
+(noun)|nimbus cloud|rain cloud|cloud (generic term)
+(noun)|aura|aureole|halo|glory|gloriole|light (generic term)|lightness (generic term)
+nimbus cloud|1
+(noun)|nimbus|rain cloud|cloud (generic term)
+nimby|1
+(noun)|NIMBY|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)
+nimiety|1
+(noun)|excess|surplus|surplusage|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+niminy-piminy|1
+(adj)|dainty|mincing|prim|twee|refined (similar term)
+nimitz|1
+(noun)|Nimitz|Chester Nimitz|Chester William Nimitz|Admiral Nimitz|naval officer (generic term)
+nimravus|1
+(noun)|Nimravus|genus Nimravus|mammal genus (generic term)
+nimrod|1
+(noun)|Nimrod|hunter (generic term)|huntsman (generic term)
+nin-sin|1
+(noun)|ginseng|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb (generic term)|herbaceous plant (generic term)
+nina|1
+(noun)|Nina|Semitic deity (generic term)
+nina from carolina|1
+(noun)|nine|9|IX|niner|Nina from Carolina|ennead|digit (generic term)|figure (generic term)
+nincompoop|1
+(noun)|poop|ninny|simpleton (generic term)|simple (generic term)
+nine|3
+(adj)|9|ix|cardinal (similar term)
+(noun)|9|IX|niner|Nina from Carolina|ennead|digit (generic term)|figure (generic term)
+(noun)|baseball club|ball club|club|baseball team (generic term)
+nine-banded armadillo|1
+(noun)|peba|Texas armadillo|Dasypus novemcinctus|armadillo (generic term)
+nine-fold|1
+(adj)|nonuple|ninefold|multiple (similar term)
+nine-membered|1
+(adj)|9-membered|membered (similar term)
+nine-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+nine-spot|1
+(noun)|spot (generic term)
+nine iron|1
+(noun)|niblick|iron (generic term)
+nine times|1
+(adv)|ninefold
+ninefold|2
+(adj)|nonuple|nine-fold|multiple (similar term)
+(adv)|nine times
+ninepence|1
+(noun)|coin (generic term)
+ninepenny|1
+(adj)|sized (similar term)
+ninepin|1
+(noun)|skittle|skittle pin|bowling pin (generic term)|pin (generic term)
+ninepin ball|1
+(noun)|skittle ball|ball (generic term)
+ninepins|1
+(noun)|skittles|bowling (generic term)
+niner|1
+(noun)|nine|9|IX|Nina from Carolina|ennead|digit (generic term)|figure (generic term)
+nineteen|2
+(adj)|19|xix|cardinal (similar term)
+(noun)|19|XIX|large integer (generic term)
+nineteenth|2
+(adj)|19th|ordinal (similar term)
+(noun)|rank (generic term)
+nineties|3
+(noun)|1890s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|1990s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|mid-nineties|time of life (generic term)
+ninetieth|2
+(adj)|90th|ordinal (similar term)
+(noun)|rank (generic term)
+ninety|2
+(adj)|90|xc|cardinal (similar term)
+(noun)|90|XC|large integer (generic term)
+ninety-eight|1
+(adj)|98|xcviii|cardinal (similar term)
+ninety-fifth|1
+(adj)|95th|ordinal (similar term)
+ninety-five|1
+(adj)|95|xcv|cardinal (similar term)
+ninety-four|1
+(adj)|94|xciv|cardinal (similar term)
+ninety-nine|1
+(adj)|99|ic|cardinal (similar term)
+ninety-one|1
+(adj)|91|xci|cardinal (similar term)
+ninety-seven|1
+(adj)|97|xcvii|cardinal (similar term)
+ninety-six|1
+(adj)|96|xcvi|cardinal (similar term)
+ninety-three|1
+(adj)|93|xciii|cardinal (similar term)
+ninety-two|1
+(adj)|92|xcii|cardinal (similar term)
+nineveh|1
+(noun)|Nineveh|city (generic term)|metropolis (generic term)|urban center (generic term)
+ningal|1
+(noun)|Ningal|Semitic deity (generic term)
+ningirsu|1
+(noun)|Ningirsu|Semitic deity (generic term)
+ningishzida|1
+(noun)|Ningishzida|Semitic deity (generic term)
+ninhursag|1
+(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity (generic term)
+ninib|1
+(noun)|Ninurta|Ninib|Semitic deity (generic term)
+ninigi|1
+(noun)|Ninigi|Ninigino-Mikoto|Japanese deity (generic term)
+ninigino-mikoto|1
+(noun)|Ninigi|Ninigino-Mikoto|Japanese deity (generic term)
+ninja|2
+(noun)|mercenary (generic term)|soldier of fortune (generic term)
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+ninjitsu|1
+(noun)|ninjutsu|martial art (generic term)
+ninjutsu|1
+(noun)|ninjitsu|martial art (generic term)
+ninkharsag|1
+(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity (generic term)
+ninkhursag|1
+(noun)|Ninkhursag|Ninhursag|Ninkharsag|Semitic deity (generic term)
+ninny|1
+(noun)|nincompoop|poop|simpleton (generic term)|simple (generic term)
+ninon|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+ninth|3
+(adj)|9th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-ninth|common fraction (generic term)|simple fraction (generic term)
+ninth cranial nerve|1
+(noun)|glossopharyngeal nerve|nervus glossopharyngeus|cranial nerve (generic term)
+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 (generic term)|major fast day (generic term)
+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 (generic term)|major fast day (generic term)
+nintoo|1
+(noun)|Nintu|Nintoo|Semitic deity (generic term)
+nintu|1
+(noun)|Nintu|Nintoo|Semitic deity (generic term)
+ninurta|1
+(noun)|Ninurta|Ninib|Semitic deity (generic term)
+niobe|1
+(noun)|Niobe|mythical being (generic term)
+niobite|1
+(noun)|columbite|mineral (generic term)
+niobium|1
+(noun)|Nb|atomic number 41|metallic element (generic term)|metal (generic term)
+niobrara|1
+(noun)|Niobrara|Niobrara River|river (generic term)
+niobrara river|1
+(noun)|Niobrara|Niobrara River|river (generic term)
+nip|9
+(noun)|shot|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|Jap|Nip|Japanese (generic term)|Nipponese (generic term)
+(noun)|relish|flavor|flavour|sapidity|savor|savour|smack|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|chilliness|coolness|coldness (generic term)|cold (generic term)|low temperature (generic term)|frigidity (generic term)|frigidness (generic term)
+(noun)|piquance|piquancy|piquantness|tang|tanginess|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|pinch|bite (generic term)|chomp (generic term)|clip (generic term)|clipping (generic term)|snip (generic term)
+(verb)|pinch|squeeze|twinge|tweet|twitch|grip (generic term)
+(verb)|bite (generic term)|seize with teeth (generic term)
+(verb)|nip off|clip|snip|snip off|cut (generic term)
+nip and tuck|3
+(adj)|neck and neck|head-to-head|inconclusive (similar term)
+(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|rhytidoplasty|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+(adv)|neck and neck|head-to-head
+nip off|1
+(verb)|nip|clip|snip|snip off|cut (generic term)
+nipa|2
+(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+nipa fruticans|1
+(noun)|nipa palm|Nipa fruticans|palm (generic term)|palm tree (generic term)
+nipa palm|1
+(noun)|Nipa fruticans|palm (generic term)|palm tree (generic term)
+nipper|2
+(noun)|child|kid|youngster|minor|shaver|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+(noun)|claw|chela|pincer|extremity (generic term)|appendage (generic term)|member (generic term)
+nipping|2
+(adj)|barbed|biting|pungent|mordacious|sarcastic (similar term)
+(adj)|crisp|frosty|nippy|snappy|parky|cold (similar term)
+nipple|2
+(noun)|mammilla|mamilla|pap|teat|tit|reproductive organ (generic term)|sex organ (generic term)
+(noun)|cap (generic term)
+nipple-shaped|1
+(adj)|convex (similar term)|bulging (similar term)
+nipple shield|1
+(noun)|shield (generic term)
+nippon|1
+(noun)|Japan|Nippon|Nihon|Asian country (generic term)|Asian nation (generic term)
+nipponese|2
+(adj)|Japanese|Nipponese|Asian country|Asian nation (related term)
+(noun)|Japanese|Nipponese|Asian (generic term)|Asiatic (generic term)
+nippy|2
+(adj)|tasty (similar term)
+(adj)|crisp|frosty|nipping|snappy|parky|cold (similar term)
+nipr|1
+(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+niqaabi|1
+(noun)|Muslimah (generic term)
+niqab|1
+(noun)|face veil (generic term)
+nirvana|2
+(noun)|Nirvana|enlightenment|blessedness (generic term)|beatitude (generic term)|beatification (generic term)
+(noun)|Eden|paradise|Nirvana|heaven|promised land|Shangri-la|region (generic term)|part (generic term)
+nisan|1
+(noun)|Nisan|Nissan|Jewish calendar month (generic term)
+nisi|1
+(adj)|inconclusive (similar term)
+nissan|1
+(noun)|Nisan|Nissan|Jewish calendar month (generic term)
+nissen hut|1
+(noun)|Nissen hut|Quonset hut|hut (generic term)|army hut (generic term)|field hut (generic term)
+nist|1
+(noun)|National Institute of Standards and Technology|NIST|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nisus|1
+(noun)|striving|pains|strain|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+nit|2
+(noun)|luminance unit (generic term)
+(noun)|egg (generic term)
+nitella|1
+(noun)|Nitella|genus Nitella|protoctist genus (generic term)
+niter|1
+(noun)|potassium nitrate|saltpeter|saltpetre|nitre|nitrate (generic term)
+nitid|1
+(adj)|agleam|gleaming|bright (similar term)
+nitpick|1
+(verb)|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+nitpicker|1
+(noun)|critic (generic term)
+nitpicking|1
+(adj)|caviling|carping|pettifogging|quibbling|critical (similar term)
+nitramine|1
+(noun)|tetryl|explosive (generic term)
+nitrate|2
+(noun)|compound (generic term)|chemical compound (generic term)
+(verb)|process (generic term)|treat (generic term)
+nitrate bacterium|1
+(noun)|nitric bacterium|nitrobacterium (generic term)
+nitrazepam|1
+(noun)|benzodiazepine (generic term)
+nitre|1
+(noun)|potassium nitrate|saltpeter|saltpetre|niter|nitrate (generic term)
+nitric|1
+(adj)|azotic|nitrous|chemical element|element|gas (related term)|nitrogen|N|atomic number 7 (related term)
+nitric acid|1
+(noun)|aqua fortis|acid (generic term)
+nitric bacteria|1
+(noun)|nitrobacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+nitric bacterium|1
+(noun)|nitrate bacterium|nitrobacterium (generic term)
+nitric oxide|1
+(noun)|gas (generic term)
+nitride|1
+(noun)|compound (generic term)|chemical compound (generic term)
+nitrification|2
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+nitrify|3
+(verb)|convert (generic term)|change over (generic term)
+(verb)|nitrogenize|nitrogenise|process (generic term)|treat (generic term)
+(verb)|fertilize (generic term)|fertilise (generic term)|feed (generic term)|denitrify (antonym)
+nitril|1
+(noun)|nitrile|cyanide|organic compound (generic term)
+nitrile|1
+(noun)|nitril|cyanide|organic compound (generic term)
+nitrite|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+nitrite bacterium|1
+(noun)|nitrous bacterium|nitrobacterium (generic term)
+nitro group|1
+(noun)|group (generic term)|radical (generic term)|chemical group (generic term)
+nitrobacter|1
+(noun)|Nitrobacter|genus Nitrobacter|bacteria genus (generic term)
+nitrobacteria|1
+(noun)|nitric bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+nitrobacteriaceae|1
+(noun)|Nitrobacteriaceae|family Nitrobacteriaceae|bacteria genus (generic term)
+nitrobacterium|1
+(noun)|bacteria (generic term)|bacterium (generic term)
+nitrobenzene|1
+(noun)|organic compound (generic term)
+nitrocalcite|1
+(noun)|mineral (generic term)
+nitrocellulose|1
+(noun)|cellulose nitrate|guncotton|nitrocotton|cellulose ester (generic term)|nitrate (generic term)
+nitrochloroform|1
+(noun)|chloropicrin|compound (generic term)|chemical compound (generic term)
+nitrochloromethane|1
+(noun)|tear gas (generic term)|teargas (generic term)|lacrimator (generic term)|lachrymator (generic term)
+nitrocotton|1
+(noun)|cellulose nitrate|nitrocellulose|guncotton|cellulose ester (generic term)|nitrate (generic term)
+nitrofuran|1
+(noun)|furan (generic term)|furane (generic term)|furfuran (generic term)
+nitrofurantoin|1
+(noun)|Macrodantin|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+nitrogen|1
+(noun)|N|atomic number 7|chemical element (generic term)|element (generic term)|gas (generic term)
+nitrogen-bearing|1
+(adj)|nitrogenous|chemical element|element|gas (related term)
+nitrogen-fixing|1
+(adj)|organic process|biological process (related term)
+nitrogen balance|1
+(noun)|balance (generic term)
+nitrogen cycle|1
+(noun)|organic process (generic term)|biological process (generic term)
+nitrogen dioxide|1
+(noun)|dioxide (generic term)|gas (generic term)
+nitrogen fixation|1
+(noun)|organic process (generic term)|biological process (generic term)
+nitrogen mustard|1
+(noun)|compound (generic term)|chemical compound (generic term)
+nitrogen narcosis|1
+(noun)|narcosis (generic term)
+nitrogen oxide|1
+(noun)|oxide (generic term)|pollutant (generic term)
+nitrogen trichloride|1
+(noun)|Agene|trichloride (generic term)
+nitrogenase|1
+(noun)|enzyme (generic term)
+nitrogenise|1
+(verb)|nitrify|nitrogenize|process (generic term)|treat (generic term)
+nitrogenize|1
+(verb)|nitrify|nitrogenise|process (generic term)|treat (generic term)
+nitrogenous|1
+(adj)|nitrogen-bearing|chemical element|element|gas (related term)
+nitroglycerin|1
+(noun)|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+nitroglycerine|1
+(noun)|nitroglycerin|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+nitrohydrochloric acid|1
+(noun)|aqua regia|acid (generic term)
+nitrosobacteria|1
+(noun)|nitrous bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+nitrosomonas|1
+(noun)|Nitrosomonas|genus Nitrosomonas|bacteria genus (generic term)
+nitrospan|2
+(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+(noun)|Nitrospan|Nitrostat|vasodilator (generic term)|vasodilative (generic term)
+nitrostat|2
+(noun)|nitroglycerin|nitroglycerine|trinitroglycerin|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+(noun)|Nitrospan|Nitrostat|vasodilator (generic term)|vasodilative (generic term)
+nitrous|1
+(adj)|azotic|nitric|chemical element|element|gas (related term)|nitrogen|N|atomic number 7 (related term)
+nitrous acid|1
+(noun)|acid (generic term)
+nitrous bacteria|1
+(noun)|nitrosobacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+nitrous bacterium|1
+(noun)|nitrite bacterium|nitrobacterium (generic term)
+nitrous oxide|1
+(noun)|laughing gas|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+nitta tree|1
+(noun)|tree (generic term)
+nitty-gritty|1
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|content (generic term)|cognitive content (generic term)|mental object (generic term)
+nitweed|1
+(noun)|orange grass|pineweed|pine-weed|Hypericum gentianoides|St John's wort (generic term)
+nitwit|1
+(noun)|dimwit|half-wit|doofus|simpleton (generic term)|simple (generic term)
+nitwitted|1
+(adj)|senseless|soft-witted|witless|stupid (similar term)
+nivose|1
+(noun)|Nivose|Revolutionary calendar month (generic term)
+nix|1
+(noun)|nothing|nil|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+nixon|1
+(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+nizhni novgorod|1
+(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city (generic term)|metropolis (generic term)|urban center (generic term)
+nizhnyi novgorod|1
+(noun)|Nizhnyi Novgorod|Nizhni Novgorod|Gorki|Gorky|Gorkiy|city (generic term)|metropolis (generic term)|urban center (generic term)
+nj|1
+(noun)|New Jersey|Jersey|Garden State|NJ|American state (generic term)
+njord|1
+(noun)|Njord|Njorth|Norse deity (generic term)
+njorth|1
+(noun)|Njord|Njorth|Norse deity (generic term)
+nlp|1
+(noun)|natural language processing|NLP|human language technology|information science (generic term)|informatics (generic term)|information processing (generic term)|IP (generic term)
+nlrb|1
+(noun)|National Labor Relations Board|NLRB|independent agency (generic term)
+nm|2
+(noun)|nanometer|nanometre|millimicron|micromillimeter|micromillimetre|metric linear unit (generic term)
+(noun)|New Mexico|Land of Enchantment|NM|American state (generic term)
+nmr|1
+(noun)|nuclear magnetic resonance|NMR|proton magnetic resonance|magnetic resonance (generic term)
+nne|1
+(noun)|north northeast|nor'-nor'-east|NNE|compass point (generic term)|point (generic term)
+nnrti|1
+(noun)|non-nucleoside reverse transcriptase inhibitor|NNRTI|reverse transcriptase inhibitor (generic term)
+nnw|1
+(noun)|north northwest|nor'-nor'-west|NNW|compass point (generic term)|point (generic term)
+no|4
+(adj)|nary (similar term)|none (similar term)|zero (similar term)|all (antonym)|some (antonym)
+(noun)|negative (generic term)|yes (antonym)
+(noun)|nobelium|No|atomic number 102|chemical element (generic term)|element (generic term)
+(adv)|no more
+no-account|2
+(adj)|good-for-nothing|good-for-naught|meritless|no-count|no-good|sorry|worthless (similar term)
+(noun)|goldbrick|goof-off|ne'er-do-well|good-for-nothing|good-for-naught|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+no-brainer|1
+(noun)|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+no-count|1
+(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-good|sorry|worthless (similar term)
+no-frills|1
+(adj)|essential (similar term)
+no-go|1
+(adj)|go (antonym)
+no-go area|1
+(noun)|area (generic term)|country (generic term)
+no-goal|1
+(noun)|goal (generic term)|end (generic term)
+no-good|2
+(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-count|sorry|worthless (similar term)
+(adj)|rubber|bad (similar term)
+no-hit|1
+(adj)|successful (similar term)
+no-hit game|1
+(noun)|no-hitter|baseball (generic term)|baseball game (generic term)
+no-hitter|1
+(noun)|no-hit game|baseball (generic term)|baseball game (generic term)
+no-nonsense|1
+(adj)|direct (similar term)
+no-par-value stock|1
+(noun)|no-par stock|stock (generic term)
+no-par stock|1
+(noun)|no-par-value stock|stock (generic term)
+no-parking zone|1
+(noun)|space (generic term)
+no-see-um|1
+(noun)|punkie|punky|punkey|biting midge|gnat (generic term)
+no-show|2
+(noun)|guest (generic term)
+(noun)|nonattender|truant|wrongdoer (generic term)|offender (generic term)
+no-trump|1
+(noun)|contract (generic term)|contract bridge (generic term)
+no-win|1
+(adj)|unsuccessful (similar term)
+no-win situation|1
+(noun)|situation (generic term)
+no.|1
+(noun)|ordinal number|ordinal|number (generic term)
+no ball|1
+(noun)|bowling (generic term)
+no doubt|1
+(adv)|to be sure|without doubt
+no fault automobile insurance|1
+(noun)|no fault insurance|automobile insurance (generic term)|car insurance (generic term)
+no fault insurance|1
+(noun)|no fault automobile insurance|automobile insurance (generic term)|car insurance (generic term)
+no longer|1
+(adv)|no more|still (antonym)
+no man's land|3
+(noun)|area (generic term)|country (generic term)
+(noun)|land (generic term)
+(noun)|twilight zone|ambiguity (generic term)|equivocalness (generic term)
+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|still (antonym)
+(adv)|no
+noaa|1
+(noun)|National Oceanic and Atmospheric Administration|NOAA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+noachian|1
+(adj)|Noachian|patriarch (related term)
+noachian deluge|1
+(noun)|Noah's flood|Noachian deluge|Noah and the Flood|the Flood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+noah|1
+(noun)|Noah|patriarch (generic term)
+noah's flood|1
+(noun)|Noah's flood|Noachian deluge|Noah and the Flood|the Flood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+noah and the flood|1
+(noun)|Noah's flood|Noachian deluge|Noah and the Flood|the Flood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+noah webster|1
+(noun)|Webster|Noah Webster|lexicographer (generic term)|lexicologist (generic term)
+noam chomsky|1
+(noun)|Chomsky|Noam Chomsky|A. Noam Chomsky|linguist (generic term)|linguistic scientist (generic term)
+nob|1
+(noun)|toff|man of means (generic term)|rich man (generic term)|wealthy man (generic term)
+nob hill|1
+(noun)|Nob Hill|city district (generic term)
+nobble|4
+(verb)|victimize|swindle|rook|goldbrick|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|lift|steal (generic term)
+(verb)|kidnap|abduct|snatch|seize (generic term)
+(verb)|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+nobel|1
+(noun)|Nobel|Alfred Nobel|Alfred Bernhard Nobel|chemist (generic term)|philanthropist (generic term)|altruist (generic term)
+nobel laureate|1
+(noun)|Nobelist|Nobel Laureate|laureate (generic term)
+nobel prize|1
+(noun)|Nobel prize|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+nobelist|1
+(noun)|Nobelist|Nobel Laureate|laureate (generic term)
+nobelium|1
+(noun)|No|atomic number 102|chemical element (generic term)|element (generic term)
+nobility|3
+(noun)|aristocracy|elite (generic term)|elite group (generic term)
+(noun)|nobleness|magnanimousness|grandeur|honorableness (generic term)|honourableness (generic term)
+(noun)|noblesse|status (generic term)|position (generic term)
+noble|5
+(adj)|baronial|imposing|stately|impressive (similar term)
+(adj)|aristocratic (similar term)|aristocratical (similar term)|blue (similar term)|blue-blooded (similar term)|gentle (similar term)|patrician (similar term)|august (similar term)|grand (similar term)|lordly (similar term)|coroneted (similar term)|highborn (similar term)|titled (similar term)|imperial (similar term)|majestic (similar term)|purple (similar term)|regal (similar term)|royal (similar term)|kingly (similar term)|kinglike (similar term)|monarchal (similar term)|monarchical (similar term)|princely (similar term)|queenly (similar term)|queenlike (similar term)|royal (similar term)|patrician (related term)|lowborn (antonym)
+(adj)|dignifying (similar term)|ennobling (similar term)|exalted (similar term)|sublime (similar term)|grand (similar term)|high-flown (similar term)|high-minded (similar term)|lofty (similar term)|rarefied (similar term)|rarified (similar term)|idealistic (similar term)|noble-minded (similar term)|greathearted (similar term)|magnanimous (similar term)|honorable (related term)|honourable (related term)|ignoble (antonym)
+(adj)|unreactive (similar term)
+(noun)|Lord|nobleman|male aristocrat (generic term)|noblewoman (antonym)|Lady (antonym)
+noble-minded|1
+(adj)|exalted|sublime|grand|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble (similar term)
+noble-mindedness|1
+(noun)|high-mindedness|idealism|nobility (generic term)|nobleness (generic term)|magnanimousness (generic term)|grandeur (generic term)
+noble cane|1
+(noun)|sugarcane (generic term)|sugar cane (generic term)|Saccharum officinarum (generic term)
+noble gas|1
+(noun)|inert gas|argonon|chemical element (generic term)|element (generic term)|gas (generic term)
+noble metal|1
+(noun)|metallic element (generic term)|metal (generic term)
+nobleman|1
+(noun)|Lord|noble|male aristocrat (generic term)|noblewoman (antonym)|Lady (antonym)
+nobleness|1
+(noun)|nobility|magnanimousness|grandeur|honorableness (generic term)|honourableness (generic term)
+noblesse|2
+(noun)|nobility|status (generic term)|position (generic term)
+(noun)|nobility (generic term)|aristocracy (generic term)
+noblesse oblige|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+noblewoman|1
+(noun)|Lady|peeress|female aristocrat (generic term)|nobleman (antonym)|Lord (antonym)
+nobody|1
+(noun)|cipher|cypher|nonentity|commoner (generic term)|common man (generic term)|common person (generic term)
+noc|1
+(noun)|NOC|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+nocent|1
+(adj)|harmful (similar term)
+nociceptive|1
+(adj)|sensitive (similar term)
+nock|1
+(verb)|score|mark|notch (generic term)
+noctambulation|1
+(noun)|sleepwalking|somnambulism|somnambulation|noctambulism|sleeping (generic term)|walk (generic term)|walking (generic term)
+noctambulism|1
+(noun)|sleepwalking|somnambulism|somnambulation|noctambulation|sleeping (generic term)|walk (generic term)|walking (generic term)
+noctambulist|1
+(noun)|sleepwalker|somnambulist|sleeper (generic term)|slumberer (generic term)
+noctiluca|1
+(noun)|Noctiluca miliaris|dinoflagellate (generic term)
+noctiluca miliaris|1
+(noun)|noctiluca|Noctiluca miliaris|dinoflagellate (generic term)
+noctilucent|1
+(adj)|bright (similar term)
+noctua|1
+(noun)|Noctua|genus Noctua|arthropod genus (generic term)
+noctuid|1
+(noun)|noctuid moth|owlet moth|moth (generic term)
+noctuid moth|1
+(noun)|noctuid|owlet moth|moth (generic term)
+noctuidae|1
+(noun)|Noctuidae|family Noctuidae|arthropod family (generic term)
+nocturia|1
+(noun)|nycturia|micturition (generic term)|urination (generic term)
+nocturnal|2
+(adj)|diurnal (antonym)
+(adj)|time period|period of time|period (related term)
+nocturnal emission|1
+(noun)|ejaculation (generic term)
+nocturne|1
+(noun)|notturno|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+nod|6
+(noun)|gesture (generic term)|motion (generic term)
+(noun)|inclination (generic term)|inclining (generic term)
+(verb)|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|move (generic term)
+(verb)|drowse (generic term)
+nod off|1
+(verb)|fall asleep|dope off|flake out|drift off|drop off|doze off|drowse off|wake up (antonym)
+nodal rhythm|1
+(noun)|atrioventricular nodal rhythm|cardiac rhythm (generic term)|heart rhythm (generic term)
+nodding|1
+(adj)|cernuous|drooping|pendulous|unerect (similar term)
+nodding groundsel|1
+(noun)|Senecio bigelovii|wildflower (generic term)|wild flower (generic term)
+nodding onion|1
+(noun)|nodding wild onion|lady's leek|Allium cernuum|wild onion (generic term)
+nodding thistle|1
+(noun)|musk thistle|Carduus nutans|thistle (generic term)
+nodding wild onion|1
+(noun)|nodding onion|lady's leek|Allium cernuum|wild onion (generic term)
+noddle|1
+(noun)|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+node|7
+(noun)|connection (generic term)|connexion (generic term)|link (generic term)
+(noun)|knob|thickening|convex shape (generic term)|convexity (generic term)
+(noun)|point (generic term)|antinode (antonym)
+(noun)|celestial point (generic term)
+(noun)|lymph node|lymph gland|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+(noun)|solid body substance (generic term)
+(noun)|client|guest|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+nodes of ranvier|1
+(noun)|Ranvier's nodes|nodes of Ranvier|opening (generic term)|gap (generic term)
+nodular|2
+(adj)|node (related term)
+(adj)|nodulated|noduled|unshapely (similar term)
+nodulated|1
+(adj)|nodular|noduled|unshapely (similar term)
+nodule|3
+(noun)|node (generic term)
+(noun)|tubercle|plant process (generic term)|enation (generic term)
+(noun)|hunk (generic term)|lump (generic term)
+noduled|1
+(adj)|nodular|nodulated|unshapely (similar term)
+nodulose|1
+(adj)|unshapely (similar term)
+noel|1
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+noel coward|1
+(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist (generic term)|playwright (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|composer (generic term)
+noemi|1
+(noun)|Naomi|Noemi|mother-in-law (generic term)
+noesis|1
+(noun)|cognition|knowledge|psychological feature (generic term)
+noether|1
+(noun)|Noether|Emmy Noether|mathematician (generic term)
+noetic|1
+(adj)|intellectual|rational|mental (similar term)
+nog|2
+(noun)|peg|pin (generic term)
+(noun)|block (generic term)
+nogales|2
+(noun)|Nogales|town (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|Nogales|town (generic term)
+noggin|1
+(noun)|attic|bean|bonce|noodle|dome|human head (generic term)
+nogging|1
+(noun)|brickwork (generic term)
+noguchi|2
+(noun)|Noguchi|Isamu Noguchi|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(noun)|Noguchi|Hideyo Noguchi|bacteriologist (generic term)
+nohow|1
+(adv)|in no way
+noise|7
+(noun)|sound (generic term)
+(noun)|dissonance|racket|sound (generic term)|auditory sensation (generic term)
+(noun)|interference|disturbance|trouble (generic term)
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|incomprehensibility (generic term)
+(noun)|randomness|haphazardness|stochasticity|irregularity (generic term)|unregularity (generic term)
+(verb)|make noise|resound|sound (generic term)|go (generic term)
+noise conditions|1
+(noun)|condition (generic term)|status (generic term)
+noise level|1
+(noun)|background level|amplitude (generic term)
+noise pollution|1
+(noun)|sound pollution|pollution (generic term)
+noiseless|1
+(adj)|quiet (similar term)
+noiselessly|1
+(adv)|soundlessly
+noiselessness|1
+(noun)|quietness (generic term)|soundlessness (generic term)
+noisemaker|1
+(noun)|device (generic term)
+noisily|1
+(adv)|quietly (antonym)
+noisiness|1
+(noun)|racketiness|sound (generic term)
+noisome|2
+(adj)|nauseating|nauseous|queasy|loathsome|offensive|sickening|vile|unwholesome (similar term)
+(adj)|fetid|foetid|foul|foul-smelling|funky|smelly|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+noisomeness|1
+(noun)|harmfulness|noxiousness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+noisy|2
+(adj)|blatant (similar term)|clamant (similar term)|clamorous (similar term)|strident (similar term)|vociferous (similar term)|abuzz (similar term)|buzzing (similar term)|droning (similar term)|clangorous (similar term)|clanging (similar term)|clanking (similar term)|clattering (similar term)|clattery (similar term)|creaking (similar term)|creaky (similar term)|screaky (similar term)|crying (similar term)|yelling (similar term)|shouting (similar term)|rackety (similar term)|rip-roaring (similar term)|uproarious (similar term)|reedy (similar term)|wheezy (similar term)|screaming (similar term)|screeching (similar term)|shrieking (similar term)|stertorous (similar term)|swishing (similar term)|swishy (similar term)|thundering (similar term)|whining (similar term)|whirring (similar term)|cacophonous (related term)|cacophonic (related term)|loud (related term)|quiet (antonym)
+(adj)|loud|colorful (similar term)|colourful (similar term)
+nol. pros.|1
+(verb)|nolle prosequi|nolle pros|announce (generic term)|declare (generic term)
+nol pros|1
+(noun)|nolle prosequi|entry (generic term)
+noli-me-tangere|1
+(noun)|ulcer (generic term)|ulceration (generic term)
+nolina|1
+(noun)|Nolina|genus Nolina|liliid monocot genus (generic term)
+nolina microcarpa|1
+(noun)|bear grass|Nolina microcarpa|agave (generic term)|century plant (generic term)|American aloe (generic term)
+nolle pros|2
+(verb)|nolle prosequi|nol. pros.|announce (generic term)|declare (generic term)
+(verb)|drop (generic term)|knock off (generic term)
+nolle prosequi|2
+(noun)|nol pros|entry (generic term)
+(verb)|nolle pros|nol. pros.|announce (generic term)|declare (generic term)
+nolo contendere|1
+(noun)|non vult|answer (generic term)
+nom de guerre|1
+(noun)|pseudonym|anonym|name (generic term)
+nom de plume|1
+(noun)|pen name|pseudonym (generic term)|anonym (generic term)|nom de guerre (generic term)
+noma|1
+(noun)|ulcer (generic term)|ulceration (generic term)
+nomad|1
+(noun)|wanderer (generic term)|roamer (generic term)|rover (generic term)|bird of passage (generic term)
+nomadic|1
+(adj)|mobile|peregrine|roving|wandering|unsettled (similar term)
+nombril|1
+(noun)|center (generic term)|centre (generic term)|midpoint (generic term)
+nome|1
+(noun)|Nome|town (generic term)
+nomenclature|1
+(noun)|terminology|language|word (generic term)
+nomenklatura|1
+(noun)|patronage (generic term)
+nomia|1
+(noun)|genus Nomia|arthropod genus (generic term)
+nomia melanderi|1
+(noun)|Nomia melanderi|alkali bee|bee (generic term)
+nominal|7
+(adj)|language unit|linguistic unit (related term)
+(adj)|token|tokenish|minimal (similar term)|minimum (similar term)
+(adj)|major form class (related term)
+(adj)|real (antonym)
+(adj)|nominative|specified (similar term)
+(adj)|titular|formal (similar term)
+(noun)|noun phrase|nominal phrase|phrase (generic term)
+nominal aphasia|1
+(noun)|anomic aphasia|anomia|amnesic aphasia|amnestic aphasia|aphasia (generic term)
+nominal damages|1
+(noun)|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+nominal head|1
+(noun)|front man|front|figurehead|straw man|strawman|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+nominal phrase|1
+(noun)|noun phrase|nominal|phrase (generic term)
+nominal value|1
+(noun)|par value|face value|value (generic term)
+nominalism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+nominalist|1
+(noun)|philosopher (generic term)
+nominalistic|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+nominate|4
+(verb)|put up|put forward|nominate (generic term)|propose (generic term)
+(verb)|propose|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|name|make|appoint (generic term)|charge (generic term)
+(verb)|appoint|name|constitute|establish (generic term)|found (generic term)|plant (generic term)|constitute (generic term)|institute (generic term)
+nominated|1
+(adj)|nominative|appointive (similar term)|appointed (similar term)
+nominating address|1
+(noun)|nominating speech|nomination|oratory (generic term)
+nominating speech|1
+(noun)|nominating address|nomination|oratory (generic term)
+nomination|3
+(noun)|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|nominating speech|nominating address|oratory (generic term)
+nominative|4
+(adj)|case|grammatical case (related term)
+(adj)|nominal|specified (similar term)
+(adj)|nominated|appointive (similar term)|appointed (similar term)
+(noun)|nominative case|subject case|case (generic term)|grammatical case (generic term)|oblique (antonym)
+nominative case|1
+(noun)|nominative|subject case|case (generic term)|grammatical case (generic term)|oblique (antonym)
+nominator|1
+(noun)|proposer (generic term)|mover (generic term)
+nominee|1
+(noun)|campaigner|candidate|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+nomogram|1
+(noun)|nomograph|representation (generic term)
+nomograph|1
+(noun)|nomogram|representation (generic term)
+nomothetic|1
+(adj)|idiographic (antonym)
+non|1
+(adv)|not
+non-aromatic|1
+(adj)|odorless (similar term)|odourless (similar term)|inodorous (similar term)
+non-automatic|1
+(adj)|hand-operated|manual (similar term)
+non-buoyant|1
+(adj)|heavy (similar term)
+non-cash expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+non-catholic|1
+(noun)|non-Catholic|religious person (generic term)
+non-christian priest|1
+(noun)|priest|non-Christian priest|spiritual leader (generic term)
+non-circular|1
+(adj)|ellipsoid|ellipsoidal|spheroidal|rounded (similar term)
+non-conducting|1
+(adj)|nonconductive|nonconducting|conductive (antonym)
+non-dedicated file server|1
+(noun)|file server (generic term)|dedicated file server (antonym)
+non-discrimination|1
+(noun)|fairness (generic term)|equity (generic term)
+non-elective|1
+(adj)|nonelective|nonelected|appointive (similar term)|appointed (similar term)
+non-engagement|1
+(noun)|nonparticipation|non-involvement|group action (generic term)|involvement (antonym)|participation (antonym)|engagement (antonym)
+non-euclidean geometry|1
+(noun)|non-Euclidean geometry|geometry (generic term)
+non-finite|1
+(adj)|infinite|finite (antonym)
+non-flowering plant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+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 (generic term)|DM (generic term)
+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 (generic term)|DM (generic term)
+non-invertible|1
+(adj)|invertible (antonym)
+non-involvement|1
+(noun)|non-engagement|nonparticipation|group action (generic term)|involvement (antonym)|participation (antonym)|engagement (antonym)
+non-ionic detergent|1
+(noun)|anionic detergent|anionic|detergent (generic term)
+non-issue|1
+(noun)|dead letter|state (generic term)
+non-jew|1
+(noun)|gentile|non-Jew|goy|Christian (generic term)
+non-living|1
+(adj)|inanimate|nonliving|dead|nonconscious (similar term)|animate (antonym)
+non-market economy|1
+(noun)|economy (generic term)|economic system (generic term)|market economy (antonym)
+non-metric|1
+(adj)|metric linear unit (related term)
+non-miscible|1
+(adj)|immiscible|unmixable|incompatible (similar term)|miscible (antonym)
+non-negotiable|1
+(adj)|inalienable (similar term)|unalienable (similar term)
+non-nucleoside reverse transcriptase inhibitor|1
+(noun)|NNRTI|reverse transcriptase inhibitor (generic term)
+non-paying|1
+(adj)|unpaid (similar term)
+non-poisonous|2
+(adj)|nonpoisonous|nontoxic (similar term)|atoxic (similar term)
+(adj)|nonpoisonous|nontoxic|edible (similar term)|comestible (similar term)|eatable (similar term)
+non-profit-making|1
+(adj)|nonprofit|noncommercial (similar term)
+non-proliferation|1
+(noun)|nonproliferation|prevention (generic term)|bar (generic term)|proliferation (antonym)|proliferation (antonym)
+non-resinous|1
+(adj)|nonresinous|nonresiny|non-resiny|nonadhesive (similar term)
+non-resiny|1
+(adj)|nonresinous|non-resinous|nonresiny|nonadhesive (similar term)
+non-resistant|1
+(noun)|passive resister|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+non-slave|1
+(adj)|free-soil|slaveless|free (similar term)
+non-standard speech|1
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+non-u|1
+(adj)|non-U|lower-class (similar term)|low-class (similar term)
+non-ugric|1
+(noun)|Fennic|Finnic|Non-Ugric|Finno-Ugric (generic term)|Finno-Ugrian (generic term)
+non-verbally|1
+(adv)|nonverbally
+non-volatile storage|1
+(noun)|nonvolatile storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)|volatile storage (antonym)|volatile storage (antonym)
+non-water-soluble|1
+(adj)|water-insoluble|insoluble (similar term)|indissoluble (similar term)
+non-white|1
+(adj)|colored|coloured|dark|dark-skinned|black (similar term)
+non-zero|1
+(adj)|cardinal (similar term)
+non compos mentis|1
+(adj)|of unsound mind|insane (similar term)
+non pros|1
+(noun)|non prosequitur|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+non prosequitur|1
+(noun)|non pros|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+non sequitur|2
+(noun)|reply (generic term)|response (generic term)
+(noun)|conclusion (generic term)
+non vult|1
+(noun)|nolo contendere|answer (generic term)
+nona|1
+(noun)|Nona|Roman deity (generic term)
+nonabsorbency|1
+(noun)|impermeability (generic term)|impermeableness (generic term)|absorbency (antonym)
+nonabsorbent|1
+(adj)|nonabsorptive|repellent (similar term)|resistant (similar term)|absorbent (antonym)
+nonabsorptive|1
+(adj)|nonabsorbent|repellent (similar term)|resistant (similar term)|absorbent (antonym)
+nonacceptance|1
+(noun)|turndown|rejection (generic term)
+nonaccomplishment|1
+(noun)|nonachievement|act (generic term)|human action (generic term)|human activity (generic term)
+nonachievement|1
+(noun)|nonaccomplishment|act (generic term)|human action (generic term)|human activity (generic term)
+nonachiever|1
+(noun)|underachiever|underperformer|student (generic term)|pupil (generic term)|educatee (generic term)
+nonadaptive|1
+(adj)|dysfunctional|maladaptive (similar term)
+nonaddictive|1
+(adj)|addictive (antonym)
+nonadhesive|1
+(adj)|nonglutinous (similar term)|nonviscid (similar term)|nonresinous (similar term)|non-resinous (similar term)|nonresiny (similar term)|non-resiny (similar term)|ungummed (similar term)|adhesive (antonym)
+nonadjacent|1
+(adj)|distant (similar term)
+nonadsorbent|1
+(adj)|nonadsorptive|adsorbent (antonym)
+nonadsorptive|1
+(adj)|nonadsorbent|adsorbent (antonym)
+nonage|1
+(noun)|minority|age (generic term)|eld (generic term)|legal status (generic term)|majority (antonym)
+nonaged|1
+(adj)|minor|underage|major (antonym)
+nonagenarian|2
+(adj)|old (similar term)
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+nonaggression|1
+(noun)|foreign policy (generic term)
+nonaggressive|1
+(adj)|unaggressive|low-pressure (similar term)|peaceful (related term)|unassertive (related term)|aggressive (antonym)
+nonagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+nonalcoholic|1
+(adj)|alcoholic (antonym)
+nonaligned|1
+(adj)|neutral (similar term)|aligned (antonym)
+nonalignment|1
+(noun)|nonalinement|social group (generic term)|alignment (antonym)
+nonalinement|1
+(noun)|nonalignment|social group (generic term)|alignment (antonym)
+nonallele|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+nonappearance|1
+(noun)|nonattendance (generic term)
+nonappointive|1
+(adj)|elective (similar term)|elected (similar term)
+nonarbitrable|1
+(adj)|arbitrable (antonym)
+nonarbitrary|1
+(adj)|unarbitrary|prescribed (similar term)|arbitrary (antonym)
+nonarboreal|1
+(adj)|arboreal (antonym)
+nonassertive|1
+(adj)|unassertive (similar term)
+nonassociative|1
+(adj)|associative (antonym)
+nonastringent|1
+(adj)|astringent (antonym)
+nonattendance|1
+(noun)|group action (generic term)|attendance (antonym)
+nonattender|1
+(noun)|no-show|truant|wrongdoer (generic term)|offender (generic term)
+nonautonomous|1
+(adj)|nonsovereign|unfree (similar term)
+nonbearing|1
+(adj)|dividing (similar term)|bearing (antonym)
+nonbeing|1
+(noun)|state (generic term)|being (antonym)
+nonbeliever|1
+(noun)|disbeliever|unbeliever|nonreligious person (generic term)
+nonbelligerent|1
+(adj)|peaceful (similar term)
+nonbiodegradable pollution|1
+(noun)|pollution (generic term)|biodegradable pollution (antonym)
+noncallable bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+noncaloric|1
+(adj)|work unit|heat unit|energy unit (related term)
+noncandidate|1
+(noun)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+noncarbonated|1
+(adj)|uncarbonated|noneffervescent (similar term)
+noncausal|1
+(adj)|noncausative|causative (antonym)
+noncausative|1
+(adj)|noncausal|causative (antonym)
+nonce|1
+(noun)|time being|present (generic term)|nowadays (generic term)
+nonce word|1
+(noun)|hapax legomenon|word (generic term)
+noncellular|1
+(adj)|acellular|cell-free (similar term)|single-celled (similar term)|one-celled (similar term)|cellular (antonym)
+nonchalance|1
+(noun)|unconcern|indifference|carefreeness (generic term)
+nonchalant|1
+(adj)|casual|insouciant|unconcerned (similar term)
+nonchalantly|2
+(adv)|coolly|nervelessly
+(adv)|casually
+nonchristian|1
+(adj)|christless|unchristian (similar term)
+nonchurchgoing|1
+(adj)|lapsed|irreligious (similar term)
+noncitizen|1
+(noun)|foreigner|alien|outlander|traveler (generic term)|traveller (generic term)|citizen (antonym)
+noncivilised|1
+(adj)|noncivilized|barbarian (similar term)|barbaric (similar term)|savage (similar term)|uncivilized (similar term)|uncivilised (similar term)|wild (similar term)|barbarous (similar term)|preliterate (similar term)|nonliterate (similar term)|primitive (similar term)|uneducated (related term)|civilized (antonym)
+noncivilized|1
+(adj)|noncivilised|barbarian (similar term)|barbaric (similar term)|savage (similar term)|uncivilized (similar term)|uncivilised (similar term)|wild (similar term)|barbarous (similar term)|preliterate (similar term)|nonliterate (similar term)|primitive (similar term)|uneducated (related term)|civilized (antonym)
+nonclassical|1
+(adj)|modern (similar term)|popular (similar term)|pop (similar term)|classical (antonym)
+noncollapsable|1
+(adj)|noncollapsible|nontelescopic (similar term)|nontelescoping (similar term)|collapsible (antonym)
+noncollapsible|1
+(adj)|noncollapsable|nontelescopic (similar term)|nontelescoping (similar term)|collapsible (antonym)
+noncolumned|1
+(adj)|uncolumned|astylar (similar term)|unpillared (similar term)|columned (antonym)
+noncom|1
+(noun)|noncommissioned officer|military officer (generic term)|officer (generic term)
+noncombatant|3
+(adj)|civilian (similar term)
+(adj)|military (similar term)
+(noun)|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+noncombinative|1
+(adj)|noncombining (similar term)|combinative (antonym)
+noncombining|1
+(adj)|noncombinative (similar term)
+noncombustible|1
+(adj)|incombustible|fireproof (similar term)|fire-retardant (similar term)|fire-resistant (similar term)|fire-resisting (similar term)|fire-resistive (similar term)|flameproof (similar term)|flame-retardant (similar term)|nonflammable (similar term)|combustible (antonym)
+noncommercial|1
+(adj)|blue-sky (similar term)|nonprofit (similar term)|non-profit-making (similar term)|uncommercial (similar term)|uncommercialized (similar term)|uncommercialised (similar term)|commercial (antonym)
+noncommissioned|1
+(adj)|commissioned (antonym)
+noncommissioned officer|1
+(noun)|noncom|military officer (generic term)|officer (generic term)
+noncommittal|1
+(adj)|indefinite (similar term)
+noncommunicable|1
+(adj)|noncontagious|nontransmissible|noninfectious (similar term)
+noncompetitive|1
+(adj)|accommodative (similar term)|cooperative (similar term)|monopolistic (similar term)|uncompetitive (similar term)|competitive (antonym)
+noncompetitively|1
+(adv)|competitively (antonym)
+noncompliance|1
+(noun)|disobedience|insubordination (generic term)|rebelliousness (generic term)|compliance (antonym)|obedience (antonym)
+noncompliant|2
+(adj)|defiant|insubordinate (similar term)|resistant (similar term)|resistive (similar term)|obstreperous (similar term)|recalcitrant (similar term)|disobedient (related term)|insubordinate (related term)|intractable (related term)|unmanageable (related term)|difficult (related term)|unwilling (related term)|compliant (antonym)
+(noun)|balker|baulker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+noncomprehensive|1
+(adj)|incomprehensive|limited (similar term)|comprehensive (antonym)
+noncomprehensively|1
+(adv)|comprehensively (antonym)
+nonconcentric|1
+(adj)|eccentric|acentric (similar term)|off-center (similar term)|off-centered (similar term)|concentric (antonym)
+nonconducting|1
+(adj)|nonconductive|non-conducting|conductive (antonym)
+nonconductive|1
+(adj)|nonconducting|non-conducting|conductive (antonym)
+nonconductor|1
+(noun)|insulator|dielectric|material (generic term)|stuff (generic term)|conductor (antonym)
+nonconformance|2
+(noun)|nonconformity|nonconformism|unorthodoxy (generic term)|heterodoxy (generic term)|heresy (generic term)|conformism (antonym)|conformity (antonym)
+(noun)|nonconformity|failure (generic term)|conformity (antonym)
+nonconforming|1
+(adj)|nonconformist|unorthodox (similar term)
+nonconformism|2
+(noun)|nonconformity|nonconformance|unorthodoxy (generic term)|heterodoxy (generic term)|heresy (generic term)|conformism (antonym)|conformity (antonym)
+(noun)|practice (generic term)|pattern (generic term)
+nonconformist|4
+(adj)|unconformist|conformist (antonym)
+(adj)|nonconforming|unorthodox (similar term)
+(noun)|Nonconformist|chapelgoer|Protestant (generic term)|Anglican (antonym)
+(noun)|recusant|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)|conformist (antonym)
+nonconformity|4
+(noun)|disagreement (generic term)
+(noun)|nonconformism|nonconformance|unorthodoxy (generic term)|heterodoxy (generic term)|heresy (generic term)|conformism (antonym)|conformity (antonym)
+(noun)|unorthodoxy (generic term)|heterodoxy (generic term)
+(noun)|nonconformance|failure (generic term)|conformity (antonym)
+nonconscious|2
+(adj)|unconscious (similar term)
+(adj)|inanimate (similar term)|nonliving (similar term)|non-living (similar term)|dead (similar term)
+noncontagious|1
+(adj)|noncommunicable|nontransmissible|noninfectious (similar term)
+noncontentious|1
+(adj)|unargumentative (similar term)
+noncontinuous|1
+(adj)|discontinuous|disrupted (similar term)|disjunct (similar term)|sporadic (related term)|broken (related term)|continuous (antonym)
+noncontroversial|1
+(adj)|uncontroversial|unchallengeable (similar term)|accepted (similar term)|undisputed (similar term)|unchallenged (similar term)|unquestioned (similar term)|agreed upon (similar term)|stipulatory (similar term)|controversial (antonym)
+nonconvergent|1
+(adj)|nonintersecting|parallel (similar term)
+noncritical|3
+(adj)|critical (antonym)
+(adj)|noncrucial|acritical (similar term)|critical (antonym)
+(adj)|uncritical|unscholarly (related term)|critical (antonym)
+noncrucial|2
+(adj)|crucial (antonym)
+(adj)|noncritical|acritical (similar term)|critical (antonym)
+noncrystalline|1
+(adj)|amorphous (similar term)|uncrystallized (similar term)|uncrystallised (similar term)|crystalline (antonym)
+noncurrent|1
+(adj)|back (similar term)|dead (similar term)|disused (similar term)|obsolete (similar term)|obsolete (similar term)|outdated (similar term)|out-of-date (similar term)|superannuated (similar term)|obsolescent (similar term)|old (related term)|past (related term)|current (antonym)
+noncyclic|2
+(adj)|noncyclical|cyclic (antonym)
+(adj)|aperiodic (similar term)|nonperiodic (similar term)
+noncyclical|1
+(adj)|noncyclic|cyclic (antonym)
+nondeductible|1
+(adj)|deductible (antonym)
+nondenominational|1
+(adj)|nonsectarian (similar term)|unsectarian (similar term)
+nondepository financial institution|1
+(noun)|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+nondescript|2
+(adj)|characterless|ordinary (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+nondevelopment|1
+(noun)|organic process (generic term)|biological process (generic term)|development (antonym)
+nondigestible|1
+(adj)|indigestible (similar term)
+nondirectional antenna|1
+(noun)|omnidirectional antenna|antenna (generic term)|aerial (generic term)|transmitting aerial (generic term)
+nondiscretionary trust|1
+(noun)|fixed investment trust|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+nondisjunction|1
+(noun)|meiosis (generic term)|miosis (generic term)|reduction division (generic term)
+nondisposable|2
+(adj)|frozen (similar term)|disposable (antonym)
+(adj)|disposable (antonym)
+nondrinker|1
+(noun)|abstainer|abstinent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|drinker (antonym)
+nondriver|1
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)|driver (antonym)
+none|3
+(adj)|no (similar term)
+(noun)|hour (generic term)|time of day (generic term)
+(noun)|service (generic term)|religious service (generic term)|divine service (generic term)
+nonechoic|1
+(adj)|echoic (antonym)
+noneffervescent|2
+(adj)|still|sparkling (antonym)
+(adj)|flat (similar term)|noncarbonated (similar term)|uncarbonated (similar term)|effervescent (antonym)
+nonelected|1
+(adj)|nonelective|non-elective|appointive (similar term)|appointed (similar term)
+nonelective|1
+(adj)|non-elective|nonelected|appointive (similar term)|appointed (similar term)
+nonenterprising|1
+(adj)|unenterprising|slowgoing (similar term)|unenergetic (similar term)|unadventurous (related term)|unambitious (related term)|ambitionless (related term)|enterprising (antonym)
+nonentity|3
+(noun)|nonexistence|nonbeing (generic term)|existence (antonym)
+(noun)|cipher|cypher|nobody|commoner (generic term)|common man (generic term)|common person (generic term)
+(noun)|nothing|thing (generic term)
+nonenzymatic|1
+(adj)|protein|catalyst|accelerator (related term)
+nonequivalence|1
+(noun)|inequality (generic term)|equivalence (antonym)
+nonequivalent|1
+(adj)|unequal (similar term)
+nones|1
+(noun)|canonical hour (generic term)
+nonessential|2
+(adj)|incidental|inessential (similar term)|unessential (similar term)
+(noun)|inessential|thing (generic term)|essential (antonym)
+nonesuch|1
+(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonsuch|model (generic term)|role model (generic term)
+nonesuch clover|1
+(noun)|black medick|hop clover|yellow trefoil|Medicago lupulina|medic (generic term)|medick (generic term)|trefoil (generic term)
+nonetheless|1
+(adv)|however|nevertheless|withal|still|yet|all the same|even so|notwithstanding
+nonevent|1
+(noun)|event (generic term)
+nonexempt|2
+(adj)|taxable|assessable (similar term)|dutiable (similar term)|ratable (similar term)|rateable (similar term)|subject (similar term)|nonexempt (related term)|nontaxable (antonym)
+(adj)|liable (similar term)|taxpaying (similar term)|unexcused (similar term)|exempt (antonym)
+nonexistence|1
+(noun)|nonentity|nonbeing (generic term)|existence (antonym)
+nonexistent|2
+(adj)|nonextant (similar term)|vanished (similar term)|extinct (related term)|existent (antonym)
+(adj)|lacking|missing|wanting|absent (similar term)
+nonexplorative|1
+(adj)|nonexploratory|unexploratory|unexplorative|exploratory (antonym)
+nonexploratory|1
+(adj)|nonexplorative|unexploratory|unexplorative|exploratory (antonym)
+nonexplosive|1
+(adj)|explosive (antonym)
+nonextant|2
+(adj)|extinct|dead (similar term)|nonexistent (related term)|extant (antonym)
+(adj)|nonexistent (similar term)
+nonextensile|1
+(adj)|inextensible|nonprotractile|extensile (antonym)
+nonfat|1
+(adj)|fat-free|fatless|light (similar term)|lite (similar term)|low-cal (similar term)|calorie-free (similar term)|skim (similar term)|skimmed (similar term)|fatty (antonym)
+nonfat dry milk|1
+(noun)|powdered milk (generic term)|dry milk (generic term)|dried milk (generic term)|milk powder (generic term)
+nonfatal|1
+(adj)|nonlethal (similar term)|fatal (antonym)
+nonfeasance|1
+(noun)|dereliction (generic term)
+nonfiction|1
+(noun)|nonfictional prose|prose (generic term)
+nonfictional|1
+(adj)|prose (related term)|fictional (antonym)
+nonfictional prose|1
+(noun)|nonfiction|prose (generic term)
+nonfigurative|1
+(adj)|abstract|abstractionist|nonobjective|nonrepresentational (similar term)
+nonfinancial|1
+(adj)|commercial enterprise|business enterprise|business (related term)|financial (antonym)
+nonfissile|1
+(adj)|fissile (antonym)
+nonfissionable|1
+(adj)|fissionable (antonym)
+nonflammable|1
+(adj)|noncombustible (similar term)|incombustible (similar term)
+nonflavored|1
+(adj)|unflavored|unflavoured|nonflavoured|tasteless (similar term)
+nonflavoured|1
+(adj)|unflavored|unflavoured|nonflavored|tasteless (similar term)
+nonflowering|1
+(adj)|flowerless|spore-bearing (similar term)|flowering (antonym)
+nonflowering plant|1
+(noun)|pteridophyte|vascular plant (generic term)|tracheophyte (generic term)
+nonfluent aphasia|1
+(noun)|motor aphasia|Broca's aphasia|ataxic aphasia|expressive aphasia|aphasia (generic term)
+nonfunctional|2
+(adj)|nonstructural (similar term)|cosmetic (similar term)|decorative (similar term)|ornamental (similar term)|unserviceable (related term)|functional (antonym)
+(adj)|malfunctioning|amiss (similar term)|awry (similar term)|haywire (similar term)|wrong (similar term)|bad (similar term)|defective (similar term)|dead (similar term)|out of whack (similar term)|run-down (similar term)|functioning (antonym)
+nonglutinous|1
+(adj)|nonviscid|nonadhesive (similar term)
+nongonococcal urethritis|1
+(noun)|NGU|urethritis (generic term)
+nongovernmental organization|1
+(noun)|NGO|organization (generic term)|organisation (generic term)
+nongranular|1
+(adj)|fine (similar term)
+nongregarious|1
+(adj)|nonsocial|solitary|ungregarious (similar term)
+nonhairy|1
+(adj)|hairless (similar term)
+nonharmonic|1
+(adj)|music (related term)|harmonic (antonym)
+nonhereditary|1
+(adj)|nontransmissible|noninheritable (similar term)|nonheritable (similar term)
+nonheritable|1
+(adj)|noninheritable|acquired (similar term)|congenital (similar term)|inborn (similar term)|innate (similar term)|learned (similar term)|nonhereditary (similar term)|nontransmissible (similar term)|nurtural (similar term)|inheritable (antonym)
+nonhierarchic|1
+(adj)|nonhierarchical|ungraded (similar term)|unordered (similar term)|unranked (similar term)|hierarchical (antonym)
+nonhierarchical|1
+(adj)|nonhierarchic|ungraded (similar term)|unordered (similar term)|unranked (similar term)|hierarchical (antonym)
+nonhuman|1
+(adj)|anthropoid (similar term)|anthropoidal (similar term)|apelike (similar term)|bloodless (similar term)|dehumanized (similar term)|dehumanised (similar term)|unhuman (similar term)|inhuman (similar term)|human (antonym)
+nonimitative|1
+(adj)|imitative (antonym)
+nonimmune|1
+(adj)|liable|nonresistant|unresistant|susceptible (similar term)
+nonindulgence|1
+(noun)|austerity|asceticism|self-discipline (generic term)|self-denial (generic term)
+nonindulgent|1
+(adj)|strict|austere (similar term)|stern (similar term)|blue (similar term)|puritan (similar term)|puritanic (similar term)|puritanical (similar term)|corrective (similar term)|disciplinary (similar term)|disciplinal (similar term)|monkish (similar term)|renunciant (similar term)|renunciative (similar term)|self-abnegating (similar term)|self-denying (similar term)|self-disciplined (similar term)|self-restraining (similar term)|severe (similar term)|spartan (similar term)|abstemious (related term)|indulgent (antonym)
+nonindustrial|1
+(adj)|developing (similar term)|underdeveloped (similar term)|unindustrialized (similar term)|unindustrialised (similar term)|industrial (antonym)
+noninfectious|1
+(adj)|noncommunicable (similar term)|noncontagious (similar term)|nontransmissible (similar term)|infectious (antonym)
+noninflammatory|1
+(adj)|unprovocative (similar term)|unprovoking (similar term)
+noninheritable|1
+(adj)|nonheritable|acquired (similar term)|congenital (similar term)|inborn (similar term)|innate (similar term)|learned (similar term)|nonhereditary (similar term)|nontransmissible (similar term)|nurtural (similar term)|inheritable (antonym)
+noninstitutional|1
+(adj)|institutional (antonym)
+noninstitutionalised|1
+(adj)|noninstitutionalized|institutionalized (antonym)
+noninstitutionalized|1
+(adj)|noninstitutionalised|institutionalized (antonym)
+nonintegrated|1
+(adj)|unintegrated|integrated (antonym)
+nonintellectual|1
+(adj)|anti-intellectual (similar term)|philistine (similar term)|lowbrow (similar term)|lowbrowed (similar term)|uncultivated (similar term)|mindless (similar term)|unscholarly (related term)|intellectual (antonym)
+noninterchangeable|1
+(adj)|asymmetrical (similar term)|asymmetric (similar term)
+noninterference|1
+(noun)|nonintervention|foreign policy (generic term)|interference (antonym)|intervention (antonym)
+nonintersecting|1
+(adj)|nonconvergent|parallel (similar term)
+nonintervention|1
+(noun)|noninterference|foreign policy (generic term)|interference (antonym)|intervention (antonym)
+noninvasive|1
+(adj)|invasive (antonym)
+nonionic|2
+(adj)|nonionized|nonionised|unionized|unionised|ionized (antonym)
+(adj)|nonpolar|particle|subatomic particle (related term)|ionic (antonym)
+nonionised|1
+(adj)|nonionized|unionized|unionised|nonionic|ionized (antonym)
+nonionized|1
+(adj)|nonionised|unionized|unionised|nonionic|ionized (antonym)
+nonjudgmental|1
+(adj)|judgmental (antonym)
+nonkosher|1
+(adj)|tref|terefah|unclean (similar term)|impure (similar term)
+nonleaded|1
+(adj)|lead-free|unleaded (similar term)|leadless (similar term)
+nonlegal|1
+(adj)|extralegal|illegal (similar term)
+nonlethal|1
+(adj)|nonfatal (similar term)
+nonlexical|1
+(adj)|language unit|linguistic unit (related term)
+nonlinear|1
+(adj)|linear (antonym)
+nonlinear correlation|1
+(noun)|curvilinear correlation|skew correlation|correlation (generic term)|correlational statistics (generic term)
+nonlinear distortion|1
+(noun)|amplitude distortion|distortion (generic term)
+nonlinear system|1
+(noun)|system (generic term)|scheme (generic term)
+nonlinguistic|1
+(adj)|communication (related term)|linguistic (antonym)
+nonliteral|1
+(adj)|figurative|analogical (similar term)|extended (similar term)|metaphorical (similar term)|metaphoric (similar term)|metonymic (similar term)|metonymical (similar term)|poetic (similar term)|synecdochic (similar term)|synecdochical (similar term)|tropical (similar term)|rhetorical (related term)|literal (antonym)
+nonliterary|1
+(adj)|unliterary|informal (similar term)
+nonliterate|1
+(adj)|preliterate|noncivilized (similar term)|noncivilised (similar term)
+nonliving|1
+(adj)|inanimate|non-living|dead|nonconscious (similar term)|animate (antonym)
+nonmagnetic|1
+(adj)|magnetic (antonym)
+nonmalignant|1
+(adj)|harmless|benign (similar term)|benignant (similar term)
+nonmalignant neoplasm|1
+(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant tumour|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+nonmalignant tumor|1
+(noun)|benign tumor|benign tumour|nonmalignant tumour|nonmalignant neoplasm|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+nonmalignant tumour|1
+(noun)|benign tumor|benign tumour|nonmalignant tumor|nonmalignant neoplasm|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+nonmandatory|1
+(adj)|nonobligatory|optional (similar term)
+nonmaterial|1
+(adj)|immaterial|intangible (similar term)|nonphysical (similar term)|insubstantial (related term)|unsubstantial (related term)|unreal (related term)|material (antonym)
+nonmeaningful|1
+(adj)|meaningless|empty (similar term)|hollow (similar term)|vacuous (similar term)|insignificant (similar term)|unmeaning (similar term)|mindless (similar term)|nonsense (similar term)|nonsensical (similar term)|pointless (similar term)|purposeless (similar term)|senseless (similar term)|insignificant (related term)|unimportant (related term)|purposeless (related term)|unimportant (related term)|meaningful (antonym)
+nonmechanical|2
+(adj)|nonmechanistic (similar term)|unmechanized (similar term)|unmechanised (similar term)|mechanical (antonym)
+(adj)|unmechanical|maladroit (similar term)
+nonmechanistic|1
+(adj)|nonmechanical (similar term)
+nonmedicinal|1
+(adj)|unmedicinal|unmedicative|unmedical|unhealthful (similar term)
+nonmember|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|member (antonym)
+nonmetal|2
+(adj)|nonmetallic|metalloid (similar term)|metallic (antonym)
+(noun)|chemical element (generic term)|element (generic term)
+nonmetallic|1
+(adj)|nonmetal|metalloid (similar term)|metallic (antonym)
+nonmetamorphic|1
+(adj)|ametabolic (similar term)|metamorphic (antonym)
+nonmigratory|1
+(adj)|resident|migratory (antonym)
+nonmilitary|1
+(adj)|unmilitary|unsoldierly (similar term)|military (antonym)
+nonmodern|1
+(adj)|antebellum (similar term)|horse-and-buggy (similar term)|medieval (similar term)|mediaeval (similar term)|gothic (similar term)|old-world (similar term)|Victorian (similar term)|old (related term)|past (related term)|modern (antonym)
+nonmonotonic|1
+(adj)|monotonic (antonym)
+nonmoral|1
+(adj)|amoral (similar term)|unmoral (similar term)
+nonmotile|1
+(adj)|immotile|immobile (similar term)
+nonmoving|1
+(adj)|unmoving|inactive (similar term)|motionless (similar term)|static (similar term)|still (similar term)|becalmed (similar term)|fixed (similar term)|set (similar term)|rigid (similar term)|frozen (similar term)|rooted (similar term)|stock-still (similar term)|inert (similar term)|sitting (similar term)|stationary (similar term)|immobile (related term)|moving (antonym)
+nonmusical|2
+(adj)|unmusical|musical (antonym)
+(adj)|unmusical|dissonant|musical (antonym)
+nonnative|3
+(adj)|native (antonym)
+(adj)|foreign-born|foreign (similar term)|strange (similar term)
+(adj)|foreign (similar term)|strange (similar term)
+nonnatural|1
+(adj)|otherworldly|preternatural|transcendental|supernatural (similar term)
+nonnegative|1
+(adj)|plus (similar term)
+nonnomadic|1
+(adj)|settled (similar term)
+nonnormative|1
+(adj)|nonstandard (similar term)
+nonobjective|1
+(adj)|abstract|abstractionist|nonfigurative|nonrepresentational (similar term)
+nonobligatory|1
+(adj)|nonmandatory|optional (similar term)
+nonobservance|1
+(noun)|nonconformity (generic term)|nonconformance (generic term)|observance (antonym)
+nonobservant|1
+(adj)|irreligious (similar term)
+nonoccurrence|1
+(noun)|absence (generic term)
+nonopening|1
+(adj)|closed (similar term)
+nonoperational|1
+(adj)|inactive|operational (antonym)
+nonoscillatory|1
+(adj)|aperiodic (similar term)|nonperiodic (similar term)
+nonparallel|2
+(adj)|serial|in series|asynchronous (similar term)
+(adj)|oblique (similar term)
+nonparametric|1
+(adj)|statistic (related term)
+nonparametric statistic|1
+(noun)|distribution free statistic|statistic (generic term)
+nonparametric statistics|1
+(noun)|statistics (generic term)
+nonparasitic|1
+(adj)|free-living|nonsymbiotic|independent (similar term)
+nonpareil|4
+(adj)|matchless|one|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+(noun)|ideal|paragon|saint|apotheosis|nonesuch|nonsuch|model (generic term)|role model (generic term)
+(noun)|sweet (generic term)|confection (generic term)
+(noun)|chocolate candy (generic term)
+nonparticipant|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+nonparticipation|1
+(noun)|non-engagement|non-involvement|group action (generic term)|involvement (antonym)|participation (antonym)|engagement (antonym)
+nonparticulate|1
+(adj)|particulate (antonym)
+nonparticulate radiation|1
+(noun)|electromagnetic radiation|electromagnetic wave|radiation (generic term)
+nonpartisan|2
+(adj)|nonpartizan|bipartisan (similar term)|bipartizan (similar term)|two-party (similar term)|two-way (similar term)|independent (similar term)|unbiased (similar term)|unbiassed (similar term)|partisan (antonym)
+(noun)|nonpartizan|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|partisan (antonym)
+nonpartisanship|1
+(noun)|impartiality|inclination (generic term)|disposition (generic term)|tendency (generic term)|partiality (antonym)
+nonpartizan|2
+(adj)|nonpartisan|bipartisan (similar term)|bipartizan (similar term)|two-party (similar term)|two-way (similar term)|independent (similar term)|unbiased (similar term)|unbiassed (similar term)|partisan (antonym)
+(noun)|nonpartisan|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|partisan (antonym)
+nonpasserine|1
+(adj)|bird (related term)|passerine (antonym)
+nonpasserine bird|1
+(noun)|bird (generic term)
+nonpayment|3
+(noun)|default|nonremittal|failure (generic term)
+(noun)|default|nonremittal|financial loss (generic term)|payment (antonym)
+(noun)|evasion|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)|payment (antonym)
+nonperformance|1
+(noun)|negligence|carelessness|neglect|nonaccomplishment (generic term)|nonachievement (generic term)
+nonperiodic|1
+(adj)|aperiodic|noncyclic (similar term)|nonoscillatory (similar term)|periodic (antonym)
+nonperson|1
+(noun)|unperson|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+nonpersonal|1
+(adj)|impersonal (similar term)
+nonphilosophic|1
+(adj)|nonphilosophical|philosophical (antonym)
+nonphilosophical|1
+(adj)|nonphilosophic|philosophical (antonym)
+nonphotosynthetic|1
+(adj)|chemical process|chemical change|chemical action (related term)|photosynthetic (antonym)
+nonphysical|1
+(adj)|intangible|immaterial (similar term)|nonmaterial (similar term)
+nonplus|1
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+nonplused|1
+(adj)|at a loss|nonplussed|puzzled|perplexed (similar term)
+nonplussed|1
+(adj)|at a loss|nonplused|puzzled|perplexed (similar term)
+nonpoisonous|2
+(adj)|non-poisonous|nontoxic (similar term)|atoxic (similar term)
+(adj)|non-poisonous|nontoxic|edible (similar term)|comestible (similar term)|eatable (similar term)
+nonpolar|1
+(adj)|nonionic|particle|subatomic particle (related term)|ionic (antonym)
+nonpolitical|1
+(adj)|apolitical (similar term)|unpolitical (similar term)|political (antonym)
+nonporous|1
+(adj)|porous (antonym)
+nonpregnant|1
+(adj)|pregnant (antonym)
+nonprehensile|1
+(adj)|prehensile (antonym)
+nonprescription|1
+(adj)|over-the-counter|prescription (antonym)
+nonproductive|1
+(adj)|unproductive (similar term)
+nonprofessional|1
+(adj)|amateur (similar term)|recreational (similar term)|unpaid (similar term)|lay (similar term)|professional (antonym)
+nonprofit|2
+(adj)|non-profit-making|noncommercial (similar term)
+(noun)|nonprofit organization|not-for-profit|organization (generic term)|organisation (generic term)
+nonprofit organization|1
+(noun)|nonprofit|not-for-profit|organization (generic term)|organisation (generic term)
+nonprognosticative|1
+(adj)|unprophetic (similar term)
+nonprogressive|1
+(adj)|fusty|standpat|unprogressive|conservative (similar term)
+nonproliferation|1
+(noun)|non-proliferation|prevention (generic term)|bar (generic term)|proliferation (antonym)|proliferation (antonym)
+nonproliferation center|1
+(noun)|Nonproliferation Center|NPC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nonproprietary|1
+(adj)|generic (similar term)|unpatented (similar term)|proprietary (antonym)
+nonprotractile|1
+(adj)|nonextensile|inextensible|extensile (antonym)
+nonpsychoactive|1
+(adj)|psychoactive (antonym)
+nonpublic|1
+(adj)|private (similar term)
+nonpurulent|1
+(adj)|antiseptic (similar term)
+nonracial|1
+(adj)|racial (antonym)
+nonracist|1
+(adj)|color-blind|colour-blind|unprejudiced (similar term)|impartial (similar term)
+nonradioactive|1
+(adj)|radioactive (antonym)
+nonrandom|1
+(adj)|orderly (similar term)|systematic (similar term)|purposive (similar term)|random (antonym)
+nonrapid eye movement|1
+(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|NREM|sleep (generic term)|slumber (generic term)
+nonrapid eye movement sleep|1
+(noun)|orthodox sleep|NREM sleep|nonrapid eye movement|NREM|sleep (generic term)|slumber (generic term)
+nonrational|2
+(adj)|irrational (similar term)
+(adj)|intuitive|visceral|illogical (similar term)|unlogical (similar term)
+nonreader|2
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|illiterate|illiterate person|ignoramus (generic term)|know nothing (generic term)|uneducated person (generic term)
+nonreciprocal|1
+(adj)|nonreciprocating (similar term)|unanswered (similar term)|unreciprocated (similar term)|unrequited (similar term)|reciprocal (antonym)
+nonreciprocating|1
+(adj)|nonreciprocal (similar term)
+nonrecreational|1
+(adj)|paid|professional (similar term)
+nonreflecting|1
+(adj)|nonreflective|echoless (similar term)|reflective (antonym)
+nonreflective|1
+(adj)|nonreflecting|echoless (similar term)|reflective (antonym)
+nonreligious person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|religious person (antonym)
+nonremittal|2
+(noun)|default|nonpayment|failure (generic term)
+(noun)|nonpayment|default|financial loss (generic term)|payment (antonym)
+nonrenewable|1
+(adj)|unrenewable|renewable (antonym)
+nonrepetitive|1
+(adj)|repetitive (antonym)
+nonrepresentational|1
+(adj)|abstract (similar term)|abstractionist (similar term)|nonfigurative (similar term)|nonobjective (similar term)|conventional (similar term)|formal (similar term)|schematic (similar term)|geometric (similar term)|geometrical (similar term)|hieratic (similar term)|protogeometric (similar term)|semiabstract (similar term)|abstract (related term)|representational (antonym)
+nonrepresentative|1
+(adj)|unsymbolic|representative (antonym)
+nonresident|2
+(adj)|resident (antonym)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|resident (antonym)
+nonresidential|1
+(adj)|residential (antonym)
+nonresilient|1
+(adj)|inelastic (similar term)
+nonresinous|1
+(adj)|non-resinous|nonresiny|non-resiny|nonadhesive (similar term)
+nonresiny|1
+(adj)|nonresinous|non-resinous|non-resiny|nonadhesive (similar term)
+nonresistance|1
+(noun)|group action (generic term)
+nonresistant|2
+(adj)|liable|nonimmune|unresistant|susceptible (similar term)
+(adj)|compliant (similar term)
+nonresonant|1
+(adj)|unreverberant|anechoic (similar term)|dead (similar term)|dull (similar term)|thudding (similar term)|reverberant (antonym)
+nonrestrictive|1
+(adj)|unrestrictive (similar term)
+nonrestrictive clause|1
+(noun)|descriptive clause|subordinate clause (generic term)|dependent clause (generic term)
+nonreticulate|1
+(adj)|reticulate (antonym)
+nonretractable|1
+(adj)|nonretractile|retractile (antonym)
+nonretractile|1
+(adj)|nonretractable|retractile (antonym)
+nonreturnable|1
+(adj)|returnable (antonym)
+nonreversible|1
+(adj)|one-sided|reversible (antonym)
+nonrhythmic|1
+(adj)|unrhythmical (similar term)|unrhythmic (similar term)
+nonrigid|1
+(adj)|rigid (antonym)
+nonruminant|1
+(adj)|animal order (related term)|ruminant (antonym)
+nonsectarian|1
+(adj)|unsectarian|ecumenic (similar term)|oecumenic (similar term)|ecumenical (similar term)|oecumenical (similar term)|interchurch (similar term)|interdenominational (similar term)|nondenominational (similar term)|undenominational (similar term)|sectarian (antonym)
+nonsegmental|1
+(adj)|unsegmented|united (similar term)
+nonsegregated|1
+(adj)|desegrated|unsegregated|integrated (similar term)
+nonsense|3
+(adj)|nonsensical|meaningless (similar term)|nonmeaningful (similar term)
+(noun)|bunk|nonsensicality|meaninglessness|hokum|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|folderal|falderol|frill|gimcrackery|gimcrack|trumpery|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+nonsense verse|1
+(noun)|amphigory|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+nonsensical|2
+(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|preposterous|ridiculous|foolish (similar term)
+(adj)|nonsense|meaningless (similar term)|nonmeaningful (similar term)
+nonsensicality|1
+(noun)|nonsense|bunk|meaninglessness|hokum|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+nonsensitive|1
+(adj)|unrestricted|unclassified (similar term)
+nonsexual|1
+(adj)|asexual|agamic (similar term)|agamous (similar term)|agamogenetic (similar term)|apomictic (similar term)|parthenogenetic (similar term)|fissiparous (similar term)|neuter (similar term)|sexless (similar term)|vegetal (similar term)|vegetative (similar term)|sexual (antonym)
+nonsignificant|1
+(adj)|significant (antonym)
+nonsingular matrix|1
+(noun)|square matrix (generic term)|singular matrix (antonym)
+nonskid|1
+(adj)|nonslippery (similar term)
+nonslip|1
+(adj)|nonslippery (similar term)
+nonslippery|1
+(adj)|nonskid (similar term)|nonslip (similar term)|rough (related term)|unsmooth (related term)|slippery (antonym)
+nonsmoker|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|smoker (antonym)
+(noun)|nonsmoking car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+nonsmoking car|1
+(noun)|nonsmoker|passenger car (generic term)|coach (generic term)|carriage (generic term)
+nonsocial|1
+(adj)|nongregarious|solitary|ungregarious (similar term)
+nonsocial infection|1
+(noun)|cross infection|infection (generic term)
+nonsolid color|1
+(noun)|nonsolid colour|dithered color|dithered colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+nonsolid colour|1
+(noun)|nonsolid color|dithered color|dithered colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+nonsovereign|1
+(adj)|nonautonomous|unfree (similar term)
+nonspatial|1
+(adj)|attribute (related term)|spatial (antonym)
+nonspeaking|1
+(adj)|walk-on|mute (similar term)|tongueless (similar term)|speaking (antonym)
+nonspecific|1
+(adj)|specific (antonym)|specific (antonym)
+nonspecific urethritis|1
+(noun)|NSU|urethritis (generic term)
+nonspherical|1
+(adj)|round shape (related term)|spherical (antonym)
+nonstandard|3
+(adj)|bad (similar term)|unacceptable (similar term)|unaccepted (similar term)|standard (antonym)
+(adj)|deficient (similar term)|inferior (similar term)|substandard (similar term)|nonnormative (similar term)|standard (antonym)
+(adj)|standard (antonym)
+nonstarter|2
+(noun)|failure|loser|unsuccessful person|unfortunate (generic term)|unfortunate person (generic term)|achiever (antonym)
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+nonsteroid|1
+(noun)|nonsteroidal|organic compound (generic term)
+nonsteroidal|2
+(adj)|organic compound (related term)|steroidal (antonym)
+(noun)|nonsteroid|organic compound (generic term)
+nonsteroidal anti-inflammatory|1
+(noun)|nonsteroidal anti-inflammatory drug|NSAID|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+nonsteroidal anti-inflammatory drug|1
+(noun)|nonsteroidal anti-inflammatory|NSAID|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+nonstick|1
+(adj)|slippery (similar term)|slippy (similar term)
+nonstop|3
+(adj)|direct (similar term)
+(adj)|around-the-clock|day-and-night|round-the-clock|continuous (similar term)|uninterrupted (similar term)
+(noun)|nonstop flight|flight (generic term)
+nonstop flight|1
+(noun)|nonstop|flight (generic term)
+nonstructural|1
+(adj)|nonfunctional (similar term)
+nonsubjective|1
+(adj)|objective|clinical (similar term)|impersonal (similar term)|neutral (similar term)|verifiable (similar term)|subjective (antonym)
+nonsubmergible|1
+(adj)|nonsubmersible|submersible (antonym)
+nonsubmersible|1
+(adj)|nonsubmergible|submersible (antonym)
+nonsuch|1
+(noun)|ideal|paragon|nonpareil|saint|apotheosis|nonesuch|model (generic term)|role model (generic term)
+nonsuppurative|1
+(adj)|bodily process|body process|bodily function|activity (related term)|suppurative (antonym)
+nonsurgical|1
+(adj)|medical procedure (related term)|surgical (antonym)
+nonsweet|1
+(adj)|sugarless|unsugared (similar term)|unsweetened (similar term)|dry (related term)|sugary (antonym)
+nonsyllabic|2
+(adj)|unsyllabic|unsyllabled (similar term)|syllabic (antonym)
+(adj)|syllabic (antonym)
+nonsymbiotic|1
+(adj)|free-living|nonparasitic|independent (similar term)
+nonsynchronous|1
+(adj)|unsynchronized|unsynchronised|unsynchronous|asynchronous (similar term)
+nonsynthetic|1
+(adj)|organic (similar term)
+nontaxable|1
+(adj)|exempt|duty-free (similar term)|tax-exempt (similar term)|tax-free (similar term)|untaxed (similar term)|unratable (similar term)|exempt (related term)|taxable (antonym)
+nontechnical|1
+(adj)|untechnical|technical (antonym)
+nontelescopic|1
+(adj)|nontelescoping|noncollapsible (similar term)|noncollapsable (similar term)
+nontelescoping|1
+(adj)|nontelescopic|noncollapsible (similar term)|noncollapsable (similar term)
+nonterritorial|1
+(adj)|territorial (antonym)
+nontextual matter|1
+(noun)|artwork|art|graphics|visual communication (generic term)
+nonthermal|1
+(adj)|energy (related term)|thermal (antonym)
+nonthrombocytopenic purpura|1
+(noun)|purpura (generic term)|peliosis (generic term)
+nontoxic|2
+(adj)|atoxic|antitoxic (similar term)|harmless (similar term)|nonpoisonous (similar term)|non-poisonous (similar term)|nonvenomous (similar term)|harmless (related term)|toxic (antonym)
+(adj)|nonpoisonous|non-poisonous|edible (similar term)|comestible (similar term)|eatable (similar term)
+nontraditional|1
+(adj)|untraditional|traditional (antonym)
+nontransferable|1
+(adj)|unassignable|untransferable|inalienable (similar term)|unalienable (similar term)
+nontranslational|1
+(adj)|change of location|travel (related term)|translational (antonym)
+nontransmissible|2
+(adj)|nonhereditary|noninheritable (similar term)|nonheritable (similar term)
+(adj)|noncommunicable|noncontagious|noninfectious (similar term)
+nontricyclic|1
+(noun)|nontricyclic drug|nontricyclic antidepressant|nontricyclic antidepressant drug|antidepressant (generic term)|antidepressant drug (generic term)
+nontricyclic antidepressant|1
+(noun)|nontricyclic|nontricyclic drug|nontricyclic antidepressant drug|antidepressant (generic term)|antidepressant drug (generic term)
+nontricyclic antidepressant drug|1
+(noun)|nontricyclic|nontricyclic drug|nontricyclic antidepressant|antidepressant (generic term)|antidepressant drug (generic term)
+nontricyclic drug|1
+(noun)|nontricyclic|nontricyclic antidepressant|nontricyclic antidepressant drug|antidepressant (generic term)|antidepressant drug (generic term)
+nonturbulent|1
+(adj)|unagitated (similar term)
+nonuniform|1
+(adj)|inhomogeneous|heterogeneous (similar term)|heterogenous (similar term)
+nonuniformity|1
+(noun)|dissimilarity (generic term)|unsimilarity (generic term)|uniformity (antonym)
+nonunion|1
+(adj)|open (similar term)|unorganized (similar term)|unorganised (similar term)|nonunionized (similar term)|nonunionised (similar term)|union (antonym)
+nonunionised|1
+(adj)|unorganized|unorganised|nonunionized|nonunion (similar term)
+nonunionized|1
+(adj)|unorganized|unorganised|nonunionised|nonunion (similar term)
+nonuple|1
+(adj)|ninefold|nine-fold|multiple (similar term)
+nonvascular organism|1
+(noun)|organism (generic term)|being (generic term)
+nonvascular plant|1
+(noun)|bryophyte|nonvascular organism (generic term)
+nonvenomous|1
+(adj)|nontoxic (similar term)|atoxic (similar term)
+nonverbal|3
+(adj)|gestural|communicative (similar term)|communicatory (similar term)
+(adj)|numerical (similar term)|mathematical (similar term)
+(adj)|communicative (similar term)|communicatory (similar term)
+nonverbal intelligence|1
+(noun)|intelligence (generic term)
+nonverbally|1
+(adv)|non-verbally
+nonviable|1
+(adj)|dead (similar term)
+nonviolence|1
+(noun)|passive resistance|nonviolent resistance|direct action (generic term)
+nonviolent|2
+(adj)|passive (similar term)|peaceful (similar term)|peaceful (related term)|unprovocative (related term)|unprovoking (related term)|violent (antonym)
+(adj)|unbloody|bloodless (similar term)
+nonviolent resistance|1
+(noun)|passive resistance|nonviolence|direct action (generic term)
+nonviolently|1
+(adv)|violently (antonym)
+nonviscid|1
+(adj)|nonglutinous|nonadhesive (similar term)
+nonvisual|1
+(adj)|invisible (similar term)|unseeable (similar term)
+nonvolatile|1
+(adj)|nonvolatilizable|nonvolatilisable|volatile (antonym)
+nonvolatile storage|1
+(noun)|non-volatile storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)|volatile storage (antonym)|volatile storage (antonym)
+nonvolatilisable|1
+(adj)|nonvolatile|nonvolatilizable|volatile (antonym)
+nonvolatilizable|1
+(adj)|nonvolatile|nonvolatilisable|volatile (antonym)
+nonvoluntary|1
+(adj)|involuntary|unvoluntary|driven (similar term)|goaded (similar term)|forced (similar term)|unconscious (similar term)|unwilled (similar term)|unwilling (similar term)|unconscious (related term)|unwilling (related term)|voluntary (antonym)
+nonwashable|1
+(adj)|washable (antonym)
+nonwoody|1
+(adj)|herbaceous (similar term)|pulpy (similar term)|squasy (similar term)|woody (antonym)
+nonworker|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|worker (antonym)
+noodle|2
+(noun)|pasta (generic term)|alimentary paste (generic term)
+(noun)|attic|bean|bonce|noggin|dome|human head (generic term)
+nook|2
+(noun)|retreat (generic term)
+(noun)|corner|area (generic term)
+nook and cranny|1
+(noun)|nooks and crannies|detail (generic term)|item (generic term)|point (generic term)
+nookie|1
+(noun)|fuck|fucking|screw|screwing|ass|nooky|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+nooks and crannies|1
+(noun)|nook and cranny|detail (generic term)|item (generic term)|point (generic term)
+nooky|1
+(noun)|fuck|fucking|screw|screwing|ass|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+noon|1
+(noun)|twelve noon|high noon|midday|noonday|noontide|hour (generic term)|time of day (generic term)
+noonan's syndrome|1
+(noun)|Noonan's syndrome|syndrome (generic term)
+noonday|1
+(noun)|noon|twelve noon|high noon|midday|noontide|hour (generic term)|time of day (generic term)
+noontide|1
+(noun)|noon|twelve noon|high noon|midday|noonday|hour (generic term)|time of day (generic term)
+noose|4
+(noun)|snare|gin|trap (generic term)
+(noun)|running noose|slip noose|loop (generic term)
+(verb)|loop (generic term)|intertwine (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+nootka|2
+(noun)|Nootka|Wakashan (generic term)
+(noun)|Nootka|Wakashan (generic term)|Wakashan language (generic term)
+nootka cypress|1
+(noun)|yellow cypress|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar (generic term)|cedar tree (generic term)
+nopal|2
+(noun)|Opuntia lindheimeri|prickly pear (generic term)|prickly pear cactus (generic term)
+(noun)|cactus (generic term)
+nopalea|1
+(noun)|Nopalea|genus Nopalea|dicot genus (generic term)|magnoliopsid genus (generic term)
+nor'-east|2
+(noun)|northeast|northeastward|NE|compass point (generic term)|point (generic term)
+(adv)|northeast|north-east
+nor'-nor'-east|2
+(noun)|north northeast|NNE|compass point (generic term)|point (generic term)
+(adv)|north-northeast
+nor'-nor'-west|2
+(noun)|north northwest|NNW|compass point (generic term)|point (generic term)
+(adv)|north-northwest
+nor'-west|2
+(noun)|northwest|northwestward|NW|compass point (generic term)|point (generic term)
+(adv)|northwest|north-west
+nor-q-d|1
+(noun)|Nor-Q-D|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+noradrenaline|1
+(noun)|norepinephrine|catecholamine (generic term)|monoamine neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+norbert wiener|1
+(noun)|Wiener|Norbert Wiener|mathematician (generic term)
+nord-pas-de-calais|1
+(noun)|Nord-Pas-de-Calais|French region (generic term)
+nordic|4
+(adj)|Nordic|Germanic|Germanic language (related term)
+(adj)|Nordic|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|blond (similar term)|blonde (similar term)|light-haired (similar term)
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+noreaster|1
+(noun)|northeaster|storm (generic term)|violent storm (generic term)
+noreg|1
+(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country (generic term)|Scandinavian nation (generic term)
+norepinephrine|1
+(noun)|noradrenaline|catecholamine (generic term)|monoamine neurotransmitter (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+norethandrolone|1
+(noun)|norethindrone|norethindrone acetate|Norlutin|progestin (generic term)|progestogen (generic term)
+norethindrone|1
+(noun)|norethindrone acetate|norethandrolone|Norlutin|progestin (generic term)|progestogen (generic term)
+norethindrone acetate|1
+(noun)|norethindrone|norethandrolone|Norlutin|progestin (generic term)|progestogen (generic term)
+norethynodrel|1
+(noun)|progestin (generic term)|progestogen (generic term)
+norflex|1
+(noun)|orphenadrine|Norflex|muscle relaxant (generic term)
+norfolk|1
+(noun)|Norfolk|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+norfolk island|1
+(noun)|Norfolk Island|island (generic term)
+norfolk island pine|1
+(noun)|Araucaria heterophylla|Araucaria excelsa|araucaria (generic term)
+norfolk jacket|1
+(noun)|Norfolk jacket|jacket (generic term)
+norfolk terrier|1
+(noun)|Norfolk terrier|terrier (generic term)
+norfolk wherry|1
+(noun)|wherry|Norfolk wherry|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+norge|1
+(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country (generic term)|Scandinavian nation (generic term)
+norgestrel|1
+(noun)|progestin (generic term)|progestogen (generic term)
+noria|1
+(noun)|waterwheel (generic term)|water wheel (generic term)
+norinyl|1
+(noun)|Norinyl|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+norlestrin|1
+(noun)|Norlestrin|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+norlutin|1
+(noun)|norethindrone|norethindrone acetate|norethandrolone|Norlutin|progestin (generic term)|progestogen (generic term)
+norm|2
+(noun)|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|average|statistic (generic term)
+norma|1
+(noun)|Norma|constellation (generic term)
+norma jean baker|1
+(noun)|Monroe|Marilyn Monroe|Norma Jean Baker|actress (generic term)
+normal|5
+(adj)|average (similar term)|mean (similar term)|median (similar term)|average (similar term)|modal (similar term)|average (similar term)|natural (similar term)|regular (similar term)|typical (similar term)|sane (related term)|standard (related term)|abnormal (antonym)
+(adj)|paranormal (antonym)
+(adj)|abnormal (antonym)
+(adj)|perpendicular (similar term)
+(noun)|convention|pattern|rule|formula|practice (generic term)
+normal curve|1
+(noun)|bell-shaped curve|Gaussian curve|Gaussian shape|curve (generic term)|curved shape (generic term)
+normal distribution|1
+(noun)|Gaussian distribution|distribution (generic term)|statistical distribution (generic term)
+normal dwarf|1
+(noun)|primordial dwarf|hypoplastic dwarf|true dwarf|dwarf (generic term)|midget (generic term)|nanus (generic term)
+normal fault|1
+(noun)|gravity fault|common fault|inclined fault (generic term)
+normal school|1
+(noun)|teachers college|junior college (generic term)
+normalcy|2
+(noun)|normality|condition (generic term)|status (generic term)|abnormality (antonym)
+(noun)|normality|expectedness (generic term)
+normalisation|1
+(noun)|standardization|standardisation|normalization|social control (generic term)
+normalise|2
+(verb)|normalize|change (generic term)
+(verb)|normalize|renormalize|renormalise|change (generic term)|alter (generic term)|modify (generic term)
+normaliser|1
+(noun)|normalizer|changer (generic term)|modifier (generic term)
+normality|4
+(noun)|N|relative quantity (generic term)
+(noun)|normalcy|condition (generic term)|status (generic term)|abnormality (antonym)
+(noun)|normalcy|expectedness (generic term)
+(noun)|conformity (generic term)|conformance (generic term)
+normalization|1
+(noun)|standardization|standardisation|normalisation|social control (generic term)
+normalize|3
+(verb)|normalise|change (generic term)
+(verb)|normalise|renormalize|renormalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|anneal|temper|toughen (generic term)
+normalizer|1
+(noun)|normaliser|changer (generic term)|modifier (generic term)
+normally|1
+(adv)|usually|unremarkably|commonly|ordinarily|remarkably (antonym)
+norman|5
+(adj)|Norman|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|Norman|Frenchman|Frenchwoman|French person (related term)
+(noun)|Norman|Jessye Norman|soprano (generic term)
+(noun)|Norman|Greg Norman|Gregory John Norman|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|Norman|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+norman-french|1
+(noun)|Norman-French|Old North French|French (generic term)
+norman architecture|1
+(noun)|Norman architecture|Romanesque (generic term)|Romanesque architecture (generic term)
+norman conquest|1
+(noun)|Norman Conquest|conquest (generic term)|conquering (generic term)|subjection (generic term)|subjugation (generic term)
+norman jewison|1
+(noun)|Jewison|Norman Jewison|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+norman mailer|1
+(noun)|Mailer|Norman Mailer|writer (generic term)|author (generic term)
+norman mattoon thomas|1
+(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist (generic term)
+norman rockwell|1
+(noun)|Rockwell|Norman Rockwell|illustrator (generic term)
+norman thomas|1
+(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist (generic term)
+normandie|1
+(noun)|Normandie|Normandy|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+normandy|1
+(noun)|Normandie|Normandy|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+normative|2
+(adj)|standard|criterion|measure|touchstone (related term)
+(adj)|prescriptive|descriptive (antonym)
+normodyne|1
+(noun)|labetalol|labetalol hydrochloride|Trandate|Normodyne|blocker (generic term)|blocking agent (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+normotensive|1
+(adj)|hypertensive (antonym)|hypotensive (antonym)
+normothermia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+norn|1
+(noun)|Norn|Norse deity (generic term)
+norris|1
+(noun)|Norris|Frank Norris|Benjamin Franklin Norris Jr.|writer (generic term)|author (generic term)
+norrish|1
+(noun)|Norrish|Ronald George Wreyford Norrish|chemist (generic term)
+norse|5
+(adj)|Scandinavian|Norse|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|Norwegian|Norse|Scandinavian country|Scandinavian nation (related term)
+(noun)|Scandinavian|Norse|Northman|European (generic term)
+(noun)|Norwegian|Norseman|Norse|European (generic term)
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+norse deity|1
+(noun)|Norse deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+norse mythology|1
+(noun)|Norse mythology|mythology (generic term)
+norseman|1
+(noun)|Norwegian|Norseman|Norse|European (generic term)
+north|8
+(adj)|northbound (similar term)|northward (similar term)|north-central (similar term)|northerly (similar term)|northern (similar term)|northerly (similar term)|northern (similar term)|northernmost (similar term)|northmost (similar term)|northeastern (similar term)|northeasterly (similar term)|northeast (similar term)|northeasterly (similar term)|northeast (similar term)|northeastward (similar term)|northwestern (similar term)|northwesterly (similar term)|northwest (similar term)|northwesterly (similar term)|northwest (similar term)|northwestward (similar term)|south (antonym)
+(noun)|North|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Union|North|United States (generic term)|United States of America (generic term)|America (generic term)|the States (generic term)|US (generic term)|U.S. (generic term)|USA (generic term)|U.S.A. (generic term)
+(noun)|due north|northward|N|cardinal compass point (generic term)
+(noun)|North|northland|Septentrion|region (generic term)
+(noun)|magnetic north|compass north|direction (generic term)
+(noun)|North|Frederick North|Second Earl of Guilford|statesman (generic term)|solon (generic term)|national leader (generic term)
+(adv)|to the north|in the north|northerly|northwards|northward
+north-central|2
+(adj)|northern (similar term)
+(adj)|north (similar term)
+north-east|1
+(adv)|northeast|nor'-east
+north-northeast|1
+(adv)|nor'-nor'-east
+north-northwest|1
+(adv)|nor'-nor'-west
+north-polar|1
+(adj)|Arctic|polar (similar term)
+north-seeking pole|1
+(noun)|positive pole|positive magnetic pole|pole (generic term)|magnetic pole (generic term)
+north-south direction|1
+(noun)|direction (generic term)|way (generic term)
+north-west|1
+(adv)|northwest|nor'-west
+north africa|1
+(noun)|North Africa|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+north african|1
+(adj)|North African|geographical area|geographic area|geographical region|geographic region (related term)
+north america|2
+(noun)|North America|continent (generic term)
+(noun)|North America|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+north american|2
+(adj)|North American|continent (related term)
+(noun)|North American|American (generic term)
+north american country|1
+(noun)|North American country|North American nation|country (generic term)|state (generic term)|land (generic term)
+north american free trade agreement|1
+(noun)|North American Free Trade Agreement|NAFTA|free trade (generic term)
+north american nation|1
+(noun)|North American country|North American nation|country (generic term)|state (generic term)|land (generic term)
+north atlantic|1
+(noun)|North Atlantic|part (generic term)|piece (generic term)
+north atlantic council|1
+(noun)|North Atlantic Council|NAC|council (generic term)
+north atlantic treaty|1
+(noun)|North Atlantic Treaty|treaty (generic term)|pact (generic term)|accord (generic term)
+north atlantic treaty organization|1
+(noun)|North Atlantic Treaty Organization|NATO|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+north borneo|1
+(noun)|Sabah|North Borneo|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+north by east|1
+(noun)|NbE|compass point (generic term)|point (generic term)
+north by west|1
+(noun)|NbW|compass point (generic term)|point (generic term)
+north carolina|2
+(noun)|North Carolina|Old North State|Tar Heel State|NC|American state (generic term)
+(noun)|North Carolina|Colony (generic term)
+north carolinian|1
+(noun)|North Carolinian|Tarheel|American (generic term)
+north cascades national park|1
+(noun)|North Cascades National Park|national park (generic term)
+north celestial pole|1
+(noun)|pole (generic term)|celestial pole (generic term)
+north channel|1
+(noun)|North Channel|strait (generic term)|sound (generic term)
+north dakota|1
+(noun)|North Dakota|Peace Garden State|ND|American state (generic term)
+north dakotan|1
+(noun)|North Dakotan|American (generic term)
+north dravidian|1
+(noun)|North Dravidian|Dravidian (generic term)|Dravidic (generic term)|Dravidian language (generic term)
+north equatorial current|1
+(noun)|North Equatorial Current|equatorial current (generic term)
+north frigid zone|1
+(noun)|Arctic|Arctic Zone|North Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+north germanic|1
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+north germanic language|1
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+north island|1
+(noun)|North Island|island (generic term)
+north island edelweiss|1
+(noun)|Leucogenes leontopodium|wildflower (generic term)|wild flower (generic term)
+north korea|1
+(noun)|North Korea|Democratic People's Republic of Korea|D.P.R.K.|DPRK|Asian country (generic term)|Asian nation (generic term)
+north korean|2
+(adj)|North Korean|Asian country|Asian nation (related term)
+(noun)|North Korean|Korean (generic term)
+north korean monetary unit|1
+(noun)|North Korean monetary unit|monetary unit (generic term)
+north korean won|1
+(noun)|North Korean won|won|North Korean monetary unit (generic term)
+north northeast|1
+(noun)|nor'-nor'-east|NNE|compass point (generic term)|point (generic term)
+north northwest|1
+(noun)|nor'-nor'-west|NNW|compass point (generic term)|point (generic term)
+north pacific|1
+(noun)|North Pacific|part (generic term)|piece (generic term)
+north peak|1
+(noun)|North Peak|mountain peak (generic term)
+north platte|2
+(noun)|North Platte|North Platte River|river (generic term)
+(noun)|North Platte|town (generic term)
+north platte river|1
+(noun)|North Platte|North Platte River|river (generic term)
+north pole|1
+(noun)|North Pole|pole (generic term)
+north sea|1
+(noun)|North Sea|sea (generic term)
+north side|1
+(noun)|side (generic term)
+north star|1
+(noun)|Polaris|North Star|pole star|polar star|polestar|variable star (generic term)|variable (generic term)|lodestar (generic term)|loadstar (generic term)
+north star state|1
+(noun)|Minnesota|Gopher State|North Star State|MN|American state (generic term)
+north temperate zone|1
+(noun)|North Temperate Zone|Temperate Zone (generic term)
+north vietnam|1
+(noun)|North Vietnam|Asian country (generic term)|Asian nation (generic term)
+north vietnamese|1
+(adj)|North Vietnamese|Asian country|Asian nation (related term)
+north wind|1
+(noun)|northerly|norther|boreas|wind (generic term)|air current (generic term)|current of air (generic term)
+north yorkshire|1
+(noun)|North Yorkshire|county (generic term)
+northampton|1
+(noun)|Northampton|city (generic term)|metropolis (generic term)|urban center (generic term)
+northamptonshire|1
+(noun)|Northamptonshire|county (generic term)
+northbound|1
+(adj)|northward|north (similar term)
+northeast|5
+(adj)|northeastern|northeasterly|north (similar term)
+(adj)|northeasterly|north (similar term)
+(noun)|nor'-east|northeastward|NE|compass point (generic term)|point (generic term)
+(noun)|Northeast|northeastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(adv)|north-east|nor'-east
+northeast by east|1
+(noun)|NEbE|compass point (generic term)|point (generic term)
+northeast by north|1
+(noun)|NEbN|compass point (generic term)|point (generic term)
+northeaster|1
+(noun)|noreaster|storm (generic term)|violent storm (generic term)
+northeasterly|2
+(adj)|northeast|north (similar term)
+(adj)|northeastern|northeast|north (similar term)
+northeastern|2
+(adj)|northeasterly|northeast|north (similar term)
+(adj)|eastern (similar term)
+northeastern united states|1
+(noun)|Northeast|northeastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+northeastward|3
+(adj)|north (similar term)
+(noun)|northeast|nor'-east|NE|compass point (generic term)|point (generic term)
+(adv)|northeastwardly
+northeastwardly|1
+(adv)|northeastward
+norther|1
+(noun)|north wind|northerly|boreas|wind (generic term)|air current (generic term)|current of air (generic term)
+northerly|3
+(adj)|northern|north (similar term)
+(noun)|north wind|norther|boreas|wind (generic term)|air current (generic term)|current of air (generic term)
+(adv)|north|to the north|in the north|northwards|northward
+northern|4
+(adj)|blue (similar term)|Union (similar term)|Federal (similar term)|Yankee (similar term)|southern (antonym)
+(adj)|northerly|north (similar term)
+(adj)|boreal (similar term)|circumboreal (similar term)|north-central (similar term)|septrional (similar term)|southern (antonym)
+(noun)|Northern|Middle English (generic term)
+northern alliance|1
+(noun)|Northern Alliance|United Front|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+northern baptist|1
+(noun)|Northern Baptist|Baptist (generic term)
+northern baptist convention|1
+(noun)|American Baptist Convention|Northern Baptist Convention|association (generic term)
+northern bedstraw|1
+(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw (generic term)
+northern beech fern|1
+(noun)|long beech fern|narrow beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+northern bobwhite|1
+(noun)|Colinus virginianus|bobwhite (generic term)|bobwhite quail (generic term)|partridge (generic term)
+northern bog lemming|1
+(noun)|Synaptomys borealis|lemming (generic term)
+northern casque-headed frog|1
+(noun)|lowland burrowing treefrog|Pternohyla fodiens|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+northern cricket frog|1
+(noun)|Acris crepitans|cricket frog (generic term)
+northern cross|1
+(noun)|Northern Cross|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+northern dewberry|1
+(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+northern dune tansy|1
+(noun)|Tanacetum douglasii|wildflower (generic term)|wild flower (generic term)
+northern europe|1
+(noun)|northern Europe|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+northern flying squirrel|1
+(noun)|Glaucomys sabrinus|American flying squirrel (generic term)
+northern harrier|1
+(noun)|marsh hawk|hen harrier|Circus cyaneus|harrier (generic term)
+northern hemisphere|1
+(noun)|hemisphere (generic term)
+northern holly fern|1
+(noun)|Polystichum lonchitis|holly fern (generic term)
+northern ireland|1
+(noun)|Northern Ireland|European country (generic term)|European nation (generic term)
+northern jacob's ladder|1
+(noun)|northern Jacob's ladder|Polemonium boreale|polemonium (generic term)
+northern lights|1
+(noun)|aurora borealis|aurora (generic term)
+northern lobster|2
+(noun)|American lobster|Northern lobster|Maine lobster|lobster (generic term)
+(noun)|American lobster|Northern lobster|Maine lobster|Homarus americanus|true lobster (generic term)
+northern mammoth|1
+(noun)|woolly mammoth|Mammuthus primigenius|mammoth (generic term)
+northern mariana islands|1
+(noun)|Northern Marianas|Northern Mariana Islands|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+northern marianas|1
+(noun)|Northern Marianas|Northern Mariana Islands|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+northern oak fern|1
+(noun)|limestone fern|Gymnocarpium robertianum|fern (generic term)
+northern oriole|1
+(noun)|Icterus galbula|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+northern parula|1
+(noun)|parula warbler|Parula americana|New World warbler (generic term)|wood warbler (generic term)
+northern phalarope|1
+(noun)|Lobipes lobatus|phalarope (generic term)
+northern pike|1
+(noun)|Esox lucius|pike (generic term)
+northern pin oak|1
+(noun)|jack oak|Quercus ellipsoidalis|oak (generic term)|oak tree (generic term)
+northern pitch pine|1
+(noun)|pitch pine|Pinus rigida|pine (generic term)|pine tree (generic term)|true pine (generic term)
+northern pocket gopher|1
+(noun)|Thomomys talpoides|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+northern porgy|1
+(noun)|scup|northern scup|Stenotomus chrysops|porgy (generic term)
+northern red oak|1
+(noun)|Quercus rubra|Quercus borealis|red oak (generic term)
+northern rhodesia|1
+(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country (generic term)|African nation (generic term)
+northern scup|1
+(noun)|scup|northern porgy|Stenotomus chrysops|porgy (generic term)
+northern sea robin|1
+(noun)|Prionotus carolinus|sea robin (generic term)|searobin (generic term)
+northern shrike|1
+(noun)|Lanius borealis|butcherbird (generic term)
+northern snakehead|1
+(noun)|fish (generic term)
+northern snow bedstraw|1
+(noun)|Northern bedstraw|Northern snow bedstraw|Galium boreale|bedstraw (generic term)
+northern spy|1
+(noun)|Northern Spy|eating apple (generic term)|dessert apple (generic term)
+northern storm petrel|1
+(noun)|stormy petrel|Hydrobates pelagicus|storm petrel (generic term)
+northern territory|1
+(noun)|Northern Territory|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+northern white cedar|1
+(noun)|American arborvitae|white cedar|Thuja occidentalis|arborvitae (generic term)
+northern whiting|1
+(noun)|Menticirrhus saxatilis|whiting (generic term)
+northern woodsia|1
+(noun)|Alpine woodsia|flower-cup fern|Woodsia alpina|woodsia (generic term)
+northerner|2
+(noun)|Northerner|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Yankee|Yank|Northerner|American (generic term)
+northernmost|1
+(adj)|northmost|north (similar term)
+northernness|1
+(noun)|position (generic term)|spatial relation (generic term)|southernness (antonym)
+northland|1
+(noun)|North|Septentrion|region (generic term)
+northman|1
+(noun)|Scandinavian|Norse|Northman|European (generic term)
+northmost|1
+(adj)|northernmost|north (similar term)
+northrop|1
+(noun)|Northrop|John Howard Northrop|biochemist (generic term)
+northrop frye|1
+(noun)|Frye|Northrop Frye|Herman Northrop Frye|literary critic (generic term)
+northumberland|1
+(noun)|Northumberland|county (generic term)
+northumbria|1
+(noun)|Northumbria|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+northward|3
+(adj)|northbound|north (similar term)
+(noun)|north|due north|N|cardinal compass point (generic term)
+(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 (similar term)
+(adj)|northwesterly|north (similar term)
+(noun)|Northwest|northwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|nor'-west|northwestward|NW|compass point (generic term)|point (generic term)
+(adv)|north-west|nor'-west
+northwest by north|1
+(noun)|NWbN|compass point (generic term)|point (generic term)
+northwest by west|1
+(noun)|NWbW|compass point (generic term)|point (generic term)
+northwest passage|1
+(noun)|Northwest Passage|path (generic term)|route (generic term)|itinerary (generic term)
+northwest territories|1
+(noun)|Northwest Territories|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+northwest wind|1
+(noun)|northwester|wind (generic term)|air current (generic term)|current of air (generic term)
+northwester|1
+(noun)|northwest wind|wind (generic term)|air current (generic term)|current of air (generic term)
+northwesterly|2
+(adj)|northwest|north (similar term)
+(adj)|northwestern|northwest|north (similar term)
+northwestern|2
+(adj)|northwesterly|northwest|north (similar term)
+(adj)|western (similar term)
+northwestern united states|1
+(noun)|Northwest|northwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+northwestward|3
+(adj)|north (similar term)
+(noun)|northwest|nor'-west|NW|compass point (generic term)|point (generic term)
+(adv)|northwestwardly
+northwestwardly|1
+(adv)|northwestward
+nortriptyline|1
+(noun)|Pamelor|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+noruz|1
+(noun)|Noruz|Nowruz|Nowrooz|vernal equinox (generic term)|March equinox (generic term)|spring equinox (generic term)
+norvasc|1
+(noun)|amlodipine besylate|Norvasc|vasodilator (generic term)|vasodilative (generic term)
+norvir|1
+(noun)|ritonavir|Norvir|protease inhibitor (generic term)|PI (generic term)
+norway|1
+(noun)|Norway|Kingdom of Norway|Norge|Noreg|Scandinavian country (generic term)|Scandinavian nation (generic term)
+norway lobster|1
+(noun)|Norway lobster|Nephrops norvegicus|lobster (generic term)
+norway maple|1
+(noun)|Norway maple|Acer platanoides|maple (generic term)
+norway rat|1
+(noun)|brown rat|Norway rat|Rattus norvegicus|rat (generic term)
+norway spruce|1
+(noun)|Norway spruce|Picea abies|spruce (generic term)
+norwegian|3
+(adj)|Norwegian|Norse|Scandinavian country|Scandinavian nation (related term)
+(noun)|Norwegian|Norseman|Norse|European (generic term)
+(noun)|Norwegian|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+norwegian elkhound|1
+(noun)|Norwegian elkhound|elkhound|hound (generic term)|hound dog (generic term)
+norwegian krone|1
+(noun)|Norwegian krone|krone|Norwegian monetary unit (generic term)
+norwegian lobster|1
+(noun)|Norwegian lobster|langoustine|scampo|lobster (generic term)
+norwegian monetary unit|1
+(noun)|Norwegian monetary unit|monetary unit (generic term)
+norwegian sea|1
+(noun)|Norwegian Sea|sea (generic term)
+norwich terrier|1
+(noun)|Norwich terrier|terrier (generic term)
+nose|13
+(noun)|olfactory organ|chemoreceptor (generic term)
+(noun)|front (generic term)
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|symbol (generic term)
+(noun)|smell (generic term)|sense of smell (generic term)|olfaction (generic term)|olfactory modality (generic term)
+(noun)|skill (generic term)|science (generic term)
+(noun)|nozzle|spout (generic term)
+(verb)|intrude|horn in|pry|poke|search (generic term)|look (generic term)|nose out (related term)
+(verb)|advance (generic term)|bring forward (generic term)
+(verb)|scent|wind|smell (generic term)|scent out (related term)
+(verb)|push (generic term)|force (generic term)
+(verb)|nuzzle|caress (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+nose candy|1
+(noun)|coke|blow|snow|C|cocaine (generic term)|cocain (generic term)
+nose cone|1
+(noun)|ogive|front (generic term)
+nose count|1
+(noun)|census|nosecount|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+nose dive|1
+(noun)|dive|nosedive|descent (generic term)
+nose drops|1
+(noun)|big H|hell dust|smack|thunder|skag|scag|heroin (generic term)|diacetylmorphine (generic term)
+nose flute|1
+(noun)|flute (generic term)|transverse flute (generic term)
+nose job|1
+(noun)|rhinoplasty|face lift (generic term)|facelift (generic term)|lift (generic term)|face lifting (generic term)|cosmetic surgery (generic term)|rhytidectomy (generic term)|rhytidoplasty (generic term)|nip and tuck (generic term)
+nose out|1
+(verb)|sniff out|scent out|smell out
+nose ring|1
+(noun)|hoop (generic term)|ring (generic term)
+nosebag|1
+(noun)|feedbag|bag (generic term)
+nosebleed|1
+(noun)|epistaxis|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+nosecount|1
+(noun)|census|nose count|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+nosed|1
+(adj)|hook-nosed (similar term)|pug-nosed (similar term)|pug-nose (similar term)|short-nosed (similar term)|snub-nosed (similar term)|sharp-nosed (similar term)|tube-nosed (similar term)|noseless (antonym)
+nosedive|3
+(noun)|decline (generic term)|diminution (generic term)
+(noun)|dive|nose dive|descent (generic term)
+(verb)|dive (generic term)|plunge (generic term)|plunk (generic term)
+nosegay|1
+(noun)|bouquet|corsage|posy|flower arrangement (generic term)
+noseless|1
+(adj)|nosed (antonym)
+nosepiece|2
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|bridge|link (generic term)|linkup (generic term)|tie (generic term)|tie-in (generic term)
+nosewheel|1
+(noun)|wheel (generic term)
+nosey|1
+(adj)|nosy|prying|snoopy|curious (similar term)
+nosey-parker|1
+(noun)|busybody|nosy-parker|quidnunc|meddler (generic term)
+nosh|2
+(noun)|bite (generic term)|collation (generic term)|snack (generic term)
+(verb)|snack|eat (generic term)
+nosh-up|1
+(noun)|meal (generic term)|repast (generic term)
+nosher|1
+(noun)|snacker|eater (generic term)|feeder (generic term)
+nosiness|1
+(noun)|prying|snoopiness|curiousness (generic term)|inquisitiveness (generic term)
+nosocomial|1
+(adj)|medical building|health facility|healthcare facility (related term)
+nosology|1
+(noun)|diagnostics|medicine (generic term)|medical specialty (generic term)
+nostalgia|1
+(noun)|longing (generic term)|yearning (generic term)|hungriness (generic term)
+nostalgic|1
+(adj)|homesick|unhappy (similar term)
+nostoc|1
+(noun)|cyanobacteria (generic term)|blue-green algae (generic term)
+nostocaceae|1
+(noun)|Nostocaceae|family Nostocaceae|bacteria family (generic term)
+nostradamus|1
+(noun)|Nostradamus|Michel de Notredame|astrologer (generic term)|astrologist (generic term)
+nostril|1
+(noun)|anterior naris|naris (generic term)
+nostrum|2
+(noun)|panacea|catholicon|cure-all|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|patent medicine (generic term)
+nosy|1
+(adj)|nosey|prying|snoopy|curious (similar term)
+nosy-parker|1
+(noun)|busybody|nosey-parker|quidnunc|meddler (generic term)
+not|1
+(adv)|non
+not-for-profit|1
+(noun)|nonprofit organization|nonprofit|organization (generic term)|organisation (generic term)
+not absolutely|1
+(adv)|conditionally|unconditionally (antonym)
+not bad|1
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|peachy|slap-up|swell|smashing|good (similar term)
+not by a blame sight|1
+(adv)|by no means|not by a long sight|by all means (antonym)
+not by a long sight|1
+(adv)|by no means|not by a blame sight|by all means (antonym)
+not delayed|1
+(adv)|on time|not late
+not due|1
+(adj)|undue|due (antonym)
+not far|1
+(adv)|shortly
+not fluently|1
+(adv)|haltingly
+not guilty|1
+(adj)|acquitted|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+not intrusive|1
+(adj)|unintrusive|intrusive (antonym)
+not late|1
+(adv)|on time|not delayed
+not listed|1
+(adj)|ex-directory|unlisted (similar term)
+not long|1
+(adv)|shortly
+not suitably|1
+(adv)|inappropriately|unsuitably|appropriately (antonym)|suitably (antonym)
+not surprised|1
+(adj)|unsurprised|surprised (antonym)
+not to mention|1
+(adv)|let alone
+not traded|1
+(adj)|unlisted (similar term)
+not very likely|1
+(adv)|in a pig's eye
+not yet|1
+(adv)|already (antonym)
+nota bene|1
+(noun)|NB|N.B.|note (generic term)|annotation (generic term)|notation (generic term)
+notability|1
+(noun)|luminary|leading light|guiding light|notable|celebrity (generic term)|famous person (generic term)
+notable|3
+(adj)|noteworthy|worthy (similar term)
+(adj)|celebrated|famed|far-famed|famous|illustrious|noted|renowned|known (similar term)
+(noun)|luminary|leading light|guiding light|notability|celebrity (generic term)|famous person (generic term)
+notarise|1
+(verb)|notarize|attest (generic term)|certify (generic term)|manifest (generic term)|demonstrate (generic term)|evidence (generic term)
+notarize|1
+(verb)|notarise|attest (generic term)|certify (generic term)|manifest (generic term)|demonstrate (generic term)|evidence (generic term)
+notary|1
+(noun)|notary public|official (generic term)|functionary (generic term)
+notary public|1
+(noun)|notary|official (generic term)|functionary (generic term)
+notate|1
+(verb)|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+notation|3
+(noun)|notational system|writing (generic term)
+(noun)|note|annotation|comment (generic term)|commentary (generic term)
+(noun)|writing (generic term)|committal to writing (generic term)
+notational system|1
+(noun)|notation|writing (generic term)
+notch|5
+(noun)|pass|mountain pass|location (generic term)
+(noun)|indentation (generic term)|indenture (generic term)
+(noun)|nick|snick|cut (generic term)|cutting (generic term)
+(verb)|incise (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+notched|2
+(adj)|serrate|serrated|saw-toothed|toothed|rough (similar term)
+(adj)|erose|jagged|jaggy|toothed|rough (similar term)
+note|13
+(noun)|short letter|line|billet|personal letter (generic term)
+(noun)|written record (generic term)|written account (generic term)
+(noun)|air (generic term)|aura (generic term)|atmosphere (generic term)
+(noun)|bill|government note|bank bill|banker's bill|bank note|banknote|Federal Reserve note|greenback|paper money (generic term)|folding money (generic term)|paper currency (generic term)
+(noun)|musical note|tone|musical notation (generic term)
+(noun)|annotation|notation|comment (generic term)|commentary (generic term)
+(noun)|eminence|distinction|preeminence|high status (generic term)
+(noun)|tone (generic term)|tone of voice (generic term)
+(noun)|promissory note|note of hand|debt instrument (generic term)|certificate of indebtedness (generic term)
+(verb)|observe|mention|remark|state (generic term)|say (generic term)|tell (generic term)
+(verb)|notice|mark|ignore (antonym)
+(verb)|take note|observe
+(verb)|take down|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+note of hand|1
+(noun)|note|promissory note|debt instrument (generic term)|certificate of indebtedness (generic term)
+note payable|1
+(noun)|note (generic term)|promissory note (generic term)|note of hand (generic term)
+note receivable|1
+(noun)|note (generic term)|promissory note (generic term)|note of hand (generic term)
+note value|1
+(noun)|value|time value|duration (generic term)|continuance (generic term)
+notebook|2
+(noun)|book (generic term)|volume (generic term)
+(noun)|notebook computer|portable computer (generic term)
+notebook computer|1
+(noun)|notebook|portable computer (generic term)
+notebook entry|1
+(noun)|entry (generic term)
+notecase|1
+(noun)|wallet|billfold|pocketbook|case (generic term)
+notechis|1
+(noun)|Notechis|genus Notechis|reptile genus (generic term)
+notechis scutatus|1
+(noun)|tiger snake|Notechis scutatus|elapid (generic term)|elapid snake (generic term)
+noted|2
+(adj)|celebrated|famed|far-famed|famous|illustrious|notable|renowned|known (similar term)
+(adj)|noticeable (similar term)
+notemigonus|1
+(noun)|Notemigonus|genus Notemigonus|fish genus (generic term)
+notemigonus crysoleucas|1
+(noun)|golden shiner|Notemigonus crysoleucas|shiner (generic term)
+notepad|1
+(noun)|pad (generic term)|pad of paper (generic term)|tablet (generic term)
+notepaper|1
+(noun)|writing paper (generic term)
+noteworthy|2
+(adj)|notable|worthy (similar term)
+(adj)|remarkable|significant (similar term)|important (similar term)
+nothing|2
+(noun)|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+(noun)|nonentity|thing (generic term)
+nothingness|2
+(noun)|void|nullity|nihility|nonexistence (generic term)|nonentity (generic term)
+(noun)|wind|idle words|jazz|talk (generic term)|talking (generic term)
+nothings|1
+(noun)|conversation (generic term)
+nothofagus|1
+(noun)|Nothofagus|genus Nothofagus|hamamelid dicot genus (generic term)
+nothofagus cuninghamii|1
+(noun)|myrtle beech|Nothofagus cuninghamii|southern beech (generic term)|evergreen beech (generic term)
+nothofagus dombeyi|1
+(noun)|Coigue|Nothofagus dombeyi|southern beech (generic term)|evergreen beech (generic term)
+nothofagus menziesii|1
+(noun)|silver beech|Nothofagus menziesii|New Zealand beech (generic term)
+nothofagus obliqua|1
+(noun)|roble beech|Nothofagus obliqua|southern beech (generic term)|evergreen beech (generic term)
+nothofagus procera|1
+(noun)|rauli beech|Nothofagus procera|southern beech (generic term)|evergreen beech (generic term)
+nothofagus solanderi|1
+(noun)|black beech|Nothofagus solanderi|southern beech (generic term)|evergreen beech (generic term)
+nothofagus truncata|1
+(noun)|hard beech|Nothofagus truncata|southern beech (generic term)|evergreen beech (generic term)
+nothosaur|1
+(noun)|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+nothosauria|1
+(noun)|Nothosauria|suborder Nothosauria|animal order (generic term)
+notice|11
+(noun)|announcement (generic term)|promulgation (generic term)
+(noun)|observation|observance|attention (generic term)|attending (generic term)
+(noun)|notification|request (generic term)|asking (generic term)
+(noun)|telling (generic term)|apprisal (generic term)|notification (generic term)
+(noun)|poster|posting|placard|bill|card|sign (generic term)
+(noun)|attention (generic term)|attending (generic term)
+(noun)|review (generic term)|critique (generic term)|critical review (generic term)|review article (generic term)
+(verb)|detect|observe|find|discover|sight (generic term)
+(verb)|mark|note|ignore (antonym)
+(verb)|comment|remark|point out|note (generic term)|observe (generic term)|mention (generic term)|remark (generic term)
+(verb)|acknowledge|react (generic term)|respond (generic term)
+notice board|1
+(noun)|bulletin board|board (generic term)
+noticeability|1
+(noun)|obviousness|noticeableness|patency|conspicuousness (generic term)
+noticeable|4
+(adj)|broad (similar term)|detectable (similar term)|perceptible (similar term)|discernible (similar term)|evident (similar term)|observable (similar term)|marked (similar term)|pronounced (similar term)|noted (similar term)|unnoticeable (antonym)
+(adj)|detectable|perceptible (similar term)
+(adj)|obtrusive|unobtrusive (antonym)
+(adj)|strong (similar term)
+noticeableness|1
+(noun)|obviousness|noticeability|patency|conspicuousness (generic term)
+noticeably|1
+(adv)|perceptibly|observably|imperceptibly (antonym)
+noticed|1
+(adj)|detected (similar term)|unnoticed (antonym)
+noticer|2
+(noun)|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|official (generic term)|functionary (generic term)
+notification|3
+(noun)|presentment|due process (generic term)|due process of law (generic term)
+(noun)|telling|apprisal|informing (generic term)|making known (generic term)
+(noun)|notice|request (generic term)|asking (generic term)
+notify|1
+(verb)|advise|give notice|send word|apprise|apprize|inform (generic term)
+notion|4
+(noun)|impression|feeling|belief|opinion|idea (generic term)|thought (generic term)
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|whim|whimsy|whimsey|idea (generic term)|thought (generic term)
+(noun)|article (generic term)
+notional|4
+(adj)|fanciful|imaginary|imagined|unreal (similar term)
+(adj)|speculative|theoretical (similar term)|theoretic (similar term)
+(adj)|fanciful|creative (similar term)|originative (similar term)
+(adj)|conceptional|ideational|abstract (similar term)
+notions counter|1
+(noun)|counter (generic term)
+notochord|1
+(noun)|spinal column (generic term)|vertebral column (generic term)|spine (generic term)|backbone (generic term)|back (generic term)|rachis (generic term)
+notomys|1
+(noun)|Notomys|genus Notomys|mammal genus (generic term)
+notonecta|1
+(noun)|Notonecta|genus Notonecta|arthropod genus (generic term)
+notonecta undulata|1
+(noun)|backswimmer|Notonecta undulata|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+notonectidae|1
+(noun)|Notonectidae|family Notonectidae|arthropod family (generic term)
+notophthalmus|1
+(noun)|Notophthalmus|genus Notophthalmus|amphibian genus (generic term)
+notophthalmus viridescens|1
+(noun)|red eft|Notophthalmus viridescens|newt (generic term)|triton (generic term)
+notoriety|1
+(noun)|ill fame|infamy (generic term)
+notorious|1
+(adj)|ill-famed|infamous|disreputable (similar term)
+notornis|1
+(noun)|takahe|Notornis mantelli|rail (generic term)
+notornis mantelli|1
+(noun)|notornis|takahe|Notornis mantelli|rail (generic term)
+notoryctidae|1
+(noun)|Notoryctidae|family Notoryctidae|mammal family (generic term)
+notoryctus|1
+(noun)|Notoryctus|genus Notoryctus|mammal genus (generic term)
+notoryctus typhlops|1
+(noun)|pouched mole|marsupial mole|Notoryctus typhlops|marsupial (generic term)|pouched mammal (generic term)
+notostraca|1
+(noun)|Notostraca|order Notostraca|animal order (generic term)
+notropis|1
+(noun)|Notropis|genus Notropis|fish genus (generic term)
+notropis atherinoides|1
+(noun)|emerald shiner|Notropis atherinoides|shiner (generic term)
+notropis cornutus|1
+(noun)|common shiner|silversides|Notropis cornutus|shiner (generic term)
+notturno|1
+(noun)|nocturne|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+notwithstanding|1
+(adv)|however|nevertheless|withal|still|yet|all the same|even so|nonetheless
+nouakchott|1
+(noun)|Nouakchott|national capital (generic term)
+nougat|1
+(noun)|candy (generic term)|confect (generic term)
+nougat bar|1
+(noun)|candy (generic term)|confect (generic term)
+nought|1
+(noun)|zero|0|cipher|cypher|digit (generic term)|figure (generic term)
+noughts and crosses|1
+(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tic-tac-toe|tit-tat-toe|board game (generic term)
+noumenon|1
+(noun)|thing-in-itself|content (generic term)|cognitive content (generic term)|mental object (generic term)
+noun|2
+(noun)|content word (generic term)|open-class word (generic term)|substantive (generic term)
+(noun)|major form class (generic term)
+noun phrase|1
+(noun)|nominal phrase|nominal|phrase (generic term)
+nourish|2
+(verb)|nurture|sustain|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|nutrify|aliment|feed (generic term)|give (generic term)
+nourished|2
+(adj)|corn-fed (similar term)|full (similar term)|replete (similar term)|well-fed (similar term)|well-nourished (similar term)|overfed (similar term)|stall-fed (similar term)|malnourished (antonym)
+(adj)|fostered|supported (similar term)
+nourishing|1
+(adj)|alimentary|alimental|nutrient|nutritious|nutritive|wholesome (similar term)
+nourishment|2
+(noun)|nutriment|nutrition|sustenance|aliment|alimentation|victuals|food (generic term)|nutrient (generic term)
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+nous|2
+(noun)|common sense (generic term)|good sense (generic term)|gumption (generic term)|horse sense (generic term)|sense (generic term)|mother wit (generic term)
+(noun)|mind|head|brain|psyche|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+nouveau-riche|2
+(adj)|parvenu|parvenue|upstart|pretentious (similar term)
+(noun)|upstart|parvenu|arriviste|unpleasant person (generic term)|disagreeable person (generic term)
+nouvelle cuisine|1
+(noun)|cuisine (generic term)|culinary art (generic term)
+nouvelle vague|1
+(noun)|New Wave|Nouvelle Vague|artistic movement (generic term)|art movement (generic term)
+nov|1
+(noun)|November|Nov|Gregorian calendar month (generic term)
+nov-esperanto|1
+(noun)|Nov-Esperanto|artificial language (generic term)
+nov-latin|1
+(noun)|Nov-Latin|artificial language (generic term)
+nova|1
+(noun)|star (generic term)
+nova lisboa|1
+(noun)|Huambo|Nova Lisboa|city (generic term)|metropolis (generic term)|urban center (generic term)
+nova lox|1
+(noun)|Nova Scotia lox|Nova lox|Nova Scotia salmon|Nova salmon|Nova style salmon|lox (generic term)
+nova salmon|1
+(noun)|Nova Scotia lox|Nova lox|Nova Scotia salmon|Nova salmon|Nova style salmon|lox (generic term)
+nova scotia|2
+(noun)|Nova Scotia|peninsula (generic term)
+(noun)|Nova Scotia|Canadian province (generic term)
+nova scotia lox|1
+(noun)|Nova Scotia lox|Nova lox|Nova Scotia salmon|Nova salmon|Nova style salmon|lox (generic term)
+nova scotia salmon|1
+(noun)|Nova Scotia lox|Nova lox|Nova Scotia salmon|Nova salmon|Nova style salmon|lox (generic term)
+nova scotian|1
+(noun)|Nova Scotian|bluenose|Canadian (generic term)
+nova style salmon|1
+(noun)|Nova Scotia lox|Nova lox|Nova Scotia salmon|Nova salmon|Nova style salmon|lox (generic term)
+nova zembla|1
+(noun)|Novaya Zemlya|Nova Zembla|island (generic term)
+novate|1
+(verb)|replace (generic term)
+novation|1
+(noun)|replacement (generic term)|replacing (generic term)
+novaya zemlya|1
+(noun)|Novaya Zemlya|Nova Zembla|island (generic term)
+novel|4
+(adj)|fresh|new|original (similar term)
+(adj)|refreshing|new (similar term)
+(noun)|fiction (generic term)
+(noun)|book (generic term)|volume (generic term)
+novelette|1
+(noun)|novella|novel (generic term)
+novelisation|1
+(noun)|novelization|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+novelise|1
+(verb)|novelize|fictionalize|fictionalise|convert (generic term)
+novelist|1
+(noun)|writer (generic term)|author (generic term)
+novelization|1
+(noun)|novelisation|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+novelize|1
+(verb)|novelise|fictionalize|fictionalise|convert (generic term)
+novella|1
+(noun)|novelette|novel (generic term)
+novelty|3
+(noun)|freshness|originality (generic term)
+(noun)|knickknack|article (generic term)
+(noun)|bangle|bauble|gaud|gewgaw|fallal|trinket|adornment (generic term)
+novelty shop|1
+(noun)|gift shop|shop (generic term)|store (generic term)
+november|1
+(noun)|November|Nov|Gregorian calendar month (generic term)
+november 1|1
+(noun)|All Saints' Day|Allhallows|November 1|Hallowmas|Hallowmass|holy day of obligation (generic term)
+november 11|1
+(noun)|Veterans Day|Veterans' Day|Armistice Day|November 11|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+november 2|1
+(noun)|All Souls' Day|November 2|Christian holy day (generic term)
+november 5|1
+(noun)|November 5|day (generic term)
+novena|1
+(noun)|devotion (generic term)
+novgorod|1
+(noun)|Novgorod|city (generic term)|metropolis (generic term)|urban center (generic term)
+novial|1
+(noun)|Novial|artificial language (generic term)
+novice|2
+(noun)|novitiate|religious person (generic term)
+(noun)|beginner|tyro|tiro|initiate|unskilled person (generic term)
+noviciate|1
+(noun)|novitiate|time period (generic term)|period of time (generic term)|period (generic term)
+novillada|1
+(noun)|bullfight (generic term)|corrida (generic term)
+novillero|1
+(noun)|bullfighter (generic term)|toreador (generic term)
+novitiate|2
+(noun)|noviciate|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|novice|religious person (generic term)
+novobiocin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+novocain|1
+(noun)|procaine hydrochloride|novocaine|Novocain|procaine (generic term)|Ethocaine (generic term)
+novocaine|1
+(noun)|procaine hydrochloride|Novocain|procaine (generic term)|Ethocaine (generic term)
+novosibirsk|1
+(noun)|Novosibirsk|city (generic term)|metropolis (generic term)|urban center (generic term)
+now|4
+(noun)|present (generic term)|nowadays (generic term)
+(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 (generic term)
+(adv)|now|today
+nowhere|1
+(noun)|obscurity (generic term)
+nowise|1
+(adv)|to no degree
+nowness|1
+(noun)|presentness|timing (generic term)|futurity (antonym)|pastness (antonym)
+nowrooz|1
+(noun)|Noruz|Nowruz|Nowrooz|vernal equinox (generic term)|March equinox (generic term)|spring equinox (generic term)
+nowruz|1
+(noun)|Noruz|Nowruz|Nowrooz|vernal equinox (generic term)|March equinox (generic term)|spring equinox (generic term)
+nox|1
+(noun)|Nox|Night|Roman deity (generic term)
+noxious|1
+(adj)|harmful|baneful (similar term)|deadly (similar term)|pernicious (similar term)|pestilent (similar term)|corrupting (similar term)|degrading (similar term)|vesicatory (similar term)|vesicant (similar term)|harmful (related term)|toxic (related term)|unwholesome (related term)|innocuous (antonym)
+noxiously|1
+(adv)|detrimentally|harmfully|harmlessly (antonym)
+noxiousness|1
+(noun)|harmfulness|noisomeness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+noxiptiline|1
+(noun)|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+noyes|1
+(noun)|Noyes|Alfred Noyes|poet (generic term)
+nozzle|2
+(noun)|nose|spout (generic term)
+(noun)|beak|honker|hooter|snoot|snout|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+np|2
+(noun)|neptunium|Np|atomic number 93|metallic element (generic term)|metal (generic term)
+(noun)|nurse practitioner|NP|nurse clinician|registered nurse (generic term)|RN (generic term)
+npa|1
+(noun)|New People's Army|NPA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+npc|1
+(noun)|Nonproliferation Center|NPC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nra|1
+(noun)|National Rifle Association|NRA|lobby (generic term)|pressure group (generic term)|third house (generic term)
+nrc|1
+(noun)|Nuclear Regulatory Commission|NRC|independent agency (generic term)
+nrem|1
+(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep (generic term)|slumber (generic term)
+nrem sleep|1
+(noun)|orthodox sleep|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep (generic term)|slumber (generic term)
+nrl|1
+(noun)|Naval Research Laboratory|NRL|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nrna|1
+(noun)|nuclear RNA|nRNA|ribonucleic acid (generic term)|RNA (generic term)
+nro|1
+(noun)|National Reconnaissance Office|NRO|United States intelligence agency (generic term)
+nrti|1
+(noun)|nucleoside reverse transcriptase inhibitor|NRTI|reverse transcriptase inhibitor (generic term)
+nsa|1
+(noun)|National Security Agency|NSA|United States intelligence agency (generic term)
+nsaid|1
+(noun)|nonsteroidal anti-inflammatory|nonsteroidal anti-inflammatory drug|NSAID|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+nsc|1
+(noun)|National Security Council|NSC|executive agency (generic term)
+nsf|1
+(noun)|National Science Foundation|NSF|independent agency (generic term)
+nsu|1
+(noun)|nonspecific urethritis|NSU|urethritis (generic term)
+nsw|1
+(noun)|Naval Special Warfare|NSW|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nswc|1
+(noun)|Naval Surface Warfare Center|NSWC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nt|1
+(noun)|National Trust|NT|nongovernmental organization (generic term)|NGO (generic term)
+nth|1
+(adj)|n-th|ordinal (similar term)
+ntis|1
+(noun)|National Technical Information Service|NTIS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nu|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+nuance|1
+(noun)|nicety|shade|subtlety|refinement|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+nub|3
+(noun)|nubble|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|stub|part (generic term)|piece (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+nubbin|1
+(noun)|nub (generic term)|stub (generic term)
+nubbiness|1
+(noun)|coarseness|tweediness|roughness (generic term)|raggedness (generic term)
+nubble|1
+(noun)|nub|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+nubbly|1
+(adj)|homespun|nubby|slubbed|tweedy|rough (similar term)|unsmooth (similar term)
+nubby|1
+(adj)|homespun|nubbly|slubbed|tweedy|rough (similar term)|unsmooth (similar term)
+nubia|1
+(noun)|Nubia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+nubian|1
+(noun)|Nubian|Egyptian (generic term)|ethnic group (generic term)|ethnos (generic term)
+nubian desert|1
+(noun)|Nubian Desert|desert (generic term)
+nubile|1
+(adj)|marriageable|mature (similar term)
+nucellus|1
+(noun)|plant part (generic term)|plant structure (generic term)
+nucha|1
+(noun)|nape|scruff|rear (generic term)|backside (generic term)|back end (generic term)
+nucifraga|1
+(noun)|Nucifraga|genus Nucifraga|bird genus (generic term)
+nucifraga caryocatactes|1
+(noun)|common nutcracker|Nucifraga caryocatactes|nutcracker (generic term)
+nucifraga columbiana|1
+(noun)|Clark's nutcracker|Nucifraga columbiana|nutcracker (generic term)
+nuclear|4
+(adj)|atomic|thermonuclear (similar term)|conventional (antonym)
+(adj)|center|centre|midpoint (related term)
+(adj)|organelle|cell organelle|cell organ (related term)
+(adj)|central (similar term)
+nuclear-powered ship|1
+(noun)|ship (generic term)
+nuclear-powered submarine|1
+(noun)|nautilus|nuclear submarine|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+nuclear chemist|1
+(noun)|radiochemist|chemist (generic term)
+nuclear chemistry|1
+(noun)|radiochemistry|chemistry (generic term)|chemical science (generic term)
+nuclear club|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+nuclear deterrence|1
+(noun)|deterrence (generic term)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+nuclear energy|1
+(noun)|atomic energy|energy (generic term)
+nuclear engineering|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+nuclear explosion|1
+(noun)|atomic explosion|bomb blast (generic term)
+nuclear family|1
+(noun)|conjugal family|family (generic term)|household (generic term)|house (generic term)|home (generic term)|menage (generic term)
+nuclear fission|1
+(noun)|fission|nuclear reaction (generic term)
+nuclear fuel|1
+(noun)|fuel (generic term)
+nuclear fusion|1
+(noun)|fusion|nuclear fusion reaction|nuclear reaction (generic term)
+nuclear fusion reaction|1
+(noun)|fusion|nuclear fusion|nuclear reaction (generic term)
+nuclear magnetic resonance|1
+(noun)|NMR|proton magnetic resonance|magnetic resonance (generic term)
+nuclear medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+nuclear meltdown|1
+(noun)|meltdown|overheating (generic term)
+nuclear physicist|1
+(noun)|physicist (generic term)
+nuclear physics|1
+(noun)|atomic physics|nucleonics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+nuclear power|1
+(noun)|atomic power|atomic energy (generic term)|nuclear energy (generic term)
+nuclear propulsion|1
+(noun)|propulsion (generic term)
+nuclear reaction|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+nuclear reactor|1
+(noun)|reactor|apparatus (generic term)|setup (generic term)
+nuclear regulatory commission|1
+(noun)|Nuclear Regulatory Commission|NRC|independent agency (generic term)
+nuclear resonance|1
+(noun)|resonance (generic term)
+nuclear rna|1
+(noun)|nuclear RNA|nRNA|ribonucleic acid (generic term)|RNA (generic term)
+nuclear rocket|1
+(noun)|rocket (generic term)|rocket engine (generic term)
+nuclear submarine|1
+(noun)|nautilus|nuclear-powered submarine|submarine (generic term)|pigboat (generic term)|sub (generic term)|U-boat (generic term)
+nuclear terrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+nuclear transplantation|1
+(noun)|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|biological research (generic term)
+nuclear warhead|1
+(noun)|atomic warhead|thermonuclear warhead|nuke|warhead (generic term)|payload (generic term)|load (generic term)
+nuclear weapon|1
+(noun)|weapon of mass destruction (generic term)|WMD (generic term)|W.M.D. (generic term)
+nuclear winter|1
+(noun)|catastrophe (generic term)|cataclysm (generic term)
+nuclease|1
+(noun)|enzyme (generic term)
+nucleate|2
+(adj)|nucleated|organelle|cell organelle|cell organ (related term)
+(verb)|become (generic term)|turn (generic term)
+nucleated|1
+(adj)|nucleate|organelle|cell organelle|cell organ (related term)
+nucleic acid|1
+(noun)|macromolecule (generic term)|supermolecule (generic term)
+nucleolar organiser|1
+(noun)|nucleolus organizer|nucleolus organiser|nucleolar organizer|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+nucleolar organizer|1
+(noun)|nucleolus organizer|nucleolus organiser|nucleolar organiser|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+nucleole|1
+(noun)|nucleolus|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+nucleolus|1
+(noun)|nucleole|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+nucleolus organiser|1
+(noun)|nucleolus organizer|nucleolar organizer|nucleolar organiser|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+nucleolus organizer|1
+(noun)|nucleolus organiser|nucleolar organizer|nucleolar organiser|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+nucleon|1
+(noun)|baryon (generic term)|heavy particle (generic term)
+nucleon number|1
+(noun)|mass number|mass unit (generic term)
+nucleonics|1
+(noun)|nuclear physics|atomic physics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+nucleoplasm|1
+(noun)|karyoplasm|protoplasm (generic term)|living substance (generic term)
+nucleoprotein|1
+(noun)|protein (generic term)
+nucleoside|1
+(noun)|glycoside (generic term)
+nucleoside reverse transcriptase inhibitor|1
+(noun)|NRTI|reverse transcriptase inhibitor (generic term)
+nucleosynthesis|1
+(noun)|synthesis (generic term)
+nucleotide|1
+(noun)|ester (generic term)
+nucleus|4
+(noun)|cell nucleus|karyon|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+(noun)|core|core group|set (generic term)
+(noun)|center (generic term)|centre (generic term)|midpoint (generic term)
+(noun)|neural structure (generic term)
+nucleus niger|1
+(noun)|substantia nigra|locus niger|neural structure (generic term)
+nuda|1
+(noun)|Nuda|class Nuda|class (generic term)
+nude|5
+(adj)|bare|au naturel|naked|unclothed (similar term)
+(noun)|nude painting|painting (generic term)|picture (generic term)
+(noun)|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+(noun)|nude person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|nude sculpture|nude statue|statue (generic term)
+nude dancing|1
+(noun)|stage dancing (generic term)|choreography (generic term)
+nude mouse|1
+(noun)|mouse (generic term)
+nude painting|1
+(noun)|nude|painting (generic term)|picture (generic term)
+nude person|1
+(noun)|nude|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+nude sculpture|1
+(noun)|nude|nude statue|statue (generic term)
+nude statue|1
+(noun)|nude|nude sculpture|statue (generic term)
+nudeness|1
+(noun)|nakedness|nudity|condition (generic term)|status (generic term)
+nudge|3
+(noun)|jog|push (generic term)|pushing (generic term)
+(verb)|poke at|prod|push (generic term)|force (generic term)
+(verb)|push (generic term)|bear on (generic term)
+nudger|1
+(noun)|pusher (generic term)|shover (generic term)
+nudibranch|1
+(noun)|sea slug|gastropod (generic term)|univalve (generic term)
+nudibranchia|1
+(noun)|Nudibranchia|order Nudibranchia|animal order (generic term)
+nudism|1
+(noun)|naturism|practice (generic term)|pattern (generic term)
+nudist|1
+(noun)|naturist|individualist (generic term)
+nudity|1
+(noun)|nakedness|nudeness|condition (generic term)|status (generic term)
+nudnick|1
+(noun)|nudnik|bore (generic term)|dullard (generic term)|pest (generic term)|blighter (generic term)|cuss (generic term)|pesterer (generic term)|gadfly (generic term)
+nudnik|1
+(noun)|nudnick|bore (generic term)|dullard (generic term)|pest (generic term)|blighter (generic term)|cuss (generic term)|pesterer (generic term)|gadfly (generic term)
+nuffield|1
+(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+nugatory|1
+(adj)|worthless (similar term)
+nugget|1
+(noun)|hunk (generic term)|lump (generic term)
+nuisance|2
+(noun)|annoyance (generic term)|bother (generic term)|botheration (generic term)|pain (generic term)|infliction (generic term)|pain in the neck (generic term)|pain in the ass (generic term)
+(noun)|pain|pain in the neck|unpleasant person (generic term)|disagreeable person (generic term)
+nuisance abatement|1
+(noun)|abatement of a nuisance|abatement (generic term)
+nuisance tax|1
+(noun)|sales tax|excise (generic term)|excise tax (generic term)
+nuisance value|1
+(noun)|awkwardness|disadvantage (generic term)
+nuke|4
+(noun)|atomic warhead|nuclear warhead|thermonuclear warhead|warhead (generic term)|payload (generic term)|load (generic term)
+(verb)|atomize|atomise|zap|bombard (generic term)|bomb (generic term)
+(verb)|atom-bomb|bombard (generic term)|bomb (generic term)
+(verb)|microwave|micro-cook|zap|cook (generic term)
+null|2
+(adj)|void|invalid (similar term)
+(noun)|nothing|nil|nix|nada|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|zippo|relative quantity (generic term)
+null set|1
+(noun)|set (generic term)
+null space|1
+(noun)|mathematical space (generic term)|topological space (generic term)
+nullah|1
+(noun)|valley (generic term)|vale (generic term)
+nullarbor plain|1
+(noun)|Nullarbor Plain|plain (generic term)|field (generic term)|champaign (generic term)
+nullification|2
+(noun)|states' rights (generic term)
+(noun)|override|change of state (generic term)
+nullified|1
+(adj)|invalidated|invalid (similar term)
+nullifier|2
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|invalidator|voider|official (generic term)|functionary (generic term)
+nullify|3
+(verb)|invalidate|annul|quash|void|avoid|cancel (generic term)|strike down (generic term)|validate (antonym)
+(verb)|invalidate|negate (generic term)|contradict (generic term)|validate (antonym)
+(verb)|neutralize|neutralise|negate|weaken (generic term)
+nullipara|1
+(noun)|woman (generic term)|adult female (generic term)
+nullity|2
+(noun)|nothingness|void|nihility|nonexistence (generic term)|nonentity (generic term)
+(noun)|act (generic term)|enactment (generic term)
+numb|4
+(adj)|asleep|benumbed|insensible (similar term)
+(adj)|dead|insensitive (similar term)
+(adj)|petrified|afraid (similar term)
+(verb)|benumb|blunt|dull|desensitize (generic term)|desensitise (generic term)
+numbat|1
+(noun)|banded anteater|anteater|Myrmecobius fasciatus|dasyurid marsupial (generic term)|dasyurid (generic term)
+number|17
+(noun)|figure|amount (generic term)
+(noun)|definite quantity (generic term)
+(noun)|act|routine|turn|bit|performance (generic term)|public presentation (generic term)
+(noun)|identification number|positive identification (generic term)
+(noun)|phone number|telephone number|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|numeral|symbol (generic term)
+(noun)|issue|periodical (generic term)
+(noun)|company (generic term)
+(noun)|grammatical category (generic term)|syntactic category (generic term)
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|size (generic term)
+(verb)|total|add up|come|amount|be (generic term)
+(verb)|designate (generic term)|denominate (generic term)
+(verb)|list|name (generic term)|identify (generic term)
+(verb)|count|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|count|enumerate|numerate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|keep down|limit (generic term)|circumscribe (generic term)|confine (generic term)
+number 1|1
+(noun)|first|number one|ordinal number (generic term)|ordinal (generic term)|no. (generic term)
+number agreement|1
+(noun)|agreement (generic term)|concord (generic term)
+number cruncher|2
+(noun)|calculator (generic term)|reckoner (generic term)|figurer (generic term)|estimator (generic term)|computer (generic term)
+(noun)|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+number crunching|1
+(noun)|calculation (generic term)|computation (generic term)|computing (generic term)
+number one|3
+(noun)|self (generic term)
+(noun)|first|rank (generic term)
+(noun)|first|number 1|ordinal number (generic term)|ordinal (generic term)|no. (generic term)
+number one wood|1
+(noun)|driver|wood (generic term)
+number representation system|1
+(noun)|numeration system|number system|system of numeration|mathematical notation (generic term)
+number system|1
+(noun)|numeration system|number representation system|system of numeration|mathematical notation (generic term)
+number theorist|1
+(noun)|mathematician (generic term)
+numbering|1
+(noun)|enumeration|list (generic term)|listing (generic term)
+numberless|1
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|myriad|uncounted|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+numberplate|1
+(noun)|license plate|plate (generic term)
+numbers|2
+(noun)|Numbers|Book of Numbers|book (generic term)
+(noun)|numbers pool|numbers game|numbers racket|lottery (generic term)|drawing (generic term)
+numbers game|1
+(noun)|numbers pool|numbers racket|numbers|lottery (generic term)|drawing (generic term)
+numbers pool|1
+(noun)|numbers game|numbers racket|numbers|lottery (generic term)|drawing (generic term)
+numbers racket|1
+(noun)|numbers pool|numbers game|numbers|lottery (generic term)|drawing (generic term)
+numbfish|1
+(noun)|electric ray|crampfish|torpedo|ray (generic term)
+numbing|1
+(adj)|desensitizing (similar term)|desensitising (similar term)
+numbly|1
+(adv)|insensibly
+numbness|2
+(noun)|symptom (generic term)
+(noun)|apathy|indifference|spiritlessness|passivity (generic term)|passiveness (generic term)
+numdah|1
+(noun)|numdah rug|nammad|rug (generic term)|carpet (generic term)|carpeting (generic term)
+numdah rug|1
+(noun)|numdah|nammad|rug (generic term)|carpet (generic term)|carpeting (generic term)
+numen|1
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+numenius|1
+(noun)|Numenius|genus Numenius|bird genus (generic term)
+numenius arquata|1
+(noun)|European curlew|Numenius arquata|curlew (generic term)
+numenius borealis|1
+(noun)|Eskimo curlew|Numenius borealis|curlew (generic term)
+numerable|1
+(adj)|countable|denumerable|enumerable|calculable (similar term)
+numeracy|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+numeral|2
+(adj)|numerical|numeric|definite quantity (related term)
+(noun)|number|symbol (generic term)
+numerate|3
+(adj)|educated (related term)|innumerate (antonym)
+(verb)|count|number|enumerate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|read (generic term)
+numeration|2
+(noun)|naming (generic term)
+(noun)|count|counting|enumeration|reckoning|tally|investigation (generic term)|investigating (generic term)
+numeration system|1
+(noun)|number system|number representation system|system of numeration|mathematical notation (generic term)
+numerator|1
+(noun)|dividend (generic term)
+numeric|3
+(adj)|numeral|numerical|definite quantity (related term)
+(adj)|numerical|quantitative (similar term)
+(adj)|numerical|denotative (similar term)|denotive (similar term)
+numerical|4
+(adj)|numeric|quantitative (similar term)
+(adj)|numeral|numeric|definite quantity (related term)
+(adj)|numeric|denotative (similar term)|denotive (similar term)
+(adj)|mathematical|nonverbal (similar term)|verbal (antonym)
+numerical quantity|1
+(noun)|quantity (generic term)
+numerological|1
+(adj)|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+numerologist|1
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+numerology|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+numerosity|1
+(noun)|numerousness|multiplicity|number (generic term)|figure (generic term)
+numerous|1
+(adj)|many (similar term)
+numerousness|1
+(noun)|numerosity|multiplicity|number (generic term)|figure (generic term)
+numida|1
+(noun)|Numida|genus Numida|bird genus (generic term)
+numida meleagris|1
+(noun)|guinea fowl|guinea|Numida meleagris|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+numidia|1
+(noun)|Numidia|kingdom (generic term)|realm (generic term)
+numidian|2
+(adj)|Numidian|kingdom|realm (related term)
+(noun)|Numidian|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+numididae|1
+(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family (generic term)
+numidinae|1
+(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family (generic term)
+numinous|2
+(adj)|sacred (similar term)
+(adj)|spirit|disembodied spirit (related term)
+numismatics|1
+(noun)|numismatology|coin collecting|coin collection|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+numismatist|1
+(noun)|numismatologist|coin collector|collector (generic term)|aggregator (generic term)
+numismatologist|1
+(noun)|numismatist|coin collector|collector (generic term)|aggregator (generic term)
+numismatology|1
+(noun)|numismatics|coin collecting|coin collection|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+nummulite|1
+(noun)|foram (generic term)|foraminifer (generic term)
+nummulitidae|1
+(noun)|Nummulitidae|family Nummulitidae|protoctist family (generic term)
+numskull|1
+(noun)|dunce|dunderhead|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|shithead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+nun|3
+(noun)|religious (generic term)
+(noun)|conical buoy|nun buoy|buoy (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+nun's habit|1
+(noun)|habit (generic term)
+nun buoy|1
+(noun)|conical buoy|nun|buoy (generic term)
+nunavut|1
+(noun)|Nunavut|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+nunc dimittis|1
+(noun)|Canticle of Simeon|Nunc dimittis|prayer (generic term)
+nuncio|1
+(noun)|papal nuncio|diplomat (generic term)|diplomatist (generic term)
+nung|1
+(noun)|Nung|Tai (generic term)
+nunnery|1
+(noun)|convent (generic term)
+nuphar|1
+(noun)|Nuphar|genus Nuphar|magnoliid dicot genus (generic term)
+nuphar advena|1
+(noun)|spatterdock|cow lily|yellow pond lily|Nuphar advena|water lily (generic term)
+nuphar lutea|1
+(noun)|yellow water lily|Nuphar lutea|water lily (generic term)
+nuphar sagittifolium|1
+(noun)|southern spatterdock|Nuphar sagittifolium|water lily (generic term)
+nuprin|1
+(noun)|ibuprofen|isobutylphenyl propionic acid|Advil|Motrin|Nuprin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+nuptial|1
+(adj)|bridal|spousal|ceremony|ceremonial|ceremonial occasion|observance (related term)|marriage|wedding|marriage ceremony (related term)
+nuptials|1
+(noun)|wedding|wedding ceremony|hymeneals|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+nuptse|1
+(noun)|Nuptse|mountain peak (generic term)
+nuremberg|1
+(noun)|Nuremberg|Nurnberg|city (generic term)|metropolis (generic term)|urban center (generic term)
+nureyev|1
+(noun)|Nureyev|Rudolf Nureyev|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+nurnberg|1
+(noun)|Nuremberg|Nurnberg|city (generic term)|metropolis (generic term)|urban center (generic term)
+nurse|7
+(noun)|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+(noun)|nanny|nursemaid|woman (generic term)|adult female (generic term)|keeper (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|harbor|harbour|hold|entertain|feel (generic term)|experience (generic term)
+(verb)|care (generic term)|give care (generic term)
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|breastfeed|bottle-feed|suckle|suck|wet-nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+nurse's aide|1
+(noun)|nursing aide|aide (generic term)|auxiliary (generic term)
+nurse-midwife|1
+(noun)|registered nurse (generic term)|RN (generic term)
+nurse-patient relation|1
+(noun)|medical relation (generic term)
+nurse clinician|1
+(noun)|nurse practitioner|NP|registered nurse (generic term)|RN (generic term)
+nurse log|1
+(noun)|log (generic term)
+nurse practitioner|1
+(noun)|NP|nurse clinician|registered nurse (generic term)|RN (generic term)
+nurse shark|1
+(noun)|Ginglymostoma cirratum|shark (generic term)
+nursed|1
+(adj)|suckled|breast-fed (similar term)
+nurseling|1
+(noun)|nursling|suckling|baby (generic term)|babe (generic term)|infant (generic term)
+nursemaid|1
+(noun)|nanny|nurse|woman (generic term)|adult female (generic term)|keeper (generic term)
+nurser|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+nursery|2
+(noun)|baby's room|child's room (generic term)
+(noun)|greenhouse|glasshouse|building (generic term)|edifice (generic term)
+nursery rhyme|1
+(noun)|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+nursery school|1
+(noun)|preschool (generic term)
+nurseryman|1
+(noun)|gardener|horticulturist (generic term)|plantsman (generic term)
+nursing|3
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+(noun)|health profession (generic term)
+(noun)|breast feeding|infant feeding (generic term)
+nursing aide|1
+(noun)|nurse's aide|aide (generic term)|auxiliary (generic term)
+nursing bottle|1
+(noun)|bottle|feeding bottle|vessel (generic term)
+nursing care|1
+(noun)|medical care (generic term)|medical aid (generic term)
+nursing home|1
+(noun)|home|rest home|institution (generic term)
+nursing school|1
+(noun)|school of nursing|school (generic term)
+nursling|1
+(noun)|nurseling|suckling|baby (generic term)|babe (generic term)|infant (generic term)
+nurtural|1
+(adj)|noninheritable (similar term)|nonheritable (similar term)
+nurturance|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+nurturant|1
+(adj)|compassionate (similar term)
+nurture|5
+(noun)|raising|rearing|upbringing (generic term)
+(noun)|breeding|bringing up|fostering|fosterage|raising|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+(verb)|foster|encourage (generic term)
+(verb)|rear|raise|bring up|parent
+(verb)|nourish|sustain|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+nusa tenggara|1
+(noun)|Lesser Sunda Islands|Nusa Tenggara|archipelago (generic term)
+nusku|1
+(noun)|Nusku|Semitic deity (generic term)
+nut|8
+(noun)|seed (generic term)
+(noun)|Nut|Egyptian deity (generic term)
+(noun)|block (generic term)
+(noun)|en|linear unit (generic term)
+(noun)|crackpot|crank|nut case|nutcase|fruitcake|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+(noun)|addict|freak|junkie|junky|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+(noun)|testis|testicle|orchis|ball|ballock|bollock|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+nut-bearing|1
+(adj)|productive (similar term)
+nut-leaved screw tree|1
+(noun)|Helicteres isora|screw tree (generic term)
+nut and bolt|1
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+nut bar|1
+(noun)|candy (generic term)|confect (generic term)
+nut bread|1
+(noun)|quick bread (generic term)
+nut butter|1
+(noun)|spread (generic term)|paste (generic term)
+nut case|1
+(noun)|crackpot|crank|nut|nutcase|fruitcake|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+nut grass|1
+(noun)|nutgrass|nutsedge|nut sedge|Cyperus rotundus|sedge (generic term)
+nut house|1
+(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nuthouse|sanatorium|snake pit|mental hospital (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+nut pine|1
+(noun)|pinon (generic term)|pinyon (generic term)
+nut sedge|1
+(noun)|nutgrass|nut grass|nutsedge|Cyperus rotundus|sedge (generic term)
+nut tree|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+nutate|1
+(verb)|rock (generic term)|sway (generic term)|shake (generic term)
+nutation|1
+(noun)|nod (generic term)
+nutbrown|1
+(adj)|brunet (similar term)|brunette (similar term)
+nutcase|1
+(noun)|crackpot|crank|nut|nut case|fruitcake|screwball|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+nutcracker|3
+(noun)|compound lever (generic term)
+(noun)|nuthatch|oscine (generic term)|oscine bird (generic term)
+(noun)|corvine bird (generic term)
+nutgrass|1
+(noun)|nut grass|nutsedge|nut sedge|Cyperus rotundus|sedge (generic term)
+nuthatch|1
+(noun)|nutcracker|oscine (generic term)|oscine bird (generic term)
+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 (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+nutlet|1
+(noun)|nut (generic term)
+nutlike|2
+(adj)|nutty|tasty (similar term)
+(adj)|round (similar term)|circular (similar term)
+nutmeg|2
+(noun)|nutmeg tree|Myristica fragrans|spice tree (generic term)
+(noun)|spice (generic term)
+nutmeg-shaped|1
+(adj)|formed (similar term)
+nutmeg-yew|1
+(noun)|California nutmeg|Torreya californica|yew (generic term)
+nutmeg family|1
+(noun)|Myristicaceae|family Myristicaceae|magnoliid dicot family (generic term)
+nutmeg flower|1
+(noun)|black caraway|Roman coriander|Nigella sativa|nigella (generic term)
+nutmeg geranium|1
+(noun)|apple geranium|Pelargonium odoratissimum|geranium (generic term)
+nutmeg hickory|1
+(noun)|Carya myristicaeformis|Carya myristiciformis|hickory (generic term)|hickory tree (generic term)
+nutmeg melon|2
+(noun)|net melon|netted melon|Cucumis melo reticulatus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|net melon|netted melon|muskmelon (generic term)|sweet melon (generic term)
+nutmeg state|1
+(noun)|Connecticut|Nutmeg State|Constitution State|CT|American state (generic term)
+nutmeg tree|1
+(noun)|nutmeg|Myristica fragrans|spice tree (generic term)
+nutria|1
+(noun)|coypu|Myocastor coypus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+nutrient|2
+(adj)|alimentary|alimental|nourishing|nutritious|nutritive|wholesome (similar term)
+(noun)|food|substance (generic term)|matter (generic term)
+nutrient agar|1
+(noun)|agar|culture medium (generic term)|medium (generic term)
+nutrient artery|1
+(noun)|arteria nutricia|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+nutrify|1
+(verb)|aliment|nourish|feed (generic term)|give (generic term)
+nutriment|1
+(noun)|nourishment|nutrition|sustenance|aliment|alimentation|victuals|food (generic term)|nutrient (generic term)
+nutrition|3
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|nutriment|nourishment|sustenance|aliment|alimentation|victuals|food (generic term)|nutrient (generic term)
+(noun)|science (generic term)|scientific discipline (generic term)
+nutritional|1
+(adj)|nutritionary|organic process|biological process (related term)
+nutritionary|1
+(adj)|nutritional|organic process|biological process (related term)
+nutritionist|1
+(noun)|dietician|dietitian|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+nutritionist's calorie|1
+(noun)|Calorie|kilogram calorie|kilocalorie|large calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+nutritious|1
+(adj)|alimentary|alimental|nourishing|nutrient|nutritive|wholesome (similar term)
+nutritiousness|1
+(noun)|nutritiveness|wholesomeness (generic term)
+nutritive|1
+(adj)|alimentary|alimental|nourishing|nutrient|nutritious|wholesome (similar term)
+nutritiveness|1
+(noun)|nutritiousness|wholesomeness (generic term)
+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 (similar term)
+nuts and bolts|1
+(noun)|information (generic term)|info (generic term)
+nutsedge|1
+(noun)|nutgrass|nut grass|nut sedge|Cyperus rotundus|sedge (generic term)
+nutshell|1
+(noun)|shell (generic term)
+nuttall's oak|1
+(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak (generic term)|oak tree (generic term)
+nuttall oak|1
+(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak (generic term)|oak tree (generic term)
+nutter|1
+(noun)|wacko|whacko|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+nuttily|1
+(adv)|daftly|dottily|balmily|wackily
+nutty|2
+(adj)|nutlike|tasty (similar term)
+(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 (similar term)
+nuwc|1
+(noun)|Naval Underwater Warfare Center|NUWC|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+nux vomica|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+nuytsia|1
+(noun)|Nuytsia|genus Nuytsia|dilleniid dicot genus (generic term)
+nuytsia floribunda|1
+(noun)|flame tree|fire tree|Christmas tree|Nuytsia floribunda|parasitic plant (generic term)
+nuzzle|3
+(verb)|cuddle|snuggle|nestle|nest|draw close|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|nose|caress (generic term)
+(verb)|excavate (generic term)|dig up (generic term)|turn up (generic term)
+nv|1
+(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state (generic term)
+nw|1
+(noun)|northwest|nor'-west|northwestward|NW|compass point (generic term)|point (generic term)
+nwbn|1
+(noun)|northwest by north|NWbN|compass point (generic term)|point (generic term)
+nwbw|1
+(noun)|northwest by west|NWbW|compass point (generic term)|point (generic term)
+ny|1
+(noun)|New York|New York State|Empire State|NY|American state (generic term)
+nyala|2
+(noun)|Nyala|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Tragelaphus angasi|harnessed antelope (generic term)
+nyamuragira|1
+(noun)|Nyamuragira|volcano (generic term)
+nyamwezi|1
+(noun)|Nyamwezi|Bantu (generic term)|Bantoid language (generic term)
+nyasaland|1
+(noun)|Malawi|Republic of Malawi|Nyasaland|African country (generic term)|African nation (generic term)
+nybble|1
+(noun)|nibble|computer memory unit (generic term)
+nyctaginaceae|1
+(noun)|Nyctaginaceae|family Nyctaginaceae|Allioniaceae|family Allioniaceae|four-o'clock family|caryophylloid dicot family (generic term)
+nyctaginia|1
+(noun)|Nyctaginia|genus Nyctaginia|caryophylloid dicot genus (generic term)
+nyctaginia capitata|1
+(noun)|scarlet musk flower|Nyctaginia capitata|flower (generic term)
+nyctalopia|1
+(noun)|night blindness|moon blindness|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)|avitaminosis (generic term)|hypovitaminosis (generic term)
+nyctanassa|1
+(noun)|Nyctanassa|genus Nyctanassa|bird genus (generic term)
+nyctanassa violacea|1
+(noun)|yellow-crowned night heron|Nyctanassa violacea|night heron (generic term)|night raven (generic term)
+nyctereutes|1
+(noun)|Nyctereutes|genus Nyctereutes|mammal genus (generic term)
+nyctereutes procyonides|1
+(noun)|raccoon dog|Nyctereutes procyonides|wild dog (generic term)
+nycticebus|1
+(noun)|Nycticebus|genus Nycticebus|mammal genus (generic term)
+nycticebus pygmaeus|1
+(noun)|slow loris|Nycticebus tardigradua|Nycticebus pygmaeus|lemur (generic term)
+nycticebus tardigradua|1
+(noun)|slow loris|Nycticebus tardigradua|Nycticebus pygmaeus|lemur (generic term)
+nycticorax|1
+(noun)|Nycticorax|genus Nycticorax|bird genus (generic term)
+nycticorax nycticorax|1
+(noun)|black-crowned night heron|Nycticorax nycticorax|night heron (generic term)|night raven (generic term)
+nyctimene|1
+(noun)|Nyctimene|genus Nyctimene|mammal genus (generic term)
+nyctophobia|1
+(noun)|simple phobia (generic term)
+nycturia|1
+(noun)|nocturia|micturition (generic term)|urination (generic term)
+nydrazid|1
+(noun)|isoniazid|INH|Nydrazid|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+nyiragongo|1
+(noun)|Nyiragongo|volcano (generic term)
+nylghai|1
+(noun)|nilgai|nylghau|blue bull|Boselaphus tragocamelus|antelope (generic term)
+nylghau|1
+(noun)|nilgai|nylghai|blue bull|Boselaphus tragocamelus|antelope (generic term)
+nylon|2
+(noun)|man-made fiber (generic term)|synthetic fiber (generic term)|polyamide (generic term)|polymeric amide (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+nylon stocking|1
+(noun)|nylons|rayons|rayon stocking|silk stocking|stocking (generic term)
+nylons|1
+(noun)|nylon stocking|rayons|rayon stocking|silk stocking|stocking (generic term)
+nymph|3
+(noun)|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+(noun)|larva (generic term)
+(noun)|houri|woman (generic term)|adult female (generic term)
+nymphaea|1
+(noun)|Nymphaea|genus Nymphaea|magnoliid dicot genus (generic term)
+nymphaea alba|1
+(noun)|European white lily|Nymphaea alba|water lily (generic term)
+nymphaea caerulea|1
+(noun)|blue lotus|Nymphaea caerulea|water lily (generic term)
+nymphaea lotus|1
+(noun)|lotus|white lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily (generic term)
+nymphaea odorata|1
+(noun)|water nymph|fragrant water lily|pond lily|Nymphaea odorata|water lily (generic term)
+nymphaea stellata|1
+(noun)|blue lotus|Nymphaea stellata|water lily (generic term)
+nymphaeaceae|1
+(noun)|Nymphaeaceae|family Nymphaeaceae|water-lily family|magnoliid dicot family (generic term)
+nymphalid|1
+(noun)|nymphalid butterfly|brush-footed butterfly|four-footed butterfly|butterfly (generic term)
+nymphalid butterfly|1
+(noun)|nymphalid|brush-footed butterfly|four-footed butterfly|butterfly (generic term)
+nymphalidae|1
+(noun)|Nymphalidae|family Nymphalidae|arthropod family (generic term)
+nymphalis|1
+(noun)|Nymphalis|genus Nymphalis|arthropod genus (generic term)
+nymphalis antiopa|1
+(noun)|mourning cloak|mourning cloak butterfly|Camberwell beauty|Nymphalis antiopa|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+nymphet|1
+(noun)|woman (generic term)|adult female (generic term)
+nymphicus|1
+(noun)|Nymphicus|genus Nymphicus|bird genus (generic term)
+nymphicus hollandicus|1
+(noun)|cockateel|cockatiel|cockatoo parrot|Nymphicus hollandicus|parrot (generic term)
+nympho|1
+(noun)|nymphomaniac|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+nympholepsy|1
+(noun)|craze (generic term)|delirium (generic term)|frenzy (generic term)|fury (generic term)|hysteria (generic term)
+nympholept|1
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+nymphomania|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+nymphomaniac|2
+(adj)|nymphomaniacal|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|nympho|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+nymphomaniacal|1
+(adj)|nymphomaniac|neurotic (similar term)|psychoneurotic (similar term)
+nynorsk|1
+(noun)|New Norwegian|Landsmal|Nynorsk|Norwegian (generic term)
+nypa|1
+(noun)|Nipa|genus Nipa|Nypa|genus Nypa|monocot genus (generic term)|liliopsid genus (generic term)
+nyquist frequency|1
+(noun)|Nyquist frequency|sampling frequency (generic term)
+nyquist rate|1
+(noun)|Nyquist rate|sampling rate (generic term)
+nyse|1
+(noun)|New York Stock Exchange|N. Y. Stock Exchange|NYSE|big board|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+nyssa|1
+(noun)|Nyssa|genus Nyssa|dicot genus (generic term)|magnoliopsid genus (generic term)
+nyssa aquatica|1
+(noun)|water gum|Nyssa aquatica|tupelo (generic term)|tupelo tree (generic term)
+nyssa sylvatica|1
+(noun)|sour gum|black gum|pepperidge|Nyssa sylvatica|tupelo (generic term)|tupelo tree (generic term)
+nyssaceae|1
+(noun)|Nyssaceae|family Nyssaceae|sour-gum family|tupelo family|dicot family (generic term)|magnoliopsid family (generic term)
+nystagmus|1
+(noun)|eye movement (generic term)
+nystan|1
+(noun)|nystatin|Mycostatin|Nystan|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|antibiotic (generic term)|antibiotic drug (generic term)
+nystatin|1
+(noun)|Mycostatin|Nystan|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|antibiotic (generic term)|antibiotic drug (generic term)
+nyx|1
+(noun)|Nyx|Greek deity (generic term)
+o|3
+(noun)|oxygen|O|atomic number 8|chemical element (generic term)|element (generic term)|gas (generic term)
+(noun)|O|letter o|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|O|type O|group O|blood group (generic term)|blood type (generic term)
+o'brien|1
+(noun)|O'Brien|Edna O'Brien|writer (generic term)|author (generic term)
+o'casey|1
+(noun)|O'Casey|Sean O'Casey|dramatist (generic term)|playwright (generic term)
+o'connor|1
+(noun)|O'Connor|Flannery O'Connor|Mary Flannery O'Connor|writer (generic term)|author (generic term)
+o'er|1
+(adv)|over
+o'flaherty|1
+(noun)|O'Flaherty|Liam O'Flaherty|writer (generic term)|author (generic term)
+o'hara|1
+(noun)|O'Hara|John Henry O'Hara|writer (generic term)|author (generic term)
+o'keeffe|1
+(noun)|O'Keeffe|Georgia Okeeffe|painter (generic term)
+o'neill|1
+(noun)|O'Neill|Eugene O'Neill|Eugene Gladstone O'Neill|dramatist (generic term)|playwright (generic term)
+o'toole|1
+(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+o. henry|1
+(noun)|Porter|William Sydney Porter|O. Henry|writer (generic term)|author (generic term)
+o.d.|1
+(verb)|overdose|drug (generic term)|dose (generic term)
+o.e.d.|1
+(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary (generic term)|unabridged (generic term)
+o.k.|4
+(adj)|all right|fine|ok|okay|hunky-dory|satisfactory (similar term)
+(noun)|O.K.|OK|okay|okey|okeh|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+(verb)|approve|O.K.|okay|sanction|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|disapprove (antonym)
+(adv)|okay|O.K.|all right|alright
+o level|1
+(noun)|O level|grade (generic term)|level (generic term)|tier (generic term)
+o ring|1
+(noun)|O ring|gasket (generic term)
+oaf|1
+(noun)|lout|clod|stumblebum|goon|lubber|lummox|lump|gawk|clumsy person (generic term)
+oafish|1
+(adj)|boorish|loutish|neanderthal|neandertal|swinish|unrefined (similar term)
+oahu|1
+(noun)|Oahu|Oahu Island|island (generic term)
+oahu island|1
+(noun)|Oahu|Oahu Island|island (generic term)
+oak|2
+(noun)|wood (generic term)
+(noun)|oak tree|tree (generic term)
+oak-leaved goosefoot|1
+(noun)|oakleaf goosefoot|Chenopodium glaucum|goosefoot (generic term)
+oak apple|1
+(noun)|gall (generic term)
+oak blight|1
+(noun)|plant louse (generic term)|louse (generic term)
+oak chestnut|1
+(noun)|tree (generic term)
+oak fern|1
+(noun)|Gymnocarpium dryopteris|Thelypteris dryopteris|fern (generic term)
+oak leaf cluster|1
+(noun)|Oak Leaf Cluster|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+oak tree|1
+(noun)|oak|tree (generic term)
+oaken|1
+(adj)|woody (similar term)
+oakland|1
+(noun)|Oakland|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+oakleaf goosefoot|1
+(noun)|oak-leaved goosefoot|Chenopodium glaucum|goosefoot (generic term)
+oakley|1
+(noun)|Oakley|Annie Oakley|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+oakum|1
+(noun)|fiber (generic term)|fibre (generic term)
+oar|1
+(noun)|implement (generic term)
+oarfish|1
+(noun)|king of the herring|ribbonfish|Regalecus glesne|soft-finned fish (generic term)|malacopterygian (generic term)
+oarlock|1
+(noun)|peg|pin|thole|tholepin|rowlock|holder (generic term)
+oarsman|1
+(noun)|rower|boatman (generic term)|boater (generic term)|waterman (generic term)
+oarsmanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+oarswoman|1
+(noun)|oarsman (generic term)|rower (generic term)
+oas|1
+(noun)|Organization of American States|OAS|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+oasis|2
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|haven|shelter (generic term)
+oast|1
+(noun)|kiln (generic term)
+oast house|1
+(noun)|house (generic term)
+oat|2
+(noun)|cereal (generic term)|cereal grass (generic term)
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+oat cell carcinoma|1
+(noun)|small cell carcinoma|carcinoma (generic term)
+oatcake|1
+(noun)|quick bread (generic term)
+oaten|1
+(adj)|grain|food grain|cereal (related term)
+oates|2
+(noun)|Oates|Titus Oates|conspirator (generic term)|coconspirator (generic term)|plotter (generic term)|machinator (generic term)
+(noun)|Oates|Joyce Carol Oates|writer (generic term)|author (generic term)
+oath|3
+(noun)|curse|curse word|expletive|swearing|swearword|cuss|profanity (generic term)
+(noun)|swearing|commitment (generic term)|dedication (generic term)
+(noun)|promise (generic term)
+oatmeal|2
+(noun)|burgoo|porridge (generic term)
+(noun)|rolled oats|meal (generic term)
+oatmeal cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+oaxaca|1
+(noun)|Oaxaca|Oaxaca de Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)
+oaxaca de juarez|1
+(noun)|Oaxaca|Oaxaca de Juarez|city (generic term)|metropolis (generic term)|urban center (generic term)
+ob|2
+(noun)|Ob|Ob River|river (generic term)
+(noun)|obstetrics|OB|tocology|midwifery|medicine (generic term)|medical specialty (generic term)
+ob river|1
+(noun)|Ob|Ob River|river (generic term)
+obadiah|2
+(noun)|Obadiah|Abdias|prophet (generic term)
+(noun)|Obadiah|Abdias|Book of Obadiah|book (generic term)
+obbligato|2
+(noun)|obligato|motif (generic term)|motive (generic term)
+(noun)|obligato|section (generic term)|subdivision (generic term)
+obduracy|1
+(noun)|adamance|unyieldingness|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+obdurate|2
+(adj)|cussed|obstinate|unrepentant|unregenerate (similar term)|unregenerated (similar term)
+(adj)|flinty|granitic|stony|hardhearted (similar term)|heartless (similar term)
+obdurately|1
+(adv)|stubbornly|pig-headedly|mulishly|obstinately|cussedly
+obeah|1
+(noun)|obi|cult (generic term)|cultus (generic term)|religious cult (generic term)
+obeche|2
+(noun)|wood (generic term)
+(noun)|obechi|arere|samba|Triplochiton scleroxcylon|tree (generic term)
+obechi|1
+(noun)|obeche|arere|samba|Triplochiton scleroxcylon|tree (generic term)
+obedience|3
+(noun)|obeisance|submission (generic term)|compliance (generic term)|disobedience (antonym)
+(noun)|tractability (generic term)|tractableness (generic term)|flexibility (generic term)|disobedience (antonym)
+(noun)|respect|filial duty (generic term)
+obedience plant|1
+(noun)|arrowroot|American arrowroot|Maranta arundinaceae|maranta (generic term)
+obedient|1
+(adj)|acquiescent (similar term)|biddable (similar term)|conformable (similar term)|dutiful (similar term)|duteous (similar term)|Y2K compliant (similar term)|compliant (related term)|docile (related term)|good (related term)|manageable (related term)|submissive (related term)|tractable (related term)|manipulable (related term)|disobedient (antonym)
+obedient plant|1
+(noun)|false dragonhead|false dragon head|Physostegia virginiana|physostegia (generic term)
+obediently|1
+(adv)|yieldingly|disobediently (antonym)
+obeisance|2
+(noun)|bow|bowing|gesture (generic term)|motion (generic term)
+(noun)|obedience|submission (generic term)|compliance (generic term)|disobedience (antonym)
+obelion|1
+(noun)|craniometric point (generic term)
+obelisk|2
+(noun)|column (generic term)|pillar (generic term)
+(noun)|dagger|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+oberson|1
+(noun)|Oberson|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+obese|1
+(adj)|corpulent|weighty|rotund|fat (similar term)
+obesity|1
+(noun)|fleshiness|corpulency|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+obesity diet|1
+(noun)|reducing diet|diet (generic term)
+obey|1
+(verb)|adjust (generic term)|conform (generic term)|adapt (generic term)|disobey (antonym)
+obfuscate|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|clarify (antonym)
+obfuscation|3
+(noun)|bewilderment|puzzlement|befuddlement|mystification|bafflement|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+(noun)|mystification|activity (generic term)
+(noun)|blackening (generic term)|darkening (generic term)
+obi|1
+(noun)|obeah|cult (generic term)|cultus (generic term)|religious cult (generic term)
+obidoxime chloride|1
+(noun)|chloride (generic term)|antidote (generic term)|counterpoison (generic term)
+obiism|1
+(noun)|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+obit|1
+(noun)|obituary|necrology|announcement (generic term)|promulgation (generic term)
+obiter dictum|2
+(noun)|passing comment|remark (generic term)|comment (generic term)
+(noun)|dictum|opinion (generic term)|legal opinion (generic term)|judgment (generic term)|judgement (generic term)
+obituary|1
+(noun)|obit|necrology|announcement (generic term)|promulgation (generic term)
+object|6
+(noun)|physical object|physical entity (generic term)
+(noun)|aim|objective|target|goal (generic term)|end (generic term)
+(noun)|constituent (generic term)|grammatical constituent (generic term)
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(verb)|disapprove (generic term)|reject (generic term)
+(verb)|be (generic term)
+object-oriented database|1
+(noun)|electronic database (generic term)|on-line database (generic term)|computer database (generic term)|electronic information service (generic term)
+object-oriented database management system|1
+(noun)|database management system (generic term)|DBMS (generic term)
+object-oriented programing language|1
+(noun)|object-oriented programming language|programming language (generic term)|programing language (generic term)
+object-oriented programming language|1
+(noun)|object-oriented programing language|programming language (generic term)|programing language (generic term)
+object ball|1
+(noun)|billiard ball (generic term)
+object code|1
+(noun)|code (generic term)|computer code (generic term)
+object glass|1
+(noun)|objective|objective lens|object lens|lens (generic term)|lense (generic term)|lens system (generic term)
+object language|2
+(noun)|target language|programming language (generic term)|programing language (generic term)
+(noun)|target language|language (generic term)|linguistic communication (generic term)
+object lens|1
+(noun)|objective|objective lens|object glass|lens (generic term)|lense (generic term)|lens system (generic term)
+object lesson|1
+(noun)|example|deterrent example|lesson|admonition (generic term)|monition (generic term)|warning (generic term)|word of advice (generic term)
+object of a preposition|1
+(noun)|prepositional object|object (generic term)
+object of the verb|1
+(noun)|direct object|object (generic term)
+object program|1
+(noun)|target program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)|source program (antonym)
+object recognition|1
+(noun)|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+objectification|2
+(noun)|realization (generic term)|realisation (generic term)|actualization (generic term)|actualisation (generic term)
+(noun)|representation (generic term)
+objectify|2
+(verb)|exteriorize|exteriorise|externalize|externalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|depersonalize|depersonalise|change (generic term)|alter (generic term)|modify (generic term)|personalise (antonym)|personalize (antonym)
+objection|4
+(noun)|expostulation|remonstrance|remonstration|communication (generic term)|communicating (generic term)
+(noun)|speech act (generic term)
+(noun)|protest|dissent|resistance (generic term)
+(noun)|procedure (generic term)
+objectionable|2
+(adj)|obnoxious|offensive (similar term)
+(adj)|exceptionable|unacceptable (similar term)
+objectionableness|1
+(noun)|hatefulness|obnoxiousness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+objectionably|1
+(adv)|offensively|obnoxiously
+objective|6
+(adj)|nonsubjective|clinical (similar term)|impersonal (similar term)|neutral (similar term)|verifiable (similar term)|subjective (antonym)
+(adj)|accusative|oblique|oblique case (related term)
+(adj)|documentary|representational (similar term)
+(adj)|concrete (similar term)
+(noun)|aim|object|target|goal (generic term)|end (generic term)
+(noun)|objective lens|object lens|object glass|lens (generic term)|lense (generic term)|lens system (generic term)
+objective case|1
+(noun)|accusative|accusative case|oblique (generic term)|oblique case (generic term)
+objective lens|1
+(noun)|objective|object lens|object glass|lens (generic term)|lense (generic term)|lens system (generic term)
+objectively|1
+(adv)|subjectively (antonym)
+objectiveness|1
+(noun)|objectivity|judgment (generic term)|judgement (generic term)|sound judgment (generic term)|sound judgement (generic term)|perspicacity (generic term)
+objectivity|1
+(noun)|objectiveness|judgment (generic term)|judgement (generic term)|sound judgment (generic term)|sound judgement (generic term)|perspicacity (generic term)
+objector|1
+(noun)|dissenter|dissident|protester|contestant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+objet d'art|1
+(noun)|art object|piece|work of art (generic term)
+objurgate|2
+(verb)|condemn|reprobate|decry|excoriate|denounce (generic term)
+(verb)|chastise|castigate|chasten|correct|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+objurgation|1
+(noun)|chiding|scolding|tongue-lashing|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+oblanceolate|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+oblanceolate leaf|1
+(noun)|simple leaf (generic term)
+oblate|2
+(adj)|pumpkin-shaped|rounded (related term)|prolate (antonym)
+(noun)|religious person (generic term)
+oblateness|1
+(noun)|ellipticity|roundedness (generic term)|bulginess (generic term)
+oblation|2
+(noun)|offering|giving (generic term)|gift (generic term)
+(noun)|Oblation|religious offering|religious ceremony (generic term)|religious ritual (generic term)
+obligate|4
+(adj)|facultative (antonym)
+(verb)|compel|oblige|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|entrust (generic term)|intrust (generic term)|trust (generic term)|confide (generic term)|commit (generic term)
+(verb)|oblige|bind|hold|relate (generic term)
+obligate anaerobe|1
+(noun)|anaerobe (generic term)
+obligated|1
+(adj)|beholden (similar term)|duty-bound (similar term)|obliged (similar term)|indebted (similar term)|indebted (similar term)|supposed (similar term)|tributary (similar term)|responsible (related term)|unobligated (antonym)
+obligation|4
+(noun)|duty|responsibility|social control (generic term)
+(noun)|state (generic term)
+(noun)|indebtedness|personal relation (generic term)|personal relationship (generic term)
+(noun)|written agreement (generic term)
+obligational|1
+(adj)|written agreement (related term)
+obligato|2
+(noun)|obbligato|motif (generic term)|motive (generic term)
+(noun)|obbligato|section (generic term)|subdivision (generic term)
+obligatorily|2
+(adv)|optionally (antonym)
+(adv)|compulsorily|mandatorily
+obligatory|2
+(adj)|bounden (similar term)|compulsory (similar term)|mandatory (similar term)|required (similar term)|de rigueur (similar term)|imposed (similar term)|incumbent on (similar term)|indispensable (similar term)|prerequisite (similar term)|necessary (related term)|optional (antonym)
+(adj)|necessary (similar term)
+oblige|3
+(verb)|compel|obligate|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|bind|hold|obligate|relate (generic term)
+(verb)|accommodate|comply (generic term)|follow (generic term)|abide by (generic term)|disoblige (antonym)
+obliged|1
+(adj)|duty-bound|obligated (similar term)
+obliger|1
+(noun)|accommodator|benefactor (generic term)|helper (generic term)
+obliging|1
+(adj)|complaisant|accommodating (similar term)|accommodative (similar term)
+obligingly|1
+(adv)|accommodatingly
+obligingness|1
+(noun)|complaisance|compliance|compliancy|deference|agreeableness (generic term)|agreeability (generic term)
+oblique|4
+(adj)|bias (similar term)|catacorner (similar term)|cata-cornered (similar term)|catercorner (similar term)|cater-cornered (similar term)|catty-corner (similar term)|catty-cornered (similar term)|kitty-corner (similar term)|kitty-cornered (similar term)|crabwise (similar term)|sideways (similar term)|diagonal (similar term)|nonparallel (similar term)|oblique-angled (similar term)|convergent (related term)|divergent (related term)|diverging (related term)|inclined (related term)|parallel (antonym)|perpendicular (antonym)
+(adj)|devious|indirect (similar term)
+(noun)|oblique case|case (generic term)|grammatical case (generic term)|nominative (antonym)
+(noun)|external oblique muscle|musculus obliquus externus abdominis|abdominal external oblique muscle|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+oblique-angled|1
+(adj)|oblique (similar term)
+oblique angle|1
+(noun)|angle (generic term)|right angle (antonym)
+oblique bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+oblique case|1
+(noun)|oblique|case (generic term)|grammatical case (generic term)|nominative (antonym)
+oblique triangle|1
+(noun)|triangle (generic term)|trigon (generic term)|trilateral (generic term)|right triangle (antonym)
+oblique vein of the left atrium|1
+(noun)|vena obliqua atrii sinistri|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+obliquely|2
+(adv)|sidelong|sideways
+(adv)|aslant|athwart
+obliqueness|2
+(noun)|spatial property (generic term)|spatiality (generic term)
+(noun)|deviousness|indirectness (generic term)
+obliquity|2
+(noun)|asynclitism|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|deceptiveness|dishonesty (generic term)
+obliterable|1
+(adj)|removable|eradicable (similar term)
+obliterate|5
+(adj)|blotted out|obliterated|destroyed (similar term)
+(verb)|kill|wipe out|take away (generic term)|take out (generic term)
+(verb)|obscure|blot out|veil|hide|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|efface|blur (generic term)|dim (generic term)|slur (generic term)
+(verb)|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+obliterated|1
+(adj)|blotted out|obliterate|destroyed (similar term)
+obliteration|2
+(noun)|annihilation|destruction (generic term)|devastation (generic term)
+(noun)|eradication|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+obliterator|1
+(noun)|eliminator (generic term)
+oblivion|2
+(noun)|limbo|obscurity (generic term)
+(noun)|obliviousness|forgetfulness (generic term)
+oblivious|2
+(adj)|unmindful|unaware (similar term)|incognizant (similar term)
+(adj)|forgetful|inattentive (similar term)
+obliviousness|1
+(noun)|oblivion|forgetfulness (generic term)
+oblong|3
+(adj)|simple (similar term)|unsubdivided (similar term)
+(adj)|long (similar term)
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+oblong leaf|1
+(noun)|simple leaf (generic term)
+oblong woodsia|1
+(noun)|rusty woodsia|fragrant woodsia|Woodsia ilvensis|woodsia (generic term)
+oblongness|1
+(noun)|rectangularity|angularity (generic term)
+obloquy|2
+(noun)|opprobrium|shame (generic term)|disgrace (generic term)|ignominy (generic term)
+(noun)|defamation|calumny|calumniation|traducement|hatchet job|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+obnoxious|1
+(adj)|objectionable|offensive (similar term)
+obnoxiously|1
+(adv)|offensively|objectionably
+obnoxiousness|1
+(noun)|hatefulness|objectionableness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+obnubilate|2
+(verb)|obscure|befog|becloud|haze over|fog|cloud|mist|hide (generic term)|conceal (generic term)
+(verb)|confuse|blur|obscure|change (generic term)|alter (generic term)|modify (generic term)
+oboe|1
+(noun)|hautboy|hautbois|double-reed instrument (generic term)|double reed (generic term)
+oboe d'amore|1
+(noun)|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+oboe da caccia|1
+(noun)|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+oboist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+obolus|1
+(noun)|weight unit (generic term)|weight (generic term)
+obovate|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+obovate leaf|1
+(noun)|simple leaf (generic term)
+obscene|3
+(adj)|indecent (similar term)
+(adj)|abhorrent|detestable|repugnant|repulsive|offensive (similar term)
+(adj)|lewd|raunchy|salacious|dirty (similar term)
+obscenely|1
+(adv)|lewdly
+obscenity|3
+(noun)|lewdness|bawdiness|salaciousness|salacity|indecency (generic term)
+(noun)|smut|vulgarism|filth|dirty word|profanity (generic term)
+(noun)|indecency (generic term)|impropriety (generic term)
+obscurantism|2
+(noun)|policy (generic term)
+(noun)|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+obscurantist|1
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+obscure|11
+(adj)|vague|unclear (similar term)
+(adj)|dark|incomprehensible (similar term)|uncomprehensible (similar term)
+(adj)|hidden|concealed (similar term)
+(adj)|unknown|unsung|inglorious (similar term)|dishonorable (similar term)
+(adj)|unnoticeable|inconspicuous (similar term)|invisible (similar term)
+(adj)|apart|isolated|unconnected (similar term)
+(verb)|befog|becloud|obnubilate|haze over|fog|cloud|mist|hide (generic term)|conceal (generic term)
+(verb)|confuse|blur|obnubilate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|bedim|overcloud|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|blot out|obliterate|veil|hide|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|benight|bedim|darken (generic term)
+obscureness|3
+(noun)|humbleness|unimportance|lowliness|obscurity (generic term)
+(noun)|obscurity|semidarkness (generic term)
+(noun)|obscurity|abstruseness|reconditeness|incomprehensibility (generic term)|clarity (antonym)
+obscurity|3
+(noun)|obscureness|abstruseness|reconditeness|incomprehensibility (generic term)|clarity (antonym)
+(noun)|standing (generic term)|prominence (antonym)
+(noun)|obscureness|semidarkness (generic term)
+obsequious|2
+(adj)|bootlicking|fawning|sycophantic|toadyish|insincere (similar term)
+(adj)|servile (similar term)
+obsequiously|1
+(adv)|subserviently|servilely
+obsequiousness|1
+(noun)|servility|subservience|submissiveness (generic term)
+observable|1
+(adj)|discernible|evident|noticeable (similar term)
+observably|1
+(adv)|perceptibly|noticeably|imperceptibly (antonym)
+observance|4
+(noun)|observation|watching|look (generic term)|looking (generic term)|looking at (generic term)
+(noun)|ceremony|ceremonial|ceremonial occasion|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+(noun)|notice|observation|attention (generic term)|attending (generic term)
+(noun)|honoring|conformity (generic term)|conformation (generic term)|compliance (generic term)|abidance (generic term)|nonobservance (antonym)
+observant|3
+(adj)|attentive (similar term)
+(adj)|observing|perceptive (similar term)
+(adj)|law-abiding|lawful (similar term)
+observantly|1
+(adv)|observingly
+observation|5
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+(noun)|observance|watching|look (generic term)|looking (generic term)|looking at (generic term)
+(noun)|fact (generic term)
+(noun)|notice|observance|attention (generic term)|attending (generic term)
+(noun)|reflection|reflexion|remark (generic term)|comment (generic term)
+observation dome|1
+(noun)|lookout (generic term)|observation tower (generic term)|lookout station (generic term)|observatory (generic term)
+observation post|1
+(noun)|lookout|post (generic term)|station (generic term)
+observation station|1
+(noun)|station (generic term)
+observation tower|1
+(noun)|lookout|lookout station|observatory|structure (generic term)|construction (generic term)
+observational|1
+(adj)|experimental|data-based|empirical (similar term)|empiric (similar term)
+observatory|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|lookout|observation tower|lookout station|structure (generic term)|construction (generic term)
+observe|9
+(verb)|detect|find|discover|notice|sight (generic term)
+(verb)|note|mention|remark|state (generic term)|say (generic term)|tell (generic term)
+(verb)|note|take note
+(verb)|watch (generic term)
+(verb)|respect|honor|honour|abide by|accept (generic term)|disrespect (antonym)
+(verb)|celebrate|keep
+(verb)|watch|follow|watch over|keep an eye on|check (generic term)|check up on (generic term)|look into (generic term)|check out (generic term)|suss out (generic term)|check over (generic term)|go over (generic term)|check into (generic term)
+(verb)|keep|maintain
+(verb)|keep|break (antonym)
+observed|1
+(adj)|ascertained|discovered|determined (similar term)
+observed fire|1
+(noun)|fire (generic term)|firing (generic term)
+observer|2
+(noun)|perceiver|percipient|beholder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|commentator|expert (generic term)
+observer's meridian|1
+(noun)|meridian (generic term)|line of longitude (generic term)
+observing|1
+(adj)|observant|perceptive (similar term)
+observingly|1
+(adv)|observantly
+obsess|2
+(verb)|haunt|ghost|preoccupy (generic term)
+(verb)|worry (generic term)
+obsessed|2
+(adj)|haunted|preoccupied|taken up|concerned (similar term)
+(adj)|possessed|controlled (similar term)
+obsession|2
+(noun)|compulsion|irrational motive (generic term)
+(noun)|fixation|preoccupation (generic term)
+obsessional|1
+(adj)|obsessive|neurotic (similar term)|psychoneurotic (similar term)
+obsessionally|1
+(adv)|compulsively|obsessively
+obsessive|2
+(adj)|obsessional|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+obsessive-compulsive|2
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+obsessive-compulsive disorder|1
+(noun)|anxiety disorder (generic term)
+obsessive-compulsive personality|1
+(noun)|personality (generic term)
+obsessively|1
+(adv)|compulsively|obsessionally
+obsessiveness|1
+(noun)|obsessivity|compulsiveness (generic term)|compulsivity (generic term)
+obsessivity|1
+(noun)|obsessiveness|compulsiveness (generic term)|compulsivity (generic term)
+obsidian|1
+(noun)|volcanic glass (generic term)
+obsolesce|1
+(verb)|change (generic term)
+obsolescence|1
+(noun)|degeneration (generic term)|devolution (generic term)
+obsolescent|1
+(adj)|noncurrent (similar term)
+obsolete|2
+(adj)|outdated|out-of-date|superannuated|noncurrent (similar term)
+(adj)|disused|noncurrent (similar term)
+obsoleteness|1
+(noun)|superannuation|oldness (generic term)
+obstacle|2
+(noun)|obstruction|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+obstacle race|1
+(noun)|footrace (generic term)|foot race (generic term)|run (generic term)
+obstetric|1
+(adj)|obstetrical|medicine|medical specialty (related term)
+obstetrical|1
+(adj)|obstetric|medicine|medical specialty (related term)
+obstetrical delivery|1
+(noun)|delivery|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+obstetrical toad|1
+(noun)|midwife toad|Alytes obstetricans|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+obstetrician|1
+(noun)|accoucheur|specialist (generic term)|medical specialist (generic term)
+obstetrics|1
+(noun)|OB|tocology|midwifery|medicine (generic term)|medical specialty (generic term)
+obstinacy|2
+(noun)|stubbornness|obstinance|mulishness|intractability (generic term)|intractableness (generic term)
+(noun)|stubbornness|bullheadedness|obstinance|pigheadedness|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+obstinance|2
+(noun)|stubbornness|obstinacy|mulishness|intractability (generic term)|intractableness (generic term)
+(noun)|stubbornness|bullheadedness|obstinacy|pigheadedness|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+obstinate|4
+(adj)|stubborn|unregenerate|bloody-minded (similar term)|cantankerous (similar term)|bolshy (similar term)|stroppy (similar term)|bullheaded (similar term)|bullet-headed (similar term)|pigheaded (similar term)|dogged (similar term)|dour (similar term)|pertinacious (similar term)|tenacious (similar term)|unyielding (similar term)|contrarious (similar term)|cross-grained (similar term)|determined (similar term)|hardheaded (similar term)|mulish (similar term)|stiff-necked (similar term)|strong-minded (similar term)|strong-willed (similar term)|disobedient (related term)|intractable (related term)|uncompromising (related term)|sturdy (related term)|inflexible (related term)|docile (antonym)
+(adj)|cussed|obdurate|unrepentant|unregenerate (similar term)|unregenerated (similar term)
+(adj)|contrary|perverse|wayward|disobedient (similar term)
+(verb)|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+obstinately|1
+(adv)|stubbornly|pig-headedly|obdurately|mulishly|cussedly
+obstipate|1
+(verb)|constipate (generic term)|bind (generic term)
+obstipation|1
+(noun)|constipation (generic term)|irregularity (generic term)
+obstreperous|2
+(adj)|defiant (similar term)|noncompliant (similar term)
+(adj)|aggressive (similar term)
+obstreperously|1
+(adv)|loudly|clamorously
+obstreperousness|1
+(noun)|defiance (generic term)|rebelliousness (generic term)
+obstruct|3
+(verb)|blockade|block|hinder|stymie|stymy|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|obturate|impede|occlude|jam|block|close up|impede (generic term)|hinder (generic term)|free (antonym)
+(verb)|block|hide (generic term)|conceal (generic term)
+obstructed|1
+(adj)|barricaded (similar term)|barred (similar term)|blockaded (similar term)|blocked (similar term)|plugged (similar term)|choked (similar term)|clogged (similar term)|deadlocked (similar term)|stalemated (similar term)|impeded (similar term)|occluded (similar term)|stopped (similar term)|stopped-up (similar term)|stopped up (similar term)|stuffy (similar term)|thrombosed (similar term)|closed (related term)|unobstructed (antonym)
+obstructer|2
+(noun)|obstructionist|obstructor|resister|thwarter|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+(noun)|obstruction|obstructor|impediment|impedimenta|structure (generic term)|construction (generic term)
+obstruction|5
+(noun)|obstructor|obstructer|impediment|impedimenta|structure (generic term)|construction (generic term)
+(noun)|blockage|physiological state (generic term)|physiological condition (generic term)
+(noun)|obstacle|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+obstruction of justice|1
+(noun)|obstruction (generic term)
+obstructionism|1
+(noun)|resistance (generic term)
+obstructionist|1
+(noun)|obstructor|obstructer|resister|thwarter|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+obstructive|1
+(adj)|clogging|hindering|impeding|preventive (similar term)|preventative (similar term)
+obstructive shock|1
+(noun)|shock (generic term)
+obstructively|1
+(adv)|hinderingly
+obstructor|2
+(noun)|obstructionist|obstructer|resister|thwarter|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+(noun)|obstruction|obstructer|impediment|impedimenta|structure (generic term)|construction (generic term)
+obstruent|1
+(noun)|consonant (generic term)
+obtain|3
+(verb)|get (generic term)|acquire (generic term)
+(verb)|receive|get|find|incur|change (generic term)
+(verb)|prevail|hold|exist (generic term)|be (generic term)
+obtainable|1
+(adj)|gettable|getable|procurable|available (similar term)
+obtainment|1
+(noun)|obtention|acquiring (generic term)|getting (generic term)
+obtention|1
+(noun)|obtainment|acquiring (generic term)|getting (generic term)
+obtrude|2
+(verb)|push out|thrust out|push (generic term)|force (generic term)
+(verb)|intrude|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+obtrude upon|1
+(verb)|intrude on|invade|encroach upon|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+obtrusive|2
+(adj)|noticeable|unobtrusive (antonym)
+(adj)|protrusive (similar term)
+obtrusively|1
+(adv)|unobtrusively (antonym)
+obtrusiveness|1
+(noun)|conspicuousness (generic term)|unobtrusiveness (antonym)
+obtund|1
+(verb)|deaden (generic term)|blunt (generic term)
+obturate|1
+(verb)|obstruct|impede|occlude|jam|block|close up|impede (generic term)|hinder (generic term)|free (antonym)
+obturator|1
+(noun)|prosthesis (generic term)|prosthetic device (generic term)
+obturator vein|1
+(noun)|vena obturatoria|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+obtuse|4
+(adj)|acute (antonym)
+(adj)|simple (similar term)|unsubdivided (similar term)
+(adj)|purblind|undiscerning (similar term)
+(adj)|dense|dim|dull|dumb|slow|stupid (similar term)
+obtuse-angled triangle|1
+(noun)|obtuse triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+obtuse angle|1
+(noun)|oblique angle (generic term)
+obtuse leaf|1
+(noun)|simple leaf (generic term)
+obtuse triangle|1
+(noun)|obtuse-angled triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+obtusely|1
+(adv)|dumbly|densely
+obtuseness|2
+(noun)|dullness|stupidity (generic term)
+(noun)|dullness (generic term)|bluntness (generic term)|acuteness (antonym)
+obverse|2
+(noun)|option (generic term)|alternative (generic term)|choice (generic term)
+(noun)|side (generic term)|reverse (antonym)
+obviate|2
+(verb)|rid of|eliminate|necessitate (antonym)
+(verb)|debar|deflect|avert|head off|stave off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+obviating|1
+(adj)|preclusive|preventive (similar term)|preventative (similar term)
+obviation|1
+(noun)|forestalling|preclusion|prevention (generic term)|bar (generic term)
+obvious|1
+(adj)|apparent (similar term)|evident (similar term)|manifest (similar term)|patent (similar term)|plain (similar term)|unmistakable (similar term)|axiomatic (similar term)|self-evident (similar term)|taken for granted (similar term)|demonstrable (similar term)|provable (similar term)|frank (similar term)|open-and-shut (similar term)|self-explanatory (similar term)|transparent (similar term)|writ large (similar term)|overt (related term)|open (related term)|unobvious (antonym)
+obviously|1
+(adv)|evidently|manifestly|patently|apparently|plainly|plain
+obviousness|1
+(noun)|noticeability|noticeableness|patency|conspicuousness (generic term)
+oca|1
+(noun)|oka|Oxalis tuberosa|Oxalis crenata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+ocarina|1
+(noun)|sweet potato|wind instrument (generic term)|wind (generic term)
+occam|1
+(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher (generic term)
+occam's razor|1
+(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|law of parsimony|principle (generic term)|rule (generic term)
+occasion|6
+(noun)|juncture|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|affair|social occasion|function|social function|social event (generic term)
+(noun)|reason (generic term)|ground (generic term)
+(noun)|time (generic term)
+(noun)|opportunity (generic term)|chance (generic term)
+(verb)|cause (generic term)|do (generic term)|make (generic term)
+occasional|3
+(adj)|infrequent (similar term)
+(adj)|episodic|unpredictable (similar term)
+(adj)|casual|irregular (similar term)
+occasionally|1
+(adv)|on occasion|once in a while|now and then|now and again|at times|from time to time
+occasions|1
+(noun)|business (generic term)
+occident|2
+(noun)|West|Occident|region (generic term)
+(noun)|western hemisphere|New World|hemisphere (generic term)
+occidental|3
+(adj)|Hesperian|western (similar term)
+(noun)|Occidental|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Occidental|artificial language (generic term)
+occidentalise|1
+(verb)|occidentalize|westernize|westernise|change (generic term)|alter (generic term)|modify (generic term)|orientalise (antonym)|orientalize (antonym)
+occidentalism|2
+(noun)|Occidentalism|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+(noun)|quality (generic term)
+occidentalize|1
+(verb)|occidentalise|westernize|westernise|change (generic term)|alter (generic term)|modify (generic term)|orientalise (antonym)|orientalize (antonym)
+occipital|1
+(adj)|bone|os (related term)
+occipital bone|1
+(noun)|membrane bone (generic term)
+occipital gyrus|1
+(noun)|gyrus (generic term)|convolution (generic term)
+occipital lobe|1
+(noun)|lobe (generic term)
+occipital protuberance|1
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+occipital vein|1
+(noun)|vena occipitalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+occipitomastoid suture|1
+(noun)|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+occiput|1
+(noun)|bone (generic term)|os (generic term)
+occitan|1
+(noun)|Provencal|Occitan|Langue d'oc (generic term)|Langue d'oc French (generic term)
+occlude|1
+(verb)|obstruct|obturate|impede|jam|block|close up|impede (generic term)|hinder (generic term)|free (antonym)
+occluded|2
+(adj)|obstructed (similar term)
+(adj)|sorbed|combined (similar term)
+occluded front|1
+(noun)|occlusion|front (generic term)
+occlusion|5
+(noun)|attack (generic term)
+(noun)|occluded front|front (generic term)
+(noun)|position (generic term)|spatial relation (generic term)
+(noun)|blockage|block|closure|stop|stoppage|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|blockage|closure|obstruction (generic term)
+occlusive|2
+(adj)|attack (related term)
+(noun)|stop consonant|stop|plosive consonant|plosive speech sound|plosive|obstruent (generic term)|continuant consonant (antonym)
+occult|7
+(adj)|invisible (similar term)|unseeable (similar term)
+(adj)|mysterious|mystic|mystical|secret|orphic|esoteric (similar term)
+(noun)|supernatural|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|occult arts|practice (generic term)|pattern (generic term)
+(verb)|eclipse|overshadow (generic term)
+(verb)|change (generic term)
+(verb)|conceal (generic term)|hold back (generic term)|hold in (generic term)
+occult arts|1
+(noun)|occult|practice (generic term)|pattern (generic term)
+occultation|1
+(noun)|eclipse|interruption (generic term)|break (generic term)
+occultism|2
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+(noun)|supernaturalism (generic term)
+occultist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+occupancy|2
+(noun)|tenancy|residency (generic term)|residence (generic term)|abidance (generic term)
+(noun)|occupation|taking possession|moving in|acquiring (generic term)|getting (generic term)
+occupancy rate|1
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+occupant|1
+(noun)|resident|occupier|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)|nonresident (antonym)
+occupation|5
+(noun)|business|job|line of work|line|activity (generic term)
+(noun)|military control|social control (generic term)
+(noun)|activity (generic term)
+(noun)|occupancy|taking possession|moving in|acquiring (generic term)|getting (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+occupation licence|1
+(noun)|occupation license|license (generic term)|licence (generic term)|permit (generic term)
+occupation license|1
+(noun)|occupation licence|license (generic term)|licence (generic term)|permit (generic term)
+occupational|1
+(adj)|activity (related term)
+occupational disease|1
+(noun)|industrial disease|disease (generic term)
+occupational group|1
+(noun)|vocation|body (generic term)
+occupational hazard|1
+(noun)|hazard (generic term)|jeopardy (generic term)|peril (generic term)|risk (generic term)|endangerment (generic term)
+occupational safety and health act|1
+(noun)|federal job safety law|legislation (generic term)|statute law (generic term)
+occupational safety and health administration|1
+(noun)|Occupational Safety and Health Administration|OSHA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+occupational therapy|1
+(noun)|physical therapy (generic term)|physiotherapy (generic term)|physiatrics (generic term)
+occupied|4
+(adj)|busy (similar term)|engaged (similar term)|in use (similar term)|filled (similar term)|unoccupied (antonym)
+(adj)|unoccupied (antonym)
+(adj)|tenanted|inhabited (similar term)
+(adj)|engaged|busy (similar term)
+occupier|2
+(noun)|resident|occupant|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)|nonresident (antonym)
+(noun)|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+occupy|8
+(verb)|inhabit|be (generic term)
+(verb)|busy|work (generic term)
+(verb)|reside|lodge in|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|fill|be (generic term)
+(verb)|concern|interest|worry
+(verb)|take|use up|use (generic term)|expend (generic term)
+(verb)|invade|attack (generic term)|assail (generic term)
+(verb)|absorb|engross|engage|interest (generic term)
+occur|3
+(verb)|happen|hap|go on|pass off|pass|fall out|come about|take place
+(verb)|come|become (generic term)
+(verb)|appear (generic term)|come along (generic term)
+occurrence|2
+(noun)|happening|occurrent|natural event|event (generic term)
+(noun)|presence (generic term)
+occurrent|2
+(adj)|current (similar term)
+(noun)|happening|occurrence|natural event|event (generic term)
+ocean|2
+(noun)|body of water (generic term)|water (generic term)
+(noun)|sea|large indefinite quantity (generic term)|large indefinite amount (generic term)
+ocean bottom|1
+(noun)|ocean floor|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+ocean current|1
+(noun)|current (generic term)|stream (generic term)
+ocean floor|1
+(noun)|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+ocean liner|1
+(noun)|liner|passenger ship (generic term)
+ocean perch|2
+(noun)|redfish|rosefish|rockfish (generic term)
+(noun)|rosefish|Sebastodes marinus|rockfish (generic term)
+ocean pout|1
+(noun)|Macrozoarces americanus|eelpout (generic term)|pout (generic term)
+ocean state|1
+(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state (generic term)
+ocean sunfish|1
+(noun)|sunfish|mola|headfish|plectognath (generic term)|plectognath fish (generic term)
+ocean trip|1
+(noun)|voyage|water travel (generic term)|seafaring (generic term)
+oceanaut|1
+(noun)|aquanaut|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+oceanfront|1
+(noun)|geological formation (generic term)|formation (generic term)
+oceangoing|1
+(adj)|seafaring|seagoing|sea (similar term)
+oceania|1
+(noun)|Oceania|Oceanica|archipelago (generic term)
+oceanic|4
+(adj)|pelagic|body of water|water (related term)
+(adj)|unlimited (similar term)|limitless (similar term)
+(adj)|sea (similar term)
+(noun)|Oceanic|Eastern Malayo-Polynesian|Malayo-Polynesian (generic term)|Polynesian (generic term)
+oceanic abyss|1
+(noun)|trench|deep|natural depression (generic term)|depression (generic term)
+oceanic bird|1
+(noun)|pelagic bird|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+oceanic bonito|1
+(noun)|bonito|Katsuwonus pelamis|scombroid (generic term)|scombroid fish (generic term)
+oceanic whitetip shark|1
+(noun)|whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark (generic term)
+oceanica|1
+(noun)|Oceania|Oceanica|archipelago (generic term)
+oceanid|1
+(noun)|Oceanid|sea nymph (generic term)
+oceanites|1
+(noun)|Oceanites|genus Oceanites|bird genus (generic term)
+oceanites oceanicus|1
+(noun)|Mother Carey's chicken|Mother Carey's hen|Oceanites oceanicus|storm petrel (generic term)
+oceanographer|1
+(noun)|scientist (generic term)|man of science (generic term)
+oceanography|1
+(noun)|oceanology|earth science (generic term)
+oceanology|1
+(noun)|oceanography|earth science (generic term)
+oceanus|1
+(noun)|Oceanus|Titan (generic term)
+ocellated|1
+(adj)|marking (related term)
+ocellated turkey|1
+(noun)|Agriocharis ocellata|gallinaceous bird (generic term)|gallinacean (generic term)
+ocellus|2
+(noun)|simple eye|stemma|eye (generic term)|oculus (generic term)|optic (generic term)
+(noun)|eyespot|marking (generic term)
+ocelot|1
+(noun)|panther cat|Felis pardalis|wildcat (generic term)
+ocher|3
+(adj)|ochre|chromatic (similar term)
+(noun)|ochre|orange yellow (generic term)|saffron (generic term)
+(noun)|ochre|earth color (generic term)
+ochlocracy|1
+(noun)|mobocracy|political system (generic term)|form of government (generic term)
+ochna|1
+(noun)|Ochna|genus Ochna|dilleniid dicot genus (generic term)
+ochna family|1
+(noun)|Ochnaceae|family Ochnaceae|dilleniid dicot family (generic term)
+ochna serrulata|1
+(noun)|bird's-eye bush|Ochna serrulata|shrub (generic term)|bush (generic term)
+ochnaceae|1
+(noun)|Ochnaceae|family Ochnaceae|ochna family|dilleniid dicot family (generic term)
+ochoa|1
+(noun)|Ochoa|Severo Ochoa|biochemist (generic term)
+ochotona|1
+(noun)|Ochotona|genus Ochotona|mammal genus (generic term)
+ochotona collaris|1
+(noun)|collared pika|Ochotona collaris|pika (generic term)|mouse hare (generic term)|rock rabbit (generic term)|coney (generic term)|cony (generic term)
+ochotona princeps|1
+(noun)|little chief hare|Ochotona princeps|pika (generic term)|mouse hare (generic term)|rock rabbit (generic term)|coney (generic term)|cony (generic term)
+ochotonidae|1
+(noun)|Ochotonidae|family Ochotonidae|mammal family (generic term)
+ochre|3
+(adj)|ocher|chromatic (similar term)
+(noun)|ocher|earth color (generic term)
+(noun)|ocher|orange yellow (generic term)|saffron (generic term)
+ochroma|1
+(noun)|Ochroma|genus Ochroma|dilleniid dicot genus (generic term)
+ochroma lagopus|1
+(noun)|balsa|Ochroma lagopus|angiospermous tree (generic term)|flowering tree (generic term)
+ochronosis|1
+(noun)|symptom (generic term)
+ochs|1
+(noun)|Ochs|Adolph Simon Ochs|publisher (generic term)
+ocimum|1
+(noun)|Ocimum|genus Ocimum|asterid dicot genus (generic term)
+ocimum basilicum|1
+(noun)|common basil|sweet basil|Ocimum basilicum|basil (generic term)
+ockham|1
+(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher (generic term)
+ockham's razor|1
+(noun)|Occam's Razor|Ockham's Razor|principle of parsimony|law of parsimony|principle (generic term)|rule (generic term)
+oconee bells|1
+(noun)|Shortia galacifolia|shortia (generic term)
+ocotillo|1
+(noun)|coachwhip|Jacob's staff|vine cactus|Fouquieria splendens|candlewood (generic term)
+oct|1
+(noun)|October|Oct|Gregorian calendar month (generic term)
+octad|1
+(noun)|eight|8|VIII|eighter|eighter from Decatur|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+octadecanoic acid|1
+(noun)|stearic acid|saturated fatty acid (generic term)
+octagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+octagonal|1
+(adj)|octangular|polygon|polygonal shape (related term)
+octahedron|1
+(noun)|polyhedron (generic term)
+octal|1
+(adj)|positional notation|positional representation system (related term)
+octal digit|1
+(noun)|digit (generic term)|figure (generic term)
+octal notation|1
+(noun)|mathematical notation (generic term)
+octal number system|1
+(noun)|octal numeration system|positional notation (generic term)|positional representation system (generic term)
+octal numeration system|1
+(noun)|octal number system|positional notation (generic term)|positional representation system (generic term)
+octameter|1
+(noun)|verse (generic term)|verse line (generic term)
+octane|1
+(noun)|hydrocarbon (generic term)
+octane number|1
+(noun)|octane rating|measure (generic term)|quantity (generic term)|amount (generic term)
+octane rating|1
+(noun)|octane number|measure (generic term)|quantity (generic term)|amount (generic term)
+octanedioic acid|1
+(noun)|suberic acid|carboxylic acid (generic term)
+octangular|1
+(adj)|octagonal|polygon|polygonal shape (related term)
+octans|1
+(noun)|Octans|constellation (generic term)
+octant|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+octave|3
+(noun)|religious festival (generic term)|church festival (generic term)
+(noun)|musical octave|interval (generic term)|musical interval (generic term)
+(noun)|stanza (generic term)
+octavian|1
+(noun)|Augustus|Gaius Octavianus|Gaius Julius Caesar Octavianus|Octavian|statesman (generic term)|solon (generic term)|national leader (generic term)|Roman Emperor (generic term)|Emperor of Rome (generic term)
+octavo|1
+(noun)|eightvo|8vo|size (generic term)
+octet|5
+(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|digit (generic term)|figure (generic term)
+(noun)|octette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|octette|set (generic term)
+(noun)|octette|eightsome|gathering (generic term)|assemblage (generic term)
+(noun)|octette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+octette|4
+(noun)|octet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|octet|set (generic term)
+(noun)|octet|eightsome|gathering (generic term)|assemblage (generic term)
+(noun)|octet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+octillion|1
+(noun)|large integer (generic term)
+october|1
+(noun)|October|Oct|Gregorian calendar month (generic term)
+october 12|1
+(noun)|Columbus Day|Discovery Day|October 12|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+october 24|1
+(noun)|United Nations Day|October 24|day (generic term)
+october revolution|1
+(noun)|Russian Revolution|October Revolution|coup d'etat (generic term)|coup (generic term)|putsch (generic term)|takeover (generic term)
+octoberfest|1
+(noun)|Oktoberfest|Octoberfest|lager (generic term)|lager beer (generic term)
+octogenarian|2
+(adj)|old (similar term)
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+octonary|1
+(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octet|digit (generic term)|figure (generic term)
+octopod|1
+(noun)|cephalopod (generic term)|cephalopod mollusk (generic term)
+octopoda|1
+(noun)|Octopoda|order Octopoda|animal order (generic term)
+octopodidae|1
+(noun)|Octopodidae|family Octopodidae|mollusk family (generic term)
+octopus|2
+(noun)|seafood (generic term)
+(noun)|devilfish|octopod (generic term)
+octoroon|1
+(noun)|Octoroon|mixed-blood (generic term)
+octosyllabic|1
+(adj)|syllabic (similar term)
+octosyllable|1
+(noun)|verse (generic term)|verse line (generic term)
+octroi|1
+(noun)|duty (generic term)|tariff (generic term)
+octuple|1
+(adj)|eightfold|eight-fold|multiple (similar term)
+ocular|4
+(adj)|optic|optical|opthalmic|sense organ|sensory receptor|receptor (related term)
+(adj)|optic|optical|visual|modality|sense modality|sensory system|exteroception (related term)
+(adj)|visual|visible (similar term)|seeable (similar term)
+(noun)|eyepiece|lens (generic term)|lense (generic term)|lens system (generic term)
+ocular muscle|1
+(noun)|eye muscle|muscle (generic term)|musculus (generic term)
+oculism|1
+(noun)|trade (generic term)|craft (generic term)
+oculist|2
+(noun)|optometrist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+(noun)|ophthalmologist|eye doctor|specialist (generic term)|medical specialist (generic term)
+oculomotor|1
+(noun)|oculomotor nerve|nervus oculomotorius|third cranial nerve|cranial nerve (generic term)
+oculomotor nerve|1
+(noun)|oculomotor|nervus oculomotorius|third cranial nerve|cranial nerve (generic term)
+oculopharyngeal muscular dystrophy|1
+(noun)|muscular dystrophy (generic term)|dystrophy (generic term)
+oculus|1
+(noun)|eye|optic|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+oculus dexter|1
+(noun)|OD|eye (generic term)|oculus (generic term)|optic (generic term)
+oculus sinister|1
+(noun)|OS|eye (generic term)|oculus (generic term)|optic (generic term)
+ocyurus|1
+(noun)|Ocyurus|genus Ocyurus|fish genus (generic term)
+ocyurus chrysurus|1
+(noun)|yellowtail|yellowtail snapper|Ocyurus chrysurus|snapper (generic term)
+od|2
+(noun)|Doctor of Optometry|OD|doctor's degree (generic term)|doctorate (generic term)
+(noun)|oculus dexter|OD|eye (generic term)|oculus (generic term)|optic (generic term)
+odalisque|1
+(noun)|concubine|courtesan|doxy|paramour|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+odd|6
+(adj)|even (antonym)
+(adj)|unusual (similar term)
+(adj)|inexact (similar term)
+(adj)|curious|funny|peculiar|queer|rum|rummy|singular|strange (similar term)|unusual (similar term)
+(adj)|unmatched|unmated|unpaired|mismatched (similar term)
+(adj)|leftover|left over|left|remaining|unexpended|unexhausted (similar term)
+odd-even check|1
+(noun)|parity check|redundant check|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+odd-job|1
+(adj)|part-time (similar term)|parttime (similar term)
+odd-job man|1
+(noun)|handyman|jack of all trades|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+odd-leg caliper|1
+(noun)|caliper (generic term)|calliper (generic term)
+odd-pinnate|1
+(adj)|imparipinnate|compound (similar term)
+odd-pinnate leaf|1
+(noun)|pinnate leaf (generic term)
+odd-toed ungulate|1
+(noun)|perissodactyl|perissodactyl mammal|ungulate (generic term)|hoofed mammal (generic term)|even-toed ungulate (antonym)
+odd fellow|1
+(noun)|kook|odd fish|queer bird|queer duck|odd man out|anomaly (generic term)|unusual person (generic term)
+odd fish|1
+(noun)|kook|odd fellow|queer bird|queer duck|odd man out|anomaly (generic term)|unusual person (generic term)
+odd hassel|1
+(noun)|Hassel|Odd Hassel|chemist (generic term)
+odd man out|1
+(noun)|kook|odd fellow|odd fish|queer bird|queer duck|anomaly (generic term)|unusual person (generic term)
+oddball|1
+(noun)|eccentric|eccentric person|flake|geek|anomaly (generic term)|unusual person (generic term)
+oddish|1
+(adj)|strange (similar term)|unusual (similar term)
+oddity|3
+(noun)|oddness|eccentricity (generic term)
+(noun)|queerness|quirk|quirkiness|crotchet|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|curio|curiosity|oddment|peculiarity|rarity|object (generic term)|physical object (generic term)
+oddly|2
+(adv)|curiously|peculiarly
+(adv)|queerly|strangely|funnily
+oddment|2
+(noun)|end|remainder|remnant|piece of cloth (generic term)|piece of material (generic term)
+(noun)|curio|curiosity|oddity|peculiarity|rarity|object (generic term)|physical object (generic term)
+oddments|1
+(noun)|odds and ends|melange|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+oddness|2
+(noun)|parity (generic term)
+(noun)|oddity|eccentricity (generic term)
+oddone colonna|1
+(noun)|Martin V|Oddone Colonna|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+odds|2
+(noun)|likelihood (generic term)|likeliness (generic term)
+(noun)|betting odds|ratio (generic term)
+odds-maker|1
+(noun)|handicapper|gambler (generic term)
+odds-on|1
+(adj)|unequal (similar term)
+odds and ends|1
+(noun)|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+ode|1
+(noun)|lyric (generic term)|lyric poem (generic term)
+oder|1
+(noun)|Oder|Oder River|river (generic term)
+oder river|1
+(noun)|Oder|Oder River|river (generic term)
+odesa|1
+(noun)|Odessa|Odesa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+odessa|2
+(noun)|Odessa|Odesa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Odessa|city (generic term)|metropolis (generic term)|urban center (generic term)
+odets|1
+(noun)|Odets|Clifford Odets|dramatist (generic term)|playwright (generic term)
+odin|1
+(noun)|Odin|Norse deity (generic term)
+odious|1
+(adj)|abominable|detestable|execrable|hateful (similar term)
+odiously|1
+(adv)|detestably|repulsively|abominably
+odiousness|1
+(noun)|offensiveness|distastefulness|unpleasantness (generic term)
+odist|1
+(noun)|poet (generic term)
+odium|2
+(noun)|shame (generic term)|disgrace (generic term)|ignominy (generic term)
+(noun)|abhorrence|abomination|detestation|execration|loathing|hate (generic term)|hatred (generic term)|disgust (generic term)
+odo|1
+(noun)|Urban II|Odo|Odo of Lagery|Otho|Otho of Lagery|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+odo of lagery|1
+(noun)|Urban II|Odo|Odo of Lagery|Otho|Otho of Lagery|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+odoacer|1
+(noun)|Odoacer|Odovacar|Odovakar|savage (generic term)|barbarian (generic term)
+odobenidae|1
+(noun)|Odobenidae|family Odobenidae|mammal family (generic term)
+odobenus|1
+(noun)|Odobenus|genus Odobenus|mammal genus (generic term)
+odobenus divergens|1
+(noun)|Pacific walrus|Odobenus divergens|walrus (generic term)|seahorse (generic term)|sea horse (generic term)
+odobenus rosmarus|1
+(noun)|Atlantic walrus|Odobenus rosmarus|walrus (generic term)|seahorse (generic term)|sea horse (generic term)
+odocoileus|1
+(noun)|Odocoileus|genus Odocoileus|mammal genus (generic term)
+odocoileus hemionus|1
+(noun)|mule deer|burro deer|Odocoileus hemionus|deer (generic term)|cervid (generic term)
+odocoileus hemionus columbianus|1
+(noun)|black-tailed deer|blacktail deer|blacktail|Odocoileus hemionus columbianus|mule deer (generic term)|burro deer (generic term)|Odocoileus hemionus (generic term)
+odocoileus virginianus|1
+(noun)|Virginia deer|white tail|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+odometer|1
+(noun)|hodometer|mileometer|milometer|meter (generic term)
+odonata|1
+(noun)|Odonata|order Odonata|animal order (generic term)
+odonate|1
+(noun)|insect (generic term)
+odontalgia|1
+(noun)|toothache|ache (generic term)|aching (generic term)
+odontaspididae|1
+(noun)|Carchariidae|family Carchariidae|Odontaspididae|family Odontaspididae|fish family (generic term)
+odontaspis|1
+(noun)|Carcharias|genus Carcharias|Odontaspis|genus Odontaspis|fish genus (generic term)
+odontaspis taurus|1
+(noun)|sand tiger|sand shark|Carcharias taurus|Odontaspis taurus|shark (generic term)
+odontiasis|1
+(noun)|teething|dentition|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+odontoceti|1
+(noun)|Odontoceti|suborder Odontoceti|animal order (generic term)
+odontoglossum|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+odontoid process|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+odontology|1
+(noun)|dentistry|dental medicine|medicine (generic term)|medical specialty (generic term)
+odontophorus|1
+(noun)|Odontophorus|genus Odontophorus|bird genus (generic term)
+odor|2
+(noun)|olfactory property|smell|aroma|odour|scent|property (generic term)
+(noun)|smell|odour|olfactory sensation|olfactory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+odoriferous|4
+(adj)|unsavory (similar term)|unsavoury (similar term)|offensive (similar term)
+(adj)|odorous (similar term)
+(adj)|odorous|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|odorous|perfumed|scented|sweet|sweet-scented|sweet-smelling|fragrant (similar term)
+odorize|1
+(verb)|odourise|scent|cause to be perceived (generic term)|deodourise (antonym)|deodorize (antonym)
+odorless|1
+(adj)|odourless|inodorous|non-aromatic (similar term)|scentless (similar term)|odorous (antonym)
+odorous|3
+(adj)|alliaceous (similar term)|almond-scented (similar term)|anise-scented (similar term)|apple-scented (similar term)|balsam-scented (similar term)|candy-scented (similar term)|cedar-scented (similar term)|cinnamon-scented (similar term)|clove-scented (similar term)|ginger-scented (similar term)|honey-scented (similar term)|lemon-scented (similar term)|mint-scented (similar term)|musk-scented (similar term)|musky-scented (similar term)|odoriferous (similar term)|pleasant-smelling (similar term)|redolent (similar term)|smelling (similar term)|scented (similar term)|spice-scented (similar term)|strong-smelling (similar term)|strong-scented (similar term)|tansy-scented (similar term)|tansy-smelling (similar term)|tea-scented (similar term)|vanilla-scented (similar term)|violet-scented (similar term)|odorless (antonym)
+(adj)|odoriferous|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|odoriferous|perfumed|scented|sweet|sweet-scented|sweet-smelling|fragrant (similar term)
+odour|2
+(noun)|smell|odor|olfactory sensation|olfactory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|olfactory property|smell|aroma|odor|scent|property (generic term)
+odourise|1
+(verb)|odorize|scent|cause to be perceived (generic term)|deodourise (antonym)|deodorize (antonym)
+odourless|1
+(adj)|odorless|inodorous|non-aromatic (similar term)|scentless (similar term)|odorous (antonym)
+odovacar|1
+(noun)|Odoacer|Odovacar|Odovakar|savage (generic term)|barbarian (generic term)
+odovakar|1
+(noun)|Odoacer|Odovacar|Odovakar|savage (generic term)|barbarian (generic term)
+odynophagia|1
+(noun)|pain (generic term)|hurting (generic term)
+odysseus|1
+(noun)|Odysseus|mythical being (generic term)
+odyssey|2
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|Odyssey|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+oecanthus|1
+(noun)|Oecanthus|genus Oecanthus|arthropod genus (generic term)
+oecanthus fultoni|1
+(noun)|snowy tree cricket|Oecanthus fultoni|tree cricket (generic term)
+oecumenic|1
+(adj)|ecumenic|ecumenical|oecumenical|nonsectarian (similar term)|unsectarian (similar term)
+oecumenical|2
+(adj)|ecumenic|oecumenic|ecumenical|nonsectarian (similar term)|unsectarian (similar term)
+(adj)|cosmopolitan|ecumenical|general|universal|worldwide|world-wide|comprehensive (similar term)
+oecumenism|1
+(noun)|ecumenism|movement (generic term)|social movement (generic term)|front (generic term)
+oed|1
+(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary (generic term)|unabridged (generic term)
+oedema|1
+(noun)|edema|hydrops|dropsy|swelling (generic term)|puffiness (generic term)|lump (generic term)
+oedipal complex|1
+(noun)|Oedipus complex|Oedipal complex|complex (generic term)
+oedipus|1
+(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being (generic term)
+oedipus complex|1
+(noun)|Oedipus complex|Oedipal complex|complex (generic term)
+oedipus rex|1
+(noun)|Oedipus|King Oedipus|Oedipus Rex|mythical being (generic term)
+oedogoniaceae|1
+(noun)|Oedogoniaceae|family Oedogoniaceae|protoctist family (generic term)
+oedogoniales|1
+(noun)|Oedogoniales|order oedogoniales|protoctist order (generic term)
+oedogonium|1
+(noun)|Oedogonium|genus Oedogonium|protoctist genus (generic term)
+oeil de boeuf|1
+(noun)|window (generic term)
+oenanthe|2
+(noun)|Oenanthe|genus Oenanthe|rosid dicot genus (generic term)
+(noun)|Oenanthe|genus Oenanthe|bird genus (generic term)
+oenanthe aquatica|1
+(noun)|water fennel|Oenanthe aquatica|poisonous plant (generic term)
+oenanthe crocata|1
+(noun)|water dropwort|hemlock water dropwort|Oenanthe crocata|poisonous plant (generic term)
+oengus|1
+(noun)|Angus Og|Aengus|Oengus|Angus|Celtic deity (generic term)
+oenologist|1
+(noun)|enologist|fermentologist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+oenology|1
+(noun)|enology|art (generic term)|artistry (generic term)|prowess (generic term)
+oenomel|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+oenophile|1
+(noun)|oenophilist|wine lover|connoisseur (generic term)|cognoscenti (generic term)
+oenophilist|1
+(noun)|oenophile|wine lover|connoisseur (generic term)|cognoscenti (generic term)
+oenothera|1
+(noun)|Oenothera|genus Oenothera|dicot genus (generic term)|magnoliopsid genus (generic term)
+oenothera biennis|1
+(noun)|common evening primrose|German rampion|Oenothera biennis|evening primrose (generic term)
+oenothera fruticosa|1
+(noun)|sundrops|Oenothera fruticosa|evening primrose (generic term)
+oenothera macrocarpa|1
+(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose (generic term)
+oersted|2
+(noun)|field strength unit (generic term)
+(noun)|Oersted|Hans Christian Oersted|physicist (generic term)
+oesophageal reflux|1
+(noun)|gastroesophageal reflux|esophageal reflux|reflux (generic term)
+oesophageal veins|1
+(noun)|esophageal veins|venae esophageae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+oesophagitis|1
+(noun)|esophagitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+oesophagogastric junction|1
+(noun)|esophagogastric junction|articulation (generic term)|join (generic term)|joint (generic term)|juncture (generic term)|junction (generic term)
+oesophagoscope|1
+(noun)|esophagoscope|optical instrument (generic term)
+oesophagus|1
+(noun)|esophagus|gorge|gullet|passage (generic term)|passageway (generic term)|muscular structure (generic term)|musculature (generic term)|muscle system (generic term)
+oesterreich|1
+(noun)|Austria|Republic of Austria|Oesterreich|European country (generic term)|European nation (generic term)
+oestradiol|1
+(noun)|estradiol|estrogen (generic term)|oestrogen (generic term)
+oestridae|1
+(noun)|Oestridae|family Oestridae|Hypodermatidae|family Hypodermatidae|arthropod family (generic term)
+oestriol|1
+(noun)|estriol|estrogen (generic term)|oestrogen (generic term)
+oestrogen|1
+(noun)|estrogen|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+oestrone|1
+(noun)|estrone|theelin|Estronol|estrogen (generic term)|oestrogen (generic term)|ketosteroid (generic term)
+oestrus|2
+(noun)|estrus|heat|rut|physiological state (generic term)|physiological condition (generic term)|anestrus (antonym)
+(noun)|Oestrus|genus Oestrus|arthropod genus (generic term)
+oestrus ovis|1
+(noun)|sheep botfly|sheep gadfly|Oestrus ovis|botfly (generic term)
+oeuvre|1
+(noun)|work|body of work|end product (generic term)|output (generic term)
+of a sudden|1
+(adv)|suddenly|all of a sudden
+of age|1
+(adj)|aged|old (similar term)
+of all time|1
+(adv)|ever
+of course|1
+(adv)|naturally|course|unnaturally (antonym)
+of each person|1
+(adv)|per capita|for each person
+of import|1
+(adj)|important|all-important (similar term)|all important (similar term)|crucial (similar term)|essential (similar term)|of the essence (similar term)|alpha (similar term)|beta (similar term)|big (similar term)|burning (similar term)|cardinal (similar term)|central (similar term)|fundamental (similar term)|key (similar term)|primal (similar term)|chief (similar term)|main (similar term)|primary (similar term)|principal (similar term)|consequential (similar term)|eventful (similar term)|Copernican (similar term)|distinguished (similar term)|eminent (similar term)|grand (similar term)|grave (similar term)|grievous (similar term)|heavy (similar term)|weighty (similar term)|great (similar term)|outstanding (similar term)|historic (similar term)|in-chief (similar term)|measurable (similar term)|most-valuable (similar term)|serious (similar term)|strategic (similar term)|essential (related term)|significant (related term)|important (related term)|valuable (related term)|unimportant (antonym)
+of late|1
+(adv)|recently|late|lately|latterly
+of necessity|1
+(adv)|inevitably|necessarily|needs
+of sound mind|1
+(adj)|compos mentis|sane (similar term)
+of the essence|1
+(adj)|all-important|all important|crucial|essential|important (similar term)|of import (similar term)
+of unsound mind|1
+(adj)|non compos mentis|insane (similar term)
+off|8
+(adj)|disconnected (similar term)|on (antonym)
+(adj)|unsatisfactory (similar term)
+(adj)|cancelled|on (antonym)
+(adj)|sour|turned|soured (similar term)
+(adj)|inactive (similar term)
+(verb)|murder|slay|hit|dispatch|bump off|polish off|remove|kill (generic term)
+(adv)|away|forth
+(adv)|away
+off-and-on|1
+(adj)|fitful|interrupted|broken (similar term)
+off-axis reflector|1
+(noun)|Herschelian telescope|reflecting telescope (generic term)|reflector (generic term)
+off-base|1
+(adj)|peripheral (similar term)
+off-broadway|1
+(noun)|off-Broadway|city district (generic term)
+off-center|1
+(adj)|off-centered|eccentric (similar term)|nonconcentric (similar term)
+off-centered|1
+(adj)|off-center|eccentric (similar term)|nonconcentric (similar term)
+off-color|2
+(adj)|indelicate|off-colour|tasteless (similar term)
+(adj)|bawdy|ribald|dirty (similar term)
+off-colour|1
+(adj)|indelicate|off-color|tasteless (similar term)
+off-day|1
+(noun)|day (generic term)
+off-guard|1
+(adj)|napping|off guard|off one's guard|off his guard|off her guard|off your guard|unready (similar term)
+off-hand|1
+(adv)|ex tempore
+off-key|1
+(adj)|false|sour|inharmonious (similar term)|unharmonious (similar term)
+off-licence|1
+(noun)|package store|liquor store|shop (generic term)|store (generic term)
+off-limits|1
+(adj)|out-of-bounds|restricted (similar term)
+off-line|1
+(adj)|on-line (antonym)
+off-line equipment|1
+(noun)|auxiliary equipment|electronic equipment (generic term)
+off-line operation|1
+(noun)|auxiliary operation|operation (generic term)
+off-peak|1
+(adj)|peak (antonym)
+off-putting|2
+(adj)|displeasing (similar term)
+(adj)|unappealing (similar term)
+off-road|1
+(adj)|cross-country (similar term)
+off-roader|1
+(noun)|mountain bike|all-terrain bike|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+off-season|1
+(noun)|season (generic term)|high season (antonym)
+off-site|1
+(adj)|on-site (antonym)
+off-speed pitch|1
+(noun)|change-up|change-of-pace|change-of-pace ball|pitch (generic term)|delivery (generic term)
+off-street|1
+(adj)|on-street (antonym)
+off-the-cuff|1
+(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|unrehearsed|unprepared (similar term)
+off-the-peg|1
+(adj)|off-the-rack|off-the-shelf|ready-to-wear|ready-made (similar term)
+off-the-rack|1
+(adj)|off-the-shelf|off-the-peg|ready-to-wear|ready-made (similar term)
+off-the-shelf|1
+(adj)|off-the-rack|off-the-peg|ready-to-wear|ready-made (similar term)
+off-the-shoulder|1
+(adj)|unclothed (similar term)
+off-the-wall|1
+(adj)|bizarre|eccentric|freakish|freaky|flaky|flakey|gonzo|outlandish|outre|unconventional (similar term)
+off-white|2
+(adj)|whitish|achromatic (similar term)
+(noun)|bone|ivory|pearl|white (generic term)|whiteness (generic term)
+off and on|1
+(adv)|on and off
+off guard|1
+(adj)|napping|off-guard|off one's guard|off his guard|off her guard|off your guard|unready (similar term)
+off her guard|1
+(adj)|napping|off-guard|off guard|off one's guard|off his guard|off your guard|unready (similar term)
+off his guard|1
+(adj)|napping|off-guard|off guard|off one's guard|off her guard|off your guard|unready (similar term)
+off one's guard|1
+(adj)|napping|off-guard|off guard|off his guard|off her guard|off your guard|unready (similar term)
+off the beaten track|1
+(adj)|out-of-the-way|far (similar term)
+off the hook|1
+(adj)|safe (similar term)
+off year|1
+(noun)|year (generic term)|twelvemonth (generic term)|yr (generic term)
+off your guard|1
+(adj)|napping|off-guard|off guard|off one's guard|off his guard|off her guard|unready (similar term)
+offal|1
+(noun)|variety meat (generic term)|organs (generic term)
+offbeat|2
+(adj)|far-out|kinky|quirky|way-out|unconventional (similar term)
+(noun)|upbeat|rhythm (generic term)|beat (generic term)|musical rhythm (generic term)
+offenbach|1
+(noun)|Offenbach|Jacques Offenbach|composer (generic term)
+offence|5
+(noun)|offense|offensive|operation (generic term)|military operation (generic term)
+(noun)|offense|team (generic term)|squad (generic term)|defence (antonym)|defense (antonym)
+(noun)|umbrage|offense|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|discourtesy|offense|offensive activity|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+(noun)|misdemeanor|misdemeanour|infraction|offense|violation|infringement|crime (generic term)|law-breaking (generic term)
+offenceless|1
+(adj)|offenseless|inoffensive (similar term)|unoffending (similar term)
+offend|4
+(verb)|pique|anger (generic term)
+(verb)|transgress|infract|violate|go against|breach|break|disrespect (generic term)|keep (antonym)
+(verb)|shock|scandalize|scandalise|appal|appall|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+(verb)|hurt|wound|injure|bruise|spite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+offended|1
+(adj)|pained|displeased (similar term)
+offender|1
+(noun)|wrongdoer|bad person (generic term)
+offending|1
+(adj)|sinning (similar term)|offensive (similar term)|violative (similar term)|unoffending (antonym)
+offense|5
+(noun)|discourtesy|offence|offensive activity|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+(noun)|umbrage|offence|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|misdemeanor|misdemeanour|infraction|offence|violation|infringement|crime (generic term)|law-breaking (generic term)
+(noun)|offence|team (generic term)|squad (generic term)|defence (antonym)|defense (antonym)
+(noun)|offence|offensive|operation (generic term)|military operation (generic term)
+offenseless|1
+(adj)|offenceless|inoffensive (similar term)|unoffending (similar term)
+offensive|8
+(adj)|violative|offending (similar term)
+(adj)|antipersonnel (similar term)|assaultive (similar term)|attacking (similar term)|hit-and-run (similar term)|tip-and-run (similar term)|incursive (similar term)|invading (similar term)|invasive (similar term)|marauding (similar term)|predatory (similar term)|raiding (similar term)|on the offensive (similar term)|aggressive (related term)|hostile (related term)|defensive (antonym)
+(adj)|abusive (similar term)|insulting (similar term)|opprobrious (similar term)|scurrilous (similar term)|disrespectful (related term)|harmful (related term)|inoffensive (antonym)
+(adj)|unsavory|unsavoury|odoriferous (similar term)|savory (antonym)
+(adj)|abhorrent (similar term)|detestable (similar term)|obscene (similar term)|repugnant (similar term)|repulsive (similar term)|charnel (similar term)|ghastly (similar term)|sepulchral (similar term)|creepy (similar term)|disgusting (similar term)|disgustful (similar term)|distasteful (similar term)|foul (similar term)|loathly (similar term)|loathsome (similar term)|repellent (similar term)|repellant (similar term)|repelling (similar term)|revolting (similar term)|skanky (similar term)|wicked (similar term)|yucky (similar term)|ghoulish (similar term)|morbid (similar term)|hideous (similar term)|horrid (similar term)|horrific (similar term)|outrageous (similar term)|objectionable (similar term)|obnoxious (similar term)|rank (similar term)|scrimy (similar term)|verminous (similar term)|evil (related term)|hateful (related term)|unpalatable (related term)|unpleasant (related term)|inoffensive (antonym)
+(adj)|dysphemistic|euphemistic (antonym)
+(adj)|nauseating|nauseous|noisome|queasy|loathsome|sickening|vile|unwholesome (similar term)
+(noun)|offense|offence|operation (generic term)|military operation (generic term)
+offensive activity|1
+(noun)|discourtesy|offense|offence|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+offensively|3
+(adv)|inoffensively (antonym)
+(adv)|objectionably|obnoxiously
+(adv)|defensively (antonym)
+offensiveness|1
+(noun)|odiousness|distastefulness|unpleasantness (generic term)
+offer|16
+(noun)|offering|speech act (generic term)
+(noun)|offering|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|crack|fling|go|pass|whirl|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|proffer|give (generic term)
+(verb)|volunteer|act (generic term)|move (generic term)
+(verb)|project (generic term)|propose (generic term)
+(verb)|extend|give (generic term)|pay (generic term)
+(verb)|market (generic term)
+(verb)|bid|tender
+(verb)|produce (generic term)|bring on (generic term)|bring out (generic term)
+(verb)|offer up|worship (generic term)
+(verb)|put up|provide|engage (generic term)|wage (generic term)
+(verb)|extend|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|propose|declare oneself|pop the question|request (generic term)
+(verb)|threaten (generic term)
+offer price|1
+(noun)|asking price (generic term)|selling price (generic term)
+offer up|1
+(verb)|offer|worship (generic term)
+offerer|1
+(noun)|offeror|benefactor (generic term)|helper (generic term)
+offering|4
+(noun)|offer|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|contribution (generic term)|donation (generic term)
+(noun)|offer|speech act (generic term)
+(noun)|oblation|giving (generic term)|gift (generic term)
+offering protection|1
+(adv)|protectively|giving protection
+offeror|1
+(noun)|offerer|benefactor (generic term)|helper (generic term)
+offertory|2
+(noun)|offering (generic term)
+(noun)|Offertory|Oblation (generic term)|religious offering (generic term)
+offhand|3
+(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhanded|off-the-cuff|unrehearsed|unprepared (similar term)
+(adj)|offhanded|careless (similar term)
+(adv)|offhanded|offhandedly
+offhanded|3
+(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|off-the-cuff|unrehearsed|unprepared (similar term)
+(adj)|offhand|careless (similar term)
+(adv)|offhand|offhandedly
+offhandedly|1
+(adv)|offhand|offhanded
+office|7
+(noun)|business office|place of business (generic term)|business establishment (generic term)
+(noun)|agency|federal agency|government agency|bureau|authority|administrative unit (generic term)|administrative body (generic term)
+(noun)|function|part|role|duty (generic term)
+(noun)|power|state (generic term)
+(noun)|office staff|staff (generic term)
+(noun)|rite (generic term)|religious rite (generic term)
+(noun)|position|post|berth|spot|billet|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+office-bearer|1
+(noun)|incumbent (generic term)|officeholder (generic term)
+office block|1
+(noun)|office building|building (generic term)|edifice (generic term)
+office boy|1
+(noun)|employee (generic term)
+office building|1
+(noun)|office block|building (generic term)|edifice (generic term)
+office furniture|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+office of homeland security|1
+(noun)|Homeland Security|Office of Homeland Security|independent agency (generic term)
+office of inspector general|1
+(noun)|Office of Inspector General|OIG|independent agency (generic term)
+office of intelligence support|1
+(noun)|Office of Intelligence Support|OIS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+office of management and budget|1
+(noun)|Office of Management and Budget|OMB|executive agency (generic term)
+office of naval intelligence|1
+(noun)|Office of Naval Intelligence|ONI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+office of the dead|1
+(noun)|Office of the Dead|office (generic term)
+office staff|1
+(noun)|office|staff (generic term)
+officeholder|2
+(noun)|officer|official (generic term)|functionary (generic term)
+(noun)|incumbent|official (generic term)|functionary (generic term)
+officer|5
+(noun)|military officer|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|officeholder|official (generic term)|functionary (generic term)
+(noun)|policeman|police officer|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|ship's officer|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+(verb)|command (generic term)
+officer's mess|1
+(noun)|mess (generic term)|mess hall (generic term)
+official|7
+(adj)|authoritative (similar term)|authorized (similar term)|authorised (similar term)|ex officio (similar term)|formal (similar term)|formalized (similar term)|formalised (similar term)|semiofficial (similar term)|authorized (related term)|authorised (related term)|unofficial (antonym)
+(adj)|administrative unit|administrative body (related term)
+(adj)|confirmed (similar term)
+(adj)|prescribed|regular (similar term)
+(adj)|established (similar term)|constituted (similar term)
+(noun)|functionary|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|adjudicator (generic term)
+official document|1
+(noun)|legal document|legal instrument|instrument|document (generic term)|written document (generic term)|papers (generic term)
+official emissary|1
+(noun)|legate|emissary (generic term)|envoy (generic term)
+official immunity|1
+(noun)|exemption (generic term)|immunity (generic term)|granting immunity (generic term)
+officialdom|1
+(noun)|government officials|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+officialese|1
+(noun)|expressive style (generic term)|style (generic term)
+officialise|1
+(verb)|officialize|change (generic term)|alter (generic term)|modify (generic term)
+officialize|1
+(verb)|officialise|change (generic term)|alter (generic term)|modify (generic term)
+officially|2
+(adv)|unofficially (antonym)
+(adv)|formally
+officiant|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+officiate|2
+(verb)|perform (generic term)
+(verb)|function|serve (generic term)
+officiating|1
+(noun)|umpirage|officiation|refereeing|decision making (generic term)|deciding (generic term)
+officiation|2
+(noun)|umpirage|officiating|refereeing|decision making (generic term)|deciding (generic term)
+(noun)|performance (generic term)|execution (generic term)|carrying out (generic term)|carrying into action (generic term)
+officious|1
+(adj)|interfering|meddlesome|meddling|busy|busybodied|intrusive (similar term)
+officiousness|1
+(noun)|intrusiveness|meddlesomeness|aggressiveness (generic term)
+offing|2
+(noun)|future (generic term)|hereafter (generic term)|futurity (generic term)|time to come (generic term)
+(noun)|body of water (generic term)|water (generic term)
+offish|1
+(adj)|standoffish|unapproachable (similar term)
+offload|2
+(verb)|transfer (generic term)
+(verb)|unload|unlade|empty (generic term)
+offprint|1
+(noun)|reprint|separate|article (generic term)
+offsaddle|1
+(verb)|unsaddle|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|saddle (antonym)
+offset|11
+(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|showtime|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|counterbalance|compensation (generic term)
+(noun)|stolon|runner|plant organ (generic term)
+(noun)|outgrowth|branch|offshoot|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|offset printing|printing (generic term)|printing process (generic term)
+(noun)|set-back|setoff|structure (generic term)|construction (generic term)
+(verb)|countervail|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|cancel|set off|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|transfer (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|print (generic term)|impress (generic term)
+offset lithography|1
+(noun)|lithography (generic term)
+offset printing|1
+(noun)|offset|printing (generic term)|printing process (generic term)
+offsetting balance|1
+(noun)|compensating balance|balance (generic term)
+offshoot|1
+(noun)|outgrowth|branch|offset|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+offshore|3
+(adj)|inshore (antonym)
+(adj)|sea (similar term)
+(adv)|onshore (antonym)
+offshore rig|1
+(noun)|drilling platform|drill rig (generic term)|drilling rig (generic term)|oilrig (generic term)|oil rig (generic term)
+offside|2
+(adj)|offsides|onside (antonym)
+(noun)|mistake (generic term)|error (generic term)|fault (generic term)
+offsides|1
+(adj)|offside|onside (antonym)
+offspring|3
+(noun)|progeny|issue|relative (generic term)|relation (generic term)
+(noun)|materialization|materialisation|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|young|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+offstage|4
+(adj)|onstage (antonym)
+(adj)|private (similar term)
+(noun)|wing|backstage|stage (generic term)
+(adv)|onstage (antonym)
+ofo|2
+(noun)|Ofo|Sioux (generic term)|Siouan (generic term)
+(noun)|Ofo|Siouan (generic term)|Siouan language (generic term)
+oft|1
+(adv)|frequently|often|oftentimes|ofttimes|rarely (antonym)|infrequently (antonym)
+often|2
+(adv)|frequently|oftentimes|oft|ofttimes|rarely (antonym)|infrequently (antonym)
+(adv)|much|a great deal
+oftenness|1
+(noun)|frequency|frequence|rate (generic term)
+oftentimes|1
+(adv)|frequently|often|oft|ofttimes|rarely (antonym)|infrequently (antonym)
+ofttimes|1
+(adv)|frequently|often|oftentimes|oft|rarely (antonym)|infrequently (antonym)
+ogalala|2
+(noun)|Oglala|Ogalala|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+(noun)|Oglala|Ogalala|Siouan (generic term)|Siouan language (generic term)
+ogcocephalidae|1
+(noun)|Ogcocephalidae|family Ogcocephalidae|fish family (generic term)
+ogden|2
+(noun)|Ogden|C. K. Ogden|Charles Kay Ogden|psychologist (generic term)|semanticist (generic term)|semiotician (generic term)
+(noun)|Ogden|town (generic term)
+ogden nash|1
+(noun)|Nash|Ogden Nash|writer (generic term)|author (generic term)
+ogdoad|1
+(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|octonary|octet|digit (generic term)|figure (generic term)
+ogee|1
+(noun)|cyma reversa|cyma (generic term)|cymatium (generic term)
+ogee arch|1
+(noun)|keel arch|pointed arch (generic term)
+ogive|1
+(noun)|nose cone|front (generic term)
+oglala|2
+(noun)|Oglala|Ogalala|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+(noun)|Oglala|Ogalala|Siouan (generic term)|Siouan language (generic term)
+ogle|1
+(verb)|look (generic term)
+ogler|1
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+ogre|2
+(noun)|monster|fiend|devil|demon|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|giant (generic term)
+ogress|1
+(noun)|ogre (generic term)
+oh|1
+(noun)|Ohio|Buckeye State|OH|American state (generic term)
+ohio|2
+(noun)|Ohio|Buckeye State|OH|American state (generic term)
+(noun)|Ohio|Ohio River|river (generic term)
+ohio buckeye|1
+(noun)|Ohio buckeye|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+ohio goldenrod|1
+(noun)|Ohio goldenrod|goldenrod (generic term)
+ohio river|1
+(noun)|Ohio|Ohio River|river (generic term)
+ohio state university|1
+(noun)|Ohio State University|university (generic term)
+ohioan|1
+(noun)|Ohioan|Buckeye|American (generic term)
+ohm|2
+(noun)|resistance unit (generic term)
+(noun)|Ohm|Georg Simon Ohm|physicist (generic term)
+ohm's law|1
+(noun)|Ohm's law|law (generic term)|law of nature (generic term)
+ohmage|1
+(noun)|electric resistance (generic term)|electrical resistance (generic term)|impedance (generic term)|resistance (generic term)|resistivity (generic term)|ohmic resistance (generic term)
+ohmic|1
+(adj)|resistance unit (related term)
+ohmic resistance|1
+(noun)|electric resistance|electrical resistance|impedance|resistance|resistivity|electrical phenomenon (generic term)
+ohmmeter|1
+(noun)|meter (generic term)
+oig|1
+(noun)|Office of Inspector General|OIG|independent agency (generic term)
+oil|5
+(noun)|lipid (generic term)|lipide (generic term)|lipoid (generic term)
+(noun)|oil color|oil colour|oil paint (generic term)
+(noun)|vegetable oil|edible fat (generic term)
+(verb)|cover (generic term)
+(verb)|anoint|inunct|anele|embrocate|bless (generic term)
+oil-bearing|1
+(adj)|productive (similar term)
+oil-fired|1
+(adj)|fueled (similar term)
+oil-hardened steel|1
+(noun)|quenched steel (generic term)
+oil-industry analyst|1
+(noun)|industry analyst (generic term)
+oil-rich seed|1
+(noun)|oilseed|seed (generic term)
+oil-soluble|1
+(adj)|soluble (similar term)
+oil-water interface|1
+(noun)|interface (generic term)
+oil beetle|1
+(noun)|blister beetle (generic term)|meloid (generic term)
+oil burner|1
+(noun)|oil furnace|furnace (generic term)
+oil business|1
+(noun)|oil industry|refining industry|industry (generic term)
+oil cake|1
+(noun)|feed (generic term)|provender (generic term)
+oil cartel|1
+(noun)|trust (generic term)|corporate trust (generic term)|combine (generic term)|cartel (generic term)
+oil change|1
+(noun)|car care (generic term)
+oil color|1
+(noun)|oil|oil colour|oil paint (generic term)
+oil colour|1
+(noun)|oil|oil color|oil paint (generic term)
+oil company|1
+(noun)|company (generic term)
+oil conservation|1
+(noun)|conservation (generic term)
+oil filter|1
+(noun)|filter (generic term)
+oil furnace|1
+(noun)|oil burner|furnace (generic term)
+oil future|1
+(noun)|petroleum future|future (generic term)
+oil geologist|1
+(noun)|petroleum geologist|geologist (generic term)
+oil gland|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+oil heater|1
+(noun)|oilstove|kerosene heater|kerosine heater|heater (generic term)|warmer (generic term)
+oil industry|1
+(noun)|refining industry|oil business|industry (generic term)
+oil lamp|1
+(noun)|kerosene lamp|kerosine lamp|lamp (generic term)
+oil meal|1
+(noun)|oil cake (generic term)
+oil nut|1
+(noun)|buffalo nut|elk nut|fruit (generic term)
+oil of cloves|1
+(noun)|clove oil|essential oil (generic term)|volatile oil (generic term)
+oil of turpentine|1
+(noun)|turpentine|spirit of turpentine|turps|essential oil (generic term)|volatile oil (generic term)
+oil of vitriol|1
+(noun)|vitriol|sulfuric acid|sulphuric acid|acid (generic term)
+oil of wintergreen|1
+(noun)|wintergreen oil|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+oil paint|1
+(noun)|paint (generic term)
+oil painter|1
+(noun)|painter (generic term)
+oil painting|2
+(noun)|painting (generic term)|picture (generic term)
+(noun)|painting (generic term)
+oil palm|1
+(noun)|feather palm (generic term)
+oil pipeline|1
+(noun)|pipeline (generic term)|line (generic term)
+oil pressure|1
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+oil production|1
+(noun)|boring|drilling|production (generic term)
+oil pump|1
+(noun)|pump (generic term)
+oil refinery|1
+(noun)|petroleum refinery|refinery (generic term)
+oil rig|1
+(noun)|drill rig|drilling rig|oilrig|rig (generic term)
+oil rigger|1
+(noun)|rigger|oilman (generic term)
+oil shale|1
+(noun)|shale (generic term)
+oil slick|1
+(noun)|slick (generic term)
+oil stain|1
+(noun)|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+oil tanker|1
+(noun)|oiler|tanker|tank ship|cargo ship (generic term)|cargo vessel (generic term)
+oil tycoon|1
+(noun)|baron (generic term)|big businessman (generic term)|business leader (generic term)|king (generic term)|magnate (generic term)|mogul (generic term)|power (generic term)|top executive (generic term)|tycoon (generic term)
+oil well|1
+(noun)|oiler|well (generic term)
+oilbird|1
+(noun)|guacharo|Steatornis caripensis|caprimulgiform bird (generic term)
+oilcan|1
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+oilcloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+oiled|1
+(adj)|unoiled (antonym)
+oiler|3
+(noun)|worker (generic term)
+(noun)|oil well|well (generic term)
+(noun)|oil tanker|tanker|tank ship|cargo ship (generic term)|cargo vessel (generic term)
+oilfield|1
+(noun)|field (generic term)
+oilfish|1
+(noun)|Ruvettus pretiosus|gempylid (generic term)
+oiliness|2
+(noun)|greasiness|oleaginousness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+(noun)|fulsomeness|oleaginousness|smarminess|unctuousness|unction|hypocrisy (generic term)
+oilman|2
+(noun)|businessman (generic term)|man of affairs (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+oilpaper|1
+(noun)|paper (generic term)
+oilrig|1
+(noun)|drill rig|drilling rig|oil rig|rig (generic term)
+oilseed|1
+(noun)|oil-rich seed|seed (generic term)
+oilskin|1
+(noun)|slicker|macintosh (generic term)|mackintosh (generic term)|mac (generic term)|mack (generic term)
+oilstone|1
+(noun)|whetstone (generic term)
+oilstove|1
+(noun)|oil heater|kerosene heater|kerosine heater|heater (generic term)|warmer (generic term)
+oily|4
+(adj)|greasy|sebaceous|oleaginous|fatty (similar term)|fat (similar term)
+(adj)|buttery|fulsome|oleaginous|smarmy|soapy|unctuous|insincere (similar term)
+(adj)|coated (similar term)
+(adj)|greasy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+oink|2
+(noun)|grunt|noise (generic term)
+(verb)|squeal|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+ointment|2
+(noun)|unction|unguent|balm|salve|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|cream|emollient|toiletry (generic term)|toilet article (generic term)
+oireachtas|1
+(noun)|Oireachtas|parliament (generic term)
+ois|1
+(noun)|Office of Intelligence Support|OIS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+ojibwa|2
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+ojibway|2
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Ojibwa|Ojibway|Chippewa|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+ojos del salado|1
+(noun)|Ojos del Salado|mountain peak (generic term)
+ok|4
+(adj)|all right|fine|o.k.|okay|hunky-dory|satisfactory (similar term)
+(noun)|Oklahoma|Sooner State|OK|American state (generic term)
+(noun)|O.K.|OK|okay|okey|okeh|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+(adv)|very well|fine|alright|all right|OK
+oka|3
+(noun)|weight unit (generic term)|weight (generic term)
+(noun)|liquid unit (generic term)|liquid measure (generic term)
+(noun)|oca|Oxalis tuberosa|Oxalis crenata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+okapi|1
+(noun)|Okapia johnstoni|giraffe (generic term)|camelopard (generic term)|Giraffa camelopardalis (generic term)
+okapia|1
+(noun)|Okapia|genus Okapia|mammal genus (generic term)
+okapia johnstoni|1
+(noun)|okapi|Okapia johnstoni|giraffe (generic term)|camelopard (generic term)|Giraffa camelopardalis (generic term)
+okay|4
+(adj)|all right|fine|o.k.|ok|hunky-dory|satisfactory (similar term)
+(noun)|O.K.|OK|okey|okeh|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+(verb)|approve|O.K.|sanction|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|disapprove (antonym)
+(adv)|O.K.|all right|alright
+okeechobee|1
+(noun)|Okeechobee|Lake Okeechobee|lake (generic term)
+okeechobee waterway|1
+(noun)|Cross-Florida Waterway|Okeechobee Waterway|waterway (generic term)
+okefenokee swamp|1
+(noun)|Okefenokee Swamp|swamp (generic term)|swampland (generic term)
+okeh|1
+(noun)|O.K.|OK|okay|okey|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+oken|1
+(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist (generic term)|natural scientist (generic term)
+okenfuss|1
+(noun)|Oken|Lorenz Oken|Okenfuss|Lorenz Okenfuss|naturalist (generic term)|natural scientist (generic term)
+okey|1
+(noun)|O.K.|OK|okay|okeh|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+okinawa|2
+(noun)|Okinawa|island (generic term)
+(noun)|Okinawa|Okinawa campaign|campaign (generic term)|military campaign (generic term)
+okinawa campaign|1
+(noun)|Okinawa|Okinawa campaign|campaign (generic term)|military campaign (generic term)
+oklahoma|1
+(noun)|Oklahoma|Sooner State|OK|American state (generic term)
+oklahoma city|1
+(noun)|Oklahoma City|capital of Oklahoma|state capital (generic term)
+oklahoman|1
+(noun)|Oklahoman|Sooner|American (generic term)
+okra|3
+(noun)|pod (generic term)|seedpod (generic term)
+(noun)|gumbo|okra plant|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+(noun)|gumbo|vegetable (generic term)|veggie (generic term)
+okra plant|1
+(noun)|okra|gumbo|lady's-finger|Abelmoschus esculentus|Hibiscus esculentus|herb (generic term)|herbaceous plant (generic term)
+oktoberfest|2
+(noun)|Oktoberfest|Octoberfest|lager (generic term)|lager beer (generic term)
+(noun)|Oktoberfest|festival (generic term)|fete (generic term)
+ola|1
+(noun)|olla|writing paper (generic term)
+olaf ii|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+olav ii|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+old|9
+(adj)|aged (similar term)|elderly (similar term)|older (similar term)|senior (similar term)|aged (similar term)|of age (similar term)|aging (similar term)|ageing (similar term)|senescent (similar term)|ancient (similar term)|anile (similar term)|centenarian (similar term)|darkened (similar term)|doddering (similar term)|doddery (similar term)|gaga (similar term)|senile (similar term)|emeritus (similar term)|retired (similar term)|grey (similar term)|gray (similar term)|grey-haired (similar term)|gray-haired (similar term)|grey-headed (similar term)|gray-headed (similar term)|grizzly (similar term)|hoar (similar term)|hoary (similar term)|white-haired (similar term)|middle-aged (similar term)|nonagenarian (similar term)|octogenarian (similar term)|oldish (similar term)|overage (similar term)|overaged (similar term)|superannuated (similar term)|over-the-hill (similar term)|retired (similar term)|superannuated (similar term)|sexagenarian (similar term)|venerable (similar term)|experienced (related term)|experient (related term)|mature (related term)|senior (related term)|young (antonym)
+(adj)|age-old (similar term)|antique (similar term)|antediluvian (similar term)|antiquated (similar term)|archaic (similar term)|antique (similar term)|auld (similar term)|cold (similar term)|stale (similar term)|hand-me-down (similar term)|hand-down (similar term)|hoary (similar term)|rusty (similar term)|immemorial (similar term)|long-ago (similar term)|longtime (similar term)|patched (similar term)|secondhand (similar term)|used (similar term)|sunset (similar term)|yellow (similar term)|yellowed (similar term)|noncurrent (related term)|nonmodern (related term)|past (related term)|stale (related term)|worn (related term)|new (antonym)
+(adj)|familiar (similar term)
+(adj)|previous|preceding (similar term)
+(adj)|Old|early (similar term)
+(adj)|older|experienced (similar term)|experient (similar term)
+(adj)|erstwhile|former|onetime|quondam|sometime|past (similar term)
+(adj)|honest-to-god|honest-to-goodness|sure-enough|genuine (similar term)|echt (similar term)
+(noun)|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+old-age insurance|1
+(noun)|Social Security (generic term)
+old-age pension|1
+(noun)|retirement pension|retirement check|retirement benefit|retirement fund|superannuation|pension (generic term)
+old-age pensioner|1
+(noun)|pensioner (generic term)|pensionary (generic term)
+old-fashioned|1
+(adj)|antique|demode|ex|old-hat|outmoded|passe|passee|unfashionable (similar term)|unstylish (similar term)
+old-fashionedness|1
+(noun)|oldness (generic term)
+old-field toadflax|1
+(noun)|blue toadflax|Linaria canadensis|toadflax (generic term)|butter-and-eggs (generic term)|wild snapdragon (generic term)|devil's flax (generic term)|Linaria vulgaris (generic term)
+old-hat|2
+(adj)|banal|commonplace|hackneyed|shopworn|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+(adj)|antique|demode|ex|old-fashioned|outmoded|passe|passee|unfashionable (similar term)|unstylish (similar term)
+old-maid's bonnet|1
+(noun)|wild lupine|sundial lupine|Indian beet|Lupinus perennis|subshrub (generic term)|suffrutex (generic term)
+old-maidish|1
+(adj)|old-womanish|fastidious (similar term)
+old-man-of-the-woods|1
+(noun)|Strobilomyces floccopus|bolete (generic term)
+old-time|1
+(adj)|quaint|olde worlde|fashionable (similar term)|stylish (similar term)
+old-timer|2
+(noun)|veteran|oldtimer|old hand|warhorse|old stager|stager|expert (generic term)
+(noun)|oldtimer|gaffer|old geezer|antique|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+old-womanish|1
+(adj)|old-maidish|fastidious (similar term)
+old-world|1
+(adj)|nonmodern (similar term)
+old age|1
+(noun)|years|age|eld|geezerhood|time of life (generic term)
+old bag|1
+(noun)|bag|unpleasant woman (generic term)|disagreeable woman (generic term)
+old bailey|1
+(noun)|Old Bailey|criminal court (generic term)
+old boy|3
+(noun)|old man|man (generic term)|adult male (generic term)
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+(noun)|alumnus (generic term)|alumna (generic term)|alum (generic term)|graduate (generic term)|grad (generic term)
+old boy network|1
+(noun)|network (generic term)|web (generic term)
+old bulgarian|1
+(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+old bullion|1
+(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator (generic term)
+old catholic|1
+(noun)|Old Catholic|Christian (generic term)
+old catholic church|1
+(noun)|Old Catholic Church|Catholic Church (generic term)
+old church slavic|1
+(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+old church slavonic|1
+(noun)|Old Church Slavonic|Old Church Slavic|Church Slavic|Old Bulgarian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+old codger|1
+(noun)|codger|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+old colony|1
+(noun)|Massachusetts|Bay State|Old Colony|MA|American state (generic term)
+old country|1
+(noun)|fatherland (generic term)|homeland (generic term)|motherland (generic term)|mother country (generic term)|country of origin (generic term)|native land (generic term)
+old delhi|1
+(noun)|Delhi|Old Delhi|city (generic term)|metropolis (generic term)|urban center (generic term)
+old dominion|1
+(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state (generic term)
+old dominion state|1
+(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state (generic term)
+old english|1
+(noun)|Old English|Anglo-Saxon|English (generic term)|English language (generic term)
+old english sheepdog|1
+(noun)|Old English sheepdog|bobtail|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+old faithful|1
+(noun)|Old Faithful|geyser (generic term)
+old fashioned|1
+(noun)|cocktail (generic term)
+old french|1
+(noun)|Old French|French (generic term)
+old frisian|1
+(noun)|Old Frisian|Frisian (generic term)
+old geezer|1
+(noun)|old-timer|oldtimer|gaffer|antique|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+old glory|1
+(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag (generic term)
+old gold|1
+(noun)|yellow (generic term)|yellowness (generic term)
+old growth|1
+(noun)|virgin forest|forest (generic term)|wood (generic term)|woods (generic term)
+old guard|1
+(noun)|faction (generic term)|sect (generic term)
+old hand|1
+(noun)|veteran|old-timer|oldtimer|warhorse|old stager|stager|expert (generic term)
+old hickory|1
+(noun)|Jackson|Andrew Jackson|Old Hickory|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+old high german|1
+(noun)|Old High German|German (generic term)|High German (generic term)|German language (generic term)
+old icelandic|1
+(noun)|Old Icelandic|Old Norse (generic term)
+old irish|1
+(noun)|Old Irish|Irish (generic term)|Irish Gaelic (generic term)
+old ironsides|1
+(noun)|Constitution|Old Ironsides|frigate (generic term)
+old italian|1
+(noun)|Old Italian|Italian (generic term)
+old lady|1
+(noun)|wife (generic term)|married woman (generic term)
+old latin|1
+(noun)|Old Latin|Latin (generic term)
+old line state|1
+(noun)|Maryland|Old Line State|Free State|MD|American state (generic term)
+old maid|5
+(noun)|spinster|unmarried woman (generic term)
+(noun)|zinnia|old maid flower|flower (generic term)
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+(noun)|loser (generic term)|also-ran (generic term)
+(noun)|card game (generic term)|cards (generic term)
+old maid flower|1
+(noun)|zinnia|old maid|flower (generic term)
+old man|5
+(noun)|greybeard|graybeard|Methuselah|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)|man (generic term)|adult male (generic term)
+(noun)|old boy|man (generic term)|adult male (generic term)
+(noun)|father (generic term)|male parent (generic term)|begetter (generic term)|dysphemism (generic term)
+(noun)|common wormwood|absinthe|lad's love|Artemisia absinthium|wormwood (generic term)
+(noun)|boss (generic term)|hirer (generic term)
+old man's beard|3
+(noun)|Spanish moss|black moss|long moss|Tillandsia usneoides|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+(noun)|traveler's joy|traveller's joy|Clematis vitalba|clematis (generic term)
+(noun)|virgin's bower|devil's darning needle|Clematis virginiana|clematis (generic term)
+old man of the mountain|1
+(noun)|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower (generic term)|wild flower (generic term)
+old master|1
+(noun)|painter (generic term)|maestro (generic term)|master (generic term)
+old money|1
+(noun)|silver spoon|inherited wealth (generic term)
+old nick|1
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+old norse|1
+(noun)|Old Norse|Germanic (generic term)|Germanic language (generic term)
+old north french|1
+(noun)|Norman-French|Old North French|French (generic term)
+old north state|1
+(noun)|North Carolina|Old North State|Tar Heel State|NC|American state (generic term)
+old person|1
+(noun)|oldster|senior citizen|golden ager|adult (generic term)|grownup (generic term)
+old prussian|1
+(noun)|Old Prussian|Baltic (generic term)|Baltic language (generic term)
+old rose|1
+(noun)|rose (generic term)|rosiness (generic term)
+old salt|1
+(noun)|mariner|seaman|tar|Jack-tar|Jack|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+old saxon|1
+(noun)|Old Saxon|Low German (generic term)|Plattdeutsch (generic term)
+old school|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+old school tie|1
+(noun)|necktie (generic term)|tie (generic term)
+old sledge|1
+(noun)|seven-up|all fours (generic term)|high-low-jack (generic term)
+old south|1
+(noun)|Old South|South (generic term)
+old squaw|1
+(noun)|oldwife|Clangula hyemalis|sea duck (generic term)
+old stager|1
+(noun)|veteran|old-timer|oldtimer|old hand|warhorse|stager|expert (generic term)
+old style|1
+(noun)|old style font|proportional font (generic term)|modern (antonym)
+old style calendar|1
+(noun)|Julian calendar|Old Style calendar|solar calendar (generic term)
+old style font|1
+(noun)|old style|proportional font (generic term)|modern (antonym)
+old testament|1
+(noun)|Old Testament|will (generic term)|testament (generic term)
+old times|1
+(noun)|auld langsyne|langsyne|good old days|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+old witch grass|1
+(noun)|witchgrass|witch grass|old witchgrass|tumble grass|Panicum capillare|panic grass (generic term)
+old witchgrass|1
+(noun)|witchgrass|witch grass|old witch grass|tumble grass|Panicum capillare|panic grass (generic term)
+old wives' tale|1
+(noun)|lore (generic term)|traditional knowledge (generic term)
+old woman|2
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)|woman (generic term)|adult female (generic term)
+(noun)|dusty miller|beach wormwood|Artemisia stelleriana|wormwood (generic term)
+old world|2
+(adj)|Old World|region (related term)
+(noun)|Old World|region (generic term)
+old world beaver|1
+(noun)|Old World beaver|Castor fiber|beaver (generic term)
+old world buffalo|1
+(noun)|Old World buffalo|buffalo|bovid (generic term)
+old world chat|1
+(noun)|Old World chat|chat|thrush (generic term)
+old world coot|1
+(noun)|Old World coot|Fulica atra|coot (generic term)
+old world coral snake|1
+(noun)|coral snake|Old World coral snake|elapid (generic term)|elapid snake (generic term)
+old world crayfish|1
+(noun)|Old World crayfish|ecrevisse|crayfish (generic term)|crawfish (generic term)|crawdad (generic term)|crawdaddy (generic term)
+old world flycatcher|1
+(noun)|Old World flycatcher|true flycatcher|flycatcher|oscine (generic term)|oscine bird (generic term)
+old world hop hornbeam|1
+(noun)|Old World hop hornbeam|Ostrya carpinifolia|hop hornbeam (generic term)
+old world jay|1
+(noun)|Old World jay|jay (generic term)
+old world least weasel|1
+(noun)|Old World least weasel|Mustela nivalis|weasel (generic term)
+old world leishmaniasis|1
+(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|tropical sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+old world mistletoe|1
+(noun)|mistletoe|Viscum album|Old World mistletoe|parasitic plant (generic term)
+old world monkey|1
+(noun)|Old World monkey|catarrhine|monkey (generic term)
+old world oriole|1
+(noun)|Old World oriole|oriole|oscine (generic term)|oscine bird (generic term)
+old world porcupine|1
+(noun)|Old World porcupine|porcupine (generic term)|hedgehog (generic term)
+old world quail|1
+(noun)|Old World quail|quail (generic term)
+old world rabbit|1
+(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit (generic term)|coney (generic term)|cony (generic term)
+old world robin|1
+(noun)|robin|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush (generic term)
+old world scops owl|1
+(noun)|Old World scops owl|Otus scops|scops owl (generic term)
+old world vulture|1
+(noun)|Old World vulture|vulture (generic term)
+old world warbler|1
+(noun)|Old World warbler|true warbler|warbler (generic term)
+old world white pelican|1
+(noun)|Old world white pelican|Pelecanus onocrotalus|pelican (generic term)
+old world yew|1
+(noun)|Old World yew|English yew|Taxus baccata|yew (generic term)
+olde worlde|1
+(adj)|old-time|quaint|fashionable (similar term)|stylish (similar term)
+olden|1
+(adj)|past (similar term)
+oldenberg|1
+(noun)|Oldenberg|Claes Oldenberg|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+older|3
+(adj)|aged|elderly|senior|old (similar term)
+(adj)|elder|sr.|senior (similar term)
+(adj)|old|experienced (similar term)|experient (similar term)
+oldfield|1
+(noun)|Oldfield|Barney Oldfield|Berna Eli Oldfield|racer (generic term)|race driver (generic term)|automobile driver (generic term)
+oldie|1
+(noun)|golden oldie|song (generic term)|vocal (generic term)
+oldish|1
+(adj)|old (similar term)
+oldness|2
+(noun)|age (generic term)|youngness (antonym)
+(noun)|age (generic term)|newness (antonym)
+oldster|1
+(noun)|old person|senior citizen|golden ager|adult (generic term)|grownup (generic term)
+oldtimer|2
+(noun)|veteran|old-timer|old hand|warhorse|old stager|stager|expert (generic term)
+(noun)|old-timer|gaffer|old geezer|antique|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+olduvai gorge|1
+(noun)|Olduvai Gorge|gorge (generic term)
+oldwench|1
+(noun)|queen triggerfish|Bessy cerca|oldwife|Balistes vetula|triggerfish (generic term)
+oldwife|2
+(noun)|queen triggerfish|Bessy cerca|oldwench|Balistes vetula|triggerfish (generic term)
+(noun)|old squaw|Clangula hyemalis|sea duck (generic term)
+olea|1
+(noun)|Olea|genus Olea|dicot genus (generic term)|magnoliopsid genus (generic term)
+olea cunninghamii|1
+(noun)|black maire|Olea cunninghamii|olive tree (generic term)
+olea europaea|1
+(noun)|olive|European olive tree|Olea europaea|olive tree (generic term)
+olea lanceolata|1
+(noun)|white maire|Olea lanceolata|olive tree (generic term)
+oleaceae|1
+(noun)|Oleaceae|family Oleaceae|olive family|dicot family (generic term)|magnoliopsid family (generic term)
+oleaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+oleaginous|2
+(adj)|buttery|fulsome|oily|smarmy|soapy|unctuous|insincere (similar term)
+(adj)|greasy|oily|sebaceous|fatty (similar term)|fat (similar term)
+oleaginousness|2
+(noun)|greasiness|oiliness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+(noun)|fulsomeness|oiliness|smarminess|unctuousness|unction|hypocrisy (generic term)
+oleales|1
+(noun)|Oleales|order Oleales|plant order (generic term)
+oleander|1
+(noun)|rose bay|Nerium oleander|poisonous plant (generic term)
+oleander fern|1
+(noun)|Oleandra neriiformis|Oleandra mollis|fern (generic term)
+oleandra|1
+(noun)|Oleandra|genus Oleandra|fern genus (generic term)
+oleandra mollis|1
+(noun)|oleander fern|Oleandra neriiformis|Oleandra mollis|fern (generic term)
+oleandra neriiformis|1
+(noun)|oleander fern|Oleandra neriiformis|Oleandra mollis|fern (generic term)
+oleandraceae|1
+(noun)|Oleandraceae|family Oleandraceae|fern family (generic term)
+olearia|1
+(noun)|Olearia|genus Olearia|asterid dicot genus (generic term)
+olearia argophylla|1
+(noun)|muskwood|Olearia argophylla|daisybush (generic term)|daisy-bush (generic term)|daisy bush (generic term)
+olearia haastii|1
+(noun)|New Zealand daisybush|Olearia haastii|daisybush (generic term)|daisy-bush (generic term)|daisy bush (generic term)
+oleaster|1
+(noun)|shrub (generic term)|bush (generic term)
+oleaster family|1
+(noun)|Elaeagnaceae|family Elaeagnaceae|dicot family (generic term)|magnoliopsid family (generic term)
+olecranon|1
+(noun)|olecranon process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+olecranon process|1
+(noun)|olecranon|process (generic term)|outgrowth (generic term)|appendage (generic term)
+oled|1
+(noun)|organic light-emitting diode|OLED|light-emitting diode (generic term)|LED (generic term)
+olefin|1
+(noun)|alkene|olefine|aliphatic compound (generic term)
+olefine|1
+(noun)|alkene|olefin|aliphatic compound (generic term)
+oleic acid|1
+(noun)|monounsaturated fatty acid (generic term)
+olein|1
+(noun)|triolein|glyceryl ester (generic term)
+oleo|1
+(noun)|margarine|margarin|oleomargarine|marge|spread (generic term)|paste (generic term)
+oleo oil|1
+(noun)|animal oil (generic term)
+oleomargarine|1
+(noun)|margarine|margarin|oleo|marge|spread (generic term)|paste (generic term)
+oleophilic|1
+(adj)|lipophilic (similar term)|lipotropic (similar term)|oleophobic (antonym)
+oleophobic|1
+(adj)|oleophilic (antonym)
+oleoresin|1
+(noun)|natural resin (generic term)
+oleoresin capiscum|1
+(noun)|oleoresin (generic term)
+olfaction|1
+(noun)|smell|sense of smell|olfactory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+olfactive|1
+(adj)|olfactory|modality|sense modality|sensory system|exteroception (related term)
+olfactory|1
+(adj)|olfactive|modality|sense modality|sensory system|exteroception (related term)
+olfactory brain|1
+(noun)|rhinencephalon|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+olfactory bulb|1
+(noun)|neural structure (generic term)
+olfactory impairment|1
+(noun)|dysosmia|parosamia|disorder (generic term)|upset (generic term)
+olfactory modality|1
+(noun)|smell|sense of smell|olfaction|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+olfactory nerve|1
+(noun)|nervii olfactorii|first cranial nerve|cranial nerve (generic term)
+olfactory organ|1
+(noun)|nose|chemoreceptor (generic term)
+olfactory perception|1
+(noun)|smell|odor|odour|olfactory sensation|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+olfactory property|1
+(noun)|smell|aroma|odor|odour|scent|property (generic term)
+olfactory sensation|1
+(noun)|smell|odor|odour|olfactory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+olfersia|1
+(noun)|Olfersia|genus Olfersia|fern genus (generic term)
+olfersia cervina|1
+(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern (generic term)
+olga korbut|1
+(noun)|Korbut|Olga Korbut|gymnast (generic term)
+olibanum|1
+(noun)|frankincense|gum olibanum|thus|gum (generic term)
+oligarch|1
+(noun)|ruler (generic term)|swayer (generic term)
+oligarchic|1
+(adj)|oligarchical|political system|form of government (related term)
+oligarchical|1
+(adj)|oligarchic|political system|form of government (related term)
+oligarchy|1
+(noun)|political system (generic term)|form of government (generic term)
+oligocene|1
+(noun)|Oligocene|Oligocene epoch|epoch (generic term)
+oligocene epoch|1
+(noun)|Oligocene|Oligocene epoch|epoch (generic term)
+oligochaeta|1
+(noun)|Oligochaeta|class Oligochaeta|class (generic term)
+oligochaete|1
+(noun)|oligochaete worm|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+oligochaete worm|1
+(noun)|oligochaete|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+oligoclase|1
+(noun)|plagioclase|feldspar (generic term)|felspar (generic term)
+oligodactyly|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+oligodendria|1
+(noun)|oligodendroglia|neuroglia (generic term)|glia (generic term)
+oligodendrocyte|1
+(noun)|neurogliacyte (generic term)|neuroglial cell (generic term)|glial cell (generic term)
+oligodendroglia|1
+(noun)|oligodendria|neuroglia (generic term)|glia (generic term)
+oligodontia|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+oligomenorrhea|1
+(noun)|menstruation (generic term)|menses (generic term)|menstruum (generic term)|catamenia (generic term)|period (generic term)|flow (generic term)
+oligoplites|1
+(noun)|Oligoplites|genus Oligoplites|fish genus (generic term)
+oligopoly|1
+(noun)|market (generic term)|marketplace (generic term)
+oligoporus|1
+(noun)|Oligoporus|genus Oligoporus|fungus genus (generic term)
+oligoporus leucospongia|1
+(noun)|Oligoporus leucospongia|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+oligosaccharide|1
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+oligospermia|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+oliguria|2
+(noun)|symptom (generic term)
+(noun)|micturition (generic term)|urination (generic term)
+olimbos|1
+(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak (generic term)
+olive|6
+(adj)|chromatic (similar term)
+(noun)|fruit (generic term)
+(noun)|European olive tree|Olea europaea|olive tree (generic term)
+(noun)|wood (generic term)
+(noun)|relish (generic term)|drupe (generic term)|stone fruit (generic term)
+(noun)|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+olive-brown|1
+(adj)|chromatic (similar term)
+olive-colored|1
+(adj)|olive-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+olive-coloured|1
+(adj)|olive-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+olive-drab|1
+(adj)|drab|chromatic (similar term)
+olive-drab uniform|1
+(noun)|olive drab|military uniform (generic term)
+olive-gray|1
+(adj)|olive-grey|achromatic (similar term)
+olive-green|1
+(noun)|olive green|green (generic term)|greenness (generic term)|viridity (generic term)
+olive-grey|1
+(adj)|olive-gray|achromatic (similar term)
+olive-like|1
+(adj)|olivelike|rounded (similar term)
+olive-sized|1
+(adj)|small (similar term)|little (similar term)
+olive-tree agaric|1
+(noun)|Pleurotus phosphoreus|agaric (generic term)
+olive branch|1
+(noun)|peace offering|offer (generic term)|offering (generic term)
+olive brown|1
+(noun)|brown (generic term)|brownness (generic term)
+olive drab|3
+(noun)|drab|olive (generic term)
+(noun)|olive-drab uniform|military uniform (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+olive family|1
+(noun)|Oleaceae|family Oleaceae|dicot family (generic term)|magnoliopsid family (generic term)
+olive green|1
+(noun)|olive-green|green (generic term)|greenness (generic term)|viridity (generic term)
+olive oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+olive ridley|1
+(noun)|Pacific ridley|Lepidochelys olivacea|ridley (generic term)
+olive tree|1
+(noun)|fruit tree (generic term)
+olivelike|1
+(adj)|olive-like|rounded (similar term)
+olivenite|1
+(noun)|mineral (generic term)
+oliver|1
+(noun)|Oliver|Joseph Oliver|King Oliver|jazz musician (generic term)|jazzman (generic term)
+oliver cromwell|1
+(noun)|Cromwell|Oliver Cromwell|Ironsides|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+oliver ellsworth|1
+(noun)|Ellsworth|Oliver Ellsworth|chief justice (generic term)
+oliver goldsmith|1
+(noun)|Goldsmith|Oliver Goldsmith|writer (generic term)|author (generic term)
+oliver hardy|1
+(noun)|Hardy|Oliver Hardy|comedian (generic term)|comic (generic term)
+oliver hazard perry|1
+(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore (generic term)
+oliver heaviside|1
+(noun)|Heaviside|Oliver Heaviside|physicist (generic term)|electrical engineer (generic term)
+oliver stone|1
+(noun)|Stone|Oliver Stone|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+oliver wendell holmes|1
+(noun)|Holmes|Oliver Wendell Holmes|writer (generic term)|author (generic term)
+oliver wendell holmes jr.|1
+(noun)|Holmes|Oliver Wendell Holmes Jr.|jurist (generic term)|legal expert (generic term)
+olivier|1
+(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+olivine|1
+(noun)|mineral (generic term)
+olla|1
+(noun)|ola|writing paper (generic term)
+olla podrida|1
+(noun)|Spanish burgoo|stew (generic term)
+ollari|1
+(noun)|Ollari|Central Dravidian (generic term)
+olm|1
+(noun)|Proteus anguinus|salamander (generic term)
+olmec|2
+(adj)|Olmec|Indian|American Indian|Red Indian (related term)
+(noun)|Olmec|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+olmsted|1
+(noun)|Olmsted|Frederick Law Olmsted|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+ology|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+olympia|2
+(noun)|Olympia|capital of Washington|state capital (generic term)
+(noun)|Olympia|plain (generic term)|field (generic term)|champaign (generic term)
+olympiad|2
+(noun)|Olympiad|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|Olympic Games|Olympics|Olympiad|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+olympian|6
+(adj)|Olympian|Olympic|plain|field|champaign (related term)
+(adj)|Olympian|mountain peak (related term)
+(adj)|majestic|superior (similar term)
+(adj)|exceeding|exceptional|prodigious|surpassing|extraordinary (similar term)
+(noun)|Olympian|athlete (generic term)|jock (generic term)
+(noun)|Olympian|Olympic god|Greek deity (generic term)
+olympian games|1
+(noun)|Olympian Games|Olympic Games|agon (generic term)
+olympian zeus|1
+(noun)|Olympian Zeus|statue (generic term)
+olympic|2
+(adj)|Olympic|athletic contest|athletic competition|athletics (related term)
+(adj)|Olympian|Olympic|plain|field|champaign (related term)
+olympic games|2
+(noun)|Olympic Games|Olympics|Olympiad|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+(noun)|Olympian Games|Olympic Games|agon (generic term)
+olympic god|1
+(noun)|Olympian|Olympic god|Greek deity (generic term)
+olympic national park|1
+(noun)|Olympic National Park|national park (generic term)
+olympic salamander|1
+(noun)|Rhyacotriton olympicus|salamander (generic term)
+olympics|1
+(noun)|Olympic Games|Olympics|Olympiad|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+olympus|1
+(noun)|Olympus|Mount Olympus|Mt. Olympus|Olimbos|mountain peak (generic term)
+omaha|4
+(noun)|Omaha|Maha|Dhegiha (generic term)
+(noun)|Omaha|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Omaha|Dhegiha (generic term)
+(noun)|Omaha|thoroughbred (generic term)
+oman|1
+(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country (generic term)|Asian nation (generic term)
+omani|2
+(adj)|Omani|Asian country|Asian nation (related term)
+(noun)|Omani|Arab (generic term)|Arabian (generic term)
+omani monetary unit|1
+(noun)|Omani monetary unit|monetary unit (generic term)
+omani rial|1
+(noun)|riyal-omani|Omani rial|rial|Omani monetary unit (generic term)
+omar bradley|1
+(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general (generic term)|full general (generic term)
+omar khayyam|1
+(noun)|Omar Khayyam|poet (generic term)|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+omar nelson bradley|1
+(noun)|Bradley|Omar Bradley|Omar Nelson Bradley|general (generic term)|full general (generic term)
+omasum|1
+(noun)|psalterium|third stomach|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+omayyad|1
+(noun)|Umayyad|Ommiad|Omayyad|dynasty (generic term)
+omb|1
+(noun)|Office of Management and Budget|OMB|executive agency (generic term)
+ombu|1
+(noun)|bella sombra|Phytolacca dioica|pokeweed (generic term)
+ombudsman|1
+(noun)|investigator (generic term)
+omdurman|2
+(noun)|Omdurman|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Omdurman|battle of Omdurman|pitched battle (generic term)
+omega|2
+(noun)|Z|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+omega-3|1
+(noun)|omega-3 fatty acid|polyunsaturated fatty acid (generic term)
+omega-3 fatty acid|1
+(noun)|omega-3|polyunsaturated fatty acid (generic term)
+omega-6|1
+(noun)|omega-6 fatty acid|polyunsaturated fatty acid (generic term)
+omega-6 fatty acid|1
+(noun)|omega-6|polyunsaturated fatty acid (generic term)
+omega centauri|1
+(noun)|Omega Centauri|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+omelet|1
+(noun)|omelette|dish (generic term)
+omelet pan|1
+(noun)|omelette pan|pan (generic term)|cooking pan (generic term)
+omelette|1
+(noun)|omelet|dish (generic term)
+omelette pan|1
+(noun)|omelet pan|pan (generic term)|cooking pan (generic term)
+omen|2
+(noun)|portent|presage|prognostic|prognostication|prodigy|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+(verb)|bode|portend|auspicate|prognosticate|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+omental bursa|1
+(noun)|bursa omentalis|lesser peritoneal cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+omentum|1
+(noun)|peritoneum (generic term)
+omeprazole|1
+(noun)|Prilosec|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+omerta|1
+(noun)|code (generic term)|codification (generic term)
+omicron|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+ominous|2
+(adj)|baleful|forbidding|menacing|minacious|minatory|sinister|threatening|alarming (similar term)
+(adj)|ill|inauspicious|unpropitious (similar term)
+omissible|1
+(adj)|incidental (similar term)|incident (similar term)
+omission|4
+(noun)|skip|mistake (generic term)|error (generic term)|fault (generic term)
+(noun)|neglect (generic term)|disuse (generic term)
+(noun)|deletion|linguistic process (generic term)
+(noun)|disregard (generic term)|neglect (generic term)
+omissive|1
+(adj)|disregard|neglect (related term)
+omit|2
+(verb)|exclude|except|leave out|leave off|take out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+(verb)|neglect|pretermit|drop|miss|leave out|overlook|overleap|attend to (antonym)
+omiya|1
+(noun)|Omiya|city (generic term)|metropolis (generic term)|urban center (generic term)
+ommastrephes|1
+(noun)|squid (generic term)
+ommatidium|1
+(noun)|simple eye (generic term)|stemma (generic term)|ocellus (generic term)
+ommiad|1
+(noun)|Umayyad|Ommiad|Omayyad|dynasty (generic term)
+omnibus|3
+(adj)|comprehensive (similar term)
+(noun)|anthology (generic term)
+(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|passenger vehicle|public transport (generic term)
+omnidirectional|1
+(adj)|position|spatial relation (related term)|directional (antonym)
+omnidirectional antenna|1
+(noun)|nondirectional antenna|antenna (generic term)|aerial (generic term)|transmitting aerial (generic term)
+omnidirectional radio range|1
+(noun)|omnirange|omnidirectional range|navigational system (generic term)
+omnidirectional range|1
+(noun)|omnirange|omnidirectional radio range|navigational system (generic term)
+omnifarious|1
+(adj)|varied (similar term)
+omnipotence|1
+(noun)|state (generic term)
+omnipotent|1
+(adj)|almighty|all-powerful|powerful (similar term)
+omnipresence|1
+(noun)|ubiquity|ubiquitousness|presence (generic term)
+omnipresent|1
+(adj)|ubiquitous|present (similar term)
+omnirange|1
+(noun)|omnidirectional range|omnidirectional radio range|navigational system (generic term)
+omniscience|1
+(noun)|state (generic term)
+omniscient|1
+(adj)|all-knowing|wise (similar term)
+omnium-gatherum|1
+(noun)|odds and ends|oddments|melange|farrago|ragbag|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+omnivore|2
+(noun)|eater (generic term)|feeder (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+omnivorous|1
+(adj)|all-devouring (similar term)|insectivorous (antonym)|carnivorous (antonym)|herbivorous (antonym)
+omomyid|1
+(noun)|Omomyid|Omomyid group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+omomyid group|1
+(noun)|Omomyid|Omomyid group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+omophagia|1
+(noun)|eating (generic term)|feeding (generic term)
+omotic|1
+(noun)|Omotic|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+omphalocele|1
+(noun)|umbilical hernia|hernia (generic term)|herniation (generic term)
+omphalos|1
+(noun)|navel|umbilicus|bellybutton|omphalus|point (generic term)
+omphaloskepsis|1
+(noun)|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+omphalotus|1
+(noun)|Omphalotus|genus Omphalotus|fungus genus (generic term)
+omphalotus illudens|1
+(noun)|jack-o-lantern fungus|jack-o-lantern|jack-a-lantern|Omphalotus illudens|agaric (generic term)
+omphalus|1
+(noun)|navel|umbilicus|bellybutton|omphalos|point (generic term)
+omsk|1
+(noun)|Omsk|city (generic term)|metropolis (generic term)|urban center (generic term)
+on|3
+(adj)|connected (similar term)|off (antonym)
+(adj)|happening (similar term)|off (antonym)
+(adv)|along
+on-going|1
+(adj)|ongoing|current (similar term)
+on-key|1
+(adj)|true|harmonious (similar term)
+on-license|1
+(noun)|liquor license (generic term)|liquor licence (generic term)
+on-line|3
+(adj)|off-line (antonym)
+(adj)|machine-accessible (similar term)|connected (similar term)|off-line (antonym)
+(adj)|current (similar term)
+on-line database|1
+(noun)|electronic database|computer database|electronic information service|database (generic term)
+on-off switch|1
+(noun)|toggle switch|toggle|on/off switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+on-site|1
+(adj)|on-the-spot (similar term)|on-the-scene (similar term)|off-site (antonym)
+on-street|1
+(adj)|off-street (antonym)
+on-the-job|1
+(adj)|activity (related term)
+on-the-scene|1
+(adj)|on-the-spot|on-site (similar term)
+on-the-spot|1
+(adj)|on-the-scene|on-site (similar term)
+on/off switch|1
+(noun)|toggle switch|toggle|on-off switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+on a higher floor|1
+(adv)|upstairs|up the stairs|downstairs (antonym)
+on a lower floor|1
+(adv)|downstairs|down the stairs|below|upstairs (antonym)
+on a regular basis|1
+(adv)|regularly|irregularly (antonym)
+on an individual basis|1
+(adv)|individually|separately|singly|severally|one by one
+on an irregular basis|1
+(adv)|irregularly|regularly (antonym)
+on and off|1
+(adv)|off and on
+on average|1
+(adv)|on the average
+on base|1
+(adv)|aboard
+on fire|1
+(adj)|ablaze|afire|aflame|aflare|alight|blazing|burning|flaming|lighted (similar term)|lit (similar term)
+on guard|1
+(adj)|on one's guard|upon one's guard|on your guard|wary (similar term)
+on hand|2
+(adj)|available (similar term)
+(adj)|present (similar term)
+on it|1
+(adv)|thereon|on that
+on land|1
+(adv)|ashore|toward land|onto land
+on leave|1
+(adj)|inactive (similar term)
+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 (similar term)
+on one hand|1
+(adv)|on the one hand|on the other hand (antonym)
+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|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+on request|1
+(adv)|for the asking
+on tap|1
+(adj)|available (similar term)
+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 (similar term)
+on the average|1
+(adv)|on average
+on the button|2
+(adj)|on the nose|precise (similar term)
+(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 (similar term)
+on the go|1
+(adj)|active (similar term)
+on the hook|1
+(adj)|dangerous (similar term)|unsafe (similar term)
+on the job|2
+(adj)|working|employed (similar term)
+(adj)|on the alert|alert (similar term)
+on the loose|1
+(adj)|at large|escaped|loose|free (similar term)
+on the nose|2
+(adj)|on the button|precise (similar term)
+(adv)|precisely|exactly|on the dot|on the button
+on the offensive|1
+(adj)|offensive (similar term)
+on the one hand|1
+(adv)|on one hand|on the other hand (antonym)
+on the other hand|1
+(adv)|then again|but then|on the one hand (antonym)
+on the q.t.|1
+(adv)|secretly|in secret|on the Q.T.|on the QT
+on the qt|1
+(adv)|secretly|in secret|on the Q.T.|on the QT
+on the qui vive|1
+(noun)|alertness|sharp-sightedness|attentiveness (generic term)
+on the road|1
+(noun)|on tour|travel (generic term)|traveling (generic term)|travelling (generic term)
+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 (similar term)
+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 time|2
+(adj)|prompt|punctual (similar term)
+(adv)|not late|not delayed
+on tour|1
+(noun)|on the road|travel (generic term)|traveling (generic term)|travelling (generic term)
+on trial|1
+(adj)|unproved (similar term)|unproven (similar term)
+on your guard|1
+(adj)|on guard|on one's guard|upon one's guard|wary (similar term)
+onager|2
+(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|trebuchet|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+(noun)|Equus hemionus|wild ass (generic term)
+onagraceae|1
+(noun)|Onagraceae|family Onagraceae|evening-primrose family|rosid dicot family (generic term)
+onanism|2
+(noun)|masturbation|autoeroticism (generic term)|autoerotism (generic term)
+(noun)|coitus interruptus|withdrawal method|pulling out|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+onanist|1
+(noun)|masturbator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+onboard|1
+(adv)|aboard
+once|2
+(adv)|one time|in one case
+(adv)|formerly|at one time|erstwhile|erst
+once-over|1
+(noun)|look-over|examination (generic term)|scrutiny (generic term)
+once again|1
+(adv)|again|once more|over again
+once and for all|1
+(adv)|conclusively|inconclusively (antonym)
+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 (generic term)
+oncidium|1
+(noun)|dancing lady orchid|butterfly plant|butterfly orchid|orchid (generic term)|orchidaceous plant (generic term)
+oncidium papilio|1
+(noun)|Psychopsis papilio|Oncidium papilio|butterfly orchid (generic term)
+oncidium papilio kramerianum|1
+(noun)|Psychopsis krameriana|Oncidium papilio kramerianum|butterfly orchid (generic term)
+oncogene|1
+(noun)|transforming gene|gene (generic term)|cistron (generic term)|factor (generic term)
+oncologic|1
+(adj)|oncological|medicine|medical specialty (related term)
+oncological|1
+(adj)|oncologic|medicine|medical specialty (related term)
+oncologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+oncology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+oncoming|2
+(adj)|moving (similar term)
+(noun)|onset|start (generic term)
+oncorhynchus|1
+(noun)|Oncorhynchus|genus Oncorhynchus|fish genus (generic term)
+oncorhynchus keta|1
+(noun)|chum salmon|chum|Oncorhynchus keta|salmon (generic term)
+oncorhynchus kisutch|1
+(noun)|coho|cohoe|coho salmon|blue jack|silver salmon|Oncorhynchus kisutch|salmon (generic term)
+oncorhynchus nerka|1
+(noun)|sockeye|sockeye salmon|red salmon|blueback salmon|Oncorhynchus nerka|salmon (generic term)
+oncorhynchus tshawytscha|1
+(noun)|chinook|chinook salmon|king salmon|quinnat salmon|Oncorhynchus tshawytscha|salmon (generic term)
+oncovin|1
+(noun)|vincristine|Oncovin|periwinkle plant derivative (generic term)
+ondaatje|1
+(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer (generic term)|author (generic term)
+ondatra|1
+(noun)|Ondatra|genus Ondatra|mammal genus (generic term)
+ondatra zibethica|1
+(noun)|muskrat|musquash|Ondatra zibethica|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+one|9
+(adj)|1|i|ane|cardinal (similar term)
+(adj)|unitary|united (similar term)
+(adj)|same (similar term)
+(adj)|extraordinary (similar term)
+(adj)|indefinite (similar term)
+(adj)|combined (similar term)
+(adj)|matchless|nonpareil|one and only|peerless|unmatched|unmatchable|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+(noun)|1|I|ace|single|unity|digit (generic term)|figure (generic term)
+(noun)|unit (generic term)
+one-and-one|1
+(noun)|foul shot (generic term)|free throw (generic term)|penalty free throw (generic term)|charity toss (generic term)|charity throw (generic term)|charity shot (generic term)
+one-armed|1
+(adj)|armed (similar term)
+one-armed bandit|1
+(noun)|slot|slot machine (generic term)|coin machine (generic term)
+one-billionth|1
+(noun)|billionth|common fraction (generic term)|simple fraction (generic term)
+one-celled|1
+(adj)|single-celled|noncellular (similar term)|acellular (similar term)
+one-dimensional|2
+(adj)|unidimensional|multidimensional (antonym)
+(adj)|linear|collinear (similar term)|lineal (similar term)|linelike (similar term)|rectilinear (similar term)|rectilineal (similar term)|planar (antonym)|cubic (antonym)
+one-dimensional language|1
+(noun)|programming language (generic term)|programing language (generic term)|multidimensional language (antonym)
+one-dimensionality|1
+(noun)|linearity|dimensionality (generic term)
+one-eared|1
+(adj)|monaural (similar term)
+one-eighth|1
+(noun)|eighth|common fraction (generic term)|simple fraction (generic term)
+one-eyed|1
+(adj)|eyed (similar term)
+one-fifth|1
+(noun)|fifth|fifth part|twenty percent|common fraction (generic term)|simple fraction (generic term)
+one-flowered pyrola|1
+(noun)|one-flowered wintergreen|Moneses uniflora|Pyrola uniflora|herb (generic term)|herbaceous plant (generic term)
+one-flowered wintergreen|1
+(noun)|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb (generic term)|herbaceous plant (generic term)
+one-fourth|1
+(noun)|fourth|quarter|fourth part|twenty-five percent|quartern|common fraction (generic term)|simple fraction (generic term)
+one-half|1
+(noun)|half|common fraction (generic term)|simple fraction (generic term)
+one-handed|1
+(adj)|handed (similar term)
+one-hitter|1
+(noun)|1-hitter|baseball (generic term)|baseball game (generic term)
+one-horse|1
+(adj)|jerkwater|pokey|poky|provincial (similar term)
+one-humped|1
+(adj)|single-humped|projection (related term)
+one-hundred-millionth|1
+(noun)|common fraction (generic term)|simple fraction (generic term)
+one-hundred-thousandth|1
+(noun)|common fraction (generic term)|simple fraction (generic term)
+one-hundredth|1
+(noun)|hundredth|one percent|common fraction (generic term)|simple fraction (generic term)
+one-liner|1
+(noun)|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+one-man|1
+(adj)|one-person|one-woman|single (similar term)
+one-man rule|1
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+one-member|1
+(adj)|uninominal|single (similar term)
+one-millionth|1
+(noun)|millionth|common fraction (generic term)|simple fraction (generic term)
+one-night stand|2
+(noun)|promiscuity (generic term)|promiscuousness (generic term)|sleeping around (generic term)
+(noun)|performance (generic term)
+one-ninth|1
+(noun)|ninth|common fraction (generic term)|simple fraction (generic term)
+one-off|1
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+one-on-one|3
+(adj)|private (similar term)
+(adj)|man-to-man|individual (similar term)|single (similar term)
+(adv)|person-to-person
+one-party|1
+(adj)|unilateral (similar term)|one-sided (similar term)
+one-person|1
+(adj)|one-man|one-woman|single (similar term)
+one-piece|1
+(adj)|two-piece (antonym)|three-piece (antonym)
+one-quadrillionth|1
+(noun)|quadrillionth|common fraction (generic term)|simple fraction (generic term)
+one-quintillionth|1
+(noun)|quintillionth|common fraction (generic term)|simple fraction (generic term)
+one-seed|1
+(adj)|single-seeded|one-seeded|seedy (similar term)
+one-seeded|1
+(adj)|single-seeded|one-seed|seedy (similar term)
+one-seventh|1
+(noun)|seventh|common fraction (generic term)|simple fraction (generic term)
+one-sided|3
+(adj)|nonreversible|reversible (antonym)
+(adj)|unilateral|one-party (similar term)|multilateral (antonym)
+(adj)|biased|colored|coloured|slanted|partial (similar term)|unfair (similar term)
+one-sixteenth|1
+(noun)|sixteenth|sixteenth part|common fraction (generic term)|simple fraction (generic term)
+one-sixth|1
+(noun)|sixth|common fraction (generic term)|simple fraction (generic term)
+one-sixtieth|1
+(noun)|sixtieth|common fraction (generic term)|simple fraction (generic term)
+one-sixty-fourth|1
+(noun)|sixty-fourth|common fraction (generic term)|simple fraction (generic term)
+one-step|2
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+one-ten-thousandth|1
+(noun)|ten-thousandth|common fraction (generic term)|simple fraction (generic term)
+one-tenth|1
+(noun)|tenth|tenth part|ten percent|common fraction (generic term)|simple fraction (generic term)
+one-third|1
+(noun)|third|tierce|common fraction (generic term)|simple fraction (generic term)
+one-thirty-second|1
+(noun)|thirty-second|thirty-second part|common fraction (generic term)|simple fraction (generic term)
+one-thousandth|1
+(noun)|thousandth|common fraction (generic term)|simple fraction (generic term)
+one-to-one|1
+(adj)|matched (similar term)
+one-trillionth|1
+(noun)|trillionth|common fraction (generic term)|simple fraction (generic term)
+one-twelfth|1
+(noun)|twelfth|twelfth part|duodecimal|common fraction (generic term)|simple fraction (generic term)
+one-upmanship|1
+(noun)|practice (generic term)|pattern (generic term)
+one-way|1
+(adj)|unidirectional (similar term)
+one-way light time|1
+(noun)|OWLT|elapsed time (generic term)
+one-way street|2
+(noun)|unilateralism (generic term)
+(noun)|street (generic term)
+one-winged|1
+(adj)|winged (similar term)
+one-woman|1
+(adj)|one-man|one-person|single (similar term)
+one-year|1
+(adj)|annual|biennial (antonym)|perennial (antonym)
+one-year-old|1
+(adj)|young (similar term)|immature (similar term)
+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 (similar term)|uncomparable (similar term)
+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 (generic term)
+one dollar bill|1
+(noun)|dollar|dollar bill|buck|clam|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+one hundred|1
+(adj)|hundred|100|c|cardinal (similar term)
+one hundred eighty|1
+(adj)|180|clxxx|cardinal (similar term)
+one hundred fifteen|1
+(adj)|115|cxv|cardinal (similar term)
+one hundred fifty|1
+(adj)|150|cl|cardinal (similar term)
+one hundred fifty-five|1
+(adj)|155|clv|cardinal (similar term)
+one hundred five|1
+(adj)|105|cv|cardinal (similar term)
+one hundred forty|1
+(adj)|140|cxl|cardinal (similar term)
+one hundred forty-five|1
+(adj)|145|cxlv|cardinal (similar term)
+one hundred ninety|1
+(adj)|190|xcl|cardinal (similar term)
+one hundred one|1
+(adj)|hundred and one|101|ci|cardinal (similar term)
+one hundred seventy|1
+(adj)|170|clxx|cardinal (similar term)
+one hundred seventy-five|1
+(adj)|175|clxxv|cardinal (similar term)
+one hundred sixty|1
+(adj)|160|clx|cardinal (similar term)
+one hundred sixty-five|1
+(adj)|165|clxv|cardinal (similar term)
+one hundred ten|1
+(adj)|110|cx|cardinal (similar term)
+one hundred thirty|1
+(adj)|130|cxxx|cardinal (similar term)
+one hundred thirty-five|1
+(adj)|135|cxxxv|cardinal (similar term)
+one hundred twenty|1
+(adj)|120|cxx|cardinal (similar term)
+one hundred twenty-five|1
+(adj)|125|cxxv|cardinal (similar term)
+one iron|1
+(noun)|driving iron|iron (generic term)
+one million million|2
+(noun)|trillion|1000000000000|large integer (generic term)
+(noun)|billion|1000000000000|large integer (generic term)
+one million million million|1
+(noun)|trillion|large integer (generic term)
+one of the boys|1
+(noun)|boy (generic term)
+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 (generic term)|simple fraction (generic term)
+one shot|1
+(noun)|round|unit of ammunition|ammunition (generic term)|ammo (generic term)
+one thousand|2
+(adj)|thousand|1000|m|k|cardinal (similar term)
+(noun)|thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+one thousand million|1
+(noun)|billion|1000000000|large integer (generic term)
+one thousand thousand|1
+(noun)|million|1000000|meg|large integer (generic term)
+one time|1
+(adv)|once|in one case
+onega|1
+(noun)|Lake Onega|Onega|lake (generic term)
+oneida|2
+(noun)|Oneida|Iroquois (generic term)
+(noun)|Oneida|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+oneiric|1
+(adj)|imagination|imaging|imagery|mental imagery (related term)
+oneirism|1
+(noun)|reverie|revery|daydream|daydreaming|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+oneiromancer|1
+(noun)|diviner (generic term)
+oneiromancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+oneness|1
+(noun)|unity|identity (generic term)|identicalness (generic term)|indistinguishability (generic term)
+onerous|1
+(adj)|burdensome|taxing|heavy (similar term)
+onerousness|1
+(noun)|burdensomeness|heaviness|oppressiveness|difficulty (generic term)|difficultness (generic term)
+onetime|1
+(adj)|erstwhile|former|old|quondam|sometime|past (similar term)
+ongoing|1
+(adj)|on-going|current (similar term)
+oni|1
+(noun)|Office of Naval Intelligence|ONI|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+onion|3
+(noun)|bulb (generic term)
+(noun)|onion plant|Allium cepa|alliaceous plant (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+onion-like|1
+(adj)|vegetable (similar term)
+onion bagel|1
+(noun)|bagel (generic term)|beigel (generic term)
+onion bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+onion butter|1
+(noun)|spread (generic term)|paste (generic term)
+onion dome|1
+(noun)|dome (generic term)
+onion louse|1
+(noun)|onion thrips|Thrips tobaci|thrips (generic term)|thrip (generic term)|thripid (generic term)
+onion mildew|1
+(noun)|Peronospora destructor|downy mildew (generic term)|false mildew (generic term)
+onion plant|1
+(noun)|onion|Allium cepa|alliaceous plant (generic term)
+onion roll|1
+(noun)|bun (generic term)|roll (generic term)
+onion salt|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+onion smut|1
+(noun)|Urocystis cepulae|smut (generic term)|smut fungus (generic term)
+onion stem|1
+(noun)|Lepiota cepaestipes|lepiota (generic term)
+onion thrips|1
+(noun)|onion louse|Thrips tobaci|thrips (generic term)|thrip (generic term)|thripid (generic term)
+onion yellow-dwarf virus|1
+(noun)|plant virus (generic term)
+onion yellow dwarf|1
+(noun)|yellow dwarf (generic term)
+onionskin|1
+(noun)|flimsy|typewriter paper (generic term)|typing paper (generic term)
+oniscidae|1
+(noun)|Oniscidae|family Oniscidae|arthropod family (generic term)
+oniscus|1
+(noun)|Oniscus|genus Oniscus|arthropod genus (generic term)
+onlooker|1
+(noun)|looker-on|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+only|5
+(adj)|lone|lonesome|sole|solitary|single (similar term)
+(adj)|alone|exclusive (similar term)
+(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 (generic term)
+onobrychis|1
+(noun)|Onobrychis|genus Onobrychis|rosid dicot genus (generic term)
+onobrychis viciaefolia|1
+(noun)|sainfoin|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+onobrychis viciifolia|1
+(noun)|sainfoin|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+onoclea|1
+(noun)|Onoclea|genus Onoclea|fern genus (generic term)
+onoclea sensibilis|1
+(noun)|sensitive fern|bead fern|Onoclea sensibilis|fern (generic term)
+onoclea struthiopteris|1
+(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+onomancer|1
+(noun)|diviner (generic term)
+onomancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+onomastic|1
+(adj)|lexicology (related term)
+onomasticon|1
+(noun)|wordbook (generic term)
+onomastics|1
+(noun)|lexicology (generic term)
+onomatomania|1
+(noun)|compulsion (generic term)|obsession (generic term)
+onomatopoeia|1
+(noun)|rhetorical device (generic term)
+onomatopoeic|2
+(adj)|onomatopoetic|rhetorical device (related term)
+(adj)|echoic|imitative|onomatopoeical|onomatopoetic|nonechoic (antonym)
+onomatopoeical|1
+(adj)|echoic|imitative|onomatopoeic|onomatopoetic|nonechoic (antonym)
+onomatopoetic|2
+(adj)|onomatopoeic|rhetorical device (related term)
+(adj)|echoic|imitative|onomatopoeic|onomatopoeical|nonechoic (antonym)
+onondaga|2
+(noun)|Onondaga|Iroquois (generic term)
+(noun)|Onondaga|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+ononis|1
+(noun)|Ononis|genus Ononis|rosid dicot genus (generic term)
+ononis repens|1
+(noun)|restharrow|rest-harrow|Ononis repens|subshrub (generic term)|suffrutex (generic term)
+ononis spinosa|1
+(noun)|restharrow|rest-harrow|Ononis spinosa|subshrub (generic term)|suffrutex (generic term)
+onopordon|1
+(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus (generic term)
+onopordon acanthium|1
+(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle (generic term)
+onopordum|1
+(noun)|Onopordum|genus Onopordum|Onopordon|genus Onopordon|asterid dicot genus (generic term)
+onopordum acanthium|1
+(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle (generic term)
+onosmodium|1
+(noun)|Onosmodium|genus Onosmodium|plant genus (generic term)
+onrush|2
+(noun)|attack|onslaught|onset|operation (generic term)|military operation (generic term)
+(noun)|rush (generic term)|spate (generic term)|surge (generic term)|upsurge (generic term)
+onsager|1
+(noun)|Onsager|Lars Onsager|chemist (generic term)
+onset|2
+(noun)|oncoming|start (generic term)
+(noun)|attack|onslaught|onrush|operation (generic term)|military operation (generic term)
+onshore|3
+(adj)|inshore|seaward|offshore (antonym)
+(adj)|land (similar term)
+(adv)|offshore (antonym)
+onside|1
+(adj)|offside (antonym)
+onslaught|3
+(noun)|trouble (generic term)
+(noun)|attack|onset|onrush|operation (generic term)|military operation (generic term)
+(noun)|barrage|bombardment|outpouring|language (generic term)|linguistic communication (generic term)
+onstage|2
+(adj)|offstage (antonym)
+(adv)|offstage (antonym)
+ontario|2
+(noun)|Lake Ontario|Ontario|lake (generic term)
+(noun)|Ontario|Canadian province (generic term)
+onto land|1
+(adv)|ashore|on land|toward land
+ontogenesis|1
+(noun)|growth|growing|maturation|development|ontogeny|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+ontogenetic|1
+(adj)|organic process|biological process (related term)
+ontogeny|1
+(noun)|growth|growing|maturation|development|ontogenesis|organic process (generic term)|biological process (generic term)|nondevelopment (antonym)
+ontological|1
+(adj)|metaphysics (related term)
+ontology|1
+(noun)|metaphysics (generic term)
+onus|1
+(noun)|burden|load|encumbrance|incumbrance|concern (generic term)|worry (generic term)|headache (generic term)|vexation (generic term)
+onward|3
+(adj)|forward|advancing (similar term)
+(adv)|forth|forward
+(adv)|ahead|onwards|forward|forwards|forrader
+onward motion|1
+(noun)|progress|progression|procession|advance|advancement|forward motion|motion (generic term)|movement (generic term)|move (generic term)
+onwards|1
+(adv)|ahead|onward|forward|forwards|forrader
+onychium|1
+(noun)|Onychium|genus Onychium|fern genus (generic term)
+onychogalea|1
+(noun)|Onychogalea|genus Onychogalea|mammal genus (generic term)
+onycholysis|1
+(noun)|onychosis (generic term)
+onychomys|1
+(noun)|Onychomys|genus Onychomys|mammal genus (generic term)
+onychophora|1
+(noun)|Onychophora|class Onychophora|class (generic term)
+onychophoran|1
+(noun)|velvet worm|peripatus|arthropod (generic term)
+onychosis|1
+(noun)|disease (generic term)
+onymous|1
+(adj)|named (similar term)|pseudonymous (similar term)|anonymous (antonym)
+onyx|1
+(noun)|chalcedony (generic term)|calcedony (generic term)
+onyx marble|1
+(noun)|alabaster|oriental alabaster|Mexican onyx|calcite (generic term)
+onyxis|1
+(noun)|ingrown toenail|toenail (generic term)
+oocyte|1
+(noun)|gametocyte (generic term)
+oodles|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+oogenesis|1
+(noun)|gametogenesis (generic term)
+ooh|1
+(verb)|aah|exclaim (generic term)|cry (generic term)|cry out (generic term)|outcry (generic term)|call out (generic term)|shout (generic term)
+oology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+oolong|1
+(noun)|tea (generic term)|tea leaf (generic term)
+oom paul kruger|1
+(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman (generic term)|solon (generic term)|national leader (generic term)
+oomph|2
+(noun)|sex appeal|desirability|desirableness|attractiveness (generic term)
+(noun)|dynamism|pizzazz|pizzaz|zing|activeness (generic term)|activity (generic term)
+oomycetes|1
+(noun)|Oomycetes|class Oomycetes|class (generic term)
+oophorectomy|1
+(noun)|ovariectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+oophoritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+oophorosalpingectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+oort|1
+(noun)|Oort|Jan Hendrix Oort|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+oort cloud|1
+(noun)|Oort cloud|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+oosphere|1
+(noun)|gamete (generic term)
+oospore|1
+(noun)|spore (generic term)
+ootid|1
+(noun)|ovum (generic term)|egg cell (generic term)
+ooze|4
+(noun)|sludge|slime|goo|gook|guck|gunk|muck|substance (generic term)|matter (generic term)
+(noun)|seepage|oozing|flow (generic term)|flowing (generic term)
+(verb)|seep|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|exude|exudate|transude|ooze out|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+ooze leather|1
+(noun)|leather (generic term)
+ooze out|1
+(verb)|exude|exudate|transude|ooze|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+ooze through|1
+(verb)|penetrate (generic term)|perforate (generic term)
+oozing|2
+(adj)|oozy|seeping|leaky (similar term)
+(noun)|seepage|ooze|flow (generic term)|flowing (generic term)
+oozy|1
+(adj)|oozing|seeping|leaky (similar term)
+op art|1
+(noun)|abstractionism (generic term)|abstract art (generic term)
+opacification|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+opacify|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+opacity|3
+(noun)|physical phenomenon (generic term)|transparency (antonym)
+(noun)|opaqueness|incomprehensibility (generic term)
+(noun)|opaqueness|quality (generic term)|clarity (antonym)
+opah|1
+(noun)|moonfish|Lampris regius|soft-finned fish (generic term)|malacopterygian (generic term)
+opal|1
+(noun)|mineral (generic term)|opaque gem (generic term)
+opal glass|1
+(noun)|milk glass|glass (generic term)
+opalesce|2
+(verb)|reflect (generic term)|shine (generic term)
+(verb)|iridesce (generic term)
+opalescence|1
+(noun)|iridescence|brightness (generic term)
+opalescent|1
+(adj)|iridescent|nacreous|opaline|pearlescent|bright (similar term)
+opaline|1
+(adj)|iridescent|nacreous|opalescent|pearlescent|bright (similar term)
+opalise|2
+(verb)|opalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|opalize|convert (generic term)
+opalize|2
+(verb)|opalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|opalise|convert (generic term)
+opaque|2
+(adj)|cloudy (similar term)|muddy (similar term)|mirky (similar term)|murky (similar term)|turbid (similar term)|fogged (similar term)|foggy (similar term)|frosted (similar term)|glaucous (similar term)|lightproof (similar term)|light-tight (similar term)|milky (similar term)|milklike (similar term)|whitish (similar term)|semiopaque (similar term)|solid (similar term)|unclear (related term)|clear (antonym)
+(adj)|unintelligible|incomprehensible (similar term)|uncomprehensible (similar term)
+opaque gem|1
+(noun)|gem (generic term)|gemstone (generic term)|stone (generic term)
+opaqueness|2
+(noun)|opacity|incomprehensibility (generic term)
+(noun)|opacity|quality (generic term)|clarity (antonym)
+opcw|1
+(noun)|Organization for the Prohibition of Chemical Weapons|OPCW|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+opec|1
+(noun)|Organization of Petroleum-Exporting Countries|OPEC|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)|oil cartel (generic term)
+opel|1
+(noun)|Opel|Wilhelm von Opel|industrialist (generic term)
+open|34
+(adj)|unfastened|ajar (similar term)|wide-open (similar term)|open (related term)|shut (antonym)
+(adj)|opened (similar term)|unstoppered (similar term)|yawning (similar term)|open (related term)|unfastened (related term)|unsealed (related term)|closed (antonym)
+(adj)|exposed|unprotected (similar term)
+(adj)|public (similar term)
+(adj)|opened|agape (similar term)|gaping (similar term)|agaze (similar term)|staring (similar term)|wide-eyed (similar term)|wide (similar term)|yawning (similar term)|closed (antonym)
+(adj)|available (similar term)
+(adj)|unrestricted (similar term)
+(adj)|assailable|undefendable|undefended|vulnerable (similar term)
+(adj)|loose|coarse (similar term)|harsh (similar term)
+(adj)|unenclosed (similar term)
+(adj)|closed (antonym)
+(adj)|undecided|undetermined|unresolved|unsettled (similar term)
+(adj)|opened|unsealed (similar term)
+(adj)|unconstricted (similar term)
+(adj)|receptive|acceptive (similar term)|acceptant (similar term)|admissive (similar term)|assimilative (similar term)|hospitable (similar term)|unreceptive (antonym)
+(adj)|overt|bald (similar term)|barefaced (similar term)|naked (similar term)|raw (similar term)|undisguised (similar term)|visible (similar term)|explicit (related term)|expressed (related term)|unconcealed (related term)|public (related term)|covert (antonym)
+(adj)|nonunion (similar term)
+(adj)|capable|subject|susceptible (similar term)
+(adj)|clear|unobstructed (similar term)
+(adj)|candid|heart-to-heart|ingenuous (similar term)|artless (similar term)
+(adj)|active (similar term)
+(noun)|clear|area (generic term)|country (generic term)
+(noun)|outdoors|out-of-doors|open air|outside (generic term)|exterior (generic term)
+(noun)|tournament (generic term)|tourney (generic term)
+(noun)|surface|public knowledge (generic term)|general knowledge (generic term)
+(verb)|open up|close (antonym)
+(verb)|open up|change state (generic term)|turn (generic term)|close (antonym)
+(verb)|start (generic term)|start up (generic term)|embark on (generic term)|commence (generic term)|open up (related term)|close (antonym)
+(verb)|unfold|spread|spread out|undo (generic term)|fold (antonym)
+(verb)|open up|yield (generic term)|give (generic term)|afford (generic term)
+(verb)|open up|arise (generic term)|come up (generic term)
+(verb)|move (generic term)|go (generic term)
+(verb)|afford|give
+(verb)|expose (generic term)|exhibit (generic term)|display (generic term)|close (antonym)
+open-air|1
+(adj)|alfresco|outdoor (similar term)|out-of-door (similar term)|outside (similar term)
+open-air market|1
+(noun)|open-air marketplace|market square|marketplace (generic term)|mart (generic term)
+open-air marketplace|1
+(noun)|open-air market|market square|marketplace (generic term)|mart (generic term)
+open-and-shut|1
+(adj)|obvious (similar term)
+open-angle glaucoma|1
+(noun)|chronic glaucoma|glaucoma (generic term)
+open-chain|1
+(adj)|acyclic|aliphatic (similar term)|cyclic (antonym)
+open-class word|1
+(noun)|content word|word (generic term)
+open-collared|1
+(adj)|unbuttoned (similar term)|unfastened (similar term)
+open-door policy|1
+(noun)|open door|trade policy (generic term)|national trading policy (generic term)
+open-end credit|1
+(noun)|revolving credit|charge account credit|consumer credit (generic term)
+open-end fund|1
+(noun)|mutual fund|open-end investment company|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+open-end investment company|1
+(noun)|mutual fund|open-end fund|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+open-end wrench|1
+(noun)|tappet wrench|wrench (generic term)|spanner (generic term)
+open-ended|3
+(adj)|unrestricted (similar term)
+(adj)|indeterminate (similar term)|undetermined (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+open-eyed|1
+(adj)|argus-eyed|vigilant|wakeful|watchful|alert (similar term)
+open-face sandwich|1
+(noun)|open sandwich|sandwich (generic term)
+open-heart surgery|1
+(noun)|heart surgery (generic term)
+open-hearth|1
+(adj)|furnace (related term)
+open-hearth furnace|1
+(noun)|furnace (generic term)
+open-hearth process|1
+(noun)|steel production (generic term)
+open-minded|1
+(adj)|broad-minded (similar term)
+open-plan|1
+(adj)|unrestricted (similar term)
+open-source|1
+(adj)|ASCII text file (related term)
+open account|2
+(noun)|credit account|charge account|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)
+(noun)|credit order (generic term)|bill-me order (generic term)
+open air|1
+(noun)|outdoors|out-of-doors|open|outside (generic term)|exterior (generic term)
+open chain|1
+(noun)|chain (generic term)|chemical chain (generic term)|closed chain (antonym)
+open circuit|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)|closed circuit (antonym)
+open door|2
+(noun)|open-door policy|trade policy (generic term)|national trading policy (generic term)
+(noun)|door (generic term)
+open fire|1
+(verb)|fire|shoot (generic term)
+open fireplace|1
+(noun)|fireplace|hearth|recess (generic term)|niche (generic term)
+open fracture|1
+(noun)|compound fracture|fracture (generic term)|break (generic term)
+open frame|1
+(noun)|break|score (generic term)
+open house|1
+(noun)|party (generic term)
+open interval|1
+(noun)|unbounded interval|interval (generic term)|closed interval (antonym)
+open letter|1
+(noun)|letter (generic term)|missive (generic term)
+open marriage|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+open order|1
+(noun)|military formation (generic term)
+open primary|1
+(noun)|direct primary (generic term)
+open sandwich|1
+(noun)|open-face sandwich|sandwich (generic term)
+open secret|1
+(noun)|secret (generic term)
+open sesame|2
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+open shop|1
+(noun)|company (generic term)
+open sight|1
+(noun)|gunsight (generic term)|gun-sight (generic term)
+open society|1
+(noun)|society (generic term)
+open university|1
+(noun)|Open University|university (generic term)
+open up|6
+(verb)|open|arise (generic term)|come up (generic term)
+(verb)|open|yield (generic term)|give (generic term)|afford (generic term)
+(verb)|pioneer|introduce (generic term)|innovate (generic term)
+(verb)|open|close (antonym)
+(verb)|open|change state (generic term)|turn (generic term)|close (antonym)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)|close up (antonym)
+open weave|1
+(noun)|weave (generic term)
+openbill|1
+(noun)|stork (generic term)
+opencast|1
+(adj)|opencut|surface (similar term)
+opencast mining|1
+(noun)|strip mining|mining (generic term)|excavation (generic term)
+opencut|1
+(adj)|opencast|surface (similar term)
+opened|3
+(adj)|open|agape (similar term)|gaping (similar term)|agaze (similar term)|staring (similar term)|wide-eyed (similar term)|wide (similar term)|yawning (similar term)|closed (antonym)
+(adj)|open (similar term)
+(adj)|open|unsealed (similar term)
+opener|3
+(noun)|start (generic term)
+(noun)|undoer|unfastener|untier|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|hand tool (generic term)
+openhanded|1
+(adj)|big|bighearted|bounteous|bountiful|freehanded|handsome|giving|liberal|generous (similar term)
+openhandedness|1
+(noun)|munificence|largess|largesse|magnanimity|liberality (generic term)|liberalness (generic term)
+openhearted|2
+(adj)|charitable|benevolent|kindly|sympathetic|good-hearted|large-hearted|kind (similar term)
+(adj)|communicative (similar term)|communicatory (similar term)
+opening|14
+(adj)|beginning (similar term)|first (similar term)|inaugural (similar term)|initiative (similar term)|initiatory (similar term)|first (similar term)|maiden (similar term)|introductory (similar term)|starting (similar term)|closing (antonym)
+(noun)|gap|space (generic term)
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|change of integrity (generic term)
+(noun)|opening night|curtain raising|start (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|closing (antonym)
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|introduction (generic term)
+(noun)|possibility|possible action|option (generic term)|alternative (generic term)|choice (generic term)
+(noun)|orifice|porta|passage (generic term)|passageway (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|hatchway|scuttle|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|chess opening|succession (generic term)|sequence (generic term)
+(noun)|first step|initiative|opening move|beginning (generic term)|start (generic term)|commencement (generic term)
+opening line|1
+(noun)|line (generic term)
+opening move|1
+(noun)|first step|initiative|opening|beginning (generic term)|start (generic term)|commencement (generic term)
+opening night|1
+(noun)|opening|curtain raising|start (generic term)
+openmouthed|1
+(adj)|goggle-eyed|popeyed|surprised (similar term)
+openness|3
+(noun)|spacing (generic term)|spatial arrangement (generic term)
+(noun)|nakedness|sociability (generic term)|sociableness (generic term)|closeness (antonym)
+(noun)|receptiveness|receptivity|willingness (generic term)
+openside plane|1
+(noun)|rabbet plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+openwork|1
+(noun)|work (generic term)|piece of work (generic term)
+opepe|1
+(noun)|Nauclea diderrichii|Sarcocephalus diderrichii|tree (generic term)
+opera|3
+(noun)|classical music (generic term)|classical (generic term)|serious music (generic term)
+(noun)|Opera|browser (generic term)|web browser (generic term)
+(noun)|opera house|theater (generic term)|theatre (generic term)|house (generic term)
+opera bouffe|1
+(noun)|comic opera|bouffe|opera comique|opera (generic term)
+opera cloak|1
+(noun)|opera hood|cloak (generic term)
+opera comique|1
+(noun)|comic opera|opera bouffe|bouffe|opera (generic term)
+opera company|1
+(noun)|company (generic term)|troupe (generic term)
+opera glasses|1
+(noun)|binoculars|field glasses|optical instrument (generic term)
+opera hat|1
+(noun)|dress hat|high hat|silk hat|stovepipe|top hat|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+opera hood|1
+(noun)|opera cloak|cloak (generic term)
+opera house|1
+(noun)|opera|theater (generic term)|theatre (generic term)|house (generic term)
+opera star|1
+(noun)|operatic star|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+operable|3
+(adj)|inoperable (antonym)
+(adj)|functional|usable|useable|in working order|operational|serviceable (similar term)
+(adj)|practicable|practical (similar term)
+operagoer|1
+(noun)|patron (generic term)|frequenter (generic term)
+operand|1
+(noun)|quantity (generic term)
+operant|1
+(adj)|operative (similar term)
+operant conditioning|1
+(noun)|conditioning (generic term)
+operate|7
+(verb)|run|direct (generic term)
+(verb)|function|work|go|run|malfunction (antonym)
+(verb)|control|manipulate (generic term)
+(verb)|manoeuver|maneuver|manoeuvre|move (generic term)|go (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|engage|mesh|lock|move (generic term)|displace (generic term)|disengage (antonym)
+(verb)|operate on|treat (generic term)|care for (generic term)
+operate on|1
+(verb)|operate|treat (generic term)|care for (generic term)
+operatic|1
+(adj)|classical music|classical|serious music (related term)
+operatic star|1
+(noun)|opera star|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+operating|1
+(adj)|operational|in operation|operative (similar term)
+operating budget|1
+(noun)|budget (generic term)
+operating capability|1
+(noun)|performance capability|capability (generic term)|capableness (generic term)
+operating capital|1
+(noun)|capital (generic term)|working capital (generic term)
+operating cost|1
+(noun)|operating expense|overhead|budget items|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+operating expense|1
+(noun)|operating cost|overhead|budget items|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+operating instructions|1
+(noun)|instruction manual|instructions|book of instructions|manual (generic term)
+operating microscope|1
+(noun)|binocular microscope (generic term)
+operating procedure|1
+(noun)|procedure (generic term)|process (generic term)
+operating room|1
+(noun)|OR|operating theater|operating theatre|surgery|hospital room (generic term)
+operating statement|1
+(noun)|income statement|earnings report|profit-and-loss statement|statement (generic term)|financial statement (generic term)
+operating surgeon|1
+(noun)|surgeon|sawbones|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+operating system|1
+(noun)|OS|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+operating table|1
+(noun)|table (generic term)
+operating theater|1
+(noun)|operating room|OR|operating theatre|surgery|hospital room (generic term)
+operating theatre|1
+(noun)|operating room|OR|operating theater|surgery|hospital room (generic term)
+operation|10
+(noun)|business activity (generic term)|commercial activity (generic term)
+(noun)|procedure|work (generic term)
+(noun)|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|surgery|surgical operation|surgical procedure|surgical process|medical procedure (generic term)
+(noun)|military operation|activity (generic term)
+(noun)|data processing (generic term)
+(noun)|functioning|performance|process (generic term)|physical process (generic term)
+(noun)|mathematical process|mathematical operation|calculation (generic term)|computation (generic term)|computing (generic term)
+(noun)|process|cognitive process|mental process|cognitive operation|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|activity (generic term)
+operation code|1
+(noun)|order code|code (generic term)|computer code (generic term)
+operation desert storm|1
+(noun)|Operation Desert Storm|operation (generic term)|military operation (generic term)
+operational|4
+(adj)|work (related term)
+(adj)|functional|usable|useable|in working order|operable|serviceable (similar term)
+(adj)|active (similar term)|combat-ready (similar term)|fighting (similar term)|effective (similar term)|nonoperational (antonym)
+(adj)|in operation|operating|operative (similar term)
+operational casualty|1
+(noun)|operational damage|damage (generic term)|equipment casualty (generic term)
+operational cell|1
+(noun)|terrorist cell (generic term)|radical cell (generic term)
+operational damage|1
+(noun)|operational casualty|damage (generic term)|equipment casualty (generic term)
+operationalism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+operationalist|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+operations|1
+(noun)|trading operations|transaction (generic term)|dealing (generic term)|dealings (generic term)
+operations research|1
+(noun)|research (generic term)
+operative|7
+(adj)|operant (similar term)|effective (similar term)|good (similar term)|in effect (similar term)|in force (similar term)|operational (similar term)|in operation (similar term)|operating (similar term)|working (similar term)|inoperative (antonym)
+(adj)|medical procedure (related term)
+(adj)|surgical|preoperative (similar term)|postoperative (similar term)|medical (antonym)
+(adj)|key|significant (similar term)|important (similar term)
+(adj)|running|functional|working|functioning (similar term)
+(noun)|secret agent|intelligence officer|intelligence agent|agent (generic term)
+(noun)|private detective|PI|private eye|private investigator|shamus|sherlock|detective (generic term)
+operative field|1
+(noun)|field (generic term)|field of view (generic term)
+operator|5
+(noun)|function (generic term)|mathematical function (generic term)
+(noun)|manipulator|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|businessman (generic term)|man of affairs (generic term)
+(noun)|hustler|wheeler dealer|opportunist (generic term)|self-seeker (generic term)
+(noun)|speculator (generic term)|plunger (generic term)
+operator gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+operculate|1
+(adj)|operculated|plate (related term)
+operculated|1
+(adj)|operculate|plate (related term)
+operculum|1
+(noun)|plate (generic term)
+operetta|1
+(noun)|light opera|comic opera (generic term)|opera bouffe (generic term)|bouffe (generic term)|opera comique (generic term)
+operon|1
+(noun)|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+operose|1
+(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|punishing|toilsome|effortful (similar term)
+operoseness|1
+(noun)|laboriousness|toilsomeness|effortfulness (generic term)
+opheodrys|1
+(noun)|Opheodrys|genus Opheodrys|reptile genus (generic term)
+opheodrys aestivus|1
+(noun)|rough green snake|Opheodrys aestivus|green snake (generic term)|grass snake (generic term)
+opheodrys vernalis|1
+(noun)|smooth green snake|Opheodrys vernalis|green snake (generic term)|grass snake (generic term)
+ophidia|1
+(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order (generic term)
+ophidian|1
+(noun)|snake|serpent|diapsid (generic term)|diapsid reptile (generic term)
+ophidiidae|1
+(noun)|Ophidiidae|family Ophidiidae|fish family (generic term)
+ophidism|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+ophiodon|1
+(noun)|Ophiodon|genus Ophiodon|fish genus (generic term)
+ophiodon elongatus|1
+(noun)|lingcod|Ophiodon elongatus|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+ophiodontidae|1
+(noun)|Ophiodontidae|family Ophiodontidae|fish family (generic term)
+ophioglossaceae|1
+(noun)|Ophioglossaceae|family Ophioglossaceae|fern family (generic term)
+ophioglossales|1
+(noun)|Ophioglossales|order Ophioglossales|plant order (generic term)
+ophioglossum|1
+(noun)|Ophioglossum|genus Ophioglossum|fern genus (generic term)
+ophioglossum pendulum|1
+(noun)|ribbon fern|Ophioglossum pendulum|adder's tongue (generic term)|adder's tongue fern (generic term)
+ophiolatry|1
+(noun)|serpent-worship|zoolatry (generic term)|animal-worship (generic term)
+ophiophagus|1
+(noun)|Ophiophagus|genus Ophiophagus|reptile genus (generic term)
+ophiophagus hannan|1
+(noun)|hamadryad|king cobra|Ophiophagus hannan|Naja hannah|cobra (generic term)
+ophisaurus|1
+(noun)|Ophisaurus|genus Ophisaurus|reptile genus (generic term)
+ophiuchus|1
+(noun)|Ophiuchus|constellation (generic term)
+ophiurida|1
+(noun)|Ophiurida|subclass Ophiurida|class (generic term)
+ophiuroidea|1
+(noun)|Ophiuroidea|class Ophiuroidea|class (generic term)
+ophryon|1
+(noun)|craniometric point (generic term)
+ophrys|1
+(noun)|Ophrys|genus Ophrys|monocot genus (generic term)|liliopsid genus (generic term)
+ophrys apifera|1
+(noun)|bee orchid|Ophrys apifera|orchid (generic term)|orchidaceous plant (generic term)
+ophrys insectifera|1
+(noun)|fly orchid|Ophrys insectifera|Ophrys muscifera|orchid (generic term)|orchidaceous plant (generic term)
+ophrys muscifera|1
+(noun)|fly orchid|Ophrys insectifera|Ophrys muscifera|orchid (generic term)|orchidaceous plant (generic term)
+ophrys sphegodes|1
+(noun)|early spider orchid|Ophrys sphegodes|spider orchid (generic term)
+ophthalmectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+ophthalmia|1
+(noun)|ophthalmitis|conjunctivitis (generic term)|pinkeye (generic term)
+ophthalmia neonatorum|1
+(noun)|ophthalmia (generic term)|ophthalmitis (generic term)
+ophthalmic|2
+(adj)|sense organ|sensory receptor|receptor (related term)
+(adj)|medicine|medical specialty (related term)
+ophthalmic artery|1
+(noun)|arteria ophthalmica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ophthalmic vein|1
+(noun)|vena ophthalmica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ophthalmitis|1
+(noun)|ophthalmia|conjunctivitis (generic term)|pinkeye (generic term)
+ophthalmologist|1
+(noun)|eye doctor|oculist|specialist (generic term)|medical specialist (generic term)
+ophthalmology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+ophthalmoplegia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+ophthalmoscope|1
+(noun)|medical instrument (generic term)
+ophthalmoscopy|1
+(noun)|examination (generic term)|scrutiny (generic term)
+opiate|1
+(noun)|narcotic (generic term)
+opiliones|1
+(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order (generic term)
+opine|2
+(verb)|speak up|animadvert|sound off|declare (generic term)
+(verb)|think|suppose|imagine|reckon|guess|expect (generic term)|anticipate (generic term)
+opinion|6
+(noun)|sentiment|persuasion|view|thought|belief (generic term)
+(noun)|public opinion|popular opinion|vox populi|belief (generic term)
+(noun)|view|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|legal opinion|judgment|judgement|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|ruling|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+(noun)|impression|feeling|belief|notion|idea (generic term)|thought (generic term)
+opinion poll|1
+(noun)|poll|public opinion poll|canvass|inquiry (generic term)|enquiry (generic term)|research (generic term)
+opinionated|1
+(adj)|opinionative|self-opinionated|narrow-minded (similar term)|narrow (similar term)
+opinionative|1
+(adj)|opinionated|self-opinionated|narrow-minded (similar term)|narrow (similar term)
+opisthobranchia|1
+(noun)|Opisthobranchia|subclass Opisthobranchia|class (generic term)
+opisthocomidae|1
+(noun)|Opisthocomidae|family Opisthocomidae|bird family (generic term)
+opisthocomus|1
+(noun)|Opisthocomus|genus Opisthocomus|bird genus (generic term)
+opisthocomus hoazin|1
+(noun)|hoatzin|hoactzin|stinkbird|Opisthocomus hoazin|gallinaceous bird (generic term)|gallinacean (generic term)
+opisthognathidae|1
+(noun)|Opisthognathidae|family Opisthognathidae|fish family (generic term)
+opisthognathous|1
+(adj)|chinless (similar term)|prognathous (antonym)
+opisthorchiasis|1
+(noun)|infestation (generic term)
+opisthotonos|1
+(noun)|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+opium|1
+(noun)|narcotic (generic term)|controlled substance (generic term)
+opium addict|1
+(noun)|opium taker|drug addict (generic term)|junkie (generic term)|junky (generic term)
+opium den|1
+(noun)|building (generic term)|edifice (generic term)
+opium poppy|1
+(noun)|Papaver somniferum|poppy (generic term)
+opium taker|1
+(noun)|opium addict|drug addict (generic term)|junkie (generic term)|junky (generic term)
+opopanax|1
+(noun)|gum (generic term)
+oporto|1
+(noun)|Porto|Oporto|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+opossum|2
+(noun)|phalanger|possum|marsupial (generic term)|pouched mammal (generic term)
+(noun)|possum|marsupial (generic term)|pouched mammal (generic term)
+opossum rat|1
+(noun)|marsupial (generic term)|pouched mammal (generic term)
+opossum shrimp|1
+(noun)|malacostracan crustacean (generic term)
+opossum wood|1
+(noun)|silver-bell tree|silverbell tree|snowdrop tree|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+oppenheimer|1
+(noun)|Oppenheimer|Robert Oppenheimer|nuclear physicist (generic term)
+opponent|3
+(adj)|opposing|hostile (similar term)
+(noun)|opposition|opposite|contestant (generic term)
+(noun)|adversary|antagonist|opposer|resister|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|agonist (antonym)
+opportune|1
+(adj)|good (similar term)|right (similar term)|ripe (similar term)|timely (similar term)|seasonable (similar term)|well-timed (similar term)|well timed (similar term)|advantageous (related term)|inopportune (antonym)
+opportunely|1
+(adv)|inopportunely (antonym)
+opportuneness|1
+(noun)|patness|timeliness|convenience (generic term)|inopportuneness (antonym)
+opportunism|1
+(noun)|self-interest|self-seeking|expedience|selfishness (generic term)
+opportunist|2
+(adj)|opportunistic|timeserving|expedient (similar term)
+(noun)|self-seeker|selfish person (generic term)
+opportunistic|1
+(adj)|opportunist|timeserving|expedient (similar term)
+opportunistic infection|1
+(noun)|infection (generic term)
+opportunity|1
+(noun)|chance|possibility (generic term)|possibleness (generic term)
+opportunity cost|1
+(noun)|cost (generic term)
+opposable|1
+(adj)|apposable|unopposable (antonym)
+oppose|6
+(verb)|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+(verb)|fight|fight back|fight down|defend|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|counterbalance|contrast (generic term)|counterpoint (generic term)
+(verb)|pit|match|play off|confront (generic term)|face (generic term)
+(verb)|react|act (generic term)|move (generic term)
+(verb)|controvert|contradict|refute (generic term)|rebut (generic term)
+opposed|2
+(adj)|opposing|anti (similar term)
+(adj)|conflicting (similar term)|unopposed (antonym)
+opposer|1
+(noun)|adversary|antagonist|opponent|resister|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|agonist (antonym)
+opposing|2
+(adj)|opponent|hostile (similar term)
+(adj)|opposed|anti (similar term)
+opposite|9
+(adj)|paired|alternate (antonym)
+(adj)|other (similar term)
+(adj)|different (similar term)
+(adj)|diametric|diametrical|polar|different (similar term)
+(noun)|antonym|opposite word|word (generic term)|synonym (antonym)
+(noun)|reverse|contrary|opposition (generic term)|oppositeness (generic term)
+(noun)|opposition|opponent|contestant (generic term)
+(noun)|inverse|opposition (generic term)|oppositeness (generic term)
+(adv)|face-to-face
+opposite number|1
+(noun)|counterpart|vis-a-vis|equivalent (generic term)
+opposite word|1
+(noun)|antonym|opposite|word (generic term)|synonym (antonym)
+oppositeness|1
+(noun)|opposition|relation (generic term)
+opposition|8
+(noun)|resistance|action (generic term)
+(noun)|oppositeness|relation (generic term)
+(noun)|confrontation|resistance (generic term)
+(noun)|opponent|opposite|contestant (generic term)
+(noun)|body (generic term)
+(noun)|direction (generic term)
+(noun)|enemy|foe|foeman|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+(noun)|Opposition|party (generic term)|political party (generic term)
+oppositive|1
+(adj)|adversative|disjunctive (similar term)
+oppress|2
+(verb)|suppress|crush
+(verb)|persecute|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+oppressed|1
+(adj)|laden|burdened (similar term)
+oppression|3
+(noun)|subjugation|persecution (generic term)
+(noun)|subjugation (generic term)|subjection (generic term)
+(noun)|oppressiveness|depression (generic term)
+oppressive|2
+(adj)|heavy (similar term)
+(adj)|tyrannical|tyrannous|domineering (similar term)
+oppressiveness|2
+(noun)|oppression|depression (generic term)
+(noun)|burdensomeness|heaviness|onerousness|difficulty (generic term)|difficultness (generic term)
+oppressor|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+opprobrious|2
+(adj)|abusive|insulting|scurrilous|offensive (similar term)
+(adj)|black|disgraceful|ignominious|inglorious|shameful|dishonorable (similar term)|dishonourable (similar term)
+opprobrium|2
+(noun)|obloquy|shame (generic term)|disgrace (generic term)|ignominy (generic term)
+(noun)|infamy|dishonor (generic term)|dishonour (generic term)|fame (antonym)
+oppugn|1
+(verb)|question|call into question|challenge (generic term)
+ops|1
+(noun)|Ops|Roman deity (generic term)
+opsanus tau|1
+(noun)|toadfish|Opsanus tau|spiny-finned fish (generic term)|acanthopterygian (generic term)
+opsin|1
+(noun)|protein (generic term)
+opsonin|1
+(noun)|antibody (generic term)
+opsonisation|1
+(noun)|opsonization|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+opsonization|1
+(noun)|opsonisation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+opsonize|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+opt|1
+(verb)|choose|prefer
+opt out|1
+(verb)|cop out|choose (generic term)|prefer (generic term)|opt (generic term)
+optative|3
+(adj)|decision making|deciding (related term)
+(adj)|mood|mode|modality (related term)
+(noun)|optative mood|mood (generic term)|mode (generic term)|modality (generic term)
+optative mood|1
+(noun)|optative|mood (generic term)|mode (generic term)|modality (generic term)
+optez|1
+(noun)|Optez|artificial language (generic term)
+opthalmic|1
+(adj)|ocular|optic|optical|sense organ|sensory receptor|receptor (related term)
+optic|3
+(adj)|ocular|optical|opthalmic|sense organ|sensory receptor|receptor (related term)
+(adj)|ocular|optical|visual|modality|sense modality|sensory system|exteroception (related term)
+(noun)|eye|oculus|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+optic axis|1
+(noun)|principal axis|axis (generic term)
+optic chiasm|1
+(noun)|optic chiasma|chiasma opticum|chiasma (generic term)|chiasm (generic term)|decussation (generic term)
+optic chiasma|1
+(noun)|optic chiasm|chiasma opticum|chiasma (generic term)|chiasm (generic term)|decussation (generic term)
+optic cup|1
+(noun)|eyecup|calyculus (generic term)|caliculus (generic term)|calycle (generic term)
+optic disc|1
+(noun)|blind spot|optic disk|point (generic term)
+optic disk|1
+(noun)|blind spot|optic disc|point (generic term)
+optic nerve|1
+(noun)|nervus opticus|second cranial nerve|optic tract|cranial nerve (generic term)
+optic tract|1
+(noun)|optic nerve|nervus opticus|second cranial nerve|cranial nerve (generic term)
+optical|3
+(adj)|ocular|optic|visual|modality|sense modality|sensory system|exteroception (related term)
+(adj)|physics|physical science|natural philosophy (related term)
+(adj)|ocular|optic|opthalmic|sense organ|sensory receptor|receptor (related term)
+optical aberration|1
+(noun)|aberration|distortion|optical phenomenon (generic term)
+optical bench|1
+(noun)|apparatus (generic term)|setup (generic term)
+optical condenser|1
+(noun)|condenser|lens (generic term)|lense (generic term)|lens system (generic term)
+optical crown|1
+(noun)|crown glass|optical crown glass|optical glass (generic term)
+optical crown glass|1
+(noun)|optical crown|crown glass|optical glass (generic term)
+optical device|1
+(noun)|device (generic term)
+optical disc|1
+(noun)|optical disk|memory device (generic term)|storage device (generic term)
+optical disk|1
+(noun)|optical disc|memory device (generic term)|storage device (generic term)
+optical fiber|1
+(noun)|glass fiber|optical fibre|glass fibre|fiber (generic term)|fibre (generic term)
+optical fibre|1
+(noun)|optical fiber|glass fiber|glass fibre|fiber (generic term)|fibre (generic term)
+optical flint|1
+(noun)|flint glass|optical glass (generic term)
+optical fusion|1
+(noun)|fusion|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+optical glass|1
+(noun)|glass (generic term)
+optical illusion|1
+(noun)|optical phenomenon (generic term)
+optical instrument|1
+(noun)|instrument (generic term)
+optical lens|1
+(noun)|camera lens|lens (generic term)|lense (generic term)|lens system (generic term)
+optical maser|1
+(noun)|laser|optical device (generic term)
+optical opacity|1
+(noun)|opacity (generic term)
+optical phenomenon|1
+(noun)|physical phenomenon (generic term)
+optical prism|1
+(noun)|prism|optical device (generic term)
+optical pyrometer|1
+(noun)|pyroscope|pyrometer (generic term)
+optical telescope|1
+(noun)|astronomical telescope (generic term)
+optician|1
+(noun)|lens maker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+optics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+optimal|1
+(adj)|optimum|best (similar term)
+optimisation|1
+(noun)|optimization|improvement (generic term)
+optimise|3
+(verb)|optimize|perfect (generic term)|hone (generic term)
+(verb)|optimize|modify (generic term)
+(verb)|optimize|act (generic term)|behave (generic term)|do (generic term)
+optimism|2
+(noun)|hope (generic term)|pessimism (antonym)
+(noun)|disposition (generic term)|temperament (generic term)|pessimism (antonym)
+optimist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|pessimist (antonym)
+optimistic|2
+(adj)|bullish (similar term)|cheerful (similar term)|pollyannaish (similar term)|upbeat (similar term)|rose-colored (similar term)|rosy (similar term)|starry-eyed (similar term)|sanguine (similar term)|hopeful (related term)|positive (related term)|pessimistic (antonym)
+(adj)|affirmative|positive (similar term)
+optimistically|1
+(adv)|pessimistically (antonym)
+optimization|1
+(noun)|optimisation|improvement (generic term)
+optimize|3
+(verb)|optimise|perfect (generic term)|hone (generic term)
+(verb)|optimise|modify (generic term)
+(verb)|optimise|act (generic term)|behave (generic term)|do (generic term)
+optimum|2
+(adj)|optimal|best (similar term)
+(noun)|good (generic term)|goodness (generic term)
+option|3
+(noun)|derivative instrument (generic term)|derivative (generic term)
+(noun)|alternative|choice|decision making (generic term)|deciding (generic term)
+(noun)|choice|selection|pick|action (generic term)
+optional|1
+(adj)|elective (similar term)|ex gratia (similar term)|facultative (similar term)|nonmandatory (similar term)|nonobligatory (similar term)|obligatory (antonym)
+optionally|1
+(adv)|obligatorily (antonym)
+optometrist|1
+(noun)|oculist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+optometry|1
+(noun)|practice (generic term)
+opulence|1
+(noun)|luxury|luxuriousness|sumptuousness|wealth (generic term)|wealthiness (generic term)
+opulent|1
+(adj)|deluxe|gilded|grand|luxurious|princely|sumptuous|rich (similar term)
+opulently|1
+(adv)|sumptuously
+opuntia|1
+(noun)|Opuntia|genus Opuntia|caryophylloid dicot genus (generic term)
+opuntia cholla|1
+(noun)|cholla|Opuntia cholla|cactus (generic term)
+opuntia lindheimeri|1
+(noun)|nopal|Opuntia lindheimeri|prickly pear (generic term)|prickly pear cactus (generic term)
+opuntia tuna|1
+(noun)|tuna|Opuntia tuna|prickly pear (generic term)|prickly pear cactus (generic term)
+opuntiales|1
+(noun)|Opuntiales|order Opuntiales|plant order (generic term)
+opus|1
+(noun)|musical composition|composition|piece|piece of music|music (generic term)
+opv|1
+(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine (generic term)
+or|2
+(noun)|Oregon|Beaver State|OR|American state (generic term)
+(noun)|operating room|OR|operating theater|operating theatre|surgery|hospital room (generic term)
+or circuit|1
+(noun)|OR circuit|OR gate|gate (generic term)|logic gate (generic term)
+or else|1
+(adv)|alternatively|as an alternative|instead
+or gate|1
+(noun)|OR circuit|OR gate|gate (generic term)|logic gate (generic term)
+or so|1
+(adv)|approximately|about|close to|just about|some|roughly|more or less|around
+orach|1
+(noun)|orache|herb (generic term)|herbaceous plant (generic term)
+orache|1
+(noun)|orach|herb (generic term)|herbaceous plant (generic term)
+oracle|3
+(noun)|prophet|prophesier|seer|vaticinator|diviner (generic term)
+(noun)|prophecy (generic term)|divination (generic term)
+(noun)|shrine (generic term)
+oracle of apollo|1
+(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle (generic term)
+oracle of delphi|1
+(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle (generic term)
+oracular|3
+(adj)|prophecy|divination (related term)
+(adj)|Delphic|prophetic (similar term)|prophetical (similar term)
+(adj)|enigmatic|ambiguous (similar term)
+orad|1
+(adv)|aborad (antonym)
+oradexon|1
+(noun)|dexamethasone|Decadron|Dexamethasone Intensol|Dexone|Hexadrol|Oradexon|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+oral|5
+(adj)|unwritten|spoken (similar term)
+(adj)|rima (related term)
+(adj)|buccal (similar term)|buccal (similar term)|aboral (antonym)
+(adj)|anal (antonym)
+(noun)|oral exam|oral examination|viva voce|viva|examination (generic term)|exam (generic term)|test (generic term)
+oral cancer|1
+(noun)|carcinoma (generic term)
+oral cavity|1
+(noun)|mouth|oral fissure|rima oris|rima (generic term)
+oral communication|1
+(noun)|speech|speech communication|spoken communication|spoken language|language|voice communication|auditory communication (generic term)
+oral contraception|1
+(noun)|contraception (generic term)|contraceptive method (generic term)
+oral contraceptive|1
+(noun)|pill|birth control pill|contraceptive pill|oral contraceptive pill|anovulatory drug|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+oral contraceptive pill|1
+(noun)|pill|birth control pill|contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+oral contract|1
+(noun)|agreement (generic term)|understanding (generic term)
+oral exam|1
+(noun)|oral|oral examination|viva voce|viva|examination (generic term)|exam (generic term)|test (generic term)
+oral examination|1
+(noun)|oral|oral exam|viva voce|viva|examination (generic term)|exam (generic term)|test (generic term)
+oral fissure|1
+(noun)|mouth|oral cavity|rima oris|rima (generic term)
+oral herpes|1
+(noun)|herpes labialis|cold sore|fever blister|herpes simplex (generic term)
+oral personality|1
+(noun)|personality (generic term)
+oral phase|1
+(noun)|oral stage|phase (generic term)|stage (generic term)
+oral poliovirus vaccine|1
+(noun)|Sabin vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine (generic term)
+oral presentation|1
+(noun)|public speaking|speechmaking|speaking|address (generic term)|speech (generic term)
+oral roberts|1
+(noun)|Roberts|Oral Roberts|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+oral sex|1
+(noun)|head|perversion (generic term)|sexual perversion (generic term)
+oral smear|1
+(noun)|alimentary tract smear (generic term)
+oral stage|1
+(noun)|oral phase|phase (generic term)|stage (generic term)
+orally|2
+(adv)|by mouth
+(adv)|by word of mouth
+oran|1
+(noun)|Oran|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+orang|1
+(noun)|orangutan|orangutang|Pongo pygmaeus|great ape (generic term)|pongid (generic term)
+orange|6
+(adj)|orangish|chromatic (similar term)
+(noun)|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+(noun)|orangeness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|orange tree|citrus (generic term)|citrus tree (generic term)
+(noun)|pigment (generic term)
+(noun)|Orange|Orange River|river (generic term)
+orange-blossom orchid|1
+(noun)|Sarcochilus falcatus|orchid (generic term)|orchidaceous plant (generic term)
+orange-brown|1
+(adj)|chromatic (similar term)
+orange-colored|1
+(adj)|orange-coloured|orange-hued|colored (similar term)|coloured (similar term)|colorful (similar term)
+orange-coloured|1
+(adj)|orange-colored|orange-hued|colored (similar term)|coloured (similar term)|colorful (similar term)
+orange-flowered|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+orange-hued|1
+(adj)|orange-colored|orange-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+orange-juice concentrate|1
+(noun)|frozen orange juice|orange juice (generic term)|concentrate (generic term)
+orange-red|1
+(adj)|orangish-red|chromatic (similar term)
+orange-sized|1
+(adj)|sized (similar term)
+orange balsam|1
+(noun)|jewelweed|lady's earrings|celandine|touch-me-not|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+orange bat|1
+(noun)|orange horseshoe bat|Rhinonicteris aurantius|leafnose bat (generic term)|leaf-nosed bat (generic term)
+orange daisy|1
+(noun)|orange fleabane|Erigeron aurantiacus|fleabane (generic term)
+orange fleabane|1
+(noun)|orange daisy|Erigeron aurantiacus|fleabane (generic term)
+orange free state|1
+(noun)|Free State|Orange Free State|state (generic term)|province (generic term)
+orange grass|1
+(noun)|nitweed|pineweed|pine-weed|Hypericum gentianoides|St John's wort (generic term)
+orange group|1
+(noun)|Orange Group|OV|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+orange grove|1
+(noun)|grove (generic term)|woodlet (generic term)|orchard (generic term)|plantation (generic term)
+orange hawkweed|1
+(noun)|Pilosella aurantiaca|Hieracium aurantiacum|weed (generic term)
+orange horseshoe bat|1
+(noun)|orange bat|Rhinonicteris aurantius|leafnose bat (generic term)|leaf-nosed bat (generic term)
+orange juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+orange liqueur|1
+(noun)|liqueur (generic term)|cordial (generic term)
+orange marmalade|1
+(noun)|marmalade (generic term)
+orange milkweed|1
+(noun)|butterfly weed|chigger flower|chiggerflower|pleurisy root|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+orange milkwort|1
+(noun)|yellow milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort (generic term)
+orange mushroom pimple|1
+(noun)|mushroom pimple (generic term)
+orange order|1
+(noun)|Orange Order|Association of Orangemen|organization (generic term)|organisation (generic term)
+orange peel|1
+(noun)|orange rind|peel (generic term)|skin (generic term)
+orange peel fungus|1
+(noun)|Aleuria aurantia|discomycete (generic term)|cup fungus (generic term)
+orange pekoe|1
+(noun)|pekoe|black tea (generic term)
+orange red|1
+(noun)|scarlet|vermilion|red (generic term)|redness (generic term)
+orange rind|1
+(noun)|orange peel|peel (generic term)|skin (generic term)
+orange river|1
+(noun)|Orange|Orange River|river (generic term)
+orange sneezeweed|1
+(noun)|owlclaws|Helenium hoopesii|sneezeweed (generic term)
+orange soda|1
+(noun)|soft drink (generic term)
+orange toast|1
+(noun)|toast (generic term)
+orange tortrix|1
+(noun)|tortrix|Argyrotaenia citrana|tortricid (generic term)|tortricid moth (generic term)
+orange tree|1
+(noun)|orange|citrus (generic term)|citrus tree (generic term)
+orange yellow|1
+(noun)|saffron|yellow (generic term)|yellowness (generic term)
+orange zest|1
+(noun)|orange peel (generic term)|orange rind (generic term)
+orangeade|1
+(noun)|fruit drink (generic term)|ade (generic term)
+orangeman|1
+(noun)|Orangeman|Protestant (generic term)
+orangeness|1
+(noun)|orange|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+orangery|1
+(noun)|plantation (generic term)|greenhouse (generic term)|nursery (generic term)|glasshouse (generic term)
+orangewood|1
+(noun)|wood (generic term)
+orangish|1
+(adj)|orange|chromatic (similar term)
+orangish-red|1
+(adj)|orange-red|chromatic (similar term)
+orangutan|1
+(noun)|orang|orangutang|Pongo pygmaeus|great ape (generic term)|pongid (generic term)
+orangutang|1
+(noun)|orangutan|orang|Pongo pygmaeus|great ape (generic term)|pongid (generic term)
+orasone|1
+(noun)|prednisone|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+orate|1
+(verb)|talk (generic term)|speak (generic term)
+oration|1
+(noun)|oratory (generic term)
+orator|1
+(noun)|speechmaker|rhetorician|public speaker|speechifier|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+oratorical|1
+(adj)|rhetorical (similar term)
+oratorio|1
+(noun)|cantata|classical music (generic term)|classical (generic term)|serious music (generic term)
+oratory|1
+(noun)|address (generic term)|speech (generic term)
+orb|3
+(noun)|eyeball|capsule (generic term)
+(noun)|ball|globe|sphere (generic term)
+(verb)|orbit|revolve|circle (generic term)|circulate (generic term)
+orb-weaver|1
+(noun)|Argiopidae|family Argiopidae|arthropod family (generic term)
+orb-weaving|1
+(adj)|arthropod family (related term)
+orb-weaving spider|1
+(noun)|spider (generic term)
+orb web|1
+(noun)|spider web (generic term)|spider's web (generic term)
+orbicular|2
+(adj)|orbiculate|simple (similar term)|unsubdivided (similar term)
+(adj)|ball-shaped|global|globose|globular|spheric|spherical|round (similar term)|circular (similar term)
+orbiculate|1
+(adj)|orbicular|simple (similar term)|unsubdivided (similar term)
+orbiculate leaf|1
+(noun)|simple leaf (generic term)
+orbignya|1
+(noun)|Orbignya|genus Orbignya|monocot genus (generic term)|liliopsid genus (generic term)
+orbignya cohune|1
+(noun)|cohune palm|Orbignya cohune|cohune|feather palm (generic term)
+orbignya martiana|1
+(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+orbignya phalerata|1
+(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+orbignya spesiosa|1
+(noun)|babassu|babassu palm|coco de macao|Orbignya phalerata|Orbignya spesiosa|Orbignya martiana|feather palm (generic term)
+orbison|1
+(noun)|Orbison|Roy Orbison|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|composer (generic term)
+orbit|6
+(noun)|celestial orbit|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|sphere|domain|area|field|arena|environment (generic term)
+(noun)|scope|range|reach|compass|ambit|extent (generic term)
+(noun)|electron orbit|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|eye socket|cranial orbit|orbital cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(verb)|orb|revolve|circle (generic term)|circulate (generic term)
+orbit period|1
+(noun)|period (generic term)
+orbital|2
+(adj)|path|route|itinerary (related term)
+(adj)|cavity|bodily cavity|cavum (related term)
+orbital cavity|1
+(noun)|eye socket|orbit|cranial orbit|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+orbital motion|1
+(noun)|orbital rotation|rotation (generic term)|revolution (generic term)|gyration (generic term)
+orbital plane|1
+(noun)|plane (generic term)|sheet (generic term)
+orbital point|1
+(noun)|orbitale|craniometric point (generic term)
+orbital rotation|1
+(noun)|orbital motion|rotation (generic term)|revolution (generic term)|gyration (generic term)
+orbitale|1
+(noun)|orbital point|craniometric point (generic term)
+orbiter|1
+(noun)|satellite|artificial satellite|equipment (generic term)
+orca|1
+(noun)|killer whale|killer|grampus|sea wolf|Orcinus orca|dolphin (generic term)
+orchard|1
+(noun)|grove|woodlet|plantation|garden (generic term)
+orchard apple tree|1
+(noun)|apple|Malus pumila|apple tree (generic term)
+orchard grass|1
+(noun)|cocksfoot|cockspur|Dactylis glomerata|grass (generic term)
+orchard oriole|1
+(noun)|Icterus spurius|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+orchestia|1
+(noun)|Orchestia|genus Orchestia|arthropod genus (generic term)
+orchestiidae|1
+(noun)|Orchestiidae|family Orchestiidae|arthropod family (generic term)
+orchestra|2
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+orchestra pit|1
+(noun)|pit|area (generic term)
+orchestral|1
+(adj)|musical organization|musical organisation|musical group (related term)
+orchestral bells|1
+(noun)|glockenspiel|percussion instrument (generic term)|percussive instrument (generic term)
+orchestrate|2
+(verb)|score (generic term)
+(verb)|mastermind|engineer|direct|organize|organise|plan (generic term)
+orchestrated|1
+(adj)|musical organization|musical organisation|musical group (related term)
+orchestration|3
+(noun)|musical arrangement (generic term)|arrangement (generic term)
+(noun)|instrumentation|arrangement (generic term)|arranging (generic term)|transcription (generic term)
+(noun)|arrangement (generic term)|arranging (generic term)|transcription (generic term)
+orchestrator|1
+(noun)|arranger (generic term)|adapter (generic term)|transcriber (generic term)
+orchid|1
+(noun)|orchidaceous plant|flower (generic term)
+orchid-like|1
+(adj)|orchidlike|flowering (similar term)
+orchid cactus|1
+(noun)|epiphyllum|cactus (generic term)
+orchid family|1
+(noun)|Orchidaceae|family Orchidaceae|monocot family (generic term)|liliopsid family (generic term)
+orchid tree|1
+(noun)|mountain ebony|Bauhinia variegata|angiospermous tree (generic term)|flowering tree (generic term)
+orchidaceae|1
+(noun)|Orchidaceae|family Orchidaceae|orchid family|monocot family (generic term)|liliopsid family (generic term)
+orchidaceous plant|1
+(noun)|orchid|flower (generic term)
+orchidales|1
+(noun)|Orchidales|order Orchidales|plant order (generic term)
+orchidalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+orchidectomy|1
+(noun)|orchiectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+orchidlike|1
+(adj)|orchid-like|flowering (similar term)
+orchiectomy|1
+(noun)|orchidectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+orchil|2
+(noun)|archil|cudbear|dye (generic term)|dyestuff (generic term)
+(noun)|archil|lecanora (generic term)
+orchiopexy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+orchis|2
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|testis|testicle|ball|ballock|bollock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+orchis mascula|1
+(noun)|male orchis|early purple orchid|Orchis mascula|orchis (generic term)
+orchis papilionaceae|1
+(noun)|butterfly orchid|butterfly orchis|Orchis papilionaceae|orchis (generic term)
+orchis spectabilis|1
+(noun)|showy orchis|purple orchis|purple-hooded orchis|Orchis spectabilis|orchis (generic term)
+orchitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+orchotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+orcinus|1
+(noun)|Orcinus|genus Orcinus|mammal genus (generic term)
+orcinus orca|1
+(noun)|killer whale|killer|orca|grampus|sea wolf|Orcinus orca|dolphin (generic term)
+orcus|1
+(noun)|Dis|Orcus|Roman deity (generic term)
+orczy|1
+(noun)|Orczy|Baroness Emmusca Orczy|writer (generic term)|author (generic term)
+ord kangaroo rat|1
+(noun)|Ord kangaroo rat|Dipodomys ordi|kangaroo rat (generic term)|desert rat (generic term)|Dipodomys phillipsii (generic term)
+ordain|4
+(verb)|enact|decree (generic term)
+(verb)|consecrate|ordinate|order|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|decree (generic term)
+ordained|2
+(adj)|appointed|decreed|prescribed|settled (similar term)
+(adj)|consecrated (similar term)|consecrate (similar term)|dedicated (similar term)
+ordainer|1
+(noun)|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)
+ordeal|2
+(noun)|experience (generic term)
+(noun)|trial by ordeal|trial (generic term)
+ordeal bean|1
+(noun)|calabar bean|bean (generic term)
+ordeal tree|1
+(noun)|bushman's poison|Acocanthera oppositifolia|Acocanthera venenata|shrub (generic term)|bush (generic term)
+order|24
+(noun)|command (generic term)|bid (generic term)|bidding (generic term)|dictation (generic term)
+(noun)|order of magnitude|magnitude (generic term)
+(noun)|state (generic term)|disorder (antonym)
+(noun)|ordering|ordination|arrangement (generic term)
+(noun)|orderliness|condition (generic term)|status (generic term)|disorder (antonym)|disorderliness (antonym)
+(noun)|decree|edict|fiat|rescript|act (generic term)|enactment (generic term)
+(noun)|purchase order|commercial document (generic term)|commercial instrument (generic term)
+(noun)|club|social club|society|guild|gild|lodge|association (generic term)
+(noun)|rules of order|parliamentary law|parliamentary procedure|rule (generic term)|prescript (generic term)
+(noun)|Holy Order|Order|status (generic term)|position (generic term)
+(noun)|monastic order|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|request (generic term)|asking (generic term)
+(noun)|artistic style (generic term)|idiom (generic term)
+(noun)|ordering|organization (generic term)|organisation (generic term)
+(verb)|tell|enjoin|say|request (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|prescribe|dictate|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+(verb)|regulate|regularize|regularise|govern|decide (generic term)|make up one's mind (generic term)|determine (generic term)|deregulate (antonym)
+(verb)|arrange (generic term)|set up (generic term)|disorder (antonym)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|ordain|consecrate|ordinate|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|arrange|set up|put|organize (generic term)|organise (generic term)
+(verb)|rate|rank|range|grade|place|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+order-chenopodiales|1
+(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order (generic term)
+order acarina|1
+(noun)|Acarina|order Acarina|animal order (generic term)
+order accipitriformes|1
+(noun)|Accipitriformes|order Accipitriformes|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+order actinaria|1
+(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order (generic term)
+order actiniaria|1
+(noun)|Actiniaria|order Actiniaria|Actinaria|order Actinaria|animal order (generic term)
+order actinomycetales|1
+(noun)|Actinomycetales|order Actinomycetales|animal order (generic term)
+order actinomyxidia|1
+(noun)|Actinomyxidia|order Actinomyxidia|animal order (generic term)
+order aepyorniformes|1
+(noun)|Aepyorniformes|order Aepyorniformes|animal order (generic term)
+order agaricales|1
+(noun)|Agaricales|order Agaricales|fungus order (generic term)
+order alcyonaria|1
+(noun)|Alcyonaria|order Alcyonaria|animal order (generic term)
+order alismales|1
+(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order (generic term)
+order amoebida|1
+(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order (generic term)
+order amoebina|1
+(noun)|Amoebida|order Amoebida|Amoebina|order Amoebina|animal order (generic term)
+order amphipoda|1
+(noun)|Amphipoda|order Amphipoda|animal order (generic term)
+order anacanthini|1
+(noun)|Anacanthini|order Anacanthini|animal order (generic term)
+order anaspida|1
+(noun)|Anaspida|order Anaspida|animal order (generic term)
+order andreaeales|1
+(noun)|Andreaeales|order Andreaeales|plant order (generic term)
+order anguilliformes|1
+(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order (generic term)
+order anoplura|1
+(noun)|Anoplura|order Anoplura|animal order (generic term)
+order anostraca|1
+(noun)|Anostraca|order Anostraca|animal order (generic term)
+order anseriformes|1
+(noun)|Anseriformes|order Anseriformes|animal order (generic term)
+order anthocerotales|1
+(noun)|Anthocerotales|order Anthocerotales|plant order (generic term)
+order anura|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+order aphyllophorales|1
+(noun)|Aphyllophorales|order Aphyllophorales|fungus order (generic term)
+order aplacophora|1
+(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order (generic term)
+order apodes|1
+(noun)|Anguilliformes|order Anguilliformes|order Apodes|animal order (generic term)
+order apodiformes|1
+(noun)|Apodiformes|order Apodiformes|animal order (generic term)
+order apterygiformes|1
+(noun)|Apterygiformes|order Apterygiformes|animal order (generic term)
+order arales|1
+(noun)|Arales|order Arales|plant order (generic term)
+order araneae|1
+(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order (generic term)
+order araneida|1
+(noun)|Araneae|order Araneae|Araneida|order Araneida|animal order (generic term)
+order aristolochiales|1
+(noun)|Aristolochiales|order Aristolochiales|plant order (generic term)
+order arms|1
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+order artiodactyla|1
+(noun)|Artiodactyla|order Artiodactyla|animal order (generic term)
+order aspergillales|1
+(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order (generic term)
+order auriculariales|1
+(noun)|Auriculariales|order Auriculariales|fungus order (generic term)
+order batoidei|1
+(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order (generic term)
+order batrachia|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+order belemnoidea|1
+(noun)|Belemnoidea|order Belemnoidea|animal order (generic term)
+order bennettitales|1
+(noun)|Bennettitales|order Bennettitales|plant order (generic term)
+order berycomorphi|1
+(noun)|Berycomorphi|order Berycomorphi|animal order (generic term)
+order blastocladiales|1
+(noun)|Blastocladiales|order Blastocladiales|fungus order (generic term)
+order book|2
+(noun)|order paper|order of the day (generic term)
+(noun)|book (generic term)|volume (generic term)
+order branchiura|1
+(noun)|Branchiura|order Branchiura|animal order (generic term)
+order bryales|1
+(noun)|Bryales|order Bryales|plant order (generic term)
+order campanulales|1
+(noun)|Campanulales|order Campanulales|plant order (generic term)
+order caprimulgiformes|1
+(noun)|Caprimulgiformes|order Caprimulgiformes|animal order (generic term)
+order carnivora|1
+(noun)|Carnivora|order Carnivora|animal order (generic term)
+order caryophyllales|1
+(noun)|Caryophyllales|order Caryophyllales|Chenopodiales|order-Chenopodiales|plant order (generic term)
+order casuariiformes|1
+(noun)|Casuariiformes|order Casuariiformes|animal order (generic term)
+order casuarinales|1
+(noun)|Casuarinales|order Casuarinales|plant order (generic term)
+order caudata|1
+(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order (generic term)
+order cestida|1
+(noun)|Cestida|order Cestida|animal order (generic term)
+order cetacea|1
+(noun)|Cetacea|order Cetacea|animal order (generic term)
+order charadriiformes|1
+(noun)|Charadriiformes|order Charadriiformes|animal order (generic term)
+order charales|1
+(noun)|Charales|order Charales|protoctist order (generic term)
+order chelonethida|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+order chelonia|1
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+order chiroptera|1
+(noun)|Chiroptera|order Chiroptera|animal order (generic term)
+order chlorococcales|1
+(noun)|Chlorococcales|order Chlorococcales|protoctist order (generic term)
+order chytridiales|1
+(noun)|Chytridiales|order Chytridiales|fungus order (generic term)
+order ciconiiformes|1
+(noun)|Ciconiiformes|order Ciconiiformes|animal order (generic term)
+order cilioflagellata|1
+(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order (generic term)
+order coccidia|1
+(noun)|Coccidia|order Coccidia|animal order (generic term)
+order code|1
+(noun)|operation code|code (generic term)|computer code (generic term)
+order coleoptera|1
+(noun)|Coleoptera|order Coleoptera|animal order (generic term)
+order collembola|1
+(noun)|Collembola|order Collembola|animal order (generic term)
+order columbiformes|1
+(noun)|Columbiformes|order Columbiformes|animal order (generic term)
+order colymbiformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+order commelinales|1
+(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order (generic term)
+order coniferales|1
+(noun)|Coniferales|order Coniferales|plant order (generic term)
+order conodonta|1
+(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order (generic term)
+order conodontophorida|1
+(noun)|Conodonta|order Conodonta|Conodontophorida|order Conodontophorida|animal order (generic term)
+order coraciiformes|1
+(noun)|Coraciiformes|order Coraciiformes|animal order (generic term)
+order cordaitales|1
+(noun)|Cordaitales|order Cordaitales|plant order (generic term)
+order corrodentia|1
+(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order (generic term)
+order crocodilia|1
+(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order (generic term)
+order crocodylia|1
+(noun)|Crocodylia|order Crocodylia|Crocodilia|order Crocodilia|animal order (generic term)
+order cuculiformes|1
+(noun)|Cuculiformes|order Cuculiformes|animal order (generic term)
+order cycadales|1
+(noun)|Cycadales|order Cycadales|plant order (generic term)
+order cycadofilicales|1
+(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order (generic term)
+order cyclostomata|1
+(noun)|Cyclostomata|order Cyclostomata|animal order (generic term)
+order cydippea|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+order cydippida|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+order cydippidea|1
+(noun)|Cydippida|order Cydippida|Cydippidea|order Cydippidea|Cydippea|order Cydippea|animal order (generic term)
+order cypriniformes|1
+(noun)|Cypriniformes|order Cypriniformes|animal order (generic term)
+order decapoda|1
+(noun)|Decapoda|order Decapoda|animal order (generic term)
+order dermaptera|1
+(noun)|Dermaptera|order Dermaptera|animal order (generic term)
+order dermoptera|1
+(noun)|Dermoptera|order Dermoptera|animal order (generic term)
+order diapensiales|1
+(noun)|Diapensiales|order Diapensiales|plant order (generic term)
+order dicranales|1
+(noun)|Dicranales|order Dicranales|plant order (generic term)
+order dictyoptera|1
+(noun)|Dictyoptera|order Dictyoptera|animal order (generic term)
+order dinocerata|1
+(noun)|Dinocerata|order Dinocerata|animal order (generic term)
+order dinoflagellata|1
+(noun)|Dinoflagellata|order Dinoflagellata|Cilioflagellata|order Cilioflagellata|animal order (generic term)
+order dinornithiformes|1
+(noun)|Dinornithiformes|order Dinornithiformes|animal order (generic term)
+order diptera|1
+(noun)|Diptera|order Diptera|animal order (generic term)
+order discocephali|1
+(noun)|Discocephali|order Discocephali|animal order (generic term)
+order ebenales|1
+(noun)|Ebenales|order Ebenales|plant order (generic term)
+order edentata|1
+(noun)|Edentata|order Edentata|animal order (generic term)
+order embiodea|1
+(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order (generic term)
+order embioptera|1
+(noun)|Embioptera|order Embioptera|Embiodea|order Embiodea|animal order (generic term)
+order endomycetales|1
+(noun)|Endomycetales|order Endomycetales|fungus order (generic term)
+order entomophthorales|1
+(noun)|Entomophthorales|order Entomophthorales|fungus order (generic term)
+order ephemerida|1
+(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order (generic term)
+order ephemeroptera|1
+(noun)|Ephemeroptera|order Ephemeroptera|Ephemerida|order Ephemerida|animal order (generic term)
+order equisetales|1
+(noun)|Equisetales|order Equisetales|plant order (generic term)
+order ericales|1
+(noun)|Ericales|order Ericales|plant order (generic term)
+order erysiphales|1
+(noun)|Erysiphales|order Erysiphales|fungus order (generic term)
+order eubacteriales|1
+(noun)|Eubacteriales|order Eubacteriales|animal order (generic term)
+order eubryales|1
+(noun)|Eubryales|order Eubryales|plant order (generic term)
+order euphausiacea|1
+(noun)|Euphausiacea|order Euphausiacea|animal order (generic term)
+order eurotiales|1
+(noun)|Eurotiales|order Eurotiales|Aspergillales|order Aspergillales|fungus order (generic term)
+order eurypterida|1
+(noun)|Eurypterida|order Eurypterida|animal order (generic term)
+order exocycloida|1
+(noun)|Exocycloida|order Exocycloida|animal order (generic term)
+order fagales|1
+(noun)|Fagales|order Fagales|plant order (generic term)
+order falconiformes|1
+(noun)|Falconiformes|order Falconiformes|animal order (generic term)
+order filicales|1
+(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order (generic term)
+order foraminifera|1
+(noun)|Foraminifera|order Foraminifera|animal order (generic term)
+order form|1
+(noun)|form (generic term)
+order fucales|1
+(noun)|Fucales|order Fucales|animal order (generic term)
+order gadiformes|1
+(noun)|Gadiformes|order Gadiformes|animal order (generic term)
+order galliformes|1
+(noun)|Galliformes|order Galliformes|animal order (generic term)
+order ganoidei|1
+(noun)|Ganoidei|order Ganoidei|animal order (generic term)
+order gaviiformes|1
+(noun)|Gaviiformes|order Gaviiformes|animal order (generic term)
+order gentianales|1
+(noun)|Gentianales|order Gentianales|plant order (generic term)
+order geophilomorpha|1
+(noun)|Geophilomorpha|order Geophilomorpha|animal order (generic term)
+order geraniales|1
+(noun)|Geraniales|order Geraniales|plant order (generic term)
+order ginkgoales|1
+(noun)|Ginkgoales|order Ginkgoales|plant order (generic term)
+order gnetales|1
+(noun)|Gnetales|order Gnetales|plant order (generic term)
+order graminales|1
+(noun)|Graminales|order Graminales|plant order (generic term)
+order gregarinida|1
+(noun)|Gregarinida|order Gregarinida|animal order (generic term)
+order gruiformes|1
+(noun)|Gruiformes|order Gruiformes|animal order (generic term)
+order guttiferales|1
+(noun)|Guttiferales|order Guttiferales|plant order (generic term)
+order gymnophiona|1
+(noun)|Gymnophiona|order Gymnophiona|animal order (generic term)
+order haemosporidia|1
+(noun)|Haemosporidia|order Haemosporidia|animal order (generic term)
+order haplosporidia|1
+(noun)|Haplosporidia|order Haplosporidia|animal order (generic term)
+order heliozoa|1
+(noun)|Heliozoa|order Heliozoa|animal order (generic term)
+order helotiales|1
+(noun)|Helotiales|order Helotiales|fungus order (generic term)
+order hemiptera|1
+(noun)|Hemiptera|order Hemiptera|animal order (generic term)
+order heterosomata|1
+(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order (generic term)
+order heterotrichales|1
+(noun)|Heterotrichales|order Heterotrichales|protoctist order (generic term)
+order hymenogastrales|1
+(noun)|Hymenogastrales|order Hymenogastrales|fungus order (generic term)
+order hymenoptera|1
+(noun)|Hymenoptera|order Hymenoptera|animal order (generic term)
+order hypericales|1
+(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order (generic term)
+order hypermastigina|1
+(noun)|Hypermastigina|order Hypermastigina|animal order (generic term)
+order hypocreales|1
+(noun)|Hypocreales|order Hypocreales|fungus order (generic term)
+order hyracoidea|1
+(noun)|Hyracoidea|order Hyracoidea|animal order (generic term)
+order ichthyosauria|1
+(noun)|Ichthyosauria|order Ichthyosauria|animal order (generic term)
+order ictodosauria|1
+(noun)|Ictodosauria|order Ictodosauria|animal order (generic term)
+order insectivora|1
+(noun)|Insectivora|order Insectivora|animal order (generic term)
+order insessores|1
+(noun)|Insessores|order Insessores|perching bird|percher|animal order (generic term)
+order isoetales|1
+(noun)|Isoetales|order Isoetales|plant order (generic term)
+order isopoda|1
+(noun)|Isopoda|order Isopoda|animal order (generic term)
+order isoptera|1
+(noun)|Isoptera|order Isoptera|animal order (generic term)
+order isospondyli|1
+(noun)|Isospondyli|order Isospondyli|animal order (generic term)
+order juglandales|1
+(noun)|Juglandales|order Juglandales|plant order (generic term)
+order jungermanniales|1
+(noun)|Jungermanniales|order Jungermanniales|plant order (generic term)
+order lagomorpha|1
+(noun)|Lagomorpha|order Lagomorpha|animal order (generic term)
+order laminariales|1
+(noun)|Laminariales|order Laminariales|protoctist order (generic term)
+order lechanorales|1
+(noun)|Lechanorales|order Lechanorales|fungus order (generic term)
+order lepidodendrales|1
+(noun)|Lepidodendrales|order Lepidodendrales|plant order (generic term)
+order lepidoptera|1
+(noun)|Lepidoptera|order Lepidoptera|animal order (generic term)
+order lichenales|1
+(noun)|Lichenales|order Lichenales|fungus order (generic term)
+order liliales|1
+(noun)|Liliales|order Liliales|plant order (generic term)
+order lobata|1
+(noun)|Lobata|order Lobata|animal order (generic term)
+order loricata|1
+(noun)|Loricata|order Loricata|animal order (generic term)
+order lycoperdales|1
+(noun)|Lycoperdales|order Lycoperdales|fungus order (generic term)
+order lycopodiales|1
+(noun)|Lycopodiales|order Lycopodiales|plant order (generic term)
+order lyginopteridales|1
+(noun)|Cycadofilicales|order Cycadofilicales|Lyginopteridales|order Lyginopteridales|plant order (generic term)
+order madreporaria|1
+(noun)|Madreporaria|order Madreporaria|animal order (generic term)
+order mallophaga|1
+(noun)|Mallophaga|order Mallophaga|animal order (generic term)
+order malvales|1
+(noun)|Malvales|order Malvales|plant order (generic term)
+order mantophasmatodea|1
+(noun)|Mantophasmatodea|animal order (generic term)
+order marattiales|1
+(noun)|Marattiales|order Marattiales|plant order (generic term)
+order marchantiales|1
+(noun)|Marchantiales|order Marchantiales|plant order (generic term)
+order marsupialia|1
+(noun)|Marsupialia|order Marsupialia|animal order (generic term)
+order mecoptera|1
+(noun)|Mecoptera|order Mecoptera|animal order (generic term)
+order moniliales|1
+(noun)|Moniliales|order Moniliales|fungus order (generic term)
+order monotremata|1
+(noun)|Monotremata|order Monotremata|animal order (generic term)
+order mucorales|1
+(noun)|Mucorales|order Mucorales|fungus order (generic term)
+order musales|1
+(noun)|Musales|order Musales|plant order (generic term)
+order myaceae|1
+(noun)|Myaceae|order Myaceae|animal order (generic term)
+order mycelia sterilia|1
+(noun)|Mycelia Sterilia|order Mycelia Sterilia|fungus order (generic term)
+order mycoplasmatales|1
+(noun)|Mycoplasmatales|order Mycoplasmatales|animal order (generic term)
+order mycrosporidia|1
+(noun)|Mycrosporidia|order Mycrosporidia|animal order (generic term)
+order myricales|1
+(noun)|Myricales|order Myricales|plant order (generic term)
+order myrtales|1
+(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order (generic term)
+order mysidacea|1
+(noun)|Mysidacea|order Mysidacea|animal order (generic term)
+order myxobacterales|1
+(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order (generic term)
+order myxobacteria|1
+(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order (generic term)
+order myxobacteriales|1
+(noun)|order Myxobacteria|Myxobacterales|order Myxobacterales|Myxobacteriales|order Myxobacteriales|animal order (generic term)
+order myxosporidia|1
+(noun)|Myxosporidia|order Myxosporidia|animal order (generic term)
+order naiadales|1
+(noun)|Naiadales|order Naiadales|Alismales|order Alismales|plant order (generic term)
+order neuroptera|1
+(noun)|Neuroptera|order Neuroptera|animal order (generic term)
+order nidulariales|1
+(noun)|Nidulariales|order Nidulariales|fungus order (generic term)
+order notostraca|1
+(noun)|Notostraca|order Notostraca|animal order (generic term)
+order nudibranchia|1
+(noun)|Nudibranchia|order Nudibranchia|animal order (generic term)
+order octopoda|1
+(noun)|Octopoda|order Octopoda|animal order (generic term)
+order odonata|1
+(noun)|Odonata|order Odonata|animal order (generic term)
+order oedogoniales|1
+(noun)|Oedogoniales|protoctist order (generic term)
+order of business|1
+(noun)|agenda|agendum|list (generic term)|listing (generic term)
+order of magnitude|2
+(noun)|order|magnitude (generic term)
+(noun)|magnitude|ratio (generic term)
+order of our lady of mount carmel|1
+(noun)|Carmelite order|Order of Our Lady of Mount Carmel|order (generic term)|monastic order (generic term)
+order of payment|1
+(noun)|draft|bill of exchange|negotiable instrument (generic term)
+order of saint benedict|1
+(noun)|Benedictine order|order of Saint Benedict|order (generic term)|monastic order (generic term)
+order of the day|1
+(noun)|agenda (generic term)|agendum (generic term)|order of business (generic term)
+order of the purple heart|1
+(noun)|Order of the Purple Heart|Purple Heart|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+order oleales|1
+(noun)|Oleales|order Oleales|plant order (generic term)
+order ophioglossales|1
+(noun)|Ophioglossales|order Ophioglossales|plant order (generic term)
+order opiliones|1
+(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order (generic term)
+order opuntiales|1
+(noun)|Opuntiales|order Opuntiales|plant order (generic term)
+order orchidales|1
+(noun)|Orchidales|order Orchidales|plant order (generic term)
+order ornithischia|1
+(noun)|Ornithischia|order Ornithischia|animal order (generic term)
+order orthoptera|1
+(noun)|Orthoptera|order Orthoptera|animal order (generic term)
+order ostariophysi|1
+(noun)|Ostariophysi|order Ostariophysi|soft-finned fish (generic term)|malacopterygian (generic term)
+order ostracodermi|1
+(noun)|Ostracodermi|order Ostracodermi|animal order (generic term)
+order palmales|1
+(noun)|Palmales|order Palmales|plant order (generic term)
+order pandanales|1
+(noun)|Pandanales|order Pandanales|plant order (generic term)
+order papaverales|1
+(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order (generic term)
+order paper|1
+(noun)|order book|order of the day (generic term)
+order parietales|1
+(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order (generic term)
+order passeriformes|1
+(noun)|Passeriformes|order Passeriformes|animal order (generic term)
+order pectinibranchia|1
+(noun)|Pectinibranchia|order Pectinibranchia|animal order (generic term)
+order pediculati|1
+(noun)|Pediculati|order Pediculati|animal order (generic term)
+order pedipalpi|1
+(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order (generic term)
+order pelecaniformes|1
+(noun)|Pelecaniformes|order Pelecaniformes|animal order (generic term)
+order pelycosauria|1
+(noun)|Pelycosauria|order Pelycosauria|animal order (generic term)
+order perciformes|1
+(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order (generic term)
+order percomorphi|1
+(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order (generic term)
+order perissodactyla|1
+(noun)|Perissodactyla|order Perissodactyla|animal order (generic term)
+order peronosporales|1
+(noun)|Peronosporales|order Peronosporales|fungus order (generic term)
+order pezizales|1
+(noun)|Pezizales|order Pezizales|fungus order (generic term)
+order phalangida|1
+(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order (generic term)
+order phallales|1
+(noun)|Phallales|order Phallales|fungus genus (generic term)
+order phasmatodea|1
+(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order (generic term)
+order phasmida|1
+(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order (generic term)
+order pholidota|1
+(noun)|Pholidota|order Pholidota|animal order (generic term)
+order picariae|1
+(noun)|Picariae|order Picariae|animal order (generic term)
+order piciformes|1
+(noun)|Piciformes|order Piciformes|animal order (generic term)
+order piperales|1
+(noun)|Piperales|order Piperales|plant order (generic term)
+order plantaginales|1
+(noun)|Plantaginales|order Plantaginales|plant order (generic term)
+order platyctenea|1
+(noun)|Platyctenea|order Platyctenea|animal order (generic term)
+order plecoptera|1
+(noun)|Plecoptera|order Plecoptera|animal order (generic term)
+order plectognathi|1
+(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order (generic term)
+order pleuronectiformes|1
+(noun)|Heterosomata|order Heterosomata|order Pleuronectiformes|animal order (generic term)
+order plumbaginales|1
+(noun)|Plumbaginales|order Plumbaginales|plant order (generic term)
+order podicipediformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+order podicipitiformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+order polemoniales|1
+(noun)|Polemoniales|order Polemoniales|plant order (generic term)
+order polygonales|1
+(noun)|Polygonales|order Polygonales|plant order (generic term)
+order polymastigina|1
+(noun)|Polymastigina|order Polymastigina|animal order (generic term)
+order polypodiales|1
+(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order (generic term)
+order primates|1
+(noun)|Primates|order Primates|animal order (generic term)
+order primulales|1
+(noun)|Primulales|order Primulales|plant order (generic term)
+order proboscidea|1
+(noun)|Proboscidea|order Proboscidea|animal order (generic term)
+order procellariiformes|1
+(noun)|Procellariiformes|order Procellariiformes|animal order (generic term)
+order proteales|1
+(noun)|Proteales|order Proteales|plant order (generic term)
+order protura|1
+(noun)|Protura|order Protura|animal order (generic term)
+order pseudomonadales|1
+(noun)|Pseudomonadales|order Pseudomonadales|animal order (generic term)
+order pseudoscorpiones|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+order pseudoscorpionida|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+order psilophytales|1
+(noun)|Psilophytales|order Psilophytales|plant order (generic term)
+order psilotales|1
+(noun)|Psilotales|order Psilotales|plant order (generic term)
+order psittaciformes|1
+(noun)|Psittaciformes|order Psittaciformes|animal order (generic term)
+order psocoptera|1
+(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order (generic term)
+order pterosauria|1
+(noun)|Pterosauria|order Pterosauria|animal order (generic term)
+order pulmonata|1
+(noun)|Pulmonata|order Pulmonata|animal order (generic term)
+order pycnogonida|1
+(noun)|Pycnogonida|order Pycnogonida|animal order (generic term)
+order radiolaria|1
+(noun)|Radiolaria|order Radiolaria|animal order (generic term)
+order rajiformes|1
+(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order (generic term)
+order ranales|1
+(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order (generic term)
+order ranunculales|1
+(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order (generic term)
+order raptores|1
+(noun)|Raptores|order Raptores|animal order (generic term)
+order rhamnales|1
+(noun)|Rhamnales|order Rhamnales|plant order (generic term)
+order rheiformes|1
+(noun)|Rheiformes|order Rheiformes|animal order (generic term)
+order rhoeadales|1
+(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order (generic term)
+order rhynchocephalia|1
+(noun)|Rhynchocephalia|order Rhynchocephalia|animal order (generic term)
+order rickettsiales|1
+(noun)|Rickettsiales|order Rickettsiales|animal order (generic term)
+order rodentia|1
+(noun)|Rodentia|order Rodentia|animal order (generic term)
+order rosales|1
+(noun)|Rosales|order Rosales|plant order (generic term)
+order rubiales|1
+(noun)|Rubiales|order Rubiales|plant order (generic term)
+order salicales|1
+(noun)|Salicales|order Salicales|plant order (generic term)
+order salientia|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+order santalales|1
+(noun)|Santalales|order Santalales|plant order (generic term)
+order sapindales|1
+(noun)|Sapindales|order Sapindales|plant order (generic term)
+order saprolegniales|1
+(noun)|Saprolegniales|order Saprolegniales|fungus order (generic term)
+order sarcosporidia|1
+(noun)|Sarcosporidia|order Sarcosporidia|animal order (generic term)
+order sarraceniales|1
+(noun)|Sarraceniales|order Sarraceniales|plant order (generic term)
+order saurischia|1
+(noun)|Saurischia|order Saurischia|animal order (generic term)
+order sauropterygia|1
+(noun)|Sauropterygia|order Sauropterygia|animal order (generic term)
+order scandentia|1
+(noun)|Scandentia|order Scandentia|animal order (generic term)
+order sclerodermatales|1
+(noun)|Sclerodermatales|order Sclerodermatales|fungus order (generic term)
+order scleroparei|1
+(noun)|Scleroparei|order Scleroparei|animal order (generic term)
+order scorpionida|1
+(noun)|Scorpionida|order Scorpionida|animal order (generic term)
+order scrophulariales|1
+(noun)|Scrophulariales|order Scrophulariales|plant order (generic term)
+order secotiales|1
+(noun)|Secotiales|order Secotiales|fungus order (generic term)
+order selaginellales|1
+(noun)|Selaginellales|order Selaginellales|plant order (generic term)
+order siluriformes|1
+(noun)|Siluriformes|order Siluriformes|animal order (generic term)
+order siphonaptera|1
+(noun)|Siphonaptera|order Siphonaptera|animal order (generic term)
+order siphonophora|1
+(noun)|Siphonophora|order Siphonophora|animal order (generic term)
+order sirenia|1
+(noun)|Sirenia|order Sirenia|animal order (generic term)
+order solenichthyes|1
+(noun)|Solenichthyes|order Solenichthyes|animal order (generic term)
+order solenogastres|1
+(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order (generic term)
+order spatangoida|1
+(noun)|Spatangoida|order Spatangoida|animal order (generic term)
+order sphaeriales|1
+(noun)|Sphaeriales|order Sphaeriales|fungus order (generic term)
+order sphaerocarpales|1
+(noun)|Sphaerocarpales|order Sphaerocarpales|plant order (generic term)
+order sphagnales|1
+(noun)|Sphagnales|order Sphagnales|plant order (generic term)
+order sphenisciformes|1
+(noun)|Sphenisciformes|order Sphenisciformes|animal order (generic term)
+order spirochaetales|1
+(noun)|Spirochaetales|order Spirochaetales|animal order (generic term)
+order squamata|1
+(noun)|Squamata|order Squamata|animal order (generic term)
+order stegocephalia|1
+(noun)|Stegocephalia|order Stegocephalia|animal order (generic term)
+order stereospondyli|1
+(noun)|Stereospondyli|order Stereospondyli|animal order (generic term)
+order stomatopoda|1
+(noun)|Stomatopoda|order Stomatopoda|animal order (generic term)
+order strigiformes|1
+(noun)|Strigiformes|order Strigiformes|animal order (generic term)
+order struthioniformes|1
+(noun)|Struthioniformes|order Struthioniformes|animal order (generic term)
+order synentognathi|1
+(noun)|Synentognathi|order Synentognathi|animal order (generic term)
+order taxales|1
+(noun)|Taxales|order Taxales|plant order (generic term)
+order temnospondyli|1
+(noun)|Temnospondyli|order Temnospondyli|animal order (generic term)
+order testacea|1
+(noun)|Testacea|order Testacea|animal order (generic term)
+order testudinata|1
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+order testudines|1
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+order tetraodontiformes|1
+(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order (generic term)
+order thecodontia|1
+(noun)|Thecodontia|order Thecodontia|animal order (generic term)
+order therapsida|1
+(noun)|Therapsida|order Therapsida|animal order (generic term)
+order thymelaeales|1
+(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order (generic term)
+order thysanoptera|1
+(noun)|Thysanoptera|order Thysanoptera|animal order (generic term)
+order thysanura|1
+(noun)|Thysanura|order Thysanura|animal order (generic term)
+order tinamiformes|1
+(noun)|Tinamiformes|order Tinamiformes|animal order (generic term)
+order torpediniformes|1
+(noun)|Torpediniformes|order Torpediniformes|animal order (generic term)
+order tremellales|1
+(noun)|Tremellales|order Tremellales|fungus order (generic term)
+order trichoptera|1
+(noun)|Trichoptera|order Trichoptera|animal order (generic term)
+order trogoniformes|1
+(noun)|Trogoniformes|order Trogoniformes|animal order (generic term)
+order tuberales|1
+(noun)|Tuberales|order Tuberales|fungus order (generic term)
+order tubulidentata|1
+(noun)|Tubulidentata|order Tubulidentata|animal order (generic term)
+order tulostomatales|1
+(noun)|Tulostomatales|order Tulostomatales|fungus order (generic term)
+order ulvales|1
+(noun)|Ulvales|order Ulvales|protoctist order (generic term)
+order umbellales|1
+(noun)|Umbellales|order Umbellales|plant order (generic term)
+order uredinales|1
+(noun)|Uredinales|order Uredinales|fungus order (generic term)
+order urodella|1
+(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order (generic term)
+order uropygi|1
+(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order (generic term)
+order urticales|1
+(noun)|Urticales|order Urticales|plant order (generic term)
+order ustilaginales|1
+(noun)|Ustilaginales|order Ustilaginales|fungus order (generic term)
+order volvocales|1
+(noun)|Volvocales|order Volvocales|protoctist order (generic term)
+order xiphosura|1
+(noun)|Xiphosura|order Xiphosura|animal order (generic term)
+order xyridales|1
+(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order (generic term)
+order zeomorphi|1
+(noun)|Zeomorphi|order Zeomorphi|animal order (generic term)
+order zygnemales|1
+(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order (generic term)
+order zygnematales|1
+(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order (generic term)
+ordered|4
+(adj)|consecutive (similar term)|sequent (similar term)|sequential (similar term)|serial (similar term)|successive (similar term)|disordered (antonym)
+(adj)|orderly|regulated|organized (similar term)
+(adj)|arranged|laid (similar term)|set (similar term)|placed (similar term)|disarranged (antonym)
+(adj)|coherent|consistent|logical|orderly|seamless (similar term)|logical (related term)|rational (related term)|incoherent (antonym)
+ordered series|1
+(noun)|scale|scale of measurement|graduated table|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+orderer|2
+(noun)|buyer (generic term)|purchaser (generic term)|emptor (generic term)|vendee (generic term)
+(noun)|systematizer|systematiser|systemizer|systemiser|systematist|organizer (generic term)|organiser (generic term)|arranger (generic term)
+ordering|2
+(noun)|order|ordination|arrangement (generic term)
+(noun)|order|organization (generic term)|organisation (generic term)
+orderliness|2
+(noun)|methodicalness|regularity (generic term)
+(noun)|order|condition (generic term)|status (generic term)|disorder (antonym)|disorderliness (antonym)
+orderly|8
+(adj)|law-abiding (similar term)|peaceful (similar term)|disorderly (antonym)
+(adj)|lawful|rule-governed|regular (similar term)
+(adj)|systematic|nonrandom (similar term)
+(adj)|coherent|consistent|logical|ordered|seamless (similar term)|logical (related term)|rational (related term)|incoherent (antonym)
+(adj)|tidy (similar term)
+(adj)|ordered|regulated|organized (similar term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)|soldier (generic term)
+(noun)|hospital attendant|attendant (generic term)|attender (generic term)|tender (generic term)
+orderly sergeant|1
+(noun)|first sergeant (generic term)|sergeant first class (generic term)
+ordinal|3
+(adj)|taxonomic group|taxonomic category|taxon (related term)
+(adj)|zero (similar term)|zeroth (similar term)|first (similar term)|1st (similar term)|second (similar term)|2nd (similar term)|2d (similar term)|third (similar term)|3rd (similar term)|tertiary (similar term)|fourth (similar term)|4th (similar term)|quaternary (similar term)|fifth (similar term)|5th (similar term)|sixth (similar term)|6th (similar term)|seventh (similar term)|7th (similar term)|eighth (similar term)|8th (similar term)|ninth (similar term)|9th (similar term)|tenth (similar term)|10th (similar term)|eleventh (similar term)|11th (similar term)|twelfth (similar term)|12th (similar term)|thirteenth (similar term)|13th (similar term)|fourteenth (similar term)|14th (similar term)|fifteenth (similar term)|15th (similar term)|sixteenth (similar term)|16th (similar term)|seventeenth (similar term)|17th (similar term)|eighteenth (similar term)|18th (similar term)|nineteenth (similar term)|19th (similar term)|umpteenth (similar term)|umteenth (similar term)|umptieth (similar term)|twentieth (similar term)|20th (similar term)|twenty-first (similar term)|21st (similar term)|twenty-second (similar term)|22nd (similar term)|twenty-third (similar term)|23rd (similar term)|twenty-fourth (similar term)|24th (similar term)|twenty-fifth (similar term)|25th (similar term)|twenty-sixth (similar term)|26th (similar term)|twenty-seventh (similar term)|27th (similar term)|twenty-eighth (similar term)|28th (similar term)|twenty-ninth (similar term)|29th (similar term)|thirtieth (similar term)|30th (similar term)|thirty-first (similar term)|31st (similar term)|thirty-second (similar term)|32nd (similar term)|thirty-third (similar term)|33rd (similar term)|thirty-fourth (similar term)|34th (similar term)|thirty-fifth (similar term)|35th (similar term)|thirty-sixth (similar term)|36th (similar term)|thirty-seventh (similar term)|37th (similar term)|thirty-eighth (similar term)|38th (similar term)|thirty-ninth (similar term)|39th (similar term)|fortieth (similar term)|40th (similar term)|forty-first (similar term)|41st (similar term)|forty-second (similar term)|42nd (similar term)|forty-third (similar term)|43rd (similar term)|forty-fourth (similar term)|44th (similar term)|forty-fifth (similar term)|45th (similar term)|forty-sixth (similar term)|46th (similar term)|forty-seventh (similar term)|47th (similar term)|forty-eighth (similar term)|48th (similar term)|forty-ninth (similar term)|49th (similar term)|fiftieth (similar term)|50th (similar term)|fifty-fifth (similar term)|55th (similar term)|sixtieth (similar term)|60th (similar term)|sixty-fourth (similar term)|64th (similar term)|sixty-fifth (similar term)|65th (similar term)|seventieth (similar term)|70th (similar term)|seventy-fifth (similar term)|75th (similar term)|eightieth (similar term)|80th (similar term)|eighty-fifth (similar term)|85th (similar term)|ninetieth (similar term)|90th (similar term)|ninety-fifth (similar term)|95th (similar term)|hundredth (similar term)|centesimal (similar term)|100th (similar term)|hundred-and-first (similar term)|101st (similar term)|hundred-and-fifth (similar term)|105th (similar term)|hundred-and-tenth (similar term)|110th (similar term)|hundred-and-fifteenth (similar term)|115th (similar term)|hundred-and-twentieth (similar term)|120th (similar term)|hundred-and-twenty-fifth (similar term)|125th (similar term)|hundred-and-thirtieth (similar term)|130th (similar term)|hundred-and-thirty-fifth (similar term)|135th (similar term)|hundred-and-fortieth (similar term)|140th (similar term)|hundred-and-forty-fifth (similar term)|145th (similar term)|hundred-and-fiftieth (similar term)|150th (similar term)|hundred-and-fifty-fifth (similar term)|155th (similar term)|hundred-and-sixtieth (similar term)|160th (similar term)|hundred-and-sixty-fifth (similar term)|165th (similar term)|hundred-and-seventieth (similar term)|170th (similar term)|hundred-and-seventy-fifth (similar term)|175th (similar term)|hundred-and-eightieth (similar term)|180th (similar term)|hundred-and-ninetieth (similar term)|190th (similar term)|two-hundredth (similar term)|200th (similar term)|three-hundredth (similar term)|300th (similar term)|four-hundredth (similar term)|400th (similar term)|five-hundredth (similar term)|500th (similar term)|thousandth (similar term)|1000th (similar term)|millionth (similar term)|billionth (similar term)|trillionth (similar term)|quadrillionth (similar term)|quintillionth (similar term)|nth (similar term)|n-th (similar term)|cardinal (antonym)
+(noun)|ordinal number|no.|number (generic term)
+ordinal number|1
+(noun)|ordinal|no.|number (generic term)
+ordinance|3
+(noun)|regulation|rule (generic term)|prescript (generic term)
+(noun)|legislative act (generic term)|statute (generic term)
+(noun)|ordination|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+ordinand|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+ordinarily|1
+(adv)|normally|usually|unremarkably|commonly|remarkably (antonym)
+ordinariness|1
+(noun)|mundaneness|mundanity|quality (generic term)|extraordinariness (antonym)
+ordinary|7
+(adj)|average (similar term)|fair (similar term)|mediocre (similar term)|middling (similar term)|trivial (similar term)|banausic (similar term)|characterless (similar term)|nondescript (similar term)|common (similar term)|commonplace (similar term)|cut-and-dried (similar term)|cut-and-dry (similar term)|everyday (similar term)|mundane (similar term)|quotidian (similar term)|routine (similar term)|unremarkable (similar term)|workaday (similar term)|indifferent (similar term)|so-so (similar term)|run-of-the-mill (similar term)|run-of-the-mine (similar term)|mine run (similar term)|unexceptional (similar term)|common (related term)|usual (related term)|extraordinary (antonym)
+(adj)|average|common (similar term)
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|condition (generic term)
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|ordinary bicycle|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+(noun)|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+ordinary annuity|1
+(noun)|annuity (generic term)|rente (generic term)
+ordinary bicycle|1
+(noun)|ordinary|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+ordinary care|1
+(noun)|due care|reasonable care|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+ordinary life insurance|1
+(noun)|whole life insurance|straight life insurance|life insurance (generic term)|life assurance (generic term)
+ordinary shares|1
+(noun)|common stock|common shares|stock (generic term)
+ordinate|3
+(noun)|Cartesian coordinate (generic term)
+(verb)|ordain|consecrate|order|invest (generic term)|vest (generic term)|enthrone (generic term)
+(verb)|align|coordinate|adjust (generic term)|set (generic term)|correct (generic term)
+ordination|3
+(noun)|status (generic term)|position (generic term)
+(noun)|ordering|order|arrangement (generic term)
+(noun)|ordinance|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+ordnance|2
+(noun)|munition|ordnance store|armament (generic term)
+(noun)|artillery|heavy weapon|gun|armament (generic term)
+ordnance store|1
+(noun)|munition|ordnance|armament (generic term)
+ordnance survey|1
+(noun)|Ordnance Survey|administrative unit (generic term)|administrative body (generic term)
+ordovician|1
+(noun)|Ordovician|Ordovician period|period (generic term)|geological period (generic term)
+ordovician period|1
+(noun)|Ordovician|Ordovician period|period (generic term)|geological period (generic term)
+ordure|1
+(noun)|fecal matter|faecal matter|feces|faeces|BM|stool|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+ore|2
+(noun)|mineral (generic term)
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+ore bed|1
+(noun)|bed (generic term)
+ore dressing|1
+(noun)|mineral extraction|mineral processing|mineral dressing|ore processing|beneficiation|extraction (generic term)
+ore processing|1
+(noun)|mineral extraction|mineral processing|mineral dressing|ore dressing|beneficiation|extraction (generic term)
+oread|1
+(noun)|Oread|nymph (generic term)
+oreamnos|1
+(noun)|Oreamnos|genus Oreamnos|mammal genus (generic term)
+oreamnos americanus|1
+(noun)|mountain goat|Rocky Mountain goat|Oreamnos americanus|goat antelope (generic term)
+orectolobidae|1
+(noun)|Orectolobidae|family Orectolobidae|fish family (generic term)
+orectolobus|1
+(noun)|Orectolobus|genus Orectolobus|fish genus (generic term)
+orectolobus barbatus|1
+(noun)|carpet shark|Orectolobus barbatus|shark (generic term)
+oregano|2
+(noun)|marjoram|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum (generic term)
+(noun)|marjoram|herb (generic term)
+oregon|1
+(noun)|Oregon|Beaver State|OR|American state (generic term)
+oregon alder|1
+(noun)|red alder|Oregon alder|Alnus rubra|alder (generic term)|alder tree (generic term)
+oregon ash|1
+(noun)|Oregon ash|Fraxinus latifolia|Fraxinus oregona|ash (generic term)|ash tree (generic term)
+oregon cedar|1
+(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar (generic term)|cedar tree (generic term)
+oregon crab apple|1
+(noun)|Oregon crab apple|Malus fusca|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+oregon fir|1
+(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+oregon grape|2
+(noun)|Oregon grape|Mahonia nervosa|shrub (generic term)|bush (generic term)
+(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+oregon holly grape|1
+(noun)|Oregon grape|Oregon holly grape|hollygrape|mountain grape|holly-leaves barberry|Mahonia aquifolium|shrub (generic term)|bush (generic term)
+oregon jargon|1
+(noun)|Chinook Jargon|Oregon Jargon|pidgin (generic term)
+oregon larch|1
+(noun)|western larch|western tamarack|Oregon larch|Larix occidentalis|larch (generic term)|larch tree (generic term)
+oregon lily|1
+(noun)|Columbia tiger lily|Oregon lily|Lilium columbianum|lily (generic term)
+oregon maple|1
+(noun)|Oregon maple|big-leaf maple|Acer macrophyllum|maple (generic term)
+oregon myrtle|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+oregon oak|1
+(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak (generic term)
+oregon pine|1
+(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+oregon white oak|1
+(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak (generic term)
+oregonian|1
+(noun)|Oregonian|Beaver|American (generic term)
+oreide|1
+(noun)|oroide|alloy (generic term)|metal (generic term)
+orelanism|1
+(noun)|Orelanism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+oreo|1
+(noun)|oreo cookie|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+oreo cookie|1
+(noun)|oreo|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+oreopteris|1
+(noun)|Oreopteris|genus Oreopteris|fern genus (generic term)
+oreopteris limbosperma|1
+(noun)|mountain fern|Oreopteris limbosperma|Dryopteris oreopteris|fern (generic term)
+oreortyx|1
+(noun)|Oreortyx|genus Oreortyx|bird genus (generic term)
+oreortyx picta palmeri|1
+(noun)|mountain quail|mountain partridge|Oreortyx picta palmeri|partridge (generic term)
+orestes|1
+(noun)|Orestes|mythical being (generic term)
+orff|1
+(noun)|Orff|Carl Orff|musician (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+organ|6
+(noun)|body part (generic term)
+(noun)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+(noun)|electric organ|electronic organ|Hammond organ|electronic instrument (generic term)
+(noun)|periodical (generic term)
+(noun)|pipe organ|wind instrument (generic term)|wind (generic term)
+(noun)|harmonium|reed organ|free-reed instrument (generic term)
+organ-grinder|1
+(noun)|showman (generic term)|promoter (generic term)|impresario (generic term)
+organ donor|1
+(noun)|donor (generic term)
+organ loft|1
+(noun)|gallery (generic term)
+organ of corti|1
+(noun)|organ of Corti|organ of hearing (generic term)
+organ of hearing|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+organ of speech|1
+(noun)|speech organ|vocal organ|organ (generic term)
+organ pipe|1
+(noun)|pipe|pipework|wind instrument (generic term)|wind (generic term)
+organ stop|1
+(noun)|organ pipe (generic term)|pipe (generic term)|pipework (generic term)
+organ transplant|1
+(noun)|transplant|transplantation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+organdie|1
+(noun)|organdy|muslin (generic term)
+organdy|1
+(noun)|organdie|muslin (generic term)
+organelle|1
+(noun)|cell organelle|cell organ|organ (generic term)
+organic|8
+(adj)|inorganic (antonym)
+(adj)|living thing|animate thing (related term)
+(adj)|integrated (similar term)|structured (similar term)|nonsynthetic (similar term)|inorganic (antonym)
+(adj)|functional (antonym)
+(adj)|wholesome (similar term)
+(adj)|healthful (similar term)
+(adj)|constituent|constitutional|constitutive|essential (similar term)
+(noun)|organic fertilizer|organic fertiliser|fertilizer (generic term)|fertiliser (generic term)|plant food (generic term)
+organic brain syndrome|1
+(noun)|mental abnormality (generic term)
+organic chemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+organic compound|1
+(noun)|compound (generic term)|chemical compound (generic term)
+organic disorder|1
+(noun)|disorder (generic term)|upset (generic term)|functional disorder (antonym)
+organic evolution|1
+(noun)|evolution|phylogeny|phylogenesis|organic process (generic term)|biological process (generic term)
+organic fertiliser|1
+(noun)|organic|organic fertilizer|fertilizer (generic term)|fertiliser (generic term)|plant food (generic term)
+organic fertilizer|1
+(noun)|organic|organic fertiliser|fertilizer (generic term)|fertiliser (generic term)|plant food (generic term)
+organic law|1
+(noun)|fundamental law|constitution|law (generic term)
+organic light-emitting diode|1
+(noun)|OLED|light-emitting diode (generic term)|LED (generic term)
+organic phenomenon|1
+(noun)|natural phenomenon (generic term)
+organic process|1
+(noun)|biological process|process (generic term)|physical process (generic term)
+organic structure|1
+(noun)|body|physical structure|natural object (generic term)
+organically|1
+(adv)|inorganically (antonym)
+organicism|1
+(noun)|scientific theory (generic term)
+organicistic|1
+(adj)|scientific theory (related term)
+organification|1
+(noun)|organic process (generic term)|biological process (generic term)
+organisation|7
+(noun)|arrangement|organization|system|structure (generic term)
+(noun)|administration|governance|governing body|establishment|brass|organization|body (generic term)
+(noun)|organization|social group (generic term)
+(noun)|organization|system|orderliness (generic term)|methodicalness (generic term)
+(noun)|organization|administration (generic term)|disposal (generic term)
+(noun)|organization|activity (generic term)
+(noun)|constitution|establishment|formation|organization|beginning (generic term)|start (generic term)|commencement (generic term)
+organisational|1
+(adj)|organizational|structure (related term)
+organise|6
+(verb)|organize|coordinate|arrange (generic term)|set up (generic term)
+(verb)|form|organize|make (generic term)|create (generic term)
+(verb)|unionize|unionise|organize|join (generic term)|fall in (generic term)|get together (generic term)
+(verb)|organize|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)|disorganise (antonym)|disorganize (antonym)
+(verb)|organize|prepare|devise|get up|machinate|initiate (generic term)|pioneer (generic term)
+(verb)|mastermind|engineer|direct|organize|orchestrate|plan (generic term)
+organised|1
+(adj)|organized|unionized|unionised|union (similar term)
+organiser|3
+(noun)|organizer|labor organizer|union representative (generic term)
+(noun)|organizer|arranger|thinker (generic term)
+(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organizer|electronic device (generic term)
+organism|2
+(noun)|being|living thing (generic term)|animate thing (generic term)
+(noun)|system (generic term)|scheme (generic term)
+organismal|1
+(adj)|organismic|system|scheme (related term)
+organismic|1
+(adj)|organismal|system|scheme (related term)
+organist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+organization|7
+(noun)|organisation|social group (generic term)
+(noun)|arrangement|organisation|system|structure (generic term)
+(noun)|administration|governance|governing body|establishment|brass|organisation|body (generic term)
+(noun)|constitution|establishment|formation|organisation|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|organisation|administration (generic term)|disposal (generic term)
+(noun)|organisation|activity (generic term)
+(noun)|organisation|system|orderliness (generic term)|methodicalness (generic term)
+organization chart|1
+(noun)|chart (generic term)
+organization expense|1
+(noun)|business expense (generic term)|trade expense (generic term)
+organization for the prohibition of chemical weapons|1
+(noun)|Organization for the Prohibition of Chemical Weapons|OPCW|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+organization man|1
+(noun)|employee (generic term)
+organization of american states|1
+(noun)|Organization of American States|OAS|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+organization of petroleum-exporting countries|1
+(noun)|Organization of Petroleum-Exporting Countries|OPEC|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)|oil cartel (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+organizational|1
+(adj)|organisational|structure (related term)
+organize|6
+(verb)|form|organise|make (generic term)|create (generic term)
+(verb)|organise|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)|disorganise (antonym)|disorganize (antonym)
+(verb)|mastermind|engineer|direct|organise|orchestrate|plan (generic term)
+(verb)|organise|coordinate|arrange (generic term)|set up (generic term)
+(verb)|organise|prepare|devise|get up|machinate|initiate (generic term)|pioneer (generic term)
+(verb)|unionize|unionise|organise|join (generic term)|fall in (generic term)|get together (generic term)
+organized|3
+(adj)|arranged (similar term)|configured (similar term)|designed (similar term)|corporate (similar term)|incorporated (similar term)|formed (similar term)|re-formed (similar term)|reorganized (similar term)|reorganised (similar term)|structured (related term)|unorganized (antonym)
+(adj)|methodical (similar term)|ordered (similar term)|orderly (similar term)|regulated (similar term)|well-conducted (similar term)|systematic (related term)|disorganized (antonym)
+(adj)|organised|unionized|unionised|union (similar term)
+organized crime|1
+(noun)|gangland|gangdom|social group (generic term)
+organized labor|1
+(noun)|labor (generic term)|labour (generic term)|working class (generic term)|proletariat (generic term)
+organized religion|1
+(noun)|religion|faith|institution (generic term)|establishment (generic term)
+organizer|3
+(noun)|organiser|arranger|thinker (generic term)
+(noun)|organiser|labor organizer|union representative (generic term)
+(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organiser|electronic device (generic term)
+organon|1
+(noun)|system (generic term)|system of rules (generic term)
+organophosphate|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+organophosphate nerve agent|1
+(noun)|nerve gas (generic term)|nerve agent (generic term)
+organs|1
+(noun)|variety meat|meat (generic term)
+organza|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+orgasm|1
+(noun)|climax|sexual climax|coming|consummation (generic term)
+orgiastic|2
+(adj)|sexy (similar term)
+(adj)|bacchanalian|bacchanal|bacchic|carousing|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+orgy|3
+(noun)|binge|splurge|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+(noun)|rite (generic term)|religious rite (generic term)
+(noun)|debauch|debauchery|saturnalia|riot|bacchanal|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+oriel|1
+(noun)|oriel window|bay window (generic term)|bow window (generic term)
+oriel window|1
+(noun)|oriel|bay window (generic term)|bow window (generic term)
+orient|6
+(adj)|eastern (similar term)
+(noun)|East|Orient|Asia (generic term)
+(noun)|eastern hemisphere|hemisphere (generic term)
+(verb)|point|lie (generic term)
+(verb)|orientate|decide (generic term)|make up one's mind (generic term)|determine (generic term)|disorient (antonym)
+(verb)|position (generic term)
+oriental|2
+(adj)|Asian|eastern (similar term)
+(noun)|Oriental|oriental person|Asian (generic term)|Asiatic (generic term)
+oriental alabaster|1
+(noun)|alabaster|onyx marble|Mexican onyx|calcite (generic term)
+oriental arborvitae|1
+(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae (generic term)
+oriental beetle|1
+(noun)|Oriental beetle|Asiatic beetle|Anomala orientalis|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+oriental bittersweet|1
+(noun)|Japanese bittersweet|Japan bittersweet|Celastrus orbiculatus|Celastric articulatus|vine (generic term)
+oriental black mushroom|1
+(noun)|shiitake|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+oriental bush cherry|1
+(noun)|flowering almond|Prunus japonica|almond tree (generic term)
+oriental cherry|1
+(noun)|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry (generic term)
+oriental cockroach|1
+(noun)|oriental roach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach (generic term)|roach (generic term)
+oriental garlic|1
+(noun)|garlic chive|Chinese chive|Oriental garlic|Allium tuberosum|alliaceous plant (generic term)
+oriental person|1
+(noun)|Oriental|Asian (generic term)|Asiatic (generic term)
+oriental plane|1
+(noun)|Platanus orientalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+oriental poppy|1
+(noun)|Papaver orientale|poppy (generic term)
+oriental roach|1
+(noun)|oriental cockroach|Asiatic cockroach|blackbeetle|Blatta orientalis|cockroach (generic term)|roach (generic term)
+oriental scops owl|1
+(noun)|Oriental scops owl|Otus sunia|scops owl (generic term)
+oriental sore|1
+(noun)|cutaneous leishmaniasis|Old World leishmaniasis|tropical sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+oriental spruce|1
+(noun)|Picea orientalis|spruce (generic term)
+oriental studies|1
+(noun)|Orientalism|Oriental Studies|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+orientalise|1
+(verb)|orientalize|change (generic term)|alter (generic term)|modify (generic term)|occidentalise (antonym)|occidentalize (antonym)
+orientalism|2
+(noun)|Orientalism|Oriental Studies|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+(noun)|quality (generic term)
+orientalist|1
+(noun)|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+orientalize|1
+(verb)|orientalise|change (generic term)|alter (generic term)|modify (generic term)|occidentalise (antonym)|occidentalize (antonym)
+orientate|1
+(verb)|orient|decide (generic term)|make up one's mind (generic term)|determine (generic term)|disorient (antonym)
+orientated|1
+(adj)|oriented|adjusted (similar term)|familiarized (similar term)|familiarised (similar term)|bound (similar term)|destined (similar term)|directed (similar term)|headed (similar term)|homeward (similar term)|homeward-bound (similar term)|minded (similar term)|orienting (related term)|orientating (related term)|unoriented (antonym)
+orientating|1
+(adj)|orienting|aligning (similar term)|positioning (similar term)|dimensioning (similar term)|familiarizing (similar term)|familiarising (similar term)|homing (similar term)|oriented (related term)|orientated (related term)|disorienting (antonym)
+orientation|6
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)
+(noun)|direction (generic term)
+(noun)|predilection|preference|predisposition (generic term)
+(noun)|self-awareness (generic term)
+(noun)|orientation course|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+orientation course|1
+(noun)|orientation|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+oriented|1
+(adj)|orientated|adjusted (similar term)|familiarized (similar term)|familiarised (similar term)|bound (similar term)|destined (similar term)|directed (similar term)|headed (similar term)|homeward (similar term)|homeward-bound (similar term)|minded (similar term)|orienting (related term)|orientating (related term)|unoriented (antonym)
+orienting|1
+(adj)|orientating|aligning (similar term)|positioning (similar term)|dimensioning (similar term)|familiarizing (similar term)|familiarising (similar term)|homing (similar term)|oriented (related term)|orientated (related term)|disorienting (antonym)
+orifice|1
+(noun)|opening|porta|passage (generic term)|passageway (generic term)
+oriflamme|2
+(noun)|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+(noun)|standard (generic term)
+origami|1
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+origanum|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+origanum dictamnus|1
+(noun)|dittany of crete|cretan dittany|crete dittany|hop marjoram|winter sweet|Origanum dictamnus|origanum (generic term)
+origanum majorana|1
+(noun)|sweet marjoram|knotted marjoram|Origanum majorana|Majorana hortensis|origanum (generic term)
+origanum vulgare|1
+(noun)|oregano|marjoram|pot marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum (generic term)
+origen|1
+(noun)|Origen|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|philosopher (generic term)
+origin|5
+(noun)|beginning|root|rootage|source|point (generic term)
+(noun)|descent|extraction|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+(noun)|origination|inception|beginning (generic term)
+(noun)|intersection (generic term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+original|6
+(adj)|first (similar term)
+(adj)|primary (similar term)
+(adj)|avant-garde (similar term)|daring (similar term)|freehand (similar term)|freehanded (similar term)|fresh (similar term)|new (similar term)|novel (similar term)|germinal (similar term)|originative (similar term)|seminal (similar term)|innovative (similar term)|innovational (similar term)|groundbreaking (similar term)|newfangled (similar term)|new (similar term)|underivative (similar term)|creative (related term)|originative (related term)|first (related term)|primary (related term)|unconventional (related term)|unoriginal (antonym)
+(adj)|underived (similar term)
+(noun)|master|master copy|creation (generic term)
+(noun)|archetype|pilot|model (generic term)|example (generic term)
+original sin|1
+(noun)|sin (generic term)|sinning (generic term)|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)|actual sin (antonym)
+originalism|1
+(noun)|belief (generic term)
+originality|2
+(noun)|ability (generic term)|power (generic term)
+(noun)|quality (generic term)|unoriginality (antonym)
+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 (generic term)
+(verb)|initiate|start|make (generic term)|create (generic term)|originate in (related term)
+(verb)|begin (generic term)|start (generic term)
+origination|2
+(noun)|origin|inception|beginning (generic term)
+(noun)|initiation|founding|foundation|institution|creation|innovation|introduction|instauration|beginning (generic term)|start (generic term)|commencement (generic term)
+origination fee|1
+(noun)|fee (generic term)
+originative|2
+(adj)|creative|fanciful (similar term)|notional (similar term)|fictive (similar term)|imaginative (similar term)|ingenious (similar term)|inventive (similar term)|yeasty (similar term)|original (related term)|productive (related term)|uncreative (antonym)
+(adj)|germinal|seminal|original (similar term)
+originator|1
+(noun)|conceiver|mastermind|creator (generic term)
+orinasal|1
+(noun)|orinasal phone|phone (generic term)|speech sound (generic term)|sound (generic term)
+orinasal phone|1
+(noun)|orinasal|phone (generic term)|speech sound (generic term)|sound (generic term)
+orinase|1
+(noun)|tolbutamide|Orinase|sulfonylurea (generic term)|hypoglycemic agent (generic term)|hypoglycaemic agent (generic term)
+orinoco|1
+(noun)|Orinoco|Orinoco River|river (generic term)
+orinoco river|1
+(noun)|Orinoco|Orinoco River|river (generic term)
+oriole|2
+(noun)|Old World oriole|oscine (generic term)|oscine bird (generic term)
+(noun)|New World oriole|American oriole|oscine (generic term)|oscine bird (generic term)
+oriolidae|1
+(noun)|Oriolidae|family Oriolidae|bird family (generic term)
+oriolus|1
+(noun)|Oriolus|genus Oriolus|bird genus (generic term)
+oriolus oriolus|1
+(noun)|golden oriole|Oriolus oriolus|Old World oriole (generic term)|oriole (generic term)
+orion|2
+(noun)|Orion|mythical being (generic term)
+(noun)|Orion|Hunter|constellation (generic term)|diffuse nebula (generic term)|gaseous nebula (generic term)
+orison|1
+(noun)|prayer|petition|request (generic term)|asking (generic term)
+orissa|1
+(noun)|Orissa|state (generic term)|province (generic term)
+orites|1
+(noun)|Orites|genus Orites|dicot genus (generic term)|magnoliopsid genus (generic term)
+orites excelsa|1
+(noun)|prickly ash|Orites excelsa|tree (generic term)
+oriya|2
+(noun)|Oriya|Indian (generic term)
+(noun)|Oriya|Magadhan (generic term)
+orizaba|1
+(noun)|Orizaba|city (generic term)|metropolis (generic term)|urban center (generic term)
+orkney islands|1
+(noun)|Orkney Islands|archipelago (generic term)
+orlando|1
+(noun)|Orlando|city (generic term)|metropolis (generic term)|urban center (generic term)
+orlando di lasso|1
+(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer (generic term)
+orleanais|1
+(noun)|Orleanais|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+orleanism|1
+(noun)|Orleanism|principle (generic term)
+orleanist|1
+(noun)|Orleanist|monarchist (generic term)|royalist (generic term)
+orleans|2
+(noun)|Orleans|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Orleans|siege of Orleans|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+orlon|1
+(noun)|Orlon|acrylic (generic term)
+orlop|1
+(noun)|orlop deck|fourth deck|deck (generic term)
+orlop deck|1
+(noun)|orlop|fourth deck|deck (generic term)
+orly|1
+(noun)|Orly|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+orly group|1
+(noun)|Armenian Secret Army for the Liberation of Armenia|ASALA|Orly Group|3rd October Organization|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ormandy|1
+(noun)|Ormandy|Eugene Ormandy|conductor (generic term)|music director (generic term)|director (generic term)
+ormazd|1
+(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity (generic term)
+ormer|1
+(noun)|sea-ear|Haliotis tuberculata|abalone (generic term)|ear-shell (generic term)
+ormolu|1
+(noun)|brass (generic term)
+ormosia|1
+(noun)|Ormosia|genus Ormosia|rosid dicot genus (generic term)
+ormosia coarctata|1
+(noun)|jumby bead|jumbie bead|Ormosia coarctata|necklace tree (generic term)
+ormosia monosperma|1
+(noun)|bead tree|jumby bean|jumby tree|Ormosia monosperma|necklace tree (generic term)
+ormuzd|1
+(noun)|Ormazd|Ormuzd|Ahura Mazda|Persian deity (generic term)
+ornament|3
+(noun)|decoration|ornamentation|artifact (generic term)|artefact (generic term)
+(verb)|decorate|adorn|grace|embellish|beautify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|deck (generic term)|adorn (generic term)|decorate (generic term)|grace (generic term)|embellish (generic term)|beautify (generic term)
+ornamental|2
+(adj)|cosmetic|decorative|nonfunctional (similar term)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+ornamentalism|1
+(noun)|practice (generic term)|pattern (generic term)
+ornamentalist|1
+(noun)|decorator|artist (generic term)|creative person (generic term)
+ornamentation|3
+(noun)|state (generic term)
+(noun)|decoration|ornament|artifact (generic term)|artefact (generic term)
+(noun)|embellishment|decoration (generic term)
+ornamented|1
+(adj)|embellished|ornate|adorned (similar term)|decorated (similar term)
+ornate|2
+(adj)|embellished|ornamented|adorned (similar term)|decorated (similar term)
+(adj)|flowery|rhetorical (similar term)
+ornateness|2
+(noun)|grandiosity|magniloquence|grandiloquence|rhetoric|expressive style (generic term)|style (generic term)
+(noun)|elaborateness|appearance (generic term)|visual aspect (generic term)
+orneriness|1
+(noun)|cussedness|contrariness (generic term)|perversity (generic term)|perverseness (generic term)
+ornery|1
+(adj)|cantankerous|crotchety|ill-natured (similar term)
+ornithine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+ornithischia|1
+(noun)|Ornithischia|order Ornithischia|animal order (generic term)
+ornithischian|1
+(noun)|ornithischian dinosaur|dinosaur (generic term)
+ornithischian dinosaur|1
+(noun)|ornithischian|dinosaur (generic term)
+ornithogalum|1
+(noun)|Ornithogalum|genus Ornithogalum|liliid monocot genus (generic term)
+ornithogalum pyrenaicum|1
+(noun)|bath asparagus|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem (generic term)
+ornithogalum thyrsoides|1
+(noun)|chincherinchee|wonder flower|Ornithogalum thyrsoides|star-of-Bethlehem (generic term)
+ornithogalum umbellatum|1
+(noun)|starflower|sleepy dick|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem (generic term)
+ornithological|1
+(adj)|zoology|zoological science (related term)
+ornithologist|1
+(noun)|bird watcher|zoologist (generic term)|animal scientist (generic term)
+ornithology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+ornithomimid|1
+(noun)|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+ornithomimida|1
+(noun)|Ornithomimida|suborder Ornithomimida|animal order (generic term)
+ornithopod|1
+(noun)|ornithopod dinosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+ornithopod dinosaur|1
+(noun)|ornithopod|ornithischian (generic term)|ornithischian dinosaur (generic term)
+ornithopoda|1
+(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order (generic term)
+ornithopter|1
+(noun)|orthopter|heavier-than-air craft (generic term)
+ornithorhynchidae|1
+(noun)|Ornithorhynchidae|family Ornithorhynchidae|mammal family (generic term)
+ornithorhynchus|1
+(noun)|Ornithorhynchus|genus Ornithorhynchus|mammal genus (generic term)
+ornithorhynchus anatinus|1
+(noun)|platypus|duckbill|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme (generic term)|egg-laying mammal (generic term)
+ornithosis|1
+(noun)|psittacosis|parrot fever|atypical pneumonia (generic term)|primary atypical pneumonia (generic term)|mycoplasmal pneumonia (generic term)
+orobanchaceae|1
+(noun)|Orobanchaceae|family Orobanchaceae|broomrape family|dicot family (generic term)|magnoliopsid family (generic term)
+orogeny|1
+(noun)|geological process (generic term)|geologic process (generic term)
+orography|1
+(noun)|orology|geology (generic term)
+oroide|1
+(noun)|oreide|alloy (generic term)|metal (generic term)
+orology|1
+(noun)|orography|geology (generic term)
+orono|1
+(noun)|Orono|town (generic term)
+orontium|1
+(noun)|Orontium|genus Orontium|monocot genus (generic term)|liliopsid genus (generic term)
+orontium aquaticum|1
+(noun)|golden club|Orontium aquaticum|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+oropharyngeal|1
+(adj)|cavity|bodily cavity|cavum (related term)
+oropharynx|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+orotund|2
+(adj)|bombastic|declamatory|large|tumid|turgid|rhetorical (similar term)
+(adj)|rotund|round|pear-shaped|full (similar term)
+orozco|1
+(noun)|Orozco|Jose Orozco|Jose Clemente Orozco|muralist (generic term)
+orphan|6
+(adj)|orphaned|unparented (similar term)|parentless (similar term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|line (generic term)
+(noun)|young (generic term)|offspring (generic term)
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+orphan site|1
+(noun)|toxic site (generic term)|toxic waste area (generic term)|Superfund site (generic term)
+orphanage|2
+(noun)|orphanhood|condition (generic term)
+(noun)|orphans' asylum|institution (generic term)
+orphaned|1
+(adj)|orphan|unparented (similar term)|parentless (similar term)
+orphanhood|1
+(noun)|orphanage|condition (generic term)
+orphans' asylum|1
+(noun)|orphanage|institution (generic term)
+orphenadrine|1
+(noun)|Norflex|muscle relaxant (generic term)
+orpheus|1
+(noun)|Orpheus|mythical being (generic term)
+orphic|2
+(adj)|Orphic|mythical being (related term)
+(adj)|mysterious|mystic|mystical|occult|secret|esoteric (similar term)
+orphrey|1
+(noun)|edging (generic term)
+orpiment|1
+(noun)|mineral (generic term)
+orpin|1
+(noun)|orpine|livelong|live-forever|Sedum telephium|sedum (generic term)
+orpine|1
+(noun)|orpin|livelong|live-forever|Sedum telephium|sedum (generic term)
+orpington|1
+(noun)|Orpington|chicken (generic term)|Gallus gallus (generic term)
+orr|1
+(noun)|Orr|Bobby Orr|Robert Orr|hockey player (generic term)|ice-hockey player (generic term)
+orrery|1
+(noun)|planetarium (generic term)
+orris|2
+(noun)|Florentine iris|Iris germanica florentina|Iris florentina|bearded iris (generic term)
+(noun)|orrisroot|root (generic term)
+orrisroot|1
+(noun)|orris|root (generic term)
+orson welles|1
+(noun)|Welles|Orson Welles|George Orson Welles|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+ortalis|1
+(noun)|Ortalis|genus Ortalis|bird genus (generic term)
+ortega|1
+(noun)|Ortega|Daniel Ortega|Daniel Ortega Saavedra|statesman (generic term)|solon (generic term)|national leader (generic term)
+ortega y gasset|1
+(noun)|Ortega y Gasset|Jose Ortega y Gasset|philosopher (generic term)
+orthicon|1
+(noun)|image orthicon|television-camera tube (generic term)|television pickup tube (generic term)
+orthilia|1
+(noun)|Orthilia|genus Orthilia|dilleniid dicot genus (generic term)
+orthoboric acid|1
+(noun)|boric acid|acid (generic term)
+orthochorea|1
+(noun)|chorea (generic term)
+orthochromatic film|1
+(noun)|film (generic term)|photographic film (generic term)
+orthoclase|1
+(noun)|feldspar (generic term)|felspar (generic term)
+orthodontia|1
+(noun)|orthodontics|orthodonture|dental orthopedics|dental orthopaedics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+orthodontic|1
+(adj)|dentistry|dental medicine|odontology (related term)
+orthodontic braces|1
+(noun)|brace|braces|dental appliance (generic term)
+orthodontic treatment|1
+(noun)|treatment (generic term)
+orthodontics|1
+(noun)|orthodontia|orthodonture|dental orthopedics|dental orthopaedics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+orthodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+orthodonture|1
+(noun)|orthodontics|orthodontia|dental orthopedics|dental orthopaedics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+orthodox|3
+(adj)|Orthodox|Jewish-Orthodox|monotheism (related term)
+(adj)|antiheretical (similar term)|canonic (similar term)|canonical (similar term)|sanctioned (similar term)|conforming (similar term)|conformist (similar term)|conventional (similar term)|established (similar term)|traditional (similar term)|unreformed (similar term)|conservative (related term)|standard (related term)|unorthodox (antonym)
+(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church (related term)
+orthodox catholic church|1
+(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church (generic term)
+orthodox church|1
+(noun)|Orthodox Church|Orthodox Catholic Church|Eastern Orthodox Church|Eastern Church|Eastern Orthodox|Catholic Church (generic term)
+orthodox jew|1
+(noun)|Orthodox Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+orthodox judaism|2
+(noun)|Orthodox Judaism|Jewish Orthodoxy|Judaism (generic term)|Hebraism (generic term)|Jewish religion (generic term)
+(noun)|Orthodox Judaism|Judaism (generic term)
+orthodox sleep|1
+(noun)|nonrapid eye movement sleep|NREM sleep|nonrapid eye movement|NREM|sleep (generic term)|slumber (generic term)
+orthodoxy|2
+(noun)|unoriginality (generic term)|unorthodoxy (antonym)
+(noun)|orientation (generic term)|unorthodoxy (antonym)
+orthoepist|1
+(noun)|phonologist (generic term)
+orthoepy|2
+(noun)|pronunciation|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|phonology (generic term)|phonemics (generic term)
+orthogonal|3
+(adj)|extraneous|immaterial|impertinent|irrelevant (similar term)
+(adj)|unrelated (similar term)
+(adj)|rectangular|perpendicular (similar term)
+orthogonal opposition|1
+(noun)|orthogonality|perpendicularity|opposition (generic term)
+orthogonality|2
+(noun)|perpendicularity|orthogonal opposition|opposition (generic term)
+(noun)|rectangularity (generic term)|oblongness (generic term)
+orthographic|1
+(adj)|writing (related term)
+orthography|1
+(noun)|writing system|writing (generic term)
+orthomorphic projection|1
+(noun)|conformal projection|map projection (generic term)
+orthomyxovirus|1
+(noun)|myxovirus (generic term)
+orthopaedic|1
+(adj)|orthopedic|orthopedical|medical science (related term)
+orthopaedics|1
+(noun)|orthopedics|medical science (generic term)
+orthopaedist|1
+(noun)|orthopedist|specialist (generic term)|medical specialist (generic term)
+orthopedic|1
+(adj)|orthopaedic|orthopedical|medical science (related term)
+orthopedical|1
+(adj)|orthopedic|orthopaedic|medical science (related term)
+orthopedics|1
+(noun)|orthopaedics|medical science (generic term)
+orthopedist|1
+(noun)|orthopaedist|specialist (generic term)|medical specialist (generic term)
+orthophosphate|1
+(noun)|phosphate|inorganic phosphate|salt (generic term)
+orthophosphoric acid|1
+(noun)|phosphoric acid|oxyacid (generic term)|oxygen acid (generic term)
+orthophosphorous acid|1
+(noun)|hypophosphorous acid|phosphorous acid|oxyacid (generic term)|oxygen acid (generic term)
+orthopnea|1
+(noun)|dyspnea (generic term)|dyspnoea (generic term)
+orthopristis|1
+(noun)|Orthopristis|genus Orthopristis|fish genus (generic term)
+orthopristis chrysopterus|1
+(noun)|pigfish|hogfish|Orthopristis chrysopterus|grunt (generic term)
+orthopter|1
+(noun)|ornithopter|heavier-than-air craft (generic term)
+orthoptera|1
+(noun)|Orthoptera|order Orthoptera|animal order (generic term)
+orthopteran|1
+(noun)|orthopterous insect|orthopteron|insect (generic term)
+orthopteron|1
+(noun)|orthopterous insect|orthopteran|insect (generic term)
+orthopterous insect|1
+(noun)|orthopteron|orthopteran|insect (generic term)
+orthoptic|1
+(adj)|sight|vision|visual sense|visual modality (related term)
+orthoptics|1
+(noun)|treatment (generic term)
+orthoptist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+orthoscope|1
+(noun)|ophthalmoscope (generic term)
+orthostatic|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+orthostatic hypotension|1
+(noun)|postural hypotension|hypotension (generic term)
+orthotomus|1
+(noun)|Orthotomus|genus Orthotomus|bird genus (generic term)
+orthotomus sutorius|1
+(noun)|tailorbird|Orthotomus sutorius|Old World warbler (generic term)|true warbler (generic term)
+orthotropous|1
+(adj)|campylotropous (antonym)
+orthotropous ovule|1
+(noun)|ovule (generic term)
+ortilis vetula macalli|1
+(noun)|Texas chachalaca|Ortilis vetula macalli|chachalaca (generic term)
+ortolan|1
+(noun)|ortolan bunting|Emberiza hortulana|bunting (generic term)
+ortolan bunting|1
+(noun)|ortolan|Emberiza hortulana|bunting (generic term)
+ortygan|1
+(noun)|wading bird (generic term)|wader (generic term)
+orudis|1
+(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+orudis kt|1
+(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+orumiyeh|1
+(noun)|Urmia|Orumiyeh|city (generic term)|metropolis (generic term)|urban center (generic term)
+oruvail|1
+(noun)|ketoprofen|Orudis|Orudis KT|Oruvail|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+orville wright|1
+(noun)|Wright|Orville Wright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+orwell|1
+(noun)|Orwell|George Orwell|Eric Blair|Eric Arthur Blair|writer (generic term)|author (generic term)
+orwellian|1
+(adj)|Orwellian|writer|author (related term)
+orycteropodidae|1
+(noun)|Orycteropodidae|family Orycteropodidae|mammal family (generic term)
+orycteropus|1
+(noun)|Orycteropus|genus Orycteropus|mammal genus (generic term)
+orycteropus afer|1
+(noun)|aardvark|ant bear|anteater|Orycteropus afer|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+oryctolagus|1
+(noun)|Oryctolagus|genus Oryctolagus|mammal genus (generic term)
+oryctolagus cuniculus|1
+(noun)|European rabbit|Old World rabbit|Oryctolagus cuniculus|rabbit (generic term)|coney (generic term)|cony (generic term)
+oryx|1
+(noun)|pasang|antelope (generic term)
+oryx gazella|1
+(noun)|gemsbok|gemsbuck|Oryx gazella|oryx (generic term)|pasang (generic term)
+oryza|1
+(noun)|Oryza|genus Oryza|monocot genus (generic term)|liliopsid genus (generic term)
+oryza sativa|1
+(noun)|cultivated rice|Oryza sativa|rice (generic term)
+oryzomys|1
+(noun)|Oryzomys|genus Oryzomys|mammal genus (generic term)
+oryzomys palustris|1
+(noun)|rice rat|Oryzomys palustris|rat (generic term)
+oryzopsis|1
+(noun)|Oryzopsis|genus Oryzopsis|monocot genus (generic term)|liliopsid genus (generic term)
+oryzopsis hymenoides|1
+(noun)|mountain rice|silkgrass|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass (generic term)|rice grass (generic term)
+oryzopsis miliacea|1
+(noun)|smilo|smilo grass|Oryzopsis miliacea|ricegrass (generic term)|rice grass (generic term)
+orzo|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+os|5
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+(noun)|osmium|Os|atomic number 76|metallic element (generic term)|metal (generic term)
+(noun)|operating system|OS|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|oculus sinister|OS|eye (generic term)|oculus (generic term)|optic (generic term)
+(noun)|bone|connective tissue (generic term)
+os breve|1
+(noun)|short bone|bone (generic term)|os (generic term)
+os capitatum|1
+(noun)|capitate|capitate bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os frontale|1
+(noun)|frontal bone|forehead|membrane bone (generic term)
+os hamatum|1
+(noun)|hamate|hamate bone|unciform bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os hyoideum|1
+(noun)|hyoid|hyoid bone|bone (generic term)|os (generic term)
+os ischii|1
+(noun)|ischium|ischial bone|bone (generic term)|os (generic term)
+os longum|1
+(noun)|long bone|bone (generic term)|os (generic term)
+os lunatum|1
+(noun)|lunate bone|semilunar bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os nasale|1
+(noun)|nasal|nasal bone|bone (generic term)|os (generic term)
+os palatinum|1
+(noun)|palatine|palatine bone|bone (generic term)|os (generic term)
+os pisiforme|1
+(noun)|pisiform|pisiform bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os pubis|1
+(noun)|pubis|pubic bone|bone (generic term)|os (generic term)
+os scaphoideum|1
+(noun)|scaphoid bone|navicular|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os sesamoideum|1
+(noun)|sesamoid bone|sesamoid|bone (generic term)|os (generic term)
+os sphenoidale|1
+(noun)|sphenoid bone|sphenoid|bone (generic term)|os (generic term)
+os tarsi fibulare|1
+(noun)|heelbone|calcaneus|bone (generic term)|os (generic term)
+os temporale|1
+(noun)|temporal bone|bone (generic term)|os (generic term)
+os trapezium|1
+(noun)|trapezium|trapezium bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os trapezoideum|1
+(noun)|trapezoid|trapezoid bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os triquetrum|1
+(noun)|triquetral|triquetral bone|cuneiform bone|pyramidal bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+os zygomaticum|1
+(noun)|cheekbone|zygomatic bone|zygomatic|malar|malar bone|jugal bone|bone (generic term)|os (generic term)
+osage|2
+(noun)|Osage|Osage River|river (generic term)
+(noun)|Osage|Dhegiha (generic term)
+osage orange|1
+(noun)|bow wood|mock orange|Maclura pomifera|angiospermous yellowwood (generic term)
+osage river|1
+(noun)|Osage|Osage River|river (generic term)
+osaka|1
+(noun)|Osaka|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+osaka bay|1
+(noun)|Osaka Bay|bay (generic term)|embayment (generic term)
+osama bin laden|1
+(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist (generic term)
+osasco|1
+(noun)|Osasco|city (generic term)|metropolis (generic term)|urban center (generic term)
+osborne|1
+(noun)|Osborne|John Osborne|John James Osborne|dramatist (generic term)|playwright (generic term)
+oscan|2
+(noun)|Oscan|Italian (generic term)
+(noun)|Oscan|Osco-Umbrian (generic term)
+oscan-speaking|1
+(adj)|Oscan-speaking|communicative (similar term)|communicatory (similar term)
+oscar|1
+(noun)|Academy Award|Oscar|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+oscar fingal o'flahertie wills wilde|1
+(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+oscar hammerstein|1
+(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist (generic term)|lyrist (generic term)
+oscar hammerstein ii|1
+(noun)|Hammerstein|Oscar Hammerstein|Oscar Hammerstein II|lyricist (generic term)|lyrist (generic term)
+oscar palmer robertson|1
+(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard (generic term)
+oscar robertson|1
+(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard (generic term)
+oscar wilde|1
+(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+oscheocele|1
+(noun)|oscheocoele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+oscheocoele|1
+(noun)|oscheocele|swelling (generic term)|puffiness (generic term)|lump (generic term)
+oscillate|2
+(verb)|hover|vibrate|vacillate|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|vibrate|swing (generic term)|sway (generic term)
+oscillating|1
+(adj)|oscillatory|periodic (similar term)|periodical (similar term)
+oscillation|3
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|vibration|wave (generic term)|undulation (generic term)
+(noun)|cycle|periodic event (generic term)|recurrent event (generic term)
+oscillator|1
+(noun)|generator (generic term)
+oscillatoriaceae|1
+(noun)|Oscillatoriaceae|family Oscillatoriaceae|bacteria family (generic term)
+oscillatory|1
+(adj)|oscillating|periodic (similar term)|periodical (similar term)
+oscillogram|1
+(noun)|recording (generic term)
+oscillograph|1
+(noun)|recorder (generic term)|recording equipment (generic term)|recording machine (generic term)
+oscilloscope|1
+(noun)|scope|cathode-ray oscilloscope|CRO|electronic equipment (generic term)
+oscine|2
+(adj)|passerine|passeriform bird (related term)
+(noun)|oscine bird|passerine (generic term)|passeriform bird (generic term)
+oscine bird|1
+(noun)|oscine|passerine (generic term)|passeriform bird (generic term)
+oscines|1
+(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order (generic term)
+oscitance|2
+(noun)|oscitancy|sleepiness (generic term)|drowsiness (generic term)|somnolence (generic term)|dullness (generic term)|obtuseness (generic term)
+(noun)|yawn|yawning|oscitancy|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+oscitancy|2
+(noun)|oscitance|sleepiness (generic term)|drowsiness (generic term)|somnolence (generic term)|dullness (generic term)|obtuseness (generic term)
+(noun)|yawn|yawning|oscitance|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+oscitant|1
+(adj)|drowsy|yawning|inattentive (similar term)
+osco-umbrian|1
+(noun)|Osco-Umbrian|Italic (generic term)|Italic language (generic term)
+osculate|3
+(verb)|be (generic term)
+(verb)|share (generic term)
+(verb)|kiss|buss|touch (generic term)
+osculating circle|1
+(noun)|circle of curvature|circle (generic term)
+osculation|2
+(noun)|contact (generic term)
+(noun)|kiss|buss|touch (generic term)|touching (generic term)
+osculator|1
+(noun)|kisser|lover (generic term)
+osha|1
+(noun)|Occupational Safety and Health Administration|OSHA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+osier|2
+(noun)|withe (generic term)|withy (generic term)
+(noun)|willow (generic term)|willow tree (generic term)
+osip emilevich mandelstam|1
+(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet (generic term)
+osip mandelstam|1
+(noun)|Mandelstam|Osip Mandelstam|Osip Emilevich Mandelstam|Mandelshtam|poet (generic term)
+osiris|1
+(noun)|Osiris|Egyptian deity (generic term)
+oslo|1
+(noun)|Oslo|Christiania|capital of Norway|national capital (generic term)|port (generic term)
+osman i|1
+(noun)|Osman I|Othman I|emir (generic term)|amir (generic term)|emeer (generic term)|ameer (generic term)
+osmanli|1
+(noun)|Ottoman|Ottoman Turk|Osmanli|Turk (generic term)
+osmanthus|1
+(noun)|Osmanthus|genus Osmanthus|dicot genus (generic term)|magnoliopsid genus (generic term)
+osmanthus americanus|1
+(noun)|devilwood|American olive|Osmanthus americanus|tree (generic term)
+osmeridae|1
+(noun)|Osmeridae|family Osmeridae|fish family (generic term)
+osmerus|1
+(noun)|Osmerus|genus Osmerus|fish genus (generic term)
+osmerus eperlanus|1
+(noun)|sparling|European smelt|Osmerus eperlanus|smelt (generic term)
+osmerus mordax|1
+(noun)|rainbow smelt|Osmerus mordax|smelt (generic term)
+osmiridium|1
+(noun)|iridosmine|mineral (generic term)
+osmitrol|1
+(noun)|mannitol|Osmitrol|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+osmium|1
+(noun)|Os|atomic number 76|metallic element (generic term)|metal (generic term)
+osmoreceptor|1
+(noun)|end organ (generic term)
+osmosis|1
+(noun)|diffusion (generic term)
+osmotic|1
+(adj)|diffusion (related term)
+osmotic pressure|1
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+osmund|1
+(noun)|flowering fern|fern (generic term)
+osmunda cinnamonea|1
+(noun)|cinnamon fern|fiddlehead|fiddlehead fern|Osmunda cinnamonea|flowering fern (generic term)|osmund (generic term)
+osmunda clatonia|1
+(noun)|interrupted fern|Osmunda clatonia|flowering fern (generic term)|osmund (generic term)
+osmunda regalis|1
+(noun)|royal fern|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+osmundaceae|1
+(noun)|Osmundaceae|family Osmundaceae|fern family (generic term)
+osprey|1
+(noun)|fish hawk|fish eagle|sea eagle|Pandion haliaetus|hawk (generic term)
+osseous|1
+(adj)|osteal|bony|animal material (related term)
+osseous labyrinth|1
+(noun)|bony labyrinth|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+osseous tissue|1
+(noun)|bone|animal material (generic term)
+ossete|1
+(noun)|Ossete|Iranian (generic term)|Iranian language (generic term)
+ossicle|1
+(noun)|bonelet|ossiculum|bone (generic term)|os (generic term)
+ossicular|1
+(adj)|ossiculate|bone|os (related term)
+ossiculate|1
+(adj)|ossicular|bone|os (related term)
+ossiculum|1
+(noun)|ossicle|bonelet|bone (generic term)|os (generic term)
+ossiferous|1
+(adj)|connective tissue (related term)
+ossification|4
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|calcification (generic term)
+(noun)|human process (generic term)
+(noun)|conformity|conventionality (generic term)|convention (generic term)|conventionalism (generic term)
+ossified|2
+(adj)|hard (similar term)
+(adj)|fossilized|fossilised|inflexible (similar term)
+ossify|3
+(verb)|change state (generic term)|turn (generic term)
+(verb)|rigidify|petrify|stiffen (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+osso buco|1
+(noun)|dish (generic term)
+ossuary|1
+(noun)|receptacle (generic term)
+ostariophysi|1
+(noun)|Ostariophysi|order Ostariophysi|soft-finned fish (generic term)|malacopterygian (generic term)
+osteal|2
+(adj)|connective tissue (related term)
+(adj)|osseous|bony|animal material (related term)
+osteichthyes|1
+(noun)|Osteichthyes|class Osteichthyes|class (generic term)
+osteitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+osteitis deformans|1
+(noun)|Paget's disease|osteitis (generic term)
+ostensible|2
+(adj)|apparent|seeming|superficial (similar term)
+(adj)|ostensive|counterfeit (similar term)|imitative (similar term)
+ostensibly|1
+(adv)|apparently|seemingly|on the face of it
+ostensive|2
+(adj)|instructive (similar term)|informative (similar term)
+(adj)|ostensible|counterfeit (similar term)|imitative (similar term)
+ostensive definition|1
+(noun)|definition (generic term)
+ostentate|1
+(verb)|flaunt|flash|show off|swank|expose (generic term)|exhibit (generic term)|display (generic term)
+ostentation|3
+(noun)|fanfare|flash|display (generic term)
+(noun)|ostentatiousness|pomposity|pompousness|pretentiousness|puffiness|splashiness|inflation|inelegance (generic term)
+(noun)|pretentiousness (generic term)|pretension (generic term)|largeness (generic term)
+ostentatious|2
+(adj)|pretentious|flaunty (similar term)|showy (similar term)|splashy (similar term)|unostentatious (antonym)
+(adj)|pretentious|kitsch|tasteless (similar term)
+ostentatiously|1
+(adv)|showily|with ostentation
+ostentatiousness|1
+(noun)|ostentation|pomposity|pompousness|pretentiousness|puffiness|splashiness|inflation|inelegance (generic term)
+osteoarthritis|1
+(noun)|degenerative arthritis|degenerative joint disease|arthritis (generic term)
+osteoblast|1
+(noun)|bone-forming cell|embryonic cell (generic term)|formative cell (generic term)
+osteoblastoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+osteochondroma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+osteoclasis|1
+(noun)|treatment (generic term)
+osteoclast|1
+(noun)|bone cell (generic term)
+osteocyte|1
+(noun)|bone cell (generic term)
+osteodystrophy|1
+(noun)|dystrophy (generic term)
+osteogenesis imperfecta|1
+(noun)|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)
+osteogenic sarcoma|1
+(noun)|osteosarcoma|sarcoma (generic term)
+osteologer|1
+(noun)|osteologist|anatomist (generic term)
+osteologist|1
+(noun)|osteologer|anatomist (generic term)
+osteology|1
+(noun)|anatomy (generic term)|general anatomy (generic term)
+osteolysis|1
+(noun)|lysis (generic term)
+osteoma|1
+(noun)|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+osteomalacia|1
+(noun)|malacia (generic term)
+osteomyelitis|1
+(noun)|osteitis (generic term)
+osteopath|1
+(noun)|osteopathist|therapist (generic term)|healer (generic term)
+osteopathist|1
+(noun)|osteopath|therapist (generic term)|healer (generic term)
+osteopathy|1
+(noun)|treatment (generic term)
+osteopetrosis|1
+(noun)|Albers-Schonberg disease|marble bones disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+osteophyte|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+osteoporosis|1
+(noun)|pathology (generic term)
+osteosarcoma|1
+(noun)|osteogenic sarcoma|sarcoma (generic term)
+osteosclerosis|1
+(noun)|sclerosis (generic term)|induration (generic term)
+osteosclerosis congenita|1
+(noun)|achondroplasia|achondroplasty|chondrodystrophy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+osteostracan|1
+(noun)|cephalaspid|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+osteostraci|1
+(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order (generic term)
+osteotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+ostiarius|1
+(noun)|doorkeeper|ostiary|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+ostiary|2
+(noun)|doorkeeper|ostiarius|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+(noun)|doorkeeper|doorman|door guard|hall porter|porter|gatekeeper|guard (generic term)
+ostinato|1
+(noun)|phrase (generic term)|musical phrase (generic term)
+ostiole|1
+(noun)|pore (generic term)
+ostler|1
+(noun)|stableman|stableboy|groom|hostler|hired hand (generic term)|hand (generic term)|hired man (generic term)
+ostomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+ostraciidae|1
+(noun)|Ostraciidae|family Ostraciidae|family Ostraciontidae|fish family (generic term)
+ostracise|2
+(verb)|banish|ban|ostracize|shun|cast out|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|ostracize|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)
+ostracism|2
+(noun)|banishment|Coventry|exclusion (generic term)
+(noun)|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+ostracize|2
+(verb)|banish|ban|ostracise|shun|cast out|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|ostracise|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)
+ostracod|1
+(noun)|seed shrimp|mussel shrimp|crustacean (generic term)
+ostracoda|1
+(noun)|Ostracoda|subclass Ostracoda|class (generic term)
+ostracoderm|1
+(noun)|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+ostracodermi|1
+(noun)|Ostracodermi|order Ostracodermi|animal order (generic term)
+ostrava|1
+(noun)|Ostrava|city (generic term)|metropolis (generic term)|urban center (generic term)
+ostrea|1
+(noun)|Ostrea|genus Ostrea|mollusk genus (generic term)
+ostrea gigas|1
+(noun)|Japanese oyster|Ostrea gigas|oyster (generic term)
+ostreidae|1
+(noun)|Ostreidae|family Ostreidae|mollusk family (generic term)
+ostrich|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Struthio camelus|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+ostrich-like|1
+(adj)|animal (similar term)
+ostrich fern|1
+(noun)|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+ostrogoth|1
+(noun)|Ostrogoth|Goth (generic term)
+ostrya|1
+(noun)|Ostrya|genus Ostrya|hamamelid dicot genus (generic term)
+ostrya carpinifolia|1
+(noun)|Old World hop hornbeam|Ostrya carpinifolia|hop hornbeam (generic term)
+ostrya virginiana|1
+(noun)|Eastern hop hornbeam|ironwood|ironwood tree|Ostrya virginiana|hop hornbeam (generic term)
+ostryopsis|1
+(noun)|Ostryopsis|genus Ostryopsis|hamamelid dicot genus (generic term)
+ostwald|1
+(noun)|Ostwald|Wilhelm Ostwald|chemist (generic term)
+ostwald's theory of indicators|1
+(noun)|theory of indicators|Ostwald's theory of indicators|scientific theory (generic term)
+ostyak|2
+(noun)|Ostyak|Khanty|Russian (generic term)
+(noun)|Khanty|Ostyak|Ugric (generic term)|Ugrian (generic term)
+ostyak-samoyed|2
+(noun)|Selkup|Ostyak-Samoyed|Russian (generic term)
+(noun)|Selkup|Ostyak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+oswald|1
+(noun)|Oswald|Lee Harvey Oswald|assassin (generic term)|assassinator (generic term)|bravo (generic term)
+oswald spengler|1
+(noun)|Spengler|Oswald Spengler|philosopher (generic term)
+oswald veblen|1
+(noun)|Veblen|Oswald Veblen|mathematician (generic term)
+oswego tea|1
+(noun)|bee balm|beebalm|bergamot mint|Monarda didyma|monarda (generic term)|wild bergamot (generic term)
+otaheite arrowroot|1
+(noun)|Otaheite arrowroot|Otaheite arrowroot starch|starch (generic term)|amylum (generic term)
+otaheite arrowroot starch|1
+(noun)|Otaheite arrowroot|Otaheite arrowroot starch|starch (generic term)|amylum (generic term)
+otalgia|1
+(noun)|earache|ache (generic term)|aching (generic term)
+otaria|1
+(noun)|Otaria|genus Otaria|mammal genus (generic term)
+otaria byronia|1
+(noun)|South American sea lion|Otaria Byronia|sea lion (generic term)
+otariidae|1
+(noun)|Otariidae|family Otariidae|mammal family (generic term)
+otc|1
+(adj)|over-the-counter|unlisted (similar term)
+otc market|1
+(noun)|over-the-counter market|OTC market|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+otc security|1
+(noun)|unlisted security|over the counter security|OTC security|security (generic term)|certificate (generic term)|listed security (antonym)
+otc stock|1
+(noun)|over the counter stock|OTC stock|unlisted stock|unlisted security (generic term)|over the counter security (generic term)|OTC security (generic term)
+othello|1
+(noun)|Othello|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+other|4
+(adj)|different (similar term)|another (similar term)|some other (similar term)|different (similar term)|else (similar term)|new (similar term)|opposite (similar term)|opposite (similar term)|opposite (similar term)|otherwise (similar term)|separate (related term)|same (antonym)
+(adj)|past (similar term)
+(adj)|early|former|past (similar term)
+(adj)|strange (similar term)|unusual (similar term)
+other than|1
+(adv)|differently|otherwise
+otherness|1
+(noun)|distinctness|separateness|difference (generic term)
+otherwise|2
+(adj)|other (similar term)
+(adv)|differently|other than
+otherworld|1
+(noun)|abstraction (generic term)
+otherworldliness|1
+(noun)|spirituality|spiritualism|spiritism|inwardness (generic term)|worldliness (antonym)
+otherworldly|1
+(adj)|nonnatural|preternatural|transcendental|supernatural (similar term)
+othman i|1
+(noun)|Osman I|Othman I|emir (generic term)|amir (generic term)|emeer (generic term)|ameer (generic term)
+otho|1
+(noun)|Urban II|Odo|Odo of Lagery|Otho|Otho of Lagery|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+otho i|1
+(noun)|Otto I|Otho I|Otto the Great|King of the Germans (generic term)|Holy Roman Emperor (generic term)
+otho of lagery|1
+(noun)|Urban II|Odo|Odo of Lagery|Otho|Otho of Lagery|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+othonna|1
+(noun)|shrub (generic term)|bush (generic term)
+otic|1
+(adj)|auricular|cartilaginous structure (related term)|sense organ|sensory receptor|receptor (related term)
+otic ganglion|1
+(noun)|otoganglion|autonomic ganglion (generic term)
+otides|1
+(noun)|Otides|suborder Otides|animal order (generic term)
+otididae|1
+(noun)|Otididae|family Otididae|bird family (generic term)
+otiose|3
+(adj)|pointless|superfluous|wasted|worthless (similar term)
+(adj)|futile|ineffectual|unavailing|useless (similar term)
+(adj)|faineant|indolent|lazy|slothful|work-shy|idle (similar term)
+otis|2
+(noun)|Otis|Elisha Graves Otis|inventor (generic term)|discoverer (generic term)|artificer (generic term)|industrialist (generic term)
+(noun)|Otis|genus Otis|bird genus (generic term)
+otis skinner|1
+(noun)|Skinner|Otis Skinner|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+otis tarda|1
+(noun)|great bustard|Otis tarda|bustard (generic term)
+otitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+otitis externa|1
+(noun)|otitis (generic term)
+otitis interna|1
+(noun)|labyrinthitis|otitis (generic term)
+otitis media|1
+(noun)|otitis (generic term)
+oto|2
+(noun)|Oto|Otoe|Sioux (generic term)|Siouan (generic term)
+(noun)|Oto|Otoe|Chiwere (generic term)
+otoe|2
+(noun)|Oto|Otoe|Sioux (generic term)|Siouan (generic term)
+(noun)|Oto|Otoe|Chiwere (generic term)
+otoganglion|1
+(noun)|otic ganglion|autonomic ganglion (generic term)
+otolaryngologist|1
+(noun)|ENT man|ear-nose-and-throat doctor|otorhinolaryngologist|rhinolaryngologist|specialist (generic term)|medical specialist (generic term)
+otolaryngology|1
+(noun)|rhinolaryngology|otorhinolaryngology|medicine (generic term)|medical specialty (generic term)
+otologist|1
+(noun)|ear doctor|ear specialist|specialist (generic term)|medical specialist (generic term)
+otology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+otoplasty|1
+(noun)|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+otorhinolaryngologist|1
+(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|rhinolaryngologist|specialist (generic term)|medical specialist (generic term)
+otorhinolaryngology|1
+(noun)|rhinolaryngology|otolaryngology|medicine (generic term)|medical specialty (generic term)
+otorrhea|1
+(noun)|pathology (generic term)
+otosclerosis|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+otoscope|1
+(noun)|auriscope|auroscope|medical instrument (generic term)
+ototoxic|1
+(adj)|toxic (similar term)
+ottar|1
+(noun)|attar|atar|athar|essential oil (generic term)|volatile oil (generic term)
+ottava rima|1
+(noun)|stanza (generic term)
+ottawa|3
+(noun)|Ottawa|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Outaouais|Ottawa|Ottawa river|river (generic term)
+(noun)|Ottawa|Canadian capital|capital of Canada|national capital (generic term)
+ottawa river|1
+(noun)|Outaouais|Ottawa|Ottawa river|river (generic term)
+otter|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+otter hound|1
+(noun)|otterhound|hound (generic term)|hound dog (generic term)
+otter shrew|1
+(noun)|potamogale|Potamogale velox|insectivore (generic term)
+otterhound|1
+(noun)|otter hound|hound (generic term)|hound dog (generic term)
+ottmar mergenthaler|1
+(noun)|Mergenthaler|Ottmar Mergenthaler|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+otto frisch|1
+(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist (generic term)
+otto fritz meyerhof|1
+(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist (generic term)
+otto hahn|1
+(noun)|Hahn|Otto Hahn|chemist (generic term)
+otto heinrich warburg|1
+(noun)|Warburg|Otto Heinrich Warburg|biochemist (generic term)
+otto i|1
+(noun)|Otto I|Otho I|Otto the Great|King of the Germans (generic term)|Holy Roman Emperor (generic term)
+otto jespersen|1
+(noun)|Jespersen|Otto Jespersen|Jens Otto Harry Jespersen|linguist (generic term)|linguistic scientist (generic term)
+otto loewi|1
+(noun)|Loewi|Otto Loewi|pharmacologist (generic term)|pharmaceutical chemist (generic term)
+otto meyerhof|1
+(noun)|Meyerhof|Otto Meyerhof|Otto Fritz Meyerhof|biochemist (generic term)
+otto neumann sverdrup|1
+(noun)|Sverdrup|Otto Neumann Sverdrup|explorer (generic term)|adventurer (generic term)
+otto robert frisch|1
+(noun)|Frisch|Otto Frisch|Otto Robert Frisch|nuclear physicist (generic term)
+otto the great|1
+(noun)|Otto I|Otho I|Otto the Great|King of the Germans (generic term)|Holy Roman Emperor (generic term)
+otto von bismarck|1
+(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman (generic term)|solon (generic term)|national leader (generic term)
+otto wagner|1
+(noun)|Wagner|Otto Wagner|architect (generic term)|designer (generic term)
+ottoman|5
+(adj)|Ottoman|empire|imperium (related term)
+(noun)|Ottoman|Ottoman Turk|Osmanli|Turk (generic term)
+(noun)|Ottoman|Ottoman dynasty|dynasty (generic term)
+(noun)|pouf|pouffe|puff|hassock|seat (generic term)
+(noun)|footstool|footrest|tuffet|stool (generic term)
+ottoman dynasty|1
+(noun)|Ottoman|Ottoman dynasty|dynasty (generic term)
+ottoman empire|1
+(noun)|Ottoman Empire|Turkish Empire|empire (generic term)|imperium (generic term)
+ottoman turk|1
+(noun)|Ottoman|Ottoman Turk|Osmanli|Turk (generic term)
+ottorino respighi|1
+(noun)|Respighi|Ottorino Respighi|composer (generic term)
+ottumwa|1
+(noun)|Ottumwa|town (generic term)
+otus|1
+(noun)|Otus|genus Otus|bird genus (generic term)
+otus asio|1
+(noun)|screech owl|Otus asio|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+otus scops|1
+(noun)|Old World scops owl|Otus scops|scops owl (generic term)
+otus sunia|1
+(noun)|Oriental scops owl|Otus sunia|scops owl (generic term)
+ouachita|1
+(noun)|Ouachita|Ouachita River|river (generic term)
+ouachita river|1
+(noun)|Ouachita|Ouachita River|river (generic term)
+oubliette|1
+(noun)|dungeon (generic term)
+ouguiya|1
+(noun)|Mauritanian monetary unit (generic term)
+ouija|1
+(noun)|Ouija|Ouija board|board (generic term)|gameboard (generic term)
+ouija board|1
+(noun)|Ouija|Ouija board|board (generic term)|gameboard (generic term)
+oujda|1
+(noun)|Oujda|city (generic term)|metropolis (generic term)|urban center (generic term)
+ounce|3
+(noun)|troy ounce|apothecaries' ounce|apothecaries' unit (generic term)|apothecaries' weight (generic term)|troy unit (generic term)
+(noun)|oz.|avoirdupois unit (generic term)
+(noun)|snow leopard|Panthera uncia|big cat (generic term)|cat (generic term)
+our lady's bedstraw|1
+(noun)|yellow bedstraw|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw (generic term)
+our lady's mild thistle|1
+(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+our lord's candle|1
+(noun)|Our Lord's candle|Yucca whipplei|yucca (generic term)
+ouranopithecus|1
+(noun)|Ouranopithecus|genus Ouranopithecus|mammal genus (generic term)
+ouranos|1
+(noun)|Ouranos|Uranus|Greek deity (generic term)
+ouse|1
+(noun)|Ouse|Ouse River|river (generic term)
+ouse river|1
+(noun)|Ouse|Ouse River|river (generic term)
+ousel|1
+(noun)|blackbird|merl|merle|ouzel|European blackbird|Turdus merula|thrush (generic term)
+oust|2
+(verb)|throw out|drum out|boot out|kick out|expel|remove (generic term)
+(verb)|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+ouster|3
+(noun)|ejector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|eviction (generic term)|dispossession (generic term)|legal ouster (generic term)
+(noun)|ousting|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+ousting|1
+(noun)|ouster|ejection (generic term)|exclusion (generic term)|expulsion (generic term)|riddance (generic term)
+out|15
+(adj)|retired|down (similar term)|safe (antonym)
+(adj)|extinct|dead (similar term)
+(adj)|impossible (similar term)
+(adj)|unsuccessful (similar term)
+(adj)|forbidden|prohibited|proscribed|taboo|tabu|verboten|impermissible (similar term)
+(adj)|outgoing (similar term)
+(adj)|unfashionable (similar term)|unstylish (similar term)
+(adj)|exterior (similar term)
+(adj)|outer (similar term)
+(adj)|knocked out|kayoed|KO'd|stunned|unconscious (similar term)
+(noun)|failure (generic term)
+(verb)|come out of the closet|come out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+(verb)|come out
+(adv)|away
+out-and-out|1
+(adj)|absolute|downright|rank|right-down|sheer|complete (similar term)
+out-and-outer|1
+(noun)|expert (generic term)
+out-basket|1
+(noun)|out-tray|receptacle (generic term)|in-basket (antonym)
+out-herod|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+out-migration|1
+(noun)|emigration|expatriation|migration (generic term)
+out-of-body experience|1
+(noun)|experience (generic term)
+out-of-bounds|2
+(adj)|foul (similar term)
+(adj)|off-limits|restricted (similar term)
+out-of-court settlement|1
+(noun)|settlement (generic term)
+out-of-date|1
+(adj)|obsolete|outdated|superannuated|noncurrent (similar term)
+out-of-door|1
+(adj)|outdoor|outside|alfresco (similar term)|open-air (similar term)|outdoorsy (similar term)|exterior (related term)|indoor (antonym)
+out-of-doors|1
+(noun)|outdoors|open air|open|outside (generic term)|exterior (generic term)
+out-of-pocket|1
+(adj)|due (similar term)|owed (similar term)
+out-of-school|1
+(adj)|free (similar term)
+out-of-the-box thinking|1
+(noun)|divergent thinking|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)|convergent thinking (antonym)
+out-of-the-way|3
+(adj)|unusual (similar term)
+(adj)|improper (similar term)
+(adj)|off the beaten track|far (similar term)
+out-of-town|1
+(adj)|distant (similar term)
+out-tray|1
+(noun)|out-basket|receptacle (generic term)|in-basket (antonym)
+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 (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+out loud|1
+(adv)|aloud
+out of action|1
+(adj)|disabled|hors de combat|injured (similar term)
+out of bounds|1
+(noun)|sideline|line (generic term)
+out of breath|1
+(adj)|blown|gasping|panting|pursy|short-winded|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+out of doors|1
+(adv)|outside|outdoors|alfresco|indoors (antonym)|inside (antonym)
+out of gear|1
+(adj)|ungeared (similar term)
+out of hand|1
+(adv)|beyond control|in hand (antonym)
+out of nothing|1
+(adv)|out of thin air|from nowhere
+out of place|1
+(adj)|inapposite|malapropos (similar term)
+out of play|1
+(adj)|dead (similar term)
+out of practice|1
+(adj)|rusty|unskilled (similar term)
+out of print|1
+(adj)|discontinued (similar term)
+out of reach|1
+(adj)|unapproachable|unreachable|unreached|inaccessible (similar term)|unaccessible (similar term)
+out of sight|3
+(adj)|concealed|hidden|invisible (similar term)|unseeable (similar term)
+(adv)|out of view
+(adv)|doggo|in hiding
+out of stock|1
+(adj)|unavailable (similar term)
+out of the blue|2
+(adj)|unanticipated|unforeseen|unlooked-for|unexpected (similar term)
+(adv)|unexpectedly
+out of the question|1
+(adj)|impossible|inconceivable|unimaginable|unthinkable (similar term)
+out of thin air|1
+(adv)|out of nothing|from nowhere
+out of true|1
+(adj)|untrue|uneven (similar term)
+out of use|1
+(adj)|blocked|closed (similar term)
+out of view|1
+(adv)|out of sight
+out of wedlock|2
+(adv)|illegitimately|legitimately (antonym)
+(adv)|outside marriage
+out of whack|1
+(adj)|malfunctioning (similar term)|nonfunctional (similar term)
+out of work|1
+(adj)|idle|jobless|unemployed (similar term)
+out or keeping|1
+(adj)|inappropriate|incompatible|unfitting|incongruous (similar term)
+out to|1
+(adj)|bent|bent on|dead set|intent on|resolute (similar term)
+outage|2
+(noun)|indefinite quantity (generic term)
+(noun)|breakdown (generic term)|equipment failure (generic term)
+outaouais|1
+(noun)|Outaouais|Ottawa|Ottawa river|river (generic term)
+outback|2
+(adj)|remote|inaccessible (similar term)|unaccessible (similar term)
+(noun)|bush (generic term)
+outbalance|1
+(verb)|preponderate|outweigh|overbalance|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+outbid|2
+(verb)|bid (generic term)|call (generic term)
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)|underbid (antonym)
+outboard|3
+(adj)|portable (similar term)|inboard (antonym)
+(noun)|outboard motorboat|motorboat (generic term)|powerboat (generic term)
+(noun)|outboard motor|internal-combustion engine (generic term)|ICE (generic term)
+outboard motor|1
+(noun)|outboard|internal-combustion engine (generic term)|ICE (generic term)
+outboard motorboat|1
+(noun)|outboard|motorboat (generic term)|powerboat (generic term)
+outbound|1
+(adj)|outward|outward-bound|outgoing (similar term)
+outbrave|2
+(verb)|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outbreak|1
+(noun)|eruption|irruption|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+outbred|1
+(adj)|crossbred (similar term)|interbred (similar term)|crossbred (related term)|exogamous (related term)|exogamic (related term)|inbred (antonym)
+outbuilding|1
+(noun)|building (generic term)|edifice (generic term)
+outburst|3
+(noun)|effusion|gush|blowup|ebullition|expression (generic term)|manifestation (generic term)|reflection (generic term)|reflexion (generic term)
+(noun)|burst|flare-up|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|tumultuous disturbance|disturbance (generic term)
+outcall|1
+(verb)|bid (generic term)|call (generic term)
+outcast|2
+(adj)|friendless|unwanted (similar term)
+(noun)|castaway|pariah|Ishmael|unfortunate (generic term)|unfortunate person (generic term)
+outcaste|2
+(adj)|casteless|unwanted (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+outclass|1
+(verb)|subordinate (generic term)
+outclassed|1
+(adj)|inferior (similar term)
+outcome|2
+(noun)|result|resultant|final result|termination|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|consequence|effect|result|event|issue|upshot|phenomenon (generic term)
+outcrop|2
+(noun)|outcropping|rock outcrop|rock (generic term)|stone (generic term)
+(verb)|appear (generic term)
+outcropping|1
+(noun)|outcrop|rock outcrop|rock (generic term)|stone (generic term)
+outcry|3
+(noun)|cry|call|yell|shout|vociferation|utterance (generic term)|vocalization (generic term)
+(verb)|outshout|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|exclaim|cry|cry out|call out|shout|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+outdated|1
+(adj)|obsolete|out-of-date|superannuated|noncurrent (similar term)
+outdistance|1
+(verb)|outstrip|distance|leave behind (generic term)
+outdo|2
+(verb)|surpass|outstrip|outmatch|outgo|exceed|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|outflank|trump|best|scoop|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outdoor|2
+(adj)|out-of-door|outside|alfresco (similar term)|open-air (similar term)|outdoorsy (similar term)|exterior (related term)|indoor (antonym)
+(adj)|outside|exterior (related term)
+outdoor game|1
+(noun)|athletic game (generic term)
+outdoor man|1
+(noun)|sporting man|amateur (generic term)
+outdoor sport|1
+(noun)|field sport|sport (generic term)|athletics (generic term)
+outdoor stage|1
+(noun)|bandstand|stand|platform (generic term)
+outdoors|2
+(noun)|out-of-doors|open air|open|outside (generic term)|exterior (generic term)
+(adv)|outside|out of doors|alfresco|indoors (antonym)|inside (antonym)
+outdoorsman|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+outdoorswoman|1
+(noun)|outdoorsman (generic term)
+outdoorsy|1
+(adj)|outdoor (similar term)|out-of-door (similar term)|outside (similar term)
+outdraw|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outer|3
+(adj)|out (similar term)|outermost (similar term)|outmost (similar term)|outside (similar term)|satellite (similar term)|inner (antonym)
+(adj)|outward (similar term)
+(adj)|external (similar term)
+outer boundary|1
+(noun)|periphery|fringe|boundary (generic term)|edge (generic term)|bound (generic term)
+outer ear|1
+(noun)|external ear|external organ (generic term)
+outer garment|1
+(noun)|overgarment|garment (generic term)|undergarment (antonym)
+outer hebrides|1
+(noun)|Outer Hebrides|archipelago (generic term)
+outer mongolia|1
+(noun)|Mongolia|Mongolian People's Republic|Outer Mongolia|Asian country (generic term)|Asian nation (generic term)
+outer planet|1
+(noun)|planet (generic term)|major planet (generic term)
+outer space|1
+(noun)|space (generic term)|infinite (generic term)|location (generic term)
+outercourse|1
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+outermost|1
+(adj)|outmost|outer (similar term)
+outerwear|1
+(noun)|overclothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+outface|1
+(verb)|stare down|outstare|gaze (generic term)|stare (generic term)
+outfall|1
+(noun)|exit (generic term)|issue (generic term)|outlet (generic term)|way out (generic term)
+outfield|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)|infield (antonym)
+outfielder|2
+(noun)|fielder (generic term)
+(noun)|fielder (generic term)|fieldsman (generic term)
+outfight|1
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outfit|4
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|getup|rig|turnout|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|kit|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(verb)|equip|fit|fit out|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+outfitted|2
+(adj)|fitted out|furnished (similar term)|equipped (similar term)
+(adj)|equipped (similar term)|equipt (similar term)
+outfitter|2
+(noun)|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+(noun)|shop (generic term)|store (generic term)
+outfitting|1
+(noun)|arming (generic term)|armament (generic term)|equipping (generic term)
+outflank|2
+(verb)|go around|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|outdo|trump|best|scoop|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outflow|3
+(noun)|escape|leak|leakage|discharge (generic term)|outpouring (generic term)|run (generic term)
+(noun)|effluence|efflux|flow (generic term)|influx (antonym)|inflow (antonym)
+(noun)|spring|fountain|outpouring|natural spring|geological formation (generic term)|formation (generic term)
+outflowing|1
+(adj)|effluent|outgoing (similar term)
+outfox|2
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|outwit|overreach|outsmart|beat|circumvent|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outgeneral|1
+(verb)|outmaneuver (generic term)|outmanoeuvre (generic term)|outsmart (generic term)
+outgo|2
+(noun)|expenditure|outlay|financial loss (generic term)|income (antonym)
+(verb)|surpass|outstrip|outmatch|exceed|outdo|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outgoer|1
+(noun)|emigrant|emigre|emigree|migrant (generic term)|migrator (generic term)
+outgoing|2
+(adj)|outbound (similar term)|outward (similar term)|outward-bound (similar term)|effluent (similar term)|outflowing (similar term)|out (similar term)|past (similar term)|preceding (similar term)|retiring (similar term)|past (related term)|incoming (antonym)
+(adj)|extroverted|forthcoming|sociable (similar term)
+outgrow|2
+(verb)|develop (generic term)|grow (generic term)
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outgrowth|3
+(noun)|branch|offshoot|offset|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|emergence|growth|beginning (generic term)
+(noun)|process|appendage|body part (generic term)
+outguess|1
+(verb)|second-guess|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+outhouse|1
+(noun)|privy|earth-closet|jakes|outbuilding (generic term)
+outing|2
+(noun)|excursion|jaunt|junket|pleasure trip|expedition|sashay|journey (generic term)|journeying (generic term)
+(noun)|field day|picnic|vacation (generic term)|holiday (generic term)
+outlander|1
+(noun)|foreigner|alien|noncitizen|traveler (generic term)|traveller (generic term)|citizen (antonym)
+outlandish|1
+(adj)|bizarre|eccentric|freakish|freaky|flaky|flakey|gonzo|off-the-wall|outre|unconventional (similar term)
+outlandishness|1
+(noun)|bizarreness|weirdness|unfamiliarity (generic term)|strangeness (generic term)
+outlast|1
+(verb)|outlive|survive
+outlaw|4
+(adj)|illegitimate|illicit|outlawed|unlawful|illegal (similar term)
+(adj)|lawless|unlawful (similar term)
+(noun)|criminal|felon|crook|malefactor|wrongdoer (generic term)|offender (generic term)
+(verb)|criminalize|criminalise|illegalize|illegalise|forbid (generic term)|prohibit (generic term)|interdict (generic term)|proscribe (generic term)|veto (generic term)|disallow (generic term)|decriminalise (antonym)|decriminalize (antonym)|legalize (antonym)
+outlawed|1
+(adj)|illegitimate|illicit|outlaw|unlawful|illegal (similar term)
+outlawry|1
+(noun)|lawlessness|illegality (generic term)
+outlay|2
+(noun)|spending|disbursement|disbursal|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+(noun)|outgo|expenditure|financial loss (generic term)|income (antonym)
+outlet|4
+(noun)|mercantile establishment|retail store|sales outlet|place of business (generic term)|business establishment (generic term)
+(noun)|wall socket|wall plug|electric outlet|electrical outlet|electric receptacle|receptacle (generic term)
+(noun)|exit|issue|way out|opening (generic term)
+(noun)|release|vent|activity (generic term)
+outlet box|1
+(noun)|receptacle (generic term)
+outlier|2
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+(noun)|deviation (generic term)
+outline|6
+(noun)|lineation|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|synopsis|abstract|precis|summary (generic term)|sum-up (generic term)
+(noun)|schema|scheme|plan (generic term)|program (generic term)|programme (generic term)
+(verb)|sketch|adumbrate|describe (generic term)|depict (generic term)|draw (generic term)
+(verb)|draft|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|delineate|limn|draw (generic term)
+outlined|1
+(adj)|defined|distinct (similar term)
+outlive|1
+(verb)|outlast|survive
+outlook|3
+(noun)|mentality|mindset|mind-set|attitude (generic term)|mental attitude (generic term)
+(noun)|expectation|prospect|belief (generic term)
+(noun)|lookout|look (generic term)|looking (generic term)|looking at (generic term)
+outlying|1
+(adj)|far (similar term)
+outmaneuver|1
+(verb)|outmanoeuvre|outsmart|outdo (generic term)|outflank (generic term)|trump (generic term)|best (generic term)|scoop (generic term)
+outmanoeuvre|1
+(verb)|outmaneuver|outsmart|outdo (generic term)|outflank (generic term)|trump (generic term)|best (generic term)|scoop (generic term)
+outmarch|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outmatch|1
+(verb)|surpass|outstrip|outgo|exceed|outdo|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outmode|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+outmoded|1
+(adj)|antique|demode|ex|old-fashioned|old-hat|passe|passee|unfashionable (similar term)|unstylish (similar term)
+outmost|1
+(adj)|outermost|outer (similar term)
+outnumber|1
+(verb)|total (generic term)|number (generic term)|add up (generic term)|come (generic term)|amount (generic term)
+outpace|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outpatient|1
+(noun)|patient (generic term)|inpatient (antonym)
+outperform|1
+(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|surmount|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outplay|1
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outpoint|2
+(verb)|sail (generic term)
+(verb)|outscore|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outport|1
+(noun)|port (generic term)
+outpost|3
+(noun)|outstation|post (generic term)|station (generic term)
+(noun)|frontier settlement|colony (generic term)|settlement (generic term)
+(noun)|military post (generic term)|post (generic term)
+outpouring|5
+(noun)|spring|fountain|outflow|natural spring|geological formation (generic term)|formation (generic term)
+(noun)|flush|gush|flow (generic term)|flowing (generic term)
+(noun)|discharge|run|flow (generic term)|flowing (generic term)
+(noun)|barrage|bombardment|onslaught|language (generic term)|linguistic communication (generic term)
+(noun)|flood|overflow|flow (generic term)|stream (generic term)
+output|6
+(noun)|end product|product (generic term)|production (generic term)
+(noun)|yield|production (generic term)
+(noun)|output signal|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|yield|production|indefinite quantity (generic term)
+(noun)|outturn|turnout|product (generic term)|production (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+output-to-input ratio|1
+(noun)|ratio (generic term)
+output contract|1
+(noun)|contract (generic term)
+output file|1
+(noun)|computer file (generic term)
+output program|1
+(noun)|utility program (generic term)|utility (generic term)|service program (generic term)
+output routine|1
+(noun)|utility routine (generic term)|service routine (generic term)
+output signal|1
+(noun)|output|signal (generic term)|signaling (generic term)|sign (generic term)
+outrage|7
+(noun)|indignation|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|atrocity (generic term)|inhumanity (generic term)
+(noun)|scandal|trouble (generic term)
+(noun)|scandalization|scandalisation|insult (generic term)|affront (generic term)
+(verb)|shock|offend|scandalize|scandalise|appal|appall|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+(verb)|desecrate|profane|violate|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|rape|ravish|violate|assault|dishonor|dishonour|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+outraged|1
+(adj)|indignant|incensed|umbrageous|angry (similar term)
+outrageous|2
+(adj)|hideous|horrid|horrific|offensive (similar term)
+(adj)|exorbitant|extortionate|steep|unconscionable|usurious|immoderate (similar term)
+outrageously|1
+(adv)|atrociously
+outrageousness|2
+(noun)|exorbitance|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+(noun)|enormity|indecency (generic term)
+outrange|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outrank|1
+(verb)|rank|excel (generic term)|stand out (generic term)|surpass (generic term)
+outre|1
+(adj)|bizarre|eccentric|freakish|freaky|flaky|flakey|gonzo|off-the-wall|outlandish|unconventional (similar term)
+outreach|1
+(noun)|reach (generic term)|reaching (generic term)|stretch (generic term)
+outride|2
+(verb)|last out|stay|ride out
+(verb)|ride (generic term)|sit (generic term)
+outrider|1
+(noun)|bodyguard (generic term)|escort (generic term)
+outrigged|1
+(adj)|rigged (similar term)
+outrigger|1
+(noun)|stabilizer (generic term)|stabiliser (generic term)
+outrigger canoe|1
+(noun)|canoe (generic term)
+outright|2
+(adj)|straight-out|unlimited|unqualified (similar term)
+(adv)|instantaneously|instantly|in a flash
+outrival|1
+(verb)|outvie|rival (generic term)
+outroar|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outrun|1
+(verb)|run (generic term)
+outsail|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outscore|1
+(verb)|outpoint|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+outsell|1
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outset|1
+(noun)|beginning|commencement|first|get-go|start|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+outshine|2
+(verb)|shine (generic term)|beam (generic term)
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outshout|1
+(verb)|outcry|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outside|14
+(adj)|after-school (similar term)|extracurricular (similar term)|extracurricular (similar term)|right (similar term)|external (related term)|inside (antonym)
+(adj)|external|extraneous|extrinsic (similar term)
+(adj)|external (similar term)
+(adj)|outdoor|out-of-door|alfresco (similar term)|open-air (similar term)|outdoorsy (similar term)|exterior (related term)|indoor (antonym)
+(adj)|extramural (similar term)
+(adj)|exterior (similar term)
+(adj)|external|international|foreign (similar term)
+(adj)|remote|unlikely (similar term)
+(adj)|outer (similar term)
+(adj)|away|inaccurate (similar term)
+(noun)|exterior|region (generic term)|part (generic term)|inside (antonym)
+(noun)|exterior|surface (generic term)|inside (antonym)
+(adv)|outdoors|out of doors|alfresco|indoors (antonym)|inside (antonym)
+(adv)|inside (antonym)
+outside caliper|1
+(noun)|caliper (generic term)|calliper (generic term)
+outside clinch|1
+(noun)|clinch (generic term)|clench (generic term)
+outside door|1
+(noun)|exterior door|doorway (generic term)|door (generic term)|room access (generic term)|threshold (generic term)
+outside loop|1
+(noun)|loop (generic term)|loop-the-loop (generic term)
+outside marriage|1
+(adv)|out of wedlock
+outside mirror|1
+(noun)|car mirror (generic term)
+outsider|2
+(noun)|foreigner|stranger (generic term)|alien (generic term)|unknown (generic term)
+(noun)|contestant (generic term)
+outsider art|1
+(noun)|self-taught art|vernacular art|naive art|primitive art|genre (generic term)
+outsize|2
+(adj)|outsized|oversize|oversized|large (similar term)|big (similar term)
+(noun)|size (generic term)
+outsized|1
+(adj)|outsize|oversize|oversized|large (similar term)|big (similar term)
+outskirt|1
+(noun)|fringe|city district (generic term)
+outskirts|1
+(noun)|section (generic term)
+outsmart|2
+(verb)|outwit|overreach|outfox|beat|circumvent|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|outmaneuver|outmanoeuvre|outdo (generic term)|outflank (generic term)|trump (generic term)|best (generic term)|scoop (generic term)
+outsole|1
+(noun)|sole (generic term)
+outsource|1
+(verb)|source (generic term)
+outspan|1
+(verb)|unyoke (generic term)|unharness (generic term)|inspan (antonym)
+outspoken|2
+(adj)|vocal|communicative (similar term)|communicatory (similar term)
+(adj)|blunt|candid|forthright|frank|free-spoken|plainspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+outspokenness|1
+(noun)|frankness|communicativeness (generic term)
+outspread|1
+(adj)|spread|extended (similar term)
+outstanding|4
+(adj)|superior (similar term)
+(adj)|prominent|salient|spectacular|striking|conspicuous (similar term)
+(adj)|owed|owing|undischarged|unpaid (similar term)
+(adj)|great|important (similar term)|of import (similar term)
+outstandingly|1
+(adv)|unusually|remarkably|unco|unremarkably (antonym)
+outstare|1
+(verb)|stare down|outface|gaze (generic term)|stare (generic term)
+outstation|1
+(noun)|outpost|post (generic term)|station (generic term)
+outstay|2
+(verb)|overstay|bide (generic term)|abide (generic term)|stay (generic term)
+(verb)|last out (generic term)|stay (generic term)|ride out (generic term)|outride (generic term)
+outstretched|1
+(adj)|extended (similar term)
+outstrip|2
+(verb)|surpass|outmatch|outgo|exceed|outdo|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|outdistance|distance|leave behind (generic term)
+outstroke|1
+(noun)|throw (generic term)|stroke (generic term)|cam stroke (generic term)
+outtake|1
+(noun)|scene (generic term)|shot (generic term)
+outthrust|1
+(noun)|outcrop (generic term)|outcropping (generic term)|rock outcrop (generic term)
+outturn|1
+(noun)|output|turnout|product (generic term)|production (generic term)
+outvie|1
+(verb)|outrival|rival (generic term)
+outvote|1
+(verb)|vote (generic term)
+outward|3
+(adj)|external (similar term)|outer (similar term)|superficial (related term)|inward (antonym)
+(adj)|outbound|outward-bound|outgoing (similar term)
+(adv)|outwards|inward (antonym)
+outward-bound|1
+(adj)|outbound|outward|outgoing (similar term)
+outward-developing|1
+(adj)|centrifugal (similar term)
+outward-moving|1
+(adj)|centrifugal (similar term)
+outwardly|2
+(adv)|externally
+(adv)|inwardly (antonym)
+outwardness|3
+(noun)|cognitive state (generic term)|state of mind (generic term)|inwardness (antonym)
+(noun)|externality|position (generic term)|spatial relation (generic term)|inwardness (antonym)
+(noun)|extraversion (generic term)|extroversion (generic term)|inwardness (antonym)
+outwards|1
+(adv)|outward|inward (antonym)
+outwear|2
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+outweigh|2
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+(verb)|preponderate|overbalance|outbalance|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+outwit|1
+(verb)|overreach|outsmart|outfox|beat|circumvent|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+outwork|1
+(noun)|defensive structure (generic term)|defense (generic term)|defence (generic term)
+ouzel|1
+(noun)|blackbird|merl|merle|ousel|European blackbird|Turdus merula|thrush (generic term)
+ouzo|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+ov|1
+(noun)|Orange Group|OV|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+oval|2
+(adj)|egg-shaped|elliptic|elliptical|oval-shaped|ovate|oviform|ovoid|prolate|rounded (similar term)
+(noun)|ellipse|conic section (generic term)|conic (generic term)
+oval-bodied|1
+(adj)|bodied (similar term)
+oval-fruited|1
+(adj)|fruitful (similar term)
+oval-shaped|1
+(adj)|egg-shaped|elliptic|elliptical|oval|ovate|oviform|ovoid|prolate|rounded (similar term)
+oval kumquat|1
+(noun)|nagami|nagami kumquat|Fortunella margarita|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+oval office|1
+(noun)|Oval Office|government office (generic term)
+oval window|1
+(noun)|fenestra ovalis|fenestra vestibuli|fenestra of the vestibule|fenestra (generic term)
+ovalbumin|1
+(noun)|egg white|white|albumen|ingredient (generic term)|fixings (generic term)
+ovalipes|1
+(noun)|Ovalipes|genus Ovalipes|arthropod genus (generic term)
+ovalipes ocellatus|1
+(noun)|American lady crab|lady crab|calico crab|Ovalipes ocellatus|swimming crab (generic term)
+ovarian|1
+(adj)|female internal reproductive organ|gonad|sex gland (related term)
+ovarian artery|1
+(noun)|arteria ovarica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ovarian cyst|1
+(noun)|cyst (generic term)
+ovarian pregnancy|1
+(noun)|ectopic pregnancy (generic term)|extrauterine pregnancy (generic term)|ectopic gestation (generic term)|extrauterine gestation (generic term)|eccyesis (generic term)|metacyesis (generic term)
+ovarian vein|1
+(noun)|vena ovarica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ovariectomy|1
+(noun)|oophorectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+ovaritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+ovary|2
+(noun)|reproductive structure (generic term)
+(noun)|female internal reproductive organ (generic term)|gonad (generic term)|sex gland (generic term)
+ovate|2
+(adj)|simple (similar term)|unsubdivided (similar term)
+(adj)|egg-shaped|elliptic|elliptical|oval|oval-shaped|oviform|ovoid|prolate|rounded (similar term)
+ovate leaf|1
+(noun)|simple leaf (generic term)
+ovation|1
+(noun)|standing ovation|recognition (generic term)|credit (generic term)
+oven|1
+(noun)|kitchen appliance (generic term)
+oven-ready|1
+(adj)|prepared (similar term)
+oven-shaped|1
+(adj)|formed (similar term)
+oven broil|1
+(verb)|broil|grill (generic term)
+oven stuffer|1
+(noun)|oven stuffer roaster|roaster (generic term)
+oven stuffer roaster|1
+(noun)|oven stuffer|roaster (generic term)
+oven thermometer|1
+(noun)|thermometer (generic term)
+ovenbake|1
+(verb)|bake (generic term)
+ovenbird|2
+(noun)|Seiurus aurocapillus|New World warbler (generic term)|wood warbler (generic term)
+(noun)|tyrannid (generic term)
+ovenware|1
+(noun)|crockery (generic term)|dishware (generic term)
+over|4
+(adj)|complete|concluded|ended|all over|terminated|finished (similar term)
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+(adv)|o'er
+(adv)|all over
+over-correct|1
+(verb)|overcompensate|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+over-crowding|1
+(noun)|congestion|crowding (generic term)
+over-embellished|1
+(adj)|embellished|empurpled|purple|rhetorical (similar term)
+over-refine|1
+(verb)|overrefine|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+over-the-counter|2
+(adj)|nonprescription|prescription (antonym)
+(adj)|otc|unlisted (similar term)
+over-the-counter drug|1
+(noun)|over-the-counter medicine|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|prescription medicine (antonym)|prescription drug (antonym)
+over-the-counter market|1
+(noun)|OTC market|stock exchange (generic term)|stock market (generic term)|securities market (generic term)
+over-the-counter medicine|1
+(noun)|over-the-counter drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|prescription medicine (antonym)|prescription drug (antonym)
+over-the-hill|1
+(adj)|overage|overaged|superannuated|old (similar term)
+over-the-shoulder bombing|1
+(noun)|loft bombing (generic term)|toss bombing (generic term)
+over-the-top|1
+(adj)|extraordinary|sinful|immoderate (similar term)
+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 (generic term)|certificate (generic term)|listed security (antonym)
+over the counter stock|1
+(noun)|OTC stock|unlisted stock|unlisted security (generic term)|over the counter security (generic term)|OTC security (generic term)
+over the sea|1
+(adv)|overseas|beyond the sea|abroad
+overabundance|2
+(noun)|surfeit|excess|fullness (generic term)
+(noun)|overmuch|overmuchness|superabundance|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+overabundant|1
+(adj)|plethoric|rife|abundant (similar term)
+overachieve|1
+(verb)|do (generic term)|perform (generic term)
+overachievement|1
+(noun)|performance (generic term)|underachievement (antonym)
+overachiever|1
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+overact|1
+(verb)|ham it up|ham|overplay|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|underact (antonym)
+overacting|1
+(noun)|hamming|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+overactive|1
+(adj)|hyperactive|active (similar term)
+overactivity|1
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+overage|2
+(adj)|overaged|superannuated|over-the-hill|old (similar term)
+(noun)|assets (generic term)
+overaged|1
+(adj)|overage|superannuated|over-the-hill|old (similar term)
+overall|4
+(adj)|general (similar term)
+(adj)|total|whole|gross (similar term)
+(noun)|work-clothing (generic term)|work-clothes (generic term)
+(noun)|boilersuit|boilers suit|coverall (generic term)
+overambitious|1
+(adj)|ambitious (similar term)
+overanxiety|1
+(noun)|anxiety (generic term)|anxiousness (generic term)
+overanxious|1
+(adj)|insecure (similar term)
+overappraisal|1
+(noun)|overestimate|overestimation|overvaluation|appraisal (generic term)|estimate (generic term)|estimation (generic term)
+overarch|2
+(verb)|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+(verb)|arch over
+overarm|1
+(adj)|overhand|overhanded|round-arm (similar term)|underhand (antonym)
+overawe|1
+(verb)|cow|awe (generic term)
+overawed|1
+(adj)|awed (similar term)|awestruck (similar term)|awestricken (similar term)|in awe of (similar term)
+overbalance|2
+(verb)|preponderate|outweigh|outbalance|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+(verb)|account (generic term)|calculate (generic term)
+overbear|3
+(verb)|dominate (generic term)
+(verb)|bear (generic term)|turn out (generic term)
+(verb)|bear down|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+overbearing|1
+(adj)|authoritarian|dictatorial|domineering (similar term)
+overbearingness|1
+(noun)|imperiousness|domineeringness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+overbid|4
+(noun)|bid (generic term)|tender (generic term)
+(noun)|overcall|bid (generic term)|bidding (generic term)
+(verb)|bid (generic term)|call (generic term)
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)|underbid (antonym)
+overbite|1
+(noun)|malocclusion (generic term)
+overblown|2
+(adj)|grandiloquent|pompous|pontifical|portentous|pretentious (similar term)
+(adj)|mature (similar term)
+overboil|2
+(verb)|boil over|boil (generic term)
+(verb)|boil (generic term)
+overbold|1
+(adj)|fresh|impertinent|impudent|smart|saucy|sassy|wise|forward (similar term)
+overburden|4
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|overload|load (generic term)|loading (generic term)|burden (generic term)
+(verb)|charge (generic term)|saddle (generic term)|burden (generic term)
+(verb)|burden (generic term)|burthen (generic term)|weight (generic term)|weight down (generic term)
+overburdened|1
+(adj)|bowed down|loaded down|weighed down|burdened (similar term)
+overbusy|1
+(adj)|busy (similar term)
+overcall|1
+(noun)|overbid|bid (generic term)|bidding (generic term)
+overcapitalisation|1
+(noun)|overcapitalization|capitalization (generic term)|capitalisation (generic term)
+overcapitalise|2
+(verb)|overcapitalize|overestimate (generic term)|overrate (generic term)
+(verb)|overcapitalize|capitalize (generic term)|capitalise (generic term)
+overcapitalization|1
+(noun)|overcapitalisation|capitalization (generic term)|capitalisation (generic term)
+overcapitalize|2
+(verb)|overcapitalise|overestimate (generic term)|overrate (generic term)
+(verb)|overcapitalise|capitalize (generic term)|capitalise (generic term)
+overcareful|1
+(adj)|too-careful|careful (similar term)
+overcast|7
+(adj)|cloud-covered|clouded|sunless|cloudy (similar term)
+(noun)|cloudiness|cloud cover|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+(noun)|cloudiness|semidarkness (generic term)
+(noun)|overcasting|stitch (generic term)
+(noun)|casting (generic term)|cast (generic term)
+(verb)|cloud|darken (generic term)|cloud over (related term)|cloud up (related term)|clear up (antonym)
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+overcasting|1
+(noun)|overcast|stitch (generic term)
+overcautious|1
+(adj)|cautious (similar term)
+overcharge|3
+(noun)|charge (generic term)
+(verb)|soak|surcharge|gazump|fleece|plume|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|overload|surcharge|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+overclothe|1
+(verb)|overdress|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+overclothes|1
+(noun)|outerwear|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+overcloud|2
+(verb)|cloud over|cloud up|darken (generic term)
+(verb)|obscure|bedim|change (generic term)|alter (generic term)|modify (generic term)
+overcoat|2
+(noun)|greatcoat|topcoat|coat (generic term)
+(noun)|overcoating|coating (generic term)|coat (generic term)
+overcoating|1
+(noun)|overcoat|coating (generic term)|coat (generic term)
+overcome|4
+(verb)|get the better of|defeat
+(verb)|get over|subdue|surmount|master|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|overwhelm|overpower|sweep over|whelm|overtake|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|get the best|have the best|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+overcomer|1
+(noun)|subduer|surmounter|restrainer (generic term)|controller (generic term)
+overcompensate|2
+(verb)|cover|compensate|compensate (generic term)|counterbalance (generic term)|correct (generic term)|make up (generic term)|even out (generic term)|even off (generic term)|even up (generic term)
+(verb)|over-correct|right (generic term)|compensate (generic term)|redress (generic term)|correct (generic term)
+overcompensation|1
+(noun)|compensation (generic term)
+overconfidence|1
+(noun)|certitude|cocksureness|certainty (generic term)
+overconfident|1
+(adj)|cocksure|positive|confident (similar term)
+overcook|1
+(verb)|cook (generic term)
+overcredulity|1
+(noun)|credulity (generic term)
+overcredulous|1
+(adj)|credulous (similar term)
+overcritical|1
+(adj)|hypercritical|critical (similar term)
+overcrop|1
+(verb)|overcultivate|cultivate (generic term)|crop (generic term)|work (generic term)
+overcrossing|1
+(noun)|footbridge|pedestrian bridge|bridge (generic term)|span (generic term)
+overcrowd|2
+(verb)|herd (generic term)|crowd (generic term)
+(verb)|crowd (generic term)|crowd together (generic term)
+overcultivate|1
+(verb)|overcrop|cultivate (generic term)|crop (generic term)|work (generic term)
+overcup oak|1
+(noun)|Quercus lyrata|oak (generic term)|oak tree (generic term)
+overcurious|1
+(adj)|curious (similar term)
+overdelicate|1
+(adj)|delicate (similar term)
+overdo|1
+(verb)|exaggerate|make (generic term)|do (generic term)
+overdone|2
+(adj)|exaggerated|overstated|immoderate (similar term)
+(adj)|cooked (similar term)
+overdose|1
+(verb)|o.d.|drug (generic term)|dose (generic term)
+overdraft|1
+(noun)|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+overdraft credit|1
+(noun)|check overdraft credit|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)
+overdramatise|1
+(verb)|overdramatize|dramatize (generic term)|dramatise (generic term)
+overdramatize|1
+(verb)|overdramatise|dramatize (generic term)|dramatise (generic term)
+overdraw|2
+(verb)|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+(verb)|overstate|exaggerate|hyperbolize|hyerbolise|magnify|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+overdress|2
+(verb)|overclothe|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+(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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+overdressed|1
+(adj)|clothed (similar term)|clad (similar term)
+overdrive|4
+(noun)|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|high gear (generic term)|high (generic term)
+(verb)|overwork (generic term)|exploit (generic term)
+(verb)|overuse|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+overdue|1
+(adj)|delinquent|due (similar term)|owed (similar term)
+overeager|1
+(adj)|eager (similar term)
+overeat|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+overeating|1
+(noun)|gluttony|gula|mortal sin (generic term)|deadly sin (generic term)
+overemotional|1
+(adj)|sloppy|emotional (similar term)
+overemphasis|1
+(noun)|vehemence (generic term)|emphasis (generic term)
+overemphasise|1
+(verb)|overemphasize|overstress|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+overemphasize|1
+(verb)|overemphasise|overstress|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+overenthusiastic|1
+(adj)|enthusiastic (similar term)
+overestimate|4
+(noun)|overestimation|overvaluation|overappraisal|appraisal (generic term)|estimate (generic term)|estimation (generic term)
+(noun)|overestimation|overrating|overreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(verb)|overrate|misjudge (generic term)|underestimate (antonym)
+(verb)|overvalue|value (generic term)|underestimate (antonym)|undervalue (antonym)
+overestimation|2
+(noun)|overestimate|overvaluation|overappraisal|appraisal (generic term)|estimate (generic term)|estimation (generic term)
+(noun)|overestimate|overrating|overreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+overexcited|1
+(adj)|excited (similar term)
+overexert|1
+(verb)|exert (generic term)
+overexert oneself|1
+(verb)|kill oneself|strive (generic term)|reach (generic term)|strain (generic term)
+overexertion|1
+(noun)|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+overexploit|1
+(verb)|exploit (generic term)|tap (generic term)
+overexploitation|1
+(noun)|overuse|overutilization|overutilisation|exploitation (generic term)|development (generic term)
+overexpose|1
+(verb)|expose (generic term)|underexpose (antonym)
+overexposure|1
+(noun)|exposure (generic term)
+overextend|1
+(verb)|overstrain|strain (generic term)|extend (generic term)
+overfamiliar|1
+(adj)|forward (similar term)
+overfatigue|1
+(verb)|overtire|overweary|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+overfed|1
+(adj)|nourished (similar term)
+overfeed|1
+(verb)|feed (generic term)|give (generic term)
+overfeeding|1
+(noun)|feeding (generic term)|alimentation (generic term)
+overfill|1
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+overflight|1
+(noun)|flight (generic term)|flying (generic term)
+overflow|4
+(noun)|flood|outpouring|flow (generic term)|stream (generic term)
+(noun)|runoff|overspill|flow (generic term)|flowing (generic term)
+(verb)|overrun|well over|run over|brim over|spill (generic term)|run out (generic term)
+(verb)|bubble over|spill over|seethe (generic term)|boil (generic term)
+overflow incontinence|1
+(noun)|enuresis (generic term)|urinary incontinence (generic term)
+overflowing|2
+(adj)|flooding|in flood|swollen|high (similar term)
+(adj)|afloat|awash|flooded|inundated|full (similar term)
+overfly|1
+(verb)|pass over|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+overfond|1
+(adj)|loving (similar term)
+overfull|1
+(adj)|glutted|full (similar term)
+overgarment|1
+(noun)|outer garment|garment (generic term)|undergarment (antonym)
+overgeneralise|1
+(verb)|overgeneralize|generalize (generic term)|generalise (generic term)|extrapolate (generic term)|infer (generic term)
+overgeneralize|1
+(verb)|overgeneralise|generalize (generic term)|generalise (generic term)|extrapolate (generic term)|infer (generic term)
+overgenerous|1
+(adj)|lavish|munificent|prodigal|too-generous|unsparing|unstinted|unstinting|generous (similar term)
+overgorge|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+overgreedy|1
+(adj)|too-greedy|gluttonous (similar term)
+overgrow|2
+(verb)|change state (generic term)|turn (generic term)
+(verb)|grow over|grow (generic term)
+overgrown|2
+(adj)|covered (similar term)
+(adj)|wooded (similar term)
+overgrowth|2
+(noun)|giantism|gigantism|hypertrophy (generic term)
+(noun)|profusion (generic term)|profuseness (generic term)|richness (generic term)|cornucopia (generic term)
+overhand|2
+(adj)|overhanded|overarm|round-arm (similar term)|underhand (antonym)
+(adj)|oversewn|handmade (similar term)|hand-crafted (similar term)
+overhand knot|1
+(noun)|knot (generic term)
+overhand pitch|1
+(noun)|pitch (generic term)|delivery (generic term)
+overhand stitch|1
+(noun)|stitch (generic term)
+overhanded|1
+(adj)|overhand|overarm|round-arm (similar term)|underhand (antonym)
+overhang|3
+(noun)|projection (generic term)
+(verb)|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+(verb)|beetle|hang (generic term)
+overhasty|1
+(adj)|hasty|precipitate|precipitant|precipitous|hurried (similar term)
+overhaul|4
+(noun)|inspection and repair|service|care (generic term)|maintenance (generic term)|upkeep (generic term)
+(noun)|renovation|redevelopment|improvement (generic term)
+(verb)|pass|overtake|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|modernize|modernise|regenerate (generic term)|renew (generic term)
+overhead|7
+(adj)|elevated (similar term)|surface (antonym)|subsurface (antonym)
+(noun)|operating expense|operating cost|budget items|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+(noun)|command processing overhead time|command processing overhead|command overhead|processing time (generic term)
+(noun)|disk overhead|disk space (generic term)|disc space (generic term)
+(noun)|viewgraph|foil (generic term)|transparency (generic term)
+(noun)|ceiling (generic term)
+(noun)|smash|return (generic term)
+overhead projector|1
+(noun)|projector (generic term)
+overhead railway|1
+(noun)|elevated railway|elevated railroad|elevated|el|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+overhear|1
+(verb)|catch|take in|hear (generic term)
+overheat|2
+(verb)|heat (generic term)|hot up (generic term)|heat up (generic term)
+(verb)|heat (generic term)|heat up (generic term)
+overheated|1
+(adj)|hot (similar term)
+overheating|1
+(noun)|heating (generic term)|warming (generic term)
+overindulge|1
+(verb)|gorge|ingurgitate|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+overindulgence|1
+(noun)|excess|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+overindulgent|1
+(adj)|indulgent (similar term)
+overjealous|1
+(adj)|jealous|green-eyed|distrustful (similar term)
+overjoy|1
+(verb)|gladden (generic term)|joy (generic term)
+overjoyed|1
+(adj)|joyful (similar term)
+overkill|2
+(noun)|capability (generic term)|capableness (generic term)
+(noun)|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+overladen|1
+(adj)|overloaded|full (similar term)
+overland|1
+(adj)|land (similar term)
+overlap|5
+(noun)|convergence|intersection|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|concurrence (generic term)|coincidence (generic term)|conjunction (generic term)|co-occurrence (generic term)
+(noun)|lap|flap (generic term)
+(verb)|coincide (generic term)|co-occur (generic term)|cooccur (generic term)
+(verb)|cover (generic term)|continue (generic term)|extend (generic term)
+overlapping|3
+(adj)|related (similar term)|related to (similar term)
+(adj)|lap-jointed|lap-strake|lap-straked|lap-streak|lap-streaked|clinker-built (similar term)|clincher-built (similar term)
+(noun)|imbrication|lapping|covering (generic term)
+overlarge|1
+(adj)|too large|large (similar term)|big (similar term)
+overlay|3
+(noun)|sheathing|overlayer|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|cover
+(verb)|overlie|kill (generic term)
+overlayer|1
+(noun)|sheathing|overlay|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+overleap|3
+(verb)|overdo (generic term)|exaggerate (generic term)
+(verb)|vault|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|neglect|pretermit|omit|drop|miss|leave out|overlook|attend to (antonym)
+overlie|2
+(verb)|lie (generic term)
+(verb)|overlay|kill (generic term)
+overlip|1
+(noun)|lip (generic term)
+overload|4
+(noun)|load (generic term)|loading (generic term)|burden (generic term)
+(noun)|overburden|load (generic term)|loading (generic term)|burden (generic term)
+(verb)|clog|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|surcharge|overcharge|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+overloaded|1
+(adj)|overladen|full (similar term)
+overlook|6
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(verb)|miss (generic term)|lose (generic term)
+(verb)|look out on|look out over|look across|lie (generic term)
+(verb)|neglect|pretermit|omit|drop|miss|leave out|overleap|attend to (antonym)
+(verb)|dominate|command|overtop|lie (generic term)
+(verb)|survey (generic term)
+overlooked|1
+(adj)|unmarked|unnoted|unnoticed (similar term)
+overlooking|1
+(adj)|commanding|dominating|high (similar term)
+overlord|1
+(noun)|master|lord|ruler (generic term)|swayer (generic term)
+overlordship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+overly|1
+(adv)|excessively|to a fault|too
+overlying|1
+(adj)|superimposed|superjacent (similar term)
+overmantel|1
+(noun)|shelf (generic term)
+overmaster|1
+(verb)|overpower|overwhelm|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+overmodest|1
+(adj)|coy|demure|modest (similar term)
+overmuch|3
+(adj)|much (similar term)
+(noun)|overabundance|overmuchness|superabundance|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(adv)|too much
+overmuchness|1
+(noun)|overabundance|overmuch|superabundance|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+overnice|1
+(adj)|dainty|nice|prissy|squeamish|fastidious (similar term)
+overnight|1
+(adj)|nightlong|all-night|long (similar term)
+overnight bag|1
+(noun)|overnighter|overnight case|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+overnight case|1
+(noun)|overnighter|overnight bag|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+overnighter|2
+(noun)|guest (generic term)
+(noun)|overnight bag|overnight case|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+overpass|1
+(noun)|flyover|flypast|bridge (generic term)|span (generic term)
+overpay|1
+(verb)|pay (generic term)|underpay (antonym)
+overpayment|2
+(noun)|payment (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+overplay|1
+(verb)|overact|ham it up|ham|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|underact (antonym)
+overplus|1
+(noun)|plethora|superfluity|embarrassment|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+overpopulate|1
+(verb)|people (generic term)|populate (generic term)
+overpopulation|1
+(noun)|overspill|population (generic term)
+overpower|2
+(verb)|overmaster|overwhelm|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|overwhelm|sweep over|whelm|overcome|overtake|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+overpowering|1
+(adj)|overwhelming|irresistible (similar term)|resistless (similar term)
+overpoweringly|1
+(adv)|overwhelmingly|irresistibly
+overpraise|1
+(verb)|overdo (generic term)|exaggerate (generic term)
+overpressure|1
+(noun)|atmospheric pressure (generic term)|air pressure (generic term)
+overprice|1
+(verb)|price (generic term)
+overpriced|1
+(adj)|expensive (similar term)
+overprint|2
+(noun)|surprint|print (generic term)
+(verb)|print over|print (generic term)|impress (generic term)
+overproduce|2
+(verb)|grow (generic term)|raise (generic term)|farm (generic term)|produce (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+overproduction|1
+(noun)|overrun|production (generic term)
+overprotect|2
+(verb)|mother|fuss|care (generic term)|give care (generic term)
+(verb)|protect (generic term)
+overprotection|1
+(noun)|momism|overshielding|protection (generic term)
+overprotective|1
+(adj)|protective (similar term)
+overproud|1
+(adj)|proud (similar term)
+overrate|1
+(verb)|overestimate|misjudge (generic term)|underestimate (antonym)
+overrating|1
+(noun)|overestimate|overestimation|overreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+overreach|2
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|outwit|outsmart|outfox|beat|circumvent|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+overreaching|1
+(adj)|vaulting|bold (similar term)
+overreact|1
+(verb)|react (generic term)|respond (generic term)
+overreaction|1
+(noun)|reaction (generic term)|response (generic term)
+overreckoning|1
+(noun)|overestimate|overestimation|overrating|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+overrefine|1
+(verb)|over-refine|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+overrefined|1
+(adj)|superfine|refined (similar term)
+overrefinement|1
+(noun)|distortion|straining|torture|twisting|falsification (generic term)|misrepresentaation (generic term)
+override|6
+(noun)|device (generic term)
+(noun)|nullification|change of state (generic term)
+(verb)|overrule|overturn|overthrow|reverse|rule (generic term)|decree (generic term)
+(verb)|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+(verb)|counteract (generic term)|countervail (generic term)|neutralize (generic term)|counterbalance (generic term)
+(verb)|ride (generic term)|sit (generic term)
+overriding|1
+(adj)|paramount|predominant|predominate|preponderant|preponderating|dominant (similar term)
+overripe|1
+(adj)|ripe (similar term)|mature (similar term)
+overrule|1
+(verb)|overturn|override|overthrow|reverse|rule (generic term)|decree (generic term)
+overrun|7
+(adj)|infested|plagued|troubled (similar term)
+(noun)|overproduction|production (generic term)
+(verb)|infest|invade (generic term)|occupy (generic term)
+(verb)|invade|infest|inhabit (generic term)|occupy (generic term)
+(verb)|overflow|well over|run over|brim over|spill (generic term)|run out (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|overshoot (generic term)
+oversea|2
+(adj)|overseas|sea (similar term)
+(adv)|overseas
+overseas|4
+(adj)|abroad|foreign (similar term)
+(adj)|oversea|sea (similar term)
+(adv)|oversea
+(adv)|beyond the sea|over the sea|abroad
+overseas cap|1
+(noun)|garrison cap|cap (generic term)
+overseas telegram|1
+(noun)|cable|cablegram|telegram (generic term)|wire (generic term)
+oversee|1
+(verb)|supervise|superintend|manage|administer (generic term)|administrate (generic term)
+overseer|1
+(noun)|superintendent|supervisor (generic term)
+oversensitive|1
+(adj)|sensitive (similar term)
+oversensitiveness|1
+(noun)|sensitivity (generic term)|sensitiveness (generic term)
+overserious|1
+(adj)|serious (similar term)
+oversew|1
+(verb)|overcast (generic term)
+oversewn|1
+(adj)|overhand|handmade (similar term)|hand-crafted (similar term)
+oversexed|1
+(adj)|highly-sexed|sexy (similar term)
+overshadow|3
+(verb)|eclipse|excel (generic term)|stand out (generic term)|surpass (generic term)
+(verb)|shadow|dwarf|dominate (generic term)|command (generic term)|overlook (generic term)|overtop (generic term)
+(verb)|obscure (generic term)|befog (generic term)|becloud (generic term)|obnubilate (generic term)|haze over (generic term)|fog (generic term)|cloud (generic term)|mist (generic term)
+overshielding|1
+(noun)|momism|overprotection|protection (generic term)
+overshoe|1
+(noun)|footwear (generic term)|footgear (generic term)
+overshoot|3
+(noun)|wave-off|go-around|landing approach (generic term)
+(verb)|miss (generic term)|shoot (generic term)|undershoot (antonym)
+(verb)|draw a bead on (generic term)|aspire (generic term)|aim (generic term)|shoot for (generic term)
+overshot|1
+(adj)|protrusive (similar term)
+oversight|3
+(noun)|inadvertence|omission (generic term)
+(noun)|supervision|supervising|superintendence|management (generic term)|direction (generic term)
+(noun)|lapse|mistake (generic term)|error (generic term)|fault (generic term)
+oversimplification|1
+(noun)|simplism|simplification (generic term)
+oversimplify|2
+(verb)|overdo (generic term)|exaggerate (generic term)
+(verb)|simplify (generic term)
+oversize|1
+(adj)|outsize|outsized|oversized|large (similar term)|big (similar term)
+oversized|1
+(adj)|outsize|outsized|oversize|large (similar term)|big (similar term)
+overskirt|1
+(noun)|skirt (generic term)
+oversolicitous|1
+(adj)|attentive (similar term)
+overspecialise|1
+(verb)|overspecialize|specialize (generic term)|specialise (generic term)|narrow (generic term)|narrow down (generic term)
+overspecialize|1
+(verb)|overspecialise|specialize (generic term)|specialise (generic term)|narrow (generic term)|narrow down (generic term)
+overspend|2
+(verb)|spend (generic term)|underspend (antonym)
+(verb)|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)|underspend (antonym)
+overspill|2
+(noun)|overpopulation|population (generic term)
+(noun)|overflow|runoff|flow (generic term)|flowing (generic term)
+overspread|1
+(verb)|spread|cover (generic term)|continue (generic term)|extend (generic term)
+overstate|1
+(verb)|exaggerate|overdraw|hyperbolize|hyerbolise|magnify|amplify|misinform (generic term)|mislead (generic term)|understate (antonym)
+overstated|1
+(adj)|exaggerated|overdone|immoderate (similar term)
+overstatement|1
+(noun)|exaggeration|magnification|misrepresentation (generic term)|deceit (generic term)|deception (generic term)|understatement (antonym)
+overstay|1
+(verb)|outstay|bide (generic term)|abide (generic term)|stay (generic term)
+overstep|2
+(verb)|transgress|trespass|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|exceed|transcend|pass|go past|top|excel (generic term)|stand out (generic term)|surpass (generic term)
+overstock|1
+(verb)|stock (generic term)|buy in (generic term)|understock (antonym)
+overstrain|2
+(noun)|strain (generic term)
+(verb)|overextend|strain (generic term)|extend (generic term)
+overstress|1
+(verb)|overemphasize|overemphasise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+overstretch|1
+(verb)|pull|injure (generic term)|wound (generic term)
+overstrung|2
+(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|restive|uptight|tense (similar term)
+(adj)|tense (similar term)
+overstuff|1
+(verb)|stuff (generic term)
+overstuffed|1
+(adj)|soft (similar term)
+overstuffed chair|1
+(noun)|easy chair|lounge chair|armchair (generic term)
+oversubscribed|1
+(adj)|sold (similar term)
+oversupply|2
+(noun)|glut|surfeit|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+(verb)|flood|glut|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+oversuspicious|1
+(adj)|distrustful (similar term)
+overt|1
+(adj)|open|bald (similar term)|barefaced (similar term)|naked (similar term)|raw (similar term)|undisguised (similar term)|visible (similar term)|explicit (related term)|expressed (related term)|unconcealed (related term)|public (related term)|covert (antonym)
+overt operation|1
+(noun)|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+overtake|3
+(verb)|catch|catch up with
+(verb)|pass|overhaul|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|overwhelm|overpower|sweep over|whelm|overcome|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+overtaking|1
+(noun)|passing|reordering (generic term)
+overtax|1
+(verb)|tax (generic term)
+overthrow|4
+(noun)|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|upset|derangement|disturbance (generic term)
+(verb)|subvert|overturn|bring down|depose (generic term)|force out (generic term)
+(verb)|overrule|overturn|override|reverse|rule (generic term)|decree (generic term)
+overthrust fault|1
+(noun)|thrust fault|reverse fault|inclined fault (generic term)
+overtime|2
+(noun)|work time (generic term)
+(noun)|extra time|time period (generic term)|period of time (generic term)|period (generic term)|regulation time (antonym)
+overtime period|1
+(noun)|overtime (generic term)|extra time (generic term)
+overtire|1
+(verb)|overweary|overfatigue|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+overtly|1
+(adv)|covertly (antonym)
+overtolerance|1
+(noun)|permissiveness (generic term)|tolerance (generic term)
+overtone|2
+(noun)|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|partial|partial tone|harmonic (generic term)
+overtop|1
+(verb)|dominate|command|overlook|lie (generic term)
+overtrump|1
+(verb)|trump (generic term)|ruff (generic term)
+overture|3
+(noun)|music (generic term)
+(noun)|preliminary|prelude|origin (generic term)|origination (generic term)|inception (generic term)
+(noun)|advance|approach|feeler|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+overturn|8
+(noun)|upset|turnover|inversion (generic term)|upending (generic term)
+(noun)|upset|success (generic term)
+(verb)|turn over|tip over|tump over|turn (generic term)
+(verb)|tip over|turn over|upset|knock over|bowl over|tump over|move (generic term)|displace (generic term)
+(verb)|overrule|override|overthrow|reverse|rule (generic term)|decree (generic term)
+(verb)|overthrow|subvert|bring down|depose (generic term)|force out (generic term)
+(verb)|revoke|annul|lift|countermand|reverse|repeal|rescind|vacate|cancel (generic term)|strike down (generic term)
+(verb)|revolutionize|revolutionise|change (generic term)|alter (generic term)|modify (generic term)
+overturned|1
+(adj)|upset|upturned|turned (similar term)
+overuse|2
+(noun)|overexploitation|overutilization|overutilisation|exploitation (generic term)|development (generic term)
+(verb)|overdrive|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+overutilisation|1
+(noun)|overexploitation|overuse|overutilization|exploitation (generic term)|development (generic term)
+overutilization|1
+(noun)|overexploitation|overuse|overutilisation|exploitation (generic term)|development (generic term)
+overvaliant|1
+(adj)|bold (similar term)
+overvaluation|2
+(noun)|overestimate|overestimation|overappraisal|appraisal (generic term)|estimate (generic term)|estimation (generic term)
+(noun)|evaluation (generic term)|valuation (generic term)|rating (generic term)
+overvalue|1
+(verb)|overestimate|value (generic term)|underestimate (antonym)|undervalue (antonym)
+overview|1
+(noun)|summary (generic term)|sum-up (generic term)
+overweary|1
+(verb)|overtire|overfatigue|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+overweening|2
+(adj)|excessive|extravagant|exuberant|unrestrained (similar term)
+(adj)|uppity|immodest (similar term)
+overweight|2
+(adj)|fleshy|heavy|fat (similar term)
+(noun)|corpulence|stoutness|adiposis|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+overwhelm|4
+(verb)|overpower|sweep over|whelm|overcome|overtake|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|deluge|flood out|charge (generic term)|saddle (generic term)|burden (generic term)
+(verb)|submerge|drown|cover (generic term)|spread over (generic term)|drown out (related term)
+(verb)|overpower|overmaster|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+overwhelming|2
+(adj)|overpowering|irresistible (similar term)|resistless (similar term)
+(adj)|consuming|intense (similar term)
+overwhelmingly|1
+(adv)|overpoweringly|irresistibly
+overwinter|1
+(verb)|winter|spend (generic term)|pass (generic term)
+overwork|3
+(noun)|overworking|labor (generic term)|labour (generic term)|toil (generic term)
+(verb)|work (generic term)|work on (generic term)|process (generic term)
+(verb)|exploit|work (generic term)|put to work (generic term)
+overworking|1
+(noun)|overwork|labor (generic term)|labour (generic term)|toil (generic term)
+overwrite|1
+(verb)|write (generic term)
+overwrought|1
+(adj)|distraught|agitated (similar term)
+overzealous|1
+(adj)|fanatic|fanatical|rabid|passionate (similar term)
+ovibos|1
+(noun)|Ovibos|genus Ovibos|mammal genus (generic term)
+ovibos moschatus|1
+(noun)|musk ox|musk sheep|Ovibos moschatus|bovid (generic term)
+ovid|1
+(noun)|Ovid|Publius Ovidius Naso|poet (generic term)
+oviduct|1
+(noun)|Fallopian tube|uterine tube|salpinx (generic term)|female internal reproductive organ (generic term)
+oviedo|1
+(noun)|Oviedo|city (generic term)|metropolis (generic term)|urban center (generic term)
+oviform|1
+(adj)|egg-shaped|elliptic|elliptical|oval|oval-shaped|ovate|ovoid|prolate|rounded (similar term)
+ovimbundu|1
+(noun)|Mbundu|Ovimbundu|ethnic group (generic term)|ethnos (generic term)
+ovine|1
+(adj)|bovid (related term)
+oviparous|1
+(adj)|broody (similar term)|ovoviviparous (antonym)|viviparous (antonym)
+ovipositor|1
+(noun)|organ (generic term)
+oviraptorid|1
+(noun)|maniraptor (generic term)
+ovis|1
+(noun)|Ovis|genus Ovis|mammal genus (generic term)
+ovis ammon|1
+(noun)|argali|argal|Ovis ammon|wild sheep (generic term)
+ovis aries|1
+(noun)|domestic sheep|Ovis aries|sheep (generic term)
+ovis canadensis|1
+(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+ovis montana dalli|1
+(noun)|Dall sheep|Dall's sheep|white sheep|Ovis montana dalli|wild sheep (generic term)
+ovis musimon|1
+(noun)|mouflon|moufflon|Ovis musimon|mountain sheep (generic term)
+ovis poli|1
+(noun)|Marco Polo sheep|Marco Polo's sheep|Ovis poli|wild sheep (generic term)
+ovis vignei|1
+(noun)|urial|Ovis vignei|wild sheep (generic term)
+ovocon|1
+(noun)|Ovocon|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+ovoflavin|1
+(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|hepatoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+ovoid|2
+(adj)|egg-shaped|elliptic|elliptical|oval|oval-shaped|ovate|oviform|prolate|rounded (similar term)
+(noun)|solid (generic term)
+ovolo|1
+(noun)|thumb|quarter round|molding (generic term)|moulding (generic term)
+ovotestis|1
+(noun)|gonad (generic term)|sex gland (generic term)
+ovoviviparous|1
+(adj)|viviparous (antonym)|oviparous (antonym)
+ovral|1
+(noun)|Ovral|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+ovrette|1
+(noun)|Ovrette|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+ovular|2
+(adj)|reproductive structure (related term)
+(adj)|gamete (related term)
+ovulate|1
+(verb)|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+ovulation|1
+(noun)|organic process (generic term)|biological process (generic term)|anovulation (antonym)
+ovulation method|1
+(noun)|ovulation method of family planning|natural family planning (generic term)
+ovulation method of family planning|1
+(noun)|ovulation method|natural family planning (generic term)
+ovule|2
+(noun)|reproductive structure (generic term)
+(noun)|ovum (generic term)|egg cell (generic term)
+ovulen|1
+(noun)|Ovulen|pill (generic term)|birth control pill (generic term)|contraceptive pill (generic term)|oral contraceptive pill (generic term)|oral contraceptive (generic term)|anovulatory drug (generic term)|anovulant (generic term)
+ovum|1
+(noun)|egg cell|gamete (generic term)
+owe|2
+(verb)|repose on (generic term)|rest on (generic term)|build on (generic term)|build upon (generic term)
+(verb)|be (generic term)
+owed|2
+(adj)|due|callable (similar term)|collect (similar term)|cod (similar term)|collectible (similar term)|collectable (similar term)|payable (similar term)|delinquent (similar term)|overdue (similar term)|owing (similar term)|receivable (similar term)|out-of-pocket (similar term)|repayable (similar term)|undue (antonym)
+(adj)|outstanding|owing|undischarged|unpaid (similar term)
+owen|2
+(noun)|Owen|Robert Owen|industrialist (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(noun)|Owen|Sir Richard Owen|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|comparative anatomist (generic term)
+owen glendower|1
+(noun)|Glendower|Owen Glendower|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+owen wister|1
+(noun)|Wister|Owen Wister|writer (generic term)|author (generic term)
+owens|1
+(noun)|Owens|Jesse Owens|James Cleveland Owens|athlete (generic term)|jock (generic term)
+owensboro|1
+(noun)|Owensboro|town (generic term)
+owing|2
+(adj)|outstanding|owed|undischarged|unpaid (similar term)
+(adj)|due (similar term)|owed (similar term)
+owl|1
+(noun)|bird of Minerva|bird of night|hooter|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+owlclaws|1
+(noun)|orange sneezeweed|Helenium hoopesii|sneezeweed (generic term)
+owlet|1
+(noun)|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+owlet moth|1
+(noun)|noctuid moth|noctuid|moth (generic term)
+owlish|1
+(adj)|wise (similar term)
+owlt|1
+(noun)|one-way light time|OWLT|elapsed time (generic term)
+own|2
+(adj)|ain|personal (similar term)
+(verb)|have|possess
+own goal|1
+(noun)|goal (generic term)
+own right|1
+(noun)|title (generic term)|claim (generic term)
+own up|1
+(verb)|fess up|concede (generic term)|profess (generic term)|confess (generic term)
+owned|1
+(adj)|closely-held (similar term)|unowned (antonym)
+owner|2
+(noun)|proprietor|businessman (generic term)|man of affairs (generic term)
+(noun)|possessor|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+owner-driver|1
+(noun)|driver (generic term)
+owner-occupied|1
+(adj)|inhabited (similar term)
+owner-occupier|1
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+ownerless|1
+(adj)|unowned|owned (antonym)
+ownership|3
+(noun)|relation (generic term)
+(noun)|possession|control (generic term)
+(noun)|state (generic term)
+ox|2
+(noun)|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(noun)|wild ox|bovine (generic term)
+ox-eyed|1
+(adj)|eyed (similar term)
+ox-eyed daisy|1
+(noun)|oxeye daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+oxacillin|1
+(noun)|penicillinase-resistant antibiotic (generic term)
+oxalacetate|1
+(noun)|oxaloacetate|salt (generic term)
+oxalacetic acid|1
+(noun)|oxaloacetic acid|acid (generic term)
+oxalate|1
+(noun)|salt (generic term)
+oxalic acid|1
+(noun)|ethanedioic acid|acid (generic term)
+oxalidaceae|1
+(noun)|Oxalidaceae|family Oxalidaceae|wood-sorrel family|rosid dicot family (generic term)
+oxalis|1
+(noun)|sorrel|wood sorrel|herb (generic term)|herbaceous plant (generic term)
+oxalis acetosella|1
+(noun)|common wood sorrel|cuckoo bread|shamrock|Oxalis acetosella|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis caprina|1
+(noun)|goatsfoot|goat's foot|Oxalis caprina|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis cernua|1
+(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis corniculata|1
+(noun)|creeping oxalis|creeping wood sorrel|Oxalis corniculata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis crenata|1
+(noun)|oca|oka|Oxalis tuberosa|Oxalis crenata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis pes-caprae|1
+(noun)|Bermuda buttercup|English-weed|Oxalis pes-caprae|Oxalis cernua|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis tuberosa|1
+(noun)|oca|oka|Oxalis tuberosa|Oxalis crenata|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxalis violacea|1
+(noun)|violet wood sorrel|Oxalis violacea|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+oxaloacetate|1
+(noun)|oxalacetate|salt (generic term)
+oxaloacetic acid|1
+(noun)|oxalacetic acid|acid (generic term)
+oxandra|1
+(noun)|Oxandra|genus Oxandra|magnoliid dicot genus (generic term)
+oxandra lanceolata|1
+(noun)|lancewood|lancewood tree|Oxandra lanceolata|tree (generic term)
+oxaprozin|1
+(noun)|Daypro|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+oxazepam|1
+(noun)|Serax|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+oxblood red|1
+(noun)|dark red (generic term)
+oxbow|3
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|meander (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+oxbow lake|1
+(noun)|lake (generic term)
+oxbridge|1
+(noun)|Oxbridge|university (generic term)
+oxcart|1
+(noun)|cart (generic term)
+oxen|1
+(noun)|cattle|cows|kine|Bos taurus|bovine (generic term)
+oxeye|3
+(noun)|heliopsis|wildflower (generic term)|wild flower (generic term)
+(noun)|wildflower (generic term)|wild flower (generic term)
+(noun)|dormer window (generic term)
+oxeye daisy|2
+(noun)|Leucanthemum maximum|Chrysanthemum maximum|composite (generic term)|composite plant (generic term)
+(noun)|ox-eyed daisy|marguerite|moon daisy|white daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+oxford|4
+(noun)|Oxford|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Oxford|town (generic term)
+(noun)|Oxford University|Oxford|university (generic term)
+(noun)|shoe (generic term)
+oxford-gray|1
+(adj)|oxford-grey|dark-grey|dark-gray|achromatic (similar term)
+oxford-grey|1
+(adj)|oxford-gray|dark-grey|dark-gray|achromatic (similar term)
+oxford english|1
+(noun)|Oxford English|English (generic term)|English language (generic term)
+oxford english dictionary|1
+(noun)|Oxford English Dictionary|O.E.D.|OED|unabridged dictionary (generic term)|unabridged (generic term)
+oxford gray|1
+(noun)|charcoal|charcoal grey|charcoal gray|oxford grey|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+oxford grey|1
+(noun)|charcoal|charcoal grey|charcoal gray|oxford gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+oxford movement|1
+(noun)|Oxford movement|religious movement (generic term)
+oxford university|1
+(noun)|Oxford University|Oxford|university (generic term)
+oxheart|2
+(noun)|heart cherry|oxheart cherry|sweet cherry (generic term)|Prunus avium (generic term)
+(noun)|heart cherry|oxheart cherry|sweet cherry (generic term)|black cherry (generic term)
+oxheart cherry|2
+(noun)|heart cherry|oxheart|sweet cherry (generic term)|Prunus avium (generic term)
+(noun)|heart cherry|oxheart|sweet cherry (generic term)|black cherry (generic term)
+oxidant|1
+(noun)|oxidizer|oxidiser|oxidizing agent|chemical agent (generic term)
+oxidase|1
+(noun)|enzyme (generic term)
+oxidate|2
+(verb)|oxidise|oxidize|change (generic term)
+(verb)|oxidize|oxidise|change (generic term)|alter (generic term)|modify (generic term)|change (generic term)|deoxidise (antonym)|deoxidize (antonym)
+oxidation|1
+(noun)|oxidization|oxidisation|chemical reaction (generic term)|reaction (generic term)
+oxidation-reduction|1
+(noun)|oxidoreduction|redox|chemical reaction (generic term)|reaction (generic term)
+oxidation-reduction indicator|1
+(noun)|indicator (generic term)
+oxidation number|1
+(noun)|oxidation state|number (generic term)
+oxidation state|1
+(noun)|oxidation number|number (generic term)
+oxidative|1
+(adj)|aerobic (similar term)|aerophilic (similar term)|aerophilous (similar term)
+oxidative phosphorylation|1
+(noun)|organic process (generic term)|biological process (generic term)
+oxide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+oxidisation|1
+(noun)|oxidation|oxidization|chemical reaction (generic term)|reaction (generic term)
+oxidise|2
+(verb)|oxidize|oxidate|change (generic term)|alter (generic term)|modify (generic term)|change (generic term)|deoxidise (antonym)|deoxidize (antonym)
+(verb)|oxidize|oxidate|change (generic term)
+oxidised|1
+(adj)|oxidized
+oxidiser|1
+(noun)|oxidant|oxidizer|oxidizing agent|chemical agent (generic term)
+oxidizable|1
+(adj)|reactive (similar term)
+oxidization|1
+(noun)|oxidation|oxidisation|chemical reaction (generic term)|reaction (generic term)
+oxidize|2
+(verb)|oxidise|oxidate|change (generic term)
+(verb)|oxidise|oxidate|change (generic term)|alter (generic term)|modify (generic term)|change (generic term)|deoxidise (antonym)|deoxidize (antonym)
+oxidized|1
+(adj)|oxidised
+oxidized ldl cholesterol|1
+(noun)|oxidized LDL cholesterol|LDL cholesterol (generic term)
+oxidizer|1
+(noun)|oxidant|oxidiser|oxidizing agent|chemical agent (generic term)
+oxidizing agent|1
+(noun)|oxidant|oxidizer|oxidiser|chemical agent (generic term)
+oxidoreductase|1
+(noun)|enzyme (generic term)
+oxidoreduction|1
+(noun)|oxidation-reduction|redox|chemical reaction (generic term)|reaction (generic term)
+oxime|1
+(noun)|organic compound (generic term)
+oximeter|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+oxlip|1
+(noun)|paigle|Primula elatior|primrose (generic term)|primula (generic term)
+oxonian|3
+(adj)|Oxonian|university (related term)
+(adj)|Oxonian|city|metropolis|urban center (related term)
+(noun)|Oxonian|English person (generic term)
+oxtail|1
+(noun)|tail (generic term)
+oxtail soup|1
+(noun)|soup (generic term)
+oxtant|1
+(noun)|angular unit (generic term)
+oxtongue|1
+(noun)|bristly oxtongue|bitterweed|bugloss|Picris echioides|weed (generic term)
+oxyacetylene|2
+(adj)|fueled (similar term)
+(noun)|mixture (generic term)
+oxyacetylene torch|1
+(noun)|blowtorch (generic term)|torch (generic term)|blowlamp (generic term)
+oxyacid|1
+(noun)|oxygen acid|acid (generic term)
+oxybelis|1
+(noun)|Oxybelis|genus Oxybelis|reptile genus (generic term)
+oxybenzene|1
+(noun)|carbolic acid|phenol|hydroxybenzene|phenylic acid|acid (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+oxybutyric acid|1
+(noun)|hydroxybutyric acid|butyric acid (generic term)|butanoic acid (generic term)
+oxycephaly|1
+(noun)|acrocephaly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+oxydendrum|1
+(noun)|Oxydendrum|genus Oxydendrum|dilleniid dicot genus (generic term)
+oxydendrum arboreum|1
+(noun)|sorrel tree|sourwood|titi|Oxydendrum arboreum|angiospermous tree (generic term)|flowering tree (generic term)
+oxygen|1
+(noun)|O|atomic number 8|chemical element (generic term)|element (generic term)|gas (generic term)
+oxygen acid|1
+(noun)|oxyacid|acid (generic term)
+oxygen debt|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+oxygen deficit|1
+(noun)|deficit (generic term)|shortage (generic term)|shortfall (generic term)
+oxygen mask|1
+(noun)|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+oxygenase|1
+(noun)|oxidoreductase (generic term)
+oxygenate|1
+(verb)|oxygenize|oxygenise|aerate|process (generic term)|treat (generic term)
+oxygenation|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+oxygenise|3
+(verb)|oxygenize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|oxygenize|dehydrogenate (generic term)
+(verb)|oxygenate|oxygenize|aerate|process (generic term)|treat (generic term)
+oxygenize|3
+(verb)|oxygenise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|oxygenise|dehydrogenate (generic term)
+(verb)|oxygenate|oxygenise|aerate|process (generic term)|treat (generic term)
+oxyhaemoglobin|1
+(noun)|oxyhemoglobin|hemoglobin (generic term)|haemoglobin (generic term)|Hb (generic term)
+oxyhemoglobin|1
+(noun)|oxyhaemoglobin|hemoglobin (generic term)|haemoglobin (generic term)|Hb (generic term)
+oxylebius|1
+(noun)|Oxylebius|genus Oxylebius|fish genus (generic term)
+oxylebius pictus|1
+(noun)|painted greenling|convict fish|convictfish|Oxylebius pictus|greenling (generic term)
+oxymoron|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+oxyopia|1
+(noun)|acuity (generic term)|visual acuity (generic term)|sharp-sightedness (generic term)
+oxyphenbutazone|1
+(noun)|Tandearil|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+oxyphencyclimine|1
+(noun)|Daricon|anticholinergic (generic term)|anticholinergic drug (generic term)
+oxytetracycline|1
+(noun)|hydroxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic (generic term)|antibiotic drug (generic term)
+oxytetracycline hydrochloride|1
+(noun)|oxytetracycline|hydroxytetracycline|Terramycin|antibiotic (generic term)|antibiotic drug (generic term)
+oxytocic|1
+(noun)|oxytocic drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+oxytocic drug|1
+(noun)|oxytocic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+oxytocin|1
+(noun)|Pitocin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+oxytone|1
+(noun)|word (generic term)
+oxytropis|1
+(noun)|Oxytropis|genus Oxytropis|rosid dicot genus (generic term)
+oxytropis lambertii|1
+(noun)|purple locoweed|purple loco|Oxytropis lambertii|locoweed (generic term)|crazyweed (generic term)|crazy weed (generic term)
+oxyura|1
+(noun)|Oxyura|genus Oxyura|bird genus (generic term)
+oxyura jamaicensis|1
+(noun)|ruddy duck|Oxyura jamaicensis|duck (generic term)
+oxyuranus|1
+(noun)|Oxyuranus|genus Oxyuranus|reptile genus (generic term)
+oxyuranus scutellatus|1
+(noun)|taipan|Oxyuranus scutellatus|elapid (generic term)|elapid snake (generic term)
+oxyuridae|1
+(noun)|Oxyuridae|family Oxyuridae|worm family (generic term)
+oyabun|1
+(noun)|supervisor (generic term)
+oyster|4
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(noun)|huitre|shellfish (generic term)
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+oyster-fish|1
+(noun)|oyster fish|oysterfish|toadfish (generic term)|Opsanus tau (generic term)
+oyster agaric|1
+(noun)|oyster mushroom|oyster fungus|Pleurotus ostreatus|agaric (generic term)
+oyster bank|1
+(noun)|oyster bed|oyster park|workplace (generic term)|work (generic term)
+oyster bar|1
+(noun)|bar (generic term)
+oyster bed|1
+(noun)|oyster bank|oyster park|workplace (generic term)|work (generic term)
+oyster catcher|1
+(noun)|oystercatcher|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+oyster crab|1
+(noun)|Pinnotheres ostreum|pea crab (generic term)
+oyster cracker|1
+(noun)|cracker (generic term)
+oyster dressing|1
+(noun)|oyster stuffing|stuffing (generic term)|dressing (generic term)
+oyster fish|1
+(noun)|oyster-fish|oysterfish|toadfish (generic term)|Opsanus tau (generic term)
+oyster fungus|1
+(noun)|oyster mushroom|oyster agaric|Pleurotus ostreatus|agaric (generic term)
+oyster mushroom|1
+(noun)|oyster fungus|oyster agaric|Pleurotus ostreatus|agaric (generic term)
+oyster park|1
+(noun)|oyster bed|oyster bank|workplace (generic term)|work (generic term)
+oyster plant|3
+(noun)|salsify|root (generic term)
+(noun)|salsify|vegetable oyster|Tragopogon porrifolius|herb (generic term)|herbaceous plant (generic term)
+(noun)|vegetable oyster|salsify (generic term)
+oyster shell|1
+(noun)|shell (generic term)
+oyster stew|1
+(noun)|stew (generic term)
+oyster stuffing|1
+(noun)|oyster dressing|stuffing (generic term)|dressing (generic term)
+oystercatcher|1
+(noun)|oyster catcher|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+oysterfish|1
+(noun)|oyster fish|oyster-fish|toadfish (generic term)|Opsanus tau (generic term)
+oysters rockefeller|1
+(noun)|oysters Rockefeller|huitre (generic term)|oyster (generic term)
+oz.|1
+(noun)|ounce|avoirdupois unit (generic term)
+ozaena|1
+(noun)|ozena|disease (generic term)
+ozark chinkapin|1
+(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut (generic term)|chestnut tree (generic term)
+ozark chinquapin|1
+(noun)|Ozark chinkapin|Ozark chinquapin|chinquapin|Castanea ozarkensis|chestnut (generic term)|chestnut tree (generic term)
+ozark mountains|1
+(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+ozark plateau|1
+(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+ozark sundrops|1
+(noun)|Missouri primrose|Ozark sundrops|Oenothera macrocarpa|evening primrose (generic term)
+ozarks|1
+(noun)|Ozarks|Ozark Mountains|Ozark Plateau|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+ozawa|1
+(noun)|Ozawa|Seiji Ozawa|conductor (generic term)|music director (generic term)|director (generic term)
+ozena|1
+(noun)|ozaena|disease (generic term)
+ozocerite|1
+(noun)|ader wax|earth wax|mineral wax|ozokerite|mineral (generic term)
+ozokerite|1
+(noun)|ader wax|earth wax|mineral wax|ozocerite|mineral (generic term)
+ozone|1
+(noun)|gas (generic term)
+ozone hole|1
+(noun)|hole (generic term)
+ozone layer|1
+(noun)|ozonosphere|layer (generic term)
+ozone sickness|1
+(noun)|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+ozonide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+ozonium|1
+(noun)|Ozonium|genus Ozonium|fungus genus (generic term)
+ozonize|1
+(verb)|convert (generic term)
+ozonosphere|1
+(noun)|ozone layer|layer (generic term)
+ozothamnus|1
+(noun)|Ozothamnus|genus Ozothamnus|asterid dicot genus (generic term)
+ozothamnus secundiflorus|1
+(noun)|cascade everlasting|Ozothamnus secundiflorus|Helichrysum secundiflorum|everlasting (generic term)|everlasting flower (generic term)
+p|2
+(noun)|phosphorus|P|atomic number 15|chemical element (generic term)|element (generic term)
+(noun)|P|letter p|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+p-n-p transistor|1
+(noun)|transistor (generic term)|junction transistor (generic term)|electronic transistor (generic term)
+p-n junction|1
+(noun)|contact (generic term)|tangency (generic term)
+p-type semiconductor|1
+(noun)|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+p. g. wodehouse|1
+(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer (generic term)|author (generic term)
+p. p. von mauser|1
+(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor (generic term)|discoverer (generic term)|artificer (generic term)|arms manufacturer (generic term)
+p. t. barnum|1
+(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman (generic term)|promoter (generic term)|impresario (generic term)
+p.a.|2
+(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system (generic term)
+(adv)|per annum|per year|each year|annually
+p.a. system|1
+(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system (generic term)
+p.e.|1
+(noun)|potential energy|P.E.|mechanical energy (generic term)
+p.m.|2
+(adj)|post meridiem|pm|postmeridian (similar term)
+(adv)|post meridiem|P.M.|PM
+p.o.|1
+(noun)|petty officer|PO|P.O.|noncommissioned officer (generic term)|noncom (generic term)
+p/e ratio|1
+(noun)|price-to-earnings ratio|P/E ratio|ratio (generic term)
+pa|5
+(noun)|dad|dada|daddy|papa|pappa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+(noun)|protactinium|protoactinium|Pa|atomic number 91|metallic element (generic term)|metal (generic term)
+(noun)|pascal|Pa|pressure unit (generic term)
+(noun)|Pennsylvania|Keystone State|PA|American state (generic term)
+(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system (generic term)
+pa'anga|1
+(noun)|Tongan monetary unit (generic term)
+pa system|1
+(noun)|public address system|P.A. system|PA system|P.A.|PA|communication system (generic term)
+paba|1
+(noun)|para aminobenzoic acid|PABA|acid (generic term)
+pabir|1
+(noun)|Bura|Pabir|Biu-Mandara (generic term)
+pablo casals|1
+(noun)|Casals|Pablo Casals|cellist (generic term)|violoncellist (generic term)
+pablo neruda|1
+(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet (generic term)
+pablo picasso|1
+(noun)|Picasso|Pablo Picasso|painter (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+pablum|2
+(noun)|Pablum|cereal (generic term)
+(noun)|pap|drivel (generic term)|garbage (generic term)
+pabulum|2
+(noun)|comestible|edible|eatable|victual|victuals|food (generic term)|nutrient (generic term)
+(noun)|food (generic term)|food for thought (generic term)|intellectual nourishment (generic term)
+pac|1
+(noun)|political action committee|PAC|committee (generic term)|commission (generic term)
+pac-man strategy|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+paca|1
+(noun)|Cuniculus paca|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+pace|10
+(noun)|gait|rate (generic term)
+(noun)|footstep|step|stride|indefinite quantity (generic term)
+(noun)|rate|temporal property (generic term)
+(noun)|stride|tread|step (generic term)
+(noun)|tempo|rate (generic term)
+(noun)|yard|linear unit (generic term)
+(verb)|walk (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|step|quantify (generic term)|measure (generic term)
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+pace car|1
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+pace lap|1
+(noun)|lap (generic term)|circle (generic term)|circuit (generic term)
+pacemaker|4
+(noun)|pacesetter|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+(noun)|cardiac pacemaker|sinoatrial node|SA node|cardiac muscle (generic term)|heart muscle (generic term)
+(noun)|artificial pacemaker|electronic device (generic term)
+(noun)|pacer|pacesetter|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+pacer|2
+(noun)|pacemaker|pacesetter|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+pacesetter|2
+(noun)|pacemaker|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+(noun)|pacer|pacemaker|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+pacha|1
+(noun)|pasha|authority (generic term)
+pachinko|1
+(noun)|pinball (generic term)|pinball game (generic term)
+pachisi|1
+(noun)|board game (generic term)
+pachouli|2
+(noun)|patchouli|patchouly|Pogostemon cablin|shrub (generic term)|bush (generic term)
+(noun)|patchouli|patchouly|perfume (generic term)|essence (generic term)
+pachuco|1
+(noun)|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+pachycephala|1
+(noun)|Pachycephala|genus Pachycephala|bird genus (generic term)
+pachycephalosaur|1
+(noun)|pachycephalosaurus|bone-headed dinosaur (generic term)
+pachycephalosaurus|1
+(noun)|pachycephalosaur|bone-headed dinosaur (generic term)
+pachycheilia|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+pachyderm|1
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+pachyderma|1
+(noun)|nevoid elephantiasis|elephantiasis (generic term)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+pachydermal|1
+(adj)|pachydermatous|pachydermic|pachydermous|placental|placental mammal|eutherian|eutherian mammal (related term)
+pachydermatous|2
+(adj)|pachydermal|pachydermic|pachydermous|placental|placental mammal|eutherian|eutherian mammal (related term)
+(adj)|callous|indurate|insensitive (similar term)
+pachydermic|1
+(adj)|pachydermatous|pachydermal|pachydermous|placental|placental mammal|eutherian|eutherian mammal (related term)
+pachydermous|1
+(adj)|pachydermatous|pachydermal|pachydermic|placental|placental mammal|eutherian|eutherian mammal (related term)
+pachyrhizus|1
+(noun)|Pachyrhizus|genus Pachyrhizus|rosid dicot genus (generic term)
+pachyrhizus erosus|1
+(noun)|yam bean|Pachyrhizus erosus|vine (generic term)
+pachyrhizus tuberosus|1
+(noun)|yam bean|potato bean|Pachyrhizus tuberosus|vine (generic term)
+pachysandra|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+pachysandra procumbens|1
+(noun)|Allegheny spurge|Allegheny mountain spurge|Pachysandra procumbens|pachysandra (generic term)
+pachysandra terminalis|1
+(noun)|Japanese spurge|Pachysandra terminalis|pachysandra (generic term)
+pachytene|1
+(noun)|phase (generic term)|stage (generic term)
+pacific|4
+(adj)|peaceful (similar term)
+(adj)|Pacific|ocean (related term)
+(adj)|peaceable|peaceful (similar term)
+(noun)|Pacific|Pacific Ocean|ocean (generic term)
+pacific bonito|1
+(noun)|Pacific bonito|Sarda lineolata|bonito (generic term)
+pacific bottlenose dolphin|1
+(noun)|Pacific bottlenose dolphin|Tursiops gilli|bottlenose dolphin (generic term)|bottle-nosed dolphin (generic term)|bottlenose (generic term)
+pacific coast|1
+(noun)|Pacific Coast|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+pacific cod|1
+(noun)|Pacific cod|Alaska cod|Gadus macrocephalus|cod (generic term)|codfish (generic term)
+pacific giant salamander|1
+(noun)|Pacific giant salamander|Dicamptodon ensatus|salamander (generic term)
+pacific halibut|1
+(noun)|Pacific halibut|Hippoglossus stenolepsis|righteye flounder (generic term)|righteyed flounder (generic term)
+pacific hemlock|1
+(noun)|western hemlock|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock (generic term)|hemlock tree (generic term)
+pacific herring|1
+(noun)|Pacific herring|Clupea harengus pallasii|herring (generic term)|Clupea harangus (generic term)
+pacific newt|1
+(noun)|Pacific newt|newt (generic term)|triton (generic term)
+pacific northwest|1
+(noun)|Pacific Northwest|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+pacific ocean|1
+(noun)|Pacific|Pacific Ocean|ocean (generic term)
+pacific plum|1
+(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum (generic term)|plum tree (generic term)
+pacific ridley|1
+(noun)|Pacific ridley|olive ridley|Lepidochelys olivacea|ridley (generic term)
+pacific sardine|1
+(noun)|Pacific sardine|Sardinops caerulea|pilchard (generic term)|sardine (generic term)|Sardina pilchardus (generic term)
+pacific silver fir|1
+(noun)|amabilis fir|white fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+pacific spiny dogfish|1
+(noun)|Pacific spiny dogfish|Squalus suckleyi|spiny dogfish (generic term)
+pacific standard time|1
+(noun)|Pacific Time|Pacific Standard Time|PST|civil time (generic term)|standard time (generic term)|local time (generic term)
+pacific sturgeon|1
+(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon (generic term)
+pacific time|1
+(noun)|Pacific Time|Pacific Standard Time|PST|civil time (generic term)|standard time (generic term)|local time (generic term)
+pacific tree toad|1
+(noun)|Pacific tree toad|Hyla regilla|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+pacific tripletail|1
+(noun)|Pacific tripletail|Lobotes pacificus|tripletail (generic term)
+pacific walrus|1
+(noun)|Pacific walrus|Odobenus divergens|walrus (generic term)|seahorse (generic term)|sea horse (generic term)
+pacific yew|1
+(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew (generic term)
+pacifically|1
+(adv)|peaceably
+pacification|3
+(noun)|mollification|appeasement (generic term)|calming (generic term)
+(noun)|peace|peace treaty|treaty (generic term)|pact (generic term)|accord (generic term)
+(noun)|counterinsurgency|conflict (generic term)|struggle (generic term)|battle (generic term)
+pacificism|2
+(noun)|pacifism|passivism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|pacifism|belief (generic term)
+pacificist|1
+(noun)|pacifist|disarmer|adult (generic term)|grownup (generic term)
+pacifier|2
+(noun)|conciliator|make-peace|peacemaker|reconciler|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+(noun)|comforter|baby's dummy|teething ring|device (generic term)
+pacifism|2
+(noun)|pacificism|passivism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|pacificism|belief (generic term)
+pacifist|2
+(adj)|pacifistic|dovish|peaceful (similar term)
+(noun)|pacificist|disarmer|adult (generic term)|grownup (generic term)
+pacifistic|1
+(adj)|pacifist|dovish|peaceful (similar term)
+pacify|2
+(verb)|lenify|conciliate|assuage|appease|mollify|placate|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+(verb)|establish (generic term)|give (generic term)
+pacifying|1
+(adj)|assuasive|calming|soothing|reassuring (similar term)
+pacing|2
+(noun)|tempo|musical time (generic term)
+(noun)|gait (generic term)
+pacinian corpuscle|1
+(noun)|Pacinian corpuscle|nerve ending (generic term)|nerve end (generic term)
+pack|22
+(noun)|battalion|large number|multitude|plurality|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|package (generic term)|parcel (generic term)
+(noun)|gang|ring|mob|association (generic term)
+(noun)|clique|coterie|ingroup|inner circle|camp|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|animal group (generic term)
+(noun)|face pack|corrective (generic term)|restorative (generic term)
+(noun)|corrective (generic term)|restorative (generic term)
+(noun)|bundle (generic term)|sheaf (generic term)
+(verb)|encase (generic term)|incase (generic term)|case (generic term)|unpack (antonym)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|bundle|wad|compact|arrange (generic term)|set up (generic term)|bundle off (related term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|appoint (generic term)|name (generic term)|nominate (generic term)|constitute (generic term)
+(verb)|carry|take|have (generic term)|feature (generic term)
+(verb)|throng|mob|pile|jam|crowd (generic term)|crowd together (generic term)
+(verb)|backpack|hike (generic term)
+(verb)|tamp down|tamp|compress (generic term)|compact (generic term)|pack together (generic term)
+(verb)|seal (generic term)|seal off (generic term)
+(verb)|compact|be (generic term)
+(verb)|load down|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+(verb)|treat (generic term)|care for (generic term)
+pack animal|1
+(noun)|sumpter|beast of burden (generic term)|jument (generic term)
+pack ice|1
+(noun)|Ice pack|ice (generic term)
+pack of cards|1
+(noun)|deck of cards|deck|pack (generic term)
+pack on|1
+(verb)|gain (generic term)|put on (generic term)
+pack rat|2
+(noun)|magpie|scavenger|hoarder (generic term)
+(noun)|packrat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat (generic term)|wood-rat (generic term)
+pack riding|1
+(noun)|riding (generic term)|horseback riding (generic term)
+pack tent|1
+(noun)|backpacking tent|tent (generic term)|collapsible shelter (generic term)
+pack together|1
+(verb)|compress|compact|wedge (generic term)|squeeze (generic term)|force (generic term)|decompress (antonym)
+packable|1
+(adj)|package|parcel (related term)
+package|4
+(noun)|bundle|packet|parcel|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|parcel|container (generic term)
+(noun)|software|software program|computer software|software system|software package|code (generic term)|computer code (generic term)|hardware (antonym)
+(verb)|box|encase (generic term)|incase (generic term)|case (generic term)|unbox (antonym)
+package bomb|1
+(noun)|letter bomb|parcel bomb|bomb (generic term)
+package holiday|1
+(noun)|package tour|tour (generic term)|circuit (generic term)
+package store|1
+(noun)|liquor store|off-licence|shop (generic term)|store (generic term)
+package tour|1
+(noun)|package holiday|tour (generic term)|circuit (generic term)
+packaged|1
+(adj)|prepackaged (similar term)|prepacked (similar term)|unpackaged (antonym)
+packaged goods|1
+(noun)|grocery (generic term)|foodstuff (generic term)
+packaging|3
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|promotion|publicity|promotional material|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|material (generic term)
+packaging company|1
+(noun)|packaging concern|company (generic term)
+packaging concern|1
+(noun)|packaging company|company (generic term)
+packed|2
+(adj)|jammed|jam-packed|crowded (similar term)
+(adj)|compact (similar term)
+packed cell volume|1
+(noun)|hematocrit|haematocrit|ratio (generic term)
+packed cells|1
+(noun)|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)
+packer|3
+(noun)|bagger|boxer|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|meat packer|jobber (generic term)|middleman (generic term)|wholesaler (generic term)
+(noun)|backpacker|hiker (generic term)|tramp (generic term)|tramper (generic term)
+packera|1
+(noun)|Packera|genus Packera|asterid dicot genus (generic term)
+packera aurea|1
+(noun)|golden groundsel|golden ragwort|Packera aurea|Senecio aureus|herb (generic term)|herbaceous plant (generic term)
+packet|4
+(noun)|package|bundle|parcel|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|message (generic term)
+(noun)|package (generic term)|parcel (generic term)
+(noun)|mailboat|mail boat|packet boat|boat (generic term)
+packet boat|1
+(noun)|mailboat|mail boat|packet|boat (generic term)
+packhorse|1
+(noun)|workhorse (generic term)|pack animal (generic term)|sumpter (generic term)
+packing|3
+(noun)|packing material|wadding|material (generic term)|stuff (generic term)
+(noun)|boxing|enclosure (generic term)|enclosing (generic term)|envelopment (generic term)|inclosure (generic term)
+(noun)|backpacking|carry (generic term)
+packing box|2
+(noun)|stuffing box|chamber (generic term)
+(noun)|packing case|crate (generic term)
+packing case|1
+(noun)|packing box|crate (generic term)
+packing material|1
+(noun)|packing|wadding|material (generic term)|stuff (generic term)
+packing needle|1
+(noun)|needle (generic term)
+packing nut|1
+(noun)|stuffing nut|nut (generic term)
+packing plant|1
+(noun)|packinghouse|plant (generic term)|works (generic term)|industrial plant (generic term)
+packinghouse|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|packing plant|plant (generic term)|works (generic term)|industrial plant (generic term)
+packman|1
+(noun)|peddler|pedlar|hawker|pitchman|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+packrat|2
+(noun)|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+(noun)|pack rat|trade rat|bushytail woodrat|Neotoma cinerea|wood rat (generic term)|wood-rat (generic term)
+packsack|1
+(noun)|backpack|back pack|knapsack|rucksack|haversack|bag (generic term)
+packsaddle|1
+(noun)|saddle (generic term)
+packthread|1
+(noun)|string (generic term)|twine (generic term)
+pact|1
+(noun)|treaty|accord|written agreement (generic term)
+pad|11
+(noun)|pad of paper|tablet|paper (generic term)
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|inkpad|inking pad|stamp pad|block (generic term)
+(noun)|padding (generic term)|cushioning (generic term)
+(noun)|launching pad|launchpad|launch pad|launch area|platform (generic term)
+(noun)|diggings|digs|domiciliation|lodgings|living quarters (generic term)|quarters (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(verb)|embroider|lard|embellish|aggrandize|aggrandise|blow up|dramatize|dramatise|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|slog|footslog|plod|trudge|tramp|walk (generic term)
+(verb)|fill out|stuff (generic term)
+(verb)|bolster|fill (generic term)|fill up (generic term)|make full (generic term)
+pad of paper|1
+(noun)|pad|tablet|paper (generic term)
+padauk|1
+(noun)|padouk|amboyna|Pterocarpus indicus|tree (generic term)
+padda|1
+(noun)|Padda|genus Padda|bird genus (generic term)
+padda oryzivora|1
+(noun)|Java sparrow|Java finch|ricebird|Padda oryzivora|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+padded|1
+(adj)|cushioned|cushiony|soft (similar term)
+padder|1
+(noun)|footpad|highjacker (generic term)|highwayman (generic term)|hijacker (generic term)|road agent (generic term)
+padding|1
+(noun)|cushioning|artifact (generic term)|artefact (generic term)
+paddle|10
+(noun)|bat (generic term)
+(noun)|blade (generic term)|vane (generic term)
+(noun)|instrument of punishment (generic term)
+(noun)|boat paddle|oar (generic term)
+(verb)|boat (generic term)
+(verb)|dabble|splash around|play (generic term)
+(verb)|swim (generic term)
+(verb)|toddle|coggle|totter|dodder|waddle|walk (generic term)
+(verb)|spank|larrup|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|stir (generic term)
+paddle-box|1
+(noun)|paddle box|covering (generic term)
+paddle-shaped|1
+(adj)|formed (similar term)
+paddle-wheeler|1
+(noun)|paddle steamer|steamer (generic term)|steamship (generic term)
+paddle box|1
+(noun)|paddle-box|covering (generic term)
+paddle steamer|1
+(noun)|paddle-wheeler|steamer (generic term)|steamship (generic term)
+paddle wheel|1
+(noun)|paddlewheel|wheel (generic term)
+paddlefish|1
+(noun)|duckbill|Polyodon spathula|ganoid (generic term)|ganoid fish (generic term)
+paddler|1
+(noun)|canoeist|boatman (generic term)|boater (generic term)|waterman (generic term)
+paddlewheel|1
+(noun)|paddle wheel|wheel (generic term)
+paddock|1
+(noun)|pen (generic term)
+paddy|3
+(noun)|Paddy|Mick|Mickey|Irishman (generic term)
+(noun)|paddy field|rice paddy|field (generic term)
+(noun)|rice (generic term)
+paddy field|1
+(noun)|paddy|rice paddy|field (generic term)
+paddy wagon|1
+(noun)|police van|police wagon|patrol wagon|wagon|black Maria|van (generic term)
+paddymelon|1
+(noun)|pademelon|wallaby (generic term)|brush kangaroo (generic term)
+pademelon|1
+(noun)|paddymelon|wallaby (generic term)|brush kangaroo (generic term)
+paderewski|1
+(noun)|Paderewski|Ignace Paderewski|Ignace Jan Paderewski|pianist (generic term)|piano player (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+padlock|2
+(noun)|lock (generic term)
+(verb)|lock (generic term)
+padouk|1
+(noun)|padauk|amboyna|Pterocarpus indicus|tree (generic term)
+padova|1
+(noun)|Padua|Padova|Patavium|city (generic term)|metropolis (generic term)|urban center (generic term)
+padre|2
+(noun)|military chaplain|Holy Joe|sky pilot|chaplain (generic term)
+(noun)|Father|Padre|priest (generic term)|title (generic term)|title of respect (generic term)|form of address (generic term)
+padrone|2
+(noun)|host (generic term)|innkeeper (generic term)|boniface (generic term)
+(noun)|employer (generic term)
+padua|1
+(noun)|Padua|Padova|Patavium|city (generic term)|metropolis (generic term)|urban center (generic term)
+paducah|1
+(noun)|Paducah|town (generic term)
+paean|2
+(noun)|encomium|eulogy|panegyric|pean|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(noun)|pean|hymn (generic term)|anthem (generic term)
+paederast|1
+(noun)|pederast|child molester|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+paederastic|1
+(adj)|pederastic|homosexual (similar term)
+paederasty|1
+(noun)|pederasty|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)|paraphilia (generic term)
+paediatric|1
+(adj)|pediatric|medicine|medical specialty (related term)
+paediatrician|1
+(noun)|baby doctor|pediatrician|pediatrist|specialist (generic term)|medical specialist (generic term)
+paediatrics|1
+(noun)|pediatrics|pediatric medicine|pedology|medicine (generic term)|medical specialty (generic term)
+paedophile|1
+(noun)|pedophile|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+paedophilia|1
+(noun)|pedophilia|paraphilia (generic term)
+paella|1
+(noun)|dish (generic term)
+paeonia|1
+(noun)|Paeonia|genus Paeonia|magnoliid dicot genus (generic term)
+paeoniaceae|1
+(noun)|Paeoniaceae|family Paeoniaceae|peony family|magnoliid dicot family (generic term)
+paeony|1
+(noun)|peony|flower (generic term)
+pagad|1
+(noun)|People against Gangsterism and Drugs|PAGAD|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pagan|4
+(adj)|heathen|heathenish|ethnic|irreligious (similar term)
+(noun)|heathen|gentile|infidel|nonreligious person (generic term)
+(noun)|religious person (generic term)
+(noun)|hedonist|pleasure seeker|sensualist (generic term)
+pagan religion|1
+(noun)|paganism|heathenism|religion (generic term)|faith (generic term)|religious belief (generic term)
+paganini|1
+(noun)|Paganini|Niccolo Paganini|violinist (generic term)|fiddler (generic term)
+paganise|1
+(verb)|paganize|change (generic term)|alter (generic term)|modify (generic term)
+paganism|1
+(noun)|pagan religion|heathenism|religion (generic term)|faith (generic term)|religious belief (generic term)
+paganize|1
+(verb)|paganise|change (generic term)|alter (generic term)|modify (generic term)
+page|9
+(noun)|leaf (generic term)|folio (generic term)
+(noun)|Page|Sri Frederick Handley Page|industrialist (generic term)
+(noun)|Page|Thomas Nelson Page|writer (generic term)|author (generic term)|diplomat (generic term)|diplomatist (generic term)
+(noun)|pageboy|messenger boy (generic term)|errand boy (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|varlet|attendant (generic term)|attender (generic term)|tender (generic term)
+(verb)|summon (generic term)
+(verb)|work (generic term)
+(verb)|foliate|paginate|number (generic term)
+page-at-a-time printer|1
+(noun)|page printer|printer (generic term)|printing machine (generic term)
+page number|1
+(noun)|pagination|folio|paging|number (generic term)
+page printer|1
+(noun)|page-at-a-time printer|printer (generic term)|printing machine (generic term)
+pageant|2
+(noun)|pageantry|representation (generic term)
+(noun)|pageantry|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+pageantry|2
+(noun)|pageant|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|pageant|representation (generic term)
+pageboy|2
+(noun)|page|messenger boy (generic term)|errand boy (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+pagellus|1
+(noun)|Pagellus|genus Pagellus|fish genus (generic term)
+pagellus centrodontus|1
+(noun)|European sea bream|Pagellus centrodontus|sea bream (generic term)|bream (generic term)
+pager|1
+(noun)|beeper|electronic device (generic term)
+paget|1
+(noun)|Paget|Sir James Paget|diagnostician (generic term)|pathologist (generic term)
+paget's disease|1
+(noun)|Paget's disease|osteitis deformans|osteitis (generic term)
+paginate|1
+(verb)|foliate|page|number (generic term)
+pagination|1
+(noun)|folio|page number|paging|number (generic term)
+paging|2
+(noun)|utterance (generic term)|vocalization (generic term)
+(noun)|pagination|folio|page number|number (generic term)
+pago pago|1
+(noun)|Pago Pago|Pango Pango|port (generic term)
+pagoda|1
+(noun)|temple (generic term)
+pagoda tree|2
+(noun)|West Indian jasmine|Plumeria alba|frangipani (generic term)|frangipanni (generic term)
+(noun)|temple tree|Plumeria acutifolia|frangipani (generic term)|frangipanni (generic term)
+pagophila|1
+(noun)|Pagophila|genus Pagophila|bird genus (generic term)
+pagophila eburnea|1
+(noun)|ivory gull|Pagophila eburnea|gull (generic term)|seagull (generic term)|sea gull (generic term)
+pagophilus|1
+(noun)|Pagophilus|genus Pagophilus|mammal genus (generic term)
+pagophilus groenlandicus|1
+(noun)|harp seal|Pagophilus groenlandicus|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+pagrus|1
+(noun)|Pagrus|genus Pagrus|fish genus (generic term)
+pagrus pagrus|1
+(noun)|red porgy|Pagrus pagrus|porgy (generic term)
+paguridae|1
+(noun)|Paguridae|family Paguridae|arthropod family (generic term)
+pagurus|1
+(noun)|Pagurus|genus Pagurus|arthropod genus (generic term)
+pahautea|1
+(noun)|Libocedrus bidwillii|mountain pine|cedar (generic term)|cedar tree (generic term)
+pahlavi|3
+(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Pahlavi|Pahlevi|Mohammed Reza Pahlevi|Shah (generic term)|Shah of Iran (generic term)
+(noun)|Pahlavi|Iranian (generic term)|Iranian language (generic term)
+(noun)|Pahlavi|script (generic term)
+pahlevi|1
+(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Pahlavi|Pahlevi|Mohammed Reza Pahlevi|Shah (generic term)|Shah of Iran (generic term)
+pahoehoe|1
+(noun)|lava (generic term)
+paid|3
+(adj)|cashed (similar term)|compensable (similar term)|paying (similar term)|remunerative (similar term)|salaried (similar term)|stipendiary (similar term)|compensated (similar term)|remunerated (similar term)|salaried (similar term)|stipendiary (similar term)|mercenary (similar term)|freelance (similar term)|paid-up (similar term)|post-free (similar term)|postpaid (similar term)|prepaid (similar term)|reply-paid (similar term)|square (similar term)|unpaid (antonym)
+(adj)|nonrecreational|professional (similar term)
+(adj)|gainful|paying|profitable (similar term)
+paid-up|1
+(adj)|paid (similar term)
+paid vacation|1
+(noun)|vacation (generic term)|holiday (generic term)
+paige|1
+(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer (generic term)|baseball player (generic term)
+paigle|2
+(noun)|oxlip|Primula elatior|primrose (generic term)|primula (generic term)
+(noun)|cowslip|Primula veris|primrose (generic term)|primula (generic term)
+pail|2
+(noun)|bucket|vessel (generic term)
+(noun)|pailful|containerful (generic term)
+pailful|1
+(noun)|pail|containerful (generic term)
+paillasse|1
+(noun)|palliasse|mattress (generic term)
+pain|7
+(noun)|hurting|symptom (generic term)
+(noun)|painfulness|feeling (generic term)|pleasure (antonym)
+(noun)|pain sensation|painful sensation|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+(noun)|pain in the neck|nuisance|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|annoyance|bother|botheration|infliction|pain in the neck|pain in the ass|negative stimulus (generic term)
+(verb)|afflict|trouble|ail|hurt (generic term)
+(verb)|anguish|hurt|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+pain-free|1
+(adj)|unpainful|painless (similar term)
+pain in the ass|1
+(noun)|annoyance|bother|botheration|pain|infliction|pain in the neck|negative stimulus (generic term)
+pain in the neck|2
+(noun)|pain|nuisance|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|annoyance|bother|botheration|pain|infliction|pain in the ass|negative stimulus (generic term)
+pain pill|1
+(noun)|analgesic|anodyne|painkiller|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+pain sensation|1
+(noun)|pain|painful sensation|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+pain threshold|1
+(noun)|absolute threshold (generic term)
+pain unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+paine|2
+(noun)|Paine|Robert Treat Paine|American Revolutionary leader (generic term)
+(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader (generic term)|pamphleteer (generic term)
+pained|1
+(adj)|offended|displeased (similar term)
+painful|4
+(adj)|aching (similar term)|achy (similar term)|agonized (similar term)|agonised (similar term)|agonizing (similar term)|agonising (similar term)|excruciating (similar term)|harrowing (similar term)|torturing (similar term)|torturous (similar term)|torturesome (similar term)|biting (similar term)|bitter (similar term)|burning (similar term)|chafed (similar term)|galled (similar term)|poignant (similar term)|itchy (similar term)|prickling (similar term)|stinging (similar term)|tingling (similar term)|racking (similar term)|wrenching (similar term)|saddle-sore (similar term)|sensitive (similar term)|sore (similar term)|raw (similar term)|tender (similar term)|traumatic (similar term)|harmful (related term)|inhumane (related term)|prickling (related term)|stinging (related term)|tingling (related term)|painless (antonym)
+(adj)|afflictive|sore|unpleasant (similar term)
+(adj)|atrocious|abominable|awful|dreadful|terrible|unspeakable|bad (similar term)
+(adj)|irritating|uncomfortable (similar term)
+painful sensation|1
+(noun)|pain|pain sensation|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+painfully|2
+(adv)|distressingly
+(adv)|sorely|painlessly (antonym)
+painfulness|2
+(noun)|pain|feeling (generic term)|pleasure (antonym)
+(noun)|distressingness|quality (generic term)
+painkiller|1
+(noun)|analgesic|anodyne|pain pill|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+painless|2
+(adj)|easy (similar term)
+(adj)|pain-free (similar term)|unpainful (similar term)|harmless (related term)|painful (antonym)
+painlessly|1
+(adv)|painfully (antonym)
+pains|1
+(noun)|striving|nisus|strain|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+painstaking|1
+(adj)|conscientious|scrupulous|careful (similar term)
+painstakingly|1
+(adv)|fastidiously
+painstakingness|1
+(noun)|conscientiousness|carefulness (generic term)|unconscientiousness (antonym)
+paint|7
+(noun)|coating (generic term)|coat (generic term)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+(noun)|key|space (generic term)
+(noun)|rouge|blusher|makeup (generic term)|make-up (generic term)|war paint (generic term)
+(verb)|create (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+(verb)|cover (generic term)
+paint a picture|1
+(verb)|suggest|evoke|express (generic term)|show (generic term)|evince (generic term)
+paint leaf|1
+(noun)|Japanese poinsettia|mole plant|Euphorbia heterophylla|spurge (generic term)
+paint roller|1
+(noun)|roller (generic term)
+paint the lily|2
+(verb)|gild the lily|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|gild the lily|add (generic term)
+paintable|1
+(adj)|unpaintable (antonym)
+paintball|2
+(noun)|capsule (generic term)
+(noun)|outdoor game (generic term)
+paintball gun|1
+(noun)|air gun (generic term)|airgun (generic term)|air rifle (generic term)|game equipment (generic term)
+paintbox|1
+(noun)|box (generic term)
+paintbrush|1
+(noun)|brush (generic term)|applicator (generic term)|applier (generic term)
+painted|4
+(adj)|finished (similar term)|stained (similar term)|varnished (similar term)|whitewashed (similar term)|finished (related term)|unpainted (antonym)
+(adj)|artificial (similar term)|unreal (similar term)
+(adj)|made-up (similar term)|rouged (similar term)|unpainted (antonym)
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|particolored|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+painted-leaf begonia|1
+(noun)|rex begonia|king begonia|beefsteak geranium|Begonia rex|begonia (generic term)
+painted beauty|1
+(noun)|Vanessa virginiensis|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+painted cup|1
+(noun)|Indian paintbrush|wildflower (generic term)|wild flower (generic term)
+painted daisy|1
+(noun)|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower (generic term)
+painted desert|1
+(noun)|Painted Desert|desert (generic term)
+painted greenling|1
+(noun)|convict fish|convictfish|Oxylebius pictus|greenling (generic term)
+painted leaf|2
+(noun)|fire-on-the-mountain|Mexican fire plant|Euphorbia cyathophora|spurge (generic term)
+(noun)|poinsettia|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|Euphorbia pulcherrima|spurge (generic term)
+painted nettle|1
+(noun)|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus (generic term)|flame nettle (generic term)
+painted sandgrouse|1
+(noun)|Pterocles indicus|sandgrouse (generic term)|sand grouse (generic term)
+painted terrapin|1
+(noun)|painted turtle|painted tortoise|Chrysemys picta|turtle (generic term)
+painted tongue|1
+(noun)|Salpiglossis sinuata|salpiglossis (generic term)
+painted tortoise|1
+(noun)|painted turtle|painted terrapin|Chrysemys picta|turtle (generic term)
+painted turtle|1
+(noun)|painted terrapin|painted tortoise|Chrysemys picta|turtle (generic term)
+painter|4
+(noun)|artist (generic term)|creative person (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|line (generic term)
+(noun)|cougar|puma|catamount|mountain lion|panther|Felis concolor|wildcat (generic term)
+painter's colic|1
+(noun)|lead colic|colic (generic term)|intestinal colic (generic term)|gripes (generic term)|griping (generic term)
+painterly|1
+(adj)|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+painting|4
+(noun)|picture|graphic art (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)|fine arts (generic term)|beaux arts (generic term)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+(noun)|house painting|trade (generic term)|craft (generic term)
+pair|9
+(noun)|brace|set (generic term)
+(noun)|couple|twosome|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|poker hand (generic term)
+(verb)|pair off|partner off|couple|unite (generic term)|unify (generic term)
+(verb)|match|mate|couple|twin|join (generic term)|bring together (generic term)
+(verb)|geminate|occur (generic term)
+(verb)|geminate|arrange (generic term)|set up (generic term)
+(verb)|copulate|mate|couple|join (generic term)|conjoin (generic term)
+pair creation|1
+(noun)|pair production|pair formation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+pair formation|1
+(noun)|pair production|pair creation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+pair of pincers|1
+(noun)|pincer|tweezer|pair of tweezers|hand tool (generic term)
+pair of pliers|1
+(noun)|pliers|plyers|hand tool (generic term)|compound lever (generic term)
+pair of scissors|1
+(noun)|scissors|edge tool (generic term)|compound lever (generic term)
+pair of tongs|1
+(noun)|tongs|device (generic term)
+pair of tweezers|1
+(noun)|pincer|pair of pincers|tweezer|hand tool (generic term)
+pair of virginals|1
+(noun)|virginal|harpsichord (generic term)|cembalo (generic term)
+pair off|1
+(verb)|pair|partner off|couple|unite (generic term)|unify (generic term)
+pair production|1
+(noun)|pair creation|pair formation|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+paired|3
+(adj)|mated|matched (similar term)
+(adj)|opposite|alternate (antonym)
+(adj)|mated (similar term)
+pairing|2
+(noun)|coupling|mating|conjugation|union|sexual union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|grouping (generic term)
+paisa|1
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+paisley|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+paiute|2
+(noun)|Paiute|Piute|Shoshone (generic term)|Shoshoni (generic term)
+(noun)|Paiute|Shoshonean (generic term)|Shoshonean language (generic term)|Shoshonian (generic term)|Shoshonian language (generic term)
+paiwanic|1
+(noun)|Paiwanic|Formosan (generic term)
+pajama|2
+(noun)|pyjama|trouser (generic term)|pant (generic term)
+(noun)|pyjama|pj's|jammies|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+pak choi|1
+(noun)|bok choy|bok choi|pakchoi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+pakchoi|1
+(noun)|bok choy|bok choi|pak choi|Chinese white cabbage|Brassica rapa chinensis|crucifer (generic term)|cruciferous plant (generic term)
+pakistan|1
+(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country (generic term)|Asian nation (generic term)
+pakistani|2
+(adj)|Pakistani|Asian country|Asian nation (related term)
+(noun)|Pakistani|Asian (generic term)|Asiatic (generic term)
+pakistani monetary unit|1
+(noun)|Pakistani monetary unit|monetary unit (generic term)
+pakistani rupee|1
+(noun)|Pakistani rupee|rupee|Pakistani monetary unit (generic term)
+pal|2
+(noun)|buddy|brother|chum|crony|sidekick|friend (generic term)
+(verb)|pal up|chum up|befriend (generic term)
+pal up|1
+(verb)|pal|chum up|befriend (generic term)
+palace|4
+(noun)|castle|mansion (generic term)|mansion house (generic term)|manse (generic term)|hall (generic term)|residence (generic term)
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+(noun)|exhibition hall (generic term)|exhibition area (generic term)
+(noun)|residence (generic term)
+palace car|1
+(noun)|parlor car|parlour car|drawing-room car|chair car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+palace of versailles|1
+(noun)|Versailles|Palace of Versailles|palace (generic term)
+paladin|1
+(noun)|champion|fighter|hero|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+palaeencephalon|1
+(noun)|paleencephalon|paleoencephalon|neural structure (generic term)
+palaemon|1
+(noun)|Palaemon|genus Palaemon|arthropod genus (generic term)
+palaemon australis|1
+(noun)|long-clawed prawn|river prawn|Palaemon australis|prawn (generic term)
+palaemonidae|1
+(noun)|Palaemonidae|family Palaemonidae|arthropod family (generic term)
+palaeoanthropology|1
+(noun)|paleoanthropology|human paleontology|human palaeontology|vertebrate paleontology (generic term)
+palaeobiology|1
+(noun)|paleobiology|paleontology (generic term)|palaeontology (generic term)|fossilology (generic term)|biology (generic term)|biological science (generic term)
+palaeobotany|1
+(noun)|paleobotany|paleobiology (generic term)|palaeobiology (generic term)|botany (generic term)|phytology (generic term)
+palaeoclimatology|1
+(noun)|paleoclimatology|archeology (generic term)|archaeology (generic term)
+palaeodendrology|1
+(noun)|paleodendrology|paleobotany (generic term)|palaeobotany (generic term)
+palaeoecology|1
+(noun)|paleoecology|ecology (generic term)|bionomics (generic term)|environmental science (generic term)
+palaeoethnography|1
+(noun)|paleoethnography|archeology (generic term)|archaeology (generic term)
+palaeogeography|1
+(noun)|paleogeography|archeology (generic term)|archaeology (generic term)
+palaeogeology|1
+(noun)|paleogeology|geology (generic term)
+palaeolithic|2
+(adj)|paleolithic|time period|period of time|period (related term)
+(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period (generic term)|period of time (generic term)|period (generic term)
+palaeology|1
+(noun)|paleology|archeology (generic term)|archaeology (generic term)
+palaeontological|1
+(adj)|paleontological|earth science (related term)
+palaeontologist|1
+(noun)|paleontologist|fossilist|scientist (generic term)|man of science (generic term)
+palaeontology|1
+(noun)|paleontology|fossilology|earth science (generic term)
+palaeopathology|1
+(noun)|paleopathology|archeology (generic term)|archaeology (generic term)|pathology (generic term)
+palaeornithology|1
+(noun)|paleornithology|paleozoology (generic term)|palaeozoology (generic term)
+palaeozoology|1
+(noun)|paleozoology|paleobiology (generic term)|palaeobiology (generic term)|zoology (generic term)|zoological science (generic term)
+palaestra|1
+(noun)|palestra|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+palaetiology|1
+(noun)|paletiology|archeology (generic term)|archaeology (generic term)
+palaic|1
+(noun)|Palaic|Anatolian (generic term)|Anatolian language (generic term)
+palankeen|1
+(noun)|palanquin|litter (generic term)
+palanquin|1
+(noun)|palankeen|litter (generic term)
+palaquium|1
+(noun)|Palaquium|genus Palaquium|dicot genus (generic term)|magnoliopsid genus (generic term)
+palaquium gutta|1
+(noun)|gutta-percha tree|Palaquium gutta|tree (generic term)
+palas|1
+(noun)|dhak|dak|Butea frondosa|Butea monosperma|tree (generic term)
+palatability|2
+(noun)|palatableness|taste property (generic term)|unpalatability (antonym)
+(noun)|palatableness|acceptability (generic term)|acceptableness (generic term)
+palatable|1
+(adj)|toothsome|appetizing (related term)|appetising (related term)|edible (related term)|comestible (related term)|eatable (related term)|tasty (related term)|unpalatable (antonym)
+palatableness|2
+(noun)|palatability|taste property (generic term)|unpalatability (antonym)
+(noun)|palatability|acceptability (generic term)|acceptableness (generic term)
+palatably|1
+(adv)|unpalatably (antonym)
+palatal|3
+(adj)|palatine|surface (related term)
+(adj)|palatalized|palatalised|soft (similar term)
+(noun)|semivowel (generic term)|glide (generic term)
+palatalise|1
+(verb)|palatalize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+palatalised|1
+(adj)|palatal|palatalized|soft (similar term)
+palatalize|1
+(verb)|palatalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+palatalized|1
+(adj)|palatal|palatalised|soft (similar term)
+palate|1
+(noun)|roof of the mouth|surface (generic term)
+palatial|2
+(adj)|residence (related term)
+(adj)|impressive (similar term)
+palatinate|2
+(noun)|Palatinate|Pfalz|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+palatine|7
+(adj)|palatal|surface (related term)
+(adj)|Lord|noble|nobleman (related term)
+(adj)|residence (related term)
+(noun)|Roman (generic term)
+(noun)|palsgrave|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|Palatine|hill (generic term)
+(noun)|palatine bone|os palatinum|bone (generic term)|os (generic term)
+palatine artery|1
+(noun)|arteria palatina|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+palatine bone|1
+(noun)|palatine|os palatinum|bone (generic term)|os (generic term)
+palatine raphe|1
+(noun)|raphe (generic term)|rhaphe (generic term)
+palatine tonsil|1
+(noun)|tonsil|faucial tonsil|tonsilla|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+palatine vein|1
+(noun)|vena palatina|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+palatoglossal|1
+(adj)|surface (related term)|organ|articulator (related term)
+palatopharyngoplasty|1
+(noun)|PPP|uvulopalatopharyngoplasty|UPPP|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+palau|2
+(noun)|Palau|Republic of Palau|TT|country (generic term)|state (generic term)|land (generic term)
+(noun)|Palau|Palau Islands|Belau|Pelew|archipelago (generic term)
+palau islands|1
+(noun)|Palau|Palau Islands|Belau|Pelew|archipelago (generic term)
+palaver|5
+(noun)|blandishment|cajolery|flattery (generic term)
+(noun)|hot air|empty words|empty talk|rhetoric|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(verb)|chatter|piffle|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|wheedle|cajole|blarney|coax|sweet-talk|inveigle|persuade (generic term)
+(verb)|parley (generic term)
+pale|7
+(adj)|light (similar term)|light-colored (similar term)
+(adj)|pallid|wan|sick|weak (similar term)
+(adj)|pallid|colorless (similar term)|colourless (similar term)
+(adj)|pallid|wan|colorless (similar term)|colourless (similar term)
+(adj)|thin (similar term)
+(noun)|picket|strip (generic term)
+(verb)|blanch|blench|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+pale-colored|1
+(adj)|pale-hued|colored (similar term)|coloured (similar term)|colorful (similar term)
+pale-faced|1
+(adj)|faced (similar term)
+pale-hued|1
+(adj)|pale-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+pale ale|1
+(noun)|ale (generic term)
+pale blue|1
+(adj)|light-blue|chromatic (similar term)
+pale chrysanthemum aphid|1
+(noun)|greenfly (generic term)
+pale coral root|1
+(noun)|early coral root|Corallorhiza trifida|coral root (generic term)
+pale violet|1
+(noun)|striped violet|cream violet|Viola striata|violet (generic term)
+pale yellow|1
+(noun)|straw|yellow (generic term)|yellowness (generic term)
+paleacrita|1
+(noun)|Paleacrita|genus Paleacrita|arthropod genus (generic term)
+paleacrita vernata|1
+(noun)|Paleacrita vernata|geometrid (generic term)|geometrid moth (generic term)
+paleencephalon|1
+(noun)|paleoencephalon|palaeencephalon|neural structure (generic term)
+paleface|1
+(noun)|White (generic term)|white person (generic term)|Caucasian (generic term)
+palely|1
+(adv)|pallidly|dimly
+paleness|3
+(noun)|lividness|lividity|luridness|pallidness|pallor|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+(noun)|blondness|fairness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+(noun)|pallidity|color property (generic term)
+paleo-american|1
+(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+paleo-american culture|1
+(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+paleo-amerind|1
+(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+paleo-amerind culture|1
+(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+paleo-indian|1
+(noun)|Paleo-American|Paleo-Amerind|Paleo-Indian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+paleo-indian culture|1
+(noun)|Paleo-American culture|Paleo-Amerind culture|Paleo-Indian culture|culture (generic term)|civilization (generic term)|civilisation (generic term)
+paleoanthropological|1
+(adj)|vertebrate paleontology (related term)
+paleoanthropology|1
+(noun)|palaeoanthropology|human paleontology|human palaeontology|vertebrate paleontology (generic term)
+paleobiology|1
+(noun)|palaeobiology|paleontology (generic term)|palaeontology (generic term)|fossilology (generic term)|biology (generic term)|biological science (generic term)
+paleobotany|1
+(noun)|palaeobotany|paleobiology (generic term)|palaeobiology (generic term)|botany (generic term)|phytology (generic term)
+paleocene|1
+(noun)|Paleocene|Paleocene epoch|epoch (generic term)
+paleocene epoch|1
+(noun)|Paleocene|Paleocene epoch|epoch (generic term)
+paleocerebellum|1
+(noun)|neural structure (generic term)
+paleoclimatology|1
+(noun)|palaeoclimatology|archeology (generic term)|archaeology (generic term)
+paleocortex|1
+(noun)|archipallium|cerebral cortex (generic term)|cerebral mantle (generic term)|pallium (generic term)|cortex (generic term)
+paleocortical|1
+(adj)|cerebral cortex|cerebral mantle|pallium|cortex (related term)
+paleodendrology|1
+(noun)|palaeodendrology|paleobotany (generic term)|palaeobotany (generic term)
+paleoecology|1
+(noun)|palaeoecology|ecology (generic term)|bionomics (generic term)|environmental science (generic term)
+paleoencephalon|1
+(noun)|paleencephalon|palaeencephalon|neural structure (generic term)
+paleoethnography|1
+(noun)|palaeoethnography|archeology (generic term)|archaeology (generic term)
+paleogeography|1
+(noun)|palaeogeography|archeology (generic term)|archaeology (generic term)
+paleogeology|1
+(noun)|palaeogeology|geology (generic term)
+paleographer|1
+(noun)|paleographist|archeologist (generic term)|archaeologist (generic term)
+paleographist|1
+(noun)|paleographer|archeologist (generic term)|archaeologist (generic term)
+paleography|1
+(noun)|archeology (generic term)|archaeology (generic term)
+paleolith|1
+(noun)|tool (generic term)
+paleolithic|2
+(adj)|palaeolithic|time period|period of time|period (related term)
+(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period (generic term)|period of time (generic term)|period (generic term)
+paleolithic age|1
+(noun)|Paleolithic Age|Paleolithic|Palaeolithic|time period (generic term)|period of time (generic term)|period (generic term)
+paleology|1
+(noun)|palaeology|archeology (generic term)|archaeology (generic term)
+paleomammalogy|1
+(noun)|paleozoology (generic term)|palaeozoology (generic term)
+paleontological|1
+(adj)|palaeontological|earth science (related term)
+paleontologist|1
+(noun)|palaeontologist|fossilist|scientist (generic term)|man of science (generic term)
+paleontology|1
+(noun)|palaeontology|fossilology|earth science (generic term)
+paleopathology|1
+(noun)|palaeopathology|archeology (generic term)|archaeology (generic term)|pathology (generic term)
+paleornithology|1
+(noun)|palaeornithology|paleozoology (generic term)|palaeozoology (generic term)
+paleostriatum|1
+(noun)|pallidum|globus pallidus|basal ganglion (generic term)
+paleozoic|2
+(adj)|Paleozoic|era|geological era (related term)
+(noun)|Paleozoic|Paleozoic era|era (generic term)|geological era (generic term)
+paleozoic era|1
+(noun)|Paleozoic|Paleozoic era|era (generic term)|geological era (generic term)
+paleozoology|1
+(noun)|palaeozoology|paleobiology (generic term)|palaeobiology (generic term)|zoology (generic term)|zoological science (generic term)
+palermo|1
+(noun)|Palermo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+palestine|2
+(noun)|Palestine|mandate (generic term)|mandatory (generic term)
+(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+palestine authority|1
+(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit (generic term)|political entity (generic term)
+palestine islamic jihad|1
+(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+palestine liberation front|1
+(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+palestine liberation organization|1
+(noun)|Palestine Liberation Organization|PLO|political movement (generic term)
+palestine national authority|1
+(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit (generic term)|political entity (generic term)
+palestinian|3
+(adj)|Palestinian|mandate|mandatory (related term)
+(noun)|Palestinian|Palestinian Arab|Arab (generic term)|Arabian (generic term)
+(noun)|Palestinian|ethnic group (generic term)|ethnos (generic term)
+palestinian arab|1
+(noun)|Palestinian|Palestinian Arab|Arab (generic term)|Arabian (generic term)
+palestinian hizballah|1
+(noun)|Palestinian Hizballah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+palestinian islamic jihad|1
+(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+palestinian national authority|1
+(noun)|Palestine National Authority|Palestinian National Authority|Palestine Authority|political unit (generic term)|political entity (generic term)
+palestra|1
+(noun)|palaestra|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+palestrina|1
+(noun)|Palestrina|Giovanni Pierluigi da Palestrina|composer (generic term)
+paletiology|1
+(noun)|palaetiology|archeology (generic term)|archaeology (generic term)
+palette|3
+(noun)|pallet|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|pallet|board (generic term)
+(noun)|pallette|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+palette knife|1
+(noun)|spatula (generic term)
+palfrey|1
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+palgrave|1
+(noun)|Palgrave|Francis Turner Palgrave|poet (generic term)
+pali|1
+(noun)|Pali|Prakrit (generic term)
+palilalia|1
+(noun)|pathology (generic term)
+palimony|1
+(noun)|support payment (generic term)
+palimpsest|1
+(noun)|manuscript (generic term)|holograph (generic term)
+palindrome|1
+(noun)|word (generic term)
+paling|1
+(noun)|picket fence|fence (generic term)|fencing (generic term)
+palingenesis|1
+(noun)|recapitulation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|cenogenesis (antonym)
+palingenetic|1
+(adj)|growth|growing|maturation|development|ontogeny|ontogenesis (related term)|cenogenetic (antonym)
+palinuridae|1
+(noun)|Palinuridae|family Palinuridae|arthropod family (generic term)
+palinurus|1
+(noun)|Palinurus|genus Palinurus|arthropod genus (generic term)
+palisade|2
+(noun)|fortification (generic term)|munition (generic term)
+(verb)|wall|fence|fence in|surround|protect (generic term)|wall in (related term)|wall up (related term)
+palish|1
+(adj)|light (similar term)|light-colored (similar term)
+paliurus|1
+(noun)|Paliurus|genus Paliurus|dicot genus (generic term)|magnoliopsid genus (generic term)
+paliurus spina-christi|1
+(noun)|Christ's-thorn|Jerusalem thorn|Paliurus spina-christi|shrub (generic term)|bush (generic term)
+pall|11
+(noun)|chill|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|shroud|cerement|winding-sheet|winding-clothes|burial garment (generic term)
+(noun)|curtain|drape|drapery|mantle|blind (generic term)|screen (generic term)|furnishing (generic term)
+(verb)|dull|change (generic term)
+(verb)|daunt|dash|scare off|frighten off|scare away|frighten away|scare|intimidate (generic term)|restrain (generic term)
+(verb)|cover (generic term)
+(verb)|cloy|satiate (generic term)|sate (generic term)|replete (generic term)|fill (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|die|become flat|change (generic term)
+(verb)|weaken (generic term)
+(verb)|tire|weary|fatigue|jade|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+pall-mall|1
+(noun)|game (generic term)
+pall mall|1
+(noun)|Pall Mall|street (generic term)
+palladian|1
+(adj)|Palladian|architect|designer (related term)
+palladio|1
+(noun)|Palladio|Andrea Palladio|architect (generic term)|designer (generic term)
+palladium|1
+(noun)|Pd|atomic number 46|metallic element (generic term)|metal (generic term)
+pallas|2
+(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity (generic term)
+(noun)|Pallas|asteroid (generic term)
+pallas's cat|1
+(noun)|manul|Pallas's cat|Felis manul|wildcat (generic term)
+pallas's sandgrouse|1
+(noun)|Syrrhaptes paradoxus|sandgrouse (generic term)|sand grouse (generic term)
+pallas athena|1
+(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity (generic term)
+pallas athene|1
+(noun)|Athena|Athene|Pallas|Pallas Athena|Pallas Athene|Greek deity (generic term)
+pallasite|1
+(noun)|meteorite (generic term)
+pallbearer|1
+(noun)|bearer|mourner (generic term)|griever (generic term)|sorrower (generic term)|lamenter (generic term)
+pallet|5
+(noun)|palette|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|platform (generic term)
+(noun)|hand tool (generic term)
+(noun)|mattress (generic term)
+(noun)|palette|board (generic term)
+pallette|1
+(noun)|palette|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+palliasse|1
+(noun)|paillasse|mattress (generic term)
+palliate|2
+(verb)|extenuate|mitigate|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+(verb)|relieve|alleviate|assuage|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+palliation|2
+(noun)|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+(noun)|extenuation|mitigation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+palliative|2
+(adj)|alleviative|alleviatory|lenitive|mitigative|mitigatory|moderating (similar term)
+(noun)|alleviant|alleviator|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+pallid|3
+(adj)|pale|wan|colorless (similar term)|colourless (similar term)
+(adj)|pale|wan|sick|weak (similar term)
+(adj)|pale|colorless (similar term)|colourless (similar term)
+pallid bat|1
+(noun)|cave bat|Antrozous pallidus|vespertilian bat (generic term)|vespertilionid (generic term)
+pallidity|1
+(noun)|paleness|color property (generic term)
+pallidly|1
+(adv)|palely|dimly
+pallidness|1
+(noun)|lividness|lividity|luridness|paleness|pallor|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+pallidum|1
+(noun)|globus pallidus|paleostriatum|basal ganglion (generic term)
+pallium|4
+(noun)|cerebral cortex|cerebral mantle|cortex|neural structure (generic term)
+(noun)|mantle|epidermis (generic term)|cuticle (generic term)
+(noun)|vestment (generic term)
+(noun)|cloak (generic term)
+pallone|1
+(noun)|court game (generic term)
+pallor|1
+(noun)|lividness|lividity|luridness|paleness|pallidness|wanness|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+pally|1
+(adj)|chummy|matey|palsy-walsy|friendly (similar term)
+palm|5
+(noun)|thenar|area (generic term)|region (generic term)
+(noun)|linear unit (generic term)
+(noun)|palm tree|tree (generic term)
+(noun)|decoration|laurel wreath|medal|medallion|ribbon|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(verb)|handle|touch (generic term)
+palm-shaped|1
+(adj)|palmate|compound (similar term)
+palm beach|1
+(noun)|Palm Beach|town (generic term)
+palm cat|1
+(noun)|palm civet|civet (generic term)|civet cat (generic term)
+palm civet|1
+(noun)|palm cat|civet (generic term)|civet cat (generic term)
+palm family|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|monocot family (generic term)|liliopsid family (generic term)
+palm kernel|1
+(noun)|palm nut|nut (generic term)
+palm nut|1
+(noun)|palm kernel|nut (generic term)
+palm off|1
+(verb)|foist off|fob off|sell (generic term)
+palm oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+palm reading|1
+(noun)|palmistry|chiromancy|chirology|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+palm sunday|1
+(noun)|Palm Sunday|Christian holy day (generic term)
+palm tree|1
+(noun)|palm|tree (generic term)
+palma christ|1
+(noun)|castor-oil plant|castor bean plant|palma christi|Ricinus communis|shrub (generic term)|bush (generic term)
+palma christi|1
+(noun)|castor-oil plant|castor bean plant|palma christ|Ricinus communis|shrub (generic term)|bush (generic term)
+palmaceae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+palmae|1
+(noun)|Palmae|family Palmae|Palmaceae|family Palmaceae|Arecaceae|family Arecaceae|palm family|monocot family (generic term)|liliopsid family (generic term)
+palmales|1
+(noun)|Palmales|order Palmales|plant order (generic term)
+palmar|1
+(adj)|volar|area|region (related term)
+palmate|2
+(adj)|webbed (similar term)
+(adj)|palm-shaped|compound (similar term)
+palmate leaf|1
+(noun)|compound leaf (generic term)
+palmately-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+palmatifid|1
+(adj)|compound (similar term)
+palmature|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+palmer|1
+(noun)|Palmer|Arnold Palmer|Arnold Daniel Palmer|golfer (generic term)|golf player (generic term)|linksman (generic term)
+palmer peninsula|1
+(noun)|Antarctic Peninsula|Palmer Peninsula|peninsula (generic term)
+palmetto|1
+(noun)|fan palm (generic term)
+palmetto state|1
+(noun)|South Carolina|Palmetto State|SC|American state (generic term)
+palmist|1
+(noun)|palmister|chiromancer|fortuneteller (generic term)|fortune teller (generic term)
+palmister|1
+(noun)|palmist|chiromancer|fortuneteller (generic term)|fortune teller (generic term)
+palmistry|1
+(noun)|palm reading|chiromancy|chirology|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+palmitic acid|1
+(noun)|hexadecanoic acid|saturated fatty acid (generic term)
+palmitin|1
+(noun)|glyceryl ester (generic term)
+palmlike|1
+(adj)|branchless (similar term)
+palmy|1
+(adj)|booming|flourishing|prospering|prosperous|roaring|thriving|successful (similar term)
+palmyra|1
+(noun)|palmyra palm|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm (generic term)
+palmyra palm|1
+(noun)|palmyra|toddy palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm (generic term)
+palo alto|1
+(noun)|Palo Alto|town (generic term)
+palo santo|1
+(noun)|Bulnesia sarmienti|angiospermous tree (generic term)|flowering tree (generic term)
+palo verde|1
+(noun)|Parkinsonia florida|Cercidium floridum|tree (generic term)
+palometa|1
+(noun)|California pompano|Palometa simillima|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+palometa simillima|1
+(noun)|palometa|California pompano|Palometa simillima|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+palomino|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+palooka|1
+(noun)|stumblebum|boxer (generic term)|pugilist (generic term)
+paloverde|1
+(noun)|shrub (generic term)|bush (generic term)
+palpability|1
+(noun)|tangibility|tangibleness|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|impalpability (antonym)|intangibility (antonym)
+palpable|2
+(adj)|tangible|perceptible (similar term)|perceptible (related term)|impalpable (antonym)
+(adj)|perceptible (similar term)
+palpate|1
+(verb)|feel|touch (generic term)
+palpation|1
+(noun)|tactual exploration|examination (generic term)|scrutiny (generic term)|touch (generic term)|touching (generic term)
+palpatory|1
+(adj)|examination|scrutiny|touch|touching (related term)
+palpebra|1
+(noun)|eyelid|lid|protective fold (generic term)
+palpebra conjunctiva|1
+(noun)|conjunctival layer of eyelids|tunica conjunctiva palpebrarum|conjunctiva (generic term)
+palpebrate|2
+(adj)|protective fold (related term)
+(verb)|blink (generic term)|wink (generic term)|nictitate (generic term)|nictate (generic term)
+palpebration|1
+(noun)|blink (generic term)|eye blink (generic term)|blinking (generic term)|wink (generic term)|winking (generic term)|nictitation (generic term)|nictation (generic term)
+palpitant|1
+(adj)|palpitating|unsteady (similar term)
+palpitate|3
+(verb)|shake (generic term)|agitate (generic term)
+(verb)|quiver|quake|tremble (generic term)
+(verb)|flutter|beat (generic term)|pound (generic term)|thump (generic term)
+palpitating|1
+(adj)|palpitant|unsteady (similar term)
+palpitation|2
+(noun)|symptom (generic term)
+(noun)|shaking|shakiness|trembling|quiver|quivering|vibration|motion (generic term)
+palsgrave|1
+(noun)|palatine|Lord (generic term)|noble (generic term)|nobleman (generic term)
+palsied|1
+(adj)|ill (similar term)|sick (similar term)
+palsy|3
+(noun)|paralysis|dysfunction (generic term)|disfunction (generic term)
+(noun)|symptom (generic term)
+(verb)|paralyze (generic term)|paralyse (generic term)
+palsy-walsy|1
+(adj)|chummy|matey|pally|friendly (similar term)
+palter|1
+(verb)|beat around the bush|equivocate|tergiversate|prevaricate|misinform (generic term)|mislead (generic term)
+paltering|1
+(noun)|fibbing|lying (generic term)|prevarication (generic term)|fabrication (generic term)
+paltriness|1
+(noun)|sorriness|worthlessness (generic term)|ineptitude (generic term)
+paltry|2
+(adj)|negligible|trifling|worthless (similar term)
+(adj)|measly|miserable|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+pamelor|1
+(noun)|nortriptyline|Pamelor|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+pamir mountains|1
+(noun)|Pamir Mountains|the Pamirs|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+pamlico|2
+(noun)|Pamlico|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Pamlico|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+pampas|1
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+pampas grass|1
+(noun)|Cortaderia selloana|grass (generic term)
+pamper|1
+(verb)|featherbed|cosset|cocker|baby|coddle|mollycoddle|spoil|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+pamperer|1
+(noun)|spoiler|coddler|mollycoddler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+pampering|2
+(adj)|indulgent (similar term)
+(noun)|indulgence|indulging|humoring|gratification (generic term)
+pamphlet|2
+(noun)|booklet|brochure|folder|leaflet|book (generic term)
+(noun)|tract|treatise (generic term)
+pamphleteer|1
+(noun)|writer (generic term)|author (generic term)
+pan|7
+(noun)|cooking pan|cooking utensil (generic term)|cookware (generic term)
+(noun)|Pan|goat god|Greek deity (generic term)
+(noun)|container (generic term)
+(noun)|Pan|genus Pan|mammal genus (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|pan out|pan off|wash (generic term)
+(verb)|tear apart|trash|disparage (generic term)|belittle (generic term)|pick at (generic term)
+pan-broil|1
+(verb)|broil (generic term)|oven broil (generic term)
+pan-fry|1
+(verb)|fry (generic term)
+pan-hellenic|1
+(adj)|Panhellenic|Pan-Hellenic|principle (related term)
+pan american day|1
+(noun)|Pan American Day|April 14|day (generic term)
+pan american union|1
+(noun)|Pan American Union|secretariat (generic term)|secretariate (generic term)
+pan gravy|1
+(noun)|gravy (generic term)
+pan off|1
+(verb)|pan|pan out|wash (generic term)
+pan out|2
+(verb)|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|pan|pan off|wash (generic term)
+pan paniscus|1
+(noun)|pygmy chimpanzee|bonobo|Pan paniscus|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+pan roast|1
+(verb)|roast (generic term)
+pan troglodytes|1
+(noun)|chimpanzee|chimp|Pan troglodytes|great ape (generic term)|pongid (generic term)
+pan troglodytes schweinfurthii|1
+(noun)|eastern chimpanzee|Pan troglodytes schweinfurthii|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+pan troglodytes troglodytes|1
+(noun)|central chimpanzee|Pan troglodytes troglodytes|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+pan troglodytes verus|1
+(noun)|western chimpanzee|Pan troglodytes verus|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+panacea|2
+(noun)|nostrum|catholicon|cure-all|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|Panacea|Greek deity (generic term)
+panache|2
+(noun)|dash|elan|flair|style|elegance (generic term)
+(noun)|plume (generic term)
+panadol|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+panama|2
+(noun)|Panama|Republic of Panama|Central American country (generic term)|Central American nation (generic term)
+(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+panama canal|1
+(noun)|Panama Canal|ship canal (generic term)|shipway (generic term)
+panama canal zone|1
+(noun)|Panama Canal Zone|Canal Zone|zone (generic term)
+panama city|2
+(noun)|Panama City|town (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|Panama City|capital of Panama|Panamanian capital|national capital (generic term)
+panama hat|1
+(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+panama redwood|2
+(noun)|Panama redwood|quira|wood (generic term)
+(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira (generic term)
+panama redwood tree|1
+(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira (generic term)
+panama tree|1
+(noun)|Panama tree|Sterculia apetala|sterculia (generic term)
+panamanian|2
+(adj)|Panamanian|Central American country|Central American nation (related term)
+(noun)|Panamanian|Central American (generic term)
+panamanian capital|1
+(noun)|Panama City|capital of Panama|Panamanian capital|national capital (generic term)
+panamanian monetary unit|1
+(noun)|Panamanian monetary unit|monetary unit (generic term)
+panamica|1
+(noun)|friendship plant|panamiga|Pilea involucrata|nettle (generic term)
+panamiga|1
+(noun)|friendship plant|panamica|Pilea involucrata|nettle (generic term)
+panatela|1
+(noun)|panetela|panetella|cigar (generic term)
+panax|1
+(noun)|Panax|genus Panax|rosid dicot genus (generic term)
+panax ginseng|1
+(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb (generic term)|herbaceous plant (generic term)
+panax pseudoginseng|1
+(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb (generic term)|herbaceous plant (generic term)
+panax quinquefolius|1
+(noun)|American ginseng|sang|Panax quinquefolius|herb (generic term)|herbaceous plant (generic term)
+panax schinseng|1
+(noun)|ginseng|nin-sin|Panax ginseng|Panax schinseng|Panax pseudoginseng|herb (generic term)|herbaceous plant (generic term)
+pancake|1
+(noun)|battercake|flannel cake|flannel-cake|flapcake|flapjack|griddlecake|hotcake|hot cake|cake (generic term)
+pancake-like|1
+(adj)|round (similar term)|circular (similar term)
+pancake-style|1
+(adj)|cooked (similar term)
+pancake batter|1
+(noun)|batter (generic term)
+pancake day|1
+(noun)|Mardi Gras|Shrove Tuesday|Christian holy day (generic term)
+pancake turner|1
+(noun)|turner (generic term)|food turner (generic term)
+pancake turtle|1
+(noun)|soft-shelled turtle|turtle (generic term)
+pancarditis|1
+(noun)|carditis (generic term)
+panchayat|1
+(noun)|panchayet|punchayet|council (generic term)
+panchayet|1
+(noun)|panchayat|punchayet|council (generic term)
+panchen lama|1
+(noun)|Panchen Lama|lama (generic term)
+pancho villa|1
+(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+panchromatic film|1
+(noun)|film (generic term)|photographic film (generic term)
+pancreas|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+pancreatectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+pancreatic|1
+(adj)|exocrine gland|exocrine|duct gland (related term)
+pancreatic artery|1
+(noun)|arteria pancreatica|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+pancreatic cancer|1
+(noun)|carcinoma (generic term)
+pancreatic duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+pancreatic fibrosis|1
+(noun)|cystic fibrosis|CF|fibrocystic disease of the pancreas|mucoviscidosis|fibrosis (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+pancreatic juice|1
+(noun)|digestive juice (generic term)|digestive fluid (generic term)
+pancreatic vein|1
+(noun)|venae pancreatica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pancreatin|1
+(noun)|infusion (generic term)|extract (generic term)
+pancreatitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+pancytopenia|1
+(noun)|cytopenia (generic term)
+panda|2
+(noun)|giant panda|panda bear|coon bear|Ailuropoda melanoleuca|procyonid (generic term)
+(noun)|lesser panda|red panda|bear cat|cat bear|Ailurus fulgens|procyonid (generic term)
+panda bear|1
+(noun)|giant panda|panda|coon bear|Ailuropoda melanoleuca|procyonid (generic term)
+panda car|1
+(noun)|cruiser (generic term)|police cruiser (generic term)|patrol car (generic term)|police car (generic term)|prowl car (generic term)|squad car (generic term)
+pandanaceae|1
+(noun)|Pandanaceae|family Pandanaceae|screw-pine family|monocot family (generic term)|liliopsid family (generic term)
+pandanales|1
+(noun)|Pandanales|order Pandanales|plant order (generic term)
+pandanus|2
+(noun)|natural fiber (generic term)|natural fibre (generic term)
+(noun)|screw pine|tree (generic term)
+pandanus tectorius|1
+(noun)|textile screw pine|lauhala|Pandanus tectorius|pandanus (generic term)|screw pine (generic term)
+pandar|1
+(noun)|pimp|procurer|panderer|pander|fancy man|ponce|wrongdoer (generic term)|offender (generic term)
+pandean pipe|1
+(noun)|panpipe|syrinx|wind instrument (generic term)|wind (generic term)
+pandemic|3
+(adj)|epidemic (similar term)
+(adj)|general (similar term)
+(noun)|epidemic (generic term)
+pandemonium|1
+(noun)|chaos|bedlam|topsy-turvydom|topsy-turvyness|confusion (generic term)
+pander|3
+(noun)|pimp|procurer|panderer|pandar|fancy man|ponce|wrongdoer (generic term)|offender (generic term)
+(verb)|gratify|indulge|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|pimp|procure|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+panderer|2
+(noun)|pimp|procurer|pander|pandar|fancy man|ponce|wrongdoer (generic term)|offender (generic term)
+(noun)|bad person (generic term)
+pandiculation|1
+(noun)|stretch (generic term)|stretching (generic term)|yawn (generic term)|yawning (generic term)|oscitance (generic term)|oscitancy (generic term)
+pandion|1
+(noun)|Pandion|genus Pandion|bird genus (generic term)
+pandion haliaetus|1
+(noun)|osprey|fish hawk|fish eagle|sea eagle|Pandion haliaetus|hawk (generic term)
+pandionidae|1
+(noun)|Pandionidae|family Pandionidae|bird family (generic term)
+pandora|1
+(noun)|Pandora|mythical being (generic term)
+pandora's box|1
+(noun)|Pandora's box|chest (generic term)
+pandowdy|1
+(noun)|dowdy|pastry (generic term)
+pandurate|1
+(adj)|panduriform|fiddle-shaped|simple (similar term)|unsubdivided (similar term)
+pandurate leaf|1
+(noun)|panduriform leaf|simple leaf (generic term)
+panduriform|1
+(adj)|pandurate|fiddle-shaped|simple (similar term)|unsubdivided (similar term)
+panduriform leaf|1
+(noun)|pandurate leaf|simple leaf (generic term)
+pane|3
+(noun)|pane of glass|window glass|plate glass (generic term)|sheet glass (generic term)
+(noun)|paneling|panelling|panel (generic term)
+(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|superman|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+pane of glass|1
+(noun)|pane|window glass|plate glass (generic term)|sheet glass (generic term)
+panegyric|2
+(adj)|encomiastic|eulogistic|panegyrical|complimentary (similar term)
+(noun)|encomium|eulogy|paean|pean|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+panegyrical|1
+(adj)|encomiastic|eulogistic|panegyric|complimentary (similar term)
+panegyrist|1
+(noun)|eulogist|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+panel|9
+(noun)|sheet (generic term)|flat solid (generic term)
+(noun)|jury|committee (generic term)|commission (generic term)
+(noun)|venire|body (generic term)
+(noun)|body (generic term)
+(noun)|pad (generic term)
+(noun)|dialog box|window (generic term)
+(noun)|control panel|instrument panel|control board|board|electrical device (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|empanel|impanel|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+panel discussion|1
+(noun)|discussion (generic term)|give-and-take (generic term)|word (generic term)
+panel heating|1
+(noun)|heating system (generic term)|heating plant (generic term)|heating (generic term)|heat (generic term)
+panel light|1
+(noun)|light (generic term)|light source (generic term)
+panel truck|1
+(noun)|delivery truck|delivery van|van (generic term)
+paneled|1
+(adj)|wainscoted|adorned (similar term)|decorated (similar term)
+paneling|1
+(noun)|panelling|pane|panel (generic term)
+panelist|1
+(noun)|panellist|critic (generic term)
+panelling|1
+(noun)|paneling|pane|panel (generic term)
+panellist|1
+(noun)|panelist|critic (generic term)
+panencephalitis|1
+(noun)|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+panetela|1
+(noun)|panatela|panetella|cigar (generic term)
+panetella|1
+(noun)|panatela|panetela|cigar (generic term)
+panfish|1
+(noun)|fish (generic term)
+pang|3
+(noun)|stab|twinge|feeling (generic term)
+(noun)|sting|pain (generic term)|hurting (generic term)
+(noun)|pain (generic term)|hurting (generic term)
+panga|1
+(noun)|machete|matchet|knife (generic term)
+pangaea|1
+(noun)|Pangaea|Pangea|continent (generic term)
+pangea|1
+(noun)|Pangaea|Pangea|continent (generic term)
+pangloss|1
+(noun)|Pangloss|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+pango pango|1
+(noun)|Pago Pago|Pango Pango|port (generic term)
+pangolin|1
+(noun)|scaly anteater|anteater|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+panhandle|3
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(verb)|beg (generic term)
+panhandler|1
+(noun)|beggar (generic term)|mendicant (generic term)
+panhellenic|1
+(adj)|Panhellenic|Pan-Hellenic|principle (related term)
+panhysterectomy|1
+(noun)|radical hysterectomy|hysterectomy (generic term)
+panic|4
+(noun)|terror|affright|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|scare|anxiety (generic term)|anxiousness (generic term)
+(verb)|fear (generic term)|dread (generic term)
+(verb)|terrify (generic term)|terrorize (generic term)|terrorise (generic term)
+panic-stricken|1
+(adj)|panicky|panicked|panic-struck|terrified|frightened|afraid (similar term)
+panic-struck|1
+(adj)|panicky|panicked|panic-stricken|terrified|frightened|afraid (similar term)
+panic attack|1
+(noun)|scare|fear (generic term)|fearfulness (generic term)|fright (generic term)
+panic button|1
+(noun)|push button (generic term)|push (generic term)|button (generic term)
+panic disorder|1
+(noun)|anxiety disorder (generic term)
+panic grass|1
+(noun)|millet (generic term)
+panicked|1
+(adj)|panicky|panic-stricken|panic-struck|terrified|frightened|afraid (similar term)
+panicky|1
+(adj)|panicked|panic-stricken|panic-struck|terrified|frightened|afraid (similar term)
+panicle|1
+(noun)|raceme (generic term)
+panicled|1
+(adj)|raceme (related term)
+panicled aster|1
+(noun)|aster (generic term)
+paniculate|1
+(adj)|raceme (related term)
+panicum|1
+(noun)|Panicum|genus Panicum|monocot genus (generic term)|liliopsid genus (generic term)
+panicum capillare|1
+(noun)|witchgrass|witch grass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass (generic term)
+panicum miliaceum|1
+(noun)|broomcorn millet|hog millet|Panicum miliaceum|panic grass (generic term)
+panicum texanum|1
+(noun)|goose grass|Texas millet|Panicum Texanum|panic grass (generic term)
+panicum virgatum|1
+(noun)|switch grass|Panicum virgatum|panic grass (generic term)
+panini|1
+(noun)|Panini|grammarian (generic term)|syntactician (generic term)
+panipat|1
+(noun)|Panipat|battle of Panipat|pitched battle (generic term)
+panjabi|2
+(noun)|Punjabi|Panjabi|Indian (generic term)
+(noun)|Punjabi|Panjabi|Sanskrit (generic term)|Sanskritic language (generic term)
+panjandrum|1
+(noun)|very important person|VIP|high-up|dignitary|high muckamuck|important person (generic term)|influential person (generic term)|personage (generic term)
+pannier|3
+(noun)|bag (generic term)
+(noun)|wicker basket (generic term)
+(noun)|hoop (generic term)
+pannikin|1
+(noun)|pan (generic term)
+panocha|1
+(noun)|penuche|penoche|panoche|fudge (generic term)
+panoche|1
+(noun)|penuche|penoche|panocha|fudge (generic term)
+panofsky|1
+(noun)|Panofsky|Erwin Panofsky|art historian (generic term)
+panonychus|1
+(noun)|Panonychus|genus Panonychus|arthropod genus (generic term)
+panonychus ulmi|1
+(noun)|red spider|red spider mite|Panonychus ulmi|spider mite (generic term)|tetranychid (generic term)
+panoplied|2
+(adj)|armored|equipped (similar term)|equipt (similar term)
+(adj)|arrayed|clothed (similar term)|clad (similar term)
+panoply|1
+(noun)|array (generic term)
+panoptic|2
+(adj)|panoptical|visible (similar term)|seeable (similar term)
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|extensive|wide|comprehensive (similar term)
+panoptical|1
+(adj)|panoptic|visible (similar term)|seeable (similar term)
+panopticon|2
+(noun)|area (generic term)
+(noun)|prison (generic term)|prison house (generic term)
+panorama|2
+(noun)|view|aspect|prospect|scene|vista|visual percept (generic term)|visual image (generic term)
+(noun)|cyclorama|diorama|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+panoramic|1
+(adj)|bird's-eye|wide (similar term)|broad (similar term)
+panoramic sight|1
+(noun)|gunsight (generic term)|gun-sight (generic term)
+panoramic view|1
+(noun)|bird's eye view|position (generic term)|view (generic term)|perspective (generic term)
+panorpidae|1
+(noun)|Panorpidae|family Panorpidae|family (generic term)
+panpipe|1
+(noun)|pandean pipe|syrinx|wind instrument (generic term)|wind (generic term)
+pansa|1
+(noun)|Pus|Pansa|Hindu calendar month (generic term)
+pansexual|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+pansinusitis|1
+(noun)|sinusitis (generic term)
+pansy|3
+(noun)|Viola tricolor hortensis|viola (generic term)
+(noun)|sissy|pantywaist|milksop|Milquetoast|coward (generic term)
+(noun)|fagot|faggot|fag|fairy|nance|queen|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+pansy orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+pansy violet|1
+(noun)|bird's-foot violet|Johnny-jump-up|wood violet|Viola pedata|violet (generic term)
+pant|5
+(noun)|noise (generic term)
+(noun)|trouser|garment (generic term)
+(noun)|gasp|inhalation (generic term)|inspiration (generic term)|aspiration (generic term)|breathing in (generic term)
+(verb)|puff|gasp|heave|blow (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+pant-hoot|1
+(verb)|hoot (generic term)
+pant leg|1
+(noun)|trouser leg|leg (generic term)
+pantaloon|3
+(noun)|Pantaloon|clown (generic term)|buffoon (generic term)
+(noun)|Pantaloon|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|trouser (generic term)|pant (generic term)
+pantalooned|1
+(adj)|breeched|trousered|clothed (similar term)|clad (similar term)
+pantechnicon|1
+(noun)|moving van (generic term)
+pantheism|1
+(noun)|theism (generic term)
+pantheist|2
+(adj)|pantheistic|theism (related term)
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+pantheistic|1
+(adj)|pantheist|theism (related term)
+pantheon|3
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|memorial (generic term)|monument (generic term)
+(noun)|temple (generic term)
+panther|3
+(noun)|jaguar|Panthera onca|Felis onca|big cat (generic term)|cat (generic term)
+(noun)|leopard (generic term)|Panthera pardus (generic term)
+(noun)|cougar|puma|catamount|mountain lion|painter|Felis concolor|wildcat (generic term)
+panther cat|1
+(noun)|ocelot|Felis pardalis|wildcat (generic term)
+panther lily|1
+(noun)|leopard lily|Lilium pardalinum|lily (generic term)
+panthera|1
+(noun)|Panthera|genus Panthera|mammal genus (generic term)
+panthera leo|1
+(noun)|lion|king of beasts|Panthera leo|big cat (generic term)|cat (generic term)
+panthera onca|1
+(noun)|jaguar|panther|Panthera onca|Felis onca|big cat (generic term)|cat (generic term)
+panthera pardus|1
+(noun)|leopard|Panthera pardus|big cat (generic term)|cat (generic term)
+panthera tigris|1
+(noun)|tiger|Panthera tigris|big cat (generic term)|cat (generic term)
+panthera uncia|1
+(noun)|snow leopard|ounce|Panthera uncia|big cat (generic term)|cat (generic term)
+pantie|1
+(noun)|panty|scanty|step-in|underpants (generic term)
+pantile|1
+(noun)|tile (generic term)|roofing tile (generic term)
+panting|3
+(adj)|blown|gasping|out of breath|pursy|short-winded|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+(noun)|heaving|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(noun)|trousering|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+pantingly|1
+(adv)|gaspingly
+panto|1
+(noun)|mime (generic term)|pantomime (generic term)|dumb show (generic term)
+pantograph|1
+(noun)|mechanical device (generic term)
+pantomime|2
+(noun)|mime|dumb show|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+(verb)|mime|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)
+pantomimer|1
+(noun)|mime|mimer|mummer|pantomimist|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+pantomimist|1
+(noun)|mime|mimer|mummer|pantomimer|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+pantothen|1
+(noun)|pantothenic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)|acid (generic term)
+pantothenic acid|1
+(noun)|pantothen|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)|acid (generic term)
+pantotheria|1
+(noun)|Pantotheria|subclass Pantotheria|class (generic term)
+pantropic|1
+(adj)|pantropical|equatorial (similar term)
+pantropical|1
+(adj)|pantropic|equatorial (similar term)
+pantry|1
+(noun)|larder|buttery|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+pantryman|1
+(noun)|butler|manservant (generic term)
+pants|1
+(noun)|bloomers|drawers|knickers|underpants (generic term)
+pants presser|1
+(noun)|trouser press|home appliance (generic term)|household appliance (generic term)
+pants suit|1
+(noun)|slack suit (generic term)
+panty|1
+(noun)|pantie|scanty|step-in|underpants (generic term)
+panty girdle|1
+(noun)|corset (generic term)|girdle (generic term)|stays (generic term)
+pantyhose|1
+(noun)|tights (generic term)|leotards (generic term)
+pantywaist|1
+(noun)|sissy|pansy|milksop|Milquetoast|coward (generic term)
+panzer|2
+(adj)|armored (similar term)|armoured (similar term)
+(noun)|tank (generic term)|army tank (generic term)|armored combat vehicle (generic term)|armoured combat vehicle (generic term)
+paola caliari|1
+(noun)|Veronese|Paolo Veronese|Paola Caliari|old master (generic term)
+paolo veronese|1
+(noun)|Veronese|Paolo Veronese|Paola Caliari|old master (generic term)
+pap|3
+(noun)|pablum|drivel (generic term)|garbage (generic term)
+(noun)|soft diet|spoon food|diet (generic term)
+(noun)|nipple|mammilla|mamilla|teat|tit|reproductive organ (generic term)|sex organ (generic term)
+pap smear|1
+(noun)|cervical smear|Pap smear|Papanicolaou smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+pap test|1
+(noun)|Pap test|Papanicolaou test|smear test|diagnostic test (generic term)|diagnostic assay (generic term)
+papa|1
+(noun)|dad|dada|daddy|pa|pappa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+papa doc|1
+(noun)|Duvalier|Francois Duvalier|Papa Doc|dictator (generic term)|potentate (generic term)
+papacy|1
+(noun)|pontificate|government (generic term)|authorities (generic term)|regime (generic term)
+papaia|1
+(noun)|papaya|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree (generic term)
+papain|1
+(noun)|enzyme (generic term)
+papal|1
+(adj)|apostolic|apostolical|pontifical|spiritual leader|Catholic (related term)
+papal bull|1
+(noun)|bull|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+papal cross|1
+(noun)|Cross (generic term)
+papal infallibility|1
+(noun)|infallibility (generic term)
+papal nuncio|1
+(noun)|nuncio|diplomat (generic term)|diplomatist (generic term)
+papal states|1
+(noun)|Papal States|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+papanicolaou smear|1
+(noun)|cervical smear|Pap smear|Papanicolaou smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+papanicolaou test|1
+(noun)|Pap test|Papanicolaou test|smear test|diagnostic test (generic term)|diagnostic assay (generic term)
+paparazzo|1
+(noun)|photographer (generic term)|lensman (generic term)
+papaver|1
+(noun)|Papaver|genus Papaver|dilleniid dicot genus (generic term)
+papaver alpinum|1
+(noun)|Iceland poppy|Papaver alpinum|poppy (generic term)
+papaver argemone|1
+(noun)|prickly poppy|Papaver argemone|poppy (generic term)
+papaver californicum|1
+(noun)|western poppy|Papaver californicum|poppy (generic term)
+papaver heterophyllum|1
+(noun)|wind poppy|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy (generic term)
+papaver nudicaule|1
+(noun)|Iceland poppy|arctic poppy|Papaver nudicaule|poppy (generic term)
+papaver orientale|1
+(noun)|oriental poppy|Papaver orientale|poppy (generic term)
+papaver rhoeas|1
+(noun)|corn poppy|field poppy|Flanders poppy|Papaver rhoeas|poppy (generic term)
+papaver somniferum|1
+(noun)|opium poppy|Papaver somniferum|poppy (generic term)
+papaveraceae|1
+(noun)|Papaveraceae|family Papaveraceae|poppy family|dilleniid dicot family (generic term)
+papaverales|1
+(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order (generic term)
+papaverine|1
+(noun)|Kavrin|muscle relaxant (generic term)
+papaw|2
+(noun)|pawpaw|papaw tree|Asimina triloba|custard apple (generic term)|custard apple tree (generic term)
+(noun)|pawpaw|edible fruit (generic term)
+papaw tree|1
+(noun)|pawpaw|papaw|Asimina triloba|custard apple (generic term)|custard apple tree (generic term)
+papaya|2
+(noun)|papaia|pawpaw|papaya tree|melon tree|Carica papaya|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+papaya family|1
+(noun)|Caricaceae|family Caricaceae|dilleniid dicot family (generic term)
+papaya juice|1
+(noun)|juice (generic term)
+papaya tree|1
+(noun)|papaya|papaia|pawpaw|melon tree|Carica papaya|fruit tree (generic term)
+papeete|1
+(noun)|Papeete|city (generic term)|metropolis (generic term)|urban center (generic term)
+paper|9
+(noun)|material (generic term)|stuff (generic term)
+(noun)|composition|report|theme|essay (generic term)
+(noun)|newspaper|press (generic term)|public press (generic term)
+(noun)|article (generic term)
+(noun)|medium (generic term)
+(noun)|newspaper|newspaper publisher|publisher (generic term)|publishing house (generic term)|publishing firm (generic term)|publishing company (generic term)
+(noun)|newspaper|product (generic term)|production (generic term)
+(verb)|cover (generic term)
+(verb)|wallpaper|cover (generic term)
+paper-back book|1
+(noun)|paperback book|paperback|softback book|softback|soft-cover book|soft-cover|book (generic term)|volume (generic term)
+paper-pusher|1
+(noun)|bureaucrat (generic term)|administrative official (generic term)|clerk (generic term)
+paper bag|1
+(noun)|sack|poke|carrier bag|bag (generic term)
+paper birch|1
+(noun)|American white birch|paperbark birch|canoe birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+paper chain|1
+(noun)|chain (generic term)
+paper chase|1
+(noun)|hare and hounds|game (generic term)
+paper chromatography|1
+(noun)|chromatography (generic term)
+paper clip|1
+(noun)|paperclip|gem clip|clip (generic term)
+paper cup|1
+(noun)|Dixie cup|drinking cup|cup (generic term)
+paper currency|1
+(noun)|paper money|folding money|currency (generic term)
+paper cutter|1
+(noun)|cutting implement (generic term)
+paper doll|1
+(noun)|doll (generic term)|dolly (generic term)
+paper electrophoresis|1
+(noun)|carrier electrophoresis|electrophoresis (generic term)|cataphoresis (generic term)|dielectrolysis (generic term)|ionophoresis (generic term)
+paper fastener|1
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+paper feed|1
+(noun)|device (generic term)
+paper flower|1
+(noun)|Bougainvillea glabra|bougainvillea (generic term)
+paper gold|1
+(noun)|special drawing rights|reserve assets (generic term)
+paper knife|1
+(noun)|letter opener|paperknife|knife (generic term)
+paper loss|1
+(noun)|loss (generic term)|red ink (generic term)|red (generic term)|paper profit (antonym)
+paper mill|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+paper money|1
+(noun)|folding money|paper currency|currency (generic term)
+paper mulberry|1
+(noun)|Broussonetia papyrifera|angiospermous tree (generic term)|flowering tree (generic term)
+paper nautilus|1
+(noun)|nautilus|Argonaut|Argonauta argo|octopod (generic term)
+paper plant|1
+(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper rush|Cyperus papyrus|sedge (generic term)
+paper plate|1
+(noun)|plate (generic term)
+paper profit|1
+(noun)|gain (generic term)|paper loss (antonym)
+paper round|1
+(noun)|paper route|path (generic term)|route (generic term)|itinerary (generic term)
+paper route|2
+(noun)|paper round|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|employment (generic term)|work (generic term)
+paper rush|1
+(noun)|papyrus|Egyptian paper reed|Egyptian paper rush|paper plant|Cyperus papyrus|sedge (generic term)
+paper tape|1
+(noun)|paper (generic term)
+paper thin|1
+(adj)|thin (similar term)
+paper tiger|1
+(noun)|powerlessness (generic term)|impotence (generic term)|impotency (generic term)
+paper towel|1
+(noun)|towel (generic term)
+paper toweling|1
+(noun)|paper (generic term)
+paper trail|1
+(noun)|written record (generic term)|written account (generic term)
+paper wasp|1
+(noun)|vespid (generic term)|vespid wasp (generic term)
+paper white|1
+(noun)|Narcissus papyraceus|daffodil (generic term)|Narcissus pseudonarcissus (generic term)
+paperback|2
+(adj)|paperbacked|bound (similar term)
+(noun)|paperback book|paper-back book|softback book|softback|soft-cover book|soft-cover|book (generic term)|volume (generic term)
+paperback book|1
+(noun)|paper-back book|paperback|softback book|softback|soft-cover book|soft-cover|book (generic term)|volume (generic term)
+paperbacked|1
+(adj)|paperback|bound (similar term)
+paperbark birch|1
+(noun)|American white birch|paper birch|canoe birch|Betula cordifolia|Betula papyrifera|birch (generic term)|birch tree (generic term)
+paperboard|1
+(noun)|poster board|posterboard|cardboard (generic term)|composition board (generic term)
+paperboy|1
+(noun)|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+paperclip|1
+(noun)|paper clip|gem clip|clip (generic term)
+paperer|1
+(noun)|paperhanger|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+paperhanger|2
+(noun)|forger (generic term)|counterfeiter (generic term)
+(noun)|paperer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+paperhanging|1
+(noun)|papering|application (generic term)|coating (generic term)|covering (generic term)
+papering|1
+(noun)|paperhanging|application (generic term)|coating (generic term)|covering (generic term)
+paperknife|1
+(noun)|letter opener|paper knife|knife (generic term)
+paperlike|1
+(adj)|chartaceous|papery|material|stuff (related term)
+papermaking|1
+(noun)|trade (generic term)|craft (generic term)
+papers|1
+(noun)|document|written document|writing (generic term)|written material (generic term)|piece of writing (generic term)
+paperweight|1
+(noun)|weight (generic term)
+paperwork|1
+(noun)|work (generic term)
+papery|2
+(adj)|thin (similar term)
+(adj)|chartaceous|paperlike|material|stuff (related term)
+paphiopedilum|1
+(noun)|Paphiopedilum|genus Paphiopedilum|monocot genus (generic term)|liliopsid genus (generic term)
+papier-mache|1
+(noun)|paper (generic term)
+papilionaceae|1
+(noun)|Papilionaceae|family Papilionacea|rosid dicot family (generic term)
+papilionoideae|1
+(noun)|Papilionoideae|subfamily Papilionoideae|rosid dicot family (generic term)
+papilla|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+papillary|1
+(adj)|papillose|process|outgrowth|appendage (related term)
+papillary muscle|1
+(noun)|cardiac muscle (generic term)|heart muscle (generic term)
+papillary tumor|1
+(noun)|papilloma|villoma|papillary tumour|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+papillary tumour|1
+(noun)|papilloma|villoma|papillary tumor|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+papillate|1
+(adj)|process|outgrowth|appendage (related term)
+papilledema|1
+(noun)|edema (generic term)|oedema (generic term)|hydrops (generic term)|dropsy (generic term)
+papilliform|1
+(adj)|process|outgrowth|appendage (related term)
+papilloma|1
+(noun)|villoma|papillary tumor|papillary tumour|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+papillon|1
+(noun)|toy spaniel (generic term)
+papillose|1
+(adj)|papillary|process|outgrowth|appendage (related term)
+papio|1
+(noun)|Papio|genus Papio|mammal genus (generic term)
+papio ursinus|1
+(noun)|chacma|chacma baboon|Papio ursinus|baboon (generic term)
+papism|2
+(noun)|Romanism|Roman Catholicism|Catholicism (generic term)|Catholicity (generic term)
+(noun)|popery|practice (generic term)|pattern (generic term)
+papist|2
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papistic|papistical|Catholicism|Catholicity (related term)
+(noun)|Roman Catholic (generic term)
+papistic|1
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistical|Catholicism|Catholicity (related term)
+papistical|1
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistic|Catholicism|Catholicity (related term)
+papoose|1
+(noun)|pappoose|baby (generic term)|babe (generic term)|infant (generic term)
+papoose root|1
+(noun)|blue cohosh|blueberry root|papooseroot|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+papooseroot|1
+(noun)|blue cohosh|blueberry root|papoose root|squawroot|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+papovavirus|1
+(noun)|animal virus (generic term)
+pappa|1
+(noun)|dad|dada|daddy|pa|papa|pop|father (generic term)|male parent (generic term)|begetter (generic term)
+pappataci fever|1
+(noun)|sandfly fever|phlebotomus|disease (generic term)
+pappoose|1
+(noun)|papoose|baby (generic term)|babe (generic term)|infant (generic term)
+pappose|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pappus|1
+(noun)|calyx (generic term)
+paprika|2
+(noun)|sweet pepper|bell pepper|pimento|pimiento|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+paprika sauce|1
+(noun)|Hungarian sauce|sauce (generic term)
+paprilus|1
+(noun)|Paprilus|genus Paprilus|fish genus (generic term)
+paprilus alepidotus|1
+(noun)|harvestfish|Paprilus alepidotus|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+papua|1
+(noun)|New Guinea|Papua|island (generic term)
+papua new guinea|1
+(noun)|Papua New Guinea|Independent State of Papua New Guinea|country (generic term)|state (generic term)|land (generic term)
+papuan|2
+(adj)|Papuan|island (related term)
+(noun)|Papuan|Papuan language|natural language (generic term)|tongue (generic term)
+papuan language|1
+(noun)|Papuan|Papuan language|natural language (generic term)|tongue (generic term)
+papuan monetary unit|1
+(noun)|Papuan monetary unit|monetary unit (generic term)
+papule|1
+(noun)|pimple (generic term)|hickey (generic term)|zit (generic term)
+papulovesicle|1
+(noun)|vesicopapule|papule (generic term)
+papyrus|3
+(noun)|paper (generic term)
+(noun)|Egyptian paper reed|Egyptian paper rush|paper rush|paper plant|Cyperus papyrus|sedge (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+par|3
+(noun)|score (generic term)
+(noun)|equality|equivalence|equation|status (generic term)|position (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+par value|1
+(noun)|face value|nominal value|value (generic term)
+para|5
+(noun)|parity|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+(noun)|Yugoslavian monetary unit (generic term)
+(noun)|paratrooper|soldier (generic term)
+(noun)|Para|Para River|estuary (generic term)
+(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+para aminobenzoic acid|1
+(noun)|PABA|acid (generic term)
+para i|1
+(noun)|primipara|para I|mother (generic term)|female parent (generic term)
+para river|1
+(noun)|Para|Para River|estuary (generic term)
+para rubber|1
+(noun)|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+para rubber tree|1
+(noun)|caoutchouc tree|Hevea brasiliensis|angiospermous tree (generic term)|flowering tree (generic term)
+parable|2
+(noun)|fable|allegory|apologue|story (generic term)
+(noun)|story (generic term)
+parabola|1
+(noun)|conic section (generic term)|conic (generic term)
+parabolic|2
+(adj)|parabolical|story (related term)
+(adj)|parabolical|rounded (similar term)
+parabolic geometry|1
+(noun)|elementary geometry|Euclidean geometry|geometry (generic term)
+parabolic mirror|1
+(noun)|parabolic reflector (generic term)|paraboloid reflector (generic term)
+parabolic reflector|1
+(noun)|paraboloid reflector|reflector (generic term)
+parabolical|2
+(adj)|parabolic|story (related term)
+(adj)|parabolic|rounded (similar term)
+paraboloid|1
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+paraboloid reflector|1
+(noun)|parabolic reflector|reflector (generic term)
+paraboloidal|1
+(adj)|rounded (similar term)
+paracelsus|1
+(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+paracentesis|1
+(noun)|abdominocentesis|centesis (generic term)
+paracentral scotoma|1
+(noun)|scotoma (generic term)
+paracervical block|1
+(noun)|regional anesthesia (generic term)|regional anaesthesia (generic term)
+paracheirodon|1
+(noun)|Paracheirodon|genus Paracheirodon|fish genus (generic term)
+paracheirodon axelrodi|1
+(noun)|cardinal tetra|Paracheirodon axelrodi|characin (generic term)|characin fish (generic term)|characid (generic term)
+parachute|2
+(noun)|chute|rescue equipment (generic term)
+(verb)|chute|jump|dive (generic term)|plunge (generic term)|plunk (generic term)
+parachute jumper|1
+(noun)|parachutist|parachuter|jumper (generic term)
+parachuter|1
+(noun)|parachutist|parachute jumper|jumper (generic term)
+parachuting|1
+(noun)|jump|descent (generic term)
+parachutist|1
+(noun)|parachuter|parachute jumper|jumper (generic term)
+paraclete|1
+(noun)|Holy Ghost|Holy Spirit|Paraclete|hypostasis (generic term)|hypostasis of Christ (generic term)
+paracosm|1
+(noun)|fantasy world (generic term)|phantasy world (generic term)|fairyland (generic term)
+parade|5
+(noun)|procession (generic term)
+(noun)|succession (generic term)
+(noun)|display (generic term)|exhibit (generic term)|showing (generic term)
+(verb)|exhibit|march|walk (generic term)
+(verb)|troop|promenade|march (generic term)|process (generic term)
+parade ground|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+parader|1
+(noun)|marcher|pedestrian (generic term)|walker (generic term)|footer (generic term)
+paradiddle|1
+(noun)|roll|drum roll|sound (generic term)
+paradigm|4
+(noun)|inflection (generic term)|inflexion (generic term)
+(noun)|prototype|epitome|image|model (generic term)|example (generic term)
+(noun)|substitution class|class (generic term)|category (generic term)|family (generic term)
+(noun)|position (generic term)|view (generic term)|perspective (generic term)
+paradigmatic|3
+(adj)|inflection|inflexion (related term)
+(adj)|model|example (related term)
+(adj)|class|category|family (related term)|syntagmatic (antonym)
+paradisaeidae|1
+(noun)|Paradisaeidae|family Paradisaeidae|bird family (generic term)
+paradisaic|1
+(adj)|paradisiacal|paradisiac|paradisaical|paradisal|heavenly (similar term)
+paradisaical|1
+(adj)|paradisiacal|paradisiac|paradisaic|paradisal|heavenly (similar term)
+paradisal|1
+(adj)|paradisiacal|paradisiac|paradisaical|paradisaic|heavenly (similar term)
+paradise|2
+(noun)|Eden|Nirvana|heaven|promised land|Shangri-la|region (generic term)|part (generic term)
+(noun)|Paradise|Heaven (generic term)
+paradise flower|1
+(noun)|pride of barbados|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub (generic term)
+paradise tree|1
+(noun)|bitterwood|Simarouba glauca|bitterwood tree (generic term)
+paradisea liliastrum|1
+(noun)|St.-Bruno's-lily|Paradisea liliastrum|spiderwort (generic term)|dayflower (generic term)
+paradisiac|1
+(adj)|paradisiacal|paradisaical|paradisaic|paradisal|heavenly (similar term)
+paradisiacal|1
+(adj)|paradisiac|paradisaical|paradisaic|paradisal|heavenly (similar term)
+paradox|1
+(noun)|contradiction (generic term)|contradiction in terms (generic term)
+paradoxical|1
+(adj)|self-contradictory|inexplicable (similar term)|incomprehensible (similar term)
+paradoxical sleep|1
+(noun)|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep (generic term)|slumber (generic term)
+paradoxurus|1
+(noun)|Paradoxurus|genus Paradoxurus|mammal genus (generic term)
+paraduodenal smear|1
+(noun)|duodenal smear|alimentary tract smear (generic term)
+paraesthesia|1
+(noun)|paresthesia|symptom (generic term)
+paraffin|3
+(noun)|paraffin wax|wax (generic term)
+(noun)|methane series|alkane series|alkane|paraffin series|aliphatic compound (generic term)
+(noun)|paraffin oil|kerosene (generic term)|kerosine (generic term)|lamp oil (generic term)|coal oil (generic term)
+paraffin oil|1
+(noun)|paraffin|kerosene (generic term)|kerosine (generic term)|lamp oil (generic term)|coal oil (generic term)
+paraffin scale|1
+(noun)|scale wax|wax (generic term)
+paraffin series|1
+(noun)|methane series|alkane series|alkane|paraffin|aliphatic compound (generic term)
+paraffin wax|1
+(noun)|paraffin|wax (generic term)
+parafovea|1
+(noun)|area (generic term)|region (generic term)
+paragon|2
+(noun)|idol|perfection|beau ideal|ideal (generic term)
+(noun)|ideal|nonpareil|saint|apotheosis|nonesuch|nonsuch|model (generic term)|role model (generic term)
+paragonite|1
+(noun)|mica (generic term)|isinglass (generic term)
+paragraph|3
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+paragrapher|1
+(noun)|writer (generic term)|author (generic term)
+paraguay|1
+(noun)|Paraguay|Republic of Paraguay|South American country (generic term)|South American nation (generic term)
+paraguay tea|1
+(noun)|mate|Paraguay tea|Ilex paraguariensis|holly (generic term)
+paraguayan|2
+(adj)|Paraguayan|South American country|South American nation (related term)
+(noun)|Paraguayan|South American (generic term)
+paraguayan monetary unit|1
+(noun)|Paraguayan monetary unit|monetary unit (generic term)
+parainfluenza virus|1
+(noun)|adenovirus (generic term)
+parakeet|1
+(noun)|parrakeet|parroket|paraquet|paroquet|parroquet|parrot (generic term)
+paralanguage|1
+(noun)|paralinguistic communication|communication (generic term)
+paraldehyde|1
+(noun)|ethanal trimer|aldehyde (generic term)
+paralegal|1
+(noun)|legal assistant|paraprofessional (generic term)
+paraleipsis|1
+(noun)|paralepsis|paralipsis|preterition|rhetorical device (generic term)
+paralepsis|1
+(noun)|paraleipsis|paralipsis|preterition|rhetorical device (generic term)
+paralichthys|1
+(noun)|Paralichthys|genus Paralichthys|fish genus (generic term)
+paralichthys dentatus|1
+(noun)|summer flounder|Paralichthys dentatus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+paralichthys lethostigmus|1
+(noun)|southern flounder|Paralichthys lethostigmus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+paralinguistic communication|1
+(noun)|paralanguage|communication (generic term)
+paralipomenon|1
+(noun)|Paralipomenon|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+paralipsis|1
+(noun)|paralepsis|paraleipsis|preterition|rhetorical device (generic term)
+paralithodes|1
+(noun)|Paralithodes|genus Paralithodes|arthropod genus (generic term)
+paralithodes camtschatica|1
+(noun)|king crab|Alaska crab|Alaskan king crab|Alaska king crab|Paralithodes camtschatica|crab (generic term)
+parallax|1
+(noun)|optical phenomenon (generic term)
+parallel|7
+(adj)|antiparallel (similar term)|collateral (similar term)|nonconvergent (similar term)|nonintersecting (similar term)|comparable (related term)|symmetrical (related term)|symmetric (related term)|perpendicular (antonym)|oblique (antonym)
+(adj)|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+(noun)|analogue|analog|similarity (generic term)
+(noun)|latitude|line of latitude|parallel of latitude|line (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|collimate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|twin|duplicate|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+parallel-park|1
+(verb)|park (generic term)
+parallel-veined leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+parallel bars|1
+(noun)|bars|gymnastic apparatus (generic term)|exerciser (generic term)
+parallel circuit|1
+(noun)|shunt circuit|closed circuit (generic term)|loop (generic term)
+parallel interface|1
+(noun)|parallel port|interface (generic term)|port (generic term)
+parallel lives|1
+(noun)|Parallel Lives|biography (generic term)|life (generic term)|life story (generic term)|life history (generic term)
+parallel of latitude|1
+(noun)|latitude|line of latitude|parallel|line (generic term)
+parallel operation|1
+(noun)|simultaneous operation|operation (generic term)|serial operation (antonym)
+parallel port|1
+(noun)|parallel interface|interface (generic term)|port (generic term)
+parallel processing|1
+(noun)|multiprocessing|data processing (generic term)
+parallelepiped|1
+(noun)|parallelopiped|parallelepipedon|parallelopipedon|prism (generic term)
+parallelepipedon|1
+(noun)|parallelepiped|parallelopiped|parallelopipedon|prism (generic term)
+parallelism|1
+(noun)|correspondence|similarity (generic term)
+parallelize|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+parallelogram|1
+(noun)|quadrilateral (generic term)|quadrangle (generic term)|tetragon (generic term)|trapezium (antonym)
+parallelopiped|1
+(noun)|parallelepiped|parallelepipedon|parallelopipedon|prism (generic term)
+parallelopipedon|1
+(noun)|parallelepiped|parallelopiped|parallelepipedon|prism (generic term)
+paralogism|1
+(noun)|fallacy (generic term)|false belief (generic term)
+paralyse|2
+(verb)|paralyze|inactivate (generic term)|deactivate (generic term)
+(verb)|paralyze|immobilize (generic term)|immobilise (generic term)
+paralysis|1
+(noun)|palsy|dysfunction (generic term)|disfunction (generic term)
+paralysis agitans|1
+(noun)|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+paralytic|3
+(adj)|paralytical|dysfunction|disfunction (related term)
+(adj)|paralyzed|ill (similar term)|sick (similar term)
+(noun)|handicapped person (generic term)
+paralytic abasia|1
+(noun)|abasia (generic term)
+paralytical|1
+(adj)|paralytic|dysfunction|disfunction (related term)
+paralyze|2
+(verb)|paralyse|inactivate (generic term)|deactivate (generic term)
+(verb)|paralyse|immobilize (generic term)|immobilise (generic term)
+paralyzed|1
+(adj)|paralytic|ill (similar term)|sick (similar term)
+paramagnet|1
+(noun)|magnet (generic term)
+paramagnetic|1
+(adj)|magnet (related term)
+paramagnetism|1
+(noun)|magnetism (generic term)|magnetic attraction (generic term)|magnetic force (generic term)
+paramaribo|1
+(noun)|Paramaribo|capital of Suriname|national capital (generic term)|port (generic term)
+paramecia|1
+(noun)|paramecium|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+paramecium|1
+(noun)|paramecia|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+paramedic|1
+(noun)|paramedical|paraprofessional (generic term)
+paramedical|2
+(adj)|paraprofessional (related term)
+(noun)|paramedic|paraprofessional (generic term)
+parameter|3
+(noun)|parametric quantity|constant (generic term)|constant quantity (generic term)|invariable (generic term)
+(noun)|factor (generic term)
+(noun)|quantity (generic term)
+parametric|1
+(adj)|constant|constant quantity|invariable (related term)
+parametric quantity|1
+(noun)|parameter|constant (generic term)|constant quantity (generic term)|invariable (generic term)
+parametric statistic|1
+(noun)|statistic (generic term)
+parametritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+paramilitary|2
+(adj)|force|personnel (related term)
+(noun)|paramilitary force|paramilitary unit|paramilitary organization|paramilitary organisation|force (generic term)|personnel (generic term)
+paramilitary force|1
+(noun)|paramilitary|paramilitary unit|paramilitary organization|paramilitary organisation|force (generic term)|personnel (generic term)
+paramilitary organisation|1
+(noun)|paramilitary|paramilitary force|paramilitary unit|paramilitary organization|force (generic term)|personnel (generic term)
+paramilitary organization|1
+(noun)|paramilitary|paramilitary force|paramilitary unit|paramilitary organisation|force (generic term)|personnel (generic term)
+paramilitary unit|1
+(noun)|paramilitary|paramilitary force|paramilitary organization|paramilitary organisation|force (generic term)|personnel (generic term)
+paramnesia|1
+(noun)|cognitive state (generic term)|state of mind (generic term)
+paramount|1
+(adj)|overriding|predominant|predominate|preponderant|preponderating|dominant (similar term)
+paramountcy|1
+(noun)|dominion (generic term)|rule (generic term)
+paramour|2
+(noun)|fancy man|lover (generic term)
+(noun)|concubine|courtesan|doxy|odalisque|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+paramyxovirus|1
+(noun)|myxovirus (generic term)
+parana|1
+(noun)|Parana|Parana River|river (generic term)
+parana river|1
+(noun)|Parana|Parana River|river (generic term)
+paranasal|1
+(adj)|cavity|bodily cavity|cavum (related term)
+paranasal sinus|1
+(noun)|sinus paranasales|nasal sinus|sinus (generic term)
+parang|1
+(noun)|knife (generic term)
+paranoia|1
+(noun)|psychosis (generic term)
+paranoiac|1
+(noun)|paranoid|psychotic (generic term)|psychotic person (generic term)|psycho (generic term)
+paranoic type schizophrenia|1
+(noun)|paranoid schizophrenia|paraphrenic schizophrenia|paraphrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+paranoid|2
+(adj)|insane (similar term)
+(noun)|paranoiac|psychotic (generic term)|psychotic person (generic term)|psycho (generic term)
+paranoid schizophrenia|1
+(noun)|paranoic type schizophrenia|paraphrenic schizophrenia|paraphrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+paranormal|2
+(adj)|extrasensory|clairvoyant (similar term)|telegnostic (similar term)|telepathic (similar term)|paranormal (related term)|sensory (antonym)
+(adj)|parapsychological (similar term)|psychic (similar term)|psychical (similar term)|psychokinetic (similar term)|supernormal (similar term)|supranormal (similar term)|extrasensory (related term)|paranormal (related term)|unnatural (related term)|normal (antonym)
+paranthias|1
+(noun)|Paranthias|genus Paranthias|fish genus (generic term)
+paranthias furcifer|1
+(noun)|creole-fish|Paranthias furcifer|grouper (generic term)
+paranthropus|1
+(noun)|Paranthropus|genus Paranthropus|australopithecine (generic term)
+paraparesis|1
+(noun)|paresis (generic term)
+parapet|2
+(noun)|wall (generic term)
+(noun)|breastwork|fortification (generic term)|munition (generic term)
+paraph|1
+(noun)|flourish (generic term)
+paraphernalia|1
+(noun)|gear|appurtenance|equipment (generic term)
+paraphilia|1
+(noun)|perversion (generic term)|sexual perversion (generic term)
+paraphrase|2
+(noun)|paraphrasis|rewording (generic term)|recasting (generic term)|rephrasing (generic term)
+(verb)|rephrase|reword|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+paraphrasis|1
+(noun)|paraphrase|rewording (generic term)|recasting (generic term)|rephrasing (generic term)
+paraphrastic|1
+(adj)|altered (similar term)
+paraphrenia|1
+(noun)|paranoid schizophrenia|paranoic type schizophrenia|paraphrenic schizophrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+paraphrenic schizophrenia|1
+(noun)|paranoid schizophrenia|paranoic type schizophrenia|paraphrenia|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+paraphysis|1
+(noun)|fibril (generic term)|filament (generic term)|strand (generic term)
+paraplegia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+paraplegic|2
+(adj)|ill (similar term)|sick (similar term)
+(noun)|handicapped person (generic term)
+parapodium|1
+(noun)|extremity (generic term)|appendage (generic term)|member (generic term)
+parapraxis|1
+(noun)|slip|slip-up|miscue|mistake (generic term)|error (generic term)|fault (generic term)
+paraprofessional|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+parapsychological|1
+(adj)|paranormal (similar term)
+parapsychologist|1
+(noun)|psychologist (generic term)
+parapsychology|1
+(noun)|psychic phenomena|psychic phenomenon|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+paraquat|1
+(noun)|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+paraquat poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+paraquet|1
+(noun)|parakeet|parrakeet|parroket|paroquet|parroquet|parrot (generic term)
+parasail|1
+(noun)|parachute (generic term)|chute (generic term)
+parasailing|1
+(noun)|glide (generic term)|gliding (generic term)|sailplaning (generic term)|soaring (generic term)|sailing (generic term)
+parascalops|1
+(noun)|Parascalops|genus Parascalops|mammal genus (generic term)
+parascalops breweri|1
+(noun)|brewer's mole|hair-tailed mole|Parascalops breweri|mole (generic term)
+parashurama|1
+(noun)|Parashurama|Rama (generic term)
+parasitaemia|1
+(noun)|parasitemia|blood disease (generic term)|blood disorder (generic term)
+parasitaxus|1
+(noun)|Parasitaxus|genus Parasitaxus|gymnosperm genus (generic term)
+parasitaxus ustus|1
+(noun)|parasite yew|Parasitaxus ustus|parasitic plant (generic term)
+parasite|2
+(noun)|organism (generic term)|being (generic term)|host (antonym)
+(noun)|leech|sponge|sponger|follower (generic term)
+parasite yew|1
+(noun)|Parasitaxus ustus|parasitic plant (generic term)
+parasitemia|1
+(noun)|parasitaemia|blood disease (generic term)|blood disorder (generic term)
+parasitic|3
+(adj)|parasitical|organism|being (related term)
+(adj)|epenthetic|articulation (related term)
+(adj)|parasitical|leechlike|bloodsucking|dependent (similar term)
+parasitic jaeger|1
+(noun)|arctic skua|Stercorarius parasiticus|jaeger (generic term)
+parasitic plant|1
+(noun)|parasite (generic term)
+parasitic worm|1
+(noun)|helminth|worm (generic term)
+parasitical|2
+(adj)|parasitic|organism|being (related term)
+(adj)|parasitic|leechlike|bloodsucking|dependent (similar term)
+parasiticidal|1
+(adj)|anthelmintic|anthelminthic|helminthic|healthful (similar term)
+parasitism|1
+(noun)|mutuality (generic term)|interdependence (generic term)|interdependency (generic term)
+parasol|1
+(noun)|sunshade|shade (generic term)
+parasol mushroom|1
+(noun)|Lepiota procera|agaric (generic term)
+parasympathetic|2
+(adj)|nervous system|systema nervosum (related term)
+(noun)|parasympathetic nervous system|nervous system (generic term)|systema nervosum (generic term)
+parasympathetic nervous system|1
+(noun)|parasympathetic|nervous system (generic term)|systema nervosum (generic term)
+parasympathomimetic|1
+(adj)|nervous system|systema nervosum (related term)
+parathelypteris|1
+(noun)|Parathelypteris|genus Parathelypteris|fern genus (generic term)
+parathelypteris novae-boracensis|1
+(noun)|New York fern|Parathelypteris novae-boracensis|Dryopteris noveboracensis|fern (generic term)
+parathelypteris simulata|1
+(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern (generic term)
+parathion|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+parathion poisoning|1
+(noun)|pesticide poisoning (generic term)
+parathormone|1
+(noun)|parathyroid hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+parathyroid|1
+(noun)|parathyroid gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+parathyroid gland|1
+(noun)|parathyroid|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+parathyroid hormone|1
+(noun)|parathormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+paratrooper|1
+(noun)|para|soldier (generic term)
+paratroops|1
+(noun)|infantry (generic term)|foot (generic term)
+paratyphoid|1
+(noun)|paratyphoid fever|infectious disease (generic term)
+paratyphoid fever|1
+(noun)|paratyphoid|infectious disease (generic term)
+paraumbilical vein|1
+(noun)|vena paraumbilicalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+parazoa|1
+(noun)|Parazoa|subkingdom Parazoa|subkingdom (generic term)
+parazoan|1
+(noun)|sponge|poriferan|invertebrate (generic term)
+parboil|1
+(verb)|blanch|cook (generic term)
+parcae|1
+(noun)|Parcae|Roman deity (generic term)
+parcel|7
+(noun)|package|container (generic term)
+(noun)|portion|share|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+(noun)|tract|piece of land|piece of ground|parcel of land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|package|bundle|packet|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|cover (generic term)
+(verb)|wrap (generic term)|wrap up (generic term)
+parcel bomb|1
+(noun)|letter bomb|package bomb|bomb (generic term)
+parcel of land|1
+(noun)|tract|piece of land|piece of ground|parcel|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+parcel out|1
+(verb)|distribute|administer|mete out|deal|lot|dispense|shell out|deal out|dish out|allot|dole out|give (generic term)
+parcel post|1
+(noun)|mail (generic term)
+parceled out|1
+(adj)|apportioned|dealt out|doled out|meted out|distributed (similar term)
+parceling|1
+(noun)|allotment|apportionment|apportioning|allocation|parcelling|assignation|distribution (generic term)
+parcellation|1
+(noun)|division (generic term)
+parcelling|1
+(noun)|allotment|apportionment|apportioning|allocation|parceling|assignation|distribution (generic term)
+parch|1
+(verb)|sear|dry (generic term)|dry out (generic term)
+parched|2
+(adj)|adust|baked|scorched|sunbaked|dry (similar term)
+(adj)|cooked (similar term)
+parcheesi|1
+(noun)|Parcheesi|pachisi (generic term)
+parchment|2
+(noun)|paper (generic term)
+(noun)|sheepskin|lambskin|animal skin (generic term)
+pardner|1
+(noun)|collaborator|cooperator|partner|associate (generic term)
+pardon|5
+(noun)|forgiveness|kindness (generic term)|benignity (generic term)
+(noun)|amnesty|warrant (generic term)
+(noun)|amnesty|free pardon|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(verb)|excuse|forgive (generic term)
+(verb)|forgive (generic term)
+pardonable|1
+(adj)|excusable (similar term)|forgivable (similar term)|venial (similar term)|expiable (similar term)|minor (similar term)|venial (similar term)|unpardonable (antonym)
+pardonably|1
+(adv)|excusably|forgivably|unpardonably (antonym)|unforgivably (antonym)|inexcusably (antonym)
+pardoner|2
+(noun)|forgiver|excuser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)
+pare|4
+(verb)|pare down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|whittle|cut (generic term)
+(verb)|skin|peel|strip (generic term)
+(verb)|trim|cut (generic term)
+pare down|1
+(verb)|pare|decrease (generic term)|lessen (generic term)|minify (generic term)
+paregmenon|1
+(noun)|rhetorical device (generic term)
+paregoric|1
+(noun)|camphorated tincture of opium|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+parenchyma|2
+(noun)|animal tissue (generic term)
+(noun)|plant tissue (generic term)
+parent|2
+(noun)|genitor (generic term)|child (antonym)
+(verb)|rear|raise|bring up|nurture
+parentage|3
+(noun)|parenthood|adulthood (generic term)
+(noun)|birth|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|stemma|stock|genealogy (generic term)|family tree (generic term)
+parental|2
+(adj)|genitor (related term)|filial (antonym)
+(adj)|maternal|paternal|filial (antonym)
+parental quality|1
+(noun)|quality (generic term)
+parented|1
+(adj)|fostered (similar term)|unparented (antonym)
+parenteral|1
+(adj)|duct|epithelial duct|canal|channel (related term)
+parenthesis|2
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+(noun)|digression|aside|excursus|divagation|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+parenthesis-free notation|1
+(noun)|mathematical notation (generic term)
+parenthetic|1
+(adj)|parenthetical|incidental (similar term)|incident (similar term)
+parenthetical|2
+(adj)|parenthetic|incidental (similar term)|incident (similar term)
+(noun)|parenthetical expression|adjunct (generic term)
+parenthetical expression|1
+(noun)|parenthetical|adjunct (generic term)
+parenthood|1
+(noun)|parentage|adulthood (generic term)
+parentless|1
+(adj)|unparented|orphan (similar term)|orphaned (similar term)|fatherless (similar term)|motherless (similar term)|parented (antonym)
+parer|2
+(noun)|manicurist (generic term)
+(noun)|paring knife|knife (generic term)
+paresis|1
+(noun)|paralysis (generic term)|palsy (generic term)
+paresthesia|1
+(noun)|paraesthesia|symptom (generic term)
+paretic|1
+(noun)|paralytic (generic term)
+pareto|1
+(noun)|Pareto|Vilfredo Pareto|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+pareve|1
+(adj)|parve|edible (similar term)|comestible (similar term)|eatable (similar term)
+parfait|1
+(noun)|frozen dessert (generic term)
+parfait glass|1
+(noun)|glass (generic term)|drinking glass (generic term)
+parget|2
+(noun)|pargeting|pargetting|plaster (generic term)
+(verb)|plaster (generic term)|daub (generic term)
+pargeting|3
+(noun)|parget|pargetting|plaster (generic term)
+(noun)|pargetting|pargetry|plaster (generic term)|plasterwork (generic term)
+(noun)|pargetting|plastering (generic term)|daubing (generic term)
+pargetry|1
+(noun)|pargeting|pargetting|plaster (generic term)|plasterwork (generic term)
+pargetting|3
+(noun)|parget|pargeting|plaster (generic term)
+(noun)|pargeting|pargetry|plaster (generic term)|plasterwork (generic term)
+(noun)|pargeting|plastering (generic term)|daubing (generic term)
+parheliacal|1
+(adj)|parhelic|topographic point|place|spot (related term)
+parhelic|1
+(adj)|parheliacal|topographic point|place|spot (related term)
+parhelic circle|1
+(noun)|solar halo|parhelic ring|halo (generic term)
+parhelic ring|1
+(noun)|solar halo|parhelic circle|halo (generic term)
+parhelion|1
+(noun)|mock sun|sundog|topographic point (generic term)|place (generic term)|spot (generic term)
+pari-mutuel machine|1
+(noun)|totalizer|totaliser|totalizator|totalisator|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+pari passu|1
+(adv)|at an equal rate
+pariah|1
+(noun)|outcast|castaway|Ishmael|unfortunate (generic term)|unfortunate person (generic term)
+pariah dog|1
+(noun)|pye-dog|pie-dog|cur (generic term)|mongrel (generic term)|mutt (generic term)
+paridae|1
+(noun)|Paridae|family Paridae|bird family (generic term)
+paries|1
+(noun)|wall|stratum (generic term)
+parietal|1
+(adj)|membrane bone (related term)
+parietal bone|1
+(noun)|membrane bone (generic term)
+parietal gyrus|1
+(noun)|gyrus (generic term)|convolution (generic term)
+parietal lobe|1
+(noun)|lobe (generic term)
+parietal pericardium|1
+(noun)|serous membrane (generic term)|serosa (generic term)
+parietal placentation|1
+(noun)|placentation (generic term)
+parietal pleura|1
+(noun)|pleura (generic term)
+parietales|1
+(noun)|Parietales|order Parietales|Hypericales|order Hypericales|plant order (generic term)
+parietaria|1
+(noun)|Parietaria|genus Parietaria|dicot genus (generic term)|magnoliopsid genus (generic term)
+parietaria difussa|1
+(noun)|pellitory-of-the-wall|wall pellitory|pellitory|Parietaria difussa|herb (generic term)|herbaceous plant (generic term)
+parieto-occipital fissure|1
+(noun)|parieto-occipital sulcus|sulcus (generic term)
+parieto-occipital sulcus|1
+(noun)|parieto-occipital fissure|sulcus (generic term)
+parietomastoid suture|1
+(noun)|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+parimutuel|1
+(noun)|bet (generic term)|wager (generic term)
+paring|2
+(noun)|sliver|shaving|fragment (generic term)
+(noun)|object (generic term)|physical object (generic term)
+paring knife|1
+(noun)|parer|knife (generic term)
+paripinnate|1
+(adj)|even-pinnate|abruptly-pinnate|compound (similar term)
+paris|4
+(noun)|Paris|City of Light|French capital|capital of France|national capital (generic term)
+(noun)|Paris|genus Paris|plant genus (generic term)
+(noun)|Paris|mythical being (generic term)
+(noun)|Paris|town (generic term)
+paris daisy|1
+(noun)|marguerite|marguerite daisy|Paris daisy|Chrysanthemum frutescens|Argyranthemum frutescens|subshrub (generic term)|suffrutex (generic term)
+paris green|2
+(noun)|Paris green|double salt (generic term)|pigment (generic term)|insecticide (generic term)|insect powder (generic term)
+(noun)|yellow green|yellowish green|chartreuse|Paris green|pea green|green (generic term)|greenness (generic term)|viridity (generic term)
+paris quadrifolia|1
+(noun)|herb Paris|Paris quadrifolia|herb (generic term)|herbaceous plant (generic term)
+paris university|1
+(noun)|Paris University|University of Paris|Sorbonne|university (generic term)
+parish|2
+(noun)|community (generic term)
+(noun)|jurisdiction (generic term)
+parishioner|1
+(noun)|churchgoer (generic term)|church member (generic term)
+parisian|2
+(adj)|Parisian|national capital (related term)
+(noun)|Parisian|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+parisienne|1
+(noun)|Parisienne|Parisian (generic term)
+parisology|1
+(noun)|ambiguity (generic term)
+parity|5
+(noun)|para|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+(noun)|mathematical relation (generic term)
+(noun)|parity bit|check bit|bit (generic term)
+(noun)|conservation of parity|space-reflection symmetry|mirror symmetry|conservation (generic term)
+(noun)|equivalence (generic term)
+parity bit|1
+(noun)|parity|check bit|bit (generic term)
+parity check|1
+(noun)|redundant check|odd-even check|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+parjanya|1
+(noun)|Parjanya|Hindu deity (generic term)
+parji|1
+(noun)|Parji|Central Dravidian (generic term)
+park|8
+(noun)|parkland|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|commons|common|green|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|ballpark|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+(noun)|Park|Mungo Park|explorer (generic term)|adventurer (generic term)
+(noun)|parking lot|car park|parking area|lot (generic term)
+(noun)|gear (generic term)|gear mechanism (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+park ave.|1
+(noun)|Park Avenue|Park Ave.|street (generic term)
+park avenue|1
+(noun)|Park Avenue|Park Ave.|street (generic term)
+park bench|1
+(noun)|bench (generic term)
+park commissioner|1
+(noun)|commissioner (generic term)
+parka|1
+(noun)|windbreaker|windcheater|anorak|jacket (generic term)
+parka squirrel|1
+(noun)|Arctic ground squirrel|Citellus parryi|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+parker|2
+(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist (generic term)|saxist (generic term)
+(noun)|Parker|Dorothy Parker|Dorothy Rothschild Parker|writer (generic term)|author (generic term)
+parker house roll|1
+(noun)|Parker House roll|bun (generic term)|roll (generic term)
+parkeriaceae|1
+(noun)|Parkeriaceae|family Parkeriaceae|fern family (generic term)
+parkersburg|1
+(noun)|Parkersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+parkia|1
+(noun)|Parkia|genus Parkia|rosid dicot genus (generic term)
+parkia javanica|1
+(noun)|Parkia javanica|nitta tree (generic term)
+parking|2
+(noun)|room (generic term)|way (generic term)|elbow room (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+parking area|1
+(noun)|parking lot|car park|park|lot (generic term)
+parking brake|1
+(noun)|hand brake|emergency|emergency brake|brake (generic term)
+parking lot|1
+(noun)|car park|park|parking area|lot (generic term)
+parking meter|1
+(noun)|timer (generic term)
+parking space|1
+(noun)|parking zone|space (generic term)
+parking ticket|1
+(noun)|ticket (generic term)
+parking zone|1
+(noun)|parking space|space (generic term)
+parkinson|2
+(noun)|Parkinson|James Parkinson|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|Parkinson|C. Northcote Parkinson|Cyril Northcote Parkinson|historian (generic term)|historiographer (generic term)
+parkinson's|1
+(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+parkinson's disease|1
+(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+parkinson's law|1
+(noun)|Parkinson's law|observation (generic term)|reflection (generic term)|reflexion (generic term)
+parkinson's syndrome|1
+(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+parkinsonia|1
+(noun)|Parkinsonia|genus Parkinsonia|rosid dicot genus (generic term)
+parkinsonia aculeata|1
+(noun)|Jerusalem thorn|horsebean|Parkinsonia aculeata|shrub (generic term)|bush (generic term)
+parkinsonia florida|1
+(noun)|palo verde|Parkinsonia florida|Cercidium floridum|tree (generic term)
+parkinsonism|1
+(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|shaking palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+parkland|1
+(noun)|park|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+parks|1
+(noun)|Parks|Rosa Parks|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+parkway|1
+(noun)|drive|road (generic term)|route (generic term)
+parky|1
+(adj)|crisp|frosty|nipping|nippy|snappy|cold (similar term)
+parlance|1
+(noun)|idiom|formulation (generic term)|expression (generic term)
+parlay|2
+(noun)|bet (generic term)|wager (generic term)
+(verb)|double up|bet on (generic term)|back (generic term)|gage (generic term)|stake (generic term)|game (generic term)|punt (generic term)
+parley|2
+(noun)|negotiation (generic term)|dialogue (generic term)|talks (generic term)
+(verb)|negociate (generic term)
+parliament|2
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|fantan|sevens|card game (generic term)|cards (generic term)
+parliamentarian|2
+(noun)|Parliamentarian|Member of Parliament|legislator (generic term)
+(noun)|expert (generic term)
+parliamentary|2
+(adj)|legislature|legislative assembly|legislative|general assembly|law-makers (related term)
+(adj)|democratic (similar term)
+parliamentary agent|1
+(noun)|agent (generic term)
+parliamentary democracy|1
+(noun)|democracy (generic term)|republic (generic term)|commonwealth (generic term)
+parliamentary law|1
+(noun)|order|rules of order|parliamentary procedure|rule (generic term)|prescript (generic term)
+parliamentary monarchy|1
+(noun)|monarchy (generic term)
+parliamentary procedure|1
+(noun)|order|rules of order|parliamentary law|rule (generic term)|prescript (generic term)
+parlor|2
+(noun)|parlour|reception room (generic term)
+(noun)|living room|living-room|sitting room|front room|parlour|room (generic term)
+parlor car|1
+(noun)|parlour car|drawing-room car|palace car|chair car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+parlor game|1
+(noun)|parlour game|game (generic term)
+parlor grand|1
+(noun)|baby grand|baby grand piano|parlor grand piano|parlour grand|parlour grand piano|grand piano (generic term)|grand (generic term)
+parlor grand piano|1
+(noun)|baby grand|baby grand piano|parlor grand|parlour grand|parlour grand piano|grand piano (generic term)|grand (generic term)
+parlormaid|1
+(noun)|parlourmaid|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+parlour|2
+(noun)|parlor|reception room (generic term)
+(noun)|living room|living-room|sitting room|front room|parlor|room (generic term)
+parlour car|1
+(noun)|parlor car|drawing-room car|palace car|chair car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+parlour game|1
+(noun)|parlor game|game (generic term)
+parlour grand|1
+(noun)|baby grand|baby grand piano|parlor grand|parlor grand piano|parlour grand piano|grand piano (generic term)|grand (generic term)
+parlour grand piano|1
+(noun)|baby grand|baby grand piano|parlor grand|parlor grand piano|parlour grand|grand piano (generic term)|grand (generic term)
+parlourmaid|1
+(noun)|parlormaid|maid (generic term)|maidservant (generic term)|housemaid (generic term)|amah (generic term)
+parlous|1
+(adj)|perilous|precarious|touch-and-go|dangerous (similar term)|unsafe (similar term)
+parmelia|1
+(noun)|Parmelia|genus Parmelia|fungus genus (generic term)
+parmeliaceae|1
+(noun)|Parmeliaceae|family Parmeliaceae|fungus family (generic term)
+parmenides|1
+(noun)|Parmenides|philosopher (generic term)
+parmesan|1
+(noun)|Parmesan|cheese (generic term)
+parnahiba|1
+(noun)|Parnaiba|Parnahiba|river (generic term)
+parnaiba|1
+(noun)|Parnaiba|Parnahiba|river (generic term)
+parnassia|1
+(noun)|grass-of-Parnassus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+parnassia fimbriata|1
+(noun)|fringed grass of Parnassus|Parnassia fimbriata|wildflower (generic term)|wild flower (generic term)
+parnassia palustris|1
+(noun)|bog star|Parnassia palustris|parnassia (generic term)|grass-of-Parnassus (generic term)
+parnassus|1
+(noun)|Parnassus|Mount Parnassus|Liakoura|mountain peak (generic term)
+parnell|1
+(noun)|Parnell|Charles Stewart Parnell|nationalist leader (generic term)
+parochetus|1
+(noun)|Parochetus|genus Parochetus|rosid dicot genus (generic term)
+parochetus communis|1
+(noun)|shamrock pea|Parochetus communis|herb (generic term)|herbaceous plant (generic term)
+parochial|2
+(adj)|jurisdiction (related term)
+(adj)|insular|provincial (similar term)
+parochial school|1
+(noun)|church school|religious school (generic term)
+parochialism|1
+(noun)|narrow-mindedness (generic term)|narrowness (generic term)
+parodist|1
+(noun)|lampooner|humorist (generic term)|humourist (generic term)
+parody|4
+(noun)|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(noun)|mockery|takeoff|apery (generic term)|mimicry (generic term)
+(verb)|act (generic term)|play (generic term)|represent (generic term)
+(verb)|spoof|burlesque|mock (generic term)
+paroicous|1
+(adj)|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+parol evidence rule|1
+(noun)|rule of evidence (generic term)
+parole|4
+(noun)|word|word of honor|promise (generic term)
+(noun)|password|watchword|word|countersign|positive identification (generic term)|secret (generic term)|arcanum (generic term)
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)
+parolee|1
+(noun)|probationer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+paronomasia|1
+(noun)|pun|punning|wordplay|fun (generic term)|play (generic term)|sport (generic term)
+paronychia|2
+(noun)|infection (generic term)
+(noun)|Paronychia|genus Paronychia|caryophylloid dicot genus (generic term)
+parophrys|1
+(noun)|Parophrys|genus Parophrys|fish genus (generic term)
+parophrys vitulus|1
+(noun)|English sole|lemon sole|Parophrys vitulus|sole (generic term)
+paroquet|1
+(noun)|parakeet|parrakeet|parroket|paraquet|parroquet|parrot (generic term)
+parosamia|1
+(noun)|dysosmia|olfactory impairment|disorder (generic term)|upset (generic term)
+parotid|1
+(adj)|salivary gland (related term)
+parotid gland|1
+(noun)|salivary gland (generic term)
+parotid vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+parotitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+parous|1
+(adj)|pregnancy|gestation|maternity (related term)
+parousia|1
+(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation (generic term)
+paroxetime|1
+(noun)|Paxil|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+paroxysm|1
+(noun)|fit|convulsion|attack (generic term)
+paroxysmal|1
+(adj)|attack (related term)
+paroxysmal trepidant abasia|1
+(noun)|abasia (generic term)
+paroxytone|1
+(noun)|word (generic term)
+parquet|2
+(noun)|parquet floor|floor (generic term)|flooring (generic term)
+(noun)|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+parquet circle|1
+(noun)|parterre|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+parquet floor|1
+(noun)|parquet|floor (generic term)|flooring (generic term)
+parqueterie|1
+(noun)|parquetry|inlay (generic term)|floor cover (generic term)|floor covering (generic term)
+parquetry|1
+(noun)|parqueterie|inlay (generic term)|floor cover (generic term)|floor covering (generic term)
+parr|2
+(noun)|Parr|Catherine Parr|queen (generic term)
+(noun)|young fish (generic term)
+parrakeet|1
+(noun)|parakeet|parroket|paraquet|paroquet|parroquet|parrot (generic term)
+parricide|2
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+parrish|1
+(noun)|Parrish|Maxfield Parrish|Maxfield Frederick Parrish|painter (generic term)
+parroket|1
+(noun)|parakeet|parrakeet|paraquet|paroquet|parroquet|parrot (generic term)
+parroquet|1
+(noun)|parakeet|parrakeet|parroket|paraquet|paroquet|parrot (generic term)
+parrot|3
+(noun)|bird (generic term)
+(noun)|copycat (generic term)|imitator (generic term)|emulator (generic term)|ape (generic term)|aper (generic term)
+(verb)|repeat (generic term)|echo (generic term)
+parrot's beak|1
+(noun)|parrot's bill|Clianthus puniceus|glory pea (generic term)|clianthus (generic term)
+parrot's bill|1
+(noun)|parrot's beak|Clianthus puniceus|glory pea (generic term)|clianthus (generic term)
+parrot disease|1
+(noun)|psittacosis|animal disease (generic term)
+parrot fever|1
+(noun)|psittacosis|ornithosis|atypical pneumonia (generic term)|primary atypical pneumonia (generic term)|mycoplasmal pneumonia (generic term)
+parrotfish|1
+(noun)|polly fish|pollyfish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+parrotia|1
+(noun)|Parrotia|genus Parrotia|plant genus (generic term)
+parrotiopsis|1
+(noun)|Parrotiopsis|genus Parrotiopsis|plant genus (generic term)
+parrotlike|1
+(adj)|imitative (similar term)
+parry|4
+(noun)|blocking (generic term)|block (generic term)
+(noun)|counterpunch|counter|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+(verb)|block|deflect|fence (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+parry's penstemon|1
+(noun)|Parry's penstemon|Penstemon parryi|wildflower (generic term)|wild flower (generic term)
+parry's pinyon|1
+(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon (generic term)|pinyon (generic term)
+parry manzanita|1
+(noun)|Parry manzanita|Arctostaphylos manzanita|manzanita (generic term)
+pars anterior|1
+(noun)|pars distilis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pars distilis|1
+(noun)|pars anterior|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pars intermedia|1
+(noun)|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pars nervosa|1
+(noun)|posterior pituitary|posterior pituitary gland|neurohypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+parse|1
+(verb)|analyze (generic term)|analyse (generic term)|break down (generic term)|dissect (generic term)|take apart (generic term)
+parsec|1
+(noun)|secpar|astronomy unit (generic term)
+parsee|1
+(noun)|Parsee|Parsi|religious person (generic term)
+parseeism|1
+(noun)|Parsiism|Parseeism|Zoroastrianism (generic term)|Mazdaism (generic term)
+parser|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+parsi|1
+(noun)|Parsee|Parsi|religious person (generic term)
+parsiism|1
+(noun)|Parsiism|Parseeism|Zoroastrianism (generic term)|Mazdaism (generic term)
+parsimonious|1
+(adj)|penurious|stingy (similar term)|ungenerous (similar term)
+parsimoniousness|2
+(noun)|parsimony|thrift|penny-pinching|frugality (generic term)|frugalness (generic term)
+(noun)|meanness|minginess|niggardliness|niggardness|parsimony|tightness|tightfistedness|closeness|stinginess (generic term)
+parsimony|2
+(noun)|parsimoniousness|thrift|penny-pinching|frugality (generic term)|frugalness (generic term)
+(noun)|meanness|minginess|niggardliness|niggardness|parsimoniousness|tightness|tightfistedness|closeness|stinginess (generic term)
+parsley|2
+(noun)|Petroselinum crispum|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+parsley-leaved thorn|1
+(noun)|parsley haw|Crataegus apiifolia|Crataegus marshallii|hawthorn (generic term)|haw (generic term)
+parsley-like|1
+(adj)|vegetable (similar term)
+parsley haw|1
+(noun)|parsley-leaved thorn|Crataegus apiifolia|Crataegus marshallii|hawthorn (generic term)|haw (generic term)
+parsnip|3
+(noun)|root (generic term)
+(noun)|Pastinaca sativa|herb (generic term)|herbaceous plant (generic term)
+(noun)|root vegetable (generic term)
+parson|1
+(noun)|curate|minister of religion|minister|pastor|rector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+parson's nose|1
+(noun)|pope's nose|helping (generic term)|portion (generic term)|serving (generic term)
+parsonage|1
+(noun)|vicarage|rectory|residence (generic term)
+parsons|1
+(noun)|Parsons|Talcott Parsons|sociologist (generic term)
+parsons table|1
+(noun)|Parsons table|table (generic term)
+part|18
+(noun)|portion|component part|component|relation (generic term)
+(noun)|region|location (generic term)
+(noun)|concern (generic term)
+(noun)|portion|object (generic term)|physical object (generic term)
+(noun)|section|division|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|function|office|role|duty (generic term)
+(noun)|piece|thing (generic term)
+(noun)|character|role|theatrical role|persona|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+(noun)|share|portion|percentage|assets (generic term)
+(noun)|contribution|share|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|voice|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(noun)|parting|line (generic term)
+(verb)|separate|split|move (generic term)
+(verb)|separate|split up|split|break|break up
+(verb)|depart|start|start out|set forth|set off|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+(verb)|separate|divide|change (generic term)
+(verb)|separate|disunite|divide|move (generic term)|displace (generic term)
+(adv)|partially|partly|wholly (antonym)
+part-of-speech tagger|1
+(noun)|pos tagger|tagger (generic term)|tagging program (generic term)
+part-owner|1
+(noun)|owner (generic term)|possessor (generic term)
+part-singing|1
+(noun)|singing (generic term)|vocalizing (generic term)
+part-time|2
+(adj)|parttime|half-time (similar term)|irregular (similar term)|temporary (similar term)|odd-job (similar term)|underemployed (similar term)|full-time (antonym)
+(adv)|half-time|full-time (antonym)
+part-timer|1
+(noun)|worker (generic term)
+part music|1
+(noun)|music (generic term)
+part name|1
+(noun)|meronym|word (generic term)
+part of speech|1
+(noun)|form class|word class|grammatical category (generic term)|syntactic category (generic term)
+part to whole relation|1
+(noun)|meronymy|semantic relation (generic term)
+part with|1
+(verb)|spare|give up|dispense with|give (generic term)
+partake|3
+(verb)|share (generic term)
+(verb)|share|partake in|get (generic term)|acquire (generic term)
+(verb)|touch|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+partake in|2
+(verb)|participate (generic term)|take part (generic term)
+(verb)|partake|share|get (generic term)|acquire (generic term)
+partaker|1
+(noun)|sharer|participant (generic term)
+parted|1
+(adj)|compound (similar term)
+parted leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+parterre|2
+(noun)|flower garden (generic term)
+(noun)|parquet circle|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+parthenium|1
+(noun)|Parthenium|genus Parthenium|asterid dicot genus (generic term)
+parthenium argentatum|1
+(noun)|guayule|Parthenium argentatum|subshrub (generic term)|suffrutex (generic term)
+parthenium hysterophorus|1
+(noun)|bastard feverfew|Parthenium hysterophorus|weed (generic term)
+parthenium integrifolium|1
+(noun)|American feverfew|wild quinine|prairie dock|Parthenium integrifolium|subshrub (generic term)|suffrutex (generic term)
+parthenocarpy|1
+(noun)|apomixis (generic term)
+parthenocissus|1
+(noun)|Parthenocissus|genus Parthenocissus|dicot genus (generic term)|magnoliopsid genus (generic term)
+parthenocissus quinquefolia|1
+(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine (generic term)
+parthenocissus tricuspidata|1
+(noun)|Boston ivy|Japanese ivy|Parthenocissus tricuspidata|vine (generic term)
+parthenogenesis|2
+(noun)|parthenogeny|virgin birth|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|parthenogeny|apomixis (generic term)
+parthenogenetic|1
+(adj)|agamic|agamous|agamogenetic|apomictic|asexual (similar term)|nonsexual (similar term)
+parthenogeny|2
+(noun)|parthenogenesis|virgin birth|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|parthenogenesis|apomixis (generic term)
+parthenon|1
+(noun)|Parthenon|temple (generic term)
+parthenote|1
+(noun)|cell (generic term)
+parthia|1
+(noun)|Parthia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+parthian|3
+(adj)|Parthian|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|parting|last (similar term)
+(noun)|Parthian|Asian (generic term)|Asiatic (generic term)
+parti-color|1
+(verb)|motley|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+parti pris|1
+(noun)|preconception|prepossession|preconceived opinion|preconceived idea|preconceived notion|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+partial|5
+(adj)|incomplete (similar term)|uncomplete (similar term)
+(adj)|unfair|biased (similar term)|colored (similar term)|coloured (similar term)|one-sided (similar term)|slanted (similar term)|unfair (related term)|unjust (related term)|impartial (antonym)
+(adj)|fond|inclined (similar term)
+(noun)|partial derivative|derived function (generic term)|derivative (generic term)|differential coefficient (generic term)|differential (generic term)|first derivative (generic term)
+(noun)|overtone|partial tone|harmonic (generic term)
+partial abortion|1
+(noun)|incomplete abortion|spontaneous abortion (generic term)|miscarriage (generic term)|stillbirth (generic term)
+partial breach|1
+(noun)|breach of contract (generic term)
+partial correlation|1
+(noun)|correlation (generic term)|correlational statistics (generic term)
+partial denture|1
+(noun)|denture (generic term)|dental plate (generic term)|plate (generic term)
+partial derivative|1
+(noun)|partial|derived function (generic term)|derivative (generic term)|differential coefficient (generic term)|differential (generic term)|first derivative (generic term)
+partial differential equation|1
+(noun)|differential equation (generic term)
+partial eclipse|1
+(noun)|eclipse (generic term)|occultation (generic term)
+partial tone|1
+(noun)|overtone|partial|harmonic (generic term)
+partial veil|1
+(noun)|velum|plant part (generic term)|plant structure (generic term)
+partial verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)
+partiality|2
+(noun)|fondness|fancy|liking (generic term)
+(noun)|partisanship|inclination (generic term)|disposition (generic term)|tendency (generic term)|impartiality (antonym)
+partially|1
+(adv)|partly|part|wholly (antonym)
+partialness|1
+(noun)|incompleteness (generic term)|rawness (generic term)
+partible|1
+(adj)|divisible (similar term)
+participant|2
+(noun)|associate (generic term)
+(noun)|player|contestant (generic term)
+participant role|1
+(noun)|semantic role|grammatical category (generic term)|syntactic category (generic term)
+participate|2
+(verb)|take part|act (generic term)|move (generic term)
+(verb)|enter|drop out (antonym)
+participating|1
+(adj)|active|involved (similar term)
+participation|2
+(noun)|engagement|involvement|involution|group action (generic term)|non-involvement (antonym)|nonparticipation (antonym)|non-engagement (antonym)
+(noun)|involvement|condition (generic term)|status (generic term)
+participation financing|1
+(noun)|participation loan|loan participation|loan (generic term)
+participation loan|1
+(noun)|loan participation|participation financing|loan (generic term)
+participatory|1
+(adj)|democratic (similar term)
+participial|2
+(adj)|verb (related term)
+(noun)|participle|verb (generic term)
+participle|1
+(noun)|participial|verb (generic term)
+particle|3
+(noun)|atom|molecule|corpuscle|mote|speck|material (generic term)|stuff (generic term)
+(noun)|subatomic particle|body (generic term)
+(noun)|function word (generic term)|closed-class word (generic term)
+particle accelerator|1
+(noun)|accelerator|atom smasher|scientific instrument (generic term)
+particle beam|1
+(noun)|beam (generic term)|ray (generic term)|electron beam (generic term)
+particle board|1
+(noun)|fiberboard|fibreboard|wallboard (generic term)|drywall (generic term)
+particle physics|1
+(noun)|high-energy physics|high energy physics|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+particolored|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particoloured|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+particolored buckeye|1
+(noun)|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+particoloured|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|piebald|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+particular|9
+(adj)|peculiar|special|specific (similar term)
+(adj)|specific (similar term)
+(adj)|especial|exceptional|special|uncommon (similar term)
+(adj)|special|primary (similar term)
+(adj)|finical|finicky|fussy|picky|fastidious (similar term)
+(adj)|careful (similar term)
+(noun)|specific|fact (generic term)|general (antonym)|general (antonym)
+(noun)|detail|item|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|particular proposition|proposition (generic term)|universal proposition (antonym)|universal (antonym)
+particular baptist|1
+(noun)|Calvinistic Baptist|Particular Baptist|Baptist denomination (generic term)
+particular date|1
+(noun)|date|point (generic term)|point in time (generic term)
+particular proposition|1
+(noun)|particular|proposition (generic term)|universal proposition (antonym)|universal (antonym)
+particularisation|1
+(noun)|particularization|detailing|description (generic term)
+particularise|1
+(verb)|specify|particularize|specialize|specialise|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)|generalize (antonym)
+particularised|1
+(adj)|particularized|specific (similar term)
+particularism|1
+(noun)|focus (generic term)|focusing (generic term)|focussing (generic term)|focal point (generic term)|direction (generic term)|centering (generic term)
+particularistic|1
+(adj)|focus|focusing|focussing|focal point|direction|centering (related term)
+particularity|1
+(noun)|specialness|quality (generic term)|generality (antonym)
+particularization|1
+(noun)|particularisation|detailing|description (generic term)
+particularize|1
+(verb)|specify|particularise|specialize|specialise|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)|generalize (antonym)
+particularized|1
+(adj)|particularised|specific (similar term)
+particularly|3
+(adv)|peculiarly|especially|specially
+(adv)|in particular
+(adv)|peculiarly
+particulate|2
+(adj)|nonparticulate (antonym)
+(noun)|particulate matter|material (generic term)|stuff (generic term)
+particulate matter|1
+(noun)|particulate|material (generic term)|stuff (generic term)
+particulate radiation|1
+(noun)|corpuscular radiation|radiation (generic term)|radioactivity (generic term)
+parting|3
+(adj)|parthian|last (similar term)
+(noun)|farewell|leave|leave-taking|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(noun)|part|line (generic term)
+partisan|5
+(adj)|partizan|party-spirited (similar term)|tendentious (similar term)|tendencious (similar term)|nonpartisan (antonym)
+(adj)|denominational|sectarian (similar term)
+(noun)|zealot|drumbeater|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)|nonpartisan (antonym)
+(noun)|enthusiast|partizan|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|partizan|pike (generic term)
+partisanship|1
+(noun)|partiality|inclination (generic term)|disposition (generic term)|tendency (generic term)|impartiality (antonym)
+partitia|2
+(noun)|variation (generic term)
+(noun)|suite (generic term)
+partition|5
+(noun)|divider|structure (generic term)|construction (generic term)
+(noun)|division|partitioning|segmentation|sectionalization|sectionalisation|separation (generic term)
+(noun)|computer memory unit (generic term)
+(verb)|partition off|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|zone|separate (generic term)|divide (generic term)
+partition off|1
+(verb)|partition|separate (generic term)|divide (generic term)|part (generic term)
+partitioned|1
+(adj)|partitioned off|divided (similar term)
+partitioned off|1
+(adj)|partitioned|divided (similar term)
+partitioning|2
+(noun)|breakdown|analysis (generic term)|analytic thinking (generic term)
+(noun)|division|partition|segmentation|sectionalization|sectionalisation|separation (generic term)
+partitionist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+partitive|4
+(adj)|relation (related term)
+(adj)|separation (related term)
+(adj)|separative|disjunctive (similar term)
+(noun)|word (generic term)
+partiya karkeran kurdistan|1
+(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+partizan|3
+(adj)|partisan|party-spirited (similar term)|tendentious (similar term)|tendencious (similar term)|nonpartisan (antonym)
+(noun)|enthusiast|partisan|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|partisan|pike (generic term)
+partly|1
+(adv)|partially|part|wholly (antonym)
+partner|5
+(noun)|spouse|married person|mate|better half|relative (generic term)|relation (generic term)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+(noun)|collaborator|cooperator|pardner|associate (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|act (generic term)|move (generic term)
+partner in crime|1
+(noun)|confederate|collaborator|henchman|accessory (generic term)|accessary (generic term)
+partner off|1
+(verb)|pair|pair off|couple|unite (generic term)|unify (generic term)
+partner relation|1
+(noun)|fiduciary relation (generic term)
+partnership|3
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|relationship (generic term)|human relationship (generic term)
+(noun)|contract (generic term)
+partnership certificate|1
+(noun)|security (generic term)|certificate (generic term)
+partridge|5
+(noun)|wildfowl (generic term)
+(noun)|tinamou|game bird (generic term)
+(noun)|phasianid (generic term)
+(noun)|bobwhite|bobwhite quail|quail (generic term)
+(noun)|ruffed grouse|Bonasa umbellus|grouse (generic term)
+partridge pea|1
+(noun)|sensitive pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub (generic term)|suffrutex (generic term)
+partridgeberry|1
+(noun)|boxberry|twinberry|Mitchella repens|vine (generic term)
+parts|1
+(noun)|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+parts bin|1
+(noun)|bin (generic term)
+parts catalog|1
+(noun)|parts catalogue|catalog (generic term)|catalogue (generic term)
+parts catalogue|1
+(noun)|parts catalog|catalog (generic term)|catalogue (generic term)
+parts department|1
+(noun)|business department (generic term)
+parts inventory|1
+(noun)|inventory (generic term)|stock list (generic term)
+partsong|1
+(noun)|song (generic term)|vocal (generic term)
+parttime|1
+(adj)|part-time|half-time (similar term)|irregular (similar term)|temporary (similar term)|odd-job (similar term)|underemployed (similar term)|full-time (antonym)
+parturiency|1
+(noun)|labor|labour|confinement|lying-in|travail|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+parturient|2
+(adj)|organic process|biological process (related term)
+(adj)|nascent (similar term)
+parturition|1
+(noun)|birth|giving birth|birthing|organic process (generic term)|biological process (generic term)
+party|6
+(noun)|political party|organization (generic term)|organisation (generic term)
+(noun)|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+(noun)|company|set (generic term)|circle (generic term)|band (generic term)|lot (generic term)
+(noun)|social gathering (generic term)|social affair (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|celebrate (generic term)|fete (generic term)
+party-spirited|1
+(adj)|partisan (similar term)|partizan (similar term)
+party boss|1
+(noun)|political boss|boss|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+party favor|1
+(noun)|party favour|favor|favour|keepsake (generic term)|souvenir (generic term)|token (generic term)|relic (generic term)
+party favour|1
+(noun)|party favor|favor|favour|keepsake (generic term)|souvenir (generic term)|token (generic term)|relic (generic term)
+party game|1
+(noun)|game (generic term)
+party girl|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+party line|2
+(noun)|policy (generic term)
+(noun)|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+party liner|1
+(noun)|party man|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+party man|1
+(noun)|party liner|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+party of democratic kampuchea|1
+(noun)|Khmer Rouge|KR|Party of Democratic Kampuchea|Communist Party of Kampuchea|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+party pooper|1
+(noun)|spoilsport|killjoy|wet blanket|unwelcome person (generic term)|persona non grata (generic term)
+party spirit|1
+(noun)|devotion (generic term)
+party to the action|1
+(noun)|party to the transaction|party (generic term)|company (generic term)
+party to the transaction|1
+(noun)|party to the action|party (generic term)|company (generic term)
+party wall|1
+(noun)|wall (generic term)
+party whip|1
+(noun)|whip|legislator (generic term)
+partygoer|1
+(noun)|attendant (generic term)|attender (generic term)|attendee (generic term)|meeter (generic term)
+parula|1
+(noun)|Parula|genus Parula|bird genus (generic term)
+parula americana|1
+(noun)|parula warbler|northern parula|Parula americana|New World warbler (generic term)|wood warbler (generic term)
+parula warbler|1
+(noun)|northern parula|Parula americana|New World warbler (generic term)|wood warbler (generic term)
+parulidae|1
+(noun)|Parulidae|family Parulidae|bird family (generic term)
+parus|1
+(noun)|Parus|genus Parus|bird genus (generic term)
+parus atricapillus|1
+(noun)|black-capped chickadee|blackcap|Parus atricapillus|chickadee (generic term)
+parus bicolor|1
+(noun)|tufted titmouse|Parus bicolor|titmouse (generic term)|tit (generic term)
+parus caeruleus|1
+(noun)|blue tit|tomtit|Parus caeruleus|titmouse (generic term)|tit (generic term)
+parus carolinensis|1
+(noun)|Carolina chickadee|Parus carolinensis|chickadee (generic term)
+parvati|1
+(noun)|Parvati|Anapurna|Annapurna|Hindu deity (generic term)
+parve|1
+(adj)|pareve|edible (similar term)|comestible (similar term)|eatable (similar term)
+parvenu|3
+(adj)|nouveau-riche|parvenue|upstart|pretentious (similar term)
+(adj)|parvenue|new (similar term)
+(noun)|upstart|nouveau-riche|arriviste|unpleasant person (generic term)|disagreeable person (generic term)
+parvenue|2
+(adj)|nouveau-riche|parvenu|upstart|pretentious (similar term)
+(adj)|parvenu|new (similar term)
+parvis|1
+(noun)|court (generic term)|courtyard (generic term)
+parvo|1
+(noun)|parvovirus|animal virus (generic term)
+parvovirus|1
+(noun)|parvo|animal virus (generic term)
+pas|1
+(noun)|step (generic term)
+pas de calais|1
+(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait (generic term)|sound (generic term)
+pas de deux|1
+(noun)|duet|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pas de quatre|1
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pas de trois|1
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pas seul|1
+(noun)|variation|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pasadena|1
+(noun)|Pasadena|city (generic term)|metropolis (generic term)|urban center (generic term)
+pasang|2
+(noun)|oryx|antelope (generic term)
+(noun)|bezoar goat|Capra aegagrus|wild goat (generic term)
+pascal|3
+(noun)|Pa|pressure unit (generic term)
+(noun)|Pascal|Blaise Pascal|mathematician (generic term)|philosopher (generic term)
+(noun)|Pascal|programming language (generic term)|programing language (generic term)
+pascal's law|1
+(noun)|Pascal's law|Pascal's law of fluid pressures|law (generic term)|law of nature (generic term)
+pascal's law of fluid pressures|1
+(noun)|Pascal's law|Pascal's law of fluid pressures|law (generic term)|law of nature (generic term)
+pascal celery|1
+(noun)|Paschal celery|celery (generic term)
+pascal compiler|1
+(noun)|Pascal compiler|compiler (generic term)|compiling program (generic term)
+pasch|2
+(noun)|Pasch|Pascha|Passover (generic term)|Pesach (generic term)|Pesah (generic term)|Feast of the Unleavened Bread (generic term)
+(noun)|Pasch|Pascha|Easter (generic term)
+pascha|2
+(noun)|Pasch|Pascha|Passover (generic term)|Pesach (generic term)|Pesah (generic term)|Feast of the Unleavened Bread (generic term)
+(noun)|Pasch|Pascha|Easter (generic term)
+paschal|1
+(adj)|Easter (related term)
+paschal celery|1
+(noun)|pascal celery|Paschal celery|celery (generic term)
+paschal lamb|1
+(noun)|Agnus Dei|Paschal Lamb|emblem (generic term)|allegory (generic term)
+paseo|1
+(noun)|walk|walkway|path (generic term)
+pasha|1
+(noun)|pacha|authority (generic term)
+pashto|1
+(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian (generic term)|Iranian language (generic term)
+pashtoon|1
+(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan (generic term)|Afghanistani (generic term)
+pashtu|1
+(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian (generic term)|Iranian language (generic term)
+pashtun|2
+(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan (generic term)|Afghanistani (generic term)
+(noun)|Pathan|Pashtun|ethnic minority (generic term)
+pasigraphy|1
+(noun)|Pasigraphy|artificial language (generic term)
+pasiphae|1
+(noun)|Pasiphae|Greek deity (generic term)
+paso doble|2
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+paspalum|1
+(noun)|dallisgrass|dallis grass|Paspalum dilatatum|grass (generic term)
+paspalum dilatatum|1
+(noun)|dallisgrass|dallis grass|paspalum|Paspalum dilatatum|grass (generic term)
+paspalum distichum|1
+(noun)|knotgrass|Paspalum distichum|grass (generic term)
+paspalum notatum|1
+(noun)|Bahia grass|Paspalum notatum|grass (generic term)
+pasque flower|1
+(noun)|pasqueflower|wildflower (generic term)|wild flower (generic term)
+pasqueflower|1
+(noun)|pasque flower|wildflower (generic term)|wild flower (generic term)
+pasquinade|1
+(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+pass|43
+(adj)|passing|running (antonym)
+(noun)|base on balls|walk|accomplishment (generic term)|achievement (generic term)
+(noun)|leave (generic term)|leave of absence (generic term)
+(noun)|passing play|passing game|passing|football play (generic term)
+(noun)|mountain pass|notch|location (generic term)
+(noun)|passport|permission (generic term)
+(noun)|laissez passer|permission (generic term)
+(noun)|flight (generic term)|flying (generic term)
+(noun)|strait|straits|situation (generic term)
+(noun)|head|straits|juncture (generic term)|occasion (generic term)
+(noun)|cycle (generic term)|oscillation (generic term)
+(noun)|bye|concession (generic term)|conceding (generic term)|yielding (generic term)
+(noun)|liberty chit|license (generic term)|licence (generic term)|permit (generic term)
+(noun)|ticket (generic term)
+(noun)|crack|fling|go|whirl|offer|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|toss|flip|throw (generic term)
+(noun)|passing|qualifying|success (generic term)|failing (antonym)
+(verb)|go through|go across|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|pass over (related term)|pass over (related term)|pass over (related term)
+(verb)|travel by|pass by|surpass|go past|go by|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|legislate|ordain (generic term)|enact (generic term)
+(verb)|elapse|lapse|slip by|glide by|slip away|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|hand|reach|pass on|turn over|give|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|run|go|lead|extend|be (generic term)|extend to (related term)|run along (related term)
+(verb)|overtake|overhaul|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|happen|hap|go on|pass off|occur|fall out|come about|take place
+(verb)|clear|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|spend
+(verb)|guide|run|draw|pass over (related term)|pass around (related term)
+(verb)|communicate|pass on|pass along|put across|convey (generic term)|transmit (generic term)|communicate (generic term)
+(verb)|evanesce|fade|blow over|pass off|fleet|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|make it|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+(verb)|exceed|transcend|overstep|go past|top|excel (generic term)|stand out (generic term)|surpass (generic term)
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|fail (antonym)
+(verb)|let (generic term)|allow (generic term)|permit (generic term)
+(verb)|change (generic term)
+(verb)|sink|lapse|move (generic term)
+(verb)|be (generic term)
+(verb)|throw (generic term)
+(verb)|fall|return|devolve|change hands (generic term)|change owners (generic term)
+(verb)|make pass
+(verb)|authorize|authorise|clear|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|die|decease|perish|go|exit|pass away|expire|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|excrete|egest|eliminate|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+pass-through|1
+(noun)|opening (generic term)
+pass across|1
+(verb)|transit|pass through|move through|pass over|pass (generic term)|go through (generic term)|go across (generic term)
+pass along|1
+(verb)|communicate|pass on|pass|put across|convey (generic term)|transmit (generic term)|communicate (generic term)
+pass around|2
+(verb)|circulate|pass on|distribute|move (generic term)|displace (generic term)
+(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|spread|diffuse|disperse|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+pass away|2
+(verb)|die|decease|perish|go|exit|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+pass by|1
+(verb)|travel by|surpass|go past|go by|pass|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+pass catcher|1
+(noun)|receiver|pass receiver|football player (generic term)|footballer (generic term)
+pass completion|1
+(noun)|completion|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+pass judgment|1
+(verb)|evaluate|judge|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+pass off|6
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+(verb)|pass (generic term)|make pass (generic term)
+(verb)|evanesce|fade|blow over|fleet|pass|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|happen|hap|go on|occur|pass|fall out|come about|take place
+(verb)|emit|breathe|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+pass on|7
+(verb)|pass|hand|reach|turn over|give|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|impart|leave|give|tell (generic term)
+(verb)|advance|progress|move on|march on|go on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+(verb)|bequeath (generic term)|will (generic term)|leave (generic term)
+(verb)|relegate|submit|submit (generic term)|subject (generic term)
+(verb)|circulate|pass around|distribute|move (generic term)|displace (generic term)
+(verb)|communicate|pass|pass along|put across|convey (generic term)|transmit (generic term)|communicate (generic term)
+pass out|3
+(verb)|faint|conk|swoon|zonk out (generic term)|pass out (generic term)|black out (generic term)
+(verb)|distribute|give out|hand out|give (generic term)|gift (generic term)|present (generic term)
+(verb)|zonk out|black out|change state (generic term)|turn (generic term)
+pass over|5
+(verb)|transit|pass through|move through|pass across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|jump|skip|skip over|neglect (generic term)|pretermit (generic term)|omit (generic term)|drop (generic term)|miss (generic term)|leave out (generic term)|overlook (generic term)|overleap (generic term)
+(verb)|traverse|track|cover|cross|get over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|overfly|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|wipe|rub (generic term)|pass (related term)|wipe off (related term)|wipe away (related term)|wipe off (related term)|wipe out (related term)
+pass receiver|1
+(noun)|receiver|pass catcher|football player (generic term)|footballer (generic term)
+pass through|3
+(verb)|transit|move through|pass across|pass over|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|pass (generic term)|make pass (generic term)
+(verb)|infiltrate|pass (generic term)|go through (generic term)|go across (generic term)
+pass up|2
+(verb)|refuse|reject|turn down|decline|accept (antonym)
+(verb)|ignore (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+pass with flying colors|1
+(verb)|breeze through|ace|sweep through|sail through|nail|pass (generic term)|make it (generic term)
+passable|2
+(adj)|navigable (similar term)|negotiable (similar term)|surmountable (similar term)|climbable (similar term)|traversable (similar term)|travelable (similar term)|impassable (antonym)
+(adj)|adequate|fair to middling|tolerable|satisfactory (similar term)
+passably|1
+(adv)|reasonably|moderately|within reason|somewhat|fairly|middling|immoderately (antonym)|unreasonably (antonym)
+passado|1
+(noun)|lunge|straight thrust|stab (generic term)|thrust (generic term)|knife thrust (generic term)
+passage|10
+(noun)|transition|change of state (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|way (generic term)
+(noun)|enactment|legislation (generic term)|legislating (generic term)|lawmaking (generic term)
+(noun)|transit|journey (generic term)|journeying (generic term)
+(noun)|musical passage|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|passageway|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|passing|reaction (generic term)|response (generic term)
+(noun)|passing|movement (generic term)|motion (generic term)
+(noun)|handing over|delivery (generic term)|bringing (generic term)
+passageway|2
+(noun)|passage (generic term)
+(noun)|passage|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+passamaquody|1
+(noun)|Passamaquody|Algonquian (generic term)|Algonquin (generic term)
+passant|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+passbook|1
+(noun)|bankbook|record (generic term)
+passbook savings account|1
+(noun)|savings account (generic term)
+passe|1
+(adj)|antique|demode|ex|old-fashioned|old-hat|outmoded|passee|unfashionable (similar term)|unstylish (similar term)
+passe-partout|2
+(noun)|passkey|master key|master|key (generic term)
+(noun)|mounting (generic term)
+passed ball|1
+(noun)|pitch (generic term)|delivery (generic term)
+passee|1
+(adj)|antique|demode|ex|old-fashioned|old-hat|outmoded|passe|unfashionable (similar term)|unstylish (similar term)
+passementerie|1
+(noun)|trimming|trim|adornment (generic term)
+passenger|1
+(noun)|rider|traveler (generic term)|traveller (generic term)
+passenger car|1
+(noun)|coach|carriage|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+passenger pigeon|1
+(noun)|Ectopistes migratorius|pigeon (generic term)
+passenger ship|1
+(noun)|ship (generic term)
+passenger train|1
+(noun)|train (generic term)|railroad train (generic term)
+passenger van|1
+(noun)|van (generic term)
+passenger vehicle|1
+(noun)|bus|autobus|coach|charabanc|double-decker|jitney|motorbus|motorcoach|omnibus|public transport (generic term)
+passer|5
+(noun)|passerby|passer-by|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)|testee (generic term)|examinee (generic term)
+(noun)|forward passer|ball carrier (generic term)
+(noun)|Passer|genus Passer|bird genus (generic term)
+passer-by|1
+(noun)|passerby|passer|pedestrian (generic term)|walker (generic term)|footer (generic term)
+passer domesticus|1
+(noun)|English sparrow|house sparrow|Passer domesticus|sparrow (generic term)|true sparrow (generic term)
+passer montanus|1
+(noun)|tree sparrow|Passer montanus|sparrow (generic term)|true sparrow (generic term)
+passerby|1
+(noun)|passer-by|passer|pedestrian (generic term)|walker (generic term)|footer (generic term)
+passeres|1
+(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order (generic term)
+passeridae|1
+(noun)|Passeridae|family Passeridae|bird family (generic term)
+passeriform bird|1
+(noun)|passerine|bird (generic term)
+passeriformes|1
+(noun)|Passeriformes|order Passeriformes|animal order (generic term)
+passerina|1
+(noun)|Passerina|genus Passerina|bird genus (generic term)
+passerina cyanea|1
+(noun)|indigo bunting|indigo finch|indigo bird|Passerina cyanea|bunting (generic term)
+passerine|2
+(adj)|bird (related term)|nonpasserine (antonym)
+(noun)|passeriform bird|bird (generic term)
+passero|1
+(noun)|Passero|Cape Passero|naval battle (generic term)
+passero cape|1
+(noun)|Cape Passero|Passero Cape|cape (generic term)|ness (generic term)
+passiflora|1
+(noun)|Passiflora|genus Passiflora|dilleniid dicot genus (generic term)
+passiflora edulis|1
+(noun)|granadilla|purple granadillo|Passiflora edulis|passionflower (generic term)|passionflower vine (generic term)
+passiflora foetida|1
+(noun)|love-in-a-mist|running pop|wild water lemon|Passiflora foetida|passionflower (generic term)|passionflower vine (generic term)
+passiflora incarnata|1
+(noun)|maypop|Passiflora incarnata|passionflower (generic term)|passionflower vine (generic term)
+passiflora laurifolia|1
+(noun)|Jamaica honeysuckle|yellow granadilla|Passiflora laurifolia|passionflower (generic term)|passionflower vine (generic term)
+passiflora ligularis|1
+(noun)|granadilla|sweet granadilla|Passiflora ligularis|passionflower (generic term)|passionflower vine (generic term)
+passiflora maliformis|1
+(noun)|sweet calabash|Passiflora maliformis|passionflower (generic term)|passionflower vine (generic term)
+passiflora mollissima|1
+(noun)|banana passion fruit|Passiflora mollissima|passionflower (generic term)|passionflower vine (generic term)
+passiflora quadrangularis|1
+(noun)|granadilla|giant granadilla|Passiflora quadrangularis|passionflower (generic term)|passionflower vine (generic term)
+passifloraceae|1
+(noun)|Passifloraceae|family Passifloraceae|passionflower family|dilleniid dicot family (generic term)
+passim|1
+(adv)|throughout
+passing|12
+(adj)|ephemeral|short-lived|transient|transitory|fugacious|impermanent (similar term)|temporary (similar term)
+(adj)|pass|running (antonym)
+(adj)|satisfactory (similar term)
+(adj)|casual|cursory|perfunctory|careless (similar term)
+(noun)|pass|passing play|passing game|football play (generic term)
+(noun)|loss|departure|exit|expiration|going|release|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|passage|movement (generic term)|motion (generic term)
+(noun)|end (generic term)|last (generic term)|final stage (generic term)
+(noun)|passage|reaction (generic term)|response (generic term)
+(noun)|overtaking|reordering (generic term)
+(noun)|pass|qualifying|success (generic term)|failing (antonym)
+(adv)|exceedingly|extremely
+passing comment|1
+(noun)|obiter dictum|remark (generic term)|comment (generic term)
+passing game|1
+(noun)|pass|passing play|passing|football play (generic term)
+passing note|1
+(noun)|passing tone|note (generic term)|musical note (generic term)|tone (generic term)
+passing play|1
+(noun)|pass|passing game|passing|football play (generic term)
+passing shot|1
+(noun)|return (generic term)
+passing tone|1
+(noun)|passing note|note (generic term)|musical note (generic term)|tone (generic term)
+passing water|1
+(noun)|leak|wetting|making water|micturition (generic term)|urination (generic term)
+passion|7
+(noun)|passionateness|feeling (generic term)
+(noun)|heat|warmth|emotionality (generic term)|emotionalism (generic term)
+(noun)|rage|desire (generic term)
+(noun)|mania|cacoethes|irrational motive (generic term)
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|love|object (generic term)
+(noun)|Passion|Passion of Christ|agony (generic term)|suffering (generic term)|excruciation (generic term)
+passion fruit|1
+(noun)|edible fruit (generic term)
+passion of christ|1
+(noun)|Passion|Passion of Christ|agony (generic term)|suffering (generic term)|excruciation (generic term)
+passion play|1
+(noun)|Passion play|play (generic term)|drama (generic term)|dramatic play (generic term)
+passion sunday|1
+(noun)|Passion Sunday|Christian holy day (generic term)
+passion week|1
+(noun)|Holy Week|Passion Week|week (generic term)|hebdomad (generic term)
+passionate|1
+(adj)|ablaze (similar term)|aflame (similar term)|aroused (similar term)|ardent (similar term)|burning (similar term)|fervent (similar term)|fervid (similar term)|fiery (similar term)|impassioned (similar term)|perfervid (similar term)|torrid (similar term)|choleric (similar term)|demon-ridden (similar term)|fanatic (similar term)|fanatical (similar term)|overzealous (similar term)|rabid (similar term)|lustful (similar term)|lusty (similar term)|concupiscent (similar term)|wild (similar term)|emotional (related term)|enthusiastic (related term)|hot (related term)|loving (related term)|passionless (antonym)
+passionately|1
+(adv)|stormily|turbulently
+passionateness|1
+(noun)|passion|feeling (generic term)
+passionflower|1
+(noun)|passionflower vine|vine (generic term)
+passionflower family|1
+(noun)|Passifloraceae|family Passifloraceae|dilleniid dicot family (generic term)
+passionflower vine|1
+(noun)|passionflower|vine (generic term)
+passionless|2
+(adj)|platonic (similar term)|unimpassioned (similar term)|cold (related term)|unemotional (related term)|unenthusiastic (related term)|passionate (antonym)
+(adj)|emotionless|cold (similar term)
+passive|4
+(adj)|inactive|hands-off (similar term)|resistless (similar term)|supine (similar term)|unresisting (similar term)|active (antonym)
+(adj)|peaceful|nonviolent (similar term)
+(adj)|active (antonym)
+(noun)|passive voice|voice (generic term)|active voice (antonym)
+passive air defense|1
+(noun)|air defense (generic term)
+passive immunity|1
+(noun)|acquired immunity (generic term)
+passive matrix display|1
+(noun)|liquid crystal display (generic term)|LCD (generic term)
+passive resistance|1
+(noun)|nonviolent resistance|nonviolence|direct action (generic term)
+passive resister|1
+(noun)|non-resistant|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+passive source|1
+(noun)|informant (generic term)|source (generic term)
+passive transport|1
+(noun)|transport (generic term)
+passive trust|1
+(noun)|trust (generic term)|active trust (antonym)
+passive voice|1
+(noun)|passive|voice (generic term)|active voice (antonym)
+passively|1
+(adv)|actively (antonym)
+passiveness|2
+(noun)|passivity|submissiveness (generic term)
+(noun)|passivity|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+passivism|1
+(noun)|pacifism|pacificism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+passivity|2
+(noun)|passiveness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+(noun)|passiveness|submissiveness (generic term)
+passkey|1
+(noun)|passe-partout|master key|master|key (generic term)
+passover|1
+(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast (generic term)|moveable feast (generic term)
+passover supper|1
+(noun)|Seder|Passover supper|supper (generic term)
+passport|3
+(noun)|pass|permission (generic term)
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|recommendation|characteristic (generic term)
+password|1
+(noun)|watchword|word|parole|countersign|positive identification (generic term)|secret (generic term)|arcanum (generic term)
+past|7
+(adj)|ago (similar term)|agone (similar term)|ancient (similar term)|bygone (similar term)|bypast (similar term)|departed (similar term)|foregone (similar term)|gone (similar term)|chivalric (similar term)|knightly (similar term)|medieval (similar term)|early (similar term)|former (similar term)|other (similar term)|erstwhile (similar term)|former (similar term)|old (similar term)|onetime (similar term)|quondam (similar term)|sometime (similar term)|former (similar term)|late (similar term)|previous (similar term)|historic (similar term)|historical (similar term)|last (similar term)|late (similar term)|recent (similar term)|olden (similar term)|other (similar term)|prehistoric (similar term)|prehistorical (similar term)|then (similar term)|ultimo (similar term)|ult (similar term)|noncurrent (related term)|old (related term)|outgoing (related term)|present (antonym)|future (antonym)
+(adj)|preceding|retiring|outgoing (similar term)
+(adj)|tense (related term)
+(noun)|past times|yesteryear|yore|time (generic term)|future (antonym)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|past tense|tense (generic term)
+(adv)|by
+past master|2
+(noun)|master (generic term)|professional (generic term)
+(noun)|expert (generic term)
+past participle|1
+(noun)|perfect participle|participle (generic term)|participial (generic term)
+past perfect|1
+(noun)|past perfect tense|pluperfect|pluperfect tense|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+past perfect tense|1
+(noun)|past perfect|pluperfect|pluperfect tense|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+past progressive|1
+(noun)|past progressive tense|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+past progressive tense|1
+(noun)|past progressive|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+past tense|1
+(noun)|past|tense (generic term)
+past times|1
+(noun)|past|yesteryear|yore|time (generic term)|future (antonym)
+pasta|2
+(noun)|dish (generic term)
+(noun)|alimentary paste|food (generic term)|solid food (generic term)
+pasta salad|1
+(noun)|salad (generic term)
+pasta sauce|1
+(noun)|spaghetti sauce|sauce (generic term)
+paste|6
+(noun)|composition (generic term)
+(noun)|library paste|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+(noun)|spread|condiment (generic term)
+(verb)|glue|attach (generic term)
+(verb)|beat (generic term)
+(verb)|cover (generic term)
+paste-up|1
+(noun)|composition (generic term)
+pasteboard|1
+(noun)|cardboard (generic term)|composition board (generic term)
+pasted|1
+(adj)|glued|affixed (similar term)
+pastel|3
+(adj)|delicate (similar term)
+(adj)|light (similar term)|light-colored (similar term)
+(noun)|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+pastel-colored|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+pastelike|1
+(adj)|pasty|colorless (similar term)|colourless (similar term)
+paster|2
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|gummed label|sticker|label (generic term)
+pastern|1
+(noun)|fetter bone|bone (generic term)|os (generic term)
+pasternak|1
+(noun)|Pasternak|Boris Pasternak|Boris Leonidovich Pasternak|writer (generic term)|author (generic term)
+pasteur|1
+(noun)|Pasteur|Louis Pasteur|chemist (generic term)|biologist (generic term)|life scientist (generic term)
+pasteurellosis|1
+(noun)|hemorrhagic septicemia|animal disease (generic term)
+pasteurian|1
+(adj)|Pasteurian|chemist|biologist|life scientist (related term)
+pasteurisation|1
+(noun)|pasteurization|sterilization (generic term)|sterilisation (generic term)
+pasteurise|1
+(verb)|pasteurize|change integrity (generic term)
+pasteurised|1
+(adj)|pasteurized
+pasteurization|1
+(noun)|pasteurisation|sterilization (generic term)|sterilisation (generic term)
+pasteurize|1
+(verb)|pasteurise|change integrity (generic term)
+pasteurized|1
+(adj)|pasteurised
+pasteurized milk|1
+(noun)|milk (generic term)
+pastiche|2
+(noun)|medley|potpourri|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|work of art (generic term)
+pastil|1
+(noun)|cough drop|troche|pastille|lozenge (generic term)
+pastille|1
+(noun)|cough drop|troche|pastil|lozenge (generic term)
+pastime|1
+(noun)|interest|pursuit|diversion (generic term)|recreation (generic term)
+pastinaca|1
+(noun)|Pastinaca|genus Pastinaca|rosid dicot genus (generic term)|Umbelliferae (generic term)|family Umbelliferae (generic term)|Apiaceae (generic term)|family Apiaceae (generic term)|carrot family (generic term)
+pastinaca sativa|1
+(noun)|parsnip|Pastinaca sativa|herb (generic term)|herbaceous plant (generic term)
+pastis|1
+(noun)|liqueur (generic term)|cordial (generic term)
+pastness|1
+(noun)|timing (generic term)|presentness (antonym)|futurity (antonym)
+pasto|1
+(noun)|Galeras|Pasto|volcano (generic term)
+pastor|2
+(noun)|curate|minister of religion|minister|parson|rector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|Pastor|subgenus Pastor|bird genus (generic term)
+pastor roseus|1
+(noun)|rose-colored starling|rose-colored pastor|Pastor sturnus|Pastor roseus|starling (generic term)
+pastor sturnus|1
+(noun)|rose-colored starling|rose-colored pastor|Pastor sturnus|Pastor roseus|starling (generic term)
+pastoral|7
+(adj)|clergyman|reverend|man of the cloth (related term)
+(adj)|bucolic|herder|herdsman|drover (related term)
+(adj)|arcadian|bucolic|rustic|rural (similar term)
+(adj)|idyllic|pleasant (similar term)
+(noun)|pastorale|idyll|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|letter (generic term)|missive (generic term)
+(noun)|literary composition (generic term)|literary work (generic term)
+pastorale|1
+(noun)|pastoral|idyll|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+pastorate|2
+(noun)|clergy (generic term)
+(noun)|pastorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+pastorship|1
+(noun)|pastorate|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+pastrami|1
+(noun)|beef (generic term)|boeuf (generic term)
+pastry|2
+(noun)|pastry dough|dough (generic term)
+(noun)|baked goods (generic term)
+pastry cart|1
+(noun)|serving cart (generic term)
+pastry cook|1
+(noun)|chef (generic term)
+pastry dough|1
+(noun)|pastry|dough (generic term)
+pasturage|2
+(noun)|herbage|herb (generic term)|herbaceous plant (generic term)
+(noun)|eatage|forage|pasture|grass|feed (generic term)|provender (generic term)
+pasture|4
+(noun)|pastureland|grazing land|lea|ley|grassland (generic term)
+(noun)|eatage|forage|pasturage|grass|feed (generic term)|provender (generic term)
+(verb)|crop|graze|feed (generic term)|give (generic term)
+(verb)|crop|browse|graze|range|feed (generic term)|eat (generic term)
+pasture brake|1
+(noun)|bracken|brake|Pteridium aquilinum|fern (generic term)
+pastureland|1
+(noun)|pasture|grazing land|lea|ley|grassland (generic term)
+pasturized milk|1
+(noun)|milk (generic term)
+pasty|4
+(adj)|pastelike|colorless (similar term)|colourless (similar term)
+(adj)|gluey|glutinous|gummy|mucilaginous|sticky|viscid|viscous|adhesive (similar term)
+(noun)|meat pie (generic term)
+(noun)|patch (generic term)
+pat|6
+(adj)|glib|slick|plausible (similar term)
+(adj)|appropriate (similar term)
+(noun)|rap|tap|sound (generic term)
+(noun)|tap|dab|touch (generic term)|touching (generic term)
+(verb)|chuck|caress (generic term)
+(verb)|dab|strike (generic term)
+pataca|1
+(noun)|Macao monetary unit (generic term)
+patagonia|1
+(noun)|Patagonia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+patagonian desert|1
+(noun)|Patagonian Desert|desert (generic term)
+patas|1
+(noun)|hussar monkey|Erythrocebus patas|Old World monkey (generic term)|catarrhine (generic term)
+patavium|1
+(noun)|Padua|Padova|Patavium|city (generic term)|metropolis (generic term)|urban center (generic term)
+patch|13
+(noun)|spot|speckle|dapple|fleck|maculation|marking (generic term)
+(noun)|plot|plot of ground|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(noun)|while|piece|spell|time (generic term)
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|temporary hookup|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)|lash-up (generic term)|contrivance (generic term)
+(noun)|mend|darn|sewing (generic term)|stitchery (generic term)
+(noun)|eyepatch|cloth covering (generic term)
+(noun)|bandage|dressing (generic term)|medical dressing (generic term)
+(verb)|piece|join (generic term)|conjoin (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|patch up|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)|patch up (related term)
+(verb)|piece|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+patch pocket|1
+(noun)|pocket (generic term)
+patch test|1
+(noun)|skin test (generic term)
+patch up|2
+(verb)|patch|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)|patch up (related term)
+(verb)|reconcile|make up|conciliate|settle|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+patchboard|1
+(noun)|switchboard|plugboard|central (generic term)|telephone exchange (generic term)|exchange (generic term)
+patchcord|1
+(noun)|wire (generic term)|conducting wire (generic term)
+patched|2
+(adj)|old (similar term)
+(adj)|spotty|spotted|black-and-white|patterned (similar term)
+patchiness|1
+(noun)|unevenness (generic term)|variability (generic term)
+patching|1
+(noun)|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+patchouli|2
+(noun)|patchouly|pachouli|Pogostemon cablin|shrub (generic term)|bush (generic term)
+(noun)|patchouly|pachouli|perfume (generic term)|essence (generic term)
+patchouly|2
+(noun)|patchouli|pachouli|Pogostemon cablin|shrub (generic term)|bush (generic term)
+(noun)|patchouli|pachouli|perfume (generic term)|essence (generic term)
+patchwork|3
+(noun)|hodgepodge|jumble|theory (generic term)
+(noun)|patchwork quilt|quilt (generic term)|comforter (generic term)|puff (generic term)
+(noun)|sewing (generic term)|stitchery (generic term)
+patchwork quilt|1
+(noun)|patchwork|quilt (generic term)|comforter (generic term)|puff (generic term)
+patchy|1
+(adj)|uneven (similar term)
+pate|2
+(noun)|spread (generic term)|paste (generic term)
+(noun)|poll|crown|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+pate a choux|1
+(noun)|puff batter|pouf paste|batter (generic term)
+pate de foie gras|1
+(noun)|foie gras|pate (generic term)
+pate feuillete|1
+(noun)|puff paste|pastry (generic term)|pastry dough (generic term)
+patella|2
+(noun)|kneecap|kneepan|sesamoid bone (generic term)|sesamoid (generic term)|os sesamoideum (generic term)
+(noun)|Patella|genus Patella|mollusk genus (generic term)
+patella vulgata|1
+(noun)|common limpet|Patella vulgata|limpet (generic term)
+patellar|1
+(adj)|sesamoid bone|sesamoid|os sesamoideum (related term)
+patellar reflex|1
+(noun)|knee jerk|knee-jerk reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+patellidae|1
+(noun)|Patellidae|family Patellidae|mollusk family (generic term)
+patency|2
+(noun)|openness (generic term)
+(noun)|obviousness|noticeability|noticeableness|conspicuousness (generic term)
+patent|7
+(adj)|unobstructed (similar term)
+(adj)|apparent|evident|manifest|plain|unmistakable|obvious (similar term)
+(noun)|patent of invention|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|letters patent|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(verb)|procure (generic term)|secure (generic term)
+(verb)|register (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+patent and trademark office database|1
+(noun)|Patent and Trademark Office Database|Patent Office|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+patent application|1
+(noun)|application (generic term)
+patent ductus arteriosus|1
+(noun)|ductus arteriosus (generic term)
+patent infringement|1
+(noun)|violation (generic term)|infringement (generic term)
+patent law|1
+(noun)|jurisprudence (generic term)|law (generic term)|legal philosophy (generic term)
+patent leather|1
+(noun)|leather (generic term)
+patent log|1
+(noun)|screw log|taffrail log|log (generic term)
+patent medicine|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+patent of invention|1
+(noun)|patent|document (generic term)|written document (generic term)|papers (generic term)
+patent office|1
+(noun)|Patent and Trademark Office Database|Patent Office|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+patent right|1
+(noun)|legal right (generic term)
+patent system|1
+(noun)|legal system (generic term)
+patented|1
+(adj)|proprietary (similar term)
+patentee|1
+(noun)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+patently|1
+(adv)|obviously|evidently|manifestly|apparently|plainly|plain
+pater|1
+(noun)|father (generic term)|male parent (generic term)|begetter (generic term)
+paterfamilias|1
+(noun)|patriarch|man (generic term)|adult male (generic term)|head of household (generic term)
+paternal|4
+(adj)|parent (related term)
+(adj)|fatherly (similar term)|fatherlike (similar term)|paternalistic (similar term)|patriarchal (related term)|maternal (antonym)
+(adj)|parental|maternal|filial (antonym)
+(adj)|agnate|agnatic|related (similar term)
+paternal quality|1
+(noun)|fatherliness|parental quality (generic term)
+paternalism|1
+(noun)|attitude (generic term)|mental attitude (generic term)
+paternalistic|1
+(adj)|paternal (similar term)
+paternity|3
+(noun)|state (generic term)
+(noun)|fatherhood|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|authorship|initiation (generic term)|founding (generic term)|foundation (generic term)|institution (generic term)|origination (generic term)|creation (generic term)|innovation (generic term)|introduction (generic term)|instauration (generic term)
+paternity suit|1
+(noun)|bastardy proceeding|lawsuit (generic term)|suit (generic term)|case (generic term)|cause (generic term)|causa (generic term)
+paternity test|1
+(noun)|assay (generic term)|check (generic term)
+paternoster|2
+(noun)|Paternoster|Lord's Prayer (generic term)
+(noun)|elevator (generic term)|lift (generic term)
+paterson|2
+(noun)|Paterson|William Patterson|American Revolutionary leader (generic term)
+(noun)|Paterson|city (generic term)|metropolis (generic term)|urban center (generic term)
+path|4
+(noun)|way|way of life|course (generic term)|course of action (generic term)
+(noun)|way (generic term)
+(noun)|route|itinerary|line (generic term)
+(noun)|track|course|line (generic term)
+path of least resistance|1
+(noun)|line of least resistance|fashion (generic term)
+pathan|2
+(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan (generic term)|Afghanistani (generic term)
+(noun)|Pathan|Pashtun|ethnic minority (generic term)
+pathetic|3
+(adj)|hapless|miserable|misfortunate|piteous|pitiable|pitiful|poor|wretched|unfortunate (similar term)
+(adj)|pitiable|pitiful|contemptible (similar term)
+(adj)|ridiculous|silly|undignified (similar term)
+pathetic fallacy|1
+(noun)|fallacy (generic term)|false belief (generic term)
+pathetically|1
+(adv)|pitiably
+pathfinder|1
+(noun)|scout|guide|expert (generic term)
+pathless|1
+(adj)|roadless|trackless|untracked|untrod|untrodden|inaccessible (similar term)|unaccessible (similar term)
+pathogen|1
+(noun)|microorganism (generic term)|micro-organism (generic term)|infectious agent (generic term)|infective agent (generic term)
+pathogenesis|1
+(noun)|pathologic process (generic term)|pathological process (generic term)
+pathogenic|1
+(adj)|infective|morbific|unhealthful (similar term)
+pathologic|2
+(adj)|diseased|morbid|pathological|unhealthy (similar term)
+(adj)|pathological|medical science (related term)
+pathologic process|1
+(noun)|pathological process|organic process (generic term)|biological process (generic term)
+pathological|3
+(adj)|pathologic|medical science (related term)
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+(adj)|diseased|morbid|pathologic|unhealthy (similar term)
+pathological process|1
+(noun)|pathologic process|organic process (generic term)|biological process (generic term)
+pathological state|1
+(noun)|condition (generic term)|status (generic term)
+pathologist|1
+(noun)|diagnostician|specialist (generic term)|medical specialist (generic term)
+pathology|2
+(noun)|medical science (generic term)
+(noun)|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+pathos|3
+(noun)|poignancy|quality (generic term)
+(noun)|commiseration|pity|ruth|sympathy (generic term)|fellow feeling (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+pathway|2
+(noun)|nerve pathway|tract|nerve tract|white matter (generic term)|substantia alba (generic term)
+(noun)|footpath|path (generic term)
+patience|2
+(noun)|forbearance|longanimity|good nature (generic term)|impatience (antonym)
+(noun)|solitaire|card game (generic term)|cards (generic term)
+patient|4
+(adj)|diligent (similar term)|persevering (similar term)|enduring (similar term)|long-suffering (similar term)|forbearing (similar term)|longanimous (similar term)|tolerant (similar term)|patient of (similar term)|unhurried (similar term)|tolerant (related term)|uncomplaining (related term)|impatient (antonym)
+(adj)|uncomplaining (similar term)
+(noun)|case (generic term)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+(noun)|affected role|patient role|semantic role (generic term)|participant role (generic term)
+patient of|1
+(adj)|tolerant|patient (similar term)
+patient role|1
+(noun)|affected role|patient|semantic role (generic term)|participant role (generic term)
+patiently|1
+(adv)|with patience|impatiently (antonym)
+patina|1
+(noun)|coating (generic term)|coat (generic term)
+patinate|1
+(verb)|patinize|patinise|coat (generic term)|surface (generic term)
+patinise|1
+(verb)|patinate|patinize|coat (generic term)|surface (generic term)
+patinize|1
+(verb)|patinate|patinise|coat (generic term)|surface (generic term)
+patio|1
+(noun)|terrace|area (generic term)
+patisserie|1
+(noun)|bakery (generic term)|bakeshop (generic term)|bakehouse (generic term)
+patka|1
+(noun)|scarf (generic term)
+patness|1
+(noun)|opportuneness|timeliness|convenience (generic term)|inopportuneness (antonym)
+patois|2
+(noun)|slang|cant|jargon|lingo|argot|vernacular|non-standard speech (generic term)
+(noun)|dialect (generic term)|idiom (generic term)|accent (generic term)
+paton|1
+(noun)|Paton|Alan Paton|Alan Stewart Paton|writer (generic term)|author (generic term)
+patrai|1
+(noun)|Patras|Patrai|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+patras|1
+(noun)|Patras|Patrai|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+patrial|1
+(noun)|Britisher (generic term)|Briton (generic term)|Brit (generic term)
+patriarch|4
+(noun)|Patriarch|spiritual leader (generic term)
+(noun)|paterfamilias|man (generic term)|adult male (generic term)|head of household (generic term)
+(noun)|forefather (generic term)|father (generic term)|sire (generic term)
+(noun)|old man (generic term)|greybeard (generic term)|graybeard (generic term)|Methuselah (generic term)
+patriarchal|2
+(adj)|patriarchic (similar term)|patricentric (similar term)|paternal (related term)|matriarchal (antonym)
+(adj)|old man|greybeard|graybeard|Methuselah (related term)
+patriarchal cross|1
+(noun)|Cross (generic term)
+patriarchate|2
+(noun)|jurisdiction (generic term)
+(noun)|patriarchy|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+patriarchic|1
+(adj)|patriarchal (similar term)
+patriarchy|1
+(noun)|patriarchate|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+patricentric|1
+(adj)|patriarchal (similar term)
+patrician|4
+(adj)|noble (related term)|plebeian (antonym)|proletarian (antonym)
+(adj)|aristocratic|aristocratical|blue|blue-blooded|gentle|noble (similar term)
+(noun)|adult (generic term)|grownup (generic term)
+(noun)|aristocrat|blue blood|leader (generic term)
+patricide|1
+(noun)|parricide (generic term)
+patrick|1
+(noun)|Patrick|Saint Patrick|St. Patrick|Apostle (generic term)|Apostelic Father (generic term)|patron saint (generic term)
+patrick henry|1
+(noun)|Henry|Patrick Henry|American Revolutionary leader (generic term)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+patrick victor martindale white|1
+(noun)|White|Patrick White|Patrick Victor Martindale White|writer (generic term)|author (generic term)
+patrick white|1
+(noun)|White|Patrick White|Patrick Victor Martindale White|writer (generic term)|author (generic term)
+patrikin|1
+(noun)|agnate|patrilineal kin|patrisib|patrilineal sib|relative (generic term)|relation (generic term)
+patrilineage|1
+(noun)|agnation|unilateral descent (generic term)
+patrilineal|1
+(adj)|patrilinear|lineal (similar term)|direct (similar term)
+patrilineal kin|1
+(noun)|agnate|patrikin|patrisib|patrilineal sib|relative (generic term)|relation (generic term)
+patrilineal sib|1
+(noun)|agnate|patrikin|patrilineal kin|patrisib|relative (generic term)|relation (generic term)
+patrilinear|1
+(adj)|patrilineal|lineal (similar term)|direct (similar term)
+patrimonial|1
+(adj)|ancestral|hereditary|transmissible|inheritable (similar term)|heritable (similar term)
+patrimony|2
+(noun)|endowment (generic term)|endowment fund (generic term)
+(noun)|birthright|inheritance (generic term)|heritage (generic term)
+patriot|1
+(noun)|nationalist|national (generic term)|subject (generic term)
+patriot's day|1
+(noun)|Patriot's Day|day (generic term)
+patrioteer|1
+(noun)|chauvinist|jingoist|jingo|flag-waver|hundred-percenter|patriot (generic term)|nationalist (generic term)
+patriotic|1
+(adj)|loyal|chauvinistic (similar term)|flag-waving (similar term)|jingoistic (similar term)|nationalistic (similar term)|ultranationalistic (similar term)|superpatriotic (similar term)|loyal (related term)|unpatriotic (antonym)
+patriotically|1
+(adv)|unpatriotically (antonym)
+patriotism|1
+(noun)|nationalism|loyalty (generic term)|trueness (generic term)
+patrisib|1
+(noun)|agnate|patrikin|patrilineal kin|patrilineal sib|relative (generic term)|relation (generic term)
+patristic|1
+(adj)|patristical|theologian|theologist|theologizer|theologiser (related term)
+patristical|1
+(adj)|patristic|theologian|theologist|theologizer|theologiser (related term)
+patristics|2
+(noun)|patrology|writing (generic term)
+(noun)|patrology|Christian theology (generic term)
+patroclus|1
+(noun)|Patroclus|mythical being (generic term)
+patrol|4
+(noun)|detachment (generic term)
+(noun)|protection (generic term)
+(noun)|force (generic term)|personnel (generic term)
+(verb)|police|guard (generic term)
+patrol boat|1
+(noun)|patrol ship|vessel (generic term)|watercraft (generic term)
+patrol car|1
+(noun)|cruiser|police cruiser|police car|prowl car|squad car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+patrol ship|1
+(noun)|patrol boat|vessel (generic term)|watercraft (generic term)
+patrol wagon|1
+(noun)|police van|police wagon|paddy wagon|wagon|black Maria|van (generic term)
+patroller|1
+(noun)|watchman (generic term)|watcher (generic term)|security guard (generic term)
+patrolman|1
+(noun)|flatfoot|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+patrology|2
+(noun)|patristics|writing (generic term)
+(noun)|patristics|Christian theology (generic term)
+patron|3
+(noun)|frequenter|customer (generic term)|client (generic term)
+(noun)|owner (generic term)|proprietor (generic term)
+(noun)|sponsor|supporter|benefactor (generic term)|helper (generic term)
+patron saint|1
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)|saint (generic term)
+patronage|7
+(noun)|backing|backup|championship|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|clientele|business|people (generic term)
+(noun)|condescension|disdain|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|social control (generic term)
+(noun)|trade|business (generic term)
+(verb)|sustain (generic term)|keep (generic term)|maintain (generic term)
+(verb)|patronize|patronise|support|keep going|foster (generic term)|nurture (generic term)
+patroness|1
+(noun)|patronne|patron (generic term)|sponsor (generic term)|supporter (generic term)
+patronise|4
+(verb)|patronize|shop|shop at|buy at|frequent|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+(verb)|sponsor|patronize|support (generic term)
+(verb)|patronize|condescend|interact (generic term)
+(verb)|patronize|patronage|support|keep going|foster (generic term)|nurture (generic term)
+patronised|1
+(adj)|patronized|unpatronized (antonym)
+patronising|1
+(adj)|arch|condescending|patronizing|superior (similar term)
+patronisingly|1
+(adv)|condescendingly|patronizingly
+patronize|4
+(verb)|sponsor|patronise|support (generic term)
+(verb)|patronise|shop|shop at|buy at|frequent|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+(verb)|patronise|condescend|interact (generic term)
+(verb)|patronise|patronage|support|keep going|foster (generic term)|nurture (generic term)
+patronized|1
+(adj)|patronised|unpatronized (antonym)
+patronizing|1
+(adj)|arch|condescending|patronising|superior (similar term)
+patronizingly|1
+(adv)|condescendingly|patronisingly
+patronless|1
+(adj)|unpatronized|unpatronised|briefless (similar term)|patronized (antonym)
+patronne|1
+(noun)|patroness|patron (generic term)|sponsor (generic term)|supporter (generic term)
+patronym|1
+(noun)|patronymic|name (generic term)
+patronymic|2
+(adj)|name (related term)
+(noun)|patronym|name (generic term)
+patsy|1
+(noun)|chump|fool|gull|mark|fall guy|sucker|soft touch|mug|victim (generic term)|dupe (generic term)
+patten|1
+(noun)|clog|geta|sabot|footwear (generic term)|footgear (generic term)
+patter|4
+(noun)|spiel|line of gab|line (generic term)
+(noun)|sound (generic term)
+(verb)|sprinkle|spit|spatter|pitter-patter|rain (generic term)|rain down (generic term)
+(verb)|pitter-patter|sound (generic term)|go (generic term)
+pattern|10
+(noun)|form|shape|structure (generic term)
+(noun)|practice|activity (generic term)
+(noun)|design|figure|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|convention|normal|rule|formula|practice (generic term)
+(noun)|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+(noun)|blueprint|design|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|traffic pattern|approach pattern|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|radiation pattern|radiation diagram|graph (generic term)|graphical record (generic term)
+(verb)|model|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+pattern-bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+patterned|1
+(adj)|banded (similar term)|black-and-tan (similar term)|black-barred (similar term)|black-marked (similar term)|blotched (similar term)|blotchy (similar term)|splotched (similar term)|brindled (similar term)|brindle (similar term)|brinded (similar term)|tabby (similar term)|brown-speckled (similar term)|brownish-speckled (similar term)|brown-striped (similar term)|brownish-striped (similar term)|burled (similar term)|checked (similar term)|checkered (similar term)|chequered (similar term)|cross-banded (similar term)|dappled (similar term)|mottled (similar term)|dark-spotted (similar term)|dotted (similar term)|flecked (similar term)|specked (similar term)|speckled (similar term)|stippled (similar term)|figured (similar term)|floral (similar term)|flowered (similar term)|freckled (similar term)|lentiginous (similar term)|lentiginose (similar term)|laced (similar term)|marbled (similar term)|marbleized (similar term)|marbleised (similar term)|maroon-spotted (similar term)|moire (similar term)|watered (similar term)|patched (similar term)|spotty (similar term)|spotted (similar term)|black-and-white (similar term)|pointilist (similar term)|pointillistic (similar term)|pinstriped (similar term)|purple-veined (similar term)|purple-spotted (similar term)|red-striped (similar term)|reddish-striped (similar term)|red-streaked (similar term)|ringed (similar term)|slashed (similar term)|sprigged (similar term)|streaked (similar term)|streaky (similar term)|striped (similar term)|stripy (similar term)|tessellated (similar term)|tiger-striped (similar term)|veined (similar term)|venose (similar term)|veinlike (similar term)|violet-streaked (similar term)|white-blotched (similar term)|white-ribbed (similar term)|white-streaked (similar term)|yellow-banded (similar term)|yellow-marked (similar term)|yellow-spotted (similar term)|yellow-striped (similar term)|plain (antonym)
+patterned advance|1
+(noun)|progression|series (generic term)
+patternmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+patty|3
+(noun)|cake|dish (generic term)
+(noun)|pie (generic term)
+(noun)|candy (generic term)|confect (generic term)
+patty-pan|1
+(noun)|pan (generic term)|cooking pan (generic term)
+patty shell|1
+(noun)|bouchee|pastry (generic term)
+pattypan squash|2
+(noun)|cymling|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+(noun)|summer squash (generic term)
+patwin|2
+(noun)|Patwin|Penutian (generic term)
+(noun)|Patwin|Copehan (generic term)
+patzer|1
+(noun)|chess player (generic term)
+paucity|1
+(noun)|dearth|scarcity (generic term)|scarceness (generic term)
+paul|2
+(noun)|Paul|Alice Paul|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+paul adrien maurice dirac|1
+(noun)|Dirac|Paul Adrien Maurice Dirac|nuclear physicist (generic term)
+paul bunyan|1
+(noun)|Bunyan|Paul Bunyan|fictional character (generic term)|fictitious character (generic term)|character (generic term)|lumberman (generic term)|lumberjack (generic term)|logger (generic term)|feller (generic term)|faller (generic term)
+paul bustill robeson|1
+(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+paul cezanne|1
+(noun)|Cezanne|Paul Cezanne|painter (generic term)
+paul dukas|1
+(noun)|Dukas|Paul Dukas|composer (generic term)
+paul ehrlich|1
+(noun)|Ehrlich|Paul Ehrlich|bacteriologist (generic term)
+paul gauguin|1
+(noun)|Gauguin|Paul Gauguin|painter (generic term)
+paul hermann muller|1
+(noun)|Muller|Paul Hermann Muller|chemist (generic term)
+paul heyse|1
+(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer (generic term)|author (generic term)
+paul hindemith|1
+(noun)|Hindemith|Paul Hindemith|composer (generic term)|conductor (generic term)|music director (generic term)|director (generic term)
+paul iii|1
+(noun)|Paul III|Alessandro Farnese|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+paul johann ludwig von heyse|1
+(noun)|Heyse|Paul Heyse|Paul Johann Ludwig von Heyse|writer (generic term)|author (generic term)
+paul johannes tillich|1
+(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+paul john flory|1
+(noun)|Flory|Paul John Flory|chemist (generic term)
+paul joseph goebbels|1
+(noun)|Goebbels|Joseph Goebbels|Paul Joseph Goebbels|Nazi (generic term)|German Nazi (generic term)|propagandist (generic term)
+paul klee|1
+(noun)|Klee|Paul Klee|painter (generic term)
+paul leonard newman|1
+(noun)|Newman|Paul Newman|Paul Leonard Newman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+paul ludwig von beneckendorff und von hindenburg|1
+(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general (generic term)|full general (generic term)|field marshal (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+paul mccartney|1
+(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+paul newman|1
+(noun)|Newman|Paul Newman|Paul Leonard Newman|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+paul revere|1
+(noun)|Revere|Paul Revere|silversmith (generic term)|silverworker (generic term)|silver-worker (generic term)|American Revolutionary leader (generic term)
+paul robeson|1
+(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+paul simon|1
+(noun)|Simon|Paul Simon|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+paul the apostle|1
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+paul tillich|1
+(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+paul verlaine|1
+(noun)|Verlaine|Paul Verlaine|poet (generic term)
+paul vernier|1
+(noun)|Vernier|Paul Vernier|mathematician (generic term)
+paul vi|1
+(noun)|Paul VI|Giovanni Battista Montini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+paul von hindenburg|1
+(noun)|Hindenburg|Paul von Hindenburg|Paul Ludwig von Beneckendorff und von Hindenburg|general (generic term)|full general (generic term)|field marshal (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+pauli|1
+(noun)|Pauli|Wolfgang Pauli|nuclear physicist (generic term)
+pauli exclusion principle|1
+(noun)|Pauli exclusion principle|exclusion principle|law (generic term)|law of nature (generic term)
+pauline|1
+(adj)|Pauline|Apostle|Apostelic Father|missionary|missioner|saint (related term)
+pauling|1
+(noun)|Pauling|Linus Pauling|Linus Carl Pauling|chemist (generic term)
+paulo afonso|1
+(noun)|Paulo Afonso|Paulo Afonso Falls|waterfall (generic term)|falls (generic term)
+paulo afonso falls|1
+(noun)|Paulo Afonso|Paulo Afonso Falls|waterfall (generic term)|falls (generic term)
+paumotu archipelago|1
+(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago (generic term)
+paunch|1
+(noun)|belly|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+paunchiness|1
+(noun)|abdominousness|fatness (generic term)|fat (generic term)|blubber (generic term)|avoirdupois (generic term)
+paunchy|1
+(adj)|abdominous|potbellied|fat (similar term)
+pauper|1
+(noun)|poor man|poor person (generic term)|have-not (generic term)
+pauperisation|1
+(noun)|pauperization|impoverishment|privation (generic term)|deprivation (generic term)
+pauperise|1
+(verb)|beggar|pauperize|impoverish (generic term)
+pauperism|1
+(noun)|indigence|need|penury|pauperization|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+pauperization|2
+(noun)|indigence|need|penury|pauperism|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|pauperisation|impoverishment|privation (generic term)|deprivation (generic term)
+pauperize|1
+(verb)|beggar|pauperise|impoverish (generic term)
+pauropoda|1
+(noun)|Pauropoda|class Pauropoda|class (generic term)
+pause|4
+(noun)|intermission|break|interruption|suspension|time interval (generic term)|interval (generic term)
+(noun)|inactivity (generic term)
+(verb)|hesitate|delay (generic term)
+(verb)|intermit|break|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+pavage|2
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+(noun)|paving|application (generic term)|coating (generic term)|covering (generic term)
+pavan|2
+(noun)|pavane|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|pavane|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pavane|2
+(noun)|pavan|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|pavan|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+pavarotti|1
+(noun)|Pavarotti|Luciano Pavarotti|tenor (generic term)
+pave|2
+(noun)|mount (generic term)|setting (generic term)
+(verb)|coat (generic term)|surface (generic term)
+paved|1
+(adj)|made-up (similar term)|sealed (similar term)|unpaved (antonym)
+paved surface|1
+(noun)|horizontal surface (generic term)|level (generic term)
+pavement|3
+(noun)|paving|paved surface (generic term)
+(noun)|paving|paving material (generic term)
+(noun)|sidewalk|walk (generic term)|walkway (generic term)|paseo (generic term)
+pavement artist|1
+(noun)|draftsman (generic term)|drawer (generic term)
+pavilion|1
+(noun)|marquee|tent (generic term)|collapsible shelter (generic term)
+paving|3
+(noun)|pavement|paving material (generic term)
+(noun)|pavement|paved surface (generic term)
+(noun)|pavage|application (generic term)|coating (generic term)|covering (generic term)
+paving machine|1
+(noun)|pavior|paviour|machine (generic term)
+paving material|1
+(noun)|artifact (generic term)|artefact (generic term)
+paving stone|1
+(noun)|stone (generic term)
+pavior|1
+(noun)|paviour|paving machine|machine (generic term)
+paviour|1
+(noun)|pavior|paving machine|machine (generic term)
+pavis|1
+(noun)|pavise|shield (generic term)|buckler (generic term)
+pavise|1
+(noun)|pavis|shield (generic term)|buckler (generic term)
+pavlov|1
+(noun)|Pavlov|Ivan Pavlov|Ivan Petrovich Pavlov|physiologist (generic term)
+pavlova|1
+(noun)|Pavlova|Anna Pavlova|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+pavlovian|1
+(adj)|Pavlovian|physiologist (related term)
+pavo|2
+(noun)|Pavo|constellation (generic term)
+(noun)|Pavo|genus Pavo|bird genus (generic term)
+pavo cristatus|1
+(noun)|blue peafowl|Pavo cristatus|peafowl (generic term)|bird of Juno (generic term)
+pavo muticus|1
+(noun)|green peafowl|Pavo muticus|peafowl (generic term)|bird of Juno (generic term)
+pavonia|1
+(noun)|shrub (generic term)|bush (generic term)
+pavor nocturnus|1
+(noun)|sleep terror disorder|sleep disorder (generic term)
+paw|4
+(noun)|animal foot (generic term)|foot (generic term)
+(noun)|hand|manus|mitt|extremity (generic term)
+(verb)|scrape (generic term)|grate (generic term)
+(verb)|caress (generic term)
+pawer|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+pawky|1
+(adj)|artful (similar term)
+pawl|1
+(noun)|detent|click|dog|catch (generic term)|stop (generic term)
+pawn|5
+(noun)|pledge (generic term)
+(noun)|instrument|cat's-paw|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|chessman (generic term)|chess piece (generic term)
+(noun)|borrowing (generic term)
+(verb)|soak|hock|consign (generic term)|charge (generic term)
+pawn ticket|1
+(noun)|receipt (generic term)
+pawnbroker|1
+(noun)|lender (generic term)|loaner (generic term)|pledgee (generic term)
+pawnbroker's shop|1
+(noun)|pawnshop|loan office|shop (generic term)|store (generic term)
+pawnee|2
+(noun)|Pawnee|Caddo (generic term)
+(noun)|Pawnee|Caddo (generic term)|Caddoan (generic term)|Caddoan language (generic term)
+pawnshop|1
+(noun)|pawnbroker's shop|loan office|shop (generic term)|store (generic term)
+pawpaw|3
+(noun)|papaya|papaia|papaya tree|melon tree|Carica papaya|fruit tree (generic term)
+(noun)|papaw|papaw tree|Asimina triloba|custard apple (generic term)|custard apple tree (generic term)
+(noun)|papaw|edible fruit (generic term)
+pax|1
+(noun)|kiss of peace|greeting (generic term)|salutation (generic term)
+pax romana|1
+(noun)|Pax Romana|peace (generic term)
+paxil|1
+(noun)|paroxetime|Paxil|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+paxto|1
+(noun)|Pashto|Pashtu|Paxto|Afghani|Afghan|Iranian (generic term)|Iranian language (generic term)
+paxton|1
+(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect (generic term)|designer (generic term)
+pay|12
+(noun)|wage|earnings|remuneration|salary|regular payment (generic term)
+(verb)|give (generic term)|fund (related term)|pay off (related term)|pay off (related term)|pay off (related term)|pay out (related term)
+(verb)|give|communicate (generic term)|intercommunicate (generic term)
+(verb)|pay off|make up|compensate|settle (generic term)|pay back (related term)|pay off (related term)
+(verb)|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+(verb)|pay up|ante up|pay (generic term)|default (antonym)
+(verb)|yield|bear|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|make (generic term)
+(verb)|be (generic term)
+(verb)|give|devote|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|settle (generic term)
+(verb)|requite (generic term)|repay (generic term)
+pay-phone|1
+(noun)|pay-station|telephone (generic term)|phone (generic term)|telephone set (generic term)
+pay-station|1
+(noun)|pay-phone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+pay as you earn|1
+(noun)|PAYE|withholding tax (generic term)|withholding (generic term)
+pay back|2
+(verb)|reward|repay|act (generic term)|move (generic term)
+(verb)|pay off|get|fix|get even (generic term)|get back (generic term)
+pay cash|1
+(verb)|pay (generic term)|charge (antonym)
+pay claim|1
+(noun)|wage claim|demand (generic term)
+pay cut|1
+(noun)|salary cut|cut (generic term)
+pay dirt|2
+(noun)|ore (generic term)
+(noun)|success (generic term)
+pay envelope|1
+(noun)|pay packet|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+pay for|1
+(verb)|invite|interact (generic term)|invite out (related term)
+pay heed|1
+(verb)|attend|hang|advert|give ear|listen (generic term)
+pay off|6
+(verb)|yield (generic term)|pay (generic term)|bear (generic term)
+(verb)|liquidate|pay up (generic term)|ante up (generic term)|pay (generic term)
+(verb)|redeem|pay (generic term)
+(verb)|pay|make up|compensate|settle (generic term)|pay back (related term)|pay off (related term)
+(verb)|buy off|bribe (generic term)|corrupt (generic term)|buy (generic term)|grease one's palms (generic term)
+(verb)|pay back|get|fix|get even (generic term)|get back (generic term)
+pay out|1
+(verb)|disburse|pay (generic term)
+pay packet|1
+(noun)|pay envelope|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+pay rate|1
+(noun)|rate of pay|rate (generic term)|charge per unit (generic term)
+pay up|1
+(verb)|ante up|pay|pay (generic term)|default (antonym)
+payable|2
+(adj)|collectible|collectable|due (similar term)|owed (similar term)
+(noun)|account payable|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+payables|1
+(noun)|liabilities (generic term)
+payback|2
+(noun)|return (generic term)|issue (generic term)|take (generic term)|takings (generic term)|proceeds (generic term)|yield (generic term)|payoff (generic term)
+(noun)|vengeance|retribution|retaliation (generic term)|revenge (generic term)
+paycheck|1
+(noun)|payroll check|check (generic term)|bank check (generic term)|cheque (generic term)
+payday|1
+(noun)|day (generic term)
+paye|1
+(noun)|PAYE|pay as you earn|withholding tax (generic term)|withholding (generic term)
+payee|1
+(noun)|recipient (generic term)|receiver (generic term)
+payena|1
+(noun)|Payena|genus Payena|dicot genus (generic term)|magnoliopsid genus (generic term)
+payer|1
+(noun)|remunerator|money handler (generic term)|money dealer (generic term)
+paygrade|1
+(noun)|military rank|military rating|rating|rank (generic term)
+paying|2
+(adj)|gainful|paid|profitable (similar term)
+(adj)|compensable|remunerative|salaried|stipendiary|paid (similar term)
+paying attention|3
+(adj)|heedful|attentive|thoughtful|heedless (antonym)
+(noun)|attentiveness|heed|regard|attention (generic term)|attending (generic term)|inattentiveness (antonym)
+(adv)|attentively|with attention
+paying back|1
+(noun)|return|getting even|group action (generic term)
+payload|2
+(noun)|warhead|load|explosive (generic term)
+(noun)|cargo|lading|freight|load|loading|shipment|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+paymaster|1
+(noun)|payer (generic term)|remunerator (generic term)
+payment|2
+(noun)|cost (generic term)|nonpayment (antonym)
+(noun)|defrayal|defrayment|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)|nonpayment (antonym)
+payment rate|1
+(noun)|rate of payment|repayment rate|installment rate|rate (generic term)|charge per unit (generic term)
+payne's gray|1
+(noun)|Payne's grey|Payne's gray|pigment (generic term)
+payne's grey|1
+(noun)|Payne's grey|Payne's gray|pigment (generic term)
+paynim|1
+(noun)|heathen (generic term)|pagan (generic term)|gentile (generic term)|infidel (generic term)
+payoff|4
+(noun)|final payment|payment (generic term)
+(noun)|bribe|payment (generic term)
+(noun)|return|issue|take|takings|proceeds|yield|income (generic term)
+(noun)|wages|reward|consequence (generic term)|aftermath (generic term)
+payola|1
+(noun)|bribe (generic term)|payoff (generic term)
+payroll|3
+(noun)|paysheet|register (generic term)
+(noun)|paysheet|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|payroll department|department (generic term)|section (generic term)
+payroll check|1
+(noun)|paycheck|check (generic term)|bank check (generic term)|cheque (generic term)
+payroll department|1
+(noun)|payroll|department (generic term)|section (generic term)
+pays de la loire|1
+(noun)|Pays de la Loire|French region (generic term)
+paysheet|2
+(noun)|payroll|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(noun)|payroll|register (generic term)
+payslip|1
+(noun)|record (generic term)
+pb|1
+(noun)|lead|Pb|atomic number 82|metallic element (generic term)|metal (generic term)
+pbs|1
+(noun)|phosphate buffer solution|PBS|buffer solution (generic term)
+pc|1
+(noun)|personal computer|PC|microcomputer|digital computer (generic term)
+pc board|1
+(noun)|PC board|circuit board (generic term)|circuit card (generic term)|board (generic term)|card (generic term)|plug-in (generic term)|add-in (generic term)
+pcp|1
+(noun)|phencyclidine|phencyclidine hydrochloride|PCP|angel dust|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+pct|1
+(noun)|percentage|percent|per centum|proportion (generic term)
+pd|1
+(noun)|palladium|Pd|atomic number 46|metallic element (generic term)|metal (generic term)
+pda|1
+(noun)|personal digital assistant|PDA|personal organizer|personal organiser|organizer|organiser|electronic device (generic term)
+pdflp|1
+(noun)|Democratic Front for the Liberation of Palestine|DFLP|Popular Democratic Front for the Liberation of Palestine|PDFLP|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pdl|1
+(noun)|poundal|force unit (generic term)
+pe|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+pe-tsai|1
+(noun)|Chinese cabbage|celery cabbage|napa|Brassica rapa pekinensis|crucifer (generic term)|cruciferous plant (generic term)
+pea|2
+(noun)|legume (generic term)
+(noun)|pea plant|legume (generic term)|leguminous plant (generic term)
+pea-chick|1
+(noun)|peachick|peafowl (generic term)|bird of Juno (generic term)
+pea-green|1
+(adj)|chromatic (similar term)
+pea-souper|1
+(noun)|pea soup|fog (generic term)
+pea bean|1
+(noun)|navy bean|white bean|common bean (generic term)
+pea crab|1
+(noun)|crab (generic term)
+pea family|1
+(noun)|Leguminosae|family Leguminosae|Fabaceae|family Fabaceae|legume family|rosid dicot family (generic term)
+pea flour|1
+(noun)|meal (generic term)
+pea green|1
+(noun)|yellow green|yellowish green|chartreuse|Paris green|green (generic term)|greenness (generic term)|viridity (generic term)
+pea jacket|1
+(noun)|peacoat|jacket (generic term)
+pea plant|1
+(noun)|pea|legume (generic term)|leguminous plant (generic term)
+pea pod|1
+(noun)|peasecod|pod (generic term)|cod (generic term)|seedcase (generic term)
+pea shooter|1
+(noun)|tube (generic term)|tubing (generic term)|plaything (generic term)|toy (generic term)
+pea soup|2
+(noun)|soup (generic term)
+(noun)|pea-souper|fog (generic term)
+pea tree|1
+(noun)|caragana|shrub (generic term)|bush (generic term)
+pea weevil|1
+(noun)|Bruchus pisorum|seed beetle (generic term)|seed weevil (generic term)
+peabody|1
+(noun)|Peabody|Elizabeth Peabody|Elizabeth Palmer Peabody|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+peace|5
+(noun)|order (generic term)|war (antonym)
+(noun)|harmony (generic term)|concord (generic term)|concordance (generic term)
+(noun)|peacefulness|peace of mind|repose|serenity|heartsease|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+(noun)|public security|security (generic term)
+(noun)|peace treaty|pacification|treaty (generic term)|pact (generic term)|accord (generic term)
+peace-loving|1
+(adj)|peaceable|peaceful (similar term)
+peace advocacy|1
+(noun)|dovishness (generic term)
+peace corps|1
+(noun)|Peace Corps|organization (generic term)|organisation (generic term)
+peace garden state|1
+(noun)|North Dakota|Peace Garden State|ND|American state (generic term)
+peace initiative|1
+(noun)|first step (generic term)|initiative (generic term)|opening move (generic term)|opening (generic term)
+peace lily|1
+(noun)|spathiphyllum|spathe flower|flower (generic term)
+peace march|1
+(noun)|protest march (generic term)
+peace of mind|1
+(noun)|peace|peacefulness|repose|serenity|heartsease|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+peace of westphalia|1
+(noun)|Peace of Westphalia|peace (generic term)|peace treaty (generic term)|pacification (generic term)
+peace offering|1
+(noun)|olive branch|offer (generic term)|offering (generic term)
+peace officer|1
+(noun)|lawman|law officer|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+peace pipe|1
+(noun)|calumet|pipe of peace|pipe (generic term)|tobacco pipe (generic term)
+peace process|1
+(noun)|social process (generic term)
+peace treaty|1
+(noun)|peace|pacification|treaty (generic term)|pact (generic term)|accord (generic term)
+peaceable|2
+(adj)|peace-loving|peaceful (similar term)
+(adj)|pacific|peaceful (similar term)
+peaceableness|1
+(noun)|peacefulness|amity (generic term)
+peaceably|1
+(adv)|pacifically
+peaceful|3
+(adj)|halcyon (similar term)|irenic (similar term)|pacific (similar term)|nonbelligerent (similar term)|pacific (similar term)|peaceable (similar term)|pacifist (similar term)|pacifistic (similar term)|dovish (similar term)|peaceable (similar term)|peace-loving (similar term)|undisturbed (similar term)|amicable (related term)|nonviolent (related term)|quiet (related term)|unaggressive (related term)|nonaggressive (related term)|unpeaceful (antonym)
+(adj)|passive|nonviolent (similar term)
+(adj)|law-abiding|orderly (similar term)
+peacefulness|2
+(noun)|peaceableness|amity (generic term)
+(noun)|peace|peace of mind|repose|serenity|heartsease|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+peacekeeper|3
+(noun)|soldier (generic term)
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+peacekeeping|2
+(adj)|operation|military operation (related term)
+(noun)|peacekeeping mission|peacekeeping operation|operation (generic term)|military operation (generic term)
+peacekeeping mission|1
+(noun)|peacekeeping|peacekeeping operation|operation (generic term)|military operation (generic term)
+peacekeeping operation|1
+(noun)|peacekeeping|peacekeeping mission|operation (generic term)|military operation (generic term)
+peacemaker|2
+(noun)|conciliator|make-peace|pacifier|reconciler|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+(noun)|Browning machine gun|Peacemaker|machine gun (generic term)
+peacenik|1
+(noun)|dove|pacifist (generic term)|pacificist (generic term)|disarmer (generic term)|hawk (antonym)
+peacetime|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+peach|5
+(noun)|peach tree|Prunus persica|fruit tree (generic term)
+(noun)|smasher|stunner|knockout|beauty|ravisher|sweetheart|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+(noun)|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+(noun)|yellowish pink|apricot|salmon pink|pink (generic term)
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+peach-colored|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+peach-leaved willow|1
+(noun)|peachleaf willow|almond-leaves willow|Salix amygdaloides|willow (generic term)|willow tree (generic term)
+peach-wood|1
+(noun)|brazilwood|peachwood|pernambuco wood|Caesalpinia echinata|tree (generic term)
+peach bell|1
+(noun)|peach bells|willow bell|Campanula persicifolia|campanula (generic term)|bellflower (generic term)
+peach bells|1
+(noun)|peach bell|willow bell|Campanula persicifolia|campanula (generic term)|bellflower (generic term)
+peach blight|1
+(noun)|blight (generic term)
+peach ice cream|1
+(noun)|ice cream (generic term)|icecream (generic term)
+peach melba|1
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+peach orchard|1
+(noun)|grove (generic term)|woodlet (generic term)|orchard (generic term)|plantation (generic term)
+peach pit|1
+(noun)|stone (generic term)|pit (generic term)|endocarp (generic term)
+peach sauce|1
+(noun)|sauce (generic term)
+peach state|1
+(noun)|Georgia|Empire State of the South|Peach State|GA|American state (generic term)
+peach tree|1
+(noun)|peach|Prunus persica|fruit tree (generic term)
+peachick|1
+(noun)|pea-chick|peafowl (generic term)|bird of Juno (generic term)
+peachleaf willow|1
+(noun)|peach-leaved willow|almond-leaves willow|Salix amygdaloides|willow (generic term)|willow tree (generic term)
+peachwood|1
+(noun)|brazilwood|peach-wood|pernambuco wood|Caesalpinia echinata|tree (generic term)
+peachy|2
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|slap-up|swell|smashing|good (similar term)
+(adj)|peachy-colored|peachy-coloured|chromatic (similar term)
+peachy-colored|1
+(adj)|peachy|peachy-coloured|chromatic (similar term)
+peachy-coloured|1
+(adj)|peachy|peachy-colored|chromatic (similar term)
+peacoat|1
+(noun)|pea jacket|jacket (generic term)
+peacock|2
+(noun)|peacock butterfly|Inachis io|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+(noun)|peafowl (generic term)|bird of Juno (generic term)
+peacock-blue|1
+(adj)|chromatic (similar term)
+peacock-throne|1
+(noun)|throne (generic term)
+peacock blue|1
+(noun)|greenish blue|aqua|aquamarine|turquoise|cobalt blue|blue (generic term)|blueness (generic term)
+peacock butterfly|1
+(noun)|peacock|Inachis io|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+peacock flower|1
+(noun)|royal poinciana|flamboyant|flame tree|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+peacock flower fence|1
+(noun)|coralwood|coral-wood|red sandalwood|Barbados pride|Adenanthera pavonina|tree (generic term)
+peacock ore|1
+(noun)|bornite|mineral (generic term)
+peafowl|1
+(noun)|bird of Juno|pheasant (generic term)
+peag|1
+(noun)|wampum|wampumpeag|beads (generic term)|string of beads (generic term)
+peahen|1
+(noun)|peafowl (generic term)|bird of Juno (generic term)
+peak|9
+(adj)|off-peak (antonym)
+(noun)|extremum|limit (generic term)|limitation (generic term)
+(noun)|flower|prime|heyday|bloom|blossom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|acme|height|elevation|pinnacle|summit|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|crown|crest|top|tip|summit|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|point|tip|convex shape (generic term)|convexity (generic term)
+(noun)|vertex|apex|acme|extreme point (generic term)|extreme (generic term)|extremum (generic term)
+(noun)|bill|eyeshade|visor|vizor|brim (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+peak season|1
+(noun)|high season|season (generic term)|off-season (antonym)
+peaked|2
+(adj)|ailing|indisposed|poorly|sickly|unwell|under the weather|seedy|ill (similar term)|sick (similar term)
+(adj)|pointed (similar term)
+peaked cap|1
+(noun)|kepi|service cap|yachting cap|cap (generic term)
+peaky|1
+(adj)|spiky|high (similar term)|high-pitched (similar term)
+peal|3
+(noun)|pealing|roll|rolling|sound (generic term)
+(verb)|ring (generic term)|peal (generic term)
+(verb)|ring|sound (generic term)|go (generic term)|ring out (related term)
+pealing|1
+(noun)|peal|roll|rolling|sound (generic term)
+pean|2
+(noun)|paean|hymn (generic term)|anthem (generic term)
+(noun)|encomium|eulogy|panegyric|paean|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+peanut|5
+(adj)|insignificant|minor (similar term)
+(noun)|pod (generic term)|seedpod (generic term)
+(noun)|peanut vine|Arachis hypogaea|legume (generic term)|leguminous plant (generic term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(noun)|earthnut|goober|goober pea|groundnut|monkey nut|edible nut (generic term)
+peanut bar|1
+(noun)|candy (generic term)|confect (generic term)
+peanut brittle|1
+(noun)|brittle (generic term)|toffee (generic term)|toffy (generic term)
+peanut butter|1
+(noun)|spread (generic term)|paste (generic term)
+peanut gallery|2
+(noun)|people (generic term)
+(noun)|second balcony|family circle|upper balcony|area (generic term)
+peanut oil|1
+(noun)|groundnut oil|vegetable oil (generic term)|oil (generic term)
+peanut vine|1
+(noun)|peanut|Arachis hypogaea|legume (generic term)|leguminous plant (generic term)
+peanut worm|1
+(noun)|sipunculid|invertebrate (generic term)
+peanuts|1
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+pear|2
+(noun)|edible fruit (generic term)|pome (generic term)|false fruit (generic term)
+(noun)|pear tree|Pyrus communis|fruit tree (generic term)
+pear-shaped|2
+(adj)|round (similar term)|circular (similar term)
+(adj)|orotund|rotund|round|full (similar term)
+pear blight|1
+(noun)|fire blight|leaf blight (generic term)
+pear haw|1
+(noun)|blackthorn|pear hawthorn|Crataegus calpodendron|Crataegus tomentosa|hawthorn (generic term)|haw (generic term)
+pear hawthorn|1
+(noun)|blackthorn|pear haw|Crataegus calpodendron|Crataegus tomentosa|hawthorn (generic term)|haw (generic term)
+pear tree|1
+(noun)|pear|Pyrus communis|fruit tree (generic term)
+pearl|4
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|bone|ivory|off-white|white (generic term)|whiteness (generic term)
+(noun)|drop|bead|sphere (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+pearl-fish|1
+(noun)|pearlfish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pearl-weed|1
+(noun)|pearlwort|pearlweed|groundcover (generic term)|ground cover (generic term)
+pearl ash|1
+(noun)|potassium carbonate (generic term)
+pearl bailey|1
+(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+pearl barley|1
+(noun)|barley (generic term)|barleycorn (generic term)
+pearl buck|1
+(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer (generic term)|author (generic term)|missionary (generic term)|missioner (generic term)
+pearl diver|1
+(noun)|pearler|diver (generic term)|frogman (generic term)|underwater diver (generic term)
+pearl fishery|1
+(noun)|fishery (generic term)|piscary (generic term)
+pearl gray|1
+(adj)|pearl grey|achromatic (similar term)
+pearl grey|1
+(adj)|pearl gray|achromatic (similar term)
+pearl harbor|1
+(noun)|Pearl Harbor|seaport (generic term)|haven (generic term)|harbor (generic term)|harbour (generic term)
+pearl hominy|1
+(noun)|hominy (generic term)
+pearl mae bailey|1
+(noun)|Bailey|Pearl Bailey|Pearl Mae Bailey|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+pearl millet|1
+(noun)|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal (generic term)|cereal grass (generic term)
+pearl oyster|1
+(noun)|Pinctada margaritifera|oyster (generic term)
+pearl river|2
+(noun)|Zhu Jiang|Canton River|Chu Kiang|Pearl River|river (generic term)
+(noun)|Pearl River|river (generic term)
+pearl sago|1
+(noun)|sago (generic term)
+pearl sydenstricker buck|1
+(noun)|Buck|Pearl Buck|Pearl Sydenstricker Buck|writer (generic term)|author (generic term)|missionary (generic term)|missioner (generic term)
+pearler|1
+(noun)|pearl diver|diver (generic term)|frogman (generic term)|underwater diver (generic term)
+pearlescent|1
+(adj)|iridescent|nacreous|opalescent|opaline|bright (similar term)
+pearlfish|1
+(noun)|pearl-fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pearlite|1
+(noun)|lamellar mixture (generic term)
+pearlweed|1
+(noun)|pearlwort|pearl-weed|groundcover (generic term)|ground cover (generic term)
+pearlwort|1
+(noun)|pearlweed|pearl-weed|groundcover (generic term)|ground cover (generic term)
+pearly|2
+(adj)|pearly-white|achromatic (similar term)
+(noun)|chopper|tooth (generic term)
+pearly-shelled mussel|1
+(noun)|freshwater mussel (generic term)|freshwater clam (generic term)
+pearly-white|1
+(adj)|pearly|achromatic (similar term)
+pearly everlasting|1
+(noun)|cottonweed|Anaphalis margaritacea|everlasting (generic term)|everlasting flower (generic term)
+pearly nautilus|1
+(noun)|chambered nautilus|nautilus|cephalopod (generic term)|cephalopod mollusk (generic term)
+pearly razorfish|1
+(noun)|Hemipteronatus novacula|razor fish (generic term)|razor-fish (generic term)
+pearmain|1
+(noun)|Pearmain|eating apple (generic term)|dessert apple (generic term)
+pearson product-moment correlation coefficient|1
+(noun)|product-moment correlation coefficient|Pearson product-moment correlation coefficient|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+peary|1
+(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer (generic term)|adventurer (generic term)
+peasant|3
+(noun)|provincial|bucolic|rustic (generic term)
+(noun)|agricultural laborer (generic term)|agricultural labourer (generic term)
+(noun)|barbarian|boor|churl|Goth|tyke|tike|unpleasant person (generic term)|disagreeable person (generic term)
+peasant's revolt|1
+(noun)|Peasant's Revolt|Great Revolt|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+peasanthood|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+peasantry|1
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+pease pudding|1
+(noun)|pudding (generic term)
+peasecod|1
+(noun)|pea pod|pod (generic term)|cod (generic term)|seedcase (generic term)
+peat|1
+(noun)|vegetable matter (generic term)|humate (generic term)
+peat bog|1
+(noun)|bog|wetland (generic term)
+peat moss|1
+(noun)|sphagnum|sphagnum moss|bog moss|moss (generic term)
+peaty|1
+(adj)|vegetable matter|humate (related term)
+peavey|1
+(noun)|peavy|cant dog|lever (generic term)
+peavy|1
+(noun)|peavey|cant dog|lever (generic term)
+peba|1
+(noun)|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo (generic term)
+pebble|1
+(noun)|rock (generic term)|stone (generic term)
+pebble-grained|1
+(adj)|uneven (similar term)
+pebble plant|1
+(noun)|fig marigold|flower (generic term)
+pebbly|1
+(adj)|gravelly|shingly|beachy (similar term)|beachlike (similar term)
+pecan|3
+(noun)|wood (generic term)
+(noun)|pecan tree|Carya illinoensis|Carya illinoinsis|nut tree (generic term)
+(noun)|edible nut (generic term)
+pecan pie|1
+(noun)|pie (generic term)
+pecan tree|1
+(noun)|pecan|Carya illinoensis|Carya illinoinsis|nut tree (generic term)
+peccable|1
+(adj)|peccant|wicked (similar term)
+peccadillo|1
+(noun)|indiscretion|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+peccant|1
+(adj)|peccable|wicked (similar term)
+peccari angulatus|1
+(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary (generic term)|musk hog (generic term)
+peccary|1
+(noun)|musk hog|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+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 (generic term)|large indefinite amount (generic term)
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|United States dry unit (generic term)
+(verb)|pick|beak|strike (generic term)
+(verb)|pick up|eat (generic term)
+(verb)|smack|kiss (generic term)|buss (generic term)|osculate (generic term)
+(verb)|pick at|peck at|eat (generic term)
+(verb)|nag|hen-peck|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+peck at|1
+(verb)|pick at|peck|eat (generic term)
+pecker|3
+(noun)|cock|prick|dick|shaft|peter|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+(noun)|woodpecker|peckerwood|piciform bird (generic term)
+(noun)|beak|bill|neb|nib|mouth (generic term)
+peckerwood|1
+(noun)|woodpecker|pecker|piciform bird (generic term)
+pecking order|1
+(noun)|hierarchy|power structure|organization (generic term)|organisation (generic term)
+peckish|2
+(adj)|hungry (similar term)
+(adj)|cranky|fractious|irritable|nettlesome|peevish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+pecopteris|1
+(noun)|fern (generic term)
+pecos|1
+(noun)|Pecos|Pecos River|river (generic term)
+pecos river|1
+(noun)|Pecos|Pecos River|river (generic term)
+pecs|1
+(noun)|pectoral|pectoral muscle|pectoralis|musculus pectoralis|skeletal muscle (generic term)|striated muscle (generic term)
+pecten irradians|1
+(noun)|bay scallop|Pecten irradians|scallop (generic term)|scollop (generic term)|escallop (generic term)
+pecten magellanicus|1
+(noun)|sea scallop|giant scallop|Pecten magellanicus|scallop (generic term)|scollop (generic term)|escallop (generic term)
+pectic|1
+(adj)|cellulose (related term)
+pectic acid|1
+(noun)|acid (generic term)
+pectin|1
+(noun)|cellulose (generic term)
+pectinate|1
+(adj)|rough (similar term)
+pectineal|1
+(adj)|bone|os (related term)
+pectinibranchia|1
+(noun)|Pectinibranchia|order Pectinibranchia|animal order (generic term)
+pectinidae|1
+(noun)|Pectinidae|family Pectinidae|mollusk family (generic term)
+pectoral|3
+(adj)|thoracic|body part (related term)
+(noun)|pectoral muscle|pectoralis|musculus pectoralis|pecs|skeletal muscle (generic term)|striated muscle (generic term)
+(noun)|pectoral medallion|adornment (generic term)
+pectoral arch|1
+(noun)|shoulder girdle|arch (generic term)
+pectoral fin|1
+(noun)|fin (generic term)
+pectoral girdle|1
+(noun)|girdle (generic term)
+pectoral medallion|1
+(noun)|pectoral|adornment (generic term)
+pectoral muscle|1
+(noun)|pectoral|pectoralis|musculus pectoralis|pecs|skeletal muscle (generic term)|striated muscle (generic term)
+pectoral sandpiper|1
+(noun)|jacksnipe|Calidris melanotos|sandpiper (generic term)
+pectoral vein|1
+(noun)|vena pectoralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pectoralis|1
+(noun)|pectoral|pectoral muscle|musculus pectoralis|pecs|skeletal muscle (generic term)|striated muscle (generic term)
+pectoralis major|1
+(noun)|musculus pectoralis major|greater pectoral muscle|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+pectoralis minor|1
+(noun)|musculus pectoralis minor|smaller pectoral muscle|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+pectus|1
+(noun)|thorax|chest|body part (generic term)
+peculate|1
+(verb)|embezzle|defalcate|misappropriate|malversate|steal (generic term)
+peculation|1
+(noun)|embezzlement|defalcation|misapplication|misappropriation|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+peculator|1
+(noun)|embezzler|defalcator|thief (generic term)|stealer (generic term)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+peculiar|4
+(adj)|curious|funny|odd|queer|rum|rummy|singular|strange (similar term)|unusual (similar term)
+(adj)|particular|special|specific (similar term)
+(adj)|unusual (similar term)
+(adj)|characteristic (similar term)
+peculiar velocity|1
+(noun)|speed (generic term)|velocity (generic term)
+peculiarity|3
+(noun)|distinctive feature|distinguishing characteristic|feature (generic term)|characteristic (generic term)
+(noun)|specialness|specialty|speciality|distinctiveness|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|curio|curiosity|oddity|oddment|rarity|object (generic term)|physical object (generic term)
+peculiarly|3
+(adv)|particularly
+(adv)|curiously|oddly
+(adv)|particularly|especially|specially
+pecuniary|1
+(adj)|monetary|medium of exchange|monetary system (related term)
+pecuniary resource|1
+(noun)|funds|finances|monetary resource|cash in hand|assets (generic term)
+pedagog|1
+(noun)|educator|pedagogue|professional (generic term)|professional person (generic term)
+pedagogic|1
+(adj)|pedagogical|education (related term)
+pedagogical|1
+(adj)|pedagogic|education (related term)
+pedagogically|1
+(adv)|didactically
+pedagogics|1
+(noun)|teaching method|pedagogy|method (generic term)
+pedagogue|1
+(noun)|educator|pedagog|professional (generic term)|professional person (generic term)
+pedagogy|3
+(noun)|teaching method|pedagogics|method (generic term)
+(noun)|teaching|instruction|education (generic term)
+(noun)|education|instruction|teaching|didactics|educational activity|activity (generic term)
+pedal|5
+(adj)|extremity (related term)
+(noun)|pedal point|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|treadle|foot pedal|foot lever|lever (generic term)
+(verb)|bicycle|cycle|bike|wheel|ride (generic term)
+(verb)|operate (generic term)|control (generic term)
+pedal extremity|1
+(noun)|vertebrate foot|extremity (generic term)
+pedal point|1
+(noun)|pedal|note (generic term)|musical note (generic term)|tone (generic term)
+pedal pusher|1
+(noun)|toreador pants|trouser (generic term)|pant (generic term)
+pedaler|1
+(noun)|pedaller|rider (generic term)
+pedaliaceae|1
+(noun)|Pedaliaceae|family Pedaliaceae|sesame family|plant family (generic term)
+pedaller|1
+(noun)|pedaler|rider (generic term)
+pedant|1
+(noun)|bookworm|scholastic|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+pedantic|1
+(adj)|academic|donnish|scholarly (similar term)
+pedantry|1
+(noun)|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+pedate|2
+(adj)|compound (similar term)
+(adj)|footed (similar term)
+pedate leaf|1
+(noun)|palmate leaf (generic term)
+peddle|1
+(verb)|monger|huckster|hawk|vend|pitch|deal (generic term)|sell (generic term)|trade (generic term)
+peddler|2
+(noun)|pedlar|packman|hawker|pitchman|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+(noun)|pusher|drug peddler|drug dealer|drug trafficker|dealer (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+peddling|1
+(noun)|vending|hawking|vendition|selling (generic term)|merchandising (generic term)|marketing (generic term)
+pederast|1
+(noun)|paederast|child molester|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+pederastic|1
+(adj)|paederastic|homosexual (similar term)
+pederasty|1
+(noun)|paederasty|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)|paraphilia (generic term)
+pedesis|1
+(noun)|Brownian movement|Brownian motion|movement (generic term)|motion (generic term)
+pedestal|3
+(noun)|base|stand|support (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|plinth|footstall|support (generic term)
+pedestal table|1
+(noun)|table (generic term)
+pedestrian|2
+(adj)|prosaic|prosy|earthbound|uninteresting (similar term)
+(noun)|walker|footer|traveler (generic term)|traveller (generic term)
+pedestrian bridge|1
+(noun)|footbridge|overcrossing|bridge (generic term)|span (generic term)
+pedestrian crossing|1
+(noun)|zebra crossing|crossing (generic term)|crosswalk (generic term)|crossover (generic term)
+pedestrian traffic|1
+(noun)|foot traffic|traffic (generic term)
+pediamycin|1
+(noun)|erythromycin|Erythrocin|E-Mycin|Ethril|Ilosone|Pediamycin|antibiotic (generic term)|antibiotic drug (generic term)
+pediapred|1
+(noun)|prednisolone|Pediapred|Prelone|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+pediatric|1
+(adj)|paediatric|medicine|medical specialty (related term)
+pediatric medicine|1
+(noun)|pediatrics|paediatrics|pedology|medicine (generic term)|medical specialty (generic term)
+pediatrician|1
+(noun)|baby doctor|pediatrist|paediatrician|specialist (generic term)|medical specialist (generic term)
+pediatrics|1
+(noun)|paediatrics|pediatric medicine|pedology|medicine (generic term)|medical specialty (generic term)
+pediatrist|1
+(noun)|baby doctor|pediatrician|paediatrician|specialist (generic term)|medical specialist (generic term)
+pedicab|1
+(noun)|cycle rickshaw|tricycle (generic term)|trike (generic term)|velocipede (generic term)
+pedicel|1
+(noun)|pedicle|peduncle (generic term)
+pedicle|1
+(noun)|pedicel|peduncle (generic term)
+pediculati|1
+(noun)|Pediculati|order Pediculati|animal order (generic term)
+pediculicide|1
+(noun)|pesticide (generic term)
+pediculidae|1
+(noun)|Pediculidae|family Pediculidae|arthropod family (generic term)
+pediculosis|1
+(noun)|lousiness|infestation (generic term)
+pediculosis capitis|1
+(noun)|head lice|pediculosis (generic term)|lousiness (generic term)
+pediculosis corporis|1
+(noun)|pediculosis (generic term)|lousiness (generic term)
+pediculosis pubis|1
+(noun)|crabs|pediculosis (generic term)|lousiness (generic term)
+pediculus|1
+(noun)|Pediculus|genus Pediculus|arthropod genus (generic term)
+pediculus capitis|1
+(noun)|head louse|Pediculus capitis|louse (generic term)|sucking louse (generic term)
+pediculus corporis|1
+(noun)|body louse|cootie|Pediculus corporis|louse (generic term)|sucking louse (generic term)
+pediculus humanus|1
+(noun)|common louse|Pediculus humanus|louse (generic term)|sucking louse (generic term)
+pedicure|2
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)|beauty treatment (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+pedigree|4
+(adj)|pedigreed|pureblood|pureblooded|thoroughbred|purebred (similar term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|ancestry|origin|parentage|stemma|stock|genealogy (generic term)|family tree (generic term)
+(noun)|breed (generic term)|strain (generic term)|stock (generic term)
+(noun)|bloodline|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+pedigreed|1
+(adj)|pedigree|pureblood|pureblooded|thoroughbred|purebred (similar term)
+pedilanthus|1
+(noun)|Pedilanthus|genus Pedilanthus|rosid dicot genus (generic term)
+pedilanthus bracteatus|1
+(noun)|candelilla|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge (generic term)|slipper plant (generic term)
+pedilanthus pavonis|1
+(noun)|candelilla|Pedilanthus bracteatus|Pedilanthus pavonis|slipper spurge (generic term)|slipper plant (generic term)
+pedilanthus tithymaloides|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|redbird flower|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+pediment|1
+(noun)|gable (generic term)|gable end (generic term)|gable wall (generic term)
+pediocactus|1
+(noun)|Pediocactus|genus Pediocactus|caryophylloid dicot genus (generic term)
+pediocactus knowltonii|1
+(noun)|Knowlton's cactus|Pediocactus knowltonii|cactus (generic term)
+pedioecetes|1
+(noun)|Pedioecetes|genus Pedioecetes|bird genus (generic term)
+pedioecetes phasianellus|1
+(noun)|sharp-tailed grouse|sprigtail|sprig tail|Pedioecetes phasianellus|grouse (generic term)
+pedionomus|1
+(noun)|Pedionomus|genus Pedionomus|bird genus (generic term)
+pedionomus torquatus|1
+(noun)|plain wanderer|Pedionomus torquatus|wading bird (generic term)|wader (generic term)
+pedipalpi|1
+(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order (generic term)
+pedlar|1
+(noun)|peddler|packman|hawker|pitchman|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+pedodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+pedology|1
+(noun)|pediatrics|paediatrics|pediatric medicine|medicine (generic term)|medical specialty (generic term)
+pedometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pedophile|1
+(noun)|paedophile|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+pedophilia|1
+(noun)|paedophilia|paraphilia (generic term)
+pedro calderon de la barca|1
+(noun)|Calderon|Calderon de la Barca|Pedro Calderon de la Barca|dramatist (generic term)|playwright (generic term)|poet (generic term)
+peduncle|3
+(noun)|growth (generic term)
+(noun)|scape (generic term)|flower stalk (generic term)
+(noun)|cerebral peduncle|nerve pathway (generic term)|tract (generic term)|nerve tract (generic term)|pathway (generic term)
+pedunculate|1
+(adj)|stalked|sessile (antonym)
+pedunculate oak|1
+(noun)|common oak|English oak|Quercus robur|white oak (generic term)
+pedunculated polyp|1
+(noun)|polyp (generic term)|polypus (generic term)
+pedwood|1
+(noun)|common European dogwood|red dogwood|blood-twig|Cornus sanguinea|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+pee|3
+(noun)|urine|piss|piddle|weewee|water|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|peeing|pissing|piss|micturition (generic term)|urination (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+pee dee|1
+(noun)|Pee Dee|Pee Dee River|river (generic term)
+pee dee river|1
+(noun)|Pee Dee|Pee Dee River|river (generic term)
+peeing|1
+(noun)|pee|pissing|piss|micturition (generic term)|urination (generic term)
+peek|2
+(noun)|peep|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|glance|glint|look (generic term)
+peekaboo|1
+(noun)|bopeep|child's game (generic term)
+peel|6
+(noun)|skin|rind|plant tissue (generic term)
+(noun)|Peel|Robert Peel|Sir Robert Peel|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|skin|rind (generic term)
+(verb)|skin|pare|strip (generic term)
+(verb)|peel off|flake off|flake|chip (generic term)|chip off (generic term)|come off (generic term)|break away (generic term)|break off (generic term)
+(verb)|undress|discase|uncase|unclothe|strip|strip down|disrobe|take off (generic term)|dress (antonym)|dress (antonym)
+peel off|5
+(verb)|skin (generic term)|peel (generic term)|pare (generic term)
+(verb)|take off (generic term)
+(verb)|swerve (generic term)|sheer (generic term)|curve (generic term)|trend (generic term)|veer (generic term)|slue (generic term)|slew (generic term)|cut (generic term)
+(verb)|peel|flake off|flake|chip (generic term)|chip off (generic term)|come off (generic term)|break away (generic term)|break off (generic term)
+(verb)|desquamate|shed (generic term)|molt (generic term)|exuviate (generic term)|moult (generic term)|slough (generic term)
+peeled|1
+(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|naked as a jaybird|stark naked|unclothed (similar term)
+peeler|3
+(noun)|stripper|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|performer (generic term)|performing artist (generic term)
+(noun)|worker (generic term)
+(noun)|device (generic term)
+peeling|2
+(adj)|damaged (similar term)
+(noun)|desquamation|shedding|organic phenomenon (generic term)
+peen|1
+(noun)|part (generic term)|portion (generic term)
+peep|7
+(noun)|cheep|cry (generic term)
+(noun)|peek|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|look (generic term)
+(verb)|show (generic term)
+(verb)|twirp|cheep|chirp|chirrup|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|appear (generic term)
+peep sight|1
+(noun)|gunsight (generic term)|gun-sight (generic term)
+peeper|3
+(noun)|voyeur|Peeping Tom|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+(noun)|eye (generic term)|oculus (generic term)|optic (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+peephole|1
+(noun)|spyhole|eyehole|hole (generic term)
+peeping tom|1
+(noun)|voyeur|Peeping Tom|peeper|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+peepshow|2
+(noun)|raree-show|exhibition (generic term)|exposition (generic term)|expo (generic term)
+(noun)|skin flick (generic term)
+peepul|1
+(noun)|pipal|pipal tree|pipul|sacred fig|bo tree|Ficus religiosa|fig tree (generic term)
+peer|3
+(noun)|equal|match|compeer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(verb)|look (generic term)
+peer group|1
+(noun)|coevals (generic term)|contemporaries (generic term)|generation (generic term)
+peer of the realm|1
+(noun)|peer (generic term)
+peer review|1
+(verb)|referee|review (generic term)|critique (generic term)
+peerage|1
+(noun)|baronage|nobility (generic term)|aristocracy (generic term)
+peeress|1
+(noun)|Lady|noblewoman|female aristocrat (generic term)|nobleman (antonym)|Lord (antonym)
+peerless|1
+(adj)|matchless|nonpareil|one|one and only|unmatched|unmatchable|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+peeve|2
+(noun)|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)
+(verb)|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+peeved|1
+(adj)|annoyed|irritated|miffed|nettled|pissed|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+peevish|1
+(adj)|cranky|fractious|irritable|nettlesome|peckish|pettish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+peevishly|1
+(adv)|querulously|fractiously
+peevishness|2
+(noun)|irritability|crossness|fretfulness|fussiness|petulance|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+(noun)|temper|biliousness|irritability|pettishness|snappishness|surliness|ill nature (generic term)
+peewee|2
+(noun)|runt|shrimp|half-pint|small person (generic term)
+(noun)|pewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+peewit|2
+(noun)|lapwing|green plover|pewit|plover (generic term)
+(noun)|pewee|peewee|pewit|wood pewee|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+peg|10
+(noun)|nog|pin (generic term)
+(noun)|pin|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|pin|stick|leg (generic term)
+(noun)|wooden leg|leg|pegleg|prosthesis (generic term)|prosthetic device (generic term)
+(noun)|regulator (generic term)
+(noun)|pin|thole|tholepin|rowlock|oarlock|holder (generic term)
+(verb)|nail down|nail|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|pierce (generic term)|thrust (generic term)
+(verb)|peg down|attach (generic term)|peg down (related term)
+(verb)|stabilize (generic term)|stabilise (generic term)
+peg away|1
+(verb)|plug away|slog|keep one's nose to the grindstone|keep one's shoulder to the wheel|work (generic term)
+peg down|2
+(verb)|peg|attach (generic term)|peg down (related term)
+(verb)|pin down|nail down|narrow down|narrow|specify|determine (generic term)
+peg top|1
+(noun)|top (generic term)|whirligig (generic term)|teetotum (generic term)|spinning top (generic term)
+pegasus|2
+(noun)|Pegasus|mythical being (generic term)
+(noun)|Pegasus|constellation (generic term)
+pegboard|1
+(noun)|board (generic term)|gameboard (generic term)
+pegged-down|1
+(adj)|fastened (similar term)
+pegleg|1
+(noun)|peg|wooden leg|leg|prosthesis (generic term)|prosthetic device (generic term)
+pegmatite|1
+(noun)|igneous rock (generic term)
+pei|1
+(noun)|Pei|I. M. Pei|Ieoh Ming Pei|architect (generic term)|designer (generic term)
+peignoir|1
+(noun)|negligee|neglige|wrapper|housecoat|woman's clothing (generic term)
+peiping|1
+(noun)|Beijing|Peking|Peiping|capital of Red China|national capital (generic term)
+peirce|2
+(noun)|Peirce|Benjamin Peirce|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Peirce|Charles Peirce|Charles Franklin Peirce|philosopher (generic term)|logician (generic term)|logistician (generic term)
+peireskia|1
+(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus (generic term)
+pejorative|1
+(adj)|dyslogistic|dislogistic|uncomplimentary (similar term)
+pekan|1
+(noun)|fisher|fisher cat|black cat|Martes pennanti|marten (generic term)|marten cat (generic term)
+peke|1
+(noun)|Pekinese|Pekingese|Peke|toy dog (generic term)|toy (generic term)
+pekinese|1
+(noun)|Pekinese|Pekingese|Peke|toy dog (generic term)|toy (generic term)
+peking|1
+(noun)|Beijing|Peking|Peiping|capital of Red China|national capital (generic term)
+peking man|1
+(noun)|Peking man|Homo erectus (generic term)
+pekingese|1
+(noun)|Pekinese|Pekingese|Peke|toy dog (generic term)|toy (generic term)
+pekoe|1
+(noun)|orange pekoe|black tea (generic term)
+pel|1
+(noun)|pixel|picture element|component (generic term)|constituent (generic term)|element (generic term)
+pelage|1
+(noun)|coat|hair (generic term)
+pelagianism|1
+(noun)|Pelagianism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+pelagic|1
+(adj)|oceanic|body of water|water (related term)
+pelagic bird|1
+(noun)|oceanic bird|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+pelagius|1
+(noun)|Pelagius|monk (generic term)|monastic (generic term)
+pelargonium|1
+(noun)|Pelargonium|genus Pelargonium|rosid dicot genus (generic term)
+pelargonium graveolens|1
+(noun)|rose geranium|sweet-scented geranium|Pelargonium graveolens|geranium (generic term)
+pelargonium hortorum|1
+(noun)|fish geranium|bedding geranium|zonal pelargonium|Pelargonium hortorum|geranium (generic term)
+pelargonium limoneum|1
+(noun)|lemon geranium|Pelargonium limoneum|geranium (generic term)
+pelargonium odoratissimum|1
+(noun)|apple geranium|nutmeg geranium|Pelargonium odoratissimum|geranium (generic term)
+pelargonium peltatum|1
+(noun)|ivy geranium|ivy-leaved geranium|hanging geranium|Pelargonium peltatum|geranium (generic term)
+pelecanidae|1
+(noun)|Pelecanidae|family Pelecanidae|bird family (generic term)
+pelecaniform seabird|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+pelecaniformes|1
+(noun)|Pelecaniformes|order Pelecaniformes|animal order (generic term)
+pelecanoididae|1
+(noun)|Pelecanoididae|family Pelecanoididae|bird family (generic term)
+pelecanus|1
+(noun)|Pelecanus|genus Pelecanus|bird genus (generic term)
+pelecanus erythrorhynchos|1
+(noun)|white pelican|Pelecanus erythrorhynchos|pelican (generic term)
+pelecanus onocrotalus|1
+(noun)|Old world white pelican|Pelecanus onocrotalus|pelican (generic term)
+pelecypod|2
+(adj)|lamellibranch|pelecypodous|bivalve (similar term)|bivalved (similar term)
+(noun)|bivalve|lamellibranch|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+pelecypodous|1
+(adj)|lamellibranch|pelecypod|bivalve (similar term)|bivalved (similar term)
+peleus|1
+(noun)|Peleus|mythical being (generic term)
+pelew|1
+(noun)|Palau|Palau Islands|Belau|Pelew|archipelago (generic term)
+pelf|1
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|scratch|shekels|simoleons|sugar|wampum|money (generic term)
+pelham|1
+(noun)|Pelham|bit (generic term)
+pelham grenville wodehouse|1
+(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer (generic term)|author (generic term)
+pelican|1
+(noun)|pelecaniform seabird (generic term)
+pelican crossing|1
+(noun)|pedestrian crossing (generic term)|zebra crossing (generic term)
+pelican state|1
+(noun)|Louisiana|Pelican State|LA|American state (generic term)
+peliosis|1
+(noun)|purpura|blood disease (generic term)|blood disorder (generic term)
+pelisse|1
+(noun)|cape (generic term)|mantle (generic term)
+pell-mell|2
+(adj)|helter-skelter|hurried (similar term)
+(adv)|harum-scarum
+pellaea|1
+(noun)|Pellaea|genus Pellaea|fern genus (generic term)
+pellaea andromedifolia|1
+(noun)|coffee fern|Pellaea andromedifolia|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+pellaea atropurpurea|1
+(noun)|purple rock brake|Pellaea atropurpurea|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+pellaea mucronata|1
+(noun)|bird's-foot fern|Pellaea mucronata|Pellaea ornithopus|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+pellaea ornithopus|1
+(noun)|bird's-foot fern|Pellaea mucronata|Pellaea ornithopus|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+pellaea rotundifolia|1
+(noun)|button fern|Pellaea rotundifolia|fern (generic term)
+pellagra|1
+(noun)|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+pellet|2
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+(noun)|shot|projectile (generic term)|missile (generic term)
+pellicle|1
+(noun)|investment (generic term)
+pellicularia|1
+(noun)|Pellicularia|genus Pellicularia|fungus genus (generic term)
+pellicularia filamentosa|1
+(noun)|potato fungus|Pellicularia filamentosa|Rhizoctinia solani|fungus (generic term)
+pellicularia koleroga|1
+(noun)|coffee fungus|Pellicularia koleroga|fungus (generic term)
+pellitory|2
+(noun)|pellitory-of-the-wall|wall pellitory|Parietaria difussa|herb (generic term)|herbaceous plant (generic term)
+(noun)|pellitory-of-Spain|Anacyclus pyrethrum|herb (generic term)|herbaceous plant (generic term)
+pellitory-of-spain|1
+(noun)|pellitory|pellitory-of-Spain|Anacyclus pyrethrum|herb (generic term)|herbaceous plant (generic term)
+pellitory-of-the-wall|1
+(noun)|wall pellitory|pellitory|Parietaria difussa|herb (generic term)|herbaceous plant (generic term)
+pellucid|2
+(adj)|crystalline|crystal clear|limpid|lucid|transparent|clear (similar term)
+(adj)|limpid|lucid|luculent|crystal clear|perspicuous|clear (similar term)
+pellucidity|2
+(noun)|clarity|lucidity|lucidness|clearness|limpidity|comprehensibility (generic term)|understandability (generic term)|unclearness (antonym)|obscurity (antonym)
+(noun)|pellucidness|limpidity|transparency (generic term)|transparence (generic term)|transparentness (generic term)
+pellucidly|1
+(adv)|lucidly|limpidly|perspicuously
+pellucidness|1
+(noun)|pellucidity|limpidity|transparency (generic term)|transparence (generic term)|transparentness (generic term)
+pelmet|1
+(noun)|cornice|valance|valance board|framework (generic term)|frame (generic term)|framing (generic term)
+pelobatidae|1
+(noun)|Pelobatidae|family Pelobatidae|amphibian family (generic term)
+peloponnese|1
+(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula (generic term)
+peloponnesian|1
+(adj)|Peloponnesian|peninsula (related term)
+peloponnesian peninsula|1
+(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula (generic term)
+peloponnesian war|1
+(noun)|Peloponnesian War|war (generic term)|warfare (generic term)
+peloponnesus|1
+(noun)|Peloponnese|Peloponnesus|Peloponnesian Peninsula|peninsula (generic term)
+pelota|1
+(noun)|jai alai|court game (generic term)
+pelt|5
+(noun)|fur|animal skin (generic term)
+(noun)|hide|skin|body covering (generic term)
+(verb)|bombard|throw (generic term)
+(verb)|pepper|attack (generic term)|assail (generic term)
+(verb)|pour|stream|rain cats and dogs|rain buckets|rain (generic term)|rain down (generic term)
+pelt along|1
+(verb)|rush|hotfoot|hasten|hie|speed|race|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+peltandra|1
+(noun)|Peltandra|genus Peltandra|monocot genus (generic term)|liliopsid genus (generic term)
+peltandra virginica|1
+(noun)|green arrow arum|tuckahoe|Peltandra virginica|arrow arum (generic term)
+peltate|1
+(adj)|shield-shaped|simple (similar term)|unsubdivided (similar term)
+peltate leaf|1
+(noun)|simple leaf (generic term)
+pelter|2
+(noun)|downpour|cloudburst|deluge|waterspout|torrent|soaker|rain (generic term)|rainfall (generic term)
+(noun)|thrower (generic term)
+pelting|1
+(noun)|rain|sequence (generic term)|chronological sequence (generic term)|succession (generic term)|successiveness (generic term)|chronological succession (generic term)
+peltiphyllum|1
+(noun)|Darmera|genus Darmera|Peltiphyllum|genus Peltiphyllum|rosid dicot genus (generic term)
+peltiphyllum peltatum|1
+(noun)|umbrella plant|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+peludo|1
+(noun)|poyou|Euphractus sexcinctus|armadillo (generic term)
+pelvic|1
+(adj)|girdle (related term)
+pelvic arch|1
+(noun)|pelvis|pelvic girdle|hip|girdle (generic term)
+pelvic cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pelvic fin|1
+(noun)|ventral fin|fin (generic term)
+pelvic girdle|1
+(noun)|pelvis|pelvic arch|hip|girdle (generic term)
+pelvic inflammatory disease|1
+(noun)|PID|inflammatory disease (generic term)
+pelvimeter|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pelvimetry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+pelvis|2
+(noun)|pelvic girdle|pelvic arch|hip|girdle (generic term)
+(noun)|renal pelvis|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pelycosaur|1
+(noun)|synapsid (generic term)|synapsid reptile (generic term)
+pelycosauria|1
+(noun)|Pelycosauria|order Pelycosauria|animal order (generic term)
+pembroke|1
+(noun)|Pembroke|Pembroke Welsh corgi|corgi (generic term)|Welsh corgi (generic term)
+pembroke welsh corgi|1
+(noun)|Pembroke|Pembroke Welsh corgi|corgi (generic term)|Welsh corgi (generic term)
+pemican|1
+(noun)|pemmican|meat (generic term)
+pemmican|1
+(noun)|pemican|meat (generic term)
+pempheridae|1
+(noun)|Pempheridae|family Pempheridae|fish family (generic term)
+pemphigous|1
+(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition|autoimmune disease|autoimmune disorder (related term)
+pemphigus|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+pen|6
+(noun)|writing implement (generic term)
+(noun)|enclosure (generic term)
+(noun)|playpen|enclosure (generic term)
+(noun)|penitentiary|correctional institution (generic term)
+(noun)|swan (generic term)
+(verb)|write|compose|indite|create verbally (generic term)|write out (related term)
+pen-and-ink|1
+(noun)|drawing (generic term)
+pen-friend|1
+(noun)|pen pal|correspondent (generic term)|letter writer (generic term)
+pen-tail|1
+(noun)|pentail|pen-tailed tree shrew|tree shrew (generic term)
+pen-tailed tree shrew|1
+(noun)|pentail|pen-tail|tree shrew (generic term)
+pen name|1
+(noun)|nom de plume|pseudonym (generic term)|anonym (generic term)|nom de guerre (generic term)
+pen nib|1
+(noun)|nib|point (generic term)
+pen pal|1
+(noun)|pen-friend|correspondent (generic term)|letter writer (generic term)
+pen up|1
+(verb)|fold|restrain (generic term)|confine (generic term)|hold (generic term)
+penal|3
+(adj)|social control (related term)
+(adj)|punitive (similar term)|punitory (similar term)
+(adj)|punishable|illegal (similar term)
+penal code|1
+(noun)|legal code (generic term)
+penal colony|1
+(noun)|penal institution (generic term)|penal facility (generic term)
+penal facility|1
+(noun)|penal institution|institution (generic term)
+penal institution|1
+(noun)|penal facility|institution (generic term)
+penalisation|1
+(noun)|punishment|penalty|penalization|social control (generic term)
+penalise|1
+(verb)|punish|penalize
+penalised|1
+(adj)|fined|penalized|punished (similar term)
+penalization|1
+(noun)|punishment|penalty|penalisation|social control (generic term)
+penalize|1
+(verb)|punish|penalise
+penalized|1
+(adj)|fined|penalised|punished (similar term)
+penally|1
+(adv)|punitively|punitorily
+penalty|4
+(noun)|punishment|penalization|penalisation|social control (generic term)
+(noun)|payment (generic term)
+(noun)|disadvantage (generic term)|reward (antonym)
+(noun)|handicap (generic term)
+penalty box|1
+(noun)|bench (generic term)
+penalty free throw|1
+(noun)|foul shot|free throw|charity toss|charity throw|charity shot|basketball shot (generic term)
+penance|3
+(noun)|repentance|penitence|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+(noun)|sacrament (generic term)
+(noun)|self-mortification|self-abasement|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+penchant|1
+(noun)|preference|predilection|taste|liking (generic term)
+pencil|5
+(noun)|writing implement (generic term)
+(noun)|graphite (generic term)|black lead (generic term)|plumbago (generic term)
+(noun)|figure (generic term)
+(noun)|cosmetic (generic term)
+(verb)|draw (generic term)
+pencil box|1
+(noun)|pencil case|box (generic term)
+pencil case|1
+(noun)|pencil box|box (generic term)
+pencil cedar|2
+(noun)|pencil cedar tree|juniper (generic term)
+(noun)|red cedar (generic term)
+pencil cedar tree|1
+(noun)|pencil cedar|juniper (generic term)
+pencil eraser|1
+(noun)|rubber eraser|rubber|eraser (generic term)
+pencil lead|1
+(noun)|lead|graphite (generic term)|black lead (generic term)|plumbago (generic term)
+pencil pusher|1
+(noun)|penpusher|clerk (generic term)
+pencil sharpener|1
+(noun)|sharpener (generic term)
+penciled|1
+(adj)|pencilled
+pencilled|1
+(adj)|penciled
+pendant|3
+(adj)|pendent|dependent|hanging|hanging down|supported (similar term)
+(noun)|pendent|adornment (generic term)
+(noun)|chandelier|pendent|lighting fixture (generic term)
+pendant earring|1
+(noun)|drop earring|eardrop|earring (generic term)
+pendent|3
+(adj)|pendant|dependent|hanging|hanging down|supported (similar term)
+(noun)|pendant|adornment (generic term)
+(noun)|chandelier|pendant|lighting fixture (generic term)
+pending|1
+(adj)|unfinished (similar term)
+pendragon|1
+(noun)|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+pendulous|1
+(adj)|cernuous|drooping|nodding|unerect (similar term)
+pendulum|1
+(noun)|apparatus (generic term)|setup (generic term)
+pendulum clock|1
+(noun)|clock (generic term)
+pendulum watch|1
+(noun)|watch (generic term)|ticker (generic term)
+peneidae|1
+(noun)|Peneidae|family Peneidae|arthropod family (generic term)
+penelope|2
+(noun)|Penelope|mythical being (generic term)
+(noun)|Penelope|genus Penelope|bird genus (generic term)
+peneplain|1
+(noun)|peneplane|plain (generic term)|field (generic term)|champaign (generic term)
+peneplane|1
+(noun)|peneplain|plain (generic term)|field (generic term)|champaign (generic term)
+penetrability|1
+(noun)|perviousness|quality (generic term)|imperviousness (antonym)|impenetrability (antonym)
+penetrable|2
+(adj)|impenetrable (antonym)
+(adj)|vulnerable (similar term)
+penetralia|1
+(noun)|inside (generic term)|interior (generic term)
+penetrate|7
+(verb)|perforate|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+(verb)|fathom|bottom|understand (generic term)
+(verb)|click|get through|dawn|come home|get across|sink in|fall into place
+(verb)|infiltrate|join (generic term)|fall in (generic term)|get together (generic term)
+(verb)|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|permeate|pervade|interpenetrate|diffuse|imbue|riddle|penetrate (generic term)|perforate (generic term)
+penetrating|2
+(adj)|acute|discriminating|incisive|keen|knifelike|penetrative|piercing|sharp|perceptive (similar term)
+(adj)|penetrative|sharp (similar term)
+penetrating injury|1
+(noun)|penetrating trauma|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+penetrating trauma|1
+(noun)|penetrating injury|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+penetratingly|1
+(adv)|penetratively
+penetration|6
+(noun)|incursion|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|insight|perception (generic term)
+(noun)|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|ability (generic term)
+(noun)|depth (generic term)
+(noun)|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+penetration bomb|1
+(noun)|bomb (generic term)
+penetrative|2
+(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|piercing|sharp|perceptive (similar term)
+(adj)|penetrating|sharp (similar term)
+penetratively|1
+(adv)|penetratingly
+penetrator|1
+(noun)|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+peneus|1
+(noun)|Peneus|genus Peneus|arthropod genus (generic term)
+pengo|2
+(noun)|Hungarian monetary unit (generic term)
+(noun)|Pengo|South-Central Dravidian (generic term)
+penguin|1
+(noun)|sphenisciform seabird (generic term)
+penial|1
+(adj)|penile|erectile organ (related term)
+penicillamine|1
+(noun)|Cuprimine|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+penicillin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+penicillin-resistant|1
+(adj)|antibiotic|antibiotic drug (related term)
+penicillin-resistant bacteria|1
+(noun)|bacteria (generic term)|bacterium (generic term)
+penicillin f|1
+(noun)|penicillin F|penicillin (generic term)
+penicillin g|1
+(noun)|penicillin G|benzylpenicillin|penicillin (generic term)
+penicillin o|1
+(noun)|penicillin O|penicillin (generic term)
+penicillin v|1
+(noun)|penicillin V|phenoxymethyl penicillin|penicillin (generic term)
+penicillin v potassium|1
+(noun)|penicillin V potassium|Ledercillin VK|penicillin V (generic term)|phenoxymethyl penicillin (generic term)
+penicillinase|1
+(noun)|beta-lactamase|enzyme (generic term)
+penicillinase-resistant antibiotic|1
+(noun)|penicillin (generic term)
+penicillium|1
+(noun)|Penicillium|genus Penicillium|fungus genus (generic term)
+penile|1
+(adj)|penial|erectile organ (related term)
+penile implant|1
+(noun)|implant (generic term)
+peninsula|1
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+peninsular|1
+(adj)|land|dry land|earth|ground|solid ground|terra firma (related term)
+penis|1
+(noun)|phallus|member|erectile organ (generic term)
+penis envy|1
+(noun)|envy (generic term)|enviousness (generic term)
+penitence|1
+(noun)|repentance|penance|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+penitent|2
+(adj)|repentant|contrite (similar term)|remorseful (similar term)|rueful (similar term)|ruthful (similar term)|penitential (similar term)|ashamed (related term)|regretful (related term)|sorry (related term)|bad (related term)|unrepentant (antonym)|impenitent (antonym)
+(noun)|religious person (generic term)
+penitential|2
+(adj)|compunction|remorse|self-reproach (related term)
+(adj)|penitent (similar term)|repentant (similar term)
+penitentially|1
+(adv)|penitently|repentantly|unrepentantly (antonym)|impenitently (antonym)
+penitentiary|2
+(adj)|punitive (similar term)|punitory (similar term)
+(noun)|pen|correctional institution (generic term)
+penitently|1
+(adv)|penitentially|repentantly|unrepentantly (antonym)|impenitently (antonym)
+penknife|1
+(noun)|pocketknife (generic term)|pocket knife (generic term)
+penlight|1
+(noun)|flashlight (generic term)|torch (generic term)
+penman|1
+(noun)|scribe|scribbler|journalist (generic term)
+penmanship|1
+(noun)|calligraphy|chirography|handwriting (generic term)|hand (generic term)|script (generic term)
+penn|2
+(noun)|Penn|William Penn|Friend (generic term)|Quaker (generic term)
+(noun)|University of Pennsylvania|Pennsylvania|Penn|university (generic term)
+penn'orth|1
+(noun)|pennyworth|worth (generic term)
+pennant|3
+(noun)|crown|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|flag (generic term)|signal flag (generic term)
+(noun)|pennon|streamer|waft|flag (generic term)
+pennate|1
+(adj)|feathered (similar term)
+pennatula|1
+(noun)|Pennatula|genus Pennatula|coelenterate genus (generic term)
+pennatulidae|1
+(noun)|Pennatulidae|family Pennatulidae|coelenterate family (generic term)
+penne|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+penned|1
+(adj)|confined|fenced in|enclosed (similar term)
+penni|1
+(noun)|Finnish monetary unit (generic term)
+penniless|1
+(adj)|hard up|impecunious|in straitened circumstances|penurious|pinched|poor (similar term)
+pennilessness|1
+(noun)|impecuniousness|penuriousness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+pennine chain|1
+(noun)|Pennines|Pennine Chain|hill (generic term)
+pennines|1
+(noun)|Pennines|Pennine Chain|hill (generic term)
+penning|1
+(noun)|writing|authorship|composition|verbal creation (generic term)
+pennisetum|1
+(noun)|Pennisetum|genus Pennisetum|monocot genus (generic term)|liliopsid genus (generic term)
+pennisetum americanum|1
+(noun)|pearl millet|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal (generic term)|cereal grass (generic term)
+pennisetum cenchroides|1
+(noun)|buffel grass|Cenchrus ciliaris|Pennisetum cenchroides|burgrass (generic term)|bur grass (generic term)
+pennisetum glaucum|1
+(noun)|pearl millet|bulrush millet|cattail millet|Pennisetum glaucum|Pennisetum Americanum|cereal (generic term)|cereal grass (generic term)
+pennisetum ruppelii|1
+(noun)|fountain grass|Pennisetum ruppelii|Pennisetum setaceum|grass (generic term)
+pennisetum setaceum|1
+(noun)|fountain grass|Pennisetum ruppelii|Pennisetum setaceum|grass (generic term)
+pennistum villosum|1
+(noun)|feathertop|feathertop grass|Pennistum villosum|grass (generic term)
+pennon|2
+(noun)|pennant|streamer|waft|flag (generic term)
+(noun)|pinion|wing (generic term)
+pennoncel|1
+(noun)|penoncel|pennoncelle|pennant (generic term)|pennon (generic term)|streamer (generic term)|waft (generic term)
+pennoncelle|1
+(noun)|pennoncel|penoncel|pennant (generic term)|pennon (generic term)|streamer (generic term)|waft (generic term)
+pennsylvania|3
+(noun)|Pennsylvania|Keystone State|PA|American state (generic term)
+(noun)|Pennsylvania|Colony (generic term)
+(noun)|University of Pennsylvania|Pennsylvania|Penn|university (generic term)
+pennsylvania dutch|1
+(noun)|Pennsylvania Dutch|German (generic term)|High German (generic term)|German language (generic term)
+pennsylvanian|2
+(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period (generic term)|geological period (generic term)
+(noun)|Pennsylvanian|Keystone Stater|American (generic term)
+pennsylvanian period|1
+(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period (generic term)|geological period (generic term)
+penny|2
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+(noun)|cent|centime|coin (generic term)
+penny-pinch|1
+(verb)|nickel-and-dime|spend (generic term)|expend (generic term)|drop (generic term)
+penny-pinching|2
+(adj)|cheeseparing|close|near|skinny|stingy (similar term)|ungenerous (similar term)
+(noun)|parsimony|parsimoniousness|thrift|frugality (generic term)|frugalness (generic term)
+penny-wise|1
+(adj)|thrifty (similar term)
+penny ante|2
+(noun)|deal (generic term)|trade (generic term)|business deal (generic term)
+(noun)|penny ante poker|poker (generic term)|poker game (generic term)
+penny ante poker|1
+(noun)|penny ante|poker (generic term)|poker game (generic term)
+penny arcade|1
+(noun)|arcade (generic term)
+penny bank|1
+(noun)|piggy bank|savings bank (generic term)|coin bank (generic term)|money box (generic term)|bank (generic term)
+penny dreadful|1
+(noun)|dime novel|novel (generic term)
+penny grass|1
+(noun)|field pennycress|French weed|fanweed|stinkweed|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+penny pincher|1
+(noun)|hoarder (generic term)
+penny stock|1
+(noun)|over the counter stock (generic term)|OTC stock (generic term)|unlisted stock (generic term)
+pennycress|1
+(noun)|weed (generic term)
+pennyroyal|2
+(noun)|Mentha pulegium|mint (generic term)
+(noun)|American pennyroyal|Hedeoma pulegioides|herb (generic term)|herbaceous plant (generic term)
+pennyroyal oil|2
+(noun)|oil (generic term)
+(noun)|hedeoma oil|oil (generic term)
+pennyweight|1
+(noun)|troy unit (generic term)
+pennywhistle|1
+(noun)|tin whistle|whistle|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+pennyworth|1
+(noun)|penn'orth|worth (generic term)
+penobscot|2
+(noun)|Penobscot|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Penobscot|Penobscot River|river (generic term)
+penobscot bay|1
+(noun)|Penobscot Bay|bay (generic term)|embayment (generic term)
+penobscot river|1
+(noun)|Penobscot|Penobscot River|river (generic term)
+penoche|1
+(noun)|penuche|panoche|panocha|fudge (generic term)
+penologist|1
+(noun)|social scientist (generic term)
+penology|1
+(noun)|poenology|criminology (generic term)
+penoncel|1
+(noun)|pennoncel|pennoncelle|pennant (generic term)|pennon (generic term)|streamer (generic term)|waft (generic term)
+penpusher|1
+(noun)|pencil pusher|clerk (generic term)
+pensacola|1
+(noun)|Pensacola|town (generic term)
+pension|2
+(noun)|regular payment (generic term)
+(verb)|pension off|award (generic term)|grant (generic term)
+pension account|1
+(noun)|pension plan|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+pension fund|2
+(noun)|superannuation fund|fund (generic term)|monetary fund (generic term)
+(noun)|nondepository financial institution (generic term)
+pension off|3
+(verb)|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|pension|award (generic term)|grant (generic term)
+(verb)|retire|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+pension plan|1
+(noun)|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+pensionable|1
+(adj)|eligible (similar term)
+pensionary|2
+(noun)|pensioner|beneficiary (generic term)|donee (generic term)
+(noun)|hireling|employee (generic term)
+pensioner|1
+(noun)|pensionary|beneficiary (generic term)|donee (generic term)
+pensive|2
+(adj)|brooding|broody|contemplative|meditative|musing|pondering|reflective|ruminative|thoughtful (similar term)
+(adj)|wistful|sad (similar term)
+pensiveness|2
+(noun)|brooding|melancholy (generic term)
+(noun)|meditativeness|contemplativeness|thoughtfulness (generic term)
+penstemon|1
+(noun)|Penstemon|genus Penstemon|asterid dicot genus (generic term)
+penstemon barbatus|1
+(noun)|golden-beard penstemon|Penstemon barbatus|wildflower (generic term)|wild flower (generic term)
+penstemon centranthifolius|1
+(noun)|scarlet bugler|Penstemon centranthifolius|wildflower (generic term)|wild flower (generic term)
+penstemon cyananthus|1
+(noun)|Platte River penstemon|Penstemon cyananthus|wildflower (generic term)|wild flower (generic term)
+penstemon davidsonii|1
+(noun)|Davidson's penstemon|Penstemon davidsonii|wildflower (generic term)|wild flower (generic term)
+penstemon deustus|1
+(noun)|hot-rock penstemon|Penstemon deustus|wildflower (generic term)|wild flower (generic term)
+penstemon dolius|1
+(noun)|Jones' penstemon|Penstemon dolius|wildflower (generic term)|wild flower (generic term)
+penstemon fruticosus|1
+(noun)|shrubby penstemon|lowbush penstemon|Penstemon fruticosus|wildflower (generic term)|wild flower (generic term)
+penstemon linarioides|1
+(noun)|narrow-leaf penstemon|Penstemon linarioides|wildflower (generic term)|wild flower (generic term)
+penstemon newberryi|1
+(noun)|mountain pride|Penstemon newberryi|wildflower (generic term)|wild flower (generic term)
+penstemon palmeri|1
+(noun)|balloon flower|scented penstemon|Penstemon palmeri|wildflower (generic term)|wild flower (generic term)
+penstemon parryi|1
+(noun)|Parry's penstemon|Penstemon parryi|wildflower (generic term)|wild flower (generic term)
+penstemon rupicola|1
+(noun)|rock penstemon|cliff penstemon|Penstemon rupicola|wildflower (generic term)|wild flower (generic term)
+penstemon rydbergii|1
+(noun)|Rydberg's penstemon|Penstemon rydbergii|wildflower (generic term)|wild flower (generic term)
+penstemon serrulatus|1
+(noun)|cascade penstemon|Penstemon serrulatus|wildflower (generic term)|wild flower (generic term)
+penstemon whippleanus|1
+(noun)|Whipple's penstemon|Penstemon whippleanus|wildflower (generic term)|wild flower (generic term)
+penstock|2
+(noun)|sluicegate|sluice valve|floodgate|head gate|water gate|regulator (generic term)
+(noun)|sluice|sluiceway|conduit (generic term)
+pent|1
+(adj)|shut up|confined (similar term)
+pent-up|1
+(adj)|repressed|inhibited (similar term)
+pentacle|1
+(noun)|pentagram|pentangle|star (generic term)
+pentad|1
+(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+pentaerythritol|1
+(noun)|Peritrate|vasodilator (generic term)|vasodilative (generic term)
+pentagon|3
+(noun)|Pentagon|government building (generic term)
+(noun)|Pentagon|bureaucracy (generic term)|bureaucratism (generic term)
+(noun)|polygon (generic term)|polygonal shape (generic term)
+pentagon gang|1
+(noun)|Pentagon Gang|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pentagonal|1
+(adj)|pentangular|polygon|polygonal shape (related term)
+pentagram|1
+(noun)|pentacle|pentangle|star (generic term)
+pentahedron|1
+(noun)|polyhedron (generic term)
+pentail|1
+(noun)|pen-tail|pen-tailed tree shrew|tree shrew (generic term)
+pentamerous|1
+(adj)|divided (similar term)
+pentameter|1
+(noun)|verse (generic term)|verse line (generic term)
+pentamethylenetetrazol|1
+(noun)|pentylenetetrazol|Metrazol|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+pentangle|1
+(noun)|pentacle|pentagram|star (generic term)
+pentangular|1
+(adj)|pentagonal|polygon|polygonal shape (related term)
+pentanoic acid|1
+(noun)|valeric acid|carboxylic acid (generic term)
+pentastomid|1
+(noun)|tongue worm|arthropod (generic term)
+pentastomida|1
+(noun)|Pentastomida|subphylum Pentastomida|phylum (generic term)
+pentasyllabic|1
+(adj)|syllabic (similar term)
+pentateuch|1
+(noun)|Torah|Pentateuch|Laws|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+pentathlete|1
+(noun)|athlete (generic term)|jock (generic term)
+pentathlon|1
+(noun)|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+pentatone|1
+(noun)|pentatonic scale|gapped scale (generic term)
+pentatonic|1
+(adj)|gapped scale (related term)
+pentatonic scale|1
+(noun)|pentatone|gapped scale (generic term)
+pentavalent|1
+(adj)|power|powerfulness (related term)
+pentazocine|1
+(noun)|Talwin|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+pentecost|2
+(noun)|Pentecost|Whitsunday|quarter day (generic term)
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+pentecostal|3
+(adj)|Protestant Church|Protestant (related term)
+(adj)|quarter day (related term)
+(noun)|Pentecostal|Pentecostalist|Protestant (generic term)
+pentecostal religion|1
+(noun)|Pentecostal religion|Protestant Church (generic term)|Protestant (generic term)
+pentecostalism|1
+(noun)|Protestantism (generic term)
+pentecostalist|1
+(noun)|Pentecostal|Pentecostalist|Protestant (generic term)
+penthouse|1
+(noun)|apartment (generic term)|flat (generic term)
+pentimento|1
+(noun)|painting (generic term)|picture (generic term)
+pentlandite|1
+(noun)|mineral (generic term)
+pentobarbital|1
+(noun)|pentobarbital sodium|Nembutal|yellow jacket|barbiturate (generic term)
+pentobarbital sodium|1
+(noun)|pentobarbital|Nembutal|yellow jacket|barbiturate (generic term)
+pentode|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+pentose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+pentothal|1
+(noun)|thiopental|thiopental sodium|thiopentobarbital sodium|Pentothal|barbiturate (generic term)|truth serum (generic term)|truth drug (generic term)
+pentoxide|1
+(noun)|oxide (generic term)
+pentoxifylline|1
+(noun)|Trental|drug (generic term)
+pentylenetetrazol|1
+(noun)|pentamethylenetetrazol|Metrazol|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+penuche|1
+(noun)|penoche|panoche|panocha|fudge (generic term)
+penuchle|1
+(noun)|pinochle|pinocle|bezique|card game (generic term)|cards (generic term)
+penult|1
+(noun)|penultima|penultimate|syllable (generic term)
+penultima|1
+(noun)|penult|penultimate|syllable (generic term)
+penultimate|2
+(adj)|next-to-last|last (similar term)
+(noun)|penult|penultima|syllable (generic term)
+penumbra|1
+(noun)|shadow (generic term)
+penumbral|1
+(adj)|shadow (related term)
+penurious|2
+(adj)|hard up|impecunious|in straitened circumstances|penniless|pinched|poor (similar term)
+(adj)|parsimonious|stingy (similar term)|ungenerous (similar term)
+penuriousness|2
+(noun)|impecuniousness|pennilessness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|stinginess (generic term)
+penury|1
+(noun)|indigence|need|pauperism|pauperization|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+penutian|2
+(noun)|Penutian|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+(noun)|Penutian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+peon|1
+(noun)|drudge|navvy|galley slave|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+peonage|2
+(noun)|subjugation (generic term)|subjection (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+peony|1
+(noun)|paeony|flower (generic term)
+peony family|1
+(noun)|Paeoniaceae|family Paeoniaceae|magnoliid dicot family (generic term)
+people|6
+(noun)|group (generic term)|grouping (generic term)
+(noun)|citizenry|group (generic term)|grouping (generic term)
+(noun)|multitude|masses|mass|hoi polloi|the great unwashed|group (generic term)|grouping (generic term)
+(noun)|family (generic term)|family line (generic term)|folk (generic term)|kinfolk (generic term)|kinsfolk (generic term)|sept (generic term)|phratry (generic term)
+(verb)|populate|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|populate|dwell (generic term)|live (generic term)|inhabit (generic term)
+people's liberation army|1
+(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+people's mujahidin of iran|1
+(noun)|Mujahidin-e Khalq Organization|MKO|MEK|People's Mujahidin of Iran|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+people's party|1
+(noun)|People's Party|Populist Party|party (generic term)|political party (generic term)
+people's republic of bangladesh|1
+(noun)|Bangladesh|People's Republic of Bangladesh|Bangla Desh|East Pakistan|Asian country (generic term)|Asian nation (generic term)
+people's republic of china|1
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+people's republican army|1
+(noun)|Irish National Liberation Army|INLA|People's Liberation Army|People's Republican Army|Catholic Reaction Force|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+people against gangsterism and drugs|1
+(noun)|People against Gangsterism and Drugs|PAGAD|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+people in power|1
+(noun)|ruling class|upper class (generic term)|upper crust (generic term)
+people of color|1
+(noun)|color|colour|people of colour|race (generic term)
+people of colour|1
+(noun)|color|colour|people of color|race (generic term)
+peopled|1
+(adj)|inhabited (similar term)
+peoples|1
+(noun)|people (generic term)
+peoria|1
+(noun)|Peoria|city (generic term)|metropolis (generic term)|urban center (generic term)
+pep|1
+(noun)|peppiness|ginger|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+pep pill|1
+(noun)|amphetamine|upper|speed|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)|drug of abuse (generic term)|street drug (generic term)
+pep rally|1
+(noun)|rally (generic term)|mass meeting (generic term)
+pep talk|1
+(noun)|exhortation (generic term)|incitement (generic term)
+pep up|2
+(verb)|cheer|inspire|urge|barrack|urge on|exhort|encourage (generic term)
+(verb)|jazz up|juice up|ginger up|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+pepcid|1
+(noun)|famotidine|Pepcid|histamine blocker (generic term)
+peperomia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+peperomia argyreia|1
+(noun)|watermelon begonia|Peperomia argyreia|Peperomia sandersii|peperomia (generic term)
+peperomia sandersii|1
+(noun)|watermelon begonia|Peperomia argyreia|Peperomia sandersii|peperomia (generic term)
+pepin|1
+(noun)|Pepin|Pepin III|Pepin the Short|king (generic term)|male monarch (generic term)|Rex (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+pepin iii|1
+(noun)|Pepin|Pepin III|Pepin the Short|king (generic term)|male monarch (generic term)|Rex (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+pepin the short|1
+(noun)|Pepin|Pepin III|Pepin the Short|king (generic term)|male monarch (generic term)|Rex (generic term)|Carolingian (generic term)|Carlovingian (generic term)
+peplos|1
+(noun)|peplus|peplum|garment (generic term)
+peplum|2
+(noun)|frill (generic term)|flounce (generic term)|ruffle (generic term)|furbelow (generic term)
+(noun)|peplos|peplus|garment (generic term)
+peplus|1
+(noun)|peplos|peplum|garment (generic term)
+pepper|6
+(noun)|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+(noun)|capsicum|capsicum pepper plant|shrub (generic term)|bush (generic term)
+(noun)|peppercorn|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|solanaceous vegetable (generic term)
+(verb)|zest (generic term)|spice (generic term)|spice up (generic term)
+(verb)|pelt|attack (generic term)|assail (generic term)
+pepper-and-salt|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+pepper box|1
+(noun)|pepper shaker|pepper pot|shaker (generic term)
+pepper bush|1
+(noun)|sweet pepperbush|summer sweet|white alder|Clethra alnifolia|shrub (generic term)|bush (generic term)
+pepper family|1
+(noun)|Piperaceae|family Piperaceae|dicot family (generic term)|magnoliopsid family (generic term)
+pepper grass|1
+(noun)|common garden cress|garden pepper cress|pepperwort|Lepidium sativum|cress (generic term)|cress plant (generic term)
+pepper grinder|1
+(noun)|pepper mill|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+pepper mill|1
+(noun)|pepper grinder|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+pepper pot|2
+(noun)|Philadelphia pepper pot|soup (generic term)
+(noun)|pepper shaker|pepper box|shaker (generic term)
+pepper root|1
+(noun)|crinkleroot|crinkle-root|crinkle root|toothwort|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+pepper sauce|1
+(noun)|Poivrade|sauce (generic term)
+pepper shaker|1
+(noun)|pepper box|pepper pot|shaker (generic term)
+pepper shrub|1
+(noun)|Pseudowintera colorata|Wintera colorata|shrub (generic term)|bush (generic term)
+pepper spray|1
+(noun)|aerosol (generic term)|aerosol container (generic term)|aerosol can (generic term)|aerosol bomb (generic term)|spray can (generic term)|chemical weapon (generic term)
+pepper steak|2
+(noun)|steak au poivre|peppered steak|dish (generic term)
+(noun)|dish (generic term)
+pepper tree|2
+(noun)|molle|Peruvian mastic tree|Schinus molle|tree (generic term)
+(noun)|Kirkia wilmsii|tree (generic term)
+pepper vine|1
+(noun)|true pepper|vine (generic term)
+peppercorn|1
+(noun)|pepper|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+peppercorn rent|1
+(noun)|rent (generic term)
+peppered steak|1
+(noun)|steak au poivre|pepper steak|dish (generic term)
+pepperidge|1
+(noun)|sour gum|black gum|Nyssa sylvatica|tupelo (generic term)|tupelo tree (generic term)
+pepperiness|1
+(noun)|hotness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+peppermint|3
+(noun)|Mentha piperita|mint (generic term)
+(noun)|red gum|peppermint gum|Eucalyptus amygdalina|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|peppermint candy|mint (generic term)|mint candy (generic term)
+peppermint candy|1
+(noun)|peppermint|mint (generic term)|mint candy (generic term)
+peppermint gum|1
+(noun)|red gum|peppermint|Eucalyptus amygdalina|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+peppermint oil|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+peppermint patty|1
+(noun)|patty (generic term)
+pepperoni|1
+(noun)|sausage (generic term)
+pepperoni pizza|1
+(noun)|pizza (generic term)|pizza pie (generic term)
+pepperwood|1
+(noun)|California laurel|California bay tree|Oregon myrtle|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+pepperwort|2
+(noun)|clover fern|aquatic fern (generic term)|water fern (generic term)
+(noun)|common garden cress|garden pepper cress|pepper grass|Lepidium sativum|cress (generic term)|cress plant (generic term)
+peppery|1
+(adj)|tasty (similar term)
+peppiness|1
+(noun)|pep|ginger|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+peppy|1
+(adj)|bouncing|bouncy|spirited|zippy|lively (similar term)
+pepsi|1
+(noun)|Pepsi|Pepsi Cola|cola (generic term)|dope (generic term)
+pepsi cola|1
+(noun)|Pepsi|Pepsi Cola|cola (generic term)|dope (generic term)
+pepsin|1
+(noun)|enzyme (generic term)
+pepsinogen|1
+(noun)|enzyme (generic term)
+peptic|1
+(adj)|organic process|biological process (related term)
+peptic ulcer|1
+(noun)|peptic ulceration|ulcer (generic term)|ulceration (generic term)
+peptic ulceration|1
+(noun)|peptic ulcer|ulcer (generic term)|ulceration (generic term)
+peptidase|1
+(noun)|protease|proteinase|proteolytic enzyme|enzyme (generic term)
+peptide|1
+(noun)|amide (generic term)
+peptide bond|1
+(noun)|peptide linkage|chemical bond (generic term)|bond (generic term)
+peptide linkage|1
+(noun)|peptide bond|chemical bond (generic term)|bond (generic term)
+peptisation|1
+(noun)|peptization|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+peptise|1
+(verb)|peptize|separate (generic term)
+peptization|1
+(noun)|peptisation|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+peptize|1
+(verb)|peptise|separate (generic term)
+pepto-bismal|1
+(noun)|Pepto-bismal|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+peptone|1
+(noun)|organic compound (generic term)
+pepys|1
+(noun)|Pepys|Samuel Pepys|diarist (generic term)|diary keeper (generic term)|journalist (generic term)
+per annum|1
+(adv)|p.a.|per year|each year|annually
+per capita|2
+(adj)|proportionate (similar term)
+(adv)|for each person|of each person
+per capita income|1
+(noun)|income (generic term)
+per centum|1
+(noun)|percentage|percent|pct|proportion (generic term)
+per diem|2
+(noun)|allowance (generic term)
+(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|2
+(noun)|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(adv)|possibly|perchance|perhaps|maybe|mayhap
+perambulate|2
+(verb)|inspect (generic term)
+(verb)|walk about|walk around|walk (generic term)
+perambulating|1
+(adj)|mobile (similar term)
+perambulation|2
+(noun)|walk (generic term)
+(noun)|amble|promenade|saunter|stroll|walk (generic term)
+perambulator|1
+(noun)|baby buggy|baby carriage|carriage|pram|stroller|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+peramelidae|1
+(noun)|Peramelidae|family Peramelidae|mammal family (generic term)
+perboric acid|1
+(noun)|boric acid (generic term)|boracic acid (generic term)
+perca|1
+(noun)|Perca|genus Perca|fish genus (generic term)
+perca flavescens|1
+(noun)|yellow perch|Perca flavescens|perch (generic term)
+perca fluviatilis|1
+(noun)|European perch|Perca fluviatilis|perch (generic term)
+percale|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+perceivable|2
+(adj)|perceptible (similar term)
+(adj)|apprehensible|intelligible|graspable|understandable|comprehensible (similar term)|comprehendible (similar term)
+perceive|2
+(verb)|comprehend
+(verb)|understand (generic term)|realize (generic term)|realise (generic term)|see (generic term)
+perceived|2
+(adj)|sensed|detected (similar term)
+(adj)|detected (similar term)
+perceiver|1
+(noun)|percipient|observer|beholder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+percent|1
+(noun)|percentage|per centum|pct|proportion (generic term)
+percent sign|1
+(noun)|percentage sign|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+percentage|2
+(noun)|percent|per centum|pct|proportion (generic term)
+(noun)|share|portion|part|assets (generic term)
+percentage point|1
+(noun)|decimal point|mathematical notation (generic term)
+percentage sign|1
+(noun)|percent sign|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+percentile|1
+(noun)|centile|mark (generic term)|grade (generic term)|score (generic term)
+percept|1
+(noun)|perception|perceptual experience|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+perceptibility|1
+(noun)|physical property (generic term)|imperceptibility (antonym)
+perceptible|3
+(adj)|detectable (similar term)|noticeable (similar term)|discernible (similar term)|faint (similar term)|weak (similar term)|palpable (similar term)|perceivable (similar term)|recognizable (similar term)|sensible (similar term)|audible (related term)|hearable (related term)|visible (related term)|seeable (related term)|imperceptible (antonym)
+(adj)|palpable (similar term)|tangible (similar term)
+(adj)|detectable|noticeable (similar term)
+perceptibly|1
+(adv)|noticeably|observably|imperceptibly (antonym)
+perception|5
+(noun)|percept|perceptual experience|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|conceptualization (generic term)|conceptualisation (generic term)|conceptuality (generic term)
+(noun)|basic cognitive process (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|sensing|sensory activity (generic term)
+perceptive|2
+(adj)|sensory activity (related term)
+(adj)|acute (similar term)|discriminating (similar term)|incisive (similar term)|keen (similar term)|knifelike (similar term)|penetrating (similar term)|penetrative (similar term)|piercing (similar term)|sharp (similar term)|apprehensive (similar term)|discerning (similar term)|apperceptive (similar term)|insightful (similar term)|observant (similar term)|observing (similar term)|quick-sighted (similar term)|sharp-sighted (similar term)|sharp-eyed (similar term)|subtle (similar term)|understanding (similar term)|unperceptive (antonym)
+perceptiveness|4
+(noun)|insight|perceptivity|sensibility (generic term)
+(noun)|taste|appreciation|discernment|discrimination (generic term)|secernment (generic term)
+(noun)|discernment|perception (generic term)
+(noun)|sensitivity (generic term)|sensitiveness (generic term)|unperceptiveness (antonym)
+perceptivity|1
+(noun)|insight|perceptiveness|sensibility (generic term)
+perceptual|1
+(adj)|sensory activity (related term)
+perceptual constancy|1
+(noun)|constancy|perception (generic term)
+perceptual experience|1
+(noun)|percept|perception|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+perch|9
+(noun)|support (generic term)
+(noun)|rod|pole|linear unit (generic term)
+(noun)|rod|pole|area unit (generic term)|square measure (generic term)
+(noun)|seat (generic term)|place (generic term)
+(noun)|freshwater fish (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(verb)|roost|rest|sit (generic term)|sit down (generic term)
+(verb)|alight|light|land (generic term)|set down (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+perch-like|1
+(adj)|animal (similar term)
+perchance|2
+(adv)|by chance
+(adv)|possibly|perhaps|maybe|mayhap|peradventure
+percher|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Insessores|order Insessores|perching bird|animal order (generic term)
+percheron|1
+(noun)|Percheron|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+perching bird|1
+(noun)|Insessores|order Insessores|percher|animal order (generic term)
+perchlorate|1
+(noun)|salt (generic term)
+perchloric acid|1
+(noun)|acid (generic term)
+perchloride|1
+(noun)|chloride (generic term)
+perchloromethane|1
+(noun)|carbon tetrachloride|carbon tet|tetrachloromethane|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)|tetrachloride (generic term)
+percidae|1
+(noun)|Percidae|family Percidae|fish family (generic term)
+perciformes|1
+(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order (generic term)
+percina|1
+(noun)|Percina|genus Percina|fish genus (generic term)
+percina tanasi|1
+(noun)|snail darter|Percina tanasi|perch (generic term)
+percipient|2
+(adj)|clear|discerning (similar term)
+(noun)|perceiver|observer|beholder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+percival lowell|1
+(noun)|Lowell|Percival Lowell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+percoid|1
+(noun)|percoid fish|percoidean|spiny-finned fish (generic term)|acanthopterygian (generic term)
+percoid fish|1
+(noun)|percoid|percoidean|spiny-finned fish (generic term)|acanthopterygian (generic term)
+percoidea|1
+(noun)|Percoidea|suborder Percoidea|animal order (generic term)
+percoidean|1
+(noun)|percoid fish|percoid|spiny-finned fish (generic term)|acanthopterygian (generic term)
+percolate|6
+(noun)|filtrate (generic term)
+(verb)|leach|trickle (generic term)|dribble (generic term)|filter (generic term)
+(verb)|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|percolate (generic term)
+(verb)|sink in|permeate|filter|penetrate (generic term)|perforate (generic term)
+(verb)|perk up|perk|pick up|gain vigor|recuperate (generic term)|recover (generic term)|convalesce (generic term)
+percolation|3
+(noun)|infiltration|filtration (generic term)
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+(noun)|filtration (generic term)
+percolator|1
+(noun)|coffeepot (generic term)
+percomorphi|1
+(noun)|Perciformes|order Perciformes|Percomorphi|order Percomorphi|animal order (generic term)
+percophidae|1
+(noun)|Percophidae|family Percophidae|fish family (generic term)
+percuss|1
+(verb)|tap (generic term)|tip (generic term)
+percussion|4
+(noun)|music (generic term)
+(noun)|detonation (generic term)
+(noun)|percussion section|rhythm section|section (generic term)
+(noun)|pleximetry|auscultation (generic term)
+percussion cap|1
+(noun)|detonator (generic term)|detonating device (generic term)|cap (generic term)
+percussion instrument|1
+(noun)|percussive instrument|musical instrument (generic term)|instrument (generic term)
+percussion section|1
+(noun)|percussion|rhythm section|section (generic term)
+percussionist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+percussive|1
+(adj)|music (related term)
+percussive instrument|1
+(noun)|percussion instrument|musical instrument (generic term)|instrument (generic term)
+percussor|1
+(noun)|plexor|plessor|hammer (generic term)
+percutaneous|1
+(adj)|transdermal|transdermic|transcutaneous|connective tissue|body covering (related term)|stratum (related term)
+percy|2
+(noun)|Percy|Walker Percy|writer (generic term)|author (generic term)
+(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier (generic term)
+percy aldridge grainger|1
+(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer (generic term)
+percy bysshe shelley|1
+(noun)|Shelley|Percy Bysshe Shelley|poet (generic term)
+percy grainger|1
+(noun)|Grainger|Percy Grainger|Percy Aldridge Grainger|George Percy Aldridge Grainger|composer (generic term)
+perdicidae|1
+(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family (generic term)
+perdicinae|1
+(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family (generic term)
+perdition|1
+(noun)|Hell|Inferno|infernal region|nether region|pit|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+perdix|1
+(noun)|Perdix|genus Perdix|bird genus (generic term)
+perdix perdix|1
+(noun)|Hungarian partridge|grey partridge|gray partridge|Perdix perdix|partridge (generic term)
+perdurability|1
+(noun)|permanence (generic term)|permanency (generic term)
+perdurable|1
+(adj)|durable|indestructible|undestroyable|imperishable (similar term)
+pere david's deer|1
+(noun)|elaphure|Elaphurus davidianus|deer (generic term)|cervid (generic term)
+pere jacques marquette|1
+(noun)|Marquette|Jacques Marquette|Pere Jacques Marquette|missionary (generic term)|missioner (generic term)
+peregrinate|1
+(verb)|travel (generic term)|trip (generic term)|jaunt (generic term)
+peregrination|1
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+peregrine|2
+(adj)|mobile|nomadic|roving|wandering|unsettled (similar term)
+(noun)|peregrine falcon|Falco peregrinus|falcon (generic term)
+peregrine falcon|1
+(noun)|peregrine|Falco peregrinus|falcon (generic term)
+perejil|1
+(noun)|Perejil|isle (generic term)|islet (generic term)
+peremptorily|1
+(adv)|imperatively
+peremptory|3
+(adj)|autocratic|bossy|dominating|high-and-mighty|magisterial|domineering (similar term)
+(adj)|imperative (similar term)
+(adj)|decisive (similar term)
+perennate|1
+(verb)|survive (generic term)|last (generic term)|live (generic term)|live on (generic term)|go (generic term)|endure (generic term)|hold up (generic term)|hold out (generic term)
+perennation|1
+(noun)|organic process (generic term)|biological process (generic term)
+perennial|4
+(adj)|annual (antonym)|biennial (antonym)
+(adj)|long (similar term)
+(adj)|recurrent|repeated|continual (similar term)
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+perennial pea|1
+(noun)|broad-leaved everlasting pea|Lathyrus latifolius|everlasting pea (generic term)
+perennial ragweed|1
+(noun)|western ragweed|Ambrosia psilostachya|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+perennial ryegrass|1
+(noun)|English ryegrass|Lolium perenne|rye grass (generic term)|ryegrass (generic term)
+perennial salt marsh aster|1
+(noun)|aster (generic term)
+pereskia|1
+(noun)|Pereskia|genus Pereskia|Peireskia|genus Peireskia|caryophylloid dicot genus (generic term)
+pereskia aculeata|1
+(noun)|Barbados gooseberry|Barbados-gooseberry vine|Pereskia aculeata|vine (generic term)
+perestroika|1
+(noun)|economic policy (generic term)
+perfect|5
+(adj)|clean (similar term)|clear (similar term)|cold (similar term)|complete (similar term)|consummate (similar term)|down (similar term)|down pat (similar term)|mastered (similar term)|errorless (similar term)|faultless (similar term)|immaculate (similar term)|impeccable (similar term)|flawless (similar term)|unflawed (similar term)|ideal (similar term)|idealized (similar term)|idealised (similar term)|idyllic (similar term)|mint (similar term)|perfectible (similar term)|pluperfect (similar term)|uncorrupted (similar term)|undefiled (similar term)|exact (related term)|unblemished (related term)|unbroken (related term)|utopian (related term)|imperfect (antonym)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|pure|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adj)|exact (similar term)
+(noun)|perfective|perfective tense|perfect tense|tense (generic term)
+(verb)|hone|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+perfect game|1
+(noun)|baseball (generic term)|baseball game (generic term)
+perfect gas|1
+(noun)|ideal gas|gas (generic term)
+perfect participle|1
+(noun)|past participle|participle (generic term)|participial (generic term)
+perfect pitch|1
+(noun)|absolute pitch|hearing (generic term)|audition (generic term)|auditory sense (generic term)|sense of hearing (generic term)|auditory modality (generic term)
+perfect tense|1
+(noun)|perfective|perfective tense|perfect|tense (generic term)
+perfecta|1
+(noun)|exacta|bet (generic term)|wager (generic term)
+perfected|1
+(adj)|formed (similar term)
+perfecter|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+perfectibility|1
+(noun)|capability (generic term)|capableness (generic term)|potentiality (generic term)|imperfectibility (antonym)
+perfectible|1
+(adj)|perfect (similar term)
+perfection|3
+(noun)|flawlessness|ne plus ultra|state (generic term)|imperfection (antonym)
+(noun)|paragon|idol|beau ideal|ideal (generic term)
+(noun)|improvement (generic term)
+perfectionism|1
+(noun)|disposition (generic term)|temperament (generic term)
+perfectionist|1
+(noun)|compulsive (generic term)
+perfective|2
+(noun)|perfective tense|perfect|perfect tense|tense (generic term)
+(noun)|perfective aspect|aspect (generic term)
+perfective aspect|1
+(noun)|perfective|aspect (generic term)
+perfective tense|1
+(noun)|perfective|perfect|perfect tense|tense (generic term)
+perfectly|2
+(adv)|absolutely|utterly|dead
+(adv)|imperfectly (antonym)
+perfervid|1
+(adj)|ardent|burning|fervent|fervid|fiery|impassioned|torrid|passionate (similar term)
+perfidious|1
+(adj)|punic|treacherous|unfaithful (similar term)
+perfidiousness|1
+(noun)|perfidy|treachery|disloyalty (generic term)
+perfidy|2
+(noun)|perfidiousness|treachery|disloyalty (generic term)
+(noun)|treachery|betrayal|treason|dishonesty (generic term)|knavery (generic term)
+perfluorocarbon|1
+(noun)|PFC|fluorocarbon (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+perfoliate|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+perfoliate leaf|1
+(noun)|simple leaf (generic term)
+perforate|3
+(adj)|pierced|perforated|punctured|cut (similar term)
+(verb)|punch|pierce (generic term)
+(verb)|penetrate|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+perforated|2
+(adj)|pierced|perforate|punctured|cut (similar term)
+(adj)|cut (similar term)
+perforated eardrum|1
+(noun)|eardrum (generic term)|tympanum (generic term)|tympanic membrane (generic term)|myringa (generic term)
+perforating vein|1
+(noun)|vena perforantis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+perforation|2
+(noun)|hole (generic term)
+(noun)|puncture (generic term)
+perform|4
+(verb)|execute|do
+(verb)|act (generic term)|move (generic term)
+(verb)|re-create (generic term)
+(verb)|do|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+performance|5
+(noun)|public presentation|show (generic term)
+(noun)|execution|carrying out|carrying into action|action (generic term)
+(noun)|presentation (generic term)|presentment (generic term)|demonstration (generic term)
+(noun)|operation|functioning|process (generic term)|physical process (generic term)
+(noun)|accomplishment (generic term)|achievement (generic term)
+performance bond|1
+(noun)|surety bond|bond (generic term)|bond certificate (generic term)
+performance capability|1
+(noun)|operating capability|capability (generic term)|capableness (generic term)
+performer|1
+(noun)|performing artist|entertainer (generic term)
+performing|1
+(noun)|acting|playing|playacting|activity (generic term)|performing arts (generic term)
+performing artist|1
+(noun)|performer|entertainer (generic term)
+performing arts|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+perfume|4
+(noun)|essence|toiletry (generic term)|toilet article (generic term)
+(noun)|aroma|fragrance|scent|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(verb)|aromatize|aromatise|odorize (generic term)|odourise (generic term)|scent (generic term)
+(verb)|scent|groom (generic term)|neaten (generic term)
+perfumed|2
+(adj)|scented|fragrant (similar term)
+(adj)|odoriferous|odorous|scented|sweet|sweet-scented|sweet-smelling|fragrant (similar term)
+perfumer|1
+(noun)|maker (generic term)|shaper (generic term)
+perfumery|4
+(noun)|perfume (generic term)|essence (generic term)
+(noun)|shop (generic term)|store (generic term)
+(noun)|establishment (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+perfunctorily|1
+(adv)|as a formality|pro forma
+perfunctory|2
+(adj)|casual|cursory|passing|careless (similar term)
+(adj)|pro forma|formal (similar term)
+perfuse|2
+(verb)|flush (generic term)
+(verb)|suffuse|flush (generic term)
+perfusion|1
+(noun)|insertion (generic term)|introduction (generic term)|intromission (generic term)
+pergamum|1
+(noun)|Pergamum|city (generic term)|metropolis (generic term)|urban center (generic term)
+pergola|1
+(noun)|arbor|arbour|bower|framework (generic term)|frame (generic term)|framing (generic term)
+perhaps|1
+(adv)|possibly|perchance|maybe|mayhap|peradventure
+peri|2
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+periactin|1
+(noun)|cyproheptadine|Periactin|antihistamine (generic term)
+perianal|1
+(adj)|orifice|opening|porta (related term)
+perianth|1
+(noun)|chlamys|floral envelope|perigone|perigonium|plant organ (generic term)|covering (generic term)|natural covering (generic term)|cover (generic term)
+periapsis|1
+(noun)|point of periapsis|celestial point (generic term)|point of apoapsis (antonym)|apoapsis (antonym)
+periarterial plexus|1
+(noun)|plexus periarterialis|nerve plexus (generic term)
+periarteritis|1
+(noun)|arteritis (generic term)
+periarteritis nodosa|1
+(noun)|polyarteritis nodosa|disease (generic term)
+pericallis|1
+(noun)|Pericallis|genus Pericallis|asterid dicot genus (generic term)
+pericallis cruenta|1
+(noun)|cineraria|Pericallis cruenta|Senecio cruentus|flower (generic term)
+pericallis hybrida|1
+(noun)|florest's cineraria|Pericallis hybrida|flower (generic term)
+pericardiac|1
+(adj)|pericardial|serous membrane|serosa (related term)
+pericardial|1
+(adj)|pericardiac|serous membrane|serosa (related term)
+pericardial cavity|1
+(noun)|pericardial space|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pericardial sac|1
+(noun)|sac (generic term)
+pericardial space|1
+(noun)|pericardial cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pericardial vein|1
+(noun)|vena pericardiaca|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pericarditis|1
+(noun)|carditis (generic term)
+pericardium|1
+(noun)|serous membrane (generic term)|serosa (generic term)
+pericarp|1
+(noun)|seed vessel|covering (generic term)|natural covering (generic term)|cover (generic term)
+pericementoclasia|1
+(noun)|pyorrhea (generic term)|pyorrhoea (generic term)|pyorrhea alveolaris (generic term)|Riggs' disease (generic term)
+periclase|1
+(noun)|magnesia|magnesium oxide|mineral (generic term)
+pericles|1
+(noun)|Pericles|statesman (generic term)|solon (generic term)|national leader (generic term)
+peridinian|1
+(noun)|dinoflagellate (generic term)
+peridiniidae|1
+(noun)|Peridiniidae|family Peridiniidae|protoctist family (generic term)
+peridinium|1
+(noun)|Peridinium|genus Peridinium|protoctist genus (generic term)
+peridium|1
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+peridot|1
+(noun)|transparent gem (generic term)|chrysolite (generic term)
+peridotite|1
+(noun)|igneous rock (generic term)
+perigee|1
+(noun)|periapsis (generic term)|point of periapsis (generic term)|apogee (antonym)
+perigon|1
+(noun)|round angle|angle (generic term)
+perigonal|1
+(adj)|plant organ|covering|natural covering|cover (related term)
+perigone|1
+(noun)|perianth|chlamys|floral envelope|perigonium|plant organ (generic term)|covering (generic term)|natural covering (generic term)|cover (generic term)
+perigonium|1
+(noun)|perianth|chlamys|floral envelope|perigone|plant organ (generic term)|covering (generic term)|natural covering (generic term)|cover (generic term)
+perihelion|1
+(noun)|periapsis (generic term)|point of periapsis (generic term)|aphelion (antonym)
+perijove|1
+(noun)|periapsis (generic term)|point of periapsis (generic term)|apojove (antonym)
+peril|5
+(noun)|hazard|jeopardy|risk|endangerment|danger (generic term)
+(noun)|riskiness|danger (generic term)
+(noun)|risk|danger|venture (generic term)
+(verb)|endanger|jeopardize|jeopardise|menace|threaten|imperil|exist (generic term)|be (generic term)
+(verb)|queer|expose|scupper|endanger|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+perilla|1
+(noun)|Perilla|genus Perilla|asterid dicot genus (generic term)
+perilla frutescens crispa|1
+(noun)|beefsteak plant|Perilla frutescens crispa|herb (generic term)|herbaceous plant (generic term)
+perilous|1
+(adj)|parlous|precarious|touch-and-go|dangerous (similar term)|unsafe (similar term)
+perilously|1
+(adv)|hazardously|dangerously
+perilousness|1
+(noun)|hazardousness|danger (generic term)
+perilune|1
+(noun)|periselene|periapsis (generic term)|point of periapsis (generic term)|apolune (antonym)|aposelene (antonym)
+perilymph|1
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+perimeter|3
+(noun)|margin|border|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|line (generic term)
+(noun)|circumference|size (generic term)
+perimysium|1
+(noun)|connective tissue (generic term)
+perinasal|1
+(adj)|perirhinal|chemoreceptor (related term)
+perinatal|1
+(adj)|postnatal (antonym)|prenatal (antonym)
+perinatologist|1
+(noun)|obstetrician (generic term)|accoucheur (generic term)
+perinatology|1
+(noun)|obstetrics (generic term)|OB (generic term)|tocology (generic term)|midwifery (generic term)
+perineal|1
+(adj)|area|region (related term)
+perineal artery|1
+(noun)|arteria perinealis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+perineotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+perineum|1
+(noun)|area (generic term)|region (generic term)
+perineurium|1
+(noun)|connective tissue (generic term)
+period|8
+(noun)|time period|period of time|fundamental quantity (generic term)|fundamental measure (generic term)
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|historic period|historical period|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time interval (generic term)|interval (generic term)
+(noun)|menstruation|menses|menstruum|catamenia|flow|discharge (generic term)|emission (generic term)|expelling (generic term)
+(noun)|point|full stop|stop|full point|punctuation (generic term)|punctuation mark (generic term)
+(noun)|geological period|geological time (generic term)|geologic time (generic term)
+(noun)|end (generic term)|ending (generic term)
+period of play|1
+(noun)|playing period|play|measure (generic term)|quantity (generic term)|amount (generic term)
+period of time|1
+(noun)|time period|period|fundamental quantity (generic term)|fundamental measure (generic term)
+period piece|1
+(noun)|work of art (generic term)
+periodic|3
+(adj)|periodical|cyclic (similar term)|intermittent (similar term)|oscillatory (similar term)|oscillating (similar term)|pulsed (similar term)|aperiodic (antonym)
+(adj)|rhythmical (similar term)|rhythmic (similar term)
+(adj)|sporadic (similar term)
+periodic acid|1
+(noun)|oxyacid (generic term)|oxygen acid (generic term)
+periodic apnea of the newborn|1
+(noun)|apnea (generic term)
+periodic breathing|1
+(noun)|Cheyne-Stokes respiration|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+periodic event|1
+(noun)|recurrent event|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+periodic law|1
+(noun)|Mendeleev's law|law (generic term)|law of nature (generic term)
+periodic motion|1
+(noun)|periodic movement|movement (generic term)|motion (generic term)
+periodic movement|1
+(noun)|periodic motion|movement (generic term)|motion (generic term)
+periodic sentence|1
+(noun)|complex sentence (generic term)
+periodic table|1
+(noun)|table (generic term)|tabular array (generic term)
+periodical|2
+(adj)|periodic|cyclic (similar term)|intermittent (similar term)|oscillatory (similar term)|oscillating (similar term)|pulsed (similar term)|aperiodic (antonym)
+(noun)|publication (generic term)
+periodical cicada|1
+(noun)|seventeen-year locust|Magicicada septendecim|cicada (generic term)|cicala (generic term)
+periodically|1
+(adv)|sporadically
+periodicity|1
+(noun)|cyclicity|regularity (generic term)
+periodontal|1
+(adj)|periodontic|dentistry|dental medicine|odontology (related term)
+periodontal disease|1
+(noun)|periodontitis|disease (generic term)
+periodontia|1
+(noun)|periodontics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+periodontic|1
+(adj)|periodontal|dentistry|dental medicine|odontology (related term)
+periodontics|1
+(noun)|periodontia|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+periodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+periodontitis|1
+(noun)|periodontal disease|disease (generic term)
+periophthalmus|1
+(noun)|Periophthalmus|genus Periophthalmus|fish genus (generic term)
+periosteum|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+peripatetic|4
+(adj)|Aristotelian|Aristotelean|Aristotelic|philosopher (related term)
+(adj)|wayfaring|unsettled (similar term)
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|Aristotelian|Aristotelean|Peripatetic|disciple (generic term)|adherent (generic term)
+peripatidae|1
+(noun)|Peripatidae|family Peripatidae|arthropod family (generic term)
+peripatopsidae|1
+(noun)|Peripatopsidae|family Peripatopsidae|arthropod family (generic term)
+peripatopsis|1
+(noun)|Peripatopsis|genus Peripatopsis|arthropod genus (generic term)
+peripatus|1
+(noun)|onychophoran|velvet worm|arthropod (generic term)
+peripeteia|1
+(noun)|peripetia|peripety|surprise (generic term)
+peripetia|1
+(noun)|peripeteia|peripety|surprise (generic term)
+peripety|1
+(noun)|peripeteia|peripetia|surprise (generic term)
+peripheral|3
+(adj)|circumferential (similar term)|fringy (similar term)|marginal (similar term)|encircling (similar term)|skirting (similar term)|off-base (similar term)|central (antonym)
+(adj)|incidental (similar term)|incident (similar term)
+(noun)|computer peripheral|peripheral device|electronic equipment (generic term)
+peripheral device|1
+(noun)|peripheral|computer peripheral|electronic equipment (generic term)
+peripheral nervous system|1
+(noun)|systema nervosum periphericum|system (generic term)
+peripheral vision|1
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+peripherally|1
+(adv)|centrally (antonym)
+periphery|1
+(noun)|fringe|outer boundary|boundary (generic term)|edge (generic term)|bound (generic term)
+periphrasis|1
+(noun)|circumlocution|ambage|verboseness (generic term)|verbosity (generic term)
+periphrastic|1
+(adj)|circumlocutious|circumlocutory|ambagious|indirect (similar term)
+periplaneta|1
+(noun)|Periplaneta|genus Periplaneta|arthropod genus (generic term)
+periplaneta americana|1
+(noun)|American cockroach|Periplaneta americana|cockroach (generic term)|roach (generic term)
+periplaneta australasiae|1
+(noun)|Australian cockroach|Periplaneta australasiae|cockroach (generic term)|roach (generic term)
+periploca|1
+(noun)|Periploca|genus Periploca|dicot genus (generic term)|magnoliopsid genus (generic term)
+periploca graeca|1
+(noun)|silk vine|Periploca graeca|vine (generic term)
+peripteral|1
+(adj)|monopteral (similar term)|peristylar (similar term)|pseudoperipteral (similar term)|apteral (antonym)
+perirhinal|1
+(adj)|perinasal|chemoreceptor (related term)
+periscope|1
+(noun)|optical instrument (generic term)
+periselene|1
+(noun)|perilune|periapsis (generic term)|point of periapsis (generic term)|apolune (antonym)|aposelene (antonym)
+perish|1
+(verb)|die|decease|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+perishability|1
+(noun)|perishableness|unsatisfactoriness (generic term)
+perishable|2
+(adj)|biodegradable (similar term)|decayable (similar term)|putrescible (similar term)|putrefiable (similar term)|spoilable (similar term)|destructible (related term)|imperishable (antonym)
+(noun)|spoilable|foodstuff (generic term)|food product (generic term)
+perishableness|1
+(noun)|perishability|unsatisfactoriness (generic term)
+perisher|1
+(noun)|cad (generic term)|bounder (generic term)|blackguard (generic term)|dog (generic term)|hound (generic term)|heel (generic term)
+perisoreus|1
+(noun)|Perisoreus|genus Perisoreus|bird genus (generic term)
+perisoreus canadensis|1
+(noun)|Canada jay|grey jay|gray jay|camp robber|whisker jack|Perisoreus canadensis|jay (generic term)
+perisoreus canadensis capitalis|1
+(noun)|Rocky Mountain jay|Perisoreus canadensis capitalis|Canada jay (generic term)|grey jay (generic term)|gray jay (generic term)|camp robber (generic term)|whisker jack (generic term)|Perisoreus canadensis (generic term)
+perisperm|1
+(noun)|plant tissue (generic term)
+perissodactyl|1
+(noun)|odd-toed ungulate|perissodactyl mammal|ungulate (generic term)|hoofed mammal (generic term)|even-toed ungulate (antonym)
+perissodactyl mammal|1
+(noun)|odd-toed ungulate|perissodactyl|ungulate (generic term)|hoofed mammal (generic term)|even-toed ungulate (antonym)
+perissodactyla|1
+(noun)|Perissodactyla|order Perissodactyla|animal order (generic term)
+peristalsis|1
+(noun)|vermiculation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)|anastalsis (antonym)
+peristediinae|1
+(noun)|Peristediinae|subfamily Peristediinae|fish family (generic term)
+peristedion|1
+(noun)|Peristedion|genus Peristedion|fish genus (generic term)
+peristedion miniatum|1
+(noun)|armored searobin|armored sea robin|Peristedion miniatum|sea robin (generic term)|searobin (generic term)
+peristome|2
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+peristylar|1
+(adj)|pseudoperipteral|peripteral (similar term)
+peristyle|1
+(noun)|colonnade (generic term)
+perithecium|1
+(noun)|ascocarp (generic term)
+perithelial|1
+(adj)|membrane|tissue layer (related term)
+perithelium|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+peritoneal|1
+(adj)|serous membrane|serosa (related term)
+peritoneal cavity|1
+(noun)|greater peritoneal sac|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+peritoneal inflammation|1
+(noun)|peritonitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+peritoneum|1
+(noun)|serous membrane (generic term)|serosa (generic term)
+peritonitis|1
+(noun)|peritoneal inflammation|inflammation (generic term)|redness (generic term)|rubor (generic term)
+peritonsillar abscess|1
+(noun)|quinsy|angina (generic term)
+peritrate|1
+(noun)|pentaerythritol|Peritrate|vasodilator (generic term)|vasodilative (generic term)
+peritrichous|1
+(adj)|covered (similar term)
+periwig|1
+(noun)|peruke|wig (generic term)
+periwigged|1
+(adj)|peruked|wigged (similar term)
+periwinkle|4
+(noun)|subshrub (generic term)|suffrutex (generic term)
+(noun)|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+(noun)|winkle|seafood (generic term)
+(noun)|winkle|seasnail (generic term)
+periwinkle plant derivative|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+perjure|1
+(verb)|lie (generic term)
+perjurer|1
+(noun)|false witness|liar (generic term)|prevaricator (generic term)
+perjury|1
+(noun)|bearing false witness|lying under oath|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+perk|2
+(noun)|fringe benefit|perquisite|benefit (generic term)
+(verb)|perk up|percolate|pick up|gain vigor|recuperate (generic term)|recover (generic term)|convalesce (generic term)
+perk up|2
+(verb)|perk|percolate|pick up|gain vigor|recuperate (generic term)|recover (generic term)|convalesce (generic term)
+(verb)|stimulate|arouse|brace|energize|energise|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+perked up|1
+(adj)|enlivened (similar term)
+perkily|1
+(adv)|saucily
+perkiness|2
+(noun)|buoyancy|cheerfulness (generic term)|blitheness (generic term)
+(noun)|impertinence|pertness|sauciness|archness|playfulness (generic term)|fun (generic term)
+perky|1
+(adj)|buoyant|chirpy|cheerful (similar term)
+perleche|1
+(noun)|cheilosis|disorder (generic term)|upset (generic term)
+perm|3
+(noun)|Perm|Molotov|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|permanent wave|permanent|wave (generic term)
+(verb)|wave (generic term)
+permafrost|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+permalloy|1
+(noun)|Permalloy|nickel-base alloy (generic term)|nickel alloy (generic term)
+permanence|1
+(noun)|permanency|duration (generic term)|length (generic term)|impermanence (antonym)
+permanency|1
+(noun)|permanence|duration (generic term)|length (generic term)|impermanence (antonym)
+permanent|3
+(adj)|lasting|abiding (similar term)|enduring (similar term)|imperishable (similar term)|ageless (similar term)|aeonian (similar term)|eonian (similar term)|eternal (similar term)|everlasting (similar term)|perpetual (similar term)|unending (similar term)|unceasing (similar term)|indissoluble (similar term)|standing (similar term)|ineradicable (related term)|stable (related term)|unchangeable (related term)|impermanent (antonym)
+(adj)|irreversible (similar term)
+(noun)|permanent wave|perm|wave (generic term)
+permanent-press|1
+(adj)|drip-dry|unironed (similar term)|wrinkled (similar term)
+permanent-press fabric|1
+(noun)|permanent press|durable press|durable-press fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+permanent injunction|1
+(noun)|final injunction|injunction (generic term)|enjoining (generic term)|enjoinment (generic term)|cease and desist order (generic term)
+permanent magnet|1
+(noun)|static magnet|magnet (generic term)
+permanent press|1
+(noun)|permanent-press fabric|durable press|durable-press fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+permanent tooth|1
+(noun)|adult tooth|tooth (generic term)
+permanent wave|1
+(noun)|permanent|perm|wave (generic term)
+permanently|1
+(adv)|for good|temporarily (antonym)
+permanganate|1
+(noun)|salt (generic term)
+permanganate of potash|1
+(noun)|potassium permanganate|permanganate (generic term)
+permanganic acid|1
+(noun)|acid (generic term)
+permeability|1
+(noun)|permeableness|porosity (generic term)|porousness (generic term)|impermeability (antonym)
+permeable|1
+(adj)|porous (similar term)|semipermeable (similar term)|leaky (related term)|pervious (related term)|impermeable (antonym)
+permeableness|1
+(noun)|permeability|porosity (generic term)|porousness (generic term)|impermeability (antonym)
+permeant|1
+(adj)|permeating|permeative|pervasive|distributive (similar term)
+permeate|3
+(verb)|pervade|penetrate|interpenetrate|diffuse|imbue|riddle|penetrate (generic term)|perforate (generic term)
+(verb)|percolate|sink in|filter|penetrate (generic term)|perforate (generic term)
+(verb)|interpenetrate|penetrate (generic term)|perforate (generic term)
+permeating|1
+(adj)|permeant|permeative|pervasive|distributive (similar term)
+permeation|2
+(noun)|pervasion|suffusion|diffusion (generic term)
+(noun)|interpenetration|penetration (generic term)
+permeative|1
+(adj)|permeant|permeating|pervasive|distributive (similar term)
+permed|1
+(adj)|curly (similar term)
+permian|1
+(noun)|Permian|Permian period|period (generic term)|geological period (generic term)
+permian period|1
+(noun)|Permian|Permian period|period (generic term)|geological period (generic term)
+permic|1
+(noun)|Permic|Fennic (generic term)|Finnic (generic term)|Non-Ugric (generic term)
+permissibility|1
+(noun)|admissibility (generic term)|impermissibility (antonym)
+permissible|2
+(adj)|allowable|tolerable (related term)|impermissible (antonym)
+(adj)|admissible (similar term)
+permissibly|1
+(adv)|allowably|impermissibly (antonym)
+permission|2
+(noun)|approval (generic term)|commendation (generic term)
+(noun)|license|permit|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+permissive|2
+(adj)|bailable (similar term)|preventive (antonym)
+(adj)|indulgent (similar term)|lenient (similar term)|soft (similar term)|unpermissive (antonym)
+permissive waste|1
+(noun)|waste|act (generic term)|human action (generic term)|human activity (generic term)
+permissiveness|1
+(noun)|tolerance|disposition (generic term)|temperament (generic term)|unpermissiveness (antonym)
+permit|6
+(noun)|license|licence|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|license|permission|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+(noun)|Trachinotus falcatus|pompano (generic term)
+(verb)|allow|let|countenance|accept (generic term)|consent (generic term)|go for (generic term)|disallow (antonym)|forbid (antonym)
+(verb)|let|allow|prevent (antonym)
+(verb)|allow|tolerate|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+permutability|1
+(noun)|permutableness|transposability|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+permutable|1
+(adj)|transposable|exchangeable (similar term)
+permutableness|1
+(noun)|permutability|transposability|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+permutation|4
+(noun)|substitution|transposition|replacement|switch|variation (generic term)|fluctuation (generic term)
+(noun)|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|transformation (generic term)|translation (generic term)
+(noun)|reordering (generic term)
+permute|1
+(verb)|commute|transpose|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+pernambuco|1
+(noun)|Recife|Pernambuco|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+pernambuco wood|1
+(noun)|brazilwood|peachwood|peach-wood|Caesalpinia echinata|tree (generic term)
+pernicious|2
+(adj)|baneful|deadly|pestilent|noxious (similar term)|harmful (similar term)
+(adj)|insidious|subtle|harmful (similar term)
+pernicious anaemia|1
+(noun)|pernicious anemia|malignant anemia|malignant anaemia|anemia (generic term)|anaemia (generic term)
+pernicious anemia|1
+(noun)|pernicious anaemia|malignant anemia|malignant anaemia|anemia (generic term)|anaemia (generic term)
+perniciously|2
+(adv)|insidiously
+(adv)|banefully
+perniciousness|1
+(noun)|toxicity|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+pernickety|1
+(adj)|persnickety|fastidious (similar term)
+pernio|1
+(noun)|chilblain|chilblains|blain (generic term)
+pernis|1
+(noun)|Pernis|genus Pernis|bird genus (generic term)
+pernis apivorus|1
+(noun)|honey buzzard|Pernis apivorus|hawk (generic term)
+pernod|1
+(noun)|Pernod|liqueur (generic term)|cordial (generic term)
+pernyi moth|1
+(noun)|Antheraea pernyi|saturniid (generic term)|saturniid moth (generic term)
+perodicticus|1
+(noun)|Perodicticus|genus Perodicticus|mammal genus (generic term)
+perodicticus potto|1
+(noun)|potto|kinkajou|Perodicticus potto|lemur (generic term)
+perognathus|1
+(noun)|Perognathus|genus Perognathus|mammal genus (generic term)
+perognathus flavescens|1
+(noun)|plains pocket mouse|Perognathus flavescens|pocket mouse (generic term)
+perognathus flavus|1
+(noun)|silky pocket mouse|Perognathus flavus|pocket mouse (generic term)
+perognathus hispidus|1
+(noun)|hispid pocket mouse|Perognathus hispidus|pocket mouse (generic term)
+peromyscus|1
+(noun)|Peromyscus|genus Peromyscus|mammal genus (generic term)
+peromyscus eremicus|1
+(noun)|cactus mouse|Peromyscus eremicus|wood mouse (generic term)
+peromyscus gossypinus|1
+(noun)|cotton mouse|Peromyscus gossypinus|wood mouse (generic term)
+peromyscus leucopus|1
+(noun)|white-footed mouse|vesper mouse|Peromyscus leucopus|wood mouse (generic term)
+peromyscus maniculatus|1
+(noun)|deer mouse|Peromyscus maniculatus|wood mouse (generic term)
+peron|1
+(noun)|Peron|Juan Domingo Peron|soldier (generic term)
+peroneal|1
+(adj)|leg bone (related term)
+peroneal vein|1
+(noun)|fibular vein|vena peroneus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+peroneus|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+peronospora|1
+(noun)|Peronospora|genus Peronospora|fungus genus (generic term)
+peronospora destructor|1
+(noun)|onion mildew|Peronospora destructor|downy mildew (generic term)|false mildew (generic term)
+peronospora hyoscyami|1
+(noun)|tobacco mildew|Peronospora hyoscyami|downy mildew (generic term)|false mildew (generic term)
+peronospora tabacina|1
+(noun)|blue mold fungus|Peronospora tabacina|downy mildew (generic term)|false mildew (generic term)
+peronosporaceae|1
+(noun)|Peronosporaceae|family Peronosporaceae|fungus family (generic term)
+peronosporales|1
+(noun)|Peronosporales|order Peronosporales|fungus order (generic term)
+perorate|2
+(verb)|conclude (generic term)
+(verb)|declaim (generic term)|recite (generic term)
+peroration|2
+(noun)|oration (generic term)
+(noun)|conclusion (generic term)|end (generic term)|close (generic term)|closing (generic term)|ending (generic term)
+peroxidase|1
+(noun)|oxidase (generic term)
+peroxide|3
+(noun)|hydrogen peroxide|oxide (generic term)
+(noun)|oxide (generic term)
+(verb)|bleach (generic term)
+peroxide blond|1
+(noun)|peroxide blonde|blond (generic term)|blonde (generic term)
+peroxide blonde|1
+(noun)|peroxide blond|blond (generic term)|blonde (generic term)
+perpendicular|7
+(adj)|normal (similar term)|orthogonal (similar term)|rectangular (similar term)|right (similar term)|oblique (antonym)|parallel (antonym)
+(adj)|vertical|plumb (similar term)|upended (similar term)|upright (similar term)|unsloped (similar term)|steep (related term)|straight (related term)|inclined (antonym)|horizontal (antonym)
+(adj)|steep (similar term)
+(noun)|straight line (generic term)
+(noun)|perpendicular style|English-Gothic|English-Gothic architecture|Gothic (generic term)|Gothic architecture (generic term)
+(noun)|plumb line|cord (generic term)
+(noun)|face (generic term)
+perpendicular style|1
+(noun)|perpendicular|English-Gothic|English-Gothic architecture|Gothic (generic term)|Gothic architecture (generic term)
+perpendicularity|2
+(noun)|orthogonality|orthogonal opposition|opposition (generic term)
+(noun)|rectangularity (generic term)|oblongness (generic term)
+perpendicularly|1
+(adv)|sheer
+perpetrate|1
+(verb)|commit|pull|act (generic term)|move (generic term)
+perpetration|1
+(noun)|commission|committal|crime (generic term)|law-breaking (generic term)
+perpetrator|1
+(noun)|culprit|wrongdoer (generic term)|offender (generic term)
+perpetual|3
+(adj)|ageless|aeonian|eonian|eternal|everlasting|unending|unceasing|permanent (similar term)|lasting (similar term)
+(adj)|ceaseless|constant|incessant|never-ending|unceasing|unremitting|continuous (similar term)|uninterrupted (similar term)
+(adj)|incessant|endless|continual (similar term)
+perpetual calendar|1
+(noun)|calendar (generic term)
+perpetual motion|1
+(noun)|motion (generic term)
+perpetual motion machine|1
+(noun)|machine (generic term)
+perpetual warrant|1
+(noun)|warrant (generic term)|stock warrant (generic term)|stock-purchase warrant (generic term)
+perpetually|1
+(adv)|constantly
+perpetuate|1
+(verb)|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+perpetuation|1
+(noun)|prolongation|protraction|lengthening|continuance (generic term)|continuation (generic term)
+perpetuity|1
+(noun)|sempiternity|permanence (generic term)|permanency (generic term)
+perphenazine|1
+(noun)|Triavil|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+perplex|2
+(verb)|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|complicate|change (generic term)|alter (generic term)|modify (generic term)|simplify (antonym)
+perplexed|1
+(adj)|at a loss (similar term)|nonplused (similar term)|nonplussed (similar term)|puzzled (similar term)|baffled (similar term)|befuddled (similar term)|bemused (similar term)|bewildered (similar term)|confounded (similar term)|confused (similar term)|lost (similar term)|mazed (similar term)|mixed-up (similar term)|at sea (similar term)|metagrobolized (similar term)|metagrobolised (similar term)|metagrabolized (similar term)|metagrabolised (similar term)|mystified (similar term)|questioning (similar term)|quizzical (similar term)|stuck (similar term)|confused (related term)|unperplexed (antonym)
+perplexedly|1
+(adv)|confoundedly
+perplexing|1
+(adj)|confusing|puzzling|unclear (similar term)
+perplexity|1
+(noun)|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+perquisite|2
+(noun)|fringe benefit|perk|benefit (generic term)
+(noun)|prerogative|privilege|exclusive right|right (generic term)
+perry|4
+(noun)|Perry|Ralph Barton Perry|philosopher (generic term)
+(noun)|Perry|Matthew Calbraith Perry|naval officer (generic term)
+(noun)|Perry|Oliver Hazard Perry|Commodore Perry|commodore (generic term)
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+perry mason|1
+(noun)|Perry Mason|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+persea|1
+(noun)|Persea|genus Persea|magnoliid dicot genus (generic term)
+persea americana|1
+(noun)|avocado|avocado tree|Persea Americana|fruit tree (generic term)
+persea borbonia|1
+(noun)|laurel-tree|red bay|Persea borbonia|laurel (generic term)
+persecute|1
+(verb)|oppress|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+persecution|1
+(noun)|maltreatment (generic term)|ill-treatment (generic term)|ill-usage (generic term)|abuse (generic term)
+persecutor|1
+(noun)|tormentor|tormenter|oppressor (generic term)
+persephone|1
+(noun)|Persephone|Despoina|Kore|Cora|Greek deity (generic term)
+persepolis|1
+(noun)|Persepolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+perseus|2
+(noun)|Perseus|mythical being (generic term)
+(noun)|Perseus|constellation (generic term)
+perseverance|2
+(noun)|doggedness|persistence|persistency|tenacity|tenaciousness|pertinacity|determination (generic term)|purpose (generic term)
+(noun)|persistence|perseveration|continuance (generic term)|continuation (generic term)
+perseverate|1
+(verb)|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+perseveration|2
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|perseverance|persistence|continuance (generic term)|continuation (generic term)
+persevere|1
+(verb)|persist|hang in|hang on|hold on|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+persevering|1
+(adj)|diligent|patient (similar term)
+pershing|1
+(noun)|Pershing|John Joseph Pershing|Black Jack Pershing|general (generic term)|full general (generic term)
+persia|2
+(noun)|Persia|Persian Empire|empire (generic term)|imperium (generic term)
+(noun)|Iran|Islamic Republic of Iran|Persia|Asian country (generic term)|Asian nation (generic term)
+persian|3
+(adj)|Iranian|Persian|Asian country|Asian nation (related term)
+(noun)|Irani|Iranian|Persian|Asian (generic term)|Asiatic (generic term)
+(noun)|Persian|Farsi|Iranian (generic term)|Iranian language (generic term)
+persian cat|1
+(noun)|Persian cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+persian deity|1
+(noun)|Persian deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+persian empire|1
+(noun)|Persia|Persian Empire|empire (generic term)|imperium (generic term)
+persian gulf|1
+(noun)|Persian Gulf|Arabian Gulf|gulf (generic term)
+persian gulf illness|1
+(noun)|Gulf War syndrome|Persian Gulf illness|syndrome (generic term)
+persian gulf war|1
+(noun)|Persian Gulf War|Gulf War|war (generic term)|warfare (generic term)
+persian iris|1
+(noun)|Persian iris|Iris persica|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+persian lamb|2
+(noun)|Persian lamb|lambskin (generic term)
+(noun)|Persian lamb|lamb (generic term)
+persian lilac|2
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+(noun)|Persian lilac|Syringa persica|lilac (generic term)
+persian melon|2
+(noun)|winter melon|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|Persian melon|winter melon (generic term)
+persian violet|1
+(noun)|Persian violet|Exacum affine|houseplant (generic term)
+persian walnut|1
+(noun)|English walnut|English walnut tree|Circassian walnut|Persian walnut|Juglans regia|walnut (generic term)|walnut tree (generic term)
+persiflage|1
+(noun)|banter (generic term)|raillery (generic term)|give-and-take (generic term)|backchat (generic term)
+persimmon|2
+(noun)|persimmon tree|fruit tree (generic term)
+(noun)|berry (generic term)
+persimmon tree|1
+(noun)|persimmon|fruit tree (generic term)
+persist|3
+(verb)|prevail|die hard|run|endure|continue (generic term)
+(verb)|persevere|hang in|hang on|hold on|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|remain|stay
+persist in|1
+(verb)|continue|act (generic term)|move (generic term)
+persistence|3
+(noun)|continuity|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)
+(noun)|doggedness|perseverance|persistency|tenacity|tenaciousness|pertinacity|determination (generic term)|purpose (generic term)
+(noun)|perseverance|perseveration|continuance (generic term)|continuation (generic term)
+persistency|1
+(noun)|doggedness|perseverance|persistence|tenacity|tenaciousness|pertinacity|determination (generic term)|purpose (generic term)
+persistent|3
+(adj)|relentless|unrelenting|continual (similar term)
+(adj)|haunting|unforgettable (similar term)
+(adj)|lasting|caducous (antonym)
+persisting|1
+(adj)|dogging|continuous (similar term)|uninterrupted (similar term)
+persnickety|2
+(adj)|bigheaded|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud (similar term)
+(adj)|pernickety|fastidious (similar term)
+person|3
+(noun)|individual|someone|somebody|mortal|soul|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|human body (generic term)|physical body (generic term)|material body (generic term)|soma (generic term)|build (generic term)|figure (generic term)|physique (generic term)|anatomy (generic term)|shape (generic term)|bod (generic term)|chassis (generic term)|frame (generic term)|form (generic term)|flesh (generic term)
+(noun)|grammatical category (generic term)|syntactic category (generic term)
+person-to-person|2
+(adj)|personal (similar term)
+(adv)|one-on-one
+person agreement|1
+(noun)|agreement (generic term)|concord (generic term)
+person hour|1
+(noun)|man hour|hour (generic term)|hr (generic term)|60 minutes (generic term)
+person of color|1
+(noun)|person of colour|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+person of colour|1
+(noun)|person of color|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+persona|2
+(noun)|character|role|theatrical role|part|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+(noun)|image|appearance (generic term)|visual aspect (generic term)
+persona grata|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+persona non grata|2
+(noun)|diplomat (generic term)|diplomatist (generic term)
+(noun)|unwelcome person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+personable|1
+(adj)|attractive (similar term)
+personableness|1
+(noun)|personality (generic term)
+personage|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|important person|influential person|adult (generic term)|grownup (generic term)
+personal|6
+(adj)|ad hominem (similar term)|face-to-face (similar term)|individual (similar term)|private (similar term)|individualized (similar term)|individualised (similar term)|personalized (similar term)|personalised (similar term)|in-person (similar term)|in the flesh (similar term)|own (similar term)|ain (similar term)|personalized (similar term)|person-to-person (similar term)|private (similar term)|private (related term)|impersonal (antonym)
+(adj)|subjective (similar term)
+(adj)|attribute (related term)
+(adj)|physical (similar term)
+(adj)|grammatical category|syntactic category (related term)
+(noun)|news article (generic term)|news story (generic term)|newspaper article (generic term)
+personal appeal|1
+(noun)|charisma|personal magnetism|attractiveness (generic term)|interest (generic term)|interestingness (generic term)
+personal business|1
+(noun)|personal matters|affairs|concern (generic term)
+personal care|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+personal chattel|1
+(noun)|chattel|movable|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+personal check|1
+(noun)|personal cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+personal cheque|1
+(noun)|personal check|check (generic term)|bank check (generic term)|cheque (generic term)
+personal computer|1
+(noun)|PC|microcomputer|digital computer (generic term)
+personal credit line|1
+(noun)|credit line|line of credit|bank line|line|personal line of credit|credit (generic term)
+personal digital assistant|1
+(noun)|PDA|personal organizer|personal organiser|organizer|organiser|electronic device (generic term)
+personal effects|1
+(noun)|effects|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+personal equation|1
+(noun)|variability (generic term)|variableness (generic term)|variance (generic term)
+personal estate|1
+(noun)|personal property|personalty|private property|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+personal expense|1
+(noun)|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+personal foul|1
+(noun)|foul (generic term)
+personal identification number|1
+(noun)|PIN|PIN number|number (generic term)|identification number (generic term)
+personal identity|1
+(noun)|identity|individuality|personality (generic term)
+personal income|1
+(noun)|income (generic term)
+personal judgement|1
+(noun)|judgment in personam|judgement in personam|personal judgment|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in rem (antonym)
+personal judgment|1
+(noun)|judgment in personam|judgement in personam|personal judgement|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|judgment in rem (antonym)
+personal letter|1
+(noun)|letter (generic term)|missive (generic term)
+personal line of credit|1
+(noun)|credit line|line of credit|bank line|line|personal credit line|credit (generic term)
+personal loan|1
+(noun)|consumer loan|loan (generic term)
+personal magnetism|1
+(noun)|charisma|personal appeal|attractiveness (generic term)|interest (generic term)|interestingness (generic term)
+personal manner|1
+(noun)|manner|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)
+personal matters|1
+(noun)|personal business|affairs|concern (generic term)
+personal memory|1
+(noun)|episodic memory|long-term memory (generic term)|LTM (generic term)
+personal organiser|1
+(noun)|personal digital assistant|PDA|personal organizer|organizer|organiser|electronic device (generic term)
+personal organizer|1
+(noun)|personal digital assistant|PDA|personal organiser|organizer|organiser|electronic device (generic term)
+personal pronoun|1
+(noun)|pronoun (generic term)
+personal property|1
+(noun)|personal estate|personalty|private property|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+personal relation|1
+(noun)|personal relationship|relationship (generic term)|human relationship (generic term)
+personal relationship|1
+(noun)|personal relation|relationship (generic term)|human relationship (generic term)
+personal representative|1
+(noun)|representative (generic term)
+personalise|1
+(verb)|personalize|individualize|individualise|change (generic term)|alter (generic term)|modify (generic term)|depersonalise (antonym)|depersonalize (antonym)
+personalised|1
+(adj)|individualized|individualised|personalized|personal (similar term)
+personality|2
+(noun)|attribute (generic term)
+(noun)|celebrity (generic term)|famous person (generic term)
+personality assessment|1
+(noun)|personality inventory|questionnaire (generic term)|personality test (generic term)
+personality disorder|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+personality inventory|1
+(noun)|personality assessment|questionnaire (generic term)|personality test (generic term)
+personality test|1
+(noun)|test (generic term)|mental test (generic term)|mental testing (generic term)|psychometric test (generic term)
+personalize|1
+(verb)|personalise|individualize|individualise|change (generic term)|alter (generic term)|modify (generic term)|depersonalise (antonym)|depersonalize (antonym)
+personalized|2
+(adj)|individualized|individualised|personalised|personal (similar term)
+(adj)|personal (similar term)
+personally|2
+(adv)|impersonally (antonym)
+(adv)|in person
+personalty|1
+(noun)|personal property|personal estate|private property|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+personate|2
+(verb)|pose|impersonate|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|personify|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+personation|2
+(noun)|impersonation|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+(noun)|portrayal|characterization|enactment|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+personhood|1
+(noun)|identity (generic term)|personal identity (generic term)|individuality (generic term)
+personification|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|prosopopoeia|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+(noun)|incarnation|embodiment (generic term)
+personify|3
+(verb)|body|embody (generic term)|be (generic term)|personify (generic term)
+(verb)|embody|be|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+(verb)|personate|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+personnel|2
+(noun)|force|organization (generic term)|organisation (generic term)
+(noun)|personnel department|personnel office|staff office|department (generic term)|section (generic term)
+personnel carrier|1
+(noun)|military vehicle (generic term)|self-propelled vehicle (generic term)
+personnel casualty|1
+(noun)|loss|casualty (generic term)
+personnel department|1
+(noun)|personnel office|personnel|staff office|department (generic term)|section (generic term)
+personnel office|1
+(noun)|personnel department|personnel|staff office|department (generic term)|section (generic term)
+personnel pouch|1
+(noun)|body bag|human remains pouch|bag (generic term)
+persoonia|1
+(noun)|Persoonia|genus Persoonia|dicot genus (generic term)|magnoliopsid genus (generic term)
+perspective|2
+(noun)|position|view|orientation (generic term)
+(noun)|linear perspective|appearance (generic term)|visual aspect (generic term)
+perspex|1
+(noun)|Lucite|Perspex|polymethyl methacrylate (generic term)
+perspicacious|2
+(adj)|sagacious|sapient|wise (similar term)
+(adj)|clear-eyed|clear-sighted|discerning (similar term)
+perspicaciousness|1
+(noun)|shrewdness|astuteness|perspicacity|intelligence (generic term)
+perspicacity|2
+(noun)|shrewdness|astuteness|perspicaciousness|intelligence (generic term)
+(noun)|judgment|judgement|sound judgment|sound judgement|trait (generic term)
+perspicuity|1
+(noun)|perspicuousness|plainness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+perspicuous|1
+(adj)|limpid|lucid|luculent|pellucid|crystal clear|clear (similar term)
+perspicuously|1
+(adv)|lucidly|pellucidly|limpidly
+perspicuousness|1
+(noun)|perspicuity|plainness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+perspiration|2
+(noun)|sweat|sudor|secretion (generic term)
+(noun)|sweating|diaphoresis|sudation|hidrosis|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+perspire|1
+(verb)|sweat|sudate|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|sweat off (related term)
+perspirer|1
+(noun)|sweater|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+perspiring|1
+(adj)|sweating|sweaty|wet (similar term)
+persuadable|1
+(adj)|convincible|persuasible|suasible|susceptible (similar term)
+persuade|2
+(verb)|carry|sway|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)|dissuade (antonym)
+persuader|1
+(noun)|inducer|communicator (generic term)
+persuasible|1
+(adj)|convincible|persuadable|suasible|susceptible (similar term)
+persuasion|2
+(noun)|suasion|communication (generic term)|communicating (generic term)|dissuasion (antonym)
+(noun)|opinion|sentiment|view|thought|belief (generic term)
+persuasive|2
+(adj)|coaxing (similar term)|ingratiatory (similar term)|cogent (similar term)|telling (similar term)|weighty (similar term)|compelling (similar term)|glib (similar term)|glib-tongued (similar term)|smooth-tongued (similar term)|convincing (related term)|dissuasive (antonym)
+(adj)|convincing (similar term)
+persuasiveness|1
+(noun)|strength|power (generic term)|powerfulness (generic term)|unpersuasiveness (antonym)
+pert|1
+(adj)|impertinent|irreverent|saucy|spirited (similar term)
+pertain|2
+(verb)|refer|relate|concern|come to|bear on|touch|touch on
+(verb)|appertain|dwell (generic term)|consist (generic term)|lie (generic term)|belong (generic term)|lie in (generic term)
+pertainym|1
+(noun)|relational adjective (generic term)|classifying adjective (generic term)
+perth|1
+(noun)|Perth|state capital (generic term)
+pertinacious|1
+(adj)|dogged|dour|tenacious|unyielding|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+pertinacity|1
+(noun)|doggedness|perseverance|persistence|persistency|tenacity|tenaciousness|determination (generic term)|purpose (generic term)
+pertinence|1
+(noun)|applicability|pertinency|relevance (generic term)|relevancy (generic term)|inapplicability (antonym)
+pertinency|1
+(noun)|applicability|pertinence|relevance (generic term)|relevancy (generic term)|inapplicability (antonym)
+pertinent|2
+(adj)|to the point|relevant (similar term)
+(adj)|apposite|appropriate|apt|apropos (similar term)
+pertly|1
+(adv)|impertinently|saucily|freshly|impudently
+pertness|2
+(noun)|impertinence|perkiness|sauciness|archness|playfulness (generic term)|fun (generic term)
+(noun)|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+perturb|3
+(verb)|unhinge|disquiet|trouble|cark|distract|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+(verb)|deviate (generic term)
+(verb)|derange|throw out of kilter|disorder (generic term)|disarray (generic term)
+perturbation|5
+(noun)|disturbance|upset|agitation (generic term)
+(noun)|influence (generic term)
+(noun)|disturbance|activity (generic term)
+(noun)|fluster|discomposure (generic term)
+(noun)|disruption|disturbance (generic term)
+perturbed|1
+(adj)|flustered|hot and bothered|rattled|discomposed (similar term)
+perturbing|1
+(adj)|distressing|distressful|disturbing|troubling|worrisome|worrying|heavy (similar term)
+pertusaria|1
+(noun)|Pertusaria|genus Pertusaria|fungus genus (generic term)
+pertusariaceae|1
+(noun)|Pertusariaceae|family Pertusariaceae|fungus family (generic term)
+pertussis|1
+(noun)|whooping cough|infectious disease (generic term)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+peru|1
+(noun)|Peru|Republic of Peru|South American country (generic term)|South American nation (generic term)
+peruke|1
+(noun)|periwig|wig (generic term)
+peruked|1
+(adj)|periwigged|wigged (similar term)
+perusal|1
+(noun)|perusing|poring over|studying|reading (generic term)
+peruse|1
+(verb)|examine (generic term)|see (generic term)
+perusing|1
+(noun)|perusal|poring over|studying|reading (generic term)
+perutz|1
+(noun)|Perutz|Max Perutz|Max Ferdinand Perutz|biochemist (generic term)
+peruvian|2
+(adj)|Peruvian|South American country|South American nation (related term)
+(noun)|Peruvian|South American (generic term)
+peruvian balsam|1
+(noun)|Peruvian balsam|Myroxylon pereirae|Myroxylon balsamum pereirae|tree (generic term)
+peruvian bark|1
+(noun)|cinchona|cinchona bark|Peruvian bark|Jesuit's bark|bark (generic term)
+peruvian cotton|1
+(noun)|Peruvian cotton|Gossypium peruvianum|cotton (generic term)|cotton plant (generic term)
+peruvian current|1
+(noun)|Peruvian current|Humboldt current|ocean current (generic term)
+peruvian lily|1
+(noun)|Peruvian lily|lily of the Incas|Alstroemeria pelegrina|alstroemeria (generic term)
+peruvian mastic tree|1
+(noun)|pepper tree|molle|Peruvian mastic tree|Schinus molle|tree (generic term)
+peruvian monetary unit|1
+(noun)|Peruvian monetary unit|monetary unit (generic term)
+pervade|1
+(verb)|permeate|penetrate|interpenetrate|diffuse|imbue|riddle|penetrate (generic term)|perforate (generic term)
+pervaporate|1
+(verb)|evaporate (generic term)|vaporise (generic term)
+pervaporation|1
+(noun)|concentration (generic term)
+pervasion|1
+(noun)|permeation|suffusion|diffusion (generic term)
+pervasive|1
+(adj)|permeant|permeating|permeative|distributive (similar term)
+pervasiveness|1
+(noun)|generality (generic term)
+perverse|3
+(adj)|negative (similar term)
+(adj)|contrary|obstinate|wayward|disobedient (similar term)
+(adj)|depraved|immoral|perverted|reprobate|corrupt (similar term)
+perversely|1
+(adv)|contrarily|contrariwise
+perverseness|2
+(noun)|contrariness|perversity|unruliness (generic term)|fractiousness (generic term)|willfulness (generic term)|wilfulness (generic term)
+(noun)|perversity|evil (generic term)|evilness (generic term)
+perversion|3
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|sexual perversion|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+perversity|2
+(noun)|contrariness|perverseness|unruliness (generic term)|fractiousness (generic term)|willfulness (generic term)|wilfulness (generic term)
+(noun)|perverseness|evil (generic term)|evilness (generic term)
+perversive|1
+(adj)|corruptive|pestiferous|evil (similar term)
+pervert|4
+(noun)|deviant|deviate|degenerate|reprobate (generic term)|miscreant (generic term)
+(verb)|corrupt|subvert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|twist|twist around|convolute|sophisticate|denote (generic term)|refer (generic term)
+(verb)|misuse|abuse|use (generic term)|expend (generic term)
+perverted|3
+(adj)|kinky|abnormal (similar term)
+(adj)|distorted|misrepresented|twisted|disingenuous (similar term)|artful (similar term)
+(adj)|depraved|immoral|perverse|reprobate|corrupt (similar term)
+pervious|1
+(adj)|receptive (similar term)|permeable (related term)|impervious (antonym)
+perviousness|1
+(noun)|penetrability|quality (generic term)|imperviousness (antonym)|impenetrability (antonym)
+pes|1
+(noun)|foot|human foot|vertebrate foot (generic term)|pedal extremity (generic term)
+pes cavus|1
+(noun)|clawfoot|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+pes planus|1
+(noun)|flatfoot|splayfoot|foot (generic term)|human foot (generic term)|pes (generic term)
+pesach|1
+(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast (generic term)|moveable feast (generic term)
+pesah|1
+(noun)|Passover|Pesach|Pesah|Feast of the Unleavened Bread|movable feast (generic term)|moveable feast (generic term)
+pesantran|1
+(noun)|pesantren|religious school (generic term)
+pesantren|1
+(noun)|pesantran|religious school (generic term)
+peseta|1
+(noun)|Spanish peseta|Spanish monetary unit (generic term)
+pesewa|1
+(noun)|Ghanian monetary unit (generic term)
+pesh merga|1
+(noun)|Pesh Merga|guerrilla force (generic term)|guerilla force (generic term)
+peshawar|1
+(noun)|Peshawar|city (generic term)|metropolis (generic term)|urban center (generic term)
+peshmerga|1
+(noun)|Kurd (generic term)
+pesky|1
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+peso|8
+(noun)|Uruguayan peso|Uruguayan monetary unit (generic term)
+(noun)|Philippine peso|Philippine monetary unit (generic term)
+(noun)|Mexican peso|Mexican monetary unit (generic term)
+(noun)|Guinea-Bissau peso|Guinea-Bissau monetary unit (generic term)
+(noun)|Dominican peso|Dominican monetary unit (generic term)
+(noun)|Cuban peso|Cuban monetary unit (generic term)
+(noun)|Colombian peso|Colombian monetary unit (generic term)
+(noun)|Chilean peso|Chilean monetary unit (generic term)
+pessary|1
+(noun)|diaphragm|contraceptive diaphragm|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+pessimal|1
+(adj)|pessimum|worst (similar term)
+pessimism|2
+(noun)|despair (generic term)|optimism (antonym)
+(noun)|disposition (generic term)|temperament (generic term)|optimism (antonym)
+pessimist|1
+(noun)|skeptic (generic term)|sceptic (generic term)|doubter (generic term)|optimist (antonym)
+pessimistic|1
+(adj)|bearish (similar term)|demoralized (similar term)|demoralised (similar term)|discouraged (similar term)|disheartened (similar term)|hopeless (related term)|negative (related term)|optimistic (antonym)
+pessimistically|1
+(adv)|optimistically (antonym)
+pessimum|1
+(adj)|pessimal|worst (similar term)
+pest|4
+(noun)|plague|pestilence|pestis|epidemic disease (generic term)
+(noun)|plague|pestilence|epidemic disease (generic term)
+(noun)|blighter|cuss|pesterer|gadfly|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+pester|1
+(verb)|tease|badger|bug|beleaguer|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+pestered|1
+(adj)|annoyed|harassed|harried|vexed|troubled (similar term)
+pesterer|1
+(noun)|pest|blighter|cuss|gadfly|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+pestering|1
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestiferous|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+pesthole|1
+(noun)|breeding ground (generic term)
+pesthouse|1
+(noun)|lazaretto|lazaret|lazarette|lazar house|hospital (generic term)|infirmary (generic term)
+pesticide|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+pesticide poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+pestiferous|4
+(adj)|contaminated|dirty|septic (similar term)|infected (similar term)
+(adj)|pestilent|pestilential|plaguey|epidemic (similar term)
+(adj)|corruptive|perversive|evil (similar term)
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|plaguy|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+pestilence|3
+(noun)|plague|pest|pestis|epidemic disease (generic term)
+(noun)|plague|pest|epidemic disease (generic term)
+(noun)|canker|influence (generic term)
+pestilent|2
+(adj)|baneful|deadly|pernicious|noxious (similar term)|harmful (similar term)
+(adj)|pestilential|pestiferous|plaguey|epidemic (similar term)
+pestilential|1
+(adj)|pestilent|pestiferous|plaguey|epidemic (similar term)
+pestis|1
+(noun)|plague|pestilence|pest|epidemic disease (generic term)
+pestis ambulans|1
+(noun)|ambulant plague|ambulatory plague|bubonic plague (generic term)|pestis bubonica (generic term)|glandular plague (generic term)
+pestis bubonica|1
+(noun)|bubonic plague|glandular plague|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+pestle|4
+(noun)|stamp|machine (generic term)
+(noun)|muller|pounder|tool (generic term)
+(noun)|hand tool (generic term)
+(verb)|grind (generic term)|mash (generic term)|crunch (generic term)|bray (generic term)|comminute (generic term)
+pesto|1
+(noun)|sauce (generic term)
+pet|6
+(adj)|favored|favorite|favourite|best-loved|preferred|preferent|loved (similar term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|darling|favorite|favourite|dearie|deary|ducky|lover (generic term)
+(noun)|irritability (generic term)|crossness (generic term)|fretfulness (generic term)|fussiness (generic term)|peevishness (generic term)|petulance (generic term)|choler (generic term)
+(noun)|positron emission tomography|PET|imaging (generic term)|tomography (generic term)
+(verb)|caress (generic term)
+pet-food|1
+(noun)|petfood|pet food|feed (generic term)|provender (generic term)
+pet food|1
+(noun)|petfood|pet-food|feed (generic term)|provender (generic term)
+pet name|1
+(noun)|hypocorism|name (generic term)
+pet peeve|1
+(noun)|complaint (generic term)
+pet scanner|1
+(noun)|positron emission tomography scanner|PET scanner|tomograph (generic term)
+pet shop|1
+(noun)|shop (generic term)|store (generic term)
+pet sitter|1
+(noun)|critter sitter|custodian (generic term)|keeper (generic term)|steward (generic term)
+pet sitting|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+petabyte|1
+(noun)|computer memory unit (generic term)
+petal|1
+(noun)|flower petal|floral leaf (generic term)
+petal-like|1
+(adj)|petallike|leafy (similar term)
+petaled|1
+(adj)|petalous|petalled|four-petaled (similar term)|four-petalled (similar term)|five-petaled (similar term)|five-petalled (similar term)|gamopetalous (similar term)|sympetalous (similar term)|polypetalous (similar term)|salverform (similar term)|three-petaled (similar term)|three-petalled (similar term)|apetalous (antonym)
+petalled|1
+(adj)|petalous|petaled|four-petaled (similar term)|four-petalled (similar term)|five-petaled (similar term)|five-petalled (similar term)|gamopetalous (similar term)|sympetalous (similar term)|polypetalous (similar term)|salverform (similar term)|three-petaled (similar term)|three-petalled (similar term)|apetalous (antonym)
+petalless|1
+(adj)|apetalous|petalous (antonym)
+petallike|1
+(adj)|petal-like|leafy (similar term)
+petaloid|1
+(adj)|floral leaf (related term)
+petalous|1
+(adj)|petaled|petalled|four-petaled (similar term)|four-petalled (similar term)|five-petaled (similar term)|five-petalled (similar term)|gamopetalous (similar term)|sympetalous (similar term)|polypetalous (similar term)|salverform (similar term)|three-petaled (similar term)|three-petalled (similar term)|apetalous (antonym)
+petard|1
+(noun)|explosive device (generic term)
+petasites|1
+(noun)|Petasites|genus Petasites|asterid dicot genus (generic term)
+petasites fragrans|1
+(noun)|winter heliotrope|sweet coltsfoot|Petasites fragrans|herb (generic term)|herbaceous plant (generic term)
+petasites hybridus|1
+(noun)|butterbur|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb (generic term)|herbaceous plant (generic term)
+petasites sagitattus|1
+(noun)|sweet coltsfoot|Petasites sagitattus|herb (generic term)|herbaceous plant (generic term)
+petasites vulgaris|1
+(noun)|butterbur|bog rhubarb|Petasites hybridus|Petasites vulgaris|herb (generic term)|herbaceous plant (generic term)
+petaurista|1
+(noun)|Petaurista|genus Petaurista|mammal genus (generic term)
+petaurista petaurista|1
+(noun)|taguan|flying marmot|flying cat|Petaurista petaurista|Asiatic flying squirrel (generic term)
+petauristidae|1
+(noun)|Petauristidae|subfamily Petauristidae|mammal family (generic term)
+petaurus|1
+(noun)|Petaurus|genus Petaurus|mammal genus (generic term)
+petchary|1
+(noun)|grey kingbird|gray kingbird|Tyrannus domenicensis domenicensis|kingbird (generic term)|Tyrannus tyrannus (generic term)
+petcock|1
+(noun)|regulator (generic term)
+pete seeger|1
+(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)
+petechia|1
+(noun)|bruise (generic term)|contusion (generic term)
+peter|2
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+(noun)|cock|prick|dick|shaft|pecker|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+peter's gland|1
+(noun)|Peyer's patch|Peter's gland|lymph node (generic term)|lymph gland (generic term)|node (generic term)
+peter's pence|1
+(noun)|hearth money|Peter's pence|offering (generic term)
+peter abelard|1
+(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+peter alexander ustinov|1
+(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|dramatist (generic term)|playwright (generic term)
+peter behrens|1
+(noun)|Behrens|Peter Behrens|architect (generic term)|designer (generic term)
+peter carl faberge|1
+(noun)|Faberge|Peter Carl Faberge|goldsmith (generic term)|goldworker (generic term)|gold-worker (generic term)
+peter carl goldmark|1
+(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+peter cooper|1
+(noun)|Cooper|Peter Cooper|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+peter goldmark|1
+(noun)|Goldmark|Peter Goldmark|Peter Carl Goldmark|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+peter i|1
+(noun)|Peter I|Czar Peter I|Peter the Great|czar (generic term)|tsar (generic term)|tzar (generic term)
+peter ilich tchaikovsky|1
+(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer (generic term)
+peter lorre|1
+(noun)|Lorre|Peter Lorre|Laszlo Lowestein|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+peter mark roget|1
+(noun)|Roget|Peter Mark Roget|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+peter medawar|1
+(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist (generic term)
+peter minnewit|1
+(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler (generic term)|colonist (generic term)
+peter minuit|1
+(noun)|Minuit|Peter Minuit|Minnewit|Peter Minnewit|settler (generic term)|colonist (generic term)
+peter o'toole|1
+(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+peter out|2
+(verb)|taper off|fizzle out|fizzle|discontinue (generic term)
+(verb)|poop out|run down|run out|conk out|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+peter pan|2
+(noun)|Peter Pan|man (generic term)|adult male (generic term)
+(noun)|Peter Pan|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+peter pan collar|1
+(noun)|Peter Pan collar|collar (generic term)|neckband (generic term)
+peter paul mauser|1
+(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor (generic term)|discoverer (generic term)|artificer (generic term)|arms manufacturer (generic term)
+peter paul rubens|1
+(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master (generic term)
+peter seamus o'toole|1
+(noun)|O'Toole|Peter O'Toole|Peter Seamus O'Toole|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+peter seeger|1
+(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)
+peter sellers|1
+(noun)|Sellers|Peter Sellers|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+peter stuyvesant|1
+(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator (generic term)|executive (generic term)
+peter tchaikovsky|1
+(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer (generic term)
+peter the great|1
+(noun)|Peter I|Czar Peter I|Peter the Great|czar (generic term)|tsar (generic term)|tzar (generic term)
+peterburg|1
+(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+petersburg|2
+(noun)|Petersburg|town (generic term)
+(noun)|Petersburg|Petersburg Campaign|campaign (generic term)|military campaign (generic term)|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+petersburg campaign|1
+(noun)|Petersburg|Petersburg Campaign|campaign (generic term)|military campaign (generic term)|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+petfood|1
+(noun)|pet-food|pet food|feed (generic term)|provender (generic term)
+petiole|1
+(noun)|leafstalk|stalk (generic term)|stem (generic term)
+petiolule|1
+(noun)|stalk (generic term)|stem (generic term)
+petit bourgeois|2
+(noun)|bourgeois (generic term)|burgher (generic term)
+(noun)|petite bourgeoisie|petty bourgeoisie|middle class (generic term)|bourgeoisie (generic term)
+petit dejeuner|1
+(noun)|continental breakfast|breakfast (generic term)
+petit four|1
+(noun)|cake (generic term)
+petit juror|1
+(noun)|petty juror|juror (generic term)|juryman (generic term)|jurywoman (generic term)
+petit jury|1
+(noun)|petty jury|jury (generic term)
+petit larceny|1
+(noun)|petty larceny|petty|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)|grand larceny (antonym)
+petit mal|1
+(noun)|epilepsia minor|epileptic seizure (generic term)
+petit mal epilepsy|1
+(noun)|absence|epilepsy (generic term)
+petit point|2
+(noun)|tent stitch|stitch (generic term)
+(noun)|needlepoint (generic term)|needlepoint embroidery (generic term)
+petite|2
+(adj)|bantam|diminutive|lilliputian|midget|tiny|flyspeck|small (similar term)|little (similar term)
+(noun)|size (generic term)
+petite bourgeoisie|1
+(noun)|petit bourgeois|petty bourgeoisie|middle class (generic term)|bourgeoisie (generic term)
+petite marmite|1
+(noun)|minestrone|vegetable soup|soup (generic term)
+petiteness|1
+(noun)|diminutiveness|minuteness|tininess|weeness|smallness (generic term)|littleness (generic term)
+petitio|1
+(noun)|petitio principii|logical fallacy (generic term)
+petitio principii|1
+(noun)|petitio|logical fallacy (generic term)
+petition|3
+(noun)|request|postulation|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|prayer|orison|request (generic term)|asking (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+petitionary|1
+(adj)|beseeching (similar term)
+petitioner|2
+(noun)|suppliant|supplicant|requester|applicant (generic term)|applier (generic term)
+(noun)|suer|plaintiff (generic term)|complainant (generic term)
+petrarca|1
+(noun)|Petrarch|Petrarca|Francesco Petrarca|poet (generic term)
+petrarch|1
+(noun)|Petrarch|Petrarca|Francesco Petrarca|poet (generic term)
+petrarchan sonnet|1
+(noun)|Petrarchan sonnet|Italian sonnet|sonnet (generic term)
+petrel|1
+(noun)|pelagic bird (generic term)|oceanic bird (generic term)
+petri dish|1
+(noun)|Petri dish|dish (generic term)
+petrifaction|2
+(noun)|petrification|fossilization (generic term)|fossilisation (generic term)
+(noun)|rock (generic term)|stone (generic term)
+petrification|1
+(noun)|petrifaction|fossilization (generic term)|fossilisation (generic term)
+petrified|3
+(adj)|hard (similar term)
+(adj)|mineralized|mineral (similar term)
+(adj)|numb|afraid (similar term)
+petrified forest national park|1
+(noun)|Petrified Forest National Park|national park (generic term)
+petrify|3
+(verb)|deaden (generic term)|blunt (generic term)
+(verb)|lapidify|fossilize (generic term)|fossilise (generic term)
+(verb)|rigidify|ossify|stiffen (generic term)
+petrifying|1
+(adj)|alarming (similar term)
+petrissage|1
+(noun)|massage (generic term)
+petrochemical|1
+(noun)|organic compound (generic term)
+petrocoptis|1
+(noun)|Petrocoptis|genus Petrocoptis|caryophylloid dicot genus (generic term)
+petrogale|1
+(noun)|Petrogale|genus Petrogale|mammal genus (generic term)
+petrograd|1
+(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+petrol|1
+(noun)|gasoline|gasolene|gas|fuel (generic term)|hydrocarbon (generic term)
+petrol bomb|1
+(noun)|Molotov cocktail|gasoline bomb|improvised explosive device (generic term)|I.E.D. (generic term)|IED (generic term)
+petrol station|1
+(noun)|gasoline station|gas station|filling station|service station (generic term)
+petrolatum|1
+(noun)|petroleum jelly|mineral jelly|jelly (generic term)|mixture (generic term)
+petrolatum gauze|1
+(noun)|gauze (generic term)|gauze bandage (generic term)
+petroleum|1
+(noun)|crude oil|crude|rock oil|fossil oil|oil (generic term)|fossil fuel (generic term)
+petroleum future|1
+(noun)|oil future|future (generic term)
+petroleum geologist|1
+(noun)|oil geologist|geologist (generic term)
+petroleum geology|1
+(noun)|economic geology (generic term)
+petroleum jelly|1
+(noun)|petrolatum|mineral jelly|jelly (generic term)|mixture (generic term)
+petroleum refinery|1
+(noun)|oil refinery|refinery (generic term)
+petrology|1
+(noun)|lithology|morphology (generic term)|geomorphology (generic term)
+petromyzon|1
+(noun)|Petromyzon|genus Petromyzon|fish genus (generic term)
+petromyzon marinus|1
+(noun)|sea lamprey|Petromyzon marinus|lamprey (generic term)|lamprey eel (generic term)|lamper eel (generic term)
+petromyzoniformes|1
+(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order (generic term)
+petromyzontidae|1
+(noun)|Petromyzontidae|family Petromyzontidae|fish family (generic term)
+petronius|1
+(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer (generic term)|author (generic term)
+petronius arbiter|1
+(noun)|Petronius|Gaius Petronius|Petronius Arbiter|writer (generic term)|author (generic term)
+petroselinum|1
+(noun)|Petroselinum|genus Petroselinum|rosid dicot genus (generic term)
+petroselinum crispum|1
+(noun)|parsley|Petroselinum crispum|herb (generic term)|herbaceous plant (generic term)
+petroselinum crispum neapolitanum|1
+(noun)|Italian parsley|flat-leaf parsley|Petroselinum crispum neapolitanum|parsley (generic term)|Petroselinum crispum (generic term)
+petroselinum crispum tuberosum|1
+(noun)|Hamburg parsley|turnip-rooted parsley|Petroselinum crispum tuberosum|parsley (generic term)|Petroselinum crispum (generic term)
+petrous|1
+(adj)|stonelike|hard (similar term)
+petrus stuyvesant|1
+(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator (generic term)|executive (generic term)
+petter|1
+(noun)|fondler|lover (generic term)
+petteria|1
+(noun)|Petteria|genus Petteria|rosid dicot genus (generic term)
+petteria ramentacea|1
+(noun)|Dalmatian laburnum|Petteria ramentacea|Cytisus ramentaceus|shrub (generic term)|bush (generic term)
+petticoat|1
+(noun)|half-slip|underskirt|undergarment (generic term)|unmentionable (generic term)
+petticoated|1
+(adj)|clothed (similar term)|clad (similar term)
+pettifog|1
+(verb)|quibble|niggle|bicker|squabble|brabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+pettifogger|2
+(noun)|shyster|wrongdoer (generic term)|offender (generic term)
+(noun)|quibbler|caviller|caviler|malcontent (generic term)
+pettifoggery|1
+(noun)|bicker|bickering|spat|tiff|squabble|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+pettifogging|1
+(adj)|caviling|carping|nitpicking|quibbling|critical (similar term)
+pettiness|3
+(noun)|narrow-mindedness (generic term)|narrowness (generic term)
+(noun)|triviality|slightness|puniness|unimportance (generic term)
+(noun)|littleness|smallness|meanness (generic term)|minginess (generic term)|niggardliness (generic term)|niggardness (generic term)|parsimony (generic term)|parsimoniousness (generic term)|tightness (generic term)|tightfistedness (generic term)|closeness (generic term)
+petting|1
+(noun)|caressing|cuddling|fondling|hugging|kissing|necking|smooching|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+petting zoo|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+pettish|1
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|petulant|scratchy|testy|tetchy|techy|ill-natured (similar term)
+pettishly|1
+(adv)|testily|irritably|petulantly
+pettishness|1
+(noun)|temper|biliousness|irritability|peevishness|snappishness|surliness|ill nature (generic term)
+petty|4
+(adj)|junior-grade|inferior|lower-ranking|lowly|secondary|subaltern|subordinate|junior (similar term)
+(adj)|fiddling|footling|lilliputian|little|niggling|piddling|piffling|picayune|trivial|unimportant (similar term)
+(adj)|small-minded|narrow-minded (similar term)|narrow (similar term)
+(noun)|petit larceny|petty larceny|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)|grand larceny (antonym)
+petty apartheid|1
+(noun)|racial segregation (generic term)
+petty bourgeoisie|1
+(noun)|petit bourgeois|petite bourgeoisie|middle class (generic term)|bourgeoisie (generic term)
+petty cash|1
+(noun)|fund (generic term)|monetary fund (generic term)
+petty criticism|1
+(noun)|detraction|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+petty juror|1
+(noun)|petit juror|juror (generic term)|juryman (generic term)|jurywoman (generic term)
+petty jury|1
+(noun)|petit jury|jury (generic term)
+petty larceny|1
+(noun)|petit larceny|petty|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)|grand larceny (antonym)
+petty morel|1
+(noun)|American spikenard|life-of-man|Aralia racemosa|subshrub (generic term)|suffrutex (generic term)
+petty officer|1
+(noun)|PO|P.O.|noncommissioned officer (generic term)|noncom (generic term)
+petty spurge|1
+(noun)|devil's milk|Euphorbia peplus|spurge (generic term)
+petty whin|1
+(noun)|broom tree|needle furze|Genista anglica|broom (generic term)
+petulance|1
+(noun)|irritability|crossness|fretfulness|fussiness|peevishness|choler|ill humor (generic term)|ill humour (generic term)|distemper (generic term)
+petulant|1
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|scratchy|testy|tetchy|techy|ill-natured (similar term)
+petulantly|1
+(adv)|testily|irritably|pettishly
+petunia|2
+(noun)|flower (generic term)
+(noun)|genus Petunia|Petunia|asterid dicot genus (generic term)
+petunia axillaris|1
+(noun)|large white petunia|Petunia axillaris|petunia (generic term)
+petunia hybrida|1
+(noun)|hybrid petunia|Petunia hybrida|petunia (generic term)
+petunia integrifolia|1
+(noun)|violet-flowered petunia|Petunia integrifolia|petunia (generic term)
+peul|1
+(noun)|Fula|Ful|Fulani|Peul|West African (generic term)
+pew|1
+(noun)|church bench|bench (generic term)
+pewee|1
+(noun)|peewee|peewit|pewit|wood pewee|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+pewit|3
+(noun)|laughing gull|blackcap|pewit gull|Larus ridibundus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+(noun)|lapwing|green plover|peewit|plover (generic term)
+(noun)|pewee|peewee|peewit|wood pewee|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+pewit gull|1
+(noun)|laughing gull|blackcap|pewit|Larus ridibundus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+pewter|1
+(noun)|alloy (generic term)|metal (generic term)
+peyer's patch|1
+(noun)|Peyer's patch|Peter's gland|lymph node (generic term)|lymph gland (generic term)|node (generic term)
+peyote|2
+(noun)|mescal|mezcal|Lophophora williamsii|cactus (generic term)
+(noun)|mescaline|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+peyton rous|1
+(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician (generic term)|pathologist (generic term)
+peziza|1
+(noun)|Peziza|genus Peziza|fungus genus (generic term)
+peziza coccinea|1
+(noun)|blood cup|fairy cup|Peziza coccinea|discomycete (generic term)|cup fungus (generic term)
+peziza domicilina|1
+(noun)|Peziza domicilina|discomycete (generic term)|cup fungus (generic term)
+pezizaceae|1
+(noun)|Pezizaceae|family Pezizaceae|fungus family (generic term)
+pezizales|1
+(noun)|Pezizales|order Pezizales|fungus order (generic term)
+pezophaps|1
+(noun)|Pezophaps|genus Pezophaps|bird genus (generic term)
+pezophaps solitaria|1
+(noun)|solitaire|Pezophaps solitaria|columbiform bird (generic term)
+pfalz|1
+(noun)|Palatinate|Pfalz|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+pfannkuchen|1
+(noun)|german pancake|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+pfc|1
+(noun)|perfluorocarbon|PFC|fluorocarbon (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+pfennig|1
+(noun)|German monetary unit (generic term)
+pflp|1
+(noun)|Popular Front for the Liberation of Palestine|PFLP|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pflp-gc|1
+(noun)|Popular Front for the Liberation of Palestine-General Command|PFLP-GC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ph|1
+(noun)|pH|pH scale|hydrogen ion concentration (generic term)
+ph.d.|1
+(noun)|Ph.D.|PhD|Doctor of Philosophy (generic term)
+ph scale|1
+(noun)|pH|pH scale|hydrogen ion concentration (generic term)
+phacelia|1
+(noun)|scorpionweed|scorpion weed|flower (generic term)
+phacelia campanularia|1
+(noun)|California bluebell|Phacelia campanularia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+phacelia minor|1
+(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+phacelia tanacetifolia|1
+(noun)|fiddleneck|Phacelia tanacetifolia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+phacelia whitlavia|1
+(noun)|California bluebell|whitlavia|Phacelia minor|Phacelia whitlavia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+phacochoerus|1
+(noun)|Phacochoerus|genus Phacochoerus|mammal genus (generic term)
+phaeochromocytoma|1
+(noun)|pheochromocytoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+phaeophyceae|1
+(noun)|Phaeophyceae|class Phaeophyceae|class (generic term)
+phaeophyta|1
+(noun)|Phaeophyta|division Phaeophyta|division (generic term)
+phaethon|2
+(noun)|Phaethon|Greek deity (generic term)
+(noun)|Phaethon|genus Phaethon|bird genus (generic term)
+phaethontidae|1
+(noun)|Phaethontidae|family Phaethontidae|bird family (generic term)
+phaeton|1
+(noun)|touring car|tourer|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+phage|1
+(noun)|bacteriophage|virus (generic term)
+phagocyte|1
+(noun)|scavenger cell|somatic cell (generic term)|vegetative cell (generic term)
+phagocytic|1
+(adj)|somatic cell|vegetative cell (related term)
+phagocytosis|1
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+phagun|1
+(noun)|Phagun|Phalguna|Hindu calendar month (generic term)
+phaius|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+phalacrocoracidae|1
+(noun)|Phalacrocoracidae|family Phalacrocoracidae|bird family (generic term)
+phalacrocorax|1
+(noun)|Phalacrocorax|genus Phalacrocorax|bird genus (generic term)
+phalacrocorax carbo|1
+(noun)|cormorant|Phalacrocorax carbo|pelecaniform seabird (generic term)
+phalacrosis|1
+(noun)|baldness|hairlessness (generic term)|depilation (generic term)
+phalaenopsis|1
+(noun)|Phalaenopsis|genus Phalaenopsis|monocot genus (generic term)|liliopsid genus (generic term)
+phalaenopsis amabilis|1
+(noun)|butterfly plant|Phalaenopsis amabilis|moth orchid (generic term)|moth plant (generic term)
+phalaenoptilus|1
+(noun)|Phalaenoptilus|genus Phalaenoptilus|bird genus (generic term)
+phalaenoptilus nuttallii|1
+(noun)|poorwill|Phalaenoptilus nuttallii|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+phalangeal|1
+(adj)|bone|os (related term)
+phalanger|1
+(noun)|opossum|possum|marsupial (generic term)|pouched mammal (generic term)
+phalangeridae|1
+(noun)|Phalangeridae|family Phalangeridae|mammal family (generic term)
+phalangida|1
+(noun)|Phalangida|order Phalangida|Opiliones|order Opiliones|animal order (generic term)
+phalangiidae|1
+(noun)|Phalangiidae|family Phalangiidae|arthropod family (generic term)
+phalangist|1
+(noun)|falangist|fascist (generic term)
+phalangitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+phalangium|1
+(noun)|Phalangium|genus Phalangium|arthropod genus (generic term)
+phalangium opilio|1
+(noun)|harvestman|daddy longlegs|Phalangium opilio|arachnid (generic term)|arachnoid (generic term)
+phalanx|3
+(noun)|bone (generic term)|os (generic term)
+(noun)|crowd (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+phalaris|1
+(noun)|Phalaris|genus Phalaris|monocot genus (generic term)|liliopsid genus (generic term)
+phalaris aquatica|1
+(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass (generic term)
+phalaris arundinacea|1
+(noun)|reed canary grass|gardener's garters|lady's laces|ribbon grass|Phalaris arundinacea|grass (generic term)
+phalaris canariensis|1
+(noun)|canary grass|birdseed grass|Phalaris canariensis|grass (generic term)
+phalaris tuberosa|1
+(noun)|hardinggrass|Harding grass|toowomba canary grass|Phalaris aquatica|Phalaris tuberosa|grass (generic term)
+phalarope|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+phalaropidae|1
+(noun)|Phalaropidae|family Phalaropidae|bird family (generic term)
+phalaropus|1
+(noun)|Phalaropus|genus Phalaropus|bird genus (generic term)
+phalaropus fulicarius|1
+(noun)|red phalarope|Phalaropus fulicarius|phalarope (generic term)
+phalguna|1
+(noun)|Phagun|Phalguna|Hindu calendar month (generic term)
+phallaceae|1
+(noun)|Phallaceae|family Phallaceae|fungus family (generic term)
+phallales|1
+(noun)|Phallales|order Phallales|fungus genus (generic term)
+phallic|2
+(adj)|erectile organ (related term)
+(adj)|priapic|male (similar term)
+phallic phase|1
+(noun)|phallic stage|phase (generic term)|stage (generic term)
+phallic stage|1
+(noun)|phallic phase|phase (generic term)|stage (generic term)
+phalloplasty|1
+(noun)|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+phallus|2
+(noun)|Phallus|genus Phallus|fungus genus (generic term)
+(noun)|penis|member|erectile organ (generic term)
+phallus impudicus|1
+(noun)|common stinkhorn|Phallus impudicus|stinkhorn (generic term)|carrion fungus (generic term)
+phallus ravenelii|1
+(noun)|Phallus ravenelii|stinkhorn (generic term)|carrion fungus (generic term)
+phalsa|1
+(noun)|Grewia asiatica|shrub (generic term)|bush (generic term)
+phanerogam|1
+(noun)|spermatophyte|seed plant|vascular plant (generic term)|tracheophyte (generic term)
+phanerogamae|1
+(noun)|Phanerogamae|division (generic term)|Cryptogamia (antonym)
+phaneromania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+phanerozoic|1
+(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon (generic term)|aeon (generic term)
+phanerozoic aeon|1
+(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon (generic term)|aeon (generic term)
+phanerozoic eon|1
+(noun)|Phanerozoic|Phanerozoic eon|Phanerozoic aeon|eon (generic term)|aeon (generic term)
+phantasm|2
+(noun)|apparition|phantom|phantasma|fantasm|specter|spectre|spirit (generic term)|disembodied spirit (generic term)
+(noun)|apparition|phantom|phantasma|fantasm|shadow|illusion (generic term)|semblance (generic term)
+phantasma|2
+(noun)|apparition|phantom|phantasm|fantasm|specter|spectre|spirit (generic term)|disembodied spirit (generic term)
+(noun)|apparition|phantom|phantasm|fantasm|shadow|illusion (generic term)|semblance (generic term)
+phantasmagoria|1
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+phantasmagoric|1
+(adj)|phantasmagorical|surreal|surrealistic|unrealistic (similar term)
+phantasmagorical|1
+(adj)|phantasmagoric|surreal|surrealistic|unrealistic (similar term)
+phantasmal|1
+(adj)|apparitional|ghostlike|ghostly|spectral|spiritual|supernatural (similar term)
+phantasy|3
+(noun)|illusion|fantasy|fancy|misconception (generic term)
+(noun)|fantasy|fiction (generic term)
+(noun)|fantasy|imagination (generic term)|imaginativeness (generic term)|vision (generic term)
+phantasy life|1
+(noun)|fantasy life|fantasy (generic term)|phantasy (generic term)
+phantasy world|1
+(noun)|fantasy world|fairyland|fantasy (generic term)|phantasy (generic term)
+phantom|3
+(adj)|unreal (similar term)
+(noun)|apparition|phantasm|phantasma|fantasm|specter|spectre|spirit (generic term)|disembodied spirit (generic term)
+(noun)|apparition|phantasm|phantasma|fantasm|shadow|illusion (generic term)|semblance (generic term)
+phantom limb|1
+(noun)|illusion (generic term)|semblance (generic term)
+phantom limb pain|1
+(noun)|pain (generic term)|pain sensation (generic term)|painful sensation (generic term)
+phantom limb syndrome|1
+(noun)|syndrome (generic term)
+phantom orchid|1
+(noun)|snow orchid|Eburophyton austinae|orchid (generic term)|orchidaceous plant (generic term)
+pharaoh|1
+(noun)|Pharaoh|Pharaoh of Egypt|ruler (generic term)|swayer (generic term)
+pharaoh's ant|1
+(noun)|pharaoh ant|Monomorium pharaonis|ant (generic term)|emmet (generic term)|pismire (generic term)
+pharaoh's chicken|1
+(noun)|Egyptian vulture|Pharaoh's chicken|Neophron percnopterus|Old World vulture (generic term)
+pharaoh ant|1
+(noun)|pharaoh's ant|Monomorium pharaonis|ant (generic term)|emmet (generic term)|pismire (generic term)
+pharaoh of egypt|1
+(noun)|Pharaoh|Pharaoh of Egypt|ruler (generic term)|swayer (generic term)
+pharaonic|1
+(adj)|Pharaonic|ruler|swayer (related term)
+pharisaic|1
+(adj)|holier-than-thou|pietistic|pietistical|pharisaical|sanctimonious|self-righteous|pious (similar term)
+pharisaical|1
+(adj)|holier-than-thou|pietistic|pietistical|pharisaic|sanctimonious|self-righteous|pious (similar term)
+pharisee|2
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|Pharisee|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+pharma|1
+(noun)|drug company|pharmaceutical company|company (generic term)
+pharmaceutic|2
+(adj)|pharmaceutical|medicine|medical specialty (related term)|health professional|health care provider|caregiver (related term)
+(noun)|pharmaceutical|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+pharmaceutical|3
+(adj)|pharmaceutic|medicine|medical specialty (related term)|health professional|health care provider|caregiver (related term)
+(adj)|medicine|medication|medicament|medicinal drug (related term)
+(noun)|pharmaceutic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+pharmaceutical chemist|1
+(noun)|pharmacologist|pharmacist (generic term)|druggist (generic term)|chemist (generic term)|apothecary (generic term)|pill pusher (generic term)|pill roller (generic term)
+pharmaceutical company|1
+(noun)|drug company|pharma|company (generic term)
+pharmaceutics|1
+(noun)|pharmacy|medicine (generic term)|medical specialty (generic term)
+pharmacist|1
+(noun)|druggist|chemist|apothecary|pill pusher|pill roller|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+pharmacogenetics|1
+(noun)|genetics (generic term)|genetic science (generic term)
+pharmacokinetics|1
+(noun)|pharmacology (generic term)|pharmacological medicine (generic term)|materia medica (generic term)
+pharmacologic|1
+(adj)|pharmacological|medicine|medical specialty (related term)
+pharmacological|1
+(adj)|pharmacologic|medicine|medical specialty (related term)
+pharmacological medicine|1
+(noun)|pharmacology|materia medica|medicine (generic term)|medical specialty (generic term)
+pharmacologist|1
+(noun)|pharmaceutical chemist|pharmacist (generic term)|druggist (generic term)|chemist (generic term)|apothecary (generic term)|pill pusher (generic term)|pill roller (generic term)
+pharmacology|1
+(noun)|pharmacological medicine|materia medica|medicine (generic term)|medical specialty (generic term)
+pharmacopeia|1
+(noun)|formulary|book (generic term)
+pharmacopoeia|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+pharmacy|2
+(noun)|pharmaceutics|medicine (generic term)|medical specialty (generic term)
+(noun)|drugstore|apothecary's shop|chemist's|chemist's shop|shop (generic term)|store (generic term)
+pharomacrus|1
+(noun)|Pharomacrus|genus Pharomacrus|bird genus (generic term)
+pharomacrus mocino|1
+(noun)|resplendent quetzel|resplendent trogon|Pharomacrus mocino|quetzal (generic term)|quetzal bird (generic term)
+pharos|1
+(noun)|beacon|lighthouse|beacon light|tower (generic term)
+pharsalus|1
+(noun)|Pharsalus|battle of Pharsalus|pitched battle (generic term)
+pharyngeal|2
+(adj)|tubular cavity (related term)
+(noun)|guttural|guttural consonant|pharyngeal consonant|consonant (generic term)
+pharyngeal consonant|1
+(noun)|guttural|guttural consonant|pharyngeal|consonant (generic term)
+pharyngeal recess|1
+(noun)|recess (generic term)|recession (generic term)|niche (generic term)|corner (generic term)
+pharyngeal reflex|1
+(noun)|gag reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+pharyngeal tonsil|1
+(noun)|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+pharyngeal vein|1
+(noun)|vena pharyngeus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pharyngitis|1
+(noun)|sore throat|raw throat|inflammatory disease (generic term)
+pharynx|1
+(noun)|throat|tubular cavity (generic term)
+phascogale|1
+(noun)|Phascogale|genus Phascogale|mammal genus (generic term)
+phascolarctos|1
+(noun)|Phascolarctos|genus Phascolarctos|mammal genus (generic term)
+phascolarctos cinereus|1
+(noun)|koala|koala bear|kangaroo bear|native bear|Phascolarctos cinereus|phalanger (generic term)|opossum (generic term)|possum (generic term)
+phase|6
+(noun)|form|state of matter (generic term)|state (generic term)
+(noun)|stage|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|phase angle|point (generic term)|point in time (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(verb)|stage (generic term)|arrange (generic term)
+(verb)|synchronize (generic term)|synchronise (generic term)|sync (generic term)
+phase-out|1
+(noun)|discontinuance (generic term)|discontinuation (generic term)
+phase angle|1
+(noun)|phase|point (generic term)|point in time (generic term)
+phase change|1
+(noun)|phase transition|state change|physical change|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+phase i|1
+(noun)|phase I clinical trial|phase I|clinical trial (generic term)|clinical test (generic term)
+phase i clinical trial|1
+(noun)|phase I clinical trial|phase I|clinical trial (generic term)|clinical test (generic term)
+phase ii|1
+(noun)|phase II clinical trial|phase II|clinical trial (generic term)|clinical test (generic term)
+phase ii clinical trial|1
+(noun)|phase II clinical trial|phase II|clinical trial (generic term)|clinical test (generic term)
+phase iii|1
+(noun)|phase III clinical trial|phase III|clinical trial (generic term)|clinical test (generic term)
+phase iii clinical trial|1
+(noun)|phase III clinical trial|phase III|clinical trial (generic term)|clinical test (generic term)
+phase in|1
+(verb)|introduce (generic term)|innovate (generic term)|phase out (antonym)
+phase iv|1
+(noun)|phase IV clinical trials|phase IV|clinical trial (generic term)|clinical test (generic term)
+phase iv clinical trials|1
+(noun)|phase IV clinical trials|phase IV|clinical trial (generic term)|clinical test (generic term)
+phase modulation|1
+(noun)|PM|modulation (generic term)
+phase of cell division|1
+(noun)|phase (generic term)|stage (generic term)
+phase of the moon|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|phase (generic term)
+phase out|1
+(verb)|end (generic term)|terminate (generic term)|phase in (antonym)
+phase space|1
+(noun)|space (generic term)|infinite (generic term)
+phase transition|1
+(noun)|phase change|state change|physical change|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+phaseolus|1
+(noun)|Phaseolus|genus Phaseolus|rosid dicot genus (generic term)
+phaseolus aconitifolius|1
+(noun)|moth bean|Vigna aconitifolia|Phaseolus aconitifolius|legume (generic term)|leguminous plant (generic term)
+phaseolus acutifolius latifolius|1
+(noun)|tepary bean|Phaseolus acutifolius latifolius|shell bean (generic term)|shell bean plant (generic term)
+phaseolus angularis|1
+(noun)|adzuki bean|adsuki bean|Vigna angularis|Phaseolus angularis|legume (generic term)|leguminous plant (generic term)
+phaseolus aureus|1
+(noun)|mung|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+phaseolus caracalla|1
+(noun)|snailflower|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+phaseolus coccineus|1
+(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+phaseolus limensis|1
+(noun)|lima bean|lima bean plant|Phaseolus limensis|shell bean (generic term)|shell bean plant (generic term)
+phaseolus lunatus|1
+(noun)|sieva bean|butter bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean (generic term)|shell bean plant (generic term)
+phaseolus multiflorus|1
+(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+phaseolus vulgaris|1
+(noun)|common bean|common bean plant|Phaseolus vulgaris|bush bean (generic term)
+phasianid|1
+(noun)|game bird (generic term)
+phasianidae|1
+(noun)|Phasianidae|family Phasianidae|bird family (generic term)
+phasianus|1
+(noun)|Phasianus|genus Phasianus|bird genus (generic term)
+phasianus colchicus|1
+(noun)|ring-necked pheasant|Phasianus colchicus|pheasant (generic term)
+phasmatidae|1
+(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family (generic term)
+phasmatodea|1
+(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order (generic term)
+phasmid|1
+(noun)|phasmid insect|insect (generic term)
+phasmid insect|1
+(noun)|phasmid|insect (generic term)
+phasmida|1
+(noun)|Phasmida|order Phasmida|Phasmatodea|order Phasmatodea|animal order (generic term)
+phasmidae|1
+(noun)|Phasmidae|family Phasmidae|Phasmatidae|family Phasmatidae|arthropod family (generic term)
+phasmidia|1
+(noun)|Phasmidia|class Phasmidia|class (generic term)
+phatic communication|1
+(noun)|phatic speech|conversation (generic term)
+phatic speech|1
+(noun)|phatic communication|conversation (generic term)
+phd|1
+(noun)|Ph.D.|PhD|Doctor of Philosophy (generic term)
+pheasant|2
+(noun)|phasianid (generic term)
+(noun)|wildfowl (generic term)
+pheasant's-eye|1
+(noun)|Adonis annua|flower (generic term)
+pheasant coucal|1
+(noun)|pheasant cuckoo|Centropus phasianinus|coucal (generic term)
+pheasant cuckoo|1
+(noun)|pheasant coucal|Centropus phasianinus|coucal (generic term)
+pheasant under glass|1
+(noun)|dish (generic term)
+phegopteris|1
+(noun)|Phegopteris|genus Phegopteris|fern genus (generic term)
+phegopteris connectilis|1
+(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+phegopteris hexagonoptera|1
+(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern (generic term)
+pheidias|1
+(noun)|Phidias|Pheidias|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+phellem|1
+(noun)|cork|bark (generic term)
+phellodendron|1
+(noun)|Phellodendron|genus Phellodendron|rosid dicot genus (generic term)
+phellodendron amurense|1
+(noun)|cork tree|Phellodendron amurense|tree (generic term)
+phenacetin|1
+(noun)|acetophenetidin|acetphenetidin|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+phenacomys|1
+(noun)|vole (generic term)|field mouse (generic term)
+phenaphen|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+phenazopyridine|1
+(noun)|Pyridium|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+phencyclidine|1
+(noun)|phencyclidine hydrochloride|PCP|angel dust|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+phencyclidine hydrochloride|1
+(noun)|phencyclidine|PCP|angel dust|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+phenelzine|1
+(noun)|Nardil|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+phenergan|1
+(noun)|promethazine|Phenergan|antihistamine (generic term)|antiemetic (generic term)|antiemetic drug (generic term)
+phenicia|1
+(noun)|Phoenicia|Phenicia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+pheniramine|1
+(noun)|antihistamine (generic term)
+pheno-safranine|1
+(noun)|safranine (generic term)|safranin (generic term)|saffranine (generic term)
+phenobarbital|1
+(noun)|sodium thiopental|phenobarbitone|Luminal|purple heart|barbiturate (generic term)
+phenobarbitone|1
+(noun)|sodium thiopental|phenobarbital|Luminal|purple heart|barbiturate (generic term)
+phenol|2
+(noun)|organic compound (generic term)
+(noun)|carbolic acid|hydroxybenzene|oxybenzene|phenylic acid|acid (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+phenolic|1
+(noun)|phenolic resin|phenoplast|synthetic resin (generic term)
+phenolic plastic|1
+(noun)|phenolic urea|plastic (generic term)
+phenolic resin|1
+(noun)|phenolic|phenoplast|synthetic resin (generic term)
+phenolic urea|1
+(noun)|phenolic plastic|plastic (generic term)
+phenolphthalein|1
+(noun)|laxative (generic term)|acid-base indicator (generic term)
+phenomenal|2
+(adj)|process|physical process (related term)
+(adj)|fantastic|extraordinary (similar term)
+phenomenology|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+phenomenon|2
+(noun)|process (generic term)|physical process (generic term)
+(noun)|development (generic term)
+phenoplast|1
+(noun)|phenolic resin|phenolic|synthetic resin (generic term)
+phenothiazine|1
+(noun)|thiodiphenylamine|thiazine (generic term)
+phenotype|1
+(noun)|constitution (generic term)|composition (generic term)|makeup (generic term)
+phenotypic|1
+(adj)|phenotypical|constitution|composition|makeup (related term)
+phenotypical|1
+(adj)|phenotypic|constitution|composition|makeup (related term)
+phenoxymethyl penicillin|1
+(noun)|penicillin V|penicillin (generic term)
+phensuximide|1
+(noun)|Milontin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+phentolamine|1
+(noun)|Vasomax|virility drug (generic term)|anti-impotence drug (generic term)
+phenyl salicylate|1
+(noun)|salol|salicylate (generic term)
+phenylacetamide|1
+(noun)|acetanilide|acetanilid|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+phenylalanine|1
+(noun)|essential amino acid (generic term)
+phenylamine|1
+(noun)|aniline|aniline oil|aminobenzine|amine (generic term)|aminoalkane (generic term)
+phenylbutazone|1
+(noun)|Butazolidin|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+phenylephrine|1
+(noun)|adrenergic (generic term)|adrenergic drug (generic term)
+phenylethylene|1
+(noun)|styrene|cinnamene|vinylbenzene|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+phenylic acid|1
+(noun)|carbolic acid|phenol|hydroxybenzene|oxybenzene|acid (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+phenylketonuria|1
+(noun)|PKU|inborn error of metabolism (generic term)
+phenylpropanolamine|1
+(noun)|adrenergic (generic term)|adrenergic drug (generic term)
+phenyltoloxamine|1
+(noun)|antihistamine (generic term)
+phenytoin|1
+(noun)|diphenylhydantoin|Dilantin|hydantoin (generic term)
+pheochromocytoma|1
+(noun)|phaeochromocytoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+pheresis|1
+(noun)|apheresis|dialysis (generic term)
+pheromone|1
+(noun)|secretion (generic term)
+phi|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+phi coefficient|1
+(noun)|phi correlation|fourfold point correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+phi correlation|1
+(noun)|phi coefficient|fourfold point correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+phial|1
+(noun)|vial|ampule|ampul|ampoule|bottle (generic term)
+phidias|1
+(noun)|Phidias|Pheidias|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+phil anderson|1
+(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist (generic term)
+philadelphaceae|1
+(noun)|Philadelphaceae|subfamily Philadelphaceae|rosid dicot family (generic term)
+philadelphia|1
+(noun)|Philadelphia|City of Brotherly Love|city (generic term)|metropolis (generic term)|urban center (generic term)
+philadelphia fleabane|1
+(noun)|Philadelphia fleabane|Erigeron philadelphicus|fleabane (generic term)
+philadelphia pepper pot|1
+(noun)|pepper pot|Philadelphia pepper pot|soup (generic term)
+philadelphus|1
+(noun)|shrub (generic term)|bush (generic term)
+philadelphus coronarius|1
+(noun)|mock orange|syringa|Philadelphus coronarius|philadelphus (generic term)
+philaenus|1
+(noun)|Philaenus|genus Philaenus|arthropod genus (generic term)
+philaenus spumarius|1
+(noun)|meadow spittlebug|Philaenus spumarius|spittle insect (generic term)|spittlebug (generic term)
+philander|2
+(verb)|womanize|womanise|interact (generic term)
+(verb)|chat up|flirt|dally|butterfly|coquet|coquette|romance|mash|talk (generic term)|speak (generic term)
+philanderer|1
+(noun)|womanizer|womaniser|libertine (generic term)|debauchee (generic term)|rounder (generic term)|man (generic term)|adult male (generic term)
+philanthropic|2
+(adj)|beneficent|benevolent|eleemosynary|charitable (similar term)
+(adj)|financial aid (related term)
+philanthropic foundation|1
+(noun)|charity (generic term)
+philanthropic gift|1
+(noun)|philanthropy|financial aid (generic term)
+philanthropist|1
+(noun)|altruist|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+philanthropy|1
+(noun)|philanthropic gift|financial aid (generic term)
+philatelic|1
+(adj)|philatelical|collection|collecting|assembling|aggregation (related term)
+philatelical|1
+(adj)|philatelic|collection|collecting|assembling|aggregation (related term)
+philatelist|1
+(noun)|stamp collector|collector (generic term)|aggregator (generic term)
+philately|1
+(noun)|stamp collecting|stamp collection|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+philemon|3
+(noun)|Philemon|countryman (generic term)
+(noun)|Philemon|Colossian (generic term)
+(noun)|Epistle of Paul the Apostle to Philemon|Epistle to Philemon|Philemon|Epistle (generic term)|New Testament (generic term)
+philharmonic|3
+(adj)|musical organization|musical organisation|musical group (related term)
+(adj)|musical (similar term)
+(noun)|symphony orchestra|symphony|orchestra (generic term)
+philharmonic pitch|1
+(noun)|concert pitch|international pitch|pitch (generic term)
+philhellene|2
+(adj)|philhellenic|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend (related term)
+(noun)|philhellenist|Graecophile|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+philhellenic|1
+(adj)|philhellene|Graecophile|Graecophilic|supporter|protagonist|champion|admirer|booster|friend (related term)
+philhellenism|1
+(noun)|admiration (generic term)|esteem (generic term)
+philhellenist|1
+(noun)|philhellene|Graecophile|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+philia|1
+(noun)|affection|affectionateness|fondness|tenderness|heart|warmness|warmheartedness|feeling (generic term)
+philibert de l'orme|1
+(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect (generic term)|designer (generic term)
+philibert delorme|1
+(noun)|Delorme|Philibert Delorme|de l'Orme|Philibert de l'Orme|architect (generic term)|designer (generic term)
+philip|1
+(noun)|Philip|Prince Philip|Duke of Edinburgh|prince (generic term)
+philip anderson|1
+(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist (generic term)
+philip augustus|1
+(noun)|Philip II|Philip Augustus|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip dormer stanhope|1
+(noun)|Chesterfield|Fourth Earl of Chesterfield|Philip Dormer Stanhope|statesman (generic term)|solon (generic term)|national leader (generic term)
+philip ii|3
+(noun)|Philip II|Philip Augustus|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Philip II|Philip II of Macedon|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Philip II|Philip II of Spain|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip ii of macedon|1
+(noun)|Philip II|Philip II of Macedon|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip ii of spain|1
+(noun)|Philip II|Philip II of Spain|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip marlowe|1
+(noun)|Marlowe|Philip Marlowe|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+philip michael ondaatje|1
+(noun)|Ondaatje|Michael Ondaatje|Philip Michael Ondaatje|writer (generic term)|author (generic term)
+philip milton roth|1
+(noun)|Roth|Philip Roth|Philip Milton Roth|writer (generic term)|author (generic term)
+philip of valois|1
+(noun)|Philip VI|Philip of Valois|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip roth|1
+(noun)|Roth|Philip Roth|Philip Milton Roth|writer (generic term)|author (generic term)
+philip v|1
+(noun)|Philip V|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip vi|1
+(noun)|Philip VI|Philip of Valois|king (generic term)|male monarch (generic term)|Rex (generic term)
+philip warren anderson|1
+(noun)|Anderson|Philip Anderson|Philip Warren Anderson|Phil Anderson|physicist (generic term)
+philipp lenard|1
+(noun)|Lenard|Philipp Lenard|physicist (generic term)
+philipp melanchthon|1
+(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+philipp schwarzerd|1
+(noun)|Melanchthon|Philipp Melanchthon|Philipp Schwarzerd|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+philippi|2
+(noun)|Philippi|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Philippi|battle of Philippi|pitched battle (generic term)
+philippian|1
+(noun)|Philippian|Macedonian (generic term)
+philippians|1
+(noun)|Epistle of Paul the Apostle to the Philippians|Epistle to the Philippians|Philippians|Epistle (generic term)
+philippic|1
+(noun)|tirade|broadside|denunciation (generic term)|denouncement (generic term)|declamation (generic term)
+philippine|2
+(adj)|Filipino|Philippine|country|state|land (related term)
+(noun)|Philippine|Filipino|Western Malayo-Polynesian (generic term)
+philippine cedar|1
+(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany (generic term)|mahogany tree (generic term)
+philippine islands|1
+(noun)|Philippines|Philippine Islands|archipelago (generic term)
+philippine mahogany|2
+(noun)|Philippine mahogany|mahogany (generic term)
+(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany (generic term)|mahogany tree (generic term)
+philippine monetary unit|1
+(noun)|Philippine monetary unit|monetary unit (generic term)
+philippine peso|1
+(noun)|Philippine peso|peso|Philippine monetary unit (generic term)
+philippine sea|1
+(noun)|Philippine Sea|battle of the Philippine Sea|naval battle (generic term)
+philippines|2
+(noun)|Philippines|Republic of the Philippines|country (generic term)|state (generic term)|land (generic term)
+(noun)|Philippines|Philippine Islands|archipelago (generic term)
+philippopolis|1
+(noun)|Plovdiv|Philippopolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+philippus aureolus paracelsus|1
+(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+philistia|1
+(noun)|Philistia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+philistine|4
+(adj)|Philistine|inhabitant|habitant|dweller|denizen|indweller (related term)|geographical area|geographic area|geographical region|geographic region (related term)
+(adj)|anti-intellectual|nonintellectual (similar term)
+(noun)|anti-intellectual|lowbrow|plebeian (generic term)|pleb (generic term)
+(noun)|Philistine|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+philistinism|1
+(noun)|materialism|desire (generic term)
+phillidae|1
+(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family (generic term)
+phillips screw|1
+(noun)|Phillips screw|screw (generic term)
+phillips screwdriver|1
+(noun)|Phillips screwdriver|screwdriver (generic term)
+phillipsite|1
+(noun)|zeolite (generic term)
+phillis wheatley|1
+(noun)|Wheatley|Phillis Wheatley|poet (generic term)
+phillyrea|1
+(noun)|Phillyrea|genus Phillyrea|dicot genus (generic term)|magnoliopsid genus (generic term)
+philodendron|1
+(noun)|liana (generic term)
+philogyny|1
+(noun)|admiration (generic term)|esteem (generic term)|misogyny (antonym)
+philohela|1
+(noun)|Philohela|genus Philohela|bird genus (generic term)
+philohela minor|1
+(noun)|American woodcock|woodcock snipe|Philohela minor|woodcock (generic term)
+philological|1
+(adj)|humanistic discipline|humanities|liberal arts|arts (related term)
+philologist|1
+(noun)|philologue|humanist (generic term)
+philologue|1
+(noun)|philologist|humanist (generic term)
+philology|1
+(noun)|linguistics|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+philomachus|1
+(noun)|Philomachus|genus Philomachus|bird genus (generic term)
+philomachus pugnax|1
+(noun)|ruff|Philomachus pugnax|sandpiper (generic term)
+philomath|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+philophylla|1
+(noun)|Philophylla|genus Philophylla|arthropod genus (generic term)
+philosopher|2
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+philosopher's stone|1
+(noun)|philosophers' stone|elixir|substance (generic term)|matter (generic term)
+philosopher's wool|1
+(noun)|zinc oxide|flowers of zinc|philosophers' wool|oxide (generic term)
+philosophers' stone|1
+(noun)|philosopher's stone|elixir|substance (generic term)|matter (generic term)
+philosophers' wool|1
+(noun)|zinc oxide|flowers of zinc|philosopher's wool|oxide (generic term)
+philosophic|3
+(adj)|philosophical|humanistic discipline|humanities|liberal arts|arts (related term)
+(adj)|philosophical|ideological (similar term)|ideologic (similar term)|nonphilosophical (antonym)
+(adj)|philosophical|unemotional (similar term)
+philosophical|3
+(adj)|philosophic|humanistic discipline|humanities|liberal arts|arts (related term)
+(adj)|philosophic|unemotional (similar term)
+(adj)|philosophic|ideological (similar term)|ideologic (similar term)|nonphilosophical (antonym)
+philosophical doctrine|1
+(noun)|philosophical theory|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+philosophical system|1
+(noun)|doctrine|philosophy|school of thought|ism|belief (generic term)
+philosophical theory|1
+(noun)|philosophical doctrine|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+philosophise|1
+(verb)|philosophize|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+philosophiser|1
+(noun)|philosophizer|thinker (generic term)
+philosophize|1
+(verb)|philosophise|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+philosophizer|1
+(noun)|philosophiser|thinker (generic term)
+philosophizing|1
+(noun)|exposition (generic term)|expounding (generic term)
+philosophy|3
+(noun)|doctrine|philosophical system|school of thought|ism|belief (generic term)
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+(noun)|belief (generic term)
+philosophy department|1
+(noun)|department of philosophy|academic department (generic term)
+philter|1
+(noun)|philtre|love-potion|love-philter|love-philtre|potion (generic term)
+philtre|1
+(noun)|philter|love-potion|love-philter|love-philtre|potion (generic term)
+phimosis|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+phineas taylor barnum|1
+(noun)|Barnum|P. T. Barnum|Phineas Taylor Barnum|showman (generic term)|promoter (generic term)|impresario (generic term)
+phintias|1
+(noun)|Phintias|Pythias|friend (generic term)
+phiz|2
+(noun)|Browne|Hablot Knight Browne|Phiz|illustrator (generic term)
+(noun)|countenance|physiognomy|visage|kisser|smiler|mug|face (generic term)|human face (generic term)
+phlebectomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+phlebitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+phlebodium|1
+(noun)|Phlebodium|genus Phlebodium|fern genus (generic term)
+phlebodium aureum|1
+(noun)|golden polypody|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern (generic term)
+phlebogram|1
+(noun)|venogram|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+phlebothrombosis|1
+(noun)|venous thrombosis|thrombosis (generic term)
+phlebotomise|1
+(verb)|bleed|leech|phlebotomize|treat (generic term)|care for (generic term)
+phlebotomist|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+phlebotomize|1
+(verb)|bleed|leech|phlebotomise|treat (generic term)|care for (generic term)
+phlebotomus|2
+(noun)|sandfly fever|pappataci fever|disease (generic term)
+(noun)|Phlebotomus|genus Phlebotomus|arthropod genus (generic term)
+phlebotomus papatasii|1
+(noun)|sand fly|sandfly|Phlebotomus papatasii|gnat (generic term)
+phlebotomy|1
+(noun)|venesection|incision (generic term)|section (generic term)|surgical incision (generic term)|bloodletting (generic term)
+phlegm|3
+(noun)|emotionlessness|impassivity|impassiveness|indifference|stolidity|unemotionality|apathy (generic term)
+(noun)|sputum|mucus (generic term)|mucous secretion (generic term)
+(noun)|languor|lethargy|sluggishness|flatness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+phlegmasia alba dolens|1
+(noun)|milk leg|white leg|thrombosis (generic term)
+phlegmatic|1
+(adj)|phlegmatical|unemotional (similar term)
+phlegmatical|1
+(adj)|phlegmatic|unemotional (similar term)
+phlegmy|1
+(adj)|loose (similar term)|dry (antonym)
+phleum|1
+(noun)|Phleum|genus Phleum|monocot genus (generic term)|liliopsid genus (generic term)
+phleum pratense|1
+(noun)|timothy|herd's grass|Phleum pratense|grass (generic term)
+phloem|1
+(noun)|bast|vascular tissue (generic term)
+phlogiston|1
+(noun)|substance (generic term)|matter (generic term)
+phlogopite|1
+(noun)|mica (generic term)|isinglass (generic term)
+phlomis|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+phlomis fruticosa|1
+(noun)|Jerusalem sage|Phlomis fruticosa|subshrub (generic term)|suffrutex (generic term)
+phlox|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+phlox bifida|1
+(noun)|chickweed phlox|sand phlox|Phlox bifida|Phlox stellaria|phlox (generic term)
+phlox family|1
+(noun)|Polemoniaceae|family Polemoniaceae|asterid dicot family (generic term)
+phlox stellaria|1
+(noun)|chickweed phlox|sand phlox|Phlox bifida|Phlox stellaria|phlox (generic term)
+phlox subulata|1
+(noun)|moss pink|mountain phlox|moss phlox|dwarf phlox|Phlox subulata|phlox (generic term)
+phnom penh|1
+(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital (generic term)
+phobia|1
+(noun)|phobic disorder|phobic neurosis|anxiety disorder (generic term)
+phobic|1
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+phobic disorder|1
+(noun)|phobia|phobic neurosis|anxiety disorder (generic term)
+phobic neurosis|1
+(noun)|phobia|phobic disorder|anxiety disorder (generic term)
+phobophobia|1
+(noun)|simple phobia (generic term)
+phobos|1
+(noun)|Phobos|satellite (generic term)
+phoca|1
+(noun)|Phoca|genus Phoca|mammal genus (generic term)
+phoca vitulina|1
+(noun)|harbor seal|common seal|Phoca vitulina|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+phocaena|1
+(noun)|Phocaena|genus Phocaena|mammal genus (generic term)
+phocaena phocaena|1
+(noun)|harbor porpoise|herring hog|Phocaena phocaena|porpoise (generic term)
+phocaena sinus|1
+(noun)|vaquita|Phocaena sinus|porpoise (generic term)
+phocidae|1
+(noun)|Phocidae|family Phocidae|mammal family (generic term)
+phocine|1
+(adj)|pinniped mammal|pinniped|pinnatiped (related term)
+phocomelia|1
+(noun)|seal limbs|meromelia (generic term)
+phoebe|3
+(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|Phoebe|Titaness (generic term)
+(noun)|phoebe bird|Sayornis phoebe|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+phoebe bird|1
+(noun)|phoebe|Sayornis phoebe|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+phoebus|1
+(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity (generic term)
+phoebus apollo|1
+(noun)|Apollo|Phoebus|Phoebus Apollo|Greek deity (generic term)
+phoenicia|1
+(noun)|Phoenicia|Phenicia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+phoenician|3
+(adj)|Phoenician|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Phoenician|Semite (generic term)
+(noun)|Phoenician|Canaanitic (generic term)|Canaanitic language (generic term)
+phoenicophorium|1
+(noun)|genus Phoenicophorium|monocot genus (generic term)|liliopsid genus (generic term)
+phoenicopteridae|1
+(noun)|Phoenicopteridae|family Phoenicopteridae|bird family (generic term)
+phoeniculidae|1
+(noun)|Phoeniculidae|family Phoeniculidae|bird family (generic term)
+phoeniculus|1
+(noun)|Phoeniculus|genus Phoeniculus|bird genus (generic term)
+phoenicurus|1
+(noun)|Phoenicurus|genus Phoenicurus|bird genus (generic term)
+phoenix|4
+(noun)|Phoenix|capital of Arizona|state capital (generic term)
+(noun)|genus Phoenix|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|mythical being (generic term)
+(noun)|Phoenix|constellation (generic term)
+phoenix dactylifera|1
+(noun)|date palm|Phoenix dactylifera|feather palm (generic term)
+phoenix tree|1
+(noun)|Chinese parasol tree|Chinese parasol|Japanese varnish tree|Firmiana simplex|tree (generic term)
+pholadidae|1
+(noun)|Pholadidae|family Pholadidae|mollusk family (generic term)
+pholas|1
+(noun)|Pholas|genus Pholas|mollusk genus (generic term)
+pholidae|1
+(noun)|Pholidae|family Pholidae|family Pholididae|fish family (generic term)
+pholidota|2
+(noun)|Pholidota|genus Pholidota|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|Pholidota|order Pholidota|animal order (generic term)
+pholiota|1
+(noun)|Pholiota|genus Pholiota|fungus genus (generic term)
+pholiota astragalina|1
+(noun)|Pholiota astragalina|agaric (generic term)
+pholiota aurea|1
+(noun)|Pholiota aurea|golden pholiota|agaric (generic term)
+pholiota destruens|1
+(noun)|Pholiota destruens|agaric (generic term)
+pholiota flammans|1
+(noun)|Pholiota flammans|agaric (generic term)
+pholiota flavida|1
+(noun)|Pholiota flavida|agaric (generic term)
+pholiota nameko|1
+(noun)|nameko|viscid mushroom|Pholiota nameko|agaric (generic term)
+pholiota squarrosa|1
+(noun)|Pholiota squarrosa|scaly pholiota|agaric (generic term)
+pholiota squarrosa-adiposa|1
+(noun)|Pholiota squarrosa-adiposa|agaric (generic term)
+pholiota squarrosoides|1
+(noun)|Pholiota squarrosoides|agaric (generic term)
+pholis|1
+(noun)|Pholis|genus Pholis|fish genus (generic term)
+pholis gunnellus|1
+(noun)|rock gunnel|butterfish|Pholis gunnellus|gunnel (generic term)|bracketed blenny (generic term)
+pholistoma|1
+(noun)|Pholistoma|genus Pholistoma|asterid dicot genus (generic term)
+pholistoma auritum|1
+(noun)|fiesta flower|Pholistoma auritum|Nemophila aurita|herb (generic term)|herbaceous plant (generic term)
+phon|1
+(noun)|sound unit (generic term)
+phonate|1
+(verb)|vocalize|vocalise|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+phonation|1
+(noun)|voice|vocalization|vocalisation|vocalism|vox|communication (generic term)
+phone|4
+(noun)|telephone|telephone set|electronic equipment (generic term)
+(noun)|speech sound|sound|language unit (generic term)|linguistic unit (generic term)
+(noun)|earphone|earpiece|headphone|electro-acoustic transducer (generic term)
+(verb)|call|telephone|call up|ring|telecommunicate (generic term)
+phone-in|1
+(noun)|talk show (generic term)|chat show (generic term)
+phone bill|1
+(noun)|telephone bill|bill (generic term)|account (generic term)|invoice (generic term)
+phone book|1
+(noun)|phonebook|telephone book|telephone directory|directory (generic term)
+phone booth|1
+(noun)|telephone booth|call box|telephone box|telephone kiosk|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+phone call|1
+(noun)|call|telephone call|telephone (generic term)|telephony (generic term)
+phone card|1
+(noun)|calling card|credit card (generic term)|charge card (generic term)|charge plate (generic term)
+phone company|1
+(noun)|telephone company|telephone service|phone service|telco|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+phone cord|1
+(noun)|telephone cord|telephone wire (generic term)|telephone line (generic term)|telegraph wire (generic term)|telegraph line (generic term)
+phone jack|1
+(noun)|telephone jack|jack (generic term)
+phone line|1
+(noun)|telephone line|telephone circuit|subscriber line|line|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+phone message|1
+(noun)|telephone message|message (generic term)
+phone number|1
+(noun)|telephone number|number|signal (generic term)|signaling (generic term)|sign (generic term)
+phone plug|1
+(noun)|telephone plug|plug (generic term)|male plug (generic term)
+phone service|1
+(noun)|telephone company|telephone service|phone company|telco|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+phone system|1
+(noun)|telephone system|communication system (generic term)
+phone tapper|1
+(noun)|tapper|wiretapper|eavesdropper (generic term)
+phonebook|1
+(noun)|phone book|telephone book|telephone directory|directory (generic term)
+phoneme|1
+(noun)|phone (generic term)|speech sound (generic term)|sound (generic term)
+phonemic|1
+(adj)|phone|speech sound|sound (related term)
+phonemic system|1
+(noun)|language system (generic term)
+phonemics|1
+(noun)|phonology|descriptive linguistics (generic term)
+phoner|1
+(noun)|caller|caller-up|telephoner|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+phonetic|2
+(adj)|phonic|language unit|linguistic unit (related term)
+(adj)|acoustics (related term)
+phonetic alphabet|1
+(noun)|sound alphabet|alphabet (generic term)
+phonetic symbol|1
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+phonetic transcription|1
+(noun)|transcription (generic term)|written text (generic term)
+phonetician|1
+(noun)|linguist (generic term)|linguistic scientist (generic term)
+phonetics|1
+(noun)|acoustics (generic term)
+phoney|2
+(adj)|bogus|fake|phony|bastard|counterfeit (similar term)|imitative (similar term)
+(noun)|hypocrite|dissembler|dissimulator|phony|pretender|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+phonic|3
+(adj)|teaching reading (related term)
+(adj)|faculty|mental faculty|module (related term)
+(adj)|phonetic|language unit|linguistic unit (related term)
+phonics|1
+(noun)|teaching reading (generic term)
+phonogram|1
+(noun)|written symbol (generic term)|printed symbol (generic term)
+phonogramic|1
+(adj)|written symbol|printed symbol (related term)
+phonograph|1
+(noun)|record player|machine (generic term)
+phonograph album|1
+(noun)|record album|album (generic term)
+phonograph needle|1
+(noun)|needle|stylus (generic term)
+phonograph record|1
+(noun)|phonograph recording|record|disk|disc|platter|sound recording (generic term)|audio recording (generic term)
+phonograph recording|1
+(noun)|phonograph record|record|disk|disc|platter|sound recording (generic term)|audio recording (generic term)
+phonograph recording disk|1
+(noun)|acetate disk|disk (generic term)|disc (generic term)
+phonologic|1
+(adj)|phonological|descriptive linguistics (related term)
+phonologic system|1
+(noun)|phonological system|language system (generic term)
+phonological|1
+(adj)|phonologic|descriptive linguistics (related term)
+phonological system|1
+(noun)|phonologic system|language system (generic term)
+phonologist|1
+(noun)|linguist (generic term)|linguistic scientist (generic term)
+phonology|1
+(noun)|phonemics|descriptive linguistics (generic term)
+phonophobia|1
+(noun)|acousticophobia|simple phobia (generic term)
+phony|2
+(adj)|bogus|fake|phoney|bastard|counterfeit (similar term)|imitative (similar term)
+(noun)|hypocrite|dissembler|dissimulator|phoney|pretender|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+phoradendron|1
+(noun)|Phoradendron|genus Phoradendron|dilleniid dicot genus (generic term)
+phoradendron flavescens|1
+(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe (generic term)|false mistletoe (generic term)
+phoradendron serotinum|1
+(noun)|American mistletoe|Phoradendron serotinum|Phoradendron flavescens|mistletoe (generic term)|false mistletoe (generic term)
+phoronid|1
+(noun)|invertebrate (generic term)
+phoronida|1
+(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum (generic term)
+phoronidea|1
+(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum (generic term)
+phosgene|1
+(noun)|gas (generic term)
+phosphatase|1
+(noun)|enzyme (generic term)
+phosphate|2
+(noun)|orthophosphate|inorganic phosphate|salt (generic term)
+(noun)|soft drink (generic term)
+phosphate buffer solution|1
+(noun)|PBS|buffer solution (generic term)
+phosphine|1
+(noun)|gas (generic term)|pesticide (generic term)
+phosphocreatine|1
+(noun)|creatine phosphate|creatine phosphoric acid|organic compound (generic term)
+phospholipid|1
+(noun)|lipid (generic term)|lipide (generic term)|lipoid (generic term)
+phosphoprotein|1
+(noun)|protein (generic term)
+phosphor|1
+(noun)|synthetic (generic term)|synthetic substance (generic term)
+phosphor bronze|1
+(noun)|bronze (generic term)
+phosphoresce|1
+(verb)|exhibit (generic term)
+phosphorescence|1
+(noun)|fluorescence (generic term)
+phosphorescent|1
+(adj)|light (similar term)
+phosphoric|1
+(adj)|phosphorous|chemical element|element (related term)
+phosphoric acid|1
+(noun)|orthophosphoric acid|oxyacid (generic term)|oxygen acid (generic term)
+phosphorous|1
+(adj)|phosphoric|chemical element|element (related term)
+phosphorous acid|1
+(noun)|hypophosphorous acid|orthophosphorous acid|oxyacid (generic term)|oxygen acid (generic term)
+phosphorus|2
+(noun)|P|atomic number 15|chemical element (generic term)|element (generic term)
+(noun)|morning star|daystar|Phosphorus|Lucifer|planet (generic term)|major planet (generic term)
+phot|1
+(noun)|illumination unit (generic term)
+photalgia|1
+(noun)|photophobia|pain (generic term)|hurting (generic term)
+photic|1
+(adj)|actinic radiation|actinic ray (related term)
+photinia|1
+(noun)|Photinia|genus Photinia|rosid dicot genus (generic term)
+photinia arbutifolia|1
+(noun)|toyon|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+photius|1
+(noun)|Photius|Patriarch (generic term)
+photo|1
+(noun)|photograph|exposure|pic|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+photo-offset|1
+(noun)|photo-offset printing|offset (generic term)|offset printing (generic term)
+photo-offset printing|1
+(noun)|photo-offset|offset (generic term)|offset printing (generic term)
+photo credit|1
+(noun)|citation (generic term)|cite (generic term)|acknowledgment (generic term)|credit (generic term)|reference (generic term)|mention (generic term)|quotation (generic term)
+photo finish|1
+(noun)|finish (generic term)
+photo op|1
+(noun)|photo opportunity|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+photo opportunity|1
+(noun)|photo op|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+photoblepharon|1
+(noun)|Photoblepharon|genus Photoblepharon|fish genus (generic term)
+photoblepharon palpebratus|1
+(noun)|flashlight fish|Photoblepharon palpebratus|spiny-finned fish (generic term)|acanthopterygian (generic term)
+photocathode|1
+(noun)|cathode (generic term)
+photocell|1
+(noun)|photoelectric cell|photoconductive cell|electric eye|magic eye|transducer (generic term)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+photochemical|1
+(adj)|chemistry|chemical science (related term)
+photochemical exchange|1
+(noun)|exchange (generic term)
+photochemical reaction|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+photochemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+photocoagulation|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+photocoagulator|1
+(noun)|surgical instrument (generic term)
+photoconduction|1
+(noun)|photoconductivity|electrical conduction (generic term)
+photoconductive|1
+(adj)|electrical conduction (related term)
+photoconductive cell|1
+(noun)|photoelectric cell|photocell|electric eye|magic eye|transducer (generic term)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+photoconductivity|1
+(noun)|photoconduction|electrical conduction (generic term)
+photocopier|1
+(noun)|duplicator (generic term)|copier (generic term)
+photocopy|2
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)|copy (generic term)
+(verb)|run off|xerox|reproduce (generic term)
+photoelectric|1
+(adj)|photoelectrical|electricity (related term)|physical phenomenon (related term)
+photoelectric cell|1
+(noun)|photoconductive cell|photocell|electric eye|magic eye|transducer (generic term)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+photoelectric emission|1
+(noun)|emission (generic term)
+photoelectrical|1
+(adj)|photoelectric|electricity (related term)|physical phenomenon (related term)
+photoelectricity|1
+(noun)|electricity (generic term)
+photoelectron|1
+(noun)|electron (generic term)|negatron (generic term)
+photoemission|1
+(noun)|emission (generic term)
+photoemissive|1
+(adj)|emission (related term)
+photoengraving|1
+(noun)|halftone|halftone engraving|engraving (generic term)
+photoflash|1
+(noun)|flash|flash lamp|flashgun|flashbulb|flash bulb|lamp (generic term)|photographic equipment (generic term)
+photoflood|1
+(noun)|flood|floodlight|flood lamp|light (generic term)|light source (generic term)
+photogelatin process|1
+(noun)|collotype|collotype printing|planographic printing (generic term)|planography (generic term)
+photogenic|1
+(adj)|attractive (similar term)
+photogenic epilepsy|1
+(noun)|reflex epilepsy (generic term)
+photograph|2
+(noun)|photo|exposure|pic|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(verb)|snap|shoot|record (generic term)|enter (generic term)|put down (generic term)
+photograph album|1
+(noun)|album (generic term)
+photographer|1
+(noun)|lensman|artist (generic term)|creative person (generic term)
+photographer's model|1
+(noun)|model (generic term)|poser (generic term)
+photographic|2
+(adj)|pictorial representation|picturing (related term)
+(adj)|exact (similar term)
+photographic camera|1
+(noun)|camera|photographic equipment (generic term)
+photographic emulsion|1
+(noun)|emulsion|coating (generic term)|coat (generic term)
+photographic equipment|1
+(noun)|equipment (generic term)
+photographic film|1
+(noun)|film|photographic paper (generic term)|photographic material (generic term)
+photographic material|1
+(noun)|photographic paper|photographic equipment (generic term)
+photographic paper|1
+(noun)|photographic material|photographic equipment (generic term)
+photographic plate|1
+(noun)|plate|sheet (generic term)|flat solid (generic term)
+photographic print|1
+(noun)|print|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+photography|3
+(noun)|picture taking|pictorial representation (generic term)|picturing (generic term)
+(noun)|process (generic term)|physical process (generic term)
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+photogravure|3
+(noun)|intaglio printing (generic term)|intaglio (generic term)|gravure (generic term)
+(noun)|gravure|heliogravure|print (generic term)
+(noun)|rotogravure|gravure (generic term)
+photojournalism|1
+(noun)|journalism (generic term)|news media (generic term)|fourth estate (generic term)
+photojournalist|1
+(noun)|journalist (generic term)
+photolithograph|1
+(noun)|lithograph (generic term)
+photolithography|1
+(noun)|lithography (generic term)
+photomechanical|1
+(adj)|photography (related term)
+photomechanics|2
+(noun)|photoplatemaking|photography (generic term)
+(noun)|technique (generic term)
+photometer|2
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|light meter|exposure meter|photographic equipment (generic term)
+photometric|1
+(adj)|photometrical|measurement|measuring|measure|mensuration (related term)
+photometrical|1
+(adj)|photometric|measurement|measuring|measure|mensuration (related term)
+photometrician|1
+(noun)|photometrist|measurer (generic term)
+photometrist|1
+(noun)|photometrician|measurer (generic term)
+photometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+photomicrograph|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+photomontage|1
+(noun)|collage (generic term)|montage (generic term)
+photon|1
+(noun)|gauge boson (generic term)
+photophobia|2
+(noun)|simple phobia (generic term)
+(noun)|photalgia|pain (generic term)|hurting (generic term)
+photopic vision|1
+(noun)|daylight vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+photopigment|1
+(noun)|pigment (generic term)
+photoplatemaking|1
+(noun)|photomechanics|photography (generic term)
+photoretinitis|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+photosensitise|1
+(verb)|photosensitize|sensitize (generic term)|sensitise (generic term)
+photosensitive|1
+(adj)|light-sensitive|sensitive (similar term)
+photosensitivity|1
+(noun)|radiosensitivity|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+photosensitize|1
+(verb)|photosensitise|sensitize (generic term)|sensitise (generic term)
+photosphere|1
+(noun)|surface (generic term)
+photostat|3
+(noun)|photocopy (generic term)
+(noun)|Photostat|Photostat machine|duplicator (generic term)|copier (generic term)
+(verb)|photocopy (generic term)|run off (generic term)|xerox (generic term)
+photostat machine|1
+(noun)|Photostat|Photostat machine|duplicator (generic term)|copier (generic term)
+photosynthesis|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+photosynthetic|1
+(adj)|chemical process|chemical change|chemical action (related term)|nonphotosynthetic (antonym)
+phototherapy|1
+(noun)|radiotherapy (generic term)|radiation therapy (generic term)|radiation (generic term)|actinotherapy (generic term)|irradiation (generic term)
+phototrophic bacteria|1
+(noun)|phototropic bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+phototropic bacteria|1
+(noun)|phototrophic bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+phototropism|1
+(noun)|tropism (generic term)
+photovoltaic|1
+(adj)|electrical phenomenon (related term)
+photovoltaic cell|1
+(noun)|solar cell|cell (generic term)|electric cell (generic term)
+phoxinus|1
+(noun)|Phoxinus|genus Phoxinus|fish genus (generic term)
+phoxinus phoxinus|1
+(noun)|minnow|Phoxinus phoxinus|cyprinid (generic term)|cyprinid fish (generic term)
+phragmacone|1
+(noun)|phragmocone|shell (generic term)
+phragmipedium|1
+(noun)|Phragmipedium|genus Phragmipedium|monocot genus (generic term)|liliopsid genus (generic term)
+phragmites|1
+(noun)|Phragmites|genus Phragmites|monocot genus (generic term)|liliopsid genus (generic term)
+phragmites communis|1
+(noun)|ditch reed|common reed|carrizo|Phragmites communis|reed (generic term)
+phragmocone|1
+(noun)|phragmacone|shell (generic term)
+phrasal|1
+(adj)|construction|grammatical construction|expression (related term)
+phrasal idiom|1
+(noun)|idiom|idiomatic expression|set phrase|phrase|saying (generic term)|expression (generic term)|locution (generic term)
+phrasal verb|1
+(noun)|verb (generic term)
+phrase|6
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+(noun)|musical phrase|passage (generic term)|musical passage (generic term)
+(noun)|idiom|idiomatic expression|phrasal idiom|set phrase|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(verb)|give voice|formulate|word|articulate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|arrange (generic term)|set up (generic term)|put (generic term)|order (generic term)
+phrase book|1
+(noun)|book (generic term)
+phrase structure|1
+(noun)|syntax|sentence structure|structure (generic term)
+phraseology|1
+(noun)|wording|diction|phrasing|choice of words|verbiage|formulation (generic term)|expression (generic term)
+phrasing|2
+(noun)|grouping (generic term)
+(noun)|wording|diction|phraseology|choice of words|verbiage|formulation (generic term)|expression (generic term)
+phratry|1
+(noun)|family|family line|folk|kinfolk|kinsfolk|sept|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+phreatic|1
+(adj)|water|H2O (related term)
+phrenetic|1
+(adj)|frantic|frenetic|frenzied|agitated (similar term)
+phrenic|1
+(adj)|muscular structure|musculature|muscle system|membrane|tissue layer (related term)
+phrenic nerve|1
+(noun)|nervus phrenicus|spinal nerve (generic term)|nervus spinalis (generic term)
+phrenic vein|1
+(noun)|vena phrenica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+phrenitis|1
+(noun)|encephalitis|cephalitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+phrenological|1
+(adj)|craniology (related term)
+phrenologist|1
+(noun)|craniologist|mountebank (generic term)|charlatan (generic term)
+phrenology|1
+(noun)|craniology (generic term)
+phrontistery|1
+(noun)|establishment (generic term)
+phrygia|1
+(noun)|Phrygia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+phrygian|2
+(noun)|Phrygian|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+(noun)|Phrygian|Thraco-Phrygian (generic term)
+phrygian deity|1
+(noun)|Phrygian deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+phrynosoma|1
+(noun)|Phrynosoma|genus Phrynosoma|reptile genus (generic term)
+phrynosoma cornutum|1
+(noun)|Texas horned lizard|Phrynosoma cornutum|horned lizard (generic term)|horned toad (generic term)|horny frog (generic term)
+phs|1
+(noun)|United States Public Health Service|PHS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+phthalic acid|1
+(noun)|acid (generic term)
+phthalic anhydride|1
+(noun)|anhydride (generic term)
+phthiriidae|1
+(noun)|Phthiriidae|family Phthiriidae|arthropod family (generic term)
+phthirius|1
+(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus (generic term)
+phthirius pubis|1
+(noun)|crab louse|pubic louse|crab|Phthirius pubis|louse (generic term)|sucking louse (generic term)
+phthirus|1
+(noun)|Phthirius|genus Phthirius|Phthirus|genus Phthirus|arthropod genus (generic term)
+phthisis|1
+(noun)|pulmonary tuberculosis|consumption|wasting disease|white plague|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+phthorimaea|1
+(noun)|Phthorimaea|genus Phthorimaea|arthropod genus (generic term)
+phthorimaea operculella|2
+(noun)|potato tuberworm|Phthorimaea operculella|caterpillar (generic term)
+(noun)|potato moth|potato tuber moth|splitworm|Phthorimaea operculella|gelechiid (generic term)|gelechiid moth (generic term)
+phycobilin|1
+(noun)|pigment (generic term)
+phycocyanin|1
+(noun)|pigment (generic term)
+phycoerythrin|1
+(noun)|pigment (generic term)
+phycology|1
+(noun)|algology|botany (generic term)|phytology (generic term)
+phycomycetes|1
+(noun)|Phycomycetes|Phycomycetes group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+phycomycetes group|1
+(noun)|Phycomycetes|Phycomycetes group|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+phycomycosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+phylactery|1
+(noun)|tefillin|reminder (generic term)
+phyle|1
+(noun)|tribe (generic term)|folk (generic term)
+phyletic|1
+(adj)|phylogenetic|organic process|biological process (related term)
+phyllidae|1
+(noun)|Phyllidae|family Phyllidae|Phillidae|family Phillidae|arthropod family (generic term)
+phylliform|1
+(adj)|formed (similar term)
+phyllitis|1
+(noun)|Phyllitis|genus Phyllitis|genus Scolopendrium|fern genus (generic term)
+phyllitis scolopendrium|1
+(noun)|hart's-tongue|hart's-tongue fern|Asplenium scolopendrium|Phyllitis scolopendrium|fern (generic term)
+phyllium|1
+(noun)|Phyllium|genus Phyllium|arthropod genus (generic term)
+phyllo|1
+(noun)|puff paste (generic term)|pate feuillete (generic term)
+phylloclad|1
+(noun)|cladode|cladophyll|phylloclade|stalk (generic term)|stem (generic term)
+phyllocladaceae|1
+(noun)|Phyllocladaceae|family Phyllocladaceae|gymnosperm family (generic term)
+phylloclade|1
+(noun)|cladode|cladophyll|phylloclad|stalk (generic term)|stem (generic term)
+phyllocladus|1
+(noun)|Phyllocladus|genus Phyllocladus|gymnosperm genus (generic term)
+phyllocladus alpinus|1
+(noun)|Alpine celery pine|Phyllocladus alpinus|celery pine (generic term)
+phyllocladus asplenifolius|1
+(noun)|celery top pine|celery-topped pine|Phyllocladus asplenifolius|celery pine (generic term)
+phyllocladus trichomanoides|1
+(noun)|tanekaha|Phyllocladus trichomanoides|celery pine (generic term)
+phyllode|1
+(noun)|petiole (generic term)|leafstalk (generic term)
+phyllodial|1
+(adj)|petiole|leafstalk (related term)
+phyllodoce|1
+(noun)|Phyllodoce|genus Phyllodoce|dilleniid dicot genus (generic term)
+phyllodoce breweri|1
+(noun)|purple heather|Brewer's mountain heather|Phyllodoce breweri|heath (generic term)
+phyllodoce caerulea|1
+(noun)|mountain heath|Phyllodoce caerulea|Bryanthus taxifolius|heath (generic term)
+phylloporus|1
+(noun)|Phylloporus|genus Phylloporus|fungus genus (generic term)
+phylloporus boletinoides|1
+(noun)|Phylloporus boletinoides|bolete (generic term)
+phylloquinone|1
+(noun)|vitamin K1|phytonadione|vitamin K (generic term)|naphthoquinone (generic term)|antihemorrhagic factor (generic term)
+phyllorhynchus|1
+(noun)|Phyllorhynchus|genus Phyllorhynchus|reptile genus (generic term)
+phylloscopus|1
+(noun)|Phylloscopus|genus Phylloscopus|bird genus (generic term)
+phylloscopus sibilatrix|1
+(noun)|wood warbler|Phylloscopus sibilatrix|Old World warbler (generic term)|true warbler (generic term)
+phyllostachys|1
+(noun)|Phyllostachys|genus Phyllostachys|monocot genus (generic term)|liliopsid genus (generic term)
+phyllostachys aurea|1
+(noun)|fishpole bamboo|gosan-chiku|hotei-chiku|Phyllostachys aurea|bamboo (generic term)
+phyllostachys bambusoides|1
+(noun)|giant timber bamboo|madake|ku-chiku|Phyllostachys bambusoides|bamboo (generic term)
+phyllostachys nigra|1
+(noun)|black bamboo|kuri-chiku|Phyllostachys nigra|bamboo (generic term)
+phyllostomatidae|1
+(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family (generic term)
+phyllostomidae|1
+(noun)|Phyllostomidae|family Phyllostomidae|Phyllostomatidae|family Phyllostomatidae|mammal family (generic term)
+phyllostomus|1
+(noun)|Phyllostomus|genus Phyllostomus|mammal genus (generic term)
+phyllostomus hastatus|1
+(noun)|Phyllostomus hastatus|leafnose bat (generic term)|leaf-nosed bat (generic term)
+phylloxera|1
+(noun)|Phylloxera|genus Phylloxera|arthropod genus (generic term)
+phylloxera vitifoleae|1
+(noun)|grape louse|grape phylloxera|Phylloxera vitifoleae|plant louse (generic term)|louse (generic term)
+phylloxeridae|1
+(noun)|Phylloxeridae|family Phylloxeridae|arthropod family (generic term)
+phylogenesis|1
+(noun)|evolution|organic evolution|phylogeny|organic process (generic term)|biological process (generic term)
+phylogenetic|1
+(adj)|phyletic|organic process|biological process (related term)
+phylogenetic relation|1
+(noun)|affinity|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+phylogeny|1
+(noun)|evolution|organic evolution|phylogenesis|organic process (generic term)|biological process (generic term)
+phylum|2
+(noun)|social group (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+phylum acanthocephala|1
+(noun)|Acanthocephala|phylum Acanthocephala|phylum (generic term)
+phylum annelida|1
+(noun)|Annelida|phylum Annelida|phylum (generic term)
+phylum arthropoda|1
+(noun)|Arthropoda|phylum Arthropoda|phylum (generic term)
+phylum aschelminthes|1
+(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum (generic term)
+phylum brachiopoda|1
+(noun)|Brachiopoda|phylum Brachiopoda|phylum (generic term)
+phylum bryozoa|1
+(noun)|Bryozoa|phylum Bryozoa|polyzoa|phylum (generic term)
+phylum chaetognatha|1
+(noun)|Chaetognatha|phylum Chaetognatha|phylum (generic term)
+phylum chordata|1
+(noun)|Chordata|phylum Chordata|phylum (generic term)
+phylum cnidaria|1
+(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum (generic term)
+phylum coelenterata|1
+(noun)|Cnidaria|phylum Cnidaria|Coelenterata|phylum Coelenterata|phylum (generic term)
+phylum cryptophyta|1
+(noun)|Cryptophyta|phylum Cryptophyta|phylum (generic term)
+phylum ctenophora|1
+(noun)|Ctenophora|phylum Ctenophora|phylum (generic term)
+phylum cycliophora|1
+(noun)|Cycliophora|phylum Cycliophora|phylum (generic term)
+phylum echinodermata|1
+(noun)|Echinodermata|phylum Echinodermata|phylum (generic term)
+phylum ectoprocta|1
+(noun)|Ectoprocta|phylum Ectoprocta|phylum (generic term)
+phylum entoprocta|1
+(noun)|Entoprocta|phylum Entoprocta|Endoprocta|phylum (generic term)
+phylum mollusca|1
+(noun)|Mollusca|phylum Mollusca|phylum (generic term)
+phylum nematoda|1
+(noun)|Nematoda|phylum Nematoda|Aschelminthes|phylum Aschelminthes|phylum (generic term)
+phylum nemertea|1
+(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum (generic term)
+phylum nemertina|1
+(noun)|Nemertea|phylum Nemertea|Nemertina|phylum Nemertina|phylum (generic term)
+phylum phoronida|1
+(noun)|Phoronida|Phoronidea|phylum Phoronida|phylum (generic term)
+phylum platyhelminthes|1
+(noun)|Platyhelminthes|phylum Platyhelminthes|phylum (generic term)
+phylum pogonophora|1
+(noun)|Pogonophora|phylum Pogonophora|phylum (generic term)
+phylum porifera|1
+(noun)|Porifera|phylum Porifera|phylum (generic term)
+phylum protozoa|1
+(noun)|Protozoa|phylum Protozoa|phylum (generic term)
+phylum pyrrophyta|1
+(noun)|Pyrrophyta|phylum Pyrrophyta|phylum (generic term)
+phylum rotifera|1
+(noun)|Rotifera|phylum Rotifera|phylum (generic term)
+phylum sipuncula|1
+(noun)|Sipuncula|phylum Sipuncula|phylum (generic term)
+physa|1
+(noun)|gastropod (generic term)|univalve (generic term)
+physalia|1
+(noun)|Physalia|genus Physalia|coelenterate genus (generic term)
+physalis|1
+(noun)|Physalis|genus Physalis|asterid dicot genus (generic term)
+physalis alkekengi|1
+(noun)|Chinese lantern plant|winter cherry|bladder cherry|Physalis alkekengi|ground cherry (generic term)|husk tomato (generic term)
+physalis ixocarpa|1
+(noun)|tomatillo|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry (generic term)|husk tomato (generic term)
+physalis peruviana|1
+(noun)|cape gooseberry|purple ground cherry|Physalis peruviana|ground cherry (generic term)|husk tomato (generic term)
+physalis philadelphica|1
+(noun)|tomatillo|miltomate|purple ground cherry|jamberry|Physalis philadelphica|ground cherry (generic term)|husk tomato (generic term)
+physalis pruinosa|1
+(noun)|strawberry tomato|dwarf cape gooseberry|Physalis pruinosa|ground cherry (generic term)|husk tomato (generic term)
+physalis pubescens|1
+(noun)|downy ground cherry|strawberry tomato|Physalis pubescens|ground cherry (generic term)|husk tomato (generic term)
+physalis viscosa|1
+(noun)|yellow henbane|Physalis viscosa|ground cherry (generic term)|husk tomato (generic term)
+physaria|1
+(noun)|Physaria|genus Physaria|dilleniid dicot genus (generic term)
+physeter|1
+(noun)|Physeter|genus Physeter|mammal genus (generic term)
+physeter catodon|1
+(noun)|sperm whale|cachalot|black whale|Physeter catodon|toothed whale (generic term)
+physeteridae|1
+(noun)|Physeteridae|family Physeteridae|mammal family (generic term)
+physiatrics|1
+(noun)|physical therapy|physiotherapy|therapy (generic term)
+physic|1
+(noun)|purgative|cathartic|aperient|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+physic nut|1
+(noun)|Jatropha curcus|angiospermous tree (generic term)|flowering tree (generic term)
+physical|6
+(adj)|animal (similar term)|carnal (similar term)|fleshly (similar term)|sensual (similar term)|bodily (similar term)|corporal (similar term)|corporeal (similar term)|somatic (similar term)|material (similar term)|personal (similar term)|physiologic (similar term)|physiological (similar term)|somatogenic (similar term)|somatogenetic (similar term)|mental (antonym)
+(adj)|natural science (related term)
+(adj)|natural (similar term)
+(adj)|energetic (similar term)
+(adj)|material (similar term)
+(adj)|forcible|strong-arm|forceful (similar term)
+physical ability|1
+(noun)|ability (generic term)
+physical anthropology|1
+(noun)|anthropology (generic term)
+physical attraction|1
+(noun)|sexual desire|eros|concupiscence|desire (generic term)
+physical body|1
+(noun)|human body|material body|soma|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+physical change|1
+(noun)|phase change|phase transition|state change|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+physical chemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+physical contact|1
+(noun)|contact|touch (generic term)|touching (generic term)
+physical education|1
+(noun)|education (generic term)
+physical entity|1
+(noun)|entity (generic term)
+physical exercise|1
+(noun)|exercise|exercising|physical exertion|workout|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+physical exertion|1
+(noun)|exercise|exercising|physical exercise|workout|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+physical fitness|1
+(noun)|fitness|good shape|good condition|condition (generic term)|shape (generic term)|unfitness (antonym)
+physical geography|1
+(noun)|physiography|geography (generic term)|geographics (generic term)
+physical object|1
+(noun)|object|physical entity (generic term)
+physical pendulum|1
+(noun)|compound pendulum|pendulum (generic term)
+physical phenomenon|1
+(noun)|natural phenomenon (generic term)
+physical process|1
+(noun)|process|physical entity (generic term)
+physical property|1
+(noun)|property (generic term)
+physical rehabilitation|1
+(noun)|physical restoration|therapeutic rehabilitation|rehabilitation (generic term)
+physical restoration|1
+(noun)|physical rehabilitation|therapeutic rehabilitation|rehabilitation (generic term)
+physical science|1
+(noun)|physics|natural philosophy|natural science (generic term)
+physical structure|1
+(noun)|body|organic structure|natural object (generic term)
+physical therapist|1
+(noun)|physiotherapist|therapist (generic term)|healer (generic term)
+physical therapy|1
+(noun)|physiotherapy|physiatrics|therapy (generic term)
+physical topology|1
+(noun)|topology (generic term)|network topology (generic term)
+physical value|1
+(noun)|reproduction cost|cost (generic term)
+physicalism|1
+(noun)|materialism|philosophical doctrine (generic term)|philosophical theory (generic term)
+physicality|1
+(noun)|animalism|disposition (generic term)|temperament (generic term)
+physicalness|1
+(noun)|materiality|corporeality|corporality|quality (generic term)|incorporeality (antonym)|immateriality (antonym)
+physician|1
+(noun)|doctor|doc|MD|Dr.|medico|medical practitioner (generic term)|medical man (generic term)
+physician-assisted suicide|1
+(noun)|assisted suicide (generic term)
+physician-patient privilege|1
+(noun)|privilege (generic term)
+physicist|1
+(noun)|scientist (generic term)|man of science (generic term)
+physicochemical|1
+(adj)|chemistry|chemical science (related term)
+physics|1
+(noun)|physical science|natural philosophy|natural science (generic term)
+physics class|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+physics department|1
+(noun)|department of physics|academic department (generic term)
+physics lab|1
+(noun)|physics laboratory|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+physics laboratory|1
+(noun)|physics lab|lab (generic term)|laboratory (generic term)|research lab (generic term)|research laboratory (generic term)|science lab (generic term)|science laboratory (generic term)
+physidae|1
+(noun)|Physidae|family Physidae|mollusk family (generic term)
+physiognomy|1
+(noun)|countenance|phiz|visage|kisser|smiler|mug|face (generic term)|human face (generic term)
+physiography|1
+(noun)|physical geography|geography (generic term)|geographics (generic term)
+physiologic|1
+(adj)|physiological|physical (similar term)
+physiological|2
+(adj)|biology|biological science (related term)
+(adj)|physiologic|physical (similar term)
+physiological anatomy|1
+(noun)|functional anatomy|morphophysiology|anatomy (generic term)|general anatomy (generic term)
+physiological condition|1
+(noun)|physiological state|state (generic term)
+physiological jaundice of the newborn|1
+(noun)|jaundice of the newborn|icterus neonatorum|jaundice (generic term)|icterus (generic term)
+physiological nystagmus|1
+(noun)|nystagmus (generic term)
+physiological property|1
+(noun)|bodily property (generic term)
+physiological psychology|1
+(noun)|neuropsychology|psychophysiology|psychology (generic term)|psychological science (generic term)
+physiological reaction|1
+(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|reaction (generic term)|response (generic term)
+physiological sphincter|1
+(noun)|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+physiological state|1
+(noun)|physiological condition|state (generic term)
+physiologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+physiology|2
+(noun)|biology (generic term)|biological science (generic term)
+(noun)|bodily property (generic term)
+physiotherapeutic|1
+(adj)|therapy (related term)
+physiotherapist|1
+(noun)|physical therapist|therapist (generic term)|healer (generic term)
+physiotherapy|1
+(noun)|physical therapy|physiatrics|therapy (generic term)
+physique|2
+(noun)|build|body-build|habitus|bodily property (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+physostegia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+physostegia virginiana|1
+(noun)|false dragonhead|false dragon head|obedient plant|Physostegia virginiana|physostegia (generic term)
+physostigma|1
+(noun)|Physostigma|genus Physostigma|plant genus (generic term)
+physostigma venenosum|1
+(noun)|calabar-bean vine|Physostigma venenosum|vine (generic term)
+physostigmine|1
+(noun)|alkaloid (generic term)
+phytelephas|1
+(noun)|genus Phytelephas|plant genus (generic term)
+phytelephas macrocarpa|1
+(noun)|ivory palm|ivory-nut palm|ivory plant|Phytelephas macrocarpa|feather palm (generic term)
+phytohormone|1
+(noun)|plant hormone|growth regulator|plant product (generic term)
+phytolacca|1
+(noun)|Phytolacca|genus Phytolacca|caryophylloid dicot genus (generic term)
+phytolacca acinosa|1
+(noun)|Indian poke|Phytolacca acinosa|pokeweed (generic term)
+phytolacca americana|1
+(noun)|poke|pigeon berry|garget|scoke|Phytolacca americana|pokeweed (generic term)
+phytolacca dioica|1
+(noun)|ombu|bella sombra|Phytolacca dioica|pokeweed (generic term)
+phytolaccaceae|1
+(noun)|Phytolaccaceae|family Phytolaccaceae|pokeweed family|caryophylloid dicot family (generic term)
+phytologist|1
+(noun)|botanist|plant scientist|biologist (generic term)|life scientist (generic term)
+phytology|1
+(noun)|botany|biology (generic term)|biological science (generic term)
+phytomastigina|1
+(noun)|Phytomastigina|subclass Phytomastigina|class (generic term)
+phytonadione|1
+(noun)|vitamin K1|phylloquinone|vitamin K (generic term)|naphthoquinone (generic term)|antihemorrhagic factor (generic term)
+phytophagic|1
+(adj)|plant-eating|phytophagous|phytophilous|herbivorous (similar term)
+phytophagous|1
+(adj)|plant-eating|phytophagic|phytophilous|herbivorous (similar term)
+phytophilous|1
+(adj)|plant-eating|phytophagic|phytophagous|herbivorous (similar term)
+phytophthora|1
+(noun)|Phytophthora|genus Phytophthora|fungus genus (generic term)
+phytophthora citrophthora|1
+(noun)|Phytophthora citrophthora|fungus (generic term)
+phytophthora infestans|1
+(noun)|Phytophthora infestans|fungus (generic term)
+phytoplankton|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+phytotherapy|1
+(noun)|herbal therapy|botanical medicine|therapy (generic term)
+phytotoxin|1
+(noun)|plant toxin|toxin (generic term)
+pi|5
+(noun)|transcendental number (generic term)
+(noun)|private detective|PI|private eye|private investigator|operative|shamus|sherlock|detective (generic term)
+(noun)|principal investigator|PI|scientist (generic term)|man of science (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|protease inhibitor|PI|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+pi-meson|1
+(noun)|pion|meson (generic term)|mesotron (generic term)
+pia|1
+(noun)|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb (generic term)|herbaceous plant (generic term)
+pia mater|1
+(noun)|meninx (generic term)|meninges (generic term)
+piaf|1
+(noun)|Piaf|Edith Piaf|Edith Giovanna Gassion|Little Sparrow|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+piaffe|1
+(noun)|dressage (generic term)
+piaget|1
+(noun)|Piaget|Jean Piaget|psychologist (generic term)
+piagetian|1
+(adj)|Piagetian|psychologist (related term)
+pianism|1
+(noun)|performance (generic term)|public presentation (generic term)
+pianissimo|3
+(adj)|piano (similar term)|soft (similar term)
+(noun)|piano|softness (generic term)
+(adv)|very softly|fortissimo (antonym)
+pianissimo assai|1
+(adj)|piano (similar term)|soft (similar term)
+pianist|1
+(noun)|piano player|musician (generic term)|instrumentalist (generic term)|player (generic term)
+pianistic|2
+(adj)|musician|instrumentalist|player (related term)
+(adj)|stringed instrument|percussion instrument|percussive instrument (related term)
+piano|4
+(adj)|soft|pianissimo (similar term)|pianissimo assai (similar term)|forte (antonym)
+(noun)|pianoforte|forte-piano|stringed instrument (generic term)|percussion instrument (generic term)|percussive instrument (generic term)
+(noun)|pianissimo|softness (generic term)
+(adv)|softly|forte (antonym)
+piano accordion|1
+(noun)|accordion|squeeze box|free-reed instrument (generic term)
+piano action|1
+(noun)|action (generic term)|action mechanism (generic term)
+piano damper|1
+(noun)|damper block|damper (generic term)|muffler (generic term)
+piano keyboard|1
+(noun)|fingerboard|clavier|keyboard (generic term)
+piano lesson|1
+(noun)|music lesson (generic term)
+piano maker|1
+(noun)|maker (generic term)|shaper (generic term)
+piano music|2
+(noun)|sheet music (generic term)
+(noun)|music (generic term)
+piano player|1
+(noun)|pianist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+piano sonata|1
+(noun)|sonata (generic term)
+piano stool|1
+(noun)|music stool|stool (generic term)
+piano teacher|1
+(noun)|music teacher (generic term)
+piano tuner|1
+(noun)|tuner|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+piano wire|1
+(noun)|wire (generic term)
+pianoforte|1
+(noun)|piano|forte-piano|stringed instrument (generic term)|percussion instrument (generic term)|percussive instrument (generic term)
+pianola|1
+(noun)|mechanical piano|Pianola|player piano|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+piassava palm|1
+(noun)|pissaba palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm (generic term)
+piaster|2
+(noun)|piastre|fractional monetary unit (generic term)|subunit (generic term)
+(noun)|kuru|piastre|Turkish monetary unit (generic term)
+piastre|2
+(noun)|piaster|fractional monetary unit (generic term)|subunit (generic term)
+(noun)|kuru|piaster|Turkish monetary unit (generic term)
+piazza|1
+(noun)|plaza|place|public square (generic term)|square (generic term)
+pibgorn|1
+(noun)|hornpipe|stockhorn|single-reed instrument (generic term)|single-reed woodwind (generic term)
+pibroch|1
+(noun)|military march (generic term)|military music (generic term)|martial music (generic term)
+pic|2
+(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|picture show|flick|show (generic term)
+(noun)|photograph|photo|exposure|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+pica|3
+(noun)|em|pica em|linear unit (generic term)
+(noun)|Pica|genus Pica|bird genus (generic term)
+(noun)|geophagy|geophagia|eating (generic term)|feeding (generic term)
+pica-pica|1
+(noun)|spurge nettle|tread-softly|devil nettle|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+pica em|1
+(noun)|em|pica|linear unit (generic term)
+pica pica|1
+(noun)|European magpie|Pica pica|magpie (generic term)
+pica pica hudsonia|1
+(noun)|American magpie|Pica pica hudsonia|magpie (generic term)
+picador|1
+(noun)|bullfighter (generic term)|toreador (generic term)|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+picaninny|1
+(noun)|pickaninny|piccaninny|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+picardie|1
+(noun)|Picardie|Picardy|French region (generic term)
+picardy|1
+(noun)|Picardie|Picardy|French region (generic term)
+picaresque|1
+(adj)|dishonest (similar term)|dishonorable (similar term)
+picariae|1
+(noun)|Picariae|order Picariae|animal order (generic term)
+picasso|1
+(noun)|Picasso|Pablo Picasso|painter (generic term)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+picayune|1
+(adj)|fiddling|footling|lilliputian|little|niggling|piddling|piffling|petty|trivial|unimportant (similar term)
+piccalilli|1
+(noun)|relish (generic term)
+piccaninny|1
+(noun)|pickaninny|picaninny|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+piccolo|1
+(noun)|flute (generic term)|transverse flute (generic term)
+picea|1
+(noun)|Picea|genus Picea|gymnosperm genus (generic term)
+picea abies|1
+(noun)|Norway spruce|Picea abies|spruce (generic term)
+picea breweriana|1
+(noun)|weeping spruce|Brewer's spruce|Picea breweriana|spruce (generic term)
+picea engelmannii|1
+(noun)|Engelmann spruce|Engelmann's spruce|Picea engelmannii|spruce (generic term)
+picea glauca|1
+(noun)|white spruce|Picea glauca|spruce (generic term)
+picea mariana|1
+(noun)|black spruce|Picea mariana|spruce pine|spruce (generic term)
+picea obovata|1
+(noun)|Siberian spruce|Picea obovata|spruce (generic term)
+picea orientalis|1
+(noun)|oriental spruce|Picea orientalis|spruce (generic term)
+picea pungens|1
+(noun)|Colorado spruce|Colorado blue spruce|silver spruce|Picea pungens|spruce (generic term)
+picea rubens|1
+(noun)|red spruce|eastern spruce|yellow spruce|Picea rubens|spruce (generic term)
+picea sitchensis|1
+(noun)|Sitka spruce|Picea sitchensis|spruce (generic term)
+pichi|1
+(noun)|Fabiana imbricata|shrub (generic term)|bush (generic term)
+pichiciago|1
+(noun)|pichiciego|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo (generic term)
+pichiciego|1
+(noun)|pichiciago|fairy armadillo|chlamyphore|Chlamyphorus truncatus|armadillo (generic term)
+picidae|1
+(noun)|Picidae|family Picidae|bird family (generic term)
+piciform bird|1
+(noun)|bird (generic term)
+piciformes|1
+(noun)|Piciformes|order Piciformes|animal order (generic term)
+pick|21
+(noun)|choice|selection|decision making (generic term)|deciding (generic term)
+(noun)|picking|output (generic term)|yield (generic term)|production (generic term)
+(noun)|cream|elite (generic term)|elite group (generic term)
+(noun)|woof|weft|filling|thread (generic term)|yarn (generic term)
+(noun)|plectrum|plectron|device (generic term)
+(noun)|hand tool (generic term)
+(noun)|pickax|pickaxe|edge tool (generic term)
+(noun)|basketball play (generic term)
+(noun)|choice|selection|option|action (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|pluck|cull|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)|cull out (related term)|pick up (related term)|pick up (related term)|pick up (related term)|pick off (related term)|pick over (related term)|pick up (related term)
+(verb)|blame|find fault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|provoke (generic term)|evoke (generic term)|call forth (generic term)|kick up (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|clean|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|rob (generic term)
+(verb)|foot|pay (generic term)
+(verb)|pluck|plunk|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|break up|pierce (generic term)
+(verb)|peck|beak|strike (generic term)
+(verb)|nibble|piece|eat (generic term)
+pick's disease|1
+(noun)|Pick's disease|presenile dementia (generic term)
+pick-me-up|2
+(noun)|pickup|corrective (generic term)|restorative (generic term)
+(noun)|bracer|tonic (generic term)|restorative (generic term)
+pick-off|1
+(noun)|baseball play (generic term)
+pick apart|1
+(verb)|knock|criticize|criticise|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)|praise (antonym)
+pick at|3
+(verb)|pluck at|pull at|pull (generic term)
+(verb)|peck at|peck|eat (generic term)
+(verb)|disparage|belittle|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)|flatter (antonym)
+pick off|2
+(verb)|shoot (generic term)|pip (generic term)
+(verb)|pluck|tweak|pull off|pull (generic term)|draw (generic term)|force (generic term)
+pick out|2
+(verb)|choose|take|select|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|recognize|recognise|distinguish|discern|make out|tell apart
+pick over|1
+(verb)|sieve out|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+pick up|16
+(verb)|lift up|gather up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|touch (generic term)
+(verb)|transport (generic term)
+(verb)|collect|gather up|call for|get (generic term)|acquire (generic term)
+(verb)|learn|hear|get word|get wind|find out|get a line|discover|see
+(verb)|get (generic term)|acquire (generic term)
+(verb)|collar|nail|apprehend|arrest|nab|cop|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|buy (generic term)|purchase (generic term)
+(verb)|receive|perceive (generic term)|comprehend (generic term)
+(verb)|bring out (generic term)|set off (generic term)
+(verb)|meet (generic term)|get together (generic term)
+(verb)|elate|lift up|uplift|intoxicate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|depress (antonym)
+(verb)|turn around|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|catch|perceive (generic term)|comprehend (generic term)
+(verb)|peck|eat (generic term)
+(verb)|perk up|perk|percolate|gain vigor|recuperate (generic term)|recover (generic term)|convalesce (generic term)
+pick up the gauntlet|1
+(verb)|take a dare|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+pickaback|1
+(adv)|piggyback|pig-a-back
+pickaback plant|1
+(noun)|piggyback plant|youth-on-age|Tolmiea menziesii|herb (generic term)|herbaceous plant (generic term)
+pickaninny|1
+(noun)|piccaninny|picaninny|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+pickax|1
+(noun)|pick|pickaxe|edge tool (generic term)
+pickaxe|1
+(noun)|pick|pickax|edge tool (generic term)
+pickelhaube|1
+(noun)|helmet (generic term)
+picker|2
+(noun)|chooser|selector|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+pickerel|1
+(noun)|pike (generic term)
+pickerel frog|1
+(noun)|Rana palustris|true frog (generic term)|ranid (generic term)
+pickerel weed|1
+(noun)|pickerelweed|wampee|Pontederia cordata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pickerelweed|1
+(noun)|pickerel weed|wampee|Pontederia cordata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pickerelweed family|1
+(noun)|Pontederiaceae|family Pontederiaceae|monocot family (generic term)|liliopsid family (generic term)
+pickeringia|1
+(noun)|Pickeringia|genus Pickeringia|rosid dicot genus (generic term)
+pickeringia montana|1
+(noun)|chaparral pea|stingaree-bush|Pickeringia montana|shrub (generic term)|bush (generic term)
+picket|8
+(noun)|lookout|lookout man|sentinel|sentry|watch|spotter|scout|watchman (generic term)|watcher (generic term)|security guard (generic term)
+(noun)|detachment (generic term)
+(noun)|demonstrator (generic term)|protester (generic term)
+(noun)|military vehicle (generic term)
+(noun)|pale|strip (generic term)
+(noun)|piquet|torture (generic term)|torturing (generic term)
+(verb)|demonstrate (generic term)|march (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+picket boat|1
+(noun)|picket (generic term)
+picket fence|1
+(noun)|paling|fence (generic term)|fencing (generic term)
+picket line|1
+(noun)|line (generic term)
+picket ship|1
+(noun)|picket (generic term)
+pickett|1
+(noun)|Pickett|George Edward Pickett|general (generic term)|full general (generic term)
+pickford|1
+(noun)|Pickford|Mary Pickford|Gladys Smith|actress (generic term)
+picking|2
+(noun)|pick|output (generic term)|yield (generic term)|production (generic term)
+(noun)|manual labor (generic term)|manual labour (generic term)
+pickings|1
+(noun)|taking|action (generic term)
+pickle|3
+(noun)|relish (generic term)
+(noun)|fix|hole|jam|mess|muddle|kettle of fish|difficulty (generic term)
+(verb)|preserve (generic term)|keep (generic term)
+pickle barrel|1
+(noun)|barrel (generic term)|cask (generic term)
+pickle relish|1
+(noun)|relish (generic term)
+pickled|1
+(adj)|preserved (similar term)
+pickled herring|1
+(noun)|herring (generic term)
+picklepuss|1
+(noun)|sourpuss|gloomy Gus|pouter|unwelcome person (generic term)|persona non grata (generic term)
+picknicker|1
+(noun)|picnicker|eater (generic term)|feeder (generic term)
+pickpocket|1
+(noun)|cutpurse|dip|thief (generic term)|stealer (generic term)
+pickup|9
+(noun)|pickup truck|truck (generic term)|motortruck (generic term)
+(noun)|bench warrant (generic term)|arrest warrant (generic term)
+(noun)|pick-me-up|corrective (generic term)|restorative (generic term)
+(noun)|acquaintance (generic term)|friend (generic term)
+(noun)|getaway|acceleration (generic term)
+(noun)|tone arm|pickup arm|mechanical device (generic term)
+(noun)|cartridge|electro-acoustic transducer (generic term)
+(noun)|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+(noun)|acquiring (generic term)|getting (generic term)
+pickup arm|1
+(noun)|tone arm|pickup|mechanical device (generic term)
+pickup truck|1
+(noun)|pickup|truck (generic term)|motortruck (generic term)
+picky|1
+(adj)|finical|finicky|fussy|particular|fastidious (similar term)
+picnic|4
+(noun)|field day|outing|vacation (generic term)|holiday (generic term)
+(noun)|cinch|breeze|snap|duck soup|child's play|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|meal (generic term)|repast (generic term)
+(verb)|eat (generic term)
+picnic area|1
+(noun)|picnic ground|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+picnic ground|1
+(noun)|picnic area|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+picnic ham|1
+(noun)|picnic shoulder|cut of pork (generic term)
+picnic shoulder|1
+(noun)|picnic ham|cut of pork (generic term)
+picnicker|1
+(noun)|picknicker|eater (generic term)|feeder (generic term)
+pico de orizaba|1
+(noun)|Citlaltepetl|Mount Orizaba|Mt Orizaba|Pico de Orizaba|volcano (generic term)
+picofarad|1
+(noun)|capacitance unit (generic term)
+picoides|1
+(noun)|Picoides|genus Picoides|bird genus (generic term)
+picometer|1
+(noun)|picometre|micromicron|metric linear unit (generic term)
+picometre|1
+(noun)|picometer|micromicron|metric linear unit (generic term)
+picornavirus|1
+(noun)|animal virus (generic term)
+picosecond|1
+(noun)|time unit (generic term)|unit of time (generic term)
+picot|1
+(noun)|stitch (generic term)
+picovolt|1
+(noun)|potential unit (generic term)
+picrasma|1
+(noun)|Picrasma|genus Picrasma|rosid dicot genus (generic term)
+picrasma excelsa|1
+(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree (generic term)
+picrasma excelsum|1
+(noun)|Jamaica quassia|bitterwood|Picrasma excelsa|Picrasma excelsum|bitterwood tree (generic term)
+picric acid|1
+(noun)|acid (generic term)
+picris|1
+(noun)|Picris|genus Picris|asterid dicot genus (generic term)
+picris echioides|1
+(noun)|oxtongue|bristly oxtongue|bitterweed|bugloss|Picris echioides|weed (generic term)
+pictograph|1
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+pictographic|1
+(adj)|character|grapheme|graphic symbol (related term)
+pictor|1
+(noun)|Pictor|constellation (generic term)
+pictorial|3
+(adj)|pictural|illustration (related term)
+(adj)|graphic|lifelike|vivid|realistic (similar term)
+(noun)|periodical (generic term)
+pictorial matter|1
+(noun)|picture|illustration (generic term)
+pictorial representation|1
+(noun)|picturing|representation (generic term)
+pictural|1
+(adj)|pictorial|illustration (related term)
+picture|11
+(noun)|image|icon|ikon|representation (generic term)
+(noun)|painting|graphic art (generic term)
+(noun)|mental picture|impression|image (generic term)|mental image (generic term)
+(noun)|scene|situation (generic term)|state of affairs (generic term)
+(noun)|pictorial matter|illustration (generic term)
+(noun)|movie|film|moving picture|moving-picture show|motion picture|motion-picture show|picture show|pic|flick|show (generic term)
+(noun)|video|visual communication (generic term)
+(noun)|word picture|word-painting|delineation|depiction|characterization|characterisation|description (generic term)|verbal description (generic term)
+(noun)|typification (generic term)|exemplification (generic term)
+(verb)|visualize|visualise|envision|project|fancy|see|figure|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|depict|render|show|represent (generic term)|interpret (generic term)
+picture book|1
+(noun)|book (generic term)|volume (generic term)
+picture card|1
+(noun)|face card|court card|playing card (generic term)
+picture element|1
+(noun)|pixel|pel|component (generic term)|constituent (generic term)|element (generic term)
+picture frame|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+picture gallery|1
+(noun)|gallery|art gallery|room (generic term)
+picture hat|1
+(noun)|millinery (generic term)|woman's hat (generic term)
+picture palace|1
+(noun)|cinema|movie theater|movie theatre|movie house|theater (generic term)|theatre (generic term)|house (generic term)
+picture plane|1
+(noun)|plane (generic term)|sheet (generic term)
+picture postcard|1
+(noun)|postcard (generic term)|post card (generic term)|postal card (generic term)|mailing-card (generic term)
+picture rail|1
+(noun)|rail (generic term)
+picture show|1
+(noun)|movie|film|picture|moving picture|moving-picture show|motion picture|motion-picture show|pic|flick|show (generic term)
+picture taking|1
+(noun)|photography|pictorial representation (generic term)|picturing (generic term)
+picture tube|1
+(noun)|kinescope|television tube|cathode-ray tube (generic term)|CRT (generic term)
+picture window|1
+(noun)|window (generic term)
+picture writing|1
+(noun)|orthography (generic term)|writing system (generic term)
+pictured|2
+(adj)|envisioned|visualized|visualised|unreal (similar term)
+(adj)|depicted|portrayed|delineated (similar term)|represented (similar term)|delineate (similar term)
+picturesque|2
+(adj)|beautiful (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+picturesqueness|2
+(noun)|expressiveness (generic term)
+(noun)|beauty (generic term)
+picturing|2
+(noun)|envisioning|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|pictorial representation|representation (generic term)
+picul|1
+(noun)|weight unit (generic term)|weight (generic term)
+piculet|1
+(noun)|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+picumnus|1
+(noun)|Picumnus|genus Picumnus|bird genus (generic term)
+picus|1
+(noun)|Picus|genus Picus|bird genus (generic term)
+picus viridis|1
+(noun)|green woodpecker|Picus viridis|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+pid|1
+(noun)|pelvic inflammatory disease|PID|inflammatory disease (generic term)
+piddle|3
+(noun)|urine|piss|pee|weewee|water|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(verb)|wanton|wanton away|piddle away|trifle|spend (generic term)|pass (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+piddle away|1
+(verb)|piddle|wanton|wanton away|trifle|spend (generic term)|pass (generic term)
+piddling|1
+(adj)|fiddling|footling|lilliputian|little|niggling|piffling|petty|picayune|trivial|unimportant (similar term)
+piddock|1
+(noun)|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+pidgin|1
+(noun)|artificial language (generic term)
+pidlimdi|1
+(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara (generic term)
+pie|2
+(noun)|pastry (generic term)
+(noun)|Proto-Indo European|PIE|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+pie-dog|1
+(noun)|pariah dog|pye-dog|cur (generic term)|mongrel (generic term)|mutt (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+pie chart|1
+(noun)|chart (generic term)
+pie crust|1
+(noun)|pie shell|pastry (generic term)
+pie plant|1
+(noun)|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb (generic term)|rhubarb plant (generic term)
+pie shell|1
+(noun)|pie crust|pastry (generic term)
+piebald|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|pied|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+piece|18
+(noun)|part (generic term)|portion (generic term)
+(noun)|item (generic term)
+(noun)|part|thing (generic term)
+(noun)|musical composition|opus|composition|piece of music|music (generic term)
+(noun)|bit|case (generic term)|instance (generic term)|example (generic term)
+(noun)|creation (generic term)
+(noun)|firearm|small-arm|gun (generic term)
+(noun)|slice|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|distance (generic term)
+(noun)|objet d'art|art object|work of art (generic term)
+(noun)|while|spell|patch|time (generic term)
+(noun)|slice|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|man|game equipment (generic term)
+(verb)|patch|join (generic term)|conjoin (generic term)
+(verb)|assemble|put together|set up|tack|tack together|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+(verb)|splice (generic term)
+(verb)|nibble|pick|eat (generic term)
+(verb)|patch|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+piece-dye|1
+(verb)|dye (generic term)
+piece de resistance|2
+(noun)|collector's item|showpiece|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+(noun)|dish (generic term)
+piece goods|1
+(noun)|yard goods|merchandise (generic term)|ware (generic term)|product (generic term)
+piece of ass|1
+(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+piece of cake|1
+(noun)|cinch|breeze|picnic|snap|duck soup|child's play|pushover|walkover|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+piece of cloth|1
+(noun)|piece of material|piece (generic term)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+piece of eight|1
+(noun)|coin (generic term)
+piece of furniture|1
+(noun)|furniture|article of furniture|furnishing (generic term)
+piece of ground|1
+(noun)|tract|piece of land|parcel of land|parcel|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+piece of land|1
+(noun)|tract|piece of ground|parcel of land|parcel|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+piece of leather|1
+(noun)|piece (generic term)|leather (generic term)
+piece of material|1
+(noun)|piece of cloth|piece (generic term)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+piece of music|1
+(noun)|musical composition|opus|composition|piece|music (generic term)
+piece of paper|1
+(noun)|sheet|sheet of paper|paper (generic term)
+piece of tail|1
+(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+piece of work|1
+(noun)|work|product (generic term)|production (generic term)
+piece of writing|1
+(noun)|writing|written material|written communication (generic term)|written language (generic term)
+piecemeal|2
+(adj)|bit-by-bit|in small stages|step-by-step|stepwise|gradual (similar term)
+(adv)|little by little|bit by bit|in stages
+piecework|1
+(noun)|employment (generic term)|work (generic term)
+pied|1
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|varicolored|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+pied-a-terre|1
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+pied-billed grebe|1
+(noun)|Podilymbus podiceps|grebe (generic term)
+pied lemming|1
+(noun)|lemming (generic term)
+pied piper|2
+(noun)|leader (generic term)
+(noun)|Pied Piper|Pied Piper of Hamelin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+pied piper of hamelin|1
+(noun)|Pied Piper|Pied Piper of Hamelin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+piedmont|2
+(noun)|Piedmont|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Piedmont|Piemonte|Italian region (generic term)
+piedmont glacier|1
+(noun)|Piedmont glacier|Piedmont type of glacier|glacier (generic term)
+piedmont type of glacier|1
+(noun)|Piedmont glacier|Piedmont type of glacier|glacier (generic term)
+piemonte|1
+(noun)|Piedmont|Piemonte|Italian region (generic term)
+pieplant|1
+(noun)|rhubarb|vegetable (generic term)|veggie (generic term)
+pier|2
+(noun)|wharf|wharfage|dock|platform (generic term)
+(noun)|support (generic term)
+pier arch|1
+(noun)|arch (generic term)
+pier glass|1
+(noun)|pier mirror|mirror (generic term)
+pier luigi nervi|1
+(noun)|Nervi|Pier Luigi Nervi|architect (generic term)|designer (generic term)
+pier mirror|1
+(noun)|pier glass|mirror (generic term)
+pier table|1
+(noun)|table (generic term)
+pierce|5
+(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|sound (generic term)
+(verb)|thrust|penetrate (generic term)|perforate (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+pierced|1
+(adj)|perforated|perforate|punctured|cut (similar term)
+piercing|5
+(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|penetrative|sharp|perceptive (similar term)
+(adj)|shrill|sharp|high (similar term)|high-pitched (similar term)
+(adj)|cutting|keen|knifelike|stabbing|lancinate|lancinating|sharp (similar term)
+(adj)|incisive|sharp (similar term)
+(adj)|cacophonous (similar term)|cacophonic (similar term)
+piercingly|2
+(adv)|bitterly|bitingly|bitter
+(adv)|shrilly
+pierid|1
+(noun)|pierid butterfly|butterfly (generic term)
+pierid butterfly|1
+(noun)|pierid|butterfly (generic term)
+pieridae|1
+(noun)|Pieridae|family Pieridae|arthropod family (generic term)
+pieris|2
+(noun)|Pieris|genus Pieris|dilleniid dicot genus (generic term)
+(noun)|Pieris|genus Pieris|arthropod genus (generic term)
+pieris brassicae|1
+(noun)|large white|Pieris brassicae|cabbage butterfly (generic term)
+pieris floribunda|1
+(noun)|fetterbush|mountain fetterbush|mountain andromeda|Pieris floribunda|shrub (generic term)|bush (generic term)
+pieris japonica|1
+(noun)|andromeda|Japanese andromeda|lily-of-the-valley tree|Pieris japonica|shrub (generic term)|bush (generic term)
+pieris protodice|1
+(noun)|southern cabbage butterfly|Pieris protodice|cabbage butterfly (generic term)
+pieris rapae|2
+(noun)|cabbageworm|Pieris rapae|caterpillar (generic term)
+(noun)|small white|Pieris rapae|cabbage butterfly (generic term)
+pierre|1
+(noun)|Pierre|capital of South Dakota|state capital (generic term)
+pierre-paul broca|1
+(noun)|Broca|Pierre-Paul Broca|anthropologist (generic term)
+pierre abelard|1
+(noun)|Abelard|Peter Abelard|Pierre Abelard|philosopher (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+pierre athanase larousse|1
+(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer (generic term)|lexicologist (generic term)
+pierre auguste renoir|1
+(noun)|Renoir|Pierre Auguste Renoir|old master (generic term)
+pierre boulez|1
+(noun)|Boulez|Pierre Boulez|composer (generic term)
+pierre charles l'enfant|1
+(noun)|L'Enfant|Charles L'Enfant|Pierre Charles L'Enfant|architect (generic term)|designer (generic term)
+pierre corneille|1
+(noun)|Corneille|Pierre Corneille|dramatist (generic term)|playwright (generic term)|poet (generic term)
+pierre curie|1
+(noun)|Curie|Pierre Curie|physicist (generic term)
+pierre de fermat|1
+(noun)|Fermat|Pierre de Fermat|mathematician (generic term)
+pierre de terrail|1
+(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier (generic term)
+pierre joseph proudhon|1
+(noun)|Proudhon|Pierre Joseph Proudhon|socialist (generic term)
+pierre laporte bridge|1
+(noun)|Pierre Laporte Bridge|suspension bridge (generic term)
+pierre larousse|1
+(noun)|Larousse|Pierre Larousse|Pierre Athanase Larousse|lexicographer (generic term)|lexicologist (generic term)
+pierre simon de laplace|1
+(noun)|Laplace|Marquis de Laplace|Pierre Simon de Laplace|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+pierre teilhard de chardin|1
+(noun)|Teilhard de Chardin|Pierre Teilhard de Chardin|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|philosopher (generic term)
+pierre terrail|1
+(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier (generic term)
+pierrot|1
+(noun)|Pierrot|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+piet mondrian|1
+(noun)|Mondrian|Piet Mondrian|abstractionist (generic term)|abstract artist (generic term)
+pieta|1
+(noun)|representation (generic term)
+pieter breughel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+pieter bruegel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+pieter brueghel|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+pieter brueghel the elder|1
+(noun)|Brueghel|Breughel|Bruegel|Pieter Brueghel|Pieter Breughel|Pieter Bruegel|Breughel the Elder|Pieter Brueghel the Elder|old master (generic term)
+pieter zeeman|1
+(noun)|Zeeman|Pieter Zeeman|physicist (generic term)
+pietism|2
+(noun)|Pietism|religious movement (generic term)
+(noun)|religiosity|religionism|religiousism|devoutness (generic term)|religiousness (generic term)
+pietistic|2
+(adj)|pietistical|religious movement (related term)
+(adj)|holier-than-thou|pietistical|pharisaic|pharisaical|sanctimonious|self-righteous|pious (similar term)
+pietistical|2
+(adj)|pietistic|religious movement (related term)
+(adj)|holier-than-thou|pietistic|pharisaic|pharisaical|sanctimonious|self-righteous|pious (similar term)
+piety|1
+(noun)|piousness|righteousness (generic term)|impiety (antonym)
+piezo effect|1
+(noun)|piezoelectricity|piezoelectric effect|electricity (generic term)
+piezoelectric|1
+(adj)|electricity (related term)
+piezoelectric crystal|1
+(noun)|crystal (generic term)
+piezoelectric effect|1
+(noun)|piezoelectricity|piezo effect|electricity (generic term)
+piezoelectricity|1
+(noun)|piezoelectric effect|piezo effect|electricity (generic term)
+piezometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+piffle|3
+(noun)|balderdash|fiddle-faddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(verb)|chatter|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+piffling|1
+(adj)|fiddling|footling|lilliputian|little|niggling|piddling|petty|picayune|trivial|unimportant (similar term)
+pig|9
+(noun)|hog|grunter|squealer|Sus scrofa|swine (generic term)
+(noun)|slob|sloven|slovenly person|vulgarian (generic term)
+(noun)|hog|selfish person (generic term)
+(noun)|bull|cop|copper|fuzz|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|pig bed|mold (generic term)|mould (generic term)|cast (generic term)
+(noun)|ingot (generic term)|metal bar (generic term)|block of metal (generic term)
+(verb)|pig it|live (generic term)
+(verb)|devour|guttle|raven|eat (generic term)
+(verb)|farrow|litter (generic term)
+pig's ears|1
+(noun)|Cantharellus clavatus|agaric (generic term)
+pig-a-back|1
+(adv)|piggyback|pickaback
+pig-headedly|1
+(adv)|stubbornly|obdurately|mulishly|obstinately|cussedly
+pig-like|1
+(adj)|animal (similar term)
+pig-sized|1
+(adj)|sized (similar term)
+pig bed|1
+(noun)|pig|mold (generic term)|mould (generic term)|cast (generic term)
+pig farm|1
+(noun)|piggery|farm (generic term)
+pig iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+pig it|1
+(verb)|pig|live (generic term)
+pig laurel|1
+(noun)|sheep laurel|lambkill|Kalmia angustifolia|kalmia (generic term)
+pig lead|1
+(noun)|lead (generic term)|Pb (generic term)|atomic number 82 (generic term)
+pig out|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|satiate|scarf out|eat (generic term)
+pigboat|1
+(noun)|submarine|sub|U-boat|submersible (generic term)|submersible warship (generic term)
+pigeon|1
+(noun)|columbiform bird (generic term)
+pigeon-breasted|1
+(adj)|chicken-breasted|unshapely (similar term)
+pigeon-like|1
+(adj)|animal (similar term)
+pigeon-pea plant|1
+(noun)|pigeon pea|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+pigeon-toed|1
+(adj)|splayfooted (antonym)
+pigeon berry|1
+(noun)|poke|garget|scoke|Phytolacca americana|pokeweed (generic term)
+pigeon breast|1
+(noun)|chicken breast|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+pigeon droppings|1
+(noun)|droppings (generic term)|dung (generic term)|muck (generic term)
+pigeon guillemot|1
+(noun)|Cepphus columba|guillemot (generic term)
+pigeon hawk|1
+(noun)|merlin|Falco columbarius|falcon (generic term)
+pigeon loft|1
+(noun)|loft|shelter (generic term)
+pigeon pea|2
+(noun)|pigeon-pea plant|cajan pea|catjang pea|red gram|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+(noun)|cajan pea|dahl|pea (generic term)
+pigeon toes|1
+(noun)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+pigeonhole|4
+(noun)|category (generic term)
+(noun)|cubbyhole|compartment (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|stereotype|stamp|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+pigeonholing|1
+(noun)|grouping|classification system (generic term)
+pigfish|2
+(noun)|giant pigfish|Achoerodus gouldii|wrasse (generic term)
+(noun)|hogfish|Orthopristis chrysopterus|grunt (generic term)
+piggery|1
+(noun)|pig farm|farm (generic term)
+piggish|1
+(adj)|hoggish|piggy|porcine|swinish|gluttonous (similar term)
+piggishness|1
+(noun)|greediness|hoggishness|gluttony (generic term)
+piggy|2
+(adj)|hoggish|piggish|porcine|swinish|gluttonous (similar term)
+(noun)|piglet|shoat|shote|young mammal (generic term)
+piggy bank|1
+(noun)|penny bank|savings bank (generic term)|coin bank (generic term)|money box (generic term)|bank (generic term)
+piggyback|6
+(noun)|carry (generic term)
+(verb)|ride (generic term)
+(verb)|haul (generic term)
+(verb)|hold (generic term)|carry (generic term)|bear (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(adv)|pickaback|pig-a-back
+piggyback plant|1
+(noun)|pickaback plant|youth-on-age|Tolmiea menziesii|herb (generic term)|herbaceous plant (generic term)
+pigheaded|1
+(adj)|bullheaded|bullet-headed|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+pigheadedness|1
+(noun)|stubbornness|bullheadedness|obstinacy|obstinance|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+piglet|1
+(noun)|piggy|shoat|shote|young mammal (generic term)
+pigman|1
+(noun)|swineherd|herder (generic term)|herdsman (generic term)|drover (generic term)
+pigment|3
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+(verb)|hue (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+pigmentation|2
+(noun)|deposition (generic term)|deposit (generic term)
+(noun)|coloration (generic term)|colouration (generic term)|depigmentation (antonym)
+pigmy|2
+(noun)|pygmy|small person (generic term)
+(noun)|Pygmy|Pigmy|small person (generic term)
+pigmy talinum|1
+(noun)|Talinum brevifolium|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+pignolia|1
+(noun)|pine nut|pinon nut|edible nut (generic term)
+pignut|1
+(noun)|pignut hickory|brown hickory|black hickory|Carya glabra|hickory (generic term)|hickory tree (generic term)
+pignut hickory|1
+(noun)|pignut|brown hickory|black hickory|Carya glabra|hickory (generic term)|hickory tree (generic term)
+pigpen|1
+(noun)|sty|pigsty|pen (generic term)
+pigs' feet|1
+(noun)|pigs' knuckles|pork (generic term)|porc (generic term)
+pigs' knuckles|1
+(noun)|pigs' feet|pork (generic term)|porc (generic term)
+pigs in blankets|1
+(noun)|hors d'oeuvre (generic term)
+pigskin|1
+(noun)|leather (generic term)
+pigsticking|1
+(noun)|hunt (generic term)|hunting (generic term)
+pigsty|1
+(noun)|sty|pigpen|pen (generic term)
+pigswill|1
+(noun)|slop|slops|swill|pigwash|feed (generic term)|provender (generic term)
+pigtail|1
+(noun)|braid (generic term)|plait (generic term)|tress (generic term)|twist (generic term)
+pigwash|1
+(noun)|slop|slops|swill|pigswill|feed (generic term)|provender (generic term)
+pigweed|3
+(noun)|lamb's-quarters|wild spinach|Chenopodium album|goosefoot (generic term)
+(noun)|Amaranthus hypochondriacus|amaranth (generic term)
+(noun)|lamb's-quarter|wild spinach|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+pij|1
+(noun)|Palestine Islamic Jihad|Palestinian Islamic Jihad|PIJ|Harakat al-Jihad al-Islami al-Filastini|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pika|1
+(noun)|mouse hare|rock rabbit|coney|cony|lagomorph (generic term)|gnawing mammal (generic term)
+pike|5
+(noun)|expressway|freeway|motorway|state highway|superhighway|throughway|thruway|highway (generic term)|main road (generic term)
+(noun)|freshwater fish (generic term)
+(noun)|point (generic term)
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pike's peak|1
+(noun)|Pike's Peak|mountain peak (generic term)
+pike-like|1
+(adj)|animal (similar term)
+pike-perch|1
+(noun)|pike perch|perch (generic term)
+pike perch|1
+(noun)|pike-perch|perch (generic term)
+pikeblenny|1
+(noun)|blennioid fish (generic term)|blennioid (generic term)
+piked reverse hang|1
+(noun)|reverse hang (generic term)
+piked whale|1
+(noun)|lesser rorqual|minke whale|Balaenoptera acutorostrata|rorqual (generic term)|razorback (generic term)
+pikestaff|1
+(noun)|staff (generic term)
+pilaf|1
+(noun)|pilaff|pilau|pilaw|dish (generic term)
+pilaff|1
+(noun)|pilaf|pilau|pilaw|dish (generic term)
+pilar|1
+(adj)|filament|filum (related term)
+pilar cyst|1
+(noun)|sebaceous cyst|wen|steatocystoma|cyst (generic term)
+pilary|1
+(adj)|pilous|pilose|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pilaster|1
+(noun)|column (generic term)|pillar (generic term)
+pilate|1
+(noun)|Pilate|Pontius Pilate|procurator (generic term)
+pilau|1
+(noun)|pilaf|pilaff|pilaw|dish (generic term)
+pilaw|1
+(noun)|pilaf|pilaff|pilau|dish (generic term)
+pilchard|2
+(noun)|sardine|saltwater fish (generic term)
+(noun)|sardine|Sardina pilchardus|clupeid fish (generic term)|clupeid (generic term)
+pile|11
+(noun)|heap|mound|agglomerate|cumulation|cumulus|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|bundle|big bucks|megabucks|big money|money (generic term)
+(noun)|down|hair (generic term)
+(noun)|voltaic pile|galvanic pile|battery (generic term)|electric battery (generic term)
+(noun)|spile|piling|stilt|column (generic term)|pillar (generic term)
+(noun)|nap|thread (generic term)|yarn (generic term)
+(noun)|atomic pile|atomic reactor|chain reactor|nuclear reactor (generic term)|reactor (generic term)
+(verb)|stack|heap|arrange (generic term)|set up (generic term)|heap up (related term)|pile up (related term)|stack up (related term)
+(verb)|throng|mob|pack|jam|crowd (generic term)|crowd together (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+pile driver|1
+(noun)|machine (generic term)
+pile dwelling|1
+(noun)|lake dwelling|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+pile up|3
+(verb)|accumulate|cumulate|conglomerate|gather|amass|increase (generic term)
+(verb)|heap up|stack up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|roll up|collect|accumulate|amass|compile|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+pilea|1
+(noun)|Pilea|genus Pilea|dicot genus (generic term)|magnoliopsid genus (generic term)
+pilea involucrata|1
+(noun)|friendship plant|panamica|panamiga|Pilea involucrata|nettle (generic term)
+pilea microphylla|1
+(noun)|artillery plant|Pilea microphylla|nettle (generic term)
+pilea pumilla|1
+(noun)|richweed|clearweed|dead nettle|Pilea pumilla|nettle (generic term)
+piled|1
+(adj)|heaped|heaped-up|cumulous|concentrated (similar term)
+piles|2
+(noun)|hemorrhoid|haemorrhoid|pain (generic term)|hurting (generic term)
+(noun)|tons|dozens|heaps|lots|mountain|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+pileup|1
+(noun)|collision (generic term)
+pileus|1
+(noun)|cap|plant part (generic term)|plant structure (generic term)
+pilewort|1
+(noun)|lesser celandine|Ranunculus ficaria|flower (generic term)
+pilfer|1
+(verb)|cabbage|purloin|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+pilferage|1
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+pilferer|1
+(noun)|sneak thief|snitcher|thief (generic term)|stealer (generic term)
+pilgrim|3
+(noun)|wayfarer (generic term)|journeyer (generic term)
+(noun)|Pilgrim|Pilgrim Father|settler (generic term)|colonist (generic term)
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+pilgrim's journey|1
+(noun)|pilgrimage|journey (generic term)|journeying (generic term)
+pilgrim's progress|1
+(noun)|Pilgrim's Progress|fable (generic term)|parable (generic term)|allegory (generic term)|apologue (generic term)
+pilgrim father|1
+(noun)|Pilgrim|Pilgrim Father|settler (generic term)|colonist (generic term)
+pilgrimage|1
+(noun)|pilgrim's journey|journey (generic term)|journeying (generic term)
+piling|1
+(noun)|pile|spile|stilt|column (generic term)|pillar (generic term)
+pill|5
+(noun)|thing (generic term)
+(noun)|lozenge|tablet|tab|dose (generic term)
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|burden (generic term)|load (generic term)|encumbrance (generic term)|incumbrance (generic term)|onus (generic term)
+(noun)|birth control pill|contraceptive pill|oral contraceptive pill|oral contraceptive|anovulatory drug|anovulant|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+pill bottle|1
+(noun)|bottle (generic term)
+pill bug|1
+(noun)|woodlouse (generic term)|slater (generic term)
+pill head|1
+(noun)|head (generic term)
+pill pusher|1
+(noun)|pharmacist|druggist|chemist|apothecary|pill roller|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+pill roller|1
+(noun)|pharmacist|druggist|chemist|apothecary|pill pusher|health professional (generic term)|health care provider (generic term)|caregiver (generic term)
+pillage|3
+(noun)|loot|booty|plunder|prize|swag|dirty money|stolen property (generic term)
+(noun)|plundering|pillaging|aggression (generic term)|hostility (generic term)
+(verb)|plunder|despoil|loot|reave|strip|rifle|ransack|foray|take (generic term)
+pillaged|2
+(adj)|looted|plundered|ransacked|empty (similar term)
+(adj)|despoiled|raped|ravaged|sacked|destroyed (similar term)
+pillager|1
+(noun)|plunderer|looter|spoiler|despoiler|raider|freebooter|thief (generic term)|stealer (generic term)
+pillaging|1
+(noun)|plundering|pillage|aggression (generic term)|hostility (generic term)
+pillar|5
+(noun)|principle (generic term)|rule (generic term)
+(noun)|column|tower|shape (generic term)|form (generic term)
+(noun)|mainstay|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|column|structure (generic term)|construction (generic term)
+(noun)|column|upright (generic term)|vertical (generic term)
+pillar-shaped|1
+(adj)|rounded (similar term)
+pillar box|1
+(noun)|postbox (generic term)|mailbox (generic term)|letter box (generic term)
+pillar of islam|1
+(noun)|pillar of Islam|pillar (generic term)
+pillar of strength|1
+(noun)|tower of strength|patron (generic term)|sponsor (generic term)|supporter (generic term)
+pillared|1
+(adj)|columned (similar term)
+pillars of hercules|1
+(noun)|Pillars of Hercules|geological formation (generic term)|formation (generic term)
+pillbox|3
+(noun)|toque|turban|millinery (generic term)|woman's hat (generic term)
+(noun)|case (generic term)
+(noun)|gun emplacement (generic term)|weapons emplacement (generic term)
+pillion|1
+(noun)|seat (generic term)
+pillock|1
+(noun)|stupid|stupid person|stupe|dullard|dolt|pudding head|pudden-head|poor fish|simpleton (generic term)|simple (generic term)
+pillory|4
+(noun)|instrument of punishment (generic term)
+(verb)|gibbet|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|savage|crucify|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+pillow|2
+(noun)|cushion (generic term)
+(verb)|rest|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+pillow block|1
+(noun)|support (generic term)
+pillow fight|1
+(noun)|child's game (generic term)
+pillow lace|1
+(noun)|bobbin lace|lace (generic term)
+pillow lava|1
+(noun)|lava (generic term)
+pillow sham|1
+(noun)|bed linen (generic term)
+pillow slip|1
+(noun)|case|pillowcase|slip|bed linen (generic term)
+pillow talk|1
+(noun)|tete-a-tete (generic term)
+pillowcase|1
+(noun)|case|slip|pillow slip|bed linen (generic term)
+pillwort|1
+(noun)|Pilularia globulifera|aquatic fern (generic term)|water fern (generic term)
+pilocarpine|1
+(noun)|alkaloid (generic term)
+pilomotor reflex|1
+(noun)|gooseflesh|goose bump|goosebump|goose pimple|goose skin|horripilation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+pilose|1
+(adj)|pilous|pilary|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pilosebaceous|1
+(adj)|follicle (related term)|oil gland (related term)
+pilosella|1
+(noun)|Pilosella|genus Pilosella|asterid dicot genus (generic term)
+pilosella aurantiaca|1
+(noun)|orange hawkweed|Pilosella aurantiaca|Hieracium aurantiacum|weed (generic term)
+pilosella officinarum|1
+(noun)|mouse-ear hawkweed|Pilosella officinarum|Hieracium pilocella|hawkweed (generic term)
+pilosity|1
+(noun)|hairiness|appearance (generic term)|visual aspect (generic term)|hairlessness (antonym)
+pilot|8
+(noun)|airplane pilot|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+(noun)|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+(noun)|pilot program|pilot film|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+(noun)|original|archetype|model (generic term)|example (generic term)
+(noun)|pilot burner|pilot light|gas burner (generic term)|gas jet (generic term)
+(noun)|fender|buffer|cowcatcher|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|fly|aviate|operate (generic term)|control (generic term)
+(verb)|navigate|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+pilot balloon|1
+(noun)|meteorological balloon (generic term)
+pilot biscuit|1
+(noun)|hardtack|pilot bread|sea biscuit|ship biscuit|biscuit (generic term)
+pilot bit|1
+(noun)|bit (generic term)
+pilot blacksnake|1
+(noun)|black rat snake|blacksnake|mountain blacksnake|Elaphe obsoleta|rat snake (generic term)
+pilot boat|1
+(noun)|boat (generic term)
+pilot bread|1
+(noun)|hardtack|pilot biscuit|sea biscuit|ship biscuit|biscuit (generic term)
+pilot burner|1
+(noun)|pilot light|pilot|gas burner (generic term)|gas jet (generic term)
+pilot chart|1
+(noun)|naval chart|navigational chart|chart (generic term)
+pilot cloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+pilot engine|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+pilot experiment|1
+(noun)|experiment (generic term)|experimentation (generic term)
+pilot film|1
+(noun)|pilot program|pilot|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+pilot ladder|1
+(noun)|Jacob's ladder|jack ladder|ladder (generic term)
+pilot lamp|1
+(noun)|pilot light|indicator lamp|indicator (generic term)
+pilot light|2
+(noun)|pilot burner|pilot|gas burner (generic term)|gas jet (generic term)
+(noun)|pilot lamp|indicator lamp|indicator (generic term)
+pilot program|2
+(noun)|pilot project|test (generic term)|trial (generic term)|run (generic term)
+(noun)|pilot film|pilot|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+pilot project|1
+(noun)|pilot program|test (generic term)|trial (generic term)|run (generic term)
+pilot whale|1
+(noun)|black whale|common blackfish|blackfish|Globicephala melaena|dolphin (generic term)
+pilotage|2
+(noun)|navigation|piloting|steering (generic term)|guidance (generic term)|direction (generic term)
+(noun)|piloting|trade (generic term)|craft (generic term)
+pilotfish|1
+(noun)|Naucrates ductor|carangid fish (generic term)|carangid (generic term)
+pilothouse|1
+(noun)|wheelhouse|compartment (generic term)
+piloting|2
+(noun)|navigation|pilotage|steering (generic term)|guidance (generic term)|direction (generic term)
+(noun)|pilotage|trade (generic term)|craft (generic term)
+pilotless|1
+(adj)|unmanned (similar term)|remote-controlled (similar term)
+pilotless aircraft|1
+(noun)|drone|radio-controlled aircraft|heavier-than-air craft (generic term)
+pilous|1
+(adj)|pilose|pilary|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pilsen|1
+(noun)|Pilsen|Plzen|town (generic term)
+pilsener|1
+(noun)|Pilsner|Pilsener|lager (generic term)|lager beer (generic term)
+pilsner|1
+(noun)|Pilsner|Pilsener|lager (generic term)|lager beer (generic term)
+piltdown hoax|1
+(noun)|Piltdown man|Piltdown hoax|primitive (generic term)|primitive person (generic term)
+piltdown man|1
+(noun)|Piltdown man|Piltdown hoax|primitive (generic term)|primitive person (generic term)
+pilularia|1
+(noun)|Pilularia|genus Pilularia|fern genus (generic term)
+pilularia globulifera|1
+(noun)|pillwort|Pilularia globulifera|aquatic fern (generic term)|water fern (generic term)
+pilus|2
+(noun)|hair|filament (generic term)|filum (generic term)
+(noun)|hair (generic term)
+pima|2
+(noun)|Pima|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Pima|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+pimenta|1
+(noun)|Pimenta|genus Pimenta|dicot genus (generic term)|magnoliopsid genus (generic term)
+pimenta acris|1
+(noun)|bayberry|bay-rum tree|Jamaica bayberry|wild cinnamon|Pimenta acris|tree (generic term)
+pimenta dioica|1
+(noun)|allspice|allspice tree|pimento tree|Pimenta dioica|spice tree (generic term)
+pimenta officinalis|1
+(noun)|allspice tree|Pimenta officinalis|spice tree (generic term)
+pimento|2
+(noun)|sweet pepper|bell pepper|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|pimiento|sweet pepper (generic term)
+pimento butter|1
+(noun)|spread (generic term)|paste (generic term)
+pimento tree|1
+(noun)|allspice|allspice tree|Pimenta dioica|spice tree (generic term)
+pimiento|2
+(noun)|sweet pepper|bell pepper|pimento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|pimento|sweet pepper (generic term)
+pimlico|1
+(noun)|Pimlico|dirt track (generic term)
+pimozide|1
+(noun)|diphenylbutyl piperidine (generic term)
+pimp|2
+(noun)|procurer|panderer|pander|pandar|fancy man|ponce|wrongdoer (generic term)|offender (generic term)
+(verb)|pander|procure|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+pimpernel|2
+(noun)|salad burnet|burnet bloodwort|Poterium sanguisorba|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+pimpinella|1
+(noun)|Pimpinella|genus Pimpinella|rosid dicot genus (generic term)
+pimpinella anisum|1
+(noun)|anise|anise plant|Pimpinella anisum|herb (generic term)|herbaceous plant (generic term)
+pimple|1
+(noun)|hickey|zit|acne (generic term)
+pimpled|1
+(adj)|acned|pimply|pustulate|blemished (similar term)
+pimply|1
+(adj)|acned|pimpled|pustulate|blemished (similar term)
+pin|15
+(noun)|jewelry (generic term)|jewellery (generic term)
+(noun)|fall|victory (generic term)|triumph (generic term)
+(noun)|peg|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|personal identification number|PIN|PIN number|number (generic term)|identification number (generic term)
+(noun)|peg|stick|leg (generic term)
+(noun)|pivot|axis (generic term)|axis of rotation (generic term)
+(noun)|tumbler (generic term)
+(noun)|flag|golf equipment (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|peg|thole|tholepin|rowlock|oarlock|holder (generic term)
+(noun)|bowling pin|bowling equipment (generic term)
+(verb)|trap|immobilize|immobilise
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unpin (antonym)
+(verb)|transfix (generic term)|impale (generic term)|empale (generic term)|spike (generic term)
+(verb)|attack (generic term)|aggress (generic term)
+pin-tailed duck|1
+(noun)|pintail|Anas acuta|duck (generic term)
+pin-tailed grouse|1
+(noun)|pin-tailed sandgrouse|Pterocles alchata|sandgrouse (generic term)|sand grouse (generic term)
+pin-tailed sandgrouse|1
+(noun)|pin-tailed grouse|Pterocles alchata|sandgrouse (generic term)|sand grouse (generic term)
+pin-up|1
+(noun)|cover girl|lovely|photographer's model (generic term)
+pin bone|1
+(noun)|cut of beef (generic term)
+pin cherry|1
+(noun)|Prunus pensylvanica|bird cherry (generic term)|bird cherry tree (generic term)
+pin clover|1
+(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin grass|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+pin curl|1
+(noun)|crimp (generic term)
+pin down|2
+(verb)|peg down|nail down|narrow down|narrow|specify|determine (generic term)
+(verb)|pin up|attach (generic term)
+pin grass|1
+(noun)|redstem storksbill|alfilaria|alfileria|filaree|filaria|clocks|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+pin money|1
+(noun)|pocket money|spending money|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+pin number|1
+(noun)|personal identification number|PIN|PIN number|number (generic term)|identification number (generic term)
+pin oak|2
+(noun)|swamp oak|Quercus palustris|oak (generic term)|oak tree (generic term)
+(noun)|laurel oak|Quercus laurifolia|oak (generic term)|oak tree (generic term)
+pin table|1
+(noun)|pinball machine|game equipment (generic term)
+pin up|1
+(verb)|pin down|attach (generic term)
+pin wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+pina cloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+pina colada|1
+(noun)|mixed drink (generic term)
+pinaceae|1
+(noun)|Pinaceae|family Pinaceae|pine family|gymnosperm family (generic term)
+pinafore|1
+(noun)|jumper|pinny|dress (generic term)|frock (generic term)
+pinata|1
+(noun)|plaything (generic term)|toy (generic term)
+pinatubo|1
+(noun)|Pinatubo|Mount Pinatubo|volcano (generic term)
+pinball|1
+(noun)|pinball game|game (generic term)
+pinball game|1
+(noun)|pinball|game (generic term)
+pinball machine|1
+(noun)|pin table|game equipment (generic term)
+pince-nez|1
+(noun)|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+pincer|2
+(noun)|pair of pincers|tweezer|pair of tweezers|hand tool (generic term)
+(noun)|claw|chela|nipper|extremity (generic term)|appendage (generic term)|member (generic term)
+pinch|12
+(noun)|difficulty (generic term)
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|touch|hint|tinge|mite|jot|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|emergency|exigency|crisis (generic term)
+(noun)|nip|bite (generic term)|chomp (generic term)|clip (generic term)|clipping (generic term)|snip (generic term)
+(noun)|tweak|squeeze (generic term)|squeezing (generic term)
+(noun)|apprehension|arrest|catch|collar|taking into custody|capture (generic term)|gaining control (generic term)|seizure (generic term)
+(verb)|squeeze|twinge|tweet|nip|twitch|grip (generic term)
+(verb)|crimp|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|pilfer|cabbage|purloin|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+(verb)|top|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+(verb)|vellicate|irritate (generic term)
+pinch bar|1
+(noun)|lever (generic term)
+pinch hitter|1
+(noun)|substitute (generic term)|reserve (generic term)|second-stringer (generic term)|batter (generic term)|hitter (generic term)|slugger (generic term)|batsman (generic term)
+pinchas zukerman|1
+(noun)|Zukerman|Pinchas Zukerman|violinist (generic term)|fiddler (generic term)
+pinchbeck|2
+(adj)|counterfeit (similar term)|imitative (similar term)
+(noun)|alloy (generic term)|metal (generic term)
+pinche|1
+(noun)|Leontocebus oedipus|tamarin (generic term)|lion monkey (generic term)|lion marmoset (generic term)|leoncita (generic term)
+pinched|4
+(adj)|adenoidal|nasal|high (similar term)|high-pitched (similar term)
+(adj)|bony|cadaverous|emaciated|gaunt|haggard|skeletal|wasted|thin (similar term)|lean (similar term)
+(adj)|hard up|impecunious|in straitened circumstances|penniless|penurious|poor (similar term)
+(adj)|constricted (similar term)
+pinchgut|1
+(noun)|niggard (generic term)|skinflint (generic term)|scrooge (generic term)|churl (generic term)
+pinckneya|1
+(noun)|Pinckneya|genus Pinckneya|asterid dicot genus (generic term)
+pinckneya pubens|1
+(noun)|fever tree|Georgia bark|bitter-bark|Pinckneya pubens|shrub (generic term)|bush (generic term)
+pinctada|1
+(noun)|Pinctada|genus Pinctada|mollusk genus (generic term)
+pinctada margaritifera|1
+(noun)|pearl oyster|Pinctada margaritifera|oyster (generic term)
+pincurl clip|1
+(noun)|cartridge holder (generic term)|cartridge clip (generic term)|clip (generic term)|magazine (generic term)
+pincus|1
+(noun)|Pincus|Gregory Pincus|Gregory Goodwin Pincus|physiologist (generic term)
+pincushion|1
+(noun)|cushion (generic term)
+pincushion flower|1
+(noun)|sweet scabious|mournful widow|Scabiosa atropurpurea|scabious (generic term)|scabiosa (generic term)
+pincushion hakea|1
+(noun)|cushion flower|Hakea laurina|shrub (generic term)|bush (generic term)
+pindar|1
+(noun)|Pindar|poet (generic term)
+pindaric|1
+(noun)|Pindaric ode|Pindaric|ode (generic term)
+pindaric ode|1
+(noun)|Pindaric ode|Pindaric|ode (generic term)
+pindolol|1
+(noun)|Visken|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+pine|3
+(noun)|pine tree|true pine|conifer (generic term)|coniferous tree (generic term)
+(noun)|wood (generic term)
+(verb)|ache|yearn|yen|languish|hanker (generic term)|long (generic term)|yearn (generic term)
+pine-barren sandwort|1
+(noun)|longroot|Arenaria caroliniana|sandwort (generic term)
+pine-tar rag|1
+(noun)|rag (generic term)|shred (generic term)|tag (generic term)|tag end (generic term)|tatter (generic term)|baseball equipment (generic term)
+pine-weed|1
+(noun)|orange grass|nitweed|pineweed|Hypericum gentianoides|St John's wort (generic term)
+pine away|1
+(verb)|waste|languish|weaken (generic term)
+pine bluff|1
+(noun)|Pine Bluff|town (generic term)
+pine family|1
+(noun)|Pinaceae|family Pinaceae|gymnosperm family (generic term)
+pine fern|1
+(noun)|Anemia adiantifolia|fern (generic term)
+pine finch|1
+(noun)|pine siskin|Spinus pinus|finch (generic term)
+pine grosbeak|1
+(noun)|Pinicola enucleator|grosbeak (generic term)|grossbeak (generic term)
+pine hyacinth|1
+(noun)|Clematis baldwinii|Viorna baldwinii|clematis (generic term)
+pine knot|1
+(noun)|firewood (generic term)
+pine leaf aphid|1
+(noun)|Pineus pinifoliae|adelgid (generic term)
+pine lily|1
+(noun)|tiger lily|leopard lily|Lilium catesbaei|lily (generic term)
+pine lizard|1
+(noun)|eastern fence lizard|Sceloporus undulatus|fence lizard (generic term)
+pine marten|1
+(noun)|Martes martes|marten (generic term)|marten cat (generic term)
+pine mouse|1
+(noun)|pine vole|Pitymys pinetorum|vole (generic term)|field mouse (generic term)
+pine nut|1
+(noun)|pignolia|pinon nut|edible nut (generic term)
+pine sawyer|1
+(noun)|sawyer (generic term)|sawyer beetle (generic term)
+pine siskin|1
+(noun)|pine finch|Spinus pinus|finch (generic term)
+pine snake|1
+(noun)|bull snake (generic term)|bull-snake (generic term)
+pine spittlebug|1
+(noun)|spittle insect (generic term)|spittlebug (generic term)
+pine tar|1
+(noun)|wood tar (generic term)
+pine tree|1
+(noun)|pine|true pine|conifer (generic term)|coniferous tree (generic term)
+pine tree state|1
+(noun)|Maine|Pine Tree State|ME|American state (generic term)
+pine vole|1
+(noun)|pine mouse|Pitymys pinetorum|vole (generic term)|field mouse (generic term)
+pineal|2
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+(adj)|rounded (similar term)
+pineal body|1
+(noun)|pineal gland|epiphysis cerebri|epiphysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pineal eye|1
+(noun)|third eye|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+pineal gland|1
+(noun)|pineal body|epiphysis cerebri|epiphysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pinealoma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+pineapple|2
+(noun)|pineapple plant|Ananas comosus|herb (generic term)|herbaceous plant (generic term)
+(noun)|ananas|edible fruit (generic term)
+pineapple family|1
+(noun)|Bromeliaceae|family Bromeliaceae|monocot family (generic term)|liliopsid family (generic term)
+pineapple guava|1
+(noun)|feijoa|edible fruit (generic term)
+pineapple juice|1
+(noun)|fruit juice (generic term)|fruit crush (generic term)
+pineapple plant|1
+(noun)|pineapple|Ananas comosus|herb (generic term)|herbaceous plant (generic term)
+pineapple weed|1
+(noun)|rayless chamomile|Matricaria matricarioides|herb (generic term)|herbaceous plant (generic term)
+pinecone|1
+(noun)|cone (generic term)|strobilus (generic term)|strobile (generic term)
+pinesap|1
+(noun)|false beachdrops|Monotropa hypopithys|wildflower (generic term)|wild flower (generic term)
+pinetum|1
+(noun)|tree farm (generic term)
+pineus|1
+(noun)|Pineus|genus Pineus|arthropod genus (generic term)
+pineus pinifoliae|1
+(noun)|pine leaf aphid|Pineus pinifoliae|adelgid (generic term)
+pineweed|1
+(noun)|orange grass|nitweed|pine-weed|Hypericum gentianoides|St John's wort (generic term)
+pinfish|1
+(noun)|sailor's-choice|squirrelfish|Lagodon rhomboides|sparid (generic term)|sparid fish (generic term)
+pinfold|1
+(noun)|pen (generic term)
+ping|6
+(noun)|Ping|Ping River|river (generic term)
+(noun)|sound (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|pink|knock|sound (generic term)|go (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|reach (generic term)|get through (generic term)|get hold of (generic term)|contact (generic term)
+ping-pong|1
+(noun)|table tennis|Ping-Pong|table game (generic term)
+ping-pong ball|1
+(noun)|ball (generic term)
+ping-pong table|1
+(noun)|table-tennis table|pingpong table|table (generic term)
+ping river|1
+(noun)|Ping|Ping River|river (generic term)
+pinger|1
+(noun)|pulse generator (generic term)
+pingpong paddle|1
+(noun)|table-tennis racquet|table-tennis bat|paddle (generic term)
+pingpong table|1
+(noun)|table-tennis table|ping-pong table|table (generic term)
+pinguecula|1
+(noun)|conjunctiva (generic term)
+pinguicula|1
+(noun)|Pinguicula|genus Pinguicula|plant genus (generic term)
+pinguinus|1
+(noun)|Pinguinus|genus Pinguinus|bird genus (generic term)
+pinguinus impennis|1
+(noun)|great auk|Pinguinus impennis|auk (generic term)
+pinhead|2
+(noun)|dumbbell|dummy|dope|boob|booby|simpleton (generic term)|simple (generic term)
+(noun)|head (generic term)
+pinhole|1
+(noun)|puncture (generic term)
+pinicola|1
+(noun)|Pinicola|genus Pinicola|bird genus (generic term)
+pinicola enucleator|1
+(noun)|pine grosbeak|Pinicola enucleator|grosbeak (generic term)|grossbeak (generic term)
+pining|1
+(noun)|longing (generic term)|yearning (generic term)|hungriness (generic term)
+pinion|5
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+(noun)|flight feather|quill|quill feather|feather (generic term)|plume (generic term)|plumage (generic term)
+(noun)|pennon|wing (generic term)
+(verb)|shackle|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+pinion and crown wheel|1
+(noun)|bevel gear|pinion and ring gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+pinion and ring gear|1
+(noun)|bevel gear|pinion and crown wheel|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+pinioned|2
+(adj)|winged (similar term)
+(adj)|bound (similar term)
+pinite|1
+(noun)|mineral (generic term)
+pink|7
+(adj)|pinkish|chromatic (similar term)
+(noun)|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|garden pink|flower (generic term)
+(noun)|pinko|collectivist (generic term)|leftist (generic term)|left-winger (generic term)
+(verb)|tap|rap|knock|sound (generic term)|go (generic term)
+(verb)|ping|knock|sound (generic term)|go (generic term)
+(verb)|cut (generic term)
+pink-and-white everlasting|1
+(noun)|pink paper daisy|Acroclinium roseum|everlasting (generic term)|everlasting flower (generic term)
+pink-collar|1
+(adj)|white-collar (similar term)
+pink-lavender|1
+(adj)|pinkish-lavender|chromatic (similar term)
+pink-orange|1
+(adj)|pinkish-orange|salmon|chromatic (similar term)
+pink-purple|1
+(adj)|pinkish-purple|chromatic (similar term)
+pink-red|1
+(adj)|chromatic (similar term)
+pink-slipped|1
+(adj)|discharged|dismissed|fired|laid-off|unemployed (similar term)
+pink-tinged|1
+(adj)|chromatic (similar term)
+pink-tipped|1
+(adj)|tipped (similar term)
+pink bollworm|1
+(noun)|Gelechia gossypiella|bollworm (generic term)
+pink calla|1
+(noun)|Zantedeschia rehmanii|calla lily (generic term)|calla (generic term)|arum lily (generic term)|Zantedeschia aethiopica (generic term)
+pink cockatoo|1
+(noun)|Kakatoe leadbeateri|cockatoo (generic term)
+pink disease|1
+(noun)|plant disease (generic term)
+pink disease fungus|1
+(noun)|Corticium salmonicolor|fungus (generic term)
+pink elephants|1
+(noun)|visual hallucination (generic term)
+pink family|1
+(noun)|Caryophyllaceae|family Caryophyllaceae|carnation family|caryophylloid dicot family (generic term)
+pink fivecorner|1
+(noun)|Styphelia triflora|shrub (generic term)|bush (generic term)
+pink fritillary|1
+(noun)|adobe lily|Fritillaria pluriflora|fritillary (generic term)|checkered lily (generic term)
+pink lady|1
+(noun)|cocktail (generic term)
+pink of my john|1
+(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola (generic term)
+pink paper daisy|1
+(noun)|pink-and-white everlasting|Acroclinium roseum|everlasting (generic term)|everlasting flower (generic term)
+pink sand verbena|1
+(noun)|beach sand verbena|Abronia umbellata|sand verbena (generic term)
+pink shower|1
+(noun)|pink shower tree|horse cassia|Cassia grandis|cassia (generic term)
+pink shower tree|1
+(noun)|pink shower|horse cassia|Cassia grandis|cassia (generic term)
+pink slip|1
+(noun)|dismissal|dismission|notice (generic term)
+pink wine|1
+(noun)|blush wine|rose|rose wine|wine (generic term)|vino (generic term)
+pinkeye|1
+(noun)|conjunctivitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+pinkie|1
+(noun)|little finger|pinky|finger (generic term)|minimus (generic term)
+pinkify|1
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+pinkish|1
+(adj)|pink|chromatic (similar term)
+pinkish-lavender|1
+(adj)|pink-lavender|chromatic (similar term)
+pinkish-orange|1
+(adj)|pink-orange|salmon|chromatic (similar term)
+pinkish-purple|1
+(adj)|pink-purple|chromatic (similar term)
+pinkish-white|1
+(adj)|achromatic (similar term)
+pinkness|1
+(noun)|pink (generic term)
+pinko|1
+(noun)|pink|collectivist (generic term)|leftist (generic term)|left-winger (generic term)
+pinkroot|1
+(noun)|plant disease (generic term)
+pinky|1
+(noun)|little finger|pinkie|finger (generic term)|minimus (generic term)
+pinna|2
+(noun)|pinnule|leaflet (generic term)
+(noun)|auricle|ear|cartilaginous structure (generic term)
+pinnace|1
+(noun)|tender|ship's boat|cutter|boat (generic term)
+pinnacle|5
+(noun)|steeple (generic term)|spire (generic term)
+(noun)|acme|height|elevation|peak|summit|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|peak (generic term)|crown (generic term)|crest (generic term)|top (generic term)|tip (generic term)|summit (generic term)
+(verb)|surmount (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+pinnate|1
+(adj)|pinnated|compound (similar term)
+pinnate-leafed|1
+(adj)|pinnate-leaved|leafy (similar term)
+pinnate-leaved|1
+(adj)|pinnate-leafed|leafy (similar term)
+pinnate leaf|1
+(noun)|compound leaf (generic term)
+pinnated|1
+(adj)|pinnate|compound (similar term)
+pinnatifid|1
+(adj)|compound (similar term)
+pinnatiped|1
+(noun)|pinniped mammal|pinniped|aquatic mammal (generic term)
+pinnatisect|1
+(adj)|compound (similar term)
+pinner|1
+(noun)|cap (generic term)
+pinning|1
+(noun)|promise (generic term)
+pinniped|1
+(noun)|pinniped mammal|pinnatiped|aquatic mammal (generic term)
+pinniped mammal|1
+(noun)|pinniped|pinnatiped|aquatic mammal (generic term)
+pinnipedia|1
+(noun)|Pinnipedia|suborder Pinnipedia|animal order (generic term)
+pinnotheres|1
+(noun)|Pinnotheres|genus Pinnotheres|arthropod genus (generic term)
+pinnotheres ostreum|1
+(noun)|oyster crab|Pinnotheres ostreum|pea crab (generic term)
+pinnotheridae|1
+(noun)|Pinnotheridae|family Pinnotheridae|arthropod family (generic term)
+pinnule|1
+(noun)|pinna|leaflet (generic term)
+pinny|1
+(noun)|jumper|pinafore|dress (generic term)|frock (generic term)
+pinochle|1
+(noun)|pinocle|penuchle|bezique|card game (generic term)|cards (generic term)
+pinocle|1
+(noun)|pinochle|penuchle|bezique|card game (generic term)|cards (generic term)
+pinocytosis|1
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+pinole|1
+(noun)|meal (generic term)
+pinon|1
+(noun)|pinyon|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinon nut|1
+(noun)|pine nut|pignolia|edible nut (generic term)
+pinon pine|1
+(noun)|Mexican nut pine|Pinus cembroides|nut pine (generic term)
+pinophytina|1
+(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class (generic term)
+pinopsida|1
+(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class (generic term)
+pinot|1
+(noun)|Pinot|Pinot grape|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+pinot blanc|2
+(noun)|Pinot blanc|Pinot (generic term)|Pinot grape (generic term)
+(noun)|Pinot blanc|white wine (generic term)
+pinot chardonnay|1
+(noun)|Chardonnay|Pinot Chardonnay|white wine (generic term)
+pinot grape|1
+(noun)|Pinot|Pinot grape|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+pinot noir|2
+(noun)|Pinot noir|Pinot (generic term)|Pinot grape (generic term)
+(noun)|Pinot noir|red wine (generic term)
+pinpoint|5
+(adj)|precise (similar term)
+(noun)|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+(noun)|speck|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+(noun)|point (generic term)
+(verb)|nail|locate (generic term)|turn up (generic term)
+pinprick|2
+(noun)|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(noun)|puncture (generic term)
+pins and needles|1
+(noun)|prickling (generic term)|tingle (generic term)|tingling (generic term)
+pinscher|1
+(noun)|watchdog (generic term)|guard dog (generic term)
+pinsk|1
+(noun)|Pinsk|city (generic term)|metropolis (generic term)|urban center (generic term)
+pinstripe|3
+(noun)|suit (generic term)|suit of clothes (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|band (generic term)|banding (generic term)|stripe (generic term)
+pinstriped|1
+(adj)|patterned (similar term)
+pint|3
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|dry pint|United States dry unit (generic term)
+(noun)|United States liquid unit (generic term)
+pint-size|1
+(adj)|pint-sized|runty|sawed-off|sawn-off|short (similar term)
+pint-sized|1
+(adj)|pint-size|runty|sawed-off|sawn-off|short (similar term)
+pintado|1
+(noun)|cero|kingfish|Scomberomorus regalis|Spanish mackerel (generic term)
+pintail|1
+(noun)|pin-tailed duck|Anas acuta|duck (generic term)
+pinter|1
+(noun)|Pinter|Harold Pinter|dramatist (generic term)|playwright (generic term)
+pintle|1
+(noun)|pivot (generic term)|pin (generic term)
+pinto|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+pinto bean|1
+(noun)|common bean (generic term)
+pinus|1
+(noun)|Pinus|genus Pinus|gymnosperm genus (generic term)
+pinus albicaulis|1
+(noun)|whitebark pine|whitebarked pine|Pinus albicaulis|white pine (generic term)
+pinus aristata|1
+(noun)|bristlecone pine|Rocky Mountain bristlecone pine|Pinus aristata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus attenuata|1
+(noun)|knobcone pine|Pinus attenuata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus banksiana|1
+(noun)|jack pine|Pinus banksiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus californiarum|1
+(noun)|California single-leaf pinyon|Pinus californiarum|pinon (generic term)|pinyon (generic term)
+pinus cembra|1
+(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus cembroides|1
+(noun)|pinon pine|Mexican nut pine|Pinus cembroides|nut pine (generic term)
+pinus contorta|1
+(noun)|shore pine|lodgepole|lodgepole pine|spruce pine|Pinus contorta|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus contorta murrayana|1
+(noun)|Sierra lodgepole pine|Pinus contorta murrayana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus densiflora|1
+(noun)|Japanese red pine|Japanese table pine|Pinus densiflora|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus echinata|1
+(noun)|shortleaf pine|short-leaf pine|shortleaf yellow pine|Pinus echinata|yellow pine (generic term)
+pinus edulis|1
+(noun)|Rocky mountain pinon|Pinus edulis|nut pine (generic term)
+pinus flexilis|1
+(noun)|limber pine|Pinus flexilis|white pine (generic term)
+pinus glabra|1
+(noun)|spruce pine|Pinus glabra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus jeffreyi|1
+(noun)|Jeffrey pine|Jeffrey's pine|black pine|Pinus jeffreyi|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus longaeva|1
+(noun)|ancient pine|Pinus longaeva|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus monophylla|1
+(noun)|single-leaf|single-leaf pine|single-leaf pinyon|Pinus monophylla|nut pine (generic term)
+pinus monticola|1
+(noun)|western white pine|silver pine|mountain pine|Pinus monticola|white pine (generic term)
+pinus mugo|1
+(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus muricata|1
+(noun)|bishop pine|bishop's pine|Pinus muricata|pinon (generic term)|pinyon (generic term)
+pinus nigra|1
+(noun)|black pine|Pinus nigra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus palustris|1
+(noun)|longleaf pine|pitch pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine (generic term)
+pinus parryana|1
+(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon (generic term)|pinyon (generic term)
+pinus pinea|1
+(noun)|stone pine|umbrella pine|European nut pine|Pinus pinea|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus ponderosa|1
+(noun)|ponderosa|ponderosa pine|western yellow pine|bull pine|Pinus ponderosa|yellow pine (generic term)
+pinus pungens|1
+(noun)|table-mountain pine|prickly pine|hickory pine|Pinus pungens|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus quadrifolia|1
+(noun)|Parry's pinyon|Pinus quadrifolia|Pinus parryana|pinon (generic term)|pinyon (generic term)
+pinus radiata|1
+(noun)|Monterey pine|Pinus radiata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus resinosa|1
+(noun)|red pine|Canadian red pine|Pinus resinosa|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus rigida|1
+(noun)|pitch pine|northern pitch pine|Pinus rigida|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus serotina|1
+(noun)|pond pine|Pinus serotina|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus strobiformis|1
+(noun)|southwestern white pine|Pinus strobiformis|white pine (generic term)
+pinus strobus|1
+(noun)|American white pine|eastern white pine|weymouth pine|Pinus strobus|white pine (generic term)
+pinus sylvestris|1
+(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus taeda|1
+(noun)|loblolly pine|frankincense pine|Pinus taeda|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus thunbergii|1
+(noun)|Japanese black pine|black pine|Pinus thunbergii|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus torreyana|1
+(noun)|Torrey pine|Torrey's pine|soledad pine|grey-leaf pine|sabine pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinus virginiana|1
+(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pinwheel|4
+(noun)|Aeonium haworthii|subshrub (generic term)|suffrutex (generic term)
+(noun)|wheel (generic term)
+(noun)|pinwheel wind collector|plaything (generic term)|toy (generic term)
+(noun)|catherine wheel|firework (generic term)|pyrotechnic (generic term)
+pinwheel-shaped|1
+(adj)|round (similar term)|circular (similar term)
+pinwheel flower|1
+(noun)|crape jasmine|crepe jasmine|crepe gardenia|East Indian rosebay|Adam's apple|Nero's crown|coffee rose|Tabernaemontana divaricate|shrub (generic term)|bush (generic term)
+pinwheel roll|1
+(noun)|sweet roll (generic term)|coffee roll (generic term)
+pinwheel wind collector|1
+(noun)|pinwheel|plaything (generic term)|toy (generic term)
+pinworm|1
+(noun)|threadworm|Enterobius vermicularis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+pinyon|1
+(noun)|pinon|pine (generic term)|pine tree (generic term)|true pine (generic term)
+piolet|1
+(noun)|ice ax|ice axe|ax (generic term)|axe (generic term)
+pion|1
+(noun)|pi-meson|meson (generic term)|mesotron (generic term)
+pioneer|5
+(noun)|innovator|trailblazer|groundbreaker|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+(noun)|settler (generic term)|colonist (generic term)
+(verb)|open up|introduce (generic term)|innovate (generic term)
+(verb)|initiate|cause (generic term)|do (generic term)|make (generic term)
+(verb)|explore (generic term)
+pious|2
+(adj)|devotional (similar term)|godly (similar term)|reverent (similar term)|worshipful (similar term)|holier-than-thou (similar term)|pietistic (similar term)|pietistical (similar term)|pharisaic (similar term)|pharisaical (similar term)|sanctimonious (similar term)|self-righteous (similar term)|prayerful (similar term)|religious (related term)|sacred (related term)|unworldly (related term)|virtuous (related term)|impious (antonym)
+(adj)|devout|god-fearing|religious (similar term)
+pious platitude|1
+(noun)|cant|talk (generic term)|talking (generic term)
+piously|2
+(adv)|impiously (antonym)
+(adv)|devoutly
+piousness|1
+(noun)|piety|righteousness (generic term)|impiety (antonym)
+pip|8
+(noun)|animal disease (generic term)
+(noun)|ailment (generic term)|complaint (generic term)|ill (generic term)
+(noun)|seed (generic term)
+(noun)|spot|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|blip|radar target|radar echo (generic term)
+(verb)|shoot|kill (generic term)
+(verb)|shoot|hit|injure (generic term)|wound (generic term)
+(verb)|worst|mop up|whip|rack up|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+pip-squeak|1
+(noun)|squirt|small fry|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+pip out|1
+(verb)|buy it|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+pipa|1
+(noun)|Pipa|genus Pipa|amphibian genus (generic term)
+pipa americana|1
+(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog (generic term)
+pipa pipa|1
+(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog (generic term)
+pipage|2
+(noun)|fee (generic term)
+(noun)|pipe|piping|tube (generic term)|tubing (generic term)
+pipal|1
+(noun)|pipal tree|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree (generic term)
+pipal tree|1
+(noun)|pipal|pipul|peepul|sacred fig|bo tree|Ficus religiosa|fig tree (generic term)
+pipe|10
+(noun)|tobacco pipe|tube (generic term)|tubing (generic term)
+(noun)|pipage|piping|tube (generic term)|tubing (generic term)
+(noun)|tube|cylinder (generic term)
+(noun)|tabor pipe|flageolet (generic term)|treble recorder (generic term)|shepherd's pipe (generic term)
+(noun)|organ pipe|pipework|wind instrument (generic term)|wind (generic term)
+(noun)|bagpipe|wind instrument (generic term)|wind (generic term)
+(verb)|shriek|shrill|pipe up|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|transport (generic term)
+(verb)|play (generic term)|pipe up (related term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+pipe-clay|1
+(verb)|clean (generic term)|make clean (generic term)
+pipe bomb|1
+(noun)|bomb (generic term)
+pipe bowl|1
+(noun)|bowl|container (generic term)
+pipe clamp|1
+(noun)|pipe vise|clamp (generic term)|clinch (generic term)
+pipe cleaner|1
+(noun)|cleaning implement (generic term)
+pipe cutter|1
+(noun)|hand tool (generic term)
+pipe down|1
+(verb)|quieten|hush|quiet|quiesce|quiet down|change intensity (generic term)|louden (antonym)
+pipe dream|1
+(noun)|dream|fantasy (generic term)|phantasy (generic term)
+pipe fitter|1
+(noun)|plumber|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+pipe fitting|1
+(noun)|pipefitting|fitting (generic term)
+pipe in|2
+(verb)|transport (generic term)|carry (generic term)
+(verb)|conduct (generic term)|transmit (generic term)|convey (generic term)|carry (generic term)|channel (generic term)
+pipe major|1
+(noun)|piper (generic term)|bagpiper (generic term)
+pipe of peace|1
+(noun)|calumet|peace pipe|pipe (generic term)|tobacco pipe (generic term)
+pipe organ|1
+(noun)|organ|wind instrument (generic term)|wind (generic term)
+pipe rack|1
+(noun)|rack (generic term)
+pipe smoker|1
+(noun)|smoker (generic term)|tobacco user (generic term)
+pipe up|2
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|shriek|shrill|pipe|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+pipe vine|1
+(noun)|Dutchman's-pipe|Aristolochia macrophylla|Aristolochia durior|birthwort (generic term)|Aristolochia clematitis (generic term)
+pipe vise|1
+(noun)|pipe clamp|clamp (generic term)|clinch (generic term)
+pipe wrench|1
+(noun)|tube wrench|adjustable wrench (generic term)|adjustable spanner (generic term)
+pipeclay|1
+(noun)|terra alba|clay (generic term)
+pipefish|1
+(noun)|needlefish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+pipefitting|1
+(noun)|pipe fitting|fitting (generic term)
+pipeful|1
+(noun)|containerful (generic term)
+pipeline|2
+(noun)|grapevine|word of mouth|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(noun)|line|pipe (generic term)|pipage (generic term)|piping (generic term)
+pipeline company|1
+(noun)|company (generic term)
+piper|2
+(noun)|bagpiper|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|Piper|genus Piper|dicot genus (generic term)|magnoliopsid genus (generic term)
+piper betel|1
+(noun)|betel|betel pepper|Piper betel|true pepper (generic term)|pepper vine (generic term)
+piper cubeba|1
+(noun)|cubeb|cubeb vine|Java pepper|Piper cubeba|true pepper (generic term)|pepper vine (generic term)
+piper longum|1
+(noun)|long pepper|Piper longum|true pepper (generic term)|pepper vine (generic term)
+piper nigrum|1
+(noun)|pepper|common pepper|black pepper|white pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+piperaceae|1
+(noun)|Piperaceae|family Piperaceae|pepper family|dicot family (generic term)|magnoliopsid family (generic term)
+piperacillin|1
+(noun)|Pipracil|penicillin (generic term)
+piperales|1
+(noun)|Piperales|order Piperales|plant order (generic term)
+piperazine|1
+(noun)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+piperin|1
+(noun)|piperine|chemical irritant (generic term)
+piperine|1
+(noun)|piperin|chemical irritant (generic term)
+piperocaine|1
+(noun)|piperocaine hydrochloride|Metycaine|spinal anesthetic (generic term)|spinal anaesthetic (generic term)
+piperocaine hydrochloride|1
+(noun)|piperocaine|Metycaine|spinal anesthetic (generic term)|spinal anaesthetic (generic term)
+pipestem clematis|1
+(noun)|Clematis lasiantha|clematis (generic term)
+pipet|1
+(noun)|pipette|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pipette|1
+(noun)|pipet|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pipework|1
+(noun)|organ pipe|pipe|wind instrument (generic term)|wind (generic term)
+pipewort|1
+(noun)|Eriocaulon aquaticum|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pipewort family|1
+(noun)|Eriocaulaceae|family Eriocaulaceae|monocot family (generic term)|liliopsid family (generic term)
+pipidae|1
+(noun)|Pipidae|family Pipidae|amphibian family (generic term)
+pipile|1
+(noun)|Pipile|genus Pipile|bird genus (generic term)
+pipilo|1
+(noun)|Pipilo|genus Pipilo|bird genus (generic term)
+pipilo erythrophthalmus|1
+(noun)|chewink|cheewink|Pipilo erythrophthalmus|towhee (generic term)
+piping|5
+(adj)|high (similar term)|high-pitched (similar term)
+(noun)|cord (generic term)
+(noun)|pipe|pipage|tube (generic term)|tubing (generic term)
+(noun)|playing (generic term)
+(adv)|steaming
+piping crow|1
+(noun)|piping crow-shrike|Gymnorhina tibicen|Australian magpie (generic term)
+piping crow-shrike|1
+(noun)|piping crow|Gymnorhina tibicen|Australian magpie (generic term)
+piping guan|1
+(noun)|guan (generic term)
+piping plover|1
+(noun)|Charadrius melodus|plover (generic term)
+pipistrel|1
+(noun)|pipistrelle|Pipistrellus pipistrellus|vespertilian bat (generic term)|vespertilionid (generic term)
+pipistrelle|1
+(noun)|pipistrel|Pipistrellus pipistrellus|vespertilian bat (generic term)|vespertilionid (generic term)
+pipistrellus|1
+(noun)|Pipistrellus|genus Pipistrellus|mammal genus (generic term)
+pipistrellus pipistrellus|1
+(noun)|pipistrelle|pipistrel|Pipistrellus pipistrellus|vespertilian bat (generic term)|vespertilionid (generic term)
+pipistrellus subflavus|1
+(noun)|eastern pipistrel|Pipistrellus subflavus|vespertilian bat (generic term)|vespertilionid (generic term)
+pipit|1
+(noun)|titlark|lark|oscine (generic term)|oscine bird (generic term)
+pippin|1
+(noun)|Pippin|eating apple (generic term)|dessert apple (generic term)
+pipra|1
+(noun)|Pipra|genus Pipra|bird genus (generic term)
+pipracil|1
+(noun)|piperacillin|Pipracil|penicillin (generic term)
+pipridae|1
+(noun)|Pipridae|family Pipridae|bird family (generic term)
+pipsissewa|1
+(noun)|prince's pine|herb (generic term)|herbaceous plant (generic term)
+piptadenia|1
+(noun)|Piptadenia|genus Piptadenia|rosid dicot genus (generic term)
+piptadenia macrocarpa|1
+(noun)|Anadenanthera colubrina|Piptadenia macrocarpa|shrub (generic term)|bush (generic term)
+pipturus|1
+(noun)|Pipturus|genus Pipturus|dicot genus (generic term)|magnoliopsid genus (generic term)
+pipturus albidus|1
+(noun)|Pipturus albidus|angiospermous tree (generic term)|flowering tree (generic term)
+pipturus argenteus|1
+(noun)|Queensland grass-cloth plant|Pipturus argenteus|woody plant (generic term)|ligneous plant (generic term)
+pipul|1
+(noun)|pipal|pipal tree|peepul|sacred fig|bo tree|Ficus religiosa|fig tree (generic term)
+piquance|2
+(noun)|nip|piquancy|piquantness|tang|tanginess|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|piquancy|piquantness|quality (generic term)
+piquancy|2
+(noun)|nip|piquance|piquantness|tang|tanginess|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|piquance|piquantness|quality (generic term)
+piquant|3
+(adj)|savory|savoury|spicy|zesty|tasty (similar term)
+(adj)|salty|stimulating (similar term)
+(adj)|engaging|attractive (similar term)
+piquantly|1
+(adv)|spicily
+piquantness|2
+(noun)|nip|piquance|piquancy|tang|tanginess|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|piquancy|piquance|quality (generic term)
+pique|3
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|temper|irritation|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(verb)|offend|anger (generic term)
+piqueria|1
+(noun)|Piqueria|genus Piqueria|asterid dicot genus (generic term)
+piquet|2
+(noun)|card game (generic term)|cards (generic term)
+(noun)|picket|torture (generic term)|torturing (generic term)
+piracy|2
+(noun)|buccaneering|highjacking (generic term)|hijacking (generic term)
+(noun)|plagiarism|plagiarization|plagiarisation|copyright infringement (generic term)|infringement of copyright (generic term)
+pirana|1
+(noun)|piranha|caribe|characin (generic term)|characin fish (generic term)|characid (generic term)
+pirandello|1
+(noun)|Pirandello|Luigi Pirandello|dramatist (generic term)|playwright (generic term)|novelist (generic term)
+piranga|1
+(noun)|Piranga|genus Piranga|bird genus (generic term)
+piranga flava hepatica|1
+(noun)|hepatic tanager|Piranga flava hepatica|tanager (generic term)
+piranga ludoviciana|1
+(noun)|western tanager|Piranga ludoviciana|tanager (generic term)
+piranga olivacea|1
+(noun)|scarlet tanager|Piranga olivacea|redbird|firebird|tanager (generic term)
+piranga rubra|1
+(noun)|summer tanager|summer redbird|Piranga rubra|tanager (generic term)
+piranha|2
+(noun)|marauder|predator|vulture|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|pirana|caribe|characin (generic term)|characin fish (generic term)|characid (generic term)
+pirate|5
+(noun)|plagiarist|plagiarizer|plagiariser|literary pirate|thief (generic term)|stealer (generic term)
+(noun)|buccaneer|sea robber|sea rover|plunderer (generic term)|pillager (generic term)|looter (generic term)|spoiler (generic term)|despoiler (generic term)|raider (generic term)|freebooter (generic term)
+(noun)|pirate ship|ship (generic term)
+(verb)|steal (generic term)
+(verb)|commandeer|hijack|highjack|seize (generic term)
+pirate flag|1
+(noun)|black flag|Jolly Roger|blackjack|flag (generic term)
+pirate ship|1
+(noun)|pirate|ship (generic term)
+piratical|2
+(adj)|plunderer|pillager|looter|spoiler|despoiler|raider|freebooter (related term)
+(adj)|copyright infringement|infringement of copyright (related term)
+piriform area|1
+(noun)|pyriform area|pyriform lobe|piriform lobe|neural structure (generic term)
+piriform lobe|1
+(noun)|pyriform area|piriform area|pyriform lobe|neural structure (generic term)
+pirogi|1
+(noun)|piroshki|pirozhki|turnover (generic term)
+pirogue|1
+(noun)|dugout canoe|dugout|canoe (generic term)
+piroplasm|1
+(noun)|sporozoan (generic term)
+piroshki|1
+(noun)|pirogi|pirozhki|turnover (generic term)
+pirouette|2
+(noun)|spin (generic term)|twirl (generic term)|twist (generic term)|twisting (generic term)|whirl (generic term)
+(verb)|pivot (generic term)|swivel (generic term)
+piroxicam|1
+(noun)|Feldene|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+pirozhki|1
+(noun)|pirogi|piroshki|turnover (generic term)
+pis aller|1
+(noun)|last resort|expedient (generic term)
+pisa|1
+(noun)|Pisa|city (generic term)|metropolis (generic term)|urban center (generic term)
+pisang wax|1
+(noun)|wax (generic term)
+pisanosaur|1
+(noun)|pisanosaurus|ornithischian (generic term)|ornithischian dinosaur (generic term)
+pisanosaurus|1
+(noun)|pisanosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+piscary|1
+(noun)|fishery|workplace (generic term)|work (generic term)
+piscatorial|1
+(adj)|piscatory|commercial enterprise|business enterprise|business (related term)
+piscatory|1
+(adj)|piscatorial|commercial enterprise|business enterprise|business (related term)
+pisces|4
+(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|Pisces|Fish|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Pisces|constellation (generic term)
+(noun)|Pisces|division (generic term)
+pisces the fishes|1
+(noun)|Pisces|Pisces the Fishes|Fish|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+piscidia|1
+(noun)|Piscidia|genus Piscidia|rosid dicot genus (generic term)
+piscidia erythrina|1
+(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree (generic term)
+piscidia piscipula|1
+(noun)|Jamaica dogwood|fish fuddle|Piscidia piscipula|Piscidia erythrina|tree (generic term)
+piscine|1
+(adj)|aquatic vertebrate (related term)
+piscivorous|1
+(adj)|carnivorous (similar term)
+pisha paysha|1
+(noun)|card game (generic term)|cards (generic term)
+pisiform|1
+(noun)|pisiform bone|os pisiforme|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+pisiform bone|1
+(noun)|pisiform|os pisiforme|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+pismire|1
+(noun)|ant|emmet|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+pisonia|1
+(noun)|Pisonia|genus Pisonia|caryophylloid dicot genus (generic term)
+pisonia aculeata|1
+(noun)|cockspur|Pisonia aculeata|tree (generic term)
+piss|3
+(noun)|urine|pee|piddle|weewee|water|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|peeing|pee|pissing|micturition (generic term)|urination (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+piss-up|1
+(noun)|bust (generic term)|tear (generic term)|binge (generic term)|bout (generic term)
+pissaba palm|1
+(noun)|piassava palm|Bahia piassava|bahia coquilla|Attalea funifera|feather palm (generic term)
+pissed|2
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed off|riled|roiled|steamed|stung|displeased (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+pissed off|1
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|riled|roiled|steamed|stung|displeased (similar term)
+pisser|2
+(noun)|urinator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|difficulty (generic term)
+pissing|1
+(noun)|peeing|pee|piss|micturition (generic term)|urination (generic term)
+pissis|1
+(noun)|Pissis|mountain peak (generic term)
+pistachio|2
+(noun)|Pistacia vera|pistachio tree|nut tree (generic term)
+(noun)|pistachio nut|edible nut (generic term)
+pistachio nut|1
+(noun)|pistachio|edible nut (generic term)
+pistachio tree|1
+(noun)|pistachio|Pistacia vera|nut tree (generic term)
+pistacia|1
+(noun)|Pistacia|genus Pistacia|dicot genus (generic term)|magnoliopsid genus (generic term)
+pistacia lentiscus|1
+(noun)|mastic|mastic tree|lentisk|Pistacia lentiscus|shrub (generic term)|bush (generic term)
+pistacia terebinthus|1
+(noun)|terebinth|Pistacia terebinthus|angiospermous tree (generic term)|flowering tree (generic term)
+pistacia vera|1
+(noun)|pistachio|Pistacia vera|pistachio tree|nut tree (generic term)
+piste|2
+(noun)|court (generic term)
+(noun)|ski run (generic term)|ski trail (generic term)
+pistia|1
+(noun)|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pistia stratiotes|1
+(noun)|pistia|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pistia stratoites|1
+(noun)|pistia|water lettuce|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pistil|1
+(noun)|reproductive structure (generic term)
+pistillate|2
+(adj)|carpellate|acarpelous (antonym)
+(adj)|female (similar term)
+pistillode|1
+(noun)|pistil (generic term)
+pistol|1
+(noun)|handgun|side arm|shooting iron|firearm (generic term)|piece (generic term)|small-arm (generic term)
+pistol-whip|1
+(verb)|beat (generic term)|beat up (generic term)|work over (generic term)
+pistol grip|1
+(noun)|stock (generic term)|gunstock (generic term)
+pistol shrimp|1
+(noun)|snapping shrimp|shrimp (generic term)
+pistoleer|1
+(noun)|soldier (generic term)
+piston|2
+(noun)|Piston|Walter Piston|composer (generic term)
+(noun)|plunger|mechanical device (generic term)
+piston chamber|1
+(noun)|cylinder|chamber (generic term)
+piston ring|1
+(noun)|seal (generic term)
+piston rod|1
+(noun)|connecting rod (generic term)
+pisum|1
+(noun)|Pisum|genus Pisum|rosid dicot genus (generic term)
+pisum arvense|1
+(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea (generic term)|pea plant (generic term)
+pisum sativum|1
+(noun)|garden pea|garden pea plant|common pea|Pisum sativum|pea (generic term)|pea plant (generic term)
+pisum sativum arvense|1
+(noun)|field pea|field-pea plant|Austrian winter pea|Pisum sativum arvense|Pisum arvense|pea (generic term)|pea plant (generic term)
+pisum sativum macrocarpon|1
+(noun)|edible-pod pea|edible-podded pea|Pisum sativum macrocarpon|pea (generic term)|pea plant (generic term)
+pit|11
+(noun)|cavity|hole (generic term)|hollow (generic term)
+(noun)|fossa|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|stone|endocarp|pericarp (generic term)|seed vessel (generic term)
+(noun)|Hell|perdition|Inferno|infernal region|nether region|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)|Heaven (antonym)
+(noun)|pitfall|trap (generic term)
+(noun)|quarry|stone pit|excavation (generic term)
+(noun)|orchestra pit|area (generic term)
+(noun)|colliery|workplace (generic term)|work (generic term)
+(verb)|oppose|match|play off|confront (generic term)|face (generic term)
+(verb)|scar|mark|pock|deface (generic term)|disfigure (generic term)|blemish (generic term)
+(verb)|stone|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+pit-a-pat|1
+(adv)|pitty-patty|pitty-pat|pitter-patter
+pit-run gravel|1
+(noun)|bank gravel|pit run|gravel (generic term)|crushed rock (generic term)
+pit bull terrier|1
+(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|bullterrier (generic term)|bull terrier (generic term)
+pit of the stomach|1
+(noun)|epigastric fossa|pit (generic term)|fossa (generic term)
+pit run|1
+(noun)|bank gravel|pit-run gravel|gravel (generic term)|crushed rock (generic term)
+pit stop|1
+(noun)|stop (generic term)|stopover (generic term)|layover (generic term)
+pit viper|1
+(noun)|viper (generic term)
+pita|1
+(noun)|pocket bread|flatbread (generic term)
+pitahaya|2
+(noun)|pitahaya cactus|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus (generic term)
+(noun)|edible fruit (generic term)
+pitahaya cactus|1
+(noun)|pitahaya|Acanthocereus tetragonus|Acanthocereus pentagonus|cactus (generic term)
+pitanga|1
+(noun)|Surinam cherry|Eugenia uniflora|fruit tree (generic term)
+pitch|22
+(noun)|sound property (generic term)
+(noun)|delivery|throw (generic term)
+(noun)|position (generic term)|place (generic term)
+(noun)|sales talk|sales pitch|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(noun)|rake|slant|gradient (generic term)|slope (generic term)
+(noun)|tar|bitumen (generic term)
+(noun)|pitch shot|approach (generic term)|approach shot (generic term)
+(noun)|auction pitch|all fours (generic term)|high-low-jack (generic term)
+(noun)|lurch|pitching|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|throw (generic term)
+(verb)|flip|toss|sky|fling (generic term)
+(verb)|lurch|shift|move (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|set (generic term)
+(verb)|peddle|monger|huckster|hawk|vend|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|slope|incline|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+(verb)|cant|cant over|tilt|slant|move (generic term)
+(verb)|set up|rear (generic term)|erect (generic term)
+(verb)|deliver|throw (generic term)
+(verb)|hit (generic term)
+(verb)|play (generic term)
+(verb)|gear|adapt (generic term)|accommodate (generic term)
+pitch-black|1
+(adj)|black|pitch-dark|dark (similar term)
+pitch-dark|1
+(adj)|black|pitch-black|dark (similar term)
+pitch accent|1
+(noun)|tonic accent|stress (generic term)|emphasis (generic term)|accent (generic term)
+pitch apple|1
+(noun)|strangler fig|Clusia rosea|Clusia major|strangler (generic term)|strangler tree (generic term)
+pitch black|1
+(noun)|coal black|ebony|jet black|sable|soot black|black (generic term)|blackness (generic term)|inkiness (generic term)
+pitch blackness|1
+(noun)|total darkness|lightlessness|blackness|black|dark (generic term)|darkness (generic term)
+pitch contour|1
+(noun)|intonation|modulation|prosody (generic term)|inflection (generic term)
+pitch in|1
+(verb)|dig in|eat (generic term)
+pitch into|1
+(verb)|lam into|tear into|lace into|lay into|hit (generic term)
+pitch pine|2
+(noun)|longleaf pine|southern yellow pine|Georgia pine|Pinus palustris|yellow pine (generic term)
+(noun)|northern pitch pine|Pinus rigida|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pitch pipe|1
+(noun)|pipe (generic term)|tabor pipe (generic term)
+pitch shot|1
+(noun)|pitch|approach (generic term)|approach shot (generic term)
+pitchblende|1
+(noun)|uraninite|uranium ore (generic term)
+pitched|1
+(adj)|inclined (similar term)
+pitched battle|1
+(noun)|battle (generic term)|conflict (generic term)|fight (generic term)|engagement (generic term)
+pitcher|4
+(noun)|hurler|twirler|thrower (generic term)|ballplayer (generic term)|baseball player (generic term)
+(noun)|ewer|vessel (generic term)
+(noun)|pitcherful|containerful (generic term)
+(noun)|mound|position (generic term)
+pitcher's mound|1
+(noun)|mound|hill|baseball equipment (generic term)
+pitcher-plant family|1
+(noun)|Sarraceniaceae|family Sarraceniaceae|dicot family (generic term)|magnoliopsid family (generic term)
+pitcher-shaped|1
+(adj)|formed (similar term)
+pitcher plant|1
+(noun)|carnivorous plant (generic term)
+pitcher sage|2
+(noun)|Salvia spathacea|sage (generic term)|salvia (generic term)
+(noun)|Lepechinia calycina|Sphacele calycina|shrub (generic term)|bush (generic term)
+pitcherful|1
+(noun)|pitcher|containerful (generic term)
+pitchfork|2
+(noun)|hand tool (generic term)
+(verb)|fork|lift (generic term)
+pitching|2
+(noun)|playing (generic term)
+(noun)|lurch|pitch|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+pitching change|1
+(noun)|replacement (generic term)|replacing (generic term)
+pitching coach|1
+(noun)|baseball coach (generic term)|baseball manager (generic term)
+pitching wedge|1
+(noun)|wedge (generic term)
+pitchman|2
+(noun)|salesman (generic term)
+(noun)|peddler|pedlar|packman|hawker|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+pitchstone|1
+(noun)|volcanic glass (generic term)
+pitchy|2
+(adj)|coal-black|jet|jet-black|sooty|achromatic (similar term)
+(adj)|resinous|resiny|tarry|adhesive (similar term)
+piteous|1
+(adj)|hapless|miserable|misfortunate|pathetic|pitiable|pitiful|poor|wretched|unfortunate (similar term)
+pitfall|2
+(noun)|booby trap|difficulty (generic term)
+(noun)|pit|trap (generic term)
+pith|3
+(noun)|plant tissue (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(verb)|get rid of (generic term)|remove (generic term)
+pith hat|1
+(noun)|pith helmet|sun helmet|topee|topi|sunhat (generic term)|sun hat (generic term)
+pith helmet|1
+(noun)|pith hat|sun helmet|topee|topi|sunhat (generic term)|sun hat (generic term)
+pithead|1
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+pithecanthropus|1
+(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid (generic term)
+pithecanthropus erectus|1
+(noun)|Pithecanthropus|Pithecanthropus erectus|genus Pithecanthropus|hominid (generic term)
+pithecellobium|1
+(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus (generic term)
+pithecellobium dulce|1
+(noun)|manila tamarind|camachile|huamachil|wild tamarind|Pithecellobium dulce|tree (generic term)
+pithecellodium unguis-cati|1
+(noun)|cat's-claw|catclaw|black bead|Pithecellodium unguis-cati|shrub (generic term)|bush (generic term)
+pithecia|1
+(noun)|Pithecia|genus Pithecia|mammal genus (generic term)
+pithecolobium|1
+(noun)|Pithecellobium|genus Pithecellobium|Pithecolobium|genus Pithecolobium|rosid dicot genus (generic term)
+pithily|1
+(adv)|sententiously
+pithiness|1
+(noun)|conciseness|concision|succinctness|terseness (generic term)
+pithy|1
+(adj)|sententious|concise (similar term)
+pitiable|2
+(adj)|pathetic|pitiful|contemptible (similar term)
+(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiful|poor|wretched|unfortunate (similar term)
+pitiably|1
+(adv)|pathetically
+pitiful|3
+(adj)|pathetic|pitiable|contemptible (similar term)
+(adj)|deplorable|distressing|lamentable|sad|sorry|bad (similar term)
+(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|poor|wretched|unfortunate (similar term)
+pitiless|2
+(adj)|remorseless|ruthless|unpitying|merciless (similar term)|unmerciful (similar term)
+(adj)|unkind|inhumane (similar term)
+pitilessly|1
+(adv)|mercilessly|unmercifully|remorselessly
+pitilessness|2
+(noun)|cruelty|mercilessness|ruthlessness|heartlessness (generic term)|coldheartedness (generic term)|hardheartedness (generic term)
+(noun)|ruthlessness|mercilessness (generic term)|unmercifulness (generic term)
+pitman|2
+(noun)|Pitman|Sir Isaac Pitman|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|coal miner|collier|miner (generic term)|mineworker (generic term)
+pitocin|1
+(noun)|oxytocin|Pitocin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+piton|1
+(noun)|spike (generic term)
+pitot|2
+(noun)|Pitot|Henri Pitot|physicist (generic term)
+(noun)|Pitot tube|Pitot|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pitot-static tube|1
+(noun)|Pitot-static tube|Pitot head|Pitot tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pitot head|1
+(noun)|Pitot-static tube|Pitot head|Pitot tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pitot tube|2
+(noun)|Pitot tube|Pitot|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|Pitot-static tube|Pitot head|Pitot tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pitprop|1
+(noun)|sprag|prop (generic term)
+pitressin|1
+(noun)|vasopressin|antidiuretic hormone|ADH|Pitressin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+pitsaw|1
+(noun)|two-handed saw (generic term)|whipsaw (generic term)|two-man saw (generic term)|lumberman's saw (generic term)
+pitt|3
+(noun)|Pitt|George Pitt|George Dibdin Pitt|George Dibdin-Pitt|dramatist (generic term)|playwright (generic term)
+(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman (generic term)|solon (generic term)|national leader (generic term)
+pitt the elder|1
+(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman (generic term)|solon (generic term)|national leader (generic term)
+pitt the younger|1
+(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman (generic term)|solon (generic term)|national leader (generic term)
+pitta|1
+(noun)|tyrannid (generic term)
+pittance|1
+(noun)|payment (generic term)
+pitted|1
+(adj)|alveolate|faveolate|cavitied|honeycombed|cellular (similar term)
+pitter-patter|4
+(noun)|pat (generic term)|rap (generic term)|tap (generic term)
+(verb)|sprinkle|spit|spatter|patter|rain (generic term)|rain down (generic term)
+(verb)|patter|sound (generic term)|go (generic term)
+(adv)|pit-a-pat|pitty-patty|pitty-pat
+pittidae|1
+(noun)|Pittidae|family Pittidae|bird family (generic term)
+pitting|1
+(noun)|roughness|indentation|corrosion (generic term)|corroding (generic term)|erosion (generic term)
+pittsburgh|1
+(noun)|Pittsburgh|city (generic term)|metropolis (generic term)|urban center (generic term)
+pittsburgh of the south|1
+(noun)|Birmingham|Pittsburgh of the South|city (generic term)|metropolis (generic term)|urban center (generic term)
+pittsfield|1
+(noun)|Pittsfield|town (generic term)
+pitty-pat|1
+(adv)|pit-a-pat|pitty-patty|pitter-patter
+pitty-patty|1
+(adv)|pit-a-pat|pitty-pat|pitter-patter
+pituitary|3
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+(adj)|acromegalic|unshapely (similar term)
+(noun)|pituitary gland|pituitary body|hypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pituitary body|1
+(noun)|pituitary|pituitary gland|hypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pituitary gland|1
+(noun)|pituitary|pituitary body|hypophysis|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+pituophis|1
+(noun)|Pituophis|genus Pituophis|reptile genus (generic term)
+pituophis melanoleucus|1
+(noun)|gopher snake|Pituophis melanoleucus|bull snake (generic term)|bull-snake (generic term)
+pity|4
+(noun)|commiseration|ruth|pathos|sympathy (generic term)|fellow feeling (generic term)
+(noun)|shame|misfortune (generic term)|bad luck (generic term)
+(noun)|compassion|mercifulness (generic term)|mercy (generic term)
+(verb)|feel for|compassionate|condole with|sympathize with|grieve (generic term)|sorrow (generic term)
+pitying|1
+(adj)|sorry|compassionate (similar term)
+pityingly|1
+(adv)|compassionately
+pitymys|1
+(noun)|Pitymys|genus Pitymys|mammal genus (generic term)
+pitymys pinetorum|1
+(noun)|pine vole|pine mouse|Pitymys pinetorum|vole (generic term)|field mouse (generic term)
+pityriasis|1
+(noun)|dermatosis (generic term)
+pityriasis alba|1
+(noun)|pityriasis (generic term)
+pityriasis rosea|1
+(noun)|pityriasis (generic term)
+pityrogramma|1
+(noun)|Pityrogramma|genus Pityrogramma|fern genus (generic term)
+pityrogramma argentea|1
+(noun)|silver fern|Pityrogramma argentea|fern (generic term)
+pityrogramma calomelanos|1
+(noun)|silver fern|Pityrogramma calomelanos|fern (generic term)
+pityrogramma calomelanos aureoflava|1
+(noun)|golden fern|Pityrogramma calomelanos aureoflava|fern (generic term)
+pityrogramma chrysophylla|1
+(noun)|gold fern|Pityrogramma chrysophylla|fern (generic term)
+pius ii|1
+(noun)|Pius II|Aeneas Silvius|Enea Silvio Piccolomini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius ix|1
+(noun)|Pius IX|Giovanni Mastai-Ferretti|Giovanni Maria Mastai-Ferretti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius v|1
+(noun)|Pius V|Antonio Ghislieri|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius vi|1
+(noun)|Pius VI|Giovanni Angelo Braschi|Giannangelo Braschi|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius vii|1
+(noun)|Pius VII|Barnaba Chiaramonti|Luigi Barnaba Gregorio Chiaramonti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius x|1
+(noun)|Pius X|Giuseppe Sarto|Giuseppe Melchiorre Sarto|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius xi|1
+(noun)|Pius XI|Achille Ratti|Ambrogio Damiano Achille Ratti|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+pius xii|1
+(noun)|Pius XII|Eugenio Pacelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+piute|1
+(noun)|Paiute|Piute|Shoshone (generic term)|Shoshoni (generic term)
+pivot|4
+(noun)|pivot man|marcher (generic term)|parader (generic term)
+(noun)|pin|axis (generic term)|axis of rotation (generic term)
+(noun)|rotation (generic term)|rotary motion (generic term)
+(verb)|swivel|turn (generic term)
+pivot joint|1
+(noun)|rotary joint|rotatory joint|articulatio trochoidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+pivot man|1
+(noun)|pivot|marcher (generic term)|parader (generic term)
+pivot shot|1
+(noun)|basketball shot (generic term)
+pivotal|1
+(adj)|polar|crucial (similar term)|important (similar term)
+pivoting window|1
+(noun)|window (generic term)
+pix|2
+(noun)|pyx|pyx chest|pix chest|chest (generic term)
+(noun)|pyx|receptacle (generic term)
+pix chest|1
+(noun)|pyx|pix|pyx chest|chest (generic term)
+pixel|1
+(noun)|pel|picture element|component (generic term)|constituent (generic term)|element (generic term)
+pixie|2
+(noun)|elf|hob|gremlin|pixy|brownie|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|pyxie|pixy|Pyxidanthera barbulata|shrub (generic term)|bush (generic term)
+pixilated|2
+(adj)|impish|implike|mischievous|prankish|puckish|wicked|playful (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+pixy|2
+(noun)|pyxie|pixie|Pyxidanthera barbulata|shrub (generic term)|bush (generic term)
+(noun)|elf|hob|gremlin|pixie|brownie|imp|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+pizarro|1
+(noun)|Pizarro|Francisco Pizarro|conquistador (generic term)
+pizza|1
+(noun)|pizza pie|dish (generic term)
+pizza parlor|1
+(noun)|pizzeria|pizza shop|shop (generic term)|store (generic term)
+pizza pie|1
+(noun)|pizza|dish (generic term)
+pizza shop|1
+(noun)|pizzeria|pizza parlor|shop (generic term)|store (generic term)
+pizzaz|1
+(noun)|dynamism|pizzazz|oomph|zing|activeness (generic term)|activity (generic term)
+pizzazz|1
+(noun)|dynamism|pizzaz|oomph|zing|activeness (generic term)|activity (generic term)
+pizzeria|1
+(noun)|pizza shop|pizza parlor|shop (generic term)|store (generic term)
+pizzicato|2
+(adj)|plucked (similar term)
+(noun)|music (generic term)
+pj's|1
+(noun)|pajama|pyjama|jammies|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+pkd|1
+(noun)|polycystic kidney disease|PKD|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+pku|1
+(noun)|phenylketonuria|PKU|inborn error of metabolism (generic term)
+pku test|1
+(noun)|PKU test|diagnostic test (generic term)|diagnostic assay (generic term)
+placable|1
+(adj)|appeasable (similar term)|conciliable (similar term)|mitigable (similar term)|implacable (antonym)
+placard|3
+(noun)|poster|posting|notice|bill|card|sign (generic term)
+(verb)|post (generic term)
+(verb)|bill|post (generic term)
+placate|1
+(verb)|pacify|lenify|conciliate|assuage|appease|mollify|gentle|gruntle|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)
+placating|1
+(adj)|appeasing|placative|placatory|conciliatory (similar term)|conciliative (similar term)
+placation|1
+(noun)|conciliation|propitiation|appeasement (generic term)|calming (generic term)
+placative|1
+(adj)|appeasing|placating|placatory|conciliatory (similar term)|conciliative (similar term)
+placatory|1
+(adj)|appeasing|placating|placative|conciliatory (similar term)|conciliative (similar term)
+place|31
+(noun)|topographic point|spot|point (generic term)
+(noun)|property|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+(noun)|stead|position|lieu|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+(noun)|shoes|situation (generic term)|position (generic term)
+(noun)|home|residence (generic term)|abode (generic term)
+(noun)|position|post|berth|office|spot|billet|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|position|point (generic term)
+(noun)|station|social station (generic term)|social status (generic term)|social rank (generic term)|rank (generic term)
+(noun)|seat|space (generic term)
+(noun)|passage (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|plaza|piazza|public square (generic term)|square (generic term)
+(noun)|position|item (generic term)|point (generic term)
+(noun)|space|blank space|area (generic term)|expanse (generic term)|surface area (generic term)
+(verb)|put|set|pose|position|lay|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+(verb)|rate|rank|range|order|grade|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|locate|site|station (generic term)|post (generic term)|base (generic term)|send (generic term)|place (generic term)
+(verb)|order (generic term)
+(verb)|come in|come out|rank (generic term)
+(verb)|target|aim|direct|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|identify|determine (generic term)|set (generic term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|set|localize|localise|stage (generic term)|present (generic term)|represent (generic term)
+(verb)|put|set|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|localize|localise|situate (generic term)|locate (generic term)
+(verb)|invest|put|commit|spend (generic term)|expend (generic term)|drop (generic term)|divest (antonym)
+(verb)|station|post|base|send|move (generic term)|displace (generic term)
+(verb)|race (generic term)|run (generic term)
+(verb)|sing (generic term)
+place-kick|1
+(verb)|kick (generic term)
+place-kicker|1
+(noun)|placekicker|kicker (generic term)
+place-kicking|1
+(noun)|place kick|kick (generic term)|boot (generic term)|kicking (generic term)
+place-worship|1
+(noun)|topolatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+place bet|1
+(noun)|bet (generic term)|wager (generic term)
+place down|1
+(verb)|set down|put down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+place kick|1
+(noun)|place-kicking|kick (generic term)|boot (generic term)|kicking (generic term)
+place mat|1
+(noun)|mat (generic term)|table linen (generic term)|napery (generic term)
+place name|1
+(noun)|toponym|name (generic term)
+place of birth|1
+(noun)|birthplace|topographic point (generic term)|place (generic term)|spot (generic term)
+place of business|1
+(noun)|business establishment|establishment (generic term)
+place of origin|1
+(noun)|birthplace|cradle|provenance|provenience|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+place of worship|1
+(noun)|house of prayer|house of God|house of worship|building (generic term)|edifice (generic term)
+place setting|1
+(noun)|setting|service (generic term)|table service (generic term)
+place upright|1
+(verb)|stand|stand up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+placeable|1
+(adj)|recognizable|recognisable|identifiable (similar term)
+placebo|2
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(noun)|vesper (generic term)
+placebo effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+placed|2
+(adj)|located|set|situated|settled (similar term)
+(adj)|arranged (similar term)|ordered (similar term)
+placeholder|2
+(noun)|proxy|procurator|agent (generic term)
+(noun)|variable (generic term)
+placekicker|1
+(noun)|place-kicker|kicker (generic term)
+placeman|1
+(noun)|placeseeker|appointee (generic term)
+placement|3
+(noun)|arrangement|position (generic term)|spatial relation (generic term)
+(noun)|contact (generic term)
+(noun)|location|locating|position|positioning|emplacement|activity (generic term)
+placement center|1
+(noun)|placement office|administrative unit (generic term)|administrative body (generic term)
+placement office|1
+(noun)|placement center|administrative unit (generic term)|administrative body (generic term)
+placenta|2
+(noun)|reproductive structure (generic term)
+(noun)|vascular structure (generic term)
+placenta previa|1
+(noun)|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+placental|2
+(adj)|transplacental (similar term)|aplacental (antonym)
+(noun)|placental mammal|eutherian|eutherian mammal|mammal (generic term)|mammalian (generic term)
+placental mammal|1
+(noun)|placental|eutherian|eutherian mammal|mammal (generic term)|mammalian (generic term)
+placentation|2
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|reproductive structure (generic term)
+placer|1
+(noun)|alluvial sediment (generic term)|alluvial deposit (generic term)|alluvium (generic term)|alluvion (generic term)
+placer miner|1
+(noun)|miner (generic term)|mineworker (generic term)
+placer mining|1
+(noun)|mining (generic term)|excavation (generic term)
+placeseeker|1
+(noun)|placeman|appointee (generic term)
+placid|3
+(adj)|quiet|still|tranquil|smooth|unruffled|calm (similar term)
+(adj)|equable|even-tempered|good-tempered|good-natured (similar term)
+(adj)|easygoing|calm|contented (similar term)|content (similar term)
+placidity|2
+(noun)|placidness|calmness (generic term)
+(noun)|repose|quiet|serenity|tranquillity|tranquility|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+placidness|1
+(noun)|placidity|calmness (generic term)
+placido domingo|1
+(noun)|Domingo|Placido Domingo|tenor (generic term)
+placidyl|1
+(noun)|ethchlorvynol|Placidyl|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+placket|1
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+placoderm|1
+(noun)|aquatic vertebrate (generic term)
+placodermi|1
+(noun)|Placodermi|class Placodermi|class (generic term)
+placoid|1
+(adj)|platelike|planar (similar term)|two-dimensional (similar term)
+placuna|1
+(noun)|Placuna|genus Placuna|mollusk genus (generic term)
+placuna placenta|1
+(noun)|window oyster|windowpane oyster|capiz|Placuna placenta|oyster (generic term)
+plagal cadence|1
+(noun)|amen cadence|cadence (generic term)
+plage|1
+(noun)|beach (generic term)
+plagianthus|1
+(noun)|Plagianthus|genus Plagianthus|dilleniid dicot genus (generic term)
+plagianthus betulinus|1
+(noun)|ribbon tree|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree (generic term)
+plagianthus regius|1
+(noun)|ribbon tree|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree (generic term)
+plagiarisation|1
+(noun)|plagiarism|plagiarization|piracy|copyright infringement (generic term)|infringement of copyright (generic term)
+plagiarise|1
+(verb)|plagiarize|lift|steal (generic term)
+plagiarised|1
+(adj)|plagiaristic|plagiarized|derived (similar term)
+plagiariser|1
+(noun)|plagiarist|plagiarizer|literary pirate|pirate|thief (generic term)|stealer (generic term)
+plagiarism|2
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|plagiarization|plagiarisation|piracy|copyright infringement (generic term)|infringement of copyright (generic term)
+plagiarist|1
+(noun)|plagiarizer|plagiariser|literary pirate|pirate|thief (generic term)|stealer (generic term)
+plagiaristic|1
+(adj)|plagiarized|plagiarised|derived (similar term)
+plagiarization|1
+(noun)|plagiarism|plagiarisation|piracy|copyright infringement (generic term)|infringement of copyright (generic term)
+plagiarize|1
+(verb)|plagiarise|lift|steal (generic term)
+plagiarized|1
+(adj)|plagiaristic|plagiarised|derived (similar term)
+plagiarizer|1
+(noun)|plagiarist|plagiariser|literary pirate|pirate|thief (generic term)|stealer (generic term)
+plagiocephaly|1
+(noun)|deformity (generic term)|malformation (generic term)|misshapenness (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+plagioclase|1
+(noun)|oligoclase|feldspar (generic term)|felspar (generic term)
+plagioclastic|1
+(adj)|feldspar|felspar (related term)
+plague|7
+(noun)|pestilence|pest|pestis|epidemic disease (generic term)
+(noun)|pestilence|pest|epidemic disease (generic term)
+(noun)|infestation|swarm (generic term)|cloud (generic term)
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+(noun)|annoyance (generic term)|bother (generic term)|botheration (generic term)|pain (generic term)|infliction (generic term)|pain in the neck (generic term)|pain in the ass (generic term)
+(verb)|blight|afflict (generic term)|smite (generic term)
+(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|molest|provoke|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+plague pneumonia|1
+(noun)|pneumonic plague|pulmonic plague|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+plague spot|1
+(noun)|macule (generic term)|macula (generic term)
+plagued|1
+(adj)|infested|overrun|troubled (similar term)
+plaguey|3
+(adj)|pestilent|pestilential|pestiferous|epidemic (similar term)
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|teasing|vexatious|vexing|disagreeable (similar term)
+(adv)|plaguy|plaguily
+plaguily|1
+(adv)|plaguey|plaguy
+plaguy|2
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguey|teasing|vexatious|vexing|disagreeable (similar term)
+(adv)|plaguey|plaguily
+plaice|2
+(noun)|flounder (generic term)
+(noun)|Pleuronectes platessa|righteye flounder (generic term)|righteyed flounder (generic term)
+plaid|1
+(noun)|tartan|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+plain|11
+(adj)|apparent|evident|manifest|patent|unmistakable|obvious (similar term)
+(adj)|austere (similar term)|severe (similar term)|stark (similar term)|stern (similar term)|bare (similar term)|mere (similar term)|simple (similar term)|chaste (similar term)|dry (similar term)|dry (similar term)|featureless (similar term)|homely (similar term)|inelaborate (similar term)|unelaborate (similar term)|literal (similar term)|simple (similar term)|tailored (similar term)|trim (similar term)|vanilla (similar term)|simple (related term)|unadorned (related term)|undecorated (related term)|unrhetorical (related term)|unpretentious (related term)|fancy (antonym)
+(adj)|unpatterned|solid-colored (similar term)|solid-coloured (similar term)|patterned (antonym)
+(adj)|sheer|unmingled|unmixed|pure (similar term)
+(adj)|unvarnished|direct (similar term)
+(adj)|bare|spare|unembellished|unornamented|unadorned (similar term)|undecorated (similar term)
+(adj)|homely|unattractive (similar term)
+(noun)|field|champaign|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|knit|knit stitch|plain stitch|knitting stitch (generic term)
+(verb)|complain|kick|sound off|quetch|kvetch|cheer (antonym)
+(adv)|obviously|evidently|manifestly|patently|apparently|plainly
+plain-woven|1
+(adj)|woven (similar term)
+plain clothes|1
+(noun)|civilian clothing|civilian dress|civilian garb|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+plain flour|1
+(noun)|flour (generic term)
+plain sailing|1
+(noun)|clear sailing|easy going|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+plain stitch|1
+(noun)|knit|knit stitch|plain|knitting stitch (generic term)
+plain turkey|1
+(noun)|Choriotis australis|bustard (generic term)
+plain wanderer|1
+(noun)|Pedionomus torquatus|wading bird (generic term)|wader (generic term)
+plain weave|1
+(noun)|taffeta weave|weave (generic term)
+plainchant|1
+(noun)|plainsong|Gregorian chant|chant (generic term)
+plainclothesman|1
+(noun)|detective (generic term)|investigator (generic term)|tec (generic term)|police detective (generic term)
+plainly|2
+(adv)|obviously|evidently|manifestly|patently|apparently|plain
+(adv)|simply
+plainness|4
+(noun)|purity (generic term)|pureness (generic term)
+(noun)|perspicuity|perspicuousness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|homeliness|appearance (generic term)|visual aspect (generic term)
+plains indian|1
+(noun)|Plains Indian|Buffalo Indian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+plains lemon monarda|1
+(noun)|Monarda pectinata|monarda (generic term)|wild bergamot (generic term)
+plains pocket gopher|1
+(noun)|Geomys bursarius|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+plains pocket mouse|1
+(noun)|Perognathus flavescens|pocket mouse (generic term)
+plains spadefoot|1
+(noun)|Scaphiopus bombifrons|spadefoot (generic term)|spadefoot toad (generic term)
+plainsman|1
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+plainsong|1
+(noun)|plainchant|Gregorian chant|chant (generic term)
+plainspoken|2
+(adj)|unrhetorical (similar term)
+(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|point-blank|straight-from-the-shoulder|direct (similar term)
+plaint|2
+(noun)|allegation (generic term)
+(noun)|lament|lamentation|wail|complaint (generic term)
+plaintiff|1
+(noun)|complainant|litigant (generic term)|litigator (generic term)|defendant (antonym)
+plaintiff in error|1
+(noun)|appellant|litigant (generic term)|litigator (generic term)
+plaintive|1
+(adj)|mournful|sorrowful (similar term)
+plaintiveness|1
+(noun)|mournfulness (generic term)|sorrowfulness (generic term)|ruthfulness (generic term)
+plait|4
+(noun)|braid|tress|twist|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|pleat|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(verb)|braid|lace|weave (generic term)|tissue (generic term)
+(verb)|weave (generic term)|interweave (generic term)
+plaiter|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+plan|7
+(noun)|program|programme|idea (generic term)|thought (generic term)
+(noun)|design|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+(noun)|architectural plan|drawing (generic term)
+(verb)|be after|intend (generic term)|mean (generic term)|think (generic term)
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|project|contrive|design|create by mental act (generic term)|create mentally (generic term)
+(verb)|design|create by mental act (generic term)|create mentally (generic term)
+plan of action|1
+(noun)|plan (generic term)|program (generic term)|programme (generic term)
+plan of attack|1
+(noun)|approach|attack|conceptualization (generic term)|conceptualisation (generic term)|formulation (generic term)
+planar|1
+(adj)|two-dimensional|coplanar (similar term)|flat (similar term)|placoid (similar term)|platelike (similar term)|planate (similar term)|flattened (similar term)|tabular (similar term)|cubic (antonym)|linear (antonym)
+planaria|1
+(noun)|planarian|flatworm (generic term)|platyhelminth (generic term)
+planarian|1
+(noun)|planaria|flatworm (generic term)|platyhelminth (generic term)
+planate|1
+(adj)|flattened|planar (similar term)|two-dimensional (similar term)
+planation|1
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+planchet|1
+(noun)|coin blank|disk (generic term)|disc (generic term)
+planchette|1
+(noun)|board (generic term)
+planck|1
+(noun)|Planck|Max Planck|Max Karl Ernst Ludwig Planck|physicist (generic term)
+planck's constant|1
+(noun)|Planck's constant|h|factor of proportionality (generic term)|constant of proportionality (generic term)
+planck's law|1
+(noun)|Planck's law|law (generic term)|law of nature (generic term)
+planck's radiation law|1
+(noun)|Planck's radiation law|law (generic term)|law of nature (generic term)
+plane|9
+(adj)|flat|level|even (similar term)
+(noun)|airplane|aeroplane|heavier-than-air craft (generic term)
+(noun)|sheet|shape (generic term)|form (generic term)
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|planer|planing machine|power tool (generic term)
+(noun)|carpenter's plane|woodworking plane|edge tool (generic term)|hand tool (generic term)
+(verb)|shave|cut (generic term)
+(verb)|skim|glide (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+plane-polarized|1
+(adj)|optical phenomenon (related term)
+plane-tree family|1
+(noun)|Platanaceae|family Platanaceae|rosid dicot family (generic term)
+plane angle|1
+(noun)|angle (generic term)
+plane figure|1
+(noun)|two-dimensional figure|figure (generic term)
+plane geometry|1
+(noun)|geometry (generic term)
+plane seat|1
+(noun)|seat (generic term)
+plane section|1
+(noun)|section|area (generic term)|expanse (generic term)|surface area (generic term)
+plane table|1
+(noun)|surveying instrument (generic term)|surveyor's instrument (generic term)
+plane ticket|1
+(noun)|airplane ticket|ticket (generic term)
+plane tree|1
+(noun)|sycamore|platan|tree (generic term)
+planeness|1
+(noun)|two-dimensionality|flatness|dimensionality (generic term)
+planer|1
+(noun)|plane|planing machine|power tool (generic term)
+planera|1
+(noun)|Planera|genus Planera|dicot genus (generic term)|magnoliopsid genus (generic term)
+planet|3
+(noun)|major planet|celestial body (generic term)|heavenly body (generic term)
+(noun)|satellite|follower (generic term)
+(noun)|celestial body (generic term)|heavenly body (generic term)
+planet gear|1
+(noun)|planetary gear|epicyclic gear|planet wheel|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+planet wheel|1
+(noun)|planetary gear|epicyclic gear|planet gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+planetal|1
+(adj)|planetary|celestial body|heavenly body (related term)
+planetarium|3
+(noun)|building (generic term)|edifice (generic term)
+(noun)|optical device (generic term)
+(noun)|model (generic term)|simulation (generic term)
+planetary|4
+(adj)|planetal|celestial body|heavenly body (related term)
+(adj)|terrestrial|terrestrial planet (related term)
+(adj)|erratic|wandering|unsettled (similar term)
+(adj)|global|world|worldwide|world-wide|international (similar term)
+planetary gear|1
+(noun)|epicyclic gear|planet wheel|planet gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+planetary house|1
+(noun)|sign of the zodiac|star sign|sign|mansion|house|region (generic term)|part (generic term)
+planetary nebula|1
+(noun)|nebula (generic term)
+planetesimal|1
+(noun)|celestial body (generic term)|heavenly body (generic term)
+planetesimal hypothesis|1
+(noun)|scientific theory (generic term)
+planetoid|1
+(noun)|minor planet|celestial body (generic term)|heavenly body (generic term)
+plangency|1
+(noun)|resonance|reverberance|ringing|sonorousness|sonority|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+plangent|1
+(adj)|full (similar term)
+planimeter|1
+(noun)|integrator|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+planing machine|1
+(noun)|plane|planer|power tool (generic term)
+plank|5
+(noun)|board|lumber (generic term)|timber (generic term)
+(noun)|policy (generic term)
+(verb)|plank over|cover (generic term)
+(verb)|flump|plonk|plop|plunk|plump down|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+(verb)|serve (generic term)|serve up (generic term)|dish out (generic term)|dish up (generic term)|dish (generic term)
+plank-bed|1
+(noun)|bed (generic term)
+plank down|1
+(verb)|plonk down|plump down|drop (generic term)
+plank over|1
+(verb)|plank|cover (generic term)
+planking|3
+(noun)|lumber (generic term)|timber (generic term)
+(noun)|covering (generic term)
+(noun)|manual labor (generic term)|manual labour (generic term)
+plankton|1
+(noun)|organism (generic term)|being (generic term)
+planktonic|1
+(adj)|organism|being (related term)
+planktonic algae|1
+(noun)|phytoplankton (generic term)
+planless|1
+(adj)|adrift|afloat|aimless|directionless|rudderless|undirected|purposeless (similar term)
+planned|2
+(adj)|conceived (similar term)|formed (similar term)|contrived (similar term)|deep-laid (similar term)|designed (similar term)|prearranged (similar term)|preset (similar term)|predetermined (similar term)|projected (similar term)|proposed (similar term)|put-up (similar term)|intended (related term)|premeditated (related term)|unplanned (antonym)
+(adj)|aforethought|plotted|premeditated (similar term)
+planned community|1
+(noun)|residential district (generic term)|residential area (generic term)|community (generic term)
+planner|2
+(noun)|contriver|deviser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|notebook (generic term)|notebook computer (generic term)
+planning|3
+(noun)|preparation (generic term)|readying (generic term)
+(noun)|design (generic term)|designing (generic term)
+(noun)|preparation|provision|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+planning board|1
+(noun)|advisory board|board (generic term)
+planning commission|1
+(noun)|committee (generic term)|commission (generic term)
+plano|1
+(noun)|Plano|city (generic term)|metropolis (generic term)|urban center (generic term)
+planococcus|1
+(noun)|Planococcus|genus Planococcus|arthropod genus (generic term)
+planococcus citri|1
+(noun)|citrus mealybug|Planococcus citri|mealybug (generic term)|mealy bug (generic term)
+planoconcave|1
+(adj)|concave (similar term)
+planoconvex|1
+(adj)|convex (similar term)|bulging (similar term)
+planographic|1
+(adj)|printing|printing process (related term)
+planographic printing|1
+(noun)|planography|printing (generic term)|printing process (generic term)
+planography|1
+(noun)|planographic printing|printing (generic term)|printing process (generic term)
+plant|10
+(noun)|works|industrial plant|building complex (generic term)|complex (generic term)
+(noun)|flora|plant life|organism (generic term)|being (generic term)
+(noun)|contrivance (generic term)|stratagem (generic term)|dodge (generic term)
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(verb)|set|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|implant|engraft|embed|imbed|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|establish|found|constitute|institute|initiate (generic term)|pioneer (generic term)
+(verb)|stock (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|implant|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+plant-eating|1
+(adj)|phytophagic|phytophagous|phytophilous|herbivorous (similar term)
+plant-like|1
+(adj)|vegetable (similar term)
+plant bug|1
+(noun)|leaf bug|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+plant cell|1
+(noun)|cell (generic term)
+plant closing|1
+(noun)|closure (generic term)|closedown (generic term)|closing (generic term)|shutdown (generic term)
+plant department|1
+(noun)|building department|business department (generic term)
+plant disease|1
+(noun)|disease (generic term)
+plant family|1
+(noun)|family (generic term)
+plant fiber|1
+(noun)|plant fibre|natural fiber (generic term)|natural fibre (generic term)|plant product (generic term)
+plant fibre|1
+(noun)|plant fiber|natural fiber (generic term)|natural fibre (generic term)|plant product (generic term)
+plant food|1
+(noun)|fertilizer|fertiliser|chemical (generic term)|chemical substance (generic term)
+plant genus|1
+(noun)|genus (generic term)
+plant hopper|1
+(noun)|planthopper|homopterous insect (generic term)|homopteran (generic term)
+plant hormone|1
+(noun)|phytohormone|growth regulator|plant product (generic term)
+plant kingdom|1
+(noun)|Plantae|kingdom Plantae|kingdom (generic term)
+plant life|1
+(noun)|plant|flora|organism (generic term)|being (generic term)
+plant louse|1
+(noun)|louse|homopterous insect (generic term)|homopteran (generic term)
+plant material|1
+(noun)|material (generic term)|stuff (generic term)
+plant order|1
+(noun)|order (generic term)
+plant organ|1
+(noun)|plant part (generic term)|plant structure (generic term)
+plant part|1
+(noun)|plant structure|natural object (generic term)
+plant process|1
+(noun)|enation|process (generic term)|outgrowth (generic term)|appendage (generic term)
+plant product|1
+(noun)|plant material (generic term)
+plant scientist|1
+(noun)|botanist|phytologist|biologist (generic term)|life scientist (generic term)
+plant structure|1
+(noun)|plant part|natural object (generic term)
+plant tissue|1
+(noun)|plant part (generic term)|plant structure (generic term)
+plant toxin|1
+(noun)|phytotoxin|toxin (generic term)
+plant virus|1
+(noun)|virus (generic term)
+plantae|1
+(noun)|Plantae|kingdom Plantae|plant kingdom|kingdom (generic term)
+plantagenet|1
+(noun)|Plantagenet|Plantagenet line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+plantagenet line|1
+(noun)|Plantagenet|Plantagenet line|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+plantaginaceae|1
+(noun)|Plantaginaceae|family Plantaginaceae|plantain family|dicot family (generic term)|magnoliopsid family (generic term)
+plantaginales|1
+(noun)|Plantaginales|order Plantaginales|plant order (generic term)
+plantago|1
+(noun)|Plantago|genus Plantago|dicot genus (generic term)|magnoliopsid genus (generic term)
+plantago lanceolata|1
+(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain (generic term)
+plantago major|1
+(noun)|broad-leaved plantain|common plantain|white-man's foot|whiteman's foot|cart-track plant|Plantago major|plantain (generic term)
+plantago media|1
+(noun)|hoary plantain|Plantago media|plantain (generic term)
+plantago psyllium|1
+(noun)|fleawort|psyllium|Spanish psyllium|Plantago psyllium|plantain (generic term)
+plantago rugelii|1
+(noun)|rugel's plantain|broad-leaved plantain|Plantago rugelii|plantain (generic term)
+plantago virginica|1
+(noun)|hoary plantain|Plantago virginica|plantain (generic term)
+plantain|3
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|plantain tree|Musa paradisiaca|banana (generic term)|banana tree (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+plantain-leaved pussytoes|1
+(noun)|cat's foot (generic term)|cat's feet (generic term)|pussytoes (generic term)|Antennaria dioica (generic term)
+plantain family|1
+(noun)|Plantaginaceae|family Plantaginaceae|dicot family (generic term)|magnoliopsid family (generic term)
+plantain lily|1
+(noun)|day lily|herb (generic term)|herbaceous plant (generic term)
+plantain tree|1
+(noun)|plantain|Musa paradisiaca|banana (generic term)|banana tree (generic term)
+plantal|1
+(adj)|organism|being (related term)
+plantar|1
+(adj)|area|region (related term)
+plantar reflex|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+plantar wart|1
+(noun)|wart (generic term)|verruca (generic term)
+plantation|3
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|Plantation|colony (generic term)|settlement (generic term)
+(noun)|grove|woodlet|orchard|garden (generic term)
+plantation owner|1
+(noun)|planter|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+plantation walking horse|1
+(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+planted|2
+(adj)|deep-rooted|deep-seated|implanted|ingrained|established (similar term)|constituted (similar term)
+(adj)|cropped (similar term)|naturalized (similar term)|naturalised (similar term)|potbound (similar term)|rootbound (similar term)|quickset (similar term)|seeded (similar term)|sown (similar term)|self-seeded (similar term)|self-sown (similar term)|self-sowed (similar term)|soil-building (similar term)|unplanted (antonym)
+planter|3
+(noun)|plantation owner|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+(noun)|worker (generic term)
+(noun)|pot (generic term)|flowerpot (generic term)
+planter's punch|1
+(noun)|cocktail (generic term)
+planthopper|1
+(noun)|plant hopper|homopterous insect (generic term)|homopteran (generic term)
+plantigrade|2
+(adj)|digitigrade (antonym)
+(noun)|plantigrade mammal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)|digitigrade mammal (antonym)
+plantigrade mammal|1
+(noun)|plantigrade|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)|digitigrade mammal (antonym)
+planting|3
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+plantlet|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+plantlike flagellate|1
+(noun)|protozoan (generic term)|protozoon (generic term)
+plantsman|1
+(noun)|horticulturist|expert (generic term)
+planula|1
+(noun)|hydrozoan (generic term)|hydroid (generic term)
+plaque|2
+(noun)|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+(noun)|brass|memorial tablet|memorial (generic term)|monument (generic term)
+plaquenil|1
+(noun)|hydroxychloroquine|Plaquenil|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+plash|3
+(noun)|splash|noise (generic term)
+(verb)|pleach|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+(verb)|spatter|splatter|splash|splosh|swash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+plasm|2
+(noun)|germ plasm|protoplasm (generic term)|living substance (generic term)
+(noun)|plasma|extracellular fluid (generic term)|ECF (generic term)
+plasma|3
+(noun)|plasm|extracellular fluid (generic term)|ECF (generic term)
+(noun)|chalcedony (generic term)|calcedony (generic term)
+(noun)|state of matter (generic term)|state (generic term)
+plasma cell|1
+(noun)|plasmacyte|lymphocyte (generic term)|lymph cell (generic term)
+plasma membrane|1
+(noun)|cell membrane|cytomembrane|semipermeable membrane (generic term)
+plasma physics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+plasma protein|1
+(noun)|protein (generic term)
+plasma thromboplastin antecedent|1
+(noun)|factor XI|coagulation factor (generic term)|clotting factor (generic term)
+plasmablast|1
+(noun)|plasma cell (generic term)|plasmacyte (generic term)
+plasmacyte|1
+(noun)|plasma cell|lymphocyte (generic term)|lymph cell (generic term)
+plasmacytoma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+plasmapheresis|1
+(noun)|apheresis (generic term)|pheresis (generic term)
+plasmid|1
+(noun)|inclusion body (generic term)|cellular inclusion (generic term)|inclusion (generic term)
+plasmin|1
+(noun)|fibrinolysin|enzyme (generic term)
+plasminogen|1
+(noun)|plasmin (generic term)|fibrinolysin (generic term)
+plasminogen activator|1
+(noun)|urokinase|protease (generic term)|peptidase (generic term)|proteinase (generic term)|proteolytic enzyme (generic term)
+plasmodial slime mold|1
+(noun)|true slime mold|acellular slime mold|myxomycete|slime mold (generic term)|slime mould (generic term)
+plasmodiidae|1
+(noun)|Plasmodiidae|family Plasmodiidae|protoctist family (generic term)
+plasmodiophora|1
+(noun)|Plasmodiophora|genus Plasmodiophora|fungus genus (generic term)
+plasmodiophora brassicae|1
+(noun)|clubroot fungus|Plasmodiophora brassicae|fungus (generic term)
+plasmodiophoraceae|1
+(noun)|Plasmodiophoraceae|family Plasmodiophoraceae|fungus family (generic term)
+plasmodium|2
+(noun)|cytoplasm (generic term)|cytol (generic term)
+(noun)|Plasmodium vivax|malaria parasite|sporozoan (generic term)
+plasmodium vivax|1
+(noun)|plasmodium|Plasmodium vivax|malaria parasite|sporozoan (generic term)
+plassey|1
+(noun)|Plassey|battle of Plassey|pitched battle (generic term)
+plaster|11
+(noun)|mixture (generic term)|covering material (generic term)
+(noun)|plaster of Paris|calcium sulphate (generic term)|calcium sulfate (generic term)
+(noun)|poultice|cataplasm|dressing (generic term)|medical dressing (generic term)
+(noun)|plasterwork|surface (generic term)
+(noun)|adhesive plaster|sticking plaster|adhesive tape (generic term)
+(verb)|beplaster|cover (generic term)
+(verb)|affix (generic term)|stick on (generic term)
+(verb)|cover (generic term)
+(verb)|plaster over|stick on|cover (generic term)
+(verb)|daub|coat (generic term)|surface (generic term)
+(verb)|poultice|dress (generic term)
+plaster bandage|1
+(noun)|cast|plaster cast|bandage (generic term)|patch (generic term)
+plaster cast|1
+(noun)|cast|plaster bandage|bandage (generic term)|patch (generic term)
+plaster of paris|1
+(noun)|plaster of Paris|plaster|calcium sulphate (generic term)|calcium sulfate (generic term)
+plaster over|1
+(verb)|plaster|stick on|cover (generic term)
+plaster saint|1
+(noun)|good person (generic term)
+plasterboard|1
+(noun)|gypsum board|wallboard (generic term)|drywall (generic term)
+plastered|3
+(adj)|slicked|groomed (similar term)
+(adj)|sealed|covered (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+plasterer|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+plasterer's float|1
+(noun)|float|hand tool (generic term)
+plastering|1
+(noun)|daubing|application (generic term)|coating (generic term)|covering (generic term)
+plastering trowel|1
+(noun)|trowel (generic term)
+plasterwork|1
+(noun)|plaster|surface (generic term)
+plastic|4
+(adj)|fictile|moldable|elastic (similar term)
+(adj)|pliant|impressionable (similar term)|impressible (similar term)
+(adj)|formative|shaping|constructive (similar term)
+(noun)|solid (generic term)
+plastic art|1
+(noun)|art (generic term)|fine art (generic term)
+plastic bag|1
+(noun)|bag (generic term)
+plastic bomb|1
+(noun)|bomb (generic term)
+plastic explosive|1
+(noun)|plastique|explosive compound (generic term)
+plastic film|1
+(noun)|film|sheet (generic term)|flat solid (generic term)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+plastic laminate|1
+(noun)|laminate (generic term)
+plastic surgeon|1
+(noun)|cosmetic surgeon|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+plastic surgery|1
+(noun)|reconstructive surgery|anaplasty|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+plastic wrap|1
+(noun)|wrapping (generic term)|wrap (generic term)|wrapper (generic term)
+plasticine|1
+(noun)|Plasticine|synthetic (generic term)|synthetic substance (generic term)
+plasticise|2
+(verb)|plasticize|change (generic term)
+(verb)|plasticize|change (generic term)|alter (generic term)|modify (generic term)
+plasticiser|1
+(noun)|plasticizer|softener (generic term)
+plasticity|1
+(noun)|malleability|physical property (generic term)|unmalleability (antonym)
+plasticize|2
+(verb)|plasticise|change (generic term)
+(verb)|plasticise|change (generic term)|alter (generic term)|modify (generic term)
+plasticizer|1
+(noun)|plasticiser|softener (generic term)
+plastics industry|1
+(noun)|industry (generic term)
+plastid|1
+(noun)|granule (generic term)
+plastinate|1
+(verb)|conserve (generic term)|preserve (generic term)|maintain (generic term)|keep up (generic term)
+plastination|1
+(noun)|preservation (generic term)
+plastique|1
+(noun)|plastic explosive|explosive compound (generic term)
+plastron|4
+(noun)|shirtfront (generic term)
+(noun)|breastplate (generic term)|aegis (generic term)|egis (generic term)
+(noun)|pad (generic term)
+(noun)|exoskeleton (generic term)
+plat|2
+(noun)|map (generic term)
+(verb)|plot|map (generic term)
+plata river|1
+(noun)|Rio de la Plata|La Plata|Plata River|estuary (generic term)
+plataea|2
+(noun)|Plataea|town (generic term)
+(noun)|Plataea|battle of Plataea|pitched battle (generic term)
+platalea|1
+(noun)|Platalea|genus Platalea|bird genus (generic term)
+platalea leucorodia|1
+(noun)|common spoonbill|Platalea leucorodia|spoonbill (generic term)
+plataleidae|1
+(noun)|Plataleidae|family Plataleidae|bird family (generic term)
+platan|1
+(noun)|plane tree|sycamore|tree (generic term)
+platanaceae|1
+(noun)|Platanaceae|family Platanaceae|plane-tree family|rosid dicot family (generic term)
+platanistidae|1
+(noun)|Platanistidae|family Platanistidae|mammal family (generic term)
+platanthera|1
+(noun)|Platanthera|genus Platanthera|monocot genus (generic term)|liliopsid genus (generic term)
+platanthera bifolia|1
+(noun)|lesser butterfly orchid|Platanthera bifolia|Habenaria bifolia|orchid (generic term)|orchidaceous plant (generic term)
+platanthera chlorantha|1
+(noun)|greater butterfly orchid|Platanthera chlorantha|Habenaria chlorantha|orchid (generic term)|orchidaceous plant (generic term)
+platanthera leucophea|1
+(noun)|prairie white-fringed orchid|Platanthera leucophea|orchid (generic term)|orchidaceous plant (generic term)
+platanus|1
+(noun)|Platanus|genus Platanus|rosid dicot genus (generic term)
+platanus acerifolia|1
+(noun)|London plane|Platanus acerifolia|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+platanus occidentalis|1
+(noun)|American sycamore|American plane|buttonwood|Platanus occidentalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+platanus orientalis|1
+(noun)|oriental plane|Platanus orientalis|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+platanus racemosa|1
+(noun)|California sycamore|Platanus racemosa|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+platanus wrightii|1
+(noun)|Arizona sycamore|Platanus wrightii|plane tree (generic term)|sycamore (generic term)|platan (generic term)
+plate|16
+(noun)|sheet (generic term)|flat solid (generic term)
+(noun)|home plate|home base|home|base (generic term)|bag (generic term)
+(noun)|illustration (generic term)
+(noun)|flatware (generic term)
+(noun)|plateful|containerful (generic term)
+(noun)|crustal plate|crust (generic term)|Earth's crust (generic term)
+(noun)|cut of beef (generic term)
+(noun)|entree (generic term)|main course (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|anode (generic term)
+(noun)|photographic plate|sheet (generic term)|flat solid (generic term)
+(noun)|structural member (generic term)
+(noun)|collection plate|receptacle (generic term)
+(noun)|scale|shell|shield (generic term)
+(noun)|denture|dental plate|dental appliance (generic term)
+(verb)|coat (generic term)|surface (generic term)
+plate armor|1
+(noun)|armor plate|armour plate|armor plating|plate armour|plate (generic term)|scale (generic term)|shell (generic term)
+plate armour|1
+(noun)|armor plate|armour plate|armor plating|plate armor|plate (generic term)|scale (generic term)|shell (generic term)
+plate glass|1
+(noun)|sheet glass|sheet (generic term)|flat solid (generic term)
+plate iron|1
+(noun)|plate (generic term)
+plate rack|1
+(noun)|rack (generic term)
+plate rail|1
+(noun)|rail (generic term)
+plate tectonic theory|1
+(noun)|tectonics|plate tectonics|morphology (generic term)|geomorphology (generic term)
+plate tectonics|1
+(noun)|tectonics|plate tectonic theory|morphology (generic term)|geomorphology (generic term)
+plateau|1
+(noun)|tableland|highland (generic term)|upland (generic term)
+plateau striped whiptail|1
+(noun)|Cnemidophorus velox|whiptail (generic term)|whiptail lizard (generic term)
+plateful|1
+(noun)|plate|containerful (generic term)
+platelayer|1
+(noun)|tracklayer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+platelet|1
+(noun)|blood platelet|thrombocyte|protoplasm (generic term)|living substance (generic term)
+plateletpheresis|1
+(noun)|apheresis (generic term)|pheresis (generic term)
+platelike|1
+(adj)|placoid|planar (similar term)|two-dimensional (similar term)
+platen|3
+(noun)|table (generic term)
+(noun)|plate (generic term)
+(noun)|roller (generic term)
+plater|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+platform|5
+(noun)|horizontal surface (generic term)|level (generic term)
+(noun)|political platform|political program|program|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|computer system (generic term)|computing system (generic term)|automatic data processing system (generic term)|ADP system (generic term)|ADPS (generic term)
+(noun)|weapons platform|structure (generic term)|construction (generic term)
+(noun)|chopine|shoe (generic term)
+platform bed|1
+(noun)|bed (generic term)
+platform rocker|1
+(noun)|rocking chair (generic term)|rocker (generic term)
+plath|1
+(noun)|Plath|Sylvia Plath|writer (generic term)|author (generic term)|poet (generic term)
+platichthys|1
+(noun)|Platichthys|genus Platichthys|fish genus (generic term)
+platichthys flesus|1
+(noun)|European flatfish|Platichthys flesus|righteye flounder (generic term)|righteyed flounder (generic term)
+plating|2
+(noun)|metal plating|coating (generic term)|coat (generic term)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+platinize|1
+(verb)|coat (generic term)|surface (generic term)
+platinum|1
+(noun)|Pt|atomic number 78|noble metal (generic term)
+platinum-blonde|1
+(adj)|ash-blonde|towheaded|blond (similar term)|blonde (similar term)|light-haired (similar term)
+platinum black|1
+(noun)|catalyst (generic term)|accelerator (generic term)
+platinum blond|1
+(noun)|platinum blonde|blond (generic term)|blonde (generic term)
+platinum blonde|1
+(noun)|platinum blond|blond (generic term)|blonde (generic term)
+platinum thermometer|1
+(noun)|resistance thermometer|thermometer (generic term)
+platitude|1
+(noun)|cliche|banality|commonplace|bromide|remark (generic term)|comment (generic term)|truism (generic term)
+platitudinal|1
+(adj)|bromidic|corny|platitudinous|unoriginal (similar term)
+platitudinarian|1
+(noun)|bore (generic term)|dullard (generic term)
+platitudinize|1
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+platitudinous|1
+(adj)|bromidic|corny|platitudinal|unoriginal (similar term)
+plato|1
+(noun)|Plato|philosopher (generic term)
+plato's academy|1
+(noun)|Plato's Academy|academy (generic term)
+platonic|2
+(adj)|Platonic|philosopher (related term)
+(adj)|passionless (similar term)
+platonic body|1
+(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron (generic term)
+platonic solid|1
+(noun)|regular polyhedron|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron (generic term)
+platonic year|1
+(noun)|great year|Platonic year|time period (generic term)|period of time (generic term)|period (generic term)
+platonism|1
+(noun)|Platonism|realism|philosophical doctrine (generic term)|philosophical theory (generic term)
+platonist|1
+(noun)|Platonist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+platonistic|1
+(adj)|Platonistic|philosophical doctrine|philosophical theory (related term)
+platoon|3
+(noun)|army unit (generic term)
+(noun)|police squad (generic term)
+(noun)|social group (generic term)
+platt national park|1
+(noun)|Platt National Park|national park (generic term)
+plattdeutsch|1
+(noun)|Low German|Plattdeutsch|West Germanic (generic term)|West Germanic language (generic term)
+platte|1
+(noun)|Platte|Platte River|river (generic term)
+platte river|1
+(noun)|Platte|Platte River|river (generic term)
+platte river penstemon|1
+(noun)|Platte River penstemon|Penstemon cyananthus|wildflower (generic term)|wild flower (generic term)
+plattensee|1
+(noun)|Balaton|Lake Balaton|Plattensee|lake (generic term)
+platter|2
+(noun)|flatware (generic term)
+(noun)|phonograph record|phonograph recording|record|disk|disc|sound recording (generic term)|audio recording (generic term)
+platy|1
+(noun)|Platypoecilus maculatus|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+platycephalidae|1
+(noun)|Platycephalidae|family Platycephalidae|fish family (generic term)
+platycerium|1
+(noun)|Platycerium|genus Platycerium|fern genus (generic term)
+platycerium alcicorne|1
+(noun)|common staghorn fern|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern (generic term)
+platycerium andinum|1
+(noun)|South American staghorn|Platycerium andinum|staghorn fern (generic term)
+platycerium bifurcatum|1
+(noun)|common staghorn fern|elkhorn fern|Platycerium bifurcatum|Platycerium alcicorne|staghorn fern (generic term)
+platycladus orientalis|1
+(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae (generic term)
+platyctenea|1
+(noun)|Platyctenea|order Platyctenea|animal order (generic term)
+platyctenean|1
+(noun)|ctenophore (generic term)|comb jelly (generic term)
+platyhelminth|1
+(noun)|flatworm|worm (generic term)
+platyhelminthes|1
+(noun)|Platyhelminthes|phylum Platyhelminthes|phylum (generic term)
+platylobium|1
+(noun)|Platylobium|genus Platylobium|rosid dicot genus (generic term)
+platylobium formosum|1
+(noun)|flat pea|Platylobium formosum|shrub (generic term)|bush (generic term)
+platymiscium|1
+(noun)|Platymiscium|genus Platymiscium|rosid dicot genus (generic term)
+platymiscium pinnatum|1
+(noun)|Panama redwood tree|Panama redwood|Platymiscium pinnatum|quira (generic term)
+platymiscium trinitatis|1
+(noun)|roble|Platymiscium trinitatis|quira (generic term)
+platypoecilus|1
+(noun)|Platypoecilus|genus Platypoecilus|fish genus (generic term)
+platypoecilus maculatus|1
+(noun)|platy|Platypoecilus maculatus|topminnow (generic term)|poeciliid fish (generic term)|poeciliid (generic term)|live-bearer (generic term)
+platypus|1
+(noun)|duckbill|duckbilled platypus|duck-billed platypus|Ornithorhynchus anatinus|monotreme (generic term)|egg-laying mammal (generic term)
+platyrhine|1
+(adj)|platyrrhine|platyrrhinian|platyrhinian|platyrrhinic|broadnosed|catarrhine (antonym)|leptorrhine (antonym)
+platyrhinian|1
+(adj)|platyrrhine|platyrrhinian|platyrhine|platyrrhinic|broadnosed|catarrhine (antonym)|leptorrhine (antonym)
+platyrrhine|2
+(adj)|platyrrhinian|platyrhine|platyrhinian|platyrrhinic|broadnosed|catarrhine (antonym)|leptorrhine (antonym)
+(noun)|New World monkey|platyrrhinian|monkey (generic term)
+platyrrhini|1
+(noun)|Platyrrhini|superfamily Platyrrhini|mammal family (generic term)
+platyrrhinian|2
+(adj)|platyrrhine|platyrhine|platyrhinian|platyrrhinic|broadnosed|catarrhine (antonym)|leptorrhine (antonym)
+(noun)|New World monkey|platyrrhine|monkey (generic term)
+platyrrhinic|1
+(adj)|platyrrhine|platyrrhinian|platyrhine|platyrhinian|broadnosed|catarrhine (antonym)|leptorrhine (antonym)
+platysma|1
+(noun)|facial muscle (generic term)
+platystemon|1
+(noun)|Platystemon|genus Platystemon|dilleniid dicot genus (generic term)
+platystemon californicus|1
+(noun)|creamcups|Platystemon californicus|poppy (generic term)
+plaudit|1
+(noun)|acclaim|acclamation|plaudits|eclat|approval (generic term)|commendation (generic term)
+plaudits|1
+(noun)|acclaim|acclamation|plaudit|eclat|approval (generic term)|commendation (generic term)
+plausibility|1
+(noun)|plausibleness|credibility (generic term)|credibleness (generic term)|believability (generic term)|implausibility (antonym)
+plausible|2
+(adj)|arguable (similar term)|glib (similar term)|pat (similar term)|slick (similar term)|credible (related term)|believable (related term)|implausible (antonym)
+(adj)|insincere (similar term)
+plausibleness|1
+(noun)|plausibility|credibility (generic term)|credibleness (generic term)|believability (generic term)|implausibility (antonym)
+plausibly|1
+(adv)|credibly|believably|probably|incredibly (antonym)
+plausive|1
+(adj)|approving|approbative|approbatory|favorable (similar term)|favourable (similar term)
+plautus|2
+(noun)|Plautus|Titus Maccius Plautus|dramatist (generic term)|playwright (generic term)
+(noun)|Plautus|genus Plautus|bird genus (generic term)
+plautus alle|1
+(noun)|little auk|dovekie|Plautus alle|auk (generic term)
+plavix|1
+(noun)|clopidogrel bisulfate|Plavix|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+play|46
+(noun)|drama|dramatic play|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|show (generic term)
+(noun)|plan of action (generic term)
+(noun)|maneuver|manoeuvre|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(noun)|bid|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|child's play|diversion (generic term)|recreation (generic term)
+(noun)|playing period|period of play|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|free rein|freedom (generic term)
+(noun)|shimmer|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|fun|sport|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|looseness|movability (generic term)|movableness (generic term)|tightness (antonym)
+(noun)|frolic|romp|gambol|caper|diversion (generic term)|recreation (generic term)
+(noun)|turn|activity (generic term)
+(noun)|gambling|gaming|diversion (generic term)|recreation (generic term)|vice (generic term)
+(noun)|swordplay|action (generic term)
+(verb)|compete (generic term)|vie (generic term)|contend (generic term)|play out (related term)
+(verb)|act|represent|re-create (generic term)
+(verb)|act (generic term)
+(verb)|spiel|re-create (generic term)
+(verb)|act|act as|act (generic term)|behave (generic term)|do (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|gamble (generic term)
+(verb)|recreate
+(verb)|simulate (generic term)|assume (generic term)|sham (generic term)|feign (generic term)
+(verb)|sound (generic term)
+(verb)|perform (generic term)
+(verb)|deploy (generic term)
+(verb)|toy|act (generic term)|behave (generic term)|do (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|run
+(verb)|toy|fiddle|diddle|manipulate (generic term)|toy with (related term)
+(verb)|exploit (generic term)|work (generic term)
+(verb)|dally|trifle|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+(verb)|dally|toy|flirt|act (generic term)|move (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|act|roleplay|playact|perform (generic term)
+(verb)|bring|work|wreak|make for|make (generic term)|create (generic term)|bring on (related term)|bring off (related term)|bring up (related term)
+(verb)|discharge (generic term)
+(verb)|bet (generic term)|wager (generic term)|play (generic term)
+(verb)|bet|wager|gamble (generic term)
+(verb)|hit (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|meet|encounter|take on
+(verb)|exhaust (generic term)|wash up (generic term)|beat (generic term)|tucker (generic term)|tucker out (generic term)
+play-actor|1
+(noun)|barnstormer|playactor|trouper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+play-box|1
+(noun)|playbox|box (generic term)
+play a joke on|1
+(verb)|hoax|pull someone's leg|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+play a trick on|1
+(verb)|flim-flam|trick|fob|fox|pull a fast one on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+play along|2
+(verb)|go along|collaborate (generic term)|join forces (generic term)|cooperate (generic term)|get together (generic term)
+(verb)|accompany|follow|play (generic term)
+play around|2
+(verb)|fool around|cheat on (generic term)|cheat (generic term)|cuckold (generic term)|betray (generic term)|wander (generic term)
+(verb)|dabble|smatter|busy (generic term)|occupy (generic term)
+play back|1
+(verb)|replay|reproduce (generic term)
+play down|1
+(verb)|background|downplay|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)|play up (antonym)|foreground (antonym)
+play false|1
+(verb)|bamboozle|snow|hoodwink|pull the wool over someone's eyes|lead by the nose|deceive (generic term)|betray (generic term)|lead astray (generic term)
+play group|1
+(noun)|playschool|preschool (generic term)
+play hooky|1
+(verb)|bunk off|cut (generic term)|skip (generic term)
+play it by ear|1
+(verb)|act (generic term)|move (generic term)
+play list|1
+(noun)|playlist|list (generic term)|listing (generic term)
+play off|1
+(verb)|pit|oppose|match|confront (generic term)|face (generic term)
+play out|4
+(verb)|run down|exhaust|sap|tire|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|perform (generic term)
+(verb)|play (generic term)
+(verb)|change (generic term)
+play possum|1
+(verb)|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+play reading|1
+(noun)|performance (generic term)|public presentation (generic term)
+play therapy|1
+(noun)|psychotherapy (generic term)
+play up|2
+(verb)|foreground|highlight|spotlight|bring out (generic term)|set off (generic term)|play down (antonym)|background (antonym)
+(verb)|cozy up|cotton up|shine up|sidle up|suck up|ingratiate (generic term)
+playable|1
+(adj)|unplayable (antonym)
+playact|1
+(verb)|act|play|roleplay|perform (generic term)
+playacting|1
+(noun)|acting|playing|performing|activity (generic term)|performing arts (generic term)
+playactor|1
+(noun)|barnstormer|play-actor|trouper|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+playback|2
+(noun)|sound reproduction (generic term)
+(noun)|electronic equipment (generic term)
+playbill|1
+(noun)|bill (generic term)|program (generic term)|programme (generic term)
+playbook|3
+(noun)|notebook (generic term)
+(noun)|book (generic term)
+(noun)|scheme (generic term)|strategy (generic term)
+playbox|1
+(noun)|play-box|box (generic term)
+playboy|1
+(noun)|man-about-town|Corinthian|hedonist (generic term)|pagan (generic term)|pleasure seeker (generic term)
+playday|1
+(noun)|playtime|leisure (generic term)|leisure time (generic term)
+played out|2
+(adj)|exhausted|dog-tired|fagged|fatigued|spent|washed-out|worn-out|worn out|tired (similar term)
+(adj)|worn (similar term)
+player|4
+(noun)|participant|contestant (generic term)
+(noun)|musician|instrumentalist|performer (generic term)|performing artist (generic term)
+(noun)|actor|histrion|thespian|role player|performer (generic term)|performing artist (generic term)
+(noun)|participant (generic term)
+player piano|1
+(noun)|mechanical piano|Pianola|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+playfellow|1
+(noun)|playmate|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+playful|1
+(adj)|coltish (similar term)|frolicsome (similar term)|frolicky (similar term)|rollicking (similar term)|sportive (similar term)|devilish (similar term)|rascally (similar term)|roguish (similar term)|elfin (similar term)|elfish (similar term)|elvish (similar term)|impish (similar term)|implike (similar term)|mischievous (similar term)|pixilated (similar term)|prankish (similar term)|puckish (similar term)|wicked (similar term)|kittenish (similar term)|frisky (similar term)|mocking (similar term)|teasing (similar term)|quizzical (similar term)|unplayful (antonym)
+playfulness|3
+(noun)|gaiety|levity (generic term)
+(noun)|fun|frivolity (generic term)|frivolousness (generic term)
+(noun)|fun|merriment|diversion (generic term)|recreation (generic term)
+playgoer|1
+(noun)|theatergoer|theatregoer|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+playground|2
+(noun)|resort area|vacation spot|area (generic term)|country (generic term)
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+playground ball|1
+(noun)|softball|ball (generic term)
+playhouse|1
+(noun)|wendy house|plaything (generic term)|toy (generic term)
+playing|3
+(noun)|musical performance (generic term)
+(noun)|action (generic term)
+(noun)|acting|playacting|performing|activity (generic term)|performing arts (generic term)
+playing area|1
+(noun)|playing field|athletic field|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+playing card|1
+(noun)|card (generic term)
+playing field|2
+(noun)|circumstance (generic term)
+(noun)|athletic field|playing area|field|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+playing period|1
+(noun)|period of play|play|measure (generic term)|quantity (generic term)|amount (generic term)
+playlet|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+playlist|1
+(noun)|play list|list (generic term)|listing (generic term)
+playlobium obtusangulum|1
+(noun)|common flat pea|native holly|Playlobium obtusangulum|shrub (generic term)|bush (generic term)
+playmaker|1
+(noun)|player (generic term)|participant (generic term)
+playmate|1
+(noun)|playfellow|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+playoff|1
+(noun)|contest (generic term)|competition (generic term)
+playoff game|1
+(noun)|game (generic term)
+playpen|1
+(noun)|pen|enclosure (generic term)
+playroom|1
+(noun)|rumpus room|game room|recreation room (generic term)|rec room (generic term)
+playschool|1
+(noun)|play group|preschool (generic term)
+playscript|1
+(noun)|script|book|dramatic composition (generic term)|dramatic work (generic term)
+playsuit|1
+(noun)|outfit (generic term)|getup (generic term)|rig (generic term)|turnout (generic term)
+plaything|1
+(noun)|toy|artifact (generic term)|artefact (generic term)
+playtime|1
+(noun)|playday|leisure (generic term)|leisure time (generic term)
+playwright|1
+(noun)|dramatist|writer (generic term)|author (generic term)
+plaza|2
+(noun)|place|piazza|public square (generic term)|square (generic term)
+(noun)|mall|center|shopping mall|shopping center|shopping centre|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+plea|3
+(noun)|supplication|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+(noun)|answer (generic term)
+(noun)|due process (generic term)|due process of law (generic term)
+plea-bargain|1
+(verb)|agree (generic term)
+plea bargain|1
+(noun)|plea bargaining|bargaining (generic term)
+plea bargaining|1
+(noun)|plea bargain|bargaining (generic term)
+plea of insanity|1
+(noun)|insanity plea|plea (generic term)
+pleach|2
+(verb)|braid|weave (generic term)|interweave (generic term)|unbraid (antonym)
+(verb)|plash|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+plead|4
+(verb)|appeal (generic term)|invoke (generic term)
+(verb)|apologize (generic term)|apologise (generic term)|excuse (generic term)|justify (generic term)|rationalize (generic term)|rationalise (generic term)
+(verb)|declare (generic term)
+(verb)|allege (generic term)|aver (generic term)|say (generic term)
+pleader|1
+(noun)|advocate|counsel|counselor|counsellor|counselor-at-law|lawyer (generic term)|attorney (generic term)
+pleading|2
+(adj)|appealing|imploring|importunate|beseeching (similar term)
+(noun)|statement (generic term)
+pleading in the alternative|1
+(noun)|alternative pleading|pleading (generic term)
+pleadingly|1
+(adv)|beseechingly|importunately|imploringly|entreatingly
+pleasance|2
+(noun)|retreat (generic term)
+(noun)|pleasure|feeling (generic term)|pain (antonym)
+pleasant|2
+(adj)|beautiful (similar term)|dulcet (similar term)|enjoyable (similar term)|gratifying (similar term)|pleasurable (similar term)|grateful (similar term)|idyllic (similar term)|pastoral (similar term)|good-natured (related term)|nice (related term)|pleasing (related term)|unpleasant (antonym)
+(adj)|nice (similar term)
+pleasant-smelling|1
+(adj)|odorous (similar term)
+pleasant-tasting|1
+(adj)|delectable|delicious|luscious|scrumptious|toothsome|yummy|tasty (similar term)
+pleasant island|1
+(noun)|Nauru|Nauru Island|Pleasant Island|island (generic term)
+pleasantly|2
+(adv)|cheerily|sunnily
+(adv)|agreeably|enjoyably|disagreeably (antonym)|unpleasantly (antonym)
+pleasantness|2
+(noun)|pleasure (generic term)|pleasance (generic term)|unpleasantness (antonym)
+(noun)|sweetness|quality (generic term)|unpleasantness (antonym)
+pleasantry|1
+(noun)|jest (generic term)|joke (generic term)|jocularity (generic term)
+please|3
+(verb)|delight|satisfy (generic term)|gratify (generic term)|displease (antonym)
+(verb)|wish (generic term)|care (generic term)|like (generic term)
+(verb)|satisfy (generic term)|gratify (generic term)
+pleased|2
+(adj)|amused (similar term)|diverted (similar term)|entertained (similar term)|bucked up (similar term)|encouraged (similar term)|chuffed (similar term)|delighted (similar term)|gratified (similar term)|contented (related term)|content (related term)|displeased (antonym)
+(adj)|proud of|proud (similar term)
+pleaser|1
+(noun)|entertainer (generic term)
+pleasing|5
+(adj)|admirable (similar term)|charming (similar term)|delightful (similar term)|delicious (similar term)|disarming (similar term)|easy (similar term)|fabulous (similar term)|fab (similar term)|good (similar term)|gratifying (similar term)|sweet (similar term)|ingratiating (similar term)|sweet (similar term)|attractive (related term)|beautiful (related term)|humorous (related term)|humourous (related term)|pleasant (related term)|displeasing (antonym)
+(adj)|aesthetic|esthetic|artistic|tasteful (similar term)
+(adj)|appreciated|gratifying|satisfying|rewarding (similar term)
+(adj)|favorable (similar term)|favourable (similar term)
+(noun)|gratification (generic term)
+pleasingness|2
+(noun)|tastiness|palatability (generic term)|palatableness (generic term)
+(noun)|beauty (generic term)|unpleasingness (antonym)
+pleasurable|1
+(adj)|enjoyable|gratifying|pleasant (similar term)
+pleasurably|1
+(adv)|deliciously
+pleasure|5
+(noun)|pleasance|feeling (generic term)|pain (antonym)
+(noun)|joy|delight|positive stimulus (generic term)
+(noun)|choice (generic term)|pick (generic term)|selection (generic term)
+(noun)|activity (generic term)
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+pleasure-pain principle|1
+(noun)|pleasure principle|pleasure-unpleasure principle|principle (generic term)|reality principle (antonym)
+pleasure-unpleasure principle|1
+(noun)|pleasure principle|pleasure-pain principle|principle (generic term)|reality principle (antonym)
+pleasure boat|1
+(noun)|cabin cruiser|cruiser|pleasure craft|motorboat (generic term)|powerboat (generic term)
+pleasure craft|1
+(noun)|cabin cruiser|cruiser|pleasure boat|motorboat (generic term)|powerboat (generic term)
+pleasure ground|1
+(noun)|amusement park|funfair|park (generic term)|commons (generic term)|common (generic term)|green (generic term)
+pleasure principle|1
+(noun)|pleasure-pain principle|pleasure-unpleasure principle|principle (generic term)|reality principle (antonym)
+pleasure seeker|1
+(noun)|hedonist|pagan|sensualist (generic term)
+pleasure trip|1
+(noun)|excursion|jaunt|outing|junket|expedition|sashay|journey (generic term)|journeying (generic term)
+pleat|3
+(noun)|plait|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(verb)|ruffle|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|plicate|fold (generic term)|fold up (generic term)|turn up (generic term)
+pleating|1
+(noun)|plication|fold (generic term)|folding (generic term)
+pleb|1
+(noun)|plebeian|commoner (generic term)|common man (generic term)|common person (generic term)
+plebe|1
+(noun)|cadet|trainee (generic term)
+plebeian|3
+(adj)|middle-class (related term)|proletarian (antonym)|patrician (antonym)
+(adj)|common|vulgar|unwashed|lowborn (similar term)
+(noun)|pleb|commoner (generic term)|common man (generic term)|common person (generic term)
+plebiscite|1
+(noun)|vote (generic term)
+plecoptera|1
+(noun)|Plecoptera|order Plecoptera|animal order (generic term)
+plecopteran|1
+(noun)|stonefly|stone fly|insect (generic term)
+plecotus|1
+(noun)|Plecotus|genus Plecotus|mammal genus (generic term)
+plecotus townsendi|1
+(noun)|western big-eared bat|Plecotus townsendi|long-eared bat (generic term)
+plectania|1
+(noun)|Plectania|genus Plectania|fungus genus (generic term)
+plectognath|1
+(noun)|plectognath fish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+plectognath fish|1
+(noun)|plectognath|spiny-finned fish (generic term)|acanthopterygian (generic term)
+plectognathi|1
+(noun)|Plectognathi|order Plectognathi|order Tetraodontiformes|animal order (generic term)
+plectomycetes|1
+(noun)|Plectomycetes|class Plectomycetes|class (generic term)
+plectophera|1
+(noun)|Plectophera|ephemerid (generic term)|ephemeropteran (generic term)
+plectorrhiza|1
+(noun)|Plectorrhiza|genus Plectorrhiza|monocot genus (generic term)|liliopsid genus (generic term)
+plectranthus|1
+(noun)|houseplant (generic term)
+plectranthus amboinicus|1
+(noun)|country borage|Coleus aromaticus|Coleus amboinicus|Plectranthus amboinicus|coleus (generic term)|flame nettle (generic term)
+plectron|1
+(noun)|pick|plectrum|device (generic term)
+plectrophenax|1
+(noun)|Plectrophenax|genus Plectrophenax|bird genus (generic term)
+plectrophenax nivalis|1
+(noun)|snow bunting|snowbird|snowflake|Plectrophenax nivalis|bunting (generic term)
+plectrum|1
+(noun)|pick|plectron|device (generic term)
+pledge|9
+(noun)|security interest (generic term)
+(noun)|member (generic term)
+(noun)|toast|drink (generic term)
+(noun)|assurance|commitment (generic term)|dedication (generic term)
+(verb)|plight|promise (generic term)|assure (generic term)
+(verb)|subscribe|donate (generic term)
+(verb)|toast|drink|salute|wassail|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|consign (generic term)|charge (generic term)
+(verb)|oblige (generic term)|bind (generic term)|hold (generic term)|obligate (generic term)
+pledge taker|1
+(noun)|volunteer (generic term)|unpaid worker (generic term)
+pledged|2
+(adj)|sworn|committed (similar term)
+(adj)|affianced|bespoken|betrothed|engaged|attached (similar term)|committed (similar term)
+pledgee|1
+(noun)|adult (generic term)|grownup (generic term)
+pledger|1
+(noun)|adult (generic term)|grownup (generic term)
+pleiades|2
+(noun)|Pleiades|nymph (generic term)
+(noun)|Pleiades|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+pleione|1
+(noun)|Pleione|genus Pleione|monocot genus (generic term)|liliopsid genus (generic term)
+pleiospilos|1
+(noun)|Pleiospilos|genus Pleiospilos|caryophylloid dicot genus (generic term)
+pleistocene|1
+(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch (generic term)
+pleistocene epoch|1
+(noun)|Pleistocene|Pleistocene epoch|Glacial epoch|epoch (generic term)
+plenary|1
+(adj)|comprehensive (similar term)
+plenipotentiary|1
+(noun)|diplomat (generic term)|diplomatist (generic term)
+plenitude|1
+(noun)|plenty|plentifulness|plenteousness|plentitude|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+plenteous|1
+(adj)|ample|copious|plentiful|rich|abundant (similar term)
+plenteously|1
+(adv)|bountifully|bounteously|plentifully
+plenteousness|1
+(noun)|plenty|plentifulness|plenitude|plentitude|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+plentiful|3
+(adj)|abundant (similar term)
+(adj)|ample|copious|plenteous|rich|abundant (similar term)
+(adj)|bountiful|fruitful (similar term)
+plentifully|1
+(adv)|bountifully|bounteously|plenteously
+plentifulness|1
+(noun)|plenty|plenteousness|plenitude|plentitude|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+plentitude|1
+(noun)|plenty|plentifulness|plenteousness|plenitude|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+plenty|3
+(noun)|plentifulness|plenteousness|plenitude|plentitude|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(adv)|enough
+plenum|2
+(noun)|meeting (generic term)|group meeting (generic term)
+(noun)|enclosure (generic term)
+pleochroic|1
+(adj)|optical phenomenon (related term)
+pleochroism|1
+(noun)|optical phenomenon (generic term)
+pleomorphic|1
+(adj)|organic phenomenon (related term)
+pleomorphic rhabdomyosarcoma|1
+(noun)|pleomorphic rhabdosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+pleomorphic rhabdosarcoma|1
+(noun)|pleomorphic rhabdomyosarcoma|rhabdomyosarcoma (generic term)|rhabdosarcoma (generic term)
+pleomorphism|2
+(noun)|polymorphism|chemical phenomenon (generic term)
+(noun)|organic phenomenon (generic term)
+pleonasm|1
+(noun)|verboseness (generic term)|verbosity (generic term)
+pleonaste|1
+(noun)|Ceylonite|spinel (generic term)
+pleonastic|1
+(adj)|redundant|tautologic|tautological|prolix (similar term)
+pleopod|1
+(noun)|swimmeret|extremity (generic term)|appendage (generic term)|member (generic term)
+plesianthropus|1
+(noun)|Plesianthropus|genus Plesianthropus|mammal genus (generic term)
+plesiosaur|1
+(noun)|plesiosaurus|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+plesiosauria|1
+(noun)|Plesiosauria|suborder Plesiosauria|animal order (generic term)
+plesiosaurus|1
+(noun)|plesiosaur|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+plessimeter|1
+(noun)|pleximeter|plate (generic term)
+plessor|1
+(noun)|plexor|percussor|hammer (generic term)
+plethodon|1
+(noun)|Plethodon|genus Plethodon|amphibian genus (generic term)
+plethodon cinereus|1
+(noun)|eastern red-backed salamander|Plethodon cinereus|salamander (generic term)
+plethodon vehiculum|1
+(noun)|western red-backed salamander|Plethodon vehiculum|salamander (generic term)
+plethodont|1
+(noun)|lungless salamander|salamander (generic term)
+plethodontidae|1
+(noun)|Plethodontidae|family Plethodontidae|amphibian family (generic term)
+plethora|1
+(noun)|overplus|superfluity|embarrassment|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+plethoric|1
+(adj)|overabundant|rife|abundant (similar term)
+plethysmograph|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+pleura|1
+(noun)|serous membrane (generic term)|serosa (generic term)
+pleural|1
+(adj)|serous membrane|serosa (related term)
+pleural cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pleural space|1
+(noun)|space (generic term)
+pleuralgia|1
+(noun)|pleurodynia|costalgia|pain (generic term)|hurting (generic term)
+pleurisy|1
+(noun)|inflammatory disease (generic term)
+pleurisy root|1
+(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|tuber root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+pleurobrachia|1
+(noun)|Pleurobrachia|genus Pleurobrachia|ctenophore genus (generic term)
+pleurobrachiidae|1
+(noun)|Pleurobrachiidae|family Pleurobrachiidae|ctenophore family (generic term)
+pleurocarp|1
+(noun)|pleurocarpous moss|moss (generic term)|acrocarp (antonym)
+pleurocarpous|1
+(adj)|acrocarpous (antonym)
+pleurocarpous moss|1
+(noun)|pleurocarp|moss (generic term)|acrocarp (antonym)
+pleurodont|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+pleurodynia|1
+(noun)|pleuralgia|costalgia|pain (generic term)|hurting (generic term)
+pleuronectes|1
+(noun)|Pleuronectes|genus Pleuronectes|fish genus (generic term)
+pleuronectes platessa|1
+(noun)|plaice|Pleuronectes platessa|righteye flounder (generic term)|righteyed flounder (generic term)
+pleuronectidae|1
+(noun)|Pleuronectidae|family Pleuronectidae|fish family (generic term)
+pleuropneumonia|1
+(noun)|pleurisy (generic term)|pneumonia (generic term)
+pleuropneumonialike organism|1
+(noun)|PPLO|mycoplasma (generic term)
+pleurosorus|1
+(noun)|Pleurosorus|genus Pleurosorus|fern genus (generic term)
+pleurothallis|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+pleurotus|1
+(noun)|Pleurotus|genus Pleurotus|fungus genus (generic term)
+pleurotus ostreatus|1
+(noun)|oyster mushroom|oyster fungus|oyster agaric|Pleurotus ostreatus|agaric (generic term)
+pleurotus phosphoreus|1
+(noun)|olive-tree agaric|Pleurotus phosphoreus|agaric (generic term)
+pleven|1
+(noun)|Plevna|Pleven|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+plevna|1
+(noun)|Plevna|Pleven|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+plexiglas|1
+(noun)|Plexiglas|plexiglass|polymethyl methacrylate (generic term)
+plexiglass|1
+(noun)|Plexiglas|polymethyl methacrylate (generic term)
+pleximeter|1
+(noun)|plessimeter|plate (generic term)
+pleximetry|1
+(noun)|percussion|auscultation (generic term)
+plexor|1
+(noun)|plessor|percussor|hammer (generic term)
+plexus|1
+(noun)|rete|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+plexus autonomici|1
+(noun)|autonomic plexus|nerve plexus (generic term)
+plexus brachialis|1
+(noun)|brachial plexus|nerve plexus (generic term)
+plexus cardiacus|1
+(noun)|cardiac plexus|nerve plexus (generic term)
+plexus caroticus|1
+(noun)|carotid plexus|nerve plexus (generic term)
+plexus celiacus|1
+(noun)|solar plexus|coeliac plexus|abdominal nerve plexus|nerve plexus (generic term)
+plexus cervicalis|1
+(noun)|cervical plexus|nerve plexus (generic term)
+plexus choroideus|1
+(noun)|choroid plexus|plexus (generic term)|rete (generic term)
+plexus coccygeus|1
+(noun)|coccygeal plexus|nerve plexus (generic term)
+plexus dentalis|1
+(noun)|nerve plexus (generic term)
+plexus hypogastricus|1
+(noun)|hypogastric plexus|nerve plexus (generic term)
+plexus lumbalis|2
+(noun)|lumbar plexus|plexus (generic term)|rete (generic term)
+(noun)|lumbar plexus|nerve plexus (generic term)
+plexus mesentericus|1
+(noun)|mesenteric plexus|nerve plexus (generic term)
+plexus myentericus|1
+(noun)|myenteric plexus|nerve plexus (generic term)
+plexus periarterialis|1
+(noun)|periarterial plexus|nerve plexus (generic term)
+plexus pulmonalis|1
+(noun)|pulmonary plexis|nerve plexus (generic term)
+plexus sacralis|1
+(noun)|sacral plexus|nerve plexus (generic term)
+plf|1
+(noun)|Palestine Liberation Front|PLF|Jabat al-Tahrir al-Filistiniyyah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pliability|2
+(noun)|bendability|flexibility (generic term)|flexibleness (generic term)
+(noun)|pliancy|pliantness|suppleness|adaptability (generic term)
+pliable|4
+(adj)|fictile|susceptible (similar term)
+(adj)|ductile|malleable|pliant|tensile|tractile|formed (similar term)
+(adj)|elastic|flexible|pliant|adaptable (similar term)
+(adj)|bendable|pliant|flexible (similar term)|flexile (similar term)
+pliancy|2
+(noun)|pliantness|suppleness|bendability (generic term)|pliability (generic term)
+(noun)|pliability|pliantness|suppleness|adaptability (generic term)
+pliant|4
+(adj)|plastic|impressionable (similar term)|impressible (similar term)
+(adj)|ductile|malleable|pliable|tensile|tractile|formed (similar term)
+(adj)|elastic|flexible|pliable|adaptable (similar term)
+(adj)|bendable|pliable|flexible (similar term)|flexile (similar term)
+pliantness|2
+(noun)|pliancy|suppleness|bendability (generic term)|pliability (generic term)
+(noun)|pliability|pliancy|suppleness|adaptability (generic term)
+plica|1
+(noun)|fold|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+plica vocalis|1
+(noun)|vocal cord|vocal fold|vocal band|fold (generic term)|plica (generic term)
+plicate|1
+(verb)|pleat|fold (generic term)|fold up (generic term)|turn up (generic term)
+plication|2
+(noun)|fold|crease|flexure|crimp|bend|angular shape (generic term)|angularity (generic term)
+(noun)|pleating|fold (generic term)|folding (generic term)
+plicatoperipatus|1
+(noun)|Plicatoperipatus|genus Plicatoperipatus|arthropod genus (generic term)
+plicatoperipatus jamaicensis|1
+(noun)|Plicatoperipatus jamaicensis|onychophoran (generic term)|velvet worm (generic term)|peripatus (generic term)
+plier|1
+(noun)|plyer|worker (generic term)
+pliers|1
+(noun)|pair of pliers|plyers|hand tool (generic term)|compound lever (generic term)
+plight|4
+(noun)|predicament|quandary|difficulty (generic term)
+(noun)|troth|assurance (generic term)|pledge (generic term)
+(verb)|betroth|engage|affiance|vow (generic term)
+(verb)|pledge|promise (generic term)|assure (generic term)
+plimsoll|2
+(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline (generic term)|water line (generic term)|water level (generic term)
+(noun)|gym shoe (generic term)|sneaker (generic term)|tennis shoe (generic term)
+plimsoll line|1
+(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline (generic term)|water line (generic term)|water level (generic term)
+plimsoll mark|1
+(noun)|load line|Plimsoll line|Plimsoll mark|Plimsoll|waterline (generic term)|water line (generic term)|water level (generic term)
+plinian eruption|1
+(noun)|Plinian eruption|volcanic eruption (generic term)|eruption (generic term)
+plinth|1
+(noun)|pedestal|footstall|support (generic term)
+pliny|2
+(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer (generic term)|author (generic term)
+(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer (generic term)|author (generic term)
+pliny the elder|1
+(noun)|Pliny|Pliny the Elder|Gaius Plinius Secundus|writer (generic term)|author (generic term)
+pliny the younger|1
+(noun)|Pliny|Pliny the Younger|Gaius Plinius Caecilius Secundus|writer (generic term)|author (generic term)
+pliocene|1
+(noun)|Pliocene|Pliocene epoch|epoch (generic term)
+pliocene epoch|1
+(noun)|Pliocene|Pliocene epoch|epoch (generic term)
+plo|1
+(noun)|Palestine Liberation Organization|PLO|political movement (generic term)
+ploce|1
+(noun)|repetition (generic term)
+ploceidae|1
+(noun)|Ploceidae|family Ploceidae|bird family (generic term)
+ploceus|1
+(noun)|Ploceus|genus Ploceus|bird genus (generic term)
+ploceus philippinus|1
+(noun)|baya|Ploceus philippinus|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+plod|2
+(noun)|plodding|walk (generic term)|walking (generic term)
+(verb)|slog|footslog|trudge|pad|tramp|walk (generic term)
+plodder|3
+(noun)|trudger|slogger|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|slogger|hack (generic term)|drudge (generic term)|hacker (generic term)
+(noun)|slowpoke|stick-in-the-mud|slowcoach|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+plodding|3
+(adj)|leaden|effortful (similar term)
+(noun)|drudgery|grind|donkeywork|labor (generic term)|labour (generic term)|toil (generic term)
+(noun)|plod|walk (generic term)|walking (generic term)
+plonk|3
+(noun)|wine (generic term)|vino (generic term)
+(noun)|noise (generic term)
+(verb)|plank|flump|plop|plunk|plump down|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+plonk down|1
+(verb)|plump down|plank down|drop (generic term)
+plop|5
+(noun)|noise (generic term)
+(verb)|drop (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|plank|flump|plonk|plunk|plump down|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+(adv)|plunk
+plosion|1
+(noun)|explosion|release (generic term)|tone ending (generic term)
+plosive|1
+(noun)|stop consonant|stop|occlusive|plosive consonant|plosive speech sound|obstruent (generic term)|continuant consonant (antonym)
+plosive consonant|1
+(noun)|stop consonant|stop|occlusive|plosive speech sound|plosive|obstruent (generic term)|continuant consonant (antonym)
+plosive speech sound|1
+(noun)|stop consonant|stop|occlusive|plosive consonant|plosive|obstruent (generic term)|continuant consonant (antonym)
+plot|7
+(noun)|secret plan|game|scheme (generic term)|strategy (generic term)
+(noun)|plot of ground|patch|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|story (generic term)
+(noun)|chart (generic term)
+(verb)|plan (generic term)
+(verb)|diagram|draw (generic term)
+(verb)|plat|map (generic term)
+plot element|1
+(noun)|component (generic term)|constituent (generic term)|element (generic term)|factor (generic term)|ingredient (generic term)
+plot line|1
+(noun)|storyline|plot (generic term)
+plot of ground|1
+(noun)|plot|patch|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+plotinus|1
+(noun)|Plotinus|philosopher (generic term)
+plott hound|1
+(noun)|Plott hound|hound (generic term)|hound dog (generic term)
+plotted|1
+(adj)|aforethought|planned|premeditated (similar term)
+plotter|4
+(noun)|schemer|planner (generic term)|contriver (generic term)|deviser (generic term)
+(noun)|mapper|clerk (generic term)
+(noun)|conspirator|coconspirator|machinator|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|instrument (generic term)
+plough|4
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+(noun)|plow|tool (generic term)
+(verb)|plow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|plow|turn|till (generic term)
+plough horse|1
+(noun)|plow horse|workhorse (generic term)
+plough on|1
+(verb)|press on|push on|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+ploughboy|1
+(noun)|plowboy|male child (generic term)|boy (generic term)
+ploughed|1
+(adj)|plowed|tilled (similar term)|unplowed (antonym)
+ploughing|1
+(noun)|plowing|tilling (generic term)
+ploughland|1
+(noun)|cultivated land|farmland|plowland|tilled land|tillage|tilth|land (generic term)|ground (generic term)|soil (generic term)
+ploughman|1
+(noun)|plowman|plower|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+ploughman's lunch|1
+(noun)|meal (generic term)|repast (generic term)
+ploughshare|1
+(noun)|plowshare|share|wedge (generic term)
+ploughwright|1
+(noun)|plowwright|wright (generic term)
+plovdiv|1
+(noun)|Plovdiv|Philippopolis|city (generic term)|metropolis (generic term)|urban center (generic term)
+plover|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+plover-like|1
+(adj)|animal (similar term)
+plow|4
+(noun)|plough|tool (generic term)
+(verb)|plough|turn|till (generic term)
+(verb)|cover|treat|handle|deal|address|broach (generic term)|initiate (generic term)
+(verb)|plough|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+plow ahead|1
+(verb)|go ahead|act (generic term)|move (generic term)
+plow horse|1
+(noun)|plough horse|workhorse (generic term)
+plowboy|1
+(noun)|ploughboy|male child (generic term)|boy (generic term)
+plowed|1
+(adj)|ploughed|tilled (similar term)|unplowed (antonym)
+plower|1
+(noun)|plowman|ploughman|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+plowing|1
+(noun)|ploughing|tilling (generic term)
+plowland|1
+(noun)|cultivated land|farmland|ploughland|tilled land|tillage|tilth|land (generic term)|ground (generic term)|soil (generic term)
+plowman|1
+(noun)|ploughman|plower|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+plowshare|1
+(noun)|ploughshare|share|wedge (generic term)
+plowwright|1
+(noun)|ploughwright|wright (generic term)
+ploy|2
+(noun)|gambit|remark (generic term)|comment (generic term)
+(noun)|gambit|stratagem|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+ployurethan|1
+(noun)|polyurethane|polymer (generic term)
+pluck|8
+(noun)|gutsiness|pluckiness|fearlessness (generic term)|gutlessness (antonym)
+(noun)|pull (generic term)|pulling (generic term)
+(verb)|tweak|pull off|pick off|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|hustle|roll|steal (generic term)
+(verb)|overcharge|soak|surcharge|gazump|fleece|plume|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|plunk|pick|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|pull|tear|deplume|deplumate|displume|strip (generic term)
+(verb)|pick|cull|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)|cull out (related term)|pick up (related term)|pick up (related term)|pick up (related term)|pick off (related term)|pick over (related term)|pick up (related term)
+pluck at|1
+(verb)|pick at|pull at|pull (generic term)
+plucked|2
+(adj)|pizzicato (similar term)|bowed (antonym)
+(adj)|unfeathered (similar term)|featherless (similar term)
+pluckiness|1
+(noun)|gutsiness|pluck|fearlessness (generic term)|gutlessness (antonym)
+plucky|2
+(adj)|gutsy|gutless (antonym)
+(adj)|feisty|spunky|spirited (similar term)
+plug|11
+(noun)|stopper|stopple|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+(noun)|chew|chaw|cud|quid|wad|morsel (generic term)|bit (generic term)|bite (generic term)
+(noun)|ballyhoo|hoopla|hype|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+(noun)|spark plug|sparking plug|electrical device (generic term)
+(noun)|male plug|electrical device (generic term)
+(noun)|fireplug|fire hydrant|hydrant (generic term)
+(noun)|hack|jade|nag|horse (generic term)|Equus caballus (generic term)
+(verb)|stop up|secure|close (generic term)|fill up (generic term)
+(verb)|plug away|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+(verb)|punch|hit (generic term)
+(verb)|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+plug-in|1
+(noun)|circuit board|circuit card|board|card|add-in|printed circuit (generic term)
+plug-ugly|1
+(noun)|tough guy|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+plug away|2
+(verb)|peg away|slog|keep one's nose to the grindstone|keep one's shoulder to the wheel|work (generic term)
+(verb)|plug|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+plug fuse|1
+(noun)|fuse (generic term)|electrical fuse (generic term)|safety fuse (generic term)
+plug hat|1
+(noun)|bowler hat|bowler|derby hat|derby|hat (generic term)|chapeau (generic term)|lid (generic term)
+plug in|1
+(verb)|connect|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)|unplug (antonym)
+plugboard|1
+(noun)|switchboard|patchboard|central (generic term)|telephone exchange (generic term)|exchange (generic term)
+plugged|1
+(adj)|blocked|obstructed (similar term)
+plugger|1
+(noun)|promoter|booster|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+plughole|1
+(noun)|hole (generic term)
+plum|5
+(noun)|plum tree|fruit tree (generic term)
+(noun)|edible fruit (generic term)|drupe (generic term)|stone fruit (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+(adv)|plumb
+(adv)|clean|plumb
+plum-fruited yew|1
+(noun)|Prumnopitys andina|Prumnopitys elegans|conifer (generic term)|coniferous tree (generic term)
+plum-shaped|1
+(adj)|vegetable (similar term)
+plum-yew|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+plum-yew family|1
+(noun)|Cephalotaxaceae|family Cephalotaxaceae|gymnosperm family (generic term)
+plum duff|1
+(noun)|duff|pudding (generic term)
+plum pudding|1
+(noun)|Christmas pudding|pudding (generic term)
+plum sauce|1
+(noun)|sauce (generic term)
+plum tomato|2
+(noun)|cherry tomato (generic term)|Lycopersicon esculentum cerasiforme (generic term)
+(noun)|cherry tomato (generic term)
+plum tree|1
+(noun)|plum|fruit tree (generic term)
+plumage|1
+(noun)|feather|plume|body covering (generic term)|animal material (generic term)
+plumaged|1
+(adj)|feathered (similar term)
+plumate|1
+(adj)|plumed|plumose|feathered (similar term)
+plumb|8
+(adj)|vertical (similar term)|perpendicular (similar term)
+(noun)|plumb bob|plummet|bob (generic term)
+(verb)|quantify (generic term)|measure (generic term)
+(verb)|burden (generic term)|burthen (generic term)|weight (generic term)|weight down (generic term)
+(verb)|explore (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+(adv)|clean|plum
+(adv)|plum
+plumb bob|1
+(noun)|plumb|plummet|bob (generic term)
+plumb level|1
+(noun)|carpenter's level (generic term)
+plumb line|1
+(noun)|perpendicular|cord (generic term)
+plumb rule|1
+(noun)|plumb line (generic term)|perpendicular (generic term)
+plumbable|1
+(adj)|fathomable|soundable|unfathomable (antonym)
+plumbaginaceae|1
+(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|sea-lavender family|dicot family (generic term)|magnoliopsid family (generic term)
+plumbaginaceous|1
+(adj)|dicot family|magnoliopsid family (related term)
+plumbaginales|1
+(noun)|Plumbaginales|order Plumbaginales|plant order (generic term)
+plumbago|2
+(noun)|graphite|black lead|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+plumbago europaea|1
+(noun)|leadwort|Plumbago europaea|shrub (generic term)|bush (generic term)
+plumbed|1
+(adj)|sounded|measured (similar term)
+plumber|1
+(noun)|pipe fitter|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+plumber's helper|1
+(noun)|plunger|hand tool (generic term)
+plumber's snake|1
+(noun)|auger|snake (generic term)|hand tool (generic term)
+plumbery|1
+(noun)|plumbing|trade (generic term)|craft (generic term)
+plumbic|1
+(adj)|plumbous|metallic element|metal (related term)
+plumbing|3
+(noun)|plumbing system|utility (generic term)
+(noun)|plumbery|trade (generic term)|craft (generic term)
+(noun)|bathymetry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+plumbing fixture|1
+(noun)|fixture (generic term)
+plumbing system|1
+(noun)|plumbing|utility (generic term)
+plumbism|1
+(noun)|lead poisoning|saturnism|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+plumbous|1
+(adj)|plumbic|metallic element|metal (related term)
+plumcot|2
+(noun)|plumcot tree|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+plumcot tree|1
+(noun)|plumcot|fruit tree (generic term)
+plume|8
+(noun)|adornment (generic term)
+(noun)|feather|plumage|body covering (generic term)|animal material (generic term)
+(verb)|overcharge|soak|surcharge|gazump|fleece|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|pride|congratulate|feel (generic term)|experience (generic term)
+(verb)|deck (generic term)|bedight (generic term)|bedeck (generic term)
+(verb)|preen|arrange (generic term)|set up (generic term)|clean (generic term)|make clean (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|preen|primp|dress|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+plume-tipped|1
+(adj)|tipped (similar term)
+plume grass|1
+(noun)|grass (generic term)
+plume poppy|1
+(noun)|bocconia|Macleaya cordata|poppy (generic term)
+plume thistle|1
+(noun)|plumed thistle|thistle (generic term)
+plumed|3
+(adj)|plumy|feathered (similar term)
+(adj)|plumate|plumose|feathered (similar term)
+(adj)|crested|adorned (similar term)|decorated (similar term)
+plumed scorpionfish|1
+(noun)|Scorpaena grandicornis|scorpionfish (generic term)|scorpion fish (generic term)|sea scorpion (generic term)
+plumed thistle|1
+(noun)|plume thistle|thistle (generic term)
+plumed tussock|1
+(noun)|toe toe|toetoe|Cortaderia richardii|Arundo richardii|grass (generic term)
+plumelike|1
+(adj)|plumy|feathered (similar term)
+plumeria|1
+(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus (generic term)|magnoliopsid genus (generic term)
+plumeria acutifolia|1
+(noun)|pagoda tree|temple tree|Plumeria acutifolia|frangipani (generic term)|frangipanni (generic term)
+plumeria alba|1
+(noun)|West Indian jasmine|pagoda tree|Plumeria alba|frangipani (generic term)|frangipanni (generic term)
+plumiera|1
+(noun)|Plumeria|genus Plumeria|Plumiera|dicot genus (generic term)|magnoliopsid genus (generic term)
+plumlike|1
+(adj)|rounded (similar term)
+plummet|2
+(noun)|plumb bob|plumb|bob (generic term)
+(verb)|plump|drop (generic term)
+plummy|2
+(adj)|desirable (similar term)
+(adj)|affected (similar term)|unnatural (similar term)
+plumose|1
+(adj)|plumate|plumed|feathered (similar term)
+plump|6
+(adj)|buxom|chubby|embonpoint|zaftig|zoftig|fat (similar term)
+(noun)|noise (generic term)
+(verb)|plummet|drop (generic term)
+(verb)|plank|flump|plonk|plop|plunk|plump down|plunk down|set down (generic term)|put down (generic term)|place down (generic term)
+(verb)|fatten|fat|flesh out|fill out|plump out|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|go|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+plump down|2
+(verb)|plonk down|plank down|drop (generic term)
+(verb)|plank|flump|plonk|plop|plunk|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+plump for|1
+(verb)|back|endorse|indorse|plunk for|support|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+plump in|1
+(verb)|arrive (generic term)|get (generic term)|come (generic term)
+plump out|2
+(verb)|depart (generic term)|take leave (generic term)|quit (generic term)
+(verb)|fatten|fat|flesh out|fill out|plump|fatten out|fatten up|change (generic term)|alter (generic term)|modify (generic term)
+plump up|1
+(verb)|fluff up|shake up|shake (generic term)|agitate (generic term)
+plumping|1
+(adj)|large (similar term)|big (similar term)
+plumpness|1
+(noun)|embonpoint|roundness|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+plumule|1
+(noun)|down (generic term)|down feather (generic term)
+plumy|3
+(adj)|plumelike|feathered (similar term)
+(adj)|plumed|feathered (similar term)
+(adj)|feathery|feathered|adorned (similar term)|decorated (similar term)
+plunder|5
+(noun)|loot|booty|pillage|prize|swag|dirty money|stolen property (generic term)
+(verb)|loot|steal (generic term)
+(verb)|sack|take (generic term)
+(verb)|despoil|loot|reave|strip|rifle|ransack|pillage|foray|take (generic term)
+(verb)|rape|spoil|despoil|violate|destroy (generic term)|ruin (generic term)
+plunderage|1
+(noun)|embezzlement (generic term)|peculation (generic term)|defalcation (generic term)|misapplication (generic term)|misappropriation (generic term)
+plundered|1
+(adj)|looted|pillaged|ransacked|empty (similar term)
+plunderer|1
+(noun)|pillager|looter|spoiler|despoiler|raider|freebooter|thief (generic term)|stealer (generic term)
+plundering|2
+(adj)|acquisitive (similar term)
+(noun)|pillage|pillaging|aggression (generic term)|hostility (generic term)
+plunge|10
+(noun)|dip|swimming (generic term)|swim (generic term)
+(noun)|drop (generic term)|fall (generic term)
+(verb)|immerse|penetrate (generic term)|perforate (generic term)
+(verb)|dive|plunk|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|dart (generic term)|dash (generic term)|scoot (generic term)|scud (generic term)|flash (generic term)|shoot (generic term)
+(verb)|launch|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+(verb)|immerse
+(verb)|dump|drop (generic term)
+(verb)|dunk|dip|souse|douse|immerse (generic term)|plunge (generic term)
+(verb)|steep|immerse|engulf|engross|absorb|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+plunger|4
+(noun)|speculator|adventurer (generic term)|venturer (generic term)|gambler (generic term)
+(noun)|diver|swimmer (generic term)
+(noun)|plumber's helper|hand tool (generic term)
+(noun)|piston|mechanical device (generic term)
+plunk|7
+(noun)|sound (generic term)
+(noun)|plunker|hit (generic term)|hitting (generic term)|striking (generic term)
+(verb)|clop|clump|clunk|sound (generic term)|go (generic term)
+(verb)|plank|flump|plonk|plop|plump down|plunk down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+(verb)|dive|plunge|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|pluck|pick|pull (generic term)|draw (generic term)|force (generic term)
+(adv)|plop
+plunk down|1
+(verb)|plank|flump|plonk|plop|plunk|plump down|plump|set down (generic term)|put down (generic term)|place down (generic term)
+plunk for|1
+(verb)|back|endorse|indorse|plump for|support|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+plunker|1
+(noun)|plunk|hit (generic term)|hitting (generic term)|striking (generic term)
+pluperfect|2
+(adj)|perfect (similar term)
+(noun)|past perfect|past perfect tense|pluperfect tense|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+pluperfect tense|1
+(noun)|past perfect|past perfect tense|pluperfect|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+plural|3
+(adj)|singular (antonym)
+(adj)|dual (similar term)|singular (antonym)
+(noun)|plural form|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)|singular (antonym)
+plural form|1
+(noun)|plural|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)|singular (antonym)
+pluralisation|1
+(noun)|pluralization|inflection (generic term)|inflexion (generic term)
+pluralise|1
+(verb)|pluralize|inflect (generic term)
+pluralism|3
+(noun)|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)|monism (antonym)
+(noun)|practice (generic term)|pattern (generic term)
+pluralist|3
+(noun)|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)
+(noun)|philosopher (generic term)
+(noun)|liberal (generic term)|liberalist (generic term)|progressive (generic term)
+pluralistic|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+plurality|3
+(noun)|state (generic term)
+(noun)|battalion|large number|multitude|pack|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|relative majority|relative quantity (generic term)
+pluralization|1
+(noun)|pluralisation|inflection (generic term)|inflexion (generic term)
+pluralize|1
+(verb)|pluralise|inflect (generic term)
+plus|4
+(adj)|nonnegative (similar term)|positive (similar term)|minus (antonym)
+(adj)|positive|advantageous (similar term)
+(noun)|asset|quality (generic term)|liability (antonym)
+(noun)|summation|addition|arithmetic operation (generic term)
+plus fours|1
+(noun)|breeches (generic term)|knee breeches (generic term)|knee pants (generic term)|knickerbockers (generic term)|knickers (generic term)
+plus sign|1
+(noun)|sign (generic term)
+plush|2
+(adj)|lavish|lucullan|lush|plushy|rich (similar term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+plush-like|1
+(adj)|plushy|coarse (similar term)|harsh (similar term)
+plushy|2
+(adj)|plush-like|coarse (similar term)|harsh (similar term)
+(adj)|lavish|lucullan|lush|plush|rich (similar term)
+plutarch|1
+(noun)|Plutarch|biographer (generic term)
+pluteaceae|1
+(noun)|Pluteaceae|family Pluteaceae|fungus family (generic term)
+pluteus|1
+(noun)|Pluteus|genus Pluteus|roof mushroom|fungus genus (generic term)
+pluteus aurantiorugosus|1
+(noun)|Pluteus aurantiorugosus|agaric (generic term)
+pluteus cervinus|1
+(noun)|deer mushroom|Pluteus cervinus|agaric (generic term)
+pluteus magnus|1
+(noun)|Pluteus magnus|swadust mushroom|agaric (generic term)
+pluto|3
+(noun)|Pluto|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|Pluto|Hades|Aides|Aidoneus|Greek deity (generic term)
+(noun)|Pluto|superior planet (generic term)|outer planet (generic term)
+plutocracy|1
+(noun)|political system (generic term)|form of government (generic term)
+plutocrat|1
+(noun)|rich person (generic term)|wealthy person (generic term)|have (generic term)
+plutocratic|1
+(adj)|plutocratical|rich person|wealthy person|have (related term)
+plutocratical|1
+(adj)|plutocratic|rich person|wealthy person|have (related term)
+pluton|1
+(noun)|batholith|batholite|plutonic rock|igneous rock (generic term)
+plutonian|1
+(adj)|Hadean|Plutonian|Tartarean|infernal (similar term)
+plutonic|1
+(adj)|irruptive|intrusive (similar term)
+plutonic rock|1
+(noun)|batholith|batholite|pluton|igneous rock (generic term)
+plutonium|1
+(noun)|Pu|atomic number 94|chemical element (generic term)|element (generic term)
+plutonium 239|1
+(noun)|plutonium (generic term)|Pu (generic term)|atomic number 94 (generic term)
+plutonium bomb|1
+(noun)|atom bomb|atomic bomb|A-bomb|fission bomb|nuclear weapon (generic term)|bomb (generic term)
+plutonium pit|1
+(noun)|plutonium trigger|trigger (generic term)
+plutonium trigger|1
+(noun)|plutonium pit|trigger (generic term)
+pluvialis|1
+(noun)|Pluvialis|genus Pluvialis|bird genus (generic term)
+pluvianus|1
+(noun)|Pluvianus|genus Pluvianus|bird genus (generic term)
+pluvianus aegyptius|1
+(noun)|crocodile bird|Pluvianus aegyptius|courser (generic term)
+pluviometer|1
+(noun)|rain gauge|rain gage|udometer|gauge (generic term)|gage (generic term)
+pluviose|1
+(noun)|Pluviose|Revolutionary calendar month (generic term)
+ply|8
+(noun)|strand (generic term)
+(noun)|layer (generic term)|bed (generic term)
+(verb)|provide|supply|cater|give (generic term)
+(verb)|do (generic term)|perform (generic term)
+(verb)|run|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|wield (generic term)|handle (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+plyboard|1
+(noun)|plywood|laminate (generic term)
+plyer|1
+(noun)|plier|worker (generic term)
+plyers|1
+(noun)|pliers|pair of pliers|hand tool (generic term)|compound lever (generic term)
+plymouth|1
+(noun)|Plymouth|town (generic term)
+plymouth colony|1
+(noun)|Plymouth Colony|colony (generic term)|settlement (generic term)
+plymouth rock|2
+(noun)|Plymouth Rock|boulder (generic term)|bowlder (generic term)
+(noun)|Plymouth Rock|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+plywood|1
+(noun)|plyboard|laminate (generic term)
+plzen|1
+(noun)|Pilsen|Plzen|town (generic term)
+pm|6
+(adj)|post meridiem|p.m.|postmeridian (similar term)
+(noun)|autopsy|necropsy|postmortem|post-mortem|PM|postmortem examination|post-mortem examination|examination (generic term)|scrutiny (generic term)
+(noun)|promethium|Pm|atomic number 61|metallic element (generic term)|metal (generic term)
+(noun)|Prime Minister|PM|premier|head of state (generic term)|chief of state (generic term)
+(noun)|phase modulation|PM|modulation (generic term)
+(adv)|post meridiem|P.M.|PM
+pms|1
+(noun)|premenstrual syndrome|PMS|syndrome (generic term)
+pneumatic|1
+(adj)|gas (related term)
+pneumatic caisson|1
+(noun)|caisson|cofferdam|chamber (generic term)
+pneumatic drill|1
+(noun)|power drill (generic term)
+pneumatic hammer|1
+(noun)|air hammer|jackhammer|hammer (generic term)|power hammer (generic term)
+pneumatic tire|1
+(noun)|pneumatic tyre|tire (generic term)|tyre (generic term)
+pneumatic tyre|1
+(noun)|pneumatic tire|tire (generic term)|tyre (generic term)
+pneumatics|1
+(noun)|mechanics (generic term)
+pneumatophore|1
+(noun)|root (generic term)
+pneumococcal|1
+(adj)|diplococcus (related term)
+pneumococcal pneumonia|1
+(noun)|pneumonia (generic term)
+pneumococcal vaccine|1
+(noun)|Pneumovax|vaccine (generic term)|vaccinum (generic term)
+pneumococcus|1
+(noun)|Diplococcus pneumoniae|diplococcus (generic term)
+pneumoconiosis|1
+(noun)|pneumonoconiosis|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+pneumocystis carinii pneumonia|1
+(noun)|pneumocytosis|pneumocystis pneumonia|interstitial plasma cell pneumonia|pneumonia (generic term)
+pneumocystis pneumonia|1
+(noun)|pneumocytosis|pneumocystis carinii pneumonia|interstitial plasma cell pneumonia|pneumonia (generic term)
+pneumocytosis|1
+(noun)|pneumocystis pneumonia|pneumocystis carinii pneumonia|interstitial plasma cell pneumonia|pneumonia (generic term)
+pneumoencephalogram|1
+(noun)|encephalogram|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+pneumogastric|3
+(adj)|vagal|cranial nerve (related term)
+(adj)|respiratory organ (related term)|internal organ|viscus (related term)
+(noun)|vagus|vagus nerve|nervus vagus|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve (generic term)
+pneumogastric nerve|1
+(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|tenth cranial nerve|wandering nerve|cranial nerve (generic term)
+pneumonectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+pneumonia|1
+(noun)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+pneumonic|2
+(adj)|respiratory disease|respiratory illness|respiratory disorder (related term)
+(adj)|pulmonary|pulmonic|respiratory organ (related term)
+pneumonic plague|1
+(noun)|pulmonic plague|plague pneumonia|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+pneumonitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+pneumonoconiosis|1
+(noun)|pneumoconiosis|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+pneumothorax|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+pneumovax|1
+(noun)|pneumococcal vaccine|Pneumovax|vaccine (generic term)|vaccinum (generic term)
+pnom penh|1
+(noun)|Phnom Penh|Pnom Penh|Cambodian capital|national capital (generic term)
+po|4
+(noun)|polonium|Po|atomic number 84|metallic element (generic term)|metal (generic term)
+(noun)|petty officer|PO|P.O.|noncommissioned officer (generic term)|noncom (generic term)
+(noun)|Po|Po River|river (generic term)
+(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency (generic term)
+po-faced|1
+(adj)|humorless (similar term)|humourless (similar term)|unhumorous (similar term)
+po box|1
+(noun)|Post-Office box|PO Box|POB|call box|letter box|compartment (generic term)
+po box no|1
+(noun)|post-office box number|PO box number|PO Box No|box number|mailing address (generic term)
+po box number|1
+(noun)|post-office box number|PO box number|PO Box No|box number|mailing address (generic term)
+po river|1
+(noun)|Po|Po River|river (generic term)
+poa|1
+(noun)|Poa|genus Poa|monocot genus (generic term)|liliopsid genus (generic term)
+poa nemoralis|1
+(noun)|wood meadowgrass|Poa nemoralis|Agrostis alba|meadowgrass (generic term)|meadow grass (generic term)
+poa pratensis|1
+(noun)|Kentucky bluegrass|Kentucky blue|Kentucy blue grass|June grass|Poa pratensis|bluegrass (generic term)|blue grass (generic term)
+poaceae|1
+(noun)|Gramineae|family Gramineae|Graminaceae|family Graminaceae|Poaceae|family Poaceae|grass family|monocot family (generic term)|liliopsid family (generic term)
+poach|2
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|cook (generic term)
+poached|1
+(adj)|boiled|stewed|cooked (similar term)
+poached egg|1
+(noun)|dropped egg|dish (generic term)
+poacher|3
+(noun)|appropriator (generic term)
+(noun)|cooking utensil (generic term)|cookware (generic term)|vessel (generic term)
+(noun)|sea poacher|sea poker|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+poaching|1
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+pob|1
+(noun)|Post-Office box|PO Box|POB|call box|letter box|compartment (generic term)
+pobeda peak|1
+(noun)|Pobeda Peak|Pobedy Peak|mountain peak (generic term)
+pobedy peak|1
+(noun)|Pobeda Peak|Pobedy Peak|mountain peak (generic term)
+pocahontas|1
+(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan (generic term)
+pocatello|1
+(noun)|Pocatello|town (generic term)
+pochard|1
+(noun)|Aythya ferina|duck (generic term)
+pock|2
+(noun)|pustule (generic term)
+(verb)|scar|mark|pit|deface (generic term)|disfigure (generic term)|blemish (generic term)
+pocked|2
+(adj)|pockmarked|potholed|rough (similar term)|unsmooth (similar term)
+(adj)|pockmarked|blemished (similar term)
+pocket|11
+(noun)|pouch (generic term)
+(noun)|pouch|sac|sack|cavity (generic term)|enclosed space (generic term)
+(noun)|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+(noun)|space (generic term)
+(noun)|scoop|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|air pocket|air hole|atmospheric phenomenon (generic term)
+(noun)|people (generic term)
+(noun)|pouch|sac (generic term)
+(noun)|opening (generic term)|gap (generic term)
+(verb)|take (generic term)
+(verb)|bag|steal (generic term)
+pocket-handkerchief|1
+(noun)|handkerchief (generic term)|hankie (generic term)|hanky (generic term)|hankey (generic term)
+pocket-size|2
+(adj)|minor|modest|small|small-scale|pocket-sized|limited (similar term)
+(adj)|pocket-sized|pocketable|small (similar term)|little (similar term)
+pocket-sized|2
+(adj)|minor|modest|small|small-scale|pocket-size|limited (similar term)
+(adj)|pocket-size|pocketable|small (similar term)|little (similar term)
+pocket battleship|1
+(noun)|battleship (generic term)|battlewagon (generic term)
+pocket billiards|1
+(noun)|pool|table game (generic term)
+pocket book|1
+(noun)|pocketbook|pocket edition|paperback book (generic term)|paper-back book (generic term)|paperback (generic term)|softback book (generic term)|softback (generic term)|soft-cover book (generic term)|soft-cover (generic term)
+pocket borough|1
+(noun)|borough (generic term)
+pocket bread|1
+(noun)|pita|flatbread (generic term)
+pocket calculator|1
+(noun)|hand calculator|calculator (generic term)|calculating machine (generic term)
+pocket comb|1
+(noun)|pocketcomb|comb (generic term)
+pocket dictionary|1
+(noun)|little dictionary|dictionary (generic term)|lexicon (generic term)
+pocket edition|1
+(noun)|pocketbook|pocket book|paperback book (generic term)|paper-back book (generic term)|paperback (generic term)|softback book (generic term)|softback (generic term)|soft-cover book (generic term)|soft-cover (generic term)
+pocket flap|1
+(noun)|flap (generic term)
+pocket flask|1
+(noun)|hipflask|flask (generic term)
+pocket gopher|1
+(noun)|gopher|pouched rat|pocket rat (generic term)
+pocket knife|1
+(noun)|pocketknife|knife (generic term)
+pocket lighter|1
+(noun)|cigar lighter|cigarette lighter|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+pocket money|1
+(noun)|pin money|spending money|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+pocket mouse|1
+(noun)|pocket rat (generic term)
+pocket rat|1
+(noun)|rat (generic term)
+pocket veto|1
+(noun)|veto (generic term)
+pocket watch|1
+(noun)|watch (generic term)|ticker (generic term)
+pocketable|1
+(adj)|pocket-size|pocket-sized|small (similar term)|little (similar term)
+pocketbook|4
+(noun)|means (generic term)|substance (generic term)
+(noun)|wallet|billfold|notecase|case (generic term)
+(noun)|pocket book|pocket edition|paperback book (generic term)|paper-back book (generic term)|paperback (generic term)|softback book (generic term)|softback (generic term)|soft-cover book (generic term)|soft-cover (generic term)
+(noun)|bag|handbag|purse|container (generic term)
+pocketcomb|1
+(noun)|pocket comb|comb (generic term)
+pocketed bat|1
+(noun)|pocketed freetail bat|Tadirida femorosacca|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+pocketed freetail bat|1
+(noun)|pocketed bat|Tadirida femorosacca|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+pocketful|1
+(noun)|containerful (generic term)
+pocketknife|1
+(noun)|pocket knife|knife (generic term)
+pockmark|2
+(noun)|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+(verb)|scar (generic term)|mark (generic term)|pock (generic term)|pit (generic term)
+pockmarked|2
+(adj)|pocked|potholed|rough (similar term)|unsmooth (similar term)
+(adj)|pocked|blemished (similar term)
+pod|6
+(noun)|cod|seedcase|husk (generic term)
+(noun)|seedpod|fruit (generic term)
+(noun)|animal group (generic term)
+(noun)|fuel pod|container (generic term)
+(verb)|shell (generic term)
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+podalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+podalyria|1
+(noun)|Podalyria|genus Podalyria|rosid dicot genus (generic term)
+podargidae|1
+(noun)|Podargidae|family Podargidae|bird family (generic term)
+podargus|1
+(noun)|Podargus|genus Podargus|bird genus (generic term)
+podaxaceae|1
+(noun)|Podaxaceae|gasteromycete (generic term)|gastromycete (generic term)
+podetium|1
+(noun)|plant process (generic term)|enation (generic term)
+podgy|1
+(adj)|dumpy|pudgy|tubby|roly-poly|fat (similar term)
+podiatrist|1
+(noun)|chiropodist|foot doctor|specialist (generic term)|medical specialist (generic term)
+podiatry|1
+(noun)|chiropody|medicine (generic term)|medical specialty (generic term)
+podiceps|1
+(noun)|Podiceps|genus Podiceps|bird genus (generic term)
+podiceps cristatus|1
+(noun)|great crested grebe|Podiceps cristatus|grebe (generic term)
+podiceps grisegena|1
+(noun)|red-necked grebe|Podiceps grisegena|grebe (generic term)
+podiceps nigricollis|1
+(noun)|black-necked grebe|eared grebe|Podiceps nigricollis|grebe (generic term)
+podiceps ruficollis|1
+(noun)|dabchick|little grebe|Podiceps ruficollis|grebe (generic term)
+podicipedidae|1
+(noun)|Podicipedidae|family Podicipedidae|bird family (generic term)
+podicipediformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+podicipitiform seabird|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+podicipitiformes|1
+(noun)|Podicipitiformes|order Podicipitiformes|Podicipediformes|order Podicipediformes|Colymbiformes|order Colymbiformes|animal order (generic term)
+podilymbus|1
+(noun)|Podilymbus|genus Podilymbus|bird genus (generic term)
+podilymbus podiceps|1
+(noun)|pied-billed grebe|Podilymbus podiceps|grebe (generic term)
+podium|1
+(noun)|dais|pulpit|rostrum|ambo|stump|soapbox|platform (generic term)
+podlike|1
+(adj)|sheathed (similar term)
+podocarp|1
+(noun)|conifer (generic term)|coniferous tree (generic term)
+podocarpaceae|1
+(noun)|Podocarpaceae|family Podocarpaceae|podocarpus family|gymnosperm family (generic term)
+podocarpus|1
+(noun)|Podocarpus|genus Podocarpus|gymnosperm genus (generic term)
+podocarpus amara|1
+(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer (generic term)|coniferous tree (generic term)
+podocarpus coriaceus|1
+(noun)|yacca|yacca podocarp|Podocarpus coriaceus|conifer (generic term)|coniferous tree (generic term)
+podocarpus dacrydioides|1
+(noun)|kahikatea|New Zealand Dacryberry|New Zealand white pine|Dacrycarpus dacrydioides|Podocarpus dacrydioides|conifer (generic term)|coniferous tree (generic term)
+podocarpus elatus|1
+(noun)|brown pine|Rockingham podocarp|Podocarpus elatus|conifer (generic term)|coniferous tree (generic term)
+podocarpus elongatus|1
+(noun)|cape yellowwood|African yellowwood|Podocarpus elongatus|conifer (generic term)|coniferous tree (generic term)
+podocarpus family|1
+(noun)|Podocarpaceae|family Podocarpaceae|gymnosperm family (generic term)
+podocarpus ferruginea|1
+(noun)|miro|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer (generic term)|coniferous tree (generic term)
+podocarpus latifolius|1
+(noun)|South-African yellowwood|Podocarpus latifolius|gymnospermous yellowwood (generic term)
+podocarpus nivalis|1
+(noun)|alpine totara|Podocarpus nivalis|shrub (generic term)|bush (generic term)
+podocarpus spicata|1
+(noun)|matai|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer (generic term)|coniferous tree (generic term)
+podocarpus totara|1
+(noun)|totara|Podocarpus totara|conifer (generic term)|coniferous tree (generic term)
+podophyllum|1
+(noun)|Podophyllum|genus Podophyllum|magnoliid dicot genus (generic term)
+podophyllum peltatum|1
+(noun)|mayapple|May apple|wild mandrake|Podophyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+podsol|1
+(noun)|podzol|podzol soil|podsol soil|podsolic soil|soil (generic term)|dirt (generic term)
+podsol soil|1
+(noun)|podzol|podzol soil|podsol|podsolic soil|soil (generic term)|dirt (generic term)
+podsolic soil|1
+(noun)|podzol|podzol soil|podsol|podsol soil|soil (generic term)|dirt (generic term)
+podzol|1
+(noun)|podzol soil|podsol|podsol soil|podsolic soil|soil (generic term)|dirt (generic term)
+podzol soil|1
+(noun)|podzol|podsol|podsol soil|podsolic soil|soil (generic term)|dirt (generic term)
+poe|1
+(noun)|Poe|Edgar Allan Poe|writer (generic term)|author (generic term)|poet (generic term)
+poeciliid|1
+(noun)|topminnow|poeciliid fish|live-bearer|cypriniform fish (generic term)
+poeciliid fish|1
+(noun)|topminnow|poeciliid|live-bearer|cypriniform fish (generic term)
+poeciliidae|1
+(noun)|Poeciliidae|family Poeciliidae|fish family (generic term)
+poecilocapsus|1
+(noun)|Poecilocapsus|genus Poecilocapsus|arthropod genus (generic term)
+poecilocapsus lineatus|1
+(noun)|four-lined plant bug|four-lined leaf bug|Poecilocapsus lineatus|mirid bug (generic term)|mirid (generic term)|capsid (generic term)
+poecilogale|1
+(noun)|Poecilogale|genus Poecilogale|mammal genus (generic term)
+poecilogale albinucha|1
+(noun)|snake muishond|Poecilogale albinucha|muishond (generic term)
+poem|1
+(noun)|verse form|literary composition (generic term)|literary work (generic term)
+poenology|1
+(noun)|penology|criminology (generic term)
+poephila|1
+(noun)|Poephila|genus Poephila|bird genus (generic term)
+poephila castanotis|1
+(noun)|zebra finch|Poephila castanotis|grassfinch (generic term)|grass finch (generic term)
+poesy|1
+(noun)|poetry|verse|writing style (generic term)|literary genre (generic term)|genre (generic term)
+poet|1
+(noun)|writer (generic term)|author (generic term)
+poet-singer|1
+(noun)|folk singer|jongleur|minstrel|troubadour|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+poet laureate|2
+(noun)|poet (generic term)
+(noun)|poet (generic term)|laureate (generic term)
+poetess|1
+(noun)|poet (generic term)
+poetic|4
+(adj)|poetical|writing style|literary genre|genre (related term)
+(adj)|figurative (similar term)|nonliteral (similar term)
+(adj)|writer|author (related term)
+(adj)|poetical|rhetorical (similar term)
+poetic justice|1
+(noun)|just deserts|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+poetic license|1
+(noun)|license (generic term)|licence (generic term)
+poetic rhythm|1
+(noun)|rhythmic pattern|prosody|versification (generic term)
+poetical|2
+(adj)|poetic|writing style|literary genre|genre (related term)
+(adj)|poetic|rhetorical (similar term)
+poetics|1
+(noun)|literary study (generic term)
+poetise|1
+(verb)|verse|versify|poetize|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+poetiser|1
+(noun)|rhymer|rhymester|versifier|poetizer|writer (generic term)|author (generic term)
+poetize|1
+(verb)|verse|versify|poetise|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+poetizer|1
+(noun)|rhymer|rhymester|versifier|poetiser|writer (generic term)|author (generic term)
+poetry|2
+(noun)|poesy|verse|writing style (generic term)|literary genre (generic term)|genre (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+pogey|1
+(noun)|dole|pogy|social welfare (generic term)|welfare (generic term)
+pogge|1
+(noun)|armed bullhead|Agonus cataphractus|poacher (generic term)|sea poacher (generic term)|sea poker (generic term)
+pogo stick|1
+(noun)|plaything (generic term)|toy (generic term)
+pogonia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+pogonia divaricata|1
+(noun)|spreading pogonia|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid (generic term)|orchidaceous plant (generic term)
+pogonia rosea|1
+(noun)|rosebud orchid|Cleistes rosea|Pogonia rosea|orchid (generic term)|orchidaceous plant (generic term)
+pogonion|1
+(noun)|craniometric point (generic term)
+pogonip|1
+(noun)|ice fog|fog (generic term)
+pogonophora|1
+(noun)|Pogonophora|phylum Pogonophora|phylum (generic term)
+pogonophoran|1
+(noun)|beard worm|worm (generic term)
+pogostemon|1
+(noun)|Pogostemon|genus Pogostemon|asterid dicot genus (generic term)
+pogostemon cablin|1
+(noun)|patchouli|patchouly|pachouli|Pogostemon cablin|shrub (generic term)|bush (generic term)
+pogrom|1
+(noun)|persecution (generic term)
+pogy|1
+(noun)|dole|pogey|social welfare (generic term)|welfare (generic term)
+poi|1
+(noun)|dish (generic term)
+poignance|1
+(noun)|poignancy|sadness (generic term)|sorrow (generic term)|sorrowfulness (generic term)
+poignancy|2
+(noun)|poignance|sadness (generic term)|sorrow (generic term)|sorrowfulness (generic term)
+(noun)|pathos|quality (generic term)
+poignant|2
+(adj)|affecting|touching|moving (similar term)
+(adj)|painful (similar term)
+poignantly|1
+(adv)|affectingly|touchingly
+poikilotherm|1
+(noun)|ectotherm|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+poikilothermic|1
+(adj)|poikilothermous|heterothermic|ectothermic|cold-blooded (similar term)
+poikilothermous|1
+(adj)|poikilothermic|heterothermic|ectothermic|cold-blooded (similar term)
+poilu|1
+(noun)|purloo|chicken purloo|stew (generic term)
+poinciana|2
+(noun)|Poinciana|subgenus Poinciana|rosid dicot genus (generic term)
+(noun)|bird of paradise|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub (generic term)
+poinciana gilliesii|1
+(noun)|bird of paradise|poinciana|Caesalpinia gilliesii|Poinciana gilliesii|flowering shrub (generic term)
+poinciana pulcherrima|1
+(noun)|pride of barbados|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub (generic term)
+poinciana regia|1
+(noun)|royal poinciana|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+poinsettia|1
+(noun)|Christmas star|Christmas flower|lobster plant|Mexican flameleaf|painted leaf|Euphorbia pulcherrima|spurge (generic term)
+poinsettia strain|1
+(noun)|superbug|Bemisia tabaci|sweet-potato whitefly (generic term)
+point|35
+(noun)|component (generic term)|constituent (generic term)|element (generic term)|factor (generic term)|ingredient (generic term)
+(noun)|location (generic term)
+(noun)|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|degree|level|stage|state (generic term)
+(noun)|detail|item|fact (generic term)
+(noun)|point in time|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|aim (generic term)|object (generic term)|objective (generic term)|target (generic term)
+(noun)|tip|peak|convex shape (generic term)|convexity (generic term)
+(noun)|dot|disk (generic term)|disc (generic term)|saucer (generic term)
+(noun)|unit of measurement (generic term)|unit (generic term)
+(noun)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+(noun)|item|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|relevance (generic term)|relevancy (generic term)
+(noun)|spot|characteristic (generic term)
+(noun)|end (generic term)
+(noun)|compass point|direction (generic term)
+(noun)|linear unit (generic term)
+(noun)|period|full stop|stop|full point|punctuation (generic term)|punctuation mark (generic term)
+(noun)|head|mark (generic term)
+(noun)|pointedness|taper (generic term)|unpointedness (antonym)
+(noun)|characteristic (generic term)
+(noun)|gunpoint|gun muzzle (generic term)|muzzle (generic term)
+(noun)|power point|wall socket (generic term)|wall plug (generic term)|electric outlet (generic term)|electrical outlet (generic term)|outlet (generic term)|electric receptacle (generic term)
+(noun)|distributor point|breaker point|contact (generic term)|tangency (generic term)
+(verb)|indicate|show|inform (generic term)
+(verb)|orient|lie (generic term)
+(verb)|charge|level|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|steer|maneuver|manoeuver|manoeuvre|direct|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|bespeak|betoken|indicate|signal|tell (generic term)
+(verb)|luff|sail (generic term)
+(verb)|tag (generic term)|label (generic term)|mark (generic term)
+(verb)|be (generic term)
+(verb)|target|aim|place|direct|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|sharpen|taper|change shape (generic term)|change form (generic term)|deform (generic term)|taper off (related term)|taper off (related term)
+(verb)|repoint|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+point-and-shoot camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+point-blank|2
+(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|plainspoken|straight-from-the-shoulder|direct (similar term)
+(adj)|direct (similar term)
+point-of-sale|1
+(adj)|location (related term)
+point after|1
+(noun)|point after touchdown|extra point|conversion (generic term)|point (generic term)
+point after touchdown|1
+(noun)|point after|extra point|conversion (generic term)|point (generic term)
+point duty|1
+(noun)|traffic control (generic term)
+point in time|1
+(noun)|point|measure (generic term)|quantity (generic term)|amount (generic term)
+point jam|1
+(verb)|jam (generic term)|block (generic term)
+point lace|1
+(noun)|needlepoint|lace (generic term)
+point man|2
+(noun)|leader (generic term)
+(noun)|soldier (generic term)
+point mutation|1
+(noun)|gene mutation|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+point of accumulation|1
+(noun)|limit|limit point|indefinite quantity (generic term)
+point of apoapsis|1
+(noun)|apoapsis|celestial point (generic term)|point of periapsis (antonym)|periapsis (antonym)
+point of departure|2
+(noun)|jumping-off place|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|springboard|jumping-off point|beginning (generic term)|start (generic term)|commencement (generic term)
+point of entry|1
+(noun)|port of entry|port (generic term)
+point of honor|1
+(noun)|concern (generic term)
+point of intersection|1
+(noun)|intersection|intersection point|point (generic term)
+point of no return|1
+(noun)|Rubicon|line (generic term)|dividing line (generic term)|demarcation (generic term)|contrast (generic term)
+point of order|1
+(noun)|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+point of periapsis|1
+(noun)|periapsis|celestial point (generic term)|point of apoapsis (antonym)|apoapsis (antonym)
+point of reference|1
+(noun)|reference point|reference|indicator (generic term)
+point of view|2
+(noun)|viewpoint|stand|standpoint|position (generic term)|stance (generic term)|posture (generic term)
+(noun)|position (generic term)|spatial relation (generic term)
+point out|3
+(verb)|comment|notice|remark|note (generic term)|observe (generic term)|mention (generic term)|remark (generic term)
+(verb)|signalize|signalise|call attention|indicate (generic term)|point (generic term)|show (generic term)
+(verb)|remonstrate|inform (generic term)
+point source|1
+(noun)|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+point system|3
+(noun)|system (generic term)|system of rules (generic term)
+(noun)|system of measurement (generic term)|metric (generic term)
+(noun)|orthography (generic term)|writing system (generic term)
+point the way|1
+(verb)|direct (generic term)
+point up|1
+(verb)|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+point woman|1
+(noun)|leader (generic term)
+pointed|2
+(adj)|acanthoid (similar term)|acanthous (similar term)|spinous (similar term)|acuate (similar term)|acute (similar term)|sharp (similar term)|needlelike (similar term)|barreled (similar term)|barrelled (similar term)|bristle-pointed (similar term)|five-pointed (similar term)|fusiform (similar term)|spindle-shaped (similar term)|cigar-shaped (similar term)|nibbed (similar term)|peaked (similar term)|pyramidal (similar term)|pyramidic (similar term)|pyramidical (similar term)|sharpened (similar term)|six-pointed (similar term)|spiked (similar term)|spiked (similar term)|spikelike (similar term)|tapering (similar term)|tapered (similar term)|angular (related term)|angulate (related term)|sharp (related term)|pointless (antonym)
+(adj)|direct (similar term)
+pointed-leaf maple|1
+(noun)|Acer argutum|maple (generic term)
+pointed-toe|1
+(adj)|pointy-toed|toed (similar term)|toe (similar term)
+pointed arch|1
+(noun)|arch (generic term)
+pointedness|2
+(noun)|point|taper (generic term)|unpointedness (antonym)
+(noun)|directness (generic term)|straightness (generic term)
+pointel|1
+(noun)|graver|graving tool|pointrel|hand tool (generic term)
+pointer|4
+(noun)|arrow|mark (generic term)
+(noun)|indicator (generic term)
+(noun)|cursor|indicator (generic term)
+(noun)|Spanish pointer|sporting dog (generic term)|gun dog (generic term)
+pointilism|1
+(noun)|genre (generic term)
+pointilist|2
+(adj)|pointillistic|patterned (similar term)
+(noun)|painter (generic term)
+pointillism|1
+(noun)|school (generic term)|artistic movement (generic term)|art movement (generic term)
+pointillistic|1
+(adj)|pointilist|patterned (similar term)
+pointing out|1
+(noun)|indication (generic term)|indicant (generic term)
+pointing trowel|1
+(noun)|trowel (generic term)
+pointless|3
+(adj)|unpointed|blunt (similar term)|pointed (antonym)
+(adj)|otiose|superfluous|wasted|worthless (similar term)
+(adj)|purposeless|senseless|meaningless (similar term)|nonmeaningful (similar term)
+pointlessness|1
+(noun)|inanity|senselessness|mindlessness|vacuity|meaninglessness (generic term)
+pointrel|1
+(noun)|graver|graving tool|pointel|hand tool (generic term)
+pointsman|1
+(noun)|traffic cop (generic term)
+pointy-toed|1
+(adj)|pointed-toe|toed (similar term)|toe (similar term)
+poise|7
+(noun)|unit of viscosity (generic term)
+(noun)|equilibrium (generic term)
+(noun)|aplomb|assuredness|cool|sang-froid|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(verb)|hover (generic term)
+(verb)|brace|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|balance|hold (generic term)|carry (generic term)|bear (generic term)
+poised|2
+(adj)|balanced (similar term)
+(adj)|collected|equanimous|self-collected|self-contained|self-possessed|composed (similar term)
+poison|6
+(noun)|toxicant|poisonous substance|substance (generic term)|matter (generic term)
+(noun)|destructiveness (generic term)
+(verb)|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|kill (generic term)
+(verb)|envenom|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|drug (generic term)|dose (generic term)
+poison-berry|1
+(noun)|black nightshade|common nightshade|poisonberry|Solanum nigrum|nightshade (generic term)
+poison arrow plant|1
+(noun)|winter sweet|Acocanthera oblongifolia|Acocanthera spectabilis|shrub (generic term)|bush (generic term)
+poison ash|1
+(noun)|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant (generic term)
+poison bush|2
+(noun)|poison pea|gastrolobium|shrub (generic term)|bush (generic term)
+(noun)|darling pea|subshrub (generic term)|suffrutex (generic term)
+poison camas|1
+(noun)|Zigadenus nuttalli|death camas (generic term)|zigadene (generic term)
+poison dogwood|1
+(noun)|poison ash|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant (generic term)
+poison gas|1
+(noun)|gas (generic term)|chemical weapon (generic term)
+poison hemlock|1
+(noun)|hemlock|poison parsley|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+poison ivy|2
+(noun)|Rhus dermatitis (generic term)
+(noun)|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+poison mercury|1
+(noun)|poison ivy|markweed|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+poison milkweed|1
+(noun)|horsetail milkweed|Asclepias subverticillata|milkweed (generic term)|silkweed (generic term)
+poison oak|2
+(noun)|Rhus dermatitis (generic term)
+(noun)|poison ivy|markweed|poison mercury|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+poison parsley|1
+(noun)|hemlock|poison hemlock|California fern|Nebraska fern|winter fern|Conium maculatum|poisonous plant (generic term)
+poison pea|1
+(noun)|poison bush|gastrolobium|shrub (generic term)|bush (generic term)
+poison pill|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+poison sumac|2
+(noun)|Rhus dermatitis (generic term)
+(noun)|poison ash|poison dogwood|Toxicodendron vernix|Rhus vernix|poisonous plant (generic term)
+poisonberry|1
+(noun)|black nightshade|common nightshade|poison-berry|Solanum nigrum|nightshade (generic term)
+poisoner|1
+(noun)|killer (generic term)|slayer (generic term)
+poisoning|2
+(noun)|toxic condition|intoxication|physiological state (generic term)|physiological condition (generic term)
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+poisonous|3
+(adj)|toxicant|toxic (similar term)
+(adj)|inedible (similar term)|uneatable (similar term)
+(adj)|venomous|vicious|malicious (similar term)
+poisonous nightshade|1
+(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+poisonous parasol|1
+(noun)|Lepiota morgani|lepiota (generic term)
+poisonous plant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+poisonous substance|1
+(noun)|poison|toxicant|substance (generic term)|matter (generic term)
+poisonously|1
+(adv)|venomously
+poisson distribution|1
+(noun)|Poisson distribution|distribution (generic term)|statistical distribution (generic term)
+poitier|1
+(noun)|Poitier|Sidney Poitier|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+poitiers|1
+(noun)|Poitiers|battle of Poitiers|pitched battle (generic term)
+poitou|1
+(noun)|Poitou-Charentes|Poitou|French region (generic term)
+poitou-charentes|1
+(noun)|Poitou-Charentes|Poitou|French region (generic term)
+poitrine d'agneau|1
+(noun)|breast of lamb|cut of lamb (generic term)
+poivrade|1
+(noun)|pepper sauce|Poivrade|sauce (generic term)
+poke|10
+(noun)|pigeon berry|garget|scoke|Phytolacca americana|pokeweed (generic term)
+(noun)|dawdler|drone|laggard|lagger|trailer|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|sack|paper bag|carrier bag|bag (generic term)
+(noun)|jab|jabbing|poking|thrust|thrusting|gesture (generic term)
+(noun)|punch|clout|lick|biff|blow (generic term)
+(verb)|jab|prod|stab|dig|thrust (generic term)
+(verb)|intrude|horn in|pry|nose|search (generic term)|look (generic term)|nose out (related term)
+(verb)|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+(verb)|thump|pound|hit (generic term)
+(verb)|pierce (generic term)
+poke at|1
+(verb)|nudge|prod|push (generic term)|force (generic term)
+poke bonnet|1
+(noun)|bonnet|hat (generic term)|chapeau (generic term)|lid (generic term)
+poke check|1
+(noun)|check (generic term)
+poke fun|1
+(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|rib|make fun|mock (generic term)|bemock (generic term)
+poke into|2
+(verb)|penetrate (generic term)|perforate (generic term)
+(verb)|probe|dig into|penetrate (generic term)|perforate (generic term)
+poke milkweed|1
+(noun)|Asclepias exaltata|milkweed (generic term)|silkweed (generic term)
+poke out|1
+(verb)|extend|reach out|be (generic term)
+poker|2
+(noun)|stove poker|fire hook|salamander|fire iron (generic term)
+(noun)|poker game|card game (generic term)|cards (generic term)
+poker-faced|1
+(adj)|deadpan|expressionless|impassive|unexpressive|uncommunicative (similar term)|incommunicative (similar term)
+poker alumroot|1
+(noun)|poker heuchera|Heuchera cylindrica|alumroot (generic term)|alumbloom (generic term)
+poker chip|1
+(noun)|chip|counter (generic term)
+poker face|1
+(noun)|countenance (generic term)|visage (generic term)
+poker game|1
+(noun)|poker|card game (generic term)|cards (generic term)
+poker hand|1
+(noun)|hand (generic term)|deal (generic term)
+poker heuchera|1
+(noun)|poker alumroot|Heuchera cylindrica|alumroot (generic term)|alumbloom (generic term)
+poker plant|1
+(noun)|Kniphofia uvaria|kniphofia (generic term)|tritoma (generic term)|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)
+pokeweed|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+pokeweed family|1
+(noun)|Phytolaccaceae|family Phytolaccaceae|caryophylloid dicot family (generic term)
+pokey|3
+(adj)|dilatory|laggard|poky|slow (similar term)
+(adj)|jerkwater|one-horse|poky|provincial (similar term)
+(noun)|jail|jailhouse|gaol|clink|slammer|poky|correctional institution (generic term)
+poking|1
+(noun)|jab|jabbing|poke|thrust|thrusting|gesture (generic term)
+pokomo|1
+(noun)|Pokomo|Bantu (generic term)|Bantoid language (generic term)
+poky|3
+(adj)|dilatory|laggard|pokey|slow (similar term)
+(adj)|jerkwater|one-horse|pokey|provincial (similar term)
+(noun)|jail|jailhouse|gaol|clink|slammer|pokey|correctional institution (generic term)
+pol|1
+(noun)|politician|politico|political leader|leader (generic term)
+polack|1
+(noun)|Pole (generic term)
+poland|1
+(noun)|Poland|Republic of Poland|Polska|European country (generic term)|European nation (generic term)
+polanisia|1
+(noun)|Polanisia|genus Polanisia|dilleniid dicot genus (generic term)
+polanisia dodecandra|1
+(noun)|clammyweed|Polanisia graveolens|Polanisia dodecandra|herb (generic term)|herbaceous plant (generic term)
+polanisia graveolens|1
+(noun)|clammyweed|Polanisia graveolens|Polanisia dodecandra|herb (generic term)|herbaceous plant (generic term)
+polar|6
+(adj)|charged (similar term)
+(adj)|diametric|diametrical|opposite|different (similar term)
+(adj)|geographic point|geographical point (related term)
+(adj)|circumpolar (similar term)|north-polar (similar term)|Arctic (similar term)|south-polar (similar term)|Antarctic (similar term)|equatorial (antonym)
+(adj)|arctic|frigid|gelid|glacial|icy|cold (similar term)
+(adj)|pivotal|crucial (similar term)|important (similar term)
+polar bear|1
+(noun)|ice bear|Ursus Maritimus|Thalarctos maritimus|bear (generic term)
+polar body|1
+(noun)|cell (generic term)
+polar circle|1
+(noun)|latitude (generic term)|line of latitude (generic term)|parallel of latitude (generic term)|parallel (generic term)
+polar coordinate|1
+(noun)|coordinate (generic term)|co-ordinate (generic term)
+polar front|1
+(noun)|cold front|front (generic term)
+polar glacier|1
+(noun)|continental glacier (generic term)
+polar hare|1
+(noun)|Arctic hare|Lepus arcticus|hare (generic term)
+polar opposition|1
+(noun)|gradable opposition (generic term)
+polar region|1
+(noun)|Frigid Zone|polar zone|climatic zone (generic term)
+polar star|1
+(noun)|Polaris|North Star|pole star|polestar|variable star (generic term)|variable (generic term)|lodestar (generic term)|loadstar (generic term)
+polar zone|1
+(noun)|Frigid Zone|polar region|climatic zone (generic term)
+polarimeter|1
+(noun)|polariscope|optical device (generic term)
+polaris|1
+(noun)|Polaris|North Star|pole star|polar star|polestar|variable star (generic term)|variable (generic term)|lodestar (generic term)|loadstar (generic term)
+polarisation|2
+(noun)|polarization|condition (generic term)|status (generic term)
+(noun)|polarization|optical phenomenon (generic term)
+polariscope|1
+(noun)|polarimeter|optical device (generic term)
+polarise|3
+(verb)|polarize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|polarize|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|polarize|separate (generic term)|divide (generic term)|part (generic term)
+polarity|2
+(noun)|mutual opposition|opposition (generic term)|oppositeness (generic term)
+(noun)|sign|opposition (generic term)|oppositeness (generic term)
+polarization|2
+(noun)|polarisation|optical phenomenon (generic term)
+(noun)|polarisation|condition (generic term)|status (generic term)
+polarize|3
+(verb)|polarise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|polarise|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|polarise|separate (generic term)|divide (generic term)|part (generic term)
+polarographic|1
+(adj)|chemical analysis|qualitative analysis (related term)
+polarography|1
+(noun)|chemical analysis (generic term)|qualitative analysis (generic term)
+polaroid|1
+(noun)|Polaroid|film (generic term)|plastic film (generic term)
+polaroid camera|1
+(noun)|Polaroid camera|Polaroid Land camera|camera (generic term)|photographic camera (generic term)
+polaroid land camera|1
+(noun)|Polaroid camera|Polaroid Land camera|camera (generic term)|photographic camera (generic term)
+polder|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+pole|13
+(noun)|rod (generic term)
+(noun)|Pole|European (generic term)
+(noun)|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|perch|rod|linear unit (generic term)
+(noun)|perch|rod|area unit (generic term)|square measure (generic term)
+(noun)|celestial pole|celestial point (generic term)
+(noun)|geographic point (generic term)|geographical point (generic term)
+(noun)|terminal|contact (generic term)|tangency (generic term)
+(noun)|sports implement (generic term)
+(noun)|magnetic pole|end (generic term)
+(verb)|punt|propel (generic term)|impel (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|deoxidize (generic term)|deoxidise (generic term)|reduce (generic term)
+pole-handled|1
+(adj)|long-handled|long (similar term)
+pole bean|1
+(noun)|bean (generic term)|bean plant (generic term)
+pole horse|2
+(noun)|trotting horse (generic term)|trotter (generic term)
+(noun)|poler|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+pole jump|1
+(noun)|pole vault|pole vaulting|pole jumping|field event (generic term)
+pole jumper|1
+(noun)|vaulter|pole vaulter|athlete (generic term)|jock (generic term)
+pole jumping|1
+(noun)|pole vault|pole vaulting|pole jump|field event (generic term)
+pole position|1
+(noun)|position (generic term)|place (generic term)
+pole star|1
+(noun)|Polaris|North Star|polar star|polestar|variable star (generic term)|variable (generic term)|lodestar (generic term)|loadstar (generic term)
+pole vault|1
+(noun)|pole vaulting|pole jump|pole jumping|field event (generic term)
+pole vaulter|1
+(noun)|vaulter|pole jumper|athlete (generic term)|jock (generic term)
+pole vaulting|1
+(noun)|pole vault|pole jump|pole jumping|field event (generic term)
+poleax|3
+(noun)|poleaxe|ax (generic term)|axe (generic term)
+(noun)|poleaxe|battle-ax (generic term)|battle-axe (generic term)
+(verb)|poleaxe|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+poleaxe|3
+(noun)|poleax|ax (generic term)|axe (generic term)
+(noun)|poleax|battle-ax (generic term)|battle-axe (generic term)
+(verb)|poleax|fell (generic term)|drop (generic term)|strike down (generic term)|cut down (generic term)
+polecat|2
+(noun)|skunk|wood pussy|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+(noun)|fitch|foulmart|foumart|Mustela putorius|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+polecat weed|1
+(noun)|skunk cabbage|foetid pothos|Symplocarpus foetidus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+polemic|3
+(adj)|polemical|controversial (similar term)
+(noun)|polemicist|polemist|writer (generic term)|author (generic term)
+(noun)|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+polemical|1
+(adj)|polemic|controversial (similar term)
+polemically|1
+(adv)|controversially|uncontroversially (antonym)
+polemicise|1
+(verb)|polemize|polemise|polemicize|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+polemicist|1
+(noun)|polemist|polemic|writer (generic term)|author (generic term)
+polemicize|1
+(verb)|polemize|polemise|polemicise|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+polemics|1
+(noun)|Christian theology (generic term)
+polemise|1
+(verb)|polemize|polemicize|polemicise|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+polemist|1
+(noun)|polemicist|polemic|writer (generic term)|author (generic term)
+polemize|1
+(verb)|polemise|polemicize|polemicise|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+polemoniaceae|1
+(noun)|Polemoniaceae|family Polemoniaceae|phlox family|asterid dicot family (generic term)
+polemoniaceous|1
+(adj)|asterid dicot family (related term)
+polemoniales|1
+(noun)|Polemoniales|order Polemoniales|plant order (generic term)
+polemonium|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+polemonium boreale|1
+(noun)|northern Jacob's ladder|Polemonium boreale|polemonium (generic term)
+polemonium caeruleum|1
+(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+polemonium reptans|1
+(noun)|Greek valerian|Polemonium reptans|polemonium (generic term)
+polemonium van-bruntiae|1
+(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+polemonium viscosum|1
+(noun)|skunkweed|skunk-weed|Polemonium viscosum|polemonium (generic term)
+polenta|1
+(noun)|mush (generic term)|cornmeal mush (generic term)
+poler|1
+(noun)|pole horse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+polestar|1
+(noun)|Polaris|North Star|pole star|polar star|variable star (generic term)|variable (generic term)|lodestar (generic term)|loadstar (generic term)
+polianthes|1
+(noun)|Polianthes|genus Polianthes|liliid monocot genus (generic term)
+polianthes tuberosa|1
+(noun)|tuberose|Polianthes tuberosa|flower (generic term)
+police|2
+(noun)|police force|constabulary|law|force (generic term)|personnel (generic term)|law enforcement agency (generic term)
+(verb)|patrol|guard (generic term)
+police academy|1
+(noun)|academy (generic term)
+police action|1
+(noun)|military action (generic term)|action (generic term)
+police blotter|1
+(noun)|blotter|day book|rap sheet|charge sheet|written record (generic term)|written account (generic term)
+police boat|1
+(noun)|boat (generic term)
+police captain|1
+(noun)|captain|police chief|policeman (generic term)|police officer (generic term)|officer (generic term)
+police car|1
+(noun)|cruiser|police cruiser|patrol car|prowl car|squad car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+police chief|1
+(noun)|captain|police captain|policeman (generic term)|police officer (generic term)|officer (generic term)
+police commissioner|1
+(noun)|commissioner (generic term)
+police constable|1
+(noun)|constable|policeman (generic term)|police officer (generic term)|officer (generic term)
+police court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+police cruiser|1
+(noun)|cruiser|patrol car|police car|prowl car|squad car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+police department|1
+(noun)|local department (generic term)|department of local government (generic term)
+police detective|1
+(noun)|detective|investigator|tec|policeman (generic term)|police officer (generic term)|officer (generic term)
+police dog|1
+(noun)|working dog (generic term)
+police force|1
+(noun)|police|constabulary|law|force (generic term)|personnel (generic term)|law enforcement agency (generic term)
+police headquarters|1
+(noun)|police station|station house|police office|station (generic term)
+police investigation|1
+(noun)|police work|investigation (generic term)|investigating (generic term)
+police lieutenant|1
+(noun)|lieutenant|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+police matron|1
+(noun)|policewoman|policeman (generic term)|police officer (generic term)|officer (generic term)
+police office|1
+(noun)|police station|police headquarters|station house|station (generic term)
+police officer|1
+(noun)|policeman|officer|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+police precinct|1
+(noun)|precinct (generic term)
+police sergeant|1
+(noun)|sergeant|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+police squad|1
+(noun)|team (generic term)|squad (generic term)
+police state|1
+(noun)|dictatorship (generic term)|absolutism (generic term)|authoritarianism (generic term)|Caesarism (generic term)|despotism (generic term)|monocracy (generic term)|one-man rule (generic term)|shogunate (generic term)|Stalinism (generic term)|totalitarianism (generic term)|tyranny (generic term)
+police station|1
+(noun)|police headquarters|station house|police office|station (generic term)
+police van|1
+(noun)|police wagon|paddy wagon|patrol wagon|wagon|black Maria|van (generic term)
+police wagon|1
+(noun)|police van|paddy wagon|patrol wagon|wagon|black Maria|van (generic term)
+police work|1
+(noun)|police investigation|investigation (generic term)|investigating (generic term)
+policeman|1
+(noun)|police officer|officer|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+policeman bird|1
+(noun)|black-necked stork|jabiru|Xenorhyncus asiaticus|stork (generic term)
+policewoman|1
+(noun)|police matron|policeman (generic term)|police officer (generic term)|officer (generic term)
+policy|3
+(noun)|argumentation (generic term)|logical argument (generic term)|line of reasoning (generic term)|line (generic term)
+(noun)|plan of action (generic term)
+(noun)|insurance policy|insurance|contract (generic term)
+policy-making|1
+(adj)|political (similar term)
+policy change|1
+(noun)|about-face|volte-face|reversal|change (generic term)
+policy maker|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+policyholder|1
+(noun)|customer (generic term)|client (generic term)
+polio|1
+(noun)|poliomyelitis|infantile paralysis|acute anterior poliomyelitis|infectious disease (generic term)
+poliomyelitis|1
+(noun)|polio|infantile paralysis|acute anterior poliomyelitis|infectious disease (generic term)
+polioptila|1
+(noun)|Polioptila|genus Polioptila|bird genus (generic term)
+poliosis|1
+(noun)|depigmentation (generic term)
+poliovirus|1
+(noun)|enterovirus (generic term)
+poliovirus vaccine|1
+(noun)|vaccine (generic term)|vaccinum (generic term)
+polish|8
+(adj)|Polish|European country|European nation (related term)
+(noun)|gloss|glossiness|burnish|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)|smoothness (generic term)
+(noun)|refinement|culture|cultivation|finish|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+(noun)|formulation (generic term)|preparation (generic term)
+(noun)|Polish|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+(verb)|smooth|smoothen|shine|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|refine|fine-tune|down|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|round|round off|polish up|brush up|perfect (generic term)|hone (generic term)
+polish monetary unit|1
+(noun)|Polish monetary unit|monetary unit (generic term)
+polish notation|1
+(noun)|prefix notation|Lukasiewicz notation|Polish notation|parenthesis-free notation (generic term)
+polish off|3
+(verb)|get through|wrap up|finish off|mop up|clear up|finish up|complete (generic term)|finish (generic term)
+(verb)|murder|slay|hit|dispatch|bump off|off|remove|kill (generic term)
+(verb)|eat up|finish|eat (generic term)
+polish up|1
+(verb)|polish|round|round off|brush up|perfect (generic term)|hone (generic term)
+polished|4
+(adj)|bright (similar term)|burnished (similar term)|lustrous (similar term)|shining (similar term)|shiny (similar term)|finished (similar term)|bright (related term)|unpolished (antonym)
+(adj)|refined|svelte|urbane|sophisticated (similar term)
+(adj)|milled|processed (similar term)
+(adj)|dressed|finished (similar term)
+polished rice|1
+(noun)|white rice|rice (generic term)
+polisher|1
+(noun)|buffer|power tool (generic term)
+polishing|1
+(noun)|shining|work (generic term)
+polistes|1
+(noun)|Polistes|genus Polistes|arthropod genus (generic term)
+polistes annularis|1
+(noun)|Polistes annularis|paper wasp (generic term)
+politburo|1
+(noun)|committee (generic term)|commission (generic term)
+polite|3
+(adj)|mannerly (similar term)|well-mannered (similar term)|courteous (similar term)|gracious (similar term)|nice (similar term)|impolite (antonym)
+(adj)|civilized|civilised|cultivated|cultured|genteel|refined (similar term)
+(adj)|civil|uncivil (antonym)
+politely|1
+(adv)|courteously|discourteously (antonym)|impolitely (antonym)
+politeness|2
+(noun)|niceness|courtesy (generic term)|good manners (generic term)|impoliteness (antonym)
+(noun)|civility|formality (generic term)
+politesse|1
+(noun)|chivalry|gallantry|courtesy (generic term)|good manners (generic term)
+politic|2
+(adj)|expedient (similar term)|sagacious (similar term)|diplomatic (related term)|diplomatical (related term)|impolitic (antonym)
+(adj)|smooth|suave|bland|diplomatic (similar term)|diplomatical (similar term)
+political|3
+(adj)|governmental (similar term)|policy-making (similar term)|semipolitical (similar term)|nonpolitical (antonym)
+(adj)|opinion|sentiment|persuasion|view|thought (related term)
+(adj)|profession (related term)
+political action committee|1
+(noun)|PAC|committee (generic term)|commission (generic term)
+political arena|1
+(noun)|political sphere|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+political boss|1
+(noun)|party boss|boss|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+political campaign|2
+(noun)|campaign|run|race (generic term)
+(noun)|campaigning|candidacy|candidature|electioneering|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+political commissar|1
+(noun)|commissar|official (generic term)|functionary (generic term)
+political contribution|1
+(noun)|political donation|contribution (generic term)|donation (generic term)
+political correctitude|1
+(noun)|political correctness|correctness (generic term)|political incorrectness (antonym)
+political correctness|1
+(noun)|political correctitude|correctness (generic term)|political incorrectness (antonym)
+political detainee|1
+(noun)|detainee|prisoner (generic term)|captive (generic term)
+political dissident|1
+(noun)|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)
+political donation|1
+(noun)|political contribution|contribution (generic term)|donation (generic term)
+political economy|1
+(noun)|economics|economic science|social science (generic term)
+political entity|1
+(noun)|political unit|unit (generic term)|social unit (generic term)
+political hack|1
+(noun)|machine politician|ward-heeler|hack|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+political incorrectness|1
+(noun)|incorrectness (generic term)|political correctness (antonym)
+political leader|1
+(noun)|politician|politico|pol|leader (generic term)
+political liberty|1
+(noun)|civil liberty|freedom (generic term)
+political machine|1
+(noun)|machine|organization (generic term)|organisation (generic term)
+political movement|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+political orientation|1
+(noun)|ideology|political theory|orientation (generic term)
+political party|1
+(noun)|party|organization (generic term)|organisation (generic term)
+political platform|1
+(noun)|platform|political program|program|document (generic term)|written document (generic term)|papers (generic term)
+political prisoner|1
+(noun)|prisoner (generic term)|captive (generic term)
+political program|1
+(noun)|platform|political platform|program|document (generic term)|written document (generic term)|papers (generic term)
+political relation|1
+(noun)|politics|social relation (generic term)
+political science|1
+(noun)|politics|government|social science (generic term)
+political scientist|1
+(noun)|social scientist (generic term)
+political sphere|1
+(noun)|political arena|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+political sympathies|1
+(noun)|politics|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+political system|1
+(noun)|form of government|social group (generic term)
+political theory|1
+(noun)|political orientation|ideology|orientation (generic term)
+political unit|1
+(noun)|political entity|unit (generic term)|social unit (generic term)
+politically correct|1
+(adj)|correctness (related term)
+politically incorrect|1
+(adj)|incorrectness (related term)
+politician|3
+(noun)|leader (generic term)
+(noun)|politico|pol|political leader|leader (generic term)
+(noun)|schemer (generic term)|plotter (generic term)
+politicise|1
+(verb)|politicize|change (generic term)|alter (generic term)|modify (generic term)
+politicize|1
+(verb)|politicise|change (generic term)|alter (generic term)|modify (generic term)
+politick|1
+(verb)|prosecute (generic term)|engage (generic term)|pursue (generic term)
+politico|1
+(noun)|politician|pol|political leader|leader (generic term)
+politics|4
+(noun)|political relation|social relation (generic term)
+(noun)|political science|government|social science (generic term)
+(noun)|profession (generic term)
+(noun)|political sympathies|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+polity|3
+(noun)|civil order|order (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|administration (generic term)|disposal (generic term)
+polk|1
+(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+polka|3
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|folk dancing (generic term)|folk dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+polka dot|1
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+poll|9
+(noun)|opinion poll|public opinion poll|canvass|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|pate|crown|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(noun)|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+(noun)|poll parrot|parrot (generic term)
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+(verb)|canvass|canvas|survey (generic term)
+(verb)|vote (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|pollard|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+poll parrot|1
+(noun)|poll|parrot (generic term)
+poll taker|1
+(noun)|pollster|headcounter|canvasser|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+poll tax|1
+(noun)|capitation (generic term)
+pollachius|1
+(noun)|Pollachius|genus Pollachius|fish genus (generic term)
+pollachius pollachius|1
+(noun)|pollack|pollock|Pollachius pollachius|gadoid (generic term)|gadoid fish (generic term)
+pollack|3
+(noun)|Pollack|Sydney Pollack|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|pollock|saltwater fish (generic term)
+(noun)|pollock|Pollachius pollachius|gadoid (generic term)|gadoid fish (generic term)
+pollard|3
+(noun)|tree (generic term)
+(noun)|ruminant (generic term)
+(verb)|poll|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+pollen|1
+(noun)|spore (generic term)
+pollen count|1
+(noun)|count (generic term)
+pollen tube|1
+(noun)|plant part (generic term)|plant structure (generic term)
+pollenate|1
+(verb)|pollinate|cross-pollinate|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+pollenation|1
+(noun)|pollination|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)
+pollex|1
+(noun)|thumb|finger (generic term)
+pollinate|1
+(verb)|pollenate|cross-pollinate|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+pollination|1
+(noun)|pollenation|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)
+pollinator|1
+(noun)|insect (generic term)
+polling booth|1
+(noun)|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+polling day|1
+(noun)|election day|day (generic term)
+polling place|1
+(noun)|polling station|topographic point (generic term)|place (generic term)|spot (generic term)
+polling station|1
+(noun)|polling place|topographic point (generic term)|place (generic term)|spot (generic term)
+pollinium|1
+(noun)|pollen (generic term)
+pollinosis|1
+(noun)|hay fever|allergic rhinitis (generic term)
+polliwog|1
+(noun)|tadpole|pollywog|larva (generic term)
+pollock|3
+(noun)|Pollock|Jackson Pollock|painter (generic term)
+(noun)|pollack|saltwater fish (generic term)
+(noun)|pollack|Pollachius pollachius|gadoid (generic term)|gadoid fish (generic term)
+polls|1
+(noun)|position (generic term)|place (generic term)
+pollster|1
+(noun)|poll taker|headcounter|canvasser|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+pollucite|1
+(noun)|mineral (generic term)
+pollutant|1
+(noun)|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+pollute|1
+(verb)|foul|contaminate|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+polluted|1
+(adj)|contaminated|impure (similar term)
+polluter|1
+(noun)|defiler|bad person (generic term)
+pollution|3
+(noun)|environmental condition (generic term)|impurity (generic term)|impureness (generic term)
+(noun)|befoulment|defilement|dirtiness (generic term)|uncleanness (generic term)
+(noun)|contamination|soiling (generic term)|soilure (generic term)|dirtying (generic term)|decontamination (antonym)
+pollux|1
+(noun)|Pollux|star (generic term)
+polly fish|1
+(noun)|parrotfish|pollyfish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pollyannaish|1
+(adj)|cheerful|upbeat|optimistic (similar term)
+pollyfish|1
+(noun)|parrotfish|polly fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pollywog|1
+(noun)|tadpole|polliwog|larva (generic term)
+polo|2
+(noun)|Polo|Marco Polo|traveler (generic term)|traveller (generic term)
+(noun)|field game (generic term)
+polo-neck|2
+(adj)|necked (similar term)
+(noun)|turtleneck|sweater (generic term)|jersey (generic term)|T-shirt (generic term)|tee shirt (generic term)
+polo-neck collar|1
+(noun)|turtleneck collar|collar (generic term)|neckband (generic term)
+polo ball|1
+(noun)|ball (generic term)
+polo mallet|1
+(noun)|polo stick|mallet (generic term)|stick (generic term)
+polo pony|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+polo shirt|1
+(noun)|sport shirt|shirt (generic term)
+polo stick|1
+(noun)|polo mallet|mallet (generic term)|stick (generic term)
+polonaise|1
+(noun)|dress (generic term)|frock (generic term)
+polonium|1
+(noun)|Po|atomic number 84|metallic element (generic term)|metal (generic term)
+polony|1
+(noun)|bologna (generic term)|Bologna sausage (generic term)
+polska|1
+(noun)|Poland|Republic of Poland|Polska|European country (generic term)|European nation (generic term)
+poltergeist|1
+(noun)|ghost (generic term)
+poltroon|2
+(adj)|cowardly (similar term)|fearful (similar term)
+(noun)|craven|recreant|coward (generic term)
+poltroonery|1
+(noun)|pusillanimity (generic term)|pusillanimousness (generic term)
+polyamide|1
+(noun)|polymeric amide|polymer (generic term)
+polyandrist|1
+(noun)|polygamist (generic term)
+polyandrous|1
+(adj)|polygamous (similar term)
+polyandry|1
+(noun)|polygamy (generic term)
+polyangiaceae|1
+(noun)|Polyangiaceae|family Polyangiaceae|Myxobacteriaceae|family Myxobacteriaceae|bacteria family (generic term)
+polyangium|1
+(noun)|Polyangium|genus Polyangium|bacteria genus (generic term)
+polyanthus|1
+(noun)|Primula polyantha|primrose (generic term)|primula (generic term)
+polyarteritis|1
+(noun)|arteritis (generic term)
+polyarteritis nodosa|1
+(noun)|periarteritis nodosa|disease (generic term)
+polyatomic|1
+(adj)|substance|matter (related term)
+polyborus|1
+(noun)|Polyborus|genus Polyborus|bird genus (generic term)
+polyborus cheriway audubonii|1
+(noun)|Audubon's caracara|Polyborus cheriway audubonii|caracara (generic term)
+polyborus plancus|1
+(noun)|carancha|Polyborus plancus|caracara (generic term)
+polybotria|1
+(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus (generic term)
+polybotria cervina|1
+(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern (generic term)
+polybotrya|1
+(noun)|Polybotrya|genus Polybotrya|Polybotria|genus Polybotria|fern genus (generic term)
+polybotrya cervina|1
+(noun)|hart's-tongue|hart's-tongue fern|Olfersia cervina|Polybotrya cervina|Polybotria cervina|fern (generic term)
+polybutene|1
+(noun)|polybutylene|butylene (generic term)|butene (generic term)
+polybutylene|1
+(noun)|polybutene|butylene (generic term)|butene (generic term)
+polycarp|1
+(noun)|Polycarp|Saint Polycarp|St. Polycarp|martyr (generic term)
+polychaeta|1
+(noun)|Polychaeta|class Polychaeta|class (generic term)
+polychaete|1
+(noun)|polychete|polychaete worm|polychete worm|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+polychaete worm|1
+(noun)|polychaete|polychete|polychete worm|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+polychete|1
+(noun)|polychaete|polychaete worm|polychete worm|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+polychete worm|1
+(noun)|polychaete|polychete|polychaete worm|annelid (generic term)|annelid worm (generic term)|segmented worm (generic term)
+polychromatic|2
+(adj)|monochromatic (antonym)
+(adj)|polychrome|polychromic|colored (similar term)|coloured (similar term)|colorful (similar term)
+polychrome|3
+(adj)|polychromatic|polychromic|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|work (generic term)|piece of work (generic term)
+(verb)|polychromize|polychromise|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+polychromic|1
+(adj)|polychromatic|polychrome|colored (similar term)|coloured (similar term)|colorful (similar term)
+polychromise|1
+(verb)|polychrome|polychromize|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+polychromize|1
+(verb)|polychrome|polychromise|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+polycillin|1
+(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin (generic term)
+polycirrus|1
+(noun)|Polycirrus|genus Polycirrus|worm genus (generic term)
+polyconic projection|1
+(noun)|conic projection (generic term)|conical projection (generic term)
+polycrystalline|1
+(adj)|crystalline (similar term)
+polycystic kidney disease|1
+(noun)|PKD|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+polycythemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)
+polydactyl|1
+(adj)|polydactylous|extremity|appendage|member (related term)
+polydactylous|1
+(adj)|polydactyl|extremity|appendage|member (related term)
+polydactylus|1
+(noun)|Polydactylus|genus Polydactylus|fish genus (generic term)
+polydactylus virginicus|1
+(noun)|barbu|Polydactylus virginicus|threadfin (generic term)
+polydactyly|1
+(noun)|hyperdactyly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+polydipsia|1
+(noun)|thirst (generic term)|thirstiness (generic term)
+polyelectrolyte|1
+(noun)|electrolyte (generic term)
+polyergus|1
+(noun)|Polyergus|genus Polyergus|arthropod genus (generic term)
+polyergus rufescens|1
+(noun)|Amazon ant|Polyergus rufescens|slave-making ant (generic term)|slave-maker (generic term)
+polyester|3
+(noun)|synthetic resin (generic term)
+(noun)|ester (generic term)|plastic (generic term)
+(noun)|polyester fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+polyester fabric|1
+(noun)|polyester|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+polyester fiber|1
+(noun)|polyester (generic term)
+polyestrous|1
+(adj)|polyoestrous|estrous (similar term)
+polyethylene|1
+(noun)|polythene|synthetic resin (generic term)
+polyfoam|1
+(noun)|polyurethane foam|polyurethane (generic term)|ployurethan (generic term)
+polygala|1
+(noun)|Polygala|genus Polygala|rosid dicot genus (generic term)
+polygala alba|1
+(noun)|senega|Polygala alba|milkwort (generic term)
+polygala lutea|1
+(noun)|orange milkwort|yellow milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort (generic term)
+polygala paucifolia|1
+(noun)|flowering wintergreen|gaywings|bird-on-the-wing|fringed polygala|Polygala paucifolia|milkwort (generic term)
+polygala senega|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort (generic term)
+polygala vulgaris|1
+(noun)|common milkwort|gand flower|Polygala vulgaris|milkwort (generic term)
+polygalaceae|1
+(noun)|Polygalaceae|family Polygalaceae|milkwort family|rosid dicot family (generic term)
+polygamist|1
+(noun)|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)
+polygamous|2
+(adj)|bigamous (similar term)|polyandrous (similar term)|polygynous (similar term)|monogamous (antonym)
+(adj)|heteroicous|polyoicous|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+polygamy|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+polygene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+polygenic|1
+(adj)|inheritable (similar term)|heritable (similar term)
+polygenic disease|1
+(noun)|polygenic disorder|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+polygenic disorder|1
+(noun)|polygenic disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+polyglot|2
+(adj)|multilingual (similar term)
+(noun)|linguist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+polygon|1
+(noun)|polygonal shape|plane figure (generic term)|two-dimensional figure (generic term)
+polygonaceae|1
+(noun)|Polygonaceae|family Polygonaceae|buckwheat family|dicot family (generic term)|magnoliopsid family (generic term)
+polygonal|1
+(adj)|plane figure|two-dimensional figure (related term)
+polygonal shape|1
+(noun)|polygon|plane figure (generic term)|two-dimensional figure (generic term)
+polygonales|1
+(noun)|Polygonales|order Polygonales|plant order (generic term)
+polygonatum|1
+(noun)|Polygonatum|genus Polygonatum|liliid monocot genus (generic term)
+polygonatum biflorum|1
+(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal (generic term)
+polygonatum commutatum|1
+(noun)|great Solomon's-seal|Polygonatum biflorum|Polygonatum commutatum|Solomon's-seal (generic term)
+polygonia|1
+(noun)|Polygonia|genus Polygonia|arthropod genus (generic term)
+polygonia comma|1
+(noun)|comma|comma butterfly|Polygonia comma|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+polygonum|1
+(noun)|Polygonum|genus Polygonum|dicot genus (generic term)|magnoliopsid genus (generic term)
+polygonum aubertii|1
+(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine (generic term)
+polygonum fagopyrum|1
+(noun)|buckwheat|Polygonum fagopyrum|Fagopyrum esculentum|herb (generic term)|herbaceous plant (generic term)
+polygonum orientale|1
+(noun)|prince's-feather|princess feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub (generic term)|suffrutex (generic term)
+polygraph|1
+(noun)|medical instrument (generic term)
+polygynist|1
+(noun)|polygamist (generic term)
+polygynous|1
+(adj)|polygamous (similar term)
+polygyny|1
+(noun)|polygamy (generic term)
+polyhedral|1
+(adj)|solid (related term)
+polyhedral angle|1
+(noun)|angle (generic term)
+polyhedron|1
+(noun)|solid (generic term)
+polyhidrosis|1
+(noun)|hyperhidrosis|hyperidrosis|perspiration (generic term)|sweating (generic term)|diaphoresis (generic term)|sudation (generic term)|hidrosis (generic term)
+polyhymnia|1
+(noun)|Polyhymnia|Muse (generic term)
+polymastigina|1
+(noun)|Polymastigina|order Polymastigina|animal order (generic term)
+polymastigote|1
+(noun)|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+polymath|1
+(noun)|initiate (generic term)|learned person (generic term)|pundit (generic term)|savant (generic term)
+polymer|1
+(noun)|compound (generic term)|chemical compound (generic term)
+polymerase|1
+(noun)|enzyme (generic term)
+polymeric|1
+(adj)|compound|chemical compound (related term)
+polymeric amide|1
+(noun)|polyamide|polymer (generic term)
+polymerisation|1
+(noun)|polymerization|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+polymerise|1
+(verb)|polymerize|change integrity (generic term)
+polymerization|1
+(noun)|polymerisation|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+polymerize|1
+(verb)|polymerise|change integrity (generic term)
+polymethyl methacrylate|1
+(noun)|acrylic (generic term)|acrylic resin (generic term)|acrylate resin (generic term)
+polymonium caeruleum van-bruntiae|1
+(noun)|Jacob's ladder|Greek valerian|charity|Polemonium caeruleum|Polemonium van-bruntiae|Polymonium caeruleum van-bruntiae|polemonium (generic term)
+polymorph|1
+(noun)|organism (generic term)|being (generic term)
+polymorphic|3
+(adj)|polymorphous|chemical phenomenon (related term)
+(adj)|polymorphous|organic phenomenon (related term)
+(adj)|polymorphous|multiform (similar term)
+polymorphism|2
+(noun)|pleomorphism|chemical phenomenon (generic term)
+(noun)|organic phenomenon (generic term)
+polymorphous|3
+(adj)|polymorphic|chemical phenomenon (related term)
+(adj)|polymorphic|organic phenomenon (related term)
+(adj)|polymorphic|multiform (similar term)
+polymox|1
+(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+polymyositis|1
+(noun)|myositis (generic term)
+polymyxin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+polynemidae|1
+(noun)|Polynemidae|family Polynemidae|fish family (generic term)
+polynesia|1
+(noun)|Polynesia|archipelago (generic term)
+polynesian|3
+(adj)|Polynesian|archipelago (related term)
+(noun)|Polynesian|Austronesian (generic term)
+(noun)|Malayo-Polynesian|Polynesian|Austronesian (generic term)|Austronesian language (generic term)
+polynesian tattler|1
+(noun)|Polynesian tattler|Heteroscelus incanus|tattler (generic term)
+polyneuritic psychosis|1
+(noun)|alcoholic dementia|alcohol amnestic disorder|Korsakoff's psychosis|Korsakoff's syndrome|Korsakov's psychosis|Korsakov's syndrome|dementia (generic term)|dementedness (generic term)
+polyneuritis|1
+(noun)|multiple neuritis|neuritis (generic term)
+polynomial|2
+(adj)|multinomial|function|mathematical function (related term)
+(noun)|multinomial|function (generic term)|mathematical function (generic term)
+polynya|1
+(noun)|body of water (generic term)|water (generic term)
+polyodon|1
+(noun)|Polyodon|genus Polyodon|fish genus (generic term)
+polyodon spathula|1
+(noun)|paddlefish|duckbill|Polyodon spathula|ganoid (generic term)|ganoid fish (generic term)
+polyodontidae|1
+(noun)|Polyodontidae|family Polyodontidae|fish family (generic term)
+polyoestrous|1
+(adj)|polyestrous|estrous (similar term)
+polyoicous|1
+(adj)|heteroicous|polygamous|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+polyoma|1
+(noun)|polyoma virus|papovavirus (generic term)
+polyoma virus|1
+(noun)|polyoma|papovavirus (generic term)
+polyose|1
+(noun)|polysaccharide|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+polyostotic fibrous dysplasia|1
+(noun)|Albright's disease|fibrous dysplasia of bone (generic term)
+polyp|2
+(noun)|polypus|growth (generic term)
+(noun)|coelenterate (generic term)|cnidarian (generic term)
+polypectomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+polypedates|1
+(noun)|Polypedates|genus Polypedates|amphibian genus (generic term)
+polypedatidae|1
+(noun)|Polypedatidae|family Polypedatidae|amphibian family (generic term)
+polypeptide|1
+(noun)|peptide (generic term)
+polypetalous|1
+(adj)|petalous (similar term)|petaled (similar term)|petalled (similar term)
+polyphase|1
+(adj)|multiphase|point|point in time (related term)
+polyphemus moth|1
+(noun)|Antheraea polyphemus|saturniid (generic term)|saturniid moth (generic term)
+polyphone|1
+(noun)|polyphonic letter|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+polyphonic|3
+(adj)|letter|letter of the alphabet|alphabetic character (related term)
+(adj)|polyphonous|music (related term)
+(adj)|contrapuntal|monophonic (antonym)
+polyphonic letter|1
+(noun)|polyphone|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+polyphonic music|1
+(noun)|polyphony|concerted music|music (generic term)|monophonic music (antonym)|monophony (antonym)
+polyphonic prose|1
+(noun)|prose (generic term)
+polyphonous|1
+(adj)|polyphonic|music (related term)
+polyphony|1
+(noun)|polyphonic music|concerted music|music (generic term)|monophonic music (antonym)|monophony (antonym)
+polyphosphate|1
+(noun)|salt (generic term)
+polyphosphoric acid|1
+(noun)|oxyacid (generic term)|oxygen acid (generic term)
+polyplacophora|1
+(noun)|Polyplacophora|class Polyplacophora|class (generic term)
+polyplacophore|1
+(noun)|chiton|coat-of-mail shell|sea cradle|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+polyploid|2
+(adj)|triploid (similar term)|haploid (antonym)|diploid (antonym)
+(noun)|organism (generic term)|being (generic term)
+polyploidy|1
+(noun)|condition (generic term)
+polypodiaceae|1
+(noun)|Polypodiaceae|family Polypodiaceae|fern family (generic term)
+polypodiales|1
+(noun)|Filicales|order Filicales|Polypodiales|order Polypodiales|plant order (generic term)
+polypodium|1
+(noun)|Polypodium|genus Polypodium|fern genus (generic term)
+polypodium aureum|1
+(noun)|golden polypody|serpent fern|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern (generic term)
+polypodium glycyrrhiza|1
+(noun)|licorice fern|Polypodium glycyrrhiza|polypody (generic term)
+polypodium polypodioides|1
+(noun)|grey polypody|gray polypody|resurrection fern|Polypodium polypodioides|polypody (generic term)
+polypodium scouleri|1
+(noun)|leatherleaf|leathery polypody|coast polypody|Polypodium scouleri|polypody (generic term)
+polypodium virgianum|1
+(noun)|rock polypody|rock brake|American wall fern|Polypodium virgianum|polypody (generic term)
+polypodium vulgare|1
+(noun)|common polypody|adder's fern|wall fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody (generic term)
+polypody|1
+(noun)|fern (generic term)
+polyporaceae|1
+(noun)|Polyporaceae|family Polyporaceae|fungus family (generic term)
+polypore|1
+(noun)|pore fungus|pore mushroom|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+polyporus|1
+(noun)|Polyporus|genus Polyporus|fungus genus (generic term)
+polyporus frondosus|1
+(noun)|hen-of-the-woods|hen of the woods|Polyporus frondosus|Grifola frondosa|fungus (generic term)
+polyporus squamosus|1
+(noun)|Polyporus squamosus|scaly polypore|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+polyporus tenuiculus|1
+(noun)|Polyporus tenuiculus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+polyprion|1
+(noun)|Polyprion|genus Polyprion|fish genus (generic term)
+polyprion americanus|1
+(noun)|stone bass|wreckfish|Polyprion americanus|sea bass (generic term)
+polypropene|1
+(noun)|polypropylene|plastic (generic term)
+polypropenonitrile|1
+(noun)|Acrilan|acrylic (generic term)|acrylic resin (generic term)|acrylate resin (generic term)
+polypropylene|1
+(noun)|polypropene|plastic (generic term)
+polyptoton|1
+(noun)|repetition (generic term)
+polypus|1
+(noun)|polyp|growth (generic term)
+polysaccharide|1
+(noun)|polyose|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+polysemant|1
+(noun)|polysemantic word|polysemous word|word (generic term)
+polysemantic|1
+(adj)|polysemous|ambiguous (similar term)
+polysemantic word|1
+(noun)|polysemant|polysemous word|word (generic term)
+polysemous|1
+(adj)|polysemantic|ambiguous (similar term)
+polysemous word|1
+(noun)|polysemant|polysemantic word|word (generic term)
+polysemy|1
+(noun)|lexical ambiguity|ambiguity (generic term)|equivocalness (generic term)|monosemy (antonym)
+polysomy|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+polystichum|1
+(noun)|Polystichum|genus Polystichum|fern genus (generic term)
+polystichum acrostichoides|1
+(noun)|Christmas fern|canker brake|dagger fern|evergreen wood fern|Polystichum acrostichoides|fern (generic term)
+polystichum aculeatum|1
+(noun)|holly fern|Cyrtomium aculeatum|Polystichum aculeatum|fern (generic term)
+polystichum adiantiformis|1
+(noun)|leather fern|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern (generic term)
+polystichum braunii|1
+(noun)|Braun's holly fern|prickly shield fern|Polystichum braunii|holly fern (generic term)
+polystichum lonchitis|1
+(noun)|northern holly fern|Polystichum lonchitis|holly fern (generic term)
+polystichum scopulinum|1
+(noun)|western holly fern|Polystichum scopulinum|holly fern (generic term)
+polystichum setiferum|1
+(noun)|soft shield fern|Polystichum setiferum|shield fern (generic term)|buckler fern (generic term)
+polystyrene|1
+(noun)|styrene (generic term)|cinnamene (generic term)|phenylethylene (generic term)|vinylbenzene (generic term)
+polysyllabic|2
+(adj)|syllabic (similar term)
+(adj)|sesquipedalian|long (similar term)
+polysyllabic word|1
+(noun)|polysyllable|word (generic term)
+polysyllable|1
+(noun)|polysyllabic word|word (generic term)
+polysyndeton|1
+(noun)|rhetorical device (generic term)
+polysynthetic|1
+(adj)|agglutinative|synthetic (similar term)
+polytechnic|1
+(noun)|polytechnic institute|engineering school|technical school (generic term)|tech (generic term)
+polytechnic institute|1
+(noun)|polytechnic|engineering school|technical school (generic term)|tech (generic term)
+polytetrafluoroethylene|1
+(noun)|Teflon|plastic (generic term)
+polytheism|1
+(noun)|theism (generic term)|monotheism (antonym)
+polytheist|1
+(noun)|theist (generic term)
+polytheistic|1
+(adj)|monotheistic (antonym)
+polythene|1
+(noun)|polyethylene|synthetic resin (generic term)
+polytonal|1
+(adj)|tonal (similar term)
+polytonalism|1
+(noun)|polytonality|music (generic term)
+polytonality|1
+(noun)|polytonalism|music (generic term)
+polyunsaturated|1
+(adj)|unsaturated (similar term)
+polyunsaturated fat|1
+(noun)|fat (generic term)
+polyunsaturated fatty acid|1
+(noun)|unsaturated fatty acid (generic term)
+polyurethane|1
+(noun)|ployurethan|polymer (generic term)
+polyurethane foam|1
+(noun)|polyfoam|polyurethane (generic term)|ployurethan (generic term)
+polyuria|1
+(noun)|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+polyvalence|2
+(noun)|polyvalency|multivalence|multivalency|state (generic term)
+(noun)|polyvalency|state (generic term)
+polyvalency|2
+(noun)|polyvalence|multivalence|multivalency|state (generic term)
+(noun)|polyvalence|state (generic term)
+polyvalent|2
+(adj)|monovalent (antonym)
+(adj)|multivalent|monovalent (antonym)
+polyvinyl-formaldehyde|1
+(noun)|plastic (generic term)
+polyvinyl acetate|1
+(noun)|PVA|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+polyvinyl chloride|1
+(noun)|PVC|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+polyvinyl resin|1
+(noun)|vinyl polymer|vinyl resin|synthetic resin (generic term)
+polyzoa|1
+(noun)|Bryozoa|phylum Bryozoa|phylum (generic term)
+polyzoan|1
+(noun)|bryozoan|sea mat|sea moss|moss animal|invertebrate (generic term)
+pom|1
+(noun)|pommy|English person (generic term)
+pom-pom|2
+(noun)|pompon|adornment (generic term)
+(noun)|antiaircraft|antiaircraft gun|flak|flack|ack-ack|ack-ack gun|gun (generic term)
+pomacanthus|1
+(noun)|Pomacanthus|genus Pomacanthus|fish genus (generic term)
+pomace fly|1
+(noun)|fruit fly|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+pomacentridae|1
+(noun)|Pomacentridae|family Pomacentridae|fish family (generic term)
+pomacentrus|1
+(noun)|Pomacentrus|genus Pomacentrus|fish genus (generic term)
+pomacentrus leucostictus|1
+(noun)|beaugregory|Pomacentrus leucostictus|damselfish (generic term)|demoiselle (generic term)
+pomade|2
+(noun)|pomatum|hairdressing (generic term)|hair tonic (generic term)|hair oil (generic term)|hair grease (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+pomaded|1
+(adj)|groomed (similar term)
+pomaderris|1
+(noun)|Pomaderris|genus Pomaderris|dicot genus (generic term)|magnoliopsid genus (generic term)
+pomaderris apetala|1
+(noun)|hazel|hazel tree|Pomaderris apetala|tree (generic term)
+pomatomidae|1
+(noun)|Pomatomidae|family Pomatomidae|fish family (generic term)
+pomatomus|1
+(noun)|Pomatomus|genus Pomatomus|fish genus (generic term)
+pomatomus saltatrix|1
+(noun)|bluefish|Pomatomus saltatrix|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+pomatum|1
+(noun)|pomade|hairdressing (generic term)|hair tonic (generic term)|hair oil (generic term)|hair grease (generic term)
+pome|1
+(noun)|false fruit|fruit (generic term)
+pomegranate|2
+(noun)|pomegranate tree|Punica granatum|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+pomegranate tree|1
+(noun)|pomegranate|Punica granatum|fruit tree (generic term)
+pomelo|2
+(noun)|pomelo tree|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+(noun)|shaddock|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+pomelo tree|1
+(noun)|pomelo|pummelo|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+pomeranian|1
+(noun)|Pomeranian|spitz (generic term)
+pomfret|1
+(noun)|Brama raii|sea bream (generic term)|bream (generic term)
+pomme blanche|1
+(noun)|breadroot|Indian breadroot|pomme de prairie|Psoralea esculenta|herb (generic term)|herbaceous plant (generic term)
+pomme de prairie|1
+(noun)|breadroot|Indian breadroot|pomme blanche|Psoralea esculenta|herb (generic term)|herbaceous plant (generic term)
+pommel|4
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(noun)|saddlebow|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(noun)|knob|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(verb)|pummel|biff|hit (generic term)
+pommel horse|1
+(noun)|side horse|horse (generic term)|gymnastic horse (generic term)
+pommy|1
+(noun)|pom|English person (generic term)
+pomo|2
+(noun)|Pomo|Hokan (generic term)|Hoka (generic term)
+(noun)|Pomo|Kulanapan (generic term)
+pomolobus|1
+(noun)|Pomolobus|genus Pomolobus|fish genus (generic term)
+pomolobus pseudoharengus|1
+(noun)|alewife|Alosa pseudoharengus|Pomolobus pseudoharengus|clupeid fish (generic term)|clupeid (generic term)
+pomologist|1
+(noun)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+pomology|1
+(noun)|botany (generic term)|phytology (generic term)
+pomoxis|1
+(noun)|Pomoxis|genus Pomoxis|fish genus (generic term)
+pomoxis annularis|1
+(noun)|white crappie|Pomoxis annularis|crappie (generic term)
+pomoxis nigromaculatus|1
+(noun)|black crappie|Pomoxis nigromaculatus|crappie (generic term)
+pomp|2
+(noun)|gaudery|display (generic term)|show (generic term)
+(noun)|eclat|elegance (generic term)
+pompadour|3
+(noun)|Pompadour|Marquise de Pompdour|Jeanne Antoinette Poisson|marchioness (generic term)|marquise (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(verb)|style (generic term)
+pompano|2
+(noun)|saltwater fish (generic term)
+(noun)|carangid fish (generic term)|carangid (generic term)
+pompeii|1
+(noun)|Pompeii|city (generic term)|metropolis (generic term)|urban center (generic term)
+pompey|2
+(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Portsmouth|Pompey|port (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+pompey the great|1
+(noun)|Pompey|Gnaeus Pompeius Magnus|Pompey the Great|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+pompon|2
+(noun)|pom-pom|adornment (generic term)
+(noun)|black margate|Anisotremus surinamensis|grunt (generic term)
+pomposity|1
+(noun)|ostentation|ostentatiousness|pompousness|pretentiousness|puffiness|splashiness|inflation|inelegance (generic term)
+pompous|2
+(adj)|grandiloquent|overblown|pontifical|portentous|pretentious (similar term)
+(adj)|ceremonious|activity (related term)|elegance (related term)
+pompousness|1
+(noun)|ostentation|ostentatiousness|pomposity|pretentiousness|puffiness|splashiness|inflation|inelegance (generic term)
+ponca|1
+(noun)|Ponca|Ponka|Dhegiha (generic term)
+ponce|1
+(noun)|pimp|procurer|panderer|pander|pandar|fancy man|wrongdoer (generic term)|offender (generic term)
+ponce de leon|1
+(noun)|Ponce de Leon|Juan Ponce de Leon|navigator (generic term)
+poncho|1
+(noun)|cloak (generic term)
+poncirus|1
+(noun)|Poncirus|genus Poncirus|rosid dicot genus (generic term)
+poncirus trifoliata|1
+(noun)|trifoliate orange|trifoliata|wild orange|Poncirus trifoliata|tree (generic term)
+pond|1
+(noun)|pool|lake (generic term)
+pond-apple tree|1
+(noun)|pond apple|Annona glabra|custard apple (generic term)|custard apple tree (generic term)
+pond-scum parasite|1
+(noun)|fungus (generic term)
+pond-skater|1
+(noun)|water strider|water skater|water bug (generic term)
+pond apple|2
+(noun)|pond-apple tree|Annona glabra|custard apple (generic term)|custard apple tree (generic term)
+(noun)|custard apple (generic term)
+pond bald cypress|1
+(noun)|bald cypress|swamp cypress|southern cypress|Taxodium distichum|cypress (generic term)
+pond cypress|1
+(noun)|bald cypress|Taxodium ascendens|cypress (generic term)
+pond lily|1
+(noun)|water nymph|fragrant water lily|Nymphaea odorata|water lily (generic term)
+pond pine|1
+(noun)|Pinus serotina|pine (generic term)|pine tree (generic term)|true pine (generic term)
+pond scum|1
+(noun)|green algae (generic term)|chlorophyte (generic term)
+ponder|1
+(verb)|chew over|think over|meditate|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+ponderable|2
+(adj)|assessable (similar term)|imponderable (antonym)
+(adj)|cogitable|thinkable (similar term)
+ponderer|1
+(noun)|muser|muller|ruminator|thinker (generic term)
+pondering|1
+(adj)|brooding|broody|contemplative|meditative|musing|pensive|reflective|ruminative|thoughtful (similar term)
+ponderosa|1
+(noun)|ponderosa pine|western yellow pine|bull pine|Pinus ponderosa|yellow pine (generic term)
+ponderosa pine|1
+(noun)|ponderosa|western yellow pine|bull pine|Pinus ponderosa|yellow pine (generic term)
+ponderosity|1
+(noun)|heft|heftiness|massiveness|ponderousness|heaviness (generic term)|weightiness (generic term)
+ponderous|3
+(adj)|heavy|lumbering|heavy-footed (similar term)
+(adj)|heavy (similar term)
+(adj)|uninteresting (similar term)
+ponderousness|2
+(noun)|heaviness|uninterestingness (generic term)
+(noun)|heft|heftiness|massiveness|ponderosity|heaviness (generic term)|weightiness (generic term)
+pondweed|2
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|Elodea|genus Elodea|ditchmoss|monocot genus (generic term)|liliopsid genus (generic term)
+pondweed family|1
+(noun)|Potamogetonaceae|family Potamogetonaceae|monocot family (generic term)|liliopsid family (generic term)
+pone|1
+(noun)|cornpone|cornbread (generic term)
+pong|1
+(noun)|niff|malodor (generic term)|malodour (generic term)|stench (generic term)|stink (generic term)|reek (generic term)|fetor (generic term)|foetor (generic term)|mephitis (generic term)
+pongamia|1
+(noun)|Pongamia|genus Pongamia|rosid dicot genus (generic term)
+pongamia glabra|1
+(noun)|Indian beech|Pongamia glabra|tree (generic term)
+pongee|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+pongid|1
+(noun)|great ape|anthropoid ape (generic term)
+pongidae|1
+(noun)|Pongidae|family Pongidae|mammal family (generic term)
+pongo|1
+(noun)|Pongo|genus Pongo|mammal genus (generic term)
+pongo pygmaeus|1
+(noun)|orangutan|orang|orangutang|Pongo pygmaeus|great ape (generic term)|pongid (generic term)
+poniard|2
+(noun)|bodkin|dagger (generic term)|sticker (generic term)
+(verb)|knife (generic term)|stab (generic term)
+ponka|1
+(noun)|Ponca|Ponka|Dhegiha (generic term)
+pons|2
+(noun)|Pons|Lily Pons|Alice-Josephine Pons|coloratura (generic term)|coloratura soprano (generic term)
+(noun)|pons Varolii|neural structure (generic term)
+pons asinorum|1
+(noun)|problem (generic term)
+pons varolii|1
+(noun)|pons|pons Varolii|neural structure (generic term)
+ponselle|1
+(noun)|Ponselle|Rosa Ponselle|Rosa Melba Ponselle|soprano (generic term)
+ponstel|1
+(noun)|mefenamic acid|Ponstel|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+ponte 25 de abril|1
+(noun)|Ponte 25 de Abril|suspension bridge (generic term)
+pontederia|1
+(noun)|Pontederia|genus Pontederia|monocot genus (generic term)|liliopsid genus (generic term)
+pontederia cordata|1
+(noun)|pickerelweed|pickerel weed|wampee|Pontederia cordata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+pontederiaceae|1
+(noun)|Pontederiaceae|family Pontederiaceae|pickerelweed family|monocot family (generic term)|liliopsid family (generic term)
+pontiac|1
+(noun)|Pontiac|Shawnee (generic term)
+pontifex|1
+(noun)|priest (generic term)
+pontiff|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+pontifical|4
+(adj)|papal|apostolic|apostolical|spiritual leader|Catholic (related term)
+(adj)|episcopal|priest (related term)
+(adj)|grandiloquent|overblown|pompous|portentous|pretentious (similar term)
+(noun)|vestment (generic term)
+pontificate|3
+(noun)|papacy|government (generic term)|authorities (generic term)|regime (generic term)
+(verb)|administer (generic term)|administrate (generic term)
+(verb)|talk (generic term)|speak (generic term)
+pontius pilate|1
+(noun)|Pilate|Pontius Pilate|procurator (generic term)
+pontoon|2
+(noun)|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+(noun)|float (generic term)
+pontoon bridge|1
+(noun)|bateau bridge|floating bridge|bridge (generic term)|span (generic term)
+pontoon plane|1
+(noun)|floatplane|seaplane (generic term)|hydroplane (generic term)
+pontos|1
+(noun)|Pontus|Pontos|Greek deity (generic term)
+pontus|2
+(noun)|Pontus|Pontos|Greek deity (generic term)
+(noun)|Pontus|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+pony|4
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+(noun)|trot|crib|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|shot glass|jigger|glass (generic term)|drinking glass (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+pony-trekking|1
+(noun)|riding (generic term)|horseback riding (generic term)|equitation (generic term)
+pony cart|1
+(noun)|ponycart|donkey cart|tub-cart|cart (generic term)
+pony express|1
+(noun)|express (generic term)|express mail (generic term)
+pony up|1
+(verb)|cough up|spit up|give (generic term)
+ponycart|1
+(noun)|pony cart|donkey cart|tub-cart|cart (generic term)
+ponytail|1
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+pooch|2
+(noun)|doggie|doggy|barker|bow-wow|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(verb)|pooch out|purse (generic term)
+pooch out|1
+(verb)|pooch|purse (generic term)
+pood|1
+(noun)|weight unit (generic term)|weight (generic term)
+poodle|1
+(noun)|poodle dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+poodle dog|1
+(noun)|poodle|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+pooecetes|1
+(noun)|Pooecetes|genus Pooecetes|bird genus (generic term)
+pooecetes gramineus|1
+(noun)|vesper sparrow|grass finch|Pooecetes gramineus|New World sparrow (generic term)
+poof|1
+(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+pooh-bah|1
+(noun)|high-muck-a-muck|important person (generic term)|influential person (generic term)|personage (generic term)
+pooh-pooh|2
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|reject|spurn|freeze off|scorn|disdain|turn down|refuse (generic term)|decline (generic term)
+pool|11
+(noun)|excavation (generic term)
+(noun)|pond|lake (generic term)
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|consortium|syndicate|association (generic term)
+(noun)|reserve account (generic term)|reserve fund (generic term)
+(noun)|puddle|body of water (generic term)|water (generic term)
+(noun)|kitty|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(noun)|puddle|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|pocket billiards|table game (generic term)
+(verb)|share (generic term)
+(verb)|group (generic term)|aggroup (generic term)
+pool ball|1
+(noun)|ball (generic term)
+pool cue|1
+(noun)|cue|cue stick|pool stick|sports implement (generic term)
+pool player|1
+(noun)|player (generic term)|participant (generic term)
+pool stick|1
+(noun)|cue|cue stick|pool cue|sports implement (generic term)
+pool table|1
+(noun)|billiard table|snooker table|table (generic term)|game equipment (generic term)
+pooler|1
+(noun)|partaker (generic term)|sharer (generic term)
+pooling of interest|1
+(noun)|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+poolroom|1
+(noun)|room (generic term)
+poon|2
+(noun)|wood (generic term)
+(noun)|tree (generic term)
+poop|4
+(noun)|crap|dirt|shit|shite|turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(noun)|nincompoop|ninny|simpleton (generic term)|simple (generic term)
+(noun)|dope|the skinny|low-down|details (generic term)|inside information (generic term)
+(noun)|stern|after part|quarter|tail|rear (generic term)|back (generic term)
+poop deck|1
+(noun)|weather deck (generic term)|shelter deck (generic term)
+poop out|1
+(verb)|peter out|run down|run out|conk out|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+poor|7
+(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|wretched|unfortunate (similar term)
+(adj)|broke (similar term)|bust (similar term)|skint (similar term)|stone-broke (similar term)|stony-broke (similar term)|destitute (similar term)|impoverished (similar term)|indigent (similar term)|necessitous (similar term)|needy (similar term)|poverty-stricken (similar term)|hard up (similar term)|impecunious (similar term)|in straitened circumstances (similar term)|penniless (similar term)|penurious (similar term)|pinched (similar term)|moneyless (similar term)|unprovided for (similar term)|underprivileged (related term)|rich (antonym)
+(adj)|beggarly (similar term)|mean (similar term)|slummy (similar term)|rich (antonym)
+(adj)|hardscrabble (similar term)|resourceless (similar term)|rich (antonym)
+(adj)|inadequate|short|insufficient (similar term)|deficient (similar term)
+(adj)|bad (similar term)
+(noun)|poor people|people (generic term)|rich (antonym)|rich people (antonym)
+poor-spirited|1
+(adj)|pusillanimous|unmanly|cowardly (similar term)|fearful (similar term)
+poor box|1
+(noun)|alms box|mite box|box (generic term)
+poor boy|1
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|sub|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+poor devil|1
+(noun)|wretch|victim (generic term)
+poor fish|1
+(noun)|stupid|stupid person|stupe|dullard|dolt|pudding head|pudden-head|pillock|simpleton (generic term)|simple (generic term)
+poor law|1
+(noun)|law (generic term)
+poor man|1
+(noun)|pauper|poor person (generic term)|have-not (generic term)
+poor man's orchid|1
+(noun)|butterfly flower|schizanthus|flower (generic term)
+poor man's pulse|1
+(noun)|horse gram|horse grain|Macrotyloma uniflorum|Dolichos biflorus|legume (generic term)|leguminous plant (generic term)
+poor man's weatherglass|1
+(noun)|scarlet pimpernel|red pimpernel|Anagallis arvensis|pimpernel (generic term)
+poor people|1
+(noun)|poor|people (generic term)|rich (antonym)|rich people (antonym)
+poor person|1
+(noun)|have-not|unfortunate (generic term)|unfortunate person (generic term)
+poor rates|1
+(noun)|rates (generic term)
+poor shape|1
+(noun)|unfitness|softness|bad condition|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|fitness (antonym)
+poor speller|1
+(noun)|speller|good speller|writer (generic term)
+poor white|1
+(noun)|white trash|poor white trash|White (generic term)|white person (generic term)|Caucasian (generic term)
+poor white trash|1
+(noun)|white trash|poor white|White (generic term)|white person (generic term)|Caucasian (generic term)
+poorhouse|1
+(noun)|establishment (generic term)
+poorly|2
+(adj)|ailing|indisposed|peaked|sickly|unwell|under the weather|seedy|ill (similar term)|sick (similar term)
+(adv)|ill|badly|well (antonym)
+poorness|4
+(noun)|poverty|impoverishment|financial condition (generic term)|economic condition (generic term)|wealth (antonym)
+(noun)|fruitlessness (generic term)|aridity (generic term)|barrenness (generic term)
+(noun)|meagerness|meagreness|leanness|scantiness|scantness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+(noun)|inferiority (generic term)|low quality (generic term)
+poorwill|1
+(noun)|Phalaenoptilus nuttallii|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+poove|1
+(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poof|pouf|gay man (generic term)|shirtlifter (generic term)
+pop|17
+(adj)|popular|nonclassical (similar term)
+(noun)|dad|dada|daddy|pa|papa|pappa|father (generic term)|male parent (generic term)|begetter (generic term)
+(noun)|soda|soda pop|soda water|tonic|soft drink (generic term)
+(noun)|popping|sound (generic term)
+(noun)|pop music|popular music (generic term)|popular music genre (generic term)
+(verb)|start|protrude|pop out|bulge|bulge out|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|fire (generic term)|discharge (generic term)
+(verb)|sound (generic term)
+(verb)|crop up|pop up|appear (generic term)
+(verb)|throw (generic term)|thrust (generic term)
+(verb)|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+(verb)|hit (generic term)
+(verb)|toss off|bolt down|belt down|pour down|down|drink down|kill|drink (generic term)|imbibe (generic term)
+(verb)|inject (generic term)
+(verb)|collapse (generic term)|burst (generic term)
+(verb)|burst (generic term)|split (generic term)|break open (generic term)
+pop-fly|1
+(noun)|pop fly|pop-up|fly (generic term)|fly ball (generic term)
+pop-up|2
+(noun)|pop-up book|book (generic term)
+(noun)|pop fly|pop-fly|fly (generic term)|fly ball (generic term)
+pop-up book|1
+(noun)|pop-up|book (generic term)
+pop art|1
+(noun)|Pop Art|artistic movement (generic term)|art movement (generic term)
+pop bottle|1
+(noun)|soda bottle|bottle (generic term)
+pop fly|1
+(noun)|pop-fly|pop-up|fly (generic term)|fly ball (generic term)
+pop group|1
+(noun)|ensemble (generic term)
+pop in|1
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)|pop out (antonym)
+pop music|1
+(noun)|pop|popular music (generic term)|popular music genre (generic term)
+pop off|2
+(verb)|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|choke|croak|snuff it|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+pop out|4
+(verb)|burst out|appear (generic term)
+(verb)|start|protrude|pop|bulge|bulge out|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|pop in (antonym)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+pop quiz|1
+(noun)|quiz (generic term)
+pop tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+pop the question|1
+(verb)|propose|declare oneself|offer|request (generic term)
+pop up|1
+(verb)|crop up|pop|appear (generic term)
+popcorn|2
+(noun)|Zea mays everta|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+(noun)|corn (generic term)|edible corn (generic term)
+popcorn ball|1
+(noun)|candy (generic term)|confect (generic term)
+pope|2
+(noun)|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+(noun)|Pope|Alexander Pope|poet (generic term)
+pope's nose|1
+(noun)|parson's nose|helping (generic term)|portion (generic term)|serving (generic term)
+pope alexander vi|1
+(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+popery|1
+(noun)|papism|practice (generic term)|pattern (generic term)
+popeyed|2
+(adj)|goggle-eyed|openmouthed|surprised (similar term)
+(adj)|eyed (similar term)
+popgun|1
+(noun)|plaything (generic term)|toy (generic term)
+popillia|1
+(noun)|Popillia|genus Popillia|arthropod genus (generic term)
+popillia japonica|1
+(noun)|Japanese beetle|Popillia japonica|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+popinjay|2
+(noun)|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+(noun)|parrot (generic term)
+popish|1
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|papist|papistic|papistical|Catholicism|Catholicity (related term)
+poplar|2
+(noun)|wood (generic term)
+(noun)|poplar tree|angiospermous tree (generic term)|flowering tree (generic term)
+poplar bluff|1
+(noun)|Poplar Bluff|town (generic term)
+poplar tree|1
+(noun)|poplar|angiospermous tree (generic term)|flowering tree (generic term)
+poplin|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+popliteal|1
+(adj)|hinge joint|ginglymus|ginglymoid joint (related term)
+popliteal artery|1
+(noun)|arteria poplitea|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+popliteal vein|1
+(noun)|vena poplitea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+popover|1
+(noun)|muffin (generic term)|gem (generic term)
+popper|2
+(noun)|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+(noun)|cooker (generic term)
+poppet|1
+(noun)|poppet valve|valve (generic term)
+poppet valve|1
+(noun)|poppet|valve (generic term)
+popping|1
+(noun)|pop|sound (generic term)
+poppy|1
+(noun)|flower (generic term)
+poppy day|1
+(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday (generic term)
+poppy family|1
+(noun)|Papaveraceae|family Papaveraceae|dilleniid dicot family (generic term)
+poppy mallow|1
+(noun)|mallow (generic term)
+poppy seed|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+poppycock|1
+(noun)|stuff|stuff and nonsense|hooey|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+popsicle|1
+(noun)|ice lolly|lolly|lollipop|frozen dessert (generic term)
+populace|1
+(noun)|public|world|people (generic term)
+popular|4
+(adj)|best-selling (similar term)|fashionable (similar term)|favorite (similar term)|favourite (similar term)|hot (similar term)|touristed (similar term)|touristy (similar term)|unpopular (antonym)
+(adj)|democratic (similar term)
+(adj)|democratic|common (similar term)
+(adj)|pop|nonclassical (similar term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+popular front|1
+(noun)|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+popular front for the liberation of palestine|1
+(noun)|Popular Front for the Liberation of Palestine|PFLP|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+popular front for the liberation of palestine-general command|1
+(noun)|Popular Front for the Liberation of Palestine-General Command|PFLP-GC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+popular music|1
+(noun)|popular music genre|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+popular music genre|1
+(noun)|popular music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+popular opinion|1
+(noun)|public opinion|opinion|vox populi|belief (generic term)
+popular struggle front|1
+(noun)|Popular Struggle Front|PSF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+popularisation|2
+(noun)|popularization|interpretation (generic term)
+(noun)|popularization|vulgarization|vulgarisation|degradation (generic term)|debasement (generic term)
+popularise|2
+(verb)|popularize|vulgarize|vulgarise|generalize|generalise|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|popularize|gear (generic term)|pitch (generic term)
+populariser|1
+(noun)|popularizer|vulgarizer|vulgariser|communicator (generic term)
+popularism|1
+(noun)|music (generic term)
+popularity|1
+(noun)|quality (generic term)|unpopularity (antonym)
+popularity contest|1
+(noun)|contest (generic term)
+popularization|2
+(noun)|popularisation|interpretation (generic term)
+(noun)|popularisation|vulgarization|vulgarisation|degradation (generic term)|debasement (generic term)
+popularize|2
+(verb)|popularise|vulgarize|vulgarise|generalize|generalise|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|popularise|gear (generic term)|pitch (generic term)
+popularizer|1
+(noun)|populariser|vulgarizer|vulgariser|communicator (generic term)
+populate|2
+(verb)|people|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|people|fill (generic term)|fill up (generic term)|make full (generic term)
+populated|1
+(adj)|inhabited (similar term)
+populated area|1
+(noun)|urban area|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|rural area (antonym)
+population|5
+(noun)|people (generic term)
+(noun)|group (generic term)|grouping (generic term)
+(noun)|universe|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|integer (generic term)|whole number (generic term)
+(noun)|colonization (generic term)|colonisation (generic term)|settlement (generic term)
+population commission|1
+(noun)|Population Commission|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+population control|1
+(noun)|social control (generic term)
+population growth|1
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+population profile|1
+(noun)|profile (generic term)
+population scientist|1
+(noun)|demographer|demographist|sociologist (generic term)
+population shift|1
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)
+populism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+populist|1
+(noun)|democrat|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+populist party|1
+(noun)|People's Party|Populist Party|party (generic term)|political party (generic term)
+populous|1
+(adj)|thickly settled|inhabited (similar term)
+populus|1
+(noun)|Populus|genus Populus|hamamelid dicot genus (generic term)
+populus alba|1
+(noun)|white poplar|white aspen|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+populus balsamifera|1
+(noun)|balsam poplar|hackmatack|tacamahac|Populus balsamifera|poplar (generic term)|poplar tree (generic term)
+populus canescens|1
+(noun)|grey poplar|gray poplar|Populus canescens|poplar (generic term)|poplar tree (generic term)
+populus deltoides|1
+(noun)|Eastern cottonwood|necklace poplar|Populus deltoides|cottonwood (generic term)
+populus grandidentata|1
+(noun)|Canadian aspen|bigtooth aspen|bigtoothed aspen|big-toothed aspen|large-toothed aspen|large tooth aspen|Populus grandidentata|aspen (generic term)
+populus heterophylla|1
+(noun)|swamp cottonwood|black cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood (generic term)
+populus nigra|1
+(noun)|black poplar|Populus nigra|poplar (generic term)|poplar tree (generic term)
+populus nigra italica|1
+(noun)|Lombardy poplar|Populus nigra italica|black poplar (generic term)|Populus nigra (generic term)
+populus tremula|1
+(noun)|quaking aspen|European quaking aspen|Populus tremula|aspen (generic term)
+populus tremuloides|1
+(noun)|American quaking aspen|American aspen|Populus tremuloides|aspen (generic term)
+populus trichocarpa|1
+(noun)|black cottonwood|Western balsam poplar|Populus trichocarpa|cottonwood (generic term)
+porbeagle|1
+(noun)|Lamna nasus|mackerel shark (generic term)
+porc|1
+(noun)|pork|meat (generic term)
+porcelain|1
+(noun)|ceramic ware (generic term)
+porcelain clay|1
+(noun)|china clay|china stone|kaolin|kaoline|terra alba|clay (generic term)
+porcelainize|1
+(verb)|coat (generic term)|surface (generic term)
+porcellio|1
+(noun)|Porcellio|genus Porcellio|arthropod genus (generic term)
+porcellionidae|1
+(noun)|Porcellionidae|family Porcellionidae|arthropod family (generic term)
+porch|1
+(noun)|structure (generic term)|construction (generic term)
+porcine|3
+(adj)|even-toed ungulate|artiodactyl|artiodactyl mammal (related term)
+(adj)|gross|fat (similar term)
+(adj)|hoggish|piggish|piggy|swinish|gluttonous (similar term)
+porcupine|1
+(noun)|hedgehog|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+porcupine ball|1
+(noun)|porcupines|meatball (generic term)
+porcupine fish|1
+(noun)|porcupinefish|Diodon hystrix|spiny puffer (generic term)
+porcupine provision|1
+(noun)|shark repellent|measure (generic term)|step (generic term)
+porcupinefish|1
+(noun)|porcupine fish|Diodon hystrix|spiny puffer (generic term)
+porcupines|1
+(noun)|porcupine ball|meatball (generic term)
+pore|4
+(noun)|hole (generic term)
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+(noun)|stoma|stomate|aperture (generic term)
+(verb)|concentrate|focus|center|centre|rivet|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+pore fungus|1
+(noun)|polypore|pore mushroom|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+pore mushroom|1
+(noun)|polypore|pore fungus|basidiomycete (generic term)|basidiomycetous fungi (generic term)
+porgy|2
+(noun)|scup|saltwater fish (generic term)
+(noun)|sea bream (generic term)|bream (generic term)
+porifera|1
+(noun)|Porifera|phylum Porifera|phylum (generic term)
+poriferan|1
+(noun)|sponge|parazoan|invertebrate (generic term)
+poriferous|1
+(adj)|porous|porose (similar term)|nonporous (antonym)
+poring over|1
+(noun)|perusal|perusing|studying|reading (generic term)
+pork|2
+(noun)|porc|meat (generic term)
+(noun)|pork barrel|appropriation (generic term)
+pork-and-veal goulash|1
+(noun)|goulash (generic term)|Hungarian goulash (generic term)|gulyas (generic term)
+pork-barreling|1
+(noun)|acquisition (generic term)
+pork-fish|1
+(noun)|porkfish|Anisotremus virginicus|grunt (generic term)
+pork and beans|1
+(noun)|dish (generic term)
+pork barrel|1
+(noun)|pork|appropriation (generic term)
+pork belly|1
+(noun)|side of pork (generic term)
+pork butcher|1
+(noun)|butcher (generic term)|meatman (generic term)
+pork loin|1
+(noun)|cut of pork (generic term)
+pork pie|1
+(noun)|pasty (generic term)
+pork roast|1
+(noun)|roast pork|roast (generic term)|joint (generic term)
+pork sausage|1
+(noun)|sausage (generic term)
+pork tenderloin|1
+(noun)|tenderloin (generic term)|undercut (generic term)
+porkchop|1
+(noun)|chop (generic term)
+porker|1
+(noun)|hog (generic term)|pig (generic term)|grunter (generic term)|squealer (generic term)|Sus scrofa (generic term)
+porkfish|1
+(noun)|pork-fish|Anisotremus virginicus|grunt (generic term)
+porkholt|1
+(noun)|goulash (generic term)|Hungarian goulash (generic term)|gulyas (generic term)
+porkpie|1
+(noun)|porkpie hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+porkpie hat|1
+(noun)|porkpie|hat (generic term)|chapeau (generic term)|lid (generic term)
+porn|1
+(noun)|pornography|porno|erotica|smut|creation (generic term)|creative activity (generic term)
+porn merchant|1
+(noun)|pornographer|showman (generic term)|promoter (generic term)|impresario (generic term)
+porno|1
+(noun)|pornography|porn|erotica|smut|creation (generic term)|creative activity (generic term)
+pornographer|1
+(noun)|porn merchant|showman (generic term)|promoter (generic term)|impresario (generic term)
+pornographic|1
+(adj)|sexy (similar term)
+pornography|1
+(noun)|porno|porn|erotica|smut|creation (generic term)|creative activity (generic term)
+poronotus|1
+(noun)|Poronotus|genus Poronotus|fish genus (generic term)
+poronotus triacanthus|1
+(noun)|dollarfish|Poronotus triacanthus|butterfish (generic term)|stromateid fish (generic term)|stromateid (generic term)
+poroporo|1
+(noun)|kangaroo apple|Solanum aviculare|nightshade (generic term)
+porose|1
+(adj)|porous (similar term)|poriferous (similar term)
+porosity|1
+(noun)|porousness|consistency (generic term)|consistence (generic term)|body (generic term)|solidity (antonym)
+porous|3
+(adj)|permeable (similar term)
+(adj)|poriferous|porose (similar term)|nonporous (antonym)
+(adj)|holey|leaky (similar term)
+porousness|1
+(noun)|porosity|consistency (generic term)|consistence (generic term)|body (generic term)|solidity (antonym)
+porphyra|1
+(noun)|Porphyra|genus Porphyra|protoctist genus (generic term)
+porphyria|1
+(noun)|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+porphyrin|1
+(noun)|pigment (generic term)
+porphyrio|1
+(noun)|Porphyrio|genus Porphyrio|bird genus (generic term)
+porphyrio porphyrio|1
+(noun)|European gallinule|Porphyrio porphyrio|purple gallinule (generic term)
+porphyritic|1
+(adj)|igneous rock (related term)
+porphyritic rock|1
+(noun)|porphyry|igneous rock (generic term)
+porphyrula|1
+(noun)|Porphyrula|genus Porphyrula|bird genus (generic term)
+porphyrula martinica|1
+(noun)|American gallinule|Porphyrula martinica|purple gallinule (generic term)
+porphyry|1
+(noun)|porphyritic rock|igneous rock (generic term)
+porpoise|1
+(noun)|dolphin (generic term)
+porpoise oil|1
+(noun)|animal oil (generic term)
+porridge|1
+(noun)|dish (generic term)
+porringer|1
+(noun)|bowl (generic term)
+port|11
+(adj)|larboard|left (similar term)
+(noun)|geographic point (generic term)|geographical point (generic term)
+(noun)|port wine|fortified wine (generic term)
+(noun)|embrasure|porthole|opening (generic term)
+(noun)|larboard|side (generic term)|starboard (antonym)
+(noun)|interface|computer circuit (generic term)
+(verb)|transfer (generic term)
+(verb)|land (generic term)|set down (generic term)
+(verb)|turn (generic term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|drink (generic term)|booze (generic term)|fuddle (generic term)
+port-access coronary bypass surgery|1
+(noun)|closed-heart surgery (generic term)
+port-au-prince|1
+(noun)|Port-au-Prince|Haitian capital|national capital (generic term)
+port-of-spain|1
+(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital (generic term)
+port-wine stain|1
+(noun)|nevus flammeus|birthmark (generic term)|nevus (generic term)
+port arthur|2
+(noun)|Lushun|Port Arthur|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Port Arthur|pitched battle (generic term)
+port jackson fig|1
+(noun)|Port Jackson fig|rusty rig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree (generic term)
+port jackson heath|1
+(noun)|Port Jackson heath|Epacris purpurascens|epacris (generic term)
+port jackson pine|1
+(noun)|Port Jackson pine|Callitris cupressiformis|cypress pine (generic term)
+port louis|1
+(noun)|Port Louis|national capital (generic term)|port (generic term)
+port moresby|1
+(noun)|Port Moresby|capital of Papua New Guinea|national capital (generic term)
+port of call|1
+(noun)|seaport (generic term)|haven (generic term)|harbor (generic term)|harbour (generic term)
+port of entry|1
+(noun)|point of entry|port (generic term)
+port of spain|1
+(noun)|Port of Spain|Port-of-Spain|capital of Trinidad and Tobago|national capital (generic term)
+port orford cedar|2
+(noun)|Port Orford cedar|cedar (generic term)|cedarwood (generic term)
+(noun)|Oregon cedar|Port Orford cedar|Lawson's cypress|Lawson's cedar|Chamaecyparis lawsoniana|cedar (generic term)|cedar tree (generic term)
+port sudan|1
+(noun)|Port Sudan|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+port vila|1
+(noun)|Port Vila|Vila|capital of Vanuatu|national capital (generic term)
+port watcher|1
+(noun)|portwatcher|watchman (generic term)|watcher (generic term)|security guard (generic term)
+port wine|1
+(noun)|port|fortified wine (generic term)
+porta|1
+(noun)|orifice|opening|passage (generic term)|passageway (generic term)
+porta hepatis|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+portability|1
+(noun)|movability (generic term)|movableness (generic term)
+portable|3
+(adj)|man-portable (similar term)|movable (similar term)|takeout (similar term)|take-away (similar term)|unportable (antonym)
+(adj)|outboard (similar term)
+(noun)|typewriter (generic term)
+portable circular saw|1
+(noun)|portable saw|circular saw (generic term)|buzz saw (generic term)
+portable computer|1
+(noun)|personal computer (generic term)|PC (generic term)|microcomputer (generic term)
+portable saw|1
+(noun)|portable circular saw|circular saw (generic term)|buzz saw (generic term)
+portacaval shunt|1
+(noun)|shunt (generic term)
+portage|3
+(noun)|cost (generic term)
+(noun)|track (generic term)|cart track (generic term)|cartroad (generic term)
+(noun)|carry (generic term)
+portal|3
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|portal site|web site (generic term)|website (generic term)|internet site (generic term)|site (generic term)
+(noun)|portal vein|hepatic portal vein|vena portae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+portal hypertension|1
+(noun)|malignant hypertension (generic term)
+portal site|1
+(noun)|portal|web site (generic term)|website (generic term)|internet site (generic term)|site (generic term)
+portal system|1
+(noun)|vascular system (generic term)
+portal tomb|1
+(noun)|dolmen|cromlech|megalith (generic term)|megalithic structure (generic term)
+portal vein|1
+(noun)|hepatic portal vein|portal|vena portae|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+portcullis|1
+(noun)|gate (generic term)
+porte|1
+(noun)|Porte|Sublime Porte|court (generic term)|royal court (generic term)
+porte-cochere|2
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|canopy (generic term)
+portend|1
+(verb)|bode|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+portent|1
+(noun)|omen|presage|prognostic|prognostication|prodigy|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+portentous|3
+(adj)|prodigious|significant (similar term)|important (similar term)
+(adj)|fateful|foreboding|prophetic (similar term)|prophetical (similar term)
+(adj)|grandiloquent|overblown|pompous|pontifical|pretentious (similar term)
+porter|8
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|doorkeeper|doorman|door guard|hall porter|gatekeeper|ostiary|guard (generic term)
+(noun)|Porter|Katherine Anne Porter|writer (generic term)|author (generic term)
+(noun)|Porter|Cole Porter|Cole Albert Porter|composer (generic term)
+(noun)|Porter|William Sydney Porter|O. Henry|writer (generic term)|author (generic term)
+(noun)|Pullman porter|employee (generic term)
+(noun)|porter's beer|ale (generic term)
+(verb)|transport (generic term)|carry (generic term)
+porter's beer|1
+(noun)|porter|ale (generic term)
+porterage|2
+(noun)|charge (generic term)
+(noun)|carry (generic term)
+porterhouse|1
+(noun)|porterhouse steak|beefsteak (generic term)
+porterhouse steak|1
+(noun)|porterhouse|beefsteak (generic term)
+portfolio|4
+(noun)|case (generic term)
+(noun)|set (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+porthole|2
+(noun)|window (generic term)
+(noun)|port|embrasure|opening (generic term)
+portia tree|1
+(noun)|bendy tree|seaside mahoe|Thespesia populnea|tulipwood tree (generic term)
+portico|1
+(noun)|porch (generic term)
+porticoed|1
+(adj)|amphiprostylar|amphiprostyle|amphistylar|apteral (similar term)
+portiere|1
+(noun)|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+portion|8
+(noun)|part|component part|component|relation (generic term)
+(noun)|part|object (generic term)|physical object (generic term)
+(noun)|parcel|share|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+(noun)|share|part|percentage|assets (generic term)
+(noun)|fortune|destiny|fate|luck|lot|circumstances|condition (generic term)
+(noun)|dowry|dowery|dower|gift (generic term)
+(noun)|helping|serving|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(verb)|assign|allot|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+portion out|1
+(verb)|share|divvy up|apportion|deal|distribute (generic term)|give out (generic term)|hand out (generic term)|pass out (generic term)
+portland|2
+(noun)|Portland|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+(noun)|Portland|city (generic term)|metropolis (generic term)|urban center (generic term)
+portland cement|1
+(noun)|hydraulic cement|Portland cement|cement (generic term)
+portly|1
+(adj)|stout|fat (similar term)
+portmanteau|2
+(noun)|blend|portmanteau word|neologism (generic term)|neology (generic term)|coinage (generic term)
+(noun)|Gladstone|Gladstone bag|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+portmanteau word|1
+(noun)|blend|portmanteau|neologism (generic term)|neology (generic term)|coinage (generic term)
+porto|1
+(noun)|Porto|Oporto|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+porto novo|1
+(noun)|Porto Novo|capital of Benin|national capital (generic term)
+porto rico|2
+(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth (generic term)
+(noun)|Puerto Rico|Porto Rico|island (generic term)
+portrait|3
+(noun)|painting (generic term)|picture (generic term)
+(noun)|portrayal|portraiture|word picture (generic term)|word-painting (generic term)|delineation (generic term)|depiction (generic term)|picture (generic term)|characterization (generic term)|characterisation (generic term)
+(noun)|portrayal|likeness (generic term)|semblance (generic term)
+portrait camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+portrait lens|1
+(noun)|camera lens (generic term)|optical lens (generic term)
+portrait painter|1
+(noun)|portraitist|portrayer|limner|painter (generic term)
+portraitist|1
+(noun)|portrait painter|portrayer|limner|painter (generic term)
+portraiture|2
+(noun)|portrayal|portrait|word picture (generic term)|word-painting (generic term)|delineation (generic term)|depiction (generic term)|picture (generic term)|characterization (generic term)|characterisation (generic term)
+(noun)|depiction (generic term)|delineation (generic term)|portrayal (generic term)
+portray|4
+(verb)|represent (generic term)
+(verb)|depict|limn|represent (generic term)|interpret (generic term)
+(verb)|impersonate|act (generic term)|play (generic term)|represent (generic term)
+(verb)|present|represent (generic term)|interpret (generic term)
+portrayal|5
+(noun)|portraiture|portrait|word picture (generic term)|word-painting (generic term)|delineation (generic term)|depiction (generic term)|picture (generic term)|characterization (generic term)|characterisation (generic term)
+(noun)|characterization|enactment|personation|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+(noun)|depicting|depiction|portraying|representational process (generic term)
+(noun)|portrait|likeness (generic term)|semblance (generic term)
+(noun)|depiction|delineation|pictorial representation (generic term)|picturing (generic term)
+portrayed|1
+(adj)|depicted|pictured|delineated (similar term)|represented (similar term)|delineate (similar term)
+portrayer|1
+(noun)|portraitist|portrait painter|limner|painter (generic term)
+portraying|1
+(noun)|depicting|depiction|portrayal|representational process (generic term)
+portsmouth|3
+(noun)|Portsmouth|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Portsmouth|town (generic term)|port (generic term)
+(noun)|Portsmouth|Pompey|port (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+portugal|1
+(noun)|Portugal|Portuguese Republic|European country (generic term)|European nation (generic term)
+portuguese|3
+(adj)|Portuguese|Lusitanian|European country|European nation (related term)
+(noun)|Portuguese|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+(noun)|Portuguese|European (generic term)
+portuguese cypress|1
+(noun)|Mexican cypress|cedar of Goa|Portuguese cypress|Cupressus lusitanica|cypress (generic term)|cypress tree (generic term)
+portuguese escudo|1
+(noun)|Portuguese escudo|escudo|Portuguese monetary unit (generic term)
+portuguese guinea|1
+(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country (generic term)|African nation (generic term)
+portuguese heath|1
+(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica (generic term)|true heath (generic term)
+portuguese man-of-war|1
+(noun)|Portuguese man-of-war|man-of-war|jellyfish|siphonophore (generic term)
+portuguese monetary unit|1
+(noun)|Portuguese monetary unit|monetary unit (generic term)
+portuguese republic|1
+(noun)|Portugal|Portuguese Republic|European country (generic term)|European nation (generic term)
+portulaca|1
+(noun)|flower (generic term)
+portulaca grandiflora|1
+(noun)|rose moss|sun plant|Portulaca grandiflora|portulaca (generic term)
+portulaca oleracea|1
+(noun)|common purslane|pussley|pusly|verdolagas|Portulaca oleracea|purslane (generic term)
+portulacaceae|1
+(noun)|Portulacaceae|family Portulacaceae|purslane family|caryophylloid dicot family (generic term)
+portunidae|1
+(noun)|Portunidae|family Portunidae|arthropod family (generic term)
+portunus|1
+(noun)|Portunus|genus Portunus|arthropod genus (generic term)
+portunus puber|1
+(noun)|English lady crab|Portunus puber|swimming crab (generic term)
+portwatcher|1
+(noun)|port watcher|watchman (generic term)|watcher (generic term)|security guard (generic term)
+porzana|1
+(noun)|Porzana|genus Porzana|bird genus (generic term)
+porzana porzana|1
+(noun)|spotted crake|Porzana porzana|crake (generic term)
+pos tagger|1
+(noun)|part-of-speech tagger|tagger (generic term)|tagging program (generic term)
+pose|9
+(noun)|airs|affectedness (generic term)
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+(noun)|affectation|mannerism|affectedness|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+(verb)|present|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|model|sit|posture|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|impersonate|personate|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|posture|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|put|set|place|position|lay|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+posed|1
+(adj)|unposed (antonym)
+poseidon|1
+(noun)|Poseidon|Greek deity (generic term)
+poser|3
+(noun)|poseur|exhibitionist (generic term)|show-off (generic term)
+(noun)|model|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|stumper|toughie|sticker|problem (generic term)
+poseur|1
+(noun)|poser|exhibitionist (generic term)|show-off (generic term)
+poseuse|1
+(noun)|poseur (generic term)|poser (generic term)
+posh|1
+(adj)|classy|swish|stylish (similar term)|fashionable (similar term)
+posing|1
+(noun)|sitting|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+posit|4
+(noun)|postulate|proposition (generic term)
+(verb)|situate|fix|deposit|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|submit|state|put forward|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|postulate|presuppose (generic term)|suppose (generic term)
+position|18
+(noun)|place|point (generic term)
+(noun)|military position|point (generic term)
+(noun)|view|perspective|orientation (generic term)
+(noun)|posture|attitude|bodily property (generic term)
+(noun)|status|state (generic term)
+(noun)|post|berth|office|spot|billet|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|spatial relation|relation (generic term)
+(noun)|point (generic term)
+(noun)|role (generic term)
+(noun)|placement|location|locating|positioning|emplacement|activity (generic term)
+(noun)|situation|condition (generic term)|status (generic term)
+(noun)|place|item (generic term)|point (generic term)
+(noun)|stance|posture|attitude (generic term)|mental attitude (generic term)
+(noun)|side|opinion (generic term)|view (generic term)
+(noun)|stead|place|lieu|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+(noun)|assumption (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|put|set|place|pose|lay|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+position effect|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+position paper|2
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+(noun)|aide-memoire|memo (generic term)|memorandum (generic term)|memoranda (generic term)
+positionable|1
+(adj)|activity (related term)
+positional|1
+(adj)|point (related term)
+positional notation|1
+(noun)|positional representation system|numeration system (generic term)|number system (generic term)|number representation system (generic term)|system of numeration (generic term)
+positional representation system|1
+(noun)|positional notation|numeration system (generic term)|number system (generic term)|number representation system (generic term)|system of numeration (generic term)
+positioner|1
+(noun)|rotary actuator|actuator (generic term)
+positioning|2
+(adj)|aligning|orienting (similar term)|orientating (similar term)
+(noun)|placement|location|locating|position|emplacement|activity (generic term)
+positive|12
+(adj)|affirmative (similar term)|optimistic (similar term)|constructive (similar term)|affirmative (related term)|affirmatory (related term)|constructive (related term)|optimistic (related term)|supportive (related term)|negative (antonym)|neutral (antonym)
+(adj)|electropositive|negative (antonym)|neutral (antonym)
+(adj)|plus|advantageous (similar term)
+(adj)|confirming|Gram-positive (similar term)|negative (antonym)
+(adj)|prescribed|formal (similar term)
+(adj)|incontrovertible|irrefutable|undeniable (similar term)
+(adj)|positivist|positivistic|empiricism|empiricist philosophy|sensationalism (related term)
+(adj)|negative (antonym)
+(adj)|plus (similar term)
+(adj)|cocksure|overconfident|confident (similar term)
+(adj)|convinced|confident|certain (similar term)|sure (similar term)
+(noun)|film (generic term)|photographic film (generic term)
+positive charge|1
+(noun)|charge (generic term)|electric charge (generic term)|negative charge (antonym)
+positive chemotaxis|1
+(noun)|chemotaxis (generic term)
+positive correlation|1
+(noun)|direct correlation|correlation (generic term)|correlational statistics (generic term)
+positive feedback|1
+(noun)|regeneration|feedback (generic term)
+positive fraud|1
+(noun)|fraud in fact|fraud (generic term)
+positive identification|1
+(noun)|identification (generic term)
+positive magnetic pole|1
+(noun)|positive pole|north-seeking pole|pole (generic term)|magnetic pole (generic term)
+positive muon|1
+(noun)|antimuon|antilepton (generic term)
+positive pole|2
+(noun)|terminal (generic term)|pole (generic term)
+(noun)|positive magnetic pole|north-seeking pole|pole (generic term)|magnetic pole (generic term)
+positive reinforcer|1
+(noun)|positive reinforcing stimulus|reinforcing stimulus (generic term)|reinforcer (generic term)|reinforcement (generic term)
+positive reinforcing stimulus|1
+(noun)|positive reinforcer|reinforcing stimulus (generic term)|reinforcer (generic term)|reinforcement (generic term)
+positive stimulus|1
+(noun)|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+positively charged|1
+(adj)|charged (similar term)
+positiveness|5
+(noun)|positivity|polarity (generic term)|sign (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|positivity|positivism|quality (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|favorableness|favourableness|advantageousness|positivity|profitableness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+(noun)|positivity|amount (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|incontrovertibility|incontrovertibleness|positivity|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+positivism|2
+(noun)|logical positivism|empiricism (generic term)|empiricist philosophy (generic term)|sensationalism (generic term)
+(noun)|positivity|positiveness|quality (generic term)|negativeness (antonym)|negativity (antonym)
+positivist|2
+(adj)|positivistic|positive|empiricism|empiricist philosophy|sensationalism (related term)
+(noun)|rationalist|nonreligious person (generic term)
+positivistic|1
+(adj)|positivist|positive|empiricism|empiricist philosophy|sensationalism (related term)
+positivity|5
+(noun)|positiveness|polarity (generic term)|sign (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|positiveness|positivism|quality (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|favorableness|favourableness|advantageousness|positiveness|profitableness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+(noun)|positiveness|amount (generic term)|negativeness (antonym)|negativity (antonym)
+(noun)|incontrovertibility|incontrovertibleness|positiveness|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+positron|1
+(noun)|antielectron|antilepton (generic term)
+positron emission tomography|1
+(noun)|PET|imaging (generic term)|tomography (generic term)
+positron emission tomography scanner|1
+(noun)|PET scanner|tomograph (generic term)
+posology|1
+(noun)|pharmacology (generic term)|pharmacological medicine (generic term)|materia medica (generic term)
+posse|1
+(noun)|posse comitatus|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+posse comitatus|1
+(noun)|posse|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+posseman|1
+(noun)|man (generic term)|adult male (generic term)
+possess|3
+(verb)|have (generic term)|feature (generic term)
+(verb)|own|have
+(verb)|dominate (generic term)
+possessed|2
+(adj)|obsessed|controlled (similar term)
+(adj)|amuck|amok|berserk|demoniac|demoniacal|insane (similar term)
+possession|7
+(noun)|ownership|control (generic term)
+(noun)|relation (generic term)
+(noun)|enchantment (generic term)|spell (generic term)|trance (generic term)
+(noun)|monomania|mania (generic term)|passion (generic term)|cacoethes (generic term)
+(noun)|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|self-control|self-possession|willpower|self-command|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(noun)|control (generic term)
+possessive|4
+(adj)|genitive|oblique|oblique case (related term)
+(adj)|acquisitive (similar term)
+(adj)|dominant (similar term)
+(noun)|genitive|genitive case|possessive case|oblique (generic term)|oblique case (generic term)
+possessive case|1
+(noun)|genitive|genitive case|possessive|oblique (generic term)|oblique case (generic term)
+possessiveness|1
+(noun)|greed (generic term)
+possessor|1
+(noun)|owner|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+posset|1
+(noun)|drink (generic term)
+possibility|4
+(noun)|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(noun)|possibleness|being (generic term)|beingness (generic term)|existence (generic term)|impossibility (antonym)
+(noun)|hypothesis|theory|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|possible action|opening|option (generic term)|alternative (generic term)|choice (generic term)
+possible|5
+(adj)|accomplishable (similar term)|achievable (similar term)|doable (similar term)|manageable (similar term)|realizable (similar term)|affirmable (similar term)|assertable (similar term)|attainable (similar term)|come-at-able (similar term)|conceivable (similar term)|contingent (similar term)|feasible (similar term)|executable (similar term)|practicable (similar term)|viable (similar term)|workable (similar term)|mathematical (similar term)|likely (related term)|practical (related term)|realistic (related term)|thinkable (related term)|impossible (antonym)
+(adj)|potential|latent (similar term)|actual (antonym)
+(adj)|conceivable|imaginable|thinkable (similar term)
+(noun)|possibility (generic term)|possible action (generic term)|opening (generic term)
+(noun)|applicant (generic term)|applier (generic term)
+possible action|1
+(noun)|possibility|opening|option (generic term)|alternative (generic term)|choice (generic term)
+possibleness|1
+(noun)|possibility|being (generic term)|beingness (generic term)|existence (generic term)|impossibility (antonym)
+possibly|3
+(adv)|perchance|perhaps|maybe|mayhap|peradventure
+(adv)|potentially
+(adv)|impossibly (antonym)
+possum|2
+(noun)|opossum|marsupial (generic term)|pouched mammal (generic term)
+(noun)|phalanger|opossum|marsupial (generic term)|pouched mammal (generic term)
+possum haw|1
+(noun)|bearberry|winterberry|Ilex decidua|holly (generic term)
+possum oak|1
+(noun)|water oak|Quercus nigra|oak (generic term)|oak tree (generic term)
+possumwood|1
+(noun)|American persimmon|Diospyros virginiana|persimmon (generic term)|persimmon tree (generic term)
+post|23
+(noun)|station|position (generic term)|place (generic term)
+(noun)|military post|military installation (generic term)
+(noun)|position|berth|office|spot|billet|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|upright (generic term)|vertical (generic term)
+(noun)|Post|Wiley Post|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+(noun)|Post|Emily Post|Emily Price Post|writer (generic term)|author (generic term)
+(noun)|Post|C. W. Post|Charles William Post|food manufacturer (generic term)
+(noun)|mail|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|stake|visual signal (generic term)
+(noun)|mail|mail service|postal service|communication (generic term)|communicating (generic term)
+(noun)|delivery (generic term)|bringing (generic term)
+(verb)|affix (generic term)|stick on (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|station|base|send|place|move (generic term)|displace (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|list (generic term)
+(verb)|carry|transfer (generic term)
+(verb)|ride horseback (generic term)
+(verb)|stake|mark (generic term)
+(verb)|put up|install (generic term)|instal (generic term)|put in (generic term)|set up (generic term)
+(verb)|mail|send|transfer (generic term)
+(verb)|brand|call (generic term)
+post-communist|1
+(adj)|political orientation|ideology|political theory (related term)
+post-free|2
+(adj)|paid (similar term)
+(adv)|post-paid
+post-hole digger|1
+(noun)|posthole digger|shovel (generic term)
+post-horse|1
+(noun)|post horse|poster|horse (generic term)|Equus caballus (generic term)
+post-impressionist|1
+(noun)|Postimpressionist|Post-impressionist|painter (generic term)
+post-it|1
+(noun)|Post-It|notepaper (generic term)
+post-maturity|1
+(noun)|post-menopause|maturity (generic term)|matureness (generic term)
+post-menopause|1
+(noun)|post-maturity|maturity (generic term)|matureness (generic term)
+post-mortem|2
+(noun)|postmortem|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|autopsy|necropsy|postmortem|PM|postmortem examination|post-mortem examination|examination (generic term)|scrutiny (generic term)
+post-mortem examination|1
+(noun)|autopsy|necropsy|postmortem|post-mortem|PM|postmortem examination|examination (generic term)|scrutiny (generic term)
+post-obit bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+post-office box|1
+(noun)|Post-Office box|PO Box|POB|call box|letter box|compartment (generic term)
+post-office box number|1
+(noun)|PO box number|PO Box No|box number|mailing address (generic term)
+post-paid|1
+(adv)|post-free
+post-rotational nystagmus|1
+(noun)|nystagmus (generic term)
+post and lintel|1
+(noun)|structure (generic term)|construction (generic term)
+post card|1
+(noun)|postcard|postal card|mailing-card|card (generic term)
+post chaise|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+post doc|2
+(noun)|postdoctoral|postdoc|grant-in-aid (generic term)
+(noun)|postdoc|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)|research worker (generic term)|researcher (generic term)|investigator (generic term)
+post exchange|1
+(noun)|PX|commissary (generic term)
+post hoc|1
+(noun)|post hoc ergo propter hoc|logical fallacy (generic term)
+post hoc ergo propter hoc|1
+(noun)|post hoc|logical fallacy (generic term)
+post hole|1
+(noun)|posthole|hole (generic term)
+post horn|1
+(noun)|wind instrument (generic term)|wind (generic term)
+post horse|1
+(noun)|post-horse|poster|horse (generic term)|Equus caballus (generic term)
+post house|1
+(noun)|posthouse|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+post meridiem|2
+(adj)|p.m.|pm|postmeridian (similar term)
+(adv)|P.M.|PM
+post oak|1
+(noun)|box white oak|brash oak|iron oak|Quercus stellata|oak (generic term)|oak tree (generic term)
+post office|3
+(noun)|local post office|branch (generic term)|subdivision (generic term)|arm (generic term)
+(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency (generic term)
+(noun)|child's game (generic term)
+post road|1
+(noun)|road (generic term)|route (generic term)
+postage|2
+(noun)|charge (generic term)
+(noun)|postage stamp|stamp|token (generic term)|item (generic term)
+postage meter|1
+(noun)|meter (generic term)
+postage stamp|1
+(noun)|postage|stamp|token (generic term)|item (generic term)
+postal|1
+(adj)|communication|communicating (related term)
+postal card|1
+(noun)|postcard|post card|mailing-card|card (generic term)
+postal clerk|1
+(noun)|mail clerk|clerk (generic term)
+postal code|1
+(noun)|ZIP code|ZIP|postcode|code (generic term)
+postal order|1
+(noun)|money order|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+postal rate commission|1
+(noun)|Postal Rate Commission|independent agency (generic term)
+postal service|1
+(noun)|mail|mail service|post|communication (generic term)|communicating (generic term)
+postbag|1
+(noun)|mailbag|bag (generic term)
+postbiblical|1
+(adj)|sacred text|sacred writing|religious writing|religious text (related term)
+postbox|1
+(noun)|mailbox|letter box|maildrop (generic term)
+postcard|1
+(noun)|post card|postal card|mailing-card|card (generic term)
+postcava|1
+(noun)|inferior vena cava|vena cava (generic term)
+postcentral gyrus|1
+(noun)|central gyrus (generic term)
+postcode|1
+(noun)|ZIP code|ZIP|postal code|code (generic term)
+postdate|2
+(verb)|follow|predate (antonym)
+(verb)|chronologize (generic term)|chronologise (generic term)|predate (antonym)
+postdiluvian|2
+(adj)|flood|inundation|deluge|alluvion (related term)
+(noun)|organism (generic term)|being (generic term)
+postdoc|2
+(noun)|postdoctoral|post doc|grant-in-aid (generic term)
+(noun)|post doc|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)|research worker (generic term)|researcher (generic term)|investigator (generic term)
+postdoctoral|2
+(adj)|scholar|scholarly person|bookman|student|research worker|researcher|investigator (related term)
+(noun)|postdoc|post doc|grant-in-aid (generic term)
+poste restante|2
+(noun)|general delivery|unit (generic term)|social unit (generic term)
+(noun)|note (generic term)|annotation (generic term)|notation (generic term)
+poster|3
+(noun)|posting|placard|notice|bill|card|sign (generic term)
+(noun)|bill poster|bill sticker|worker (generic term)
+(noun)|post horse|post-horse|horse (generic term)|Equus caballus (generic term)
+poster board|1
+(noun)|paperboard|posterboard|cardboard (generic term)|composition board (generic term)
+poster boy|1
+(noun)|poster child (generic term)
+poster child|1
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+poster color|1
+(noun)|tempera|poster paint|poster colour|water-base paint (generic term)
+poster colour|1
+(noun)|tempera|poster paint|poster color|water-base paint (generic term)
+poster girl|1
+(noun)|poster child (generic term)
+poster paint|1
+(noun)|tempera|poster color|poster colour|water-base paint (generic term)
+posterboard|1
+(noun)|paperboard|poster board|cardboard (generic term)|composition board (generic term)
+posterior|3
+(adj)|back (similar term)|hind (similar term)|hinder (similar term)|caudal (similar term)|retral (similar term)|back (related term)|anterior (antonym)
+(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 (generic term)
+(noun)|back tooth|tooth (generic term)
+posterior cardinal vein|1
+(noun)|cardinal vein (generic term)
+posterior cerebral artery|1
+(noun)|cerebral artery (generic term)|arteria cerebri (generic term)
+posterior facial vein|1
+(noun)|retromandibular vein|vena retromandibularis|facial vein (generic term)|vena facialis (generic term)
+posterior labial veins|1
+(noun)|venae labiales posteriores|labial vein (generic term)|vena labialis (generic term)
+posterior meningeal artery|1
+(noun)|meningeal artery (generic term)|arteria meningea (generic term)
+posterior naris|1
+(noun)|naris (generic term)
+posterior pituitary|1
+(noun)|posterior pituitary gland|neurohypophysis|pars nervosa|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+posterior pituitary gland|1
+(noun)|posterior pituitary|neurohypophysis|pars nervosa|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+posterior serratus muscle|1
+(noun)|serratus posterior|musculus serratus posterior|serratus (generic term)|serratus muscles (generic term)
+posterior synechia|1
+(noun)|synechia (generic term)
+posterior temporal artery|1
+(noun)|arteria temporalis posterior|temporal artery (generic term)
+posterior vein of the left ventricle|1
+(noun)|vena posterior ventriculi sinistri|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+posteriority|2
+(noun)|position (generic term)|spatial relation (generic term)|anteriority (antonym)
+(noun)|subsequentness|subsequence|lateness (generic term)|priority (antonym)
+posterity|2
+(noun)|descendants|biological group (generic term)
+(noun)|generation (generic term)
+postern|1
+(noun)|gate (generic term)
+postexilic|1
+(adj)|exile|deportation|expatriation|transportation (related term)
+postfix|1
+(noun)|suffix|affix (generic term)|ending (generic term)|termination (generic term)
+postfix notation|1
+(noun)|suffix notation|reverse Polish notation|parenthesis-free notation (generic term)
+postganglionic|1
+(adj)|neural structure (related term)
+postglacial|1
+(adj)|period|geological period (related term)
+postgraduate|2
+(adj)|graduate|high (similar term)
+(noun)|graduate student|grad student|collegian (generic term)|college man (generic term)|college boy (generic term)
+posthitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+posthole|1
+(noun)|post hole|hole (generic term)
+posthole digger|1
+(noun)|post-hole digger|shovel (generic term)
+posthouse|1
+(noun)|post house|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+posthumous|1
+(adj)|late (similar term)
+posthumous birth|1
+(noun)|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)
+posthypnotic amnesia|1
+(noun)|selective amnesia (generic term)
+posthypnotic suggestion|1
+(noun)|suggestion (generic term)
+postiche|2
+(noun)|hairpiece|false hair|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|fake|sham|imitation (generic term)|counterfeit (generic term)|forgery (generic term)
+postictal|1
+(adj)|attack (related term)
+postilion|1
+(noun)|postillion|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+postillion|1
+(noun)|postilion|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+postimpressionist|1
+(noun)|Postimpressionist|Post-impressionist|painter (generic term)
+postindustrial|1
+(adj)|industrial (similar term)
+posting|3
+(noun)|poster|placard|notice|bill|card|sign (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|mailing|transmission (generic term)|transmittal (generic term)|transmitting (generic term)
+postlude|1
+(noun)|voluntary (generic term)
+postman|1
+(noun)|mailman|mail carrier|letter carrier|carrier|deliveryman (generic term)|delivery boy (generic term)|deliverer (generic term)
+postmark|2
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+(verb)|frank|stamp (generic term)
+postmaster|1
+(noun)|master (generic term)
+postmaster general|1
+(noun)|official (generic term)|functionary (generic term)
+postmature infant|1
+(noun)|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+postmenopausal|1
+(adj)|biological time (related term)
+postmeridian|1
+(adj)|post meridiem (similar term)|p.m. (similar term)|pm (similar term)|antemeridian (antonym)
+postmillennial|1
+(adj)|doctrine|philosophy|philosophical system|school of thought|ism (related term)
+postmistress|1
+(noun)|postmaster (generic term)
+postmodern|1
+(adj)|postmodernist|genre (related term)
+postmodernism|1
+(noun)|genre (generic term)
+postmodernist|1
+(adj)|postmodern|genre (related term)
+postmortal|1
+(adj)|postmortem|antemortem (antonym)
+postmortem|4
+(adj)|postmortal|antemortem (antonym)
+(adj)|succeeding (similar term)
+(noun)|post-mortem|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|autopsy|necropsy|post-mortem|PM|postmortem examination|post-mortem examination|examination (generic term)|scrutiny (generic term)
+postmortem examination|1
+(noun)|autopsy|necropsy|postmortem|post-mortem|PM|post-mortem examination|examination (generic term)|scrutiny (generic term)
+postnasal drip|1
+(noun)|symptom (generic term)
+postnatal|1
+(adj)|postpartum|prenatal (antonym)|perinatal (antonym)
+postnuptial|1
+(adj)|ceremony|ceremonial|ceremonial occasion|observance (related term)|prenuptial (antonym)
+postoperative|1
+(adj)|surgical (similar term)|operative (similar term)
+postpaid|1
+(adj)|prepaid|paid (similar term)
+postpartum|1
+(adj)|postnatal|prenatal (antonym)|perinatal (antonym)
+postpone|1
+(verb)|prorogue|hold over|put over|table|shelve|set back|defer|remit|put off|delay (generic term)
+postponed|1
+(adj)|deferred|delayed (similar term)
+postponement|2
+(noun)|delay|hold|time lag|wait|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|deferment|deferral|delay (generic term)|holdup (generic term)
+postponer|1
+(noun)|procrastinator|cunctator|delayer (generic term)
+postpose|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+postposition|1
+(noun)|place (generic term)|position (generic term)
+postpositive|1
+(adj)|place|position (related term)
+postprandial|1
+(adj)|preprandial (antonym)
+postscript|2
+(noun)|PS|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|addendum|supplement|matter (generic term)
+posttraumatic amnesia|1
+(noun)|anterograde amnesia|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+posttraumatic epilepsy|1
+(noun)|traumatic epilepsy|epilepsy (generic term)
+posttraumatic stress disorder|1
+(noun)|PTSD|anxiety disorder (generic term)
+postulant|1
+(noun)|petitioner (generic term)|suppliant (generic term)|supplicant (generic term)|requester (generic term)
+postulate|4
+(noun)|posit|proposition (generic term)
+(verb)|contend|claim (generic term)
+(verb)|posit|presuppose (generic term)|suppose (generic term)
+(verb)|necessitate|ask|need|require|take|involve|call for|demand|obviate (antonym)
+postulation|2
+(noun)|predication|declaration (generic term)
+(noun)|request|petition|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+postulational|1
+(adj)|axiomatic|axiomatical|proposition (related term)
+postulator|2
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|asserter (generic term)|declarer (generic term)|affirmer (generic term)|asseverator (generic term)|avower (generic term)
+postum|1
+(noun)|Postum|coffee substitute (generic term)
+postural|1
+(adj)|bodily property (related term)
+postural hypotension|1
+(noun)|orthostatic hypotension|hypotension (generic term)
+posture|6
+(noun)|position|attitude|bodily property (generic term)
+(noun)|carriage|bearing|bodily property (generic term)
+(noun)|position|stance|attitude (generic term)|mental attitude (generic term)
+(noun)|military capability|military strength|strength|military posture|capability (generic term)|capableness (generic term)
+(verb)|pose|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|model|pose|sit|expose (generic term)|exhibit (generic term)|display (generic term)
+posturer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+posturing|1
+(noun)|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+postwar|1
+(adj)|prewar (antonym)
+posy|1
+(noun)|bouquet|corsage|nosegay|flower arrangement (generic term)
+pot|10
+(noun)|cooking utensil (generic term)|cookware (generic term)|vessel (generic term)
+(noun)|toilet|can|commode|crapper|potty|stool|throne|plumbing fixture (generic term)
+(noun)|potful|containerful (generic term)
+(noun)|flowerpot|container (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|jackpot|kitty|stake (generic term)|stakes (generic term)|bet (generic term)|wager (generic term)
+(noun)|potbelly|bay window|corporation|tummy|belly (generic term)|paunch (generic term)
+(noun)|potentiometer|potential divider (generic term)|voltage divider (generic term)
+(noun)|grass|green goddess|dope|weed|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(verb)|implant (generic term)|engraft (generic term)|embed (generic term)|imbed (generic term)|plant (generic term)
+pot-au-feu|1
+(noun)|stew (generic term)
+pot-trained|1
+(adj)|potty-trained|toilet-trained|trained (similar term)
+pot cheese|1
+(noun)|cottage cheese|farm cheese|farmer's cheese|cheese (generic term)
+pot farm|1
+(noun)|garden (generic term)
+pot likker|1
+(noun)|liquor|pot liquor|broth (generic term)|stock (generic term)
+pot liquor|1
+(noun)|liquor|pot likker|broth (generic term)|stock (generic term)
+pot marigold|1
+(noun)|common marigold|ruddles|Scotch marigold|Calendula officinalis|calendula (generic term)
+pot marjoram|1
+(noun)|oregano|marjoram|wild marjoram|winter sweet|Origanum vulgare|origanum (generic term)
+pot metal|2
+(noun)|cast iron (generic term)
+(noun)|alloy (generic term)|metal (generic term)
+pot plant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+pot roast|1
+(noun)|roast (generic term)|joint (generic term)
+potable|2
+(adj)|drinkable|undrinkable (antonym)
+(noun)|beverage|drink|drinkable|food (generic term)|nutrient (generic term)|liquid (generic term)
+potage|1
+(noun)|pottage|soup (generic term)
+potage st. germain|1
+(noun)|green pea soup|potage St. Germain|soup (generic term)
+potamogale|1
+(noun)|otter shrew|Potamogale velox|insectivore (generic term)
+potamogale velox|1
+(noun)|otter shrew|potamogale|Potamogale velox|insectivore (generic term)
+potamogalidae|1
+(noun)|Potamogalidae|family Potamogalidae|mammal family (generic term)
+potamogeton|1
+(noun)|Potamogeton|genus Potamogeton|monocot genus (generic term)|liliopsid genus (generic term)
+potamogeton americanus|1
+(noun)|loddon pondweed|Potamogeton nodosus|Potamogeton americanus|pondweed (generic term)
+potamogeton crispus|1
+(noun)|curleyleaf pondweed|curled pondweed|Potamogeton crispus|pondweed (generic term)
+potamogeton gramineous|1
+(noun)|variously-leaved pondweed|Potamogeton gramineous|pondweed (generic term)
+potamogeton nodosus|1
+(noun)|loddon pondweed|Potamogeton nodosus|Potamogeton americanus|pondweed (generic term)
+potamogetonaceae|1
+(noun)|Potamogetonaceae|family Potamogetonaceae|pondweed family|monocot family (generic term)|liliopsid family (generic term)
+potamophis|1
+(noun)|Potamophis|genus Potamophis|reptile genus (generic term)
+potamophis striatula|1
+(noun)|eastern ground snake|Potamophis striatula|Haldea striatula|colubrid snake (generic term)|colubrid (generic term)
+potash|1
+(noun)|caustic potash|potassium hydroxide|hydroxide (generic term)|hydrated oxide (generic term)|lye (generic term)
+potash alum|1
+(noun)|alum|potassium alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+potash muriate|1
+(noun)|potassium chloride|potassium muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+potassium|1
+(noun)|K|atomic number 19|metallic element (generic term)|metal (generic term)
+potassium-argon dating|1
+(noun)|dating (generic term)|geological dating (generic term)
+potassium acid carbonate|1
+(noun)|potassium bicarbonate|potassium hydrogen carbonate|bicarbonate (generic term)|hydrogen carbonate (generic term)
+potassium alum|1
+(noun)|alum|potash alum|aluminum (generic term)|aluminium (generic term)|Al (generic term)|atomic number 13 (generic term)|double salt (generic term)
+potassium bicarbonate|1
+(noun)|potassium acid carbonate|potassium hydrogen carbonate|bicarbonate (generic term)|hydrogen carbonate (generic term)
+potassium bitartrate|1
+(noun)|cream of tartar|tartar|potassium hydrogen tartrate|salt (generic term)
+potassium bromide|1
+(noun)|salt (generic term)|restrainer (generic term)
+potassium carbonate|1
+(noun)|carbonate (generic term)
+potassium chlorate|1
+(noun)|salt (generic term)
+potassium chloride|1
+(noun)|potassium muriate|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+potassium cyanide|1
+(noun)|cyanide (generic term)
+potassium dichromate|1
+(noun)|salt (generic term)
+potassium ferrocyanide|1
+(noun)|yellow prussiate of potash|ferrocyanide (generic term)
+potassium hydrogen carbonate|1
+(noun)|potassium bicarbonate|potassium acid carbonate|bicarbonate (generic term)|hydrogen carbonate (generic term)
+potassium hydrogen tartrate|1
+(noun)|cream of tartar|tartar|potassium bitartrate|salt (generic term)
+potassium hydroxide|1
+(noun)|potash|caustic potash|hydroxide (generic term)|hydrated oxide (generic term)|lye (generic term)
+potassium iodide|1
+(noun)|iodide (generic term)
+potassium muriate|1
+(noun)|potassium chloride|potash muriate|K-Dur 20|Kaochlor|K-lor|Klorvess|K-lyte|chloride (generic term)
+potassium nitrate|1
+(noun)|saltpeter|saltpetre|niter|nitre|nitrate (generic term)
+potassium permanganate|1
+(noun)|permanganate of potash|permanganate (generic term)
+potassium sodium tartrate|1
+(noun)|Rochelle salt|Rochelle salts|double salt (generic term)
+potation|2
+(noun)|draft|draught|tipple|drink (generic term)
+(noun)|drinking (generic term)|imbibing (generic term)|imbibition (generic term)
+potato|2
+(noun)|white potato|Irish potato|murphy|spud|tater|root vegetable (generic term)|solanaceous vegetable (generic term)
+(noun)|white potato|white potato vine|Solanum tuberosum|vine (generic term)
+potato bean|3
+(noun)|yam bean|Pachyrhizus tuberosus|vine (generic term)
+(noun)|groundnut|groundnut vine|Indian potato|wild bean|Apios americana|Apios tuberosa|vine (generic term)
+(noun)|groundnut|wild bean|tuber (generic term)
+potato beetle|1
+(noun)|Colorado potato beetle|Colorado beetle|potato bug|Leptinotarsa decemlineata|leaf beetle (generic term)|chrysomelid (generic term)
+potato blight|1
+(noun)|potato mold|potato disease|potato mildew|potato murrain|blight (generic term)
+potato bug|1
+(noun)|Colorado potato beetle|Colorado beetle|potato beetle|Leptinotarsa decemlineata|leaf beetle (generic term)|chrysomelid (generic term)
+potato chip|1
+(noun)|chip|crisp|Saratoga chip|snack food (generic term)
+potato disease|1
+(noun)|potato blight|potato mold|potato mildew|potato murrain|blight (generic term)
+potato family|1
+(noun)|Solanaceae|family Solanaceae|asterid dicot family (generic term)
+potato fern|2
+(noun)|Marattia salicina|fern (generic term)
+(noun)|Solanopteris bifrons|fern (generic term)
+potato fungus|1
+(noun)|Pellicularia filamentosa|Rhizoctinia solani|fungus (generic term)
+potato mildew|1
+(noun)|potato blight|potato mold|potato disease|potato murrain|blight (generic term)
+potato mold|1
+(noun)|potato blight|potato disease|potato mildew|potato murrain|blight (generic term)
+potato mosaic|1
+(noun)|mosaic (generic term)
+potato moth|1
+(noun)|potato tuber moth|splitworm|Phthorimaea operculella|gelechiid (generic term)|gelechiid moth (generic term)
+potato murrain|1
+(noun)|potato blight|potato mold|potato disease|potato mildew|blight (generic term)
+potato nose|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|hammer nose|copper nose|rhinopathy (generic term)
+potato pancake|1
+(noun)|latke|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+potato peel|1
+(noun)|potato skin|potato peelings|snack food (generic term)
+potato peelings|1
+(noun)|potato skin|potato peel|snack food (generic term)
+potato race|1
+(noun)|race (generic term)
+potato salad|1
+(noun)|salad (generic term)
+potato scab bacteria|1
+(noun)|Streptomyces scabies|streptomyces (generic term)
+potato skin|1
+(noun)|potato peel|potato peelings|snack food (generic term)
+potato tree|2
+(noun)|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub (generic term)|bush (generic term)
+(noun)|Solanum crispum|vine (generic term)
+potato tuber moth|1
+(noun)|potato moth|splitworm|Phthorimaea operculella|gelechiid (generic term)|gelechiid moth (generic term)
+potato tuberworm|1
+(noun)|Phthorimaea operculella|caterpillar (generic term)
+potato vine|2
+(noun)|giant potato creeper|Solanum wendlandii|vine (generic term)
+(noun)|Solanum jasmoides|vine (generic term)
+potato wart|1
+(noun)|plant disease (generic term)
+potato wart fungus|1
+(noun)|Synchytrium endobioticum|fungus (generic term)
+potato worm|1
+(noun)|tomato hornworm|Manduca quinquemaculata|caterpillar (generic term)
+potato yellow-dwarf virus|1
+(noun)|plant virus (generic term)
+potato yellow dwarf|1
+(noun)|yellow dwarf of potato|yellow dwarf (generic term)
+potawatomi|2
+(noun)|Potawatomi|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Potawatomi|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+potbellied|1
+(adj)|abdominous|paunchy|fat (similar term)
+potbelly|2
+(noun)|pot|bay window|corporation|tummy|belly (generic term)|paunch (generic term)
+(noun)|potbelly stove|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+potbelly stove|1
+(noun)|potbelly|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+potboiler|1
+(noun)|literary composition (generic term)|literary work (generic term)
+potbound|1
+(adj)|rootbound|planted (similar term)
+potboy|1
+(noun)|potman|employee (generic term)
+poteen|1
+(noun)|Irish (generic term)|Irish whiskey (generic term)|Irish whisky (generic term)
+potence|1
+(noun)|potency|physiological state (generic term)|physiological condition (generic term)|impotence (antonym)|impotency (antonym)
+potency|4
+(noun)|effectiveness|strength|power (generic term)|powerfulness (generic term)
+(noun)|potential|potentiality|possibility (generic term)|possibleness (generic term)
+(noun)|potence|physiological state (generic term)|physiological condition (generic term)|impotence (antonym)|impotency (antonym)
+(noun)|authority|authorization|authorisation|dominance|say-so|control (generic term)
+potent|4
+(adj)|powerful|influential (similar term)
+(adj)|strong|powerful (similar term)
+(adj)|strong|stiff|equipotent (similar term)|multipotent (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|fertile (related term)|powerful (related term)|impotent (antonym)
+(adj)|virile|impotent (antonym)
+potentate|1
+(noun)|dictator|ruler (generic term)|swayer (generic term)
+potential|4
+(adj)|possible|latent (similar term)|actual (antonym)
+(adj)|expected|likely|prospective (similar term)
+(noun)|potentiality|potency|possibility (generic term)|possibleness (generic term)
+(noun)|electric potential|potential difference|potential drop|voltage|electrical phenomenon (generic term)
+potential difference|1
+(noun)|electric potential|potential|potential drop|voltage|electrical phenomenon (generic term)
+potential divider|1
+(noun)|voltage divider|resistor (generic term)|resistance (generic term)
+potential drop|1
+(noun)|electric potential|potential|potential difference|voltage|electrical phenomenon (generic term)
+potential energy|1
+(noun)|P.E.|mechanical energy (generic term)
+potential unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+potentiality|2
+(noun)|potential|potency|possibility (generic term)|possibleness (generic term)
+(noun)|capability|capableness|aptitude (generic term)|incapability (antonym)
+potentially|1
+(adv)|possibly
+potentiate|1
+(verb)|enhance (generic term)|heighten (generic term)|raise (generic term)
+potentiation|1
+(noun)|synergy (generic term)|synergism (generic term)
+potentilla|1
+(noun)|Potentilla|genus Potentilla|rosid dicot genus (generic term)
+potentilla anserina|1
+(noun)|silverweed|goose-tansy|goose grass|Potentilla anserina|cinquefoil (generic term)|five-finger (generic term)
+potentiometer|2
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|pot|potential divider (generic term)|voltage divider (generic term)
+potently|1
+(adv)|powerfully
+poterium|1
+(noun)|Poterium|genus Poterium|rosid dicot genus (generic term)
+poterium sanguisorba|1
+(noun)|salad burnet|burnet bloodwort|pimpernel|Poterium sanguisorba|herb (generic term)|herbaceous plant (generic term)
+potful|1
+(noun)|pot|containerful (generic term)
+pothead|1
+(noun)|head (generic term)
+pother|3
+(noun)|dither|fuss|tizzy|flap|agitation (generic term)
+(verb)|agitate (generic term)|rouse (generic term)|turn on (generic term)|charge (generic term)|commove (generic term)|excite (generic term)|charge up (generic term)
+(verb)|dither|flap|fuss (generic term)|niggle (generic term)|fret (generic term)
+potherb|1
+(noun)|vegetable (generic term)|veggie (generic term)
+potholder|1
+(noun)|pad (generic term)
+pothole|1
+(noun)|chuckhole|hole (generic term)|hollow (generic term)
+potholed|1
+(adj)|pocked|pockmarked|rough (similar term)|unsmooth (similar term)
+potholer|1
+(noun)|spelunker|speleologist|spelaeologist|explorer (generic term)|adventurer (generic term)
+pothook|1
+(noun)|hook (generic term)|claw (generic term)
+pothos|2
+(noun)|liana (generic term)
+(noun)|golden pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana (generic term)
+pothouse|1
+(noun)|public house|pub|saloon|gin mill|taphouse|tavern (generic term)|tap house (generic term)
+pothunter|3
+(noun)|archeologist (generic term)|archaeologist (generic term)
+(noun)|contestant (generic term)
+(noun)|hunter (generic term)|huntsman (generic term)
+potion|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+potlatch|1
+(noun)|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)|fete (generic term)|feast (generic term)|fiesta (generic term)
+potluck|1
+(noun)|meal (generic term)|repast (generic term)
+potman|1
+(noun)|potboy|employee (generic term)
+potomac|2
+(noun)|Potomac|Potomac River|river (generic term)
+(noun)|Potomac|Washington (generic term)|Washington D.C. (generic term)|American capital (generic term)|capital of the United States (generic term)
+potomac river|1
+(noun)|Potomac|Potomac River|river (generic term)
+potomania|1
+(noun)|dipsomania|alcoholism|mania (generic term)|passion (generic term)|cacoethes (generic term)
+potoroinae|1
+(noun)|Potoroinae|subfamily Potoroinae|mammal family (generic term)
+potoroo|1
+(noun)|rat kangaroo (generic term)|kangaroo rat (generic term)
+potorous|1
+(noun)|Potorous|genus Potorous|mammal genus (generic term)
+potos|1
+(noun)|Potos|genus Potos|mammal genus (generic term)
+potos caudivolvulus|1
+(noun)|kinkajou|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid (generic term)
+potos flavus|1
+(noun)|kinkajou|honey bear|potto|Potos flavus|Potos caudivolvulus|procyonid (generic term)
+potpie|1
+(noun)|dish (generic term)
+potpourri|3
+(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|smorgasbord|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|medley|pastiche|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|perfume (generic term)|essence (generic term)
+potsherd|1
+(noun)|shard (generic term)|sherd (generic term)|fragment (generic term)
+potshot|2
+(noun)|shooting (generic term)|shot (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+pott's disease|1
+(noun)|Pott's disease|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+pottage|2
+(noun)|stew (generic term)
+(noun)|potage|soup (generic term)
+potted|3
+(adj)|unpotted (antonym)
+(adj)|preserved (similar term)
+(adj)|abridged (similar term)
+potter|4
+(noun)|thrower|ceramicist|ceramist|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(verb)|putter|mess around|tinker|monkey|monkey around|muck about|muck around|work (generic term)
+(verb)|putter|busy (generic term)|occupy (generic term)
+(verb)|putter|potter around|putter around|move (generic term)
+potter's clay|1
+(noun)|potter's earth|clay (generic term)
+potter's earth|1
+(noun)|potter's clay|clay (generic term)
+potter's field|1
+(noun)|cemetery (generic term)|graveyard (generic term)|burial site (generic term)|burial ground (generic term)|burying ground (generic term)|memorial park (generic term)|necropolis (generic term)
+potter's wheel|1
+(noun)|wheel (generic term)
+potter around|1
+(verb)|putter|potter|putter around|move (generic term)
+potter bee|1
+(noun)|bee (generic term)
+potter wasp|1
+(noun)|vespid (generic term)|vespid wasp (generic term)
+potterer|1
+(noun)|putterer|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+pottery|3
+(noun)|clayware|ceramic ware (generic term)
+(noun)|trade (generic term)|craft (generic term)
+(noun)|workshop (generic term)|shop (generic term)
+pottle|1
+(noun)|pot (generic term)
+potto|2
+(noun)|kinkajou|honey bear|Potos flavus|Potos caudivolvulus|procyonid (generic term)
+(noun)|kinkajou|Perodicticus potto|lemur (generic term)
+potty|5
+(adj)|unimportant (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+(adj)|addlebrained|addlepated|puddingheaded|muddleheaded|confused (similar term)
+(noun)|toilet|can|commode|crapper|pot|stool|throne|plumbing fixture (generic term)
+(noun)|chamberpot|thunder mug|receptacle (generic term)
+potty-trained|1
+(adj)|pot-trained|toilet-trained|trained (similar term)
+potty chair|1
+(noun)|potty seat|toilet (generic term)|can (generic term)|commode (generic term)|crapper (generic term)|pot (generic term)|potty (generic term)|stool (generic term)|throne (generic term)
+potty seat|1
+(noun)|potty chair|toilet (generic term)|can (generic term)|commode (generic term)|crapper (generic term)|pot (generic term)|potty (generic term)|stool (generic term)|throne (generic term)
+pouch|6
+(noun)|bag (generic term)
+(noun)|sac|sack|pocket|cavity (generic term)|enclosed space (generic term)
+(noun)|pocket|sac (generic term)
+(verb)|bag (generic term)
+(verb)|mail (generic term)|get off (generic term)
+(verb)|bulge|protrude|change shape (generic term)|change form (generic term)|deform (generic term)
+pouch-shaped|1
+(adj)|bursiform|pouchlike|saclike|concave (similar term)
+pouched|1
+(adj)|sac (related term)
+pouched mammal|1
+(noun)|marsupial|metatherian (generic term)
+pouched mole|1
+(noun)|marsupial mole|Notoryctus typhlops|marsupial (generic term)|pouched mammal (generic term)
+pouched mouse|1
+(noun)|marsupial mouse|marsupial rat|dasyurid marsupial (generic term)|dasyurid (generic term)
+pouched rat|1
+(noun)|gopher|pocket gopher|pocket rat (generic term)
+pouchlike|1
+(adj)|bursiform|pouch-shaped|saclike|concave (similar term)
+poudrin|1
+(noun)|ice crystal|snow mist|diamond dust|ice needle|frost snow|frost mist|crystal (generic term)
+pouf|2
+(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|queer|poof|poove|gay man (generic term)|shirtlifter (generic term)
+(noun)|ottoman|pouffe|puff|hassock|seat (generic term)
+pouf paste|1
+(noun)|puff batter|pate a choux|batter (generic term)
+pouffe|1
+(noun)|ottoman|pouf|puff|hassock|seat (generic term)
+poulenc|1
+(noun)|Poulenc|Francis Poulenc|composer (generic term)|pianist (generic term)|piano player (generic term)
+poulet|1
+(noun)|chicken|volaille|poultry (generic term)
+poulette|1
+(noun)|sauce (generic term)
+poulterer|1
+(noun)|poultryman|merchant (generic term)|merchandiser (generic term)
+poultice|2
+(noun)|cataplasm|plaster|dressing (generic term)|medical dressing (generic term)
+(verb)|plaster|dress (generic term)
+poultry|2
+(noun)|domestic fowl|fowl|gallinaceous bird (generic term)|gallinacean (generic term)
+(noun)|bird (generic term)|fowl (generic term)
+poultryman|1
+(noun)|poulterer|merchant (generic term)|merchandiser (generic term)
+pounce|2
+(noun)|leap (generic term)|leaping (generic term)|spring (generic term)|saltation (generic term)|bound (generic term)|bounce (generic term)
+(verb)|swoop|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+pound|20
+(noun)|lb|avoirdupois unit (generic term)
+(noun)|British pound|British pound sterling|pound sterling|quid|British monetary unit (generic term)
+(noun)|Syrian pound|Syrian monetary unit (generic term)
+(noun)|Sudanese pound|Sudanese monetary unit (generic term)
+(noun)|Lebanese pound|Lebanese monetary unit (generic term)
+(noun)|Irish pound|Irish punt|punt|Irish monetary unit (generic term)
+(noun)|Egyptian pound|Egyptian monetary unit (generic term)
+(noun)|Cypriot pound|Cypriot monetary unit (generic term)
+(noun)|lbf.|force unit (generic term)
+(noun)|Pound|Ezra Pound|Ezra Loomis Pound|writer (generic term)|author (generic term)|poet (generic term)
+(noun)|dog pound|enclosure (generic term)
+(noun)|hammer|hammering|pounding|blow (generic term)
+(verb)|thump|poke|hit (generic term)
+(verb)|ram|ram down|thrust (generic term)
+(verb)|lumber|walk (generic term)
+(verb)|beat|thump|move (generic term)
+(verb)|pound off|partition (generic term)|partition off (generic term)
+(verb)|pound up|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|impound|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+pound-foolish|1
+(adj)|wasteful (similar term)
+pound cake|1
+(noun)|cake (generic term)
+pound net|1
+(noun)|trap (generic term)
+pound off|1
+(verb)|pound|partition (generic term)|partition off (generic term)
+pound sterling|1
+(noun)|British pound|pound|British pound sterling|quid|British monetary unit (generic term)
+pound up|1
+(verb)|pound|restrain (generic term)|confine (generic term)|hold (generic term)
+poundage|4
+(noun)|charge (generic term)
+(noun)|fee (generic term)
+(noun)|weight (generic term)
+(noun)|impoundment|impounding|internment|seizure (generic term)
+poundal|1
+(noun)|pdl|force unit (generic term)
+pounder|2
+(noun)|force unit (generic term)
+(noun)|pestle|muller|tool (generic term)
+pounding|3
+(noun)|buffeting|blow (generic term)|bump (generic term)
+(noun)|throb|throbbing|pulse (generic term)|pulsation (generic term)|heartbeat (generic term)|beat (generic term)
+(noun)|hammer|pound|hammering|blow (generic term)
+pounds per square inch|1
+(noun)|psi|pressure unit (generic term)
+pour|6
+(verb)|move (generic term)|displace (generic term)|pour down (related term)
+(verb)|swarm|stream|teem|pullulate|crowd (generic term)|crowd together (generic term)
+(verb)|decant|pour out|pour (generic term)
+(verb)|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|pelt|stream|rain cats and dogs|rain buckets|rain (generic term)|rain down (generic term)
+pour cold water on|1
+(verb)|throw cold water on|discourage (generic term)
+pour down|1
+(verb)|toss off|pop|bolt down|belt down|down|drink down|kill|drink (generic term)|imbibe (generic term)
+pour forth|1
+(verb)|spill|shed|pour (generic term)
+pour out|4
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|decant|pour|pour (generic term)
+(verb)|spill over|spill out|pour (generic term)|swarm (generic term)|stream (generic term)|teem (generic term)|pullulate (generic term)
+(verb)|effuse|pour (generic term)
+pourboire|1
+(noun)|gratuity|tip|baksheesh|bakshish|bakshis|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+pouring|1
+(adj)|gushing|running (similar term)
+pousse-cafe|1
+(noun)|liqueur (generic term)|cordial (generic term)
+poussin|1
+(noun)|Poussin|Nicolas Poussin|old master (generic term)
+pout|5
+(noun)|moue|wry face|grimace (generic term)|face (generic term)
+(noun)|eelpout|blennioid fish (generic term)|blennioid (generic term)
+(noun)|horned pout|hornpout|Ameiurus Melas|bullhead (generic term)
+(verb)|sulk|brood
+(verb)|mop|mow|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+pouter|2
+(noun)|sourpuss|picklepuss|gloomy Gus|unwelcome person (generic term)|persona non grata (generic term)
+(noun)|pouter pigeon|pigeon (generic term)
+pouter pigeon|1
+(noun)|pouter|pigeon (generic term)
+pouteria|1
+(noun)|Pouteria|genus Pouteria|dicot genus (generic term)|magnoliopsid genus (generic term)
+pouteria campechiana nervosa|1
+(noun)|canistel|canistel tree|Pouteria campechiana nervosa|fruit tree (generic term)
+pouteria zapota|1
+(noun)|marmalade tree|mammee|sapote|Pouteria zapota|Calocarpum zapota|tree (generic term)
+poverty|1
+(noun)|poorness|impoverishment|financial condition (generic term)|economic condition (generic term)|wealth (antonym)
+poverty-stricken|1
+(adj)|destitute|impoverished|indigent|necessitous|needy|poor (similar term)
+poverty grass|1
+(noun)|beach heather|Hudsonia tomentosa|subshrub (generic term)|suffrutex (generic term)
+poverty level|1
+(noun)|poverty line|personal income (generic term)
+poverty line|1
+(noun)|poverty level|personal income (generic term)
+poverty trap|1
+(noun)|situation (generic term)|position (generic term)
+pow|1
+(noun)|prisoner of war|POW|prisoner (generic term)|captive (generic term)
+pow camp|1
+(noun)|prison camp|internment camp|prisoner of war camp|POW camp|camp (generic term)
+powder|5
+(noun)|pulverization|pulverisation|solid (generic term)
+(noun)|gunpowder|explosive (generic term)
+(noun)|toiletry (generic term)|toilet article (generic term)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(verb)|make up (generic term)
+(verb)|powderize|powderise|pulverize|pulverise|disintegrate (generic term)
+powder-post termite|1
+(noun)|Cryptotermes brevis|dry-wood termite (generic term)
+powder-puff|1
+(adj)|feminine (similar term)
+powder and shot|1
+(noun)|ammunition (generic term)|ammo (generic term)
+powder blue|2
+(adj)|powdery-blue|chromatic (similar term)
+(noun)|blue (generic term)|blueness (generic term)
+powder compact|1
+(noun)|compact|case (generic term)
+powder flask|1
+(noun)|powder horn|container (generic term)
+powder horn|1
+(noun)|powder flask|container (generic term)
+powder keg|2
+(noun)|danger (generic term)
+(noun)|keg (generic term)
+powder magazine|1
+(noun)|magazine|powder store|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+powder metallurgy|1
+(noun)|metallurgy (generic term)
+powder method|1
+(noun)|powder photography|powder technique|photography (generic term)
+powder monkey|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+powder photography|1
+(noun)|powder method|powder technique|photography (generic term)
+powder room|1
+(noun)|ladies' room|public toilet (generic term)|comfort station (generic term)|public convenience (generic term)|convenience (generic term)|public lavatory (generic term)|restroom (generic term)|toilet facility (generic term)|wash room (generic term)
+powder store|1
+(noun)|magazine|powder magazine|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+powder technique|1
+(noun)|powder photography|powder method|photography (generic term)
+powdered|1
+(adj)|powdery|pulverized|pulverised|small-grained|fine-grained|fine (similar term)
+powdered ginger|1
+(noun)|ginger|spice (generic term)
+powdered milk|1
+(noun)|dry milk|dried milk|milk powder|milk (generic term)
+powdered mustard|1
+(noun)|dry mustard|emetic (generic term)|vomit (generic term)|vomitive (generic term)|nauseant (generic term)|mustard (generic term)|table mustard (generic term)
+powdered sugar|1
+(noun)|granulated sugar (generic term)
+powderer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+powderiness|1
+(noun)|fineness|smoothness (generic term)
+powderise|2
+(verb)|powderize|pulverize|pulverise|disintegrate (generic term)
+(verb)|powderize|powder|pulverize|pulverise|disintegrate (generic term)
+powderize|2
+(verb)|pulverize|pulverise|powderise|disintegrate (generic term)
+(verb)|powderise|powder|pulverize|pulverise|disintegrate (generic term)
+powderpuff|1
+(noun)|puff|pad (generic term)
+powdery|2
+(adj)|powdered|pulverized|pulverised|small-grained|fine-grained|fine (similar term)
+(adj)|light (similar term)|light-colored (similar term)
+powdery-blue|1
+(adj)|powder blue|chromatic (similar term)
+powdery mildew|1
+(noun)|mildew (generic term)
+powell|2
+(noun)|Powell|Colin Powell|Colin luther Powell|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Powell|Cecil Frank Powell|physicist (generic term)
+power|10
+(noun)|powerfulness|quality (generic term)|powerlessness (antonym)|powerlessness (antonym)
+(noun)|physical phenomenon (generic term)
+(noun)|ability|cognition (generic term)|knowledge (generic term)|noesis (generic term)|inability (antonym)
+(noun)|world power|major power|great power|superpower|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+(noun)|office|state (generic term)
+(noun)|force|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|might|mightiness|strength (generic term)
+(noun)|exponent|index|mathematical notation (generic term)
+(noun)|baron|big businessman|business leader|king|magnate|mogul|top executive|tycoon|businessman (generic term)|man of affairs (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+power-assisted|1
+(adj)|assisted (similar term)|aided (similar term)
+power-assisted steering|1
+(noun)|power steering|steering system (generic term)|steering mechanism (generic term)
+power-dive|1
+(verb)|dive (generic term)|plunge (generic term)|plunk (generic term)
+power-driven|1
+(adj)|powered (similar term)
+power-station worker|1
+(noun)|power worker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+power brake|1
+(noun)|brake (generic term)
+power breakfast|1
+(noun)|meeting (generic term)|get together (generic term)|breakfast (generic term)
+power broker|1
+(noun)|powerbroker|important person (generic term)|influential person (generic term)|personage (generic term)
+power cable|1
+(noun)|power line|cable (generic term)|line (generic term)|transmission line (generic term)
+power company|1
+(noun)|power service|electric company|light company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+power cord|1
+(noun)|cord (generic term)|electric cord (generic term)
+power couple|1
+(noun)|couple (generic term)|mates (generic term)|match (generic term)
+power dive|1
+(noun)|dive (generic term)|nose dive (generic term)|nosedive (generic term)
+power drill|1
+(noun)|power tool (generic term)|drill (generic term)
+power failure|1
+(noun)|power outage|breakdown (generic term)|equipment failure (generic term)
+power grid|1
+(noun)|power system|grid|facility (generic term)|installation (generic term)
+power hammer|1
+(noun)|hammer|power tool (generic term)
+power hunger|1
+(noun)|status seeking|ambition (generic term)|ambitiousness (generic term)
+power law|1
+(noun)|Stevens' law|Stevens' power law|law (generic term)|law of nature (generic term)
+power line|1
+(noun)|power cable|cable (generic term)|line (generic term)|transmission line (generic term)
+power loading|1
+(noun)|loading (generic term)
+power loom|1
+(noun)|loom (generic term)
+power meter|1
+(noun)|electric meter|meter (generic term)
+power module|1
+(noun)|module (generic term)
+power mower|1
+(noun)|motor mower|lawn mower (generic term)|mower (generic term)|hand mower (antonym)
+power of appointment|1
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+power of attorney|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+power outage|1
+(noun)|power failure|breakdown (generic term)|equipment failure (generic term)
+power pack|1
+(noun)|electrical converter (generic term)
+power plant|1
+(noun)|power station|powerhouse|station (generic term)
+power play|3
+(noun)|squeeze play|squeeze|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|football play (generic term)
+(noun)|play (generic term)
+power point|1
+(noun)|point|wall socket (generic term)|wall plug (generic term)|electric outlet (generic term)|electrical outlet (generic term)|outlet (generic term)|electric receptacle (generic term)
+power politics|1
+(noun)|gunboat diplomacy|diplomacy (generic term)|diplomatic negotiations (generic term)
+power pylon|1
+(noun)|pylon|tower (generic term)
+power saw|1
+(noun)|saw|sawing machine|power tool (generic term)
+power series|1
+(noun)|series (generic term)
+power service|1
+(noun)|power company|electric company|light company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+power shovel|1
+(noun)|excavator|digger|shovel|machine (generic term)
+power station|1
+(noun)|power plant|powerhouse|station (generic term)
+power steering|1
+(noun)|power-assisted steering|steering system (generic term)|steering mechanism (generic term)
+power structure|1
+(noun)|hierarchy|pecking order|organization (generic term)|organisation (generic term)
+power system|1
+(noun)|power grid|grid|facility (generic term)|installation (generic term)
+power takeoff|1
+(noun)|PTO|device (generic term)
+power tool|1
+(noun)|machine (generic term)|tool (generic term)
+power train|1
+(noun)|gearing|gear|geartrain|train|wheelwork (generic term)
+power trip|1
+(noun)|control (generic term)
+power unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+power user|1
+(noun)|computer user (generic term)
+power walking|1
+(noun)|cardiopulmonary exercise (generic term)
+power worker|1
+(noun)|power-station worker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+powerboat|1
+(noun)|motorboat|boat (generic term)
+powerbroker|1
+(noun)|power broker|important person (generic term)|influential person (generic term)|personage (generic term)
+powered|1
+(adj)|battery-powered (similar term)|high-powered (similar term)|hopped-up (similar term)|power-driven (similar term)|steam-powered (similar term)|supercharged (similar term)|unpowered (antonym)
+powerful|6
+(adj)|almighty (similar term)|all-powerful (similar term)|omnipotent (similar term)|coercive (similar term)|compelling (similar term)|mighty (similar term)|muscular (similar term)|potent (similar term)|strong (similar term)|puissant (similar term)|regent (similar term)|regnant (similar term)|reigning (similar term)|ruling (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|potent (related term)|strong (related term)|stiff (related term)|strong (related term)|powerless (antonym)
+(adj)|knock-down|strong (similar term)
+(adj)|potent|influential (similar term)
+(adj)|brawny|hefty|muscular|sinewy|strong (similar term)
+(adj)|herculean|superhuman (similar term)
+(adv)|mighty|right
+powerfully|2
+(adv)|strongly
+(adv)|potently
+powerfulness|1
+(noun)|power|quality (generic term)|powerlessness (antonym)|powerlessness (antonym)
+powerhouse|3
+(noun)|human dynamo|ball of fire|fireball|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|team (generic term)|squad (generic term)
+(noun)|power station|power plant|station (generic term)
+powerless|1
+(adj)|feeble (similar term)|nerveless (similar term)|helpless (similar term)|incapacitated (similar term)|low-powered (similar term)|weak (similar term)|impotent (related term)|ineffective (related term)|uneffective (related term)|ineffectual (related term)|weak (related term)|powerful (antonym)
+powerlessness|1
+(noun)|impotence|impotency|quality (generic term)|power (antonym)|powerfulness (antonym)
+powerwash|1
+(verb)|pressure-wash|wash (generic term)|launder (generic term)
+powhatan|3
+(noun)|Powhatan|Wahunsonacock|Indian chief (generic term)|Indian chieftain (generic term)|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Powhatan|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Powhatan|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+powwow|3
+(noun)|huddle|conference (generic term)|group discussion (generic term)
+(noun)|council (generic term)
+(verb)|hash out (generic term)|discuss (generic term)|talk over (generic term)
+powys|3
+(noun)|Powys|Llewelyn Powys|writer (generic term)|author (generic term)
+(noun)|Powys|Theodore Francis Powys|writer (generic term)|author (generic term)
+(noun)|Powys|John Cowper Powys|writer (generic term)|author (generic term)
+pox|2
+(noun)|syphilis|syph|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+(noun)|contagious disease (generic term)|contagion (generic term)
+poxvirus|1
+(noun)|animal virus (generic term)
+poyang|1
+(noun)|Poyang|lake (generic term)
+poyou|1
+(noun)|peludo|Euphractus sexcinctus|armadillo (generic term)
+pozsony|1
+(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital (generic term)
+ppk|1
+(noun)|Kurdistan Workers Party|Kurdistan Labor Pary|Partiya Karkeran Kurdistan|PPK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+pplo|1
+(noun)|pleuropneumonialike organism|PPLO|mycoplasma (generic term)
+ppp|1
+(noun)|palatopharyngoplasty|PPP|uvulopalatopharyngoplasty|UPPP|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+pr|3
+(noun)|praseodymium|Pr|atomic number 59|metallic element (generic term)|metal (generic term)
+(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth (generic term)
+(noun)|public relations|PR|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+pr man|1
+(noun)|press agent|publicity man|public relations man|PR man|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+practicability|1
+(noun)|practicableness|utility (generic term)|usefulness (generic term)|impracticableness (antonym)|impracticability (antonym)
+practicable|2
+(adj)|operable|practical (similar term)
+(adj)|feasible|executable|viable|workable|possible (similar term)
+practicableness|1
+(noun)|practicability|utility (generic term)|usefulness (generic term)|impracticableness (antonym)|impracticability (antonym)
+practicably|1
+(adv)|feasibly
+practical|4
+(adj)|applicable (similar term)|applicative (similar term)|applicatory (similar term)|applied (similar term)|functional (similar term)|interoperable (similar term)|matter-of-fact (similar term)|pragmatic (similar term)|pragmatical (similar term)|operable (similar term)|practicable (similar term)|serviceable (similar term)|unimaginative (similar term)|working (similar term)|concrete (related term)|possible (related term)|realistic (related term)|serviceable (related term)|impractical (antonym)
+(adj)|hardheaded|hard-nosed|pragmatic|realistic (similar term)
+(adj)|virtual|realistic (similar term)
+(adj)|applied (similar term)
+practical application|1
+(noun)|application|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+practical joke|1
+(noun)|antic (generic term)|joke (generic term)|prank (generic term)|trick (generic term)|caper (generic term)|put-on (generic term)
+practical joker|1
+(noun)|prankster|cut-up|trickster|tricker|hoaxer|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+practical nurse|1
+(noun)|licensed practical nurse|LPN|nurse (generic term)
+practical politics|1
+(noun)|realpolitik|politics (generic term)|political science (generic term)|government (generic term)
+practicality|1
+(noun)|utility (generic term)|usefulness (generic term)|impracticality (antonym)
+practically|1
+(adv)|much
+practice|9
+(noun)|pattern|activity (generic term)
+(noun)|exercise|drill|practice session|recitation|training (generic term)|preparation (generic term)|grooming (generic term)
+(noun)|praxis|implementation (generic term)|effectuation (generic term)
+(noun)|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(verb)|drill|exercise|practise|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+(verb)|apply|use
+(verb)|practise|exercise|do
+(verb)|rehearse|practise|perform (generic term)|execute (generic term)|do (generic term)
+practice bundling|1
+(verb)|bundle|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+practice game|1
+(noun)|exhibition game|game (generic term)
+practice of law|1
+(noun)|law|learned profession (generic term)
+practice of medicine|1
+(noun)|medicine|learned profession (generic term)
+practice range|1
+(noun)|range (generic term)
+practice session|1
+(noun)|exercise|practice|drill|recitation|training (generic term)|preparation (generic term)|grooming (generic term)
+practice teacher|1
+(noun)|student teacher|college student (generic term)|university student (generic term)
+practiced|2
+(adj)|adept|expert|good|proficient|skillful|skilful|skilled (similar term)
+(adj)|practised|experienced (similar term)|experient (similar term)
+practician|1
+(noun)|practitioner|professional (generic term)|professional person (generic term)
+practise|3
+(verb)|rehearse|practice|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|practice|exercise|do
+(verb)|drill|exercise|practice|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+practised|1
+(adj)|practiced|experienced (similar term)|experient (similar term)
+practitioner|1
+(noun)|practician|professional (generic term)|professional person (generic term)
+praenomen|1
+(noun)|first name (generic term)|given name (generic term)|forename (generic term)
+praesidium|1
+(noun)|presidium|committee (generic term)|commission (generic term)
+praetor|1
+(noun)|pretor|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+praetorial|1
+(adj)|praetorian|pretorian|pretorial|judge|justice|jurist|magistrate (related term)
+praetorian|3
+(adj)|praetorial|pretorian|pretorial|judge|justice|jurist|magistrate (related term)
+(adj)|Praetorian|Pretorian|corrupt (similar term)
+(noun)|Praetorian Guard|Praetorian|bodyguard (generic term)|escort (generic term)
+praetorian guard|2
+(noun)|Praetorian Guard|Praetorian|bodyguard (generic term)|escort (generic term)
+(noun)|Praetorian Guard|guard (generic term)|bodyguard (generic term)
+praetorium|1
+(noun)|pretorium|tent (generic term)|collapsible shelter (generic term)
+praetorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+prag|1
+(noun)|Prague|Praha|Prag|Czech capital|national capital (generic term)
+pragmatic|4
+(adj)|matter-of-fact|pragmatical|practical (similar term)
+(adj)|pragmatical|philosophical doctrine|philosophical theory (related term)
+(adj)|hardheaded|hard-nosed|practical|realistic (similar term)
+(noun)|pragmatic sanction|imperial decree (generic term)
+pragmatic sanction|1
+(noun)|pragmatic|imperial decree (generic term)
+pragmatical|2
+(adj)|pragmatic|philosophical doctrine|philosophical theory (related term)
+(adj)|matter-of-fact|pragmatic|practical (similar term)
+pragmatics|1
+(noun)|linguistics (generic term)
+pragmatism|2
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|realism|practicality (generic term)
+pragmatist|1
+(noun)|realist (generic term)
+prague|1
+(noun)|Prague|Praha|Prag|Czech capital|national capital (generic term)
+praha|1
+(noun)|Prague|Praha|Prag|Czech capital|national capital (generic term)
+praia|1
+(noun)|Praia|Cidade de Praia|capital of Cape Verde|national capital (generic term)
+prairia sabbatia|1
+(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia (generic term)
+prairial|1
+(noun)|Prairial|Revolutionary calendar month (generic term)
+prairie|1
+(noun)|grassland (generic term)
+prairie anemone|1
+(noun)|American pasqueflower|Eastern pasque flower|wild crocus|lion's beard|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower (generic term)|pasque flower (generic term)
+prairie aster|1
+(noun)|Aster turbinellis|aster (generic term)
+prairie berry|1
+(noun)|trompillo|white horse nettle|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+prairie bird's-foot trefoil|1
+(noun)|compass plant|prairie lotus|prairie trefoil|Lotus americanus|subshrub (generic term)|suffrutex (generic term)
+prairie chicken|1
+(noun)|prairie grouse|prairie fowl|grouse (generic term)
+prairie coneflower|2
+(noun)|Ratibida tagetes|coneflower (generic term)
+(noun)|long-head coneflower|Ratibida columnifera|coneflower (generic term)
+prairie cordgrass|1
+(noun)|freshwater cordgrass|slough grass|Spartina pectinmata|cordgrass (generic term)|cord grass (generic term)
+prairie crab|1
+(noun)|Iowa crab|Iowa crab apple|western crab apple|Malus ioensis|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+prairie dock|1
+(noun)|American feverfew|wild quinine|Parthenium integrifolium|subshrub (generic term)|suffrutex (generic term)
+prairie dog|1
+(noun)|prairie marmot|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+prairie fire|1
+(noun)|grassfire|fire (generic term)
+prairie fowl|1
+(noun)|prairie chicken|prairie grouse|grouse (generic term)
+prairie fox|1
+(noun)|kit fox|Vulpes velox|fox (generic term)
+prairie gentian|1
+(noun)|tulip gentian|bluebell|Eustoma grandiflorum|wildflower (generic term)|wild flower (generic term)
+prairie golden aster|1
+(noun)|hairy golden aster|Heterotheca villosa|Chrysopsis villosa|wildflower (generic term)|wild flower (generic term)
+prairie gourd|2
+(noun)|fruit (generic term)
+(noun)|prairie gourd vine|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+prairie gourd vine|1
+(noun)|prairie gourd|Missouri gourd|wild pumpkin|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+prairie grass|1
+(noun)|broom beard grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass (generic term)
+prairie grouse|1
+(noun)|prairie chicken|prairie fowl|grouse (generic term)
+prairie lotus|1
+(noun)|prairie bird's-foot trefoil|compass plant|prairie trefoil|Lotus americanus|subshrub (generic term)|suffrutex (generic term)
+prairie mallow|1
+(noun)|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow (generic term)|false mallow (generic term)
+prairie marmot|1
+(noun)|prairie dog|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+prairie mimosa|1
+(noun)|prickle-weed|Desmanthus ilinoensis|herb (generic term)|herbaceous plant (generic term)
+prairie orchid|1
+(noun)|prairie white-fringed orchis|Habenaria leucophaea|fringed orchis (generic term)|fringed orchid (generic term)
+prairie rattler|1
+(noun)|prairie rattlesnake|Western rattlesnake|Crotalus viridis|rattlesnake (generic term)|rattler (generic term)
+prairie rattlesnake|1
+(noun)|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake (generic term)|rattler (generic term)
+prairie rocket|1
+(noun)|flower (generic term)
+prairie sage|1
+(noun)|western mugwort|white sage|cudweed|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+prairie sagewort|1
+(noun)|wormwood sage|Artemisia frigida|wormwood (generic term)
+prairie schooner|1
+(noun)|covered wagon|Conestoga wagon|Conestoga|prairie wagon|wagon (generic term)|waggon (generic term)
+prairie smoke|1
+(noun)|purple avens|Geum triflorum|avens (generic term)
+prairie soil|1
+(noun)|soil (generic term)|dirt (generic term)
+prairie star|1
+(noun)|Lithophragma parviflorum|wildflower (generic term)|wild flower (generic term)
+prairie state|1
+(noun)|Illinois|Prairie State|Land of Lincoln|IL|American state (generic term)
+prairie sunflower|1
+(noun)|Helianthus petiolaris|sunflower (generic term)|helianthus (generic term)
+prairie trefoil|1
+(noun)|prairie bird's-foot trefoil|compass plant|prairie lotus|Lotus americanus|subshrub (generic term)|suffrutex (generic term)
+prairie trillium|1
+(noun)|prairie wake-robin|Trillium recurvatum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+prairie vole|1
+(noun)|Microtus ochrogaster|vole (generic term)|field mouse (generic term)
+prairie wagon|1
+(noun)|covered wagon|Conestoga wagon|Conestoga|prairie schooner|wagon (generic term)|waggon (generic term)
+prairie wake-robin|1
+(noun)|prairie trillium|Trillium recurvatum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+prairie white-fringed orchid|1
+(noun)|Platanthera leucophea|orchid (generic term)|orchidaceous plant (generic term)
+prairie white-fringed orchis|1
+(noun)|prairie orchid|Habenaria leucophaea|fringed orchis (generic term)|fringed orchid (generic term)
+prairie willow|1
+(noun)|Salix humilis|willow (generic term)|willow tree (generic term)
+prairie wolf|1
+(noun)|coyote|brush wolf|Canis latrans|wolf (generic term)
+praise|3
+(noun)|congratulations|kudos|extolment|approval (generic term)|commendation (generic term)
+(noun)|worship (generic term)
+(verb)|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)|criticize (antonym)
+praiseful|1
+(adj)|laudatory|praising|complimentary (similar term)
+praiseworthily|1
+(adv)|admirably|laudably|commendable
+praiseworthiness|1
+(noun)|laudability|laudableness|worthiness (generic term)
+praiseworthy|1
+(adj)|applaudable|commendable|laudable|worthy (similar term)
+praising|1
+(adj)|laudatory|praiseful|complimentary (similar term)
+praisworthiness|1
+(noun)|worth (generic term)
+prajapati|1
+(noun)|Prajapati|Hindu deity (generic term)
+prakrit|1
+(noun)|Prakrit|Indic (generic term)|Indo-Aryan (generic term)
+prakritic|1
+(adj)|Prakritic|Indic|Indo-Aryan (related term)
+praline|1
+(noun)|candy (generic term)|confect (generic term)
+pram|1
+(noun)|baby buggy|baby carriage|carriage|perambulator|stroller|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+prance|5
+(noun)|strut|swagger|gait (generic term)
+(verb)|tittup|swagger|ruffle|strut|sashay|cock|walk (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|ride (generic term)|sit (generic term)
+(verb)|ride horseback (generic term)
+prancer|1
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+prandial|1
+(adj)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|victuals (related term)
+prang|2
+(noun)|crash (generic term)|wreck (generic term)
+(verb)|crash (generic term)
+prang up|1
+(verb)|impregnate|knock up|bang up|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+prank|4
+(noun)|buffoonery|clowning|japery|frivolity|harlequinade|folly (generic term)|foolery (generic term)|tomfoolery (generic term)|craziness (generic term)|lunacy (generic term)|indulgence (generic term)
+(noun)|antic|joke|trick|caper|put-on|diversion (generic term)|recreation (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+prankish|1
+(adj)|impish|implike|mischievous|pixilated|puckish|wicked|playful (similar term)
+prankishness|1
+(noun)|rascality|roguishness|naughtiness (generic term)|mischievousness (generic term)|badness (generic term)
+prankster|1
+(noun)|cut-up|trickster|tricker|hoaxer|practical joker|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+praseodymium|1
+(noun)|Pr|atomic number 59|metallic element (generic term)|metal (generic term)
+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 (generic term)
+prate|2
+(noun)|prattle|idle talk|blether|chin music|yak (generic term)|yack (generic term)|yakety-yak (generic term)|chatter (generic term)|cackle (generic term)
+(verb)|chatter|piffle|palaver|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+prater|1
+(noun)|chatterer|babbler|chatterbox|magpie|spouter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+pratfall|2
+(noun)|spill (generic term)|tumble (generic term)|fall (generic term)
+(noun)|blunder|blooper|bloomer|bungle|foul-up|fuckup|flub|botch|boner|boo-boo|mistake (generic term)|error (generic term)|fault (generic term)
+pratincole|1
+(noun)|glareole|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+prattle|2
+(noun)|prate|idle talk|blether|chin music|yak (generic term)|yack (generic term)|yakety-yak (generic term)|chatter (generic term)|cackle (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+prattler|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+praunus|1
+(noun)|Praunus|genus Praunus|arthropod genus (generic term)
+pravachol|1
+(noun)|pravastatin|Pravachol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+pravastatin|1
+(noun)|Pravachol|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+prawn|3
+(noun)|shrimp|seafood (generic term)
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+(verb)|fish (generic term)
+praxis|1
+(noun)|practice|implementation (generic term)|effectuation (generic term)
+praxiteles|1
+(noun)|Praxiteles|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+pray|2
+(verb)|commune (generic term)
+(verb)|beg|implore|plead (generic term)|beg off (related term)
+praya|1
+(noun)|siphonophore (generic term)
+prayer|5
+(noun)|supplication|worship (generic term)
+(noun)|petition|orison|request (generic term)|asking (generic term)
+(noun)|entreaty|appeal|request (generic term)|asking (generic term)
+(noun)|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|supplicant|religious person (generic term)
+prayer beads|1
+(noun)|rosary|beads (generic term)|string of beads (generic term)
+prayer book|1
+(noun)|prayerbook|book (generic term)
+prayer mat|1
+(noun)|prayer rug|rug (generic term)|carpet (generic term)|carpeting (generic term)
+prayer meeting|1
+(noun)|prayer service|service (generic term)|religious service (generic term)|divine service (generic term)
+prayer of azariah and song of the three children|1
+(noun)|Prayer of Azariah and Song of the Three Children|book (generic term)
+prayer rug|1
+(noun)|prayer mat|rug (generic term)|carpet (generic term)|carpeting (generic term)
+prayer service|1
+(noun)|prayer meeting|service (generic term)|religious service (generic term)|divine service (generic term)
+prayer shawl|1
+(noun)|tallith|tallis|shawl (generic term)
+prayer wheel|1
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+prayerbook|1
+(noun)|prayer book|book (generic term)
+prayerful|1
+(adj)|pious (similar term)
+praying mantid|1
+(noun)|praying mantis|Mantis religioso|mantis (generic term)|mantid (generic term)
+praying mantis|1
+(noun)|praying mantid|Mantis religioso|mantis (generic term)|mantid (generic term)
+prazosin|1
+(noun)|Minipress|antihypertensive (generic term)|antihypertensive drug (generic term)|alpha blocker (generic term)|alpha-blocker (generic term)|alpha-adrenergic blocker (generic term)|alpha-adrenergic blocking agent (generic term)
+prc|1
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+pre-christian|1
+(adj)|pre-Christian|era|epoch (related term)
+pre-columbian|1
+(adj)|pre-Columbian
+pre-eclampsia|1
+(noun)|preeclampsia|toxemia of pregnancy (generic term)|toxaemia of pregnancy (generic term)|toxemia (generic term)|toxaemia (generic term)
+pre-eminently|1
+(adv)|preeminently
+pre-empt|1
+(noun)|preemptive bid|preempt|bid (generic term)|bidding (generic term)
+pre-emption|4
+(noun)|preemption|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+(noun)|preemption|legal right (generic term)
+(noun)|preemption|right (generic term)
+(noun)|preemption|appropriation (generic term)
+pre-emptive|1
+(adj)|preemptive|preventive (similar term)|preventative (similar term)
+pre-emptive strike|1
+(noun)|surprise attack (generic term)|coup de main (generic term)
+pre-emptor|2
+(noun)|preemptor|appropriator (generic term)
+(noun)|preemptor|bidder (generic term)
+pre-existent|1
+(adj)|preexistent|preexisting|pre-existing|antecedent (similar term)|preceding (similar term)
+pre-existing|1
+(adj)|preexistent|pre-existent|preexisting|antecedent (similar term)|preceding (similar term)
+pre-jurassic|1
+(adj)|pre-Jurassic|period|geological period (related term)
+pre-raphaelite|2
+(adj)|Pre-Raphaelite|artist|creative person (related term)
+(noun)|Pre-Raphaelite|artist (generic term)|creative person (generic term)
+pre-socratic|2
+(adj)|presocratic|pre-Socratic|philosopher|Athenian (related term)
+(noun)|pre-Socratic|philosopher (generic term)
+preach|2
+(verb)|prophesy|lecture (generic term)|talk (generic term)
+(verb)|advocate|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)
+preacher|1
+(noun)|preacher man|sermonizer|sermoniser|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+preacher man|1
+(noun)|preacher|sermonizer|sermoniser|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+preachification|1
+(noun)|moralizing (generic term)|moralization (generic term)|moralisation (generic term)
+preachify|1
+(verb)|sermonize|sermonise|moralize|moralise|preach (generic term)|advocate (generic term)
+preaching|2
+(noun)|sermon|discourse|address (generic term)|speech (generic term)
+(noun)|sermon|lecture (generic term)|speech (generic term)|talking to (generic term)
+preachment|1
+(noun)|homily|sermon (generic term)|discourse (generic term)|preaching (generic term)
+preachy|1
+(adj)|instructive (similar term)|informative (similar term)
+preadolescent|1
+(adj)|preteen|young (similar term)|immature (similar term)
+preakness|1
+(noun)|Preakness|thoroughbred race (generic term)
+preamble|2
+(noun)|introduction (generic term)
+(verb)|precede (generic term)|preface (generic term)|premise (generic term)|introduce (generic term)
+preanal|1
+(adj)|orifice|opening|porta (related term)
+prearrange|1
+(verb)|arrange (generic term)|set (generic term)
+prearranged|1
+(adj)|planned (similar term)
+prearrangement|1
+(noun)|agreement (generic term)|arrangement (generic term)
+preassemble|1
+(verb)|prefabricate|produce (generic term)|make (generic term)|create (generic term)
+prebend|1
+(noun)|stipend (generic term)
+prebendary|1
+(noun)|canon (generic term)
+precambrian|1
+(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon (generic term)|aeon (generic term)
+precambrian aeon|1
+(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon (generic term)|aeon (generic term)
+precambrian eon|1
+(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon (generic term)|aeon (generic term)
+precambrian period|1
+(noun)|Precambrian|Precambrian eon|Precambrian aeon|Precambrian period|eon (generic term)|aeon (generic term)
+precancerous|1
+(adj)|malignant tumor|malignant neoplasm|metastatic tumor (related term)
+precarious|4
+(adj)|unstable|uneasy (similar term)
+(adj)|parlous|perilous|touch-and-go|dangerous (similar term)|unsafe (similar term)
+(adj)|insecure (similar term)
+(adj)|shaky|insecure (similar term)|unsafe (similar term)
+precariousness|2
+(noun)|dangerousness (generic term)
+(noun)|uncertainty|uncertainness|quality (generic term)|certainty (antonym)
+precast|1
+(adj)|formed (similar term)
+precative|1
+(adj)|precatory|beseeching (similar term)
+precatory|1
+(adj)|precative|beseeching (similar term)
+precaution|3
+(noun)|safeguard|guard|measure (generic term)|step (generic term)
+(noun)|circumspection (generic term)|caution (generic term)
+(noun)|caution|care|forethought|judiciousness (generic term)
+precautional|1
+(adj)|precautionary|preventive (similar term)|preventative (similar term)
+precautionary|1
+(adj)|precautional|preventive (similar term)|preventative (similar term)
+precava|1
+(noun)|superior vena cava|vena cava (generic term)
+precede|5
+(verb)|predate|forego|forgo|antecede|antedate|postdate (antonym)
+(verb)|predate|lie (generic term)
+(verb)|come before|succeed (antonym)
+(verb)|lead|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|follow (antonym)
+(verb)|preface|premise|introduce|state (generic term)|say (generic term)|tell (generic term)
+precedence|3
+(noun)|precedency|priority|high status (generic term)
+(noun)|priority|antecedence|antecedency|anteriority|precedency|earliness (generic term)|posteriority (antonym)
+(noun)|precession|precedency|activity (generic term)
+precedency|3
+(noun)|precedence|priority|high status (generic term)
+(noun)|priority|antecedence|antecedency|anteriority|precedence|earliness (generic term)|posteriority (antonym)
+(noun)|precession|precedence|activity (generic term)
+precedent|5
+(adj)|preceding (similar term)
+(noun)|case in point|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+(noun)|case law|common law|civil law (generic term)
+(noun)|common law|case law|law (generic term)|jurisprudence (generic term)
+(noun)|subject (generic term)|topic (generic term)|theme (generic term)
+precedented|1
+(adj)|unprecedented (antonym)
+precedentedly|1
+(adv)|unprecedentedly (antonym)
+precedential|1
+(adj)|senior (similar term)
+preceding|3
+(adj)|above (similar term)|above-mentioned (similar term)|above-named (similar term)|foregoing (similar term)|introductory (similar term)|prefatorial (similar term)|prefatory (similar term)|precedent (similar term)|premedical (similar term)|preparatory (similar term)|preparative (similar term)|propaedeutic (similar term)|previous (similar term)|old (similar term)|antecedent (related term)|preceding (related term)|succeeding (antonym)
+(adj)|antecedent|anterior (similar term)|prior (similar term)|anticipatory (similar term)|prevenient (similar term)|preexistent (similar term)|pre-existent (similar term)|preexisting (similar term)|pre-existing (similar term)|preceding (related term)|subsequent (antonym)
+(adj)|past|retiring|outgoing (similar term)
+precentor|1
+(noun)|choirmaster|cantor|musician (generic term)
+precentorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+precentral gyrus|1
+(noun)|central gyrus (generic term)
+precept|2
+(noun)|principle|rule (generic term)|prescript (generic term)
+(noun)|teaching|commandment|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+preceptor|1
+(noun)|don|teacher (generic term)|instructor (generic term)
+preceptorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+precess|1
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+precession|2
+(noun)|motion (generic term)
+(noun)|precedence|precedency|activity (generic term)
+precession of the equinoxes|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+prechlorination|1
+(noun)|chlorination (generic term)
+precinct|1
+(noun)|city district (generic term)
+preciosity|1
+(noun)|preciousness|affectedness (generic term)
+precious|4
+(adj)|cherished|treasured|wanted|loved (similar term)
+(adj)|valuable (similar term)
+(adj)|cute|artful (similar term)
+(adv)|preciously
+precious coral|1
+(noun)|coral|red coral|opaque gem (generic term)
+precious metal|1
+(noun)|valuable (generic term)
+precious stone|1
+(noun)|jewel|gem|jewelry (generic term)|jewellery (generic term)
+preciously|1
+(adv)|precious
+preciousness|3
+(noun)|costliness|dearness|expensiveness (generic term)
+(noun)|invaluableness|pricelessness|valuableness|value (generic term)
+(noun)|preciosity|affectedness (generic term)
+precipice|1
+(noun)|cliff (generic term)|drop (generic term)|drop-off (generic term)
+precipitance|1
+(noun)|abruptness|precipitateness|precipitousness|precipitancy|suddenness|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+precipitancy|1
+(noun)|abruptness|precipitateness|precipitousness|precipitance|suddenness|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+precipitant|2
+(adj)|hasty|overhasty|precipitate|precipitous|hurried (similar term)
+(noun)|agent (generic term)
+precipitate|7
+(adj)|hasty|overhasty|precipitant|precipitous|hurried (similar term)
+(noun)|solid (generic term)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|come down|fall
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|hurl (generic term)|hurtle (generic term)|cast (generic term)
+precipitately|1
+(adv)|headlong
+precipitateness|1
+(noun)|abruptness|precipitousness|precipitance|precipitancy|suddenness|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+precipitating|1
+(adj)|causative (similar term)
+precipitation|6
+(noun)|indefinite quantity (generic term)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|downfall|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|drop (generic term)|fall (generic term)
+(noun)|acceleration (generic term)
+(noun)|haste|hastiness|hurry|hurriedness|speed (generic term)|swiftness (generic term)|fastness (generic term)
+precipitator|1
+(noun)|Cottrell precipitator|electrical device (generic term)
+precipitin|1
+(noun)|antibody (generic term)
+precipitous|3
+(adj)|hasty|overhasty|precipitate|precipitant|hurried (similar term)
+(adj)|cliffy (similar term)|clifflike (similar term)
+(adj)|abrupt|sharp|steep (similar term)
+precipitously|1
+(adv)|sharply
+precipitousness|2
+(noun)|abruptness|steepness|gradient (generic term)|slope (generic term)|gradualness (antonym)
+(noun)|abruptness|precipitateness|precipitance|precipitancy|suddenness|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+precis|2
+(noun)|outline|synopsis|abstract|summary (generic term)|sum-up (generic term)
+(verb)|sum up (generic term)|summarize (generic term)|summarise (generic term)|resume (generic term)
+precise|2
+(adj)|dead (similar term)|fine (similar term)|finespun (similar term)|hairsplitting (similar term)|meticulous (similar term)|punctilious (similar term)|microscopic (similar term)|nice (similar term)|skillful (similar term)|on the nose (similar term)|on the button (similar term)|pinpoint (similar term)|very (similar term)|accurate (related term)|distinct (related term)|exact (related term)|specific (related term)|imprecise (antonym)
+(adj)|accurate|exact|correct (similar term)|right (similar term)
+precisely|3
+(adv)|exactly|just
+(adv)|incisively|exactly|inexactly (antonym)|imprecisely (antonym)
+(adv)|exactly|on the nose|on the dot|on the button
+preciseness|2
+(noun)|clearcutness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)
+(noun)|precision|exactness (generic term)|exactitude (generic term)|imprecision (antonym)|impreciseness (antonym)
+precision|1
+(noun)|preciseness|exactness (generic term)|exactitude (generic term)|imprecision (antonym)|impreciseness (antonym)
+precision cookie|1
+(noun)|cookie (generic term)
+precision rifle|1
+(noun)|sniper rifle|rifle (generic term)
+preclinical|1
+(adj)|presymptomatic|diagnosis|diagnosing (related term)
+preclinical phase|1
+(noun)|preclinical trial|preclinical test|test (generic term)|trial (generic term)|run (generic term)
+preclinical test|1
+(noun)|preclinical trial|preclinical phase|test (generic term)|trial (generic term)|run (generic term)
+preclinical trial|1
+(noun)|preclinical test|preclinical phase|test (generic term)|trial (generic term)|run (generic term)
+preclude|2
+(verb)|prevent|forestall|foreclose|forbid
+(verb)|rule out|close out|obviate (generic term)|rid of (generic term)|eliminate (generic term)
+preclusion|1
+(noun)|obviation|forestalling|prevention (generic term)|bar (generic term)
+preclusive|1
+(adj)|obviating|preventive (similar term)|preventative (similar term)
+precocial|1
+(adj)|altricial (antonym)
+precocious|2
+(adj)|advanced (similar term)|intelligent (related term)|retarded (antonym)
+(adj)|early (similar term)
+precocious dentition|1
+(noun)|teething (generic term)|dentition (generic term)|odontiasis (generic term)
+precociousness|1
+(noun)|precocity|intelligence (generic term)
+precocity|1
+(noun)|precociousness|intelligence (generic term)
+precognition|1
+(noun)|foreknowledge|clairvoyance (generic term)|second sight (generic term)|extrasensory perception (generic term)|E.S.P. (generic term)|ESP (generic term)
+precognitive|1
+(adj)|clairvoyant|second-sighted|prophetic (similar term)|prophetical (similar term)
+preconceive|1
+(verb)|gestate (generic term)|conceive (generic term)|conceptualize (generic term)|conceptualise (generic term)
+preconceived idea|1
+(noun)|preconception|prepossession|parti pris|preconceived opinion|preconceived notion|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+preconceived notion|1
+(noun)|preconception|prepossession|parti pris|preconceived opinion|preconceived idea|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+preconceived opinion|1
+(noun)|preconception|prepossession|parti pris|preconceived idea|preconceived notion|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+preconception|2
+(noun)|prepossession|parti pris|preconceived opinion|preconceived idea|preconceived notion|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+(noun)|bias|prejudice|partiality (generic term)|partisanship (generic term)
+preconcerted|1
+(adj)|settled (similar term)
+precondition|4
+(noun)|condition|stipulation|premise (generic term)|premiss (generic term)|assumption (generic term)
+(noun)|given|presumption|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|prerequisite (generic term)|requirement (generic term)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+preconditioned|1
+(adj)|prepared (similar term)
+precook|1
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+precooked|1
+(adj)|prepared (similar term)
+precooled|1
+(adj)|cool (similar term)
+precordial|1
+(adj)|external organ (related term)
+precordium|1
+(noun)|external organ (generic term)
+precursor|3
+(noun)|substance (generic term)|matter (generic term)
+(noun)|forerunner|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|harbinger|forerunner|herald|indication (generic term)|indicant (generic term)
+precursory|1
+(adj)|premonitory|prophetic (similar term)|prophetical (similar term)
+predaceous|2
+(adj)|predacious|carnivorous (similar term)
+(adj)|predacious|predatory|acquisitive (similar term)
+predacious|2
+(adj)|predaceous|carnivorous (similar term)
+(adj)|predaceous|predatory|acquisitive (similar term)
+predate|4
+(verb)|precede|forego|forgo|antecede|antedate|postdate (antonym)
+(verb)|precede|lie (generic term)
+(verb)|raven|prey|forage (generic term)
+(verb)|antedate|foredate|chronologize (generic term)|chronologise (generic term)|postdate (antonym)
+predation|2
+(noun)|depredation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(noun)|hunt (generic term)|hunting (generic term)
+predator|2
+(noun)|marauder|vulture|piranha|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|predatory animal|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+predatory|3
+(adj)|marauding|raiding|offensive (similar term)
+(adj)|rapacious|raptorial|ravening|vulturine|vulturous|aggressive (similar term)
+(adj)|predaceous|predacious|acquisitive (similar term)
+predatory animal|1
+(noun)|predator|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+predecease|1
+(verb)|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+predecessor|1
+(noun)|precursor (generic term)|forerunner (generic term)
+predestinarian|2
+(adj)|theological doctrine (related term)
+(noun)|fatalist|determinist|predestinationist|necessitarian (generic term)
+predestinarianism|1
+(noun)|Protestantism (generic term)
+predestinate|2
+(adj)|foreordained|predestined|certain (similar term)|sure (similar term)
+(verb)|predestine|foreordain|predetermine (generic term)
+predestination|2
+(noun)|destiny (generic term)|fate (generic term)
+(noun)|foreordination|preordination|predetermination|theological doctrine (generic term)
+predestinationist|1
+(noun)|fatalist|determinist|predestinarian|necessitarian (generic term)
+predestine|3
+(verb)|ordain (generic term)
+(verb)|predestinate|foreordain|predetermine (generic term)
+(verb)|foreordain|preordain|predetermine (generic term)
+predestined|1
+(adj)|foreordained|predestinate|certain (similar term)|sure (similar term)
+predeterminaation|1
+(noun)|decision (generic term)|determination (generic term)|conclusion (generic term)
+predetermination|2
+(noun)|predestination|foreordination|preordination|theological doctrine (generic term)
+(noun)|determination (generic term)|finding (generic term)
+predetermine|2
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+(verb)|bias|prejudice (generic term)|prepossess (generic term)
+predetermined|1
+(adj)|preset|planned (similar term)
+predicament|1
+(noun)|quandary|plight|difficulty (generic term)
+predicate|5
+(noun)|term (generic term)
+(noun)|verb phrase|phrase (generic term)
+(verb)|relate (generic term)|interrelate (generic term)
+(verb)|proclaim|assert (generic term)|asseverate (generic term)|maintain (generic term)
+(verb)|connote|imply (generic term)
+predicate calculus|1
+(noun)|functional calculus|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+predication|1
+(noun)|postulation|declaration (generic term)
+predicative|1
+(adj)|attributive (antonym)
+predicator|1
+(noun)|construction (generic term)|grammatical construction (generic term)|expression (generic term)
+predict|2
+(verb)|foretell|prognosticate|call|forebode|anticipate|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+predictability|1
+(noun)|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)|unpredictability (antonym)
+predictable|1
+(adj)|foreseeable (similar term)|inevitable (similar term)|certain (related term)|sure (related term)|unpredictable (antonym)
+predicted|1
+(adj)|foreseen|foretold|expected (similar term)
+prediction|2
+(noun)|anticipation|prevision|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(noun)|foretelling|forecasting|prognostication|statement (generic term)
+predictive|1
+(adj)|prognostic|prognosticative|prophetic (similar term)|prophetical (similar term)
+predictor|3
+(noun)|forecaster|prognosticator|soothsayer|visionary (generic term)|illusionist (generic term)|seer (generic term)
+(noun)|information (generic term)
+(noun)|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+predictor variable|1
+(noun)|variable (generic term)|variable quantity (generic term)
+predigest|1
+(verb)|digest (generic term)
+predigested|1
+(adj)|digestible (similar term)
+predilection|2
+(noun)|preference|orientation|predisposition (generic term)
+(noun)|preference|penchant|taste|liking (generic term)
+predispose|1
+(verb)|dispose (generic term)|incline (generic term)
+predisposed|1
+(adj)|susceptible (similar term)
+predisposition|3
+(noun)|sensitivity|susceptibility (generic term)|susceptibleness (generic term)
+(noun)|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|disposition (generic term)
+prednisolone|1
+(noun)|Pediapred|Prelone|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+prednisone|1
+(noun)|Orasone|Deltasone|Liquid Pred|Meticorten|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+predominance|2
+(noun)|predomination|prepotency|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|predomination|obviousness (generic term)|noticeability (generic term)|noticeableness (generic term)|patency (generic term)
+predominant|2
+(adj)|prevailing|frequent (similar term)
+(adj)|overriding|paramount|predominate|preponderant|preponderating|dominant (similar term)
+predominantly|1
+(adv)|preponderantly
+predominate|3
+(adj)|overriding|paramount|predominant|preponderant|preponderating|dominant (similar term)
+(verb)|dominate|rule|reign|prevail
+(verb)|loom|tower|hulk|rise (generic term)|lift (generic term)|rear (generic term)
+predomination|2
+(noun)|predominance|prepotency|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|predominance|obviousness (generic term)|noticeability (generic term)|noticeableness (generic term)|patency (generic term)
+preeclampsia|1
+(noun)|pre-eclampsia|toxemia of pregnancy (generic term)|toxaemia of pregnancy (generic term)|toxemia (generic term)|toxaemia (generic term)
+preemie|1
+(noun)|premature baby|preterm baby|premature infant|preterm infant|premie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+preeminence|1
+(noun)|eminence|distinction|note|high status (generic term)
+preeminent|1
+(adj)|leading|superior (similar term)
+preeminently|1
+(adv)|pre-eminently
+preemployment training program|1
+(noun)|training program (generic term)
+preempt|4
+(noun)|preemptive bid|pre-empt|bid (generic term)|bidding (generic term)
+(verb)|displace|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|bid (generic term)|call (generic term)
+preemption|4
+(noun)|pre-emption|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+(noun)|pre-emption|legal right (generic term)
+(noun)|pre-emption|right (generic term)
+(noun)|pre-emption|appropriation (generic term)
+preemptive|1
+(adj)|pre-emptive|preventive (similar term)|preventative (similar term)
+preemptive bid|1
+(noun)|pre-empt|preempt|bid (generic term)|bidding (generic term)
+preemptive right|1
+(noun)|preemption (generic term)|pre-emption (generic term)
+preemptor|2
+(noun)|pre-emptor|appropriator (generic term)
+(noun)|pre-emptor|bidder (generic term)
+preen|3
+(verb)|plume|arrange (generic term)|set up (generic term)|clean (generic term)|make clean (generic term)
+(verb)|congratulate|gloat (generic term)|triumph (generic term)|crow (generic term)
+(verb)|primp|plume|dress|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+preen gland|1
+(noun)|uropygial gland|oil gland (generic term)
+preexist|1
+(verb)|exist (generic term)|be (generic term)
+preexistence|1
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)
+preexistent|1
+(adj)|pre-existent|preexisting|pre-existing|antecedent (similar term)|preceding (similar term)
+preexisting|1
+(adj)|preexistent|pre-existent|pre-existing|antecedent (similar term)|preceding (similar term)
+prefab|2
+(adj)|prefabricated|ready-made (similar term)
+(noun)|structure (generic term)|construction (generic term)
+prefabricate|2
+(verb)|preassemble|produce (generic term)|make (generic term)|create (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+prefabricated|1
+(adj)|prefab|ready-made (similar term)
+prefabrication|1
+(noun)|fabrication (generic term)|manufacture (generic term)
+preface|2
+(noun)|foreword|prolusion|introduction (generic term)
+(verb)|precede|premise|introduce|state (generic term)|say (generic term)|tell (generic term)
+prefaded|1
+(adj)|colorless (similar term)|colourless (similar term)
+prefatorial|1
+(adj)|introductory|prefatory|preceding (similar term)
+prefatory|1
+(adj)|introductory|prefatorial|preceding (similar term)
+prefect|1
+(noun)|administrator (generic term)|executive (generic term)
+prefectural|1
+(adj)|administrative district|administrative division|territorial division (related term)
+prefecture|2
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+prefer|4
+(verb)|like (generic term)
+(verb)|choose|opt
+(verb)|favor|favour|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+(verb)|pay (generic term)
+preferable|1
+(adj)|preferred|desirable (similar term)
+preferably|1
+(adv)|sooner|rather
+preference|4
+(noun)|penchant|predilection|taste|liking (generic term)
+(noun)|predilection|orientation|predisposition (generic term)
+(noun)|druthers|option (generic term)|alternative (generic term)|choice (generic term)
+(noun)|advantage (generic term)|vantage (generic term)
+preference shares|1
+(noun)|preferred stock|preferred shares|stock (generic term)
+preferent|1
+(adj)|favored|favorite|favourite|best-loved|pet|preferred|loved (similar term)
+preferential|1
+(adj)|discriminatory|advantageous (similar term)
+preferment|2
+(noun)|promotion (generic term)
+(noun)|accusation (generic term)|accusal (generic term)
+preferred|2
+(adj)|preferable|desirable (similar term)
+(adj)|favored|favorite|favourite|best-loved|pet|preferent|loved (similar term)
+preferred shares|1
+(noun)|preferred stock|preference shares|stock (generic term)
+preferred stock|1
+(noun)|preferred shares|preference shares|stock (generic term)
+prefiguration|2
+(noun)|model (generic term)|example (generic term)
+(noun)|foreshadowing|adumbration|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+prefigurative|1
+(adj)|adumbrative|foreshadowing|prophetic (similar term)|prophetical (similar term)
+prefigure|2
+(verb)|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|presage|betoken|foreshadow|augur|foretell|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+prefix|2
+(noun)|affix (generic term)
+(verb)|affix (generic term)|suffix (antonym)
+prefix notation|1
+(noun)|Lukasiewicz notation|Polish notation|parenthesis-free notation (generic term)
+prefixation|1
+(noun)|affixation (generic term)
+preform|1
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+preformation|1
+(noun)|theory of preformation|theory (generic term)
+prefrontal|1
+(adj)|anterior (similar term)
+prefrontal leucotomy|1
+(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leukotomy|frontal lobotomy|psychosurgery (generic term)
+prefrontal leukotomy|1
+(noun)|lobotomy|leukotomy|leucotomy|prefrontal lobotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery (generic term)
+prefrontal lobe|1
+(noun)|lobe (generic term)
+prefrontal lobotomy|1
+(noun)|lobotomy|leukotomy|leucotomy|prefrontal leukotomy|prefrontal leucotomy|frontal lobotomy|psychosurgery (generic term)
+pregnancy|1
+(noun)|gestation|maternity|physiological state (generic term)|physiological condition (generic term)
+pregnancy test|1
+(noun)|bioassay (generic term)|bio-assay (generic term)
+pregnanediol|1
+(noun)|compound (generic term)|chemical compound (generic term)
+pregnant|3
+(adj)|big (similar term)|enceinte (similar term)|expectant (similar term)|gravid (similar term)|great (similar term)|large (similar term)|heavy (similar term)|with child (similar term)|nonpregnant (antonym)
+(adj)|meaning|significant|meaningful (similar term)
+(adj)|fraught|full (similar term)
+pregnant chad|1
+(noun)|dimpled chad|dimple|chad (generic term)
+preheat|1
+(verb)|heat (generic term)|heat up (generic term)
+prehend|1
+(verb)|seize|clutch|take (generic term)|get hold of (generic term)
+prehensile|3
+(adj)|nonprehensile (antonym)
+(adj)|intelligent (similar term)
+(adj)|avaricious|covetous|grabby|grasping|greedy|acquisitive (similar term)
+prehension|1
+(noun)|grasping|taking hold|seizing|control (generic term)
+prehistoric|3
+(adj)|prehistorical|past (similar term)
+(adj)|time period|period of time|period (related term)
+(adj)|unfashionable (similar term)|unstylish (similar term)
+prehistoric culture|1
+(noun)|prehistory|time period (generic term)|period of time (generic term)|period (generic term)
+prehistorical|1
+(adj)|prehistoric|past (similar term)
+prehistory|1
+(noun)|prehistoric culture|time period (generic term)|period of time (generic term)|period (generic term)
+preindication|1
+(noun)|augury|sign|foretoken|experience (generic term)
+preinvasive cancer|1
+(noun)|carcinoma in situ|carcinoma (generic term)
+preisolate|1
+(verb)|isolate (generic term)
+prejudge|1
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+prejudgement|1
+(noun)|prejudgment|judgment (generic term)|judgement (generic term)|judging (generic term)
+prejudgment|1
+(noun)|prejudgement|judgment (generic term)|judgement (generic term)|judging (generic term)
+prejudice|3
+(noun)|bias|preconception|partiality (generic term)|partisanship (generic term)
+(verb)|disadvantage (generic term)|disfavor (generic term)|disfavour (generic term)
+(verb)|prepossess|influence (generic term)|act upon (generic term)|work (generic term)
+prejudiced|2
+(adj)|subjective (similar term)
+(adj)|discriminatory|homophobic (similar term)|jaundiced (similar term)|loaded (similar term)|racist (similar term)|antiblack (similar term)|anti-Semite (similar term)|sexist (similar term)|unprejudiced (antonym)
+prejudicial|2
+(adj)|damaging|detrimental|prejudicious|harmful (similar term)
+(adj)|prejudicious|partiality|partisanship (related term)
+prejudicious|2
+(adj)|prejudicial|partiality|partisanship (related term)
+(adj)|damaging|detrimental|prejudicial|harmful (similar term)
+prelacy|2
+(noun)|prelature|clergy (generic term)
+(noun)|prelature|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+prelapsarian|1
+(adj)|descent|gravitation (related term)
+prelate|1
+(noun)|archpriest|hierarch|high priest|primate|priest (generic term)
+prelature|2
+(noun)|prelacy|clergy (generic term)
+(noun)|prelacy|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+prelim|2
+(noun)|preliminary|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+(noun)|preliminary examination|preliminary exam|examination (generic term)|exam (generic term)|test (generic term)
+preliminary|3
+(adj)|exploratory (similar term)|explorative (similar term)
+(noun)|prelim|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+(noun)|overture|prelude|origin (generic term)|origination (generic term)|inception (generic term)
+preliminary exam|1
+(noun)|preliminary examination|prelim|examination (generic term)|exam (generic term)|test (generic term)
+preliminary examination|1
+(noun)|preliminary exam|prelim|examination (generic term)|exam (generic term)|test (generic term)
+preliminary prospectus|1
+(noun)|red herring|course catalog (generic term)|course catalogue (generic term)|prospectus (generic term)
+prelims|1
+(noun)|front matter|matter (generic term)
+preliterate|2
+(adj)|illiterate (similar term)
+(adj)|nonliterate|noncivilized (similar term)|noncivilised (similar term)
+prelone|1
+(noun)|prednisolone|Pediapred|Prelone|glucocorticoid (generic term)|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+prelude|4
+(noun)|preliminary|overture|origin (generic term)|origination (generic term)|inception (generic term)
+(noun)|music (generic term)
+(verb)|serve (generic term)|function (generic term)
+(verb)|play (generic term)|spiel (generic term)
+premarital|1
+(adj)|prenuptial|antenuptial|ceremony|ceremonial|ceremonial occasion|observance (related term)|postnuptial (antonym)
+premature|3
+(adj)|immature (related term)|full-term (antonym)
+(adj)|previous|early (similar term)
+(adj)|untimely|early (similar term)
+premature baby|1
+(noun)|preterm baby|premature infant|preterm infant|preemie|premie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+premature ejaculation|1
+(noun)|ejaculation (generic term)
+premature infant|1
+(noun)|premature baby|preterm baby|preterm infant|preemie|premie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+premature labor|1
+(noun)|premature labour|parturiency (generic term)|labor (generic term)|labour (generic term)|confinement (generic term)|lying-in (generic term)|travail (generic term)|childbed (generic term)
+premature labour|1
+(noun)|premature labor|parturiency (generic term)|labor (generic term)|labour (generic term)|confinement (generic term)|lying-in (generic term)|travail (generic term)|childbed (generic term)
+premature ventricular contraction|1
+(noun)|PVC|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+prematurely|1
+(adv)|untimely
+prematureness|1
+(noun)|prematurity|immaturity (generic term)|immatureness (generic term)
+prematurity|1
+(noun)|prematureness|immaturity (generic term)|immatureness (generic term)
+premedical|2
+(adj)|learned profession (related term)
+(adj)|preceding (similar term)
+premeditate|2
+(verb)|consider (generic term)|debate (generic term)|moot (generic term)|turn over (generic term)|deliberate (generic term)
+(verb)|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+premeditated|1
+(adj)|aforethought (similar term)|planned (similar term)|plotted (similar term)|calculated (similar term)|deliberate (similar term)|measured (similar term)|designed (similar term)|studied (similar term)|intended (related term)|planned (related term)|unpremeditated (antonym)
+premeditation|2
+(noun)|forethought|planning (generic term)|preparation (generic term)|provision (generic term)
+(noun)|mens rea (generic term)|malice aforethought (generic term)
+premenopausal|1
+(adj)|biological time (related term)
+premenstrual|1
+(adj)|discharge|emission|expelling (related term)
+premenstrual syndrome|1
+(noun)|PMS|syndrome (generic term)
+premie|1
+(noun)|premature baby|preterm baby|premature infant|preterm infant|preemie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+premier|6
+(adj)|prime|first (similar term)
+(adj)|premiere|first (similar term)
+(noun)|Prime Minister|PM|head of state (generic term)|chief of state (generic term)
+(noun)|chancellor|prime minister|head of state (generic term)|chief of state (generic term)
+(verb)|premiere
+(verb)|premiere|perform (generic term)|execute (generic term)|do (generic term)
+premiere|4
+(adj)|premier|first (similar term)
+(noun)|performance (generic term)|public presentation (generic term)
+(verb)|premier
+(verb)|premier|perform (generic term)|execute (generic term)|do (generic term)
+premiership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+premise|4
+(noun)|premiss|assumption|postulate (generic term)|posit (generic term)
+(verb)|set forth (generic term)|expound (generic term)|exposit (generic term)
+(verb)|precede|preface|introduce|state (generic term)|say (generic term)|tell (generic term)
+(verb)|premiss|presuppose (generic term)|suppose (generic term)
+premises|1
+(noun)|site (generic term)|land site (generic term)
+premiss|2
+(noun)|premise|assumption|postulate (generic term)|posit (generic term)
+(verb)|premise|presuppose (generic term)|suppose (generic term)
+premium|5
+(adj)|superior (similar term)
+(noun)|insurance premium|payment (generic term)
+(noun)|value (generic term)|economic value (generic term)
+(noun)|agio|agiotage|exchange premium|charge (generic term)
+(noun)|bounty|reward (generic term)
+premium bond|1
+(noun)|Premium Bond|bond (generic term)|bond certificate (generic term)
+premix|1
+(noun)|mix|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+premolar|1
+(noun)|bicuspid|tooth (generic term)
+premonition|2
+(noun)|foreboding|presentiment|boding|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|forewarning|warning (generic term)
+premonitory|1
+(adj)|precursory|prophetic (similar term)|prophetical (similar term)
+prenanthes|1
+(noun)|Prenanthes|genus Prenanthes|asterid dicot genus (generic term)
+prenanthes alba|1
+(noun)|white lettuce|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root (generic term)
+prenanthes purpurea|1
+(noun)|rattlesnake root|Prenanthes purpurea|herb (generic term)|herbaceous plant (generic term)
+prenanthes serpentaria|1
+(noun)|lion's foot|gall of the earth|Nabalus serpentarius|Prenanthes serpentaria|herb (generic term)|herbaceous plant (generic term)
+prenatal|1
+(adj)|antenatal|antepartum|perinatal (antonym)|postnatal (antonym)
+prenatal diagnosis|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+prenominal|1
+(adj)|attributive|attributive genitive (similar term)|predicative (antonym)
+prentice|1
+(noun)|apprentice|learner|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+prenuptial|1
+(adj)|premarital|antenuptial|ceremony|ceremonial|ceremonial occasion|observance (related term)|postnuptial (antonym)
+preoccupancy|2
+(noun)|preoccupation|absorption|engrossment|cognitive state (generic term)|state of mind (generic term)
+(noun)|preoccupation|occupation (generic term)|occupancy (generic term)|taking possession (generic term)|moving in (generic term)
+preoccupation|3
+(noun)|idea (generic term)|thought (generic term)
+(noun)|preoccupancy|absorption|engrossment|cognitive state (generic term)|state of mind (generic term)
+(noun)|preoccupancy|occupation (generic term)|occupancy (generic term)|taking possession (generic term)|moving in (generic term)
+preoccupied|2
+(adj)|bemused|deep in thought|lost|thoughtful (similar term)
+(adj)|haunted|obsessed|taken up|concerned (similar term)
+preoccupy|2
+(verb)|control (generic term)|command (generic term)
+(verb)|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+preoperative|1
+(adj)|surgical (similar term)|operative (similar term)
+preordain|1
+(verb)|predestine|foreordain|predetermine (generic term)
+preordination|1
+(noun)|predestination|foreordination|predetermination|theological doctrine (generic term)
+prep|1
+(noun)|homework|preparation|school assignment (generic term)|schoolwork (generic term)
+prep school|1
+(noun)|preparatory school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+prepackaged|1
+(adj)|prepacked|packaged (similar term)
+prepacked|1
+(adj)|prepackaged|packaged (similar term)
+prepaid|1
+(adj)|postpaid|paid (similar term)
+preparation|8
+(noun)|readying|activity (generic term)
+(noun)|formulation|compound (generic term)|chemical compound (generic term)
+(noun)|planning|provision|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|readiness|preparedness|state (generic term)
+(noun)|harmony (generic term)|musical harmony (generic term)|resolution (antonym)
+(noun)|training|grooming|activity (generic term)
+(noun)|homework|prep|school assignment (generic term)|schoolwork (generic term)
+(noun)|cooking|cookery|change of state (generic term)
+preparation fire|1
+(noun)|fire (generic term)|firing (generic term)
+preparative|1
+(adj)|preparatory|propaedeutic|preceding (similar term)
+preparatory|1
+(adj)|preparative|propaedeutic|preceding (similar term)
+preparatory school|1
+(noun)|prep school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+prepare|8
+(verb)|fix|set up|ready|gear up|set|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|cook|fix|ready|make|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|organize|organise|devise|get up|machinate|initiate (generic term)|pioneer (generic term)
+(verb)|groom|train|educate (generic term)
+(verb)|train|develop|educate|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|sound (generic term)
+(verb)|train|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+prepare for|1
+(verb)|steel oneself against|steel onself for|brace oneself for|inure (generic term)|harden (generic term)|indurate (generic term)
+prepared|3
+(adj)|braced (similar term)|embattled (similar term)|equipped (similar term)|fitted out (similar term)|oven-ready (similar term)|preconditioned (similar term)|precooked (similar term)|processed (similar term)|ready (similar term)|spread (similar term)|up (similar term)|ready (related term)|unprepared (antonym)
+(adj)|disposed|fain|inclined|willing (similar term)
+(adj)|equipped (similar term)|equipt (similar term)
+preparedness|1
+(noun)|readiness|preparation|state (generic term)
+prepay|1
+(verb)|pay (generic term)
+prepayment|1
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+preponderance|3
+(noun)|power (generic term)|powerfulness (generic term)
+(noun)|prevalence|number (generic term)|figure (generic term)
+(noun)|heaviness (generic term)|weightiness (generic term)
+preponderant|1
+(adj)|overriding|paramount|predominant|predominate|preponderating|dominant (similar term)
+preponderantly|1
+(adv)|predominantly
+preponderate|1
+(verb)|outweigh|overbalance|outbalance|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+preponderating|1
+(adj)|overriding|paramount|predominant|predominate|preponderant|dominant (similar term)
+prepose|1
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+preposition|2
+(noun)|function word (generic term)|closed-class word (generic term)
+(noun)|place (generic term)|position (generic term)
+prepositional|1
+(adj)|function word|closed-class word (related term)
+prepositional object|1
+(noun)|object of a preposition|object (generic term)
+prepositional phrase|1
+(noun)|phrase (generic term)
+prepossess|4
+(verb)|own (generic term)|have (generic term)|possess (generic term)
+(verb)|preoccupy (generic term)
+(verb)|impress (generic term)
+(verb)|prejudice|influence (generic term)|act upon (generic term)|work (generic term)
+prepossessing|1
+(adj)|attractive (similar term)
+prepossession|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|preconception|parti pris|preconceived opinion|preconceived idea|preconceived notion|opinion (generic term)|sentiment (generic term)|persuasion (generic term)|view (generic term)|thought (generic term)
+preposterous|1
+(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|ridiculous|foolish (similar term)
+preposterously|1
+(adv)|laughably|ridiculously|ludicrously
+prepotency|1
+(noun)|predominance|predomination|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+preprandial|1
+(adj)|postprandial (antonym)
+prepubertal|1
+(adj)|prepubescent|immature (similar term)
+prepuberty|1
+(noun)|time of life (generic term)
+prepubescent|1
+(adj)|prepubertal|immature (similar term)
+prepuce|1
+(noun)|foreskin|skin (generic term)|tegument (generic term)|cutis (generic term)
+prepupal|1
+(adj)|immature (similar term)
+prepyloric vein|1
+(noun)|vena pylorica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+prerecord|1
+(verb)|record (generic term)|tape (generic term)
+prerecorded|1
+(adj)|recorded (similar term)
+prerequisite|2
+(adj)|obligatory (similar term)
+(noun)|requirement|duty (generic term)|responsibility (generic term)|obligation (generic term)
+prerogative|1
+(noun)|privilege|perquisite|exclusive right|right (generic term)
+pres young|1
+(noun)|Young|Pres Young|Lester Willis Young|saxophonist (generic term)|saxist (generic term)
+presage|3
+(noun)|foreboding (generic term)|premonition (generic term)|presentiment (generic term)|boding (generic term)
+(noun)|omen|portent|prognostic|prognostication|prodigy|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+(verb)|bode|portend|auspicate|prognosticate|omen|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+presbyope|1
+(noun)|visually impaired person (generic term)
+presbyopia|1
+(noun)|hyperopia (generic term)|hypermetropia (generic term)|hypermetropy (generic term)|farsightedness (generic term)|longsightedness (generic term)
+presbyopic|1
+(adj)|farsighted|eagle-eyed (similar term)|keen-sighted (similar term)|farseeing (similar term)|longsighted (similar term)|hyperopic (similar term)|hypermetropic (similar term)|telescopic (similar term)|nearsighted (antonym)
+presbyter|1
+(noun)|elder (generic term)
+presbyterian|1
+(noun)|Presbyterian|Protestant (generic term)
+presbyterian church|1
+(noun)|Presbyterian Church|Protestant denomination (generic term)
+presbyterianism|1
+(noun)|Presbyterianism|Protestantism (generic term)
+presbytery|1
+(noun)|building (generic term)|edifice (generic term)
+presbytes|1
+(noun)|Presbytes|genus Presbytes|mammal Semnopithecus|mammal genus (generic term)
+presbytes entellus|1
+(noun)|entellus|hanuman|Presbytes entellus|Semnopithecus entellus|langur (generic term)
+preschool|1
+(noun)|educational institution (generic term)
+preschooler|1
+(noun)|kindergartner|kindergartener|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+prescience|1
+(noun)|prevision|capacity (generic term)|mental ability (generic term)
+prescient|1
+(adj)|discerning (similar term)
+presciently|1
+(adv)|cannily
+prescott|1
+(noun)|Prescott|town (generic term)
+prescribe|1
+(verb)|order|dictate|inflict (generic term)|bring down (generic term)|visit (generic term)|impose (generic term)
+prescribed|4
+(adj)|nonarbitrary (similar term)|unarbitrary (similar term)
+(adj)|appointed|decreed|ordained|settled (similar term)
+(adj)|official|regular (similar term)
+(adj)|positive|formal (similar term)
+prescript|1
+(noun)|rule|direction (generic term)|instruction (generic term)
+prescription|4
+(adj)|nonprescription (antonym)
+(noun)|direction (generic term)|instruction (generic term)
+(noun)|prescription drug|prescription medicine|ethical drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|over-the-counter medicine (antonym)|over-the-counter drug (antonym)
+(noun)|written communication (generic term)|written language (generic term)
+prescription drug|1
+(noun)|prescription|prescription medicine|ethical drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|over-the-counter medicine (antonym)|over-the-counter drug (antonym)
+prescription medicine|1
+(noun)|prescription drug|prescription|ethical drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|over-the-counter medicine (antonym)|over-the-counter drug (antonym)
+prescriptive|1
+(adj)|normative|descriptive (antonym)
+prescriptive grammar|1
+(noun)|grammar (generic term)
+prescriptive linguistics|1
+(noun)|linguistics (generic term)|descriptive linguistics (antonym)
+prescriptivism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+preseason|1
+(noun)|season (generic term)
+presence|6
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)|absence (antonym)
+(noun)|front|proximity (generic term)
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+(noun)|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+(noun)|bearing|comportment|mien|manner (generic term)|personal manner (generic term)
+(noun)|attendance (generic term)|attending (generic term)|absence (antonym)
+presence chamber|1
+(noun)|room (generic term)
+presence of mind|1
+(noun)|self-control (generic term)|self-possession (generic term)|possession (generic term)|willpower (generic term)|self-command (generic term)|self-will (generic term)
+presenile dementia|1
+(noun)|dementia (generic term)|dementedness (generic term)
+present|18
+(adj)|existing (similar term)|immediate (similar term)|instant (similar term)|inst (similar term)|latter-day (similar term)|future (antonym)|past (antonym)
+(adj)|attending (similar term)|attendant (similar term)|in attendance (similar term)|ever-present (similar term)|existing (similar term)|here (similar term)|naturally occurring (similar term)|omnipresent (similar term)|ubiquitous (similar term)|on hand (similar term)|absent (antonym)
+(noun)|nowadays|time (generic term)
+(noun)|gift (generic term)
+(noun)|present tense|tense (generic term)
+(verb)|show|demo|exhibit|demonstrate|show (generic term)
+(verb)|represent|lay out|state (generic term)|say (generic term)|tell (generic term)
+(verb)|stage|represent|re-create (generic term)
+(verb)|submit|give (generic term)
+(verb)|pose|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|award|allocate (generic term)|apportion (generic term)
+(verb)|give|gift
+(verb)|deliver|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|introduce|acquaint|inform (generic term)
+(verb)|portray|represent (generic term)|interpret (generic term)
+(verb)|confront|face
+(verb)|introduce (generic term)|present (generic term)|acquaint (generic term)
+(verb)|salute|greet (generic term)|recognize (generic term)|recognise (generic term)
+present-day|1
+(adj)|contemporary|current (similar term)
+present moment|1
+(noun)|here and now|moment|present (generic term)|nowadays (generic term)
+present participle|1
+(noun)|participle (generic term)|participial (generic term)
+present perfect|1
+(noun)|present perfect tense|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+present perfect tense|1
+(noun)|present perfect|perfective (generic term)|perfective tense (generic term)|perfect (generic term)|perfect tense (generic term)
+present progressive|1
+(noun)|present progressive tense|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+present progressive tense|1
+(noun)|present progressive|progressive (generic term)|progressive tense (generic term)|imperfect (generic term)|imperfect tense (generic term)|continuous tense (generic term)
+present tense|1
+(noun)|present|tense (generic term)
+present times|1
+(noun)|modern times|modern world|contemporary world|times (generic term)
+presentable|1
+(adj)|respectable (similar term)
+presentation|7
+(noun)|ceremony (generic term)
+(noun)|display (generic term)
+(noun)|presentment|demonstration|show (generic term)
+(noun)|proposal (generic term)|proposition (generic term)
+(noun)|display|representation (generic term)
+(noun)|introduction|intro|informing (generic term)|making known (generic term)
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+presentational|1
+(adj)|display (related term)
+presented|1
+(adj)|bestowed|conferred|given (similar term)
+presenter|3
+(noun)|communicator (generic term)
+(noun)|sponsor|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|donor|giver|bestower|conferrer|benefactor (generic term)|helper (generic term)
+presentiment|1
+(noun)|foreboding|premonition|boding|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+presentism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+presentist|1
+(noun)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+presently|2
+(adv)|soon|shortly|before long
+(adv)|currently
+presentment|3
+(noun)|notification|due process (generic term)|due process of law (generic term)
+(noun)|charge (generic term)|billing (generic term)
+(noun)|presentation|demonstration|show (generic term)
+presentness|1
+(noun)|nowness|timing (generic term)|futurity (antonym)|pastness (antonym)
+preservable|1
+(adj)|preserved (similar term)
+preservation|4
+(noun)|saving|protection (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|conservation|improvement (generic term)|betterment (generic term)|advance (generic term)
+preservationist|1
+(noun)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+preservative|2
+(adj)|protective (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+preserve|9
+(noun)|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|reservation (generic term)|reserve (generic term)
+(noun)|conserve|conserves|preserves|confiture (generic term)
+(verb)|continue|uphold|carry on|bear on|keep (generic term)|maintain (generic term)|hold (generic term)|discontinue (antonym)
+(verb)|conserve|maintain|keep up|keep (generic term)
+(verb)|save|keep (generic term)|hold on (generic term)
+(verb)|keep|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|keep|protect (generic term)
+(verb)|keep (generic term)|maintain (generic term)|hold (generic term)
+preserved|2
+(adj)|aged (similar term)|cured (similar term)|candied (similar term)|crystalized (similar term)|crystalised (similar term)|glace (similar term)|canned (similar term)|tinned (similar term)|corned (similar term)|cured (similar term)|cured (similar term)|dried (similar term)|dehydrated (similar term)|desiccated (similar term)|flash-frozen (similar term)|quick-frozen (similar term)|frozen (similar term)|freeze-dried (similar term)|lyophilized (similar term)|lyophilised (similar term)|freeze-dried (similar term)|pickled (similar term)|potted (similar term)|salted (similar term)|salt-cured (similar term)|brine-cured (similar term)|smoked (similar term)|smoke-cured (similar term)|smoke-dried (similar term)|sun-dried (similar term)|sundried (similar term)|fresh (antonym)
+(adj)|conserved (similar term)|kept up (similar term)|maintained (similar term)|well-kept (similar term)|preservable (similar term)|protected (similar term)|saved (similar term)|retained (similar term)|maintained (similar term)|destroyed (antonym)
+preserver|4
+(noun)|refinisher|renovator|restorer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|cook (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|life preserver|flotation device|float (generic term)|rescue equipment (generic term)
+preserves|1
+(noun)|conserve|preserve|conserves|confiture (generic term)
+preserving|1
+(adj)|conserving|protective (similar term)
+preset|1
+(adj)|predetermined|planned (similar term)
+preside|1
+(verb)|control (generic term)|command (generic term)
+presidency|2
+(noun)|presidential term|administration|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+(noun)|presidentship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+president|6
+(noun)|corporate executive (generic term)|business executive (generic term)
+(noun)|President of the United States|United States President|President|Chief Executive|head of state (generic term)|chief of state (generic term)
+(noun)|head of state (generic term)|chief of state (generic term)
+(noun)|chairman|chairwoman|chair|chairperson|presiding officer (generic term)
+(noun)|prexy|academic administrator (generic term)
+(noun)|President of the United States|President|Chief Executive|presidency (generic term)|presidentship (generic term)
+president abraham lincoln|1
+(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer (generic term)|attorney (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president adams|2
+(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president andrew johnson|1
+(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president arthur|1
+(noun)|Arthur|Chester A. Arthur|Chester Alan Arthur|President Arthur|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president benjamin harrison|1
+(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president buchanan|1
+(noun)|Buchanan|James Buchanan|President Buchanan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Bush|George Bush|George H.W. Bush|George Herbert Walker Bush|President Bush|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president carter|1
+(noun)|Carter|Jimmy Carter|James Earl Carter|James Earl Carter Jr.|President Carter|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president cleveland|1
+(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president clinton|1
+(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president coolidge|1
+(noun)|Coolidge|Calvin Coolidge|President Coolidge|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president eisenhower|1
+(noun)|Eisenhower|Dwight Eisenhower|Dwight D. Eisenhower|Dwight David Eisenhower|Ike|President Eisenhower|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president fillmore|1
+(noun)|Fillmore|Millard Fillmore|President Fillmore|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president ford|1
+(noun)|Ford|Gerald Ford|Gerald R. Ford|Gerald Rudolph Ford|President Ford|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president garfield|1
+(noun)|Garfield|James Garfield|James A. Garfield|James Abraham Garfield|President Garfield|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+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 (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president grant|1
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president harding|1
+(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president harrison|2
+(noun)|Harrison|Benjamin Harrison|President Harrison|President Benjamin Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president hayes|1
+(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president hoover|1
+(noun)|Hoover|Herbert Hoover|Herbert Clark Hoover|President Hoover|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president jefferson|1
+(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president john adams|1
+(noun)|Adams|John Adams|President Adams|President John Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president john f. kennedy|1
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president john quincy adams|1
+(noun)|Adams|John Quincy Adams|President Adams|President John Quincy Adams|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president johnson|2
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Johnson|Andrew Johnson|President Johnson|President Andrew Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president kennedy|1
+(noun)|Kennedy|Jack Kennedy|John Fitzgerald Kennedy|JFK|President Kennedy|President John F. Kennedy|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president lincoln|1
+(noun)|Lincoln|Abraham Lincoln|President Lincoln|President Abraham Lincoln|lawyer (generic term)|attorney (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president lyndon johnson|1
+(noun)|Johnson|Lyndon Johnson|Lyndon Baines Johnson|LBJ|President Johnson|President Lyndon Johnson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president madison|1
+(noun)|Madison|James Madison|President Madison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president mckinley|1
+(noun)|McKinley|William McKinley|President McKinley|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president monroe|1
+(noun)|Monroe|James Monroe|President Monroe|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president nixon|1
+(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president of the united states|2
+(noun)|President of the United States|United States President|President|Chief Executive|head of state (generic term)|chief of state (generic term)
+(noun)|President of the United States|President|Chief Executive|presidency (generic term)|presidentship (generic term)
+president pierce|1
+(noun)|Pierce|Franklin Pierce|President Pierce|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president polk|1
+(noun)|Polk|James Polk|James K. Polk|James Knox Polk|President Polk|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president reagan|1
+(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president roosevelt|2
+(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president taft|1
+(noun)|Taft|William Howard Taft|President Taft|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)|chief justice (generic term)
+president taylor|1
+(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president theodore roosevelt|1
+(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president truman|1
+(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president tyler|1
+(noun)|Tyler|John Tyler|President Tyler|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president van buren|1
+(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president washington|1
+(noun)|Washington|George Washington|President Washington|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president william henry harrison|1
+(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+president wilson|1
+(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+presidential|2
+(adj)|head of state|chief of state (related term)
+(adj)|statesmanlike (related term)|statesmanly (related term)|unpresidential (antonym)
+presidential directive|1
+(noun)|Presidential Directive|directive (generic term)
+presidential term|1
+(noun)|presidency|administration|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+presidents' day|1
+(noun)|Presidents' Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+presidentship|1
+(noun)|presidency|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+presiding officer|1
+(noun)|leader (generic term)
+presidio|1
+(noun)|fortress (generic term)|fort (generic term)
+presidium|1
+(noun)|praesidium|committee (generic term)|commission (generic term)
+presley|1
+(noun)|Presley|Elvis Presley|Elvis Aron Presley|rock star (generic term)
+presocratic|1
+(adj)|pre-Socratic|philosopher|Athenian (related term)
+press|24
+(noun)|fourth estate|estate (generic term)|estate of the realm (generic term)
+(noun)|imperativeness|insistence|insistency|pressure|urgency (generic term)
+(noun)|public press|print media (generic term)
+(noun)|printing press|machine (generic term)
+(noun)|crush|jam|crowd (generic term)
+(noun)|wardrobe|closet|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|clamp (generic term)|clinch (generic term)
+(noun)|mechanical press|machine (generic term)
+(noun)|military press|weightlift (generic term)|weightlifting (generic term)
+(noun)|pressure|pressing|push (generic term)|pushing (generic term)
+(verb)|touch (generic term)
+(verb)|urge|urge on|exhort|rede (generic term)|advise (generic term)|counsel (generic term)
+(verb)|weigh|count (generic term)|matter (generic term)|weigh (generic term)
+(verb)|flatten (generic term)|flatten out (generic term)
+(verb)|compress|constrict|squeeze|compact|contract|tighten (generic term)
+(verb)|mass (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|be (generic term)
+(verb)|crusade|fight|campaign|push|agitate|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|press out|cast (generic term)|mold (generic term)|mould (generic term)
+(verb)|push|push (generic term)|force (generic term)
+(verb)|iron|iron out|press (generic term)
+(verb)|weight-lift|weightlift|exercise (generic term)|work out (generic term)
+(verb)|bid|beseech|entreat|adjure|conjure|plead (generic term)
+press-up|1
+(noun)|pushup|arm exercise (generic term)
+press agency|1
+(noun)|news agency|wire service|press association|news organization|news organisation|agency (generic term)
+press agent|1
+(noun)|publicity man|public relations man|PR man|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+press association|1
+(noun)|news agency|press agency|wire service|news organization|news organisation|agency (generic term)
+press box|1
+(noun)|box (generic term)
+press clipping|1
+(noun)|clipping|newspaper clipping|cutting|press cutting|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+press conference|1
+(noun)|news conference|conference (generic term)|group discussion (generic term)
+press corps|1
+(noun)|press (generic term)|fourth estate (generic term)
+press cutting|1
+(noun)|clipping|newspaper clipping|press clipping|cutting|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+press down|1
+(verb)|depress|move (generic term)|displace (generic term)
+press down on|1
+(verb)|drag down|bear down|bear down on|weigh down|press (generic term)
+press gallery|1
+(noun)|area (generic term)
+press gang|1
+(noun)|detachment (generic term)
+press home|1
+(verb)|drive home|ram home|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+press lord|1
+(noun)|publisher (generic term)|newspaper publisher (generic term)
+press of canvas|1
+(noun)|press of sail|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+press of sail|1
+(noun)|press of canvas|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+press on|1
+(verb)|push on|plough on|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+press out|3
+(verb)|stub out|crush out|extinguish|end (generic term)|terminate (generic term)
+(verb)|press|cast (generic term)|mold (generic term)|mould (generic term)
+(verb)|express|extract|get (generic term)|acquire (generic term)
+press photographer|1
+(noun)|photographer (generic term)|lensman (generic term)
+press release|1
+(noun)|handout|release|announcement (generic term)|promulgation (generic term)
+press run|1
+(noun)|print run|run (generic term)
+press stud|1
+(noun)|snap|snap fastener|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+pressburg|1
+(noun)|Bratislava|capital of Slovakia|Pressburg|Pozsony|capital (generic term)
+pressed|1
+(adj)|ironed (similar term)
+pressing|3
+(adj)|urgent|imperative (similar term)
+(noun)|press|pressure|push (generic term)|pushing (generic term)
+(noun)|part (generic term)|portion (generic term)
+pressman|2
+(noun)|printer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|correspondent|newspaperman|newspaperwoman|newswriter|journalist (generic term)
+pressmark|1
+(noun)|call mark|call number|mark (generic term)
+pressor|2
+(adj)|vital sign|pressure|pressure level|force per unit area (related term)
+(noun)|vasoconstrictor|vasoconstrictive|agent (generic term)
+pressure|8
+(noun)|pressure level|force per unit area|physical phenomenon (generic term)
+(noun)|force (generic term)
+(noun)|press|pressing|push (generic term)|pushing (generic term)
+(noun)|imperativeness|insistence|insistency|press|urgency (generic term)
+(noun)|pressure sensation|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+(noun)|distress (generic term)
+(verb)|coerce|hale|squeeze|force|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|blackmail|blackjack|influence (generic term)|act upon (generic term)|work (generic term)
+pressure-cook|1
+(verb)|cook (generic term)
+pressure-feed lubricating system|1
+(noun)|lubricating system|force-feed lubricating system|force feed|pressure feed|mechanical system (generic term)
+pressure-wash|1
+(verb)|powerwash|wash (generic term)|launder (generic term)
+pressure cabin|1
+(noun)|cabin (generic term)
+pressure cooker|1
+(noun)|autoclave (generic term)|sterilizer (generic term)|steriliser (generic term)
+pressure dome|1
+(noun)|dome (generic term)
+pressure feed|1
+(noun)|lubricating system|force-feed lubricating system|force feed|pressure-feed lubricating system|mechanical system (generic term)
+pressure gage|1
+(noun)|pressure gauge|gauge (generic term)|gage (generic term)
+pressure gauge|1
+(noun)|pressure gage|gauge (generic term)|gage (generic term)
+pressure group|1
+(noun)|lobby|third house|political unit (generic term)|political entity (generic term)
+pressure level|1
+(noun)|pressure|force per unit area|physical phenomenon (generic term)
+pressure point|1
+(noun)|point (generic term)
+pressure sensation|1
+(noun)|pressure|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+pressure sore|1
+(noun)|bedsore|decubitus ulcer|ulcer (generic term)|ulceration (generic term)
+pressure suit|1
+(noun)|protective garment (generic term)
+pressure unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+pressurise|3
+(verb)|supercharge|pressurize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|pressurize|keep (generic term)|maintain (generic term)|hold (generic term)
+(verb)|pressurize|adjust (generic term)|set (generic term)|correct (generic term)|depressurise (antonym)|depressurize (antonym)
+pressurised|1
+(adj)|pressurized|controlled (similar term)
+pressurize|3
+(verb)|supercharge|pressurise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|pressurise|keep (generic term)|maintain (generic term)|hold (generic term)
+(verb)|pressurise|adjust (generic term)|set (generic term)|correct (generic term)|depressurise (antonym)|depressurize (antonym)
+pressurized|1
+(adj)|pressurised|controlled (similar term)
+pressurized water reactor|1
+(noun)|PWR|water-cooled reactor (generic term)
+prestidigitation|1
+(noun)|sleight of hand|magic trick (generic term)|conjuring trick (generic term)|trick (generic term)|magic (generic term)|legerdemain (generic term)|conjuration (generic term)|thaumaturgy (generic term)|illusion (generic term)|deception (generic term)
+prestidigitator|1
+(noun)|magician|conjurer|conjuror|illusionist|performer (generic term)|performing artist (generic term)
+prestige|1
+(noun)|prestigiousness|standing (generic term)
+prestigious|2
+(adj)|esteemed|honored|reputable (similar term)
+(adj)|influential (similar term)
+prestigiousness|1
+(noun)|prestige|standing (generic term)
+prestissimo|1
+(adj)|fast (similar term)
+presto|1
+(adj)|fast (similar term)
+presumable|1
+(adj)|supposable|surmisable|thinkable (similar term)
+presumably|1
+(adv)|presumptively
+presume|4
+(verb)|assume|take for granted|expect (generic term)|anticipate (generic term)
+(verb)|make bold|dare|act (generic term)|move (generic term)
+(verb)|testify (generic term)|bear witness (generic term)|prove (generic term)|evidence (generic term)|show (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+presumption|4
+(noun)|given|precondition|assumption (generic term)|supposition (generic term)|supposal (generic term)
+(noun)|inference (generic term)|illation (generic term)
+(noun)|presumptuousness|effrontery|assumption|audacity (generic term)|audaciousness (generic term)
+(noun)|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+presumptive|2
+(adj)|probable (similar term)|likely (similar term)
+(adj)|credible (similar term)|believable (similar term)
+presumptively|1
+(adv)|presumably
+presumptuous|1
+(adj)|assumptive|assuming|forward (similar term)
+presumptuousness|1
+(noun)|presumption|effrontery|assumption|audacity (generic term)|audaciousness (generic term)
+presuppose|2
+(verb)|suppose|assume (generic term)|presume (generic term)|take for granted (generic term)
+(verb)|suppose|imply (generic term)
+presupposition|1
+(noun)|supposition (generic term)|supposal (generic term)
+presymptomatic|1
+(adj)|preclinical|diagnosis|diagnosing (related term)
+preteen|2
+(adj)|preadolescent|young (similar term)|immature (similar term)
+(noun)|preteenager|juvenile (generic term)|juvenile person (generic term)
+preteenager|1
+(noun)|preteen|juvenile (generic term)|juvenile person (generic term)
+pretence|5
+(noun)|pretension|pretense|artificiality (generic term)
+(noun)|guise|pretense|pretext|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+(noun)|pretense|feigning|dissembling|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|pretense|make-believe|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|pretense|pretending|simulation|feigning|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+pretend|8
+(adj)|make-believe|unreal (similar term)
+(noun)|make-believe|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+(verb)|feign|sham|affect|dissemble|misrepresent (generic term)|belie (generic term)
+(verb)|dissemble|act
+(verb)|claim (generic term)|lay claim (generic term)|arrogate (generic term)
+(verb)|guess|venture|hazard|speculate (generic term)
+(verb)|make|make believe|act (generic term)|play (generic term)|represent (generic term)
+(verb)|profess|claim (generic term)
+pretended|1
+(adj)|assumed|false|fictitious|fictive|put on|sham|counterfeit (similar term)|imitative (similar term)
+pretender|3
+(noun)|Pretender|claimant (generic term)
+(noun)|imposter|impostor|fake|faker|fraud|sham|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|hypocrite|dissembler|dissimulator|phony|phoney|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+pretending|1
+(noun)|pretense|pretence|simulation|feigning|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+pretense|5
+(noun)|pretence|pretending|simulation|feigning|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+(noun)|pretence|feigning|dissembling|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|pretence|make-believe|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|pretension|pretence|artificiality (generic term)
+(noun)|guise|pretence|pretext|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+pretension|3
+(noun)|pretense|pretence|artificiality (generic term)
+(noun)|claim (generic term)
+(noun)|pretentiousness|largeness|unnaturalness (generic term)|unpretentiousness (antonym)
+pretentious|3
+(adj)|arty (similar term)|artsy-craftsy (similar term)|arty-crafty (similar term)|grandiloquent (similar term)|overblown (similar term)|pompous (similar term)|pontifical (similar term)|portentous (similar term)|grandiose (similar term)|hifalutin (similar term)|highfalutin (similar term)|highfaluting (similar term)|hoity-toity (similar term)|la-di-da (similar term)|high-flown (similar term)|high-sounding (similar term)|inflated (similar term)|jumped-up (similar term)|nouveau-riche (similar term)|parvenu (similar term)|parvenue (similar term)|upstart (similar term)|sententious (similar term)|sesquipedalian (similar term)|tasteless (related term)|unpretentious (antonym)
+(adj)|ostentatious|flaunty (similar term)|showy (similar term)|splashy (similar term)|unostentatious (antonym)
+(adj)|ostentatious|kitsch|tasteless (similar term)
+pretentiously|1
+(adv)|unpretentiously (antonym)
+pretentiousness|2
+(noun)|ostentation|ostentatiousness|pomposity|pompousness|puffiness|splashiness|inflation|inelegance (generic term)
+(noun)|pretension|largeness|unnaturalness (generic term)|unpretentiousness (antonym)
+preterist|1
+(noun)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+preterit|1
+(noun)|preterite|past (generic term)|past tense (generic term)
+preterite|1
+(noun)|preterit|past (generic term)|past tense (generic term)
+preterition|1
+(noun)|paralepsis|paraleipsis|paralipsis|rhetorical device (generic term)
+preterm baby|1
+(noun)|premature baby|premature infant|preterm infant|preemie|premie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+preterm infant|1
+(noun)|premature baby|preterm baby|premature infant|preemie|premie|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+pretermission|1
+(noun)|omission (generic term)
+pretermit|2
+(verb)|neglect (generic term)|ignore (generic term)|disregard (generic term)
+(verb)|neglect|omit|drop|miss|leave out|overlook|overleap|attend to (antonym)
+preternatural|2
+(adj)|uncanny|extraordinary (similar term)
+(adj)|nonnatural|otherworldly|transcendental|supernatural (similar term)
+preternaturally|1
+(adv)|supernaturally
+pretext|2
+(noun)|stalking-horse|pretense (generic term)|pretence (generic term)|feigning (generic term)|dissembling (generic term)
+(noun)|guise|pretense|pretence|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+pretor|1
+(noun)|praetor|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+pretoria|1
+(noun)|Pretoria|capital of South Africa|national capital (generic term)
+pretorial|1
+(adj)|praetorian|praetorial|pretorian|judge|justice|jurist|magistrate (related term)
+pretorian|2
+(adj)|praetorian|praetorial|pretorial|judge|justice|jurist|magistrate (related term)
+(adj)|Praetorian|Pretorian|corrupt (similar term)
+pretorium|1
+(noun)|praetorium|tent (generic term)|collapsible shelter (generic term)
+pretrial|1
+(noun)|pretrial conference|conference (generic term)|group discussion (generic term)
+pretrial conference|1
+(noun)|pretrial|conference (generic term)|group discussion (generic term)
+prettify|1
+(verb)|fancify|beautify|embellish|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|uglify (antonym)
+prettiness|1
+(noun)|cuteness|beauty (generic term)
+pretty|3
+(adj)|beautiful (similar term)
+(adj)|bad (similar term)
+(adv)|jolly
+pretty-pretty|1
+(adj)|beautiful (similar term)
+pretty up|1
+(verb)|doll up|do up|glam up|groom (generic term)|neaten (generic term)
+pretzel|1
+(noun)|cracker (generic term)
+preussen|1
+(noun)|Prussia|Preussen|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+prevacid|1
+(noun)|lansoprazole|Prevacid|acid (generic term)
+prevail|5
+(verb)|predominate|dominate|rule|reign
+(verb)|hold|obtain|exist (generic term)|be (generic term)
+(verb)|persist|die hard|run|endure|continue (generic term)
+(verb)|triumph|win (generic term)
+(verb)|persuade (generic term)
+prevailing|2
+(adj)|predominant|frequent (similar term)
+(adj)|prevalent|rife|current (similar term)
+prevailing party|1
+(noun)|litigant (generic term)|litigator (generic term)
+prevailing westerly|1
+(noun)|westerly|west wind (generic term)|wester (generic term)
+prevailing wind|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+prevalence|3
+(noun)|generality (generic term)
+(noun)|ratio (generic term)
+(noun)|preponderance|number (generic term)|figure (generic term)
+prevalent|1
+(adj)|prevailing|rife|current (similar term)
+prevaricate|1
+(verb)|beat around the bush|equivocate|tergiversate|palter|misinform (generic term)|mislead (generic term)
+prevarication|3
+(noun)|lie|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|equivocation|evasiveness|untruthfulness (generic term)|ambiguity (generic term)|equivocalness (generic term)
+(noun)|lying|fabrication|falsification (generic term)|misrepresentaation (generic term)
+prevaricator|1
+(noun)|liar|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)|square shooter (antonym)
+prevenient|1
+(adj)|anticipatory|antecedent (similar term)|preceding (similar term)
+prevent|2
+(verb)|forestall|foreclose|preclude|forbid
+(verb)|keep|let (antonym)
+preventable|1
+(adj)|unpreventable (antonym)
+preventative|5
+(adj)|preventive|blockading (similar term)|clogging (similar term)|hindering (similar term)|impeding (similar term)|obstructive (similar term)|deterrent (similar term)|frustrating (similar term)|frustrative (similar term)|thwarting (similar term)|precautionary (similar term)|precautional (similar term)|preclusive (similar term)|obviating (similar term)|preemptive (similar term)|pre-emptive (similar term)|prohibitive (similar term)|prohibitory (similar term)|protective (related term)|permissive (antonym)
+(adj)|preventive|prophylactic|healthful (similar term)
+(noun)|preventive|prophylactic|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|hindrance|hinderance|hitch|preventive|encumbrance|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|contraceptive|preventive|contraceptive device|prophylactic device|birth control device|device (generic term)
+prevention|1
+(noun)|bar|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+preventive|6
+(adj)|preventative|prophylactic|healthful (similar term)
+(adj)|preventative|blockading (similar term)|clogging (similar term)|hindering (similar term)|impeding (similar term)|obstructive (similar term)|deterrent (similar term)|frustrating (similar term)|frustrative (similar term)|thwarting (similar term)|precautionary (similar term)|precautional (similar term)|preclusive (similar term)|obviating (similar term)|preemptive (similar term)|pre-emptive (similar term)|prohibitive (similar term)|prohibitory (similar term)|protective (related term)|permissive (antonym)
+(adj)|cautionary|prophylactic|protective (similar term)
+(noun)|preventative|prophylactic|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|hindrance|hinderance|hitch|preventative|encumbrance|incumbrance|interference|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|contraceptive|preventative|contraceptive device|prophylactic device|birth control device|device (generic term)
+preventive attack|1
+(noun)|preventive strike|strike (generic term)
+preventive medicine|1
+(noun)|medicine (generic term)|practice of medicine (generic term)
+preventive strike|1
+(noun)|preventive attack|strike (generic term)
+preview|3
+(noun)|prevue|trailer|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|screening (generic term)|showing (generic term)|viewing (generic term)
+(verb)|watch (generic term)|view (generic term)|see (generic term)|catch (generic term)|take in (generic term)
+previous|3
+(adj)|former|late|past (similar term)
+(adj)|premature|early (similar term)
+(adj)|old|preceding (similar term)
+previous question|1
+(noun)|gesture (generic term)|motion (generic term)|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+previously|1
+(adv)|antecedently
+previse|2
+(verb)|forewarn|warn (generic term)
+(verb)|anticipate|foreknow|foresee|know (generic term)
+prevision|4
+(noun)|vision (generic term)
+(noun)|prescience|capacity (generic term)|mental ability (generic term)
+(noun)|foresight|farsightedness|prospicience|knowing (generic term)
+(noun)|prediction|anticipation|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+prevue|1
+(noun)|preview|trailer|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+prewar|1
+(adj)|postwar (antonym)
+prexy|1
+(noun)|president|academic administrator (generic term)
+prey|4
+(noun)|quarry|target|fair game|victim (generic term)
+(noun)|quarry|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(verb)|feed|exploit (generic term)|work (generic term)
+(verb)|raven|predate|forage (generic term)
+priacanthidae|1
+(noun)|Priacanthidae|family Priacanthidae|fish family (generic term)
+priacanthus|1
+(noun)|Priacanthus|genus Priacanthus|fish genus (generic term)
+priacanthus arenatus|1
+(noun)|catalufa|Priacanthus arenatus|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+priam|1
+(noun)|Priam|mythical being (generic term)
+priapic|2
+(adj)|male (similar term)
+(adj)|phallic|male (similar term)
+priapism|1
+(noun)|pathology (generic term)
+priapus|1
+(noun)|Priapus|Greco-Roman deity (generic term)|Graeco-Roman deity (generic term)
+price|9
+(noun)|terms|damage|cost (generic term)
+(noun)|monetary value|cost|value (generic term)
+(noun)|cost|toll|value (generic term)
+(noun)|worth (generic term)
+(noun)|reward (generic term)
+(noun)|cost (generic term)
+(noun)|Price|Leontyne Price|Mary Leontyne Price|soprano (generic term)
+(verb)|determine (generic term)|set (generic term)
+(verb)|ascertain (generic term)
+price-controlled|1
+(adj)|controlled (similar term)
+price-fixing|1
+(noun)|control (generic term)
+price-to-earnings ratio|1
+(noun)|P/E ratio|ratio (generic term)
+price bracket|1
+(noun)|bracket (generic term)
+price competition|1
+(noun)|price war|competition (generic term)
+price control|1
+(noun)|control (generic term)
+price cut|1
+(noun)|price cutting|cut (generic term)
+price cutting|1
+(noun)|price cut|cut (generic term)
+price floor|1
+(noun)|floor (generic term)|base (generic term)
+price freeze|1
+(noun)|freeze (generic term)
+price gouging|1
+(noun)|pricing (generic term)
+price increase|1
+(noun)|increase (generic term)|increment (generic term)
+price index|1
+(noun)|price level|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+price level|1
+(noun)|price index|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+price list|1
+(noun)|list (generic term)|listing (generic term)
+price of admission|1
+(noun)|entrance fee|admission|admission charge|admission fee|admission price|entrance money|fee (generic term)
+price reduction|1
+(noun)|discount|deduction|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+price support|1
+(noun)|subsidy (generic term)
+price tag|1
+(noun)|tag (generic term)
+price war|1
+(noun)|price competition|competition (generic term)
+priceless|1
+(adj)|invaluable|valuable (similar term)
+pricelessness|1
+(noun)|invaluableness|preciousness|valuableness|value (generic term)
+pricey|1
+(adj)|costly|dear|high-priced|pricy|expensive (similar term)
+pricing|1
+(noun)|evaluation (generic term)|valuation (generic term)|rating (generic term)
+pricing system|1
+(noun)|system (generic term)
+prick|11
+(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|incision|scratch|slit|dent|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|cock|dick|shaft|pecker|peter|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+(noun)|pricking|puncture (generic term)
+(verb)|prickle|pierce (generic term)
+(verb)|sting|twinge|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|prick up|cock up|rear (generic term)|erect (generic term)
+(verb)|goad|stab (generic term)|jab (generic term)
+(verb)|prickle|prick (generic term)|sting (generic term)|twinge (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|sting|bite|pierce (generic term)
+prick up|1
+(verb)|prick|cock up|rear (generic term)|erect (generic term)
+pricker|2
+(noun)|spine|thorn|prickle|sticker|spikelet|aculeus (generic term)
+(noun)|bradawl|awl (generic term)
+pricket|2
+(noun)|spike (generic term)
+(noun)|deer (generic term)|cervid (generic term)
+pricking|1
+(noun)|prick|puncture (generic term)
+prickle|4
+(noun)|spine|thorn|pricker|sticker|spikelet|aculeus (generic term)
+(verb)|prick|prick (generic term)|sting (generic term)|twinge (generic term)
+(verb)|tingle|itch (generic term)
+(verb)|prick|pierce (generic term)
+prickle-weed|1
+(noun)|prairie mimosa|Desmanthus ilinoensis|herb (generic term)|herbaceous plant (generic term)
+prickle cell|1
+(noun)|skin cell (generic term)
+prickleback|2
+(noun)|blennioid fish (generic term)|blennioid (generic term)
+(noun)|stickleback|spiny-finned fish (generic term)|acanthopterygian (generic term)
+prickliness|1
+(noun)|bristliness|spininess|thorniness|roughness (generic term)|raggedness (generic term)
+prickling|2
+(adj)|stinging|tingling|painful (similar term)
+(noun)|tingle|tingling|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+prickly|2
+(adj)|bristly|splenetic|waspish|ill-natured (similar term)
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|setose|setaceous|spiny|thorny|armed (similar term)
+prickly-edged leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+prickly-leafed|1
+(adj)|prickly-leaved|leafy (similar term)
+prickly-leaved|1
+(adj)|prickly-leafed|leafy (similar term)
+prickly-seeded spinach|1
+(noun)|spinach|spinach plant|Spinacia oleracea|vegetable (generic term)
+prickly ash|2
+(noun)|tree (generic term)
+(noun)|Orites excelsa|tree (generic term)
+prickly custard apple|1
+(noun)|soursop|soursop tree|Annona muricata|custard apple (generic term)|custard apple tree (generic term)
+prickly heat|1
+(noun)|heat rash|miliaria|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)
+prickly lettuce|1
+(noun)|horse thistle|Lactuca serriola|Lactuca scariola|compass plant (generic term)|compass flower (generic term)
+prickly pear|2
+(noun)|prickly pear cactus|cactus (generic term)
+(noun)|edible fruit (generic term)
+prickly pear cactus|1
+(noun)|prickly pear|cactus (generic term)
+prickly pine|1
+(noun)|table-mountain pine|hickory pine|Pinus pungens|pine (generic term)|pine tree (generic term)|true pine (generic term)
+prickly poppy|2
+(noun)|argemone|white thistle|devil's fig|herb (generic term)|herbaceous plant (generic term)
+(noun)|Papaver argemone|poppy (generic term)
+prickly shield fern|1
+(noun)|Braun's holly fern|Polystichum braunii|holly fern (generic term)
+prickteaser|1
+(noun)|coquette|flirt|vamp|vamper|minx|tease|woman (generic term)|adult female (generic term)
+pricy|1
+(adj)|costly|dear|high-priced|pricey|expensive (similar term)
+pride|6
+(noun)|pridefulness|feeling (generic term)|humility (antonym)
+(noun)|satisfaction (generic term)
+(noun)|trait (generic term)|humility (antonym)
+(noun)|animal group (generic term)
+(noun)|superbia|mortal sin (generic term)|deadly sin (generic term)
+(verb)|plume|congratulate|feel (generic term)|experience (generic term)
+pride-of-india|2
+(noun)|chinaberry|chinaberry tree|China tree|Persian lilac|pride-of-India|azederach|azedarach|Melia azederach|Melia azedarach|tree (generic term)
+(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree (generic term)|flowering tree (generic term)
+pride of barbados|1
+(noun)|paradise flower|flamboyant tree|Caesalpinia pulcherrima|Poinciana pulcherrima|flowering shrub (generic term)
+pride of bolivia|1
+(noun)|tipu|tipu tree|yellow jacaranda|pride of Bolivia|tree (generic term)
+pride of california|1
+(noun)|pride of California|Lathyrus splendens|wild pea (generic term)
+pride of place|1
+(noun)|position (generic term)|place (generic term)
+pride oneself|1
+(verb)|take pride|feel (generic term)|experience (generic term)
+prideful|2
+(adj)|disdainful|haughty|lordly|sniffy|supercilious|swaggering|proud (similar term)
+(adj)|exultant|exulting|jubilant|rejoicing|triumphal|triumphant|elated (similar term)
+pridefulness|1
+(noun)|pride|feeling (generic term)|humility (antonym)
+prie-dieu|1
+(noun)|bench (generic term)
+priest|2
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+(noun)|non-Christian priest|spiritual leader (generic term)
+priest-doctor|1
+(noun)|shaman|priest (generic term)|non-Christian priest (generic term)
+priest-penitent privilege|1
+(noun)|privilege (generic term)
+priest-ridden|1
+(adj)|controlled (similar term)
+priestcraft|2
+(noun)|intrigue (generic term)|machination (generic term)
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+priestess|1
+(noun)|priest (generic term)
+priesthood|1
+(noun)|profession (generic term)|community (generic term)
+priestley|1
+(noun)|Priestley|Joseph Priestley|chemist (generic term)
+priestlike|1
+(adj)|priestly|unpriestly (antonym)
+priestly|2
+(adj)|hieratic|hieratical|sacerdotal|profession|community (related term)
+(adj)|priestlike|unpriestly (antonym)
+prig|1
+(noun)|snob|snot|snoot|unpleasant person (generic term)|disagreeable person (generic term)
+priggish|1
+(adj)|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+priggishness|1
+(noun)|primness|propriety (generic term)|properness (generic term)|correctitude (generic term)
+prilosec|1
+(noun)|omeprazole|Prilosec|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+prim|5
+(adj)|dainty|mincing|niminy-piminy|twee|refined (similar term)
+(adj)|priggish|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+(verb)|change (generic term)
+(verb)|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|prim up|prim out|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+prim out|1
+(verb)|prim|prim up|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+prim up|1
+(verb)|prim|prim out|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+prima|2
+(adj)|leading|star|starring|stellar|major (similar term)
+(noun)|Prima|eating apple (generic term)|dessert apple (generic term)
+prima ballerina|1
+(noun)|ballerina (generic term)|danseuse (generic term)
+prima donna|2
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|diva|opera star (generic term)|operatic star (generic term)
+prima facie|1
+(adj)|clear (similar term)
+primacy|1
+(noun)|importance (generic term)|grandness (generic term)
+primaeval|1
+(adj)|aboriginal|primal|primeval|primordial|early (similar term)
+primal|2
+(adj)|cardinal|central|fundamental|key|important (similar term)|of import (similar term)
+(adj)|aboriginal|primeval|primaeval|primordial|early (similar term)
+primality|1
+(noun)|property (generic term)
+primaquine|1
+(noun)|antimalarial (generic term)|antimalarial drug (generic term)
+primarily|2
+(adv)|chiefly|principally|mainly|in the main
+(adv)|in the first place|secondarily (antonym)
+primary|8
+(adj)|capital (similar term)|direct (similar term)|firsthand (similar term)|first-string (similar term)|original (similar term)|particular (similar term)|special (similar term)|essential (related term)|first (related term)|original (related term)|secondary (antonym)
+(adj)|underived (similar term)
+(adj)|chief|main|principal|important (similar term)|of import (similar term)
+(adj)|elementary|elemental|basic (similar term)
+(adj)|basal|essential (similar term)
+(noun)|primary election|election (generic term)
+(noun)|primary feather|primary quill|flight feather (generic term)|pinion (generic term)|quill (generic term)|quill feather (generic term)
+(noun)|primary coil|primary winding|coil (generic term)
+primary amenorrhea|1
+(noun)|amenorrhea (generic term)|amenorrhoea (generic term)|amenia (generic term)
+primary atypical pneumonia|1
+(noun)|atypical pneumonia|mycoplasmal pneumonia|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+primary care|1
+(noun)|medical care (generic term)|medical aid (generic term)
+primary care physician|1
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+primary cell|1
+(noun)|voltaic cell|galvanic cell|cell (generic term)|electric cell (generic term)|electrolytic cell (antonym)
+primary censorship|1
+(noun)|armed forces censorship (generic term)
+primary coil|1
+(noun)|primary winding|primary|coil (generic term)
+primary dentition|1
+(noun)|dentition (generic term)|teeth (generic term)
+primary dysmenorrhea|1
+(noun)|dysmenorrhea (generic term)
+primary election|1
+(noun)|primary|election (generic term)
+primary feather|1
+(noun)|primary|primary quill|flight feather (generic term)|pinion (generic term)|quill (generic term)|quill feather (generic term)
+primary health care|1
+(noun)|health care (generic term)
+primary quill|1
+(noun)|primary|primary feather|flight feather (generic term)|pinion (generic term)|quill (generic term)|quill feather (generic term)
+primary school|1
+(noun)|grade school|grammar school|elementary school|school (generic term)
+primary sex character|1
+(noun)|primary sex characteristic|primary sexual characteristic|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+primary sex characteristic|1
+(noun)|primary sexual characteristic|primary sex character|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+primary sexual characteristic|1
+(noun)|primary sex characteristic|primary sex character|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+primary solid solution|1
+(noun)|solid solution|solution (generic term)
+primary syphilis|1
+(noun)|syphilis (generic term)|syph (generic term)|pox (generic term)
+primary tooth|1
+(noun)|deciduous tooth|baby tooth|milk tooth|tooth (generic term)
+primary winding|1
+(noun)|primary coil|primary|coil (generic term)
+primate|2
+(noun)|archpriest|hierarch|high priest|prelate|priest (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+primates|1
+(noun)|Primates|order Primates|animal order (generic term)
+primateship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+primatology|1
+(noun)|mammalogy (generic term)
+primaxin|1
+(noun)|Primaxin|antibiotic (generic term)|antibiotic drug (generic term)
+prime|12
+(adj)|premier|first (similar term)
+(adj)|first (similar term)
+(adj)|choice|prize|quality|select|superior (similar term)
+(adj)|prime|prime quantity (related term)
+(adj)|meridian|mature (similar term)
+(noun)|prime quantity|number (generic term)
+(noun)|flower|peak|heyday|bloom|blossom|efflorescence|flush|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|canonical hour (generic term)
+(noun)|prime of life|adulthood (generic term)|maturity (generic term)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|ground|undercoat|paint (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+prime factor|1
+(noun)|divisor (generic term)|factor (generic term)
+prime interest rate|1
+(noun)|interest rate (generic term)|rate of interest (generic term)
+prime meridian|1
+(noun)|meridian (generic term)|line of longitude (generic term)
+prime minister|2
+(noun)|Prime Minister|PM|premier|head of state (generic term)|chief of state (generic term)
+(noun)|chancellor|premier|head of state (generic term)|chief of state (generic term)
+prime mover|1
+(noun)|first cause|primum mobile|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+prime number|1
+(noun)|prime (generic term)|prime quantity (generic term)
+prime of life|1
+(noun)|prime|adulthood (generic term)|maturity (generic term)
+prime quantity|1
+(noun)|prime|number (generic term)
+prime time|1
+(noun)|clock time (generic term)|time (generic term)
+primed|1
+(adj)|fit|set|ready (similar term)
+primer|3
+(noun)|textbook (generic term)|text (generic term)|text edition (generic term)|schoolbook (generic term)|school text (generic term)
+(noun)|fuse|fuze|fusee|fuzee|priming|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+(noun)|flat coat|ground|priming|primer coat|priming coat|undercoat|coat of paint (generic term)
+primer coat|1
+(noun)|flat coat|ground|primer|priming|priming coat|undercoat|coat of paint (generic term)
+primeval|1
+(adj)|aboriginal|primal|primaeval|primordial|early (similar term)
+primidone|1
+(noun)|Mysoline|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+primigravida|1
+(noun)|gravida I|gravida (generic term)
+priming|3
+(noun)|preparation (generic term)|readying (generic term)
+(noun)|fuse|fuze|fusee|fuzee|primer|lighter (generic term)|light (generic term)|igniter (generic term)|ignitor (generic term)
+(noun)|flat coat|ground|primer|primer coat|priming coat|undercoat|coat of paint (generic term)
+priming coat|1
+(noun)|flat coat|ground|primer|priming|primer coat|undercoat|coat of paint (generic term)
+primipara|1
+(noun)|para I|mother (generic term)|female parent (generic term)
+primiparous|1
+(adj)|mother|female parent (related term)
+primitive|7
+(adj)|crude|rude|early (similar term)
+(adj)|archaic|early (similar term)
+(adj)|noncivilized (similar term)|noncivilised (similar term)
+(adj)|naive|untrained (similar term)
+(noun)|primitive person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|formula (generic term)|expression (generic term)
+(noun)|word (generic term)
+primitive art|1
+(noun)|outsider art|self-taught art|vernacular art|naive art|genre (generic term)
+primitive person|1
+(noun)|primitive|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+primitively|1
+(adv)|originally|in the beginning
+primitiveness|1
+(noun)|crudeness|crudity|primitivism|rudeness|wild (generic term)|natural state (generic term)|state of nature (generic term)
+primitivism|2
+(noun)|crudeness|crudity|primitiveness|rudeness|wild (generic term)|natural state (generic term)|state of nature (generic term)
+(noun)|genre (generic term)
+primly|1
+(adv)|prissily
+primness|2
+(noun)|prudishness|prudery|Grundyism|modesty (generic term)|modestness (generic term)
+(noun)|priggishness|propriety (generic term)|properness (generic term)|correctitude (generic term)
+primo|2
+(adj)|best (similar term)
+(noun)|part (generic term)|voice (generic term)
+primogenitor|1
+(noun)|progenitor|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+primogeniture|1
+(noun)|inheritance (generic term)|heritage (generic term)
+primordial|1
+(adj)|aboriginal|primal|primeval|primaeval|early (similar term)
+primordial dwarf|1
+(noun)|hypoplastic dwarf|true dwarf|normal dwarf|dwarf (generic term)|midget (generic term)|nanus (generic term)
+primordium|1
+(noun)|anlage|organ (generic term)
+primp|1
+(verb)|preen|plume|dress|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+primping|1
+(noun)|dressing (generic term)|grooming (generic term)
+primrose|1
+(noun)|primula|herb (generic term)|herbaceous plant (generic term)
+primrose family|1
+(noun)|Primulaceae|family Primulaceae|dicot family (generic term)|magnoliopsid family (generic term)
+primrose jasmine|1
+(noun)|Jasminum mesnyi|jasmine (generic term)
+primrose path|1
+(noun)|way (generic term)|path (generic term)|way of life (generic term)
+primula|1
+(noun)|primrose|herb (generic term)|herbaceous plant (generic term)
+primula auricula|1
+(noun)|auricula|bear's ear|Primula auricula|primrose (generic term)|primula (generic term)
+primula elatior|1
+(noun)|oxlip|paigle|Primula elatior|primrose (generic term)|primula (generic term)
+primula polyantha|1
+(noun)|polyanthus|Primula polyantha|primrose (generic term)|primula (generic term)
+primula sinensis|1
+(noun)|Chinese primrose|Primula sinensis|primrose (generic term)|primula (generic term)
+primula veris|1
+(noun)|cowslip|paigle|Primula veris|primrose (generic term)|primula (generic term)
+primula vulgaris|1
+(noun)|English primrose|Primula vulgaris|primrose (generic term)|primula (generic term)
+primulaceae|1
+(noun)|Primulaceae|family Primulaceae|primrose family|dicot family (generic term)|magnoliopsid family (generic term)
+primulales|1
+(noun)|Primulales|order Primulales|plant order (generic term)
+primum mobile|1
+(noun)|first cause|prime mover|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+primus|2
+(noun)|bishop (generic term)
+(noun)|Primus stove|Primus|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+primus stove|1
+(noun)|Primus stove|Primus|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+prince|1
+(noun)|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+prince's-feather|2
+(noun)|princess feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub (generic term)|suffrutex (generic term)
+(noun)|gentleman's-cane|prince's-plume|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth (generic term)
+prince's-plume|3
+(noun)|prince's-feather|princess feather|kiss-me-over-the-garden-gate|Polygonum orientale|subshrub (generic term)|suffrutex (generic term)
+(noun)|desert plume|Stanleya pinnata|Cleome pinnata|subshrub (generic term)|suffrutex (generic term)
+(noun)|prince's-feather|gentleman's-cane|red amaranth|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth (generic term)
+prince's pine|1
+(noun)|pipsissewa|herb (generic term)|herbaceous plant (generic term)
+prince-of-wales'-heath|1
+(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica (generic term)|true heath (generic term)
+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 (generic term)
+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 (generic term)
+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 (generic term)
+prince albert|2
+(noun)|Albert|Prince Albert|Albert Francis Charles Augustus Emmanuel|prince consort (generic term)
+(noun)|Prince Albert|frock coat (generic term)
+prince albert's yew|1
+(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer (generic term)|coniferous tree (generic term)
+prince albert yew|1
+(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer (generic term)|coniferous tree (generic term)
+prince charles|1
+(noun)|Charles|Prince Charles|Prince of Wales (generic term)
+prince charming|1
+(noun)|suitor (generic term)|suer (generic term)|wooer (generic term)
+prince consort|1
+(noun)|prince (generic term)|consort (generic term)
+prince edward|1
+(noun)|Edward|Prince Edward|Edward Antony Richard Louis|prince (generic term)
+prince edward island|1
+(noun)|Prince Edward Island|Canadian province (generic term)
+prince eugene of savoy|1
+(noun)|Eugene|Prince Eugene of Savoy|general (generic term)|full general (generic term)
+prince fumimaro konoe|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+prince fumimaro konoye|1
+(noun)|Konoe|Fumimaro Konoe|Prince Fumimaro Konoe|Konoye|Fumimaro Konoye|Prince Fumimaro Konoye|statesman (generic term)|solon (generic term)|national leader (generic term)
+prince klemens wenzel nepomuk lothar von metternich|1
+(noun)|Metternich|Klemens Metternich|Prince Klemens Wenzel Nepomuk Lothar von Metternich|statesman (generic term)|solon (generic term)|national leader (generic term)
+prince of darkness|1
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+prince of smolensk|1
+(noun)|Kutuzov|Mikhail Ilarionovich Kutuzov|Prince of Smolensk|field marshal (generic term)
+prince of wales|1
+(noun)|Prince of Wales|prince (generic term)
+prince of wales heath|1
+(noun)|Prince-of-Wales'-heath|Prince of Wales heath|Erica perspicua|erica (generic term)|true heath (generic term)
+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 (generic term)|solon (generic term)|national leader (generic term)
+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 (generic term)|solon (generic term)|national leader (generic term)
+prince peter kropotkin|1
+(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+prince philip|1
+(noun)|Philip|Prince Philip|Duke of Edinburgh|prince (generic term)
+prince rupert|1
+(noun)|Rupert|Prince Rupert|prince (generic term)
+princedom|2
+(noun)|rank (generic term)
+(noun)|principality|domain (generic term)|demesne (generic term)|land (generic term)
+princeling|1
+(noun)|prince (generic term)
+princely|2
+(adj)|deluxe|gilded|grand|luxurious|opulent|sumptuous|rich (similar term)
+(adj)|noble (similar term)
+princess|1
+(noun)|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+princess diana|1
+(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat (generic term)
+princess feather|1
+(noun)|prince's-feather|kiss-me-over-the-garden-gate|prince's-plume|Polygonum orientale|subshrub (generic term)|suffrutex (generic term)
+princess grace of monaco|1
+(noun)|Kelly|Grace Kelly|Grace Patricia Kelly|Princess Grace of Monaco|actress (generic term)
+princess of wales|1
+(noun)|Diana|Princess Diana|Princess of Wales|Lady Diana Frances Spencer|female aristocrat (generic term)
+princess pine|1
+(noun)|ground fir|tree clubmoss|Lycopodium obscurum|ground pine (generic term)|Christmas green (generic term)
+princess royal|1
+(noun)|princess (generic term)
+princeton|2
+(noun)|Princeton|town (generic term)
+(noun)|Princeton University|Princeton|university (generic term)
+princeton university|1
+(noun)|Princeton University|Princeton|university (generic term)
+princeton wordnet|1
+(noun)|WordNet|Princeton WordNet|lexical database (generic term)
+princewood|2
+(noun)|Spanish elm|Cordia gerascanthus|tree (generic term)
+(noun)|Spanish elm|Equador laurel|salmwood|cypre|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+principal|6
+(adj)|chief|main|primary|important (similar term)|of import (similar term)
+(noun)|debt (generic term)
+(noun)|school principal|head teacher|head|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|star|lead|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|corpus|principal sum|capital (generic term)
+(noun)|dealer|financier (generic term)|moneyman (generic term)
+principal axis|1
+(noun)|optic axis|axis (generic term)
+principal diagonal|1
+(noun)|main diagonal|diagonal (generic term)
+principal investigator|1
+(noun)|PI|scientist (generic term)|man of science (generic term)
+principal sum|1
+(noun)|principal|corpus|capital (generic term)
+principality|1
+(noun)|princedom|domain (generic term)|demesne (generic term)|land (generic term)
+principality of andorra|1
+(noun)|Andorra|Principality of Andorra|European country (generic term)|European nation (generic term)
+principality of liechtenstein|1
+(noun)|Liechtenstein|Principality of Liechtenstein|European country (generic term)|European nation (generic term)
+principality of monaco|1
+(noun)|Monaco|Principality of Monaco|principality (generic term)|princedom (generic term)|European country (generic term)|European nation (generic term)
+principally|1
+(adv)|chiefly|primarily|mainly|in the main
+principalship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+principe|1
+(noun)|Principe|island (generic term)
+principen|1
+(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin (generic term)
+principle|6
+(noun)|rule|generalization (generic term)|generalisation (generic term)|generality (generic term)
+(noun)|value (generic term)
+(noun)|law (generic term)|natural law (generic term)
+(noun)|rule|law (generic term)|law of nature (generic term)
+(noun)|precept|rule (generic term)|prescript (generic term)
+(noun)|rationale|explanation (generic term)
+principle of equivalence|1
+(noun)|principle (generic term)|rule (generic term)
+principle of liquid displacement|1
+(noun)|principle (generic term)|rule (generic term)
+principle of parsimony|1
+(noun)|Occam's Razor|Ockham's Razor|law of parsimony|principle (generic term)|rule (generic term)
+principle of relativity|1
+(noun)|law (generic term)|law of nature (generic term)
+principle of superposition|2
+(noun)|superposition principle|superposition|principle (generic term)|rule (generic term)
+(noun)|Huygens' principle of superposition|principle (generic term)|rule (generic term)
+principled|1
+(adj)|high-principled (similar term)|scrupulous (related term)|unprincipled (antonym)
+prinia|1
+(noun)|Prinia|genus Prinia|bird genus (generic term)
+prinival|1
+(noun)|lisinopril|Prinival|Zestril|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+prink|2
+(verb)|dress (generic term)|get dressed (generic term)
+(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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+print|10
+(noun)|black and white|written communication (generic term)|written language (generic term)
+(noun)|graphic art (generic term)
+(noun)|mark|indication (generic term)|indicant (generic term)
+(noun)|copy (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|photographic print|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(verb)|publish|produce (generic term)|make (generic term)|create (generic term)
+(verb)|write (generic term)
+(verb)|reproduce (generic term)
+(verb)|impress|write (generic term)
+print buffer|1
+(noun)|buffer (generic term)|buffer storage (generic term)|buffer store (generic term)
+print media|1
+(noun)|medium (generic term)
+print over|1
+(verb)|overprint|print (generic term)|impress (generic term)
+print run|1
+(noun)|press run|run (generic term)
+print seller|1
+(noun)|art dealer (generic term)
+print shop|1
+(noun)|workshop (generic term)|shop (generic term)
+printable|1
+(adj)|unprintable (antonym)
+printed|1
+(adj)|written (similar term)
+printed circuit|1
+(noun)|computer circuit (generic term)
+printed symbol|1
+(noun)|written symbol|symbol (generic term)
+printer|3
+(noun)|pressman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|peripheral (generic term)|computer peripheral (generic term)|peripheral device (generic term)
+(noun)|printing machine|machine (generic term)
+printer's devil|1
+(noun)|apprentice (generic term)|learner (generic term)|prentice (generic term)
+printer's ink|1
+(noun)|printing ink|ink (generic term)
+printer cable|1
+(noun)|cable (generic term)|line (generic term)|transmission line (generic term)
+printing|4
+(noun)|writing (generic term)
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|printing process|writing (generic term)
+(noun)|impression|publication (generic term)
+printing business|1
+(noun)|printing concern|printing company|company (generic term)
+printing company|1
+(noun)|printing concern|printing business|company (generic term)
+printing concern|1
+(noun)|printing business|printing company|company (generic term)
+printing ink|1
+(noun)|printer's ink|ink (generic term)
+printing machine|1
+(noun)|printer|machine (generic term)
+printing operation|1
+(noun)|operation (generic term)
+printing press|1
+(noun)|press|machine (generic term)
+printing process|1
+(noun)|printing|writing (generic term)
+printing unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+printmaker|1
+(noun)|graphic artist|artist (generic term)|creative person (generic term)
+printmaking|1
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+printout|1
+(noun)|output signal (generic term)|output (generic term)
+priodontes|1
+(noun)|Priodontes|genus Priodontes|mammal genus (generic term)
+priodontes giganteus|1
+(noun)|giant armadillo|tatou|tatu|Priodontes giganteus|armadillo (generic term)
+prion|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+prionace|1
+(noun)|Prionace|genus Prionace|fish genus (generic term)
+prionace glauca|1
+(noun)|blue shark|great blue shark|Prionace glauca|requiem shark (generic term)
+prionotus|1
+(noun)|Prionotus|genus Prionotus|fish genus (generic term)
+prionotus carolinus|1
+(noun)|northern sea robin|Prionotus carolinus|sea robin (generic term)|searobin (generic term)
+prior|2
+(adj)|anterior|antecedent (similar term)|preceding (similar term)
+(noun)|superior (generic term)
+prioress|1
+(noun)|abbess|mother superior|superior (generic term)
+prioritise|1
+(verb)|prioritize|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+prioritize|1
+(verb)|prioritise|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+priority|2
+(noun)|precedence|precedency|high status (generic term)
+(noun)|antecedence|antecedency|anteriority|precedence|precedency|earliness (generic term)|posteriority (antonym)
+priority processing|1
+(noun)|data processing (generic term)
+priorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+priory|1
+(noun)|religious residence (generic term)|cloister (generic term)
+priscoan|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+priscoan aeon|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+priscoan eon|1
+(noun)|Hadean|Hadean time|Hadean eon|Hadean aeon|Priscoan|Priscoan eon|Priscoan aeon|eon (generic term)|aeon (generic term)
+prise|3
+(verb)|pry|prize|lever|jimmy|open (generic term)|open up (generic term)
+(verb)|pry|extort (generic term)|wring from (generic term)
+(verb)|respect|esteem|value|prize|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|disesteem (antonym)|disrespect (antonym)
+prism|2
+(noun)|polyhedron (generic term)
+(noun)|optical prism|optical device (generic term)
+prism spectroscope|1
+(noun)|spectroscope|optical instrument (generic term)
+prismatic|2
+(adj)|optical device (related term)
+(adj)|colorful (similar term)|colourful (similar term)
+prismatoid|1
+(noun)|polyhedron (generic term)
+prismoid|1
+(noun)|prismatoid (generic term)
+prison|2
+(noun)|prison house|correctional institution (generic term)
+(noun)|prison house|situation (generic term)|state of affairs (generic term)
+prison-breaking|1
+(noun)|break|breakout|jailbreak|gaolbreak|prisonbreak|escape (generic term)|flight (generic term)
+prison camp|2
+(noun)|internment camp|prisoner of war camp|POW camp|camp (generic term)
+(noun)|work camp|prison farm|camp (generic term)
+prison cell|1
+(noun)|cell|jail cell|room (generic term)
+prison chaplain|1
+(noun)|chaplain (generic term)
+prison farm|1
+(noun)|work camp|prison camp|camp (generic term)
+prison guard|1
+(noun)|jailer|jailor|gaoler|screw|turnkey|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+prison house|2
+(noun)|prison|situation (generic term)|state of affairs (generic term)
+(noun)|prison|correctional institution (generic term)
+prison term|1
+(noun)|sentence|time|term (generic term)
+prisonbreak|1
+(noun)|break|breakout|jailbreak|gaolbreak|prison-breaking|escape (generic term)|flight (generic term)
+prisoner|1
+(noun)|captive|unfortunate (generic term)|unfortunate person (generic term)
+prisoner's base|1
+(noun)|game (generic term)
+prisoner of war|1
+(noun)|POW|prisoner (generic term)|captive (generic term)
+prisoner of war camp|1
+(noun)|prison camp|internment camp|POW camp|camp (generic term)
+prisoner of war censorship|1
+(noun)|military censorship (generic term)
+prisonlike|1
+(adj)|unfree (similar term)
+prissily|1
+(adv)|primly
+prissy|2
+(adj)|priggish|prim|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+(adj)|dainty|nice|overnice|squeamish|fastidious (similar term)
+pristidae|1
+(noun)|Pristidae|family Pristidae|fish family (generic term)
+pristine|2
+(adj)|pure (similar term)
+(adj)|clean (similar term)
+pristis|1
+(noun)|Pristis|genus Pristis|fish genus (generic term)
+pristis pectinatus|1
+(noun)|smalltooth sawfish|Pristis pectinatus|sawfish (generic term)
+pritzelago|1
+(noun)|Pritzelago|genus Pritzelago|dilleniid dicot genus (generic term)
+pritzelago alpina|1
+(noun)|chamois cress|Pritzelago alpina|Lepidium alpina|herb (generic term)|herbaceous plant (generic term)
+privacy|2
+(noun)|privateness|seclusion|reclusiveness (generic term)
+(noun)|privateness|secrecy|concealment|isolation (generic term)
+private|5
+(adj)|backstage (similar term)|clannish (similar term)|cliquish (similar term)|clubby (similar term)|snobbish (similar term)|snobby (similar term)|cloistered (similar term)|reclusive (similar term)|secluded (similar term)|sequestered (similar term)|close (similar term)|closed-door (similar term)|confidential (similar term)|secret (similar term)|confidential (similar term)|insular (similar term)|nonpublic (similar term)|offstage (similar term)|one-on-one (similar term)|privy (similar term)|secluded (similar term)|secret (similar term)|semiprivate (similar term)|tete-a-tete (similar term)|head-to-head (similar term)|toffee-nosed (similar term)|esoteric (related term)|personal (related term)|public (antonym)
+(adj)|personal (similar term)
+(adj)|individual|personal (similar term)
+(adj)|secret|inward (similar term)
+(noun)|buck private|common soldier|enlisted man (generic term)
+private-enterprise|1
+(adj)|competitive|free-enterprise|capitalistic (similar term)|capitalist (similar term)
+private corporation|1
+(noun)|closed corporation|close corporation|privately held corporation|corporation (generic term)|corp (generic term)
+private detective|1
+(noun)|PI|private eye|private investigator|operative|shamus|sherlock|detective (generic term)
+private enterprise|1
+(noun)|market economy|free enterprise|laissez-faire economy|economy (generic term)|economic system (generic term)|non-market economy (antonym)
+private eye|1
+(noun)|private detective|PI|private investigator|operative|shamus|sherlock|detective (generic term)
+private foundation|1
+(noun)|charity (generic term)
+private instructor|1
+(noun)|coach|tutor|teacher (generic term)|instructor (generic term)
+private investigator|1
+(noun)|private detective|PI|private eye|operative|shamus|sherlock|detective (generic term)
+private line|1
+(noun)|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+private nuisance|1
+(noun)|nuisance (generic term)
+private parts|1
+(noun)|genitalia|genital organ|genitals|privates|crotch|reproductive organ (generic term)|sex organ (generic term)
+private property|1
+(noun)|personal property|personal estate|personalty|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+private road|1
+(noun)|driveway|drive|road (generic term)|route (generic term)
+private school|1
+(noun)|school (generic term)
+private security force|1
+(noun)|security force|force (generic term)|personnel (generic term)
+private treaty|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+privateer|2
+(noun)|privateersman|officer (generic term)|ship's officer (generic term)|crewman (generic term)|crew member (generic term)
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+privateersman|1
+(noun)|privateer|officer (generic term)|ship's officer (generic term)|crewman (generic term)|crew member (generic term)
+privately|2
+(adv)|in private|in camera|publicly (antonym)
+(adv)|publicly (antonym)
+privately held corporation|1
+(noun)|closed corporation|close corporation|private corporation|corporation (generic term)|corp (generic term)
+privateness|2
+(noun)|privacy|secrecy|concealment|isolation (generic term)
+(noun)|privacy|seclusion|reclusiveness (generic term)
+privates|1
+(noun)|genitalia|genital organ|genitals|private parts|crotch|reproductive organ (generic term)|sex organ (generic term)
+privation|2
+(noun)|want|deprivation|neediness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|deprivation|social control (generic term)
+privatisation|1
+(noun)|denationalization|denationalisation|privatization|social control (generic term)|nationalization (antonym)
+privatise|1
+(verb)|privatize|denationalize (generic term)|denationalise (generic term)
+privatization|1
+(noun)|denationalization|denationalisation|privatisation|social control (generic term)|nationalization (antonym)
+privatize|1
+(verb)|privatise|denationalize (generic term)|denationalise (generic term)
+privet|1
+(noun)|shrub (generic term)|bush (generic term)
+privet andromeda|1
+(noun)|maleberry|male berry|he-huckleberry|Lyonia ligustrina|shrub (generic term)|bush (generic term)
+privet hedge|1
+(noun)|hedge (generic term)|hedgerow (generic term)
+privilege|4
+(noun)|advantage (generic term)|vantage (generic term)
+(noun)|prerogative|perquisite|exclusive right|right (generic term)
+(noun)|right (generic term)
+(verb)|favor|favour|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+privilege against self incrimination|1
+(noun)|freedom from self-incrimination|civil right (generic term)
+privilege of the floor|1
+(noun)|prerogative (generic term)|privilege (generic term)|perquisite (generic term)|exclusive right (generic term)
+privileged|3
+(adj)|advantaged (similar term)|favored (similar term)|sweetheart (similar term)|fortunate (related term)|rich (related term)|underprivileged (antonym)
+(adj)|exempt (similar term)
+(adj)|inside|inner|exclusive (similar term)
+privine|1
+(noun)|naphazoline|Privine|Sudafed|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|nasal decongestant (generic term)
+privy|4
+(adj)|secluded|secret|private (similar term)
+(adj)|informed (similar term)
+(noun)|toilet|lavatory|lav|can|john|bathroom|room (generic term)
+(noun)|outhouse|earth-closet|jakes|outbuilding (generic term)
+privy council|1
+(noun)|council (generic term)
+privy purse|1
+(noun)|allowance (generic term)
+prix de rome|1
+(noun)|Prix de Rome|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+prix fixe|2
+(adj)|table d'hote|a la carte (antonym)
+(noun)|menu (generic term)|bill of fare (generic term)|card (generic term)|carte du jour (generic term)|carte (generic term)
+prix goncourt|1
+(noun)|Prix Goncourt|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+prize|7
+(adj)|choice|prime|quality|select|superior (similar term)
+(noun)|award|gift (generic term)
+(noun)|loot|booty|pillage|plunder|swag|dirty money|stolen property (generic term)
+(noun)|trophy|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(verb)|value|treasure|appreciate|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|pry|prise|lever|jimmy|open (generic term)|open up (generic term)
+(verb)|respect|esteem|value|prise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|disesteem (antonym)|disrespect (antonym)
+prize money|1
+(noun)|prize (generic term)|award (generic term)
+prize ring|1
+(noun)|boxing ring|ring (generic term)
+prize winner|1
+(noun)|lottery winner|winner (generic term)
+prizefight|2
+(noun)|boxing match (generic term)
+(verb)|box (generic term)
+prizefighter|1
+(noun)|gladiator|boxer (generic term)|pugilist (generic term)
+prizewinning|1
+(adj)|champion|best (similar term)
+prn|1
+(adv)|as needed|as required|pro re nata|PRN
+pro|4
+(adj)|affirmative (similar term)|favoring (similar term)|anti (antonym)
+(noun)|professional|athlete (generic term)|jock (generic term)|amateur (antonym)
+(noun)|argument (generic term)|statement (generic term)|con (antonym)
+(adv)|in favor of|in favor|in favour of|in favour|con (antonym)
+pro-american|1
+(adj)|pro-American|North American country|North American nation (related term)|anti-American (antonym)
+pro-choice|1
+(adj)|pro-life (antonym)
+pro-choice faction|1
+(noun)|faction (generic term)|sect (generic term)
+pro-inflammatory|1
+(adj)|proinflammatory|unhealthy (similar term)
+pro-life|1
+(adj)|pro-choice (antonym)
+pro-life faction|1
+(noun)|faction (generic term)|sect (generic term)
+pro-lifer|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+pro bono|1
+(adj)|unpaid (similar term)
+pro forma|2
+(adj)|perfunctory|formal (similar term)
+(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 (similar term)|temporary (similar term)
+(adv)|pro tempore
+pro tempore|2
+(adj)|pro tem|impermanent (similar term)|temporary (similar term)
+(adv)|pro tem
+proaccelerin|1
+(noun)|prothrombin accelerator|accelerator factor|factor V|coagulation factor (generic term)|clotting factor (generic term)
+proactive|2
+(adj)|retroactive (antonym)
+(adj)|active (similar term)
+probabilism|2
+(noun)|casuistry (generic term)
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+probabilistic|2
+(adj)|casuistry (related term)
+(adj)|measure|quantity|amount (related term)
+probability|2
+(noun)|chance|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|quality (generic term)|improbability (antonym)
+probability theorist|1
+(noun)|mathematician (generic term)
+probability theory|1
+(noun)|applied mathematics (generic term)|applied math (generic term)
+probable|3
+(adj)|likely|equiprobable (similar term)|presumptive (similar term)|verisimilar (similar term)|improbable (antonym)
+(adj)|likely (similar term)
+(noun)|applicant (generic term)|applier (generic term)
+probable cause|1
+(noun)|evidence (generic term)|grounds (generic term)
+probably|2
+(adv)|likely|in all likelihood|in all probability|belike
+(adv)|credibly|believably|plausibly|incredibly (antonym)
+probate|4
+(noun)|probate will|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+(noun)|validation (generic term)|proof (generic term)|substantiation (generic term)
+(verb)|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+(verb)|validate (generic term)|formalize (generic term)|formalise (generic term)
+probate court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+probate will|1
+(noun)|probate|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+probation|2
+(noun)|trial period (generic term)|test period (generic term)
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+probation officer|1
+(noun)|officeholder (generic term)|officer (generic term)
+probationary|1
+(adj)|provisional|provisionary|tentative|conditional (similar term)
+probationer|2
+(noun)|student nurse|nurse (generic term)
+(noun)|parolee|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+probative|1
+(adj)|probatory|significant (similar term)|important (similar term)
+probatory|1
+(adj)|probative|significant (similar term)|important (similar term)
+probe|6
+(noun)|investigation|inquiry (generic term)|enquiry (generic term)|research (generic term)
+(noun)|surgical instrument (generic term)
+(noun)|exploration (generic term)
+(noun)|research (generic term)
+(verb)|examine|investigate (generic term)|look into (generic term)
+(verb)|dig into|poke into|penetrate (generic term)|perforate (generic term)
+probenecid|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+probing|1
+(adj)|inquisitory|searching|inquiring (similar term)
+probity|1
+(noun)|integrity (generic term)
+problem|3
+(noun)|job|difficulty (generic term)
+(noun)|trouble|difficulty (generic term)
+(noun)|question (generic term)|head (generic term)
+problem-oriented language|1
+(noun)|application-oriented language|source language (generic term)
+problem solver|1
+(noun)|solver|convergent thinker|thinker (generic term)
+problem solving|2
+(noun)|cognitive psychology (generic term)
+(noun)|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+problematic|2
+(adj)|debatable|problematical|questionable (similar term)
+(adj)|baffling|knotty|problematical|tough|difficult (similar term)|hard (similar term)
+problematical|2
+(adj)|debatable|problematic|questionable (similar term)
+(adj)|baffling|knotty|problematic|tough|difficult (similar term)|hard (similar term)
+proboscidea|2
+(noun)|Proboscidea|genus Proboscidea|plant genus (generic term)
+(noun)|Proboscidea|order Proboscidea|animal order (generic term)
+proboscidea arenaria|1
+(noun)|sand devil's claw|Proboscidea arenaria|Martynia arenaria|herb (generic term)|herbaceous plant (generic term)
+proboscidea fragrans|1
+(noun)|sweet unicorn plant|Proboscidea fragrans|Martynia fragrans|herb (generic term)|herbaceous plant (generic term)
+proboscidea louisianica|1
+(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|proboscis flower|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+proboscidean|1
+(noun)|proboscidian|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+proboscidian|1
+(noun)|proboscidean|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+proboscis|2
+(noun)|nose (generic term)|olfactory organ (generic term)
+(noun)|trunk|snout (generic term)|neb (generic term)
+proboscis flower|1
+(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|ram's horn|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+proboscis monkey|1
+(noun)|Nasalis larvatus|Old World monkey (generic term)|catarrhine (generic term)
+proboscis worm|1
+(noun)|ribbon worm|nemertean|nemertine|worm (generic term)
+procaine|1
+(noun)|Ethocaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+procaine hydrochloride|1
+(noun)|novocaine|Novocain|procaine (generic term)|Ethocaine (generic term)
+procarbazine|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+procardia|1
+(noun)|nifedipine|Procardia|calcium blocker (generic term)|calcium-channel blocker (generic term)
+procaryote|1
+(noun)|prokaryote|organism (generic term)|being (generic term)|eukaryote (antonym)
+procaryotic|1
+(adj)|prokaryotic|organism|being (related term)|eucaryotic (antonym)|eukaryotic (antonym)
+procavia|1
+(noun)|Procavia|genus Procavia|mammal genus (generic term)
+procavia capensis|1
+(noun)|rock hyrax|rock rabbit|Procavia capensis|hyrax (generic term)|coney (generic term)|cony (generic term)|dassie (generic term)|das (generic term)
+procaviidae|1
+(noun)|Procaviidae|family Procaviidae|mammal family (generic term)
+procedural|2
+(adj)|proceeding|legal proceeding|proceedings (related term)
+(adj)|adjective|substantive (antonym)
+procedure|4
+(noun)|process|activity (generic term)
+(noun)|operation|work (generic term)
+(noun)|routine|subroutine|subprogram|function|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+proceed|5
+(verb)|continue|go on|carry on|talk (generic term)|speak (generic term)
+(verb)|go forward|continue|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|go|move|act (generic term)|move (generic term)
+(verb)|go|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|continue|go on|go along|keep|act (generic term)|move (generic term)|discontinue (antonym)
+proceeding|1
+(noun)|legal proceeding|proceedings|due process (generic term)|due process of law (generic term)
+proceedings|2
+(noun)|proceeding|legal proceeding|due process (generic term)|due process of law (generic term)
+(noun)|minutes|transactions|written record (generic term)|written account (generic term)
+proceeds|1
+(noun)|return|issue|take|takings|yield|payoff|income (generic term)
+procellaria|1
+(noun)|Procellaria|genus Procellaria|bird genus (generic term)
+procellaria aequinoctialis|1
+(noun)|white-chinned petrel|Procellaria aequinoctialis|petrel (generic term)
+procellariidae|1
+(noun)|Procellariidae|family Procellariidae|bird family (generic term)
+procellariiform seabird|1
+(noun)|pelagic bird (generic term)|oceanic bird (generic term)
+procellariiformes|1
+(noun)|Procellariiformes|order Procellariiformes|animal order (generic term)
+process|13
+(noun)|procedure|activity (generic term)
+(noun)|cognitive process|mental process|operation|cognitive operation|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|summons|writ (generic term)|judicial writ (generic term)
+(noun)|unconscious process|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|outgrowth|appendage|body part (generic term)
+(noun)|physical process|physical entity (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|treat|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|action|sue|litigate|challenge (generic term)
+(verb)|work|work on|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+(verb)|serve|swear out|deliver (generic term)
+(verb)|march|walk (generic term)
+process-server|1
+(noun)|messenger (generic term)|courier (generic term)
+process cheese|1
+(noun)|processed cheese|cheese (generic term)
+process of monition|1
+(noun)|monition|summons (generic term)|process (generic term)
+process printing|1
+(noun)|printing (generic term)|printing process (generic term)
+processed|3
+(adj)|prepared (similar term)
+(adj)|refined|unrefined (antonym)
+(adj)|clarified (similar term)|computerized (similar term)|computerised (similar term)|cured (similar term)|vulcanized (similar term)|vulcanised (similar term)|milled (similar term)|polished (similar term)|semi-processed (similar term)|finished (related term)|pure (related term)|treated (related term)|unprocessed (antonym)
+processed cheese|1
+(noun)|process cheese|cheese (generic term)
+processing|1
+(noun)|process (generic term)|physical process (generic term)
+processing time|1
+(noun)|time interval (generic term)|interval (generic term)
+procession|3
+(noun)|emanation|rise|origin (generic term)|origination (generic term)|inception (generic term)
+(noun)|group action (generic term)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|progress|progression|advance|advancement|forward motion|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+processional|2
+(adj)|group action|collection|aggregation|accumulation|assemblage (related term)
+(noun)|prosodion|religious music (generic term)|church music (generic term)
+processional march|1
+(noun)|recessional march|marching music (generic term)|march (generic term)
+processor|3
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+(noun)|worker (generic term)
+(noun)|central processing unit|CPU|C.P.U.|central processor|mainframe|electronic equipment (generic term)|hardware (generic term)|computer hardware (generic term)
+processus coronoideus|1
+(noun)|coronoid process|process (generic term)|outgrowth (generic term)|appendage (generic term)
+prochlorperazine|1
+(noun)|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)|antiemetic (generic term)|antiemetic drug (generic term)
+prociphilus|1
+(noun)|Prociphilus|genus Prociphilus|arthropod genus (generic term)
+prociphilus tessellatus|1
+(noun)|woolly alder aphid|Prociphilus tessellatus|woolly aphid (generic term)|woolly plant louse (generic term)
+proclaim|4
+(verb)|entitle (generic term)|title (generic term)
+(verb)|exclaim|promulgate|declare (generic term)
+(verb)|predicate|assert (generic term)|asseverate (generic term)|maintain (generic term)
+(verb)|laud|extol|exalt|glorify|praise (generic term)
+proclaimed|1
+(adj)|announced|declared (similar term)
+proclamation|2
+(noun)|announcement|annunciation|declaration|statement (generic term)
+(noun)|promulgation|act (generic term)|human action (generic term)|human activity (generic term)
+proclivity|1
+(noun)|propensity|leaning|inclination (generic term)|disposition (generic term)|tendency (generic term)
+procnias|1
+(noun)|Procnias|genus Procnias|bird genus (generic term)
+proconsul|3
+(noun)|official (generic term)|functionary (generic term)
+(noun)|governor (generic term)
+(noun)|hominoid (generic term)
+proconsular|1
+(adj)|official|functionary (related term)
+proconsulate|1
+(noun)|proconsulship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+proconsulship|1
+(noun)|proconsulate|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+proconvertin|1
+(noun)|cothromboplastin|stable factor|factor VII|coagulation factor (generic term)|clotting factor (generic term)
+procrastinate|2
+(verb)|stall|drag one's feet|drag one's heels|shillyshally|dilly-dally|dillydally|delay (generic term)
+(verb)|procrastinate (generic term)|stall (generic term)|drag one's feet (generic term)|drag one's heels (generic term)|shillyshally (generic term)|dilly-dally (generic term)|dillydally (generic term)|delay (generic term)
+procrastination|2
+(noun)|cunctation|shillyshally|delay (generic term)|holdup (generic term)
+(noun)|dilatoriness|slowness (generic term)|deliberation (generic term)|deliberateness (generic term)|unhurriedness (generic term)
+procrastinator|1
+(noun)|postponer|cunctator|delayer (generic term)
+procreate|1
+(verb)|reproduce|multiply|make (generic term)|create (generic term)
+procreation|1
+(noun)|reproduction|breeding|facts of life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+procreative|1
+(adj)|generative|reproductive|fruitful (similar term)
+procrustean|1
+(adj)|Procrustean|mythical being (related term)
+procrustean bed|1
+(noun)|procrustean standard|procrustean rule|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+procrustean rule|1
+(noun)|procrustean standard|procrustean bed|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+procrustean standard|1
+(noun)|procrustean rule|procrustean bed|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+procrustes|1
+(noun)|Procrustes|mythical being (generic term)
+proctalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+proctitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+proctocele|1
+(noun)|rectocele|colpocele (generic term)|vaginocele (generic term)
+proctologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+proctology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+proctoplasty|1
+(noun)|rectoplasty|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+proctor|2
+(noun)|monitor|supervisor (generic term)
+(verb)|invigilate|watch (generic term)|observe (generic term)|follow (generic term)|watch over (generic term)|keep an eye on (generic term)
+proctorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+proctoscope|1
+(noun)|endoscope (generic term)
+proctoscopy|1
+(noun)|endoscopy (generic term)
+procumbent|1
+(adj)|unerect (similar term)
+procurable|1
+(adj)|gettable|getable|obtainable|available (similar term)
+procural|1
+(noun)|procurement|procurance|acquisition (generic term)
+procurance|1
+(noun)|procurement|procural|acquisition (generic term)
+procurator|2
+(noun)|proxy|placeholder|agent (generic term)
+(noun)|bureaucrat (generic term)|administrative official (generic term)
+procure|2
+(verb)|secure|obtain (generic term)
+(verb)|pander|pimp|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+procurement|1
+(noun)|procurance|procural|acquisition (generic term)
+procurer|2
+(noun)|pimp|panderer|pander|pandar|fancy man|ponce|wrongdoer (generic term)|offender (generic term)
+(noun)|securer|acquirer (generic term)
+procuress|1
+(noun)|pimp (generic term)|procurer (generic term)|panderer (generic term)|pander (generic term)|pandar (generic term)|fancy man (generic term)|ponce (generic term)
+procursive epilepsy|1
+(noun)|epilepsy (generic term)
+procyclidine|1
+(noun)|Kemadrin|muscle relaxant (generic term)
+procyon|2
+(noun)|Procyon|binary star (generic term)|binary (generic term)|double star (generic term)
+(noun)|Procyon|genus Procyon|mammal genus (generic term)
+procyon cancrivorus|1
+(noun)|crab-eating raccoon|Procyon cancrivorus|raccoon (generic term)|racoon (generic term)
+procyon lotor|1
+(noun)|common raccoon|common racoon|coon|ringtail|Procyon lotor|raccoon (generic term)|racoon (generic term)
+procyonid|1
+(noun)|carnivore (generic term)
+procyonidae|1
+(noun)|Procyonidae|family Procyonidae|mammal family (generic term)
+prod|5
+(noun)|goad|goading|prodding|urging|spur|spurring|encouragement (generic term)
+(noun)|goad|device (generic term)
+(verb)|nudge|poke at|push (generic term)|force (generic term)
+(verb)|incite|egg on
+(verb)|jab|stab|poke|dig|thrust (generic term)
+prodding|1
+(noun)|goad|goading|prod|urging|spur|spurring|encouragement (generic term)
+prodigal|4
+(adj)|lavish|munificent|overgenerous|too-generous|unsparing|unstinted|unstinting|generous (similar term)
+(adj)|extravagant|profligate|spendthrift|wasteful (similar term)
+(adj)|improvident (similar term)
+(noun)|profligate|squanderer|consumer (generic term)
+prodigality|2
+(noun)|extravagance|profligacy|improvidence (generic term)|shortsightedness (generic term)
+(noun)|extravagance|lavishness|highlife|high life|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+prodigally|1
+(adv)|wastefully
+prodigious|3
+(adj)|colossal|stupendous|large (similar term)|big (similar term)
+(adj)|portentous|significant (similar term)|important (similar term)
+(adj)|exceeding|exceptional|olympian|surpassing|extraordinary (similar term)
+prodigy|3
+(noun)|genius (generic term)|mastermind (generic term)|brain (generic term)|brainiac (generic term)|Einstein (generic term)
+(noun)|omen|portent|presage|prognostic|prognostication|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+(noun)|exemplar (generic term)|example (generic term)|model (generic term)|good example (generic term)
+prodroma|1
+(noun)|prodrome|symptom (generic term)
+prodromal|1
+(adj)|prodromic|symptom (related term)
+prodrome|1
+(noun)|prodroma|symptom (generic term)
+prodromic|1
+(adj)|prodromal|symptom (related term)
+produce|8
+(noun)|green goods|green groceries|garden truck|food (generic term)|solid food (generic term)
+(verb)|bring forth|make (generic term)|create (generic term)
+(verb)|make|create
+(verb)|bring about|give rise|make (generic term)|create (generic term)
+(verb)|bring forth|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|bring on|bring out
+(verb)|grow|raise|farm|cultivate (generic term)
+(verb)|grow|develop|get|acquire|change (generic term)
+producer|3
+(noun)|manufacturer|maker (generic term)|shaper (generic term)
+(noun)|creator (generic term)
+(noun)|cause (generic term)
+producer gas|1
+(noun)|air gas|gas (generic term)
+producer price index|1
+(noun)|wholesale price index|price index (generic term)|price level (generic term)
+product|6
+(noun)|merchandise|ware|commodity (generic term)|trade good (generic term)|good (generic term)
+(noun)|production|creation (generic term)
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|mathematical product|quantity (generic term)
+(noun)|intersection|cartesian product|set (generic term)
+product-moment correlation coefficient|1
+(noun)|Pearson product-moment correlation coefficient|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+product development|1
+(noun)|development (generic term)
+product introduction|1
+(noun)|introduction (generic term)|debut (generic term)|first appearance (generic term)|launching (generic term)|unveiling (generic term)|entry (generic term)
+product line|1
+(noun)|line|line of products|line of merchandise|business line|line of business|merchandise (generic term)|ware (generic term)|product (generic term)
+product research|1
+(noun)|marketing research (generic term)|market research (generic term)
+production|8
+(noun)|industry (generic term)|manufacture (generic term)
+(noun)|presentation (generic term)
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|product|creation (generic term)
+(noun)|exhibition (generic term)
+(noun)|output|yield|indefinite quantity (generic term)
+(noun)|display (generic term)
+(noun)|creation (generic term)|creative activity (generic term)
+production cost|1
+(noun)|cost (generic term)
+production line|1
+(noun)|assembly line|line|mechanical system (generic term)
+production order|1
+(noun)|order (generic term)|purchase order (generic term)
+productive|4
+(adj)|amentiferous (similar term)|amentaceous (similar term)|arable (similar term)|cultivable (similar term)|cultivatable (similar term)|tillable (similar term)|bearing (similar term)|fecund (similar term)|fertile (similar term)|prolific (similar term)|fruitful (similar term)|profitable (similar term)|fur-bearing (similar term)|nut-bearing (similar term)|oil-bearing (similar term)|rich (similar term)|creative (related term)|originative (related term)|fertile (related term)|fruitful (related term)|profitable (related term)|successful (related term)|unproductive (antonym)
+(adj)|generative|consumptive (antonym)
+(adj)|successful (similar term)
+(adj)|fat|fertile|rich|fruitful (similar term)
+productively|1
+(adv)|fruitfully|profitably|unprofitably (antonym)|fruitlessly (antonym)|unproductively (antonym)
+productiveness|1
+(noun)|productivity|fruitfulness (generic term)|fecundity (generic term)|unproductiveness (antonym)
+productivity|2
+(noun)|productiveness|fruitfulness (generic term)|fecundity (generic term)|unproductiveness (antonym)
+(noun)|ratio (generic term)
+proenzyme|1
+(noun)|zymogen|organic compound (generic term)
+prof|1
+(noun)|professor|academician (generic term)|academic (generic term)|faculty member (generic term)
+profanation|2
+(noun)|desecration|blasphemy|sacrilege|irreverence (generic term)|violation (generic term)
+(noun)|degradation (generic term)|debasement (generic term)
+profanatory|1
+(adj)|profane (similar term)
+profane|6
+(adj)|blasphemous|blue|dirty (similar term)
+(adj)|laic (similar term)|lay (similar term)|secular (similar term)|profanatory (similar term)|secularized (similar term)|secularised (similar term)|temporal (similar term)|worldly (similar term)|earthly (related term)|impious (related term)|sacred (antonym)
+(adj)|unconsecrated|unsanctified|unholy (similar term)|unhallowed (similar term)
+(adj)|blasphemous|sacrilegious|irreverent (similar term)
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|desecrate|outrage|violate|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+profaned|1
+(adj)|violated|desecrated (similar term)
+profaneness|2
+(noun)|irreverence (generic term)
+(noun)|unsanctification|unholiness (generic term)
+profanity|1
+(noun)|utterance (generic term)|vocalization (generic term)
+profess|6
+(verb)|claim (generic term)
+(verb)|concede|confess|admit (generic term)|acknowledge (generic term)
+(verb)|declare (generic term)
+(verb)|accept (generic term)|admit (generic term)|take (generic term)|take on (generic term)
+(verb)|vow (generic term)
+(verb)|pretend|claim (generic term)
+professed|3
+(adj)|professional (similar term)
+(adj)|declared (similar term)
+(adj)|avowed|declared (similar term)
+professedly|1
+(adv)|avowedly
+professing|1
+(noun)|profession|avowal (generic term)|avouchment (generic term)|affirmation (generic term)
+profession|4
+(noun)|community|occupational group (generic term)|vocation (generic term)
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|professing|avowal (generic term)|avouchment (generic term)|affirmation (generic term)
+(noun)|affirmation (generic term)
+professional|8
+(adj)|nonrecreational (similar term)|paid (similar term)|professed (similar term)|nonprofessional (antonym)
+(adj)|occupational group|vocation (related term)
+(adj)|unprofessional (antonym)
+(adj)|occupation|business|job|line of work|line (related term)
+(adj)|white-collar (similar term)
+(noun)|professional person|adult (generic term)|grownup (generic term)
+(noun)|pro|athlete (generic term)|jock (generic term)|amateur (antonym)
+(noun)|master|authority (generic term)
+professional association|1
+(noun)|association (generic term)
+professional baseball|1
+(noun)|baseball (generic term)|baseball game (generic term)|sport (generic term)
+professional basketball|1
+(noun)|basketball (generic term)|basketball game (generic term)|hoops (generic term)|sport (generic term)
+professional boxing|1
+(noun)|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)|sport (generic term)
+professional dancer|1
+(noun)|dancer|terpsichorean|performer (generic term)|performing artist (generic term)
+professional football|1
+(noun)|football (generic term)|football game (generic term)|sport (generic term)
+professional golf|1
+(noun)|golf (generic term)|golf game (generic term)|sport (generic term)
+professional golfer|1
+(noun)|golf pro|golfer (generic term)|golf player (generic term)|linksman (generic term)
+professional life|1
+(noun)|business life|career (generic term)|calling (generic term)|vocation (generic term)
+professional organisation|1
+(noun)|professional organization|organization (generic term)|organisation (generic term)
+professional organization|1
+(noun)|professional organisation|organization (generic term)|organisation (generic term)
+professional person|1
+(noun)|professional|adult (generic term)|grownup (generic term)
+professional relation|1
+(noun)|social relation (generic term)
+professional tennis|1
+(noun)|tennis (generic term)|lawn tennis (generic term)|sport (generic term)
+professional tennis player|1
+(noun)|tennis pro|tennis player (generic term)
+professional wrestling|1
+(noun)|wrestling (generic term)|rassling (generic term)|grappling (generic term)|sport (generic term)
+professionalisation|1
+(noun)|professionalization|social process (generic term)
+professionalise|2
+(verb)|professionalize|change (generic term)
+(verb)|professionalize|change (generic term)|alter (generic term)|modify (generic term)
+professionalism|1
+(noun)|expertness (generic term)|expertise (generic term)
+professionalization|1
+(noun)|professionalisation|social process (generic term)
+professionalize|2
+(verb)|professionalise|change (generic term)
+(verb)|professionalise|change (generic term)|alter (generic term)|modify (generic term)
+professor|1
+(noun)|prof|academician (generic term)|academic (generic term)|faculty member (generic term)
+professorial|1
+(adj)|academician|academic|faculty member (related term)
+professorship|1
+(noun)|chair|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+proffer|2
+(noun)|suggestion|proposition|proposal (generic term)
+(verb)|offer|give (generic term)
+proficiency|2
+(noun)|competence (generic term)|competency (generic term)
+(noun)|technique|skillfulness (generic term)
+proficient|1
+(adj)|adept|expert|good|practiced|skillful|skilful|skilled (similar term)
+profile|7
+(noun)|chart (generic term)
+(noun)|side view (generic term)
+(noun)|biography (generic term)|life (generic term)|life story (generic term)|life history (generic term)
+(noun)|visibility|salience (generic term)|saliency (generic term)|strikingness (generic term)
+(noun)|cross section (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+profiling|1
+(noun)|identification (generic term)
+profit|4
+(noun)|net income|net|net profit|lucre|profits|earnings|income (generic term)
+(noun)|gain|advantage (generic term)|vantage (generic term)
+(verb)|gain|benefit|get (generic term)|acquire (generic term)
+(verb)|turn a profit|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)|lose (antonym)|break even (antonym)
+profit-and-loss statement|1
+(noun)|income statement|earnings report|operating statement|statement (generic term)|financial statement (generic term)
+profit-making|1
+(adj)|profitable|rewarding (similar term)
+profit-maximising|1
+(adj)|profit-maximizing|increasing (similar term)
+profit-maximizing|1
+(adj)|profit-maximising|increasing (similar term)
+profit and loss|1
+(noun)|profit and loss account|account (generic term)|accounting (generic term)|account statement (generic term)
+profit and loss account|1
+(noun)|profit and loss|account (generic term)|accounting (generic term)|account statement (generic term)
+profit margin|1
+(noun)|margin of profit|gross margin|ratio (generic term)
+profit sharing|1
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+profit taker|1
+(noun)|stock trader (generic term)
+profitability|1
+(noun)|profitableness|gainfulness|lucrativeness|profit (generic term)|gain (generic term)|unprofitability (antonym)|unprofitableness (antonym)
+profitable|4
+(adj)|bankable (similar term)|fat (similar term)|juicy (similar term)|gainful (similar term)|paid (similar term)|paying (similar term)|economic (similar term)|lucrative (similar term)|moneymaking (similar term)|remunerative (similar term)|advantageous (related term)|productive (related term)|useful (related term)|utile (related term)|unprofitable (antonym)
+(adj)|advantageous (similar term)
+(adj)|profit-making|rewarding (similar term)
+(adj)|fruitful|productive (similar term)
+profitableness|2
+(noun)|favorableness|favourableness|advantageousness|positivity|positiveness|advantage (generic term)|vantage (generic term)|unfavorableness (antonym)
+(noun)|profitability|gainfulness|lucrativeness|profit (generic term)|gain (generic term)|unprofitability (antonym)|unprofitableness (antonym)
+profitably|1
+(adv)|productively|fruitfully|unprofitably (antonym)|fruitlessly (antonym)|unproductively (antonym)
+profiteer|2
+(noun)|capitalist (generic term)
+(verb)|profit (generic term)|gain (generic term)|benefit (generic term)
+profitless|1
+(adj)|unprofitable|unrewarding (similar term)
+profitlessly|1
+(adv)|unprofitably|gainlessly
+profits|2
+(noun)|net income|net|net profit|lucre|profit|earnings|income (generic term)
+(noun)|winnings|win|financial gain (generic term)|losings (antonym)
+profligacy|2
+(noun)|extravagance|prodigality|improvidence (generic term)|shortsightedness (generic term)
+(noun)|dissipation|dissolution|licentiousness|looseness|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+profligate|4
+(adj)|extravagant|prodigal|spendthrift|wasteful (similar term)
+(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|riotous|fast|immoral (similar term)
+(noun)|rake|rakehell|rip|blood|roue|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|prodigal|squanderer|consumer (generic term)
+profligately|1
+(adv)|dissolutely
+profound|6
+(adj)|deep (similar term)|thoughtful (similar term)|intense (related term)|scholarly (related term)|superficial (antonym)
+(adj)|intense (similar term)
+(adj)|fundamental|significant (similar term)|important (similar term)
+(adj)|deep (similar term)
+(adj)|heavy|sound|wakeless|deep (similar term)
+(adj)|unfathomed|unplumbed|unsounded|deep (similar term)
+profoundly|1
+(adv)|deeply
+profoundly deaf|1
+(adj)|stone-deaf|deaf as a post|unhearing|deaf (similar term)
+profoundness|5
+(noun)|ultimacy (generic term)|ultimateness (generic term)
+(noun)|reconditeness|abstruseness|abstrusity|profundity|wisdom (generic term)
+(noun)|astuteness|profundity|depth|deepness|wisdom (generic term)|sapience (generic term)
+(noun)|deepness|profundity|depth (generic term)|shallowness (antonym)
+(noun)|profundity|depth (generic term)|superficiality (antonym)
+profundity|4
+(noun)|reconditeness|abstruseness|abstrusity|profoundness|wisdom (generic term)
+(noun)|profoundness|depth (generic term)|superficiality (antonym)
+(noun)|astuteness|profoundness|depth|deepness|wisdom (generic term)|sapience (generic term)
+(noun)|deepness|profoundness|depth (generic term)|shallowness (antonym)
+profuse|1
+(adj)|exuberant|lush|luxuriant|riotous|abundant (similar term)
+profusely|1
+(adv)|abundantly|copiously|extravagantly
+profuseness|1
+(noun)|profusion|richness|cornucopia|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+profusion|1
+(noun)|profuseness|richness|cornucopia|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+progenitor|1
+(noun)|primogenitor|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+progeny|1
+(noun)|offspring|issue|relative (generic term)|relation (generic term)
+progeria|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+progestational|2
+(adj)|progestin|progestogen (related term)
+(adj)|physiological state|physiological condition (related term)
+progesterone|1
+(noun)|Lipo-Lutin|progestin (generic term)|progestogen (generic term)
+progestin|1
+(noun)|progestogen|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+progestogen|1
+(noun)|progestin|steroid hormone (generic term)|steroid (generic term)|sex hormone (generic term)
+prognathic|1
+(adj)|prognathous|hypognathous|lantern-jawed (similar term)|opisthognathous (antonym)
+prognathism|1
+(noun)|condition (generic term)|status (generic term)
+prognathous|1
+(adj)|prognathic|hypognathous|lantern-jawed (similar term)|opisthognathous (antonym)
+progne|1
+(noun)|Progne|genus Progne|bird genus (generic term)
+progne subis|1
+(noun)|purple martin|Progne subis|martin (generic term)
+prognosis|2
+(noun)|forecast|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+(noun)|prospect|medical prognosis|medical diagnosis (generic term)
+prognostic|2
+(adj)|predictive|prognosticative|prophetic (similar term)|prophetical (similar term)
+(noun)|omen|portent|presage|prognostication|prodigy|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+prognosticate|2
+(verb)|predict|foretell|call|forebode|anticipate|promise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|bode|portend|auspicate|omen|presage|betoken|foreshadow|augur|foretell|prefigure|forecast|predict|bespeak (generic term)|betoken (generic term)|indicate (generic term)|point (generic term)|signal (generic term)
+prognostication|3
+(noun)|omen|portent|presage|prognostic|prodigy|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+(noun)|prediction|foretelling|forecasting|statement (generic term)
+(noun)|prophecy|vaticination|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+prognosticative|1
+(adj)|predictive|prognostic|prophetic (similar term)|prophetical (similar term)
+prognosticator|1
+(noun)|forecaster|predictor|soothsayer|visionary (generic term)|illusionist (generic term)|seer (generic term)
+program|10
+(noun)|programme|system (generic term)|system of rules (generic term)
+(noun)|plan|programme|idea (generic term)|thought (generic term)
+(noun)|programme|computer program|computer programme|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|course of study|programme|curriculum|syllabus|information (generic term)|info (generic term)
+(noun)|broadcast|programme|show (generic term)
+(noun)|programme|performance (generic term)
+(noun)|platform|political platform|political program|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|programme|announcement (generic term)|promulgation (generic term)
+(verb)|programme|schedule (generic term)
+(verb)|programme|create by mental act (generic term)|create mentally (generic term)
+program library|1
+(noun)|library|subroutine library|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+program line|1
+(noun)|instruction|command|statement|code (generic term)|computer code (generic term)
+program music|1
+(noun)|programme music|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+program trading|1
+(noun)|trading (generic term)
+programing|2
+(noun)|scheduling|programming|planning (generic term)
+(noun)|programming|computer programming|computer programing|creating by mental acts (generic term)
+programing language|1
+(noun)|programming language|artificial language (generic term)
+programma|1
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+programme|9
+(noun)|program|announcement (generic term)|promulgation (generic term)
+(noun)|course of study|program|curriculum|syllabus|information (generic term)|info (generic term)
+(noun)|broadcast|program|show (generic term)
+(noun)|program|computer program|computer programme|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|program|system (generic term)|system of rules (generic term)
+(noun)|plan|program|idea (generic term)|thought (generic term)
+(noun)|program|performance (generic term)
+(verb)|program|create by mental act (generic term)|create mentally (generic term)
+(verb)|program|schedule (generic term)
+programme music|1
+(noun)|program music|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+programmed cell death|1
+(noun)|apoptosis|caspase-mediated cell death|necrobiosis (generic term)|cell death (generic term)
+programmer|1
+(noun)|computer programmer|coder|software engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|computer user (generic term)
+programming|2
+(noun)|scheduling|programing|planning (generic term)
+(noun)|programing|computer programming|computer programing|creating by mental acts (generic term)
+programming error|1
+(noun)|software error|error (generic term)|computer error (generic term)
+programming language|1
+(noun)|programing language|artificial language (generic term)
+progress|6
+(noun)|advancement|development (generic term)
+(noun)|progression|procession|advance|advancement|forward motion|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|progression|advance|change of location (generic term)|travel (generic term)
+(verb)|come on|come along|advance|get on|get along|shape up|develop (generic term)|regress (antonym)
+(verb)|advance|pass on|move on|march on|go on|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|recede (antonym)
+(verb)|build up|work up|build|develop (generic term)
+progress report|1
+(noun)|report (generic term)|study (generic term)|written report (generic term)
+progress to|1
+(verb)|reach|make|get to|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+progression|3
+(noun)|patterned advance|series (generic term)
+(noun)|progress|advance|change of location (generic term)|travel (generic term)
+(noun)|progress|procession|advance|advancement|forward motion|onward motion|motion (generic term)|movement (generic term)|move (generic term)
+progressive|7
+(adj)|advanced (similar term)|forward-looking (similar term)|innovative (similar term)|modern (similar term)|advancing (similar term)|forward (similar term)|forward-moving (similar term)|modernized (similar term)|modernised (similar term)|state-of-the-art (similar term)|forward (related term)|industrial (related term)|regressive (antonym)
+(adj)|reformist|reform-minded|liberal (similar term)
+(adj)|degressive (similar term)|graduated (similar term)|proportional (similar term)|regressive (antonym)
+(adj)|increasing (similar term)
+(adj)|active (similar term)
+(noun)|progressive tense|imperfect|imperfect tense|continuous tense|tense (generic term)
+(noun)|liberal|liberalist|adult (generic term)|grownup (generic term)|conservative (antonym)
+progressive aspect|1
+(noun)|durative (generic term)|durative aspect (generic term)
+progressive emphysematous necrosis|1
+(noun)|gas gangrene|clostridial myonecrosis|emphysematous gangrene|emphysematous phlegmon|gangrenous emphysema|gas phlegmon|gangrene (generic term)|sphacelus (generic term)|slough (generic term)
+progressive party|1
+(noun)|Progressive Party|Bull Moose Party|party (generic term)|political party (generic term)
+progressive rock|1
+(noun)|art rock|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+progressive tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+progressive tense|1
+(noun)|progressive|imperfect|imperfect tense|continuous tense|tense (generic term)
+progressive vaccinia|1
+(noun)|vaccinia gangrenosa|vaccinia (generic term)|vaccina (generic term)|variola vaccine (generic term)|variola vaccinia (generic term)|variola vaccina (generic term)
+progressively|1
+(adv)|increasingly|more and more
+progressiveness|1
+(noun)|progressivity|changeableness (generic term)|changeability (generic term)
+progressivism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+progressivity|1
+(noun)|progressiveness|changeableness (generic term)|changeability (generic term)
+progymnosperm|1
+(noun)|gymnosperm (generic term)
+prohibit|1
+(verb)|forbid|interdict|proscribe|veto|disallow|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+prohibited|2
+(adj)|forbidden|out|proscribed|taboo|tabu|verboten|impermissible (similar term)
+(adj)|banned|illegal (similar term)
+prohibition|5
+(noun)|law (generic term)
+(noun)|ban|proscription|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|prohibition era|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|refusal (generic term)
+(noun)|inhibition|forbiddance|action (generic term)
+prohibition era|1
+(noun)|prohibition|time period (generic term)|period of time (generic term)|period (generic term)
+prohibition party|1
+(noun)|Prohibition Party|party (generic term)|political party (generic term)
+prohibitionist|1
+(noun)|dry|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+prohibitive|1
+(adj)|prohibitory|preventive (similar term)|preventative (similar term)
+prohibitory|1
+(adj)|prohibitive|preventive (similar term)|preventative (similar term)
+proinflammatory|1
+(adj)|pro-inflammatory|unhealthy (similar term)
+project|14
+(noun)|undertaking|task|labor|work (generic term)
+(noun)|projection|plan (generic term)|program (generic term)|programme (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|stick out|protrude|jut out|jut
+(verb)|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|show (generic term)
+(verb)|cause to be perceived (generic term)
+(verb)|draw (generic term)
+(verb)|plan|contrive|design|create by mental act (generic term)|create mentally (generic term)
+(verb)|propose|plan (generic term)
+(verb)|visualize|visualise|envision|fancy|see|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|cast|contrive|throw|send (generic term)|direct (generic term)
+(verb)|send off|propel (generic term)|impel (generic term)
+(verb)|externalize|externalise|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+projected|2
+(adj)|proposed|planned (similar term)
+(adj)|jutting|projecting|protruding|sticking|sticking out|protrusive (similar term)
+projectile|3
+(adj)|dynamic (similar term)|dynamical (similar term)
+(noun)|missile|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|rocket|vehicle (generic term)
+projecting|1
+(adj)|jutting|projected|protruding|sticking|sticking out|protrusive (similar term)
+projection|10
+(noun)|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+(noun)|visual communication (generic term)
+(noun)|project|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|convex shape (generic term)|convexity (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|acoustic projection|sound projection|acoustic phenomenon (generic term)
+(noun)|representation (generic term)
+(noun)|protrusion|jut|jutting|change of shape (generic term)
+(noun)|expulsion|ejection|forcing out|propulsion (generic term)|actuation (generic term)
+projection screen|1
+(noun)|screen|silver screen|surface (generic term)
+projectionist|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+projective device|1
+(noun)|projective test|projective technique|personality test (generic term)
+projective geometry|1
+(noun)|descriptive geometry|geometry (generic term)
+projective technique|1
+(noun)|projective test|projective device|personality test (generic term)
+projective test|1
+(noun)|projective device|projective technique|personality test (generic term)
+projector|2
+(noun)|optical device (generic term)
+(noun)|optical instrument (generic term)
+prokaryote|1
+(noun)|procaryote|organism (generic term)|being (generic term)|eukaryote (antonym)
+prokaryotic|1
+(adj)|procaryotic|organism|being (related term)|eucaryotic (antonym)|eukaryotic (antonym)
+prokayotae|1
+(noun)|Monera|kingdom Monera|Prokayotae|kingdom Prokaryotae|kingdom (generic term)
+prokhorov|1
+(noun)|Prokhorov|Aleksandr Prokhorov|Aleksandr Mikjailovich Prokhorov|physicist (generic term)
+prokofiev|1
+(noun)|Prokofiev|Sergei Sergeyevich Prokofiev|composer (generic term)
+prolactin|1
+(noun)|lactogenic hormone|luteotropin|lactogen (generic term)|gonadotropin (generic term)|gonadotrophin (generic term)|gonadotropic hormone (generic term)|gonadotrophic hormone (generic term)
+prolamine|1
+(noun)|simple protein (generic term)
+prolapse|2
+(noun)|prolapsus|descensus|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+(verb)|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+prolapsus|1
+(noun)|prolapse|descensus|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+prolate|2
+(adj)|watermelon-shaped|cucumber-shaped (similar term)|rounded (related term)|oblate (antonym)
+(adj)|egg-shaped|elliptic|elliptical|oval|oval-shaped|ovate|oviform|ovoid|rounded (similar term)
+prolate cycloid|1
+(noun)|cycloid (generic term)
+prole|1
+(noun)|proletarian|worker|commoner (generic term)|common man (generic term)|common person (generic term)
+prolegomenon|1
+(noun)|introduction (generic term)
+prolepsis|1
+(noun)|rhetorical device (generic term)
+proletarian|3
+(adj)|propertyless|lowborn (related term)|lower-class (related term)|low-class (related term)|patrician (antonym)|plebeian (antonym)
+(adj)|lower-class (similar term)|low-class (similar term)
+(noun)|prole|worker|commoner (generic term)|common man (generic term)|common person (generic term)
+proletariat|1
+(noun)|labor|labour|working class|class (generic term)|social class (generic term)|socio-economic class (generic term)
+proliferate|2
+(verb)|grow (generic term)
+(verb)|multiply (generic term)|manifold (generic term)
+proliferation|2
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)|nonproliferation (antonym)|non-proliferation (antonym)
+prolific|2
+(adj)|fecund|fertile|productive (similar term)
+(adj)|fertile|fruitful (similar term)
+prolificacy|1
+(noun)|richness|rankness|fertility|fruitfulness (generic term)|fecundity (generic term)
+proline|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+prolix|1
+(adj)|diffuse (similar term)|long-winded (similar term)|tedious (similar term)|verbose (similar term)|windy (similar term)|wordy (similar term)|verbal (similar term)|pleonastic (similar term)|redundant (similar term)|tautologic (similar term)|tautological (similar term)|voluble (related term)|concise (antonym)
+prolixity|1
+(noun)|prolixness|windiness|long-windedness|wordiness|verboseness (generic term)|verbosity (generic term)
+prolixness|1
+(noun)|prolixity|windiness|long-windedness|wordiness|verboseness (generic term)|verbosity (generic term)
+prolog|1
+(noun)|Prolog|logic programing|logic programming|programming language (generic term)|programing language (generic term)
+prologise|1
+(verb)|prologize|prologuize|precede (generic term)|preface (generic term)|premise (generic term)|introduce (generic term)
+prologize|1
+(verb)|prologuize|prologise|precede (generic term)|preface (generic term)|premise (generic term)|introduce (generic term)
+prologue|1
+(noun)|introduction (generic term)
+prologuize|1
+(verb)|prologize|prologise|precede (generic term)|preface (generic term)|premise (generic term)|introduce (generic term)
+prolong|2
+(verb)|protract|extend|draw out|lengthen (generic term)
+(verb)|sustain|keep up|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+prolongation|3
+(noun)|protraction|perpetuation|lengthening|continuance (generic term)|continuation (generic term)
+(noun)|extension|lengthiness|longness (generic term)
+(noun)|lengthiness|continuation|protraction|duration (generic term)|length (generic term)
+prolonge|1
+(noun)|rope (generic term)
+prolonge knot|1
+(noun)|sailor's breastplate|knot (generic term)
+prolonged|3
+(adj)|drawn-out|extended|lengthy|protracted|long (similar term)
+(adj)|elongated|extended|lengthened|long (similar term)
+(adj)|chronic (similar term)
+prolonged interrogation|1
+(noun)|torture (generic term)|torturing (generic term)
+prolusion|2
+(noun)|foreword|preface|introduction (generic term)
+(noun)|warm-up|tune-up|preparation (generic term)|readying (generic term)
+prolusory|1
+(adj)|introduction (related term)
+prom|1
+(noun)|promenade|ball (generic term)|formal (generic term)
+promenade|7
+(noun)|prom|ball (generic term)|formal (generic term)
+(noun)|mall|walk (generic term)|walkway (generic term)|paseo (generic term)
+(noun)|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+(noun)|march (generic term)|marching (generic term)
+(noun)|amble|saunter|stroll|perambulation|walk (generic term)
+(verb)|parade|troop|march (generic term)|process (generic term)
+(verb)|walk (generic term)
+promenade deck|1
+(noun)|hurricane deck|hurricane roof|awning deck|deck (generic term)
+promethazine|1
+(noun)|Phenergan|antihistamine (generic term)|antiemetic (generic term)|antiemetic drug (generic term)
+prometheus|1
+(noun)|Prometheus|Titan (generic term)
+promethium|1
+(noun)|Pm|atomic number 61|metallic element (generic term)|metal (generic term)
+prominence|3
+(noun)|standing (generic term)|obscurity (antonym)
+(noun)|importance (generic term)
+(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|protuberance|protrusion|extrusion|excrescence|projection (generic term)
+prominent|2
+(adj)|outstanding|salient|spectacular|striking|conspicuous (similar term)
+(adj)|big|large|conspicuous (similar term)
+prominently|1
+(adv)|conspicuously
+promiscuity|1
+(noun)|promiscuousness|sleeping around|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+promiscuous|2
+(adj)|indiscriminate (similar term)
+(adj)|easy|light|loose|sluttish|wanton|unchaste (similar term)
+promiscuously|2
+(adv)|indiscriminately
+(adv)|licentiously|wantonly
+promiscuousness|1
+(noun)|promiscuity|sleeping around|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+promise|6
+(noun)|speech act (generic term)|commitment (generic term)|dedication (generic term)
+(noun)|hope|expectation (generic term)|outlook (generic term)|prospect (generic term)
+(verb)|assure|declare (generic term)
+(verb)|declare (generic term)
+(verb)|predict|foretell|prognosticate|call|forebode|anticipate|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|be (generic term)
+promised|1
+(adj)|secure (similar term)
+promised land|3
+(noun)|Palestine|Canaan|Holy Land|Promised Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Eden|paradise|Nirvana|heaven|Shangri-la|region (generic term)|part (generic term)
+(noun)|Promised Land|Heaven (generic term)
+promisee|1
+(noun)|communicator (generic term)
+promiser|1
+(noun)|promisor|communicator (generic term)
+promising|2
+(adj)|likely (similar term)
+(adj)|bright|auspicious (similar term)
+promisor|1
+(noun)|promiser|communicator (generic term)
+promissory|1
+(adj)|speech act|commitment|dedication (related term)
+promissory note|1
+(noun)|note|note of hand|debt instrument (generic term)|certificate of indebtedness (generic term)
+promontory|1
+(noun)|headland|head|foreland|natural elevation (generic term)|elevation (generic term)
+promote|5
+(verb)|advance|boost|further|encourage|support (generic term)|back up (generic term)
+(verb)|upgrade|advance|kick upstairs|raise|elevate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+(verb)|advertise|advertize|push|praise (generic term)
+(verb)|change (generic term)
+(verb)|play (generic term)
+promoter|2
+(noun)|booster|plugger|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+(noun)|showman|impresario|booker (generic term)|booking agent (generic term)
+promotion|4
+(noun)|publicity|promotional material|packaging|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|change (generic term)|demotion (antonym)
+(noun)|furtherance|advancement|encouragement (generic term)
+(noun)|forwarding|furtherance|advancement (generic term)|progress (generic term)
+promotion system|1
+(noun)|system (generic term)
+promotional|2
+(adj)|message|content|subject matter|substance (related term)
+(adj)|encouragement (related term)
+promotional expense|1
+(noun)|business expense (generic term)|trade expense (generic term)
+promotional material|1
+(noun)|promotion|publicity|packaging|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+promotive|1
+(adj)|encouraging (similar term)
+prompt|9
+(adj)|on time|punctual (similar term)
+(adj)|expeditious|timesaving|efficient (similar term)
+(adj)|ready (similar term)
+(adj)|immediate|quick|straightaway|fast (similar term)
+(noun)|prompting|cue (generic term)
+(noun)|command prompt|electronic communication (generic term)
+(verb)|motivate|actuate|propel|move|incite|cause (generic term)|do (generic term)|make (generic term)
+(verb)|inspire|instigate|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|remind|cue|inform (generic term)
+prompt box|1
+(noun)|prompter's box|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+prompt copy|1
+(noun)|promptbook|script (generic term)|book (generic term)|playscript (generic term)
+promptbook|1
+(noun)|prompt copy|script (generic term)|book (generic term)|playscript (generic term)
+prompter|2
+(noun)|theater prompter|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|autocue|device (generic term)
+prompter's box|1
+(noun)|prompt box|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+prompting|2
+(noun)|suggestion|persuasion (generic term)|suasion (generic term)
+(noun)|prompt|cue (generic term)
+promptitude|1
+(noun)|promptness|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+promptly|3
+(adv)|quickly|quick
+(adv)|readily|pronto
+(adv)|right away
+promptness|2
+(noun)|promptitude|celerity (generic term)|quickness (generic term)|rapidity (generic term)|rapidness (generic term)|speediness (generic term)
+(noun)|punctuality|timing (generic term)|tardiness (antonym)
+promulgate|2
+(verb)|proclaim|exclaim|declare (generic term)
+(verb)|announce (generic term)|declare (generic term)
+promulgated|1
+(adj)|published|publicized (similar term)|publicised (similar term)
+promulgation|3
+(noun)|announcement|statement (generic term)
+(noun)|announcement (generic term)|proclamation (generic term)|annunciation (generic term)|declaration (generic term)
+(noun)|proclamation|act (generic term)|human action (generic term)|human activity (generic term)
+promulgator|1
+(noun)|lawgiver (generic term)|lawmaker (generic term)
+promycelium|1
+(noun)|basidium (generic term)
+pronate|1
+(verb)|turn (generic term)
+pronation|1
+(noun)|rotation (generic term)|rotary motion (generic term)|supination (antonym)
+pronator|1
+(noun)|muscle (generic term)|musculus (generic term)
+prone|2
+(adj)|prostrate|unerect (similar term)
+(adj)|inclined (similar term)
+prone float|1
+(noun)|dead-man's float|floating (generic term)|natation (generic term)
+proneness|1
+(noun)|disposition (generic term)
+prong|1
+(noun)|projection (generic term)
+prongbuck|1
+(noun)|pronghorn|pronghorn antelope|American antelope|Antilocapra americana|ruminant (generic term)
+pronged|2
+(adj)|tined|divided (similar term)
+(adj)|bifurcate|biramous|branched|forked|fork-like|forficate|prongy|divided (similar term)
+pronghorn|1
+(noun)|prongbuck|pronghorn antelope|American antelope|Antilocapra americana|ruminant (generic term)
+pronghorn antelope|1
+(noun)|pronghorn|prongbuck|American antelope|Antilocapra americana|ruminant (generic term)
+prongy|1
+(adj)|bifurcate|biramous|branched|forked|fork-like|forficate|pronged|divided (similar term)
+pronk|1
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+pronominal|2
+(adj)|function word|closed-class word (related term)
+(noun)|pronominal phrase|phrase (generic term)
+pronominal phrase|1
+(noun)|pronominal|phrase (generic term)
+pronoun|1
+(noun)|function word (generic term)|closed-class word (generic term)
+pronounce|2
+(verb)|articulate|enounce|sound out|enunciate|say
+(verb)|label|judge|declare (generic term)|adjudge (generic term)|hold (generic term)
+pronounceable|1
+(adj)|rolled (similar term)|rolling (similar term)|trilled (similar term)|unpronounceable (antonym)
+pronounced|2
+(adj)|marked|noticeable (similar term)
+(adj)|articulate (similar term)
+pronouncement|1
+(noun)|dictum|say-so|declaration (generic term)
+pronto|1
+(adv)|promptly|readily
+pronucleus|1
+(noun)|nucleus (generic term)|cell nucleus (generic term)|karyon (generic term)
+pronunciamento|1
+(noun)|manifesto|declaration (generic term)
+pronunciation|2
+(noun)|utterance (generic term)|vocalization (generic term)
+(noun)|orthoepy|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+proof|12
+(adj)|impervious (similar term)|imperviable (similar term)
+(noun)|cogent evidence|evidence (generic term)|grounds (generic term)
+(noun)|argument (generic term)|statement (generic term)
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|test copy|trial impression|impression (generic term)|printing (generic term)
+(noun)|photographic print (generic term)|print (generic term)
+(noun)|validation|substantiation|determination (generic term)|finding (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|knead (generic term)|work (generic term)
+(verb)|proofread|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|strengthen (generic term)
+proof spirit|1
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+proofed|1
+(adj)|treated (similar term)
+proofread|1
+(verb)|proof|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+proofreader|1
+(noun)|reader|printer (generic term)|pressman (generic term)
+prop|4
+(noun)|support (generic term)
+(noun)|property|object (generic term)|physical object (generic term)
+(noun)|airplane propeller|airscrew|propeller (generic term)|propellor (generic term)
+(verb)|prop up|shore up|shore|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+prop root|1
+(noun)|root (generic term)
+prop up|1
+(verb)|prop|shore up|shore|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+propaedeutic|2
+(adj)|preparatory|preparative|preceding (similar term)
+(noun)|propaedeutics|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+propaedeutics|1
+(noun)|propaedeutic|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+propaganda|1
+(noun)|information (generic term)|info (generic term)
+propagandise|2
+(verb)|propagandize|tell (generic term)
+(verb)|propagandize|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+propagandist|2
+(adj)|propagandistic|communicator (related term)
+(noun)|communicator (generic term)
+propagandistic|1
+(adj)|propagandist|communicator (related term)
+propagandize|2
+(verb)|propagandise|tell (generic term)
+(verb)|propagandise|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+propagate|8
+(verb)|pass on (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|spread|move (generic term)
+(verb)|spread (generic term)|distribute (generic term)
+(verb)|circulate|circularize|circularise|distribute|disseminate|broadcast|spread|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+propagation|3
+(noun)|extension|dissemination (generic term)|airing (generic term)|public exposure (generic term)|spreading (generic term)
+(noun)|generation|multiplication|reproduction (generic term)|procreation (generic term)|breeding (generic term)|facts of life (generic term)
+(noun)|physical phenomenon (generic term)
+propagative|1
+(adj)|reproduction|procreation|breeding|facts of life (related term)
+propagator|2
+(noun)|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+(noun)|disseminator|communicator (generic term)
+propanal|1
+(noun)|propionaldehyde|aldehyde (generic term)
+propanamide|1
+(noun)|proprionamide|amide (generic term)
+propane|1
+(noun)|gas (generic term)|fuel (generic term)
+propanediol|1
+(noun)|propylene glycol|antifreeze (generic term)|humectant (generic term)
+propanoic acid|1
+(noun)|propionic acid|carboxylic acid (generic term)
+propanol|1
+(noun)|propyl alcohol|alcohol (generic term)
+propanolol|1
+(noun)|Inderal|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+propanone|1
+(noun)|acetone|dimethyl ketone|ketone (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+proparoxytone|1
+(noun)|word (generic term)
+propel|2
+(verb)|impel|move (generic term)|displace (generic term)
+(verb)|motivate|actuate|move|prompt|incite|cause (generic term)|do (generic term)|make (generic term)
+propellant|2
+(adj)|propellent|propelling|propulsive|dynamic (similar term)|dynamical (similar term)
+(noun)|propellent|substance (generic term)|matter (generic term)
+propellant explosive|1
+(noun)|impulse explosive|explosive (generic term)
+propellent|2
+(adj)|propellant|propelling|propulsive|dynamic (similar term)|dynamical (similar term)
+(noun)|propellant|substance (generic term)|matter (generic term)
+propeller|1
+(noun)|propellor|mechanical device (generic term)
+propeller plane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+propelling|1
+(adj)|propellant|propellent|propulsive|dynamic (similar term)|dynamical (similar term)
+propellor|1
+(noun)|propeller|mechanical device (generic term)
+propenal|1
+(noun)|acrolein|aldehyde (generic term)
+propene|1
+(noun)|propylene|gas (generic term)
+propenoate|1
+(noun)|acrylate|salt (generic term)
+propenoic acid|1
+(noun)|acrylic acid|carboxylic acid (generic term)
+propenonitrile|1
+(noun)|acrylonitrile|vinyl cyanide|nitrile (generic term)|nitril (generic term)|cyanide (generic term)
+propensity|3
+(noun)|leaning|tendency|inclination (generic term)
+(noun)|proclivity|leaning|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|aptness|disposition (generic term)
+propenyl alcohol|1
+(noun)|allyl alcohol|alcohol (generic term)
+proper|4
+(adj)|becoming (similar term)|comely (similar term)|comme il faut (similar term)|decent (similar term)|decorous (similar term)|seemly (similar term)|correct (similar term)|right (similar term)|correct (similar term)|right (similar term)|fitting (similar term)|halal (similar term)|kosher (similar term)|priggish (similar term)|prim (similar term)|prissy (similar term)|prudish (similar term)|puritanical (similar term)|square-toed (similar term)|straitlaced (similar term)|strait-laced (similar term)|straightlaced (similar term)|straight-laced (similar term)|tight-laced (similar term)|victorian (similar term)|appropriate (related term)|correct (related term)|right (related term)|decent (related term)|decorous (related term)|right (related term)|improper (antonym)
+(adj)|specific (similar term)
+(adj)|right|suitable|suited|appropriate (similar term)
+(adj)|real (similar term)
+proper fraction|1
+(noun)|fraction (generic term)
+proper name|1
+(noun)|proper noun|noun (generic term)|common noun (antonym)
+proper noun|1
+(noun)|proper name|noun (generic term)|common noun (antonym)
+properly|2
+(adv)|decently|decent|in good order|right|the right way|improperly (antonym)
+(adv)|by rights
+properly speaking|1
+(adv)|strictly speaking|to be precise
+properness|1
+(noun)|propriety|correctitude|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)|improperness (antonym)|impropriety (antonym)
+propertied|1
+(adj)|property-owning|upper-class (similar term)
+property|5
+(noun)|place|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|belongings|holding|material possession|possession (generic term)
+(noun)|attribute (generic term)
+(noun)|attribute|dimension|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|prop|object (generic term)|physical object (generic term)
+property-owning|1
+(adj)|propertied|upper-class (similar term)
+property line|1
+(noun)|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+property man|1
+(noun)|propman|property master|stagehand (generic term)|stage technician (generic term)
+property master|1
+(noun)|property man|propman|stagehand (generic term)|stage technician (generic term)
+property owner|1
+(noun)|landowner|landholder|owner (generic term)|possessor (generic term)
+property right|1
+(noun)|ownership (generic term)
+property settlement|1
+(noun)|settlement (generic term)
+property tax|1
+(noun)|land tax|capital levy (generic term)
+propertyless|2
+(adj)|proletarian|lowborn (related term)|lower-class (related term)|low-class (related term)|patrician (antonym)|plebeian (antonym)
+(adj)|wage-earning|working-class|blue-collar|lower-class (similar term)|low-class (similar term)
+prophase|1
+(noun)|phase of cell division (generic term)
+prophecy|2
+(noun)|prognostication|vaticination|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+(noun)|divination|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+prophesier|1
+(noun)|prophet|oracle|seer|vaticinator|diviner (generic term)
+prophesy|2
+(verb)|vaticinate|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|preach|lecture (generic term)|talk (generic term)
+prophet|2
+(noun)|prophesier|oracle|seer|vaticinator|diviner (generic term)
+(noun)|religious person (generic term)
+prophetess|1
+(noun)|prophet (generic term)|prophesier (generic term)|oracle (generic term)|seer (generic term)|vaticinator (generic term)
+prophetic|1
+(adj)|prophetical|adumbrative (similar term)|foreshadowing (similar term)|prefigurative (similar term)|apocalyptic (similar term)|apocalyptical (similar term)|revelatory (similar term)|clairvoyant (similar term)|precognitive (similar term)|second-sighted (similar term)|Delphic (similar term)|oracular (similar term)|divinatory (similar term)|mantic (similar term)|sibylline (similar term)|sibyllic (similar term)|vatic (similar term)|vatical (similar term)|fateful (similar term)|foreboding (similar term)|portentous (similar term)|precursory (similar term)|premonitory (similar term)|predictive (similar term)|prognostic (similar term)|prognosticative (similar term)|unprophetic (antonym)
+prophetical|1
+(adj)|prophetic|adumbrative (similar term)|foreshadowing (similar term)|prefigurative (similar term)|apocalyptic (similar term)|apocalyptical (similar term)|revelatory (similar term)|clairvoyant (similar term)|precognitive (similar term)|second-sighted (similar term)|Delphic (similar term)|oracular (similar term)|divinatory (similar term)|mantic (similar term)|sibylline (similar term)|sibyllic (similar term)|vatic (similar term)|vatical (similar term)|fateful (similar term)|foreboding (similar term)|portentous (similar term)|precursory (similar term)|premonitory (similar term)|predictive (similar term)|prognostic (similar term)|prognosticative (similar term)|unprophetic (antonym)
+prophets|1
+(noun)|Prophets|Nebiim|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+prophylactic|5
+(adj)|contraceptive|antifertility|protective (similar term)
+(adj)|cautionary|preventive|protective (similar term)
+(adj)|preventive|preventative|healthful (similar term)
+(noun)|preventive|preventative|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|condom|rubber|safety|safe|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+prophylactic device|1
+(noun)|contraceptive|preventive|preventative|contraceptive device|birth control device|device (generic term)
+prophylaxis|1
+(noun)|prevention (generic term)|bar (generic term)
+prophyll|1
+(noun)|plant part (generic term)|plant structure (generic term)
+propinquity|1
+(noun)|proximity|nearness (generic term)|closeness (generic term)
+propionaldehyde|1
+(noun)|propanal|aldehyde (generic term)
+propionic acid|1
+(noun)|propanoic acid|carboxylic acid (generic term)
+propitiate|1
+(verb)|appease|reconcile (generic term)|patch up (generic term)|make up (generic term)|conciliate (generic term)|settle (generic term)
+propitiation|2
+(noun)|placation|conciliation|appeasement (generic term)|calming (generic term)
+(noun)|expiation|atonement|redemption (generic term)|salvation (generic term)
+propitiative|1
+(adj)|propitiatory|conciliatory (similar term)|conciliative (similar term)
+propitiatory|2
+(adj)|expiatory|expiative|redemption|salvation (related term)
+(adj)|propitiative|conciliatory (similar term)|conciliative (similar term)
+propitious|1
+(adj)|golden (similar term)|favorable (similar term)|favourable (similar term)|lucky (similar term)|prosperous (similar term)|gracious (similar term)|auspicious (related term)|favorable (related term)|favourable (related term)|unpropitious (antonym)
+propitiously|1
+(adv)|auspiciously|unpropitiously (antonym)|inauspiciously (antonym)
+propitiousness|1
+(noun)|auspiciousness|favorableness (generic term)|favourableness (generic term)|advantageousness (generic term)|positivity (generic term)|positiveness (generic term)|profitableness (generic term)|unpropitiousness (antonym)|inauspiciousness (antonym)
+propjet|1
+(noun)|turboprop|turbo-propeller plane|propeller plane (generic term)
+propman|1
+(noun)|property man|property master|stagehand (generic term)|stage technician (generic term)
+proponent|1
+(noun)|advocate|advocator|exponent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+proportion|6
+(noun)|quotient (generic term)
+(noun)|dimension|magnitude (generic term)
+(noun)|symmetry|balance (generic term)|equilibrium (generic term)|equipoise (generic term)|counterbalance (generic term)|disproportion (antonym)
+(noun)|proportionality|balance|placement (generic term)|arrangement (generic term)
+(verb)|harmonize (generic term)|harmonise (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+proportionable|1
+(adj)|proportionate (similar term)
+proportional|4
+(adj)|relative|proportionate (similar term)
+(adj)|graduated|progressive (similar term)
+(adj)|proportionate (similar term)
+(noun)|quantity (generic term)
+proportional counter|1
+(noun)|proportional counter tube|counter tube (generic term)
+proportional counter tube|1
+(noun)|proportional counter|counter tube (generic term)
+proportional font|1
+(noun)|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)|fixed-width font (antonym)
+proportional representation|1
+(noun)|representation (generic term)
+proportional sample|1
+(noun)|stratified sample|representative sample|sample distribution (generic term)|sample (generic term)|sampling (generic term)
+proportional sampling|1
+(noun)|stratified sampling|representative sampling|sampling (generic term)
+proportionality|2
+(noun)|ratio (generic term)
+(noun)|proportion|balance|placement (generic term)|arrangement (generic term)
+proportionally|1
+(adv)|proportionately|disproportionately (antonym)
+proportionate|3
+(adj)|per capita (similar term)|proportionable (similar term)|proportional (similar term)|relative (similar term)|proportional (similar term)|disproportionate (antonym)
+(adj)|corresponding|in proportion to|commensurate (similar term)
+(adj)|harmonious|symmetrical|balanced (similar term)
+proportionately|3
+(adv)|proportionally|disproportionately (antonym)
+(adv)|disproportionately (antonym)
+(adv)|pro rata
+proportionateness|1
+(noun)|commensurateness|correspondence|proportionality (generic term)
+proposal|3
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|marriage proposal|proposal of marriage|marriage offer|offer (generic term)|offering (generic term)
+(noun)|proposition|speech act (generic term)
+proposal of marriage|1
+(noun)|marriage proposal|marriage offer|proposal|offer (generic term)|offering (generic term)
+propose|5
+(verb)|suggest|advise|declare (generic term)
+(verb)|project|plan (generic term)
+(verb)|aim|purpose|purport|intend (generic term)|mean (generic term)|think (generic term)
+(verb)|nominate|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|declare oneself|offer|pop the question|request (generic term)
+proposed|1
+(adj)|projected|planned (similar term)
+proposer|2
+(noun)|suggester|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+(noun)|mover|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+proposition|6
+(noun)|statement (generic term)
+(noun)|suggestion|proffer|proposal (generic term)
+(noun)|offer (generic term)|offering (generic term)
+(noun)|proposal|speech act (generic term)
+(noun)|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(verb)|propose (generic term)|suggest (generic term)|advise (generic term)
+propositional calculus|1
+(noun)|propositional logic|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+propositional logic|1
+(noun)|propositional calculus|symbolic logic (generic term)|mathematical logic (generic term)|formal logic (generic term)
+propositus|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+propound|1
+(verb)|rede (generic term)|advise (generic term)|counsel (generic term)
+propoxyphene|1
+(noun)|propoxyphene hydrochloride|Darvon|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+propoxyphene hydrochloride|1
+(noun)|propoxyphene|Darvon|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+propping up|1
+(noun)|shoring|shoring up|support (generic term)|supporting (generic term)
+proprietary|2
+(adj)|branded (similar term)|copyrighted (similar term)|patented (similar term)|trademarked (similar term)|nonproprietary (antonym)
+(noun)|proprietorship|ownership (generic term)
+proprietary colony|1
+(noun)|colony (generic term)|settlement (generic term)
+proprietary drug|1
+(noun)|brand-name drug|drug (generic term)|generic drug (antonym)
+proprietor|1
+(noun)|owner|businessman (generic term)|man of affairs (generic term)
+proprietorship|1
+(noun)|proprietary|ownership (generic term)
+proprietorship certificate|1
+(noun)|security (generic term)|certificate (generic term)
+proprietress|1
+(noun)|owner (generic term)|proprietor (generic term)
+propriety|1
+(noun)|properness|correctitude|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)|improperness (antonym)|impropriety (antonym)
+proprioception|1
+(noun)|interoception (generic term)
+proprioceptive|1
+(adj)|interoception (related term)
+proprioceptor|1
+(noun)|nerve ending (generic term)|nerve end (generic term)
+proprionamide|1
+(noun)|propanamide|amide (generic term)
+props|1
+(noun)|deference (generic term)|respect (generic term)
+propulsion|2
+(noun)|force (generic term)
+(noun)|actuation|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+propulsion system|1
+(noun)|system (generic term)
+propulsive|2
+(adj)|force (related term)
+(adj)|propellant|propellent|propelling|dynamic (similar term)|dynamical (similar term)
+propyl|1
+(noun)|propyl group|propyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+propyl alcohol|1
+(noun)|propanol|alcohol (generic term)
+propyl group|1
+(noun)|propyl|propyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+propyl radical|1
+(noun)|propyl|propyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+propylene|1
+(noun)|propene|gas (generic term)
+propylene glycol|1
+(noun)|propanediol|antifreeze (generic term)|humectant (generic term)
+propylthiouracil|1
+(noun)|organic compound (generic term)
+prorate|2
+(verb)|settle (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+proration|1
+(noun)|coordination (generic term)
+prorogation|1
+(noun)|postponement (generic term)|deferment (generic term)|deferral (generic term)
+prorogue|2
+(verb)|postpone|hold over|put over|table|shelve|set back|defer|remit|put off|delay (generic term)
+(verb)|adjourn (generic term)|withdraw (generic term)|retire (generic term)
+prosaic|3
+(adj)|matter-of-fact|unrhetorical (similar term)
+(adj)|pedestrian|prosy|earthbound|uninteresting (similar term)
+(adj)|commonplace|humdrum|unglamorous|unglamourous|unexciting (similar term)
+prosaically|1
+(adv)|unimaginatively
+prosaicness|1
+(noun)|prosiness|commonness (generic term)|commonplaceness (generic term)|everydayness (generic term)
+prosauropoda|1
+(noun)|Prosauropoda|suborder Prosauropoda|animal order (generic term)
+proscenium|2
+(noun)|apron|forestage|stage (generic term)
+(noun)|proscenium wall|wall (generic term)
+proscenium arch|1
+(noun)|arch (generic term)
+proscenium wall|1
+(noun)|proscenium|wall (generic term)
+prosciuto|1
+(noun)|ham (generic term)|jambon (generic term)|gammon (generic term)
+proscribe|1
+(verb)|forbid|prohibit|interdict|veto|disallow|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+proscribed|1
+(adj)|forbidden|out|prohibited|taboo|tabu|verboten|impermissible (similar term)
+proscription|2
+(noun)|prohibition|ban|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|banishment|rejection (generic term)
+prose|2
+(noun)|writing style (generic term)|literary genre (generic term)|genre (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+prose poem|1
+(noun)|prose (generic term)
+prosecute|3
+(verb)|act (generic term)|move (generic term)
+(verb)|defend (antonym)
+(verb)|engage|pursue|act (generic term)|move (generic term)
+prosecuting attorney|1
+(noun)|prosecutor|public prosecutor|prosecuting officer|official (generic term)|functionary (generic term)|lawyer (generic term)|attorney (generic term)
+prosecuting officer|1
+(noun)|prosecutor|public prosecutor|prosecuting attorney|official (generic term)|functionary (generic term)|lawyer (generic term)|attorney (generic term)
+prosecution|3
+(noun)|criminal prosecution|legal action (generic term)|action (generic term)|action at law (generic term)|defense (antonym)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|defense (antonym)
+(noun)|pursuance|continuance (generic term)|continuation (generic term)
+prosecutor|1
+(noun)|public prosecutor|prosecuting officer|prosecuting attorney|official (generic term)|functionary (generic term)|lawyer (generic term)|attorney (generic term)
+proselyte|1
+(noun)|convert (generic term)
+proselytise|1
+(verb)|proselytize|convert (generic term)|win over (generic term)|convince (generic term)
+proselytism|2
+(noun)|persuasion (generic term)|suasion (generic term)
+(noun)|conversion (generic term)|rebirth (generic term)|spiritual rebirth (generic term)
+proselytize|1
+(verb)|proselytise|convert (generic term)|win over (generic term)|convince (generic term)
+prosencephalon|1
+(noun)|forebrain|neural structure (generic term)
+proserpina|1
+(noun)|Proserpina|Proserpine|Roman deity (generic term)
+proserpine|1
+(noun)|Proserpina|Proserpine|Roman deity (generic term)
+prosimian|1
+(noun)|primate (generic term)
+prosimii|1
+(noun)|Prosimii|suborder Prosimii|animal order (generic term)
+prosiness|1
+(noun)|prosaicness|commonness (generic term)|commonplaceness (generic term)|everydayness (generic term)
+prosodic|1
+(adj)|manner of speaking|speech|delivery (related term)
+prosodic system|1
+(noun)|accentual system|language system (generic term)
+prosodion|1
+(noun)|processional|religious music (generic term)|church music (generic term)
+prosody|3
+(noun)|inflection|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|poetic rhythm|rhythmic pattern|versification (generic term)
+(noun)|metrics|poetics (generic term)
+prosom|1
+(noun)|estazolam|ProSom|benzodiazepine (generic term)
+prosopis|1
+(noun)|Prosopis|genus Prosopis|rosid dicot genus (generic term)
+prosopis glandulosa|1
+(noun)|honey mesquite|Western honey mesquite|Prosopis glandulosa|mesquite (generic term)|mesquit (generic term)
+prosopis juliflora|1
+(noun)|algarroba|Prosopis juliflora|Prosopis juliiflora|mesquite (generic term)|mesquit (generic term)
+prosopis juliiflora|1
+(noun)|algarroba|Prosopis juliflora|Prosopis juliiflora|mesquite (generic term)|mesquit (generic term)
+prosopis pubescens|1
+(noun)|screw bean|screwbean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite (generic term)|mesquit (generic term)
+prosopium|1
+(noun)|Prosopium|genus Prosopium|fish genus (generic term)
+prosopium cylindraceum|1
+(noun)|round whitefish|Menominee whitefish|Prosopium cylindraceum|whitefish (generic term)
+prosopium williamsonii|1
+(noun)|Rocky Mountain whitefish|Prosopium williamsonii|whitefish (generic term)
+prosopopoeia|1
+(noun)|personification|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+prospect|7
+(noun)|chance|potential (generic term)|potentiality (generic term)|potency (generic term)
+(noun)|expectation|outlook|belief (generic term)
+(noun)|candidate|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|view|aspect|scene|vista|panorama|visual percept (generic term)|visual image (generic term)
+(noun)|prognosis|medical prognosis|medical diagnosis (generic term)
+(verb)|search (generic term)|look (generic term)
+(verb)|research (generic term)|search (generic term)|explore (generic term)
+prospective|2
+(adj)|expected (similar term)|likely (similar term)|potential (similar term)|future (similar term)|future (related term)|retrospective (antonym)
+(adj)|future (similar term)
+prospector|1
+(noun)|miner (generic term)|mineworker (generic term)
+prospectus|2
+(noun)|offer (generic term)|offering (generic term)
+(noun)|course catalog|course catalogue|catalog (generic term)|catalogue (generic term)
+prosper|2
+(verb)|boom|thrive|get ahead|flourish|expand|grow (generic term)
+(verb)|thrive|fly high|flourish|change state (generic term)|turn (generic term)
+prosper meniere|1
+(noun)|Meniere|Prosper Meniere|ear doctor (generic term)|ear specialist (generic term)|otologist (generic term)
+prospering|1
+(adj)|booming|flourishing|palmy|prosperous|roaring|thriving|successful (similar term)
+prosperity|2
+(noun)|financial condition (generic term)|economic condition (generic term)
+(noun)|successfulness|good fortune (generic term)|luckiness (generic term)|good luck (generic term)
+prospero lambertini|1
+(noun)|Benedict XIV|Prospero Lambertini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+prosperous|4
+(adj)|comfortable|easy|well-fixed|well-heeled|well-off|well-situated|well-to-do|rich (similar term)
+(adj)|booming|flourishing|palmy|prospering|roaring|thriving|successful (similar term)
+(adj)|golden|halcyon|happy (similar term)
+(adj)|golden|favorable|favourable|lucky|propitious (similar term)
+prospicience|1
+(noun)|prevision|foresight|farsightedness|knowing (generic term)
+prospicient|1
+(adj)|farseeing|farsighted|foresighted|foresightful|long|longsighted|provident (similar term)
+prostaglandin|1
+(noun)|autacoid (generic term)|autocoid (generic term)
+prostate|2
+(adj)|prostatic|endocrine gland|endocrine|ductless gland (related term)
+(noun)|prostate gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+prostate cancer|1
+(noun)|prostatic adenocarcinoma|adenocarcinoma (generic term)|glandular cancer (generic term)|glandular carcinoma (generic term)
+prostate gland|1
+(noun)|prostate|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+prostate specific antigen|1
+(noun)|PSA|protein (generic term)
+prostatectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+prostatic|1
+(adj)|prostate|endocrine gland|endocrine|ductless gland (related term)
+prostatic adenocarcinoma|1
+(noun)|prostate cancer|adenocarcinoma (generic term)|glandular cancer (generic term)|glandular carcinoma (generic term)
+prostatitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+prostheon|1
+(noun)|prosthion|alveolar point|craniometric point (generic term)
+prosthesis|1
+(noun)|prosthetic device|corrective (generic term)|restorative (generic term)
+prosthetic|2
+(adj)|medicine|medical specialty (related term)
+(adj)|corrective|restorative (related term)
+prosthetic device|1
+(noun)|prosthesis|corrective (generic term)|restorative (generic term)
+prosthetics|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+prosthetist|1
+(noun)|expert (generic term)
+prosthion|1
+(noun)|prostheon|alveolar point|craniometric point (generic term)
+prosthodontia|1
+(noun)|prosthodontics|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+prosthodontic|1
+(adj)|dentistry|dental medicine|odontology (related term)
+prosthodontics|1
+(noun)|prosthodontia|dentistry (generic term)|dental medicine (generic term)|odontology (generic term)
+prosthodontist|1
+(noun)|dentist (generic term)|tooth doctor (generic term)|dental practitioner (generic term)
+prostigmin|1
+(noun)|neostigmine|Prostigmin|anticholinesterase (generic term)
+prostitute|2
+(noun)|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+(verb)|sell (generic term)
+prostitution|1
+(noun)|harlotry|whoredom|vice crime (generic term)
+prostrate|5
+(adj)|flat|unerect (similar term)
+(adj)|prone|unerect (similar term)
+(verb)|bow down|lie down (generic term)|lie (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|throw (generic term)
+prostration|3
+(noun)|heat exhaustion|heat prostration|heatstroke (generic term)|heat hyperpyrexia (generic term)
+(noun)|submission (generic term)|compliance (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+prostyle|1
+(adj)|pseudoprostyle|apteral (similar term)
+prosy|1
+(adj)|pedestrian|prosaic|earthbound|uninteresting (similar term)
+protactinium|1
+(noun)|protoactinium|Pa|atomic number 91|metallic element (generic term)|metal (generic term)
+protagonism|1
+(noun)|advocacy|support (generic term)
+protagonist|2
+(noun)|supporter|champion|admirer|booster|friend|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|agonist|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+protamine|1
+(noun)|simple protein (generic term)
+protanopia|1
+(noun)|red-blindness|red-green dichromacy (generic term)|red-green color blindness (generic term)|red-green colour blindness (generic term)
+protanopic|1
+(adj)|red-blind|blind (similar term)|unsighted (similar term)
+protea|1
+(noun)|shrub (generic term)|bush (generic term)
+protea cynaroides|1
+(noun)|honeypot|king protea|Protea cynaroides|protea (generic term)
+protea family|1
+(noun)|Proteaceae|family Proteaceae|dicot family (generic term)|magnoliopsid family (generic term)
+protea mellifera|1
+(noun)|honeyflower|honey-flower|Protea mellifera|protea (generic term)
+proteaceae|1
+(noun)|Proteaceae|family Proteaceae|protea family|dicot family (generic term)|magnoliopsid family (generic term)
+proteales|1
+(noun)|Proteales|order Proteales|plant order (generic term)
+protean|1
+(adj)|variable (similar term)
+protease|1
+(noun)|peptidase|proteinase|proteolytic enzyme|enzyme (generic term)
+protease inhibitor|1
+(noun)|PI|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+protect|2
+(verb)|defend (generic term)
+(verb)|assist (generic term)
+protected|2
+(adj)|secure|bastioned (similar term)|fortified (similar term)|battlemented (similar term)|burglarproof (similar term)|covert (similar term)|moated (similar term)|sheltered (similar term)|shielded (similar term)|snug (similar term)|stormproof (similar term)|weatherproof (similar term)|invulnerable (related term)|secure (related term)|unprotected (antonym)
+(adj)|saved|preserved (similar term)
+protecting|1
+(adj)|protective (similar term)
+protection|7
+(noun)|activity (generic term)
+(noun)|protective covering|protective cover|covering (generic term)
+(noun)|security|assets (generic term)
+(noun)|shelter|security (generic term)
+(noun)|auspices|aegis|endorsement (generic term)|indorsement (generic term)
+(noun)|trade protection|imposition (generic term)|infliction (generic term)
+(noun)|tribute|extortion (generic term)
+protectionism|1
+(noun)|economic policy (generic term)
+protectionist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+protective|3
+(adj)|antifouling (similar term)|cautionary (similar term)|preventive (similar term)|prophylactic (similar term)|conserving (similar term)|preserving (similar term)|contraceptive (similar term)|prophylactic (similar term)|antifertility (similar term)|custodial (similar term)|guardian (similar term)|tutelary (similar term)|tutelar (similar term)|defensive (similar term)|evasive (similar term)|overprotective (similar term)|preservative (similar term)|protecting (similar term)|restrictive (similar term)|safety-related (similar term)|defensive (related term)|preventive (related term)|preventative (related term)|unprotective (antonym)
+(adj)|caring|tender (similar term)
+(adj)|careful (similar term)
+protective coloration|1
+(noun)|coloration (generic term)|colouration (generic term)
+protective cover|1
+(noun)|protective covering|protection|covering (generic term)
+protective covering|2
+(noun)|protective cover|protection|covering (generic term)
+(noun)|body covering (generic term)
+protective embankment|1
+(noun)|escarpment|escarp|scarp|fortification (generic term)|munition (generic term)
+protective fold|1
+(noun)|flap (generic term)
+protective garment|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+protective tariff|1
+(noun)|duty (generic term)|tariff (generic term)
+protectively|1
+(adv)|giving protection|offering protection
+protectiveness|2
+(noun)|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+(noun)|quality (generic term)
+protector|1
+(noun)|defender|guardian|shielder|preserver (generic term)
+protector of boundaries|1
+(noun)|Jupiter Fidius|Protector of Boundaries|Jupiter (generic term)|Jove (generic term)
+protectorate|1
+(noun)|associated state|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+protectorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+protege|1
+(noun)|recipient (generic term)|receiver (generic term)
+protegee|1
+(noun)|protege (generic term)
+proteidae|1
+(noun)|Proteidae|family Proteidae|amphibian genus (generic term)
+protein|1
+(noun)|macromolecule (generic term)|supermolecule (generic term)
+protein folding|1
+(noun)|folding|organic process (generic term)|biological process (generic term)
+protein molecule|1
+(noun)|molecule (generic term)
+proteinaceous|1
+(adj)|macromolecule|supermolecule (related term)
+proteinase|1
+(noun)|protease|peptidase|proteolytic enzyme|enzyme (generic term)
+proteinuria|1
+(noun)|albuminuria|symptom (generic term)
+proteles|1
+(noun)|Proteles|genus Proteles|mammal genus (generic term)
+proteles cristata|1
+(noun)|aardwolf|Proteles cristata|hyena (generic term)|hyaena (generic term)
+proteolysis|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+proteolytic|1
+(adj)|chemical process|chemical change|chemical action (related term)
+proteolytic enzyme|1
+(noun)|protease|peptidase|proteinase|enzyme (generic term)
+proteome|1
+(noun)|protein (generic term)
+proteomics|1
+(noun)|genetics (generic term)|genetic science (generic term)
+proteosome|1
+(noun)|proteosome vaccine|vaccine (generic term)|vaccinum (generic term)
+proteosome vaccine|1
+(noun)|proteosome|vaccine (generic term)|vaccinum (generic term)
+proterochampsa|1
+(noun)|Proterochampsa|genus Proterochampsa|reptile genus (generic term)
+proterozoic|2
+(adj)|early (similar term)
+(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon (generic term)|aeon (generic term)
+proterozoic aeon|1
+(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon (generic term)|aeon (generic term)
+proterozoic eon|1
+(noun)|Proterozoic|Proterozoic eon|Proterozoic aeon|eon (generic term)|aeon (generic term)
+protest|6
+(noun)|protestation|objection (generic term)
+(noun)|objection|dissent|resistance (generic term)
+(noun)|objection (generic term)
+(verb)|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|resist|dissent|oppose (generic term)|controvert (generic term)|contradict (generic term)
+(verb)|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+protest march|1
+(noun)|civil disobedience (generic term)|demonstration (generic term)|manifestation (generic term)
+protestant|4
+(adj)|Protestant|Christian (related term)|Christianity|Christian religion (related term)
+(adj)|protesting|complaining (similar term)|complaintive (similar term)
+(noun)|Protestant|Christian (generic term)
+(noun)|Protestant Church|Protestant|church (generic term)|Christian church (generic term)
+protestant church|1
+(noun)|Protestant Church|Protestant|church (generic term)|Christian church (generic term)
+protestant deacon|1
+(noun)|deacon|Protestant deacon|church officer (generic term)
+protestant denomination|1
+(noun)|Protestant denomination|denomination (generic term)
+protestant episcopal church|1
+(noun)|Episcopal Church|Protestant Episcopal Church|Anglican Church (generic term)|Anglican Communion (generic term)|Church of England (generic term)
+protestant reformation|1
+(noun)|Reformation|Protestant Reformation|religious movement (generic term)
+protestantism|1
+(noun)|Protestantism|Christianity (generic term)|Christian religion (generic term)
+protestation|2
+(noun)|protest|objection (generic term)
+(noun)|declaration (generic term)
+protester|2
+(noun)|dissenter|dissident|objector|contestant|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|demonstrator|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+protesting|1
+(adj)|protestant|complaining (similar term)|complaintive (similar term)
+proteus|2
+(noun)|Proteus|Greek deity (generic term)
+(noun)|Proteus|genus Proteus|amphibian genus (generic term)
+proteus anguinus|1
+(noun)|olm|Proteus anguinus|salamander (generic term)
+prothalamion|1
+(noun)|prothalamium|song (generic term)|vocal (generic term)|epithalamium (generic term)
+prothalamium|1
+(noun)|prothalamion|song (generic term)|vocal (generic term)|epithalamium (generic term)
+prothorax|1
+(noun)|thorax (generic term)
+prothrombin|1
+(noun)|factor II|coagulation factor (generic term)|clotting factor (generic term)
+prothrombin accelerator|1
+(noun)|proaccelerin|accelerator factor|factor V|coagulation factor (generic term)|clotting factor (generic term)
+prothrombinase|1
+(noun)|factor X|coagulation factor (generic term)|clotting factor (generic term)
+protirelin|1
+(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+protist|1
+(noun)|protistan|microorganism (generic term)|micro-organism (generic term)
+protista|1
+(noun)|Protista|division Protista|division (generic term)
+protistan|1
+(noun)|protist|microorganism (generic term)|micro-organism (generic term)
+protium|1
+(noun)|Protium|genus Protium|rosid dicot genus (generic term)
+protium guianense|1
+(noun)|Protium guianense|incense tree (generic term)
+protium heptaphyllum|1
+(noun)|Protium heptaphyllum|incense tree (generic term)
+proto|1
+(adj)|early (similar term)
+proto-indo european|1
+(noun)|Proto-Indo European|PIE|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+proto-norse|1
+(noun)|Proto-Norse|Germanic (generic term)|Germanic language (generic term)
+proto-oncogene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+protoactinium|1
+(noun)|protactinium|Pa|atomic number 91|metallic element (generic term)|metal (generic term)
+protoanthropology|1
+(noun)|protohistory|archeology (generic term)|archaeology (generic term)
+protoarchaeology|1
+(noun)|protoarcheology|protohistory (generic term)|protoanthropology (generic term)
+protoarcheology|1
+(noun)|protoarchaeology|protohistory (generic term)|protoanthropology (generic term)
+protoavis|1
+(noun)|bird (generic term)
+protoceratops|1
+(noun)|ceratopsian (generic term)|horned dinosaur (generic term)
+protocol|3
+(noun)|communications protocol|rule (generic term)|prescript (generic term)
+(noun)|etiquette (generic term)
+(noun)|code of conduct (generic term)|code of behavior (generic term)
+protoctist|1
+(noun)|microorganism (generic term)|micro-organism (generic term)
+protoctist family|1
+(noun)|family (generic term)
+protoctist genus|1
+(noun)|genus (generic term)
+protoctist order|1
+(noun)|order (generic term)
+protoctista|1
+(noun)|Protoctista|kingdom Protoctista|kingdom (generic term)
+protogeometric|1
+(adj)|nonrepresentational (similar term)
+protoheme|1
+(noun)|heme|haem|hematin|haemitin|pigment (generic term)
+protohemin|1
+(noun)|hemin|chloride (generic term)
+protohippus|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+protohistory|1
+(noun)|protoanthropology|archeology (generic term)|archaeology (generic term)
+protology|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+protomammal|1
+(noun)|therapsid|synapsid (generic term)|synapsid reptile (generic term)
+proton|1
+(noun)|nucleon (generic term)
+proton accelerator|1
+(noun)|collider (generic term)
+proton magnetic resonance|1
+(noun)|nuclear magnetic resonance|NMR|magnetic resonance (generic term)
+protoplasm|1
+(noun)|living substance|substance (generic term)|matter (generic term)
+protoplasmic astrocyte|1
+(noun)|astrocyte (generic term)
+protoplast|1
+(noun)|energid|body part (generic term)
+prototheria|1
+(noun)|Prototheria|subclass Prototheria|class (generic term)
+prototherian|1
+(noun)|mammal (generic term)|mammalian (generic term)
+prototypal|1
+(adj)|archetypal|archetypical|prototypic|prototypical|first (similar term)
+prototype|1
+(noun)|paradigm|epitome|image|model (generic term)|example (generic term)
+prototypic|1
+(adj)|archetypal|archetypical|prototypal|prototypical|first (similar term)
+prototypical|1
+(adj)|archetypal|archetypical|prototypal|prototypic|first (similar term)
+protozoa|1
+(noun)|Protozoa|phylum Protozoa|phylum (generic term)
+protozoa-like|1
+(adj)|animal (similar term)
+protozoal|1
+(adj)|protozoan|protozoic|phylum (related term)
+protozoal infection|1
+(noun)|infection (generic term)
+protozoan|2
+(adj)|protozoal|protozoic|phylum (related term)
+(noun)|protozoon|protoctist (generic term)
+protozoic|1
+(adj)|protozoal|protozoan|phylum (related term)
+protozoologist|1
+(noun)|zoologist (generic term)|animal scientist (generic term)
+protozoology|1
+(noun)|zoology (generic term)|zoological science (generic term)
+protozoon|1
+(noun)|protozoan|protoctist (generic term)
+protract|1
+(verb)|prolong|extend|draw out|lengthen (generic term)
+protracted|1
+(adj)|drawn-out|extended|lengthy|prolonged|long (similar term)
+protractedly|1
+(adv)|lingeringly
+protractible|1
+(adj)|protractile|extensile (similar term)|extensible (similar term)
+protractile|1
+(adj)|protractible|extensile (similar term)|extensible (similar term)
+protraction|2
+(noun)|lengthiness|prolongation|continuation|duration (generic term)|length (generic term)
+(noun)|prolongation|perpetuation|lengthening|continuance (generic term)|continuation (generic term)
+protractor|1
+(noun)|drafting instrument (generic term)
+protriptyline|1
+(noun)|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+protropin|1
+(noun)|Protropin|somatotropin (generic term)|somatotrophin (generic term)|somatotropic hormone (generic term)|somatotrophic hormone (generic term)|STH (generic term)|human growth hormone (generic term)|growth hormone (generic term)
+protrude|3
+(verb)|stick out|jut out|jut|project
+(verb)|start|pop|pop out|bulge|bulge out|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|bulge|pouch|change shape (generic term)|change form (generic term)|deform (generic term)
+protruding|1
+(adj)|jutting|projected|projecting|sticking|sticking out|protrusive (similar term)
+protrusible|1
+(adj)|protrusile|extensile (similar term)|extensible (similar term)
+protrusile|1
+(adj)|protrusible|extensile (similar term)|extensible (similar term)
+protrusion|2
+(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protuberance|extrusion|excrescence|projection (generic term)
+(noun)|projection|jut|jutting|change of shape (generic term)
+protrusive|1
+(adj)|beetle (similar term)|beetling (similar term)|bellied (similar term)|bellying (similar term)|bulbous (similar term)|bulging (similar term)|bulgy (similar term)|protuberant (similar term)|obtrusive (similar term)|jutting (similar term)|projected (similar term)|projecting (similar term)|protruding (similar term)|sticking (similar term)|sticking out (similar term)|overshot (similar term)|starting (similar term)|underhung (similar term)|undershot (similar term)|underslung (similar term)|ventricose (similar term)|ventricous (similar term)|convex (related term)|bulging (related term)|intrusive (antonym)
+protuberance|2
+(noun)|bulge|bump|hump|gibbosity|gibbousness|jut|prominence|protrusion|extrusion|excrescence|projection (generic term)
+(noun)|condition (generic term)|status (generic term)
+protuberant|1
+(adj)|bellied|bellying|bulbous|bulging|bulgy|protrusive (similar term)
+protuberate|1
+(verb)|bulge (generic term)|bag (generic term)
+protura|1
+(noun)|Protura|order Protura|animal order (generic term)
+proturan|1
+(noun)|telsontail|insect (generic term)
+proud|2
+(adj)|arrogant (similar term)|chesty (similar term)|self-important (similar term)|beaming (similar term)|big (similar term)|swelled (similar term)|vainglorious (similar term)|bigheaded (similar term)|persnickety (similar term)|snooty (similar term)|snot-nosed (similar term)|snotty (similar term)|stuck-up (similar term)|too big for one's breeches (similar term)|uppish (similar term)|boastful (similar term)|braggart (similar term)|bragging (similar term)|braggy (similar term)|big (similar term)|cock-a-hoop (similar term)|crowing (similar term)|self-aggrandizing (similar term)|self-aggrandising (similar term)|dignified (similar term)|self-respecting (similar term)|self-respectful (similar term)|disdainful (similar term)|haughty (similar term)|lordly (similar term)|prideful (similar term)|sniffy (similar term)|supercilious (similar term)|swaggering (similar term)|conceited (similar term)|egotistic (similar term)|egotistical (similar term)|self-conceited (similar term)|swollen (similar term)|swollen-headed (similar term)|vain (similar term)|glorious (similar term)|illustrious (similar term)|redoubtable (similar term)|respected (similar term)|gratifying (similar term)|house-proud (similar term)|overproud (similar term)|pleased (similar term)|proud of (similar term)|purse-proud (similar term)|shabby-genteel (similar term)|immodest (related term)|humble (antonym)
+(adj)|gallant|lofty|majestic|impressive (similar term)
+proud flesh|1
+(noun)|granulation (generic term)|granulation tissue (generic term)
+proud of|1
+(adj)|pleased|proud (similar term)
+proudhon|1
+(noun)|Proudhon|Pierre Joseph Proudhon|socialist (generic term)
+proudly|1
+(adv)|with pride
+proust|1
+(noun)|Proust|Marcel Proust|novelist (generic term)
+proustian|1
+(adj)|Proustian|novelist (related term)
+provability|1
+(noun)|demonstrability|indisputability (generic term)|indubitability (generic term)|unquestionability (generic term)|unquestionableness (generic term)
+provable|1
+(adj)|demonstrable|obvious (similar term)
+provably|1
+(adv)|demonstrably|incontrovertibly
+prove|9
+(verb)|turn out|turn up|be (generic term)
+(verb)|demonstrate|establish|show|shew|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|disprove (antonym)
+(verb)|testify|bear witness|evidence|show|inform (generic term)
+(verb)|prove (generic term)|demonstrate (generic term)|establish (generic term)|show (generic term)|shew (generic term)
+(verb)|test|try|try out|examine|essay|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|rise|grow (generic term)
+(verb)|raise|leaven|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|print (generic term)|impress (generic term)
+(verb)|authenticate (generic term)
+prove oneself|1
+(verb)|prove (generic term)|demonstrate (generic term)|establish (generic term)|show (generic term)|shew (generic term)
+proved|1
+(adj)|proven|established (similar term)|evidenced (similar term)|tested (similar term)|tried (similar term)|well-tried (similar term)|verified (similar term)|unproved (antonym)
+proven|1
+(adj)|proved|established (similar term)|evidenced (similar term)|tested (similar term)|tried (similar term)|well-tried (similar term)|verified (similar term)|unproved (antonym)
+provenance|1
+(noun)|birthplace|cradle|place of origin|provenience|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+provencal|1
+(noun)|Provencal|Occitan|Langue d'oc (generic term)|Langue d'oc French (generic term)
+provence|1
+(noun)|Provence|French region (generic term)
+provender|2
+(noun)|feed|food (generic term)|nutrient (generic term)
+(noun)|commissariat|provisions|viands|victuals|food (generic term)|nutrient (generic term)
+provenience|1
+(noun)|birthplace|cradle|place of origin|provenance|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+proventil|1
+(noun)|albuterol|Ventolin|Proventil|bronchodilator (generic term)
+provera|1
+(noun)|medroxyprogesterone|Provera|progestin (generic term)|progestogen (generic term)
+proverb|1
+(noun)|adage|saw|byword|saying (generic term)|expression (generic term)|locution (generic term)
+proverbial|2
+(adj)|saying|expression|locution (related term)
+(adj)|known (similar term)
+proverbs|1
+(noun)|Proverbs|Book of Proverbs|book (generic term)
+provide|7
+(verb)|supply|render|furnish|give (generic term)
+(verb)|supply|ply|cater|give (generic term)
+(verb)|stipulate (generic term)|qualify (generic term)|condition (generic term)|specify (generic term)
+(verb)|put up|offer|engage (generic term)|wage (generic term)
+(verb)|leave|allow for|allow|yield (generic term)|give (generic term)|afford (generic term)
+(verb)|bring home the bacon|support (generic term)
+(verb)|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+provided with|1
+(adj)|furnished with|supplied with|furnished (similar term)|equipped (similar term)
+providence|4
+(noun)|Providence|capital of Rhode Island|state capital (generic term)
+(noun)|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+(noun)|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)
+(noun)|prudence (generic term)|improvidence (antonym)
+provident|2
+(adj)|careful (similar term)|thrifty (similar term)|farseeing (similar term)|farsighted (similar term)|foresighted (similar term)|foresightful (similar term)|prospicient (similar term)|long (similar term)|longsighted (similar term)|forehanded (similar term)|forethoughtful (similar term)|farsighted (related term)|presbyopic (related term)|prudent (related term)|thrifty (related term)|improvident (antonym)
+(adj)|prudent (similar term)
+providential|3
+(adj)|heaven-sent|miraculous|fortunate (similar term)
+(adj)|fortune|destiny|fate|luck|lot|circumstances|portion (related term)
+(adj)|divine|heavenly (similar term)
+providentially|1
+(adv)|prudently|imprudently (antonym)
+providently|1
+(adv)|improvidently (antonym)
+provider|2
+(noun)|supplier|businessperson (generic term)|bourgeois (generic term)
+(noun)|benefactor (generic term)|helper (generic term)
+province|2
+(noun)|state|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|responsibility|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+provincial|4
+(adj)|administrative district|administrative division|territorial division (related term)
+(adj)|bumpkinly (similar term)|hick (similar term)|rustic (similar term)|unsophisticated (similar term)|corn-fed (similar term)|insular (similar term)|parochial (similar term)|jerkwater (similar term)|one-horse (similar term)|pokey (similar term)|poky (similar term)|stay-at-home (similar term)|cosmopolitan (antonym)
+(noun)|official (generic term)|functionary (generic term)
+(noun)|peasant|bucolic|rustic (generic term)
+provincial capital|1
+(noun)|capital (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+provincialism|2
+(noun)|narrow-mindedness (generic term)|narrowness (generic term)
+(noun)|sectionalism|localism|partiality (generic term)|partisanship (generic term)
+proving ground|1
+(noun)|workplace (generic term)|work (generic term)
+provision|5
+(noun)|proviso|condition (generic term)|precondition (generic term)|stipulation (generic term)
+(noun)|supply|supplying|activity (generic term)
+(noun)|planning|preparation|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|store (generic term)|stock (generic term)|fund (generic term)
+(verb)|purvey|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+provisional|1
+(adj)|probationary|provisionary|tentative|conditional (similar term)
+provisional ira|1
+(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+provisional irish republican army|1
+(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+provisionary|1
+(adj)|probationary|provisional|tentative|conditional (similar term)
+provisioner|1
+(noun)|sutler|victualer|victualler|supplier (generic term)|provider (generic term)
+provisions|1
+(noun)|commissariat|provender|viands|victuals|food (generic term)|nutrient (generic term)
+proviso|1
+(noun)|provision|condition (generic term)|precondition (generic term)|stipulation (generic term)
+provisory|1
+(adj)|conditional (similar term)
+provitamin|1
+(noun)|hydrocarbon (generic term)
+provitamin a|1
+(noun)|provitamin A|carotene|carotin|provitamin (generic term)
+provo|1
+(noun)|Provo|city (generic term)|metropolis (generic term)|urban center (generic term)
+provocateur|1
+(noun)|agent provocateur|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+provocation|3
+(noun)|aggravation|irritation|aggression (generic term)
+(noun)|incitement|incitation|psychic energy (generic term)|mental energy (generic term)
+(noun)|incitement|encouragement (generic term)
+provocative|2
+(adj)|agitative (similar term)|agitating (similar term)|provoking (similar term)|challenging (similar term)|intriguing (similar term)|charged (similar term)|incendiary (similar term)|incitive (similar term)|inflammatory (similar term)|instigative (similar term)|rabble-rousing (similar term)|seditious (similar term)|rousing (similar term)|exciting (related term)|unprovocative (antonym)
+(adj)|sexy (similar term)
+provocatively|1
+(adv)|provokingly
+provoke|4
+(verb)|arouse|elicit|enkindle|kindle|evoke|fire|raise|make (generic term)|create (generic term)
+(verb)|evoke|call forth|kick up|cause (generic term)|do (generic term)|make (generic term)
+(verb)|stimulate|challenge (generic term)
+(verb)|harass|hassle|harry|chivy|chivvy|chevy|chevvy|beset|plague|molest|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+provoked|1
+(adj)|aggravated|angry (similar term)
+provoker|1
+(noun)|instigator|inciter|instigant|firebrand|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+provoking|1
+(adj)|agitative|agitating|provocative (similar term)
+provokingly|1
+(adv)|provocatively
+provos|1
+(noun)|Irish Republican Army|IRA|Provisional Irish Republican Army|Provisional IRA|Provos|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+provost|1
+(noun)|academic administrator (generic term)
+provost court|1
+(noun)|military court (generic term)
+provost guard|1
+(noun)|detachment (generic term)
+provost marshal|1
+(noun)|military policeman (generic term)|MP (generic term)
+prow|1
+(noun)|bow|fore|stem|front (generic term)
+prowess|1
+(noun)|art|artistry|superior skill (generic term)
+prowl|3
+(noun)|walk (generic term)|walking (generic term)
+(verb)|walk (generic term)
+(verb)|lurch|loiter (generic term)|lounge (generic term)|footle (generic term)|lollygag (generic term)|loaf (generic term)|lallygag (generic term)|hang around (generic term)|mess about (generic term)|tarry (generic term)|linger (generic term)|lurk (generic term)|mill about (generic term)|mill around (generic term)
+prowl car|1
+(noun)|cruiser|police cruiser|patrol car|police car|squad car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+prowler|1
+(noun)|sneak|stalker|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+prox|1
+(adj)|proximo|future (similar term)
+proxemics|1
+(noun)|social science (generic term)
+proxima|1
+(noun)|Proxima|Proxima Centauri|flare star (generic term)
+proxima centauri|1
+(noun)|Proxima|Proxima Centauri|flare star (generic term)
+proximal|1
+(adj)|distal (antonym)
+proximate|2
+(adj)|immediate (similar term)|ultimate (antonym)
+(adj)|close (similar term)
+proximity|3
+(noun)|propinquity|nearness (generic term)|closeness (generic term)
+(noun)|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+(noun)|law of proximity|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+proximo|1
+(adj)|prox|future (similar term)
+proxy|2
+(noun)|placeholder|procurator|agent (generic term)
+(noun)|power of attorney (generic term)
+proxy fight|1
+(noun)|takeover attempt (generic term)
+proxy war|1
+(noun)|war (generic term)|state of war (generic term)
+prozac|1
+(noun)|fluoxetine|fluoxetine hydrocholoride|Prozac|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+prude|1
+(noun)|puritan|unpleasant person (generic term)|disagreeable person (generic term)
+prudence|2
+(noun)|discretion (generic term)|discernment (generic term)|natural virtue (generic term)|imprudence (antonym)
+(noun)|discretion|discreetness|circumspection|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+prudent|1
+(adj)|circumspect (similar term)|discreet (similar term)|judicious (similar term)|wise (similar term)|heady (similar term)|provident (similar term)|prudential (similar term)|careful (related term)|provident (related term)|responsible (related term)|wise (related term)|imprudent (antonym)
+prudential|1
+(adj)|prudent (similar term)
+prudently|1
+(adv)|providentially|imprudently (antonym)
+prudery|1
+(noun)|primness|prudishness|Grundyism|modesty (generic term)|modestness (generic term)
+prudhoe bay|1
+(noun)|Prudhoe Bay|bay (generic term)|embayment (generic term)
+prudish|1
+(adj)|priggish|prim|prissy|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+prudishly|1
+(adv)|puritanically
+prudishness|1
+(noun)|primness|prudery|Grundyism|modesty (generic term)|modestness (generic term)
+prumnopitys|1
+(noun)|Prumnopitys|genus Prumnopitys|gymnosperm genus (generic term)
+prumnopitys amara|1
+(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer (generic term)|coniferous tree (generic term)
+prumnopitys andina|1
+(noun)|plum-fruited yew|Prumnopitys andina|Prumnopitys elegans|conifer (generic term)|coniferous tree (generic term)
+prumnopitys elegans|1
+(noun)|plum-fruited yew|Prumnopitys andina|Prumnopitys elegans|conifer (generic term)|coniferous tree (generic term)
+prumnopitys ferruginea|1
+(noun)|miro|black pine|Prumnopitys ferruginea|Podocarpus ferruginea|conifer (generic term)|coniferous tree (generic term)
+prumnopitys taxifolia|1
+(noun)|matai|black pine|Prumnopitys taxifolia|Podocarpus spicata|conifer (generic term)|coniferous tree (generic term)
+prune|3
+(noun)|dried fruit (generic term)
+(verb)|snip|clip|crop|trim|lop|dress|cut back|thin out (generic term)
+(verb)|cut|rationalize|rationalise|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|cut back (related term)|cut back (related term)|cut out (related term)
+prune cake|1
+(noun)|cake (generic term)
+prune whip|1
+(noun)|whip (generic term)
+prunella|2
+(noun)|Prunella|genus Prunella|asterid dicot genus (generic term)
+(noun)|Prunella|genus Prunella|bird genus (generic term)
+prunella modularis|1
+(noun)|hedge sparrow|sparrow|dunnock|Prunella modularis|accentor (generic term)
+prunella vulgaris|1
+(noun)|self-heal|heal all|Prunella vulgaris|herb (generic term)|herbaceous plant (generic term)
+prunellidae|1
+(noun)|Prunellidae|family Prunellidae|bird family (generic term)
+pruner|2
+(noun)|trimmer|worker (generic term)
+(noun)|pruning hook|lopper|pruning saw (generic term)
+pruning|2
+(noun)|cutting (generic term)
+(noun)|trim (generic term)|trimming (generic term)|clipping (generic term)
+pruning hook|1
+(noun)|pruner|lopper|pruning saw (generic term)
+pruning knife|1
+(noun)|knife (generic term)
+pruning saw|1
+(noun)|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+pruning shears|1
+(noun)|shears (generic term)
+pruno|1
+(noun)|hooch (generic term)|hootch (generic term)
+prunus|1
+(noun)|Prunus|genus Prunus|rosid dicot genus (generic term)
+prunus alleghaniensis|1
+(noun)|Allegheny plum|Alleghany plum|sloe|Prunus alleghaniensis|wild plum (generic term)|wild plum tree (generic term)
+prunus americana|1
+(noun)|American red plum|August plum|goose plum|Prunus americana|wild plum (generic term)|wild plum tree (generic term)
+prunus amygdalus|1
+(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree (generic term)
+prunus angustifolia|1
+(noun)|chickasaw plum|hog plum|hog plum bush|Prunus angustifolia|wild plum (generic term)|wild plum tree (generic term)
+prunus armeniaca|1
+(noun)|common apricot|Prunus armeniaca|apricot (generic term)|apricot tree (generic term)
+prunus avium|1
+(noun)|sweet cherry|Prunus avium|cherry (generic term)|cherry tree (generic term)
+prunus besseyi|1
+(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub (generic term)|suffrutex (generic term)
+prunus capuli|1
+(noun)|capulin|capulin tree|Prunus capuli|cherry (generic term)|cherry tree (generic term)
+prunus caroliniana|1
+(noun)|cherry laurel|laurel cherry|mock orange|wild orange|Prunus caroliniana|angiospermous tree (generic term)|flowering tree (generic term)
+prunus cerasifera|1
+(noun)|cherry plum|myrobalan|myrobalan plum|Prunus cerasifera|plum (generic term)|plum tree (generic term)
+prunus cerasus|1
+(noun)|sour cherry|sour cherry tree|Prunus cerasus|cherry (generic term)|cherry tree (generic term)
+prunus cerasus austera|1
+(noun)|morello|Prunus cerasus austera|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+prunus cerasus caproniana|1
+(noun)|amarelle|Prunus cerasus caproniana|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+prunus cerasus marasca|1
+(noun)|marasca|marasca cherry|maraschino cherry|Prunus cerasus marasca|sour cherry (generic term)|sour cherry tree (generic term)|Prunus cerasus (generic term)
+prunus cuneata|1
+(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub (generic term)|bush (generic term)
+prunus dasycarpa|1
+(noun)|purple apricot|black apricot|Prunus dasycarpa|apricot (generic term)|apricot tree (generic term)
+prunus demissa|1
+(noun)|western chokecherry|Prunus virginiana demissa|Prunus demissa|chokecherry (generic term)|chokecherry tree (generic term)|Prunus virginiana (generic term)
+prunus domestica|1
+(noun)|common plum|Prunus domestica|plum (generic term)|plum tree (generic term)
+prunus domestica insititia|1
+(noun)|damson plum|damson plum tree|Prunus domestica insititia|bullace (generic term)|Prunus insititia (generic term)
+prunus dulcis|1
+(noun)|almond|sweet almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree (generic term)
+prunus dulcis amara|1
+(noun)|bitter almond|Prunus dulcis amara|Amygdalus communis amara|almond tree (generic term)
+prunus glandulosa|1
+(noun)|dwarf flowering almond|Prunus glandulosa|almond tree (generic term)
+prunus ilicifolia|1
+(noun)|holly-leaved cherry|holly-leaf cherry|evergreen cherry|islay|Prunus ilicifolia|wild plum (generic term)|wild plum tree (generic term)
+prunus incisa|1
+(noun)|fuji|fuji cherry|Prunus incisa|flowering cherry (generic term)
+prunus insititia|1
+(noun)|bullace|Prunus insititia|plum (generic term)|plum tree (generic term)
+prunus japonica|1
+(noun)|flowering almond|oriental bush cherry|Prunus japonica|almond tree (generic term)
+prunus laurocerasus|1
+(noun)|cherry laurel|laurel cherry|Prunus laurocerasus|shrub (generic term)|bush (generic term)
+prunus lyonii|1
+(noun)|Catalina cherry|Prunus lyonii|cherry (generic term)|cherry tree (generic term)
+prunus maritima|1
+(noun)|beach plum|beach plum bush|Prunus maritima|wild plum (generic term)|wild plum tree (generic term)
+prunus mexicana|1
+(noun)|big-tree plum|Prunus mexicana|plum (generic term)|plum tree (generic term)
+prunus mume|1
+(noun)|Japanese apricot|mei|Prunus mume|apricot (generic term)|apricot tree (generic term)
+prunus nigra|1
+(noun)|Canada plum|Prunus nigra|plum (generic term)|plum tree (generic term)
+prunus padus|1
+(noun)|hagberry tree|European bird cherry|common bird cherry|Prunus padus|bird cherry (generic term)|bird cherry tree (generic term)
+prunus pensylvanica|1
+(noun)|pin cherry|Prunus pensylvanica|bird cherry (generic term)|bird cherry tree (generic term)
+prunus persica|1
+(noun)|peach|peach tree|Prunus persica|fruit tree (generic term)
+prunus persica nectarina|1
+(noun)|nectarine|nectarine tree|Prunus persica nectarina|fruit tree (generic term)
+prunus pumila|1
+(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub (generic term)|bush (generic term)
+prunus pumilla susquehanae|1
+(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub (generic term)|bush (generic term)
+prunus salicina|1
+(noun)|Japanese plum|Prunus salicina|plum (generic term)|plum tree (generic term)
+prunus serotina|1
+(noun)|black cherry|black cherry tree|rum cherry|Prunus serotina|wild cherry (generic term)|wild cherry tree (generic term)
+prunus serrulata|1
+(noun)|oriental cherry|Japanese cherry|Japanese flowering cherry|Prunus serrulata|flowering cherry (generic term)
+prunus sieboldii|1
+(noun)|Japanese flowering cherry|Prunus sieboldii|flowering cherry (generic term)
+prunus spinosa|1
+(noun)|blackthorn|sloe|Prunus spinosa|shrub (generic term)|bush (generic term)
+prunus subcordata|1
+(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum (generic term)|plum tree (generic term)
+prunus subhirtella|1
+(noun)|rosebud cherry|winter flowering cherry|Prunus subhirtella|flowering cherry (generic term)
+prunus susquehanae|1
+(noun)|sand cherry|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub (generic term)|bush (generic term)
+prunus tenella|1
+(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree (generic term)
+prunus triloba|1
+(noun)|flowering almond|Prunus triloba|almond tree (generic term)
+prunus virginiana|1
+(noun)|chokecherry|chokecherry tree|Prunus virginiana|cherry (generic term)|cherry tree (generic term)
+prunus virginiana demissa|1
+(noun)|western chokecherry|Prunus virginiana demissa|Prunus demissa|chokecherry (generic term)|chokecherry tree (generic term)|Prunus virginiana (generic term)
+prurience|1
+(noun)|pruriency|lasciviousness|carnality|lubricity|amorousness (generic term)|eroticism (generic term)|erotism (generic term)|sexiness (generic term)|amativeness (generic term)
+pruriency|1
+(noun)|prurience|lasciviousness|carnality|lubricity|amorousness (generic term)|eroticism (generic term)|erotism (generic term)|sexiness (generic term)|amativeness (generic term)
+prurient|1
+(adj)|lubricious|lustful|salacious|sexy (similar term)
+prurigo|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+pruritus|1
+(noun)|itch (generic term)|itchiness (generic term)|itching (generic term)
+pruritus ani|1
+(noun)|pruritus (generic term)
+pruritus vulvae|1
+(noun)|pruritus (generic term)
+prussia|1
+(noun)|Prussia|Preussen|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+prussian|2
+(adj)|Prussian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Prussian|German (generic term)
+prussian asparagus|1
+(noun)|bath asparagus|Prussian asparagus|Ornithogalum pyrenaicum|star-of-Bethlehem (generic term)
+prussian blue|2
+(noun)|iron blue|Prussian blue|pigment (generic term)
+(noun)|Prussian blue|blue (generic term)|blueness (generic term)
+prussic acid|1
+(noun)|hydrocyanic acid|acid (generic term)
+pry|5
+(noun)|crowbar|wrecking bar|pry bar|lever (generic term)
+(verb)|prise|prize|lever|jimmy|open (generic term)|open up (generic term)
+(verb)|ask (generic term)|inquire (generic term)|enquire (generic term)
+(verb)|intrude|horn in|nose|poke|search (generic term)|look (generic term)|nose out (related term)
+(verb)|prise|extort (generic term)|wring from (generic term)
+pry bar|1
+(noun)|crowbar|wrecking bar|pry|lever (generic term)
+prying|2
+(adj)|nosy|nosey|snoopy|curious (similar term)
+(noun)|nosiness|snoopiness|curiousness (generic term)|inquisitiveness (generic term)
+przevalski's horse|1
+(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse (generic term)
+przewalski's horse|1
+(noun)|Przewalski's horse|Przevalski's horse|Equus caballus przewalskii|Equus caballus przevalskii|wild horse (generic term)
+ps|1
+(noun)|postscript|PS|note (generic term)|annotation (generic term)|notation (generic term)
+psa|1
+(noun)|prostate specific antigen|PSA|protein (generic term)
+psa blood test|1
+(noun)|PSA blood test|blood test (generic term)
+psalm|3
+(noun)|Psalm|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(verb)|sing (generic term)
+psalmist|1
+(noun)|composer (generic term)
+psalmody|1
+(noun)|hymnody|singing (generic term)|vocalizing (generic term)
+psalms|1
+(noun)|Psalms|Book of Psalms|book (generic term)
+psalter|1
+(noun)|Psalter|Book of Psalms|prayer book (generic term)|prayerbook (generic term)
+psalterium|1
+(noun)|omasum|third stomach|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+psaltery|1
+(noun)|stringed instrument (generic term)
+psaltriparus|1
+(noun)|Psaltriparus|genus Psaltriparus|bird genus (generic term)
+psammoma|1
+(noun)|sand tumor|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+psenes|1
+(noun)|Psenes|genus Psenes|fish genus (generic term)
+psephologist|1
+(noun)|sociologist (generic term)
+psephology|1
+(noun)|sociology (generic term)
+psephurus|1
+(noun)|Psephurus|genus Psephurus|fish genus (generic term)
+psephurus gladis|1
+(noun)|Chinese paddlefish|Psephurus gladis|ganoid (generic term)|ganoid fish (generic term)
+psetta|1
+(noun)|Psetta|genus Psetta|fish genus (generic term)
+psetta maxima|1
+(noun)|turbot|Psetta maxima|lefteye flounder (generic term)|lefteyed flounder (generic term)
+psettichthys|1
+(noun)|Psettichthys|genus Psettichthys|fish genus (generic term)
+psettichthys melanostichus|1
+(noun)|sand sole|Psettichthys melanostichus|sole (generic term)
+pseud|1
+(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+pseudacris|1
+(noun)|Pseudacris|genus Pseudacris|amphibian genus (generic term)
+pseudaletia|1
+(noun)|Pseudaletia|genus Pseudaletia|arthropod genus (generic term)
+pseudaletia unipuncta|2
+(noun)|armyworm|army worm|Pseudaletia unipuncta|caterpillar (generic term)
+(noun)|armyworm|Pseudaletia unipuncta|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+pseudechis|1
+(noun)|Pseudechis|genus Pseudechis|reptile genus (generic term)
+pseudechis porphyriacus|1
+(noun)|Australian blacksnake|Pseudechis porphyriacus|elapid (generic term)|elapid snake (generic term)
+pseudemys|1
+(noun)|Pseudemys|genus Pseudemys|reptile genus (generic term)
+pseudemys concinna|1
+(noun)|cooter|river cooter|Pseudemys concinna|turtle (generic term)
+pseudemys rubriventris|1
+(noun)|red-bellied terrapin|red-bellied turtle|redbelly|Pseudemys rubriventris|turtle (generic term)
+pseudemys scripta|1
+(noun)|slider|yellow-bellied terrapin|Pseudemys scripta|turtle (generic term)
+pseudepigrapha|1
+(noun)|Pseudepigrapha|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+pseudo|2
+(adj)|counterfeit (similar term)|imitative (similar term)
+(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+pseudobombax|1
+(noun)|Pseudobombax|genus Pseudobombax|dilleniid dicot genus (generic term)
+pseudobombax ellipticum|1
+(noun)|shaving-brush tree|Pseudobombax ellipticum|tree (generic term)
+pseudobulb|1
+(noun)|enlargement (generic term)
+pseudocarp|1
+(noun)|accessory fruit|fruit (generic term)
+pseudococcidae|1
+(noun)|Pseudococcidae|family Pseudococcidae|arthropod family (generic term)
+pseudococcus|1
+(noun)|Pseudococcus|genus Pseudococcus|arthropod genus (generic term)
+pseudococcus comstocki|1
+(noun)|Comstock mealybug|Comstock's mealybug|Pseudococcus comstocki|mealybug (generic term)|mealy bug (generic term)
+pseudococcus fragilis|1
+(noun)|citrophilous mealybug|citrophilus mealybug|Pseudococcus fragilis|mealybug (generic term)|mealy bug (generic term)
+pseudocolus|1
+(noun)|Pseudocolus|genus Pseudocolus|fungus genus (generic term)
+pseudocolus fusiformis|1
+(noun)|stinky squid|Pseudocolus fusiformis|stinkhorn (generic term)|carrion fungus (generic term)
+pseudocyesis|1
+(noun)|false pregnancy|physiological state (generic term)|physiological condition (generic term)
+pseudoephedrine|1
+(noun)|alkaloid (generic term)
+pseudohallucination|1
+(noun)|hallucination (generic term)
+pseudohermaphrodite|2
+(adj)|pseudohermaphroditic|androgynous (similar term)
+(noun)|bisexual (generic term)|bisexual person (generic term)
+pseudohermaphroditic|1
+(adj)|pseudohermaphrodite|androgynous (similar term)
+pseudohermaphroditism|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+pseudohypertrophic dystrophy|1
+(noun)|Duchenne's muscular dystrophy|muscular dystrophy (generic term)|dystrophy (generic term)
+pseudolarix|1
+(noun)|Pseudolarix|genus Pseudolarix|gymnosperm genus (generic term)
+pseudolarix amabilis|1
+(noun)|golden larch|Pseudolarix amabilis|conifer (generic term)|coniferous tree (generic term)
+pseudomonad|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+pseudomonadales|1
+(noun)|Pseudomonadales|order Pseudomonadales|animal order (generic term)
+pseudomonas|1
+(noun)|Pseudomonas|genus Pseudomonas|bacteria genus (generic term)
+pseudomonas pyocanea|1
+(noun)|Pseudomonas pyocanea|bacteria species (generic term)
+pseudomonas solanacearum|1
+(noun)|ring rot bacteria|Pseudomonas solanacearum|pseudomonad (generic term)
+pseudomonodaceae|1
+(noun)|Pseudomonodaceae|family Pseudomonodaceae|bacteria family (generic term)
+pseudonym|1
+(noun)|anonym|nom de guerre|name (generic term)
+pseudonymous|1
+(adj)|onymous (similar term)
+pseudoperipteral|1
+(adj)|peristylar|peripteral (similar term)
+pseudophloem|1
+(noun)|plant tissue (generic term)
+pseudopleuronectes|1
+(noun)|Pseudopleuronectes|genus Pseudopleuronectes|fish genus (generic term)
+pseudopleuronectes americanus|1
+(noun)|winter flounder|blackback flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder (generic term)|righteyed flounder (generic term)
+pseudopod|1
+(noun)|pseudopodium|process (generic term)|outgrowth (generic term)|appendage (generic term)
+pseudopodium|1
+(noun)|pseudopod|process (generic term)|outgrowth (generic term)|appendage (generic term)
+pseudoprostyle|1
+(adj)|prostyle|apteral (similar term)
+pseudorubella|1
+(noun)|exanthema subitum|roseola infantum|roseola infantilis|disease (generic term)
+pseudoryx|1
+(noun)|Pseudoryx|genus Pseudoryx|mammal genus (generic term)
+pseudoryx nghetinhensis|1
+(noun)|forest goat|spindle horn|Pseudoryx nghetinhensis|bovid (generic term)
+pseudoscience|1
+(noun)|fallacy (generic term)|false belief (generic term)
+pseudoscientific|1
+(adj)|unscientific (similar term)
+pseudoscorpion|1
+(noun)|false scorpion|arachnid (generic term)|arachnoid (generic term)
+pseudoscorpiones|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+pseudoscorpionida|1
+(noun)|Chelonethida|order Chelonethida|Pseudoscorpionida|order Pseudoscorpionida|Pseudoscorpiones|order Pseudoscorpiones|animal order (generic term)
+pseudosmallpox|1
+(noun)|alastrim|variola minor|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+pseudotaxus|1
+(noun)|Pseudotaxus|genus Pseudotaxus|gymnosperm genus (generic term)
+pseudotaxus chienii|1
+(noun)|white-berry yew|Pseudotaxus chienii|yew (generic term)
+pseudotsuga|1
+(noun)|Pseudotsuga|genus Pseudotsuga|gymnosperm genus (generic term)
+pseudotsuga macrocarpa|1
+(noun)|big-cone spruce|big-cone douglas fir|Pseudotsuga macrocarpa|douglas fir (generic term)
+pseudotsuga menziesii|1
+(noun)|green douglas fir|douglas spruce|douglas pine|douglas hemlock|Oregon fir|Oregon pine|Pseudotsuga menziesii|douglas fir (generic term)
+pseudovariola|1
+(noun)|alastrim|variola minor|pseudosmallpox|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+pseudowintera|1
+(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus (generic term)
+pseudowintera colorata|1
+(noun)|pepper shrub|Pseudowintera colorata|Wintera colorata|shrub (generic term)|bush (generic term)
+psf|1
+(noun)|Popular Struggle Front|PSF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+psi|2
+(noun)|pounds per square inch|pressure unit (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+psi particle|1
+(noun)|J particle|meson (generic term)|mesotron (generic term)
+psidium|1
+(noun)|Psidium|genus Psidium|dicot genus (generic term)|magnoliopsid genus (generic term)
+psidium cattleianum|1
+(noun)|cattley guava|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree (generic term)
+psidium guajava|1
+(noun)|guava|true guava|guava bush|Psidium guajava|fruit tree (generic term)
+psidium guineense|1
+(noun)|Brazilian guava|Psidium guineense|fruit tree (generic term)
+psidium littorale|1
+(noun)|guava|strawberry guava|yellow cattley guava|Psidium littorale|fruit tree (generic term)
+psidium littorale longipes|1
+(noun)|cattley guava|purple strawberry guava|Psidium cattleianum|Psidium littorale longipes|fruit tree (generic term)
+psilocin|1
+(noun)|psilocybin|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+psilocybin|1
+(noun)|psilocin|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+psilomelane|1
+(noun)|mineral (generic term)
+psilophytaceae|1
+(noun)|Psilophytaceae|family Psilophytaceae|fern family (generic term)
+psilophytales|1
+(noun)|Psilophytales|order Psilophytales|plant order (generic term)
+psilophyte|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+psilophyton|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+psilopsida|1
+(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class (generic term)
+psilosis|1
+(noun)|epilation (generic term)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+psilotaceae|1
+(noun)|Psilotaceae|family Psilotaceae|fern family (generic term)
+psilotales|1
+(noun)|Psilotales|order Psilotales|plant order (generic term)
+psilotatae|1
+(noun)|Psilopsida|class Psilopsida|Psilotatae|class Psilotatae|class (generic term)
+psilotum|1
+(noun)|Psilotum|genus Psilotum|fern genus (generic term)
+psilotum nudum|1
+(noun)|skeleton fork fern|Psilotum nudum|whisk fern (generic term)
+psithyrus|1
+(noun)|Psithyrus|genus Psithyrus|arthropod genus (generic term)
+psittacidae|1
+(noun)|Psittacidae|family Psittacidae|bird family (generic term)
+psittaciformes|1
+(noun)|Psittaciformes|order Psittaciformes|animal order (generic term)
+psittacosaur|1
+(noun)|psittacosaurus|ceratopsian (generic term)|horned dinosaur (generic term)
+psittacosaurus|1
+(noun)|psittacosaur|ceratopsian (generic term)|horned dinosaur (generic term)
+psittacosis|2
+(noun)|parrot disease|animal disease (generic term)
+(noun)|parrot fever|ornithosis|atypical pneumonia (generic term)|primary atypical pneumonia (generic term)|mycoplasmal pneumonia (generic term)
+psittacula|1
+(noun)|Psittacula|genus Psittacula|bird genus (generic term)
+psittacula krameri|1
+(noun)|ring-necked parakeet|Psittacula krameri|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+psittacus|1
+(noun)|Psittacus|genus Psittacus|bird genus (generic term)
+psittacus erithacus|1
+(noun)|African grey|African gray|Psittacus erithacus|parrot (generic term)
+psoas|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+psocid|1
+(noun)|psocopterous insect (generic term)
+psocidae|1
+(noun)|Psocidae|family Psocidae|arthropod family (generic term)
+psocoptera|1
+(noun)|Psocoptera|order Psocoptera|Corrodentia|order Corrodentia|animal order (generic term)
+psocopterous insect|1
+(noun)|insect (generic term)
+psophia|1
+(noun)|Psophia|genus Psophia|bird genus (generic term)
+psophia crepitans|1
+(noun)|Brazilian trumpeter|Psophia crepitans|trumpeter (generic term)
+psophiidae|1
+(noun)|Psophiidae|family Psophiidae|bird family (generic term)
+psophocarpus|1
+(noun)|Psophocarpus|genus Psophocarpus|rosid dicot genus (generic term)
+psophocarpus tetragonolobus|1
+(noun)|winged bean|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+psoralea|1
+(noun)|Psoralea|genus Psoralea|rosid dicot genus (generic term)
+psoralea esculenta|1
+(noun)|breadroot|Indian breadroot|pomme blanche|pomme de prairie|Psoralea esculenta|herb (generic term)|herbaceous plant (generic term)
+psoriasis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+psoriatic arthritis|1
+(noun)|rheumatoid arthritis (generic term)|atrophic arthritis (generic term)|rheumatism (generic term)
+pst|1
+(noun)|Pacific Time|Pacific Standard Time|PST|civil time (generic term)|standard time (generic term)|local time (generic term)
+psych up|1
+(verb)|hype up|agitate (generic term)|rouse (generic term)|turn on (generic term)|charge (generic term)|commove (generic term)|excite (generic term)|charge up (generic term)
+psyche|3
+(noun)|mind|head|brain|nous|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|soul|spirit (generic term)
+(noun)|Psyche|mythical being (generic term)
+psychedelia|1
+(noun)|subculture (generic term)
+psychedelic|3
+(adj)|psychoactive (similar term)|psychotropic (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+(adj)|agitated (similar term)
+psychedelic drug|1
+(noun)|hallucinogen|hallucinogenic drug|psychodelic drug|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+psychedelic rock|1
+(noun)|acid rock|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+psychiatric|1
+(adj)|psychiatrical|medicine|medical specialty (related term)
+psychiatric hospital|1
+(noun)|mental hospital|mental institution|institution|mental home|insane asylum|asylum|hospital (generic term)|infirmary (generic term)
+psychiatrical|1
+(adj)|psychiatric|medicine|medical specialty (related term)
+psychiatrist|1
+(noun)|head-shrinker|shrink|specialist (generic term)|medical specialist (generic term)
+psychiatry|1
+(noun)|psychopathology|psychological medicine|medicine (generic term)|medical specialty (generic term)
+psychic|3
+(adj)|psychical|mental (similar term)
+(adj)|psychical|paranormal (similar term)
+(noun)|occultist (generic term)
+psychic communication|1
+(noun)|psychical communication|anomalous communication|communication (generic term)
+psychic energy|1
+(noun)|mental energy|motivation (generic term)|motive (generic term)|need (generic term)
+psychic phenomena|1
+(noun)|psychic phenomenon|parapsychology|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+psychic phenomenon|1
+(noun)|psychic phenomena|parapsychology|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+psychic trauma|1
+(noun)|trauma|psychological state (generic term)|mental state (generic term)
+psychical|2
+(adj)|psychic|mental (similar term)
+(adj)|psychic|paranormal (similar term)
+psychical communication|1
+(noun)|psychic communication|anomalous communication|communication (generic term)
+psycho|1
+(noun)|psychotic|psychotic person|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+psychoactive|1
+(adj)|psychotropic|hallucinogenic (similar term)|mind-altering (similar term)|mind-expanding (similar term)|mind-bending (similar term)|mind-blowing (similar term)|psychedelic (similar term)|nonpsychoactive (antonym)
+psychoactive drug|1
+(noun)|mind-altering drug|consciousness-altering drug|psychoactive substance|drug (generic term)
+psychoactive substance|1
+(noun)|psychoactive drug|mind-altering drug|consciousness-altering drug|drug (generic term)
+psychoanalyse|1
+(verb)|analyze|analyse|psychoanalyze|treat (generic term)|care for (generic term)
+psychoanalysis|1
+(noun)|analysis|depth psychology|psychotherapy (generic term)
+psychoanalyst|1
+(noun)|analyst|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+psychoanalytic|1
+(adj)|psychoanalytical|psychotherapy (related term)
+psychoanalytic process|1
+(noun)|human process (generic term)
+psychoanalytical|1
+(adj)|psychoanalytic|psychotherapy (related term)
+psychoanalyze|1
+(verb)|analyze|analyse|psychoanalyse|treat (generic term)|care for (generic term)
+psychobabble|1
+(noun)|jargon (generic term)
+psychodelic drug|1
+(noun)|hallucinogen|hallucinogenic drug|psychedelic drug|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+psychodid|1
+(noun)|gnat (generic term)
+psychodidae|1
+(noun)|Psychodidae|family Psychodidae|arthropod family (generic term)
+psychogalvanic response|1
+(noun)|galvanic skin response|GSR|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+psychogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+psychogenetic|2
+(adj)|psychogenic|growth|growing|maturation|development|ontogeny|ontogenesis (related term)
+(adj)|growth|growing|maturation|development|ontogeny|ontogenesis (related term)
+psychogenic|2
+(adj)|psychogenetic|growth|growing|maturation|development|ontogeny|ontogenesis (related term)
+(adj)|mental (similar term)
+psychogenic fugue|1
+(noun)|fugue|dissociative disorder (generic term)
+psychokinesis|1
+(noun)|telekinesis|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+psychokinetic|1
+(adj)|paranormal (similar term)
+psycholinguist|1
+(noun)|psychologist (generic term)|linguist (generic term)|linguistic scientist (generic term)
+psycholinguistic|1
+(adj)|cognitive psychology (related term)
+psycholinguistics|1
+(noun)|cognitive psychology (generic term)
+psychological|2
+(adj)|mental (similar term)
+(adj)|science|scientific discipline (related term)
+psychological disorder|1
+(noun)|mental disorder|mental disturbance|disturbance|folie|disorder (generic term)|upset (generic term)
+psychological feature|1
+(noun)|abstraction (generic term)
+psychological medicine|1
+(noun)|psychiatry|psychopathology|medicine (generic term)|medical specialty (generic term)
+psychological moment|1
+(noun)|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+psychological operation|1
+(noun)|psyop|operation (generic term)|military operation (generic term)
+psychological science|1
+(noun)|psychology|science (generic term)|scientific discipline (generic term)
+psychological state|1
+(noun)|mental state|condition (generic term)|status (generic term)
+psychological warfare|1
+(noun)|war of nerves|war (generic term)|warfare (generic term)
+psychologist|1
+(noun)|scientist (generic term)|man of science (generic term)
+psychology|1
+(noun)|psychological science|science (generic term)|scientific discipline (generic term)
+psychology department|1
+(noun)|department of psychology|academic department (generic term)
+psychometric|1
+(adj)|psychology|psychological science (related term)
+psychometric test|1
+(noun)|test|mental test|mental testing|mental measurement (generic term)
+psychometrics|1
+(noun)|psychometry|psychometrika|psychology (generic term)|psychological science (generic term)
+psychometrika|1
+(noun)|psychometry|psychometrics|psychology (generic term)|psychological science (generic term)
+psychometry|1
+(noun)|psychometrics|psychometrika|psychology (generic term)|psychological science (generic term)
+psychomotor|1
+(adj)|content|cognitive content|mental object (related term)|bodily process|body process|bodily function|activity (related term)
+psychomotor development|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+psychomotor epilepsy|1
+(noun)|temporal lobe epilepsy|epilepsy (generic term)
+psychoneurosis|1
+(noun)|neurosis|neuroticism|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+psychoneurotic|2
+(adj)|neurotic|abulic (similar term)|aboulic (similar term)|compulsive (similar term)|delusional (similar term)|disturbed (similar term)|maladjusted (similar term)|hypochondriac (similar term)|hypochondriacal (similar term)|hysteric (similar term)|hysterical (similar term)|megalomaniacal (similar term)|megalomanic (similar term)|monomaniacal (similar term)|nymphomaniacal (similar term)|nymphomaniac (similar term)|obsessional (similar term)|obsessive (similar term)|obsessive-compulsive (similar term)|pathological (similar term)|phobic (similar term)|psychosomatic (similar term)|schizoid (similar term)|unneurotic (antonym)
+(noun)|neurotic|mental case|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+psychonomics|1
+(noun)|experimental psychology|psychology (generic term)|psychological science (generic term)
+psychopath|1
+(noun)|sociopath|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+psychopathic|1
+(adj)|psychopathologic|psychopathological|insane (similar term)
+psychopathic personality|1
+(noun)|antisocial personality disorder|sociopathic personality|personality disorder (generic term)
+psychopathologic|1
+(adj)|psychopathic|psychopathological|insane (similar term)
+psychopathological|1
+(adj)|psychopathic|psychopathologic|insane (similar term)
+psychopathology|2
+(noun)|abnormal psychology|psychology (generic term)|psychological science (generic term)
+(noun)|psychiatry|psychological medicine|medicine (generic term)|medical specialty (generic term)
+psychopathy|1
+(noun)|mental illness|mental disease|psychological state (generic term)|mental state (generic term)|mental health (antonym)
+psychopharmacological|1
+(adj)|pharmacology|pharmacological medicine|materia medica (related term)
+psychopharmacology|1
+(noun)|pharmacology (generic term)|pharmacological medicine (generic term)|materia medica (generic term)
+psychophysicist|1
+(noun)|psychologist (generic term)
+psychophysics|1
+(noun)|experimental psychology (generic term)|psychonomics (generic term)
+psychophysiology|1
+(noun)|physiological psychology|neuropsychology|psychology (generic term)|psychological science (generic term)
+psychopomp|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+psychopsis|1
+(noun)|Psychopsis|genus Psychopsis|monocot genus (generic term)|liliopsid genus (generic term)
+psychopsis krameriana|1
+(noun)|Psychopsis krameriana|Oncidium papilio kramerianum|butterfly orchid (generic term)
+psychopsis papilio|1
+(noun)|Psychopsis papilio|Oncidium papilio|butterfly orchid (generic term)
+psychosexual|1
+(adj)|representation|mental representation|internal representation (related term)
+psychosexual development|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+psychosexuality|1
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+psychosis|1
+(noun)|mental illness (generic term)|mental disease (generic term)|psychopathy (generic term)
+psychosomatic|1
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+psychosomatic disorder|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+psychosurgery|1
+(noun)|brain surgery (generic term)
+psychotherapeutic|2
+(adj)|psychiatry|psychopathology|psychological medicine (related term)
+(adj)|cathartic|healthful (similar term)
+psychotherapeutics|1
+(noun)|psychotherapy|mental hygiene|psychiatry (generic term)|psychopathology (generic term)|psychological medicine (generic term)
+psychotherapist|1
+(noun)|clinical psychologist|therapist (generic term)|healer (generic term)
+psychotherapy|2
+(noun)|psychotherapeutics|mental hygiene|psychiatry (generic term)|psychopathology (generic term)|psychological medicine (generic term)
+(noun)|therapy (generic term)
+psychotherapy group|1
+(noun)|meeting (generic term)|group meeting (generic term)
+psychotic|2
+(adj)|insane (similar term)
+(noun)|psychotic person|psycho|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+psychotic belief|1
+(noun)|delusion|psychological state (generic term)|mental state (generic term)
+psychotic depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)|neurotic depression (antonym)
+psychotic person|1
+(noun)|psychotic|psycho|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+psychotria|1
+(noun)|Psychotria|genus Psychotria|asterid dicot genus (generic term)
+psychotria capensis|1
+(noun)|lemonwood|lemon-wood|lemonwood tree|lemon-wood tree|Psychotria capensis|tree (generic term)
+psychotropic|1
+(adj)|psychoactive|hallucinogenic (similar term)|mind-altering (similar term)|mind-expanding (similar term)|mind-bending (similar term)|mind-blowing (similar term)|psychedelic (similar term)|nonpsychoactive (antonym)
+psychotropic agent|1
+(noun)|drug (generic term)
+psychrometer|1
+(noun)|hygrometer (generic term)
+psylla|1
+(noun)|jumping plant louse|psyllid|plant louse (generic term)|louse (generic term)
+psyllid|1
+(noun)|jumping plant louse|psylla|plant louse (generic term)|louse (generic term)
+psyllidae|1
+(noun)|Psyllidae|family Psyllidae|Chermidae|family Chermidae|arthropod family (generic term)
+psyllium|1
+(noun)|fleawort|Spanish psyllium|Plantago psyllium|plantain (generic term)
+psyop|1
+(noun)|psychological operation|operation (generic term)|military operation (generic term)
+pt|1
+(noun)|platinum|Pt|atomic number 78|noble metal (generic term)
+pt boat|1
+(noun)|PT boat|mosquito boat|mosquito craft|motor torpedo boat|torpedo boat (generic term)
+ptah|1
+(noun)|Ptah|Egyptian deity (generic term)
+ptarmigan|1
+(noun)|grouse (generic term)
+pteretis|1
+(noun)|Matteuccia|genus Matteuccia|Pteretis|genus Pteretis|fern genus (generic term)
+pteretis struthiopteris|1
+(noun)|ostrich fern|shuttlecock fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+pteridaceae|1
+(noun)|Pteridaceae|family Pteridaceae|fern family (generic term)
+pteridium|1
+(noun)|Pteridium|genus Pteridium|fern genus (generic term)
+pteridium aquilinum|1
+(noun)|bracken|pasture brake|brake|Pteridium aquilinum|fern (generic term)
+pteridium esculentum|1
+(noun)|bracken|Pteridium esculentum|fern (generic term)
+pteridological|1
+(adj)|botany|phytology (related term)
+pteridologist|1
+(noun)|expert (generic term)
+pteridology|1
+(noun)|botany (generic term)|phytology (generic term)
+pteridophyta|1
+(noun)|Pteridophyta|division Pteridophyta|division (generic term)
+pteridophyte|1
+(noun)|nonflowering plant|vascular plant (generic term)|tracheophyte (generic term)
+pteridosperm|1
+(noun)|seed fern|gymnosperm (generic term)
+pteridospermae|1
+(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+pteridospermaphyta|1
+(noun)|Pteridospermae|group Pteridospermae|Pteridospermaphyta|group Pteridospermaphyta|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+pteridospermopsida|1
+(noun)|Pteridospermopsida|class Pteridospermopsida|class (generic term)
+pteriidae|1
+(noun)|Pteriidae|family Pteriidae|mollusk family (generic term)
+pterion|1
+(noun)|craniometric point (generic term)
+pteris|1
+(noun)|Pteris|genus Pteris|fern genus (generic term)
+pteris cretica|1
+(noun)|Pteris cretica|fern (generic term)
+pteris multifida|1
+(noun)|spider brake|spider fern|Pteris multifida|fern (generic term)
+pteris serrulata|1
+(noun)|ribbon fern|spider fern|Pteris serrulata|fern (generic term)
+pternohyla|1
+(noun)|Pternohyla|genus Pternohyla|amphibian genus (generic term)
+pternohyla fodiens|1
+(noun)|lowland burrowing treefrog|northern casque-headed frog|Pternohyla fodiens|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+pterocarpus|1
+(noun)|Pterocarpus|genus Pterocarpus|rosid dicot genus (generic term)
+pterocarpus angolensis|1
+(noun)|bloodwood tree|kiaat|Pterocarpus angolensis|tree (generic term)
+pterocarpus indicus|1
+(noun)|padauk|padouk|amboyna|Pterocarpus indicus|tree (generic term)
+pterocarpus macrocarpus|1
+(noun)|Burma padauk|Burmese rosewood|Pterocarpus macrocarpus|tree (generic term)
+pterocarpus marsupium|1
+(noun)|kino|Pterocarpus marsupium|tree (generic term)
+pterocarpus santalinus|1
+(noun)|red sandalwood|red sanders|red sanderswood|red saunders|Pterocarpus santalinus|tree (generic term)
+pterocarya|1
+(noun)|Pterocarya|genus Pterocarya|dicot genus (generic term)|magnoliopsid genus (generic term)
+pterocarya fraxinifolia|1
+(noun)|Caucasian walnut|Pterocarya fraxinifolia|wing nut (generic term)|wing-nut (generic term)
+pterocles|1
+(noun)|Pterocles|genus Pterocles|bird genus (generic term)
+pterocles alchata|1
+(noun)|pin-tailed sandgrouse|pin-tailed grouse|Pterocles alchata|sandgrouse (generic term)|sand grouse (generic term)
+pterocles indicus|1
+(noun)|painted sandgrouse|Pterocles indicus|sandgrouse (generic term)|sand grouse (generic term)
+pteroclididae|1
+(noun)|Pteroclididae|family Pteroclididae|bird family (generic term)
+pterocnemia|1
+(noun)|Pterocnemia|genus Pterocnemia|bird genus (generic term)
+pterocnemia pennata|1
+(noun)|rhea|nandu|Pterocnemia pennata|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+pterodactyl|1
+(noun)|pterosaur (generic term)|flying reptile (generic term)
+pterodactylidae|1
+(noun)|Pterodactylidae|family Pterodactylidae|reptile family (generic term)
+pterodactylus|1
+(noun)|Pterodactylus|genus Pterodactylus|reptile genus (generic term)
+pterois|1
+(noun)|Pterois|genus Pterois|fish genus (generic term)
+pteropogon|1
+(noun)|Pteropogon humboltianum|herb (generic term)|herbaceous plant (generic term)
+pteropogon humboltianum|1
+(noun)|pteropogon|Pteropogon humboltianum|herb (generic term)|herbaceous plant (generic term)
+pteropsida|1
+(noun)|Pteropsida|subdivision Pteropsida|division (generic term)
+pteropus|1
+(noun)|Pteropus|genus Pteropus|mammal genus (generic term)
+pteropus capestratus|1
+(noun)|Pteropus capestratus|fruit bat (generic term)|megabat (generic term)
+pteropus hypomelanus|1
+(noun)|Pteropus hypomelanus|fruit bat (generic term)|megabat (generic term)
+pterosaur|1
+(noun)|flying reptile|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+pterosauria|1
+(noun)|Pterosauria|order Pterosauria|animal order (generic term)
+pterospermum|1
+(noun)|Pterospermum|genus Pterospermum|dilleniid dicot genus (generic term)
+pterospermum acerifolium|1
+(noun)|mayeng|maple-leaved bayur|Pterospermum acerifolium|tree (generic term)
+pterostylis|1
+(noun)|Pterostylis|genus Pterostylis|monocot genus (generic term)|liliopsid genus (generic term)
+pteroylglutamic acid|1
+(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+pteroylmonoglutamic acid|1
+(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+pterygium|1
+(noun)|conjunctiva (generic term)
+pterygoid muscle|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+pterygoid plexus|1
+(noun)|plexus (generic term)|rete (generic term)
+pterygoid process|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+ptilocercus|1
+(noun)|Ptilocercus|genus Ptilocercus|mammal genus (generic term)
+ptilocrinus|1
+(noun)|Ptilocrinus|genus Ptilocrinus|echinoderm genus (generic term)
+ptilonorhynchidae|1
+(noun)|Ptilonorhynchidae|family Ptilonorhynchidae|bird family (generic term)
+ptilonorhynchus|1
+(noun)|Ptilonorhynchus|genus Ptilonorhynchus|bird genus (generic term)
+ptilonorhynchus violaceus|1
+(noun)|satin bowerbird|satin bird|Ptilonorhynchus violaceus|bowerbird (generic term)|catbird (generic term)
+ptloris|1
+(noun)|Ptloris|genus Ptloris|bird genus (generic term)
+ptloris paradisea|1
+(noun)|riflebird|Ptloris paradisea|bird of paradise (generic term)
+pto|1
+(noun)|power takeoff|PTO|device (generic term)
+ptolemaic|2
+(adj)|Ptolemaic|astronomer|uranologist|stargazer (related term)
+(adj)|Ptolemaic|geocentric (similar term)
+ptolemaic dynasty|1
+(noun)|Ptolemy|Ptolemaic dynasty|dynasty (generic term)
+ptolemaic system|1
+(noun)|Ptolemaic system|model (generic term)|theoretical account (generic term)|framework (generic term)
+ptolemy|2
+(noun)|Ptolemy|Claudius Ptolemaeus|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Ptolemy|Ptolemaic dynasty|dynasty (generic term)
+ptolemy i|1
+(noun)|Ptolemy I|king (generic term)|male monarch (generic term)|Rex (generic term)
+ptolemy ii|1
+(noun)|Ptolemy II|king (generic term)|male monarch (generic term)|Rex (generic term)
+ptomain|1
+(noun)|ptomaine|amine (generic term)|aminoalkane (generic term)
+ptomaine|2
+(noun)|ptomain|amine (generic term)|aminoalkane (generic term)
+(noun)|ptomaine poisoning|food poisoning (generic term)|gastrointestinal disorder (generic term)
+ptomaine poisoning|1
+(noun)|ptomaine|food poisoning (generic term)|gastrointestinal disorder (generic term)
+ptosis|1
+(noun)|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+ptsd|1
+(noun)|posttraumatic stress disorder|PTSD|anxiety disorder (generic term)
+ptyalin|1
+(noun)|amylase (generic term)
+ptyalise|1
+(verb)|spit|ptyalize|spew|spue|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|spit up (related term)|spit up (related term)
+ptyalism|1
+(noun)|salivation (generic term)
+ptyalith|1
+(noun)|calculus (generic term)|concretion (generic term)
+ptyalize|1
+(verb)|spit|ptyalise|spew|spue|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|spit up (related term)|spit up (related term)
+ptyas|1
+(noun)|Ptyas|genus Ptyas|reptile genus (generic term)
+ptyas mucosus|1
+(noun)|Indian rat snake|Ptyas mucosus|rat snake (generic term)
+ptychozoon|1
+(noun)|Ptychozoon|genus Ptychozoon|reptile genus (generic term)
+ptychozoon homalocephalum|1
+(noun)|flying gecko|fringed gecko|Ptychozoon homalocephalum|gecko (generic term)
+pu|1
+(noun)|plutonium|Pu|atomic number 94|chemical element (generic term)|element (generic term)
+pub|1
+(noun)|public house|saloon|pothouse|gin mill|taphouse|tavern (generic term)|tap house (generic term)
+pub-crawl|1
+(verb)|bar hop|drink (generic term)|booze (generic term)|fuddle (generic term)
+pub crawl|1
+(noun)|tour (generic term)|circuit (generic term)
+pubertal|1
+(adj)|time of life (related term)
+puberty|1
+(noun)|pubescence|time of life (generic term)
+puberulent|1
+(adj)|downy|pubescent|sericeous|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pubes|1
+(noun)|pubic region|loins|area (generic term)|region (generic term)
+pubescence|1
+(noun)|puberty|time of life (generic term)
+pubescent|2
+(adj)|immature (similar term)
+(adj)|downy|puberulent|sericeous|hairy (similar term)|haired (similar term)|hirsute (similar term)
+pubic|1
+(adj)|bone|os (related term)
+pubic bone|1
+(noun)|pubis|os pubis|bone (generic term)|os (generic term)
+pubic hair|1
+(noun)|bush|crotch hair|hair (generic term)
+pubic louse|1
+(noun)|crab louse|crab|Phthirius pubis|louse (generic term)|sucking louse (generic term)
+pubic region|1
+(noun)|pubes|loins|area (generic term)|region (generic term)
+pubis|1
+(noun)|pubic bone|os pubis|bone (generic term)|os (generic term)
+public|4
+(adj)|in the public eye (similar term)|national (similar term)|open (similar term)|semipublic (similar term)|state-supported (similar term)|unexclusive (similar term)|unrestricted (similar term)|exoteric (related term)|overt (related term)|open (related term)|private (antonym)
+(adj)|common (similar term)
+(noun)|populace|world|people (generic term)
+(noun)|body (generic term)
+public-relations campaign|1
+(noun)|advertising campaign (generic term)|ad campaign (generic term)|ad blitz (generic term)
+public-service corporation|1
+(noun)|utility|public utility|public utility company|service (generic term)
+public-spirited|1
+(adj)|unselfish (similar term)
+public address system|1
+(noun)|P.A. system|PA system|P.A.|PA|communication system (generic term)
+public charity|1
+(noun)|charity (generic term)
+public convenience|1
+(noun)|public toilet|comfort station|convenience|public lavatory|restroom|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+public debate|1
+(noun)|debate|disputation|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+public debt|1
+(noun)|debt (generic term)
+public defender|1
+(noun)|lawyer (generic term)|attorney (generic term)
+public discussion|1
+(noun)|ventilation|discussion (generic term)|give-and-take (generic term)|word (generic term)
+public domain|1
+(noun)|property right (generic term)
+public easement|1
+(noun)|easement (generic term)
+public executioner|1
+(noun)|executioner|killer (generic term)|slayer (generic term)
+public exposure|1
+(noun)|dissemination|airing|spreading|transmission (generic term)
+public eye|1
+(noun)|limelight|spotlight|glare|prominence (generic term)
+public figure|1
+(noun)|name|figure|important person (generic term)|influential person (generic term)|personage (generic term)
+public holiday|1
+(noun)|legal holiday|national holiday|holiday (generic term)
+public house|1
+(noun)|pub|saloon|pothouse|gin mill|taphouse|tavern (generic term)|tap house (generic term)
+public housing|1
+(noun)|housing project|housing development (generic term)
+public knowledge|1
+(noun)|general knowledge|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+public lavatory|1
+(noun)|public toilet|comfort station|public convenience|convenience|restroom|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+public law|1
+(noun)|law (generic term)
+public lecture|1
+(noun)|lecture|talk|address (generic term)|speech (generic term)
+public library|1
+(noun)|library (generic term)
+public mover|1
+(noun)|mover|moving company|removal firm|removal company|company (generic term)
+public nudity|1
+(noun)|indecent exposure|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+public nuisance|1
+(noun)|common nuisance|nuisance (generic term)
+public office|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+public opinion|1
+(noun)|popular opinion|opinion|vox populi|belief (generic term)
+public opinion poll|1
+(noun)|poll|opinion poll|canvass|inquiry (generic term)|enquiry (generic term)|research (generic term)
+public presentation|1
+(noun)|performance|show (generic term)
+public press|1
+(noun)|press|print media (generic term)
+public property|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+public prosecutor|1
+(noun)|prosecutor|prosecuting officer|prosecuting attorney|official (generic term)|functionary (generic term)|lawyer (generic term)|attorney (generic term)
+public relations|1
+(noun)|PR|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+public relations man|1
+(noun)|press agent|publicity man|PR man|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+public relations person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+public school|2
+(noun)|school (generic term)
+(noun)|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+public security|1
+(noun)|peace|security (generic term)
+public servant|1
+(noun)|employee (generic term)
+public service|2
+(noun)|community service|service (generic term)
+(noun)|employment (generic term)|work (generic term)
+public speaker|1
+(noun)|orator|speechmaker|rhetorician|speechifier|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+public speaking|1
+(noun)|speechmaking|speaking|oral presentation|address (generic term)|speech (generic term)
+public square|2
+(noun)|square|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|agora|marketplace (generic term)|mart (generic term)
+public toilet|1
+(noun)|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+public transit|1
+(noun)|transportation system (generic term)|transportation (generic term)|transit (generic term)
+public transport|1
+(noun)|conveyance (generic term)|transport (generic term)
+public treasury|1
+(noun)|trough|till|treasury (generic term)|exchequer (generic term)
+public trust|1
+(noun)|charitable trust|trust (generic term)
+public utility|1
+(noun)|utility|public utility company|public-service corporation|service (generic term)
+public utility company|1
+(noun)|utility|public utility|public-service corporation|service (generic term)
+public violence|1
+(noun)|riot|violence (generic term)|force (generic term)
+public works|1
+(noun)|structure (generic term)|construction (generic term)
+publically|1
+(adv)|publicly|in public|privately (antonym)
+publican|1
+(noun)|tavern keeper|bartender (generic term)|barman (generic term)|barkeep (generic term)|barkeeper (generic term)|mixologist (generic term)
+publication|4
+(noun)|work (generic term)|piece of work (generic term)
+(noun)|issue|printing (generic term)
+(noun)|communication (generic term)
+(noun)|publishing|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+publicise|2
+(verb)|advertise|publicize|advertize|announce (generic term)|denote (generic term)
+(verb)|publicize|air|bare|tell (generic term)
+publicised|1
+(adj)|publicized|advertised (similar term)|heralded (similar term)|promulgated (similar term)|published (similar term)|suppressed (antonym)
+publiciser|1
+(noun)|publicist|publicizer|communicator (generic term)
+publicist|1
+(noun)|publicizer|publiciser|communicator (generic term)
+publicity|2
+(noun)|promotion|promotional material|packaging|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|quality (generic term)
+publicity man|1
+(noun)|press agent|public relations man|PR man|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+publicize|2
+(verb)|publicise|air|bare|tell (generic term)
+(verb)|advertise|advertize|publicise|announce (generic term)|denote (generic term)
+publicized|1
+(adj)|publicised|advertised (similar term)|heralded (similar term)|promulgated (similar term)|published (similar term)|suppressed (antonym)
+publicizer|1
+(noun)|publicist|publiciser|communicator (generic term)
+publicizing|1
+(noun)|advertising|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+publicly|2
+(adv)|publically|in public|privately (antonym)
+(adv)|privately (antonym)
+publish|3
+(verb)|print|produce (generic term)|make (generic term)|create (generic term)
+(verb)|bring out|put out|issue|release|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|write|create verbally (generic term)
+publishable|1
+(adj)|unpublishable (antonym)
+published|2
+(adj)|unpublished (antonym)
+(adj)|promulgated|publicized (similar term)|publicised (similar term)
+publisher|3
+(noun)|publishing house|publishing firm|publishing company|firm (generic term)|house (generic term)|business firm (generic term)
+(noun)|professional (generic term)|professional person (generic term)
+(noun)|newspaper publisher|owner (generic term)|proprietor (generic term)
+publishing|1
+(noun)|publication|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+publishing company|1
+(noun)|publisher|publishing house|publishing firm|firm (generic term)|house (generic term)|business firm (generic term)
+publishing conglomerate|1
+(noun)|publishing empire|conglomerate (generic term)|empire (generic term)
+publishing empire|1
+(noun)|publishing conglomerate|conglomerate (generic term)|empire (generic term)
+publishing firm|1
+(noun)|publisher|publishing house|publishing company|firm (generic term)|house (generic term)|business firm (generic term)
+publishing house|1
+(noun)|publisher|publishing firm|publishing company|firm (generic term)|house (generic term)|business firm (generic term)
+publius aelius hadrianus|1
+(noun)|Hadrian|Publius Aelius Hadrianus|Adrian|Roman Emperor (generic term)|Emperor of Rome (generic term)
+publius cornelius scipio|1
+(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general (generic term)|full general (generic term)
+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 (generic term)|full general (generic term)
+publius cornelius tacitus|1
+(noun)|Tacitus|Publius Cornelius Tacitus|Gaius Cornelius Tacitus|historian (generic term)|historiographer (generic term)
+publius ovidius naso|1
+(noun)|Ovid|Publius Ovidius Naso|poet (generic term)
+publius terentius afer|1
+(noun)|Terence|Publius Terentius Afer|dramatist (generic term)|playwright (generic term)
+publius vergilius maro|1
+(noun)|Virgil|Vergil|Publius Vergilius Maro|poet (generic term)
+pubococcygeus exercises|1
+(noun)|Kegel exercises|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+puccini|1
+(noun)|Puccini|Giacomo Puccini|composer (generic term)
+puccinia|1
+(noun)|Puccinia|genus Puccinia|fungus genus (generic term)
+puccinia graminis|1
+(noun)|wheat rust|Puccinia graminis|rust (generic term)|rust fungus (generic term)
+pucciniaceae|1
+(noun)|Pucciniaceae|family Pucciniaceae|fungus family (generic term)
+puccoon|2
+(noun)|Lithospermum caroliniense|herb (generic term)|herbaceous plant (generic term)
+(noun)|bloodroot|redroot|tetterwort|Sanguinaria canadensis|herb (generic term)|herbaceous plant (generic term)
+puce|1
+(noun)|brown (generic term)|brownness (generic term)
+puck|2
+(noun)|Puck|Robin Goodfellow|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+(noun)|hockey puck|disk (generic term)|disc (generic term)
+pucka|1
+(adj)|pukka|superior (similar term)
+pucker|4
+(noun)|ruck|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(verb)|rumple|cockle|crumple|knit|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+(verb)|gather|tuck|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+(verb)|ruck|ruck up|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+puckerbush|1
+(noun)|bay myrtle|Myrica cerifera|wax myrtle (generic term)
+puckish|1
+(adj)|impish|implike|mischievous|pixilated|prankish|wicked|playful (similar term)
+puckishly|1
+(adv)|impishly
+puckishness|1
+(noun)|impishness|mischievousness|whimsicality|playfulness (generic term)|fun (generic term)
+pud|1
+(noun)|pudding|course (generic term)
+pudden-head|1
+(noun)|stupid|stupid person|stupe|dullard|dolt|pudding head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+pudding|3
+(noun)|dish (generic term)
+(noun)|pud|course (generic term)
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+pudding-face|1
+(noun)|pudding face|countenance (generic term)|physiognomy (generic term)|phiz (generic term)|visage (generic term)|kisser (generic term)|smiler (generic term)|mug (generic term)
+pudding-wife|1
+(noun)|puddingwife|Halicoeres radiatus|wrasse (generic term)
+pudding berry|1
+(noun)|bunchberry|dwarf cornel|crackerberry|Cornus canadensis|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+pudding face|1
+(noun)|pudding-face|countenance (generic term)|physiognomy (generic term)|phiz (generic term)|visage (generic term)|kisser (generic term)|smiler (generic term)|mug (generic term)
+pudding head|1
+(noun)|stupid|stupid person|stupe|dullard|dolt|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+pudding pipe tree|1
+(noun)|golden shower tree|drumstick tree|purging cassia|canafistola|canafistula|Cassia fistula|cassia (generic term)
+pudding stone|1
+(noun)|conglomerate|rock (generic term)|stone (generic term)
+puddingheaded|1
+(adj)|addlebrained|addlepated|potty|muddleheaded|confused (similar term)
+puddingwife|1
+(noun)|pudding-wife|Halicoeres radiatus|wrasse (generic term)
+puddle|12
+(noun)|covering material (generic term)
+(noun)|pool|body of water (generic term)|water (generic term)
+(noun)|pool|topographic point (generic term)|place (generic term)|spot (generic term)
+(verb)|wade (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|plant (generic term)|set (generic term)
+(verb)|pack (generic term)|bundle (generic term)|wad (generic term)|compact (generic term)
+(verb)|putter (generic term)|mess around (generic term)|potter (generic term)|tinker (generic term)|monkey (generic term)|monkey around (generic term)|muck about (generic term)|muck around (generic term)
+(verb)|muddle|roil (generic term)|rile (generic term)
+(verb)|spatter (generic term)|splatter (generic term)|plash (generic term)|splash (generic term)|splosh (generic term)|swash (generic term)
+(verb)|addle|muddle|jumble (generic term)|confuse (generic term)|mix up (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+puddler|1
+(noun)|ironworker (generic term)
+pudendal|1
+(adj)|genitalia|genital organ|genitals|private parts|privates|crotch (related term)
+pudendal artery|1
+(noun)|arteria pudenda|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+pudendal block|1
+(noun)|regional anesthesia (generic term)|regional anaesthesia (generic term)
+pudendal cleavage|1
+(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal slit|vulvar slit|rima (generic term)
+pudendal cleft|1
+(noun)|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima (generic term)
+pudendal slit|1
+(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|vulvar slit|rima (generic term)
+pudendal vein|1
+(noun)|venae pudendum|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pudendum|1
+(noun)|genitalia (generic term)|genital organ (generic term)|genitals (generic term)|private parts (generic term)|privates (generic term)|crotch (generic term)
+pudge|1
+(noun)|endomorph (generic term)
+pudginess|1
+(noun)|chubbiness|tubbiness|rolypoliness|plumpness (generic term)|embonpoint (generic term)|roundness (generic term)
+pudgy|1
+(adj)|dumpy|podgy|tubby|roly-poly|fat (similar term)
+puebla|1
+(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city (generic term)|metropolis (generic term)|urban center (generic term)
+puebla de zaragoza|1
+(noun)|Puebla|Puebla de Zaragoza|Heroica Puebla de Zaragoza|city (generic term)|metropolis (generic term)|urban center (generic term)
+pueblo|3
+(noun)|Pueblo|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Pueblo|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|village (generic term)|hamlet (generic term)
+pueraria|1
+(noun)|Pueraria|genus Pueraria|rosid dicot genus (generic term)
+pueraria lobata|1
+(noun)|kudzu|kudzu vine|Pueraria lobata|vine (generic term)
+puerile|2
+(adj)|offspring|progeny|issue (related term)
+(adj)|adolescent|jejune|juvenile|immature (similar term)
+puerility|2
+(noun)|childhood|immaturity (generic term)|immatureness (generic term)
+(noun)|childishness|youngness (generic term)
+puerpera|1
+(noun)|mother (generic term)|female parent (generic term)
+puerperal|1
+(adj)|parturition|birth|giving birth|birthing (related term)|time period|period of time|period (related term)|mother|female parent (related term)
+puerperal fever|1
+(noun)|childbed fever|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+puerperium|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+puerto rican|1
+(noun)|Puerto Rican|American (generic term)
+puerto rico|2
+(noun)|Puerto Rico|Porto Rico|Commonwealth of Puerto Rico|PR|commonwealth (generic term)
+(noun)|Puerto Rico|Porto Rico|island (generic term)
+puff|17
+(adj)|puffed|fancy (similar term)
+(noun)|puff of air|whiff|gust (generic term)|blast (generic term)|blow (generic term)
+(noun)|pastry (generic term)
+(noun)|recommendation (generic term)|testimonial (generic term)|good word (generic term)
+(noun)|quilt|comforter|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|powderpuff|pad (generic term)
+(noun)|ottoman|pouf|pouffe|hassock|seat (generic term)
+(noun)|drag|pull|inhalation (generic term)|inspiration (generic term)|aspiration (generic term)|breathing in (generic term)
+(noun)|blow|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+(verb)|whiff|smoke (generic term)
+(verb)|drag|draw|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|pant|gasp|heave|blow (generic term)
+(verb)|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+(verb)|puff up|praise (generic term)
+(verb)|boast (generic term)|tout (generic term)|swash (generic term)|shoot a line (generic term)|brag (generic term)|gas (generic term)|blow (generic term)|bluster (generic term)|vaunt (generic term)|gasconade (generic term)
+(verb)|puff up|blow up|puff out|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+(verb)|huff|chuff|blow (generic term)
+puff adder|2
+(noun)|Bitis arietans|viper (generic term)
+(noun)|hognose snake|sand viper|colubrid snake (generic term)|colubrid (generic term)
+puff batter|1
+(noun)|pouf paste|pate a choux|batter (generic term)
+puff of air|1
+(noun)|puff|whiff|gust (generic term)|blast (generic term)|blow (generic term)
+puff out|1
+(verb)|puff|puff up|blow up|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+puff paste|1
+(noun)|pate feuillete|pastry (generic term)|pastry dough (generic term)
+puff up|4
+(verb)|inflate (generic term)|blow up (generic term)|expand (generic term)|amplify (generic term)
+(verb)|puff|blow up|puff out|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+(verb)|swell|act (generic term)|behave (generic term)|do (generic term)
+(verb)|puff|praise (generic term)
+puffball|2
+(noun)|true puffball|fungus (generic term)
+(noun)|earthball|false truffle|hard-skinned puffball|fungus (generic term)
+puffbird|1
+(noun)|piciform bird (generic term)
+puffed|2
+(adj)|bloated|distended|puffy|swollen|intumescent|tumescent|tumid|turgid|unhealthy (similar term)
+(adj)|puff|fancy (similar term)
+puffed rice|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+puffed wheat|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+puffer|2
+(noun)|blowfish|sea squab|pufferfish|saltwater fish (generic term)
+(noun)|pufferfish|blowfish|globefish|plectognath (generic term)|plectognath fish (generic term)
+pufferfish|2
+(noun)|blowfish|sea squab|puffer|saltwater fish (generic term)
+(noun)|puffer|blowfish|globefish|plectognath (generic term)|plectognath fish (generic term)
+puffery|1
+(noun)|flattery (generic term)
+puffin|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+puffiness|2
+(noun)|swelling|lump|enlargement (generic term)|symptom (generic term)
+(noun)|ostentation|ostentatiousness|pomposity|pompousness|pretentiousness|splashiness|inflation|inelegance (generic term)
+puffing|2
+(noun)|smoke (generic term)|smoking (generic term)
+(noun)|huffing|snorting|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+puffinus|1
+(noun)|Puffinus|genus Puffinus|bird genus (generic term)
+puffinus puffinus|1
+(noun)|Manx shearwater|Puffinus puffinus|shearwater (generic term)
+puffy|3
+(adj)|bouffant|large (similar term)|big (similar term)
+(adj)|bloated|distended|puffed|swollen|intumescent|tumescent|tumid|turgid|unhealthy (similar term)
+(adj)|gusty|stormy (similar term)
+pug|1
+(noun)|pug-dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+pug-dog|1
+(noun)|pug|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+pug-faced|1
+(adj)|faced (similar term)
+pug-nose|1
+(adj)|pug-nosed|short-nosed|snub-nosed|nosed (similar term)
+pug-nosed|1
+(adj)|pug-nose|short-nosed|snub-nosed|nosed (similar term)
+pug nose|1
+(noun)|nose (generic term)|olfactory organ (generic term)
+puget sound|1
+(noun)|Puget Sound|sound (generic term)
+pugilism|1
+(noun)|boxing|fisticuffs|contact sport (generic term)
+pugilist|1
+(noun)|boxer|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+pugilistic|1
+(adj)|contact sport (related term)|combatant|battler|belligerent|fighter|scrapper (related term)
+pugin|1
+(noun)|Pugin|Augustus Welby Northmore Pugin|architect (generic term)|designer (generic term)
+puglia|1
+(noun)|Puglia|Apulia|Italian region (generic term)
+pugnacious|2
+(adj)|hard-bitten|hard-boiled|tough (similar term)
+(adj)|rough|aggressive (similar term)
+pugnacity|1
+(noun)|aggressiveness|belligerence|disagreeableness (generic term)
+puissance|1
+(noun)|power (generic term)|powerfulness (generic term)
+puissant|1
+(adj)|powerful (similar term)
+pujunan|1
+(noun)|Pujunan|Maidu|Penutian (generic term)
+puka|2
+(noun)|Griselinia lucida|shrub (generic term)|bush (generic term)
+(noun)|Meryta sinclairii|tree (generic term)
+puka inti|1
+(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+puke|3
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|vomit|vomitus|barf|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+puking|1
+(noun)|vomit|vomiting|emesis|regurgitation|disgorgement|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+pukka|1
+(adj)|pucka|superior (similar term)
+puku|1
+(noun)|Adenota vardoni|antelope (generic term)
+pul|1
+(noun)|Afghan monetary unit (generic term)
+pula|1
+(noun)|Botswana monetary unit (generic term)
+pulasan|2
+(noun)|pulassan|pulasan tree|Nephelium mutabile|fruit tree (generic term)
+(noun)|pulassan|edible fruit (generic term)
+pulasan tree|1
+(noun)|pulasan|pulassan|Nephelium mutabile|fruit tree (generic term)
+pulassan|2
+(noun)|pulasan|pulasan tree|Nephelium mutabile|fruit tree (generic term)
+(noun)|pulasan|edible fruit (generic term)
+pulchritude|1
+(noun)|beauty (generic term)
+pulchritudinous|1
+(adj)|beautiful (similar term)
+pule|1
+(verb)|wail|whimper|mewl|cry (generic term)|weep (generic term)
+pulex|1
+(noun)|Pulex|genus Pulex|arthropod genus (generic term)
+pulex irritans|1
+(noun)|Pulex irritans|flea (generic term)
+pulicaria|1
+(noun)|Pulicaria|genus Pulicaria|asterid dicot genus (generic term)
+pulicaria dysenterica|1
+(noun)|fleabane|feabane mullet|Pulicaria dysenterica|herb (generic term)|herbaceous plant (generic term)
+pulicidae|1
+(noun)|Pulicidae|family Pulicidae|arthropod family (generic term)
+pulitzer|1
+(noun)|Pulitzer|Joseph Pulitzer|publisher (generic term)|newspaper publisher (generic term)
+pull|23
+(noun)|pulling|propulsion (generic term)|actuation (generic term)
+(noun)|force (generic term)
+(noun)|clout|advantage (generic term)|vantage (generic term)
+(noun)|device (generic term)
+(noun)|wrench|twist|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|puff|drag|inhalation (generic term)|inspiration (generic term)|aspiration (generic term)|breathing in (generic term)
+(noun)|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(verb)|draw|force|move (generic term)|displace (generic term)|pull down (related term)|pull off (related term)|pull up (related term)|pull out (related term)|pull along (related term)|pull in (related term)|pull back (related term)|push (antonym)
+(verb)|attract|pull in|draw|draw in|pull (generic term)|draw (generic term)|force (generic term)|repel (antonym)
+(verb)|force (generic term)
+(verb)|perpetrate|commit|act (generic term)|move (generic term)
+(verb)|draw|pull out|get out|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|drive (generic term)
+(verb)|overstretch|injure (generic term)|wound (generic term)
+(verb)|draw|move (generic term)|displace (generic term)
+(verb)|row (generic term)
+(verb)|rein (generic term)|rein in (generic term)
+(verb)|rend|rip|rive|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+(verb)|hit (generic term)
+(verb)|pluck|tear|deplume|deplumate|displume|strip (generic term)
+(verb)|extract|pull out|pull up|take out|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|side|root|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+pull-in|1
+(noun)|pull-up|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+pull-off|1
+(noun)|layby|lay-by|rest area|rest stop|area (generic term)
+pull-through|1
+(noun)|cleaning implement (generic term)
+pull-up|2
+(noun)|pull-in|cafe (generic term)|coffeehouse (generic term)|coffee shop (generic term)|coffee bar (generic term)
+(noun)|chin-up|arm exercise (generic term)
+pull a face|1
+(verb)|grimace|make a face|communicate (generic term)|intercommunicate (generic term)
+pull a fast one on|1
+(verb)|flim-flam|trick|fob|fox|play a trick on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+pull ahead|1
+(verb)|gain|advance|win|make headway|get ahead|gain ground|fall back (antonym)
+pull along|1
+(verb)|shlep|schlep|drag (generic term)
+pull at|1
+(verb)|pick at|pluck at|pull (generic term)
+pull away|1
+(verb)|withdraw|retreat|draw back|recede|pull back|retire|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+pull back|5
+(verb)|withdraw|retreat|pull away|draw back|recede|retire|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retract|draw back|pull (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|draw|stretch (generic term)
+(verb)|retreat|back out|back away|crawfish|crawfish out|pull in one's horns|withdraw
+pull chain|1
+(noun)|chain (generic term)|pull (generic term)
+pull down|2
+(verb)|level|raze|rase|dismantle|tear down|take down|destroy (generic term)|destruct (generic term)|raise (antonym)
+(verb)|down|knock down|cut down|push down|strike (generic term)
+pull in|4
+(verb)|attract|pull|draw|draw in|pull (generic term)|draw (generic term)|force (generic term)|repel (antonym)
+(verb)|gain|take in|clear|make|earn|realize|realise|bring in|get (generic term)|acquire (generic term)
+(verb)|get in|move in|draw in|arrive (generic term)|get (generic term)|come (generic term)|pull out (antonym)
+(verb)|collect|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+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 (generic term)|draw (generic term)|force (generic term)
+(verb)|remove (generic term)
+(verb)|negociate|bring off|carry off|manage|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)|fail (antonym)
+(verb)|draw off|draw away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+pull one's weight|1
+(verb)|work (generic term)
+pull out|4
+(verb)|get out|leave (generic term)|go forth (generic term)|go away (generic term)|pull in (antonym)
+(verb)|draw|pull|get out|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|extract|pull|pull up|take out|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|chicken out|back off|back down|bow out|retire (generic term)|withdraw (generic term)
+pull out all the stops|1
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+pull over|1
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+pull round|1
+(verb)|survive|pull through|come through|make it|get the better of (generic term)|overcome (generic term)|defeat (generic term)|succumb (antonym)
+pull someone's leg|1
+(verb)|hoax|play a joke on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+pull strings|1
+(verb)|manipulate|pull wires|influence (generic term)|act upon (generic term)|work (generic term)
+pull the leg of|1
+(verb)|kid|gull (generic term)|dupe (generic term)|slang (generic term)|befool (generic term)|cod (generic term)|fool (generic term)|put on (generic term)|take in (generic term)|put one over (generic term)|put one across (generic term)
+pull the plug|1
+(verb)|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+pull the wool over someone's eyes|1
+(verb)|bamboozle|snow|hoodwink|lead by the nose|play false|deceive (generic term)|betray (generic term)|lead astray (generic term)
+pull through|2
+(verb)|survive|pull round|come through|make it|get the better of (generic term)|overcome (generic term)|defeat (generic term)|succumb (antonym)
+(verb)|save|carry through|bring through
+pull together|1
+(verb)|gather|garner|collect|gather up (related term)|spread (antonym)
+pull up|4
+(verb)|draw up|haul up|stop (generic term)|halt (generic term)
+(verb)|draw up|straighten up|straighten (generic term)
+(verb)|draw up|stop (generic term)
+(verb)|extract|pull out|pull|take out|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+pull up short|1
+(verb)|stop (generic term)|halt (generic term)
+pull up stakes|1
+(verb)|leave|depart|change (generic term)
+pull wires|1
+(verb)|manipulate|pull strings|influence (generic term)|act upon (generic term)|work (generic term)
+pullback|2
+(noun)|tieback|holding device (generic term)
+(noun)|withdrawal (generic term)
+puller|2
+(noun)|mover (generic term)
+(noun)|tugger|dragger|worker (generic term)
+pullet|2
+(noun)|fryer|frier|chicken (generic term)|poulet (generic term)|volaille (generic term)
+(noun)|hen (generic term)|biddy (generic term)
+pulley|1
+(noun)|pulley-block|block|machine (generic term)|simple machine (generic term)
+pulley-block|1
+(noun)|pulley|block|machine (generic term)|simple machine (generic term)
+pulling|1
+(noun)|pull|propulsion (generic term)|actuation (generic term)
+pulling out|1
+(noun)|coitus interruptus|withdrawal method|onanism|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+pullman|1
+(noun)|Pullman|Pullman car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+pullman car|1
+(noun)|Pullman|Pullman car|passenger car (generic term)|coach (generic term)|carriage (generic term)
+pullman porter|1
+(noun)|porter|Pullman porter|employee (generic term)
+pullorum disease|1
+(noun)|bacillary white diarrhea|bacillary white diarrhoea|animal disease (generic term)
+pullout|1
+(noun)|disengagement|fallback|retreat (generic term)
+pullover|1
+(noun)|slipover|sweater (generic term)
+pullulate|5
+(verb)|teem|swarm|hum (generic term)|buzz (generic term)|seethe (generic term)|teem in (related term)
+(verb)|pour|swarm|stream|teem|crowd (generic term)|crowd together (generic term)
+(verb)|shoot|spud|germinate|bourgeon|burgeon forth|sprout|grow (generic term)
+(verb)|increase (generic term)
+(verb)|breed (generic term)|multiply (generic term)
+pullulate with|1
+(verb)|abound in|teem in|occur (generic term)
+pullulation|2
+(noun)|gemmation|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+pulmonary|1
+(adj)|pneumonic|pulmonic|respiratory organ (related term)
+pulmonary anthrax|1
+(noun)|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax (generic term)
+pulmonary artery|1
+(noun)|arteria pulmonalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+pulmonary circulation|1
+(noun)|circulation (generic term)
+pulmonary congestion|1
+(noun)|congestion (generic term)
+pulmonary embolism|1
+(noun)|embolism (generic term)
+pulmonary emphysema|1
+(noun)|emphysema|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+pulmonary plexis|1
+(noun)|plexus pulmonalis|nerve plexus (generic term)
+pulmonary reserve|1
+(noun)|reserve (generic term)
+pulmonary stenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)
+pulmonary trunk|1
+(noun)|truncus pulmonalis|pulmonary artery (generic term)|arteria pulmonalis (generic term)
+pulmonary tuberculosis|1
+(noun)|consumption|phthisis|wasting disease|white plague|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+pulmonary valve|1
+(noun)|semilunar valve (generic term)
+pulmonary vein|1
+(noun)|vena pulmonalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+pulmonata|1
+(noun)|Pulmonata|order Pulmonata|animal order (generic term)
+pulmonic|1
+(adj)|pneumonic|pulmonary|respiratory organ (related term)
+pulmonic plague|1
+(noun)|pneumonic plague|plague pneumonia|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+pulp|7
+(noun)|mush|mass (generic term)
+(noun)|flesh|plant tissue (generic term)
+(noun)|cellulose (generic term)
+(noun)|pulp magazine|magazine (generic term)|mag (generic term)
+(noun)|vascular structure (generic term)
+(verb)|take out (generic term)
+(verb)|grind (generic term)|mash (generic term)|crunch (generic term)|bray (generic term)|comminute (generic term)
+pulp cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+pulp magazine|1
+(noun)|pulp|magazine (generic term)|mag (generic term)
+pulpiness|1
+(noun)|mushiness|softness (generic term)
+pulpit|1
+(noun)|dais|podium|rostrum|ambo|stump|soapbox|platform (generic term)
+pulpwood|1
+(noun)|softwood (generic term)|deal (generic term)
+pulpy|1
+(adj)|squasy|nonwoody (similar term)
+pulque|1
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+pulsar|1
+(noun)|neutron star (generic term)
+pulsate|3
+(verb)|throb|pulse|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|beat|quiver|move (generic term)
+(verb)|pulse|produce (generic term)|make (generic term)|create (generic term)
+pulsatilla|1
+(noun)|Pulsatilla|genus Pulsatilla|magnoliid dicot genus (generic term)
+pulsatilla occidentalis|1
+(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower (generic term)|pasque flower (generic term)
+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 (generic term)|pasque flower (generic term)
+pulsatilla vulgaris|1
+(noun)|European pasqueflower|Pulsatilla vulgaris|Anemone pulsatilla|pasqueflower (generic term)|pasque flower (generic term)
+pulsating|1
+(adj)|beating|pulsing|rhythmical (similar term)|rhythmic (similar term)
+pulsation|3
+(noun)|pulsing|pulse|impulse|wave (generic term)|undulation (generic term)
+(noun)|phenomenon (generic term)
+(noun)|pulse|heartbeat|beat|periodic event (generic term)|recurrent event (generic term)
+pulse|7
+(noun)|pulsation|pulsing|impulse|wave (generic term)|undulation (generic term)
+(noun)|pulsation|heartbeat|beat|periodic event (generic term)|recurrent event (generic term)
+(noun)|pulse rate|heart rate|vital sign (generic term)|rate (generic term)
+(noun)|legume (generic term)
+(verb)|pulsate|throb|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|pulsate|produce (generic term)|make (generic term)|create (generic term)
+(verb)|move (generic term)|displace (generic term)
+pulse-time modulation|1
+(noun)|pulse modulation (generic term)
+pulse counter|1
+(noun)|counter (generic term)|tabulator (generic term)
+pulse generator|1
+(noun)|generator (generic term)
+pulse height analyzer|1
+(noun)|kicksorter|scientific instrument (generic term)
+pulse modulation|1
+(noun)|modulation (generic term)
+pulse rate|1
+(noun)|pulse|heart rate|vital sign (generic term)|rate (generic term)
+pulse timing circuit|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+pulsed|1
+(adj)|periodic (similar term)|periodical (similar term)
+pulseless|1
+(adj)|breathless|inanimate|dead (similar term)
+pulseless disease|1
+(noun)|Takayasu's arteritis|arteritis (generic term)
+pulsing|2
+(adj)|beating|pulsating|rhythmical (similar term)|rhythmic (similar term)
+(noun)|pulsation|pulse|impulse|wave (generic term)|undulation (generic term)
+pulverisation|3
+(noun)|powder|pulverization|solid (generic term)
+(noun)|grind|mill|pulverization|crush (generic term)|crunch (generic term)|compaction (generic term)
+(noun)|pulverization|annihilation (generic term)|obliteration (generic term)
+pulverise|3
+(verb)|demolish|pulverize|destroy (generic term)|destruct (generic term)
+(verb)|powderize|pulverize|powderise|disintegrate (generic term)
+(verb)|powderize|powderise|powder|pulverize|disintegrate (generic term)
+pulverised|1
+(adj)|powdered|powdery|pulverized|small-grained|fine-grained|fine (similar term)
+pulverization|3
+(noun)|powder|pulverisation|solid (generic term)
+(noun)|grind|mill|pulverisation|crush (generic term)|crunch (generic term)|compaction (generic term)
+(noun)|pulverisation|annihilation (generic term)|obliteration (generic term)
+pulverize|3
+(verb)|powderize|powderise|powder|pulverise|disintegrate (generic term)
+(verb)|demolish|pulverise|destroy (generic term)|destruct (generic term)
+(verb)|powderize|pulverise|powderise|disintegrate (generic term)
+pulverized|1
+(adj)|powdered|powdery|pulverised|small-grained|fine-grained|fine (similar term)
+puma|1
+(noun)|cougar|catamount|mountain lion|painter|panther|Felis concolor|wildcat (generic term)
+pumice|2
+(noun)|pumice stone|rock (generic term)|stone (generic term)
+(verb)|rub (generic term)
+pumice stone|1
+(noun)|pumice|rock (generic term)|stone (generic term)
+pummel|1
+(verb)|pommel|biff|hit (generic term)
+pummelo|1
+(noun)|pomelo|pomelo tree|shaddock|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+pump|11
+(noun)|mechanical device (generic term)
+(noun)|heart|ticker|internal organ (generic term)|viscus (generic term)
+(noun)|shoe (generic term)
+(verb)|wield (generic term)|handle (generic term)
+(verb)|shoot (generic term)
+(verb)|draw (generic term)|take out (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|spurt (generic term)|spirt (generic term)|gush (generic term)|spout (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|question (generic term)|query (generic term)
+pump-and-dump scheme|1
+(noun)|contrivance (generic term)|stratagem (generic term)|dodge (generic term)
+pump-type pliers|1
+(noun)|pliers (generic term)|pair of pliers (generic term)|plyers (generic term)
+pump action|1
+(noun)|slide action|action (generic term)|action mechanism (generic term)
+pump house|1
+(noun)|pumping station|house (generic term)
+pump priming|2
+(noun)|deficit spending|compensatory spending|spending (generic term)|disbursement (generic term)|disbursal (generic term)|outlay (generic term)
+(noun)|care (generic term)|maintenance (generic term)|upkeep (generic term)
+pump room|1
+(noun)|pump house (generic term)|pumping station (generic term)
+pump well|1
+(noun)|well (generic term)
+pumped|1
+(adj)|pumped-up|pumped up|wired|tense (similar term)
+pumped-up|1
+(adj)|pumped up|pumped|wired|tense (similar term)
+pumped up|1
+(adj)|pumped-up|pumped|wired|tense (similar term)
+pumpernickel|1
+(noun)|black bread|rye bread (generic term)
+pumping station|1
+(noun)|pump house|house (generic term)
+pumpkin|2
+(noun)|pumpkin vine|autumn pumpkin|Cucurbita pepo|squash (generic term)|squash vine (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+pumpkin-shaped|1
+(adj)|oblate|rounded (related term)|prolate (antonym)
+pumpkin ash|1
+(noun)|Fraxinus tomentosa|ash (generic term)|ash tree (generic term)
+pumpkin pie|1
+(noun)|pie (generic term)
+pumpkin seed|1
+(noun)|edible seed (generic term)
+pumpkin vine|1
+(noun)|pumpkin|autumn pumpkin|Cucurbita pepo|squash (generic term)|squash vine (generic term)
+pumpkinseed|1
+(noun)|Lepomis gibbosus|sunfish (generic term)|centrarchid (generic term)
+pun|2
+(noun)|punning|wordplay|paronomasia|fun (generic term)|play (generic term)|sport (generic term)
+(verb)|joke (generic term)|jest (generic term)
+punch|6
+(noun)|clout|poke|lick|biff|blow (generic term)
+(noun)|mixed drink (generic term)
+(noun)|puncher|tool (generic term)
+(verb)|plug|hit (generic term)
+(verb)|thrust (generic term)
+(verb)|perforate|pierce (generic term)
+punch-drunk|1
+(adj)|silly|slaphappy|confused (similar term)
+punch-up|1
+(noun)|fistfight (generic term)|fisticuffs (generic term)|slugfest (generic term)
+punch bag|1
+(noun)|punching bag|punching ball|punchball|ball (generic term)
+punch bowl|1
+(noun)|bowl (generic term)
+punch card|1
+(noun)|punched card|Hollerith card|card (generic term)
+punch in|1
+(verb)|clock in|clock on|record (generic term)|enter (generic term)|put down (generic term)|punch out (antonym)|clock out (antonym)
+punch line|1
+(noun)|laugh line|gag line|tag line|line (generic term)
+punch out|1
+(verb)|clock out|clock off|report (generic term)|punch in (antonym)|clock in (antonym)
+punch pliers|1
+(noun)|punch (generic term)|puncher (generic term)
+punch press|1
+(noun)|press (generic term)|mechanical press (generic term)
+punchayet|1
+(noun)|panchayat|panchayet|council (generic term)
+punchball|1
+(noun)|punching bag|punch bag|punching ball|ball (generic term)
+punchboard|1
+(noun)|board (generic term)|gameboard (generic term)
+punched card|1
+(noun)|punch card|Hollerith card|card (generic term)
+puncher|3
+(noun)|cowboy|cowpuncher|cowman|cattleman|cowpoke|cowhand|cowherd|ranch hand (generic term)
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|punch|tool (generic term)
+punching bag|2
+(noun)|victim (generic term)
+(noun)|punch bag|punching ball|punchball|ball (generic term)
+punching ball|1
+(noun)|punching bag|punch bag|punchball|ball (generic term)
+punctilio|2
+(noun)|etiquette (generic term)
+(noun)|honoring (generic term)|observance (generic term)
+punctilious|1
+(adj)|meticulous|precise (similar term)
+punctiliousness|1
+(noun)|meticulousness|meticulosity|scrupulousness|conscientiousness (generic term)|painstakingness (generic term)
+punctual|1
+(adj)|on time (similar term)|prompt (similar term)|timely (similar term)|unpunctual (antonym)
+punctuality|1
+(noun)|promptness|timing (generic term)|tardiness (antonym)
+punctually|1
+(adv)|duly
+punctuate|3
+(verb)|mark|add (generic term)
+(verb)|stress|emphasize|emphasise|accent|accentuate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+punctuated equilibrium|1
+(noun)|theory of punctuated equilibrium|theory of evolution (generic term)|theory of organic evolution (generic term)|evolutionism (generic term)
+punctuation|3
+(noun)|interruption (generic term)|break (generic term)
+(noun)|punctuation mark|mark (generic term)
+(noun)|grouping (generic term)
+punctuation mark|1
+(noun)|punctuation|mark (generic term)
+punctum|1
+(noun)|point (generic term)
+puncturable|1
+(adj)|punctureless (antonym)
+puncture|8
+(noun)|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(noun)|hole (generic term)
+(noun)|activity (generic term)
+(verb)|pierce (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|deflate|deprecate (generic term)|depreciate (generic term)|vilipend (generic term)
+(verb)|depressurize (generic term)|depressurise (generic term)|decompress (generic term)
+(verb)|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+punctured|1
+(adj)|pierced|perforated|perforate|cut (similar term)
+punctureless|1
+(adj)|self-sealing (similar term)|puncturable (antonym)
+pundit|1
+(noun)|initiate|learned person|savant|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+pung|1
+(noun)|sled (generic term)|sledge (generic term)|sleigh (generic term)
+pungapung|1
+(noun)|telingo potato|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum (generic term)|aroid (generic term)
+pungency|2
+(noun)|bite|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|bite|sharpness|raciness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+pungent|2
+(adj)|acrid|tasty (similar term)
+(adj)|barbed|biting|nipping|mordacious|sarcastic (similar term)
+punic|3
+(adj)|Carthaginian|Punic|city state|city-state (related term)
+(adj)|perfidious|treacherous|unfaithful (similar term)
+(noun)|Punic|Phoenician (generic term)
+punic war|1
+(noun)|Punic War|war (generic term)|warfare (generic term)
+punica|1
+(noun)|Punica|genus Punica|dicot genus (generic term)|magnoliopsid genus (generic term)
+punica granatum|1
+(noun)|pomegranate|pomegranate tree|Punica granatum|fruit tree (generic term)
+punicaceae|1
+(noun)|Punicaceae|family Punicaceae|dicot family (generic term)|magnoliopsid family (generic term)
+puniness|2
+(noun)|pettiness|triviality|slightness|unimportance (generic term)
+(noun)|runtiness|stuntedness|smallness (generic term)|littleness (generic term)
+punish|1
+(verb)|penalize|penalise
+punishable|2
+(adj)|guilty (similar term)
+(adj)|penal|illegal (similar term)
+punished|1
+(adj)|admonished (similar term)|chastened (similar term)|rebuked (similar term)|reprimanded (similar term)|reproved (similar term)|censured (similar term)|chastised (similar term)|corrected (similar term)|disciplined (similar term)|fined (similar term)|penalized (similar term)|penalised (similar term)|tarred-and-feathered (similar term)|tortured (similar term)|unpunished (antonym)
+punishing|1
+(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|operose|toilsome|effortful (similar term)
+punishment|1
+(noun)|penalty|penalization|penalisation|social control (generic term)
+punitive|1
+(adj)|punitory|correctional (similar term)|penal (similar term)|penitentiary (similar term)|retaliatory (similar term)|relatiative (similar term)|retributive (similar term)|retributory (similar term)|vindicatory (similar term)|rehabilitative (antonym)
+punitive damages|1
+(noun)|exemplary damages|smart money|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+punitively|1
+(adv)|punitorily|penally
+punitorily|1
+(adv)|punitively|penally
+punitory|1
+(adj)|punitive|correctional (similar term)|penal (similar term)|penitentiary (similar term)|retaliatory (similar term)|relatiative (similar term)|retributive (similar term)|retributory (similar term)|vindicatory (similar term)|rehabilitative (antonym)
+punjab|1
+(noun)|Punjab|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+punjabi|2
+(noun)|Punjabi|Panjabi|Indian (generic term)
+(noun)|Punjabi|Panjabi|Sanskrit (generic term)|Sanskritic language (generic term)
+punk|6
+(adj)|bum|cheap|cheesy|chintzy|crummy|sleazy|tinny|inferior (similar term)
+(noun)|hood|hoodlum|goon|thug|tough|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+(noun)|kindling|tinder|touchwood|spunk|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+(noun)|punk rocker|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+(noun)|punk rock|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+punk rock|1
+(noun)|punk|rock 'n' roll (generic term)|rock'n'roll (generic term)|rock-and-roll (generic term)|rock and roll (generic term)|rock (generic term)|rock music (generic term)
+punk rocker|1
+(noun)|punk|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+punkah|1
+(noun)|fan (generic term)
+punkey|1
+(noun)|punkie|punky|no-see-um|biting midge|gnat (generic term)
+punkie|1
+(noun)|punky|punkey|no-see-um|biting midge|gnat (generic term)
+punks|1
+(noun)|youth subculture (generic term)
+punky|1
+(noun)|punkie|punkey|no-see-um|biting midge|gnat (generic term)
+punnet|1
+(noun)|basket (generic term)|handbasket (generic term)
+punning|1
+(noun)|pun|wordplay|paronomasia|fun (generic term)|play (generic term)|sport (generic term)
+punster|1
+(noun)|humorist (generic term)|humourist (generic term)
+punt|6
+(noun)|Irish pound|Irish punt|pound|Irish monetary unit (generic term)
+(noun)|boat (generic term)
+(noun)|punting|kick (generic term)|boot (generic term)|kicking (generic term)
+(verb)|kick (generic term)
+(verb)|pole|propel (generic term)|impel (generic term)
+(verb)|bet on|back|gage|stake|game|bet (generic term)|wager (generic term)|play (generic term)
+punta arenas|1
+(noun)|Punta Arenas|city (generic term)|metropolis (generic term)|urban center (generic term)
+punter|3
+(noun)|boatman (generic term)|boater (generic term)|waterman (generic term)
+(noun)|kicker (generic term)
+(noun)|bettor|better|wagerer|gambler (generic term)
+punting|1
+(noun)|punt|kick (generic term)|boot (generic term)|kicking (generic term)
+puny|2
+(adj)|weak (similar term)
+(adj)|runty|shrimpy|small (similar term)|little (similar term)
+pup|3
+(noun)|whelp|young mammal (generic term)
+(noun)|puppy|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+(verb)|whelp|litter (generic term)
+pup tent|1
+(noun)|shelter tent|tent (generic term)|collapsible shelter (generic term)
+pupa|1
+(noun)|insect (generic term)
+pupal|1
+(adj)|immature (similar term)
+pupate|1
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+pupet regime|1
+(noun)|puppet government|puppet state|government (generic term)|authorities (generic term)|regime (generic term)
+pupil|3
+(noun)|student|educatee|enrollee (generic term)
+(noun)|aperture (generic term)
+(noun)|schoolchild|school-age child|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+pupillary|1
+(adj)|aperture (related term)
+pupillary reflex|1
+(noun)|light reflex|miosis|myosis|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+pupillary sphincter|1
+(noun)|musculus sphincter pupillae|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+puppet|3
+(noun)|marionette|figure (generic term)
+(noun)|creature|tool|slave (generic term)
+(noun)|doll (generic term)|dolly (generic term)
+puppet government|1
+(noun)|puppet state|pupet regime|government (generic term)|authorities (generic term)|regime (generic term)
+puppet leader|1
+(noun)|puppet ruler|ruler (generic term)|swayer (generic term)|leader (generic term)
+puppet play|1
+(noun)|puppet show|show (generic term)
+puppet ruler|1
+(noun)|puppet leader|ruler (generic term)|swayer (generic term)|leader (generic term)
+puppet show|1
+(noun)|puppet play|show (generic term)
+puppet state|1
+(noun)|puppet government|pupet regime|government (generic term)|authorities (generic term)|regime (generic term)
+puppeteer|1
+(noun)|performer (generic term)|performing artist (generic term)
+puppetry|2
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+(noun)|dramatization (generic term)|dramatisation (generic term)
+puppis|1
+(noun)|Puppis|constellation (generic term)
+puppy|2
+(noun)|pup (generic term)|whelp (generic term)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(noun)|pup|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+puppy chow|1
+(noun)|dog food (generic term)
+puppy fat|1
+(noun)|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+puppy love|1
+(noun)|calf love|crush|infatuation|love (generic term)
+puppyish|1
+(adj)|puppylike|young (similar term)|immature (similar term)
+puppylike|1
+(adj)|puppyish|young (similar term)|immature (similar term)
+purace|1
+(noun)|Purace|volcano (generic term)
+purana|1
+(noun)|Purana|Sanskrit literature (generic term)
+puranic|1
+(adj)|Puranic|Sanskrit literature (related term)
+purau|1
+(noun)|mahoe|majagua|mahagua|balibago|Hibiscus tiliaceus|hibiscus (generic term)
+purblind|2
+(adj)|dim-sighted|near-blind|sand-blind|visually impaired|visually challenged|blind (similar term)|unsighted (similar term)
+(adj)|obtuse|undiscerning (similar term)
+purcell|1
+(noun)|Purcell|Henry Purcell|organist (generic term)|composer (generic term)
+purchasable|2
+(adj)|corruptible|bribable|dishonest|venal|corrupt (similar term)
+(adj)|for sale|available (similar term)
+purchase|4
+(noun)|acquisition (generic term)
+(noun)|influence (generic term)
+(noun)|leverage|mechanical phenomenon (generic term)
+(verb)|buy|get (generic term)|acquire (generic term)|buy in (related term)|buy up (related term)|buy out (related term)|sell (antonym)
+purchase agreement|1
+(noun)|purchase contract|contract (generic term)
+purchase contract|1
+(noun)|purchase agreement|contract (generic term)
+purchase order|1
+(noun)|order|commercial document (generic term)|commercial instrument (generic term)
+purchase price|1
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+purchaser|1
+(noun)|buyer|emptor|vendee|customer (generic term)|client (generic term)
+purchasing|1
+(noun)|buying|purchase (generic term)
+purchasing agent|1
+(noun)|agent (generic term)
+purchasing department|1
+(noun)|business department (generic term)
+purdah|3
+(noun)|solitude|isolation (generic term)
+(noun)|sex segregation|segregation (generic term)|separatism (generic term)
+(noun)|screen (generic term)
+pure|7
+(adj)|axenic (similar term)|clean (similar term)|fresh (similar term)|clean (similar term)|clear (similar term)|light (similar term)|unclouded (similar term)|fine (similar term)|native (similar term)|plain (similar term)|sheer (similar term)|unmingled (similar term)|unmixed (similar term)|pristine (similar term)|purified (similar term)|refined (similar term)|sublimate (similar term)|unadulterated (similar term)|unalloyed (similar term)|uncontaminated (similar term)|unpolluted (similar term)|virginal (similar term)|clean (related term)|processed (related term)|impure (antonym)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|sodding|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adj)|theoretical (similar term)
+(adj)|saturated|intense (similar term)|vivid (similar term)|unsaturated (antonym)
+(adj)|harmonious (similar term)
+(adj)|immaculate (similar term)|undefiled (similar term)|white (similar term)|chaste (related term)|impure (antonym)
+(adj)|vestal|virgin|virginal|virtuous|chaste (similar term)
+pure absence|1
+(noun)|simple absence|petit mal epilepsy (generic term)|absence (generic term)
+pure binary numeration system|1
+(noun)|binary numeration system|binary number system|binary system|positional notation (generic term)|positional representation system (generic term)
+pure gold|1
+(noun)|24-karat gold|gold (generic term)|Au (generic term)|atomic number 79 (generic term)
+pure imaginary number|1
+(noun)|complex number (generic term)|complex quantity (generic term)|imaginary number (generic term)|imaginary (generic term)
+pure mathematics|1
+(noun)|mathematics (generic term)|math (generic term)|maths (generic term)
+pure tone|1
+(noun)|tone|sound (generic term)|auditory sensation (generic term)
+pureblood|2
+(adj)|pedigree|pedigreed|pureblooded|thoroughbred|purebred (similar term)
+(noun)|thoroughbred|purebred|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+pureblooded|1
+(adj)|pedigree|pedigreed|pureblood|thoroughbred|purebred (similar term)
+purebred|2
+(adj)|full-blooded (similar term)|full-blood (similar term)|blooded (similar term)|pedigree (similar term)|pedigreed (similar term)|pureblood (similar term)|pureblooded (similar term)|thoroughbred (similar term)|crossbred (antonym)
+(noun)|thoroughbred|pureblood|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+puree|2
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(verb)|strain|rub (generic term)
+purely|1
+(adv)|strictly
+pureness|3
+(noun)|purity|condition (generic term)|status (generic term)|impurity (antonym)
+(noun)|purity|sinlessness|innocence|whiteness|condition (generic term)|status (generic term)
+(noun)|honor|honour|purity|virtue (generic term)|chastity (generic term)|sexual morality (generic term)
+purgation|3
+(noun)|catharsis|katharsis|purge (generic term)|purging (generic term)
+(noun)|purification|ceremony (generic term)
+(noun)|purge|purging|clearing (generic term)
+purgative|2
+(adj)|cathartic|evacuant|laxative (similar term)
+(noun)|cathartic|physic|aperient|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+purgatorial|2
+(adj)|purging|purifying|clearing (related term)
+(adj)|imaginary place|mythical place|fictitious place (related term)
+purgatory|2
+(noun)|situation (generic term)
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+purge|9
+(noun)|purging|purgation|clearing (generic term)
+(noun)|purging|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+(verb)|persecute (generic term)|oppress (generic term)|rehabilitate (antonym)
+(verb)|acquit (generic term)|assoil (generic term)|clear (generic term)|discharge (generic term)|exonerate (generic term)|exculpate (generic term)
+(verb)|purify|sanctify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|purify (generic term)|sublimate (generic term)|make pure (generic term)|distill (generic term)
+(verb)|flush|scour|rinse (generic term)|rinse off (generic term)
+(verb)|vomit|vomit up|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+(verb)|treat (generic term)|care for (generic term)
+purging|3
+(adj)|purgatorial|purifying|clearing (related term)
+(noun)|purge|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+(noun)|purge|purgation|clearing (generic term)
+purging cassia|1
+(noun)|golden shower tree|drumstick tree|pudding pipe tree|canafistola|canafistula|Cassia fistula|cassia (generic term)
+purification|4
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+(noun)|refining|refinement|processing (generic term)
+(noun)|purgation|ceremony (generic term)
+(noun)|purge (generic term)|purging (generic term)|purgation (generic term)
+purified|1
+(adj)|refined|sublimate|pure (similar term)
+purifier|1
+(noun)|apparatus (generic term)|setup (generic term)
+purify|3
+(verb)|sublimate|make pure|distill|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|purge|sanctify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+purifying|3
+(adj)|purgatorial|purging|clearing (related term)
+(adj)|ablutionary (similar term)|cleansing (similar term)|antiseptic (similar term)|detergent (similar term)|detersive (similar term)|adulterating (antonym)
+(adj)|cleansing|antiseptic (similar term)
+purim|1
+(noun)|Purim|Jewish holy day (generic term)
+purine|1
+(noun)|base (generic term)|alkali (generic term)
+purinethol|1
+(noun)|mercaptopurine|Purinethol|antimetabolite (generic term)|immunosuppressant (generic term)|immunosuppressor (generic term)|immunosuppressive drug (generic term)|immunosuppressive (generic term)|immune suppressant drug (generic term)
+purism|1
+(noun)|insistence (generic term)|insisting (generic term)
+purist|1
+(noun)|pedant (generic term)|bookworm (generic term)|scholastic (generic term)
+puritan|4
+(adj)|blue|puritanic|puritanical|nonindulgent (similar term)|strict (similar term)
+(noun)|Puritan|Protestant (generic term)
+(noun)|abstainer (generic term)|ascetic (generic term)
+(noun)|prude|unpleasant person (generic term)|disagreeable person (generic term)
+puritanic|1
+(adj)|blue|puritan|puritanical|nonindulgent (similar term)|strict (similar term)
+puritanical|3
+(adj)|abstainer|ascetic (related term)|Protestantism (related term)
+(adj)|priggish|prim|prissy|prudish|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+(adj)|blue|puritan|puritanic|nonindulgent (similar term)|strict (similar term)
+puritanically|1
+(adv)|prudishly
+puritanism|2
+(noun)|Puritanism|Protestantism (generic term)
+(noun)|Puritanism|sternness (generic term)|strictness (generic term)
+purity|3
+(noun)|pureness|condition (generic term)|status (generic term)|impurity (antonym)
+(noun)|pureness|sinlessness|innocence|whiteness|condition (generic term)|status (generic term)
+(noun)|honor|honour|pureness|virtue (generic term)|chastity (generic term)|sexual morality (generic term)
+purkinje|1
+(noun)|Purkinje|Jan Evangelista Purkinje|Johannes Evangelista Purkinje|physiologist (generic term)
+purkinje's system|1
+(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle (generic term)|heart muscle (generic term)
+purkinje's tissue|1
+(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle (generic term)|heart muscle (generic term)
+purkinje cell|1
+(noun)|Purkinje cell|brain cell (generic term)
+purkinje fiber|1
+(noun)|Purkinje fiber|cardiac muscle (generic term)|heart muscle (generic term)
+purkinje network|1
+(noun)|Purkinje network|Purkinje's tissue|Purkinje's system|cardiac muscle (generic term)|heart muscle (generic term)
+purl|6
+(noun)|thread (generic term)|yarn (generic term)
+(noun)|purl stitch|knitting stitch (generic term)
+(verb)|eddy|whirlpool|swirl|whirl|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|knit (generic term)
+(verb)|embroider (generic term)|broider (generic term)
+purl stitch|2
+(noun)|purl|knitting stitch (generic term)
+(verb)|knit (generic term)|entwine (generic term)
+purlieu|1
+(noun)|environs|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+purloin|1
+(verb)|pilfer|cabbage|pinch|abstract|snarf|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+purloined|1
+(adj)|stolen|taken (similar term)
+purloo|1
+(noun)|chicken purloo|poilu|stew (generic term)
+purple|7
+(adj)|violet|purplish|chromatic (similar term)
+(adj)|embellished|empurpled|over-embellished|rhetorical (similar term)
+(adj)|imperial|majestic|regal|royal|noble (similar term)
+(noun)|purpleness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|nobility (generic term)|noblesse (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|empurple|purpurate|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+purple-black|1
+(adj)|purplish-black|achromatic (similar term)
+purple-blue|1
+(adj)|purplish-blue|chromatic (similar term)
+purple-brown|1
+(adj)|purplish-brown|chromatic (similar term)
+purple-eyed|1
+(adj)|eyed (similar term)
+purple-flowered|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+purple-flowering raspberry|1
+(noun)|flowering raspberry|Rubus odoratus|thimbleberry|raspberry (generic term)|raspberry bush (generic term)
+purple-fringed orchid|2
+(noun)|purple-fringed orchis|Habenaria psycodes|fringed orchis (generic term)|fringed orchid (generic term)
+(noun)|purple-fringed orchis|Habenaria fimbriata|fringed orchis (generic term)|fringed orchid (generic term)
+purple-fringed orchis|2
+(noun)|purple-fringed orchid|Habenaria psycodes|fringed orchis (generic term)|fringed orchid (generic term)
+(noun)|purple-fringed orchid|Habenaria fimbriata|fringed orchis (generic term)|fringed orchid (generic term)
+purple-green|1
+(adj)|purplish-green|chromatic (similar term)
+purple-hooded orchis|1
+(noun)|showy orchis|purple orchis|Orchis spectabilis|orchis (generic term)
+purple-lilac|1
+(adj)|purplish-lilac|chromatic (similar term)
+purple-red|1
+(adj)|purplish-red|chromatic (similar term)
+purple-spotted|1
+(adj)|patterned (similar term)
+purple-staining cortinarius|1
+(noun)|Cortinarius mutabilis|purple-staining Cortinarius|agaric (generic term)
+purple-stemmed aster|1
+(noun)|aster (generic term)
+purple-tinged|1
+(adj)|purple-tinted|chromatic (similar term)
+purple-tinted|1
+(adj)|purple-tinged|chromatic (similar term)
+purple-veined|1
+(adj)|patterned (similar term)
+purple-white|1
+(adj)|purplish-white|achromatic (similar term)
+purple amaranth|1
+(noun)|prince's-feather|gentleman's-cane|prince's-plume|red amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth (generic term)
+purple anise|1
+(noun)|Illicium floridanum|anise tree (generic term)
+purple apricot|1
+(noun)|black apricot|Prunus dasycarpa|apricot (generic term)|apricot tree (generic term)
+purple avens|2
+(noun)|prairie smoke|Geum triflorum|avens (generic term)
+(noun)|water avens|Indian chocolate|chocolate root|Geum rivale|avens (generic term)
+purple bacteria|1
+(noun)|phototrophic bacteria (generic term)|phototropic bacteria (generic term)
+purple beech|1
+(noun)|copper beech|Fagus sylvatica atropunicea|Fagus purpurea|Fagus sylvatica purpurea|beech (generic term)|beech tree (generic term)
+purple boneset|1
+(noun)|Joe-Pye weed|trumpet weed|marsh milkweed|Eupatorium purpureum|herb (generic term)|herbaceous plant (generic term)
+purple chinese houses|1
+(noun)|innocense|Collinsia bicolor|Collinsia heterophylla|wildflower (generic term)|wild flower (generic term)
+purple clematis|1
+(noun)|purple virgin's bower|mountain clematis|Clematis verticillaris|clematis (generic term)
+purple clover|1
+(noun)|red clover|Trifolium pratense|clover (generic term)|trefoil (generic term)
+purple cress|1
+(noun)|Cardamine douglasii|bittercress (generic term)|bitter cress (generic term)
+purple emperor|1
+(noun)|Apatura iris|emperor butterfly (generic term)|emperor (generic term)
+purple finch|1
+(noun)|Carpodacus purpureus|finch (generic term)
+purple fringeless orchid|1
+(noun)|purple fringeless orchis|Habenaria peramoena|fringed orchis (generic term)|fringed orchid (generic term)
+purple fringeless orchis|1
+(noun)|purple fringeless orchid|Habenaria peramoena|fringed orchis (generic term)|fringed orchid (generic term)
+purple gallinule|1
+(noun)|gallinule (generic term)|marsh hen (generic term)|water hen (generic term)|swamphen (generic term)
+purple grackle|1
+(noun)|Quiscalus quiscula|grackle (generic term)|crow blackbird (generic term)
+purple granadillo|1
+(noun)|granadilla|Passiflora edulis|passionflower (generic term)|passionflower vine (generic term)
+purple ground cherry|2
+(noun)|tomatillo|miltomate|jamberry|Physalis philadelphica|ground cherry (generic term)|husk tomato (generic term)
+(noun)|cape gooseberry|Physalis peruviana|ground cherry (generic term)|husk tomato (generic term)
+purple heart|2
+(noun)|Order of the Purple Heart|Purple Heart|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+(noun)|sodium thiopental|phenobarbital|phenobarbitone|Luminal|barbiturate (generic term)
+purple heather|1
+(noun)|Brewer's mountain heather|Phyllodoce breweri|heath (generic term)
+purple loco|1
+(noun)|purple locoweed|Oxytropis lambertii|locoweed (generic term)|crazyweed (generic term)|crazy weed (generic term)
+purple locoweed|1
+(noun)|purple loco|Oxytropis lambertii|locoweed (generic term)|crazyweed (generic term)|crazy weed (generic term)
+purple loosestrife|1
+(noun)|spiked loosestrife|Lythrum salicaria|loosestrife (generic term)
+purple martin|1
+(noun)|Progne subis|martin (generic term)
+purple milk vetch|1
+(noun)|Astragalus danicus|milk vetch (generic term)|milk-vetch (generic term)
+purple mullein|1
+(noun)|Verbascum phoeniceum|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+purple nightshade|1
+(noun)|trompillo|white horse nettle|prairie berry|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+purple onion|1
+(noun)|red onion|Spanish onion (generic term)
+purple orchis|1
+(noun)|showy orchis|purple-hooded orchis|Orchis spectabilis|orchis (generic term)
+purple osier|1
+(noun)|purple willow|red willow|red osier|basket willow|Salix purpurea|osier (generic term)
+purple passage|1
+(noun)|passage (generic term)
+purple pea|1
+(noun)|hovea|shrub (generic term)|bush (generic term)
+purple poppy mallow|1
+(noun)|Callirhoe involucrata|poppy mallow (generic term)
+purple rock brake|1
+(noun)|Pellaea atropurpurea|cliff brake (generic term)|cliff-brake (generic term)|rock brake (generic term)
+purple sage|1
+(noun)|chaparral sage|Salvia leucophylla|sage (generic term)|salvia (generic term)
+purple sanicle|1
+(noun)|Sanicula bipinnatifida|sanicle (generic term)|snakeroot (generic term)
+purple saxifrage|1
+(noun)|Saxifraga oppositifolia|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+purple silkweed|1
+(noun)|Asclepias purpurascens|milkweed (generic term)|silkweed (generic term)
+purple strawberry guava|1
+(noun)|cattley guava|Psidium cattleianum|Psidium littorale longipes|fruit tree (generic term)
+purple trillium|1
+(noun)|red trillium|birthroot|Trillium erectum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+purple velvet plant|1
+(noun)|velvet plant|royal velvet plant|Gynura aurantiaca|houseplant (generic term)
+purple virgin's bower|1
+(noun)|purple clematis|mountain clematis|Clematis verticillaris|clematis (generic term)
+purple willow|1
+(noun)|red willow|red osier|basket willow|purple osier|Salix purpurea|osier (generic term)
+purpleness|1
+(noun)|purple|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+purplish|1
+(adj)|purple|violet|chromatic (similar term)
+purplish-black|1
+(adj)|purple-black|achromatic (similar term)
+purplish-blue|1
+(adj)|purple-blue|chromatic (similar term)
+purplish-brown|1
+(adj)|purple-brown|chromatic (similar term)
+purplish-green|1
+(adj)|purple-green|chromatic (similar term)
+purplish-lilac|1
+(adj)|purple-lilac|chromatic (similar term)
+purplish-red|1
+(adj)|purple-red|chromatic (similar term)
+purplish-white|1
+(adj)|purple-white|achromatic (similar term)
+purplish blue|1
+(noun)|royal blue|blue (generic term)|blueness (generic term)
+purplish pink|1
+(noun)|solferino|pink (generic term)
+purplish red|1
+(noun)|red (generic term)|redness (generic term)
+purport|4
+(noun)|intent|spirit|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|drift|tenor (generic term)|strain (generic term)
+(verb)|claim (generic term)
+(verb)|aim|purpose|propose|intend (generic term)|mean (generic term)|think (generic term)
+purported|1
+(adj)|putative|reputed|supposed|acknowledged (similar term)
+purportedly|1
+(adv)|supposedly
+purpose|5
+(noun)|intent|intention|aim|design|goal (generic term)|end (generic term)
+(noun)|function|role|use|utility (generic term)|usefulness (generic term)
+(noun)|determination|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(verb)|aim|purport|propose|intend (generic term)|mean (generic term)|think (generic term)
+(verb)|resolve|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+purpose-built|1
+(adj)|purpose-made|purposeful (similar term)
+purpose-made|1
+(adj)|purpose-built|purposeful (similar term)
+purposeful|2
+(adj)|businesslike (similar term)|earnest (similar term)|goal-directed (similar term)|purposive (similar term)|purpose-built (similar term)|purpose-made (similar term)|meaningful (related term)|resolute (related term)|purposeless (antonym)
+(adj)|meaningful (similar term)
+purposefulness|1
+(noun)|sense of purpose|meaningfulness (generic term)|purposelessness (antonym)
+purposeless|2
+(adj)|adrift (similar term)|afloat (similar term)|aimless (similar term)|directionless (similar term)|planless (similar term)|rudderless (similar term)|undirected (similar term)|desultory (similar term)|meaningless (related term)|nonmeaningful (related term)|purposeful (antonym)
+(adj)|pointless|senseless|meaningless (similar term)|nonmeaningful (similar term)
+purposelessness|1
+(noun)|aimlessness|meaninglessness (generic term)|purposefulness (antonym)
+purposely|1
+(adv)|intentionally|deliberately|designedly|on purpose|advisedly|by choice|by design|accidentally (antonym)|unintentionally (antonym)|accidentally (antonym)
+purposive|2
+(adj)|nonrandom (similar term)
+(adj)|goal-directed|purposeful (similar term)
+purpura|1
+(noun)|peliosis|blood disease (generic term)|blood disorder (generic term)
+purpura hemorrhagica|1
+(noun)|thrombocytopenic purpura|idiopathic thrombocytopenic purpura|Werlhof's disease|purpura (generic term)|peliosis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+purpurate|1
+(verb)|purple|empurple|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+purr|3
+(noun)|sound (generic term)
+(verb)|whizz|whiz|whirr|whir|birr|sound (generic term)|go (generic term)
+(verb)|make vibrant sounds|resonate (generic term)|vibrate (generic term)
+purse|5
+(noun)|bag|handbag|pocketbook|container (generic term)
+(noun)|bag (generic term)
+(noun)|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)
+(verb)|round (generic term)|round out (generic term)|round off (generic term)
+(verb)|wrinkle|contract (generic term)
+purse-proud|1
+(adj)|proud (similar term)
+purse-string operation|1
+(noun)|Shirodkar's operation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+purse seine|1
+(noun)|seine (generic term)
+purse string|1
+(noun)|drawstring (generic term)|drawing string (generic term)|string (generic term)
+purser|1
+(noun)|officer (generic term)|ship's officer (generic term)
+purslane|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+purslane family|1
+(noun)|Portulacaceae|family Portulacaceae|caryophylloid dicot family (generic term)
+purslane speedwell|1
+(noun)|Veronica peregrina|veronica (generic term)|speedwell (generic term)
+pursual|1
+(noun)|pursuit|chase|following|motion (generic term)|movement (generic term)|move (generic term)
+pursuance|2
+(noun)|pursuit|quest|search (generic term)
+(noun)|prosecution|continuance (generic term)|continuation (generic term)
+pursuant|1
+(adj)|consistent (similar term)
+pursue|4
+(verb)|prosecute|engage|act (generic term)|move (generic term)
+(verb)|follow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|quest for|go after|quest after|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|follow up on|act on|react (generic term)|oppose (generic term)
+pursued|1
+(noun)|chased|hunted person (generic term)
+pursuer|2
+(noun)|chaser|follower (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+pursuing|1
+(adj)|following (similar term)
+pursuit|4
+(noun)|chase|pursual|following|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|pursuance|quest|search (generic term)
+(noun)|avocation|by-line|hobby|sideline|spare-time activity|pastime (generic term)|interest (generic term)|pursuit (generic term)
+(noun)|pastime|interest|diversion (generic term)|recreation (generic term)
+pursy|1
+(adj)|blown|gasping|out of breath|panting|short-winded|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+purulence|2
+(noun)|purulency|symptom (generic term)
+(noun)|pus|suppuration|ichor|sanies|festering|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+purulency|1
+(noun)|purulence|symptom (generic term)
+purulent|1
+(adj)|pussy|septic (similar term)|infected (similar term)
+purulent pleurisy|1
+(noun)|pleurisy (generic term)|empyema (generic term)
+purus|1
+(noun)|Purus|Purus River|river (generic term)
+purus river|1
+(noun)|Purus|Purus River|river (generic term)
+purvey|1
+(verb)|provision|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+purveyance|1
+(noun)|provision (generic term)|supply (generic term)|supplying (generic term)
+purveyor|1
+(noun)|supplier (generic term)|provider (generic term)
+purview|1
+(noun)|horizon|view|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+pus|2
+(noun)|Pus|Pansa|Hindu calendar month (generic term)
+(noun)|purulence|suppuration|ichor|sanies|festering|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+pus-forming bacteria|1
+(noun)|bacteria (generic term)|bacterium (generic term)
+pusan|1
+(noun)|Pusan|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+pusey|1
+(noun)|Pusey|Edward Pusey|Edward Bouverie Pusey|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+puseyism|1
+(noun)|Tractarianism|Puseyism|Christianity (generic term)|Christian religion (generic term)
+push|15
+(noun)|pushing|propulsion (generic term)|actuation (generic term)
+(noun)|thrust|force (generic term)
+(noun)|energy|get-up-and-go|drive (generic term)
+(noun)|push button|button|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+(noun)|progress (generic term)|progression (generic term)|procession (generic term)|advance (generic term)|advancement (generic term)|forward motion (generic term)|onward motion (generic term)
+(verb)|force|move (generic term)|displace (generic term)|force out (related term)|force out (related term)|pull (antonym)
+(verb)|bear on|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)
+(verb)|advertise|advertize|promote|praise (generic term)
+(verb)|tug|labor|labour|drive|fight (generic term)|struggle (generic term)|push on (related term)
+(verb)|press (generic term)
+(verb)|crowd|approach (generic term)|near (generic term)|come on (generic term)|go up (generic term)|draw near (generic term)|draw close (generic term)|come near (generic term)
+(verb)|crusade|fight|press|campaign|agitate|advertise (generic term)|advertize (generic term)|promote (generic term)|push (generic term)
+(verb)|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|press|push (generic term)|force (generic term)
+push-bike|1
+(noun)|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+push-button radio|1
+(noun)|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+push-down list|1
+(noun)|push-down stack|stack|list (generic term)|listing (generic term)
+push-down queue|1
+(noun)|queue (generic term)
+push-down stack|1
+(noun)|push-down list|stack|list (generic term)|listing (generic term)
+push-down storage|1
+(noun)|push-down store|stack|memory device (generic term)|storage device (generic term)
+push-down store|1
+(noun)|push-down storage|stack|memory device (generic term)|storage device (generic term)
+push around|1
+(verb)|strong-arm|bully|browbeat|bullyrag|ballyrag|boss around|hector|intimidate (generic term)
+push aside|2
+(verb)|push away|push (generic term)|force (generic term)
+(verb)|dismiss|disregard|brush aside|brush off|discount|ignore|reject (generic term)
+push away|1
+(verb)|push aside|push (generic term)|force (generic term)
+push back|2
+(noun)|rollback|offense (generic term)|offence (generic term)|offensive (generic term)
+(verb)|repel|drive|repulse|force back|beat back|push (generic term)|force (generic term)|attract (antonym)
+push broom|1
+(noun)|broom (generic term)
+push button|1
+(noun)|push|button|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+push down|1
+(verb)|down|knock down|cut down|pull down|strike (generic term)
+push forward|1
+(verb)|barge|thrust ahead|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|barge in (related term)
+push on|1
+(verb)|press on|plough on|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+push out|1
+(verb)|obtrude|thrust out|push (generic term)|force (generic term)
+push through|1
+(verb)|erupt|come out|break through|appear (generic term)
+push up|2
+(verb)|push (generic term)|force (generic term)
+(verb)|thrust|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+pushan|1
+(noun)|Pushan|Hindu deity (generic term)
+pushball|1
+(noun)|field game (generic term)
+pushcart|1
+(noun)|handcart|cart|go-cart|wheeled vehicle (generic term)
+pushchair|1
+(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|go-cart|pusher|wheeled vehicle (generic term)
+pusher|5
+(noun)|thruster|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|drug peddler|peddler|drug dealer|drug trafficker|dealer (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|shover|mover (generic term)
+(noun)|zori|sandal (generic term)
+(noun)|baby buggy|baby carriage|carriage|perambulator|pram|stroller|go-cart|pushchair|wheeled vehicle (generic term)
+pushful|1
+(adj)|pushing|pushy|ambitious (similar term)
+pushiness|1
+(noun)|bumptiousness|cockiness|forwardness|assertiveness (generic term)|self-assertiveness (generic term)
+pushing|2
+(adj)|pushful|pushy|ambitious (similar term)
+(noun)|push|propulsion (generic term)|actuation (generic term)
+pushkin|1
+(noun)|Pushkin|Alexander Pushkin|Aleksandr Sergeyevich Pushkin|poet (generic term)
+pushover|2
+(noun)|flunky (generic term)|flunkey (generic term)|stooge (generic term)|yes-man (generic term)
+(noun)|cinch|breeze|picnic|snap|duck soup|child's play|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+pushpin|1
+(noun)|thumbtack|drawing pin|tack (generic term)|paper fastener (generic term)
+pushtun|1
+(noun)|Pathan|Pashtun|Pushtun|Pashtoon|Afghan (generic term)|Afghanistani (generic term)
+pushup|1
+(noun)|press-up|arm exercise (generic term)
+pushy|1
+(adj)|pushful|pushing|ambitious (similar term)
+pusillanimity|1
+(noun)|pusillanimousness|fearfulness (generic term)
+pusillanimous|1
+(adj)|poor-spirited|unmanly|cowardly (similar term)|fearful (similar term)
+pusillanimously|1
+(adv)|simperingly
+pusillanimousness|1
+(noun)|pusillanimity|fearfulness (generic term)
+pusly|1
+(noun)|common purslane|pussley|verdolagas|Portulaca oleracea|purslane (generic term)
+puss|2
+(noun)|cunt|pussy|slit|snatch|twat|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+(noun)|kitty|kitty-cat|pussy|pussycat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+pussley|1
+(noun)|common purslane|pusly|verdolagas|Portulaca oleracea|purslane (generic term)
+pussy|3
+(adj)|purulent|septic (similar term)|infected (similar term)
+(noun)|cunt|puss|slit|snatch|twat|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+(noun)|kitty|kitty-cat|puss|pussycat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+pussy's-paw|1
+(noun)|pussy-paw|pussy-paws|Spraguea umbellatum|Calyptridium umbellatum|wildflower (generic term)|wild flower (generic term)
+pussy-paw|1
+(noun)|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower (generic term)|wild flower (generic term)
+pussy-paws|1
+(noun)|pussy-paw|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower (generic term)|wild flower (generic term)
+pussy willow|2
+(noun)|Salix discolor|willow (generic term)|willow tree (generic term)
+(noun)|goat willow|florist's willow|Salix caprea|sallow (generic term)
+pussycat|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|kitty|kitty-cat|puss|pussy|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+pussyfoot|1
+(verb)|sneak|mouse|creep|walk (generic term)|sneak away (related term)|sneak out (related term)
+pussytoes|1
+(noun)|cat's foot|cat's feet|Antennaria dioica|herb (generic term)|herbaceous plant (generic term)
+pustulate|1
+(adj)|acned|pimpled|pimply|blemished (similar term)
+pustule|1
+(noun)|pimple (generic term)|hickey (generic term)|zit (generic term)|blister (generic term)|bulla (generic term)|bleb (generic term)
+put|10
+(noun)|put option|option (generic term)|call option (antonym)
+(verb)|set|place|pose|position|lay|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|put off (related term)|put down (related term)|put off (related term)|put out (related term)|put to sleep (related term)|put out (related term)|put under (related term)|put away (related term)|put through (related term)|put to sleep (related term)|put up (related term)|put through (related term)|put out (related term)
+(verb)|frame|redact|cast|couch|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|assign|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|invest|commit|place|spend (generic term)|expend (generic term)|drop (generic term)|divest (antonym)
+(verb)|place|set|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|subject (generic term)
+(verb)|arrange (generic term)|set (generic term)
+(verb)|arrange|set up|order|organize (generic term)|organise (generic term)
+put-down|1
+(noun)|squelch|squelcher|takedown|derision (generic term)
+put-on|3
+(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(noun)|fraud|fraudulence|dupery|hoax|humbug|trickery (generic term)|chicanery (generic term)|chicane (generic term)|guile (generic term)|wile (generic term)|shenanigan (generic term)
+(noun)|antic|joke|prank|trick|caper|diversion (generic term)|recreation (generic term)
+put-put|1
+(noun)|gasoline engine (generic term)
+put-up|1
+(adj)|planned (similar term)
+put-upon|1
+(adj)|exploited|ill-used|used|victimized|victimised|misused (similar term)
+put across|1
+(verb)|communicate|pass on|pass|pass along|convey (generic term)|transmit (generic term)|communicate (generic term)
+put aside|2
+(verb)|put away
+(verb)|put away|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+put away|7
+(verb)|lock in|lock away|lock|shut up|shut away|lock up|confine (generic term)
+(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|throw out|cast out|throw away|cast away|get rid of (generic term)|remove (generic term)
+(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|gaol|remand|confine (generic term)|detain (generic term)
+(verb)|put aside
+(verb)|put to sleep|kill (generic term)
+(verb)|tuck in|tuck away|eat up (generic term)|finish (generic term)|polish off (generic term)
+(verb)|put aside|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+put back|2
+(verb)|replace|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|set back|knock back|cost (generic term)|be (generic term)
+put behind bars|1
+(verb)|imprison|incarcerate|lag|immure|jail|jug|gaol|put away|remand|confine (generic term)|detain (generic term)
+put differently|1
+(adv)|in other words
+put down|7
+(verb)|set down|place down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|lay|repose|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|repose on (related term)|put (related term)|lay over (related term)|lay away (related term)|lay aside (related term)
+(verb)|land|bring down|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|take down|degrade|disgrace|demean|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|drop|drop off|set down|unload|discharge|deliver (generic term)
+(verb)|write down|set down|get down|write (generic term)
+(verb)|record|enter|save (generic term)|preserve (generic term)
+put forward|5
+(verb)|submit|state|posit|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|assert|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|raise|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|call forth|make (generic term)|create (generic term)
+(verb)|stick|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|nominate|put up|nominate (generic term)|propose (generic term)
+put in|7
+(verb)|insert|enclose|inclose|stick in|introduce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|spend (generic term)|pass (generic term)
+(verb)|store|hive away|lay in|salt away|stack away|stash away|keep (generic term)|hold on (generic term)
+(verb)|chime in|cut in|butt in|chisel in|barge in|break in|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|install|instal|set up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|submit|apply (generic term)
+(verb)|interject|come in|interpose|throw in|inject|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+put off|5
+(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|remit|delay (generic term)
+(verb)|turn off|repel (generic term)|repulse (generic term)
+(verb)|dishearten|discourage (generic term)|hearten (antonym)
+(verb)|confuse|flurry|disconcert|embarrass (generic term)|abash (generic term)
+(verb)|hedge|fudge|evade|circumvent|parry|elude|skirt|dodge|duck|sidestep|avoid (generic term)
+put on|9
+(adj)|assumed|false|fictitious|fictive|pretended|sham|counterfeit (similar term)|imitative (similar term)
+(verb)|wear|get into|don|assume|dress (generic term)|get dressed (generic term)
+(verb)|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|turn in|make (generic term)|create (generic term)
+(verb)|add (generic term)
+(verb)|mount|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|apply|cover (generic term)
+(verb)|gull|dupe|slang|befool|cod|fool|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|gain|change state (generic term)|turn (generic term)|reduce (antonym)
+put on airs|1
+(verb)|lord it over|queen it over|act superior|act (generic term)|move (generic term)
+put on the line|1
+(verb)|risk|lay on the line|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+put one across|1
+(verb)|gull|dupe|slang|befool|cod|fool|put on|take in|put one over|deceive (generic term)|betray (generic term)|lead astray (generic term)
+put one over|1
+(verb)|gull|dupe|slang|befool|cod|fool|put on|take in|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+put option|2
+(noun)|stock option (generic term)
+(noun)|put|option (generic term)|call option (antonym)
+put out|10
+(verb)|trouble|inconvenience|disoblige|discommode|incommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|smother|snuff out (generic term)|extinguish (generic term)
+(verb)|exsert|stretch out|extend|hold out|stretch forth|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|douse|snuff out (generic term)|blow out (generic term)|extinguish (generic term)|quench (generic term)
+(verb)|be (generic term)
+(verb)|retire|toy (generic term)|fiddle (generic term)|diddle (generic term)|play (generic term)
+(verb)|play (generic term)
+(verb)|publish|bring out|issue|release|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put under|drug (generic term)|dose (generic term)|bring to (antonym)
+put out feelers|1
+(verb)|explore (generic term)
+put over|2
+(verb)|get across|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|postpone|prorogue|hold over|table|shelve|set back|defer|remit|put off|delay (generic term)
+put right|1
+(verb)|iron out|straighten out|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+put through|2
+(verb)|follow through|follow up|follow out|carry out|implement|go through|complete (generic term)|finish (generic term)
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+put to death|1
+(verb)|execute|kill (generic term)|punish (generic term)|penalize (generic term)|penalise (generic term)
+put to sleep|3
+(verb)|put (generic term)
+(verb)|put away|kill (generic term)
+(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put under|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+put to work|1
+(verb)|work|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+put together|2
+(verb)|assemble|piece|set up|tack|tack together|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+(adv)|jointly|collectively|conjointly|together
+put under|1
+(verb)|anesthetize|anaesthetize|anesthetise|anaesthetise|put to sleep|put out|drug (generic term)|dose (generic term)|bring to (antonym)
+put up|9
+(verb)|post|install (generic term)|instal (generic term)|put in (generic term)|set up (generic term)
+(verb)|provide|offer|engage (generic term)|wage (generic term)
+(verb)|raise|erect|rear|set up|construct (generic term)|build (generic term)|make (generic term)|level (antonym)
+(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|suffer|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|offer (generic term)
+(verb)|can|tin|preserve (generic term)|keep (generic term)
+(verb)|house|domiciliate|shelter (generic term)
+(verb)|contribute|pay (generic term)
+(verb)|nominate|put forward|nominate (generic term)|propose (generic term)
+putamen|1
+(noun)|basal ganglion (generic term)
+putative|1
+(adj)|purported|reputed|supposed|acknowledged (similar term)
+putdownable|1
+(adj)|uninteresting (similar term)
+putin|1
+(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman (generic term)|solon (generic term)|national leader (generic term)
+putoff|1
+(noun)|pretext (generic term)|stalking-horse (generic term)
+putout|1
+(noun)|out (generic term)
+putrajaya|1
+(noun)|Putrajaya|capital of Malaysia|city (generic term)|metropolis (generic term)|urban center (generic term)
+putrefacient|1
+(adj)|putrefactive|septic (similar term)|infected (similar term)
+putrefaction|3
+(noun)|rot|decay (generic term)
+(noun)|decomposition|rot|rotting|decay (generic term)
+(noun)|corruption|degeneracy|depravation|depravity|immorality (generic term)
+putrefactive|1
+(adj)|putrefacient|septic (similar term)|infected (similar term)
+putrefiable|1
+(adj)|decayable|putrescible|spoilable|perishable (similar term)
+putrefy|1
+(verb)|decay (generic term)
+putrescence|2
+(noun)|putridness|rottenness|corruption|putrefaction (generic term)|rot (generic term)
+(noun)|rottenness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+putrescent|1
+(adj)|rotten (similar term)
+putrescible|1
+(adj)|decayable|putrefiable|spoilable|perishable (similar term)
+putrescine|1
+(noun)|ptomaine (generic term)|ptomain (generic term)
+putrid|3
+(adj)|decay (related term)
+(adj)|rotten (similar term)
+(adj)|corrupt (similar term)
+putrid-smelling|1
+(adj)|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+putridity|1
+(noun)|impurity (generic term)|impureness (generic term)
+putridness|1
+(noun)|putrescence|rottenness|corruption|putrefaction (generic term)|rot (generic term)
+putsch|1
+(noun)|coup d'etat|coup|takeover|group action (generic term)
+putt|3
+(noun)|putting|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(verb)|hit (generic term)
+(verb)|play (generic term)
+puttee|1
+(noun)|legging (generic term)|legin (generic term)|leg covering (generic term)
+putter|5
+(noun)|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|putting iron|iron (generic term)
+(verb)|potter|busy (generic term)|occupy (generic term)
+(verb)|mess around|potter|tinker|monkey|monkey around|muck about|muck around|work (generic term)
+(verb)|potter|potter around|putter around|move (generic term)
+putter around|1
+(verb)|putter|potter|potter around|move (generic term)
+putterer|1
+(noun)|potterer|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+putting|1
+(noun)|putt|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+putting green|1
+(noun)|green|site (generic term)|land site (generic term)
+putting iron|1
+(noun)|putter|iron (generic term)
+putting to death|1
+(noun)|killing|kill|termination (generic term)|ending (generic term)|conclusion (generic term)
+putty|2
+(noun)|cement (generic term)|filler (generic term)
+(verb)|put on (generic term)|apply (generic term)
+putty knife|1
+(noun)|spatula (generic term)
+puttyroot|1
+(noun)|adam-and-eve|Aplectrum hyemale|orchid (generic term)|orchidaceous plant (generic term)
+putz|2
+(noun)|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|cock|prick|dick|shaft|pecker|peter|tool|penis (generic term)|phallus (generic term)|member (generic term)
+puzzle|4
+(noun)|puzzler|mystifier|teaser|problem (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+(verb)|perplex|vex|stick|get|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+puzzle out|1
+(verb)|solve|work out|figure out|lick|work|understand (generic term)
+puzzle over|1
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+puzzled|1
+(adj)|at a loss|nonplused|nonplussed|perplexed (similar term)
+puzzlement|1
+(noun)|bewilderment|obfuscation|befuddlement|mystification|bafflement|bemusement|confusion (generic term)|mental confusion (generic term)|confusedness (generic term)|muddiness (generic term)|disarray (generic term)
+puzzler|1
+(noun)|puzzle|mystifier|teaser|problem (generic term)
+puzzling|2
+(adj)|enigmatic|enigmatical|incomprehensible (similar term)|uncomprehensible (similar term)
+(adj)|confusing|perplexing|unclear (similar term)
+pva|1
+(noun)|polyvinyl acetate|PVA|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+pvc|2
+(noun)|polyvinyl chloride|PVC|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+(noun)|premature ventricular contraction|PVC|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+pwr|1
+(noun)|pressurized water reactor|PWR|water-cooled reactor (generic term)
+px|1
+(noun)|post exchange|PX|commissary (generic term)
+pya|1
+(noun)|Myanmar monetary unit (generic term)
+pyaemia|1
+(noun)|pyemia|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+pyaemic|1
+(adj)|pyemic|blood poisoning|septicemia|septicaemia (related term)
+pycnanthemum|1
+(noun)|Pycnanthemum|genus Pycnanthemum|Koellia|genus Koellia|asterid dicot genus (generic term)
+pycnanthemum virginianum|1
+(noun)|basil mint|Pycnanthemum virginianum|mountain mint (generic term)
+pycnidium|1
+(noun)|plant part (generic term)|plant structure (generic term)
+pycnodysostosis|1
+(noun)|dwarfism (generic term)|nanism (generic term)
+pycnogonid|1
+(noun)|sea spider|arthropod (generic term)
+pycnogonida|1
+(noun)|Pycnogonida|order Pycnogonida|animal order (generic term)
+pycnosis|1
+(noun)|pyknosis|disease (generic term)
+pycnotic|1
+(adj)|pyknotic|disease (related term)
+pydna|1
+(noun)|Pydna|Battle of Pydna|pitched battle (generic term)
+pye-dog|1
+(noun)|pariah dog|pie-dog|cur (generic term)|mongrel (generic term)|mutt (generic term)
+pyelitis|1
+(noun)|inflammatory disease (generic term)
+pyelogram|1
+(noun)|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+pyelography|1
+(noun)|roentgenography (generic term)|X-ray photography (generic term)
+pyelonephritis|1
+(noun)|urinary tract infection (generic term)
+pyemia|1
+(noun)|pyaemia|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+pyemic|1
+(adj)|pyaemic|blood poisoning|septicemia|septicaemia (related term)
+pygmalion|1
+(noun)|Pygmalion|mythical being (generic term)
+pygmy|2
+(noun)|pigmy|small person (generic term)
+(noun)|Pygmy|Pigmy|small person (generic term)
+pygmy chimpanzee|1
+(noun)|bonobo|Pan paniscus|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+pygmy cypress|1
+(noun)|Cupressus pigmaea|Cupressus goveniana pigmaea|cypress (generic term)|cypress tree (generic term)
+pygmy marmoset|1
+(noun)|Cebuella pygmaea|marmoset (generic term)
+pygmy mouse|1
+(noun)|Baiomys taylori|wood mouse (generic term)
+pygmy sperm whale|1
+(noun)|Kogia breviceps|toothed whale (generic term)
+pygopodidae|1
+(noun)|Pygopodidae|family Pygopodidae|reptile family (generic term)
+pygopus|1
+(noun)|Pygopus|genus Pygopus|reptile genus (generic term)
+pygoscelis|1
+(noun)|Pygoscelis|genus Pygoscelis|bird genus (generic term)
+pygoscelis adeliae|1
+(noun)|Adelie|Adelie penguin|Pygoscelis adeliae|penguin (generic term)
+pyinma|1
+(noun)|wood (generic term)
+pyjama|3
+(noun)|trouser (generic term)|pant (generic term)
+(noun)|pajama|trouser (generic term)|pant (generic term)
+(noun)|pajama|pj's|jammies|nightwear (generic term)|sleepwear (generic term)|nightclothes (generic term)
+pyknic|1
+(adj)|endomorphic|fat (similar term)|rounded (similar term)|fat (related term)|mesomorphic (antonym)|ectomorphic (antonym)
+pyknic type|1
+(noun)|endomorphy|body type (generic term)|somatotype (generic term)
+pyknosis|1
+(noun)|pycnosis|disease (generic term)
+pyknotic|1
+(adj)|pycnotic|disease (related term)
+pyle|1
+(noun)|Pyle|Howard Pyle|illustrator (generic term)|writer (generic term)|author (generic term)
+pylodictus|1
+(noun)|Pylodictus|genus Pylodictus|fish genus (generic term)
+pylodictus olivaris|1
+(noun)|flathead catfish|mudcat|goujon|shovelnose catfish|spoonbill catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+pylon|2
+(noun)|tower (generic term)
+(noun)|power pylon|tower (generic term)
+pyloric|1
+(adj)|orifice|opening|porta (related term)
+pyloric sphincter|1
+(noun)|pyloric valve|musculus sphincter pylori|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+pyloric stenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)
+pyloric valve|1
+(noun)|pyloric sphincter|musculus sphincter pylori|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+pyloric vein|1
+(noun)|right gastric vein|vena gastrica-dextra|gastric vein (generic term)|vena gastrica (generic term)
+pylorus|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+pynchon|1
+(noun)|Pynchon|Thomas Pynchon|writer (generic term)|author (generic term)
+pyocyanase|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+pyocyanin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+pyogenic|1
+(adj)|pathology (related term)
+pyongyang|1
+(noun)|Pyongyang|capital of North Korea|national capital (generic term)
+pyorrhea|2
+(noun)|pyorrhoea|pathology (generic term)
+(noun)|pyorrhoea|pyorrhea alveolaris|Riggs' disease|periodontal disease (generic term)|periodontitis (generic term)
+pyorrhea alveolaris|1
+(noun)|pyorrhea|pyorrhoea|Riggs' disease|periodontal disease (generic term)|periodontitis (generic term)
+pyorrhoea|2
+(noun)|pyorrhea|pathology (generic term)
+(noun)|pyorrhea|pyorrhea alveolaris|Riggs' disease|periodontal disease (generic term)|periodontitis (generic term)
+pyotr alexeyevich kropotkin|1
+(noun)|Kropotkin|Prince Peter Kropotkin|Pyotr Alexeyevich Kropotkin|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+pyotr ilych tchaikovsky|1
+(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer (generic term)
+pyotr tchaikovsky|1
+(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer (generic term)
+pyracanth|1
+(noun)|Pyracantha|fire thorn|firethorn|shrub (generic term)|bush (generic term)
+pyracantha|1
+(noun)|Pyracantha|pyracanth|fire thorn|firethorn|shrub (generic term)|bush (generic term)
+pyralid|1
+(noun)|pyralid moth|moth (generic term)
+pyralid moth|1
+(noun)|pyralid|moth (generic term)
+pyralidae|1
+(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family (generic term)
+pyralididae|1
+(noun)|Pyralidae|family Pyralidae|Pyralididae|family Pyralididae|arthropod family (generic term)
+pyralis|1
+(noun)|Pyralis|genus Pyralis|arthropod genus (generic term)
+pyramid|7
+(noun)|polyhedron (generic term)
+(noun)|speculation (generic term)|venture (generic term)
+(noun)|Pyramid|Great Pyramid|Pyramids of Egypt|memorial (generic term)|monument (generic term)
+(verb)|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|deal (generic term)|sell (generic term)|trade (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|increase (generic term)
+pyramid bugle|1
+(noun)|Ajuga pyramidalis|bugle (generic term)|bugleweed (generic term)
+pyramid plant|1
+(noun)|columbo|American columbo|deer's-ear|deer's-ears|American gentian|herb (generic term)|herbaceous plant (generic term)
+pyramid scheme|1
+(noun)|scheme (generic term)|strategy (generic term)
+pyramidal|1
+(adj)|pyramidic|pyramidical|pointed (similar term)
+pyramidal bone|1
+(noun)|triquetral|triquetral bone|os triquetrum|cuneiform bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+pyramidal motor system|1
+(noun)|pyramidal tract|corticospinal tract|motor nerve (generic term)|efferent nerve (generic term)|efferent (generic term)
+pyramidal tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+pyramidal tract|1
+(noun)|pyramidal motor system|corticospinal tract|motor nerve (generic term)|efferent nerve (generic term)|efferent (generic term)
+pyramidic|1
+(adj)|pyramidal|pyramidical|pointed (similar term)
+pyramidical|1
+(adj)|pyramidal|pyramidic|pointed (similar term)
+pyramiding|1
+(noun)|swindle (generic term)|cheat (generic term)|rig (generic term)
+pyramids of egypt|1
+(noun)|Pyramid|Great Pyramid|Pyramids of Egypt|memorial (generic term)|monument (generic term)
+pyrausta|1
+(noun)|Pyrausta|genus Pyrausta|arthropod genus (generic term)
+pyrausta nubilalis|2
+(noun)|corn borer|Pyrausta nubilalis|caterpillar (generic term)
+(noun)|corn borer|European corn borer moth|corn borer moth|Pyrausta nubilalis|pyralid (generic term)|pyralid moth (generic term)
+pyre|1
+(noun)|funeral pyre|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+pyrectic|2
+(adj)|substance|matter (related term)
+(noun)|pyrogen|substance (generic term)|matter (generic term)
+pyrene|2
+(noun)|hydrocarbon (generic term)
+(noun)|nutlet (generic term)
+pyrenees|1
+(noun)|Pyrenees|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+pyrenees daisy|1
+(noun)|Pyrenees daisy|Leucanthemum lacustre|Chrysanthemum lacustre|composite (generic term)|composite plant (generic term)
+pyrenomycetes|1
+(noun)|Pyrenomycetes|class Pyrenomycetes|class (generic term)
+pyrethrum|4
+(noun)|insecticide (generic term)|insect powder (generic term)
+(noun)|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb (generic term)|herbaceous plant (generic term)
+(noun)|painted daisy|Tanacetum coccineum|Chrysanthemum coccineum|flower (generic term)
+(noun)|Pyrethrum|genus Pyrethrum|asterid dicot genus (generic term)
+pyretic|1
+(adj)|antipyretic (antonym)
+pyrex|1
+(noun)|Pyrex|glass (generic term)
+pyrexia|1
+(noun)|fever|febrility|febricity|feverishness|symptom (generic term)
+pyridine|1
+(noun)|base (generic term)|alkali (generic term)
+pyridium|1
+(noun)|phenazopyridine|Pyridium|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+pyridoxal|1
+(noun)|vitamin B6|pyridoxine|pyridoxamine|adermin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+pyridoxamine|1
+(noun)|vitamin B6|pyridoxine|pyridoxal|adermin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+pyridoxine|1
+(noun)|vitamin B6|pyridoxal|pyridoxamine|adermin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+pyriform area|1
+(noun)|piriform area|pyriform lobe|piriform lobe|neural structure (generic term)
+pyriform lobe|1
+(noun)|pyriform area|piriform area|piriform lobe|neural structure (generic term)
+pyrilamine|1
+(noun)|antihistamine (generic term)
+pyrimidine|2
+(noun)|base (generic term)|alkali (generic term)
+(noun)|organic compound (generic term)
+pyrite|1
+(noun)|iron pyrite|fool's gold|mineral (generic term)
+pyrites|1
+(noun)|sulfide (generic term)|sulphide (generic term)
+pyrocellulose|1
+(noun)|cellulose nitrate (generic term)|nitrocellulose (generic term)|guncotton (generic term)|nitrocotton (generic term)
+pyrocephalus|1
+(noun)|Pyrocephalus|genus Pyrocephalus|bird genus (generic term)
+pyrocephalus rubinus mexicanus|1
+(noun)|vermillion flycatcher|firebird|Pyrocephalus rubinus mexicanus|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+pyrochemical|1
+(adj)|material|stuff (related term)
+pyrochemical process|1
+(noun)|pyrochemistry|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+pyrochemistry|1
+(noun)|pyrochemical process|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+pyroelectric|1
+(adj)|pyroelectrical|electrical phenomenon (related term)
+pyroelectrical|1
+(adj)|pyroelectric|electrical phenomenon (related term)
+pyroelectricity|1
+(noun)|electrical phenomenon (generic term)
+pyrogallic|1
+(adj)|phenol (related term)
+pyrogallic acid|1
+(noun)|pyrogallol|phenol (generic term)
+pyrogallol|1
+(noun)|pyrogallic acid|phenol (generic term)
+pyrogen|2
+(noun)|substance (generic term)|matter (generic term)
+(noun)|pyrectic|substance (generic term)|matter (generic term)
+pyrogenetic|1
+(adj)|pyrogenic|pyrogenous|substance|matter (related term)
+pyrogenic|2
+(adj)|pyrogenous|pyrogenetic|substance|matter (related term)
+(adj)|igneous|pyrogenous|temperature (related term)
+pyrogenous|2
+(adj)|pyrogenic|pyrogenetic|substance|matter (related term)
+(adj)|igneous|pyrogenic|temperature (related term)
+pyrograph|1
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+pyrographer|1
+(noun)|artist (generic term)|creative person (generic term)
+pyrographic|1
+(adj)|drawing|draftsmanship|drafting (related term)
+pyrography|1
+(noun)|drawing (generic term)|draftsmanship (generic term)|drafting (generic term)
+pyrola|1
+(noun)|wintergreen|herb (generic term)|herbaceous plant (generic term)
+pyrola americana|1
+(noun)|false wintergreen|Pyrola americana|Pyrola rotundifolia americana|wintergreen (generic term)|pyrola (generic term)
+pyrola elliptica|1
+(noun)|wild lily of the valley|shinleaf|Pyrola elliptica|wintergreen (generic term)|pyrola (generic term)
+pyrola minor|1
+(noun)|lesser wintergreen|Pyrola minor|wintergreen (generic term)|pyrola (generic term)
+pyrola rotundifolia|1
+(noun)|wild lily of the valley|Pyrola rotundifolia|wintergreen (generic term)|pyrola (generic term)
+pyrola rotundifolia americana|1
+(noun)|false wintergreen|Pyrola americana|Pyrola rotundifolia americana|wintergreen (generic term)|pyrola (generic term)
+pyrola uniflora|1
+(noun)|one-flowered wintergreen|one-flowered pyrola|Moneses uniflora|Pyrola uniflora|herb (generic term)|herbaceous plant (generic term)
+pyrolaceae|1
+(noun)|Pyrolaceae|family Pyrolaceae|wintergreen family|dilleniid dicot family (generic term)
+pyrolatry|1
+(noun)|fire-worship|worship (generic term)
+pyroligneous|1
+(adj)|pyrolignic|transformation|transmutation|shift (related term)
+pyroligneous acid|1
+(noun)|wood vinegar|liquid (generic term)
+pyrolignic|1
+(adj)|pyroligneous|transformation|transmutation|shift (related term)
+pyrolusite|1
+(noun)|mineral (generic term)
+pyrolysis|1
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)
+pyrolytic|1
+(adj)|transformation|transmutation|shift (related term)
+pyromancer|1
+(noun)|diviner (generic term)
+pyromancy|1
+(noun)|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+pyromania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+pyromaniac|1
+(noun)|lunatic (generic term)|madman (generic term)|maniac (generic term)
+pyrometer|1
+(noun)|thermometer (generic term)
+pyrometric cone|1
+(noun)|pyrometer (generic term)
+pyromorphite|1
+(noun)|green lead ore|mineral (generic term)
+pyrope|1
+(noun)|garnet (generic term)
+pyrophobia|1
+(noun)|simple phobia (generic term)
+pyrophoric alloy|1
+(noun)|alloy (generic term)|metal (generic term)
+pyrophorus|1
+(noun)|Pyrophorus|genus Pyrophorus|arthropod genus (generic term)
+pyrophorus noctiluca|1
+(noun)|firefly|fire beetle|Pyrophorus noctiluca|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+pyrophosphate|1
+(noun)|salt (generic term)
+pyrophosphoric acid|1
+(noun)|polyphosphoric acid (generic term)
+pyrophyllite|1
+(noun)|mineral (generic term)
+pyroscope|1
+(noun)|optical pyrometer|pyrometer (generic term)
+pyrosis|1
+(noun)|heartburn|symptom (generic term)
+pyrostat|1
+(noun)|thermostat (generic term)|thermoregulator (generic term)
+pyrotechnic|3
+(adj)|pyrotechnical|trade|craft (related term)
+(adj)|extraordinary (similar term)
+(noun)|firework|low explosive (generic term)
+pyrotechnical|1
+(adj)|pyrotechnic|trade|craft (related term)
+pyrotechnics|2
+(noun)|brilliance (generic term)|genius (generic term)
+(noun)|pyrotechny|trade (generic term)|craft (generic term)
+pyrotechny|1
+(noun)|pyrotechnics|trade (generic term)|craft (generic term)
+pyroxene|1
+(noun)|mineral (generic term)
+pyroxylin|1
+(noun)|pyroxyline|cellulose nitrate (generic term)|nitrocellulose (generic term)|guncotton (generic term)|nitrocotton (generic term)
+pyroxyline|1
+(noun)|pyroxylin|cellulose nitrate (generic term)|nitrocellulose (generic term)|guncotton (generic term)|nitrocotton (generic term)
+pyrrhic|5
+(adj)|ritual dancing|ritual dance|ceremonial dance (related term)
+(adj)|metrical foot|foot|metrical unit (related term)
+(adj)|king|male monarch|Rex (related term)
+(noun)|dibrach|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+pyrrhic victory|1
+(noun)|Pyrrhic victory|victory (generic term)|triumph (generic term)
+pyrrhocoridae|1
+(noun)|Pyrrhocoridae|family Pyrrhocoridae|arthropod family (generic term)
+pyrrhotine|1
+(noun)|pyrrhotite|magnetic pyrites|mineral (generic term)
+pyrrhotite|1
+(noun)|pyrrhotine|magnetic pyrites|mineral (generic term)
+pyrrhula|1
+(noun)|Pyrrhula|genus Pyrrhula|bird genus (generic term)
+pyrrhula pyrrhula|1
+(noun)|bullfinch|Pyrrhula pyrrhula|finch (generic term)
+pyrrhuloxia|1
+(noun)|Pyrrhuloxia sinuata|finch (generic term)
+pyrrhuloxia sinuata|1
+(noun)|pyrrhuloxia|Pyrrhuloxia sinuata|finch (generic term)
+pyrrhus|1
+(noun)|Pyrrhus|king (generic term)|male monarch (generic term)|Rex (generic term)
+pyrrophyta|1
+(noun)|Pyrrophyta|phylum Pyrrophyta|phylum (generic term)
+pyrrosia|1
+(noun)|Pyrrosia|genus Pyrrosia|fern genus (generic term)
+pyrrosia lingua|1
+(noun)|felt fern|tongue fern|Pyrrosia lingua|Cyclophorus lingua|fern (generic term)
+pyrularia|1
+(noun)|Pyrularia|genus Pyrularia|dilleniid dicot genus (generic term)
+pyrularia pubera|1
+(noun)|rabbitwood|buffalo nut|Pyrularia pubera|parasitic plant (generic term)
+pyrus|1
+(noun)|Pyrus|genus Pyrus|rosid dicot genus (generic term)
+pyrus communis|1
+(noun)|pear|pear tree|Pyrus communis|fruit tree (generic term)
+pyruvic acid|1
+(noun)|acid (generic term)
+pythagoras|1
+(noun)|Pythagoras|mathematician (generic term)|philosopher (generic term)
+pythagorean|1
+(adj)|Pythagorean|mathematician|philosopher (related term)
+pythia|1
+(noun)|Pythia|Pythoness|Greek deity (generic term)
+pythiaceae|1
+(noun)|Pythiaceae|family Pythiaceae|fungus family (generic term)
+pythian games|1
+(noun)|Pythian Games|agon (generic term)
+pythias|1
+(noun)|Phintias|Pythias|friend (generic term)
+pythium|1
+(noun)|fungus (generic term)
+pythium debaryanum|1
+(noun)|damping off fungus|Pythium debaryanum|pythium (generic term)
+pythius|1
+(noun)|Pythius|Apollo (generic term)|Phoebus (generic term)|Phoebus Apollo (generic term)
+python|3
+(noun)|boa (generic term)
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+(noun)|Python|mythical monster (generic term)|mythical creature (generic term)
+python molurus|1
+(noun)|Indian python|Python molurus|python (generic term)
+python reticulatus|1
+(noun)|reticulated python|Python reticulatus|python (generic term)
+python sebae|1
+(noun)|rock python|rock snake|Python sebae|python (generic term)
+python variegatus|1
+(noun)|carpet snake|Python variegatus|Morelia spilotes variegatus|python (generic term)
+pythoness|2
+(noun)|witch (generic term)
+(noun)|Pythia|Pythoness|Greek deity (generic term)
+pythonidae|1
+(noun)|Pythonidae|family Pythonidae|reptile family (generic term)
+pythoninae|1
+(noun)|Pythoninae|subfamily Pythoninae|reptile family (generic term)
+pyuria|1
+(noun)|symptom (generic term)
+pyx|2
+(noun)|pix|pyx chest|pix chest|chest (generic term)
+(noun)|pix|receptacle (generic term)
+pyx chest|1
+(noun)|pyx|pix|pix chest|chest (generic term)
+pyxidanthera|1
+(noun)|Pyxidanthera|genus Pyxidanthera|dilleniid dicot genus (generic term)
+pyxidanthera barbulata|1
+(noun)|pyxie|pixie|pixy|Pyxidanthera barbulata|shrub (generic term)|bush (generic term)
+pyxidium|1
+(noun)|pyxis|fruit (generic term)
+pyxie|1
+(noun)|pixie|pixy|Pyxidanthera barbulata|shrub (generic term)|bush (generic term)
+pyxis|3
+(noun)|pyxidium|fruit (generic term)
+(noun)|Pyxis|constellation (generic term)
+(noun)|box (generic term)
+q|1
+(noun)|Q|letter q|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+q fever|1
+(noun)|Q fever|rickettsial disease (generic term)|rickettsiosis (generic term)
+qabala|1
+(noun)|cabala|cabbala|cabbalah|kabala|kabbala|kabbalah|qabalah|secret (generic term)|arcanum (generic term)
+qabalah|1
+(noun)|cabala|cabbala|cabbalah|kabala|kabbala|kabbalah|qabala|secret (generic term)|arcanum (generic term)
+qabalistic|1
+(adj)|cabalistic|kabbalistic|cryptic|cryptical|sibylline|esoteric (similar term)
+qabbala|1
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+qabbalah|1
+(noun)|Kabbalah|Kabbala|Kabala|Cabbalah|Cabbala|Cabala|Qabbalah|Qabbala|theosophy (generic term)
+qaddafi|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+qadhafi|1
+(noun)|Qaddafi|Qadhafi|Khadafy|Gaddafi|Muammar al-Qaddafi|Muammar el-Qaddafi|leader (generic term)
+qadi|1
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+qaeda|1
+(noun)|al-Qaeda|Qaeda|al-Qa'ida|al-Qaida|Base|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+qandahar|1
+(noun)|Kandahar|Qandahar|city (generic term)|metropolis (generic term)|urban center (generic term)
+qara qum|1
+(noun)|Kara Kum|Qara Qum|Turkestan Desert|desert (generic term)
+qassam brigades|1
+(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+qat|1
+(noun)|kat|khat|quat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+qatar|2
+(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country (generic term)|Asian nation (generic term)
+(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula (generic term)
+qatar peninsula|1
+(noun)|Qatar|Qatar Peninsula|Katar|Katar Peninsula|peninsula (generic term)
+qatari|2
+(adj)|Qatari|Katari|Asian country|Asian nation (related term)
+(noun)|Qatari|Katari|Arab (generic term)|Arabian (generic term)
+qatari dirham|1
+(noun)|Qatari dirham|dirham|Qatari monetary unit (generic term)
+qatari monetary unit|1
+(noun)|Qatari monetary unit|monetary unit (generic term)
+qatari riyal|1
+(noun)|Qatari riyal|riyal|Qatari monetary unit (generic term)
+qcd|1
+(noun)|quantum chromodynamics|QCD|quantum field theory (generic term)
+qed|1
+(noun)|quantum electrodynamics|QED|quantum field theory (generic term)
+qepiq|1
+(noun)|Azerbaijani monetary unit (generic term)
+qi|1
+(noun)|chi|ch'i|ki|energy (generic term)|vim (generic term)|vitality (generic term)
+qiang|1
+(noun)|Qiang|Qiangic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+qiangic|1
+(noun)|Qiang|Qiangic|Tibeto-Burman (generic term)|Tibeto-Burman language (generic term)
+qibla|2
+(noun)|direction (generic term)|way (generic term)
+(noun)|Qibla|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+qindarka|1
+(noun)|qintar|Albanian monetary unit (generic term)
+qing|1
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+qing dynasty|1
+(noun)|Qing|Qing dynasty|Ch'ing|Ch'ing dynasty|Manchu|Manchu dynasty|dynasty (generic term)
+qintar|1
+(noun)|qindarka|Albanian monetary unit (generic term)
+qizil qum|1
+(noun)|Kyzyl Kum|Kizil Kum|Qizil Qum|desert (generic term)
+qoph|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+quaalude|1
+(noun)|methaqualone|Quaalude|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+quack|5
+(adj)|unqualified (similar term)
+(noun)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|mountebank (generic term)|charlatan (generic term)
+(noun)|sound (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+quack-quack|1
+(noun)|duck (generic term)
+quack grass|1
+(noun)|dog grass|couch grass|quackgrass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+quackery|2
+(noun)|empiricism|medical practice (generic term)
+(noun)|charlatanism|dishonesty (generic term)|knavery (generic term)
+quackgrass|1
+(noun)|dog grass|couch grass|quack grass|quick grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+quad|4
+(noun)|quadruplet|sibling (generic term)|sib (generic term)
+(noun)|quadriceps|quadriceps femoris|musculus quadriceps femoris|extensor muscle (generic term)|extensor (generic term)
+(noun)|space|type (generic term)
+(noun)|quadrangle|area (generic term)
+quadragesima|1
+(noun)|Quadragesima|Quadrigesima Sunday|Christian holy day (generic term)
+quadrangle|2
+(noun)|quadrilateral|tetragon|polygon (generic term)|polygonal shape (generic term)
+(noun)|quad|area (generic term)
+quadrangular|1
+(adj)|polygon|polygonal shape (related term)
+quadrangular prism|1
+(noun)|prism (generic term)
+quadrant|4
+(noun)|right angle|angular unit (generic term)
+(noun)|quarter-circle|line (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+quadrantanopia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+quadraphonic|1
+(adj)|quadriphonic|quadrasonic|quadrisonic|stereo|stereophony|stereo system|stereophonic system (related term)
+quadraphonic system|1
+(noun)|quadraphony|quadriphonic system|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+quadraphony|1
+(noun)|quadraphonic system|quadriphonic system|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+quadrasonic|1
+(adj)|quadraphonic|quadriphonic|quadrisonic|stereo|stereophony|stereo system|stereophonic system (related term)
+quadrate|3
+(adj)|square (similar term)
+(noun)|cube (generic term)|regular hexahedron (generic term)
+(noun)|square (generic term)|foursquare (generic term)
+quadratic|4
+(adj)|rectangle|regular polygon (related term)
+(adj)|number (related term)
+(noun)|quadratic equation|equation (generic term)
+(noun)|quadratic polynomial|polynomial (generic term)|multinomial (generic term)
+quadratic equation|1
+(noun)|quadratic|equation (generic term)
+quadratic polynomial|1
+(noun)|quadratic|polynomial (generic term)|multinomial (generic term)
+quadratics|1
+(noun)|algebra (generic term)
+quadrature|1
+(noun)|construction (generic term)
+quadrennium|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+quadric|1
+(noun)|quadric surface|curve (generic term)|curved shape (generic term)
+quadric surface|1
+(noun)|quadric|curve (generic term)|curved shape (generic term)
+quadriceps|1
+(noun)|quadriceps femoris|musculus quadriceps femoris|quad|extensor muscle (generic term)|extensor (generic term)
+quadriceps femoris|1
+(noun)|quadriceps|musculus quadriceps femoris|quad|extensor muscle (generic term)|extensor (generic term)
+quadrigesima sunday|1
+(noun)|Quadragesima|Quadrigesima Sunday|Christian holy day (generic term)
+quadrilateral|2
+(adj)|four-sided|multilateral (similar term)|many-sided (similar term)
+(noun)|quadrangle|tetragon|polygon (generic term)|polygonal shape (generic term)
+quadrille|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|square dance (generic term)|square dancing (generic term)
+quadrillion|1
+(noun)|large integer (generic term)
+quadrillionth|2
+(adj)|ordinal (similar term)
+(noun)|one-quadrillionth|common fraction (generic term)|simple fraction (generic term)
+quadripara|1
+(noun)|mother (generic term)|female parent (generic term)
+quadripartite|1
+(adj)|four-party|multilateral (similar term)|many-sided (similar term)
+quadriphonic|1
+(adj)|quadraphonic|quadrasonic|quadrisonic|stereo|stereophony|stereo system|stereophonic system (related term)
+quadriphonic system|1
+(noun)|quadraphony|quadraphonic system|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+quadriplegia|1
+(noun)|paralysis (generic term)|palsy (generic term)
+quadriplegic|1
+(noun)|handicapped person (generic term)
+quadrisonic|1
+(adj)|quadraphonic|quadriphonic|quadrasonic|stereo|stereophony|stereo system|stereophonic system (related term)
+quadrivium|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+quadroon|1
+(noun)|Quadroon|mixed-blood (generic term)
+quadrumvirate|1
+(noun)|quartet (generic term)|quartette (generic term)|foursome (generic term)
+quadruped|2
+(adj)|quadrupedal|four-footed|biped (antonym)|bipedal (antonym)
+(noun)|tetrapod (generic term)
+quadrupedal|1
+(adj)|quadruped|four-footed|biped (antonym)|bipedal (antonym)
+quadruple|5
+(adj)|quadruplicate|quadruplex|fourfold|four-fold|multiple (similar term)
+(adj)|fourfold|four-fold|multiple (similar term)
+(noun)|quartet|quartette|quadruplet|set (generic term)
+(noun)|multiple (generic term)
+(verb)|multiply (generic term)|manifold (generic term)
+quadruple time|1
+(noun)|common time|four-four time|common measure|musical time (generic term)
+quadruplet|3
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quartet|foursome|Little Joe|digit (generic term)|figure (generic term)
+(noun)|quad|sibling (generic term)|sib (generic term)
+(noun)|quartet|quartette|quadruple|set (generic term)
+quadruplex|1
+(adj)|quadruple|quadruplicate|fourfold|four-fold|multiple (similar term)
+quadruplicate|3
+(adj)|quadruple|quadruplex|fourfold|four-fold|multiple (similar term)
+(noun)|copy (generic term)
+(verb)|reproduce (generic term)
+quadrupling|1
+(noun)|multiplication (generic term)
+quaestor|1
+(noun)|official (generic term)|functionary (generic term)
+quaff|2
+(noun)|draft (generic term)|draught (generic term)|potation (generic term)|tipple (generic term)
+(verb)|gulp|swig|drink (generic term)|imbibe (generic term)
+quaffer|1
+(noun)|drinker (generic term)
+quag|1
+(noun)|mire|quagmire|morass|slack|bog (generic term)|peat bog (generic term)
+quagga|1
+(noun)|Equus quagga|equine (generic term)|equid (generic term)
+quaggy|1
+(adj)|boggy|marshy|miry|mucky|muddy|sloppy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+quagmire|1
+(noun)|mire|quag|morass|slack|bog (generic term)|peat bog (generic term)
+quahaug|2
+(noun)|quahog|hard-shell clam|round clam|clam (generic term)
+(noun)|quahog|hard-shell clam|hard clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+quahog|2
+(noun)|quahaug|hard-shell clam|round clam|clam (generic term)
+(noun)|quahaug|hard-shell clam|hard clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+quai d'orsay|2
+(noun)|Quai d'Orsay|street (generic term)
+(noun)|French Foreign Office|Quai d'Orsay|Foreign Office (generic term)
+quail|3
+(noun)|wildfowl (generic term)
+(noun)|phasianid (generic term)
+(verb)|flinch|squinch|funk|cringe|shrink|wince|recoil|move (generic term)
+quail-like|1
+(adj)|animal (similar term)
+quail at|1
+(verb)|apprehend|anticipate (generic term)|look for (generic term)|look to (generic term)
+quail brush|1
+(noun)|quail bush|white thistle|Atriplex lentiformis|saltbush (generic term)
+quail bush|1
+(noun)|quail brush|white thistle|Atriplex lentiformis|saltbush (generic term)
+quaint|2
+(adj)|strange (similar term)|unusual (similar term)
+(adj)|old-time|olde worlde|fashionable (similar term)|stylish (similar term)
+quaintness|2
+(noun)|old-fashionedness (generic term)
+(noun)|unfamiliarity (generic term)|strangeness (generic term)
+quake|3
+(noun)|earthquake|temblor|seism|geological phenomenon (generic term)
+(verb)|quiver|palpitate|tremble (generic term)
+(verb)|tremor|shake (generic term)|agitate (generic term)
+quaker|2
+(noun)|Friend|Quaker|Christian (generic term)
+(noun)|trembler|coward (generic term)
+quaker gun|1
+(noun)|Quaker gun|gun (generic term)
+quakerism|1
+(noun)|Quakerism|theological doctrine (generic term)
+quakers|1
+(noun)|Religious Society of Friends|Society of Friends|Quakers|sect (generic term)|religious sect (generic term)|religious order (generic term)
+quaking aspen|1
+(noun)|European quaking aspen|Populus tremula|aspen (generic term)
+qualification|3
+(noun)|making|fitness (generic term)|fittingness (generic term)
+(noun)|revision (generic term)|alteration (generic term)
+(noun)|reservation|statement (generic term)
+qualified|7
+(adj)|well-qualified (similar term)|competent (related term)|eligible (related term)|unqualified (antonym)
+(adj)|conditional (similar term)|hedged (similar term)|weasel-worded (similar term)|limited (similar term)|modified (similar term)|conditional (related term)|modified (related term)|unqualified (antonym)
+(adj)|certified|registered (similar term)
+(adj)|restricted|modified (similar term)
+(adj)|moderated|tempered (similar term)
+(adj)|dependent|dependant|conditional (similar term)
+(adj)|competent (similar term)
+qualifier|2
+(noun)|contestant (generic term)
+(noun)|modifier|content word (generic term)|open-class word (generic term)
+qualify|7
+(verb)|measure up|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|pronounce (generic term)|label (generic term)|judge (generic term)|disqualify (antonym)
+(verb)|restrict|modify (generic term)
+(verb)|dispose|prepare (generic term)|groom (generic term)|train (generic term)|disqualify (antonym)
+(verb)|stipulate|condition|specify|contract (generic term)|undertake (generic term)
+(verb)|characterize|characterise|remember (generic term)|think of (generic term)
+(verb)|modify|add (generic term)
+qualifying|2
+(noun)|modification|limiting|grammatical relation (generic term)
+(noun)|passing|pass|success (generic term)|failing (antonym)
+qualifying adjective|1
+(noun)|descriptive adjective|adjective (generic term)
+qualitative|2
+(adj)|soft (similar term)|quantitative (antonym)
+(adj)|analysis (related term)
+qualitative analysis|1
+(noun)|chemical analysis|analysis (generic term)
+quality|7
+(adj)|choice|prime|prize|select|superior (similar term)
+(adj)|upper-class (similar term)
+(noun)|attribute (generic term)
+(noun)|caliber|calibre|degree (generic term)|grade (generic term)|level (generic term)
+(noun)|character|lineament|property (generic term)|attribute (generic term)|dimension (generic term)
+(noun)|timbre|timber|tone|sound property (generic term)
+(noun)|social station (generic term)|social status (generic term)|social rank (generic term)|rank (generic term)
+quality control|1
+(noun)|internal control (generic term)
+quality of life|1
+(noun)|gratification (generic term)|satisfaction (generic term)
+qualm|2
+(noun)|scruple|misgiving|anxiety (generic term)
+(noun)|queasiness|squeamishness|nausea (generic term)|sickness (generic term)
+quamash|1
+(noun)|camas|camass|camosh|camash|liliaceous plant (generic term)
+quamassia|1
+(noun)|Camassia|genus Camassia|Quamassia|genus Quamassia|liliid monocot genus (generic term)
+quamoclit pennata|1
+(noun)|cypress vine|star-glory|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory (generic term)
+quandang|2
+(noun)|quandong|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree (generic term)
+(noun)|quandong|quantong|native peach|edible fruit (generic term)
+quandary|2
+(noun)|predicament|plight|difficulty (generic term)
+(noun)|dilemma|perplexity (generic term)
+quandong|4
+(noun)|quandang|quandong tree|Eucarya acuminata|Fusanus acuminatus|tree (generic term)
+(noun)|blue fig|fruit (generic term)
+(noun)|quandong tree|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree (generic term)
+(noun)|quandang|quantong|native peach|edible fruit (generic term)
+quandong nut|1
+(noun)|edible nut (generic term)
+quandong tree|2
+(noun)|quandong|quandang|Eucarya acuminata|Fusanus acuminatus|tree (generic term)
+(noun)|quandong|Brisbane quandong|silver quandong tree|blue fig|Elaeocarpus grandis|tree (generic term)
+quango|1
+(noun)|quasi-NGO|organization (generic term)|organisation (generic term)
+quantal|1
+(adj)|quantized|measure|quantity|amount (related term)
+quantic|1
+(noun)|homogeneous polynomial (generic term)
+quantifiability|1
+(noun)|measurability|quality (generic term)
+quantifiable|1
+(adj)|quantitative (similar term)
+quantification|2
+(noun)|restriction (generic term)|limitation (generic term)
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+quantifier|2
+(noun)|logical quantifier|word (generic term)
+(noun)|word (generic term)
+quantify|2
+(verb)|specify (generic term)|set (generic term)|determine (generic term)|fix (generic term)|limit (generic term)
+(verb)|measure|carry (generic term)|convey (generic term)|express (generic term)
+quantisation|1
+(noun)|quantization|division (generic term)
+quantise|2
+(verb)|quantize|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|quantize|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+quantitative|3
+(adj)|decimal (similar term)|decimal (similar term)|denary (similar term)|duodecimal (similar term)|numeric (similar term)|numerical (similar term)|quantifiable (similar term)|three-figure (similar term)|valued (similar term)|vicenary (similar term)|qualitative (antonym)
+(adj)|amount (related term)
+(adj)|syllabic (antonym)|accentual (antonym)
+quantitative analysis|1
+(noun)|quantitative chemical analysis|chemical analysis (generic term)|qualitative analysis (generic term)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+quantitative chemical analysis|1
+(noun)|quantitative analysis|chemical analysis (generic term)|qualitative analysis (generic term)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+quantitative relation|1
+(noun)|magnitude relation|relation (generic term)
+quantity|3
+(noun)|measure|amount|abstraction (generic term)
+(noun)|amount (generic term)
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+quantity unit|1
+(noun)|charge unit|electromagnetic unit (generic term)|emu (generic term)
+quantization|1
+(noun)|quantisation|division (generic term)
+quantize|2
+(verb)|quantise|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|quantise|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+quantized|1
+(adj)|quantal|measure|quantity|amount (related term)
+quantong|1
+(noun)|quandong|quandang|native peach|edible fruit (generic term)
+quantum|2
+(noun)|quantity (generic term)
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+quantum chromodynamics|1
+(noun)|QCD|quantum field theory (generic term)
+quantum electrodynamics|1
+(noun)|QED|quantum field theory (generic term)
+quantum field theory|1
+(noun)|quantum physics (generic term)
+quantum jump|2
+(noun)|leap (generic term)|jump (generic term)|saltation (generic term)
+(noun)|quantum leap|jump (generic term)|leap (generic term)
+quantum leap|1
+(noun)|quantum jump|jump (generic term)|leap (generic term)
+quantum mechanics|1
+(noun)|quantum physics (generic term)
+quantum physics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+quantum theory|1
+(noun)|scientific theory (generic term)
+quaoar|1
+(noun)|Quaoar|minor planet (generic term)|planetoid (generic term)
+quapaw|1
+(noun)|Quapaw|Dhegiha (generic term)
+quarantine|3
+(noun)|isolation (generic term)
+(noun)|isolation (generic term)|closing off (generic term)
+(verb)|isolate (generic term)|insulate (generic term)
+quarantined|1
+(adj)|isolated|segregated (similar term)|unintegrated (similar term)
+quark|2
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+(noun)|quark cheese|cheese (generic term)
+quark cheese|1
+(noun)|quark|cheese (generic term)
+quarrel|3
+(noun)|wrangle|row|words|run-in|dustup|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|arrow (generic term)
+(verb)|dispute|scrap|argufy|altercate|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+quarreler|1
+(noun)|quarreller|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+quarreller|1
+(noun)|quarreler|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+quarrelsome|1
+(adj)|argumentative (similar term)
+quarrelsomeness|1
+(noun)|contentiousness|disagreeableness (generic term)
+quarrier|1
+(noun)|quarryman|worker (generic term)
+quarry|4
+(noun)|prey|target|fair game|victim (generic term)
+(noun)|pit|stone pit|excavation (generic term)
+(noun)|prey|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(verb)|exploit (generic term)|tap (generic term)
+quarrying|1
+(noun)|production (generic term)
+quarryman|1
+(noun)|quarrier|worker (generic term)
+quart|3
+(noun)|United States liquid unit (generic term)
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|dry quart|United States dry unit (generic term)
+quartan|2
+(adj)|fundamental quantity|fundamental measure (related term)
+(noun)|ague (generic term)|chills and fever (generic term)
+quarter|18
+(noun)|one-fourth|fourth|fourth part|twenty-five percent|quartern|common fraction (generic term)|simple fraction (generic term)
+(noun)|city district (generic term)
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|time unit (generic term)|unit of time (generic term)
+(noun)|school term (generic term)|academic term (generic term)|academic session (generic term)|session (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|orientation (generic term)
+(noun)|avoirdupois unit (generic term)
+(noun)|British capacity unit (generic term)|Imperial capacity unit (generic term)
+(noun)|coin (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|stern|after part|poop|tail|rear (generic term)|back (generic term)
+(noun)|piece of leather (generic term)
+(noun)|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(verb)|billet|canton|lodge (generic term)|accommodate (generic term)
+(verb)|draw|draw and quarter|kill (generic term)
+(verb)|segment (generic term)|section (generic term)
+(verb)|divide (generic term)|fraction (generic term)
+quarter-century|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+quarter-circle|1
+(noun)|quadrant|line (generic term)
+quarter-hour|1
+(noun)|15 minutes|time unit (generic term)|unit of time (generic term)
+quarter-tone|1
+(noun)|quarter tone|interval (generic term)|musical interval (generic term)
+quarter-vine|1
+(noun)|cross vine|trumpet flower|quartervine|Bignonia capreolata|vine (generic term)
+quarter crack|1
+(noun)|sand crack (generic term)
+quarter day|1
+(noun)|Christian holy day (generic term)
+quarter horse|1
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+quarter mile|1
+(noun)|440 yards|linear unit (generic term)
+quarter note|1
+(noun)|crotchet|note (generic term)|musical note (generic term)|tone (generic term)
+quarter plate|1
+(noun)|plate (generic term)|photographic plate (generic term)
+quarter pound|1
+(noun)|avoirdupois unit (generic term)
+quarter rest|1
+(noun)|rest (generic term)
+quarter round|1
+(noun)|ovolo|thumb|molding (generic term)|moulding (generic term)
+quarter section|1
+(noun)|area unit (generic term)|square measure (generic term)
+quarter sessions|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+quarter stock|1
+(noun)|stock (generic term)
+quarter tone|1
+(noun)|quarter-tone|interval (generic term)|musical interval (generic term)
+quarterback|2
+(noun)|signal caller|field general|back (generic term)
+(verb)|play (generic term)
+quarterdeck|1
+(noun)|deck (generic term)
+quarterfinal|1
+(noun)|match (generic term)
+quartering|3
+(noun)|coat of arms (generic term)|arms (generic term)|blazon (generic term)|blazonry (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|division (generic term)
+quarterlight|1
+(noun)|car window (generic term)
+quarterly|3
+(adj)|time period|period of time|period (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|every quarter
+quartermaster|1
+(noun)|army officer (generic term)
+quartermaster general|1
+(noun)|staff officer (generic term)
+quartern|1
+(noun)|one-fourth|fourth|quarter|fourth part|twenty-five percent|common fraction (generic term)|simple fraction (generic term)
+quarters|1
+(noun)|living quarters|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+quarterstaff|1
+(noun)|staff (generic term)
+quartervine|1
+(noun)|cross vine|trumpet flower|quarter-vine|Bignonia capreolata|vine (generic term)
+quartet|5
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quaternity|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+(noun)|quartette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|quartette|quadruplet|quadruple|set (generic term)
+(noun)|quartette|foursome|gathering (generic term)|assemblage (generic term)
+(noun)|quartette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+quartette|4
+(noun)|quartet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|quartet|quadruplet|quadruple|set (generic term)
+(noun)|quartet|foursome|gathering (generic term)|assemblage (generic term)
+(noun)|quartet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+quartic|1
+(noun)|biquadrate|biquadratic|fourth power|number (generic term)
+quartic polynomial|1
+(noun)|biquadratic|biquadratic polynomial|polynomial (generic term)|multinomial (generic term)
+quartile|1
+(noun)|mark (generic term)|grade (generic term)|score (generic term)
+quarto|1
+(noun)|4to|size (generic term)
+quartz|2
+(noun)|quartz glass|vitreous silica|lechatelierite|crystal|natural glass (generic term)
+(noun)|mineral (generic term)
+quartz battery|1
+(noun)|quartz mill|stamp mill (generic term)|stamping mill (generic term)
+quartz crystal|1
+(noun)|quartz (generic term)
+quartz glass|1
+(noun)|quartz|vitreous silica|lechatelierite|crystal|natural glass (generic term)
+quartz lamp|1
+(noun)|mercury-vapor lamp (generic term)
+quartz mill|1
+(noun)|quartz battery|stamp mill (generic term)|stamping mill (generic term)
+quartz oscillator|1
+(noun)|crystal oscillator|oscillator (generic term)
+quartzite|1
+(noun)|rock (generic term)|stone (generic term)
+quartzose|1
+(adj)|mineral (related term)
+quasar|1
+(noun)|quasi-stellar radio source|celestial body (generic term)|heavenly body (generic term)
+quash|2
+(verb)|repress|keep down|subdue|subjugate|reduce|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|invalidate|annul|void|avoid|nullify|cancel (generic term)|strike down (generic term)|validate (antonym)
+quasi|1
+(adj)|similar (similar term)
+quasi-ngo|1
+(noun)|quango|quasi-NGO|organization (generic term)|organisation (generic term)
+quasi-religious|1
+(adj)|sacred (similar term)
+quasi-royal|1
+(adj)|uncrowned (similar term)|crownless (similar term)
+quasi-stellar radio source|1
+(noun)|quasar|celestial body (generic term)|heavenly body (generic term)
+quasi contract|1
+(noun)|contract (generic term)
+quasiparticle|1
+(noun)|quantum (generic term)
+quassia|2
+(noun)|organic compound (generic term)
+(noun)|bitterwood|Quassia amara|bitterwood tree (generic term)
+quassia amara|1
+(noun)|quassia|bitterwood|Quassia amara|bitterwood tree (generic term)
+quassia family|1
+(noun)|Simaroubaceae|family Simaroubaceae|rosid dicot family (generic term)
+quat|1
+(noun)|kat|khat|qat|cat|Arabian tea|African tea|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+quatercentenary|1
+(noun)|quatercentennial|anniversary (generic term)|day of remembrance (generic term)
+quatercentennial|1
+(noun)|quatercentenary|anniversary (generic term)|day of remembrance (generic term)
+quatern|1
+(noun)|four|4|IV|tetrad|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+quaternary|4
+(adj)|quaternate|multiple (similar term)
+(adj)|fourth|4th|ordinal (similar term)
+(noun)|Quaternary|Quaternary period|Age of Man|period (generic term)|geological period (generic term)
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+quaternary ammonium compound|1
+(noun)|organic compound (generic term)
+quaternary period|1
+(noun)|Quaternary|Quaternary period|Age of Man|period (generic term)|geological period (generic term)
+quaternate|1
+(adj)|quaternary|multiple (similar term)
+quaternion|1
+(noun)|four|4|IV|tetrad|quatern|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+quaternity|1
+(noun)|four|4|IV|tetrad|quatern|quaternion|quaternary|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+quatrain|1
+(noun)|stanza (generic term)
+quattrocento|1
+(noun)|century (generic term)
+quaver|4
+(noun)|sound (generic term)
+(noun)|eighth note|note (generic term)|musical note (generic term)|tone (generic term)
+(verb)|waver|voice (generic term)|sound (generic term)|vocalize (generic term)|vocalise (generic term)
+(verb)|warble|trill|sing (generic term)
+quavering|1
+(adj)|tremulous|unsteady (similar term)
+quay|1
+(noun)|pier (generic term)|wharf (generic term)|wharfage (generic term)|dock (generic term)
+quayage|1
+(noun)|wharfage|fee (generic term)
+queasiness|2
+(noun)|squeamishness|qualm|nausea (generic term)|sickness (generic term)
+(noun)|restlessness|uneasiness|nervousness (generic term)
+queasy|3
+(adj)|nauseating|nauseous|noisome|loathsome|offensive|sickening|vile|unwholesome (similar term)
+(adj)|nauseated|nauseous|sick|sickish|ill (similar term)|sick (similar term)
+(adj)|anxious|nervous|uneasy|unquiet|troubled (similar term)
+quebec|2
+(noun)|Quebec|Quebec City|provincial capital (generic term)
+(noun)|Quebec|Canadian province (generic term)
+quebec bridge|1
+(noun)|Quebec Bridge|cantilever bridge (generic term)
+quebec city|1
+(noun)|Quebec|Quebec City|provincial capital (generic term)
+quebecois|2
+(adj)|Quebecois|Canadian province (related term)
+(noun)|Quebecois|Canadian (generic term)
+quechua|2
+(noun)|Quechua|Kechua|South American Indian (generic term)
+(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+quechuan|2
+(adj)|Quechuan|Kechuan|South American Indian (related term)|Amerind|Amerindian language|American-Indian language|American Indian|Indian (related term)
+(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+quechuan language|1
+(noun)|Quechua|Quechuan|Quechuan language|Kechua|Kechuan|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+queckenstedt's test|1
+(noun)|Queckenstedt's test|diagnostic test (generic term)|diagnostic assay (generic term)
+queen|11
+(noun)|insect (generic term)
+(noun)|queen regnant|female monarch|female aristocrat (generic term)|male monarch (antonym)|king (antonym)
+(noun)|female aristocrat (generic term)
+(noun)|personification (generic term)
+(noun)|king|world-beater|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|fagot|faggot|fag|fairy|nance|pansy|queer|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+(noun)|face card (generic term)|picture card (generic term)|court card (generic term)
+(noun)|chessman (generic term)|chess piece (generic term)
+(noun)|queen mole rat|naked mole rat (generic term)
+(noun)|tabby|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+(verb)|promote (generic term)
+queen's counsel|1
+(noun)|Queen's Counsel|Counsel to the Crown (generic term)
+queen's crape myrtle|1
+(noun)|Queen's crape myrtle|pride-of-India|Lagerstroemia speciosa|angiospermous tree (generic term)|flowering tree (generic term)
+queen's cup|1
+(noun)|bride's bonnet|Clintonia uniflora|clintonia (generic term)|Clinton's lily (generic term)
+queen-size|1
+(adj)|queen-sized|large (similar term)|big (similar term)
+queen-sized|1
+(adj)|queen-size|large (similar term)|big (similar term)
+queen anne's lace|1
+(noun)|wild carrot|Queen Anne's lace|Daucus carota|wildflower (generic term)|wild flower (generic term)
+queen bee|1
+(noun)|queen (generic term)
+queen charlotte sound|1
+(noun)|Queen Charlotte Sound|sound (generic term)
+queen city|1
+(noun)|Charlotte|Queen City|city (generic term)|metropolis (generic term)|urban center (generic term)
+queen consort|1
+(noun)|queen (generic term)
+queen dowager|1
+(noun)|queen (generic term)
+queen isabella|1
+(noun)|Isabella|Queen Isabella|Isabella I|Isabella the Catholic|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+queen it over|1
+(verb)|lord it over|put on airs|act superior|act (generic term)|move (generic term)
+queen maud land|1
+(noun)|Queen Maud Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+queen mole rat|1
+(noun)|queen|naked mole rat (generic term)
+queen mother|1
+(noun)|queen dowager (generic term)
+queen of england|1
+(noun)|Queen of England|queen (generic term)|queen regnant (generic term)|female monarch (generic term)
+queen of the may|1
+(noun)|May queen|queen of the May|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+queen of the night|1
+(noun)|Selenicereus grandiflorus|night-blooming cereus (generic term)
+queen post|1
+(noun)|post (generic term)
+queen regent|1
+(noun)|queen (generic term)
+queen regnant|1
+(noun)|queen|female monarch|female aristocrat (generic term)|male monarch (antonym)|king (antonym)
+queen triggerfish|1
+(noun)|Bessy cerca|oldwench|oldwife|Balistes vetula|triggerfish (generic term)
+queen victoria|1
+(noun)|Victoria|Queen Victoria|Queen of England (generic term)|empress (generic term)
+queenfish|1
+(noun)|white croaker|Seriphus politus|croaker (generic term)
+queenlike|1
+(adj)|queenly|noble (similar term)
+queenly|1
+(adj)|queenlike|noble (similar term)
+queens|1
+(noun)|Queens|borough (generic term)
+queensboro bridge|1
+(noun)|Queensboro Bridge|cantilever bridge (generic term)
+queensland|1
+(noun)|Queensland|Australian state (generic term)
+queensland bottletree|1
+(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree (generic term)|bottle tree (generic term)
+queensland grass-cloth plant|1
+(noun)|Queensland grass-cloth plant|Pipturus argenteus|woody plant (generic term)|ligneous plant (generic term)
+queensland hemp|1
+(noun)|Queensland hemp|jellyleaf|Sida rhombifolia|mallow (generic term)
+queensland kauri|1
+(noun)|dundathu pine|smooth bark kauri|Agathis robusta|kauri pine (generic term)|dammar pine (generic term)
+queensland nut|1
+(noun)|Queensland nut|Macadamia tetraphylla|macadamia (generic term)|macadamia tree (generic term)
+queer|5
+(adj)|curious|funny|odd|peculiar|rum|rummy|singular|strange (similar term)|unusual (similar term)
+(adj)|gay|homophile|homosexual (similar term)
+(noun)|fagot|faggot|fag|fairy|nance|pansy|queen|poof|poove|pouf|gay man (generic term)|shirtlifter (generic term)
+(verb)|thwart|spoil|scotch|foil|cross|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|expose|scupper|endanger|peril|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+queer bird|1
+(noun)|kook|odd fellow|odd fish|queer duck|odd man out|anomaly (generic term)|unusual person (generic term)
+queer duck|1
+(noun)|kook|odd fellow|odd fish|queer bird|odd man out|anomaly (generic term)|unusual person (generic term)
+queerly|2
+(adv)|strangely|oddly|funnily
+(adv)|fishily
+queerness|2
+(noun)|oddity|quirk|quirkiness|crotchet|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|homosexuality|homosexualism|homoeroticism|gayness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+quell|2
+(verb)|squelch|quench|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|stay|appease|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+quelled|1
+(adj)|quenched|squelched|suppressed (similar term)
+quelling|1
+(noun)|suppression|crushing|stifling|prevention (generic term)|bar (generic term)
+quellung|1
+(noun)|quellung reaction|organic process (generic term)|biological process (generic term)
+quellung reaction|1
+(noun)|quellung|organic process (generic term)|biological process (generic term)
+quench|6
+(verb)|slake|allay|assuage|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|snuff out|blow out|extinguish|ignite (antonym)
+(verb)|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|squelch|quell|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+(verb)|cool (generic term)|chill (generic term)|cool down (generic term)
+quenched|2
+(adj)|satisfied|slaked|mitigated (similar term)
+(adj)|quelled|squelched|suppressed (similar term)
+quenched steel|1
+(noun)|steel (generic term)
+quenching|1
+(noun)|extinction|extinguishing|termination (generic term)|ending (generic term)|conclusion (generic term)
+quenchless|1
+(adj)|unquenchable|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+quentin jerome tarantino|1
+(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+quentin tarantino|1
+(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+quercitron|2
+(noun)|dye (generic term)|dyestuff (generic term)
+(noun)|black oak|yellow oak|quercitron oak|Quercus velutina|oak (generic term)|oak tree (generic term)
+quercitron oak|1
+(noun)|black oak|yellow oak|quercitron|Quercus velutina|oak (generic term)|oak tree (generic term)
+quercus|1
+(noun)|Quercus|genus Quercus|hamamelid dicot genus (generic term)
+quercus agrifolia|1
+(noun)|coast live oak|California live oak|Quercus agrifolia|live oak (generic term)
+quercus alba|1
+(noun)|American white oak|Quercus alba|white oak (generic term)
+quercus arizonica|1
+(noun)|Arizona white oak|Quercus arizonica|white oak (generic term)
+quercus bicolor|1
+(noun)|swamp white oak|swamp oak|Quercus bicolor|white oak (generic term)
+quercus borealis|1
+(noun)|northern red oak|Quercus rubra|Quercus borealis|red oak (generic term)
+quercus cerris|1
+(noun)|European turkey oak|turkey oak|Quercus cerris|oak (generic term)|oak tree (generic term)
+quercus chrysolepis|1
+(noun)|canyon oak|canyon live oak|maul oak|iron oak|Quercus chrysolepis|live oak (generic term)
+quercus coccinea|1
+(noun)|scarlet oak|Quercus coccinea|oak (generic term)|oak tree (generic term)
+quercus ellipsoidalis|1
+(noun)|jack oak|northern pin oak|Quercus ellipsoidalis|oak (generic term)|oak tree (generic term)
+quercus falcata|1
+(noun)|southern red oak|swamp red oak|turkey oak|Quercus falcata|red oak (generic term)
+quercus garryana|1
+(noun)|Oregon white oak|Oregon oak|Garry oak|Quercus garryana|white oak (generic term)
+quercus grosseserrata|1
+(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak (generic term)|oak tree (generic term)
+quercus ilex|1
+(noun)|holm oak|holm tree|holly-leaved oak|evergreen oak|Quercus ilex|oak (generic term)|oak tree (generic term)
+quercus ilicifolia|1
+(noun)|bear oak|Quercus ilicifolia|scrub oak (generic term)
+quercus imbricaria|1
+(noun)|shingle oak|laurel oak|Quercus imbricaria|oak (generic term)|oak tree (generic term)
+quercus incana|1
+(noun)|bluejack oak|turkey oak|Quercus incana|oak (generic term)|oak tree (generic term)
+quercus kelloggii|1
+(noun)|California black oak|Quercus kelloggii|oak (generic term)|oak tree (generic term)
+quercus laevis|1
+(noun)|American turkey oak|turkey oak|Quercus laevis|oak (generic term)|oak tree (generic term)
+quercus laurifolia|1
+(noun)|laurel oak|pin oak|Quercus laurifolia|oak (generic term)|oak tree (generic term)
+quercus lobata|1
+(noun)|California white oak|valley oak|valley white oak|roble|Quercus lobata|white oak (generic term)
+quercus lyrata|1
+(noun)|overcup oak|Quercus lyrata|oak (generic term)|oak tree (generic term)
+quercus macrocarpa|1
+(noun)|bur oak|burr oak|mossy-cup oak|mossycup oak|Quercus macrocarpa|white oak (generic term)
+quercus marilandica|1
+(noun)|blackjack oak|blackjack|jack oak|Quercus marilandica|scrub oak (generic term)
+quercus michauxii|1
+(noun)|swamp chestnut oak|Quercus michauxii|chestnut oak (generic term)
+quercus mongolica|1
+(noun)|Japanese oak|Quercus mongolica|Quercus grosseserrata|oak (generic term)|oak tree (generic term)
+quercus montana|1
+(noun)|basket oak|cow oak|Quercus prinus|Quercus montana|chestnut oak (generic term)
+quercus muehlenbergii|1
+(noun)|chinquapin oak|chinkapin oak|yellow chestnut oak|Quercus muehlenbergii|chestnut oak (generic term)
+quercus myrtifolia|1
+(noun)|myrtle oak|seaside scrub oak|Quercus myrtifolia|scrub oak (generic term)
+quercus nigra|1
+(noun)|water oak|possum oak|Quercus nigra|oak (generic term)|oak tree (generic term)
+quercus nuttalli|1
+(noun)|Nuttall oak|Nuttall's oak|Quercus nuttalli|oak (generic term)|oak tree (generic term)
+quercus palustris|1
+(noun)|pin oak|swamp oak|Quercus palustris|oak (generic term)|oak tree (generic term)
+quercus petraea|1
+(noun)|durmast|Quercus petraea|Quercus sessiliflora|white oak (generic term)
+quercus phellos|1
+(noun)|willow oak|Quercus phellos|oak (generic term)|oak tree (generic term)
+quercus prinoides|1
+(noun)|dwarf chinkapin oak|dwarf chinquapin oak|dwarf oak|Quercus prinoides|chestnut oak (generic term)
+quercus prinus|1
+(noun)|basket oak|cow oak|Quercus prinus|Quercus montana|chestnut oak (generic term)
+quercus robur|1
+(noun)|common oak|English oak|pedunculate oak|Quercus robur|white oak (generic term)
+quercus rubra|1
+(noun)|northern red oak|Quercus rubra|Quercus borealis|red oak (generic term)
+quercus sessiliflora|1
+(noun)|durmast|Quercus petraea|Quercus sessiliflora|white oak (generic term)
+quercus shumardii|1
+(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak (generic term)
+quercus stellata|1
+(noun)|post oak|box white oak|brash oak|iron oak|Quercus stellata|oak (generic term)|oak tree (generic term)
+quercus suber|1
+(noun)|cork oak|Quercus suber|oak (generic term)|oak tree (generic term)
+quercus texana|1
+(noun)|Spanish oak|Quercus texana|oak (generic term)|oak tree (generic term)
+quercus vaccinifolia|1
+(noun)|huckleberry oak|Quercus vaccinifolia|shrub (generic term)|bush (generic term)
+quercus variabilis|1
+(noun)|Chinese cork oak|Quercus variabilis|oak (generic term)|oak tree (generic term)
+quercus velutina|1
+(noun)|black oak|yellow oak|quercitron|quercitron oak|Quercus velutina|oak (generic term)|oak tree (generic term)
+quercus virginiana|1
+(noun)|southern live oak|Quercus virginiana|live oak (generic term)
+quercus wislizenii|1
+(noun)|interior live oak|Quercus wislizenii|Quercus wizlizenii|live oak (generic term)
+quercus wizlizenii|1
+(noun)|interior live oak|Quercus wislizenii|Quercus wizlizenii|live oak (generic term)
+querier|1
+(noun)|inquirer|enquirer|questioner|asker|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+quern|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+querulous|1
+(adj)|fretful|whiney|whining|whiny|complaining (similar term)|complaintive (similar term)
+querulously|1
+(adv)|peevishly|fractiously
+querulousness|1
+(noun)|temper (generic term)|biliousness (generic term)|irritability (generic term)|peevishness (generic term)|pettishness (generic term)|snappishness (generic term)|surliness (generic term)
+query|2
+(noun)|question|inquiry|enquiry|interrogation|questioning (generic term)|inquiring (generic term)|answer (antonym)
+(verb)|question|ask (generic term)
+query language|1
+(noun)|command language|search language|source language (generic term)
+quest|7
+(noun)|pursuit|pursuance|search (generic term)
+(noun)|seeking|search (generic term)|hunt (generic term)|hunting (generic term)
+(verb)|seek (generic term)
+(verb)|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+(verb)|bay|bark (generic term)
+(verb)|solicit (generic term)|beg (generic term)|tap (generic term)
+(verb)|request|bespeak|call for|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+quest after|1
+(verb)|quest for|go after|pursue|search (generic term)|seek (generic term)|look for (generic term)
+quest for|1
+(verb)|go after|quest after|pursue|search (generic term)|seek (generic term)|look for (generic term)
+quester|1
+(noun)|seeker|searcher|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+question|11
+(noun)|inquiry|enquiry|query|interrogation|questioning (generic term)|inquiring (generic term)|answer (antonym)
+(noun)|head|subject (generic term)|topic (generic term)|theme (generic term)
+(noun)|interrogation|interrogative|interrogative sentence|sentence (generic term)
+(noun)|doubt|dubiousness|doubtfulness|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+(noun)|motion|proposal (generic term)
+(noun)|marriage proposal (generic term)|proposal of marriage (generic term)|marriage offer (generic term)|proposal (generic term)
+(verb)|oppugn|call into question|challenge (generic term)
+(verb)|interrogate|ask (generic term)
+(verb)|query|ask (generic term)
+(verb)|interview|converse (generic term)|discourse (generic term)
+(verb)|wonder|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+question mark|1
+(noun)|interrogation point|punctuation (generic term)|punctuation mark (generic term)
+question master|1
+(noun)|quizmaster|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+question of fact|1
+(noun)|matter of fact|question (generic term)|head (generic term)
+question of law|1
+(noun)|matter of law|question (generic term)|head (generic term)
+question sheet|1
+(noun)|test paper|examination paper|exam paper|examination (generic term)|exam (generic term)|test (generic term)
+question time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+questionable|2
+(adj)|alleged (similar term)|so-called (similar term)|supposed (similar term)|apocryphal (similar term)|debatable (similar term)|problematic (similar term)|problematical (similar term)|doubtful (similar term)|dubious (similar term)|dubitable (similar term)|in question (similar term)|equivocal (similar term)|fishy (similar term)|funny (similar term)|shady (similar term)|suspect (similar term)|suspicious (similar term)|impugnable (similar term)|self-styled (similar term)|soi-disant (similar term)|contestable (related term)|unquestionable (antonym)
+(adj)|refutable|confutable|confutative|deniable (similar term)
+questionably|1
+(adv)|dubiously
+questioner|1
+(noun)|inquirer|enquirer|querier|asker|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+questioning|4
+(adj)|quizzical|perplexed (similar term)
+(adj)|doubting|skeptical|sceptical|distrustful (similar term)
+(adj)|inquisitive|speculative|wondering|curious (similar term)
+(noun)|inquiring|request (generic term)|asking (generic term)
+questioningly|2
+(adv)|wonderingly
+(adv)|quizzically
+questionnaire|1
+(noun)|form (generic term)
+quetch|1
+(verb)|complain|kick|plain|sound off|kvetch|cheer (antonym)
+quetzal|2
+(noun)|Guatemalan monetary unit (generic term)
+(noun)|quetzal bird|trogon (generic term)
+quetzal bird|1
+(noun)|quetzal|trogon (generic term)
+quetzalcoatl|1
+(noun)|Quetzalcoatl|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+queue|4
+(noun)|waiting line|line (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|braid (generic term)|plait (generic term)|tress (generic term)|twist (generic term)
+(verb)|line up|queue up|stand (generic term)|stand up (generic term)
+queue up|1
+(verb)|line up|queue|stand (generic term)|stand up (generic term)
+quezon city|1
+(noun)|Quezon City|city (generic term)|metropolis (generic term)|urban center (generic term)
+qui vive|1
+(noun)|alert|readiness (generic term)|preparedness (generic term)|preparation (generic term)
+quiaquia|1
+(noun)|round scad|cigarfish|Decapterus punctatus|scad (generic term)
+quibble|3
+(noun)|quiddity|cavil|evasion (generic term)|equivocation (generic term)
+(verb)|hedge (generic term)|fudge (generic term)|evade (generic term)|put off (generic term)|circumvent (generic term)|parry (generic term)|elude (generic term)|skirt (generic term)|dodge (generic term)|duck (generic term)|sidestep (generic term)
+(verb)|niggle|pettifog|bicker|squabble|brabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+quibbler|1
+(noun)|caviller|caviler|pettifogger|malcontent (generic term)
+quibbling|1
+(adj)|caviling|carping|nitpicking|pettifogging|critical (similar term)
+quiche|3
+(noun)|Quiche|Mayan (generic term)|Maya (generic term)
+(noun)|tart (generic term)
+(noun)|Quiche|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+quiche lorraine|1
+(noun)|quiche Lorraine|quiche (generic term)
+quick|8
+(adj)|speedy|fast (similar term)
+(adj)|flying|fast|hurried (similar term)
+(adj)|agile|nimble|spry|active (similar term)
+(adj)|ready|intelligent (similar term)
+(adj)|immediate|prompt|straightaway|fast (similar term)
+(adj)|warm|excitable (similar term)
+(noun)|area (generic term)|region (generic term)
+(adv)|promptly|quickly
+quick-change|1
+(adj)|changeable (similar term)|changeful (similar term)
+quick-drying|1
+(adj)|changeable (similar term)|changeful (similar term)
+quick-eared|1
+(adj)|sharp-eared|hearing (similar term)
+quick-freeze|1
+(verb)|flash-freeze|freeze (generic term)
+quick-frozen|1
+(adj)|flash-frozen|frozen|preserved (similar term)
+quick-sighted|2
+(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|sharp-eyed|sharp-sighted|sighted (similar term)
+(adj)|sharp-sighted|sharp-eyed|perceptive (similar term)
+quick-tempered|1
+(adj)|choleric|irascible|hotheaded|hot-tempered|short-tempered|ill-natured (similar term)
+quick-witted|1
+(adj)|adroit (similar term)
+quick-wittedness|1
+(noun)|mental quickness|quickness|intelligence (generic term)
+quick assets|1
+(noun)|liquid assets|current assets|assets (generic term)
+quick bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+quick buck|1
+(noun)|fast buck|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+quick fix|1
+(noun)|band aid|quickie|quicky|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+quick grass|1
+(noun)|dog grass|couch grass|quackgrass|quack grass|witch grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+quick march|1
+(noun)|march (generic term)|marching (generic term)
+quick study|1
+(noun)|sponge|learner (generic term)|scholar (generic term)|assimilator (generic term)
+quick temper|1
+(noun)|irascibility|short temper|spleen|bad temper (generic term)|ill temper (generic term)
+quick time|1
+(noun)|pace (generic term)|gait (generic term)
+quicken|5
+(verb)|accelerate|speed up|speed|intensify (generic term)|deepen (generic term)|decelerate (antonym)
+(verb)|whet|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|invigorate|stimulate (generic term)|excite (generic term)
+(verb)|move (generic term)
+(verb)|animate|recreate|reanimate|revive|renovate|repair|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+quickener|1
+(noun)|invigorator|enlivener|agent (generic term)
+quickening|3
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|acceleration|speedup|speed (generic term)|speeding (generic term)|hurrying (generic term)|deceleration (antonym)
+quicker|1
+(adv)|faster
+quickest|1
+(adv)|fastest
+quickie|1
+(noun)|band aid|quick fix|quicky|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+quicklime|1
+(noun)|calcium oxide|lime|calx|calcined lime|fluxing lime|unslaked lime|burnt lime|oxide (generic term)
+quickly|3
+(adv)|rapidly|speedily|chop-chop|apace|slowly (antonym)
+(adv)|promptly|quick
+(adv)|cursorily
+quickness|3
+(noun)|adeptness|adroitness|deftness|facility|skillfulness (generic term)
+(noun)|mental quickness|quick-wittedness|intelligence (generic term)
+(noun)|celerity|rapidity|rapidness|speediness|pace (generic term)|rate (generic term)
+quicksand|2
+(noun)|situation (generic term)
+(noun)|pit (generic term)|cavity (generic term)
+quickset|2
+(adj)|planted (similar term)
+(noun)|cutting (generic term)|slip (generic term)
+quicksilver|2
+(adj)|erratic|fickle|mercurial|changeable (similar term)|changeful (similar term)
+(noun)|mercury|hydrargyrum|Hg|atomic number 80|metallic element (generic term)|metal (generic term)
+quickstep|3
+(noun)|military march (generic term)|military music (generic term)|martial music (generic term)
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+quicky|1
+(noun)|band aid|quick fix|quickie|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+quid|3
+(noun)|British pound|pound|British pound sterling|pound sterling|British monetary unit (generic term)
+(noun)|quid pro quo|retainer (generic term)|consideration (generic term)
+(noun)|chew|chaw|cud|plug|wad|morsel (generic term)|bit (generic term)|bite (generic term)
+quid pro quo|1
+(noun)|quid|retainer (generic term)|consideration (generic term)
+quiddity|2
+(noun)|quibble|cavil|evasion (generic term)|equivocation (generic term)
+(noun)|haecceity|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+quidnunc|1
+(noun)|busybody|nosy-parker|nosey-parker|meddler (generic term)
+quiesce|1
+(verb)|quieten|hush|quiet|quiet down|pipe down|change intensity (generic term)|louden (antonym)
+quiescence|2
+(noun)|dormancy|quiescency|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|quiescency|dormancy|sleeping|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+quiescency|2
+(noun)|dormancy|quiescence|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|quiescence|dormancy|sleeping|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+quiescent|3
+(adj)|quiet (similar term)
+(adj)|dormant (similar term)|inactive (similar term)
+(adj)|inactive (similar term)
+quiet|13
+(adj)|quiescent (similar term)|relaxing (similar term)|restful (similar term)|reposeful (similar term)|slumberous (similar term)|slumbrous (similar term)|untroubled (similar term)|peaceful (related term)|tame (related term)|unagitated (related term)|unquiet (antonym)
+(adj)|noiseless (similar term)|silent (similar term)|soundless (similar term)|still (similar term)|stilly (similar term)|tiptoe (similar term)|inaudible (related term)|unhearable (related term)|soft (related term)|noisy (antonym)
+(adj)|restrained|unostentatious (similar term)|unpretentious (similar term)|unpretending (similar term)
+(adj)|hushed|muted|subdued|soft (similar term)
+(adj)|placid|still|tranquil|smooth|unruffled|calm (similar term)
+(adj)|active (antonym)
+(noun)|lull|calmness (generic term)
+(noun)|tranquillity|tranquility|order (generic term)
+(noun)|silence|sound property (generic term)|sound (antonym)
+(noun)|repose|placidity|serenity|tranquillity|tranquility|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(verb)|quieten|hush|quiesce|quiet down|pipe down|change intensity (generic term)|louden (antonym)
+(verb)|calm|calm down|tranquilize|tranquillize|tranquillise|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(adv)|quietly|unquietly (antonym)
+quiet down|1
+(verb)|quieten|hush|quiet|quiesce|pipe down|change intensity (generic term)|louden (antonym)
+quieten|3
+(verb)|hush|quiet|quiesce|quiet down|pipe down|change intensity (generic term)|louden (antonym)
+(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|hush|silence|still|shut up|hush up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+quietening|1
+(adj)|calming|lulling|unalarming (similar term)
+quietism|1
+(noun)|mysticism (generic term)|religious mysticism (generic term)
+quietist|1
+(noun)|mystic (generic term)|religious mystic (generic term)
+quietly|4
+(adv)|softly|loudly (antonym)
+(adv)|noisily (antonym)
+(adv)|quiet|unquietly (antonym)
+(adv)|restfully
+quietness|2
+(noun)|soundlessness|silence (generic term)|quiet (generic term)
+(noun)|tranquillity|tranquility|quietude|calmness (generic term)
+quietude|1
+(noun)|tranquillity|tranquility|quietness|calmness (generic term)
+quietus|1
+(noun)|rest|eternal rest|sleep|eternal sleep|death (generic term)
+quiff|1
+(noun)|forelock (generic term)
+quill|4
+(noun)|quill pen|pen (generic term)
+(noun)|spine (generic term)
+(noun)|flight feather|pinion|quill feather|feather (generic term)|plume (generic term)|plumage (generic term)
+(noun)|calamus|shaft|rib (generic term)
+quill feather|1
+(noun)|flight feather|pinion|quill|feather (generic term)|plume (generic term)|plumage (generic term)
+quill pen|1
+(noun)|quill|pen (generic term)
+quillwort|1
+(noun)|fern ally (generic term)
+quillwort family|1
+(noun)|Isoetaceae|family Isoetaceae|fern family (generic term)
+quilt|3
+(noun)|comforter|puff|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+(verb)|sew (generic term)|tailor (generic term)|tailor-make (generic term)
+quilted|1
+(adj)|thick (similar term)
+quilted bedspread|1
+(noun)|bedspread (generic term)|bedcover (generic term)|bed cover (generic term)|bed covering (generic term)|counterpane (generic term)|spread (generic term)
+quilting|2
+(noun)|stitch (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+quilting bee|1
+(noun)|bee (generic term)
+quin|1
+(noun)|quintuplet|quint|sibling (generic term)|sib (generic term)
+quinacrine|1
+(noun)|quinacrine hydrochloride|mepacrine|Atabrine|antimalarial (generic term)|antimalarial drug (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+quinacrine hydrochloride|1
+(noun)|quinacrine|mepacrine|Atabrine|antimalarial (generic term)|antimalarial drug (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+quince|2
+(noun)|quince bush|Cydonia oblonga|fruit tree (generic term)
+(noun)|edible fruit (generic term)|pome (generic term)|false fruit (generic term)
+quince bush|1
+(noun)|quince|Cydonia oblonga|fruit tree (generic term)
+quincentenary|2
+(adj)|quincentennial|anniversary|day of remembrance (related term)
+(noun)|quincentennial|anniversary (generic term)|day of remembrance (generic term)
+quincentennial|2
+(adj)|quincentenary|anniversary|day of remembrance (related term)
+(noun)|quincentenary|anniversary (generic term)|day of remembrance (generic term)
+quincy|1
+(noun)|Quincy|Josiah Quincy|American Revolutionary leader (generic term)
+quine|1
+(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher (generic term)|logician (generic term)|logistician (generic term)
+quinidex|1
+(noun)|quinidine|Quinidex|Quinora|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+quinidine|1
+(noun)|Quinidex|Quinora|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+quinine|1
+(noun)|antimalarial (generic term)|antimalarial drug (generic term)
+quinine water|1
+(noun)|tonic|tonic water|soft drink (generic term)
+quinnat salmon|1
+(noun)|chinook|chinook salmon|king salmon|Oncorhynchus tshawytscha|salmon (generic term)
+quinone|1
+(noun)|benzoquinone|compound (generic term)|chemical compound (generic term)
+quinora|1
+(noun)|quinidine|Quinidex|Quinora|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+quinquagesima|1
+(noun)|Quinquagesima|Quinquagesima Sunday|Christian holy day (generic term)
+quinquagesima sunday|1
+(noun)|Quinquagesima|Quinquagesima Sunday|Christian holy day (generic term)
+quinquefoliate|1
+(adj)|compound (similar term)
+quinquefoliate leaf|1
+(noun)|compound leaf (generic term)
+quinquennium|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+quinsy|1
+(noun)|peritonsillar abscess|angina (generic term)
+quint|2
+(noun)|five|5|V|cinque|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|quintuplet|quin|sibling (generic term)|sib (generic term)
+quintal|2
+(noun)|metric weight unit (generic term)|weight unit (generic term)
+(noun)|hundredweight|cwt|short hundredweight|centner|cental|avoirdupois unit (generic term)
+quintana roo|1
+(noun)|Quintana Roo|state (generic term)|province (generic term)
+quintessence|3
+(noun)|ether|element (generic term)
+(noun)|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+(noun)|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+quintessential|1
+(adj)|example|illustration|instance|representative (related term)
+quintet|5
+(noun)|quintette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|five|5|V|cinque|quint|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|quintette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|quintette|quintuplet|quintuple|set (generic term)
+(noun)|quintette|fivesome|gathering (generic term)|assemblage (generic term)
+quintette|4
+(noun)|quintet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|quintet|quintuplet|quintuple|set (generic term)
+(noun)|quintet|fivesome|gathering (generic term)|assemblage (generic term)
+(noun)|quintet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+quintillion|1
+(noun)|large integer (generic term)
+quintillionth|2
+(adj)|ordinal (similar term)
+(noun)|one-quintillionth|common fraction (generic term)|simple fraction (generic term)
+quintipara|1
+(noun)|mother (generic term)|female parent (generic term)
+quintuple|3
+(adj)|fivefold|five-fold|multiple (similar term)
+(noun)|quintet|quintette|quintuplet|set (generic term)
+(verb)|multiply (generic term)|manifold (generic term)
+quintuplet|3
+(noun)|five|5|V|cinque|quint|quintet|fivesome|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|quint|quin|sibling (generic term)|sib (generic term)
+(noun)|quintet|quintette|quintuple|set (generic term)
+quintupling|1
+(noun)|multiplication (generic term)
+quintus septimius florens tertullianus|1
+(noun)|Tertullian|Quintus Septimius Florens Tertullianus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+quip|3
+(noun)|epigram|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|wisecrack|crack|sally|remark (generic term)|comment (generic term)
+(verb)|gag|joke (generic term)|jest (generic term)
+quipu|1
+(noun)|calculator (generic term)|calculating machine (generic term)
+quira|2
+(noun)|Panama redwood|wood (generic term)
+(noun)|tree (generic term)
+quire|1
+(noun)|definite quantity (generic term)
+quirk|3
+(noun)|oddity|queerness|quirkiness|crotchet|unfamiliarity (generic term)|strangeness (generic term)
+(noun)|groove (generic term)|channel (generic term)
+(verb)|twist (generic term)
+quirk bead|1
+(noun)|bead and quirk|beading (generic term)|bead (generic term)|beadwork (generic term)|astragal (generic term)
+quirk molding|1
+(noun)|quirk moulding|molding (generic term)|moulding (generic term)
+quirk moulding|1
+(noun)|quirk molding|molding (generic term)|moulding (generic term)
+quirkiness|1
+(noun)|oddity|queerness|quirk|crotchet|unfamiliarity (generic term)|strangeness (generic term)
+quirky|1
+(adj)|far-out|kinky|offbeat|way-out|unconventional (similar term)
+quirt|1
+(noun)|whip (generic term)
+quiscalus|1
+(noun)|Quiscalus|genus Quiscalus|bird genus (generic term)
+quiscalus quiscula|1
+(noun)|purple grackle|Quiscalus quiscula|grackle (generic term)|crow blackbird (generic term)
+quisling|1
+(noun)|collaborator|collaborationist|traitor (generic term)|treasonist (generic term)
+quislingism|1
+(noun)|collaboration|collaborationism|cooperation (generic term)
+quit|5
+(verb)|discontinue|stop|cease|give up|lay off|continue (antonym)
+(verb)|leave office|step down|resign|leave (generic term)|depart (generic term)|pull up stakes (generic term)|take office (antonym)
+(verb)|depart|take leave|leave (generic term)|go forth (generic term)|go away (generic term)|stay (antonym)
+(verb)|foreswear|renounce|relinquish|abandon (generic term)|give up (generic term)
+(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in|throw in the towel|chuck up the sponge|enter (antonym)
+quitclaim|2
+(noun)|quitclaim deed|conveyance (generic term)
+(noun)|transfer (generic term)|transference (generic term)
+quitclaim deed|1
+(noun)|quitclaim|conveyance (generic term)
+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 (generic term)|large indefinite amount (generic term)
+quite an|1
+(adv)|quite|quite a
+quito|1
+(noun)|Quito|capital of Ecuador|national capital (generic term)
+quits|1
+(adj)|equal (similar term)
+quittance|2
+(noun)|document (generic term)
+(noun)|repayment|payment (generic term)
+quitter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+quiver|7
+(noun)|frisson|shiver|chill|shudder|thrill|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|shaking|shakiness|trembling|quivering|vibration|palpitation|motion (generic term)
+(noun)|case (generic term)
+(noun)|vibration|quivering|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|quake|palpitate|tremble (generic term)
+(verb)|flicker|waver|flitter|flutter|move back and forth (generic term)
+(verb)|pulsate|beat|move (generic term)
+quivering|2
+(noun)|shaking|shakiness|trembling|quiver|vibration|palpitation|motion (generic term)
+(noun)|vibration|quiver|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+quixotic|1
+(adj)|romantic|wild-eyed|impractical (similar term)
+quixotism|1
+(noun)|knight errantry|idealism (generic term)
+quiz|2
+(noun)|examination (generic term)|exam (generic term)|test (generic term)
+(verb)|test|examine (generic term)
+quiz program|1
+(noun)|game show (generic term)|giveaway (generic term)
+quizmaster|1
+(noun)|question master|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+quizzer|1
+(noun)|examiner|tester|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+quizzical|2
+(adj)|mocking|teasing|playful (similar term)
+(adj)|questioning|perplexed (similar term)
+quizzically|1
+(adv)|questioningly
+qum|1
+(noun)|Qum|city (generic term)|metropolis (generic term)|urban center (generic term)
+quo warranto|1
+(noun)|hearing (generic term)
+quodlibet|1
+(noun)|issue (generic term)
+quoin|3
+(noun)|coign|coigne|wedge (generic term)
+(noun)|coign|coigne|keystone (generic term)|key (generic term)|headstone (generic term)
+(noun)|corner|structure (generic term)|construction (generic term)
+quoit|1
+(noun)|game equipment (generic term)
+quoits|1
+(noun)|horseshoes|outdoor game (generic term)
+quondam|1
+(adj)|erstwhile|former|old|onetime|sometime|past (similar term)
+quonset hut|1
+(noun)|Nissen hut|Quonset hut|hut (generic term)|army hut (generic term)|field hut (generic term)
+quoratean|1
+(noun)|Quoratean|Hokan (generic term)|Hoka (generic term)
+quorum|1
+(noun)|gathering (generic term)|assemblage (generic term)
+quota|3
+(noun)|number (generic term)
+(noun)|allotment (generic term)|allocation (generic term)
+(noun)|trade barrier (generic term)|import barrier (generic term)
+quotability|1
+(noun)|worthiness (generic term)
+quotable|2
+(adj)|repeatable|unquotable (antonym)|unrepeatable (antonym)
+(adj)|worthy (similar term)
+quotation|4
+(noun)|citation|cite|acknowledgment|credit|reference|mention|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|quote|citation|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|statement (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+quotation mark|1
+(noun)|quote|inverted comma|punctuation (generic term)|punctuation mark (generic term)
+quote|6
+(noun)|quotation mark|inverted comma|punctuation (generic term)|punctuation mark (generic term)
+(noun)|quotation|citation|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(verb)|cite|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|give (generic term)
+(verb)|cite|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|punctuate (generic term)|mark (generic term)
+quoter|1
+(noun)|communicator (generic term)
+quotidian|1
+(adj)|everyday|mundane|routine|unremarkable|workaday|ordinary (similar term)
+quotient|2
+(noun)|ratio (generic term)
+(noun)|number (generic term)
+quotient verdict|1
+(noun)|compromise verdict (generic term)
+quran|1
+(noun)|Koran|Quran|al-Qur'an|Book|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+qurush|1
+(noun)|Saudi Arabian monetary unit (generic term)
+qwerty keyboard|1
+(noun)|QWERTY keyboard|typewriter keyboard (generic term)
+r|4
+(noun)|roentgen|R|radioactivity unit (generic term)
+(noun)|gas constant|universal gas constant|R|constant (generic term)
+(noun)|R|letter r|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|radius|length (generic term)
+r-2|1
+(noun)|R-2|Mexican valium|rophy|rope|roofy|roach|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+r. b. cattell|1
+(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist (generic term)
+r. buckminster fuller|1
+(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect (generic term)|designer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+r. j. mitchell|1
+(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer (generic term)
+r.c.|1
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity (related term)
+r.v.|1
+(noun)|recreational vehicle|RV|R.V.|self-propelled vehicle (generic term)
+r and b|1
+(noun)|rhythm and blues|R and B|popular music (generic term)|popular music genre (generic term)|black music (generic term)|African-American music (generic term)
+ra|3
+(noun)|radium|Ra|atomic number 88|metallic element (generic term)|metal (generic term)
+(noun)|Ra|Re|Egyptian deity (generic term)
+(noun)|right ascension|RA|celestial longitude|angular distance (generic term)
+rabat|1
+(noun)|Rabat|capital of Morocco|national capital (generic term)
+rabato|1
+(noun)|rebato|collar (generic term)|neckband (generic term)
+rabbet|3
+(noun)|rebate|groove (generic term)|channel (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|cut out (generic term)
+rabbet joint|1
+(noun)|joint (generic term)
+rabbet plane|1
+(noun)|openside plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+rabbi|2
+(noun)|spiritual leader (generic term)
+(noun)|Rabbi|title (generic term)|title of respect (generic term)|form of address (generic term)
+rabbi moses ben maimon|1
+(noun)|Maimonides|Moses Maimonides|Rabbi Moses Ben Maimon|philosopher (generic term)
+rabbinate|2
+(noun)|priesthood (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+rabbinic|1
+(adj)|rabbinical|spiritual leader (related term)
+rabbinical|1
+(adj)|rabbinic|spiritual leader (related term)
+rabbit|4
+(noun)|coney|cony|leporid (generic term)|leporid mammal (generic term)
+(noun)|lapin|fur (generic term)|pelt (generic term)
+(noun)|hare|game (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+rabbit's-foot fern|1
+(noun)|golden polypody|serpent fern|Phlebodium aureum|Polypodium aureum|fern (generic term)
+rabbit-eared bandicoot|1
+(noun)|rabbit bandicoot|bilby|Macrotis lagotis|bandicoot (generic term)
+rabbit-eye blueberry|1
+(noun)|rabbiteye blueberry|rabbiteye|Vaccinium ashei|blueberry (generic term)|blueberry bush (generic term)
+rabbit-sized|1
+(adj)|sized (similar term)
+rabbit-weed|1
+(noun)|rabbitweed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+rabbit bandicoot|1
+(noun)|rabbit-eared bandicoot|bilby|Macrotis lagotis|bandicoot (generic term)
+rabbit brush|1
+(noun)|rabbit bush|Chrysothamnus nauseosus|goldenbush (generic term)
+rabbit burrow|1
+(noun)|rabbit hole|hole (generic term)|hollow (generic term)
+rabbit bush|1
+(noun)|rabbit brush|Chrysothamnus nauseosus|goldenbush (generic term)
+rabbit ears|1
+(noun)|television antenna (generic term)|tv-antenna (generic term)
+rabbit fever|1
+(noun)|tularemia|tularaemia|deer fly fever|yatobyo|zoonosis (generic term)|zoonotic disease (generic term)
+rabbit food|1
+(noun)|raw vegetable|vegetable (generic term)|veggie (generic term)
+rabbit hole|1
+(noun)|rabbit burrow|hole (generic term)|hollow (generic term)
+rabbit hutch|1
+(noun)|hutch (generic term)
+rabbit on|1
+(verb)|rant|mouth off|jabber|spout|rave|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+rabbit punch|1
+(noun)|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+rabbit test|1
+(noun)|Friedman test|pregnancy test (generic term)
+rabbit warren|2
+(noun)|warren|residential district (generic term)|residential area (generic term)|community (generic term)
+(noun)|warren|burrow (generic term)|tunnel (generic term)
+rabbiteye|1
+(noun)|rabbiteye blueberry|rabbit-eye blueberry|Vaccinium ashei|blueberry (generic term)|blueberry bush (generic term)
+rabbiteye blueberry|1
+(noun)|rabbit-eye blueberry|rabbiteye|Vaccinium ashei|blueberry (generic term)|blueberry bush (generic term)
+rabbitfish|1
+(noun)|Chimaera monstrosa|chimaera (generic term)
+rabbitweed|1
+(noun)|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+rabbitwood|1
+(noun)|buffalo nut|Pyrularia pubera|parasitic plant (generic term)
+rabble|2
+(noun)|mob|rout|crowd (generic term)
+(noun)|riffraff|ragtag|ragtag and bobtail|folk (generic term)|folks (generic term)|common people (generic term)
+rabble-rouser|1
+(noun)|demagogue|demagog|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+rabble-rousing|1
+(adj)|incendiary|incitive|inflammatory|instigative|seditious|provocative (similar term)
+rabelais|1
+(noun)|Rabelais|Francois Rabelais|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+rabelaisian|1
+(adj)|Rabelaisian|satirist|ironist|ridiculer (related term)
+rabi i|1
+(noun)|Rabi I|Islamic calendar month (generic term)
+rabi ii|1
+(noun)|Rabi II|Islamic calendar month (generic term)
+rabid|2
+(adj)|zoonosis|zoonotic disease (related term)
+(adj)|fanatic|fanatical|overzealous|passionate (similar term)
+rabidity|1
+(noun)|madness|rabidness|exuberance (generic term)|enthusiasm (generic term)|ebullience (generic term)
+rabidness|1
+(noun)|madness|rabidity|exuberance (generic term)|enthusiasm (generic term)|ebullience (generic term)
+rabies|1
+(noun)|hydrophobia|lyssa|madness|zoonosis (generic term)|zoonotic disease (generic term)
+rabindranath tagore|1
+(noun)|Tagore|Rabindranath Tagore|Sir Rabindranath Tagore|writer (generic term)|author (generic term)|philosopher (generic term)
+raccoon|2
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|racoon|procyonid (generic term)
+raccoon-like|1
+(adj)|animal (similar term)
+raccoon dog|1
+(noun)|Nyctereutes procyonides|wild dog (generic term)
+raccoon fox|1
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|ringtail|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+race|9
+(noun)|group (generic term)|grouping (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|slipstream|airstream|backwash|wash|flow (generic term)
+(noun)|subspecies|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|raceway|canal (generic term)
+(verb)|rush|hotfoot|hasten|hie|speed|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+(verb)|run|compete (generic term)|vie (generic term)|contend (generic term)|run off (related term)
+(verb)|act (generic term)|move (generic term)
+(verb)|rush|move (generic term)|displace (generic term)
+race car|1
+(noun)|racer|racing car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+race driver|1
+(noun)|racer|automobile driver|driver (generic term)
+race horse|1
+(noun)|racehorse|bangtail|horse (generic term)|Equus caballus (generic term)
+race meeting|1
+(noun)|meet (generic term)|sports meeting (generic term)
+race murder|1
+(noun)|genocide|racial extermination|killing (generic term)|kill (generic term)|putting to death (generic term)
+race problem|1
+(noun)|problem (generic term)|job (generic term)
+race riot|1
+(noun)|riot (generic term)|public violence (generic term)
+race runner|1
+(noun)|racerunner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail (generic term)|whiptail lizard (generic term)
+raceabout|1
+(noun)|sloop (generic term)
+racecard|1
+(noun)|program (generic term)|programme (generic term)
+racecourse|1
+(noun)|racetrack|raceway|track|course (generic term)
+racehorse|1
+(noun)|race horse|bangtail|horse (generic term)|Equus caballus (generic term)
+raceme|1
+(noun)|flower cluster (generic term)
+racemic acid|1
+(noun)|tartaric acid (generic term)
+racemose|1
+(adj)|indeterminate (similar term)
+racer|4
+(noun)|race driver|automobile driver|driver (generic term)
+(noun)|race car|racing car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+racerunner|1
+(noun)|race runner|six-lined racerunner|Cnemidophorus sexlineatus|whiptail (generic term)|whiptail lizard (generic term)
+racetrack|1
+(noun)|racecourse|raceway|track|course (generic term)
+racetrack tout|1
+(noun)|tipster (generic term)|tout (generic term)
+raceway|2
+(noun)|race|canal (generic term)
+(noun)|racetrack|racecourse|track|course (generic term)
+rachel|1
+(noun)|Rachel|wife (generic term)|married woman (generic term)
+rachel carson|1
+(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist (generic term)|life scientist (generic term)|environmentalist (generic term)|conservationist (generic term)
+rachel louise carson|1
+(noun)|Carson|Rachel Carson|Rachel Louise Carson|biologist (generic term)|life scientist (generic term)|environmentalist (generic term)|conservationist (generic term)
+rachet|1
+(noun)|ratchet|ratch|mechanical device (generic term)
+rachet up|1
+(verb)|ratchet|ratchet down|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+rachis|2
+(noun)|axis (generic term)
+(noun)|spinal column|vertebral column|spine|backbone|back|skeletal structure (generic term)
+rachischisis|1
+(noun)|spina bifida|schistorrhachis|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+rachitic|1
+(adj)|rickety|ill (similar term)|sick (similar term)
+rachitis|2
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+(noun)|rickets|avitaminosis (generic term)|hypovitaminosis (generic term)
+rachmaninoff|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+rachmaninov|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+rachycentridae|1
+(noun)|Rachycentridae|family Rachycentridae|fish family (generic term)
+rachycentron|1
+(noun)|Rachycentron|genus Rachycentron|fish genus (generic term)
+rachycentron canadum|1
+(noun)|cobia|Rachycentron canadum|sergeant fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+racial|2
+(adj)|group|grouping (related term)
+(adj)|biracial (similar term)|interracial (similar term)|multiracial (similar term)|racist (similar term)|nonracial (antonym)
+racial discrimination|1
+(noun)|racism|racialism|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+racial extermination|1
+(noun)|genocide|race murder|killing (generic term)|kill (generic term)|putting to death (generic term)
+racial immunity|1
+(noun)|natural immunity (generic term)|innate immunity (generic term)
+racial profiling|1
+(noun)|racism (generic term)|racialism (generic term)|racial discrimination (generic term)
+racial segregation|1
+(noun)|segregation (generic term)|separatism (generic term)
+racialism|1
+(noun)|racism|racial discrimination|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+racialist|1
+(noun)|racist|bigot (generic term)
+racine|2
+(noun)|Racine|Jean Racine|Jean Baptiste Racine|dramatist (generic term)|playwright (generic term)|poet (generic term)
+(noun)|Racine|city (generic term)|metropolis (generic term)|urban center (generic term)
+raciness|2
+(noun)|pungency|bite|sharpness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|gaminess|ribaldry|spiciness|indelicacy (generic term)
+racing|1
+(noun)|sport (generic term)|athletics (generic term)
+racing boat|1
+(noun)|small boat (generic term)
+racing car|1
+(noun)|racer|race car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+racing circuit|1
+(noun)|circuit|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+racing gig|1
+(noun)|racing boat (generic term)
+racing shell|1
+(noun)|shell|racing boat (generic term)
+racing skate|1
+(noun)|speed skate|ice skate (generic term)
+racing skiff|1
+(noun)|single shell|shell (generic term)|racing shell (generic term)
+racing start|1
+(noun)|start (generic term)
+racing yacht|1
+(noun)|yacht|vessel (generic term)|watercraft (generic term)
+racism|2
+(noun)|bias (generic term)|prejudice (generic term)|preconception (generic term)
+(noun)|racialism|racial discrimination|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+racist|3
+(adj)|racial (similar term)
+(adj)|antiblack|anti-Semite|prejudiced (similar term)|discriminatory (similar term)
+(noun)|racialist|bigot (generic term)
+rack|18
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|wrack|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|wheel|instrument of torture (generic term)
+(noun)|stand|support (generic term)
+(noun)|torture (generic term)|torturing (generic term)
+(noun)|single-foot|gait (generic term)
+(verb)|single-foot|pace (generic term)
+(verb)|try (generic term)|strain (generic term)|stress (generic term)
+(verb)|work (generic term)|put to work (generic term)
+(verb)|extort|squeeze|gouge|wring|overcharge (generic term)|soak (generic term)|surcharge (generic term)|gazump (generic term)|fleece (generic term)|plume (generic term)|pluck (generic term)|rob (generic term)|hook (generic term)
+(verb)|scud|sail (generic term)
+(verb)|fly (generic term)|wing (generic term)
+(verb)|draw (generic term)|take out (generic term)
+(verb)|torment|torture|excruciate|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|work (generic term)|work on (generic term)|process (generic term)
+(verb)|seize (generic term)|prehend (generic term)|clutch (generic term)
+(verb)|torture (generic term)|excruciate (generic term)|torment (generic term)
+rack and pinion|1
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+rack of lamb|1
+(noun)|crown roast|lamb roast (generic term)|roast lamb (generic term)|rack (generic term)
+rack railway|1
+(noun)|cog railway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+rack rent|1
+(noun)|rent (generic term)
+rack up|4
+(verb)|score|hit|tally|gain (generic term)|advance (generic term)|win (generic term)|pull ahead (generic term)|make headway (generic term)|get ahead (generic term)|gain ground (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|worst|pip|mop up|whip|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|fill (generic term)|fill up (generic term)
+racker|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+racket|7
+(noun)|noise (generic term)
+(noun)|fraudulent scheme|illegitimate enterprise|enterprise (generic term)|endeavor (generic term)|endeavour (generic term)
+(noun)|noise|dissonance|sound (generic term)|auditory sensation (generic term)
+(noun)|racquet|sports implement (generic term)
+(verb)|revel|make whoopie|make merry|make happy|whoop it up|jollify|wassail|celebrate (generic term)|fete (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|hit (generic term)
+racket club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+racketeer|2
+(noun)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(verb)|conduct (generic term)|carry on (generic term)|deal (generic term)
+racketeer influenced and corrupt organizations act|1
+(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law (generic term)
+racketeering|1
+(noun)|felony (generic term)
+racketiness|1
+(noun)|noisiness|sound (generic term)
+rackety|1
+(adj)|rip-roaring|uproarious|noisy (similar term)
+racking|1
+(adj)|wrenching|painful (similar term)
+racon|1
+(noun)|radar beacon|electronic signal (generic term)
+raconteur|1
+(noun)|anecdotist|narrator (generic term)|storyteller (generic term)|teller (generic term)
+racoon|1
+(noun)|raccoon|procyonid (generic term)
+racquet|1
+(noun)|racket|sports implement (generic term)
+racquetball|2
+(noun)|ball (generic term)
+(noun)|court game (generic term)
+racy|4
+(adj)|lively|spirited (similar term)
+(adj)|full-bodied|rich|robust|tasty (similar term)
+(adj)|blue|gamy|gamey|juicy|naughty|risque|spicy|sexy (similar term)
+(adj)|mobile (similar term)
+rad|2
+(noun)|radioactivity unit (generic term)
+(noun)|radian|angular unit (generic term)
+radar|1
+(noun)|microwave radar|radio detection and ranging|radiolocation|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+radar beacon|1
+(noun)|racon|electronic signal (generic term)
+radar dome|1
+(noun)|radome|housing (generic term)
+radar echo|1
+(noun)|electronic signal (generic term)
+radar fire|1
+(noun)|fire (generic term)|firing (generic term)
+radar target|1
+(noun)|blip|pip|radar echo (generic term)
+radclyffe hall|1
+(noun)|Hall|Radclyffe Hall|Marguerite Radclyffe Hall|writer (generic term)|author (generic term)
+raddle|3
+(noun)|ruddle|reddle|iron ore (generic term)
+(verb)|ruddle|weave (generic term)|interweave (generic term)
+(verb)|mark (generic term)
+raddled|2
+(adj)|worn-out|worn (similar term)
+(adj)|careworn|drawn|haggard|worn|tired (similar term)
+radhakrishnan|1
+(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+radial|5
+(adj)|arm bone (related term)
+(adj)|straight line (related term)
+(adj)|light|visible light|visible radiation (related term)
+(adj)|stellate|symmetrical (similar term)|symmetric (similar term)
+(noun)|radial tire|radial-ply tire|pneumatic tire (generic term)|pneumatic tyre (generic term)
+radial-ply|1
+(adj)|tire|tyre (related term)
+radial-ply tire|1
+(noun)|radial|radial tire|pneumatic tire (generic term)|pneumatic tyre (generic term)
+radial artery|1
+(noun)|arteria radialis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+radial asymmetry|1
+(noun)|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)|radial symmetry (antonym)
+radial engine|1
+(noun)|rotary engine|internal-combustion engine (generic term)|ICE (generic term)
+radial keratotomy|1
+(noun)|keratotomy (generic term)
+radial nerve|1
+(noun)|nervus radialis|musculospiral nerve|nerve (generic term)|nervus (generic term)
+radial pulse|1
+(noun)|pulse (generic term)|pulse rate (generic term)|heart rate (generic term)
+radial symmetry|1
+(noun)|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)|radial asymmetry (antonym)
+radial tire|1
+(noun)|radial|radial-ply tire|pneumatic tire (generic term)|pneumatic tyre (generic term)
+radial vein|1
+(noun)|vena radialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+radial velocity|1
+(noun)|speed (generic term)|velocity (generic term)
+radially symmetrical|1
+(adj)|centrosymmetric|symmetrical (similar term)|symmetric (similar term)
+radian|1
+(noun)|rad|angular unit (generic term)
+radiance|3
+(noun)|glow|glowing|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|radiancy|shine|effulgence|refulgence|refulgency|brightness (generic term)
+(noun)|happiness (generic term)|felicity (generic term)|good health (generic term)|healthiness (generic term)
+radiancy|1
+(noun)|radiance|shine|effulgence|refulgence|refulgency|brightness (generic term)
+radiant|1
+(adj)|beaming|beamy|effulgent|refulgent|bright (similar term)
+radiant energy|1
+(noun)|energy (generic term)
+radiant flux|1
+(noun)|flux (generic term)
+radiant heating|1
+(noun)|heating (generic term)|warming (generic term)
+radiate|8
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|emit (generic term)|breathe (generic term)|pass off (generic term)
+(verb)|ray|run (generic term)|go (generic term)|pass (generic term)|lead (generic term)|extend (generic term)
+(verb)|glow|beam|shine|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|cause to be perceived (generic term)
+(verb)|glow|beam|shine|feel (generic term)|experience (generic term)
+(verb)|issue (generic term)|emerge (generic term)|come out (generic term)|come forth (generic term)|go forth (generic term)|egress (generic term)
+(verb)|diversify|change (generic term)|alter (generic term)|vary (generic term)
+radiating|1
+(adj)|divergent (similar term)|diverging (similar term)
+radiation|7
+(noun)|energy (generic term)
+(noun)|emission (generic term)|emanation (generic term)
+(noun)|radiation sickness|radiation syndrome|syndrome (generic term)
+(noun)|radioactivity|emission (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)|spread (generic term)|spreading (generic term)
+(noun)|neural structure (generic term)
+(noun)|radiotherapy|radiation therapy|actinotherapy|irradiation|therapy (generic term)
+radiation diagram|1
+(noun)|radiation pattern|pattern|graph (generic term)|graphical record (generic term)
+radiation field|1
+(noun)|field (generic term)|field of force (generic term)|force field (generic term)
+radiation pattern|1
+(noun)|radiation diagram|pattern|graph (generic term)|graphical record (generic term)
+radiation pressure|1
+(noun)|corpuscular-radiation pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+radiation pyrometer|1
+(noun)|pyrometer (generic term)
+radiation sickness|1
+(noun)|radiation syndrome|radiation|syndrome (generic term)
+radiation syndrome|1
+(noun)|radiation sickness|radiation|syndrome (generic term)
+radiation therapy|1
+(noun)|radiotherapy|radiation|actinotherapy|irradiation|therapy (generic term)
+radiator|3
+(noun)|natural object (generic term)
+(noun)|heater (generic term)|warmer (generic term)
+(noun)|mechanism (generic term)
+radiator cap|1
+(noun)|cap (generic term)
+radiator grille|1
+(noun)|grille|grate (generic term)|grating (generic term)
+radiator hose|1
+(noun)|hose (generic term)|hosepipe (generic term)
+radical|11
+(adj)|extremist|ultra|immoderate (similar term)
+(adj)|revolutionary|new (similar term)
+(adj)|basic (similar term)
+(adj)|form|word form|signifier|descriptor (related term)
+(adj)|basal|cauline (antonym)
+(noun)|group|chemical group|unit (generic term)|building block (generic term)
+(noun)|free radical|atom (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|radical sign|mathematical notation (generic term)
+(noun)|root|root word|base|stem|theme|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+radical cell|1
+(noun)|terrorist cell|cell (generic term)|cadre (generic term)
+radical chic|1
+(noun)|affectation (generic term)|mannerism (generic term)|pose (generic term)|affectedness (generic term)
+radical hysterectomy|1
+(noun)|panhysterectomy|hysterectomy (generic term)
+radical mastectomy|1
+(noun)|mastectomy (generic term)
+radical sign|1
+(noun)|radical|mathematical notation (generic term)
+radicalism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+radicalize|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+radicchio|1
+(noun)|chicory (generic term)|curly endive (generic term)
+radicle|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+radiculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+radiigera|1
+(noun)|Radiigera|genus Radiigera|fungus genus (generic term)
+radiigera fuscogleba|1
+(noun)|Radiigera fuscogleba|fungus (generic term)
+radio|5
+(adj)|energy (related term)
+(noun)|radiocommunication|wireless|broadcasting (generic term)
+(noun)|radio receiver|receiving set|radio set|tuner|wireless|receiver (generic term)|receiving system (generic term)
+(noun)|wireless|communication system (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+radio-controlled|1
+(adj)|guided (similar term)
+radio-controlled aircraft|1
+(noun)|drone|pilotless aircraft|heavier-than-air craft (generic term)
+radio-frequency spectrum|1
+(noun)|radio spectrum|spectrum (generic term)
+radio-gramophone|1
+(noun)|radio-phonograph|electronic equipment (generic term)
+radio-opacity|1
+(noun)|radiopacity|opacity (generic term)
+radio-opaque|1
+(adj)|radiopaque|radiolucent (antonym)
+radio-phonograph|1
+(noun)|radio-gramophone|electronic equipment (generic term)
+radio aerial|1
+(noun)|radio antenna|omnidirectional antenna (generic term)|nondirectional antenna (generic term)
+radio announcer|1
+(noun)|announcer (generic term)
+radio antenna|1
+(noun)|radio aerial|omnidirectional antenna (generic term)|nondirectional antenna (generic term)
+radio astronomy|1
+(noun)|astronomy (generic term)|uranology (generic term)
+radio beacon|2
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|beacon|radio station (generic term)
+radio beam|1
+(noun)|beam|signal (generic term)|signaling (generic term)|sign (generic term)
+radio brightness|1
+(noun)|intensity (generic term)|strength (generic term)|intensity level (generic term)
+radio broadcast|1
+(noun)|broadcast (generic term)
+radio chassis|1
+(noun)|chassis (generic term)
+radio compass|1
+(noun)|direction finder (generic term)
+radio detection and ranging|1
+(noun)|radar|microwave radar|radiolocation|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+radio emission|1
+(noun)|radio wave|radio radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+radio frequency|1
+(noun)|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+radio interferometer|1
+(noun)|radio telescope (generic term)|radio reflector (generic term)
+radio link|1
+(noun)|link|communication system (generic term)
+radio news|1
+(noun)|newscast (generic term)
+radio noise|1
+(noun)|static (generic term)|atmospherics (generic term)|atmospheric static (generic term)
+radio observation|1
+(noun)|observation (generic term)
+radio operator|1
+(noun)|operator (generic term)|manipulator (generic term)
+radio radiation|1
+(noun)|radio wave|radio emission|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+radio receiver|1
+(noun)|receiving set|radio set|radio|tuner|wireless|receiver (generic term)|receiving system (generic term)
+radio reflector|1
+(noun)|radio telescope|astronomical telescope (generic term)
+radio set|1
+(noun)|radio receiver|receiving set|radio|tuner|wireless|receiver (generic term)|receiving system (generic term)
+radio signal|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+radio source|1
+(noun)|radiator (generic term)
+radio spectrum|1
+(noun)|radio-frequency spectrum|spectrum (generic term)
+radio station|1
+(noun)|station (generic term)
+radio telescope|1
+(noun)|radio reflector|astronomical telescope (generic term)
+radio transmitter|1
+(noun)|transmitter (generic term)|sender (generic term)
+radio wave|1
+(noun)|radio emission|radio radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+radioactive|1
+(adj)|hot (similar term)|nonradioactive (antonym)
+radioactive dating|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+radioactive decay|1
+(noun)|decay|disintegration|nuclear reaction (generic term)
+radioactive dust|1
+(noun)|fallout|dust (generic term)
+radioactive iodine excretion test|1
+(noun)|radioactive iodine test (generic term)
+radioactive iodine test|1
+(noun)|diagnostic test (generic term)|diagnostic assay (generic term)
+radioactive iodine uptake test|1
+(noun)|RAIU|radioactive iodine test (generic term)
+radioactive material|1
+(noun)|material (generic term)|stuff (generic term)
+radioactive waste|1
+(noun)|radioactive material (generic term)
+radioactivity|1
+(noun)|radiation|emission (generic term)
+radioactivity unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+radiobiology|1
+(noun)|biology (generic term)|biological science (generic term)
+radiocarbon|1
+(noun)|carbon 14|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+radiocarbon dating|1
+(noun)|carbon dating|carbon-14 dating|dating (generic term)|geological dating (generic term)
+radiocarpal joint|1
+(noun)|wrist|carpus|wrist joint|articulatio radiocarpea|gliding joint (generic term)|articulatio plana (generic term)
+radiochemist|1
+(noun)|nuclear chemist|chemist (generic term)
+radiochemistry|1
+(noun)|nuclear chemistry|chemistry (generic term)|chemical science (generic term)
+radiochlorine|1
+(noun)|chlorine (generic term)|Cl (generic term)|atomic number 17 (generic term)
+radiocommunication|1
+(noun)|radio|wireless|broadcasting (generic term)
+radiogram|2
+(noun)|message (generic term)
+(noun)|radiograph|shadowgraph|skiagraph|skiagram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+radiograph|1
+(noun)|radiogram|shadowgraph|skiagraph|skiagram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+radiographer|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+radiographic|1
+(adj)|photography|picture taking (related term)
+radiography|2
+(noun)|skiagraphy|photography (generic term)
+(noun)|photography (generic term)|picture taking (generic term)
+radioimmunoassay|1
+(noun)|immunoassay (generic term)|immunochemical assay (generic term)
+radioisotope|1
+(noun)|isotope (generic term)
+radiolaria|1
+(noun)|Radiolaria|order Radiolaria|animal order (generic term)
+radiolarian|1
+(noun)|actinopod (generic term)
+radiolocate|1
+(verb)|situate (generic term)|locate (generic term)
+radiolocation|1
+(noun)|radar|microwave radar|radio detection and ranging|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+radiologic technologist|1
+(noun)|scientist (generic term)|man of science (generic term)
+radiological|1
+(adj)|imaging|tomography (related term)
+radiologist|1
+(noun)|radiotherapist|specialist (generic term)|medical specialist (generic term)
+radiology|2
+(noun)|medical science (generic term)
+(noun)|radioscopy|imaging (generic term)|tomography (generic term)
+radiolucent|1
+(adj)|radiopaque (antonym)
+radiolysis|1
+(noun)|lysis (generic term)
+radiometer|1
+(noun)|meter (generic term)
+radiomicrometer|1
+(noun)|radiometer (generic term)
+radiopacity|1
+(noun)|radio-opacity|opacity (generic term)
+radiopaque|1
+(adj)|radio-opaque|radiolucent (antonym)
+radiopaque dye|1
+(noun)|dye (generic term)|dyestuff (generic term)
+radiopharmaceutical|1
+(noun)|pharmaceutical (generic term)|pharmaceutic (generic term)
+radiophone|1
+(noun)|radiotelephone|wireless telephone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+radiophonic|1
+(adj)|radiotelephonic|wireless (related term)
+radiophoto|1
+(noun)|radiophotograph|telephotograph (generic term)
+radiophotograph|1
+(noun)|radiophoto|telephotograph (generic term)
+radiophotography|1
+(noun)|telephotography (generic term)
+radioprotection|1
+(noun)|protection (generic term)|shelter (generic term)
+radioscopy|1
+(noun)|radiology|imaging (generic term)|tomography (generic term)
+radiosensitive|1
+(adj)|sensitive (similar term)
+radiosensitivity|1
+(noun)|photosensitivity|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+radiotelegraph|2
+(noun)|radiotelegraphy|wireless telegraphy|wireless (generic term)
+(noun)|radiotelegraphy|wireless telegraph|wireless telegraphy|radio (generic term)|wireless (generic term)
+radiotelegraphic signal|1
+(noun)|telegraphic signal|signal (generic term)|signaling (generic term)|sign (generic term)
+radiotelegraphy|2
+(noun)|radiotelegraph|wireless telegraphy|wireless (generic term)
+(noun)|radiotelegraph|wireless telegraph|wireless telegraphy|radio (generic term)|wireless (generic term)
+radiotelephone|2
+(noun)|radiotelephony|wireless telephone|wireless (generic term)
+(noun)|radiophone|wireless telephone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+radiotelephonic|1
+(adj)|radiophonic|wireless (related term)
+radiotelephony|1
+(noun)|radiotelephone|wireless telephone|wireless (generic term)
+radiotherapist|1
+(noun)|radiologist|specialist (generic term)|medical specialist (generic term)
+radiotherapy|1
+(noun)|radiation therapy|radiation|actinotherapy|irradiation|therapy (generic term)
+radiotherapy equipment|1
+(noun)|equipment (generic term)
+radiothorium|1
+(noun)|thorium-228|thorium (generic term)|Th (generic term)|atomic number 90 (generic term)
+radish|5
+(noun)|root vegetable (generic term)|cruciferous vegetable (generic term)
+(noun)|daikon|Japanese radish|Raphanus sativus longipinnatus|radish plant (generic term)|radish (generic term)
+(noun)|root (generic term)
+(noun)|Raphanus sativus|radish plant (generic term)|radish (generic term)
+(noun)|radish plant|crucifer (generic term)|cruciferous plant (generic term)
+radish plant|1
+(noun)|radish|crucifer (generic term)|cruciferous plant (generic term)
+radium|1
+(noun)|Ra|atomic number 88|metallic element (generic term)|metal (generic term)
+radium therapy|1
+(noun)|Curietherapy|radiotherapy (generic term)|radiation therapy (generic term)|radiation (generic term)|actinotherapy (generic term)|irradiation (generic term)
+radius|5
+(noun)|r|length (generic term)
+(noun)|straight line (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|arm bone (generic term)
+(noun)|spoke|wheel spoke|support (generic term)
+radius of curvature|1
+(noun)|radius (generic term)|r (generic term)
+radius vector|1
+(noun)|vector (generic term)
+radix|1
+(noun)|base|number (generic term)
+radome|1
+(noun)|radar dome|housing (generic term)
+radon|1
+(noun)|Rn|atomic number 86|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+radyera|1
+(noun)|Radyera|genus Radyera|dilleniid dicot genus (generic term)
+radyera farragei|1
+(noun)|bush hibiscus|Radyera farragei|Hibiscus farragei|shrub (generic term)|bush (generic term)
+raetam|1
+(noun)|retem|juniper bush|juniper|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+raf|2
+(noun)|Royal Air Force|RAF|air force (generic term)|airforce (generic term)
+(noun)|Red Army Faction|RAF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+raffaello santi|1
+(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master (generic term)
+raffaello sanzio|1
+(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master (generic term)
+raffia|3
+(noun)|raphia|plant fiber (generic term)|plant fibre (generic term)
+(noun)|fiber (generic term)|fibre (generic term)
+(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus (generic term)|liliopsid genus (generic term)
+raffia farinifera|1
+(noun)|raffia palm|Raffia farinifera|Raffia ruffia|palm (generic term)|palm tree (generic term)
+raffia palm|1
+(noun)|Raffia farinifera|Raffia ruffia|palm (generic term)|palm tree (generic term)
+raffia ruffia|1
+(noun)|raffia palm|Raffia farinifera|Raffia ruffia|palm (generic term)|palm tree (generic term)
+raffia taedigera|1
+(noun)|jupati|jupaty|jupati palm|Raffia taedigera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+raffia vinifera|1
+(noun)|bamboo palm|Raffia vinifera|raffia palm (generic term)|Raffia farinifera (generic term)|Raffia ruffia (generic term)
+raffinose|1
+(noun)|trisaccharide (generic term)
+raffish|2
+(adj)|dapper|dashing|jaunty|natty|rakish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+(adj)|devil-may-care|rakish|unconventional (similar term)
+raffishly|1
+(adv)|rakishly|carelessly
+raffle|2
+(noun)|lottery (generic term)|drawing (generic term)
+(verb)|raffle off|give (generic term)|gift (generic term)|present (generic term)
+raffle off|1
+(verb)|raffle|give (generic term)|gift (generic term)|present (generic term)
+raffles|1
+(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator (generic term)|executive (generic term)
+rafflesiaceae|1
+(noun)|Rafflesiaceae|family Rafflesiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+raft|5
+(noun)|float (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(verb)|transport (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|manufacture (generic term)|fabricate (generic term)|construct (generic term)
+raft foundation|1
+(noun)|foundation (generic term)|base (generic term)|fundament (generic term)|foot (generic term)|groundwork (generic term)|substructure (generic term)|understructure (generic term)
+rafter|3
+(noun)|balk|baulk|beam (generic term)
+(noun)|raftsman|raftman|traveler (generic term)|traveller (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+raftered|1
+(adj)|ceilinged (similar term)
+raftman|1
+(noun)|raftsman|rafter|traveler (generic term)|traveller (generic term)
+rafts|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+raftsman|1
+(noun)|raftman|rafter|traveler (generic term)|traveller (generic term)
+rag|11
+(noun)|shred|tag|tag end|tatter|piece of cloth (generic term)|piece of material (generic term)
+(noun)|rag week|week (generic term)|hebdomad (generic term)
+(noun)|ragtime|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|tabloid|sheet|newspaper (generic term)|paper (generic term)
+(noun)|practical joke (generic term)
+(verb)|torment|bedevil|crucify|dun|frustrate|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|annoy|get to|bother|get at|irritate|rile|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|tease|razz|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+rag day|1
+(noun)|day (generic term)
+rag doll|1
+(noun)|doll (generic term)|dolly (generic term)
+rag gourd|1
+(noun)|luffa|dishcloth gourd|sponge gourd|strainer vine|vine (generic term)
+rag paper|1
+(noun)|writing paper (generic term)
+rag trade|1
+(noun)|apparel industry|garment industry|fashion industry|fashion business|industry (generic term)
+rag week|1
+(noun)|rag|week (generic term)|hebdomad (generic term)
+ragamuffin|1
+(noun)|tatterdemalion|urchin (generic term)
+ragbag|2
+(noun)|odds and ends|oddments|melange|farrago|mishmash|mingle-mangle|hodgepodge|hotchpotch|gallimaufry|omnium-gatherum|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|bag (generic term)
+rage|7
+(noun)|fury|madness|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|anger (generic term)|angriness (generic term)
+(noun)|passion|desire (generic term)
+(noun)|violence (generic term)
+(noun)|fad|craze|furor|furore|cult|fashion (generic term)
+(verb)|ramp|storm|act (generic term)|behave (generic term)|do (generic term)
+(verb)|be (generic term)
+ragee|1
+(noun)|finger millet|ragi|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet (generic term)
+ragged|3
+(adj)|worn (similar term)
+(adj)|tired (similar term)
+(adj)|uneven (similar term)
+ragged-fringed orchid|1
+(noun)|ragged orchid|ragged orchis|green fringed orchis|Habenaria lacera|fringed orchis (generic term)|fringed orchid (generic term)
+ragged orchid|1
+(noun)|ragged orchis|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis (generic term)|fringed orchid (generic term)
+ragged orchis|1
+(noun)|ragged orchid|ragged-fringed orchid|green fringed orchis|Habenaria lacera|fringed orchis (generic term)|fringed orchid (generic term)
+ragged robin|1
+(noun)|cuckoo flower|Lychnis flos-cuculi|Lychins floscuculi|lychnis (generic term)|catchfly (generic term)
+raggedly|3
+(adv)|unevenly
+(adv)|stragglingly
+(adv)|jaggedly
+raggedness|2
+(noun)|roughness|texture (generic term)|smoothness (antonym)
+(noun)|shabbiness (generic term)|seediness (generic term)|manginess (generic term)|sleaziness (generic term)
+ragi|1
+(noun)|finger millet|ragee|African millet|coracan|corakan|kurakkan|Eleusine coracana|millet (generic term)
+raging|3
+(adj)|hot|violent (similar term)
+(adj)|intense (similar term)
+(adj)|angry|furious|tempestuous|wild|stormy (similar term)
+raglan|1
+(noun)|garment (generic term)
+raglan sleeve|1
+(noun)|sleeve (generic term)|arm (generic term)
+ragnar anton kittil frisch|1
+(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist (generic term)|economic expert (generic term)
+ragnar frisch|1
+(noun)|Frisch|Ragnar Frisch|Ragnar Anton Kittil Frisch|economist (generic term)|economic expert (generic term)
+ragnarok|1
+(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth (generic term)
+ragout|1
+(noun)|stew (generic term)
+ragpicker|1
+(noun)|unskilled person (generic term)
+ragpicker's disease|1
+(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragsorter's disease|woolsorter's pneumonia|woolsorter's disease|anthrax (generic term)
+ragsorter|1
+(noun)|worker (generic term)
+ragsorter's disease|1
+(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|woolsorter's pneumonia|woolsorter's disease|anthrax (generic term)
+ragtag|1
+(noun)|rabble|riffraff|ragtag and bobtail|folk (generic term)|folks (generic term)|common people (generic term)
+ragtag and bobtail|1
+(noun)|rabble|riffraff|ragtag|folk (generic term)|folks (generic term)|common people (generic term)
+ragtime|1
+(noun)|rag|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+ragusa|1
+(noun)|Dubrovnik|Ragusa|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+ragweed|2
+(noun)|ragwort|tansy ragwort|benweed|Senecio jacobaea|weed (generic term)
+(noun)|ambrosia|bitterweed|weed (generic term)
+ragweed pollen|1
+(noun)|pollen (generic term)|allergen (generic term)
+ragwort|2
+(noun)|tansy ragwort|ragweed|benweed|Senecio jacobaea|weed (generic term)
+(noun)|butterweed|Senecio glabellus|wildflower (generic term)|wild flower (generic term)
+rahu|1
+(noun)|Rahu|Hindu deity (generic term)
+raid|6
+(noun)|foray|maraud|penetration (generic term)|incursion (generic term)
+(noun)|embezzlement (generic term)|peculation (generic term)|defalcation (generic term)|misapplication (generic term)|misappropriation (generic term)
+(verb)|bust|attack (generic term)|assail (generic term)
+(verb)|foray into|intrude on (generic term)|invade (generic term)|obtrude upon (generic term)|encroach upon (generic term)
+(verb)|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+(verb)|search (generic term)
+raider|2
+(noun)|plunderer|pillager|looter|spoiler|despoiler|freebooter|thief (generic term)|stealer (generic term)
+(noun)|corporate investor (generic term)
+raiding|1
+(adj)|marauding|predatory|offensive (similar term)
+rail|15
+(noun)|railing|barrier (generic term)
+(noun)|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+(noun)|track|rails|bar (generic term)
+(noun)|bar (generic term)
+(noun)|wading bird (generic term)|wader (generic term)
+(verb)|inveigh|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+(verb)|rail in|enclose (generic term)|hold in (generic term)|confine (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|rail off|separate (generic term)|divide (generic term)
+(verb)|transport (generic term)
+(verb)|train|ride (generic term)
+(verb)|lay (generic term)|put down (generic term)|repose (generic term)
+(verb)|fish (generic term)
+(verb)|vilify|revile|vituperate|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+(verb)|fulminate|denounce (generic term)
+rail-splitter|1
+(noun)|splitter|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+rail fence|1
+(noun)|fence (generic term)|fencing (generic term)
+rail in|1
+(verb)|rail|enclose (generic term)|hold in (generic term)|confine (generic term)
+rail line|1
+(noun)|line|railway line|road (generic term)|route (generic term)
+rail off|1
+(verb)|rail|separate (generic term)|divide (generic term)
+rail technology|1
+(noun)|railroading|technology (generic term)|engineering (generic term)
+railbird|1
+(noun)|sports fan (generic term)|fan (generic term)|rooter (generic term)
+railcar|1
+(noun)|car|railway car|railroad car|wheeled vehicle (generic term)
+railhead|2
+(noun)|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+(noun)|end (generic term)
+railing|2
+(noun)|rail|barrier (generic term)
+(noun)|material (generic term)
+raillery|1
+(noun)|banter|give-and-take|backchat|repartee (generic term)
+railroad|5
+(noun)|railway|railroad line|railway line|railway system|line (generic term)
+(noun)|railroad track|railway|track (generic term)
+(verb)|dragoon|sandbag|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|transport (generic term)|send (generic term)|ship (generic term)
+railroad bed|1
+(noun)|bed (generic term)
+railroad car|1
+(noun)|car|railcar|railway car|wheeled vehicle (generic term)
+railroad engineer|1
+(noun)|engineer|locomotive engineer|engine driver|operator (generic term)|manipulator (generic term)
+railroad flat|1
+(noun)|apartment (generic term)|flat (generic term)
+railroad line|1
+(noun)|railway|railroad|railway line|railway system|line (generic term)
+railroad man|1
+(noun)|trainman|railroader|railwayman|railway man|employee (generic term)
+railroad siding|1
+(noun)|siding|turnout|sidetrack|railroad track (generic term)|railroad (generic term)|railway (generic term)
+railroad station|1
+(noun)|railway station|railroad terminal|train station|train depot|terminal (generic term)|terminus (generic term)|depot (generic term)
+railroad terminal|1
+(noun)|railway station|railroad station|train station|train depot|terminal (generic term)|terminus (generic term)|depot (generic term)
+railroad ticket|1
+(noun)|train ticket|ticket (generic term)
+railroad tie|1
+(noun)|tie|crosstie|sleeper|brace (generic term)|bracing (generic term)
+railroad track|1
+(noun)|railroad|railway|track (generic term)
+railroad train|1
+(noun)|train|public transport (generic term)
+railroad tunnel|1
+(noun)|tunnel (generic term)
+railroad vine|1
+(noun)|beach morning glory|Ipomoea pes-caprae|morning glory (generic term)
+railroad worm|1
+(noun)|apple maggot|Rhagoletis pomonella|fruit fly (generic term)|pomace fly (generic term)
+railroader|1
+(noun)|trainman|railroad man|railwayman|railway man|employee (generic term)
+railroading|1
+(noun)|rail technology|technology (generic term)|engineering (generic term)
+rails|1
+(noun)|track|rail|bar (generic term)
+railway|2
+(noun)|railroad|railroad line|railway line|railway system|line (generic term)
+(noun)|railroad track|railroad|track (generic term)
+railway car|1
+(noun)|car|railcar|railroad car|wheeled vehicle (generic term)
+railway junction|1
+(noun)|junction (generic term)
+railway line|2
+(noun)|railway|railroad|railroad line|railway system|line (generic term)
+(noun)|line|rail line|road (generic term)|route (generic term)
+railway locomotive|1
+(noun)|locomotive|engine|locomotive engine|self-propelled vehicle (generic term)
+railway man|1
+(noun)|trainman|railroader|railroad man|railwayman|employee (generic term)
+railway station|1
+(noun)|railroad station|railroad terminal|train station|train depot|terminal (generic term)|terminus (generic term)|depot (generic term)
+railway system|1
+(noun)|railway|railroad|railroad line|railway line|line (generic term)
+railway yard|1
+(noun)|yard|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+railwayman|1
+(noun)|trainman|railroader|railroad man|railway man|employee (generic term)
+raiment|2
+(noun)|array|regalia|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|dress|clothe|enclothe|garb|tog|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+raimentless|1
+(adj)|clothesless|garmentless|unclothed (similar term)
+rain|4
+(noun)|rainfall|precipitation (generic term)|downfall (generic term)
+(noun)|rainwater|fresh water (generic term)|freshwater (generic term)
+(noun)|pelting|sequence (generic term)|chronological sequence (generic term)|succession (generic term)|successiveness (generic term)|chronological succession (generic term)
+(verb)|rain down|precipitate (generic term)|come down (generic term)|fall (generic term)
+rain-giver|1
+(noun)|Jupiter Pluvius|Rain-giver|Jupiter (generic term)|Jove (generic term)
+rain-in-the-face|1
+(noun)|Rain-in-the-Face|Indian chief (generic term)|Indian chieftain (generic term)|Sioux (generic term)|Siouan (generic term)
+rain-wash|1
+(noun)|washout (generic term)|wash (generic term)
+rain barrel|1
+(noun)|cistern (generic term)
+rain buckets|1
+(verb)|pour|pelt|stream|rain cats and dogs|rain (generic term)|rain down (generic term)
+rain cats and dogs|1
+(verb)|pour|pelt|stream|rain buckets|rain (generic term)|rain down (generic term)
+rain check|2
+(noun)|promise (generic term)
+(noun)|stub (generic term)|ticket stub (generic term)
+rain cloud|1
+(noun)|nimbus|nimbus cloud|cloud (generic term)
+rain dance|1
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+rain date|1
+(noun)|date (generic term)
+rain down|1
+(verb)|rain|precipitate (generic term)|come down (generic term)|fall (generic term)
+rain forest|1
+(noun)|rainforest|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+rain gage|1
+(noun)|rain gauge|pluviometer|udometer|gauge (generic term)|gage (generic term)
+rain gauge|1
+(noun)|rain gage|pluviometer|udometer|gauge (generic term)|gage (generic term)
+rain out|1
+(verb)|wash out|prevent (generic term)|keep (generic term)
+rain shadow|1
+(noun)|area (generic term)|country (generic term)
+rain shower|1
+(noun)|shower|rain (generic term)|rainfall (generic term)
+rain stick|1
+(noun)|percussion instrument (generic term)|percussive instrument (generic term)
+rain tree|1
+(noun)|saman|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+rainbow|2
+(noun)|bow (generic term)|arc (generic term)
+(noun)|promise (generic term)|hope (generic term)
+rainbow-like|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+rainbow cactus|1
+(noun)|cactus (generic term)
+rainbow fish|1
+(noun)|guppy|Lebistes reticulatus|cyprinodont (generic term)
+rainbow lorikeet|1
+(noun)|Trichoglossus moluccanus|lorikeet (generic term)
+rainbow perch|1
+(noun)|rainbow seaperch|Hipsurus caryi|surfperch (generic term)|surffish (generic term)|surf fish (generic term)
+rainbow pink|1
+(noun)|china pink|Dianthus chinensis|pink (generic term)|garden pink (generic term)
+rainbow runner|1
+(noun)|Elagatis bipinnulata|jack (generic term)
+rainbow seaperch|1
+(noun)|rainbow perch|Hipsurus caryi|surfperch (generic term)|surffish (generic term)|surf fish (generic term)
+rainbow shower|1
+(noun)|Cassia javonica|cassia (generic term)
+rainbow smelt|2
+(noun)|American smelt|smelt (generic term)
+(noun)|Osmerus mordax|smelt (generic term)
+rainbow trout|2
+(noun)|trout (generic term)
+(noun)|Salmo gairdneri|trout (generic term)
+raincoat|1
+(noun)|waterproof|coat (generic term)
+raindrop|1
+(noun)|drop (generic term)|drib (generic term)|driblet (generic term)
+rainer maria rilke|1
+(noun)|Rilke|Rainer Maria Rilke|poet (generic term)
+rainfall|1
+(noun)|rain|precipitation (generic term)|downfall (generic term)
+rainfly|1
+(noun)|tent-fly|fly sheet|fly|tent flap|flap (generic term)
+rainforest|1
+(noun)|rain forest|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+raininess|1
+(noun)|foulness|badness (generic term)|severity (generic term)|severeness (generic term)
+raining|1
+(adj)|descending (similar term)
+rainless|1
+(adj)|dry (similar term)
+rainmaker|2
+(noun)|executive (generic term)|executive director (generic term)
+(noun)|medicine man (generic term)
+rainmaking|1
+(noun)|production (generic term)
+rainproof|1
+(adj)|waterproof|waterproofed|tight (similar term)
+rainstorm|1
+(noun)|storm (generic term)|violent storm (generic term)|rain (generic term)|rainfall (generic term)
+rainwater|1
+(noun)|rain|fresh water (generic term)|freshwater (generic term)
+rainy|1
+(adj)|showery|wet (similar term)
+rainy day|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+rainy season|1
+(noun)|season (generic term)|time of year (generic term)|dry season (antonym)
+raisable|1
+(adj)|raiseable|mobile (similar term)
+raise|31
+(noun)|rise|wage hike|hike|wage increase|salary increase|increase (generic term)|increment (generic term)
+(noun)|ascent|acclivity|rise|climb|upgrade|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+(noun)|gamble (generic term)
+(noun)|lift|heave|propulsion (generic term)|actuation (generic term)
+(verb)|increase (generic term)
+(verb)|lift|elevate|get up|bring up|move (generic term)|displace (generic term)|lift up (related term)|lower (antonym)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|collect (generic term)|take in (generic term)
+(verb)|grow|farm|produce|cultivate (generic term)
+(verb)|rear|bring up|nurture|parent
+(verb)|conjure|conjure up|invoke|evoke|stir|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|lift|move (generic term)|displace (generic term)
+(verb)|erect|rear|set up|put up|construct (generic term)|build (generic term)|make (generic term)|level (antonym)
+(verb)|arouse|elicit|enkindle|kindle|evoke|fire|provoke|make (generic term)|create (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|lift|elevate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|enhance|heighten|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|promote|upgrade|advance|kick upstairs|elevate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+(verb)|leaven|prove|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|bid (generic term)|call (generic term)
+(verb)|bet (generic term)|wager (generic term)|play (generic term)
+(verb)|recruit|levy|enlist (generic term)|draft (generic term)|muster in (generic term)
+(verb)|bring up|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|incite (generic term)|instigate (generic term)|set off (generic term)|stir up (generic term)
+(verb)|reach (generic term)|get through (generic term)|get hold of (generic term)|contact (generic term)
+(verb)|multiply (generic term)
+(verb)|bring out (generic term)|set off (generic term)
+(verb)|lift|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|lift|end (generic term)|terminate (generic term)
+(verb)|resurrect|upraise|resuscitate (generic term)|revive (generic term)
+raise hell|1
+(verb)|make a stink|object (generic term)
+raise the roof|1
+(verb)|anger (generic term)|see red (generic term)
+raise up|1
+(verb)|agitate|vex|disturb|commove|shake up|stir up|move (generic term)|displace (generic term)
+raiseable|1
+(adj)|raisable|mobile (similar term)
+raised|3
+(adj)|elevated (similar term)|up (similar term)|upraised (similar term)|lifted (similar term)|lowered (antonym)
+(adj)|brocaded|embossed|adorned (similar term)|decorated (similar term)
+(adj)|inflated|increased (similar term)
+raised doughnut|1
+(noun)|doughnut (generic term)|donut (generic term)|sinker (generic term)
+raiser|2
+(noun)|bridge partner (generic term)
+(noun)|agriculturist|agriculturalist|cultivator|grower|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+raisin|1
+(noun)|dried fruit (generic term)
+raisin-nut cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+raisin bran|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+raisin bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+raisin cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+raisin moth|1
+(noun)|Cadra figulilella|pyralid (generic term)|pyralid moth (generic term)
+raising|4
+(adj)|increasing (similar term)
+(noun)|elevation|lift|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|rearing|nurture|upbringing (generic term)
+(noun)|breeding|bringing up|fostering|fosterage|nurture|rearing|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+raising hell|1
+(noun)|hell raising|aggression (generic term)
+raison d'etre|2
+(noun)|rationalization (generic term)|rationalisation (generic term)
+(noun)|function (generic term)|purpose (generic term)|role (generic term)|use (generic term)
+raita|1
+(noun)|side dish (generic term)|entremots (generic term)
+raiu|1
+(noun)|radioactive iodine uptake test|RAIU|radioactive iodine test (generic term)
+raj|1
+(noun)|dominion (generic term)|rule (generic term)
+raja|2
+(noun)|rajah|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+(noun)|Raja|genus Raja|fish genus (generic term)
+raja batis|1
+(noun)|grey skate|gray skate|Raja batis|skate (generic term)
+raja erinacea|1
+(noun)|little skate|Raja erinacea|skate (generic term)
+raja laevis|1
+(noun)|barndoor skate|Raja laevis|skate (generic term)
+raja radiata|1
+(noun)|thorny skate|Raja radiata|skate (generic term)
+rajab|1
+(noun)|Rajab|Islamic calendar month (generic term)
+rajah|1
+(noun)|raja|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+rajanya|1
+(noun)|varna (generic term)
+rajidae|1
+(noun)|Rajidae|family Rajidae|fish family (generic term)
+rajiformes|1
+(noun)|Rajiformes|order Rajiformes|Batoidei|order Batoidei|animal order (generic term)
+rajpoot|1
+(noun)|Rajput|Rajpoot|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+rajput|1
+(noun)|Rajput|Rajpoot|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+rakaposhi|1
+(noun)|Rakaposhi|mountain peak (generic term)
+rake|9
+(noun)|rakehell|profligate|rip|blood|roue|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|pitch|slant|gradient (generic term)|slope (generic term)
+(noun)|tool (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+(verb)|sweep (generic term)
+(verb)|scan|skim|glance over|run down|examine (generic term)|see (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)|rake off (related term)|rake in (related term)
+(verb)|graze|crease|brush (generic term)
+rake-off|1
+(noun)|vigorish|cut (generic term)
+rake handle|1
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+rake in|1
+(verb)|shovel in|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+rake off|1
+(verb)|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+rake up|1
+(verb)|discover (generic term)|find (generic term)
+rakehell|1
+(noun)|rake|profligate|rip|blood|roue|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+rakish|2
+(adj)|dapper|dashing|jaunty|natty|raffish|spiffy|snappy|spruce|fashionable (similar term)|stylish (similar term)
+(adj)|devil-may-care|raffish|unconventional (similar term)
+rakishly|1
+(adv)|raffishly|carelessly
+rakishness|2
+(noun)|dissoluteness (generic term)|incontinence (generic term)|self-gratification (generic term)
+(noun)|jauntiness|nattiness|dapperness|chic (generic term)|chicness (generic term)|chichi (generic term)|modishness (generic term)|smartness (generic term)|stylishness (generic term)|swank (generic term)|last word (generic term)
+rale|1
+(noun)|rattle|rattling|noise (generic term)
+ralegh|1
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+raleigh|2
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+(noun)|Raleigh|capital of North Carolina|state capital (generic term)
+rallentando|1
+(adj)|ritardando|ritenuto|rit.|decreasing (similar term)
+rallidae|1
+(noun)|Rallidae|family Rallidae|bird family (generic term)
+rally|10
+(noun)|mass meeting|gathering (generic term)|assemblage (generic term)
+(noun)|rallying|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|convalescence (generic term)|recuperation (generic term)|recovery (generic term)
+(noun)|automobile race (generic term)|auto race (generic term)|car race (generic term)
+(noun)|exchange|group action (generic term)
+(verb)|beat up|drum up|collect (generic term)|pull in (generic term)
+(verb)|call up|mobilize|mobilise|call (generic term)|send for (generic term)|demobilize (antonym)
+(verb)|muster|summon|come up|muster up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|rebound|recover (generic term)|go back (generic term)|recuperate (generic term)
+(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|ride|mock (generic term)|bemock (generic term)
+rallying|3
+(adj)|encouraging (similar term)
+(noun)|mobilization (generic term)|mobilisation (generic term)
+(noun)|rally|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+rallying cry|2
+(noun)|war cry|battle cry|cry|watchword|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+(noun)|war cry|war whoop|battle cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+rallying point|1
+(noun)|point (generic term)
+ralph barton perry|1
+(noun)|Perry|Ralph Barton Perry|philosopher (generic term)
+ralph bunche|1
+(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat (generic term)|diplomatist (generic term)
+ralph ellison|1
+(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer (generic term)|author (generic term)
+ralph johnson bunche|1
+(noun)|Bunche|Ralph Bunche|Ralph Johnson Bunche|diplomat (generic term)|diplomatist (generic term)
+ralph richardson|1
+(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+ralph vaughan williams|1
+(noun)|Vaughan Williams|Ralph Vaughan Williams|composer (generic term)
+ralph waldo ellison|1
+(noun)|Ellison|Ralph Ellison|Ralph Waldo Ellison|writer (generic term)|author (generic term)
+ralph waldo emerson|1
+(noun)|Emerson|Ralph Waldo Emerson|writer (generic term)|author (generic term)
+ram|9
+(noun)|random-access memory|random access memory|random memory|RAM|read/write memory|volatile storage (generic term)
+(noun)|Aries|Ram|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Aries|Aries the Ram|Ram|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|tool (generic term)
+(noun)|tup|sheep (generic term)
+(verb)|ram down|pound|thrust (generic term)
+(verb)|force|drive|thrust (generic term)|ram down (related term)|drive in (related term)
+(verb)|crash|collide (generic term)|clash (generic term)
+(verb)|jam|jampack|chock up|cram|wad|stuff (generic term)
+ram's-head|1
+(noun)|ram's-head lady's slipper|Cypripedium arietinum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+ram's-head lady's slipper|1
+(noun)|ram's-head|Cypripedium arietinum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+ram's horn|1
+(noun)|common unicorn plant|devil's claw|common devil's claw|elephant-tusk|proboscis flower|Proboscidea louisianica|herb (generic term)|herbaceous plant (generic term)
+ram disk|1
+(noun)|RAM disk|drive (generic term)
+ram down|2
+(verb)|ram|pound|thrust (generic term)
+(verb)|hammer in|drill in|beat in|drill (generic term)
+ram home|1
+(verb)|drive home|press home|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+rama|1
+(noun)|Rama|avatar (generic term)
+ramachandra|1
+(noun)|Ramachandra|Rama (generic term)
+ramadan|2
+(noun)|Ramadan|Islamic calendar month (generic term)
+(noun)|Ramadan|fast (generic term)|fasting (generic term)
+ramalina|1
+(noun)|Ramalina|genus Ramalina|fungus genus (generic term)
+ramanavami|1
+(noun)|Ramanavami|holiday (generic term)
+ramate|1
+(adj)|branched|branching|ramose|ramous|branchy (similar term)
+ramayana|1
+(noun)|Ramayana|Sanskrit literature (generic term)
+ramble|3
+(noun)|meander|amble (generic term)|promenade (generic term)|saunter (generic term)|stroll (generic term)|perambulation (generic term)
+(verb)|ramble on|jog|continue (generic term)|go on (generic term)|carry on (generic term)|proceed (generic term)
+(verb)|roll|wander|swan|stray|tramp|roam|cast|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+ramble on|1
+(verb)|ramble|jog|continue (generic term)|go on (generic term)|carry on (generic term)|proceed (generic term)
+rambler|2
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|communicator (generic term)
+rambling|2
+(adj)|digressive|discursive|excursive|indirect (similar term)
+(adj)|meandering|wandering|winding|indirect (similar term)
+ramblingly|1
+(adv)|discursively
+rambotan|2
+(noun)|rambutan|rambutan tree|Nephelium lappaceum|fruit tree (generic term)
+(noun)|rambutan|edible fruit (generic term)
+rambouillet|1
+(noun)|Rambouillet|domestic sheep (generic term)|Ovis aries (generic term)
+rambunctious|1
+(adj)|boisterous|robustious|rumbustious|unruly|disorderly (similar term)
+rambutan|2
+(noun)|rambotan|rambutan tree|Nephelium lappaceum|fruit tree (generic term)
+(noun)|rambotan|edible fruit (generic term)
+rambutan tree|1
+(noun)|rambutan|rambotan|Nephelium lappaceum|fruit tree (generic term)
+rameau|1
+(noun)|Rameau|Jean-Philippe Rameau|composer (generic term)
+ramee|1
+(noun)|ramie|Chinese silk plant|China grass|Boehmeria nivea|false nettle (generic term)|bog hemp (generic term)
+ramekin|1
+(noun)|ramequin|dish (generic term)
+ramequin|1
+(noun)|ramekin|dish (generic term)
+rameses|1
+(noun)|Rameses|Ramesses|Ramses|king (generic term)|male monarch (generic term)|Rex (generic term)
+rameses ii|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+rameses the great|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+ramesses|1
+(noun)|Rameses|Ramesses|Ramses|king (generic term)|male monarch (generic term)|Rex (generic term)
+ramesses ii|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+ramesses the great|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+ramie|1
+(noun)|ramee|Chinese silk plant|China grass|Boehmeria nivea|false nettle (generic term)|bog hemp (generic term)
+ramification|4
+(noun)|branching|fork|forking|division (generic term)
+(noun)|branch|leg|subfigure (generic term)
+(noun)|complication|development (generic term)
+(noun)|placement (generic term)|arrangement (generic term)
+ramify|3
+(verb)|complexify|change (generic term)
+(verb)|branch|grow (generic term)
+(verb)|branch|fork|furcate|separate|diverge (generic term)|branch out (related term)
+ramjet|1
+(noun)|ramjet engine|atherodyde|athodyd|flying drainpipe|jet engine (generic term)
+ramjet engine|1
+(noun)|ramjet|atherodyde|athodyd|flying drainpipe|jet engine (generic term)
+ramman|1
+(noun)|Ramman|Semitic deity (generic term)
+rammer|1
+(noun)|ram (generic term)
+ramon lully|1
+(noun)|Lully|Raymond Lully|Ramon Lully|philosopher (generic term)
+ramon y cajal|1
+(noun)|Ramon y Cajal|Santiago Ramon y Cajal|histologist (generic term)
+ramona|1
+(noun)|common sage|Salvia officinalis|sage (generic term)|salvia (generic term)
+ramontchi|1
+(noun)|governor's plum|governor plum|Madagascar plum|batoko palm|Flacourtia indica|shrub (generic term)|bush (generic term)
+ramose|1
+(adj)|branched|branching|ramous|ramate|branchy (similar term)
+ramous|1
+(adj)|branched|branching|ramose|ramate|branchy (similar term)
+ramp|8
+(noun)|incline|inclined plane (generic term)
+(noun)|wild leek|Allium tricoccum|alliaceous plant (generic term)
+(noun)|stairway (generic term)|staircase (generic term)
+(verb)|rage|storm|act (generic term)|behave (generic term)|do (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|model (generic term)|pose (generic term)|sit (generic term)|posture (generic term)
+(verb)|climb (generic term)|climb up (generic term)|mount (generic term)|go up (generic term)
+(verb)|stand (generic term)|stand up (generic term)
+ramp up|1
+(verb)|build up|work up|build|increase (generic term)
+rampage|2
+(noun)|violent disorder|disturbance (generic term)
+(verb)|act (generic term)|move (generic term)
+rampageous|1
+(adj)|violent (similar term)
+rampant|3
+(adj)|uncontrolled (similar term)
+(adj)|rearing|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|abundant (similar term)
+rampant arch|1
+(noun)|arch (generic term)
+rampantly|1
+(adv)|wild
+rampart|1
+(noun)|bulwark|wall|embankment (generic term)
+ramphastidae|1
+(noun)|Ramphastidae|family Ramphastidae|bird family (generic term)
+ramphomicron|1
+(noun)|Ramphomicron|genus Ramphomicron|bird genus (generic term)
+rampion|1
+(noun)|rampion bellflower|Campanula rapunculus|campanula (generic term)|bellflower (generic term)
+rampion bellflower|1
+(noun)|rampion|Campanula rapunculus|campanula (generic term)|bellflower (generic term)
+ramrod|2
+(noun)|overseer (generic term)|superintendent (generic term)
+(noun)|rod (generic term)
+ramsay hunt syndrome|1
+(noun)|Ramsay Hunt syndrome|syndrome (generic term)
+ramses|1
+(noun)|Rameses|Ramesses|Ramses|king (generic term)|male monarch (generic term)|Rex (generic term)
+ramses ii|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+ramses the great|1
+(noun)|Rameses II|Ramesses II|Ramses II|Rameses the Great|Ramesses the Great|Ramses the Great|Rameses (generic term)|Ramesses (generic term)|Ramses (generic term)
+ramshackle|1
+(adj)|bedraggled|broken-down|derelict|dilapidated|tatterdemalion|tumble-down|damaged (similar term)
+ramsons|1
+(noun)|wild garlic|wood garlic|Ramsons|Allium ursinum|alliaceous plant (generic term)
+ramus|1
+(noun)|bone (generic term)|os (generic term)
+rana|1
+(noun)|Rana|genus Rana|amphibian genus (generic term)
+rana cascadae|1
+(noun)|cascades frog|Rana cascadae|true frog (generic term)|ranid (generic term)
+rana catesbeiana|1
+(noun)|bullfrog|Rana catesbeiana|true frog (generic term)|ranid (generic term)
+rana clamitans|1
+(noun)|green frog|spring frog|Rana clamitans|true frog (generic term)|ranid (generic term)
+rana goliath|1
+(noun)|goliath frog|Rana goliath|true frog (generic term)|ranid (generic term)
+rana palustris|1
+(noun)|pickerel frog|Rana palustris|true frog (generic term)|ranid (generic term)
+rana pipiens|1
+(noun)|leopard frog|spring frog|Rana pipiens|true frog (generic term)|ranid (generic term)
+rana sylvatica|1
+(noun)|wood-frog|wood frog|Rana sylvatica|true frog (generic term)|ranid (generic term)
+rana tarahumarae|1
+(noun)|tarahumara frog|Rana tarahumarae|true frog (generic term)|ranid (generic term)
+rana temporaria|1
+(noun)|grass frog|Rana temporaria|true frog (generic term)|ranid (generic term)
+ranales|1
+(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order (generic term)
+ranalian complex|1
+(noun)|Magnoliidae|subclass Magnoliidae|class (generic term)
+ranatra|1
+(noun)|Ranatra|genus Ranatra|arthropod genus (generic term)
+ranch|2
+(noun)|spread|cattle ranch|cattle farm|farm (generic term)
+(verb)|farm (generic term)
+ranch hand|1
+(noun)|hired hand (generic term)|hand (generic term)|hired man (generic term)
+ranch house|1
+(noun)|house (generic term)
+rancher|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+ranching|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+rancid|2
+(adj)|stale (similar term)
+(adj)|sour|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+rancidity|1
+(noun)|decay (generic term)
+rancidness|1
+(noun)|taste property (generic term)|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+rancor|1
+(noun)|resentment|bitterness|gall|rancour|hostility (generic term)|enmity (generic term)|ill will (generic term)
+rancorous|1
+(adj)|resentful (similar term)
+rancour|1
+(noun)|resentment|bitterness|gall|rancor|hostility (generic term)|enmity (generic term)|ill will (generic term)
+rand|3
+(noun)|South African monetary unit (generic term)
+(noun)|Rand|Ayn Rand|writer (generic term)|author (generic term)
+(noun)|Witwatersrand|Rand|Reef|region (generic term)|part (generic term)
+randall jarrell|1
+(noun)|Jarrell|Randall Jarrell|poet (generic term)
+random|2
+(adj)|ergodic (similar term)|haphazard (similar term)|hit-or-miss (similar term)|stochastic (similar term)|nonrandom (antonym)
+(adj)|unselected (similar term)
+random-access memory|1
+(noun)|random access memory|random memory|RAM|read/write memory|volatile storage (generic term)
+random access memory|1
+(noun)|random-access memory|random memory|RAM|read/write memory|volatile storage (generic term)
+random memory|1
+(noun)|random-access memory|random access memory|RAM|read/write memory|volatile storage (generic term)
+random number generator|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+random sample|2
+(noun)|sample distribution (generic term)|sample (generic term)|sampling (generic term)
+(noun)|sample (generic term)
+random sampling|1
+(noun)|sampling (generic term)
+random variable|1
+(noun)|variate|variant|stochastic variable|chance variable|variable (generic term)|variable quantity (generic term)
+random walk|1
+(noun)|stochastic process (generic term)
+randomisation|1
+(noun)|randomization|organization (generic term)|organisation (generic term)
+randomise|1
+(verb)|randomize|disarrange (generic term)
+randomised|1
+(adj)|randomized|irregular (similar term)
+randomization|1
+(noun)|randomisation|organization (generic term)|organisation (generic term)
+randomize|1
+(verb)|randomise|disarrange (generic term)
+randomized|1
+(adj)|randomised|irregular (similar term)
+randomly|1
+(adv)|indiscriminately|haphazardly|willy-nilly|arbitrarily|at random|every which way
+randomness|2
+(noun)|entropy|S|physical property (generic term)
+(noun)|haphazardness|stochasticity|noise|irregularity (generic term)|unregularity (generic term)
+randy|1
+(adj)|aroused|horny|ruttish|steamy|turned on|sexy (similar term)
+ranee|1
+(noun)|rani|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+range|16
+(noun)|scope|reach|orbit|compass|ambit|extent (generic term)
+(noun)|reach|limit (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|mountain range|range of mountains|chain|mountain chain|chain of mountains|geological formation (generic term)|formation (generic term)
+(noun)|facility (generic term)|installation (generic term)
+(noun)|limit (generic term)|limit point (generic term)|point of accumulation (generic term)
+(noun)|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|compass|reach|grasp|capability (generic term)|capableness (generic term)|potentiality (generic term)
+(noun)|stove|kitchen stove|kitchen range|cooking stove|kitchen appliance (generic term)
+(verb)|run|be (generic term)
+(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|straddle|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|array|lay out|set out|arrange (generic term)|set up (generic term)
+(verb)|crop|browse|graze|pasture|feed (generic term)|eat (generic term)
+(verb)|feed (generic term)|give (generic term)
+(verb)|rate|rank|order|grade|place|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+range animal|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+range finder|1
+(noun)|rangefinder|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+range hood|1
+(noun)|hood (generic term)|exhaust hood (generic term)
+range in|1
+(verb)|home in|zero in|target (generic term)|aim (generic term)|place (generic term)|direct (generic term)|point (generic term)
+range of mountains|1
+(noun)|range|mountain range|chain|mountain chain|chain of mountains|geological formation (generic term)|formation (generic term)
+range pole|1
+(noun)|ranging pole|flagpole|surveying instrument (generic term)|surveyor's instrument (generic term)
+rangefinder|1
+(noun)|range finder|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+rangeland|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+ranger|3
+(noun)|Texas Ranger|Ranger|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|fire warden|forest fire fighter|official (generic term)|functionary (generic term)|fireman (generic term)|firefighter (generic term)|fire fighter (generic term)|fire-eater (generic term)
+(noun)|commando|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+rangifer|1
+(noun)|Rangifer|genus Rangifer|mammal genus (generic term)
+rangifer arcticus|1
+(noun)|barren ground caribou|Rangifer arcticus|caribou (generic term)|reindeer (generic term)|Greenland caribou (generic term)|Rangifer tarandus (generic term)
+rangifer caribou|1
+(noun)|woodland caribou|Rangifer caribou|caribou (generic term)|reindeer (generic term)|Greenland caribou (generic term)|Rangifer tarandus (generic term)
+rangifer tarandus|1
+(noun)|caribou|reindeer|Greenland caribou|Rangifer tarandus|deer (generic term)|cervid (generic term)
+ranging pole|1
+(noun)|range pole|flagpole|surveying instrument (generic term)|surveyor's instrument (generic term)
+rangoon|1
+(noun)|Yangon|Rangoon|national capital (generic term)
+rangpur|1
+(noun)|rangpur lime|lemanderin|Citrus limonia|citrus (generic term)|citrus tree (generic term)
+rangpur lime|1
+(noun)|rangpur|lemanderin|Citrus limonia|citrus (generic term)|citrus tree (generic term)
+rangy|3
+(adj)|gangling|gangly|lanky|tall (similar term)
+(adj)|mobile (similar term)
+(adj)|large (similar term)|big (similar term)
+rani|1
+(noun)|ranee|aristocrat (generic term)|blue blood (generic term)|patrician (generic term)
+ranid|1
+(noun)|true frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+ranidae|1
+(noun)|Ranidae|family Ranidae|amphibian family (generic term)
+ranier|1
+(noun)|Ranier|Mount Ranier|Mt. Ranier|Mount Tacoma|mountain peak (generic term)
+ranitidine|1
+(noun)|Zantac|histamine blocker (generic term)|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+rank|13
+(adj)|fertile (similar term)
+(adj)|offensive (similar term)
+(adj)|crying|egregious|flagrant|glaring|gross|conspicuous (similar term)
+(adj)|absolute|downright|out-and-out|right-down|sheer|complete (similar term)
+(adj)|abundant (similar term)
+(noun)|line (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|rank and file|force (generic term)|personnel (generic term)
+(noun)|social station|social status|social rank|status (generic term)|position (generic term)
+(noun)|membership|body (generic term)
+(verb)|be (generic term)
+(verb)|rate|range|order|grade|place|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|outrank|excel (generic term)|stand out (generic term)|surpass (generic term)
+rank-difference correlation|1
+(noun)|rank-order correlation coefficient|rank-order correlation|rank-difference correlation coefficient|nonparametric statistic (generic term)|distribution free statistic (generic term)
+rank-difference correlation coefficient|1
+(noun)|rank-order correlation coefficient|rank-order correlation|rank-difference correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+rank-order correlation|1
+(noun)|rank-order correlation coefficient|rank-difference correlation coefficient|rank-difference correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+rank-order correlation coefficient|1
+(noun)|rank-order correlation|rank-difference correlation coefficient|rank-difference correlation|nonparametric statistic (generic term)|distribution free statistic (generic term)
+rank-smelling|1
+(adj)|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+rank and file|2
+(noun)|rank|force (generic term)|personnel (generic term)
+(noun)|people (generic term)
+rank order|1
+(noun)|order (generic term)|ordering (generic term)
+ranked|1
+(adj)|graded|stratified|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+ranker|2
+(noun)|commissioned officer (generic term)
+(noun)|soldier (generic term)
+rankin|1
+(noun)|Rankin|Jeannette Rankin|suffragist (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+rankine|1
+(noun)|Rankine|temperature unit (generic term)
+rankine scale|1
+(noun)|Rankine scale|temperature scale (generic term)
+ranking|2
+(adj)|superior|higher-ranking|senior (similar term)
+(noun)|standing (generic term)
+rankle|1
+(verb)|eat into|fret|grate|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+rankness|2
+(noun)|richness|prolificacy|fertility|fruitfulness (generic term)|fecundity (generic term)
+(noun)|malodorousness|stinkiness|foulness|fetidness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+ransack|2
+(verb)|plunder|despoil|loot|reave|strip|rifle|pillage|foray|take (generic term)
+(verb)|comb|search (generic term)
+ransacked|1
+(adj)|looted|pillaged|plundered|empty (similar term)
+ransacking|1
+(noun)|rummage|search (generic term)|hunt (generic term)|hunting (generic term)
+ransom|4
+(noun)|ransom money|cost (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+(noun)|recovery (generic term)|retrieval (generic term)
+(verb)|redeem|exchange (generic term)|change (generic term)|interchange (generic term)
+ransom money|1
+(noun)|ransom|cost (generic term)
+ransomed|2
+(adj)|redeemed|saved (similar term)
+(adj)|saved (similar term)
+rant|3
+(noun)|harangue|ranting|declamation (generic term)
+(noun)|bombast|fustian|claptrap|blah|grandiosity (generic term)|magniloquence (generic term)|ornateness (generic term)|grandiloquence (generic term)|rhetoric (generic term)
+(verb)|mouth off|jabber|spout|rabbit on|rave|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+ranter|1
+(noun)|raver|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+ranting|1
+(noun)|harangue|rant|declamation (generic term)
+ranula|1
+(noun)|cyst (generic term)
+ranunculaceae|1
+(noun)|Ranunculaceae|family Ranunculaceae|buttercup family|crowfoot family|magnoliid dicot family (generic term)
+ranunculales|1
+(noun)|Ranales|order Ranales|Ranunculales|order Ranunculales|plant order (generic term)
+ranunculus|1
+(noun)|Ranunculus|genus Ranunculus|magnoliid dicot genus (generic term)
+ranunculus acris|1
+(noun)|meadow buttercup|tall buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranunculus aquatilis|1
+(noun)|water crowfoot|water buttercup|Ranunculus aquatilis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+ranunculus bulbosus|1
+(noun)|common buttercup|Ranunculus bulbosus|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranunculus ficaria|1
+(noun)|lesser celandine|pilewort|Ranunculus ficaria|flower (generic term)
+ranunculus flammula|1
+(noun)|lesser spearwort|Ranunculus flammula|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+ranunculus glaberrimus|1
+(noun)|sagebrush buttercup|Ranunculus glaberrimus|wildflower (generic term)|wild flower (generic term)
+ranunculus lingua|1
+(noun)|greater spearwort|Ranunculus lingua|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+ranunculus lyalii|1
+(noun)|mountain lily|Mount Cook lily|Ranunculus lyalii|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranunculus occidentalis|1
+(noun)|western buttercup|Ranunculus occidentalis|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranunculus repens|1
+(noun)|creeping buttercup|creeping crowfoot|Ranunculus repens|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranunculus sceleratus|1
+(noun)|cursed crowfoot|celery-leaved buttercup|Ranunculus sceleratus|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+ranvier's nodes|1
+(noun)|Ranvier's nodes|nodes of Ranvier|opening (generic term)|gap (generic term)
+raoul dufy|1
+(noun)|Dufy|Raoul Dufy|painter (generic term)
+raoulia|1
+(noun)|Raoulia|genus Raoulia|asterid dicot genus (generic term)
+raoulia australis|1
+(noun)|sheep plant|vegetable sheep|Raoulia lutescens|Raoulia australis|herb (generic term)|herbaceous plant (generic term)
+raoulia lutescens|1
+(noun)|sheep plant|vegetable sheep|Raoulia lutescens|Raoulia australis|herb (generic term)|herbaceous plant (generic term)
+rap|10
+(noun)|blame|reproach (generic term)
+(noun)|strike|tap|blow (generic term)|bump (generic term)
+(noun)|pat|tap|sound (generic term)
+(noun)|conversation (generic term)
+(noun)|rap music|hip-hop|popular music (generic term)|popular music genre (generic term)|black music (generic term)|African-American music (generic term)
+(noun)|knock|belt|whack|whang|blow (generic term)
+(verb)|knap|strike (generic term)
+(verb)|tap|knock|pink|sound (generic term)|go (generic term)
+(verb)|perform (generic term)
+(verb)|talk (generic term)|speak (generic term)
+rap group|1
+(noun)|gathering (generic term)|assemblage (generic term)
+rap music|1
+(noun)|rap|hip-hop|popular music (generic term)|popular music genre (generic term)|black music (generic term)|African-American music (generic term)
+rap session|1
+(noun)|conversation (generic term)
+rap sheet|1
+(noun)|blotter|day book|police blotter|charge sheet|written record (generic term)|written account (generic term)
+rapacious|3
+(adj)|predatory|raptorial|ravening|vulturine|vulturous|aggressive (similar term)
+(adj)|ravening|voracious|acquisitive (similar term)
+(adj)|edacious|esurient|ravening|ravenous|voracious|wolfish|gluttonous (similar term)
+rapaciousness|2
+(noun)|edacity|esurience|rapacity|voracity|voraciousness|gluttony (generic term)
+(noun)|greediness|voraciousness|selfishness (generic term)
+rapacity|2
+(noun)|edacity|esurience|rapaciousness|voracity|voraciousness|gluttony (generic term)
+(noun)|avarice|greed|covetousness|avaritia|mortal sin (generic term)|deadly sin (generic term)
+rapateaceae|1
+(noun)|Rapateaceae|family Rapateaceae|monocot family (generic term)|liliopsid family (generic term)
+rape|5
+(noun)|colza|Brassica napus|mustard (generic term)
+(noun)|rapine|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(noun)|violation|assault|ravishment|sexual assault (generic term)|sexual abuse (generic term)|sex crime (generic term)|sex offense (generic term)
+(verb)|ravish|violate|assault|dishonor|dishonour|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|spoil|despoil|violate|plunder|destroy (generic term)|ruin (generic term)
+rape conviction|1
+(noun)|conviction (generic term)|judgment of conviction (generic term)|condemnation (generic term)|sentence (generic term)
+rape oil|1
+(noun)|rapeseed oil|colza oil|oil (generic term)
+rape suspect|1
+(noun)|suspect (generic term)
+raped|1
+(adj)|despoiled|pillaged|ravaged|sacked|destroyed (similar term)
+raper|1
+(noun)|rapist|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+rapeseed|1
+(noun)|oilseed (generic term)|oil-rich seed (generic term)
+rapeseed oil|1
+(noun)|rape oil|colza oil|oil (generic term)
+raphael|2
+(noun)|Raphael|Raffaello Santi|Raffaello Sanzio|old master (generic term)
+(noun)|Raphael|archangel (generic term)
+raphanus|1
+(noun)|Raphanus|genus Raphanus|dilleniid dicot genus (generic term)
+raphanus raphanistrum|1
+(noun)|jointed charlock|wild radish|wild rape|runch|Raphanus raphanistrum|weed (generic term)
+raphanus sativus|1
+(noun)|radish|Raphanus sativus|radish plant (generic term)|radish (generic term)
+raphanus sativus longipinnatus|1
+(noun)|radish|daikon|Japanese radish|Raphanus sativus longipinnatus|radish plant (generic term)|radish (generic term)
+raphe|1
+(noun)|rhaphe|ridge (generic term)
+raphia|2
+(noun)|raffia|plant fiber (generic term)|plant fibre (generic term)
+(noun)|Raffia|genus Raffia|Raphia|genus Raphia|monocot genus (generic term)|liliopsid genus (generic term)
+raphicerus|1
+(noun)|Raphicerus|genus Raphicerus|mammal genus (generic term)
+raphicerus campestris|1
+(noun)|steenbok|steinbok|Raphicerus campestris|antelope (generic term)
+raphidae|1
+(noun)|Raphidae|family Raphidae|bird family (generic term)
+raphidiidae|1
+(noun)|Raphidiidae|family Raphidiidae|arthropod family (generic term)
+raphus|1
+(noun)|Raphus|genus Raphus|bird genus (generic term)
+raphus cucullatus|1
+(noun)|dodo|Raphus cucullatus|columbiform bird (generic term)
+rapid|3
+(adj)|fast (similar term)
+(adj)|speedy|fast (similar term)
+(noun)|waterway (generic term)
+rapid city|1
+(noun)|Rapid City|town (generic term)
+rapid climb|1
+(noun)|rapid growth|zoom|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+rapid eye movement|1
+(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|REM|sleep (generic term)|slumber (generic term)
+rapid eye movement sleep|1
+(noun)|paradoxical sleep|REM sleep|rapid eye movement|REM|sleep (generic term)|slumber (generic term)
+rapid growth|1
+(noun)|rapid climb|zoom|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+rapid transit|1
+(noun)|mass rapid transit|public transit (generic term)
+rapidity|1
+(noun)|celerity|quickness|rapidness|speediness|pace (generic term)|rate (generic term)
+rapidly|1
+(adv)|quickly|speedily|chop-chop|apace|slowly (antonym)
+rapidness|1
+(noun)|celerity|quickness|rapidity|speediness|pace (generic term)|rate (generic term)
+rapier|1
+(noun)|tuck|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+rapine|1
+(noun)|rape|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+rapist|1
+(noun)|raper|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+rappahannock|1
+(noun)|Rappahannock|Rappahannock River|river (generic term)
+rappahannock river|1
+(noun)|Rappahannock|Rappahannock River|river (generic term)
+rappee|1
+(noun)|snuff (generic term)
+rappel|2
+(noun)|descent (generic term)
+(verb)|abseil|rope down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+rapper|2
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|knocker|doorknocker|device (generic term)
+rapport|1
+(noun)|resonance|affinity (generic term)|kinship (generic term)
+rapporteur|1
+(noun)|registrar (generic term)|record-keeper (generic term)|recorder (generic term)
+rapprochement|1
+(noun)|reconciliation|cooperation (generic term)
+rapscallion|2
+(noun)|rogue|knave|rascal|scalawag|scallywag|varlet|villain (generic term)|scoundrel (generic term)
+(noun)|imp|scamp|monkey|rascal|scalawag|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+rapt|1
+(adj)|ecstatic|enraptured|rapturous|rhapsodic|joyous (similar term)
+raptor|1
+(noun)|bird of prey|raptorial bird|bird (generic term)
+raptores|1
+(noun)|Raptores|order Raptores|animal order (generic term)
+raptorial|2
+(adj)|bird (related term)
+(adj)|predatory|rapacious|ravening|vulturine|vulturous|aggressive (similar term)
+raptorial bird|1
+(noun)|bird of prey|raptor|bird (generic term)
+rapture|2
+(noun)|ecstasy|transport|exaltation|raptus|emotional state (generic term)|spirit (generic term)
+(noun)|ecstasy|bliss (generic term)|blissfulness (generic term)|cloud nine (generic term)|seventh heaven (generic term)|walking on air (generic term)
+rapturous|1
+(adj)|ecstatic|enraptured|rapt|rhapsodic|joyous (similar term)
+rapturously|1
+(adv)|ecstatically|rhapsodically
+raptus|2
+(noun)|seizure|ictus|attack (generic term)
+(noun)|ecstasy|rapture|transport|exaltation|emotional state (generic term)|spirit (generic term)
+raptus hemorrhagicus|1
+(noun)|seizure (generic term)|ictus (generic term)|raptus (generic term)
+rara avis|1
+(noun)|rare bird|anomaly (generic term)|unusual person (generic term)
+rare|6
+(adj)|uncommon (similar term)
+(adj)|infrequent (similar term)
+(adj)|scarce (similar term)
+(adj)|uncommon|extraordinary (similar term)
+(adj)|rarefied|rarified|thin (similar term)
+(adj)|raw (similar term)
+rare-earth element|1
+(noun)|rare earth|lanthanoid|lanthanide|lanthanon|group (generic term)|grouping (generic term)
+rare-roasted|1
+(adj)|cooked (similar term)
+rare bird|1
+(noun)|rara avis|anomaly (generic term)|unusual person (generic term)
+rare earth|1
+(noun)|rare-earth element|lanthanoid|lanthanide|lanthanon|group (generic term)|grouping (generic term)
+rarebit|1
+(noun)|Welsh rarebit|Welsh rabbit|dish (generic term)
+raree-show|2
+(noun)|peepshow|exhibition (generic term)|exposition (generic term)|expo (generic term)
+(noun)|show (generic term)
+rarefaction|1
+(noun)|concentration (generic term)
+rarefied|3
+(adj)|rare|rarified|thin (similar term)
+(adj)|rarified|reserved (similar term)
+(adj)|exalted|sublime|grand|high-flown|high-minded|lofty|rarified|idealistic|noble-minded|noble (similar term)
+rarefy|3
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sublimate|subtilize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|attenuate|weaken (generic term)
+rarely|1
+(adv)|seldom|often (antonym)
+rareness|1
+(noun)|rarity|infrequency|scarcity (generic term)|scarceness (generic term)
+rarified|3
+(adj)|rare|rarefied|thin (similar term)
+(adj)|rarefied|reserved (similar term)
+(adj)|exalted|sublime|grand|high-flown|high-minded|lofty|rarefied|idealistic|noble-minded|noble (similar term)
+rarify|1
+(verb)|complicate|refine|elaborate|change (generic term)|alter (generic term)|modify (generic term)
+raring|1
+(adj)|impatient|eager (similar term)
+rariora|1
+(noun)|collector's item (generic term)|showpiece (generic term)|piece de resistance (generic term)
+rarity|3
+(noun)|rareness|infrequency|scarcity (generic term)|scarceness (generic term)
+(noun)|tenuity|low density|density (generic term)|denseness (generic term)
+(noun)|curio|curiosity|oddity|oddment|peculiarity|object (generic term)|physical object (generic term)
+ras|1
+(noun)|reticular activating system|RAS|neural network (generic term)|neural net (generic term)
+ras tafari|1
+(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|emperor (generic term)
+ras tafari makonnen|1
+(noun)|Haile Selassie|Ras Tafari Makonnen|Ras Tafari|emperor (generic term)
+rascal|2
+(noun)|rogue|knave|rapscallion|scalawag|scallywag|varlet|villain (generic term)|scoundrel (generic term)
+(noun)|imp|scamp|monkey|rapscallion|scalawag|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+rascality|3
+(noun)|prankishness|roguishness|naughtiness (generic term)|mischievousness (generic term)|badness (generic term)
+(noun)|shiftiness|slipperiness|trickiness|dishonesty (generic term)
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|roguery|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+rascally|2
+(adj)|devilish|roguish|playful (similar term)
+(adj)|roguish|scoundrelly|blackguardly|dishonest (similar term)|dishonorable (similar term)
+rase|1
+(verb)|level|raze|dismantle|tear down|take down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+rash|4
+(adj)|imprudent (similar term)
+(adj)|foolhardy|heady|reckless|bold (similar term)
+(noun)|roseola|efflorescence|skin rash|eruption (generic term)
+(noun)|blizzard|series (generic term)
+rasher|1
+(noun)|vermillion rockfish|Sebastodes miniatus|rockfish (generic term)
+rashly|1
+(adv)|headlong
+rashness|2
+(noun)|heedlessness|mindlessness|imprudence (generic term)
+(noun)|recklessness|foolhardiness|unthoughtfulness (generic term)|thoughtlessness (generic term)
+rasht|1
+(noun)|Rasht|Resht|city (generic term)|metropolis (generic term)|urban center (generic term)
+rashtriya swayamsevak sangh|1
+(noun)|Rashtriya Swayamsevak Sangh|National Volunteers Association|secret society (generic term)
+rask|1
+(noun)|Rask|Rasmus Christian Rask|philologist (generic term)|philologue (generic term)
+raskolnikov|1
+(noun)|Raskolnikov|Rodya Raskolnikov|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+rasmus christian rask|1
+(noun)|Rask|Rasmus Christian Rask|philologist (generic term)|philologue (generic term)
+rasmussen|1
+(noun)|Rasmussen|Kund Johan Victor Rasmussen|explorer (generic term)|adventurer (generic term)|ethnologist (generic term)
+rasp|4
+(noun)|rasping|utterance (generic term)|vocalization (generic term)
+(noun)|wood file|file (generic term)
+(verb)|abrade (generic term)|corrade (generic term)|abrase (generic term)|rub down (generic term)|rub off (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+rasp fern|1
+(noun)|doodia|fern (generic term)
+raspberry|3
+(noun)|raspberry bush|bramble bush (generic term)
+(noun)|berry (generic term)|drupelet (generic term)
+(noun)|boo|hoot|Bronx cheer|hiss|razzing|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+raspberry-red|1
+(adj)|bright-red|chromatic (similar term)
+raspberry bush|1
+(noun)|raspberry|bramble bush (generic term)
+rasping|2
+(adj)|grating|gravel|gravelly|raspy|rough|scratchy|cacophonous (similar term)|cacophonic (similar term)
+(noun)|rasp|utterance (generic term)|vocalization (generic term)
+raspingly|1
+(adv)|gratingly|harshly
+rasputin|1
+(noun)|Rasputin|Grigori Efimovich Rasputin|starets (generic term)
+raspy|1
+(adj)|grating|gravel|gravelly|rasping|rough|scratchy|cacophonous (similar term)|cacophonic (similar term)
+rassling|1
+(noun)|wrestling|grappling|contact sport (generic term)
+rasta|1
+(noun)|Rastafarian|Rasta|disciple (generic term)|adherent (generic term)
+rastafari|1
+(noun)|Rastafari|Rastas|youth subculture (generic term)|religious movement (generic term)
+rastafarian|2
+(adj)|Rastafarian|cult|cultus|religious cult (related term)
+(noun)|Rastafarian|Rasta|disciple (generic term)|adherent (generic term)
+rastafarianism|1
+(noun)|Rastafarianism|cult (generic term)|cultus (generic term)|religious cult (generic term)
+rastas|1
+(noun)|Rastafari|Rastas|youth subculture (generic term)|religious movement (generic term)
+raster|1
+(noun)|formation (generic term)
+raster font|1
+(noun)|screen font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+rasterize|1
+(verb)|convert (generic term)
+rat|11
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|scab|strikebreaker|blackleg|worker (generic term)
+(noun)|rotter|dirty dog|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|informer|betrayer|squealer|blabber|informant (generic term)|source (generic term)
+(noun)|pad (generic term)
+(verb)|defect (generic term)|desert (generic term)
+(verb)|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|fink|scab|blackleg|work (generic term)|do work (generic term)
+(verb)|pad (generic term)|fill out (generic term)
+(verb)|capture (generic term)|catch (generic term)
+(verb)|denounce|tell on|betray|give away|grass|shit|shop|snitch|stag|inform (generic term)
+rat's-tail cactus|1
+(noun)|rattail cactus|Aporocactus flagelliformis|cactus (generic term)
+rat-a-tat|1
+(noun)|rat-a-tat-tat|rat-tat|tapping (generic term)
+rat-a-tat-tat|1
+(noun)|rat-a-tat|rat-tat|tapping (generic term)
+rat-catcher|1
+(noun)|disinfestation officer|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+rat-tail file|1
+(noun)|file (generic term)
+rat-tat|1
+(noun)|rat-a-tat-tat|rat-a-tat|tapping (generic term)
+rat cheese|1
+(noun)|store cheese|cheddar (generic term)|cheddar cheese (generic term)|Armerican cheddar (generic term)|American cheese (generic term)
+rat chinchilla|1
+(noun)|abrocome|chinchilla rat|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+rat kangaroo|1
+(noun)|kangaroo rat|kangaroo (generic term)
+rat race|1
+(noun)|routine (generic term)|modus operandi (generic term)
+rat snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+rat terrier|1
+(noun)|ratter|terrier (generic term)
+rat typhus|1
+(noun)|murine typhus|urban typhus|endemic typhus|typhus (generic term)|typhus fever (generic term)
+ratability|2
+(noun)|rateability|liability (generic term)
+(noun)|quantifiability (generic term)|measurability (generic term)
+ratable|1
+(adj)|rateable|taxable (similar term)|nonexempt (similar term)
+ratables|1
+(noun)|rateables|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+ratafee|1
+(noun)|ratafia|liqueur (generic term)|cordial (generic term)
+ratafia|2
+(noun)|ratafee|liqueur (generic term)|cordial (generic term)
+(noun)|ratafia biscuit|macaroon (generic term)
+ratafia biscuit|1
+(noun)|ratafia|macaroon (generic term)
+ratan|1
+(noun)|rattan|switch (generic term)
+rataplan|1
+(noun)|rub-a-dub|drumbeat|sound (generic term)
+ratbite fever|1
+(noun)|infectious disease (generic term)
+ratbite fever bacterium|1
+(noun)|Spirillum minus|spirillum (generic term)
+ratch|1
+(noun)|ratchet|rachet|mechanical device (generic term)
+ratchet|2
+(noun)|rachet|ratch|mechanical device (generic term)
+(verb)|rachet up|ratchet down|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+ratchet down|1
+(verb)|ratchet|rachet up|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+ratchet screwdriver|1
+(noun)|spiral ratchet screwdriver|screwdriver (generic term)
+ratchet wheel|1
+(noun)|wheel (generic term)
+rate|7
+(noun)|charge per unit|charge (generic term)
+(noun)|magnitude relation (generic term)|quantitative relation (generic term)
+(noun)|pace|temporal property (generic term)
+(noun)|proportion (generic term)
+(verb)|rank|range|order|grade|place|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|be (generic term)
+(verb)|value|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+rate of attrition|1
+(noun)|attrition rate|rate (generic term)
+rate of depreciation|1
+(noun)|depreciation rate|rate (generic term)|charge per unit (generic term)
+rate of exchange|1
+(noun)|exchange rate|rate (generic term)|charge per unit (generic term)
+rate of flow|1
+(noun)|flow|flow rate|rate (generic term)
+rate of growth|1
+(noun)|growth rate|rate (generic term)
+rate of inflation|1
+(noun)|inflation rate|rate (generic term)
+rate of interest|1
+(noun)|interest rate|rate (generic term)|charge per unit (generic term)
+rate of pay|1
+(noun)|pay rate|rate (generic term)|charge per unit (generic term)
+rate of payment|1
+(noun)|payment rate|repayment rate|installment rate|rate (generic term)|charge per unit (generic term)
+rate of respiration|1
+(noun)|respiratory rate|vital sign (generic term)|rate (generic term)
+rate of return|1
+(noun)|rate (generic term)
+rateability|1
+(noun)|ratability|liability (generic term)
+rateable|1
+(adj)|ratable|taxable (similar term)|nonexempt (similar term)
+rateables|1
+(noun)|ratables|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+ratel|1
+(noun)|honey badger|Mellivora capensis|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+ratepayer|1
+(noun)|taxpayer (generic term)
+rates|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+rather|4
+(adv)|instead
+(adv)|kind of|kinda|sort of
+(adv)|preferably|sooner
+(adv)|quite
+rathole|2
+(noun)|hole (generic term)
+(noun)|room (generic term)
+rathskeller|1
+(noun)|tavern (generic term)|tap house (generic term)
+ratibida|1
+(noun)|Ratibida|genus Ratibida|asterid dicot genus (generic term)
+ratibida columnaris|1
+(noun)|Mexican hat|Ratibida columnaris|coneflower (generic term)
+ratibida columnifera|1
+(noun)|long-head coneflower|prairie coneflower|Ratibida columnifera|coneflower (generic term)
+ratibida tagetes|1
+(noun)|prairie coneflower|Ratibida tagetes|coneflower (generic term)
+ratification|1
+(noun)|confirmation|agreement (generic term)
+ratified|1
+(adj)|sanctioned|legal (similar term)
+ratifier|1
+(noun)|subscriber|endorser|indorser|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+ratify|1
+(verb)|sign|validate (generic term)|formalize (generic term)|formalise (generic term)
+rating|4
+(noun)|evaluation|valuation|appraisal (generic term)|assessment (generic term)
+(noun)|evaluation|judgment (generic term)|judgement (generic term)|assessment (generic term)
+(noun)|standing (generic term)
+(noun)|military rank|military rating|paygrade|rank (generic term)
+rating system|1
+(noun)|scoring system|classification system (generic term)
+ratio|1
+(noun)|magnitude relation (generic term)|quantitative relation (generic term)
+ratiocinate|1
+(verb)|reason (generic term)
+ratiocination|2
+(noun)|conclusion|proposition (generic term)
+(noun)|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+ratiocinative|1
+(adj)|logical (similar term)
+ratiocinator|1
+(noun)|reasoner|thinker (generic term)
+ration|4
+(noun)|fare (generic term)
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(verb)|limit (generic term)|circumscribe (generic term)|confine (generic term)
+(verb)|ration out|allocate (generic term)|apportion (generic term)
+ration card|1
+(noun)|card (generic term)|identity card (generic term)
+ration out|1
+(verb)|ration|allocate (generic term)|apportion (generic term)
+rational|5
+(adj)|coherent (similar term)|logical (similar term)|lucid (similar term)|demythologized (similar term)|demythologised (similar term)|intelligent (similar term)|reasoning (similar term)|thinking (similar term)|reasonable (similar term)|sane (similar term)|logical (related term)|reasonable (related term)|sensible (related term)|sane (related term)|irrational (antonym)
+(adj)|intellectual|noetic|mental (similar term)
+(adj)|magnitude relation|quantitative relation (related term)|irrational (antonym)
+(adj)|intellectual (similar term)
+(noun)|rational number|real number (generic term)|real (generic term)
+rational motive|1
+(noun)|motivation (generic term)|motive (generic term)|need (generic term)
+rational number|1
+(noun)|rational|real number (generic term)|real (generic term)
+rationale|1
+(noun)|principle|explanation (generic term)
+rationalisation|5
+(noun)|rationalization|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|rationalization|explanation (generic term)
+(noun)|rationalization|simplification (generic term)
+(noun)|rationalization|organization (generic term)|organisation (generic term)
+(noun)|systematization|systematisation|rationalization|organization (generic term)|organisation (generic term)
+rationalise|5
+(verb)|rationalize|organize (generic term)|organise (generic term)
+(verb)|apologize|apologise|excuse|justify|rationalize|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|rationalize|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|rationalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|cut|prune|rationalize|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|cut back (related term)|cut back (related term)|cut out (related term)
+rationalise away|1
+(verb)|rationalize away|reason (generic term)
+rationalism|3
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|theological doctrine (generic term)
+(noun)|freethinking|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+rationalist|2
+(adj)|philosophical doctrine|philosophical theory (related term)
+(noun)|positivist|nonreligious person (generic term)
+rationalistic|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+rationality|2
+(noun)|reason|reasonableness|sanity (generic term)|saneness (generic term)
+(noun)|rationalness|logicality (generic term)|logicalness (generic term)
+rationalization|5
+(noun)|rationalisation|explanation (generic term)
+(noun)|rationalisation|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|rationalisation|simplification (generic term)
+(noun)|rationalisation|organization (generic term)|organisation (generic term)
+(noun)|systematization|systematisation|rationalisation|organization (generic term)|organisation (generic term)
+rationalize|5
+(verb)|apologize|apologise|excuse|justify|rationalise|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|cut|prune|rationalise|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|cut back (related term)|cut back (related term)|cut out (related term)
+(verb)|rationalise|organize (generic term)|organise (generic term)
+(verb)|rationalise|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|rationalise|change (generic term)|alter (generic term)|modify (generic term)
+rationalize away|1
+(verb)|rationalise away|reason (generic term)
+rationally|1
+(adv)|irrationally (antonym)
+rationalness|1
+(noun)|rationality|logicality (generic term)|logicalness (generic term)
+rationed|1
+(adj)|distributed (similar term)
+rationing|1
+(noun)|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+ratitae|1
+(noun)|Ratitae|superorder Ratitae|animal order (generic term)
+ratite|1
+(noun)|ratite bird|flightless bird|bird (generic term)|carinate (antonym)
+ratite bird|1
+(noun)|ratite|flightless bird|bird (generic term)|carinate (antonym)
+ratlike|1
+(adj)|rodent|gnawer|gnawing animal (related term)
+ratlin|1
+(noun)|ratline|line (generic term)
+ratline|1
+(noun)|ratlin|line (generic term)
+ratsbane|1
+(noun)|arsenic|arsenic trioxide|arsenous anhydride|arsenous oxide|white arsenic|trioxide (generic term)
+rattail|1
+(noun)|grenadier|rattail fish|gadoid (generic term)|gadoid fish (generic term)
+rattail cactus|1
+(noun)|rat's-tail cactus|Aporocactus flagelliformis|cactus (generic term)
+rattail fish|1
+(noun)|grenadier|rattail|gadoid (generic term)|gadoid fish (generic term)
+rattan|3
+(noun)|rattan palm|Calamus rotang|calamus (generic term)
+(noun)|rattan cane|cane (generic term)
+(noun)|ratan|switch (generic term)
+rattan cane|1
+(noun)|rattan|cane (generic term)
+rattan palm|1
+(noun)|rattan|Calamus rotang|calamus (generic term)
+ratter|2
+(noun)|deserter|apostate|renegade|turncoat|recreant|quitter (generic term)
+(noun)|rat terrier|terrier (generic term)
+rattigan|1
+(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist (generic term)|playwright (generic term)
+ratting|1
+(noun)|informing|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+rattle|5
+(noun)|rattling|rale|noise (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+(noun)|tail (generic term)
+(verb)|sound (generic term)|go (generic term)|rattle off (related term)|rattle down (related term)|rattle on (related term)
+(verb)|shake (generic term)|agitate (generic term)
+rattle-top|1
+(noun)|black cohosh|black snakeroot|Cimicifuga racemosa|bugbane (generic term)
+rattle down|1
+(verb)|rattle off|reel off|spiel off|roll off|recite (generic term)
+rattle off|1
+(verb)|rattle down|reel off|spiel off|roll off|recite (generic term)
+rattle on|1
+(verb)|yack|jaw|yack away|yap away|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+rattle weed|1
+(noun)|indigo broom|horsefly weed|Baptisia tinctoria|wild indigo (generic term)|false indigo (generic term)
+rattlebox|1
+(noun)|crotalaria|herb (generic term)|herbaceous plant (generic term)
+rattlebrained|1
+(adj)|rattlepated|scatterbrained|scatty|foolish (similar term)
+rattled|1
+(adj)|flustered|hot and bothered|perturbed|discomposed (similar term)
+rattlepated|1
+(adj)|rattlebrained|scatterbrained|scatty|foolish (similar term)
+rattler|2
+(noun)|rattlesnake|pit viper (generic term)
+(noun)|freight train|train (generic term)|railroad train (generic term)
+rattlesnake|1
+(noun)|rattler|pit viper (generic term)
+rattlesnake's master|1
+(noun)|rattlesnake master|button snakeroot|Eryngium yuccifolium|perennial (generic term)
+rattlesnake fern|1
+(noun)|Botrychium virginianum|grape fern (generic term)
+rattlesnake master|1
+(noun)|rattlesnake's master|button snakeroot|Eryngium yuccifolium|perennial (generic term)
+rattlesnake orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+rattlesnake plantain|1
+(noun)|helleborine|orchid (generic term)|orchidaceous plant (generic term)
+rattlesnake root|2
+(noun)|Prenanthes purpurea|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+rattlesnake weed|1
+(noun)|Hieracium venosum|hawkweed (generic term)
+rattling|4
+(adj)|fantastic|grand|howling|marvelous|marvellous|terrific|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|brisk|lively|merry|snappy|spanking|zippy|energetic (similar term)
+(noun)|rattle|rale|noise (generic term)
+(adv)|very|really|real
+rattrap|3
+(noun)|difficulty (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(noun)|trap (generic term)
+rattus|1
+(noun)|Rattus|genus Rattus|mammal genus (generic term)
+rattus norvegicus|1
+(noun)|brown rat|Norway rat|Rattus norvegicus|rat (generic term)
+rattus rattus|1
+(noun)|black rat|roof rat|Rattus rattus|rat (generic term)
+ratty|3
+(adj)|rodent|gnawer|gnawing animal (related term)
+(adj)|moth-eaten|shabby|tatty|worn (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+rau-sed|1
+(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive (generic term)|antihypertensive drug (generic term)
+raucous|2
+(adj)|strident|cacophonous (similar term)|cacophonic (similar term)
+(adj)|rowdy|disorderly (similar term)
+raucously|1
+(adv)|rowdily
+raudixin|1
+(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive (generic term)|antihypertensive drug (generic term)
+rauli beech|1
+(noun)|Nothofagus procera|southern beech (generic term)|evergreen beech (generic term)
+raunch|1
+(noun)|coarseness|commonness|grossness|vulgarity|vulgarism|inelegance (generic term)
+raunchy|3
+(adj)|sexy (similar term)
+(adj)|lewd|obscene|salacious|dirty (similar term)
+(adj)|begrimed|dingy|grimy|grubby|grungy|dirty (similar term)|soiled (similar term)|unclean (similar term)
+rauvolfia|1
+(noun)|rauwolfia|shrub (generic term)|bush (generic term)
+rauwolfia|2
+(noun)|alkaloid (generic term)
+(noun)|rauvolfia|shrub (generic term)|bush (generic term)
+rauwolfia serpentina|1
+(noun)|snakewood|Rauwolfia serpentina|rauwolfia (generic term)|rauvolfia (generic term)
+ravage|3
+(noun)|depredation|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(verb)|harry|destroy (generic term)|ruin (generic term)
+(verb)|lay waste to|waste|devastate|desolate|scourge|destroy (generic term)|ruin (generic term)
+ravaged|1
+(adj)|despoiled|pillaged|raped|sacked|destroyed (similar term)
+ravaging|2
+(adj)|destructive (similar term)
+(noun)|devastation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+rave|5
+(noun)|dance (generic term)
+(noun)|review (generic term)|critique (generic term)|critical review (generic term)|review article (generic term)
+(verb)|party (generic term)
+(verb)|rant|mouth off|jabber|spout|rabbit on|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|gush|praise (generic term)
+rave-up|1
+(noun)|gathering (generic term)|assemblage (generic term)
+ravehook|1
+(noun)|hand tool (generic term)
+ravel|4
+(noun)|Ravel|Maurice Ravel|composer (generic term)
+(noun)|run|ladder|damage (generic term)|harm (generic term)|impairment (generic term)
+(verb)|unravel|ravel out|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)|ravel (antonym)
+(verb)|tangle|knot|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)|unknot (antonym)|unravel (antonym)|unravel (antonym)
+ravel out|1
+(verb)|ravel|unravel|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)|ravel (antonym)
+raveling|1
+(noun)|ravelling|fiber (generic term)|fibre (generic term)
+ravelling|1
+(noun)|raveling|fiber (generic term)|fibre (generic term)
+raven|5
+(noun)|Corvus corax|corvine bird (generic term)
+(verb)|seize (generic term)
+(verb)|prey|predate|forage (generic term)
+(verb)|devour|guttle|pig|eat (generic term)
+(verb)|feed (generic term)|eat (generic term)
+ravenala|1
+(noun)|traveler's tree|traveller's tree|Ravenala madagascariensis|woody plant (generic term)|ligneous plant (generic term)
+ravenala madagascariensis|1
+(noun)|traveler's tree|traveller's tree|ravenala|Ravenala madagascariensis|woody plant (generic term)|ligneous plant (generic term)
+ravening|3
+(adj)|predatory|rapacious|raptorial|vulturine|vulturous|aggressive (similar term)
+(adj)|rapacious|voracious|acquisitive (similar term)
+(adj)|edacious|esurient|rapacious|ravenous|voracious|wolfish|gluttonous (similar term)
+ravenna|1
+(noun)|Ravenna|Battle of Ravenna|pitched battle (generic term)
+ravenna grass|1
+(noun)|Ravenna grass|wool grass|Erianthus ravennae|plume grass (generic term)
+ravenous|2
+(adj)|famished|sharp-set|starved|esurient|hungry (similar term)
+(adj)|edacious|esurient|rapacious|ravening|voracious|wolfish|gluttonous (similar term)
+ravenously|1
+(adv)|hungrily
+ravenousness|1
+(noun)|edacity|esurience|voracity|voraciousness|hunger (generic term)|hungriness (generic term)
+raver|2
+(noun)|dancer (generic term)|social dancer (generic term)
+(noun)|ranter|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+ravi shankar|1
+(noun)|Shankar|Ravi Shankar|sitar player (generic term)
+ravigote|1
+(noun)|sauce (generic term)
+ravine|1
+(noun)|valley (generic term)|vale (generic term)
+raving|3
+(adj)|raving mad|wild|insane (similar term)
+(noun)|declamation (generic term)
+(adv)|ravingly
+raving mad|1
+(adj)|raving|wild|insane (similar term)
+ravingly|1
+(adv)|raving
+ravioli|1
+(noun)|cappelletti|pasta (generic term)|alimentary paste (generic term)
+ravish|2
+(verb)|rape|violate|assault|dishonor|dishonour|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|enchant|enrapture|transport|enthrall|enthral|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+ravisher|2
+(noun)|violator|debaucher|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|smasher|stunner|knockout|beauty|sweetheart|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+ravishing|1
+(adj)|beautiful (similar term)
+ravishment|2
+(noun)|entrancement|delight (generic term)|delectation (generic term)
+(noun)|rape|violation|assault|sexual assault (generic term)|sexual abuse (generic term)|sex crime (generic term)|sex offense (generic term)
+raw|14
+(adj)|natural|rude|unprocessed (similar term)
+(adj)|injured (similar term)
+(adj)|half-baked (similar term)|underdone (similar term)|rare (similar term)|uncooked (similar term)|untoasted (similar term)|cooked (antonym)
+(adj)|untreated (similar term)
+(adj)|naked|overt (similar term)|open (similar term)
+(adj)|unfair (similar term)|unjust (similar term)
+(adj)|crude|unanalyzed (similar term)
+(adj)|unpolished (similar term)
+(adj)|sensitive|sore|tender|painful (similar term)
+(adj)|bleak|cutting|cold (similar term)
+(adj)|unsanded|unfinished (similar term)
+(adj)|new|inexperienced (similar term)|inexperient (similar term)
+(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|peeled|naked as a jaybird|stark naked|unclothed (similar term)
+(noun)|altogether|birthday suit|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+raw beauty|1
+(noun)|beauty (generic term)
+raw data|1
+(noun)|data (generic term)|information (generic term)
+raw deal|1
+(noun)|deal (generic term)
+raw material|1
+(noun)|staple|material (generic term)|stuff (generic term)
+raw meat|1
+(noun)|meat (generic term)
+raw milk|1
+(noun)|milk (generic term)
+raw recruit|1
+(noun)|recruit (generic term)|military recruit (generic term)
+raw sienna|2
+(noun)|yellowish brown|buff|caramel|caramel brown|brown (generic term)|brownness (generic term)
+(noun)|sienna (generic term)
+raw talent|1
+(noun)|endowment (generic term)|gift (generic term)|talent (generic term)|natural endowment (generic term)
+raw throat|1
+(noun)|sore throat|pharyngitis|inflammatory disease (generic term)
+raw umber|1
+(noun)|umber (generic term)
+raw vegetable|1
+(noun)|rabbit food|vegetable (generic term)|veggie (generic term)
+raw weather|1
+(noun)|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+raw wood|1
+(noun)|wood (generic term)
+raw wool|1
+(noun)|wool (generic term)
+raw wound|1
+(noun)|wound (generic term)|lesion (generic term)
+rawalpindi|1
+(noun)|Rawalpindi|city (generic term)|metropolis (generic term)|urban center (generic term)
+rawboned|1
+(adj)|thin (similar term)|lean (similar term)
+rawhide|1
+(noun)|hide (generic term)|fell (generic term)
+rawness|4
+(noun)|damp (generic term)|dampness (generic term)|moistness (generic term)
+(noun)|incompleteness|integrity (generic term)|unity (generic term)|wholeness (generic term)|completeness (antonym)
+(noun)|tenderness|soreness|pain (generic term)|hurting (generic term)
+(noun)|inexperience|ignorance (generic term)|experience (antonym)
+ray|10
+(noun)|beam|beam of light|light beam|ray of light|shaft|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|pedicel (generic term)|pedicle (generic term)
+(noun)|vector (generic term)
+(noun)|beam|electron beam|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)
+(noun)|re|solfa syllable (generic term)
+(noun)|spine (generic term)
+(noun)|elasmobranch (generic term)|selachian (generic term)
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|radiate|run (generic term)|go (generic term)|pass (generic term)|lead (generic term)|extend (generic term)
+(verb)|irradiate|process (generic term)|treat (generic term)
+ray-like|1
+(adj)|animal (similar term)
+ray bradbury|1
+(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer (generic term)|author (generic term)
+ray cattell|1
+(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist (generic term)
+ray douglas bradbury|1
+(noun)|Bradbury|Ray Bradbury|Ray Douglas Bradbury|writer (generic term)|author (generic term)
+ray floret|1
+(noun)|ray flower|flower (generic term)|bloom (generic term)|blossom (generic term)
+ray flower|1
+(noun)|ray floret|flower (generic term)|bloom (generic term)|blossom (generic term)
+ray m. dolby|1
+(noun)|Dolby|Ray M. Dolby|electrical engineer (generic term)
+ray of light|1
+(noun)|beam|beam of light|light beam|ray|shaft|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+ray robinson|1
+(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter (generic term)|gladiator (generic term)
+rayleigh|1
+(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist (generic term)
+rayleigh disk|1
+(noun)|Rayleigh disk|radiometer (generic term)
+rayless|1
+(adj)|pedicel|pedicle (related term)
+rayless chamomile|1
+(noun)|pineapple weed|Matricaria matricarioides|herb (generic term)|herbaceous plant (generic term)
+raymond b. cattell|1
+(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist (generic term)
+raymond bernard cattell|1
+(noun)|Cattell|Ray Cattell|R. B. Cattell|Raymond B. Cattell|Raymond Bernard Cattell|psychologist (generic term)
+raymond chandler|1
+(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer (generic term)|author (generic term)
+raymond lully|1
+(noun)|Lully|Raymond Lully|Ramon Lully|philosopher (generic term)
+raymond thornton chandler|1
+(noun)|Chandler|Raymond Chandler|Raymond Thornton Chandler|writer (generic term)|author (generic term)
+raynaud's sign|1
+(noun)|acrocyanosis|Raynaud's sign|cyanosis (generic term)
+rayon|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+rayon stocking|1
+(noun)|nylons|nylon stocking|rayons|silk stocking|stocking (generic term)
+rayons|1
+(noun)|nylons|nylon stocking|rayon stocking|silk stocking|stocking (generic term)
+razbliuto|1
+(noun)|sentiment (generic term)
+raze|1
+(verb)|level|rase|dismantle|tear down|take down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+razed|1
+(adj)|demolished|dismantled|destroyed (similar term)
+razing|2
+(noun)|wrecking|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|leveling|tearing down|demolishing|destruction (generic term)|devastation (generic term)
+razmataz|1
+(noun)|razzle-dazzle|razzle|razzmatazz|play (generic term)
+razor|2
+(noun)|edge tool (generic term)
+(verb)|shave (generic term)
+razor-backed|1
+(adj)|razorback|backed (similar term)
+razor-billed auk|1
+(noun)|razorbill|Alca torda|auk (generic term)
+razor-fish|1
+(noun)|razor fish|wrasse (generic term)
+razor-sharp|2
+(adj)|distinct (similar term)
+(adj)|sharp (similar term)
+razor clam|1
+(noun)|jackknife clam|knife-handle|clam (generic term)
+razor edge|1
+(noun)|edge (generic term)
+razor fish|1
+(noun)|razor-fish|wrasse (generic term)
+razorback|3
+(adj)|razor-backed|backed (similar term)
+(noun)|razorback hog|razorbacked hog|swine (generic term)
+(noun)|rorqual|baleen whale (generic term)|whalebone whale (generic term)
+razorback hog|1
+(noun)|razorback|razorbacked hog|swine (generic term)
+razorbacked hog|1
+(noun)|razorback|razorback hog|swine (generic term)
+razorbill|1
+(noun)|razor-billed auk|Alca torda|auk (generic term)
+razorblade|1
+(noun)|blade (generic term)
+razz|2
+(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|tease|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+razzing|1
+(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razz|snort|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+razzle|1
+(noun)|razzle-dazzle|razzmatazz|razmataz|play (generic term)
+razzle-dazzle|1
+(noun)|razzle|razzmatazz|razmataz|play (generic term)
+razzmatazz|1
+(noun)|razzle-dazzle|razzle|razmataz|play (generic term)
+rb|1
+(noun)|rubidium|Rb|atomic number 37|metallic element (generic term)|metal (generic term)
+rbc|1
+(noun)|red blood cell|RBC|erythrocyte|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)
+rbi|1
+(noun)|run batted in|run (generic term)|tally (generic term)
+rcmp|1
+(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)|international law enforcement agency (generic term)
+re|3
+(noun)|rhenium|Re|atomic number 75|metallic element (generic term)|metal (generic term)
+(noun)|Ra|Re|Egyptian deity (generic term)
+(noun)|ray|solfa syllable (generic term)
+re-address|1
+(verb)|address (generic term)|direct (generic term)
+re-afforest|1
+(verb)|afforest (generic term)|forest (generic term)
+re-afforestation|1
+(noun)|reforestation|reclamation (generic term)|renewal (generic term)|rehabilitation (generic term)
+re-argue|1
+(verb)|argue (generic term)|reason (generic term)
+re-arm|1
+(verb)|rearm|arm (generic term)|build up (generic term)|fortify (generic term)|gird (generic term)
+re-assume|1
+(verb)|assume (generic term)|acquire (generic term)|adopt (generic term)|take on (generic term)|take (generic term)
+re-create|3
+(verb)|make (generic term)|create (generic term)
+(verb)|copy|make (generic term)|create (generic term)
+(verb)|create by mental act (generic term)|create mentally (generic term)
+re-creation|1
+(noun)|creation (generic term)|creative activity (generic term)
+re-echo|1
+(noun)|echo (generic term)|reverberation (generic term)|sound reflection (generic term)|replication (generic term)
+re-emerge|1
+(verb)|reappear|appear (generic term)
+re-emphasise|1
+(verb)|re-emphasize|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+re-emphasize|1
+(verb)|re-emphasise|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+re-enter|1
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+re-entrant|1
+(adj)|reentrant|salient (antonym)
+re-equip|1
+(verb)|rejig|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+re-establishment|1
+(noun)|restoration (generic term)
+re-examine|1
+(verb)|probe (generic term)|examine (generic term)
+re-experiencing|1
+(noun)|reliving|experience (generic term)
+re-explain|1
+(verb)|reinterpret|rede (generic term)|interpret (generic term)
+re-explore|1
+(verb)|research (generic term)|search (generic term)|explore (generic term)
+re-formation|1
+(noun)|regeneration|reconstruction (generic term)
+re-formed|1
+(adj)|organized (similar term)
+re-incorporate|1
+(verb)|integrate (generic term)|incorporate (generic term)
+re-introduce|1
+(verb)|reintroduce|introduce (generic term)|present (generic term)|acquaint (generic term)
+re-introduction|1
+(noun)|proposal (generic term)
+re-sentencing|1
+(noun)|commutation|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+re-start|2
+(verb)|restart|start (generic term)|start up (generic term)
+(verb)|resume|restart|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+re-uptake|1
+(noun)|reuptake|uptake (generic term)
+rea silvia|1
+(noun)|Rhea Silvia|Rea Silvia|vestal virgin (generic term)
+reabsorb|1
+(verb)|resorb|absorb (generic term)
+reabsorption|1
+(noun)|resorption|organic process (generic term)|biological process (generic term)
+reach|13
+(noun)|range|limit (generic term)
+(noun)|scope|range|orbit|compass|ambit|extent (generic term)
+(noun)|reaching|stretch|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|compass|range|grasp|capability (generic term)|capableness (generic term)|potentiality (generic term)
+(verb)|make|attain|hit|arrive at|gain
+(verb)|hit|attain|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|reach out|move (generic term)|reach out (related term)
+(verb)|get through|get hold of|contact|communicate (generic term)|intercommunicate (generic term)
+(verb)|achieve|accomplish|attain|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|extend to|touch|be (generic term)|reach out (related term)|reach into (related term)
+(verb)|make|get to|progress to|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|pass|hand|pass on|turn over|give|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|strive|strain|tug (generic term)|labor (generic term)|labour (generic term)|push (generic term)|drive (generic term)
+reach into|1
+(verb)|reach (generic term)|extend to (generic term)|touch (generic term)
+reach out|3
+(verb)|reach|move (generic term)|reach out (related term)
+(verb)|extend|poke out|be (generic term)
+(verb)|interact (generic term)
+reachable|1
+(adj)|approachable|accessible (similar term)
+reaching|2
+(noun)|reach|stretch|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|arrival|accomplishment (generic term)|achievement (generic term)
+reacquaint|1
+(verb)|introduce (generic term)|present (generic term)|acquaint (generic term)
+reacquired stock|1
+(noun)|treasury stock|treasury shares|stock (generic term)
+react|3
+(verb)|respond|act (generic term)|move (generic term)
+(verb)|change state (generic term)|turn (generic term)
+(verb)|oppose|act (generic term)|move (generic term)
+reactance|1
+(noun)|electrical phenomenon (generic term)
+reactant|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+reaction|7
+(noun)|response (generic term)
+(noun)|response|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|chemical reaction|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|idea (generic term)|thought (generic term)
+(noun)|resistance (generic term)|opposition (generic term)
+(noun)|conservatism (generic term)|conservativism (generic term)
+(noun)|force (generic term)
+reaction-propulsion engine|1
+(noun)|reaction engine|engine (generic term)
+reaction engine|1
+(noun)|reaction-propulsion engine|engine (generic term)
+reaction formation|1
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+reaction propulsion|1
+(noun)|propulsion (generic term)
+reaction time|1
+(noun)|response time|latency|latent period|time interval (generic term)|interval (generic term)
+reaction turbine|1
+(noun)|turbine (generic term)
+reactionary|2
+(adj)|reactionist|far-right|right (similar term)
+(noun)|ultraconservative|extreme right-winger|conservative (generic term)|conservativist (generic term)
+reactionism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+reactionist|1
+(adj)|reactionary|far-right|right (similar term)
+reactivate|1
+(verb)|activate (generic term)
+reactive|2
+(adj)|activated (similar term)|excited (similar term)|labile (similar term)|oxidizable (similar term)|thermolabile (similar term)|unstable (similar term)|unreactive (antonym)
+(adj)|sensitive (similar term)
+reactive depression|1
+(noun)|exogenous depression|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+reactive schizophrenia|1
+(noun)|acute schizophrenic episode|schizophrenia (generic term)|schizophrenic disorder (generic term)|schizophrenic psychosis (generic term)|dementia praecox (generic term)
+reactivity|2
+(noun)|responsiveness|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+(noun)|susceptibility (generic term)|susceptibleness (generic term)
+reactor|2
+(noun)|electrical device (generic term)
+(noun)|nuclear reactor|apparatus (generic term)|setup (generic term)
+read|12
+(noun)|publication (generic term)
+(verb)|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|say|have (generic term)|feature (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|scan|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|take|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|register|show|record|indicate (generic term)
+(verb)|learn|study|take
+(verb)|audition (generic term)|try out (generic term)
+(verb)|understand (generic term)
+(verb)|understand|interpret|translate|understand (generic term)
+read-only file|1
+(noun)|computer file (generic term)
+read-only memory|1
+(noun)|ROM|read-only storage|fixed storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+read-only memory chip|1
+(noun)|memory chip (generic term)
+read-only storage|1
+(noun)|read-only memory|ROM|fixed storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+read-out|3
+(noun)|readout|output signal (generic term)|output (generic term)
+(noun)|readout|information (generic term)|info (generic term)
+(noun)|readout|electronic device (generic term)
+read/write head|1
+(noun)|head|coil (generic term)
+read/write memory|1
+(noun)|random-access memory|random access memory|random memory|RAM|volatile storage (generic term)
+read between the lines|1
+(verb)|interpret (generic term)|construe (generic term)|see (generic term)
+read method|1
+(noun)|Read method of childbirth|Read method|natural childbirth (generic term)
+read method of childbirth|1
+(noun)|Read method of childbirth|Read method|natural childbirth (generic term)
+readability|2
+(noun)|intelligibility (generic term)
+(noun)|legibility|comprehensibility (generic term)|understandability (generic term)|illegibility (antonym)
+readable|1
+(adj)|clear|decipherable|legible (similar term)
+readably|1
+(adv)|legibly|decipherably|illegibly (antonym)
+readapt|2
+(verb)|adjust (generic term)|conform (generic term)|adapt (generic term)
+(verb)|readjust|adjust (generic term)|conform (generic term)|adapt (generic term)
+reader|8
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|subscriber|customer (generic term)|client (generic term)
+(noun)|literate (generic term)|literate person (generic term)
+(noun)|reviewer|referee|critic (generic term)
+(noun)|proofreader|printer (generic term)|pressman (generic term)
+(noun)|lector|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+(noun)|lector|lecturer|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|textbook (generic term)|text (generic term)|text edition (generic term)|schoolbook (generic term)|school text (generic term)
+readership|1
+(noun)|audience (generic term)
+readily|1
+(adv)|promptly|pronto
+readiness|4
+(noun)|preparedness|preparation|state (generic term)
+(noun)|eagerness|zeal|forwardness|willingness (generic term)
+(noun)|set|cognitive state (generic term)|state of mind (generic term)
+(noun)|facility|effortlessness (generic term)
+reading|8
+(noun)|linguistic process (generic term)|language (generic term)
+(noun)|meter reading|indication|datum (generic term)|data point (generic term)
+(noun)|interpretation (generic term)
+(noun)|reading material|written communication (generic term)|written language (generic term)
+(noun)|interpretation|version|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|Reading|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|recitation|recital|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+(noun)|meter reading|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+reading assignment|1
+(noun)|lesson (generic term)
+reading clinic|1
+(noun)|clinic (generic term)
+reading desk|1
+(noun)|lectern|stand (generic term)
+reading lamp|1
+(noun)|lamp (generic term)
+reading material|1
+(noun)|reading|written communication (generic term)|written language (generic term)
+reading program|1
+(noun)|course of study (generic term)|program (generic term)|programme (generic term)|curriculum (generic term)|syllabus (generic term)
+reading room|1
+(noun)|room (generic term)
+reading teacher|1
+(noun)|teacher (generic term)|instructor (generic term)
+readjust|2
+(verb)|readapt|adjust (generic term)|conform (generic term)|adapt (generic term)
+(verb)|reset|adjust (generic term)|set (generic term)|correct (generic term)
+readjustment|2
+(noun)|accommodation (generic term)
+(noun)|adjustment|registration|calibration (generic term)|standardization (generic term)|standardisation (generic term)
+readmission|1
+(noun)|admission (generic term)|admittance (generic term)
+readmit|2
+(verb)|admit (generic term)|allow in (generic term)|let in (generic term)|intromit (generic term)
+(verb)|admit (generic term)|let in (generic term)|include (generic term)
+readout|3
+(noun)|read-out|output signal (generic term)|output (generic term)
+(noun)|read-out|information (generic term)|info (generic term)
+(noun)|read-out|electronic device (generic term)
+ready|8
+(adj)|at the ready (similar term)|fit (similar term)|primed (similar term)|set (similar term)|in order (similar term)|prompt (similar term)|ripe (similar term)|waiting (similar term)|ready and waiting (similar term)|prepared (related term)|willing (related term)|unready (antonym)
+(adj)|available (similar term)
+(adj)|willing (similar term)
+(adj)|prepared (similar term)
+(adj)|quick|intelligent (similar term)
+(noun)|readiness (generic term)|preparedness (generic term)|preparation (generic term)
+(verb)|cook|fix|make|prepare|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|fix|prepare|set up|gear up|set|change (generic term)|alter (generic term)|modify (generic term)
+ready-cooked|1
+(adj)|cooked (similar term)
+ready-made|4
+(adj)|made (similar term)|off-the-rack (similar term)|off-the-shelf (similar term)|off-the-peg (similar term)|ready-to-wear (similar term)|prefab (similar term)|prefabricated (similar term)|ready-to-eat (similar term)|custom-made (antonym)
+(adj)|cliched|unoriginal (similar term)
+(adj)|factory-made (similar term)
+(noun)|artifact (generic term)|artefact (generic term)|custom-made (antonym)
+ready-mix|1
+(noun)|convenience food (generic term)|mix (generic term)|premix (generic term)
+ready-to-eat|1
+(adj)|ready-made (similar term)
+ready-to-wear|2
+(adj)|off-the-rack|off-the-shelf|off-the-peg|ready-made (similar term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+ready and waiting|1
+(adj)|waiting|ready (similar term)
+ready cash|1
+(noun)|cold cash|ready money|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+ready money|1
+(noun)|ready cash|cold cash|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+ready reckoner|1
+(noun)|reckoner|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+ready to hand|1
+(adj)|convenient|handy|accessible (similar term)
+readying|1
+(noun)|preparation|activity (generic term)
+reaffiliation|1
+(noun)|affiliation (generic term)
+reaffirm|1
+(verb)|affirm (generic term)
+reaffirmation|1
+(noun)|reassertion|avowal (generic term)|avouchment (generic term)|affirmation (generic term)
+reagan|1
+(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+reagan administration|1
+(noun)|Reagan administration|executive (generic term)
+reagent|1
+(noun)|chemical agent (generic term)
+reagin|1
+(noun)|immunoglobulin E (generic term)|IgE (generic term)
+real|12
+(adj)|existent|actual (similar term)|actual (similar term)|factual (similar term)|historical (similar term)|concrete (related term)|genuine (related term)|echt (related term)|realistic (related term)|sincere (related term)|unreal (antonym)
+(adj)|proper (similar term)|true (similar term)|unreal (antonym)
+(adj)|actual|genuine|literal|true (similar term)
+(adj)|serious (similar term)
+(adj)|tangible|concrete (similar term)
+(adj)|nominal (antonym)
+(adj)|substantial|material|material (related term)|insubstantial (antonym)
+(adj)|tangible (similar term)
+(adj)|veridical|realistic (similar term)
+(noun)|real number|complex number (generic term)|complex quantity (generic term)|imaginary number (generic term)|imaginary (generic term)
+(noun)|coin (generic term)
+(adv)|very|really|rattling
+real-estate business|1
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+real-time|1
+(adj)|time period|period of time|period (related term)
+real-time operation|1
+(noun)|real-time processing|data processing (generic term)
+real-time processing|1
+(noun)|real-time operation|data processing (generic term)
+real estate|1
+(noun)|real property|realty|immovable|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+real estate agent|1
+(noun)|realtor|real estate broker|estate agent|land agent|house agent|agent (generic term)|factor (generic term)|broker (generic term)
+real estate broker|1
+(noun)|realtor|real estate agent|estate agent|land agent|house agent|agent (generic term)|factor (generic term)|broker (generic term)
+real estate investment trust|1
+(noun)|Real Estate Investment Trust|REIT|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+real estate loan|1
+(noun)|mortgage loan|loan (generic term)
+real gnp|1
+(noun)|real gross national product|real GNP|gross national product (generic term)|GNP (generic term)
+real gross national product|1
+(noun)|real GNP|gross national product (generic term)|GNP (generic term)
+real ira|1
+(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+real irish republican army|1
+(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+real life|1
+(noun)|real world|world (generic term)|reality (generic term)
+real matrix|1
+(noun)|matrix (generic term)
+real mccoy|1
+(noun)|real McCoy|real thing|real stuff|authenticity (generic term)|genuineness (generic term)|legitimacy (generic term)
+real number|1
+(noun)|real|complex number (generic term)|complex quantity (generic term)|imaginary number (generic term)|imaginary (generic term)
+real presence|1
+(noun)|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+real property|1
+(noun)|real estate|realty|immovable|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+real storage|1
+(noun)|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+real stuff|1
+(noun)|real McCoy|real thing|authenticity (generic term)|genuineness (generic term)|legitimacy (generic term)
+real tennis|1
+(noun)|royal tennis|court tennis|tennis (generic term)|lawn tennis (generic term)
+real thing|1
+(noun)|real McCoy|real stuff|authenticity (generic term)|genuineness (generic term)|legitimacy (generic term)
+real time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+real world|1
+(noun)|real life|world (generic term)|reality (generic term)
+realgar|1
+(noun)|mineral (generic term)
+realign|1
+(verb)|realine|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+realine|1
+(verb)|realign|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+realisation|6
+(noun)|realization|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|realization|recognition|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|realization|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+(noun)|realization|composing (generic term)|composition (generic term)
+(noun)|realization|actualization|actualisation|creating by mental acts (generic term)
+(noun)|realization|fruition|consummation (generic term)
+realise|6
+(verb)|gain|take in|clear|make|earn|realize|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|realize|sell (generic term)
+(verb)|realize|harmonize (generic term)|harmonise (generic term)
+(verb)|realize|actualize|actualise|substantiate|make (generic term)|create (generic term)
+(verb)|recognize|recognise|realize|agnize|agnise|know (generic term)|cognize (generic term)|cognise (generic term)
+(verb)|understand|realize|see
+realised|1
+(adj)|accomplished|completed|realized|complete (similar term)
+realism|5
+(noun)|pragmatism|practicality (generic term)
+(noun)|naive realism|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|reality|realness|actuality (generic term)|unreality (antonym)
+(noun)|naturalism|artistic movement (generic term)|art movement (generic term)
+(noun)|Platonism|philosophical doctrine (generic term)|philosophical theory (generic term)
+realist|3
+(noun)|philosopher (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|painter (generic term)
+realistic|3
+(adj)|down-to-earth (similar term)|earthy (similar term)|hardheaded (similar term)|hard-nosed (similar term)|practical (similar term)|pragmatic (similar term)|graphic (similar term)|lifelike (similar term)|pictorial (similar term)|vivid (similar term)|living (similar term)|true-to-life (similar term)|true to life (similar term)|veridical (similar term)|real (similar term)|virtual (similar term)|practical (similar term)|possible (related term)|practical (related term)|real (related term)|existent (related term)|unrealistic (antonym)
+(adj)|naturalistic|representational (similar term)
+(adj)|philosophical doctrine|philosophical theory (related term)
+realistically|1
+(adv)|unrealistically (antonym)
+reality|4
+(noun)|world|experience (generic term)
+(noun)|realness|realism|actuality (generic term)|unreality (antonym)
+(noun)|actuality (generic term)
+(noun)|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|unreality (antonym)
+reality check|1
+(noun)|juncture (generic term)|occasion (generic term)
+reality principle|1
+(noun)|principle (generic term)|pleasure principle (antonym)
+realizable|2
+(adj)|tangible (similar term)
+(adj)|accomplishable|achievable|doable|manageable|possible (similar term)
+realization|6
+(noun)|realisation|recognition|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|realisation|actualization|actualisation|creating by mental acts (generic term)
+(noun)|realisation|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|realisation|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+(noun)|realisation|composing (generic term)|composition (generic term)
+(noun)|realisation|fruition|consummation (generic term)
+realize|6
+(verb)|recognize|recognise|realise|agnize|agnise|know (generic term)|cognize (generic term)|cognise (generic term)
+(verb)|understand|realise|see
+(verb)|realise|actualize|actualise|substantiate|make (generic term)|create (generic term)
+(verb)|gain|take in|clear|make|earn|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|realise|sell (generic term)
+(verb)|realise|harmonize (generic term)|harmonise (generic term)
+realized|1
+(adj)|accomplished|completed|realised|complete (similar term)
+reallocate|1
+(verb)|reapportion|allocate (generic term)|apportion (generic term)
+reallocation|2
+(noun)|allotment (generic term)|allocation (generic term)
+(noun)|reallotment|reapportionment|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+reallot|1
+(verb)|distribute (generic term)|administer (generic term)|mete out (generic term)|deal (generic term)|parcel out (generic term)|lot (generic term)|dispense (generic term)|shell out (generic term)|deal out (generic term)|dish out (generic term)|allot (generic term)|dole out (generic term)
+reallotment|1
+(noun)|reapportionment|reallocation|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+really|4
+(adv)|truly|genuinely
+(adv)|actually
+(adv)|in truth|truly
+(adv)|very|real|rattling
+realm|3
+(noun)|kingdom|land|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|domain|region|knowledge domain (generic term)|knowledge base (generic term)
+(noun)|kingdom|domain (generic term)|demesne (generic term)|land (generic term)
+realness|1
+(noun)|reality|realism|actuality (generic term)|unreality (antonym)
+realpolitik|1
+(noun)|practical politics|politics (generic term)|political science (generic term)|government (generic term)
+realtor|1
+(noun)|real estate broker|real estate agent|estate agent|land agent|house agent|agent (generic term)|factor (generic term)|broker (generic term)
+realty|1
+(noun)|real property|real estate|immovable|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+ream|5
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|definite quantity (generic term)
+(verb)|press out (generic term)|express (generic term)|extract (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|enlarge (generic term)
+reamer|2
+(noun)|juicer|juice reamer|squeezer (generic term)
+(noun)|drill (generic term)
+reanimate|1
+(verb)|animate|recreate|revive|renovate|repair|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+reanimated|1
+(adj)|revived|animated (similar term)|alive (similar term)
+reap|2
+(verb)|harvest|glean|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|draw|derive (generic term)|gain (generic term)
+reap hook|1
+(noun)|sickle|reaping hook|edge tool (generic term)
+reaper|3
+(noun)|harvester|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+(noun)|Grim Reaper|Reaper|Death (generic term)
+(noun)|harvester|farm machine (generic term)
+reaper binder|1
+(noun)|binder|harvester (generic term)|reaper (generic term)
+reaping hook|1
+(noun)|sickle|reap hook|edge tool (generic term)
+reappear|1
+(verb)|re-emerge|appear (generic term)
+reappearance|2
+(noun)|appearance (generic term)
+(noun)|return|appearance (generic term)
+reapportion|1
+(verb)|reallocate|allocate (generic term)|apportion (generic term)
+reapportionment|1
+(noun)|reallotment|reallocation|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+reappraisal|1
+(noun)|revaluation|review|reassessment|appraisal (generic term)|assessment (generic term)
+reappraise|1
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+rear|11
+(adj)|rearward|back (similar term)
+(noun)|formation (generic term)|head (antonym)
+(noun)|backside|back end|side (generic term)|face (generic term)|front (antonym)
+(noun)|back|position (generic term)|place (generic term)|front (antonym)
+(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 (generic term)
+(noun)|back|side (generic term)|front (antonym)
+(verb)|rise up|straighten (generic term)
+(verb)|raise|bring up|nurture|parent
+(verb)|rise|lift|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|erect|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|raise|erect|set up|put up|construct (generic term)|build (generic term)|make (generic term)|level (antonym)
+rear-end|1
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+rear admiral|1
+(noun)|flag officer (generic term)
+rear back|2
+(verb)|rear (generic term)|rise up (generic term)
+(verb)|startle (generic term)|jump (generic term)|start (generic term)
+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 (generic term)
+rear lamp|1
+(noun)|taillight|tail lamp|rear light|lamp (generic term)
+rear light|1
+(noun)|taillight|tail lamp|rear lamp|lamp (generic term)
+rear of barrel|1
+(noun)|breech|rear of tube|opening (generic term)
+rear of tube|1
+(noun)|breech|rear of barrel|opening (generic term)
+rear window|1
+(noun)|car window (generic term)
+rearguard|1
+(noun)|detachment (generic term)
+rearing|3
+(adj)|rampant|erect (similar term)|vertical (similar term)|upright (similar term)
+(noun)|raising|nurture|upbringing (generic term)
+(noun)|breeding|bringing up|fostering|fosterage|nurture|raising|upbringing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+rearm|2
+(verb)|arm (generic term)
+(verb)|re-arm|arm (generic term)|build up (generic term)|fortify (generic term)|gird (generic term)
+rearmament|1
+(noun)|arming (generic term)|armament (generic term)|equipping (generic term)
+rearmost|1
+(adj)|backmost|hindermost|hindmost|back (similar term)
+rearrange|1
+(verb)|arrange (generic term)|set up (generic term)
+rearrangement|1
+(noun)|arrangement (generic term)|arranging (generic term)|transcription (generic term)
+rearview mirror|1
+(noun)|car mirror (generic term)
+rearward|4
+(adj)|reverse|backward (similar term)
+(adj)|rear|back (similar term)
+(noun)|rear (generic term)|backside (generic term)|back end (generic term)
+(adv)|back|backward|backwards|rearwards|forward (antonym)
+rearwards|1
+(adv)|back|backward|backwards|rearward|forward (antonym)
+reason|9
+(noun)|ground|rational motive (generic term)
+(noun)|explanation (generic term)|account (generic term)
+(noun)|understanding|intellect|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|rationality|reasonableness|sanity (generic term)|saneness (generic term)
+(noun)|cause|grounds|justification (generic term)
+(noun)|fact (generic term)
+(verb)|reason out|conclude|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|argue|present (generic term)|represent (generic term)|lay out (generic term)
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+reason out|1
+(verb)|reason|conclude|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+reasonable|3
+(adj)|sensible|commonsense (similar term)|commonsensible (similar term)|commonsensical (similar term)|healthy (similar term)|intelligent (similar term)|levelheaded (similar term)|level-headed (similar term)|sound (similar term)|tenable (similar term)|well-founded (similar term)|fair (related term)|just (related term)|logical (related term)|rational (related term)|valid (related term)|unreasonable (antonym)
+(adj)|fair|fairish|moderate (similar term)
+(adj)|sane|rational (similar term)
+reasonable care|1
+(noun)|due care|ordinary care|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+reasonableness|5
+(noun)|rationality|reason|sanity (generic term)|saneness (generic term)
+(noun)|wisdom (generic term)|wiseness (generic term)|soundness (generic term)
+(noun)|moderateness|modestness|inexpensiveness (generic term)
+(noun)|moderation (generic term)|moderateness (generic term)
+(noun)|tenability|tenableness|plausibility (generic term)|plausibleness (generic term)
+reasonably|2
+(adv)|moderately|within reason|somewhat|fairly|middling|passably|immoderately (antonym)|unreasonably (antonym)
+(adv)|sanely|sensibly|unreasonably (antonym)
+reasoned|2
+(adj)|sound|well-grounded|valid (similar term)
+(adj)|considered|well thought out|thoughtful (similar term)
+reasoner|1
+(noun)|ratiocinator|thinker (generic term)
+reasoning|2
+(adj)|intelligent|thinking|rational (similar term)
+(noun)|logical thinking|abstract thought|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+reasoning backward|1
+(noun)|regress|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+reasoning by elimination|1
+(noun)|elimination|analysis (generic term)|analytic thinking (generic term)
+reasonless|3
+(adj)|mindless|senseless|unreasonable (similar term)
+(adj)|irrational (similar term)
+(adj)|causeless|unmotivated (similar term)
+reassail|1
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+reassemble|1
+(verb)|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+reassembly|1
+(noun)|refabrication|reconstruction (generic term)
+reassert|1
+(verb)|confirm|affirm (generic term)
+reassertion|1
+(noun)|reaffirmation|avowal (generic term)|avouchment (generic term)|affirmation (generic term)
+reassess|1
+(verb)|reevaluate|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+reassessment|1
+(noun)|reappraisal|revaluation|review|appraisal (generic term)|assessment (generic term)
+reassign|1
+(verb)|transfer|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+reassignment|1
+(noun)|assignment (generic term)|duty assignment (generic term)
+reassurance|1
+(noun)|support (generic term)
+reassure|2
+(verb)|assure|calm (generic term)|calm down (generic term)|quiet (generic term)|tranquilize (generic term)|tranquillize (generic term)|tranquillise (generic term)|quieten (generic term)|lull (generic term)|still (generic term)|worry (antonym)
+(verb)|assure (generic term)
+reassured|1
+(adj)|confident (similar term)
+reassuring|1
+(adj)|assuasive (similar term)|calming (similar term)|pacifying (similar term)|soothing (similar term)|assuring (similar term)|comforting (similar term)|consolatory (similar term)|consoling (similar term)|encouraging (related term)|unreassuring (antonym)
+reata|1
+(noun)|lasso|lariat|riata|rope (generic term)
+reattribute|1
+(verb)|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+reaumur|1
+(noun)|Reaumur|Rene Antoine Ferchault de Reaumur|physicist (generic term)
+reaumur scale|1
+(noun)|Reaumur scale|temperature scale (generic term)
+reaumur thermometer|1
+(noun)|Reaumur thermometer|thermometer (generic term)
+reave|1
+(verb)|plunder|despoil|loot|strip|rifle|ransack|pillage|foray|take (generic term)
+reawaken|1
+(verb)|awaken (generic term)|wake (generic term)|waken (generic term)|rouse (generic term)|wake up (generic term)|arouse (generic term)
+reb|1
+(noun)|Rebel|Reb|Johnny Reb|Johnny|greyback|Confederate soldier (generic term)
+rebarbative|1
+(adj)|repellent|repellant|unpleasant (similar term)
+rebate|5
+(noun)|discount|refund (generic term)
+(noun)|rabbet|groove (generic term)|channel (generic term)
+(verb)|discount (generic term)
+(verb)|cut (generic term)
+(verb)|join (generic term)|bring together (generic term)
+rebato|1
+(noun)|rabato|collar (generic term)|neckband (generic term)
+rebecca|1
+(noun)|Rebecca|Rebekah|wife (generic term)|married woman (generic term)
+rebecca rolfe|1
+(noun)|Pocahontas|Matoaka|Rebecca Rolfe|Powhatan (generic term)
+rebecca west|1
+(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer (generic term)|author (generic term)
+rebekah|1
+(noun)|Rebecca|Rebekah|wife (generic term)|married woman (generic term)
+rebel|6
+(adj)|southern (similar term)
+(noun)|Rebel|Reb|Johnny Reb|Johnny|greyback|Confederate soldier (generic term)
+(noun)|insurgent|insurrectionist|freedom fighter|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(noun)|maverick|nonconformist (generic term)|recusant (generic term)
+(verb)|arise|rise|rise up|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|renegade|protest (generic term)|resist (generic term)|dissent (generic term)
+rebellion|2
+(noun)|resistance (generic term)
+(noun)|insurrection|revolt|rising|uprising|conflict (generic term)|struggle (generic term)|battle (generic term)
+rebellious|3
+(adj)|insubordinate (similar term)
+(adj)|disaffected|ill-affected|malcontent|discontented (similar term)|discontent (similar term)
+(adj)|disloyal (similar term)
+rebelliously|1
+(adv)|contumaciously|defiantly
+rebelliousness|2
+(noun)|defiance|intractability (generic term)|intractableness (generic term)
+(noun)|insubordination|resistance (generic term)
+rebind|1
+(verb)|bind (generic term)
+rebirth|4
+(noun)|metempsychosis|phenomenon (generic term)
+(noun)|reincarnation|renascence|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)
+(noun)|Renaissance|Renascence|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+(noun)|conversion|spiritual rebirth|redemption (generic term)|salvation (generic term)
+reboot|1
+(verb)|boot|bring up|resuscitate (generic term)|revive (generic term)
+reborn|1
+(adj)|born-again|converted|regenerate (similar term)
+rebound|5
+(noun)|recoil|repercussion|backlash|movement (generic term)|motion (generic term)
+(noun)|reaction (generic term)|response (generic term)
+(noun)|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+(verb)|bounce|resile|take a hop|spring|bound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|rally|recover (generic term)|go back (generic term)|recuperate (generic term)
+rebound tenderness|1
+(noun)|tenderness (generic term)|soreness (generic term)|rawness (generic term)
+reboxetine|1
+(noun)|Edronax|antidepressant (generic term)|antidepressant drug (generic term)
+rebozo|1
+(noun)|scarf (generic term)
+rebroadcast|2
+(noun)|broadcast (generic term)
+(verb)|rerun|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+rebuff|4
+(noun)|slight|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+(noun)|snub|repulse|rejection (generic term)
+(verb)|snub|repel|reject (generic term)|spurn (generic term)|freeze off (generic term)|scorn (generic term)|pooh-pooh (generic term)|disdain (generic term)|turn down (generic term)
+(verb)|repel|repulse|fight off|drive back|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+rebuild|1
+(verb)|reconstruct|construct (generic term)|build (generic term)|make (generic term)
+rebuilding|1
+(noun)|reconstruction (generic term)
+rebuke|2
+(noun)|reproof|reproval|reprehension|reprimand|criticism (generic term)|unfavorable judgment (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+rebuked|1
+(adj)|admonished|chastened|reprimanded|reproved|punished (similar term)
+rebuker|1
+(noun)|upbraider|reprover|reproacher|authority (generic term)
+reburial|1
+(noun)|reburying|burying (generic term)|burial (generic term)
+rebury|1
+(verb)|lay (generic term)|put down (generic term)|repose (generic term)
+reburying|1
+(noun)|reburial|burying (generic term)|burial (generic term)
+rebus|1
+(noun)|problem (generic term)
+rebut|2
+(verb)|refute|renounce (generic term)|repudiate (generic term)
+(verb)|refute|controvert|disprove (generic term)|confute (generic term)
+rebuttal|2
+(noun)|refutation (generic term)|defense (generic term)|defence (generic term)
+(noun)|rebutter|pleading (generic term)
+rebutter|2
+(noun)|disprover|refuter|confuter|debater (generic term)|arguer (generic term)
+(noun)|rebuttal|pleading (generic term)
+rec room|1
+(noun)|recreation room|room (generic term)
+recalcitrance|1
+(noun)|refractoriness|unmanageableness|recalcitrancy|intractability (generic term)|intractableness (generic term)
+recalcitrancy|1
+(noun)|refractoriness|unmanageableness|recalcitrance|intractability (generic term)|intractableness (generic term)
+recalcitrant|2
+(adj)|fractious|refractory|disobedient (similar term)
+(adj)|defiant (similar term)|noncompliant (similar term)
+recalcitrate|1
+(verb)|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+recalculate|1
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+recalculation|1
+(noun)|calculation (generic term)|computation (generic term)|computing (generic term)
+recall|12
+(noun)|callback|request (generic term)|asking (generic term)
+(noun)|call (generic term)
+(noun)|bugle call (generic term)
+(noun)|recollection|reminiscence|memory (generic term)|remembering (generic term)
+(noun)|abrogation (generic term)|repeal (generic term)|annulment (generic term)
+(verb)|remember|retrieve|call back|call up|recollect|think|think back (related term)|forget (antonym)
+(verb)|hark back|return|come back|denote (generic term)|refer (generic term)
+(verb)|echo|resemble (generic term)
+(verb)|call back|call (generic term)|send for (generic term)
+(verb)|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|cancel (generic term)|strike down (generic term)|issue (antonym)
+(verb)|call in|call back|withdraw|take (generic term)
+recall dose|1
+(noun)|booster|booster dose|booster shot|dose (generic term)
+recant|1
+(verb)|abjure|forswear|retract|resile|renounce (generic term)|repudiate (generic term)
+recantation|1
+(noun)|retraction|abjuration|disavowal (generic term)|disclaimer (generic term)
+recap|3
+(noun)|recapitulation|review|capitulation (generic term)
+(noun)|retread|car tire (generic term)|automobile tire (generic term)|auto tire (generic term)|rubber tire (generic term)
+(verb)|recapitulate|sum up (generic term)|summarize (generic term)|summarise (generic term)|resume (generic term)
+recapitualtion|1
+(noun)|composing (generic term)|composition (generic term)
+recapitulate|3
+(verb)|recap|sum up (generic term)|summarize (generic term)|summarise (generic term)|resume (generic term)
+(verb)|duplicate (generic term)|reduplicate (generic term)|double (generic term)|repeat (generic term)|replicate (generic term)
+(verb)|reprise|reprize|repeat|play (generic term)|spiel (generic term)
+recapitulation|3
+(noun)|palingenesis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)|cenogenesis (antonym)
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|recap|review|capitulation (generic term)
+recapture|6
+(noun)|seizure (generic term)
+(noun)|retaking|recovery (generic term)|retrieval (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|capture (generic term)
+(verb)|retake|take (generic term)
+(verb)|retake|get (generic term)|catch (generic term)|capture (generic term)
+recast|3
+(verb)|cast (generic term)
+(verb)|remold|remould|cast (generic term)|mold (generic term)|mould (generic term)
+(verb)|reforge|remodel|remake (generic term)|refashion (generic term)|redo (generic term)|make over (generic term)
+recasting|1
+(noun)|rewording|rephrasing|rewriting (generic term)|revising (generic term)
+recce|1
+(noun)|recco|reccy|reconnaissance (generic term)|reconnaissance mission (generic term)
+recco|1
+(noun)|recce|reccy|reconnaissance (generic term)|reconnaissance mission (generic term)
+reccy|1
+(noun)|recce|recco|reconnaissance (generic term)|reconnaissance mission (generic term)
+recede|4
+(verb)|withdraw|retreat|pull away|draw back|pull back|retire|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|fall back|retire|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)|advance (antonym)
+(verb)|fall back|lose|drop off|fall behind|regress (generic term)|retrograde (generic term)|retrogress (generic term)|gain (antonym)
+(verb)|change (generic term)
+receding|4
+(adj)|retiring|retreating (similar term)
+(adj)|backward (similar term)
+(noun)|fadeout|disappearance (generic term)
+(noun)|recession|withdrawal (generic term)
+receipt|4
+(noun)|reception|acquiring (generic term)|getting (generic term)
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)
+(verb)|acknowledge|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|check (generic term)|check off (generic term)|mark (generic term)|mark off (generic term)|tick off (generic term)|tick (generic term)
+receipts|1
+(noun)|gross|revenue|income (generic term)
+receivable|1
+(adj)|due (similar term)|owed (similar term)
+receivables|1
+(noun)|assets (generic term)
+receive|13
+(verb)|have|get (generic term)|acquire (generic term)
+(verb)|get|find|obtain|incur|change (generic term)
+(verb)|pick up|perceive (generic term)|comprehend (generic term)
+(verb)|experience|have|get|undergo
+(verb)|take in|invite
+(verb)|accept (generic term)
+(verb)|welcome|greet (generic term)|recognize (generic term)|recognise (generic term)|say farewell (antonym)
+(verb)|convert (generic term)
+(verb)|meet|encounter|have (generic term)|experience (generic term)
+(verb)|celebrate (generic term)|fete (generic term)
+(verb)|get
+(verb)|partake (generic term)|touch (generic term)
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+received|2
+(adj)|standard|acceptable (similar term)|accepted (similar term)|nonstandard (antonym)
+(adj)|accepted|conventional (similar term)
+receiver|5
+(noun)|receiving system|set (generic term)
+(noun)|liquidator|fiduciary (generic term)
+(noun)|telephone receiver|earphone (generic term)|earpiece (generic term)|headphone (generic term)|phone (generic term)
+(noun)|recipient|acquirer (generic term)
+(noun)|pass receiver|pass catcher|football player (generic term)|footballer (generic term)
+receiver-creditor relation|1
+(noun)|fiduciary relation (generic term)
+receivership|3
+(noun)|state (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+receiving set|1
+(noun)|radio receiver|radio set|radio|tuner|wireless|receiver (generic term)|receiving system (generic term)
+receiving system|1
+(noun)|receiver|set (generic term)
+recency|2
+(noun)|recentness|pastness (generic term)
+(noun)|recentness|newness (generic term)
+recent|4
+(adj)|new (similar term)
+(adj)|late|past (similar term)
+(adj)|modern (similar term)
+(noun)|Holocene|Holocene epoch|Recent|Recent epoch|epoch (generic term)
+recent epoch|1
+(noun)|Holocene|Holocene epoch|Recent|Recent epoch|epoch (generic term)
+recently|2
+(adv)|late|lately|of late|latterly
+(adv)|newly|freshly|fresh|new
+recentness|2
+(noun)|recency|pastness (generic term)
+(noun)|recency|newness (generic term)
+receptacle|3
+(noun)|container (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|fitting (generic term)
+reception|5
+(noun)|response|greeting (generic term)|salutation (generic term)
+(noun)|party (generic term)
+(noun)|broadcasting (generic term)
+(noun)|receipt|acquiring (generic term)|getting (generic term)
+(noun)|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+reception desk|1
+(noun)|counter (generic term)
+reception line|1
+(noun)|queue (generic term)|waiting line (generic term)
+reception room|1
+(noun)|room (generic term)
+receptionist|1
+(noun)|secretary (generic term)|secretarial assistant (generic term)
+receptive|4
+(adj)|pervious (similar term)
+(adj)|open|acceptive (similar term)|acceptant (similar term)|admissive (similar term)|assimilative (similar term)|hospitable (similar term)|unreceptive (antonym)
+(adj)|centripetal|sensory|afferent (similar term)
+(adj)|absorbent (similar term)|absorptive (similar term)
+receptive aphasia|1
+(noun)|Wernicke's aphasia|fluent aphasia|sensory aphasia|impressive aphasia|aphasia (generic term)
+receptiveness|1
+(noun)|receptivity|openness|willingness (generic term)
+receptivity|1
+(noun)|receptiveness|openness|willingness (generic term)
+receptor|2
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|sense organ|sensory receptor|organ (generic term)|effector (antonym)
+recess|8
+(noun)|deferral|abeyance (generic term)|suspension (generic term)
+(noun)|recession|niche|corner|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|inlet|body of water (generic term)|water (generic term)
+(noun)|niche|enclosure (generic term)
+(noun)|respite|break|time out|pause (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|indent (generic term)
+(verb)|adjourn|break up|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+recessed|2
+(adj)|deep-set|sunken|hollow (similar term)
+(adj)|concave (similar term)
+recession|5
+(noun)|financial condition (generic term)|economic condition (generic term)
+(noun)|recess|niche|corner|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|recessional|procession (generic term)
+(noun)|ceding back|cession (generic term)|ceding (generic term)
+(noun)|receding|withdrawal (generic term)
+recessional|3
+(adj)|withdrawal (related term)
+(noun)|recession|procession (generic term)
+(noun)|hymn (generic term)|anthem (generic term)
+recessional march|1
+(noun)|processional march|marching music (generic term)|march (generic term)
+recessionary|1
+(adj)|recessive|financial condition|economic condition (related term)
+recessive|3
+(adj)|recessionary|financial condition|economic condition (related term)
+(adj)|dominant (antonym)
+(noun)|recessive allele|allele (generic term)|allelomorph (generic term)
+recessive allele|1
+(noun)|recessive|allele (generic term)|allelomorph (generic term)
+recessive gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+recharge|2
+(verb)|reload|load (generic term)|charge (generic term)
+(verb)|charge (generic term)
+rechargeable|1
+(adj)|reversible (similar term)
+rechauffe|1
+(noun)|cuisine (generic term)|culinary art (generic term)
+recherche|1
+(adj)|exquisite|elegant (similar term)
+rechewed food|1
+(noun)|cud|feed (generic term)|provender (generic term)
+recidivate|1
+(verb)|relapse|lapse|regress|retrogress|fall back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+recidivism|1
+(noun)|backsliding (generic term)|lapse (generic term)|lapsing (generic term)|relapse (generic term)|relapsing (generic term)|reversion (generic term)|reverting (generic term)
+recidivist|2
+(noun)|repeater|habitual criminal|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|backslider|reversionist|wrongdoer (generic term)|offender (generic term)
+recife|1
+(noun)|Recife|Pernambuco|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+recipe|1
+(noun)|formula|direction (generic term)|instruction (generic term)
+recipient|2
+(noun)|receiver|acquirer (generic term)
+(noun)|recipient role|semantic role (generic term)|participant role (generic term)
+recipient role|1
+(noun)|recipient|semantic role (generic term)|participant role (generic term)
+reciprocal|5
+(adj)|mutual|bilateral (similar term)|correlative (similar term)|interactional (similar term)|interactive (similar term)|reciprocating (similar term)|reciprocatory (similar term)|reciprocative (similar term)|nonreciprocal (antonym)
+(adj)|inverse (similar term)
+(noun)|reciprocality (generic term)|reciprocity (generic term)
+(noun)|multiplicative inverse|inverse (generic term)|opposite (generic term)
+(noun)|reciprocal cross|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+reciprocal-inhibition therapy|1
+(noun)|reciprocal inhibition|behavior therapy (generic term)|behavior modification (generic term)
+reciprocal cross|1
+(noun)|reciprocal|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+reciprocal inhibition|1
+(noun)|reciprocal-inhibition therapy|behavior therapy (generic term)|behavior modification (generic term)
+reciprocal ohm|1
+(noun)|mho|siemens|S|conductance unit (generic term)
+reciprocal pronoun|1
+(noun)|pronoun (generic term)
+reciprocality|1
+(noun)|reciprocity|relation (generic term)
+reciprocally|3
+(adv)|in return
+(adv)|mutually
+(adv)|inversely
+reciprocate|2
+(verb)|act (generic term)|move (generic term)
+(verb)|move (generic term)
+reciprocating|1
+(adj)|reciprocatory|reciprocal (similar term)|mutual (similar term)
+reciprocating engine|1
+(noun)|internal-combustion engine (generic term)|ICE (generic term)
+reciprocating saw|1
+(noun)|saber saw|jigsaw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+reciprocation|3
+(noun)|return (generic term)|paying back (generic term)|getting even (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|interchange|give-and-take|interaction (generic term)
+reciprocative|1
+(adj)|reciprocal (similar term)|mutual (similar term)
+reciprocatory|1
+(adj)|reciprocating|reciprocal (similar term)|mutual (similar term)
+reciprocity|2
+(noun)|reciprocality|relation (generic term)
+(noun)|interchange (generic term)|reciprocation (generic term)|give-and-take (generic term)
+recirculation|1
+(noun)|circulation (generic term)
+recission|1
+(noun)|rescission|cancellation (generic term)
+recital|5
+(noun)|narration|yarn|report (generic term)|account (generic term)
+(noun)|performance (generic term)|public presentation (generic term)
+(noun)|recitation|reading|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+(noun)|statement (generic term)
+(noun)|history (generic term)|account (generic term)|chronicle (generic term)|story (generic term)
+recitalist|1
+(noun)|soloist (generic term)
+recitation|4
+(noun)|matter (generic term)
+(noun)|recital|reading|public speaking (generic term)|speechmaking (generic term)|speaking (generic term)|oral presentation (generic term)
+(noun)|course session|class period|session (generic term)
+(noun)|exercise|practice|drill|practice session|training (generic term)|preparation (generic term)|grooming (generic term)
+recitative|1
+(noun)|passage (generic term)|musical passage (generic term)
+recite|5
+(verb)|declaim|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|repeat (generic term)|echo (generic term)
+(verb)|retell|re-create (generic term)
+(verb)|tell|narrate|recount|inform (generic term)
+(verb)|enumerate|itemize|itemise|name (generic term)|identify (generic term)
+reciter|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+reckless|2
+(adj)|foolhardy|heady|rash|bold (similar term)
+(adj)|heedless|careless (similar term)
+recklessness|1
+(noun)|foolhardiness|rashness|unthoughtfulness (generic term)|thoughtlessness (generic term)
+reckon|6
+(verb)|think|opine|suppose|imagine|guess|expect (generic term)|anticipate (generic term)
+(verb)|calculate|estimate|count on|figure|forecast|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|see|consider|view|regard|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|calculate|cipher|cypher|compute|work out|figure|reason (generic term)|figure out (related term)|reckon (related term)
+(verb)|count|bet|depend|look|calculate|trust (generic term)|swear (generic term)|rely (generic term)|bank (generic term)
+(verb)|count|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+reckoner|2
+(noun)|calculator|figurer|estimator|computer|expert (generic term)
+(noun)|ready reckoner|handbook (generic term)|enchiridion (generic term)|vade mecum (generic term)
+reckoning|3
+(noun)|calculation|computation|figuring|problem solving (generic term)
+(noun)|tally|bill (generic term)|account (generic term)|invoice (generic term)
+(noun)|count|counting|numeration|enumeration|tally|investigation (generic term)|investigating (generic term)
+reclaim|5
+(verb)|repossess|get (generic term)|acquire (generic term)
+(verb)|recover|recycle (generic term)|reprocess (generic term)|reuse (generic term)
+(verb)|reform|regenerate|rectify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|convert (generic term)|change over (generic term)
+(verb)|domesticate|domesticize|domesticise|tame|change (generic term)|alter (generic term)|modify (generic term)
+reclaimable|1
+(adj)|recyclable|reusable|useful (similar term)|utile (similar term)
+reclaimed|1
+(adj)|rescued|saved (similar term)
+reclamation|3
+(noun)|renewal|rehabilitation|restoration (generic term)
+(noun)|reformation|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+(noun)|recovery (generic term)|retrieval (generic term)
+reclassification|1
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+reclassify|1
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+recline|3
+(verb)|lean back|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|recumb|repose|lie (generic term)
+recliner|1
+(noun)|reclining chair|lounger|armchair (generic term)
+reclining|2
+(adj)|accumbent|decumbent|recumbent|unerect (similar term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+reclining chair|1
+(noun)|recliner|lounger|armchair (generic term)
+recluse|2
+(adj)|reclusive|withdrawn|unsocial (similar term)
+(noun)|hermit|solitary|solitudinarian|troglodyte|loner (generic term)|lone wolf (generic term)|lone hand (generic term)
+reclusive|2
+(adj)|recluse|withdrawn|unsocial (similar term)
+(adj)|cloistered|secluded|sequestered|private (similar term)
+reclusiveness|1
+(noun)|solitariness (generic term)
+recode|1
+(verb)|rearrange (generic term)
+recoding|1
+(noun)|cryptography (generic term)|coding (generic term)|secret writing (generic term)|steganography (generic term)
+recognisable|1
+(adj)|recognizable|placeable|identifiable (similar term)
+recognisance|1
+(noun)|recognizance|security (generic term)|surety (generic term)
+recognise|8
+(verb)|recognize|prize (generic term)|value (generic term)|treasure (generic term)|appreciate (generic term)
+(verb)|accredit|recognize|license (generic term)|licence (generic term)|certify (generic term)
+(verb)|recognize|distinguish|discern|pick out|make out|tell apart
+(verb)|greet|recognize|address (generic term)|accost (generic term)|come up to (generic term)
+(verb)|acknowledge|recognize|thank (generic term)|give thanks (generic term)
+(verb)|recognize|realize|realise|agnize|agnise|know (generic term)|cognize (generic term)|cognise (generic term)
+(verb)|recognize|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+(verb)|acknowledge|recognize|know|accept (generic term)
+recognised|2
+(adj)|recognized|established (similar term)|constituted (similar term)
+(adj)|accepted|recognized|acknowledged (similar term)
+recognition|8
+(noun)|acknowledgment|acknowledgement|acceptance (generic term)
+(noun)|identification|memory (generic term)|remembering (generic term)
+(noun)|credit|approval (generic term)|commendation (generic term)
+(noun)|realization|realisation|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+(noun)|organic phenomenon (generic term)
+(noun)|diplomacy (generic term)|diplomatic negotiations (generic term)
+(noun)|credence (generic term)|acceptance (generic term)
+(noun)|appointment (generic term)|assignment (generic term)|designation (generic term)|naming (generic term)
+recognizable|2
+(adj)|perceptible (similar term)
+(adj)|recognisable|placeable|identifiable (similar term)
+recognizably|1
+(adv)|unrecognizably (antonym)
+recognizance|1
+(noun)|recognisance|security (generic term)|surety (generic term)
+recognize|9
+(verb)|acknowledge|recognise|know|accept (generic term)
+(verb)|recognise|realize|realise|agnize|agnise|know (generic term)|cognize (generic term)|cognise (generic term)
+(verb)|recognise|distinguish|discern|pick out|make out|tell apart
+(verb)|recognise|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+(verb)|accredit|recognise|license (generic term)|licence (generic term)|certify (generic term)
+(verb)|greet|recognise|address (generic term)|accost (generic term)|come up to (generic term)
+(verb)|acknowledge|recognise|thank (generic term)|give thanks (generic term)
+(verb)|be (generic term)
+(verb)|recognise|prize (generic term)|value (generic term)|treasure (generic term)|appreciate (generic term)
+recognized|2
+(adj)|accepted|recognised|acknowledged (similar term)
+(adj)|recognised|established (similar term)|constituted (similar term)
+recoil|6
+(noun)|kick|movement (generic term)|motion (generic term)
+(noun)|repercussion|rebound|backlash|movement (generic term)|motion (generic term)
+(verb)|flinch|squinch|funk|cringe|shrink|wince|quail|move (generic term)
+(verb)|backfire|backlash|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|bounce|resile|take a hop|spring|bound|rebound|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|kick back|kick|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+recoilless|1
+(adj)|movement|motion (related term)
+recollect|1
+(verb)|remember|retrieve|recall|call back|call up|think|think back (related term)|forget (antonym)
+recollection|3
+(noun)|remembrance|anamnesis|memory (generic term)|retention (generic term)|retentiveness (generic term)|retentivity (generic term)
+(noun)|recall|reminiscence|memory (generic term)|remembering (generic term)
+(noun)|memory (generic term)
+recollective|1
+(adj)|retentive|long|tenacious|mindful (related term)|aware (related term)|unretentive (antonym)
+recombinant deoxyribonucleic acid|1
+(noun)|recombinant DNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+recombinant dna|1
+(noun)|recombinant deoxyribonucleic acid|recombinant DNA|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+recombinant dna technology|1
+(noun)|genetic engineering|gene-splicing|recombinant DNA technology|biotechnology (generic term)
+recombinant human insulin|1
+(noun)|Humulin|insulin (generic term)
+recombination|1
+(noun)|combining (generic term)|combine (generic term)
+recombine|3
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|compound (generic term)|combine (generic term)
+recommence|2
+(verb)|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+recommencement|1
+(noun)|resumption|beginning (generic term)|start (generic term)|commencement (generic term)
+recommend|3
+(verb)|urge|advocate|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|commend|praise (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+recommendation|3
+(noun)|advice (generic term)
+(noun)|testimonial|good word|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(noun)|passport|characteristic (generic term)
+recommended|1
+(adj)|suggested|advisable (similar term)
+recommit|3
+(verb)|perpetrate (generic term)|commit (generic term)|pull (generic term)
+(verb)|entrust (generic term)|intrust (generic term)|trust (generic term)|confide (generic term)|commit (generic term)
+(verb)|refer (generic term)
+recompense|4
+(noun)|payment (generic term)
+(noun)|compensation|correction (generic term)|rectification (generic term)
+(verb)|compensate|repair|indemnify|pay (generic term)
+(verb)|compensate|remunerate|pay (generic term)
+reconcilable|1
+(adj)|harmonizable (similar term)|resolvable (similar term)|irreconcilable (antonym)
+reconcile|4
+(verb)|accommodate|conciliate|harmonize (generic term)|harmonise (generic term)
+(verb)|harmonize|harmonise|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|patch up|make up|conciliate|settle|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|resign|submit|accept (generic term)
+reconciled|2
+(adj)|resigned (similar term)|unreconciled (antonym)
+(adj)|consistent (similar term)
+reconciler|1
+(noun)|conciliator|make-peace|pacifier|peacemaker|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+reconciliation|2
+(noun)|rapprochement|cooperation (generic term)
+(noun)|balancing|equalization (generic term)|equalisation (generic term)|leveling (generic term)
+reconciling|1
+(adj)|accommodative|adaptive (similar term)|adaptative (similar term)
+recondite|1
+(adj)|abstruse|deep|esoteric (similar term)
+reconditeness|2
+(noun)|abstruseness|abstrusity|profoundness|profundity|wisdom (generic term)
+(noun)|obscureness|obscurity|abstruseness|incomprehensibility (generic term)|clarity (antonym)
+recondition|1
+(verb)|condition (generic term)
+reconfirm|1
+(verb)|confirm (generic term)|reassert (generic term)
+reconnaissance|1
+(noun)|reconnaissance mission|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+reconnaissance by fire|1
+(noun)|reconnaissance (generic term)|reconnaissance mission (generic term)
+reconnaissance in force|1
+(noun)|reconnaissance (generic term)|reconnaissance mission (generic term)
+reconnaissance mission|1
+(noun)|reconnaissance|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+reconnaissance plane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)|warplane (generic term)|military plane (generic term)
+reconnaissance vehicle|1
+(noun)|scout car|military vehicle (generic term)|self-propelled vehicle (generic term)
+reconnoiter|1
+(verb)|scout|reconnoitre|observe (generic term)
+reconnoitering|1
+(noun)|scouting|exploratory survey|reconnoitring|reconnaissance (generic term)|reconnaissance mission (generic term)
+reconnoitre|1
+(verb)|scout|reconnoiter|observe (generic term)
+reconnoitring|1
+(noun)|scouting|exploratory survey|reconnoitering|reconnaissance (generic term)|reconnaissance mission (generic term)
+reconquer|1
+(verb)|recapture (generic term)|retake (generic term)
+reconsecrate|1
+(verb)|consecrate (generic term)|bless (generic term)|hallow (generic term)|sanctify (generic term)
+reconsider|1
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+reconsideration|2
+(noun)|consideration (generic term)
+(noun)|second thought|afterthought|rethink|reversal (generic term)|change of mind (generic term)|flip-flop (generic term)|turnabout (generic term)|turnaround (generic term)
+reconstitute|1
+(verb)|restructure|structure (generic term)
+reconstruct|5
+(verb)|construct|retrace|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+(verb)|rebuild|construct (generic term)|build (generic term)|make (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|restore|regenerate (generic term)|renew (generic term)
+(verb)|remodel|redo|change (generic term)|alter (generic term)|modify (generic term)
+reconstructed|1
+(adj)|unreconstructed (antonym)
+reconstruction|4
+(noun)|Reconstruction|Reconstruction Period|historic period (generic term)|age (generic term)
+(noun)|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(noun)|interpretation (generic term)
+(noun)|reconstructive memory|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+reconstruction period|1
+(noun)|Reconstruction|Reconstruction Period|historic period (generic term)|age (generic term)
+reconstructive|1
+(adj)|rehabilitative|constructive (similar term)
+reconstructive memory|1
+(noun)|reconstruction|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+reconstructive surgery|1
+(noun)|plastic surgery|anaplasty|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+reconvene|1
+(verb)|convene (generic term)
+reconvert|1
+(verb)|convert (generic term)
+reconvict|1
+(verb)|convict (generic term)
+recopy|1
+(verb)|copy (generic term)
+record|13
+(noun)|evidence (generic term)
+(noun)|number (generic term)
+(noun)|attainment (generic term)
+(noun)|phonograph record|phonograph recording|disk|disc|platter|sound recording (generic term)|audio recording (generic term)
+(noun)|track record|accomplishment (generic term)|achievement (generic term)
+(noun)|criminal record|list (generic term)|listing (generic term)
+(noun)|record book|book|fact (generic term)
+(noun)|document (generic term)
+(verb)|enter|put down|save (generic term)|preserve (generic term)
+(verb)|tape|record (generic term)|enter (generic term)|put down (generic term)|erase (antonym)
+(verb)|read|register|show|indicate (generic term)
+(verb)|register
+(verb)|commemorate|memorialize|memorialise|immortalize|immortalise|remind (generic term)
+record-breaker|1
+(noun)|record-holder|champion (generic term)|champ (generic term)|title-holder (generic term)
+record-breaking|1
+(adj)|best (similar term)
+record-holder|1
+(noun)|record-breaker|champion (generic term)|champ (generic term)|title-holder (generic term)
+record-keeper|1
+(noun)|registrar|recorder|official (generic term)|functionary (generic term)
+record album|2
+(noun)|album|medium (generic term)
+(noun)|phonograph album|album (generic term)
+record book|1
+(noun)|record|book|fact (generic term)
+record changer|1
+(noun)|auto-changer|changer|mechanical device (generic term)
+record company|1
+(noun)|company (generic term)
+record cover|1
+(noun)|record sleeve|sleeve (generic term)
+record hop|1
+(noun)|hop|dance (generic term)
+record jacket|1
+(noun)|jacket (generic term)
+record player|1
+(noun)|phonograph|machine (generic term)
+record sleeve|1
+(noun)|record cover|sleeve (generic term)
+recorded|3
+(adj)|canned (similar term)|transcribed (similar term)|filmed (similar term)|prerecorded (similar term)|taped (similar term)|tape-recorded (similar term)|live (antonym)
+(adj)|registered (similar term)
+(adj)|listed (similar term)
+recorder|4
+(noun)|recording equipment|recording machine|equipment (generic term)
+(noun)|registrar|record-keeper|official (generic term)|functionary (generic term)
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|fipple flute|fipple pipe|vertical flute|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+recorder player|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+recording|3
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|transcription|creating from raw materials (generic term)
+(noun)|memory device (generic term)|storage device (generic term)
+recording equipment|1
+(noun)|recorder|recording machine|equipment (generic term)
+recording label|1
+(noun)|label|trade name (generic term)|brand name (generic term)|brand (generic term)|marque (generic term)
+recording machine|1
+(noun)|recorder|recording equipment|equipment (generic term)
+recording studio|1
+(noun)|studio (generic term)
+recording system|1
+(noun)|audio system (generic term)|sound system (generic term)
+recount|3
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+(verb)|tell|narrate|recite|inform (generic term)
+(verb)|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+recounting|1
+(noun)|relation|telling|narration (generic term)|recital (generic term)|yarn (generic term)
+recoup|3
+(verb)|reimburse|compensate (generic term)|recompense (generic term)|remunerate (generic term)
+(verb)|recover|recuperate|get (generic term)|acquire (generic term)
+(verb)|withhold|deduct|keep (generic term)|hold on (generic term)
+recourse|2
+(noun)|resort|refuge|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|refuge|resort|resource (generic term)
+recover|6
+(verb)|retrieve|find|regain|get (generic term)|acquire (generic term)
+(verb)|recuperate|convalesce|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|deteriorate (antonym)
+(verb)|go back|recuperate|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+(verb)|recoup|recuperate|get (generic term)|acquire (generic term)
+(verb)|reclaim|recycle (generic term)|reprocess (generic term)|reuse (generic term)
+(verb)|cover (generic term)
+recoverable|1
+(adj)|redeemable (similar term)|retrievable (similar term)|unrecoverable (antonym)
+recovered|2
+(adj)|cured|healed|well (similar term)
+(adj)|found (similar term)
+recoverer|1
+(noun)|rescuer|saver|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+recovering|1
+(adj)|convalescent|ill (similar term)|sick (similar term)
+recovery|3
+(noun)|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|convalescence|recuperation|healing (generic term)
+(noun)|retrieval|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+recovery room|1
+(noun)|hospital room (generic term)
+recreant|4
+(adj)|renegade|disloyal (similar term)
+(adj)|craven|cowardly (similar term)|fearful (similar term)
+(noun)|poltroon|craven|coward (generic term)
+(noun)|deserter|apostate|renegade|turncoat|ratter|quitter (generic term)
+recreate|4
+(verb)|animate|reanimate|revive|renovate|repair|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+(verb)|play
+(verb)|cheer|hearten|embolden|encourage (generic term)|dishearten (antonym)
+(verb)|make (generic term)|create (generic term)
+recreation|2
+(noun)|diversion|activity (generic term)
+(noun)|refreshment|rejuvenation (generic term)
+recreation facility|1
+(noun)|recreational facility|facility (generic term)|installation (generic term)
+recreation room|1
+(noun)|rec room|room (generic term)
+recreational|2
+(adj)|activity (related term)
+(adj)|amateur|unpaid|nonprofessional (similar term)
+recreational drug|1
+(noun)|narcotic (generic term)
+recreational facility|1
+(noun)|recreation facility|facility (generic term)|installation (generic term)
+recreational vehicle|1
+(noun)|RV|R.V.|self-propelled vehicle (generic term)
+recriminate|1
+(verb)|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+recrimination|1
+(noun)|accusation (generic term)|accusal (generic term)
+recriminative|1
+(adj)|recriminatory|inculpatory (similar term)|inculpative (similar term)
+recriminatory|1
+(adj)|recriminative|inculpatory (similar term)|inculpative (similar term)
+recrudesce|2
+(verb)|break|develop|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)|break out (related term)|break through (related term)
+(verb)|erupt|break out|afflict (generic term)|trouble (generic term)|ail (generic term)|pain (generic term)
+recrudescence|1
+(noun)|outbreak (generic term)|eruption (generic term)|irruption (generic term)
+recrudescent|1
+(adj)|revived (similar term)
+recruit|5
+(noun)|military recruit|enlisted man (generic term)
+(noun)|enlistee|newcomer (generic term)|fledgling (generic term)|fledgeling (generic term)|starter (generic term)|neophyte (generic term)|freshman (generic term)|newbie (generic term)|entrant (generic term)
+(verb)|enroll|inscribe|enter|enrol|register (generic term)
+(verb)|engage (generic term)|enlist (generic term)
+(verb)|levy|raise|enlist (generic term)|draft (generic term)|muster in (generic term)
+recruiter|2
+(noun)|supplier (generic term)|provider (generic term)
+(noun)|official (generic term)|functionary (generic term)
+recruiting-sergeant|1
+(noun)|sergeant (generic term)|recruiter (generic term)
+recruitment|1
+(noun)|enlisting|accomplishment (generic term)|achievement (generic term)
+rectal|1
+(adj)|body part (related term)
+rectal artery|1
+(noun)|arteria rectalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+rectal reflex|1
+(noun)|defecation reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+rectal vein|1
+(noun)|hemorrhoidal vein|vena rectalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+rectangle|1
+(noun)|parallelogram (generic term)
+rectangular|2
+(adj)|angular (similar term)|angulate (similar term)
+(adj)|orthogonal|perpendicular (similar term)
+rectangularity|1
+(noun)|oblongness|angularity (generic term)
+rectifiable|1
+(adj)|reparable|maintainable (similar term)|irreparable (antonym)
+rectification|4
+(noun)|refining (generic term)|refinement (generic term)|purification (generic term)
+(noun)|conversion (generic term)|transition (generic term)|changeover (generic term)
+(noun)|correction|improvement (generic term)
+(noun)|determination (generic term)|finding (generic term)
+rectified|1
+(adj)|corrected (similar term)
+rectifier|2
+(noun)|electrical device (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+rectify|6
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|refine|purify (generic term)|sublimate (generic term)|make pure (generic term)|distill (generic term)
+(verb)|reform|reclaim|regenerate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|remediate|remedy|repair|amend|correct (generic term)|rectify (generic term)|right (generic term)
+(verb)|correct|right|change by reversal (generic term)|turn (generic term)|reverse (generic term)|falsify (antonym)
+(verb)|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+rectifying tube|1
+(noun)|diode|rectifying valve|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+rectifying valve|1
+(noun)|diode|rectifying tube|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+rectilineal|1
+(adj)|rectilinear|linear (similar term)|one-dimensional (similar term)
+rectilinear|1
+(adj)|rectilineal|linear (similar term)|one-dimensional (similar term)
+rectilinear regression|1
+(noun)|linear regression|regression (generic term)|simple regression (generic term)|regression toward the mean (generic term)|statistical regression (generic term)
+rectitude|1
+(noun)|uprightness|righteousness (generic term)
+recto|1
+(noun)|page (generic term)|verso (antonym)
+rectocele|1
+(noun)|proctocele|colpocele (generic term)|vaginocele (generic term)
+rectoplasty|1
+(noun)|proctoplasty|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+rector|1
+(noun)|curate|minister of religion|minister|parson|pastor|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+rectorate|1
+(noun)|rectorship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+rectorship|1
+(noun)|rectorate|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+rectory|1
+(noun)|parsonage|vicarage|residence (generic term)
+rectosigmoid|1
+(adj)|colon (related term)|body part (related term)
+rectum|1
+(noun)|body part (generic term)
+rectus|1
+(noun)|muscle (generic term)|musculus (generic term)
+rectus inferior|1
+(noun)|inferior rectus muscle|inferior rectus|ocular muscle (generic term)|eye muscle (generic term)
+rectus lateralis|1
+(noun)|abducens muscle|lateral rectus muscle|lateral rectus|ocular muscle (generic term)|eye muscle (generic term)
+rectus medialis|1
+(noun)|medial rectus muscle|medial rectus|ocular muscle (generic term)|eye muscle (generic term)
+rectus superior|1
+(noun)|superior rectus muscle|superior rectus|ocular muscle (generic term)|eye muscle (generic term)
+recumb|1
+(verb)|repose|recline|lie (generic term)
+recumbent|1
+(adj)|accumbent|decumbent|reclining|unerect (similar term)
+recuperate|4
+(verb)|recover|recoup|get (generic term)|acquire (generic term)
+(verb)|recover|go back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+(verb)|bring around (generic term)|cure (generic term)|heal (generic term)
+(verb)|recover|convalesce|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)|deteriorate (antonym)
+recuperation|1
+(noun)|convalescence|recovery|healing (generic term)
+recuperative|1
+(adj)|restorative|healthful (similar term)
+recur|3
+(verb)|repeat|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|go back|hark back (generic term)|return (generic term)|come back (generic term)|recall (generic term)
+(verb)|fall back|resort|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+recurrence|1
+(noun)|return|repeat (generic term)|repetition (generic term)
+recurrent|1
+(adj)|perennial|repeated|continual (similar term)
+recurrent event|1
+(noun)|periodic event|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+recurrent fever|1
+(noun)|relapsing fever|infectious disease (generic term)
+recurring|1
+(adj)|revenant|continual (similar term)
+recurring decimal|1
+(noun)|circulating decimal|repeating decimal|decimal fraction (generic term)|decimal (generic term)
+recursion|1
+(noun)|rule (generic term)|formula (generic term)
+recursive|1
+(adj)|algorithmic (similar term)
+recursive definition|1
+(noun)|definition (generic term)
+recursive routine|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+recurvate|1
+(adj)|recurved|curved (similar term)|curving (similar term)
+recurve|1
+(verb)|crook (generic term)|curve (generic term)
+recurved|1
+(adj)|recurvate|curved (similar term)|curving (similar term)
+recurvirostra|1
+(noun)|Recurvirostra|genus Recurvirostra|bird genus (generic term)
+recurvirostridae|1
+(noun)|Recurvirostridae|family Recurvirostridae|bird family (generic term)
+recusal|1
+(noun)|recusation|disqualification (generic term)
+recusancy|1
+(noun)|direct action (generic term)
+recusant|3
+(adj)|dissentient|unorthodox (similar term)
+(adj)|disobedient (similar term)
+(noun)|nonconformist|dissenter (generic term)|dissident (generic term)|protester (generic term)|objector (generic term)|contestant (generic term)|conformist (antonym)
+recusation|2
+(noun)|recusal|disqualification (generic term)
+(noun)|objection (generic term)
+recuse|2
+(verb)|disqualify (generic term)
+(verb)|reject (generic term)
+recyclable|1
+(adj)|reclaimable|reusable|useful (similar term)|utile (similar term)
+recycle|2
+(verb)|cycle (generic term)
+(verb)|reprocess|reuse|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+recycling|1
+(noun)|use (generic term)|usage (generic term)|utilization (generic term)|utilisation (generic term)|employment (generic term)|exercise (generic term)
+recycling bin|1
+(noun)|bin (generic term)
+recycling plant|1
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+red|8
+(adj)|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+(adj)|crimson|violent|bloody (similar term)
+(adj)|crimson|reddened|red-faced|flushed|colored (similar term)|coloured (similar term)|colorful (similar term)
+(adj)|bloody (similar term)
+(noun)|redness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(noun)|Red|Red River|river (generic term)
+(noun)|Bolshevik|Marxist|bolshie|bolshy|radical (generic term)
+(noun)|loss|red ink|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)|gain (antonym)
+red-backed lemming|1
+(noun)|grey lemming|gray lemming|lemming (generic term)
+red-backed mouse|1
+(noun)|redback vole|vole (generic term)|field mouse (generic term)
+red-backed sandpiper|1
+(noun)|dunlin|Erolia alpina|sandpiper (generic term)
+red-bellied snake|1
+(noun)|Storeria occipitamaculata|colubrid snake (generic term)|colubrid (generic term)
+red-bellied terrapin|1
+(noun)|red-bellied turtle|redbelly|Pseudemys rubriventris|turtle (generic term)
+red-bellied turtle|1
+(noun)|red-bellied terrapin|redbelly|Pseudemys rubriventris|turtle (generic term)
+red-berried elder|2
+(noun)|European red elder|Sambucus racemosa|elder (generic term)|elderberry bush (generic term)
+(noun)|American red elder|stinking elder|Sambucus pubens|elder (generic term)|elderberry bush (generic term)
+red-berry|2
+(noun)|redberry|Rhamnus croceus|buckthorn (generic term)
+(noun)|red baneberry|redberry|snakeberry|Actaea rubra|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+red-blind|1
+(adj)|protanopic|blind (similar term)|unsighted (similar term)
+red-blindness|1
+(noun)|protanopia|red-green dichromacy (generic term)|red-green color blindness (generic term)|red-green colour blindness (generic term)
+red-blooded|1
+(adj)|hearty|full-blooded|lusty|healthy (similar term)
+red-breasted merganser|1
+(noun)|Mergus serrator|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+red-breasted nuthatch|1
+(noun)|Sitta canadensis|nuthatch (generic term)|nutcracker (generic term)
+red-breasted sapsucker|1
+(noun)|Sphyrapicus varius ruber|sapsucker (generic term)
+red-breasted snipe|1
+(noun)|Limnodromus scolopaceus|dowitcher (generic term)
+red-brick|1
+(adj)|redbrick|modern (similar term)
+red-brown|1
+(adj)|reddish-brown|mahogany-red|chromatic (similar term)
+red-carpet|1
+(adj)|red carpet|uncommon (similar term)
+red-coated|1
+(adj)|lobster-backed|clothed (similar term)|clad (similar term)
+red-eye|1
+(verb)|fly (generic term)
+red-eyed vireo|1
+(noun)|Vireo olivaceous|vireo (generic term)
+red-faced|2
+(adj)|crimson|red|reddened|flushed|colored (similar term)|coloured (similar term)|colorful (similar term)
+(adj)|blushful|blushing|discomposed (similar term)
+red-flowered|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+red-flowered silky oak|1
+(noun)|Grevillea banksii|silk oak (generic term)
+red-fruited|1
+(adj)|fruitful (similar term)
+red-gray|1
+(adj)|red-grey|reddish-grey|reddish-gray|achromatic (similar term)
+red-green color blindness|1
+(noun)|red-green dichromacy|red-green colour blindness|dichromacy (generic term)|dichromatism (generic term)|dichromatopsia (generic term)|dichromia (generic term)|dichromasy (generic term)
+red-green colour blindness|1
+(noun)|red-green dichromacy|red-green color blindness|dichromacy (generic term)|dichromatism (generic term)|dichromatopsia (generic term)|dichromia (generic term)|dichromasy (generic term)
+red-green dichromacy|1
+(noun)|red-green color blindness|red-green colour blindness|dichromacy (generic term)|dichromatism (generic term)|dichromatopsia (generic term)|dichromia (generic term)|dichromasy (generic term)
+red-grey|1
+(adj)|red-gray|reddish-grey|reddish-gray|achromatic (similar term)
+red-handed|1
+(adj)|guilty (similar term)
+red-header|1
+(noun)|redhead|redheader|carrottop|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+red-hot|5
+(adj)|juicy|luscious|toothsome|voluptuous|sexy (similar term)
+(adj)|hot|new (similar term)
+(adj)|sizzling|hot (similar term)
+(adj)|hot (similar term)
+(adj)|blistering|hot|fast (similar term)
+red-hot poker|1
+(noun)|Kniphofia praecox|poker plant (generic term)|Kniphofia uvaria (generic term)
+red-ink|1
+(verb)|mark (generic term)
+red-lavender|1
+(adj)|reddish-lavender|chromatic (similar term)
+red-lead putty|1
+(noun)|cement (generic term)
+red-legged partridge|1
+(noun)|Alectoris ruffa|partridge (generic term)
+red-letter|1
+(adj)|unforgettable (similar term)
+red-letter day|1
+(noun)|day (generic term)
+red-light district|1
+(noun)|city district (generic term)
+red-necked grebe|1
+(noun)|Podiceps grisegena|grebe (generic term)
+red-orange|1
+(adj)|reddish-orange|flame-orange|chromatic (similar term)
+red-purple|1
+(adj)|reddisn-purple|chromatic (similar term)
+red-rimmed|1
+(adj)|rimmed (similar term)
+red-shafted flicker|1
+(noun)|Colaptes caper collaris|flicker (generic term)
+red-shouldered hawk|1
+(noun)|Buteo lineatus|hawk (generic term)
+red-skinned onion|1
+(noun)|Allium haematochiton|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+red-spotted purple|1
+(noun)|Limenitis astyanax|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+red-streaked|1
+(adj)|red-striped|reddish-striped|patterned (similar term)
+red-striped|1
+(adj)|reddish-striped|red-streaked|patterned (similar term)
+red-tailed hawk|1
+(noun)|redtail|Buteo jamaicensis|hawk (generic term)
+red-veined pie plant|1
+(noun)|Himalayan rhubarb|Indian rhubarb|Rheum australe|Rheum emodi|rhubarb (generic term)|rhubarb plant (generic term)
+red-violet|1
+(adj)|reddish-violet|chromatic (similar term)
+red-winged blackbird|1
+(noun)|redwing|Agelaius phoeniceus|New World blackbird (generic term)|blackbird (generic term)
+red admiral|1
+(noun)|Vanessa atalanta|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+red alder|1
+(noun)|Oregon alder|Alnus rubra|alder (generic term)|alder tree (generic term)
+red alert|1
+(noun)|alert (generic term)|qui vive (generic term)
+red algae|1
+(noun)|alga (generic term)|algae (generic term)
+red amaranth|1
+(noun)|prince's-feather|gentleman's-cane|prince's-plume|purple amaranth|Amaranthus cruentus|Amaranthus hybridus hypochondriacus|Amaranthus hybridus erythrostachys|amaranth (generic term)
+red angel's trumpet|1
+(noun)|Brugmansia sanguinea|Datura sanguinea|shrub (generic term)|bush (generic term)
+red army faction|1
+(noun)|Red Army Faction|RAF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+red ash|1
+(noun)|downy ash|Fraxinus pennsylvanica|ash (generic term)|ash tree (generic term)
+red baneberry|1
+(noun)|redberry|red-berry|snakeberry|Actaea rubra|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+red bat|1
+(noun)|Lasiurus borealis|vespertilian bat (generic term)|vespertilionid (generic term)
+red bay|1
+(noun)|laurel-tree|Persea borbonia|laurel (generic term)
+red bearberry|1
+(noun)|common bearberry|wild cranberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+red beech|2
+(noun)|American beech|white beech|Fagus grandifolia|Fagus americana|beech (generic term)|beech tree (generic term)
+(noun)|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+red birch|1
+(noun)|black birch|river birch|Betula nigra|birch (generic term)|birch tree (generic term)
+red bird's eye|1
+(noun)|red campion|Silene dioica|Lychnis dioica|silene (generic term)|campion (generic term)|catchfly (generic term)
+red blood cell|1
+(noun)|RBC|erythrocyte|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)
+red bone marrow|1
+(noun)|red marrow|marrow (generic term)|bone marrow (generic term)
+red bordeaux|1
+(noun)|claret|red Bordeaux|Bordeaux (generic term)|Bordeaux wine (generic term)|red wine (generic term)
+red brass|1
+(noun)|guinea gold|brass (generic term)
+red brigades|1
+(noun)|Red Brigades|Brigate Rosse|BR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+red bryony|1
+(noun)|wild hop|Bryonia dioica|bryony (generic term)|briony (generic term)
+red buckeye|1
+(noun)|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+red cabbage|2
+(noun)|head cabbage (generic term)|head cabbage plant (generic term)|Brassica oleracea capitata (generic term)
+(noun)|head cabbage (generic term)
+red campion|1
+(noun)|red bird's eye|Silene dioica|Lychnis dioica|silene (generic term)|campion (generic term)|catchfly (generic term)
+red carpet|2
+(adj)|red-carpet|uncommon (similar term)
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+red cedar|4
+(noun)|western red cedar|canoe cedar|Thuja plicata|arborvitae (generic term)
+(noun)|eastern red cedar|red juniper|Juniperus virginiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+(noun)|incense cedar|Calocedrus decurrens|Libocedrus decurrens|cedar (generic term)|cedar tree (generic term)
+(noun)|cedar (generic term)|cedarwood (generic term)
+red cent|1
+(noun)|damn|darn|hoot|shit|shucks|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+red china|1
+(noun)|China|People's Republic of China|mainland China|Communist China|Red China|PRC|Asian country (generic term)|Asian nation (generic term)
+red clay|1
+(noun)|clay (generic term)|mineral (generic term)
+red clintonia|1
+(noun)|red Clintonia|Andrew's clintonia|Clintonia andrewsiana|clintonia (generic term)|Clinton's lily (generic term)
+red cloud|1
+(noun)|Red Cloud|Indian chief (generic term)|Indian chieftain (generic term)|Oglala (generic term)|Ogalala (generic term)
+red clover|1
+(noun)|purple clover|Trifolium pratense|clover (generic term)|trefoil (generic term)
+red cole|1
+(noun)|horseradish|horse radish|Armoracia rusticana|herb (generic term)|herbaceous plant (generic term)
+red coral|2
+(noun)|coral|precious coral|opaque gem (generic term)
+(noun)|gorgonian (generic term)|gorgonian coral (generic term)
+red cross|1
+(noun)|Red Cross|nongovernmental organization (generic term)|NGO (generic term)
+red currant|2
+(noun)|garden current|Ribes rubrum|currant (generic term)|currant bush (generic term)
+(noun)|currant (generic term)
+red cypress pine|1
+(noun)|black cypress pine|Callitris endlicheri|Callitris calcarata|cypress pine (generic term)
+red dagga|1
+(noun)|dagga|Cape dagga|wilde dagga|Leonotis leonurus|herb (generic term)|herbaceous plant (generic term)
+red deer|1
+(noun)|Cervus elaphus|deer (generic term)|cervid (generic term)
+red delicious|1
+(noun)|Red Delicious|Delicious (generic term)
+red devil|1
+(noun)|secobarbital sodium|secobarbital|Seconal|barbiturate (generic term)
+red dogwood|2
+(noun)|common European dogwood|blood-twig|pedwood|Cornus sanguinea|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+(noun)|red osier|red osier dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+red drum|1
+(noun)|channel bass|redfish|Sciaenops ocellatus|drum (generic term)|drumfish (generic term)
+red dwarf|1
+(noun)|red dwarf star|star (generic term)
+red dwarf star|1
+(noun)|red dwarf|star (generic term)
+red eft|1
+(noun)|Notophthalmus viridescens|newt (generic term)|triton (generic term)
+red elm|2
+(noun)|September elm|Ulmus serotina|elm (generic term)|elm tree (generic term)
+(noun)|slippery elm|Ulmus rubra|elm (generic term)|elm tree (generic term)
+red false mallow|1
+(noun)|prairie mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow (generic term)|false mallow (generic term)
+red fire|1
+(noun)|fuel (generic term)
+red flag|3
+(noun)|flag (generic term)|signal flag (generic term)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|emblem (generic term)|allegory (generic term)
+(noun)|annoyance (generic term)|annoying (generic term)|irritation (generic term)|vexation (generic term)
+red fox|3
+(noun)|Celosia argentea|herb (generic term)|herbaceous plant (generic term)
+(noun)|Vulpes fulva|fox (generic term)
+(noun)|Vulpes vulpes|fox (generic term)
+red giant|1
+(noun)|red giant star|star (generic term)
+red giant star|1
+(noun)|red giant|star (generic term)
+red ginger|1
+(noun)|Alpinia purpurata|ginger (generic term)
+red goatfish|1
+(noun)|Mullus auratus|goatfish (generic term)|red mullet (generic term)|surmullet (generic term)|Mullus surmuletus (generic term)
+red goosefoot|2
+(noun)|French spinach|Chenopodium rubrum|goosefoot (generic term)
+(noun)|sowbane|Chenopodium hybridum|goosefoot (generic term)
+red gram|1
+(noun)|pigeon pea|pigeon-pea plant|cajan pea|catjang pea|dhal|dahl|Cajanus cajan|shrub (generic term)|bush (generic term)
+red grouse|1
+(noun)|moorfowl|moorbird|moor-bird|moorgame|Lagopus scoticus|ptarmigan (generic term)
+red guard|1
+(noun)|Red Guard|political movement (generic term)
+red gum|5
+(noun)|eucalyptus gum|eucalyptus kino|gum (generic term)
+(noun)|marri|Eucalyptus calophylla|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|peppermint|peppermint gum|Eucalyptus amygdalina|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|sweet gum|satin walnut|hazelwood|gumwood (generic term)|gum (generic term)
+(noun)|sweet gum|sweet gum tree|bilsted|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+red hand defenders|1
+(noun)|Red Hand Defenders|RHD|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+red haw|2
+(noun)|Crataegus pedicellata|Crataegus coccinea|hawthorn (generic term)|haw (generic term)
+(noun)|downy haw|Crataegus mollis|Crataegus coccinea mollis|hawthorn (generic term)|haw (generic term)
+red heat|1
+(noun)|fieriness|hotness (generic term)|heat (generic term)|high temperature (generic term)
+red helleborine|1
+(noun)|Cephalanthera rubra|helleborine (generic term)
+red herring|3
+(noun)|diversion (generic term)|deviation (generic term)|digression (generic term)|deflection (generic term)|deflexion (generic term)|divagation (generic term)
+(noun)|smoked herring|herring (generic term)
+(noun)|preliminary prospectus|course catalog (generic term)|course catalogue (generic term)|prospectus (generic term)
+red hot|1
+(noun)|hotdog|hot dog|sandwich (generic term)
+red indian|1
+(noun)|Indian|American Indian|Red Indian|Amerindian (generic term)|Native American (generic term)
+red ink|1
+(noun)|loss|red|sum (generic term)|sum of money (generic term)|amount (generic term)|amount of money (generic term)|gain (antonym)
+red jungle fowl|1
+(noun)|Gallus gallus|jungle fowl (generic term)|gallina (generic term)
+red juniper|1
+(noun)|eastern red cedar|red cedar|Juniperus virginiana|pencil cedar (generic term)|pencil cedar tree (generic term)
+red kauri|1
+(noun)|Agathis lanceolata|kauri pine (generic term)|dammar pine (generic term)
+red lauan|2
+(noun)|wood (generic term)
+(noun)|red lauan tree|Shorea teysmanniana|dipterocarp (generic term)
+red lauan tree|1
+(noun)|red lauan|Shorea teysmanniana|dipterocarp (generic term)
+red laver|1
+(noun)|laver|red algae (generic term)
+red lead|1
+(noun)|minium|oxide (generic term)
+red light|2
+(noun)|warning light|visual signal (generic term)
+(noun)|traffic light (generic term)|traffic signal (generic term)|stoplight (generic term)
+red line|1
+(noun)|line (generic term)
+red maids|1
+(noun)|redmaids|Calandrinia ciliata|wildflower (generic term)|wild flower (generic term)
+red man|1
+(noun)|Redskin|Injun|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+red maple|1
+(noun)|scarlet maple|swamp maple|Acer rubrum|maple (generic term)
+red marrow|1
+(noun)|red bone marrow|marrow (generic term)|bone marrow (generic term)
+red meat|1
+(noun)|meat (generic term)
+red morning-glory|1
+(noun)|star ipomoea|Ipomoea coccinea|morning glory (generic term)
+red mulberry|1
+(noun)|Morus rubra|mulberry (generic term)|mulberry tree (generic term)
+red mullet|1
+(noun)|goatfish|surmullet|Mullus surmuletus|mullet (generic term)
+red notice|1
+(noun)|International Wanted Notice|Red Notice|wanted notice (generic term)|wanted poster (generic term)
+red oak|1
+(noun)|oak (generic term)|oak tree (generic term)
+red onion|1
+(noun)|purple onion|Spanish onion (generic term)
+red osier|2
+(noun)|red osier dogwood|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+(noun)|purple willow|red willow|basket willow|purple osier|Salix purpurea|osier (generic term)
+red osier dogwood|1
+(noun)|red osier|red dogwood|American dogwood|redbrush|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+red panda|1
+(noun)|lesser panda|panda|bear cat|cat bear|Ailurus fulgens|procyonid (generic term)
+red pepper|2
+(noun)|cayenne|cayenne pepper|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|tabasco|hot pepper (generic term)
+red periwinkle|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+red phalarope|1
+(noun)|Phalaropus fulicarius|phalarope (generic term)
+red pimpernel|1
+(noun)|scarlet pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel (generic term)
+red pine|2
+(noun)|rimu|imou pine|Dacrydium cupressinum|conifer (generic term)|coniferous tree (generic term)
+(noun)|Canadian red pine|Pinus resinosa|pine (generic term)|pine tree (generic term)|true pine (generic term)
+red planet|1
+(noun)|Mars|Red Planet|terrestrial planet (generic term)|superior planet (generic term)
+red poll|1
+(noun)|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+red porgy|1
+(noun)|Pagrus pagrus|porgy (generic term)
+red raspberry|1
+(noun)|raspberry (generic term)|raspberry bush (generic term)
+red rat snake|1
+(noun)|corn snake|Elaphe guttata|rat snake (generic term)
+red region|1
+(noun)|hellfire|Hell (generic term)|perdition (generic term)|Inferno (generic term)|infernal region (generic term)|nether region (generic term)|pit (generic term)
+red river|1
+(noun)|Red|Red River|river (generic term)
+red rockfish|2
+(noun)|saltwater fish (generic term)
+(noun)|Sebastodes ruberrimus|rockfish (generic term)
+red salmon|2
+(noun)|sockeye|sockeye salmon|salmon (generic term)
+(noun)|sockeye|sockeye salmon|blueback salmon|Oncorhynchus nerka|salmon (generic term)
+red sandalwood|3
+(noun)|ruby wood|wood (generic term)
+(noun)|red sanders|red sanderswood|red saunders|Pterocarpus santalinus|tree (generic term)
+(noun)|coralwood|coral-wood|Barbados pride|peacock flower fence|Adenanthera pavonina|tree (generic term)
+red sanders|1
+(noun)|red sandalwood|red sanderswood|red saunders|Pterocarpus santalinus|tree (generic term)
+red sanderswood|1
+(noun)|red sandalwood|red sanders|red saunders|Pterocarpus santalinus|tree (generic term)
+red saunders|1
+(noun)|red sandalwood|red sanders|red sanderswood|Pterocarpus santalinus|tree (generic term)
+red scare|1
+(noun)|panic (generic term)|scare (generic term)
+red sea|1
+(noun)|Red Sea|sea (generic term)
+red setter|1
+(noun)|Irish setter|setter (generic term)
+red shift|1
+(noun)|redshift|propagation (generic term)
+red shrubby penstemon|1
+(noun)|redwood penstemon|shrub (generic term)|bush (generic term)
+red silk-cotton tree|1
+(noun)|simal|Bombax ceiba|Bombax malabarica|tree (generic term)
+red silk cotton|1
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+red silver fir|1
+(noun)|amabilis fir|white fir|Pacific silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+red siskin|1
+(noun)|Carduelis cucullata|finch (generic term)
+red snapper|2
+(noun)|snapper (generic term)
+(noun)|Lutjanus blackfordi|snapper (generic term)
+red sorrel|1
+(noun)|roselle|rozelle|sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+red spider|1
+(noun)|red spider mite|Panonychus ulmi|spider mite (generic term)|tetranychid (generic term)
+red spider mite|1
+(noun)|red spider|Panonychus ulmi|spider mite (generic term)|tetranychid (generic term)
+red sprites|1
+(noun)|sprites|atmospheric electricity (generic term)
+red spruce|1
+(noun)|eastern spruce|yellow spruce|Picea rubens|spruce (generic term)
+red squirrel|2
+(noun)|American red squirrel|spruce squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel (generic term)
+(noun)|cat squirrel|Sciurus vulgaris|tree squirrel (generic term)
+red sun|1
+(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+red tai|1
+(noun)|Red Tai|Tai (generic term)
+red tape|1
+(noun)|bureaucratic procedure|procedure (generic term)
+red tide|1
+(noun)|seawater (generic term)|saltwater (generic term)|brine (generic term)
+red trillium|2
+(noun)|toadshade|sessile trillium|Trillium sessile|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+(noun)|purple trillium|birthroot|Trillium erectum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+red underwing|1
+(noun)|Catocala nupta|underwing (generic term)
+red valerian|1
+(noun)|French honeysuckle|Centranthus ruber|flower (generic term)
+red water|1
+(noun)|animal disease (generic term)
+red willow|1
+(noun)|purple willow|red osier|basket willow|purple osier|Salix purpurea|osier (generic term)
+red wine|1
+(noun)|wine (generic term)|vino (generic term)
+red wolf|1
+(noun)|maned wolf|Canis rufus|Canis niger|wolf (generic term)
+red worm|1
+(noun)|earthworm|angleworm|fishworm|fishing worm|wiggler|nightwalker|nightcrawler|crawler|dew worm|oligochaete (generic term)|oligochaete worm (generic term)
+redact|3
+(noun)|redactor|reviser|rewriter|rewrite man|editor (generic term)|editor in chief (generic term)
+(verb)|frame|cast|put|couch|give voice (generic term)|formulate (generic term)|word (generic term)|phrase (generic term)|articulate (generic term)
+(verb)|edit|change (generic term)|alter (generic term)|modify (generic term)
+redaction|2
+(noun)|editing|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+redactor|1
+(noun)|redact|reviser|rewriter|rewrite man|editor (generic term)|editor in chief (generic term)
+redback vole|1
+(noun)|red-backed mouse|vole (generic term)|field mouse (generic term)
+redbelly|1
+(noun)|red-bellied terrapin|red-bellied turtle|Pseudemys rubriventris|turtle (generic term)
+redberry|2
+(noun)|red-berry|Rhamnus croceus|buckthorn (generic term)
+(noun)|red baneberry|red-berry|snakeberry|Actaea rubra|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+redbird|2
+(noun)|scarlet tanager|Piranga olivacea|firebird|tanager (generic term)
+(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|finch (generic term)
+redbird cactus|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird flower|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+redbird flower|1
+(noun)|Jewbush|Jew-bush|Jew bush|redbird cactus|Pedilanthus tithymaloides|slipper spurge (generic term)|slipper plant (generic term)
+redbone|1
+(noun)|hound (generic term)|hound dog (generic term)
+redbreast|1
+(noun)|robin|robin redbreast|Old World robin|Erithacus rubecola|thrush (generic term)
+redbrick|1
+(adj)|red-brick|modern (similar term)
+redbrick university|1
+(noun)|university (generic term)
+redbrush|1
+(noun)|red osier|red osier dogwood|red dogwood|American dogwood|Cornus stolonifera|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+redbud|1
+(noun)|Cercis canadenis|angiospermous tree (generic term)|flowering tree (generic term)
+redbug|1
+(noun)|harvest mite|chigger|jigger|trombiculiid (generic term)
+redcap|2
+(noun)|military policeman (generic term)|MP (generic term)
+(noun)|porter (generic term)
+redcoat|1
+(noun)|lobsterback|soldier (generic term)
+redden|3
+(verb)|blush|crimson|flush|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+reddened|2
+(adj)|crimson|red|red-faced|flushed|colored (similar term)|coloured (similar term)|colorful (similar term)
+(adj)|ablaze|inflamed|light (similar term)
+redding|1
+(noun)|Redding|town (generic term)
+reddish|1
+(adj)|red|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+reddish-brown|1
+(adj)|red-brown|mahogany-red|chromatic (similar term)
+reddish-gray|1
+(adj)|red-grey|red-gray|reddish-grey|achromatic (similar term)
+reddish-grey|1
+(adj)|red-grey|red-gray|reddish-gray|achromatic (similar term)
+reddish-lavender|1
+(adj)|red-lavender|chromatic (similar term)
+reddish-orange|1
+(adj)|red-orange|flame-orange|chromatic (similar term)
+reddish-pink|1
+(adj)|chromatic (similar term)
+reddish-striped|1
+(adj)|red-striped|red-streaked|patterned (similar term)
+reddish-violet|1
+(adj)|red-violet|chromatic (similar term)
+reddish blue|1
+(noun)|violet|purple (generic term)|purpleness (generic term)
+reddish brown|1
+(noun)|sepia|burnt sienna|Venetian red|brown (generic term)|brownness (generic term)
+reddish orange|1
+(noun)|orange (generic term)|orangeness (generic term)
+reddish purple|1
+(noun)|royal purple|purple (generic term)|purpleness (generic term)
+reddisn-purple|1
+(adj)|red-purple|chromatic (similar term)
+reddle|1
+(noun)|ruddle|raddle|iron ore (generic term)
+rede|2
+(verb)|interpret|explain (generic term)|explicate (generic term)
+(verb)|advise|counsel|hash out (generic term)|discuss (generic term)|talk over (generic term)
+redecorate|1
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+rededicate|1
+(verb)|give (generic term)|dedicate (generic term)|consecrate (generic term)|commit (generic term)|devote (generic term)
+rededication|1
+(noun)|dedication (generic term)
+redeem|6
+(verb)|deliver|save
+(verb)|restore (generic term)|reinstate (generic term)|reestablish (generic term)
+(verb)|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|ransom|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|pay off|pay (generic term)
+(verb)|cash (generic term)|cash in (generic term)
+redeemable|3
+(adj)|recoverable (similar term)
+(adj)|cashable|convertible (similar term)|exchangeable (similar term)
+(adj)|reformable|corrigible (similar term)
+redeemed|1
+(adj)|ransomed|saved (similar term)
+redeemer|2
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+(noun)|money handler (generic term)|money dealer (generic term)
+redeeming|2
+(adj)|redemptive|saving|good (similar term)
+(adj)|good (similar term)
+redefine|2
+(verb)|specify (generic term)|define (generic term)|delineate (generic term)|delimit (generic term)|delimitate (generic term)
+(verb)|define (generic term)
+redefinition|1
+(noun)|definition (generic term)
+redemption|3
+(noun)|salvation|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+(noun)|repayment (generic term)|quittance (generic term)
+(noun)|repurchase|buyback|purchase (generic term)
+redemptional|1
+(adj)|redemptive|redemptory|rescue|deliverance|delivery|saving (related term)
+redemptive|2
+(adj)|redemptional|redemptory|rescue|deliverance|delivery|saving (related term)
+(adj)|redeeming|saving|good (similar term)
+redemptory|1
+(adj)|redemptive|redemptional|rescue|deliverance|delivery|saving (related term)
+redeploy|1
+(verb)|deploy (generic term)
+redeployment|1
+(noun)|redisposition|deployment (generic term)
+redeposit|2
+(verb)|deposit (generic term)|bank (generic term)
+(verb)|lodge (generic term)|wedge (generic term)|stick (generic term)|deposit (generic term)
+redeposition|1
+(noun)|deposition (generic term)|deposit (generic term)
+redesign|1
+(verb)|design (generic term)|plan (generic term)
+redetermination|1
+(noun)|determination (generic term)|finding (generic term)
+redetermine|1
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+redevelop|3
+(verb)|develop (generic term)
+(verb)|reformulate|explicate (generic term)|formulate (generic term)|develop (generic term)
+(verb)|build up (generic term)|develop (generic term)
+redevelopment|1
+(noun)|renovation|overhaul|improvement (generic term)
+redevelopment authority|1
+(noun)|administrative unit (generic term)|administrative body (generic term)
+redeye|1
+(noun)|redeye flight|flight (generic term)
+redeye flight|1
+(noun)|redeye|flight (generic term)
+redfin pickerel|1
+(noun)|barred pickerel|Esox americanus|pickerel (generic term)
+redfish|3
+(noun)|rosefish|ocean perch|rockfish (generic term)
+(noun)|red drum|channel bass|Sciaenops ocellatus|drum (generic term)|drumfish (generic term)
+(noun)|salmon (generic term)
+redford|1
+(noun)|Redford|Robert Redford|Charles Robert Redford|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+redhead|3
+(noun)|redheader|red-header|carrottop|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Aythya americana|duck (generic term)
+(noun)|redheaded woodpecker|Melanerpes erythrocephalus|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+redheaded|1
+(adj)|blond (similar term)|blonde (similar term)|light-haired (similar term)
+redheaded woodpecker|1
+(noun)|redhead|Melanerpes erythrocephalus|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+redheader|1
+(noun)|redhead|red-header|carrottop|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+redhorse|1
+(noun)|redhorse sucker|sucker (generic term)
+redhorse sucker|1
+(noun)|redhorse|sucker (generic term)
+rediffusion|1
+(noun)|Rediffusion|broadcasting (generic term)
+redirect|1
+(verb)|airt|send (generic term)|direct (generic term)
+redirect examination|1
+(noun)|reexamination|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+rediscover|1
+(verb)|discover (generic term)
+rediscovery|1
+(noun)|discovery (generic term)|find (generic term)|uncovering (generic term)
+redispose|1
+(verb)|dispose (generic term)
+redisposition|1
+(noun)|redeployment|deployment (generic term)
+redistribute|1
+(verb)|spread (generic term)|distribute (generic term)
+redistributed|1
+(adj)|decentralized (similar term)|decentralised (similar term)
+redistribution|1
+(noun)|distribution (generic term)
+redline|1
+(verb)|discriminate (generic term)|separate (generic term)|single out (generic term)
+redmaids|1
+(noun)|red maids|Calandrinia ciliata|wildflower (generic term)|wild flower (generic term)
+redneck|1
+(noun)|cracker|rustic (generic term)
+redness|2
+(noun)|inflammation|rubor|symptom (generic term)
+(noun)|red|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+redo|2
+(verb)|remake|refashion|make over|produce (generic term)|make (generic term)|create (generic term)
+(verb)|remodel|reconstruct|change (generic term)|alter (generic term)|modify (generic term)
+redolence|1
+(noun)|bouquet|fragrance|fragrancy|sweetness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+redolent|3
+(adj)|evocative|remindful|reminiscent|mindful (similar term)|aware (similar term)
+(adj)|smelling|odorous (similar term)
+(adj)|aromatic|fragrant (similar term)
+redonda|1
+(noun)|Redonda|island (generic term)
+redouble|3
+(verb)|escalate (generic term)|intensify (generic term)|step up (generic term)
+(verb)|double (generic term)|duplicate (generic term)
+(verb)|intensify (generic term)|deepen (generic term)
+redoubled|1
+(adj)|increased (similar term)
+redoubt|1
+(noun)|sconce|stronghold (generic term)|fastness (generic term)
+redoubtable|2
+(adj)|formidable|unnerving|alarming (similar term)
+(adj)|glorious|illustrious|respected|proud (similar term)
+redound|4
+(verb)|predominate (generic term)|dominate (generic term)|rule (generic term)|reign (generic term)|prevail (generic term)
+(verb)|reflect (generic term)
+(verb)|accrue (generic term)
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+redox|1
+(noun)|oxidation-reduction|oxidoreduction|chemical reaction (generic term)|reaction (generic term)
+redpoll|2
+(noun)|Carduelis hornemanni|finch (generic term)
+(noun)|Carduelis flammea|finch (generic term)
+redraft|1
+(noun)|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+redress|3
+(noun)|damages|amends|indemnity|indemnification|restitution|compensation (generic term)
+(noun)|remedy|remediation|correction (generic term)|rectification (generic term)
+(verb)|right|compensate|correct|change (generic term)|alter (generic term)|modify (generic term)|compensate (related term)|wrong (antonym)
+redroot|1
+(noun)|bloodroot|puccoon|tetterwort|Sanguinaria canadensis|herb (generic term)|herbaceous plant (generic term)
+redshank|1
+(noun)|Tringa totanus|sandpiper (generic term)
+redshift|1
+(noun)|red shift|propagation (generic term)
+redskin|1
+(noun)|Redskin|Injun|red man|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+redstart|2
+(noun)|American redstart|Setophaga ruticilla|flycatching warbler (generic term)
+(noun)|redtail|thrush (generic term)
+redstem storksbill|1
+(noun)|alfilaria|alfileria|filaree|filaria|clocks|pin grass|pin clover|Erodium cicutarium|storksbill (generic term)|heron's bill (generic term)
+redtail|2
+(noun)|red-tailed hawk|Buteo jamaicensis|hawk (generic term)
+(noun)|redstart|thrush (generic term)
+reduce|19
+(verb)|cut down|cut back|trim|trim down|trim back|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|simplify (generic term)
+(verb)|demote (generic term)|bump (generic term)|relegate (generic term)|break (generic term)|kick downstairs (generic term)
+(verb)|substitute (generic term)|replace (generic term)
+(verb)|take down (generic term)|degrade (generic term)|disgrace (generic term)|demean (generic term)|put down (generic term)
+(verb)|come down|boil down|become (generic term)|turn (generic term)
+(verb)|shrink|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|impoverish (generic term)
+(verb)|scale down|shrink (generic term)|reduce (generic term)|blow up (antonym)
+(verb)|deoxidize|deoxidise|change (generic term)|oxidize (antonym)|oxidise (antonym)
+(verb)|tighten|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|repress|quash|keep down|subdue|subjugate|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|reposition (generic term)
+(verb)|abridge|foreshorten|abbreviate|shorten|cut|contract|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+(verb)|boil down|decoct|concentrate|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|boil down|concentrate|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|dilute|thin|thin out|cut|weaken (generic term)
+(verb)|melt off|lose weight|slim|slenderize|thin|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+reduced|2
+(adj)|decreased|ablated (similar term)|attenuate (similar term)|attenuated (similar term)|faded (similar term)|weakened (similar term)|attenuated (similar term)|bated (similar term)|belittled (similar term)|diminished (similar term)|small (similar term)|cut (similar term)|slashed (similar term)|diminished (similar term)|minimized (similar term)|remittent (similar term)|shriveled (similar term)|shrivelled (similar term)|shrunken (similar term)|increased (antonym)
+(adj)|rock-bottom|low (similar term)
+reduced instruction set computer|1
+(noun)|reduced instruction set computing|RISC|computer architecture (generic term)|architecture (generic term)|CISC (antonym)|complex instruction set computer (antonym)|complex instruction set computing (antonym)
+reduced instruction set computing|1
+(noun)|reduced instruction set computer|RISC|computer architecture (generic term)|architecture (generic term)|CISC (antonym)|complex instruction set computer (antonym)|complex instruction set computing (antonym)
+reducer|2
+(noun)|reducing agent|reductant|chemical agent (generic term)
+(noun)|pipefitting (generic term)|pipe fitting (generic term)
+reducible|1
+(adj)|irreducible (antonym)
+reducing|2
+(noun)|reduction|chemical reaction (generic term)|reaction (generic term)
+(noun)|loss (generic term)
+reducing agent|1
+(noun)|reducer|reductant|chemical agent (generic term)
+reducing diet|1
+(noun)|obesity diet|diet (generic term)
+reductant|1
+(noun)|reducing agent|reducer|chemical agent (generic term)
+reductase|1
+(noun)|enzyme (generic term)
+reductio|1
+(noun)|reductio ad absurdum|disproof (generic term)|falsification (generic term)|refutation (generic term)
+reductio ad absurdum|1
+(noun)|reductio|disproof (generic term)|falsification (generic term)|refutation (generic term)
+reduction|3
+(noun)|decrease|diminution|step-down|change of magnitude (generic term)|increase (antonym)
+(noun)|reducing|chemical reaction (generic term)|reaction (generic term)
+(noun)|simplification|change (generic term)
+reduction division|1
+(noun)|meiosis|miosis|cell division (generic term)|cellular division (generic term)
+reduction gear|1
+(noun)|gearing (generic term)|gear (generic term)|geartrain (generic term)|power train (generic term)|train (generic term)
+reductionism|2
+(noun)|theory (generic term)
+(noun)|analysis (generic term)|analytic thinking (generic term)
+reductionist|1
+(adj)|theory (related term)
+reductive|1
+(adj)|subtractive (similar term)
+reductivism|1
+(noun)|minimalism|minimal art|artistic movement (generic term)|art movement (generic term)
+redundance|1
+(noun)|redundancy|overplus (generic term)|plethora (generic term)|superfluity (generic term)|embarrassment (generic term)
+redundancy|4
+(noun)|repetitiveness (generic term)|repetitiousness (generic term)
+(noun)|redundance|overplus (generic term)|plethora (generic term)|superfluity (generic term)|embarrassment (generic term)
+(noun)|configuration (generic term)|constellation (generic term)
+(noun)|repetition (generic term)|repeating (generic term)
+redundant|2
+(adj)|excess|extra|spare|supererogatory|superfluous|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+(adj)|pleonastic|tautologic|tautological|prolix (similar term)
+redundant check|1
+(noun)|parity check|odd-even check|confirmation (generic term)|verification (generic term)|check (generic term)|substantiation (generic term)
+reduplicate|2
+(verb)|geminate|duplicate (generic term)|reduplicate (generic term)|double (generic term)|repeat (generic term)|replicate (generic term)
+(verb)|duplicate|double|repeat|replicate|reproduce (generic term)
+reduplication|4
+(noun)|anadiplosis|repetition (generic term)
+(noun)|syllable (generic term)
+(noun)|word (generic term)
+(noun)|reiteration|repetition (generic term)|repeating (generic term)
+reduviid|1
+(noun)|assassin bug|heteropterous insect (generic term)
+reduviidae|1
+(noun)|Reduviidae|family Reduviidae|arthropod family (generic term)
+redux|1
+(adj)|revived (similar term)
+redwing|2
+(noun)|red-winged blackbird|Agelaius phoeniceus|New World blackbird (generic term)|blackbird (generic term)
+(noun)|Turdus iliacus|thrush (generic term)
+redwood|2
+(noun)|wood (generic term)
+(noun)|sequoia|cypress (generic term)
+redwood family|1
+(noun)|Taxodiaceae|subfamily Taxodiaceae|gymnosperm family (generic term)
+redwood national park|1
+(noun)|Redwood National Park|national park (generic term)
+redwood penstemon|1
+(noun)|red shrubby penstemon|shrub (generic term)|bush (generic term)
+reecho|2
+(verb)|resound (generic term)|echo (generic term)|ring (generic term)|reverberate (generic term)
+(verb)|repeat (generic term)|echo (generic term)
+reechoing|1
+(adj)|echoing|reverberant (similar term)|ringing (similar term)
+reed|5
+(noun)|gramineous plant (generic term)|graminaceous plant (generic term)
+(noun)|Reed|John Reed|journalist (generic term)|communist (generic term)|commie (generic term)
+(noun)|Reed|Walter Reed|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|vibrating reed|vibrator (generic term)
+(noun)|beating-reed instrument|reed instrument|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+reed bunting|1
+(noun)|Emberiza schoeniclus|bunting (generic term)
+reed canary grass|1
+(noun)|gardener's garters|lady's laces|ribbon grass|Phalaris arundinacea|grass (generic term)
+reed grass|1
+(noun)|grass (generic term)
+reed instrument|1
+(noun)|beating-reed instrument|reed|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+reed mace|1
+(noun)|cat's-tail|bullrush|bulrush|nailrod|reedmace|Typha latifolia|cattail (generic term)
+reed meadow grass|1
+(noun)|Glyceria grandis|manna grass (generic term)|sweet grass (generic term)
+reed organ|1
+(noun)|harmonium|organ|free-reed instrument (generic term)
+reed pipe|1
+(noun)|organ pipe (generic term)|pipe (generic term)|pipework (generic term)
+reed rhapis|1
+(noun)|slender lady palm|Rhapis humilis|lady palm (generic term)
+reed section|1
+(noun)|section (generic term)
+reed stop|1
+(noun)|organ stop (generic term)
+reedbird|2
+(noun)|bobolink|ricebird|Dolichonyx oryzivorus|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+(noun)|sedge warbler|sedge bird|sedge wren|Acrocephalus schoenobaenus|Old World warbler (generic term)|true warbler (generic term)
+reedlike|1
+(adj)|reedy|thin (similar term)|lean (similar term)
+reedmace|1
+(noun)|cat's-tail|bullrush|bulrush|nailrod|reed mace|Typha latifolia|cattail (generic term)
+reedy|2
+(adj)|wheezy|noisy (similar term)
+(adj)|reedlike|thin (similar term)|lean (similar term)
+reef|5
+(noun)|ridge (generic term)
+(noun)|Witwatersrand|Rand|Reef|region (generic term)|part (generic term)
+(verb)|lower (generic term)|take down (generic term)|let down (generic term)|get down (generic term)|bring down (generic term)
+(verb)|roll up (generic term)|furl (generic term)
+(verb)|shrink (generic term)|reduce (generic term)
+reef knot|1
+(noun)|flat knot|square knot (generic term)
+reef squirrelfish|1
+(noun)|Holocentrus coruscus|squirrelfish (generic term)
+reef whitetip shark|1
+(noun)|whitetip shark|Triaenodon obseus|smooth dogfish (generic term)
+reefer|1
+(noun)|joint|marijuana cigarette|stick|spliff|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+reefy|1
+(adj)|shelfy|shelvy|shoaly|shallow (similar term)
+reek|5
+(noun)|malodor|malodour|stench|stink|fetor|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(verb)|smack|suggest (generic term)|evoke (generic term)|paint a picture (generic term)
+(verb)|stink|smell (generic term)|stink up (related term)|stink out (related term)
+(verb)|fume|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+reeking|2
+(adj)|dripping|watery|wet (similar term)
+(adj)|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+reel|9
+(noun)|film (generic term)|photographic film (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|winder (generic term)
+(noun)|bobbin|spool|winder (generic term)
+(noun)|Scottish reel|square dance (generic term)|square dancing (generic term)
+(noun)|Virginia reel|longways (generic term)|longways dance (generic term)
+(verb)|stagger|keel|lurch|swag|careen|walk (generic term)
+(verb)|spin|spin around|whirl|gyrate|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)
+reel off|2
+(verb)|unreel|reel (generic term)
+(verb)|rattle down|rattle off|spiel off|roll off|recite (generic term)
+reelect|1
+(verb)|return|elect (generic term)
+reelection|1
+(noun)|election (generic term)
+reeler|2
+(noun)|staggerer|totterer|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|folk dancer (generic term)
+reenact|3
+(verb)|re-create (generic term)
+(verb)|ordain (generic term)|enact (generic term)
+(verb)|enact|act out|act (generic term)|play (generic term)|represent (generic term)
+reenactment|1
+(noun)|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+reenactor|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+reenforce|1
+(verb)|reinforce|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+reenforcement|2
+(noun)|reinforcement|confirmation (generic term)
+(noun)|support|reinforcement|operation (generic term)|military operation (generic term)
+reenlistment|1
+(noun)|enlistment (generic term)
+reentering angle|1
+(noun)|reentrant angle|interior angle (generic term)|internal angle (generic term)|salient angle (antonym)
+reentering polygon|1
+(noun)|reentrant polygon|concave polygon (generic term)
+reentrant|1
+(adj)|re-entrant|salient (antonym)
+reentrant angle|1
+(noun)|reentering angle|interior angle (generic term)|internal angle (generic term)|salient angle (antonym)
+reentrant polygon|1
+(noun)|reentering polygon|concave polygon (generic term)
+reentry|1
+(noun)|return (generic term)
+reestablish|1
+(verb)|restore|reinstate|change (generic term)|alter (generic term)|modify (generic term)
+reevaluate|1
+(verb)|reassess|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+reevaluation|1
+(noun)|evaluation (generic term)|valuation (generic term)|rating (generic term)
+reeve|2
+(noun)|ruff (generic term)|Philomachus pugnax (generic term)
+(verb)|pass through (generic term)
+reexamination|2
+(noun)|redirect examination|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+(noun)|follow-up|followup|review|examination (generic term)|scrutiny (generic term)
+reexamine|1
+(verb)|review|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+ref|1
+(noun)|referee|official (generic term)
+refabrication|1
+(noun)|reassembly|reconstruction (generic term)
+reface|1
+(verb)|face (generic term)
+refashion|1
+(verb)|remake|redo|make over|produce (generic term)|make (generic term)|create (generic term)
+refection|1
+(noun)|meal (generic term)|repast (generic term)
+refectory|1
+(noun)|dining-hall (generic term)
+refectory table|1
+(noun)|dining table (generic term)|board (generic term)
+refer|6
+(verb)|mention|advert|bring up|cite|name|think of (generic term)|have in mind (generic term)|mean (generic term)
+(verb)|pertain|relate|concern|come to|bear on|touch|touch on
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|send (generic term)|direct (generic term)
+(verb)|consult|look up|research (generic term)
+(verb)|denote|mean (generic term)|intend (generic term)
+referable|1
+(adj)|ascribable|due to|imputable|attributable (similar term)
+referee|5
+(noun)|ref|official (generic term)
+(noun)|reviewer|reader|critic (generic term)
+(noun)|lawyer (generic term)|attorney (generic term)
+(verb)|umpire|judge (generic term)
+(verb)|peer review|review (generic term)|critique (generic term)
+refereeing|1
+(noun)|umpirage|officiation|officiating|decision making (generic term)|deciding (generic term)
+reference|10
+(noun)|mention|remark (generic term)|comment (generic term)
+(noun)|citation|cite|acknowledgment|credit|mention|quotation|note (generic term)|annotation (generic term)|notation (generic term)
+(noun)|reference point|point of reference|indicator (generic term)
+(noun)|reference book|reference work|book of facts|book (generic term)
+(noun)|character|character reference|recommendation (generic term)|testimonial (generic term)|good word (generic term)
+(noun)|denotation|extension|meaning (generic term)|substance (generic term)
+(noun)|consultation|action (generic term)
+(noun)|source|publication (generic term)
+(noun)|meaning (generic term)|substance (generic term)
+(verb)|cite|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+reference book|1
+(noun)|reference|reference work|book of facts|book (generic term)
+reference frame|1
+(noun)|coordinate system|frame of reference|reference system|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+reference grid|1
+(noun)|grid|network (generic term)
+reference manual|1
+(noun)|manual (generic term)
+reference point|1
+(noun)|point of reference|reference|indicator (generic term)
+reference system|1
+(noun)|coordinate system|frame of reference|reference frame|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+reference work|1
+(noun)|reference book|reference|book of facts|book (generic term)
+referenced|1
+(adj)|documented (similar term)
+referendum|1
+(noun)|vote (generic term)
+referent|3
+(adj)|denotative (similar term)|denotive (similar term)
+(noun)|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|term (generic term)
+referential|1
+(adj)|denotative (similar term)|denotive (similar term)
+referral|2
+(noun)|recommendation (generic term)
+(noun)|forwarding (generic term)
+referred pain|1
+(noun)|pain (generic term)|hurting (generic term)
+refill|3
+(noun)|prescription drug (generic term)|prescription (generic term)|prescription medicine (generic term)|ethical drug (generic term)
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+(verb)|replenish|fill again|fill (generic term)|fill up (generic term)|make full (generic term)
+refilling|1
+(noun)|replenishment|replacement|renewal|filling (generic term)
+refinance|1
+(verb)|finance (generic term)
+refine|6
+(verb)|polish|fine-tune|down|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|complicate|rarify|elaborate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|rectify|purify (generic term)|sublimate (generic term)|make pure (generic term)|distill (generic term)
+(verb)|attenuate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+refined|6
+(adj)|civilized (similar term)|civilised (similar term)|cultivated (similar term)|cultured (similar term)|genteel (similar term)|polite (similar term)|couth (similar term)|dainty (similar term)|mincing (similar term)|niminy-piminy (similar term)|prim (similar term)|twee (similar term)|debonair (similar term)|debonaire (similar term)|debonnaire (similar term)|suave (similar term)|finespun (similar term)|delicate (similar term)|gentlemanlike (similar term)|gentlemanly (similar term)|ladylike (similar term)|overrefined (similar term)|superfine (similar term)|well-bred (similar term)|well-mannered (similar term)|civilized (related term)|civilised (related term)|elegant (related term)|fastidious (related term)|gracious (related term)|polished (related term)|unrefined (antonym)
+(adj)|processed|unrefined (antonym)
+(adj)|polished|svelte|urbane|sophisticated (similar term)
+(adj)|purified|sublimate|pure (similar term)
+(adj)|elegant|graceful|gracious (similar term)
+(adj)|neat|tasteful|elegant (similar term)
+refined sugar|1
+(noun)|sugar|sweetening (generic term)|sweetener (generic term)
+refinement|5
+(noun)|polish|culture|cultivation|finish|perfection (generic term)|flawlessness (generic term)|ne plus ultra (generic term)
+(noun)|elaboration|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|refining|purification|processing (generic term)
+(noun)|nuance|nicety|shade|subtlety|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|civilization|civilisation|excellence (generic term)
+refiner|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+refinery|1
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+refining|1
+(noun)|refinement|purification|processing (generic term)
+refining industry|1
+(noun)|oil industry|oil business|industry (generic term)
+refinish|1
+(verb)|coat (generic term)|surface (generic term)
+refinisher|1
+(noun)|renovator|restorer|preserver|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+refit|2
+(noun)|outfitting (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+reflate|4
+(verb)|change (generic term)
+(verb)|inflate (generic term)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|inflate (generic term)|blow up (generic term)
+(verb)|balloon (generic term)|inflate (generic term)|billow (generic term)
+reflation|1
+(noun)|inflation (generic term)|rising prices (generic term)
+reflect|5
+(verb)|indicate (generic term)|point (generic term)|show (generic term)
+(verb)|reverberate
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|shine|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|attest (generic term)|certify (generic term)|manifest (generic term)|demonstrate (generic term)|evidence (generic term)
+reflectance|1
+(noun)|coefficient of reflection|reflection factor|reflectivity|coefficient (generic term)
+reflected|1
+(adj)|echoic (similar term)|echolike (similar term)|mirrored (similar term)|unreflected (antonym)
+reflecting|1
+(adj)|reflective (similar term)
+reflecting telescope|1
+(noun)|reflector|optical telescope (generic term)
+reflection|8
+(noun)|contemplation|reflexion|rumination|musing|thoughtfulness|consideration (generic term)
+(noun)|reflexion|physical phenomenon (generic term)
+(noun)|expression|manifestation|reflexion|demonstration (generic term)|demo (generic term)
+(noun)|reflexion|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(noun)|mirror image|reflexion|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+(noun)|transformation (generic term)
+(noun)|observation|reflexion|remark (generic term)|comment (generic term)
+(noun)|reflexion|reflectivity|physical property (generic term)
+reflection factor|1
+(noun)|coefficient of reflection|reflectance|reflectivity|coefficient (generic term)
+reflective|3
+(adj)|brooding|broody|contemplative|meditative|musing|pensive|pondering|ruminative|thoughtful (similar term)
+(adj)|mirrorlike (similar term)|specular (similar term)|reflecting (similar term)|nonreflective (antonym)
+(adj)|intellectual (similar term)
+reflective power|1
+(noun)|albedo|ratio (generic term)
+reflectiveness|1
+(noun)|reflectivity|thoughtfulness (generic term)
+reflectivity|3
+(noun)|coefficient of reflection|reflection factor|reflectance|coefficient (generic term)
+(noun)|reflection|reflexion|physical property (generic term)
+(noun)|reflectiveness|thoughtfulness (generic term)
+reflectometer|1
+(noun)|meter (generic term)
+reflector|2
+(noun)|device (generic term)
+(noun)|reflecting telescope|optical telescope (generic term)
+reflectorise|1
+(verb)|reflectorize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+reflectorize|1
+(verb)|reflectorise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+reflex|2
+(adj)|automatic|reflexive|involuntary (similar term)
+(noun)|instinctive reflex|innate reflex|inborn reflex|unconditioned reflex|physiological reaction|reaction (generic term)|response (generic term)
+reflex angle|1
+(noun)|angle (generic term)
+reflex arc|1
+(noun)|neural structure (generic term)
+reflex camera|1
+(noun)|camera (generic term)|photographic camera (generic term)
+reflex epilepsy|1
+(noun)|epilepsy (generic term)
+reflexed|1
+(adj)|crooked (similar term)
+reflexion|7
+(noun)|reflection|physical phenomenon (generic term)
+(noun)|expression|manifestation|reflection|demonstration (generic term)|demo (generic term)
+(noun)|observation|reflection|remark (generic term)|comment (generic term)
+(noun)|contemplation|reflection|rumination|musing|thoughtfulness|consideration (generic term)
+(noun)|reflection|reflectivity|physical property (generic term)
+(noun)|mirror image|reflection|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+(noun)|reflection|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+reflexive|3
+(adj)|automatic|reflex|involuntary (similar term)
+(adj)|self-referent|backward (similar term)
+(noun)|reflexive pronoun|personal pronoun (generic term)
+reflexive pronoun|1
+(noun)|reflexive|personal pronoun (generic term)
+reflexive verb|1
+(noun)|verb (generic term)
+reflexiveness|2
+(noun)|reflexivity|coreference (generic term)
+(noun)|reflexivity|logical relation (generic term)|mathematical relation (generic term)
+reflexivity|2
+(noun)|reflexiveness|coreference (generic term)
+(noun)|reflexiveness|logical relation (generic term)|mathematical relation (generic term)
+refloat|1
+(verb)|float (generic term)
+reflux|2
+(noun)|pathology (generic term)
+(noun)|ebb|flow (generic term)|flowing (generic term)
+reflux condenser|1
+(noun)|condenser (generic term)
+refocus|3
+(verb)|focus (generic term)
+(verb)|concenter (generic term)|concentre (generic term)|focalize (generic term)|focalise (generic term)|focus (generic term)
+(verb)|focus (generic term)|focalize (generic term)|focalise (generic term)|sharpen (generic term)
+refocusing|1
+(noun)|focalization (generic term)|focalisation (generic term)|focusing (generic term)
+reforest|1
+(verb)|afforest (generic term)|forest (generic term)
+reforestation|1
+(noun)|re-afforestation|reclamation (generic term)|renewal (generic term)|rehabilitation (generic term)
+reforge|1
+(verb)|recast|remodel|remake (generic term)|refashion (generic term)|redo (generic term)|make over (generic term)
+reform|8
+(noun)|improvement (generic term)
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+(noun)|self-improvement (generic term)|self-reformation (generic term)
+(verb)|reclaim|regenerate|rectify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|change integrity (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|straighten out|see the light|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+reform-minded|1
+(adj)|progressive|reformist|liberal (similar term)
+reform jew|1
+(noun)|Reform Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+reform judaism|2
+(noun)|Reform Judaism|Judaism (generic term)|Hebraism (generic term)|Jewish religion (generic term)
+(noun)|Reform Judaism|Judaism (generic term)
+reform movement|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+reform school|1
+(noun)|reformatory|training school|correctional institution (generic term)
+reformable|1
+(adj)|redeemable|corrigible (similar term)
+reformation|3
+(noun)|improvement (generic term)|melioration (generic term)
+(noun)|Reformation|Protestant Reformation|religious movement (generic term)
+(noun)|reclamation|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+reformative|1
+(adj)|reformatory|helpful (similar term)
+reformatory|2
+(adj)|reformative|helpful (similar term)
+(noun)|reform school|training school|correctional institution (generic term)
+reformed|2
+(adj)|Reformed|unorthodox (similar term)
+(adj)|regenerate (similar term)
+reformer|2
+(noun)|reformist|crusader|social reformer|meliorist|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+(noun)|apparatus (generic term)|setup (generic term)
+reformism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+reformist|2
+(adj)|progressive|reform-minded|liberal (similar term)
+(noun)|reformer|crusader|social reformer|meliorist|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+reformulate|1
+(verb)|redevelop|explicate (generic term)|formulate (generic term)|develop (generic term)
+refract|2
+(verb)|subject (generic term)
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+refractile|1
+(adj)|refractive|physical phenomenon (related term)
+refracting telescope|1
+(noun)|optical telescope (generic term)
+refraction|2
+(noun)|physical phenomenon (generic term)
+(noun)|deflection|deflexion|bending (generic term)|bend (generic term)
+refractive|2
+(adj)|refractile|physical phenomenon (related term)
+(adj)|deflective|crooked (similar term)
+refractive index|1
+(noun)|index of refraction|ratio (generic term)
+refractiveness|1
+(noun)|refractivity|deflection (generic term)|deflexion (generic term)|bending (generic term)
+refractivity|1
+(noun)|refractiveness|deflection (generic term)|deflexion (generic term)|bending (generic term)
+refractometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+refractoriness|1
+(noun)|unmanageableness|recalcitrance|recalcitrancy|intractability (generic term)|intractableness (generic term)
+refractory|4
+(adj)|stubborn|intractable (similar term)
+(adj)|unresponsive (similar term)
+(adj)|fractious|recalcitrant|disobedient (similar term)
+(noun)|furnace lining|lining (generic term)
+refractory-lined|1
+(adj)|lining (related term)
+refractory anaemia|1
+(noun)|refractory anemia|anemia (generic term)|anaemia (generic term)
+refractory anemia|1
+(noun)|refractory anaemia|anemia (generic term)|anaemia (generic term)
+refractory period|1
+(noun)|biological time (generic term)
+refractory pot|1
+(noun)|bone-ash cup|cupel|vessel (generic term)
+refracture|1
+(verb)|fracture (generic term)
+refrain|3
+(noun)|chorus|music (generic term)
+(verb)|forbear|act (antonym)
+(verb)|abstain|desist|consume (antonym)
+refresh|4
+(verb)|review|brush up|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+(verb)|freshen|regenerate (generic term)|renew (generic term)
+(verb)|freshen|refreshen|freshen up|change (generic term)
+(verb)|freshen|refreshen|change (generic term)|alter (generic term)|modify (generic term)|freshen up (related term)|tire (antonym)
+refreshed|1
+(adj)|fresh|invigorated|reinvigorated|rested (similar term)
+refreshen|2
+(verb)|freshen|refresh|freshen up|change (generic term)
+(verb)|refresh|freshen|change (generic term)|alter (generic term)|modify (generic term)|freshen up (related term)|tire (antonym)
+refresher|3
+(noun)|legal fee (generic term)
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|refresher course|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+refresher course|1
+(noun)|refresher|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+refreshful|1
+(adj)|bracing|brisk|energizing|energising|fresh|refreshing|tonic|invigorating (similar term)
+refreshfully|1
+(adv)|refreshingly
+refreshing|2
+(adj)|bracing|brisk|energizing|energising|fresh|refreshful|tonic|invigorating (similar term)
+(adj)|novel|new (similar term)
+refreshingly|1
+(adv)|refreshfully
+refreshment|2
+(noun)|bite (generic term)|collation (generic term)|snack (generic term)
+(noun)|recreation|rejuvenation (generic term)
+refried beans|1
+(noun)|frijoles refritos|dish (generic term)
+refrigerant|2
+(adj)|refrigerating|cold (similar term)
+(noun)|substance (generic term)|matter (generic term)
+refrigerate|2
+(verb)|preserve (generic term)|keep (generic term)
+(verb)|cool (generic term)|chill (generic term)|cool down (generic term)
+refrigerated|1
+(adj)|cold (similar term)
+refrigerating|1
+(adj)|refrigerant|cold (similar term)
+refrigeration|2
+(noun)|infrigidation|cooling (generic term)|chilling (generic term)|temperature reduction (generic term)|preservation (generic term)
+(noun)|therapy (generic term)
+refrigeration system|1
+(noun)|cooling system (generic term)|cooling (generic term)
+refrigerator|1
+(noun)|icebox|white goods (generic term)
+refrigerator car|1
+(noun)|freight car (generic term)
+refrigerator cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+refuel|1
+(verb)|fuel (generic term)
+refueling|1
+(noun)|fueling|provision (generic term)|supply (generic term)|supplying (generic term)
+refuge|4
+(noun)|safety|area (generic term)|country (generic term)
+(noun)|recourse|resort|resource (generic term)
+(noun)|sanctuary|asylum|shelter (generic term)
+(noun)|recourse|resort|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+refugee|1
+(noun)|exile (generic term)|expatriate (generic term)
+refugee camp|1
+(noun)|camp|shelter (generic term)
+refulgence|1
+(noun)|radiance|radiancy|shine|effulgence|refulgency|brightness (generic term)
+refulgency|1
+(noun)|radiance|radiancy|shine|effulgence|refulgence|brightness (generic term)
+refulgent|1
+(adj)|beaming|beamy|effulgent|radiant|bright (similar term)
+refund|3
+(noun)|payment (generic term)
+(noun)|repayment|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+(verb)|return|repay|give back|pay (generic term)
+refurbish|1
+(verb)|renovate|freshen up|regenerate (generic term)|renew (generic term)
+refurbishment|1
+(noun)|renovation|restoration|improvement (generic term)|melioration (generic term)
+refurnish|1
+(verb)|furnish (generic term)
+refusal|2
+(noun)|denial (generic term)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+refuse|7
+(noun)|garbage|food waste|scraps|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(verb)|decline|react (generic term)|respond (generic term)|accept (antonym)
+(verb)|reject|pass up|turn down|decline|accept (antonym)
+(verb)|defy|resist|elude (generic term)|escape (generic term)|lend oneself (antonym)
+(verb)|deny|keep (generic term)|hold on (generic term)|allow (antonym)
+(verb)|resist|reject|react (generic term)|respond (generic term)
+(verb)|reject|turn down|turn away|admit (antonym)
+refuse collector|1
+(noun)|garbage man|garbageman|garbage collector|garbage carter|garbage hauler|dustman|hauler (generic term)|haulier (generic term)
+refuse heap|1
+(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|junk pile|trash pile|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+refutable|1
+(adj)|questionable|confutable|confutative|deniable (similar term)
+refutal|1
+(noun)|falsification|falsifying|disproof|refutation|determination (generic term)|finding (generic term)
+refutation|3
+(noun)|defense|defence|answer (generic term)
+(noun)|disproof|falsification|evidence (generic term)|grounds (generic term)
+(noun)|falsification|falsifying|disproof|refutal|determination (generic term)|finding (generic term)
+refute|2
+(verb)|rebut|renounce (generic term)|repudiate (generic term)
+(verb)|rebut|controvert|disprove (generic term)|confute (generic term)
+refuter|1
+(noun)|rebutter|disprover|confuter|debater (generic term)|arguer (generic term)
+regain|2
+(verb)|recover|retrieve|find|get (generic term)|acquire (generic term)
+(verb)|find|get (generic term)|acquire (generic term)|lose (antonym)
+regaining|1
+(noun)|restitution|return|restoration|acquisition (generic term)
+regal|1
+(adj)|imperial|majestic|purple|royal|noble (similar term)
+regale|1
+(verb)|treat|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+regalecidae|1
+(noun)|Regalecidae|family Regalecidae|fish family (generic term)
+regalecus glesne|1
+(noun)|oarfish|king of the herring|ribbonfish|Regalecus glesne|soft-finned fish (generic term)|malacopterygian (generic term)
+regalia|2
+(noun)|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|array|raiment|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+regard|10
+(noun)|respect|detail (generic term)|item (generic term)|point (generic term)
+(noun)|attentiveness|heed|paying attention|attention (generic term)|attending (generic term)|inattentiveness (antonym)
+(noun)|wish|compliments|greeting (generic term)|salutation (generic term)
+(noun)|gaze|stare (generic term)
+(noun)|esteem|respect|honor (generic term)|honour (generic term)|laurels (generic term)|disesteem (antonym)
+(noun)|respect|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+(noun)|respect|esteem|attitude (generic term)|mental attitude (generic term)|disrespect (antonym)
+(verb)|see|consider|reckon|view|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|consider|look (generic term)
+(verb)|involve|affect|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+regard as|1
+(verb)|think of|repute|look upon|look on|esteem|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+regardant|1
+(adj)|backward (similar term)
+regardful|1
+(adj)|deferent|deferential|respectful (similar term)
+regardless|2
+(adj)|careless|heedless (similar term)|thoughtless (similar term)|unheeding (similar term)
+(adv)|irrespective|disregardless|no matter|disregarding
+regatta|1
+(noun)|meet (generic term)|sports meeting (generic term)
+regency|5
+(adj)|rule (related term)
+(adj)|Regency|rule (related term)
+(noun)|rule (generic term)
+(noun)|Regency|rule (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+regenerate|10
+(adj)|born-again (similar term)|converted (similar term)|reborn (similar term)|reformed (similar term)|saved (related term)|unregenerate (antonym)
+(verb)|renew|re-create (generic term)
+(verb)|increase (generic term)
+(verb)|reform|reclaim|rectify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|restore|rejuvenate|regenerate (generic term)|renew (generic term)
+(verb)|re-create (generic term)
+(verb)|form (generic term)|take form (generic term)|take shape (generic term)|spring (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|change (generic term)
+(verb)|revitalize|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+regeneration|4
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|positive feedback|feedback (generic term)
+(noun)|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+(noun)|re-formation|reconstruction (generic term)
+regent|3
+(adj)|powerful (similar term)
+(noun)|trustee|committee member (generic term)
+(noun)|ruler (generic term)|swayer (generic term)
+reggae|1
+(noun)|popular music (generic term)|popular music genre (generic term)
+reggane|1
+(noun)|Reggane|town (generic term)
+regicide|2
+(noun)|killer (generic term)|slayer (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+regime|2
+(noun)|government|authorities|polity (generic term)
+(noun)|regimen|plan (generic term)|program (generic term)|programme (generic term)
+regimen|1
+(noun)|regime|plan (generic term)|program (generic term)|programme (generic term)
+regiment|4
+(noun)|army unit (generic term)
+(verb)|control (generic term)|command (generic term)
+(verb)|form (generic term)|organize (generic term)|organise (generic term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+regimental|1
+(adj)|army unit (related term)
+regimentals|1
+(noun)|military uniform (generic term)
+regimentation|1
+(noun)|imposition (generic term)|infliction (generic term)
+regimented|1
+(adj)|controlled (similar term)
+regina|1
+(noun)|Regina|provincial capital (generic term)
+reginald carey harrison|1
+(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+reginald joseph mitchell|1
+(noun)|Mitchell|R. J. Mitchell|Reginald Joseph Mitchell|aeronautical engineer (generic term)
+reginald marsh|1
+(noun)|Marsh|Reginald Marsh|painter (generic term)
+regiomontanus|1
+(noun)|Muller|Johann Muller|Regiomontanus|mathematician (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+region|5
+(noun)|part|location (generic term)
+(noun)|area|body part (generic term)
+(noun)|location (generic term)
+(noun)|neighborhood|indefinite quantity (generic term)
+(noun)|domain|realm|knowledge domain (generic term)|knowledge base (generic term)
+regional|2
+(adj)|location (related term)
+(adj)|territorial (similar term)
+regional anaesthesia|1
+(noun)|regional anesthesia|anesthesia (generic term)|anaesthesia (generic term)
+regional anatomy|1
+(noun)|topographic anatomy|topology|anatomy (generic term)|general anatomy (generic term)
+regional anesthesia|1
+(noun)|regional anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+regional enteritis|1
+(noun)|regional ileitis|Crohn's disease|colitis (generic term)|inflammatory bowel disease (generic term)
+regional ileitis|1
+(noun)|regional enteritis|Crohn's disease|colitis (generic term)|inflammatory bowel disease (generic term)
+regionalism|3
+(noun)|non-standard speech (generic term)
+(noun)|foreign policy (generic term)
+(noun)|loyalty (generic term)|trueness (generic term)
+register|17
+(noun)|registry|written record (generic term)|written account (generic term)
+(noun)|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|record (generic term)
+(noun)|memory device (generic term)|storage device (generic term)
+(noun)|air passage (generic term)|air duct (generic term)|airway (generic term)
+(noun)|regulator (generic term)
+(noun)|cash register|cashbox (generic term)|money box (generic term)|till (generic term)
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|file|register (generic term)
+(verb)|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)
+(verb)|record
+(verb)|read|show|record|indicate (generic term)
+(verb)|cross-file|campaign (generic term)|run (generic term)
+(verb)|show (generic term)|show up (generic term)
+(verb)|play (generic term)
+(verb)|mail (generic term)|post (generic term)|send (generic term)
+(verb)|affect (generic term)
+register language|1
+(noun)|tone language (generic term)|tonal language (generic term)
+registered|3
+(adj)|unregistered (antonym)
+(adj)|certified (similar term)|qualified (similar term)|enrolled (similar term)|listed (similar term)|recorded (similar term)|unregistered (antonym)
+(adj)|documented (similar term)
+registered bond|1
+(noun)|bond (generic term)|bond certificate (generic term)|registered security (generic term)
+registered mail|1
+(noun)|registered post|mail (generic term)
+registered nurse|1
+(noun)|RN|nurse (generic term)
+registered post|1
+(noun)|registered mail|mail (generic term)
+registered representative|1
+(noun)|account executive|account representative|customer's broker|customer's man|businessperson (generic term)|bourgeois (generic term)
+registered security|1
+(noun)|security (generic term)|certificate (generic term)
+registrant|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+registrar|3
+(noun)|employee (generic term)
+(noun)|academic administrator (generic term)
+(noun)|record-keeper|recorder|official (generic term)|functionary (generic term)
+registration|5
+(noun)|enrollment|enrolment|entrance (generic term)|entering (generic term)|entry (generic term)|ingress (generic term)|incoming (generic term)
+(noun)|enrollment|body (generic term)
+(noun)|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+(noun)|sound property (generic term)
+(noun)|adjustment|readjustment|calibration (generic term)|standardization (generic term)|standardisation (generic term)
+registration fire|1
+(noun)|fire (generic term)|firing (generic term)
+registration number|1
+(noun)|license number|number (generic term)|identification number (generic term)
+registry|1
+(noun)|register|written record (generic term)|written account (generic term)
+regius professor|1
+(noun)|Regius professor|professor (generic term)|prof (generic term)
+reglaecus|1
+(noun)|Reglaecus|genus Regalecus|fish genus (generic term)
+regnant|1
+(adj)|reigning|ruling|powerful (similar term)
+regnellidium|1
+(noun)|Regnellidium diphyllum|aquatic fern (generic term)|water fern (generic term)
+regnellidium diphyllum|1
+(noun)|regnellidium|Regnellidium diphyllum|aquatic fern (generic term)|water fern (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+regosol|1
+(noun)|soil (generic term)|dirt (generic term)
+regress|6
+(noun)|reasoning backward|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+(noun)|regression|reversion|retrogression|retroversion|reversal (generic term)
+(verb)|change (generic term)
+(verb)|revert|return|retrovert|turn back|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|retrograde|retrogress|worsen (generic term)|decline (generic term)|progress (antonym)
+(verb)|relapse|lapse|recidivate|retrogress|fall back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+regression|4
+(noun)|arrested development|fixation|infantile fixation|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|simple regression|regression toward the mean|statistical regression|statistical method (generic term)|statistical procedure (generic term)
+(noun)|regress|reversion|retrogression|retroversion|reversal (generic term)
+regression analysis|1
+(noun)|multivariate analysis (generic term)
+regression coefficient|1
+(noun)|parametric statistic (generic term)
+regression curve|1
+(noun)|regression line|curve (generic term)
+regression equation|1
+(noun)|regression of y on x|equation (generic term)
+regression line|1
+(noun)|regression curve|curve (generic term)
+regression of y on x|1
+(noun)|regression equation|equation (generic term)
+regression toward the mean|1
+(noun)|regression|simple regression|statistical regression|statistical method (generic term)|statistical procedure (generic term)
+regressive|2
+(adj)|flat (similar term)|fixed (similar term)|graduated (similar term)|progressive (antonym)
+(adj)|atavistic (similar term)|throwback (similar term)|retrograde (similar term)|retrogressive (similar term)|returning (similar term)|reverting (similar term)|unmodernized (similar term)|unmodernised (similar term)|backward (related term)|progressive (antonym)
+regret|5
+(noun)|sorrow|rue|ruefulness|sadness (generic term)|unhappiness (generic term)
+(verb)|repent|rue|feel (generic term)|experience (generic term)
+(verb)|miss (generic term)
+(verb)|refuse (generic term)|decline (generic term)
+(verb)|inform (generic term)
+regretful|1
+(adj)|sorry|bad|penitent (related term)|repentant (related term)|unregretful (antonym)
+regrets|1
+(noun)|declination|refusal (generic term)|acknowledgment (generic term)|acknowledgement (generic term)
+regrettable|1
+(adj)|too bad|unfortunate (similar term)
+regrettably|1
+(adv)|unfortunately|unluckily|alas|luckily (antonym)|fortunately (antonym)
+regroup|2
+(verb)|reorganize|reorganise|form (generic term)|organize (generic term)|organise (generic term)
+(verb)|group (generic term)
+regrow|1
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+regular|17
+(adj)|daily (similar term)|day-to-day (similar term)|day-after-day (similar term)|every day (similar term)|nightly (similar term)|first-string (similar term)|lawful (similar term)|orderly (similar term)|rule-governed (similar term)|official (similar term)|prescribed (similar term)|regularized (similar term)|regularised (similar term)|routine (similar term)|standard (similar term)|stock (similar term)|timed (similar term)|uniform (similar term)|weak (similar term)|well-ordered (similar term)|rhythmical (related term)|rhythmic (related term)|symmetrical (related term)|symmetric (related term)|systematic (related term)|irregular (antonym)
+(adj)|veritable|typical (similar term)
+(adj)|standard (similar term)
+(adj)|irregular (antonym)
+(adj)|scheduled (similar term)
+(adj)|usual (similar term)
+(adj)|even|steady (similar term)
+(adj)|steady|frequent (similar term)
+(adj)|standing (similar term)|irregular (antonym)
+(adj)|unconstipated|diarrheal (similar term)|diarrhoeal (similar term)|diarrhetic (similar term)|diarrhoetic (similar term)|diarrheic (similar term)|diarrhoeic (similar term)|lax (similar term)|loose (similar term)|constipated (antonym)
+(adj)|even|symmetrical (similar term)|symmetric (similar term)
+(adj)|normal (similar term)
+(adj)|full-time (similar term)
+(noun)|habitue|fixture|patron (generic term)|frequenter (generic term)
+(noun)|soldier (generic term)
+(noun)|follower (generic term)
+(noun)|size (generic term)
+regular army|1
+(noun)|army|ground forces|military service (generic term)|armed service (generic term)|service (generic term)
+regular convex polyhedron|1
+(noun)|regular polyhedron|regular convex solid|Platonic body|Platonic solid|ideal solid|polyhedron (generic term)
+regular convex solid|1
+(noun)|regular polyhedron|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron (generic term)
+regular dodecahedron|1
+(noun)|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+regular hexagon|1
+(noun)|hexagon (generic term)
+regular hexahedron|1
+(noun)|cube|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+regular icosahedron|1
+(noun)|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+regular octahedron|1
+(noun)|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+regular payment|1
+(noun)|payment (generic term)
+regular polygon|1
+(noun)|isogon (generic term)
+regular polyhedron|1
+(noun)|regular convex solid|regular convex polyhedron|Platonic body|Platonic solid|ideal solid|polyhedron (generic term)
+regular recurrence|1
+(noun)|rhythm|cyclicity (generic term)|periodicity (generic term)
+regular tetrahedron|1
+(noun)|regular polyhedron (generic term)|regular convex solid (generic term)|regular convex polyhedron (generic term)|Platonic body (generic term)|Platonic solid (generic term)|ideal solid (generic term)
+regularisation|2
+(noun)|regularization|condition (generic term)|status (generic term)
+(noun)|regulation|regularization|control (generic term)
+regularise|2
+(verb)|regulate|regularize|order|govern|decide (generic term)|make up one's mind (generic term)|determine (generic term)|deregulate (antonym)
+(verb)|regularize|arrange (generic term)|set up (generic term)
+regularised|1
+(adj)|regularized|regular (similar term)
+regularity|2
+(noun)|geometrical regularity|symmetry (generic term)|symmetricalness (generic term)|correspondence (generic term)|balance (generic term)
+(noun)|quality (generic term)|irregularity (antonym)
+regularization|2
+(noun)|regularisation|condition (generic term)|status (generic term)
+(noun)|regulation|regularisation|control (generic term)
+regularize|2
+(verb)|regulate|regularise|order|govern|decide (generic term)|make up one's mind (generic term)|determine (generic term)|deregulate (antonym)
+(verb)|regularise|arrange (generic term)|set up (generic term)
+regularized|1
+(adj)|regularised|regular (similar term)
+regularly|2
+(adv)|on a regular basis|irregularly (antonym)
+(adv)|irregularly (antonym)
+regulate|4
+(verb)|modulate|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|regularize|regularise|order|govern|decide (generic term)|make up one's mind (generic term)|determine (generic term)|deregulate (antonym)
+(verb)|determine|shape|mold|influence|cause (generic term)|do (generic term)|make (generic term)
+(verb)|baffle|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+regulated|2
+(adj)|thermostated (similar term)|unregulated (antonym)
+(adj)|ordered|orderly|organized (similar term)
+regulating|1
+(noun)|regulation|control (generic term)
+regulation|7
+(adj)|standard (similar term)
+(noun)|ordinance|rule (generic term)|prescript (generic term)
+(noun)|rule|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|regularization|regularisation|control (generic term)
+(noun)|regulating|control (generic term)
+regulation time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|overtime (antonym)
+regulative|1
+(adj)|regulatory|restrictive (similar term)
+regulator|3
+(noun)|control (generic term)|controller (generic term)
+(noun)|official (generic term)|functionary (generic term)
+(noun)|governor|control (generic term)|controller (generic term)
+regulator gene|1
+(noun)|regulatory gene|gene (generic term)|cistron (generic term)|factor (generic term)
+regulatory|1
+(adj)|regulative|restrictive (similar term)
+regulatory agency|1
+(noun)|regulatory authority|administrative unit (generic term)|administrative body (generic term)
+regulatory authority|1
+(noun)|regulatory agency|administrative unit (generic term)|administrative body (generic term)
+regulatory gene|1
+(noun)|regulator gene|gene (generic term)|cistron (generic term)|factor (generic term)
+regulatory offence|1
+(noun)|statutory offense|statutory offence|regulatory offense|crime (generic term)|law-breaking (generic term)
+regulatory offense|1
+(noun)|statutory offense|statutory offence|regulatory offence|crime (generic term)|law-breaking (generic term)
+regulus|2
+(noun)|Regulus|star (generic term)
+(noun)|Regulus|genus Regulus|bird genus (generic term)
+regulus calendula|1
+(noun)|ruby-crowned kinglet|ruby-crowned wren|Regulus calendula|kinglet (generic term)
+regulus regulus|1
+(noun)|goldcrest|golden-crested kinglet|Regulus regulus|kinglet (generic term)
+regulus satrata|1
+(noun)|gold-crowned kinglet|Regulus satrata|kinglet (generic term)
+regur|1
+(noun)|regur soil|loam (generic term)
+regur soil|1
+(noun)|regur|loam (generic term)
+regurgitate|4
+(verb)|pour (generic term)
+(verb)|feed (generic term)|give (generic term)
+(verb)|reproduce|repeat (generic term)|echo (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+regurgitation|3
+(noun)|backflow (generic term)|backflowing (generic term)
+(noun)|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+(noun)|vomit|vomiting|emesis|disgorgement|puking|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+rehabilitate|2
+(verb)|reinstate (generic term)|purge (antonym)
+(verb)|restore (generic term)|reconstruct (generic term)
+rehabilitation|4
+(noun)|restoration (generic term)
+(noun)|reclamation|renewal|restoration (generic term)
+(noun)|vindication (generic term)|exoneration (generic term)
+(noun)|physical therapy (generic term)|physiotherapy (generic term)|physiatrics (generic term)
+rehabilitation program|1
+(noun)|program (generic term)|programme (generic term)
+rehabilitative|2
+(adj)|punitive (antonym)
+(adj)|reconstructive|constructive (similar term)
+reharmonisation|1
+(noun)|reharmonization|harmonization (generic term)|harmonisation (generic term)
+reharmonise|1
+(verb)|reharmonize|harmonize (generic term)|harmonise (generic term)
+reharmonization|1
+(noun)|reharmonisation|harmonization (generic term)|harmonisation (generic term)
+reharmonize|1
+(verb)|reharmonise|harmonize (generic term)|harmonise (generic term)
+rehash|3
+(noun)|material (generic term)
+(verb)|recycle (generic term)|reprocess (generic term)|reuse (generic term)
+(verb)|retrograde|hash over|recapitulate (generic term)|recap (generic term)
+rehear|1
+(verb)|retry|hear (generic term)|try (generic term)
+rehearing|1
+(noun)|relistening|listening (generic term)|hearing (generic term)
+rehearsal|2
+(noun)|dry run|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+rehearse|1
+(verb)|practise|practice|perform (generic term)|execute (generic term)|do (generic term)
+reheat|1
+(verb)|heat (generic term)|heat up (generic term)
+reheel|1
+(verb)|heel|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+rehnquist|1
+(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|chief justice (generic term)
+rehouse|1
+(verb)|house (generic term)|put up (generic term)|domiciliate (generic term)
+reich|3
+(noun)|Reich|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+(noun)|Reich|Wilhelm Reich|analyst (generic term)|psychoanalyst (generic term)
+(noun)|Reich|Steve Reich|Stephen Michael Reich|composer (generic term)
+reichstein|1
+(noun)|Reichstein|Tadeus Reichstein|chemist (generic term)
+reid|1
+(noun)|Reid|Thomas Reid|philosopher (generic term)
+reification|2
+(noun)|hypostatization|hypostatisation|objectification (generic term)
+(noun)|depersonalization|depersonalisation|objectification (generic term)
+reify|1
+(verb)|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+reign|5
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|historic period (generic term)|age (generic term)
+(noun)|sovereignty|dominion (generic term)|rule (generic term)
+(verb)|govern (generic term)|rule (generic term)
+(verb)|predominate|dominate|rule|prevail
+reign of terror|2
+(noun)|reign (generic term)
+(noun)|Reign of Terror|historic period (generic term)|age (generic term)
+reigning|1
+(adj)|regnant|ruling|powerful (similar term)
+reignite|1
+(verb)|ignite (generic term)|light (generic term)
+reimburse|2
+(verb)|refund (generic term)|return (generic term)|repay (generic term)|give back (generic term)
+(verb)|recoup|compensate (generic term)|recompense (generic term)|remunerate (generic term)
+reimbursement|1
+(noun)|compensation (generic term)
+reimpose|1
+(verb)|levy (generic term)|impose (generic term)
+reimposition|1
+(noun)|imposition (generic term)|infliction (generic term)
+reims|1
+(noun)|Rheims|Reims|city (generic term)|metropolis (generic term)|urban center (generic term)
+rein|6
+(noun)|strap (generic term)
+(noun)|control (generic term)
+(verb)|harness|rein in|draw rein|control (generic term)|command (generic term)
+(verb)|rein in|stop (generic term)|halt (generic term)
+(verb)|rein in|stop (generic term)
+(verb)|rule|harness|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+rein in|3
+(verb)|rein|stop (generic term)|halt (generic term)
+(verb)|harness|draw rein|rein|control (generic term)|command (generic term)
+(verb)|rein|stop (generic term)
+rein orchid|1
+(noun)|rein orchis|orchid (generic term)|orchidaceous plant (generic term)
+rein orchis|1
+(noun)|rein orchid|orchid (generic term)|orchidaceous plant (generic term)
+reincarnate|3
+(adj)|corporeal (similar term)|material (similar term)
+(verb)|transmigrate|be born (generic term)
+(verb)|renew|regenerate (generic term)|restore (generic term)|rejuvenate (generic term)
+reincarnation|3
+(noun)|embodiment (generic term)|incarnation (generic term)|avatar (generic term)
+(noun)|rebirth|renascence|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)
+(noun)|theological doctrine (generic term)
+reincarnationism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+reindeer|1
+(noun)|caribou|Greenland caribou|Rangifer tarandus|deer (generic term)|cervid (generic term)
+reindeer lichen|1
+(noun)|reindeer moss|arctic moss|Cladonia rangiferina|lichen (generic term)
+reindeer moss|1
+(noun)|reindeer lichen|arctic moss|Cladonia rangiferina|lichen (generic term)
+reinforce|2
+(verb)|reenforce|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|reward|teach (generic term)|learn (generic term)|instruct (generic term)
+reinforced|2
+(adj)|strengthened|strong (similar term)
+(adj)|built|improved (similar term)
+reinforced concrete|1
+(noun)|ferroconcrete|concrete (generic term)
+reinforcement|5
+(noun)|support|reenforcement|operation (generic term)|military operation (generic term)
+(noun)|reenforcement|confirmation (generic term)
+(noun)|reinforcing stimulus|reinforcer|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+(noun)|strengthener|device (generic term)
+(noun)|reward|blessing (generic term)|approval (generic term)|approving (generic term)
+reinforcer|1
+(noun)|reinforcing stimulus|reinforcement|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+reinforcing stimulus|1
+(noun)|reinforcer|reinforcement|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+reinhold niebuhr|1
+(noun)|Niebuhr|Reinhold Niebuhr|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+reinstall|1
+(verb)|install (generic term)|instal (generic term)|put in (generic term)|set up (generic term)
+reinstate|2
+(verb)|restore (generic term)|reconstruct (generic term)
+(verb)|restore|reestablish|change (generic term)|alter (generic term)|modify (generic term)
+reinstatement|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|restoration (generic term)
+reinsurance|1
+(noun)|insurance (generic term)
+reinsure|2
+(verb)|insure (generic term)
+(verb)|cover (generic term)|insure (generic term)|underwrite (generic term)
+reintegrate|1
+(verb)|integrate (generic term)|incorporate (generic term)
+reinterpret|2
+(verb)|re-explain|rede (generic term)|interpret (generic term)
+(verb)|interpret (generic term)|construe (generic term)|see (generic term)
+reinterpretation|2
+(noun)|interpretation (generic term)|reading (generic term)|version (generic term)
+(noun)|rendition (generic term)|rendering (generic term)|interpretation (generic term)
+reintroduce|1
+(verb)|re-introduce|introduce (generic term)|present (generic term)|acquaint (generic term)
+reintroduction|1
+(noun)|presentation (generic term)|introduction (generic term)|intro (generic term)
+reinvent|2
+(verb)|create (generic term)
+(verb)|recreate (generic term)
+reinvigorate|1
+(verb)|invigorate|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+reinvigorated|1
+(adj)|fresh|invigorated|refreshed|rested (similar term)
+reissue|3
+(noun)|reprint|reprinting|publication (generic term)
+(verb)|reprint|reproduce (generic term)
+(verb)|issue (generic term)|supply (generic term)
+reit|1
+(noun)|Real Estate Investment Trust|REIT|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+reiter|1
+(noun)|Reiter|Hans Conrad Julius Reiter|bacteriologist (generic term)
+reiter's disease|1
+(noun)|Reiter's syndrome|Reiter's disease|syndrome (generic term)
+reiter's syndrome|1
+(noun)|Reiter's syndrome|Reiter's disease|syndrome (generic term)
+reiterate|1
+(verb)|repeat|ingeminate|iterate|restate|retell|tell (generic term)
+reiteration|1
+(noun)|reduplication|repetition (generic term)|repeating (generic term)
+reiterative|1
+(adj)|iterative|repetitive (similar term)|repetitious (similar term)
+reithrodontomys|1
+(noun)|Reithrodontomys|genus Reithrodontomys|mammal genus (generic term)
+reject|8
+(noun)|cull|decision making (generic term)|deciding (generic term)
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|accept (antonym)
+(verb)|refuse|pass up|turn down|decline|accept (antonym)
+(verb)|disapprove|evaluate (generic term)|pass judgment (generic term)|judge (generic term)|approve (antonym)
+(verb)|spurn|freeze off|scorn|pooh-pooh|disdain|turn down|refuse (generic term)|decline (generic term)
+(verb)|resist|refuse|react (generic term)|respond (generic term)
+(verb)|turn down|turn away|refuse|admit (antonym)
+(verb)|rule out|eliminate|winnow out
+rejected|2
+(adj)|jilted|spurned|unloved (similar term)
+(adj)|disapproved (similar term)
+rejection|4
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|situation (generic term)|state of affairs (generic term)|acceptance (antonym)
+(noun)|organic phenomenon (generic term)
+(noun)|speech act (generic term)
+rejective|1
+(adj)|repudiative (similar term)|acceptive (antonym)
+rejig|1
+(verb)|re-equip|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+rejoice|3
+(verb)|joy|feel (generic term)|experience (generic term)
+(verb)|exuberate|exult|triumph|jubilate|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+(verb)|wallow|triumph|exult (generic term)|walk on air (generic term)|be on cloud nine (generic term)|jump for joy (generic term)
+rejoicing|3
+(adj)|exultant|exulting|jubilant|prideful|triumphal|triumphant|elated (similar term)
+(noun)|happiness (generic term)
+(noun)|exultation|jubilation|utterance (generic term)|vocalization (generic term)
+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 (generic term)
+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 (generic term)
+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 (generic term)
+rejoin|2
+(verb)|join (generic term)|fall in (generic term)|get together (generic term)
+(verb)|retort|come back|repay|return|riposte|answer (generic term)|reply (generic term)|respond (generic term)
+rejoinder|2
+(noun)|retort|return|riposte|replication|comeback|counter|reply (generic term)|response (generic term)
+(noun)|pleading (generic term)
+rejuvenate|5
+(verb)|provoke (generic term)|stimulate (generic term)
+(verb)|change (generic term)
+(verb)|regenerate (generic term)|revitalize (generic term)|age (antonym)
+(verb)|regenerate|restore|regenerate (generic term)|renew (generic term)
+(verb)|regenerate (generic term)
+rejuvenation|2
+(noun)|greening|organic phenomenon (generic term)
+(noun)|restoration (generic term)
+rekindle|2
+(verb)|kindle (generic term)|enkindle (generic term)|conflagrate (generic term)|inflame (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+relace|1
+(verb)|lace (generic term)|lace up (generic term)
+relafen|1
+(noun)|nabumetone|Relafen|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+relapse|3
+(noun)|backsliding|lapse|lapsing|relapsing|reversion|reverting|failure (generic term)
+(verb)|get worse|change state (generic term)|turn (generic term)|get well (antonym)
+(verb)|lapse|recidivate|regress|retrogress|fall back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+relapsing|1
+(noun)|backsliding|lapse|lapsing|relapse|reversion|reverting|failure (generic term)
+relapsing fever|1
+(noun)|recurrent fever|infectious disease (generic term)
+relate|5
+(verb)|associate|tie in|link|colligate|link up|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+(verb)|refer|pertain|concern|come to|bear on|touch|touch on
+(verb)|tell (generic term)|narrate (generic term)|recount (generic term)|recite (generic term)
+(verb)|interrelate|be (generic term)
+(verb)|interact (generic term)
+related|4
+(adj)|related to|accompanying (similar term)|attendant (similar term)|concomitant (similar term)|incidental (similar term)|incidental to (similar term)|affiliated (similar term)|attached (similar term)|connected (similar term)|age-related (similar term)|associated (similar term)|connected (similar term)|bound up (similar term)|cognate (similar term)|connate (similar term)|cognate (similar term)|concerned (similar term)|coreferent (similar term)|correlative (similar term)|correlate (similar term)|correlated (similar term)|corresponding (similar term)|overlapping (similar term)|side by side (similar term)|unrelated (antonym)
+(adj)|affinal (similar term)|affine (similar term)|agnate (similar term)|agnatic (similar term)|paternal (similar term)|akin (similar term)|blood-related (similar term)|cognate (similar term)|consanguine (similar term)|consanguineous (similar term)|consanguineal (similar term)|kin (similar term)|allied (similar term)|enate (similar term)|enatic (similar term)|maternal (similar term)|kindred (similar term)|collateral (related term)|indirect (related term)|lineal (related term)|direct (related term)|unrelated (antonym)
+(adj)|akin|kindred|similar (similar term)
+(adj)|germane|relevant (similar term)
+related to|1
+(adj)|related|accompanying (similar term)|attendant (similar term)|concomitant (similar term)|incidental (similar term)|incidental to (similar term)|affiliated (similar term)|attached (similar term)|connected (similar term)|age-related (similar term)|associated (similar term)|connected (similar term)|bound up (similar term)|cognate (similar term)|connate (similar term)|cognate (similar term)|concerned (similar term)|coreferent (similar term)|correlative (similar term)|correlate (similar term)|correlated (similar term)|corresponding (similar term)|overlapping (similar term)|side by side (similar term)|unrelated (antonym)
+relatedness|1
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)|unrelatedness (antonym)
+relatiative|1
+(adj)|retaliatory|retributive|retributory|vindicatory|punitive (similar term)|punitory (similar term)
+relation|6
+(noun)|abstraction (generic term)
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|relative|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|telling|recounting|narration (generic term)|recital (generic term)|yarn (generic term)
+(noun)|relation back|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+(noun)|dealings (generic term)|traffic (generic term)
+relation back|1
+(noun)|relation|legal principle (generic term)|judicial principle (generic term)|judicial doctrine (generic term)
+relational|1
+(adj)|relative (similar term)
+relational adjective|1
+(noun)|classifying adjective|adjective (generic term)
+relational database|1
+(noun)|electronic database (generic term)|on-line database (generic term)|computer database (generic term)|electronic information service (generic term)
+relational database management system|1
+(noun)|database management system (generic term)|DBMS (generic term)
+relations|1
+(noun)|dealings|social relation (generic term)
+relationship|3
+(noun)|human relationship|relation (generic term)
+(noun)|state (generic term)
+(noun)|kinship|family relationship|relation (generic term)
+relative|4
+(adj)|comparative (similar term)|relational (similar term)|absolute (antonym)
+(adj)|proportional|proportionate (similar term)
+(noun)|relation|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|congener|congenator|congeneric|organism (generic term)|being (generic term)
+relative-in-law|1
+(noun)|in-law|relative (generic term)|relation (generic term)
+relative atomic mass|1
+(noun)|atomic weight|mass (generic term)
+relative clause|1
+(noun)|clause (generic term)
+relative density|1
+(noun)|density (generic term)|denseness (generic term)
+relative frequency|1
+(noun)|frequency|ratio (generic term)
+relative humidity|1
+(noun)|ratio (generic term)
+relative incidence|1
+(noun)|incidence|frequency (generic term)|relative frequency (generic term)
+relative majority|1
+(noun)|plurality|relative quantity (generic term)
+relative molecular mass|1
+(noun)|molecular weight|mass (generic term)
+relative pronoun|1
+(noun)|pronoun (generic term)
+relative quantity|1
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+relatively|1
+(adv)|comparatively
+relativise|1
+(verb)|relativize|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+relativism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+relativistic|2
+(adj)|scientific theory (related term)
+(adj)|philosophical doctrine|philosophical theory (related term)
+relativistic mass|1
+(noun)|mass (generic term)
+relativity|2
+(noun)|theory of relativity|relativity theory|Einstein's theory of relativity|scientific theory (generic term)
+(noun)|quality (generic term)
+relativity theory|1
+(noun)|relativity|theory of relativity|Einstein's theory of relativity|scientific theory (generic term)
+relativize|1
+(verb)|relativise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+relatum|1
+(noun)|term (generic term)
+relax|8
+(verb)|loosen up|unbend|unwind|decompress|slow down|change state (generic term)|turn (generic term)|tense (antonym)
+(verb)|unbend|loosen (generic term)|loose (generic term)
+(verb)|loosen|loose|weaken (generic term)|stiffen (antonym)
+(verb)|unstrain|unlax|loosen up|unwind|make relaxed|affect (generic term)|strain (antonym)|tense (antonym)
+(verb)|loosen up|act (generic term)|behave (generic term)|do (generic term)
+(verb)|loosen|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|loosen|change (generic term)
+(verb)|slack|slacken|slack up|decrease (generic term)|lessen (generic term)|minify (generic term)
+relaxant|2
+(adj)|depressant (similar term)
+(noun)|drug (generic term)
+relaxation|7
+(noun)|increase (generic term)|increment (generic term)|growth (generic term)
+(noun)|relaxation behavior|exponential decay (generic term)|exponential return (generic term)
+(noun)|easiness|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+(noun)|loosening|slackening|weakening (generic term)
+(noun)|rest|ease|repose|inactivity (generic term)
+(noun)|relaxation method|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+(noun)|liberalization|liberalisation|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+relaxation behavior|1
+(noun)|relaxation|exponential decay (generic term)|exponential return (generic term)
+relaxation method|1
+(noun)|relaxation|mathematical process (generic term)|mathematical operation (generic term)|operation (generic term)
+relaxation time|1
+(noun)|time constant (generic term)
+relaxed|2
+(adj)|degage (similar term)|laid-back (similar term)|mellow (similar term)|unstrained (similar term)|easy (related term)|unagitated (related term)|tense (antonym)
+(adj)|lax (similar term)
+relaxer|1
+(noun)|agent (generic term)
+relaxin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+relaxing|1
+(adj)|restful|reposeful|quiet (similar term)
+relay|6
+(noun)|passage (generic term)|handing over (generic term)
+(noun)|shift (generic term)
+(noun)|team (generic term)
+(noun)|electrical relay|electrical device (generic term)
+(verb)|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|operate (generic term)|control (generic term)
+relay link|1
+(noun)|booster|booster amplifier|booster station|relay station|relay transmitter|amplifier (generic term)
+relay race|1
+(noun)|relays|race (generic term)
+relay station|1
+(noun)|booster|booster amplifier|booster station|relay link|relay transmitter|amplifier (generic term)
+relay transmitter|1
+(noun)|booster|booster amplifier|booster station|relay link|relay station|amplifier (generic term)
+relays|1
+(noun)|relay race|race (generic term)
+relearn|1
+(verb)|learn (generic term)|larn (generic term)|acquire (generic term)
+release|21
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|liberation|freeing|accomplishment (generic term)|achievement (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|handout|press release|announcement (generic term)|promulgation (generic term)
+(noun)|dismissal|dismission|discharge|firing|liberation|sack|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|passing|loss|departure|exit|expiration|going|death (generic term)|decease (generic term)|expiry (generic term)
+(noun)|acquittance|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|button|device (generic term)
+(noun)|outlet|vent|activity (generic term)
+(noun)|spill|spillage|flow (generic term)|stream (generic term)
+(noun)|waiver|discharge|relinquishment (generic term)|relinquishing (generic term)
+(noun)|tone ending|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|let go of|let go|relinquish|hold (antonym)
+(verb)|free|liberate|unloose|unloosen|loose|confine (antonym)
+(verb)|turn|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|discharge|expel|eject
+(verb)|publish|bring out|put out|issue|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|secrete|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+(verb)|free|issue (generic term)|supply (generic term)
+(verb)|relinquish|resign|free|give up|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|unblock|unfreeze|free|issue (generic term)|supply (generic term)|freeze (antonym)|block (antonym)
+released|1
+(adj)|discharged|free (similar term)
+releasing|1
+(adj)|cathartic|emotional (similar term)
+releasing factor|2
+(noun)|releasing hormone|RF|factor (generic term)
+(noun)|releasing hormone|RH|hypothalamic releasing hormone|hypothalamic releasing factor|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+releasing hormone|2
+(noun)|releasing factor|RF|factor (generic term)
+(noun)|RH|releasing factor|hypothalamic releasing hormone|hypothalamic releasing factor|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+relegate|4
+(verb)|pass on|submit|submit (generic term)|subject (generic term)
+(verb)|demote|bump|break|kick downstairs|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|bump off (related term)|promote (antonym)
+(verb)|banish|bar|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|classify|assign (generic term)|attribute (generic term)
+relegating|1
+(noun)|delegating|delegation|relegation|deputation|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+relegation|3
+(noun)|delegating|delegation|relegating|deputation|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+(noun)|banishment (generic term)|proscription (generic term)
+relent|1
+(verb)|yield|soften|stand (antonym)
+relentless|2
+(adj)|grim|inexorable|stern|unappeasable|unforgiving|unrelenting|implacable (similar term)
+(adj)|persistent|unrelenting|continual (similar term)
+relentlessly|1
+(adv)|unrelentingly
+relentlessness|1
+(noun)|inexorability|inexorableness|mercilessness (generic term)|unmercifulness (generic term)
+relevance|1
+(noun)|relevancy|connection (generic term)|connexion (generic term)|connectedness (generic term)|irrelevance (antonym)
+relevancy|1
+(noun)|relevance|connection (generic term)|connexion (generic term)|connectedness (generic term)|irrelevance (antonym)
+relevant|1
+(adj)|applicable (similar term)|at issue (similar term)|in dispute (similar term)|in hand (similar term)|in question (similar term)|under consideration (similar term)|germane (similar term)|related (similar term)|pertinent (similar term)|to the point (similar term)|irrelevant (antonym)
+relevantly|1
+(adv)|irrelevantly (antonym)
+reliability|1
+(noun)|dependability|dependableness|reliableness|responsibility (generic term)|responsibleness (generic term)|unreliableness (antonym)|unreliability (antonym)|undependableness (antonym)|undependability (antonym)
+reliable|3
+(adj)|dependable|certain (similar term)|sure (similar term)|tested (similar term)|time-tested (similar term)|tried (similar term)|tried and true (similar term)|undeviating (similar term)|trustworthy (related term)|trusty (related term)|undependable (antonym)|unreliable (antonym)
+(adj)|authentic|trustworthy (similar term)|trusty (similar term)
+(adj)|dependable|honest|true|trustworthy (similar term)|trusty (similar term)
+reliableness|1
+(noun)|dependability|dependableness|reliability|responsibility (generic term)|responsibleness (generic term)|unreliableness (antonym)|unreliability (antonym)|undependableness (antonym)|undependability (antonym)
+reliably|1
+(adv)|faithfully|dependably|unreliably (antonym)|undependably (antonym)|unfaithfully (antonym)
+reliance|2
+(noun)|trust|certainty (generic term)
+(noun)|dependence (generic term)|dependance (generic term)|dependency (generic term)
+reliant|1
+(adj)|dependent (similar term)
+relic|2
+(noun)|antiquity (generic term)
+(noun)|keepsake|souvenir|token|object (generic term)|physical object (generic term)
+relict|2
+(noun)|organism (generic term)|being (generic term)
+(noun)|geological formation (generic term)|formation (generic term)
+relief|11
+(noun)|alleviation|assuagement|comfort (generic term)
+(noun)|ease|comfort (generic term)|comfortableness (generic term)
+(noun)|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+(noun)|stand-in|substitute|reliever|backup|backup man|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|succor|succour|ministration|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|respite|rest|rest period|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|easing|moderation|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|social welfare (generic term)|welfare (generic term)
+(noun)|easing|easement|alleviation|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|relievo|rilievo|embossment|sculptural relief|sculpture (generic term)
+(noun)|liberation (generic term)|release (generic term)|freeing (generic term)
+relief map|1
+(noun)|contour map|map (generic term)
+relief pitcher|1
+(noun)|reliever|fireman|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+relief printing|1
+(noun)|letterpress|printing (generic term)|printing process (generic term)
+relief valve|1
+(noun)|safety valve|escape valve|escape cock|escape|valve (generic term)|regulator (generic term)
+relieve|11
+(verb)|alleviate|palliate|assuage|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|take over|free (generic term)|discharge (generic term)
+(verb)|exempt|free|enforce (antonym)
+(verb)|still|allay|ease|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)
+(verb)|salvage|salve|save|rescue (generic term)|deliver (generic term)
+(verb)|unbosom|confide (generic term)
+(verb)|lighten|mitigate (generic term)
+(verb)|remedy|treat (generic term)|care for (generic term)
+(verb)|rid (generic term)|free (generic term)|disembarrass (generic term)
+(verb)|take (generic term)
+(verb)|excuse|let off|exempt|absolve (generic term)|justify (generic term)|free (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+relieved|1
+(adj)|alleviated|eased|mitigated (similar term)
+reliever|3
+(noun)|stand-in|substitute|relief|backup|backup man|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|allayer|comforter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|relief pitcher|fireman|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+relievo|1
+(noun)|relief|rilievo|embossment|sculptural relief|sculpture (generic term)
+religion|2
+(noun)|faith|religious belief|belief (generic term)|theological virtue (generic term)|supernatural virtue (generic term)
+(noun)|faith|organized religion|institution (generic term)|establishment (generic term)
+religionism|2
+(noun)|intolerance (generic term)
+(noun)|religiosity|religiousism|pietism|devoutness (generic term)|religiousness (generic term)
+religionist|1
+(noun)|religious person (generic term)
+religiosity|1
+(noun)|religionism|religiousism|pietism|devoutness (generic term)|religiousness (generic term)
+religious|4
+(adj)|spiritual|sacred (similar term)
+(adj)|churchgoing (similar term)|churchlike (similar term)|churchly (similar term)|devout (similar term)|god-fearing (similar term)|pious (similar term)|interfaith (similar term)|pious (related term)|irreligious (antonym)
+(adj)|scrupulous (similar term)
+(noun)|religious person (generic term)
+religious belief|1
+(noun)|religion|faith|belief (generic term)|theological virtue (generic term)|supernatural virtue (generic term)
+religious ceremony|1
+(noun)|religious ritual|ceremony (generic term)
+religious cult|1
+(noun)|cult|cultus|religion (generic term)|faith (generic term)|religious belief (generic term)
+religious doctrine|1
+(noun)|church doctrine|gospel|creed|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+religious festival|1
+(noun)|church festival|festival (generic term)
+religious holiday|1
+(noun)|holy day|holiday (generic term)
+religious leader|1
+(noun)|religious person (generic term)|leader (generic term)
+religious movement|1
+(noun)|movement (generic term)|social movement (generic term)|front (generic term)
+religious music|1
+(noun)|church music|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+religious mystic|1
+(noun)|mystic|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+religious mysticism|1
+(noun)|mysticism|religion (generic term)|faith (generic term)|religious belief (generic term)
+religious offering|1
+(noun)|Oblation|religious ceremony (generic term)|religious ritual (generic term)
+religious order|1
+(noun)|sect|religious sect|religion (generic term)|faith (generic term)|organized religion (generic term)
+religious orientation|1
+(noun)|orientation (generic term)
+religious outcast|1
+(noun)|heretic|misbeliever|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+religious person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|nonreligious person (antonym)
+religious residence|1
+(noun)|cloister|residence (generic term)
+religious right|1
+(noun)|right (generic term)|right wing (generic term)
+religious rite|1
+(noun)|rite|religious ceremony (generic term)|religious ritual (generic term)
+religious ritual|1
+(noun)|religious ceremony|ceremony (generic term)
+religious school|1
+(noun)|school (generic term)
+religious sect|1
+(noun)|sect|religious order|religion (generic term)|faith (generic term)|organized religion (generic term)
+religious service|1
+(noun)|service|divine service|religious ceremony (generic term)|religious ritual (generic term)
+religious society of friends|1
+(noun)|Religious Society of Friends|Society of Friends|Quakers|sect (generic term)|religious sect (generic term)|religious order (generic term)
+religious song|1
+(noun)|religious music (generic term)|church music (generic term)|song (generic term)|vocal (generic term)
+religious text|1
+(noun)|sacred text|sacred writing|religious writing|writing (generic term)|written material (generic term)|piece of writing (generic term)
+religious trance|1
+(noun)|ecstatic state|trance (generic term)
+religious writing|1
+(noun)|sacred text|sacred writing|religious text|writing (generic term)|written material (generic term)|piece of writing (generic term)
+religiousism|1
+(noun)|religiosity|religionism|pietism|devoutness (generic term)|religiousness (generic term)
+religiously|2
+(adv)|sacredly
+(adv)|scrupulously|conscientiously
+religiousness|2
+(noun)|devoutness|piety (generic term)|piousness (generic term)
+(noun)|conscientiousness (generic term)
+reline|1
+(verb)|line (generic term)
+relinquish|5
+(verb)|release|resign|free|give up|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|surrender|yield (generic term)
+(verb)|waive|forgo|foreswear|dispense with
+(verb)|foreswear|renounce|quit|abandon (generic term)|give up (generic term)
+(verb)|let go of|let go|release|hold (antonym)
+relinquished|2
+(adj)|unoccupied (similar term)
+(adj)|surrendered|given (similar term)
+relinquishing|2
+(noun)|relinquishment|renunciation (generic term)|renouncement (generic term)
+(noun)|relinquishment|termination (generic term)|ending (generic term)|conclusion (generic term)
+relinquishment|2
+(noun)|relinquishing|renunciation (generic term)|renouncement (generic term)
+(noun)|relinquishing|termination (generic term)|ending (generic term)|conclusion (generic term)
+reliquary|1
+(noun)|container (generic term)
+relish|4
+(noun)|gusto|zest|zestfulness|enjoyment (generic term)|enthusiasm (generic term)
+(noun)|condiment (generic term)
+(noun)|flavor|flavour|sapidity|savor|savour|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(verb)|enjoy|bask|savor|savour
+relishing|1
+(noun)|tasting|savoring|savouring|degustation|eating (generic term)|feeding (generic term)
+relistening|1
+(noun)|rehearing|listening (generic term)|hearing (generic term)
+relive|1
+(verb)|live over|know (generic term)|experience (generic term)|live (generic term)
+reliving|1
+(noun)|re-experiencing|experience (generic term)
+reload|2
+(verb)|recharge|load (generic term)|charge (generic term)
+(verb)|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+relocatable program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+relocate|2
+(verb)|move (generic term)
+(verb)|move (generic term)|displace (generic term)
+relocated|1
+(adj)|resettled|settled (similar term)
+relocation|2
+(noun)|resettlement|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+(noun)|move|change (generic term)
+reluctance|2
+(noun)|electrical phenomenon (generic term)
+(noun)|hesitancy|hesitation|disinclination|indisposition|unwillingness (generic term)|involuntariness (generic term)
+reluctant|3
+(adj)|loath|loth|unwilling (similar term)
+(adj)|disinclined (similar term)
+(adj)|uneager (similar term)
+reluctivity|1
+(noun)|physical property (generic term)
+rely|1
+(verb)|trust|swear|bank|believe (generic term)|mistrust (antonym)|distrust (antonym)
+rely on|1
+(verb)|depend on
+relyric|1
+(verb)|lyric (generic term)
+rem|2
+(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep (generic term)|slumber (generic term)
+(noun)|REM|radioactivity unit (generic term)
+rem sleep|1
+(noun)|paradoxical sleep|rapid eye movement sleep|REM sleep|rapid eye movement|REM|sleep (generic term)|slumber (generic term)
+remain|4
+(verb)|stay|rest|be (generic term)|change (antonym)
+(verb)|stay|stay on|continue|be (generic term)
+(verb)|be (generic term)
+(verb)|persist|stay
+remain down|1
+(verb)|take the count|lose (generic term)
+remain firm|1
+(verb)|stand|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)|yield (antonym)
+remainder|5
+(noun)|balance|residual|residue|residuum|rest|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|number (generic term)
+(noun)|difference|number (generic term)
+(noun)|end|remnant|oddment|piece of cloth (generic term)|piece of material (generic term)
+(verb)|sell (generic term)
+remaining|1
+(adj)|leftover|left over|left|odd|unexpended|unexhausted (similar term)
+remains|2
+(noun)|object (generic term)|physical object (generic term)
+(noun)|cadaver|corpse|stiff|clay|body (generic term)|dead body (generic term)
+remake|2
+(noun)|remaking|creation (generic term)
+(verb)|refashion|redo|make over|produce (generic term)|make (generic term)|create (generic term)
+remaking|1
+(noun)|remake|creation (generic term)
+remand|3
+(noun)|return (generic term)
+(verb)|remit|send back|challenge (generic term)
+(verb)|imprison|incarcerate|lag|immure|put behind bars|jail|jug|gaol|put away|confine (generic term)|detain (generic term)
+remark|4
+(noun)|comment|statement (generic term)
+(noun)|notice (generic term)|observation (generic term)|observance (generic term)
+(verb)|note|observe|mention|state (generic term)|say (generic term)|tell (generic term)
+(verb)|comment|notice|point out|note (generic term)|observe (generic term)|mention (generic term)|remark (generic term)
+remarkable|2
+(adj)|singular|extraordinary (similar term)
+(adj)|noteworthy|significant (similar term)|important (similar term)
+remarkably|2
+(adv)|unusually|outstandingly|unco|unremarkably (antonym)
+(adv)|signally|unmistakably
+remarriage|1
+(noun)|marriage (generic term)|wedding (generic term)|marriage ceremony (generic term)
+remarry|1
+(verb)|marry (generic term)|get married (generic term)|wed (generic term)|conjoin (generic term)|hook up with (generic term)|get hitched with (generic term)|espouse (generic term)
+rematch|1
+(noun)|replay|repeat (generic term)|repetition (generic term)
+rembrandt|1
+(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master (generic term)
+rembrandt harmensz van rijn|1
+(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master (generic term)
+rembrandt van rijn|1
+(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master (generic term)
+rembrandt van ryn|1
+(noun)|Rembrandt|Rembrandt van Rijn|Rembrandt van Ryn|Rembrandt Harmensz van Rijn|old master (generic term)
+rembrandtesque|1
+(adj)|Rembrandtesque|old master (related term)
+remediable|1
+(adj)|irremediable (antonym)
+remedial|2
+(adj)|bettering (similar term)
+(adj)|curative|healing|alterative|sanative|therapeutic|healthful (similar term)
+remediate|1
+(verb)|rectify|remedy|repair|amend|correct (generic term)|rectify (generic term)|right (generic term)
+remediation|1
+(noun)|redress|remedy|correction (generic term)|rectification (generic term)
+remedy|4
+(noun)|redress|remediation|correction (generic term)|rectification (generic term)
+(noun)|curative|cure|therapeutic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(verb)|rectify|remediate|repair|amend|correct (generic term)|rectify (generic term)|right (generic term)
+(verb)|relieve|treat (generic term)|care for (generic term)
+remember|8
+(verb)|retrieve|recall|call back|call up|recollect|think|think back (related term)|forget (antonym)
+(verb)|think of|forget (antonym)
+(verb)|think back
+(verb)|bequeath (generic term)|will (generic term)|leave (generic term)
+(verb)|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|commend|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+(verb)|commemorate
+remember oneself|1
+(verb)|behave (generic term)|comport (generic term)
+remembering|1
+(noun)|memory|basic cognitive process (generic term)
+remembrance|2
+(noun)|recollection|anamnesis|memory (generic term)|retention (generic term)|retentiveness (generic term)|retentivity (generic term)
+(noun)|memorial|commemoration|recognition (generic term)|credit (generic term)
+remembrance day|1
+(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday (generic term)
+remembrance sunday|1
+(noun)|Remembrance Day|Remembrance Sunday|Poppy Day|holiday (generic term)
+remicade|1
+(noun)|infliximab|Remicade|anti-TNF compound (generic term)
+remilegia|1
+(noun)|Remilegia|genus Remilegia|fish genus (generic term)
+remilegia australis|1
+(noun)|whale sucker|whalesucker|Remilegia australis|remora (generic term)|suckerfish (generic term)|sucking fish (generic term)
+remilitarisation|1
+(noun)|remilitarization|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+remilitarise|1
+(verb)|remilitarize|militarize (generic term)|militarise (generic term)
+remilitarization|1
+(noun)|remilitarisation|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+remilitarize|1
+(verb)|remilitarise|militarize (generic term)|militarise (generic term)
+remind|1
+(verb)|prompt|cue|inform (generic term)
+reminder|3
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|experience (generic term)
+(noun)|admonisher|monitor|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+remindful|1
+(adj)|evocative|redolent|reminiscent|mindful (similar term)|aware (similar term)
+reminisce|1
+(verb)|remember (generic term)|think back (generic term)
+reminiscence|2
+(noun)|memory (generic term)
+(noun)|recall|recollection|memory (generic term)|remembering (generic term)
+reminiscent|1
+(adj)|evocative|redolent|remindful|mindful (similar term)|aware (similar term)
+remise|3
+(noun)|hackney (generic term)|hackney carriage (generic term)|hackney coach (generic term)
+(noun)|coach house|carriage house|outbuilding (generic term)
+(noun)|stab (generic term)|thrust (generic term)|knife thrust (generic term)
+remiss|1
+(adj)|derelict|delinquent|neglectful|negligent (similar term)
+remission|4
+(noun)|remittal|subsidence|suspension (generic term)|respite (generic term)|reprieve (generic term)|hiatus (generic term)|abatement (generic term)
+(noun)|remittance|remittal|remitment|payment (generic term)
+(noun)|remitment|remit|referral (generic term)
+(noun)|absolution|remittal|remission of sin|redemption (generic term)|salvation (generic term)
+remission of sin|1
+(noun)|absolution|remission|remittal|redemption (generic term)|salvation (generic term)
+remissness|1
+(noun)|laxness|laxity|slackness|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+remit|8
+(noun)|remission|remitment|referral (generic term)
+(verb)|pay (generic term)
+(verb)|postpone|prorogue|hold over|put over|table|shelve|set back|defer|put off|delay (generic term)
+(verb)|cancel (generic term)|strike down (generic term)
+(verb)|remand|send back|challenge (generic term)
+(verb)|forgive (generic term)
+(verb)|slacken|loosen (generic term)|loose (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+remitment|2
+(noun)|remittance|remittal|remission|payment (generic term)
+(noun)|remission|remit|referral (generic term)
+remittal|3
+(noun)|remittance|remission|remitment|payment (generic term)
+(noun)|remission|subsidence|suspension (generic term)|respite (generic term)|reprieve (generic term)|hiatus (generic term)|abatement (generic term)
+(noun)|absolution|remission|remission of sin|redemption (generic term)|salvation (generic term)
+remittance|1
+(noun)|remittal|remission|remitment|payment (generic term)
+remittance man|1
+(noun)|exile (generic term)|expatriate (generic term)
+remittent|1
+(adj)|decreased (similar term)|reduced (similar term)
+remnant|2
+(noun)|leftover|remainder (generic term)|balance (generic term)|residual (generic term)|residue (generic term)|residuum (generic term)|rest (generic term)
+(noun)|end|remainder|oddment|piece of cloth (generic term)|piece of material (generic term)
+remodel|2
+(verb)|reconstruct|redo|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|recast|reforge|remake (generic term)|refashion (generic term)|redo (generic term)|make over (generic term)
+remold|3
+(verb)|recast|remould|cast (generic term)|mold (generic term)|mould (generic term)
+(verb)|reshape|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|retread|remould|regenerate (generic term)|renew (generic term)
+remonstrance|1
+(noun)|expostulation|remonstration|objection|communication (generic term)|communicating (generic term)
+remonstrate|3
+(verb)|object (generic term)
+(verb)|point out|inform (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+remonstration|1
+(noun)|expostulation|remonstrance|objection|communication (generic term)|communicating (generic term)
+remora|1
+(noun)|suckerfish|sucking fish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+remorse|1
+(noun)|compunction|self-reproach|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+remorseful|1
+(adj)|contrite|rueful|ruthful|penitent (similar term)|repentant (similar term)
+remorsefully|1
+(adv)|ruefully|contritely
+remorseless|1
+(adj)|pitiless|ruthless|unpitying|merciless (similar term)|unmerciful (similar term)
+remorselessly|1
+(adv)|mercilessly|pitilessly|unmercifully
+remote|6
+(adj)|distant|far (similar term)
+(adj)|outside|unlikely (similar term)
+(adj)|distant|removed|far (similar term)
+(adj)|outback|inaccessible (similar term)|unaccessible (similar term)
+(adj)|distant (similar term)
+(noun)|remote control|device (generic term)
+remote-access data processing|1
+(noun)|distributed data processing|teleprocessing|data processing (generic term)
+remote-control bomb|1
+(noun)|bomb (generic term)
+remote-controlled|1
+(adj)|unmanned|pilotless (similar term)|manned (antonym)
+remote control|1
+(noun)|remote|device (generic term)
+remote station|1
+(noun)|remote terminal|link-attached terminal|link-attached station|terminal (generic term)
+remote terminal|1
+(noun)|link-attached terminal|remote station|link-attached station|terminal (generic term)
+remoteness|2
+(noun)|farness|farawayness|distance (generic term)|nearness (antonym)
+(noun)|aloofness|standoffishness|withdrawnness|unsociability (generic term)|unsociableness (generic term)
+remotion|1
+(noun)|removal|separation (generic term)
+remoulade sauce|1
+(noun)|sauce (generic term)
+remould|2
+(verb)|recast|remold|cast (generic term)|mold (generic term)|mould (generic term)
+(verb)|retread|remold|regenerate (generic term)|renew (generic term)
+remount|4
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+(verb)|hop on (generic term)|mount (generic term)|mount up (generic term)|get on (generic term)|jump on (generic term)|climb on (generic term)|bestride (generic term)
+(verb)|mount (generic term)
+(verb)|horse (generic term)
+removable|2
+(adj)|dismissible (similar term)|extractable (similar term)|extractible (similar term)|irremovable (antonym)
+(adj)|obliterable|eradicable (similar term)
+removable disk|1
+(noun)|hard disc (generic term)|hard disk (generic term)|fixed disk (generic term)
+removal|2
+(noun)|remotion|separation (generic term)
+(noun)|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+removal company|1
+(noun)|mover|public mover|moving company|removal firm|company (generic term)
+removal firm|1
+(noun)|mover|public mover|moving company|removal company|company (generic term)
+remove|8
+(noun)|distance (generic term)
+(verb)|take|take away|withdraw|take off (related term)
+(verb)|get rid of
+(verb)|take out|move out
+(verb)|transfer|transfer (generic term)|shift (generic term)
+(verb)|absent|disappear (generic term)|vanish (generic term)|go away (generic term)
+(verb)|murder|slay|hit|dispatch|bump off|off|polish off|kill (generic term)
+(verb)|take away
+removed|3
+(adj)|abstracted|separate (similar term)
+(adj)|distant (similar term)
+(adj)|distant|remote|far (similar term)
+remover|2
+(noun)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+(noun)|mover (generic term)
+remuda|1
+(noun)|herd (generic term)
+remunerate|1
+(verb)|compensate|recompense|pay (generic term)
+remunerated|1
+(adj)|compensated|salaried|stipendiary|paid (similar term)
+remuneration|2
+(noun)|wage|pay|earnings|salary|regular payment (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+remunerative|2
+(adj)|compensable|paying|salaried|stipendiary|paid (similar term)
+(adj)|lucrative|moneymaking|profitable (similar term)
+remunerator|1
+(noun)|payer|money handler (generic term)|money dealer (generic term)
+remus|1
+(noun)|Remus|mythical being (generic term)
+renaissance|2
+(noun)|Renaissance|Renascence|historic period (generic term)|age (generic term)
+(noun)|rebirth|Renaissance|Renascence|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+renaissance man|2
+(noun)|Renaissance man|generalist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)|specialist (antonym)
+(noun)|Renaissance man|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+renal|1
+(adj)|nephritic|excretory organ|urinary organ (related term)
+renal artery|1
+(noun)|arteria renalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+renal calculus|1
+(noun)|kidney stone|urinary calculus|nephrolith|calculus (generic term)|concretion (generic term)
+renal colic|1
+(noun)|pain (generic term)|hurting (generic term)
+renal corpuscle|1
+(noun)|malpighian body|malpighian corpuscle|capsule (generic term)
+renal cortex|1
+(noun)|cortex (generic term)
+renal disorder|1
+(noun)|kidney disease|nephropathy|nephrosis|uropathy (generic term)
+renal failure|1
+(noun)|kidney failure|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)|failure (generic term)
+renal insufficiency|1
+(noun)|kidney disease (generic term)|renal disorder (generic term)|nephropathy (generic term)|nephrosis (generic term)
+renal lithiasis|1
+(noun)|nephrolithiasis|lithiasis (generic term)
+renal pelvis|1
+(noun)|pelvis|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+renal vein|1
+(noun)|vena renalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+rename|2
+(verb)|name (generic term)|call (generic term)
+(verb)|name (generic term)|nominate (generic term)|make (generic term)
+renascence|3
+(noun)|Renaissance|Renascence|historic period (generic term)|age (generic term)
+(noun)|reincarnation|rebirth|birth (generic term)|nativity (generic term)|nascency (generic term)|nascence (generic term)
+(noun)|rebirth|Renaissance|Renascence|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+renascent|1
+(adj)|resurgent|revived (similar term)
+renata tebaldi|1
+(noun)|Tebaldi|Renata Tebaldi|soprano (generic term)
+rend|1
+(verb)|rip|rive|pull|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+render|14
+(noun)|stucco (generic term)
+(verb)|make (generic term)|get (generic term)
+(verb)|supply|provide|furnish|give (generic term)
+(verb)|interpret|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|yield|return|give|generate|produce (generic term)|make (generic term)|create (generic term)
+(verb)|deliver|return|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|submit|give (generic term)|gift (generic term)|present (generic term)
+(verb)|return|give (generic term)
+(verb)|hand over|fork over|fork out|fork up|turn in|get in|deliver|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|picture|depict|show|represent (generic term)|interpret (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|give|communicate (generic term)|intercommunicate (generic term)
+(verb)|translate|interpret|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|try|melt (generic term)|run (generic term)|melt down (generic term)
+render-set|1
+(verb)|plaster (generic term)|daub (generic term)
+rendering|7
+(noun)|rendition|performance (generic term)|public presentation (generic term)
+(noun)|interpretation|interpreting|rendition|explanation (generic term)
+(noun)|rendition|interpretation|performance (generic term)
+(noun)|translation|interlingual rendition|version|written record (generic term)|written account (generic term)
+(noun)|coating (generic term)|coat (generic term)
+(noun)|drawing (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+rendezvous|4
+(noun)|meeting (generic term)|coming together (generic term)
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|tryst|date (generic term)|appointment (generic term)|engagement (generic term)
+(verb)|meet (generic term)|get together (generic term)
+rending|1
+(adj)|ripping|splitting|cacophonous (similar term)|cacophonic (similar term)
+rendition|3
+(noun)|rendering|performance (generic term)|public presentation (generic term)
+(noun)|interpretation|interpreting|rendering|explanation (generic term)
+(noun)|rendering|interpretation|performance (generic term)
+rene-robert cavelier|1
+(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer (generic term)|adventurer (generic term)
+rene antoine ferchault de reaumur|1
+(noun)|Reaumur|Rene Antoine Ferchault de Reaumur|physicist (generic term)
+rene descartes|1
+(noun)|Descartes|Rene Descartes|mathematician (generic term)|philosopher (generic term)
+rene magritte|1
+(noun)|Magritte|Rene Magritte|painter (generic term)
+renegade|4
+(adj)|recreant|disloyal (similar term)
+(noun)|deserter (generic term)|defector (generic term)
+(noun)|deserter|apostate|turncoat|recreant|ratter|quitter (generic term)
+(verb)|rebel|protest (generic term)|resist (generic term)|dissent (generic term)
+renegade state|1
+(noun)|rogue state|rogue nation|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+renege|2
+(noun)|revoke|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|renege on|renegue on|go back on|revoke (generic term)|annul (generic term)|lift (generic term)|countermand (generic term)|reverse (generic term)|repeal (generic term)|overturn (generic term)|rescind (generic term)|vacate (generic term)
+renege on|1
+(verb)|renege|renegue on|go back on|revoke (generic term)|annul (generic term)|lift (generic term)|countermand (generic term)|reverse (generic term)|repeal (generic term)|overturn (generic term)|rescind (generic term)|vacate (generic term)
+renegociate|2
+(verb)|renegotiate|negociate (generic term)
+(verb)|renegotiate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+renegotiate|2
+(verb)|renegociate|negociate (generic term)
+(verb)|renegociate|negociate (generic term)|negotiate (generic term)|talk terms (generic term)
+renegue on|1
+(verb)|renege|renege on|go back on|revoke (generic term)|annul (generic term)|lift (generic term)|countermand (generic term)|reverse (generic term)|repeal (generic term)|overturn (generic term)|rescind (generic term)|vacate (generic term)
+renew|2
+(verb)|regenerate|re-create (generic term)
+(verb)|reincarnate|regenerate (generic term)|restore (generic term)|rejuvenate (generic term)
+renewable|2
+(adj)|unrenewable (antonym)
+(adj)|inexhaustible (similar term)
+renewable resource|1
+(noun)|natural resource (generic term)|natural resources (generic term)
+renewal|3
+(noun)|reclamation|rehabilitation|restoration (generic term)
+(noun)|repetition (generic term)|repeating (generic term)
+(noun)|refilling|replenishment|replacement|filling (generic term)
+renewed|1
+(adj)|revived (similar term)
+renewing|1
+(adj)|restorative|reviving|revitalizing|revitalising|invigorating (similar term)
+reniform|1
+(adj)|kidney-shaped|simple (similar term)|unsubdivided (similar term)
+reniform leaf|1
+(noun)|simple leaf (generic term)
+renin|1
+(noun)|protease (generic term)|peptidase (generic term)|proteinase (generic term)|proteolytic enzyme (generic term)
+rennet|1
+(noun)|organic compound (generic term)
+rennin|1
+(noun)|chymosin|enzyme (generic term)|coagulase (generic term)
+reno|1
+(noun)|Reno|city (generic term)|metropolis (generic term)|urban center (generic term)
+renoir|1
+(noun)|Renoir|Pierre Auguste Renoir|old master (generic term)
+renormalise|1
+(verb)|normalize|normalise|renormalize|change (generic term)|alter (generic term)|modify (generic term)
+renormalize|1
+(verb)|normalize|normalise|renormalise|change (generic term)|alter (generic term)|modify (generic term)
+renounce|4
+(verb)|abdicate|vacate (generic term)|resign (generic term)|renounce (generic term)|give up (generic term)
+(verb)|vacate|resign|give up|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|foreswear|quit|relinquish|abandon (generic term)|give up (generic term)
+(verb)|repudiate|reject (generic term)
+renouncement|1
+(noun)|renunciation|resignation (generic term)
+renovate|3
+(verb)|restitute|regenerate (generic term)|renew (generic term)
+(verb)|refurbish|freshen up|regenerate (generic term)|renew (generic term)
+(verb)|animate|recreate|reanimate|revive|repair|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+renovation|2
+(noun)|redevelopment|overhaul|improvement (generic term)
+(noun)|restoration|refurbishment|improvement (generic term)|melioration (generic term)
+renovator|1
+(noun)|refinisher|restorer|preserver|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+renown|1
+(noun)|fame|celebrity|honor (generic term)|honour (generic term)|laurels (generic term)|infamy (antonym)
+renowned|1
+(adj)|celebrated|famed|far-famed|famous|illustrious|notable|noted|known (similar term)
+rensselaerite|1
+(noun)|talc (generic term)|talcum (generic term)
+rent|8
+(noun)|annuity in advance (generic term)
+(noun)|rip|snag|split|tear|opening (generic term)|gap (generic term)
+(noun)|economic rent|return (generic term)|issue (generic term)|take (generic term)|takings (generic term)|proceeds (generic term)|yield (generic term)|payoff (generic term)
+(noun)|rip|split|tear (generic term)
+(verb)|lease|contract (generic term)|undertake (generic term)
+(verb)|lease|let|give (generic term)|rent out (related term)
+(verb)|lease|hire|charter|engage|take|get (generic term)|acquire (generic term)
+(verb)|hire|charter|lease|contract (generic term)|undertake (generic term)
+rent-a-car|1
+(noun)|car rental|hire car|self-drive|u-drive|you-drive|lease (generic term)|rental (generic term)|letting (generic term)
+rent-free|1
+(adj)|unpaid (similar term)
+rent-rebate|1
+(noun)|rebate (generic term)|discount (generic term)
+rent-roll|1
+(noun)|register (generic term)|registry (generic term)
+rent collector|1
+(noun)|collector (generic term)|gatherer (generic term)|accumulator (generic term)
+rent out|1
+(verb)|hire out|farm out|lend (generic term)|loan (generic term)
+rentable|1
+(adj)|unrentable (antonym)
+rental|4
+(adj)|property|belongings|holding|material possession (related term)
+(adj)|annuity in advance (related term)
+(noun)|lease|letting|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|renting|transaction (generic term)|dealing (generic term)|dealings (generic term)
+rental collection|1
+(noun)|library (generic term)
+rental income|1
+(noun)|income (generic term)
+rente|1
+(noun)|annuity|regular payment (generic term)
+renter|2
+(noun)|tenant|payer (generic term)|remunerator (generic term)
+(noun)|owner (generic term)|proprietor (generic term)
+rentier|1
+(noun)|investor (generic term)
+renting|1
+(noun)|rental|transaction (generic term)|dealing (generic term)|dealings (generic term)
+renunciant|1
+(adj)|renunciative|self-abnegating|self-denying|nonindulgent (similar term)|strict (similar term)
+renunciation|4
+(noun)|repudiation|rejection (generic term)
+(noun)|apostasy|defection|rejection (generic term)
+(noun)|renouncement|resignation (generic term)
+(noun)|forgoing|forswearing|rejection (generic term)
+renunciative|1
+(adj)|renunciant|self-abnegating|self-denying|nonindulgent (similar term)|strict (similar term)
+reopen|1
+(verb)|open (generic term)|open up (generic term)
+reorder|3
+(noun)|order (generic term)|purchase order (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+(verb)|order (generic term)
+reordering|1
+(noun)|rearrangement (generic term)
+reorganisation|1
+(noun)|reorganization|shake-up|shakeup|organization (generic term)|organisation (generic term)
+reorganise|2
+(verb)|reorganize|regroup|form (generic term)|organize (generic term)|organise (generic term)
+(verb)|reorganize|shake up|organize (generic term)|organise (generic term)
+reorganised|1
+(adj)|reorganized|organized (similar term)
+reorganization|2
+(noun)|reorganisation|shake-up|shakeup|organization (generic term)|organisation (generic term)
+(noun)|revision (generic term)|alteration (generic term)
+reorganize|2
+(verb)|reorganise|shake up|organize (generic term)|organise (generic term)
+(verb)|reorganise|regroup|form (generic term)|organize (generic term)|organise (generic term)
+reorganized|1
+(adj)|reorganised|organized (similar term)
+reorient|3
+(verb)|reorientate|orient (generic term)|orientate (generic term)
+(verb)|turn (generic term)
+(verb)|change (generic term)
+reorientate|1
+(verb)|reorient|orient (generic term)|orientate (generic term)
+reorientation|2
+(noun)|orientation (generic term)
+(noun)|change of direction|change (generic term)
+reoviridae|1
+(noun)|Reoviridae|arbovirus (generic term)|arborvirus (generic term)
+reovirus|1
+(noun)|animal virus (generic term)
+rep|2
+(noun)|congressman (generic term)|congresswoman (generic term)|representative (generic term)
+(noun)|repp|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+repaint|1
+(verb)|paint (generic term)
+repair|8
+(noun)|fix|fixing|fixture|mend|mending|reparation|improvement (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|haunt|hangout|resort|stamping ground|area (generic term)|country (generic term)
+(verb)|mend|fix|bushel|doctor|furbish up|restore|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+(verb)|compensate|recompense|indemnify|pay (generic term)
+(verb)|resort|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|rectify|remediate|remedy|amend|correct (generic term)|rectify (generic term)|right (generic term)
+(verb)|animate|recreate|reanimate|revive|renovate|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+repair shed|1
+(noun)|airdock|hangar|structure (generic term)|construction (generic term)
+repair shop|1
+(noun)|fix-it shop|shop (generic term)|store (generic term)
+repairer|1
+(noun)|mender|fixer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+repairman|1
+(noun)|maintenance man|service man|mender (generic term)|repairer (generic term)|fixer (generic term)
+repand|1
+(adj)|smooth (similar term)
+reparable|1
+(adj)|rectifiable|maintainable (similar term)|irreparable (antonym)
+reparation|3
+(noun)|compensation (generic term)
+(noun)|repair|fix|fixing|fixture|mend|mending|improvement (generic term)
+(noun)|amends|expiation (generic term)|atonement (generic term)|propitiation (generic term)
+repartee|1
+(noun)|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+repast|1
+(noun)|meal|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+repatriate|3
+(noun)|citizen (generic term)
+(verb)|extradite (generic term)|deliver (generic term)|deport (generic term)
+(verb)|admit (generic term)|allow in (generic term)|let in (generic term)|intromit (generic term)|expatriate (antonym)
+repatriation|1
+(noun)|return (generic term)|homecoming (generic term)
+repay|4
+(verb)|refund|return|give back|pay (generic term)
+(verb)|requite|give (generic term)
+(verb)|reward|pay back|act (generic term)|move (generic term)
+(verb)|retort|come back|return|riposte|rejoin|answer (generic term)|reply (generic term)|respond (generic term)
+repayable|1
+(adj)|due (similar term)|owed (similar term)
+repayment|2
+(noun)|refund|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+(noun)|quittance|payment (generic term)
+repayment rate|1
+(noun)|payment rate|rate of payment|installment rate|rate (generic term)|charge per unit (generic term)
+repeal|2
+(noun)|abrogation|annulment|cancellation (generic term)
+(verb)|revoke|annul|lift|countermand|reverse|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+repeat|7
+(noun)|repetition|periodic event (generic term)|recurrent event (generic term)
+(verb)|reiterate|ingeminate|iterate|restate|retell|tell (generic term)
+(verb)|duplicate|reduplicate|double|replicate|reproduce (generic term)
+(verb)|recur|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|echo|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|take over|act (generic term)|move (generic term)
+(verb)|reprise|reprize|recapitulate|play (generic term)|spiel (generic term)
+repeatable|1
+(adj)|quotable|unquotable (antonym)|unrepeatable (antonym)
+repeated|1
+(adj)|perennial|recurrent|continual (similar term)
+repeater|4
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|recidivist|habitual criminal|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|repeating firearm|firearm (generic term)|piece (generic term)|small-arm (generic term)
+(noun)|electronic device (generic term)
+repeating|1
+(noun)|repetition|continuance (generic term)|continuation (generic term)
+repeating decimal|1
+(noun)|circulating decimal|recurring decimal|decimal fraction (generic term)|decimal (generic term)
+repeating firearm|1
+(noun)|repeater|firearm (generic term)|piece (generic term)|small-arm (generic term)
+repechage|1
+(noun)|race (generic term)
+repel|5
+(verb)|drive|repulse|force back|push back|beat back|push (generic term)|force (generic term)|attract (antonym)
+(verb)|repulse|displease (generic term)|attract (antonym)
+(verb)|repulse|fight off|rebuff|drive back|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+(verb)|rebuff|snub|reject (generic term)|spurn (generic term)|freeze off (generic term)|scorn (generic term)|pooh-pooh (generic term)|disdain (generic term)|turn down (generic term)
+(verb)|disgust|gross out|revolt|stimulate (generic term)|excite (generic term)|stir (generic term)
+repellant|4
+(adj)|rebarbative|repellent|unpleasant (similar term)
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+(noun)|repellent|compound (generic term)|chemical compound (generic term)
+(noun)|repellent|power (generic term)|powerfulness (generic term)
+repellent|5
+(adj)|rebarbative|repellant|unpleasant (similar term)
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellant|repelling|revolting|skanky|wicked|yucky|offensive (similar term)
+(adj)|resistant|nonabsorbent (similar term)|nonabsorptive (similar term)
+(noun)|repellant|compound (generic term)|chemical compound (generic term)
+(noun)|repellant|power (generic term)|powerfulness (generic term)
+repellently|1
+(adv)|repellingly
+repelling|1
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|revolting|skanky|wicked|yucky|offensive (similar term)
+repellingly|1
+(adv)|repellently
+repent|2
+(verb)|atone
+(verb)|regret|rue|feel (generic term)|experience (generic term)
+repentance|1
+(noun)|penitence|penance|compunction (generic term)|remorse (generic term)|self-reproach (generic term)
+repentant|1
+(adj)|penitent|contrite (similar term)|remorseful (similar term)|rueful (similar term)|ruthful (similar term)|penitential (similar term)|ashamed (related term)|regretful (related term)|sorry (related term)|bad (related term)|unrepentant (antonym)|impenitent (antonym)
+repentantly|1
+(adv)|penitently|penitentially|unrepentantly (antonym)|impenitently (antonym)
+repercuss|1
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+repercussion|2
+(noun)|reverberation|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|recoil|rebound|backlash|movement (generic term)|motion (generic term)
+repertoire|1
+(noun)|repertory|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+repertory|2
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(noun)|repertoire|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+repertory company|1
+(noun)|stock company|theater company (generic term)
+repetition|3
+(noun)|repeat|periodic event (generic term)|recurrent event (generic term)
+(noun)|repeating|continuance (generic term)|continuation (generic term)
+(noun)|rhetorical device (generic term)
+repetitious|1
+(adj)|repetitive|iterative (similar term)|reiterative (similar term)|nonrepetitive (antonym)
+repetitiousness|1
+(noun)|repetitiveness|verboseness (generic term)|verbosity (generic term)
+repetitive|2
+(adj)|insistent|continual (similar term)
+(adj)|repetitious|iterative (similar term)|reiterative (similar term)|nonrepetitive (antonym)
+repetitiveness|1
+(noun)|repetitiousness|verboseness (generic term)|verbosity (generic term)
+rephrase|1
+(verb)|paraphrase|reword|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+rephrasing|1
+(noun)|rewording|recasting|rewriting (generic term)|revising (generic term)
+repine|1
+(verb)|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+repining|1
+(adj)|complaining (similar term)|complaintive (similar term)
+replace|4
+(verb)|regenerate (generic term)|renew (generic term)
+(verb)|supplant|supersede|supervene upon|supercede|succeed (generic term)|come after (generic term)|follow (generic term)
+(verb)|substitute|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|put back|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+replaceability|1
+(noun)|substitutability|commutability|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+replaceable|1
+(adj)|exchangeable (similar term)|interchangeable (similar term)|similar (similar term)|standardized (similar term)|standardised (similar term)|expendable (related term)|irreplaceable (antonym)
+replacement|6
+(noun)|substitution|permutation|transposition|switch|variation (generic term)|fluctuation (generic term)
+(noun)|replacing|substitution (generic term)|exchange (generic term)|commutation (generic term)
+(noun)|surrogate|alternate|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+(noun)|substitute|equivalent (generic term)
+(noun)|refilling|replenishment|renewal|filling (generic term)
+(noun)|successor|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+replacement cost|1
+(noun)|cost (generic term)
+replacing|1
+(noun)|replacement|substitution (generic term)|exchange (generic term)|commutation (generic term)
+replant|1
+(verb)|plant (generic term)|set (generic term)
+replay|6
+(noun)|rematch|repeat (generic term)|repetition (generic term)
+(noun)|action replay|reproduction (generic term)|replication (generic term)
+(verb)|play back|reproduce (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|meet (generic term)|encounter (generic term)|play (generic term)|take on (generic term)
+(verb)|play (generic term)
+replenish|1
+(verb)|refill|fill again|fill (generic term)|fill up (generic term)|make full (generic term)
+replenishment|1
+(noun)|refilling|replacement|renewal|filling (generic term)
+replete|3
+(adj)|full|nourished (similar term)
+(adj)|instinct|full (similar term)
+(verb)|satiate|sate|fill|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+repletion|2
+(noun)|satiety|satiation|fullness (generic term)
+(noun)|surfeit|eating (generic term)|feeding (generic term)
+replica|1
+(noun)|replication|reproduction|copy (generic term)
+replicate|3
+(verb)|retroflex|bend (generic term)|flex (generic term)
+(verb)|copy|duplicate (generic term)|reduplicate (generic term)|double (generic term)|repeat (generic term)|replicate (generic term)
+(verb)|duplicate|reduplicate|double|repeat|reproduce (generic term)
+replication|7
+(noun)|reproduction|copying (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|rejoinder|retort|return|riposte|comeback|counter|reply (generic term)|response (generic term)
+(noun)|pleading (generic term)
+(noun)|echo|reverberation|sound reflection|reflection (generic term)|reflexion (generic term)|reflectivity (generic term)
+(noun)|replica|reproduction|copy (generic term)
+(noun)|repetition (generic term)|repeating (generic term)
+reply|3
+(noun)|answer|response|statement (generic term)
+(noun)|response|speech act (generic term)
+(verb)|answer|respond|state (generic term)|say (generic term)|tell (generic term)
+reply-paid|1
+(adj)|paid (similar term)
+repoint|1
+(verb)|point|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+report|12
+(noun)|study|written report|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|news report|story|account|write up|news (generic term)
+(noun)|account|informing (generic term)|making known (generic term)
+(noun)|noise (generic term)
+(noun)|report card|information (generic term)|info (generic term)
+(noun)|composition|paper|theme|essay (generic term)
+(noun)|reputation|estimate (generic term)|estimation (generic term)
+(verb)|describe|account|inform (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|inform (generic term)
+(verb)|cover|inform (generic term)
+(verb)|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+report card|1
+(noun)|report|information (generic term)|info (generic term)
+report out|1
+(verb)|return (generic term)
+reportable|2
+(adj)|unreportable (antonym)
+(adj)|reported (similar term)
+reportage|1
+(noun)|coverage|reporting|news (generic term)
+reported|1
+(adj)|according (similar term)|reportable (similar term)|rumored (similar term)|unreported (antonym)
+reporter|1
+(noun)|newsman|newsperson|communicator (generic term)
+reporting|1
+(noun)|coverage|reportage|news (generic term)
+reporting weight|1
+(noun)|body weight (generic term)
+repose|9
+(noun)|rest|ease|relaxation|inactivity (generic term)
+(noun)|peace|peacefulness|peace of mind|serenity|heartsease|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+(noun)|quiet|placidity|serenity|tranquillity|tranquility|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(verb)|put (generic term)|assign (generic term)
+(verb)|rest|reside|inhere in (generic term)|attach to (generic term)
+(verb)|lie (generic term)
+(verb)|recumb|recline|lie (generic term)
+(verb)|lay|put down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|repose on (related term)|put (related term)|lay over (related term)|lay away (related term)|lay aside (related term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+repose on|1
+(verb)|rest on|build on|build upon|depend on (generic term)|devolve on (generic term)|depend upon (generic term)|ride (generic term)|turn on (generic term)|hinge on (generic term)|hinge upon (generic term)
+reposeful|1
+(adj)|relaxing|restful|quiet (similar term)
+reposit|1
+(verb)|store (generic term)
+repositing|1
+(noun)|reposition|storage|warehousing|deposit (generic term)|deposition (generic term)
+reposition|3
+(noun)|repositing|storage|warehousing|deposit (generic term)|deposition (generic term)
+(verb)|shift|dislodge|move (generic term)|displace (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+repositioning|1
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+repository|3
+(noun)|depository|deposit|depositary|facility (generic term)|installation (generic term)
+(noun)|secretary|confidant (generic term)|intimate (generic term)
+(noun)|monument|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+repossess|2
+(verb)|reclaim|get (generic term)|acquire (generic term)
+(verb)|take back|take (generic term)
+repossession|1
+(noun)|recovery (generic term)|retrieval (generic term)
+repot|1
+(verb)|pot (generic term)
+repp|1
+(noun)|rep|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+reprehend|1
+(verb)|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+reprehensibility|1
+(noun)|evil (generic term)|evilness (generic term)
+reprehensible|1
+(adj)|condemnable|criminal|deplorable|vicious|wrong (similar term)
+reprehensibly|1
+(adv)|culpably
+reprehension|1
+(noun)|rebuke|reproof|reproval|reprimand|criticism (generic term)|unfavorable judgment (generic term)
+reprehensively|1
+(adv)|criminally
+represent|15
+(verb)|stand for|correspond|equal (generic term)|be (generic term)
+(verb)|typify|symbolize|symbolise|stand for|mean (generic term)|intend (generic term)
+(verb)|be (generic term)
+(verb)|serve (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|exemplify|embody (generic term)|be (generic term)|personify (generic term)
+(verb)|constitute|make up|comprise|be
+(verb)|defend|prosecute (antonym)
+(verb)|interpret|re-create (generic term)
+(verb)|act|play|re-create (generic term)
+(verb)|stage|present|re-create (generic term)
+(verb)|describe (generic term)|depict (generic term)|draw (generic term)
+(verb)|remonstrate (generic term)|point out (generic term)
+(verb)|present|lay out|state (generic term)|say (generic term)|tell (generic term)
+(verb)|map|permute (generic term)|commute (generic term)|transpose (generic term)
+representable|1
+(adj)|expressible (similar term)
+representation|9
+(noun)|mental representation|internal representation|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|creation (generic term)
+(noun)|cooperation (generic term)
+(noun)|delegacy|agency|state (generic term)
+(noun)|body (generic term)
+(noun)|theatrical performance|theatrical|histrionics|performance (generic term)|public presentation (generic term)
+(noun)|statement (generic term)
+(noun)|right (generic term)
+(noun)|activity (generic term)
+representational|1
+(adj)|delineative (similar term)|depictive (similar term)|eidetic (similar term)|figural (similar term)|figurative (similar term)|mimetic (similar term)|naturalistic (similar term)|realistic (similar term)|objective (similar term)|documentary (similar term)|nonrepresentational (antonym)
+representational process|1
+(noun)|basic cognitive process (generic term)
+representative|7
+(adj)|typical (similar term)
+(adj)|allegorical (similar term)|allegoric (similar term)|emblematic (similar term)|emblematical (similar term)|symbolic (similar term)|symbolical (similar term)|nonrepresentative (antonym)
+(adj)|democratic (similar term)
+(noun)|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+(noun)|spokesperson|interpreter|voice|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|congressman|congresswoman|legislator (generic term)
+(noun)|example|illustration|instance|information (generic term)
+representative sample|1
+(noun)|stratified sample|proportional sample|sample distribution (generic term)|sample (generic term)|sampling (generic term)
+representative sampling|1
+(noun)|stratified sampling|proportional sampling|sampling (generic term)
+represented|1
+(adj)|delineated|delineate|depicted (similar term)|pictured (similar term)|portrayed (similar term)|described (similar term)|diagrammatic (similar term)|diagrammatical (similar term)|undelineated (antonym)
+repress|3
+(verb)|quash|keep down|subdue|subjugate|reduce|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|smother|stifle|strangle|muffle|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|suppress|forget (generic term)|bury (generic term)
+repressed|1
+(adj)|pent-up|inhibited (similar term)
+represser|1
+(noun)|repressor|agent (generic term)
+repressing|1
+(adj)|inhibitory|repressive|restrictive (similar term)
+repression|3
+(noun)|subjugation (generic term)|subjection (generic term)
+(noun)|defense mechanism (generic term)|defense reaction (generic term)|defence mechanism (generic term)|defence reaction (generic term)|defense (generic term)|defence (generic term)
+(noun)|control (generic term)
+repressive|1
+(adj)|inhibitory|repressing|restrictive (similar term)
+repressor|1
+(noun)|represser|agent (generic term)
+repressor gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+reprieve|6
+(noun)|respite|relief (generic term)|ease (generic term)
+(noun)|suspension|respite|hiatus|abatement|interruption (generic term)|break (generic term)
+(noun)|warrant (generic term)
+(noun)|respite|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(verb)|respite|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+(verb)|rescue (generic term)|deliver (generic term)
+reprimand|3
+(noun)|rebuke|reproof|reproval|reprehension|criticism (generic term)|unfavorable judgment (generic term)
+(verb)|censure|criminate|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+reprimanded|1
+(adj)|admonished|chastened|rebuked|reproved|punished (similar term)
+reprint|3
+(noun)|reissue|reprinting|publication (generic term)
+(noun)|offprint|separate|article (generic term)
+(verb)|reissue|reproduce (generic term)
+reprinting|1
+(noun)|reissue|reprint|publication (generic term)
+reprisal|1
+(noun)|retaliation (generic term)|revenge (generic term)
+reprise|1
+(verb)|reprize|repeat|recapitulate|play (generic term)|spiel (generic term)
+reprize|1
+(verb)|reprise|repeat|recapitulate|play (generic term)|spiel (generic term)
+reproach|3
+(noun)|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|shame (generic term)|disgrace (generic term)|ignominy (generic term)
+(verb)|upbraid|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+reproacher|1
+(noun)|upbraider|reprover|rebuker|authority (generic term)
+reproachful|1
+(adj)|admonitory|admonishing|reproving|unfavorable (similar term)|unfavourable (similar term)
+reproachfully|1
+(adv)|reprovingly
+reprobate|5
+(adj)|depraved|immoral|perverse|perverted|corrupt (similar term)
+(noun)|miscreant|wrongdoer (generic term)|offender (generic term)
+(verb)|reject (generic term)|approbate (antonym)
+(verb)|sentence (generic term)|condemn (generic term)|doom (generic term)
+(verb)|condemn|decry|objurgate|excoriate|denounce (generic term)
+reprobation|2
+(noun)|rejection (generic term)
+(noun)|disfavor (generic term)|disfavour (generic term)|dislike (generic term)|disapproval (generic term)
+reprocess|1
+(verb)|recycle|reuse|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+reproduce|4
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|procreate|multiply|make (generic term)|create (generic term)
+(verb)|re-create (generic term)
+(verb)|regurgitate|repeat (generic term)|echo (generic term)
+reproducer|1
+(noun)|audio system (generic term)|sound system (generic term)
+reproducibility|1
+(noun)|duplicability|dependability (generic term)|dependableness (generic term)|reliability (generic term)|reliableness (generic term)
+reproducible|1
+(adj)|consistent|duplicable (similar term)|duplicatable (similar term)|unreproducible (antonym)
+reproduction|5
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|reproductive memory|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+(noun)|replica|replication|copy (generic term)
+(noun)|replication|copying (generic term)
+(noun)|procreation|breeding|facts of life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+reproduction cost|1
+(noun)|physical value|cost (generic term)
+reproductive|1
+(adj)|generative|procreative|fruitful (similar term)
+reproductive cell|1
+(noun)|germ cell|sex cell|cell (generic term)
+reproductive cloning|1
+(noun)|cloning (generic term)
+reproductive memory|1
+(noun)|reproduction|recall (generic term)|recollection (generic term)|reminiscence (generic term)
+reproductive organ|1
+(noun)|sex organ|organ (generic term)
+reproductive structure|1
+(noun)|plant organ (generic term)
+reproductive system|1
+(noun)|genital system|system (generic term)
+reproof|2
+(noun)|rebuke|reproval|reprehension|reprimand|criticism (generic term)|unfavorable judgment (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+reproval|1
+(noun)|rebuke|reproof|reprehension|reprimand|criticism (generic term)|unfavorable judgment (generic term)
+reprove|1
+(verb)|admonish|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+reproved|1
+(adj)|admonished|chastened|rebuked|reprimanded|punished (similar term)
+reprover|1
+(noun)|upbraider|reproacher|rebuker|authority (generic term)
+reproving|1
+(adj)|admonitory|admonishing|reproachful|unfavorable (similar term)|unfavourable (similar term)
+reprovingly|1
+(adv)|reproachfully
+reptantia|1
+(noun)|Reptantia|suborder Reptantia|animal order (generic term)
+reptile|1
+(noun)|reptilian|vertebrate (generic term)|craniate (generic term)
+reptile-like|1
+(adj)|animal (similar term)
+reptile family|1
+(noun)|family (generic term)
+reptile genus|1
+(noun)|genus (generic term)
+reptilia|1
+(noun)|Reptilia|class Reptilia|class (generic term)
+reptilian|2
+(adj)|class (related term)
+(noun)|reptile|vertebrate (generic term)|craniate (generic term)
+republic|2
+(noun)|democracy|commonwealth|political system (generic term)|form of government (generic term)
+(noun)|political system (generic term)|form of government (generic term)
+republic of albania|1
+(noun)|Albania|Republic of Albania|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+republic of angola|1
+(noun)|Angola|Republic of Angola|African country (generic term)|African nation (generic term)
+republic of armenia|1
+(noun)|Armenia|Republic of Armenia|Hayastan|Asian country (generic term)|Asian nation (generic term)
+republic of austria|1
+(noun)|Austria|Republic of Austria|Oesterreich|European country (generic term)|European nation (generic term)
+republic of belarus|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+republic of benin|1
+(noun)|Benin|Republic of Benin|Dahomey|African country (generic term)|African nation (generic term)
+republic of bolivia|1
+(noun)|Bolivia|Republic of Bolivia|South American country (generic term)|South American nation (generic term)
+republic of bosnia and herzegovina|1
+(noun)|Bosnia and Herzegovina|Republic of Bosnia and Herzegovina|Bosna i Hercegovina|Bosnia-Herzegovina|Bosnia|European country (generic term)|European nation (generic term)
+republic of botswana|1
+(noun)|Botswana|Republic of Botswana|African country (generic term)|African nation (generic term)
+republic of bulgaria|1
+(noun)|Bulgaria|Republic of Bulgaria|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+republic of burundi|1
+(noun)|Burundi|Republic of Burundi|African country (generic term)|African nation (generic term)
+republic of cameroon|1
+(noun)|Cameroon|Republic of Cameroon|Cameroun|African country (generic term)|African nation (generic term)
+republic of cape verde|1
+(noun)|Cape Verde|Republic of Cape Verde|country (generic term)|state (generic term)|land (generic term)
+republic of chad|1
+(noun)|Chad|Republic of Chad|Tchad|African country (generic term)|African nation (generic term)
+republic of chile|1
+(noun)|Chile|Republic of Chile|South American country (generic term)|South American nation (generic term)
+republic of china|1
+(noun)|Taiwan|China|Nationalist China|Republic of China|island (generic term)
+republic of colombia|1
+(noun)|Colombia|Republic of Colombia|South American country (generic term)|South American nation (generic term)
+republic of costa rica|1
+(noun)|Costa Rica|Republic of Costa Rica|Central American country (generic term)|Central American nation (generic term)
+republic of cote d'ivoire|1
+(noun)|Ivory Coast|Cote d'Ivoire|Republic of Cote d'Ivoire|African country (generic term)|African nation (generic term)
+republic of croatia|1
+(noun)|Croatia|Republic of Croatia|Hrvatska|European country (generic term)|European nation (generic term)
+republic of cuba|1
+(noun)|Cuba|Republic of Cuba|country (generic term)|state (generic term)|land (generic term)
+republic of cyprus|1
+(noun)|Cyprus|Republic of Cyprus|country (generic term)|state (generic term)|land (generic term)
+republic of djibouti|1
+(noun)|Djibouti|Republic of Djibouti|Afars and Issas|African country (generic term)|African nation (generic term)
+republic of ecuador|1
+(noun)|Ecuador|Republic of Ecuador|South American country (generic term)|South American nation (generic term)
+republic of el salvador|1
+(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country (generic term)|Central American nation (generic term)
+republic of equitorial guinea|1
+(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country (generic term)|African nation (generic term)
+republic of estonia|1
+(noun)|Estonia|Esthonia|Republic of Estonia|Baltic State (generic term)|Baltic Republic (generic term)
+republic of fiji|1
+(noun)|Fiji|Republic of Fiji|country (generic term)|state (generic term)|land (generic term)
+republic of finland|1
+(noun)|Finland|Republic of Finland|Suomi|European country (generic term)|European nation (generic term)
+republic of ghana|1
+(noun)|Ghana|Republic of Ghana|Gold Coast|African country (generic term)|African nation (generic term)
+republic of guatemala|1
+(noun)|Guatemala|Republic of Guatemala|Central American country (generic term)|Central American nation (generic term)
+republic of guinea|1
+(noun)|Guinea|Republic of Guinea|French Guinea|African country (generic term)|African nation (generic term)
+republic of guinea-bissau|1
+(noun)|Guinea-Bissau|Republic of Guinea-Bissau|Guine-Bissau|Portuguese Guinea|African country (generic term)|African nation (generic term)
+republic of haiti|1
+(noun)|Haiti|Republic of Haiti|country (generic term)|state (generic term)|land (generic term)
+republic of honduras|1
+(noun)|Honduras|Republic of Honduras|Central American country (generic term)|Central American nation (generic term)
+republic of hungary|1
+(noun)|Hungary|Republic of Hungary|Magyarorszag|European country (generic term)|European nation (generic term)
+republic of iceland|1
+(noun)|Iceland|Republic of Iceland|European country (generic term)|European nation (generic term)
+republic of india|1
+(noun)|India|Republic of India|Bharat|Asian country (generic term)|Asian nation (generic term)
+republic of indonesia|1
+(noun)|Indonesia|Republic of Indonesia|Dutch East Indies|country (generic term)|state (generic term)|land (generic term)
+republic of iraq|1
+(noun)|Iraq|Republic of Iraq|Al-Iraq|Irak|Asian country (generic term)|Asian nation (generic term)
+republic of kazakhstan|1
+(noun)|Kazakhstan|Republic of Kazakhstan|Kazakstan|Kazakh|Kazak|Asian country (generic term)|Asian nation (generic term)
+republic of kenya|1
+(noun)|Kenya|Republic of Kenya|African country (generic term)|African nation (generic term)
+republic of kiribati|1
+(noun)|Kiribati|Republic of Kiribati|country (generic term)|state (generic term)|land (generic term)
+republic of korea|1
+(noun)|South Korea|Republic of Korea|Asian country (generic term)|Asian nation (generic term)
+republic of latvia|1
+(noun)|Latvia|Republic of Latvia|Baltic State (generic term)|Baltic Republic (generic term)
+republic of liberia|1
+(noun)|Liberia|Republic of Liberia|African country (generic term)|African nation (generic term)
+republic of lithuania|1
+(noun)|Lithuania|Republic of Lithuania|Lietuva|Baltic State (generic term)|Baltic Republic (generic term)
+republic of madagascar|1
+(noun)|Madagascar|Republic of Madagascar|Malagasy Republic|African country (generic term)|African nation (generic term)
+republic of malawi|1
+(noun)|Malawi|Republic of Malawi|Nyasaland|African country (generic term)|African nation (generic term)
+republic of maldives|1
+(noun)|Maldives|Republic of Maldives|country (generic term)|state (generic term)|land (generic term)
+republic of mali|1
+(noun)|Mali|Republic of Mali|French Sudan|African country (generic term)|African nation (generic term)
+republic of malta|1
+(noun)|Malta|Republic of Malta|country (generic term)|state (generic term)|land (generic term)
+republic of mauritius|1
+(noun)|Mauritius|Republic of Mauritius|country (generic term)|state (generic term)|land (generic term)
+republic of moldova|1
+(noun)|Moldova|Republic of Moldova|Moldavia|European country (generic term)|European nation (generic term)
+republic of mozambique|1
+(noun)|Mozambique|Republic of Mozambique|Mocambique|African country (generic term)|African nation (generic term)
+republic of namibia|1
+(noun)|Namibia|Republic of Namibia|South West Africa|African country (generic term)|African nation (generic term)
+republic of nauru|1
+(noun)|Nauru|Republic of Nauru|country (generic term)|state (generic term)|land (generic term)
+republic of nicaragua|1
+(noun)|Nicaragua|Republic of Nicaragua|Central American country (generic term)|Central American nation (generic term)
+republic of niger|1
+(noun)|Niger|Republic of Niger|African country (generic term)|African nation (generic term)
+republic of palau|1
+(noun)|Palau|Republic of Palau|TT|country (generic term)|state (generic term)|land (generic term)
+republic of panama|1
+(noun)|Panama|Republic of Panama|Central American country (generic term)|Central American nation (generic term)
+republic of paraguay|1
+(noun)|Paraguay|Republic of Paraguay|South American country (generic term)|South American nation (generic term)
+republic of peru|1
+(noun)|Peru|Republic of Peru|South American country (generic term)|South American nation (generic term)
+republic of poland|1
+(noun)|Poland|Republic of Poland|Polska|European country (generic term)|European nation (generic term)
+republic of san marino|1
+(noun)|San Marino|Republic of San Marino|European country (generic term)|European nation (generic term)
+republic of senegal|1
+(noun)|Senegal|Republic of Senegal|African country (generic term)|African nation (generic term)
+republic of seychelles|1
+(noun)|Seychelles|Republic of Seychelles|country (generic term)|state (generic term)|land (generic term)
+republic of sierra leone|1
+(noun)|Sierra Leone|Republic of Sierra Leone|African country (generic term)|African nation (generic term)
+republic of singapore|1
+(noun)|Singapore|Republic of Singapore|Asian country (generic term)|Asian nation (generic term)
+republic of slovenia|1
+(noun)|Slovenia|Republic of Slovenia|Slovenija|European country (generic term)|European nation (generic term)
+republic of south africa|1
+(noun)|South Africa|Republic of South Africa|African country (generic term)|African nation (generic term)
+republic of suriname|1
+(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country (generic term)|South American nation (generic term)
+republic of tajikistan|1
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+republic of the congo|1
+(noun)|Congo|Republic of the Congo|French Congo|African country (generic term)|African nation (generic term)
+republic of the gambia|1
+(noun)|Gambia|The Gambia|Republic of The Gambia|African country (generic term)|African nation (generic term)
+republic of the marshall islands|1
+(noun)|Marshall Islands|Republic of the Marshall Islands|country (generic term)|state (generic term)|land (generic term)
+republic of the philippines|1
+(noun)|Philippines|Republic of the Philippines|country (generic term)|state (generic term)|land (generic term)
+republic of the sudan|1
+(noun)|Sudan|Republic of the Sudan|Soudan|African country (generic term)|African nation (generic term)
+republic of trinidad and tobago|1
+(noun)|Trinidad and Tobago|Republic of Trinidad and Tobago|country (generic term)|state (generic term)|land (generic term)
+republic of tunisia|1
+(noun)|Tunisia|Republic of Tunisia|African country (generic term)|African nation (generic term)
+republic of turkey|1
+(noun)|Turkey|Republic of Turkey|country (generic term)|state (generic term)|land (generic term)
+republic of uganda|1
+(noun)|Uganda|Republic of Uganda|African country (generic term)|African nation (generic term)
+republic of uzbekistan|1
+(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country (generic term)|Asian nation (generic term)
+republic of vanuatu|1
+(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country (generic term)|state (generic term)|land (generic term)
+republic of venezuela|1
+(noun)|Venezuela|Republic of Venezuela|South American country (generic term)|South American nation (generic term)
+republic of yemen|1
+(noun)|Yemen|Republic of Yemen|Asian country (generic term)|Asian nation (generic term)
+republic of zambia|1
+(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country (generic term)|African nation (generic term)
+republic of zimbabwe|1
+(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country (generic term)|African nation (generic term)
+republican|5
+(adj)|party|political party (related term)
+(adj)|democratic (similar term)
+(noun)|Republican|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|Republican|Republican River|river (generic term)
+republican guard|1
+(noun)|Republican Guard|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+republican party|1
+(noun)|Republican Party|GOP|party (generic term)|political party (generic term)
+republican river|1
+(noun)|Republican|Republican River|river (generic term)
+republicanism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+republication|2
+(noun)|publication (generic term)
+(noun)|republishing|publication (generic term)|publishing (generic term)
+republish|2
+(verb)|print (generic term)|publish (generic term)
+(verb)|revive (generic term)|resurrect (generic term)
+republishing|1
+(noun)|republication|publication (generic term)|publishing (generic term)
+repudiate|4
+(verb)|renounce|reject (generic term)
+(verb)|reject (generic term)
+(verb)|refuse (generic term)|decline (generic term)
+(verb)|deny (generic term)
+repudiated|1
+(adj)|disowned|unacknowledged (similar term)
+repudiation|3
+(noun)|renunciation|rejection (generic term)
+(noun)|refusal (generic term)
+(noun)|debunking|exposure (generic term)
+repudiative|1
+(adj)|rejective (similar term)
+repugn|1
+(verb)|contest|contend|oppose (generic term)
+repugnance|2
+(noun)|repulsion|revulsion|horror|disgust (generic term)
+(noun)|incompatibility|mutual exclusiveness|inconsistency|contradictoriness (generic term)
+repugnant|1
+(adj)|abhorrent|detestable|obscene|repulsive|offensive (similar term)
+repulse|4
+(noun)|rebuff|snub|rejection (generic term)
+(verb)|repel|fight off|rebuff|drive back|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+(verb)|repel|displease (generic term)|attract (antonym)
+(verb)|repel|drive|force back|push back|beat back|push (generic term)|force (generic term)|attract (antonym)
+repulsion|3
+(noun)|repulsive force|force (generic term)|attraction (antonym)
+(noun)|repugnance|revulsion|horror|disgust (generic term)
+(noun)|standoff|stand (generic term)
+repulsive|3
+(adj)|abhorrent|detestable|obscene|repugnant|offensive (similar term)
+(adj)|attractive (antonym)
+(adj)|hideous|ugly (similar term)
+repulsive force|1
+(noun)|repulsion|force (generic term)|attraction (antonym)
+repulsively|1
+(adv)|detestably|abominably|odiously
+repulsiveness|1
+(noun)|loathsomeness|sliminess|vileness|lousiness|wickedness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+repurchase|2
+(noun)|redemption|buyback|purchase (generic term)
+(verb)|buy back|buy (generic term)|purchase (generic term)
+reputability|1
+(noun)|respectability|honorableness (generic term)|honourableness (generic term)|disreputability (antonym)|unrespectability (antonym)
+reputable|1
+(adj)|esteemed (similar term)|honored (similar term)|prestigious (similar term)|estimable (similar term)|good (similar term)|honorable (similar term)|respectable (similar term)|respected (similar term)|well-thought-of (similar term)|honorable (related term)|honourable (related term)|respectable (related term)|disreputable (antonym)
+reputably|1
+(adv)|disreputably (antonym)
+reputation|3
+(noun)|repute|honor (generic term)|honour (generic term)|laurels (generic term)|disrepute (antonym)
+(noun)|notoriety (generic term)|ill fame (generic term)
+(noun)|report|estimate (generic term)|estimation (generic term)
+repute|2
+(noun)|reputation|honor (generic term)|honour (generic term)|laurels (generic term)|disrepute (antonym)
+(verb)|think of|regard as|look upon|look on|esteem|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+reputed|1
+(adj)|putative|purported|supposed|acknowledged (similar term)
+request|5
+(noun)|petition|postulation|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|asking|speech act (generic term)
+(verb)|bespeak|call for|quest|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|ask (generic term)
+(verb)|wonder (generic term)|inquire (generic term)|enquire (generic term)
+requested|1
+(adj)|unrequested (antonym)
+requester|1
+(noun)|petitioner|suppliant|supplicant|applicant (generic term)|applier (generic term)
+requiem|2
+(noun)|dirge|coronach|lament|threnody|song (generic term)|vocal (generic term)
+(noun)|Requiem|Mass (generic term)
+requiem shark|1
+(noun)|shark (generic term)
+requiescat|1
+(noun)|prayer (generic term)|petition (generic term)|orison (generic term)
+require|4
+(verb)|necessitate|ask|postulate|need|take|involve|call for|demand|obviate (antonym)
+(verb)|ask|expect|demand (generic term)
+(verb)|command|compel|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+(verb)|want|need|be (generic term)
+required|2
+(adj)|needed|needful|requisite|necessary (similar term)
+(adj)|compulsory|mandatory|obligatory (similar term)
+required course|1
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+requirement|3
+(noun)|demand|duty (generic term)|responsibility (generic term)|obligation (generic term)
+(noun)|necessity|essential|requisite|necessary|thing (generic term)|inessential (antonym)
+(noun)|prerequisite|duty (generic term)|responsibility (generic term)|obligation (generic term)
+requirements contract|1
+(noun)|contract (generic term)
+requisite|2
+(adj)|needed|needful|required|necessary (similar term)
+(noun)|necessity|essential|requirement|necessary|thing (generic term)|inessential (antonym)
+requisiteness|1
+(noun)|necessity (generic term)
+requisition|5
+(noun)|demand (generic term)
+(noun)|requisition form|form (generic term)
+(noun)|sequestration|appropriation (generic term)
+(verb)|command (generic term)|require (generic term)|compel (generic term)
+(verb)|claim (generic term)|lay claim (generic term)|arrogate (generic term)|derequisition (antonym)
+requisition form|1
+(noun)|requisition|form (generic term)
+requital|2
+(noun)|retribution|penalty (generic term)
+(noun)|return (generic term)|paying back (generic term)|getting even (generic term)
+requite|1
+(verb)|repay|give (generic term)
+reread|1
+(verb)|read (generic term)
+rerebrace|1
+(noun)|upper cannon|cannon (generic term)
+reredos|1
+(noun)|altarpiece|screen (generic term)
+rerun|5
+(noun)|broadcast (generic term)|program (generic term)|programme (generic term)
+(verb)|rebroadcast|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+(verb)|mount (generic term)|put on (generic term)
+(verb)|campaign (generic term)|run (generic term)
+(verb)|run (generic term)
+res|1
+(noun)|reticuloendothelial system|RES|system (generic term)
+res adjudicata|1
+(noun)|res judicata|topic (generic term)|subject (generic term)|issue (generic term)|matter (generic term)
+res gestae|2
+(noun)|rule of evidence (generic term)
+(noun)|action (generic term)
+res ipsa loquitur|1
+(noun)|rule of evidence (generic term)
+res judicata|1
+(noun)|res adjudicata|topic (generic term)|subject (generic term)|issue (generic term)|matter (generic term)
+res publica|1
+(noun)|state|nation|country|land|commonwealth|body politic|political unit (generic term)|political entity (generic term)
+resale|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+rescale|1
+(verb)|resize (generic term)
+reschedule|1
+(verb)|schedule (generic term)
+rescind|1
+(verb)|revoke|annul|lift|countermand|reverse|repeal|overturn|vacate|cancel (generic term)|strike down (generic term)
+rescindable|1
+(adj)|voidable|revocable (similar term)|revokable (similar term)
+rescission|1
+(noun)|recission|cancellation (generic term)
+rescript|4
+(noun)|answer (generic term)|reply (generic term)|response (generic term)
+(noun)|decree|edict|fiat|order|act (generic term)|enactment (generic term)
+(noun)|revision|revisal|revise|rewriting (generic term)|revising (generic term)
+(noun)|rewrite|revision|writing (generic term)|written material (generic term)|piece of writing (generic term)
+rescriptor|1
+(noun)|delavirdine|Rescriptor|non-nucleoside reverse transcriptase inhibitor (generic term)|NNRTI (generic term)
+rescue|3
+(noun)|deliverance|delivery|saving|recovery (generic term)|retrieval (generic term)
+(verb)|deliver|save (generic term)|carry through (generic term)|pull through (generic term)|bring through (generic term)
+(verb)|take (generic term)
+rescue equipment|1
+(noun)|equipment (generic term)
+rescue operation|1
+(noun)|operation (generic term)
+rescue party|1
+(noun)|party (generic term)|company (generic term)
+rescued|1
+(adj)|reclaimed|saved (similar term)
+rescuer|2
+(noun)|savior|saviour|deliverer|benefactor (generic term)|helper (generic term)
+(noun)|recoverer|saver|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+reseal|1
+(verb)|seal (generic term)|seal off (generic term)
+research|4
+(noun)|investigation (generic term)|investigating (generic term)
+(noun)|inquiry|enquiry|problem solving (generic term)
+(verb)|search|explore|investigate (generic term)|look into (generic term)
+(verb)|investigate (generic term)|look into (generic term)
+research center|1
+(noun)|research facility|center (generic term)|centre (generic term)
+research colloquium|1
+(noun)|colloquium (generic term)
+research director|1
+(noun)|director of research|supervisor (generic term)
+research facility|1
+(noun)|research center|center (generic term)|centre (generic term)
+research lab|1
+(noun)|lab|laboratory|research laboratory|science lab|science laboratory|workplace (generic term)|work (generic term)
+research laboratory|1
+(noun)|lab|laboratory|research lab|science lab|science laboratory|workplace (generic term)|work (generic term)
+research project|1
+(noun)|scientific research|research (generic term)
+research rocket|1
+(noun)|test rocket|test instrument vehicle|rocket (generic term)|projectile (generic term)
+research staff|1
+(noun)|staff (generic term)
+research worker|1
+(noun)|researcher|investigator|scientist (generic term)|man of science (generic term)
+researcher|1
+(noun)|research worker|investigator|scientist (generic term)|man of science (generic term)
+reseat|2
+(verb)|seat (generic term)
+(verb)|seat (generic term)|sit (generic term)|sit down (generic term)
+reseau|2
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+(noun)|network (generic term)
+resect|1
+(verb)|eviscerate|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+resection|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+reseda|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+reseda luteola|1
+(noun)|dyer's rocket|dyer's mignonette|weld|Reseda luteola|reseda (generic term)
+reseda odorata|1
+(noun)|mignonette|sweet reseda|Reseda odorata|reseda (generic term)
+resedaceae|1
+(noun)|Resedaceae|family Resedaceae|mignonette family|dilleniid dicot family (generic term)
+reseed|2
+(verb)|seed (generic term)
+(verb)|sustain (generic term)|keep (generic term)|maintain (generic term)
+resell|1
+(verb)|sell (generic term)
+resemblance|1
+(noun)|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+resemble|1
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+resent|2
+(verb)|dislike (generic term)
+(verb)|begrudge|wish (antonym)
+resentful|1
+(adj)|acrimonious (similar term)|bitter (similar term)|rancorous (similar term)|unresentful (antonym)
+resentment|1
+(noun)|bitterness|gall|rancor|rancour|hostility (generic term)|enmity (generic term)|ill will (generic term)
+reserpine|1
+(noun)|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive (generic term)|antihypertensive drug (generic term)
+reservation|7
+(noun)|reserve|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|qualification|statement (generic term)
+(noun)|mental reservation|arriere pensee|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|booking|employment (generic term)|engagement (generic term)
+(noun)|agreement (generic term)|understanding (generic term)
+(noun)|prearrangement (generic term)
+(noun)|preservation (generic term)|saving (generic term)
+reserve|11
+(noun)|modesty|propriety (generic term)|properness (generic term)|correctitude (generic term)
+(noun)|backlog|stockpile|accumulation (generic term)
+(noun)|substitute|second-stringer|athlete (generic term)|jock (generic term)
+(noun)|indefinite quantity (generic term)
+(noun)|reservation|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|military reserve|military (generic term)|armed forces (generic term)|armed services (generic term)|military machine (generic term)|war machine (generic term)
+(noun)|reticence|taciturnity|uncommunicativeness (generic term)
+(verb)|withhold (generic term)|keep back (generic term)
+(verb)|allow|appropriate|earmark|set aside|assign (generic term)|allot (generic term)|portion (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|hold|book|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+reserve account|1
+(noun)|reserve fund|reserve (generic term)|backlog (generic term)|stockpile (generic term)
+reserve assets|1
+(noun)|assets (generic term)
+reserve bank|1
+(noun)|Federal Reserve Bank|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+reserve clause|1
+(noun)|article (generic term)|clause (generic term)
+reserve fund|1
+(noun)|reserve account|reserve (generic term)|backlog (generic term)|stockpile (generic term)
+reserve officers training corps|1
+(noun)|Reserve Officers Training Corps|ROTC|corps (generic term)|army corps (generic term)
+reserved|3
+(adj)|booked (similar term)|engaged (similar term)|set-aside (similar term)|bookable (similar term)|rarefied (similar term)|rarified (similar term)|unreserved (antonym)
+(adj)|aloof (similar term)|distant (similar term)|upstage (similar term)|diffident (similar term)|indrawn (similar term)|withdrawn (similar term)|backward (related term)|inhibited (related term)|restrained (related term)|undemonstrative (related term)|unreserved (antonym)
+(adj)|restrained|reticent|unemotional|undemonstrative (similar term)
+reserves|1
+(noun)|militia|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+reservist|1
+(noun)|soldier (generic term)
+reservoir|4
+(noun)|supply (generic term)
+(noun)|artificial lake|lake (generic term)
+(noun)|tank (generic term)|storage tank (generic term)
+(noun)|source|thing (generic term)
+reset|4
+(noun)|device (generic term)
+(verb)|specify (generic term)|set (generic term)|determine (generic term)|fix (generic term)|limit (generic term)
+(verb)|set (generic term)
+(verb)|readjust|adjust (generic term)|set (generic term)|correct (generic term)
+reset button|1
+(noun)|push button (generic term)|push (generic term)|button (generic term)
+resettle|1
+(verb)|settle (generic term)|locate (generic term)
+resettled|1
+(adj)|relocated|settled (similar term)
+resettlement|1
+(noun)|relocation|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+resew|1
+(verb)|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+resh|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+reshape|2
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+(verb)|remold|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+reship|1
+(verb)|ship (generic term)
+reshipment|1
+(noun)|dispatch (generic term)|despatch (generic term)|shipment (generic term)
+reshoot|1
+(verb)|film (generic term)|shoot (generic term)|take (generic term)
+resht|1
+(noun)|Rasht|Resht|city (generic term)|metropolis (generic term)|urban center (generic term)
+reshuffle|4
+(noun)|reallotment (generic term)|reapportionment (generic term)|reallocation (generic term)
+(noun)|reshuffling|shuffle (generic term)|shuffling (generic term)|make (generic term)
+(verb)|shuffle (generic term)|ruffle (generic term)|mix (generic term)
+(verb)|rearrange (generic term)
+reshuffling|1
+(noun)|reshuffle|shuffle (generic term)|shuffling (generic term)|make (generic term)
+resid|1
+(noun)|residual oil|petroleum (generic term)|crude oil (generic term)|crude (generic term)|rock oil (generic term)|fossil oil (generic term)
+reside|3
+(verb)|shack|domicile|domiciliate|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|occupy|lodge in|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|rest|repose|inhere in (generic term)|attach to (generic term)
+residence|4
+(noun)|abode|address (generic term)
+(noun)|house (generic term)
+(noun)|residency|abidance|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|mansion|mansion house|manse|hall|house (generic term)
+residence hall|1
+(noun)|dormitory|dorm|hall|student residence|living quarters (generic term)|quarters (generic term)|building (generic term)|edifice (generic term)
+residence time|1
+(noun)|duration (generic term)|continuance (generic term)
+residency|2
+(noun)|residence|abidance|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+resident|4
+(adj)|nonresident (antonym)
+(adj)|nonmigratory|migratory (antonym)
+(noun)|occupant|occupier|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)|nonresident (antonym)
+(noun)|house physician|resident physician|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+resident commissioner|1
+(noun)|representative (generic term)
+resident physician|1
+(noun)|house physician|resident|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+residential|2
+(adj)|nonresidential (antonym)
+(adj)|act|human action|human activity (related term)
+residential area|1
+(noun)|residential district|community|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+residential district|1
+(noun)|residential area|community|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+residual|3
+(adj)|residuary|substance|matter (related term)
+(noun)|remainder|balance|residue|residuum|rest|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|payment (generic term)
+residual clay|1
+(noun)|residual soil|soil (generic term)|dirt (generic term)
+residual oil|1
+(noun)|resid|petroleum (generic term)|crude oil (generic term)|crude (generic term)|rock oil (generic term)|fossil oil (generic term)
+residual soil|1
+(noun)|residual clay|soil (generic term)|dirt (generic term)
+residuary|2
+(adj)|part|portion|component part|component (related term)
+(adj)|residual|substance|matter (related term)
+residue|2
+(noun)|substance (generic term)|matter (generic term)
+(noun)|remainder|balance|residual|residuum|rest|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+residuum|1
+(noun)|remainder|balance|residual|residue|rest|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+resift|1
+(verb)|sift (generic term)|sieve (generic term)|strain (generic term)
+resign|4
+(verb)|vacate|renounce|give up|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|leave office|quit|step down|leave (generic term)|depart (generic term)|pull up stakes (generic term)|take office (antonym)
+(verb)|release|relinquish|free|give up|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|reconcile|submit|accept (generic term)
+resignation|3
+(noun)|surrender|despair (generic term)
+(noun)|speech act (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+resigned|2
+(adj)|reconciled (similar term)
+(adj)|abject|unhopeful|hopeless (similar term)
+resignedly|1
+(adv)|abjectly
+resile|4
+(verb)|chicken out (generic term)|back off (generic term)|pull out (generic term)|back down (generic term)|bow out (generic term)
+(verb)|bounce|take a hop|spring|bound|rebound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|abjure|recant|forswear|retract|renounce (generic term)|repudiate (generic term)
+(verb)|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+resilience|2
+(noun)|resiliency|elasticity (generic term)|snap (generic term)
+(noun)|resiliency|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+resiliency|2
+(noun)|resilience|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+(noun)|resilience|elasticity (generic term)|snap (generic term)
+resilient|2
+(adj)|spirited (similar term)
+(adj)|bouncy|live|lively|springy|elastic (similar term)
+resin|1
+(noun)|rosin|organic compound (generic term)
+resinate|1
+(verb)|season (generic term)|flavor (generic term)|flavour (generic term)
+resinated|1
+(adj)|organic compound (related term)
+resinlike|1
+(adj)|organic compound (related term)
+resinoid|1
+(noun)|plastic (generic term)
+resinous|1
+(adj)|pitchy|resiny|tarry|adhesive (similar term)
+resiny|1
+(adj)|pitchy|resinous|tarry|adhesive (similar term)
+resist|6
+(verb)|defy|refuse|elude (generic term)|escape (generic term)|lend oneself (antonym)
+(verb)|hold out|withstand|stand firm|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)|surrender (antonym)
+(verb)|protest|dissent|oppose (generic term)|controvert (generic term)|contradict (generic term)
+(verb)|stand|fend|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+(verb)|reject|refuse|react (generic term)|respond (generic term)
+(verb)|balk|baulk|jib|disobey (generic term)
+resistance|10
+(noun)|opposition|action (generic term)
+(noun)|mechanical phenomenon (generic term)
+(noun)|electric resistance|electrical resistance|impedance|resistivity|ohmic resistance|electrical phenomenon (generic term)
+(noun)|military action (generic term)|action (generic term)
+(noun)|immunity|condition (generic term)|status (generic term)
+(noun)|underground|revolutionary group (generic term)
+(noun)|unresponsiveness (generic term)|deadness (generic term)
+(noun)|unwillingness (generic term)|involuntariness (generic term)
+(noun)|resistor|electrical device (generic term)
+(noun)|group action (generic term)
+resistance pyrometer|1
+(noun)|pyrometer (generic term)
+resistance thermometer|1
+(noun)|platinum thermometer|thermometer (generic term)
+resistance unit|1
+(noun)|electromagnetic unit (generic term)|emu (generic term)
+resistant|5
+(adj)|immune|unsusceptible (similar term)|insusceptible (similar term)
+(adj)|tolerant|tolerable (similar term)
+(adj)|impervious (similar term)|imperviable (similar term)
+(adj)|insubordinate|resistive|defiant (similar term)|noncompliant (similar term)
+(adj)|repellent|nonabsorbent (similar term)|nonabsorptive (similar term)
+resister|2
+(noun)|obstructionist|obstructor|obstructer|thwarter|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+(noun)|adversary|antagonist|opponent|opposer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|agonist (antonym)
+resistible|1
+(adj)|irresistible (antonym)
+resisting arrest|1
+(noun)|assault (generic term)|battery (generic term)|assault and battery (generic term)
+resistive|2
+(adj)|electrical phenomenon (related term)
+(adj)|insubordinate|resistant|defiant (similar term)|noncompliant (similar term)
+resistivity|1
+(noun)|electric resistance|electrical resistance|impedance|resistance|ohmic resistance|electrical phenomenon (generic term)
+resistless|2
+(adj)|irresistible|overpowering (similar term)|overwhelming (similar term)|resistible (antonym)
+(adj)|supine|unresisting|passive (similar term)|inactive (similar term)
+resistor|1
+(noun)|resistance|electrical device (generic term)
+resize|1
+(verb)|size (generic term)
+resmudge|1
+(verb)|smear (generic term)|blur (generic term)|smudge (generic term)|smutch (generic term)
+resole|1
+(verb)|sole|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+resolute|2
+(adj)|bent (similar term)|bent on (similar term)|dead set (similar term)|intent on (similar term)|out to (similar term)|determined (similar term)|desperate (similar term)|do-or-die (similar term)|firm (similar term)|steadfast (similar term)|steady (similar term)|stiff (similar term)|unbendable (similar term)|unfaltering (similar term)|unshakable (similar term)|unwavering (similar term)|foursquare (similar term)|hell-bent (similar term)|single-minded (similar term)|resolved (similar term)|spartan (similar term)|stalwart (similar term)|stout (similar term)|undaunted (similar term)|undismayed (similar term)|unshaken (similar term)|undeterred (similar term)|undiscouraged (similar term)|brave (related term)|courageous (related term)|decisive (related term)|purposeful (related term)|irresolute (antonym)
+(adj)|unhesitating|decisive (similar term)
+resolutely|2
+(adv)|irresolutely (antonym)
+(adv)|decisively|indecisively (antonym)
+resoluteness|1
+(noun)|firmness|firmness of purpose|resolve|resolution|trait (generic term)|irresoluteness (antonym)
+resolution|11
+(noun)|declaration|resolve|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|resolving power|physical phenomenon (generic term)
+(noun)|resoluteness|firmness|firmness of purpose|resolve|trait (generic term)|irresoluteness (antonym)
+(noun)|solving|determination (generic term)|finding (generic term)
+(noun)|settlement|closure|decision making (generic term)|deciding (generic term)
+(noun)|resolving|breakdown (generic term)|partitioning (generic term)
+(noun)|physical phenomenon (generic term)
+(noun)|remission (generic term)|remittal (generic term)|subsidence (generic term)
+(noun)|harmony (generic term)|musical harmony (generic term)|preparation (antonym)
+(noun)|solution|answer|result|solvent|statement (generic term)
+(noun)|decision (generic term)|determination (generic term)|conclusion (generic term)
+resolvable|2
+(adj)|solvable|soluble (similar term)
+(adj)|reconcilable (similar term)
+resolve|9
+(noun)|resoluteness|firmness|firmness of purpose|resolution|trait (generic term)|irresoluteness (antonym)
+(noun)|resolution|declaration|document (generic term)|written document (generic term)|papers (generic term)
+(verb)|decide|settle|adjudicate|end (generic term)|terminate (generic term)
+(verb)|conclude|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|purpose|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|answer|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+(verb)|recognize (generic term)|recognise (generic term)|distinguish (generic term)|discern (generic term)|pick out (generic term)|make out (generic term)|tell apart (generic term)
+(verb)|solve|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|dissolve|break up|change integrity (generic term)
+resolved|2
+(adj)|single-minded|resolute (similar term)
+(adj)|solved|unsolved (antonym)
+resolvent|1
+(noun)|solvent|dissolvent|dissolver|dissolving agent|medium (generic term)
+resolving|1
+(noun)|resolution|breakdown (generic term)|partitioning (generic term)
+resolving power|1
+(noun)|resolution|physical phenomenon (generic term)
+resonance|5
+(noun)|physical phenomenon (generic term)
+(noun)|oscillation (generic term)|vibration (generic term)
+(noun)|plangency|reverberance|ringing|sonorousness|sonority|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+(noun)|rapport|affinity (generic term)|kinship (generic term)
+(noun)|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+resonant|2
+(adj)|reverberant (similar term)|ringing (similar term)
+(adj)|resonating|resounding|reverberating|reverberative|rolling|reverberant (similar term)|ringing (similar term)
+resonant circuit|1
+(noun)|resonator|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+resonate|2
+(verb)|vibrate|sound (generic term)|go (generic term)
+(verb)|come across
+resonating|1
+(adj)|resonant|resounding|reverberating|reverberative|rolling|reverberant (similar term)|ringing (similar term)
+resonating chamber|1
+(noun)|resonator|cavity resonator|chamber (generic term)
+resonator|3
+(noun)|cavity resonator|resonating chamber|chamber (generic term)
+(noun)|resonant circuit|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(noun)|system (generic term)
+resorb|1
+(verb)|reabsorb|absorb (generic term)
+resorcinol|1
+(noun)|phenol (generic term)
+resorcinolphthalein|1
+(noun)|fluorescein|fluoresceine|fluorescent dye|dye (generic term)|dyestuff (generic term)|absorption indicator (generic term)
+resorption|1
+(noun)|reabsorption|organic process (generic term)|biological process (generic term)
+resort|6
+(noun)|resort hotel|holiday resort|hotel (generic term)
+(noun)|haunt|hangout|repair|stamping ground|area (generic term)|country (generic term)
+(noun)|recourse|refuge|resource (generic term)
+(noun)|recourse|refuge|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(verb)|fall back|recur|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|repair|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+resort area|1
+(noun)|playground|vacation spot|area (generic term)|country (generic term)
+resort hotel|2
+(noun)|resort|holiday resort|hotel (generic term)
+(noun)|spa|hotel (generic term)
+resound|2
+(verb)|echo|ring|reverberate|sound (generic term)|go (generic term)
+(verb)|make noise|noise|sound (generic term)|go (generic term)
+resounding|1
+(adj)|resonant|resonating|reverberating|reverberative|rolling|reverberant (similar term)|ringing (similar term)
+resource|3
+(noun)|assets (generic term)
+(noun)|asset (generic term)|plus (generic term)
+(noun)|resourcefulness|imagination|inventiveness (generic term)|ingeniousness (generic term)|ingenuity (generic term)|cleverness (generic term)
+resourceful|1
+(adj)|capable (similar term)
+resourcefulness|2
+(noun)|resource (generic term)
+(noun)|resource|imagination|inventiveness (generic term)|ingeniousness (generic term)|ingenuity (generic term)|cleverness (generic term)
+resourceless|1
+(adj)|poor (similar term)
+respect|9
+(noun)|regard|detail (generic term)|item (generic term)|point (generic term)
+(noun)|esteem|regard|honor (generic term)|honour (generic term)|laurels (generic term)|disesteem (antonym)
+(noun)|esteem|regard|attitude (generic term)|mental attitude (generic term)|disrespect (antonym)
+(noun)|deference|politeness (generic term)|civility (generic term)
+(noun)|obedience|filial duty (generic term)
+(noun)|regard|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+(noun)|deference|respectfulness|courtesy (generic term)|good manners (generic term)
+(verb)|esteem|value|prize|prise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|disesteem (antonym)|disrespect (antonym)
+(verb)|honor|honour|abide by|observe|accept (generic term)|disrespect (antonym)
+respectability|1
+(noun)|reputability|honorableness (generic term)|honourableness (generic term)|disreputability (antonym)|unrespectability (antonym)
+respectable|3
+(adj)|decent (similar term)|nice (similar term)|presentable (similar term)|worthy (similar term)|good (related term)|reputable (related term)|unrespectable (antonym)
+(adj)|estimable|good|honorable|reputable (similar term)
+(adj)|goodly|goodish|hefty|sizable|sizeable|tidy|considerable (similar term)
+respectably|1
+(adv)|creditably
+respected|2
+(adj)|well-thought-of|reputable (similar term)
+(adj)|glorious|illustrious|redoubtable|proud (similar term)
+respecter|1
+(noun)|follower (generic term)
+respectful|2
+(adj)|deferent (similar term)|deferential (similar term)|regardful (similar term)|honorific (similar term)|courteous (related term)|humble (related term)|reverent (related term)|disrespectful (antonym)
+(adj)|reverential|venerating|reverent (similar term)
+respectfully|1
+(adv)|with all respect|disrespectfully (antonym)
+respectfulness|1
+(noun)|deference|respect|courtesy (generic term)|good manners (generic term)
+respective|1
+(adj)|several|various|individual (similar term)|single (similar term)
+respectively|1
+(adv)|severally
+respects|1
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+respighi|1
+(noun)|Respighi|Ottorino Respighi|composer (generic term)
+respiration|3
+(noun)|internal respiration|cellular respiration|metabolism (generic term)|metabolic process (generic term)|metastasis (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|breathing|external respiration|ventilation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+respirator|2
+(noun)|inhalator|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+(noun)|gasmask|gas helmet|mask (generic term)
+respiratory|1
+(adj)|metabolism|metabolic process|metastasis (related term)
+respiratory acidosis|1
+(noun)|carbon dioxide acidosis|acidosis (generic term)
+respiratory alkalosis|1
+(noun)|alkalosis (generic term)
+respiratory center|1
+(noun)|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+respiratory disease|1
+(noun)|respiratory illness|respiratory disorder|disease (generic term)
+respiratory disorder|1
+(noun)|respiratory disease|respiratory illness|disease (generic term)
+respiratory distress syndrome|1
+(noun)|respiratory distress syndrome of the newborn|hyaline membrane disease|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+respiratory distress syndrome of the newborn|1
+(noun)|respiratory distress syndrome|hyaline membrane disease|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+respiratory illness|1
+(noun)|respiratory disease|respiratory disorder|disease (generic term)
+respiratory infection|1
+(noun)|respiratory tract infection|infection (generic term)
+respiratory organ|1
+(noun)|internal organ (generic term)|viscus (generic term)
+respiratory quotient|1
+(noun)|ratio (generic term)
+respiratory rate|1
+(noun)|rate of respiration|vital sign (generic term)|rate (generic term)
+respiratory syncytial virus|1
+(noun)|paramyxovirus (generic term)
+respiratory system|1
+(noun)|systema respiratorium|system (generic term)
+respiratory tract|1
+(noun)|airway|tract (generic term)
+respiratory tract infection|1
+(noun)|respiratory infection|infection (generic term)
+respire|3
+(verb)|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+(verb)|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|breathe|take a breath|suspire|breathe out (related term)|breathe in (related term)
+respite|6
+(noun)|reprieve|relief (generic term)|ease (generic term)
+(noun)|recess|break|time out|pause (generic term)
+(noun)|suspension|reprieve|hiatus|abatement|interruption (generic term)|break (generic term)
+(noun)|rest|relief|rest period|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|reprieve|clemency (generic term)|mercifulness (generic term)|mercy (generic term)
+(verb)|reprieve|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+resplend|1
+(verb)|reflect (generic term)|shine (generic term)
+resplendence|1
+(noun)|glory|resplendency|beauty (generic term)
+resplendency|1
+(noun)|glory|resplendence|beauty (generic term)
+resplendent|1
+(adj)|glorious|splendid|splendiferous|beautiful (similar term)
+resplendent quetzel|1
+(noun)|resplendent trogon|Pharomacrus mocino|quetzal (generic term)|quetzal bird (generic term)
+resplendent trogon|1
+(noun)|resplendent quetzel|Pharomacrus mocino|quetzal (generic term)|quetzal bird (generic term)
+resplendently|1
+(adv)|gorgeously|splendidly|magnificently
+respond|3
+(verb)|react|act (generic term)|move (generic term)
+(verb)|answer|reply|state (generic term)|say (generic term)|tell (generic term)
+(verb)|react (generic term)|respond (generic term)
+respondent|3
+(adj)|answering|responsive (similar term)
+(noun)|codefendant (generic term)|co-defendant (generic term)
+(noun)|responder|answerer|communicator (generic term)
+responder|1
+(noun)|respondent|answerer|communicator (generic term)
+response|6
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|reaction|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|answer|reply|statement (generic term)
+(noun)|reception|greeting (generic term)|salutation (generic term)
+(noun)|phrase (generic term)
+(noun)|reply|speech act (generic term)
+response time|1
+(noun)|reaction time|latency|latent period|time interval (generic term)|interval (generic term)
+responsibility|3
+(noun)|duty|obligation|social control (generic term)
+(noun)|province|sphere (generic term)|domain (generic term)|area (generic term)|orbit (generic term)|field (generic term)|arena (generic term)
+(noun)|responsibleness|trustworthiness (generic term)|trustiness (generic term)|irresponsibleness (antonym)|irresponsibility (antonym)
+responsible|3
+(adj)|accountable (similar term)|answerable (similar term)|amenable (similar term)|liable (similar term)|trustworthy (similar term)|obligated (related term)|prudent (related term)|trustworthy (related term)|trusty (related term)|irresponsible (antonym)
+(adj)|responsible for|causative (similar term)
+(adj)|creditworthy|trustworthy (similar term)|trusty (similar term)
+responsible for|1
+(adj)|responsible|causative (similar term)
+responsibleness|1
+(noun)|responsibility|trustworthiness (generic term)|trustiness (generic term)|irresponsibleness (antonym)|irresponsibility (antonym)
+responsibly|1
+(adv)|irresponsibly (antonym)
+responsive|4
+(adj)|antiphonal|religious music|church music (related term)|phrase (related term)
+(adj)|answering (similar term)|respondent (similar term)|sensitive (related term)|sensitive (related term)|unresponsive (antonym)
+(adj)|amenable|tractable|susceptible (similar term)
+(adj)|sensitive (similar term)
+responsiveness|2
+(noun)|reactivity|sensitivity (generic term)|sensitiveness (generic term)|sensibility (generic term)
+(noun)|quality (generic term)|unresponsiveness (antonym)
+rest|17
+(noun)|remainder|balance|residual|residue|residuum|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|ease|repose|relaxation|inactivity (generic term)
+(noun)|respite|relief|rest period|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|eternal rest|sleep|eternal sleep|quietus|death (generic term)
+(noun)|support (generic term)
+(noun)|musical notation (generic term)
+(verb)|be (generic term)|rest on (related term)|rest on (related term)
+(verb)|breathe|catch one's breath|take a breather|pause (generic term)|intermit (generic term)|break (generic term)
+(verb)|rest (related term)
+(verb)|lie|be (generic term)
+(verb)|recumb (generic term)|repose (generic term)|recline (generic term)|be active (antonym)
+(verb)|stay|remain|be (generic term)|change (antonym)
+(verb)|reside|repose|inhere in (generic term)|attach to (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|perch|roost|sit (generic term)|sit down (generic term)
+(verb)|pillow|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+rest-cure|1
+(noun)|treatment (generic term)
+rest-harrow|2
+(noun)|restharrow|Ononis spinosa|subshrub (generic term)|suffrutex (generic term)
+(noun)|restharrow|Ononis repens|subshrub (generic term)|suffrutex (generic term)
+rest area|1
+(noun)|layby|lay-by|pull-off|rest stop|area (generic term)
+rest day|1
+(noun)|day of rest|day of the week (generic term)|workday (antonym)
+rest energy|1
+(noun)|energy (generic term)
+rest home|1
+(noun)|home|nursing home|institution (generic term)
+rest house|1
+(noun)|building (generic term)|edifice (generic term)
+rest mass|1
+(noun)|mass (generic term)
+rest on|2
+(verb)|lean on|lean against|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|repose on|build on|build upon|depend on (generic term)|devolve on (generic term)|depend upon (generic term)|ride (generic term)|turn on (generic term)|hinge on (generic term)|hinge upon (generic term)
+rest period|1
+(noun)|respite|rest|relief|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+rest stop|1
+(noun)|layby|lay-by|pull-off|rest area|area (generic term)
+restart|2
+(verb)|re-start|start (generic term)|start up (generic term)
+(verb)|resume|re-start|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+restate|1
+(verb)|repeat|reiterate|ingeminate|iterate|retell|tell (generic term)
+restatement|1
+(noun)|statement (generic term)
+restaurant|1
+(noun)|eating house|eating place|building (generic term)|edifice (generic term)
+restaurant attendant|1
+(noun)|dining-room attendant|employee (generic term)
+restaurant chain|1
+(noun)|chain (generic term)
+restauranter|1
+(noun)|restaurateur|owner (generic term)|proprietor (generic term)
+restaurateur|1
+(noun)|restauranter|owner (generic term)|proprietor (generic term)
+rested|1
+(adj)|fresh (similar term)|invigorated (similar term)|refreshed (similar term)|reinvigorated (similar term)|untired (similar term)|unwearied (similar term)|unweary (similar term)|lively (related term)|tired (antonym)
+rester|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+restful|1
+(adj)|relaxing|reposeful|quiet (similar term)
+restfully|1
+(adv)|quietly
+restfulness|1
+(noun)|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+restharrow|2
+(noun)|rest-harrow|Ononis spinosa|subshrub (generic term)|suffrutex (generic term)
+(noun)|rest-harrow|Ononis repens|subshrub (generic term)|suffrutex (generic term)
+resting potential|1
+(noun)|electric potential (generic term)|potential (generic term)|potential difference (generic term)|potential drop (generic term)|voltage (generic term)
+restitute|2
+(verb)|restore|refund (generic term)|return (generic term)|repay (generic term)|give back (generic term)
+(verb)|renovate|regenerate (generic term)|renew (generic term)
+restitution|3
+(noun)|damages|amends|indemnity|indemnification|redress|compensation (generic term)
+(noun)|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(noun)|return|restoration|regaining|acquisition (generic term)
+restive|2
+(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|uptight|tense (similar term)
+(adj)|impatient (similar term)
+restiveness|2
+(noun)|jitteriness|jumpiness|nervousness|anxiety (generic term)
+(noun)|skittishness|nervousness (generic term)
+restless|4
+(adj)|antsy|fidgety|fretful|itchy|unquiet (similar term)
+(adj)|ungratified|unsatisfied|discontented (similar term)|discontent (similar term)
+(adj)|moving (similar term)
+(adj)|uneasy|unquiet (similar term)
+restless legs|1
+(noun)|restless legs syndrome|Ekbom syndrome|syndrome (generic term)
+restless legs syndrome|1
+(noun)|restless legs|Ekbom syndrome|syndrome (generic term)
+restlessness|4
+(noun)|mobility (generic term)
+(noun)|impatience|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+(noun)|fidget|fidgetiness|agitation (generic term)
+(noun)|uneasiness|queasiness|nervousness (generic term)
+restock|1
+(verb)|stock (generic term)
+restoration|7
+(noun)|Restoration|historic period (generic term)|age (generic term)
+(noun)|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(noun)|restitution|return|regaining|acquisition (generic term)
+(noun)|renovation|refurbishment|improvement (generic term)|melioration (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|model (generic term)|simulation (generic term)
+(noun)|Restoration|group action (generic term)
+restorative|4
+(adj)|renewing|reviving|revitalizing|revitalising|invigorating (similar term)
+(adj)|recuperative|healthful (similar term)
+(noun)|tonic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(noun)|corrective|device (generic term)
+restore|5
+(verb)|reconstruct|regenerate (generic term)|renew (generic term)
+(verb)|regenerate|rejuvenate|regenerate (generic term)|renew (generic term)
+(verb)|restitute|refund (generic term)|return (generic term)|repay (generic term)|give back (generic term)
+(verb)|repair|mend|fix|bushel|doctor|furbish up|touch on|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+(verb)|reinstate|reestablish|change (generic term)|alter (generic term)|modify (generic term)
+restorer|1
+(noun)|refinisher|renovator|preserver|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+restoril|1
+(noun)|temazepam|Restoril|benzodiazepine (generic term)
+restrain|5
+(verb)|suppress|keep|keep back|hold back|prevent (generic term)|keep (generic term)
+(verb)|restrict|trammel|limit|bound|confine|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|confine|hold|disable (generic term)|disenable (generic term)|incapacitate (generic term)
+(verb)|encumber|cumber|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|intimidate|discourage (generic term)
+restrained|6
+(adj)|reserved|reticent|unemotional|undemonstrative (similar term)
+(adj)|bated (similar term)|checked (similar term)|curbed (similar term)|close (similar term)|confined (similar term)|contained (similar term)|low-key (similar term)|low-keyed (similar term)|subdued (similar term)|unexpansive (similar term)|controlled (related term)|inhibited (related term)|reserved (related term)|unrestrained (antonym)
+(adj)|moderate|temperate (similar term)
+(adj)|quiet|unostentatious (similar term)|unpretentious (similar term)|unpretending (similar term)
+(adj)|modest|unostentatious|discreet (similar term)
+(adj)|guarded|cautious (similar term)
+restrainer|2
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|controller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+restraint|6
+(noun)|control (generic term)
+(noun)|control|discipline (generic term)|unrestraint (antonym)
+(noun)|constraint|confinement (generic term)
+(noun)|restriction (generic term)|limitation (generic term)
+(noun)|chasteness|simplicity|simpleness|plainness (generic term)
+(noun)|constraint|device (generic term)
+restraint of trade|1
+(noun)|restraint (generic term)
+restrengthen|1
+(verb)|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+restrict|4
+(verb)|curtail|curb|cut back|limit (generic term)|circumscribe (generic term)|confine (generic term)
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)|derestrict (antonym)
+(verb)|restrain|trammel|limit|bound|confine|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|qualify|modify (generic term)
+restricted|4
+(adj)|circumscribed (similar term)|limited (similar term)|closed (similar term)|off-limits (similar term)|out-of-bounds (similar term)|classified (related term)|confined (related term)|unfree (related term)|unrestricted (antonym)
+(adj)|qualified|modified (similar term)
+(adj)|controlled|limited (similar term)
+(adj)|classified (similar term)
+restricting|1
+(adj)|confining|constraining|constrictive|limiting|restrictive (similar term)
+restriction|3
+(noun)|limitation|rule (generic term)|regulation (generic term)
+(noun)|limitation|regulation (generic term)|regulating (generic term)
+(noun)|restraint (generic term)
+restriction endonuclease|1
+(noun)|restriction nuclease|restriction enzyme|endonuclease (generic term)
+restriction enzyme|1
+(noun)|restriction endonuclease|restriction nuclease|endonuclease (generic term)
+restriction fragment|1
+(noun)|fragment (generic term)
+restriction nuclease|1
+(noun)|restriction endonuclease|restriction enzyme|endonuclease (generic term)
+restriction site|1
+(noun)|site (generic term)|situation (generic term)
+restrictive|2
+(adj)|confining (similar term)|constraining (similar term)|constrictive (similar term)|limiting (similar term)|restricting (similar term)|inhibitory (similar term)|repressive (similar term)|repressing (similar term)|limiting (similar term)|regulative (similar term)|regulatory (similar term)|sumptuary (similar term)|suppressive (similar term)|unrestrictive (antonym)
+(adj)|protective (similar term)
+restrictive clause|1
+(noun)|subordinate clause (generic term)|dependent clause (generic term)
+restrictiveness|2
+(noun)|modification (generic term)|qualifying (generic term)|limiting (generic term)
+(noun)|unpermissiveness|disposition (generic term)|temperament (generic term)|permissiveness (antonym)
+restroom|1
+(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|toilet facility|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+restructure|1
+(verb)|reconstitute|structure (generic term)
+resublime|1
+(verb)|sublime (generic term)|sublimate (generic term)
+resubmit|1
+(verb)|feed back|render (generic term)|return (generic term)
+result|6
+(noun)|consequence|effect|outcome|event|issue|upshot|phenomenon (generic term)
+(noun)|solution|answer|resolution|solvent|statement (generic term)
+(noun)|resultant|final result|outcome|termination|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|resultant role|semantic role (generic term)|participant role (generic term)
+(verb)|ensue|prove (generic term)|turn out (generic term)|turn up (generic term)
+(verb)|leave|lead|produce (generic term)|bring about (generic term)|give rise (generic term)
+resultant|4
+(adj)|consequent|ensuant|resulting|sequent|subsequent (similar term)
+(noun)|end point|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|result|final result|outcome|termination|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|vector sum|vector (generic term)
+resultant role|1
+(noun)|result|semantic role (generic term)|participant role (generic term)
+resulting|1
+(adj)|consequent|ensuant|resultant|sequent|subsequent (similar term)
+resulting trust|1
+(noun)|implied trust (generic term)
+resume|6
+(noun)|sketch|survey|summary (generic term)|sum-up (generic term)
+(noun)|curriculum vitae|CV|summary (generic term)|sum-up (generic term)
+(verb)|restart|re-start|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|take up|change (generic term)
+(verb)|assume (generic term)|adopt (generic term)|take on (generic term)|take over (generic term)
+(verb)|sum up|summarize|summarise|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+resumption|1
+(noun)|recommencement|beginning (generic term)|start (generic term)|commencement (generic term)
+resupine|1
+(adj)|supine|unerect (similar term)
+resurface|3
+(verb)|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|reappear (generic term)|re-emerge (generic term)
+resurge|1
+(verb)|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+resurgence|1
+(noun)|revival|revitalization|revitalisation|revivification|improvement (generic term)|betterment (generic term)|advance (generic term)
+resurgent|1
+(adj)|renascent|revived (similar term)
+resurrect|3
+(verb)|raise|upraise|resuscitate (generic term)|revive (generic term)
+(verb)|revive|regenerate (generic term)|restore (generic term)|rejuvenate (generic term)
+(verb)|rise|uprise|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+resurrection|2
+(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle (generic term)
+(noun)|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+resurrection fern|1
+(noun)|grey polypody|gray polypody|Polypodium polypodioides|polypody (generic term)
+resurrection of christ|1
+(noun)|Resurrection|Christ's Resurrection|Resurrection of Christ|miracle (generic term)
+resurrection plant|2
+(noun)|rose of Jericho|Selaginella lepidophylla|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+(noun)|rose of Jericho|Anastatica hierochuntica|crucifer (generic term)|cruciferous plant (generic term)
+resurvey|1
+(noun)|survey (generic term)|study (generic term)
+resuscitate|2
+(verb)|revive|bring to (generic term)|bring back (generic term)|bring round (generic term)|bring around (generic term)
+(verb)|come to|revive|change state (generic term)|turn (generic term)
+resuscitated|1
+(adj)|revived (similar term)
+resuscitation|1
+(noun)|revival (generic term)|resurgence (generic term)|revitalization (generic term)|revitalisation (generic term)|revivification (generic term)
+resuscitator|1
+(noun)|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+resuspend|1
+(verb)|suspend (generic term)
+resuspension|1
+(noun)|suspension (generic term)
+ret|1
+(verb)|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+retail|5
+(adj)|wholesale (antonym)
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)|wholesale (antonym)
+(verb)|sell (generic term)
+(verb)|sell (generic term)|wholesale (antonym)
+(adv)|wholesale (antonym)
+retail chain|1
+(noun)|chain (generic term)|distributor (generic term)
+retail merchant|1
+(noun)|retailer|merchant (generic term)|merchandiser (generic term)|distributor (generic term)|distributer (generic term)
+retail price index|1
+(noun)|price index (generic term)|price level (generic term)
+retail store|1
+(noun)|mercantile establishment|sales outlet|outlet|place of business (generic term)|business establishment (generic term)
+retailer|1
+(noun)|retail merchant|merchant (generic term)|merchandiser (generic term)|distributor (generic term)|distributer (generic term)
+retailing|1
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+retain|4
+(verb)|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|continue|keep|keep on|keep going|prolong (generic term)|sustain (generic term)|keep up (generic term)
+(verb)|hold|keep back|hold back|keep (generic term)|hold on (generic term)
+(verb)|remember (generic term)|think of (generic term)
+retained|1
+(adj)|maintained|preserved (similar term)
+retained object|1
+(noun)|object (generic term)
+retainer|3
+(noun)|consideration|fee (generic term)
+(noun)|servant|worker (generic term)
+(noun)|dental appliance (generic term)
+retaining wall|1
+(noun)|wall (generic term)
+retake|4
+(noun)|take (generic term)
+(verb)|recapture|take (generic term)
+(verb)|recapture|get (generic term)|catch (generic term)|capture (generic term)
+(verb)|photograph (generic term)|snap (generic term)|shoot (generic term)
+retaking|1
+(noun)|recapture|recovery (generic term)|retrieval (generic term)
+retaliate|2
+(verb)|revenge|avenge|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|strike back|strike (generic term)|hit (generic term)
+retaliation|1
+(noun)|revenge|return (generic term)|paying back (generic term)|getting even (generic term)
+retaliator|1
+(noun)|avenger|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+retaliatory|1
+(adj)|relatiative|retributive|retributory|vindicatory|punitive (similar term)|punitory (similar term)
+retaliatory eviction|1
+(noun)|eviction (generic term)|dispossession (generic term)|legal ouster (generic term)
+retama|1
+(noun)|Retama|genus Retama|rosid dicot genus (generic term)
+retama raetam|1
+(noun)|retem|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+retard|5
+(noun)|idiot|imbecile|cretin|moron|changeling|half-wit|simpleton (generic term)|simple (generic term)
+(verb)|check|delay|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decelerate (generic term)|slow down (generic term)
+(verb)|be (generic term)
+(verb)|decelerate|slow|slow down|slow up|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|accelerate (antonym)
+retardant|1
+(noun)|retardent|retardation|agent (generic term)
+retardation|5
+(noun)|deceleration|slowing|change (generic term)|alteration (generic term)|modification (generic term)|acceleration (antonym)
+(noun)|delay (generic term)|hold (generic term)|time lag (generic term)|postponement (generic term)|wait (generic term)
+(noun)|retardant|retardent|agent (generic term)
+(noun)|mental retardation|backwardness|slowness|subnormality|stupidity (generic term)
+(noun)|slowdown|lag|delay (generic term)|holdup (generic term)
+retarded|2
+(adj)|backward (similar term)|feebleminded (similar term)|cretinous (similar term)|delayed (similar term)|dim-witted (similar term)|half-witted (similar term)|simple (similar term)|simple-minded (similar term)|unintelligent (related term)|stupid (related term)|precocious (antonym)
+(noun)|mentally retarded|people (generic term)
+retarded depression|1
+(noun)|depressive disorder (generic term)|clinical depression (generic term)|depression (generic term)
+retardent|1
+(noun)|retardant|retardation|agent (generic term)
+retarding force|1
+(noun)|drag|resistance (generic term)
+retch|3
+(noun)|heave|spasm (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+(verb)|gag|heave
+rete|1
+(noun)|plexus|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+rete malpighii|1
+(noun)|stratum germinativum|stratum basale|malpighian layer|rete Malpighii|stratum (generic term)
+rete testis|1
+(noun)|plexus (generic term)|rete (generic term)
+retell|3
+(verb)|recite|re-create (generic term)
+(verb)|fictionalize|fictionalise|re-create (generic term)
+(verb)|repeat|reiterate|ingeminate|iterate|restate|tell (generic term)
+retem|1
+(noun)|raetam|juniper bush|juniper|Retama raetam|Genista raetam|shrub (generic term)|bush (generic term)
+retention|3
+(noun)|keeping|holding|possession (generic term)|ownership (generic term)
+(noun)|memory|retentiveness|retentivity|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|retentiveness|retentivity|impermeability (generic term)|impermeableness (generic term)
+retentive|3
+(adj)|recollective|long|tenacious|mindful (related term)|aware (related term)|unretentive (antonym)
+(adj)|possession|ownership (related term)
+(adj)|impermeable (similar term)
+retentiveness|3
+(noun)|memory|retention|retentivity|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|retentivity|acquisitiveness (generic term)
+(noun)|retentivity|retention|impermeability (generic term)|impermeableness (generic term)
+retentivity|3
+(noun)|memory|retention|retentiveness|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|retentiveness|acquisitiveness (generic term)
+(noun)|retentiveness|retention|impermeability (generic term)|impermeableness (generic term)
+rethink|2
+(noun)|reconsideration|second thought|afterthought|reversal (generic term)|change of mind (generic term)|flip-flop (generic term)|turnabout (generic term)|turnaround (generic term)
+(verb)|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+reticence|1
+(noun)|reserve|taciturnity|uncommunicativeness (generic term)
+reticent|3
+(adj)|untalkative|taciturn (similar term)
+(adj)|reserved|restrained|unemotional|undemonstrative (similar term)
+(adj)|self-effacing|retiring|unassertive (similar term)
+retick|1
+(verb)|tick|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+reticle|1
+(noun)|reticule|graticule|network (generic term)
+reticular|1
+(adj)|reticulate|cancellate (similar term)|cancellated (similar term)|clathrate (similar term)|crisscross (similar term)|crisscrossed (similar term)|fretted (similar term)|interlaced (similar term)|latticed (similar term)|latticelike (similar term)|interconnected (similar term)|interrelated (similar term)|lacy (similar term)|netlike (similar term)|netted (similar term)|webbed (similar term)|weblike (similar term)|webby (similar term)|meshed (similar term)|networklike (similar term)|nonreticulate (antonym)
+reticular activating system|1
+(noun)|RAS|neural network (generic term)|neural net (generic term)
+reticular formation|1
+(noun)|RF|neural network (generic term)|neural net (generic term)
+reticulate|4
+(adj)|reticular|cancellate (similar term)|cancellated (similar term)|clathrate (similar term)|crisscross (similar term)|crisscrossed (similar term)|fretted (similar term)|interlaced (similar term)|latticed (similar term)|latticelike (similar term)|interconnected (similar term)|interrelated (similar term)|lacy (similar term)|netlike (similar term)|netted (similar term)|webbed (similar term)|weblike (similar term)|webby (similar term)|meshed (similar term)|networklike (similar term)|nonreticulate (antonym)
+(verb)|change (generic term)
+(verb)|distribute (generic term)
+(verb)|form (generic term)
+reticulated python|1
+(noun)|Python reticulatus|python (generic term)
+reticulation|2
+(noun)|formation (generic term)
+(noun)|network (generic term)
+reticule|2
+(noun)|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+(noun)|reticle|graticule|network (generic term)
+reticulitermes|1
+(noun)|Reticulitermes|genus Reticulitermes|arthropod genus (generic term)
+reticulitermes flanipes|1
+(noun)|Reticulitermes flanipes|termite (generic term)|white ant (generic term)
+reticulitermes lucifugus|1
+(noun)|Reticulitermes lucifugus|termite (generic term)|white ant (generic term)
+reticulocyte|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+reticuloendothelial system|1
+(noun)|RES|system (generic term)
+reticulum|3
+(noun)|Reticulum|constellation (generic term)
+(noun)|network (generic term)|web (generic term)
+(noun)|second stomach|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+retie|1
+(verb)|tie (generic term)|bind (generic term)
+retina|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+retinal|2
+(adj)|membrane|tissue layer (related term)
+(noun)|retinene|pigment (generic term)
+retinal cone|1
+(noun)|cone|cone cell|visual cell (generic term)
+retinal detachment|1
+(noun)|detachment of the retina|detached retina|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+retinal purple|1
+(noun)|visual purple|rhodopsin|photopigment (generic term)
+retinal rod|1
+(noun)|rod|rod cell|visual cell (generic term)
+retinal scanning|1
+(noun)|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+retinene|1
+(noun)|retinal|pigment (generic term)
+retinitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+retinoblastoma|1
+(noun)|malignant tumor (generic term)|malignant neoplasm (generic term)|metastatic tumor (generic term)
+retinol|1
+(noun)|vitamin A1|vitamin A (generic term)|antiophthalmic factor (generic term)|axerophthol (generic term)|A (generic term)
+retinue|1
+(noun)|cortege|suite|entourage|gathering (generic term)|assemblage (generic term)
+retire|12
+(verb)|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|withdraw|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|withdraw|retreat|pull away|draw back|recede|pull back|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|recede|fall back|withdraw (generic term)|retreat (generic term)|pull away (generic term)|draw back (generic term)|recede (generic term)|pull back (generic term)|retire (generic term)|move back (generic term)|advance (antonym)
+(verb)|recall (generic term)
+(verb)|adjourn|withdraw|close up (generic term)|close (generic term)|fold (generic term)|shut down (generic term)|close down (generic term)
+(verb)|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|pension off|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|withdraw|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+(verb)|put out|toy (generic term)|fiddle (generic term)|diddle (generic term)|play (generic term)
+(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|turn out (antonym)|get up (antonym)
+retired|4
+(adj)|inactive (similar term)
+(adj)|emeritus|old (similar term)
+(adj)|out|down (similar term)|safe (antonym)
+(adj)|superannuated|old (similar term)
+retired person|1
+(noun)|retiree|nonworker (generic term)
+retiree|1
+(noun)|retired person|nonworker (generic term)
+retirement|3
+(noun)|status (generic term)|position (generic term)
+(noun)|termination (generic term)|ending (generic term)|conclusion (generic term)
+(noun)|retreat|withdrawal (generic term)
+retirement account|1
+(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+retirement benefit|1
+(noun)|old-age pension|retirement pension|retirement check|retirement fund|superannuation|pension (generic term)
+retirement check|1
+(noun)|old-age pension|retirement pension|retirement benefit|retirement fund|superannuation|pension (generic term)
+retirement community|1
+(noun)|retirement complex|planned community (generic term)
+retirement complex|1
+(noun)|retirement community|planned community (generic term)
+retirement fund|1
+(noun)|old-age pension|retirement pension|retirement check|retirement benefit|superannuation|pension (generic term)
+retirement pension|1
+(noun)|old-age pension|retirement check|retirement benefit|retirement fund|superannuation|pension (generic term)
+retirement plan|1
+(noun)|pension plan|pension account|retirement savings plan|retirement savings account|retirement account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+retirement program|1
+(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement savings account|retirement account|plan (generic term)|program (generic term)|programme (generic term)
+retirement savings account|1
+(noun)|pension plan|pension account|retirement plan|retirement savings plan|retirement account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+retirement savings plan|1
+(noun)|pension plan|pension account|retirement plan|retirement savings account|retirement account|retirement program|plan (generic term)|program (generic term)|programme (generic term)
+retiring|4
+(adj)|receding|retreating (similar term)
+(adj)|unassuming|modest (similar term)
+(adj)|past|preceding|outgoing (similar term)
+(adj)|reticent|self-effacing|unassertive (similar term)
+retool|2
+(verb)|revise|reorganize (generic term)|reorganise (generic term)|shake up (generic term)
+(verb)|substitute (generic term)|replace (generic term)
+retort|3
+(noun)|rejoinder|return|riposte|replication|comeback|counter|reply (generic term)|response (generic term)
+(noun)|vessel (generic term)
+(verb)|come back|repay|return|riposte|rejoin|answer (generic term)|reply (generic term)|respond (generic term)
+retouch|2
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|touch up|enhance (generic term)
+retrace|2
+(verb)|trace|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|reconstruct|construct|speculate (generic term)|theorize (generic term)|theorise (generic term)|conjecture (generic term)|hypothesize (generic term)|hypothesise (generic term)|hypothecate (generic term)|suppose (generic term)
+retract|4
+(verb)|abjure|recant|forswear|resile|renounce (generic term)|repudiate (generic term)
+(verb)|shrink back|flinch (generic term)|squinch (generic term)|funk (generic term)|cringe (generic term)|shrink (generic term)|wince (generic term)|recoil (generic term)|quail (generic term)
+(verb)|pull back|draw back|pull (generic term)
+(verb)|draw in|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+retractable|1
+(adj)|retractile (similar term)
+retracted|1
+(adj)|backward (similar term)
+retractile|1
+(adj)|retractable (similar term)|nonretractile (antonym)
+retraction|2
+(noun)|abjuration|recantation|disavowal (generic term)|disclaimer (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+retractor|1
+(noun)|surgical instrument (generic term)
+retrain|2
+(verb)|train (generic term)|develop (generic term)|prepare (generic term)|educate (generic term)
+(verb)|train (generic term)|prepare (generic term)
+retraining|1
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+retral|2
+(adj)|retrograde|backward (similar term)
+(adj)|posterior (similar term)
+retranslate|1
+(verb)|translate (generic term)|interpret (generic term)|render (generic term)
+retransmit|1
+(verb)|conduct (generic term)|transmit (generic term)|convey (generic term)|carry (generic term)|channel (generic term)
+retread|3
+(noun)|recap|car tire (generic term)|automobile tire (generic term)|auto tire (generic term)|rubber tire (generic term)
+(verb)|rework|make over|work (generic term)|work on (generic term)|process (generic term)
+(verb)|remold|remould|regenerate (generic term)|renew (generic term)
+retreat|10
+(noun)|withdrawal (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|bugle call (generic term)
+(noun)|hideaway|area (generic term)
+(noun)|retirement|withdrawal (generic term)
+(verb)|withdraw|pull away|draw back|recede|pull back|retire|move back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retrograde|recede (generic term)|fall back (generic term)|retire (generic term)
+(verb)|pull back|back out|back away|crawfish|crawfish out|pull in one's horns|withdraw
+retreatant|1
+(noun)|participant (generic term)
+retreated|1
+(noun)|people (generic term)
+retreating|1
+(adj)|receding (similar term)|retiring (similar term)|withdrawing (similar term)|advancing (antonym)
+retrench|2
+(verb)|conserve (generic term)|husband (generic term)|economize (generic term)|economise (generic term)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+retrenchment|2
+(noun)|entrenchment (generic term)|intrenchment (generic term)
+(noun)|curtailment|downsizing|economy (generic term)|saving (generic term)
+retrial|1
+(noun)|trial (generic term)
+retribution|3
+(noun)|requital|penalty (generic term)
+(noun)|correction (generic term)|rectification (generic term)
+(noun)|vengeance|payback|retaliation (generic term)|revenge (generic term)
+retributive|2
+(adj)|retaliatory|relatiative|retributory|vindicatory|punitive (similar term)|punitory (similar term)
+(adj)|retributory|vindicatory|just (similar term)
+retributory|2
+(adj)|retaliatory|relatiative|retributive|vindicatory|punitive (similar term)|punitory (similar term)
+(adj)|retributive|vindicatory|just (similar term)
+retrievable|1
+(adj)|recoverable (similar term)
+retrieval|3
+(noun)|computer operation (generic term)|machine operation (generic term)
+(noun)|memory (generic term)|remembering (generic term)
+(noun)|recovery|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+retrieve|3
+(verb)|recover|find|regain|get (generic term)|acquire (generic term)
+(verb)|bring (generic term)|get (generic term)|convey (generic term)|fetch (generic term)
+(verb)|remember|recall|call back|call up|recollect|think|think back (related term)|forget (antonym)
+retriever|1
+(noun)|sporting dog (generic term)|gun dog (generic term)
+retro|2
+(adj)|ex post facto|retroactive|retrospective (similar term)
+(noun)|fashion (generic term)
+retroactive|2
+(adj)|proactive (antonym)
+(adj)|ex post facto|retro|retrospective (similar term)
+retrobulbar neuritis|1
+(noun)|neuritis (generic term)
+retrofit|5
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|addition (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|install (generic term)|instal (generic term)|put in (generic term)|set up (generic term)
+(verb)|overhaul (generic term)|modernize (generic term)|modernise (generic term)
+retroflection|3
+(noun)|retroversion|retroflexion|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|retroflexion|articulation (generic term)
+(noun)|retroflexion|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+retroflex|4
+(adj)|retroflexed|backward (similar term)
+(adj)|cacuminal|backward (similar term)
+(verb)|replicate|bend (generic term)|flex (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+retroflexed|1
+(adj)|retroflex|backward (similar term)
+retroflexion|3
+(noun)|retroversion|retroflection|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|retroflection|articulation (generic term)
+(noun)|retroflection|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+retrograde|9
+(adj)|direct (antonym)
+(adj)|anterograde (antonym)
+(adj)|retrogressive|regressive (similar term)
+(adj)|retral|backward (similar term)
+(verb)|orb (generic term)|orbit (generic term)|revolve (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retreat|recede (generic term)|fall back (generic term)|retire (generic term)
+(verb)|rehash|hash over|recapitulate (generic term)|recap (generic term)
+(verb)|regress|retrogress|worsen (generic term)|decline (generic term)|progress (antonym)
+retrograde amnesia|1
+(noun)|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+retrogress|2
+(verb)|regress|retrograde|worsen (generic term)|decline (generic term)|progress (antonym)
+(verb)|relapse|lapse|recidivate|regress|fall back|revert (generic term)|return (generic term)|retrovert (generic term)|regress (generic term)|turn back (generic term)
+retrogression|2
+(noun)|degeneration|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|regression|regress|reversion|retroversion|reversal (generic term)
+retrogressive|1
+(adj)|retrograde|regressive (similar term)
+retromandibular vein|1
+(noun)|vena retromandibularis|posterior facial vein|facial vein (generic term)|vena facialis (generic term)
+retronym|1
+(noun)|word (generic term)
+retrophyllum|1
+(noun)|Retrophyllum|genus Retrophyllum|gymnosperm genus (generic term)
+retrorocket|1
+(noun)|rocket (generic term)|rocket engine (generic term)
+retrorse|1
+(adj)|decurved (similar term)|antrorse (antonym)
+retrospect|2
+(noun)|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+(verb)|review|look back|remember (generic term)|think back (generic term)
+retrospection|2
+(noun)|mention (generic term)|reference (generic term)
+(noun)|memory (generic term)|remembering (generic term)
+retrospective|2
+(adj)|ex post facto (similar term)|retroactive (similar term)|retro (similar term)|backward (related term)|prospective (antonym)
+(noun)|art exhibition (generic term)
+retrousse|1
+(adj)|tip-tilted|upturned|shapely (similar term)
+retroversion|3
+(noun)|retroflection|retroflexion|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|regression|regress|reversion|retrogression|reversal (generic term)
+retrovert|1
+(verb)|revert|return|regress|turn back|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+retrovir|1
+(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+retrovirus|1
+(noun)|animal virus (generic term)
+retrovision|1
+(noun)|vision (generic term)
+retry|1
+(verb)|rehear|hear (generic term)|try (generic term)
+retsina|1
+(noun)|wine (generic term)|vino (generic term)
+return|29
+(noun)|tax return|income tax return|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|homecoming|arrival (generic term)
+(noun)|coming back|turning (generic term)|turn (generic term)
+(noun)|restitution|restoration|regaining|acquisition (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|issue|take|takings|proceeds|yield|payoff|income (generic term)
+(noun)|recurrence|repeat (generic term)|repetition (generic term)
+(noun)|rejoinder|retort|riposte|replication|comeback|counter|reply (generic term)|response (generic term)
+(noun)|return key|key (generic term)
+(noun)|paying back|getting even|group action (generic term)
+(noun)|tennis stroke (generic term)|tennis shot (generic term)
+(noun)|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(noun)|reappearance|appearance (generic term)
+(verb)|go back|get back|come back|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|render|give (generic term)
+(verb)|revert|retrovert|regress|turn back|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|hark back|come back|recall|denote (generic term)|refer (generic term)
+(verb)|take back|bring back|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|reciprocate (generic term)
+(verb)|transport (generic term)|carry (generic term)
+(verb)|retort|come back|repay|riposte|rejoin|answer (generic term)|reply (generic term)|respond (generic term)
+(verb)|come back|reappear (generic term)|re-emerge (generic term)
+(verb)|refund|repay|give back|pay (generic term)
+(verb)|render|deliver|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|reelect|elect (generic term)
+(verb)|fall|pass|devolve|change hands (generic term)|change owners (generic term)
+(verb)|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|render|yield|give|generate|produce (generic term)|make (generic term)|create (generic term)
+(verb)|submit (generic term)|subject (generic term)
+return address|1
+(noun)|address (generic term)|destination (generic term)|name and address (generic term)
+return key|1
+(noun)|return|key (generic term)
+return on invested capital|1
+(noun)|return on investment|ROI|rate of return (generic term)
+return on investment|1
+(noun)|return on invested capital|ROI|rate of return (generic term)
+return ticket|1
+(noun)|round-trip ticket|ticket (generic term)
+returnable|1
+(adj)|revertible (similar term)|nonreturnable (antonym)
+returning|2
+(adj)|reverting|regressive (similar term)
+(adj)|reversive|backward (similar term)
+returning officer|1
+(noun)|official (generic term)|functionary (generic term)
+reuben|2
+(noun)|Reuben|patriarch (generic term)
+(noun)|Reuben|sandwich (generic term)
+reuben lucius goldberg|1
+(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist (generic term)
+reunification|1
+(noun)|reunion|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+reunify|1
+(verb)|reunite|unite (generic term)|unify (generic term)
+reunion|2
+(noun)|party (generic term)
+(noun)|reunification|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+reunite|2
+(verb)|meet (generic term)|get together (generic term)
+(verb)|reunify|unite (generic term)|unify (generic term)
+reuptake|1
+(noun)|re-uptake|uptake (generic term)
+reusable|1
+(adj)|reclaimable|recyclable|useful (similar term)|utile (similar term)
+reusable program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+reusable routine|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+reuse|1
+(verb)|recycle|reprocess|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+rev|2
+(noun)|revolutions per minute|rpm|rate (generic term)
+(verb)|rev up|increase (generic term)
+rev up|2
+(verb)|step up|increase (generic term)
+(verb)|rev|increase (generic term)
+revaluation|1
+(noun)|reappraisal|review|reassessment|appraisal (generic term)|assessment (generic term)
+revalue|2
+(verb)|appreciate|apprize|apprise|increase (generic term)|depreciate (antonym)
+(verb)|rate (generic term)|value (generic term)
+revamp|2
+(verb)|regenerate (generic term)|renew (generic term)
+(verb)|vamp|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+reveal|4
+(verb)|uncover|bring out|unveil|show (generic term)
+(verb)|unwrap|disclose|let on|bring out|discover|expose|divulge|impart|break|give away|let out|tell (generic term)
+(verb)|display|show|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+revealed|1
+(adj)|discovered|disclosed|unconcealed (similar term)
+revealed religion|1
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)
+revealing|3
+(adj)|telling|telltale|informative (similar term)|informatory (similar term)
+(adj)|betraying (similar term)|indicative (similar term)|indicatory (similar term)|revelatory (similar term)|significative (similar term)|suggestive (similar term)|disclosing (similar term)|concealing (antonym)
+(noun)|disclosure|revelation|speech act (generic term)
+reveille|2
+(noun)|wake-up signal|bugle call (generic term)
+(noun)|awakening (generic term)|wakening (generic term)|waking up (generic term)
+revel|3
+(noun)|revelry|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+(verb)|delight|enjoy
+(verb)|racket|make whoopie|make merry|make happy|whoop it up|jollify|wassail|celebrate (generic term)|fete (generic term)
+revelation|4
+(noun)|disclosure|revealing|speech act (generic term)
+(noun)|insight (generic term)|brainstorm (generic term)|brainwave (generic term)
+(noun)|informing (generic term)|making known (generic term)
+(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book (generic term)
+revelation of saint john the divine|1
+(noun)|Revelation|Revelation of Saint John the Divine|Apocalypse|Book of Revelation|book (generic term)
+revelatory|2
+(adj)|indicative|indicatory|significative|suggestive|revealing (similar term)
+(adj)|apocalyptic|apocalyptical|prophetic (similar term)|prophetical (similar term)
+reveler|1
+(noun)|reveller|merrymaker|celebrant (generic term)|celebrator (generic term)|celebrater (generic term)
+reveller|1
+(noun)|reveler|merrymaker|celebrant (generic term)|celebrator (generic term)|celebrater (generic term)
+revelry|1
+(noun)|revel|merrymaking (generic term)|conviviality (generic term)|jollification (generic term)
+revenant|4
+(adj)|ghost (related term)
+(adj)|recurring|continual (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|ghost (generic term)
+revenge|2
+(noun)|retaliation|return (generic term)|paying back (generic term)|getting even (generic term)
+(verb)|avenge|retaliate|punish (generic term)|penalize (generic term)|penalise (generic term)
+revengeful|1
+(adj)|vindictive|vengeful|unforgiving (similar term)
+revengefully|1
+(adv)|vengefully|vindictively
+revenue|2
+(noun)|gross|receipts|income (generic term)
+(noun)|tax income|taxation|tax revenue|government income (generic term)|government revenue (generic term)
+revenue bond|1
+(noun)|bond (generic term)|bond certificate (generic term)
+revenue enhancement|1
+(noun)|tax|taxation|levy (generic term)
+revenue sharing|1
+(noun)|distribution (generic term)
+revenue stamp|1
+(noun)|stamp (generic term)|impression (generic term)
+revenue tariff|1
+(noun)|duty (generic term)|tariff (generic term)
+revenuer|1
+(noun)|government agent (generic term)
+reverberance|1
+(noun)|plangency|resonance|ringing|sonorousness|sonority|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+reverberant|1
+(adj)|ringing|bright (similar term)|brilliant (similar term)|clinking (similar term)|echoing (similar term)|reechoing (similar term)|hollow (similar term)|jingling (similar term)|jingly (similar term)|live (similar term)|resonant (similar term)|resonant (similar term)|resonating (similar term)|resounding (similar term)|reverberating (similar term)|reverberative (similar term)|rolling (similar term)|tinkling (similar term)|tinkly (similar term)|vibrant (similar term)|unreverberant (antonym)
+reverberate|6
+(verb)|resound|echo|ring|sound (generic term)|go (generic term)
+(verb)|prevail (generic term)|persist (generic term)|die hard (generic term)|run (generic term)|endure (generic term)
+(verb)|reflect (generic term)|reverberate (generic term)
+(verb)|reflect
+(verb)|bounce|resile|take a hop|spring|bound|rebound|recoil|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|process (generic term)|treat (generic term)
+reverberating|1
+(adj)|resonant|resonating|resounding|reverberative|rolling|reverberant (similar term)|ringing (similar term)
+reverberation|2
+(noun)|echo|sound reflection|replication|reflection (generic term)|reflexion (generic term)|reflectivity (generic term)
+(noun)|repercussion|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+reverberative|1
+(adj)|resonant|resonating|resounding|reverberating|rolling|reverberant (similar term)|ringing (similar term)
+reverberatory furnace|1
+(noun)|furnace (generic term)
+revere|4
+(noun)|Revere|Paul Revere|silversmith (generic term)|silverworker (generic term)|silver-worker (generic term)|American Revolutionary leader (generic term)
+(noun)|revers|lapel (generic term)
+(verb)|idolize|idolise|worship|hero-worship|adore (generic term)
+(verb)|reverence|fear|venerate|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)
+revered|1
+(adj)|august|venerable|honorable (similar term)|honourable (similar term)
+reverence|3
+(noun)|fear|awe|veneration|emotion (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)|irreverence (antonym)
+(verb)|fear|revere|venerate|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)
+reverend|3
+(adj)|sublime|sacred (similar term)
+(noun)|clergyman|man of the cloth|spiritual leader (generic term)|layman (antonym)
+(noun)|Reverend|title (generic term)|title of respect (generic term)|form of address (generic term)
+reverend dodgson|1
+(noun)|Carroll|Lewis Carroll|Dodgson|Reverend Dodgson|Charles Dodgson|Charles Lutwidge Dodgson|writer (generic term)|author (generic term)
+reverent|2
+(adj)|adoring (similar term)|worshipful (similar term)|awed (similar term)|awful (similar term)|respectful (similar term)|reverential (similar term)|venerating (similar term)|respectful (related term)|irreverent (antonym)
+(adj)|godly|worshipful|pious (similar term)
+reverential|1
+(adj)|respectful|venerating|reverent (similar term)
+reverentially|1
+(adv)|reverently|irreverently (antonym)
+reverently|1
+(adv)|reverentially|irreverently (antonym)
+reverie|2
+(noun)|revery|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+(noun)|revery|abstractedness (generic term)|abstraction (generic term)
+revers|1
+(noun)|revere|lapel (generic term)
+reversal|8
+(noun)|change of state (generic term)
+(noun)|reverse|setback|blow|black eye|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|turn around|turning (generic term)|turn (generic term)
+(noun)|change of mind|flip-flop|turnabout|turnaround|decision making (generic term)|deciding (generic term)
+(noun)|judgment (generic term)|judgement (generic term)|judicial decision (generic term)|affirmation (antonym)
+(noun)|reversion|reverse|turnabout|turnaround|change of direction (generic term)|reorientation (generic term)
+(noun)|transposition|reordering (generic term)
+(noun)|about-face|volte-face|policy change|change (generic term)
+reverse|13
+(adj)|rearward|backward (similar term)
+(adj)|inverse|backward (similar term)
+(adj)|forward (antonym)
+(noun)|contrary|opposite|opposition (generic term)|oppositeness (generic term)
+(noun)|gear (generic term)|gear mechanism (generic term)
+(noun)|reversal|setback|blow|black eye|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|verso|side (generic term)|obverse (antonym)
+(noun)|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(noun)|reversion|reversal|turnabout|turnaround|change of direction (generic term)|reorientation (generic term)
+(verb)|change by reversal|turn|change (generic term)|turn on (related term)|turn off (related term)
+(verb)|turn back|invert|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|overrule|overturn|override|overthrow|rule (generic term)|decree (generic term)
+(verb)|revoke|annul|lift|countermand|repeal|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+reverse fault|1
+(noun)|thrust fault|overthrust fault|inclined fault (generic term)
+reverse hang|1
+(noun)|hang (generic term)
+reverse polish notation|1
+(noun)|postfix notation|suffix notation|reverse Polish notation|parenthesis-free notation (generic term)
+reverse split|1
+(noun)|reverse stock split|split down|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+reverse stock split|1
+(noun)|reverse split|split down|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+reverse transcriptase|1
+(noun)|polymerase (generic term)
+reverse transcriptase inhibitor|1
+(noun)|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+reversed|2
+(adj)|turned (similar term)
+(adj)|converse|transposed|backward (similar term)
+reversibility|1
+(noun)|changeableness (generic term)|changeability (generic term)|irreversibility (antonym)
+reversible|5
+(adj)|correctable (similar term)|rechargeable (similar term)|irreversible (antonym)
+(adj)|two-sided|double-faced (similar term)|nonreversible (antonym)
+(adj)|revocable (similar term)|revokable (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+(noun)|garment (generic term)
+reversible process|1
+(noun)|process (generic term)|physical process (generic term)|irreversible process (antonym)
+reversing thermometer|1
+(noun)|thermometer (generic term)
+reversion|6
+(noun)|interest (generic term)|stake (generic term)
+(noun)|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+(noun)|atavism|throwback|recurrence (generic term)|return (generic term)
+(noun)|reverse|reversal|turnabout|turnaround|change of direction (generic term)|reorientation (generic term)
+(noun)|regression|regress|retrogression|retroversion|reversal (generic term)
+(noun)|backsliding|lapse|lapsing|relapse|relapsing|reverting|failure (generic term)
+reversionary|1
+(adj)|interest|stake (related term)
+reversionary annuity|1
+(noun)|survivorship annuity|annuity (generic term)|rente (generic term)
+reversioner|1
+(noun)|party (generic term)
+reversionist|1
+(noun)|recidivist|backslider|wrongdoer (generic term)|offender (generic term)
+reversive|1
+(adj)|returning|backward (similar term)
+revert|2
+(verb)|return|retrovert|regress|turn back|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|mutate (generic term)
+revertible|1
+(adj)|returnable (similar term)
+reverting|2
+(adj)|returning|regressive (similar term)
+(noun)|backsliding|lapse|lapsing|relapse|relapsing|reversion|failure (generic term)
+revery|2
+(noun)|reverie|abstractedness (generic term)|abstraction (generic term)
+(noun)|reverie|daydream|daydreaming|oneirism|air castle|castle in the air|castle in Spain|dream (generic term)|dreaming (generic term)
+revet|2
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+(verb)|face (generic term)
+revetement|1
+(noun)|revetment|stone facing|facing (generic term)|cladding (generic term)
+revetment|2
+(noun)|barrier (generic term)
+(noun)|revetement|stone facing|facing (generic term)|cladding (generic term)
+review|15
+(noun)|reappraisal|revaluation|reassessment|appraisal (generic term)|assessment (generic term)
+(noun)|critique|critical review|review article|criticism (generic term)|literary criticism (generic term)
+(noun)|follow-up|followup|reexamination|examination (generic term)|scrutiny (generic term)
+(noun)|limited review|accounting (generic term)|accounting system (generic term)|method of accounting (generic term)
+(noun)|revue|variety show (generic term)|variety (generic term)
+(noun)|periodical (generic term)
+(noun)|recapitulation|recap|capitulation (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|brushup|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+(noun)|inspection|examination (generic term)|scrutiny (generic term)
+(verb)|reexamine|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|critique|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|go over|survey|inspect (generic term)
+(verb)|brush up|refresh|remember (generic term)|retrieve (generic term)|recall (generic term)|call back (generic term)|call up (generic term)|recollect (generic term)|think (generic term)
+(verb)|look back|retrospect|remember (generic term)|think back (generic term)
+review article|1
+(noun)|review|critique|critical review|criticism (generic term)|literary criticism (generic term)
+review copy|1
+(noun)|book (generic term)
+reviewer|2
+(noun)|referee|reader|critic (generic term)
+(noun)|commentator|writer (generic term)|author (generic term)
+reviewing stand|1
+(noun)|stand (generic term)
+revile|1
+(verb)|vilify|vituperate|rail|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+revilement|1
+(noun)|abuse|insult|contumely|vilification|disrespect (generic term)|discourtesy (generic term)
+revisal|1
+(noun)|revision|revise|rescript|rewriting (generic term)|revising (generic term)
+revise|3
+(noun)|revision|revisal|rescript|rewriting (generic term)|revising (generic term)
+(verb)|rewrite (generic term)
+(verb)|retool|reorganize (generic term)|reorganise (generic term)|shake up (generic term)
+revised|2
+(adj)|altered (similar term)
+(adj)|amended (similar term)
+revised standard version|1
+(noun)|Revised Standard Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+revised version|1
+(noun)|Revised Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+reviser|1
+(noun)|redact|redactor|rewriter|rewrite man|editor (generic term)|editor in chief (generic term)
+revising|1
+(noun)|rewriting|editing (generic term)|redaction (generic term)
+revision|3
+(noun)|alteration|transformation (generic term)|translation (generic term)
+(noun)|revisal|revise|rescript|rewriting (generic term)|revising (generic term)
+(noun)|rewrite|rescript|writing (generic term)|written material (generic term)|piece of writing (generic term)
+revisionism|1
+(noun)|Bolshevism (generic term)|collectivism (generic term)|sovietism (generic term)
+revisionist|1
+(noun)|communist (generic term)|commie (generic term)
+revisit|1
+(verb)|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+revitalisation|1
+(noun)|revival|resurgence|revitalization|revivification|improvement (generic term)|betterment (generic term)|advance (generic term)
+revitalise|1
+(verb)|revitalize|regenerate (generic term)|renew (generic term)
+revitalised|1
+(adj)|revitalized|revived (similar term)
+revitalising|1
+(adj)|renewing|restorative|reviving|revitalizing|invigorating (similar term)
+revitalization|1
+(noun)|revival|resurgence|revitalisation|revivification|improvement (generic term)|betterment (generic term)|advance (generic term)
+revitalize|2
+(verb)|regenerate|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|revitalise|regenerate (generic term)|renew (generic term)
+revitalized|1
+(adj)|revitalised|revived (similar term)
+revitalizing|1
+(adj)|renewing|restorative|reviving|revitalising|invigorating (similar term)
+revival|2
+(noun)|resurgence|revitalization|revitalisation|revivification|improvement (generic term)|betterment (generic term)|advance (generic term)
+(noun)|revival meeting|rally (generic term)|mass meeting (generic term)
+revival meeting|1
+(noun)|revival|rally (generic term)|mass meeting (generic term)
+revivalism|1
+(noun)|evangelicalism (generic term)
+revivalist|1
+(noun)|evangelist|gospeler|gospeller|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)
+revivalistic|1
+(adj)|evangelicalism (related term)
+revive|5
+(verb)|resuscitate|bring to (generic term)|bring back (generic term)|bring round (generic term)|bring around (generic term)
+(verb)|animate|recreate|reanimate|renovate|repair|quicken|vivify|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+(verb)|boom (generic term)|prosper (generic term)|thrive (generic term)|get ahead (generic term)|flourish (generic term)|expand (generic term)
+(verb)|resurrect|regenerate (generic term)|restore (generic term)|rejuvenate (generic term)
+(verb)|come to|resuscitate|change state (generic term)|turn (generic term)
+revived|2
+(adj)|recrudescent (similar term)|redux (similar term)|renewed (similar term)|resurgent (similar term)|renascent (similar term)|resuscitated (similar term)|revitalized (similar term)|revitalised (similar term)|unrevived (antonym)
+(adj)|reanimated|animated (similar term)|alive (similar term)
+revivification|1
+(noun)|revival|resurgence|revitalization|revitalisation|improvement (generic term)|betterment (generic term)|advance (generic term)
+revivify|1
+(verb)|animate|recreate|reanimate|revive|renovate|repair|quicken|vivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+reviving|1
+(adj)|renewing|restorative|revitalizing|revitalising|invigorating (similar term)
+revocable|1
+(adj)|revokable|rescindable (similar term)|voidable (similar term)|reversible (similar term)|irrevocable (antonym)
+revocation|2
+(noun)|annulment|state (generic term)
+(noun)|abrogation (generic term)|repeal (generic term)|annulment (generic term)
+revokable|1
+(adj)|revocable|rescindable (similar term)|voidable (similar term)|reversible (similar term)|irrevocable (antonym)
+revoke|3
+(noun)|renege|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|play (generic term)
+(verb)|annul|lift|countermand|reverse|repeal|overturn|rescind|vacate|cancel (generic term)|strike down (generic term)
+revolt|4
+(noun)|rebellion|insurrection|rising|uprising|conflict (generic term)|struggle (generic term)|battle (generic term)
+(verb)|rebel (generic term)|arise (generic term)|rise (generic term)|rise up (generic term)
+(verb)|disgust|gross out|repel|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|disgust|nauseate|sicken|churn up|repel (generic term)|repulse (generic term)
+revolting|1
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|skanky|wicked|yucky|offensive (similar term)
+revoltingly|1
+(adv)|disgustingly|distastefully|sickeningly
+revolution|3
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|group action (generic term)
+(noun)|rotation|gyration|turning (generic term)|turn (generic term)
+revolutionary|5
+(adj)|radical|new (similar term)
+(adj)|rotatory|turning|turn (related term)
+(adj)|group action (related term)
+(adj)|counterrevolutionary (antonym)
+(noun)|revolutionist|subversive|subverter|radical (generic term)
+revolutionary armed forces of colombia|1
+(noun)|Revolutionary Armed Forces of Colombia|Fuerzas Armadas Revolucionarios de Colombia|FARC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary calendar|1
+(noun)|Revolutionary calendar|solar calendar (generic term)
+revolutionary calendar month|1
+(noun)|Revolutionary calendar month|calendar month (generic term)|month (generic term)
+revolutionary group|1
+(noun)|political unit (generic term)|political entity (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary organization 17 november|1
+(noun)|Revolutionary Organization 17 November|17 November|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary people's liberation front|1
+(noun)|Revolutionary People's Liberation Party|Revolutionary People's Liberation Front|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary people's liberation party|1
+(noun)|Revolutionary People's Liberation Party|Revolutionary People's Liberation Front|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary people's struggle|1
+(noun)|Revolutionary People's Struggle|ELA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary proletarian army|1
+(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary proletarian initiative nuclei|1
+(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary proletarian nucleus|1
+(noun)|Revolutionary Proletarian Nucleus|Revolutionary Proletarian Initiative Nuclei|NIPR|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionary united front|1
+(noun)|Revolutionary United Front|RUF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+revolutionise|2
+(verb)|revolutionize|inspire|indoctrinate (generic term)
+(verb)|revolutionize|overturn|change (generic term)|alter (generic term)|modify (generic term)
+revolutionism|1
+(noun)|belief (generic term)
+revolutionist|1
+(noun)|revolutionary|subversive|subverter|radical (generic term)
+revolutionize|3
+(verb)|revolutionise|overturn|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|overthrow (generic term)|subvert (generic term)|overturn (generic term)|bring down (generic term)
+(verb)|revolutionise|inspire|indoctrinate (generic term)
+revolutions per minute|1
+(noun)|rpm|rev|rate (generic term)
+revolve|3
+(verb)|go around|rotate|turn (generic term)|revolve around (related term)
+(verb)|orb|orbit|circle (generic term)|circulate (generic term)
+(verb)|roll|move (generic term)|displace (generic term)
+revolve about|1
+(verb)|focus on|center on|revolve around|concentrate on|center|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+revolve around|2
+(verb)|focus on|center on|revolve about|concentrate on|center|refer (generic term)|pertain (generic term)|relate (generic term)|concern (generic term)|come to (generic term)|bear on (generic term)|touch (generic term)|touch on (generic term)
+(verb)|circle around|circle round|circle (generic term)
+revolved|1
+(adj)|rotated|turned (similar term)
+revolver|2
+(noun)|six-gun|six-shooter|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+(noun)|revolving door|door (generic term)
+revolving charge account|1
+(noun)|credit account (generic term)|charge account (generic term)|open account (generic term)
+revolving credit|1
+(noun)|open-end credit|charge account credit|consumer credit (generic term)
+revolving door|2
+(noun)|social group (generic term)
+(noun)|revolver|door (generic term)
+revolving fund|1
+(noun)|fund (generic term)|monetary fund (generic term)
+revue|1
+(noun)|review|variety show (generic term)|variety (generic term)
+revulsion|1
+(noun)|repugnance|repulsion|horror|disgust (generic term)
+rewa-rewa|1
+(noun)|New Zealand honeysuckle|angiospermous tree (generic term)|flowering tree (generic term)
+reward|8
+(noun)|wages|payoff|consequence (generic term)|aftermath (generic term)
+(noun)|payment (generic term)
+(noun)|reinforcement|blessing (generic term)|approval (generic term)|approving (generic term)
+(noun)|offer (generic term)|offering (generic term)
+(noun)|advantage|benefit (generic term)|welfare (generic term)|penalty (antonym)
+(verb)|honor|honour|recognize (generic term)|recognise (generic term)|dishonor (antonym)
+(verb)|reinforce|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|repay|pay back|act (generic term)|move (generic term)
+rewardable|1
+(adj)|rewarding (similar term)
+rewardful|1
+(adj)|rewarding (similar term)
+rewarding|1
+(adj)|appreciated (similar term)|gratifying (similar term)|pleasing (similar term)|satisfying (similar term)|bountied (similar term)|profitable (similar term)|profit-making (similar term)|rewardable (similar term)|rewardful (similar term)|unrewarding (antonym)
+rewire|1
+(verb)|wire (generic term)
+reword|1
+(verb)|paraphrase|rephrase|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+rewording|1
+(noun)|recasting|rephrasing|rewriting (generic term)|revising (generic term)
+rework|1
+(verb)|make over|retread|work (generic term)|work on (generic term)|process (generic term)
+rewrite|3
+(noun)|revision|rescript|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(verb)|write (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+rewrite man|1
+(noun)|redact|redactor|reviser|rewriter|editor (generic term)|editor in chief (generic term)
+rewriter|1
+(noun)|redact|redactor|reviser|rewrite man|editor (generic term)|editor in chief (generic term)
+rewriting|1
+(noun)|revising|editing (generic term)|redaction (generic term)
+rex|1
+(noun)|king|male monarch|Rex|sovereign (generic term)|crowned head (generic term)|monarch (generic term)|female monarch (antonym)|queen (antonym)
+rex begonia|1
+(noun)|king begonia|painted-leaf begonia|beefsteak geranium|Begonia rex|begonia (generic term)
+rex harrison|1
+(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+reye's syndrome|1
+(noun)|Reye's syndrome|syndrome (generic term)
+reyes|1
+(noun)|Neruda|Pablo Neruda|Reyes|Neftali Ricardo Reyes|poet (generic term)
+reykjavik|1
+(noun)|Reykjavik|capital of Iceland|national capital (generic term)|port (generic term)
+reynard|1
+(noun)|Reynard|fox (generic term)
+reynolds|1
+(noun)|Reynolds|Sir Joshua Reynolds|painter (generic term)
+rf|3
+(noun)|releasing factor|releasing hormone|RF|factor (generic term)
+(noun)|rutherfordium|Rf|unnilquadium|Unq|element 104|atomic number 104|chemical element (generic term)|element (generic term)
+(noun)|reticular formation|RF|neural network (generic term)|neural net (generic term)
+rg|1
+(noun)|roentgenium|Rg|element 111|atomic number 111|chemical element (generic term)|element (generic term)
+rh|3
+(noun)|rhesus factor|Rh factor|Rh|antigen (generic term)
+(noun)|rhodium|Rh|atomic number 45|metallic element (generic term)|metal (generic term)
+(noun)|releasing hormone|RH|releasing factor|hypothalamic releasing hormone|hypothalamic releasing factor|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+rh-negative|1
+(adj)|rh-positive (antonym)
+rh-negative blood|1
+(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group (generic term)|blood type (generic term)
+rh-negative blood type|1
+(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group (generic term)|blood type (generic term)
+rh-positive|1
+(adj)|rh-negative (antonym)
+rh-positive blood type|1
+(noun)|Rh-positive blood type|Rh positive|blood group (generic term)|blood type (generic term)
+rh antibody|1
+(noun)|Rh antibody|antibody (generic term)
+rh factor|1
+(noun)|rhesus factor|Rh factor|Rh|antigen (generic term)
+rh incompatibility|1
+(noun)|Rh incompatibility|incompatibility (generic term)
+rh negative|1
+(noun)|Rh-negative blood type|Rh-negative blood|Rh negative|blood group (generic term)|blood type (generic term)
+rh positive|1
+(noun)|Rh-positive blood type|Rh positive|blood group (generic term)|blood type (generic term)
+rhabdomancer|1
+(noun)|water witch|dowser|diviner (generic term)
+rhabdomancy|1
+(noun)|dowse|dowsing|divination (generic term)|foretelling (generic term)|soothsaying (generic term)|fortune telling (generic term)
+rhabdomyoma|1
+(noun)|myoma (generic term)
+rhabdomyosarcoma|1
+(noun)|rhabdosarcoma|sarcoma (generic term)
+rhabdosarcoma|1
+(noun)|rhabdomyosarcoma|sarcoma (generic term)
+rhabdoviridae|1
+(noun)|Rhabdoviridae|arbovirus (generic term)|arborvirus (generic term)
+rhabdovirus|1
+(noun)|animal virus (generic term)
+rhadamanthus|1
+(noun)|Rhadamanthus|Greek deity (generic term)
+rhaeto-romance|1
+(noun)|Rhaeto-Romance|Rhaeto-Romanic|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+rhaeto-romanic|1
+(noun)|Rhaeto-Romance|Rhaeto-Romanic|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+rhagades|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+rhagoletis|1
+(noun)|Rhagoletis|genus Rhagoletis|arthropod genus (generic term)
+rhagoletis pomonella|1
+(noun)|apple maggot|railroad worm|Rhagoletis pomonella|fruit fly (generic term)|pomace fly (generic term)
+rhamnaceae|1
+(noun)|Rhamnaceae|family Rhamnaceae|buckthorn family|dicot family (generic term)|magnoliopsid family (generic term)
+rhamnales|1
+(noun)|Rhamnales|order Rhamnales|plant order (generic term)
+rhamnus|1
+(noun)|Rhamnus|genus Rhamnus|dicot genus (generic term)|magnoliopsid genus (generic term)
+rhamnus californicus|1
+(noun)|coffeeberry|California buckthorn|California coffee|Rhamnus californicus|buckthorn (generic term)
+rhamnus carolinianus|1
+(noun)|Carolina buckthorn|indian cherry|Rhamnus carolinianus|buckthorn (generic term)
+rhamnus croceus|1
+(noun)|redberry|red-berry|Rhamnus croceus|buckthorn (generic term)
+rhamnus frangula|1
+(noun)|alder buckthorn|alder dogwood|Rhamnus frangula|buckthorn (generic term)
+rhamnus purshianus|1
+(noun)|cascara buckthorn|bearberry|bearwood|chittamwood|chittimwood|Rhamnus purshianus|buckthorn (generic term)
+rhaphe|1
+(noun)|raphe|ridge (generic term)
+rhapis|1
+(noun)|Rhapis|genus Rhapis|monocot genus (generic term)|liliopsid genus (generic term)
+rhapis excelsa|1
+(noun)|miniature fan palm|bamboo palm|fern rhapis|Rhapis excelsa|lady palm (generic term)
+rhapis humilis|1
+(noun)|reed rhapis|slender lady palm|Rhapis humilis|lady palm (generic term)
+rhapsodic|1
+(adj)|ecstatic|enraptured|rapturous|rapt|joyous (similar term)
+rhapsodically|1
+(adv)|ecstatically|rapturously
+rhapsodise|2
+(verb)|rhapsodize|tell (generic term)|narrate (generic term)|recount (generic term)|recite (generic term)
+(verb)|rhapsodize|enthuse (generic term)
+rhapsodize|2
+(verb)|rhapsodise|tell (generic term)|narrate (generic term)|recount (generic term)|recite (generic term)
+(verb)|rhapsodise|enthuse (generic term)
+rhapsody|1
+(noun)|epic poem (generic term)|heroic poem (generic term)|epic (generic term)|epos (generic term)
+rhd|1
+(noun)|Red Hand Defenders|RHD|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+rhea|3
+(noun)|Rhea|Titaness (generic term)
+(noun)|nandu|Pterocnemia pennata|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+(noun)|Rhea americana|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+rhea americana|1
+(noun)|rhea|Rhea americana|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+rhea silvia|1
+(noun)|Rhea Silvia|Rea Silvia|vestal virgin (generic term)
+rheidae|1
+(noun)|Rheidae|family Rheidae|bird family (generic term)
+rheiformes|1
+(noun)|Rheiformes|order Rheiformes|animal order (generic term)
+rheims|1
+(noun)|Rheims|Reims|city (generic term)|metropolis (generic term)|urban center (generic term)
+rheims-douay bible|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+rheims-douay version|1
+(noun)|Douay Bible|Douay Version|Douay-Rheims Bible|Douay-Rheims Version|Rheims-Douay Bible|Rheims-Douay Version|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+rhein|1
+(noun)|Rhine|Rhine River|Rhein|river (generic term)
+rheinland|1
+(noun)|Rhineland|Rheinland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+rhenish|2
+(adj)|Rhenish|river (related term)
+(noun)|Rhine wine|Rhenish|hock|white wine (generic term)
+rhenium|1
+(noun)|Re|atomic number 75|metallic element (generic term)|metal (generic term)
+rheologic|1
+(adj)|rheological|physics|physical science|natural philosophy (related term)
+rheological|1
+(adj)|rheologic|physics|physical science|natural philosophy (related term)
+rheology|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+rheometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+rheostat|1
+(noun)|variable resistor|resistor (generic term)|resistance (generic term)
+rhesus|1
+(noun)|rhesus monkey|Macaca mulatta|macaque (generic term)
+rhesus factor|1
+(noun)|Rh factor|Rh|antigen (generic term)
+rhesus monkey|1
+(noun)|rhesus|Macaca mulatta|macaque (generic term)
+rhetoric|4
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|grandiosity|magniloquence|ornateness|grandiloquence|expressive style (generic term)|style (generic term)
+(noun)|palaver|hot air|empty words|empty talk|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|literary study (generic term)
+rhetorical|2
+(adj)|expressive style|style (related term)
+(adj)|anapestic (similar term)|anapaestic (similar term)|bombastic (similar term)|declamatory (similar term)|large (similar term)|orotund (similar term)|tumid (similar term)|turgid (similar term)|flowery (similar term)|ornate (similar term)|embellished (similar term)|empurpled (similar term)|over-embellished (similar term)|purple (similar term)|forensic (similar term)|grandiloquent (similar term)|magniloquent (similar term)|tall (similar term)|oratorical (similar term)|poetic (similar term)|poetical (similar term)|stylistic (similar term)|fancy (related term)|figurative (related term)|nonliteral (related term)|formal (related term)|unrhetorical (antonym)
+rhetorical device|1
+(noun)|device (generic term)
+rhetorical question|1
+(noun)|statement (generic term)
+rhetorician|1
+(noun)|orator|speechmaker|public speaker|speechifier|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+rheum|2
+(noun)|discharge (generic term)|emission (generic term)
+(noun)|Rheum|genus Rheum|dicot genus (generic term)|magnoliopsid genus (generic term)
+rheum australe|1
+(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb (generic term)|rhubarb plant (generic term)
+rheum cultorum|1
+(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb (generic term)|rhubarb plant (generic term)
+rheum emodi|1
+(noun)|Himalayan rhubarb|Indian rhubarb|red-veined pie plant|Rheum australe|Rheum emodi|rhubarb (generic term)|rhubarb plant (generic term)
+rheum palmatum|1
+(noun)|Chinese rhubarb|Rheum palmatum|rhubarb (generic term)|rhubarb plant (generic term)
+rheum rhabarbarum|1
+(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb (generic term)|rhubarb plant (generic term)
+rheum rhaponticum|1
+(noun)|pie plant|garden rhubarb|Rheum cultorum|Rheum rhabarbarum|Rheum rhaponticum|rhubarb (generic term)|rhubarb plant (generic term)
+rheumatic|2
+(adj)|arthritic|creaky|rheumatoid|rheumy|unhealthy (similar term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+rheumatic aortitis|1
+(noun)|aortitis (generic term)
+rheumatic fever|1
+(noun)|infectious disease (generic term)
+rheumatic heart disease|1
+(noun)|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+rheumatism|2
+(noun)|disease (generic term)
+(noun)|rheumatoid arthritis|atrophic arthritis|arthritis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+rheumatism weed|2
+(noun)|Indian hemp|Apocynum cannabinum|dogbane (generic term)
+(noun)|common dogbane|spreading dogbane|Apocynum androsaemifolium|dogbane (generic term)
+rheumatoid|1
+(adj)|arthritic|creaky|rheumatic|rheumy|unhealthy (similar term)
+rheumatoid arthritis|1
+(noun)|atrophic arthritis|rheumatism|arthritis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+rheumatoid factor|1
+(noun)|autoantibody (generic term)
+rheumatoid spondylitis|1
+(noun)|ankylosing spondylitis|Marie-Strumpell disease|spondylitis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+rheumatologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+rheumatology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+rheumy|2
+(adj)|wet (similar term)
+(adj)|arthritic|creaky|rheumatic|rheumatoid|unhealthy (similar term)
+rhexia|1
+(noun)|Rhexia|genus Rhexia|rosid dicot genus (generic term)
+rhibhus|1
+(noun)|Ribhus|Rhibhus|Hindu deity (generic term)
+rhinal|1
+(adj)|nasal|chemoreceptor (related term)
+rhincodon|1
+(noun)|Rhincodon|genus Rhincodon|fish genus (generic term)
+rhincodon typus|1
+(noun)|whale shark|Rhincodon typus|shark (generic term)
+rhincodontidae|1
+(noun)|Rhincodontidae|family Rhincodontidae|fish family (generic term)
+rhine|2
+(noun)|Rhine|J. B. Rhine|Joseph Banks Rhine|parapsychologist (generic term)
+(noun)|Rhine|Rhine River|Rhein|river (generic term)
+rhine river|1
+(noun)|Rhine|Rhine River|Rhein|river (generic term)
+rhine wine|1
+(noun)|Rhine wine|Rhenish|hock|white wine (generic term)
+rhineland|1
+(noun)|Rhineland|Rheinland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+rhinencephalon|1
+(noun)|olfactory brain|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+rhinestone|1
+(noun)|rock crystal (generic term)|transparent quartz (generic term)
+rhinion|1
+(noun)|craniometric point (generic term)
+rhinitis|1
+(noun)|coryza|inflammation (generic term)|redness (generic term)|rubor (generic term)
+rhino|1
+(noun)|rhinoceros|odd-toed ungulate (generic term)|perissodactyl (generic term)|perissodactyl mammal (generic term)
+rhinobatidae|1
+(noun)|Rhinobatidae|family Rhinobatidae|fish family (generic term)
+rhinoceros|1
+(noun)|rhino|odd-toed ungulate (generic term)|perissodactyl (generic term)|perissodactyl mammal (generic term)
+rhinoceros antiquitatis|1
+(noun)|woolly rhinoceros|Rhinoceros antiquitatis|rhinoceros (generic term)|rhino (generic term)
+rhinoceros beetle|1
+(noun)|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+rhinoceros family|1
+(noun)|Rhinocerotidae|family Rhinocerotidae|mammal family (generic term)
+rhinoceros unicornis|1
+(noun)|Indian rhinoceros|Rhinoceros unicornis|rhinoceros (generic term)|rhino (generic term)
+rhinocerotidae|1
+(noun)|Rhinocerotidae|family Rhinocerotidae|rhinoceros family|mammal family (generic term)
+rhinolaryngologist|1
+(noun)|ENT man|ear-nose-and-throat doctor|otolaryngologist|otorhinolaryngologist|specialist (generic term)|medical specialist (generic term)
+rhinolaryngology|1
+(noun)|otorhinolaryngology|otolaryngology|medicine (generic term)|medical specialty (generic term)
+rhinolophidae|1
+(noun)|Rhinolophidae|family Rhinolophidae|mammal family (generic term)
+rhinonicteris|1
+(noun)|Rhinonicteris|genus Rhinonicteris|mammal genus (generic term)
+rhinonicteris aurantius|1
+(noun)|orange bat|orange horseshoe bat|Rhinonicteris aurantius|leafnose bat (generic term)|leaf-nosed bat (generic term)
+rhinopathy|1
+(noun)|pathology (generic term)
+rhinophyma|1
+(noun)|hypertrophic rosacea|toper's nose|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+rhinoplasty|1
+(noun)|nose job|face lift (generic term)|facelift (generic term)|lift (generic term)|face lifting (generic term)|cosmetic surgery (generic term)|rhytidectomy (generic term)|rhytidoplasty (generic term)|nip and tuck (generic term)
+rhinoptera|1
+(noun)|Rhinoptera|genus Rhinoptera|fish genus (generic term)
+rhinoptera bonasus|1
+(noun)|cownose ray|cow-nosed ray|Rhinoptera bonasus|eagle ray (generic term)
+rhinorrhea|1
+(noun)|symptom (generic term)
+rhinoscope|1
+(noun)|medical instrument (generic term)
+rhinoscopy|1
+(noun)|examination (generic term)|scrutiny (generic term)
+rhinosporidiosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)|rhinopathy (generic term)
+rhinostenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)|rhinopathy (generic term)
+rhinotermitidae|1
+(noun)|Rhinotermitidae|family Rhinotermitidae|arthropod family (generic term)
+rhinotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+rhinotracheitis|1
+(noun)|animal disease (generic term)
+rhinovirus|1
+(noun)|picornavirus (generic term)
+rhipsalis|1
+(noun)|Rhipsalis|genus Rhipsalis|caryophylloid dicot genus (generic term)
+rhiptoglossa|1
+(noun)|Chamaeleontidae|family Chamaeleontidae|Chamaeleonidae|family Chamaeleonidae|Rhiptoglossa|family Rhiptoglossa|reptile family (generic term)
+rhizobiaceae|1
+(noun)|Rhizobiaceae|family Rhizobiaceae|bacteria family (generic term)
+rhizobium|1
+(noun)|Rhizobium|genus Rhizobium|bacteria genus (generic term)
+rhizoctinia|1
+(noun)|fungus (generic term)
+rhizoctinia disease|1
+(noun)|plant disease (generic term)
+rhizoctinia solani|1
+(noun)|potato fungus|Pellicularia filamentosa|Rhizoctinia solani|fungus (generic term)
+rhizoid|1
+(noun)|fibril (generic term)|filament (generic term)|strand (generic term)
+rhizoidal|1
+(adj)|fibril|filament|strand (related term)
+rhizomatous|1
+(adj)|stalk|stem (related term)
+rhizomatous begonia|1
+(noun)|begonia (generic term)
+rhizome|1
+(noun)|rootstock|rootstalk|stalk (generic term)|stem (generic term)
+rhizomorph|1
+(noun)|hypha (generic term)
+rhizophora|1
+(noun)|Rhizophora|genus Rhizophora|dicot genus (generic term)|magnoliopsid genus (generic term)
+rhizophora mangle|1
+(noun)|mangrove|Rhizophora mangle|angiospermous tree (generic term)|flowering tree (generic term)
+rhizophoraceae|1
+(noun)|Rhizophoraceae|family Rhizophoraceae|mangrove family|dicot family (generic term)|magnoliopsid family (generic term)
+rhizopod|1
+(noun)|rhizopodan|protozoan (generic term)|protozoon (generic term)
+rhizopoda|1
+(noun)|Rhizopoda|subclass Rhizopoda|class (generic term)
+rhizopodan|1
+(noun)|rhizopod|protozoan (generic term)|protozoon (generic term)
+rhizopogon|1
+(noun)|Rhizopogon|genus Rhizopogon|fungus genus (generic term)
+rhizopogon idahoensis|1
+(noun)|Rhizopogon idahoensis|false truffle (generic term)
+rhizopogonaceae|1
+(noun)|Rhizopogonaceae|family Rhizopogonaceae|fungus family (generic term)
+rhizopus|1
+(noun)|mold (generic term)|mould (generic term)
+rhizopus nigricans|1
+(noun)|bread mold|Rhizopus nigricans|rhizopus (generic term)
+rhizopus stolonifer|1
+(noun)|leak fungus|ring rot fungus|Rhizopus stolonifer|rhizoid (generic term)
+rhizotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+rho|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+rhodanthe|1
+(noun)|Swan River everlasting|Rhodanthe manglesii|Helipterum manglesii|everlasting (generic term)|everlasting flower (generic term)
+rhodanthe manglesii|1
+(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting (generic term)|everlasting flower (generic term)
+rhode island|2
+(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state (generic term)
+(noun)|Rhode Island|Colony (generic term)
+rhode island bent|1
+(noun)|velvet bent|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+rhode island red|1
+(noun)|Rhode Island red|chicken (generic term)|Gallus gallus (generic term)
+rhode islander|1
+(noun)|Rhode Islander|American (generic term)
+rhodes|2
+(noun)|Rhodes|Cecil Rhodes|Cecil J. Rhodes|Cecil John Rhodes|financier (generic term)|moneyman (generic term)|colonizer (generic term)|coloniser (generic term)
+(noun)|Rhodes|Rodhos|Aegean island (generic term)
+rhodes grass|1
+(noun)|Rhodes grass|Chloris gayana|finger grass (generic term)
+rhodes scholar|1
+(noun)|Rhodes scholar|scholar (generic term)
+rhodesia|1
+(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country (generic term)|African nation (generic term)
+rhodesian|1
+(adj)|Rhodesian|African country|African nation (related term)
+rhodesian man|1
+(noun)|Rhodesian man|Homo rhodesiensis|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)
+rhodesian ridgeback|1
+(noun)|Rhodesian ridgeback|hunting dog (generic term)
+rhodium|1
+(noun)|Rh|atomic number 45|metallic element (generic term)|metal (generic term)
+rhodochrosite|1
+(noun)|mineral (generic term)
+rhododendron|1
+(noun)|shrub (generic term)|bush (generic term)
+rhododendron californicum|1
+(noun)|coast rhododendron|Rhododendron californicum|rhododendron (generic term)
+rhododendron maxima|1
+(noun)|rosebay|Rhododendron maxima|rhododendron (generic term)
+rhododendron viscosum|1
+(noun)|swamp azalea|swamp honeysuckle|white honeysuckle|Rhododendron viscosum|rhododendron (generic term)
+rhodolite|1
+(noun)|garnet (generic term)
+rhodomontade|1
+(noun)|braggadocio|bluster|rodomontade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+rhodonite|1
+(noun)|mineral (generic term)
+rhodope mountains|1
+(noun)|Rhodope Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+rhodophyceae|1
+(noun)|Rhodophyceae|class Rhodophyceae|class (generic term)
+rhodophyta|1
+(noun)|Rhodophyta|division Rhodophyta|division (generic term)
+rhodopsin|1
+(noun)|visual purple|retinal purple|photopigment (generic term)
+rhodosphaera|1
+(noun)|Rhodosphaera|genus Rhodosphaera|dicot genus (generic term)|magnoliopsid genus (generic term)
+rhodosphaera rhodanthema|1
+(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood (generic term)
+rhodymenia|1
+(noun)|Rhodymenia|genus Rhodymenia|protoctist genus (generic term)
+rhodymenia palmata|1
+(noun)|dulse|Rhodymenia palmata|red algae (generic term)
+rhodymeniaceae|1
+(noun)|Rhodymeniaceae|family Rhodymeniaceae|protoctist family (generic term)
+rhoeadales|1
+(noun)|Rhoeadales|order Rhoeadales|Papaverales|order Papaverales|plant order (generic term)
+rhomb|1
+(noun)|rhombus|parallelogram (generic term)
+rhombencephalon|1
+(noun)|hindbrain|neural structure (generic term)
+rhombic|1
+(adj)|parallelogram (related term)
+rhombohedral|1
+(adj)|trigonal|symmetrical (similar term)|symmetric (similar term)
+rhombohedron|1
+(noun)|parallelepiped (generic term)|parallelopiped (generic term)|parallelepipedon (generic term)|parallelopipedon (generic term)|hexahedron (generic term)
+rhomboid|3
+(adj)|rhomboidal|parallelogram (related term)
+(noun)|parallelogram (generic term)
+(noun)|rhomboid muscle|skeletal muscle (generic term)|striated muscle (generic term)
+rhomboid minor muscle|1
+(noun)|lesser rhomboid muscle|musculus rhomboideus minor|rhomboid (generic term)|rhomboid muscle (generic term)
+rhomboid muscle|1
+(noun)|rhomboid|skeletal muscle (generic term)|striated muscle (generic term)
+rhomboidal|1
+(adj)|rhomboid|parallelogram (related term)
+rhomboideus major muscle|1
+(noun)|greater rhomboid muscle|musculus rhomboideus major|rhomboid (generic term)|rhomboid muscle (generic term)
+rhombus|1
+(noun)|rhomb|parallelogram (generic term)
+rhonchus|1
+(noun)|noise (generic term)
+rhone|1
+(noun)|Rhone|Rhone River|river (generic term)
+rhone-alpes|1
+(noun)|Rhone-Alpes|French region (generic term)
+rhone river|1
+(noun)|Rhone|Rhone River|river (generic term)
+rhone wine|1
+(noun)|Rhone wine|wine (generic term)|vino (generic term)
+rhubarb|2
+(noun)|pieplant|vegetable (generic term)|veggie (generic term)
+(noun)|rhubarb plant|herb (generic term)|herbaceous plant (generic term)
+rhubarb pie|1
+(noun)|pie (generic term)
+rhubarb plant|1
+(noun)|rhubarb|herb (generic term)|herbaceous plant (generic term)
+rhumb|1
+(noun)|rhumb line|loxodrome|line (generic term)
+rhumb line|1
+(noun)|rhumb|loxodrome|line (generic term)
+rhumba|4
+(noun)|rumba|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|rumba|folk dancing (generic term)|folk dance (generic term)
+(noun)|rumba|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|rumba|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+rhus|1
+(noun)|Rhus|genus Rhus|dicot genus (generic term)|magnoliopsid genus (generic term)
+rhus aromatica|1
+(noun)|fragrant sumac|lemon sumac|Rhus aromatica|sumac (generic term)|sumach (generic term)|shumac (generic term)
+rhus copallina|1
+(noun)|dwarf sumac|mountain sumac|black sumac|shining sumac|Rhus copallina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+rhus dermatitis|1
+(noun)|Rhus dermatitis|contact dermatitis (generic term)
+rhus diversiloba|1
+(noun)|western poison oak|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant (generic term)
+rhus glabra|1
+(noun)|smooth sumac|scarlet sumac|vinegar tree|Rhus glabra|sumac (generic term)|sumach (generic term)|shumac (generic term)
+rhus laurina|1
+(noun)|laurel sumac|Malosma laurina|Rhus laurina|shrub (generic term)|bush (generic term)
+rhus ovata|1
+(noun)|sugar-bush|sugar sumac|Rhus ovata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+rhus quercifolia|1
+(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant (generic term)
+rhus radicans|1
+(noun)|poison ivy|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+rhus rhodanthema|1
+(noun)|Australian sumac|Rhodosphaera rhodanthema|Rhus rhodanthema|angiospermous yellowwood (generic term)
+rhus toxicodenedron|1
+(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant (generic term)
+rhus trilobata|1
+(noun)|squawbush|squaw-bush|skunkbush|Rhus trilobata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+rhus typhina|1
+(noun)|staghorn sumac|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+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 (generic term)
+rhus vernix|1
+(noun)|poison ash|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant (generic term)
+rhyacotriton|1
+(noun)|Rhyacotriton|genus Rhyacotriton|amphibian genus (generic term)
+rhyacotriton olympicus|1
+(noun)|olympic salamander|Rhyacotriton olympicus|salamander (generic term)
+rhyme|4
+(noun)|rime|versification (generic term)
+(noun)|verse|poem (generic term)|verse form (generic term)
+(verb)|rime|create verbally (generic term)
+(verb)|rime|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+rhyme royal|1
+(noun)|stanza (generic term)
+rhymed|1
+(adj)|rhyming|riming|alliterative (similar term)|assonant (similar term)|end-rhymed (similar term)|unrhymed (antonym)
+rhymeless|1
+(adj)|unrhymed|unrimed|rimeless|rhymed (antonym)
+rhymer|1
+(noun)|rhymester|versifier|poetizer|poetiser|writer (generic term)|author (generic term)
+rhymester|1
+(noun)|rhymer|versifier|poetizer|poetiser|writer (generic term)|author (generic term)
+rhyming|1
+(adj)|rhymed|riming|alliterative (similar term)|assonant (similar term)|end-rhymed (similar term)|unrhymed (antonym)
+rhyming slang|1
+(noun)|slang (generic term)|cant (generic term)|jargon (generic term)|lingo (generic term)|argot (generic term)|patois (generic term)|vernacular (generic term)
+rhynchocephalia|1
+(noun)|Rhynchocephalia|order Rhynchocephalia|animal order (generic term)
+rhynchoelaps|1
+(noun)|Rhynchoelaps|genus Rhynchoelaps|reptile genus (generic term)
+rhynchoelaps australis|1
+(noun)|Australian coral snake|Rhynchoelaps australis|coral snake (generic term)|Old World coral snake (generic term)
+rhyncostylis|1
+(noun)|Rhyncostylis|genus Rhyncostylis|monocot genus (generic term)|liliopsid genus (generic term)
+rhynia|1
+(noun)|Rhynia|genus Rhynia|fern genus (generic term)
+rhyniaceae|1
+(noun)|Rhyniaceae|family Rhyniaceae|fern family (generic term)
+rhyolite|1
+(noun)|igneous rock (generic term)
+rhythm|5
+(noun)|beat|musical rhythm|musical time (generic term)
+(noun)|regular recurrence|cyclicity (generic term)|periodicity (generic term)
+(noun)|cycle|round|time interval (generic term)|interval (generic term)
+(noun)|speech rhythm|prosody (generic term)|inflection (generic term)|template (generic term)|templet (generic term)|guide (generic term)
+(noun)|rhythm method of birth control|rhythm method|calendar method of birth control|calendar method|natural family planning (generic term)
+rhythm and blues|1
+(noun)|R and B|popular music (generic term)|popular music genre (generic term)|black music (generic term)|African-American music (generic term)
+rhythm and blues musician|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+rhythm method|1
+(noun)|rhythm method of birth control|rhythm|calendar method of birth control|calendar method|natural family planning (generic term)
+rhythm method of birth control|1
+(noun)|rhythm method|rhythm|calendar method of birth control|calendar method|natural family planning (generic term)
+rhythm section|1
+(noun)|percussion section|percussion|section (generic term)
+rhythmic|1
+(adj)|rhythmical|Adonic (similar term)|beating (similar term)|pulsating (similar term)|pulsing (similar term)|cadenced (similar term)|cadent (similar term)|danceable (similar term)|jazzy (similar term)|lilting (similar term)|swinging (similar term)|swingy (similar term)|tripping (similar term)|measured (similar term)|metrical (similar term)|metric (similar term)|periodic (similar term)|Sapphic (similar term)|chantlike (similar term)|intoned (similar term)|singsong (similar term)|syncopated (similar term)|throbbing (similar term)|regular (related term)|unrhythmical (antonym)
+rhythmic pattern|1
+(noun)|poetic rhythm|prosody|versification (generic term)
+rhythmical|1
+(adj)|rhythmic|Adonic (similar term)|beating (similar term)|pulsating (similar term)|pulsing (similar term)|cadenced (similar term)|cadent (similar term)|danceable (similar term)|jazzy (similar term)|lilting (similar term)|swinging (similar term)|swingy (similar term)|tripping (similar term)|measured (similar term)|metrical (similar term)|metric (similar term)|periodic (similar term)|Sapphic (similar term)|chantlike (similar term)|intoned (similar term)|singsong (similar term)|syncopated (similar term)|throbbing (similar term)|regular (related term)|unrhythmical (antonym)
+rhythmicity|1
+(noun)|sound property (generic term)
+rhytidectomy|1
+(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidoplasty|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+rhytidoplasty|1
+(noun)|face lift|facelift|lift|face lifting|cosmetic surgery|rhytidectomy|nip and tuck|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+ri|1
+(noun)|Rhode Island|Little Rhody|Ocean State|RI|American state (generic term)
+rial|3
+(noun)|Yemeni rial|Yemeni monetary unit (generic term)
+(noun)|riyal-omani|Omani rial|Omani monetary unit (generic term)
+(noun)|Iranian rial|Iranian monetary unit (generic term)
+riant|1
+(adj)|laughing|happy (similar term)
+riata|1
+(noun)|lasso|lariat|reata|rope (generic term)
+rib|8
+(noun)|support (generic term)
+(noun)|costa|bone (generic term)|os (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|remark (generic term)|comment (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|molding (generic term)|moulding (generic term)
+(verb)|knit (generic term)
+(verb)|ridicule|roast|guy|blackguard|laugh at|jest at|make fun|poke fun|mock (generic term)|bemock (generic term)
+rib cage|1
+(noun)|skeletal structure (generic term)
+rib joint pliers|1
+(noun)|pliers (generic term)|pair of pliers (generic term)|plyers (generic term)
+rib roast|1
+(noun)|standing rib roast|roast (generic term)|joint (generic term)
+ribald|2
+(adj)|bawdy|off-color|dirty (similar term)
+(noun)|vulgarian (generic term)
+ribaldry|2
+(noun)|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|gaminess|raciness|spiciness|indelicacy (generic term)
+riband|1
+(noun)|ribband|ribbon (generic term)
+ribavirin|1
+(noun)|Virazole|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+ribband|1
+(noun)|riband|ribbon (generic term)
+ribbed|2
+(adj)|costate (similar term)|riblike (similar term)|ribless (antonym)
+(adj)|costate|rough (similar term)|unsmooth (similar term)
+ribbed toad|1
+(noun)|tailed frog|bell toad|tailed toad|Ascaphus trui|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+ribbed vault|1
+(noun)|vault (generic term)
+ribbing|2
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|tease|teasing|tantalization|harassment (generic term)|molestation (generic term)
+ribbon|4
+(noun)|thread|object (generic term)|physical object (generic term)
+(noun)|decoration|laurel wreath|medal|medallion|palm|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|typewriter ribbon|strip (generic term)|slip (generic term)
+(noun)|notion (generic term)
+ribbon-leaved water plantain|1
+(noun)|water plantain (generic term)|Alisma plantago-aquatica (generic term)
+ribbon-shaped|1
+(adj)|formed (similar term)
+ribbon development|1
+(noun)|building complex (generic term)|complex (generic term)
+ribbon fern|3
+(noun)|spider fern|Pteris serrulata|fern (generic term)
+(noun)|grass fern|Vittaria lineata|fern (generic term)
+(noun)|Ophioglossum pendulum|adder's tongue (generic term)|adder's tongue fern (generic term)
+ribbon grass|1
+(noun)|reed canary grass|gardener's garters|lady's laces|Phalaris arundinacea|grass (generic term)
+ribbon snake|1
+(noun)|Thamnophis sauritus|garter snake (generic term)|grass snake (generic term)
+ribbon tree|1
+(noun)|ribbonwood|Plagianthus regius|Plagianthus betulinus|tree (generic term)
+ribbon worm|1
+(noun)|nemertean|nemertine|proboscis worm|worm (generic term)
+ribbonfish|2
+(noun)|oarfish|king of the herring|Regalecus glesne|soft-finned fish (generic term)|malacopterygian (generic term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+ribbonlike|1
+(adj)|ribbony|thin (similar term)
+ribbonwood|2
+(noun)|ribbon tree|Plagianthus regius|Plagianthus betulinus|tree (generic term)
+(noun)|lacebark|houhere|Hoheria populnea|tree (generic term)
+ribbony|1
+(adj)|ribbonlike|thin (similar term)
+ribes|1
+(noun)|Ribes|genus Ribes|plant genus (generic term)
+ribes grossularia|1
+(noun)|gooseberry|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub (generic term)|bush (generic term)
+ribes nigrum|1
+(noun)|black currant|European black currant|Ribes nigrum|currant (generic term)|currant bush (generic term)
+ribes rubrum|1
+(noun)|red currant|garden current|Ribes rubrum|currant (generic term)|currant bush (generic term)
+ribes sanguineum|1
+(noun)|winter currant|Ribes sanguineum|currant (generic term)|currant bush (generic term)
+ribes sativum|1
+(noun)|white currant|Ribes sativum|currant (generic term)|currant bush (generic term)
+ribes uva-crispa|1
+(noun)|gooseberry|gooseberry bush|Ribes uva-crispa|Ribes grossularia|shrub (generic term)|bush (generic term)
+ribgrass|1
+(noun)|English plantain|narrow-leaved plantain|ribwort|ripple-grass|buckthorn|Plantago lanceolata|plantain (generic term)
+ribhus|1
+(noun)|Ribhus|Rhibhus|Hindu deity (generic term)
+ribier|1
+(noun)|vinifera grape (generic term)
+ribless|1
+(adj)|ribbed (antonym)
+riblike|1
+(adj)|ribbed (similar term)
+riboflavin|1
+(noun)|vitamin B2|vitamin G|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+ribonuclease|1
+(noun)|ribonucleinase|RNase|transferase (generic term)
+ribonucleic acid|1
+(noun)|RNA|polymer (generic term)
+ribonucleinase|1
+(noun)|ribonuclease|RNase|transferase (generic term)
+ribose|1
+(noun)|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+ribosome|1
+(noun)|organelle (generic term)|cell organelle (generic term)|cell organ (generic term)
+ribwort|1
+(noun)|English plantain|narrow-leaved plantain|ribgrass|ripple-grass|buckthorn|Plantago lanceolata|plantain (generic term)
+ricardo|1
+(noun)|Ricardo|David Ricardo|economist (generic term)|economic expert (generic term)
+rice|5
+(noun)|grain (generic term)|food grain (generic term)|cereal (generic term)
+(noun)|cereal (generic term)|cereal grass (generic term)
+(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist (generic term)|lyrist (generic term)
+(noun)|Rice|Elmer Rice|Elmer Leopold Rice|Elmer Reizenstein|dramatist (generic term)|playwright (generic term)
+(verb)|sift (generic term)|sieve (generic term)|strain (generic term)
+rice-grain fritillary|1
+(noun)|mission bells|Fritillaria affinis|Fritillaria lanceolata|Fritillaria mutica|fritillary (generic term)|checkered lily (generic term)
+rice beer|1
+(noun)|sake|saki|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+rice grass|1
+(noun)|ricegrass|cereal (generic term)|cereal grass (generic term)
+rice paddy|1
+(noun)|paddy|paddy field|field (generic term)
+rice paper|1
+(noun)|paper (generic term)
+rice rat|1
+(noun)|Oryzomys palustris|rat (generic term)
+rice weevil|1
+(noun)|black weevil|Sitophylus oryzae|weevil (generic term)
+ricebird|2
+(noun)|bobolink|reedbird|Dolichonyx oryzivorus|New World oriole (generic term)|American oriole (generic term)|oriole (generic term)
+(noun)|Java sparrow|Java finch|Padda oryzivora|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+ricegrass|1
+(noun)|rice grass|cereal (generic term)|cereal grass (generic term)
+ricer|1
+(noun)|kitchen utensil (generic term)
+rich|13
+(adj)|affluent (similar term)|flush (similar term)|loaded (similar term)|moneyed (similar term)|wealthy (similar term)|comfortable (similar term)|easy (similar term)|prosperous (similar term)|well-fixed (similar term)|well-heeled (similar term)|well-off (similar term)|well-situated (similar term)|well-to-do (similar term)|abundant (related term)|privileged (related term)|poor (antonym)
+(adj)|poor (antonym)
+(adj)|valuable (similar term)
+(adj)|fat|fertile|productive|fruitful (similar term)
+(adj)|deep|colorful (similar term)|colourful (similar term)
+(adj)|productive (similar term)
+(adj)|lean (antonym)
+(adj)|deluxe (similar term)|gilded (similar term)|grand (similar term)|luxurious (similar term)|opulent (similar term)|princely (similar term)|sumptuous (similar term)|lavish (similar term)|lucullan (similar term)|lush (similar term)|plush (similar term)|plushy (similar term)|poor (antonym)
+(adj)|unwholesome (similar term)
+(adj)|full-bodied|racy|robust|tasty (similar term)
+(adj)|full (similar term)
+(adj)|ample|copious|plenteous|plentiful|abundant (similar term)
+(noun)|rich people|people (generic term)|poor (antonym)|poor people (antonym)
+rich man|1
+(noun)|man of means|wealthy man|rich person (generic term)|wealthy person (generic term)|have (generic term)
+rich people|1
+(noun)|rich|people (generic term)|poor (antonym)|poor people (antonym)
+rich person|1
+(noun)|wealthy person|have|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+richard adolph zsigmondy|1
+(noun)|Zsigmondy|Richard Adolph Zsigmondy|chemist (generic term)
+richard august carl emil erlenmeyer|1
+(noun)|Erlenmeyer|Richard August Carl Emil Erlenmeyer|chemist (generic term)
+richard brinsley sheridan|1
+(noun)|Sheridan|Richard Brinsley Sheridan|dramatist (generic term)|playwright (generic term)
+richard buckminster fuller|1
+(noun)|Fuller|Buckminster Fuller|R. Buckminster Fuller|Richard Buckminster Fuller|architect (generic term)|designer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+richard burbage|1
+(noun)|Burbage|Richard Burbage|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+richard burdon haldane|1
+(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman (generic term)|solon (generic term)|national leader (generic term)
+richard burton|2
+(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer (generic term)|adventurer (generic term)
+(noun)|Burton|Richard Burton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+richard coeur de lion|1
+(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England (generic term)|King of Great Britain (generic term)
+richard d'oyly carte|1
+(noun)|D'Oyly Carte|Richard D'Oyly Carte|showman (generic term)|promoter (generic term)|impresario (generic term)
+richard d. fosbury|1
+(noun)|Fosbury|Dick Fosbury|Richard D. Fosbury|athlete (generic term)|jock (generic term)
+richard e. byrd|1
+(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer (generic term)|adventurer (generic term)|naval officer (generic term)
+richard e. smalley|1
+(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist (generic term)
+richard errett smalley|1
+(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist (generic term)
+richard erskine leakey|1
+(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+richard evelyn byrd|1
+(noun)|Byrd|Richard E. Byrd|Richard Evelyn Byrd|Admiral Byrd|explorer (generic term)|adventurer (generic term)|naval officer (generic term)
+richard feynman|1
+(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist (generic term)
+richard haldane|1
+(noun)|Haldane|Richard Haldane|Richard Burdon Haldane|First Viscount Haldane of Cloan|statesman (generic term)|solon (generic term)|national leader (generic term)
+richard henry lee|1
+(noun)|Lee|Richard Henry Lee|American Revolutionary leader (generic term)
+richard henry tawney|1
+(noun)|Tawney|Richard Henry Tawney|economist (generic term)|economic expert (generic term)
+richard hooker|1
+(noun)|Hooker|Richard Hooker|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+richard horatio edgar wallace|1
+(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer (generic term)|author (generic term)
+richard i|1
+(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England (generic term)|King of Great Britain (generic term)
+richard ii|1
+(noun)|Richard II|King of England (generic term)|King of Great Britain (generic term)
+richard iii|1
+(noun)|Richard III|King of England (generic term)|King of Great Britain (generic term)
+richard j. roberts|1
+(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist (generic term)
+richard john roberts|1
+(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist (generic term)
+richard jordan gatling|1
+(noun)|Gatling|Richard Jordan Gatling|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+richard kuhn|1
+(noun)|Kuhn|Richard Kuhn|chemist (generic term)
+richard leakey|1
+(noun)|Leakey|Richard Leakey|Richard Erskine Leakey|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|anthropologist (generic term)
+richard lovelace|1
+(noun)|Lovelace|Richard Lovelace|poet (generic term)
+richard m. nixon|1
+(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+richard milhous nixon|1
+(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+richard morris hunt|1
+(noun)|Hunt|Richard Morris Hunt|architect (generic term)|designer (generic term)
+richard neville|1
+(noun)|Warwick|Earl of Warwick|Richard Neville|Kingmaker|statesman (generic term)|solon (generic term)|national leader (generic term)
+richard nixon|1
+(noun)|Nixon|Richard Nixon|Richard M. Nixon|Richard Milhous Nixon|President Nixon|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+richard phillips feynman|1
+(noun)|Feynman|Richard Feynman|Richard Phillips Feynman|nuclear physicist (generic term)
+richard rodgers|1
+(noun)|Rodgers|Richard Rodgers|composer (generic term)
+richard roe|1
+(noun)|Richard Roe|party (generic term)
+richard smalley|1
+(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist (generic term)
+richard starkey|1
+(noun)|Starr|Ringo Starr|Starkey|Richard Starkey|rock star (generic term)|drummer (generic term)
+richard strauss|1
+(noun)|Strauss|Richard Strauss|composer (generic term)
+richard the lion-hearted|1
+(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England (generic term)|King of Great Britain (generic term)
+richard the lionheart|1
+(noun)|Richard I|Richard Coeur de Lion|Richard the Lionheart|Richard the Lion-Hearted|King of England (generic term)|King of Great Britain (generic term)
+richard trevithick|1
+(noun)|Trevithick|Richard Trevithick|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+richard upjohn|1
+(noun)|Upjohn|Richard Upjohn|architect (generic term)|designer (generic term)
+richard von krafft-ebing|1
+(noun)|Krafft-Ebing|Richard von Krafft-Ebing|Baron Richard von Krafft-Ebing|neurologist (generic term)|brain doctor (generic term)
+richard wagner|1
+(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer (generic term)
+richard wright|1
+(noun)|Wright|Richard Wright|writer (generic term)|author (generic term)
+richards|1
+(noun)|Richards|I. A. Richards|Ivor Armstrong Richards|literary critic (generic term)|semanticist (generic term)|semiotician (generic term)
+richardson|2
+(noun)|Richardson|Henry Hobson Richardson|architect (generic term)|designer (generic term)
+(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+richardson's geranium|1
+(noun)|Richardson's geranium|Geranium richardsonii|cranesbill (generic term)|crane's bill (generic term)
+richardson ground squirrel|1
+(noun)|flickertail|Richardson ground squirrel|Citellus richardsoni|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+richardson vole|1
+(noun)|water vole|Richardson vole|Microtus richardsoni|vole (generic term)|field mouse (generic term)
+richea|1
+(noun)|Richea|genus Richea|dilleniid dicot genus (generic term)
+richea dracophylla|1
+(noun)|Australian grass tree|Richea dracophylla|Australian heath (generic term)
+richea pandanifolia|1
+(noun)|tree heath|grass tree|Richea pandanifolia|Australian heath (generic term)
+richelieu|1
+(noun)|Richelieu|Duc de Richelieu|Armand Jean du Plessis|Cardinal Richelieu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+riches|1
+(noun)|wealth|material resource (generic term)
+richler|1
+(noun)|Richler|Mordecai Richler|writer (generic term)|author (generic term)
+richly|3
+(adv)|amply|meagerly (antonym)
+(adv)|high|luxuriously
+(adv)|lavishly|extravagantly
+richmond|1
+(noun)|Richmond|capital of Virginia|state capital (generic term)
+richmondena|1
+(noun)|Richmondena|genus Richmondena|bird genus (generic term)
+richmondena cardinalis|1
+(noun)|cardinal|cardinal grosbeak|Richmondena Cardinalis|Cardinalis cardinalis|redbird|finch (generic term)
+richness|7
+(noun)|profusion|profuseness|cornucopia|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(noun)|affluence|wealth (generic term)|wealthiness (generic term)
+(noun)|fullness|mellowness|property (generic term)
+(noun)|value (generic term)
+(noun)|rankness|prolificacy|fertility|fruitfulness (generic term)|fecundity (generic term)
+(noun)|shade (generic term)|tint (generic term)|tincture (generic term)|tone (generic term)
+(noun)|impressiveness|grandness|magnificence|excellence (generic term)
+richter scale|1
+(noun)|Richter scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+richweed|2
+(noun)|horse balm|horseweed|stoneroot|stone-root|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+(noun)|clearweed|dead nettle|Pilea pumilla|nettle (generic term)
+ricin|1
+(noun)|ricin toxin|albumin (generic term)|albumen (generic term)|toxin (generic term)
+ricin toxin|1
+(noun)|ricin|albumin (generic term)|albumen (generic term)|toxin (generic term)
+ricinoleic acid|1
+(noun)|unsaturated fatty acid (generic term)
+ricinus|1
+(noun)|Ricinus|genus Ricinus|rosid dicot genus (generic term)
+ricinus communis|1
+(noun)|castor-oil plant|castor bean plant|palma christi|palma christ|Ricinus communis|shrub (generic term)|bush (generic term)
+rick|4
+(noun)|crick|kink|wrick|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+(noun)|haystack|hayrick|stack (generic term)
+(verb)|stack (generic term)|pile (generic term)|heap (generic term)
+(verb)|twist|sprain|wrench|turn|wrick|injure (generic term)|wound (generic term)
+rickenbacker|1
+(noun)|Rickenbacker|Eddie Rickenbacker|Edward Vernon Rickenbacker|combat pilot (generic term)
+ricketiness|1
+(noun)|unsteadiness|movability (generic term)|movableness (generic term)|steadiness (antonym)
+rickets|1
+(noun)|rachitis|avitaminosis (generic term)|hypovitaminosis (generic term)
+rickettsia|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+rickettsiaceae|1
+(noun)|Rickettsiaceae|family Rickettsiaceae|bacteria family (generic term)
+rickettsial|1
+(adj)|eubacteria|eubacterium|true bacteria (related term)
+rickettsial disease|1
+(noun)|rickettsiosis|infectious disease (generic term)
+rickettsiales|1
+(noun)|Rickettsiales|order Rickettsiales|animal order (generic term)
+rickettsialpox|1
+(noun)|rickettsial disease (generic term)|rickettsiosis (generic term)
+rickettsiosis|1
+(noun)|rickettsial disease|infectious disease (generic term)
+rickety|3
+(adj)|shaky|wobbly|wonky|unstable (similar term)
+(adj)|rachitic|ill (similar term)|sick (similar term)
+(adj)|decrepit|debile|feeble|infirm|sapless|weak|weakly|frail (similar term)
+rickey|1
+(noun)|mixed drink (generic term)
+rickover|1
+(noun)|Rickover|Hyman Rickover|Hyman George Rickover|naval officer (generic term)
+rickrack|1
+(noun)|ricrac|trimming (generic term)|trim (generic term)|passementerie (generic term)
+ricksha|1
+(noun)|jinrikisha|rickshaw|cart (generic term)
+rickshaw|1
+(noun)|jinrikisha|ricksha|cart (generic term)
+rico|1
+(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law (generic term)
+rico act|1
+(noun)|anti-racketeering law|Racketeer Influenced and Corrupt Organizations Act|RICO Act|RICO|law (generic term)
+ricochet|2
+(noun)|carom|recoil (generic term)|repercussion (generic term)|rebound (generic term)|backlash (generic term)
+(verb)|bounce|resile|take a hop|spring|bound|rebound|recoil|reverberate|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+ricotta|1
+(noun)|cheese (generic term)
+ricrac|1
+(noun)|rickrack|trimming (generic term)|trim (generic term)|passementerie (generic term)
+rictus|1
+(noun)|gape (generic term)
+rid|1
+(verb)|free|disembarrass|rid of (related term)
+rid of|1
+(verb)|obviate|eliminate|necessitate (antonym)
+riddance|2
+(noun)|elimination|removal (generic term)|remotion (generic term)
+(noun)|ejection|exclusion|expulsion|banishment (generic term)|proscription (generic term)
+riddle|8
+(noun)|conundrum|enigma|brain-teaser|problem (generic term)
+(noun)|sieve (generic term)|screen (generic term)
+(verb)|pierce (generic term)
+(verb)|perplex (generic term)|vex (generic term)|stick (generic term)|get (generic term)|puzzle (generic term)|mystify (generic term)|baffle (generic term)|beat (generic term)|pose (generic term)|bewilder (generic term)|flummox (generic term)|stupefy (generic term)|nonplus (generic term)|gravel (generic term)|amaze (generic term)|dumbfound (generic term)
+(verb)|screen|sift (generic term)|sieve (generic term)|strain (generic term)
+(verb)|permeate|pervade|penetrate|interpenetrate|diffuse|imbue|penetrate (generic term)|perforate (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+riddle canon|1
+(noun)|enigma canon|enigmatic canon|enigmatical canon|canon (generic term)
+riddled|2
+(adj)|damaged (similar term)
+(adj)|full (similar term)
+ride|15
+(noun)|drive|journey (generic term)|journeying (generic term)
+(noun)|mechanical device (generic term)
+(verb)|sit|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|travel (generic term)|walk (antonym)
+(verb)|continue (generic term)|go on (generic term)|proceed (generic term)|go along (generic term)|keep (generic term)
+(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|mock (generic term)|bemock (generic term)
+(verb)|float (generic term)
+(verb)|drive
+(verb)|depend on|devolve on|depend upon|turn on|hinge on|hinge upon
+(verb)|lie (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|climb (generic term)|climb up (generic term)|mount (generic term)|go up (generic term)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|engage (generic term)|mesh (generic term)|lock (generic term)|operate (generic term)
+(verb)|mount|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+ride away|1
+(verb)|ride off|leave (generic term)|go forth (generic term)|go away (generic term)
+ride herd|1
+(verb)|ride (generic term)|sit (generic term)
+ride herd on|1
+(verb)|monitor|supervise|observe (generic term)
+ride horseback|1
+(verb)|ride (generic term)|sit (generic term)
+ride off|1
+(verb)|ride away|leave (generic term)|go forth (generic term)|go away (generic term)
+ride out|1
+(verb)|last out|stay|outride
+ride roughshod|1
+(verb)|run roughshod|treat (generic term)|handle (generic term)|do by (generic term)
+ride the bench|1
+(verb)|warm the bench|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+rider|3
+(noun)|article (generic term)|clause (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+(noun)|passenger|traveler (generic term)|traveller (generic term)
+rider haggard|1
+(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer (generic term)|author (generic term)
+rider plate|1
+(noun)|beam (generic term)
+ridge|11
+(noun)|natural elevation (generic term)|elevation (generic term)
+(noun)|convex shape (generic term)|convexity (generic term)
+(noun)|geological formation (generic term)|formation (generic term)
+(noun)|ridgeline|geological formation (generic term)|formation (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(noun)|ridgepole|rooftree|beam (generic term)
+(verb)|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|plow (generic term)|plough (generic term)|turn (generic term)
+(verb)|throw (generic term)
+(verb)|spade (generic term)
+(verb)|shape (generic term)|form (generic term)
+ridge-like|1
+(adj)|bony (similar term)|boney (similar term)
+ridge rope|1
+(noun)|lifeline (generic term)
+ridge tile|1
+(noun)|tile (generic term)|roofing tile (generic term)
+ridged|1
+(adj)|carinate|carinated|keeled
+ridgel|1
+(noun)|ridgeling|ridgling|ridgil|colt (generic term)
+ridgeline|1
+(noun)|ridge|geological formation (generic term)|formation (generic term)
+ridgeling|1
+(noun)|ridgling|ridgel|ridgil|colt (generic term)
+ridgepole|1
+(noun)|ridge|rooftree|beam (generic term)
+ridgil|1
+(noun)|ridgeling|ridgling|ridgel|colt (generic term)
+ridgling|1
+(noun)|ridgeling|ridgel|ridgil|colt (generic term)
+ridicule|3
+(noun)|disrespect (generic term)|discourtesy (generic term)
+(noun)|derision|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+(verb)|roast|guy|blackguard|laugh at|jest at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+ridiculer|1
+(noun)|satirist|ironist|humorist (generic term)|humourist (generic term)
+ridiculous|3
+(adj)|pathetic|silly|undignified (similar term)
+(adj)|absurd|cockeyed|derisory|idiotic|laughable|ludicrous|nonsensical|preposterous|foolish (similar term)
+(adj)|farcical|ludicrous|humorous (similar term)|humourous (similar term)
+ridiculously|1
+(adv)|laughably|ludicrously|preposterously
+ridiculousness|1
+(noun)|absurdity|absurdness|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+riding|3
+(adj)|awheel|moving (similar term)
+(noun)|horseback riding|equitation|sport (generic term)|athletics (generic term)
+(noun)|horseback riding|travel (generic term)|traveling (generic term)|travelling (generic term)
+riding bitt|1
+(noun)|bollard (generic term)|bitt (generic term)
+riding boot|1
+(noun)|boot (generic term)
+riding breeches|1
+(noun)|jodhpurs|jodhpur breeches|trouser (generic term)|pant (generic term)
+riding crop|1
+(noun)|hunting crop|whip (generic term)
+riding habit|1
+(noun)|habit (generic term)
+riding horse|1
+(noun)|saddle horse|mount|horse (generic term)|Equus caballus (generic term)
+riding lamp|1
+(noun)|anchor light|riding light|light (generic term)|light source (generic term)
+riding light|1
+(noun)|anchor light|riding lamp|light (generic term)|light source (generic term)
+riding master|1
+(noun)|teacher (generic term)|instructor (generic term)
+riding mower|1
+(noun)|power mower (generic term)|motor mower (generic term)
+riding school|1
+(noun)|school (generic term)
+ridley|1
+(noun)|sea turtle (generic term)|marine turtle (generic term)
+riel|1
+(noun)|Cambodian monetary unit (generic term)
+riemann|1
+(noun)|Riemann|Bernhard Riemann|Georg Friedrich Bernhard Riemann|mathematician (generic term)
+riemannian|1
+(adj)|Riemannian|mathematician (related term)
+riemannian geometry|1
+(noun)|elliptic geometry|Riemannian geometry|non-Euclidean geometry (generic term)
+riesling|2
+(noun)|Riesling|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Riesling|Rhine wine (generic term)|Rhenish (generic term)|hock (generic term)
+riesman|1
+(noun)|Riesman|David Riesman|David Riesman Jr.|sociologist (generic term)
+rifadin|1
+(noun)|rifampin|Rifadin|Rimactane|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+rifampin|1
+(noun)|Rifadin|Rimactane|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+rife|2
+(adj)|prevailing|prevalent|current (similar term)
+(adj)|overabundant|plethoric|abundant (similar term)
+riff|4
+(noun)|Riff|Riffian|Berber (generic term)
+(noun)|ostinato (generic term)
+(verb)|flick|flip|thumb|riffle|leaf|peruse (generic term)
+(verb)|play (generic term)|spiel (generic term)
+riffian|1
+(noun)|Riff|Riffian|Berber (generic term)
+riffle|6
+(noun)|ripple|rippling|wavelet|wave (generic term)|moving ridge (generic term)
+(noun)|shuffle (generic term)|shuffling (generic term)|make (generic term)
+(verb)|flick|ruffle|move (generic term)|displace (generic term)
+(verb)|flick|flip|thumb|leaf|riff|peruse (generic term)
+(verb)|ripple|ruffle|cockle|undulate|flow (generic term)|flux (generic term)
+(verb)|shuffle (generic term)|ruffle (generic term)|mix (generic term)
+riffraff|1
+(noun)|rabble|ragtag|ragtag and bobtail|folk (generic term)|folks (generic term)|common people (generic term)
+rifle|3
+(noun)|firearm (generic term)|piece (generic term)|small-arm (generic term)
+(verb)|plunder|despoil|loot|reave|strip|ransack|pillage|foray|take (generic term)
+(verb)|go|search (generic term)
+rifle ball|1
+(noun)|bullet (generic term)|slug (generic term)
+rifle butt|1
+(noun)|butt (generic term)|butt end (generic term)
+rifle grenade|1
+(noun)|grenade (generic term)
+rifle range|2
+(noun)|rifle shot|range (generic term)|reach (generic term)
+(noun)|range (generic term)
+rifle shot|1
+(noun)|rifle range|range (generic term)|reach (generic term)
+riflebird|1
+(noun)|Ptloris paradisea|bird of paradise (generic term)
+rifled|1
+(adj)|unrifled (antonym)
+rifleman|2
+(noun)|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+(noun)|soldier (generic term)
+rifleman bird|1
+(noun)|Acanthisitta chloris|New Zealand wren (generic term)
+rifling|1
+(noun)|grooving|formation (generic term)|shaping (generic term)
+rift|3
+(noun)|opening (generic term)|gap (generic term)
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|rupture|breach|break|severance|falling out|separation (generic term)|breakup (generic term)|detachment (generic term)
+rift valley|1
+(noun)|valley (generic term)|vale (generic term)
+rift valley fever|1
+(noun)|Rift Valley fever|hemorrhagic fever (generic term)|haemorrhagic fever (generic term)|viral hemorrhagic fever (generic term)|viral haemorrhagic fever (generic term)|VHF (generic term)
+rig|11
+(noun)|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|trailer truck|tractor trailer|trucking rig|articulated lorry|semi|truck (generic term)|motortruck (generic term)
+(noun)|rigging|formation (generic term)
+(noun)|outfit|getup|turnout|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|fishing gear|tackle|fishing tackle|fishing rig|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|carriage|equipage|horse-drawn vehicle (generic term)
+(noun)|swindle|cheat|fraud (generic term)
+(verb)|set up|cheat (generic term)|chisel (generic term)
+(verb)|manipulate|price (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|set|set up|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+rig-veda|1
+(noun)|Rig-Veda|Samhita (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+rig up|1
+(verb)|assemble (generic term)|piece (generic term)|put together (generic term)|set up (generic term)|tack (generic term)|tack together (generic term)
+riga|1
+(noun)|Riga|capital of Latvia|capital (generic term)|port (generic term)
+rigamarole|2
+(noun)|rigmarole|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|rigmarole|procedure (generic term)|process (generic term)
+rigatoni|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+rigel|1
+(noun)|Rigel|Beta Orionis|binary star (generic term)|binary (generic term)|double star (generic term)
+rigged|1
+(adj)|lateen (similar term)|lateen-rigged (similar term)|outrigged (similar term)|square-rigged (similar term)|unrigged (antonym)
+rigger|4
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|rigger brush|sable (generic term)|sable brush (generic term)|sable's hair pencil (generic term)
+(noun)|oil rigger|oilman (generic term)
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+rigger brush|1
+(noun)|rigger|sable (generic term)|sable brush (generic term)|sable's hair pencil (generic term)
+rigging|2
+(noun)|tackle|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|rig|formation (generic term)
+riggs' disease|1
+(noun)|pyorrhea|pyorrhoea|pyorrhea alveolaris|Riggs' disease|periodontal disease (generic term)|periodontitis (generic term)
+right|31
+(adj)|correct|accurate (similar term)|exact (similar term)|precise (similar term)|letter-perfect (similar term)|word-perfect (similar term)|straight (similar term)|accurate (related term)|proper (related term)|true (related term)|wrong (antonym)|incorrect (antonym)
+(adj)|far (similar term)|rightmost (similar term)|right-hand (similar term)|starboard (similar term)|right-handed (related term)|left (antonym)
+(adj)|ethical (similar term)|honorable (similar term)|honourable (similar term)|moral (similar term)|ethical (related term)|good (related term)|just (related term)|proper (related term)|wrong (antonym)
+(adj)|correct|right-minded (similar term)|wrong (antonym)
+(adj)|proper|suitable|suited|appropriate (similar term)
+(adj)|conservative (similar term)|reactionary (similar term)|reactionist (similar term)|far-right (similar term)|rightish (similar term)|rightist (similar term)|right-wing (similar term)|conservative (related term)|left (antonym)|center (antonym)
+(adj)|satisfactory (similar term)
+(adj)|right-hand|right-handed (similar term)
+(adj)|correct|proper (similar term)
+(adj)|perpendicular (similar term)
+(adj)|outside (similar term)
+(adj)|good|ripe|opportune (similar term)
+(noun)|abstraction (generic term)|abstract (generic term)
+(noun)|interest (generic term)|stake (generic term)
+(noun)|position (generic term)|place (generic term)|left (antonym)
+(noun)|turn (generic term)|turning (generic term)
+(noun)|right wing|faction (generic term)|sect (generic term)
+(noun)|rightfulness|justice (generic term)|justness (generic term)|wrongfulness (antonym)|wrong (antonym)
+(noun)|right hand|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+(noun)|right field|rightfield|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(verb)|compensate|redress|correct|change (generic term)|alter (generic term)|modify (generic term)|compensate (related term)|wrong (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change posture (generic term)
+(verb)|correct|rectify|change by reversal (generic term)|turn (generic term)|reverse (generic term)|falsify (antonym)
+(adv)|flop
+(adv)|left (antonym)
+(adv)|properly|decently|decent|in good order|the right way|improperly (antonym)
+(adv)|right on
+(adv)|mighty|powerful
+(adv)|justly
+(adv)|correctly|aright|wrongly (antonym)|incorrectly (antonym)
+right-angled|1
+(adj)|square (similar term)
+right-angled triangle|1
+(noun)|right triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)|oblique triangle (antonym)
+right-down|1
+(adj)|absolute|downright|out-and-out|rank|sheer|complete (similar term)
+right-eyed|1
+(adj)|eyed (similar term)
+right-hand|3
+(adj)|right (similar term)
+(adj)|right|right-handed (similar term)
+(adj)|helpful (similar term)
+right-hand man|1
+(noun)|chief assistant|man Friday|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+right-handed|2
+(adj)|dextral (similar term)|right (similar term)|right-hand (similar term)|dextral (related term)|right (related term)|left-handed (antonym)|ambidextrous (antonym)
+(adj)|dextrorotary|dextrorotatory|clockwise (similar term)
+right-handed pitcher|1
+(noun)|right-hander|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+right-handedness|1
+(noun)|dextrality|handedness (generic term)|laterality (generic term)
+right-hander|2
+(noun)|right-handed pitcher|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+(noun)|right hander|righthander|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+right-minded|1
+(adj)|right (similar term)|correct (similar term)
+right-side-out|1
+(adj)|unturned (similar term)
+right-side-up|1
+(adj)|unturned (similar term)
+right-wing|1
+(adj)|rightist|right (similar term)
+right-winger|1
+(noun)|rightist|conservative (generic term)|conservativist (generic term)
+right along|1
+(adv)|all along
+right angle|2
+(noun)|angle (generic term)|oblique angle (antonym)
+(noun)|quadrant|angular unit (generic term)
+right ascension|1
+(noun)|RA|celestial longitude|angular distance (generic term)
+right atrioventricular valve|1
+(noun)|tricuspid valve|atrioventricular valve (generic term)
+right atrium|1
+(noun)|right atrium of the heart|atrium dextrum|atrium cordis (generic term)|atrium of the heart (generic term)
+right atrium of the heart|1
+(noun)|right atrium|atrium dextrum|atrium cordis (generic term)|atrium of the heart (generic term)
+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 (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+right brain|1
+(noun)|right hemisphere|hemisphere (generic term)|cerebral hemisphere (generic term)
+right coronary artery|1
+(noun)|coronary artery (generic term)|arteria coronaria (generic term)
+right field|2
+(noun)|rightfield|right|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|rightfield|position (generic term)
+right fielder|1
+(noun)|outfielder (generic term)
+right gastric artery|1
+(noun)|ateria gastrica dextra|gastric artery (generic term)|arteria gastrica (generic term)
+right gastric vein|1
+(noun)|pyloric vein|vena gastrica-dextra|gastric vein (generic term)|vena gastrica (generic term)
+right hand|1
+(noun)|right|hand (generic term)|manus (generic term)|mitt (generic term)|paw (generic term)
+right hander|1
+(noun)|right-hander|righthander|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+right hemisphere|1
+(noun)|right brain|hemisphere (generic term)|cerebral hemisphere (generic term)
+right of action|1
+(noun)|right (generic term)
+right of election|1
+(noun)|legal right (generic term)
+right of entry|1
+(noun)|legal right (generic term)
+right of first publication|1
+(noun)|copyright|document (generic term)|written document (generic term)|papers (generic term)|legal right (generic term)
+right of offset|1
+(noun)|legal right (generic term)
+right of privacy|1
+(noun)|legal right (generic term)
+right of re-entry|1
+(noun)|legal right (generic term)
+right of search|1
+(noun)|right (generic term)
+right of way|3
+(noun)|easement (generic term)
+(noun)|right (generic term)
+(noun)|passage (generic term)
+right on|1
+(adv)|right
+right smart|2
+(adj)|considerable (similar term)
+(adv)|way
+right stage|1
+(noun)|stage right|right (generic term)
+right to an attorney|1
+(noun)|civil right (generic term)
+right to confront accusors|1
+(noun)|civil right (generic term)
+right to due process|1
+(noun)|civil right (generic term)
+right to liberty|1
+(noun)|human right (generic term)
+right to life|1
+(noun)|human right (generic term)
+right to privacy|1
+(noun)|human right (generic term)
+right to speedy and public trial by jury|1
+(noun)|civil right (generic term)
+right to the pursuit of happiness|1
+(noun)|human right (generic term)
+right to vote|1
+(noun)|vote|suffrage|franchise (generic term)|enfranchisement (generic term)
+right triangle|1
+(noun)|right-angled triangle|triangle (generic term)|trigon (generic term)|trilateral (generic term)|oblique triangle (antonym)
+right ventricle|1
+(noun)|ventricle (generic term)|heart ventricle (generic term)
+right whale|1
+(noun)|baleen whale (generic term)|whalebone whale (generic term)
+right wing|1
+(noun)|right|faction (generic term)|sect (generic term)
+righteous|2
+(adj)|good (similar term)|just (similar term)|upright (similar term)|sound (similar term)|good (related term)|innocent (related term)|guiltless (related term)|clean-handed (related term)|just (related term)|moral (related term)|virtuous (related term)|worthy (related term)|unrighteous (antonym)
+(adj)|moral (similar term)
+righteously|1
+(adv)|unrighteously (antonym)
+righteousness|1
+(noun)|morality (generic term)|unrighteousness (antonym)
+righteye flounder|1
+(noun)|righteyed flounder|flatfish (generic term)
+righteyed flounder|1
+(noun)|righteye flounder|flatfish (generic term)
+rightfield|2
+(noun)|right field|right|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|right field|position (generic term)
+rightful|2
+(adj)|just (similar term)
+(adj)|true|lawful|legitimate (similar term)
+rightfully|1
+(adv)|truly
+rightfulness|1
+(noun)|right|justice (generic term)|justness (generic term)|wrongfulness (antonym)|wrong (antonym)
+righthander|1
+(noun)|right-hander|right hander|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+rightish|1
+(adj)|right (similar term)
+rightism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+rightist|2
+(adj)|right-wing|right (similar term)
+(noun)|right-winger|conservative (generic term)|conservativist (generic term)
+rightly|1
+(adv)|justly|justifiedly|unjustly (antonym)
+rightmost|1
+(adj)|right (similar term)
+rightness|4
+(noun)|morality (generic term)|wrongness (antonym)
+(noun)|appropriateness|propriety (generic term)|properness (generic term)|correctitude (generic term)|inappropriateness (antonym)
+(noun)|correctness|quality (generic term)|wrongness (antonym)|incorrectness (antonym)
+(noun)|justness|nicety|conformity (generic term)|conformance (generic term)
+rights issue|1
+(noun)|rights offering|offer (generic term)|offering (generic term)
+rights offering|1
+(noun)|rights issue|offer (generic term)|offering (generic term)
+rigid|5
+(adj)|stiff|inflexible (similar term)
+(adj)|strict|intolerant (similar term)
+(adj)|inflexible|unbending|unadaptable (similar term)
+(adj)|fixed|set|nonmoving (similar term)|unmoving (similar term)
+(adj)|semirigid (similar term)|nonrigid (antonym)
+rigidification|1
+(noun)|stiffening|rigidifying|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+rigidify|2
+(verb)|stiffen (generic term)
+(verb)|ossify|petrify|stiffen (generic term)
+rigidifying|1
+(noun)|stiffening|rigidification|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+rigidity|2
+(noun)|rigidness|inelasticity (generic term)
+(noun)|inflexibility|rigidness|unadaptability (generic term)|flexibility (antonym)
+rigidly|1
+(adv)|stiffly|bolt
+rigidness|2
+(noun)|rigidity|inelasticity (generic term)
+(noun)|inflexibility|rigidity|unadaptability (generic term)|flexibility (antonym)
+rigil|1
+(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star (generic term)|binary (generic term)|double star (generic term)
+rigil kent|1
+(noun)|Alpha Centauri|Rigil Kent|Rigil|binary star (generic term)|binary (generic term)|double star (generic term)
+rigmarole|2
+(noun)|rigamarole|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|rigamarole|procedure (generic term)|process (generic term)
+rigor|3
+(noun)|asperity|grimness|hardship|rigour|severity|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|cogency|validity|rigour|credibility (generic term)|credibleness (generic term)|believability (generic term)
+(noun)|severity|severeness|harshness|rigour|rigorousness|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+rigor mortis|2
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|stiffening (generic term)|rigidifying (generic term)|rigidification (generic term)
+rigorous|2
+(adj)|strict|exact (similar term)
+(adj)|stringent|tight|demanding (similar term)
+rigorously|1
+(adv)|strictly
+rigorousness|2
+(noun)|asperity|grimness|hardship|rigor|rigour|severity|severeness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|severity|severeness|harshness|rigor|rigour|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+rigour|3
+(noun)|cogency|validity|rigor|credibility (generic term)|credibleness (generic term)|believability (generic term)
+(noun)|asperity|grimness|hardship|rigor|severity|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|severity|severeness|harshness|rigor|rigorousness|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+rigourousness|2
+(noun)|asperity|grimness|hardship|rigor|rigour|severity|severeness|rigorousness|difficulty (generic term)|difficultness (generic term)
+(noun)|severity|severeness|harshness|rigor|rigour|rigorousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+rigout|1
+(noun)|costume (generic term)
+rijstafel|1
+(noun)|rijsttaffel|rijstaffel|dish (generic term)
+rijstaffel|1
+(noun)|rijsttaffel|rijstafel|dish (generic term)
+rijsttaffel|1
+(noun)|rijstaffel|rijstafel|dish (generic term)
+riksmal|1
+(noun)|Bokmal|Dano-Norwegian|Riksmal|Norwegian (generic term)
+rile|2
+(verb)|annoy|rag|get to|bother|get at|irritate|nark|nettle|gravel|vex|chafe|devil|displease (generic term)
+(verb)|roil|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+riled|1
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|roiled|steamed|stung|displeased (similar term)
+riley|1
+(noun)|Riley|James Whitcomb Riley|poet (generic term)
+riley b king|1
+(noun)|King|B. B. King|Riley B King|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|guitarist (generic term)|guitar player (generic term)
+rilievo|1
+(noun)|relief|relievo|embossment|sculptural relief|sculpture (generic term)
+rilke|1
+(noun)|Rilke|Rainer Maria Rilke|poet (generic term)
+rill|2
+(noun)|rivulet|run|runnel|streamlet|stream (generic term)|watercourse (generic term)
+(noun)|channel (generic term)
+rim|7
+(noun)|boundary (generic term)|edge (generic term)|bound (generic term)|round shape (generic term)
+(noun)|hoop (generic term)|ring (generic term)
+(noun)|flange|projection (generic term)
+(noun)|brim|lip|edge (generic term)
+(verb)|line (generic term)|run along (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|roll (generic term)|turn over (generic term)
+rim blight|1
+(noun)|blight (generic term)
+rima|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+rima glottidis|1
+(noun)|rima vocalis|true glottis|glottis vera|rima (generic term)
+rima oris|1
+(noun)|mouth|oral cavity|oral fissure|rima (generic term)
+rima pudendi|1
+(noun)|pudendal cleft|urogenital cleft|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima (generic term)
+rima respiratoria|1
+(noun)|rima vestibuli|false glottis|glottis spuria|rima (generic term)
+rima vestibuli|1
+(noun)|rima respiratoria|false glottis|glottis spuria|rima (generic term)
+rima vocalis|1
+(noun)|rima glottidis|true glottis|glottis vera|rima (generic term)
+rima vulvae|1
+(noun)|pudendal cleft|urogenital cleft|rima pudendi|pudendal cleavage|pudendal slit|vulvar slit|rima (generic term)
+rimactane|1
+(noun)|rifampin|Rifadin|Rimactane|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+rimbaud|1
+(noun)|Rimbaud|Arthur Rimbaud|Jean Nicholas Arthur Rimbaud|poet (generic term)
+rime|4
+(noun)|frost|hoar|hoarfrost|ice (generic term)|water ice (generic term)
+(noun)|rhyme|versification (generic term)
+(verb)|rhyme|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|rhyme|create verbally (generic term)
+rimed|1
+(adj)|frosty|rimy|cold (similar term)
+rimeless|1
+(adj)|unrhymed|unrimed|rhymeless|rhymed (antonym)
+riming|1
+(adj)|rhymed|rhyming|alliterative (similar term)|assonant (similar term)|end-rhymed (similar term)|unrhymed (antonym)
+rimless|1
+(adj)|rimmed (antonym)
+rimmed|1
+(adj)|horn-rimmed (similar term)|red-rimmed (similar term)|rimless (antonym)
+rimose|1
+(adj)|rough (similar term)
+rimski-korsakov|1
+(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer (generic term)
+rimsky-korsakov|1
+(noun)|Rimsky-Korsakov|Nikolai Andreyevich Rimsky-Korsakov|Rimski-Korsakov|Nikolai Andreyevich Rimski-Korsakov|composer (generic term)
+rimu|1
+(noun)|imou pine|red pine|Dacrydium cupressinum|conifer (generic term)|coniferous tree (generic term)
+rimy|1
+(adj)|frosty|rimed|cold (similar term)
+rind|2
+(noun)|skin|peel|plant tissue (generic term)
+(noun)|material (generic term)|stuff (generic term)
+rinderpest|1
+(noun)|cattle plague|animal disease (generic term)
+ring|15
+(noun)|sound (generic term)
+(noun)|halo|annulus|anulus|doughnut|anchor ring|toroid (generic term)
+(noun)|hoop|band (generic term)
+(noun)|closed chain|chain (generic term)|chemical chain (generic term)|open chain (antonym)
+(noun)|gang|pack|mob|association (generic term)
+(noun)|ringing|tintinnabulation|sound (generic term)
+(noun)|platform (generic term)
+(noun)|band|jewelry (generic term)|jewellery (generic term)
+(noun)|band|strip (generic term)|slip (generic term)
+(verb)|peal|sound (generic term)|go (generic term)|ring out (related term)
+(verb)|resound|echo|reverberate|sound (generic term)|go (generic term)
+(verb)|knell|sound (generic term)
+(verb)|surround|environ|encircle|circle|round|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|call|telephone|call up|phone|telecommunicate (generic term)
+(verb)|band|attach (generic term)
+ring-a-rosy|1
+(noun)|ring-around-the-rosy|ring-around-a-rosy|game (generic term)
+ring-around-a-rosy|1
+(noun)|ring-around-the-rosy|ring-a-rosy|game (generic term)
+ring-around-the-rosy|1
+(noun)|ring-around-a-rosy|ring-a-rosy|game (generic term)
+ring-binder|1
+(noun)|binder|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+ring-necked parakeet|1
+(noun)|Psittacula krameri|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+ring-necked pheasant|1
+(noun)|Phasianus colchicus|pheasant (generic term)
+ring-necked snake|1
+(noun)|ringneck snake|ring snake|colubrid snake (generic term)|colubrid (generic term)
+ring-shaped|1
+(adj)|annular|annulate|annulated|circinate|circular|ringed|doughnut-shaped|rounded (similar term)
+ring-stalked fungus|1
+(noun)|Stropharia|genus Stropharia|fungus genus (generic term)
+ring-tailed cat|1
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ringtail|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+ring-tailed lemur|1
+(noun)|Madagascar cat|Lemur catta|lemur (generic term)
+ring armor|1
+(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+ring armour|1
+(noun)|chain mail|ring mail|mail|chain armor|chain armour|ring armor|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+ring blackbird|1
+(noun)|ring ouzel|ring thrush|Turdus torquatus|thrush (generic term)
+ring containment|1
+(noun)|containment (generic term)
+ring dance|1
+(noun)|round dance|folk dancing (generic term)|folk dance (generic term)
+ring disease|1
+(noun)|ring rot|tobacco wilt|brown rot (generic term)
+ring finger|1
+(noun)|annualry|finger (generic term)
+ring girl|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+ring lardner|1
+(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+ring mail|1
+(noun)|chain mail|mail|chain armor|chain armour|ring armor|ring armour|body armor (generic term)|body armour (generic term)|suit of armor (generic term)|suit of armour (generic term)|coat of mail (generic term)|cataphract (generic term)
+ring of color|1
+(noun)|areola|area (generic term)|region (generic term)
+ring out|1
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+ring ouzel|1
+(noun)|ring blackbird|ring thrush|Turdus torquatus|thrush (generic term)
+ring road|1
+(noun)|bypass|circumferential|road (generic term)|route (generic term)
+ring rot|1
+(noun)|ring disease|tobacco wilt|brown rot (generic term)
+ring rot bacteria|1
+(noun)|Pseudomonas solanacearum|pseudomonad (generic term)
+ring rot fungus|1
+(noun)|leak fungus|Rhizopus stolonifer|rhizoid (generic term)
+ring snake|2
+(noun)|grass snake|ringed snake|Natrix natrix|water snake (generic term)
+(noun)|ringneck snake|ring-necked snake|colubrid snake (generic term)|colubrid (generic term)
+ring thrush|1
+(noun)|ring ouzel|ring blackbird|Turdus torquatus|thrush (generic term)
+ring up|1
+(verb)|record (generic term)|enter (generic term)|put down (generic term)
+ring vaccination|1
+(noun)|inoculating (generic term)|vaccinating (generic term)
+ringdove|2
+(noun)|Streptopelia risoria|turtledove (generic term)
+(noun)|wood pigeon|cushat|Columba palumbus|pigeon (generic term)
+ringed|4
+(adj)|annular|annulate|annulated|circinate|circular|ring-shaped|doughnut-shaped|rounded (similar term)
+(adj)|patterned (similar term)
+(adj)|married (similar term)
+(adj)|encircled|wreathed|adorned (similar term)|decorated (similar term)
+ringed snake|1
+(noun)|grass snake|ring snake|Natrix natrix|water snake (generic term)
+ringer|4
+(noun)|toller|bell ringer|signaler (generic term)|signaller (generic term)
+(noun)|dead ringer|clone|double (generic term)|image (generic term)|look-alike (generic term)
+(noun)|imposter (generic term)|impostor (generic term)|pretender (generic term)|fake (generic term)|faker (generic term)|fraud (generic term)|sham (generic term)|shammer (generic term)|pseudo (generic term)|pseud (generic term)|role player (generic term)
+(noun)|throw (generic term)
+ringer's solution|1
+(noun)|Ringer's solution|Ringer solution|isotonic solution (generic term)|isosmotic solution (generic term)
+ringer solution|1
+(noun)|Ringer's solution|Ringer solution|isotonic solution (generic term)|isosmotic solution (generic term)
+ringgit|1
+(noun)|Malaysian monetary unit (generic term)
+ringgold wilmer lardner|1
+(noun)|Lardner|Ring Lardner|Ringgold Wilmer Lardner|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+ringhals|1
+(noun)|rinkhals|spitting snake|Hemachatus haemachatus|elapid (generic term)|elapid snake (generic term)
+ringing|4
+(adj)|reverberant|bright (similar term)|brilliant (similar term)|clinking (similar term)|echoing (similar term)|reechoing (similar term)|hollow (similar term)|jingling (similar term)|jingly (similar term)|live (similar term)|resonant (similar term)|resonant (similar term)|resonating (similar term)|resounding (similar term)|reverberating (similar term)|reverberative (similar term)|rolling (similar term)|tinkling (similar term)|tinkly (similar term)|vibrant (similar term)|unreverberant (antonym)
+(noun)|ring|tintinnabulation|sound (generic term)
+(noun)|betrothal (generic term)|troth (generic term)|engagement (generic term)
+(noun)|plangency|resonance|reverberance|sonorousness|sonority|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+ringleader|1
+(noun)|instigator (generic term)|provoker (generic term)|inciter (generic term)|instigant (generic term)|firebrand (generic term)
+ringlet|4
+(noun)|coil|whorl|roll|curl|curlicue|gyre|scroll|round shape (generic term)
+(noun)|lock|curl|whorl|hair (generic term)
+(noun)|ring (generic term)|band (generic term)
+(noun)|ringlet butterfly|butterfly (generic term)
+ringlet butterfly|1
+(noun)|ringlet|butterfly (generic term)
+ringleted|1
+(adj)|curly (similar term)
+ringlike|1
+(adj)|round (similar term)|circular (similar term)
+ringling|1
+(noun)|Ringling|Charles Ringling|showman (generic term)|promoter (generic term)|impresario (generic term)
+ringmaster|1
+(noun)|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+ringneck snake|1
+(noun)|ring-necked snake|ring snake|colubrid snake (generic term)|colubrid (generic term)
+ringo starr|1
+(noun)|Starr|Ringo Starr|Starkey|Richard Starkey|rock star (generic term)|drummer (generic term)
+rings|1
+(noun)|gymnastic apparatus (generic term)|exerciser (generic term)
+ringside|1
+(noun)|ringside seat|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+ringside seat|1
+(noun)|ringside|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+ringtail|4
+(noun)|bassarisk|cacomistle|cacomixle|coon cat|raccoon fox|ring-tailed cat|civet cat|miner's cat|Bassariscus astutus|procyonid (generic term)
+(noun)|common raccoon|common racoon|coon|Procyon lotor|raccoon (generic term)|racoon (generic term)
+(noun)|capuchin|Cebus capucinus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+(noun)|golden eagle (generic term)|Aquila chrysaetos (generic term)
+ringworm|1
+(noun)|tinea|roundworm|fungal infection (generic term)|mycosis (generic term)
+ringworm bush|1
+(noun)|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna (generic term)
+ringworm cassia|1
+(noun)|ringworm bush|ringworm shrub|Senna alata|Cassia alata|senna (generic term)
+ringworm shrub|1
+(noun)|ringworm bush|ringworm cassia|Senna alata|Cassia alata|senna (generic term)
+rink|1
+(noun)|skating rink|building (generic term)|edifice (generic term)
+rinkhals|1
+(noun)|ringhals|spitting snake|Hemachatus haemachatus|elapid (generic term)|elapid snake (generic term)
+rinse|7
+(noun)|hair dye (generic term)|hair coloring (generic term)
+(noun)|rinsing|removal (generic term)|remotion (generic term)
+(noun)|hair coloring (generic term)
+(noun)|wash (generic term)|washing (generic term)|lavation (generic term)
+(verb)|rinse off|wash (generic term)|launder (generic term)
+(verb)|wash|serve (generic term)|process (generic term)|swear out (generic term)
+(verb)|gargle|wash (generic term)|lave (generic term)
+rinse off|1
+(verb)|rinse|wash (generic term)|launder (generic term)
+rinsing|1
+(noun)|rinse|removal (generic term)|remotion (generic term)
+rio|1
+(noun)|Rio de Janeiro|Rio|city (generic term)|metropolis (generic term)|urban center (generic term)
+rio bravo|1
+(noun)|Rio Grande|Rio Bravo|river (generic term)
+rio de janeiro|1
+(noun)|Rio de Janeiro|Rio|city (generic term)|metropolis (generic term)|urban center (generic term)
+rio de la plata|1
+(noun)|Rio de la Plata|La Plata|Plata River|estuary (generic term)
+rio grande|1
+(noun)|Rio Grande|Rio Bravo|river (generic term)
+rio nunez coffee|1
+(noun)|robusta coffee|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee (generic term)|coffee tree (generic term)
+rioja|1
+(noun)|Rioja|red wine (generic term)
+riot|6
+(noun)|public violence|violence (generic term)|force (generic term)
+(noun)|rioting|disorder (generic term)
+(noun)|belly laugh|sidesplitter|howler|thigh-slapper|scream|wow|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+(noun)|orgy|debauch|debauchery|saturnalia|bacchanal|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+(verb)|rampage (generic term)
+(verb)|carouse|roister|revel (generic term)|racket (generic term)|make whoopie (generic term)|make merry (generic term)|make happy (generic term)|whoop it up (generic term)|jollify (generic term)|wassail (generic term)
+riot act|2
+(noun)|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|Riot Act|law (generic term)
+riot control|1
+(noun)|riot control operation|control (generic term)
+riot control operation|1
+(noun)|riot control|control (generic term)
+riot gun|1
+(noun)|firearm (generic term)|piece (generic term)|small-arm (generic term)
+rioter|1
+(noun)|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+rioting|1
+(noun)|riot|disorder (generic term)
+riotous|3
+(adj)|exuberant|lush|luxuriant|profuse|abundant (similar term)
+(adj)|disruptive|troubled|tumultuous|turbulent|unquiet (similar term)
+(adj)|debauched|degenerate|degraded|dissipated|dissolute|libertine|profligate|fast|immoral (similar term)
+riotously|2
+(adv)|tumultuously
+(adv)|exuberantly
+rip|8
+(noun)|rake|rakehell|profligate|blood|roue|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|rent|snag|split|tear|opening (generic term)|gap (generic term)
+(noun)|riptide|tide rip|crosscurrent|countercurrent|turbulence (generic term)|turbulency (generic term)
+(noun)|rent|split|tear (generic term)
+(verb)|rend|rive|pull|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+(verb)|tear (generic term)|shoot (generic term)|shoot down (generic term)|charge (generic term)|buck (generic term)
+(verb)|cut (generic term)
+(verb)|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+rip-off|1
+(noun)|heist|robbery (generic term)
+rip-roaring|1
+(adj)|rackety|uproarious|noisy (similar term)
+rip current|1
+(noun)|riptide|current (generic term)|stream (generic term)
+rip off|1
+(verb)|cheat|chisel|victimize (generic term)|victimise (generic term)
+rip out|1
+(verb)|burst out (generic term)
+rip up|1
+(verb)|shred|tear up|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+rip van winkle|3
+(noun)|Rip van Winkle|traditionalist (generic term)|diehard (generic term)
+(noun)|Rip van Winkle|sleeper (generic term)|slumberer (generic term)
+(noun)|Rip van Winkle|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+riparia|1
+(noun)|Riparia|genus Riparia|bird genus (generic term)
+riparia riparia|1
+(noun)|bank martin|bank swallow|sand martin|Riparia riparia|martin (generic term)
+riparian|1
+(adj)|bank (related term)
+riparian forest|1
+(noun)|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+riparian right|1
+(noun)|water right|right (generic term)
+ripcord|1
+(noun)|cord (generic term)
+ripe|5
+(adj)|mature|aged (similar term)|ripened (similar term)|mellow (similar term)|mellowed (similar term)|overripe (similar term)|green (antonym)
+(adj)|ready (similar term)
+(adj)|good|right|opportune (similar term)
+(adj)|mature (similar term)
+(adj)|advanced|late (similar term)
+ripe olive|1
+(noun)|black olive|olive (generic term)
+ripen|2
+(verb)|mature|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|mature (generic term)|maturate (generic term)|grow (generic term)
+ripened|1
+(adj)|aged|ripe (similar term)|mature (similar term)
+ripeness|1
+(noun)|maturity (generic term)|matureness (generic term)|greenness (antonym)
+ripening|2
+(noun)|maturation|maturement|organic process (generic term)|biological process (generic term)
+(noun)|aging|ageing|organic process (generic term)|biological process (generic term)
+riposte|4
+(noun)|rejoinder|retort|return|replication|comeback|counter|reply (generic term)|response (generic term)
+(noun)|counterattack (generic term)|countermove (generic term)
+(verb)|lunge (generic term)|hurl (generic term)|hurtle (generic term)|thrust (generic term)
+(verb)|retort|come back|repay|return|rejoin|answer (generic term)|reply (generic term)|respond (generic term)
+ripper|1
+(noun)|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+ripping|1
+(adj)|rending|splitting|cacophonous (similar term)|cacophonic (similar term)
+ripping bar|1
+(noun)|lever (generic term)
+ripping chisel|1
+(noun)|chisel (generic term)
+ripple|4
+(noun)|rippling|riffle|wavelet|wave (generic term)|moving ridge (generic term)
+(noun)|oscillation (generic term)|vibration (generic term)
+(verb)|ruffle|riffle|cockle|undulate|flow (generic term)|flux (generic term)
+(verb)|babble|guggle|burble|bubble|gurgle|sound (generic term)|go (generic term)
+ripple-grass|1
+(noun)|English plantain|narrow-leaved plantain|ribgrass|ribwort|buckthorn|Plantago lanceolata|plantain (generic term)
+ripple mark|1
+(noun)|ridge (generic term)
+rippled|2
+(adj)|crinkled|crinkly|wavy|wavelike|uneven (similar term)
+(adj)|ruffled|agitated (similar term)
+rippling|1
+(noun)|ripple|riffle|wavelet|wave (generic term)|moving ridge (generic term)
+ripsaw|1
+(noun)|splitsaw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+riptide|2
+(noun)|rip|tide rip|crosscurrent|countercurrent|turbulence (generic term)|turbulency (generic term)
+(noun)|rip current|current (generic term)|stream (generic term)
+rira|1
+(noun)|Real IRA|Real Irish Republican Army|RIRA|Dissident Irish Republican Army|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+risc|1
+(noun)|reduced instruction set computing|reduced instruction set computer|RISC|computer architecture (generic term)|architecture (generic term)|CISC (antonym)|complex instruction set computer (antonym)|complex instruction set computing (antonym)
+rise|26
+(noun)|emergence (generic term)|outgrowth (generic term)|growth (generic term)|fall (antonym)
+(noun)|ascent|ascension|ascending|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|ascent|acclivity|raise|climb|upgrade|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+(noun)|rising|ascent|ascension|change of location (generic term)|travel (generic term)|fall (antonym)
+(noun)|raise|wage hike|hike|wage increase|salary increase|increase (generic term)|increment (generic term)
+(noun)|upgrade|rising slope|grade (generic term)
+(noun)|lift|wave (generic term)|moving ridge (generic term)
+(noun)|emanation|procession|origin (generic term)|origination (generic term)|inception (generic term)
+(noun)|boost|hike|cost increase|increase (generic term)|increment (generic term)
+(noun)|advance|increase (generic term)|step-up (generic term)
+(verb)|lift|arise|move up|go up|come up|uprise|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|go up|climb|grow (generic term)
+(verb)|arise|uprise|get up|stand up|change posture (generic term)|sit down (antonym)|lie down (antonym)
+(verb)|lift|rear|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|surface|come up|rise up|ascend (generic term)|go up (generic term)
+(verb)|heighten|increase (generic term)
+(verb)|originate|arise|develop|uprise|spring up|grow|become (generic term)
+(verb)|move up|change (generic term)
+(verb)|wax|mount|climb|increase (generic term)|wane (antonym)
+(verb)|get up|turn out|arise|uprise|turn in (antonym)|go to bed (antonym)
+(verb)|jump|climb up|change (generic term)
+(verb)|prove|grow (generic term)
+(verb)|undertake (generic term)|tackle (generic term)|take on (generic term)
+(verb)|rebel|arise|rise up|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|come up|uprise|ascend|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|set (antonym)
+(verb)|resurrect|uprise|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+rise to power|1
+(noun)|accession|attainment (generic term)
+rise up|3
+(verb)|surface|come up|rise|ascend (generic term)|go up (generic term)
+(verb)|rebel|arise|rise|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|rear|straighten (generic term)
+risen|1
+(adj)|up (similar term)
+riser|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|riser pipe|riser pipeline|riser main|pipe (generic term)|pipage (generic term)|piping (generic term)
+(noun)|structural member (generic term)
+riser main|1
+(noun)|riser|riser pipe|riser pipeline|pipe (generic term)|pipage (generic term)|piping (generic term)
+riser pipe|1
+(noun)|riser|riser pipeline|riser main|pipe (generic term)|pipage (generic term)|piping (generic term)
+riser pipeline|1
+(noun)|riser|riser pipe|riser main|pipe (generic term)|pipage (generic term)|piping (generic term)
+risibility|1
+(noun)|good nature (generic term)
+risible|1
+(adj)|amusing|comic|comical|funny|laughable|mirthful|humorous (similar term)|humourous (similar term)
+rising|6
+(adj)|improving (similar term)|up (similar term)|falling (antonym)
+(adj)|acclivitous|uphill|ascending (similar term)
+(adj)|emerging|future (similar term)
+(adj)|new (similar term)
+(noun)|rise|ascent|ascension|change of location (generic term)|travel (generic term)|fall (antonym)
+(noun)|rebellion|insurrection|revolt|uprising|conflict (generic term)|struggle (generic term)|battle (generic term)
+rising prices|1
+(noun)|inflation|economic process (generic term)|deflation (antonym)|disinflation (antonym)
+rising slope|1
+(noun)|upgrade|rise|grade (generic term)
+rising tide|1
+(noun)|flood tide|flood|tide (generic term)|ebbtide (antonym)
+rising trot|1
+(noun)|trot (generic term)|sitting trot (antonym)
+risk|6
+(noun)|hazard|jeopardy|peril|endangerment|danger (generic term)
+(noun)|peril|danger|venture (generic term)
+(noun)|risk of infection|probability (generic term)|chance (generic term)
+(noun)|risk of exposure|probability (generic term)|chance (generic term)
+(verb)|put on the line|lay on the line|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|gamble|chance|hazard|take chances|adventure|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+risk-free|1
+(adj)|riskless|unhazardous|safe (similar term)
+risk arbitrage|1
+(noun)|takeover arbitrage|arbitrage (generic term)
+risk capital|1
+(noun)|venture capital|capital (generic term)|working capital (generic term)
+risk of exposure|1
+(noun)|risk|probability (generic term)|chance (generic term)
+risk of infection|1
+(noun)|risk|probability (generic term)|chance (generic term)
+risk taker|1
+(noun)|gambler|adventurer (generic term)|venturer (generic term)
+riskiness|1
+(noun)|peril|danger (generic term)
+riskless|1
+(adj)|risk-free|unhazardous|safe (similar term)
+risklessness|1
+(noun)|safety (generic term)
+risky|2
+(adj)|hazardous|wild|dangerous (similar term)|unsafe (similar term)
+(adj)|bad|high-risk|speculative|unsound (similar term)
+risky venture|1
+(noun)|adventure|escapade|dangerous undertaking|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+risotto|1
+(noun)|Italian rice|dish (generic term)
+risque|1
+(adj)|blue|gamy|gamey|juicy|naughty|racy|spicy|sexy (similar term)
+riss glaciation|1
+(noun)|Riss glaciation|glaciation (generic term)
+rissa|1
+(noun)|Rissa|genus Rissa|bird genus (generic term)
+rissole|1
+(noun)|dish (generic term)
+rit.|1
+(adj)|rallentando|ritardando|ritenuto|decreasing (similar term)
+ritalin|1
+(noun)|methylphenidate|Ritalin|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)
+ritardando|1
+(adj)|rallentando|ritenuto|rit.|decreasing (similar term)
+rite|2
+(noun)|religious rite|religious ceremony (generic term)|religious ritual (generic term)
+(noun)|ritual|custom (generic term)|usage (generic term)|usance (generic term)
+rite of passage|1
+(noun)|ritual (generic term)|rite (generic term)
+ritenuto|1
+(adj)|rallentando|ritardando|rit.|decreasing (similar term)
+ritonavir|1
+(noun)|Norvir|protease inhibitor (generic term)|PI (generic term)
+rittenhouse|1
+(noun)|Rittenhouse|David Rittenhouse|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+ritual|5
+(adj)|religious ceremony|religious ritual (related term)
+(adj)|custom|usage|usance (related term)
+(noun)|rite|custom (generic term)|usage (generic term)|usance (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+(noun)|habit (generic term)|use (generic term)|wont (generic term)
+ritual dance|1
+(noun)|ritual dancing|ceremonial dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+ritual dancing|1
+(noun)|ritual dance|ceremonial dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+ritual killing|1
+(noun)|sacrifice|killing (generic term)|kill (generic term)|putting to death (generic term)
+ritualise|1
+(verb)|ritualize|formalize (generic term)|formalise (generic term)
+ritualism|2
+(noun)|social anthropology (generic term)|cultural anthropology (generic term)
+(noun)|practice (generic term)|pattern (generic term)
+ritualist|2
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|social anthropologist (generic term)
+ritualistic|1
+(adj)|practice|pattern (related term)
+ritualize|1
+(verb)|ritualise|formalize (generic term)|formalise (generic term)
+ritually|1
+(adv)|ceremonially
+ritz|3
+(noun)|Ritz|Cesar Ritz|hotelier (generic term)|hotelkeeper (generic term)|hotel manager (generic term)|hotelman (generic term)|hosteller (generic term)
+(noun)|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+(noun)|Ritz|hotel (generic term)
+ritzy|1
+(adj)|elegant (similar term)
+rival|3
+(noun)|challenger|competitor|competition|contender|contestant (generic term)
+(verb)|equal|touch|match|compete (generic term)|vie (generic term)|contend (generic term)
+(verb)|compete (generic term)|vie (generic term)|contend (generic term)
+rivalrous|1
+(adj)|emulous|competitive (similar term)|competitory (similar term)
+rivalry|1
+(noun)|competition|contention|group action (generic term)|cooperation (antonym)
+rive|2
+(verb)|rend|rip|pull|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+(verb)|cleave|split|tear (generic term)
+river|1
+(noun)|stream (generic term)|watercourse (generic term)
+river acheron|1
+(noun)|Acheron|River Acheron|river (generic term)
+river adige|1
+(noun)|Adige|River Adige|river (generic term)
+river aire|1
+(noun)|Aire|River Aire|Aire River|river (generic term)
+river arno|1
+(noun)|Arno|Arno River|River Arno|river (generic term)
+river avon|2
+(noun)|Avon|River Avon|river (generic term)
+(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river (generic term)
+river basin|1
+(noun)|basin|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+river birch|1
+(noun)|black birch|red birch|Betula nigra|birch (generic term)|birch tree (generic term)
+river blindness|1
+(noun)|onchocerciasis|infestation (generic term)
+river boat|1
+(noun)|boat (generic term)
+river bottom|1
+(noun)|riverbed|bed (generic term)|bottom (generic term)
+river boulder|1
+(noun)|boulder (generic term)|bowlder (generic term)
+river cam|1
+(noun)|Cam|River Cam|Cam River|river (generic term)
+river cocytus|1
+(noun)|Cocytus|River Cocytus|river (generic term)
+river cooter|1
+(noun)|cooter|Pseudemys concinna|turtle (generic term)
+river dolphin|1
+(noun)|dolphin (generic term)
+river gum|1
+(noun)|river red gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+river horse|1
+(noun)|hippopotamus|hippo|Hippopotamus amphibius|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+river kasai|1
+(noun)|Kasai|Kasai River|River Kasai|river (generic term)
+river lethe|1
+(noun)|Lethe|River Lethe|river (generic term)
+river limpet|1
+(noun)|freshwater limpet|Ancylus fluviatilis|gastropod (generic term)|univalve (generic term)
+river otter|1
+(noun)|Lutra canadensis|otter (generic term)
+river pear|1
+(noun)|anchovy pear|edible fruit (generic term)
+river prawn|2
+(noun)|prawn (generic term)|shrimp (generic term)
+(noun)|long-clawed prawn|Palaemon australis|prawn (generic term)
+river red gum|1
+(noun)|river gum|Eucalyptus camaldulensis|Eucalyptus rostrata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+river severn|1
+(noun)|Severn|River Severn|Severn River|river (generic term)
+river shad|1
+(noun)|Alosa chrysocloris|shad (generic term)
+river styx|1
+(noun)|Styx|River Styx|river (generic term)
+river thames|1
+(noun)|Thames|River Thames|Thames River|river (generic term)
+river trent|1
+(noun)|Trent|River Trent|Trent River|river (generic term)
+river tyne|1
+(noun)|Tyne|River Tyne|Tyne River|river (generic term)
+rivera|1
+(noun)|Rivera|Diego Rivera|muralist (generic term)
+riverbank|1
+(noun)|riverside|bank (generic term)
+riverbed|1
+(noun)|river bottom|bed (generic term)|bottom (generic term)
+riverside|2
+(noun)|riverbank|bank (generic term)
+(noun)|Riverside|city (generic term)|metropolis (generic term)|urban center (generic term)
+rivet|5
+(noun)|stud|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|pin (generic term)
+(verb)|concentrate|focus|center|centre|pore|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|absorb (generic term)|engross (generic term)|engage (generic term)|occupy (generic term)
+rivet line|1
+(noun)|line (generic term)
+riveter|2
+(noun)|rivetter|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|riveting machine|rivetter|machine (generic term)
+riveting|1
+(adj)|absorbing|engrossing|fascinating|gripping|interesting (similar term)
+riveting machine|1
+(noun)|riveter|rivetter|machine (generic term)
+rivetter|2
+(noun)|riveter|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|riveting machine|riveter|machine (generic term)
+riviera|1
+(noun)|Riviera|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+rivina|1
+(noun)|Rivina|genus Rivina|caryophylloid dicot genus (generic term)
+rivina humilis|1
+(noun)|bloodberry|blood berry|rougeberry|rouge plant|Rivina humilis|houseplant (generic term)
+rivulet|1
+(noun)|rill|run|runnel|streamlet|stream (generic term)|watercourse (generic term)
+rivulus|1
+(noun)|killifish (generic term)
+riyadh|1
+(noun)|Riyadh|capital of Saudi Arabia|national capital (generic term)
+riyal|2
+(noun)|Saudi Arabian riyal|Saudi Arabian monetary unit (generic term)
+(noun)|Qatari riyal|Qatari monetary unit (generic term)
+riyal-omani|1
+(noun)|Omani rial|rial|Omani monetary unit (generic term)
+rn|2
+(noun)|radon|Rn|atomic number 86|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+(noun)|registered nurse|RN|nurse (generic term)
+rna|1
+(noun)|ribonucleic acid|RNA|polymer (generic term)
+rnase|1
+(noun)|ribonuclease|ribonucleinase|RNase|transferase (generic term)
+ro|1
+(noun)|Ro|artificial language (generic term)
+roach|7
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|butt (generic term)|stub (generic term)
+(noun)|R-2|Mexican valium|rophy|rope|roofy|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+(noun)|cockroach|dictyopterous insect (generic term)
+(noun)|Rutilus rutilus|cyprinid (generic term)|cyprinid fish (generic term)
+(verb)|comb (generic term)
+(verb)|cut off (generic term)|chop off (generic term)|lop off (generic term)
+roach clip|1
+(noun)|roach holder|pincer (generic term)|pair of pincers (generic term)|tweezer (generic term)|pair of tweezers (generic term)
+roach holder|1
+(noun)|roach clip|pincer (generic term)|pair of pincers (generic term)|tweezer (generic term)|pair of tweezers (generic term)
+road|4
+(adj)|roadworthy (similar term)|cross-country (antonym)
+(adj)|itinerant|touring|traveling|moving (similar term)
+(noun)|route|way (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+road agent|1
+(noun)|highjacker|highwayman|hijacker|holdup man (generic term)|stickup man (generic term)
+road builder|1
+(noun)|builder (generic term)|constructor (generic term)
+road construction|1
+(noun)|construction (generic term)|building (generic term)
+road game|1
+(noun)|away game|game (generic term)|home game (antonym)
+road gang|1
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+road hog|1
+(noun)|roadhog|driver (generic term)
+road map|2
+(noun)|guideline|plan (generic term)|program (generic term)|programme (generic term)|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|map (generic term)
+road mender|1
+(noun)|roadman|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+road metal|1
+(noun)|rock (generic term)|stone (generic term)
+road rage|1
+(noun)|violence (generic term)|force (generic term)
+road roller|1
+(noun)|steamroller|vehicle (generic term)
+road runner|1
+(noun)|marathoner|marathon runner|long-distance runner|runner (generic term)
+road sense|1
+(noun)|common sense (generic term)|good sense (generic term)|gumption (generic term)|horse sense (generic term)|sense (generic term)|mother wit (generic term)
+road show|1
+(noun)|show (generic term)
+road surface|1
+(noun)|paved surface (generic term)
+road test|1
+(noun)|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+road to damascus|1
+(noun)|road to Damascus|landmark (generic term)|turning point (generic term)|watershed (generic term)
+roadbed|1
+(noun)|bed (generic term)
+roadblock|2
+(noun)|barrier|obstacle (generic term)|obstruction (generic term)
+(noun)|barricade|barrier (generic term)
+roadbook|1
+(noun)|guidebook (generic term)|guide (generic term)
+roadhog|1
+(noun)|road hog|driver (generic term)
+roadhouse|1
+(noun)|hostel (generic term)|hostelry (generic term)|inn (generic term)|lodge (generic term)|auberge (generic term)
+roadkill|1
+(noun)|body (generic term)|dead body (generic term)
+roadless|1
+(adj)|pathless|trackless|untracked|untrod|untrodden|inaccessible (similar term)|unaccessible (similar term)
+roadman|2
+(noun)|traveling salesman|travelling salesman|commercial traveler|commercial traveller|bagman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+(noun)|road mender|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+roadrunner|1
+(noun)|chaparral cock|Geococcyx californianus|cuckoo (generic term)
+roads|1
+(noun)|roadstead|anchorage (generic term)|anchorage ground (generic term)
+roadside|1
+(noun)|wayside|edge (generic term)|margin (generic term)
+roadstead|1
+(noun)|roads|anchorage (generic term)|anchorage ground (generic term)
+roadster|2
+(noun)|runabout|two-seater|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|buggy|carriage (generic term)|equipage (generic term)|rig (generic term)
+roadway|1
+(noun)|road (generic term)|route (generic term)
+roadworthiness|1
+(noun)|worthiness (generic term)
+roadworthy|1
+(adj)|road (similar term)
+roald amundsen|1
+(noun)|Amundsen|Roald Amundsen|explorer (generic term)|adventurer (generic term)
+roald hoffmann|1
+(noun)|Hoffmann|Roald Hoffmann|chemist (generic term)
+roam|1
+(verb)|roll|wander|swan|stray|tramp|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+roamer|1
+(noun)|wanderer|rover|bird of passage|traveler (generic term)|traveller (generic term)
+roan|3
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|leather (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+roanoke|1
+(noun)|Roanoke|city (generic term)|metropolis (generic term)|urban center (generic term)
+roar|9
+(noun)|boom|roaring|thunder|noise (generic term)
+(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roaring|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|cry (generic term)
+(verb)|howl|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|thunder|shout (generic term)
+(verb)|howl|ululate|wail|yawl|yaup|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|proceed (generic term)|go forward (generic term)|continue (generic term)
+(verb)|bellow|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|howl|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+roar off|1
+(verb)|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+roarer|1
+(noun)|bawler|bellower|screamer|screecher|shouter|yeller|communicator (generic term)
+roaring|4
+(adj)|booming|flourishing|palmy|prospering|prosperous|thriving|successful (similar term)
+(adj)|deafening|earsplitting|thunderous|thundery|loud (similar term)
+(noun)|boom|roar|thunder|noise (generic term)
+(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roar|yowl|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+roast|5
+(adj)|roasted|cooked (similar term)
+(noun)|joint|cut (generic term)|cut of meat (generic term)
+(noun)|knock|criticism (generic term)|critique (generic term)
+(verb)|cook (generic term)
+(verb)|ridicule|guy|blackguard|laugh at|jest at|rib|make fun|poke fun|mock (generic term)|bemock (generic term)
+roast beef|1
+(noun)|beef roast|roast (generic term)|joint (generic term)
+roast beef plant|1
+(noun)|stinking iris|gladdon|gladdon iris|stinking gladwyn|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+roast lamb|1
+(noun)|lamb roast|roast (generic term)|joint (generic term)
+roast pork|1
+(noun)|pork roast|roast (generic term)|joint (generic term)
+roast veal|1
+(noun)|veal roast|roast (generic term)|joint (generic term)
+roasted|1
+(adj)|roast|cooked (similar term)
+roaster|4
+(noun)|critic (generic term)
+(noun)|cook (generic term)
+(noun)|chicken (generic term)|poulet (generic term)|volaille (generic term)
+(noun)|pan (generic term)|cooking pan (generic term)
+roasting|1
+(noun)|cooking (generic term)|cookery (generic term)|preparation (generic term)
+rob|2
+(verb)|steal (generic term)
+(verb)|overcharge|soak|surcharge|gazump|fleece|plume|pluck|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+rob roy|2
+(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|Rob Roy|manhattan (generic term)
+robaxin|1
+(noun)|methocarbamol|Robaxin|muscle relaxant (generic term)
+robber|1
+(noun)|thief (generic term)|stealer (generic term)
+robber fly|1
+(noun)|bee killer|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+robber frog|2
+(noun)|barking frog|Hylactophryne augusti|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+(noun)|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+robbery|2
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+(noun)|looting|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+robbery conviction|1
+(noun)|conviction (generic term)|judgment of conviction (generic term)|condemnation (generic term)|sentence (generic term)
+robbery suspect|1
+(noun)|suspect (generic term)
+robbins|1
+(noun)|Robbins|Jerome Robbins|choreographer (generic term)
+robe|3
+(noun)|garment (generic term)
+(noun)|gown|outerwear (generic term)|overclothes (generic term)
+(verb)|vest|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+robe-de-chambre|1
+(noun)|dressing gown|lounging robe|robe (generic term)
+robed|1
+(adj)|appareled|attired|dressed|garbed|garmented|habilimented|clothed (similar term)|clad (similar term)
+robert|1
+(noun)|Robert|Henry M. Robert|Henry Martyn Robert|parliamentarian (generic term)
+robert's rules of order|1
+(noun)|Robert's Rules of Order|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+robert a. heinlein|1
+(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer (generic term)|author (generic term)
+robert abram bartlett|1
+(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer (generic term)|adventurer (generic term)
+robert adam|1
+(noun)|Adam|Robert Adam|architect (generic term)|designer (generic term)
+robert alexander schumann|1
+(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer (generic term)
+robert andrews millikan|1
+(noun)|Millikan|Robert Andrews Millikan|physicist (generic term)
+robert anson heinlein|1
+(noun)|Heinlein|Robert A. Heinlein|Robert Anson Heinlein|writer (generic term)|author (generic term)
+robert barany|1
+(noun)|Barany|Robert Barany|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+robert bartlett|1
+(noun)|Bartlett|Robert Bartlett|Robert Abram Bartlett|Captain Bob|explorer (generic term)|adventurer (generic term)
+robert benchley|1
+(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+robert boyle|1
+(noun)|Boyle|Robert Boyle|chemist (generic term)
+robert brown|1
+(noun)|Brown|Robert Brown|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+robert browning|1
+(noun)|Browning|Robert Browning|poet (generic term)
+robert bruce mathias|1
+(noun)|Mathias|Bob Mathias|Robert Bruce Mathias|athlete (generic term)|jock (generic term)
+robert bunsen|1
+(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist (generic term)
+robert burns|1
+(noun)|Burns|Robert Burns|poet (generic term)
+robert burns woodward|1
+(noun)|Woodward|Bob Woodward|Robert Woodward|Robert Burns Woodward|chemist (generic term)
+robert charles benchley|1
+(noun)|Benchley|Robert Benchley|Robert Charles Benchley|humorist (generic term)|humourist (generic term)|writer (generic term)|author (generic term)
+robert charles venturi|1
+(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect (generic term)|designer (generic term)
+robert clive|1
+(noun)|Clive|Robert Clive|Baron Clive|Baron Clive of Plassey|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+robert curl|1
+(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist (generic term)
+robert de niro|1
+(noun)|De Niro|Robert De Niro|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+robert e. lee|1
+(noun)|Lee|Robert E. Lee|Robert Edward Lee|general (generic term)|full general (generic term)
+robert e. peary|1
+(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer (generic term)|adventurer (generic term)
+robert e lee's birthday|1
+(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day (generic term)
+robert e lee day|1
+(noun)|Robert E Lee's Birthday|Robert E Lee Day|Lee's Birthday|January 19|day (generic term)
+robert edward lee|1
+(noun)|Lee|Robert E. Lee|Robert Edward Lee|general (generic term)|full general (generic term)
+robert edwin peary|1
+(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer (generic term)|adventurer (generic term)
+robert emmet sherwood|1
+(noun)|Sherwood|Robert Emmet Sherwood|dramatist (generic term)|playwright (generic term)
+robert f. curl|1
+(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist (generic term)
+robert falcon scott|1
+(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer (generic term)|adventurer (generic term)
+robert floyd curl jr.|1
+(noun)|Curl|Robert Curl|Robert F. Curl|Robert Floyd Curl Jr.|chemist (generic term)
+robert frost|1
+(noun)|Frost|Robert Frost|Robert Lee Frost|poet (generic term)
+robert fulton|1
+(noun)|Fulton|Robert Fulton|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+robert graves|1
+(noun)|Graves|Robert Graves|Robert Ranke Graves|writer (generic term)|author (generic term)
+robert gray|1
+(noun)|Gray|Robert Gray|navigator (generic term)
+robert herrick|1
+(noun)|Herrick|Robert Herrick|poet (generic term)
+robert hooke|1
+(noun)|Hooke|Robert Hooke|scientist (generic term)|man of science (generic term)
+robert hutchings goddard|1
+(noun)|Goddard|Robert Hutchings Goddard|physicist (generic term)
+robert i|1
+(noun)|Bruce|Robert the Bruce|Robert I|king (generic term)|male monarch (generic term)|Rex (generic term)
+robert james fischer|1
+(noun)|Fischer|Bobby Fischer|Robert James Fischer|chess master (generic term)
+robert jemison van de graaff|1
+(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist (generic term)
+robert joffrey|1
+(noun)|Joffrey|Robert Joffrey|choreographer (generic term)
+robert king merton|1
+(noun)|Merton|Robert Merton|Robert King Merton|sociologist (generic term)
+robert koch|1
+(noun)|Koch|Robert Koch|bacteriologist (generic term)
+robert lee frost|1
+(noun)|Frost|Robert Frost|Robert Lee Frost|poet (generic term)
+robert louis balfour stevenson|1
+(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer (generic term)|author (generic term)
+robert louis stevenson|1
+(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer (generic term)|author (generic term)
+robert lowell|1
+(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet (generic term)
+robert m. yerkes|1
+(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist (generic term)
+robert macgregor|1
+(noun)|MacGregor|Robert MacGregor|Rob Roy|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+robert maynard hutchins|1
+(noun)|Hutchins|Robert Maynard Hutchins|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+robert mearns yerkes|1
+(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist (generic term)
+robert merton|1
+(noun)|Merton|Robert Merton|Robert King Merton|sociologist (generic term)
+robert mills|1
+(noun)|Mills|Robert Mills|architect (generic term)|designer (generic term)
+robert mitchum|1
+(noun)|Mitchum|Robert Mitchum|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+robert morris|1
+(noun)|Morris|Robert Morris|American Revolutionary leader (generic term)|financier (generic term)|moneyman (generic term)
+robert motherwell|1
+(noun)|Motherwell|Robert Motherwell|painter (generic term)
+robert nesta marley|1
+(noun)|Marley|Robert Nesta Marley|Bob Marley|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+robert oppenheimer|1
+(noun)|Oppenheimer|Robert Oppenheimer|nuclear physicist (generic term)
+robert orr|1
+(noun)|Orr|Bobby Orr|Robert Orr|hockey player (generic term)|ice-hockey player (generic term)
+robert owen|1
+(noun)|Owen|Robert Owen|industrialist (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+robert peary|1
+(noun)|Peary|Robert Peary|Robert E. Peary|Robert Edwin Peary|explorer (generic term)|adventurer (generic term)
+robert peel|1
+(noun)|Peel|Robert Peel|Sir Robert Peel|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+robert penn warren|1
+(noun)|Warren|Robert Penn Warren|writer (generic term)|author (generic term)|poet (generic term)
+robert r. livingston|1
+(noun)|Livingston|Robert R. Livingston|American Revolutionary leader (generic term)
+robert ranke graves|1
+(noun)|Graves|Robert Graves|Robert Ranke Graves|writer (generic term)|author (generic term)
+robert redford|1
+(noun)|Redford|Robert Redford|Charles Robert Redford|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+robert robinson|1
+(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist (generic term)
+robert schumann|1
+(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer (generic term)
+robert scott|1
+(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer (generic term)|adventurer (generic term)
+robert southey|1
+(noun)|Southey|Robert Southey|poet (generic term)
+robert the bruce|1
+(noun)|Bruce|Robert the Bruce|Robert I|king (generic term)|male monarch (generic term)|Rex (generic term)
+robert traill spence lowell jr.|1
+(noun)|Lowell|Robert Lowell|Robert Traill Spence Lowell Jr.|poet (generic term)
+robert treat paine|1
+(noun)|Paine|Robert Treat Paine|American Revolutionary leader (generic term)
+robert tyre jones|1
+(noun)|Jones|Bobby Jones|Robert Tyre Jones|golfer (generic term)|golf player (generic term)|linksman (generic term)
+robert van de graaff|1
+(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist (generic term)
+robert venturi|1
+(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect (generic term)|designer (generic term)
+robert walpole|1
+(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman (generic term)|solon (generic term)|national leader (generic term)
+robert wilhelm bunsen|1
+(noun)|Bunsen|Robert Bunsen|Robert Wilhelm Bunsen|chemist (generic term)
+robert william service|1
+(noun)|Service|Robert William Service|writer (generic term)|author (generic term)
+robert woodrow wilson|1
+(noun)|Wilson|Robert Woodrow Wilson|physicist (generic term)
+robert woodward|1
+(noun)|Woodward|Bob Woodward|Robert Woodward|Robert Burns Woodward|chemist (generic term)
+roberto francesco romolo bellarmine|1
+(noun)|Bellarmine|Bellarmino|Cardinal Bellarmine|Roberto Francesco Romolo Bellarmine|cardinal (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+roberts|4
+(noun)|Roberts|Richard J. Roberts|Richard John Roberts|chemist (generic term)
+(noun)|Roberts|Oral Roberts|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+(noun)|Roberts|Kenneth Roberts|writer (generic term)|author (generic term)
+(noun)|Roberts|Bartholomew Roberts|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+robertson|1
+(noun)|Robertson|Oscar Robertson|Oscar Palmer Robertson|guard (generic term)
+robeson|1
+(noun)|Robeson|Paul Robeson|Paul Bustill Robeson|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+robespierre|1
+(noun)|Robespierre|Maxmillien Marie Isidore de Robespierre|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+robin|2
+(noun)|redbreast|robin redbreast|Old World robin|Erithacus rubecola|thrush (generic term)
+(noun)|American robin|Turdus migratorius|thrush (generic term)
+robin's plantain|1
+(noun)|Erigeron pulchellus|fleabane (generic term)
+robin goodfellow|1
+(noun)|Puck|Robin Goodfellow|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+robin hood|1
+(noun)|Robin Hood|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+robin redbreast|1
+(noun)|robin|redbreast|Old World robin|Erithacus rubecola|thrush (generic term)
+robinia|1
+(noun)|Robinia|genus Robinia|rosid dicot genus (generic term)
+robinia hispida|1
+(noun)|bristly locust|rose acacia|moss locust|Robinia hispida|shrub (generic term)|bush (generic term)
+robinia pseudoacacia|1
+(noun)|black locust|yellow locust|Robinia pseudoacacia|locust tree (generic term)|locust (generic term)
+robinia viscosa|1
+(noun)|clammy locust|Robinia viscosa|locust tree (generic term)|locust (generic term)
+robinson|7
+(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist (generic term)
+(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter (generic term)|gladiator (generic term)
+(noun)|Robinson|Lennox Robinson|Esme Stuart Lennox Robinson|dramatist (generic term)|playwright (generic term)
+(noun)|Robinson|James Harvey Robinson|historian (generic term)|historiographer (generic term)
+(noun)|Robinson|Jackie Robinson|Jack Roosevelt Robinson|ballplayer (generic term)|baseball player (generic term)
+(noun)|Robinson|Edwin Arlington Robinson|poet (generic term)
+(noun)|Robinson|Edward G. Robinson|Edward Goldenberg Robinson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+robinson crusoe|1
+(noun)|Robinson Crusoe|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+robinson jeffers|1
+(noun)|Jeffers|Robinson Jeffers|John Robinson Jeffers|poet (generic term)
+robitussin|1
+(noun)|Robitussin|expectorant (generic term)|expectorator (generic term)
+roble|2
+(noun)|Platymiscium trinitatis|quira (generic term)
+(noun)|California white oak|valley oak|valley white oak|Quercus lobata|white oak (generic term)
+roble beech|1
+(noun)|Nothofagus obliqua|southern beech (generic term)|evergreen beech (generic term)
+robolo|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+robot|1
+(noun)|automaton|golem|mechanism (generic term)
+robot bomb|1
+(noun)|buzz bomb|flying bomb|doodlebug|V-1|guided missile (generic term)
+robot pilot|1
+(noun)|autopilot|automatic pilot|device (generic term)
+robotic telesurgery|1
+(noun)|microsurgery (generic term)
+robotics|1
+(noun)|artificial intelligence (generic term)|AI (generic term)
+robotics equipment|1
+(noun)|equipment (generic term)
+robotlike|1
+(adj)|automatic|automatonlike|machinelike|mechanical (similar term)
+robust|4
+(adj)|beefy (similar term)|burly (similar term)|husky (similar term)|strapping (similar term)|buirdly (similar term)|big-boned (similar term)|big-chested (similar term)|chesty (similar term)|big-shouldered (similar term)|broad-shouldered (similar term)|square-shouldered (similar term)|cast-iron (similar term)|iron (similar term)|hardy (similar term)|stalwart (similar term)|stout (similar term)|sturdy (similar term)|heavy-armed (similar term)|square-built (similar term)|vigorous (similar term)|healthy (related term)|rugged (related term)|strong (related term)|frail (antonym)
+(adj)|full-bodied|racy|rich|tasty (similar term)
+(adj)|strong (similar term)
+(adj)|unrefined (similar term)
+robusta coffee|1
+(noun)|Rio Nunez coffee|Coffea robusta|Coffea canephora|coffee (generic term)|coffee tree (generic term)
+robustious|1
+(adj)|boisterous|rambunctious|rumbustious|unruly|disorderly (similar term)
+robustness|2
+(noun)|hardiness|lustiness|strength (generic term)
+(noun)|characteristic (generic term)
+roc|1
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+rocambole|1
+(noun)|sand leek|giant garlic|Spanish garlic|Allium scorodoprasum|alliaceous plant (generic term)
+roccella|1
+(noun)|Roccella tinctoria|lichen (generic term)
+roccella tinctoria|1
+(noun)|roccella|Roccella tinctoria|lichen (generic term)
+roccellaceae|1
+(noun)|Roccellaceae|family Roccellaceae|fungus family (generic term)
+rocco marciano|1
+(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter (generic term)|gladiator (generic term)
+roccus|1
+(noun)|Roccus|genus Roccus|fish genus (generic term)
+roccus saxatilis|1
+(noun)|striped bass|striper|Roccus saxatilis|rockfish|sea bass (generic term)
+rocephin|1
+(noun)|ceftriaxone|Rocephin|cephalosporin (generic term)|Mefoxin (generic term)
+rochambeau|1
+(noun)|Rochambeau|Comte de Rochambeau|Jean Baptiste Donatien de Vimeur|general (generic term)|full general (generic term)
+rochelle powder|1
+(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+rochelle salt|1
+(noun)|Rochelle salt|Rochelle salts|potassium sodium tartrate|double salt (generic term)
+rochelle salts|1
+(noun)|Rochelle salt|Rochelle salts|potassium sodium tartrate|double salt (generic term)
+rochester|2
+(noun)|Rochester|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Rochester|town (generic term)
+rochon prism|1
+(noun)|Rochon prism|Wollaston prism|optical device (generic term)
+rock|9
+(noun)|stone|natural object (generic term)
+(noun)|stone|material (generic term)|stuff (generic term)
+(noun)|Rock|John Rock|gynecologist (generic term)|gynaecologist (generic term)|woman's doctor (generic term)
+(noun)|good person (generic term)
+(noun)|rock candy|candy (generic term)|confect (generic term)
+(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock music|popular music (generic term)|popular music genre (generic term)
+(noun)|careen|sway|tilt|lurch (generic term)|pitch (generic term)|pitching (generic term)
+(verb)|sway|shake|move back and forth (generic term)
+(verb)|sway|move (generic term)|displace (generic term)
+rock'n'roll|1
+(noun)|rock 'n' roll|rock-and-roll|rock and roll|rock|rock music|popular music (generic term)|popular music genre (generic term)
+rock-and-roll|1
+(noun)|rock 'n' roll|rock'n'roll|rock and roll|rock|rock music|popular music (generic term)|popular music genre (generic term)
+rock-bottom|1
+(adj)|reduced|low (similar term)
+rock-inhabiting|1
+(adj)|inhabited (similar term)
+rock-loving|1
+(adj)|healthy (similar term)
+rock-ribbed|2
+(adj)|rockbound|cliffy (similar term)|clifflike (similar term)
+(adj)|die-hard|inflexible (similar term)
+rock-steady|1
+(adj)|dependable|steady-going|steady (similar term)
+rock 'n' roll|1
+(noun)|rock'n'roll|rock-and-roll|rock and roll|rock|rock music|popular music (generic term)|popular music genre (generic term)
+rock 'n' roll musician|1
+(noun)|rocker|musician (generic term)|instrumentalist (generic term)|player (generic term)
+rock and roll|1
+(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock|rock music|popular music (generic term)|popular music genre (generic term)
+rock band|1
+(noun)|rock group|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+rock barnacle|1
+(noun)|acorn barnacle|Balanus balanoides|barnacle (generic term)|cerriped (generic term)|cerripede (generic term)
+rock bass|2
+(noun)|rock sea bass|Centropristis philadelphica|sea bass (generic term)
+(noun)|rock sunfish|Ambloplites rupestris|sunfish (generic term)|centrarchid (generic term)
+rock beauty|1
+(noun)|Holocanthus tricolor|butterfly fish (generic term)
+rock bit|1
+(noun)|roller bit|drilling bit (generic term)|drill bit (generic term)
+rock bottom|1
+(noun)|bottom (generic term)
+rock brake|3
+(noun)|cliff brake|cliff-brake|fern (generic term)
+(noun)|fern (generic term)
+(noun)|rock polypody|American wall fern|Polypodium virgianum|polypody (generic term)
+rock cake|1
+(noun)|cake (generic term)
+rock candy|2
+(noun)|rock|candy (generic term)|confect (generic term)
+(noun)|candy (generic term)|confect (generic term)
+rock climber|1
+(noun)|cragsman|climber (generic term)
+rock climbing|1
+(noun)|sport (generic term)|athletics (generic term)|climb (generic term)|mount (generic term)
+rock concert|1
+(noun)|concert (generic term)
+rock cornish|1
+(noun)|Rock Cornish|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+rock cornish hen|1
+(noun)|Rock Cornish hen|poultry (generic term)
+rock crab|1
+(noun)|Cancer irroratus|crab (generic term)
+rock cress|1
+(noun)|rockcress|cress (generic term)|cress plant (generic term)
+rock crystal|1
+(noun)|transparent quartz|quartz (generic term)
+rock dove|1
+(noun)|rock pigeon|Columba livia|pigeon (generic term)
+rock drill|1
+(noun)|bore bit|borer|stone drill|drill (generic term)
+rock elm|2
+(noun)|Ulmus thomasii|elm (generic term)|elm tree (generic term)
+(noun)|American elm|white elm|water elm|Ulmus americana|elm (generic term)|elm tree (generic term)
+rock fever|1
+(noun)|brucellosis|undulant fever|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+rock garden|1
+(noun)|rockery|garden (generic term)
+rock geranium|1
+(noun)|Heuchera americana|alumroot (generic term)|alumbloom (generic term)
+rock group|1
+(noun)|rock band|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+rock gunnel|1
+(noun)|butterfish|Pholis gunnellus|gunnel (generic term)|bracketed blenny (generic term)
+rock harlequin|1
+(noun)|Roman wormwood|Corydalis sempervirens|Fumaria sempervirens|Corydalis (generic term)|genus Corydalis (generic term)
+rock hind|1
+(noun)|Epinephelus adscensionis|hind (generic term)
+rock hopper|1
+(noun)|crested penguin|penguin (generic term)
+rock hyrax|1
+(noun)|rock rabbit|Procavia capensis|hyrax (generic term)|coney (generic term)|cony (generic term)|dassie (generic term)|das (generic term)
+rock island|1
+(noun)|Rock Island|town (generic term)
+rock kangaroo|1
+(noun)|rock wallaby|wallaby (generic term)|brush kangaroo (generic term)
+rock lobster|2
+(noun)|spiny lobster|langouste|crayfish|shellfish (generic term)
+(noun)|spiny lobster|langouste|crawfish|crayfish|sea crawfish|lobster (generic term)
+rock maple|1
+(noun)|sugar maple|Acer saccharum|maple (generic term)
+rock music|1
+(noun)|rock 'n' roll|rock'n'roll|rock-and-roll|rock and roll|rock|popular music (generic term)|popular music genre (generic term)
+rock of gibraltar|1
+(noun)|Gibraltar|Rock of Gibraltar|Calpe|colony (generic term)|settlement (generic term)|promontory (generic term)|headland (generic term)|head (generic term)|foreland (generic term)
+rock oil|1
+(noun)|petroleum|crude oil|crude|fossil oil|oil (generic term)|fossil fuel (generic term)
+rock opera|1
+(noun)|concept album (generic term)
+rock outcrop|1
+(noun)|outcrop|outcropping|rock (generic term)|stone (generic term)
+rock partridge|1
+(noun)|Greek partridge|Alectoris graeca|partridge (generic term)
+rock penstemon|1
+(noun)|cliff penstemon|Penstemon rupicola|wildflower (generic term)|wild flower (generic term)
+rock pigeon|1
+(noun)|rock dove|Columba livia|pigeon (generic term)
+rock pink|1
+(noun)|Talinum calycinum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+rock plant|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+rock polypody|1
+(noun)|rock brake|American wall fern|Polypodium virgianum|polypody (generic term)
+rock purslane|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+rock python|1
+(noun)|rock snake|Python sebae|python (generic term)
+rock rabbit|2
+(noun)|rock hyrax|Procavia capensis|hyrax (generic term)|coney (generic term)|cony (generic term)|dassie (generic term)|das (generic term)
+(noun)|pika|mouse hare|coney|cony|lagomorph (generic term)|gnawing mammal (generic term)
+rock rattlesnake|1
+(noun)|Crotalus lepidus|rattlesnake (generic term)|rattler (generic term)
+rock rose|2
+(noun)|rockrose|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+(noun)|rockrose|shrub (generic term)|bush (generic term)
+rock salmon|1
+(noun)|fish (generic term)
+rock salt|1
+(noun)|halite|sodium chloride (generic term)|common salt (generic term)|mineral (generic term)
+rock sandwort|1
+(noun)|Arenaria stricta|sandwort (generic term)
+rock sea bass|1
+(noun)|rock bass|Centropristis philadelphica|sea bass (generic term)
+rock snake|1
+(noun)|rock python|Python sebae|python (generic term)
+rock spikemoss|1
+(noun)|dwarf lycopod|Selaginella rupestris|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+rock springs|1
+(noun)|Rock Springs|town (generic term)
+rock squirrel|1
+(noun)|Citellus variegatus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+rock star|1
+(noun)|rocker (generic term)|rock 'n' roll musician (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+rock sunfish|1
+(noun)|rock bass|Ambloplites rupestris|sunfish (generic term)|centrarchid (generic term)
+rock wallaby|1
+(noun)|rock kangaroo|wallaby (generic term)|brush kangaroo (generic term)
+rock wool|1
+(noun)|mineral wool|insulator (generic term)|dielectric (generic term)|nonconductor (generic term)
+rock wren|2
+(noun)|Xenicus gilviventris|New Zealand wren (generic term)
+(noun)|Salpinctes obsoletus|wren (generic term)|jenny wren (generic term)
+rockabilly|1
+(noun)|popular music (generic term)|popular music genre (generic term)
+rockbound|1
+(adj)|rock-ribbed|cliffy (similar term)|clifflike (similar term)
+rockchuck|1
+(noun)|yellowbelly marmot|Marmota flaviventris|marmot (generic term)
+rockcress|2
+(noun)|yellow rocket|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed (generic term)
+(noun)|rock cress|cress (generic term)|cress plant (generic term)
+rockefeller|1
+(noun)|Rockefeller|John D. Rockefeller|John Davison Rockefeller|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+rocker|7
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|rock 'n' roll musician|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)
+(noun)|rocking chair|chair (generic term)
+(noun)|cradle|trough (generic term)
+(noun)|ice skate (generic term)
+(noun)|support (generic term)
+rocker arm|1
+(noun)|valve rocker|lever (generic term)
+rockers|1
+(noun)|bikers|youth subculture (generic term)
+rockery|1
+(noun)|rock garden|garden (generic term)
+rocket|7
+(noun)|projectile|vehicle (generic term)
+(noun)|rocket engine|jet engine (generic term)
+(noun)|roquette|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+(noun)|skyrocket|visual signal (generic term)
+(noun)|skyrocket|firework (generic term)|pyrotechnic (generic term)
+(verb)|skyrocket|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|propel (generic term)|impel (generic term)
+rocket-propelled|1
+(adj)|reaction propulsion (related term)
+rocket base|1
+(noun)|base (generic term)|base of operations (generic term)
+rocket cress|1
+(noun)|yellow rocket|rockcress|Barbarea vulgaris|Sisymbrium barbarea|weed (generic term)
+rocket engine|1
+(noun)|rocket|jet engine (generic term)
+rocket engineer|1
+(noun)|rocket scientist|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+rocket firing|1
+(noun)|rocket launching|launching (generic term)|launch (generic term)
+rocket fuel|1
+(noun)|rocket propellant|rocket propellent|charge (generic term)|burster (generic term)|bursting charge (generic term)|explosive charge (generic term)|propellant (generic term)|propellent (generic term)
+rocket larkspur|1
+(noun)|Consolida ambigua|Delphinium ajacis|flower (generic term)
+rocket launcher|1
+(noun)|launcher|armament (generic term)
+rocket launching|1
+(noun)|rocket firing|launching (generic term)|launch (generic term)
+rocket propellant|1
+(noun)|rocket fuel|rocket propellent|charge (generic term)|burster (generic term)|bursting charge (generic term)|explosive charge (generic term)|propellant (generic term)|propellent (generic term)
+rocket propellent|1
+(noun)|rocket fuel|rocket propellant|charge (generic term)|burster (generic term)|bursting charge (generic term)|explosive charge (generic term)|propellant (generic term)|propellent (generic term)
+rocket propulsion|1
+(noun)|reaction propulsion (generic term)
+rocket range|1
+(noun)|firing range (generic term)|target range (generic term)
+rocket salad|1
+(noun)|rocket|roquette|garden rocket|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+rocket scientist|2
+(noun)|thinker (generic term)
+(noun)|rocket engineer|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+rocketry|1
+(noun)|engineering (generic term)|engineering science (generic term)|applied science (generic term)|technology (generic term)
+rockfish|3
+(noun)|saltwater fish (generic term)
+(noun)|scorpaenid (generic term)|scorpaenid fish (generic term)
+(noun)|striped bass|striper|Roccus saxatilis|sea bass (generic term)
+rockfoil|1
+(noun)|saxifrage|breakstone|herb (generic term)|herbaceous plant (generic term)
+rockford|1
+(noun)|Rockford|city (generic term)|metropolis (generic term)|urban center (generic term)
+rockies|1
+(noun)|Rockies|Rocky Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+rockiness|1
+(noun)|unevenness (generic term)|variability (generic term)
+rocking chair|1
+(noun)|rocker|chair (generic term)
+rocking horse|1
+(noun)|hobby|hobbyhorse|plaything (generic term)|toy (generic term)
+rockingham|1
+(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman (generic term)|solon (generic term)|national leader (generic term)
+rockingham podocarp|1
+(noun)|brown pine|Rockingham podocarp|Podocarpus elatus|conifer (generic term)|coniferous tree (generic term)
+rocklike|1
+(adj)|granitic|granitelike|stony|hard (similar term)
+rockrose|2
+(noun)|rock rose|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+(noun)|rock rose|shrub (generic term)|bush (generic term)
+rockrose family|1
+(noun)|Cistaceae|family Cistaceae|dilleniid dicot family (generic term)
+rockslide|1
+(noun)|landslide (generic term)|landslip (generic term)
+rockweed|1
+(noun)|brown algae (generic term)
+rockwell|1
+(noun)|Rockwell|Norman Rockwell|illustrator (generic term)
+rockwell kent|1
+(noun)|Kent|Rockwell Kent|painter (generic term)
+rocky|4
+(adj)|bouldery|bouldered|stony|rough (similar term)|unsmooth (similar term)
+(adj)|rough|bumpy|jolty|jolting|jumpy|smooth (antonym)
+(adj)|unstable (similar term)
+(adj)|rough|difficult (similar term)|hard (similar term)
+rocky-mountain maple|1
+(noun)|dwarf maple|Rocky-mountain maple|Acer glabrum|maple (generic term)
+rocky marciano|1
+(noun)|Marciano|Rocco Marciano|Rocky Marciano|prizefighter (generic term)|gladiator (generic term)
+rocky mountain|1
+(adj)|Rocky Mountain|range|mountain range|range of mountains|chain|mountain chain|chain of mountains (related term)
+rocky mountain bee plant|1
+(noun)|Rocky Mountain bee plant|stinking clover|Cleome serrulata|spiderflower (generic term)|cleome (generic term)
+rocky mountain bighorn|1
+(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+rocky mountain bristlecone pine|1
+(noun)|bristlecone pine|Rocky Mountain bristlecone pine|Pinus aristata|pine (generic term)|pine tree (generic term)|true pine (generic term)
+rocky mountain dogbane|1
+(noun)|Rocky Mountain dogbane|Apocynum pumilum|dogbane (generic term)
+rocky mountain goat|1
+(noun)|mountain goat|Rocky Mountain goat|Oreamnos americanus|goat antelope (generic term)
+rocky mountain jay|1
+(noun)|Rocky Mountain jay|Perisoreus canadensis capitalis|Canada jay (generic term)|grey jay (generic term)|gray jay (generic term)|camp robber (generic term)|whisker jack (generic term)|Perisoreus canadensis (generic term)
+rocky mountain national park|1
+(noun)|Rocky Mountain National Park|national park (generic term)
+rocky mountain pinon|1
+(noun)|Rocky mountain pinon|Pinus edulis|nut pine (generic term)
+rocky mountain sheep|1
+(noun)|bighorn|bighorn sheep|cimarron|Rocky Mountain bighorn|Rocky Mountain sheep|Ovis canadensis|mountain sheep (generic term)
+rocky mountain spotted fever|1
+(noun)|Rocky Mountain spotted fever|mountain fever|tick fever|spotted fever (generic term)
+rocky mountain whitefish|1
+(noun)|Rocky Mountain whitefish|Prosopium williamsonii|whitefish (generic term)
+rocky mountains|1
+(noun)|Rockies|Rocky Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+rocky mountains cherry|1
+(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub (generic term)|suffrutex (generic term)
+rococo|2
+(adj)|fancy (similar term)
+(noun)|artistic style (generic term)|idiom (generic term)
+rocroi|1
+(noun)|Rocroi|Battle of Rocroi|pitched battle (generic term)
+rod|6
+(noun)|perch|pole|linear unit (generic term)
+(noun)|implement (generic term)
+(noun)|bacteria (generic term)|bacterium (generic term)
+(noun)|perch|pole|area unit (generic term)|square measure (generic term)
+(noun)|rod cell|retinal rod|visual cell (generic term)
+(noun)|gat|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+rod-shaped|2
+(adj)|bacillar|bacillary|bacilliform|baculiform|formed (similar term)
+(adj)|rodlike|rounded (similar term)
+rod cell|1
+(noun)|rod|retinal rod|visual cell (generic term)
+rod laver|1
+(noun)|Laver|Rod Laver|Rodney George Laver|tennis player (generic term)
+rodent|1
+(noun)|gnawer|gnawing animal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+rodent-like|1
+(adj)|animal (similar term)
+rodentia|1
+(noun)|Rodentia|order Rodentia|animal order (generic term)
+rodeo|2
+(noun)|exhibition (generic term)
+(noun)|pen (generic term)
+rodeo rider|1
+(noun)|cowboy|performer (generic term)|performing artist (generic term)
+rodgers|1
+(noun)|Rodgers|Richard Rodgers|composer (generic term)
+rodhos|1
+(noun)|Rhodes|Rodhos|Aegean island (generic term)
+rodin|1
+(noun)|Rodin|Auguste Rodin|Francois Auguste Rene Rodin|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+rodlike|1
+(adj)|rod-shaped|rounded (similar term)
+rodney george laver|1
+(noun)|Laver|Rod Laver|Rodney George Laver|tennis player (generic term)
+rodolia|1
+(noun)|Rodolia|genus Rodolia|genus Vedalia|arthropod genus (generic term)
+rodolia cardinalis|1
+(noun)|vedalia|Rodolia cardinalis|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+rodomontade|1
+(noun)|braggadocio|bluster|rhodomontade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+rodrigo borgia|1
+(noun)|Alexander VI|Pope Alexander VI|Borgia|Rodrigo Borgia|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+rodya raskolnikov|1
+(noun)|Raskolnikov|Rodya Raskolnikov|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+roe|3
+(noun)|hard roe|seafood (generic term)
+(noun)|spawn (generic term)
+(noun)|egg (generic term)
+roe deer|1
+(noun)|Capreolus capreolus|deer (generic term)|cervid (generic term)
+roebling|1
+(noun)|Roebling|John Roebling|John Augustus Roebling|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+roebuck|1
+(noun)|roe deer (generic term)|Capreolus capreolus (generic term)
+roentgen|2
+(noun)|R|radioactivity unit (generic term)
+(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist (generic term)
+roentgen ray|1
+(noun)|X ray|X-ray|X-radiation|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)|ionizing radiation (generic term)
+roentgenium|1
+(noun)|Rg|element 111|atomic number 111|chemical element (generic term)|element (generic term)
+roentgenogram|1
+(noun)|X ray|X-ray|X-ray picture|X-ray photograph|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+roentgenographic|1
+(adj)|radiography|diagnostic procedure|diagnostic technique (related term)
+roentgenography|1
+(noun)|X-ray photography|radiography (generic term)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+roentgenoscope|1
+(noun)|fluoroscope|X-ray machine (generic term)
+rofecoxib|1
+(noun)|Vioxx|Cox-2 inhibitor (generic term)
+rogaine|1
+(noun)|minoxidil|Loniten|Rogaine|vasodilator (generic term)|vasodilative (generic term)
+rogation|1
+(noun)|invocation (generic term)|supplication (generic term)
+rogation day|1
+(noun)|Rogation Day|Christian holy day (generic term)
+roger bacon|1
+(noun)|Bacon|Roger Bacon|monk (generic term)|monastic (generic term)|scientist (generic term)|man of science (generic term)
+roger bannister|1
+(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man (generic term)
+roger brooke taney|1
+(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice (generic term)
+roger de mortimer|1
+(noun)|Mortimer|Roger de Mortimer|Lord (generic term)|noble (generic term)|nobleman (generic term)
+roger eliot fry|1
+(noun)|Fry|Roger Fry|Roger Eliot Fry|painter (generic term)|art critic (generic term)
+roger fry|1
+(noun)|Fry|Roger Fry|Roger Eliot Fry|painter (generic term)|art critic (generic term)
+roger huntington sessions|1
+(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer (generic term)
+roger sessions|1
+(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer (generic term)
+roger sherman|1
+(noun)|Sherman|Roger Sherman|American Revolutionary leader (generic term)
+roger taney|1
+(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice (generic term)
+roger williams|1
+(noun)|Williams|Roger Williams|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|settler (generic term)|colonist (generic term)
+rogers|3
+(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist (generic term)|humourist (generic term)
+(noun)|Rogers|Ginger Rogers|Virginia McMath|Virginia Katherine McMath|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+(noun)|Rogers|Carl Rogers|psychologist (generic term)
+roget|1
+(noun)|Roget|Peter Mark Roget|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+rogue|1
+(noun)|knave|rascal|rapscallion|scalawag|scallywag|varlet|villain (generic term)|scoundrel (generic term)
+rogue's gallery|2
+(noun)|galere|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+rogue elephant|1
+(noun)|elephant (generic term)
+rogue nation|1
+(noun)|rogue state|renegade state|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+rogue state|1
+(noun)|renegade state|rogue nation|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+roguery|1
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguishness|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+roguish|2
+(adj)|devilish|rascally|playful (similar term)
+(adj)|rascally|scoundrelly|blackguardly|dishonest (similar term)|dishonorable (similar term)
+roguishness|2
+(noun)|prankishness|rascality|naughtiness (generic term)|mischievousness (generic term)|badness (generic term)
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|shenanigan|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+rohypnol|1
+(noun)|flunitrazepan|Rohypnol|club drug (generic term)
+roi|1
+(noun)|return on invested capital|return on investment|ROI|rate of return (generic term)
+roil|2
+(verb)|churn|boil|moil|move (generic term)
+(verb)|rile|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+roiled|2
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|steamed|stung|displeased (similar term)
+(adj)|churning|roiling|roily|turbulent|agitated (similar term)
+roiling|1
+(adj)|churning|roiled|roily|turbulent|agitated (similar term)
+roily|1
+(adj)|churning|roiling|roiled|turbulent|agitated (similar term)
+roister|1
+(verb)|carouse|riot|revel (generic term)|racket (generic term)|make whoopie (generic term)|make merry (generic term)|make happy (generic term)|whoop it up (generic term)|jollify (generic term)|wassail (generic term)
+roisterer|1
+(noun)|reveler (generic term)|reveller (generic term)|merrymaker (generic term)
+rolaids|1
+(noun)|Rolaids|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+roland de lassus|1
+(noun)|Lasso|Orlando di Lasso|Roland de Lassus|composer (generic term)
+rolando's area|1
+(noun)|motor area|motor region|motor cortex|Rolando's area|excitable area|cortical area (generic term)|cortical region (generic term)
+rolando's fissure|1
+(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus centralis|sulcus (generic term)
+role|4
+(noun)|function|office|part|duty (generic term)
+(noun)|character|theatrical role|part|persona|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+(noun)|function|purpose|use|utility (generic term)|usefulness (generic term)
+(noun)|activity (generic term)
+role model|1
+(noun)|model|leader (generic term)
+role player|2
+(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|shammer|pseudo|pseud|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|actor|histrion|player|thespian|performer (generic term)|performing artist (generic term)
+roleplay|1
+(verb)|act|play|playact|perform (generic term)
+roleplaying|1
+(noun)|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+rolf|1
+(noun)|Rollo|Rolf|Hrolf|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+roll|33
+(noun)|axial rotation|axial motion|rotation (generic term)|revolution (generic term)|gyration (generic term)
+(noun)|roster|list (generic term)|listing (generic term)
+(noun)|roller|rolling wave|wave (generic term)|moving ridge (generic term)
+(noun)|film (generic term)|photographic film (generic term)
+(noun)|coil|whorl|curl|curlicue|ringlet|gyre|scroll|round shape (generic term)
+(noun)|bankroll|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+(noun)|bun|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|peal|pealing|rolling|sound (generic term)
+(noun)|paradiddle|drum roll|sound (generic term)
+(noun)|scroll|manuscript (generic term)|holograph (generic term)
+(noun)|cylinder (generic term)
+(noun)|cast|throw (generic term)
+(noun)|gait (generic term)
+(noun)|flight maneuver (generic term)|airplane maneuver (generic term)
+(noun)|propulsion (generic term)|actuation (generic term)
+(verb)|turn over|turn (generic term)|roll down (related term)|roll over (related term)
+(verb)|wheel|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|undulate
+(verb)|roll out|flatten (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|wind|wrap|twine|move (generic term)|displace (generic term)|roll up (related term)|wrap up (related term)|unwind (antonym)
+(verb)|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|tumble (generic term)
+(verb)|hustle|pluck|steal (generic term)
+(verb)|undulate|flap|wave|move (generic term)
+(verb)|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|rock (generic term)|sway (generic term)|shake (generic term)
+(verb)|revolve|move (generic term)|displace (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|seethe|churn (generic term)|boil (generic term)|moil (generic term)|roil (generic term)
+(verb)|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|roll up|change (generic term)
+roll-on|2
+(noun)|dispenser (generic term)
+(noun)|foundation garment (generic term)|foundation (generic term)
+roll-on roll-off|1
+(noun)|conveyance (generic term)|transport (generic term)
+roll around|1
+(verb)|come around|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+roll call|1
+(noun)|utterance (generic term)|vocalization (generic term)
+roll down|1
+(verb)|avalanche|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+roll film|1
+(noun)|film (generic term)|photographic film (generic term)
+roll in|1
+(verb)|appear (generic term)
+roll in the hay|2
+(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+roll of tobacco|1
+(noun)|smoke|tobacco (generic term)|baccy (generic term)
+roll off|1
+(verb)|rattle down|rattle off|reel off|spiel off|recite (generic term)
+roll out|2
+(verb)|roll|flatten (generic term)
+(verb)|straighten|unwind (generic term)|disentangle (generic term)
+roll over|3
+(verb)|turn (generic term)
+(verb)|renegociate (generic term)|renegotiate (generic term)
+(verb)|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+roll up|6
+(verb)|furl|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|collect|accumulate|pile up|amass|compile|hoard|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|bundle|bundle up|pack (generic term)
+(verb)|wrap up|change surface (generic term)|unfurl (antonym)
+(verb)|roll|change (generic term)
+rollback|2
+(noun)|push back|offense (generic term)|offence (generic term)|offensive (generic term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+rolled|3
+(adj)|involute|coiled (similar term)
+(adj)|rolling|trilled|pronounceable (similar term)
+(adj)|furled|bound (similar term)
+rolled biscuit|1
+(noun)|biscuit (generic term)
+rolled into one|1
+(adj)|combined (similar term)
+rolled oats|1
+(noun)|oatmeal|meal (generic term)
+roller|7
+(noun)|grounder (generic term)|ground ball (generic term)|groundball (generic term)|hopper (generic term)
+(noun)|roll|rolling wave|wave (generic term)|moving ridge (generic term)
+(noun)|wheel (generic term)
+(noun)|cylinder (generic term)
+(noun)|curler|hair curler|crimper|mechanical device (generic term)
+(noun)|coraciiform bird (generic term)
+(noun)|tumbler|tumbler pigeon|domestic pigeon (generic term)
+roller-skater|1
+(noun)|skater (generic term)
+roller bandage|1
+(noun)|bandage (generic term)|patch (generic term)
+roller bearing|1
+(noun)|ball bearing|needle bearing|bearing (generic term)
+roller bit|1
+(noun)|rock bit|drilling bit (generic term)|drill bit (generic term)
+roller blind|1
+(noun)|window shade (generic term)
+roller coaster|2
+(noun)|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+(noun)|big dipper|chute-the-chute|elevated railway (generic term)|elevated railroad (generic term)|elevated (generic term)|el (generic term)|overhead railway (generic term)|ride (generic term)
+roller skate|2
+(noun)|skate (generic term)
+(verb)|skate (generic term)
+roller skating|1
+(noun)|skating (generic term)
+roller towel|1
+(noun)|towel (generic term)
+rollerblade|2
+(noun)|Rollerblade|in-line skate (generic term)
+(verb)|Rollerblade|skate (generic term)
+rollerblader|1
+(noun)|roller-skater (generic term)
+rollerblading|1
+(noun)|roller skating (generic term)
+rollick|1
+(verb)|frolic|lark|skylark|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+rollicking|1
+(adj)|coltish|frolicsome|frolicky|sportive|playful (similar term)
+rollickingly|1
+(adv)|boisterously
+rolling|6
+(adj)|resonant|resonating|resounding|reverberating|reverberative|reverberant (similar term)|ringing (similar term)
+(adj)|rolled|trilled|pronounceable (similar term)
+(adj)|billowing|tumbling|moving (similar term)
+(noun)|peal|pealing|roll|sound (generic term)
+(noun)|robbery (generic term)
+(noun)|wheeling|propulsion (generic term)|actuation (generic term)
+rolling hitch|1
+(noun)|hitch (generic term)
+rolling mill|1
+(noun)|steel mill (generic term)|steelworks (generic term)|steel plant (generic term)|steel factory (generic term)
+rolling paper|1
+(noun)|cigarette paper|tissue (generic term)|tissue paper (generic term)
+rolling pin|1
+(noun)|kitchen utensil (generic term)
+rolling stock|1
+(noun)|wheeled vehicle (generic term)
+rolling wave|1
+(noun)|roller|roll|wave (generic term)|moving ridge (generic term)
+rollmops|1
+(noun)|pickled herring (generic term)|hors d'oeuvre (generic term)
+rollo|1
+(noun)|Rollo|Rolf|Hrolf|headman (generic term)|tribal chief (generic term)|chieftain (generic term)
+rollover|1
+(noun)|change (generic term)
+rolodex|1
+(noun)|Rolodex|card index (generic term)|card catalog (generic term)|card catalogue (generic term)
+roly-poly|3
+(adj)|dumpy|podgy|pudgy|tubby|fat (similar term)
+(noun)|fatso|fatty|fat person|butterball|large person (generic term)|thin person (antonym)
+(noun)|roly-poly pudding|pudding (generic term)
+roly-poly pudding|1
+(noun)|roly-poly|pudding (generic term)
+rolypoliness|1
+(noun)|chubbiness|pudginess|tubbiness|plumpness (generic term)|embonpoint (generic term)|roundness (generic term)
+rom|1
+(noun)|read-only memory|ROM|read-only storage|fixed storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+roma|2
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital (generic term)
+romaic|2
+(adj)|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Romaic|Demotic|Modern Greek (generic term)|New Greek (generic term)
+romaine|1
+(noun)|cos|cos lettuce|romaine lettuce|lettuce (generic term)
+romaine lettuce|2
+(noun)|cos lettuce|Lactuca sativa longifolia|lettuce (generic term)
+(noun)|cos|cos lettuce|romaine|lettuce (generic term)
+roman|7
+(adj)|Roman|Italian (related term)
+(adj)|Roman|Romanic|national capital (related term)
+(adj)|Roman|proportional font (related term)
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity (related term)
+(noun)|Roman|Italian (generic term)
+(noun)|Roman|European (generic term)
+(noun)|roman type|roman letters|roman print|proportional font (generic term)
+roman a clef|1
+(noun)|novel (generic term)
+roman alphabet|1
+(noun)|Roman alphabet|Latin alphabet|alphabet (generic term)
+roman arch|1
+(noun)|Roman arch|semicircular arch|round arch (generic term)
+roman architecture|1
+(noun)|Roman architecture|classical architecture (generic term)|Greco-Roman architecture (generic term)
+roman basilica|1
+(noun)|basilica|Roman basilica|Roman building (generic term)
+roman building|1
+(noun)|Roman building|building (generic term)|edifice (generic term)|antiquity (generic term)
+roman calendar|1
+(noun)|Roman calendar|lunar calendar (generic term)
+roman candle|1
+(noun)|Roman candle|firework (generic term)|pyrotechnic (generic term)
+roman catholic|3
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity (related term)
+(noun)|Roman Catholic|Catholic (generic term)
+(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church (generic term)
+roman catholic church|1
+(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church (generic term)
+roman catholic pope|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+roman catholicism|1
+(noun)|Romanism|Roman Catholicism|papism|Catholicism (generic term)|Catholicity (generic term)
+roman church|1
+(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church (generic term)
+roman collar|1
+(noun)|clerical collar|Roman collar|dog collar|collar (generic term)|neckband (generic term)
+roman coriander|1
+(noun)|black caraway|nutmeg flower|Roman coriander|Nigella sativa|nigella (generic term)
+roman deity|1
+(noun)|Roman deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+roman emperor|1
+(noun)|Roman Emperor|Emperor of Rome|emperor (generic term)
+roman empire|1
+(noun)|Roman Empire|empire (generic term)|imperium (generic term)
+roman fleuve|1
+(noun)|novel (generic term)
+roman hyacinth|1
+(noun)|Roman hyacinth|Hyacinthus orientalis albulus|hyacinth (generic term)
+roman inquisition|1
+(noun)|Roman Inquisition|Congregation of the Inquisition|Inquisition (generic term)
+roman jakobson|1
+(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist (generic term)|linguistic scientist (generic term)
+roman law|1
+(noun)|Roman law|Justinian code|civil law|jus civile|legal code (generic term)
+roman legion|1
+(noun)|Roman Legion|host (generic term)|legion (generic term)
+roman letters|1
+(noun)|roman|roman type|roman print|proportional font (generic term)
+roman mile|1
+(noun)|mile|Roman mile|linear unit (generic term)
+roman mythology|1
+(noun)|Roman mythology|classical mythology (generic term)
+roman nettle|1
+(noun)|Roman nettle|Urtica pipulifera|nettle (generic term)
+roman nose|1
+(noun)|Roman nose|hooknose|nose (generic term)|olfactory organ (generic term)
+roman numeral|1
+(noun)|Roman numeral|numeral (generic term)|number (generic term)|Arabic numeral (antonym)
+roman osipovich jakobson|1
+(noun)|Jakobson|Roman Jakobson|Roman Osipovich Jakobson|linguist (generic term)|linguistic scientist (generic term)
+roman pace|1
+(noun)|Roman pace|linear unit (generic term)
+roman print|1
+(noun)|roman|roman type|roman letters|proportional font (generic term)
+roman republic|1
+(noun)|Roman Republic|republic (generic term)
+roman times|1
+(noun)|Roman times|times (generic term)
+roman type|1
+(noun)|roman|roman letters|roman print|proportional font (generic term)
+roman wormwood|2
+(noun)|Roman wormwood|Artemis pontica|wormwood (generic term)
+(noun)|Roman wormwood|rock harlequin|Corydalis sempervirens|Fumaria sempervirens|Corydalis (generic term)|genus Corydalis (generic term)
+romanal|1
+(noun)|Romanal|artificial language (generic term)
+romance|10
+(adj)|Romance|Latin|Latin (related term)
+(noun)|love affair|relationship (generic term)
+(noun)|romanticism|quality (generic term)
+(noun)|Romance|Romance language|Latinian language|Latin (generic term)
+(noun)|love story|story (generic term)
+(noun)|novel (generic term)
+(verb)|woo|court|solicit|act (generic term)|move (generic term)
+(verb)|love (generic term)
+(verb)|chat up|flirt|dally|butterfly|coquet|coquette|philander|mash|talk (generic term)|speak (generic term)
+(verb)|lie (generic term)
+romance language|1
+(noun)|Romance|Romance language|Latinian language|Latin (generic term)
+romanesque|1
+(noun)|Romanesque|Romanesque architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+romanesque architecture|1
+(noun)|Romanesque|Romanesque architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+romani|2
+(adj)|Romany|Romani|Indian (related term)
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+romania|1
+(noun)|Romania|Roumania|Rumania|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+romanian|3
+(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Romanian|Rumanian|European (generic term)
+(noun)|Romanian|Rumanian|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+romanian monetary unit|1
+(noun)|Romanian monetary unit|monetary unit (generic term)
+romanic|1
+(adj)|Roman|Romanic|national capital (related term)
+romanise|1
+(verb)|Romanize|Romanise|Latinize|Latinise|transliterate (generic term)|transcribe (generic term)
+romanism|1
+(noun)|Romanism|Roman Catholicism|papism|Catholicism (generic term)|Catholicity (generic term)
+romanist|1
+(adj)|Roman|R.C.|Romanist|romish|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity (related term)
+romanize|1
+(verb)|Romanize|Romanise|Latinize|Latinise|transliterate (generic term)|transcribe (generic term)
+romanoff|2
+(noun)|Romanov|Romanoff|emperor (generic term)
+(noun)|Romanov|Romanoff|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)|dynasty (generic term)
+romanov|2
+(noun)|Romanov|Romanoff|emperor (generic term)
+(noun)|Romanov|Romanoff|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)|dynasty (generic term)
+romans|1
+(noun)|Epistle of Paul the Apostle to the Romans|Epistle to the Romans|Romans|Epistle (generic term)
+romansh|2
+(adj)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic (related term)
+(noun)|Romansh|Rumansh|Rhaeto-Romance (generic term)|Rhaeto-Romanic (generic term)
+romantic|5
+(adj)|romanticist|romanticistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+(adj)|amatory|amorous|loving (similar term)
+(adj)|quixotic|wild-eyed|impractical (similar term)
+(noun)|idealist (generic term)|dreamer (generic term)
+(noun)|romanticist|artist (generic term)|creative person (generic term)|classicist (antonym)
+romantic movement|1
+(noun)|Romanticism|Romantic Movement|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)|artistic style (generic term)|idiom (generic term)|classicism (antonym)
+romantic realism|1
+(noun)|Hudson River school|artistic movement (generic term)|art movement (generic term)
+romantically|1
+(adv)|unromantically (antonym)
+romanticisation|1
+(noun)|sentimentalization|sentimentalisation|romanticization|idealization (generic term)|idealisation (generic term)|glorification (generic term)
+romanticise|2
+(verb)|romanticize|glamorize|glamourise|idealize (generic term)|idealise (generic term)
+(verb)|romanticize|change (generic term)|alter (generic term)|modify (generic term)
+romanticism|3
+(noun)|idealism (generic term)
+(noun)|Romanticism|Romantic Movement|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)|artistic style (generic term)|idiom (generic term)|classicism (antonym)
+(noun)|romance|quality (generic term)
+romanticist|3
+(adj)|romantic|romanticistic|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+(noun)|sentimentalist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|romantic|artist (generic term)|creative person (generic term)|classicist (antonym)
+romanticistic|1
+(adj)|romantic|romanticist|humanistic discipline|humanities|liberal arts|arts|artistic style|idiom (related term)
+romanticization|1
+(noun)|sentimentalization|sentimentalisation|romanticisation|idealization (generic term)|idealisation (generic term)|glorification (generic term)
+romanticize|3
+(verb)|romanticise|glamorize|glamourise|idealize (generic term)|idealise (generic term)
+(verb)|romanticise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+romany|3
+(adj)|Romany|Romani|Indian (related term)
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+(noun)|Romany|Gypsy|Sanskrit (generic term)|Sanskritic language (generic term)
+romberg|1
+(noun)|Romberg|Sigmund Romberg|composer (generic term)
+rome|2
+(noun)|Rome|Roma|Eternal City|Italian capital|capital of Italy|national capital (generic term)
+(noun)|Rome|leadership (generic term)|leaders (generic term)
+rome beauty|1
+(noun)|Rome Beauty|cooking apple (generic term)
+romeo|1
+(noun)|Romeo|lover (generic term)
+romish|1
+(adj)|Roman|R.C.|Romanist|Roman Catholic|popish|papist|papistic|papistical|Catholicism|Catholicity (related term)
+rommany|1
+(noun)|Gypsy|Gipsy|Romany|Rommany|Romani|Roma|Bohemian|Indian (generic term)
+rommel|1
+(noun)|Rommel|Erwin Rommel|Desert Fox|field marshal (generic term)
+romneya|1
+(noun)|Romneya|genus Romneya|dilleniid dicot genus (generic term)
+romneya coulteri|1
+(noun)|matilija poppy|California tree poppy|Romneya coulteri|subshrub (generic term)|suffrutex (generic term)
+romp|6
+(noun)|runaway|blowout|laugher|shoo-in|walkaway|victory (generic term)|triumph (generic term)
+(noun)|tomboy|hoyden|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|play|frolic|gambol|caper|diversion (generic term)|recreation (generic term)
+(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|run around|lark about|play (generic term)
+(verb)|run (generic term)
+(verb)|win (generic term)
+romper|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|romper suit|garment (generic term)
+romper suit|1
+(noun)|romper|garment (generic term)
+romulus|1
+(noun)|Romulus|mythical being (generic term)
+ron|1
+(noun)|Ron|Bokkos|Daffo|West Chadic (generic term)
+ronald george wreyford norrish|1
+(noun)|Norrish|Ronald George Wreyford Norrish|chemist (generic term)
+ronald reagan|1
+(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+ronald wilson reagan|1
+(noun)|Reagan|Ronald Reagan|Ronald Wilson Reagan|President Reagan|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+rondeau|2
+(noun)|rondo|classical music (generic term)|classical (generic term)|serious music (generic term)
+(noun)|rondel|poem (generic term)|verse form (generic term)
+rondel|1
+(noun)|rondeau|poem (generic term)|verse form (generic term)
+rondelet|1
+(noun)|rondeau (generic term)|rondel (generic term)
+rondo|1
+(noun)|rondeau|classical music (generic term)|classical (generic term)|serious music (generic term)
+roneo|2
+(noun)|mimeograph|mimeo|mimeograph machine|Roneo|Roneograph|duplicator (generic term)|copier (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+roneograph|1
+(noun)|mimeograph|mimeo|mimeograph machine|Roneo|Roneograph|duplicator (generic term)|copier (generic term)
+rontgen|1
+(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist (generic term)
+rood|1
+(noun)|crucifix|rood-tree|Cross (generic term)
+rood-tree|1
+(noun)|crucifix|rood|Cross (generic term)
+rood screen|1
+(noun)|screen (generic term)
+roof|2
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(verb)|cover (generic term)
+roof garden|1
+(noun)|garden (generic term)
+roof mushroom|1
+(noun)|Pluteus|genus Pluteus|fungus genus (generic term)
+roof of the mouth|1
+(noun)|palate|surface (generic term)
+roof peak|1
+(noun)|vertex (generic term)|peak (generic term)|apex (generic term)|acme (generic term)
+roof rack|1
+(noun)|luggage rack|carrier (generic term)
+roof rat|1
+(noun)|black rat|Rattus rattus|rat (generic term)
+roofed|1
+(adj)|roofless (antonym)
+roofer|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+roofing|2
+(noun)|material (generic term)
+(noun)|trade (generic term)|craft (generic term)
+roofing material|1
+(noun)|building material (generic term)
+roofing paper|1
+(noun)|tar paper|paper (generic term)|roofing material (generic term)
+roofing tile|1
+(noun)|tile|roofing material (generic term)
+roofless|2
+(adj)|roofed (antonym)
+(adj)|dispossessed|homeless|unfortunate (similar term)
+rooftop|1
+(noun)|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+rooftree|1
+(noun)|ridge|ridgepole|beam (generic term)
+roofy|1
+(noun)|R-2|Mexican valium|rophy|rope|roach|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+rooibos|1
+(noun)|Aspalathus linearis|Aspalathus cedcarbergensis|shrub (generic term)|bush (generic term)
+rook|3
+(noun)|castle|chessman (generic term)|chess piece (generic term)
+(noun)|Corvus frugilegus|corvine bird (generic term)
+(verb)|victimize|swindle|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+rookery|1
+(noun)|breeding ground (generic term)
+rookie|1
+(noun)|cub|greenhorn|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+room|5
+(noun)|area (generic term)
+(noun)|way|elbow room|position (generic term)|spatial relation (generic term)
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(verb)|board|dwell (generic term)|live (generic term)|inhabit (generic term)
+room access|1
+(noun)|doorway|door|threshold|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+room clerk|1
+(noun)|desk clerk (generic term)|hotel desk clerk (generic term)|hotel clerk (generic term)
+room decorator|1
+(noun)|interior designer|designer|interior decorator|house decorator|decorator|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+room light|1
+(noun)|light (generic term)|light source (generic term)
+room rate|1
+(noun)|rate (generic term)|charge per unit (generic term)
+room temperature|1
+(noun)|temperature (generic term)
+roomer|1
+(noun)|lodger|boarder|tenant (generic term)|renter (generic term)
+roomette|1
+(noun)|compartment (generic term)
+roomful|1
+(noun)|containerful (generic term)
+roomie|1
+(noun)|roommate|roomy|friend (generic term)
+roomily|1
+(adv)|spaciously
+roominess|2
+(noun)|capaciousness|breadth (generic term)|comprehensiveness (generic term)|largeness (generic term)
+(noun)|capaciousness|spaciousness|commodiousness|largeness (generic term)|bigness (generic term)
+rooming house|1
+(noun)|lodging house|house (generic term)|accommodation (generic term)
+roommate|1
+(noun)|roomie|roomy|friend (generic term)
+rooms|1
+(noun)|suite|apartment (generic term)|flat (generic term)
+roomy|2
+(adj)|spacious|commodious (similar term)|convenient (similar term)
+(noun)|roommate|roomie|friend (generic term)
+roosevelt|3
+(noun)|Roosevelt|Franklin Roosevelt|Franklin Delano Roosevelt|F. D. Roosevelt|President Roosevelt|President Franklin Roosevelt|FDR|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Roosevelt|Eleanor Roosevelt|Anna Eleanor Roosevelt|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+rooseveltian|1
+(adj)|Rooseveltian|President of the United States|United States President|President|Chief Executive (related term)
+roost|4
+(noun)|shelter (generic term)
+(noun)|perch (generic term)
+(verb)|perch|rest|sit (generic term)|sit down (generic term)
+(verb)|settle (generic term)|root (generic term)|take root (generic term)|steady down (generic term)|settle down (generic term)
+rooster|1
+(noun)|cock|chicken (generic term)|Gallus gallus (generic term)
+root|14
+(noun)|plant organ (generic term)
+(noun)|root word|base|stem|theme|radical|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(noun)|beginning|origin|rootage|source|point (generic term)
+(noun)|number (generic term)
+(noun)|solution|set (generic term)
+(noun)|ancestor|ascendant|ascendent|antecedent|relative (generic term)|relation (generic term)|descendant (antonym)
+(noun)|etymon|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(noun)|tooth root|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(verb)|become (generic term)
+(verb)|plant (generic term)|set (generic term)
+(verb)|rout|rootle|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+(verb)|side|pull|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+(verb)|settle|take root|steady down|settle down|stabilize (generic term)|stabilise (generic term)
+(verb)|grow (generic term)
+root-like|1
+(adj)|rootlike|vegetable (similar term)
+root beer|1
+(noun)|soft drink (generic term)
+root beer float|1
+(noun)|ice-cream soda (generic term)|ice-cream float (generic term)|float (generic term)
+root canal|1
+(noun)|passage (generic term)|passageway (generic term)
+root cap|1
+(noun)|plant organ (generic term)
+root celery|1
+(noun)|celeriac|celery root|knob celery|turnip-rooted celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+root cellar|1
+(noun)|cellar|excavation (generic term)|storage space (generic term)
+root climber|1
+(noun)|climber (generic term)
+root crop|1
+(noun)|crop (generic term)
+root hair|1
+(noun)|plant organ (generic term)
+root out|2
+(verb)|uproot|extirpate|deracinate|move (generic term)|displace (generic term)
+(verb)|uproot|eradicate|extirpate|exterminate|destroy (generic term)|destruct (generic term)
+root rot|1
+(noun)|plant disease (generic term)
+root system|1
+(noun)|rootage|system (generic term)|scheme (generic term)
+root vegetable|1
+(noun)|vegetable (generic term)|veggie (generic term)
+root word|1
+(noun)|root|base|stem|theme|radical|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+rootage|3
+(noun)|stationariness (generic term)|immobility (generic term)|fixedness (generic term)
+(noun)|root system|system (generic term)|scheme (generic term)
+(noun)|beginning|origin|root|source|point (generic term)
+rootbound|2
+(adj)|potbound|planted (similar term)
+(adj)|tangled (similar term)
+rooted|2
+(adj)|frozen|stock-still|nonmoving (similar term)|unmoving (similar term)
+(adj)|vegetable (similar term)
+rooter|1
+(noun)|sports fan|fan|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+rooter skunk|1
+(noun)|hog-nosed skunk|hognosed skunk|badger skunk|Conepatus leuconotus|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+rooting|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+rooting reflex|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+rootle|1
+(verb)|rout|root|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+rootless|1
+(adj)|vagabond|unsettled (similar term)
+rootlet|1
+(noun)|root (generic term)
+rootlike|1
+(adj)|root-like|vegetable (similar term)
+roots|1
+(noun)|condition (generic term)
+rootstalk|1
+(noun)|rhizome|rootstock|stalk (generic term)|stem (generic term)
+rootstock|2
+(noun)|rhizome|rootstalk|stalk (generic term)|stem (generic term)
+(noun)|stock (generic term)
+rope|4
+(noun)|line (generic term)
+(noun)|R-2|Mexican valium|rophy|roofy|roach|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+(verb)|lasso|get (generic term)|catch (generic term)|capture (generic term)
+(verb)|leash|tie (generic term)|bind (generic term)|rope in (related term)
+rope-a-dope|1
+(noun)|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)
+rope-maker|1
+(noun)|ropemaker|roper|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+rope bridge|1
+(noun)|bridge (generic term)|span (generic term)
+rope burn|1
+(noun)|abrasion (generic term)|scratch (generic term)|scrape (generic term)|excoriation (generic term)
+rope down|1
+(verb)|rappel|abseil|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+rope in|2
+(verb)|rope off|cordon off|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|persuade (generic term)
+rope ladder|1
+(noun)|ladder (generic term)
+rope off|1
+(verb)|rope in|cordon off|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+rope tow|1
+(noun)|ski tow (generic term)|ski lift (generic term)|lift (generic term)
+rope up|1
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+rope yard|1
+(noun)|ropewalk|workplace (generic term)|work (generic term)
+rope yarn|1
+(noun)|strand (generic term)
+ropebark|1
+(noun)|leatherwood|moosewood|moose-wood|wicopy|Dirca palustris|shrub (generic term)|bush (generic term)
+ropedancer|1
+(noun)|ropewalker|aerialist (generic term)
+ropemaker|1
+(noun)|rope-maker|roper|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+roper|3
+(noun)|decoy (generic term)|steerer (generic term)
+(noun)|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+(noun)|ropemaker|rope-maker|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+ropewalk|1
+(noun)|rope yard|workplace (generic term)|work (generic term)
+ropewalker|1
+(noun)|ropedancer|aerialist (generic term)
+ropeway|1
+(noun)|tramway|tram|aerial tramway|cable tramway|conveyance (generic term)|transport (generic term)
+ropey|3
+(adj)|ropy|line (related term)
+(adj)|ropy|stringy|thready|thick (similar term)
+(adj)|ropy|inferior (similar term)
+rophy|1
+(noun)|R-2|Mexican valium|rope|roofy|roach|forget me drug|circle|flunitrazepan (generic term)|Rohypnol (generic term)
+ropiness|1
+(noun)|cohesiveness|glueyness|gluiness|gumminess|tackiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+roping|1
+(noun)|labor (generic term)|labour (generic term)|toil (generic term)
+ropy|3
+(adj)|ropey|line (related term)
+(adj)|ropey|stringy|thready|thick (similar term)
+(adj)|ropey|inferior (similar term)
+roquefort|1
+(noun)|Roquefort|bleu (generic term)|blue cheese (generic term)
+roquefort dressing|1
+(noun)|blue cheese dressing|Roquefort dressing|dressing (generic term)|salad dressing (generic term)
+roquette|1
+(noun)|rocket|garden rocket|rocket salad|arugula|Eruca sativa|Eruca vesicaria sativa|herb (generic term)|herbaceous plant (generic term)
+roridula|1
+(noun)|carnivorous plant (generic term)
+roridulaceae|1
+(noun)|Roridulaceae|family Roridulaceae|dicot family (generic term)|magnoliopsid family (generic term)
+rorippa|1
+(noun)|Rorippa|genus Rorippa|dilleniid dicot genus (generic term)
+rorippa amphibia|1
+(noun)|great yellowcress|Rorippa amphibia|Nasturtium amphibium|watercress (generic term)
+rorippa islandica|1
+(noun)|marsh cress|yellow watercress|Rorippa islandica|watercress (generic term)
+rorippa nasturtium-aquaticum|1
+(noun)|common watercress|Rorippa nasturtium-aquaticum|Nasturtium officinale|watercress (generic term)
+rorqual|1
+(noun)|razorback|baleen whale (generic term)|whalebone whale (generic term)
+rorschach|1
+(noun)|Rorschach|Rorschach test|inkblot test|projective test (generic term)|projective device (generic term)|projective technique (generic term)
+rorschach test|1
+(noun)|Rorschach|Rorschach test|inkblot test|projective test (generic term)|projective device (generic term)|projective technique (generic term)
+rosa|1
+(noun)|Rosa|genus Rosa|rosid dicot genus (generic term)
+rosa banksia|1
+(noun)|banksia rose|Rosa banksia|rose (generic term)|rosebush (generic term)
+rosa canina|1
+(noun)|dog rose|Rosa canina|rose (generic term)|rosebush (generic term)
+rosa chinensis|1
+(noun)|China rose|Bengal rose|Rosa chinensis|rose (generic term)|rosebush (generic term)
+rosa damascena|1
+(noun)|damask rose|summer damask rose|Rosa damascena|rose (generic term)|rosebush (generic term)
+rosa eglanteria|1
+(noun)|sweetbrier|sweetbriar|brier|briar|eglantine|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+rosa laevigata|1
+(noun)|Cherokee rose|Rosa laevigata|rose (generic term)|rosebush (generic term)
+rosa melba ponselle|1
+(noun)|Ponselle|Rosa Ponselle|Rosa Melba Ponselle|soprano (generic term)
+rosa moschata|1
+(noun)|musk rose|Rosa moschata|rose (generic term)|rosebush (generic term)
+rosa multiflora|1
+(noun)|multiflora|multiflora rose|Japanese rose|baby rose|Rosa multiflora|rose (generic term)|rosebush (generic term)
+rosa odorata|1
+(noun)|tea rose|Rosa odorata|rose (generic term)|rosebush (generic term)
+rosa parks|1
+(noun)|Parks|Rosa Parks|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+rosa pendulina|1
+(noun)|mountain rose|Rosa pendulina|rose (generic term)|rosebush (generic term)
+rosa ponselle|1
+(noun)|Ponselle|Rosa Ponselle|Rosa Melba Ponselle|soprano (generic term)
+rosa spithamaea|1
+(noun)|ground rose|Rosa spithamaea|rose (generic term)|rosebush (generic term)
+rosacea|1
+(noun)|acne rosacea|acne (generic term)
+rosaceae|1
+(noun)|Rosaceae|family Rosaceae|rose family|rosid dicot family (generic term)
+rosaceous|2
+(adj)|rosid dicot family (related term)
+(adj)|rose|roseate|chromatic (similar term)
+rosales|1
+(noun)|Rosales|order Rosales|plant order (generic term)
+rosary|1
+(noun)|prayer beads|beads (generic term)|string of beads (generic term)
+rose|4
+(adj)|roseate|rosaceous|chromatic (similar term)
+(noun)|rosebush|shrub (generic term)|bush (generic term)
+(noun)|blush wine|pink wine|rose wine|wine (generic term)|vino (generic term)
+(noun)|rosiness|pink (generic term)
+rose-apple tree|1
+(noun)|rose apple|jambosa|Eugenia jambos|fruit tree (generic term)
+rose-cheeked|1
+(adj)|flushed|rosy|rosy-cheeked|healthy (similar term)
+rose-colored|2
+(adj)|rosy|optimistic (similar term)
+(adj)|rosy-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+rose-colored pastor|1
+(noun)|rose-colored starling|Pastor sturnus|Pastor roseus|starling (generic term)
+rose-colored starling|1
+(noun)|rose-colored pastor|Pastor sturnus|Pastor roseus|starling (generic term)
+rose-lavender|1
+(adj)|rose-lilac|chromatic (similar term)
+rose-like|1
+(adj)|roselike|flowering (similar term)
+rose-lilac|1
+(adj)|rose-lavender|chromatic (similar term)
+rose-mauve|1
+(adj)|chromatic (similar term)
+rose-purple|1
+(adj)|rosy-purple|chromatic (similar term)
+rose-red|1
+(adj)|chromatic (similar term)
+rose-root|1
+(noun)|midsummer-men|Sedum rosea|sedum (generic term)
+rose-tinged|1
+(adj)|rose-tinted|chromatic (similar term)
+rose-tinted|1
+(adj)|rose-tinged|chromatic (similar term)
+rose acacia|1
+(noun)|bristly locust|moss locust|Robinia hispida|shrub (generic term)|bush (generic term)
+rose apple|2
+(noun)|rose-apple tree|jambosa|Eugenia jambos|fruit tree (generic term)
+(noun)|edible fruit (generic term)
+rose bay|1
+(noun)|oleander|Nerium oleander|poisonous plant (generic term)
+rose bed|1
+(noun)|bed of roses|flowerbed (generic term)|flower bed (generic term)|bed of flowers (generic term)
+rose beetle|1
+(noun)|rose chafer|Cetonia aurata|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+rose bug|1
+(noun)|rose chafer|Macrodactylus subspinosus|melolonthid beetle (generic term)
+rose campion|1
+(noun)|mullein pink|gardener's delight|dusty miller|Lychnis coronaria|lychnis (generic term)|catchfly (generic term)
+rose chafer|2
+(noun)|rose beetle|Cetonia aurata|scarabaeid beetle (generic term)|scarabaeid (generic term)|scarabaean (generic term)
+(noun)|rose bug|Macrodactylus subspinosus|melolonthid beetle (generic term)
+rose chestnut|1
+(noun)|ironwood|ironwood tree|Mesua ferrea|tree (generic term)
+rose family|1
+(noun)|Rosaceae|family Rosaceae|rosid dicot family (generic term)
+rose garden|1
+(noun)|garden (generic term)
+rose geranium|1
+(noun)|sweet-scented geranium|Pelargonium graveolens|geranium (generic term)
+rose globe lily|1
+(noun)|Calochortus amoenus|globe lily (generic term)|fairy lantern (generic term)
+rose gum|1
+(noun)|Eucalypt grandis|flooded gum (generic term)
+rose hip|1
+(noun)|hip|rosehip|fruit (generic term)
+rose leek|1
+(noun)|Canada garlic|meadow leek|Allium canadense|alliaceous plant (generic term)
+rose louise hovick|1
+(noun)|Lee|Gypsy Rose Lee|Rose Louise Hovick|stripper (generic term)|striptease artist (generic term)|striptease (generic term)|stripteaser (generic term)|exotic dancer (generic term)|ecdysiast (generic term)|peeler (generic term)
+rose mallow|2
+(noun)|swamp mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus (generic term)
+(noun)|Alcea rosea|Althea rosea|hollyhock (generic term)
+rose moss|1
+(noun)|sun plant|Portulaca grandiflora|portulaca (generic term)
+rose of china|1
+(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|shoe black|Hibiscus rosa-sinensis|hibiscus (generic term)
+rose of jericho|2
+(noun)|resurrection plant|rose of Jericho|Selaginella lepidophylla|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+(noun)|rose of Jericho|resurrection plant|Anastatica hierochuntica|crucifer (generic term)|cruciferous plant (generic term)
+rose of sharon|1
+(noun)|rose of Sharon|Hibiscus syriacus|hibiscus (generic term)
+rose oil|1
+(noun)|attar of roses|attar (generic term)|atar (generic term)|athar (generic term)|ottar (generic term)
+rose periwinkle|1
+(noun)|periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+rose pink|1
+(noun)|marsh pink|bitter floom|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+rose quartz|1
+(noun)|quartz (generic term)
+rose water|1
+(noun)|perfume (generic term)|essence (generic term)
+rose window|1
+(noun)|rosette|window (generic term)
+rose wine|1
+(noun)|blush wine|pink wine|rose|wine (generic term)|vino (generic term)
+roseate|1
+(adj)|rose|rosaceous|chromatic (similar term)
+roseate spoonbill|1
+(noun)|Ajaia ajaja|spoonbill (generic term)
+roseau|1
+(noun)|Roseau|national capital (generic term)
+rosebay|1
+(noun)|Rhododendron maxima|rhododendron (generic term)
+rosebay willowherb|1
+(noun)|fireweed|giant willowherb|wickup|Epilobium angustifolium|willowherb (generic term)
+rosebud|2
+(noun)|bud (generic term)
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+rosebud cherry|1
+(noun)|winter flowering cherry|Prunus subhirtella|flowering cherry (generic term)
+rosebud orchid|1
+(noun)|Cleistes rosea|Pogonia rosea|orchid (generic term)|orchidaceous plant (generic term)
+rosebush|1
+(noun)|rose|shrub (generic term)|bush (generic term)
+rosefish|2
+(noun)|redfish|ocean perch|rockfish (generic term)
+(noun)|ocean perch|Sebastodes marinus|rockfish (generic term)
+rosehip|1
+(noun)|hip|rose hip|fruit (generic term)
+roselike|1
+(adj)|rose-like|flowering (similar term)
+roselle|1
+(noun)|rozelle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+rosellinia|1
+(noun)|Rosellinia|genus Rosellinia|fungus genus (generic term)
+rosemaling|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+rosemary|2
+(noun)|Rosmarinus officinalis|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+roseola|1
+(noun)|rash|efflorescence|skin rash|eruption (generic term)
+roseola infantilis|1
+(noun)|exanthema subitum|roseola infantum|pseudorubella|disease (generic term)
+roseola infantum|1
+(noun)|exanthema subitum|roseola infantilis|pseudorubella|disease (generic term)
+rosetta stone|1
+(noun)|Rosetta Stone|stele (generic term)|stela (generic term)
+rosette|4
+(noun)|adornment (generic term)
+(noun)|little potato|russet scab|stem canker|rhizoctinia disease (generic term)
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|rose window|window (generic term)
+rosewood|2
+(noun)|wood (generic term)
+(noun)|rosewood tree|tree (generic term)
+rosewood tree|1
+(noun)|rosewood|tree (generic term)
+rosh chodesh|1
+(noun)|Rosh Hodesh|Rosh Chodesh|Jewish holy day (generic term)
+rosh hashana|1
+(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day (generic term)|High Holiday (generic term)|feast day (generic term)|fete day (generic term)
+rosh hashanah|1
+(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day (generic term)|High Holiday (generic term)|feast day (generic term)|fete day (generic term)
+rosh hashona|1
+(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day (generic term)|High Holiday (generic term)|feast day (generic term)|fete day (generic term)
+rosh hashonah|1
+(noun)|Rosh Hashanah|Rosh Hashana|Rosh Hashonah|Rosh Hashona|Jewish New Year|High Holy Day (generic term)|High Holiday (generic term)|feast day (generic term)|fete day (generic term)
+rosh hodesh|1
+(noun)|Rosh Hodesh|Rosh Chodesh|Jewish holy day (generic term)
+rosicrucian|2
+(adj)|Rosicrucian|member (related term)
+(noun)|Rosicrucian|member (generic term)
+rosicrucianism|1
+(noun)|Rosicrucianism|theological doctrine (generic term)
+rosid dicot family|1
+(noun)|dicot family (generic term)|magnoliopsid family (generic term)
+rosid dicot genus|1
+(noun)|dicot genus (generic term)|magnoliopsid genus (generic term)
+rosidae|1
+(noun)|Rosidae|subclass Rosidae|class (generic term)
+rosilla|1
+(noun)|Helenium puberulum|sneezeweed (generic term)
+rosin|2
+(noun)|resin|organic compound (generic term)
+(verb)|rub (generic term)
+rosin bag|1
+(noun)|bag (generic term)|baseball equipment (generic term)
+rosiness|3
+(noun)|bloom|blush|flush|good health (generic term)|healthiness (generic term)
+(noun)|ruddiness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+(noun)|rose|pink (generic term)
+rosinweed|2
+(noun)|Silphium laciniatum|compass plant (generic term)|compass flower (generic term)
+(noun)|gumweed|gum plant|tarweed|herb (generic term)|herbaceous plant (generic term)
+rosita|1
+(noun)|Centaurium calycosum|centaury (generic term)
+rosmarinus|1
+(noun)|Rosmarinus|genus Rosmarinus|asterid dicot genus (generic term)
+rosmarinus officinalis|1
+(noun)|rosemary|Rosmarinus officinalis|herb (generic term)|herbaceous plant (generic term)
+ross|5
+(noun)|Ross|John Ross|Sir John Ross|explorer (generic term)|adventurer (generic term)
+(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer (generic term)|adventurer (generic term)
+(noun)|Ross|Sir Ronald Ross|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|Ross|Nellie Ross|Nellie Tayloe Ross|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Ross|Betsy Ross|Betsy Griscom Ross|dressmaker (generic term)|modiste (generic term)|needlewoman (generic term)|seamstress (generic term)|sempstress (generic term)
+ross sea|1
+(noun)|Ross Sea|sea (generic term)
+rossbach|1
+(noun)|Rossbach|battle of Rossbach|pitched battle (generic term)
+rossetti|1
+(noun)|Rossetti|Dante Gabriel Rossetti|Pre-Raphaelite (generic term)
+rossini|1
+(noun)|Rossini|Giloacchino Antonio Rossini|composer (generic term)
+rostand|1
+(noun)|Rostand|Edmond Rostand|dramatist (generic term)|playwright (generic term)|poet (generic term)
+roster|1
+(noun)|roll|list (generic term)|listing (generic term)
+rostock|1
+(noun)|Rostock|city (generic term)|metropolis (generic term)|urban center (generic term)
+rostov|1
+(noun)|Rostov|Rostov on Don|Rostov na Donu|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+rostov na donu|1
+(noun)|Rostov|Rostov on Don|Rostov na Donu|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+rostov on don|1
+(noun)|Rostov|Rostov on Don|Rostov na Donu|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+rostrate|1
+(adj)|beaked (similar term)
+rostrum|2
+(noun)|dais|podium|pulpit|ambo|stump|soapbox|platform (generic term)
+(noun)|snout|nose (generic term)|olfactory organ (generic term)
+roswell|1
+(noun)|Roswell|town (generic term)
+rosy|4
+(adj)|rose-colored|optimistic (similar term)
+(adj)|flushed|rose-cheeked|rosy-cheeked|healthy (similar term)
+(adj)|blushful|chromatic (similar term)
+(adj)|fortunate|hopeful|auspicious (similar term)
+rosy-cheeked|1
+(adj)|flushed|rose-cheeked|rosy|healthy (similar term)
+rosy-colored|1
+(adj)|rose-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+rosy-purple|1
+(adj)|rose-purple|chromatic (similar term)
+rosy boa|1
+(noun)|Lichanura trivirgata|boa (generic term)
+rot|5
+(noun)|putrefaction|decay (generic term)
+(noun)|decomposition|rotting|putrefaction|decay (generic term)
+(noun)|bunk|bunkum|buncombe|guff|hogwash|drivel (generic term)|garbage (generic term)
+(verb)|decompose|molder|moulder|decay (generic term)
+(verb)|waste|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+rot-resistant|1
+(adj)|impervious (similar term)|imperviable (similar term)
+rota|2
+(noun)|Rota|court (generic term)|tribunal (generic term)|judicature (generic term)
+(noun)|roll (generic term)|roster (generic term)
+rotarian|1
+(noun)|Rotarian|member (generic term)
+rotary|4
+(adj)|turning|turn (related term)
+(adj)|circular|cyclic (similar term)|cyclical (similar term)
+(noun)|traffic circle|circle|roundabout|junction (generic term)
+(noun)|synchronous converter|rotary converter|electrical converter (generic term)
+rotary actuator|1
+(noun)|positioner|actuator (generic term)
+rotary club|1
+(noun)|Rotary Club|Rotary International|service club (generic term)
+rotary converter|1
+(noun)|synchronous converter|rotary|electrical converter (generic term)
+rotary engine|2
+(noun)|internal-combustion engine (generic term)|ICE (generic term)
+(noun)|radial engine|internal-combustion engine (generic term)|ICE (generic term)
+rotary international|1
+(noun)|Rotary Club|Rotary International|service club (generic term)
+rotary joint|1
+(noun)|pivot joint|rotatory joint|articulatio trochoidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+rotary motion|1
+(noun)|rotation|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+rotary press|1
+(noun)|press (generic term)|printing press (generic term)
+rotary wing|1
+(noun)|rotor blade|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+rotatable|1
+(adj)|mobile (similar term)
+rotate|6
+(verb)|revolve|go around|turn (generic term)|revolve around (related term)
+(verb)|alternate (generic term)
+(verb)|circumvolve|turn (generic term)
+(verb)|serve (generic term)
+(verb)|turn out|splay|spread out|turn (generic term)
+(verb)|grow (generic term)
+rotated|1
+(adj)|revolved|turned (similar term)
+rotating mechanism|1
+(noun)|mechanism (generic term)
+rotating shaft|1
+(noun)|shaft|rod (generic term)
+rotation|4
+(noun)|rotary motion|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|transformation (generic term)
+(noun)|revolution|gyration|turning (generic term)|turn (generic term)
+(noun)|sequence (generic term)|chronological sequence (generic term)|succession (generic term)|successiveness (generic term)|chronological succession (generic term)
+rotational|1
+(adj)|motion|movement|move|motility (related term)
+rotational latency|1
+(noun)|latency|time interval (generic term)|interval (generic term)
+rotational nystagmus|1
+(noun)|nystagmus (generic term)
+rotator cuff|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+rotatory|1
+(adj)|revolutionary|turning|turn (related term)
+rotatory joint|1
+(noun)|pivot joint|rotary joint|articulatio trochoidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+rotavirus|1
+(noun)|reovirus (generic term)
+rotc|1
+(noun)|Reserve Officers Training Corps|ROTC|corps (generic term)|army corps (generic term)
+rote|1
+(noun)|rote learning|memorization (generic term)|memorisation (generic term)|committal to memory (generic term)
+rote learning|1
+(noun)|rote|memorization (generic term)|memorisation (generic term)|committal to memory (generic term)
+rotenone|1
+(noun)|insecticide (generic term)|insect powder (generic term)
+rotgut|1
+(noun)|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+roth|1
+(noun)|Roth|Philip Roth|Philip Milton Roth|writer (generic term)|author (generic term)
+rothko|1
+(noun)|Rothko|Mark Rothko|painter (generic term)
+rothschild|1
+(noun)|Rothschild|banker (generic term)
+rotifer|1
+(noun)|invertebrate (generic term)
+rotifera|1
+(noun)|Rotifera|phylum Rotifera|phylum (generic term)
+rotisserie|2
+(noun)|oven (generic term)
+(noun)|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+rotl|1
+(noun)|weight unit (generic term)|weight (generic term)
+rotogravure|3
+(noun)|photogravure (generic term)
+(noun)|photojournalism (generic term)
+(noun)|photogravure|gravure (generic term)
+rotor|3
+(noun)|rotor coil|armature (generic term)|stator (antonym)
+(noun)|bar (generic term)
+(noun)|rotating mechanism (generic term)
+rotor blade|1
+(noun)|rotary wing|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+rotor coil|1
+(noun)|rotor|armature (generic term)|stator (antonym)
+rotor head|1
+(noun)|rotor shaft|axis (generic term)|axis of rotation (generic term)
+rotor shaft|1
+(noun)|rotor head|axis (generic term)|axis of rotation (generic term)
+rotted|1
+(adj)|decayed|rotten|unsound (similar term)
+rotten|3
+(adj)|icky|crappy|lousy|shitty|stinking|stinky|bad (similar term)
+(adj)|corrupt (similar term)|tainted (similar term)|putrid (similar term)|putrescent (similar term)|fresh (antonym)
+(adj)|decayed|rotted|unsound (similar term)
+rotten borough|1
+(noun)|borough (generic term)
+rottenly|1
+(adv)|terribly|atrociously|awfully|abominably|abysmally
+rottenness|2
+(noun)|putrescence|putridness|corruption|putrefaction (generic term)|rot (generic term)
+(noun)|putrescence|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+rottenstone|1
+(noun)|tripoli|limestone (generic term)
+rotter|1
+(noun)|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+rotterdam|1
+(noun)|Rotterdam|city (generic term)|metropolis (generic term)|urban center (generic term)
+rotting|1
+(noun)|decomposition|rot|putrefaction|decay (generic term)
+rottweiler|1
+(noun)|Rottweiler|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+rotund|3
+(adj)|rounded (similar term)
+(adj)|orotund|round|pear-shaped|full (similar term)
+(adj)|corpulent|obese|weighty|fat (similar term)
+rotunda|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|room (generic term)
+rotundity|2
+(noun)|sphericity|sphericalness|globosity|globularness|rotundness|roundness (generic term)
+(noun)|roundness|tone (generic term)|tone of voice (generic term)
+rotundly|1
+(adv)|sonorously
+rotundness|1
+(noun)|sphericity|sphericalness|globosity|globularness|rotundity|roundness (generic term)
+rouble|1
+(noun)|ruble|Russian monetary unit (generic term)
+roue|1
+(noun)|rake|rakehell|profligate|rip|blood|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+rouge|2
+(noun)|paint|blusher|makeup (generic term)|make-up (generic term)|war paint (generic term)
+(verb)|make up (generic term)
+rouge et noir|1
+(noun)|trente-et-quarante|card game (generic term)|cards (generic term)
+rouge plant|1
+(noun)|bloodberry|blood berry|rougeberry|Rivina humilis|houseplant (generic term)
+rougeberry|1
+(noun)|bloodberry|blood berry|rouge plant|Rivina humilis|houseplant (generic term)
+rouged|1
+(adj)|painted (similar term)
+rough|17
+(adj)|unsmooth|abrasive (similar term)|scratchy (similar term)|alligatored (similar term)|cracked (similar term)|barky (similar term)|broken (similar term)|rugged (similar term)|bullate (similar term)|bumpy (similar term)|chapped (similar term)|cracked (similar term)|roughened (similar term)|corded (similar term)|twilled (similar term)|costate (similar term)|ribbed (similar term)|cragged (similar term)|craggy (similar term)|hilly (similar term)|mountainous (similar term)|crushed (similar term)|homespun (similar term)|nubby (similar term)|nubbly (similar term)|slubbed (similar term)|tweedy (similar term)|imbricate (similar term)|imbricated (similar term)|lepidote (similar term)|leprose (similar term)|scabrous (similar term)|scaly (similar term)|scurfy (similar term)|squamulose (similar term)|lined (similar term)|seamed (similar term)|pocked (similar term)|pockmarked (similar term)|potholed (similar term)|rocky (similar term)|bouldery (similar term)|bouldered (similar term)|stony (similar term)|roughish (similar term)|rugose (similar term)|sandpapery (similar term)|saw-like (similar term)|scabby (similar term)|shagged (similar term)|shaggy (similar term)|textured (similar term)|rough-textured (similar term)|coarse-textured (similar term)|verrucose (similar term)|warty (similar term)|wartlike (similar term)|coarse (related term)|harsh (related term)|irregular (related term)|nonslippery (related term)|uneven (related term)|unironed (related term)|wrinkled (related term)|unpolished (related term)|smooth (antonym)
+(adj)|unrefined (similar term)
+(adj)|approximate|approximative|inexact (similar term)
+(adj)|rocky|difficult (similar term)|hard (similar term)
+(adj)|boisterous|fierce|stormy (similar term)
+(adj)|grating|gravel|gravelly|rasping|raspy|scratchy|cacophonous (similar term)|cacophonic (similar term)
+(adj)|pugnacious|aggressive (similar term)
+(adj)|angulate (similar term)|bidentate (similar term)|biserrate (similar term)|ciliate (similar term)|ciliated (similar term)|crenate (similar term)|crenated (similar term)|scalloped (similar term)|crenulate (similar term)|crenulated (similar term)|crispate (similar term)|dentate (similar term)|denticulate (similar term)|emarginate (similar term)|erose (similar term)|jagged (similar term)|jaggy (similar term)|notched (similar term)|toothed (similar term)|fimbriate (similar term)|fringed (similar term)|laciniate (similar term)|lacerate (similar term)|lacerated (similar term)|pectinate (similar term)|rimose (similar term)|runcinate (similar term)|serrate (similar term)|serrated (similar term)|saw-toothed (similar term)|toothed (similar term)|notched (similar term)|serrulate (similar term)|spinose (similar term)|simple (related term)|unsubdivided (related term)|compound (related term)|smooth (antonym)
+(adj)|rocky|bumpy|jolty|jolting|jumpy|smooth (antonym)
+(adj)|uncut|unsheared (similar term)|cut (antonym)
+(adj)|crude|unskilled (similar term)
+(adj)|unpolished (similar term)
+(adj)|harsh|unpleasant (similar term)
+(adj)|harsh|unkind (similar term)
+(noun)|site (generic term)|land site (generic term)
+(verb)|rough in|rough out|prepare (generic term)
+(adv)|roughly
+rough-and-ready|1
+(adj)|effective (similar term)|effectual (similar term)|efficacious (similar term)
+rough-and-tumble|2
+(adj)|bare-knuckle|bare-knuckled|disorderly (similar term)
+(noun)|hassle|scuffle|tussle|dogfight|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+rough-cut|2
+(adj)|coarse|common|uncouth|vulgar|unrefined (similar term)
+(adj)|roughhewn|unfinished (similar term)
+rough-dry|1
+(verb)|dry (generic term)|dry out (generic term)
+rough-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+rough-hew|1
+(verb)|roughcast|hew (generic term)|hew out (generic term)
+rough-house|1
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+rough-leaved aster|1
+(noun)|aster (generic term)
+rough-legged hawk|1
+(noun)|roughleg|Buteo lagopus|hawk (generic term)
+rough-sand|1
+(verb)|sandpaper (generic term)|sand (generic term)
+rough-skinned newt|1
+(noun)|Taricha granulosa|Pacific newt (generic term)
+rough-spoken|1
+(adj)|unrefined (similar term)
+rough-stemmed goldenrod|1
+(noun)|goldenrod (generic term)
+rough-textured|1
+(adj)|textured|coarse-textured|rough (similar term)|unsmooth (similar term)
+rough bindweed|1
+(noun)|Smilax aspera|sarsaparilla (generic term)
+rough bristlegrass|1
+(noun)|green bristlegrass|green foxtail|bottle-grass|bottle grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+rough cut|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+rough drawing|1
+(noun)|draft|sketch (generic term)|study (generic term)
+rough fish|1
+(noun)|fish (generic term)
+rough green snake|1
+(noun)|Opheodrys aestivus|green snake (generic term)|grass snake (generic term)
+rough horsetail|1
+(noun)|scouring rush|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail (generic term)
+rough in|1
+(verb)|rough|rough out|prepare (generic term)
+rough out|1
+(verb)|rough in|rough|prepare (generic term)
+rough pea|1
+(noun)|singletary pea|Caley pea|wild winterpea|Lathyrus hirsutus|wild pea (generic term)
+rough rider|1
+(noun)|Rough Rider|cavalryman (generic term)|trooper (generic term)
+rough sledding|1
+(noun)|hard time|difficulty (generic term)
+rough up|1
+(verb)|beat (generic term)|beat up (generic term)|work over (generic term)
+rough water|1
+(noun)|choppiness|roughness|storminess (generic term)
+roughage|1
+(noun)|foodstuff (generic term)|food product (generic term)
+roughcast|5
+(noun)|plaster (generic term)
+(noun)|model (generic term)|simulation (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|plaster (generic term)|daub (generic term)
+(verb)|rough-hew|hew (generic term)|hew out (generic term)
+roughdried|1
+(adj)|unironed (similar term)|wrinkled (similar term)
+roughen|1
+(verb)|change surface (generic term)|smooth (antonym)
+roughened|1
+(adj)|chapped|cracked|rough (similar term)|unsmooth (similar term)
+roughhewn|1
+(adj)|rough-cut|unfinished (similar term)
+roughhouse|1
+(verb)|play (generic term)
+roughish|1
+(adj)|rough (similar term)|unsmooth (similar term)
+roughleg|1
+(noun)|rough-legged hawk|Buteo lagopus|hawk (generic term)
+roughly|2
+(adv)|approximately|about|close to|just about|some|more or less|around|or so
+(adv)|rough
+roughneck|1
+(noun)|bully|tough|hooligan|ruffian|rowdy|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+roughness|7
+(noun)|raggedness|texture (generic term)|smoothness (antonym)
+(noun)|harshness|unpleasantness (generic term)
+(noun)|crudeness|inelegance (generic term)
+(noun)|choppiness|rough water|storminess (generic term)
+(noun)|rowdiness|rowdyism|disorderliness|disorder (generic term)
+(noun)|pitting|indentation|corrosion (generic term)|corroding (generic term)|erosion (generic term)
+(noun)|intensification (generic term)
+roughrider|1
+(noun)|horseman (generic term)|equestrian (generic term)|horseback rider (generic term)
+roughshod|3
+(adj)|shod (similar term)|shodden (similar term)|shoed (similar term)
+(adj)|barbarous|brutal|cruel|fell|savage|vicious|inhumane (similar term)
+(adj)|heavy-handed|domineering (similar term)
+roughtail stingray|1
+(noun)|Dasyatis centroura|stingray (generic term)
+roulade|2
+(noun)|dish (generic term)
+(noun)|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+rouleau|1
+(noun)|roll (generic term)
+roulette|3
+(noun)|line roulette|curve (generic term)|curved shape (generic term)
+(noun)|toothed wheel|wheel (generic term)
+(noun)|game of chance (generic term)|gambling game (generic term)
+roulette ball|1
+(noun)|ball (generic term)
+roulette wheel|1
+(noun)|wheel|game equipment (generic term)
+roumania|1
+(noun)|Romania|Roumania|Rumania|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+roumanian|1
+(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state (related term)
+round|26
+(adj)|circular|apple-shaped (similar term)|ball-shaped (similar term)|global (similar term)|globose (similar term)|globular (similar term)|orbicular (similar term)|spheric (similar term)|spherical (similar term)|barrel-shaped (similar term)|bulblike (similar term)|bulbous (similar term)|bulb-shaped (similar term)|capitate (similar term)|coccoid (similar term)|cumuliform (similar term)|discoid (similar term)|discoidal (similar term)|disklike (similar term)|disclike (similar term)|disk-shaped (similar term)|disc-shaped (similar term)|goblet-shaped (similar term)|moonlike (similar term)|moon-round (similar term)|nutlike (similar term)|pancake-like (similar term)|pear-shaped (similar term)|pinwheel-shaped (similar term)|ringlike (similar term)|roundish (similar term)|wheel-like (similar term)|rounded (related term)|square (antonym)
+(adj)|orotund|rotund|pear-shaped|full (similar term)
+(adj)|inexact (similar term)
+(noun)|unit of ammunition|one shot|ammunition (generic term)|ammo (generic term)
+(noun)|cycle|rhythm|time interval (generic term)|interval (generic term)
+(noun)|beat|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|call (generic term)
+(noun)|round of golf|golf (generic term)|golf game (generic term)
+(noun)|daily round|habitude (generic term)
+(noun)|turn|bout|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|path (generic term)|track (generic term)|course (generic term)
+(noun)|round of drinks|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|cut of beef (generic term)
+(noun)|troll|partsong (generic term)
+(noun)|applause (generic term)|hand clapping (generic term)|clapping (generic term)
+(noun)|rung|stave|crosspiece (generic term)
+(noun)|circle|rotating mechanism (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|round out|round off|shape (generic term)|form (generic term)
+(verb)|surround|environ|encircle|circle|ring|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|labialize|labialise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|attack|assail|lash out|snipe|assault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|polish|round off|polish up|brush up|perfect (generic term)|hone (generic term)
+(verb)|round off|round down|round out|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|flesh out|fill out|gain (generic term)|put on (generic term)
+(adv)|around
+round-arm|1
+(adj)|overhand (similar term)|overhanded (similar term)|overarm (similar term)
+round-backed|1
+(adj)|hunched|round-shouldered|stooped|stooping|crooked|unerect (similar term)
+round-bottom|1
+(adj)|round-bottomed|bottomed (similar term)
+round-bottom flask|1
+(noun)|flask (generic term)
+round-bottomed|1
+(adj)|round-bottom|bottomed (similar term)
+round-eyed|2
+(adj)|childlike|wide-eyed|dewy-eyed|simple|naive (similar term)|naif (similar term)
+(adj)|saucer-eyed|eyed (similar term)
+round-faced|1
+(adj)|moon-faced|faced (similar term)
+round-fruited|1
+(adj)|fruitful (similar term)
+round-headed leek|1
+(noun)|Allium sphaerocephalum|alliaceous plant (generic term)
+round-leaved rein orchid|1
+(noun)|Habenaria orbiculata|rein orchid (generic term)|rein orchis (generic term)
+round-shouldered|1
+(adj)|hunched|round-backed|stooped|stooping|crooked|unerect (similar term)
+round-spored gyromitra|1
+(noun)|Gyromitra sphaerospora|gyromitra (generic term)
+round-table conference|1
+(noun)|round table|roundtable|conference (generic term)|group discussion (generic term)
+round-tailed muskrat|1
+(noun)|Florida water rat|Neofiber alleni|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+round-the-clock|1
+(adj)|around-the-clock|day-and-night|nonstop|continuous (similar term)|uninterrupted (similar term)
+round-the-clock patrol|1
+(noun)|patrol (generic term)
+round-trip light time|1
+(noun)|RTLT|elapsed time (generic term)
+round-trip ticket|1
+(noun)|return ticket|ticket (generic term)
+round angle|1
+(noun)|perigon|angle (generic term)
+round arch|1
+(noun)|arch (generic term)
+round bone|1
+(noun)|bone (generic term)|os (generic term)
+round clam|2
+(noun)|quahaug|quahog|hard-shell clam|clam (generic term)
+(noun)|quahog|quahaug|hard-shell clam|hard clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+round dance|2
+(noun)|ring dance|folk dancing (generic term)|folk dance (generic term)
+(noun)|round dancing|ballroom dancing (generic term)|ballroom dance (generic term)
+round dancing|1
+(noun)|round dance|ballroom dancing (generic term)|ballroom dance (generic term)
+round down|1
+(verb)|round off|round out|round|change (generic term)|alter (generic term)|modify (generic term)
+round file|1
+(noun)|file (generic term)
+round hand|1
+(noun)|longhand (generic term)|running hand (generic term)|cursive (generic term)|cursive script (generic term)
+round kumquat|1
+(noun)|marumi|marumi kumquat|Fortunella japonica|kumquat (generic term)|cumquat (generic term)|kumquat tree (generic term)
+round ligament of the uterus|1
+(noun)|ligamentum teres uteri|ligament (generic term)
+round of drinks|1
+(noun)|round|helping (generic term)|portion (generic term)|serving (generic term)
+round of golf|1
+(noun)|round|golf (generic term)|golf game (generic term)
+round off|3
+(verb)|round|round out|shape (generic term)|form (generic term)
+(verb)|polish|round|polish up|brush up|perfect (generic term)|hone (generic term)
+(verb)|round down|round out|round|change (generic term)|alter (generic term)|modify (generic term)
+round out|4
+(verb)|finish out|complete (generic term)|finish (generic term)
+(verb)|fill out|enrich (generic term)
+(verb)|round off|round down|round|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|round|round off|shape (generic term)|form (generic term)
+round robin|2
+(noun)|tournament (generic term)|tourney (generic term)
+(noun)|letter (generic term)|missive (generic term)
+round scad|1
+(noun)|cigarfish|quiaquia|Decapterus punctatus|scad (generic term)
+round shape|1
+(noun)|shape (generic term)|form (generic term)
+round shot|1
+(noun)|cannonball|cannon ball|projectile (generic term)|missile (generic term)
+round steak|1
+(noun)|beefsteak (generic term)
+round table|2
+(noun)|roundtable|round-table conference|conference (generic term)|group discussion (generic term)
+(noun)|Round Table|King Arthur's Round Table|table (generic term)
+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 (similar term)
+round the clock|1
+(adv)|around the clock|for 24 hours
+round top|1
+(noun)|circus tent|big top|top|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+round trip|1
+(noun)|trip (generic term)
+round up|1
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+round whitefish|1
+(noun)|Menominee whitefish|Prosopium cylindraceum|whitefish (generic term)
+round window|1
+(noun)|fenestra rotunda|fenestra cochleae|fenestra of the cochlea|fenestra (generic term)
+roundabout|4
+(adj)|circuitous|indirect (similar term)
+(adj)|devious|circuitous|indirect (similar term)
+(noun)|traffic circle|circle|rotary|junction (generic term)
+(noun)|carousel|carrousel|merry-go-round|whirligig|ride (generic term)
+roundabout way|1
+(noun)|detour|road (generic term)|route (generic term)
+rounded|2
+(adj)|allantoid (similar term)|sausage-shaped (similar term)|almond-shaped (similar term)|amygdaliform (similar term)|amygdaloid (similar term)|amygdaloidal (similar term)|annular (similar term)|annulate (similar term)|annulated (similar term)|circinate (similar term)|circular (similar term)|ringed (similar term)|ring-shaped (similar term)|doughnut-shaped (similar term)|aspheric (similar term)|aspherical (similar term)|auriform (similar term)|ear-shaped (similar term)|ear-like (similar term)|bean-shaped (similar term)|bowfront (similar term)|crescent (similar term)|crescent-shaped (similar term)|semilunar (similar term)|lunate (similar term)|cycloid (similar term)|cycloidal (similar term)|cylindrical (similar term)|cylindric (similar term)|disciform (similar term)|domed (similar term)|vaulted (similar term)|dome-shaped (similar term)|egg-shaped (similar term)|elliptic (similar term)|elliptical (similar term)|oval (similar term)|oval-shaped (similar term)|ovate (similar term)|oviform (similar term)|ovoid (similar term)|prolate (similar term)|ellipsoid (similar term)|ellipsoidal (similar term)|spheroidal (similar term)|non-circular (similar term)|hyperboloidal (similar term)|lingulate (similar term)|tongue-shaped (similar term)|olivelike (similar term)|olive-like (similar term)|parabolic (similar term)|parabolical (similar term)|paraboloidal (similar term)|pillar-shaped (similar term)|pineal (similar term)|plumlike (similar term)|rod-shaped (similar term)|rodlike (similar term)|rotund (similar term)|terete (similar term)|umbrellalike (similar term)|coiled (related term)|fat (related term)|oblate (related term)|pumpkin-shaped (related term)|prolate (related term)|watermelon-shaped (related term)|round (related term)|circular (related term)|angular (antonym)
+(adj)|fat|endomorphic (similar term)|pyknic (similar term)
+roundedness|1
+(noun)|bulginess|convexity (generic term)|convexness (generic term)
+roundel|3
+(noun)|rondeau (generic term)|rondel (generic term)
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|annulet|charge (generic term)|bearing (generic term)|heraldic bearing (generic term)|armorial bearing (generic term)
+roundelay|1
+(noun)|song (generic term)|vocal (generic term)
+rounder|2
+(noun)|libertine|debauchee|bad person (generic term)
+(noun)|tool (generic term)
+rounders|1
+(noun)|baseball (generic term)|baseball game (generic term)
+roundhead|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Roundhead|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+roundheaded|1
+(adj)|broad-headed|short-headed|brachycephalic (similar term)|brachycranial (similar term)|brachycranic (similar term)
+roundhouse|2
+(noun)|workplace (generic term)|work (generic term)
+(noun)|hook (generic term)
+rounding|1
+(noun)|rounding error|miscalculation (generic term)|misreckoning (generic term)|misestimation (generic term)
+rounding error|1
+(noun)|rounding|miscalculation (generic term)|misreckoning (generic term)|misestimation (generic term)
+roundish|1
+(adj)|round (similar term)|circular (similar term)
+roundly|1
+(adv)|bluffly|bluntly|brusquely|flat out
+roundness|4
+(noun)|rotundity|tone (generic term)|tone of voice (generic term)
+(noun)|number (generic term)|figure (generic term)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|angularity (antonym)
+(noun)|plumpness|embonpoint|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+roundsman|1
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+roundtable|1
+(noun)|round table|round-table conference|conference (generic term)|group discussion (generic term)
+roundup|3
+(noun)|ranching (generic term)
+(noun)|summary (generic term)|sum-up (generic term)
+(noun)|police work (generic term)|police investigation (generic term)
+roundworm|2
+(noun)|tinea|ringworm|fungal infection (generic term)|mycosis (generic term)
+(noun)|nematode|nematode worm|worm (generic term)
+rous|1
+(noun)|Rous|Peyton Rous|Francis Peyton Rous|diagnostician (generic term)|pathologist (generic term)
+rouse|4
+(verb)|bestir|be active (generic term)|move (generic term)
+(verb)|rout out|drive out|force out|move (generic term)|displace (generic term)
+(verb)|agitate|turn on|charge|commove|excite|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|awaken|wake|waken|wake up|arouse|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+rouser|1
+(noun)|waker|arouser|attendant (generic term)|attender (generic term)|tender (generic term)
+rousing|3
+(adj)|stirring|stimulating (similar term)
+(adj)|provocative (similar term)
+(noun)|arousal|change of state (generic term)
+rousseau|2
+(noun)|Rousseau|Jean-Jacques Rousseau|writer (generic term)|author (generic term)|philosopher (generic term)
+(noun)|Rousseau|Henri Rousseau|Le Douanier Rousseau|painter (generic term)
+rousseauan|1
+(adj)|Rousseauan|writer|author|philosopher (related term)
+roustabout|1
+(noun)|deckhand|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+rout|6
+(noun)|mob|rabble|crowd (generic term)
+(noun)|defeat (generic term)|licking (generic term)
+(verb)|rout out|expel|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|root|rootle|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+(verb)|gouge|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|spread-eagle|spreadeagle|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+rout out|3
+(verb)|rout up|find (generic term)|regain (generic term)
+(verb)|drive out|force out|rouse|move (generic term)|displace (generic term)
+(verb)|rout|expel|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+rout up|1
+(verb)|rout out|find (generic term)|regain (generic term)
+route|5
+(noun)|path|itinerary|line (generic term)
+(noun)|road|way (generic term)
+(verb)|dispatch (generic term)|despatch (generic term)|send off (generic term)
+(verb)|send (generic term)|direct (generic term)
+(verb)|divert (generic term)
+routemarch|1
+(noun)|march (generic term)|marching (generic term)
+router|3
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|device (generic term)
+(noun)|power tool (generic term)
+router plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+routine|5
+(adj)|regular (similar term)
+(adj)|everyday|mundane|quotidian|unremarkable|workaday|ordinary (similar term)
+(noun)|modus operandi|procedure (generic term)|process (generic term)
+(noun)|act|number|turn|bit|performance (generic term)|public presentation (generic term)
+(noun)|subroutine|subprogram|procedure|function|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+routinely|1
+(adv)|habitually
+roux|1
+(noun)|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+rove|1
+(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+rove beetle|1
+(noun)|beetle (generic term)
+rover|2
+(noun)|wanderer|roamer|bird of passage|traveler (generic term)|traveller (generic term)
+(noun)|scouter|Boy Scout (generic term)
+roving|2
+(adj)|mobile|nomadic|peregrine|wandering|unsettled (similar term)
+(noun)|wandering|vagabondage|travel (generic term)|traveling (generic term)|travelling (generic term)
+row|8
+(noun)|line (generic term)
+(noun)|quarrel|wrangle|words|run-in|dustup|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|strip (generic term)
+(noun)|course|layer (generic term)|bed (generic term)
+(noun)|array (generic term)
+(noun)|sequence (generic term)|chronological sequence (generic term)|succession (generic term)|successiveness (generic term)|chronological succession (generic term)
+(noun)|rowing|sport (generic term)|athletics (generic term)
+(verb)|boat (generic term)
+row house|1
+(noun)|town house|house (generic term)
+row of bricks|1
+(noun)|course (generic term)|row (generic term)
+rowan|1
+(noun)|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash (generic term)
+rowan tree|1
+(noun)|rowan|European mountain ash|Sorbus aucuparia|mountain ash (generic term)
+rowanberry|1
+(noun)|fruit (generic term)
+rowboat|1
+(noun)|dinghy|dory|small boat (generic term)
+rowdily|1
+(adv)|raucously
+rowdiness|1
+(noun)|rowdyism|roughness|disorderliness|disorder (generic term)
+rowdy|2
+(adj)|raucous|disorderly (similar term)
+(noun)|bully|tough|hooligan|ruffian|roughneck|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+rowdyism|1
+(noun)|rowdiness|roughness|disorderliness|disorder (generic term)
+rowel|1
+(noun)|wheel (generic term)
+rower|1
+(noun)|oarsman|boatman (generic term)|boater (generic term)|waterman (generic term)
+rowing|1
+(noun)|row|sport (generic term)|athletics (generic term)
+rowing boat|1
+(noun)|dinghy (generic term)|dory (generic term)|rowboat (generic term)
+rowing club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+rowlock|1
+(noun)|peg|pin|thole|tholepin|oarlock|holder (generic term)
+rowlock arch|1
+(noun)|arch (generic term)
+roy chapman andrews|1
+(noun)|Andrews|Roy Chapman Andrews|naturalist (generic term)|natural scientist (generic term)
+roy lichtenstein|1
+(noun)|Lichtenstein|Roy Lichtenstein|painter (generic term)
+roy orbison|1
+(noun)|Orbison|Roy Orbison|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|composer (generic term)
+roy wilkins|1
+(noun)|Wilkins|Roy Wilkins|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+royal|7
+(adj)|ruler|swayer|head of state|chief of state (related term)
+(adj)|house (related term)
+(adj)|noble (similar term)
+(adj)|imperial|majestic|purple|regal|noble (similar term)
+(adj)|crowned (similar term)
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+(noun)|royal stag|stag (generic term)
+royal academy|1
+(noun)|Royal Academy|Royal Academy of Arts|academy (generic term)|honorary society (generic term)
+royal academy of arts|1
+(noun)|Royal Academy|Royal Academy of Arts|academy (generic term)|honorary society (generic term)
+royal agaric|1
+(noun)|Caesar's agaric|Amanita caesarea|agaric (generic term)
+royal air force|1
+(noun)|Royal Air Force|RAF|air force (generic term)|airforce (generic term)
+royal blue|1
+(noun)|purplish blue|blue (generic term)|blueness (generic term)
+royal brace|1
+(noun)|brace (generic term)
+royal canadian mounted police|1
+(noun)|Royal Canadian Mounted Police|RCMP|Mounties|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)|international law enforcement agency (generic term)
+royal casino|1
+(noun)|casino (generic term)|cassino (generic term)
+royal charter|1
+(noun)|charter (generic term)
+royal court|2
+(noun)|court|cortege (generic term)|retinue (generic term)|suite (generic term)|entourage (generic term)
+(noun)|court|government (generic term)|authorities (generic term)|regime (generic term)
+royal family|1
+(noun)|royalty|royal line|royal house|house (generic term)
+royal fern|1
+(noun)|royal osmund|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+royal flush|1
+(noun)|poker hand (generic term)
+royal house|1
+(noun)|royalty|royal family|royal line|house (generic term)
+royal jelly|1
+(noun)|secretion (generic term)
+royal line|1
+(noun)|royalty|royal family|royal house|house (generic term)
+royal mast|1
+(noun)|topmast (generic term)
+royal national eisteddfod|1
+(noun)|Royal National Eisteddfod|eisteddfod (generic term)
+royal osmund|1
+(noun)|royal fern|king fern|ditch fern|French bracken|Osmunda regalis|flowering fern (generic term)|osmund (generic term)
+royal palm|1
+(noun)|Roystonea regia|palm (generic term)|palm tree (generic term)
+royal poinciana|1
+(noun)|flamboyant|flame tree|peacock flower|Delonix regia|Poinciana regia|angiospermous tree (generic term)|flowering tree (generic term)
+royal purple|1
+(noun)|reddish purple|purple (generic term)|purpleness (generic term)
+royal road|1
+(noun)|road (generic term)
+royal society|1
+(noun)|Royal Society|Royal Society of London for Improving Natural Knowledge|academy (generic term)|honorary society (generic term)
+royal society of london for improving natural knowledge|1
+(noun)|Royal Society|Royal Society of London for Improving Natural Knowledge|academy (generic term)|honorary society (generic term)
+royal stag|1
+(noun)|royal|stag (generic term)
+royal tennis|1
+(noun)|real tennis|court tennis|tennis (generic term)|lawn tennis (generic term)
+royal velvet plant|1
+(noun)|velvet plant|purple velvet plant|Gynura aurantiaca|houseplant (generic term)
+royalism|1
+(noun)|attachment (generic term)|adherence (generic term)|adhesion (generic term)
+royalist|2
+(noun)|monarchist|rightist (generic term)|right-winger (generic term)
+(noun)|Cavalier|Royalist|monarchist (generic term)|royalist (generic term)
+royally|1
+(adv)|like kings|like royalty
+royalty|2
+(noun)|payment (generic term)
+(noun)|royal family|royal line|royal house|house (generic term)
+roystonea|1
+(noun)|Roystonea|genus Roystonea|monocot genus (generic term)|liliopsid genus (generic term)
+roystonea oleracea|1
+(noun)|cabbage palm|Roystonea oleracea|palm (generic term)|palm tree (generic term)
+roystonea regia|1
+(noun)|royal palm|Roystonea regia|palm (generic term)|palm tree (generic term)
+rozelle|1
+(noun)|roselle|sorrel|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+rpa-abb|1
+(noun)|Alex Boncayao Brigade|ABB|Revolutionary Proletarian Army|RPA-ABB|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+rpm|1
+(noun)|revolutions per minute|rev|rate (generic term)
+rtlt|1
+(noun)|round-trip light time|RTLT|elapsed time (generic term)
+ru|1
+(noun)|ruthenium|Ru|atomic number 44|metallic element (generic term)|metal (generic term)
+ru 486|1
+(noun)|abortion pill|mifepristone|RU 486|abortifacient (generic term)|aborticide (generic term)|abortion-inducing drug (generic term)
+ruanda|1
+(noun)|Rwanda|Rwandese Republic|Ruanda|African country (generic term)|African nation (generic term)
+ruandan|1
+(adj)|Rwandan|Ruandan|African country|African nation (related term)
+rub|5
+(noun)|hang-up|hitch|snag|obstacle (generic term)|obstruction (generic term)
+(noun)|wipe|contact (generic term)|physical contact (generic term)
+(verb)|guide (generic term)|run (generic term)|draw (generic term)|pass (generic term)|rub down (related term)|rub off (related term)|rub down (related term)|rub out (related term)
+(verb)|fray|fret|chafe|scratch|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|scratch|itch|irritate (generic term)
+rub-a-dub|1
+(noun)|rataplan|drumbeat|sound (generic term)
+rub al-khali|1
+(noun)|Rub al-Khali|Ar Rimsal|Dahna|Great Sandy Desert|desert (generic term)
+rub along|1
+(verb)|scrape along|scrape by|scratch along|squeak by|squeeze by|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+rub down|2
+(verb)|abrade|corrade|abrase|rub off|wear away (generic term)|wear off (generic term)
+(verb)|massage|knead|manipulate (generic term)
+rub off|1
+(verb)|abrade|corrade|abrase|rub down|wear away (generic term)|wear off (generic term)
+rub out|1
+(verb)|erase|score out|efface|wipe off|delete (generic term)|cancel (generic term)
+rub up|1
+(noun)|review (generic term)|brushup (generic term)
+rubato|1
+(noun)|tempo (generic term)|pacing (generic term)
+rubber|7
+(adj)|no-good|bad (similar term)
+(noun)|natural rubber|India rubber|gum elastic|caoutchouc|latex (generic term)
+(noun)|synthetic rubber|synthetic (generic term)|synthetic substance (generic term)
+(noun)|rubber eraser|pencil eraser|eraser (generic term)
+(noun)|condom|safety|safe|prophylactic|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+(noun)|arctic|galosh|golosh|gumshoe|overshoe (generic term)
+(verb)|rubberize|rubberise|coat (generic term)|surface (generic term)
+rubber-base paint|1
+(noun)|latex paint|latex|water-base paint (generic term)
+rubber-necking|1
+(noun)|sightseeing|look (generic term)|looking (generic term)|looking at (generic term)
+rubber band|1
+(noun)|elastic band|elastic|band (generic term)|elastic device (generic term)
+rubber boa|1
+(noun)|tow-headed snake|Charina bottae|boa (generic term)
+rubber boot|1
+(noun)|gum boot|boot (generic term)
+rubber bullet|1
+(noun)|bullet (generic term)|slug (generic term)
+rubber cement|1
+(noun)|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+rubber eraser|1
+(noun)|rubber|pencil eraser|eraser (generic term)
+rubber plant|1
+(noun)|India-rubber tree|India-rubber plant|India-rubber fig|Assam rubber|Ficus elastica|fig tree (generic term)
+rubber stamp|2
+(noun)|handstamp|seal (generic term)|stamp (generic term)
+(noun)|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+rubber tire|1
+(noun)|car tire|automobile tire|auto tire|tire (generic term)|tyre (generic term)
+rubberise|1
+(verb)|rubberize|rubber|coat (generic term)|surface (generic term)
+rubberize|1
+(verb)|rubberise|rubber|coat (generic term)|surface (generic term)
+rubberlike|1
+(adj)|rubbery|elastic (similar term)
+rubberneck|3
+(noun)|sightseer|excursionist|tripper|tourist (generic term)|tourer (generic term)|holidaymaker (generic term)
+(noun)|rubbernecker|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+(verb)|watch (generic term)
+rubbernecker|1
+(noun)|rubberneck|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+rubberstamp|2
+(verb)|handstamp|stamp (generic term)
+(verb)|approve (generic term)
+rubbery|2
+(adj)|rubberlike|elastic (similar term)
+(adj)|cartilaginous|gristly|tough (similar term)
+rubbing|3
+(noun)|friction|resistance (generic term)
+(noun)|representation (generic term)
+(noun)|friction|detrition|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+rubbing alcohol|1
+(noun)|lotion (generic term)|application (generic term)
+rubbish|3
+(noun)|trash|scrap|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|folderol|tripe|trumpery|trash|wish-wash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+(verb)|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+rubbish dump|1
+(noun)|dump|garbage dump|trash dump|wasteyard|waste-yard|dumpsite|site (generic term)|land site (generic term)
+rubbish heap|1
+(noun)|garbage heap|junk heap|scrapheap|trash heap|junk pile|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+rubbishy|1
+(adj)|trashy|worthless (similar term)
+rubble|1
+(noun)|debris|dust|junk|detritus|rubbish (generic term)|trash (generic term)|scrap (generic term)
+rubdown|1
+(noun)|massage (generic term)
+rube|1
+(noun)|yokel|hick|yahoo|hayseed|bumpkin|chawbacon|rustic (generic term)
+rube goldberg|1
+(noun)|Goldberg|Rube Goldberg|Reuben Lucius Goldberg|cartoonist (generic term)
+rubefacient|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+rubel|1
+(noun)|Belarusian monetary unit (generic term)
+rubella|1
+(noun)|German measles|three-day measles|epidemic roseola|measles (generic term)|rubeola (generic term)|morbilli (generic term)
+rubella panencephalitis|1
+(noun)|panencephalitis (generic term)
+rubens|1
+(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master (generic term)
+rubeola|1
+(noun)|measles|morbilli|contagious disease (generic term)|contagion (generic term)
+rubia|1
+(noun)|Rubia|genus Rubia|asterid dicot genus (generic term)
+rubia cordifolia|1
+(noun)|Indian madder|munjeet|Rubia cordifolia|madderwort (generic term)|rubiaceous plant (generic term)
+rubia tinctorum|1
+(noun)|madder|Rubia tinctorum|madderwort (generic term)|rubiaceous plant (generic term)
+rubiaceae|1
+(noun)|Rubiaceae|family Rubiaceae|madder family|asterid dicot family (generic term)
+rubiaceous plant|1
+(noun)|madderwort|angiosperm (generic term)|flowering plant (generic term)
+rubiales|1
+(noun)|Rubiales|order Rubiales|plant order (generic term)
+rubicelle|1
+(noun)|spinel ruby (generic term)|ruby spinel (generic term)
+rubicon|2
+(noun)|Rubicon|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|Rubicon|point of no return|line (generic term)|dividing line (generic term)|demarcation (generic term)|contrast (generic term)
+rubicund|1
+(adj)|ruddy|florid|sanguine|healthy (similar term)
+rubidium|1
+(noun)|Rb|atomic number 37|metallic element (generic term)|metal (generic term)
+rubidium-strontium dating|1
+(noun)|dating (generic term)|geological dating (generic term)
+rubify|1
+(verb)|redden (generic term)
+rubin test|1
+(noun)|Rubin test|diagnostic test (generic term)|diagnostic assay (generic term)
+rubinstein|2
+(noun)|Rubinstein|Arthur Rubinstein|Artur Rubinstein|pianist (generic term)|piano player (generic term)
+(noun)|Rubinstein|Anton Rubenstein|Anton Gregor Rubinstein|Anton Grigorevich Rubinstein|composer (generic term)|pianist (generic term)|piano player (generic term)
+ruble|2
+(noun)|Tajikistani monetary unit (generic term)
+(noun)|rouble|Russian monetary unit (generic term)
+rubor|1
+(noun)|inflammation|redness|symptom (generic term)
+rubric|7
+(noun)|rule (generic term)|prescript (generic term)
+(noun)|gloss|explanation (generic term)|account (generic term)
+(noun)|direction (generic term)|instruction (generic term)
+(noun)|title|statute title|heading (generic term)|header (generic term)|head (generic term)
+(noun)|heading (generic term)|header (generic term)|head (generic term)|title (generic term)
+(noun)|category (generic term)
+(verb)|rubify (generic term)
+rubricate|4
+(verb)|recognize (generic term)|recognise (generic term)
+(verb)|format (generic term)|arrange (generic term)
+(verb)|miniate|illuminate (generic term)
+(verb)|sign (generic term)|subscribe (generic term)
+rubus|1
+(noun)|Rubus|genus Rubus|rosid dicot genus (generic term)
+rubus australis|1
+(noun)|lawyerbush|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush (generic term)
+rubus caesius|1
+(noun)|European dewberry|Rubus caesius|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+rubus canadensis|1
+(noun)|American dewberry|Rubus canadensis|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+rubus chamaemorus|1
+(noun)|cloudberry|dwarf mulberry|bakeapple|baked-apple berry|salmonberry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+rubus cissoides|1
+(noun)|lawyerbush|lawyer bush|bush lawyer|Rubus cissoides|Rubus australis|bramble bush (generic term)
+rubus cuneifolius|1
+(noun)|sand blackberry|Rubus cuneifolius|blackberry (generic term)|blackberry bush (generic term)
+rubus flagellaris|1
+(noun)|Northern dewberry|American dewberry|Rubus flagellaris|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+rubus fruticosus|1
+(noun)|true blackberry|Rubus fruticosus|blackberry (generic term)|blackberry bush (generic term)
+rubus hispidus|1
+(noun)|swamp dewberry|swamp blackberry|Rubus hispidus|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+rubus idaeus|1
+(noun)|wild raspberry|European raspberry|framboise|Rubus idaeus|red raspberry (generic term)
+rubus idaeus strigosus|1
+(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry (generic term)
+rubus loganobaccus|1
+(noun)|loganberry|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry (generic term)|western dewberry (generic term)|Rubus ursinus (generic term)
+rubus occidentalis|1
+(noun)|black raspberry|blackcap|blackcap raspberry|thimbleberry|Rubus occidentalis|raspberry (generic term)|raspberry bush (generic term)
+rubus odoratus|1
+(noun)|flowering raspberry|purple-flowering raspberry|Rubus odoratus|thimbleberry|raspberry (generic term)|raspberry bush (generic term)
+rubus parviflorus|1
+(noun)|salmonberry|salmon berry|thimbleberry|Rubus parviflorus|raspberry (generic term)|raspberry bush (generic term)
+rubus phoenicolasius|1
+(noun)|wineberry|Rubus phoenicolasius|raspberry (generic term)|raspberry bush (generic term)
+rubus saxatilis|1
+(noun)|stone bramble|Rubus saxatilis|bramble bush (generic term)
+rubus spectabilis|1
+(noun)|salmonberry|Rubus spectabilis|raspberry (generic term)|raspberry bush (generic term)
+rubus strigosus|1
+(noun)|American raspberry|Rubus strigosus|Rubus idaeus strigosus|red raspberry (generic term)
+rubus trivialis|1
+(noun)|Southern dewberry|Rubus trivialis|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+rubus ursinus|1
+(noun)|western blackberry|western dewberry|Rubus ursinus|blackberry (generic term)|blackberry bush (generic term)
+rubus ursinus loganobaccus|1
+(noun)|loganberry|Rubus loganobaccus|Rubus ursinus loganobaccus|western blackberry (generic term)|western dewberry (generic term)|Rubus ursinus (generic term)
+ruby|4
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby-red|scarlet|chromatic (similar term)
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|transparent gem (generic term)|corundom (generic term)|corundum (generic term)
+(noun)|crimson|deep red|red (generic term)|redness (generic term)
+ruby-crowned kinglet|1
+(noun)|ruby-crowned wren|Regulus calendula|kinglet (generic term)
+ruby-crowned wren|1
+(noun)|ruby-crowned kinglet|Regulus calendula|kinglet (generic term)
+ruby-red|1
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|scarlet|chromatic (similar term)
+ruby spinel|1
+(noun)|spinel ruby|spinel (generic term)
+ruby wood|1
+(noun)|red sandalwood|wood (generic term)
+ruck|3
+(noun)|herd|multitude (generic term)|throng (generic term)|concourse (generic term)
+(noun)|pucker|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(verb)|pucker|ruck up|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+ruck up|1
+(verb)|pucker|ruck|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+ruckle|2
+(verb)|rattle (generic term)
+(verb)|wrinkle|crease|crinkle|scrunch|scrunch up|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+rucksack|1
+(noun)|backpack|back pack|knapsack|packsack|haversack|bag (generic term)
+ruckus|1
+(noun)|commotion|din|ruction|rumpus|tumult|disturbance (generic term)
+ruction|1
+(noun)|commotion|din|ruckus|rumpus|tumult|disturbance (generic term)
+rudaceous rock|1
+(noun)|sedimentary rock (generic term)
+rudapithecus|1
+(noun)|Dryopithecus Rudapithecus hungaricus|dryopithecine (generic term)
+rudbeckia|1
+(noun)|Rudbeckia|genus Rudbeckia|asterid dicot genus (generic term)
+rudbeckia hirta|1
+(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower (generic term)
+rudbeckia laciniata|1
+(noun)|cutleaved coneflower|Rudbeckia laciniata|coneflower (generic term)
+rudbeckia laciniata hortensia|1
+(noun)|golden glow|double gold|hortensia|Rudbeckia laciniata hortensia|cutleaved coneflower (generic term)|Rudbeckia laciniata (generic term)
+rudbeckia serotina|1
+(noun)|black-eyed Susan|Rudbeckia hirta|Rudbeckia serotina|coneflower (generic term)
+rudd|1
+(noun)|Scardinius erythrophthalmus|cyprinid (generic term)|cyprinid fish (generic term)
+rudder|2
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+(noun)|steering system (generic term)|steering mechanism (generic term)
+rudder-like|1
+(adj)|formed (similar term)
+rudder blade|1
+(noun)|blade (generic term)|vane (generic term)
+rudderfish|2
+(noun)|Bermuda chub|Kyphosus sectatrix|sea chub (generic term)
+(noun)|banded rudderfish|Seriola zonata|jack (generic term)
+rudderless|1
+(adj)|adrift|afloat|aimless|directionless|planless|undirected|purposeless (similar term)
+rudderpost|1
+(noun)|rudderstock|post (generic term)
+rudderstock|1
+(noun)|rudderpost|post (generic term)
+ruddiness|1
+(noun)|rosiness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+ruddle|3
+(noun)|reddle|raddle|iron ore (generic term)
+(verb)|raddle|weave (generic term)|interweave (generic term)
+(verb)|redden (generic term)
+ruddles|1
+(noun)|common marigold|pot marigold|Scotch marigold|Calendula officinalis|calendula (generic term)
+ruddy|2
+(adj)|rubicund|florid|sanguine|healthy (similar term)
+(adj)|red|reddish|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|scarlet|chromatic (similar term)
+ruddy duck|1
+(noun)|Oxyura jamaicensis|duck (generic term)
+ruddy turnstone|1
+(noun)|Arenaria interpres|turnstone (generic term)
+rude|5
+(adj)|ill-mannered|bad-mannered|unmannered|unmannerly|impolite (similar term)
+(adj)|ill-bred|bounderish|lowbred|underbred|yokelish|unrefined (similar term)
+(adj)|uncivil|civil (antonym)
+(adj)|natural|raw|unprocessed (similar term)
+(adj)|crude|primitive|early (similar term)
+rudely|1
+(adv)|impolitely|discourteously|courteously (antonym)|politely (antonym)
+rudeness|2
+(noun)|discourtesy|manner (generic term)|personal manner (generic term)|courtesy (antonym)
+(noun)|crudeness|crudity|primitiveness|primitivism|wild (generic term)|natural state (generic term)|state of nature (generic term)
+rudiment|2
+(noun)|first rudiment|first principle|alphabet|ABC|ABC's|ABCs|fundamentals (generic term)|basics (generic term)|fundamental principle (generic term)|basic principle (generic term)|bedrock (generic term)
+(noun)|body part (generic term)
+rudimentary|3
+(adj)|fundamental|underlying|basic (similar term)
+(adj)|incomplete (similar term)|uncomplete (similar term)
+(adj)|vestigial|undeveloped (similar term)
+rudiments|1
+(noun)|basics|fact (generic term)
+rudolf bultmann|1
+(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+rudolf christian karl diesel|1
+(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+rudolf diesel|1
+(noun)|Diesel|Rudolf Diesel|Rudolf Christian Karl Diesel|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+rudolf hess|1
+(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi (generic term)|German Nazi (generic term)
+rudolf karl bultmann|1
+(noun)|Bultmann|Rudolf Bultmann|Rudolf Karl Bultmann|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+rudolf karl virchow|1
+(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician (generic term)|pathologist (generic term)
+rudolf ludwig mossbauer|1
+(noun)|Mossbauer|Rudolf Ludwig Mossbauer|nuclear physicist (generic term)
+rudolf nureyev|1
+(noun)|Nureyev|Rudolf Nureyev|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+rudolf serkin|1
+(noun)|Serkin|Rudolf Serkin|pianist (generic term)|piano player (generic term)
+rudolf virchow|1
+(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician (generic term)|pathologist (generic term)
+rudolf wurlitzer|1
+(noun)|Wurlitzer|Rudolf Wurlitzer|businessman (generic term)|man of affairs (generic term)
+rudolph laban|1
+(noun)|Laban|Rudolph Laban|choreographer (generic term)
+rudra|1
+(noun)|Rudra|Hindu deity (generic term)
+rudyard kipling|1
+(noun)|Kipling|Rudyard Kipling|Joseph Rudyard Kipling|writer (generic term)|author (generic term)
+rue|5
+(noun)|herb of grace|Ruta graveolens|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+(noun)|sorrow|regret|ruefulness|sadness (generic term)|unhappiness (generic term)
+(noun)|street (generic term)
+(verb)|repent|regret|feel (generic term)|experience (generic term)
+rue anemone|1
+(noun)|Anemonella thalictroides|flower (generic term)
+rue family|1
+(noun)|Rutaceae|family Rutaceae|rosid dicot family (generic term)
+rueful|1
+(adj)|contrite|remorseful|ruthful|penitent (similar term)|repentant (similar term)
+ruefully|1
+(adv)|contritely|remorsefully
+ruefulness|1
+(noun)|sorrow|regret|rue|sadness (generic term)|unhappiness (generic term)
+ruf|1
+(noun)|Revolutionary United Front|RUF|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ruff|5
+(noun)|frill|external body part (generic term)
+(noun)|choker|ruffle|neck ruff|collar (generic term)|neckband (generic term)
+(noun)|Philomachus pugnax|sandpiper (generic term)
+(noun)|trumping|turn (generic term)|play (generic term)
+(verb)|trump|move (generic term)|go (generic term)
+ruffed grouse|1
+(noun)|partridge|Bonasa umbellus|grouse (generic term)
+ruffian|1
+(noun)|bully|tough|hooligan|roughneck|rowdy|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+ruffianism|1
+(noun)|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+ruffianly|1
+(adj)|tough|violent (similar term)
+ruffle|12
+(noun)|frill|flounce|furbelow|adornment (generic term)
+(noun)|choker|ruff|neck ruff|collar (generic term)|neckband (generic term)
+(noun)|affray|disturbance|fray|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|ripple|riffle|cockle|undulate|flow (generic term)|flux (generic term)
+(verb)|annoy (generic term)|rag (generic term)|get to (generic term)|bother (generic term)|get at (generic term)|irritate (generic term)|rile (generic term)|nark (generic term)|nettle (generic term)|gravel (generic term)|vex (generic term)|chafe (generic term)|devil (generic term)
+(verb)|tittup|swagger|prance|strut|sashay|cock|walk (generic term)
+(verb)|fluster (generic term)
+(verb)|flick|riffle|move (generic term)|displace (generic term)
+(verb)|shuffle|mix|manipulate (generic term)
+(verb)|fluff|loosen (generic term)|fluff up (related term)
+(verb)|ruffle up|rumple|mess up|disarrange (generic term)
+(verb)|pleat|fold (generic term)|fold up (generic term)|turn up (generic term)
+ruffle up|1
+(verb)|ruffle|rumple|mess up|disarrange (generic term)
+ruffled|2
+(adj)|rippled|agitated (similar term)
+(adj)|frilled|frilly|adorned (similar term)|decorated (similar term)
+rufous rubber cup|1
+(noun)|Rufous rubber cup|Sarcosomataceae (generic term)
+rug|1
+(noun)|carpet|carpeting|floor cover (generic term)|floor covering (generic term)|furnishing (generic term)
+rug beater|1
+(noun)|carpet beater|beater (generic term)
+rug merchant|1
+(noun)|merchant (generic term)|merchandiser (generic term)
+rug pad|1
+(noun)|carpet pad|underlay|underlayment|pad (generic term)
+ruga|1
+(noun)|fold (generic term)|plica (generic term)
+rugby|1
+(noun)|rugby football|rugger|football (generic term)|football game (generic term)
+rugby ball|1
+(noun)|ball (generic term)
+rugby football|1
+(noun)|rugby|rugger|football (generic term)|football game (generic term)
+rugel's plantain|1
+(noun)|broad-leaved plantain|Plantago rugelii|plantain (generic term)
+rugelach|1
+(noun)|rugulah|ruggelach|pastry (generic term)
+rugged|4
+(adj)|hardy (similar term)|knockabout (similar term)|sturdy (similar term)|tough (similar term)|robust (related term)|strong (related term)|tough (related term)|toughened (related term)|delicate (antonym)
+(adj)|broken|rough (similar term)|unsmooth (similar term)
+(adj)|craggy|cliffy (similar term)|clifflike (similar term)
+(adj)|tough|difficult (similar term)|hard (similar term)
+rugged individualism|1
+(noun)|individualism (generic term)
+ruggedisation|1
+(noun)|ruggedization|protection (generic term)
+ruggedise|1
+(verb)|ruggedize|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+ruggedization|1
+(noun)|ruggedisation|protection (generic term)
+ruggedize|1
+(verb)|ruggedise|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+ruggedness|3
+(noun)|huskiness|toughness|strength (generic term)
+(noun)|unevenness (generic term)|variability (generic term)
+(noun)|hardness|difficulty (generic term)|difficultness (generic term)
+ruggelach|1
+(noun)|rugulah|rugelach|pastry (generic term)
+rugger|1
+(noun)|rugby|rugby football|football (generic term)|football game (generic term)
+rugose|1
+(adj)|rough (similar term)|unsmooth (similar term)
+rugulah|1
+(noun)|rugelach|ruggelach|pastry (generic term)
+ruholla khomeini|1
+(noun)|Khomeini|Ruholla Khomeini|Ayatollah Khomeini|Ayatollah Ruholla Khomeini|religious leader (generic term)
+ruhr|2
+(noun)|Ruhr|Ruhr River|river (generic term)
+(noun)|Ruhr|Ruhr Valley|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+ruhr river|1
+(noun)|Ruhr|Ruhr River|river (generic term)
+ruhr valley|1
+(noun)|Ruhr|Ruhr Valley|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+ruin|12
+(noun)|ruination|devastation (generic term)|desolation (generic term)
+(noun)|building (generic term)|edifice (generic term)
+(noun)|dilapidation|decay (generic term)
+(noun)|ruination|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|downfall|ruination|failure (generic term)
+(noun)|laying waste|ruining|ruination|wrecking|destruction (generic term)|devastation (generic term)
+(verb)|destroy
+(verb)|thwart (generic term)|queer (generic term)|spoil (generic term)|scotch (generic term)|foil (generic term)|cross (generic term)|frustrate (generic term)|baffle (generic term)|bilk (generic term)
+(verb)|bankrupt|break|smash|impoverish (generic term)
+(verb)|lay waste to (generic term)|waste (generic term)|devastate (generic term)|desolate (generic term)|ravage (generic term)|scourge (generic term)
+(verb)|deflower|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|decay (generic term)|crumble (generic term)|delapidate (generic term)
+ruination|4
+(noun)|ruin|devastation (generic term)|desolation (generic term)
+(noun)|ruin|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|downfall|ruin|failure (generic term)
+(noun)|laying waste|ruin|ruining|wrecking|destruction (generic term)|devastation (generic term)
+ruined|3
+(adj)|destroyed|lost (similar term)
+(adj)|done for|sunk|undone|washed-up|unsuccessful (similar term)
+(adj)|finished|destroyed (similar term)
+ruiner|1
+(noun)|destroyer|undoer|waster|uprooter|bad person (generic term)
+ruining|1
+(noun)|laying waste|ruin|ruination|wrecking|destruction (generic term)|devastation (generic term)
+ruinous|2
+(adj)|catastrophic|harmful (similar term)
+(adj)|blasting|destructive (similar term)
+rule|18
+(noun)|regulation|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|convention|normal|pattern|formula|practice (generic term)
+(noun)|prescript|direction (generic term)|instruction (generic term)
+(noun)|linguistic rule|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|principle|generalization (generic term)|generalisation (generic term)|generality (generic term)
+(noun)|principle|law (generic term)|law of nature (generic term)
+(noun)|duration (generic term)|continuance (generic term)
+(noun)|dominion|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+(noun)|direction (generic term)|instruction (generic term)
+(noun)|formula|procedure (generic term)|process (generic term)
+(noun)|ruler|measuring stick (generic term)|measure (generic term)|measuring rod (generic term)
+(verb)|govern|control (generic term)|command (generic term)
+(verb)|decree|decide (generic term)|make up one's mind (generic term)|determine (generic term)|rule out (related term)
+(verb)|predominate|dominate|reign|prevail
+(verb)|find|pronounce (generic term)|label (generic term)|judge (generic term)
+(verb)|attach to (generic term)|accompany (generic term)|come with (generic term)|go with (generic term)
+(verb)|draw (generic term)
+(verb)|harness|rein|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+rule-governed|1
+(adj)|lawful|orderly|regular (similar term)
+rule book|1
+(noun)|book|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+rule in|1
+(verb)|rule out|rule (generic term)|decree (generic term)
+rule of cy pres|1
+(noun)|cy pres|cy pres doctrine|rule (generic term)|regulation (generic term)
+rule of evidence|1
+(noun)|rule (generic term)|prescript (generic term)
+rule of grammar|1
+(noun)|grammatical rule|rule (generic term)|linguistic rule (generic term)
+rule of law|1
+(noun)|order (generic term)
+rule of morphology|1
+(noun)|morphological rule|rule (generic term)|linguistic rule (generic term)
+rule of thumb|1
+(noun)|guidepost|guideline|rule (generic term)|regulation (generic term)
+rule out|3
+(verb)|preclude|close out|obviate (generic term)|rid of (generic term)|eliminate (generic term)
+(verb)|rule in|rule (generic term)|decree (generic term)
+(verb)|eliminate|winnow out|reject
+ruled|1
+(adj)|subordinate (similar term)
+ruler|2
+(noun)|rule|measuring stick (generic term)|measure (generic term)|measuring rod (generic term)
+(noun)|swayer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+rulership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+rules of order|1
+(noun)|order|parliamentary law|parliamentary procedure|rule (generic term)|prescript (generic term)
+ruling|2
+(adj)|regnant|reigning|powerful (similar term)
+(noun)|opinion|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+ruling class|1
+(noun)|people in power|upper class (generic term)|upper crust (generic term)
+ruly|1
+(adj)|tidy (similar term)
+rum|3
+(adj)|curious|funny|odd|peculiar|queer|rummy|singular|strange (similar term)|unusual (similar term)
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+(noun)|rummy|card game (generic term)|cards (generic term)
+rum-blossom|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum nose|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+rum baba|1
+(noun)|baba au rhum|baba (generic term)
+rum cherry|1
+(noun)|black cherry|black cherry tree|Prunus serotina|wild cherry (generic term)|wild cherry tree (generic term)
+rum cocktail|1
+(noun)|daiquiri|cocktail (generic term)
+rum nose|1
+(noun)|rhinophyma|hypertrophic rosacea|toper's nose|brandy nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+rum sling|1
+(noun)|sling (generic term)
+rumania|1
+(noun)|Romania|Roumania|Rumania|Balkan country (generic term)|Balkan nation (generic term)|Balkan state (generic term)
+rumanian|3
+(adj)|Romanian|Rumanian|Roumanian|Balkan country|Balkan nation|Balkan state (related term)
+(noun)|Romanian|Rumanian|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+(noun)|Romanian|Rumanian|European (generic term)
+rumansh|2
+(adj)|Romansh|Rumansh|Rhaeto-Romance|Rhaeto-Romanic (related term)
+(noun)|Romansh|Rumansh|Rhaeto-Romance (generic term)|Rhaeto-Romanic (generic term)
+rumba|4
+(noun)|rhumba|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|rhumba|folk dancing (generic term)|folk dance (generic term)
+(noun)|rhumba|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|rhumba|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+rumble|5
+(noun)|rumbling|grumble|grumbling|noise (generic term)
+(noun)|seat (generic term)
+(noun)|gang fight|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|grumble|sound (generic term)|go (generic term)
+(verb)|grumble|growl|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+rumble seat|1
+(noun)|seat (generic term)
+rumbling|2
+(adj)|grumbling|full (similar term)
+(noun)|rumble|grumble|grumbling|noise (generic term)
+rumbustious|1
+(adj)|boisterous|rambunctious|robustious|unruly|disorderly (similar term)
+rumen|1
+(noun)|first stomach|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+rumex|1
+(noun)|Rumex|genus Rumex|dicot genus (generic term)|magnoliopsid genus (generic term)
+rumex acetosa|1
+(noun)|sour dock|garden sorrel|Rumex acetosa|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+rumex acetosella|1
+(noun)|sheep sorrel|sheep's sorrel|Rumex acetosella|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+rumex obtusifolius|1
+(noun)|bitter dock|broad-leaved dock|yellow dock|Rumex obtusifolius|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+rumex scutatus|1
+(noun)|French sorrel|garden sorrel|Rumex scutatus|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+ruminant|2
+(adj)|animal order (related term)|nonruminant (antonym)
+(noun)|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+ruminantia|1
+(noun)|Ruminantia|suborder Ruminantia|animal order (generic term)
+ruminate|2
+(verb)|eat (generic term)
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+rumination|3
+(noun)|contemplation|reflection|reflexion|musing|thoughtfulness|consideration (generic term)
+(noun)|chew (generic term)|chewing (generic term)|mastication (generic term)|manduction (generic term)
+(noun)|vomit (generic term)|vomiting (generic term)|emesis (generic term)|regurgitation (generic term)|disgorgement (generic term)|puking (generic term)
+ruminative|1
+(adj)|brooding|broody|contemplative|meditative|musing|pensive|pondering|reflective|thoughtful (similar term)
+ruminator|1
+(noun)|muser|muller|ponderer|thinker (generic term)
+rummage|3
+(noun)|clutter (generic term)|jumble (generic term)|muddle (generic term)|fuddle (generic term)|mare's nest (generic term)|welter (generic term)|smother (generic term)
+(noun)|ransacking|search (generic term)|hunt (generic term)|hunting (generic term)
+(verb)|search (generic term)
+rummage sale|1
+(noun)|jumble sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+rummer|1
+(noun)|glass (generic term)|drinking glass (generic term)
+rummy|3
+(adj)|curious|funny|odd|peculiar|queer|rum|singular|strange (similar term)|unusual (similar term)
+(noun)|drunkard|drunk|sot|inebriate|wino|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|rum|card game (generic term)|cards (generic term)
+rumohra|1
+(noun)|Rumohra|genus Rumohra|fern genus (generic term)
+rumohra adiantiformis|1
+(noun)|leather fern|leatherleaf fern|ten-day fern|Rumohra adiantiformis|Polystichum adiantiformis|fern (generic term)
+rumor|2
+(noun)|rumour|hearsay|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(verb)|rumour|bruit|dish the dirt (generic term)|gossip (generic term)
+rumored|1
+(adj)|reported (similar term)
+rumormonger|1
+(noun)|gossip|gossiper|gossipmonger|rumourmonger|newsmonger|communicator (generic term)
+rumour|2
+(noun)|rumor|hearsay|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(verb)|rumor|bruit|dish the dirt (generic term)|gossip (generic term)
+rumourmonger|1
+(noun)|gossip|gossiper|gossipmonger|rumormonger|newsmonger|communicator (generic term)
+rump|3
+(noun)|hindquarters|croup|croupe|body part (generic term)
+(noun)|cut of beef (generic term)
+(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 (generic term)
+rump roast|1
+(noun)|roast (generic term)|joint (generic term)
+rump steak|1
+(noun)|beefsteak (generic term)
+rumpelstiltskin|1
+(noun)|Rumpelstiltskin|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+rumple|3
+(verb)|ruffle|ruffle up|mess up|disarrange (generic term)
+(verb)|pucker|cockle|crumple|knit|wrinkle (generic term)|ruckle (generic term)|crease (generic term)|crinkle (generic term)|scrunch (generic term)|scrunch up (generic term)|crisp (generic term)
+(verb)|crumple|wrinkle|crease|crinkle|fold (generic term)|fold up (generic term)
+rumpled|1
+(adj)|disheveled|dishevelled|frowzled|tousled|untidy (similar term)
+rumpus|2
+(noun)|commotion|din|ruction|ruckus|tumult|disturbance (generic term)
+(verb)|agitate (generic term)|foment (generic term)|stir up (generic term)
+rumpus room|1
+(noun)|playroom|game room|recreation room (generic term)|rec room (generic term)
+rumrunner|1
+(noun)|smuggler (generic term)|runner (generic term)|contrabandist (generic term)|moon curser (generic term)|moon-curser (generic term)
+run|55
+(noun)|tally|score (generic term)
+(noun)|test|trial|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|footrace|foot race|race (generic term)
+(noun)|streak|succession (generic term)
+(noun)|running|running play|running game|football play (generic term)
+(noun)|running|locomotion (generic term)|travel (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|liberty (generic term)
+(noun)|indefinite quantity (generic term)
+(noun)|rivulet|rill|runnel|streamlet|stream (generic term)|watercourse (generic term)
+(noun)|political campaign|campaign|race (generic term)
+(noun)|ladder|ravel|damage (generic term)|harm (generic term)|impairment (generic term)
+(noun)|discharge|outpouring|flow (generic term)|flowing (generic term)
+(noun)|sequence (generic term)|chronological sequence (generic term)|succession (generic term)|successiveness (generic term)|chronological succession (generic term)
+(noun)|trip (generic term)
+(verb)|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)|run around (related term)|run away (related term)
+(verb)|scat|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|go|pass|lead|extend|be (generic term)|extend to (related term)|run along (related term)
+(verb)|operate|direct (generic term)
+(verb)|go|be (generic term)
+(verb)|flow|feed|course|move (generic term)|flow from (related term)|run over (related term)
+(verb)|function|work|operate|go|malfunction (antonym)
+(verb)|range|be (generic term)
+(verb)|campaign|race (generic term)|run (generic term)
+(verb)|play
+(verb)|tend|be given|lean|incline|be (generic term)
+(verb)|execute|enforce (generic term)|implement (generic term)|apply (generic term)
+(verb)|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)|idle (antonym)
+(verb)|become (generic term)|go (generic term)|get (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|incur (generic term)
+(verb)|prevail|persist|die hard|endure|continue (generic term)
+(verb)|occur (generic term)
+(verb)|carry|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|carry through (generic term)|accomplish (generic term)|execute (generic term)|carry out (generic term)|action (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|guide|draw|pass|pass over (related term)|pass around (related term)
+(verb)|lead|pass (generic term)|make pass (generic term)
+(verb)|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|black market|trade (generic term)|merchandise (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|bleed|diffuse (generic term)|spread (generic term)|spread out (generic term)|fan out (generic term)
+(verb)|sail (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|run for|last (generic term)|endure (generic term)
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)
+(verb)|consort|accompany (generic term)
+(verb)|run (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|ply|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|hunt|hunt down|track down|capture (generic term)|catch (generic term)
+(verb)|race|compete (generic term)|vie (generic term)|contend (generic term)|run off (related term)
+(verb)|move|go|change (generic term)
+(verb)|melt|melt down|dissolve (generic term)|resolve (generic term)|break up (generic term)
+(verb)|ladder|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|unravel|disintegrate (generic term)
+run-down|2
+(adj)|creaky|decrepit|derelict|flea-bitten|woebegone|worn (similar term)
+(adj)|malfunctioning (similar term)|nonfunctional (similar term)
+run-in|1
+(noun)|quarrel|wrangle|row|words|dustup|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+run-of-the-mill|1
+(adj)|run-of-the-mine|mine run|unexceptional|ordinary (similar term)
+run-of-the-mine|1
+(adj)|run-of-the-mill|mine run|unexceptional|ordinary (similar term)
+run-on|1
+(adj)|end-stopped (antonym)
+run-on sentence|1
+(noun)|sentence (generic term)
+run-resistant|1
+(adj)|runproof|ladder-proof|impervious (similar term)|imperviable (similar term)
+run-through|1
+(noun)|rehearsal (generic term)|dry run (generic term)
+run-time|2
+(noun)|point (generic term)|point in time (generic term)
+(noun)|run (generic term)
+run-time error|1
+(noun)|semantic error|runtime error|software error (generic term)|programming error (generic term)
+run-up|2
+(noun)|runup|increase (generic term)
+(noun)|approach (generic term)|approaching (generic term)|coming (generic term)
+run a risk|1
+(verb)|gamble|chance|risk|hazard|take chances|adventure|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+run across|1
+(verb)|meet|run into|encounter|come across|see
+run afoul|1
+(verb)|conflict|infringe|contravene|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+run aground|2
+(verb)|ground|land (generic term)
+(verb)|ground|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+run along|1
+(verb)|line|lie (generic term)
+run around|1
+(verb)|frolic|lark|rollick|skylark|disport|sport|cavort|gambol|frisk|romp|lark about|play (generic term)
+run away|2
+(verb)|scat|run|scarper|turn tail|lam|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|escape (generic term)|get away (generic term)|break loose (generic term)
+run bases|1
+(verb)|run (generic term)
+run batted in|1
+(noun)|rbi|run (generic term)|tally (generic term)
+run by|1
+(verb)|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+run down|7
+(verb)|check out|pursue (generic term)|follow up on (generic term)|act on (generic term)
+(verb)|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|run over|injure (generic term)|wound (generic term)
+(verb)|poop out|peter out|run out|conk out|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+(verb)|scan|skim|rake|glance over|examine (generic term)|see (generic term)
+(verb)|exhaust|play out|sap|tire|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+run dry|1
+(verb)|dry out|dry (generic term)|dry out (generic term)
+run for|1
+(verb)|run|last (generic term)|endure (generic term)
+run into|4
+(verb)|encounter|be (generic term)
+(verb)|bump into|jar against|butt against|knock against|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|hit|strike|impinge on|collide with|touch (generic term)|miss (antonym)
+(verb)|meet|encounter|run across|come across|see
+run low|1
+(verb)|run short|go|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+run off|7
+(verb)|abscond|bolt|absquatulate|decamp|go off|make off|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|run out|bolt|bolt out|beetle off|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|chase away|drive out|turn back|drive away|dispel|drive off|move (generic term)|displace (generic term)
+(verb)|elope|flee (generic term)|fly (generic term)|take flight (generic term)
+(verb)|waste|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|photocopy|xerox|reproduce (generic term)
+(verb)|compete (generic term)|vie (generic term)|contend (generic term)
+run on|2
+(verb)|speak (generic term)|talk (generic term)
+(verb)|keep going|continue (generic term)|go on (generic term)|proceed (generic term)|go along (generic term)|keep (generic term)
+run out|8
+(verb)|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|drain|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|run off|bolt|bolt out|beetle off|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|expire|discontinue (generic term)
+(verb)|spill|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|fail|give out
+(verb)|poop out|peter out|run down|conk out|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+run over|2
+(verb)|run down|injure (generic term)|wound (generic term)
+(verb)|overflow|overrun|well over|brim over|spill (generic term)|run out (generic term)
+run roughshod|1
+(verb)|ride roughshod|treat (generic term)|handle (generic term)|do by (generic term)
+run short|1
+(verb)|run low|go|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+run through|2
+(verb)|work through|go through|work (generic term)
+(verb)|consume|eat up|use up|eat|deplete|exhaust|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+run up|5
+(verb)|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|hoist|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|sew|sew together|stitch|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|chalk up|owe (generic term)
+(verb)|sew (generic term)|tailor (generic term)|tailor-make (generic term)
+runabout|1
+(noun)|roadster|two-seater|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+runaway|3
+(adj)|uncontrolled (similar term)
+(noun)|blowout|romp|laugher|shoo-in|walkaway|victory (generic term)|triumph (generic term)
+(noun)|fugitive|fleer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+runaway robin|1
+(noun)|ground ivy|alehoof|field balm|gill-over-the-ground|Glechoma hederaceae|Nepeta hederaceae|vine (generic term)
+runch|1
+(noun)|jointed charlock|wild radish|wild rape|Raphanus raphanistrum|weed (generic term)
+runcible spoon|1
+(noun)|spoon (generic term)
+runcinate|1
+(adj)|rough (similar term)
+runcinate leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+rundle|1
+(noun)|spoke|rung|crosspiece (generic term)
+rundown|1
+(noun)|summation|summing up|summary (generic term)|sum-up (generic term)
+rundstedt|1
+(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal (generic term)
+rune|1
+(noun)|runic letter|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+rung|2
+(noun)|round|stave|crosspiece (generic term)
+(noun)|rundle|spoke|crosspiece (generic term)
+runic|1
+(adj)|character|grapheme|graphic symbol (related term)
+runic letter|1
+(noun)|rune|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+runnel|1
+(noun)|rivulet|rill|run|streamlet|stream (generic term)|watercourse (generic term)
+runner|9
+(noun)|smuggler|contrabandist|moon curser|moon-curser|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+(noun)|messenger (generic term)|courier (generic term)
+(noun)|base runner|ballplayer (generic term)|baseball player (generic term)
+(noun)|stolon|offset|plant organ (generic term)
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+(noun)|device (generic term)
+(noun)|blue runner|Caranx crysos|jack (generic term)
+runner-up|1
+(noun)|second best|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+runner-up finish|1
+(noun)|second-place finish|finish (generic term)
+runner bean|2
+(noun)|scarlet runner|scarlet runner bean|Dutch case-knife bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+(noun)|scarlet runner|scarlet runner bean|English runner bean|green bean (generic term)
+runniness|1
+(noun)|fluidity|fluidness|liquidity|liquidness|thinness (generic term)
+running|12
+(adj)|moving (similar term)
+(adj)|gushing (similar term)|pouring (similar term)|jetting (similar term)|spouting (similar term)|spurting (similar term)|squirting (similar term)|standing (antonym)
+(adj)|continual (similar term)
+(adj)|passing (antonym)
+(adj)|flying (similar term)|standing (antonym)
+(adj)|linear|lengthwise (similar term)|lengthways (similar term)
+(adj)|operative|functional|working|functioning (similar term)
+(noun)|run|running play|running game|football play (generic term)
+(noun)|run|locomotion (generic term)|travel (generic term)
+(noun)|operation (generic term)
+(noun)|administration (generic term)|disposal (generic term)
+(noun)|track|track and field (generic term)
+running away|1
+(noun)|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+running back|1
+(noun)|back (generic term)
+running blackberry|1
+(noun)|dewberry|dewberry bush|blackberry (generic term)|blackberry bush (generic term)
+running board|1
+(noun)|footboard (generic term)
+running game|1
+(noun)|run|running|running play|football play (generic term)
+running hand|1
+(noun)|longhand|cursive|cursive script|handwriting (generic term)|hand (generic term)|script (generic term)
+running head|1
+(noun)|running headline|heading (generic term)|header (generic term)|head (generic term)
+running headline|1
+(noun)|running head|heading (generic term)|header (generic term)|head (generic term)
+running light|1
+(noun)|sidelight|light (generic term)|light source (generic term)
+running mate|1
+(noun)|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+running noose|1
+(noun)|noose|slip noose|loop (generic term)
+running pine|1
+(noun)|Lycopodium clavitum|ground pine (generic term)|Christmas green (generic term)
+running play|1
+(noun)|run|running|running game|football play (generic term)
+running pop|1
+(noun)|love-in-a-mist|wild water lemon|Passiflora foetida|passionflower (generic term)|passionflower vine (generic term)
+running postman|1
+(noun)|scarlet runner|Kennedia prostrata|coral pea (generic term)
+running shoe|1
+(noun)|shoe (generic term)
+running start|2
+(noun)|flying start|racing start (generic term)
+(noun)|flying start|start (generic term)
+running stitch|1
+(noun)|stitch (generic term)
+running suit|1
+(noun)|sportswear (generic term)|athletic wear (generic term)|activewear (generic term)
+running time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+running title|1
+(noun)|running head (generic term)|running headline (generic term)
+runny|1
+(adj)|fluid|liquid (similar term)
+runoff|2
+(noun)|overflow|overspill|flow (generic term)|flowing (generic term)
+(noun)|election (generic term)
+runproof|1
+(adj)|ladder-proof|run-resistant|impervious (similar term)|imperviable (similar term)
+runt|1
+(noun)|shrimp|peewee|half-pint|small person (generic term)
+runtime error|1
+(noun)|semantic error|run-time error|software error (generic term)|programming error (generic term)
+runtiness|1
+(noun)|puniness|stuntedness|smallness (generic term)|littleness (generic term)
+runty|2
+(adj)|pint-size|pint-sized|sawed-off|sawn-off|short (similar term)
+(adj)|puny|shrimpy|small (similar term)|little (similar term)
+runup|1
+(noun)|run-up|increase (generic term)
+runway|2
+(noun)|platform (generic term)
+(noun)|paved surface (generic term)
+runyon|1
+(noun)|Runyon|Damon Runyon|Alfred Damon Runyon|writer (generic term)|author (generic term)
+rupee|6
+(noun)|Sri Lanka rupee|Sri Lankan monetary unit (generic term)
+(noun)|Seychelles rupee|Seychelles monetary unit (generic term)
+(noun)|Nepalese rupee|Nepalese monetary unit (generic term)
+(noun)|Mauritian rupee|Mauritian monetary unit (generic term)
+(noun)|Pakistani rupee|Pakistani monetary unit (generic term)
+(noun)|Indian rupee|Indian monetary unit (generic term)
+rupert|1
+(noun)|Rupert|Prince Rupert|prince (generic term)
+rupert brooke|1
+(noun)|Brooke|Rupert Brooke|poet (generic term)
+rupert murdoch|1
+(noun)|Murdoch|Rupert Murdoch|Keith Rupert Murdoch|publisher (generic term)
+rupestral|1
+(adj)|rupicolous|material|stuff (related term)
+rupestral plant|1
+(noun)|rupestrine plant|rupicolous plant|saxicolous plant|rock plant (generic term)
+rupestrine plant|1
+(noun)|rupestral plant|rupicolous plant|saxicolous plant|rock plant (generic term)
+rupiah|1
+(noun)|Indonesian monetary unit (generic term)
+rupicapra|1
+(noun)|Rupicapra|genus Rupicapra|mammal genus (generic term)
+rupicapra rupicapra|1
+(noun)|chamois|Rupicapra rupicapra|goat antelope (generic term)
+rupicola|1
+(noun)|Rupicola|genus Rupicola|bird genus (generic term)
+rupicola peruviana|1
+(noun)|cock of the rock|Rupicola peruviana|cotinga (generic term)|chatterer (generic term)
+rupicola rupicola|1
+(noun)|cock of the rock|Rupicola rupicola|cotinga (generic term)|chatterer (generic term)
+rupicolous|1
+(adj)|rupestral|material|stuff (related term)
+rupicolous plant|1
+(noun)|rupestral plant|rupestrine plant|saxicolous plant|rock plant (generic term)
+ruptiliocarpon|1
+(noun)|Ruptiliocarpon|genus Ruptiliocarpon|rosid dicot genus (generic term)
+ruptiliocarpon caracolito|1
+(noun)|caracolito|Ruptiliocarpon caracolito|tree (generic term)
+rupture|4
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|breach|break|severance|rift|falling out|separation (generic term)|breakup (generic term)|detachment (generic term)
+(noun)|breakage (generic term)|break (generic term)|breaking (generic term)
+(verb)|tear|snap|bust|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|tear up (related term)|tear apart (related term)|tear down (related term)
+ruptured|1
+(adj)|burst|busted|damaged (similar term)
+ruptured intervertebral disc|1
+(noun)|herniated disc|slipped disc|rupture (generic term)
+rupturewort|1
+(noun)|Hernaria glabra|groundcover (generic term)|ground cover (generic term)
+rural|2
+(adj)|agrarian (similar term)|agricultural (similar term)|farming (similar term)|agrestic (similar term)|rustic (similar term)|arcadian (similar term)|bucolic (similar term)|pastoral (similar term)|rustic (similar term)|campestral (similar term)|countrified (similar term)|countryfied (similar term)|rustic (similar term)|country-bred (similar term)|country-style (similar term)|cracker-barrel (similar term)|folksy (similar term)|homespun (similar term)|hobnailed (similar term)|urban (antonym)
+(adj)|geographical area|geographic area|geographical region|geographic region (related term)
+rural area|1
+(noun)|country|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|urban area (antonym)
+ruralism|2
+(noun)|rusticism|idiom (generic term)|idiomatic expression (generic term)|phrasal idiom (generic term)|set phrase (generic term)|phrase (generic term)
+(noun)|rurality|characteristic (generic term)|trait (generic term)
+ruralist|2
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|countryman|rustic (generic term)
+rurality|1
+(noun)|ruralism|characteristic (generic term)|trait (generic term)
+ruritania|1
+(noun)|Ruritania|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+ruritanian|2
+(adj)|Ruritanian|imaginary place|mythical place|fictitious place (related term)
+(noun)|Ruritanian|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+rus|1
+(noun)|Rus|country (generic term)|state (generic term)|land (generic term)
+ruscaceae|1
+(noun)|Ruscaceae|family Ruscaceae|liliid monocot family (generic term)
+ruscus|1
+(noun)|Ruscus|genus Ruscus|liliid monocot genus (generic term)
+ruscus aculeatus|1
+(noun)|butcher's broom|Ruscus aculeatus|shrub (generic term)|bush (generic term)
+ruse|1
+(noun)|artifice|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+rush|16
+(adj)|first-come-first-serve|unreserved (similar term)
+(adj)|rushed|hurried (similar term)
+(noun)|haste|hurry|rushing|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|spate|surge|upsurge|flow (generic term)|flowing (generic term)
+(noun)|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|Rush|Benjamin Rush|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|American Revolutionary leader (generic term)
+(noun)|bang|boot|charge|flush|thrill|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|outburst (generic term)|burst (generic term)|flare-up (generic term)
+(noun)|rushing|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(verb)|hotfoot|hasten|hie|speed|race|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|hurry|urge (generic term)|urge on (generic term)|press (generic term)|exhort (generic term)|delay (antonym)
+(verb)|hasten|hurry|look sharp|festinate|act (generic term)|move (generic term)
+(verb)|run (generic term)
+(verb)|race|move (generic term)|displace (generic term)
+(verb)|induce|stimulate|hasten|effect (generic term)|effectuate (generic term)|set up (generic term)
+rush-grass|1
+(noun)|rush grass|grass (generic term)
+rush along|1
+(verb)|rush|hotfoot|hasten|hie|speed|race|pelt along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+rush aster|1
+(noun)|aster (generic term)
+rush away|1
+(verb)|rush off|leave (generic term)|go forth (generic term)|go away (generic term)
+rush candle|1
+(noun)|rushlight|candle (generic term)|taper (generic term)|wax light (generic term)
+rush family|1
+(noun)|Juncaceae|family Juncaceae|monocot family (generic term)|liliopsid family (generic term)
+rush grass|1
+(noun)|rush-grass|grass (generic term)
+rush hour|1
+(noun)|hour (generic term)|time of day (generic term)
+rush nut|1
+(noun)|chufa|yellow nutgrass|earth almond|ground almond|Cyperus esculentus|sedge (generic term)
+rush off|1
+(verb)|rush away|leave (generic term)|go forth (generic term)|go away (generic term)
+rush out|1
+(verb)|leap out|sally out|burst forth|appear (generic term)
+rush rose|1
+(noun)|Helianthemum scoparium|helianthemum (generic term)|sunrose (generic term)|sun rose (generic term)
+rushdie|1
+(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer (generic term)|author (generic term)
+rushed|1
+(adj)|rush|hurried (similar term)
+rusher|3
+(noun)|ball carrier (generic term)
+(noun)|migrant (generic term)|migrator (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+rushing|2
+(noun)|rush|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(noun)|haste|hurry|rush|motion (generic term)|movement (generic term)|move (generic term)
+rushlight|1
+(noun)|rush candle|candle (generic term)|taper (generic term)|wax light (generic term)
+rushlike|1
+(adj)|sedgelike|grassy (similar term)
+rushmore|1
+(noun)|Rushmore|Mount Rushmore|Mt. Rushmore|mountain peak (generic term)
+rushy|1
+(adj)|wooded (similar term)
+rusk|1
+(noun)|zwieback|Brussels biscuit|twice-baked bread|toast (generic term)
+ruskin|1
+(noun)|Ruskin|John Ruskin|art critic (generic term)
+russel crouse|1
+(noun)|Crouse|Russel Crouse|dramatist (generic term)|playwright (generic term)
+russell|7
+(noun)|Russell|Charles Taze Russell|religious leader (generic term)
+(noun)|Russell|Ken Russell|Henry Kenneth Alfred Russell|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Russell|Bill Russell|William Felton Russell|center (generic term)
+(noun)|Russell|Lillian Russell|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Russell|Henry Russell|Henry Norris Russell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Russell|George William Russell|A.E.|writer (generic term)|author (generic term)
+(noun)|Russell|Bertrand Russell|Bertrand Arthur William Russell|Earl Russell|logician (generic term)|logistician (generic term)|philosopher (generic term)
+russell's body|1
+(noun)|Russell's body|cancer body|inclusion body (generic term)|cellular inclusion (generic term)|inclusion (generic term)
+russet|2
+(adj)|chromatic (similar term)
+(noun)|homespun (generic term)|homespun fabric (generic term)
+russet scab|1
+(noun)|little potato|rosette|stem canker|rhizoctinia disease (generic term)
+russia|4
+(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country (generic term)|state (generic term)|land (generic term)
+(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic (generic term)
+(noun)|Russia|empire (generic term)|imperium (generic term)
+(noun)|Russia|Russian Federation|country (generic term)|state (generic term)|land (generic term)
+russia leather|1
+(noun)|Russia leather|leather (generic term)
+russian|3
+(adj)|Russian|country|state|land (related term)
+(noun)|Russian|native (generic term)|indigen (generic term)|indigene (generic term)
+(noun)|Russian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+russian-speaking|1
+(adj)|Russian-speaking|communicative (similar term)|communicatory (similar term)
+russian agency|1
+(noun)|Russian agency|administrative unit (generic term)|administrative body (generic term)
+russian almond|1
+(noun)|Russian almond|dwarf Russian almond|Prunus tenella|almond tree (generic term)
+russian bank|1
+(noun)|Russian bank|crapette|solitaire (generic term)|patience (generic term)
+russian cactus|1
+(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub (generic term)|bush (generic term)
+russian capital|1
+(noun)|Moscow|capital of the Russian Federation|Russian capital|national capital (generic term)
+russian dandelion|1
+(noun)|Russian dandelion|kok-saghyz|kok-sagyz|Taraxacum kok-saghyz|dandelion (generic term)|blowball (generic term)
+russian dressing|1
+(noun)|Russian dressing|Russian mayonnaise|dressing (generic term)|salad dressing (generic term)
+russian federation|1
+(noun)|Russia|Russian Federation|country (generic term)|state (generic term)|land (generic term)
+russian mayonnaise|1
+(noun)|Russian dressing|Russian mayonnaise|dressing (generic term)|salad dressing (generic term)
+russian monetary unit|1
+(noun)|Russian monetary unit|monetary unit (generic term)
+russian olive|1
+(noun)|Russian olive|silver berry|Elaeagnus augustifolia|oleaster (generic term)
+russian orthodox|1
+(adj)|Orthodox|Eastern Orthodox|Russian Orthodox|Greek Orthodox|Catholic Church (related term)
+russian orthodox church|1
+(noun)|Russian Orthodox Church|Orthodox Church (generic term)|Orthodox Catholic Church (generic term)|Eastern Orthodox Church (generic term)|Eastern Church (generic term)|Eastern Orthodox (generic term)
+russian revolution|2
+(noun)|Russian Revolution|October Revolution|coup d'etat (generic term)|coup (generic term)|putsch (generic term)|takeover (generic term)
+(noun)|Russian Revolution|February Revolution|revolution (generic term)
+russian river|1
+(noun)|Russian River|river (generic term)
+russian roulette|1
+(noun)|Russian roulette|stunt (generic term)
+russian soviet federated socialist republic|1
+(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic (generic term)
+russian thistle|1
+(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub (generic term)|bush (generic term)
+russian tumbleweed|1
+(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub (generic term)|bush (generic term)
+russian vine|1
+(noun)|silver lace vine|China fleece vine|Russian vine|Polygonum aubertii|vine (generic term)
+russian wolfhound|1
+(noun)|borzoi|Russian wolfhound|wolfhound (generic term)
+russo-japanese war|1
+(noun)|Russo-Japanese War|war (generic term)|warfare (generic term)
+russula|1
+(noun)|Russula|genus Russula|fungus genus (generic term)
+russulaceae|1
+(noun)|Russulaceae|family Russulaceae|fungus family (generic term)
+rust|8
+(adj)|rusty|rust-brown|chromatic (similar term)
+(noun)|ferric oxide (generic term)
+(noun)|plant disease (generic term)
+(noun)|rusting|corrosion (generic term)|corroding (generic term)|erosion (generic term)|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+(noun)|rust fungus|fungus (generic term)
+(verb)|corrode|decay (generic term)|crumble (generic term)|delapidate (generic term)
+(verb)|corrode|eat|damage (generic term)
+(verb)|oxidise (generic term)|oxidize (generic term)|oxidate (generic term)
+rust-brown|1
+(adj)|rust|rusty|chromatic (similar term)
+rust-colored|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+rust-free|1
+(adj)|unrusted|rustless (similar term)
+rust-red|1
+(adj)|rusty-red|chromatic (similar term)
+rust-resistant|1
+(adj)|rustless (similar term)
+rust fungus|1
+(noun)|rust|fungus (generic term)
+rust inhibitor|1
+(noun)|antioxidant (generic term)
+rust mite|1
+(noun)|mite (generic term)
+rustbelt|1
+(noun)|Rustbelt|urban area (generic term)|populated area (generic term)
+rusted|1
+(adj)|rusty (similar term)|rustless (antonym)
+rustic|5
+(adj)|countrified|countryfied|rural (similar term)
+(adj)|bumpkinly|hick|unsophisticated|provincial (similar term)
+(adj)|arcadian|bucolic|pastoral|rural (similar term)
+(adj)|agrestic|rural (similar term)
+(noun)|commoner (generic term)|common man (generic term)|common person (generic term)
+rusticate|5
+(verb)|reside (generic term)|shack (generic term)|domicile (generic term)|domiciliate (generic term)
+(verb)|banish (generic term)|ban (generic term)
+(verb)|send down|suspend (generic term)|debar (generic term)
+(verb)|rebate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+rustication|5
+(noun)|condition (generic term)|status (generic term)
+(noun)|construction (generic term)|building (generic term)
+(noun)|retirement (generic term)
+(noun)|suspension (generic term)|temporary removal (generic term)
+(noun)|banishment (generic term)|proscription (generic term)
+rusticism|1
+(noun)|ruralism|idiom (generic term)|idiomatic expression (generic term)|phrasal idiom (generic term)|set phrase (generic term)|phrase (generic term)
+rusticity|1
+(noun)|gaucherie|awkwardness (generic term)|clumsiness (generic term)|gracelessness (generic term)|stiffness (generic term)|urbanity (antonym)
+rustiness|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|awkwardness (generic term)|clumsiness (generic term)|ineptness (generic term)|ineptitude (generic term)|maladroitness (generic term)|slowness (generic term)
+rusting|1
+(noun)|rust|corrosion (generic term)|corroding (generic term)|erosion (generic term)|oxidation (generic term)|oxidization (generic term)|oxidisation (generic term)
+rustle|3
+(noun)|rustling|whisper|whispering|noise (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|lift|steal (generic term)
+rustler|1
+(noun)|cattle thief|thief (generic term)|stealer (generic term)
+rustless|1
+(adj)|rust-free (similar term)|unrusted (similar term)|rustproof (similar term)|rustproofed (similar term)|rust-resistant (similar term)|undercoated (similar term)|undersealed (similar term)|rusted (antonym)
+rustling|3
+(adj)|murmurous|soughing|susurrous|soft (similar term)
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+(noun)|rustle|whisper|whispering|noise (generic term)
+rustproof|1
+(adj)|rustproofed|rustless (similar term)
+rustproofed|1
+(adj)|rustproof|rustless (similar term)
+rusty|4
+(adj)|rusted (similar term)
+(adj)|rust|rust-brown|chromatic (similar term)
+(adj)|out of practice|unskilled (similar term)
+(adj)|hoary|old (similar term)
+rusty-brown|1
+(adj)|chromatic (similar term)
+rusty-red|1
+(adj)|rust-red|chromatic (similar term)
+rusty blackbird|1
+(noun)|rusty grackle|Euphagus carilonus|New World blackbird (generic term)|blackbird (generic term)
+rusty grackle|1
+(noun)|rusty blackbird|Euphagus carilonus|New World blackbird (generic term)|blackbird (generic term)
+rusty rig|1
+(noun)|Port Jackson fig|little-leaf fig|Botany Bay fig|Ficus rubiginosa|fig tree (generic term)
+rusty woodsia|1
+(noun)|fragrant woodsia|oblong woodsia|Woodsia ilvensis|woodsia (generic term)
+rut|5
+(noun)|groove (generic term)|channel (generic term)
+(noun)|groove|routine (generic term)|modus operandi (generic term)
+(noun)|estrus|oestrus|heat|physiological state (generic term)|physiological condition (generic term)|anestrus (antonym)
+(verb)|be (generic term)
+(verb)|furrow|groove|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+ruta|1
+(noun)|Ruta|genus Ruta|rosid dicot genus (generic term)
+ruta graveolens|1
+(noun)|rue|herb of grace|Ruta graveolens|herb (generic term)|herbaceous plant (generic term)
+rutabaga|2
+(noun)|swede|swedish turnip|yellow turnip|turnip (generic term)
+(noun)|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant (generic term)
+rutabaga plant|1
+(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|Brassica napus napobrassica|turnip plant (generic term)
+rutaceae|1
+(noun)|Rutaceae|family Rutaceae|rue family|rosid dicot family (generic term)
+ruth|4
+(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer (generic term)|baseball player (generic term)
+(noun)|Ruth|wife (generic term)|married woman (generic term)
+(noun)|commiseration|pity|pathos|sympathy (generic term)|fellow feeling (generic term)
+(noun)|Ruth|Book of Ruth|book (generic term)
+ruth benedict|1
+(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist (generic term)
+ruth fulton|1
+(noun)|Benedict|Ruth Benedict|Ruth Fulton|anthropologist (generic term)
+ruth saint denis|1
+(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+ruth st. denis|1
+(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+ruthenium|1
+(noun)|Ru|atomic number 44|metallic element (generic term)|metal (generic term)
+rutherford|3
+(noun)|radioactivity unit (generic term)
+(noun)|Rutherford|Daniel Rutherford|chemist (generic term)
+(noun)|Rutherford|Ernest Rutherford|First Baron Rutherford|First Baron Rutherford of Nelson|physicist (generic term)
+rutherford atom|1
+(noun)|Rutherford atom|atomic theory (generic term)
+rutherford b. hayes|1
+(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+rutherford birchard hayes|1
+(noun)|Hayes|Rutherford B. Hayes|Rutherford Birchard Hayes|President Hayes|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+rutherfordium|1
+(noun)|Rf|unnilquadium|Unq|element 104|atomic number 104|chemical element (generic term)|element (generic term)
+ruthful|1
+(adj)|contrite|remorseful|rueful|penitent (similar term)|repentant (similar term)
+ruthfulness|1
+(noun)|mournfulness|sorrowfulness|sorrow (generic term)
+ruthless|1
+(adj)|pitiless|remorseless|unpitying|merciless (similar term)|unmerciful (similar term)
+ruthlessness|2
+(noun)|pitilessness|mercilessness (generic term)|unmercifulness (generic term)
+(noun)|cruelty|mercilessness|pitilessness|heartlessness (generic term)|coldheartedness (generic term)|hardheartedness (generic term)
+rutile|1
+(noun)|mineral (generic term)
+rutilus|1
+(noun)|Rutilus|genus Rutilus|fish genus (generic term)
+rutilus rutilus|1
+(noun)|roach|Rutilus rutilus|cyprinid (generic term)|cyprinid fish (generic term)
+rutland|1
+(noun)|Rutland|town (generic term)
+rutledge|1
+(noun)|Rutledge|John Rutledge|chief justice (generic term)
+rutted|1
+(adj)|rutty|furrowed (similar term)
+ruttish|1
+(adj)|aroused|horny|randy|steamy|turned on|sexy (similar term)
+rutty|1
+(adj)|rutted|furrowed (similar term)
+ruvettus pretiosus|1
+(noun)|oilfish|Ruvettus pretiosus|gempylid (generic term)
+rv|1
+(noun)|recreational vehicle|RV|R.V.|self-propelled vehicle (generic term)
+rwanda|1
+(noun)|Rwanda|Rwandese Republic|Ruanda|African country (generic term)|African nation (generic term)
+rwanda franc|1
+(noun)|Rwanda franc|franc (generic term)
+rwandan|2
+(adj)|Rwandan|Ruandan|African country|African nation (related term)
+(noun)|Rwandan|African (generic term)
+rwandese republic|1
+(noun)|Rwanda|Rwandese Republic|Ruanda|African country (generic term)|African nation (generic term)
+rya|1
+(noun)|rya rug|shag rug (generic term)
+rya rug|1
+(noun)|rya|shag rug (generic term)
+rydberg|1
+(noun)|rydberg constant|rydberg unit|wave number (generic term)
+rydberg's penstemon|1
+(noun)|Rydberg's penstemon|Penstemon rydbergii|wildflower (generic term)|wild flower (generic term)
+rydberg constant|1
+(noun)|rydberg|rydberg unit|wave number (generic term)
+rydberg unit|1
+(noun)|rydberg|rydberg constant|wave number (generic term)
+rye|3
+(noun)|grain (generic term)|caryopsis (generic term)
+(noun)|Secale cereale|cereal (generic term)|cereal grass (generic term)
+(noun)|rye whiskey|rye whisky|whiskey (generic term)|whisky (generic term)
+rye bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+rye ergot|1
+(noun)|ergot (generic term)|Claviceps purpurea (generic term)
+rye grass|1
+(noun)|ryegrass|grass (generic term)
+rye whiskey|1
+(noun)|rye|rye whisky|whiskey (generic term)|whisky (generic term)
+rye whisky|1
+(noun)|rye|rye whiskey|whiskey (generic term)|whisky (generic term)
+ryegrass|1
+(noun)|rye grass|grass (generic term)
+rynchopidae|1
+(noun)|Rynchopidae|family Rynchopidae|bird family (generic term)
+rynchops|1
+(noun)|Rynchops|genus Rynchops|bird genus (generic term)
+rypticus|1
+(noun)|Rypticus|genus Rypticus|fish genus (generic term)
+ryukyu islands|1
+(noun)|Ryukyu Islands|archipelago (generic term)
+ryukyuan|2
+(noun)|Ryukyuan|Japanese (generic term)|Nipponese (generic term)
+(noun)|Ryukyuan|Japanese (generic term)
+s|6
+(noun)|second|sec|time unit (generic term)|unit of time (generic term)
+(noun)|sulfur|S|sulphur|atomic number 16|chemical element (generic term)|element (generic term)
+(noun)|south|due south|southward|S|cardinal compass point (generic term)
+(noun)|mho|siemens|reciprocal ohm|S|conductance unit (generic term)
+(noun)|S|letter s|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|randomness|entropy|S|physical property (generic term)
+s-shape|1
+(noun)|S-shape|curve (generic term)|curved shape (generic term)
+s-shaped|1
+(adj)|formed (similar term)
+s. s. van dine|1
+(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer (generic term)|author (generic term)
+s. smith stevens|1
+(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist (generic term)
+s.t.p.|1
+(noun)|STP|standard temperature (generic term)|standard atmosphere (generic term)|atmosphere (generic term)|atm (generic term)|standard pressure (generic term)
+s.u.v.|1
+(noun)|sport utility|sport utility vehicle|S.U.V.|SUV|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+s/n|1
+(noun)|signal-to-noise ratio|signal-to-noise|signal/noise ratio|signal/noise|S/N|ratio (generic term)
+s wrench|1
+(noun)|S wrench|open-end wrench (generic term)|tappet wrench (generic term)
+sa|1
+(noun)|SA|Sturmarbeiteilung|Storm Troops|militia (generic term)|reserves (generic term)
+sa node|1
+(noun)|pacemaker|cardiac pacemaker|sinoatrial node|SA node|cardiac muscle (generic term)|heart muscle (generic term)
+saale|1
+(noun)|Saale|Saale River|river (generic term)
+saale glaciation|1
+(noun)|Saale glaciation|glaciation (generic term)
+saale river|1
+(noun)|Saale|Saale River|river (generic term)
+saame|2
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+(noun)|Lapp|Sami|Saami|Same|Saame|Lappic (generic term)|Lappish (generic term)
+saami|2
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+(noun)|Lapp|Sami|Saami|Same|Saame|Lappic (generic term)|Lappish (generic term)
+saarinen|2
+(noun)|Saarinen|Eliel Saarinen|architect (generic term)|designer (generic term)
+(noun)|Saarinen|Eero Saarinen|architect (generic term)|designer (generic term)
+saba|1
+(noun)|Saba|island (generic term)
+sabah|1
+(noun)|Sabah|North Borneo|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+sabahan|2
+(adj)|Sabahan|district|territory|territorial dominion|dominion (related term)
+(noun)|Sabahan|Malaysian (generic term)
+sabal|1
+(noun)|Sabal|genus Sabal|monocot genus (generic term)|liliopsid genus (generic term)
+sabal palmetto|1
+(noun)|cabbage palmetto|cabbage palm|Sabal palmetto|palmetto (generic term)
+sabaoth|1
+(noun)|Sabaoth|host (generic term)|legion (generic term)
+sabaton|1
+(noun)|solleret|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+sabayon|1
+(noun)|zabaglione|dessert (generic term)|sweet (generic term)|afters (generic term)
+sabbat|1
+(noun)|witches' Sabbath|assembly (generic term)
+sabbatarian|2
+(adj)|Sabbatarian|rest day|day of rest (related term)
+(noun)|Sabbatarian|religious person (generic term)
+sabbath|1
+(noun)|Sabbath|rest day (generic term)|day of rest (generic term)
+sabbath school|1
+(noun)|Sunday school|Sabbath school|school (generic term)
+sabbatia|1
+(noun)|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sabbatia angularis|1
+(noun)|marsh pink|rose pink|bitter floom|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+sabbatia campestris|1
+(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia (generic term)
+sabbatia stellaris|1
+(noun)|marsh pink|rose pink|bitter floom|American centaury|Sabbatia stellaris|Sabbatia Angularis|sabbatia (generic term)
+sabbatic|1
+(adj)|sabbatical|rest day|day of rest (related term)
+sabbatical|3
+(adj)|sabbatic|rest day|day of rest (related term)
+(adj)|leave|leave of absence (related term)
+(noun)|sabbatical leave|leave (generic term)|leave of absence (generic term)
+sabbatical leave|1
+(noun)|sabbatical|leave (generic term)|leave of absence (generic term)
+sabbatical year|1
+(noun)|sabbatical (generic term)|sabbatical leave (generic term)
+sabbatum|1
+(noun)|Saturday|Sabbatum|Sat|weekday (generic term)
+sabellian|1
+(noun)|Sabellian|Osco-Umbrian (generic term)
+saber|4
+(noun)|sabre|fencing sword (generic term)
+(noun)|cavalry sword|sabre|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+(verb)|sabre|cut (generic term)
+(verb)|sabre|kill (generic term)
+saber-toothed|1
+(adj)|sabertoothed|sabre-toothed|toothed (similar term)
+saber-toothed tiger|1
+(noun)|sabertooth|big cat (generic term)|cat (generic term)
+saber rattling|1
+(noun)|sabre rattling|military action (generic term)|action (generic term)
+saber saw|1
+(noun)|jigsaw|reciprocating saw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+sabertooth|1
+(noun)|saber-toothed tiger|big cat (generic term)|cat (generic term)
+sabertoothed|1
+(adj)|saber-toothed|sabre-toothed|toothed (similar term)
+sabicu|2
+(noun)|sabicu wood|wood (generic term)
+(noun)|Lysiloma sabicu|shrub (generic term)|bush (generic term)
+sabicu wood|1
+(noun)|sabicu|wood (generic term)
+sabin|2
+(noun)|absorption unit (generic term)
+(noun)|Sabin|Albert Sabin|Albert Bruce Sabin|microbiologist (generic term)
+sabin vaccine|1
+(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine (generic term)
+sabine|3
+(adj)|Sabine|Italian (related term)
+(noun)|Sabine|Sabine River|river (generic term)
+(noun)|Sabine|Italian (generic term)
+sabine pine|1
+(noun)|Torrey pine|Torrey's pine|soledad pine|grey-leaf pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+sabine river|1
+(noun)|Sabine|Sabine River|river (generic term)
+sabinea|1
+(noun)|Sabinea|genus Sabinea|rosid dicot genus (generic term)
+sabinea carinalis|1
+(noun)|carib wood|Sabinea carinalis|tree (generic term)
+sable|6
+(adj)|achromatic (similar term)
+(noun)|sable brush|sable's hair pencil|brush (generic term)
+(noun)|fur (generic term)|pelt (generic term)
+(noun)|coal black|ebony|jet black|pitch black|soot black|black (generic term)|blackness (generic term)|inkiness (generic term)
+(noun)|scarf (generic term)
+(noun)|Martes zibellina|marten (generic term)|marten cat (generic term)
+sable's hair pencil|1
+(noun)|sable|sable brush|brush (generic term)
+sable antelope|1
+(noun)|Hippotragus niger|antelope (generic term)
+sable brush|1
+(noun)|sable|sable's hair pencil|brush (generic term)
+sable coat|1
+(noun)|fur coat (generic term)
+sabot|2
+(noun)|wooden shoe|shoe (generic term)
+(noun)|clog|geta|patten|footwear (generic term)|footgear (generic term)
+sabotage|2
+(noun)|destruction (generic term)|devastation (generic term)
+(verb)|undermine|countermine|counteract|subvert|weaken|disobey (generic term)
+saboteur|2
+(noun)|wrecker|diversionist|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+(noun)|fifth columnist|traitor (generic term)|treasonist (generic term)
+sabra|1
+(noun)|Israeli (generic term)
+sabre|4
+(noun)|saber|fencing sword (generic term)
+(noun)|cavalry sword|saber|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+(verb)|saber|cut (generic term)
+(verb)|saber|kill (generic term)
+sabre-toothed|1
+(adj)|saber-toothed|sabertoothed|toothed (similar term)
+sabre rattling|1
+(noun)|saber rattling|military action (generic term)|action (generic term)
+sac|4
+(noun)|pouch|sack|pocket|cavity (generic term)|enclosed space (generic term)
+(noun)|theca|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|Sauk|Sac|Algonquian (generic term)|Algonquin (generic term)
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+sac fungus|1
+(noun)|fungus (generic term)
+sacagawea|1
+(noun)|Sacagawea|Sacajawea|Shoshone (generic term)|Shoshoni (generic term)|scout (generic term)|pathfinder (generic term)|guide (generic term)
+sacajawea|1
+(noun)|Sacagawea|Sacajawea|Shoshone (generic term)|Shoshoni (generic term)|scout (generic term)|pathfinder (generic term)|guide (generic term)
+saccade|2
+(noun)|eye movement (generic term)
+(noun)|jerk|jerking|jolt|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+saccadic|1
+(adj)|eye movement (related term)
+saccharase|1
+(noun)|invertase|sucrase|disaccharidase (generic term)
+saccharic acid|1
+(noun)|carboxylic acid (generic term)
+saccharide|1
+(noun)|carbohydrate|sugar|macromolecule (generic term)|supermolecule (generic term)
+saccharify|2
+(verb)|sugar|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+(verb)|hydrolize (generic term)|hydrolise (generic term)
+saccharin|1
+(noun)|sweetening (generic term)|sweetener (generic term)
+saccharine|1
+(adj)|cloying|syrupy|treacly|sweet (similar term)
+saccharinity|1
+(noun)|sweetness (generic term)|sweet (generic term)
+saccharomyces|1
+(noun)|Saccharomyces|genus Saccharomyces|fungus genus (generic term)
+saccharomyces cerevisiae|1
+(noun)|baker's yeast|brewer's yeast|Saccharomyces cerevisiae|yeast (generic term)
+saccharomyces ellipsoides|1
+(noun)|wine-maker's yeast|Saccharomyces ellipsoides|yeast (generic term)
+saccharomycetaceae|1
+(noun)|Saccharomycetaceae|family Saccharomycetaceae|fungus family (generic term)
+saccharose|1
+(noun)|sucrose|disaccharide (generic term)|plant product (generic term)
+saccharum|1
+(noun)|Saccharum|genus Saccharum|monocot genus (generic term)|liliopsid genus (generic term)
+saccharum bengalense|1
+(noun)|munj|munja|Saccharum bengalense|Saccharum munja|grass (generic term)
+saccharum munja|1
+(noun)|munj|munja|Saccharum bengalense|Saccharum munja|grass (generic term)
+saccharum officinarum|1
+(noun)|sugarcane|sugar cane|Saccharum officinarum|gramineous plant (generic term)|graminaceous plant (generic term)
+sacco|1
+(noun)|Sacco|Nicola Sacco|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+sacculate|1
+(adj)|sacculated|sac (related term)
+sacculated|1
+(adj)|sacculate|sac (related term)
+saccule|1
+(noun)|sacculus|sac (generic term)
+sacculus|1
+(noun)|saccule|sac (generic term)
+sacerdotal|2
+(adj)|belief (related term)
+(adj)|priestly|hieratic|hieratical|profession|community (related term)
+sacerdotalism|1
+(noun)|belief (generic term)
+saceur|1
+(noun)|Supreme Allied Commander Europe|SACEUR|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+sachem|2
+(noun)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|sagamore|Indian chief (generic term)|Indian chieftain (generic term)
+sachet|1
+(noun)|bag (generic term)
+sachs disease|1
+(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+sachsen|1
+(noun)|Saxony|Sachsen|Saxe|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sack|13
+(noun)|poke|paper bag|carrier bag|bag (generic term)
+(noun)|pouch|sac|pocket|cavity (generic term)|enclosed space (generic term)
+(noun)|sackful|containerful (generic term)
+(noun)|white wine (generic term)
+(noun)|sacque|jacket (generic term)
+(noun)|hammock|bed (generic term)
+(noun)|chemise|shift|dress (generic term)|frock (generic term)
+(noun)|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(noun)|dismissal|dismission|discharge|firing|liberation|release|sacking|termination (generic term)|ending (generic term)|conclusion (generic term)
+(verb)|plunder|take (generic term)
+(verb)|fire|give notice|can|dismiss|give the axe|send away|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+(verb)|net|sack up|clear|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|encase (generic term)|incase (generic term)|case (generic term)|sack up (related term)
+sack coat|1
+(noun)|coat (generic term)
+sack out|1
+(verb)|go to bed|turn in|bed|crawl in|kip down|hit the hay|hit the sack|go to sleep|retire|turn out (antonym)|get up (antonym)
+sack race|1
+(noun)|race (generic term)
+sack up|1
+(verb)|net|sack|clear|profit (generic term)|gain (generic term)|benefit (generic term)
+sackbut|1
+(noun)|trombone (generic term)
+sackcloth|2
+(noun)|garment (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+sackcloth and ashes|1
+(noun)|display (generic term)
+sacked|1
+(adj)|despoiled|pillaged|raped|ravaged|destroyed (similar term)
+sackful|1
+(noun)|sack|containerful (generic term)
+sacking|2
+(noun)|bagging|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|dismissal|dismission|discharge|firing|liberation|release|sack|termination (generic term)|ending (generic term)|conclusion (generic term)
+saclant|1
+(noun)|Supreme Allied Commander Atlantic|SACLANT|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+saclike|1
+(adj)|bursiform|pouch-shaped|pouchlike|concave (similar term)
+sacque|1
+(noun)|sack|jacket (generic term)
+sacral|2
+(adj)|bone|os (related term)
+(adj)|sacred (similar term)
+sacral nerve|1
+(noun)|spinal nerve (generic term)|nervus spinalis (generic term)
+sacral plexus|1
+(noun)|plexus sacralis|nerve plexus (generic term)
+sacral vein|1
+(noun)|vena sacralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+sacral vertebra|1
+(noun)|vertebra (generic term)
+sacrament|1
+(noun)|religious ceremony (generic term)|religious ritual (generic term)
+sacrament of the eucharist|1
+(noun)|Holy Eucharist|Eucharist|sacrament of the Eucharist|Holy Sacrament|Liturgy|Eucharistic liturgy|Lord's Supper|sacrament (generic term)
+sacramental|1
+(adj)|religious ceremony|religious ritual (related term)
+sacramental manduction|1
+(noun)|Communion|Holy Communion|manduction|ritual (generic term)
+sacramental oil|1
+(noun)|chrism|chrisom|holy oil|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+sacramental wine|1
+(noun)|altar wine|wine (generic term)|vino (generic term)
+sacramento|1
+(noun)|Sacramento|capital of California|state capital (generic term)
+sacramento mountains|1
+(noun)|Sacramento Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sacramento river|1
+(noun)|Sacramento River|river (generic term)
+sacramento sturgeon|1
+(noun)|Pacific sturgeon|white sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon (generic term)
+sacred|5
+(adj)|divine (similar term)|ineffable (similar term)|unnameable (similar term)|unspeakable (similar term)|unutterable (similar term)|inspirational (similar term)|inviolable (similar term)|inviolate (similar term)|sacrosanct (similar term)|numinous (similar term)|quasi-religious (similar term)|religious (similar term)|spiritual (similar term)|reverend (similar term)|sublime (similar term)|sacral (similar term)|taboo (similar term)|tabu (similar term)|consecrated (related term)|consecrate (related term)|dedicated (related term)|heavenly (related term)|pious (related term)|profane (antonym)
+(adj)|worthy (similar term)
+(adj)|consecrated|sanctified|holy (similar term)
+(adj)|hallowed|holy (similar term)
+(adj)|dedicated (similar term)
+sacred college|1
+(noun)|Sacred College|College of Cardinals|body (generic term)
+sacred cow|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+sacred fig|1
+(noun)|pipal|pipal tree|pipul|peepul|bo tree|Ficus religiosa|fig tree (generic term)
+sacred ibis|1
+(noun)|Threskiornis aethiopica|ibis (generic term)
+sacred lotus|1
+(noun)|lotus|Indian lotus|Nelumbo nucifera|water lily (generic term)
+sacred mushroom|1
+(noun)|mescal button|magic mushroom|plant organ (generic term)
+sacred scripture|1
+(noun)|scripture|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+sacred text|1
+(noun)|sacred writing|religious writing|religious text|writing (generic term)|written material (generic term)|piece of writing (generic term)
+sacred trinity|1
+(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+sacred writing|1
+(noun)|sacred text|religious writing|religious text|writing (generic term)|written material (generic term)|piece of writing (generic term)
+sacredly|1
+(adv)|religiously
+sacredness|1
+(noun)|holiness (generic term)|sanctity (generic term)|sanctitude (generic term)
+sacrifice|9
+(noun)|forfeit|forfeiture|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|personnel casualty (generic term)|loss (generic term)
+(noun)|loss (generic term)
+(noun)|ritual killing|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|putout (generic term)
+(verb)|give|release (generic term)|relinquish (generic term)|resign (generic term)|free (generic term)|give up (generic term)
+(verb)|kill (generic term)
+(verb)|sell (generic term)
+(verb)|offer (generic term)|offer up (generic term)
+sacrifice fly|1
+(noun)|sacrifice (generic term)
+sacrifice operation|1
+(noun)|suicide mission|martyr operation|mission (generic term)|charge (generic term)|commission (generic term)
+sacrificeable|1
+(adj)|expendable (similar term)
+sacrificer|1
+(noun)|religious person (generic term)
+sacrificial|1
+(adj)|killing|kill|putting to death (related term)
+sacrilege|1
+(noun)|profanation|desecration|blasphemy|irreverence (generic term)|violation (generic term)
+sacrilegious|1
+(adj)|blasphemous|profane|irreverent (similar term)
+sacrilegiousness|1
+(noun)|profaneness (generic term)|unsanctification (generic term)
+sacristan|1
+(noun)|sexton|church officer (generic term)|caretaker (generic term)
+sacristy|1
+(noun)|vestry|room (generic term)
+sacrosanct|1
+(adj)|inviolable|inviolate|sacred (similar term)
+sacrum|1
+(noun)|bone (generic term)|os (generic term)
+sad|3
+(adj)|bittersweet (similar term)|depressing (similar term)|depressive (similar term)|gloomy (similar term)|saddening (similar term)|doleful (similar term)|mournful (similar term)|heavyhearted (similar term)|melancholy (similar term)|melancholic (similar term)|pensive (similar term)|wistful (similar term)|tragic (similar term)|tragical (similar term)|tragicomic (similar term)|tragicomical (similar term)|glad (antonym)
+(adj)|sorrowful (similar term)
+(adj)|deplorable|distressing|lamentable|pitiful|sorry|bad (similar term)
+sad-faced|1
+(adj)|faced (similar term)
+sad sack|1
+(noun)|bungler|blunderer|fumbler|bumbler|stumbler|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+sadat|1
+(noun)|Sadat|Anwar Sadat|Anwar el-Sadat|statesman (generic term)|solon (generic term)|national leader (generic term)
+saddam|1
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+saddam's martyrs|1
+(noun)|Fedayeen Saddam|Saddam's Martyrs|paramilitary (generic term)|paramilitary force (generic term)|paramilitary unit (generic term)|paramilitary organization (generic term)|paramilitary organisation (generic term)
+saddam bin hussein at-takriti|1
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+saddam hussein|1
+(noun)|Hussein|Husain|Husayn|Saddam Hussein|Saddam|Saddam bin Hussein at-Takriti|leader (generic term)
+sadden|2
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)|gladden (antonym)
+(verb)|feel (generic term)|experience (generic term)|gladden (antonym)
+saddening|1
+(adj)|depressing|depressive|gloomy|sad (similar term)
+saddhu|1
+(noun)|sadhu|Hindu (generic term)|Hindoo (generic term)
+saddle|9
+(noun)|seat (generic term)
+(noun)|saddleback|pass (generic term)|mountain pass (generic term)|notch (generic term)
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|piece of leather (generic term)
+(noun)|bicycle seat|seat (generic term)
+(noun)|body part (generic term)
+(verb)|attach (generic term)|unsaddle (antonym)
+(verb)|burden (generic term)|burthen (generic term)|weight (generic term)|weight down (generic term)
+(verb)|charge|burden|command (generic term)|require (generic term)|compel (generic term)
+saddle-shaped|1
+(adj)|formed (similar term)
+saddle-sore|1
+(adj)|painful (similar term)
+saddle blanket|1
+(noun)|saddlecloth|horse blanket|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+saddle block anaesthesia|1
+(noun)|saddle block anesthesia|spinal anesthesia (generic term)|spinal anaesthesia (generic term)|spinal (generic term)
+saddle block anesthesia|1
+(noun)|saddle block anaesthesia|spinal anesthesia (generic term)|spinal anaesthesia (generic term)|spinal (generic term)
+saddle feather|1
+(noun)|saddle hackle|hackle (generic term)
+saddle hackle|1
+(noun)|saddle feather|hackle (generic term)
+saddle horn|1
+(noun)|horn|pommel (generic term)|saddlebow (generic term)
+saddle horse|1
+(noun)|riding horse|mount|horse (generic term)|Equus caballus (generic term)
+saddle of lamb|1
+(noun)|cut of lamb (generic term)
+saddle oxford|1
+(noun)|saddle shoe|oxford (generic term)
+saddle oyster|1
+(noun)|Anomia ephippium|oyster (generic term)
+saddle roof|1
+(noun)|gable roof|saddleback|saddleback roof|roof (generic term)
+saddle shoe|1
+(noun)|saddle oxford|oxford (generic term)
+saddle soap|1
+(noun)|leather soap|soap (generic term)
+saddle sore|2
+(noun)|gall|animal disease (generic term)
+(noun)|gall (generic term)
+saddle stitch|1
+(noun)|stitch (generic term)
+saddleback|2
+(noun)|saddle|pass (generic term)|mountain pass (generic term)|notch (generic term)
+(noun)|gable roof|saddle roof|saddleback roof|roof (generic term)
+saddleback roof|1
+(noun)|gable roof|saddle roof|saddleback|roof (generic term)
+saddlebag|1
+(noun)|bag (generic term)
+saddlebill|1
+(noun)|jabiru|Ephippiorhynchus senegalensis|stork (generic term)
+saddlebow|1
+(noun)|pommel|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+saddlecloth|1
+(noun)|saddle blanket|horse blanket|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+saddled|2
+(adj)|unsaddled (antonym)
+(adj)|burdened (similar term)
+saddled-shaped false morel|1
+(noun)|Gyromitra infula|gyromitra (generic term)
+saddler|1
+(noun)|maker (generic term)|shaper (generic term)
+saddlery|2
+(noun)|stable gear|tack|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|workshop (generic term)|shop (generic term)
+sadducean|1
+(adj)|Sadducean|Jew|Hebrew|Israelite (related term)
+sadducee|1
+(noun)|Sadducee|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+sade|1
+(noun)|Sade|de Sade|Comte Donatien Alphonse Francois de Sade|Marquis de Sade|writer (generic term)|author (generic term)
+sadhe|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+sadhu|1
+(noun)|saddhu|Hindu (generic term)|Hindoo (generic term)
+sadi carnot|1
+(noun)|Carnot|Sadi Carnot|Nicolas Leonard Sadi Carnot|physicist (generic term)
+sadism|1
+(noun)|sexual pleasure (generic term)
+sadist|1
+(noun)|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)|masochist (antonym)
+sadistic|1
+(adj)|masochistic (antonym)
+sadleria|1
+(noun)|Sadleria|genus Sadleria|fern genus (generic term)
+sadly|2
+(adv)|unhappily|happily (antonym)
+(adv)|deplorably|lamentably|woefully
+sadness|3
+(noun)|unhappiness|feeling (generic term)|happiness (antonym)
+(noun)|sorrow|sorrowfulness|unhappiness (generic term)
+(noun)|gloominess|lugubriousness|uncheerfulness (generic term)
+sadomasochism|1
+(noun)|sadism (generic term)|masochism (generic term)
+sadomasochist|1
+(noun)|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+sadomasochistic|1
+(adj)|sadism|masochism (related term)
+saek|1
+(noun)|Saek|Tai (generic term)
+safaqis|1
+(noun)|Sfax|Safaqis|city (generic term)|metropolis (generic term)|urban center (generic term)
+safar|1
+(noun)|Safar|Saphar|Islamic calendar month (generic term)
+safari|1
+(noun)|campaign|hunting expedition|expedition (generic term)
+safari park|1
+(noun)|park (generic term)|parkland (generic term)
+safe|8
+(adj)|fail-safe (similar term)|harmless (similar term)|innocuous (similar term)|off the hook (similar term)|risk-free (similar term)|riskless (similar term)|unhazardous (similar term)|safe and sound (similar term)|unhurt (similar term)|harmless (related term)|invulnerable (related term)|secure (related term)|uninjured (related term)|dangerous (antonym)
+(adj)|unadventurous (similar term)
+(adj)|out (antonym)
+(adj)|dependable|good|secure|sound (similar term)
+(adj)|secure (similar term)
+(noun)|strongbox (generic term)|deedbox (generic term)
+(noun)|cupboard (generic term)|closet (generic term)
+(noun)|condom|rubber|safety|prophylactic|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+safe-conduct|1
+(noun)|safeguard|pass (generic term)|passport (generic term)
+safe-deposit|2
+(adj)|safety-deposit|secure (similar term)
+(noun)|safe-deposit box|safety-deposit|safety deposit box|deposit box|lockbox|strongbox (generic term)|deedbox (generic term)
+safe-deposit box|1
+(noun)|safe-deposit|safety-deposit|safety deposit box|deposit box|lockbox|strongbox (generic term)|deedbox (generic term)
+safe and sound|1
+(adj)|unhurt|safe (similar term)
+safe harbor|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+safe house|1
+(noun)|house (generic term)|refuge (generic term)|sanctuary (generic term)|asylum (generic term)
+safe period|1
+(noun)|phase (generic term)|stage (generic term)
+safe sex|1
+(noun)|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+safebreaker|1
+(noun)|safecracker|cracksman|thief (generic term)|stealer (generic term)
+safecracker|1
+(noun)|safebreaker|cracksman|thief (generic term)|stealer (generic term)
+safeguard|4
+(noun)|precaution|guard|measure (generic term)|step (generic term)
+(noun)|safe-conduct|pass (generic term)|passport (generic term)
+(verb)|protect (generic term)
+(verb)|escort (generic term)
+safehold|1
+(noun)|refuge (generic term)|sanctuary (generic term)|asylum (generic term)
+safekeeping|1
+(noun)|guardianship|keeping|duty (generic term)|responsibility (generic term)|obligation (generic term)
+safeness|1
+(noun)|characteristic (generic term)|dangerousness (antonym)
+safety|6
+(noun)|condition (generic term)|status (generic term)|danger (antonym)
+(noun)|refuge|area (generic term)|country (generic term)
+(noun)|guard|safety device|device (generic term)
+(noun)|base hit|hit (generic term)
+(noun)|condom|rubber|safe|prophylactic|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+(noun)|score (generic term)
+safety-deposit|2
+(adj)|safe-deposit|secure (similar term)
+(noun)|safe-deposit|safe-deposit box|safety deposit box|deposit box|lockbox|strongbox (generic term)|deedbox (generic term)
+safety-related|1
+(adj)|protective (similar term)
+safety arch|1
+(noun)|arch (generic term)|strengthener (generic term)|reinforcement (generic term)
+safety belt|1
+(noun)|life belt|safety harness|belt (generic term)|restraint (generic term)|constraint (generic term)
+safety bicycle|1
+(noun)|safety bike|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+safety bike|1
+(noun)|safety bicycle|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+safety blitz|1
+(noun)|linebacker blitzing|blitz|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+safety bolt|1
+(noun)|safety lock|bolt (generic term)|deadbolt (generic term)
+safety catch|1
+(noun)|safety lock|guard (generic term)|safety (generic term)|safety device (generic term)
+safety curtain|1
+(noun)|theater curtain (generic term)|theatre curtain (generic term)
+safety deposit box|1
+(noun)|safe-deposit|safe-deposit box|safety-deposit|deposit box|lockbox|strongbox (generic term)|deedbox (generic term)
+safety device|1
+(noun)|guard|safety|device (generic term)
+safety factor|1
+(noun)|factor of safety|ratio (generic term)
+safety feature|1
+(noun)|feature (generic term)|characteristic (generic term)
+safety fuse|2
+(noun)|fuse (generic term)|fuze (generic term)|fusee (generic term)|fuzee (generic term)|primer (generic term)|priming (generic term)
+(noun)|fuse|electrical fuse|electrical device (generic term)
+safety glass|1
+(noun)|laminated glass|shatterproof glass|glass (generic term)
+safety harness|1
+(noun)|safety belt|life belt|belt (generic term)|restraint (generic term)|constraint (generic term)
+safety hat|1
+(noun)|hard hat|tin hat|helmet (generic term)
+safety island|1
+(noun)|traffic island|safety isle|safety zone|island (generic term)
+safety isle|1
+(noun)|traffic island|safety island|safety zone|island (generic term)
+safety lamp|1
+(noun)|Davy lamp|oil lamp (generic term)|kerosene lamp (generic term)|kerosine lamp (generic term)
+safety lock|2
+(noun)|safety catch|guard (generic term)|safety (generic term)|safety device (generic term)
+(noun)|safety bolt|bolt (generic term)|deadbolt (generic term)
+safety margin|1
+(noun)|margin of safety|margin of error|margin (generic term)|index (generic term)
+safety match|1
+(noun)|book matches|match (generic term)|lucifer (generic term)|friction match (generic term)
+safety net|2
+(noun)|guarantee (generic term)
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+safety nut|1
+(noun)|locknut|nut (generic term)
+safety pin|1
+(noun)|pin (generic term)
+safety rail|1
+(noun)|guardrail|railing (generic term)|rail (generic term)
+safety razor|1
+(noun)|razor (generic term)
+safety squeeze|1
+(noun)|safety squeeze play|squeeze play (generic term)
+safety squeeze play|1
+(noun)|safety squeeze|squeeze play (generic term)
+safety valve|1
+(noun)|relief valve|escape valve|escape cock|escape|valve (generic term)|regulator (generic term)
+safety zone|1
+(noun)|traffic island|safety island|safety isle|island (generic term)
+safflower|1
+(noun)|false saffron|Carthamus tinctorius|herb (generic term)|herbaceous plant (generic term)
+safflower oil|2
+(noun)|oil (generic term)
+(noun)|vegetable oil (generic term)|oil (generic term)
+safflower seed|1
+(noun)|seed (generic term)
+saffranine|1
+(noun)|safranine|safranin|dye (generic term)|dyestuff (generic term)
+saffron|3
+(noun)|saffron crocus|Crocus sativus|crocus (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|orange yellow|yellow (generic term)|yellowness (generic term)
+saffron crocus|1
+(noun)|saffron|Crocus sativus|crocus (generic term)
+safranin|1
+(noun)|safranine|saffranine|dye (generic term)|dyestuff (generic term)
+safranine|1
+(noun)|safranin|saffranine|dye (generic term)|dyestuff (generic term)
+sag|3
+(noun)|droop|depression (generic term)|impression (generic term)|imprint (generic term)
+(verb)|droop|swag|flag|sink (generic term)|drop (generic term)|drop down (generic term)
+(verb)|sag down|sink (generic term)|drop (generic term)|drop down (generic term)
+sag down|1
+(verb)|sag|sink (generic term)|drop (generic term)|drop down (generic term)
+saga|1
+(noun)|adventure story (generic term)|heroic tale (generic term)
+sagacious|2
+(adj)|perspicacious|sapient|wise (similar term)
+(adj)|politic (similar term)
+sagaciously|1
+(adv)|astutely|shrewdly|sapiently|acutely
+sagaciousness|2
+(noun)|sagacity|judgment|judgement|discernment|wisdom (generic term)|sapience (generic term)
+(noun)|judiciousness|sagacity|wisdom (generic term)|wiseness (generic term)
+sagacity|2
+(noun)|sagaciousness|judgment|judgement|discernment|wisdom (generic term)|sapience (generic term)
+(noun)|judiciousness|sagaciousness|wisdom (generic term)|wiseness (generic term)
+sagamore|1
+(noun)|sachem|Indian chief (generic term)|Indian chieftain (generic term)
+sage|5
+(adj)|wise (similar term)
+(adj)|sage-green|chromatic (similar term)
+(noun)|mentor (generic term)|wise man (generic term)
+(noun)|herb (generic term)
+(noun)|salvia|herb (generic term)|herbaceous plant (generic term)
+sage-green|1
+(adj)|sage|chromatic (similar term)
+sage brush|1
+(noun)|sagebrush|subshrub (generic term)|suffrutex (generic term)
+sage green|1
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+sage grouse|1
+(noun)|sage hen|Centrocercus urophasianus|grouse (generic term)
+sage hen|1
+(noun)|sage grouse|Centrocercus urophasianus|grouse (generic term)
+sage willow|2
+(noun)|dwarf grey willow|dwarf gray willow|Salix tristis|willow (generic term)|willow tree (generic term)
+(noun)|hoary willow|Salix candida|willow (generic term)|willow tree (generic term)
+sagebrush|1
+(noun)|sage brush|subshrub (generic term)|suffrutex (generic term)
+sagebrush buttercup|1
+(noun)|Ranunculus glaberrimus|wildflower (generic term)|wild flower (generic term)
+sagebrush lizard|1
+(noun)|Sceloporus graciosus|spiny lizard (generic term)
+sagebrush mariposa tulip|1
+(noun)|Calochortus macrocarpus|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+sagebrush state|1
+(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state (generic term)
+sagely|1
+(adv)|wisely|foolishly (antonym)
+sagging|1
+(adj)|drooping|droopy|lax (similar term)
+sagina|1
+(noun)|Sagina|genus Sagina|caryophylloid dicot genus (generic term)
+saginaw|1
+(noun)|Saginaw|town (generic term)|port of entry (generic term)|point of entry (generic term)
+sagitta|2
+(noun)|Sagitta|constellation (generic term)
+(noun)|arrowworm (generic term)|chaetognath (generic term)
+sagittal|1
+(adj)|mesial (similar term)
+sagittal suture|1
+(noun)|interparietal suture|sutura sagittalis|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sagittaria|1
+(noun)|Sagittaria|genus Sagittaria|monocot genus (generic term)|liliopsid genus (generic term)
+sagittariidae|1
+(noun)|Sagittariidae|family Sagittariidae|bird family (generic term)
+sagittarius|4
+(noun)|Sagittarius|Archer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Sagittarius|constellation (generic term)
+(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|Sagittarius|genus Sagittarius|bird genus (generic term)
+sagittarius serpentarius|1
+(noun)|secretary bird|Sagittarius serpentarius|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+sagittarius the archer|1
+(noun)|Sagittarius|Sagittarius the Archer|Archer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+sagittate|1
+(adj)|sagittiform|arrow-shaped|simple (similar term)|unsubdivided (similar term)
+sagittate-leaf|1
+(noun)|sagittiform leaf|simple leaf (generic term)
+sagittiform|1
+(adj)|sagittate|arrow-shaped|simple (similar term)|unsubdivided (similar term)
+sagittiform leaf|1
+(noun)|sagittate-leaf|simple leaf (generic term)
+sago|1
+(noun)|starch (generic term)|amylum (generic term)
+sago fern|1
+(noun)|silver tree fern|black tree fern|Cyathea medullaris|tree fern (generic term)
+sago palm|2
+(noun)|palm (generic term)|palm tree (generic term)
+(noun)|Cycas revoluta|cycad (generic term)
+saguaro|1
+(noun)|sahuaro|Carnegiea gigantea|cactus (generic term)
+sahaptin|2
+(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian (generic term)
+(noun)|Shahaptian|Sahaptin|Penutian (generic term)
+sahaptino|1
+(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian (generic term)
+sahara|1
+(noun)|Sahara|Sahara Desert|desert (generic term)
+sahara desert|1
+(noun)|Sahara|Sahara Desert|desert (generic term)
+saharan|2
+(adj)|Saharan|desert (related term)
+(noun)|Saharan|Nilo-Saharan (generic term)|Nilo-Saharan language (generic term)
+sahib|1
+(noun)|European (generic term)
+sahuaro|1
+(noun)|saguaro|Carnegiea gigantea|cactus (generic term)
+said|1
+(adj)|aforesaid|aforementioned|same (similar term)
+saida|1
+(noun)|Sayda|Saida|Sidon|city (generic term)|metropolis (generic term)|urban center (generic term)
+saiga|1
+(noun)|Saiga tatarica|antelope (generic term)
+saiga tatarica|1
+(noun)|saiga|Saiga tatarica|antelope (generic term)
+saigon|1
+(noun)|Ho Chi Minh City|Saigon|city (generic term)|metropolis (generic term)|urban center (generic term)
+saigon cinnamon|1
+(noun)|Saigon cinnamon|Cinnamomum loureirii|laurel (generic term)
+sail|6
+(noun)|canvas|canvass|sheet|piece of cloth (generic term)|piece of material (generic term)
+(noun)|cruise|ocean trip (generic term)|voyage (generic term)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|sweep|move (generic term)|sail through (related term)|sweep through (related term)
+(verb)|boat (generic term)
+(verb)|voyage|navigate|travel (generic term)|journey (generic term)
+sail through|1
+(verb)|breeze through|ace|pass with flying colors|sweep through|nail|pass (generic term)|make it (generic term)
+sailboat|1
+(noun)|sailing boat|sailing vessel (generic term)|sailing ship (generic term)
+sailcloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+sailfish|2
+(noun)|saltwater fish (generic term)
+(noun)|scombroid (generic term)|scombroid fish (generic term)
+sailing|4
+(noun)|seafaring|navigation|employment (generic term)|work (generic term)
+(noun)|water travel (generic term)|seafaring (generic term)
+(noun)|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(noun)|glide|gliding|sailplaning|soaring|flight (generic term)|flying (generic term)
+sailing-race|1
+(noun)|yacht race|boat race (generic term)
+sailing boat|1
+(noun)|sailboat|sailing vessel (generic term)|sailing ship (generic term)
+sailing master|1
+(noun)|navigator|officer (generic term)|ship's officer (generic term)
+sailing ship|1
+(noun)|sailing vessel|vessel (generic term)|watercraft (generic term)
+sailing vessel|1
+(noun)|sailing ship|vessel (generic term)|watercraft (generic term)
+sailmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+sailor|3
+(noun)|crewman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|bluejacket|navy man|sailor boy|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|boater|leghorn|Panama|Panama hat|skimmer|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+sailor's-choice|2
+(noun)|pinfish|squirrelfish|Lagodon rhomboides|sparid (generic term)|sparid fish (generic term)
+(noun)|sailors choice|Haemulon parra|grunt (generic term)
+sailor's breastplate|1
+(noun)|prolonge knot|knot (generic term)
+sailor boy|1
+(noun)|bluejacket|navy man|sailor|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+sailor cap|1
+(noun)|cap (generic term)
+sailor king|1
+(noun)|William IV|Sailor King|King of England (generic term)|King of Great Britain (generic term)
+sailor suit|1
+(noun)|ensemble (generic term)
+sailors choice|1
+(noun)|sailor's-choice|Haemulon parra|grunt (generic term)
+sailplane|2
+(noun)|glider|heavier-than-air craft (generic term)
+(verb)|soar|glide (generic term)
+sailplaning|1
+(noun)|glide|gliding|soaring|sailing|flight (generic term)|flying (generic term)
+saimiri|1
+(noun)|Saimiri|genus Saimiri|mammal genus (generic term)
+saimiri sciureus|1
+(noun)|squirrel monkey|Saimiri sciureus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+sainfoin|1
+(noun)|sanfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+saint|5
+(noun)|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+(noun)|holy man|holy person|angel|good person (generic term)
+(noun)|ideal|paragon|nonpareil|apotheosis|nonesuch|nonsuch|model (generic term)|role model (generic term)
+(verb)|enshrine|reverence (generic term)|fear (generic term)|revere (generic term)|venerate (generic term)
+(verb)|canonize|canonise|declare (generic term)|adjudge (generic term)|hold (generic term)
+saint's day|1
+(noun)|day (generic term)
+saint-bernard's-lily|1
+(noun)|Saint-Bernard's-lily|Anthericum liliago|liliaceous plant (generic term)
+saint-john's-bread|1
+(noun)|carob|carob powder|Saint-John's-bread|foodstuff (generic term)|food product (generic term)
+saint-mihiel|1
+(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle (generic term)
+saint-saens|1
+(noun)|Saint-Saens|Charles Camille Saint-Saens|pianist (generic term)|piano player (generic term)|composer (generic term)
+saint agnes's eve|1
+(noun)|Saint Agnes's Eve|January 20|Christian holy day (generic term)
+saint ambrose|1
+(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|composer (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint andrew|1
+(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle (generic term)|saint (generic term)
+saint andrew the apostle|1
+(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle (generic term)|saint (generic term)
+saint anselm|1
+(noun)|Anselm|Saint Anselm|St. Anselm|archbishop (generic term)|saint (generic term)
+saint anthony's fire|1
+(noun)|Saint Anthony's fire|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+saint athanasius|1
+(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint augustine|2
+(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+(noun)|St. Augustine|Saint Augustine|city (generic term)|metropolis (generic term)|urban center (generic term)
+saint baeda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+saint beda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+saint bede|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+saint benedict|1
+(noun)|Benedict|Saint Benedict|St. Benedict|monk (generic term)|monastic (generic term)|saint (generic term)
+saint bernard|1
+(noun)|Saint Bernard|St Bernard|working dog (generic term)
+saint boniface|1
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+saint bride|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+saint bridget|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+saint brigid|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+saint bruno|1
+(noun)|Bruno|Saint Bruno|St. Bruno|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)|saint (generic term)
+saint christopher|2
+(noun)|Christopher|Saint Christopher|St. Christopher|patron saint (generic term)
+(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+saint cloud|1
+(noun)|Saint Cloud|St. Cloud|town (generic term)
+saint crispin|1
+(noun)|Crispin|Saint Crispin|St. Crispin|patron saint (generic term)
+saint david|1
+(noun)|David|Saint David|St. David|patron saint (generic term)
+saint denis|1
+(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+saint dominic|1
+(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest (generic term)|saint (generic term)
+saint edward the confessor|1
+(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+saint edward the martyr|1
+(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+saint elizabeth ann bayley seton|1
+(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+saint emilion|1
+(noun)|Saint Emilion|claret (generic term)|red Bordeaux (generic term)
+saint eustatius|1
+(noun)|Saint Eustatius|St. Eustatius|island (generic term)
+saint francis|2
+(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint (generic term)
+(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river (generic term)
+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 (generic term)
+saint francis river|1
+(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river (generic term)
+saint francis xavier|1
+(noun)|Xavier|Saint Francis Xavier|missionary (generic term)
+saint george|1
+(noun)|George|Saint George|St. George|martyr (generic term)|patron saint (generic term)
+saint gregory i|1
+(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint ignatius|1
+(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop (generic term)|saint (generic term)
+saint ignatius' itch|1
+(noun)|pellagra|Alpine scurvy|mal de la rosa|mal rosso|maidism|mayidism|Saint Ignatius' itch|avitaminosis (generic term)|hypovitaminosis (generic term)
+saint ignatius of loyola|1
+(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)
+saint irenaeus|1
+(noun)|Irenaeus|Saint Irenaeus|St. Irenaeus|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint james|1
+(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle (generic term)|saint (generic term)
+saint james the apostle|1
+(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle (generic term)|saint (generic term)
+saint jerome|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint joan|1
+(noun)|Jeanne d'Arc|Joan of Arc|Saint Joan|military leader (generic term)|martyr (generic term)
+saint john|3
+(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|Saint John|Saint John River|St. John|St. John River|river (generic term)
+(noun)|Saint John|St. John|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+saint john's|2
+(noun)|Saint John's|St. John's|provincial capital (generic term)|port (generic term)
+(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital (generic term)
+saint john river|1
+(noun)|Saint John|Saint John River|St. John|St. John River|river (generic term)
+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 (generic term)|Evangelist (generic term)|saint (generic term)
+saint johns|1
+(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river (generic term)
+saint johns river|1
+(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river (generic term)
+saint joseph|2
+(noun)|Saint Joseph|St Joseph|March 19|Christian holy day (generic term)
+(noun)|Saint Joseph|St. Joseph|town (generic term)
+saint jude|1
+(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle (generic term)|saint (generic term)
+saint kitts|1
+(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+saint lawrence|2
+(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr (generic term)|saint (generic term)
+(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river (generic term)
+saint lawrence river|1
+(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river (generic term)
+saint lawrence seaway|1
+(noun)|Saint Lawrence Seaway|St. Lawrence Seaway|seaway (generic term)|sea lane (generic term)|ship route (generic term)|trade route (generic term)
+saint louis|2
+(noun)|Louis IX|Saint Louis|St. Louis|King of France (generic term)|saint (generic term)
+(noun)|Saint Louis|St. Louis|Gateway to the West|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+saint lucia|2
+(noun)|Saint Lucia|St. Lucia|country (generic term)|state (generic term)|land (generic term)
+(noun)|Saint Lucia|St. Lucia|island (generic term)
+saint luke|1
+(noun)|Luke|Saint Luke|St. Luke|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+saint maarten|1
+(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island (generic term)
+saint mark|1
+(noun)|Mark|Saint Mark|St. Mark|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+saint martin|1
+(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island (generic term)
+saint martin's summer|1
+(noun)|Indian summer|Saint Martin's summer|time period (generic term)|period of time (generic term)|period (generic term)
+saint matthew|1
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+saint matthew the apostle|1
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+saint nicholas|1
+(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop (generic term)|saint (generic term)
+saint nick|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+saint olaf|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+saint olav|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+saint patrick|1
+(noun)|Patrick|Saint Patrick|St. Patrick|Apostle (generic term)|Apostelic Father (generic term)|patron saint (generic term)
+saint patrick's day|1
+(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day (generic term)
+saint paul|2
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital (generic term)
+saint peter|1
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+saint peter's wreath|1
+(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea (generic term)|spiraea (generic term)
+saint peter the apostle|1
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+saint petersburg|2
+(noun)|St. Petersburg|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+saint polycarp|1
+(noun)|Polycarp|Saint Polycarp|St. Polycarp|martyr (generic term)
+saint teresa of avila|1
+(noun)|Teresa of Avila|Saint Teresa of Avila|saint (generic term)
+saint thomas|2
+(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle (generic term)|saint (generic term)
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+saint thomas a becket|1
+(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop (generic term)|martyr (generic term)|saint (generic term)
+saint thomas aquinas|1
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+saint valentine's day|1
+(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day (generic term)
+saint vincent|1
+(noun)|Saint Vincent|St. Vincent|island (generic term)
+saint vincent and the grenadines|1
+(noun)|Saint Vincent and the Grenadines|St. Vincent and the Grenadines|country (generic term)|state (generic term)|land (generic term)
+saint vitus dance|1
+(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea (generic term)
+sainted|1
+(adj)|angelic|angelical|beatific|saintlike|saintly|good (similar term)
+sainthood|2
+(noun)|group (generic term)|grouping (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+saintlike|1
+(adj)|angelic|angelical|beatific|saintly|sainted|good (similar term)
+saintliness|1
+(noun)|good (generic term)|goodness (generic term)
+saintly|1
+(adj)|angelic|angelical|beatific|saintlike|sainted|good (similar term)
+saintpaulia|1
+(noun)|Saintpaulia|genus Saintpaulia|asterid dicot genus (generic term)
+saintpaulia ionantha|1
+(noun)|African violet|Saintpaulia ionantha|flower (generic term)
+saints peter and paul|1
+(noun)|Saints Peter and Paul|June 29|Christian holy day (generic term)
+saipan|2
+(noun)|Saipan|island (generic term)
+(noun)|Saipan|amphibious assault (generic term)
+sajama|1
+(noun)|Sajama|mountain peak (generic term)
+sakartvelo|1
+(noun)|Georgia|Sakartvelo|Asian country (generic term)|Asian nation (generic term)
+sake|3
+(noun)|interest|benefit (generic term)|welfare (generic term)
+(noun)|saki|rice beer|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(noun)|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+sakharov|1
+(noun)|Sakharov|Andrei Sakharov|Andrei Dimitrievich Sakharov|nuclear physicist (generic term)
+saki|3
+(noun)|Munro|H. H. Munro|Hector Hugh Munro|Saki|writer (generic term)|author (generic term)
+(noun)|sake|rice beer|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(noun)|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+sakkara|1
+(noun)|Saqqara|Saqqarah|Sakkara|town (generic term)
+sakti|1
+(noun)|Shakti|Sakti|Hindu deity (generic term)
+saktism|2
+(noun)|Shaktism|Saktism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Shaktism|Saktism|Hinduism (generic term)|Hindooism (generic term)
+sal ammoniac|1
+(noun)|ammonium chloride|salt (generic term)
+sal soda|1
+(noun)|sodium carbonate|washing soda|soda ash|soda|salt (generic term)
+sal volatile|1
+(noun)|spirits of ammonia|solution (generic term)
+salaah|1
+(noun)|salat|salaat|salah|pillar of Islam (generic term)|worship (generic term)
+salaam|2
+(noun)|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(verb)|salute (generic term)
+salaat|1
+(noun)|salat|salah|salaah|pillar of Islam (generic term)|worship (generic term)
+salability|1
+(noun)|salableness|quality (generic term)
+salable|1
+(adj)|saleable|marketable (similar term)|marketable (similar term)|merchantable (similar term)|sellable (similar term)|vendable (similar term)|vendible (similar term)|unsalable (antonym)
+salableness|1
+(noun)|salability|quality (generic term)
+salacious|2
+(adj)|lubricious|lustful|prurient|sexy (similar term)
+(adj)|lewd|obscene|raunchy|dirty (similar term)
+salaciously|1
+(adv)|lasciviously
+salaciousness|1
+(noun)|obscenity|lewdness|bawdiness|salacity|indecency (generic term)
+salacity|1
+(noun)|obscenity|lewdness|bawdiness|salaciousness|indecency (generic term)
+salad|1
+(noun)|dish (generic term)
+salad bar|1
+(noun)|bar (generic term)
+salad bowl|2
+(noun)|salad plate|plate (generic term)
+(noun)|bowl (generic term)
+salad burnet|2
+(noun)|burnet bloodwort|pimpernel|Poterium sanguisorba|herb (generic term)|herbaceous plant (generic term)
+(noun)|salad green (generic term)|salad greens (generic term)
+salad cream|1
+(noun)|dressing (generic term)|salad dressing (generic term)
+salad days|1
+(noun)|bloom|bloom of youth|time of life (generic term)
+salad dressing|1
+(noun)|dressing|sauce (generic term)
+salad fork|1
+(noun)|fork (generic term)
+salad green|1
+(noun)|salad greens|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+salad greens|1
+(noun)|salad green|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+salad nicoise|1
+(noun)|salad (generic term)
+salad oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+salad plate|1
+(noun)|salad bowl|plate (generic term)
+saladin|1
+(noun)|Saladin|Salah-ad-Din Yusuf ibn-Ayyub|sultan (generic term)|grand Turk (generic term)
+salafast group for call and combat|1
+(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+salafi movement|1
+(noun)|Salafism|Salafi movement|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+salafism|1
+(noun)|Salafism|Salafi movement|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+salafist group|1
+(noun)|Salafist Group|Salafast Group for Call and Combat|GSPC|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+salah|1
+(noun)|salat|salaat|salaah|pillar of Islam (generic term)|worship (generic term)
+salah-ad-din yusuf ibn-ayyub|1
+(noun)|Saladin|Salah-ad-Din Yusuf ibn-Ayyub|sultan (generic term)|grand Turk (generic term)
+salah al-din battalions|1
+(noun)|Qassam Brigades|Salah al-Din Battalions|Iz Al-Din Al-Qassam Battalions|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+salai|1
+(noun)|Boswellia serrata|incense tree (generic term)
+salal|1
+(noun)|shallon|Gaultheria shallon|shrub (generic term)|bush (generic term)
+salamander|3
+(noun)|amphibian (generic term)
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+(noun)|poker|stove poker|fire hook|fire iron (generic term)
+salamandra|1
+(noun)|Salamandra|genus Salamandra|amphibian genus (generic term)
+salamandra atra|1
+(noun)|alpine salamander|Salamandra atra|salamander (generic term)
+salamandra maculosa|1
+(noun)|spotted salamander|fire salamander|Salamandra maculosa|salamander (generic term)
+salamandra salamandra|1
+(noun)|European fire salamander|Salamandra salamandra|salamander (generic term)
+salamandridae|1
+(noun)|Salamandridae|family Salamandridae|amphibian family (generic term)
+salamandriform|1
+(adj)|amphibian (related term)
+salami|1
+(noun)|sausage (generic term)
+salaried|3
+(adj)|freelance (antonym)
+(adj)|compensated|remunerated|stipendiary|paid (similar term)
+(adj)|compensable|paying|remunerative|stipendiary|paid (similar term)
+salary|1
+(noun)|wage|pay|earnings|remuneration|regular payment (generic term)
+salary cut|1
+(noun)|pay cut|cut (generic term)
+salary increase|1
+(noun)|raise|rise|wage hike|hike|wage increase|increase (generic term)|increment (generic term)
+salat|1
+(noun)|salaat|salah|salaah|pillar of Islam (generic term)|worship (generic term)
+sale|4
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+(noun)|merchantability (generic term)
+(noun)|cut-rate sale|sales event|occasion (generic term)
+(noun)|sales agreement|agreement (generic term)|understanding (generic term)
+sale in gross|1
+(noun)|contract of hazard|contract (generic term)
+saleable|1
+(adj)|salable|marketable (similar term)|marketable (similar term)|merchantable (similar term)|sellable (similar term)|vendable (similar term)|vendible (similar term)|unsalable (antonym)
+salem|2
+(noun)|Salem|capital of Oregon|state capital (generic term)
+(noun)|Salem|city (generic term)|metropolis (generic term)|urban center (generic term)
+saleratus|1
+(noun)|bicarbonate of soda|sodium hydrogen carbonate|sodium bicarbonate|baking soda|bicarbonate (generic term)|hydrogen carbonate (generic term)
+salerno|1
+(noun)|Salerno|amphibious assault (generic term)
+saleroom|1
+(noun)|showroom|salesroom|panopticon (generic term)
+sales|1
+(noun)|gross sales|gross revenue|income (generic term)
+sales agreement|1
+(noun)|sale|agreement (generic term)|understanding (generic term)
+sales booth|1
+(noun)|stall|stand|booth (generic term)
+sales campaign|1
+(noun)|advertising campaign (generic term)|ad campaign (generic term)|ad blitz (generic term)
+sales demonstrator|1
+(noun)|demonstrator|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+sales department|1
+(noun)|sales division|sales force|business department (generic term)
+sales division|1
+(noun)|sales department|sales force|business department (generic term)
+sales event|1
+(noun)|sale|cut-rate sale|occasion (generic term)
+sales finance company|1
+(noun)|finance company (generic term)
+sales force|1
+(noun)|sales department|sales division|business department (generic term)
+sales incentive|1
+(noun)|bonus (generic term)|incentive (generic term)
+sales outlet|1
+(noun)|mercantile establishment|retail store|outlet|place of business (generic term)|business establishment (generic term)
+sales pitch|1
+(noun)|sales talk|pitch|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+sales promotion|1
+(noun)|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+sales rep|1
+(noun)|salesperson|sales representative|employee (generic term)
+sales representative|1
+(noun)|salesperson|sales rep|employee (generic term)
+sales resistance|1
+(noun)|resistance (generic term)
+sales staff|1
+(noun)|staff (generic term)
+sales talk|1
+(noun)|sales pitch|pitch|promotion (generic term)|publicity (generic term)|promotional material (generic term)|packaging (generic term)
+sales tax|1
+(noun)|nuisance tax|excise (generic term)|excise tax (generic term)
+salesclerk|1
+(noun)|shop clerk|clerk|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+salesgirl|1
+(noun)|saleswoman|saleslady|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+saleslady|1
+(noun)|salesgirl|saleswoman|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+salesman|1
+(noun)|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+salesmanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+salesperson|1
+(noun)|sales representative|sales rep|employee (generic term)
+salesroom|1
+(noun)|showroom|saleroom|panopticon (generic term)
+saleswoman|1
+(noun)|salesgirl|saleslady|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+salian|1
+(noun)|Salian Frank|Salian|Frank (generic term)
+salian frank|1
+(noun)|Salian Frank|Salian|Frank (generic term)
+salic law|1
+(noun)|Salic law|legal code (generic term)
+salicaceae|1
+(noun)|Salicaceae|family Salicaceae|willow family|hamamelid dicot family (generic term)
+salicales|1
+(noun)|Salicales|order Salicales|plant order (generic term)
+salicornia|1
+(noun)|Salicornia|genus Salicornia|caryophylloid dicot genus (generic term)
+salicornia europaea|1
+(noun)|glasswort|samphire|Salicornia europaea|herb (generic term)|herbaceous plant (generic term)
+salicylate|1
+(noun)|salt (generic term)|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+salicylate poisoning|1
+(noun)|poisoning (generic term)|toxic condition (generic term)|intoxication (generic term)
+salicylic acid|1
+(noun)|2-hydroxybenzoic acid|hydroxy acid (generic term)
+salience|1
+(noun)|saliency|strikingness|prominence (generic term)
+saliency|1
+(noun)|salience|strikingness|prominence (generic term)
+salient|4
+(adj)|outstanding|prominent|spectacular|striking|conspicuous (similar term)
+(adj)|re-entrant (antonym)
+(adj)|inclined (similar term)
+(noun)|projection (generic term)
+salient angle|1
+(noun)|angle (generic term)|reentrant angle (antonym)
+salientia|1
+(noun)|Salientia|order Salientia|Anura|order Anura|Batrachia|order Batrachia|animal order (generic term)
+salientian|2
+(adj)|anuran|batrachian|animal order (related term)
+(noun)|frog|toad|toad frog|anuran|batrachian|amphibian (generic term)
+saliferous|1
+(adj)|salty (similar term)
+salim|1
+(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist (generic term)
+salina|1
+(noun)|Salina|town (generic term)
+salinate|1
+(verb)|change (generic term)|desalinate (antonym)
+saline|2
+(adj)|salty (similar term)
+(noun)|saline solution|isotonic solution (generic term)|isosmotic solution (generic term)
+saline solution|1
+(noun)|saline|isotonic solution (generic term)|isosmotic solution (generic term)
+salinger|1
+(noun)|Salinger|J. D. Salinger|Jerome David Salinger|writer (generic term)|author (generic term)
+salinity|2
+(noun)|salt|saltiness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|brininess|saltiness (generic term)
+salinometer|1
+(noun)|hydrometer (generic term)|gravimeter (generic term)
+salisbury|1
+(noun)|Harare|Salisbury|capital of Zimbabwe|national capital (generic term)
+salisbury steak|1
+(noun)|Salisbury steak|dish (generic term)
+salish|2
+(noun)|Salish|Salishan|Mosan (generic term)
+(noun)|Salish|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+salishan|1
+(noun)|Salish|Salishan|Mosan (generic term)
+saliva|1
+(noun)|spit|spittle|secretion (generic term)
+salivary|1
+(adj)|secretion (related term)
+salivary calculus|1
+(noun)|sialolith|calculus (generic term)|concretion (generic term)
+salivary duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+salivary gland|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+salivate|2
+(verb)|act involuntarily (generic term)|act reflexively (generic term)
+(verb)|drool|covet (generic term)
+salivation|1
+(noun)|secretion (generic term)|secernment (generic term)
+salix|1
+(noun)|Salix|genus Salix|hamamelid dicot genus (generic term)
+salix alba|1
+(noun)|white willow|Huntingdon willow|Salix alba|willow (generic term)|willow tree (generic term)
+salix alba caerulea|1
+(noun)|cricket-bat willow|Salix alba caerulea|willow (generic term)|willow tree (generic term)
+salix alba sericea|1
+(noun)|silver willow|silky willow|Salix alba sericea|Salix sericea|willow (generic term)|willow tree (generic term)
+salix alba vitellina|1
+(noun)|golden willow|Salix alba vitellina|Salix vitellina|osier (generic term)
+salix amygdalina|1
+(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier (generic term)
+salix amygdaloides|1
+(noun)|peachleaf willow|peach-leaved willow|almond-leaves willow|Salix amygdaloides|willow (generic term)|willow tree (generic term)
+salix arctica|1
+(noun)|arctic willow|Salix arctica|willow (generic term)|willow tree (generic term)
+salix babylonica|1
+(noun)|weeping willow|Babylonian weeping willow|Salix babylonica|willow (generic term)|willow tree (generic term)
+salix blanda|1
+(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow (generic term)|willow tree (generic term)
+salix candida|1
+(noun)|hoary willow|sage willow|Salix candida|willow (generic term)|willow tree (generic term)
+salix caprea|1
+(noun)|goat willow|florist's willow|pussy willow|Salix caprea|sallow (generic term)
+salix cinerea|1
+(noun)|grey willow|gray willow|Salix cinerea|willow (generic term)|willow tree (generic term)
+salix discolor|1
+(noun)|pussy willow|Salix discolor|willow (generic term)|willow tree (generic term)
+salix fragilis|1
+(noun)|crack willow|brittle willow|snap willow|Salix fragilis|willow (generic term)|willow tree (generic term)
+salix herbacea|1
+(noun)|dwarf willow|Salix herbacea|willow (generic term)|willow tree (generic term)
+salix humilis|1
+(noun)|prairie willow|Salix humilis|willow (generic term)|willow tree (generic term)
+salix lasiolepis|1
+(noun)|arroyo willow|Salix lasiolepis|willow (generic term)|willow tree (generic term)
+salix lucida|1
+(noun)|shining willow|Salix lucida|willow (generic term)|willow tree (generic term)
+salix nigra|1
+(noun)|swamp willow|black willow|Salix nigra|willow (generic term)|willow tree (generic term)
+salix pendulina|1
+(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow (generic term)|willow tree (generic term)
+salix pendulina blanda|1
+(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow (generic term)|willow tree (generic term)
+salix pentandra|1
+(noun)|bay willow|laurel willow|Salix pentandra|willow (generic term)|willow tree (generic term)
+salix purpurea|1
+(noun)|purple willow|red willow|red osier|basket willow|purple osier|Salix purpurea|osier (generic term)
+salix pyrifolia|1
+(noun)|balsam willow|Salix pyrifolia|willow (generic term)|willow tree (generic term)
+salix repens|1
+(noun)|creeping willow|Salix repens|willow (generic term)|willow tree (generic term)
+salix sericea|1
+(noun)|silver willow|silky willow|Salix alba sericea|Salix sericea|willow (generic term)|willow tree (generic term)
+salix sitchensis|1
+(noun)|Sitka willow|silky willow|Salix sitchensis|willow (generic term)|willow tree (generic term)
+salix triandra|1
+(noun)|almond willow|black Hollander|Salix triandra|Salix amygdalina|osier (generic term)
+salix tristis|1
+(noun)|dwarf grey willow|dwarf gray willow|sage willow|Salix tristis|willow (generic term)|willow tree (generic term)
+salix uva-ursi|1
+(noun)|bearberry willow|Salix uva-ursi|willow (generic term)|willow tree (generic term)
+salix viminalis|1
+(noun)|common osier|hemp willow|velvet osier|Salix viminalis|osier (generic term)
+salix vitellina|1
+(noun)|golden willow|Salix alba vitellina|Salix vitellina|osier (generic term)
+salk|1
+(noun)|Salk|Jonas Salk|Jonas Edward Salk|virologist (generic term)
+salk vaccine|1
+(noun)|Salk vaccine|IPV|poliovirus vaccine (generic term)
+sallade|1
+(noun)|sallet|helmet (generic term)
+sallet|1
+(noun)|sallade|helmet (generic term)
+sallow|3
+(adj)|sickly|unhealthy (similar term)
+(noun)|willow (generic term)|willow tree (generic term)
+(verb)|discolor (generic term)
+sallowness|1
+(noun)|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+sally|3
+(noun)|wisecrack|crack|quip|remark (generic term)|comment (generic term)
+(noun)|sortie|military action (generic term)|action (generic term)
+(noun)|sallying forth|venture (generic term)
+sally forth|1
+(verb)|sally out|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+sally lunn|1
+(noun)|Sally Lunn|teacake (generic term)
+sally out|2
+(verb)|sally forth|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+(verb)|leap out|rush out|burst forth|appear (generic term)
+sallying forth|1
+(noun)|sally|venture (generic term)
+salmacis|1
+(noun)|Salmacis|nymph (generic term)
+salmagundi|2
+(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|salad (generic term)
+salman rushdie|1
+(noun)|Rushdie|Salman Rushdie|Ahmed Salman Rushdie|writer (generic term)|author (generic term)
+salmi|1
+(noun)|ragout (generic term)
+salmo|1
+(noun)|Salmo|genus Salmo|fish genus (generic term)
+salmo gairdneri|1
+(noun)|rainbow trout|Salmo gairdneri|trout (generic term)
+salmo salar|1
+(noun)|Atlantic salmon|Salmo salar|salmon (generic term)
+salmo trutta|1
+(noun)|brown trout|salmon trout|Salmo trutta|trout (generic term)
+salmon|4
+(adj)|pink-orange|pinkish-orange|chromatic (similar term)
+(noun)|salmonid (generic term)|food fish (generic term)
+(noun)|Salmon|Salmon River|river (generic term)
+(noun)|fish (generic term)
+salmon-like|1
+(adj)|animal (similar term)
+salmon berry|1
+(noun)|salmonberry|thimbleberry|Rubus parviflorus|raspberry (generic term)|raspberry bush (generic term)
+salmon loaf|1
+(noun)|fish loaf (generic term)
+salmon oil|1
+(noun)|animal oil (generic term)
+salmon p. chase|1
+(noun)|Chase|Salmon P. Chase|Salmon Portland Chase|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|chief justice (generic term)
+salmon pink|1
+(noun)|yellowish pink|apricot|peach|pink (generic term)
+salmon portland chase|1
+(noun)|Chase|Salmon P. Chase|Salmon Portland Chase|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|chief justice (generic term)
+salmon river|1
+(noun)|Salmon|Salmon River|river (generic term)
+salmon trout|3
+(noun)|sea trout|trout (generic term)
+(noun)|lake trout|Salvelinus namaycush|trout (generic term)
+(noun)|brown trout|Salmo trutta|trout (generic term)
+salmonberry|3
+(noun)|cloudberry|dwarf mulberry|bakeapple|baked-apple berry|Rubus chamaemorus|raspberry (generic term)|raspberry bush (generic term)
+(noun)|salmon berry|thimbleberry|Rubus parviflorus|raspberry (generic term)|raspberry bush (generic term)
+(noun)|Rubus spectabilis|raspberry (generic term)|raspberry bush (generic term)
+salmonella|1
+(noun)|enteric bacteria (generic term)|enterobacteria (generic term)|enterics (generic term)|entric (generic term)
+salmonella enteritidis|1
+(noun)|Salmonella enteritidis|Gartner's bacillus|salmonella (generic term)
+salmonella typhi|1
+(noun)|typhoid bacillus|Salmonella typhosa|Salmonella typhi|salmonella (generic term)
+salmonella typhimurium|1
+(noun)|Salmonella typhimurium|salmonella (generic term)
+salmonella typhosa|1
+(noun)|typhoid bacillus|Salmonella typhosa|Salmonella typhi|salmonella (generic term)
+salmonellosis|1
+(noun)|food poisoning (generic term)|gastrointestinal disorder (generic term)
+salmonid|1
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+salmonidae|1
+(noun)|Salmonidae|family Salmonidae|fish family (generic term)
+salmwood|1
+(noun)|Spanish elm|Equador laurel|cypre|princewood|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+salol|1
+(noun)|phenyl salicylate|salicylate (generic term)
+salome|1
+(noun)|Salome|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+salomon|1
+(noun)|Salomon|Haym Salomon|American Revolutionary leader (generic term)|financier (generic term)|moneyman (generic term)
+salon|3
+(noun)|gallery (generic term)|art gallery (generic term)|picture gallery (generic term)
+(noun)|beauty salon|beauty parlor|beauty parlour|beauty shop|shop (generic term)|store (generic term)
+(noun)|living room (generic term)|living-room (generic term)|sitting room (generic term)|front room (generic term)|parlor (generic term)|parlour (generic term)
+salonica|1
+(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+salonika|1
+(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+saloon|2
+(noun)|barroom|bar|ginmill|taproom|room (generic term)
+(noun)|public house|pub|pothouse|gin mill|taphouse|tavern (generic term)|tap house (generic term)
+saloon keeper|1
+(noun)|owner (generic term)|proprietor (generic term)
+salp|1
+(noun)|salpa|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+salpa|1
+(noun)|salp|tunicate (generic term)|urochordate (generic term)|urochord (generic term)
+salpichroa|1
+(noun)|Salpichroa|genus Salpichroa|asterid dicot genus (generic term)
+salpichroa organifolia|1
+(noun)|cock's eggs|Salpichroa organifolia|Salpichroa rhomboidea|vine (generic term)
+salpichroa rhomboidea|1
+(noun)|cock's eggs|Salpichroa organifolia|Salpichroa rhomboidea|vine (generic term)
+salpidae|1
+(noun)|Salpidae|family Salpidae|chordate family (generic term)
+salpiglossis|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+salpiglossis sinuata|1
+(noun)|painted tongue|Salpiglossis sinuata|salpiglossis (generic term)
+salpinctes|1
+(noun)|Salpinctes|genus Salpinctes|bird genus (generic term)
+salpinctes obsoletus|1
+(noun)|rock wren|Salpinctes obsoletus|wren (generic term)|jenny wren (generic term)
+salpingectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+salpingitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+salpinx|1
+(noun)|tube (generic term)|tube-shaped structure (generic term)
+salsa|1
+(noun)|condiment (generic term)
+salsify|3
+(noun)|oyster plant|root (generic term)
+(noun)|oyster plant|vegetable oyster|Tragopogon porrifolius|herb (generic term)|herbaceous plant (generic term)
+(noun)|root vegetable (generic term)
+salsilla|2
+(noun)|Bomarea salsilla|vine (generic term)
+(noun)|Bomarea edulis|vine (generic term)
+salsola|1
+(noun)|Salsola|genus Salsola|caryophylloid dicot genus (generic term)
+salsola kali|1
+(noun)|saltwort|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+salsola kali tenuifolia|1
+(noun)|Russian thistle|Russian tumbleweed|Russian cactus|tumbleweed|Salsola kali tenuifolia|shrub (generic term)|bush (generic term)
+salsola soda|1
+(noun)|saltwort|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+salt|10
+(adj)|sharp (similar term)
+(adj)|salty|tasty (similar term)
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|table salt|common salt|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|Strategic Arms Limitation Talks|SALT|diplomacy (generic term)|diplomatic negotiations (generic term)
+(noun)|saltiness|salinity|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(verb)|season (generic term)|flavor (generic term)|flavour (generic term)
+(verb)|sprinkle (generic term)|splash (generic term)|splosh (generic term)
+(verb)|spice (generic term)|spice up (generic term)
+(verb)|preserve (generic term)|keep (generic term)
+salt-cured|1
+(adj)|salted|brine-cured|preserved (similar term)
+salt-free diet|1
+(noun)|low-sodium diet|low-salt diet|diet (generic term)
+salt-rising bread|1
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+salt away|1
+(verb)|store|hive away|lay in|put in|stack away|stash away|keep (generic term)|hold on (generic term)
+salt cod|1
+(noun)|cod (generic term)|codfish (generic term)
+salt depletion|1
+(noun)|depletion (generic term)
+salt flat|1
+(noun)|salt plain|flat (generic term)
+salt i|1
+(noun)|SALT I|treaty (generic term)|pact (generic term)|accord (generic term)
+salt ii|1
+(noun)|SALT II|treaty (generic term)|pact (generic term)|accord (generic term)
+salt lake city|1
+(noun)|Salt Lake City|capital of Utah|state capital (generic term)
+salt lick|1
+(noun)|lick|sediment (generic term)|deposit (generic term)
+salt marsh|1
+(noun)|marsh (generic term)|marshland (generic term)|fen (generic term)|fenland (generic term)
+salt marsh mallow|1
+(noun)|Kosteletzya virginica|seashore mallow (generic term)
+salt merchant|1
+(noun)|salter|merchant (generic term)|merchandiser (generic term)
+salt mine|2
+(noun)|mine (generic term)
+(noun)|treadmill|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+salt plain|1
+(noun)|salt flat|flat (generic term)
+salt pork|1
+(noun)|pork (generic term)|porc (generic term)
+salt reed grass|1
+(noun)|Spartina cynosuroides|cordgrass (generic term)|cord grass (generic term)
+salt rush|1
+(noun)|Juncus leseurii|rush (generic term)
+salt shaker|1
+(noun)|saltshaker|shaker (generic term)
+salt tree|1
+(noun)|Halimodendron halodendron|Halimodendron argenteum|shrub (generic term)|bush (generic term)
+saltate|2
+(verb)|move (generic term)|displace (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+saltation|5
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+(noun)|leap|jump|transition (generic term)
+(noun)|dancing|dance|terpsichore|diversion (generic term)|recreation (generic term)|performing arts (generic term)
+(noun)|leap|leaping|spring|bound|bounce|jump (generic term)|jumping (generic term)
+saltbox|1
+(noun)|house (generic term)
+saltbush|1
+(noun)|shrub (generic term)|bush (generic term)
+saltcellar|1
+(noun)|container (generic term)
+salted|1
+(adj)|salt-cured|brine-cured|preserved (similar term)
+salter|2
+(noun)|preserver (generic term)
+(noun)|salt merchant|merchant (generic term)|merchandiser (generic term)
+saltine|1
+(noun)|cracker (generic term)
+saltiness|3
+(noun)|coarseness|expressive style (generic term)|style (generic term)
+(noun)|salt|salinity|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|property (generic term)
+salting|1
+(noun)|seasoning (generic term)
+saltire|1
+(noun)|St. Andrew's cross|Cross (generic term)
+saltish|1
+(adj)|salty (similar term)
+saltlike|1
+(adj)|alkaline (similar term)|alkalic (similar term)
+salton sea|1
+(noun)|Salton Sea|lake (generic term)
+saltpan|1
+(noun)|basin (generic term)
+saltpeter|1
+(noun)|potassium nitrate|saltpetre|niter|nitre|nitrate (generic term)
+saltpetre|1
+(noun)|potassium nitrate|saltpeter|niter|nitre|nitrate (generic term)
+saltshaker|1
+(noun)|salt shaker|shaker (generic term)
+saltwater|1
+(noun)|seawater|brine|water (generic term)|H2O (generic term)|fresh water (antonym)
+saltwater fish|1
+(noun)|seafood (generic term)
+saltworks|1
+(noun)|plant (generic term)|works (generic term)|industrial plant (generic term)
+saltwort|2
+(noun)|barilla|glasswort|kali|kelpwort|Salsola kali|Salsola soda|shrub (generic term)|bush (generic term)
+(noun)|Batis maritima|shrub (generic term)|bush (generic term)
+saltwort family|1
+(noun)|Batidaceae|family Batidaceae|caryophylloid dicot family (generic term)
+salty|3
+(adj)|piquant|stimulating (similar term)
+(adj)|brackish (similar term)|briny (similar term)|saliferous (similar term)|saline (similar term)|saltish (similar term)|tasty (related term)|fresh (antonym)
+(adj)|salt|tasty (similar term)
+salubrious|2
+(adj)|healthy|good for you|wholesome (similar term)
+(adj)|wholesome (similar term)
+salubriousness|1
+(noun)|salubrity|healthfulness (generic term)|insalubriousness (antonym)|insalubrity (antonym)
+salubrity|1
+(noun)|salubriousness|healthfulness (generic term)|insalubriousness (antonym)|insalubrity (antonym)
+saluki|1
+(noun)|Saluki|gazelle hound|hound (generic term)|hound dog (generic term)
+salutary|1
+(adj)|beneficial|good|healthful (similar term)
+salutation|3
+(noun)|salute|recognition (generic term)|credit (generic term)
+(noun)|greeting|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|opening (generic term)
+salutatorian|1
+(noun)|salutatory speaker|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+salutatory|1
+(noun)|salutatory address|salutatory oration|oratory (generic term)
+salutatory address|1
+(noun)|salutatory oration|salutatory|oratory (generic term)
+salutatory oration|1
+(noun)|salutatory address|salutatory|oratory (generic term)
+salutatory speaker|1
+(noun)|salutatorian|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+salute|8
+(noun)|salutation|recognition (generic term)|credit (generic term)
+(noun)|military greeting|greeting (generic term)|salutation (generic term)
+(noun)|greeting (generic term)|salutation (generic term)
+(verb)|toast|drink|pledge|wassail|honor (generic term)|honour (generic term)|reward (generic term)
+(verb)|praise (generic term)
+(verb)|smell (generic term)
+(verb)|greet (generic term)|recognize (generic term)|recognise (generic term)
+(verb)|present|greet (generic term)|recognize (generic term)|recognise (generic term)
+saluter|1
+(noun)|greeter|welcomer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+salvador|1
+(noun)|El Salvador|Republic of El Salvador|Salvador|Central American country (generic term)|Central American nation (generic term)
+salvadora|1
+(noun)|Salvadora|genus Salvadora|dicot genus (generic term)|magnoliopsid genus (generic term)
+salvadora family|1
+(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family (generic term)|magnoliopsid family (generic term)
+salvadora persica|1
+(noun)|toothbrush tree|mustard tree|Salvadora persica|fruit tree (generic term)
+salvadoraceae|1
+(noun)|Salvadoraceae|family Salvadoraceae|Salvadora family|dicot family (generic term)|magnoliopsid family (generic term)
+salvadoran|2
+(adj)|Salvadoran|Salvadorean|Central American country|Central American nation (related term)
+(noun)|Salvadoran|Salvadorian|Salvadorean|South American (generic term)
+salvadoran capital|1
+(noun)|San Salvador|Salvadoran capital|national capital (generic term)
+salvadorean|2
+(adj)|Salvadoran|Salvadorean|Central American country|Central American nation (related term)
+(noun)|Salvadoran|Salvadorian|Salvadorean|South American (generic term)
+salvadorian|1
+(noun)|Salvadoran|Salvadorian|Salvadorean|South American (generic term)
+salvage|4
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)|commodity (generic term)|trade good (generic term)|good (generic term)
+(noun)|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+(verb)|salve|relieve|save|rescue (generic term)|deliver (generic term)
+(verb)|scavenge|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+salvageable|1
+(adj)|saved (similar term)
+salvager|1
+(noun)|salvor|rescuer (generic term)|recoverer (generic term)|saver (generic term)
+salvation|4
+(noun)|redemption|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|safety (generic term)
+(noun)|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+salvation army|1
+(noun)|Salvation Army|nongovernmental organization (generic term)|NGO (generic term)
+salve|4
+(noun)|ointment|unction|unguent|balm|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|redress (generic term)|remedy (generic term)|remediation (generic term)
+(verb)|salvage|relieve|save|rescue (generic term)|deliver (generic term)
+(verb)|medicate (generic term)|medicine (generic term)
+salvelinus|1
+(noun)|Salvelinus|genus Salvelinus|fish genus (generic term)
+salvelinus alpinus|1
+(noun)|Arctic char|Salvelinus alpinus|char (generic term)|charr (generic term)
+salvelinus fontinalis|1
+(noun)|brook trout|speckled trout|Salvelinus fontinalis|trout (generic term)
+salvelinus namaycush|1
+(noun)|lake trout|salmon trout|Salvelinus namaycush|trout (generic term)
+salver|1
+(noun)|tray (generic term)
+salverform|1
+(adj)|petalous (similar term)|petaled (similar term)|petalled (similar term)
+salvia|1
+(noun)|sage|herb (generic term)|herbaceous plant (generic term)
+salvia azurea|1
+(noun)|blue sage|Salvia azurea|sage (generic term)|salvia (generic term)
+salvia clarea|1
+(noun)|clary sage|Salvia clarea|sage (generic term)|salvia (generic term)
+salvia divinorum|1
+(noun)|Mexican mint|Salvia divinorum|sage (generic term)|salvia (generic term)
+salvia farinacea|1
+(noun)|blue sage|mealy sage|Salvia farinacea|sage (generic term)|salvia (generic term)
+salvia lancifolia|1
+(noun)|blue sage|Salvia reflexa|Salvia lancifolia|sage (generic term)|salvia (generic term)
+salvia leucophylla|1
+(noun)|purple sage|chaparral sage|Salvia leucophylla|sage (generic term)|salvia (generic term)
+salvia lyrata|1
+(noun)|cancerweed|cancer weed|Salvia lyrata|sage (generic term)|salvia (generic term)
+salvia officinalis|1
+(noun)|common sage|ramona|Salvia officinalis|sage (generic term)|salvia (generic term)
+salvia pratensis|1
+(noun)|meadow clary|Salvia pratensis|sage (generic term)|salvia (generic term)
+salvia reflexa|1
+(noun)|blue sage|Salvia reflexa|Salvia lancifolia|sage (generic term)|salvia (generic term)
+salvia sclarea|1
+(noun)|clary|Salvia sclarea|sage (generic term)|salvia (generic term)
+salvia spathacea|1
+(noun)|pitcher sage|Salvia spathacea|sage (generic term)|salvia (generic term)
+salvia verbenaca|1
+(noun)|wild sage|wild clary|vervain sage|Salvia verbenaca|sage (generic term)|salvia (generic term)
+salvidor dali|1
+(noun)|Dali|Salvidor Dali|painter (generic term)
+salvific|1
+(adj)|rescue|deliverance|delivery|saving (related term)
+salving|1
+(adj)|demulcent|emollient|softening|soft (similar term)
+salvinia|1
+(noun)|Salvinia|genus Salvinia|fern genus (generic term)
+salvinia auriculata|1
+(noun)|floating-moss|Salvinia rotundifolia|Salvinia auriculata|aquatic fern (generic term)|water fern (generic term)
+salvinia rotundifolia|1
+(noun)|floating-moss|Salvinia rotundifolia|Salvinia auriculata|aquatic fern (generic term)|water fern (generic term)
+salviniaceae|1
+(noun)|Salviniaceae|family Salviniaceae|fern family (generic term)
+salvinorin|1
+(noun)|hallucinogen (generic term)|hallucinogenic drug (generic term)|psychedelic drug (generic term)|psychodelic drug (generic term)
+salvo|3
+(noun)|outburst (generic term)|burst (generic term)|flare-up (generic term)
+(noun)|fusillade|volley|burst|fire (generic term)|firing (generic term)
+(noun)|cheer (generic term)
+salvor|1
+(noun)|salvager|rescuer (generic term)|recoverer (generic term)|saver (generic term)
+salwar|1
+(noun)|shalwar|trouser (generic term)|pant (generic term)
+salyut|1
+(noun)|Salyut|space station (generic term)|space platform (generic term)|space laboratory (generic term)
+salzburg|1
+(noun)|Salzburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+sam|1
+(noun)|surface-to-air missile|SAM|guided missile (generic term)
+sam adams|1
+(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader (generic term)
+sam browne belt|1
+(noun)|Sam Browne belt|belt (generic term)
+sam goldwyn|1
+(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sam houston|1
+(noun)|Houston|Sam Houston|Samuel Houston|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|general (generic term)|full general (generic term)
+sam shepard|1
+(noun)|Shepard|Sam Shepard|dramatist (generic term)|playwright (generic term)
+sam snead|1
+(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer (generic term)|golf player (generic term)|linksman (generic term)
+sama-veda|1
+(noun)|Sama-Veda|Samhita (generic term)
+saman|1
+(noun)|rain tree|monkeypod|monkey pod|zaman|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+samanala|1
+(noun)|Adam's Peak|Samanala|mountain peak (generic term)
+samara|1
+(noun)|key fruit|key|achene (generic term)
+samarang|1
+(noun)|Semarang|Samarang|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+samarcand|1
+(noun)|Samarkand|Samarcand|city (generic term)|metropolis (generic term)|urban center (generic term)
+samaria|1
+(noun)|Samaria|city (generic term)|metropolis (generic term)|urban center (generic term)
+samaritan|1
+(noun)|Samaritan|Israelite (generic term)
+samarium|1
+(noun)|Sm|atomic number 62|metallic element (generic term)|metal (generic term)
+samarkand|1
+(noun)|Samarkand|Samarcand|city (generic term)|metropolis (generic term)|urban center (generic term)
+samarskite|1
+(noun)|mineral (generic term)
+samba|5
+(noun)|obeche|obechi|arere|Triplochiton scleroxcylon|tree (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(noun)|canasta (generic term)|basket rummy (generic term)|meld (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+sambar|1
+(noun)|sambur|Cervus unicolor|deer (generic term)|cervid (generic term)
+sambre|1
+(noun)|Sambre|Sambre River|river (generic term)
+sambre river|1
+(noun)|Sambre|Sambre River|river (generic term)
+sambuca|1
+(noun)|liqueur (generic term)|cordial (generic term)
+sambucus|1
+(noun)|Sambucus|genus Sambucus|asterid dicot genus (generic term)
+sambucus caerulea|1
+(noun)|blue elder|blue elderberry|Sambucus caerulea|elder (generic term)|elderberry bush (generic term)
+sambucus canadensis|1
+(noun)|American elder|black elderberry|sweet elder|Sambucus canadensis|elder (generic term)|elderberry bush (generic term)
+sambucus ebulus|1
+(noun)|dwarf elder|danewort|Sambucus ebulus|elder (generic term)|elderberry bush (generic term)
+sambucus nigra|1
+(noun)|bourtree|black elder|common elder|elderberry|European elder|Sambucus nigra|elder (generic term)|elderberry bush (generic term)
+sambucus pubens|1
+(noun)|American red elder|red-berried elder|stinking elder|Sambucus pubens|elder (generic term)|elderberry bush (generic term)
+sambucus racemosa|1
+(noun)|European red elder|red-berried elder|Sambucus racemosa|elder (generic term)|elderberry bush (generic term)
+sambur|1
+(noun)|sambar|Cervus unicolor|deer (generic term)|cervid (generic term)
+same|6
+(adj)|aforesaid (similar term)|aforementioned (similar term)|said (similar term)|identical (similar term)|selfsame (similar term)|very (similar term)|other (antonym)
+(adj)|assonant (similar term)|comparable (similar term)|corresponding (similar term)|like (similar term)|cookie-cutter (similar term)|duplicate (similar term)|homophonic (similar term)|identical (similar term)|indistinguishable (similar term)|one (similar term)|synoptic (similar term)|synoptical (similar term)|equal (related term)|like (related term)|similar (related term)|similar (related term)|unvaried (related term)|unvarying (related term)|different (antonym)
+(adj)|like|equal|equivalent|unlike (antonym)
+(adj)|unchanged (similar term)
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+(noun)|Lapp|Sami|Saami|Same|Saame|Lappic (generic term)|Lappish (generic term)
+same-sex marriage|1
+(noun)|couple (generic term)|twosome (generic term)|duo (generic term)|duet (generic term)
+samekh|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+sameness|2
+(noun)|quality (generic term)|difference (antonym)
+(noun)|monotony|humdrum|unvariedness (generic term)
+samhita|1
+(noun)|Samhita|Vedic literature (generic term)|Veda (generic term)
+sami|2
+(noun)|Lapp|Lapplander|Sami|Saami|Same|Saame|European (generic term)
+(noun)|Lapp|Sami|Saami|Same|Saame|Lappic (generic term)|Lappish (generic term)
+samia|1
+(noun)|Samia|genus Samia|arthropod genus (generic term)
+samia cynthia|2
+(noun)|ailanthus silkworm|Samia cynthia|silkworm (generic term)|giant silkworm (generic term)|wild wilkworm (generic term)
+(noun)|cynthia moth|Samia cynthia|Samia walkeri|giant silkworm moth (generic term)|silkworm moth (generic term)
+samia walkeri|1
+(noun)|cynthia moth|Samia cynthia|Samia walkeri|giant silkworm moth (generic term)|silkworm moth (generic term)
+samian ware|1
+(noun)|terra sigillata|Samian ware|earthenware (generic term)
+samiel|1
+(noun)|simoom|simoon|wind (generic term)|air current (generic term)|current of air (generic term)
+samisen|1
+(noun)|shamisen|stringed instrument (generic term)
+samite|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+samizdat|1
+(noun)|underground press|print media (generic term)
+samnite|1
+(noun)|Samnite|Italian (generic term)
+samoa|2
+(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country (generic term)|state (generic term)|land (generic term)
+(noun)|Samoa|Samoan Islands|island (generic term)
+samoa i sisifo|1
+(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country (generic term)|state (generic term)|land (generic term)
+samoan|2
+(adj)|Samoan|country|state|land (related term)
+(noun)|Samoan|Polynesian (generic term)
+samoan islands|1
+(noun)|Samoa|Samoan Islands|island (generic term)
+samolus|1
+(noun)|Samolus|genus Samolus|dicot genus (generic term)|magnoliopsid genus (generic term)
+samolus floribundus|1
+(noun)|brookweed|Samolus parviflorus|Samolus floribundus|water pimpernel (generic term)
+samolus parviflorus|1
+(noun)|brookweed|Samolus parviflorus|Samolus floribundus|water pimpernel (generic term)
+samolus valerandii|1
+(noun)|brookweed|Samolus valerandii|water pimpernel (generic term)
+samosa|1
+(noun)|turnover (generic term)
+samovar|1
+(noun)|urn (generic term)
+samoyed|3
+(noun)|Samoyed|Russian (generic term)
+(noun)|Samoyedic|Samoyed|Uralic (generic term)|Uralic language (generic term)
+(noun)|Samoyed|Samoyede|spitz (generic term)
+samoyede|1
+(noun)|Samoyed|Samoyede|spitz (generic term)
+samoyedic|1
+(noun)|Samoyedic|Samoyed|Uralic (generic term)|Uralic language (generic term)
+samoyedic-speaking|1
+(adj)|Samoyedic-speaking|communicative (similar term)|communicatory (similar term)
+sampan|1
+(noun)|skiff (generic term)
+samphire|1
+(noun)|glasswort|Salicornia europaea|herb (generic term)|herbaceous plant (generic term)
+sample|4
+(noun)|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+(noun)|sample distribution|sampling|distribution (generic term)|statistical distribution (generic term)
+(noun)|natural object (generic term)
+(verb)|try|try out|taste|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+sample distribution|1
+(noun)|sample|sampling|distribution (generic term)|statistical distribution (generic term)
+sampler|4
+(noun)|sampling station|observation station (generic term)
+(noun)|taster|taste tester|taste-tester|critic (generic term)
+(noun)|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|embroidery (generic term)|fancywork (generic term)
+sampling|3
+(noun)|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+(noun)|sample distribution|sample|distribution (generic term)|statistical distribution (generic term)
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+sampling frequency|1
+(noun)|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+sampling rate|1
+(noun)|rate (generic term)
+sampling station|1
+(noun)|sampler|observation station (generic term)
+samsara|1
+(noun)|cycle (generic term)
+samson|2
+(noun)|Samson|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|bull|bruiser|strapper|Samson|man (generic term)|adult male (generic term)
+samuel|1
+(noun)|Samuel|prophet (generic term)
+samuel adams|1
+(noun)|Adams|Sam Adams|Samuel Adams|American Revolutionary leader (generic term)
+samuel barber|1
+(noun)|Barber|Samuel Barber|composer (generic term)
+samuel beckett|1
+(noun)|Beckett|Samuel Beckett|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+samuel butler|2
+(noun)|Butler|Samuel Butler|writer (generic term)|author (generic term)
+(noun)|Butler|Samuel Butler|poet (generic term)
+samuel dashiell hammett|1
+(noun)|Hammett|Dashiell Hammett|Samuel Dashiell Hammett|writer (generic term)|author (generic term)
+samuel de champlain|1
+(noun)|Champlain|Samuel de Champlain|explorer (generic term)|adventurer (generic term)
+samuel f. b. morse|1
+(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor (generic term)|discoverer (generic term)|artificer (generic term)|painter (generic term)
+samuel finley breese morse|1
+(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor (generic term)|discoverer (generic term)|artificer (generic term)|painter (generic term)
+samuel goldwyn|1
+(noun)|Goldwyn|Sam Goldwyn|Samuel Goldwyn|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+samuel gompers|1
+(noun)|Gompers|Samuel Gompers|labor leader (generic term)
+samuel houston|1
+(noun)|Houston|Sam Houston|Samuel Houston|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|general (generic term)|full general (generic term)
+samuel huntington|1
+(noun)|Huntington|Samuel Huntington|American Revolutionary leader (generic term)
+samuel jackson snead|1
+(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer (generic term)|golf player (generic term)|linksman (generic term)
+samuel johnson|1
+(noun)|Johnson|Samuel Johnson|Dr. Johnson|writer (generic term)|author (generic term)|lexicographer (generic term)|lexicologist (generic term)
+samuel langhorne clemens|1
+(noun)|Clemens|Samuel Langhorne Clemens|Mark Twain|writer (generic term)|author (generic term)|humorist (generic term)|humourist (generic term)
+samuel morse|1
+(noun)|Morse|Samuel Morse|Samuel F. B. Morse|Samuel Finley Breese Morse|inventor (generic term)|discoverer (generic term)|artificer (generic term)|painter (generic term)
+samuel pepys|1
+(noun)|Pepys|Samuel Pepys|diarist (generic term)|diary keeper (generic term)|journalist (generic term)
+samuel pierpoint langley|1
+(noun)|Langley|Samuel Pierpoint Langley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+samuel rawson gardiner|1
+(noun)|Gardiner|Samuel Rawson Gardiner|historian (generic term)|historiographer (generic term)
+samuel rosenstock|1
+(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet (generic term)
+samuel taylor coleridge|1
+(noun)|Coleridge|Samuel Taylor Coleridge|poet (generic term)
+samuel wiesenthal|1
+(noun)|Wiesenthal|Samuel Wiesenthal|investigator (generic term)
+samuel wilder|1
+(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+samurai|2
+(noun)|warrior (generic term)
+(noun)|nobility (generic term)|aristocracy (generic term)
+san andreas fault|1
+(noun)|San Andreas Fault|fault (generic term)|faulting (generic term)|geological fault (generic term)|shift (generic term)|fracture (generic term)|break (generic term)
+san angelo|1
+(noun)|San Angelo|town (generic term)
+san antonio|1
+(noun)|San Antonio|city (generic term)|metropolis (generic term)|urban center (generic term)
+san bernadino|1
+(noun)|San Bernadino|city (generic term)|metropolis (generic term)|urban center (generic term)
+san carlos apache|1
+(noun)|San Carlos Apache|Apache (generic term)
+san diego|1
+(noun)|San Diego|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+san diego bay|1
+(noun)|San Diego Bay|bay (generic term)|embayment (generic term)
+san fernando valley|1
+(noun)|San Fernando Valley|valley (generic term)|vale (generic term)
+san francisco|1
+(noun)|San Francisco|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+san francisco bay|1
+(noun)|San Francisco Bay|bay (generic term)|embayment (generic term)
+san joaquin river|1
+(noun)|San Joaquin River|river (generic term)
+san joaquin valley|1
+(noun)|San Joaquin Valley|valley (generic term)|vale (generic term)
+san jose|2
+(noun)|San Jose|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|San Jose|capital of Costa Rica|national capital (generic term)
+san jose scale|1
+(noun)|San Jose scale|Aspidiotus perniciosus|armored scale (generic term)
+san juan|1
+(noun)|San Juan|city (generic term)|metropolis (generic term)|urban center (generic term)
+san juan mountains|1
+(noun)|San Juan Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+san luis potosi|1
+(noun)|San Luis Potosi|city (generic term)|metropolis (generic term)|urban center (generic term)
+san marinese|2
+(adj)|San Marinese|European country|European nation (related term)
+(noun)|San Marinese|European (generic term)
+san marino|2
+(noun)|San Marino|capital of San Marino|national capital (generic term)
+(noun)|San Marino|Republic of San Marino|European country (generic term)|European nation (generic term)
+san mateo|1
+(noun)|San Mateo|town (generic term)
+san pablo|1
+(noun)|San Pablo|town (generic term)
+san pedro sula|1
+(noun)|San Pedro Sula|city (generic term)|metropolis (generic term)|urban center (generic term)
+san salvador|1
+(noun)|San Salvador|Salvadoran capital|national capital (generic term)
+san sebastian|1
+(noun)|San Sebastian|city (generic term)|metropolis (generic term)|urban center (generic term)
+sana|1
+(noun)|Sana|Sanaa|Sana'a|national capital (generic term)
+sana'a|1
+(noun)|Sana|Sanaa|Sana'a|national capital (generic term)
+sanaa|1
+(noun)|Sana|Sanaa|Sana'a|national capital (generic term)
+sanatarium|1
+(noun)|sanatorium|sanitarium|hospital (generic term)|infirmary (generic term)
+sanative|1
+(adj)|curative|healing|alterative|remedial|therapeutic|healthful (similar term)
+sanatorium|2
+(noun)|sanatarium|sanitarium|hospital (generic term)|infirmary (generic term)
+(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|snake pit|mental hospital (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+sanchez|1
+(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist (generic term)
+sanctification|1
+(noun)|religious ceremony (generic term)|religious ritual (generic term)
+sanctified|1
+(adj)|consecrated|sacred|holy (similar term)
+sanctify|2
+(verb)|consecrate|bless|hallow|declare (generic term)|desecrate (antonym)
+(verb)|purify|purge|change (generic term)|alter (generic term)|modify (generic term)
+sanctimonious|1
+(adj)|holier-than-thou|pietistic|pietistical|pharisaic|pharisaical|self-righteous|pious (similar term)
+sanctimoniously|1
+(adv)|self-righteously
+sanctimoniousness|1
+(noun)|sanctimony|hypocrisy (generic term)
+sanctimony|1
+(noun)|sanctimoniousness|hypocrisy (generic term)
+sanction|7
+(noun)|countenance|endorsement|indorsement|warrant|imprimatur|approval (generic term)|commendation (generic term)
+(noun)|social control (generic term)
+(noun)|authority|authorization|authorisation|permission (generic term)
+(noun)|authorization (generic term)|authorisation (generic term)|empowerment (generic term)
+(verb)|approve|O.K.|okay|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|disapprove (antonym)
+(verb)|empower (generic term)|authorise (generic term)|authorize (generic term)
+(verb)|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+sanctionative|1
+(adj)|sanctioning|enabling (similar term)
+sanctioned|3
+(adj)|canonic|canonical|orthodox (similar term)
+(adj)|ratified|legal (similar term)
+(adj)|approved|authorized (similar term)|authorised (similar term)
+sanctioning|1
+(adj)|sanctionative|enabling (similar term)
+sanctitude|1
+(noun)|holiness|sanctity|quality (generic term)|unholiness (antonym)
+sanctity|1
+(noun)|holiness|sanctitude|quality (generic term)|unholiness (antonym)
+sanctuary|3
+(noun)|place (generic term)|property (generic term)
+(noun)|refuge|asylum|shelter (generic term)
+(noun)|chancel|bema|area (generic term)
+sanctum|2
+(noun)|sanctum sanctorum|retreat (generic term)
+(noun)|holy place|holy|topographic point (generic term)|place (generic term)|spot (generic term)
+sanctum sanctorum|2
+(noun)|sanctum|retreat (generic term)
+(noun)|holy of holies|sanctuary (generic term)
+sand|4
+(noun)|soil (generic term)|dirt (generic term)
+(noun)|Sand|George Sand|Amandine Aurore Lucie Dupin|Baroness Dudevant|writer (generic term)|author (generic term)
+(noun)|backbone|grit|guts|moxie|gumption|fortitude (generic term)
+(verb)|sandpaper|smooth (generic term)|smoothen (generic term)
+sand-blind|1
+(adj)|dim-sighted|near-blind|purblind|visually impaired|visually challenged|blind (similar term)|unsighted (similar term)
+sand badger|1
+(noun)|hog badger|hog-nosed badger|Arctonyx collaris|badger (generic term)
+sand bar|1
+(noun)|sandbar|bar (generic term)
+sand berry|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+sand blackberry|1
+(noun)|Rubus cuneifolius|blackberry (generic term)|blackberry bush (generic term)
+sand cast|1
+(verb)|cast (generic term)|mold (generic term)|mould (generic term)
+sand cat|1
+(noun)|wildcat (generic term)
+sand cherry|1
+(noun)|Prunus pumila|Prunus pumilla susquehanae|Prunus susquehanae|Prunus cuneata|shrub (generic term)|bush (generic term)
+sand crack|1
+(noun)|animal disease (generic term)
+sand cricket|1
+(noun)|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper (generic term)|tettigoniid (generic term)
+sand dab|2
+(noun)|flounder (generic term)
+(noun)|lefteye flounder (generic term)|lefteyed flounder (generic term)
+sand devil's claw|1
+(noun)|Proboscidea arenaria|Martynia arenaria|herb (generic term)|herbaceous plant (generic term)
+sand dollar|1
+(noun)|sea urchin (generic term)
+sand dropseed|1
+(noun)|Sporobolus cryptandrus|dropseed (generic term)|drop-seed (generic term)
+sand dune|1
+(noun)|dune|ridge (generic term)
+sand eel|1
+(noun)|sand lance|sand launce|launce|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sand flea|1
+(noun)|beach flea|sand hopper|sandhopper|amphipod (generic term)
+sand fly|1
+(noun)|sandfly|Phlebotomus papatasii|gnat (generic term)
+sand grouse|1
+(noun)|sandgrouse|columbiform bird (generic term)
+sand hopper|1
+(noun)|beach flea|sandhopper|sand flea|amphipod (generic term)
+sand lance|1
+(noun)|sand launce|sand eel|launce|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sand launce|1
+(noun)|sand lance|sand eel|launce|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sand leek|1
+(noun)|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant (generic term)
+sand lizard|2
+(noun)|Lacerta agilis|lacertid lizard (generic term)|lacertid (generic term)
+(noun)|side-blotched lizard|Uta stansburiana|iguanid (generic term)|iguanid lizard (generic term)
+sand martin|1
+(noun)|bank martin|bank swallow|Riparia riparia|martin (generic term)
+sand myrtle|1
+(noun)|Leiophyllum buxifolium|shrub (generic term)|bush (generic term)
+sand painting|1
+(noun)|painting (generic term)|picture (generic term)
+sand phlox|1
+(noun)|chickweed phlox|Phlox bifida|Phlox stellaria|phlox (generic term)
+sand rat|2
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|Meriones longifrons|gerbil (generic term)|gerbille (generic term)
+sand reed|1
+(noun)|sand sedge|Carex arenaria|sedge (generic term)
+sand sage|1
+(noun)|silvery wormwood|Artemisia filifolia|sagebrush (generic term)|sage brush (generic term)
+sand sedge|1
+(noun)|sand reed|Carex arenaria|sedge (generic term)
+sand shark|1
+(noun)|sand tiger|Carcharias taurus|Odontaspis taurus|shark (generic term)
+sand snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+sand sole|1
+(noun)|Psettichthys melanostichus|sole (generic term)
+sand spurry|1
+(noun)|sea spurry|Spergularia rubra|weed (generic term)
+sand stargazer|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sand tiger|1
+(noun)|sand shark|Carcharias taurus|Odontaspis taurus|shark (generic term)
+sand trap|1
+(noun)|bunker|trap|hazard (generic term)
+sand tumor|1
+(noun)|psammoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+sand verbena|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+sand viper|2
+(noun)|horned viper|cerastes|horned asp|Cerastes cornutus|viper (generic term)
+(noun)|hognose snake|puff adder|colubrid snake (generic term)|colubrid (generic term)
+sand wedge|1
+(noun)|wedge (generic term)
+sandal|1
+(noun)|shoe (generic term)
+sandaled|1
+(adj)|sandalled|shod (similar term)|shodden (similar term)|shoed (similar term)
+sandalled|1
+(adj)|sandaled|shod (similar term)|shodden (similar term)|shoed (similar term)
+sandalwood|1
+(noun)|wood (generic term)
+sandalwood family|1
+(noun)|Santalaceae|family Santalaceae|dilleniid dicot family (generic term)
+sandalwood tree|1
+(noun)|true sandalwood|Santalum album|tree (generic term)
+sandarac|3
+(noun)|citronwood|wood (generic term)
+(noun)|sandarach|natural resin (generic term)
+(noun)|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress (generic term)
+sandarac tree|1
+(noun)|sandarac|Tetraclinis articulata|Callitris quadrivalvis|cypress (generic term)
+sandarach|1
+(noun)|sandarac|natural resin (generic term)
+sandbag|6
+(noun)|bag (generic term)
+(verb)|wrong (generic term)
+(verb)|dragoon|railroad|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|stun|hit (generic term)
+(verb)|misinform (generic term)|mislead (generic term)
+(verb)|strengthen (generic term)
+sandbagger|1
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+sandbank|1
+(noun)|bank (generic term)
+sandbar|1
+(noun)|sand bar|bar (generic term)
+sandbar shark|2
+(noun)|blacktip shark|Carcharhinus limbatus|requiem shark (generic term)
+(noun)|Carcharhinus plumbeus|requiem shark (generic term)
+sandberry|1
+(noun)|common bearberry|red bearberry|wild cranberry|mealberry|hog cranberry|sand berry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+sandblast|2
+(noun)|gust (generic term)|blast (generic term)|blow (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+sandblaster|1
+(noun)|hand tool (generic term)
+sandbox|2
+(noun)|mold (generic term)|mould (generic term)|cast (generic term)
+(noun)|sandpile|plaything (generic term)|toy (generic term)
+sandboy|1
+(noun)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)
+sandbur|1
+(noun)|sandspur|field sandbur|Cenchrus tribuloides|grass (generic term)
+sandburg|1
+(noun)|Sandburg|Carl Sandburg|writer (generic term)|author (generic term)
+sander|1
+(noun)|drum sander|electric sander|smoother|power tool (generic term)
+sanderling|1
+(noun)|Crocethia alba|sandpiper (generic term)
+sandfish|2
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|beaked salmon|Gonorhynchus gonorhynchus|soft-finned fish (generic term)|malacopterygian (generic term)
+sandfly|1
+(noun)|sand fly|Phlebotomus papatasii|gnat (generic term)
+sandfly fever|1
+(noun)|pappataci fever|phlebotomus|disease (generic term)
+sandglass|1
+(noun)|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+sandgrouse|1
+(noun)|sand grouse|columbiform bird (generic term)
+sandhi|1
+(noun)|articulation (generic term)
+sandhopper|1
+(noun)|beach flea|sand hopper|sand flea|amphipod (generic term)
+sandiness|1
+(noun)|coarseness (generic term)|graininess (generic term)|granularity (generic term)
+sandlike|1
+(adj)|arenaceous|sandy|argillaceous (antonym)
+sandlot|1
+(noun)|vacant lot (generic term)|building site (generic term)
+sandman|1
+(noun)|elf (generic term)|hob (generic term)|gremlin (generic term)|pixie (generic term)|pixy (generic term)|brownie (generic term)|imp (generic term)
+sandor kellner|1
+(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sandpaper|2
+(noun)|emery paper|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+(verb)|sand|smooth (generic term)|smoothen (generic term)
+sandpapery|1
+(adj)|rough (similar term)|unsmooth (similar term)
+sandpile|1
+(noun)|sandbox|plaything (generic term)|toy (generic term)
+sandpiper|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+sandpiper-like|1
+(adj)|animal (similar term)
+sandpit|1
+(noun)|pit (generic term)|cavity (generic term)
+sandril|1
+(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive (generic term)|antihypertensive drug (generic term)
+sandro botticelli|1
+(noun)|Botticelli|Sandro Botticelli|Alessandro di Mariano dei Filipepi|old master (generic term)
+sands|1
+(noun)|littoral|litoral|littoral zone|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+sandspur|1
+(noun)|sandbur|field sandbur|Cenchrus tribuloides|grass (generic term)
+sandstone|1
+(noun)|arenaceous rock (generic term)
+sandstorm|1
+(noun)|dust storm|duster|sirocco|windstorm (generic term)
+sandwich|3
+(noun)|snack food (generic term)
+(verb)|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+sandwich board|1
+(noun)|signboard (generic term)|sign (generic term)
+sandwich islands|1
+(noun)|Hawaiian Islands|Sandwich Islands|archipelago (generic term)
+sandwich plate|1
+(noun)|dish (generic term)
+sandwichman|1
+(noun)|employee (generic term)
+sandwort|3
+(noun)|Moehringia mucosa|flower (generic term)
+(noun)|Moehringia lateriflora|flower (generic term)
+(noun)|flower (generic term)
+sandy|4
+(adj)|friable|light|loose (similar term)
+(adj)|flaxen|blond (similar term)|blonde (similar term)|light-haired (similar term)
+(adj)|arenaceous|sandlike|argillaceous (antonym)
+(adj)|beachy (similar term)|beachlike (similar term)
+sandy mushroom|1
+(noun)|Tricholoma populinum|agaric (generic term)
+sane|2
+(adj)|compos mentis (similar term)|of sound mind (similar term)|in his right mind (similar term)|in her right mind (similar term)|in their right minds (similar term)|lucid (similar term)|rational (related term)|insane (antonym)
+(adj)|reasonable|rational (similar term)
+sanely|2
+(adv)|sensibly|reasonably|unreasonably (antonym)
+(adv)|insanely (antonym)
+saneness|1
+(noun)|sanity|mental health (generic term)|insanity (antonym)
+sanfoin|1
+(noun)|sainfoin|holy clover|esparcet|Onobrychis viciifolia|Onobrychis viciaefolia|herb (generic term)|herbaceous plant (generic term)
+sang|1
+(noun)|American ginseng|Panax quinquefolius|herb (generic term)|herbaceous plant (generic term)
+sang-froid|1
+(noun)|aplomb|assuredness|cool|poise|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+sangapenum|1
+(noun)|gum sangapenum|gum (generic term)
+sangaree|1
+(noun)|sangria|drink (generic term)
+sangay|1
+(noun)|Sangay|volcano (generic term)
+sanger|2
+(noun)|Sanger|Frederick Sanger|Fred Sanger|biochemist (generic term)
+(noun)|Sanger|Margaret Sanger|Margaret Higgins Sanger|nurse (generic term)
+sango|1
+(noun)|Sango|Niger-Congo (generic term)
+sangoma|1
+(noun)|therapist (generic term)|healer (generic term)
+sangraal|1
+(noun)|grail|Holy Grail|Sangraal|chalice (generic term)|goblet (generic term)
+sangria|1
+(noun)|sangaree|drink (generic term)
+sanguification|1
+(noun)|hematopoiesis|haematopoiesis|hemopoiesis|haemopoiesis|hemogenesis|haemogenesis|hematogenesis|haematogenesis|organic process (generic term)|biological process (generic term)
+sanguinaria|1
+(noun)|Sanguinaria|genus Sanguinaria|dilleniid dicot genus (generic term)
+sanguinaria canadensis|1
+(noun)|bloodroot|puccoon|redroot|tetterwort|Sanguinaria canadensis|herb (generic term)|herbaceous plant (generic term)
+sanguinary|2
+(adj)|gory|sanguineous|slaughterous|butcherly|bloody (similar term)
+(adj)|bloodthirsty|bloody-minded|bloody (similar term)
+sanguinary ant|1
+(noun)|Formica sanguinea|slave-making ant (generic term)|slave-maker (generic term)
+sanguine|3
+(adj)|optimistic (similar term)
+(adj)|rubicund|ruddy|florid|healthy (similar term)
+(noun)|red (generic term)|redness (generic term)
+sanguineness|1
+(noun)|sanguinity|optimism (generic term)
+sanguineous|1
+(adj)|gory|sanguinary|slaughterous|butcherly|bloody (similar term)
+sanguinity|1
+(noun)|sanguineness|optimism (generic term)
+sanhedrin|1
+(noun)|Sanhedrin|council (generic term)
+sanicle|1
+(noun)|snakeroot|herb (generic term)|herbaceous plant (generic term)
+sanicula|1
+(noun)|Sanicula|genus Sanicula|rosid dicot genus (generic term)
+sanicula arctopoides|1
+(noun)|footsteps-of-spring|Sanicula arctopoides|sanicle (generic term)|snakeroot (generic term)
+sanicula bipinnatifida|1
+(noun)|purple sanicle|Sanicula bipinnatifida|sanicle (generic term)|snakeroot (generic term)
+sanicula europaea|1
+(noun)|European sanicle|Sanicula Europaea|sanicle (generic term)|snakeroot (generic term)
+sanies|1
+(noun)|pus|purulence|suppuration|ichor|festering|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+sanious|1
+(adj)|ichorous|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+sanitariness|1
+(noun)|sanitary condition (generic term)|unsanitariness (antonym)
+sanitarium|1
+(noun)|sanatorium|sanatarium|hospital (generic term)|infirmary (generic term)
+sanitary|1
+(adj)|healthful|hygienic (similar term)|hygienical (similar term)|unsanitary (antonym)
+sanitary code|1
+(noun)|health code|code (generic term)|codification (generic term)
+sanitary condition|1
+(noun)|condition (generic term)|status (generic term)
+sanitary landfill|1
+(noun)|landfill (generic term)
+sanitary napkin|1
+(noun)|Kotex|pad (generic term)
+sanitate|1
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+sanitation|2
+(noun)|sanitariness (generic term)
+(noun)|sanitization|sanitisation|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sanitation department|1
+(noun)|local department (generic term)|department of local government (generic term)
+sanitisation|1
+(noun)|sanitation|sanitization|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sanitise|2
+(verb)|sanitize|hygienize|hygienise|clean (generic term)|make clean (generic term)
+(verb)|sanitize|change (generic term)|alter (generic term)|modify (generic term)
+sanitised|1
+(adj)|sanitized
+sanitization|1
+(noun)|sanitation|sanitisation|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sanitize|2
+(verb)|sanitise|hygienize|hygienise|clean (generic term)|make clean (generic term)
+(verb)|sanitise|change (generic term)|alter (generic term)|modify (generic term)
+sanitized|1
+(adj)|sanitised
+sanity|1
+(noun)|saneness|mental health (generic term)|insanity (antonym)
+sannup|1
+(noun)|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+sannyasi|1
+(noun)|sannyasin|sanyasi|beggar (generic term)|mendicant (generic term)|Hindu (generic term)|Hindoo (generic term)
+sannyasin|1
+(noun)|sannyasi|sanyasi|beggar (generic term)|mendicant (generic term)|Hindu (generic term)|Hindoo (generic term)
+sans serif|1
+(noun)|Helvetica|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+sansevieria|1
+(noun)|bowstring hemp|agave (generic term)|century plant (generic term)|American aloe (generic term)
+sansevieria guineensis|1
+(noun)|African bowstring hemp|African hemp|Sansevieria guineensis|sansevieria (generic term)|bowstring hemp (generic term)
+sansevieria trifasciata|1
+(noun)|mother-in-law's tongue|snake plant|Sansevieria trifasciata|sansevieria (generic term)|bowstring hemp (generic term)
+sansevieria zeylanica|1
+(noun)|Ceylon bowstring hemp|Sansevieria zeylanica|sansevieria (generic term)|bowstring hemp (generic term)
+sanskrit|1
+(noun)|Sanskrit|Sanskritic language|Indic (generic term)|Indo-Aryan (generic term)
+sanskrit literature|1
+(noun)|Sanskrit literature|literature (generic term)
+sanskritic language|1
+(noun)|Sanskrit|Sanskritic language|Indic (generic term)|Indo-Aryan (generic term)
+sanson-flamsteed projection|1
+(noun)|sinusoidal projection|Sanson-Flamsteed projection|equal-area projection (generic term)|equal-area map projection (generic term)
+santa|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+santa ana|3
+(noun)|Santa Ana|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general (generic term)|full general (generic term)
+(noun)|Santa Ana|city (generic term)|metropolis (generic term)|urban center (generic term)
+santa anna|1
+(noun)|Santa Anna|Santa Ana|Antonio Lopez de Santa Anna|Antonio Lopez de Santa Ana|general (generic term)|full general (generic term)
+santa barbara|1
+(noun)|Santa Barbara|town (generic term)
+santa catalina|1
+(noun)|Santa Catalina|Catalina Island|island (generic term)
+santa clara|1
+(noun)|Santa Clara|city (generic term)|metropolis (generic term)|urban center (generic term)
+santa claus|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+santa cruz|2
+(noun)|Santa Cruz|town (generic term)
+(noun)|Santa Cruz|city (generic term)|metropolis (generic term)|urban center (generic term)
+santa cruz cypress|1
+(noun)|Santa Cruz cypress|Cupressus abramsiana|Cupressus goveniana abramsiana|cypress (generic term)|cypress tree (generic term)
+santa fe|1
+(noun)|Santa Fe|capital of New Mexico|state capital (generic term)
+santa fe trail|1
+(noun)|Santa Fe Trail|trail (generic term)
+santa gertrudis|1
+(noun)|Santa Gertrudis|beef (generic term)|beef cattle (generic term)
+santa lucia fir|1
+(noun)|Santa Lucia fir|bristlecone fir|Abies bracteata|Abies venusta|fir (generic term)|fir tree (generic term)|true fir (generic term)
+santa maria de belem|1
+(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+santa maria del tule|1
+(noun)|Santa Maria del Tule|town (generic term)
+santa maria tree|1
+(noun)|calaba|Santa Maria tree|Calophyllum calaba|tree (generic term)
+santa sofia|1
+(noun)|Hagia Sophia|Hagia Sofia|Santa Sophia|Santa Sofia|museum (generic term)
+santa sophia|1
+(noun)|Hagia Sophia|Hagia Sofia|Santa Sophia|Santa Sofia|museum (generic term)
+santalaceae|1
+(noun)|Santalaceae|family Santalaceae|sandalwood family|dilleniid dicot family (generic term)
+santalales|1
+(noun)|Santalales|order Santalales|plant order (generic term)
+santalum|1
+(noun)|Santalum|genus Santalum|dilleniid dicot genus (generic term)
+santalum album|1
+(noun)|sandalwood tree|true sandalwood|Santalum album|tree (generic term)
+santee|2
+(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux (generic term)|Siouan (generic term)
+(noun)|Santee|Siouan (generic term)|Siouan language (generic term)
+santee dakota|1
+(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux (generic term)|Siouan (generic term)
+santee sioux|1
+(noun)|Santee|Santee Sioux|Santee Dakota|Eastern Sioux|Sioux (generic term)|Siouan (generic term)
+santiago|4
+(noun)|Santiago de los Caballeros|Santiago|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Santiago de Cuba|Santiago|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital (generic term)
+(noun)|Santiago|Santiago de Cuba|naval battle (generic term)
+santiago de chile|1
+(noun)|Gran Santiago|Santiago|Santiago de Chile|capital of Chile|national capital (generic term)
+santiago de cuba|2
+(noun)|Santiago de Cuba|Santiago|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Santiago|Santiago de Cuba|naval battle (generic term)
+santiago de los caballeros|1
+(noun)|Santiago de los Caballeros|Santiago|city (generic term)|metropolis (generic term)|urban center (generic term)
+santiago ramon y cajal|1
+(noun)|Ramon y Cajal|Santiago Ramon y Cajal|histologist (generic term)
+santims|1
+(noun)|Latvian monetary unit (generic term)
+santo domingo|1
+(noun)|Santo Domingo|Ciudad Trujillo|capital of the Dominican Republic|national capital (generic term)
+santolina|1
+(noun)|Santolina|genus Santolina|asterid dicot genus (generic term)
+santolina chamaecyparissus|1
+(noun)|lavender cotton|Santolina chamaecyparissus|shrub (generic term)|bush (generic term)
+santos|1
+(noun)|Santos|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+sanvitalia|1
+(noun)|Sanvitalia|genus Sanvitalia|asterid dicot genus (generic term)
+sanvitalia procumbens|1
+(noun)|creeping zinnia|Sanvitalia procumbens|herb (generic term)|herbaceous plant (generic term)
+sanwa millet|1
+(noun)|Japanese millet|billion-dollar grass|Japanese barnyard millet|Echinochloa frumentacea|millet (generic term)
+sanyasi|1
+(noun)|sannyasi|sannyasin|beggar (generic term)|mendicant (generic term)|Hindu (generic term)|Hindoo (generic term)
+sao bernardo do campo|1
+(noun)|Sao Bernardo do Campo|city (generic term)|metropolis (generic term)|urban center (generic term)
+sao francisco|1
+(noun)|Sao Francisco|river (generic term)
+sao goncalo|1
+(noun)|Sao Goncalo|city (generic term)|metropolis (generic term)|urban center (generic term)
+sao joao de meriti|1
+(noun)|Sao Joao de Meriti|city (generic term)|metropolis (generic term)|urban center (generic term)
+sao jose dos campos|1
+(noun)|Sao Jose dos Campos|city (generic term)|metropolis (generic term)|urban center (generic term)
+sao louis|1
+(noun)|Sao Louis|city (generic term)|metropolis (generic term)|urban center (generic term)
+sao paulo|1
+(noun)|Sao Paulo|city (generic term)|metropolis (generic term)|urban center (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+sao thome e principe monetary unit|1
+(noun)|Sao Thome e Principe monetary unit|monetary unit (generic term)
+sao tiago island|1
+(noun)|Sao Tiago Island|island (generic term)
+sao tome|1
+(noun)|Sao Tome|national capital (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+saone|1
+(noun)|Saone|Saone River|river (generic term)
+saone river|1
+(noun)|Saone|Saone River|river (generic term)
+sap|5
+(noun)|solution (generic term)
+(noun)|fool|saphead|muggins|tomfool|simpleton (generic term)|simple (generic term)
+(noun)|blackjack|cosh|bludgeon (generic term)
+(verb)|run down|exhaust|play out|tire|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|cave (generic term)|undermine (generic term)
+sapele mahogany|1
+(noun)|African scented mahogany|cedar mahogany|Entandrophragma cylindricum|mahogany (generic term)|mahogany tree (generic term)
+saphar|1
+(noun)|Safar|Saphar|Islamic calendar month (generic term)
+saphead|1
+(noun)|fool|sap|muggins|tomfool|simpleton (generic term)|simple (generic term)
+saphenous nerve|1
+(noun)|nervus saphenus|nerve (generic term)|nervus (generic term)
+saphenous vein|1
+(noun)|vena saphena|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+sapid|1
+(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|flavoursome|saporous|tasty (similar term)
+sapidity|2
+(noun)|relish|flavor|flavour|savor|savour|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sapidness|flavorsomeness (generic term)|flavoursomeness (generic term)|savoriness (generic term)
+sapidness|1
+(noun)|sapidity|flavorsomeness (generic term)|flavoursomeness (generic term)|savoriness (generic term)
+sapience|1
+(noun)|wisdom|know-how (generic term)
+sapiens|1
+(adj)|homo|man|human being|human (related term)
+sapient|1
+(adj)|perspicacious|sagacious|wise (similar term)
+sapiential|1
+(adj)|wise (similar term)
+sapiential book|1
+(noun)|wisdom book|wisdom literature|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+sapiently|1
+(adv)|astutely|shrewdly|sagaciously|acutely
+sapindaceae|1
+(noun)|Sapindaceae|family Sapindaceae|soapberry family|dicot family (generic term)|magnoliopsid family (generic term)
+sapindales|1
+(noun)|Sapindales|order Sapindales|plant order (generic term)
+sapindus|1
+(noun)|Sapindus|genus Sapindus|dicot genus (generic term)|magnoliopsid genus (generic term)
+sapindus drumondii|1
+(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry (generic term)|soapberry tree (generic term)
+sapindus marginatus|1
+(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry (generic term)|soapberry tree (generic term)
+sapindus saponaria|1
+(noun)|China tree|false dogwood|jaboncillo|chinaberry|Sapindus saponaria|soapberry (generic term)|soapberry tree (generic term)
+sapir|1
+(noun)|Sapir|Edward Sapir|anthropologist (generic term)|linguist (generic term)|linguistic scientist (generic term)
+sapless|2
+(adj)|decrepit|debile|feeble|infirm|rickety|weak|weakly|frail (similar term)
+(adj)|juiceless (similar term)
+sapling|1
+(noun)|tree (generic term)
+sapodilla|2
+(noun)|sapodilla tree|Manilkara zapota|Achras zapota|fruit tree (generic term)
+(noun)|sapodilla plum|sapota|edible fruit (generic term)
+sapodilla family|1
+(noun)|Sapotaceae|family Sapotaceae|dicot family (generic term)|magnoliopsid family (generic term)
+sapodilla plum|1
+(noun)|sapodilla|sapota|edible fruit (generic term)
+sapodilla tree|1
+(noun)|sapodilla|Manilkara zapota|Achras zapota|fruit tree (generic term)
+saponaceous|1
+(adj)|soapy|cleansing agent|cleanser|cleaner (related term)
+saponaria|1
+(noun)|Saponaria|genus Saponaria|caryophylloid dicot genus (generic term)
+saponaria officinalis|1
+(noun)|soapwort|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower (generic term)
+saponaria vaccaria|1
+(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower (generic term)
+saponification|1
+(noun)|chemical reaction (generic term)|reaction (generic term)
+saponified|1
+(adj)|unsaponified (antonym)
+saponify|2
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+saponin|1
+(noun)|glucoside (generic term)
+saporous|1
+(adj)|flavorful|flavourful|flavorous|flavourous|flavorsome|flavoursome|sapid|tasty (similar term)
+sapota|1
+(noun)|sapodilla|sapodilla plum|edible fruit (generic term)
+sapotaceae|1
+(noun)|Sapotaceae|family Sapotaceae|sapodilla family|dicot family (generic term)|magnoliopsid family (generic term)
+sapote|2
+(noun)|marmalade tree|mammee|Pouteria zapota|Calocarpum zapota|tree (generic term)
+(noun)|mammee|marmalade plum|edible fruit (generic term)
+sapper|1
+(noun)|army engineer (generic term)|military engineer (generic term)
+sapphic|2
+(adj)|Sapphic|rhythmical (similar term)|rhythmic (similar term)
+(adj)|lesbian|homosexual (similar term)
+sapphic ode|1
+(noun)|Horatian ode|Sapphic ode|ode (generic term)
+sapphire|4
+(adj)|chromatic (similar term)
+(noun)|transparent gem (generic term)|corundom (generic term)|corundum (generic term)
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|azure|cerulean|lazuline|sky-blue|blue (generic term)|blueness (generic term)
+sapphire berry|1
+(noun)|Asiatic sweetleaf|Symplocus paniculata|flowering shrub (generic term)
+sapphirine|2
+(adj)|transparent gem|corundom|corundum (related term)
+(noun)|mineral (generic term)
+sapphism|1
+(noun)|lesbianism|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)
+sappho|1
+(noun)|Sappho|poetess (generic term)|Lesbian (generic term)
+sapporo|1
+(noun)|Sapporo|city (generic term)|metropolis (generic term)|urban center (generic term)
+sappy|2
+(adj)|cockamamie|cockamamy|goofy|silly|wacky|whacky|zany|foolish (similar term)
+(adj)|juicy (similar term)
+sapraemia|1
+(noun)|sapremia|sepsis (generic term)
+sapremia|1
+(noun)|sapraemia|sepsis (generic term)
+saprobe|1
+(noun)|organism (generic term)|being (generic term)
+saprobic|1
+(adj)|organism|being (related term)
+saprolegnia|1
+(noun)|Saprolegnia|genus Saprolegnia|fungus genus (generic term)
+saprolegnia ferax|1
+(noun)|white fungus|Saprolegnia ferax|fungus (generic term)
+saprolegniales|1
+(noun)|Saprolegniales|order Saprolegniales|fungus order (generic term)
+saprolite|1
+(noun)|earth (generic term)|ground (generic term)
+sapropel|1
+(noun)|sludge (generic term)|slime (generic term)|goo (generic term)|gook (generic term)|guck (generic term)|gunk (generic term)|muck (generic term)|ooze (generic term)
+saprophagous|1
+(adj)|saprozoic|herbivorous (similar term)
+saprophyte|1
+(noun)|saprophytic organism|organism (generic term)|being (generic term)
+saprophytic|2
+(adj)|organism|being (related term)
+(adj)|herbivorous (similar term)
+saprophytic organism|1
+(noun)|saprophyte|organism (generic term)|being (generic term)
+saprozoic|1
+(adj)|saprophagous|herbivorous (similar term)
+sapsago|1
+(noun)|Swiss cheese (generic term)
+sapsucker|1
+(noun)|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+sapwood|1
+(noun)|wood (generic term)
+saqqara|1
+(noun)|Saqqara|Saqqarah|Sakkara|town (generic term)
+saqqarah|1
+(noun)|Saqqara|Saqqarah|Sakkara|town (generic term)
+saquinavir|1
+(noun)|Invirase|protease inhibitor (generic term)|PI (generic term)
+sara teasdale|1
+(noun)|Teasdale|Sara Teasdale|poet (generic term)
+saraband|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+saracen|3
+(noun)|Saracen|nomad (generic term)
+(noun)|Saracen|Arab (generic term)|Arabian (generic term)
+(noun)|Saracen|Muslim (generic term)|Moslem (generic term)
+saragossa|1
+(noun)|Zaragoza|Saragossa|city (generic term)|metropolis (generic term)|urban center (generic term)
+sarah|1
+(noun)|Sarah|wife (generic term)|married woman (generic term)
+sarah bernhardt|1
+(noun)|Bernhardt|Sarah Bernhardt|Henriette Rosine Bernard|actress (generic term)
+sarah kemble siddons|1
+(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress (generic term)
+sarah siddons|1
+(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress (generic term)
+sarah vaughan|1
+(noun)|Vaughan|Sarah Vaughan|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+sarajevo|1
+(noun)|Sarajevo|city (generic term)|metropolis (generic term)|urban center (generic term)
+saran|1
+(noun)|thermoplastic (generic term)|thermoplastic resin (generic term)
+saran wrap|1
+(noun)|cling film|clingfilm|Saran Wrap|plastic wrap (generic term)
+sarape|1
+(noun)|serape|shawl (generic term)
+sarasota|1
+(noun)|Sarasota|town (generic term)
+sarasvati|1
+(noun)|Sarasvati|Hindu deity (generic term)
+saratoga|1
+(noun)|Saratoga|battle of Saratoga|pitched battle (generic term)
+saratoga chip|1
+(noun)|chip|crisp|potato chip|Saratoga chip|snack food (generic term)
+saratoga spittlebug|1
+(noun)|Saratoga spittlebug|Aphrophora saratogensis|spittle insect (generic term)|spittlebug (generic term)
+saratoga springs|1
+(noun)|Saratoga Springs|town (generic term)
+saratov|1
+(noun)|Saratov|city (generic term)|metropolis (generic term)|urban center (generic term)
+sarawak|1
+(noun)|Sarawak|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+sarawakian|2
+(adj)|Sarawakian|district|territory|territorial dominion|dominion (related term)
+(noun)|Sarawakian|Malaysian (generic term)
+sarazen|1
+(noun)|Sarazen|Gene Sarazen|golfer (generic term)|golf player (generic term)|linksman (generic term)
+sarcasm|1
+(noun)|irony|satire|caustic remark|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+sarcastic|1
+(adj)|barbed (similar term)|biting (similar term)|nipping (similar term)|pungent (similar term)|mordacious (similar term)|black (similar term)|grim (similar term)|mordant (similar term)|sardonic (similar term)|satirical (similar term)|satiric (similar term)|saturnine (similar term)|critical (related term)|disrespectful (related term)|unsarcastic (antonym)
+sarcastically|1
+(adv)|sardonically
+sarcenet|1
+(noun)|sarsenet|silk (generic term)
+sarcobatus|1
+(noun)|Sarcobatus|genus Sarcobatus|caryophylloid dicot genus (generic term)
+sarcobatus vermiculatus|1
+(noun)|greasewood|black greasewood|Sarcobatus vermiculatus|shrub (generic term)|bush (generic term)
+sarcocephalus|1
+(noun)|Sarcocephalus|genus Sarcocephalus|asterid dicot genus (generic term)
+sarcocephalus diderrichii|1
+(noun)|opepe|Nauclea diderrichii|Sarcocephalus diderrichii|tree (generic term)
+sarcocephalus esculentus|1
+(noun)|negro peach|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub (generic term)|bush (generic term)
+sarcocephalus latifolius|1
+(noun)|negro peach|Sarcocephalus latifolius|Sarcocephalus esculentus|shrub (generic term)|bush (generic term)
+sarcochilus|1
+(noun)|Sarcochilus|genus Sarcochilus|monocot genus (generic term)|liliopsid genus (generic term)
+sarcochilus falcatus|1
+(noun)|orange-blossom orchid|Sarcochilus falcatus|orchid (generic term)|orchidaceous plant (generic term)
+sarcocystidean|1
+(noun)|sarcosporidian|sarcocystieian|sporozoan (generic term)
+sarcocystieian|1
+(noun)|sarcosporidian|sarcocystidean|sporozoan (generic term)
+sarcocystis|1
+(noun)|Sarcocystis|genus Sarcocystis|protoctist genus (generic term)
+sarcodes|1
+(noun)|Sarcodes|genus Sarcodes|dilleniid dicot genus (generic term)
+sarcodes sanguinea|1
+(noun)|snow plant|Sarcodes sanguinea|wildflower (generic term)|wild flower (generic term)
+sarcodina|1
+(noun)|Sarcodina|class Sarcodina|class (generic term)
+sarcodine|1
+(noun)|sarcodinian|protozoan (generic term)|protozoon (generic term)
+sarcodinian|1
+(noun)|sarcodine|protozoan (generic term)|protozoon (generic term)
+sarcoid|1
+(adj)|fleshy|animal tissue (related term)
+sarcoidosis|1
+(noun)|pathology (generic term)
+sarcolemma|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+sarcolemmal|1
+(adj)|membrane|tissue layer (related term)
+sarcolemmic|1
+(adj)|sarcolemnous|membrane|tissue layer (related term)
+sarcolemnous|1
+(adj)|sarcolemmic|membrane|tissue layer (related term)
+sarcoma|1
+(noun)|cancer (generic term)|malignant neoplastic disease (generic term)
+sarcomere|1
+(noun)|segment (generic term)
+sarcophaga|1
+(noun)|Sarcophaga|genus Sarcophaga|arthropod genus (generic term)
+sarcophaga carnaria|1
+(noun)|flesh fly|Sarcophaga carnaria|fly (generic term)
+sarcophagus|1
+(noun)|coffin (generic term)|casket (generic term)
+sarcophilus|1
+(noun)|Sarcophilus|genus Sarcophilus|mammal genus (generic term)
+sarcophilus hariisi|1
+(noun)|Tasmanian devil|ursine dasyure|Sarcophilus hariisi|dasyurid marsupial (generic term)|dasyurid (generic term)
+sarcoplasm|1
+(noun)|cytoplasm (generic term)|cytol (generic term)
+sarcoptes|1
+(noun)|Sarcoptes|genus Sarcoptes|arthropod genus (generic term)
+sarcoptid|1
+(noun)|itch mite|mite (generic term)
+sarcoptidae|1
+(noun)|Sarcoptidae|family Sarcoptidae|arthropod family (generic term)
+sarcorhamphus|1
+(noun)|Sarcorhamphus|genus Sarcorhamphus|bird genus (generic term)
+sarcorhamphus papa|1
+(noun)|king vulture|Sarcorhamphus papa|New World vulture (generic term)|cathartid (generic term)
+sarcoscypha coccinea|1
+(noun)|Sarcoscypha coccinea|scarlet cup|discomycete (generic term)|cup fungus (generic term)
+sarcoscyphaceae|1
+(noun)|Sarcoscyphaceae|family Sarcoscyphaceae|fungus family (generic term)
+sarcosine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+sarcosomal|1
+(adj)|mitochondrion|chondriosome (related term)
+sarcosomataceae|1
+(noun)|Sarcosomataceae|ascomycete (generic term)|ascomycetous fungus (generic term)
+sarcosome|1
+(noun)|mitochondrion (generic term)|chondriosome (generic term)
+sarcosporidia|1
+(noun)|Sarcosporidia|order Sarcosporidia|animal order (generic term)
+sarcosporidian|1
+(noun)|sarcocystidean|sarcocystieian|sporozoan (generic term)
+sarcostemma|1
+(noun)|Sarcostemma|genus Sarcostemma|dicot genus (generic term)|magnoliopsid genus (generic term)
+sarcostemma acidum|1
+(noun)|soma|haoma|Sarcostemma acidum|vine (generic term)
+sarcostyle|1
+(noun)|myofibril|myofibrilla|fibril (generic term)|filament (generic term)|strand (generic term)
+sard|1
+(noun)|sardine|sardius|chalcedony (generic term)|calcedony (generic term)
+sarda|1
+(noun)|Sarda|genus Sarda|fish genus (generic term)
+sarda chiliensis|1
+(noun)|Chile bonito|Chilean bonito|Sarda chiliensis|bonito (generic term)
+sarda lineolata|1
+(noun)|Pacific bonito|Sarda lineolata|bonito (generic term)
+sarda sarda|1
+(noun)|skipjack|Atlantic bonito|Sarda sarda|bonito (generic term)
+sardegna|2
+(noun)|Sardinia|Sardegna|Italian region (generic term)
+(noun)|Sardinia|Sardegna|island (generic term)
+sardina|1
+(noun)|Sardina|genus Sardina|genus Sardinia|fish genus (generic term)
+sardina pilchardus|1
+(noun)|pilchard|sardine|Sardina pilchardus|clupeid fish (generic term)|clupeid (generic term)
+sardine|4
+(noun)|pilchard|saltwater fish (generic term)
+(noun)|clupeid fish (generic term)|clupeid (generic term)|food fish (generic term)
+(noun)|sard|sardius|chalcedony (generic term)|calcedony (generic term)
+(noun)|pilchard|Sardina pilchardus|clupeid fish (generic term)|clupeid (generic term)
+sardine oil|1
+(noun)|animal oil (generic term)
+sardinia|2
+(noun)|Sardinia|Sardegna|Italian region (generic term)
+(noun)|Sardinia|Sardegna|island (generic term)
+sardinian|2
+(adj)|Sardinian|Italian region (related term)
+(noun)|Sardinian|Italian (generic term)
+sardinops|1
+(noun)|Sardinops|genus Sardinops|fish genus (generic term)
+sardinops caerulea|1
+(noun)|Pacific sardine|Sardinops caerulea|pilchard (generic term)|sardine (generic term)|Sardina pilchardus (generic term)
+sardis|1
+(noun)|Sardis|city (generic term)|metropolis (generic term)|urban center (generic term)
+sardius|1
+(noun)|sard|sardine|chalcedony (generic term)|calcedony (generic term)
+sardonic|1
+(adj)|sarcastic (similar term)
+sardonically|1
+(adv)|sarcastically
+sardonyx|1
+(noun)|onyx (generic term)
+saree|1
+(noun)|sari|dress (generic term)|frock (generic term)
+sargasso|1
+(noun)|gulfweed|sargassum|Sargassum bacciferum|brown algae (generic term)
+sargasso sea|1
+(noun)|Sargasso Sea|sea (generic term)
+sargassum|1
+(noun)|gulfweed|sargasso|Sargassum bacciferum|brown algae (generic term)
+sargassum bacciferum|1
+(noun)|gulfweed|sargassum|sargasso|Sargassum bacciferum|brown algae (generic term)
+sargassum fish|1
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sargent|1
+(noun)|Sargent|John Singer Sargent|painter (generic term)
+sari|1
+(noun)|saree|dress (generic term)|frock (generic term)
+sarin|1
+(noun)|GB|organophosphate nerve agent (generic term)
+sarnoff|1
+(noun)|Sarnoff|David Sarnoff|businessman (generic term)|man of affairs (generic term)
+sarong|1
+(noun)|skirt (generic term)
+saronic gulf|1
+(noun)|Saronic Gulf|Gulf of Aegina|inlet (generic term)|recess (generic term)
+saroyan|1
+(noun)|Saroyan|William Saroyan|writer (generic term)|author (generic term)
+sarpanitu|1
+(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity (generic term)
+sarpedon|1
+(noun)|Sarpedon|mythical being (generic term)
+sarracenia|1
+(noun)|Sarracenia|genus Sarracenia|dicot genus (generic term)|magnoliopsid genus (generic term)
+sarracenia flava|1
+(noun)|huntsman's horn|huntsman's horns|yellow trumpet|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant (generic term)
+sarracenia minor|1
+(noun)|hooded pitcher plant|Sarracenia minor|pitcher plant (generic term)
+sarracenia purpurea|1
+(noun)|common pitcher plant|huntsman's cup|huntsman's cups|Sarracenia purpurea|pitcher plant (generic term)
+sarraceniaceae|1
+(noun)|Sarraceniaceae|family Sarraceniaceae|pitcher-plant family|dicot family (generic term)|magnoliopsid family (generic term)
+sarraceniales|1
+(noun)|Sarraceniales|order Sarraceniales|plant order (generic term)
+sars|1
+(noun)|severe acute respiratory syndrome|SARS|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+sarsaparilla|2
+(noun)|vine (generic term)
+(noun)|soft drink (generic term)
+sarsaparilla root|1
+(noun)|root (generic term)
+sarsenet|1
+(noun)|sarcenet|silk (generic term)
+sartor|1
+(noun)|tailor|seamster|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+sartorial|2
+(adj)|skeletal muscle|striated muscle (related term)
+(adj)|garmentmaker|garment-worker|garment worker (related term)|trade|craft (related term)
+sartorius|1
+(noun)|sartorius muscle|musculus sartorius|skeletal muscle (generic term)|striated muscle (generic term)
+sartorius muscle|1
+(noun)|sartorius|musculus sartorius|skeletal muscle (generic term)|striated muscle (generic term)
+sartre|1
+(noun)|Sartre|Jean-Paul Sartre|dramatist (generic term)|playwright (generic term)|existentialist (generic term)|existentialist philosopher (generic term)
+sarvepalli radhakrishnan|1
+(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+sas|1
+(noun)|Special Air Service|SAS|commando (generic term)
+sash|2
+(noun)|window sash|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|girdle|cincture|waistband|waistcloth|band (generic term)
+sash cord|1
+(noun)|sash line|cord (generic term)
+sash fastener|1
+(noun)|sash lock|window lock|lock (generic term)
+sash line|1
+(noun)|sash cord|cord (generic term)
+sash lock|1
+(noun)|sash fastener|window lock|lock (generic term)
+sash weight|1
+(noun)|counterweight (generic term)|counterbalance (generic term)|counterpoise (generic term)|balance (generic term)|equalizer (generic term)|equaliser (generic term)
+sash window|1
+(noun)|window (generic term)
+sashay|6
+(noun)|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+(noun)|chasse|dance step (generic term)|step (generic term)
+(noun)|excursion|jaunt|outing|junket|pleasure trip|expedition|journey (generic term)|journeying (generic term)
+(verb)|sidle|move (generic term)
+(verb)|tittup|swagger|ruffle|prance|strut|cock|walk (generic term)
+(verb)|chasse|dance (generic term)
+sashimi|1
+(noun)|dish (generic term)
+saskatchewan|1
+(noun)|Saskatchewan|Canadian province (generic term)
+saskatoon|2
+(noun)|Saskatoon|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|serviceberry|shadberry|juneberry|berry (generic term)
+sasquatch|1
+(noun)|Bigfoot|Sasquatch|legendary creature (generic term)
+sass|2
+(noun)|sassing|backtalk|back talk|lip|mouth|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+(verb)|answer (generic term)|reply (generic term)|respond (generic term)
+sassaby|1
+(noun)|topi|Damaliscus lunatus|antelope (generic term)
+sassafras|2
+(noun)|sassafras tree|Sassafras albidum|laurel (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+sassafras albidum|1
+(noun)|sassafras|sassafras tree|Sassafras albidum|laurel (generic term)
+sassafras laurel|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+sassafras oil|1
+(noun)|oil (generic term)
+sassafras tree|1
+(noun)|sassafras|Sassafras albidum|laurel (generic term)
+sassenach|1
+(noun)|Sassenach|English person (generic term)
+sassing|1
+(noun)|sass|backtalk|back talk|lip|mouth|rejoinder (generic term)|retort (generic term)|return (generic term)|riposte (generic term)|replication (generic term)|comeback (generic term)|counter (generic term)
+sassy|1
+(adj)|fresh|impertinent|impudent|overbold|smart|saucy|wise|forward (similar term)
+sat|1
+(noun)|Saturday|Sabbatum|Sat|weekday (generic term)
+satan|1
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+satang|1
+(noun)|Thai monetary unit (generic term)
+satanic|2
+(adj)|demonic|diabolic|diabolical|fiendish|hellish|infernal|unholy|evil (similar term)
+(adj)|Satanic|spiritual being|supernatural being (related term)
+satanism|1
+(noun)|diabolism|demonism|Satanism|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+satanist|1
+(noun)|Satanist|diabolist|disciple (generic term)|adherent (generic term)
+satanophobia|1
+(noun)|social phobia (generic term)
+satchel|1
+(noun)|baggage (generic term)|luggage (generic term)
+satchel paige|1
+(noun)|Paige|Satchel Paige|Leroy Robert Paige|ballplayer (generic term)|baseball player (generic term)
+satchmo|1
+(noun)|Armstrong|Louis Armstrong|Satchmo|jazz musician (generic term)|jazzman (generic term)|trumpeter (generic term)|cornetist (generic term)
+sate|1
+(verb)|satiate|replete|fill|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+sated|1
+(adj)|gorged|surfeited|satiate (similar term)|satiated (similar term)
+sateen|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+satellite|5
+(adj)|outer (similar term)
+(noun)|artificial satellite|orbiter|equipment (generic term)
+(noun)|planet|follower (generic term)
+(noun)|celestial body (generic term)|heavenly body (generic term)
+(verb)|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+satellite receiver|1
+(noun)|receiver (generic term)|receiving system (generic term)
+satellite television|1
+(noun)|satellite TV|television (generic term)|television system (generic term)
+satellite transmitter|1
+(noun)|transmitter (generic term)|sender (generic term)
+satellite tv|1
+(noun)|satellite television|satellite TV|television (generic term)|television system (generic term)
+satiable|1
+(adj)|satisfiable|satiate (similar term)|satiated (similar term)
+satiate|3
+(adj)|satiated|jaded (similar term)|gorged (similar term)|sated (similar term)|surfeited (similar term)|satiable (similar term)|satisfiable (similar term)|insatiate (antonym)
+(verb)|sate|replete|fill|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|scarf out|eat (generic term)
+satiated|1
+(adj)|satiate|jaded (similar term)|gorged (similar term)|sated (similar term)|surfeited (similar term)|satiable (similar term)|satisfiable (similar term)|insatiate (antonym)
+satiation|2
+(noun)|repletion|satiety|fullness (generic term)
+(noun)|gratification (generic term)
+satie|1
+(noun)|Satie|Erik Satie|Erik Alfred Leslie Satie|composer (generic term)
+satiety|1
+(noun)|repletion|satiation|fullness (generic term)
+satin|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+satin bird|1
+(noun)|satin bowerbird|Ptilonorhynchus violaceus|bowerbird (generic term)|catbird (generic term)
+satin bowerbird|1
+(noun)|satin bird|Ptilonorhynchus violaceus|bowerbird (generic term)|catbird (generic term)
+satin flower|1
+(noun)|honesty|silver dollar|money plant|satinpod|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+satin leaf|1
+(noun)|satinleaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree (generic term)|flowering tree (generic term)
+satin stitch|1
+(noun)|stitch (generic term)
+satin walnut|1
+(noun)|sweet gum|hazelwood|red gum|gumwood (generic term)|gum (generic term)
+satin weave|1
+(noun)|weave (generic term)
+satinet|1
+(noun)|satinette|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+satinette|1
+(noun)|satinet|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+satinleaf|1
+(noun)|satin leaf|caimitillo|damson plum|Chrysophyllum oliviforme|angiospermous tree (generic term)|flowering tree (generic term)
+satinpod|1
+(noun)|honesty|silver dollar|money plant|satin flower|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+satinwood|3
+(noun)|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood (generic term)
+(noun)|wood (generic term)
+(noun)|satinwood tree|Chloroxylon swietenia|tree (generic term)
+satinwood tree|1
+(noun)|satinwood|Chloroxylon swietenia|tree (generic term)
+satiny|1
+(adj)|glossy|sleek|silken|silky|silklike|slick|smooth (similar term)
+satire|1
+(noun)|sarcasm|irony|caustic remark|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+satiric|1
+(adj)|satirical|sarcastic (similar term)
+satirical|1
+(adj)|satiric|sarcastic (similar term)
+satirise|1
+(verb)|satirize|lampoon|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+satirist|1
+(noun)|ironist|ridiculer|humorist (generic term)|humourist (generic term)
+satirize|1
+(verb)|satirise|lampoon|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+satisfaction|4
+(noun)|contentment (generic term)|dissatisfaction (antonym)
+(noun)|gratification|emotional state (generic term)|spirit (generic term)
+(noun)|atonement|expiation|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+(noun)|change (generic term)
+satisfactorily|1
+(adv)|unsatisfactorily (antonym)
+satisfactoriness|1
+(noun)|quality (generic term)|unsatisfactoriness (antonym)
+satisfactory|2
+(adj)|adequate (similar term)|passable (similar term)|fair to middling (similar term)|tolerable (similar term)|all right (similar term)|fine (similar term)|o.k. (similar term)|ok (similar term)|okay (similar term)|hunky-dory (similar term)|alright (similar term)|comforting (similar term)|cheering (similar term)|satisfying (similar term)|copacetic (similar term)|copasetic (similar term)|copesetic (similar term)|copesettic (similar term)|passing (similar term)|right (similar term)|acceptable (related term)|adequate (related term)|unsatisfactory (antonym)
+(adj)|acceptable|good (similar term)
+satisfiable|1
+(adj)|satiable|satiate (similar term)|satiated (similar term)
+satisfice|1
+(verb)|staisfise|act (generic term)|move (generic term)
+satisfied|2
+(adj)|contented (similar term)|content (similar term)
+(adj)|quenched|slaked|mitigated (similar term)
+satisfier|1
+(noun)|agent (generic term)
+satisfy|3
+(verb)|fulfill|fulfil|live up to|meet (generic term)|fit (generic term)|conform to (generic term)|fall short of (antonym)
+(verb)|gratify|dissatisfy (antonym)
+(verb)|meet|fill|fulfill|fulfil|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+satisfying|3
+(adj)|appreciated|gratifying|pleasing|rewarding (similar term)
+(adj)|hearty|solid|square|substantial|wholesome (similar term)
+(adj)|comforting|cheering|satisfactory (similar term)
+satisfyingly|1
+(adv)|gratifyingly
+satori|1
+(noun)|enlightenment (generic term)
+satrap|1
+(noun)|governor (generic term)
+satsuma|2
+(noun)|satsuma tree|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+(noun)|mandarin (generic term)|mandarin orange (generic term)
+satsuma tree|1
+(noun)|satsuma|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+saturate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|impregnate|fill (generic term)|fill up (generic term)|make full (generic term)
+saturated|4
+(adj)|concentrated|supersaturated (similar term)|unsaturated (antonym)
+(adj)|drenched|soaked|soaking|sodden|sopping|soppy|wet (similar term)
+(adj)|unsaturated (antonym)
+(adj)|pure|intense (similar term)|vivid (similar term)|unsaturated (antonym)
+saturated fatty acid|1
+(noun)|fatty acid (generic term)
+saturation|4
+(noun)|impregnation|permeation (generic term)|pervasion (generic term)|suffusion (generic term)
+(noun)|filling (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|chroma|intensity|vividness|color property (generic term)
+saturation bombing|1
+(noun)|carpet bombing|area bombing|bombing (generic term)|bombardment (generic term)
+saturation point|1
+(noun)|saturation (generic term)
+saturday|1
+(noun)|Saturday|Sabbatum|Sat|weekday (generic term)
+saturday night special|1
+(noun)|Saturday night special|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+satureia|1
+(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus (generic term)
+satureia hortensis|1
+(noun)|summer savory|Satureja hortensis|Satureia hortensis|savory (generic term)
+satureia montana|1
+(noun)|winter savory|Satureja montana|Satureia montana|savory (generic term)
+satureja|1
+(noun)|Satureja|genus Satureja|Satureia|genus Satureia|asterid dicot genus (generic term)
+satureja acinos|1
+(noun)|basil thyme|basil balm|mother of thyme|Acinos arvensis|Satureja acinos|herb (generic term)|herbaceous plant (generic term)
+satureja calamintha glandulosa|1
+(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+satureja calamintha officinalis|1
+(noun)|common calamint|Calamintha sylvatica|Satureja calamintha officinalis|calamint (generic term)
+satureja douglasii|1
+(noun)|yerba buena|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb (generic term)|herbaceous plant (generic term)
+satureja grandiflora|1
+(noun)|large-flowered calamint|Calamintha grandiflora|Clinopodium grandiflorum|Satureja grandiflora|calamint (generic term)
+satureja hortensis|1
+(noun)|summer savory|Satureja hortensis|Satureia hortensis|savory (generic term)
+satureja montana|1
+(noun)|winter savory|Satureja montana|Satureia montana|savory (generic term)
+satureja nepeta|1
+(noun)|lesser calamint|field balm|Calamintha nepeta|Calamintha nepeta glantulosa|Satureja nepeta|Satureja calamintha glandulosa|calamint (generic term)
+satureja vulgaris|1
+(noun)|wild basil|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb (generic term)|herbaceous plant (generic term)
+saturn|2
+(noun)|Saturn|Jovian planet (generic term)|gas giant (generic term)|superior planet (generic term)|outer planet (generic term)
+(noun)|Saturn|Roman deity (generic term)
+saturnalia|2
+(noun)|Saturnalia|festival (generic term)|fete (generic term)
+(noun)|orgy|debauch|debauchery|riot|bacchanal|bacchanalia|drunken revelry|revel (generic term)|revelry (generic term)
+saturnia|1
+(noun)|Saturnia|genus Saturnia|arthropod genus (generic term)
+saturnia pavonia|1
+(noun)|emperor|emperor moth|Saturnia pavonia|saturniid (generic term)|saturniid moth (generic term)
+saturniid|1
+(noun)|saturniid moth|moth (generic term)
+saturniid moth|1
+(noun)|saturniid|moth (generic term)
+saturniidae|1
+(noun)|Saturniidae|family Saturniidae|arthropod family (generic term)
+saturnine|2
+(adj)|sarcastic (similar term)
+(adj)|dark|dour|glowering|glum|moody|morose|sour|sullen|ill-natured (similar term)
+saturnism|1
+(noun)|lead poisoning|plumbism|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+satyagraha|1
+(noun)|Satyagraha|passive resistance (generic term)|nonviolent resistance (generic term)|nonviolence (generic term)
+satyendra n. bose|1
+(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist (generic term)
+satyendra nath bose|1
+(noun)|Bose|Satyendra N. Bose|Satyendra Nath Bose|nuclear physicist (generic term)
+satyr|2
+(noun)|lecher|lech|letch|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+(noun)|forest god|Greek deity (generic term)
+satyr orchid|1
+(noun)|Coeloglossum bracteatum|orchid (generic term)|orchidaceous plant (generic term)
+satyr play|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+satyriasis|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+satyric|1
+(adj)|satyrical|Greek deity (related term)
+satyrical|1
+(adj)|satyric|Greek deity (related term)
+satyridae|1
+(noun)|Satyridae|family Satyridae|arthropod family (generic term)
+sauce|4
+(noun)|condiment (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+(verb)|season (generic term)|flavor (generic term)|flavour (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+sauce-alone|1
+(noun)|garlic mustard|hedge garlic|jack-by-the-hedge|Alliaria officinalis|crucifer (generic term)|cruciferous plant (generic term)
+sauce albert|1
+(noun)|horseradish sauce|sauce Albert|sauce (generic term)
+sauce chausseur|1
+(noun)|hunter's sauce|sauce (generic term)
+sauce espagnole|1
+(noun)|brown sauce|sauce Espagnole|sauce (generic term)
+sauce espanole|1
+(noun)|espanole|sauce (generic term)
+sauce louis|1
+(noun)|sauce Louis|dressing (generic term)|salad dressing (generic term)
+sauce verte|1
+(noun)|green mayonnaise|mayonnaise (generic term)|mayo (generic term)
+sauce vinaigrette|1
+(noun)|French dressing|vinaigrette|dressing (generic term)|salad dressing (generic term)
+sauceboat|1
+(noun)|gravy boat|gravy holder|boat|dish (generic term)
+saucepan|1
+(noun)|pan (generic term)|cooking pan (generic term)
+saucepot|1
+(noun)|pot (generic term)
+saucer|4
+(noun)|disk|disc|round shape (generic term)
+(noun)|flatware (generic term)
+(noun)|dish|dish aerial|dish antenna|directional antenna (generic term)
+(noun)|discus|disk (generic term)|disc (generic term)|sports equipment (generic term)
+saucer-eyed|1
+(adj)|round-eyed|eyed (similar term)
+saucer-shaped|1
+(adj)|concave (similar term)
+saucer magnolia|1
+(noun)|Chinese magnolia|Magnolia soulangiana|magnolia (generic term)
+saucily|2
+(adv)|perkily
+(adv)|impertinently|pertly|freshly|impudently
+sauciness|1
+(noun)|impertinence|perkiness|pertness|archness|playfulness (generic term)|fun (generic term)
+saucy|2
+(adj)|impertinent|irreverent|pert|spirited (similar term)
+(adj)|fresh|impertinent|impudent|overbold|smart|sassy|wise|forward (similar term)
+saudi|2
+(adj)|Saudi-Arabian|Saudi|Asian country|Asian nation (related term)
+(noun)|Saudi|Saudi Arabian|Arab (generic term)|Arabian (generic term)
+saudi-arabian|1
+(adj)|Saudi-Arabian|Saudi|Asian country|Asian nation (related term)
+saudi arabia|1
+(noun)|Saudi Arabia|Kingdom of Saudi Arabia|Asian country (generic term)|Asian nation (generic term)
+saudi arabian|1
+(noun)|Saudi|Saudi Arabian|Arab (generic term)|Arabian (generic term)
+saudi arabian monetary unit|1
+(noun)|Saudi Arabian monetary unit|monetary unit (generic term)
+saudi arabian riyal|1
+(noun)|Saudi Arabian riyal|riyal|Saudi Arabian monetary unit (generic term)
+sauerbraten|1
+(noun)|dish (generic term)
+sauerkraut|1
+(noun)|dish (generic term)
+sauk|1
+(noun)|Sauk|Sac|Algonquian (generic term)|Algonquin (generic term)
+saul|2
+(noun)|Saul|king (generic term)|male monarch (generic term)|Rex (generic term)
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+saul bellow|1
+(noun)|Bellow|Saul Bellow|writer (generic term)|author (generic term)
+saul of tarsus|1
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+saul steinberg|1
+(noun)|Steinberg|Saul Steinberg|cartoonist (generic term)
+sault sainte marie|1
+(noun)|Sault Sainte Marie|town (generic term)
+sauna|1
+(noun)|sweat room|steam bath (generic term)|steam room (generic term)|vapor bath (generic term)|vapour bath (generic term)
+saunter|3
+(noun)|gait (generic term)
+(noun)|amble|promenade|stroll|perambulation|walk (generic term)
+(verb)|stroll|walk (generic term)
+saunterer|1
+(noun)|stroller|ambler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+saurel|2
+(noun)|horse mackerel|Trachurus trachurus|scad (generic term)
+(noun)|horse mackerel|jack mackerel|Spanish mackerel|Trachurus symmetricus|scad (generic term)
+sauria|1
+(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order (generic term)
+saurian|2
+(adj)|lacertilian|saurian (related term)
+(noun)|diapsid (generic term)|diapsid reptile (generic term)
+saurischia|1
+(noun)|Saurischia|order Saurischia|animal order (generic term)
+saurischian|1
+(noun)|saurischian dinosaur|dinosaur (generic term)
+saurischian dinosaur|1
+(noun)|saurischian|dinosaur (generic term)
+sauromalus|1
+(noun)|Sauromalus|genus Sauromalus|reptile genus (generic term)
+sauromalus obesus|1
+(noun)|chuckwalla|Sauromalus obesus|iguanid (generic term)|iguanid lizard (generic term)
+sauropod|1
+(noun)|sauropod dinosaur|saurischian (generic term)|saurischian dinosaur (generic term)
+sauropod dinosaur|1
+(noun)|sauropod|saurischian (generic term)|saurischian dinosaur (generic term)
+sauropoda|1
+(noun)|Sauropoda|suborder Sauropoda|animal order (generic term)
+sauropodomorpha|1
+(noun)|Sauropodomorpha|suborder Sauropodomorpha|animal order (generic term)
+sauropterygia|1
+(noun)|Sauropterygia|order Sauropterygia|animal order (generic term)
+saurosuchus|1
+(noun)|Saurosuchus|genus Saurosuchus|reptile genus (generic term)
+saururaceae|1
+(noun)|Saururaceae|family Saururaceae|lizard's-tail family|dicot family (generic term)|magnoliopsid family (generic term)
+saururus|1
+(noun)|Saururus|genus Saururus|dicot genus (generic term)|magnoliopsid genus (generic term)
+saururus cernuus|1
+(noun)|lizard's-tail|swamp lily|water dragon|Saururus cernuus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+saury|1
+(noun)|billfish|Scomberesox saurus|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+sausage|2
+(noun)|meat (generic term)
+(noun)|blimp|sausage balloon|airship (generic term)|dirigible (generic term)
+sausage-shaped|1
+(adj)|allantoid|rounded (similar term)
+sausage balloon|1
+(noun)|blimp|sausage|airship (generic term)|dirigible (generic term)
+sausage curl|1
+(noun)|lock (generic term)|curl (generic term)|ringlet (generic term)|whorl (generic term)
+sausage dog|1
+(noun)|sausage hound|dachshund (generic term)|dachsie (generic term)|badger dog (generic term)
+sausage hound|1
+(noun)|sausage dog|dachshund (generic term)|dachsie (generic term)|badger dog (generic term)
+sausage meat|1
+(noun)|meat (generic term)
+sausage pizza|1
+(noun)|pizza (generic term)|pizza pie (generic term)
+sausage roll|1
+(noun)|pastry (generic term)
+saussure|1
+(noun)|de Saussure|Ferdinand de Saussure|Saussure|linguist (generic term)|polyglot (generic term)
+saussurea|1
+(noun)|Saussurea|genus Saussurea|asterid dicot genus (generic term)
+saussurea costus|1
+(noun)|costusroot|Saussurea costus|Saussurea lappa|herb (generic term)|herbaceous plant (generic term)
+saussurea lappa|1
+(noun)|costusroot|Saussurea costus|Saussurea lappa|herb (generic term)|herbaceous plant (generic term)
+saute|3
+(adj)|sauteed|cooked (similar term)
+(noun)|dish (generic term)
+(verb)|fry (generic term)
+sauteed|1
+(adj)|saute|cooked (similar term)
+sauteing|1
+(noun)|frying|cooking (generic term)|cookery (generic term)|preparation (generic term)
+sauterne|1
+(noun)|Sauterne|Sauternes|white wine (generic term)
+sauternes|1
+(noun)|Sauterne|Sauternes|white wine (generic term)
+sauvignon blanc|2
+(noun)|Sauvignon blanc|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Sauvignon blanc|white wine (generic term)
+sauvignon grape|1
+(noun)|Sauvignon grape|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+savage|8
+(adj)|barbarous|brutal|cruel|fell|roughshod|vicious|inhumane (similar term)
+(adj)|feral|ferine|wild (similar term)|untamed (similar term)
+(adj)|barbarian|barbaric|uncivilized|uncivilised|wild|noncivilized (similar term)|noncivilised (similar term)
+(adj)|ferocious|fierce|furious|violent (similar term)
+(noun)|barbarian|primitive (generic term)|primitive person (generic term)
+(noun)|beast|wolf|brute|wildcat|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(verb)|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|pillory|crucify|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+savagely|1
+(adv)|viciously|brutally
+savageness|1
+(noun)|savagery|ferocity (generic term)|fierceness (generic term)|furiousness (generic term)|fury (generic term)|vehemence (generic term)|violence (generic term)|wildness (generic term)
+savagery|3
+(noun)|savageness|ferocity (generic term)|fierceness (generic term)|furiousness (generic term)|fury (generic term)|vehemence (generic term)|violence (generic term)|wildness (generic term)
+(noun)|ferociousness|brutality|viciousness|cruelty (generic term)|cruelness (generic term)|harshness (generic term)
+(noun)|brutality|barbarity|barbarism|atrocity (generic term)|inhumanity (generic term)
+savanna|1
+(noun)|savannah|grassland (generic term)
+savannah|3
+(noun)|Savannah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Savannah|Savannah River|river (generic term)
+(noun)|savanna|grassland (generic term)
+savannah river|1
+(noun)|Savannah|Savannah River|river (generic term)
+savant|1
+(noun)|initiate|learned person|pundit|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+savara|2
+(noun)|Savara|Dravidian (generic term)
+(noun)|Savara|South-Central Dravidian (generic term)
+savarin|1
+(noun)|cake (generic term)
+save|10
+(noun)|prevention (generic term)|bar (generic term)
+(verb)|salvage|salve|relieve|rescue (generic term)|deliver (generic term)
+(verb)|preserve|keep (generic term)|hold on (generic term)
+(verb)|carry through|pull through|bring through
+(verb)|lay aside|save up
+(verb)|make unnecessary|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|deliver|redeem
+(verb)|spare|refrain (generic term)|forbear (generic term)
+(verb)|economize|economise|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|keep open|hold open|keep|reserve (generic term)|hold (generic term)|book (generic term)
+save-all|3
+(noun)|receptacle (generic term)
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+save up|1
+(verb)|save|lay aside
+saved|2
+(adj)|blessed (similar term)|ransomed (similar term)|rescued (similar term)|reclaimed (similar term)|ransomed (similar term)|redeemed (similar term)|salvageable (similar term)|blessed (related term)|blest (related term)|found (related term)|regenerate (related term)|lost (antonym)
+(adj)|protected|preserved (similar term)
+saved up|1
+(adj)|stored-up|stored up|concentrated (similar term)
+saveloy|1
+(noun)|pork sausage (generic term)
+saver|2
+(noun)|rescuer|recoverer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|owner (generic term)|possessor (generic term)
+savin|1
+(noun)|dwarf juniper|Juniperus sabina|juniper (generic term)
+saving|5
+(adj)|redemptive|redeeming|good (similar term)
+(adj)|thrifty (similar term)
+(noun)|economy|action (generic term)
+(noun)|rescue|deliverance|delivery|recovery (generic term)|retrieval (generic term)
+(noun)|preservation|protection (generic term)
+saving grace|1
+(noun)|grace|state of grace|state (generic term)
+savings|1
+(noun)|nest egg|fund (generic term)|monetary fund (generic term)
+savings account|1
+(noun)|bank account (generic term)
+savings account trust|1
+(noun)|savings bank trust|trust account|trustee account|Totten trust|trust (generic term)
+savings and loan|1
+(noun)|savings and loan association|thrift institution (generic term)
+savings and loan association|1
+(noun)|savings and loan|thrift institution (generic term)
+savings bank|2
+(noun)|thrift institution (generic term)
+(noun)|coin bank|money box|bank|container (generic term)
+savings bank trust|1
+(noun)|savings account trust|trust account|trustee account|Totten trust|trust (generic term)
+savings bond|1
+(noun)|government bond (generic term)
+savinien cyrano de bergerac|1
+(noun)|Cyrano de Bergerac|Savinien Cyrano de Bergerac|soldier (generic term)|dramatist (generic term)|playwright (generic term)
+savior|2
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+(noun)|saviour|rescuer|deliverer|benefactor (generic term)|helper (generic term)
+saviour|2
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+(noun)|savior|rescuer|deliverer|benefactor (generic term)|helper (generic term)
+savitar|1
+(noun)|Savitar|Hindu deity (generic term)
+savoir-faire|1
+(noun)|address|tact (generic term)|tactfulness (generic term)
+savonarola|1
+(noun)|Savonarola|Girolamo Savonarola|Dominican (generic term)|Black Friar (generic term)|Blackfriar (generic term)|friar preacher (generic term)|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+savor|5
+(noun)|relish|flavor|flavour|sapidity|savour|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(verb)|enjoy|bask|relish|savour
+(verb)|taste|savour
+(verb)|savour|taste (generic term)
+(verb)|savour|season (generic term)|flavor (generic term)|flavour (generic term)
+savoriness|1
+(noun)|flavorsomeness|flavoursomeness|appetizingness (generic term)|appetisingness (generic term)
+savoring|1
+(noun)|tasting|savouring|relishing|degustation|eating (generic term)|feeding (generic term)
+savorless|1
+(adj)|bland|flat|flavorless|flavourless|insipid|savourless|vapid|tasteless (similar term)
+savorlessness|1
+(noun)|flavorlessness|flavourlessness|savourlessness|tastelessness|unappetizingness (generic term)|unappetisingness (generic term)
+savory|7
+(adj)|savoury|inoffensive|unsavory (antonym)
+(adj)|piquant|savoury|spicy|zesty|tasty (similar term)
+(adj)|mouth-watering|savoury|appetizing (similar term)|appetising (similar term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|Micromeria juliana|herb (generic term)|herbaceous plant (generic term)
+(noun)|savoury|herb (generic term)
+(noun)|savoury|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+savour|5
+(noun)|relish|flavor|flavour|sapidity|savor|smack|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(verb)|taste|savor
+(verb)|savor|season (generic term)|flavor (generic term)|flavour (generic term)
+(verb)|savor|taste (generic term)
+(verb)|enjoy|bask|relish|savor
+savouring|1
+(noun)|tasting|savoring|relishing|degustation|eating (generic term)|feeding (generic term)
+savourless|1
+(adj)|bland|flat|flavorless|flavourless|insipid|savorless|vapid|tasteless (similar term)
+savourlessness|1
+(noun)|flavorlessness|flavourlessness|savorlessness|tastelessness|unappetizingness (generic term)|unappetisingness (generic term)
+savoury|5
+(adj)|savory|inoffensive|unsavory (antonym)
+(adj)|piquant|savory|spicy|zesty|tasty (similar term)
+(adj)|mouth-watering|savory|appetizing (similar term)|appetising (similar term)
+(noun)|savory|herb (generic term)
+(noun)|savory|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+savoy|2
+(noun)|Savoy|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|savoy cabbage|head cabbage (generic term)
+savoy cabbage|2
+(noun)|head cabbage (generic term)|head cabbage plant (generic term)|Brassica oleracea capitata (generic term)
+(noun)|savoy|head cabbage (generic term)
+savoyard|2
+(noun)|Savoyard|performer (generic term)|performing artist (generic term)
+(noun)|Savoyard|Frenchman (generic term)|Frenchwoman (generic term)|French person (generic term)
+savvy|2
+(noun)|understanding|apprehension|discernment|knowing (generic term)
+(verb)|grok|get the picture|comprehend|dig|grasp|compass|apprehend|understand (generic term)
+saw|4
+(noun)|proverb|adage|byword|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|hand tool (generic term)
+(noun)|power saw|sawing machine|power tool (generic term)
+(verb)|cut (generic term)
+saw-like|1
+(adj)|rough (similar term)|unsmooth (similar term)
+saw-toothed|1
+(adj)|serrate|serrated|toothed|notched|rough (similar term)
+saw log|1
+(noun)|log (generic term)
+saw logs|1
+(verb)|snore|saw wood|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+saw palmetto|1
+(noun)|scrub palmetto|Serenoa repens|fan palm (generic term)
+saw set|1
+(noun)|tool (generic term)
+saw wood|1
+(verb)|snore|saw logs|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+sawan|1
+(noun)|Sawan|Sravana|Hindu calendar month (generic term)
+sawbill|1
+(noun)|merganser|fish duck|sheldrake|sea duck (generic term)
+sawbones|1
+(noun)|surgeon|operating surgeon|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+sawbuck|1
+(noun)|sawhorse|horse|buck|framework (generic term)|frame (generic term)|framing (generic term)
+sawdust|1
+(noun)|wood (generic term)
+sawdust doll|1
+(noun)|doll (generic term)|dolly (generic term)
+sawdust saloon|1
+(noun)|barroom (generic term)|bar (generic term)|saloon (generic term)|ginmill (generic term)|taproom (generic term)
+sawed-off|2
+(adj)|pint-size|pint-sized|runty|sawn-off|short (similar term)
+(adj)|sawn-off|shortened|short (similar term)
+sawed-off shotgun|1
+(noun)|shotgun (generic term)|scattergun (generic term)
+sawfish|1
+(noun)|ray (generic term)
+sawfly|1
+(noun)|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+sawhorse|1
+(noun)|horse|sawbuck|buck|framework (generic term)|frame (generic term)|framing (generic term)
+sawing machine|1
+(noun)|power saw|saw|power tool (generic term)
+sawm|1
+(noun)|pillar of Islam (generic term)|abstinence (generic term)
+sawmill|2
+(noun)|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+(noun)|lumbermill|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+sawn-off|2
+(adj)|pint-size|pint-sized|runty|sawed-off|short (similar term)
+(adj)|sawed-off|shortened|short (similar term)
+sawpit|1
+(noun)|pit (generic term)|cavity (generic term)
+sawtooth|1
+(noun)|serration (generic term)
+sawtoothed-edged|1
+(adj)|bordered (similar term)
+sawwort|1
+(noun)|Serratula tinctoria|herb (generic term)|herbaceous plant (generic term)
+sawyer|2
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|sawyer beetle|long-horned beetle (generic term)|longicorn (generic term)|longicorn beetle (generic term)
+sawyer beetle|1
+(noun)|sawyer|long-horned beetle (generic term)|longicorn (generic term)|longicorn beetle (generic term)
+sax|2
+(noun)|Sax|Adolphe Sax|maker (generic term)|shaper (generic term)
+(noun)|saxophone|single-reed instrument (generic term)|single-reed woodwind (generic term)
+saxatile|1
+(adj)|saxicolous|saxicoline|rock plant (related term)
+saxe|2
+(noun)|Saxe|Hermann Maurice Saxe|comte de Saxe|Marshal Saxe|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+(noun)|Saxony|Sachsen|Saxe|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+saxe-coburg-gotha|1
+(noun)|Saxe-Coburg-Gotha|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+saxe-gothea|1
+(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus (generic term)
+saxe-gothea conspicua|1
+(noun)|Prince Albert yew|Prince Albert's yew|Saxe-gothea conspicua|conifer (generic term)|coniferous tree (generic term)
+saxegothea|1
+(noun)|Saxe-gothea|Saxegothea|genus Saxe-gothea|genus Saxegothea|gymnosperm genus (generic term)
+saxhorn|1
+(noun)|brass (generic term)|brass instrument (generic term)
+saxicola|1
+(noun)|Saxicola|genus Saxicola|bird genus (generic term)
+saxicola rubetra|1
+(noun)|whinchat|Saxicola rubetra|Old World chat (generic term)|chat (generic term)
+saxicola torquata|1
+(noun)|stonechat|Saxicola torquata|Old World chat (generic term)|chat (generic term)
+saxicoline|1
+(adj)|saxicolous|saxatile|rock plant (related term)
+saxicolous|1
+(adj)|saxatile|saxicoline|rock plant (related term)
+saxicolous plant|1
+(noun)|rupestral plant|rupestrine plant|rupicolous plant|rock plant (generic term)
+saxifraga|1
+(noun)|Saxifraga|genus Saxifraga|rosid dicot genus (generic term)
+saxifraga aizoides|1
+(noun)|yellow mountain saxifrage|Saxifraga aizoides|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga granulata|1
+(noun)|meadow saxifrage|fair-maids-of-France|Saxifraga granulata|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga hypnoides|1
+(noun)|mossy saxifrage|Saxifraga hypnoides|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga occidentalis|1
+(noun)|western saxifrage|Saxifraga occidentalis|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga oppositifolia|1
+(noun)|purple saxifrage|Saxifraga oppositifolia|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga sarmentosam|1
+(noun)|strawberry geranium|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga stellaris|1
+(noun)|star saxifrage|starry saxifrage|Saxifraga stellaris|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifraga stolonifera|1
+(noun)|strawberry geranium|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+saxifragaceae|1
+(noun)|Saxifragaceae|family Saxifragaceae|saxifrage family|rosid dicot family (generic term)
+saxifrage|1
+(noun)|breakstone|rockfoil|herb (generic term)|herbaceous plant (generic term)
+saxifrage family|1
+(noun)|Saxifragaceae|family Saxifragaceae|rosid dicot family (generic term)
+saxist|1
+(noun)|saxophonist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+saxitoxin|1
+(noun)|neurotoxin (generic term)|neurolysin (generic term)
+saxo grammaticus|1
+(noun)|Saxo Grammaticus|historian (generic term)|historiographer (generic term)
+saxon|2
+(adj)|Saxon|European (related term)
+(noun)|Saxon|European (generic term)
+saxony|1
+(noun)|Saxony|Sachsen|Saxe|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+saxophone|1
+(noun)|sax|single-reed instrument (generic term)|single-reed woodwind (generic term)
+saxophonist|1
+(noun)|saxist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+say|11
+(noun)|opportunity (generic term)|chance (generic term)
+(verb)|state|tell|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|allege|aver|assert (generic term)|asseverate (generic term)|maintain (generic term)
+(verb)|suppose|speculate (generic term)
+(verb)|read|have (generic term)|feature (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|order|tell|enjoin|request (generic term)
+(verb)|pronounce|articulate|enounce|sound out|enunciate
+(verb)|recite (generic term)
+(verb)|convey (generic term)|impart (generic term)
+(verb)|read (generic term)|register (generic term)|show (generic term)|record (generic term)
+say-so|3
+(noun)|affirmation (generic term)|assertion (generic term)|statement (generic term)
+(noun)|pronouncement|dictum|declaration (generic term)
+(noun)|authority|authorization|authorisation|potency|dominance|control (generic term)
+say farewell|1
+(verb)|greet (generic term)|recognize (generic term)|recognise (generic term)|welcome (antonym)
+say hey kid|1
+(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|Say Hey Kid|ballplayer (generic term)|baseball player (generic term)
+sayan mountains|1
+(noun)|Sayan Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sayanci|1
+(noun)|Zaar|Sayanci|West Chadic (generic term)
+sayda|1
+(noun)|Sayda|Saida|Sidon|city (generic term)|metropolis (generic term)|urban center (generic term)
+sayeret|1
+(noun)|Sayeret Matkal|Sayeret Mat'kal|commando (generic term)
+sayeret mat'kal|1
+(noun)|Sayeret Matkal|Sayeret Mat'kal|sayeret|commando (generic term)
+sayeret matkal|1
+(noun)|Sayeret Matkal|Sayeret Mat'kal|sayeret|commando (generic term)
+sayers|1
+(noun)|Sayers|Dorothy Sayers|Dorothy L. Sayers|Dorothy Leigh Sayers|writer (generic term)|author (generic term)
+saying|1
+(noun)|expression|locution|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+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 (generic term)|word of farewell (generic term)
+sayornis|1
+(noun)|Sayornis|genus Sayornis|bird genus (generic term)
+sayornis phoebe|1
+(noun)|phoebe|phoebe bird|Sayornis phoebe|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+sazerac|1
+(noun)|Sazerac|cocktail (generic term)
+sb|2
+(noun)|antimony|Sb|atomic number 51|metallic element (generic term)|metal (generic term)
+(noun)|Bachelor of Science|BS|SB|bachelor's degree (generic term)|baccalaureate (generic term)
+sba|1
+(noun)|Small Business Administration|SBA|independent agency (generic term)
+sbe|1
+(noun)|south by east|SbE|compass point (generic term)|point (generic term)
+sbw|1
+(noun)|south by west|SbW|compass point (generic term)|point (generic term)
+sc|3
+(noun)|scandium|Sc|atomic number 21|metallic element (generic term)|metal (generic term)
+(noun)|South Carolina|Palmetto State|SC|American state (generic term)
+(noun)|Security Council|SC|council (generic term)
+scab|4
+(noun)|strikebreaker|blackleg|rat|worker (generic term)
+(noun)|solid body substance (generic term)
+(verb)|heal (generic term)
+(verb)|fink|rat|blackleg|work (generic term)|do work (generic term)
+scabbard|1
+(noun)|sheath (generic term)
+scabby|1
+(adj)|rough (similar term)|unsmooth (similar term)
+scabicide|1
+(noun)|pesticide (generic term)
+scabies|1
+(noun)|itch|infection (generic term)
+scabiosa|1
+(noun)|scabious|flower (generic term)
+scabiosa arvensis|1
+(noun)|field scabious|Scabiosa arvensis|scabious (generic term)|scabiosa (generic term)
+scabiosa atropurpurea|1
+(noun)|sweet scabious|pincushion flower|mournful widow|Scabiosa atropurpurea|scabious (generic term)|scabiosa (generic term)
+scabious|1
+(noun)|scabiosa|flower (generic term)
+scablands|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+scabrous|2
+(adj)|lepidote|leprose|scaly|scurfy|rough (similar term)|unsmooth (similar term)
+(adj)|dirty (similar term)
+scad|1
+(noun)|carangid fish (generic term)|carangid (generic term)
+scads|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+scaffold|3
+(noun)|platform (generic term)
+(noun)|arrangement (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+scaffolding|1
+(noun)|staging|system (generic term)
+scag|1
+(noun)|big H|hell dust|nose drops|smack|thunder|skag|heroin (generic term)|diacetylmorphine (generic term)
+scalability|1
+(noun)|quantifiability (generic term)|measurability (generic term)
+scalable|1
+(adj)|ascendable (similar term)|ascendible (similar term)|climbable (similar term)|unscalable (antonym)
+scalage|2
+(noun)|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(noun)|scaling (generic term)
+scalar|3
+(adj)|musical notation (related term)
+(adj)|magnitude relation|quantitative relation (related term)
+(noun)|variable (generic term)|variable quantity (generic term)
+scalar field|1
+(noun)|field (generic term)
+scalar matrix|1
+(noun)|diagonal matrix (generic term)
+scalar product|1
+(noun)|inner product|dot product|real number (generic term)|real (generic term)
+scalawag|3
+(noun)|scallywag|bad person (generic term)
+(noun)|rogue|knave|rascal|rapscallion|scallywag|varlet|villain (generic term)|scoundrel (generic term)
+(noun)|imp|scamp|monkey|rascal|rapscallion|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+scald|5
+(noun)|burn (generic term)
+(verb)|blister|whip|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|heat (generic term)|heat up (generic term)
+(verb)|burn (generic term)
+scalded milk|1
+(noun)|milk (generic term)
+scalding|1
+(adj)|scathing|blistering|vituperative|critical (similar term)
+scale|18
+(noun)|scale of measurement|graduated table|ordered series|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|magnitude relation (generic term)|quantitative relation (generic term)
+(noun)|proportion (generic term)
+(noun)|indicator (generic term)
+(noun)|scale leaf|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|scurf|exfoliation|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+(noun)|musical scale|musical notation (generic term)
+(noun)|weighing machine|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|plate|shell|shield (generic term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(verb)|measure (generic term)
+(verb)|model (generic term)|pattern (generic term)
+(verb)|take (generic term)
+(verb)|surmount|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|climb (generic term)|climb up (generic term)|mount (generic term)|go up (generic term)
+(verb)|descale|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|quantify (generic term)|measure (generic term)
+(verb)|size (generic term)
+scale down|2
+(verb)|rescale (generic term)|proportion (generic term)|scale up (antonym)
+(verb)|reduce|shrink (generic term)|reduce (generic term)|blow up (antonym)
+scale factor|1
+(noun)|multiplier (generic term)|multiplier factor (generic term)
+scale fern|1
+(noun)|scaly fern|Asplenium ceterach|Ceterach officinarum|fern (generic term)
+scale insect|1
+(noun)|coccid insect (generic term)
+scale leaf|1
+(noun)|scale|leaf (generic term)|leafage (generic term)|foliage (generic term)
+scale moss|1
+(noun)|leafy liverwort|liverwort (generic term)|hepatic (generic term)
+scale of c major|1
+(noun)|C major|C major scale|scale of C major|major scale (generic term)|major diatonic scale (generic term)
+scale of measurement|1
+(noun)|scale|graduated table|ordered series|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+scale up|1
+(verb)|proportion (generic term)|rescale (generic term)|scale down (antonym)
+scale value|1
+(noun)|value (generic term)
+scale wax|1
+(noun)|paraffin scale|wax (generic term)
+scaled|2
+(adj)|scaly|scaley|armored (similar term)|armoured (similar term)
+(adj)|armored (similar term)|armoured (similar term)
+scaleless|1
+(adj)|unarmored (similar term)|unarmoured (similar term)
+scalelike|1
+(adj)|close (similar term)
+scalene|2
+(adj)|triangle|trigon|trilateral (related term)
+(adj)|skeletal muscle|striated muscle (related term)
+scalene muscle|1
+(noun)|scalenus|musculus scalenus|skeletal muscle (generic term)|striated muscle (generic term)
+scalene triangle|1
+(noun)|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+scalenus|1
+(noun)|scalene muscle|musculus scalenus|skeletal muscle (generic term)|striated muscle (generic term)
+scalenus syndrome|1
+(noun)|syndrome (generic term)
+scaler|1
+(noun)|pulse counter (generic term)
+scaley|1
+(adj)|scaly|scaled|armored (similar term)|armoured (similar term)
+scalic|1
+(adj)|musical notation (related term)
+scaliness|1
+(noun)|roughness (generic term)|raggedness (generic term)
+scaling|3
+(noun)|grading|order (generic term)|ordering (generic term)
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+(noun)|climb (generic term)|mount (generic term)
+scaling ladder|1
+(noun)|ladder (generic term)
+scallion|2
+(noun)|leek|Allium porrum|alliaceous plant (generic term)
+(noun)|green onion|onion (generic term)
+scallop|9
+(noun)|crenation|crenature|crenel|crenelle|curve (generic term)|curved shape (generic term)
+(noun)|scollop|escallop|shellfish (generic term)
+(noun)|cutlet|scollop|escallop|piece (generic term)|slice (generic term)
+(noun)|scollop|escallop|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|escallop|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+(verb)|scollop|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|scollop|fish (generic term)
+(verb)|scollop|shape (generic term)|form (generic term)
+scallop shell|1
+(noun)|shell (generic term)
+scalloped|1
+(adj)|crenate|crenated|rough (similar term)
+scallopine|1
+(noun)|scallopini|dish (generic term)
+scallopini|1
+(noun)|scallopine|dish (generic term)
+scallywag|3
+(noun)|scalawag|bad person (generic term)
+(noun)|rogue|knave|rascal|rapscallion|scalawag|varlet|villain (generic term)|scoundrel (generic term)
+(noun)|imp|scamp|monkey|rascal|rapscallion|scalawag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+scalp|3
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+(verb)|sell (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+scalp lock|1
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+scalpel|1
+(noun)|surgical knife (generic term)
+scalper|1
+(noun)|speculator (generic term)|plunger (generic term)
+scaly|2
+(adj)|lepidote|leprose|scabrous|scurfy|rough (similar term)|unsmooth (similar term)
+(adj)|scaley|scaled|armored (similar term)|armoured (similar term)
+scaly-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+scaly anteater|1
+(noun)|pangolin|anteater|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+scaly fern|1
+(noun)|scale fern|Asplenium ceterach|Ceterach officinarum|fern (generic term)
+scaly lentinus|1
+(noun)|Lentinus lepideus|fungus (generic term)
+scaly pholiota|1
+(noun)|Pholiota squarrosa|agaric (generic term)
+scaly polypore|1
+(noun)|Polyporus squamosus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+scam|2
+(noun)|cozenage|swindle (generic term)|cheat (generic term)|rig (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+scammer|1
+(noun)|swindler|defrauder|chiseller|chiseler|gouger|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+scammony|3
+(noun)|Ipomoea orizabensis|morning glory (generic term)
+(noun)|natural resin (generic term)
+(noun)|Convolvulus scammonia|convolvulus (generic term)
+scammonyroot|1
+(noun)|wild potato vine|wild sweet potato vine|man-of-the-earth|manroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+scamp|2
+(noun)|imp|monkey|rascal|rapscallion|scalawag|scallywag|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+scamper|2
+(noun)|scramble|scurry|haste (generic term)|hurry (generic term)|rush (generic term)|rushing (generic term)
+(verb)|scurry|skitter|scuttle|run (generic term)
+scampi|1
+(noun)|dish (generic term)
+scampo|1
+(noun)|Norwegian lobster|langoustine|lobster (generic term)
+scan|9
+(noun)|examination (generic term)|scrutiny (generic term)
+(noun)|CAT scan|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+(verb)|examine (generic term)|see (generic term)
+(verb)|skim|rake|glance over|run down|examine (generic term)|see (generic term)
+(verb)|search (generic term)
+(verb)|conform (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|declaim (generic term)|recite (generic term)
+(verb)|read|interpret (generic term)|construe (generic term)|see (generic term)
+scandal|2
+(noun)|dirt|malicious gossip|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(noun)|outrage|trouble (generic term)
+scandalisation|2
+(noun)|scandalization|condition (generic term)|status (generic term)
+(noun)|scandalization|outrage|insult (generic term)|affront (generic term)
+scandalise|1
+(verb)|shock|offend|scandalize|appal|appall|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+scandalization|2
+(noun)|scandalisation|condition (generic term)|status (generic term)
+(noun)|scandalisation|outrage|insult (generic term)|affront (generic term)
+scandalize|1
+(verb)|shock|offend|scandalise|appal|appall|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+scandalmonger|1
+(noun)|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+scandalmongering|2
+(adj)|sensationalistic|yellow|sensational (similar term)
+(noun)|gossiping (generic term)|gossipmongering (generic term)
+scandalous|1
+(adj)|disgraceful|shameful|shocking|immoral (similar term)
+scandalousness|1
+(noun)|shamefulness (generic term)|disgracefulness (generic term)|ignominiousness (generic term)
+scandent|1
+(adj)|ascending (similar term)
+scandentia|1
+(noun)|Scandentia|order Scandentia|animal order (generic term)
+scandinavia|2
+(noun)|Scandinavia|Scandinavian Peninsula|peninsula (generic term)
+(noun)|Scandinavia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+scandinavian|3
+(adj)|Scandinavian|Norse|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Scandinavian|Norse|Northman|European (generic term)
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+scandinavian country|1
+(noun)|Scandinavian country|Scandinavian nation|European country (generic term)|European nation (generic term)
+scandinavian language|1
+(noun)|Scandinavian|Scandinavian language|Nordic|Norse|North Germanic|North Germanic language|Germanic (generic term)|Germanic language (generic term)
+scandinavian lox|1
+(noun)|Scandinavian lox|lox (generic term)
+scandinavian nation|1
+(noun)|Scandinavian country|Scandinavian nation|European country (generic term)|European nation (generic term)
+scandinavian peninsula|1
+(noun)|Scandinavia|Scandinavian Peninsula|peninsula (generic term)
+scandium|1
+(noun)|Sc|atomic number 21|metallic element (generic term)|metal (generic term)
+scanner|4
+(noun)|reviewer (generic term)|referee (generic term)|reader (generic term)
+(noun)|digital scanner|image scanner|electronic device (generic term)|data input device (generic term)|input device (generic term)
+(noun)|dish (generic term)|dish aerial (generic term)|dish antenna (generic term)|saucer (generic term)
+(noun)|electronic scanner|detector (generic term)
+scanning|2
+(noun)|photography (generic term)
+(noun)|reproduction (generic term)|replication (generic term)
+scansion|1
+(noun)|meter (generic term)|metre (generic term)|measure (generic term)|beat (generic term)|cadence (generic term)
+scant|4
+(adj)|light|short|insufficient (similar term)|deficient (similar term)
+(verb)|skimp|work (generic term)|skimp over (related term)
+(verb)|skimp|restrict (generic term)
+(verb)|stint|skimp|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+scantily|1
+(adv)|barely
+scantily clad|1
+(adj)|half-clothed|underclothed|unclothed (similar term)
+scantiness|1
+(noun)|meagerness|meagreness|leanness|poorness|scantness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+scantling|1
+(noun)|stud|upright (generic term)|vertical (generic term)
+scantness|1
+(noun)|meagerness|meagreness|leanness|poorness|scantiness|exiguity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+scanty|2
+(adj)|bare|spare|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+(noun)|pantie|panty|step-in|underpants (generic term)
+scape|2
+(noun)|flower stalk|stalk (generic term)|stem (generic term)
+(noun)|shaft|upright (generic term)|vertical (generic term)
+scapegoat|1
+(noun)|whipping boy|victim (generic term)
+scapegrace|1
+(noun)|black sheep|reprobate (generic term)|miscreant (generic term)
+scaphiopus|1
+(noun)|Scaphiopus|genus Scaphiopus|amphibian genus (generic term)
+scaphiopus bombifrons|1
+(noun)|plains spadefoot|Scaphiopus bombifrons|spadefoot (generic term)|spadefoot toad (generic term)
+scaphiopus hammondii|1
+(noun)|western spadefoot|Scaphiopus hammondii|spadefoot (generic term)|spadefoot toad (generic term)
+scaphiopus multiplicatus|1
+(noun)|southern spadefoot|Scaphiopus multiplicatus|spadefoot (generic term)|spadefoot toad (generic term)
+scaphocephaly|1
+(noun)|deformity (generic term)|malformation (generic term)|misshapenness (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+scaphoid|1
+(adj)|navicular|formed (similar term)
+scaphoid bone|1
+(noun)|os scaphoideum|navicular|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+scaphopod|1
+(noun)|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+scaphopoda|1
+(noun)|Scaphopoda|class Scaphopoda|class (generic term)
+scaphosepalum|1
+(noun)|Scaphosepalum|genus Scaphosepalum|monocot genus (generic term)|liliopsid genus (generic term)
+scapose|1
+(adj)|leafless (similar term)
+scapula|1
+(noun)|shoulder blade|shoulder bone|bone (generic term)|os (generic term)
+scapular|3
+(adj)|bone|os (related term)
+(noun)|feather (generic term)|plume (generic term)|plumage (generic term)
+(noun)|scapulary|garment (generic term)
+scapulary|1
+(noun)|scapular|garment (generic term)
+scapulohumeral|1
+(adj)|bone|os (related term)|arm bone (related term)
+scar|3
+(noun)|cicatrix|cicatrice|symptom (generic term)
+(noun)|scratch|scrape|mark|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|mark|pock|pit|deface (generic term)|disfigure (generic term)|blemish (generic term)
+scar tissue|1
+(noun)|connective tissue (generic term)
+scarab|1
+(noun)|scarabaeus|Scarabaeus sacer|dung beetle (generic term)
+scarabaean|1
+(noun)|scarabaeid beetle|scarabaeid|lamellicorn beetle (generic term)
+scarabaeid|1
+(noun)|scarabaeid beetle|scarabaean|lamellicorn beetle (generic term)
+scarabaeid beetle|1
+(noun)|scarabaeid|scarabaean|lamellicorn beetle (generic term)
+scarabaeidae|1
+(noun)|Scarabaeidae|family Scarabaeidae|arthropod family (generic term)
+scarabaeus|1
+(noun)|scarab|Scarabaeus sacer|dung beetle (generic term)
+scarabaeus sacer|1
+(noun)|scarab|scarabaeus|Scarabaeus sacer|dung beetle (generic term)
+scaramouch|1
+(noun)|Scaramouch|Scaramouche|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+scaramouche|1
+(noun)|Scaramouch|Scaramouche|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+scarce|3
+(adj)|insufficient (similar term)|deficient (similar term)
+(adj)|rare (similar term)|tight (similar term)|meager (related term)|meagre (related term)|meagerly (related term)|stingy (related term)|scrimpy (related term)|abundant (antonym)
+(adv)|barely|hardly|just|scarcely
+scarcely|2
+(adv)|barely|hardly|just|scarce
+(adv)|hardly
+scarceness|1
+(noun)|scarcity|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)|abundance (antonym)
+scarcity|1
+(noun)|scarceness|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)|abundance (antonym)
+scardinius|1
+(noun)|Scardinius|genus Scardinius|fish genus (generic term)
+scardinius erythrophthalmus|1
+(noun)|rudd|Scardinius erythrophthalmus|cyprinid (generic term)|cyprinid fish (generic term)
+scare|4
+(noun)|panic|anxiety (generic term)|anxiousness (generic term)
+(noun)|panic attack|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(verb)|frighten|fright|affright|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|frighten off (related term)|frighten away (related term)
+(verb)|daunt|dash|scare off|pall|frighten off|scare away|frighten away|intimidate (generic term)|restrain (generic term)
+scare away|1
+(verb)|daunt|dash|scare off|pall|frighten off|frighten away|scare|intimidate (generic term)|restrain (generic term)
+scare off|1
+(verb)|daunt|dash|pall|frighten off|scare away|frighten away|scare|intimidate (generic term)|restrain (generic term)
+scare quote|1
+(noun)|quotation mark (generic term)|quote (generic term)|inverted comma (generic term)
+scarecrow|1
+(noun)|straw man|strawman|bird-scarer|scarer|effigy (generic term)|image (generic term)|simulacrum (generic term)
+scarecrowish|1
+(adj)|thin (similar term)|lean (similar term)
+scared|1
+(adj)|frightened|afraid (similar term)
+scaremonger|1
+(noun)|stirrer|alarmist (generic term)
+scarer|1
+(noun)|scarecrow|straw man|strawman|bird-scarer|effigy (generic term)|image (generic term)|simulacrum (generic term)
+scarey|1
+(adj)|chilling|scary|shivery|shuddery|alarming (similar term)
+scarf|5
+(noun)|garment (generic term)
+(noun)|scarf joint|joint (generic term)
+(verb)|masturbate (generic term)|wank (generic term)|fuck off (generic term)|she-bop (generic term)|jack off (generic term)|jerk off (generic term)
+(verb)|join (generic term)|bring together (generic term)
+(verb)|wear (generic term)|put on (generic term)|get into (generic term)|don (generic term)|assume (generic term)
+scarf bandage|1
+(noun)|sling|triangular bandage|bandage (generic term)|patch (generic term)
+scarf joint|1
+(noun)|scarf|joint (generic term)
+scarf out|1
+(verb)|gorge|ingurgitate|overindulge|glut|englut|stuff|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|eat (generic term)
+scarface|1
+(noun)|Capone|Al Capone|Alphonse Capone|Scarface|gangster (generic term)|mobster (generic term)
+scarfpin|1
+(noun)|tie tack|tiepin|pin (generic term)
+scaridae|1
+(noun)|Scaridae|family Scaridae|fish family (generic term)
+scarify|3
+(verb)|puncture (generic term)
+(verb)|score (generic term)|nock (generic term)|mark (generic term)
+(verb)|loosen (generic term)
+scarily|1
+(adv)|frighteningly
+scarlatina|1
+(noun)|scarlet fever|contagious disease (generic term)|contagion (generic term)
+scarlet|2
+(adj)|red|reddish|ruddy|blood-red|carmine|cerise|cherry|cherry-red|crimson|ruby|ruby-red|chromatic (similar term)
+(noun)|vermilion|orange red|red (generic term)|redness (generic term)
+scarlet-crimson|1
+(adj)|chromatic (similar term)
+scarlet-pink|1
+(adj)|chromatic (similar term)
+scarlet bugler|1
+(noun)|Penstemon centranthifolius|wildflower (generic term)|wild flower (generic term)
+scarlet bush|1
+(noun)|scarlet hamelia|coloradillo|Hamelia patens|Hamelia erecta|hamelia (generic term)
+scarlet clematis|1
+(noun)|Clematis texensis|clematis (generic term)
+scarlet cup|1
+(noun)|Sarcoscypha coccinea|discomycete (generic term)|cup fungus (generic term)
+scarlet fever|1
+(noun)|scarlatina|contagious disease (generic term)|contagion (generic term)
+scarlet fritillary|1
+(noun)|Fritillaria recurva|fritillary (generic term)|checkered lily (generic term)
+scarlet hamelia|1
+(noun)|scarlet bush|coloradillo|Hamelia patens|Hamelia erecta|hamelia (generic term)
+scarlet haw|1
+(noun)|Crataegus biltmoreana|hawthorn (generic term)|haw (generic term)
+scarlet letter|1
+(noun)|emblem (generic term)|allegory (generic term)
+scarlet lychnis|1
+(noun)|maltese cross|Lychins chalcedonica|lychnis (generic term)|catchfly (generic term)
+scarlet maple|1
+(noun)|red maple|swamp maple|Acer rubrum|maple (generic term)
+scarlet musk flower|1
+(noun)|Nyctaginia capitata|flower (generic term)
+scarlet oak|1
+(noun)|Quercus coccinea|oak (generic term)|oak tree (generic term)
+scarlet pimpernel|1
+(noun)|red pimpernel|poor man's weatherglass|Anagallis arvensis|pimpernel (generic term)
+scarlet plume|1
+(noun)|Euphorbia fulgens|spurge (generic term)
+scarlet runner|3
+(noun)|scarlet runner bean|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+(noun)|running postman|Kennedia prostrata|coral pea (generic term)
+(noun)|scarlet runner bean|runner bean|English runner bean|green bean (generic term)
+scarlet runner bean|2
+(noun)|scarlet runner|Dutch case-knife bean|runner bean|Phaseolus coccineus|Phaseolus multiflorus|pole bean (generic term)
+(noun)|scarlet runner|runner bean|English runner bean|green bean (generic term)
+scarlet strawberry|1
+(noun)|Virginia strawberry|Fragaria virginiana|strawberry (generic term)
+scarlet sumac|1
+(noun)|smooth sumac|vinegar tree|Rhus glabra|sumac (generic term)|sumach (generic term)|shumac (generic term)
+scarlet tanager|1
+(noun)|Piranga olivacea|redbird|firebird|tanager (generic term)
+scarlet wisteria tree|1
+(noun)|vegetable hummingbird|Sesbania grandiflora|tree (generic term)
+scarp|2
+(noun)|escarpment|slope (generic term)|incline (generic term)|side (generic term)
+(noun)|escarpment|escarp|protective embankment|fortification (generic term)|munition (generic term)
+scarper|1
+(verb)|scat|run|turn tail|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+scarred|2
+(adj)|marked (similar term)
+(adj)|marred|blemished (similar term)
+scartella|1
+(noun)|Scartella|genus Scartella|fish genus (generic term)
+scartella cristata|1
+(noun)|Molly Miller|Scartella cristata|blenny (generic term)|combtooth blenny (generic term)
+scary|1
+(adj)|chilling|scarey|shivery|shuddery|alarming (similar term)
+scat|2
+(noun)|scat singing|singing (generic term)|vocalizing (generic term)|jazz (generic term)
+(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|leave (generic term)|go forth (generic term)|go away (generic term)
+scat singing|1
+(noun)|scat|singing (generic term)|vocalizing (generic term)|jazz (generic term)
+scathe|1
+(noun)|damage|harm|hurt|change of integrity (generic term)
+scathing|1
+(adj)|blistering|scalding|vituperative|critical (similar term)
+scathingly|1
+(adv)|unsparingly
+scatological|1
+(adj)|dirty (similar term)
+scatology|2
+(noun)|obscenity (generic term)|smut (generic term)|vulgarism (generic term)|filth (generic term)|dirty word (generic term)
+(noun)|chemical analysis (generic term)|qualitative analysis (generic term)
+scatophagy|1
+(noun)|eating (generic term)|feeding (generic term)
+scatter|8
+(noun)|spread|distribution (generic term)|dispersion (generic term)
+(noun)|scattering|strewing|spread (generic term)|spreading (generic term)
+(verb)|disperse|dissipate|dispel|break up|separate (generic term)|divide (generic term)
+(verb)|disperse|dissipate|spread out|separate (generic term)|part (generic term)|split (generic term)
+(verb)|sprinkle|dot|dust|disperse|discharge (generic term)
+(verb)|sow (generic term)|sough (generic term)|seed (generic term)
+(verb)|break up|disperse|change integrity (generic term)
+(verb)|spread|spread out|circulate (generic term)|pass around (generic term)|pass on (generic term)|distribute (generic term)
+scatter pin|1
+(noun)|pin (generic term)
+scatter rug|1
+(noun)|throw rug|rug (generic term)|carpet (generic term)|carpeting (generic term)
+scatterbrain|1
+(noun)|forgetful person|simpleton (generic term)|simple (generic term)
+scatterbrained|2
+(adj)|rattlebrained|rattlepated|scatty|foolish (similar term)
+(adj)|flighty|flyaway|head-in-the-clouds|frivolous (similar term)
+scattered|2
+(adj)|distributed (similar term)
+(adj)|confused|disconnected|disjointed|disordered|garbled|illogical|unconnected|incoherent (similar term)
+scattergood|1
+(noun)|spendthrift|spend-all|spender|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+scattergun|1
+(noun)|shotgun|firearm (generic term)|piece (generic term)|small-arm (generic term)
+scattering|6
+(adj)|diffusing|diffusive|dispersive|disseminative|disseminating|spreading|distributive (similar term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|sprinkling|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|sprinkle|sprinkling|shower (generic term)|rain shower (generic term)
+(noun)|dispersion|spread (generic term)|spreading (generic term)
+(noun)|scatter|strewing|spread (generic term)|spreading (generic term)
+scattershot|1
+(adj)|undiscriminating (similar term)|indiscriminating (similar term)
+scatty|2
+(adj)|rattlebrained|rattlepated|scatterbrained|foolish (similar term)
+(adj)|absent|absentminded|abstracted|inattentive (similar term)
+scaup|1
+(noun)|scaup duck|bluebill|broadbill|duck (generic term)
+scaup duck|1
+(noun)|scaup|bluebill|broadbill|duck (generic term)
+scauper|1
+(noun)|scorper|graver (generic term)|graving tool (generic term)|pointel (generic term)|pointrel (generic term)
+scavenge|4
+(verb)|clean (generic term)|make clean (generic term)
+(verb)|salvage|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|feed (generic term)|give (generic term)
+(verb)|clean|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+scavenger|3
+(noun)|chemical agent (generic term)
+(noun)|magpie|pack rat|hoarder (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+scavenger cell|1
+(noun)|phagocyte|somatic cell (generic term)|vegetative cell (generic term)
+scd|1
+(noun)|Doctor of Science|DS|ScD|honorary degree (generic term)|honoris causa (generic term)
+sceliphron|1
+(noun)|Sceliphron|genus Sceliphron|arthropod genus (generic term)
+sceloglaux|1
+(noun)|Sceloglaux|genus Sceloglaux|bird genus (generic term)
+sceloglaux albifacies|1
+(noun)|laughing owl|laughing jackass|Sceloglaux albifacies|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+sceloporus|1
+(noun)|Sceloporus|genus Sceloporus|reptile genus (generic term)
+sceloporus graciosus|1
+(noun)|sagebrush lizard|Sceloporus graciosus|spiny lizard (generic term)
+sceloporus occidentalis|1
+(noun)|western fence lizard|swift|blue-belly|Sceloporus occidentalis|fence lizard (generic term)
+sceloporus undulatus|1
+(noun)|eastern fence lizard|pine lizard|Sceloporus undulatus|fence lizard (generic term)
+scenario|3
+(noun)|script (generic term)|book (generic term)|playscript (generic term)
+(noun)|setting (generic term)|scene (generic term)
+(noun)|premise (generic term)|premiss (generic term)|assumption (generic term)
+scenarist|1
+(noun)|writer (generic term)|author (generic term)
+scend|1
+(verb)|surge|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+scene|10
+(noun)|area (generic term)|country (generic term)
+(noun)|incident (generic term)
+(noun)|view|aspect|prospect|vista|panorama|visual percept (generic term)|visual image (generic term)
+(noun)|shot|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|picture|situation (generic term)|state of affairs (generic term)
+(noun)|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|fit|tantrum|conniption|bad temper (generic term)|ill temper (generic term)
+(noun)|view|graphic art (generic term)
+(noun)|setting|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+(noun)|scenery|stage set (generic term)|set (generic term)
+scene-stealer|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+scene of action|1
+(noun)|arena|playing field (generic term)|athletic field (generic term)|playing area (generic term)|field (generic term)
+scene painter|2
+(noun)|scenic artist|painter (generic term)
+(noun)|painter (generic term)
+scenery|2
+(noun)|scene|stage set (generic term)|set (generic term)
+(noun)|vicinity (generic term)|locality (generic term)|neighborhood (generic term)|neighbourhood (generic term)|neck of the woods (generic term)
+sceneshifter|1
+(noun)|shifter|stagehand (generic term)|stage technician (generic term)
+scenic|2
+(adj)|beautiful (similar term)
+(adj)|stage set|set (related term)
+scenic artist|1
+(noun)|scene painter|painter (generic term)
+scenic railway|1
+(noun)|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+scent|6
+(noun)|aroma|fragrance|perfume|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(noun)|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(noun)|olfactory property|smell|aroma|odor|odour|property (generic term)
+(verb)|odorize|odourise|cause to be perceived (generic term)|deodourise (antonym)|deodorize (antonym)
+(verb)|nose|wind|smell (generic term)|scent out (related term)
+(verb)|perfume|groom (generic term)|neaten (generic term)
+scent out|1
+(verb)|sniff out|smell out|nose out
+scented|4
+(adj)|scentless (antonym)
+(adj)|perfumed|fragrant (similar term)
+(adj)|odoriferous|odorous|perfumed|sweet|sweet-scented|sweet-smelling|fragrant (similar term)
+(adj)|odorous (similar term)
+scented fern|3
+(noun)|hay-scented|hay-scented fern|boulder fern|Dennstaedtia punctilobula|fern (generic term)
+(noun)|Mohria caffrorum|fern (generic term)
+(noun)|tansy|golden buttons|Tanacetum vulgare|composite (generic term)|composite plant (generic term)
+scented penstemon|1
+(noun)|balloon flower|Penstemon palmeri|wildflower (generic term)|wild flower (generic term)
+scented wattle|1
+(noun)|huisache|cassie|mimosa bush|sweet wattle|sweet acacia|flame tree|Acacia farnesiana|acacia (generic term)
+scentless|2
+(adj)|scented (antonym)
+(adj)|odorless (similar term)|odourless (similar term)|inodorous (similar term)
+scentless camomile|1
+(noun)|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+scentless false camomile|1
+(noun)|scentless camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+scentless hayweed|1
+(noun)|scentless camomile|scentless false camomile|scentless mayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+scentless mayweed|1
+(noun)|scentless camomile|scentless false camomile|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+scepter|2
+(noun)|sceptre|reign (generic term)|sovereignty (generic term)
+(noun)|sceptre|verge|wand|staff (generic term)
+sceptered|1
+(adj)|empowered|sceptred|authorized (similar term)|authorised (similar term)
+sceptic|1
+(noun)|skeptic|doubter|intellectual (generic term)|intellect (generic term)
+sceptical|2
+(adj)|doubting|questioning|skeptical|distrustful (similar term)
+(adj)|disbelieving|skeptical|unbelieving|incredulous (similar term)
+sceptically|1
+(adv)|skeptically
+scepticism|1
+(noun)|agnosticism|skepticism|unbelief (generic term)|disbelief (generic term)
+sceptre|2
+(noun)|scepter|reign (generic term)|sovereignty (generic term)
+(noun)|scepter|verge|wand|staff (generic term)
+sceptred|1
+(adj)|empowered|sceptered|authorized (similar term)|authorised (similar term)
+scet|1
+(noun)|spacecraft event time|SCET|coordinated universal time (generic term)|UTC (generic term)
+schadenfreude|1
+(noun)|Schadenfreude|delight (generic term)|delectation (generic term)
+schaffneria|1
+(noun)|Schaffneria|genus Schaffneria|fern genus (generic term)
+schaffneria nigripes|1
+(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern (generic term)
+schedule|3
+(noun)|agenda|docket|plan (generic term)|program (generic term)|programme (generic term)
+(noun)|list (generic term)|listing (generic term)
+(verb)|plan (generic term)
+schedule feeding|1
+(noun)|infant feeding (generic term)
+scheduled|1
+(adj)|regular (similar term)|unscheduled (antonym)
+scheduled fire|1
+(noun)|fire (generic term)|firing (generic term)
+scheduled maintenance|1
+(noun)|care (generic term)|maintenance (generic term)|upkeep (generic term)
+scheduled territories|1
+(noun)|sterling area|sterling bloc|bloc (generic term)|axis (generic term)
+scheduler|1
+(noun)|hardware (generic term)|computer hardware (generic term)
+scheduling|1
+(noun)|programming|programing|planning (generic term)
+scheele|1
+(noun)|Scheele|Karl Scheele|Karl Wilhelm Scheele|chemist (generic term)
+scheelite|1
+(noun)|mineral (generic term)
+schefflera|1
+(noun)|Schefflera|genus Schefflera|rosid dicot genus (generic term)
+schefflera actinophylla|1
+(noun)|umbrella tree|Schefflera actinophylla|Brassaia actinophylla|shrub (generic term)|bush (generic term)
+scheldt|1
+(noun)|Scheldt|Scheldt River|river (generic term)
+scheldt river|1
+(noun)|Scheldt|Scheldt River|river (generic term)
+schema|2
+(noun)|scheme|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|outline|scheme|plan (generic term)|program (generic term)|programme (generic term)
+schematic|2
+(adj)|conventional|formal|nonrepresentational (similar term)
+(noun)|schematic drawing|diagram (generic term)
+schematic drawing|1
+(noun)|schematic|diagram (generic term)
+schematisation|2
+(noun)|schematization|diagramming|representation (generic term)
+(noun)|schematization|reduction (generic term)|simplification (generic term)
+schematise|1
+(verb)|schematize|change (generic term)|alter (generic term)|modify (generic term)
+schematization|2
+(noun)|schematisation|diagramming|representation (generic term)
+(noun)|schematisation|reduction (generic term)|simplification (generic term)
+schematize|2
+(verb)|create by mental act (generic term)|create mentally (generic term)
+(verb)|schematise|change (generic term)|alter (generic term)|modify (generic term)
+scheme|7
+(noun)|strategy|plan of action (generic term)
+(noun)|dodge|dodging|falsehood (generic term)|falsity (generic term)|untruth (generic term)
+(noun)|system|group (generic term)|grouping (generic term)
+(noun)|schema|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|outline|schema|plan (generic term)|program (generic term)|programme (generic term)
+(verb)|intrigue|connive|plot (generic term)
+(verb)|plan (generic term)
+scheme arch|1
+(noun)|skeen arch|skene arch|diminished arch|arch (generic term)
+schemer|1
+(noun)|plotter|planner (generic term)|contriver (generic term)|deviser (generic term)
+scheming|2
+(adj)|calculating|calculative|conniving|shrewd|hard (similar term)
+(adj)|designing|artful (similar term)
+schemozzle|1
+(noun)|shemozzle|confusion (generic term)
+schenectady|1
+(noun)|Schenectady|city (generic term)|metropolis (generic term)|urban center (generic term)
+scheol|1
+(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|underworld|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+scherzo|1
+(noun)|movement (generic term)
+scheuchzeriaceae|1
+(noun)|Scheuchzeriaceae|family Scheuchzeriaceae|Juncaginaceae|family Juncaginaceae|arrow-grass family|monocot family (generic term)|liliopsid family (generic term)
+schiaparelli|2
+(noun)|Schiaparelli|Giovanni Virginio Schiaparelli|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|Schiaparelli|Elsa Schiaparelli|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+schick test|1
+(noun)|Schick test|skin test (generic term)
+schiller|1
+(noun)|Schiller|Johann Christoph Friedrich von Schiller|writer (generic term)|author (generic term)
+schilling|1
+(noun)|Austrian schilling|Austrian monetary unit (generic term)
+schinus|1
+(noun)|Schinus|genus Schinus|dicot genus (generic term)|magnoliopsid genus (generic term)
+schinus chichita|1
+(noun)|aroeira blanca|Schinus chichita|tree (generic term)
+schinus molle|1
+(noun)|pepper tree|molle|Peruvian mastic tree|Schinus molle|tree (generic term)
+schinus terebinthifolius|1
+(noun)|Brazilian pepper tree|Schinus terebinthifolius|tree (generic term)
+schipperke|1
+(noun)|watchdog (generic term)|guard dog (generic term)
+schism|2
+(noun)|split|division (generic term)
+(noun)|rupture (generic term)|breach (generic term)|break (generic term)|severance (generic term)|rift (generic term)|falling out (generic term)
+schismatic|1
+(adj)|schismatical|division (related term)
+schismatical|1
+(adj)|schismatic|division (related term)
+schist|1
+(noun)|metamorphic rock (generic term)
+schistorrhachis|1
+(noun)|spina bifida|rachischisis|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+schistosoma|1
+(noun)|Schistosoma|genus Schistosoma|worm genus (generic term)
+schistosomatidae|1
+(noun)|Schistosomatidae|family Schistosomatidae|worm family (generic term)
+schistosome|1
+(noun)|blood fluke|fluke (generic term)|trematode (generic term)|trematode worm (generic term)
+schistosome dermatitis|1
+(noun)|swimmer's itch|dermatitis (generic term)
+schistosomiasis|1
+(noun)|bilharzia|bilharziasis|infestation (generic term)|infection (generic term)
+schizachyrium|1
+(noun)|Schizachyrium|genus Schizachyrium|monocot genus (generic term)|liliopsid genus (generic term)
+schizachyrium scoparium|1
+(noun)|broom beard grass|prairie grass|wire grass|Andropogon scoparius|Schizachyrium scoparium|broom grass (generic term)
+schizaea|1
+(noun)|Schizaea|genus Schizaea|fern genus (generic term)
+schizaea pusilla|1
+(noun)|curly grass|curly grass fern|Schizaea pusilla|fern (generic term)
+schizaeaceae|1
+(noun)|Schizaeaceae|family Schizaeaceae|fern family (generic term)
+schizanthus|1
+(noun)|butterfly flower|poor man's orchid|flower (generic term)
+schizocarp|1
+(noun)|fruit (generic term)
+schizogony|1
+(noun)|fission (generic term)
+schizoid|3
+(adj)|schizophrenic|psychosis (related term)
+(adj)|neurotic (similar term)|psychoneurotic (similar term)
+(noun)|schizotypal personality|personality disorder (generic term)
+schizomycetes|1
+(noun)|Schizomycetes|class Schizomycetes|class (generic term)
+schizopetalon|1
+(noun)|Schizopetalon walkeri|flower (generic term)
+schizopetalon walkeri|1
+(noun)|schizopetalon|Schizopetalon walkeri|flower (generic term)
+schizophragma|1
+(noun)|Schizophragma|genus Schizophragma|rosid dicot genus (generic term)
+schizophragma hydrangeoides|1
+(noun)|climbing hydrangea|Schizophragma hydrangeoides|shrub (generic term)|bush (generic term)
+schizophrenia|1
+(noun)|schizophrenic disorder|schizophrenic psychosis|dementia praecox|psychosis (generic term)
+schizophrenic|4
+(adj)|insane (similar term)
+(adj)|schizoid|psychosis (related term)
+(adj)|hebephrenic|insane (similar term)
+(noun)|psychotic (generic term)|psychotic person (generic term)|psycho (generic term)
+schizophrenic disorder|1
+(noun)|schizophrenia|schizophrenic psychosis|dementia praecox|psychosis (generic term)
+schizophrenic psychosis|1
+(noun)|schizophrenia|schizophrenic disorder|dementia praecox|psychosis (generic term)
+schizophyceae|1
+(noun)|Myxophyceae|family Myxophyceae|Schizophyceae|family Schizophyceae|bacteria family (generic term)
+schizophyta|1
+(noun)|Schizophyta|division Schizophyta|division (generic term)
+schizopoda|1
+(noun)|Schizopoda|animal order (generic term)
+schizosaccharomyces|1
+(noun)|Schizosaccharomyces|genus Schizosaccharomyces|fungus genus (generic term)
+schizosaccharomycetaceae|1
+(noun)|Schizosaccharomycetaceae|family Schizosaccharomycetaceae|fungus family (generic term)
+schizothymia|1
+(noun)|mental disorder (generic term)|mental disturbance (generic term)|disturbance (generic term)|psychological disorder (generic term)|folie (generic term)
+schizotypal personality|1
+(noun)|schizoid|personality disorder (generic term)
+schleiden|1
+(noun)|Schleiden|Matthias Schleiden|M. J. Schleiden|physiologist (generic term)|histologist (generic term)
+schlemiel|1
+(noun)|shlemiel|simpleton (generic term)|simple (generic term)
+schlemm's canal|1
+(noun)|canal of Schlemm|Schlemm's canal|sinus venosus sclerae|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+schlep|3
+(noun)|schlepper|shlepper|shlep|simpleton (generic term)|simple (generic term)
+(noun)|shlep|journey (generic term)|journeying (generic term)
+(verb)|shlep|pull along|drag (generic term)
+schlepper|1
+(noun)|shlepper|schlep|shlep|simpleton (generic term)|simple (generic term)
+schlesien|1
+(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+schlesinger|2
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Schlesinger Jr.|Arthur Meier Schlesinger Jr.|historian (generic term)|historiographer (generic term)
+(noun)|Schlesinger|Arthur Schlesinger|Arthur Meier Schlesinger|historian (generic term)|historiographer (generic term)
+schliemann|1
+(noun)|Schliemann|Heinrich Schliemann|archeologist (generic term)|archaeologist (generic term)
+schlimazel|1
+(noun)|shlimazel|unfortunate (generic term)|unfortunate person (generic term)
+schlock|1
+(noun)|shlock|dreck|merchandise (generic term)|ware (generic term)|product (generic term)
+schlockmeister|1
+(noun)|shlockmeister|merchant (generic term)|merchandiser (generic term)
+schlumbergera|1
+(noun)|Schlumbergera|genus Schlumbergera|caryophylloid dicot genus (generic term)
+schlumbergera baridgesii|1
+(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus (generic term)
+schlumbergera buckleyi|1
+(noun)|Christmas cactus|Schlumbergera buckleyi|Schlumbergera baridgesii|cactus (generic term)
+schlumbergera gaertneri|1
+(noun)|Easter cactus|Hatiora gaertneri|Schlumbergera gaertneri|cactus (generic term)
+schlumbergera truncatus|1
+(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus (generic term)
+schmaltz|1
+(noun)|shmaltz|schmalz|mawkishness (generic term)|sentimentality (generic term)|drippiness (generic term)|mushiness (generic term)|soupiness (generic term)|sloppiness (generic term)
+schmaltzy|1
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmalzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+schmalz|1
+(noun)|schmaltz|shmaltz|mawkishness (generic term)|sentimentality (generic term)|drippiness (generic term)|mushiness (generic term)|soupiness (generic term)|sloppiness (generic term)
+schmalzy|1
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|sentimental|soppy|soupy|slushy|emotional (similar term)
+schmear|1
+(noun)|schmeer|shmear|batch (generic term)|clutch (generic term)
+schmeer|1
+(noun)|schmear|shmear|batch (generic term)|clutch (generic term)
+schmegegge|1
+(noun)|shmegegge|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+schmidt|1
+(noun)|Schmidt|Helmut Schmidt|Helmut Heinrich Waldemar Schmidt|statesman (generic term)|solon (generic term)|national leader (generic term)
+schmidt camera|1
+(noun)|Schmidt telescope|Schmidt camera|reflecting telescope (generic term)|reflector (generic term)
+schmidt telescope|1
+(noun)|Schmidt telescope|Schmidt camera|reflecting telescope (generic term)|reflector (generic term)
+schmo|1
+(noun)|schmuck|shmuck|shmo|jerk (generic term)|dork (generic term)
+schmoose|2
+(noun)|chat|confab|confabulation|schmooze|conversation (generic term)
+(verb)|shmooze|shmoose|schmooze|jawbone|chew the fat (generic term)|shoot the breeze (generic term)|chat (generic term)|confabulate (generic term)|confab (generic term)|chitchat (generic term)|chatter (generic term)|chaffer (generic term)|natter (generic term)|gossip (generic term)|jaw (generic term)|claver (generic term)|visit (generic term)
+schmooze|2
+(noun)|chat|confab|confabulation|schmoose|conversation (generic term)
+(verb)|shmooze|shmoose|schmoose|jawbone|chew the fat (generic term)|shoot the breeze (generic term)|chat (generic term)|confabulate (generic term)|confab (generic term)|chitchat (generic term)|chatter (generic term)|chaffer (generic term)|natter (generic term)|gossip (generic term)|jaw (generic term)|claver (generic term)|visit (generic term)
+schmoozer|1
+(noun)|conversationalist|conversationist|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+schmuck|1
+(noun)|shmuck|schmo|shmo|jerk (generic term)|dork (generic term)
+schnabel|1
+(noun)|Schnabel|Artur Schnabel|composer (generic term)|pianist (generic term)|piano player (generic term)
+schnapps|1
+(noun)|schnaps|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+schnaps|1
+(noun)|schnapps|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+schnauzer|1
+(noun)|terrier (generic term)
+schnecken|1
+(noun)|honey bun|sticky bun|caramel bun|sweet roll (generic term)|coffee roll (generic term)
+schnittlaugh|1
+(noun)|chives|chive|cive|Allium schoenoprasum|alliaceous plant (generic term)
+schnitzel|1
+(noun)|Wiener schnitzel|dish (generic term)
+schnook|1
+(noun)|shnook|simpleton (generic term)|simple (generic term)
+schnorchel|1
+(noun)|snorkel|schnorkel|snorkel breather|breather|air passage (generic term)|air duct (generic term)|airway (generic term)
+schnorkel|1
+(noun)|snorkel|schnorchel|snorkel breather|breather|air passage (generic term)|air duct (generic term)|airway (generic term)
+schnorr|1
+(verb)|shnorr|scrounge|cadge|beg (generic term)
+schnorrer|1
+(noun)|shnorrer|moocher (generic term)|mooch (generic term)|cadger (generic term)|scrounger (generic term)
+schnoz|1
+(noun)|beak|honker|hooter|nozzle|snoot|snout|schnozzle|nose (generic term)|olfactory organ (generic term)
+schnozzle|1
+(noun)|beak|honker|hooter|nozzle|snoot|snout|schnoz|nose (generic term)|olfactory organ (generic term)
+schoenberg|1
+(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer (generic term)
+schola cantorum|1
+(noun)|choir school|preparatory school (generic term)|prep school (generic term)
+scholar|3
+(noun)|scholarly person|bookman|student|intellectual (generic term)|intellect (generic term)
+(noun)|learner|assimilator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+scholarly|1
+(adj)|academic (similar term)|donnish (similar term)|pedantic (similar term)|bookish (similar term)|studious (similar term)|erudite (similar term)|learned (similar term)|critical (related term)|intellectual (related term)|profound (related term)|unscholarly (antonym)
+scholarly person|1
+(noun)|scholar|bookman|student|intellectual (generic term)|intellect (generic term)
+scholarship|2
+(noun)|aid (generic term)|economic aid (generic term)|prize (generic term)|award (generic term)
+(noun)|eruditeness|erudition|learnedness|learning|encyclopedism|encyclopaedism|education (generic term)
+scholastic|4
+(adj)|educational institution (related term)
+(adj)|philosophical doctrine|philosophical theory (related term)
+(noun)|pedant|bookworm|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|Scholastic|philosopher (generic term)
+scholasticism|2
+(noun)|Scholasticism|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|academicism|academism|traditionalism (generic term)|traditionality (generic term)
+scholiast|1
+(noun)|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+schomburgkia|1
+(noun)|Schomburgkia|genus Schomburgkia|monocot genus (generic term)|liliopsid genus (generic term)
+schonbein|1
+(noun)|Schonbein|Christian Schonbein|Christian Friedrich Schonbein|chemist (generic term)
+schonberg|1
+(noun)|Schonberg|Arnold Schonberg|Schoenberg|Arnold Schoenberg|composer (generic term)
+school|9
+(noun)|schoolhouse|building (generic term)|edifice (generic term)
+(noun)|schooling|education (generic term)
+(noun)|educational institution (generic term)
+(noun)|schooltime|school day|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|body (generic term)
+(noun)|shoal|animal group (generic term)
+(verb)|educate (generic term)
+(verb)|educate|train|cultivate|civilize|civilise|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+(verb)|swim (generic term)
+school-age child|1
+(noun)|schoolchild|pupil|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+school assignment|1
+(noun)|schoolwork|assignment (generic term)
+school bell|1
+(noun)|bell (generic term)
+school board|1
+(noun)|board of education|board (generic term)
+school bus|1
+(noun)|bus (generic term)|autobus (generic term)|coach (generic term)|charabanc (generic term)|double-decker (generic term)|jitney (generic term)|motorbus (generic term)|motorcoach (generic term)|omnibus (generic term)|passenger vehicle (generic term)
+school crossing|1
+(noun)|pedestrian crossing (generic term)|zebra crossing (generic term)
+school day|2
+(noun)|day (generic term)
+(noun)|school|schooltime|time period (generic term)|period of time (generic term)|period (generic term)
+school dictionary|1
+(noun)|learner's dictionary|dictionary (generic term)|lexicon (generic term)
+school district|1
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+school newspaper|1
+(noun)|school paper|newspaper (generic term)|paper (generic term)
+school of dentistry|1
+(noun)|dental school|graduate school (generic term)|grad school (generic term)
+school of law|1
+(noun)|law school|graduate school (generic term)|grad school (generic term)
+school of medicine|1
+(noun)|medical school|graduate school (generic term)|grad school (generic term)
+school of music|1
+(noun)|music school|conservatory (generic term)
+school of nursing|1
+(noun)|nursing school|school (generic term)
+school of thought|1
+(noun)|doctrine|philosophy|philosophical system|ism|belief (generic term)
+school paper|1
+(noun)|school newspaper|newspaper (generic term)|paper (generic term)
+school phobia|1
+(noun)|social phobia (generic term)
+school principal|1
+(noun)|principal|head teacher|head|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+school ship|1
+(noun)|training ship|ship (generic term)
+school superintendent|1
+(noun)|overseer (generic term)|superintendent (generic term)
+school system|1
+(noun)|establishment (generic term)
+school teacher|1
+(noun)|schoolteacher|teacher (generic term)|instructor (generic term)
+school term|1
+(noun)|academic term|academic session|session|term (generic term)
+school text|1
+(noun)|textbook|text|text edition|schoolbook|book (generic term)|trade edition (antonym)
+school year|1
+(noun)|academic year|year (generic term)
+schoolbag|1
+(noun)|bag (generic term)
+schoolbook|1
+(noun)|textbook|text|text edition|school text|book (generic term)|trade edition (antonym)
+schoolboy|1
+(noun)|male child (generic term)|boy (generic term)|schoolchild (generic term)|school-age child (generic term)|pupil (generic term)
+schoolboyish|1
+(adj)|boyish|boylike|young (similar term)|immature (similar term)
+schoolchild|1
+(noun)|school-age child|pupil|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+schoolcraft|1
+(noun)|Schoolcraft|Henry Rowe Schoolcraft|geologist (generic term)|ethnologist (generic term)|explorer (generic term)|adventurer (generic term)
+schooldays|1
+(noun)|schooltime|time of life (generic term)
+schoolfellow|1
+(noun)|schoolmate|classmate|class fellow|acquaintance (generic term)|friend (generic term)
+schoolfriend|1
+(noun)|friend (generic term)
+schoolgirl|1
+(noun)|female child (generic term)|girl (generic term)|little girl (generic term)
+schoolgirlish|1
+(adj)|girlish|young (similar term)|immature (similar term)
+schoolhouse|1
+(noun)|school|building (generic term)|edifice (generic term)
+schooling|3
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+(noun)|school|education (generic term)
+(noun)|training (generic term)|preparation (generic term)|grooming (generic term)
+schoolma'am|1
+(noun)|schoolmarm|schoolmistress|mistress|schoolteacher (generic term)|school teacher (generic term)
+schoolman|2
+(noun)|Schoolman|medieval Schoolman|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+(noun)|academician|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+schoolmarm|1
+(noun)|schoolma'am|schoolmistress|mistress|schoolteacher (generic term)|school teacher (generic term)
+schoolmaster|3
+(noun)|headmaster|master|principal (generic term)|school principal (generic term)|head teacher (generic term)|head (generic term)
+(noun)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|Lutjanus apodus|snapper (generic term)
+schoolmate|1
+(noun)|classmate|schoolfellow|class fellow|acquaintance (generic term)|friend (generic term)
+schoolmistress|1
+(noun)|schoolmarm|schoolma'am|mistress|schoolteacher (generic term)|school teacher (generic term)
+schoolroom|1
+(noun)|classroom|room (generic term)
+schoolteacher|1
+(noun)|school teacher|teacher (generic term)|instructor (generic term)
+schooltime|2
+(noun)|school|school day|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|schooldays|time of life (generic term)
+schoolwide|1
+(adj)|comprehensive (similar term)
+schoolwork|1
+(noun)|school assignment|assignment (generic term)
+schoolyard|1
+(noun)|yard (generic term)
+schooner|2
+(noun)|glass (generic term)|drinking glass (generic term)
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+schopenhauer|1
+(noun)|Schopenhauer|Arthur Schopenhauer|philosopher (generic term)
+schorl|1
+(noun)|tourmaline (generic term)
+schottische|2
+(noun)|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+(noun)|round dance (generic term)|ring dance (generic term)
+schreiber's aster|1
+(noun)|Schreiber's aster|aster (generic term)
+schrod|2
+(noun)|scrod|fish (generic term)
+(noun)|scrod|cod (generic term)|codfish (generic term)
+schrodinger|1
+(noun)|Schrodinger|Erwin Schrodinger|nuclear physicist (generic term)
+schrodinger equation|1
+(noun)|Schrodinger equation|Schrodinger wave equation|differential equation (generic term)
+schrodinger wave equation|1
+(noun)|Schrodinger equation|Schrodinger wave equation|differential equation (generic term)
+schtick|4
+(noun)|shtik|shtick|schtik|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|shtik|schtik|shtick|business (generic term)|stage business (generic term)|byplay (generic term)
+(noun)|shtik|schtik|shtick|buffoonery (generic term)|clowning (generic term)|japery (generic term)|frivolity (generic term)|harlequinade (generic term)|prank (generic term)
+(noun)|shtik|schtik|shtick|trick (generic term)|fast one (generic term)
+schtickl|1
+(noun)|shtikl|shtickl|schtikl|shtik (generic term)|shtick (generic term)|schtik (generic term)|schtick (generic term)
+schtik|4
+(noun)|shtik|shtick|schtick|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|shtik|shtick|schtick|business (generic term)|stage business (generic term)|byplay (generic term)
+(noun)|shtik|shtick|schtick|buffoonery (generic term)|clowning (generic term)|japery (generic term)|frivolity (generic term)|harlequinade (generic term)|prank (generic term)
+(noun)|shtik|shtick|schtick|trick (generic term)|fast one (generic term)
+schtikl|1
+(noun)|shtikl|shtickl|schtickl|shtik (generic term)|shtick (generic term)|schtik (generic term)|schtick (generic term)
+schubert|1
+(noun)|Schubert|Franz Schubert|Franz Peter Schubert|Franz Seraph Peter Schubert|composer (generic term)
+schuller-christian disease|1
+(noun)|Hand-Schuller-Christian disease|Schuller-Christian disease|histiocytosis (generic term)
+schulz|1
+(noun)|Schulz|Charles Schulz|Charles M. Schulz|Charles Munroe Schulz|cartoonist (generic term)
+schumann|2
+(noun)|Schumann|Clara Josephine Schumann|pianist (generic term)|piano player (generic term)|composer (generic term)
+(noun)|Schumann|Robert Schumann|Robert Alexander Schumann|composer (generic term)
+schumann-heink|1
+(noun)|Schumann-Heink|Ernestine Schumann-Heink|contralto (generic term)
+schumpeter|1
+(noun)|Schumpeter|Joseph Schumpeter|Joseph Alois Schumpeter|economist (generic term)|economic expert (generic term)
+schuss|1
+(verb)|ski (generic term)
+schutzstaffel|1
+(noun)|Schutzstaffel|SS|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+schwa|1
+(noun)|shwa|vowel (generic term)|vowel sound (generic term)
+schwann|1
+(noun)|Schwann|Theodor Schwann|physiologist (generic term)|histologist (generic term)
+schwann cell|1
+(noun)|Schwann cell|somatic cell (generic term)|vegetative cell (generic term)
+schwarzwald|1
+(noun)|Black Forest|Schwarzwald|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+schweitzer|1
+(noun)|Schweitzer|Albert Schweitzer|missionary (generic term)|missioner (generic term)|philosopher (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|organist (generic term)
+schweiz|1
+(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country (generic term)|European nation (generic term)
+sciadopityaceae|1
+(noun)|Sciadopityaceae|family Sciadopityaceae|gymnosperm family (generic term)
+sciadopitys|1
+(noun)|Sciadopitys|genus Sciadopitys|gymnosperm genus (generic term)
+sciadopitys verticillata|1
+(noun)|Japanese umbrella pine|Sciadopitys verticillata|conifer (generic term)|coniferous tree (generic term)
+sciaena|1
+(noun)|Sciaena|genus Sciaena|fish genus (generic term)
+sciaena antarctica|1
+(noun)|mulloway|jewfish|Sciaena antarctica|sciaenid fish (generic term)|sciaenid (generic term)
+sciaena aquila|1
+(noun)|maigre|maiger|Sciaena aquila|sciaenid fish (generic term)|sciaenid (generic term)
+sciaenid|1
+(noun)|sciaenid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sciaenid fish|1
+(noun)|sciaenid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sciaenidae|1
+(noun)|Sciaenidae|family Sciaenidae|fish family (generic term)
+sciaenops|1
+(noun)|Sciaenops|genus Sciaenops|fish genus (generic term)
+sciaenops ocellatus|1
+(noun)|red drum|channel bass|redfish|Sciaenops ocellatus|drum (generic term)|drumfish (generic term)
+sciara|1
+(noun)|fungus gnat|sciarid|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+sciarid|1
+(noun)|fungus gnat|sciara|dipterous insect (generic term)|two-winged insects (generic term)|dipteran (generic term)|dipteron (generic term)
+sciaridae|1
+(noun)|Sciaridae|family Sciaridae|arthropod family (generic term)
+sciatic|2
+(adj)|neuralgia|neuralgy (related term)
+(adj)|ball-and-socket joint|spheroid joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea (related term)
+sciatic nerve|1
+(noun)|nervus ischiadicus|nerve (generic term)|nervus (generic term)
+sciatica|1
+(noun)|neuralgia (generic term)|neuralgy (generic term)
+scid|1
+(noun)|severe combined immunodeficiency|severe combined immunodeficiency disease|SCID|immunodeficiency (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+science|2
+(noun)|scientific discipline|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+(noun)|skill|ability (generic term)|power (generic term)
+science fiction|1
+(noun)|fantasy (generic term)|phantasy (generic term)
+science lab|1
+(noun)|lab|laboratory|research lab|research laboratory|science laboratory|workplace (generic term)|work (generic term)
+science laboratory|1
+(noun)|lab|laboratory|research lab|research laboratory|science lab|workplace (generic term)|work (generic term)
+science museum|1
+(noun)|museum (generic term)
+science teacher|1
+(noun)|teacher (generic term)|instructor (generic term)
+scientific|2
+(adj)|knowledge domain|knowledge base (related term)
+(adj)|technological (similar term)|unscientific (antonym)
+scientific agriculture|1
+(noun)|agronomy|science (generic term)|scientific discipline (generic term)
+scientific discipline|1
+(noun)|science|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+scientific fact|1
+(noun)|observation (generic term)
+scientific instrument|1
+(noun)|instrument (generic term)
+scientific knowledge|1
+(noun)|knowledge domain (generic term)|knowledge base (generic term)
+scientific method|1
+(noun)|methodology (generic term)
+scientific research|1
+(noun)|research project|research (generic term)
+scientific theory|1
+(noun)|theory (generic term)
+scientist|1
+(noun)|man of science|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+scientology|1
+(noun)|Scientology|Church of Scientology|religion (generic term)|faith (generic term)|organized religion (generic term)
+scilla|1
+(noun)|squill|liliaceous plant (generic term)
+scilla nonscripta|1
+(noun)|wild hyacinth|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+scilla verna|1
+(noun)|spring squill|Scilla verna|sea onion|scilla (generic term)|squill (generic term)
+scilly islands|1
+(noun)|Scilly Islands|Isles of Scilly|archipelago (generic term)
+scimitar|1
+(noun)|cavalry sword (generic term)|saber (generic term)|sabre (generic term)
+scincella|1
+(noun)|Scincella|genus Scincella|reptile genus (generic term)
+scincid|1
+(noun)|skink|scincid lizard|lizard (generic term)
+scincid lizard|1
+(noun)|skink|scincid|lizard (generic term)
+scincidae|1
+(noun)|Scincidae|family Scincidae|reptile family (generic term)
+scincus|1
+(noun)|Scincus|genus Scincus|reptile genus (generic term)
+scindapsus|1
+(noun)|Scindapsus|genus Scindapsus|genus Pothos|monocot genus (generic term)|liliopsid genus (generic term)
+scindapsus aureus|1
+(noun)|golden pothos|pothos|ivy arum|Epipremnum aureum|Scindapsus aureus|liana (generic term)
+scintilla|2
+(noun)|shred|whit|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|particle (generic term)|subatomic particle (generic term)
+scintillant|1
+(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillating|sparkly|bright (similar term)
+scintillate|5
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|sparkle|coruscate|reflect (generic term)|shine (generic term)
+(verb)|twinkle|winkle|shine (generic term)|beam (generic term)
+(verb)|fluoresce (generic term)
+(verb)|sparkle|coruscate|be (generic term)
+scintillating|3
+(adj)|intelligent (similar term)
+(adj)|bubbling|effervescent|sparkly|lively (similar term)
+(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|sparkly|bright (similar term)
+scintillating scotoma|1
+(noun)|flittering scotoma|scotoma (generic term)
+scintillation|5
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|twinkle|sparkling|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|brilliance (generic term)|genius (generic term)
+(noun)|glitter|glister|glisten|sparkle|brightness (generic term)
+(noun)|fluctuation (generic term)|wavering (generic term)
+scintillation counter|1
+(noun)|counter tube (generic term)
+sciolism|1
+(noun)|superficiality (generic term)|shallowness (generic term)
+sciolist|1
+(noun)|dabbler|dilettante|amateur (generic term)
+sciolistic|1
+(adj)|dilettante|dilettantish|dilettanteish|superficial (similar term)
+scion|1
+(noun)|descendant (generic term)|descendent (generic term)
+scipio|1
+(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general (generic term)|full general (generic term)
+scipio africanus|1
+(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general (generic term)|full general (generic term)
+scipio africanus major|1
+(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general (generic term)|full general (generic term)
+scipio the elder|1
+(noun)|Scipio|Scipio Africanus|Scipio Africanus Major|Publius Cornelius Scipio|Publius Cornelius Scipio Africanus Major|Scipio the Elder|general (generic term)|full general (generic term)
+scire facias|1
+(noun)|writ (generic term)|judicial writ (generic term)
+scirpus|1
+(noun)|Scirpus|genus Scirpus|monocot genus (generic term)|liliopsid genus (generic term)
+scirpus acutus|1
+(noun)|hardstem bulrush|hardstemmed bulrush|Scirpus acutus|sedge (generic term)
+scirpus cyperinus|1
+(noun)|wool grass|Scirpus cyperinus|sedge (generic term)
+scission|1
+(noun)|cut (generic term)|cutting (generic term)
+scissor|1
+(verb)|cut (generic term)
+scissor-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+scissor grip|1
+(noun)|scissors|scissors hold|scissor hold|scissors grip|wrestling hold (generic term)
+scissor hold|1
+(noun)|scissors|scissors hold|scissor grip|scissors grip|wrestling hold (generic term)
+scissors|3
+(noun)|pair of scissors|edge tool (generic term)|compound lever (generic term)
+(noun)|scissors hold|scissor hold|scissor grip|scissors grip|wrestling hold (generic term)
+(noun)|gymnastic exercise (generic term)
+scissors grip|1
+(noun)|scissors|scissors hold|scissor hold|scissor grip|wrestling hold (generic term)
+scissors hold|1
+(noun)|scissors|scissor hold|scissor grip|scissors grip|wrestling hold (generic term)
+scissors kick|1
+(noun)|swimming kick (generic term)
+scissortail|1
+(noun)|scissortailed flycatcher|Muscivora-forficata|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+scissortailed flycatcher|1
+(noun)|scissortail|Muscivora-forficata|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+scissure|1
+(noun)|crack|cleft|crevice|fissure|opening (generic term)|gap (generic term)
+sciuridae|1
+(noun)|Sciuridae|family Sciuridae|mammal family (generic term)
+sciuromorpha|1
+(noun)|Sciuromorpha|suborder Sciuromorpha|animal order (generic term)
+sciurus|1
+(noun)|Sciurus|genus Sciurus|mammal genus (generic term)
+sciurus carolinensis|1
+(noun)|eastern grey squirrel|eastern gray squirrel|cat squirrel|Sciurus carolinensis|tree squirrel (generic term)
+sciurus griseus|1
+(noun)|western grey squirrel|western gray squirrel|Sciurus griseus|tree squirrel (generic term)
+sciurus hudsonicus|1
+(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel (generic term)
+sciurus niger|1
+(noun)|fox squirrel|eastern fox squirrel|Sciurus niger|tree squirrel (generic term)
+sciurus vulgaris|1
+(noun)|red squirrel|cat squirrel|Sciurus vulgaris|tree squirrel (generic term)
+sclaff|2
+(noun)|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(verb)|strike (generic term)
+sclera|1
+(noun)|sclerotic coat|albuginea (generic term)
+scleral veins|1
+(noun)|venae sclerales|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+scleranthus|1
+(noun)|Scleranthus|genus Scleranthus|caryophylloid dicot genus (generic term)
+scleranthus annuus|1
+(noun)|knawel|knawe|Scleranthus annuus|weed (generic term)
+scleredema|1
+(noun)|edema (generic term)|oedema (generic term)|hydrops (generic term)|dropsy (generic term)
+sclerite|1
+(noun)|protective covering (generic term)
+scleritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+scleroderma|2
+(noun)|dermatosclerosis|autoimmune disease (generic term)|autoimmune disorder (generic term)
+(noun)|Scleroderma|genus Scleroderma|fungus genus (generic term)
+scleroderma aurantium|1
+(noun)|Scleroderma citrinum|Scleroderma aurantium|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+scleroderma bovista|1
+(noun)|Scleroderma bovista|smooth earthball|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+scleroderma citrinum|1
+(noun)|Scleroderma citrinum|Scleroderma aurantium|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+scleroderma flavidium|1
+(noun)|Scleroderma flavidium|star earthball|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+sclerodermataceae|1
+(noun)|Sclerodermataceae|family Sclerodermataceae|fungus family (generic term)
+sclerodermatales|1
+(noun)|Sclerodermatales|order Sclerodermatales|fungus order (generic term)
+sclerometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+scleroparei|1
+(noun)|Scleroparei|order Scleroparei|animal order (generic term)
+scleroprotein|1
+(noun)|albuminoid|simple protein (generic term)
+sclerosed|1
+(adj)|sclerotic|pathology (related term)
+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 (generic term)
+sclerosis|1
+(noun)|induration|pathology (generic term)
+sclerotic|2
+(adj)|sclerosed|pathology (related term)
+(adj)|albuginea (related term)
+sclerotic coat|1
+(noun)|sclera|albuginea (generic term)
+sclerotinia|1
+(noun)|fungus (generic term)
+sclerotiniaceae|1
+(noun)|Sclerotiniaceae|family Sclerotiniaceae|fungus family (generic term)
+sclerotium|2
+(noun)|Sclerotium|genus Sclerotium|fungus genus (generic term)
+(noun)|mycelium (generic term)
+sclerotium disease|1
+(noun)|sclerotium rot|plant disease (generic term)
+sclerotium rot|1
+(noun)|sclerotium disease|plant disease (generic term)
+sclerotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+sclk|1
+(noun)|spacecraft clock time|SCLK|clock time (generic term)|time (generic term)
+scnt|1
+(noun)|somatic cell nuclear transplantation|somatic cell nuclear transfer|SCNT|nuclear transplantation|biological research (generic term)
+scoff|3
+(noun)|jeer|jeering|mockery|scoffing|derision (generic term)
+(verb)|jeer|flout|barrack|gibe|tease (generic term)|razz (generic term)|rag (generic term)|cod (generic term)|tantalize (generic term)|tantalise (generic term)|bait (generic term)|taunt (generic term)|twit (generic term)|rally (generic term)|ride (generic term)
+(verb)|flout|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+scoffer|2
+(noun)|gorger|eater (generic term)|feeder (generic term)
+(noun)|flouter|mocker|jeerer|unpleasant person (generic term)|disagreeable person (generic term)
+scoffing|1
+(noun)|jeer|jeering|mockery|scoff|derision (generic term)
+scoffingly|1
+(adv)|derisively|derisorily|mockingly
+scofflaw|1
+(noun)|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+scoinson arch|1
+(noun)|sconcheon arch|arch (generic term)
+scoke|1
+(noun)|poke|pigeon berry|garget|Phytolacca americana|pokeweed (generic term)
+scold|3
+(noun)|scolder|nag|nagger|common scold|unpleasant person (generic term)|disagreeable person (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+(verb)|grouch|grumble|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+scolder|1
+(noun)|scold|nag|nagger|common scold|unpleasant person (generic term)|disagreeable person (generic term)
+scolding|1
+(noun)|chiding|objurgation|tongue-lashing|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+scolion|1
+(noun)|banquet song|song (generic term)|vocal (generic term)
+scoliosis|1
+(noun)|spinal curvature (generic term)
+scollop|6
+(noun)|scallop|escallop|shellfish (generic term)
+(noun)|cutlet|scallop|escallop|piece (generic term)|slice (generic term)
+(noun)|scallop|escallop|bivalve (generic term)|pelecypod (generic term)|lamellibranch (generic term)
+(verb)|scallop|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|scallop|fish (generic term)
+(verb)|scallop|shape (generic term)|form (generic term)
+scolopacidae|1
+(noun)|Scolopacidae|family Scolopacidae|bird family (generic term)
+scolopax|1
+(noun)|Scolopax|genus Scolopax|bird genus (generic term)
+scolopax rusticola|1
+(noun)|Eurasian woodcock|Scolopax rusticola|woodcock (generic term)
+scolopendrium|1
+(noun)|fern (generic term)
+scolopendrium nigripes|1
+(noun)|Schaffneria nigripes|Asplenium nigripes|Scolopendrium nigripes|fern (generic term)
+scolymus|1
+(noun)|Scolymus|genus Scolymus|asterid dicot genus (generic term)
+scolymus hispanicus|1
+(noun)|Spanish oyster plant|Scolymus hispanicus|golden thistle (generic term)
+scolytidae|1
+(noun)|Scolytidae|family Scolytidae|Ipidae|family Ipidae|arthropod family (generic term)
+scolytus|1
+(noun)|Scolytus|genus Scolytus|arthropod genus (generic term)
+scolytus multistriatus|1
+(noun)|Dutch-elm beetle|Scolytus multistriatus|bark beetle (generic term)
+scomber|1
+(noun)|Scomber|genus Scomber|fish genus (generic term)
+scomber colias|1
+(noun)|Spanish mackerel|Scomber colias|mackerel (generic term)
+scomber japonicus|1
+(noun)|chub mackerel|tinker|Scomber japonicus|mackerel (generic term)
+scomber scombrus|1
+(noun)|common mackerel|shiner|Scomber scombrus|mackerel (generic term)
+scomberesocidae|1
+(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family (generic term)
+scomberesox|1
+(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus (generic term)
+scomberesox saurus|1
+(noun)|saury|billfish|Scomberesox saurus|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+scomberomorus|1
+(noun)|Scomberomorus|genus Scomberomorus|fish genus (generic term)
+scomberomorus cavalla|1
+(noun)|king mackerel|cavalla|cero|Scomberomorus cavalla|Spanish mackerel (generic term)
+scomberomorus maculatus|1
+(noun)|Scomberomorus maculatus|Spanish mackerel (generic term)
+scomberomorus regalis|1
+(noun)|cero|pintado|kingfish|Scomberomorus regalis|Spanish mackerel (generic term)
+scomberomorus sierra|1
+(noun)|sierra|Scomberomorus sierra|Spanish mackerel (generic term)
+scombresocidae|1
+(noun)|Scomberesocidae|family Scomberesocidae|Scombresocidae|family Scombresocidae|fish family (generic term)
+scombresox|1
+(noun)|Scomberesox|genus Scomberesox|Scombresox|genus Scombresox|fish genus (generic term)
+scombridae|1
+(noun)|Scombridae|family Scombridae|fish family (generic term)
+scombroid|1
+(noun)|scombroid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+scombroid fish|1
+(noun)|scombroid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+scombroidea|1
+(noun)|Scombroidea|suborder Scombroidea|animal order (generic term)
+sconce|2
+(noun)|candlestick (generic term)|candle holder (generic term)
+(noun)|redoubt|stronghold (generic term)|fastness (generic term)
+sconcheon arch|1
+(noun)|scoinson arch|arch (generic term)
+scone|1
+(noun)|quick bread (generic term)
+scoop|8
+(noun)|scoopful|containerful (generic term)
+(noun)|pocket|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|exclusive|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+(noun)|soap|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+(noun)|scoop shovel|shovel (generic term)
+(noun)|ladle (generic term)
+(verb)|scoop out|lift out|scoop up|take up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|outdo|outflank|trump|best|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+scoop out|2
+(verb)|hollow (generic term)|hollow out (generic term)|core out (generic term)
+(verb)|scoop|lift out|scoop up|take up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+scoop shot|1
+(noun)|basketball shot (generic term)
+scoop shovel|1
+(noun)|scoop|shovel (generic term)
+scoop up|1
+(verb)|scoop|scoop out|lift out|take up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+scoopful|1
+(noun)|scoop|containerful (generic term)
+scoot|1
+(verb)|dart|dash|scud|flash|shoot|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+scooter|5
+(noun)|water scooter|sea scooter|motorboat (generic term)|powerboat (generic term)
+(noun)|wheeled vehicle (generic term)
+(noun)|motor scooter|wheeled vehicle (generic term)
+(noun)|iceboat|ice yacht|vessel (generic term)|watercraft (generic term)
+(noun)|scoter|sea duck (generic term)
+scopal|1
+(adj)|extent (related term)
+scope|4
+(noun)|range|reach|orbit|compass|ambit|extent (generic term)
+(noun)|setting|background|environment (generic term)
+(noun)|telescope|magnifier (generic term)
+(noun)|oscilloscope|cathode-ray oscilloscope|CRO|electronic equipment (generic term)
+scopes|1
+(noun)|Scopes|John Scopes|John Thomas Scopes|schoolteacher (generic term)|school teacher (generic term)
+scopes trial|1
+(noun)|Scopes trial|trial (generic term)
+scophthalmus|1
+(noun)|Scophthalmus|genus Scophthalmus|fish genus (generic term)
+scophthalmus aquosus|1
+(noun)|windowpane|Scophthalmus aquosus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+scophthalmus rhombus|1
+(noun)|brill|Scophthalmus rhombus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+scopolamine|1
+(noun)|hyoscine|alkaloid (generic term)
+scopolia|1
+(noun)|Scopolia|genus Scopolia|asterid dicot genus (generic term)
+scopolia carniolica|1
+(noun)|Scopolia carniolica|herb (generic term)|herbaceous plant (generic term)
+scops owl|1
+(noun)|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+scorbutic|1
+(adj)|avitaminosis|hypovitaminosis (related term)
+scorbutus|1
+(noun)|scurvy|avitaminosis (generic term)|hypovitaminosis (generic term)
+scorch|8
+(noun)|singe|burn (generic term)
+(noun)|plant disease (generic term)
+(noun)|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+(verb)|sear|heat (generic term)|heat up (generic term)
+(verb)|sear|singe|burn (generic term)|combust (generic term)
+(verb)|burn (generic term)|fire (generic term)|burn down (generic term)
+(verb)|char|blacken|sear|burn (generic term)
+(verb)|dry (generic term)|dry out (generic term)
+scorched|3
+(adj)|adust|baked|parched|sunbaked|dry (similar term)
+(adj)|destroyed (similar term)
+(adj)|damaged (similar term)
+scorched-earth policy|1
+(noun)|shark repellent (generic term)|porcupine provision (generic term)
+scorcher|2
+(noun)|hot weather (generic term)
+(noun)|screamer|hit (generic term)|hitting (generic term)|striking (generic term)
+scorching|1
+(adj)|hot (similar term)
+score|18
+(noun)|mark|grade|evaluation (generic term)|valuation (generic term)|rating (generic term)
+(noun)|musical score|sheet music (generic term)
+(noun)|number (generic term)
+(noun)|set (generic term)
+(noun)|account|reason (generic term)|ground (generic term)
+(noun)|fact (generic term)
+(noun)|debt (generic term)
+(noun)|scotch|incision (generic term)|scratch (generic term)|prick (generic term)|slit (generic term)|dent (generic term)
+(noun)|grudge|grievance|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+(noun)|success (generic term)
+(noun)|sexual conquest|seduction (generic term)|conquest (generic term)
+(verb)|hit|tally|rack up|gain (generic term)|advance (generic term)|win (generic term)|pull ahead (generic term)|make headway (generic term)|get ahead (generic term)|gain ground (generic term)
+(verb)|nock|mark|notch (generic term)
+(verb)|mark|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|compose (generic term)|write (generic term)
+(verb)|seduce|make|persuade (generic term)
+(verb)|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|grade|mark|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+score out|1
+(verb)|erase|rub out|efface|wipe off|delete (generic term)|cancel (generic term)
+score paper|1
+(noun)|music paper|paper (generic term)
+scoreboard|1
+(noun)|board (generic term)|signboard (generic term)|sign (generic term)
+scorecard|1
+(noun)|card|record (generic term)|record book (generic term)|book (generic term)
+scorekeeper|1
+(noun)|scorer|official (generic term)
+scoreless|1
+(adj)|goalless|hitless|unsuccessful (similar term)
+scorer|3
+(noun)|player (generic term)|participant (generic term)
+(noun)|lumberman (generic term)|lumberjack (generic term)|logger (generic term)|feller (generic term)|faller (generic term)
+(noun)|scorekeeper|official (generic term)
+scores|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+scoria|1
+(noun)|slag|dross|scum (generic term)
+scoring|1
+(noun)|marking|grading|evaluation (generic term)|rating (generic term)
+scoring system|1
+(noun)|rating system|classification system (generic term)
+scorn|4
+(noun)|contempt|disdain|despite|dislike (generic term)
+(noun)|contempt|disrespect (generic term)|discourtesy (generic term)
+(verb)|contemn|despise|disdain|hate (generic term)|detest (generic term)
+(verb)|reject|spurn|freeze off|pooh-pooh|disdain|turn down|refuse (generic term)|decline (generic term)
+scorned|1
+(adj)|despised|detested|hated|unloved (similar term)
+scorner|1
+(noun)|sneerer|unpleasant person (generic term)|disagreeable person (generic term)
+scornful|1
+(adj)|contemptuous|disdainful|insulting|disrespectful (similar term)
+scornfully|1
+(adv)|contemptuously|disdainfully|contumeliously
+scorpaena|1
+(noun)|Scorpaena|genus Scorpaena|fish genus (generic term)
+scorpaena grandicornis|1
+(noun)|plumed scorpionfish|Scorpaena grandicornis|scorpionfish (generic term)|scorpion fish (generic term)|sea scorpion (generic term)
+scorpaenid|1
+(noun)|scorpaenid fish|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+scorpaenid fish|1
+(noun)|scorpaenid|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+scorpaenidae|1
+(noun)|Scorpaenidae|family Scorpaenidae|fish family (generic term)
+scorpaenoid|1
+(noun)|scorpaenoid fish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+scorpaenoid fish|1
+(noun)|scorpaenoid|spiny-finned fish (generic term)|acanthopterygian (generic term)
+scorpaenoidea|1
+(noun)|Scorpaenoidea|suborder Scorpaenoidea|animal order (generic term)
+scorper|1
+(noun)|scauper|graver (generic term)|graving tool (generic term)|pointel (generic term)|pointrel (generic term)
+scorpio|3
+(noun)|Scorpio|Scorpion|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Scorpius|Scorpio|constellation (generic term)
+(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+scorpio the scorpion|1
+(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+scorpioid cyme|1
+(noun)|cyme (generic term)
+scorpion|3
+(noun)|Scorpio|Scorpion|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Scorpio|Scorpio the Scorpion|Scorpion|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+(noun)|arachnid (generic term)|arachnoid (generic term)
+scorpion-like|1
+(adj)|animal (similar term)
+scorpion fish|1
+(noun)|scorpionfish|sea scorpion|scorpaenid (generic term)|scorpaenid fish (generic term)
+scorpion fly|1
+(noun)|mecopteran (generic term)
+scorpion shell|1
+(noun)|snail (generic term)
+scorpion weed|1
+(noun)|scorpionweed|phacelia|flower (generic term)
+scorpionfish|1
+(noun)|scorpion fish|sea scorpion|scorpaenid (generic term)|scorpaenid fish (generic term)
+scorpionida|1
+(noun)|Scorpionida|order Scorpionida|animal order (generic term)
+scorpionweed|1
+(noun)|scorpion weed|phacelia|flower (generic term)
+scorpius|1
+(noun)|Scorpius|Scorpio|constellation (generic term)
+scorsese|1
+(noun)|Scorsese|Martin Scorsese|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+scorzonera|2
+(noun)|black salsify|viper's grass|Scorzonera hispanica|herb (generic term)|herbaceous plant (generic term)
+(noun)|black salsify|salsify (generic term)
+scorzonera hispanica|1
+(noun)|black salsify|viper's grass|scorzonera|Scorzonera hispanica|herb (generic term)|herbaceous plant (generic term)
+scot|1
+(noun)|Scot|Scotsman|Scotchman|European (generic term)
+scot and lot|1
+(noun)|indebtedness (generic term)|liability (generic term)|financial obligation (generic term)
+scotch|6
+(adj)|Scots|Scottish|Scotch|European country|European nation (related term)
+(adj)|economical|frugal|sparing|stinting|thrifty (similar term)
+(noun)|score|incision (generic term)|scratch (generic term)|prick (generic term)|slit (generic term)|dent (generic term)
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+(verb)|thwart|queer|spoil|foil|cross|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|score (generic term)|nock (generic term)|mark (generic term)
+scotch and soda|1
+(noun)|Scotch and soda|highball (generic term)
+scotch asphodel|1
+(noun)|Scotch asphodel|Tofieldia pusilla|false asphodel (generic term)
+scotch broom|1
+(noun)|common broom|Scotch broom|green broom|Cytisus scoparius|broom (generic term)
+scotch broth|1
+(noun)|Scotch broth|soup (generic term)
+scotch egg|1
+(noun)|Scotch egg|dish (generic term)
+scotch fir|1
+(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine (generic term)|pine tree (generic term)|true pine (generic term)
+scotch gale|1
+(noun)|sweet gale|Scotch gale|Myrica gale|shrub (generic term)|bush (generic term)
+scotch kiss|1
+(noun)|Scotch kiss|kiss (generic term)|candy kiss (generic term)
+scotch laburnum|1
+(noun)|Scotch laburnum|Alpine golden chain|Laburnum alpinum|flowering shrub (generic term)
+scotch malt whiskey|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+scotch malt whisky|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+scotch marigold|1
+(noun)|common marigold|pot marigold|ruddles|Scotch marigold|Calendula officinalis|calendula (generic term)
+scotch pancake|1
+(noun)|drop scone|griddlecake|Scotch pancake|scone (generic term)
+scotch pine|1
+(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine (generic term)|pine tree (generic term)|true pine (generic term)
+scotch tape|2
+(noun)|cellulose tape|Scotch tape|Sellotape|adhesive tape (generic term)
+(verb)|sellotape|tape (generic term)
+scotch terrier|1
+(noun)|Scotch terrier|Scottish terrier|Scottie|terrier (generic term)
+scotch thistle|1
+(noun)|cotton thistle|woolly thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle (generic term)
+scotch whiskey|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+scotch whisky|1
+(noun)|Scotch|Scotch whiskey|Scotch whisky|malt whiskey|malt whisky|Scotch malt whiskey|Scotch malt whisky|whiskey (generic term)|whisky (generic term)
+scotch woodcock|1
+(noun)|Scotch woodcock|dish (generic term)
+scotchman|1
+(noun)|Scot|Scotsman|Scotchman|European (generic term)
+scotchwoman|1
+(noun)|Scotswoman|Scotchwoman|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+scoter|1
+(noun)|scooter|sea duck (generic term)
+scotland|1
+(noun)|Scotland|European country (generic term)|European nation (generic term)
+scotland yard|1
+(noun)|Scotland Yard|New Scotland Yard|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+scotoma|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+scotomatous|1
+(adj)|visual impairment|visual defect|vision defect|visual disorder (related term)
+scotopic vision|1
+(noun)|night vision|night-sight|twilight vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+scots|2
+(adj)|Scots|Scottish|Scotch|European country|European nation (related term)
+(noun)|Scottish|Scots|Scots English|English (generic term)|English language (generic term)
+scots english|1
+(noun)|Scottish|Scots|Scots English|English (generic term)|English language (generic term)
+scots gaelic|1
+(noun)|Scottish Gaelic|Scots Gaelic|Gaelic (generic term)|Goidelic (generic term)|Erse (generic term)
+scots heather|1
+(noun)|heather|ling|Scots heather|broom|Calluna vulgaris|heath (generic term)
+scots pine|1
+(noun)|Scotch pine|Scots pine|Scotch fir|Pinus sylvestris|pine (generic term)|pine tree (generic term)|true pine (generic term)
+scotsman|1
+(noun)|Scot|Scotsman|Scotchman|European (generic term)
+scotswoman|1
+(noun)|Scotswoman|Scotchwoman|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+scott|5
+(noun)|Scott|George C. Scott|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Scott|Robert Scott|Robert Falcon Scott|explorer (generic term)|adventurer (generic term)
+(noun)|Scott|Winfield Scott|general (generic term)|full general (generic term)
+(noun)|Scott|Walter Scott|Sir Walter Scott|writer (generic term)|author (generic term)
+(noun)|Scott|Dred Scott|slave (generic term)
+scott's spleenwort|1
+(noun)|ebony spleenwort|Scott's Spleenwort|Asplenium platyneuron|spleenwort (generic term)
+scott joplin|1
+(noun)|Joplin|Scott Joplin|composer (generic term)
+scottie|1
+(noun)|Scotch terrier|Scottish terrier|Scottie|terrier (generic term)
+scottish|2
+(adj)|Scots|Scottish|Scotch|European country|European nation (related term)
+(noun)|Scottish|Scots|Scots English|English (generic term)|English language (generic term)
+scottish deerhound|1
+(noun)|Scottish deerhound|deerhound|hound (generic term)|hound dog (generic term)
+scottish gaelic|1
+(noun)|Scottish Gaelic|Scots Gaelic|Gaelic (generic term)|Goidelic (generic term)|Erse (generic term)
+scottish highlander|1
+(noun)|Highlander|Scottish Highlander|Highland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+scottish lallans|1
+(noun)|Lallans|Scottish Lallans|Scottish (generic term)|Scots (generic term)|Scots English (generic term)
+scottish lowlander|1
+(noun)|Lowlander|Scottish Lowlander|Lowland Scot|Scot (generic term)|Scotsman (generic term)|Scotchman (generic term)
+scottish maple|1
+(noun)|sycamore|great maple|Acer pseudoplatanus|maple (generic term)
+scottish reel|1
+(noun)|reel|Scottish reel|square dance (generic term)|square dancing (generic term)
+scottish terrier|1
+(noun)|Scotch terrier|Scottish terrier|Scottie|terrier (generic term)
+scoundrel|1
+(noun)|villain|unwelcome person (generic term)|persona non grata (generic term)
+scoundrelly|1
+(adj)|rascally|roguish|blackguardly|dishonest (similar term)|dishonorable (similar term)
+scour|5
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|scrub|rub (generic term)
+(verb)|abrade|rub (generic term)
+(verb)|flush|purge|rinse (generic term)|rinse off (generic term)
+scoured|1
+(adj)|eroded|worn (similar term)
+scourer|2
+(noun)|cleaner (generic term)
+(noun)|traveler (generic term)|traveller (generic term)
+scourge|6
+(noun)|flagellum|whip (generic term)
+(noun)|bane|curse|nemesis|affliction (generic term)
+(noun)|terror|threat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|flagellate|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+(verb)|lay waste to|waste|devastate|desolate|ravage|destroy (generic term)|ruin (generic term)
+scourge of god|1
+(noun)|Attila|Attila the Hun|Scourge of God|Scourge of the Gods|king (generic term)|male monarch (generic term)|Rex (generic term)
+scourge of the gods|1
+(noun)|Attila|Attila the Hun|Scourge of God|Scourge of the Gods|king (generic term)|male monarch (generic term)|Rex (generic term)
+scourger|1
+(noun)|flogger|torturer (generic term)
+scouring|2
+(noun)|search (generic term)|hunt (generic term)|hunting (generic term)
+(noun)|scrub|scrubbing|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+scouring pad|1
+(noun)|cleaning pad (generic term)
+scouring rush|1
+(noun)|rough horsetail|Equisetum hyemale|Equisetum hyemale robustum|Equisetum robustum|horsetail (generic term)
+scours|1
+(noun)|animal disease (generic term)
+scouse|1
+(noun)|lobscouse|lobscuse|stew (generic term)
+scouser|1
+(noun)|Liverpudlian|Scouser|English person (generic term)
+scout|5
+(noun)|lookout|lookout man|sentinel|sentry|watch|spotter|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+(noun)|Scout|male child (generic term)|boy (generic term)|female child (generic term)|girl (generic term)|little girl (generic term)
+(noun)|talent scout|recruiter (generic term)
+(noun)|pathfinder|guide|expert (generic term)
+(verb)|reconnoiter|reconnoitre|observe (generic term)
+scout car|1
+(noun)|reconnaissance vehicle|military vehicle (generic term)|self-propelled vehicle (generic term)
+scout group|1
+(noun)|troop|scout troop|unit (generic term)|social unit (generic term)
+scout troop|1
+(noun)|troop|scout group|unit (generic term)|social unit (generic term)
+scouter|1
+(noun)|rover|Boy Scout (generic term)
+scouting|1
+(noun)|exploratory survey|reconnoitering|reconnoitring|reconnaissance (generic term)|reconnaissance mission (generic term)
+scouting trip|1
+(noun)|expedition (generic term)
+scoutmaster|1
+(noun)|leader (generic term)
+scow|2
+(noun)|boat (generic term)
+(noun)|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+scowl|2
+(noun)|frown|facial expression (generic term)|facial gesture (generic term)
+(verb)|frown (generic term)|glower (generic term)|lour (generic term)|lower (generic term)
+scowling|1
+(adj)|beetle-browed|unfriendly (similar term)
+scrabble|4
+(noun)|scribble|doodle|drawing (generic term)
+(noun)|Scrabble|word game (generic term)|board game (generic term)
+(verb)|grope for|feel (generic term)
+(verb)|scribble|write (generic term)
+scrabbly|1
+(adj)|scrubby|wooded (similar term)
+scrag|5
+(noun)|thin person|skin and bones|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|fat person (antonym)
+(noun)|cut of mutton (generic term)
+(noun)|scrag end|cut of veal (generic term)
+(verb)|garrote|garrotte|garotte|strangle (generic term)|strangulate (generic term)|throttle (generic term)
+(verb)|choke|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+scrag end|1
+(noun)|scrag|cut of veal (generic term)
+scraggly|1
+(adj)|untidy (similar term)
+scraggy|2
+(adj)|boney|scrawny|skinny|underweight|weedy|thin (similar term)|lean (similar term)
+(adj)|jagged|jaggy|uneven (similar term)
+scram|1
+(verb)|buzz off|fuck off|get|bugger off|leave (generic term)|go forth (generic term)|go away (generic term)
+scramble|7
+(noun)|scuffle|struggle (generic term)|battle (generic term)
+(noun)|scamper|scurry|haste (generic term)|hurry (generic term)|rush (generic term)|rushing (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|clamber|shin|shinny|skin|struggle|sputter|climb (generic term)
+(verb)|jumble|throw together|disorder (generic term)|disarray (generic term)
+(verb)|beat|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|unscramble (antonym)
+scrambled|1
+(adj)|disorganized (similar term)|disorganised (similar term)
+scrambled eggs|1
+(noun)|dish (generic term)
+scrambler|3
+(noun)|mover (generic term)
+(noun)|trail bike|dirt bike|motorcycle (generic term)|bike (generic term)
+(noun)|electronic equipment (generic term)
+scranch|1
+(verb)|crunch|scraunch|crackle|make noise (generic term)|resound (generic term)|noise (generic term)
+scranton|1
+(noun)|Scranton|city (generic term)|metropolis (generic term)|urban center (generic term)
+scrap|7
+(noun)|bit|chip|flake|fleck|fragment (generic term)
+(noun)|rubbish|trash|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|piece (generic term)
+(noun)|fight|fighting|combat|conflict (generic term)|struggle (generic term)|battle (generic term)
+(verb)|trash|junk|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|quarrel|dispute|argufy|altercate|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+(verb)|convert (generic term)
+scrap iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)|scrap metal (generic term)
+scrap metal|1
+(noun)|rubbish (generic term)|trash (generic term)|scrap (generic term)
+scrapbook|1
+(noun)|album (generic term)
+scrape|10
+(noun)|scraping|scratch|scratching|noise (generic term)
+(noun)|abrasion|scratch|excoriation|wound (generic term)|lesion (generic term)
+(noun)|scraping|bow (generic term)|bowing (generic term)|obeisance (generic term)
+(noun)|scratch|scar|mark|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|grate|rub (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|scratch|scratch up|incise (generic term)|scratch out (related term)
+(verb)|kowtow|genuflect|bow (generic term)
+(verb)|scrape up|scratch|come up|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|skin|injure (generic term)|wound (generic term)
+scrape along|1
+(verb)|scrape by|scratch along|squeak by|squeeze by|rub along|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+scrape by|1
+(verb)|scrape along|scratch along|squeak by|squeeze by|rub along|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+scrape up|1
+(verb)|scrape|scratch|come up|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+scraped|1
+(adj)|scratched|damaged (similar term)
+scraper|1
+(noun)|hand tool (generic term)
+scrapheap|2
+(noun)|garbage heap|junk heap|rubbish heap|trash heap|junk pile|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+scrapie|1
+(noun)|animal disease (generic term)
+scraping|3
+(noun)|fragment (generic term)
+(noun)|scrape|scratch|scratching|noise (generic term)
+(noun)|scrape|bow (generic term)|bowing (generic term)|obeisance (generic term)
+scrapper|1
+(noun)|combatant|battler|belligerent|fighter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+scrappily|1
+(adv)|combatively
+scrappiness|1
+(noun)|combativeness (generic term)|militance (generic term)|militancy (generic term)
+scrapple|1
+(noun)|dish (generic term)
+scrappy|1
+(adj)|aggressive (similar term)
+scraps|1
+(noun)|garbage|refuse|food waste|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+scratch|14
+(noun)|abrasion|scrape|excoriation|wound (generic term)|lesion (generic term)
+(noun)|incision|prick|slit|dent|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|shekels|simoleons|sugar|wampum|money (generic term)
+(noun)|chicken feed|mash (generic term)
+(noun)|scrape|scraping|scratching|noise (generic term)
+(noun)|scribble|scrawl|cacography|handwriting (generic term)|hand (generic term)|script (generic term)
+(noun)|scrape|scar|mark|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|rub|fray|fret|chafe|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|scrape|scratch up|incise (generic term)|scratch out (related term)
+(verb)|rub|itch|irritate (generic term)
+(verb)|cancel|call off|scrub
+(verb)|strike|expunge|excise|delete (generic term)|cancel (generic term)
+(verb)|scrape|scrape up|come up|roll up (generic term)|collect (generic term)|accumulate (generic term)|pile up (generic term)|amass (generic term)|compile (generic term)|hoard (generic term)
+(verb)|engrave|grave|inscribe|carve (generic term)|chip at (generic term)
+scratch along|1
+(verb)|scrape along|scrape by|squeak by|squeeze by|rub along|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+scratch awl|1
+(noun)|scriber|scribe|awl (generic term)
+scratch off|1
+(verb)|dash off|knock off|toss off|fling off|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+scratch out|1
+(verb)|cut out|erase (generic term)|rub out (generic term)|score out (generic term)|efface (generic term)|wipe off (generic term)
+scratch pad|1
+(noun)|scratch paper|scribbling block|notepad (generic term)
+scratch paper|1
+(noun)|scratch pad|scribbling block|notepad (generic term)
+scratch race|1
+(noun)|race (generic term)
+scratch sheet|1
+(noun)|dope sheet|tip sheet (generic term)
+scratch test|1
+(noun)|skin test (generic term)
+scratch up|1
+(verb)|scratch|scrape|incise (generic term)|scratch out (related term)
+scratched|1
+(adj)|scraped|damaged (similar term)
+scratcher|3
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|device (generic term)
+scratchiness|1
+(noun)|harshness|abrasiveness|roughness (generic term)|raggedness (generic term)
+scratching|2
+(adj)|sharp (similar term)
+(noun)|scrape|scraping|scratch|noise (generic term)
+scratchpad|1
+(noun)|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+scratchy|4
+(adj)|abrasive|rough (similar term)|unsmooth (similar term)
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|testy|tetchy|techy|ill-natured (similar term)
+(adj)|spotty|uneven|inconsistent (similar term)
+(adj)|grating|gravel|gravelly|rasping|raspy|rough|cacophonous (similar term)|cacophonic (similar term)
+scraunch|1
+(verb)|crunch|scranch|crackle|make noise (generic term)|resound (generic term)|noise (generic term)
+scrawl|2
+(noun)|scribble|scratch|cacography|handwriting (generic term)|hand (generic term)|script (generic term)
+(verb)|scribble|write (generic term)
+scrawled|1
+(adj)|written (similar term)
+scrawler|1
+(noun)|scribbler|writer (generic term)
+scrawniness|2
+(noun)|skinniness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+(noun)|scrubbiness|inferiority (generic term)|low quality (generic term)
+scrawny|2
+(adj)|scraggy|boney|skinny|underweight|weedy|thin (similar term)|lean (similar term)
+(adj)|scrubby|stunted|inferior (similar term)
+screak|2
+(verb)|squeak|screech|creak|skreak|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|squawk|skreak|skreigh|screech|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+screakily|1
+(adv)|creakily|creakingly
+screaky|2
+(adj)|creaking|creaky|noisy (similar term)
+(adj)|screechy|squeaking|squeaky|squealing|high (similar term)|high-pitched (similar term)
+scream|6
+(noun)|screaming|shriek|shrieking|screech|screeching|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|screech|screeching|shriek|shrieking|screaming|noise (generic term)
+(noun)|belly laugh|sidesplitter|howler|thigh-slapper|wow|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+(verb)|shout|shout out|cry|call|yell|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|yell|shout (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+screamer|4
+(noun)|roarer|bawler|bellower|screecher|shouter|yeller|communicator (generic term)
+(noun)|headline (generic term)|newspaper headline (generic term)
+(noun)|waterfowl (generic term)|water bird (generic term)|waterbird (generic term)
+(noun)|scorcher|hit (generic term)|hitting (generic term)|striking (generic term)
+screaming|6
+(adj)|screeching|shrieking|noisy (similar term)
+(adj)|intense (similar term)
+(adj)|sensational (similar term)
+(adj)|hilarious|uproarious|humorous (similar term)|humourous (similar term)
+(noun)|scream|shriek|shrieking|screech|screeching|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|screech|screeching|shriek|shrieking|scream|noise (generic term)
+screaming meemies|1
+(noun)|jitters|heebie-jeebies|nervousness (generic term)|nerves (generic term)
+scree|1
+(noun)|talus|geological formation (generic term)|formation (generic term)
+screech|4
+(noun)|screeching|shriek|shrieking|scream|screaming|noise (generic term)
+(noun)|scream|screaming|shriek|shrieking|screeching|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|squeak|creak|screak|skreak|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|squawk|screak|skreak|skreigh|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+screech owl|2
+(noun)|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+(noun)|Otus asio|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+screecher|1
+(noun)|roarer|bawler|bellower|screamer|shouter|yeller|communicator (generic term)
+screeching|3
+(adj)|screaming|shrieking|noisy (similar term)
+(noun)|screech|shriek|shrieking|scream|screaming|noise (generic term)
+(noun)|scream|screaming|shriek|shrieking|screech|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+screechy|1
+(adj)|screaky|squeaking|squeaky|squealing|high (similar term)|high-pitched (similar term)
+screed|3
+(noun)|harangue (generic term)|rant (generic term)|ranting (generic term)
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|strip (generic term)|slip (generic term)
+screen|15
+(noun)|silver screen|projection screen|surface (generic term)
+(noun)|blind|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|CRT screen|display (generic term)|video display (generic term)
+(noun)|cover|covert|concealment|covering (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|sieve|strainer (generic term)
+(noun)|screen door|door (generic term)
+(noun)|partition (generic term)|divider (generic term)
+(verb)|test|check (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|screen out|sieve|sort|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|show (generic term)
+(verb)|block out|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|riddle|sift (generic term)|sieve (generic term)|strain (generic term)
+(verb)|shield|protect (generic term)
+screen actor|1
+(noun)|movie actor|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+screen background|1
+(noun)|background|desktop|screen (generic term)|CRT screen (generic term)
+screen door|1
+(noun)|screen|door (generic term)
+screen font|1
+(noun)|raster font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)
+screen memory|1
+(noun)|memory (generic term)
+screen off|1
+(verb)|separate off|partition (generic term)|zone (generic term)
+screen out|1
+(verb)|screen|sieve|sort|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+screen pass|1
+(noun)|forward pass (generic term)|aerial (generic term)
+screen saver|1
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+screen test|1
+(noun)|audition (generic term)|tryout (generic term)
+screener|1
+(noun)|guard (generic term)
+screening|4
+(noun)|showing|viewing|display (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|cover|covering|masking|concealment (generic term)|concealing (generic term)|hiding (generic term)
+(noun)|testing (generic term)
+screenland|1
+(noun)|film industry|movie industry|industry (generic term)
+screenplay|1
+(noun)|script (generic term)|book (generic term)|playscript (generic term)
+screenwriter|1
+(noun)|film writer|scriptwriter (generic term)
+screw|10
+(noun)|prison guard|jailer|jailor|gaoler|turnkey|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+(noun)|inclined plane (generic term)
+(noun)|screw propeller|propeller (generic term)|propellor (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|fuck|fucking|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+(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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|drive in|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|tighten (generic term)|fasten (generic term)|unscrew (antonym)
+(verb)|cheat|chouse|shaft|chicane|jockey|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+screw-loose|1
+(adj)|screwy|insane (similar term)
+screw-pine family|1
+(noun)|Pandanaceae|family Pandanaceae|monocot family (generic term)|liliopsid family (generic term)
+screw-topped|1
+(adj)|topped (similar term)
+screw auger|1
+(noun)|auger|gimlet|wimble|drill (generic term)
+screw augur|1
+(noun)|Spiranthes cernua|ladies' tresses (generic term)|lady's tresses (generic term)
+screw bean|2
+(noun)|pod (generic term)|seedpod (generic term)
+(noun)|screwbean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite (generic term)|mesquit (generic term)
+screw eye|1
+(noun)|woodscrew (generic term)
+screw jack|1
+(noun)|jackscrew|jack (generic term)
+screw key|1
+(noun)|wrench (generic term)|spanner (generic term)
+screw log|1
+(noun)|patent log|taffrail log|log (generic term)
+screw pine|1
+(noun)|pandanus|tree (generic term)
+screw propeller|1
+(noun)|screw|propeller (generic term)|propellor (generic term)
+screw thread|1
+(noun)|thread|rib (generic term)
+screw tree|1
+(noun)|shrub (generic term)|bush (generic term)
+screw up|4
+(verb)|heat up|hot up|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|screw (generic term)
+(verb)|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+screw wrench|1
+(noun)|adjustable wrench (generic term)|adjustable spanner (generic term)
+screwball|3
+(adj)|crazy|half-baked|softheaded|impractical (similar term)
+(noun)|crackpot|crank|nut|nut case|nutcase|fruitcake|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+screwballer|1
+(noun)|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+screwbean|1
+(noun)|screw bean|tornillo|screwbean mesquite|Prosopis pubescens|mesquite (generic term)|mesquit (generic term)
+screwbean mesquite|1
+(noun)|screw bean|screwbean|tornillo|Prosopis pubescens|mesquite (generic term)|mesquit (generic term)
+screwdriver|2
+(noun)|hand tool (generic term)
+(noun)|cocktail (generic term)
+screwing|1
+(noun)|fuck|fucking|screw|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+screwtop|1
+(noun)|top (generic term)|cover (generic term)
+screwup|1
+(noun)|mismanagement (generic term)|misdirection (generic term)
+screwy|1
+(adj)|screw-loose|insane (similar term)
+scriabin|1
+(noun)|Scriabin|Aleksandr Scriabin|Aleksandr Nikolayevich Scriabin|composer (generic term)
+scribble|4
+(noun)|scratch|scrawl|cacography|handwriting (generic term)|hand (generic term)|script (generic term)
+(noun)|scrabble|doodle|drawing (generic term)
+(verb)|scrabble|write (generic term)
+(verb)|scrawl|write (generic term)
+scribbler|2
+(noun)|scribe|penman|journalist (generic term)
+(noun)|scrawler|writer (generic term)
+scribbling block|1
+(noun)|scratch pad|scratch paper|notepad (generic term)
+scribe|5
+(noun)|Scribe|Augustin Eugene Scribe|dramatist (generic term)|playwright (generic term)
+(noun)|scribbler|penman|journalist (generic term)
+(noun)|copyist|scrivener|employee (generic term)
+(noun)|scriber|scratch awl|awl (generic term)
+(verb)|score (generic term)|nock (generic term)|mark (generic term)
+scriber|1
+(noun)|scribe|scratch awl|awl (generic term)
+scribing block|1
+(noun)|surface gauge|surface gage|gauge (generic term)|gage (generic term)
+scrim|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+scrimmage|3
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+(noun)|melee|battle royal|disturbance (generic term)
+(verb)|rehearse (generic term)|practise (generic term)|practice (generic term)
+scrimmage line|1
+(noun)|line of scrimmage|line (generic term)
+scrimp|1
+(verb)|stint|skimp|save (generic term)
+scrimpy|1
+(adj)|meager|meagre|meagerly|stingy|bare (similar term)|scanty (similar term)|spare (similar term)|exiguous (similar term)|hand-to-mouth (similar term)|hardscrabble (similar term)|marginal (similar term)|measly (similar term)|miserable (similar term)|paltry (similar term)|insufficient (related term)|deficient (related term)|scarce (related term)|ample (antonym)
+scrimshank|1
+(verb)|fiddle (generic term)|shirk (generic term)|shrink from (generic term)|goldbrick (generic term)
+scrimshanker|1
+(noun)|slacker (generic term)|shirker (generic term)
+scrimshaw|1
+(noun)|carving (generic term)
+scrimy|2
+(adj)|offensive (similar term)
+(adj)|grudging|niggardly|stingy (similar term)|ungenerous (similar term)
+scrip|1
+(noun)|security (generic term)|certificate (generic term)
+scripps|2
+(noun)|Scripps|Edward Wyllis Scripps|publisher (generic term)|newspaper publisher (generic term)
+(noun)|Scripps|James Edmund Scripps|publisher (generic term)|newspaper publisher (generic term)
+script|4
+(noun)|book|playscript|dramatic composition (generic term)|dramatic work (generic term)
+(noun)|handwriting|hand|writing (generic term)
+(noun)|orthography (generic term)|writing system (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+scripted|1
+(adj)|written|unscripted (antonym)
+scriptorium|1
+(noun)|room (generic term)
+scriptural|2
+(adj)|biblical|sacred text|sacred writing|religious writing|religious text (related term)
+(adj)|orthography|writing system (related term)
+scripture|2
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|sacred scripture|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+scriptwriter|1
+(noun)|writer (generic term)|author (generic term)
+scrivened|1
+(adj)|written (similar term)
+scrivener|1
+(noun)|copyist|scribe|employee (generic term)
+scrod|2
+(noun)|schrod|fish (generic term)
+(noun)|schrod|cod (generic term)|codfish (generic term)
+scrofula|1
+(noun)|struma|king's evil|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+scrofulous|3
+(adj)|ill (similar term)|sick (similar term)
+(adj)|immoral (similar term)
+(adj)|ugly (similar term)
+scroll|3
+(noun)|coil|whorl|roll|curl|curlicue|ringlet|gyre|round shape (generic term)
+(noun)|roll|manuscript (generic term)|holograph (generic term)
+(verb)|move (generic term)
+scroll saw|1
+(noun)|jigsaw|fretsaw|power saw (generic term)|saw (generic term)|sawing machine (generic term)
+scrooge|1
+(noun)|niggard|skinflint|churl|hoarder (generic term)
+scrophularia|1
+(noun)|Scrophularia|genus Scrophularia|asterid dicot genus (generic term)
+scrophulariaceae|1
+(noun)|Scrophulariaceae|family Scrophulariaceae|figwort family|foxglove family|asterid dicot family (generic term)
+scrophulariales|1
+(noun)|Scrophulariales|order Scrophulariales|plant order (generic term)
+scrotal|1
+(adj)|pouch|pocket (related term)
+scrotal vein|1
+(noun)|vena scrotalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+scrotum|1
+(noun)|pouch (generic term)|pocket (generic term)
+scrounge|2
+(verb)|forage|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|schnorr|shnorr|cadge|beg (generic term)
+scrounger|1
+(noun)|moocher|mooch|cadger|beggar (generic term)|mendicant (generic term)
+scrub|6
+(adj)|unimproved (similar term)
+(noun)|chaparral|bush|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|scrubbing|scouring|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+(verb)|scour|rub (generic term)
+(verb)|scrub up|wash (generic term)|lave (generic term)
+(verb)|cancel|call off|scratch
+scrub-bird|1
+(noun)|scrubbird|scrub bird|passerine (generic term)|passeriform bird (generic term)
+scrub beefwood|1
+(noun)|beefwood|Stenocarpus salignus|tree (generic term)
+scrub bird|1
+(noun)|scrubbird|scrub-bird|passerine (generic term)|passeriform bird (generic term)
+scrub brush|1
+(noun)|scrubbing brush|scrubber|brush (generic term)
+scrub fowl|1
+(noun)|megapode|mound bird|mound-bird|mound builder|gallinaceous bird (generic term)|gallinacean (generic term)
+scrub nurse|1
+(noun)|nurse (generic term)
+scrub oak|1
+(noun)|oak (generic term)|oak tree (generic term)
+scrub palmetto|1
+(noun)|saw palmetto|Serenoa repens|fan palm (generic term)
+scrub pine|1
+(noun)|Virginia pine|Jersey pine|Pinus virginiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+scrub plane|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+scrub typhus|1
+(noun)|tsutsugamushi disease|rickettsial disease (generic term)|rickettsiosis (generic term)
+scrub up|1
+(verb)|scrub|wash (generic term)|lave (generic term)
+scrubbed|1
+(adj)|clean (similar term)
+scrubber|3
+(noun)|worker (generic term)
+(noun)|scrub brush|scrubbing brush|brush (generic term)
+(noun)|purifier (generic term)
+scrubbiness|1
+(noun)|scrawniness|inferiority (generic term)|low quality (generic term)
+scrubbing|1
+(noun)|scrub|scouring|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+scrubbing brush|1
+(noun)|scrub brush|scrubber|brush (generic term)
+scrubbird|1
+(noun)|scrub-bird|scrub bird|passerine (generic term)|passeriform bird (generic term)
+scrubby|2
+(adj)|scrabbly|wooded (similar term)
+(adj)|scrawny|stunted|inferior (similar term)
+scrubland|1
+(noun)|country (generic term)|rural area (generic term)
+scrubs|1
+(noun)|gown|surgical gown|garment (generic term)
+scruff|1
+(noun)|nape|nucha|rear (generic term)|backside (generic term)|back end (generic term)
+scruffy|1
+(adj)|seedy|worn (similar term)
+scrum|1
+(noun)|scrummage|beginning (generic term)|start (generic term)|commencement (generic term)
+scrummage|1
+(noun)|scrum|beginning (generic term)|start (generic term)|commencement (generic term)
+scrumptious|1
+(adj)|delectable|delicious|luscious|pleasant-tasting|toothsome|yummy|tasty (similar term)
+scrumptiously|1
+(adv)|lusciously|deliciously
+scrumpy|1
+(noun)|cider (generic term)|cyder (generic term)
+scrunch|4
+(noun)|noise (generic term)
+(verb)|crump|thud|crunch (generic term)|scranch (generic term)|scraunch (generic term)|crackle (generic term)
+(verb)|squat|crouch|scrunch up|hunker|hunker down|sit (generic term)|sit down (generic term)
+(verb)|wrinkle|ruckle|crease|crinkle|scrunch up|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+scrunch up|2
+(verb)|squat|crouch|scrunch|hunker|hunker down|sit (generic term)|sit down (generic term)
+(verb)|wrinkle|ruckle|crease|crinkle|scrunch|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+scruple|6
+(noun)|apothecaries' unit (generic term)|apothecaries' weight (generic term)
+(noun)|qualm|misgiving|anxiety (generic term)
+(noun)|principle (generic term)
+(verb)|hesitate (generic term)|pause (generic term)
+(verb)|fuss (generic term)|niggle (generic term)|fret (generic term)
+(verb)|wonder (generic term)|question (generic term)
+scruples|1
+(noun)|conscience|moral sense|sense of right and wrong|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+scrupulous|2
+(adj)|religious (similar term)|principled (related term)|unscrupulous (antonym)
+(adj)|conscientious|painstaking|careful (similar term)
+scrupulously|1
+(adv)|conscientiously|religiously
+scrupulousness|2
+(noun)|honesty (generic term)|honestness (generic term)|unscrupulousness (antonym)
+(noun)|meticulousness|meticulosity|punctiliousness|conscientiousness (generic term)|painstakingness (generic term)
+scrutin de liste|1
+(noun)|list system|scrutin de liste system|voting system (generic term)|electoral system (generic term)
+scrutin de liste system|1
+(noun)|list system|scrutin de liste|voting system (generic term)|electoral system (generic term)
+scrutin uninomial system|1
+(noun)|uninominal system|uninominal voting system|single-member system|scrutin uninominal voting system|voting system (generic term)|electoral system (generic term)
+scrutin uninominal voting system|1
+(noun)|uninominal system|uninominal voting system|single-member system|scrutin uninomial system|voting system (generic term)|electoral system (generic term)
+scrutineer|1
+(noun)|canvasser|examiner (generic term)|inspector (generic term)
+scrutinise|2
+(verb)|size up|take stock|scrutinize|examine (generic term)|see (generic term)
+(verb)|audit|scrutinize|inspect|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+scrutiniser|1
+(noun)|scrutinizer|examiner (generic term)|inspector (generic term)
+scrutinize|2
+(verb)|size up|take stock|scrutinise|examine (generic term)|see (generic term)
+(verb)|audit|scrutinise|inspect|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+scrutinizer|1
+(noun)|scrutiniser|examiner (generic term)|inspector (generic term)
+scrutiny|2
+(noun)|examination|investigation (generic term)|investigating (generic term)
+(noun)|look (generic term)|looking (generic term)|looking at (generic term)
+scry|1
+(verb)|read (generic term)
+scsi|1
+(noun)|small computer system interface|SCSI|interface (generic term)|port (generic term)
+scuba|1
+(noun)|aqualung|Aqua-Lung|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+scuba diver|1
+(noun)|diver (generic term)|frogman (generic term)|underwater diver (generic term)
+scuba diving|1
+(noun)|skin diving (generic term)|skin-dive (generic term)
+scud|3
+(noun)|scudding|speed (generic term)|speeding (generic term)|hurrying (generic term)
+(verb)|dart|dash|scoot|flash|shoot|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+(verb)|rack|sail (generic term)
+scudding|1
+(noun)|scud|speed (generic term)|speeding (generic term)|hurrying (generic term)
+scuff|6
+(noun)|mule|slipper (generic term)|carpet slipper (generic term)
+(noun)|rub (generic term)|wipe (generic term)
+(verb)|drag|shuffle (generic term)|scuffle (generic term)|shamble (generic term)
+(verb)|wear (generic term)|wear off (generic term)|wear out (generic term)|wear down (generic term)|wear thin (generic term)
+(verb)|scratch (generic term)|scrape (generic term)|scratch up (generic term)
+(verb)|kick (generic term)
+scuffer|1
+(noun)|sandal (generic term)
+scuffle|5
+(noun)|hassle|tussle|dogfight|rough-and-tumble|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|scuffle hoe|Dutch hoe|hoe (generic term)
+(noun)|scramble|struggle (generic term)|battle (generic term)
+(verb)|shuffle|shamble|walk (generic term)
+(verb)|tussle|contend (generic term)|fight (generic term)|struggle (generic term)
+scuffle hoe|1
+(noun)|scuffle|Dutch hoe|hoe (generic term)
+scull|3
+(noun)|oar (generic term)
+(noun)|shell (generic term)|racing shell (generic term)
+(verb)|row (generic term)
+sculler|1
+(noun)|oarsman (generic term)|rower (generic term)
+scullery|1
+(noun)|room (generic term)
+sculling|1
+(noun)|rowing (generic term)|row (generic term)
+scullion|1
+(noun)|servant (generic term)|retainer (generic term)
+sculpin|1
+(noun)|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+sculpt|2
+(verb)|sculpture|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|sculpture|grave|carve (generic term)
+sculpted|1
+(adj)|graven|sculptured|carved (similar term)|carven (similar term)
+sculptor|2
+(noun)|sculpturer|carver|statue maker|artist (generic term)|creative person (generic term)
+(noun)|Sculptor|constellation (generic term)
+sculptress|1
+(noun)|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+sculptural|2
+(adj)|plastic art|solid figure|three-dimensional figure (related term)
+(adj)|modeled|sculptured|sculpturesque|shapely (similar term)
+sculptural relief|1
+(noun)|relief|relievo|rilievo|embossment|sculpture (generic term)
+sculpture|4
+(noun)|plastic art (generic term)|solid figure (generic term)|three-dimensional figure (generic term)
+(noun)|carving|art (generic term)|artistic creation (generic term)|artistic production (generic term)|fine arts (generic term)|beaux arts (generic term)
+(verb)|sculpt|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|sculpt|grave|carve (generic term)
+sculptured|2
+(adj)|graven|sculpted|carved (similar term)|carven (similar term)
+(adj)|modeled|sculptural|sculpturesque|shapely (similar term)
+sculpturer|1
+(noun)|sculptor|carver|statue maker|artist (generic term)|creative person (generic term)
+sculpturesque|1
+(adj)|modeled|sculptural|sculptured|shapely (similar term)
+scum|3
+(noun)|trash|rabble (generic term)|riffraff (generic term)|ragtag (generic term)|ragtag and bobtail (generic term)
+(noun)|film (generic term)
+(verb)|get rid of (generic term)|remove (generic term)
+scum bag|1
+(noun)|rotter|dirty dog|rat|skunk|stinker|stinkpot|bum|puke|crumb|lowlife|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+scumble|1
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+scummy|2
+(adj)|abject|low|low-down|miserable|scurvy|contemptible (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+scunner|1
+(noun)|dislike (generic term)
+scup|4
+(noun)|saltwater fish (generic term)
+(noun)|porgy|saltwater fish (generic term)
+(noun)|southern porgy|southern scup|Stenotomus aculeatus|porgy (generic term)
+(noun)|northern porgy|northern scup|Stenotomus chrysops|porgy (generic term)
+scupper|3
+(noun)|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+(verb)|ambush|bushwhack|waylay|lurk|ambuscade|lie in wait|wait (generic term)
+(verb)|queer|expose|endanger|peril|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+scuppernong|1
+(noun)|muscadine (generic term)|bullace grape (generic term)
+scurf|2
+(noun)|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+(noun)|scale|exfoliation|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+scurfy|2
+(adj)|bit|chip|flake|fleck|scrap (related term)
+(adj)|lepidote|leprose|scabrous|scaly|rough (similar term)|unsmooth (similar term)
+scurrility|1
+(noun)|billingsgate|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+scurrilous|1
+(adj)|abusive|insulting|opprobrious|offensive (similar term)
+scurry|2
+(noun)|scamper|scramble|haste (generic term)|hurry (generic term)|rush (generic term)|rushing (generic term)
+(verb)|scamper|skitter|scuttle|run (generic term)
+scurrying|1
+(adj)|hurrying|fast (similar term)
+scurvily|1
+(adv)|meanly|basely
+scurvy|2
+(adj)|abject|low|low-down|miserable|scummy|contemptible (similar term)
+(noun)|scorbutus|avitaminosis (generic term)|hypovitaminosis (generic term)
+scurvy grass|2
+(noun)|common scurvy grass|Cochlearia officinalis|cress (generic term)|cress plant (generic term)
+(noun)|winter cress|St. Barbara's herb|cress (generic term)|cress plant (generic term)
+scut|1
+(noun)|tail (generic term)
+scut work|1
+(noun)|shitwork|disagreeable task (generic term)|disagreeable chore (generic term)
+scutch grass|1
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|star grass|Cynodon dactylon|grass (generic term)
+scutcheon|2
+(noun)|finger plate|escutcheon|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|escutcheon|shield (generic term)|buckler (generic term)
+scute|1
+(noun)|protective covering (generic term)
+scutellaria|1
+(noun)|Scutellaria|genus Scutellaria|asterid dicot genus (generic term)
+scutellaria lateriflora|1
+(noun)|blue pimpernel|blue skullcap|mad-dog skullcap|mad-dog weed|Scutellaria lateriflora|herb (generic term)|herbaceous plant (generic term)
+scutigera|1
+(noun)|Scutigera|genus Scutigera|arthropod genus (generic term)
+scutigera coleoptrata|1
+(noun)|house centipede|Scutigera coleoptrata|centipede (generic term)
+scutigerella|1
+(noun)|Scutigerella|genus Scutigerella|arthropod genus (generic term)
+scutigerella immaculata|1
+(noun)|garden centipede|garden symphilid|symphilid|Scutigerella immaculata|arthropod (generic term)
+scutigeridae|1
+(noun)|Scutigeridae|family Scutigeridae|arthropod family (generic term)
+scuttle|3
+(noun)|coal scuttle|container (generic term)
+(noun)|hatchway|opening|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(verb)|scurry|scamper|skitter|run (generic term)
+scuttlebutt|1
+(noun)|gossip|comment|report (generic term)|account (generic term)
+scyliorhinidae|1
+(noun)|Scyliorhinidae|family Scyliorhinidae|fish family (generic term)
+scylla|1
+(noun)|Scylla|mythical being (generic term)
+scyphozoa|1
+(noun)|Scyphozoa|class Scyphozoa|class (generic term)
+scyphozoan|1
+(noun)|coelenterate (generic term)|cnidarian (generic term)
+scyphus|1
+(noun)|cup (generic term)
+scythe|2
+(noun)|edge tool (generic term)
+(verb)|mow (generic term)|cut down (generic term)
+scythia|1
+(noun)|Scythia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+scythian|3
+(adj)|Scythian|nomad (related term)|Iranian|Iranian language (related term)
+(noun)|Scythian|nomad (generic term)
+(noun)|Scythian|Iranian (generic term)|Iranian language (generic term)
+scythian lamb|1
+(noun)|Scythian lamb|Cibotium barometz|tree fern (generic term)
+sd|1
+(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state (generic term)
+se|2
+(noun)|selenium|Se|atomic number 34|chemical element (generic term)|element (generic term)|antioxidant (generic term)
+(noun)|southeast|sou'-east|southeastward|SE|compass point (generic term)|point (generic term)
+sea|4
+(adj)|deep-sea (similar term)|oceangoing (similar term)|seafaring (similar term)|seagoing (similar term)|oceanic (similar term)|offshore (similar term)|oversea (similar term)|overseas (similar term)|shipboard (similar term)|suboceanic (similar term)|subocean (similar term)|air (antonym)|land (antonym)
+(noun)|body of water (generic term)|water (generic term)
+(noun)|ocean|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|turbulent flow (generic term)
+sea-coast|1
+(noun)|seashore|coast|seacoast|shore (generic term)
+sea-duty|1
+(noun)|service abroad|shipboard duty|assignment (generic term)|duty assignment (generic term)
+sea-ear|1
+(noun)|ormer|Haliotis tuberculata|abalone (generic term)|ear-shell (generic term)
+sea-green|1
+(adj)|chromatic (similar term)
+sea-lavender family|1
+(noun)|Plumbaginaceae|family Plumbaginaceae|leadwort family|dicot family (generic term)|magnoliopsid family (generic term)
+sea-lettuce family|1
+(noun)|Ulvaceae|family Ulvaceae|protoctist family (generic term)
+sea-level|1
+(adj)|low-lying|lowland (similar term)
+sea-poose|1
+(noun)|undertow|sea puss|sea-puss|sea purse|sea-purse|undertide (generic term)|undercurrent (generic term)
+sea-purse|1
+(noun)|undertow|sea puss|sea-puss|sea purse|sea-poose|undertide (generic term)|undercurrent (generic term)
+sea-puss|1
+(noun)|undertow|sea puss|sea purse|sea-purse|sea-poose|undertide (generic term)|undercurrent (generic term)
+sea-rocket|1
+(noun)|Cakile maritima|herb (generic term)|herbaceous plant (generic term)
+sea anchor|1
+(noun)|drogue|restraint (generic term)|constraint (generic term)
+sea anemone|1
+(noun)|anemone|anthozoan (generic term)|actinozoan (generic term)
+sea animal|1
+(noun)|marine animal|marine creature|sea creature|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+sea ash|1
+(noun)|toothache tree|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash (generic term)
+sea aster|1
+(noun)|sea starwort|Aster tripolium|aster (generic term)
+sea bass|2
+(noun)|bass|saltwater fish (generic term)
+(noun)|serranid fish (generic term)|serranid (generic term)|food fish (generic term)
+sea bathing|1
+(noun)|bathing (generic term)
+sea bird|1
+(noun)|seabird|seafowl|aquatic bird (generic term)
+sea biscuit|1
+(noun)|hardtack|pilot biscuit|pilot bread|ship biscuit|biscuit (generic term)
+sea boat|1
+(noun)|boat (generic term)
+sea bottom|1
+(noun)|ocean floor|ocean bottom|seabed|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+sea bream|2
+(noun)|bream|saltwater fish (generic term)
+(noun)|bream|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sea breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+sea captain|1
+(noun)|master|captain|skipper|officer (generic term)|ship's officer (generic term)
+sea catfish|1
+(noun)|catfish (generic term)|siluriform fish (generic term)
+sea change|1
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)
+sea chantey|1
+(noun)|chantey|chanty|shanty|work song (generic term)
+sea chest|1
+(noun)|chest (generic term)
+sea chub|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sea coal|1
+(noun)|bituminous coal (generic term)|soft coal (generic term)
+sea cole|1
+(noun)|sea kale|Crambe maritima|herb (generic term)|herbaceous plant (generic term)
+sea cow|1
+(noun)|sirenian mammal|sirenian|aquatic mammal (generic term)
+sea cradle|1
+(noun)|chiton|coat-of-mail shell|polyplacophore|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+sea crawfish|1
+(noun)|spiny lobster|langouste|rock lobster|crawfish|crayfish|lobster (generic term)
+sea creature|1
+(noun)|marine animal|marine creature|sea animal|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+sea cucumber|1
+(noun)|holothurian|echinoderm (generic term)
+sea dahlia|1
+(noun)|Coreopsis maritima|coreopsis (generic term)|tickseed (generic term)|tickweed (generic term)|tick-weed (generic term)
+sea dog|1
+(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|seafarer|gob|sailor (generic term)|crewman (generic term)
+sea duck|1
+(noun)|duck (generic term)
+sea eagle|2
+(noun)|osprey|fish hawk|fish eagle|Pandion haliaetus|hawk (generic term)
+(noun)|eagle (generic term)|bird of Jove (generic term)
+sea elephant|1
+(noun)|elephant seal|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+sea eryngium|1
+(noun)|sea holly|sea holm|Eryngium maritimum|shrub (generic term)|bush (generic term)
+sea fan|1
+(noun)|gorgonian (generic term)|gorgonian coral (generic term)
+sea feather|1
+(noun)|gorgonian (generic term)|gorgonian coral (generic term)
+sea god|1
+(noun)|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+sea gooseberry|1
+(noun)|ctenophore (generic term)|comb jelly (generic term)
+sea green|1
+(noun)|green (generic term)|greenness (generic term)|viridity (generic term)
+sea gull|1
+(noun)|gull|seagull|larid (generic term)
+sea hare|1
+(noun)|Aplysia punctata|gastropod (generic term)|univalve (generic term)
+sea holly|2
+(noun)|sea holm|sea eryngium|Eryngium maritimum|shrub (generic term)|bush (generic term)
+(noun)|bear's breech|bear's breeches|Acanthus mollis|acanthus (generic term)
+sea holm|1
+(noun)|sea holly|sea eryngium|Eryngium maritimum|shrub (generic term)|bush (generic term)
+sea horse|2
+(noun)|walrus|seahorse|pinniped mammal (generic term)|pinniped (generic term)|pinnatiped (generic term)
+(noun)|seahorse|pipefish (generic term)|needlefish (generic term)
+sea island cotton|1
+(noun)|tree cotton|Gossypium barbadense|cotton (generic term)|cotton plant (generic term)
+sea kale|1
+(noun)|sea cole|Crambe maritima|herb (generic term)|herbaceous plant (generic term)
+sea king|1
+(noun)|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+sea ladder|1
+(noun)|sea steps|ladder (generic term)
+sea lamprey|1
+(noun)|Petromyzon marinus|lamprey (generic term)|lamprey eel (generic term)|lamper eel (generic term)
+sea lane|1
+(noun)|seaway|ship route|trade route|lane (generic term)
+sea lavender|1
+(noun)|marsh rosemary|statice|subshrub (generic term)|suffrutex (generic term)
+sea lawyer|1
+(noun)|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+sea lettuce|1
+(noun)|laver|green algae (generic term)|chlorophyte (generic term)
+sea level|1
+(noun)|water level (generic term)
+sea lily|1
+(noun)|crinoid (generic term)
+sea lion|1
+(noun)|eared seal (generic term)
+sea louse|1
+(noun)|sea slater|isopod (generic term)
+sea lyme grass|1
+(noun)|European dune grass|Elymus arenarius|Leymus arenaria|lyme grass (generic term)
+sea mat|1
+(noun)|bryozoan|polyzoan|sea moss|moss animal|invertebrate (generic term)
+sea mew|1
+(noun)|mew|mew gull|Larus canus|gull (generic term)|seagull (generic term)|sea gull (generic term)
+sea mile|1
+(noun)|mile|nautical linear unit (generic term)
+sea milkwort|1
+(noun)|sea trifoly|black saltwort|Glaux maritima|herb (generic term)|herbaceous plant (generic term)
+sea moss|2
+(noun)|bryozoan|polyzoan|sea mat|moss animal|invertebrate (generic term)
+(noun)|red algae (generic term)
+sea mouse|1
+(noun)|polychaete (generic term)|polychete (generic term)|polychaete worm (generic term)|polychete worm (generic term)
+sea nymph|1
+(noun)|water nymph (generic term)
+sea of azof|1
+(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay (generic term)|embayment (generic term)
+sea of azoff|1
+(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay (generic term)|embayment (generic term)
+sea of azov|1
+(noun)|Sea of Azov|Sea of Azof|Sea of Azoff|bay (generic term)|embayment (generic term)
+sea of cortes|1
+(noun)|Gulf of California|Sea of Cortes|gulf (generic term)
+sea of japan|1
+(noun)|Sea of Japan|East Sea|sea (generic term)
+sea of marmara|1
+(noun)|Marmara|Sea of Marmara|Marmara Denizi|Marmora|Sea of Marmora|sea (generic term)
+sea of marmora|1
+(noun)|Marmara|Sea of Marmara|Marmara Denizi|Marmora|Sea of Marmora|sea (generic term)
+sea of okhotsk|1
+(noun)|Sea of Okhotsk|sea (generic term)
+sea onion|2
+(noun)|sea squill|squill|Urginea maritima|liliaceous plant (generic term)
+(noun)|spring squill|Scilla verna|scilla (generic term)|squill (generic term)
+sea otter|1
+(noun)|Enhydra lutris|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+sea pea|1
+(noun)|beach pea|Lathyrus maritimus|Lathyrus japonicus|wild pea (generic term)
+sea pen|1
+(noun)|anthozoan (generic term)|actinozoan (generic term)
+sea pink|1
+(noun)|cliff rose|Armeria maritima|thrift (generic term)
+sea poacher|1
+(noun)|poacher|sea poker|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+sea poker|1
+(noun)|poacher|sea poacher|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+sea poppy|1
+(noun)|horn poppy|horned poppy|yellow horned poppy|Glaucium flavum|flower (generic term)
+sea power|2
+(noun)|military capability (generic term)|military strength (generic term)|strength (generic term)|military posture (generic term)|posture (generic term)
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+sea purse|1
+(noun)|undertow|sea puss|sea-puss|sea-purse|sea-poose|undertide (generic term)|undercurrent (generic term)
+sea puss|1
+(noun)|undertow|sea-puss|sea purse|sea-purse|sea-poose|undertide (generic term)|undercurrent (generic term)
+sea raven|1
+(noun)|Hemitripterus americanus|sculpin (generic term)
+sea robber|1
+(noun)|pirate|buccaneer|sea rover|plunderer (generic term)|pillager (generic term)|looter (generic term)|spoiler (generic term)|despoiler (generic term)|raider (generic term)|freebooter (generic term)
+sea robin|1
+(noun)|searobin|gurnard (generic term)
+sea room|1
+(noun)|room (generic term)|way (generic term)|elbow room (generic term)
+sea rover|1
+(noun)|pirate|buccaneer|sea robber|plunderer (generic term)|pillager (generic term)|looter (generic term)|spoiler (generic term)|despoiler (generic term)|raider (generic term)|freebooter (generic term)
+sea scallop|2
+(noun)|scallop (generic term)|scollop (generic term)|escallop (generic term)
+(noun)|giant scallop|Pecten magellanicus|scallop (generic term)|scollop (generic term)|escallop (generic term)
+sea scooter|1
+(noun)|water scooter|scooter|motorboat (generic term)|powerboat (generic term)
+sea scorpion|1
+(noun)|scorpionfish|scorpion fish|scorpaenid (generic term)|scorpaenid fish (generic term)
+sea scout|1
+(noun)|Sea Scout|Boy Scout (generic term)
+sea serpent|1
+(noun)|legendary creature (generic term)
+sea slater|1
+(noun)|sea louse|isopod (generic term)
+sea slug|1
+(noun)|nudibranch|gastropod (generic term)|univalve (generic term)
+sea snail|1
+(noun)|snailfish|seasnail|Liparis liparis|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+sea snake|1
+(noun)|snake (generic term)|serpent (generic term)|ophidian (generic term)
+sea spider|1
+(noun)|pycnogonid|arthropod (generic term)
+sea spray|1
+(noun)|spray (generic term)
+sea spurry|1
+(noun)|sand spurry|Spergularia rubra|weed (generic term)
+sea squab|1
+(noun)|blowfish|puffer|pufferfish|saltwater fish (generic term)
+sea squill|1
+(noun)|sea onion|squill|Urginea maritima|liliaceous plant (generic term)
+sea squirt|1
+(noun)|ascidian (generic term)
+sea star|1
+(noun)|starfish|echinoderm (generic term)
+sea starwort|1
+(noun)|sea aster|Aster tripolium|aster (generic term)
+sea steps|1
+(noun)|sea ladder|ladder (generic term)
+sea swallow|1
+(noun)|Sterna hirundo|tern (generic term)
+sea tang|1
+(noun)|tang|seaweed (generic term)
+sea tangle|1
+(noun)|tang|kelp (generic term)
+sea trifoly|1
+(noun)|sea milkwort|black saltwort|Glaux maritima|herb (generic term)|herbaceous plant (generic term)
+sea trout|3
+(noun)|salmon trout|trout (generic term)
+(noun)|sciaenid fish (generic term)|sciaenid (generic term)
+(noun)|brown trout (generic term)|salmon trout (generic term)|Salmo trutta (generic term)
+sea turtle|1
+(noun)|marine turtle|turtle (generic term)
+sea urchin|1
+(noun)|echinoderm (generic term)
+sea wolf|1
+(noun)|killer whale|killer|orca|grampus|Orcinus orca|dolphin (generic term)
+sea wormwood|1
+(noun)|Seriphidium maritimum|Artemisia maritima|wormwood (generic term)
+sea wrack|2
+(noun)|eelgrass|grass wrack|Zostera marina|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|wrack|seaweed (generic term)
+seabag|1
+(noun)|drawstring bag (generic term)
+seabeach sandwort|1
+(noun)|Arenaria peploides|sandwort (generic term)
+seabed|1
+(noun)|ocean floor|ocean bottom|sea bottom|Davy Jones's locker|Davy Jones|bed (generic term)|bottom (generic term)
+seabird|1
+(noun)|sea bird|seafowl|aquatic bird (generic term)
+seaboard|1
+(noun)|seaside|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+seaborg|1
+(noun)|Seaborg|Glenn T. Seaborg|Glenn Theodore Seaborg|chemist (generic term)
+seaborgium|1
+(noun)|Sg|element 106|atomic number 106|chemical element (generic term)|element (generic term)
+seaborne|1
+(adj)|mobile (similar term)
+seacoast|1
+(noun)|seashore|coast|sea-coast|shore (generic term)
+seafarer|1
+(noun)|mariner|seaman|tar|Jack-tar|Jack|old salt|gob|sea dog|sailor (generic term)|crewman (generic term)
+seafaring|3
+(adj)|oceangoing|seagoing|sea (similar term)
+(noun)|navigation|sailing|employment (generic term)|work (generic term)
+(noun)|water travel|travel (generic term)|traveling (generic term)|travelling (generic term)
+seafood|1
+(noun)|food (generic term)|solid food (generic term)
+seafood newburg|1
+(noun)|seafood Newburg|dish (generic term)
+seafood sauce|1
+(noun)|cocktail sauce|sauce (generic term)
+seafowl|1
+(noun)|seabird|sea bird|aquatic bird (generic term)
+seafront|1
+(noun)|waterfront (generic term)
+seagirt|1
+(adj)|bordered (similar term)
+seagoing|1
+(adj)|oceangoing|seafaring|sea (similar term)
+seagrass|1
+(noun)|seaweed (generic term)
+seagull|1
+(noun)|gull|sea gull|larid (generic term)
+seahorse|2
+(noun)|walrus|sea horse|pinniped mammal (generic term)|pinniped (generic term)|pinnatiped (generic term)
+(noun)|sea horse|pipefish (generic term)|needlefish (generic term)
+seal|15
+(noun)|sealing wax|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|stamp|device (generic term)
+(noun)|sealskin|fur (generic term)|pelt (generic term)
+(noun)|Navy SEAL|SEAL|bluejacket (generic term)|navy man (generic term)|sailor (generic term)|sailor boy (generic term)
+(noun)|stamp (generic term)|impression (generic term)
+(noun)|cachet|seal of approval|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|coating (generic term)|coat (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|pinniped mammal (generic term)|pinniped (generic term)|pinnatiped (generic term)
+(verb)|close (generic term)|fill up (generic term)|unseal (antonym)
+(verb)|seal off|close (generic term)|shut (generic term)
+(verb)|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|affix (generic term)|stick on (generic term)
+(verb)|varnish|coat (generic term)|surface (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+seal bomb|1
+(noun)|explosive device (generic term)
+seal in|1
+(verb)|lock in|confine (generic term)
+seal limbs|1
+(noun)|phocomelia|meromelia (generic term)
+seal of approval|1
+(noun)|cachet|seal|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+seal off|2
+(verb)|seal|close (generic term)|shut (generic term)
+(verb)|blockade|besiege (generic term)|beleaguer (generic term)|surround (generic term)|hem in (generic term)|circumvent (generic term)
+seal oil|1
+(noun)|animal oil (generic term)
+seal ring|1
+(noun)|signet ring|ring (generic term)|band (generic term)
+sealant|1
+(noun)|sealer|sealing material (generic term)
+sealed|7
+(adj)|certain|unsealed (antonym)
+(adj)|corked (similar term)|sealed off (similar term)|stamped (similar term)|unopened (similar term)|closed (related term)|unsealed (antonym)
+(adj)|concealed (similar term)
+(adj)|irrevocable (similar term)|irrevokable (similar term)
+(adj)|paved (similar term)
+(adj)|covered (similar term)
+(adj)|plastered|covered (similar term)
+sealed instrument|1
+(noun)|contract under seal|special contract|contract (generic term)
+sealed off|1
+(adj)|sealed (similar term)
+sealer|2
+(noun)|sealant|sealing material (generic term)
+(noun)|official (generic term)|functionary (generic term)
+sealing|1
+(noun)|waterproofing|protection (generic term)
+sealing material|1
+(noun)|material (generic term)|stuff (generic term)
+sealing wax|1
+(noun)|seal|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+sealskin|2
+(noun)|seal|fur (generic term)|pelt (generic term)
+(noun)|garment (generic term)
+sealskin tent|1
+(noun)|tupik|tupek|tent (generic term)|collapsible shelter (generic term)
+sealyham|2
+(noun)|Sealyham|village (generic term)|hamlet (generic term)
+(noun)|Sealyham terrier|Sealyham|Welsh terrier (generic term)
+sealyham terrier|1
+(noun)|Sealyham terrier|Sealyham|Welsh terrier (generic term)
+seam|4
+(noun)|joint (generic term)
+(noun)|wrinkle|furrow|crease|crinkle|line|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|bed|stratum (generic term)
+(verb)|join (generic term)|bring together (generic term)
+seaman|2
+(noun)|mariner|tar|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+(noun)|Seaman|Elizabeth Seaman|Elizabeth Cochrane Seaman|Nellie Bly|journalist (generic term)
+seamanlike|1
+(adj)|seamanly|unseamanlike (antonym)
+seamanly|1
+(adj)|seamanlike|unseamanlike (antonym)
+seamanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+seamed|2
+(adj)|seamy (similar term)|sewed (similar term)|sewn (similar term)|stitched (similar term)|seamless (antonym)
+(adj)|lined|rough (similar term)|unsmooth (similar term)
+seamless|3
+(adj)|broadloom (similar term)|circular-knit (similar term)|unseamed (similar term)|seamed (antonym)
+(adj)|unlined|unseamed|smooth (similar term)
+(adj)|coherent (similar term)|consistent (similar term)|logical (similar term)|ordered (similar term)|orderly (similar term)
+seamount|1
+(noun)|mountain (generic term)|mount (generic term)
+seamster|1
+(noun)|tailor|sartor|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+seamstress|1
+(noun)|dressmaker|modiste|needlewoman|sempstress|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+seamy|2
+(adj)|seamed (similar term)
+(adj)|seedy|sleazy|sordid|squalid|disreputable (similar term)
+sean o'casey|1
+(noun)|O'Casey|Sean O'Casey|dramatist (generic term)|playwright (generic term)
+seanad|1
+(noun)|Seanad Eireann|Seanad|house (generic term)
+seanad eireann|1
+(noun)|Seanad Eireann|Seanad|house (generic term)
+seance|1
+(noun)|sitting|session|meeting (generic term)|get together (generic term)
+seaplane|2
+(noun)|hydroplane|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+(verb)|hydroplane|fly (generic term)|aviate (generic term)|pilot (generic term)
+seaport|1
+(noun)|haven|harbor|harbour|port (generic term)
+seaquake|1
+(noun)|submarine earthquake|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+sear|5
+(adj)|dried-up|sere|shriveled|shrivelled|withered|dry (similar term)
+(verb)|scorch|heat (generic term)|heat up (generic term)
+(verb)|scorch|singe|burn (generic term)|combust (generic term)
+(verb)|char|blacken|scorch|burn (generic term)
+(verb)|parch|dry (generic term)|dry out (generic term)
+search|9
+(noun)|hunt|hunting|activity (generic term)
+(noun)|investigation (generic term)|investigating (generic term)
+(noun)|lookup|operation (generic term)
+(noun)|higher cognitive process (generic term)
+(noun)|examination (generic term)|scrutiny (generic term)
+(verb)|seek|look for
+(verb)|look|examine (generic term)|see (generic term)
+(verb)|research|explore|investigate (generic term)|look into (generic term)
+(verb)|examine (generic term)|see (generic term)
+search and destroy mission|1
+(noun)|mission (generic term)|military mission (generic term)
+search and rescue mission|1
+(noun)|rescue (generic term)|deliverance (generic term)|delivery (generic term)|saving (generic term)
+search engine|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+search language|1
+(noun)|command language|query language|source language (generic term)
+search mission|1
+(noun)|mission (generic term)|military mission (generic term)
+search party|1
+(noun)|party (generic term)|company (generic term)
+search warrant|1
+(noun)|warrant (generic term)
+searcher|3
+(noun)|seeker|quester|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|official (generic term)|functionary (generic term)
+(noun)|searcher beetle|Calosoma scrutator|calosoma (generic term)
+searcher beetle|1
+(noun)|searcher|Calosoma scrutator|calosoma (generic term)
+searching|3
+(adj)|inquisitory|probing|inquiring (similar term)
+(adj)|trenchant|intelligent (similar term)
+(adj)|exploratory (similar term)|explorative (similar term)
+searching fire|1
+(noun)|fire (generic term)|firing (generic term)
+searchlight|1
+(noun)|light (generic term)|light source (generic term)
+seared|1
+(adj)|cooked (similar term)
+searing iron|1
+(noun)|cautery (generic term)|cauterant (generic term)
+searobin|1
+(noun)|sea robin|gurnard (generic term)
+seascape|2
+(noun)|scenery (generic term)
+(noun)|waterscape|painting (generic term)|picture (generic term)
+seashell|1
+(noun)|shell (generic term)
+seashore|1
+(noun)|coast|seacoast|sea-coast|shore (generic term)
+seashore mallow|1
+(noun)|mallow (generic term)
+seasick|1
+(adj)|airsick|air sick|carsick|ill (similar term)|sick (similar term)
+seasickness|1
+(noun)|mal de mer|naupathia|motion sickness (generic term)|kinetosis (generic term)
+seaside|1
+(noun)|seaboard|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+seaside alder|1
+(noun)|Alnus maritima|alder (generic term)|alder tree (generic term)
+seaside centaury|1
+(noun)|centaury (generic term)
+seaside daisy|1
+(noun)|beach aster|Erigeron glaucous|fleabane (generic term)
+seaside goldenrod|1
+(noun)|beach goldenrod|Solidago sempervirens|goldenrod (generic term)
+seaside mahoe|1
+(noun)|portia tree|bendy tree|Thespesia populnea|tulipwood tree (generic term)
+seaside scrub oak|1
+(noun)|myrtle oak|Quercus myrtifolia|scrub oak (generic term)
+seasnail|2
+(noun)|snailfish|sea snail|Liparis liparis|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+(noun)|gastropod (generic term)|univalve (generic term)
+season|5
+(noun)|time of year|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|flavor|flavour
+(verb)|harden|toughen (generic term)
+(verb)|temper|mollify|weaken (generic term)
+season ticket|1
+(noun)|commutation ticket|ticket (generic term)
+seasonable|2
+(adj)|unseasonable (antonym)
+(adj)|timely|well-timed|well timed|opportune (similar term)
+seasonableness|1
+(noun)|timeliness|timing (generic term)|untimeliness (antonym)|unseasonableness (antonym)
+seasonably|2
+(adv)|unseasonably (antonym)
+(adv)|timely|well-timed|apropos
+seasonal|2
+(adj)|year-round (antonym)
+(noun)|seasonal worker|worker (generic term)
+seasonal adjustment|1
+(noun)|allowance (generic term)|adjustment (generic term)
+seasonal worker|1
+(noun)|seasonal|worker (generic term)
+seasoned|2
+(adj)|cured (similar term)|unseasoned (antonym)
+(adj)|veteran|experienced (similar term)|experient (similar term)
+seasoned salt|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+seasoner|2
+(noun)|cook (generic term)
+(noun)|flavorer|flavourer|flavoring|flavouring|seasoning|ingredient (generic term)|fixings (generic term)
+seasoning|2
+(noun)|flavorer|flavourer|flavoring|flavouring|seasoner|ingredient (generic term)|fixings (generic term)
+(noun)|change of state (generic term)
+seat|10
+(noun)|place|space (generic term)
+(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 (generic term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|support (generic term)
+(noun)|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+(noun)|cloth covering (generic term)
+(verb)|sit|sit down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|accommodate (generic term)|hold (generic term)|admit (generic term)
+(verb)|induct|invest|install (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+seat belt|1
+(noun)|seatbelt|safety belt (generic term)|life belt (generic term)|safety harness (generic term)
+seat cushion|1
+(noun)|cushion (generic term)
+seatbelt|1
+(noun)|seat belt|safety belt (generic term)|life belt (generic term)|safety harness (generic term)
+seated|1
+(adj)|sitting|standing (antonym)
+seating|2
+(noun)|seats|seating room|seating area|room (generic term)|way (generic term)|elbow room (generic term)
+(noun)|service (generic term)
+seating area|1
+(noun)|seating|seats|seating room|room (generic term)|way (generic term)|elbow room (generic term)
+seating capacity|1
+(noun)|capaciousness (generic term)|roominess (generic term)|spaciousness (generic term)|commodiousness (generic term)
+seating room|1
+(noun)|seating|seats|seating area|room (generic term)|way (generic term)|elbow room (generic term)
+seats|1
+(noun)|seating|seating room|seating area|room (generic term)|way (generic term)|elbow room (generic term)
+seattle|1
+(noun)|Seattle|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+seattle slew|1
+(noun)|Seattle Slew|thoroughbred (generic term)
+seawall|1
+(noun)|breakwater|groin|groyne|mole|bulwark|jetty|barrier (generic term)
+seaward|4
+(adj)|inshore|onshore|offshore (antonym)
+(adj)|coastal (similar term)
+(noun)|direction (generic term)
+(adv)|seawards|asea|toward the sea
+seawards|1
+(adv)|seaward|asea|toward the sea
+seawater|1
+(noun)|saltwater|brine|water (generic term)|H2O (generic term)|fresh water (antonym)
+seaway|1
+(noun)|sea lane|ship route|trade route|lane (generic term)
+seaweed|1
+(noun)|alga (generic term)|algae (generic term)
+seaworthiness|1
+(noun)|fitness|soundness (generic term)
+seaworthy|1
+(adj)|tight (related term)|unseaworthy (antonym)
+seb|1
+(noun)|staphylococcal enterotoxin B|SEB|staphylococcal enterotoxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+sebaceous|1
+(adj)|greasy|oily|oleaginous|fatty (similar term)|fat (similar term)
+sebaceous cyst|1
+(noun)|pilar cyst|wen|steatocystoma|cyst (generic term)
+sebaceous follicle|1
+(noun)|sebaceous gland|glandulae sebaceae|oil gland (generic term)
+sebaceous gland|1
+(noun)|sebaceous follicle|glandulae sebaceae|oil gland (generic term)
+sebacic acid|1
+(noun)|decanedioic acid|carboxylic acid (generic term)
+sebastian cabot|1
+(noun)|Cabot|Sebastian Cabot|explorer (generic term)|adventurer (generic term)|cartographer (generic term)|map maker (generic term)
+sebastian vizcaino|1
+(noun)|Vizcaino|Sebastian Vizcaino|explorer (generic term)|adventurer (generic term)
+sebastiana|1
+(noun)|Sebastiana|genus Sebastiana|rosid dicot genus (generic term)
+sebastodes|1
+(noun)|Sebastodes|genus Sebastodes|fish genus (generic term)
+sebastodes caurinus|1
+(noun)|copper rockfish|Sebastodes caurinus|rockfish (generic term)
+sebastodes marinus|1
+(noun)|rosefish|ocean perch|Sebastodes marinus|rockfish (generic term)
+sebastodes miniatus|1
+(noun)|vermillion rockfish|rasher|Sebastodes miniatus|rockfish (generic term)
+sebastodes ruberrimus|1
+(noun)|red rockfish|Sebastodes ruberrimus|rockfish (generic term)
+sebastopol|1
+(noun)|Sebastopol|Sevastopol|city (generic term)|metropolis (generic term)|urban center (generic term)
+sebe|1
+(noun)|southeast by east|SEbE|compass point (generic term)|point (generic term)
+seborrhea|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+seborrheic dermatitis|1
+(noun)|seborrheic eczema|dermatitis (generic term)
+seborrheic eczema|1
+(noun)|seborrheic dermatitis|dermatitis (generic term)
+seborrheic keratosis|1
+(noun)|keratosis (generic term)
+sebs|1
+(noun)|southeast by south|SEbS|compass point (generic term)|point (generic term)
+sebum|1
+(noun)|secretion (generic term)
+sec|4
+(adj)|unsweet|dry (similar term)
+(noun)|second|s|time unit (generic term)|unit of time (generic term)
+(noun)|secant|trigonometric function (generic term)|circular function (generic term)
+(noun)|Securities and Exchange Commission|SEC|independent agency (generic term)
+secale|1
+(noun)|Secale|genus Secale|monocot genus (generic term)|liliopsid genus (generic term)
+secale cereale|1
+(noun)|rye|Secale cereale|cereal (generic term)|cereal grass (generic term)
+secant|2
+(noun)|straight line (generic term)
+(noun)|sec|trigonometric function (generic term)|circular function (generic term)
+secateurs|1
+(noun)|pruning shears (generic term)
+secede|1
+(verb)|splinter|break away|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+secern|1
+(verb)|distinguish|separate|differentiate|secernate|severalize|severalise|tell|tell apart|identify (generic term)|place (generic term)
+secernate|1
+(verb)|distinguish|separate|differentiate|secern|severalize|severalise|tell|tell apart|identify (generic term)|place (generic term)
+secernment|2
+(noun)|secretion|organic process (generic term)|biological process (generic term)
+(noun)|discrimination|basic cognitive process (generic term)
+secession|3
+(noun)|sezession|school (generic term)|artistic movement (generic term)|art movement (generic term)
+(noun)|Secession|separation (generic term)
+(noun)|withdrawal|separation (generic term)
+secessionism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+secessionist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+sechuana|1
+(noun)|Tswana|Setswana|Sechuana|Sotho (generic term)
+seckel|1
+(noun)|seckel pear|pear (generic term)
+seckel pear|1
+(noun)|seckel|pear (generic term)
+seclude|1
+(verb)|sequester|sequestrate|withdraw|isolate (generic term)|insulate (generic term)
+secluded|2
+(adj)|privy|secret|private (similar term)
+(adj)|cloistered|reclusive|sequestered|private (similar term)
+seclusion|2
+(noun)|privacy|privateness|reclusiveness (generic term)
+(noun)|separation (generic term)
+secobarbital|1
+(noun)|secobarbital sodium|Seconal|red devil|barbiturate (generic term)
+secobarbital sodium|1
+(noun)|secobarbital|Seconal|red devil|barbiturate (generic term)
+seconal|1
+(noun)|secobarbital sodium|secobarbital|Seconal|red devil|barbiturate (generic term)
+second|17
+(adj)|2nd|2d|ordinal (similar term)
+(adj)|intermediate (similar term)
+(adj)|first (antonym)
+(adj)|forward (similar term)
+(noun)|sec|s|time unit (generic term)|unit of time (generic term)
+(noun)|moment|minute|bit|time (generic term)
+(noun)|second base|position (generic term)
+(noun)|moment|minute|instant|point (generic term)|point in time (generic term)
+(noun)|rank (generic term)
+(noun)|arcsecond|angular unit (generic term)
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|secondment|endorsement|indorsement|agreement (generic term)
+(noun)|second gear|gear (generic term)|gear mechanism (generic term)
+(noun)|irregular|merchandise (generic term)|ware (generic term)|product (generic term)
+(verb)|back|endorse|indorse|support (generic term)|back up (generic term)
+(verb)|transfer (generic term)|reassign (generic term)
+(adv)|secondly
+second-best|1
+(adj)|best (similar term)
+second-class|1
+(adj)|inferior (similar term)
+second-degree burn|1
+(noun)|burn (generic term)
+second-guess|2
+(verb)|outguess|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|comment (generic term)
+second-hand speech|1
+(noun)|conversation (generic term)
+second-hand store|1
+(noun)|thriftshop|shop (generic term)|store (generic term)
+second-in-command|1
+(noun)|deputy (generic term)|lieutenant (generic term)
+second-place finish|1
+(noun)|runner-up finish|finish (generic term)
+second-rate|1
+(adj)|mediocre|inferior (similar term)
+second-rater|1
+(noun)|mediocrity|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+second-sighted|1
+(adj)|clairvoyant|precognitive|prophetic (similar term)|prophetical (similar term)
+second-string|1
+(adj)|substitute|secondary (similar term)
+second-stringer|1
+(noun)|substitute|reserve|athlete (generic term)|jock (generic term)
+second-year|1
+(adj)|sophomore|intermediate (similar term)
+second advent|1
+(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation (generic term)
+second adventism|1
+(noun)|Adventism|Second Adventism|Christianity (generic term)|Christian religion (generic term)
+second adventist|1
+(noun)|Adventist|Second Adventist|Christian (generic term)
+second balcony|1
+(noun)|family circle|upper balcony|peanut gallery|area (generic term)
+second banana|2
+(noun)|straight man|performer (generic term)|performing artist (generic term)
+(noun)|second fiddle|subordinate (generic term)|subsidiary (generic term)|underling (generic term)|foot soldier (generic term)
+second base|2
+(noun)|base (generic term)|bag (generic term)
+(noun)|second|position (generic term)
+second baseman|1
+(noun)|second sacker|infielder (generic term)
+second battle of ypres|1
+(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle (generic term)
+second best|1
+(noun)|runner-up|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+second childhood|1
+(noun)|dotage|senility|old age (generic term)|years (generic term)|age (generic term)|eld (generic term)|geezerhood (generic term)
+second class|3
+(noun)|rank (generic term)
+(noun)|inferiority (generic term)|low quality (generic term)
+(noun)|Cabin class|accommodation (generic term)
+second coming|1
+(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation (generic term)
+second coming of christ|1
+(noun)|Second Coming|Second Coming of Christ|Second Advent|Advent|Parousia|manifestation (generic term)
+second council of constantinople|1
+(noun)|Constantinople|Second Council of Constantinople|ecumenical council (generic term)
+second council of lyons|1
+(noun)|Lyons|Second Council of Lyons|council (generic term)
+second council of nicaea|1
+(noun)|Nicaea|Second Council of Nicaea|ecumenical council (generic term)
+second cousin|1
+(noun)|relative (generic term)|relation (generic term)
+second cranial nerve|1
+(noun)|optic nerve|nervus opticus|optic tract|cranial nerve (generic term)
+second crusade|1
+(noun)|Second Crusade|Crusade (generic term)
+second deck|1
+(noun)|main deck|deck (generic term)
+second earl grey|1
+(noun)|Grey|Charles Grey|Second Earl Grey|statesman (generic term)|solon (generic term)|national leader (generic term)
+second earl of chatham|1
+(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman (generic term)|solon (generic term)|national leader (generic term)
+second earl of guilford|1
+(noun)|North|Frederick North|Second Earl of Guilford|statesman (generic term)|solon (generic term)|national leader (generic term)
+second empire|1
+(noun)|Second Empire|empire (generic term)
+second epistel of john|1
+(noun)|Second Epistel of John|II John|Epistle (generic term)
+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|Epistle (generic term)
+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|Epistle (generic term)
+second epistle of paul the apostle to timothy|1
+(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|Epistle (generic term)
+second epistle of peter|1
+(noun)|Second Epistle of Peter|II Peter|Epistle (generic term)
+second epistle to the corinthians|1
+(noun)|Second Epistle of Paul the Apostle to the Corinthians|Second Epistle to the Corinthians|II Corinthians|Epistle (generic term)
+second epistle to the thessalonians|1
+(noun)|Second Epistle of Paul the Apostle to the Thessalonians|Second Epistle to the Thessalonians|II Thessalonians|Epistle (generic term)
+second epistle to timothy|1
+(noun)|Second Epistle of Paul the Apostle to Timothy|Second Epistle to Timothy|II Timothy|Epistle (generic term)
+second estate|1
+(noun)|lords temporal|nobility (generic term)|aristocracy (generic term)
+second fiddle|2
+(noun)|second banana|subordinate (generic term)|subsidiary (generic term)|underling (generic term)|foot soldier (generic term)
+(noun)|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+second gear|1
+(noun)|second|gear (generic term)|gear mechanism (generic term)
+second growth|1
+(noun)|forest (generic term)|wood (generic term)|woods (generic term)
+second half|1
+(noun)|last half|half (generic term)
+second hand|2
+(noun)|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+(noun)|hand (generic term)
+second joint|1
+(noun)|thigh|helping (generic term)|portion (generic term)|serving (generic term)
+second lateran council|1
+(noun)|Second Lateran Council|Lateran Council (generic term)
+second law of motion|1
+(noun)|Newton's second law of motion|Newton's second law|Newton's law of motion (generic term)|Newton's law (generic term)|law of motion (generic term)
+second law of thermodynamics|1
+(noun)|law of thermodynamics (generic term)
+second lieutenant|1
+(noun)|lieutenant (generic term)
+second marquis of rockingham|1
+(noun)|Rockingham|Second Marquis of Rockingham|Charles Watson-Wentworth|statesman (generic term)|solon (generic term)|national leader (generic term)
+second moment|1
+(noun)|moment (generic term)
+second mortgage|1
+(noun)|mortgage (generic term)
+second nature|1
+(noun)|habit (generic term)|use (generic term)|wont (generic term)
+second period|1
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+second person|1
+(noun)|person (generic term)
+second power|1
+(noun)|square|number (generic term)
+second reading|1
+(noun)|presentation (generic term)
+second reich|1
+(noun)|Hohenzollern empire|Second Reich|Reich (generic term)
+second sacker|1
+(noun)|second baseman|infielder (generic term)
+second sight|1
+(noun)|clairvoyance|extrasensory perception|E.S.P.|ESP|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+second stomach|1
+(noun)|reticulum|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+second string|1
+(noun)|team (generic term)|squad (generic term)
+second thought|1
+(noun)|reconsideration|afterthought|rethink|reversal (generic term)|change of mind (generic term)|flip-flop (generic term)|turnabout (generic term)|turnaround (generic term)
+second trimester|1
+(noun)|trimester (generic term)
+second vatican council|1
+(noun)|Second Vatican Council|Vatican II|Vatican Council (generic term)
+second wind|2
+(noun)|energy (generic term)|push (generic term)|get-up-and-go (generic term)
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+second world war|1
+(noun)|World War II|World War 2|Second World War|world war (generic term)
+secondarily|1
+(adv)|primarily (antonym)
+secondary|7
+(adj)|alternate (similar term)|alternative (similar term)|auxiliary (similar term)|subsidiary (similar term)|supplemental (similar term)|supplementary (similar term)|collateral (similar term)|indirect (similar term)|secondhand (similar term)|second-string (similar term)|substitute (similar term)|standby (similar term)|thirdhand (similar term)|tributary (similar term)|utility (similar term)|substitute (similar term)|vicarious (similar term)|inessential (related term)|unessential (related term)|unoriginal (related term)|primary (antonym)
+(adj)|junior-grade|inferior|lower-ranking|lowly|petty|subaltern|subordinate|junior (similar term)
+(adj)|incidental (similar term)|incident (similar term)
+(adj)|minor (similar term)
+(adj)|subordinate (similar term)|low-level (similar term)
+(noun)|formation (generic term)
+(noun)|secondary coil|secondary winding|coil (generic term)
+secondary amenorrhea|1
+(noun)|amenorrhea (generic term)|amenorrhoea (generic term)|amenia (generic term)
+secondary cell|1
+(noun)|storage cell|cell (generic term)|electric cell (generic term)
+secondary censorship|1
+(noun)|armed forces censorship (generic term)
+secondary coil|1
+(noun)|secondary winding|secondary|coil (generic term)
+secondary dentition|1
+(noun)|dentition (generic term)|teeth (generic term)
+secondary diagonal|1
+(noun)|diagonal (generic term)
+secondary dysmenorrhea|1
+(noun)|dysmenorrhea (generic term)
+secondary education|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+secondary emission|1
+(noun)|emission (generic term)
+secondary hypertension|1
+(noun)|high blood pressure (generic term)|hypertension (generic term)
+secondary modern school|1
+(noun)|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+secondary school|1
+(noun)|lyceum|lycee|Gymnasium|middle school|school (generic term)
+secondary sex character|1
+(noun)|secondary sex characteristic|secondary sexual characteristic|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+secondary sex characteristic|1
+(noun)|secondary sexual characteristic|secondary sex character|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+secondary sexual characteristic|1
+(noun)|secondary sex characteristic|secondary sex character|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+secondary storage|1
+(noun)|auxiliary storage|external storage|memory device (generic term)|storage device (generic term)
+secondary syphilis|1
+(noun)|syphilis (generic term)|syph (generic term)|pox (generic term)
+secondary winding|1
+(noun)|secondary coil|secondary|coil (generic term)
+seconder|1
+(noun)|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+secondhand|2
+(adj)|secondary (similar term)
+(adj)|used|old (similar term)
+secondhand car|1
+(noun)|used-car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+secondly|1
+(adv)|second
+secondment|2
+(noun)|second|endorsement|indorsement|agreement (generic term)
+(noun)|reassignment (generic term)
+secondo|1
+(noun)|part (generic term)|voice (generic term)
+secotiaceae|1
+(noun)|Secotiaceae|family Secotiaceae|fungus family (generic term)
+secotiales|1
+(noun)|Secotiales|order Secotiales|fungus order (generic term)
+secpar|1
+(noun)|parsec|astronomy unit (generic term)
+secrecy|2
+(noun)|secretiveness|silence|uncommunicativeness (generic term)
+(noun)|privacy|privateness|concealment|isolation (generic term)
+secret|13
+(adj)|concealed (similar term)
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|surreptitious|undercover|underground|covert (similar term)
+(adj)|unavowed|unacknowledged (similar term)
+(adj)|private|inward (similar term)
+(adj)|hidden|concealed (similar term)
+(adj)|privy|secluded|private (similar term)
+(adj)|confidential|private (similar term)
+(adj)|covert (similar term)
+(adj)|mysterious|mystic|mystical|occult|orphic|esoteric (similar term)
+(adj)|classified (similar term)
+(noun)|information (generic term)|info (generic term)
+(noun)|arcanum|information (generic term)|info (generic term)
+(noun)|mystery|enigma|closed book|perplexity (generic term)
+secret agent|1
+(noun)|intelligence officer|intelligence agent|operative|agent (generic term)
+secret approval|1
+(noun)|connivance|tacit consent|approval (generic term)|commendation (generic term)
+secret ballot|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+secret code|1
+(noun)|cipher|cypher|cryptograph|code (generic term)
+secret intelligence service|1
+(noun)|Secret Intelligence Service|MI|Military Intelligence Section 6|international intelligence agency (generic term)
+secret plan|1
+(noun)|plot|game|scheme (generic term)|strategy (generic term)
+secret police|1
+(noun)|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+secret service|1
+(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency (generic term)
+secret society|1
+(noun)|association (generic term)
+secret writing|2
+(noun)|cryptogram|cryptograph|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|cryptography|coding|steganography|writing (generic term)|committal to writing (generic term)
+secretaire|1
+(noun)|secretary|writing table|escritoire|desk (generic term)
+secretarial|1
+(adj)|assistant|helper|help|supporter (related term)
+secretarial assistant|1
+(noun)|secretary|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+secretarial school|1
+(noun)|school (generic term)
+secretariat|2
+(noun)|secretariate|administrative unit (generic term)|administrative body (generic term)
+(noun)|Secretariat|thoroughbred (generic term)
+secretariate|1
+(noun)|secretariat|administrative unit (generic term)|administrative body (generic term)
+secretary|4
+(noun)|head (generic term)|chief (generic term)|top dog (generic term)
+(noun)|secretarial assistant|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|repository|confidant (generic term)|intimate (generic term)
+(noun)|writing table|escritoire|secretaire|desk (generic term)
+secretary bird|1
+(noun)|Sagittarius serpentarius|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+secretary general|1
+(noun)|Secretary General|administrator (generic term)|executive (generic term)
+secretary of agriculture|2
+(noun)|Secretary of Agriculture|Agriculture Secretary|secretary (generic term)
+(noun)|Secretary of Agriculture|Agriculture Secretary|secretaryship (generic term)
+secretary of commerce|2
+(noun)|Secretary of Commerce|Commerce Secretary|secretary (generic term)
+(noun)|Secretary of Commerce|Commerce Secretary|secretaryship (generic term)
+secretary of commerce and labor|1
+(noun)|Secretary of Commerce and Labor|secretaryship (generic term)
+secretary of defense|2
+(noun)|Secretary of Defense|Defense Secretary|secretary (generic term)
+(noun)|Secretary of Defense|Defense Secretary|secretaryship (generic term)
+secretary of education|2
+(noun)|Secretary of Education|Education Secretary|secretary (generic term)
+(noun)|Secretary of Education|Education Secretary|secretaryship (generic term)
+secretary of energy|2
+(noun)|Secretary of Energy|Energy Secretary|secretary (generic term)
+(noun)|Secretary of Energy|Energy Secretary|secretaryship (generic term)
+secretary of health and human services|2
+(noun)|Secretary of Health and Human Services|secretary (generic term)
+(noun)|Secretary of Health and Human Services|secretaryship (generic term)
+secretary of health education and welfare|1
+(noun)|Secretary of Health Education and Welfare|secretaryship (generic term)
+secretary of housing and urban development|2
+(noun)|Secretary of Housing and Urban Development|secretary (generic term)
+(noun)|Secretary of Housing and Urban Development|secretaryship (generic term)
+secretary of labor|2
+(noun)|Secretary of Labor|Labor Secretary|secretary (generic term)
+(noun)|Secretary of Labor|Labor Secretary|secretaryship (generic term)
+secretary of state|3
+(noun)|Secretary of State|secretary (generic term)
+(noun)|foreign minister|minister (generic term)|government minister (generic term)
+(noun)|Secretary of State|secretaryship (generic term)
+secretary of state for the home department|1
+(noun)|Home Secretary|Secretary of State for the Home Department|cabinet minister (generic term)
+secretary of the interior|2
+(noun)|Secretary of the Interior|Interior Secretary|secretaryship (generic term)
+(noun)|Secretary of the Interior|Interior Secretary|secretary (generic term)
+secretary of the navy|1
+(noun)|Secretary of the Navy|Navy Secretary|secretaryship (generic term)
+secretary of the treasury|2
+(noun)|Secretary of the Treasury|Treasury Secretary|secretary (generic term)
+(noun)|Secretary of the Treasury|Treasury Secretary|secretaryship (generic term)
+secretary of transportation|2
+(noun)|Secretary of Transportation|Transportation Secretary|secretary (generic term)
+(noun)|Secretary of Transportation|Transportation Secretary|secretaryship (generic term)
+secretary of veterans affairs|2
+(noun)|Secretary of Veterans Affairs|secretary (generic term)
+(noun)|Secretary of Veterans Affairs|secretaryship (generic term)
+secretary of war|1
+(noun)|Secretary of War|War Secretary|secretaryship (generic term)
+secretaryship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+secretase|1
+(noun)|enzyme (generic term)
+secrete|2
+(verb)|release|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+(verb)|hide (generic term)|conceal (generic term)
+secreter|1
+(noun)|gland|secretory organ|secretor|organ (generic term)
+secretin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+secretion|2
+(noun)|secernment|organic process (generic term)|biological process (generic term)
+(noun)|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+secretive|1
+(adj)|close|closelipped|closemouthed|tightlipped|uncommunicative (similar term)|incommunicative (similar term)
+secretiveness|2
+(noun)|closeness|unsociability (generic term)|unsociableness (generic term)|openness (antonym)
+(noun)|secrecy|silence|uncommunicativeness (generic term)
+secretly|1
+(adv)|in secret|on the Q.T.|on the QT
+secretor|1
+(noun)|gland|secretory organ|secreter|organ (generic term)
+secretory|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+secretory organ|1
+(noun)|gland|secretor|secreter|organ (generic term)
+secretory phase|1
+(noun)|luteal phase|phase (generic term)|stage (generic term)
+sect|2
+(noun)|religious sect|religious order|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|faction|clique (generic term)|coterie (generic term)|ingroup (generic term)|inner circle (generic term)|pack (generic term)|camp (generic term)
+sectarian|3
+(adj)|clique|coterie|ingroup|inner circle|pack|camp (related term)
+(adj)|denominational (similar term)|partisan (similar term)|narrow-minded (similar term)|nonsectarian (antonym)
+(noun)|sectary|sectarist|bigot (generic term)
+sectarianism|1
+(noun)|denominationalism|narrow-mindedness (generic term)|narrowness (generic term)
+sectarist|1
+(noun)|sectarian|sectary|bigot (generic term)
+sectary|1
+(noun)|sectarian|sectarist|bigot (generic term)
+section|14
+(noun)|subdivision|writing (generic term)|written material (generic term)|piece of writing (generic term)|music (generic term)
+(noun)|slice (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|segment|part (generic term)|portion (generic term)
+(noun)|team (generic term)|squad (generic term)
+(noun)|part|division|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|square mile (generic term)
+(noun)|plane section|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|army unit (generic term)
+(noun)|department|division (generic term)
+(noun)|segment (generic term)
+(noun)|incision|surgical incision|cut (generic term)|cutting (generic term)
+(verb)|segment|separate (generic term)|divide (generic term)|part (generic term)
+section eight|2
+(noun)|Section Eight|soldier (generic term)
+(noun)|Section Eight|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+section gang|1
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+section hand|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+section man|1
+(noun)|teacher (generic term)|instructor (generic term)
+sectional|4
+(adj)|area|expanse|surface area (related term)
+(adj)|sectioned|divided (similar term)
+(adj)|territorial (similar term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+sectionalisation|1
+(noun)|division|partition|partitioning|segmentation|sectionalization|separation (generic term)
+sectionalise|1
+(verb)|sectionalize|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+sectionalism|1
+(noun)|provincialism|localism|partiality (generic term)|partisanship (generic term)
+sectionalization|1
+(noun)|division|partition|partitioning|segmentation|sectionalisation|separation (generic term)
+sectionalize|1
+(verb)|sectionalise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+sectioned|1
+(adj)|sectional|divided (similar term)
+sector|6
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+(noun)|body (generic term)
+(noun)|sphere|aspect (generic term)|facet (generic term)
+(noun)|computer memory unit (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+sectorial|1
+(adj)|plane figure|two-dimensional figure (related term)
+sectral|1
+(noun)|acebutolol|Sectral|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+secular|2
+(adj)|laic|lay|profane (similar term)
+(noun)|layman|layperson|commoner (generic term)|common man (generic term)|common person (generic term)|clergyman (antonym)
+secular games|1
+(noun)|Ludi Saeculares|celebration (generic term)|festivity (generic term)
+secular humanism|1
+(noun)|humanism|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+secularisation|2
+(noun)|secularization|change (generic term)
+(noun)|secularization|transfer (generic term)|transference (generic term)
+secularise|1
+(verb)|secularize|change state (generic term)|turn (generic term)
+secularised|1
+(adj)|secularized|profane (similar term)
+secularism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+secularist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+secularization|2
+(noun)|secularisation|change (generic term)
+(noun)|secularisation|transfer (generic term)|transference (generic term)
+secularize|2
+(verb)|secularise|change state (generic term)|turn (generic term)
+(verb)|desacralize|transfer (generic term)
+secularized|1
+(adj)|secularised|profane (similar term)
+secundigravida|1
+(noun)|gravida II|gravida (generic term)
+secure|12
+(adj)|unafraid|untroubled|insecure (antonym)
+(adj)|assured (similar term)|bonded (similar term)|guaranteed (similar term)|secured (similar term)|warranted (similar term)|certified (similar term)|established (similar term)|firm (similar term)|fail-safe (similar term)|in safe custody (similar term)|promised (similar term)|safe (similar term)|safe-deposit (similar term)|safety-deposit (similar term)|sure (similar term)|invulnerable (related term)|protected (related term)|secure (related term)|safe (related term)|insecure (antonym)
+(adj)|protected|bastioned (similar term)|fortified (similar term)|battlemented (similar term)|burglarproof (similar term)|covert (similar term)|moated (similar term)|sheltered (similar term)|shielded (similar term)|snug (similar term)|stormproof (similar term)|weatherproof (similar term)|invulnerable (related term)|secure (related term)|unprotected (antonym)
+(adj)|steady (similar term)|tight (similar term)|fixed (related term)|insecure (antonym)
+(adj)|impregnable|inviolable|strong|unassailable|unattackable|invulnerable (similar term)
+(adj)|dependable|good|safe|sound (similar term)
+(verb)|procure|obtain (generic term)
+(verb)|fasten|fix|attach (generic term)|unfasten (antonym)
+(verb)|guarantee (generic term)|vouch (generic term)
+(verb)|guarantee|ensure|insure|assure
+(verb)|plug|stop up|close (generic term)|fill up (generic term)
+(verb)|batten|batten down|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+secured|2
+(adj)|barred|bolted|fast|latched|locked|fastened (similar term)
+(adj)|bonded|guaranteed|warranted|secure (similar term)
+secured bond|1
+(noun)|bond (generic term)|bond certificate (generic term)|unsecured bond (antonym)
+securely|2
+(adv)|firmly
+(adv)|insecurely (antonym)
+secureness|2
+(noun)|security (generic term)|insecureness (antonym)
+(noun)|fastness|fixedness|fixity|fixture|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+securer|1
+(noun)|procurer|acquirer (generic term)
+securities analyst|1
+(noun)|financial analyst|analyst (generic term)
+securities and exchange commission|1
+(noun)|Securities and Exchange Commission|SEC|independent agency (generic term)
+securities firm|1
+(noun)|brokerage|brokerage firm|nondepository financial institution (generic term)
+securities industry|1
+(noun)|market|industry (generic term)
+securities law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+securities market|1
+(noun)|stock exchange|stock market|exchange (generic term)
+security|9
+(noun)|safety (generic term)|insecurity (antonym)
+(noun)|certificate|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|security department|department (generic term)|section (generic term)
+(noun)|security measures|precaution (generic term)|safeguard (generic term)|guard (generic term)
+(noun)|protection|assets (generic term)
+(noun)|fearlessness (generic term)|bravery (generic term)
+(noun)|security system|security measure|electrical device (generic term)
+(noun)|surety|transferred property (generic term)|transferred possession (generic term)
+(noun)|surety|guarantee (generic term)|warrant (generic term)|warrantee (generic term)|warranty (generic term)
+security blanket|2
+(noun)|thing (generic term)
+(noun)|blanket (generic term)|cover (generic term)
+security consultant|1
+(noun)|adviser (generic term)|advisor (generic term)|consultant (generic term)
+security council|1
+(noun)|Security Council|SC|council (generic term)
+security department|1
+(noun)|security|department (generic term)|section (generic term)
+security deposit|1
+(noun)|margin|down payment (generic term)|deposit (generic term)
+security director|1
+(noun)|administrator (generic term)|decision maker (generic term)
+security force|1
+(noun)|private security force|force (generic term)|personnel (generic term)
+security guard|1
+(noun)|watchman|watcher|guard (generic term)
+security intelligence|1
+(noun)|counterintelligence (generic term)
+security intelligence review committee|1
+(noun)|Security Intelligence Review Committee|SIRC|international intelligence agency (generic term)
+security interest|1
+(noun)|interest (generic term)|stake (generic term)
+security measure|1
+(noun)|security system|security|electrical device (generic term)
+security measures|1
+(noun)|security|precaution (generic term)|safeguard (generic term)|guard (generic term)
+security review|1
+(noun)|censoring|censorship|counterintelligence (generic term)
+security service|1
+(noun)|Security Service|MI|Military Intelligence Section 5|international intelligence agency (generic term)
+security staff|1
+(noun)|staff (generic term)
+security system|2
+(noun)|system (generic term)
+(noun)|security measure|security|electrical device (generic term)
+sed rate|1
+(noun)|erythrocyte sedimentation rate|ESR|sedimentation rate|rate (generic term)
+sedalia|1
+(noun)|Sedalia|town (generic term)
+sedan|2
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|sedan chair|litter (generic term)
+sedan chair|1
+(noun)|sedan|litter (generic term)
+sedate|3
+(adj)|staid|decorous (similar term)
+(adj)|grave|sober|solemn|serious (similar term)
+(verb)|calm|tranquilize|tranquillize|tranquillise|affect (generic term)|stimulate (antonym)
+sedated|1
+(adj)|insensible (similar term)
+sedately|1
+(adv)|calmly
+sedateness|1
+(noun)|staidness|solemnity|solemness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+sedation|2
+(noun)|physiological state (generic term)|physiological condition (generic term)
+(noun)|drugging|administration (generic term)|giving medication (generic term)
+sedative|2
+(adj)|ataractic|ataraxic|tranquilizing|tranquilising|depressant (similar term)
+(noun)|sedative drug|depressant|downer|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|drug of abuse (generic term)|street drug (generic term)
+sedative-hypnotic|1
+(noun)|sedative-hypnotic drug|sedative (generic term)|sedative drug (generic term)|depressant (generic term)|downer (generic term)
+sedative-hypnotic drug|1
+(noun)|sedative-hypnotic|sedative (generic term)|sedative drug (generic term)|depressant (generic term)|downer (generic term)
+sedative drug|1
+(noun)|sedative|depressant|downer|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)|drug of abuse (generic term)|street drug (generic term)
+sedentary|1
+(adj)|inactive (similar term)
+seder|1
+(noun)|Seder|Passover supper|supper (generic term)
+sedge|1
+(noun)|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sedge bird|1
+(noun)|sedge warbler|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler (generic term)|true warbler (generic term)
+sedge family|1
+(noun)|Cyperaceae|family Cyperaceae|monocot family (generic term)|liliopsid family (generic term)
+sedge warbler|1
+(noun)|sedge bird|sedge wren|reedbird|Acrocephalus schoenobaenus|Old World warbler (generic term)|true warbler (generic term)
+sedge wren|2
+(noun)|short-billed marsh wren|Cistothorus platensis|marsh wren (generic term)
+(noun)|sedge warbler|sedge bird|reedbird|Acrocephalus schoenobaenus|Old World warbler (generic term)|true warbler (generic term)
+sedgelike|1
+(adj)|rushlike|grassy (similar term)
+sedgy|1
+(adj)|grassy (similar term)
+sediment|3
+(noun)|deposit|substance (generic term)|matter (generic term)
+(verb)|situate (generic term)|fix (generic term)|posit (generic term)|deposit (generic term)
+(verb)|settle (generic term)|settle down (generic term)
+sedimentary|2
+(adj)|substance|matter (related term)
+(adj)|aqueous|igneous (antonym)
+sedimentary clay|1
+(noun)|soil (generic term)|dirt (generic term)
+sedimentary rock|1
+(noun)|rock (generic term)|stone (generic term)
+sedimentation|1
+(noun)|deposit|alluviation|geological phenomenon (generic term)
+sedimentation rate|1
+(noun)|erythrocyte sedimentation rate|ESR|sed rate|rate (generic term)
+sedition|1
+(noun)|misdemeanor (generic term)|misdemeanour (generic term)|infraction (generic term)|offence (generic term)|offense (generic term)|violation (generic term)|infringement (generic term)
+seditious|2
+(adj)|incendiary|incitive|inflammatory|instigative|rabble-rousing|provocative (similar term)
+(adj)|insurgent|subversive|disloyal (similar term)
+sedna|1
+(noun)|Sedna|minor planet (generic term)|planetoid (generic term)
+seduce|2
+(verb)|score|make|persuade (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+seducer|2
+(noun)|bad person (generic term)
+(noun)|ladies' man|lady killer|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+seduction|2
+(noun)|enticement (generic term)|temptation (generic term)
+(noun)|conquest|success (generic term)
+seductive|1
+(adj)|alluring (similar term)|beguiling (similar term)|enticing (similar term)|tempting (similar term)|corrupting (similar term)|insidious (similar term)|teasing (similar term)|attractive (related term)|sexy (related term)|unseductive (antonym)
+seductively|1
+(adv)|temptingly
+seductress|1
+(noun)|seducer (generic term)
+sedulity|1
+(noun)|sedulousness|diligence (generic term)|industriousness (generic term)|industry (generic term)
+sedulous|1
+(adj)|assiduous|diligent (similar term)
+sedulousness|1
+(noun)|sedulity|diligence (generic term)|industriousness (generic term)|industry (generic term)
+sedum|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+sedum acre|1
+(noun)|wall pepper|Sedum acre|stonecrop (generic term)
+sedum rosea|1
+(noun)|rose-root|midsummer-men|Sedum rosea|sedum (generic term)
+sedum telephium|1
+(noun)|orpine|orpin|livelong|live-forever|Sedum telephium|sedum (generic term)
+see|24
+(noun)|seat (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|understand|realize|realise
+(verb)|witness|find|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|visualize|visualise|envision|project|fancy|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|consider|reckon|view|regard|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|learn|hear|get word|get wind|pick up|find out|get a line|discover
+(verb)|watch|view|catch|take in|watch (generic term)
+(verb)|determine|check|find out|ascertain|watch|learn
+(verb)|meet|run into|encounter|run across|come across
+(verb)|check|insure|see to it|ensure|control|ascertain|assure|verify (generic term)
+(verb)|visit (generic term)|call in (generic term)|call (generic term)
+(verb)|visit|tour (generic term)
+(verb)|attend|take care|look|care (generic term)|give care (generic term)
+(verb)|receive (generic term)|take in (generic term)|invite (generic term)
+(verb)|go steady|go out|date|consort (generic term)|associate (generic term)|affiliate (generic term)|assort (generic term)
+(verb)|see (generic term)
+(verb)|consider (generic term)|debate (generic term)|moot (generic term)|turn over (generic term)|deliberate (generic term)
+(verb)|detect (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+(verb)|examine
+(verb)|experience|undergo|go through|participate (generic term)|take part (generic term)
+(verb)|escort|accompany (generic term)
+(verb)|bet (generic term)|wager (generic term)|play (generic term)
+(verb)|interpret|construe|understand (generic term)|construe with (related term)
+see-through|1
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|sheer|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+see double|1
+(verb)|misperceive (generic term)
+see eye to eye|1
+(verb)|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+see red|1
+(verb)|anger|feel (generic term)|experience (generic term)
+see the light|1
+(verb)|reform|straighten out|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+see through|3
+(verb)|support (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|complete (generic term)|finish (generic term)
+see to it|1
+(verb)|see|check|insure|ensure|control|ascertain|assure|verify (generic term)
+seeable|1
+(adj)|visible|circumpolar (similar term)|in sight (similar term)|ocular (similar term)|visual (similar term)|panoptic (similar term)|panoptical (similar term)|telescopic (similar term)|viewable (similar term)|perceptible (related term)|invisible (antonym)
+seed|13
+(noun)|fruit (generic term)
+(noun)|ovule (generic term)
+(noun)|seeded player|player (generic term)|participant (generic term)
+(noun)|source|germ|inspiration (generic term)
+(noun)|semen|seminal fluid|ejaculate|cum|come|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+(verb)|spill (generic term)|shed (generic term)|disgorge (generic term)
+(verb)|finance (generic term)
+(verb)|bear (generic term)|turn out (generic term)
+(verb)|sow|sough|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+(verb)|process (generic term)|treat (generic term)
+(verb)|inoculate (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+seed-like|1
+(adj)|seedlike|vegetable (similar term)
+seed-producing|1
+(adj)|vegetable (similar term)
+seed beetle|1
+(noun)|seed weevil|weevil (generic term)
+seed cake|1
+(noun)|seedcake|cake (generic term)
+seed catalog|1
+(noun)|seed catalogue|catalog (generic term)|catalogue (generic term)
+seed catalogue|1
+(noun)|seed catalog|catalog (generic term)|catalogue (generic term)
+seed coat|1
+(noun)|testa|episperm|reproductive structure (generic term)
+seed corn|1
+(noun)|seed grain|seed stock (generic term)
+seed fern|1
+(noun)|pteridosperm|gymnosperm (generic term)
+seed grain|1
+(noun)|seed corn|seed stock (generic term)
+seed lac|1
+(noun)|lac (generic term)
+seed leaf|1
+(noun)|cotyledon|cataphyll (generic term)
+seed money|1
+(noun)|capital (generic term)|working capital (generic term)
+seed oyster|1
+(noun)|oyster (generic term)
+seed pearl|1
+(noun)|pearl (generic term)
+seed plant|1
+(noun)|spermatophyte|phanerogam|vascular plant (generic term)|tracheophyte (generic term)
+seed shrimp|1
+(noun)|mussel shrimp|ostracod|crustacean (generic term)
+seed stock|1
+(noun)|store (generic term)|stock (generic term)|fund (generic term)
+seed vessel|1
+(noun)|pericarp|covering (generic term)|natural covering (generic term)|cover (generic term)
+seed weevil|1
+(noun)|seed beetle|weevil (generic term)
+seedbed|1
+(noun)|bed (generic term)
+seedcake|1
+(noun)|seed cake|cake (generic term)
+seedcase|1
+(noun)|pod|cod|husk (generic term)
+seeded|4
+(adj)|unseeded (antonym)
+(adj)|seedless (similar term)
+(adj)|seedy (similar term)
+(adj)|sown|planted (similar term)
+seeded player|1
+(noun)|seed|player (generic term)|participant (generic term)
+seeded raisin|1
+(noun)|raisin (generic term)
+seeder|3
+(noun)|cloud seeder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|mechanical device (generic term)
+(noun)|kitchen utensil (generic term)
+seediness|1
+(noun)|shabbiness|manginess|sleaziness|inelegance (generic term)
+seedless|1
+(adj)|seeded (similar term)|stoneless (similar term)|seedy (antonym)
+seedless raisin|1
+(noun)|sultana|raisin (generic term)
+seedlike|1
+(adj)|seed-like|vegetable (similar term)
+seedling|1
+(noun)|spermatophyte (generic term)|phanerogam (generic term)|seed plant (generic term)
+seedman|1
+(noun)|seedsman|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+seedpod|1
+(noun)|pod|fruit (generic term)
+seedsman|1
+(noun)|seedman|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+seedtime|2
+(noun)|phase (generic term)|stage (generic term)
+(noun)|season (generic term)
+seedy|4
+(adj)|black-seeded (similar term)|multi-seeded (similar term)|several-seeded (similar term)|seeded (similar term)|seeded (similar term)|single-seeded (similar term)|one-seeded (similar term)|one-seed (similar term)|small-seeded (similar term)|three-seeded (similar term)|white-seeded (similar term)|seedless (antonym)
+(adj)|scruffy|worn (similar term)
+(adj)|ailing|indisposed|peaked|poorly|sickly|unwell|under the weather|ill (similar term)|sick (similar term)
+(adj)|seamy|sleazy|sordid|squalid|disreputable (similar term)
+seeger|2
+(noun)|Seeger|Pete Seeger|Peter Seeger|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)
+(noun)|Seeger|Alan Seeger|poet (generic term)
+seeing|3
+(adj)|sighted (similar term)
+(noun)|visual perception|beholding|perception (generic term)
+(noun)|eyesight|sightedness|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+seeing-eye dog|1
+(noun)|guide dog|working dog (generic term)
+seeing red|1
+(noun)|huff|miff|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+seek|6
+(noun)|movement (generic term)|motion (generic term)
+(verb)|desire (generic term)|want (generic term)
+(verb)|search|look for
+(verb)|try|attempt|essay|assay|act (generic term)|move (generic term)|try out (related term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|request (generic term)
+seek out|1
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+seek time|1
+(noun)|time interval (generic term)|interval (generic term)
+seeker|2
+(noun)|searcher|quester|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|projectile (generic term)|missile (generic term)
+seeking|2
+(noun)|quest|search (generic term)|hunt (generic term)|hunting (generic term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+seel|1
+(verb)|blind (generic term)
+seeland|1
+(noun)|Zealand|Seeland|Sjaelland|island (generic term)
+seem|4
+(verb)|look|appear|be (generic term)
+(verb)|appear|be (generic term)
+(verb)|be (generic term)
+(verb)|appear (generic term)|seem (generic term)
+seeming|1
+(adj)|apparent|ostensible|superficial (similar term)
+seemingly|1
+(adv)|apparently|ostensibly|on the face of it
+seemliness|1
+(noun)|grace|propriety (generic term)|properness (generic term)|correctitude (generic term)|unseemliness (antonym)
+seemly|1
+(adj)|becoming|comely|comme il faut|decent|decorous|proper (similar term)
+seep|1
+(verb)|ooze|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+seepage|1
+(noun)|ooze|oozing|flow (generic term)|flowing (generic term)
+seeping|1
+(adj)|oozing|oozy|leaky (similar term)
+seer|3
+(noun)|visionary|illusionist|intellectual (generic term)|intellect (generic term)
+(noun)|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|prophet|prophesier|oracle|vaticinator|diviner (generic term)
+seersucker|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+seesaw|4
+(noun)|teeter|teeter-totter|teetertotter|teeterboard|tilting board|dandle board|plaything (generic term)|toy (generic term)
+(verb)|teeter-totter|teetertotter|play (generic term)
+(verb)|move (generic term)
+(verb)|teeter|totter|move (generic term)
+seethe|4
+(verb)|hum|buzz|be (generic term)
+(verb)|boil|be (generic term)
+(verb)|foam (generic term)|froth (generic term)|fizz (generic term)|effervesce (generic term)|sparkle (generic term)
+(verb)|roll|churn (generic term)|boil (generic term)|moil (generic term)|roil (generic term)
+seething|1
+(adj)|agitated (similar term)
+segal|1
+(noun)|Segal|George Segal|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+segment|4
+(noun)|section|part (generic term)|portion (generic term)
+(noun)|part (generic term)|piece (generic term)
+(verb)|section|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|separate (generic term)|divide (generic term)|part (generic term)
+segmental|2
+(adj)|divided (similar term)
+(adj)|metameric|segmented|divided (similar term)
+segmental arch|1
+(noun)|arch (generic term)
+segmentation|2
+(noun)|cleavage|cell division (generic term)|cellular division (generic term)
+(noun)|division|partition|partitioning|sectionalization|sectionalisation|separation (generic term)
+segmentation cavity|1
+(noun)|blastocoel|blastocoele|blastocele|cleavage cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+segmented|1
+(adj)|metameric|segmental|divided (similar term)
+segmented worm|1
+(noun)|annelid|annelid worm|worm (generic term)
+segno|1
+(noun)|musical notation (generic term)
+sego lily|1
+(noun)|Calochortus nuttallii|liliaceous plant (generic term)
+segovia|1
+(noun)|Segovia|Andres Segovia|guitarist (generic term)|guitar player (generic term)|composer (generic term)
+segregate|4
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|discriminate (generic term)|separate (generic term)|single out (generic term)|desegregate (antonym)
+(verb)|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|isolate (generic term)|insulate (generic term)
+segregated|1
+(adj)|unintegrated|isolated (similar term)|quarantined (similar term)|separate (similar term)|sequestered (similar term)|white (similar term)|lily-white (similar term)|divided (related term)|separate (related term)|integrated (antonym)
+segregation|3
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|separatism|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+(noun)|sequestration|separation (generic term)|integration (antonym)
+segregationism|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+segregationist|1
+(noun)|segregator|bigot (generic term)
+segregator|1
+(noun)|segregationist|bigot (generic term)
+segue|2
+(noun)|passage (generic term)|transition (generic term)
+(verb)|continue (generic term)|go on (generic term)|carry on (generic term)|proceed (generic term)
+segway|1
+(noun)|Segway|Segway Human Transporter|Segway HT|electrical device (generic term)
+segway ht|1
+(noun)|Segway|Segway Human Transporter|Segway HT|electrical device (generic term)
+segway human transporter|1
+(noun)|Segway|Segway Human Transporter|Segway HT|electrical device (generic term)
+sei whale|1
+(noun)|Balaenoptera borealis|rorqual (generic term)|razorback (generic term)
+seiche|1
+(noun)|wave (generic term)|undulation (generic term)
+seidel|1
+(noun)|glass (generic term)|drinking glass (generic term)
+seidlitz powder|1
+(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+seidlitz powders|1
+(noun)|Seidlitz powder|Seidlitz powders|Rochelle powder|purgative (generic term)|cathartic (generic term)|physic (generic term)|aperient (generic term)
+seif dune|1
+(noun)|dune (generic term)|sand dune (generic term)
+seigneur|1
+(noun)|feudal lord|seignior|overlord (generic term)|master (generic term)|lord (generic term)
+seigneur de bayard|1
+(noun)|Bayard|Seigneur de Bayard|Chevalier de Bayard|Pierre Terrail|Pierre de Terrail|soldier (generic term)
+seigneury|2
+(noun)|seigniory|signory|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|seigniory|feudal lordship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+seignior|1
+(noun)|feudal lord|seigneur|overlord (generic term)|master (generic term)|lord (generic term)
+seigniorage|1
+(noun)|fee (generic term)
+seigniory|2
+(noun)|seigneury|signory|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+(noun)|seigneury|feudal lordship|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+seiji ozawa|1
+(noun)|Ozawa|Seiji Ozawa|conductor (generic term)|music director (generic term)|director (generic term)
+seine|3
+(noun)|Seine|Seine River|river (generic term)
+(noun)|fishnet (generic term)|fishing net (generic term)
+(verb)|fish (generic term)
+seine river|1
+(noun)|Seine|Seine River|river (generic term)
+seism|1
+(noun)|earthquake|quake|temblor|geological phenomenon (generic term)
+seismal|1
+(adj)|seismic|unstable (similar term)
+seismic|1
+(adj)|seismal|unstable (similar term)
+seismic disturbance|1
+(noun)|shock|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+seismogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+seismograph|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+seismography|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+seismologic|1
+(adj)|seismological|geophysics|geophysical science (related term)
+seismological|1
+(adj)|seismologic|geophysics|geophysical science (related term)
+seismologist|1
+(noun)|geophysicist (generic term)
+seismology|1
+(noun)|geophysics (generic term)|geophysical science (generic term)
+seismosaur|1
+(noun)|ground-shaker|dinosaur (generic term)
+seismosaurus|1
+(noun)|Seismosaurus|genus Seismosaurus|reptile genus (generic term)
+seiurus|1
+(noun)|Seiurus|genus Seiurus|bird genus (generic term)
+seiurus aurocapillus|1
+(noun)|ovenbird|Seiurus aurocapillus|New World warbler (generic term)|wood warbler (generic term)
+seize|8
+(verb)|prehend|clutch|take (generic term)|get hold of (generic term)
+(verb)|take (generic term)|get hold of (generic term)
+(verb)|appropriate|capture|conquer|assume (generic term)|usurp (generic term)|seize (generic term)|take over (generic term)|arrogate (generic term)
+(verb)|impound|attach|sequester|confiscate|take (generic term)
+(verb)|assume|usurp|take over|arrogate|take (generic term)
+(verb)|hook (generic term)
+(verb)|clutch|get hold of|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+(verb)|grab|intrigue (generic term)|fascinate (generic term)
+seize on|1
+(verb)|take up|latch on|fasten on|hook on|espouse (generic term)|embrace (generic term)|adopt (generic term)|sweep up (generic term)
+seize with teeth|1
+(verb)|bite|grip (generic term)|bite off (related term)
+seized|1
+(adj)|appropriated|condemned|confiscate|confiscated|taken over|taken (similar term)
+seizer|1
+(noun)|shanghaier|kidnapper (generic term)|kidnaper (generic term)|abductor (generic term)|snatcher (generic term)
+seizing|2
+(noun)|small stuff (generic term)
+(noun)|grasping|taking hold|prehension|control (generic term)
+seizure|4
+(noun)|ictus|raptus|attack (generic term)
+(noun)|capture|gaining control|acquiring (generic term)|getting (generic term)
+(noun)|capture|felony (generic term)
+(noun)|appropriation (generic term)
+seizure-alert dog|1
+(noun)|working dog (generic term)
+sekhet|1
+(noun)|Sekhet|Eye of Ra|Egyptian deity (generic term)
+selachian|1
+(noun)|elasmobranch|cartilaginous fish (generic term)|chondrichthian (generic term)
+selachii|1
+(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class (generic term)
+selaginella|1
+(noun)|Selaginella|genus Selaginella|fern genus (generic term)
+selaginella apoda|1
+(noun)|meadow spikemoss|basket spikemoss|Selaginella apoda|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+selaginella eatonii|1
+(noun)|florida selaginella|Selaginella eatonii|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+selaginella eremophila|1
+(noun)|desert selaginella|Selaginella eremophila|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+selaginella lepidophylla|1
+(noun)|resurrection plant|rose of Jericho|Selaginella lepidophylla|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+selaginella rupestris|1
+(noun)|rock spikemoss|dwarf lycopod|Selaginella rupestris|spikemoss (generic term)|spike moss (generic term)|little club moss (generic term)
+selaginellaceae|1
+(noun)|Selaginellaceae|family Selaginellaceae|fern family (generic term)
+selaginellales|1
+(noun)|Selaginellales|order Selaginellales|plant order (generic term)
+selar|1
+(noun)|Selar|genus Selar|fish genus (generic term)
+selar crumenophthalmus|1
+(noun)|bigeye scad|big-eyed scad|goggle-eye|Selar crumenophthalmus|scad (generic term)
+selcraig|1
+(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor (generic term)|crewman (generic term)
+seldom|1
+(adv)|rarely|often (antonym)
+select|3
+(adj)|choice|prime|prize|quality|superior (similar term)
+(adj)|blue-ribbon|superior (similar term)
+(verb)|choose|take|pick out|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+select committee|1
+(noun)|committee (generic term)|commission (generic term)
+selected|1
+(adj)|chosen (similar term)|designated (similar term)|elect (similar term)|elite (similar term)|hand-picked (similar term)|unselected (antonym)
+selection|5
+(noun)|choice|option|pick|action (generic term)
+(noun)|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+(noun)|choice|pick|decision making (generic term)|deciding (generic term)
+(noun)|survival|survival of the fittest|natural selection|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|excerpt|excerption|extract|passage (generic term)
+selective|2
+(adj)|discriminating (similar term)
+(adj)|exclusive (similar term)
+selective-serotonin reuptake inhibitor|1
+(noun)|SSRI|antidepressant (generic term)|antidepressant drug (generic term)
+selective amnesia|1
+(noun)|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+selective information|1
+(noun)|information|entropy|information measure (generic term)
+selective jamming|1
+(noun)|spot jamming|jamming (generic term)|electronic jamming (generic term)|jam (generic term)
+selective lipectomy|1
+(noun)|lipectomy|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+selective service|2
+(noun)|Selective Service|Selective Service System|SSS|independent agency (generic term)
+(noun)|conscription|muster|draft|mobilization (generic term)|mobilisation (generic term)|militarization (generic term)|militarisation (generic term)
+selective service system|1
+(noun)|Selective Service|Selective Service System|SSS|independent agency (generic term)
+selectively|1
+(adv)|by selection
+selectivity|1
+(noun)|property (generic term)
+selectman|1
+(noun)|elected official (generic term)
+selector|2
+(noun)|picker|chooser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|selector switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+selector switch|1
+(noun)|selector|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+selectwoman|1
+(noun)|elected official (generic term)
+selenarctos|1
+(noun)|Selenarctos|genus Selenarctos|mammal genus (generic term)
+selenarctos thibetanus|1
+(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear (generic term)
+selene|2
+(noun)|Selene|Greek deity (generic term)
+(noun)|Selene|genus Selene|fish genus (generic term)
+selene setapinnis|1
+(noun)|moonfish|Atlantic moonfish|horsefish|horsehead|horse-head|dollarfish|Selene setapinnis|carangid fish (generic term)|carangid (generic term)
+selene vomer|1
+(noun)|lookdown|lookdown fish|Selene vomer|moonfish (generic term)|Atlantic moonfish (generic term)|horsefish (generic term)|horsehead (generic term)|horse-head (generic term)|dollarfish (generic term)|Selene setapinnis (generic term)
+selenic acid|1
+(noun)|acid (generic term)
+selenicereus|1
+(noun)|Selenicereus|genus Selenicereus|caryophylloid dicot genus (generic term)
+selenicereus grandiflorus|1
+(noun)|queen of the night|Selenicereus grandiflorus|night-blooming cereus (generic term)
+selenipedium|1
+(noun)|Selenipedium|genus Selenipedium|monocot genus (generic term)|liliopsid genus (generic term)
+selenium|1
+(noun)|Se|atomic number 34|chemical element (generic term)|element (generic term)|antioxidant (generic term)
+selenium cell|1
+(noun)|photoelectric cell (generic term)|photoconductive cell (generic term)|photocell (generic term)|electric eye (generic term)|magic eye (generic term)
+selenolatry|1
+(noun)|moon-worship|worship (generic term)
+selenology|1
+(noun)|astronomy (generic term)|uranology (generic term)
+seles|1
+(noun)|Seles|Monica Seles|tennis player (generic term)
+seleucus|1
+(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general (generic term)|full general (generic term)|Macedonian (generic term)
+seleucus i|1
+(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general (generic term)|full general (generic term)|Macedonian (generic term)
+seleucus i nicator|1
+(noun)|Seleucus|Seleucus I|Seleucus I Nicator|general (generic term)|full general (generic term)|Macedonian (generic term)
+self|3
+(adj)|person|individual|someone|somebody|mortal|soul (related term)
+(noun)|ego|consciousness (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+self-abasement|1
+(noun)|penance|self-mortification|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+self-abnegating|1
+(adj)|renunciant|renunciative|self-denying|nonindulgent (similar term)|strict (similar term)
+self-abnegation|1
+(noun)|abnegation|denial|self-denial|self-renunciation|selflessness (generic term)|self-sacrifice (generic term)|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+self-absorbed|1
+(adj)|self-involved|egoistic (similar term)|egoistical (similar term)|egocentric (similar term)|self-centered (similar term)|self-centred (similar term)
+self-absorption|1
+(noun)|preoccupation (generic term)
+self-abuse|1
+(noun)|self-stimulation|masturbation (generic term)|onanism (generic term)
+self-accusation|1
+(noun)|self-condemnation|confession (generic term)|accusation (generic term)|accusal (generic term)
+self-acting|1
+(adj)|self-activating|self-moving|self-regulating|automatic (similar term)
+self-activating|1
+(adj)|self-acting|self-moving|self-regulating|automatic (similar term)
+self-adapting program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+self-addressed|1
+(adj)|addressed (similar term)
+self-aggrandisement|1
+(noun)|self-aggrandizement|ego trip|aggrandizement (generic term)|aggrandisement (generic term)|elevation (generic term)
+self-aggrandising|2
+(adj)|self-aggrandizing|aggrandizement|aggrandisement|elevation (related term)
+(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandizing|proud (similar term)
+self-aggrandizement|1
+(noun)|self-aggrandisement|ego trip|aggrandizement (generic term)|aggrandisement (generic term)|elevation (generic term)
+self-aggrandizing|2
+(adj)|self-aggrandising|aggrandizement|aggrandisement|elevation (related term)
+(adj)|boastful|braggart|bragging|braggy|big|cock-a-hoop|crowing|self-aggrandising|proud (similar term)
+self-analysis|2
+(noun)|soul-searching|introspection (generic term)|self-contemplation (generic term)|self-examination (generic term)
+(noun)|psychotherapy (generic term)
+self-annihilation|1
+(noun)|suicide|self-destruction|killing (generic term)|kill (generic term)|putting to death (generic term)
+self-appointed|1
+(adj)|unauthorized (similar term)|unauthorised (similar term)
+self-asserting|1
+(adj)|assertive|self-assertive|aggressive (similar term)
+self-assertion|2
+(noun)|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(noun)|aggression (generic term)
+self-assertive|2
+(adj)|assertive|self-asserting|aggressive (similar term)
+(adj)|bumptious|forward (similar term)
+self-assertiveness|1
+(noun)|assertiveness|positivity (generic term)|positiveness (generic term)|positivism (generic term)
+self-assurance|1
+(noun)|assurance|confidence|self-confidence|authority|sureness|certainty (generic term)
+self-assured|1
+(adj)|self-confident|confident (similar term)
+self-aware|1
+(adj)|self-conscious|conscious (similar term)
+self-awareness|1
+(noun)|awareness (generic term)|consciousness (generic term)|cognizance (generic term)|cognisance (generic term)|knowingness (generic term)
+self-balancing|1
+(adj)|balanced (similar term)
+self-centered|1
+(adj)|egoistic|egoistical|egocentric|self-centred|self-absorbed (similar term)|self-involved (similar term)|selfish (related term)|altruistic (antonym)
+self-centeredness|1
+(noun)|egoism|egocentrism|self-interest|self-concern|trait (generic term)|altruism (antonym)
+self-centred|1
+(adj)|egoistic|egoistical|egocentric|self-centered|self-absorbed (similar term)|self-involved (similar term)|selfish (related term)|altruistic (antonym)
+self-collected|1
+(adj)|collected|equanimous|poised|self-contained|self-possessed|composed (similar term)
+self-colored|1
+(adj)|solid|self-coloured|homogeneous (similar term)|homogenous (similar term)
+self-coloured|1
+(adj)|solid|self-colored|homogeneous (similar term)|homogenous (similar term)
+self-command|1
+(noun)|self-control|self-possession|possession|willpower|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+self-complacency|1
+(noun)|complacency|complacence|self-satisfaction|satisfaction (generic term)
+self-complacent|1
+(adj)|complacent|self-satisfied|contented (similar term)|content (similar term)
+self-conceited|1
+(adj)|conceited|egotistic|egotistical|swollen|swollen-headed|vain|proud (similar term)
+self-conceitedly|1
+(adv)|conceitedly|with conceit
+self-concern|1
+(noun)|egoism|egocentrism|self-interest|self-centeredness|trait (generic term)|altruism (antonym)
+self-condemnation|1
+(noun)|self-accusation|confession (generic term)|accusation (generic term)|accusal (generic term)
+self-confessed|1
+(adj)|acknowledged (similar term)
+self-confidence|1
+(noun)|assurance|self-assurance|confidence|authority|sureness|certainty (generic term)
+self-confident|1
+(adj)|self-assured|confident (similar term)
+self-conscious|2
+(adj)|self-aware|conscious (similar term)
+(adj)|uncomfortable (similar term)
+self-consciously|1
+(adv)|unselfconsciously (antonym)
+self-consciousness|2
+(noun)|uneasiness|uncomfortableness|embarrassment (generic term)
+(noun)|self-awareness (generic term)|unselfconsciousness (antonym)
+self-consistent|1
+(adj)|consistent (similar term)
+self-constituted|1
+(adj)|self-established|established (similar term)|constituted (similar term)
+self-contained|2
+(adj)|complete (similar term)
+(adj)|collected|equanimous|poised|self-collected|self-possessed|composed (similar term)
+self-contemplation|1
+(noun)|introspection|self-examination|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+self-contradiction|1
+(noun)|contradiction (generic term)
+self-contradictory|2
+(adj)|paradoxical|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|at odds|conflicting|contradictory|inconsistent (similar term)
+self-control|2
+(noun)|self-denial|self-discipline|control (generic term)
+(noun)|self-possession|possession|willpower|self-command|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+self-criticism|1
+(noun)|criticism (generic term)|critique (generic term)
+self-cultivation|1
+(noun)|self-education|education (generic term)
+self-deceit|1
+(noun)|self-deception|misconception (generic term)
+self-deception|1
+(noun)|self-deceit|misconception (generic term)
+self-defeating|1
+(adj)|unsuccessful (similar term)
+self-defence|1
+(noun)|self-defense|self-protection|protection (generic term)
+self-defense|1
+(noun)|self-defence|self-protection|protection (generic term)
+self-denial|3
+(noun)|self-discipline|discipline (generic term)
+(noun)|self-discipline|self-control|control (generic term)
+(noun)|abnegation|self-abnegation|denial|self-renunciation|selflessness (generic term)|self-sacrifice (generic term)|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+self-denying|2
+(adj)|self-giving|self-sacrificing|unselfish (similar term)
+(adj)|renunciant|renunciative|self-abnegating|nonindulgent (similar term)|strict (similar term)
+self-deprecating|1
+(adj)|apologetic (similar term)|excusatory (similar term)
+self-depreciation|1
+(noun)|humility (generic term)|humbleness (generic term)
+self-destroy|1
+(verb)|self-destruct|destroy (generic term)|destruct (generic term)
+self-destruct|1
+(verb)|self-destroy|destroy (generic term)|destruct (generic term)
+self-destruction|2
+(noun)|suicide|self-annihilation|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|destruction (generic term)|devastation (generic term)
+self-destructive|1
+(adj)|suicidal|dangerous (similar term)|unsafe (similar term)
+self-determination|2
+(noun)|self-government|self-rule|autonomy (generic term)|liberty (generic term)
+(noun)|free will (generic term)|discretion (generic term)
+self-digestion|1
+(noun)|autolysis|lysis (generic term)
+self-directed|1
+(adj)|autonomous|self-reliant|independent (similar term)
+self-direction|1
+(noun)|autonomy|self-reliance|self-sufficiency|independence (generic term)|independency (generic term)
+self-discipline|2
+(noun)|self-denial|discipline (generic term)
+(noun)|self-denial|self-control|control (generic term)
+self-disciplined|1
+(adj)|self-restraining|nonindulgent (similar term)|strict (similar term)
+self-discovery|1
+(noun)|discovery (generic term)|find (generic term)|uncovering (generic term)
+self-disgust|1
+(noun)|self-hatred|shame (generic term)
+self-distrust|1
+(noun)|diffidence|self-doubt|timidity (generic term)|timidness (generic term)|timorousness (generic term)|confidence (antonym)
+self-doubt|1
+(noun)|diffidence|self-distrust|timidity (generic term)|timidness (generic term)|timorousness (generic term)|confidence (antonym)
+self-drive|1
+(noun)|car rental|hire car|rent-a-car|u-drive|you-drive|lease (generic term)|rental (generic term)|letting (generic term)
+self-educated|1
+(adj)|educated (similar term)
+self-education|1
+(noun)|self-cultivation|education (generic term)
+self-effacement|1
+(noun)|effacement|withdrawal (generic term)
+self-effacing|1
+(adj)|reticent|retiring|unassertive (similar term)
+self-employed|1
+(adj)|freelance|salaried (antonym)
+self-employed person|1
+(noun)|freelance|independent|worker (generic term)
+self-enclosed|1
+(adj)|enclosed (similar term)
+self-established|1
+(adj)|self-constituted|established (similar term)|constituted (similar term)
+self-esteem|2
+(noun)|self-pride|pride (generic term)|pridefulness (generic term)
+(noun)|dignity|self-respect|self-regard|self-worth|pride (generic term)
+self-evident|1
+(adj)|axiomatic|taken for granted|obvious (similar term)
+self-evident truth|1
+(noun)|basic assumption|constatation|assumption (generic term)|supposition (generic term)|supposal (generic term)
+self-examination|1
+(noun)|introspection|self-contemplation|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+self-examining|1
+(adj)|introspective|introverted|extrospective (antonym)
+self-explanatory|1
+(adj)|obvious (similar term)
+self-expression|1
+(noun)|expressive style (generic term)|style (generic term)
+self-feeder|1
+(noun)|feeder|machine (generic term)
+self-fertilisation|1
+(noun)|self-fertilization|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)|cross-fertilization (antonym)
+self-fertilised|1
+(adj)|self-fertilized|self-pollinated|autogamous (similar term)|autogamic (similar term)
+self-fertilization|1
+(noun)|self-fertilisation|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)|cross-fertilization (antonym)
+self-fertilized|1
+(adj)|self-fertilised|self-pollinated|autogamous (similar term)|autogamic (similar term)
+self-flagellation|1
+(noun)|whipping (generic term)|tanning (generic term)|flogging (generic term)|lashing (generic term)|flagellation (generic term)|self-punishment (generic term)
+self-forgetful|1
+(adj)|unselfish (similar term)
+self-fulfillment|1
+(noun)|self-realization|self-realisation|fulfillment (generic term)|fulfilment (generic term)
+self-generated|2
+(adj)|spontaneous|impulsive (similar term)|unprompted (similar term)|intuitive (similar term)|natural (similar term)|instinctive (similar term)|induced (antonym)
+(adj)|self-produced|autogenous (similar term)|autogenic (similar term)
+self-giving|1
+(adj)|self-denying|self-sacrificing|unselfish (similar term)
+self-governing|1
+(adj)|autonomous|independent|sovereign|free (similar term)
+self-government|1
+(noun)|self-determination|self-rule|autonomy (generic term)|liberty (generic term)
+self-gratification|2
+(noun)|dissoluteness|incontinence|indiscipline (generic term)|undiscipline (generic term)
+(noun)|head trip|gratification (generic term)
+self-hatred|1
+(noun)|self-disgust|shame (generic term)
+self-heal|1
+(noun)|heal all|Prunella vulgaris|herb (generic term)|herbaceous plant (generic term)
+self-help|1
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+self-hypnosis|1
+(noun)|self-suggestion|autosuggestion|hypnosis (generic term)
+self-importance|2
+(noun)|ego|egotism|pride (generic term)|pridefulness (generic term)
+(noun)|egotism|swelled head|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+self-important|1
+(adj)|arrogant|chesty|proud (similar term)
+self-imposed|1
+(adj)|voluntary (similar term)
+self-improvement|1
+(noun)|self-reformation|improvement (generic term)
+self-incrimination|1
+(noun)|incrimination (generic term)|inculpation (generic term)|blame (generic term)
+self-induced|2
+(adj)|induction|inductance (related term)
+(adj)|autogenous (similar term)|autogenic (similar term)
+self-inductance|1
+(noun)|coefficient of self induction|coefficient (generic term)
+self-induction|1
+(noun)|induction (generic term)|inductance (generic term)
+self-indulgence|2
+(noun)|indulgence|indiscipline (generic term)|undiscipline (generic term)
+(noun)|intemperance|intemperateness|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+self-indulgent|1
+(adj)|indulgent (similar term)
+self-insurance|1
+(noun)|insurance (generic term)
+self-interest|2
+(noun)|opportunism|self-seeking|expedience|selfishness (generic term)
+(noun)|egoism|egocentrism|self-concern|self-centeredness|trait (generic term)|altruism (antonym)
+self-involved|1
+(adj)|self-absorbed|egoistic (similar term)|egoistical (similar term)|egocentric (similar term)|self-centered (similar term)|self-centred (similar term)
+self-justification|1
+(noun)|excuse|alibi|exculpation|defense (generic term)|defence (generic term)|vindication (generic term)
+self-knowledge|1
+(noun)|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+self-limited|1
+(adj)|end|ending (related term)
+self-loader|1
+(noun)|autoloader|firearm (generic term)|piece (generic term)|small-arm (generic term)
+self-loading|1
+(adj)|autoloading|semiautomatic|automatic (similar term)
+self-locking|1
+(adj)|automatic (similar term)
+self-love|2
+(noun)|amour propre|conceit|vanity|pride (generic term)|pridefulness (generic term)
+(noun)|narcism|narcissism|egoism (generic term)|egocentrism (generic term)|self-interest (generic term)|self-concern (generic term)|self-centeredness (generic term)
+self-loving|1
+(adj)|egotistic|egotistical|narcissistic|selfish (similar term)
+self-luminous|1
+(adj)|bright (similar term)
+self-made|1
+(adj)|successful (similar term)
+self-mortification|1
+(noun)|penance|self-abasement|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+self-moving|1
+(adj)|self-acting|self-activating|self-regulating|automatic (similar term)
+self-opinionated|1
+(adj)|opinionated|opinionative|narrow-minded (similar term)|narrow (similar term)
+self-organisation|1
+(noun)|self-organization|organization (generic term)|organisation (generic term)
+self-organization|1
+(noun)|self-organisation|organization (generic term)|organisation (generic term)
+self-pity|1
+(noun)|sorrow (generic term)
+self-pollinated|1
+(adj)|self-fertilized|self-fertilised|autogamous (similar term)|autogamic (similar term)
+self-pollinating|1
+(adj)|pollination|pollenation (related term)
+self-pollination|1
+(noun)|pollination (generic term)|pollenation (generic term)|cross-pollination (antonym)
+self-portrait|1
+(noun)|portrait (generic term)
+self-possessed|1
+(adj)|collected|equanimous|poised|self-collected|self-contained|composed (similar term)
+self-possession|1
+(noun)|self-control|possession|willpower|self-command|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+self-praise|1
+(noun)|boast|boasting|jactitation|speech act (generic term)
+self-preservation|1
+(noun)|preservation (generic term)|saving (generic term)
+self-pride|1
+(noun)|self-esteem|pride (generic term)|pridefulness (generic term)
+self-produced|1
+(adj)|self-generated|autogenous (similar term)|autogenic (similar term)
+self-propelled|2
+(adj)|automotive|self-propelling|moving (similar term)
+(adj)|self-propelling|dynamic (similar term)|dynamical (similar term)
+self-propelled vehicle|1
+(noun)|wheeled vehicle (generic term)
+self-propelling|2
+(adj)|automotive|self-propelled|moving (similar term)
+(adj)|self-propelled|dynamic (similar term)|dynamical (similar term)
+self-protection|1
+(noun)|self-defense|self-defence|protection (generic term)
+self-punishment|1
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+self-raising flour|1
+(noun)|self-rising flour|mix (generic term)|premix (generic term)
+self-realisation|1
+(noun)|self-fulfillment|self-realization|fulfillment (generic term)|fulfilment (generic term)
+self-realization|1
+(noun)|self-fulfillment|self-realisation|fulfillment (generic term)|fulfilment (generic term)
+self-referent|1
+(adj)|reflexive|backward (similar term)
+self-reformation|1
+(noun)|self-improvement|improvement (generic term)
+self-regard|1
+(noun)|dignity|self-respect|self-esteem|self-worth|pride (generic term)
+self-registering thermometer|1
+(noun)|thermometer (generic term)
+self-regulating|1
+(adj)|self-acting|self-activating|self-moving|automatic (similar term)
+self-reliance|1
+(noun)|autonomy|self-direction|self-sufficiency|independence (generic term)|independency (generic term)
+self-reliant|1
+(adj)|autonomous|self-directed|independent (similar term)
+self-renewal|1
+(noun)|renewal (generic term)
+self-renewing|1
+(adj)|renewal (related term)
+self-renunciation|1
+(noun)|abnegation|self-abnegation|denial|self-denial|selflessness (generic term)|self-sacrifice (generic term)|renunciation (generic term)|forgoing (generic term)|forswearing (generic term)
+self-report inventory|1
+(noun)|self-report personality inventory|personality inventory (generic term)|personality assessment (generic term)
+self-report personality inventory|1
+(noun)|self-report inventory|personality inventory (generic term)|personality assessment (generic term)
+self-reproach|2
+(noun)|compunction|remorse|sorrow (generic term)|regret (generic term)|rue (generic term)|ruefulness (generic term)
+(noun)|self-reproof|reproach (generic term)
+self-reproof|1
+(noun)|self-reproach|reproach (generic term)
+self-respect|1
+(noun)|dignity|self-esteem|self-regard|self-worth|pride (generic term)
+self-respectful|1
+(adj)|dignified|self-respecting|proud (similar term)
+self-respecting|1
+(adj)|dignified|self-respectful|proud (similar term)
+self-restraining|1
+(adj)|self-disciplined|nonindulgent (similar term)|strict (similar term)
+self-restraint|1
+(noun)|temperateness|restraint (generic term)|control (generic term)
+self-righteous|1
+(adj)|holier-than-thou|pietistic|pietistical|pharisaic|pharisaical|sanctimonious|pious (similar term)
+self-righteously|1
+(adv)|sanctimoniously
+self-rising flour|1
+(noun)|self-raising flour|mix (generic term)|premix (generic term)
+self-rule|1
+(noun)|self-government|self-determination|autonomy (generic term)|liberty (generic term)
+self-sacrifice|1
+(noun)|selflessness|cooperation (generic term)
+self-sacrificing|1
+(adj)|self-denying|self-giving|unselfish (similar term)
+self-satisfaction|1
+(noun)|complacency|complacence|self-complacency|satisfaction (generic term)
+self-satisfied|2
+(adj)|smug|contented (similar term)|content (similar term)
+(adj)|complacent|self-complacent|contented (similar term)|content (similar term)
+self-sealing|2
+(adj)|punctureless (similar term)
+(adj)|adhesive (similar term)
+self-seeded|1
+(adj)|self-sown|self-sowed|planted (similar term)
+self-seeker|1
+(noun)|opportunist|selfish person (generic term)
+self-seeking|2
+(adj)|self-serving|selfish (similar term)
+(noun)|opportunism|self-interest|expedience|selfishness (generic term)
+self-service|2
+(adj)|service (related term)
+(noun)|service (generic term)
+self-serving|1
+(adj)|self-seeking|selfish (similar term)
+self-sowed|1
+(adj)|self-seeded|self-sown|planted (similar term)
+self-sown|1
+(adj)|self-seeded|self-sowed|planted (similar term)
+self-starter|2
+(noun)|powerhouse (generic term)|human dynamo (generic term)|ball of fire (generic term)|fireball (generic term)
+(noun)|starter (generic term)|starter motor (generic term)|starting motor (generic term)
+self-stimulation|1
+(noun)|self-abuse|masturbation (generic term)|onanism (generic term)
+self-styled|1
+(adj)|soi-disant|questionable (similar term)
+self-sufficiency|1
+(noun)|autonomy|self-direction|self-reliance|independence (generic term)|independency (generic term)
+self-sufficient|1
+(adj)|self-sufficing|self-sustaining|independent (similar term)
+self-sufficing|1
+(adj)|self-sufficient|self-sustaining|independent (similar term)
+self-suggestion|1
+(noun)|self-hypnosis|autosuggestion|hypnosis (generic term)
+self-supporting|1
+(adj)|independent (similar term)
+self-sustained|1
+(adj)|unfueled (similar term)
+self-sustaining|1
+(adj)|self-sufficient|self-sufficing|independent (similar term)
+self-taught art|1
+(noun)|outsider art|vernacular art|naive art|primitive art|genre (generic term)
+self-torment|1
+(noun)|self-torture|distress (generic term)|hurt (generic term)|suffering (generic term)
+self-torture|1
+(noun)|self-torment|distress (generic term)|hurt (generic term)|suffering (generic term)
+self-whispered|1
+(adj)|inward (similar term)
+self-will|2
+(noun)|stubbornness|bullheadedness|obstinacy|obstinance|pigheadedness|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(noun)|self-control|self-possession|possession|willpower|self-command|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+self-willed|1
+(adj)|froward|headstrong|willful|wilful|disobedient (similar term)
+self-winding|1
+(adj)|automatic (similar term)
+self-worship|1
+(noun)|idiolatry|autolatry|worship (generic term)
+self-worth|1
+(noun)|dignity|self-respect|self-esteem|self-regard|pride (generic term)
+self acceptance|1
+(noun)|toleration (generic term)|acceptance (generic term)|sufferance (generic term)
+selfish|1
+(adj)|egotistic (similar term)|egotistical (similar term)|narcissistic (similar term)|self-loving (similar term)|self-serving (similar term)|self-seeking (similar term)|egoistic (related term)|egoistical (related term)|egocentric (related term)|self-centered (related term)|self-centred (related term)|inconsiderate (related term)|stingy (related term)|ungenerous (related term)|unselfish (antonym)
+selfish person|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+selfishly|1
+(adv)|egotistically|unselfishly (antonym)
+selfishness|1
+(noun)|stinginess (generic term)|unselfishness (antonym)
+selfless|1
+(adj)|altruistic|unselfish (related term)|egoistic (antonym)
+selflessly|1
+(adv)|altruistically
+selflessness|2
+(noun)|altruism|unselfishness (generic term)|egoism (antonym)
+(noun)|self-sacrifice|cooperation (generic term)
+selfsame|1
+(adj)|identical|very|same (similar term)
+selfsameness|1
+(noun)|identity (generic term)|identicalness (generic term)|indistinguishability (generic term)
+seljuk|2
+(adj)|Seljuk|dynasty (related term)
+(noun)|Seljuk|dynasty (generic term)
+selkirk|1
+(noun)|Selkirk|Selcraig|Alexander Selkirk|Alexander Selcraig|sailor (generic term)|crewman (generic term)
+selkirk mountains|1
+(noun)|Selkirk Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+selkup|2
+(noun)|Selkup|Ostyak-Samoyed|Russian (generic term)
+(noun)|Selkup|Ostyak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+sell|7
+(noun)|sale (generic term)
+(verb)|exchange (generic term)|change (generic term)|interchange (generic term)|buy (antonym)
+(verb)|deal|trade|transact (generic term)|deal out (related term)|trade (related term)
+(verb)|persuade (generic term)
+(verb)|surrender (generic term)|cede (generic term)|deliver (generic term)|give up (generic term)
+(verb)|betray|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|be (generic term)
+sell-by date|1
+(noun)|date (generic term)
+sell off|1
+(verb)|sell (generic term)
+sell out|2
+(verb)|sell up|liquidize|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|denounce (generic term)|tell on (generic term)|betray (generic term)|give away (generic term)|rat (generic term)|grass (generic term)|shit (generic term)|shop (generic term)|snitch (generic term)|stag (generic term)
+sell short|2
+(verb)|sell (generic term)
+(verb)|underestimate (generic term)|underrate (generic term)
+sell up|1
+(verb)|sell out|liquidize|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+sellable|1
+(adj)|marketable|merchantable|vendable|vendible|salable (similar term)|saleable (similar term)
+seller|1
+(noun)|marketer|vender|vendor|trafficker|merchant (generic term)|merchandiser (generic term)
+seller's market|1
+(noun)|sellers' market|market (generic term)|marketplace (generic term)
+sellers|1
+(noun)|Sellers|Peter Sellers|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sellers' market|1
+(noun)|seller's market|market (generic term)|marketplace (generic term)
+selling|1
+(noun)|merchandising|marketing|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+selling agent|1
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+selling point|1
+(noun)|point (generic term)
+selling price|1
+(noun)|asking price|price (generic term)|terms (generic term)|damage (generic term)
+selling race|1
+(noun)|horse race (generic term)
+selloff|1
+(noun)|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+sellotape|2
+(noun)|cellulose tape|Scotch tape|Sellotape|adhesive tape (generic term)
+(verb)|scotch tape|tape (generic term)
+sellout|1
+(noun)|treachery (generic term)|betrayal (generic term)|treason (generic term)|perfidy (generic term)
+selma|1
+(noun)|Selma|town (generic term)
+selsyn|1
+(noun)|synchro|system (generic term)
+seltzer|2
+(noun)|mineral water (generic term)
+(noun)|soda water|carbonated water|club soda|sparkling water|drinking water (generic term)
+selva|1
+(noun)|tropical rain forest|rain forest (generic term)|rainforest (generic term)
+selvage|2
+(noun)|selvedge|border (generic term)
+(noun)|selvedge|edge (generic term)|margin (generic term)
+selvedge|2
+(noun)|selvage|border (generic term)
+(noun)|selvage|edge (generic term)|margin (generic term)
+selznick|1
+(noun)|Selznick|David O. Selznick|David Oliver Selznick|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+semantic|1
+(adj)|linguistics (related term)
+semantic error|1
+(noun)|run-time error|runtime error|software error (generic term)|programming error (generic term)
+semantic memory|1
+(noun)|long-term memory (generic term)|LTM (generic term)
+semantic relation|1
+(noun)|linguistic relation (generic term)
+semantic role|1
+(noun)|participant role|grammatical category (generic term)|syntactic category (generic term)
+semanticist|1
+(noun)|semiotician|linguist (generic term)|linguistic scientist (generic term)
+semantics|1
+(noun)|linguistics (generic term)
+semaphore|3
+(noun)|apparatus (generic term)|setup (generic term)
+(verb)|sign (generic term)|signal (generic term)|signalize (generic term)|signalise (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+semaphore plant|1
+(noun)|telegraph plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub (generic term)|bush (generic term)
+semarang|1
+(noun)|Semarang|Samarang|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+semasiology|1
+(noun)|cognitive semantics|conceptual semantics|semantics (generic term)
+semblance|3
+(noun)|gloss|color|colour|appearance (generic term)|visual aspect (generic term)
+(noun)|illusion|appearance (generic term)
+(noun)|likeness|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+semen|1
+(noun)|seed|seminal fluid|ejaculate|cum|come|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+semester|2
+(noun)|school term (generic term)|academic term (generic term)|academic session (generic term)|session (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+semester hour|1
+(noun)|credit hour|credit (generic term)|course credit (generic term)
+semestral|1
+(adj)|semestrial|time period|period of time|period (related term)
+semestrial|1
+(adj)|semestral|time period|period of time|period (related term)
+semi|3
+(noun)|semifinal|match (generic term)
+(noun)|trailer truck|tractor trailer|trucking rig|rig|articulated lorry|truck (generic term)|motortruck (generic term)
+(noun)|semitrailer|trailer (generic term)
+semi-abstraction|1
+(noun)|painting (generic term)|picture (generic term)
+semi-automatise|1
+(verb)|semi-automatize|automatize (generic term)|automatise (generic term)|automate (generic term)
+semi-automatize|1
+(verb)|semi-automatise|automatize (generic term)|automatise (generic term)|automate (generic term)
+semi-climber|1
+(noun)|vine (generic term)
+semi-climbing|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+semi-detached house|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+semi-dry|1
+(adj)|dry (similar term)
+semi-erect|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+semi-evergreen|1
+(adj)|half-evergreen|evergreen (similar term)
+semi-formal|1
+(adj)|semiformal|black-tie|formal (similar term)
+semi-processed|1
+(adj)|processed (similar term)
+semi-prostrate|1
+(adj)|unerect (similar term)
+semi-sweet chocolate|1
+(noun)|bittersweet chocolate|dark chocolate|chocolate (generic term)
+semi-tuberous|1
+(adj)|stalk|stem (related term)
+semi-upright|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+semi-wild|1
+(adj)|wild (similar term)|untamed (similar term)
+semiabstract|1
+(adj)|nonrepresentational (similar term)
+semiannual|1
+(adj)|biannual|biyearly|time period|period of time|period (related term)
+semiannually|1
+(adv)|biyearly
+semiaquatic|2
+(adj)|amphibiotic|amphibious (similar term)
+(adj)|subaquatic|aquatic (similar term)
+semiarid|1
+(adj)|dry (similar term)
+semiautobiographical|1
+(adj)|biography|life|life story|life history (related term)
+semiautomatic|3
+(adj)|automatic (similar term)
+(adj)|autoloading|self-loading|automatic (similar term)
+(noun)|semiautomatic pistol|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)|semiautomatic firearm (generic term)
+semiautomatic firearm|1
+(noun)|autoloader (generic term)|self-loader (generic term)
+semiautomatic pistol|1
+(noun)|semiautomatic|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)|semiautomatic firearm (generic term)
+semibreve|1
+(noun)|whole note|note (generic term)|musical note (generic term)|tone (generic term)
+semicentenary|2
+(adj)|semicentennial|anniversary|day of remembrance (related term)
+(noun)|semicentennial|anniversary (generic term)|day of remembrance (generic term)
+semicentennial|2
+(adj)|semicentenary|anniversary|day of remembrance (related term)
+(noun)|semicentenary|anniversary (generic term)|day of remembrance (generic term)
+semicircle|1
+(noun)|hemicycle|plane figure (generic term)|two-dimensional figure (generic term)
+semicircular|1
+(adj)|curved (similar term)|curving (similar term)
+semicircular arch|1
+(noun)|Roman arch|round arch (generic term)
+semicircular canal|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+semicolon|1
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+semicoma|1
+(noun)|unconsciousness (generic term)
+semicomatose|1
+(adj)|unconscious (similar term)
+semiconducting|1
+(adj)|semiconductive|conductive (similar term)
+semiconducting material|1
+(noun)|semiconductor|conductor (generic term)
+semiconductive|1
+(adj)|semiconducting|conductive (similar term)
+semiconductor|2
+(noun)|semiconducting material|conductor (generic term)
+(noun)|semiconductor device|semiconductor unit|conductor (generic term)
+semiconductor device|1
+(noun)|semiconductor unit|semiconductor|conductor (generic term)
+semiconductor diode|1
+(noun)|diode|junction rectifier|crystal rectifier|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+semiconductor unit|1
+(noun)|semiconductor device|semiconductor|conductor (generic term)
+semiconscious|1
+(adj)|conscious (similar term)
+semiconsciousness|1
+(noun)|grogginess|stupor|stupefaction|unconsciousness (generic term)
+semidark|1
+(adj)|dark (similar term)
+semidarkness|1
+(noun)|dark (generic term)|darkness (generic term)
+semidesert|1
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+semidetached|1
+(adj)|detached (similar term)
+semidetached house|1
+(noun)|duplex house|duplex|house (generic term)
+semidiameter|1
+(noun)|radius (generic term)|r (generic term)
+semiempirical|1
+(adj)|empirical (similar term)|empiric (similar term)
+semiepiphyte|1
+(noun)|hemiepiphyte|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+semifinal|1
+(noun)|semi|match (generic term)
+semifinalist|1
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+semifluidity|1
+(noun)|thickness (generic term)
+semiformal|1
+(adj)|semi-formal|black-tie|formal (similar term)
+semigloss|1
+(noun)|paint (generic term)
+semihard|1
+(adj)|hard (similar term)
+semiliquid|1
+(adj)|liquid (similar term)
+semiliterate|2
+(adj)|educated (similar term)
+(adj)|illiterate (similar term)
+semilunar|1
+(adj)|crescent|crescent-shaped|lunate|rounded (similar term)
+semilunar bone|1
+(noun)|lunate bone|os lunatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+semilunar cartilage|1
+(noun)|meniscus|cartilage (generic term)|gristle (generic term)
+semilunar valve|1
+(noun)|heart valve (generic term)|cardiac valve (generic term)
+semimajor axis|1
+(noun)|axis (generic term)
+semiminor axis|1
+(noun)|axis (generic term)
+semimonthly|3
+(adj)|bimonthly|time unit|unit of time (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|bimonthly
+seminal|2
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+(adj)|germinal|originative|original (similar term)
+seminal duct|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+seminal fluid|1
+(noun)|semen|seed|ejaculate|cum|come|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+seminal vesicle|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+seminar|2
+(noun)|conference (generic term)
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+seminarian|1
+(noun)|seminarist|student (generic term)|pupil (generic term)|educatee (generic term)
+seminarist|1
+(noun)|seminarian|student (generic term)|pupil (generic term)|educatee (generic term)
+seminary|2
+(noun)|private school (generic term)
+(noun)|religious school (generic term)
+seminiferous|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+seminiferous tubule|1
+(noun)|tubule (generic term)
+seminole|2
+(noun)|Seminole|Muskhogean (generic term)|Muskogean (generic term)
+(noun)|Seminole|Muskhogean (generic term)|Muskhogean language (generic term)|Muskogean (generic term)|Muskogean language (generic term)
+seminole bread|1
+(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia (generic term)
+seminoma|1
+(noun)|testicular cancer|carcinoma (generic term)
+seminude|1
+(adj)|unclothed (similar term)
+semiofficial|1
+(adj)|official (similar term)
+semiology|1
+(noun)|semiotics|philosophical doctrine (generic term)|philosophical theory (generic term)
+semiopaque|1
+(adj)|opaque (similar term)
+semiotic|1
+(adj)|semiotical|philosophical doctrine|philosophical theory (related term)
+semiotical|1
+(adj)|semiotic|philosophical doctrine|philosophical theory (related term)
+semiotician|1
+(noun)|semanticist|linguist (generic term)|linguistic scientist (generic term)
+semiotics|1
+(noun)|semiology|philosophical doctrine (generic term)|philosophical theory (generic term)
+semiparasite|1
+(noun)|hemiparasite|parasitic plant (generic term)
+semiparasitic|1
+(adj)|parasitic plant (related term)
+semipermanent|1
+(adj)|long-run|long-term|long (similar term)
+semipermeable|1
+(adj)|permeable (similar term)
+semipermeable membrane|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+semipolitical|1
+(adj)|political (similar term)
+semiprecious|1
+(adj)|valuable (similar term)
+semiprivate|1
+(adj)|private (similar term)
+semipro|1
+(noun)|semiprofessional|professional (generic term)|pro (generic term)
+semiprofessional|1
+(noun)|semipro|professional (generic term)|pro (generic term)
+semipublic|1
+(adj)|public (similar term)
+semiquaver|1
+(noun)|sixteenth note|note (generic term)|musical note (generic term)|tone (generic term)
+semirigid|2
+(adj)|rigid (similar term)
+(adj)|inflexible (similar term)
+semiskilled|1
+(adj)|unskilled (similar term)
+semisoft|1
+(adj)|softish|soft (similar term)
+semisolid|1
+(adj)|solid (similar term)
+semisweet|1
+(adj)|bittersweet|tasty (similar term)
+semisynthetic|1
+(adj)|man-made|synthetic|artificial (similar term)|unreal (similar term)
+semite|2
+(adj)|Semite|Semitic|White|white person|Caucasian (related term)
+(noun)|Semite|White (generic term)|white person (generic term)|Caucasian (generic term)
+semiterrestrial|1
+(adj)|object|physical object (related term)
+semitic|3
+(adj)|Semitic|Afroasiatic|Afro-Asiatic|Afroasiatic language|Afrasian|Afrasian language|Hamito-Semitic (related term)
+(adj)|Semite|Semitic|White|white person|Caucasian (related term)
+(noun)|Semitic|Afroasiatic (generic term)|Afro-Asiatic (generic term)|Afroasiatic language (generic term)|Afrasian (generic term)|Afrasian language (generic term)|Hamito-Semitic (generic term)
+semitic-speaking|1
+(adj)|Semitic-speaking|communicative (similar term)|communicatory (similar term)
+semitic deity|1
+(noun)|Semitic deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+semitone|1
+(noun)|half step|interval (generic term)|musical interval (generic term)
+semitrailer|1
+(noun)|semi|trailer (generic term)
+semitrance|1
+(noun)|unconsciousness (generic term)
+semitransparency|1
+(noun)|translucence|translucency|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+semitransparent|1
+(adj)|translucent|clear (similar term)
+semitropic|1
+(adj)|subtropical|subtropic|semitropical|climatic zone (related term)
+semitropical|1
+(adj)|subtropical|subtropic|semitropic|climatic zone (related term)
+semitropics|1
+(noun)|subtropics|climatic zone (generic term)
+semivowel|1
+(noun)|glide|phone (generic term)|speech sound (generic term)|sound (generic term)
+semiweekly|3
+(adj)|biweekly|time period|period of time|period (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|biweekly
+semnopithecus entellus|1
+(noun)|entellus|hanuman|Presbytes entellus|Semnopithecus entellus|langur (generic term)
+semolina|1
+(noun)|flour (generic term)
+sempatch|1
+(noun)|Sempatch|battle of Sempatch|pitched battle (generic term)
+sempiternal|1
+(adj)|dateless|endless|infinite (similar term)
+sempiternity|1
+(noun)|perpetuity|permanence (generic term)|permanency (generic term)
+sempstress|1
+(noun)|dressmaker|modiste|needlewoman|seamstress|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+sen|1
+(noun)|fractional monetary unit (generic term)|subunit (generic term)
+senate|2
+(noun)|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+(noun)|United States Senate|U.S. Senate|US Senate|Senate|senate (generic term)
+senate campaign|1
+(noun)|senate race|political campaign (generic term)|campaign (generic term)|run (generic term)
+senate race|1
+(noun)|senate campaign|political campaign (generic term)|campaign (generic term)|run (generic term)
+senator|1
+(noun)|legislator (generic term)
+senatorial|1
+(adj)|legislator (related term)
+senatorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+send|8
+(verb)|direct|move (generic term)|displace (generic term)|send away (related term)|send away (related term)
+(verb)|send out|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|send back (related term)
+(verb)|mail|post|transfer (generic term)
+(verb)|transport|ship|move (generic term)|displace (generic term)|send on (related term)|send off (related term)
+(verb)|station|post|base|place|move (generic term)|displace (generic term)
+(verb)|get off|send off|transfer (generic term)
+(verb)|commit|institutionalize|institutionalise|charge|transfer (generic term)
+(verb)|air|broadcast|beam|transmit|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+send-off|2
+(noun)|bon voyage|farewell (generic term)|word of farewell (generic term)
+(noun)|kickoff|start-off|start (generic term)
+send a message|1
+(verb)|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+send around|1
+(verb)|circulate (generic term)|pass around (generic term)|pass on (generic term)|distribute (generic term)
+send away|2
+(verb)|dismiss|send packing|drop|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|fire|give notice|can|dismiss|give the axe|sack|force out|give the sack|terminate|remove (generic term)|hire (antonym)
+send back|1
+(verb)|remit|remand|challenge (generic term)
+send down|1
+(verb)|rusticate|suspend (generic term)|debar (generic term)
+send for|1
+(verb)|call|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)|call forth (related term)|call forth (related term)|call up (related term)
+send in|1
+(verb)|send (generic term)|send out (generic term)
+send off|3
+(verb)|dispatch|despatch|transport (generic term)|send (generic term)|ship (generic term)
+(verb)|project|propel (generic term)|impel (generic term)
+(verb)|send|get off|transfer (generic term)
+send on|1
+(verb)|forward|transport (generic term)|send (generic term)|ship (generic term)
+send out|1
+(verb)|send|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)|send back (related term)
+send packing|1
+(verb)|dismiss|send away|drop|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+send word|1
+(verb)|advise|notify|give notice|apprise|apprize|inform (generic term)
+sendee|1
+(noun)|recipient (generic term)|receiver (generic term)
+sender|2
+(noun)|transmitter|communicator (generic term)
+(noun)|transmitter|set (generic term)
+sendero luminoso|1
+(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+sending|1
+(noun)|causing (generic term)|causation (generic term)
+sendup|1
+(noun)|parody|lampoon|spoof|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+sene|1
+(noun)|Western Samoan monetary unit (generic term)
+seneca|3
+(noun)|Seneca|Lucius Annaeus Seneca|statesman (generic term)|solon (generic term)|national leader (generic term)|dramatist (generic term)|playwright (generic term)|philosopher (generic term)
+(noun)|Seneca|Iroquois (generic term)
+(noun)|Seneca|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+seneca lake|1
+(noun)|Seneca Lake|Lake Seneca|lake (generic term)
+seneca snakeroot|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort (generic term)
+senecan|1
+(adj)|Senecan|statesman|solon|national leader|dramatist|playwright|philosopher (related term)
+senecio|1
+(noun)|Senecio|genus Senecio|asterid dicot genus (generic term)
+senecio aureus|1
+(noun)|golden groundsel|golden ragwort|Packera aurea|Senecio aureus|herb (generic term)|herbaceous plant (generic term)
+senecio bigelovii|1
+(noun)|nodding groundsel|Senecio bigelovii|wildflower (generic term)|wild flower (generic term)
+senecio cineraria|1
+(noun)|dusty miller|Senecio cineraria|Cineraria maritima|shrub (generic term)|bush (generic term)
+senecio cruentus|1
+(noun)|cineraria|Pericallis cruenta|Senecio cruentus|flower (generic term)
+senecio doublasii|1
+(noun)|threadleaf groundsel|Senecio doublasii|weed (generic term)
+senecio glabellus|1
+(noun)|butterweed|ragwort|Senecio glabellus|wildflower (generic term)|wild flower (generic term)
+senecio jacobaea|1
+(noun)|ragwort|tansy ragwort|ragweed|benweed|Senecio jacobaea|weed (generic term)
+senecio milkanioides|1
+(noun)|German ivy|Delairea odorata|Senecio milkanioides|vine (generic term)
+senecio triangularis|1
+(noun)|arrowleaf groundsel|Senecio triangularis|wildflower (generic term)|wild flower (generic term)
+senecio vulgaris|1
+(noun)|groundsel|Senecio vulgaris|weed (generic term)
+senefelder|1
+(noun)|Senefelder|Alois Senefelder|Aloys Senefelder|lithographer (generic term)
+senega|2
+(noun)|root (generic term)
+(noun)|Polygala alba|milkwort (generic term)
+senega root|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega snakeroot|Polygala senega|milkwort (generic term)
+senega snakeroot|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|Polygala senega|milkwort (generic term)
+senegal|1
+(noun)|Senegal|Republic of Senegal|African country (generic term)|African nation (generic term)
+senegal gum|1
+(noun)|Senegal gum|gum arabic (generic term)|gum acacia (generic term)
+senegalese|2
+(adj)|Senegalese|African country|African nation (related term)
+(noun)|Senegalese|African (generic term)
+senegalese franc|1
+(noun)|Senegalese franc|franc (generic term)
+seneka snakeroot|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senga root|senega root|senega snakeroot|Polygala senega|milkwort (generic term)
+senesce|1
+(verb)|age|get on|mature|maturate|develop (generic term)
+senescence|2
+(noun)|aging|ageing|organic process (generic term)|biological process (generic term)
+(noun)|agedness|oldness (generic term)
+senescent|1
+(adj)|aging|ageing|old (similar term)
+seneschal|1
+(noun)|major-domo|servant (generic term)|retainer (generic term)
+senga root|1
+(noun)|Seneca snakeroot|Seneka snakeroot|senega root|senega snakeroot|Polygala senega|milkwort (generic term)
+senhor|1
+(noun)|Senhor|man (generic term)|adult male (generic term)
+senile|1
+(adj)|doddering|doddery|gaga|old (similar term)
+senile dementia|1
+(noun)|senile psychosis|dementia (generic term)|dementedness (generic term)
+senile psychosis|1
+(noun)|senile dementia|dementia (generic term)|dementedness (generic term)
+senility|2
+(noun)|dotage|second childhood|old age (generic term)|years (generic term)|age (generic term)|eld (generic term)|geezerhood (generic term)
+(noun)|oldness (generic term)
+senior|5
+(adj)|elder (similar term)|older (similar term)|sr. (similar term)|major (similar term)|precedential (similar term)|ranking (similar term)|superior (similar term)|higher-ranking (similar term)|old (related term)|junior (antonym)
+(adj)|fourth-year|last (similar term)
+(adj)|aged|elderly|older|old (similar term)
+(noun)|undergraduate (generic term)|undergrad (generic term)
+(noun)|elder|adult (generic term)|grownup (generic term)
+senior citizen|1
+(noun)|oldster|old person|golden ager|adult (generic term)|grownup (generic term)
+senior class|1
+(noun)|class (generic term)|year (generic term)
+senior high|1
+(noun)|senior high school|high|highschool|high school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+senior high school|1
+(noun)|senior high|high|highschool|high school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+senior moment|1
+(noun)|forgetfulness (generic term)
+senior pilot|1
+(noun)|captain|pilot (generic term)|airplane pilot (generic term)
+senior status|1
+(noun)|seniority|higher status|higher rank|high status (generic term)
+senior vice president|1
+(noun)|vice president (generic term)|V.P. (generic term)
+seniority|2
+(noun)|senior status|higher status|higher rank|high status (generic term)
+(noun)|longevity|oldness (generic term)
+seniti|1
+(noun)|Tongan monetary unit (generic term)
+senna|1
+(noun)|shrub (generic term)|bush (generic term)
+senna alata|1
+(noun)|ringworm bush|ringworm shrub|ringworm cassia|Senna alata|Cassia alata|senna (generic term)
+senna alexandrina|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+senna auriculata|1
+(noun)|avaram|tanner's cassia|Senna auriculata|Cassia auriculata|senna (generic term)
+senna marilandica|1
+(noun)|wild senna|Senna marilandica|Cassia marilandica|herb (generic term)|herbaceous plant (generic term)
+senna obtusifolia|1
+(noun)|sicklepod|Senna obtusifolia|Cassia tora|subshrub (generic term)|suffrutex (generic term)
+senna occidentalis|1
+(noun)|coffee senna|mogdad coffee|styptic weed|stinking weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+sennacherib|1
+(noun)|Sennacherib|king (generic term)|male monarch (generic term)|Rex (generic term)
+sennett|1
+(noun)|Sennett|Mack Sennett|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sennit|1
+(noun)|cordage (generic term)
+senor|1
+(noun)|Senor|title (generic term)|title of respect (generic term)|form of address (generic term)
+senora|1
+(noun)|Senora|title (generic term)|title of respect (generic term)|form of address (generic term)
+senorita|1
+(noun)|Senorita|title (generic term)|title of respect (generic term)|form of address (generic term)
+sens|1
+(noun)|pot|grass|green goddess|dope|weed|gage|sess|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+sensate|1
+(adj)|sentient (similar term)|animate (similar term)
+sensation|5
+(noun)|esthesis|aesthesis|sense experience|sense impression|sense datum|perception (generic term)
+(noun)|ace|adept|champion|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(noun)|stir (generic term)
+(noun)|excitement (generic term)|excitation (generic term)|inflammation (generic term)|fervor (generic term)|fervour (generic term)
+(noun)|sense|sentience|sentiency|sensory faculty|faculty (generic term)|mental faculty (generic term)|module (generic term)
+sensational|3
+(adj)|lurid (similar term)|shocking (similar term)|scandalmongering (similar term)|sensationalistic (similar term)|yellow (similar term)|screaming (similar term)|unsensational (antonym)
+(adj)|arresting|stunning|impressive (similar term)
+(adj)|sensory|perception (related term)
+sensationalism|4
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|luridness|journalese (generic term)
+(noun)|sensualism|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|empiricism|empiricist philosophy|philosophical doctrine (generic term)|philosophical theory (generic term)
+sensationalist|1
+(noun)|ballyhoo artist|publicist (generic term)|publicizer (generic term)|publiciser (generic term)
+sensationalistic|1
+(adj)|scandalmongering|yellow|sensational (similar term)
+sense|9
+(noun)|awareness (generic term)|consciousness (generic term)|cognizance (generic term)|cognisance (generic term)|knowingness (generic term)
+(noun)|signified|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|sensation|sentience|sentiency|sensory faculty|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|common sense|good sense|gumption|horse sense|mother wit|sagacity (generic term)|sagaciousness (generic term)|judgment (generic term)|judgement (generic term)|discernment (generic term)
+(noun)|appreciation (generic term)|grasp (generic term)|hold (generic term)
+(verb)|feel|perceive (generic term)|comprehend (generic term)
+(verb)|detect (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+(verb)|perceive (generic term)
+(verb)|understand (generic term)
+sense datum|1
+(noun)|sensation|esthesis|aesthesis|sense experience|sense impression|perception (generic term)
+sense experience|1
+(noun)|sensation|esthesis|aesthesis|sense impression|sense datum|perception (generic term)
+sense impression|1
+(noun)|sensation|esthesis|aesthesis|sense experience|sense datum|perception (generic term)
+sense modality|1
+(noun)|modality|sensory system|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+sense of balance|1
+(noun)|equilibrium|labyrinthine sense|vestibular sense|sense of equilibrium|proprioception (generic term)
+sense of direction|1
+(noun)|sense (generic term)
+sense of duty|1
+(noun)|sense of shame|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+sense of equilibrium|1
+(noun)|equilibrium|labyrinthine sense|vestibular sense|sense of balance|proprioception (generic term)
+sense of hearing|1
+(noun)|hearing|audition|auditory sense|auditory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+sense of humor|1
+(noun)|humor|humour|sense of humour|playfulness (generic term)|fun (generic term)
+sense of humour|1
+(noun)|humor|humour|sense of humor|playfulness (generic term)|fun (generic term)
+sense of movement|1
+(noun)|kinesthesis|kinaesthesis|kinesthesia|kinaesthesia|kinesthetics|muscle sense|proprioception (generic term)|kinanesthesia (antonym)
+sense of purpose|1
+(noun)|purposefulness|meaningfulness (generic term)|purposelessness (antonym)
+sense of responsibility|1
+(noun)|sense (generic term)
+sense of right and wrong|1
+(noun)|conscience|scruples|moral sense|ethical motive (generic term)|ethics (generic term)|morals (generic term)|morality (generic term)
+sense of shame|1
+(noun)|sense of duty|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+sense of smell|1
+(noun)|smell|olfaction|olfactory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+sense of taste|1
+(noun)|taste|gustation|gustatory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+sense of the meeting|1
+(noun)|agreement (generic term)|accord (generic term)
+sense of touch|1
+(noun)|touch|skin senses|touch modality|cutaneous senses|somatosense (generic term)|exteroception (generic term)
+sense organ|1
+(noun)|sensory receptor|receptor|organ (generic term)|effector (antonym)
+sense tagger|1
+(noun)|tagger (generic term)|tagging program (generic term)
+sensed|1
+(adj)|perceived|detected (similar term)
+senseless|4
+(adj)|mindless|reasonless|unreasonable (similar term)
+(adj)|insensible|unconscious (similar term)
+(adj)|pointless|purposeless|meaningless (similar term)|nonmeaningful (similar term)
+(adj)|nitwitted|soft-witted|witless|stupid (similar term)
+senselessly|1
+(adv)|mindlessly
+senselessness|1
+(noun)|inanity|mindlessness|vacuity|pointlessness|meaninglessness (generic term)
+sensibilise|1
+(verb)|sensitize|sensitise|sensify|sensibilize|change (generic term)|alter (generic term)|modify (generic term)|desensitize (antonym)
+sensibility|3
+(noun)|esthesia|aesthesia|consciousness (generic term)|insensibility (antonym)
+(noun)|sensitivity (generic term)|sensitiveness (generic term)
+(noun)|sensitivity|sensitiveness|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+sensibilize|1
+(verb)|sensitize|sensitise|sensify|sensibilise|change (generic term)|alter (generic term)|modify (generic term)|desensitize (antonym)
+sensible|4
+(adj)|reasonable|commonsense (similar term)|commonsensible (similar term)|commonsensical (similar term)|healthy (similar term)|intelligent (similar term)|levelheaded (similar term)|level-headed (similar term)|sound (similar term)|tenable (similar term)|well-founded (similar term)|fair (related term)|just (related term)|logical (related term)|rational (related term)|valid (related term)|unreasonable (antonym)
+(adj)|sensitive|aware (related term)|cognizant (related term)|cognisant (related term)|conscious (related term)|sensitive (related term)|insensible (antonym)
+(adj)|perceptible (similar term)
+(adj)|aware (similar term)|cognizant (similar term)|cognisant (similar term)
+sensible horizon|1
+(noun)|horizon|apparent horizon|visible horizon|skyline|line (generic term)
+sensibleness|1
+(noun)|reasonableness (generic term)|practicality (generic term)
+sensibly|1
+(adv)|sanely|reasonably|unreasonably (antonym)
+sensify|1
+(verb)|sensitize|sensitise|sensibilize|sensibilise|change (generic term)|alter (generic term)|modify (generic term)|desensitize (antonym)
+sensing|2
+(noun)|detection|perception (generic term)
+(noun)|perception|sensory activity (generic term)
+sensing element|1
+(noun)|detector|sensor|device (generic term)
+sensitisation|3
+(noun)|sensitization|sensitivity (generic term)|predisposition (generic term)
+(noun)|sensitization|process (generic term)|physical process (generic term)
+(noun)|sensitizing|sensitising|sensitization|immunization (generic term)|immunisation (generic term)
+sensitise|3
+(verb)|sensitize|desensitise (antonym)|desensitize (antonym)
+(verb)|sensitize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sensitize|sensify|sensibilize|sensibilise|change (generic term)|alter (generic term)|modify (generic term)|desensitize (antonym)
+sensitised|1
+(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+sensitiser|1
+(noun)|sensitizer|activator (generic term)
+sensitising|2
+(adj)|sensitizing|desensitizing (antonym)
+(noun)|sensitizing|sensitization|sensitisation|immunization (generic term)|immunisation (generic term)
+sensitive|6
+(adj)|delicate (similar term)|erogenous (similar term)|excitable (similar term)|irritable (similar term)|highly sensitive (similar term)|irritable (similar term)|light-sensitive (similar term)|photosensitive (similar term)|radiosensitive (similar term)|nociceptive (similar term)|reactive (similar term)|responsive (related term)|sensible (related term)|sensitive (related term)|susceptible (related term)|insensitive (antonym)
+(adj)|alive (similar term)|huffy (similar term)|thin-skinned (similar term)|feisty (similar term)|touchy (similar term)|oversensitive (similar term)|responsive (similar term)|responsive (related term)|insensitive (antonym)
+(adj)|sensible|aware (related term)|cognizant (related term)|cognisant (related term)|conscious (related term)|sensitive (related term)|insensible (antonym)
+(adj)|sore|raw|tender|painful (similar term)
+(adj)|classified (similar term)
+(noun)|medium|spiritualist|psychic (generic term)
+sensitive fern|1
+(noun)|bead fern|Onoclea sensibilis|fern (generic term)
+sensitive pea|1
+(noun)|partridge pea|wild sensitive plant|Chamaecrista fasciculata|Cassia fasciculata|subshrub (generic term)|suffrutex (generic term)
+sensitive plant|2
+(noun)|touch-me-not|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa (generic term)
+(noun)|Mimosa sensitiva|mimosa (generic term)
+sensitively|1
+(adv)|insensitively (antonym)
+sensitiveness|4
+(noun)|sensitivity|feeling (generic term)
+(noun)|sensitivity|sensibility|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+(noun)|sensitivity|physical property (generic term)
+(noun)|sensitivity|ability (generic term)|insensitiveness (antonym)|insensitivity (antonym)
+sensitivity|5
+(noun)|sensitiveness|sensibility|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+(noun)|sensitiveness|physical property (generic term)
+(noun)|sensitiveness|feeling (generic term)
+(noun)|predisposition|susceptibility (generic term)|susceptibleness (generic term)
+(noun)|sensitiveness|ability (generic term)|insensitiveness (antonym)|insensitivity (antonym)
+sensitization|3
+(noun)|sensitisation|sensitivity (generic term)|predisposition (generic term)
+(noun)|sensitisation|process (generic term)|physical process (generic term)
+(noun)|sensitizing|sensitising|sensitisation|immunization (generic term)|immunisation (generic term)
+sensitize|3
+(verb)|sensitise|sensify|sensibilize|sensibilise|change (generic term)|alter (generic term)|modify (generic term)|desensitize (antonym)
+(verb)|sensitise|desensitise (antonym)|desensitize (antonym)
+(verb)|sensitise|change (generic term)|alter (generic term)|modify (generic term)
+sensitized|1
+(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitised|supersensitive|supersensitized|supersensitised|susceptible (similar term)
+sensitizer|1
+(noun)|sensitiser|activator (generic term)
+sensitizing|2
+(adj)|sensitising|desensitizing (antonym)
+(noun)|sensitising|sensitization|sensitisation|immunization (generic term)|immunisation (generic term)
+sensitometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|photographic equipment (generic term)
+sensor|1
+(noun)|detector|sensing element|device (generic term)
+sensorial|1
+(adj)|sensory|extrasensory (antonym)
+sensorimotor|1
+(adj)|bodily process|body process|bodily function|activity (related term)
+sensorimotor area|1
+(noun)|sensorimotor region|cortical area (generic term)|cortical region (generic term)
+sensorimotor region|1
+(noun)|sensorimotor area|cortical area (generic term)|cortical region (generic term)
+sensorineural hearing loss|1
+(noun)|nerve deafness|hearing impairment (generic term)|hearing disorder (generic term)
+sensorium|1
+(noun)|cortical area (generic term)|cortical region (generic term)
+sensory|3
+(adj)|centripetal|receptive|afferent (similar term)
+(adj)|sensorial|extrasensory (antonym)
+(adj)|sensational|perception (related term)
+sensory activity|1
+(noun)|activity (generic term)
+sensory aphasia|1
+(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|impressive aphasia|aphasia (generic term)
+sensory deprivation|1
+(noun)|torture (generic term)|torturing (generic term)
+sensory epilepsy|1
+(noun)|cortical epilepsy (generic term)|focal epilepsy (generic term)
+sensory faculty|1
+(noun)|sense|sensation|sentience|sentiency|faculty (generic term)|mental faculty (generic term)|module (generic term)
+sensory hair|1
+(noun)|whisker|vibrissa|hair (generic term)
+sensory nerve|1
+(noun)|afferent nerve|afferent|nerve (generic term)|nervus (generic term)
+sensory neuron|1
+(noun)|afferent neuron|nerve cell (generic term)|neuron (generic term)
+sensory receptor|1
+(noun)|sense organ|receptor|organ (generic term)|effector (antonym)
+sensory system|2
+(noun)|modality|sense modality|sense (generic term)|sensation (generic term)|sentience (generic term)|sentiency (generic term)|sensory faculty (generic term)
+(noun)|system (generic term)
+sensual|2
+(adj)|animal|carnal|fleshly|physical (similar term)
+(adj)|sultry|hot (similar term)
+sensualise|1
+(verb)|sensualize|carnalize|carnalise|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+sensualism|2
+(noun)|sensuality|sensualness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|sensationalism|philosophical doctrine (generic term)|philosophical theory (generic term)
+sensualist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sensuality|1
+(noun)|sensualness|sensualism|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+sensualize|3
+(verb)|carnalize|represent (generic term)|interpret (generic term)
+(verb)|carnalize|impute (generic term)|ascribe (generic term)|assign (generic term)|attribute (generic term)
+(verb)|sensualise|carnalize|carnalise|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+sensually|1
+(adv)|sultrily
+sensualness|1
+(noun)|sensuality|sensualism|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+sensuous|1
+(adj)|aesthetic (similar term)|esthetic (similar term)|aesthetical (similar term)|esthetical (similar term)
+sensuousness|1
+(noun)|sensibility (generic term)
+sent|2
+(adj)|conveyed (similar term)|dispatched (similar term)|transmitted (similar term)|unsent (antonym)
+(noun)|Estonian monetary unit (generic term)
+sente|1
+(noun)|Lesotho monetary unit (generic term)
+sentence|4
+(noun)|string of words (generic term)|word string (generic term)|linguistic string (generic term)
+(noun)|conviction|judgment of conviction|condemnation|final judgment (generic term)|final decision (generic term)|acquittal (antonym)
+(noun)|prison term|time|term (generic term)
+(verb)|condemn|doom|declare (generic term)
+sentence stress|1
+(noun)|stress (generic term)|emphasis (generic term)|accent (generic term)
+sentence structure|1
+(noun)|syntax|phrase structure|structure (generic term)
+sentential|1
+(adj)|string of words|word string|linguistic string (related term)
+sentential function|1
+(noun)|formula (generic term)|expression (generic term)
+sententious|2
+(adj)|pretentious (similar term)
+(adj)|pithy|concise (similar term)
+sententiously|1
+(adv)|pithily
+sentience|3
+(noun)|awareness|consciousness (generic term)
+(noun)|sense|sensation|sentiency|sensory faculty|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|animateness (generic term)|aliveness (generic term)|liveness (generic term)|insentience (antonym)
+sentiency|1
+(noun)|sense|sensation|sentience|sensory faculty|faculty (generic term)|mental faculty (generic term)|module (generic term)
+sentient|2
+(adj)|animate|sensate (similar term)|insentient (antonym)
+(adj)|conscious (similar term)
+sentiment|2
+(noun)|feeling (generic term)
+(noun)|opinion|persuasion|view|thought|belief (generic term)
+sentimental|2
+(adj)|tender (similar term)
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|soppy|soupy|slushy|emotional (similar term)
+sentimentalisation|1
+(noun)|sentimentalization|romanticization|romanticisation|idealization (generic term)|idealisation (generic term)|glorification (generic term)
+sentimentalise|3
+(verb)|sentimentalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sentimentalize|misrepresent (generic term)|belie (generic term)
+(verb)|sentimentalize|sentimentize|sentimentise|act (generic term)|behave (generic term)|do (generic term)
+sentimentalism|2
+(noun)|formulation (generic term)|expression (generic term)
+(noun)|mawkishness (generic term)|sentimentality (generic term)|drippiness (generic term)|mushiness (generic term)|soupiness (generic term)|sloppiness (generic term)
+sentimentalist|1
+(noun)|romanticist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sentimentality|2
+(noun)|mawkishness|drippiness|mushiness|soupiness|sloppiness|emotionality (generic term)|emotionalism (generic term)
+(noun)|sentiment (generic term)
+sentimentalization|1
+(noun)|sentimentalisation|romanticization|romanticisation|idealization (generic term)|idealisation (generic term)|glorification (generic term)
+sentimentalize|3
+(verb)|sentimentalise|misrepresent (generic term)|belie (generic term)
+(verb)|sentimentalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sentimentalise|sentimentize|sentimentise|act (generic term)|behave (generic term)|do (generic term)
+sentimentally|1
+(adv)|unsentimentally (antonym)
+sentimentise|1
+(verb)|sentimentalise|sentimentalize|sentimentize|act (generic term)|behave (generic term)|do (generic term)
+sentimentize|1
+(verb)|sentimentalise|sentimentalize|sentimentise|act (generic term)|behave (generic term)|do (generic term)
+sentinel|1
+(noun)|lookout|lookout man|sentry|watch|spotter|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+sentry|1
+(noun)|lookout|lookout man|sentinel|watch|spotter|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+sentry box|1
+(noun)|shelter (generic term)
+sentry duty|1
+(noun)|guard duty|guard|sentry go|assignment (generic term)|duty assignment (generic term)
+sentry go|1
+(noun)|guard duty|guard|sentry duty|assignment (generic term)|duty assignment (generic term)
+seoul|1
+(noun)|Seoul|capital of South Korea|national capital (generic term)
+sep|1
+(noun)|September|Sep|Sept|Gregorian calendar month (generic term)
+sep 11|1
+(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack (generic term)
+sepal|1
+(noun)|floral leaf (generic term)
+sepaline|1
+(adj)|sepaloid|floral leaf (related term)
+sepaloid|1
+(adj)|sepaline|floral leaf (related term)
+separability|1
+(noun)|disjunction (generic term)|disjuncture (generic term)|disconnection (generic term)|disconnectedness (generic term)
+separable|1
+(adj)|dissociable|severable|divisible (similar term)
+separably|1
+(adv)|inseparably (antonym)
+separate|20
+(adj)|abstracted (similar term)|removed (similar term)|apart (similar term)|asunder (similar term)|detached (similar term)|isolated (similar term)|separated (similar term)|set-apart (similar term)|discrete (similar term)|distinct (similar term)|disjoint (similar term)|disjunct (similar term)|isolated (similar term)|isolable (similar term)|unaccompanied (similar term)|divided (related term)|independent (related term)|individual (related term)|single (related term)|other (related term)|segregated (related term)|unintegrated (related term)|unshared (related term)|joint (antonym)
+(adj)|freestanding|detached (similar term)
+(adj)|apart|separated|divided (similar term)
+(adj)|individual|single|unshared (similar term)
+(adj)|segregated (similar term)|unintegrated (similar term)
+(adj)|disjoined|unconnected (similar term)
+(noun)|offprint|reprint|article (generic term)
+(noun)|garment (generic term)
+(verb)|disunite|divide|part|move (generic term)|displace (generic term)
+(verb)|distinguish|differentiate|secern|secernate|severalize|severalise|tell|tell apart|identify (generic term)|place (generic term)
+(verb)|divide|split|split up|dissever|carve up|change integrity (generic term)|unite (antonym)
+(verb)|divide|part|change (generic term)
+(verb)|change integrity (generic term)
+(verb)|classify|class|sort|assort|sort out|categorize (generic term)|categorise (generic term)
+(verb)|break|split up|fall apart|come apart|change integrity (generic term)|break up (related term)
+(verb)|divide
+(verb)|part|split up|split|break|break up
+(verb)|part|split|move (generic term)
+(verb)|discriminate|single out|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|branch|ramify|fork|furcate|diverge (generic term)|branch out (related term)
+separate off|1
+(verb)|screen off|partition (generic term)|zone (generic term)
+separate out|1
+(verb)|filter|filtrate|strain|filter out|separate (generic term)
+separated|5
+(adj)|detached|isolated|set-apart|separate (similar term)
+(adj)|spaced|distributed (similar term)
+(adj)|apart|separate|divided (similar term)
+(adj)|disjointed|dislocated|injured (similar term)
+(adj)|detached|unconnected (similar term)
+separately|1
+(adv)|individually|singly|severally|one by one|on an individual basis
+separateness|3
+(noun)|discreteness|distinctness|severalty|separation (generic term)
+(noun)|independence (generic term)|independency (generic term)
+(noun)|otherness|distinctness|difference (generic term)
+separation|9
+(noun)|change of integrity (generic term)
+(noun)|breakup|detachment|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|state (generic term)|union (antonym)
+(noun)|interval|distance (generic term)
+(noun)|sorting (generic term)
+(noun)|group action (generic term)
+(noun)|space (generic term)
+(noun)|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|legal separation|cessation (generic term)|surcease (generic term)
+separation energy|1
+(noun)|binding energy|energy (generic term)
+separationism|1
+(noun)|separatism|separation (generic term)
+separationist|1
+(noun)|separatist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+separatism|3
+(noun)|segregation|social organization (generic term)|social organisation (generic term)|social structure (generic term)|social system (generic term)|structure (generic term)
+(noun)|disposition (generic term)
+(noun)|separationism|separation (generic term)
+separatist|2
+(adj)|breakaway|fissiparous|independent (similar term)
+(noun)|separationist|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+separative|3
+(adj)|disjunctive (similar term)
+(adj)|partitive|disjunctive (similar term)
+(adj)|distributive (similar term)
+separator|1
+(noun)|centrifuge|extractor|apparatus (generic term)|setup (generic term)
+separatrix|1
+(noun)|solidus|slash|virgule|diagonal|stroke|punctuation (generic term)|punctuation mark (generic term)
+sephardi|1
+(noun)|Sephardi|Sephardic Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+sephardic jew|1
+(noun)|Sephardi|Sephardic Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+sepia|3
+(noun)|reddish brown|burnt sienna|Venetian red|brown (generic term)|brownness (generic term)
+(noun)|pigment (generic term)
+(noun)|Sepia|genus Sepia|mollusk genus (generic term)
+sepiidae|1
+(noun)|Sepiidae|family Sepiidae|mollusk family (generic term)
+sepiolite|1
+(noun)|meerschaum|mineral (generic term)
+sepoy mutiny|1
+(noun)|Indian Mutiny|Sepoy Mutiny|rebellion (generic term)|insurrection (generic term)|revolt (generic term)|rising (generic term)|uprising (generic term)
+sepsis|1
+(noun)|infection (generic term)
+sept|2
+(noun)|September|Sep|Sept|Gregorian calendar month (generic term)
+(noun)|family|family line|folk|kinfolk|kinsfolk|phratry|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+sept. 11|1
+(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack (generic term)
+septal|1
+(adj)|septate|body part (related term)
+septal defect|1
+(noun)|congenital heart defect (generic term)
+septate|1
+(adj)|septal|body part (related term)
+septation|1
+(noun)|division (generic term)|partition (generic term)|partitioning (generic term)|segmentation (generic term)|sectionalization (generic term)|sectionalisation (generic term)
+septectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+september|1
+(noun)|September|Sep|Sept|Gregorian calendar month (generic term)
+september 11|1
+(noun)|9/11|9-11|September 11|Sept. 11|Sep 11|terrorist attack (generic term)
+september 17|1
+(noun)|Citizenship Day|September 17|day (generic term)
+september 29|1
+(noun)|Michaelmas|Michaelmas Day|September 29|quarter day (generic term)
+september elm|1
+(noun)|September elm|red elm|Ulmus serotina|elm (generic term)|elm tree (generic term)
+september equinox|1
+(noun)|autumnal equinox|September equinox|fall equinox|equinox (generic term)|vernal equinox (antonym)
+septenary|1
+(noun)|seven|7|VII|sevener|heptad|septet|digit (generic term)|figure (generic term)
+septentrion|1
+(noun)|North|northland|Septentrion|region (generic term)
+septet|5
+(noun)|seven|7|VII|sevener|heptad|septenary|digit (generic term)|figure (generic term)
+(noun)|septette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|septette|set (generic term)
+(noun)|septette|sevensome|gathering (generic term)|assemblage (generic term)
+(noun)|septette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+septette|4
+(noun)|septet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|septet|set (generic term)
+(noun)|septet|sevensome|gathering (generic term)|assemblage (generic term)
+(noun)|septet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+septic|2
+(adj)|infected|abscessed (similar term)|contaminated (similar term)|dirty (similar term)|pestiferous (similar term)|contaminative (similar term)|purulent (similar term)|pussy (similar term)|infectious (similar term)|infective (similar term)|putrefactive (similar term)|putrefacient (similar term)|septicemic (similar term)|germy (related term)|unhealthful (related term)|antiseptic (antonym)
+(adj)|decay (related term)
+septic sore throat|1
+(noun)|streptococcal sore throat|strep throat|streptococcus tonsilitis|throat infection|sore throat (generic term)|pharyngitis (generic term)|raw throat (generic term)|infection (generic term)
+septic tank|1
+(noun)|tank (generic term)|storage tank (generic term)
+septicaemia|1
+(noun)|blood poisoning|septicemia|sepsis (generic term)|blood disease (generic term)|blood disorder (generic term)
+septicemia|1
+(noun)|blood poisoning|septicaemia|sepsis (generic term)|blood disease (generic term)|blood disorder (generic term)
+septicemic|1
+(adj)|septic (similar term)|infected (similar term)
+septicemic plague|1
+(noun)|plague (generic term)|pestilence (generic term)|pest (generic term)|pestis (generic term)
+septillion|1
+(noun)|large integer (generic term)
+septobasidiaceae|1
+(noun)|Septobasidiaceae|family Septobasidiaceae|fungus family (generic term)
+septobasidium|1
+(noun)|Septobasidium|genus Septobasidium|fungus genus (generic term)
+septobasidium pseudopedicellatum|1
+(noun)|felt fungus|Septobasidium pseudopedicellatum|fungus (generic term)
+septrional|1
+(adj)|northern (similar term)
+septuagenarian|1
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+septuagesima|1
+(noun)|Septuagesima|Septuagesima Sunday|Christian holy day (generic term)
+septuagesima sunday|1
+(noun)|Septuagesima|Septuagesima Sunday|Christian holy day (generic term)
+septuagint|1
+(noun)|Septuagint|Old Testament (generic term)
+septum|2
+(noun)|body part (generic term)
+(noun)|plant organ (generic term)
+septuple|1
+(adj)|sevenfold|seven-fold|multiple (similar term)
+sepulcher|1
+(noun)|burial chamber|sepulchre|sepulture|grave (generic term)|tomb (generic term)|chamber (generic term)
+sepulchral|3
+(adj)|grave|tomb|chamber (related term)
+(adj)|charnel|ghastly|offensive (similar term)
+(adj)|funereal|joyless (similar term)
+sepulchre|1
+(noun)|burial chamber|sepulcher|sepulture|grave (generic term)|tomb (generic term)|chamber (generic term)
+sepulture|2
+(noun)|burial|entombment|inhumation|interment|funeral (generic term)
+(noun)|burial chamber|sepulcher|sepulchre|grave (generic term)|tomb (generic term)|chamber (generic term)
+sequel|2
+(noun)|subsequence|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|continuation|addendum (generic term)|supplement (generic term)|postscript (generic term)
+sequela|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+sequella|1
+(noun)|consequence (generic term)|aftermath (generic term)
+sequenator|1
+(noun)|sequencer|apparatus (generic term)|setup (generic term)
+sequence|7
+(noun)|series (generic term)
+(noun)|chronological sequence|succession|successiveness|chronological succession|temporal arrangement (generic term)|temporal order (generic term)
+(noun)|episode|film (generic term)|photographic film (generic term)
+(noun)|succession|order (generic term)|ordering (generic term)
+(noun)|repeat (generic term)|repetition (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+sequencer|2
+(noun)|sequenator|apparatus (generic term)|setup (generic term)
+(noun)|hardware (generic term)|computer hardware (generic term)
+sequent|2
+(adj)|consecutive|sequential|serial|successive|ordered (similar term)
+(adj)|consequent|ensuant|resultant|resulting|subsequent (similar term)
+sequential|1
+(adj)|consecutive|sequent|serial|successive|ordered (similar term)
+sequential operation|1
+(noun)|serial operation|consecutive operation|operation (generic term)|parallel operation (antonym)
+sequentially|1
+(adv)|consecutive
+sequester|5
+(verb)|take (generic term)
+(verb)|impound|attach|confiscate|seize|take (generic term)
+(verb)|change (generic term)
+(verb)|seclude|sequestrate|withdraw|isolate (generic term)|insulate (generic term)
+(verb)|sequestrate|keep apart|set apart|isolate|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+sequestered|2
+(adj)|cloistered|reclusive|secluded|private (similar term)
+(adj)|segregated (similar term)|unintegrated (similar term)
+sequestrate|2
+(verb)|seclude|sequester|withdraw|isolate (generic term)|insulate (generic term)
+(verb)|sequester|keep apart|set apart|isolate|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+sequestration|4
+(noun)|segregation|separation (generic term)|integration (antonym)
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|writ (generic term)|judicial writ (generic term)
+(noun)|requisition|appropriation (generic term)
+sequin|1
+(noun)|spangle|diamante|adornment (generic term)
+sequined|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|spangled|spangly|adorned (similar term)|decorated (similar term)
+sequoia|1
+(noun)|redwood|cypress (generic term)
+sequoia gigantea|1
+(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+sequoia national park|1
+(noun)|Sequoia National Park|national park (generic term)
+sequoia sempervirens|1
+(noun)|California redwood|coast redwood|Sequoia sempervirens|sequoia (generic term)|redwood (generic term)
+sequoia wellingtonia|1
+(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+sequoiadendron|1
+(noun)|Sequoiadendron|genus Sequoiadendron|plant genus (generic term)
+sequoiadendron giganteum|1
+(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+sequoya|1
+(noun)|Sequoya|Sequoyah|George Guess|Indian chief (generic term)|Indian chieftain (generic term)|Cherokee (generic term)
+sequoyah|1
+(noun)|Sequoya|Sequoyah|George Guess|Indian chief (generic term)|Indian chieftain (generic term)|Cherokee (generic term)
+seraglio|1
+(noun)|harem|hareem|serail|living quarters (generic term)|quarters (generic term)
+serail|1
+(noun)|harem|hareem|seraglio|living quarters (generic term)|quarters (generic term)
+serape|1
+(noun)|sarape|shawl (generic term)
+seraph|1
+(noun)|angel (generic term)
+seraphic|2
+(adj)|seraphical|angel (related term)
+(adj)|angelic|angelical|cherubic|sweet|lovable (similar term)|loveable (similar term)
+seraphical|1
+(adj)|seraphic|angel (related term)
+serax|1
+(noun)|oxazepam|Serax|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+serb|1
+(noun)|Serbian|Serb|Slav (generic term)
+serbia|1
+(noun)|Serbia|Srbija|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+serbia and montenegro|1
+(noun)|Serbia and Montenegro|Union of Serbia and Montenegro|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|European country (generic term)|European nation (generic term)
+serbian|2
+(adj)|Serbian|geographical area|geographic area|geographical region|geographic region (related term)|Slav (related term)
+(noun)|Serbian|Serb|Slav (generic term)
+serbo-croat|1
+(noun)|Serbo-Croat|Serbo-Croatian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+serbo-croatian|1
+(noun)|Serbo-Croat|Serbo-Croatian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+serdica|1
+(noun)|Sofia|Serdica|Bulgarian capital|national capital (generic term)
+sere|1
+(adj)|dried-up|sear|shriveled|shrivelled|withered|dry (similar term)
+serenade|3
+(noun)|divertimento|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|song (generic term)|vocal (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+serendipitous|1
+(adj)|lucky (similar term)
+serendipity|1
+(noun)|good luck (generic term)|fluke (generic term)|good fortune (generic term)
+serene|2
+(adj)|calm|unagitated|tranquil|composed (similar term)
+(adj)|clear (similar term)
+sereness|1
+(noun)|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+serengeti|1
+(noun)|Serengeti|Serengeti Plain|plain (generic term)|field (generic term)|champaign (generic term)
+serengeti national park|1
+(noun)|Serengeti National Park|national park (generic term)
+serengeti plain|1
+(noun)|Serengeti|Serengeti Plain|plain (generic term)|field (generic term)|champaign (generic term)
+serenity|2
+(noun)|repose|quiet|placidity|tranquillity|tranquility|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(noun)|peace|peacefulness|peace of mind|repose|heartsease|ataraxis|tranquillity (generic term)|tranquility (generic term)|quietness (generic term)|quietude (generic term)
+serenoa|1
+(noun)|Serenoa|genus Serenoa|monocot genus (generic term)|liliopsid genus (generic term)
+serenoa repens|1
+(noun)|saw palmetto|scrub palmetto|Serenoa repens|fan palm (generic term)
+serer|1
+(noun)|Serer|West African (generic term)
+serf|1
+(noun)|helot|villein|thrall (generic term)
+serfdom|1
+(noun)|serfhood|vassalage|bondage (generic term)|slavery (generic term)|thrall (generic term)|thralldom (generic term)|thraldom (generic term)
+serfhood|1
+(noun)|serfdom|vassalage|bondage (generic term)|slavery (generic term)|thrall (generic term)|thralldom (generic term)|thraldom (generic term)
+serflike|1
+(adj)|unfree (similar term)
+serge|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+serge koussevitzky|1
+(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor (generic term)|music director (generic term)|director (generic term)
+sergeant|3
+(noun)|noncommissioned officer (generic term)|noncom (generic term)
+(noun)|police sergeant|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+(noun)|serjeant-at-law|serjeant|sergeant-at-law|barrister (generic term)
+sergeant-at-law|1
+(noun)|serjeant-at-law|serjeant|sergeant|barrister (generic term)
+sergeant at arms|1
+(noun)|serjeant-at-arms|officeholder (generic term)|officer (generic term)
+sergeant first class|1
+(noun)|first sergeant|sergeant (generic term)
+sergeant fish|1
+(noun)|cobia|Rachycentron canadum|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sergeant major|2
+(noun)|police sergeant (generic term)|sergeant (generic term)
+(noun)|Abudefduf saxatilis|damselfish (generic term)|demoiselle (generic term)
+sergei aleksandrovich koussevitzky|1
+(noun)|Koussevitzky|Serge Koussevitzky|Sergei Aleksandrovich Koussevitzky|conductor (generic term)|music director (generic term)|director (generic term)
+sergei diaghilev|1
+(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman (generic term)|promoter (generic term)|impresario (generic term)
+sergei eisenstein|1
+(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sergei mikhailovich eisenstein|1
+(noun)|Eisenstein|Sergei Eisenstein|Sergei Mikhailovich Eisenstein|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sergei pavlovich diaghilev|1
+(noun)|Diaghilev|Sergei Diaghilev|Sergei Pavlovich Diaghilev|showman (generic term)|promoter (generic term)|impresario (generic term)
+sergei rachmaninoff|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+sergei rachmaninov|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+sergei sergeyevich prokofiev|1
+(noun)|Prokofiev|Sergei Sergeyevich Prokofiev|composer (generic term)
+sergei vasilievich rachmaninoff|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+sergei vasilievich rachmaninov|1
+(noun)|Rachmaninoff|Sergei Rachmaninoff|Sergei Vasilievich Rachmaninoff|Rachmaninov|Sergei Rachmaninov|Sergei Vasilievich Rachmaninov|composer (generic term)|pianist (generic term)|piano player (generic term)
+serger|1
+(noun)|sewing machine (generic term)
+serial|6
+(adj)|consecutive|sequent|sequential|successive|ordered (similar term)
+(adj)|music (related term)
+(adj)|ordering|order|ordination (related term)
+(adj)|in series|nonparallel|asynchronous (similar term)
+(noun)|series|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|series|serial publication|periodical (generic term)
+serial killer|1
+(noun)|serial murderer|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+serial monogamy|1
+(noun)|monogamy (generic term)|monogamousness (generic term)
+serial murderer|1
+(noun)|serial killer|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+serial music|1
+(noun)|serialism|music (generic term)
+serial operation|1
+(noun)|sequential operation|consecutive operation|operation (generic term)|parallel operation (antonym)
+serial port|1
+(noun)|interface (generic term)|port (generic term)
+serial printer|1
+(noun)|character printer|character-at-a-time printer|printer (generic term)|printing machine (generic term)
+serial processing|1
+(noun)|data processing (generic term)
+serial publication|1
+(noun)|series|serial|periodical (generic term)
+serialisation|1
+(noun)|serialization|publication (generic term)|publishing (generic term)
+serialise|1
+(verb)|serialize|arrange (generic term)|set up (generic term)
+serialism|1
+(noun)|serial music|music (generic term)
+serialization|1
+(noun)|serialisation|publication (generic term)|publishing (generic term)
+serialize|1
+(verb)|serialise|arrange (generic term)|set up (generic term)
+sericea lespedeza|1
+(noun)|Lespedeza sericea|Lespedeza cuneata|bush clover (generic term)|lespedeza (generic term)
+sericeous|1
+(adj)|downy|pubescent|puberulent|hairy (similar term)|haired (similar term)|hirsute (similar term)
+sericocarpus|1
+(noun)|Sericocarpus|genus Sericocarpus|asterid dicot genus (generic term)
+sericterium|1
+(noun)|silk gland|serictery|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+serictery|1
+(noun)|silk gland|sericterium|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+sericultural|1
+(adj)|natural process|natural action|action|activity (related term)|production (related term)
+sericulture|2
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|production (generic term)
+sericulturist|1
+(noun)|manufacturer (generic term)|producer (generic term)
+seriema|2
+(noun)|chunga|Chunga burmeisteri|wading bird (generic term)|wader (generic term)
+(noun)|crested cariama|Cariama cristata|wading bird (generic term)|wader (generic term)
+series|7
+(noun)|ordering (generic term)|order (generic term)|ordination (generic term)
+(noun)|serial|broadcast (generic term)|program (generic term)|programme (generic term)
+(noun)|serial|serial publication|periodical (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|group (generic term)|grouping (generic term)
+(noun)|polynomial (generic term)|multinomial (generic term)
+(noun)|connection (generic term)|connexion (generic term)|connectedness (generic term)
+series circuit|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+serif|1
+(noun)|seriph|line (generic term)
+serigraph|1
+(noun)|silkscreen|silk screen print|print (generic term)
+serigraphy|1
+(noun)|printmaking (generic term)
+serin|1
+(noun)|finch (generic term)
+serine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+serinus|1
+(noun)|Serinus|genus Serinus|bird genus (generic term)
+serinus canaria|1
+(noun)|common canary|Serinus canaria|canary (generic term)|canary bird (generic term)
+seriocomedy|1
+(noun)|tragicomedy|comedy (generic term)
+seriocomic|1
+(adj)|seriocomical|humorous (similar term)|humourous (similar term)
+seriocomical|1
+(adj)|seriocomic|humorous (similar term)|humourous (similar term)
+seriola|1
+(noun)|Seriola|genus Seriola|fish genus (generic term)
+seriola dorsalis|1
+(noun)|yellowtail|Seriola dorsalis|jack (generic term)
+seriola grandis|1
+(noun)|kingfish|Seriola grandis|jack (generic term)
+seriola zonata|1
+(noun)|rudderfish|banded rudderfish|Seriola zonata|jack (generic term)
+serious|6
+(adj)|earnest (similar term)|sincere (similar term)|solemn (similar term)|grave (similar term)|sedate (similar term)|sober (similar term)|solemn (similar term)|overserious (similar term)|real (similar term)|thoughtful (similar term)|serious-minded (similar term)|sobering (similar term)|solid (similar term)|frivolous (antonym)
+(adj)|important (similar term)|of import (similar term)
+(adj)|dangerous|grave|grievous|severe|life-threatening|critical (similar term)
+(adj)|good|intellectual (similar term)
+(adj)|unplayful|sober|playful (antonym)
+(adj)|difficult (similar term)|hard (similar term)
+serious-minded|1
+(adj)|thoughtful|serious (similar term)
+serious-mindedness|1
+(noun)|seriousness|earnestness|sincerity|trait (generic term)|frivolity (antonym)
+serious music|1
+(noun)|classical music|classical|music genre (generic term)|musical genre (generic term)|genre (generic term)|musical style (generic term)
+seriously|2
+(adv)|earnestly|in earnest
+(adv)|badly|severely|gravely
+seriousness|3
+(noun)|earnestness|sincerity|gravity (generic term)|solemnity (generic term)
+(noun)|distressfulness|badness (generic term)|severity (generic term)|severeness (generic term)
+(noun)|earnestness|serious-mindedness|sincerity|trait (generic term)|frivolity (antonym)
+seriph|1
+(noun)|serif|line (generic term)
+seriphidium|1
+(noun)|Seriphidium|genus Seriphidium|asterid dicot genus (generic term)
+seriphidium canum|1
+(noun)|silver sage|silver sagebrush|grey sage|gray sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+seriphidium maritimum|1
+(noun)|sea wormwood|Seriphidium maritimum|Artemisia maritima|wormwood (generic term)
+seriphidium tridentatum|1
+(noun)|big sagebrush|blue sage|Seriphidium tridentatum|Artemisia tridentata|sagebrush (generic term)|sage brush (generic term)
+seriphus|1
+(noun)|Seriphus|genus Seriphus|fish genus (generic term)
+seriphus politus|1
+(noun)|white croaker|queenfish|Seriphus politus|croaker (generic term)
+serjeant|1
+(noun)|serjeant-at-law|sergeant-at-law|sergeant|barrister (generic term)
+serjeant-at-arms|1
+(noun)|sergeant at arms|officeholder (generic term)|officer (generic term)
+serjeant-at-law|1
+(noun)|serjeant|sergeant-at-law|sergeant|barrister (generic term)
+serkin|1
+(noun)|Serkin|Rudolf Serkin|pianist (generic term)|piano player (generic term)
+sermon|2
+(noun)|discourse|preaching|address (generic term)|speech (generic term)
+(noun)|preaching|lecture (generic term)|speech (generic term)|talking to (generic term)
+sermon on the mount|1
+(noun)|Sermon on the Mount|sermon (generic term)|discourse (generic term)|preaching (generic term)
+sermonise|1
+(verb)|sermonize|preachify|moralize|moralise|preach (generic term)|advocate (generic term)
+sermoniser|1
+(noun)|preacher|preacher man|sermonizer|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+sermonize|1
+(verb)|sermonise|preachify|moralize|moralise|preach (generic term)|advocate (generic term)
+sermonizer|1
+(noun)|preacher|preacher man|sermoniser|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+serologic|1
+(adj)|serological|medical science (related term)
+serological|1
+(adj)|serologic|medical science (related term)
+serologist|1
+(noun)|medical scientist (generic term)
+serology|1
+(noun)|medical science (generic term)
+serosa|1
+(noun)|serous membrane|membrane (generic term)|tissue layer (generic term)
+serotine|1
+(noun)|European brown bat|Eptesicus serotinus|vespertilian bat (generic term)|vespertilionid (generic term)
+serotonin|1
+(noun)|5-hydroxytryptamine|monoamine neurotransmitter (generic term)
+serous|1
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+serous membrane|1
+(noun)|serosa|membrane (generic term)|tissue layer (generic term)
+serow|1
+(noun)|goat antelope (generic term)
+serpasil|1
+(noun)|reserpine|Raudixin|Rau-Sed|Sandril|Serpasil|antihypertensive (generic term)|antihypertensive drug (generic term)
+serpens|1
+(noun)|Serpens|constellation (generic term)
+serpent|3
+(noun)|snake|ophidian|diapsid (generic term)|diapsid reptile (generic term)
+(noun)|firework (generic term)|pyrotechnic (generic term)
+(noun)|cornet (generic term)|horn (generic term)|trumpet (generic term)|trump (generic term)
+serpent-worship|1
+(noun)|ophiolatry|zoolatry (generic term)|animal-worship (generic term)
+serpent fern|1
+(noun)|golden polypody|rabbit's-foot fern|Phlebodium aureum|Polypodium aureum|fern (generic term)
+serpent star|1
+(noun)|brittle star|brittle-star|echinoderm (generic term)
+serpentes|1
+(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order (generic term)
+serpentine|1
+(adj)|snaky|snakelike|curved (similar term)|curving (similar term)
+serra|1
+(noun)|Serra|Junipero Serra|Miguel Jose Serra|missionary (generic term)|missioner (generic term)
+serranid|1
+(noun)|serranid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+serranid fish|1
+(noun)|serranid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+serranidae|1
+(noun)|Serranidae|family Serranidae|fish family (generic term)
+serranus|1
+(noun)|Serranus|genus Serranus|fish genus (generic term)
+serranus subligarius|1
+(noun)|belted sandfish|Serranus subligarius|sea bass (generic term)
+serrasalmus|1
+(noun)|Serrasalmus|genus Serrasalmus|fish genus (generic term)
+serrate|2
+(adj)|serrated|saw-toothed|toothed|notched|rough (similar term)
+(verb)|jag (generic term)
+serrate leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+serrated|1
+(adj)|serrate|saw-toothed|toothed|notched|rough (similar term)
+serrated wrack|1
+(noun)|Fucus serratus|tang|brown algae (generic term)
+serratia|1
+(noun)|genus Serratia|Serratia|bacteria genus (generic term)
+serratia marcescens|1
+(noun)|Serratia marcescens|bacteria species (generic term)
+serration|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|row (generic term)
+(noun)|notch (generic term)
+serratula|1
+(noun)|Serratula|genus Serratula|asterid dicot genus (generic term)
+serratula tinctoria|1
+(noun)|sawwort|Serratula tinctoria|herb (generic term)|herbaceous plant (generic term)
+serratus|1
+(noun)|serratus muscles|skeletal muscle (generic term)|striated muscle (generic term)
+serratus anterior|1
+(noun)|anterior serratus muscle|musculus serratus anterior|serratus magnus|serratus (generic term)|serratus muscles (generic term)
+serratus magnus|1
+(noun)|anterior serratus muscle|serratus anterior|musculus serratus anterior|serratus (generic term)|serratus muscles (generic term)
+serratus muscles|1
+(noun)|serratus|skeletal muscle (generic term)|striated muscle (generic term)
+serratus posterior|1
+(noun)|posterior serratus muscle|musculus serratus posterior|serratus (generic term)|serratus muscles (generic term)
+serratus posterior inferior|1
+(noun)|posterior serratus muscle (generic term)|serratus posterior (generic term)|musculus serratus posterior (generic term)
+serratus posterior superior|1
+(noun)|posterior serratus muscle (generic term)|serratus posterior (generic term)|musculus serratus posterior (generic term)
+serried|1
+(adj)|compact (similar term)
+serrulate|1
+(adj)|rough (similar term)
+sertoli's cell|1
+(noun)|Sertoli cell|Sertoli's cell|cell (generic term)
+sertoli cell|1
+(noun)|Sertoli cell|Sertoli's cell|cell (generic term)
+sertraline|1
+(noun)|Zoloft|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+sertularia|1
+(noun)|Sertularia|genus Sertularia|coelenterate genus (generic term)
+sertularian|1
+(noun)|hydrozoan (generic term)|hydroid (generic term)
+serum|1
+(noun)|blood serum|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+serum albumin|1
+(noun)|albumin (generic term)|albumen (generic term)
+serum disease|1
+(noun)|serum sickness|allergy (generic term)|allergic reaction (generic term)
+serum globulin|1
+(noun)|globulin (generic term)
+serum hepatitis|1
+(noun)|hepatitis B|viral hepatitis (generic term)
+serum sickness|1
+(noun)|serum disease|allergy (generic term)|allergic reaction (generic term)
+serval|1
+(noun)|Felis serval|wildcat (generic term)
+servant|2
+(noun)|retainer|worker (generic term)
+(noun)|handmaid|handmaiden|subordinateness (generic term)|subsidiarity (generic term)
+servant's entrance|1
+(noun)|service door|service entrance|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+servant girl|1
+(noun)|serving girl|servant (generic term)|retainer (generic term)
+serve|15
+(noun)|service|tennis stroke (generic term)|tennis shot (generic term)
+(verb)|function|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+(verb)|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|service|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)
+(verb)|help|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|serve up|dish out|dish up|dish|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|work (generic term)
+(verb)|serve well|foster (generic term)|nurture (generic term)
+(verb)|do|spend (generic term)|pass (generic term)
+(verb)|attend to|wait on|attend|assist|help (generic term)|assist (generic term)|aid (generic term)
+(verb)|process|swear out|deliver (generic term)
+(verb)|suffice|do|answer|satisfy (generic term)|fulfill (generic term)|fulfil (generic term)|live up to (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|service|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|move (generic term)|go (generic term)
+serve up|1
+(verb)|serve|dish out|dish up|dish|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+serve well|1
+(verb)|serve|foster (generic term)|nurture (generic term)
+server|4
+(noun)|waiter|dining-room attendant (generic term)|restaurant attendant (generic term)
+(noun)|player (generic term)|participant (generic term)
+(noun)|host|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+(noun)|utensil (generic term)
+service|18
+(noun)|work (generic term)
+(noun)|company (generic term)
+(noun)|religious service|divine service|religious ceremony (generic term)|religious ritual (generic term)
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)|disservice (antonym)
+(noun)|employment (generic term)|work (generic term)
+(noun)|military service|armed service|force (generic term)|personnel (generic term)
+(noun)|accommodation (generic term)
+(noun)|overhaul|inspection and repair|care (generic term)|maintenance (generic term)|upkeep (generic term)
+(noun)|table service|tableware (generic term)
+(noun)|serve|tennis stroke (generic term)|tennis shot (generic term)
+(noun)|serving|service of process|delivery (generic term)|bringing (generic term)
+(noun)|Service|Robert William Service|writer (generic term)|author (generic term)
+(noun)|avail|help|helpfulness (generic term)
+(noun)|servicing|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+(noun)|activity (generic term)
+(verb)|serve|function (generic term)|work (generic term)|operate (generic term)|go (generic term)|run (generic term)
+(verb)|tune (generic term)|tune up (generic term)
+(verb)|serve|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+service abroad|1
+(noun)|sea-duty|shipboard duty|assignment (generic term)|duty assignment (generic term)
+service agency|1
+(noun)|service bureau|service firm|agency (generic term)
+service area|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+service book|1
+(noun)|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+service break|1
+(noun)|victory (generic term)|triumph (generic term)
+service bureau|1
+(noun)|service agency|service firm|agency (generic term)
+service call|1
+(noun)|trip (generic term)
+service cap|1
+(noun)|kepi|peaked cap|yachting cap|cap (generic term)
+service ceiling|1
+(noun)|combat ceiling|ceiling (generic term)
+service charge|1
+(noun)|service fee|charge (generic term)
+service club|2
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+(noun)|center (generic term)|centre (generic term)
+service contract|1
+(noun)|contract (generic term)
+service cutback|1
+(noun)|cutback (generic term)
+service department|2
+(noun)|business department (generic term)
+(noun)|garage|repair shop (generic term)|fix-it shop (generic term)
+service door|1
+(noun)|service entrance|servant's entrance|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+service elevator|1
+(noun)|freight elevator|elevator (generic term)|lift (generic term)
+service entrance|1
+(noun)|service door|servant's entrance|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+service fee|1
+(noun)|service charge|charge (generic term)
+service firm|1
+(noun)|service agency|service bureau|agency (generic term)
+service industry|1
+(noun)|industry (generic term)
+service line|1
+(noun)|baseline|line (generic term)
+service man|1
+(noun)|repairman|maintenance man|mender (generic term)|repairer (generic term)|fixer (generic term)
+service of process|1
+(noun)|service|serving|delivery (generic term)|bringing (generic term)
+service program|1
+(noun)|utility program|utility|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+service road|1
+(noun)|frontage road|local road (generic term)|local street (generic term)
+service routine|1
+(noun)|utility routine|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+service staff|1
+(noun)|maintenance staff|staff (generic term)
+service station|1
+(noun)|station (generic term)
+service stripe|1
+(noun)|hashmark|hash mark|insignia (generic term)
+service tree|2
+(noun)|sorb apple|sorb apple tree|Sorbus domestica|mountain ash (generic term)
+(noun)|Juneberry|serviceberry|shadbush|shadblow|shrub (generic term)|bush (generic term)
+serviceability|1
+(noun)|serviceableness|usableness|useableness|usability|utility (generic term)|usefulness (generic term)
+serviceable|3
+(adj)|durable (similar term)|long-wearing (similar term)|functional (similar term)|usable (similar term)|useable (similar term)|in working order (similar term)|operable (similar term)|operational (similar term)|functional (related term)|practical (related term)|useful (related term)|utile (related term)|unserviceable (antonym)
+(adj)|useful (similar term)|utile (similar term)
+(adj)|practical (similar term)
+serviceableness|1
+(noun)|serviceability|usableness|useableness|usability|utility (generic term)|usefulness (generic term)
+serviceberry|2
+(noun)|Juneberry|service tree|shadbush|shadblow|shrub (generic term)|bush (generic term)
+(noun)|saskatoon|shadberry|juneberry|berry (generic term)
+serviceman|1
+(noun)|military man|man|military personnel|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)|civilian (antonym)
+services|1
+(noun)|employment (generic term)|work (generic term)
+servicing|1
+(noun)|service|coupling (generic term)|mating (generic term)|pairing (generic term)|conjugation (generic term)|union (generic term)|sexual union (generic term)
+serviette|1
+(noun)|napkin|table napkin|table linen (generic term)|napery (generic term)
+servile|2
+(adj)|bootlicking (similar term)|fawning (similar term)|sycophantic (similar term)|toadyish (similar term)|obsequious (similar term)|slavish (similar term)|subservient (similar term)|submissive (similar term)|slavelike (similar term)|unservile (antonym)
+(adj)|slave (similar term)
+servilely|1
+(adv)|obsequiously|subserviently
+servility|1
+(noun)|obsequiousness|subservience|submissiveness (generic term)
+serving|2
+(noun)|helping|portion|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|service|service of process|delivery (generic term)|bringing (generic term)
+serving cart|1
+(noun)|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+serving dish|1
+(noun)|dish (generic term)
+serving girl|1
+(noun)|servant girl|servant (generic term)|retainer (generic term)
+servitor|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+servitude|1
+(noun)|bondage (generic term)|slavery (generic term)|thrall (generic term)|thralldom (generic term)|thraldom (generic term)
+servo|2
+(adj)|servomechanical|control system (related term)
+(noun)|servomechanism|servosystem|control system (generic term)
+servomechanical|1
+(adj)|servo|control system (related term)
+servomechanism|1
+(noun)|servo|servosystem|control system (generic term)
+servosystem|1
+(noun)|servo|servomechanism|control system (generic term)
+serzone|1
+(noun)|nefazodone|Serzone|antidepressant (generic term)|antidepressant drug (generic term)
+sesame|1
+(noun)|benne|benni|benny|Sesamum indicum|herb (generic term)|herbaceous plant (generic term)
+sesame family|1
+(noun)|Pedaliaceae|family Pedaliaceae|plant family (generic term)
+sesame oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+sesame seed|1
+(noun)|benniseed|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+sesamoid|1
+(noun)|sesamoid bone|os sesamoideum|bone (generic term)|os (generic term)
+sesamoid bone|1
+(noun)|sesamoid|os sesamoideum|bone (generic term)|os (generic term)
+sesamum|1
+(noun)|Sesamum|genus Sesamum|plant genus (generic term)
+sesamum indicum|1
+(noun)|sesame|benne|benni|benny|Sesamum indicum|herb (generic term)|herbaceous plant (generic term)
+sesbania|1
+(noun)|legume (generic term)|leguminous plant (generic term)
+sesbania exaltata|1
+(noun)|Colorado River hemp|Sesbania exaltata|sesbania (generic term)
+sesbania grandiflora|1
+(noun)|scarlet wisteria tree|vegetable hummingbird|Sesbania grandiflora|tree (generic term)
+seseli|1
+(noun)|Seseli|genus Seseli|rosid dicot genus (generic term)
+sesotho|1
+(noun)|Sesotho|Basuto|Sotho (generic term)
+sesquipedalia|1
+(noun)|sesquipedalian|polysyllable (generic term)|polysyllabic word (generic term)
+sesquipedalian|3
+(adj)|pretentious (similar term)
+(adj)|polysyllabic|long (similar term)
+(noun)|sesquipedalia|polysyllable (generic term)|polysyllabic word (generic term)
+sesquipedality|1
+(noun)|expressive style (generic term)|style (generic term)
+sess|1
+(noun)|pot|grass|green goddess|dope|weed|gage|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+sessile|2
+(adj)|attached|vagile (antonym)
+(adj)|stalkless|pedunculate (antonym)
+sessile polyp|1
+(noun)|polyp (generic term)|polypus (generic term)
+sessile trillium|1
+(noun)|red trillium|toadshade|Trillium sessile|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+session|4
+(noun)|conference (generic term)|group discussion (generic term)
+(noun)|school term|academic term|academic session|term (generic term)
+(noun)|meeting (generic term)|coming together (generic term)
+(noun)|seance|sitting|meeting (generic term)|get together (generic term)
+session cookie|1
+(noun)|cookie (generic term)
+sessions|1
+(noun)|Sessions|Roger Sessions|Roger Huntington Sessions|composer (generic term)
+sestet|5
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sextuplet|hexad|digit (generic term)|figure (generic term)
+(noun)|sextet|sextette|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|sextet|sextette|set (generic term)
+(noun)|sextet|sextette|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|stanza (generic term)
+set|45
+(adj)|fit|primed|ready (similar term)
+(adj)|fixed|rigid|nonmoving (similar term)|unmoving (similar term)
+(adj)|located|placed|situated|settled (similar term)
+(adj)|laid|arranged (similar term)|ordered (similar term)
+(adj)|down (similar term)
+(adj)|determined|dictated|settled (similar term)
+(adj)|hardened|hard (similar term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|abstraction (generic term)
+(noun)|exercise set|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+(noun)|stage set|representation (generic term)
+(noun)|circle|band|lot|social group (generic term)
+(noun)|bent|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|hardening|solidifying|solidification|curing|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|Set|Seth|Egyptian deity (generic term)
+(noun)|descent (generic term)
+(noun)|readiness|cognitive state (generic term)|state of mind (generic term)
+(noun)|electronic equipment (generic term)
+(verb)|put|place|pose|position|lay|move (generic term)|displace (generic term)|lay out (related term)|set down (related term)|set back (related term)|set up (related term)|set up (related term)|set down (related term)|set up (related term)|set up (related term)|set up (related term)|set out (related term)|put over (related term)|put back (related term)|put back (related term)|put off (related term)|put down (related term)|put away (related term)|put together (related term)|put on (related term)|put up (related term)|put down (related term)|put across (related term)
+(verb)|determine
+(verb)|specify|determine|fix|limit|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|mark|lay down (generic term)|establish (generic term)|make (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|set off (related term)|set up (related term)|set off (related term)|set apart (related term)|set aside (related term)|set off (related term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|fix|prepare|set up|ready|gear up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)|set ahead (related term)
+(verb)|localize|localise|place|stage (generic term)|present (generic term)|represent (generic term)
+(verb)|go down|go under|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|rise (antonym)
+(verb)|arrange|compose (generic term)|write (generic term)
+(verb)|plant|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|originate (generic term)|initiate (generic term)|start (generic term)
+(verb)|jell|congeal|solidify (generic term)
+(verb)|typeset|print (generic term)|impress (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|countersink|bury (generic term)|sink (generic term)
+(verb)|hone (generic term)
+(verb)|sic|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|place|put|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|rig|set up|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|set up|lay out|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|adjust|correct|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|fructify|reproduce (generic term)|procreate (generic term)|multiply (generic term)
+(verb)|dress|arrange|do|coif|coiffe|coiffure|groom (generic term)|neaten (generic term)
+set-apart|1
+(adj)|detached|isolated|separated|separate (similar term)
+set-aside|1
+(adj)|booked|engaged|reserved (similar term)
+set-back|1
+(noun)|setoff|offset|structure (generic term)|construction (generic term)
+set-to|1
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+set ablaze|1
+(verb)|set aflame|set on fire|set afire|burn (generic term)|combust (generic term)
+set about|3
+(verb)|go about|approach|act (generic term)|move (generic term)
+(verb)|undertake|attempt|initiate (generic term)|pioneer (generic term)
+(verb)|get down|begin|get|start out|start|set out|commence|end (antonym)
+set afire|1
+(verb)|set ablaze|set aflame|set on fire|burn (generic term)|combust (generic term)
+set aflame|1
+(verb)|set ablaze|set on fire|set afire|burn (generic term)|combust (generic term)
+set ahead|1
+(verb)|advance|set (generic term)
+set apart|2
+(verb)|assign|specify|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|sequester|sequestrate|keep apart|isolate|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+set ashore|1
+(verb)|land|shore|arrive (generic term)|get (generic term)|come (generic term)
+set aside|2
+(verb)|allow|appropriate|earmark|reserve|assign (generic term)|allot (generic term)|portion (generic term)
+(verb)|suspend|change (generic term)|alter (generic term)|modify (generic term)
+set back|3
+(verb)|postpone|prorogue|hold over|put over|table|shelve|defer|remit|put off|delay (generic term)
+(verb)|impede (generic term)|hinder (generic term)
+(verb)|knock back|put back|cost (generic term)|be (generic term)
+set chisel|1
+(noun)|cold chisel|chisel (generic term)
+set decoration|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+set down|6
+(verb)|write down|get down|put down|write (generic term)
+(verb)|land|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|put down|place down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|disembark|debark|land (generic term)|set down (generic term)|embark (antonym)
+(verb)|drop|drop off|put down|unload|discharge|deliver (generic term)
+set forth|2
+(verb)|expound|exposit|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)
+(verb)|depart|part|start|start out|set off|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+set free|1
+(verb)|liberate|free (generic term)|discharge (generic term)
+set gun|1
+(noun)|spring gun|gun (generic term)
+set in|2
+(verb)|kick in|begin (generic term)|start (generic term)
+(verb)|blow (generic term)
+set in motion|1
+(verb)|launch|move (generic term)|displace (generic term)
+set in stone|1
+(adj)|carved in stone|unchangeable (similar term)
+set off|7
+(verb)|trip|actuate|trigger|activate|spark off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+(verb)|depart|part|start|start out|set forth|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+(verb)|bring out|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|explode|detonate|blow up|change integrity (generic term)
+(verb)|cancel|offset|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+(verb)|incite|instigate|stir up|provoke (generic term)|stimulate (generic term)
+set on|1
+(verb)|assail|assault|attack
+set on fire|1
+(verb)|set ablaze|set aflame|set afire|burn (generic term)|combust (generic term)
+set out|3
+(verb)|get down|begin|get|start out|start|set about|commence|end (antonym)
+(verb)|range|array|lay out|arrange (generic term)|set up (generic term)
+(verb)|depart|part|start|start out|set forth|set off|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+set phrase|1
+(noun)|idiom|idiomatic expression|phrasal idiom|phrase|saying (generic term)|expression (generic term)|locution (generic term)
+set piece|1
+(noun)|scenery (generic term)|scene (generic term)
+set point|1
+(noun)|point (generic term)
+set shot|1
+(noun)|basketball shot (generic term)
+set square|1
+(noun)|try square (generic term)
+set theory|1
+(noun)|pure mathematics (generic term)
+set to music|1
+(verb)|compose (generic term)|write (generic term)
+set up|16
+(adj)|established (similar term)|constituted (similar term)
+(verb)|establish|found|launch|open (generic term)|open up (generic term)|abolish (antonym)
+(verb)|assemble|piece|put together|tack|tack together|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+(verb)|raise|erect|rear|put up|construct (generic term)|build (generic term)|make (generic term)|level (antonym)
+(verb)|lay out|set|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|arrange|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)|disarrange (antonym)
+(verb)|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|ensnare|entrap|frame|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|effect|effectuate|cause (generic term)|do (generic term)|make (generic term)
+(verb)|install|instal|put in|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|install|instal|establish
+(verb)|rig|cheat (generic term)|chisel (generic term)
+(verb)|pitch|rear (generic term)|erect (generic term)
+(verb)|arrange|put|order|organize (generic term)|organise (generic term)
+(verb)|rig|set|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|fix|prepare|ready|gear up|set|change (generic term)|alter (generic term)|modify (generic term)
+set upon|1
+(verb)|beset|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+seta|2
+(noun)|podetium (generic term)
+(noun)|hair (generic term)
+setaceous|1
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|spiny|thorny|armed (similar term)
+setaria|1
+(noun)|Setaria|genus Setaria|monocot genus (generic term)|liliopsid genus (generic term)
+setaria glauca|1
+(noun)|yellow bristlegrass|yellow bristle grass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail (generic term)|foxtail grass (generic term)
+setaria italica|1
+(noun)|foxtail millet|Italian millet|Hungarian grass|Setaria italica|foxtail (generic term)|foxtail grass (generic term)
+setaria italica rubrofructa|1
+(noun)|Siberian millet|Setaria italica rubrofructa|foxtail millet (generic term)|Italian millet (generic term)|Hungarian grass (generic term)|Setaria italica (generic term)
+setaria italica stramineofructa|1
+(noun)|German millet|golden wonder millet|Setaria italica stramineofructa|foxtail millet (generic term)|Italian millet (generic term)|Hungarian grass (generic term)|Setaria italica (generic term)
+setaria viridis|1
+(noun)|green bristlegrass|green foxtail|rough bristlegrass|bottle-grass|bottle grass|Setaria viridis|foxtail (generic term)|foxtail grass (generic term)
+setback|1
+(noun)|reverse|reversal|blow|black eye|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+sete quedas|1
+(noun)|Sete Quedas|Guaira|Guaira Falls|waterfall (generic term)|falls (generic term)
+seth|2
+(noun)|Seth|man (generic term)|adult male (generic term)
+(noun)|Set|Seth|Egyptian deity (generic term)
+seth thomas|1
+(noun)|Thomas|Seth Thomas|clocksmith (generic term)|clockmaker (generic term)
+setline|1
+(noun)|trawl|trawl line|spiller|trotline|fishing line (generic term)
+setoff|1
+(noun)|set-back|offset|structure (generic term)|construction (generic term)
+seton|1
+(noun)|Seton|Elizabeth Seton|Saint Elizabeth Ann Bayley Seton|Mother Seton|religious leader (generic term)
+setophaga|1
+(noun)|Setophaga|genus Setophaga|bird genus (generic term)
+setophaga ruticilla|1
+(noun)|American redstart|redstart|Setophaga ruticilla|flycatching warbler (generic term)
+setose|1
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setaceous|spiny|thorny|armed (similar term)
+setscrew|1
+(noun)|screw (generic term)
+setswana|1
+(noun)|Tswana|Setswana|Sechuana|Sotho (generic term)
+sett|1
+(noun)|cobble|cobblestone|paving stone (generic term)
+settee|2
+(noun)|settle|bench (generic term)
+(noun)|sofa (generic term)|couch (generic term)|lounge (generic term)
+setter|2
+(noun)|compositor|typesetter|typographer|printer (generic term)|pressman (generic term)
+(noun)|sporting dog (generic term)|gun dog (generic term)
+setterwort|1
+(noun)|stinking hellebore|bear's foot|Helleborus foetidus|hellebore (generic term)
+setting|6
+(noun)|scene|environment (generic term)|environs (generic term)|surroundings (generic term)|surround (generic term)
+(noun)|background|scope|environment (generic term)
+(noun)|mise en scene|stage setting|stage (generic term)
+(noun)|position (generic term)|place (generic term)
+(noun)|place setting|service (generic term)|table service (generic term)
+(noun)|mount|mounting (generic term)
+setting hen|1
+(noun)|brood hen|broody|broody hen|sitter|hen (generic term)|biddy (generic term)
+settle|22
+(noun)|settee|bench (generic term)
+(verb)|settle down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|decide|resolve|adjudicate|end (generic term)|terminate (generic term)
+(verb)|square off|square up|determine|conclude (generic term)|resolve (generic term)
+(verb)|locate
+(verb)|reconcile|patch up|make up|conciliate|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|sink|go down|go under|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|sink in (related term)|float (antonym)
+(verb)|root|take root|steady down|settle down|stabilize (generic term)|stabilise (generic term)
+(verb)|become (generic term)|go (generic term)|get (generic term)
+(verb)|build up (generic term)|develop (generic term)
+(verb)|stop (generic term)|halt (generic term)
+(verb)|change (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|accept (generic term)|consent (generic term)|go for (generic term)
+(verb)|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|arrange (generic term)|fix up (generic term)
+(verb)|sink (generic term)
+(verb)|subside|sink (generic term)|settle (generic term)|go down (generic term)|go under (generic term)
+(verb)|ensconce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|get back|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|finalize|finalise|nail down|end (generic term)|terminate (generic term)|settle on (related term)
+(verb)|fall|descend|come (generic term)
+settle down|3
+(verb)|settle|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|settle|root|take root|steady down|stabilize (generic term)|stabilise (generic term)
+(verb)|calm|calm down|cool off|chill out|simmer down|cool it|change state (generic term)|turn (generic term)
+settle on|1
+(verb)|fixate|freeze (generic term)|stop dead (generic term)
+settled|5
+(adj)|accomplished (similar term)|effected (similar term)|established (similar term)|appointed (similar term)|decreed (similar term)|ordained (similar term)|prescribed (similar term)|determined (similar term)|dictated (similar term)|set (similar term)|deterministic (similar term)|firm (similar term)|preconcerted (similar term)|unsettled (antonym)
+(adj)|based (similar term)|built-up (similar term)|located (similar term)|placed (similar term)|set (similar term)|situated (similar term)|nonnomadic (similar term)|relocated (similar term)|resettled (similar term)|unsettled (antonym)
+(adj)|colonized|colonised|inhabited (similar term)
+(adj)|defined|formed|definite (similar term)
+(adj)|calm (similar term)
+settlement|7
+(noun)|colony|body (generic term)
+(noun)|village|small town|community (generic term)
+(noun)|agreement (generic term)|understanding (generic term)
+(noun)|colonization|colonisation|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+(noun)|resolution|closure|decision making (generic term)|deciding (generic term)
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|liquidation|termination (generic term)|ending (generic term)|conclusion (generic term)
+settlement house|1
+(noun)|center (generic term)|centre (generic term)
+settler|3
+(noun)|colonist|migrant (generic term)|migrator (generic term)
+(noun)|negotiator (generic term)|negotiant (generic term)|treater (generic term)
+(noun)|clerk (generic term)
+settling|1
+(noun)|subsiding|subsidence|sinking (generic term)
+settlings|1
+(noun)|dregs|grounds|sediment (generic term)|deposit (generic term)
+setubal|1
+(noun)|Setubal|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+setup|3
+(noun)|apparatus|equipment (generic term)
+(noun)|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|frame-up|falsification (generic term)|falsehood (generic term)
+seurat|1
+(noun)|Seurat|Georges Seurat|Georges Pierre Seurat|painter (generic term)
+sevastopol|1
+(noun)|Sebastopol|Sevastopol|city (generic term)|metropolis (generic term)|urban center (generic term)
+seven|2
+(adj)|7|vii|cardinal (similar term)
+(noun)|7|VII|sevener|heptad|septet|septenary|digit (generic term)|figure (generic term)
+seven-day|1
+(adj)|weeklong|long (similar term)
+seven-fold|1
+(adj)|septuple|sevenfold|multiple (similar term)
+seven-membered|1
+(adj)|7-membered|membered (similar term)
+seven-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+seven-spot|1
+(noun)|spot (generic term)
+seven-up|1
+(noun)|old sledge|all fours (generic term)|high-low-jack (generic term)
+seven hills of rome|1
+(noun)|Seven Hills of Rome|hill (generic term)
+seven iron|1
+(noun)|mashie niblick|iron (generic term)
+seven seas|1
+(noun)|body of water (generic term)|water (generic term)
+seven wonders of the ancient world|1
+(noun)|Seven Wonders of the Ancient World|Seven Wonders of the World|memorial (generic term)|monument (generic term)
+seven wonders of the world|1
+(noun)|Seven Wonders of the Ancient World|Seven Wonders of the World|memorial (generic term)|monument (generic term)
+seven years' war|1
+(noun)|Seven Years' War|war (generic term)|warfare (generic term)
+sevener|1
+(noun)|seven|7|VII|heptad|septet|septenary|digit (generic term)|figure (generic term)
+sevenfold|1
+(adj)|septuple|seven-fold|multiple (similar term)
+sevens|1
+(noun)|fantan|parliament|card game (generic term)|cards (generic term)
+sevensome|1
+(noun)|septet|septette|gathering (generic term)|assemblage (generic term)
+seventeen|2
+(adj)|17|xvii|cardinal (similar term)
+(noun)|17|XVII|large integer (generic term)
+seventeen-year locust|1
+(noun)|periodical cicada|Magicicada septendecim|cicada (generic term)|cicala (generic term)
+seventeenth|2
+(adj)|17th|ordinal (similar term)
+(noun)|rank (generic term)
+seventh|4
+(adj)|7th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-seventh|common fraction (generic term)|simple fraction (generic term)
+(noun)|interval (generic term)|musical interval (generic term)
+seventh-day adventism|1
+(noun)|Seventh-Day Adventism|Adventism (generic term)|Second Adventism (generic term)
+seventh avenue|1
+(noun)|Seventh Avenue|avenue (generic term)|boulevard (generic term)
+seventh chord|1
+(noun)|chord (generic term)
+seventh cranial nerve|1
+(noun)|facial|facial nerve|nervus facialis|cranial nerve (generic term)
+seventh crusade|1
+(noun)|Seventh Crusade|Crusade (generic term)
+seventh heaven|1
+(noun)|bliss|blissfulness|cloud nine|walking on air|elation (generic term)
+seventies|2
+(noun)|1970s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|mid-seventies|time of life (generic term)
+seventieth|2
+(adj)|70th|ordinal (similar term)
+(noun)|rank (generic term)
+seventy|2
+(adj)|70|lxx|cardinal (similar term)
+(noun)|70|LXX|large integer (generic term)
+seventy-eight|3
+(adj)|78|lxxviii|cardinal (similar term)
+(noun)|78|LXXVIII|large integer (generic term)
+(noun)|78|phonograph record (generic term)|phonograph recording (generic term)|record (generic term)|disk (generic term)|disc (generic term)|platter (generic term)
+seventy-fifth|1
+(adj)|75th|ordinal (similar term)
+seventy-five|1
+(adj)|75|lxxv|cardinal (similar term)
+seventy-four|1
+(adj)|74|lxxiv|cardinal (similar term)
+seventy-nine|1
+(adj)|79|ilxxx|cardinal (similar term)
+seventy-one|1
+(adj)|71|lxxi|cardinal (similar term)
+seventy-seven|1
+(adj)|77|lxxvii|cardinal (similar term)
+seventy-six|1
+(adj)|76|lxxvi|cardinal (similar term)
+seventy-three|1
+(adj)|73|lxxiii|cardinal (similar term)
+seventy-two|1
+(adj)|72|lxxii|cardinal (similar term)
+sever|2
+(verb)|break up|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|discerp|lop|cut (generic term)
+severable|1
+(adj)|dissociable|separable|divisible (similar term)
+severable contract|1
+(noun)|contract (generic term)
+several|3
+(adj)|respective|various|individual (similar term)|single (similar term)
+(adj)|different (similar term)
+(adj)|some (similar term)
+several-seeded|1
+(adj)|multi-seeded|seedy (similar term)
+severalise|2
+(verb)|severalize|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|distinguish|separate|differentiate|secern|secernate|severalize|tell|tell apart|identify (generic term)|place (generic term)
+severalize|2
+(verb)|severalise|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|distinguish|separate|differentiate|secern|secernate|severalise|tell|tell apart|identify (generic term)|place (generic term)
+severally|3
+(adv)|independently
+(adv)|individually|separately|singly|one by one|on an individual basis
+(adv)|respectively
+severalty|2
+(noun)|discreteness|distinctness|separateness|separation (generic term)
+(noun)|ownership (generic term)
+severance|2
+(noun)|rupture|breach|break|rift|falling out|separation (generic term)|breakup (generic term)|detachment (generic term)
+(noun)|severing|cut (generic term)|cutting (generic term)
+severance agreement|1
+(noun)|agreement (generic term)|understanding (generic term)
+severe|6
+(adj)|terrible|wicked|intense (similar term)
+(adj)|hard|knockout|strong (similar term)
+(adj)|austere|stark|stern|plain (similar term)
+(adj)|spartan|nonindulgent (similar term)|strict (similar term)
+(adj)|dangerous|grave|grievous|serious|life-threatening|critical (similar term)
+(adj)|bad (similar term)
+severe acute respiratory syndrome|1
+(noun)|SARS|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+severe combined immunodeficiency|1
+(noun)|severe combined immunodeficiency disease|SCID|immunodeficiency (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+severe combined immunodeficiency disease|1
+(noun)|severe combined immunodeficiency|SCID|immunodeficiency (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+severed|1
+(adj)|cut off|cut (similar term)
+severely|3
+(adv)|badly|gravely|seriously
+(adv)|sternly
+(adv)|hard
+severeness|4
+(noun)|badness|severity|intensity (generic term)|intensiveness (generic term)
+(noun)|asperity|grimness|hardship|rigor|rigour|severity|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|austereness|severity|plainness (generic term)
+(noun)|severity|harshness|rigor|rigour|rigorousness|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+severing|1
+(noun)|severance|cut (generic term)|cutting (generic term)
+severity|4
+(noun)|badness|severeness|intensity (generic term)|intensiveness (generic term)
+(noun)|asperity|grimness|hardship|rigor|rigour|severeness|rigorousness|rigourousness|difficulty (generic term)|difficultness (generic term)
+(noun)|austereness|severeness|plainness (generic term)
+(noun)|severeness|harshness|rigor|rigour|rigorousness|rigourousness|inclemency|hardness|stiffness|sternness (generic term)|strictness (generic term)
+severn|2
+(noun)|Severn|Severn River|river (generic term)
+(noun)|Severn|River Severn|Severn River|river (generic term)
+severn river|2
+(noun)|Severn|Severn River|river (generic term)
+(noun)|Severn|River Severn|Severn River|river (generic term)
+severo ochoa|1
+(noun)|Ochoa|Severo Ochoa|biochemist (generic term)
+sevilla|1
+(noun)|Sevilla|Seville|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+seville|1
+(noun)|Sevilla|Seville|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+seville orange|2
+(noun)|sour orange|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+(noun)|bitter orange|Seville orange|sour orange|orange (generic term)
+sew|2
+(verb)|run up|sew together|stitch|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|tailor|tailor-make|fashion (generic term)|forge (generic term)
+sew together|1
+(verb)|sew|run up|stitch|fasten (generic term)|fix (generic term)|secure (generic term)
+sewage|1
+(noun)|sewerage|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+sewage disposal|1
+(noun)|disposal (generic term)|disposition (generic term)
+sewage disposal plant|1
+(noun)|disposal plant|plant (generic term)|works (generic term)|industrial plant (generic term)
+sewage farm|1
+(noun)|farm (generic term)
+sewage system|1
+(noun)|sewer system|sewage works|facility (generic term)|installation (generic term)
+sewage works|1
+(noun)|sewage system|sewer system|facility (generic term)|installation (generic term)
+seward|1
+(noun)|Seward|William Henry Seward|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+seward's folly|1
+(noun)|Seward's Folly|transaction (generic term)|dealing (generic term)|dealings (generic term)
+seward peninsula|1
+(noun)|Seward Peninsula|peninsula (generic term)
+sewed|1
+(adj)|sewn|stitched|seamed (similar term)
+sewellel|1
+(noun)|mountain beaver|Aplodontia rufa|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+sewer|3
+(noun)|sewerage|cloaca|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+(noun)|needleworker (generic term)
+(noun)|gutter|toilet|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+sewer gas|1
+(noun)|gas (generic term)
+sewer line|1
+(noun)|sewer main|main (generic term)
+sewer main|1
+(noun)|sewer line|main (generic term)
+sewer rat|1
+(noun)|brown rat (generic term)|Norway rat (generic term)|Rattus norvegicus (generic term)
+sewer system|1
+(noun)|sewage system|sewage works|facility (generic term)|installation (generic term)
+sewer water|1
+(noun)|effluent|wastewater|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+sewerage|2
+(noun)|sewage|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|sewer|cloaca|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+sewing|2
+(noun)|stitching|handicraft (generic term)
+(noun)|stitchery|needlework (generic term)|needlecraft (generic term)
+sewing-machine operator|1
+(noun)|sewer (generic term)
+sewing-machine stitch|1
+(noun)|machine stitch|stitch (generic term)
+sewing basket|1
+(noun)|workbasket (generic term)|workbox (generic term)|workbag (generic term)
+sewing kit|1
+(noun)|kit (generic term)|outfit (generic term)
+sewing machine|1
+(noun)|home appliance (generic term)|household appliance (generic term)|textile machine (generic term)
+sewing needle|2
+(noun)|needle (generic term)
+(noun)|dragonfly|darning needle|devil's darning needle|snake feeder|snake doctor|mosquito hawk|skeeter hawk|odonate (generic term)
+sewing room|1
+(noun)|room (generic term)
+sewn|1
+(adj)|sewed|stitched|seamed (similar term)
+sex|6
+(noun)|sexual activity|sexual practice|sex activity|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|class (generic term)|category (generic term)|family (generic term)
+(noun)|sexual urge|feeling (generic term)
+(noun)|gender|sexuality|physiological property (generic term)
+(verb)|arouse|excite|turn on|wind up|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+sex-change operation|1
+(noun)|transsexual surgery|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+sex-limited|1
+(adj)|feature|characteristic (related term)
+sex-linked|1
+(adj)|organic phenomenon (related term)
+sex-linked disorder|1
+(noun)|chromosomal aberration (generic term)|chromosomal anomaly (generic term)|chrosomal abnormality (generic term)|chromosonal disorder (generic term)
+sex-starved|1
+(adj)|sexy (similar term)
+sex act|1
+(noun)|sexual intercourse|intercourse|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sex activity|1
+(noun)|sexual activity|sexual practice|sex|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sex appeal|1
+(noun)|desirability|desirableness|oomph|attractiveness (generic term)
+sex bomb|1
+(noun)|sex kitten|sexpot|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+sex cell|1
+(noun)|reproductive cell|germ cell|cell (generic term)
+sex change|1
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+sex character|1
+(noun)|sex characteristic|sexual characteristic|feature (generic term)|characteristic (generic term)
+sex characteristic|1
+(noun)|sexual characteristic|sex character|feature (generic term)|characteristic (generic term)
+sex chromatin|1
+(noun)|chromatin (generic term)|chromatin granule (generic term)
+sex chromosome|1
+(noun)|chromosome (generic term)
+sex crime|1
+(noun)|sexual assault|sexual abuse|sex offense|statutory offense (generic term)|statutory offence (generic term)|regulatory offense (generic term)|regulatory offence (generic term)
+sex drive|1
+(noun)|drive (generic term)
+sex gland|1
+(noun)|gonad|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+sex hormone|1
+(noun)|steroid hormone|steroid|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+sex kitten|1
+(noun)|sexpot|sex bomb|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+sex linkage|1
+(noun)|organic phenomenon (generic term)
+sex manual|1
+(noun)|manual (generic term)
+sex object|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sex offender|1
+(noun)|convict (generic term)
+sex offense|1
+(noun)|sexual assault|sexual abuse|sex crime|statutory offense (generic term)|statutory offence (generic term)|regulatory offense (generic term)|regulatory offence (generic term)
+sex organ|1
+(noun)|reproductive organ|organ (generic term)
+sex segregation|1
+(noun)|purdah|segregation (generic term)|separatism (generic term)
+sex up|1
+(verb)|eroticize|change (generic term)|alter (generic term)|modify (generic term)
+sexadecimal notation|1
+(noun)|hexadecimal notation|mathematical notation (generic term)
+sexadecimal number system|1
+(noun)|hexadecimal number system|hexadecimal system|positional notation (generic term)|positional representation system (generic term)
+sexagenarian|2
+(adj)|old (similar term)
+(noun)|oldster (generic term)|old person (generic term)|senior citizen (generic term)|golden ager (generic term)
+sexagesimal|1
+(adj)|common fraction|simple fraction (related term)
+sexcapade|1
+(noun)|escapade (generic term)|lark (generic term)
+sexed|2
+(adj)|sexual (similar term)
+(adj)|sexy (similar term)
+sexiness|1
+(noun)|amorousness|eroticism|erotism|amativeness|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+sexism|1
+(noun)|discrimination (generic term)|favoritism (generic term)|favouritism (generic term)
+sexist|2
+(adj)|prejudiced (similar term)|discriminatory (similar term)
+(noun)|male chauvinist|antifeminist (generic term)
+sexless|2
+(adj)|neuter|asexual (similar term)|nonsexual (similar term)
+(adj)|unsexy (similar term)
+sexlessness|1
+(noun)|asexuality|physiological property (generic term)
+sexploitation|1
+(noun)|exploitation (generic term)|victimization (generic term)|victimisation (generic term)|using (generic term)
+sexpot|1
+(noun)|sex kitten|sex bomb|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+sext|1
+(noun)|canonical hour (generic term)
+sextant|2
+(noun)|angular unit (generic term)
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+sextet|5
+(noun)|sextette|sestet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+(noun)|sextette|sestet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|sextette|sestet|set (generic term)
+(noun)|sextette|sixsome|gathering (generic term)|assemblage (generic term)
+sextette|4
+(noun)|sextet|sestet|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|sextet|sestet|set (generic term)
+(noun)|sextet|sixsome|gathering (generic term)|assemblage (generic term)
+(noun)|sextet|sestet|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+sextillion|1
+(noun)|large integer (generic term)
+sexton|2
+(noun)|Sexton|Anne Sexton|poet (generic term)
+(noun)|sacristan|church officer (generic term)|caretaker (generic term)
+sextuple|1
+(adj)|sixfold|six-fold|multiple (similar term)
+sextuplet|1
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|hexad|digit (generic term)|figure (generic term)
+sexual|3
+(adj)|physiological property (related term)
+(adj)|intersexual (similar term)|sexed (similar term)|unisexual (similar term)|asexual (antonym)
+(adj)|intimate|sexy (similar term)
+sexual abstention|1
+(noun)|chastity|celibacy|abstinence (generic term)
+sexual abuse|1
+(noun)|sexual assault|sex crime|sex offense|statutory offense (generic term)|statutory offence (generic term)|regulatory offense (generic term)|regulatory offence (generic term)
+sexual activity|1
+(noun)|sexual practice|sex|sex activity|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sexual arousal|1
+(noun)|arousal (generic term)
+sexual assault|1
+(noun)|sexual abuse|sex crime|sex offense|statutory offense (generic term)|statutory offence (generic term)|regulatory offense (generic term)|regulatory offence (generic term)
+sexual characteristic|1
+(noun)|sex characteristic|sex character|feature (generic term)|characteristic (generic term)
+sexual climax|1
+(noun)|orgasm|climax|coming|consummation (generic term)
+sexual congress|1
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual conquest|1
+(noun)|score|seduction (generic term)|conquest (generic term)
+sexual desire|1
+(noun)|eros|concupiscence|physical attraction|desire (generic term)
+sexual discrimination|1
+(noun)|sexism (generic term)
+sexual harassment|1
+(noun)|harassment (generic term)|molestation (generic term)
+sexual immorality|1
+(noun)|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+sexual intercourse|1
+(noun)|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|sexual relation|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual inversion|1
+(noun)|inversion|homosexuality (generic term)|homosexualism (generic term)|homoeroticism (generic term)|queerness (generic term)|gayness (generic term)
+sexual love|2
+(noun)|love|erotic love|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+(noun)|lovemaking|making love|love|love life|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual morality|1
+(noun)|virtue|chastity|morality (generic term)
+sexual perversion|1
+(noun)|perversion|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual pleasure|1
+(noun)|pleasure (generic term)|pleasance (generic term)
+sexual practice|1
+(noun)|sexual activity|sex|sex activity|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sexual relation|1
+(noun)|sexual intercourse|intercourse|sex act|copulation|coitus|coition|sexual congress|congress|relation|carnal knowledge|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual relationship|1
+(noun)|relationship (generic term)
+sexual reproduction|1
+(noun)|amphimixis|reproduction (generic term)
+sexual union|1
+(noun)|coupling|mating|pairing|conjugation|union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sexual urge|1
+(noun)|sex|feeling (generic term)
+sexualise|1
+(verb)|sexualize|change (generic term)|alter (generic term)|modify (generic term)
+sexuality|1
+(noun)|sex|gender|physiological property (generic term)
+sexualize|1
+(verb)|sexualise|change (generic term)|alter (generic term)|modify (generic term)
+sexually attractive|1
+(adj)|delectable|desirable (similar term)
+sexually transmitted disease|1
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|dose|contagious disease (generic term)|contagion (generic term)
+sexy|2
+(adj)|aroused (similar term)|horny (similar term)|randy (similar term)|ruttish (similar term)|steamy (similar term)|turned on (similar term)|autoerotic (similar term)|coquettish (similar term)|flirtatious (similar term)|erotic (similar term)|titillating (similar term)|blue (similar term)|gamy (similar term)|gamey (similar term)|juicy (similar term)|naughty (similar term)|racy (similar term)|risque (similar term)|spicy (similar term)|hot (similar term)|intimate (similar term)|sexual (similar term)|juicy (similar term)|luscious (similar term)|red-hot (similar term)|toothsome (similar term)|voluptuous (similar term)|lascivious (similar term)|lewd (similar term)|libidinous (similar term)|lustful (similar term)|lecherous (similar term)|leering (similar term)|lubricious (similar term)|lustful (similar term)|prurient (similar term)|salacious (similar term)|orgiastic (similar term)|oversexed (similar term)|highly-sexed (similar term)|pornographic (similar term)|provocative (similar term)|raunchy (similar term)|sexed (similar term)|sex-starved (similar term)|exciting (related term)|seductive (related term)|unsexy (antonym)
+(adj)|aphrodisiac|aphrodisiacal|anaphrodisiac (antonym)
+seychelles|2
+(noun)|Seychelles|Republic of Seychelles|country (generic term)|state (generic term)|land (generic term)
+(noun)|Seychelles|Seychelles islands|island (generic term)
+seychelles islands|1
+(noun)|Seychelles|Seychelles islands|island (generic term)
+seychelles monetary unit|1
+(noun)|Seychelles monetary unit|monetary unit (generic term)
+seychelles rupee|1
+(noun)|Seychelles rupee|rupee|Seychelles monetary unit (generic term)
+seychellois|2
+(adj)|Seychellois|country|state|land (related term)
+(noun)|Seychellois|native (generic term)|indigen (generic term)|indigene (generic term)
+seyhan|2
+(noun)|Seyhan|Seyhan River|river (generic term)
+(noun)|Adana|Seyhan|city (generic term)|metropolis (generic term)|urban center (generic term)
+seyhan river|1
+(noun)|Seyhan|Seyhan River|river (generic term)
+seymour|1
+(noun)|Seymour|Jane Seymour|queen (generic term)
+sezession|1
+(noun)|secession|school (generic term)|artistic movement (generic term)|art movement (generic term)
+sfax|1
+(noun)|Sfax|Safaqis|city (generic term)|metropolis (generic term)|urban center (generic term)
+sforzando|2
+(noun)|chord (generic term)
+(noun)|musical notation (generic term)
+sg|1
+(noun)|seaborgium|Sg|element 106|atomic number 106|chemical element (generic term)|element (generic term)
+sga infant|1
+(noun)|small-for-gestational-age infant|SGA infant|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+sgml|1
+(noun)|standard generalized markup language|SGML|markup language (generic term)
+sgraffito|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+sha'ban|1
+(noun)|Sha'ban|Shaaban|Islamic calendar month (generic term)
+shaaban|1
+(noun)|Sha'ban|Shaaban|Islamic calendar month (generic term)
+shabbiness|2
+(noun)|seediness|manginess|sleaziness|inelegance (generic term)
+(noun)|injustice|unfairness|iniquity|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+shabby|2
+(adj)|moth-eaten|ratty|tatty|worn (similar term)
+(adj)|dishonorable (similar term)|dishonourable (similar term)
+shabby-genteel|1
+(adj)|proud (similar term)
+shabu|1
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|trash|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+shabuoth|1
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+shack|3
+(noun)|hovel|hut|hutch|shanty|shelter (generic term)
+(verb)|reside|domicile|domiciliate|dwell (generic term)|live (generic term)|inhabit (generic term)
+(verb)|trail|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+shack up|1
+(verb)|cohabit|dwell (generic term)|live (generic term)|inhabit (generic term)
+shackle|4
+(noun)|bond|hamper|trammel|restraint (generic term)|constraint (generic term)
+(noun)|bar (generic term)
+(verb)|pinion|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|fetter|restrain (generic term)|confine (generic term)|hold (generic term)
+shackled|1
+(adj)|fettered|in bonds|in fetters|bound (similar term)
+shad|2
+(noun)|fish (generic term)
+(noun)|clupeid fish (generic term)|clupeid (generic term)|food fish (generic term)
+shad-flower|1
+(noun)|whitlow grass|shadflower|Draba verna|draba (generic term)
+shad-like|1
+(adj)|animal (similar term)
+shad roe|1
+(noun)|roe (generic term)|hard roe (generic term)
+shadberry|1
+(noun)|saskatoon|serviceberry|juneberry|berry (generic term)
+shadblow|1
+(noun)|Juneberry|serviceberry|service tree|shadbush|shrub (generic term)|bush (generic term)
+shadbush|1
+(noun)|Juneberry|serviceberry|service tree|shadblow|shrub (generic term)|bush (generic term)
+shaddock|2
+(noun)|pomelo|pomelo tree|pummelo|Citrus maxima|Citrus grandis|Citrus decumana|citrus (generic term)|citrus tree (generic term)
+(noun)|pomelo|citrus (generic term)|citrus fruit (generic term)|citrous fruit (generic term)
+shade|11
+(noun)|shadiness|shadowiness|semidarkness (generic term)
+(noun)|tint|tincture|tone|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|nuance|nicety|subtlety|refinement|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|inferiority (generic term)|lower status (generic term)|lower rank (generic term)
+(noun)|tad|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|ghost|spook|wraith|specter|spectre|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+(noun)|representation (generic term)
+(verb)|shadow|shade off|obscure (generic term)|bedim (generic term)|overcloud (generic term)
+(verb)|fill in|draw (generic term)|paint (generic term)
+(verb)|screen (generic term)|block out (generic term)
+shade off|1
+(verb)|shadow|shade|obscure (generic term)|bedim (generic term)|overcloud (generic term)
+shade tree|1
+(noun)|tree (generic term)
+shaded|2
+(adj)|murky (similar term)|mirky (similar term)|shady (similar term)|shadowed (similar term)|shadowy (similar term)|umbrageous (similar term)|unshaded (antonym)
+(adj)|hatched (similar term)|crosshatched (similar term)|unshaded (antonym)
+shades|1
+(noun)|sunglasses|dark glasses|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+shades of|1
+(noun)|reminder (generic term)
+shadflower|1
+(noun)|whitlow grass|shad-flower|Draba verna|draba (generic term)
+shadfly|1
+(noun)|mayfly|dayfly|ephemerid (generic term)|ephemeropteran (generic term)
+shadiness|2
+(noun)|shade|shadowiness|semidarkness (generic term)
+(noun)|unlawfulness (generic term)
+shading|2
+(noun)|marking (generic term)
+(noun)|blending|gradation (generic term)|graduation (generic term)
+shadow|12
+(noun)|shade (generic term)|shadiness (generic term)|shadowiness (generic term)
+(noun)|darkness|dark|scene (generic term)
+(noun)|apparition|phantom|phantasm|phantasma|fantasm|illusion (generic term)|semblance (generic term)
+(noun)|foreboding (generic term)|premonition (generic term)|presentiment (generic term)|boding (generic term)
+(noun)|trace|vestige|tincture|indication (generic term)|indicant (generic term)
+(noun)|recourse (generic term)|refuge (generic term)|resort (generic term)
+(noun)|presence (generic term)
+(noun)|tail|shadower|follower (generic term)|spy (generic term)
+(noun)|follower (generic term)
+(verb)|follow (generic term)
+(verb)|shade|shade off|obscure (generic term)|bedim (generic term)|overcloud (generic term)
+(verb)|overshadow|dwarf|dominate (generic term)|command (generic term)|overlook (generic term)|overtop (generic term)
+shadow box|1
+(noun)|box (generic term)
+shadow cabinet|1
+(noun)|cabinet (generic term)
+shadow play|1
+(noun)|galanty show|shadow show|show (generic term)
+shadow show|1
+(noun)|galanty show|shadow play|show (generic term)
+shadowbox|1
+(verb)|box (generic term)
+shadowboxing|1
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+shadowed|1
+(adj)|shady|shadowy|umbrageous|shaded (similar term)
+shadower|1
+(noun)|tail|shadow|follower (generic term)|spy (generic term)
+shadowgraph|1
+(noun)|radiogram|radiograph|skiagraph|skiagram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+shadowiness|1
+(noun)|shade|shadiness|semidarkness (generic term)
+shadowing|2
+(adj)|tailing|following (similar term)
+(noun)|tailing|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+shadowy|3
+(adj)|shady|shadowed|umbrageous|shaded (similar term)
+(adj)|dim|faint|vague|wispy|indistinct (similar term)
+(adj)|wraithlike|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+shady|4
+(adj)|fly-by-night|untrustworthy (similar term)|untrusty (similar term)
+(adj)|louche|disreputable (similar term)
+(adj)|fishy|funny|suspect|suspicious|questionable (similar term)
+(adj)|shadowed|shadowy|umbrageous|shaded (similar term)
+shaft|14
+(noun)|line (generic term)
+(noun)|shot|slam|dig|barb|jibe|gibe|remark (generic term)|comment (generic term)
+(noun)|rod (generic term)
+(noun)|beam|beam of light|light beam|ray|ray of light|shaft of light|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|diaphysis|long bone (generic term)|os longum (generic term)
+(noun)|cock|prick|dick|pecker|peter|tool|putz|penis (generic term)|phallus (generic term)|member (generic term)
+(noun)|spear|lance|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|passageway (generic term)
+(noun)|scape|upright (generic term)|vertical (generic term)
+(noun)|passage (generic term)
+(noun)|rotating shaft|rod (generic term)
+(noun)|quill|calamus|rib (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|cheat|chouse|screw|chicane|jockey|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+shaft louse|1
+(noun)|chicken louse|Menopon palladum|Menopon gallinae|bird louse (generic term)|biting louse (generic term)|louse (generic term)
+shaft of light|1
+(noun)|beam|beam of light|light beam|ray|ray of light|shaft|irradiation|light (generic term)|visible light (generic term)|visible radiation (generic term)
+shag|6
+(noun)|tobacco (generic term)|baccy (generic term)
+(noun)|tangle (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shtup|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+(noun)|social dancing (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+shag rug|1
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+shagbark|1
+(noun)|shagbark hickory|shellbark|shellbark hickory|Carya ovata|hickory (generic term)|hickory tree (generic term)
+shagbark hickory|1
+(noun)|shagbark|shellbark|shellbark hickory|Carya ovata|hickory (generic term)|hickory tree (generic term)
+shagged|1
+(adj)|shaggy|rough (similar term)|unsmooth (similar term)
+shagginess|2
+(noun)|sloppiness (generic term)|slovenliness (generic term)|unkemptness (generic term)
+(noun)|roughness (generic term)|raggedness (generic term)
+shaggy|2
+(adj)|bushy|shaggy-haired|shaggy-coated|ungroomed (similar term)
+(adj)|shagged|rough (similar term)|unsmooth (similar term)
+shaggy-coated|1
+(adj)|bushy|shaggy|shaggy-haired|ungroomed (similar term)
+shaggy-haired|1
+(adj)|bushy|shaggy|shaggy-coated|ungroomed (similar term)
+shaggy cap|1
+(noun)|shaggymane|shaggymane mushroom|Coprinus comatus|agaric (generic term)
+shaggy dog story|1
+(noun)|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+shaggymane|1
+(noun)|shaggy cap|shaggymane mushroom|Coprinus comatus|agaric (generic term)
+shaggymane mushroom|1
+(noun)|shaggymane|shaggy cap|Coprinus comatus|agaric (generic term)
+shah|1
+(noun)|Shah|Shah of Iran|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+shah jahan|1
+(noun)|Shah Jahan|emperor (generic term)
+shah of iran|1
+(noun)|Shah|Shah of Iran|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+shah pahlavi|1
+(noun)|Pahlavi|Mohammed Reza Pahlavi|Shah Pahlavi|Pahlevi|Mohammed Reza Pahlevi|Shah (generic term)|Shah of Iran (generic term)
+shahadah|1
+(noun)|pillar of Islam (generic term)|witness (generic term)
+shahaptian|2
+(noun)|Shahaptian|Sahaptin|Sahaptino|Penutian (generic term)
+(noun)|Shahaptian|Sahaptin|Penutian (generic term)
+shaheed|1
+(noun)|martyr (generic term)|sufferer (generic term)
+shahn|1
+(noun)|Shahn|Ben Shahn|Benjamin Shahn|painter (generic term)
+shaitan|1
+(noun)|shaytan|genie (generic term)|jinni (generic term)|jinnee (generic term)|djinni (generic term)|djinny (generic term)
+shakable|1
+(adj)|shakeable|contestable (similar term)
+shake|15
+(noun)|shingle|building material (generic term)
+(noun)|milkshake|milk shake|drink (generic term)
+(noun)|trill|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|handshake|handshaking|handclasp|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|tremble|shiver|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|wag|waggle|agitation (generic term)
+(verb)|agitate|move (generic term)
+(verb)|didder|move involuntarily (generic term)|move reflexively (generic term)
+(verb)|judder|vibrate (generic term)
+(verb)|rock|sway|move back and forth (generic term)
+(verb)|weaken (generic term)
+(verb)|stimulate|shake up|excite|stir|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|stir up (related term)
+(verb)|shake off|throw off|escape from|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+shake-up|1
+(noun)|reorganization|reorganisation|shakeup|organization (generic term)|organisation (generic term)
+shake hands|1
+(verb)|greet (generic term)|recognize (generic term)|recognise (generic term)
+shake off|2
+(verb)|shake|throw off|escape from|escape (generic term)|get away (generic term)|break loose (generic term)
+(verb)|shed|cast|cast off|throw|throw off|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+shake up|6
+(verb)|jar|bump around|move (generic term)|displace (generic term)
+(verb)|reorganize|reorganise|organize (generic term)|organise (generic term)
+(verb)|succuss|shake (generic term)|agitate (generic term)
+(verb)|stimulate|shake|excite|stir|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|stir up (related term)
+(verb)|agitate|vex|disturb|commove|stir up|raise up|move (generic term)|displace (generic term)
+(verb)|fluff up|plump up|shake (generic term)|agitate (generic term)
+shakeable|1
+(adj)|shakable|contestable (similar term)
+shakedown|4
+(adj)|adjustment|accommodation|fitting (related term)
+(noun)|adjustment (generic term)|accommodation (generic term)|fitting (generic term)
+(noun)|search (generic term)|hunt (generic term)|hunting (generic term)
+(noun)|extortion (generic term)
+shaken|1
+(adj)|jolted|agitated (similar term)
+shakeout|1
+(noun)|financial condition (generic term)|economic condition (generic term)
+shaker|3
+(noun)|mover and shaker|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Shaker|Christian (generic term)
+(noun)|container (generic term)
+shakers|1
+(noun)|Shakers|United Society of Believers in Christ's Second Appearing|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shakespeare|1
+(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|Bard of Avon|dramatist (generic term)|playwright (generic term)|poet (generic term)
+shakespearean|2
+(adj)|Shakespearian|Shakespearean|dramatist|playwright|poet (related term)
+(noun)|Shakespearian|Shakespearean|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+shakespearean sonnet|1
+(noun)|Shakespearean sonnet|Elizabethan sonnet|English sonnet|sonnet (generic term)
+shakespearian|2
+(adj)|Shakespearian|Shakespearean|dramatist|playwright|poet (related term)
+(noun)|Shakespearian|Shakespearean|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+shakeup|1
+(noun)|reorganization|reorganisation|shake-up|organization (generic term)|organisation (generic term)
+shakiness|2
+(noun)|shaking|trembling|quiver|quivering|vibration|palpitation|motion (generic term)
+(noun)|instability (generic term)|unstableness (generic term)
+shaking|2
+(noun)|agitation (generic term)
+(noun)|shakiness|trembling|quiver|quivering|vibration|palpitation|motion (generic term)
+shaking palsy|1
+(noun)|paralysis agitans|Parkinsonism|Parkinson's disease|Parkinson's syndrome|Parkinson's|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)|degenerative disorder (generic term)
+shako|1
+(noun)|bearskin|busby|hat (generic term)|chapeau (generic term)|lid (generic term)
+shakspere|1
+(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|Bard of Avon|dramatist (generic term)|playwright (generic term)|poet (generic term)
+shakti|1
+(noun)|Shakti|Sakti|Hindu deity (generic term)
+shaktism|2
+(noun)|Shaktism|Saktism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Shaktism|Saktism|Hinduism (generic term)|Hindooism (generic term)
+shaktist|1
+(noun)|Shaktist|Hindu (generic term)|Hindoo (generic term)
+shaky|3
+(adj)|rickety|wobbly|wonky|unstable (similar term)
+(adj)|shivering|trembling|unsteady (similar term)
+(adj)|precarious|insecure (similar term)|unsafe (similar term)
+shale|1
+(noun)|sedimentary rock (generic term)
+shale oil|1
+(noun)|oil (generic term)
+shall-flower|1
+(noun)|shellflower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+shallon|1
+(noun)|salal|Gaultheria shallon|shrub (generic term)|bush (generic term)
+shallot|3
+(noun)|bulb (generic term)
+(noun)|eschalot|multiplier onion|Allium cepa aggregatum|Allium ascalonicum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+(noun)|onion (generic term)
+shallow|6
+(adj)|ankle-deep (similar term)|knee-deep (similar term)|fordable (similar term)|neritic (similar term)|reefy (similar term)|shelfy (similar term)|shelvy (similar term)|shoaly (similar term)|deep (antonym)
+(adj)|light (similar term)|wakeful (similar term)|skin-deep (similar term)|superficial (similar term)|surface (similar term)|deep (antonym)
+(adj)|superficial (similar term)
+(noun)|shoal|body of water (generic term)|water (generic term)
+(verb)|shoal|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|shoal|change (generic term)
+shallow-draft|1
+(adj)|shallow-draught|depth (related term)
+shallow-draught|1
+(adj)|shallow-draft|depth (related term)
+shallow fording|1
+(noun)|ford (generic term)|fording (generic term)
+shallowness|2
+(noun)|superficiality|depth (generic term)|profundity (antonym)
+(noun)|depth (generic term)|deepness (antonym)
+shallu|1
+(noun)|Sorghum vulgare rosburghii|grain sorghum (generic term)
+shalom asch|1
+(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer (generic term)|author (generic term)
+shalwar|1
+(noun)|salwar|trouser (generic term)|pant (generic term)
+sham|5
+(adj)|assumed|false|fictitious|fictive|pretended|put on|counterfeit (similar term)|imitative (similar term)
+(noun)|fake|postiche|imitation (generic term)|counterfeit (generic term)|forgery (generic term)
+(noun)|imposter|impostor|pretender|fake|faker|fraud|shammer|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(verb)|simulate|assume|feign|dissemble (generic term)|pretend (generic term)|act (generic term)
+(verb)|feign|pretend|affect|dissemble|misrepresent (generic term)|belie (generic term)
+shaman|1
+(noun)|priest-doctor|priest (generic term)|non-Christian priest (generic term)
+shamanise|1
+(verb)|shamanize|practice (generic term)|practise (generic term)|exercise (generic term)|do (generic term)
+shamanism|2
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)
+(noun)|Asian shamanism|religion (generic term)|faith (generic term)|religious belief (generic term)
+shamanist|1
+(adj)|shamanistic|religion|faith|religious belief (related term)
+shamanistic|1
+(adj)|shamanist|religion|faith|religious belief (related term)
+shamanize|1
+(verb)|shamanise|practice (generic term)|practise (generic term)|exercise (generic term)|do (generic term)
+shamash|1
+(noun)|Shamash|Semitic deity (generic term)
+shamble|2
+(noun)|shambling|shuffle|shuffling|walk (generic term)|walking (generic term)
+(verb)|shuffle|scuffle|walk (generic term)
+shambles|2
+(noun)|disorderliness (generic term)|disorder (generic term)
+(noun)|abattoir|butchery|slaughterhouse|building (generic term)|edifice (generic term)
+shambling|1
+(noun)|shamble|shuffle|shuffling|walk (generic term)|walking (generic term)
+shambolic|1
+(adj)|disorderliness|disorder (related term)
+shame|7
+(noun)|feeling (generic term)
+(noun)|disgrace|ignominy|dishonor (generic term)|dishonour (generic term)
+(noun)|pity|misfortune (generic term)|bad luck (generic term)
+(verb)|dishonor|disgrace|dishonour|attaint|honor (antonym)
+(verb)|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|surpass (generic term)|outstrip (generic term)|outmatch (generic term)|outgo (generic term)|exceed (generic term)|outdo (generic term)|surmount (generic term)|outperform (generic term)
+shame plant|1
+(noun)|sensitive plant|touch-me-not|live-and-die|humble plant|action plant|Mimosa pudica|mimosa (generic term)
+shamed|2
+(adj)|guilty|hangdog|shamefaced|ashamed (similar term)
+(adj)|discredited|disgraced|dishonored|ashamed (similar term)
+shamefaced|3
+(adj)|modest (similar term)
+(adj)|sheepish|ashamed (similar term)
+(adj)|guilty|hangdog|shamed|ashamed (similar term)
+shamefacedness|1
+(noun)|sheepishness|embarrassment (generic term)
+shameful|2
+(adj)|black|disgraceful|ignominious|inglorious|opprobrious|dishonorable (similar term)|dishonourable (similar term)
+(adj)|disgraceful|scandalous|shocking|immoral (similar term)
+shamefully|1
+(adv)|disgracefully|ingloriously|ignominiously|discreditably|dishonorably|dishonourably
+shamefulness|1
+(noun)|disgracefulness|ignominiousness|unworthiness (generic term)
+shameless|1
+(adj)|unblushing|unashamed (similar term)
+shamelessly|1
+(adv)|unashamedly|barefacedly|ashamedly (antonym)
+shamelessness|1
+(noun)|brazenness|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+shamisen|1
+(noun)|samisen|stringed instrument (generic term)
+shammer|2
+(noun)|malingerer|skulker|slacker (generic term)|shirker (generic term)
+(noun)|imposter|impostor|pretender|fake|faker|fraud|sham|pseudo|pseud|role player|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+shammy|1
+(noun)|chamois|chamois leather|chammy|chammy leather|shammy leather|leather (generic term)
+shammy leather|1
+(noun)|chamois|chamois leather|chammy|chammy leather|shammy|leather (generic term)
+shampoo|3
+(noun)|cleansing agent (generic term)|cleanser (generic term)|cleaner (generic term)
+(noun)|hair care (generic term)|haircare (generic term)|hairdressing (generic term)
+(verb)|wash (generic term)|lave (generic term)
+shamrock|3
+(noun)|white clover|dutch clover|Trifolium repens|clover (generic term)|trefoil (generic term)
+(noun)|common wood sorrel|cuckoo bread|Oxalis acetosella|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+(noun)|hop clover|lesser yellow trefoil|Trifolium dubium|clover (generic term)|trefoil (generic term)
+shamrock pea|1
+(noun)|Parochetus communis|herb (generic term)|herbaceous plant (generic term)
+shamus|1
+(noun)|private detective|PI|private eye|private investigator|operative|sherlock|detective (generic term)
+shan|1
+(noun)|Tai Long|Shan|Tai (generic term)
+shandy|1
+(noun)|shandygaff|drink (generic term)
+shandygaff|1
+(noun)|shandy|drink (generic term)
+shang|1
+(noun)|Shang|Shang dynasty|dynasty (generic term)
+shang dynasty|1
+(noun)|Shang|Shang dynasty|dynasty (generic term)
+shanghai|2
+(noun)|Shanghai|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(verb)|impress|kidnap (generic term)|nobble (generic term)|abduct (generic term)|snatch (generic term)
+shanghai dialect|1
+(noun)|Wu|Wu dialect|Shanghai dialect|Chinese (generic term)
+shanghaier|1
+(noun)|seizer|kidnapper (generic term)|kidnaper (generic term)|abductor (generic term)|snatcher (generic term)
+shangri-la|1
+(noun)|Eden|paradise|Nirvana|heaven|promised land|Shangri-la|region (generic term)|part (generic term)
+shank|8
+(noun)|cut (generic term)|cut of meat (generic term)
+(noun)|body part (generic term)
+(noun)|stem|cylinder (generic term)
+(noun)|cylinder (generic term)
+(noun)|waist|part (generic term)|portion (generic term)
+(noun)|cannon|body part (generic term)
+(noun)|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(verb)|hit (generic term)
+shank's mare|1
+(noun)|shanks' mare|shank's pony|shanks' pony|leg (generic term)
+shank's pony|1
+(noun)|shank's mare|shanks' mare|shanks' pony|leg (generic term)
+shankar|1
+(noun)|Shankar|Ravi Shankar|sitar player (generic term)
+shanks' mare|1
+(noun)|shank's mare|shank's pony|shanks' pony|leg (generic term)
+shanks' pony|1
+(noun)|shank's mare|shanks' mare|shank's pony|leg (generic term)
+shannon|1
+(noun)|Shannon|Claude Shannon|Claude E. Shannon|Claude Elwood Shannon|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+shanny|1
+(noun)|Blennius pholis|blenny (generic term)|combtooth blenny (generic term)
+shantung|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+shanty|2
+(noun)|hovel|hut|hutch|shack|shelter (generic term)
+(noun)|chantey|chanty|sea chantey|work song (generic term)
+shantytown|1
+(noun)|slum (generic term)|slum area (generic term)
+shape|11
+(noun)|form|configuration|contour|conformation|spatial property (generic term)|spatiality (generic term)
+(noun)|form|attribute (generic term)
+(noun)|human body|physical body|material body|soma|build|figure|physique|anatomy|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+(noun)|embodiment|concretism (generic term)|concrete representation (generic term)
+(noun)|form|cast|appearance (generic term)|visual aspect (generic term)
+(noun)|condition|good health (generic term)|healthiness (generic term)
+(noun)|Supreme Headquarters Allied Powers Europe|SHAPE|high command (generic term)|supreme headquarters (generic term)
+(noun)|form|pattern|structure (generic term)
+(verb)|determine|mold|influence|regulate|cause (generic term)|do (generic term)|make (generic term)
+(verb)|form|work|mold|mould|forge|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|form|change (generic term)|alter (generic term)|modify (generic term)
+shape-up|1
+(noun)|employment (generic term)|engagement (generic term)
+shape constancy|1
+(noun)|constancy (generic term)|perceptual constancy (generic term)
+shape up|1
+(verb)|progress|come on|come along|advance|get on|get along|develop (generic term)|regress (antonym)
+shaped|2
+(adj)|molded|wrought|formed (similar term)
+(adj)|attribute (related term)
+shapeless|2
+(adj)|amorphous|formless|unformed (similar term)
+(adj)|unshapely (similar term)
+shapelessness|2
+(noun)|amorphous shape (generic term)
+(noun)|unattractiveness (generic term)
+shapeliness|1
+(noun)|curvaceousness|voluptuousness|pulchritude (generic term)
+shapely|1
+(adj)|bosomy (similar term)|busty (similar term)|buxom (similar term)|curvaceous (similar term)|curvy (similar term)|full-bosomed (similar term)|sonsie (similar term)|sonsy (similar term)|voluptuous (similar term)|well-endowed (similar term)|built (similar term)|stacked (similar term)|well-stacked (similar term)|callipygian (similar term)|callipygous (similar term)|clean-limbed (similar term)|full-fashioned (similar term)|fully fashioned (similar term)|Junoesque (similar term)|statuesque (similar term)|modeled (similar term)|sculptural (similar term)|sculptured (similar term)|sculpturesque (similar term)|retrousse (similar term)|tip-tilted (similar term)|upturned (similar term)|well-proportioned (similar term)|well-turned (similar term)|unshapely (antonym)
+shaper|2
+(noun)|maker|creator (generic term)
+(noun)|shaping machine|machine tool (generic term)
+shaping|3
+(adj)|formative|plastic|constructive (similar term)
+(noun)|defining|process (generic term)|physical process (generic term)
+(noun)|formation|fabrication (generic term)|manufacture (generic term)
+shaping machine|1
+(noun)|shaper|machine tool (generic term)
+shaping tool|1
+(noun)|tool (generic term)
+shapley|1
+(noun)|Shapley|Harlow Shapley|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+shard|1
+(noun)|sherd|fragment|piece (generic term)
+share|10
+(noun)|stock certificate (generic term)|stock (generic term)
+(noun)|portion|part|percentage|assets (generic term)
+(noun)|parcel|portion|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+(noun)|contribution|part|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|plowshare|ploughshare|wedge (generic term)
+(verb)|overlap (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|partake|partake in|get (generic term)|acquire (generic term)
+(verb)|divvy up|portion out|apportion|deal|distribute (generic term)|give out (generic term)|hand out (generic term)|pass out (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+share-out|1
+(noun)|sharing|distribution (generic term)
+sharecrop farmer|1
+(noun)|sharecropper|cropper|agricultural laborer (generic term)|agricultural labourer (generic term)
+sharecropper|1
+(noun)|cropper|sharecrop farmer|agricultural laborer (generic term)|agricultural labourer (generic term)
+shared|2
+(adj)|common (similar term)|mutual (similar term)|joint (similar term)|joint (related term)|unshared (antonym)
+(adj)|divided|divided up|shared out|distributed (similar term)
+shared out|1
+(adj)|divided|divided up|shared|distributed (similar term)
+shareholder|1
+(noun)|stockholder|shareowner|investor (generic term)
+shareholding|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+shareowner|1
+(noun)|stockholder|shareholder|investor (generic term)
+sharer|1
+(noun)|partaker|participant (generic term)
+shareware|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+shari|1
+(noun)|Shari|Shari River|Chari|Chari River|river (generic term)
+shari river|1
+(noun)|Shari|Shari River|Chari|Chari River|river (generic term)
+sharia|1
+(noun)|shariah|shariah law|sharia law|Islamic law|law (generic term)|jurisprudence (generic term)
+sharia law|1
+(noun)|shariah|shariah law|sharia|Islamic law|law (generic term)|jurisprudence (generic term)
+shariah|1
+(noun)|shariah law|sharia|sharia law|Islamic law|law (generic term)|jurisprudence (generic term)
+shariah law|1
+(noun)|shariah|sharia|sharia law|Islamic law|law (generic term)|jurisprudence (generic term)
+sharing|5
+(adj)|joint (similar term)
+(adj)|unselfish (similar term)
+(noun)|mutuality (generic term)|interdependence (generic term)|interdependency (generic term)
+(noun)|communion|intercourse (generic term)|social intercourse (generic term)
+(noun)|share-out|distribution (generic term)
+shark|5
+(noun)|elasmobranch (generic term)|selachian (generic term)
+(noun)|wrongdoer (generic term)|offender (generic term)
+(noun)|expert (generic term)
+(verb)|cheat (generic term)|chisel (generic term)
+(verb)|fish (generic term)
+shark-liver oil|1
+(noun)|shark oil|animal oil (generic term)
+shark oil|1
+(noun)|shark-liver oil|animal oil (generic term)
+shark repellent|1
+(noun)|porcupine provision|measure (generic term)|step (generic term)
+sharkskin|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+sharksucker|1
+(noun)|Echeneis naucrates|remora (generic term)|suckerfish (generic term)|sucking fish (generic term)
+sharp|15
+(adj)|crisp|distinct (similar term)
+(adj)|acuate|acute|needlelike|pointed (similar term)
+(adj)|acute|discriminating|incisive|keen|knifelike|penetrating|penetrative|piercing|perceptive (similar term)
+(adj)|astute|shrewd|smart (similar term)
+(adj)|sharp-worded|tart|unpleasant (similar term)
+(adj)|piercing|shrill|high (similar term)|high-pitched (similar term)
+(adj)|abrupt|precipitous|steep (similar term)
+(adj)|acute (similar term)|intense (similar term)|cutting (similar term)|keen (similar term)|knifelike (similar term)|piercing (similar term)|stabbing (similar term)|lancinate (similar term)|lancinating (similar term)|fulgurating (similar term)|salt (similar term)|scratching (similar term)|dull (antonym)
+(adj)|carnassial (similar term)|chisel-like (similar term)|cutting (similar term)|dagger-like (similar term)|drill-like (similar term)|edged (similar term)|fang-like (similar term)|file-like (similar term)|incisive (similar term)|piercing (similar term)|keen (similar term)|knifelike (similar term)|metal-cutting (similar term)|penetrative (similar term)|penetrating (similar term)|razor-sharp (similar term)|sharpened (similar term)|sharp-toothed (similar term)|pointed (related term)|dull (antonym)
+(adj)|flat (antonym)|natural (antonym)
+(adj)|sudden (similar term)
+(adj)|forceful (similar term)
+(noun)|musical notation (generic term)
+(noun)|sewing needle (generic term)
+(adv)|sharply|acutely
+sharp-angled|1
+(adj)|sharp-cornered|angular (similar term)|angulate (similar term)
+sharp-cornered|1
+(adj)|sharp-angled|angular (similar term)|angulate (similar term)
+sharp-eared|1
+(adj)|quick-eared|hearing (similar term)
+sharp-eyed|3
+(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-sighted|sighted (similar term)
+(adj)|quick-sighted|sharp-sighted|perceptive (similar term)
+(adj)|keen-eyed|eyed (similar term)
+sharp-limbed|1
+(adj)|limbed (similar term)
+sharp-nosed|1
+(adj)|nosed (similar term)
+sharp-pointed|1
+(adj)|end (related term)
+sharp-set|1
+(adj)|famished|ravenous|starved|esurient|hungry (similar term)
+sharp-sighted|2
+(adj)|argus-eyed|hawk-eyed|keen-sighted|lynx-eyed|quick-sighted|sharp-eyed|sighted (similar term)
+(adj)|quick-sighted|sharp-eyed|perceptive (similar term)
+sharp-sightedness|2
+(noun)|acuity|visual acuity|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+(noun)|alertness|on the qui vive|attentiveness (generic term)
+sharp-tailed grouse|1
+(noun)|sprigtail|sprig tail|Pedioecetes phasianellus|grouse (generic term)
+sharp-tasting|1
+(adj)|bitterish|tasty (similar term)
+sharp-toothed|1
+(adj)|sharp (similar term)
+sharp-worded|1
+(adj)|sharp|tart|unpleasant (similar term)
+sharp tongue|1
+(noun)|tongue (generic term)
+sharpen|8
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|dull (antonym)
+(verb)|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+(verb)|intensify (generic term)|deepen (generic term)
+(verb)|focus|focalize|focalise|adjust (generic term)|set (generic term)|correct (generic term)|focus on (related term)|blur (antonym)
+(verb)|change intensity (generic term)|soften (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|flatten (antonym)
+(verb)|taper|point|change shape (generic term)|change form (generic term)|deform (generic term)|taper off (related term)|taper off (related term)
+(verb)|heighten|intensify (generic term)|compound (generic term)|heighten (generic term)|deepen (generic term)
+sharpened|2
+(adj)|pointed (similar term)
+(adj)|sharp (similar term)
+sharpener|1
+(noun)|implement (generic term)
+sharper|1
+(noun)|cardsharp|card sharp|cardsharper|card sharper|sharpie|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+sharpie|3
+(noun)|eager beaver|busy bee|live wire|sharpy|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|cardsharp|card sharp|cardsharper|card sharper|sharper|sharpy|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+(noun)|boat (generic term)
+sharply|4
+(adv)|aggressively
+(adv)|crisply
+(adv)|sharp|acutely
+(adv)|precipitously
+sharpness|7
+(noun)|acuteness|acuity|keenness|intelligence (generic term)
+(noun)|edge|urgency (generic term)
+(noun)|pungency|bite|raciness|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|painfulness (generic term)|distressingness (generic term)
+(noun)|keenness|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|dullness (antonym)
+(noun)|distinctness|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)|softness (antonym)|indistinctness (antonym)
+(noun)|asperity|ill nature (generic term)|dullness (antonym)
+sharpshoot|1
+(verb)|snipe|shoot (generic term)
+sharpshooter|3
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|marksman|crack shot|shot (generic term)|shooter (generic term)
+(noun)|schooner (generic term)
+sharptail mola|1
+(noun)|Mola lanceolata|ocean sunfish (generic term)|sunfish (generic term)|mola (generic term)|headfish (generic term)
+sharpy|2
+(noun)|eager beaver|busy bee|live wire|sharpie|actor (generic term)|doer (generic term)|worker (generic term)
+(noun)|cardsharp|card sharp|cardsharper|card sharper|sharper|sharpie|card shark|card player (generic term)|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+shasta|3
+(noun)|Shasta|Hokan (generic term)|Hoka (generic term)
+(noun)|Shasta|Mount Shasta|mountain peak (generic term)
+(noun)|Shasta|Shastan (generic term)
+shasta daisy|1
+(noun)|Leucanthemum superbum|Chrysanthemum maximum maximum|composite (generic term)|composite plant (generic term)
+shasta salamander|1
+(noun)|Shasta salamander|Hydromantes shastae|web-toed salamander (generic term)
+shastan|1
+(noun)|Shastan|Hokan (generic term)|Hoka (generic term)
+shatter|2
+(verb)|burst (generic term)|bust (generic term)
+(verb)|break (generic term)
+shattered|1
+(adj)|tattered|destroyed (similar term)
+shattering|2
+(adj)|loud (similar term)
+(noun)|smashing|breakage (generic term)|break (generic term)|breaking (generic term)
+shatterproof|1
+(adj)|splinterless|splinterproof|unbreakable (similar term)
+shatterproof glass|1
+(noun)|safety glass|laminated glass|glass (generic term)
+shave|7
+(noun)|shaving|depilation (generic term)|epilation (generic term)
+(verb)|groom (generic term)|neaten (generic term)
+(verb)|trim|cut (generic term)
+(verb)|knock off|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+(verb)|plane|cut (generic term)
+(verb)|carve (generic term)|cut up (generic term)
+(verb)|graze (generic term)|crease (generic term)|rake (generic term)
+shaved|1
+(adj)|shaven|beardless (similar term)|whiskerless (similar term)|clean-shaven (similar term)|smooth-shaven (similar term)|well-shaven (similar term)|unshaven (antonym)
+shaven|1
+(adj)|shaved|beardless (similar term)|whiskerless (similar term)|clean-shaven (similar term)|smooth-shaven (similar term)|well-shaven (similar term)|unshaven (antonym)
+shaver|3
+(noun)|man (generic term)|adult male (generic term)
+(noun)|child|kid|youngster|minor|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+(noun)|electric shaver|electric razor|razor (generic term)
+shavian|2
+(adj)|Shavian|writer|author|dramatist|playwright (related term)
+(noun)|Shavian|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+shaving|3
+(noun)|shave|depilation (generic term)|epilation (generic term)
+(noun)|paring|sliver|fragment (generic term)
+(noun)|grazing|skimming|touch (generic term)|touching (generic term)
+shaving-brush tree|1
+(noun)|Pseudobombax ellipticum|tree (generic term)
+shaving brush|1
+(noun)|brush (generic term)
+shaving cream|1
+(noun)|shaving soap|toiletry (generic term)|toilet article (generic term)|soapsuds (generic term)|suds (generic term)|lather (generic term)
+shaving foam|1
+(noun)|toiletry (generic term)|toilet article (generic term)|foam (generic term)|froth (generic term)
+shaving soap|1
+(noun)|shaving cream|toiletry (generic term)|toilet article (generic term)|soapsuds (generic term)|suds (generic term)|lather (generic term)
+shavous|1
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+shavuot|1
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+shavuoth|1
+(noun)|Shavous|Shabuoth|Shavuoth|Shavuot|Pentecost|Feast of Weeks|Jewish holy day (generic term)
+shaw|4
+(noun)|Shaw|Artie Shaw|Arthur Jacob Arshawsky|clarinetist (generic term)|clarinettist (generic term)|bandleader (generic term)
+(noun)|Shaw|Henry Wheeler Shaw|Josh Billings|humorist (generic term)|humourist (generic term)
+(noun)|Shaw|Anna Howard Shaw|suffragist (generic term)|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|Shaw|G. B. Shaw|George Bernard Shaw|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+shawl|1
+(noun)|cloak (generic term)
+shawm|1
+(noun)|oboe (generic term)|hautboy (generic term)|hautbois (generic term)
+shawn|1
+(noun)|Shawn|Ted Shawn|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+shawnee|2
+(noun)|Shawnee|Algonquian (generic term)|Algonquin (generic term)
+(noun)|Shawnee|Algonquian (generic term)|Algonquin (generic term)|Algonquian language (generic term)
+shawnee cake|1
+(noun)|Shawnee cake|johnnycake (generic term)|johnny cake (generic term)|journey cake (generic term)
+shawnee salad|1
+(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+shawny|1
+(noun)|Virginia waterleaf|Shawnee salad|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+shawwal|1
+(noun)|Shawwal|Islamic calendar month (generic term)
+shay|1
+(noun)|chaise|carriage (generic term)|equipage (generic term)|rig (generic term)
+shaytan|1
+(noun)|shaitan|genie (generic term)|jinni (generic term)|jinnee (generic term)|djinni (generic term)|djinny (generic term)
+she-bop|1
+(verb)|masturbate|wank|fuck off|jack off|jerk off|stimulate (generic term)|excite (generic term)|stir (generic term)
+she-devil|1
+(noun)|unpleasant woman (generic term)|disagreeable woman (generic term)
+she-goat|1
+(noun)|nanny|nanny-goat|goat (generic term)|caprine animal (generic term)
+she-oak|1
+(noun)|casuarina (generic term)
+sheaf|1
+(noun)|bundle|package (generic term)|parcel (generic term)
+shear|5
+(noun)|deformation (generic term)
+(noun)|edge tool (generic term)
+(verb)|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+(verb)|fleece|shave (generic term)|trim (generic term)
+(verb)|cut (generic term)
+sheared|2
+(adj)|shorn|unsheared (antonym)
+(adj)|cut (similar term)
+shearer|3
+(noun)|Shearer|Moira Shearer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+shearing|1
+(noun)|cut (generic term)|cutting (generic term)|cutting off (generic term)
+shears|1
+(noun)|scissors (generic term)|pair of scissors (generic term)
+shearwater|1
+(noun)|petrel (generic term)
+sheatfish|1
+(noun)|European catfish|Silurus glanis|silurid (generic term)|silurid fish (generic term)
+sheath|3
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|case|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|cocktail dress|dress (generic term)|frock (generic term)
+sheath knife|1
+(noun)|case knife|knife (generic term)
+sheath pile|1
+(noun)|sheet pile|sheet piling|pile (generic term)|spile (generic term)|piling (generic term)|stilt (generic term)
+sheathe|3
+(verb)|cover (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)|unsheathe (antonym)
+(verb)|immerse (generic term)|plunge (generic term)
+sheathed|1
+(adj)|cased (similar term)|encased (similar term)|incased (similar term)|clad (similar term)|ironclad (similar term)|podlike (similar term)|unsheathed (antonym)
+sheathing|1
+(noun)|overlay|overlayer|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+shebang|1
+(noun)|system (generic term)|scheme (generic term)
+shebat|1
+(noun)|Shebat|Shevat|Jewish calendar month (generic term)
+shebeen|1
+(noun)|tavern (generic term)|tap house (generic term)
+shed|6
+(adj)|caducous|deciduous (similar term)|persistent (antonym)
+(noun)|outbuilding (generic term)
+(verb)|cast|cast off|shake off|throw|throw off|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|spill|pour forth|pour (generic term)
+(verb)|spill|disgorge|move (generic term)|displace (generic term)
+(verb)|molt|exuviate|moult|slough|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+shed blood|2
+(verb)|kill (generic term)
+(verb)|bleed|hemorrhage|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+shed light on|1
+(verb)|clear|clear up|crystallize|crystallise|crystalize|crystalise|straighten out|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+shedder|1
+(noun)|spiller|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+shedding|2
+(noun)|sloughing|organic process (generic term)|biological process (generic term)
+(noun)|desquamation|peeling|organic phenomenon (generic term)
+sheen|1
+(noun)|shininess|luster|lustre|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+sheeny|2
+(adj)|glistening|glossy|lustrous|shiny|shining|bright (similar term)
+(noun)|kike|hymie|yid|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+sheep|3
+(noun)|bovid (generic term)
+(noun)|simpleton (generic term)|simple (generic term)
+(noun)|follower (generic term)
+sheep's fescue|1
+(noun)|sheep fescue|Festuca ovina|grass (generic term)
+sheep's sorrel|1
+(noun)|sheep sorrel|Rumex acetosella|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+sheep-tick|2
+(noun)|sheep ked|sheep tick|Melophagus Ovinus|louse fly (generic term)|hippoboscid (generic term)
+(noun)|sheep tick|Ixodes ricinus|hard tick (generic term)|ixodid (generic term)
+sheep bell|1
+(noun)|bell (generic term)
+sheep botfly|1
+(noun)|sheep gadfly|Oestrus ovis|botfly (generic term)
+sheep dip|1
+(noun)|pesticide (generic term)|liquid (generic term)
+sheep dog|1
+(noun)|shepherd dog|sheepdog|working dog (generic term)
+sheep fescue|1
+(noun)|sheep's fescue|Festuca ovina|grass (generic term)
+sheep frog|1
+(noun)|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+sheep gadfly|1
+(noun)|sheep botfly|Oestrus ovis|botfly (generic term)
+sheep ked|1
+(noun)|sheep-tick|sheep tick|Melophagus Ovinus|louse fly (generic term)|hippoboscid (generic term)
+sheep laurel|1
+(noun)|pig laurel|lambkill|Kalmia angustifolia|kalmia (generic term)
+sheep pen|1
+(noun)|fold|sheepfold|sheepcote|pen (generic term)
+sheep plant|2
+(noun)|vegetable sheep|Raoulia lutescens|Raoulia australis|herb (generic term)|herbaceous plant (generic term)
+(noun)|vegetable sheep|Haastia pulvinaris|herb (generic term)|herbaceous plant (generic term)
+sheep polypore|1
+(noun)|Albatrellus ovinus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+sheep rot|1
+(noun)|black disease|liver rot|distomatosis|animal disease (generic term)
+sheep sorrel|1
+(noun)|sheep's sorrel|Rumex acetosella|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+sheep tick|2
+(noun)|sheep ked|sheep-tick|Melophagus Ovinus|louse fly (generic term)|hippoboscid (generic term)
+(noun)|sheep-tick|Ixodes ricinus|hard tick (generic term)|ixodid (generic term)
+sheepcote|1
+(noun)|fold|sheepfold|sheep pen|pen (generic term)
+sheepdog|1
+(noun)|shepherd dog|sheep dog|working dog (generic term)
+sheepfold|1
+(noun)|fold|sheep pen|sheepcote|pen (generic term)
+sheepherder|1
+(noun)|shepherd|sheepman|herder (generic term)|herdsman (generic term)|drover (generic term)
+sheepish|2
+(adj)|sheeplike|docile (similar term)
+(adj)|shamefaced|ashamed (similar term)
+sheepishness|1
+(noun)|shamefacedness|embarrassment (generic term)
+sheeplike|1
+(adj)|sheepish|docile (similar term)
+sheepman|2
+(noun)|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+(noun)|sheepherder|shepherd|herder (generic term)|herdsman (generic term)|drover (generic term)
+sheeprun|1
+(noun)|sheepwalk|farm (generic term)
+sheepshank|1
+(noun)|knot (generic term)
+sheepshead|1
+(noun)|Archosargus probatocephalus|sparid (generic term)|sparid fish (generic term)
+sheepshead porgy|1
+(noun)|Calamus penna|porgy (generic term)
+sheepshearing|3
+(noun)|season (generic term)
+(noun)|festival (generic term)|fete (generic term)
+(noun)|shearing (generic term)
+sheepskin|3
+(noun)|fleece|leather (generic term)
+(noun)|parchment|lambskin|animal skin (generic term)
+(noun)|diploma|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+sheepskin coat|1
+(noun)|afghan|coat (generic term)
+sheepwalk|1
+(noun)|sheeprun|farm (generic term)
+sheer|7
+(adj)|absolute|downright|out-and-out|rank|right-down|complete (similar term)
+(adj)|plain|unmingled|unmixed|pure (similar term)
+(adj)|bluff|bold|steep (similar term)
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|see-through|transparent|vaporous|vapourous|cobwebby|thin (similar term)
+(verb)|swerve|curve|trend|veer|slue|slew|cut|turn (generic term)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(adv)|perpendicularly
+sheesha|1
+(noun)|hookah|narghile|nargileh|shisha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+sheet|10
+(noun)|expanse (generic term)
+(noun)|piece of paper|sheet of paper|paper (generic term)
+(noun)|bed sheet|bed linen (generic term)
+(noun)|plane|shape (generic term)|form (generic term)
+(noun)|tabloid|rag|newspaper (generic term)|paper (generic term)
+(noun)|flat solid|artifact (generic term)|artefact (generic term)
+(noun)|tack|mainsheet|weather sheet|shroud|line (generic term)
+(noun)|sail|canvas|canvass|piece of cloth (generic term)|piece of material (generic term)
+(verb)|pour (generic term)|pelt (generic term)|stream (generic term)|rain cats and dogs (generic term)|rain buckets (generic term)
+(verb)|cover (generic term)
+sheet-metal work|1
+(noun)|trade (generic term)|craft (generic term)
+sheet anchor|1
+(noun)|waist anchor|anchor (generic term)|ground tackle (generic term)
+sheet bend|1
+(noun)|becket bend|weaver's knot|weaver's hitch|hitch (generic term)
+sheet glass|1
+(noun)|plate glass|sheet (generic term)|flat solid (generic term)
+sheet iron|1
+(noun)|plate iron (generic term)
+sheet lighting|1
+(noun)|lightning (generic term)
+sheet metal|1
+(noun)|sheet (generic term)|flat solid (generic term)
+sheet music|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+sheet of paper|1
+(noun)|sheet|piece of paper|paper (generic term)
+sheet pile|1
+(noun)|sheath pile|sheet piling|pile (generic term)|spile (generic term)|piling (generic term)|stilt (generic term)
+sheet piling|1
+(noun)|sheet pile|sheath pile|pile (generic term)|spile (generic term)|piling (generic term)|stilt (generic term)
+sheet web|1
+(noun)|spider web (generic term)|spider's web (generic term)
+sheeting|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+sheetlike|1
+(adj)|stratified (similar term)|bedded (similar term)
+sheetrock|1
+(noun)|Sheetrock|plasterboard (generic term)|gypsum board (generic term)
+sheffield|1
+(noun)|Sheffield|city (generic term)|metropolis (generic term)|urban center (generic term)
+shegetz|1
+(noun)|gentile (generic term)|non-Jew (generic term)|goy (generic term)
+sheik|2
+(noun)|tribal sheik|sheikh|tribal sheikh|Arab chief|ruler (generic term)|swayer (generic term)
+(noun)|dandy|dude|fop|gallant|beau|swell|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+sheika|1
+(noun)|sheikha|wife (generic term)|married woman (generic term)
+sheikdom|1
+(noun)|sheikhdom|domain (generic term)|demesne (generic term)|land (generic term)
+sheikh|1
+(noun)|sheik|tribal sheik|tribal sheikh|Arab chief|ruler (generic term)|swayer (generic term)
+sheikha|1
+(noun)|sheika|wife (generic term)|married woman (generic term)
+sheikhdom|1
+(noun)|sheikdom|domain (generic term)|demesne (generic term)|land (generic term)
+shekel|1
+(noun)|Israeli monetary unit (generic term)
+shekels|1
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|simoleons|sugar|wampum|money (generic term)
+shel silverstein|1
+(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet (generic term)|cartoonist (generic term)
+shelby silverstein|1
+(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet (generic term)|cartoonist (generic term)
+sheldrake|2
+(noun)|merganser|fish duck|sawbill|sea duck (generic term)
+(noun)|duck (generic term)
+shelduck|1
+(noun)|sheldrake (generic term)
+shelf|2
+(noun)|support (generic term)
+(noun)|ledge|ridge (generic term)
+shelf bracket|1
+(noun)|bracket (generic term)
+shelf fungus|1
+(noun)|bracket fungus|polypore (generic term)|pore fungus (generic term)|pore mushroom (generic term)
+shelf ice|1
+(noun)|ice shelf|ice (generic term)
+shelf life|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+shelfful|1
+(noun)|containerful (generic term)
+shelflike|1
+(adj)|support (related term)
+shelfy|1
+(adj)|reefy|shelvy|shoaly|shallow (similar term)
+shell|16
+(noun)|ammunition (generic term)|ammo (generic term)
+(noun)|animal material (generic term)
+(noun)|carapace|cuticle|shield|scute (generic term)
+(noun)|hull (generic term)
+(noun)|eggshell|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|racing shell|racing boat (generic term)
+(noun)|case|casing|housing (generic term)
+(noun)|plate|scale|shield (generic term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(verb)|blast|bombard (generic term)|bomb (generic term)
+(verb)|emerge (generic term)
+(verb)|hit (generic term)
+(verb)|gather (generic term)
+(verb)|beat|beat out|crush|trounce|vanquish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|husk|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+shell-flower|1
+(noun)|shellflower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+shell-less|1
+(adj)|unshelled|shelled (antonym)
+shell bean|2
+(noun)|shell bean plant|bean (generic term)|bean plant (generic term)
+(noun)|fresh bean (generic term)
+shell bean plant|1
+(noun)|shell bean|bean (generic term)|bean plant (generic term)
+shell collecting|1
+(noun)|conchology|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)|malacology (generic term)
+shell corporation|1
+(noun)|shell entity|corporation (generic term)|corp (generic term)
+shell entity|1
+(noun)|shell corporation|corporation (generic term)|corp (generic term)
+shell game|1
+(noun)|thimblerig|swindle (generic term)|cheat (generic term)|rig (generic term)
+shell ginger|1
+(noun)|shellflower|shall-flower|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+shell jacket|1
+(noun)|mess jacket|monkey jacket|jacket (generic term)
+shell out|1
+(verb)|distribute|administer|mete out|deal|parcel out|lot|dispense|deal out|dish out|allot|dole out|give (generic term)
+shell parakeet|1
+(noun)|budgerigar|budgereegah|budgerygah|budgie|grass parakeet|lovebird|Melopsittacus undulatus|parakeet (generic term)|parrakeet (generic term)|parroket (generic term)|paraquet (generic term)|paroquet (generic term)|parroquet (generic term)
+shell plating|1
+(noun)|plate (generic term)|scale (generic term)|shell (generic term)
+shell shock|1
+(noun)|battle fatigue|combat fatigue|combat neurosis|posttraumatic stress disorder (generic term)|PTSD (generic term)
+shell stitch|2
+(noun)|crochet stitch (generic term)
+(verb)|crochet (generic term)
+shellac|3
+(noun)|lac (generic term)
+(noun)|shellac varnish|varnish (generic term)
+(verb)|shellack|varnish (generic term)|seal (generic term)
+shellac varnish|1
+(noun)|shellac|varnish (generic term)
+shellac wax|1
+(noun)|lac wax|wax (generic term)
+shellack|1
+(verb)|shellac|varnish (generic term)|seal (generic term)
+shellbark|1
+(noun)|shagbark|shagbark hickory|shellbark hickory|Carya ovata|hickory (generic term)|hickory tree (generic term)
+shellbark hickory|1
+(noun)|shagbark|shagbark hickory|shellbark|Carya ovata|hickory (generic term)|hickory tree (generic term)
+shelled|1
+(adj)|hard-shelled (similar term)|smooth-shelled (similar term)|spiral-shelled (similar term)|thin-shelled (similar term)|unshelled (antonym)
+sheller|1
+(noun)|worker (generic term)
+shelley|2
+(noun)|Shelley|Mary Shelley|Mary Wollstonecraft Shelley|Mary Godwin Wollstonecraft Shelley|writer (generic term)|author (generic term)
+(noun)|Shelley|Percy Bysshe Shelley|poet (generic term)
+shellfire|1
+(noun)|shooting (generic term)|shot (generic term)
+shellfish|2
+(noun)|seafood (generic term)
+(noun)|mollusk|mollusc|invertebrate (generic term)
+shellflower|2
+(noun)|shell-flower|turtlehead|snakehead|snake-head|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|shall-flower|shell ginger|Alpinia Zerumbet|Alpinia speciosa|Languas speciosa|ginger (generic term)
+shelling|1
+(noun)|barrage|barrage fire|battery|bombardment|fire (generic term)|firing (generic term)
+shellproof|1
+(adj)|bombproof|invulnerable (similar term)
+shelter|7
+(noun)|structure (generic term)|construction (generic term)
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|protection|security (generic term)
+(noun)|tax shelter|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+shelter deck|1
+(noun)|weather deck|upper deck (generic term)
+shelter tent|1
+(noun)|pup tent|tent (generic term)|collapsible shelter (generic term)
+shelterbelt|1
+(noun)|windbreak|hedge (generic term)|hedgerow (generic term)
+sheltered|1
+(adj)|protected (similar term)|secure (similar term)
+sheltered workshop|1
+(noun)|workshop (generic term)|shop (generic term)
+shelton jackson lee|1
+(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+shelve|2
+(verb)|postpone|prorogue|hold over|put over|table|set back|defer|remit|put off|delay (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+shelver|1
+(noun)|worker (generic term)
+shelvy|1
+(adj)|reefy|shelfy|shoaly|shallow (similar term)
+shem|1
+(noun)|Shem|man (generic term)|adult male (generic term)
+shema|1
+(noun)|Shema|prayer (generic term)
+shemozzle|1
+(noun)|schemozzle|confusion (generic term)
+shen-pao|1
+(noun)|Shen-pao|Spiritual Jewel|Chinese deity (generic term)
+shenandoah national park|1
+(noun)|Shenandoah National Park|national park (generic term)
+shenandoah river|1
+(noun)|Shenandoah River|river (generic term)
+shenandoah valley|1
+(noun)|Shenandoah Valley|valley (generic term)|vale (generic term)
+shenanigan|2
+(noun)|mischief|mischief-making|mischievousness|deviltry|devilry|devilment|rascality|roguery|roguishness|misbehavior (generic term)|misbehaviour (generic term)|misdeed (generic term)
+(noun)|trickery|chicanery|chicane|guile|wile|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+shenyang|1
+(noun)|Shenyang|Mukden|Moukden|Fengtien|city (generic term)|metropolis (generic term)|urban center (generic term)
+shepard|2
+(noun)|Shepard|Sam Shepard|dramatist (generic term)|playwright (generic term)
+(noun)|Shepard|Alan Shepard|Alan Bartlett Shepard Jr.|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+shepherd|4
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|sheepherder|sheepman|herder (generic term)|herdsman (generic term)|drover (generic term)
+(verb)|guard (generic term)|ward (generic term)
+(verb)|tend (generic term)
+shepherd's clock|1
+(noun)|meadow salsify|goatsbeard|Tragopogon pratensis|wildflower (generic term)|wild flower (generic term)
+shepherd's crook|1
+(noun)|crook|staff (generic term)
+shepherd's pie|1
+(noun)|meat pie (generic term)
+shepherd's pipe|2
+(noun)|musette|bagpipe (generic term)|pipe (generic term)
+(noun)|flageolet|treble recorder|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+shepherd's pouch|1
+(noun)|shepherd's purse|Capsella bursa-pastoris|crucifer (generic term)|cruciferous plant (generic term)
+shepherd's purse|1
+(noun)|shepherd's pouch|Capsella bursa-pastoris|crucifer (generic term)|cruciferous plant (generic term)
+shepherd dog|1
+(noun)|sheepdog|sheep dog|working dog (generic term)
+shepherdess|1
+(noun)|sheepherder (generic term)|shepherd (generic term)|sheepman (generic term)
+sheraton|1
+(noun)|Sheraton|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+sherbert|1
+(noun)|sherbet|sorbet|ice (generic term)|frappe (generic term)
+sherbet|1
+(noun)|sherbert|sorbet|ice (generic term)|frappe (generic term)
+sherd|1
+(noun)|shard|fragment|piece (generic term)
+sheridan|1
+(noun)|Sheridan|Richard Brinsley Sheridan|dramatist (generic term)|playwright (generic term)
+sheriff|1
+(noun)|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+sheriff's sale|1
+(noun)|execution sale|judicial sale|forced sale|sale (generic term)|sales agreement (generic term)
+sherlock|1
+(noun)|private detective|PI|private eye|private investigator|operative|shamus|detective (generic term)
+sherlock holmes|1
+(noun)|Sherlock Holmes|Holmes|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sherman|4
+(noun)|Sherman|William Tecumseh Sherman|general (generic term)|full general (generic term)
+(noun)|Sherman|Roger Sherman|American Revolutionary leader (generic term)
+(noun)|Sherman|Mount Sherman|mountain peak (generic term)
+(noun)|Sherman|town (generic term)
+sherpa|1
+(noun)|Sherpa|Asian (generic term)|Asiatic (generic term)
+sherrington|1
+(noun)|Sherrington|Sir Charles Scott Sherrington|physiologist (generic term)
+sherry|1
+(noun)|fortified wine (generic term)
+sherwood|1
+(noun)|Sherwood|Robert Emmet Sherwood|dramatist (generic term)|playwright (generic term)
+sherwood anderson|1
+(noun)|Anderson|Sherwood Anderson|writer (generic term)|author (generic term)
+sherwood forest|1
+(noun)|Sherwood Forest|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+shetland|2
+(noun)|Shetland|Shetland Islands|Zetland|archipelago (generic term)
+(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+shetland islands|1
+(noun)|Shetland|Shetland Islands|Zetland|archipelago (generic term)
+shetland pony|1
+(noun)|Shetland pony|pony (generic term)
+shetland sheep dog|1
+(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+shetland sheepdog|1
+(noun)|Shetland sheepdog|Shetland sheep dog|Shetland|shepherd dog (generic term)|sheepdog (generic term)|sheep dog (generic term)
+shetland wool|1
+(noun)|Shetland wool|wool (generic term)
+shevat|1
+(noun)|Shebat|Shevat|Jewish calendar month (generic term)
+shevchenko|1
+(noun)|Shevchenko|Taras Grigoryevich Shevchenko|poet (generic term)
+shew|1
+(verb)|prove|demonstrate|establish|show|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|disprove (antonym)
+shf|1
+(noun)|superhigh frequency|SHF|radio frequency (generic term)
+shi'ite|1
+(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim (generic term)|Moslem (generic term)
+shi'ite muslim|1
+(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim (generic term)|Moslem (generic term)
+shia|1
+(noun)|Shiah|Shia|Shiah Islam|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shia muslim|1
+(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim (generic term)|Moslem (generic term)
+shiah|1
+(noun)|Shiah|Shia|Shiah Islam|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shiah islam|1
+(noun)|Shiah|Shia|Shiah Islam|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shiatsu|1
+(noun)|acupressure|G-Jo|treatment (generic term)
+shibah|1
+(noun)|shiva|shivah|week (generic term)|hebdomad (generic term)
+shibboleth|2
+(noun)|motto|slogan|catchword|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+shield|5
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|buckler|armor (generic term)|armour (generic term)
+(noun)|carapace|shell|cuticle|scute (generic term)
+(verb)|screen|protect (generic term)
+(verb)|harbor|harbour|hide (generic term)|conceal (generic term)
+shield-shaped|1
+(adj)|peltate|simple (similar term)|unsubdivided (similar term)
+shield fern|1
+(noun)|buckler fern|fern (generic term)
+shield of david|1
+(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem (generic term)|allegory (generic term)|hexagram (generic term)
+shielded|1
+(adj)|protected (similar term)|secure (similar term)
+shielder|1
+(noun)|defender|guardian|protector|preserver (generic term)
+shielding|2
+(noun)|protection (generic term)
+(noun)|shield (generic term)
+shift|22
+(noun)|displacement|translation (generic term)
+(noun)|transformation|transmutation|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|work shift|duty period|hours (generic term)
+(noun)|switch|switching|change (generic term)
+(noun)|shifting|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|fault|faulting|geological fault|fracture|break|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+(noun)|shift key|key (generic term)
+(noun)|chemise|shimmy|slip|teddy|undergarment (generic term)|unmentionable (generic term)
+(noun)|chemise|sack|dress (generic term)|frock (generic term)
+(verb)|switch|change over|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|dislodge|reposition|move (generic term)|displace (generic term)
+(verb)|transfer|move (generic term)|displace (generic term)
+(verb)|stir|budge|agitate|move (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|substitute (generic term)|replace (generic term)
+(verb)|careen|wobble|tilt|move (generic term)
+(verb)|lurch|pitch|move (generic term)
+(verb)|type (generic term)|typewrite (generic term)
+(verb)|change (generic term)
+(verb)|switch (generic term)|shift (generic term)|change (generic term)
+(verb)|switch|change
+shift key|1
+(noun)|shift|key (generic term)
+shift register|1
+(noun)|register (generic term)
+shifter|2
+(noun)|sceneshifter|stagehand (generic term)|stage technician (generic term)
+(noun)|gearshift|gearstick|gear lever|mechanical device (generic term)
+shiftiness|2
+(noun)|rascality|slipperiness|trickiness|dishonesty (generic term)
+(noun)|changeableness (generic term)|changeability (generic term)
+shifting|4
+(adj)|variable (similar term)
+(adj)|shifty|unsteady (similar term)
+(adj)|unfirm|loose (similar term)
+(noun)|shift|motion (generic term)|movement (generic term)|move (generic term)
+shiftless|1
+(adj)|unambitious (similar term)|ambitionless (similar term)
+shiftlessness|1
+(noun)|indolence (generic term)|laziness (generic term)
+shifty|2
+(adj)|devious|untrustworthy (similar term)|untrusty (similar term)
+(adj)|shifting|unsteady (similar term)
+shiga bacillus|1
+(noun)|Shigella dysentariae|shigella (generic term)
+shigella|1
+(noun)|enteric bacteria (generic term)|enterobacteria (generic term)|enterics (generic term)|entric (generic term)
+shigella dysentariae|1
+(noun)|shiga bacillus|Shigella dysentariae|shigella (generic term)
+shigellosis|1
+(noun)|bacillary dysentery|dysentery (generic term)
+shih-tzu|1
+(noun)|Shih-Tzu|toy dog (generic term)|toy (generic term)
+shiism|1
+(noun)|Shiism|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+shiitake|1
+(noun)|shiitake mushroom|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+shiitake mushroom|1
+(noun)|shiitake|Chinese black mushroom|golden oak mushroom|Oriental black mushroom|Lentinus edodes|fungus (generic term)
+shiite|1
+(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim (generic term)|Moslem (generic term)
+shiite muslim|1
+(noun)|Shiite|Shi'ite|Shiite Muslim|Shi'ite Muslim|Shia Muslim|Muslim (generic term)|Moslem (generic term)
+shikoku|1
+(noun)|Shikoku|island (generic term)
+shiksa|1
+(noun)|shikse|woman (generic term)|adult female (generic term)
+shikse|1
+(noun)|shiksa|woman (generic term)|adult female (generic term)
+shill|2
+(noun)|decoy (generic term)|steerer (generic term)
+(verb)|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+shillalah|1
+(noun)|shillelagh|cudgel (generic term)
+shillelagh|1
+(noun)|shillalah|cudgel (generic term)
+shilling|6
+(noun)|Ugandan shilling|Ugandan monetary unit (generic term)
+(noun)|Tanzanian shilling|Tanzanian monetary unit (generic term)
+(noun)|Somalian shilling|Somalian monetary unit (generic term)
+(noun)|Kenyan shilling|Kenyan monetary unit (generic term)
+(noun)|British shilling|bob|British monetary unit (generic term)
+(noun)|coin (generic term)
+shillyshally|3
+(noun)|procrastination|cunctation|delay (generic term)|holdup (generic term)
+(verb)|hover (generic term)|vibrate (generic term)|vacillate (generic term)|oscillate (generic term)
+(verb)|procrastinate|stall|drag one's feet|drag one's heels|dilly-dally|dillydally|delay (generic term)
+shiloh|1
+(noun)|Shiloh|battle of Shiloh|battle of Pittsburgh Landing|pitched battle (generic term)
+shim|1
+(noun)|wedge (generic term)
+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 (generic term)
+shimmer|3
+(noun)|play|change (generic term)|alteration (generic term)|modification (generic term)
+(verb)|shine (generic term)|beam (generic term)
+(verb)|glitter (generic term)|glisten (generic term)|glint (generic term)|gleam (generic term)|shine (generic term)
+shimmery|1
+(adj)|bright (similar term)
+shimmy|5
+(noun)|wobble (generic term)
+(noun)|chemise|shift|slip|teddy|undergarment (generic term)|unmentionable (generic term)
+(noun)|social dancing (generic term)
+(verb)|wobble|vibrate (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+shin|5
+(noun)|body part (generic term)
+(noun)|shin bone|cut (generic term)|cut of meat (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|tibia|shinbone|leg bone (generic term)
+(verb)|clamber|scramble|shinny|skin|struggle|sputter|climb (generic term)
+shin bet|1
+(noun)|Shin Bet|General Security Services|international intelligence agency (generic term)
+shin bone|1
+(noun)|shin|cut (generic term)|cut of meat (generic term)
+shin guard|1
+(noun)|shinpad|protective garment (generic term)
+shin splints|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+shina|1
+(noun)|Shina|Dard (generic term)|Dardic (generic term)|Dardic language (generic term)
+shinbone|1
+(noun)|tibia|shin|leg bone (generic term)
+shindig|1
+(noun)|shindy|party (generic term)
+shindy|1
+(noun)|shindig|party (generic term)
+shine|9
+(noun)|radiance|radiancy|effulgence|refulgence|refulgency|brightness (generic term)
+(verb)|reflect|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|beam
+(verb)|glitter|glisten|glint|gleam|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|be (generic term)
+(verb)|glow|beam|radiate|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|fall|strike|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|glow|beam|radiate|feel (generic term)|experience (generic term)
+(verb)|polish|smooth|smoothen|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+shine at|1
+(verb)|excel at|excel (generic term)|stand out (generic term)|surpass (generic term)
+shine up|1
+(verb)|cozy up|cotton up|play up|sidle up|suck up|ingratiate (generic term)
+shiner|4
+(noun)|black eye|mouse|bruise (generic term)|contusion (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|common mackerel|Scomber scombrus|mackerel (generic term)
+(noun)|cyprinid (generic term)|cyprinid fish (generic term)
+shingle|4
+(noun)|shake|building material (generic term)
+(noun)|gravel (generic term)|crushed rock (generic term)
+(noun)|signboard (generic term)|sign (generic term)
+(verb)|roof (generic term)
+shingle oak|1
+(noun)|laurel oak|Quercus imbricaria|oak (generic term)|oak tree (generic term)
+shingle tree|1
+(noun)|Acrocarpus fraxinifolius|tree (generic term)
+shingler|1
+(noun)|worker (generic term)
+shingles|1
+(noun)|herpes zoster|zoster|herpes (generic term)
+shingling|2
+(noun)|rock (generic term)|stone (generic term)
+(noun)|trade (generic term)|craft (generic term)
+shingly|1
+(adj)|gravelly|pebbly|beachy (similar term)|beachlike (similar term)
+shingon|1
+(noun)|Shingon|Buddhism (generic term)
+shininess|1
+(noun)|sheen|luster|lustre|radiance (generic term)|radiancy (generic term)|shine (generic term)|effulgence (generic term)|refulgence (generic term)|refulgency (generic term)
+shining|5
+(adj)|superior (similar term)
+(adj)|bright|burnished|lustrous|shiny|polished (similar term)
+(adj)|bright|shiny|sunshiny|sunny|clear (similar term)
+(adj)|glistening|glossy|lustrous|sheeny|shiny|bright (similar term)
+(noun)|polishing|work (generic term)
+shining clubmoss|1
+(noun)|Lycopodium lucidulum|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+shining path|1
+(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+shining sumac|1
+(noun)|dwarf sumac|mountain sumac|black sumac|Rhus copallina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+shining willow|1
+(noun)|Salix lucida|willow (generic term)|willow tree (generic term)
+shinleaf|1
+(noun)|wild lily of the valley|Pyrola elliptica|wintergreen (generic term)|pyrola (generic term)
+shinney|1
+(noun)|shinny|field hockey (generic term)|hockey (generic term)
+shinny|2
+(noun)|shinney|field hockey (generic term)|hockey (generic term)
+(verb)|clamber|scramble|shin|skin|struggle|sputter|climb (generic term)
+shinpad|1
+(noun)|shin guard|protective garment (generic term)
+shinplaster|1
+(noun)|money (generic term)
+shinto|3
+(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief (related term)
+(noun)|Shinto|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Shinto|Shintoism|religion (generic term)|faith (generic term)|religious belief (generic term)
+shintoism|1
+(noun)|Shinto|Shintoism|religion (generic term)|faith (generic term)|religious belief (generic term)
+shintoist|2
+(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief (related term)
+(noun)|Shintoist|disciple (generic term)|adherent (generic term)
+shintoistic|1
+(adj)|Shinto|Shintoist|Shintoistic|religion|faith|religious belief (related term)
+shiny|4
+(adj)|glistening|glossy|lustrous|sheeny|shining|bright (similar term)
+(adj)|glazed|glassy (similar term)|vitreous (similar term)|vitrified (similar term)|glass-like (similar term)|glossy (similar term)|calendered (similar term)|icy (similar term)|unglazed (antonym)
+(adj)|bright|burnished|lustrous|shining|polished (similar term)
+(adj)|bright|shining|sunshiny|sunny|clear (similar term)
+shiny lyonia|1
+(noun)|fetterbush|fetter bush|Lyonia lucida|shrub (generic term)|bush (generic term)
+ship|6
+(noun)|vessel (generic term)|watercraft (generic term)
+(verb)|transport|send|move (generic term)|displace (generic term)|send on (related term)|send off (related term)
+(verb)|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|embark|board (generic term)|get on (generic term)|disembark (antonym)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+ship's bell|1
+(noun)|bell|time unit (generic term)|unit of time (generic term)
+ship's boat|1
+(noun)|tender|pinnace|cutter|boat (generic term)
+ship's chandler|1
+(noun)|chandler (generic term)
+ship's company|1
+(noun)|company|complement (generic term)|full complement (generic term)
+ship's galley|1
+(noun)|galley|caboose|cookhouse|kitchen (generic term)
+ship's officer|1
+(noun)|officer|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+ship's papers|1
+(noun)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+ship-breaker|1
+(noun)|contractor (generic term)
+ship-towed long-range acoustic detection system|1
+(noun)|shipboard system (generic term)
+ship biscuit|1
+(noun)|hardtack|pilot biscuit|pilot bread|sea biscuit|biscuit (generic term)
+ship broker|1
+(noun)|agent (generic term)|factor (generic term)|broker (generic term)
+ship builder|2
+(noun)|shipwright|shipbuilder|wright (generic term)
+(noun)|shipbuilder|builder (generic term)|constructor (generic term)
+ship canal|1
+(noun)|shipway|canal (generic term)
+ship chandler|1
+(noun)|distributor (generic term)|distributer (generic term)
+ship money|1
+(noun)|customs (generic term)|customs duty (generic term)|custom (generic term)|impost (generic term)
+ship of the line|1
+(noun)|man-of-war|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+ship route|1
+(noun)|seaway|sea lane|trade route|lane (generic term)
+shipboard|1
+(adj)|sea (similar term)
+shipboard duty|1
+(noun)|sea-duty|service abroad|assignment (generic term)|duty assignment (generic term)
+shipboard soldier|1
+(noun)|Marine|devil dog|leatherneck|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+shipboard system|1
+(noun)|naval equipment (generic term)|system (generic term)
+shipbuilder|3
+(noun)|shipwright|ship builder|wright (generic term)
+(noun)|ship builder|builder (generic term)|constructor (generic term)
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+shipbuilding|1
+(noun)|construction (generic term)|building (generic term)
+shipbuilding industry|1
+(noun)|industry (generic term)
+shipload|1
+(noun)|boatload|carload|large indefinite quantity (generic term)|large indefinite amount (generic term)
+shipmate|1
+(noun)|associate (generic term)
+shipment|2
+(noun)|cargo|lading|freight|load|loading|payload|consignment|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|dispatch|despatch|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+shipowner|1
+(noun)|owner (generic term)|possessor (generic term)
+shipper|2
+(noun)|businessperson (generic term)|bourgeois (generic term)
+(noun)|company (generic term)
+shipping|2
+(noun)|transportation|transport|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|cargo ships|merchant marine|merchant vessels|conveyance (generic term)|transport (generic term)
+shipping agent|1
+(noun)|agent (generic term)
+shipping articles|1
+(noun)|articles of agreement|contract (generic term)
+shipping clerk|1
+(noun)|clerk (generic term)
+shipping company|1
+(noun)|company (generic term)
+shipping fever|1
+(noun)|shipping pneumonia|animal disease (generic term)|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+shipping office|1
+(noun)|office (generic term)|business office (generic term)
+shipping pneumonia|1
+(noun)|shipping fever|animal disease (generic term)|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+shipping room|1
+(noun)|room (generic term)
+shipshape|1
+(adj)|trim|well-kept|tidy (similar term)
+shipside|1
+(noun)|side (generic term)
+shipway|2
+(noun)|ways|slipway|structure (generic term)|construction (generic term)
+(noun)|ship canal|canal (generic term)
+shipworm|1
+(noun)|teredinid|clam (generic term)
+shipwreck|7
+(noun)|ship (generic term)
+(noun)|ruin (generic term)|ruination (generic term)
+(noun)|wreck|accident (generic term)
+(verb)|ruin (generic term)
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|subject (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+shipwreck survivor|1
+(noun)|castaway|abandoned person (generic term)
+shipwrecked|1
+(adj)|aground (similar term)
+shipwright|1
+(noun)|shipbuilder|ship builder|wright (generic term)
+shipyard|1
+(noun)|workplace (generic term)|work (generic term)
+shiraz|1
+(noun)|Shiraz|city (generic term)|metropolis (generic term)|urban center (generic term)
+shire|2
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|shire horse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+shire horse|1
+(noun)|shire|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+shire town|1
+(noun)|county town|seat (generic term)
+shirer|1
+(noun)|Shirer|William Lawrence Shirer|journalist (generic term)
+shirk|2
+(verb)|fiddle|shrink from|goldbrick|avoid (generic term)
+(verb)|avoid (generic term)
+shirker|1
+(noun)|slacker|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+shirking|1
+(noun)|slacking|soldiering|goofing off|goldbricking|evasion (generic term)|escape (generic term)|dodging (generic term)
+shirley temple|1
+(noun)|Black|Shirley Temple Black|Shirley Temple|actress (generic term)
+shirley temple black|1
+(noun)|Black|Shirley Temple Black|Shirley Temple|actress (generic term)
+shirodkar's operation|1
+(noun)|Shirodkar's operation|purse-string operation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+shirr|1
+(verb)|bake (generic term)
+shirred egg|1
+(noun)|baked egg|egg en cocotte|dish (generic term)
+shirring|1
+(noun)|baking (generic term)
+shirt|2
+(noun)|garment (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+shirt button|1
+(noun)|button (generic term)
+shirtdress|1
+(noun)|dress (generic term)|frock (generic term)
+shirtfront|2
+(noun)|front (generic term)
+(noun)|dickey|dickie|dicky|insert (generic term)|inset (generic term)
+shirting|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+shirtlifter|1
+(noun)|gay man|homosexual (generic term)|homophile (generic term)|homo (generic term)|gay (generic term)
+shirtmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+shirtsleeve|1
+(noun)|sleeve (generic term)|arm (generic term)
+shirtsleeves|1
+(noun)|dishabille (generic term)|deshabille (generic term)
+shirttail|2
+(noun)|appendix (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+shirtwaist|1
+(noun)|shirtwaister|blouse (generic term)
+shirtwaister|1
+(noun)|shirtwaist|blouse (generic term)
+shirty|1
+(adj)|snorty|ill-natured (similar term)
+shish kebab|1
+(noun)|kabob|kebab|dish (generic term)
+shisha|1
+(noun)|hookah|narghile|nargileh|sheesha|chicha|calean|kalian|water pipe|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+shit|8
+(noun)|crap|dirt|shite|poop|turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+(noun)|bullshit|bull|Irish bull|horseshit|crap|dogshit|bunk (generic term)|bunkum (generic term)|buncombe (generic term)|guff (generic term)|rot (generic term)|hogwash (generic term)
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|squat|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|dump|defecation (generic term)|laxation (generic term)|shitting (generic term)
+(noun)|asshole|bastard|cocksucker|dickhead|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|damn|darn|hoot|red cent|shucks|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+(verb)|denounce|tell on|betray|give away|rat|grass|shop|snitch|stag|inform (generic term)
+(verb)|stool|defecate|take a shit|take a crap|ca-ca|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+shite|1
+(noun)|crap|dirt|shit|poop|turd|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+shithead|1
+(noun)|dunce|dunderhead|numskull|blockhead|bonehead|lunkhead|hammerhead|knucklehead|loggerhead|muttonhead|dumbass|fuckhead|simpleton (generic term)|simple (generic term)
+shitless|1
+(adj)|afraid (similar term)
+shitlist|1
+(noun)|blacklist|black book|list (generic term)|listing (generic term)
+shittah|1
+(noun)|shittah tree|acacia (generic term)
+shittah tree|1
+(noun)|shittah|acacia (generic term)
+shitter|1
+(noun)|defecator|voider|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+shittim|1
+(noun)|southern buckthorn|shittimwood|mock orange|Bumelia lycioides|buckthorn (generic term)
+shittimwood|3
+(noun)|false buckthorn|chittamwood|chittimwood|black haw|Bumelia lanuginosa|buckthorn (generic term)
+(noun)|southern buckthorn|shittim|mock orange|Bumelia lycioides|buckthorn (generic term)
+(noun)|wood (generic term)
+shitting|1
+(noun)|defecation|laxation|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+shitty|1
+(adj)|icky|crappy|lousy|rotten|stinking|stinky|bad (similar term)
+shitwork|1
+(noun)|scut work|disagreeable task (generic term)|disagreeable chore (generic term)
+shiv|1
+(noun)|knife (generic term)
+shiva|2
+(noun)|shivah|shibah|week (generic term)|hebdomad (generic term)
+(noun)|Siva|Shiva|Hindu deity (generic term)
+shivah|1
+(noun)|shiva|shibah|week (generic term)|hebdomad (generic term)
+shivaism|2
+(noun)|Shivaism|Sivaism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Shivaism|Sivaism|Hinduism (generic term)|Hindooism (generic term)
+shivaist|1
+(noun)|Shivaist|Hindu (generic term)|Hindoo (generic term)
+shivaree|1
+(noun)|chivaree|charivari|callithump|callathump|belling|serenade (generic term)
+shiver|4
+(noun)|tremble|shake|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|frisson|chill|quiver|shudder|thrill|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(verb)|shudder|throb|thrill|tremble (generic term)
+(verb)|shudder|move involuntarily (generic term)|move reflexively (generic term)
+shivering|2
+(adj)|shaky|trembling|unsteady (similar term)
+(noun)|chill|symptom (generic term)
+shivery|2
+(adj)|cold (similar term)
+(adj)|chilling|scarey|scary|shuddery|alarming (similar term)
+shlemiel|1
+(noun)|schlemiel|simpleton (generic term)|simple (generic term)
+shlep|4
+(noun)|schlepper|shlepper|schlep|simpleton (generic term)|simple (generic term)
+(noun)|schlep|journey (generic term)|journeying (generic term)
+(verb)|traipse|walk (generic term)
+(verb)|schlep|pull along|drag (generic term)
+shlepper|1
+(noun)|schlepper|schlep|shlep|simpleton (generic term)|simple (generic term)
+shlimazel|1
+(noun)|schlimazel|unfortunate (generic term)|unfortunate person (generic term)
+shlock|1
+(noun)|schlock|dreck|merchandise (generic term)|ware (generic term)|product (generic term)
+shlockmeister|1
+(noun)|schlockmeister|merchant (generic term)|merchandiser (generic term)
+shmaltz|1
+(noun)|schmaltz|schmalz|mawkishness (generic term)|sentimentality (generic term)|drippiness (generic term)|mushiness (generic term)|soupiness (generic term)|sloppiness (generic term)
+shmear|1
+(noun)|schmeer|schmear|batch (generic term)|clutch (generic term)
+shmegegge|1
+(noun)|schmegegge|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+shmo|1
+(noun)|schmuck|shmuck|schmo|jerk (generic term)|dork (generic term)
+shmoose|1
+(verb)|shmooze|schmooze|schmoose|jawbone|chew the fat (generic term)|shoot the breeze (generic term)|chat (generic term)|confabulate (generic term)|confab (generic term)|chitchat (generic term)|chatter (generic term)|chaffer (generic term)|natter (generic term)|gossip (generic term)|jaw (generic term)|claver (generic term)|visit (generic term)
+shmooze|2
+(noun)|talk (generic term)|talking (generic term)
+(verb)|shmoose|schmooze|schmoose|jawbone|chew the fat (generic term)|shoot the breeze (generic term)|chat (generic term)|confabulate (generic term)|confab (generic term)|chitchat (generic term)|chatter (generic term)|chaffer (generic term)|natter (generic term)|gossip (generic term)|jaw (generic term)|claver (generic term)|visit (generic term)
+shmuck|1
+(noun)|schmuck|schmo|shmo|jerk (generic term)|dork (generic term)
+shnook|1
+(noun)|schnook|simpleton (generic term)|simple (generic term)
+shnorr|1
+(verb)|schnorr|scrounge|cadge|beg (generic term)
+shnorrer|1
+(noun)|schnorrer|moocher (generic term)|mooch (generic term)|cadger (generic term)|scrounger (generic term)
+shoal|5
+(noun)|sandbank (generic term)
+(noun)|shallow|body of water (generic term)|water (generic term)
+(noun)|school|animal group (generic term)
+(verb)|shallow|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|shallow|change (generic term)
+shoaly|1
+(adj)|reefy|shelfy|shelvy|shallow (similar term)
+shoat|1
+(noun)|piglet|piggy|shote|young mammal (generic term)
+shock|16
+(noun)|daze|stupor|stupefaction (generic term)
+(noun)|impact|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(noun)|electric shock|electrical shock|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|collapse (generic term)
+(noun)|seismic disturbance|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+(noun)|blow|surprise (generic term)
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+(noun)|mass (generic term)
+(noun)|shock absorber|cushion|damper (generic term)|muffler (generic term)
+(verb)|stun|floor|ball over|blow out of the water|take aback|surprise (generic term)
+(verb)|offend|scandalize|scandalise|appal|appall|outrage|disgust (generic term)|revolt (generic term)|nauseate (generic term)|sicken (generic term)|churn up (generic term)
+(verb)|dismay (generic term)|alarm (generic term)|appal (generic term)|appall (generic term)|horrify (generic term)
+(verb)|collide (generic term)|clash (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|traumatize|traumatise|injure (generic term)|wound (generic term)
+shock-absorbent|1
+(adj)|absorbent (similar term)|absorptive (similar term)
+shock-headed|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+shock absorber|1
+(noun)|shock|cushion|damper (generic term)|muffler (generic term)
+shock therapy|1
+(noun)|shock treatment|therapy (generic term)
+shock treatment|1
+(noun)|shock therapy|therapy (generic term)
+shock troops|1
+(noun)|troop (generic term)
+shock wave|1
+(noun)|blast wave|wave (generic term)|undulation (generic term)
+shockable|1
+(adj)|narrow-minded|unshockable (antonym)
+shocked|1
+(adj)|aghast|appalled|dismayed|afraid (similar term)
+shocker|2
+(noun)|bad person (generic term)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+shocking|2
+(adj)|lurid|sensational (similar term)
+(adj)|disgraceful|scandalous|shameful|immoral (similar term)
+shockley|1
+(noun)|Shockley|William Shockley|William Bradford Shockley|physicist (generic term)
+shod|2
+(adj)|shodden|shoed|booted (similar term)|ironshod (similar term)|roughshod (similar term)|sandaled (similar term)|sandalled (similar term)|slippered (similar term)|unshod (antonym)
+(adj)|calced|discalced (antonym)
+shodden|1
+(adj)|shod|shoed|booted (similar term)|ironshod (similar term)|roughshod (similar term)|sandaled (similar term)|sandalled (similar term)|slippered (similar term)|unshod (antonym)
+shoddiness|2
+(noun)|trashiness|worthlessness (generic term)|ineptitude (generic term)
+(noun)|flimsiness|weakness (generic term)
+shoddy|4
+(adj)|cheapjack|tawdry|inferior (similar term)
+(adj)|jerry-built|weak (similar term)
+(adj)|deceptive|misleading|dishonest (similar term)|dishonorable (similar term)
+(noun)|wool (generic term)
+shoe|5
+(noun)|footwear (generic term)|footgear (generic term)
+(noun)|case (generic term)
+(noun)|horseshoe|plate (generic term)|scale (generic term)|shell (generic term)
+(noun)|brake shoe|skid|restraint (generic term)|constraint (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+shoe-shop|1
+(noun)|shoe shop|shoe store|shop (generic term)|store (generic term)
+shoe black|1
+(noun)|China rose|Chinese hibiscus|Rose of China|shoeblack plant|Hibiscus rosa-sinensis|hibiscus (generic term)
+shoe bomb|1
+(noun)|explosive device (generic term)
+shoe collar|1
+(noun)|collar|brim (generic term)|rim (generic term)|lip (generic term)
+shoe industry|1
+(noun)|industry (generic term)
+shoe lace|1
+(noun)|shoelace|shoestring|shoe string|lace (generic term)|lacing (generic term)
+shoe leather|1
+(noun)|leather (generic term)
+shoe polish|1
+(noun)|blacking|polish (generic term)
+shoe repairing|1
+(noun)|shoemaking|cobbling|trade (generic term)|craft (generic term)
+shoe shop|1
+(noun)|shoe-shop|shoe store|shop (generic term)|store (generic term)
+shoe store|1
+(noun)|shoe shop|shoe-shop|shop (generic term)|store (generic term)
+shoe string|2
+(noun)|shoestring|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|shoelace|shoe lace|shoestring|lace (generic term)|lacing (generic term)
+shoebill|1
+(noun)|shoebird|Balaeniceps rex|wading bird (generic term)|wader (generic term)
+shoebird|1
+(noun)|shoebill|Balaeniceps rex|wading bird (generic term)|wader (generic term)
+shoeblack|1
+(noun)|bootblack|unskilled person (generic term)
+shoeblack plant|1
+(noun)|China rose|Chinese hibiscus|Rose of China|shoe black|Hibiscus rosa-sinensis|hibiscus (generic term)
+shoebox|2
+(noun)|structure (generic term)|construction (generic term)
+(noun)|box (generic term)
+shoed|1
+(adj)|shod|shodden|booted (similar term)|ironshod (similar term)|roughshod (similar term)|sandaled (similar term)|sandalled (similar term)|slippered (similar term)|unshod (antonym)
+shoeful|1
+(noun)|containerful (generic term)
+shoehorn|2
+(noun)|device (generic term)
+(verb)|tailor|adapt (generic term)|accommodate (generic term)
+shoelace|1
+(noun)|shoe lace|shoestring|shoe string|lace (generic term)|lacing (generic term)
+shoeless|1
+(adj)|barefoot|barefooted|unshod (similar term)|unshoed (similar term)
+shoemaker|1
+(noun)|cobbler|maker (generic term)|shaper (generic term)
+shoemaker's last|1
+(noun)|last|cobbler's last|holding device (generic term)
+shoemaking|1
+(noun)|shoe repairing|cobbling|trade (generic term)|craft (generic term)
+shoes|1
+(noun)|place|situation (generic term)|position (generic term)
+shoeshine|2
+(noun)|coating (generic term)|finish (generic term)|finishing (generic term)
+(noun)|shining (generic term)|polishing (generic term)
+shoestring|2
+(noun)|shoelace|shoe lace|shoe string|lace (generic term)|lacing (generic term)
+(noun)|shoe string|small indefinite quantity (generic term)|small indefinite amount (generic term)
+shoestring catch|1
+(noun)|catch (generic term)|grab (generic term)|snatch (generic term)|snap (generic term)
+shoestring fungus|1
+(noun)|agaric (generic term)
+shoetree|2
+(noun)|device (generic term)
+(verb)|tree|elongate (generic term)|stretch (generic term)
+shofar|1
+(noun)|shophar|horn (generic term)
+shogi|1
+(noun)|chess (generic term)|chess game (generic term)
+shogun|1
+(noun)|dictator (generic term)|potentate (generic term)|Japanese (generic term)|Nipponese (generic term)
+shogunate|1
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+shoji|1
+(noun)|screen (generic term)|cover (generic term)|covert (generic term)|concealment (generic term)
+sholem asch|1
+(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer (generic term)|author (generic term)
+sholom asch|1
+(noun)|Asch|Sholem Asch|Shalom Asch|Sholom Asch|writer (generic term)|author (generic term)
+shona|3
+(adj)|Shona|Bantu (related term)
+(noun)|Shona|Bantu (generic term)
+(noun)|Shona|Bantu (generic term)|Bantoid language (generic term)
+shoo|1
+(verb)|shoo off|shoo away|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+shoo-in|1
+(noun)|runaway|blowout|romp|laugher|walkaway|victory (generic term)|triumph (generic term)
+shoo away|1
+(verb)|shoo off|shoo|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+shoo fly|1
+(noun)|apple of Peru|Nicandra physaloides|herb (generic term)|herbaceous plant (generic term)
+shoo off|1
+(verb)|shoo|shoo away|chase away (generic term)|drive out (generic term)|turn back (generic term)|drive away (generic term)|dispel (generic term)|drive off (generic term)|run off (generic term)
+shoofly|2
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|rocking chair (generic term)|rocker (generic term)
+shoofly pie|1
+(noun)|pie (generic term)
+shook|1
+(noun)|barrel (generic term)|cask (generic term)
+shoot|22
+(noun)|sprout (generic term)
+(noun)|shooting (generic term)|shot (generic term)
+(verb)|hit|pip|injure (generic term)|wound (generic term)
+(verb)|pip|kill (generic term)
+(verb)|fire (generic term)|discharge (generic term)
+(verb)|film|take|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|project (generic term)|cast (generic term)|contrive (generic term)|throw (generic term)
+(verb)|dart|dash|scoot|scud|flash|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|flash back (related term)
+(verb)|tear|shoot down|charge|buck|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|shoot up (related term)
+(verb)|hit (generic term)
+(verb)|photograph|snap|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|inject|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|weave (generic term)|interweave (generic term)
+(verb)|throw (generic term)
+(verb)|fritter|frivol away|dissipate|fritter away|fool|fool away|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|measure (generic term)|mensurate (generic term)|measure out (generic term)
+(verb)|spud|germinate|pullulate|bourgeon|burgeon forth|sprout|grow (generic term)
+(verb)|inject|administer (generic term)|dispense (generic term)
+shoot-'em-up|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+shoot-down|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+shoot a line|1
+(verb)|boast|tout|swash|brag|gas|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+shoot craps|1
+(verb)|gamble (generic term)
+shoot down|3
+(verb)|tear|shoot|charge|buck|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|shoot up (related term)
+(verb)|down|land
+(verb)|kill|defeat|vote down|vote out|veto (generic term)|blackball (generic term)|negative (generic term)
+shoot for|1
+(verb)|draw a bead on|aspire|aim|plan (generic term)|be after (generic term)
+shoot one's mouth off|1
+(verb)|lip off|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+shoot the breeze|1
+(verb)|chew the fat|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|visit|converse (generic term)|discourse (generic term)
+shoot up|1
+(verb)|increase (generic term)
+shooter|5
+(noun)|taw|marble (generic term)
+(noun)|shot|expert (generic term)
+(noun)|crap-shooter|gambler (generic term)
+(noun)|player (generic term)|participant (generic term)
+(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|torpedo|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+shooting|2
+(noun)|shot|propulsion (generic term)|actuation (generic term)
+(noun)|homicide (generic term)
+shooting box|1
+(noun)|shooting lodge|country house (generic term)
+shooting brake|1
+(noun)|estate car|beach wagon (generic term)|station wagon (generic term)|wagon (generic term)|beach waggon (generic term)|station waggon (generic term)|waggon (generic term)
+shooting gallery|2
+(noun)|building (generic term)|edifice (generic term)
+(noun)|shooting range|firing range (generic term)|target range (generic term)
+shooting iron|1
+(noun)|pistol|handgun|side arm|firearm (generic term)|piece (generic term)|small-arm (generic term)
+shooting lodge|1
+(noun)|shooting box|country house (generic term)
+shooting preserve|1
+(noun)|preserve (generic term)
+shooting range|1
+(noun)|shooting gallery|firing range (generic term)|target range (generic term)
+shooting script|1
+(noun)|script (generic term)|book (generic term)|playscript (generic term)
+shooting star|1
+(noun)|meteor|light (generic term)|visible light (generic term)|visible radiation (generic term)
+shooting stick|1
+(noun)|device (generic term)
+shootout|1
+(noun)|gunfight|gunplay|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+shop|7
+(noun)|store|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+(noun)|workshop|workplace (generic term)|work (generic term)
+(noun)|shop class|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+(verb)|obtain (generic term)
+(verb)|patronize|patronise|shop at|buy at|frequent|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+(verb)|browse|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|denounce|tell on|betray|give away|rat|grass|shit|snitch|stag|inform (generic term)
+shop assistant|1
+(noun)|employee (generic term)
+shop at|1
+(verb)|patronize|patronise|shop|buy at|frequent|sponsor|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+shop bell|1
+(noun)|bell (generic term)
+shop boy|1
+(noun)|shop assistant (generic term)|male child (generic term)|boy (generic term)
+shop class|1
+(noun)|shop|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+shop clerk|1
+(noun)|salesclerk|clerk|salesperson (generic term)|sales representative (generic term)|sales rep (generic term)
+shop floor|1
+(noun)|workplace (generic term)|work (generic term)
+shop girl|1
+(noun)|shop assistant (generic term)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+shop mechanic|1
+(noun)|machinist|mechanic|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+shop steward|1
+(noun)|steward|union representative (generic term)
+shop talk|1
+(noun)|talk (generic term)|talking (generic term)
+shopaholic|1
+(noun)|shopper (generic term)
+shopfront|1
+(noun)|storefront|front (generic term)
+shophar|1
+(noun)|shofar|horn (generic term)
+shopkeeper|1
+(noun)|tradesman|storekeeper|market keeper|merchant (generic term)|merchandiser (generic term)
+shoplift|1
+(verb)|steal (generic term)
+shoplifter|1
+(noun)|booster|lifter|thief (generic term)|stealer (generic term)
+shoplifting|1
+(noun)|shrinkage|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+shopper|2
+(noun)|customer (generic term)|client (generic term)
+(noun)|agent (generic term)
+shopping|1
+(noun)|buying (generic term)|purchasing (generic term)
+shopping bag|1
+(noun)|sack (generic term)|poke (generic term)|paper bag (generic term)|carrier bag (generic term)
+shopping basket|1
+(noun)|basket (generic term)|handbasket (generic term)
+shopping cart|1
+(noun)|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+shopping center|1
+(noun)|plaza|mall|center|shopping mall|shopping centre|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+shopping centre|1
+(noun)|plaza|mall|center|shopping mall|shopping center|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+shopping list|2
+(noun)|list (generic term)|listing (generic term)
+(noun)|grocery list|list (generic term)|listing (generic term)
+shopping mall|1
+(noun)|plaza|mall|center|shopping center|shopping centre|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+shopsoiled|1
+(adj)|shopworn|worn (similar term)
+shopwalker|1
+(noun)|floorwalker|employee (generic term)
+shopwindow|1
+(noun)|display window|show window|window (generic term)
+shopworn|2
+(adj)|shopsoiled|worn (similar term)
+(adj)|banal|commonplace|hackneyed|old-hat|stock|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+shore|5
+(noun)|geological formation (generic term)|formation (generic term)
+(noun)|shoring|beam (generic term)
+(verb)|bound (generic term)|border (generic term)
+(verb)|land|set ashore|arrive (generic term)|get (generic term)|come (generic term)
+(verb)|prop up|prop|shore up|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+shore bird|1
+(noun)|shorebird|limicoline bird|wading bird (generic term)|wader (generic term)
+shore boulder|1
+(noun)|boulder (generic term)|bowlder (generic term)
+shore duty|1
+(noun)|assignment (generic term)|duty assignment (generic term)
+shore leave|1
+(noun)|liberty|leave (generic term)|leave of absence (generic term)
+shore patrol|1
+(noun)|military police (generic term)|MP (generic term)
+shore pine|1
+(noun)|lodgepole|lodgepole pine|spruce pine|Pinus contorta|pine (generic term)|pine tree (generic term)|true pine (generic term)
+shore station|1
+(noun)|naval installation|military installation (generic term)
+shore up|1
+(verb)|prop up|prop|shore|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+shorea|1
+(noun)|Shorea|genus Shorea|dilleniid dicot genus (generic term)
+shorea teysmanniana|1
+(noun)|red lauan|red lauan tree|Shorea teysmanniana|dipterocarp (generic term)
+shorebird|1
+(noun)|shore bird|limicoline bird|wading bird (generic term)|wader (generic term)
+shoreline|1
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+shoring|2
+(noun)|shore|beam (generic term)
+(noun)|shoring up|propping up|support (generic term)|supporting (generic term)
+shoring up|1
+(noun)|shoring|propping up|support (generic term)|supporting (generic term)
+shorn|1
+(adj)|sheared|unsheared (antonym)
+short|18
+(adj)|abbreviated (similar term)|shortened (similar term)|truncated (similar term)|brief (similar term)|little (similar term)|clipped (similar term)|fleeting (similar term)|fugitive (similar term)|momentaneous (similar term)|momentary (similar term)|short and sweet (similar term)|short-dated (similar term)|short-range (similar term)|short-run (similar term)|short-term (similar term)|long (antonym)
+(adj)|abbreviated (similar term)|brief (similar term)|close (similar term)|curtal (similar term)|sawed-off (similar term)|sawn-off (similar term)|shortened (similar term)|shortish (similar term)|short-range (similar term)|short-snouted (similar term)|snub (similar term)|stubby (similar term)|telescoped (similar term)|shortened (similar term)|truncate (similar term)|truncated (similar term)|long (antonym)
+(adj)|chunky (similar term)|dumpy (similar term)|low-set (similar term)|squat (similar term)|squatty (similar term)|stumpy (similar term)|half-length (similar term)|pint-size (similar term)|pint-sized (similar term)|runty (similar term)|sawed-off (similar term)|sawn-off (similar term)|short-stalked (similar term)|squab (similar term)|squabby (similar term)|small (related term)|little (related term)|low (related term)|tall (antonym)
+(adj)|inadequate|poor|insufficient (similar term)|deficient (similar term)
+(adj)|unretentive|forgetful|unmindful (related term)|forgetful (related term)|mindless (related term)|retentive (antonym)
+(adj)|long (antonym)
+(adj)|light|scant|insufficient (similar term)|deficient (similar term)
+(adj)|shortsighted|unforesightful|myopic|improvident (similar term)
+(adj)|breakable (similar term)
+(adj)|brusque|brusk|curt|discourteous (similar term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|short circuit|contact (generic term)|tangency (generic term)
+(noun)|shortstop|position (generic term)
+(verb)|short-change|victimize (generic term)|swindle (generic term)|rook (generic term)|goldbrick (generic term)|nobble (generic term)|diddle (generic term)|bunco (generic term)|defraud (generic term)|scam (generic term)|mulct (generic term)|gyp (generic term)|gip (generic term)|hornswoggle (generic term)|short-change (generic term)|con (generic term)
+(verb)|short-circuit|make (generic term)|create (generic term)
+(adv)|abruptly|suddenly|dead
+(adv)|unawares
+(adv)|curtly|shortly
+short's aster|1
+(noun)|Short's aster|Aster shortii|aster (generic term)
+short-beaked|1
+(adj)|short-billed|beaked (similar term)
+short-billed|1
+(adj)|short-beaked|beaked (similar term)
+short-billed marsh wren|1
+(noun)|sedge wren|Cistothorus platensis|marsh wren (generic term)
+short-bodied|1
+(adj)|bodied (similar term)
+short-change|2
+(verb)|short|victimize (generic term)|swindle (generic term)|rook (generic term)|goldbrick (generic term)|nobble (generic term)|diddle (generic term)|bunco (generic term)|defraud (generic term)|scam (generic term)|mulct (generic term)|gyp (generic term)|gip (generic term)|hornswoggle (generic term)|short-change (generic term)|con (generic term)
+(verb)|victimize|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+short-circuit|3
+(verb)|thwart (generic term)|queer (generic term)|spoil (generic term)|scotch (generic term)|foil (generic term)|cross (generic term)|frustrate (generic term)|baffle (generic term)|bilk (generic term)
+(verb)|short|make (generic term)|create (generic term)
+(verb)|bypass|go around|get around|avoid (generic term)
+short-dated|1
+(adj)|short (similar term)
+short-eared|1
+(adj)|eared (similar term)
+short-grass|1
+(noun)|shortgrass|grass (generic term)
+short-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+short-handed|1
+(adj)|short-staffed|undermanned|understaffed|inadequate (similar term)
+short-handled|1
+(adj)|appendage (related term)
+short-headed|1
+(adj)|broad-headed|roundheaded|brachycephalic (similar term)|brachycranial (similar term)|brachycranic (similar term)
+short-horned grasshopper|1
+(noun)|acridid|grasshopper (generic term)|hopper (generic term)
+short-leaf pine|1
+(noun)|shortleaf pine|shortleaf yellow pine|Pinus echinata|yellow pine (generic term)
+short-lived|1
+(adj)|ephemeral|passing|transient|transitory|fugacious|impermanent (similar term)|temporary (similar term)
+short-nosed|1
+(adj)|pug-nosed|pug-nose|snub-nosed|nosed (similar term)
+short-order|1
+(adj)|order (related term)
+short-range|1
+(adj)|short (similar term)
+short-run|1
+(adj)|short-term|short (similar term)
+short-snouted|1
+(adj)|short (similar term)
+short-spurred|1
+(adj)|long-spurred (antonym)
+short-spurred fragrant orchid|1
+(noun)|Gymnadenia odoratissima|orchid (generic term)|orchidaceous plant (generic term)
+short-staffed|1
+(adj)|short-handed|undermanned|understaffed|inadequate (similar term)
+short-stalked|1
+(adj)|short (similar term)
+short-staple cotton|1
+(noun)|cotton (generic term)|cotton fiber (generic term)|cotton wool (generic term)
+short-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+short-stop|1
+(noun)|stop bath|short-stop bath|developer (generic term)
+short-stop bath|1
+(noun)|stop bath|short-stop|developer (generic term)
+short-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+short-tailed shrew|1
+(noun)|Blarina brevicauda|shrew (generic term)|shrewmouse (generic term)
+short-tempered|1
+(adj)|choleric|irascible|hotheaded|hot-tempered|quick-tempered|ill-natured (similar term)
+short-term|1
+(adj)|short-run|short (similar term)
+short-term memory|1
+(noun)|STM|immediate memory|memory (generic term)|remembering (generic term)
+short-toed eagle|1
+(noun)|harrier eagle|hawk (generic term)
+short-winded|1
+(adj)|blown|gasping|out of breath|panting|pursy|winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+short-winged|1
+(adj)|brachypterous|winged (similar term)
+short account|2
+(noun)|account (generic term)|business relationship (generic term)
+(noun)|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+short and sweet|1
+(adj)|short (similar term)
+short aria|1
+(noun)|arietta|aria (generic term)
+short bone|1
+(noun)|os breve|bone (generic term)|os (generic term)
+short circuit|1
+(noun)|short|contact (generic term)|tangency (generic term)
+short covering|1
+(noun)|trading (generic term)
+short division|1
+(noun)|division (generic term)
+short gastric artery|1
+(noun)|arteria gastrica breves|vasa brevis|gastric artery (generic term)|arteria gastrica (generic term)
+short hundredweight|1
+(noun)|hundredweight|cwt|centner|cental|quintal|avoirdupois unit (generic term)
+short iron|1
+(noun)|iron (generic term)
+short letter|1
+(noun)|note|line|billet|personal letter (generic term)
+short line|1
+(noun)|transportation system (generic term)|transportation (generic term)|transit (generic term)
+short list|1
+(noun)|shortlist|list (generic term)|listing (generic term)
+short order|1
+(noun)|order (generic term)
+short pants|1
+(noun)|shorts|trunks|trouser (generic term)|pant (generic term)
+short ribs|1
+(noun)|cut of beef (generic term)
+short sale|1
+(noun)|short selling|trading (generic term)
+short saphenous vein|1
+(noun)|saphenous vein (generic term)|vena saphena (generic term)
+short selling|1
+(noun)|short sale|trading (generic term)
+short shrift|2
+(noun)|summary treatment|rejection (generic term)
+(noun)|treatment (generic term)|handling (generic term)
+short sleep|1
+(noun)|nap|catnap|cat sleep|forty winks|snooze|sleeping (generic term)
+short sleeve|1
+(noun)|sleeve (generic term)|arm (generic term)
+short story|1
+(noun)|story (generic term)
+short subject|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+short temper|1
+(noun)|irascibility|spleen|quick temper|bad temper (generic term)|ill temper (generic term)
+short ton|1
+(noun)|ton|net ton|avoirdupois unit (generic term)
+short wave|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+short whist|1
+(noun)|whist|long whist|card game (generic term)|cards (generic term)
+shortage|2
+(noun)|deficit|shortfall|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+(noun)|dearth|famine|lack (generic term)|deficiency (generic term)|want (generic term)
+shortbread|1
+(noun)|shortbread cookie|butter cookie (generic term)
+shortbread cookie|1
+(noun)|shortbread|butter cookie (generic term)
+shortcake|1
+(noun)|baking-powder biscuit (generic term)
+shortcoming|1
+(noun)|defect|disadvantage (generic term)
+shortcut|1
+(noun)|cutoff|crosscut|road (generic term)|route (generic term)
+shorten|5
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)|lengthen (antonym)
+(verb)|abridge|foreshorten|abbreviate|cut|contract|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)|expand (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|lengthen (antonym)
+(verb)|bowdlerize|bowdlerise|expurgate|castrate|abridge (generic term)|foreshorten (generic term)|abbreviate (generic term)|shorten (generic term)|cut (generic term)|contract (generic term)|reduce (generic term)
+shortened|4
+(adj)|sawed-off|sawn-off|short (similar term)
+(adj)|abbreviated|truncated|short (similar term)
+(adj)|telescoped|short (similar term)
+(adj)|cut|abridged (similar term)
+shortener|1
+(noun)|agent (generic term)
+shortening|2
+(noun)|edible fat (generic term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+shortfall|1
+(noun)|deficit|shortage|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+shortfin mako|1
+(noun)|Isurus oxyrhincus|mako (generic term)|mako shark (generic term)
+shortgrass|1
+(noun)|short-grass|grass (generic term)
+shorthand|2
+(adj)|written (similar term)
+(noun)|stenography|tachygraphy|handwriting (generic term)|hand (generic term)|script (generic term)
+shorthand typist|1
+(noun)|stenographer|amanuensis|secretary (generic term)|secretarial assistant (generic term)
+shorthorn|1
+(noun)|Durham|beef (generic term)|beef cattle (generic term)
+shortia|1
+(noun)|flower (generic term)
+shortia galacifolia|1
+(noun)|oconee bells|Shortia galacifolia|shortia (generic term)
+shortish|1
+(adj)|short (similar term)
+shortleaf pine|1
+(noun)|short-leaf pine|shortleaf yellow pine|Pinus echinata|yellow pine (generic term)
+shortleaf yellow pine|1
+(noun)|shortleaf pine|short-leaf pine|Pinus echinata|yellow pine (generic term)
+shortlist|2
+(noun)|short list|list (generic term)|listing (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+shortly|5
+(adv)|not long
+(adv)|soon|presently|before long
+(adv)|curtly|short
+(adv)|concisely|briefly|in brief|in short
+(adv)|not far
+shortness|6
+(noun)|length (generic term)|longness (antonym)
+(noun)|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|truncation|lowness (generic term)
+(noun)|duration (generic term)|length (generic term)|longness (antonym)
+(noun)|stature (generic term)|height (generic term)|tallness (antonym)
+(noun)|abruptness|brusqueness|curtness|gruffness|discourtesy (generic term)|rudeness (generic term)
+shortness of breath|1
+(noun)|SOB|breathlessness|dyspnea (generic term)|dyspnoea (generic term)
+shorts|2
+(noun)|short pants|trunks|trouser (generic term)|pant (generic term)
+(noun)|drawers|underdrawers|boxers|boxershorts|underpants (generic term)
+shortsighted|3
+(adj)|short|unforesightful|myopic|improvident (similar term)
+(adj)|nearsighted|myopic|farsighted (antonym)
+(adj)|ill-considered|ill-judged|improvident|imprudent (similar term)
+shortsightedness|2
+(noun)|myopia|nearsightedness|ametropia (generic term)|hyperopia (antonym)
+(noun)|improvidence|imprudence (generic term)|providence (antonym)
+shortstop|2
+(noun)|infielder (generic term)
+(noun)|short|position (generic term)
+shorttail weasel|1
+(noun)|ermine|Mustela erminea|weasel (generic term)
+shortwave diathermy machine|1
+(noun)|diathermy machine (generic term)
+shoshone|2
+(noun)|Shoshone|Shoshoni|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Shoshone|Shoshonean (generic term)|Shoshonean language (generic term)|Shoshonian (generic term)|Shoshonian language (generic term)
+shoshonean|1
+(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+shoshonean language|1
+(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+shoshoni|1
+(noun)|Shoshone|Shoshoni|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+shoshonian|1
+(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+shoshonian language|1
+(noun)|Shoshonean|Shoshonean language|Shoshonian|Shoshonian language|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+shostakovich|1
+(noun)|Shostakovich|Dmitri Shostakovich|Dmitri Dmitrievich Shostakovich|composer (generic term)
+shot|18
+(adj)|changeable|chatoyant|iridescent|colorful (similar term)|colourful (similar term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|stroke|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(noun)|shooting|propulsion (generic term)|actuation (generic term)
+(noun)|crack|opportunity (generic term)|chance (generic term)
+(noun)|injection|medical care (generic term)|medical aid (generic term)
+(noun)|pellet|projectile (generic term)|missile (generic term)
+(noun)|snapshot|snap|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|scene|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|stab|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|shaft|slam|dig|barb|jibe|gibe|remark (generic term)|comment (generic term)
+(noun)|blow (generic term)
+(noun)|nip|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|sports equipment (generic term)
+(noun)|shooter|expert (generic term)
+(noun)|blastoff|rocket firing (generic term)|rocket launching (generic term)
+(noun)|charge (generic term)|burster (generic term)|bursting charge (generic term)|explosive charge (generic term)
+(noun)|guess|guesswork|guessing|dead reckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+shot glass|1
+(noun)|jigger|pony|glass (generic term)|drinking glass (generic term)
+shot hole|1
+(noun)|bore (generic term)|bore-hole (generic term)|drill hole (generic term)
+shot metal|1
+(noun)|alloy (generic term)|metal (generic term)
+shot put|1
+(noun)|field event (generic term)
+shot putter|1
+(noun)|athlete (generic term)|jock (generic term)
+shot tower|1
+(noun)|tower (generic term)
+shote|1
+(noun)|piglet|piggy|shoat|young mammal (generic term)
+shotgun|1
+(noun)|scattergun|firearm (generic term)|piece (generic term)|small-arm (generic term)
+shotgun shell|1
+(noun)|shell (generic term)
+shoulder|7
+(noun)|body part (generic term)
+(noun)|cut of beef (generic term)
+(noun)|shoulder joint|articulatio humeri|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+(noun)|berm|edge (generic term)|margin (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|thrust (generic term)
+(verb)|transport (generic term)|carry (generic term)
+shoulder bag|1
+(noun)|bag (generic term)|handbag (generic term)|pocketbook (generic term)|purse (generic term)
+shoulder blade|1
+(noun)|scapula|shoulder bone|bone (generic term)|os (generic term)
+shoulder board|1
+(noun)|shoulder mark|epaulet (generic term)|epaulette (generic term)
+shoulder bone|1
+(noun)|scapula|shoulder blade|bone (generic term)|os (generic term)
+shoulder flash|1
+(noun)|insignia (generic term)
+shoulder girdle|1
+(noun)|pectoral arch|arch (generic term)
+shoulder holster|1
+(noun)|holster (generic term)
+shoulder in|1
+(verb)|jostle (generic term)|shove (generic term)
+shoulder joint|1
+(noun)|shoulder|articulatio humeri|ball-and-socket joint (generic term)|spheroid joint (generic term)|cotyloid joint (generic term)|enarthrodial joint (generic term)|enarthrosis (generic term)|articulatio spheroidea (generic term)
+shoulder mark|1
+(noun)|shoulder board|epaulet (generic term)|epaulette (generic term)
+shoulder pad|1
+(noun)|protective garment (generic term)
+shoulder patch|1
+(noun)|patch (generic term)
+shoulder strap|1
+(noun)|strap|band (generic term)
+shoulder vise|1
+(noun)|wood vise|woodworking vise|vise (generic term)|bench vise (generic term)
+shouldered|1
+(adj)|body part (related term)
+shouldered arch|1
+(noun)|arch (generic term)
+shout|5
+(noun)|cry|outcry|call|yell|vociferation|utterance (generic term)|vocalization (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)|whisper (antonym)
+(verb)|shout out|cry|call|yell|scream|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|exclaim|cry|cry out|outcry|call out|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|abuse|clapperclaw|blackguard|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+shout down|1
+(verb)|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+shout out|2
+(verb)|shout|cry|call|yell|scream|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|vociferate|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+shouted|1
+(adj)|yelled|loud (similar term)
+shouter|1
+(noun)|roarer|bawler|bellower|screamer|screecher|yeller|communicator (generic term)
+shouting|3
+(adj)|crying|yelling|noisy (similar term)
+(noun)|cheering|encouragement (generic term)
+(noun)|yelling|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+shove|4
+(noun)|push (generic term)|pushing (generic term)
+(verb)|jostle|push (generic term)|force (generic term)
+(verb)|push (generic term)|force (generic term)
+(verb)|thrust|stuff|squeeze|push (generic term)|force (generic term)
+shove-ha'penny|1
+(noun)|shovel board|shove-halfpenny|board game (generic term)
+shove-halfpenny|1
+(noun)|shovel board|shove-ha'penny|board game (generic term)
+shove along|1
+(verb)|shove off|blow|go (generic term)|go away (generic term)|depart (generic term)
+shove off|1
+(verb)|shove along|blow|go (generic term)|go away (generic term)|depart (generic term)
+shovel|5
+(noun)|hand tool (generic term)
+(noun)|shovelful|spadeful|containerful (generic term)
+(noun)|fire iron (generic term)
+(noun)|power shovel|excavator|digger|machine (generic term)
+(verb)|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)|shovel in (related term)|shovel in (related term)
+shovel board|1
+(noun)|shove-halfpenny|shove-ha'penny|board game (generic term)
+shovel hat|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+shovel in|2
+(verb)|rake in|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|garbage down|gobble up|bolt down|eat (generic term)
+shovelboard|1
+(noun)|shuffleboard|outdoor game (generic term)
+shoveler|2
+(noun)|shoveller|worker (generic term)
+(noun)|shoveller|broadbill|Anas clypeata|duck (generic term)
+shovelful|1
+(noun)|shovel|spadeful|containerful (generic term)
+shovelhead|1
+(noun)|bonnethead|bonnet shark|Sphyrna tiburo|hammerhead (generic term)|hammerhead shark (generic term)
+shoveller|2
+(noun)|shoveler|worker (generic term)
+(noun)|shoveler|broadbill|Anas clypeata|duck (generic term)
+shovelnose catfish|1
+(noun)|flathead catfish|mudcat|goujon|spoonbill catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+shover|1
+(noun)|pusher|mover (generic term)
+show|17
+(noun)|entertainment (generic term)|amusement (generic term)
+(noun)|display|demonstration (generic term)|demo (generic term)
+(noun)|social event (generic term)
+(noun)|appearance|pretense (generic term)|pretence (generic term)|pretending (generic term)|simulation (generic term)|feigning (generic term)
+(verb)|demo|exhibit|present|demonstrate|show (generic term)
+(verb)|prove|demonstrate|establish|shew|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|disprove (antonym)
+(verb)|testify|bear witness|prove|evidence|inform (generic term)
+(verb)|show off (related term)|hide (antonym)
+(verb)|picture|depict|render|represent (generic term)|interpret (generic term)
+(verb)|express|evince|convey (generic term)|impart (generic term)
+(verb)|indicate|point|inform (generic term)
+(verb)|reveal|display|communicate (generic term)|pass on (generic term)|pass (generic term)|pass along (generic term)|put across (generic term)
+(verb)|show up|appear (generic term)
+(verb)|read|register|record|indicate (generic term)
+(verb)|read (generic term)|register (generic term)|show (generic term)|record (generic term)
+(verb)|usher|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+(verb)|race (generic term)|run (generic term)
+show-off|1
+(noun)|exhibitionist|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+show-stopper|2
+(noun)|showstopper|stopper|act (generic term)|routine (generic term)|number (generic term)|turn (generic term)|bit (generic term)
+(noun)|showstopper|attraction (generic term)|attractiveness (generic term)
+show bill|1
+(noun)|show card|theatrical poster|poster (generic term)|posting (generic term)|placard (generic term)|notice (generic term)|bill (generic term)|card (generic term)
+show biz|1
+(noun)|entertainment industry|show business|industry (generic term)
+show business|1
+(noun)|entertainment industry|show biz|industry (generic term)
+show card|1
+(noun)|show bill|theatrical poster|poster (generic term)|posting (generic term)|placard (generic term)|notice (generic term)|bill (generic term)|card (generic term)
+show me state|1
+(noun)|Missouri|Show Me State|MO|American state (generic term)
+show off|1
+(verb)|flaunt|flash|ostentate|swank|expose (generic term)|exhibit (generic term)|display (generic term)
+show the door|1
+(verb)|expel (generic term)|eject (generic term)|chuck out (generic term)|exclude (generic term)|throw out (generic term)|kick out (generic term)|turf out (generic term)|boot out (generic term)|turn out (generic term)
+show time|1
+(noun)|point (generic term)|point in time (generic term)
+show trial|1
+(noun)|trial (generic term)
+show up|2
+(verb)|come on|come out|turn up|surface|appear (generic term)
+(verb)|show|appear (generic term)
+show window|2
+(noun)|showcase|setting (generic term)|background (generic term)|scope (generic term)
+(noun)|display window|shopwindow|window (generic term)
+showboat|1
+(noun)|steamboat (generic term)|river boat (generic term)
+showcase|2
+(noun)|show window|setting (generic term)|background (generic term)|scope (generic term)
+(noun)|case|display case|vitrine|container (generic term)
+showdown|1
+(noun)|confrontation|encounter|face-off|disagreement (generic term)
+shower|11
+(noun)|plumbing fixture (generic term)
+(noun)|shower bath|washup (generic term)|bathing (generic term)
+(noun)|rain shower|rain (generic term)|rainfall (generic term)
+(noun)|cascade|descent (generic term)
+(noun)|exhibitor|exhibitioner|showman (generic term)|promoter (generic term)|impresario (generic term)
+(noun)|party (generic term)
+(verb)|lavish|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|spray (generic term)
+(verb)|bathe (generic term)
+(verb)|shower down|rain (generic term)|rain down (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+shower bath|2
+(noun)|shower stall|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+(noun)|shower|washup (generic term)|bathing (generic term)
+shower cap|1
+(noun)|cap (generic term)
+shower curtain|1
+(noun)|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+shower down|1
+(verb)|shower|rain (generic term)|rain down (generic term)
+shower room|1
+(noun)|room (generic term)
+shower stall|1
+(noun)|shower bath|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+showerhead|1
+(noun)|nozzle (generic term)|nose (generic term)
+showery|1
+(adj)|rainy|wet (similar term)
+showgirl|1
+(noun)|chorus girl|chorine|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+showily|2
+(adv)|ostentatiously|with ostentation
+(adv)|flamboyantly|flashily
+showiness|1
+(noun)|flamboyance|floridness|floridity|ornateness (generic term)|elaborateness (generic term)
+showing|2
+(noun)|screening|viewing|display (generic term)
+(noun)|display|exhibit|show (generic term)
+showjumping|1
+(noun)|stadium jumping|equestrian sport (generic term)
+showman|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|promoter|impresario|booker (generic term)|booking agent (generic term)
+showmanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+showpiece|1
+(noun)|collector's item|piece de resistance|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+showplace|1
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+showroom|1
+(noun)|salesroom|saleroom|panopticon (generic term)
+showstopper|2
+(noun)|show-stopper|stopper|act (generic term)|routine (generic term)|number (generic term)|turn (generic term)|bit (generic term)
+(noun)|show-stopper|attraction (generic term)|attractiveness (generic term)
+showtime|1
+(noun)|beginning|commencement|first|outset|get-go|start|kickoff|starting time|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+showy|3
+(adj)|splashy|ostentatious (similar term)|pretentious (similar term)
+(adj)|theatrical (similar term)
+(adj)|flashy|gaudy|jazzy|sporty|colorful (similar term)|colourful (similar term)
+showy daisy|1
+(noun)|Erigeron speciosus|fleabane (generic term)
+showy goldenrod|1
+(noun)|goldenrod (generic term)
+showy lady's-slipper|1
+(noun)|common lady's-slipper|showy lady slipper|Cypripedium reginae|Cypripedium album|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+showy lady slipper|1
+(noun)|common lady's-slipper|showy lady's-slipper|Cypripedium reginae|Cypripedium album|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+showy milkweed|1
+(noun)|Asclepias speciosa|milkweed (generic term)|silkweed (generic term)
+showy orchis|1
+(noun)|purple orchis|purple-hooded orchis|Orchis spectabilis|orchis (generic term)
+showy sunflower|1
+(noun)|Helianthus laetiflorus|sunflower (generic term)|helianthus (generic term)
+shrapnel|1
+(noun)|shell (generic term)
+shred|3
+(noun)|scintilla|whit|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|rag|tag|tag end|tatter|piece of cloth (generic term)|piece of material (generic term)
+(verb)|tear up|rip up|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+shredded|1
+(adj)|chopped|sliced|cut (similar term)
+shredder|1
+(noun)|device (generic term)
+shreveport|1
+(noun)|Shreveport|city (generic term)|metropolis (generic term)|urban center (generic term)
+shrew|2
+(noun)|termagant|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|shrewmouse|insectivore (generic term)
+shrew-sized|1
+(adj)|sized (similar term)
+shrew mole|1
+(noun)|mole (generic term)
+shrewd|2
+(adj)|astute|sharp|smart (similar term)
+(adj)|calculating|calculative|conniving|scheming|hard (similar term)
+shrewdly|1
+(adv)|astutely|sagaciously|sapiently|acutely
+shrewdness|1
+(noun)|astuteness|perspicacity|perspicaciousness|intelligence (generic term)
+shrewish|1
+(adj)|nagging|ill-natured (similar term)
+shrewishness|1
+(noun)|ill nature (generic term)
+shrewmouse|1
+(noun)|shrew|insectivore (generic term)
+shriek|3
+(noun)|scream|screaming|shrieking|screech|screeching|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|screech|screeching|shrieking|scream|screaming|noise (generic term)
+(verb)|shrill|pipe up|pipe|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+shrieking|3
+(adj)|screaming|screeching|noisy (similar term)
+(noun)|scream|screaming|shriek|screech|screeching|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(noun)|screech|screeching|shriek|scream|screaming|noise (generic term)
+shrift|1
+(noun)|confession (generic term)
+shrike|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+shrike-like|1
+(adj)|animal (similar term)
+shrill|4
+(adj)|piercing|sharp|high (similar term)|high-pitched (similar term)
+(adj)|strident|imperative (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+(verb)|shriek|pipe up|pipe|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+shrilling|2
+(adj)|high (similar term)|high-pitched (similar term)
+(noun)|noise (generic term)
+shrillness|2
+(noun)|interest (generic term)|interestingness (generic term)
+(noun)|stridence|stridency|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+shrilly|1
+(adv)|piercingly
+shrimp|4
+(noun)|runt|peewee|half-pint|small person (generic term)
+(noun)|prawn|seafood (generic term)
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+(verb)|fish (generic term)
+shrimp-fish|1
+(noun)|shrimpfish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+shrimp-like|1
+(adj)|animal (similar term)
+shrimp butter|1
+(noun)|spread (generic term)|paste (generic term)
+shrimp cocktail|1
+(noun)|cocktail (generic term)
+shrimp newburg|1
+(noun)|shrimp Newburg|seafood Newburg (generic term)
+shrimp sauce|1
+(noun)|Nantua|sauce (generic term)
+shrimper|1
+(noun)|vessel (generic term)|watercraft (generic term)
+shrimpfish|1
+(noun)|shrimp-fish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+shrimpy|1
+(adj)|puny|runty|small (similar term)|little (similar term)
+shrine|2
+(noun)|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+(verb)|enshrine|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+shrink|6
+(noun)|psychiatrist|head-shrinker|specialist (generic term)|medical specialist (generic term)
+(verb)|shrivel|shrivel up|wither|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|flinch|squinch|funk|cringe|wince|recoil|quail|move (generic term)
+(verb)|reduce|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|contract|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|expand (antonym)|stretch (antonym)
+(verb)|shrivel|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+shrink-wrap|1
+(noun)|film (generic term)|plastic film (generic term)
+shrink-wrapped|1
+(adj)|wrapped (similar term)
+shrink-wrapped software|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+shrink back|1
+(verb)|retract|flinch (generic term)|squinch (generic term)|funk (generic term)|cringe (generic term)|shrink (generic term)|wince (generic term)|recoil (generic term)|quail (generic term)
+shrink from|1
+(verb)|fiddle|shirk|goldbrick|avoid (generic term)
+shrinkable|1
+(adj)|unshrinkable (antonym)
+shrinkage|3
+(noun)|shrinking|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+(noun)|decrease (generic term)|decrement (generic term)
+(noun)|shoplifting|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+shrinking|2
+(noun)|shrinkage|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+shrinking violet|1
+(noun)|shy person|coward (generic term)
+shrinkwrap|1
+(verb)|wrap (generic term)|wrap up (generic term)
+shrive|1
+(verb)|confess|squeal|fink|admit (generic term)|acknowledge (generic term)
+shrivel|2
+(verb)|shrivel up|shrink|wither|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|shrink|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+shrivel up|1
+(verb)|shrivel|shrink|wither|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+shriveled|3
+(adj)|dried-up|sere|sear|shrivelled|withered|dry (similar term)
+(adj)|shrivelled|shrunken|withered|wizen|wizened|thin (similar term)|lean (similar term)
+(adj)|shrivelled|shrunken|decreased (similar term)|reduced (similar term)
+shrivelled|3
+(adj)|dried-up|sere|sear|shriveled|withered|dry (similar term)
+(adj)|shriveled|shrunken|withered|wizen|wizened|thin (similar term)|lean (similar term)
+(adj)|shriveled|shrunken|decreased (similar term)|reduced (similar term)
+shroud|6
+(noun)|line (generic term)
+(noun)|sheet|tack|mainsheet|weather sheet|line (generic term)
+(noun)|pall|cerement|winding-sheet|winding-clothes|burial garment (generic term)
+(verb)|enshroud|hide|cover|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+(verb)|wrap (generic term)|wrap up (generic term)
+shrove tuesday|1
+(noun)|Mardi Gras|Shrove Tuesday|pancake day|Christian holy day (generic term)
+shrovetide|1
+(noun)|Shrovetide|season (generic term)
+shrub|1
+(noun)|bush|woody plant (generic term)|ligneous plant (generic term)
+shrubbery|2
+(noun)|area (generic term)|country (generic term)
+(noun)|vegetation (generic term)|flora (generic term)|botany (generic term)
+shrubby|1
+(adj)|fruticose|fruticulose|woody plant|ligneous plant (related term)
+shrubby bittersweet|1
+(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|waxwork|Celastrus scandens|vine (generic term)
+shrubby penstemon|1
+(noun)|lowbush penstemon|Penstemon fruticosus|wildflower (generic term)|wild flower (generic term)
+shrubby st john's wort|1
+(noun)|shrubby St John's wort|Hypericum prolificum|Hypericum spathulatum|St John's wort (generic term)
+shrublet|1
+(noun)|shrub (generic term)|bush (generic term)
+shrug|2
+(noun)|gesture (generic term)|motion (generic term)
+(verb)|gesticulate (generic term)|gesture (generic term)|motion (generic term)|shrug off (related term)
+shrug off|1
+(verb)|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+shrunk|1
+(adj)|shrunken|contracted (similar term)
+shrunken|3
+(adj)|shriveled|shrivelled|withered|wizen|wizened|thin (similar term)|lean (similar term)
+(adj)|shriveled|shrivelled|decreased (similar term)|reduced (similar term)
+(adj)|shrunk|contracted (similar term)
+shtick|4
+(noun)|shtik|schtik|schtick|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|shtik|schtik|schtick|business (generic term)|stage business (generic term)|byplay (generic term)
+(noun)|shtik|schtik|schtick|buffoonery (generic term)|clowning (generic term)|japery (generic term)|frivolity (generic term)|harlequinade (generic term)|prank (generic term)
+(noun)|shtik|schtik|schtick|trick (generic term)|fast one (generic term)
+shtickl|1
+(noun)|shtikl|schtikl|schtickl|shtik (generic term)|shtick (generic term)|schtik (generic term)|schtick (generic term)
+shtik|4
+(noun)|shtick|schtik|schtick|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|schtik|shtick|schtick|business (generic term)|stage business (generic term)|byplay (generic term)
+(noun)|schtik|shtick|schtick|buffoonery (generic term)|clowning (generic term)|japery (generic term)|frivolity (generic term)|harlequinade (generic term)|prank (generic term)
+(noun)|schtik|shtick|schtick|trick (generic term)|fast one (generic term)
+shtikl|1
+(noun)|shtickl|schtikl|schtickl|shtik (generic term)|shtick (generic term)|schtik (generic term)|schtick (generic term)
+shtup|1
+(noun)|fuck|fucking|screw|screwing|ass|nooky|nookie|piece of ass|piece of tail|roll in the hay|shag|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+shua|1
+(noun)|Shuha Shinto|Shua|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shuck|2
+(noun)|chaff|husk|stalk|straw|stubble|plant material (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+shucks|2
+(noun)|damn|darn|hoot|red cent|shit|tinker's damn|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+shudder|4
+(noun)|frisson|shiver|chill|quiver|thrill|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|tremor|vibration (generic term)|quiver (generic term)|quivering (generic term)
+(verb)|shiver|move involuntarily (generic term)|move reflexively (generic term)
+(verb)|shiver|throb|thrill|tremble (generic term)
+shuddering|1
+(adj)|unsteady (similar term)
+shuddery|1
+(adj)|chilling|scarey|scary|shivery|alarming (similar term)
+shudra|2
+(noun)|Shudra|Sudra|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+(noun)|sudra|varna (generic term)
+shuffle|5
+(noun)|shuffling|make|reordering (generic term)
+(noun)|shamble|shambling|shuffling|walk (generic term)|walking (generic term)
+(verb)|scuffle|shamble|walk (generic term)
+(verb)|transfer (generic term)|shift (generic term)
+(verb)|ruffle|mix|manipulate (generic term)
+shuffleboard|1
+(noun)|shovelboard|outdoor game (generic term)
+shuffler|2
+(noun)|card player (generic term)
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+shuffling|2
+(noun)|shamble|shambling|shuffle|walk (generic term)|walking (generic term)
+(noun)|shuffle|make|reordering (generic term)
+shufti|1
+(noun)|reconnaissance (generic term)|reconnaissance mission (generic term)
+shuha|1
+(adj)|Shuha|sect|religious sect|religious order (related term)
+shuha shinto|1
+(noun)|Shuha Shinto|Shua|sect (generic term)|religious sect (generic term)|religious order (generic term)
+shumac|1
+(noun)|sumac|sumach|shrub (generic term)|bush (generic term)
+shumard oak|1
+(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak (generic term)
+shumard red oak|1
+(noun)|Shumard oak|Shumard red oak|Quercus shumardii|red oak (generic term)
+shun|2
+(verb)|eschew|avoid (generic term)
+(verb)|banish|ban|ostracize|ostracise|cast out|blackball|expel (generic term)|throw out (generic term)|kick out (generic term)
+shun giku|1
+(noun)|chop-suey greens|tong ho|Chrysanthemum coronarium spatiosum|chrysanthemum (generic term)
+shunning|1
+(noun)|avoidance|turning away|dodging|rejection (generic term)
+shunt|5
+(noun)|passage (generic term)|passageway (generic term)
+(noun)|electrical shunt|bypass|conductor (generic term)
+(noun)|implant (generic term)
+(verb)|transfer (generic term)|shift (generic term)
+(verb)|deviate (generic term)
+shunt circuit|1
+(noun)|parallel circuit|closed circuit (generic term)|loop (generic term)
+shunter|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+shush|1
+(verb)|hush (generic term)|quieten (generic term)|silence (generic term)|still (generic term)|shut up (generic term)|hush up (generic term)
+shut|5
+(adj)|unopen|closed|closed (related term)|open (antonym)
+(adj)|closed|blinking (similar term)|winking (similar term)|compressed (similar term)|tight (similar term)|squinched (similar term)|squinting (similar term)|open (antonym)
+(verb)|close|shut up (related term)|shut in (related term)|open (antonym)
+(verb)|close|change state (generic term)|turn (generic term)|open (antonym)
+(verb)|exclude|keep out|shut out|prevent (generic term)|keep (generic term)|admit (antonym)
+shut-in|3
+(adj)|introvertish|introversive (similar term)|introvertive (similar term)
+(adj)|homebound|housebound|confined (similar term)
+(noun)|invalid|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+shut away|1
+(verb)|lock in|lock away|lock|put away|shut up|lock up|confine (generic term)
+shut down|1
+(verb)|close up|close|fold|close down|open (antonym)
+shut in|1
+(verb)|enclose|close in|inclose|surround (generic term)|skirt (generic term)|border (generic term)
+shut off|3
+(verb)|close off|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|close off|separate (generic term)|divide (generic term)
+(verb)|block off|close off|barricade (generic term)|block (generic term)|blockade (generic term)|stop (generic term)|block off (generic term)|block up (generic term)|bar (generic term)
+shut one's mouth|1
+(verb)|keep quiet|keep one's mouth shut|talk (antonym)
+shut out|1
+(verb)|exclude|keep out|shut|prevent (generic term)|keep (generic term)|admit (antonym)
+shut up|4
+(adj)|pent|confined (similar term)
+(verb)|close up|clam up|dummy up|belt up|button up|be quiet|keep mum|open up (antonym)
+(verb)|lock in|lock away|lock|put away|shut away|lock up|confine (generic term)
+(verb)|hush|quieten|silence|still|hush up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+shutdown|1
+(noun)|closure|closedown|closing|termination (generic term)|ending (generic term)|conclusion (generic term)
+shute|1
+(noun)|Shute|Nevil Shute|Nevil Shute Norway|writer (generic term)|author (generic term)
+shuteye|1
+(noun)|sleep (generic term)|slumber (generic term)
+shutout|1
+(noun)|skunk|defeat (generic term)|licking (generic term)
+shutter|3
+(noun)|mechanical device (generic term)
+(noun)|blind (generic term)|screen (generic term)
+(verb)|close (generic term)|shut (generic term)
+shutterbug|1
+(noun)|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+shuttered|1
+(adj)|closed (similar term)|unshuttered (antonym)
+shutting|1
+(noun)|closing|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)|opening (antonym)
+shutting post|1
+(noun)|gatepost (generic term)
+shuttle|4
+(noun)|shuttlecock|bird|birdie|badminton equipment (generic term)
+(noun)|public transport (generic term)
+(noun)|bobbin (generic term)|spool (generic term)|reel (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+shuttle bus|1
+(noun)|shuttle (generic term)
+shuttle diplomacy|1
+(noun)|diplomacy (generic term)|diplomatic negotiations (generic term)
+shuttle helicopter|1
+(noun)|helicopter (generic term)|chopper (generic term)|whirlybird (generic term)|eggbeater (generic term)
+shuttlecock|2
+(noun)|bird|birdie|shuttle|badminton equipment (generic term)
+(verb)|bandy (generic term)
+shuttlecock fern|1
+(noun)|ostrich fern|fiddlehead|Matteuccia struthiopteris|Pteretis struthiopteris|Onoclea struthiopteris|fern (generic term)
+shwa|1
+(noun)|schwa|vowel (generic term)|vowel sound (generic term)
+shy|7
+(adj)|diffident|timid|unsure|unconfident (similar term)
+(adj)|timid (similar term)
+(adj)|insufficient (similar term)|deficient (similar term)
+(adj)|wary (similar term)
+(noun)|throw (generic term)
+(verb)|startle (generic term)|jump (generic term)|start (generic term)
+(verb)|throw (generic term)
+shy away from|1
+(verb)|avoid (generic term)
+shy person|1
+(noun)|shrinking violet|coward (generic term)
+shylock|2
+(noun)|usurer|loan shark|moneylender|lender (generic term)|loaner (generic term)|shark (generic term)
+(noun)|Shylock|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+shyly|1
+(adv)|timidly|bashfully
+shyness|1
+(noun)|timidity (generic term)|timidness (generic term)|timorousness (generic term)
+shyster|1
+(noun)|pettifogger|wrongdoer (generic term)|offender (generic term)
+si|3
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+(noun)|silicon|Si|atomic number 14|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+(noun)|ti|te|solfa syllable (generic term)
+si system|1
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+sial|1
+(noun)|rock (generic term)|stone (generic term)
+sialadenitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+sialia|1
+(noun)|Sialia|genus Sialia|bird genus (generic term)
+sialidae|1
+(noun)|Sialidae|family Sialidae|arthropod family (generic term)
+sialis|1
+(noun)|Sialis|genus Sialis|arthropod genus (generic term)
+sialis lutaria|1
+(noun)|alderfly|alder fly|Sialis lutaria|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+sialolith|1
+(noun)|salivary calculus|calculus (generic term)|concretion (generic term)
+siam|1
+(noun)|Thailand|Kingdom of Thailand|Siam|Asian country (generic term)|Asian nation (generic term)
+siamang|1
+(noun)|Hylobates syndactylus|Symphalangus syndactylus|lesser ape (generic term)
+siamese|8
+(adj)|Thai|Tai|Siamese|Asian|Asiatic (related term)
+(adj)|Thai|Tai|Siamese|Tai (related term)
+(adj)|Thai|Tai|Siamese|Asian country|Asian nation (related term)
+(adj)|twin|similar (similar term)
+(adj)|connected (similar term)
+(noun)|Thai|Siamese|Central Thai|Tai (generic term)
+(noun)|Thai|Tai|Siamese|Asian (generic term)|Asiatic (generic term)
+(noun)|Siamese cat|Siamese|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+siamese cat|1
+(noun)|Siamese cat|Siamese|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+siamese twin|1
+(noun)|Siamese twin|conjoined twin|identical twin (generic term)|monozygotic twin (generic term)|monozygous twin (generic term)
+sian|1
+(noun)|Xian|Sian|Singan|Changan|Hsian|city (generic term)|metropolis (generic term)|urban center (generic term)
+sib|2
+(noun)|sibling|relative (generic term)|relation (generic term)
+(noun)|blood relation|blood relative|cognate|relative (generic term)|relation (generic term)
+sibelius|1
+(noun)|Sibelius|Jean Sibelius|Johan Julius Christian Sibelius|composer (generic term)
+siberia|1
+(noun)|Siberia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+siberian|2
+(adj)|Siberian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Siberian|Russian (generic term)
+siberian crab|1
+(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+siberian crab apple|1
+(noun)|Siberian crab|Siberian crab apple|cherry apple|cherry crab|Malus baccata|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+siberian elm|1
+(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm (generic term)|elm tree (generic term)
+siberian husky|1
+(noun)|Siberian husky|sled dog (generic term)|sledge dog (generic term)
+siberian larch|1
+(noun)|Siberian larch|Larix siberica|Larix russica|larch (generic term)|larch tree (generic term)
+siberian millet|1
+(noun)|Siberian millet|Setaria italica rubrofructa|foxtail millet (generic term)|Italian millet (generic term)|Hungarian grass (generic term)|Setaria italica (generic term)
+siberian pea tree|1
+(noun)|Siberian pea tree|Caragana arborescens|pea tree (generic term)|caragana (generic term)
+siberian spruce|1
+(noun)|Siberian spruce|Picea obovata|spruce (generic term)
+siberian wall flower|1
+(noun)|Siberian wall flower|Erysimum allionii|Cheiranthus allionii|wallflower (generic term)
+sibilant|2
+(adj)|fricative|continuant|spirant|strident|soft (similar term)
+(noun)|sibilant consonant|fricative consonant (generic term)|fricative (generic term)|spirant (generic term)
+sibilant consonant|1
+(noun)|sibilant|fricative consonant (generic term)|fricative (generic term)|spirant (generic term)
+sibilate|4
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|hiss|sizz|siss|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|hiss|siss|sizz|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+sibilation|2
+(noun)|hiss|hissing|hushing|fizzle|noise (generic term)
+(noun)|assibilation|pronunciation (generic term)
+sibine|1
+(noun)|Somrai|Sibine|East Chadic (generic term)
+sibley tent|1
+(noun)|Sibley tent|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+sibling|1
+(noun)|sib|relative (generic term)|relation (generic term)
+sibyl|2
+(noun)|fortuneteller (generic term)|fortune teller (generic term)
+(noun)|prophet (generic term)|prophesier (generic term)|oracle (generic term)|seer (generic term)|vaticinator (generic term)
+sibyllic|1
+(adj)|divinatory|mantic|sibylline|vatic|vatical|prophetic (similar term)|prophetical (similar term)
+sibylline|2
+(adj)|divinatory|mantic|sibyllic|vatic|vatical|prophetic (similar term)|prophetical (similar term)
+(adj)|cabalistic|kabbalistic|qabalistic|cryptic|cryptical|esoteric (similar term)
+sic|1
+(verb)|set|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+sicative|1
+(noun)|desiccant|drying agent|drier|chemical agent (generic term)
+sichuan|1
+(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state (generic term)|province (generic term)
+sicilia|2
+(noun)|Sicily|Sicilia|Italian region (generic term)
+(noun)|Sicily|Sicilia|island (generic term)
+sicilian|2
+(adj)|Sicilian|Italian region (related term)
+(noun)|Sicilian|Italian (generic term)
+sicilian mafia|1
+(noun)|Mafia|Maffia|Sicilian Mafia|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+sicilian pizza|1
+(noun)|Sicilian pizza|pizza (generic term)|pizza pie (generic term)
+sicily|2
+(noun)|Sicily|Sicilia|Italian region (generic term)
+(noun)|Sicily|Sicilia|island (generic term)
+sick|9
+(adj)|ill|afflicted (similar term)|stricken (similar term)|aguish (similar term)|ailing (similar term)|indisposed (similar term)|peaked (similar term)|poorly (similar term)|sickly (similar term)|unwell (similar term)|under the weather (similar term)|seedy (similar term)|airsick (similar term)|air sick (similar term)|carsick (similar term)|seasick (similar term)|autistic (similar term)|bedfast (similar term)|bedridden (similar term)|bedrid (similar term)|sick-abed (similar term)|bilious (similar term)|liverish (similar term)|livery (similar term)|bronchitic (similar term)|consumptive (similar term)|convalescent (similar term)|recovering (similar term)|delirious (similar term)|hallucinating (similar term)|diabetic (similar term)|dizzy (similar term)|giddy (similar term)|woozy (similar term)|vertiginous (similar term)|dyspeptic (similar term)|faint (similar term)|light (similar term)|swooning (similar term)|light-headed (similar term)|lightheaded (similar term)|feverish (similar term)|feverous (similar term)|funny (similar term)|gouty (similar term)|green (similar term)|laid low (similar term)|stricken (similar term)|laid up (similar term)|milk-sick (similar term)|nauseated (similar term)|nauseous (similar term)|queasy (similar term)|sick (similar term)|sickish (similar term)|palsied (similar term)|paralytic (similar term)|paralyzed (similar term)|paraplegic (similar term)|rickety (similar term)|rachitic (similar term)|scrofulous (similar term)|sneezy (similar term)|spastic (similar term)|tubercular (similar term)|tuberculous (similar term)|unhealed (similar term)|upset (similar term)|unhealthy (related term)|unfit (related term)|well (antonym)
+(adj)|nauseated|nauseous|queasy|sickish|ill (similar term)|sick (similar term)
+(adj)|brainsick|crazy|demented|distracted|disturbed|mad|unbalanced|unhinged|insane (similar term)
+(adj)|disgusted|fed up|sick of|tired of|displeased (similar term)
+(adj)|pale|pallid|wan|weak (similar term)
+(adj)|moved (similar term)|affected (similar term)|stirred (similar term)|touched (similar term)
+(adj)|ghastly|grim|grisly|gruesome|macabre|alarming (similar term)
+(noun)|people (generic term)
+(verb)|vomit|vomit up|purge|cast|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+sick-abed|1
+(adj)|bedfast|bedridden|bedrid|ill (similar term)|sick (similar term)
+sick bag|1
+(noun)|sickbag|bag (generic term)
+sick benefit|1
+(noun)|sickness benefit|benefit (generic term)
+sick berth|1
+(noun)|sickbay|room (generic term)
+sick call|1
+(noun)|sick parade|military formation (generic term)
+sick headache|2
+(noun)|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+(noun)|migraine|megrim|hemicrania|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+sick joke|1
+(noun)|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+sick leave|1
+(noun)|leave (generic term)|leave of absence (generic term)
+sick list|1
+(noun)|list (generic term)|listing (generic term)
+sick of|1
+(adj)|disgusted|fed up|sick|tired of|displeased (similar term)
+sick parade|1
+(noun)|sick call|military formation (generic term)
+sick pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+sick person|1
+(noun)|diseased person|sufferer|unfortunate (generic term)|unfortunate person (generic term)
+sickbag|1
+(noun)|sick bag|bag (generic term)
+sickbay|1
+(noun)|sick berth|room (generic term)
+sickbed|1
+(noun)|bed (generic term)
+sicken|4
+(verb)|disgust|revolt|nauseate|churn up|repel (generic term)|repulse (generic term)
+(verb)|come down|worsen (generic term)|decline (generic term)
+(verb)|nauseate|turn one's stomach|disgust (generic term)|gross out (generic term)|revolt (generic term)|repel (generic term)
+(verb)|harm (generic term)
+sickening|1
+(adj)|nauseating|nauseous|noisome|queasy|loathsome|offensive|vile|unwholesome (similar term)
+sickeningly|1
+(adv)|disgustingly|distastefully|revoltingly
+sickeningness|1
+(noun)|disgustingness|distastefulness|nauseatingness|unsavoriness|unpalatability (generic term)|unpalatableness (generic term)
+sickish|1
+(adj)|nauseated|nauseous|queasy|sick|ill (similar term)|sick (similar term)
+sickle|1
+(noun)|reaping hook|reap hook|edge tool (generic term)
+sickle-cell anaemia|1
+(noun)|sickle-cell anemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+sickle-cell anemia|1
+(noun)|sickle-cell anaemia|sickle-cell disease|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+sickle-cell disease|1
+(noun)|sickle-cell anemia|sickle-cell anaemia|crescent-cell anemia|crescent-cell anaemia|drepanocytic anemia|drepanocytic anaemia|anemia (generic term)|anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+sickle-shaped|1
+(adj)|falcate|falciform|curved (similar term)|curving (similar term)
+sickle alfalfa|1
+(noun)|sickle lucerne|sickle medick|Medicago falcata|medic (generic term)|medick (generic term)|trefoil (generic term)
+sickle cell|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+sickle feather|1
+(noun)|tail feather (generic term)
+sickle lucerne|1
+(noun)|sickle alfalfa|sickle medick|Medicago falcata|medic (generic term)|medick (generic term)|trefoil (generic term)
+sickle medick|1
+(noun)|sickle alfalfa|sickle lucerne|Medicago falcata|medic (generic term)|medick (generic term)|trefoil (generic term)
+sicklepod|2
+(noun)|Senna obtusifolia|Cassia tora|subshrub (generic term)|suffrutex (generic term)
+(noun)|Arabis Canadensis|rock cress (generic term)|rockcress (generic term)
+sickleweed golden aster|1
+(noun)|golden aster (generic term)
+sickly|2
+(adj)|sallow|unhealthy (similar term)
+(adj)|ailing|indisposed|peaked|poorly|unwell|under the weather|seedy|ill (similar term)|sick (similar term)
+sickness|3
+(noun)|illness|unwellness|malady|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|wellness (antonym)|wellness (antonym)
+(noun)|defectiveness (generic term)|faultiness (generic term)
+(noun)|nausea|symptom (generic term)
+sickness benefit|1
+(noun)|sick benefit|benefit (generic term)
+sickroom|1
+(noun)|room (generic term)
+sid caesar|1
+(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian (generic term)|comic (generic term)
+sida|1
+(noun)|Sida|genus Sida|dilleniid dicot genus (generic term)
+sida hermaphrodita|1
+(noun)|Virginia mallow|Sida hermaphrodita|mallow (generic term)
+sida rhombifolia|1
+(noun)|Queensland hemp|jellyleaf|Sida rhombifolia|mallow (generic term)
+sida spinosa|1
+(noun)|Indian mallow|Sida spinosa|mallow (generic term)
+sidalcea|1
+(noun)|Sidalcea|genus Sidalcea|dilleniid dicot genus (generic term)
+sidalcea malviflora|1
+(noun)|checkerbloom|wild hollyhock|Sidalcea malviflora|mallow (generic term)
+siddhartha|1
+(noun)|Buddha|Siddhartha|Gautama|Gautama Siddhartha|Gautama Buddha|mystic (generic term)|religious mystic (generic term)
+siddons|1
+(noun)|Siddons|Sarah Siddons|Sarah Kemble Siddons|actress (generic term)
+side|15
+(adj)|broadside (similar term)|lateral (similar term)|sidelong (similar term)|top (antonym)|bottom (antonym)
+(noun)|region (generic term)|part (generic term)
+(noun)|unit (generic term)|social unit (generic term)
+(noun)|area (generic term)|region (generic term)
+(noun)|surface (generic term)
+(noun)|face|surface (generic term)
+(noun)|line (generic term)
+(noun)|aspect (generic term)|facet (generic term)
+(noun)|lineage (generic term)|line (generic term)|line of descent (generic term)|descent (generic term)|bloodline (generic term)|blood line (generic term)|blood (generic term)|pedigree (generic term)|ancestry (generic term)|origin (generic term)|parentage (generic term)|stemma (generic term)|stock (generic term)
+(noun)|side of meat|cut (generic term)|cut of meat (generic term)
+(noun)|position|opinion (generic term)|view (generic term)
+(noun)|slope|incline|geological formation (generic term)|formation (generic term)
+(noun)|English|spin (generic term)
+(verb)|pull|root|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+(verb)|go with|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)|straddle (antonym)
+side-blotched lizard|1
+(noun)|sand lizard|Uta stansburiana|iguanid (generic term)|iguanid lizard (generic term)
+side-glance|1
+(noun)|side-look|glance (generic term)|glimpse (generic term)|coup d'oeil (generic term)
+side-look|1
+(noun)|side-glance|glance (generic term)|glimpse (generic term)|coup d'oeil (generic term)
+side-slip|1
+(verb)|skid (generic term)|slip (generic term)|slue (generic term)|slew (generic term)|slide (generic term)
+side-to-side|1
+(adj)|area|region (related term)
+side-wheeler|1
+(noun)|paddle steamer (generic term)|paddle-wheeler (generic term)
+side-whiskers|1
+(noun)|sideburn|burnside|mutton chop|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+side arm|1
+(noun)|pistol|handgun|shooting iron|firearm (generic term)|piece (generic term)|small-arm (generic term)
+side by side|2
+(adj)|adjacent|next|close (similar term)
+(adj)|related (similar term)|related to (similar term)
+side chair|1
+(noun)|straight chair|chair (generic term)
+side chapel|1
+(noun)|chapel (generic term)
+side dish|1
+(noun)|entremots|dish (generic term)
+side door|1
+(noun)|side entrance|exterior door (generic term)|outside door (generic term)
+side drum|1
+(noun)|snare drum|snare|drum (generic term)|membranophone (generic term)|tympan (generic term)
+side effect|2
+(noun)|effect (generic term)
+(noun)|fallout|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+side entrance|1
+(noun)|side door|exterior door (generic term)|outside door (generic term)
+side horse|1
+(noun)|pommel horse|horse (generic term)|gymnastic horse (generic term)
+side judge|1
+(noun)|football official (generic term)
+side of bacon|1
+(noun)|flitch|bacon (generic term)
+side of beef|1
+(noun)|side (generic term)|side of meat (generic term)
+side of meat|1
+(noun)|side|cut (generic term)|cut of meat (generic term)
+side of pork|1
+(noun)|side (generic term)|side of meat (generic term)
+side pocket|1
+(noun)|pocket (generic term)
+side road|1
+(noun)|road (generic term)|route (generic term)
+side street|1
+(noun)|street (generic term)
+side view|1
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+side yard|1
+(noun)|yard (generic term)|grounds (generic term)|curtilage (generic term)
+sidearm|1
+(adj)|throw (related term)
+sidebar|2
+(noun)|consultation (generic term)
+(noun)|news article (generic term)|news story (generic term)|newspaper article (generic term)
+sideboard|2
+(noun)|board (generic term)
+(noun)|buffet|counter|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+sideburn|1
+(noun)|burnside|mutton chop|side-whiskers|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+sidecar|2
+(noun)|cocktail (generic term)
+(noun)|conveyance (generic term)|transport (generic term)
+sidekick|1
+(noun)|buddy|brother|chum|crony|pal|friend (generic term)
+sidelight|1
+(noun)|running light|light (generic term)|light source (generic term)
+sideline|4
+(noun)|out of bounds|line (generic term)
+(noun)|line (generic term)|product line (generic term)|line of products (generic term)|line of merchandise (generic term)|business line (generic term)|line of business (generic term)
+(noun)|avocation|by-line|hobby|pursuit|spare-time activity|pastime (generic term)|interest (generic term)|pursuit (generic term)
+(verb)|demote (generic term)|bump (generic term)|relegate (generic term)|break (generic term)|kick downstairs (generic term)
+sidelong|4
+(adj)|askance|askant|asquint|squint|squint-eyed|squinty|indirect (similar term)
+(adj)|lateral|side (similar term)
+(adj)|inclined (similar term)
+(adv)|sideways|obliquely
+sidereal|2
+(adj)|natural object (related term)
+(adj)|civil (antonym)
+sidereal day|1
+(noun)|day|time unit (generic term)|unit of time (generic term)|sidereal time (generic term)
+sidereal hour|1
+(noun)|hour (generic term)|hr (generic term)|60 minutes (generic term)|sidereal time (generic term)
+sidereal month|1
+(noun)|month (generic term)|sidereal time (generic term)
+sidereal time|1
+(noun)|cosmic time (generic term)
+sidereal year|1
+(noun)|year (generic term)|sidereal time (generic term)
+siderite|2
+(noun)|chalybite|iron ore (generic term)
+(noun)|meteorite (generic term)
+sideritis|1
+(noun)|Sideritis|genus Sideritis|asterid dicot genus (generic term)
+sideroblast|1
+(noun)|erythroblast (generic term)
+sideroblastic anaemia|1
+(noun)|sideroblastic anemia|siderochrestic anemia|siderochrestic anaemia|refractory anemia (generic term)|refractory anaemia (generic term)
+sideroblastic anemia|1
+(noun)|sideroblastic anaemia|siderochrestic anemia|siderochrestic anaemia|refractory anemia (generic term)|refractory anaemia (generic term)
+siderochrestic anaemia|1
+(noun)|sideroblastic anemia|sideroblastic anaemia|siderochrestic anemia|refractory anemia (generic term)|refractory anaemia (generic term)
+siderochrestic anemia|1
+(noun)|sideroblastic anemia|sideroblastic anaemia|siderochrestic anaemia|refractory anemia (generic term)|refractory anaemia (generic term)
+siderocyte|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+sideropenia|1
+(noun)|mineral deficiency (generic term)
+siderophilin|1
+(noun)|transferrin|beta globulin|globulin (generic term)
+siderosis|1
+(noun)|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+sidesaddle|1
+(noun)|saddle (generic term)
+sideshow|2
+(noun)|incident (generic term)
+(noun)|show (generic term)
+sideslip|2
+(noun)|skid|slip|slide (generic term)|glide (generic term)|coast (generic term)
+(noun)|slip|flight maneuver (generic term)|airplane maneuver (generic term)
+sidesman|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+sidesplitter|1
+(noun)|belly laugh|howler|thigh-slapper|scream|wow|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+sidesplitting|1
+(adj)|killing|humorous (similar term)|humourous (similar term)
+sidesplittingly|1
+(adv)|killingly
+sidestep|2
+(noun)|step (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|skirt|dodge|duck|avoid (generic term)
+sidestroke|1
+(noun)|swimming stroke (generic term)
+sideswipe|2
+(noun)|blow (generic term)|bump (generic term)
+(verb)|strike (generic term)
+sidetrack|2
+(noun)|siding|railroad siding|turnout|railroad track (generic term)|railroad (generic term)|railway (generic term)
+(verb)|depart|digress|straggle|deviate (generic term)|divert (generic term)
+sidewalk|1
+(noun)|pavement|walk (generic term)|walkway (generic term)|paseo (generic term)
+sidewall|2
+(noun)|side (generic term)
+(noun)|wall (generic term)
+sideward|1
+(adv)|sidewards
+sidewards|1
+(adv)|sideward
+sideway|1
+(adv)|sideways|sidewise
+sideways|3
+(adj)|crabwise|oblique (similar term)
+(adv)|sideway|sidewise
+(adv)|sidelong|obliquely
+sidewinder|2
+(noun)|horned rattlesnake|Crotalus cerastes|rattlesnake (generic term)|rattler (generic term)
+(noun)|missile (generic term)
+sidewise|2
+(adv)|sideways|sideway
+(adv)|sideway|sideways
+siding|2
+(noun)|railroad siding|turnout|sidetrack|railroad track (generic term)|railroad (generic term)|railway (generic term)
+(noun)|building material (generic term)
+sidle|2
+(verb)|move (generic term)
+(verb)|sashay|move (generic term)
+sidle up|1
+(verb)|cozy up|cotton up|shine up|play up|suck up|ingratiate (generic term)
+sidney|1
+(noun)|Sidney|Sir Philip Sidney|poet (generic term)
+sidney caesar|1
+(noun)|Caesar|Sid Caesar|Sidney Caesar|comedian (generic term)|comic (generic term)
+sidney james webb|1
+(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+sidney poitier|1
+(noun)|Poitier|Sidney Poitier|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sidney webb|1
+(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+sidon|1
+(noun)|Sayda|Saida|Sidon|city (generic term)|metropolis (generic term)|urban center (generic term)
+sidonie-gabrielle claudine colette|1
+(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer (generic term)|author (generic term)
+sidonie-gabrielle colette|1
+(noun)|Colette|Sidonie-Gabrielle Colette|Sidonie-Gabrielle Claudine Colette|writer (generic term)|author (generic term)
+sids|1
+(noun)|sudden infant death syndrome|SIDS|infant death|crib death|cot death|death (generic term)|sleep apnea (generic term)
+siege|1
+(noun)|besieging|beleaguering|military blockade|blockade (generic term)|encirclement (generic term)
+siege of orleans|1
+(noun)|Orleans|siege of Orleans|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+siege of syracuse|1
+(noun)|Syracuse|siege of Syracuse|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+siege of vicksburg|1
+(noun)|Vicksburg|siege of Vicksburg|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+siege perilous|1
+(noun)|Siege Perilous|seat (generic term)
+siegfried|1
+(noun)|Siegfried|mythical being (generic term)
+siegfried line|1
+(noun)|Siegfried line|fortification (generic term)|munition (generic term)
+siemens|3
+(noun)|mho|reciprocal ohm|S|conductance unit (generic term)
+(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+(noun)|Siemens|Ernst Werner von Siemens|electrical engineer (generic term)
+sienna|1
+(noun)|earth color (generic term)
+sierra|2
+(noun)|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+(noun)|Scomberomorus sierra|Spanish mackerel (generic term)
+sierra leone|1
+(noun)|Sierra Leone|Republic of Sierra Leone|African country (generic term)|African nation (generic term)
+sierra leone monetary unit|1
+(noun)|Sierra Leone monetary unit|monetary unit (generic term)
+sierra leonean|2
+(adj)|Sierra Leonean|African country|African nation (related term)
+(noun)|Sierra Leonean|African (generic term)
+sierra lodgepole pine|1
+(noun)|Sierra lodgepole pine|Pinus contorta murrayana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+sierra madre occidental|1
+(noun)|Sierra Madre Occidental|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sierra madre oriental|1
+(noun)|Sierra Madre Oriental|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sierra nevada|2
+(noun)|Sierra Nevada|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sierra nevada mountains|1
+(noun)|Sierra Nevada|Sierra Nevada Mountains|High Sierra|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+sierra plum|1
+(noun)|Sierra plum|Pacific plum|Prunus subcordata|plum (generic term)|plum tree (generic term)
+sierra redwood|1
+(noun)|giant sequoia|big tree|Sierra redwood|Sequoiadendron giganteum|Sequoia gigantea|Sequoia Wellingtonia|sequoia (generic term)|redwood (generic term)
+siesta|1
+(noun)|nap (generic term)|catnap (generic term)|cat sleep (generic term)|forty winks (generic term)|short sleep (generic term)|snooze (generic term)
+sieur de lasalle|1
+(noun)|LaSalle|Sieur de LaSalle|Rene-Robert Cavelier|explorer (generic term)|adventurer (generic term)
+sieva bean|2
+(noun)|butter bean|butter-bean plant|lima bean|Phaseolus lunatus|shell bean (generic term)|shell bean plant (generic term)
+(noun)|butter bean|butterbean|civet bean|shell bean (generic term)
+sieve|5
+(noun)|screen|strainer (generic term)
+(verb)|screen|screen out|sort|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|sift|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|sift|strain|separate (generic term)|sieve out (related term)
+(verb)|sift|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+sieve out|1
+(verb)|pick over|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+sieve tube|1
+(noun)|vascular tissue (generic term)
+sif|1
+(noun)|Sif|Norse deity (generic term)
+sift|4
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|sieve|strain|separate (generic term)|sieve out (related term)
+(verb)|sieve|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|sieve|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+sifter|1
+(noun)|sieve (generic term)|screen (generic term)
+sifting|1
+(noun)|winnow|winnowing|separation (generic term)
+sigeh|1
+(noun)|marriage (generic term)|matrimony (generic term)|union (generic term)|spousal relationship (generic term)|wedlock (generic term)
+sigh|4
+(noun)|suspiration|utterance (generic term)|vocalization (generic term)
+(noun)|sound (generic term)
+(verb)|suspire|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+sight|9
+(noun)|visual percept (generic term)|visual image (generic term)
+(noun)|display (generic term)
+(noun)|vision|visual sense|visual modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+(noun)|optical instrument (generic term)
+(noun)|position (generic term)|view (generic term)|perspective (generic term)
+(noun)|ken|compass (generic term)|range (generic term)|reach (generic term)|grasp (generic term)
+(noun)|view|survey|look (generic term)|looking (generic term)|looking at (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+sight-read|2
+(verb)|sightread|perform (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+sight-sing|1
+(verb)|sightsing|sightread (generic term)|sight-read (generic term)
+sight bill|1
+(noun)|sight draft|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+sight draft|1
+(noun)|sight bill|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+sight gag|1
+(noun)|visual joke|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+sighted|1
+(adj)|argus-eyed (similar term)|hawk-eyed (similar term)|keen-sighted (similar term)|lynx-eyed (similar term)|quick-sighted (similar term)|sharp-eyed (similar term)|sharp-sighted (similar term)|clear-sighted (similar term)|seeing (similar term)|blind (antonym)
+sightedness|1
+(noun)|eyesight|seeing|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+sighting|1
+(noun)|observation (generic term)|observance (generic term)|watching (generic term)
+sightless|1
+(adj)|eyeless|unseeing|blind (similar term)|unsighted (similar term)
+sightlessness|1
+(noun)|blindness|cecity|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+sightly|1
+(adj)|bonny|bonnie|comely|fair|beautiful (similar term)
+sightread|1
+(verb)|sight-read|perform (generic term)
+sightreader|1
+(noun)|performer (generic term)|performing artist (generic term)
+sightsee|1
+(verb)|travel to (generic term)|visit (generic term)
+sightseeing|1
+(noun)|rubber-necking|look (generic term)|looking (generic term)|looking at (generic term)
+sightseer|1
+(noun)|excursionist|tripper|rubberneck|tourist (generic term)|tourer (generic term)|holidaymaker (generic term)
+sightsing|1
+(verb)|sight-sing|sightread (generic term)|sight-read (generic term)
+sigint|1
+(noun)|signals intelligence|SIGINT|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+sigma|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+sigmodon|1
+(noun)|Sigmodon|genus Sigmodon|mammal genus (generic term)
+sigmodon hispidus|1
+(noun)|cotton rat|Sigmodon hispidus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+sigmoid|2
+(adj)|line (related term)
+(adj)|sigmoidal|colon (related term)
+sigmoid colon|1
+(noun)|sigmoid flexure|colon (generic term)
+sigmoid flexure|1
+(noun)|sigmoid colon|colon (generic term)
+sigmoid sinus|1
+(noun)|sinus sigmoideus|venous sinus (generic term)|sinus (generic term)
+sigmoid vein|1
+(noun)|vena sigmoideus|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+sigmoidal|1
+(adj)|sigmoid|colon (related term)
+sigmoidectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+sigmoidoscope|1
+(noun)|flexible sigmoidoscope|endoscope (generic term)
+sigmoidoscopy|1
+(noun)|flexible sigmoidoscopy|endoscopy (generic term)
+sigmund freud|1
+(noun)|Freud|Sigmund Freud|neurologist (generic term)|brain doctor (generic term)|analyst (generic term)|psychoanalyst (generic term)
+sigmund romberg|1
+(noun)|Romberg|Sigmund Romberg|composer (generic term)
+sign|20
+(adj)|gestural|signed|sign-language|communicative (similar term)|communicatory (similar term)
+(noun)|mark|clue (generic term)|clew (generic term)|cue (generic term)
+(noun)|communication (generic term)
+(noun)|signal|signaling|communication (generic term)
+(noun)|signboard|structure (generic term)|construction (generic term)
+(noun)|sign of the zodiac|star sign|mansion|house|planetary house|region (generic term)|part (generic term)
+(noun)|evidence (generic term)|grounds (generic term)
+(noun)|polarity|opposition (generic term)|oppositeness (generic term)
+(noun)|augury|foretoken|preindication|experience (generic term)
+(noun)|gesture (generic term)|motion (generic term)
+(noun)|language unit (generic term)|linguistic unit (generic term)
+(noun)|mathematical notation (generic term)
+(verb)|subscribe|write (generic term)|sign in (related term)|sign away (related term)|sign over (related term)
+(verb)|ratify|validate (generic term)|formalize (generic term)|formalise (generic term)
+(verb)|contract (generic term)|undertake (generic term)
+(verb)|contract|sign on|sign up|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|signal|signalize|signalise|communicate (generic term)|intercommunicate (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|bless|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+sign-language|1
+(adj)|gestural|sign|signed|communicative (similar term)|communicatory (similar term)
+sign away|1
+(verb)|sign over|surrender (generic term)|cede (generic term)|deliver (generic term)|give up (generic term)
+sign in|1
+(verb)|check in|report (generic term)|check out (antonym)
+sign industry|1
+(noun)|industry (generic term)
+sign language|1
+(noun)|signing|language (generic term)|linguistic communication (generic term)
+sign manual|1
+(noun)|signature (generic term)
+sign of the cross|1
+(noun)|gesture (generic term)|motion (generic term)
+sign of the zodiac|1
+(noun)|star sign|sign|mansion|house|planetary house|region (generic term)|part (generic term)
+sign off|1
+(verb)|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+sign on|1
+(verb)|sign|contract|sign up|hire (generic term)|engage (generic term)|employ (generic term)
+sign over|1
+(verb)|sign away|surrender (generic term)|cede (generic term)|deliver (generic term)|give up (generic term)
+sign painter|1
+(noun)|painter (generic term)
+sign up|2
+(verb)|sign|contract|sign on|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|join (generic term)|fall in (generic term)|get together (generic term)
+signage|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+signal|6
+(adj)|impressive (similar term)
+(noun)|signaling|sign|communication (generic term)
+(noun)|incitement (generic term)|incitation (generic term)|provocation (generic term)
+(noun)|electricity (generic term)|electrical energy (generic term)
+(verb)|sign|signalize|signalise|communicate (generic term)|intercommunicate (generic term)
+(verb)|bespeak|betoken|indicate|point|tell (generic term)
+signal-to-noise|1
+(noun)|signal-to-noise ratio|signal/noise ratio|signal/noise|S/N|ratio (generic term)
+signal-to-noise ratio|1
+(noun)|signal-to-noise|signal/noise ratio|signal/noise|S/N|ratio (generic term)
+signal/noise|1
+(noun)|signal-to-noise ratio|signal-to-noise|signal/noise ratio|S/N|ratio (generic term)
+signal/noise ratio|1
+(noun)|signal-to-noise ratio|signal-to-noise|signal/noise|S/N|ratio (generic term)
+signal box|1
+(noun)|building (generic term)|edifice (generic term)
+signal caller|1
+(noun)|quarterback|field general|back (generic term)
+signal detection|1
+(noun)|detection|reception (generic term)
+signal fire|1
+(noun)|signal light|beacon (generic term)|beacon fire (generic term)
+signal flag|1
+(noun)|flag|visual signal (generic term)
+signal level|1
+(noun)|amplitude (generic term)
+signal light|1
+(noun)|signal fire|beacon (generic term)|beacon fire (generic term)
+signaler|1
+(noun)|signaller|communicator (generic term)
+signaling|1
+(noun)|signal|sign|communication (generic term)
+signaling device|1
+(noun)|device (generic term)
+signalisation|1
+(noun)|signalization|indication (generic term)|indicant (generic term)
+signalise|4
+(verb)|signalize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|sign|signal|signalize|communicate (generic term)|intercommunicate (generic term)
+(verb)|signalize|point out|call attention|indicate (generic term)|point (generic term)|show (generic term)
+(verb)|signalize|distinguish|mark (generic term)
+signalization|1
+(noun)|signalisation|indication (generic term)|indicant (generic term)
+signalize|4
+(verb)|signalise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|sign|signal|signalise|communicate (generic term)|intercommunicate (generic term)
+(verb)|signalise|point out|call attention|indicate (generic term)|point (generic term)|show (generic term)
+(verb)|signalise|distinguish|mark (generic term)
+signaller|1
+(noun)|signaler|communicator (generic term)
+signally|1
+(adv)|unmistakably|remarkably
+signalman|1
+(noun)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)|signaler (generic term)|signaller (generic term)
+signals intelligence|1
+(noun)|SIGINT|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+signatory|1
+(noun)|signer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+signature|5
+(noun)|name (generic term)
+(noun)|touch|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|signature tune|theme song|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(noun)|key signature|musical notation (generic term)
+(noun)|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+signature recognition|1
+(noun)|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+signature tune|1
+(noun)|signature|theme song|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+signboard|1
+(noun)|sign|structure (generic term)|construction (generic term)
+signed|2
+(adj)|autographed (similar term)|subscribed (similar term)|unsigned (antonym)
+(adj)|gestural|sign|sign-language|communicative (similar term)|communicatory (similar term)
+signer|2
+(noun)|communicator (generic term)
+(noun)|signatory|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+signet|1
+(noun)|seal (generic term)|stamp (generic term)
+signet ring|1
+(noun)|seal ring|ring (generic term)|band (generic term)
+significance|3
+(noun)|importance (generic term)|insignificance (antonym)
+(noun)|import|implication|meaning (generic term)|substance (generic term)
+(noun)|meaning|signification|import|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+significant|4
+(adj)|important|momentous (similar term)|epochal (similar term)|epoch-making (similar term)|earthshaking (similar term)|world-shaking (similar term)|world-shattering (similar term)|evidential (similar term)|evidentiary (similar term)|fundamental (similar term)|profound (similar term)|large (similar term)|monumental (similar term)|noteworthy (similar term)|remarkable (similar term)|probative (similar term)|probatory (similar term)|operative (similar term)|key (similar term)|portentous (similar term)|prodigious (similar term)|important (related term)|of import (related term)|meaningful (related term)|insignificant (antonym)
+(adj)|substantial|considerable (similar term)
+(adj)|nonsignificant (antonym)
+(adj)|meaning|pregnant|meaningful (similar term)
+significant digit|1
+(noun)|significant figure|digit (generic term)|figure (generic term)
+significant figure|1
+(noun)|significant digit|digit (generic term)|figure (generic term)
+significant other|1
+(noun)|domestic partner|spousal equivalent|spouse equivalent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+significantly|2
+(adv)|insignificantly (antonym)
+(adv)|importantly
+signification|1
+(noun)|meaning|significance|import|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+significative|1
+(adj)|indicative|indicatory|revelatory|suggestive|revealing (similar term)
+signified|1
+(noun)|sense|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+signifier|1
+(noun)|form|word form|descriptor|word (generic term)
+signify|3
+(verb)|mean|intend|stand for
+(verb)|mean (generic term)|intend (generic term)
+(verb)|indicate (generic term)
+signing|1
+(noun)|sign language|language (generic term)|linguistic communication (generic term)
+signior|1
+(noun)|signor|man (generic term)|adult male (generic term)
+signor|1
+(noun)|signior|man (generic term)|adult male (generic term)
+signora|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|Signora|title (generic term)|title of respect (generic term)|form of address (generic term)
+signore|1
+(noun)|man (generic term)|adult male (generic term)
+signorina|2
+(noun)|unmarried woman (generic term)
+(noun)|Signorina|title (generic term)|title of respect (generic term)|form of address (generic term)
+signory|1
+(noun)|seigneury|seigniory|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+signpost|2
+(noun)|guidepost|sign (generic term)
+(verb)|mark (generic term)
+sigrid undset|1
+(noun)|Undset|Sigrid Undset|writer (generic term)|author (generic term)
+sigurd|1
+(noun)|Sigurd|mythical being (generic term)
+sigyn|1
+(noun)|Sigyn|Norse deity (generic term)
+sihasapa|1
+(noun)|Sihasapa|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+sika|1
+(noun)|Japanese deer|Cervus nipon|Cervus sika|deer (generic term)|cervid (generic term)
+sikh|2
+(adj)|Sikh|religion|faith|religious belief (related term)
+(noun)|Sikh|disciple (generic term)|adherent (generic term)
+sikhism|1
+(noun)|Sikhism|religion (generic term)|faith (generic term)|religious belief (generic term)
+sikkim|1
+(noun)|Sikkim|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sikorsky|1
+(noun)|Sikorsky|Igor Sikorsky|Igor Ivanovich Sikorsky|industrialist (generic term)
+silage|1
+(noun)|ensilage|feed (generic term)|provender (generic term)
+sild|1
+(noun)|sardine (generic term)
+sildenafil|1
+(noun)|sildenafil citrate|Viagra|virility drug (generic term)|anti-impotence drug (generic term)
+sildenafil citrate|1
+(noun)|sildenafil|Viagra|virility drug (generic term)|anti-impotence drug (generic term)
+silence|6
+(noun)|condition (generic term)|status (generic term)
+(noun)|quiet|sound property (generic term)|sound (antonym)
+(noun)|muteness|uncommunicativeness (generic term)
+(noun)|secrecy|secretiveness|uncommunicativeness (generic term)
+(verb)|hush|quieten|still|shut up|hush up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+(verb)|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+silenced|1
+(adj)|suppressed (similar term)|unsilenced (antonym)
+silencer|2
+(noun)|tube (generic term)|tubing (generic term)
+(noun)|muffler|acoustic device (generic term)
+silene|1
+(noun)|campion|catchfly|flower (generic term)
+silene acaulis|1
+(noun)|moss campion|Silene acaulis|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene caroliniana|1
+(noun)|wild pink|Silene caroliniana|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene dioica|1
+(noun)|red campion|red bird's eye|Silene dioica|Lychnis dioica|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene latifolia|1
+(noun)|white campion|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene uniflora|1
+(noun)|bladder campion|Silene uniflora|Silene vulgaris|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene virginica|1
+(noun)|fire pink|Silene virginica|silene (generic term)|campion (generic term)|catchfly (generic term)
+silene vulgaris|1
+(noun)|bladder campion|Silene uniflora|Silene vulgaris|silene (generic term)|campion (generic term)|catchfly (generic term)
+silent|6
+(adj)|soundless|still|quiet (similar term)
+(adj)|mum|uncommunicative (similar term)|incommunicative (similar term)
+(adj)|implied|tacit|understood|implicit (similar term)|inexplicit (similar term)
+(adj)|unsounded|inaudible (similar term)|unhearable (similar term)
+(adj)|inaudible (similar term)|unhearable (similar term)
+(adj)|dumb|mute|inarticulate (similar term)|unarticulate (similar term)
+silent butler|1
+(noun)|receptacle (generic term)
+silent movie|1
+(noun)|silent picture|silents|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+silent partner|1
+(noun)|sleeping partner|partner (generic term)
+silent person|1
+(noun)|dummy|mute (generic term)|deaf-mute (generic term)|deaf-and-dumb person (generic term)
+silent picture|1
+(noun)|silent movie|silents|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+silent treatment|1
+(noun)|rebuff (generic term)|slight (generic term)
+silently|1
+(adv)|mutely|wordlessly|taciturnly
+silents|1
+(noun)|silent movie|silent picture|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+silenus|2
+(noun)|Greek deity (generic term)
+(noun)|Silenus|satyr (generic term)|forest god (generic term)
+silesia|2
+(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+silex|2
+(noun)|silica (generic term)|silicon oxide (generic term)|silicon dioxide (generic term)
+(noun)|Silex|coffee maker (generic term)
+silhouette|4
+(noun)|outline (generic term)|lineation (generic term)
+(noun)|drawing (generic term)
+(verb)|project (generic term)
+(verb)|represent (generic term)|interpret (generic term)
+silica|1
+(noun)|silicon oxide|silicon dioxide|oxide (generic term)
+silica gel|1
+(noun)|colloid (generic term)
+silicate|1
+(noun)|salt (generic term)
+siliceous|1
+(adj)|silicious|oxide (related term)
+silicic acid|1
+(noun)|acid (generic term)
+silicide|1
+(noun)|compound (generic term)|chemical compound (generic term)
+silicious|1
+(adj)|siliceous|oxide (related term)
+silicle|1
+(noun)|silique (generic term)|siliqua (generic term)
+silicon|1
+(noun)|Si|atomic number 14|chemical element (generic term)|element (generic term)|semiconductor (generic term)|semiconducting material (generic term)
+silicon bronze|1
+(noun)|bronze (generic term)
+silicon carbide|1
+(noun)|carbide (generic term)
+silicon chip|1
+(noun)|chip|microchip|micro chip|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+silicon dioxide|1
+(noun)|silica|silicon oxide|oxide (generic term)
+silicon oxide|1
+(noun)|silica|silicon dioxide|oxide (generic term)
+silicon valley|1
+(noun)|Silicon Valley|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+silicone|1
+(noun)|silicone polymer|siloxane (generic term)|polymer (generic term)
+silicone polymer|1
+(noun)|silicone|siloxane (generic term)|polymer (generic term)
+silicone resin|1
+(noun)|plastic (generic term)
+silicone rubber|1
+(noun)|rubber (generic term)|synthetic rubber (generic term)
+silicosis|1
+(noun)|pneumoconiosis (generic term)|pneumonoconiosis (generic term)
+siliqua|1
+(noun)|silique|capsule (generic term)
+silique|1
+(noun)|siliqua|capsule (generic term)
+silk|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|animal fiber (generic term)|animal fibre (generic term)
+silk-cotton tree|1
+(noun)|kapok|ceiba tree|white silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+silk-lined|1
+(adj)|lined (similar term)
+silk cotton|1
+(noun)|kapok|vegetable silk|plant fiber (generic term)|plant fibre (generic term)
+silk gland|1
+(noun)|serictery|sericterium|gland (generic term)|secretory organ (generic term)|secretor (generic term)|secreter (generic term)
+silk grass|1
+(noun)|mountain rice|silkgrass|Indian millet|Oryzopsis hymenoides|ricegrass (generic term)|rice grass (generic term)
+silk hat|1
+(noun)|dress hat|high hat|opera hat|stovepipe|top hat|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+silk oak|1
+(noun)|grevillea (generic term)
+silk road|1
+(noun)|Silk Road|trade route (generic term)
+silk screen print|1
+(noun)|silkscreen|serigraph|print (generic term)
+silk stocking|1
+(noun)|nylons|nylon stocking|rayons|rayon stocking|stocking (generic term)
+silk tree|1
+(noun)|Albizia julibrissin|Albizzia julibrissin|albizzia (generic term)|albizia (generic term)
+silk vine|1
+(noun)|Periploca graeca|vine (generic term)
+silk wood|1
+(noun)|Jamaican cherry|calabur tree|calabura|silkwood|Muntingia calabura|tree (generic term)
+silken|1
+(adj)|glossy|satiny|sleek|silky|silklike|slick|smooth (similar term)
+silkgrass|1
+(noun)|mountain rice|silk grass|Indian millet|Oryzopsis hymenoides|ricegrass (generic term)|rice grass (generic term)
+silkiness|1
+(noun)|sleekness|smoothness (generic term)
+silklike|1
+(adj)|glossy|satiny|sleek|silken|silky|slick|smooth (similar term)
+silks|1
+(noun)|garment (generic term)
+silkscreen|2
+(noun)|silk screen print|serigraph|print (generic term)
+(verb)|print (generic term)
+silkweed|1
+(noun)|milkweed|herb (generic term)|herbaceous plant (generic term)
+silkwood|1
+(noun)|Jamaican cherry|calabur tree|calabura|silk wood|Muntingia calabura|tree (generic term)
+silkworm|2
+(noun)|caterpillar (generic term)
+(noun)|giant silkworm|wild wilkworm|caterpillar (generic term)
+silkworm moth|2
+(noun)|giant silkworm moth|saturniid (generic term)|saturniid moth (generic term)
+(noun)|bombycid|bombycid moth|moth (generic term)
+silkworm seed|1
+(noun)|egg (generic term)
+silky|1
+(adj)|glossy|satiny|sleek|silken|silklike|slick|smooth (similar term)
+silky-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+silky-leafed|1
+(adj)|silky-leaved|leafy (similar term)
+silky-leaved|1
+(adj)|silky-leafed|leafy (similar term)
+silky anteater|1
+(noun)|two-toed anteater|Cyclopes didactylus|anteater (generic term)|New World anteater (generic term)
+silky cornel|1
+(noun)|silky dogwood|Cornus amomum|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+silky dogwood|2
+(noun)|silky cornel|Cornus amomum|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+(noun)|Cornus obliqua|dogwood (generic term)|dogwood tree (generic term)|cornel (generic term)
+silky elm|1
+(noun)|red beech|brown oak|booyong|crow's foot|stave wood|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+silky oak|1
+(noun)|Grevillea robusta|silk oak (generic term)
+silky pocket mouse|1
+(noun)|Perognathus flavus|pocket mouse (generic term)
+silky tamarin|1
+(noun)|Leontocebus rosalia|tamarin (generic term)|lion monkey (generic term)|lion marmoset (generic term)|leoncita (generic term)
+silky terrier|1
+(noun)|Sydney silky|terrier (generic term)
+silky willow|2
+(noun)|Sitka willow|Salix sitchensis|willow (generic term)|willow tree (generic term)
+(noun)|silver willow|Salix alba sericea|Salix sericea|willow (generic term)|willow tree (generic term)
+silky wisteria|1
+(noun)|Wisteria venusta|wisteria (generic term)|wistaria (generic term)
+sill|2
+(noun)|structural member (generic term)
+(noun)|rock (generic term)|stone (generic term)
+sillabub|2
+(noun)|syllabub|drink (generic term)
+(noun)|syllabub|dessert (generic term)|sweet (generic term)|afters (generic term)
+sillaginidae|1
+(noun)|Sillaginidae|family Sillaginidae|fish family (generic term)
+sillago|1
+(noun)|Sillago|genus Sillago|fish genus (generic term)
+silliness|2
+(noun)|absurdity|fatuity|fatuousness|folly (generic term)|foolishness (generic term)|unwiseness (generic term)
+(noun)|giddiness|frivolity (generic term)|frivolousness (generic term)
+sills|1
+(noun)|Sills|Beverly Sills|Belle Miriam Silverman|soprano (generic term)
+silly|5
+(adj)|cockamamie|cockamamy|goofy|sappy|wacky|whacky|zany|foolish (similar term)
+(adj)|airheaded|dizzy|empty-headed|featherbrained|giddy|light-headed|lightheaded|frivolous (similar term)
+(adj)|pathetic|ridiculous|undignified (similar term)
+(adj)|punch-drunk|slaphappy|confused (similar term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+silly season|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+silo|2
+(noun)|tower (generic term)
+(noun)|military installation (generic term)
+siloxane|1
+(noun)|compound (generic term)|chemical compound (generic term)
+silphium|1
+(noun)|Silphium|genus Silphium|asterid dicot genus (generic term)
+silphium laciniatum|1
+(noun)|rosinweed|Silphium laciniatum|compass plant (generic term)|compass flower (generic term)
+silt|2
+(noun)|soil (generic term)|dirt (generic term)
+(verb)|silt up|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)
+silt up|1
+(verb)|silt|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)
+siltstone|1
+(noun)|sandstone (generic term)
+silty|1
+(adj)|loose (similar term)
+silurian|1
+(noun)|Silurian|Silurian period|period (generic term)|geological period (generic term)
+silurian period|1
+(noun)|Silurian|Silurian period|period (generic term)|geological period (generic term)
+silurid|1
+(noun)|silurid fish|catfish (generic term)|siluriform fish (generic term)
+silurid fish|1
+(noun)|silurid|catfish (generic term)|siluriform fish (generic term)
+siluridae|1
+(noun)|Siluridae|family Siluridae|fish family (generic term)
+siluriform fish|1
+(noun)|catfish|soft-finned fish (generic term)|malacopterygian (generic term)
+siluriformes|1
+(noun)|Siluriformes|order Siluriformes|animal order (generic term)
+silurus|1
+(noun)|Silurus|genus Silurus|fish genus (generic term)
+silurus glanis|1
+(noun)|European catfish|sheatfish|Silurus glanis|silurid (generic term)|silurid fish (generic term)
+silva|1
+(noun)|sylva|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+silvan|2
+(adj)|sylvan|wooded (similar term)
+(noun)|sylvan|spirit (generic term)|disembodied spirit (generic term)
+silvanus|1
+(noun)|Sylvanus|Silvanus|Roman deity (generic term)
+silver|12
+(adj)|metallic (similar term)|metal (similar term)
+(adj)|silvern|silvery|bright (similar term)
+(adj)|argent|silvery|silverish|achromatic (similar term)
+(adj)|eloquent|facile|fluent|silver-tongued|smooth-spoken|articulate (similar term)
+(noun)|Ag|atomic number 47|noble metal (generic term)|conductor (generic term)
+(noun)|precious metal (generic term)
+(noun)|ash grey|ash gray|silver grey|silver gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+(noun)|flatware|silverware (generic term)
+(noun)|silver medal|trophy (generic term)|prize (generic term)
+(verb)|plate (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+silver-bell tree|1
+(noun)|silverbell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+silver-blue|1
+(adj)|silvery-blue|chromatic (similar term)
+silver-bodied|1
+(adj)|silvery-bodied|bodied (similar term)
+silver-bush|2
+(noun)|Jupiter's beard|silverbush|Anthyllis barba-jovis|shrub (generic term)|bush (generic term)
+(noun)|silverberry|silver berry|silverbush|Elaeagnus commutata|oleaster (generic term)
+silver-colored|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+silver-gray|1
+(adj)|silver-grey|silvery-grey|silvery-gray|achromatic (similar term)
+silver-green|1
+(adj)|silvery-green|chromatic (similar term)
+silver-grey|1
+(adj)|silver-gray|silvery-grey|silvery-gray|achromatic (similar term)
+silver-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+silver-lace|1
+(noun)|dusty miller|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite (generic term)|composite plant (generic term)
+silver-leafed|1
+(adj)|silver-leaved|silvery-leaved|silvery-leafed|leafy (similar term)
+silver-leaved|1
+(adj)|silvery-leaved|silver-leafed|silvery-leafed|leafy (similar term)
+silver-leaved nettle|1
+(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|Solanum elaeagnifolium|nightshade (generic term)
+silver-leaved nightshade|1
+(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+silver-leaved poplar|1
+(noun)|white poplar|white aspen|abele|aspen poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+silver-plate|1
+(verb)|silverplate|plate (generic term)
+silver-scaled|1
+(adj)|armored (similar term)|armoured (similar term)
+silver-tip|1
+(noun)|grizzly|grizzly bear|silvertip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+silver-tongued|1
+(adj)|eloquent|facile|fluent|silver|smooth-spoken|articulate (similar term)
+silver-white|1
+(adj)|silvery-white|achromatic (similar term)
+silver-worker|1
+(noun)|silversmith|silverworker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+silver age|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+silver ash|1
+(noun)|tree (generic term)
+silver beech|1
+(noun)|Nothofagus menziesii|New Zealand beech (generic term)
+silver bell|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+silver berry|2
+(noun)|Russian olive|Elaeagnus augustifolia|oleaster (generic term)
+(noun)|silverberry|silverbush|silver-bush|Elaeagnus commutata|oleaster (generic term)
+silver birch|1
+(noun)|common birch|European white birch|Betula pendula|birch (generic term)|birch tree (generic term)
+silver bromide|1
+(noun)|bromide (generic term)
+silver bullet|1
+(noun)|solution (generic term)
+silver certificate|1
+(noun)|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+silver chloride|1
+(noun)|chloride (generic term)
+silver city|1
+(noun)|Silver City|town (generic term)
+silver cord|1
+(noun)|alliance (generic term)|bond (generic term)
+silver dollar|2
+(noun)|cartwheel|dollar (generic term)
+(noun)|honesty|money plant|satin flower|satinpod|Lunaria annua|herb (generic term)|herbaceous plant (generic term)
+silver fern|2
+(noun)|Pityrogramma calomelanos|fern (generic term)
+(noun)|Pityrogramma argentea|fern (generic term)
+silver fir|1
+(noun)|fir (generic term)|fir tree (generic term)|true fir (generic term)
+silver fox|1
+(noun)|red fox (generic term)|Vulpes vulpes (generic term)
+silver grass|1
+(noun)|grass (generic term)
+silver gray|1
+(noun)|ash grey|ash gray|silver|silver grey|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+silver grey|1
+(noun)|ash grey|ash gray|silver|silver gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+silver hake|1
+(noun)|Merluccius bilinearis|whiting|hake (generic term)
+silver iodide|1
+(noun)|iodide (generic term)
+silver jenny|1
+(noun)|Eucinostomus gula|mojarra (generic term)
+silver jubilee|1
+(noun)|jubilee (generic term)
+silver lace|1
+(noun)|dusty miller|silver-lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite (generic term)|composite plant (generic term)
+silver lace vine|1
+(noun)|China fleece vine|Russian vine|Polygonum aubertii|vine (generic term)
+silver lime|1
+(noun)|silver linden|Tilia tomentosa|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+silver linden|1
+(noun)|silver lime|Tilia tomentosa|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+silver lining|1
+(noun)|bright side|consolation (generic term)|solace (generic term)|solacement (generic term)
+silver maple|1
+(noun)|Acer saccharinum|maple (generic term)
+silver medal|1
+(noun)|silver|trophy (generic term)|prize (generic term)
+silver mine|1
+(noun)|mine (generic term)
+silver nitrate|1
+(noun)|nitrate (generic term)|caustic (generic term)
+silver oak|1
+(noun)|Grevillela parallela|silk oak (generic term)
+silver perch|2
+(noun)|mademoiselle|Bairdiella chrysoura|drum (generic term)|drumfish (generic term)
+(noun)|white perch|Morone americana|serranid fish (generic term)|serranid (generic term)
+silver pine|2
+(noun)|westland pine|Lagarostrobus colensoi|conifer (generic term)|coniferous tree (generic term)
+(noun)|western white pine|mountain pine|Pinus monticola|white pine (generic term)
+silver plate|2
+(noun)|tableware (generic term)
+(noun)|plating (generic term)|metal plating (generic term)
+silver protein|1
+(noun)|colloid (generic term)
+silver quandong|1
+(noun)|wood (generic term)
+silver quandong tree|1
+(noun)|quandong|quandong tree|Brisbane quandong|blue fig|Elaeocarpus grandis|tree (generic term)
+silver sage|1
+(noun)|silver sagebrush|grey sage|gray sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+silver sagebrush|1
+(noun)|silver sage|grey sage|gray sage|Seriphidium canum|Artemisia cana|sagebrush (generic term)|sage brush (generic term)
+silver salmon|2
+(noun)|coho salmon|coho|cohoe|salmon (generic term)
+(noun)|coho|cohoe|coho salmon|blue jack|Oncorhynchus kisutch|salmon (generic term)
+silver screen|2
+(noun)|film (generic term)|cinema (generic term)|celluloid (generic term)
+(noun)|screen|projection screen|surface (generic term)
+silver solder|1
+(noun)|solder (generic term)
+silver spoon|1
+(noun)|old money|inherited wealth (generic term)
+silver spruce|1
+(noun)|Colorado spruce|Colorado blue spruce|Picea pungens|spruce (generic term)
+silver standard|1
+(noun)|standard (generic term)|monetary standard (generic term)
+silver star|1
+(noun)|Silver Star Medal|Silver Star|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+silver star medal|1
+(noun)|Silver Star Medal|Silver Star|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+silver state|1
+(noun)|Nevada|Silver State|Battle Born State|Sagebrush State|NV|American state (generic term)
+silver storm|1
+(noun)|ice storm|storm (generic term)|violent storm (generic term)
+silver thatch|2
+(noun)|key palm|silvertop palmetto|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm (generic term)
+(noun)|thatch palm|thatch tree|broom palm|Thrinax parviflora|fan palm (generic term)
+silver tree|2
+(noun)|Leucadendron argenteum|tree (generic term)
+(noun)|Tarrietia argyrodendron|tree (generic term)
+silver tree fern|1
+(noun)|sago fern|black tree fern|Cyathea medullaris|tree fern (generic term)
+silver vine|1
+(noun)|silvervine|Actinidia polygama|vine (generic term)
+silver wattle|1
+(noun)|mimosa|Acacia dealbata|acacia (generic term)
+silver wedding anniversary|1
+(noun)|wedding anniversary (generic term)
+silver whiting|1
+(noun)|Menticirrhus littoralis|whiting (generic term)
+silver willow|1
+(noun)|silky willow|Salix alba sericea|Salix sericea|willow (generic term)|willow tree (generic term)
+silverback|1
+(noun)|gorilla (generic term)|Gorilla gorilla (generic term)
+silverbell tree|1
+(noun)|silver-bell tree|snowdrop tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+silverberry|1
+(noun)|silver berry|silverbush|silver-bush|Elaeagnus commutata|oleaster (generic term)
+silverbush|2
+(noun)|Jupiter's beard|silver-bush|Anthyllis barba-jovis|shrub (generic term)|bush (generic term)
+(noun)|silverberry|silver berry|silver-bush|Elaeagnus commutata|oleaster (generic term)
+silverfish|2
+(noun)|Lepisma saccharina|thysanuran insect (generic term)|thysanuron (generic term)
+(noun)|goldfish (generic term)|Carassius auratus (generic term)
+silverish|1
+(adj)|argent|silver|silvery|achromatic (similar term)
+silverleaf nightshade|1
+(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+silvern|2
+(adj)|silvery|euphonious (similar term)|euphonous (similar term)
+(adj)|silver|silvery|bright (similar term)
+silverplate|1
+(verb)|silver-plate|plate (generic term)
+silverpoint|1
+(noun)|drawing (generic term)
+silverrod|1
+(noun)|Solidago bicolor|goldenrod (generic term)
+silverside|1
+(noun)|silversides|spiny-finned fish (generic term)|acanthopterygian (generic term)
+silversides|2
+(noun)|silverside|spiny-finned fish (generic term)|acanthopterygian (generic term)
+(noun)|common shiner|Notropis cornutus|shiner (generic term)
+silversmith|1
+(noun)|silverworker|silver-worker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+silverspot|1
+(noun)|fritillary (generic term)
+silverstein|1
+(noun)|Silverstein|Shel Silverstein|Shelby Silverstein|poet (generic term)|cartoonist (generic term)
+silversword|1
+(noun)|Argyroxiphium sandwicense|shrub (generic term)|bush (generic term)
+silvertip|1
+(noun)|grizzly|grizzly bear|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+silvertop palmetto|1
+(noun)|key palm|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm (generic term)
+silvervine|1
+(noun)|silver vine|Actinidia polygama|vine (generic term)
+silverware|1
+(noun)|tableware (generic term)
+silverweed|2
+(noun)|vine (generic term)
+(noun)|goose-tansy|goose grass|Potentilla anserina|cinquefoil (generic term)|five-finger (generic term)
+silverwork|1
+(noun)|work (generic term)|piece of work (generic term)
+silverworker|1
+(noun)|silversmith|silver-worker|jewelry maker (generic term)|jeweler (generic term)|jeweller (generic term)
+silvery|3
+(adj)|argent|silver|silverish|achromatic (similar term)
+(adj)|silvern|euphonious (similar term)|euphonous (similar term)
+(adj)|silver|silvern|bright (similar term)
+silvery-blue|1
+(adj)|silver-blue|chromatic (similar term)
+silvery-bodied|1
+(adj)|silver-bodied|bodied (similar term)
+silvery-gray|1
+(adj)|silver-grey|silver-gray|silvery-grey|achromatic (similar term)
+silvery-green|1
+(adj)|silver-green|chromatic (similar term)
+silvery-grey|1
+(adj)|silver-grey|silver-gray|silvery-gray|achromatic (similar term)
+silvery-leafed|1
+(adj)|silver-leaved|silvery-leaved|silver-leafed|leafy (similar term)
+silvery-leaved|1
+(adj)|silver-leaved|silver-leafed|silvery-leafed|leafy (similar term)
+silvery-white|1
+(adj)|silver-white|achromatic (similar term)
+silvery spleenwort|2
+(noun)|Deparia acrostichoides|Athyrium thelypteroides|fern (generic term)
+(noun)|glade fern|narrow-leaved spleenwort|Athyrium pycnocarpon|Diplazium pycnocarpon|fern (generic term)
+silvery wormwood|1
+(noun)|sand sage|Artemisia filifolia|sagebrush (generic term)|sage brush (generic term)
+silvex|1
+(noun)|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+silvia|1
+(noun)|Silvia|genus Silvia|bird genus (generic term)
+silvia atricapilla|1
+(noun)|blackcap|Silvia atricapilla|Old World warbler (generic term)|true warbler (generic term)
+silviculture|1
+(noun)|forestry (generic term)
+silybum|1
+(noun)|Silybum|genus Silybum|asterid dicot genus (generic term)
+silybum marianum|1
+(noun)|milk thistle|lady's thistle|Our Lady's mild thistle|holy thistle|blessed thistle|Silybum marianum|herb (generic term)|herbaceous plant (generic term)
+sima|1
+(noun)|rock (generic term)|stone (generic term)
+simal|1
+(noun)|red silk-cotton tree|Bombax ceiba|Bombax malabarica|tree (generic term)
+simarouba|1
+(noun)|Simarouba|genus Simarouba|rosid dicot genus (generic term)
+simarouba amara|1
+(noun)|marupa|Simarouba amara|bitterwood tree (generic term)
+simarouba glauca|1
+(noun)|paradise tree|bitterwood|Simarouba glauca|bitterwood tree (generic term)
+simaroubaceae|1
+(noun)|Simaroubaceae|family Simaroubaceae|quassia family|rosid dicot family (generic term)
+simazine|1
+(noun)|herbicide (generic term)|weedkiller (generic term)|weed killer (generic term)
+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 (generic term)
+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 (generic term)
+simenon|1
+(noun)|Simenon|Georges Simenon|Georges Joseph Christian Simenon|writer (generic term)|author (generic term)
+simeon|1
+(noun)|Simeon|patriarch (generic term)
+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 (generic term)
+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 (generic term)
+simian|2
+(adj)|primate (related term)
+(noun)|primate (generic term)
+similar|5
+(adj)|akin (similar term)|kindred (similar term)|related (similar term)|analogous (similar term)|correspondent (similar term)|confusable (similar term)|mistakable (similar term)|connatural (similar term)|corresponding (similar term)|quasi (similar term)|siamese (similar term)|twin (similar term)|same (related term)|dissimilar (antonym)
+(adj)|alike|like|unalike (antonym)
+(adj)|like|like-minded (similar term)|look-alike (similar term)|suchlike (similar term)|same (related term)|unlike (antonym)
+(adj)|synonymous (similar term)
+(adj)|exchangeable|interchangeable|standardized|standardised|replaceable (similar term)
+similarity|2
+(noun)|sameness (generic term)|dissimilarity (antonym)
+(noun)|law of similarity|Gestalt law of organization (generic term)|Gestalt principle of organization (generic term)
+similarly|1
+(adv)|likewise
+simile|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+similitude|2
+(noun)|likeness|alikeness|similarity (generic term)|dissimilitude (antonym)|unlikeness (antonym)
+(noun)|counterpart|twin|duplicate (generic term)|duplication (generic term)
+simmer|2
+(noun)|temperature (generic term)
+(verb)|boil (generic term)
+simmer down|1
+(verb)|calm|calm down|cool off|chill out|settle down|cool it|change state (generic term)|turn (generic term)
+simmering|1
+(noun)|boiling|stewing|cooking (generic term)|cookery (generic term)|preparation (generic term)
+simmpleness|1
+(noun)|simplicity|naturalness (generic term)
+simnel|2
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|fruitcake (generic term)
+simoleons|1
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|sugar|wampum|money (generic term)
+simon|4
+(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle (generic term)|saint (generic term)
+(noun)|Simon|Paul Simon|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+(noun)|Simon|Neil Simon|Marvin Neil Simon|dramatist (generic term)|playwright (generic term)
+(noun)|Simon|Herb Simon|Herbert A. Simon|Herbert Alexander Simon|economist (generic term)|economic expert (generic term)|psychologist (generic term)
+simon bolivar|1
+(noun)|Bolivar|Simon Bolivar|El Libertador|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+simon de montfort|1
+(noun)|Montfort|Simon de Montfort|Earl of Leicester|earl (generic term)
+simon kuznets|1
+(noun)|Kuznets|Simon Kuznets|economist (generic term)|economic expert (generic term)
+simon legree|2
+(noun)|slave driver|Simon Legree|employer (generic term)
+(noun)|Simon Legree|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+simon marks|1
+(noun)|Marks|Simon Marks|First Baron Marks of Broughton|businessman (generic term)|man of affairs (generic term)
+simon newcomb|1
+(noun)|Newcomb|Simon Newcomb|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+simon peter|1
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+simon the canaanite|1
+(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle (generic term)|saint (generic term)
+simon the zealot|1
+(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle (generic term)|saint (generic term)
+simon zelotes|1
+(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle (generic term)|saint (generic term)
+simone de beauvoir|1
+(noun)|Beauvoir|Simone de Beauvoir|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)|existentialist (generic term)|existentialist philosopher (generic term)|writer (generic term)|author (generic term)
+simone weil|1
+(noun)|Weil|Simone Weil|philosopher (generic term)
+simonise|1
+(verb)|Simonize|Simonise|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+simoniz|1
+(noun)|Simoniz|polish (generic term)
+simonize|1
+(verb)|Simonize|Simonise|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+simony|1
+(noun)|barratry|traffic (generic term)
+simoom|1
+(noun)|simoon|samiel|wind (generic term)|air current (generic term)|current of air (generic term)
+simoon|1
+(noun)|simoom|samiel|wind (generic term)|air current (generic term)|current of air (generic term)
+simper|2
+(noun)|smile (generic term)|smiling (generic term)|grin (generic term)|grinning (generic term)
+(verb)|smirk|smile (generic term)
+simperer|1
+(noun)|smiler (generic term)
+simperingly|1
+(adv)|pusillanimously
+simple|9
+(adj)|simplex (similar term)|unanalyzable (similar term)|undecomposable (similar term)|uncomplicated (similar term)|unsophisticated (similar term)|easy (related term)|plain (related term)|simple (related term)|unsubdivided (related term)|complex (antonym)
+(adj)|elementary|uncomplicated|unproblematic|easy (similar term)
+(adj)|bare|mere|plain (similar term)
+(adj)|childlike|wide-eyed|round-eyed|dewy-eyed|naive (similar term)|naif (similar term)
+(adj)|dim-witted|half-witted|simple-minded|retarded (similar term)
+(adj)|unsubdivided|acerate (similar term)|acerose (similar term)|acicular (similar term)|needle-shaped (similar term)|acuminate (similar term)|apiculate (similar term)|caudate (similar term)|cordate (similar term)|heart-shaped (similar term)|cordiform (similar term)|cuneate (similar term)|wedge-shaped (similar term)|deltoid (similar term)|dolabriform (similar term)|dolabrate (similar term)|elliptic (similar term)|ensiform (similar term)|sword-shaped (similar term)|swordlike (similar term)|bladelike (similar term)|hastate (similar term)|spearhead-shaped (similar term)|lanceolate (similar term)|lancelike (similar term)|linear (similar term)|elongate (similar term)|lyrate (similar term)|needled (similar term)|two-needled (similar term)|three-needled (similar term)|four-needled (similar term)|five-needled (similar term)|obtuse (similar term)|oblanceolate (similar term)|oblong (similar term)|obovate (similar term)|orbiculate (similar term)|orbicular (similar term)|ovate (similar term)|pandurate (similar term)|panduriform (similar term)|fiddle-shaped (similar term)|peltate (similar term)|shield-shaped (similar term)|perfoliate (similar term)|reniform (similar term)|kidney-shaped (similar term)|sagittate (similar term)|sagittiform (similar term)|arrow-shaped (similar term)|spatulate (similar term)|spatula-shaped (similar term)|unlobed (similar term)|simple (related term)|smooth (related term)|compound (antonym)
+(adj)|plain (similar term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|simpleton|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+simple-minded|2
+(adj)|naive (similar term)|naif (similar term)
+(adj)|dim-witted|half-witted|simple|retarded (similar term)
+simple absence|1
+(noun)|pure absence|petit mal epilepsy (generic term)|absence (generic term)
+simple closed curve|1
+(noun)|Jordan curve|closed curve (generic term)
+simple eye|1
+(noun)|stemma|ocellus|eye (generic term)|oculus (generic term)|optic (generic term)
+simple fraction|1
+(noun)|common fraction|fraction (generic term)
+simple fracture|1
+(noun)|closed fracture|fracture (generic term)|break (generic term)
+simple fruit|1
+(noun)|bacca|berry (generic term)
+simple harmonic motion|1
+(noun)|harmonic motion (generic term)
+simple interest|1
+(noun)|interest (generic term)
+simple leaf|1
+(noun)|leaf (generic term)|leafage (generic term)|foliage (generic term)
+simple machine|1
+(noun)|machine|mechanical device (generic term)
+simple mastectomy|1
+(noun)|mastectomy (generic term)
+simple microscope|1
+(noun)|hand glass|magnifying glass|light microscope (generic term)
+simple mindedness|1
+(noun)|simplicity|simpleness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+simple pendulum|1
+(noun)|pendulum (generic term)
+simple phobia|1
+(noun)|phobia (generic term)|phobic disorder (generic term)|phobic neurosis (generic term)
+simple pistil|1
+(noun)|pistil (generic term)
+simple protein|1
+(noun)|protein (generic term)
+simple regression|1
+(noun)|regression|regression toward the mean|statistical regression|statistical method (generic term)|statistical procedure (generic term)
+simple sentence|1
+(noun)|sentence (generic term)
+simple sugar|1
+(noun)|monosaccharide|monosaccharose|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+simpleness|4
+(noun)|simplicity|simple mindedness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|simplicity|quality (generic term)|complexity (antonym)
+(noun)|ease|easiness|simplicity|quality (generic term)|difficulty (antonym)
+(noun)|chasteness|restraint|simplicity|plainness (generic term)
+simpleton|1
+(noun)|simple|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+simplex|2
+(adj)|unidirectional (similar term)
+(adj)|simple (similar term)
+simplicity|5
+(noun)|simpleness|quality (generic term)|complexity (antonym)
+(noun)|simpleness|simple mindedness|naivete (generic term)|naivety (generic term)|naiveness (generic term)
+(noun)|simmpleness|naturalness (generic term)
+(noun)|ease|easiness|simpleness|quality (generic term)|difficulty (antonym)
+(noun)|chasteness|restraint|simpleness|plainness (generic term)
+simplification|3
+(noun)|explanation (generic term)|account (generic term)
+(noun)|elimination (generic term)|riddance (generic term)
+(noun)|reduction|change (generic term)
+simplified|1
+(adj)|easy (similar term)
+simplify|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|complicate (antonym)
+simplism|1
+(noun)|oversimplification|simplification (generic term)
+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 (generic term)|grass widow (generic term)
+(noun)|Simpson|Sir James Young Simpson|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+simpson desert|1
+(noun)|Simpson Desert|desert (generic term)
+simulacrum|2
+(noun)|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+(noun)|effigy|image|representation (generic term)
+simulate|3
+(verb)|imitate|copy|reproduce (generic term)
+(verb)|model|re-create (generic term)
+(verb)|assume|sham|feign|dissemble (generic term)|pretend (generic term)|act (generic term)
+simulated|2
+(adj)|fake|false|faux|imitation|artificial (similar term)|unreal (similar term)
+(adj)|imitative (similar term)
+simulated military operation|1
+(noun)|maneuver|manoeuvre|operation (generic term)|military operation (generic term)
+simulation|4
+(noun)|computer simulation|technique (generic term)|model (generic term)|theoretical account (generic term)|framework (generic term)
+(noun)|model (generic term)|modelling (generic term)|modeling (generic term)
+(noun)|model|representation (generic term)
+(noun)|pretense|pretence|pretending|feigning|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+simulative electronic deception|1
+(noun)|electronic simulative deception|electronic deception (generic term)
+simulator|1
+(noun)|machine (generic term)
+simulcast|1
+(noun)|broadcast (generic term)
+simuliidae|1
+(noun)|Simuliidae|family Simuliidae|arthropod family (generic term)
+simulium|1
+(noun)|Simulium|genus Simulium|arthropod genus (generic term)
+simultaneity|1
+(noun)|simultaneousness|timing (generic term)
+simultaneous|1
+(adj)|coincident|coincidental|coinciding|concurrent|co-occurrent|cooccurring|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+simultaneous equations|1
+(noun)|equation (generic term)
+simultaneous operation|1
+(noun)|parallel operation|operation (generic term)|serial operation (antonym)
+simultaneously|1
+(adv)|at the same time
+simultaneousness|1
+(noun)|simultaneity|timing (generic term)
+simvastatin|1
+(noun)|Zocor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+sin|8
+(noun)|sinfulness|wickedness|unrighteousness (generic term)
+(noun)|sinning|transgression (generic term)|evildoing (generic term)
+(noun)|sine|trigonometric function (generic term)|circular function (generic term)
+(noun)|Sin|Semitic deity (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|hell|activity (generic term)
+(verb)|transgress|trespass|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|blunder|boob|goof|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+sinai|3
+(noun)|Sinai|Mount Sinai|mountain peak (generic term)
+(noun)|Sinai|Sinai Desert|desert (generic term)
+(noun)|Sinai|Sinai Peninsula|peninsula (generic term)
+sinai desert|1
+(noun)|Sinai|Sinai Desert|desert (generic term)
+sinai peninsula|1
+(noun)|Sinai|Sinai Peninsula|peninsula (generic term)
+sinanthropus|1
+(noun)|Sinanthropus|genus Sinanthropus|hominid (generic term)
+sinapis|1
+(noun)|Sinapis|genus Sinapis|dilleniid dicot genus (generic term)
+sinapis alba|1
+(noun)|white mustard|Brassica hirta|Sinapis alba|mustard (generic term)
+sinapis arvensis|1
+(noun)|field mustard|wild mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+sinapism|1
+(noun)|mustard plaster|poultice (generic term)|cataplasm (generic term)|plaster (generic term)
+sinatra|1
+(noun)|Sinatra|Frank Sinatra|Francis Albert Sinatra|crooner (generic term)|balladeer (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sinbad|1
+(noun)|Sinbad the Sailor|Sinbad|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sinbad the sailor|1
+(noun)|Sinbad the Sailor|Sinbad|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+since a long time ago|1
+(adv)|from way back
+sincere|2
+(adj)|bona fide (similar term)|cordial (similar term)|dear (similar term)|devout (similar term)|earnest (similar term)|heartfelt (similar term)|honest (similar term)|genuine (similar term)|true (similar term)|unfeigned (similar term)|heart-whole (similar term)|wholehearted (similar term)|whole-souled (similar term)|genuine (related term)|echt (related term)|honest (related term)|honorable (related term)|ingenuous (related term)|artless (related term)|real (related term)|existent (related term)|true (related term)|insincere (antonym)
+(adj)|earnest|solemn|serious (similar term)
+sincerely|2
+(adv)|unfeignedly|truly|insincerely (antonym)
+(adv)|sincerely yours
+sincerely yours|1
+(adv)|sincerely
+sincerity|4
+(noun)|earnestness|seriousness|gravity (generic term)|solemnity (generic term)
+(noun)|truthfulness (generic term)|insincerity (antonym)
+(noun)|unassumingness|naturalness (generic term)
+(noun)|seriousness|earnestness|serious-mindedness|trait (generic term)|frivolity (antonym)
+sinciput|1
+(noun)|bone (generic term)|os (generic term)
+sinclair|2
+(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer (generic term)|author (generic term)
+(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+sinclair lewis|1
+(noun)|Lewis|Sinclair Lewis|Harry Sinclair Lewis|writer (generic term)|author (generic term)
+sindhi|1
+(noun)|Sindhi|Sanskrit (generic term)|Sanskritic language (generic term)
+sine|1
+(noun)|sin|trigonometric function (generic term)|circular function (generic term)
+sine curve|1
+(noun)|sinusoid|wave (generic term)|undulation (generic term)
+sine qua non|1
+(noun)|essential condition|prerequisite (generic term)|requirement (generic term)
+sine wave|1
+(noun)|wave (generic term)|undulation (generic term)
+sinecure|2
+(noun)|benefice (generic term)|ecclesiastical benefice (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+sinequan|1
+(noun)|doxepin|doxepin hydrochloride|Adapin|Sinequan|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+sinew|2
+(noun)|tendon|connective tissue (generic term)
+(noun)|brawn|brawniness|muscle|muscularity|heftiness|strength (generic term)
+sinewy|3
+(adj)|fibrous|stringy|unchewable|tough (similar term)
+(adj)|tendinous|connective tissue (related term)
+(adj)|brawny|hefty|muscular|powerful|strong (similar term)
+sinful|3
+(adj)|iniquitous|ungodly|wicked (similar term)
+(adj)|unholy|wicked|unrighteous (similar term)
+(adj)|extraordinary|over-the-top|immoderate (similar term)
+sinfulness|1
+(noun)|sin|wickedness|unrighteousness (generic term)
+sing|5
+(verb)|sing (generic term)|interpret (generic term)|render (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|whistle|sound (generic term)|go (generic term)
+(verb)|spill the beans|let the cat out of the bag|talk|tattle|blab|peach|babble|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+sing-kwa|1
+(noun)|angled loofah|Luffa acutangula|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+sing along|1
+(verb)|sing (generic term)
+singable|1
+(adj)|musical (similar term)
+singalong|1
+(noun)|singsong|singing (generic term)|vocalizing (generic term)
+singan|1
+(noun)|Xian|Sian|Singan|Changan|Hsian|city (generic term)|metropolis (generic term)|urban center (generic term)
+singapore|3
+(noun)|Singapore|capital of Singapore|national capital (generic term)
+(noun)|Singapore|Republic of Singapore|Asian country (generic term)|Asian nation (generic term)
+(noun)|Singapore|Singapore Island|island (generic term)
+singapore dollar|1
+(noun)|Singapore dollar|dollar (generic term)
+singapore island|1
+(noun)|Singapore|Singapore Island|island (generic term)
+singaporean|3
+(adj)|Singaporean|Asian country|Asian nation (related term)|island (related term)
+(adj)|Singaporean|national capital (related term)
+(noun)|Singaporean|Asian (generic term)|Asiatic (generic term)
+singe|3
+(noun)|scorch|burn (generic term)
+(verb)|swinge|char (generic term)|blacken (generic term)|sear (generic term)|scorch (generic term)
+(verb)|scorch|sear|burn (generic term)|combust (generic term)
+singer|3
+(noun)|vocalist|vocalizer|vocaliser|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|Singer|Isaac M. Singer|Isaac Merrit Singer|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+(noun)|Singer|Isaac Bashevis Singer|writer (generic term)|author (generic term)
+singhalese|4
+(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language (related term)
+(adj)|Singhalese|Sinhalese|Asian|Asiatic (related term)
+(noun)|Sinhalese|Singhalese|Asian (generic term)|Asiatic (generic term)
+(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit (generic term)|Sanskritic language (generic term)
+singing|3
+(adj)|cantabile|melodious (similar term)|melodic (similar term)|musical (similar term)
+(noun)|vocalizing|vocal music (generic term)|musical performance (generic term)
+(noun)|tattle|telling|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+singing voice|1
+(noun)|voice (generic term)|vocalization (generic term)|vocalisation (generic term)|vocalism (generic term)|phonation (generic term)|vox (generic term)
+single|10
+(adj)|individual|idiosyncratic (similar term)|individualist (similar term)|individualistic (similar term)|one-on-one (similar term)|man-to-man (similar term)|respective (similar term)|several (similar term)|various (similar term)|singular (similar term)|separate (related term)|common (antonym)
+(adj)|double (antonym)
+(adj)|azygous (similar term)|azygos (similar term)|one-man (similar term)|one-person (similar term)|one-woman (similar term)|lone (similar term)|lonesome (similar term)|only (similar term)|sole (similar term)|solitary (similar term)|singular (similar term)|unique (similar term)|sui generis (similar term)|unary (similar term)|uninominal (similar term)|one-member (similar term)|multiple (antonym)
+(adj)|unmarried|divorced (similar term)|mateless (similar term)|unwed (similar term)|unwedded (similar term)|widowed (similar term)|unmated (related term)|married (antonym)
+(adj)|individual|separate|unshared (similar term)
+(adj)|uniform (similar term)|unvarying (similar term)
+(adj)|undivided|exclusive|concentrated (similar term)
+(noun)|bingle|base hit (generic term)|safety (generic term)
+(noun)|one|1|I|ace|unity|digit (generic term)|figure (generic term)
+(verb)|hit (generic term)
+single-barreled|1
+(adj)|single-barrelled|double-barreled (antonym)
+single-barrelled|1
+(adj)|single-barreled|double-barreled (antonym)
+single-bedded|1
+(adj)|bedded (similar term)
+single-breasted|1
+(adj)|double-breasted (antonym)
+single-breasted jacket|1
+(noun)|jacket (generic term)
+single-breasted suit|1
+(noun)|suit (generic term)|suit of clothes (generic term)
+single-celled|1
+(adj)|one-celled|noncellular (similar term)|acellular (similar term)
+single-channel|1
+(adj)|mono|monophonic|monaural (similar term)
+single-entry bookkeeping|1
+(noun)|single entry|bookkeeping (generic term)|clerking (generic term)
+single-foot|2
+(noun)|rack|gait (generic term)
+(verb)|rack|pace (generic term)
+single-handed|3
+(adj)|unassisted|unbacked|unsupported (similar term)
+(adj)|independent (similar term)
+(adv)|single-handedly
+single-handedly|1
+(adv)|single-handed
+single-humped|1
+(adj)|one-humped|projection (related term)
+single-lane|1
+(adj)|multilane (antonym)
+single-leaf|1
+(noun)|single-leaf pine|single-leaf pinyon|Pinus monophylla|nut pine (generic term)
+single-leaf pine|1
+(noun)|single-leaf|single-leaf pinyon|Pinus monophylla|nut pine (generic term)
+single-leaf pinyon|1
+(noun)|single-leaf|single-leaf pine|Pinus monophylla|nut pine (generic term)
+single-member system|1
+(noun)|uninominal system|uninominal voting system|scrutin uninomial system|scrutin uninominal voting system|voting system (generic term)|electoral system (generic term)
+single-minded|1
+(adj)|resolved|resolute (similar term)
+single-mindedness|1
+(noun)|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+single-propeller plane|1
+(noun)|single prop|propeller plane (generic term)
+single-reed instrument|1
+(noun)|single-reed woodwind|beating-reed instrument (generic term)|reed instrument (generic term)|reed (generic term)
+single-reed woodwind|1
+(noun)|single-reed instrument|beating-reed instrument (generic term)|reed instrument (generic term)|reed (generic term)
+single-rotor helicopter|1
+(noun)|helicopter (generic term)|chopper (generic term)|whirlybird (generic term)|eggbeater (generic term)
+single-seeded|1
+(adj)|one-seeded|one-seed|seedy (similar term)
+single-shelled|1
+(adj)|univalve (similar term)
+single-spaced|1
+(adj)|spaced (similar term)
+single-spacing|1
+(noun)|typing (generic term)|typewriting (generic term)
+single-stranded|1
+(adj)|fiber|fibre (related term)
+single bed|1
+(noun)|bed (generic term)
+single combat|1
+(noun)|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+single cream|1
+(noun)|light cream|coffee cream|cream (generic term)
+single crochet|2
+(noun)|single stitch|crochet stitch (generic term)
+(verb)|single stitch|crochet (generic term)
+single dwelling|1
+(noun)|detached house|house (generic term)
+single entry|1
+(noun)|single-entry bookkeeping|bookkeeping (generic term)|clerking (generic term)
+single file|1
+(noun)|file|Indian file|line (generic term)
+single out|2
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|discriminate|separate|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+single prop|1
+(noun)|single-propeller plane|propeller plane (generic term)
+single quote|1
+(noun)|quotation mark (generic term)|quote (generic term)|inverted comma (generic term)
+single shell|1
+(noun)|racing skiff|shell (generic term)|racing shell (generic term)
+single stitch|2
+(noun)|single crochet|crochet stitch (generic term)
+(verb)|single crochet|crochet (generic term)
+single supplement|1
+(noun)|surcharge (generic term)
+single tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+singleness|2
+(noun)|straightforwardness|sincerity (generic term)
+(noun)|assiduity (generic term)|assiduousness (generic term)|concentration (generic term)
+singles|2
+(noun)|badminton (generic term)
+(noun)|tennis (generic term)|lawn tennis (generic term)
+singlestick|1
+(noun)|fencing stick|backsword|stick (generic term)
+singlet|1
+(noun)|vest|undershirt|undergarment (generic term)|unmentionable (generic term)
+singletary pea|1
+(noun)|Caley pea|rough pea|wild winterpea|Lathyrus hirsutus|wild pea (generic term)
+singleton|3
+(noun)|one (generic term)|1 (generic term)|I (generic term)|ace (generic term)|single (generic term)|unity (generic term)
+(noun)|set (generic term)
+(noun)|playing card (generic term)
+singly|2
+(adv)|multiply (antonym)
+(adv)|individually|separately|severally|one by one|on an individual basis
+singsong|5
+(adj)|chantlike|intoned|rhythmical (similar term)|rhythmic (similar term)
+(noun)|intonation (generic term)|modulation (generic term)|pitch contour (generic term)
+(noun)|singalong|singing (generic term)|vocalizing (generic term)
+(verb)|chant (generic term)|intone (generic term)|intonate (generic term)|cantillate (generic term)
+(verb)|move (generic term)|displace (generic term)
+singular|6
+(adj)|remarkable|extraordinary (similar term)
+(adj)|curious|funny|odd|peculiar|queer|rum|rummy|strange (similar term)|unusual (similar term)
+(adj)|individual (similar term)|single (similar term)
+(adj)|plural (antonym)
+(adj)|unique|single (similar term)
+(noun)|singular form|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)|plural (antonym)
+singular form|1
+(noun)|singular|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)|plural (antonym)
+singular matrix|1
+(noun)|square matrix (generic term)|nonsingular matrix (antonym)
+singularise|1
+(verb)|singularize|signalize (generic term)|signalise (generic term)|distinguish (generic term)
+singularity|2
+(noun)|uniqueness|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|unfamiliarity (generic term)|strangeness (generic term)
+singularize|1
+(verb)|singularise|signalize (generic term)|signalise (generic term)|distinguish (generic term)
+singultus|1
+(noun)|hiccup|hiccough|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+sinhala|2
+(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language (related term)
+(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit (generic term)|Sanskritic language (generic term)
+sinhalese|4
+(adj)|Sinhala|Singhalese|Sinhalese|Sanskrit|Sanskritic language (related term)
+(adj)|Singhalese|Sinhalese|Asian|Asiatic (related term)
+(noun)|Sinhalese|Singhalese|Asian (generic term)|Asiatic (generic term)
+(noun)|Sinhalese|Singhalese|Sinhala|Sanskrit (generic term)|Sanskritic language (generic term)
+sinister|3
+(adj)|baleful|forbidding|menacing|minacious|minatory|ominous|threatening|alarming (similar term)
+(adj)|black|dark|evil (similar term)
+(adj)|sinistral (similar term)
+sinistral|2
+(adj)|sinister (similar term)|sinistrorse (similar term)|sinistrorsal (similar term)|counterclockwise (related term)|anticlockwise (related term)|contraclockwise (related term)|left-handed (related term)|dextral (antonym)
+(adj)|left-handed (similar term)
+sinistrality|1
+(noun)|left-handedness|handedness (generic term)|laterality (generic term)
+sinistrorsal|1
+(adj)|sinistrorse|sinistral (similar term)
+sinistrorse|1
+(adj)|sinistrorsal|sinistral (similar term)
+sinitic|2
+(adj)|Sinitic|Asian|Asiatic (related term)
+(noun)|Sinitic|Sinitic language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+sinitic language|1
+(noun)|Sinitic|Sinitic language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+sink|13
+(noun)|plumbing fixture (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)|source (antonym)
+(noun)|sinkhole|swallow hole|natural depression (generic term)|depression (generic term)
+(noun)|cesspool|cesspit|sump|cistern (generic term)
+(verb)|drop|drop down|change posture (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|pass|lapse|move (generic term)
+(verb)|settle|go down|go under|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)|sink in (related term)|float (antonym)
+(verb)|subside|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|dip|decline (generic term)
+(verb)|slump|fall off|drop (generic term)
+(verb)|slump|slide down|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|bury|implant (generic term)|engraft (generic term)|embed (generic term)|imbed (generic term)|plant (generic term)
+sink in|2
+(verb)|click|get through|dawn|come home|get across|penetrate|fall into place
+(verb)|percolate|permeate|filter|penetrate (generic term)|perforate (generic term)
+sinkable|1
+(adj)|unsinkable (antonym)
+sinker|3
+(noun)|doughnut|donut|friedcake (generic term)
+(noun)|weight (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+sinkhole|1
+(noun)|sink|swallow hole|natural depression (generic term)|depression (generic term)
+sinkiang|1
+(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state (generic term)|province (generic term)
+sinking|3
+(noun)|descent (generic term)
+(noun)|decrease (generic term)|lessening (generic term)|drop-off (generic term)
+(noun)|sinking feeling|anxiety (generic term)
+sinking feeling|1
+(noun)|sinking|anxiety (generic term)
+sinking fund|1
+(noun)|fund (generic term)|monetary fund (generic term)
+sinking spell|1
+(noun)|decline (generic term)|diminution (generic term)
+sinless|1
+(adj)|impeccant|innocent|virtuous (similar term)
+sinlessness|1
+(noun)|purity|pureness|innocence|whiteness|condition (generic term)|status (generic term)
+sinn fein|1
+(noun)|Sinn Fein|political movement (generic term)
+sinner|1
+(noun)|evildoer|wrongdoer (generic term)|offender (generic term)
+sinning|2
+(adj)|offending (similar term)
+(noun)|sin|transgression (generic term)|evildoing (generic term)
+sinningia|1
+(noun)|Sinningia|genus Sinningia|asterid dicot genus (generic term)
+sinningia speciosa|1
+(noun)|florist's gloxinia|Sinningia speciosa|Gloxinia spesiosa|gloxinia (generic term)
+sino-japanese war|1
+(noun)|Chino-Japanese War|Sino-Japanese War|war (generic term)|warfare (generic term)
+sino-tibetan|1
+(noun)|Sino-Tibetan|Sino-Tibetan language|natural language (generic term)|tongue (generic term)
+sino-tibetan language|1
+(noun)|Sino-Tibetan|Sino-Tibetan language|natural language (generic term)|tongue (generic term)
+sinoatrial node|1
+(noun)|pacemaker|cardiac pacemaker|SA node|cardiac muscle (generic term)|heart muscle (generic term)
+sinologist|1
+(noun)|Sinologist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+sinology|1
+(noun)|Sinology|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+sinoper|1
+(noun)|sinopis|sinopia|ocher (generic term)|ochre (generic term)
+sinopia|1
+(noun)|sinopis|sinoper|ocher (generic term)|ochre (generic term)
+sinopis|1
+(noun)|sinopia|sinoper|ocher (generic term)|ochre (generic term)
+sinornis|1
+(noun)|Sinornis|bird (generic term)
+sinter|1
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+sinuate|2
+(adj)|sinuous|wiggly|curved (similar term)|curving (similar term)
+(adj)|smooth (similar term)
+sinuosity|1
+(noun)|sinuousness|curve (generic term)|curved shape (generic term)
+sinuous|1
+(adj)|sinuate|wiggly|curved (similar term)|curving (similar term)
+sinuousness|1
+(noun)|sinuosity|curve (generic term)|curved shape (generic term)
+sinus|3
+(noun)|fistula|passage (generic term)|passageway (generic term)
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|venous sinus|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+sinus cavernosus|1
+(noun)|cavernous sinus|venous sinus (generic term)|sinus (generic term)
+sinus coronarius|1
+(noun)|coronary sinus|venous sinus (generic term)|sinus (generic term)
+sinus ethmoidales|1
+(noun)|ethmoid sinus|ethmoidal sinus|sinus (generic term)
+sinus headache|1
+(noun)|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+sinus paranasales|1
+(noun)|paranasal sinus|nasal sinus|sinus (generic term)
+sinus rectus|1
+(noun)|straight sinus|tentorial sinus|venous sinus (generic term)|sinus (generic term)
+sinus sigmoideus|1
+(noun)|sigmoid sinus|venous sinus (generic term)|sinus (generic term)
+sinus transversus|1
+(noun)|transverse sinus|venous sinus (generic term)|sinus (generic term)
+sinus venosus sclerae|1
+(noun)|canal of Schlemm|Schlemm's canal|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+sinusitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+sinusoid|2
+(noun)|passage (generic term)|passageway (generic term)
+(noun)|sine curve|wave (generic term)|undulation (generic term)
+sinusoidal|1
+(adj)|curved (similar term)|curving (similar term)
+sinusoidal projection|1
+(noun)|Sanson-Flamsteed projection|equal-area projection (generic term)|equal-area map projection (generic term)
+sion|3
+(noun)|Zion|Sion|hill (generic term)
+(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country (generic term)|state (generic term)|land (generic term)
+(noun)|Utopia|Zion|Sion|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+siouan|3
+(adj)|Siouan|Plains Indian|Buffalo Indian (related term)|Amerind|Amerindian language|American-Indian language|American Indian|Indian (related term)
+(noun)|Sioux|Siouan|Plains Indian (generic term)|Buffalo Indian (generic term)
+(noun)|Siouan|Siouan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+siouan-speaking|1
+(adj)|Siouan-speaking|communicative (similar term)|communicatory (similar term)
+siouan language|1
+(noun)|Siouan|Siouan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+sioux|1
+(noun)|Sioux|Siouan|Plains Indian (generic term)|Buffalo Indian (generic term)
+sioux city|1
+(noun)|Sioux City|city (generic term)|metropolis (generic term)|urban center (generic term)
+sioux falls|1
+(noun)|Sioux Falls|city (generic term)|metropolis (generic term)|urban center (generic term)
+sip|2
+(noun)|swallow (generic term)|drink (generic term)|deglutition (generic term)
+(verb)|drink (generic term)|imbibe (generic term)
+sipah-e-sahaba|1
+(noun)|Sipah-e-Sahaba|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+siphon|4
+(noun)|syphon|tube (generic term)|tubing (generic term)
+(noun)|syphon|organ (generic term)
+(verb)|syphon|siphon off|draw (generic term)|take out (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+siphon off|1
+(verb)|siphon|syphon|draw (generic term)|take out (generic term)
+siphonaptera|1
+(noun)|Siphonaptera|order Siphonaptera|animal order (generic term)
+siphonophora|1
+(noun)|Siphonophora|order Siphonophora|animal order (generic term)
+siphonophore|1
+(noun)|hydrozoan (generic term)|hydroid (generic term)
+sipper|1
+(noun)|drinker (generic term)
+sipuncula|1
+(noun)|Sipuncula|phylum Sipuncula|phylum (generic term)
+sipunculid|1
+(noun)|peanut worm|invertebrate (generic term)
+siqueiros|1
+(noun)|Siqueiros|David Siqueiros|David Alfaro Siqueiros|painter (generic term)
+sir|2
+(noun)|man (generic term)|adult male (generic term)
+(noun)|Sir|male aristocrat (generic term)
+sir alan lloyd hodgkin|1
+(noun)|Hodgkin|Alan Hodgkin|Sir Alan Lloyd Hodgkin|physiologist (generic term)
+sir alec guinness|1
+(noun)|Guinness|Alec Guinness|Sir Alec Guinness|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir alexander fleming|1
+(noun)|Fleming|Alexander Fleming|Sir Alexander Fleming|bacteriologist (generic term)
+sir alexander korda|1
+(noun)|Korda|Sir Alexander Korda|Sandor Kellner|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sir alexander mackenzie|1
+(noun)|Mackenzie|Sir Alexander Mackenzie|explorer (generic term)|adventurer (generic term)
+sir alexander robertus todd|1
+(noun)|Todd|Sir Alexander Robertus Todd|chemist (generic term)
+sir alfred charles bernard lovell|1
+(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir alfred hitchcock|1
+(noun)|Hitchcock|Alfred Hitchcock|Sir Alfred Hitchcock|Alfred Joseph Hitchcock|film director (generic term)|director (generic term)
+sir angus wilson|1
+(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer (generic term)|author (generic term)
+sir anthony hopkins|1
+(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir anthony philip hopkins|1
+(noun)|Hopkins|Anthony Hopkins|Sir Anthony Hopkins|Sir Anthony Philip Hopkins|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir anthony vandyke|1
+(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master (generic term)
+sir arthur conan doyle|1
+(noun)|Conan Doyle|A. Conan Doyle|Arthur Conan Doyle|Sir Arthur Conan Doyle|writer (generic term)|author (generic term)
+sir arthur john evans|1
+(noun)|Evans|Arthur Evans|Sir Arthur John Evans|archeologist (generic term)|archaeologist (generic term)
+sir arthur stanley eddington|1
+(noun)|Eddington|Sir Arthur Stanley Eddington|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir arthur sullivan|1
+(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer (generic term)
+sir arthur travers harris|1
+(noun)|Harris|Bomber Harris|Sir Arthur Travers Harris|general (generic term)|full general (generic term)|marshal (generic term)|marshall (generic term)
+sir barton|1
+(noun)|Sir Barton|thoroughbred (generic term)
+sir bernanrd williams|1
+(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher (generic term)
+sir bernard law montgomery|1
+(noun)|Montgomery|Bernard Law Montgomery|Sir Bernard Law Montgomery|1st Viscount Montgomery of Alamein|general (generic term)|full general (generic term)
+sir bernard lovell|1
+(noun)|Lovell|Sir Bernard Lovell|Sir Alfred Charles Bernard Lovell|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir charles leonard woolley|1
+(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist (generic term)|archaeologist (generic term)
+sir charles scott sherrington|1
+(noun)|Sherrington|Sir Charles Scott Sherrington|physiologist (generic term)
+sir charles spencer chaplin|1
+(noun)|Chaplin|Charlie Chaplin|Sir Charles Spencer Chaplin|comedian (generic term)|comic (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sir charles wheatstone|1
+(noun)|Wheatstone|Sir Charles Wheatstone|physicist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+sir charles william siemens|1
+(noun)|Siemens|Karl Wilhelm Siemens|Sir Charles William Siemens|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+sir christopher wren|1
+(noun)|Wren|Sir Christopher Wren|architect (generic term)|designer (generic term)
+sir clive marles sinclair|1
+(noun)|Sinclair|Clive Sinclair|Sir Clive Marles Sinclair|electrical engineer (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+sir david alexander cecil low|1
+(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist (generic term)
+sir david bruce|1
+(noun)|Bruce|David Bruce|Sir David Bruce|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|bacteriologist (generic term)
+sir david low|1
+(noun)|Low|David Low|Sir David Low|Sir David Alexander Cecil Low|cartoonist (generic term)
+sir edmund hillary|1
+(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer (generic term)|mountain climber (generic term)
+sir edmund percival hillary|1
+(noun)|Hillary|Edmund Hillary|Sir Edmund Hillary|Sir Edmund Percival Hillary|mountaineer (generic term)|mountain climber (generic term)
+sir edward elgar|1
+(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer (generic term)
+sir edward victor appleton|1
+(noun)|Appleton|Edward Appleton|Sir Edward Victor Appleton|physicist (generic term)
+sir edward william elgar|1
+(noun)|Elgar|Sir Edward Elgar|Sir Edward William Elgar|composer (generic term)
+sir edwin landseer luytens|1
+(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect (generic term)|designer (generic term)
+sir edwin lutyens|1
+(noun)|Lutyens|Sir Edwin Lutyens|Sir Edwin Landseer Luytens|architect (generic term)|designer (generic term)
+sir ernst boris chain|1
+(noun)|Chain|Ernst Boris Chain|Sir Ernst Boris Chain|biochemist (generic term)
+sir francis bacon|1
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+sir francis drake|1
+(noun)|Drake|Francis Drake|Sir Francis Drake|navigator (generic term)|admiral (generic term)|full admiral (generic term)
+sir francis galton|1
+(noun)|Galton|Francis Galton|Sir Francis Galton|scientist (generic term)|man of science (generic term)
+sir frank whittle|1
+(noun)|Whittle|Frank Whittle|Sir Frank Whittle|aeronautical engineer (generic term)
+sir fred hoyle|1
+(noun)|Hoyle|Fred Hoyle|Sir Fred Hoyle|astrophysicist (generic term)
+sir frederick ashton|1
+(noun)|Ashton|Sir Frederick Ashton|choreographer (generic term)
+sir frederick gowland hopkins|1
+(noun)|Hopkins|Sir Frederick Gowland Hopkins|biochemist (generic term)
+sir frederick grant banting|1
+(noun)|Banting|F. G. Banting|Sir Frederick Grant Banting|physiologist (generic term)
+sir frederick william herschel|1
+(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir galahad|1
+(noun)|Galahad|Sir Galahad|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sir gawain|1
+(noun)|Gawain|Sir Gawain|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sir geoffrey wilkinson|1
+(noun)|Wilkinson|Sir Geoffrey Wilkinson|chemist (generic term)
+sir george otto trevelyan|1
+(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian (generic term)|historiographer (generic term)
+sir george paget thomson|1
+(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist (generic term)
+sir geraint|1
+(noun)|Geraint|Sir Geraint|knight (generic term)
+sir hans adolf krebs|1
+(noun)|Krebs|Hans Adolf Krebs|Sir Hans Adolf Krebs|biochemist (generic term)
+sir harold george nicolson|1
+(noun)|Nicolson|Harold Nicolson|Sir Harold George Nicolson|diplomat (generic term)|diplomatist (generic term)|writer (generic term)|author (generic term)
+sir harold walter kroto|1
+(noun)|Kroto|Harold Kroto|Harold W. Kroto|Sir Harold Walter Kroto|chemist (generic term)
+sir harry maclennan lauder|1
+(noun)|Lauder|Harry Lauder|Sir Harry MacLennan Lauder|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|comedian (generic term)|comic (generic term)
+sir henry bessemer|1
+(noun)|Bessemer|Sir Henry Bessemer|metallurgist (generic term)|metallurgical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+sir henry joseph wood|1
+(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor (generic term)|music director (generic term)|director (generic term)
+sir henry maxmilian beerbohm|1
+(noun)|Beerbohm|Max Beerbohm|Sir Henry Maxmilian Beerbohm|writer (generic term)|author (generic term)|caricaturist (generic term)
+sir henry morgan|1
+(noun)|Morgan|Henry Morgan|Sir Henry Morgan|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+sir henry morton stanley|1
+(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist (generic term)|explorer (generic term)|adventurer (generic term)
+sir henry percy|1
+(noun)|Percy|Sir Henry Percy|Hotspur|Harry Hotspur|soldier (generic term)
+sir henry rider haggard|1
+(noun)|Haggard|Rider Haggard|Sir Henry Rider Haggard|writer (generic term)|author (generic term)
+sir henry wood|1
+(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor (generic term)|music director (generic term)|director (generic term)
+sir herbert beerbohm tree|1
+(noun)|Tree|Sir Herbert Beerbohm Tree|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|theatrical producer (generic term)
+sir hiram stevens maxim|1
+(noun)|Maxim|Sir Hiram Stevens Maxim|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+sir howard walter florey|1
+(noun)|Florey|Howard Florey|Sir Howard Walter Florey|diagnostician (generic term)|pathologist (generic term)
+sir humphrey davy|1
+(noun)|Davy|Humphrey Davy|Sir Humphrey Davy|chemist (generic term)
+sir humphrey gilbert|1
+(noun)|Gilbert|Humphrey Gilbert|Sir Humphrey Gilbert|navigator (generic term)
+sir isaac newton|1
+(noun)|Newton|Isaac Newton|Sir Isaac Newton|mathematician (generic term)|physicist (generic term)
+sir isaac pitman|1
+(noun)|Pitman|Sir Isaac Pitman|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+sir jack hobbs|1
+(noun)|Hobbs|Sir Jack Hobbs|John Berry Hobbs|cricketer (generic term)
+sir jacob epstein|1
+(noun)|Epstein|Jacob Epstein|Sir Jacob Epstein|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+sir james clark ross|1
+(noun)|Ross|James Clark Ross|Sir James Clark Ross|explorer (generic term)|adventurer (generic term)
+sir james dewar|1
+(noun)|Dewar|Sir James Dewar|chemist (generic term)|physicist (generic term)
+sir james george frazer|1
+(noun)|Frazer|James George Frazer|Sir James George Frazer|anthropologist (generic term)
+sir james matthew barrie|1
+(noun)|Barrie|James Barrie|J. M. Barrie|James Matthew Barrie|Sir James Matthew Barrie|dramatist (generic term)|playwright (generic term)
+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 (generic term)|philologue (generic term)|lexicographer (generic term)|lexicologist (generic term)
+sir james paget|1
+(noun)|Paget|Sir James Paget|diagnostician (generic term)|pathologist (generic term)
+sir james paul mccartney|1
+(noun)|McCartney|Paul McCartney|Sir James Paul McCartney|rock star (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+sir james young simpson|1
+(noun)|Simpson|Sir James Young Simpson|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+sir john carew eccles|1
+(noun)|Eccles|John Eccles|Sir John Carew Eccles|physiologist (generic term)
+sir john cockcroft|1
+(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist (generic term)
+sir john cowdery kendrew|1
+(noun)|Kendrew|Sir John Cowdery Kendrew|biologist (generic term)|life scientist (generic term)
+sir john douglas cockcroft|1
+(noun)|Cockcroft|Sir John Cockcroft|Sir John Douglas Cockcroft|nuclear physicist (generic term)
+sir john everett millais|1
+(noun)|Millais|Sir John Everett Millais|Pre-Raphaelite (generic term)
+sir john falstaff|1
+(noun)|Falstaff|Sir John Falstaff|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sir john frederick william herschel|1
+(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir john gielgud|1
+(noun)|Gielgud|Sir John Gielgud|Arthur John Gielgud|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir john hawkins|1
+(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer (generic term)|privateersman (generic term)
+sir john hawkyns|1
+(noun)|Hawkins|Hawkyns|Sir John Hawkins|Sir John Hawkyns|privateer (generic term)|privateersman (generic term)
+sir john herschel|1
+(noun)|Herschel|John Herschel|Sir John Herschel|Sir John Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir john ross|1
+(noun)|Ross|John Ross|Sir John Ross|explorer (generic term)|adventurer (generic term)
+sir john suckling|1
+(noun)|Suckling|Sir John Suckling|poet (generic term)|courtier (generic term)
+sir john tenniel|1
+(noun)|Tenniel|Sir John Tenniel|cartoonist (generic term)
+sir john vanbrigh|1
+(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect (generic term)|designer (generic term)
+sir joseph banks|1
+(noun)|Banks|Sir Joseph Banks|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+sir joseph john thomson|1
+(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist (generic term)
+sir joseph paxton|1
+(noun)|Paxton|Joseph Paxton|Sir Joseph Paxton|architect (generic term)|designer (generic term)
+sir joshua reynolds|1
+(noun)|Reynolds|Sir Joshua Reynolds|painter (generic term)
+sir lancelot|1
+(noun)|Lancelot|Sir Lancelot|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sir laurence kerr olivier|1
+(noun)|Olivier|Laurence Olivier|Sir Laurence Kerr Olivier|Baron Olivier of Birghton|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir leonard hutton|1
+(noun)|Hutton|Sir Leonard Hutton|cricketer (generic term)
+sir leonard woolley|1
+(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist (generic term)|archaeologist (generic term)
+sir leslie stephen|1
+(noun)|Stephen|Sir Leslie Stephen|writer (generic term)|author (generic term)
+sir martin frobisher|1
+(noun)|Frobisher|Sir Martin Frobisher|explorer (generic term)|adventurer (generic term)|navigator (generic term)
+sir matthew flinders|1
+(noun)|Flinders|Matthew Flinders|Sir Matthew Flinders|explorer (generic term)|adventurer (generic term)
+sir mortimer wheeler|1
+(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist (generic term)|archaeologist (generic term)
+sir noel pierce coward|1
+(noun)|Coward|Noel Coward|Sir Noel Pierce Coward|dramatist (generic term)|playwright (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|composer (generic term)
+sir oliver joseph lodge|1
+(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist (generic term)
+sir oliver lodge|1
+(noun)|Lodge|Sir Oliver Lodge|Sir Oliver Joseph Lodge|physicist (generic term)
+sir patrick manson|1
+(noun)|Manson|Sir Patrick Manson|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+sir paul gavrilovich vinogradoff|1
+(noun)|Vinogradoff|Sir Paul Gavrilovich Vinogradoff|historian (generic term)|historiographer (generic term)
+sir peter brian medawar|1
+(noun)|Medawar|Peter Medawar|Sir Peter Brian Medawar|immunologist (generic term)
+sir peter paul rubens|1
+(noun)|Rubens|Peter Paul Rubens|Sir Peter Paul Rubens|old master (generic term)
+sir peter ustinov|1
+(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|dramatist (generic term)|playwright (generic term)
+sir philip sidney|1
+(noun)|Sidney|Sir Philip Sidney|poet (generic term)
+sir rabindranath tagore|1
+(noun)|Tagore|Rabindranath Tagore|Sir Rabindranath Tagore|writer (generic term)|author (generic term)|philosopher (generic term)
+sir ralph david richardson|1
+(noun)|Richardson|Ralph Richardson|Sir Ralph David Richardson|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir rex harrison|1
+(noun)|Harrison|Rex Harrison|Sir Rex Harrison|Reginald Carey Harrison|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+sir richard burton|1
+(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer (generic term)|adventurer (generic term)
+sir richard francis burton|1
+(noun)|Burton|Richard Burton|Sir Richard Burton|Sir Richard Francis Burton|explorer (generic term)|adventurer (generic term)
+sir richard owen|1
+(noun)|Owen|Sir Richard Owen|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|comparative anatomist (generic term)
+sir richrd steele|1
+(noun)|Steele|Sir Richrd Steele|writer (generic term)|author (generic term)
+sir robert eric mortimer wheeler|1
+(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist (generic term)|archaeologist (generic term)
+sir robert peel|1
+(noun)|Peel|Robert Peel|Sir Robert Peel|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+sir robert robinson|1
+(noun)|Robinson|Robert Robinson|Sir Robert Robinson|chemist (generic term)
+sir robert walpole|1
+(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman (generic term)|solon (generic term)|national leader (generic term)
+sir roger gilbert bannister|1
+(noun)|Bannister|Roger Bannister|Sir Roger Gilbert Bannister|four-minute man (generic term)
+sir ronald ross|1
+(noun)|Ross|Sir Ronald Ross|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+sir sarvepalli radhakrishnan|1
+(noun)|Radhakrishnan|Sarvepalli Radhakrishnan|Sir Sarvepalli Radhakrishnan|philosopher (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+sir seretse khama|1
+(noun)|Khama|Sir Seretse Khama|statesman (generic term)|solon (generic term)|national leader (generic term)
+sir stephen harold spender|1
+(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet (generic term)|literary critic (generic term)
+sir terence mervyn rattigan|1
+(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist (generic term)|playwright (generic term)
+sir thomas gresham|1
+(noun)|Gresham|Sir Thomas Gresham|financier (generic term)|moneyman (generic term)
+sir thomas lawrence|1
+(noun)|Lawrence|Sir Thomas Lawrence|painter (generic term)
+sir thomas malory|1
+(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer (generic term)|author (generic term)
+sir thomas more|1
+(noun)|More|Thomas More|Sir Thomas More|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+sir thomas raffles|1
+(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator (generic term)|executive (generic term)
+sir thomas stamford raffles|1
+(noun)|Raffles|Sir Thomas Raffles|Sir Thomas Stamford Raffles|administrator (generic term)|executive (generic term)
+sir thomas wyat|1
+(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet (generic term)
+sir thomas wyatt|1
+(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet (generic term)
+sir tim rice|1
+(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist (generic term)|lyrist (generic term)
+sir tom stoppard|1
+(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist (generic term)|playwright (generic term)
+sir walter norman haworth|1
+(noun)|Haworth|Sir Walter Norman Haworth|biochemist (generic term)
+sir walter ralegh|1
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+sir walter raleigh|1
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+sir walter scott|1
+(noun)|Scott|Walter Scott|Sir Walter Scott|writer (generic term)|author (generic term)
+sir william alexander craigie|1
+(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer (generic term)|lexicologist (generic term)
+sir william chambers|1
+(noun)|Chambers|William Chambers|Sir William Chambers|architect (generic term)|designer (generic term)
+sir william crookes|1
+(noun)|Crookes|William Crookes|Sir William Crookes|chemist (generic term)|physicist (generic term)
+sir william gerald golding|1
+(noun)|Golding|William Golding|Sir William Gerald Golding|writer (generic term)|author (generic term)
+sir william gilbert|1
+(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist (generic term)|poet (generic term)
+sir william herschel|1
+(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir william huggins|1
+(noun)|Huggins|Sir William Huggins|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+sir william rowan hamilton|1
+(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician (generic term)
+sir william turner walton|1
+(noun)|Walton|William Walton|Sir William Walton|Sir William Turner Walton|composer (generic term)
+sir william wallace|1
+(noun)|Wallace|Sir William Wallace|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+sir william walton|1
+(noun)|Walton|William Walton|Sir William Walton|Sir William Turner Walton|composer (generic term)
+sir winston leonard spenser churchill|1
+(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+sir yehudi menuhin|1
+(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist (generic term)|fiddler (generic term)
+sirach|1
+(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book (generic term)
+siracusa|1
+(noun)|Syracuse|Siracusa|city (generic term)|metropolis (generic term)|urban center (generic term)
+siraj-ud-daula|1
+(noun)|Siraj-ud-daula|general (generic term)|full general (generic term)
+sirc|1
+(noun)|Security Intelligence Review Committee|SIRC|international intelligence agency (generic term)
+sirdar|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+sire|4
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|forefather|father|ancestor (generic term)|ascendant (generic term)|ascendent (generic term)|antecedent (generic term)|root (generic term)
+(noun)|male (generic term)
+(verb)|beget|get|engender|father|mother|generate|bring forth|make (generic term)|create (generic term)
+siren|5
+(noun)|Siren|sea nymph (generic term)
+(noun)|enchantress|temptress|Delilah|femme fatale|woman (generic term)|adult female (generic term)
+(noun)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|acoustic device (generic term)|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+(noun)|salamander (generic term)
+siren call|1
+(noun)|siren song|appeal (generic term)|appealingness (generic term)|charm (generic term)
+siren song|1
+(noun)|siren call|appeal (generic term)|appealingness (generic term)|charm (generic term)
+sirenia|1
+(noun)|Sirenia|order Sirenia|animal order (generic term)
+sirenian|1
+(noun)|sea cow|sirenian mammal|aquatic mammal (generic term)
+sirenian mammal|1
+(noun)|sea cow|sirenian|aquatic mammal (generic term)
+sirenidae|1
+(noun)|Sirenidae|family Sirenidae|amphibian family (generic term)
+siriasis|1
+(noun)|sunstroke|insolation|thermic fever|heatstroke (generic term)|heat hyperpyrexia (generic term)
+siris|1
+(noun)|siris tree|Albizia lebbeck|Albizzia lebbeck|albizzia (generic term)|albizia (generic term)
+siris tree|1
+(noun)|siris|Albizia lebbeck|Albizzia lebbeck|albizzia (generic term)|albizia (generic term)
+sirius|1
+(noun)|Sirius|Dog Star|Canicula|Sothis|binary star (generic term)|binary (generic term)|double star (generic term)
+sirloin|1
+(noun)|cut (generic term)|cut of meat (generic term)
+sirloin steak|1
+(noun)|beefsteak (generic term)
+sirloin tip|1
+(noun)|cut of beef (generic term)
+sirocco|1
+(noun)|dust storm|duster|sandstorm|windstorm (generic term)
+sirrah|1
+(noun)|male (generic term)|male person (generic term)
+sirup|1
+(noun)|syrup|sweetening (generic term)|sweetener (generic term)
+sis|1
+(noun)|sister|female sibling (generic term)|brother (antonym)
+sisal|2
+(noun)|sisal hemp|plant fiber (generic term)|plant fibre (generic term)
+(noun)|Agave sisalana|agave (generic term)|century plant (generic term)|American aloe (generic term)
+sisal family|1
+(noun)|Agavaceae|family Agavaceae|agave family|liliid monocot family (generic term)
+sisal hemp|1
+(noun)|sisal|plant fiber (generic term)|plant fibre (generic term)
+sise|1
+(noun)|six|6|VI|sixer|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+sisham|1
+(noun)|sissoo|sissu|Dalbergia sissoo|tree (generic term)
+siskin|1
+(noun)|Carduelis spinus|finch (generic term)
+siskin-like|1
+(adj)|animal (similar term)
+siskiyou lewisia|1
+(noun)|Lewisia cotyledon|wildflower (generic term)|wild flower (generic term)
+sison|1
+(noun)|Sison|genus Sison|rosid dicot genus (generic term)
+sison amomum|1
+(noun)|stone parsley|Sison amomum|herb (generic term)|herbaceous plant (generic term)
+siss|2
+(verb)|hiss|sizz|sibilate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|hiss|sizz|sibilate|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+sissified|1
+(adj)|effeminate|emasculate|epicene|cissy|sissyish|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+sissiness|1
+(noun)|effeminacy|effeminateness|softness|womanishness|unmanliness|femininity (generic term)|muliebrity (generic term)
+sissoo|1
+(noun)|sissu|sisham|Dalbergia sissoo|tree (generic term)
+sissu|1
+(noun)|sissoo|sisham|Dalbergia sissoo|tree (generic term)
+sissy|2
+(adj)|effeminate|emasculate|epicene|cissy|sissified|sissyish|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+(noun)|pantywaist|pansy|milksop|Milquetoast|coward (generic term)
+sissyish|1
+(adj)|effeminate|emasculate|epicene|cissy|sissified|sissy|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+sister|4
+(noun)|sis|female sibling (generic term)|brother (antonym)
+(noun)|Sister|nun (generic term)
+(noun)|member (generic term)
+(noun)|baby|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+sister-in-law|1
+(noun)|in-law (generic term)|relative-in-law (generic term)
+sister ship|1
+(noun)|ship (generic term)
+sisterhood|3
+(noun)|sistership|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|sistership|association (generic term)
+(noun)|sect (generic term)|religious sect (generic term)|religious order (generic term)
+sisterlike|1
+(adj)|sisterly|sororal|brotherly (antonym)
+sisterly|1
+(adj)|sisterlike|sororal|brotherly (antonym)
+sistership|2
+(noun)|sisterhood|kinship (generic term)|family relationship (generic term)|relationship (generic term)
+(noun)|sisterhood|association (generic term)
+sistine chapel|1
+(noun)|Sistine Chapel|chapel (generic term)
+sistrurus|1
+(noun)|Sistrurus|genus Sistrurus|reptile genus (generic term)
+sistrurus catenatus|1
+(noun)|massasauga|massasauga rattler|Sistrurus catenatus|rattlesnake (generic term)|rattler (generic term)
+sistrurus miliaris|1
+(noun)|ground rattler|massasauga|Sistrurus miliaris|rattlesnake (generic term)|rattler (generic term)
+sisymbrium barbarea|1
+(noun)|yellow rocket|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed (generic term)
+sisymbrium officinale|1
+(noun)|hedge mustard|Sisymbrium officinale|herb (generic term)|herbaceous plant (generic term)
+sisymbrium tanacetifolia|1
+(noun)|tansy-leaved rocket|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb (generic term)|herbaceous plant (generic term)
+sisyphean|2
+(adj)|Sisyphean|mythical being (related term)
+(adj)|Sisyphean|effortful (similar term)
+sisyphus|1
+(noun)|Sisyphus|mythical being (generic term)
+sisyridae|1
+(noun)|Sisyridae|family Sisyridae|arthropod family (generic term)
+sisyrinchium|1
+(noun)|Sisyrinchium|genus Sisyrinchium|liliid monocot genus (generic term)
+sit|8
+(verb)|sit down|sit out (related term)|sit down (related term)|stand (antonym)|lie (antonym)
+(verb)|be (generic term)
+(verb)|sit down|change posture (generic term)|arise (antonym)
+(verb)|convene (generic term)
+(verb)|model|pose|posture|expose (generic term)|exhibit (generic term)|display (generic term)
+(verb)|ride|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|baby-sit|guard (generic term)
+(verb)|seat|sit down|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+sit-down|1
+(noun)|sit-down strike|strike (generic term)|work stoppage (generic term)
+sit-down strike|1
+(noun)|sit-down|strike (generic term)|work stoppage (generic term)
+sit-in|1
+(noun)|civil disobedience (generic term)
+sit-up|1
+(noun)|stomach exercise (generic term)|tummy crunch (generic term)
+sit back|2
+(verb)|take it easy|relax (generic term)|loosen up (generic term)|unbend (generic term)|unwind (generic term)|decompress (generic term)|slow down (generic term)
+(verb)|sit by|watch (generic term)|look on (generic term)
+sit by|1
+(verb)|sit back|watch (generic term)|look on (generic term)
+sit down|3
+(verb)|sit|change posture (generic term)|arise (antonym)
+(verb)|seat|sit|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|sit|sit out (related term)|sit down (related term)|stand (antonym)|lie (antonym)
+sit in|2
+(verb)|attend (generic term)|go to (generic term)
+(verb)|disobey (generic term)
+sit out|2
+(verb)|refrain (generic term)|forbear (generic term)
+(verb)|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+sit tight|1
+(verb)|stay (generic term)|remain (generic term)|rest (generic term)
+sit up|2
+(verb)|stay up|wake (generic term)
+(verb)|change posture (generic term)
+sita|1
+(noun)|Sita|mythical being (generic term)
+sitar|1
+(noun)|stringed instrument (generic term)
+sitar player|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+sitcom|2
+(noun)|situation comedy|comedy (generic term)
+(noun)|situation comedy|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+site|4
+(noun)|land site|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|situation|position (generic term)|place (generic term)
+(noun)|web site|website|internet site|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+(verb)|locate|place|station (generic term)|post (generic term)|base (generic term)|send (generic term)|place (generic term)
+site visit|1
+(noun)|visit (generic term)
+sitka|1
+(noun)|Sitka|town (generic term)
+sitka spruce|1
+(noun)|Sitka spruce|Picea sitchensis|spruce (generic term)
+sitka willow|1
+(noun)|Sitka willow|silky willow|Salix sitchensis|willow (generic term)|willow tree (generic term)
+sitophylus|1
+(noun)|Sitophylus|genus Sitophylus|arthropod genus (generic term)
+sitophylus oryzae|1
+(noun)|rice weevil|black weevil|Sitophylus oryzae|weevil (generic term)
+sitotroga|1
+(noun)|Sitotroga|genus Sitotroga|arthropod genus (generic term)
+sitotroga cerealella|1
+(noun)|angoumois moth|angoumois grain moth|Sitotroga cerealella|grain moth (generic term)
+sitsang|1
+(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country (generic term)|Asian nation (generic term)
+sitta|1
+(noun)|Sitta|genus Sitta|bird genus (generic term)
+sitta canadensis|1
+(noun)|red-breasted nuthatch|Sitta canadensis|nuthatch (generic term)|nutcracker (generic term)
+sitta carolinensis|1
+(noun)|white-breasted nuthatch|Sitta carolinensis|nuthatch (generic term)|nutcracker (generic term)
+sitta europaea|1
+(noun)|European nuthatch|Sitta europaea|nuthatch (generic term)|nutcracker (generic term)
+sitter|5
+(noun)|Sitter|Willem de Sitter|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+(noun)|organism (generic term)|being (generic term)|stander (antonym)
+(noun)|babysitter|baby-sitter|keeper (generic term)
+(noun)|artist's model|model (generic term)|poser (generic term)
+(noun)|brood hen|broody|broody hen|setting hen|hen (generic term)|biddy (generic term)
+sittidae|1
+(noun)|Sittidae|family Sittidae|bird family (generic term)
+sitting|6
+(adj)|seated|standing (antonym)
+(adj)|nonmoving (similar term)|unmoving (similar term)
+(noun)|posing|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|seance|session|meeting (generic term)|get together (generic term)
+(noun)|session (generic term)
+sitting bull|1
+(noun)|Sitting Bull|Indian chief (generic term)|Indian chieftain (generic term)|Hunkpapa (generic term)
+sitting duck|1
+(noun)|easy mark|victim (generic term)|dupe (generic term)
+sitting room|1
+(noun)|living room|living-room|front room|parlor|parlour|room (generic term)
+sitting trot|1
+(noun)|trot (generic term)|rising trot (antonym)
+situate|2
+(verb)|locate|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+(verb)|fix|posit|deposit|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+situated|1
+(adj)|located|placed|set|settled (similar term)
+situation|5
+(noun)|state of affairs|state (generic term)
+(noun)|position|condition (generic term)|status (generic term)
+(noun)|difficulty (generic term)
+(noun)|site|position (generic term)|place (generic term)
+(noun)|position|post|berth|office|spot|billet|place|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+situation comedy|2
+(noun)|sitcom|comedy (generic term)
+(noun)|sitcom|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+sitwell|1
+(noun)|Sitwell|Dame Edith Sitwell|Dame Edith Louisa Sitwell|poet (generic term)
+sitz bath|1
+(noun)|hip bath|bathtub (generic term)|bathing tub (generic term)|bath (generic term)|tub (generic term)
+sium|1
+(noun)|Sium|genus Sium|rosid dicot genus (generic term)
+sium latifolium|1
+(noun)|greater water parsnip|Sium latifolium|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sium sisarum|1
+(noun)|skirret|Sium sisarum|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sium suave|1
+(noun)|water parsnip|Sium suave|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+siva|1
+(noun)|Siva|Shiva|Hindu deity (generic term)
+sivaism|2
+(noun)|Shivaism|Sivaism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Shivaism|Sivaism|Hinduism (generic term)|Hindooism (generic term)
+sivan|1
+(noun)|Sivan|Siwan|Jewish calendar month (generic term)
+sivapithecus|1
+(noun)|Sivapithecus|hominid (generic term)
+siwan|1
+(noun)|Sivan|Siwan|Jewish calendar month (generic term)
+six|2
+(adj)|6|vi|half dozen|half-dozen|cardinal (similar term)
+(noun)|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+six-day war|1
+(noun)|Arab-Israeli War|Six-Day War|Six Day War|war (generic term)|warfare (generic term)
+six-fold|1
+(adj)|sextuple|sixfold|multiple (similar term)
+six-footer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+six-gilled shark|1
+(noun)|cow shark|Hexanchus griseus|shark (generic term)
+six-gun|1
+(noun)|revolver|six-shooter|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+six-lined racerunner|1
+(noun)|racerunner|race runner|Cnemidophorus sexlineatus|whiptail (generic term)|whiptail lizard (generic term)
+six-membered|1
+(adj)|6-membered|membered (similar term)
+six-pack|1
+(noun)|six pack|sixpack|carton (generic term)
+six-pointed|1
+(adj)|pointed (similar term)
+six-shooter|1
+(noun)|revolver|six-gun|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+six-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+six-spot|1
+(noun)|spot (generic term)|domino (generic term)|dice (generic term)|die (generic term)
+six day war|1
+(noun)|Arab-Israeli War|Six-Day War|Six Day War|war (generic term)|warfare (generic term)
+six nations|1
+(noun)|Iroquois League|League of Iroquois|Five Nations|Six Nations|league (generic term)
+six pack|1
+(noun)|six-pack|sixpack|carton (generic term)
+six times|1
+(adv)|sixfold
+sixer|1
+(noun)|six|6|VI|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+sixfold|2
+(adj)|sextuple|six-fold|multiple (similar term)
+(adv)|six times
+sixpack|1
+(noun)|six-pack|six pack|carton (generic term)
+sixpence|1
+(noun)|tanner|coin (generic term)
+sixpenny|1
+(adj)|threepenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap (similar term)|inexpensive (similar term)
+sixpenny nail|1
+(noun)|nail (generic term)
+sixsome|1
+(noun)|sextet|sextette|gathering (generic term)|assemblage (generic term)
+sixteen|2
+(adj)|16|xvi|cardinal (similar term)
+(noun)|16|XVI|large integer (generic term)
+sixteen personality factor questionnaire|1
+(noun)|Sixteen Personality Factor Questionnaire|16 PF|self-report personality inventory (generic term)|self-report inventory (generic term)
+sixteenth|3
+(adj)|16th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-sixteenth|sixteenth part|common fraction (generic term)|simple fraction (generic term)
+sixteenth note|1
+(noun)|semiquaver|note (generic term)|musical note (generic term)|tone (generic term)
+sixteenth part|1
+(noun)|one-sixteenth|sixteenth|common fraction (generic term)|simple fraction (generic term)
+sixth|4
+(adj)|6th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-sixth|common fraction (generic term)|simple fraction (generic term)
+(noun)|interval (generic term)|musical interval (generic term)
+sixth-former|1
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+sixth baron byron of rochdale|1
+(noun)|Byron|Lord George Gordon Byron|Sixth Baron Byron of Rochdale|poet (generic term)
+sixth cranial nerve|1
+(noun)|abducent|abducent nerve|abducens|abducens nerve|nervus abducens|cranial nerve (generic term)
+sixth crusade|1
+(noun)|Sixth Crusade|Crusade (generic term)
+sixth form|1
+(noun)|class (generic term)|form (generic term)|grade (generic term)
+sixth sense|1
+(noun)|insight|intuition (generic term)
+sixties|2
+(noun)|1960s|decade (generic term)|decennary (generic term)|decennium (generic term)
+(noun)|mid-sixties|time of life (generic term)
+sixtieth|3
+(adj)|60th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-sixtieth|common fraction (generic term)|simple fraction (generic term)
+sixtus iv|1
+(noun)|Sixtus IV|Francesco della Rovere|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+sixty|2
+(adj)|60|lx|threescore|cardinal (similar term)
+(noun)|60|LX|large integer (generic term)
+sixty-eight|1
+(adj)|68|lxviii|cardinal (similar term)
+sixty-fifth|1
+(adj)|65th|ordinal (similar term)
+sixty-five|1
+(adj)|65|lxv|cardinal (similar term)
+sixty-four|1
+(adj)|64|lxiv|cardinal (similar term)
+sixty-fourth|2
+(adj)|64th|ordinal (similar term)
+(noun)|one-sixty-fourth|common fraction (generic term)|simple fraction (generic term)
+sixty-fourth note|1
+(noun)|hemidemisemiquaver|note (generic term)|musical note (generic term)|tone (generic term)
+sixty-nine|2
+(adj)|69|ilxx|cardinal (similar term)
+(noun)|soixante-neuf|oral sex (generic term)|head (generic term)
+sixty-one|1
+(adj)|61|lxi|cardinal (similar term)
+sixty-seven|1
+(adj)|67|lxvii|cardinal (similar term)
+sixty-six|1
+(adj)|66|lxvi|cardinal (similar term)
+sixty-three|1
+(adj)|63|lxiii|cardinal (similar term)
+sixty-two|1
+(adj)|62|lxii|cardinal (similar term)
+sizable|2
+(adj)|ample|sizeable|large (similar term)|big (similar term)
+(adj)|goodly|goodish|hefty|respectable|sizeable|tidy|considerable (similar term)
+size|8
+(adj)|sized (similar term)
+(noun)|property (generic term)
+(noun)|sizing|filler (generic term)
+(noun)|size of it|situation (generic term)|state of affairs (generic term)
+(noun)|magnitude (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|change magnitude (generic term)|size up (related term)
+size constancy|1
+(noun)|constancy (generic term)|perceptual constancy (generic term)
+size of it|1
+(noun)|size|situation (generic term)|state of affairs (generic term)
+size stick|1
+(noun)|measuring stick (generic term)|measure (generic term)|measuring rod (generic term)
+size up|1
+(verb)|take stock|scrutinize|scrutinise|examine (generic term)|see (generic term)
+sizeable|2
+(adj)|ample|sizable|large (similar term)|big (similar term)
+(adj)|goodly|goodish|hefty|respectable|sizable|tidy|considerable (similar term)
+sizeableness|1
+(noun)|enormousness|grandness|greatness|immenseness|immensity|vastness|wideness|largeness (generic term)|bigness (generic term)
+sized|2
+(adj)|apple-sized (similar term)|cherry-sized (similar term)|cookie-sized (similar term)|crow-sized (similar term)|dog-sized (similar term)|eightpenny (similar term)|ferret-sized (similar term)|fourpenny (similar term)|grape-sized (similar term)|human-sized (similar term)|kiwi-sized (similar term)|medium-sized (similar term)|medium-size (similar term)|moderate-sized (similar term)|moderate-size (similar term)|mouse-sized (similar term)|ninepenny (similar term)|orange-sized (similar term)|pig-sized (similar term)|rabbit-sized (similar term)|shrew-sized (similar term)|size (similar term)|sorted (similar term)|sparrow-sized (similar term)|squirrel-sized (similar term)|threepenny (similar term)|turkey-sized (similar term)|wolf-sized (similar term)|unsized (antonym)
+(adj)|unsized (antonym)
+sizing|1
+(noun)|size|filler (generic term)
+sizz|2
+(verb)|hiss|siss|sibilate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|hiss|siss|sibilate|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+sizzle|4
+(noun)|noise (generic term)
+(verb)|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|seethe (generic term)|boil (generic term)
+(verb)|sear (generic term)|scorch (generic term)
+sizzling|2
+(adj)|hot (similar term)
+(adj)|red-hot|hot (similar term)
+sjaelland|1
+(noun)|Zealand|Seeland|Sjaelland|island (generic term)
+sk-ampicillin|1
+(noun)|ampicillin|Principen|Polycillin|SK-Ampicillin|penicillin (generic term)
+skag|1
+(noun)|big H|hell dust|nose drops|smack|thunder|scag|heroin (generic term)|diacetylmorphine (generic term)
+skagens odde|1
+(noun)|Skagens Odde|Skaw|cape (generic term)|ness (generic term)
+skagerak|1
+(noun)|Skagerrak|Skagerak|strait (generic term)|sound (generic term)
+skagerrak|1
+(noun)|Skagerrak|Skagerak|strait (generic term)|sound (generic term)
+skagit|2
+(noun)|Skagit|Salish (generic term)
+(noun)|Skagit|Salish (generic term)|Salishan (generic term)
+skagway|1
+(noun)|Skagway|town (generic term)
+skanda|1
+(noun)|Skanda|Hindu deity (generic term)
+skank|3
+(noun)|filth|crud|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+skanky|1
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|wicked|yucky|offensive (similar term)
+skate|3
+(noun)|sports equipment (generic term)
+(noun)|ray (generic term)
+(verb)|glide (generic term)
+skate over|1
+(verb)|gloss over|smooth over|slur over|skimp over|treat (generic term)|handle (generic term)|do by (generic term)
+skateboard|2
+(noun)|board (generic term)|wheeled vehicle (generic term)
+(verb)|skate (generic term)
+skateboarder|1
+(noun)|skater (generic term)
+skateboarding|1
+(noun)|skating (generic term)
+skater|1
+(noun)|athlete (generic term)|jock (generic term)
+skating|1
+(noun)|sport (generic term)|athletics (generic term)
+skating rink|1
+(noun)|rink|building (generic term)|edifice (generic term)
+skaw|1
+(noun)|Skagens Odde|Skaw|cape (generic term)|ness (generic term)
+skeat|1
+(noun)|Skeat|Walter William Skeat|philologist (generic term)|philologue (generic term)
+skedaddle|2
+(noun)|escape (generic term)|flight (generic term)
+(verb)|scat (generic term)|run (generic term)|scarper (generic term)|turn tail (generic term)|lam (generic term)|run away (generic term)|hightail it (generic term)|bunk (generic term)|head for the hills (generic term)|take to the woods (generic term)|escape (generic term)|fly the coop (generic term)|break away (generic term)
+skeen arch|1
+(noun)|skene arch|scheme arch|diminished arch|arch (generic term)
+skeet|1
+(noun)|skeet shooting|trapshooting|shoot (generic term)
+skeet shooting|1
+(noun)|skeet|trapshooting|shoot (generic term)
+skeeter hawk|1
+(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|snake doctor|mosquito hawk|odonate (generic term)
+skeg|1
+(noun)|brace (generic term)
+skein|1
+(noun)|hank (generic term)
+skeletal|2
+(adj)|system (related term)
+(adj)|bony|cadaverous|emaciated|gaunt|haggard|pinched|wasted|thin (similar term)|lean (similar term)
+skeletal frame|1
+(noun)|skeleton|frame|underframe|supporting structure (generic term)
+skeletal muscle|1
+(noun)|striated muscle|muscle (generic term)|musculus (generic term)
+skeletal structure|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+skeletal system|1
+(noun)|skeleton|frame|systema skeletale|system (generic term)
+skeleton|4
+(noun)|minimum (generic term)|lower limit (generic term)
+(noun)|skeleton in the closet|skeleton in the cupboard|scandal (generic term)|outrage (generic term)
+(noun)|skeletal system|frame|systema skeletale|system (generic term)
+(noun)|skeletal frame|frame|underframe|supporting structure (generic term)
+skeleton fork fern|1
+(noun)|Psilotum nudum|whisk fern (generic term)
+skeleton in the closet|1
+(noun)|skeleton|skeleton in the cupboard|scandal (generic term)|outrage (generic term)
+skeleton in the cupboard|1
+(noun)|skeleton|skeleton in the closet|scandal (generic term)|outrage (generic term)
+skeleton key|1
+(noun)|passkey (generic term)|passe-partout (generic term)|master key (generic term)|master (generic term)
+skeleton shrimp|1
+(noun)|amphipod (generic term)
+skene arch|1
+(noun)|skeen arch|scheme arch|diminished arch|arch (generic term)
+skep|2
+(noun)|basket (generic term)|handbasket (generic term)
+(noun)|beehive (generic term)|hive (generic term)
+skepful|1
+(noun)|containerful (generic term)
+skeptic|1
+(noun)|sceptic|doubter|intellectual (generic term)|intellect (generic term)
+skeptical|2
+(adj)|disbelieving|sceptical|unbelieving|incredulous (similar term)
+(adj)|doubting|questioning|sceptical|distrustful (similar term)
+skeptically|1
+(adv)|sceptically
+skepticism|2
+(noun)|incredulity|disbelief|mental rejection|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|agnosticism|scepticism|unbelief (generic term)|disbelief (generic term)
+sketch|6
+(noun)|study|drawing (generic term)
+(noun)|vignette|description (generic term)
+(noun)|survey|resume|summary (generic term)|sum-up (generic term)
+(noun)|cartoon|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(verb)|chalk out|draw (generic term)
+(verb)|outline|adumbrate|describe (generic term)|depict (generic term)|draw (generic term)
+sketch block|1
+(noun)|sketchbook|sketch pad|book (generic term)|volume (generic term)
+sketch map|1
+(noun)|map (generic term)
+sketch pad|1
+(noun)|sketchbook|sketch block|book (generic term)|volume (generic term)
+sketchbook|1
+(noun)|sketch block|sketch pad|book (generic term)|volume (generic term)
+sketcher|2
+(noun)|draftsman (generic term)|drawer (generic term)
+(noun)|writing implement (generic term)
+sketchiness|1
+(noun)|incompleteness (generic term)|rawness (generic term)
+sketchy|1
+(adj)|unelaborated|incomplete (similar term)|uncomplete (similar term)
+skew|2
+(adj)|skewed|inclined (similar term)
+(verb)|reorient (generic term)|align (antonym)
+skew-eyed|1
+(adj)|eyed (similar term)
+skew-whiff|2
+(adj)|askew|awry|cockeyed|lopsided|wonky|crooked (similar term)
+(adv)|askew|awry
+skew arch|1
+(noun)|arch (generic term)
+skew correlation|1
+(noun)|curvilinear correlation|nonlinear correlation|correlation (generic term)|correlational statistics (generic term)
+skewed|1
+(adj)|skew|inclined (similar term)
+skewer|2
+(noun)|pin (generic term)
+(verb)|spit|pin (generic term)
+skewness|1
+(noun)|lopsidedness|asymmetry (generic term)|dissymmetry (generic term)|imbalance (generic term)
+ski|2
+(noun)|runner (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+ski-plane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+ski boot|1
+(noun)|boot (generic term)
+ski cap|1
+(noun)|stocking cap|toboggan cap|cap (generic term)
+ski conditions|1
+(noun)|condition (generic term)|status (generic term)
+ski jacket|1
+(noun)|ski parka|parka (generic term)|windbreaker (generic term)|windcheater (generic term)|anorak (generic term)
+ski jump|2
+(noun)|ramp (generic term)|incline (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+ski jumper|1
+(noun)|skier (generic term)|jumper (generic term)
+ski jumping|1
+(noun)|skiing (generic term)
+ski lift|1
+(noun)|ski tow|lift|conveyance (generic term)|transport (generic term)
+ski lodge|1
+(noun)|hotel (generic term)
+ski mask|1
+(noun)|face mask (generic term)
+ski parka|1
+(noun)|ski jacket|parka (generic term)|windbreaker (generic term)|windcheater (generic term)|anorak (generic term)
+ski pole|1
+(noun)|pole (generic term)
+ski race|1
+(noun)|skiing race|race (generic term)
+ski rack|1
+(noun)|carrier (generic term)
+ski resort|1
+(noun)|resort (generic term)|resort hotel (generic term)|holiday resort (generic term)
+ski run|1
+(noun)|ski trail|trail (generic term)
+ski slope|1
+(noun)|slope (generic term)|incline (generic term)|side (generic term)
+ski tow|1
+(noun)|ski lift|lift|conveyance (generic term)|transport (generic term)
+ski trail|1
+(noun)|ski run|trail (generic term)
+ski wax|1
+(noun)|wax (generic term)
+skiagram|1
+(noun)|radiogram|radiograph|shadowgraph|skiagraph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+skiagraph|1
+(noun)|radiogram|radiograph|shadowgraph|skiagram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+skiagraphy|1
+(noun)|radiography|photography (generic term)
+skibob|1
+(noun)|vehicle (generic term)
+skid|7
+(noun)|board (generic term)|plank (generic term)
+(noun)|brake shoe|shoe|restraint (generic term)|constraint (generic term)
+(noun)|slip|sideslip|slide (generic term)|glide (generic term)|coast (generic term)
+(verb)|skid (generic term)|slip (generic term)|slue (generic term)|slew (generic term)|slide (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|brake (generic term)
+(verb)|slip|slue|slew|slide|glide (generic term)|slip up (related term)
+skid lid|1
+(noun)|crash helmet (generic term)
+skid road|2
+(noun)|quarter (generic term)
+(noun)|road (generic term)|route (generic term)
+skid row|1
+(noun)|slum (generic term)|slum area (generic term)
+skidder|3
+(noun)|slider|slipper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|worker (generic term)
+(noun)|tractor (generic term)
+skidpan|1
+(noun)|paved surface (generic term)
+skier|1
+(noun)|athlete (generic term)|jock (generic term)
+skiff|1
+(noun)|small boat (generic term)
+skiffle|1
+(noun)|popular music (generic term)|popular music genre (generic term)
+skiffle group|1
+(noun)|ensemble (generic term)
+skiing|1
+(noun)|sport (generic term)|athletics (generic term)
+skiing race|1
+(noun)|ski race|race (generic term)
+skilful|1
+(adj)|adept|expert|good|practiced|proficient|skillful|skilled (similar term)
+skilfully|1
+(adv)|skillfully
+skill|2
+(noun)|accomplishment|acquirement|acquisition|attainment|ability (generic term)|power (generic term)
+(noun)|science|ability (generic term)|power (generic term)
+skilled|1
+(adj)|accomplished (similar term)|complete (similar term)|adept (similar term)|expert (similar term)|good (similar term)|practiced (similar term)|proficient (similar term)|skillful (similar term)|skilful (similar term)|arch (similar term)|ball-hawking (similar term)|consummate (similar term)|masterful (similar term)|masterly (similar term)|virtuoso (similar term)|delicate (similar term)|hot (similar term)|mean (similar term)|sure-handed (similar term)|trained (similar term)|versatile (similar term)|competent (related term)|experienced (related term)|experient (related term)|unskilled (antonym)
+skilled worker|1
+(noun)|trained worker|skilled workman|worker (generic term)
+skilled workman|1
+(noun)|skilled worker|trained worker|worker (generic term)
+skillet|1
+(noun)|frying pan|frypan|pan (generic term)|cooking pan (generic term)
+skillet bread|1
+(noun)|fry bread|quick bread (generic term)
+skillet cake|1
+(noun)|upside-down cake|cake (generic term)
+skillet corn bread|1
+(noun)|cornbread (generic term)
+skillet fish|1
+(noun)|skilletfish|Gobiesox strumosus|clingfish (generic term)
+skilletfish|1
+(noun)|skillet fish|Gobiesox strumosus|clingfish (generic term)
+skillful|2
+(adj)|adept|expert|good|practiced|proficient|skilful|skilled (similar term)
+(adj)|nice|precise (similar term)
+skillfully|1
+(adv)|skilfully
+skillfulness|1
+(noun)|state (generic term)|unskillfulness (antonym)
+skilly|1
+(noun)|gruel (generic term)
+skim|10
+(adj)|skimmed|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|skimming|reading (generic term)
+(verb)|plane|glide (generic term)
+(verb)|skim over|touch (generic term)
+(verb)|scan|rake|glance over|run down|examine (generic term)|see (generic term)
+(verb)|skip|skitter|throw (generic term)
+(verb)|coat (generic term)|surface (generic term)
+(verb)|skim off|cream off|cream|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|cream off (related term)|skim off (related term)
+(verb)|skim over|read (generic term)
+skim milk|1
+(noun)|skimmed milk|milk (generic term)|whole milk (antonym)
+skim off|2
+(verb)|skim|cream off|cream|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|cream off (related term)|skim off (related term)
+(verb)|cream off|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+skim over|2
+(verb)|skim|read (generic term)
+(verb)|skim|touch (generic term)
+skimcoat|1
+(verb)|coat (generic term)|surface (generic term)
+skimmed|1
+(adj)|skim|nonfat (similar term)|fat-free (similar term)|fatless (similar term)
+skimmed milk|1
+(noun)|skim milk|milk (generic term)|whole milk (antonym)
+skimmer|4
+(noun)|reader (generic term)
+(noun)|cooking utensil (generic term)|cookware (generic term)
+(noun)|boater|leghorn|Panama|Panama hat|sailor|straw hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+(noun)|coastal diving bird (generic term)
+skimming|4
+(noun)|removal (generic term)|remotion (generic term)
+(noun)|skim|reading (generic term)
+(noun)|larceny (generic term)|theft (generic term)|thievery (generic term)|thieving (generic term)|stealing (generic term)
+(noun)|grazing|shaving|touch (generic term)|touching (generic term)
+skimp|4
+(verb)|scant|work (generic term)|skimp over (related term)
+(verb)|scant|restrict (generic term)
+(verb)|scrimp|stint|save (generic term)
+(verb)|stint|scant|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+skimp over|1
+(verb)|gloss over|skate over|smooth over|slur over|treat (generic term)|handle (generic term)|do by (generic term)
+skimpy|1
+(adj)|lean|insufficient (similar term)|deficient (similar term)
+skin|11
+(noun)|tegument|cutis|connective tissue (generic term)|body covering (generic term)
+(noun)|rind|peel|plant tissue (generic term)
+(noun)|surface (generic term)
+(noun)|hide|pelt|body covering (generic term)
+(noun)|animation (generic term)|life (generic term)|living (generic term)|aliveness (generic term)
+(noun)|peel|rind (generic term)
+(noun)|bag (generic term)
+(verb)|clamber|scramble|shin|shinny|struggle|sputter|climb (generic term)
+(verb)|scrape|injure (generic term)|wound (generic term)
+(verb)|bark|strip (generic term)
+(verb)|peel|pare|strip (generic term)
+skin-deep|1
+(adj)|superficial|surface|shallow (similar term)
+skin-dive|2
+(noun)|skin diving|swimming (generic term)|swim (generic term)
+(verb)|dive (generic term)
+skin-diver|1
+(noun)|aquanaut|swimmer (generic term)|natator (generic term)|bather (generic term)
+skin-tight|1
+(adj)|skintight|tight (similar term)
+skin and bones|1
+(noun)|thin person|scrag|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|fat person (antonym)
+skin cancer|1
+(noun)|carcinoma (generic term)
+skin care|1
+(noun)|skincare|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+skin cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+skin color|1
+(noun)|complexion|skin colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+skin colour|1
+(noun)|complexion|skin color|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+skin condition|2
+(noun)|skin disease|disease of the skin|skin disorder|skin problem|disease (generic term)
+(noun)|complexion|appearance (generic term)|visual aspect (generic term)
+skin disease|1
+(noun)|disease of the skin|skin disorder|skin problem|skin condition|disease (generic term)
+skin disorder|1
+(noun)|skin disease|disease of the skin|skin problem|skin condition|disease (generic term)
+skin diving|1
+(noun)|skin-dive|swimming (generic term)|swim (generic term)
+skin doctor|1
+(noun)|dermatologist|specialist (generic term)|medical specialist (generic term)
+skin effect|1
+(noun)|electrical phenomenon (generic term)
+skin eruption|1
+(noun)|exanthem|exanthema|eruption (generic term)
+skin flick|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+skin graft|1
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+skin over|1
+(verb)|heal (generic term)
+skin patch|1
+(noun)|transdermal patch|pad (generic term)
+skin perceptiveness|1
+(noun)|tactual sensation|tactility|touch perception|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+skin pop|1
+(verb)|pop (generic term)
+skin problem|1
+(noun)|skin disease|disease of the skin|skin disorder|skin condition|disease (generic term)
+skin rash|1
+(noun)|rash|roseola|efflorescence|eruption (generic term)
+skin sensation|1
+(noun)|cutaneous sensation|haptic sensation|touch (generic term)|touch sensation (generic term)|tactual sensation (generic term)|tactile sensation (generic term)|feeling (generic term)
+skin senses|1
+(noun)|touch|sense of touch|touch modality|cutaneous senses|somatosense (generic term)|exteroception (generic term)
+skin test|1
+(noun)|diagnostic test (generic term)|diagnostic assay (generic term)
+skin tumor|1
+(noun)|acanthoma|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+skincare|1
+(noun)|skin care|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+skinflint|1
+(noun)|niggard|scrooge|churl|hoarder (generic term)
+skinful|1
+(noun)|indefinite quantity (generic term)
+skinhead|1
+(noun)|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+skinheads|1
+(noun)|bootboys|youth subculture (generic term)
+skink|1
+(noun)|scincid|scincid lizard|lizard (generic term)
+skinless|1
+(adj)|skinned (antonym)
+skinned|1
+(adj)|smooth-skinned (similar term)|velvety-skinned (similar term)|skinless (antonym)
+skinner|5
+(noun)|Skinner|Otis Skinner|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Skinner|Cornelia Otis Skinner|actress (generic term)
+(noun)|Skinner|Fred Skinner|B. F. Skinner|Burrhus Frederic Skinner|psychologist (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|muleteer|mule skinner|mule driver|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+skinnerian|2
+(adj)|Skinnerian|psychologist (related term)
+(noun)|Skinnerian|follower (generic term)
+skinniness|1
+(noun)|scrawniness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+skinny|5
+(adj)|scraggy|boney|scrawny|underweight|weedy|thin (similar term)|lean (similar term)
+(adj)|connective tissue|body covering (related term)
+(adj)|tight-fitting|tightly fitting|tight (similar term)
+(adj)|cheeseparing|close|near|penny-pinching|stingy (similar term)|ungenerous (similar term)
+(noun)|information (generic term)|info (generic term)
+skinny-dip|2
+(noun)|swimming (generic term)|swim (generic term)
+(verb)|swim (generic term)
+skinny-dipper|1
+(noun)|swimmer (generic term)
+skint|1
+(adj)|broke|bust|stone-broke|stony-broke|poor (similar term)
+skintight|1
+(adj)|skin-tight|tight (similar term)
+skip|8
+(noun)|gait (generic term)
+(noun)|omission|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|jump|pass over|skip over|neglect (generic term)|pretermit (generic term)|omit (generic term)|drop (generic term)|miss (generic term)|leave out (generic term)|overlook (generic term)|overleap (generic term)
+(verb)|cut|miss (generic term)
+(verb)|hop|hop-skip|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)|skip over (related term)|hop on (related term)
+(verb)|decamp|vamoose|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|bound off|bounce (generic term)|resile (generic term)|take a hop (generic term)|spring (generic term)|bound (generic term)|rebound (generic term)|recoil (generic term)|reverberate (generic term)|ricochet (generic term)
+(verb)|skim|skitter|throw (generic term)
+skip-bomb|1
+(verb)|bombard (generic term)|bomb (generic term)
+skip distance|1
+(noun)|distance (generic term)|length (generic term)
+skip over|1
+(verb)|jump|pass over|skip|neglect (generic term)|pretermit (generic term)|omit (generic term)|drop (generic term)|miss (generic term)|leave out (generic term)|overlook (generic term)|overleap (generic term)
+skip rope|1
+(noun)|jump rope|skipping rope|rope (generic term)
+skip town|1
+(verb)|take a powder|disappear (generic term)|vanish (generic term)|go away (generic term)
+skipjack|3
+(noun)|skipjack tuna|Euthynnus pelamis|scombroid (generic term)|scombroid fish (generic term)
+(noun)|Atlantic bonito|Sarda sarda|bonito (generic term)
+(noun)|click beetle|snapping beetle|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+skipjack tuna|1
+(noun)|skipjack|Euthynnus pelamis|scombroid (generic term)|scombroid fish (generic term)
+skipper|4
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|master|captain|sea captain|officer (generic term)|ship's officer (generic term)
+(noun)|captain|commissioned naval officer (generic term)
+(verb)|work (generic term)
+skipping rope|1
+(noun)|jump rope|skip rope|rope (generic term)
+skirl|3
+(noun)|sound (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|play (generic term)
+skirmish|2
+(noun)|brush|clash|encounter|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+skirmisher|1
+(noun)|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+skirret|1
+(noun)|Sium sisarum|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+skirt|7
+(noun)|cloth covering (generic term)
+(noun)|garment (generic term)
+(noun)|dame|doll|wench|chick|bird|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(verb)|hedge|fudge|evade|put off|circumvent|parry|elude|dodge|duck|sidestep|avoid (generic term)
+(verb)|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+(verb)|bound (generic term)|border (generic term)
+(verb)|surround|border|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+skirt chaser|1
+(noun)|wolf|woman chaser|masher|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+skirt of tasses|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+skirting|1
+(adj)|encircling|peripheral (similar term)
+skirting board|1
+(noun)|baseboard|mopboard|molding (generic term)|moulding (generic term)
+skit|1
+(noun)|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+skitter|4
+(verb)|scurry|scamper|scuttle|run (generic term)
+(verb)|glide (generic term)
+(verb)|skim|skip|throw (generic term)
+(verb)|twitch (generic term)
+skittish|1
+(adj)|flighty|spooky|nervous|excitable (similar term)
+skittishness|1
+(noun)|restiveness|nervousness (generic term)
+skittle|2
+(noun)|ninepin|skittle pin|bowling pin (generic term)|pin (generic term)
+(verb)|bowl (generic term)
+skittle alley|1
+(noun)|bowling alley|alley|lane (generic term)
+skittle ball|1
+(noun)|ninepin ball|ball (generic term)
+skittle pin|1
+(noun)|ninepin|skittle|bowling pin (generic term)|pin (generic term)
+skittles|1
+(noun)|ninepins|bowling (generic term)
+skive|1
+(verb)|shave (generic term)
+skivvies|1
+(noun)|Skivvies|underwear (generic term)|underclothes (generic term)|underclothing (generic term)
+skivvy|1
+(noun)|slavey|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+skopje|1
+(noun)|Skopje|Skoplje|Uskub|national capital (generic term)
+skoplje|1
+(noun)|Skopje|Skoplje|Uskub|national capital (generic term)
+skreak|2
+(verb)|squeak|screech|creak|screak|make noise (generic term)|resound (generic term)|noise (generic term)
+(verb)|squawk|screak|skreigh|screech|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+skreigh|1
+(verb)|squawk|screak|skreak|screech|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+skua|1
+(noun)|bonxie|jaeger (generic term)
+skuld|1
+(noun)|Skuld|Norn (generic term)
+skulduggery|1
+(noun)|trickery|hocus-pocus|slickness|hanky panky|jiggery-pokery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+skulk|3
+(verb)|lurk|hide (generic term)|conceal (generic term)
+(verb)|malinger|fiddle (generic term)|shirk (generic term)|shrink from (generic term)|goldbrick (generic term)
+(verb)|walk (generic term)
+skulker|2
+(noun)|malingerer|shammer|slacker (generic term)|shirker (generic term)
+(noun)|lurker|lurcher|waiter (generic term)
+skulking|1
+(noun)|malingering|evasion (generic term)|escape (generic term)|dodging (generic term)
+skull|1
+(noun)|bone (generic term)|os (generic term)
+skull and crossbones|1
+(noun)|emblem (generic term)
+skull practice|1
+(noun)|skull session|training (generic term)|preparation (generic term)|grooming (generic term)
+skull session|2
+(noun)|session (generic term)
+(noun)|skull practice|training (generic term)|preparation (generic term)|grooming (generic term)
+skullcap|3
+(noun)|cap (generic term)
+(noun)|helmetflower|herb (generic term)|herbaceous plant (generic term)
+(noun)|calvaria|bone (generic term)|os (generic term)
+skullduggery|1
+(noun)|trickery|hocus-pocus|slickness|hanky panky|jiggery-pokery|skulduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+skunk|5
+(noun)|rotter|dirty dog|rat|stinker|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|shutout|defeat (generic term)|licking (generic term)
+(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|smoke|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(noun)|polecat|wood pussy|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+(verb)|lurch|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+skunk-weed|1
+(noun)|skunkweed|Polemonium viscosum|polemonium (generic term)
+skunk bear|1
+(noun)|wolverine|carcajou|Gulo luscus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+skunk cabbage|2
+(noun)|polecat weed|foetid pothos|Symplocarpus foetidus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|Lysichiton americanum|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+skunkbush|1
+(noun)|squawbush|squaw-bush|Rhus trilobata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+skunkweed|1
+(noun)|skunk-weed|Polemonium viscosum|polemonium (generic term)
+sky|2
+(noun)|atmosphere (generic term)
+(verb)|flip|toss|pitch|fling (generic term)
+sky-blue|2
+(adj)|azure|cerulean|bright blue|chromatic (similar term)
+(noun)|azure|cerulean|sapphire|lazuline|blue (generic term)|blueness (generic term)
+sky-high|1
+(adv)|enthusiastically
+sky burial|1
+(noun)|funeral (generic term)
+sky dive|1
+(verb)|skydive|chute (generic term)|parachute (generic term)|jump (generic term)
+sky glow|1
+(noun)|glow (generic term)
+sky marshal|1
+(noun)|air marshal|marshal (generic term)|marshall (generic term)
+sky pilot|1
+(noun)|military chaplain|padre|Holy Joe|chaplain (generic term)
+sky wave|1
+(noun)|radio wave (generic term)|radio emission (generic term)|radio radiation (generic term)
+skybox|1
+(noun)|box (generic term)|loge (generic term)|stadium (generic term)|bowl (generic term)|arena (generic term)|sports stadium (generic term)
+skycap|1
+(noun)|porter (generic term)
+skydive|1
+(verb)|sky dive|chute (generic term)|parachute (generic term)|jump (generic term)
+skydiver|1
+(noun)|parachutist (generic term)|parachuter (generic term)|parachute jumper (generic term)
+skydiving|1
+(noun)|jump (generic term)|parachuting (generic term)
+skye terrier|1
+(noun)|Skye terrier|terrier (generic term)
+skyhook|2
+(noun)|helicopter (generic term)|chopper (generic term)|whirlybird (generic term)|eggbeater (generic term)
+(noun)|hook (generic term)
+skyjack|1
+(verb)|commandeer (generic term)|hijack (generic term)|highjack (generic term)|pirate (generic term)
+skylab|1
+(noun)|Skylab|space station (generic term)|space platform (generic term)|space laboratory (generic term)
+skylark|2
+(noun)|Alauda arvensis|lark (generic term)
+(verb)|frolic|lark|rollick|disport|sport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+skylight|1
+(noun)|fanlight|window (generic term)
+skyline|2
+(noun)|outline (generic term)|lineation (generic term)
+(noun)|horizon|apparent horizon|visible horizon|sensible horizon|line (generic term)
+skyrocket|3
+(noun)|rocket|visual signal (generic term)
+(noun)|rocket|firework (generic term)|pyrotechnic (generic term)
+(verb)|rocket|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+skysail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+skyscraper|1
+(noun)|building (generic term)|edifice (generic term)
+skywalk|1
+(noun)|walk (generic term)|walkway (generic term)|paseo (generic term)
+skyward|2
+(adj)|heavenward|up (similar term)
+(adv)|skywards
+skywards|1
+(adv)|skyward
+skyway|1
+(noun)|air lane|flight path|airway|path (generic term)|route (generic term)|itinerary (generic term)
+skywriting|1
+(noun)|writing (generic term)
+sl|1
+(noun)|Shining Path|Sendero Luminoso|SL|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+slab|1
+(noun)|block (generic term)
+slabber|1
+(verb)|drivel|drool|slaver|slobber|dribble|salivate (generic term)|slobber over (related term)|drool over (related term)
+slack|18
+(adj)|loose|lax (similar term)
+(adj)|flaccid|lax|limp|weak (similar term)
+(adj)|standing (similar term)
+(adj)|lax|negligent (similar term)
+(noun)|debris (generic term)|dust (generic term)|junk (generic term)|rubble (generic term)|detritus (generic term)
+(noun)|slump|drop-off|falloff|falling off|deterioration (generic term)|decline in quality (generic term)|declension (generic term)|worsening (generic term)
+(noun)|slack water|stretch (generic term)
+(noun)|mire|quagmire|quag|morass|bog (generic term)|peat bog (generic term)
+(noun)|slackness|looseness (generic term)|play (generic term)
+(noun)|cord (generic term)
+(verb)|fiddle (generic term)|shirk (generic term)|shrink from (generic term)|goldbrick (generic term)
+(verb)|neglect (generic term)
+(verb)|loosen (generic term)|loose (generic term)
+(verb)|slacken|slack up|relax|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|slow|slow down|slow up|slacken|weaken (generic term)
+(verb)|slake|abate|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|abate|let up|slack off|die away|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|slake|hydrate (generic term)
+slack off|1
+(verb)|abate|let up|slack|die away|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+slack suit|1
+(noun)|suit (generic term)|suit of clothes (generic term)
+slack tide|1
+(noun)|slack water|tide (generic term)
+slack up|1
+(verb)|slack|slacken|relax|decrease (generic term)|lessen (generic term)|minify (generic term)
+slack water|2
+(noun)|slack|stretch (generic term)
+(noun)|slack tide|tide (generic term)
+slacken|4
+(verb)|slow|slow down|slow up|slack|weaken (generic term)
+(verb)|slack|slack up|relax|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|weaken (generic term)|slacken off (related term)
+(verb)|remit|loosen (generic term)|loose (generic term)
+slacken off|1
+(verb)|ease up|ease off|flag|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+slackening|1
+(noun)|relaxation|loosening|weakening (generic term)
+slacker|1
+(noun)|shirker|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+slacking|1
+(noun)|shirking|soldiering|goofing off|goldbricking|evasion (generic term)|escape (generic term)|dodging (generic term)
+slackly|1
+(adv)|loosely
+slackness|3
+(noun)|inanition|lassitude|lethargy|weakness (generic term)
+(noun)|slack|looseness (generic term)|play (generic term)
+(noun)|laxness|laxity|remissness|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+slacks|1
+(noun)|trouser (generic term)|pant (generic term)
+slag|2
+(noun)|scoria|dross|scum (generic term)
+(verb)|convert (generic term)
+slag code|1
+(noun)|logic bomb|malevolent program (generic term)
+slagheap|1
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+slain|2
+(adj)|dead (similar term)
+(noun)|dead (generic term)
+slake|3
+(verb)|quench|allay|assuage|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+(verb)|abate|slack|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|slack|hydrate (generic term)
+slaked|1
+(adj)|quenched|satisfied|mitigated (similar term)
+slaked lime|1
+(noun)|calcium hydroxide|lime|hydrated lime|calcium hydrate|caustic lime|lime hydrate|hydroxide (generic term)|hydrated oxide (generic term)
+slalom|2
+(noun)|ski race (generic term)|skiing race (generic term)
+(verb)|ski (generic term)
+slam|8
+(noun)|sweep|victory (generic term)|triumph (generic term)
+(noun)|noise (generic term)
+(noun)|impact (generic term)
+(noun)|shot|shaft|dig|barb|jibe|gibe|remark (generic term)|comment (generic term)
+(verb)|bang|close (generic term)|shut (generic term)
+(verb)|bang|hit (generic term)
+(verb)|slam dance|mosh|thrash|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|flap down|throw (generic term)
+slam-bang|3
+(adj)|violent (similar term)
+(adv)|slapdash
+(adv)|slap-bang
+slam-dunk|2
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|dunk (generic term)
+slam dance|2
+(noun)|slam dancing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(verb)|slam|mosh|thrash|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+slam dancing|1
+(noun)|slam dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+slam dunk|2
+(noun)|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+(noun)|dunk (generic term)|dunk shot (generic term)|stuff shot (generic term)
+slam on|1
+(verb)|slap on|clap on|put on (generic term)|apply (generic term)
+slammer|2
+(noun)|closer (generic term)|finisher (generic term)
+(noun)|jail|jailhouse|gaol|clink|poky|pokey|correctional institution (generic term)
+slander|3
+(noun)|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)|speech act (generic term)
+(noun)|aspersion|calumny|defamation|denigration|attack (generic term)
+(verb)|defame|smirch|asperse|denigrate|calumniate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+slanderer|1
+(noun)|defamer|maligner|vilifier|libeler|backbiter|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+slanderous|1
+(adj)|calumniatory|calumnious|defamatory|denigrative|denigrating|denigratory|libellous|libelous|harmful (similar term)
+slanderously|1
+(adv)|calumniously
+slang|5
+(noun)|slang expression|slang term|non-standard speech (generic term)
+(noun)|cant|jargon|lingo|argot|patois|vernacular|non-standard speech (generic term)
+(verb)|speak (generic term)|talk (generic term)
+(verb)|gull|dupe|befool|cod|fool|put on|take in|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+slang expression|1
+(noun)|slang|slang term|non-standard speech (generic term)
+slang term|1
+(noun)|slang|slang expression|non-standard speech (generic term)
+slanginess|1
+(noun)|casualness (generic term)|familiarity (generic term)
+slanguage|1
+(noun)|language (generic term)|linguistic communication (generic term)
+slangy|1
+(adj)|informal (similar term)
+slant|6
+(noun)|angle|point of view (generic term)|viewpoint (generic term)|stand (generic term)|standpoint (generic term)
+(noun)|pitch|rake|gradient (generic term)|slope (generic term)
+(verb)|lie (generic term)
+(verb)|angle|weight|bias (generic term)|predetermine (generic term)
+(verb)|lean|tilt|tip|angle|bend (generic term)|flex (generic term)|tip over (related term)|tip over (related term)|lean against (related term)|lean on (related term)
+(verb)|cant|cant over|tilt|pitch|move (generic term)
+slant-eye|1
+(noun)|gook|Oriental (generic term)|oriental person (generic term)
+slanted|2
+(adj)|aslant|aslope|diagonal|slanting|sloped|sloping|inclined (similar term)
+(adj)|biased|colored|coloured|one-sided|partial (similar term)|unfair (similar term)
+slanting|1
+(adj)|aslant|aslope|diagonal|slanted|sloped|sloping|inclined (similar term)
+slantingly|1
+(adv)|slopingly
+slantways|1
+(adv)|slantwise
+slantwise|1
+(adv)|slantways
+slap|4
+(noun)|smack|blow (generic term)|bump (generic term)
+(noun)|smack|smacking|blow (generic term)
+(verb)|strike (generic term)
+(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 (similar term)
+slap on|1
+(verb)|clap on|slam on|put on (generic term)|apply (generic term)
+slap together|1
+(verb)|clap up|clap together|produce (generic term)|make (generic term)|create (generic term)
+slapdash|3
+(adj)|haphazard|slipshod|sloppy|careless (similar term)
+(adv)|slam-bang
+(adv)|bang|slap|smack|bolt
+slaphappy|2
+(adj)|carefree|devil-may-care|freewheeling|happy-go-lucky|harum-scarum|irresponsible (similar term)
+(adj)|punch-drunk|silly|confused (similar term)
+slapper|1
+(noun)|spanker|hitter (generic term)|striker (generic term)
+slapshot|1
+(noun)|shot (generic term)
+slapstick|3
+(adj)|humorous (similar term)|humourous (similar term)
+(noun)|comedy (generic term)
+(noun)|acoustic device (generic term)
+slash|9
+(noun)|cut|gash|slice|wound (generic term)|lesion (generic term)
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|solidus|virgule|diagonal|stroke|separatrix|punctuation (generic term)|punctuation mark (generic term)
+(noun)|gash|cut (generic term)|cutting (generic term)
+(verb)|cut down|cut (generic term)
+(verb)|flog|welt|whip|lather|lash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|gash|cut (generic term)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+(verb)|convulse|thresh|thresh about|thrash|thrash about|toss|jactitate|shake (generic term)|agitate (generic term)
+slash pocket|1
+(noun)|pocket (generic term)
+slashed|4
+(adj)|patterned (similar term)
+(adj)|cut (similar term)
+(adj)|cut|gashed|injured (similar term)
+(adj)|cut|decreased (similar term)|reduced (similar term)
+slasher|2
+(noun)|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+slashing|1
+(adj)|dynamic (similar term)|dynamical (similar term)
+slask|1
+(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+slat|3
+(noun)|spline|strip (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|close (generic term)|shut (generic term)
+slate|7
+(noun)|tablet (generic term)
+(noun)|slating|roofing material (generic term)
+(noun)|sedimentary rock (generic term)
+(noun)|ticket|list (generic term)|listing (generic term)
+(verb)|intend (generic term)|destine (generic term)|designate (generic term)|specify (generic term)
+(verb)|cross-file (generic term)|register (generic term)
+(verb)|roof (generic term)
+slate-black|1
+(adj)|achromatic (similar term)
+slate-colored junco|1
+(noun)|dark-eyed junco|Junco hyemalis|junco (generic term)|snowbird (generic term)
+slate-gray|1
+(adj)|slate-grey|slaty-grey|slaty-gray|slaty|slatey|stone-grey|stone-gray|achromatic (similar term)
+slate-grey|1
+(adj)|slate-gray|slaty-grey|slaty-gray|slaty|slatey|stone-grey|stone-gray|achromatic (similar term)
+slate club|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+slate pencil|1
+(noun)|pencil (generic term)
+slate roof|1
+(noun)|roof (generic term)
+slater|1
+(noun)|woodlouse|isopod (generic term)
+slatey|1
+(adj)|slate-grey|slate-gray|slaty-grey|slaty-gray|slaty|stone-grey|stone-gray|achromatic (similar term)
+slather|1
+(verb)|spread (generic term)
+slating|3
+(noun)|slate|roofing material (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|roofing (generic term)
+slattern|2
+(noun)|streetwalker|street girl|hooker|hustler|floozy|floozie|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+(noun)|slut|slovenly woman|trollop|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+slatternliness|1
+(noun)|sluttishness|slovenliness (generic term)
+slatternly|1
+(adj)|blowsy|blowzy|sluttish|untidy (similar term)
+slaty|1
+(adj)|slate-grey|slate-gray|slaty-grey|slaty-gray|slatey|stone-grey|stone-gray|achromatic (similar term)
+slaty-gray|1
+(adj)|slate-grey|slate-gray|slaty-grey|slaty|slatey|stone-grey|stone-gray|achromatic (similar term)
+slaty-grey|1
+(adj)|slate-grey|slate-gray|slaty-gray|slaty|slatey|stone-grey|stone-gray|achromatic (similar term)
+slaughter|5
+(noun)|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|thrashing|walloping|debacle|drubbing|trouncing|whipping|defeat (generic term)|licking (generic term)
+(noun)|massacre|mass murder|carnage|butchery|murder (generic term)|slaying (generic term)|execution (generic term)
+(verb)|butcher|kill (generic term)
+(verb)|massacre|mow down|kill (generic term)
+slaughterer|1
+(noun)|butcher|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+slaughterhouse|1
+(noun)|abattoir|butchery|shambles|building (generic term)|edifice (generic term)
+slaughterous|1
+(adj)|gory|sanguinary|sanguineous|butcherly|bloody (similar term)
+slav|2
+(adj)|Slav|person|individual|someone|somebody|mortal|soul (related term)
+(noun)|Slav|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+slave|4
+(adj)|bond (similar term)|enslaved (similar term)|enthralled (similar term)|in bondage (similar term)|servile (similar term)|slaveholding (similar term)|unfree (related term)|free (antonym)
+(noun)|striver|hard worker|worker (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|break one's back|buckle down|knuckle down|work (generic term)|do work (generic term)
+slave-maker|1
+(noun)|slave-making ant|ant (generic term)|emmet (generic term)|pismire (generic term)
+slave-making ant|1
+(noun)|slave-maker|ant (generic term)|emmet (generic term)|pismire (generic term)
+slave ant|1
+(noun)|ant (generic term)|emmet (generic term)|pismire (generic term)
+slave dealer|1
+(noun)|slaver|slave trader|victimizer (generic term)|victimiser (generic term)
+slave driver|2
+(noun)|Simon Legree|employer (generic term)
+(noun)|taskmaster (generic term)
+slave market|1
+(noun)|marketplace (generic term)|mart (generic term)
+slave owner|1
+(noun)|slaveholder|slaver|owner (generic term)|possessor (generic term)
+slave ship|1
+(noun)|ship (generic term)
+slave state|1
+(noun)|American state (generic term)|free state (antonym)
+slave trade|1
+(noun)|slave traffic|traffic (generic term)
+slave trader|1
+(noun)|slaver|slave dealer|victimizer (generic term)|victimiser (generic term)
+slave traffic|1
+(noun)|slave trade|traffic (generic term)
+slaveholder|1
+(noun)|slave owner|slaver|owner (generic term)|possessor (generic term)
+slaveholding|2
+(adj)|slave (similar term)
+(noun)|slavery|practice (generic term)|pattern (generic term)
+slaveless|1
+(adj)|free-soil|non-slave|free (similar term)
+slavelike|1
+(adj)|servile (similar term)
+slaver|3
+(noun)|slave dealer|slave trader|victimizer (generic term)|victimiser (generic term)
+(noun)|slaveholder|slave owner|owner (generic term)|possessor (generic term)
+(verb)|drivel|drool|slabber|slobber|dribble|salivate (generic term)|slobber over (related term)|drool over (related term)
+slavery|3
+(noun)|bondage|thrall|thralldom|thraldom|subjugation (generic term)|subjection (generic term)
+(noun)|slaveholding|practice (generic term)|pattern (generic term)
+(noun)|labor (generic term)|labour (generic term)|toil (generic term)
+slavey|1
+(noun)|skivvy|domestic (generic term)|domestic help (generic term)|house servant (generic term)
+slavic|2
+(adj)|Slavonic|Slavic|Balto-Slavic|Balto-Slavic language|Balto-Slavonic (related term)
+(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+slavic language|1
+(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+slavic people|1
+(noun)|Slavic people|Slavic race|race (generic term)
+slavic race|1
+(noun)|Slavic people|Slavic race|race (generic term)
+slavish|2
+(adj)|unoriginal (similar term)
+(adj)|subservient|submissive|servile (similar term)
+slavonic|2
+(adj)|Slavonic|Slavic|Balto-Slavic|Balto-Slavic language|Balto-Slavonic (related term)
+(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+slavonic language|1
+(noun)|Slavic|Slavic language|Slavonic|Slavonic language|Balto-Slavic (generic term)|Balto-Slavic language (generic term)|Balto-Slavonic (generic term)
+slaw|1
+(noun)|coleslaw|salad (generic term)
+slay|1
+(verb)|murder|hit|dispatch|bump off|off|polish off|remove|kill (generic term)
+slayer|1
+(noun)|killer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+slaying|1
+(noun)|murder|execution|homicide (generic term)
+sle|1
+(noun)|systemic lupus erythematosus|SLE|disseminated lupus erythematosus|lupus (generic term)
+sleaze|1
+(noun)|cheapness|tackiness|tat|tastelessness (generic term)
+sleaziness|2
+(noun)|dishonorableness (generic term)|dishonourableness (generic term)
+(noun)|shabbiness|seediness|manginess|inelegance (generic term)
+sleazy|3
+(adj)|thin (similar term)
+(adj)|bum|cheap|cheesy|chintzy|crummy|punk|tinny|inferior (similar term)
+(adj)|seamy|seedy|sordid|squalid|disreputable (similar term)
+sled|2
+(noun)|sledge|sleigh|vehicle (generic term)
+(verb)|sleigh|ride (generic term)
+sled dog|1
+(noun)|sledge dog|working dog (generic term)
+sledder|1
+(noun)|athlete (generic term)|jock (generic term)
+sledding|2
+(noun)|sport (generic term)|athletics (generic term)
+(noun)|going|accomplishment (generic term)|achievement (generic term)
+sledge|5
+(noun)|sled|sleigh|vehicle (generic term)
+(noun)|maul|sledgehammer|hammer (generic term)
+(verb)|transport (generic term)
+(verb)|travel (generic term)|journey (generic term)
+(verb)|sledgehammer|hammer (generic term)
+sledge dog|1
+(noun)|sled dog|working dog (generic term)
+sledgehammer|2
+(noun)|maul|sledge|hammer (generic term)
+(verb)|sledge|hammer (generic term)
+sleek|4
+(adj)|glossy|satiny|silken|silky|silklike|slick|smooth (similar term)
+(adj)|groomed (similar term)
+(adj)|streamlined|aerodynamic|flowing|smooth (similar term)
+(verb)|slick|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+sleek down|1
+(verb)|slick|slick down|comb (generic term)|comb out (generic term)|disentangle (generic term)
+sleek over|1
+(verb)|whitewash|gloss over|hush up|cover (generic term)|cover up (generic term)
+sleekness|2
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|silkiness|smoothness (generic term)
+sleep|6
+(noun)|slumber|physiological state (generic term)|physiological condition (generic term)
+(noun)|sopor|physiological state (generic term)|physiological condition (generic term)
+(noun)|nap|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|rest|eternal rest|eternal sleep|quietus|death (generic term)
+(verb)|kip|slumber|log Z's|catch some Z's|rest (generic term)|sleep in (related term)|sleep late (related term)|sleep in (related term)|sleep out (related term)|wake (antonym)
+(verb)|accommodate (generic term)|hold (generic term)|admit (generic term)
+sleep-learning|1
+(noun)|hypnopedia|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+sleep apnea|1
+(noun)|apnea (generic term)|sleep disorder (generic term)
+sleep deprivation|1
+(noun)|torture (generic term)|torturing (generic term)
+sleep disorder|1
+(noun)|disorder (generic term)|upset (generic term)
+sleep in|2
+(verb)|sleep late|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+(verb)|live in|board (generic term)|live out (antonym)
+sleep late|1
+(verb)|sleep in|sleep (generic term)|kip (generic term)|slumber (generic term)|log Z's (generic term)|catch some Z's (generic term)
+sleep off|1
+(verb)|lose (generic term)
+sleep out|1
+(verb)|live out|commute (generic term)|travel back and forth (generic term)|live in (antonym)
+sleep over|1
+(verb)|stay over|lodge (generic term)
+sleep talking|1
+(noun)|somniloquy|somniloquism|sleeping (generic term)|process (generic term)|unconscious process (generic term)
+sleep terror disorder|1
+(noun)|pavor nocturnus|sleep disorder (generic term)
+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 (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+sleeper|9
+(noun)|slumberer|rester (generic term)
+(noun)|spy (generic term)|undercover agent (generic term)|saboteur (generic term)|wrecker (generic term)|diversionist (generic term)|terrorist (generic term)
+(noun)|achiever (generic term)|winner (generic term)|success (generic term)|succeeder (generic term)
+(noun)|tie|railroad tie|crosstie|brace (generic term)|bracing (generic term)
+(noun)|sleeping car|wagon-lit|passenger car (generic term)|coach (generic term)|carriage (generic term)
+(noun)|pajama (generic term)|pyjama (generic term)|pj's (generic term)|jammies (generic term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|sleeper goby|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|hit (generic term)|smash (generic term)|smasher (generic term)|strike (generic term)|bang (generic term)
+sleeper cell|1
+(noun)|cell (generic term)|cadre (generic term)
+sleeper goby|1
+(noun)|sleeper|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sleeper nest|1
+(noun)|nest (generic term)
+sleepiness|1
+(noun)|drowsiness|somnolence|temporary state (generic term)|wakefulness (antonym)
+sleeping|4
+(adj)|dormant|unerect (similar term)
+(noun)|sleep (generic term)|slumber (generic term)|waking (antonym)
+(noun)|quiescence|quiescency|dormancy|rest (generic term)|ease (generic term)|repose (generic term)|relaxation (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sleeping around|1
+(noun)|promiscuity|promiscuousness|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+sleeping bag|1
+(noun)|bag (generic term)
+sleeping beauty|3
+(noun)|Sleeping Beauty|princess (generic term)
+(noun)|sleeper (generic term)|slumberer (generic term)
+(noun)|target company (generic term)|takeover target (generic term)
+sleeping capsule|1
+(noun)|sleeping pill|sleeping tablet|sleeping draught|soporific (generic term)|hypnotic (generic term)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+sleeping car|1
+(noun)|sleeper|wagon-lit|passenger car (generic term)|coach (generic term)|carriage (generic term)
+sleeping draught|1
+(noun)|sleeping pill|sleeping tablet|sleeping capsule|soporific (generic term)|hypnotic (generic term)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+sleeping hibiscus|1
+(noun)|waxmallow|wax mallow|mallow (generic term)
+sleeping partner|1
+(noun)|silent partner|partner (generic term)
+sleeping pill|1
+(noun)|sleeping tablet|sleeping capsule|sleeping draught|soporific (generic term)|hypnotic (generic term)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+sleeping room|1
+(noun)|bedroom|chamber|bedchamber|room (generic term)
+sleeping sickness|1
+(noun)|sleepy sickness|epidemic encephalitis|lethargic encephalitis|encephalitis lethargica|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+sleeping tablet|1
+(noun)|sleeping pill|sleeping capsule|sleeping draught|soporific (generic term)|hypnotic (generic term)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)
+sleepless|2
+(adj)|insomniac|watchful|awake (similar term)
+(adj)|lidless|alert (similar term)
+sleepless person|1
+(noun)|insomniac|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+sleeplessness|1
+(noun)|wakefulness|temporary state (generic term)|sleepiness (antonym)
+sleepover|1
+(noun)|affair (generic term)|occasion (generic term)|social occasion (generic term)|function (generic term)|social function (generic term)
+sleepwalk|1
+(verb)|somnambulate|walk (generic term)
+sleepwalker|1
+(noun)|somnambulist|noctambulist|sleeper (generic term)|slumberer (generic term)
+sleepwalking|1
+(noun)|somnambulism|somnambulation|noctambulism|noctambulation|sleeping (generic term)|walk (generic term)|walking (generic term)
+sleepwear|1
+(noun)|nightwear|nightclothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+sleepy|1
+(adj)|sleepy-eyed|sleepyheaded|asleep (similar term)
+sleepy-eyed|1
+(adj)|sleepy|sleepyheaded|asleep (similar term)
+sleepy dick|1
+(noun)|starflower|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem (generic term)
+sleepy sickness|1
+(noun)|sleeping sickness|epidemic encephalitis|lethargic encephalitis|encephalitis lethargica|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+sleepyhead|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sleepyheaded|1
+(adj)|sleepy|sleepy-eyed|asleep (similar term)
+sleet|2
+(noun)|precipitation (generic term)|downfall (generic term)
+(verb)|precipitate (generic term)|come down (generic term)|fall (generic term)
+sleety|1
+(adj)|frozen (similar term)
+sleeve|2
+(noun)|arm|cloth covering (generic term)
+(noun)|case (generic term)
+sleeved|1
+(adj)|sleeveless (antonym)
+sleeveless|2
+(adj)|sleeved (antonym)
+(adj)|bootless|fruitless|futile|vain|unproductive (similar term)
+sleigh|2
+(noun)|sled|sledge|vehicle (generic term)
+(verb)|sled|ride (generic term)
+sleigh bed|1
+(noun)|bed (generic term)
+sleigh bell|1
+(noun)|cascabel|bell (generic term)
+sleight|1
+(noun)|dexterity|manual dexterity|adeptness (generic term)|adroitness (generic term)|deftness (generic term)|facility (generic term)|quickness (generic term)
+sleight of hand|1
+(noun)|prestidigitation|magic trick (generic term)|conjuring trick (generic term)|trick (generic term)|magic (generic term)|legerdemain (generic term)|conjuration (generic term)|thaumaturgy (generic term)|illusion (generic term)|deception (generic term)
+slender|5
+(adj)|slight|slim|svelte|thin (similar term)|lean (similar term)
+(adj)|thin|narrow (similar term)
+(adj)|thin (similar term)
+(adj)|slim|small (similar term)|little (similar term)
+(adj)|lissome|lissom|lithe|lithesome|supple|svelte|sylphlike|graceful (similar term)
+slender-bodied|1
+(adj)|slim-bodied|thin-bodied|bodied (similar term)
+slender-tailed meerkat|1
+(noun)|Suricata suricatta|meerkat (generic term)|mierkat (generic term)
+slender-waisted|1
+(adj)|slim-waisted|wasp-waisted|thin (similar term)|lean (similar term)
+slender-winged|1
+(adj)|winged (similar term)
+slender centaury|1
+(noun)|centaury (generic term)
+slender knapweed|1
+(noun)|knapweed (generic term)
+slender lady palm|1
+(noun)|reed rhapis|Rhapis humilis|lady palm (generic term)
+slender loris|1
+(noun)|Loris gracilis|lemur (generic term)
+slender rush|1
+(noun)|Juncus tenuis|rush (generic term)
+slender salamander|1
+(noun)|worm salamander|salamander (generic term)
+slender spike rush|1
+(noun)|needle spike rush|needle rush|hair grass|Eleocharis acicularis|spike rush (generic term)
+slender wheatgrass|1
+(noun)|Agropyron trachycaulum|Agropyron pauciflorum|Elymus trachycaulos|wheatgrass (generic term)|wheat-grass (generic term)
+slender wild oat|1
+(noun)|Avena barbata|oat (generic term)
+slenderise|1
+(verb)|slenderize|change (generic term)|alter (generic term)|modify (generic term)
+slenderize|2
+(verb)|slenderise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|reduce|melt off|lose weight|slim|thin|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+slenderly|2
+(adv)|slimly|slightly
+(adv)|meagerly|sparingly|meagrely|amply (antonym)|amply (antonym)
+slenderness|3
+(noun)|insufficiency (generic term)|inadequacy (generic term)|deficiency (generic term)
+(noun)|thinness|tenuity|dimension (generic term)|thickness (antonym)
+(noun)|slightness|slimness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+sleuth|2
+(noun)|sleuthhound|detective (generic term)
+(verb)|spy|stag|snoop|monitor (generic term)|supervise (generic term)|ride herd on (generic term)
+sleuthhound|2
+(noun)|sleuth|detective (generic term)
+(noun)|bloodhound|hound (generic term)|hound dog (generic term)
+sleuthing|1
+(noun)|detection|detecting|detective work|police work (generic term)|police investigation (generic term)
+slew|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|spate|stack|tidy sum|wad|whole lot|whole slew|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(verb)|swerve|sheer|curve|trend|veer|slue|cut|turn (generic term)
+(verb)|skid|slip|slue|slide|glide (generic term)|slip up (related term)
+slews|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+slezsko|1
+(noun)|Silesia|Slask|Slezsko|Schlesien|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+slice|10
+(noun)|piece|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|piece|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|cut|gash|slash|wound (generic term)|lesion (generic term)
+(noun)|fade|slicing|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|part (generic term)|piece (generic term)
+(noun)|spatula (generic term)
+(verb)|slit|cut (generic term)
+(verb)|hit (generic term)
+(verb)|slice up|cut (generic term)
+(verb)|strike (generic term)|hit (generic term)
+slice bar|1
+(noun)|bar (generic term)
+slice into|1
+(verb)|slice through|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+slice through|1
+(verb)|slice into|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+slice up|1
+(verb)|slice|cut (generic term)
+sliced|2
+(adj)|chopped|shredded|cut (similar term)
+(adj)|carved (similar term)|carven (similar term)
+slicer|3
+(noun)|golfer (generic term)|golf player (generic term)|linksman (generic term)
+(noun)|machine (generic term)
+(noun)|knife (generic term)
+slicing|2
+(noun)|slice|fade|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+(noun)|cut (generic term)|cutting (generic term)
+slick|10
+(adj)|glossy|satiny|sleek|silken|silky|silklike|smooth (similar term)
+(adj)|slippery (similar term)|slippy (similar term)
+(adj)|glib|pat|plausible (similar term)
+(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|sly|tricksy|tricky|wily|artful (similar term)
+(noun)|slickness|slipperiness|slip|smoothness (generic term)
+(noun)|slick magazine|glossy|magazine (generic term)|mag (generic term)
+(noun)|film (generic term)
+(noun)|trowel (generic term)
+(verb)|sleek|polish (generic term)|smooth (generic term)|smoothen (generic term)|shine (generic term)
+(verb)|slick down|sleek down|comb (generic term)|comb out (generic term)|disentangle (generic term)
+slick down|1
+(verb)|slick|sleek down|comb (generic term)|comb out (generic term)|disentangle (generic term)
+slick magazine|1
+(noun)|slick|glossy|magazine (generic term)|mag (generic term)
+slick up|2
+(verb)|spruce up|spruce|titivate|tittivate|smarten up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|spruce up|spruce|smarten up|groom (generic term)|neaten (generic term)
+slicked|1
+(adj)|plastered|groomed (similar term)
+slicked up|1
+(adj)|tidy (similar term)
+slicker|3
+(noun)|oilskin|macintosh (generic term)|mackintosh (generic term)|mac (generic term)|mack (generic term)
+(noun)|sophisticate (generic term)|man of the world (generic term)
+(noun)|deceiver|cheat|cheater|trickster|beguiler|wrongdoer (generic term)|offender (generic term)
+slickly|1
+(adv)|glibly
+slickness|3
+(noun)|trickery|hocus-pocus|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|glibness|superficiality (generic term)|shallowness (generic term)
+(noun)|slick|slipperiness|slip|smoothness (generic term)
+slide|10
+(noun)|microscope slide|plate glass (generic term)|sheet glass (generic term)
+(noun)|descent (generic term)
+(noun)|swoop|glissando (generic term)
+(noun)|plaything (generic term)|toy (generic term)
+(noun)|glide|coast|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|lantern slide|foil (generic term)|transparency (generic term)
+(noun)|chute|slideway|sloping trough|gutter (generic term)|trough (generic term)
+(verb)|skid|slip|slue|slew|glide (generic term)|slip up (related term)
+(verb)|slither|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|slide down (related term)|slide by (related term)
+(verb)|move (generic term)|displace (generic term)
+slide action|1
+(noun)|pump action|action (generic term)|action mechanism (generic term)
+slide by|1
+(verb)|elapse|lapse|pass|slip by|glide by|slip away|go by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+slide down|1
+(verb)|slump|sink|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+slide fastener|1
+(noun)|zip|zipper|zip fastener|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+slide projector|1
+(noun)|projector (generic term)
+slide rule|1
+(noun)|slipstick|analog computer (generic term)|analogue computer (generic term)
+slide valve|1
+(noun)|valve (generic term)
+slider|4
+(noun)|skidder|slipper|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|luger|sledder (generic term)
+(noun)|yellow-bellied terrapin|Pseudemys scripta|turtle (generic term)
+(noun)|fastball (generic term)|heater (generic term)|smoke (generic term)|hummer (generic term)|bullet (generic term)
+slideway|1
+(noun)|chute|slide|sloping trough|gutter (generic term)|trough (generic term)
+sliding|1
+(adj)|slippery (similar term)|slippy (similar term)
+sliding door|1
+(noun)|door (generic term)
+sliding keel|1
+(noun)|centerboard|centreboard|drop keel|fin keel (generic term)
+sliding scale|1
+(noun)|wage scale (generic term)|wage schedule (generic term)
+sliding seat|1
+(noun)|seat (generic term)
+sliding window|1
+(noun)|window (generic term)
+slight|5
+(adj)|flimsy|tenuous|thin|weak (similar term)
+(adj)|little (similar term)
+(adj)|slender|slim|svelte|thin (similar term)|lean (similar term)
+(noun)|rebuff|discourtesy (generic term)|offense (generic term)|offence (generic term)|offensive activity (generic term)
+(verb)|cold-shoulder|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+slight care|1
+(noun)|care (generic term)|charge (generic term)|tutelage (generic term)|guardianship (generic term)
+slighting|1
+(adj)|belittling|deprecating|deprecative|deprecatory|depreciative|depreciatory|uncomplimentary (similar term)
+slightingly|1
+(adv)|disparagingly
+slightly|2
+(adv)|somewhat
+(adv)|slenderly|slimly
+slightness|3
+(noun)|pettiness|triviality|puniness|unimportance (generic term)
+(noun)|delicacy|smallness (generic term)|littleness (generic term)
+(noun)|slenderness|slimness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+slim|3
+(adj)|slender|slight|svelte|thin (similar term)|lean (similar term)
+(adj)|slender|small (similar term)|little (similar term)
+(verb)|reduce|melt off|lose weight|slenderize|thin|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+slim-bodied|1
+(adj)|thin-bodied|slender-bodied|bodied (similar term)
+slim-waisted|1
+(adj)|slender-waisted|wasp-waisted|thin (similar term)|lean (similar term)
+slim chance|1
+(noun)|fat chance|probability (generic term)|chance (generic term)
+slim down|1
+(verb)|reduce|melt off|lose weight|slim|slenderize|thin|change state (generic term)|turn (generic term)|gain (antonym)
+slime|2
+(noun)|sludge|goo|gook|guck|gunk|muck|ooze|substance (generic term)|matter (generic term)
+(verb)|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+slime bacteria|1
+(noun)|myxobacteria|myxobacterium|myxobacter|gliding bacteria|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+slime eels|1
+(noun)|hagfish|hag|jawless vertebrate (generic term)|jawless fish (generic term)|agnathan (generic term)
+slime mold|1
+(noun)|slime mould|fungus (generic term)
+slime mould|1
+(noun)|slime mold|fungus (generic term)
+slime mushroom|1
+(noun)|Amanita (generic term)|genus Amanita (generic term)
+slimed|1
+(adj)|slimy|slippery (similar term)|slippy (similar term)
+sliminess|2
+(noun)|viscosity (generic term)|viscousness (generic term)
+(noun)|loathsomeness|repulsiveness|vileness|lousiness|wickedness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+slimly|1
+(adv)|slenderly|slightly
+slimness|2
+(noun)|narrow margin|narrowness|margin (generic term)
+(noun)|slenderness|slightness|leanness (generic term)|thinness (generic term)|spareness (generic term)
+slimy|2
+(adj)|slimed|slippery (similar term)|slippy (similar term)
+(adj)|despicable|ugly|vile|unworthy|worthless|wretched|evil (similar term)
+sling|6
+(noun)|highball (generic term)
+(noun)|slingshot|catapult|plaything (generic term)|toy (generic term)
+(noun)|slingback|shoe (generic term)
+(noun)|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|scarf bandage|triangular bandage|bandage (generic term)|patch (generic term)
+(verb)|catapult|hurl (generic term)|hurtle (generic term)|cast (generic term)
+slingback|1
+(noun)|sling|shoe (generic term)
+slinger|1
+(noun)|thrower (generic term)
+slinger ring|1
+(noun)|dispenser (generic term)
+slinging|1
+(noun)|throw (generic term)
+slingshot|1
+(noun)|sling|catapult|plaything (generic term)|toy (generic term)
+slink|1
+(verb)|walk (generic term)
+slip|24
+(noun)|faux pas|gaffe|solecism|gaucherie|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(noun)|slip-up|miscue|parapraxis|mistake (generic term)|error (generic term)|fault (generic term)
+(noun)|potter's clay (generic term)|potter's earth (generic term)
+(noun)|cutting|stalk (generic term)|stem (generic term)
+(noun)|young person (generic term)|youth (generic term)|younker (generic term)|spring chicken (generic term)
+(noun)|mooring|moorage|berth|anchorage (generic term)|anchorage ground (generic term)
+(noun)|trip|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(noun)|slickness|slick|slipperiness|smoothness (generic term)
+(noun)|strip|artifact (generic term)|artefact (generic term)
+(noun)|slip of paper|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+(noun)|chemise|shimmy|shift|teddy|undergarment (generic term)|unmentionable (generic term)
+(noun)|case|pillowcase|pillow slip|bed linen (generic term)
+(noun)|skid|sideslip|slide (generic term)|glide (generic term)|coast (generic term)
+(noun)|sideslip|flight maneuver (generic term)|airplane maneuver (generic term)
+(noun)|elusion|eluding|evasion (generic term)
+(verb)|steal|move (generic term)|slip away (related term)|steal away (related term)
+(verb)|insert (generic term)|enclose (generic term)|inclose (generic term)|stick in (generic term)|put in (generic term)|introduce (generic term)
+(verb)|skid|slue|slew|slide|glide (generic term)|slip up (related term)
+(verb)|drop off|drop away|fall away|worsen (generic term)|decline (generic term)
+(verb)|escape (generic term)|get away (generic term)|break loose (generic term)|slip by (related term)|slip away (related term)
+(verb)|err|mistake|slip up (related term)
+(verb)|sneak|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|slip one's mind|forget (generic term)|block (generic term)|blank out (generic term)|draw a blank (generic term)
+(verb)|dislocate|luxate|splay|move (generic term)|displace (generic term)
+slip-joint pliers|1
+(noun)|pliers (generic term)|pair of pliers (generic term)|plyers (generic term)
+slip-on|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+slip-up|1
+(noun)|slip|miscue|parapraxis|mistake (generic term)|error (generic term)|fault (generic term)
+slip away|2
+(verb)|steal away|sneak away|sneak off|sneak out|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|elapse|lapse|pass|slip by|glide by|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+slip by|1
+(verb)|elapse|lapse|pass|glide by|slip away|go by|slide by|go along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+slip carriage|1
+(noun)|slip coach|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+slip clutch|1
+(noun)|slip friction clutch|friction clutch (generic term)
+slip coach|1
+(noun)|slip carriage|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+slip friction clutch|1
+(noun)|slip clutch|friction clutch (generic term)
+slip in|1
+(verb)|stick in|sneak in|insert|add (generic term)|append (generic term)|supply (generic term)
+slip noose|1
+(noun)|noose|running noose|loop (generic term)
+slip of paper|1
+(noun)|slip|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+slip of the tongue|1
+(noun)|misstatement (generic term)
+slip off|1
+(verb)|take off (generic term)|slip on (antonym)
+slip on|1
+(verb)|wear (generic term)|put on (generic term)|get into (generic term)|don (generic term)|assume (generic term)|slip off (antonym)
+slip one's mind|1
+(verb)|slip|forget (generic term)|block (generic term)|blank out (generic term)|draw a blank (generic term)
+slip ring|1
+(noun)|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+slip road|1
+(noun)|access road|road (generic term)|route (generic term)
+slip stitch|1
+(noun)|stitch (generic term)
+slip up|1
+(verb)|stumble|trip up|err (generic term)|mistake (generic term)|slip (generic term)
+slipcover|1
+(noun)|cloth covering (generic term)
+slipknot|1
+(noun)|knot (generic term)
+slipover|1
+(noun)|pullover|sweater (generic term)
+slippage|3
+(noun)|decrease (generic term)|decrement (generic term)
+(noun)|decline (generic term)|diminution (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)
+slipped disc|1
+(noun)|herniated disc|ruptured intervertebral disc|rupture (generic term)
+slipper|2
+(noun)|carpet slipper|footwear (generic term)|footgear (generic term)
+(noun)|skidder|slider|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+slipper-shaped|1
+(adj)|formed (similar term)
+slipper orchid|1
+(noun)|lady's slipper|lady-slipper|ladies' slipper|orchid (generic term)|orchidaceous plant (generic term)
+slipper plant|1
+(noun)|slipper spurge|shrub (generic term)|bush (generic term)
+slipper spurge|1
+(noun)|slipper plant|shrub (generic term)|bush (generic term)
+slippered|1
+(adj)|shod (similar term)|shodden (similar term)|shoed (similar term)
+slipperiness|2
+(noun)|slickness|slick|slip|smoothness (generic term)
+(noun)|rascality|shiftiness|trickiness|dishonesty (generic term)
+slipperwort|1
+(noun)|calceolaria|flower (generic term)
+slippery|2
+(adj)|slippy|lubricious (similar term)|nonstick (similar term)|slick (similar term)|sliding (similar term)|slimed (similar term)|slimy (similar term)|slipping (similar term)|slithering (similar term)|slithery (similar term)|smooth (related term)|nonslippery (antonym)
+(adj)|tricky|untrustworthy (similar term)|untrusty (similar term)
+slippery dick|1
+(noun)|Halicoeres bivittatus|wrasse (generic term)
+slippery elm|1
+(noun)|red elm|Ulmus rubra|elm (generic term)|elm tree (generic term)
+slipping|1
+(adj)|slithering|slippery (similar term)|slippy (similar term)
+slippy|1
+(adj)|slippery|lubricious (similar term)|nonstick (similar term)|slick (similar term)|sliding (similar term)|slimed (similar term)|slimy (similar term)|slipping (similar term)|slithering (similar term)|slithery (similar term)|smooth (related term)|nonslippery (antonym)
+slipshod|1
+(adj)|haphazard|slapdash|sloppy|careless (similar term)
+slipskin grape|1
+(noun)|grape (generic term)
+slipstick|1
+(noun)|slide rule|analog computer (generic term)|analogue computer (generic term)
+slipstream|1
+(noun)|airstream|race|backwash|wash|flow (generic term)
+slipway|1
+(noun)|ways|shipway|structure (generic term)|construction (generic term)
+slit|6
+(noun)|opening (generic term)
+(noun)|cunt|puss|pussy|snatch|twat|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+(noun)|incision|scratch|prick|dent|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(verb)|slice|cut (generic term)
+(verb)|incise (generic term)
+slit trench|1
+(noun)|trench (generic term)
+slither|1
+(verb)|slide|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|slide down (related term)|slide by (related term)
+slithering|1
+(adj)|slipping|slippery (similar term)|slippy (similar term)
+slithery|1
+(adj)|slippery (similar term)|slippy (similar term)
+sliver|5
+(noun)|splinter|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+(noun)|paring|shaving|fragment (generic term)
+(verb)|splinter|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|splinter|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+(verb)|shape (generic term)|form (generic term)
+slivery|1
+(adj)|splintery|fragment (related term)|bit|chip|flake|fleck|scrap (related term)
+slivovitz|1
+(noun)|brandy (generic term)
+slo-bid|1
+(noun)|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator (generic term)
+sloanea|1
+(noun)|Sloanea|genus Sloanea|dilleniid dicot genus (generic term)
+sloanea jamaicensis|1
+(noun)|breakax|breakaxe|break-axe|Sloanea jamaicensis|tree (generic term)
+slob|1
+(noun)|sloven|pig|slovenly person|vulgarian (generic term)
+slobber|2
+(noun)|drool|dribble|drivel|saliva (generic term)|spit (generic term)|spittle (generic term)
+(verb)|drivel|drool|slabber|slaver|dribble|salivate (generic term)|slobber over (related term)|drool over (related term)
+slobber over|1
+(verb)|drool over|idolize (generic term)|idolise (generic term)|worship (generic term)|hero-worship (generic term)|revere (generic term)
+slobberer|1
+(noun)|dribbler|driveller|drooler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sloe|3
+(noun)|Allegheny plum|Alleghany plum|Prunus alleghaniensis|wild plum (generic term)|wild plum tree (generic term)
+(noun)|blackthorn|Prunus spinosa|shrub (generic term)|bush (generic term)
+(noun)|plum (generic term)
+sloe gin|1
+(noun)|gin (generic term)
+slog|3
+(verb)|plug away|peg away|keep one's nose to the grindstone|keep one's shoulder to the wheel|work (generic term)
+(verb)|footslog|plod|trudge|pad|tramp|walk (generic term)
+(verb)|slug|swig|hit (generic term)
+slogan|1
+(noun)|motto|catchword|shibboleth|saying (generic term)|expression (generic term)|locution (generic term)
+sloganeer|2
+(noun)|propagandist (generic term)
+(verb)|coin (generic term)
+sloganeering|1
+(noun)|persuasion (generic term)|suasion (generic term)
+slogger|3
+(noun)|trudger|plodder|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|plodder|hack (generic term)|drudge (generic term)|hacker (generic term)
+(noun)|slugger|boxer (generic term)|pugilist (generic term)
+sloop|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+sloop of war|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+slop|9
+(noun)|slops|swill|pigswill|pigwash|feed (generic term)|provender (generic term)
+(noun)|mire|mud (generic term)|clay (generic term)
+(noun)|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|food (generic term)|solid food (generic term)
+(noun)|treacle|mush|sentimentalism (generic term)
+(verb)|spill|splatter|move (generic term)|displace (generic term)
+(verb)|squelch|squish|splash|splosh|slosh|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|ladle (generic term)|lade (generic term)|laden (generic term)
+(verb)|swill|feed (generic term)|give (generic term)
+slop-seller|1
+(noun)|slopseller|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+slop basin|1
+(noun)|slop bowl|bowl (generic term)
+slop bowl|1
+(noun)|slop basin|bowl (generic term)
+slop chest|1
+(noun)|commissary (generic term)
+slop jar|1
+(noun)|slop pail|bucket (generic term)|pail (generic term)
+slop pail|1
+(noun)|slop jar|bucket (generic term)|pail (generic term)
+slope|3
+(noun)|incline|side|geological formation (generic term)|formation (generic term)
+(noun)|gradient|position (generic term)|spatial relation (generic term)
+(verb)|incline|pitch|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+sloped|1
+(adj)|aslant|aslope|diagonal|slanted|slanting|sloping|inclined (similar term)
+sloping|2
+(adj)|aslant|aslope|diagonal|slanted|slanting|sloped|inclined (similar term)
+(adj)|gradual (similar term)
+sloping trough|1
+(noun)|chute|slide|slideway|gutter (generic term)|trough (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+sloppiness|4
+(noun)|wateriness|muddiness|wetness (generic term)
+(noun)|slovenliness|unkemptness|untidiness (generic term)
+(noun)|carelessness|inattentiveness (generic term)|carefulness (antonym)
+(noun)|mawkishness|sentimentality|drippiness|mushiness|soupiness|emotionality (generic term)|emotionalism (generic term)
+sloppy|6
+(adj)|untidy (similar term)
+(adj)|wet (similar term)
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloughy|soggy|squashy|swampy|waterlogged|wet (similar term)
+(adj)|baggy|loose-fitting|loose (similar term)
+(adj)|overemotional|emotional (similar term)
+(adj)|haphazard|slapdash|slipshod|careless (similar term)
+sloppy joe|1
+(noun)|Sloppy Joe|sandwich (generic term)
+slops|2
+(noun)|slop|swill|pigswill|pigwash|feed (generic term)|provender (generic term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+slopseller|1
+(noun)|slop-seller|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+slopseller's shop|1
+(noun)|slopshop|clothing store (generic term)|haberdashery (generic term)|haberdashery store (generic term)|mens store (generic term)
+slopshop|1
+(noun)|slopseller's shop|clothing store (generic term)|haberdashery (generic term)|haberdashery store (generic term)|mens store (generic term)
+slosh|3
+(verb)|splash|splosh|slush|sound (generic term)|go (generic term)
+(verb)|squelch|squish|splash|splosh|slop|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|slush|slosh around|slush around|spatter (generic term)|splatter (generic term)|plash (generic term)|splash (generic term)|splosh (generic term)|swash (generic term)
+slosh around|1
+(verb)|slosh|slush|slush around|spatter (generic term)|splatter (generic term)|plash (generic term)|splash (generic term)|splosh (generic term)|swash (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+slot|8
+(noun)|position (generic term)|spatial relation (generic term)
+(noun)|slit (generic term)
+(noun)|time slot|time interval (generic term)|interval (generic term)
+(noun)|status (generic term)|position (generic term)
+(noun)|trail (generic term)
+(noun)|expansion slot|receptacle (generic term)
+(noun)|one-armed bandit|slot machine (generic term)|coin machine (generic term)
+(verb)|schedule (generic term)
+slot machine|1
+(noun)|coin machine|machine (generic term)
+sloth|3
+(noun)|slothfulness|reluctance (generic term)|hesitancy (generic term)|hesitation (generic term)|disinclination (generic term)|indisposition (generic term)
+(noun)|tree sloth|edentate (generic term)
+(noun)|laziness|acedia|mortal sin (generic term)|deadly sin (generic term)
+sloth-like|1
+(adj)|animal (similar term)
+sloth bear|1
+(noun)|Melursus ursinus|Ursus ursinus|bear (generic term)
+slothful|1
+(adj)|faineant|indolent|lazy|otiose|work-shy|idle (similar term)
+slothfulness|1
+(noun)|sloth|reluctance (generic term)|hesitancy (generic term)|hesitation (generic term)|disinclination (generic term)|indisposition (generic term)
+slouch|4
+(noun)|incompetent (generic term)|incompetent person (generic term)
+(noun)|carriage (generic term)|bearing (generic term)|posture (generic term)
+(verb)|slump|sag (generic term)|droop (generic term)|swag (generic term)|flag (generic term)
+(verb)|walk (generic term)
+slouch hat|1
+(noun)|cavalier hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+slouched|1
+(adj)|slouching|slumped|unerect (similar term)
+sloucher|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+slouching|1
+(adj)|slouched|slumped|unerect (similar term)
+slouchy|1
+(adj)|untidy (similar term)
+slough|5
+(noun)|gangrene|sphacelus|pathology (generic term)
+(noun)|bog (generic term)|peat bog (generic term)
+(noun)|swamp (generic term)|swampland (generic term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(verb)|shed|molt|exuviate|moult|shed (generic term)|cast (generic term)|cast off (generic term)|shake off (generic term)|throw (generic term)|throw off (generic term)|throw away (generic term)|drop (generic term)
+slough grass|1
+(noun)|prairie cordgrass|freshwater cordgrass|Spartina pectinmata|cordgrass (generic term)|cord grass (generic term)
+slough of despond|1
+(noun)|depression (generic term)
+slough off|2
+(verb)|get rid of (generic term)|remove (generic term)
+(verb)|amputate (generic term)|cut off (generic term)
+sloughing|1
+(noun)|shedding|organic process (generic term)|biological process (generic term)
+sloughy|1
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloppy|soggy|squashy|swampy|waterlogged|wet (similar term)
+slovak|2
+(noun)|Slovak|European (generic term)
+(noun)|Slovak|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+slovak republic|1
+(noun)|Slovakia|Slovak Republic|European country (generic term)|European nation (generic term)
+slovakia|1
+(noun)|Slovakia|Slovak Republic|European country (generic term)|European nation (generic term)
+slovakian|1
+(adj)|Slovakian|European country|European nation (related term)
+slovakian monetary unit|1
+(noun)|Slovakian monetary unit|monetary unit (generic term)
+sloven|1
+(noun)|slob|pig|slovenly person|vulgarian (generic term)
+slovene|2
+(noun)|Slovene|European (generic term)
+(noun)|Slovene|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+slovenia|1
+(noun)|Slovenia|Republic of Slovenia|Slovenija|European country (generic term)|European nation (generic term)
+slovenian|2
+(adj)|Slovenian|European country|European nation (related term)
+(noun)|Slovenian|European (generic term)
+slovenija|1
+(noun)|Slovenia|Republic of Slovenia|Slovenija|European country (generic term)|European nation (generic term)
+slovenliness|2
+(noun)|sloppiness|unkemptness|untidiness (generic term)
+(noun)|uncleanliness (generic term)
+slovenly|1
+(adj)|frowsy|frowzy|untidy (similar term)
+slovenly person|1
+(noun)|slob|sloven|pig|vulgarian (generic term)
+slovenly woman|1
+(noun)|slattern|slut|trollop|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+slow|11
+(adj)|bumper-to-bumper (similar term)|dilatory (similar term)|laggard (similar term)|poky (similar term)|pokey (similar term)|dragging (similar term)|drawn-out (similar term)|lazy (similar term)|long-play (similar term)|long-playing (similar term)|slow-moving (similar term)|sluggish (similar term)|sulky (similar term)|delayed (related term)|gradual (related term)|unhurried (related term)|fast (antonym)
+(adj)|adagio (similar term)|andante (similar term)|lento (similar term)|lentissimo (similar term)|largo (similar term)|larghetto (similar term)|larghissimo (similar term)|moderato (similar term)|fast (antonym)
+(adj)|dense|dim|dull|dumb|obtuse|stupid (similar term)
+(adj)|fast (antonym)
+(adj)|boring|deadening|dull|ho-hum|irksome|tedious|tiresome|wearisome|uninteresting (similar term)
+(adj)|dull|sluggish|inactive (similar term)
+(verb)|decelerate|slow down|slow up|retard|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|accelerate (antonym)
+(verb)|slow down|slow up|slack|slacken|weaken (generic term)
+(verb)|slow down|slow up|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)
+(adv)|slowly|easy|tardily|quickly (antonym)
+(adv)|behind
+slow-moving|1
+(adj)|slow (similar term)
+slow-witted|1
+(adj)|feebleminded|half-witted|unintelligent (similar term)|stupid (similar term)
+slow-wittedness|1
+(noun)|denseness|dumbness|stupidity (generic term)
+slow down|5
+(verb)|decelerate|slow|slow up|retard|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|accelerate (antonym)
+(verb)|slow|slow up|slack|slacken|weaken (generic term)
+(verb)|slow|slow up|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)
+(verb)|decelerate|modify (generic term)|qualify (generic term)|accelerate (antonym)
+(verb)|relax|loosen up|unbend|unwind|decompress|change state (generic term)|turn (generic term)|tense (antonym)
+slow lane|1
+(noun)|traffic lane (generic term)|fast lane (antonym)
+slow loris|1
+(noun)|Nycticebus tardigradua|Nycticebus pygmaeus|lemur (generic term)
+slow match|1
+(noun)|match (generic term)|lucifer (generic term)|friction match (generic term)
+slow motion|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+slow time scale|1
+(noun)|extended time scale|time scale (generic term)
+slow up|3
+(verb)|slow|slow down|slack|slacken|weaken (generic term)
+(verb)|slow|slow down|decelerate (generic term)|slow (generic term)|slow down (generic term)|slow up (generic term)|retard (generic term)
+(verb)|decelerate|slow|slow down|retard|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|accelerate (antonym)
+slow virus|1
+(noun)|virus (generic term)
+slowcoach|1
+(noun)|plodder|slowpoke|stick-in-the-mud|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+slowdown|1
+(noun)|lag|retardation|delay (generic term)|holdup (generic term)
+slowgoing|1
+(adj)|unenergetic|unenterprising (similar term)|nonenterprising (similar term)
+slowing|1
+(noun)|deceleration|retardation|change (generic term)|alteration (generic term)|modification (generic term)|acceleration (antonym)
+slowly|2
+(adv)|slow|easy|tardily|quickly (antonym)
+(adv)|lento
+slowness|3
+(noun)|awkwardness|clumsiness|ineptness|ineptitude|maladroitness|unskillfulness (generic term)
+(noun)|deliberation|deliberateness|unhurriedness|pace (generic term)|rate (generic term)
+(noun)|retardation|mental retardation|backwardness|subnormality|stupidity (generic term)
+slowpoke|1
+(noun)|plodder|stick-in-the-mud|slowcoach|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+slowworm|1
+(noun)|blindworm|Anguis fragilis|anguid lizard (generic term)
+sls|1
+(noun)|sodium lauryl sulphate|sodium lauryl sulfate|SLS|sulfate (generic term)|sulphate (generic term)|detergent (generic term)
+slub|1
+(noun)|knot|burl|roughness (generic term)|raggedness (generic term)
+slubbed|1
+(adj)|homespun|nubby|nubbly|tweedy|rough (similar term)|unsmooth (similar term)
+sludge|2
+(noun)|precipitate (generic term)
+(noun)|slime|goo|gook|guck|gunk|muck|ooze|substance (generic term)|matter (generic term)
+slue|2
+(verb)|swerve|sheer|curve|trend|veer|slew|cut|turn (generic term)
+(verb)|skid|slip|slew|slide|glide (generic term)|slip up (related term)
+slug|5
+(noun)|bullet|projectile (generic term)|missile (generic term)
+(noun)|sluggard|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|gastropod (generic term)|univalve (generic term)
+(verb)|slog|swig|hit (generic term)
+(verb)|idle|laze|stagnate|work (antonym)
+slugabed|1
+(noun)|lie-abed|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+slugfest|1
+(noun)|fistfight|fisticuffs|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+sluggard|1
+(noun)|slug|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+slugger|2
+(noun)|batter|hitter|batsman|ballplayer (generic term)|baseball player (generic term)
+(noun)|slogger|boxer (generic term)|pugilist (generic term)
+sluggish|3
+(adj)|sulky|slow (similar term)
+(adj)|dull|slow|inactive (similar term)
+(adj)|inert|soggy|torpid|inactive (similar term)
+sluggishness|3
+(noun)|lethargy|lassitude|torpor (generic term)|torpidity (generic term)
+(noun)|pace (generic term)|rate (generic term)
+(noun)|languor|lethargy|phlegm|flatness|inactiveness (generic term)|inactivity (generic term)|inertia (generic term)
+sluice|5
+(noun)|sluiceway|penstock|conduit (generic term)
+(verb)|sluice down|pour (generic term)|pelt (generic term)|stream (generic term)|rain cats and dogs (generic term)|rain buckets (generic term)
+(verb)|flush|drench (generic term)|douse (generic term)|dowse (generic term)|soak (generic term)|sop (generic term)|souse (generic term)
+(verb)|transport (generic term)
+(verb)|draw (generic term)|take out (generic term)
+sluice down|1
+(verb)|sluice|pour (generic term)|pelt (generic term)|stream (generic term)|rain cats and dogs (generic term)|rain buckets (generic term)
+sluice valve|1
+(noun)|sluicegate|floodgate|penstock|head gate|water gate|regulator (generic term)
+sluicegate|1
+(noun)|sluice valve|floodgate|penstock|head gate|water gate|regulator (generic term)
+sluiceway|1
+(noun)|sluice|penstock|conduit (generic term)
+slum|2
+(noun)|slum area|city district (generic term)
+(verb)|visit (generic term)|see (generic term)
+slum area|1
+(noun)|slum|city district (generic term)
+slumber|3
+(noun)|sleep|physiological state (generic term)|physiological condition (generic term)
+(noun)|dormancy (generic term)|quiescence (generic term)|quiescency (generic term)
+(verb)|sleep|kip|log Z's|catch some Z's|rest (generic term)|sleep in (related term)|sleep late (related term)|sleep in (related term)|sleep out (related term)|wake (antonym)
+slumber party|1
+(noun)|party (generic term)
+slumberer|1
+(noun)|sleeper|rester (generic term)
+slumberous|2
+(adj)|slumbrous|quiet (similar term)
+(adj)|slumbery|slumbrous|somnolent|asleep (similar term)
+slumbery|1
+(adj)|slumberous|slumbrous|somnolent|asleep (similar term)
+slumbrous|2
+(adj)|slumberous|quiet (similar term)
+(adj)|slumberous|slumbery|somnolent|asleep (similar term)
+slumgullion|1
+(noun)|stew (generic term)
+slummy|1
+(adj)|poor (similar term)
+slump|6
+(noun)|slack|drop-off|falloff|falling off|deterioration (generic term)|decline in quality (generic term)|declension (generic term)|worsening (generic term)
+(noun)|depression|economic crisis|financial condition (generic term)|economic condition (generic term)
+(verb)|slouch|sag (generic term)|droop (generic term)|swag (generic term)|flag (generic term)
+(verb)|slide down|sink|collapse (generic term)|fall in (generic term)|cave in (generic term)|give (generic term)|give way (generic term)|break (generic term)|founder (generic term)
+(verb)|fall off|sink|drop (generic term)
+(verb)|decline|correct|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+slumped|1
+(adj)|slouched|slouching|unerect (similar term)
+slur|7
+(noun)|musical notation (generic term)
+(noun)|aspersion|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+(noun)|smudge|spot|blot|daub|smear|smirch|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|denote (generic term)|refer (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|blur|dim|weaken (generic term)|slur over (related term)|focus (antonym)
+slur over|1
+(verb)|gloss over|skate over|smooth over|skimp over|treat (generic term)|handle (generic term)|do by (generic term)
+slurp|1
+(verb)|eat (generic term)
+slurred|1
+(adj)|thick|unintelligible (similar term)
+slurry|1
+(noun)|suspension (generic term)
+slush|3
+(noun)|water (generic term)|H2O (generic term)
+(verb)|splash|splosh|slosh|sound (generic term)|go (generic term)
+(verb)|slosh|slosh around|slush around|spatter (generic term)|splatter (generic term)|plash (generic term)|splash (generic term)|splosh (generic term)|swash (generic term)
+slush around|1
+(verb)|slosh|slush|slosh around|spatter (generic term)|splatter (generic term)|plash (generic term)|splash (generic term)|splosh (generic term)|swash (generic term)
+slush fund|1
+(noun)|fund (generic term)|monetary fund (generic term)
+slushy|2
+(adj)|unfrozen (similar term)
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|soupy|emotional (similar term)
+slut|2
+(noun)|slattern|slovenly woman|trollop|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+(noun)|adulteress|fornicatress|hussy|jade|loose woman|strumpet|trollop|adulterer (generic term)|fornicator (generic term)
+sluttish|2
+(adj)|blowsy|blowzy|slatternly|untidy (similar term)
+(adj)|easy|light|loose|promiscuous|wanton|unchaste (similar term)
+sluttishness|1
+(noun)|slatternliness|slovenliness (generic term)
+sluzhba vneshney razvedki|1
+(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency (generic term)
+sly|1
+(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|tricksy|tricky|wily|artful (similar term)
+slyboots|1
+(noun)|dodger|fox|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+slyly|1
+(adv)|craftily|cunningly|foxily|knavishly|trickily|artfully
+slyness|1
+(noun)|craft|craftiness|cunning|foxiness|guile|wiliness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+sm|2
+(noun)|samarium|Sm|atomic number 62|metallic element (generic term)|metal (generic term)
+(noun)|Master of Science|MS|SM|MSc|master's degree (generic term)
+smack|12
+(noun)|slap|blow (generic term)|bump (generic term)
+(noun)|relish|flavor|flavour|sapidity|savor|savour|nip|tang|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+(noun)|big H|hell dust|nose drops|thunder|skag|scag|heroin (generic term)|diacetylmorphine (generic term)
+(noun)|smooch|kiss (generic term)|buss (generic term)|osculation (generic term)
+(noun)|smacking|slap|blow (generic term)
+(verb)|thwack|hit (generic term)
+(verb)|reek|suggest (generic term)|evoke (generic term)|paint a picture (generic term)
+(verb)|taste|taste (generic term)|savor (generic term)|savour (generic term)
+(verb)|peck|kiss (generic term)|buss (generic term)|osculate (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(adv)|bang|slap|slapdash|bolt
+smacker|2
+(noun)|smack (generic term)|smooch (generic term)
+(noun)|blow (generic term)
+smacking|1
+(noun)|smack|slap|blow (generic term)
+small|13
+(adj)|little|bantam (similar term)|diminutive (similar term)|lilliputian (similar term)|midget (similar term)|petite (similar term)|tiny (similar term)|flyspeck (similar term)|bitty (similar term)|bittie (similar term)|teensy (similar term)|teentsy (similar term)|teeny (similar term)|wee (similar term)|weeny (similar term)|weensy (similar term)|teensy-weensy (similar term)|teeny-weeny (similar term)|itty-bitty (similar term)|itsy-bitsy (similar term)|dinky (similar term)|dwarfish (similar term)|elfin (similar term)|elflike (similar term)|gnomish (similar term)|half-size (similar term)|infinitesimal (similar term)|minute (similar term)|microscopic (similar term)|lesser (similar term)|micro (similar term)|miniature (similar term)|minuscule (similar term)|miniscule (similar term)|olive-sized (similar term)|pocket-size (similar term)|pocket-sized (similar term)|pocketable (similar term)|puny (similar term)|runty (similar term)|shrimpy (similar term)|slender (similar term)|slim (similar term)|smaller (similar term)|littler (similar term)|smallish (similar term)|small-scale (similar term)|undersize (similar term)|undersized (similar term)|big (antonym)|large (antonym)
+(adj)|minor|modest|small-scale|pocket-size|pocket-sized|limited (similar term)
+(adj)|humble|low|lowly|modest|inferior (similar term)
+(adj)|little|young (similar term)|immature (similar term)
+(adj)|modest|moderate (similar term)
+(adj)|little|soft (similar term)
+(adj)|little (similar term)
+(adj)|belittled|diminished|decreased (similar term)|reduced (similar term)
+(adj)|little|minuscule|lowercase (similar term)
+(adj)|fine (similar term)
+(noun)|body part (generic term)
+(noun)|size (generic term)
+(adv)|big (antonym)
+small-arm|1
+(noun)|firearm|piece|gun (generic term)
+small-cap|1
+(adj)|small-capitalization|small-capitalisation|capitalization|capitalisation (related term)
+small-capitalisation|1
+(adj)|small-capitalization|small-cap|capitalization|capitalisation (related term)
+small-capitalization|1
+(adj)|small-capitalisation|small-cap|capitalization|capitalisation (related term)
+small-eared|1
+(adj)|eared (similar term)
+small-for-gestational-age infant|1
+(noun)|SGA infant|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+small-fruited|1
+(adj)|fruitful (similar term)
+small-grained|1
+(adj)|powdered|powdery|pulverized|pulverised|fine-grained|fine (similar term)
+small-leaved lime|1
+(noun)|small-leaved linden|Tilia cordata|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+small-leaved linden|1
+(noun)|small-leaved lime|Tilia cordata|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+small-minded|1
+(adj)|petty|narrow-minded (similar term)|narrow (similar term)
+small-mindedly|1
+(adv)|narrow-mindedly|broad-mindedly (antonym)
+small-particle pollution|1
+(noun)|air pollution (generic term)
+small-scale|2
+(adj)|small (similar term)|little (similar term)
+(adj)|minor|modest|small|pocket-size|pocket-sized|limited (similar term)
+small-seeded|1
+(adj)|seedy (similar term)
+small-time|1
+(adj)|nickel-and-dime|unimportant (similar term)
+small-toothed|1
+(adj)|toothed (similar term)
+small-winged|1
+(adj)|winged (similar term)
+small beer|1
+(noun)|triviality|trivia|trifle|object (generic term)|physical object (generic term)
+small boat|1
+(noun)|boat (generic term)
+small business administration|1
+(noun)|Small Business Administration|SBA|independent agency (generic term)
+small businessman|1
+(noun)|businessman (generic term)|man of affairs (generic term)
+small calorie|1
+(noun)|calorie|gram calorie|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+small cane|1
+(noun)|switch cane|Arundinaria tecta|bamboo (generic term)
+small cap|2
+(noun)|corporation (generic term)|corp (generic term)
+(noun)|small capital|capital (generic term)|capital letter (generic term)|uppercase (generic term)|upper-case letter (generic term)|majuscule (generic term)
+small capital|1
+(noun)|small cap|capital (generic term)|capital letter (generic term)|uppercase (generic term)|upper-case letter (generic term)|majuscule (generic term)
+small cell carcinoma|1
+(noun)|oat cell carcinoma|carcinoma (generic term)
+small change|1
+(noun)|chickenfeed|chump change|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+small civet|1
+(noun)|Viverricula indica|Viverricula malaccensis|civet (generic term)|civet cat (generic term)
+small computer system interface|1
+(noun)|SCSI|interface (generic term)|port (generic term)
+small cranberry|1
+(noun)|European cranberry|Vaccinium oxycoccus|cranberry (generic term)
+small farmer|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+small fortune|1
+(noun)|large indefinite quantity (generic term)|large indefinite amount (generic term)
+small fry|2
+(noun)|pip-squeak|squirt|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+(noun)|child|kid|youngster|minor|shaver|nipper|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+small hours|1
+(noun)|hour (generic term)|time of day (generic term)
+small indefinite amount|1
+(noun)|small indefinite quantity|indefinite quantity (generic term)
+small indefinite quantity|1
+(noun)|small indefinite amount|indefinite quantity (generic term)
+small intestine|1
+(noun)|intestine (generic term)|bowel (generic term)|gut (generic term)
+small letter|1
+(noun)|lowercase|lower-case letter|minuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|uppercase (antonym)
+small loan company|1
+(noun)|consumer finance company|finance company (generic term)
+small magellanic cloud|1
+(noun)|Small Magellanic Cloud|Magellanic Cloud (generic term)
+small person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+small print|2
+(noun)|fine print|reservation (generic term)|qualification (generic term)
+(noun)|fine print|print (generic term)|black and white (generic term)
+small ship|1
+(noun)|ship (generic term)
+small slam|1
+(noun)|little slam|slam (generic term)|sweep (generic term)
+small stores|1
+(noun)|commissary (generic term)
+small stuff|1
+(noun)|rope (generic term)
+small talk|1
+(noun)|chitchat|gab|gabfest|gossip|tittle-tattle|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+small town|1
+(noun)|village|settlement|community (generic term)
+small voice|1
+(noun)|wee small voice|voice of conscience|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+small white|1
+(noun)|Pieris rapae|cabbage butterfly (generic term)
+small white aster|1
+(noun)|aster (generic term)
+smaller|1
+(adj)|littler|small (similar term)|little (similar term)
+smaller pectoral muscle|1
+(noun)|pectoralis minor|musculus pectoralis minor|pectoral (generic term)|pectoral muscle (generic term)|pectoralis (generic term)|musculus pectoralis (generic term)|pecs (generic term)
+smalley|1
+(noun)|Smalley|Richard Smalley|Richard E. Smalley|Richard Errett Smalley|chemist (generic term)
+smalleye hammerhead|1
+(noun)|Sphyrna tudes|hammerhead (generic term)|hammerhead shark (generic term)
+smallholder|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+smallholding|1
+(noun)|estate (generic term)|land (generic term)|landed estate (generic term)|acres (generic term)|demesne (generic term)
+smallish|1
+(adj)|small (similar term)|little (similar term)
+smallmouth|1
+(noun)|smallmouth bass|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass (generic term)
+smallmouth bass|2
+(noun)|freshwater bass (generic term)|bass (generic term)
+(noun)|smallmouth|smallmouthed bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass (generic term)
+smallmouth black bass|1
+(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouthed black bass|Micropterus dolomieu|black bass (generic term)
+smallmouthed bass|1
+(noun)|smallmouth|smallmouth bass|smallmouth black bass|smallmouthed black bass|Micropterus dolomieu|black bass (generic term)
+smallmouthed black bass|1
+(noun)|smallmouth|smallmouth bass|smallmouthed bass|smallmouth black bass|Micropterus dolomieu|black bass (generic term)
+smallness|4
+(noun)|littleness|size (generic term)|bigness (antonym)|largeness (antonym)
+(noun)|amount (generic term)
+(noun)|littleness|weakness (generic term)
+(noun)|pettiness|littleness|meanness (generic term)|minginess (generic term)|niggardliness (generic term)|niggardness (generic term)|parsimony (generic term)|parsimoniousness (generic term)|tightness (generic term)|tightfistedness (generic term)|closeness (generic term)
+smallpox|1
+(noun)|variola|variola major|pox (generic term)
+smallpox virus|1
+(noun)|variola virus|poxvirus (generic term)
+smalltooth sawfish|1
+(noun)|Pristis pectinatus|sawfish (generic term)
+smaltite|1
+(noun)|mineral (generic term)
+smarm|1
+(noun)|unction|fulsomeness|compliment (generic term)
+smarmily|1
+(adv)|unctuously|fulsomely
+smarminess|1
+(noun)|fulsomeness|oiliness|oleaginousness|unctuousness|unction|hypocrisy (generic term)
+smarmy|1
+(adj)|buttery|fulsome|oily|oleaginous|soapy|unctuous|insincere (similar term)
+smart|9
+(adj)|astute (similar term)|sharp (similar term)|shrewd (similar term)|cagey (similar term)|cagy (similar term)|canny (similar term)|clever (similar term)|streetwise (similar term)|street smart (similar term)|with-it (similar term)|intelligent (related term)|stupid (antonym)
+(adj)|chic|voguish|stylish (similar term)|fashionable (similar term)
+(adj)|bright|intelligent (similar term)
+(adj)|fresh|impertinent|impudent|overbold|saucy|sassy|wise|forward (similar term)
+(adj)|intense (similar term)
+(adj)|fast (similar term)
+(adj)|automatic (similar term)
+(noun)|smarting|smartness|pain (generic term)|hurting (generic term)
+(verb)|ache|hurt|cause to be perceived (generic term)
+smart aleck|1
+(noun)|wise guy|wiseacre|wisenheimer|weisenheimer|upstart (generic term)
+smart as a whip|1
+(adj)|brainy|brilliant|intelligent (similar term)
+smart bomb|1
+(noun)|bomb (generic term)|dumb bomb (antonym)
+smart card|1
+(noun)|open-end credit (generic term)|revolving credit (generic term)|charge account credit (generic term)|positive identification (generic term)
+smart money|3
+(noun)|speculation (generic term)|venture (generic term)
+(noun)|punitive damages|exemplary damages|damages (generic term)|amends (generic term)|indemnity (generic term)|indemnification (generic term)|restitution (generic term)|redress (generic term)
+(noun)|people (generic term)
+smart set|1
+(noun)|society|high society|beau monde|bon ton|elite (generic term)|elite group (generic term)
+smarta|1
+(noun)|brahman (generic term)|brahmin (generic term)
+smarten up|2
+(verb)|spruce up|spruce|titivate|tittivate|slick up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|spruce up|spruce|slick up|groom (generic term)|neaten (generic term)
+smarting|1
+(noun)|smart|smartness|pain (generic term)|hurting (generic term)
+smartly|3
+(adv)|cleverly
+(adv)|vigorously
+(adv)|modishly|sprucely
+smartness|4
+(noun)|smart|smarting|pain (generic term)|hurting (generic term)
+(noun)|brightness|cleverness|intelligence (generic term)
+(noun)|chic|chicness|chichi|modishness|stylishness|swank|last word|elegance (generic term)
+(noun)|alacrity|briskness|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+smash|16
+(noun)|knock|bash|bang|belt|blow (generic term)|bump (generic term)
+(noun)|smash-up|collision (generic term)
+(noun)|overhead|return (generic term)
+(noun)|crash|hit (generic term)|hitting (generic term)|striking (generic term)
+(noun)|hit|smasher|strike|bang|success (generic term)
+(verb)|nail|boom|blast|hit (generic term)
+(verb)|dash|break (generic term)
+(verb)|bankrupt|ruin|break|impoverish (generic term)
+(verb)|hit (generic term)|strike (generic term)
+(verb)|crush|demolish|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|bang up|smash up|damage (generic term)
+(verb)|hit (generic term)
+(verb)|collide (generic term)|clash (generic term)
+(verb)|demolish (generic term)|destroy (generic term)
+(verb)|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(adv)|smashingly
+smash-up|1
+(noun)|smash|collision (generic term)
+smash hit|1
+(noun)|blockbuster|megahit|hit (generic term)|smash (generic term)|smasher (generic term)|strike (generic term)|bang (generic term)
+smash up|1
+(verb)|bang up|smash|damage (generic term)
+smashed|1
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+smasher|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|stunner|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+(noun)|hit|smash|strike|bang|success (generic term)
+smashing|2
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|swell|good (similar term)
+(noun)|shattering|breakage (generic term)|break (generic term)|breaking (generic term)
+smashingly|1
+(adv)|smash
+smatter|3
+(verb)|dabble|play around|busy (generic term)|occupy (generic term)
+(verb)|babble|blather|blether|blither|chatter (generic term)|piffle (generic term)|palaver (generic term)|prate (generic term)|tittle-tattle (generic term)|twaddle (generic term)|clack (generic term)|maunder (generic term)|prattle (generic term)|blab (generic term)|gibber (generic term)|tattle (generic term)|blabber (generic term)|gabble (generic term)
+(verb)|speak (generic term)|talk (generic term)
+smattering|2
+(noun)|handful|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|understanding (generic term)|apprehension (generic term)|discernment (generic term)|savvy (generic term)
+smear|8
+(noun)|vilification|malignment|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|cytologic smear|cytosmear|cytologic specimen (generic term)
+(noun)|smudge|spot|blot|daub|smirch|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|blot|smirch|spot|stain|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|blur|smudge|smutch|rub (generic term)
+(verb)|daub|cover (generic term)
+(verb)|defame|slander|smirch|asperse|denigrate|calumniate|sully|besmirch|charge (generic term)|accuse (generic term)
+smear test|1
+(noun)|Pap test|Papanicolaou test|diagnostic test (generic term)|diagnostic assay (generic term)
+smear word|1
+(noun)|name (generic term)|epithet (generic term)
+smegma|1
+(noun)|sebum (generic term)
+smell|8
+(noun)|odor|odour|olfactory sensation|olfactory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|olfactory property|aroma|odor|odour|scent|property (generic term)
+(noun)|spirit|tone|feel|feeling|flavor|flavour|look|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|sense of smell|olfaction|olfactory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+(noun)|smelling|sensing (generic term)|perception (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|cause to be perceived (generic term)|smell up (related term)
+(verb)|smell (generic term)
+smell out|1
+(verb)|sniff out|scent out|nose out
+smell up|1
+(verb)|stink up|stink out|odorize (generic term)|odourise (generic term)|scent (generic term)
+smelling|2
+(adj)|redolent|odorous (similar term)
+(noun)|smell|sensing (generic term)|perception (generic term)
+smelling bottle|1
+(noun)|bottle (generic term)
+smelling salts|1
+(noun)|formulation (generic term)|preparation (generic term)
+smelly|1
+(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|stinking|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+smelt|3
+(noun)|fish (generic term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+smelter|1
+(noun)|smeltery|plant (generic term)|works (generic term)|industrial plant (generic term)
+smeltery|1
+(noun)|smelter|plant (generic term)|works (generic term)|industrial plant (generic term)
+smetana|1
+(noun)|Smetana|Bedrich Smetana|composer (generic term)
+smew|1
+(noun)|Mergus albellus|merganser (generic term)|fish duck (generic term)|sawbill (generic term)|sheldrake (generic term)
+smidge|1
+(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgeon|smidgin|small indefinite quantity (generic term)|small indefinite amount (generic term)
+smidgen|1
+(noun)|shred|scintilla|whit|iota|tittle|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+smidgeon|1
+(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+smidgin|1
+(noun)|shred|scintilla|whit|iota|tittle|smidgen|smidgeon|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+smilacaceae|1
+(noun)|Smilacaceae|subfamily Smilacaceae|liliid monocot family (generic term)
+smilax|2
+(noun)|Smilax|genus Smilax|liliid monocot genus (generic term)
+(noun)|Asparagus asparagoides|vine (generic term)
+smilax aspera|1
+(noun)|rough bindweed|Smilax aspera|sarsaparilla (generic term)
+smilax rotundifolia|1
+(noun)|bullbrier|greenbrier|catbrier|horse brier|horse-brier|brier|briar|Smilax rotundifolia|vine (generic term)
+smile|3
+(noun)|smiling|grin|grinning|facial expression (generic term)|facial gesture (generic term)
+(verb)|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+smiledon|1
+(noun)|Smiledon|genus Smiledon|mammal genus (generic term)
+smiledon californicus|1
+(noun)|Smiledon californicus|saber-toothed tiger (generic term)|sabertooth (generic term)
+smiler|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|countenance|physiognomy|phiz|visage|kisser|mug|face (generic term)|human face (generic term)
+smiley|1
+(noun)|emoticon (generic term)
+smiling|2
+(adj)|beamish|twinkly|cheerful (similar term)
+(noun)|smile|grin|grinning|facial expression (generic term)|facial gesture (generic term)
+smilingly|1
+(adv)|unsmilingly (antonym)
+smilo|1
+(noun)|smilo grass|Oryzopsis miliacea|ricegrass (generic term)|rice grass (generic term)
+smilo grass|1
+(noun)|smilo|Oryzopsis miliacea|ricegrass (generic term)|rice grass (generic term)
+smirch|4
+(noun)|smudge|spot|blot|daub|smear|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|blot|smear|spot|stain|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|besmirch|smear (generic term)
+(verb)|defame|slander|asperse|denigrate|calumniate|smear|sully|besmirch|charge (generic term)|accuse (generic term)
+smirk|2
+(noun)|smile (generic term)|smiling (generic term)|grin (generic term)|grinning (generic term)
+(verb)|simper|smile (generic term)
+smirker|1
+(noun)|smiler (generic term)
+smitane|1
+(noun)|Smitane|sauce (generic term)
+smite|3
+(verb)|hit (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|afflict|damage (generic term)
+smith|10
+(noun)|Smith|Ian Smith|Ian Douglas Smith|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Smith|David Smith|David Roland Smith|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(noun)|Smith|Kate Smith|Kathryn Elizabeth Smith|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Smith|Julia Evelina Smith|suffragist (generic term)
+(noun)|Smith|Bessie Smith|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|Smith|Joseph Smith|Latter-Day Saint (generic term)|Mormon (generic term)
+(noun)|Smith|John Smith|Captain John Smith|explorer (generic term)|adventurer (generic term)
+(noun)|Smith|Adam Smith|economist (generic term)|economic expert (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|metalworker|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+smithereens|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+smithy|1
+(noun)|forge|workplace (generic term)|work (generic term)
+smitten|2
+(adj)|stricken|struck|affected (similar term)
+(adj)|crazy|dotty|gaga|enamored|infatuated|in love|soft on|taken with|loving (similar term)
+smitty stevens|1
+(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist (generic term)
+smock|2
+(noun)|duster|gaberdine|gabardine|dust coat|coverall (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+smocking|1
+(noun)|embroidery (generic term)|fancywork (generic term)
+smog|1
+(noun)|smogginess|air pollution (generic term)
+smogginess|1
+(noun)|smog|air pollution (generic term)
+smoggy|1
+(adj)|cloudy (similar term)
+smoke|10
+(noun)|fume|aerosol (generic term)
+(noun)|smoking|vaporization (generic term)|vaporisation (generic term)|vapor (generic term)|vapour (generic term)|evaporation (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+(noun)|insubstantiality (generic term)
+(noun)|roll of tobacco|tobacco (generic term)|baccy (generic term)
+(noun)|pot|grass|green goddess|dope|weed|gage|sess|sens|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(noun)|smoking|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(noun)|fastball|heater|hummer|bullet|pitch (generic term)|delivery (generic term)
+(verb)|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|fume|emit (generic term)|give out (generic term)|give off (generic term)
+smoke-cured|1
+(adj)|smoked|smoke-dried|preserved (similar term)
+smoke-dried|1
+(adj)|smoked|smoke-cured|preserved (similar term)
+smoke-filled|1
+(adj)|smoky (similar term)
+smoke-free|1
+(adj)|smokeless (similar term)
+smoke alarm|1
+(noun)|fire alarm|alarm (generic term)|warning device (generic term)|alarm system (generic term)
+smoke bomb|1
+(noun)|smoke grenade|bomb (generic term)
+smoke bush|2
+(noun)|smoke tree|shrub (generic term)|bush (generic term)
+(noun)|shrub (generic term)|bush (generic term)
+smoke grenade|1
+(noun)|smoke bomb|bomb (generic term)
+smoke hole|1
+(noun)|vent (generic term)|venthole (generic term)|vent-hole (generic term)|blowhole (generic term)
+smoke out|1
+(verb)|rout out (generic term)|drive out (generic term)|force out (generic term)|rouse (generic term)
+smoke screen|2
+(noun)|smokescreen|screen (generic term)
+(noun)|smokescreen|concealment (generic term)|concealing (generic term)|hiding (generic term)
+smoke tree|2
+(noun)|smoke bush|shrub (generic term)|bush (generic term)
+(noun)|Dalea spinosa|shrub (generic term)|bush (generic term)
+smoked|1
+(adj)|smoke-cured|smoke-dried|preserved (similar term)
+smoked haddock|1
+(noun)|finnan haddie|finnan haddock|finnan|haddock (generic term)
+smoked herring|1
+(noun)|red herring|herring (generic term)
+smoked mackerel|1
+(noun)|mackerel (generic term)
+smoked salmon|1
+(noun)|salmon (generic term)
+smokehouse|1
+(noun)|meat house|house (generic term)
+smokeless|1
+(adj)|smoke-free (similar term)|smoky (antonym)
+smokeless powder|1
+(noun)|Ballistite|explosive (generic term)
+smoker|3
+(noun)|tobacco user|consumer (generic term)|nonsmoker (antonym)
+(noun)|stag party|party (generic term)
+(noun)|smoking car|smoking carriage|smoking compartment|passenger car (generic term)|coach (generic term)|carriage (generic term)
+smokescreen|2
+(noun)|smoke screen|screen (generic term)
+(noun)|smoke screen|concealment (generic term)|concealing (generic term)|hiding (generic term)
+smokestack|1
+(noun)|stack|chimney (generic term)
+smoking|3
+(adj)|smoky (similar term)
+(noun)|smoke|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(noun)|smoke|vaporization (generic term)|vaporisation (generic term)|vapor (generic term)|vapour (generic term)|evaporation (generic term)
+smoking car|1
+(noun)|smoker|smoking carriage|smoking compartment|passenger car (generic term)|coach (generic term)|carriage (generic term)
+smoking carriage|1
+(noun)|smoker|smoking car|smoking compartment|passenger car (generic term)|coach (generic term)|carriage (generic term)
+smoking compartment|1
+(noun)|smoker|smoking car|smoking carriage|passenger car (generic term)|coach (generic term)|carriage (generic term)
+smoking gun|1
+(noun)|evidence (generic term)
+smoking jacket|1
+(noun)|lounging jacket|loungewear (generic term)
+smoking mixture|1
+(noun)|tobacco (generic term)|baccy (generic term)
+smoking room|1
+(noun)|room (generic term)
+smoky|2
+(adj)|blackened (similar term)|smoking (similar term)|smoke-filled (similar term)|smokeless (antonym)
+(adj)|tasty (similar term)
+smoky quartz|1
+(noun)|cairngorm|quartz (generic term)
+smolder|3
+(noun)|smoulder|fire (generic term)
+(verb)|smoulder|burn (generic term)|combust (generic term)
+(verb)|smoulder|feel (generic term)|experience (generic term)
+smoldering|1
+(adj)|smouldering|angry (similar term)
+smolderingly|1
+(adv)|smoulderingly
+smolensk|1
+(noun)|Smolensk|city (generic term)|metropolis (generic term)|urban center (generic term)
+smollett|1
+(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer (generic term)|author (generic term)
+smooch|2
+(noun)|smack|kiss (generic term)|buss (generic term)|osculation (generic term)
+(verb)|snog|spoon|neck (generic term)|make out (generic term)
+smooching|1
+(noun)|caressing|cuddling|fondling|hugging|kissing|necking|petting|snuggling|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+smooth|12
+(adj)|creaseless (similar term)|uncreased (similar term)|even-textured (similar term)|fast (similar term)|fine-textured (similar term)|smooth-textured (similar term)|glassy (similar term)|glossy (similar term)|satiny (similar term)|sleek (similar term)|silken (similar term)|silky (similar term)|silklike (similar term)|slick (similar term)|seamless (similar term)|unlined (similar term)|unseamed (similar term)|streamlined (similar term)|aerodynamic (similar term)|flowing (similar term)|sleek (similar term)|velvet (similar term)|velvety (similar term)|velvet-textured (similar term)|waxlike (similar term)|wax-coated (similar term)|waxy (similar term)|ceraceous (similar term)|even (related term)|fine (related term)|ironed (related term)|slippery (related term)|slippy (related term)|rough (antonym)
+(adj)|politic|suave|bland|diplomatic (similar term)|diplomatical (similar term)
+(adj)|entire (similar term)|repand (similar term)|sinuate (similar term)|undulate (similar term)|unnotched (similar term)|untoothed (similar term)|simple (related term)|unsubdivided (related term)|compound (related term)|rough (antonym)
+(adj)|fluent|fluid|liquid|graceful (similar term)
+(adj)|legato|staccato (antonym)
+(adj)|rough (antonym)
+(adj)|easy (similar term)
+(adj)|placid|quiet|still|tranquil|unruffled|calm (similar term)
+(noun)|accomplishment (generic term)|achievement (generic term)
+(verb)|smoothen|change surface (generic term)|smooth over (related term)|roughen (antonym)
+(verb)|polish|smoothen|shine|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|smooth out|rid (generic term)|free (generic term)|disembarrass (generic term)
+smooth-bodied|1
+(adj)|bodied (similar term)
+smooth-faced|1
+(adj)|beardless|hairless (similar term)
+smooth-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+smooth-haired fox terrier|1
+(noun)|fox terrier (generic term)
+smooth-leaved elm|1
+(noun)|European field elm|Ulmus carpinifolia|elm (generic term)|elm tree (generic term)
+smooth-shaven|1
+(adj)|clean-shaven|well-shaven|shaven (similar term)|shaved (similar term)
+smooth-shelled|1
+(adj)|shelled (similar term)
+smooth-skinned|1
+(adj)|skinned (similar term)
+smooth-spoken|1
+(adj)|eloquent|facile|fluent|silver|silver-tongued|articulate (similar term)
+smooth-textured|1
+(adj)|fine-textured|smooth (similar term)
+smooth-tongued|1
+(adj)|glib|glib-tongued|persuasive (similar term)
+smooth alder|1
+(noun)|hazel alder|Alnus serrulata|alder (generic term)|alder tree (generic term)
+smooth aster|1
+(noun)|aster (generic term)
+smooth bark kauri|1
+(noun)|dundathu pine|queensland kauri|Agathis robusta|kauri pine (generic term)|dammar pine (generic term)
+smooth crabgrass|1
+(noun)|Digitaria ischaemum|crabgrass (generic term)|crab grass (generic term)|finger grass (generic term)
+smooth darling pea|1
+(noun)|Swainsona galegifolia|darling pea (generic term)|poison bush (generic term)
+smooth dogfish|1
+(noun)|dogfish (generic term)
+smooth earthball|1
+(noun)|Scleroderma bovista|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+smooth green snake|1
+(noun)|Opheodrys vernalis|green snake (generic term)|grass snake (generic term)
+smooth hammerhead|1
+(noun)|Sphyrna zygaena|hammerhead (generic term)|hammerhead shark (generic term)
+smooth lip fern|1
+(noun)|Alabama lip fern|Cheilanthes alabamensis|lip fern (generic term)|lipfern (generic term)
+smooth muscle|2
+(noun)|involuntary muscle|muscle (generic term)|musculus (generic term)
+(noun)|muscle (generic term)|muscular tissue (generic term)
+smooth muscle cell|1
+(noun)|muscle cell (generic term)|muscle fiber (generic term)|muscle fibre (generic term)
+smooth out|1
+(verb)|smooth|rid (generic term)|free (generic term)|disembarrass (generic term)
+smooth over|1
+(verb)|gloss over|skate over|slur over|skimp over|treat (generic term)|handle (generic term)|do by (generic term)
+smooth plane|1
+(noun)|smoothing plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+smooth softshell|1
+(noun)|Trionyx muticus|soft-shelled turtle (generic term)|pancake turtle (generic term)
+smooth sumac|1
+(noun)|scarlet sumac|vinegar tree|Rhus glabra|sumac (generic term)|sumach (generic term)|shumac (generic term)
+smooth winterberry holly|1
+(noun)|holly (generic term)
+smooth woodsia|1
+(noun)|Woodsia glabella|woodsia (generic term)
+smoothbark|1
+(noun)|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+smoothbore|2
+(adj)|unrifled|rifled (antonym)
+(noun)|firearm (generic term)|piece (generic term)|small-arm (generic term)
+smoothed|1
+(adj)|smoothened|ironed (similar term)
+smoothen|3
+(verb)|smooth|change surface (generic term)|smooth over (related term)|roughen (antonym)
+(verb)|polish|smooth|shine|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|change (generic term)
+smoothened|1
+(adj)|smoothed|ironed (similar term)
+smoother|1
+(noun)|drum sander|electric sander|sander|power tool (generic term)
+smoothhound|1
+(noun)|smoothhound shark|Mustelus mustelus|smooth dogfish (generic term)
+smoothhound shark|1
+(noun)|smoothhound|Mustelus mustelus|smooth dogfish (generic term)
+smoothie|2
+(noun)|smoothy|sweet talker|charmer|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+smoothing iron|1
+(noun)|iron|home appliance (generic term)|household appliance (generic term)
+smoothing plane|1
+(noun)|smooth plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+smoothly|1
+(adv)|swimmingly
+smoothness|5
+(noun)|texture (generic term)|roughness (antonym)
+(noun)|eloquence|fluency|expressive style (generic term)|style (generic term)
+(noun)|suavity|suaveness|blandness|graciousness (generic term)
+(noun)|evenness (generic term)|invariability (generic term)
+(noun)|effortlessness (generic term)
+smoothy|1
+(noun)|smoothie|sweet talker|charmer|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+smorgasbord|2
+(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|variety|salmagundi|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|buffet (generic term)
+smother|7
+(noun)|clutter|jumble|muddle|fuddle|mare's nest|welter|disorderliness (generic term)|disorder (generic term)
+(noun)|smoke (generic term)|fume (generic term)
+(verb)|surround|cover (generic term)
+(verb)|asphyxiate|suffocate|kill (generic term)
+(verb)|stifle|strangle|muffle|repress|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+(verb)|put out|snuff out (generic term)|extinguish (generic term)
+smothered|2
+(adj)|stifled|strangled|suppressed|inhibited (similar term)
+(adj)|covered (similar term)
+smotherer|1
+(noun)|stifler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+smothering|1
+(adj)|suffocating|suffocative|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+smoulder|3
+(noun)|smolder|fire (generic term)
+(verb)|smolder|feel (generic term)|experience (generic term)
+(verb)|smolder|burn (generic term)|combust (generic term)
+smouldering|1
+(adj)|smoldering|angry (similar term)
+smoulderingly|1
+(adv)|smolderingly
+smudge|3
+(noun)|fire (generic term)
+(noun)|spot|blot|daub|smear|smirch|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(verb)|smear|blur|smutch|rub (generic term)
+smudgy|1
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+smug|1
+(adj)|self-satisfied|contented (similar term)|content (similar term)
+smuggle|1
+(verb)|export (generic term)|import (generic term)
+smuggled|1
+(adj)|bootleg|black|black-market|contraband|illegal (similar term)
+smuggler|1
+(noun)|runner|contrabandist|moon curser|moon-curser|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+smuggling|1
+(noun)|importing (generic term)|importation (generic term)
+smugness|1
+(noun)|complacency (generic term)|complacence (generic term)|self-complacency (generic term)|self-satisfaction (generic term)
+smut|9
+(noun)|carbon black|lampblack|soot|crock|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(noun)|plant disease (generic term)
+(noun)|smut fungus|fungus (generic term)
+(noun)|obscenity|vulgarism|filth|dirty word|profanity (generic term)
+(noun)|pornography|porno|porn|erotica|creation (generic term)|creative activity (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|stain (generic term)
+(verb)|mold (generic term)|mildew (generic term)
+(verb)|infect (generic term)|taint (generic term)
+smut fungus|1
+(noun)|smut|fungus (generic term)
+smut grass|1
+(noun)|blackseed|carpet grass|Sporobolus poiretii|dropseed (generic term)|drop-seed (generic term)
+smutch|1
+(verb)|smear|blur|smudge|rub (generic term)
+smuts|1
+(noun)|Smuts|Jan Christian Smuts|soldier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+smuttily|1
+(adv)|vulgarly
+smuttiness|2
+(noun)|sootiness|dirtiness (generic term)|uncleanness (generic term)
+(noun)|dirtiness|obscenity (generic term)|lewdness (generic term)|bawdiness (generic term)|salaciousness (generic term)|salacity (generic term)
+smutty|2
+(adj)|filthy|foul|nasty|dirty (similar term)
+(adj)|black|dirty (similar term)|soiled (similar term)|unclean (similar term)
+smyrna|1
+(noun)|Izmir|Smyrna|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+smyrnium|1
+(noun)|Smyrnium|genus Smyrnium|rosid dicot genus (generic term)
+smyrnium olusatrum|1
+(noun)|Alexander|Alexanders|black lovage|horse parsley|Smyrnium olusatrum|herb (generic term)|herbaceous plant (generic term)
+sn|1
+(noun)|tin|Sn|atomic number 50|metallic element (generic term)|metal (generic term)
+snack|2
+(noun)|bite|collation|meal (generic term)|repast (generic term)
+(verb)|nosh|eat (generic term)
+snack bar|1
+(noun)|snack counter|buffet|bar (generic term)
+snack counter|1
+(noun)|snack bar|buffet|bar (generic term)
+snack food|1
+(noun)|dish (generic term)
+snacker|1
+(noun)|nosher|eater (generic term)|feeder (generic term)
+snaffle|3
+(noun)|snaffle bit|bit (generic term)
+(verb)|snap up|grab|take (generic term)
+(verb)|bridle (generic term)
+snaffle bit|1
+(noun)|snaffle|bit (generic term)
+snafu|3
+(adj)|fucked-up|disorganized (similar term)|disorganised (similar term)
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|snarl (generic term)|snarl up (generic term)|embrangle (generic term)
+snag|7
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|tree (generic term)
+(noun)|rip|rent|split|tear|opening (generic term)|gap (generic term)
+(noun)|hang-up|hitch|rub|obstacle (generic term)|obstruction (generic term)
+(verb)|hitch (generic term)|catch (generic term)
+(verb)|obtain (generic term)
+(verb)|hew (generic term)
+snail|3
+(noun)|gastropod (generic term)|univalve (generic term)
+(noun)|escargot|meat (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+snail-flower|1
+(noun)|snailflower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+snail-like|1
+(adj)|animal (similar term)
+snail bean|1
+(noun)|snailflower|snail-flower|snail flower|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+snail butter|1
+(noun)|sauce (generic term)
+snail darter|1
+(noun)|Percina tanasi|perch (generic term)
+snail flower|1
+(noun)|snailflower|snail-flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+snail mail|1
+(noun)|mail (generic term)|mail service (generic term)|postal service (generic term)|post (generic term)|electronic mail (antonym)|e-mail (antonym)|email (antonym)
+snailfish|1
+(noun)|seasnail|sea snail|Liparis liparis|scorpaenoid (generic term)|scorpaenoid fish (generic term)
+snailflower|1
+(noun)|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+snake|8
+(noun)|serpent|ophidian|diapsid (generic term)|diapsid reptile (generic term)
+(noun)|snake in the grass|bad person (generic term)
+(noun)|Snake|Snake River|river (generic term)
+(noun)|Hydra|Snake|constellation (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(verb)|glide (generic term)
+(verb)|wind (generic term)|twist (generic term)|curve (generic term)
+(verb)|weave (generic term)|wind (generic term)|thread (generic term)|meander (generic term)|wander (generic term)
+snake's head fritillary|1
+(noun)|guinea-hen flower|checkered daffodil|leper lily|Fritillaria meleagris|fritillary (generic term)|checkered lily (generic term)
+snake-fish|1
+(noun)|lizardfish|snakefish|soft-finned fish (generic term)|malacopterygian (generic term)
+snake-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+snake-head|1
+(noun)|shellflower|shell-flower|turtlehead|snakehead|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+snake-like|1
+(adj)|snake-shaped|animal (similar term)
+snake-rail fence|1
+(noun)|worm fence|snake fence|Virginia fence|rail fence (generic term)
+snake-shaped|1
+(adj)|snake-like|animal (similar term)
+snake charmer|1
+(noun)|performer (generic term)|performing artist (generic term)
+snake dance|2
+(noun)|file (generic term)|single file (generic term)|Indian file (generic term)
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+snake doctor|1
+(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake feeder|mosquito hawk|skeeter hawk|odonate (generic term)
+snake eyes|1
+(noun)|craps|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+snake feeder|1
+(noun)|dragonfly|darning needle|devil's darning needle|sewing needle|snake doctor|mosquito hawk|skeeter hawk|odonate (generic term)
+snake fence|1
+(noun)|worm fence|snake-rail fence|Virginia fence|rail fence (generic term)
+snake fern|1
+(noun)|climbing maidenhair|climbing maidenhair fern|Lygodium microphyllum|climbing fern (generic term)
+snake god|1
+(noun)|zombi|zombie|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+snake in the grass|1
+(noun)|snake|bad person (generic term)
+snake mackerel|1
+(noun)|Gempylus serpens|gempylid (generic term)
+snake muishond|1
+(noun)|Poecilogale albinucha|muishond (generic term)
+snake oil|2
+(noun)|liquid (generic term)
+(noun)|humbug|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+snake palm|1
+(noun)|devil's tongue|umbrella arum|Amorphophallus rivieri|arum (generic term)|aroid (generic term)
+snake pit|2
+(noun)|hell|hell on earth|hellhole|the pits|inferno|region (generic term)|part (generic term)
+(noun)|Bedlam|booby hatch|crazy house|cuckoo's nest|funny farm|funny house|loony bin|madhouse|nut house|nuthouse|sanatorium|mental hospital (generic term)|psychiatric hospital (generic term)|mental institution (generic term)|institution (generic term)|mental home (generic term)|insane asylum (generic term)|asylum (generic term)
+snake plant|1
+(noun)|mother-in-law's tongue|Sansevieria trifasciata|sansevieria (generic term)|bowstring hemp (generic term)
+snake polypody|1
+(noun)|Microgramma-piloselloides|fern (generic term)
+snake river|1
+(noun)|Snake|Snake River|river (generic term)
+snake venom|1
+(noun)|venom (generic term)
+snake wood|1
+(noun)|trumpetwood|trumpet-wood|trumpet tree|imbauba|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+snakeberry|1
+(noun)|red baneberry|redberry|red-berry|Actaea rubra|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+snakebird|1
+(noun)|anhinga|darter|pelecaniform seabird (generic term)
+snakebite|1
+(noun)|bite (generic term)
+snakeblenny|1
+(noun)|Lumpenus lumpretaeformis|prickleback (generic term)
+snakefish|1
+(noun)|lizardfish|snake-fish|soft-finned fish (generic term)|malacopterygian (generic term)
+snakefly|1
+(noun)|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+snakehead|1
+(noun)|shellflower|shell-flower|turtlehead|snake-head|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+snakelike|1
+(adj)|serpentine|snaky|curved (similar term)|curving (similar term)
+snakeroot|2
+(noun)|sanicle|herb (generic term)|herbaceous plant (generic term)
+(noun)|blazing star|button snakeroot|gayfeather|gay-feather|wildflower (generic term)|wild flower (generic term)
+snakes and ladders|1
+(noun)|board game (generic term)
+snakeweed|1
+(noun)|rabbitweed|rabbit-weed|broom snakeweed|broom snakeroot|turpentine weed|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+snakewood|1
+(noun)|Rauwolfia serpentina|rauwolfia (generic term)|rauvolfia (generic term)
+snaky|1
+(adj)|serpentine|snakelike|curved (similar term)|curving (similar term)
+snap|25
+(noun)|catch|grab|snatch|touch (generic term)|touching (generic term)
+(noun)|while (generic term)|piece (generic term)|spell (generic term)|patch (generic term)
+(noun)|snap bean|green bean (generic term)
+(noun)|gingersnap|ginger snap|ginger nut|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+(noun)|noise (generic term)
+(noun)|crack|cracking|noise (generic term)
+(noun)|break (generic term)
+(noun)|elasticity|physical property (generic term)|inelasticity (antonym)
+(noun)|snapshot|shot|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|snap fastener|press stud|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|cinch|breeze|picnic|duck soup|child's play|pushover|walkover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|centering|pass (generic term)|toss (generic term)|flip (generic term)
+(verb)|snarl|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|tear|rupture|bust|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|tear up (related term)|tear apart (related term)|tear down (related term)
+(verb)|crack|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+(verb)|click|move (generic term)
+(verb)|close (generic term)|shut (generic term)
+(verb)|crack|sound (generic term)|go (generic term)
+(verb)|move (generic term)
+(verb)|snatch|snatch up|seize (generic term)|prehend (generic term)|clutch (generic term)|snap up (related term)
+(verb)|hit (generic term)
+(verb)|click|flick|move (generic term)
+(verb)|break down|lose it|act (generic term)|behave (generic term)|do (generic term)
+(verb)|photograph|shoot|record (generic term)|enter (generic term)|put down (generic term)
+snap at|1
+(verb)|bite off|bite (generic term)|seize with teeth (generic term)
+snap bean|1
+(noun)|snap|green bean (generic term)
+snap fastener|1
+(noun)|snap|press stud|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+snap line|1
+(noun)|chalk line|snapline|string (generic term)|twine (generic term)
+snap off|1
+(verb)|break|break off|detach (generic term)
+snap pea|1
+(noun)|sugar snap pea|edible-pod pea (generic term)|edible-podded pea (generic term)|Pisum sativum macrocarpon (generic term)
+snap ring|1
+(noun)|carabiner|karabiner|hoop (generic term)|ring (generic term)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+snap roll|1
+(noun)|roll (generic term)
+snap up|1
+(verb)|snaffle|grab|take (generic term)
+snap willow|1
+(noun)|crack willow|brittle willow|Salix fragilis|willow (generic term)|willow tree (generic term)
+snapdragon|1
+(noun)|flower (generic term)
+snapline|1
+(noun)|chalk line|snap line|string (generic term)|twine (generic term)
+snapper|6
+(noun)|center|lineman (generic term)
+(noun)|saltwater fish (generic term)
+(noun)|cracker|cracker bonbon|party favor (generic term)|party favour (generic term)|favor (generic term)|favour (generic term)
+(noun)|Chrysophrys auratus|sparid (generic term)|sparid fish (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)|food fish (generic term)
+(noun)|common snapping turtle|Chelydra serpentina|snapping turtle (generic term)
+snapping beetle|1
+(noun)|click beetle|skipjack|elaterid beetle (generic term)|elater (generic term)|elaterid (generic term)
+snapping shrimp|1
+(noun)|pistol shrimp|shrimp (generic term)
+snapping turtle|1
+(noun)|turtle (generic term)
+snappish|1
+(adj)|snappy|ill-natured (similar term)
+snappishness|1
+(noun)|temper|biliousness|irritability|peevishness|pettishness|surliness|ill nature (generic term)
+snappy|5
+(adj)|snappish|ill-natured (similar term)
+(adj)|whipping|spirited (similar term)
+(adj)|crisp|frosty|nipping|nippy|parky|cold (similar term)
+(adj)|dapper|dashing|jaunty|natty|raffish|rakish|spiffy|spruce|fashionable (similar term)|stylish (similar term)
+(adj)|brisk|lively|merry|rattling|spanking|zippy|energetic (similar term)
+snapshot|1
+(noun)|snap|shot|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+snapshot program|1
+(noun)|trace program (generic term)
+snare|7
+(noun)|trap|design (generic term)|plan (generic term)
+(noun)|snare drum|side drum|drum (generic term)|membranophone (generic term)|tympan (generic term)
+(noun)|surgical instrument (generic term)
+(noun)|string (generic term)
+(noun)|gin|noose|trap (generic term)
+(verb)|trap|entrap|ensnare|trammel|capture (generic term)|catch (generic term)
+(verb)|hook|entice (generic term)|lure (generic term)|tempt (generic term)
+snare drum|1
+(noun)|snare|side drum|drum (generic term)|membranophone (generic term)|tympan (generic term)
+snarer|1
+(noun)|hunter (generic term)|huntsman (generic term)
+snarf|1
+(verb)|pilfer|cabbage|purloin|pinch|abstract|swipe|hook|sneak|filch|nobble|lift|steal (generic term)
+snarl|7
+(noun)|utterance (generic term)|vocalization (generic term)
+(noun)|facial expression (generic term)|facial gesture (generic term)
+(noun)|tangle|maze|perplexity (generic term)
+(verb)|snap|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|entangle|tangle|mat|twist (generic term)|twine (generic term)|distort (generic term)|unsnarl (antonym)|disentangle (antonym)
+(verb)|snarl up|embrangle|complicate (generic term)|perplex (generic term)
+snarl-up|1
+(noun)|traffic jam|crush (generic term)|jam (generic term)|press (generic term)
+snarl up|1
+(verb)|snarl|embrangle|complicate (generic term)|perplex (generic term)
+snarled|1
+(adj)|knotted|knotty|snarly|tangled (similar term)
+snarly|1
+(adj)|knotted|knotty|snarled|tangled (similar term)
+snatch|7
+(noun)|bit|fragment (generic term)
+(noun)|cunt|puss|pussy|slit|twat|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+(noun)|kidnapping|capture (generic term)|seizure (generic term)
+(noun)|weightlift (generic term)|weightlifting (generic term)
+(noun)|catch|grab|snap|touch (generic term)|touching (generic term)
+(verb)|snatch up|snap|seize (generic term)|prehend (generic term)|clutch (generic term)|snap up (related term)
+(verb)|kidnap|nobble|abduct|seize (generic term)
+snatch block|1
+(noun)|fairlead (generic term)
+snatch up|1
+(verb)|snatch|snap|seize (generic term)|prehend (generic term)|clutch (generic term)|snap up (related term)
+snatcher|2
+(noun)|thief (generic term)|stealer (generic term)
+(noun)|kidnapper|kidnaper|abductor|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)|captor (generic term)|capturer (generic term)
+snazzy|1
+(adj)|stylish (similar term)|fashionable (similar term)
+snead|1
+(noun)|Snead|Sam Snead|Samuel Jackson Snead|golfer (generic term)|golf player (generic term)|linksman (generic term)
+sneak|8
+(adj)|furtive|sneaky|stealthy|surreptitious|concealed (similar term)
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|prowler|stalker|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|fink|snitch|snitcher|stoolpigeon|stool pigeon|stoolie|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(verb)|mouse|creep|pussyfoot|walk (generic term)|sneak away (related term)|sneak out (related term)
+(verb)|act (generic term)|move (generic term)
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|swipe|hook|filch|nobble|lift|steal (generic term)
+(verb)|slip|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+sneak away|1
+(verb)|slip away|steal away|sneak off|sneak out|leave (generic term)|go forth (generic term)|go away (generic term)
+sneak in|2
+(verb)|creep in|penetrate (generic term)|perforate (generic term)
+(verb)|slip in|stick in|insert|add (generic term)|append (generic term)|supply (generic term)
+sneak off|1
+(verb)|slip away|steal away|sneak away|sneak out|leave (generic term)|go forth (generic term)|go away (generic term)
+sneak out|1
+(verb)|slip away|steal away|sneak away|sneak off|leave (generic term)|go forth (generic term)|go away (generic term)
+sneak preview|1
+(noun)|preview (generic term)
+sneak thief|1
+(noun)|pilferer|snitcher|thief (generic term)|stealer (generic term)
+sneak up|1
+(verb)|creep up|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+sneaker|2
+(noun)|gym shoe|tennis shoe|shoe (generic term)
+(noun)|fink|snitch|snitcher|stoolpigeon|stool pigeon|stoolie|sneak|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+sneakily|1
+(adv)|surreptitiously
+sneakiness|1
+(noun)|furtiveness|stealthiness|closeness (generic term)|secretiveness (generic term)
+sneaking|1
+(adj)|unavowed|concealed (similar term)
+sneaky|2
+(adj)|underhand|underhanded|crooked (similar term)|corrupt (similar term)
+(adj)|furtive|sneak|stealthy|surreptitious|concealed (similar term)
+sneer|4
+(noun)|leer|contempt (generic term)|scorn (generic term)
+(noun)|contempt (generic term)|scorn (generic term)
+(verb)|express (generic term)|show (generic term)|evince (generic term)
+(verb)|smile (generic term)
+sneerer|1
+(noun)|scorner|unpleasant person (generic term)|disagreeable person (generic term)
+sneering|1
+(adj)|supercilious|snide|uncomplimentary (similar term)
+sneeringly|1
+(adv)|superciliously|snidely
+sneeze|2
+(noun)|sneezing|sternutation|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|act involuntarily (generic term)|act reflexively (generic term)
+sneezer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sneezeweed|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+sneezeweed yarrow|1
+(noun)|sneezewort|Achillea ptarmica|achillea (generic term)
+sneezewort|1
+(noun)|sneezeweed yarrow|Achillea ptarmica|achillea (generic term)
+sneezing|1
+(noun)|sneeze|sternutation|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+sneezy|1
+(adj)|ill (similar term)|sick (similar term)
+snellen|1
+(noun)|Snellen|Hermann Snellen|ophthalmologist (generic term)|eye doctor (generic term)|oculist (generic term)
+snellen chart|1
+(noun)|Snellen chart|display (generic term)|presentation (generic term)
+snellen test|1
+(noun)|Snellen test|test (generic term)|trial (generic term)|run (generic term)
+snick|4
+(noun)|notch|nick|cut (generic term)|cutting (generic term)
+(noun)|contact (generic term)|physical contact (generic term)
+(verb)|hit (generic term)
+(verb)|nick|cut (generic term)
+snicker|2
+(noun)|snort|snigger|laugh (generic term)|laughter (generic term)
+(verb)|snigger|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+snickersnee|1
+(noun)|knife fight|cut-and-thrust|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+snide|1
+(adj)|supercilious|sneering|uncomplimentary (similar term)
+snidely|1
+(adv)|sneeringly|superciliously
+sniff|3
+(noun)|snuff|smell (generic term)|smelling (generic term)
+(verb)|whiff|smell (generic term)|sniff out (related term)
+(verb)|sniffle|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+sniff out|1
+(verb)|scent out|smell out|nose out
+sniffer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sniffle|3
+(noun)|snuffle|snivel|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(verb)|snivel|blubber|blub|snuffle|cry (generic term)|weep (generic term)
+(verb)|sniff|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+sniffler|1
+(noun)|sniveler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sniffly|1
+(adj)|snuffling|snuffly|tearful (similar term)
+sniffy|1
+(adj)|disdainful|haughty|lordly|prideful|supercilious|swaggering|proud (similar term)
+snifter|1
+(noun)|brandy snifter|brandy glass|glass (generic term)|drinking glass (generic term)
+snigger|2
+(noun)|snicker|snort|laugh (generic term)|laughter (generic term)
+(verb)|snicker|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+snip|4
+(noun)|snippet|snipping|piece (generic term)
+(noun)|clip|clipping|cut (generic term)|cutting (generic term)|cutting off (generic term)
+(verb)|nip|nip off|clip|snip off|cut (generic term)
+(verb)|clip|crop|trim|lop|dress|prune|cut back|thin out (generic term)
+snip off|1
+(verb)|nip|nip off|clip|snip|cut (generic term)
+snipe|5
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+(noun)|gunfire (generic term)|gunshot (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+(verb)|sharpshoot|shoot (generic term)
+(verb)|attack|round|assail|lash out|assault|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+snipe hunt|1
+(noun)|practical joke (generic term)
+snipefish|1
+(noun)|bellows fish|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+sniper|1
+(noun)|marksman (generic term)|sharpshooter (generic term)|crack shot (generic term)
+sniper rifle|1
+(noun)|precision rifle|rifle (generic term)
+snippet|1
+(noun)|snip|snipping|piece (generic term)
+snipping|1
+(noun)|snip|snippet|piece (generic term)
+snips|1
+(noun)|tinsnips|shears (generic term)
+snit|1
+(noun)|irritation (generic term)|annoyance (generic term)|vexation (generic term)|botheration (generic term)
+snitch|3
+(noun)|fink|snitcher|stoolpigeon|stool pigeon|stoolie|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(verb)|hook|thieve|cop|knock off|glom|steal (generic term)
+(verb)|denounce|tell on|betray|give away|rat|grass|shit|shop|stag|inform (generic term)
+snitcher|2
+(noun)|sneak thief|pilferer|thief (generic term)|stealer (generic term)
+(noun)|fink|snitch|stoolpigeon|stool pigeon|stoolie|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+snivel|5
+(noun)|sniveling|crying (generic term)|weeping (generic term)|tears (generic term)
+(noun)|snuffle|sniffle|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(verb)|whine|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|snuffle|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|sniffle|blubber|blub|snuffle|cry (generic term)|weep (generic term)
+sniveler|1
+(noun)|sniffler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sniveling|1
+(noun)|snivel|crying (generic term)|weeping (generic term)|tears (generic term)
+sniveller|1
+(noun)|whiner|complainer|moaner|crybaby|bellyacher|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+sno-cat|1
+(noun)|Sno-cat|snowmobile (generic term)
+snob|1
+(noun)|prig|snot|snoot|unpleasant person (generic term)|disagreeable person (generic term)
+snobbery|1
+(noun)|snobbism|snobbishness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+snobbish|1
+(adj)|clannish|cliquish|clubby|snobby|private (similar term)
+snobbishly|1
+(adv)|snootily|uppishly
+snobbishness|1
+(noun)|snobbery|snobbism|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+snobbism|1
+(noun)|snobbery|snobbishness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+snobby|1
+(adj)|clannish|cliquish|clubby|snobbish|private (similar term)
+snog|1
+(verb)|smooch|spoon|neck (generic term)|make out (generic term)
+snogging|1
+(noun)|caressing (generic term)|cuddling (generic term)|fondling (generic term)|hugging (generic term)|kissing (generic term)|necking (generic term)|petting (generic term)|smooching (generic term)|snuggling (generic term)
+snood|1
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+snook|1
+(noun)|robolo (generic term)
+snooker|3
+(noun)|pool (generic term)|pocket billiards (generic term)
+(verb)|flim-flam (generic term)|trick (generic term)|fob (generic term)|fox (generic term)|pull a fast one on (generic term)|play a trick on (generic term)
+(verb)|play (generic term)
+snooker table|1
+(noun)|pool table|billiard table|table (generic term)|game equipment (generic term)
+snoop|2
+(noun)|snooper|spy (generic term)
+(verb)|spy|stag|sleuth|monitor (generic term)|supervise (generic term)|ride herd on (generic term)
+snooper|1
+(noun)|snoop|spy (generic term)
+snoopiness|1
+(noun)|nosiness|prying|curiousness (generic term)|inquisitiveness (generic term)
+snoopy|2
+(adj)|nosy|nosey|prying|curious (similar term)
+(noun)|Snoopy|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+snoot|2
+(noun)|snob|prig|snot|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|beak|honker|hooter|nozzle|snout|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+snootily|1
+(adv)|snobbishly|uppishly
+snootiness|1
+(noun)|quality (generic term)
+snooty|1
+(adj)|bigheaded|persnickety|snot-nosed|snotty|stuck-up|too big for one's breeches|uppish|proud (similar term)
+snooze|2
+(noun)|nap|catnap|cat sleep|forty winks|short sleep|sleeping (generic term)
+(verb)|drowse|doze|nap (generic term)|catnap (generic term)|catch a wink (generic term)|doze off (related term)
+snore|3
+(noun)|noise (generic term)
+(noun)|snoring|stertor|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(verb)|saw wood|saw logs|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+snorer|1
+(noun)|sleeper (generic term)|slumberer (generic term)
+snoring|2
+(adj)|breathing (similar term)|eupneic (similar term)|eupnoeic (similar term)
+(noun)|snore|stertor|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+snorkel|3
+(noun)|breathing device (generic term)|breathing apparatus (generic term)|breathing machine (generic term)|ventilator (generic term)
+(noun)|schnorkel|schnorchel|snorkel breather|breather|air passage (generic term)|air duct (generic term)|airway (generic term)
+(verb)|dive (generic term)
+snorkel breather|1
+(noun)|snorkel|schnorkel|schnorchel|breather|air passage (generic term)|air duct (generic term)|airway (generic term)
+snorkel diving|1
+(noun)|snorkeling|skin diving (generic term)|skin-dive (generic term)
+snorkeling|1
+(noun)|snorkel diving|skin diving (generic term)|skin-dive (generic term)
+snort|6
+(noun)|snicker|snigger|laugh (generic term)|laughter (generic term)
+(noun)|boo|hoot|Bronx cheer|hiss|raspberry|razzing|razz|bird|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|exhale (generic term)|expire (generic term)|breathe out (generic term)
+(verb)|huff|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|take a hit|drug (generic term)|do drugs (generic term)
+snorter|3
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|difficulty (generic term)
+(noun)|thing (generic term)
+snorting|2
+(adj)|breathing (similar term)|eupneic (similar term)|eupnoeic (similar term)
+(noun)|puffing|huffing|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+snorty|1
+(adj)|shirty|ill-natured (similar term)
+snot|2
+(noun)|snob|prig|snoot|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|mucus (generic term)|mucous secretion (generic term)
+snot-nosed|2
+(adj)|bigheaded|persnickety|snooty|snotty|stuck-up|too big for one's breeches|uppish|proud (similar term)
+(adj)|snotty|dirty (similar term)|soiled (similar term)|unclean (similar term)
+snotty|2
+(adj)|bigheaded|persnickety|snooty|snot-nosed|stuck-up|too big for one's breeches|uppish|proud (similar term)
+(adj)|snot-nosed|dirty (similar term)|soiled (similar term)|unclean (similar term)
+snotty-nosed|1
+(adj)|impudent|insolent|flip|disrespectful (similar term)
+snout|3
+(noun)|neb|nose (generic term)|olfactory organ (generic term)
+(noun)|beak|honker|hooter|nozzle|snoot|schnozzle|schnoz|nose (generic term)|olfactory organ (generic term)
+(noun)|rostrum|nose (generic term)|olfactory organ (generic term)
+snout beetle|1
+(noun)|weevil (generic term)
+snow|6
+(noun)|snowfall|precipitation (generic term)|downfall (generic term)
+(noun)|layer (generic term)
+(noun)|Snow|C. P. Snow|Charles Percy Snow|Baron Snow of Leicester|writer (generic term)|author (generic term)
+(noun)|coke|blow|nose candy|C|cocaine (generic term)|cocain (generic term)
+(verb)|precipitate (generic term)|come down (generic term)|fall (generic term)
+(verb)|bamboozle|hoodwink|pull the wool over someone's eyes|lead by the nose|play false|deceive (generic term)|betray (generic term)|lead astray (generic term)
+snow-blind|2
+(adj)|snow-blinded|blind (similar term)|unsighted (similar term)
+(verb)|blind (generic term)
+snow-blinded|1
+(adj)|snow-blind|blind (similar term)|unsighted (similar term)
+snow-blindness|1
+(noun)|snowblindness|blindness (generic term)|sightlessness (generic term)|cecity (generic term)
+snow-capped|1
+(adj)|covering|natural covering|cover (related term)
+snow-clad|1
+(adj)|snow-covered|snowy|covered (similar term)
+snow-covered|1
+(adj)|snow-clad|snowy|covered (similar term)
+snow-in-summer|2
+(noun)|snow-on-the-mountain|ghost weed|Euphorbia marginata|spurge (generic term)
+(noun)|love-in-a-mist|Cerastium tomentosum|mouse-ear chickweed (generic term)|mouse eared chickweed (generic term)|mouse ear (generic term)|clammy chickweed (generic term)|chickweed (generic term)
+snow-on-the-mountain|1
+(noun)|snow-in-summer|ghost weed|Euphorbia marginata|spurge (generic term)
+snow-white|1
+(adj)|snowy|achromatic (similar term)
+snow blower|1
+(noun)|snow thrower|machine (generic term)
+snow bunting|1
+(noun)|snowbird|snowflake|Plectrophenax nivalis|bunting (generic term)
+snow chain|1
+(noun)|tire chain|chain (generic term)
+snow eater|1
+(noun)|chinook|chinook wind|wind (generic term)|air current (generic term)|current of air (generic term)
+snow flurry|1
+(noun)|flurry|snow (generic term)|snowfall (generic term)
+snow goose|1
+(noun)|blue goose (generic term)|Chen caerulescens (generic term)
+snow gum|1
+(noun)|ghost gum|white ash|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+snow job|1
+(noun)|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+snow leopard|1
+(noun)|ounce|Panthera uncia|big cat (generic term)|cat (generic term)
+snow lily|1
+(noun)|glacier lily|Erythronium grandiflorum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+snow line|1
+(noun)|line (generic term)
+snow mist|1
+(noun)|ice crystal|diamond dust|poudrin|ice needle|frost snow|frost mist|crystal (generic term)
+snow mushroom|1
+(noun)|Tremella fuciformis|jelly fungus (generic term)
+snow orchid|1
+(noun)|phantom orchid|Eburophyton austinae|orchid (generic term)|orchidaceous plant (generic term)
+snow pea|2
+(noun)|sugar pea|edible-pod pea (generic term)|edible-podded pea (generic term)|Pisum sativum macrocarpon (generic term)
+(noun)|sugar pea|green pea (generic term)|garden pea (generic term)
+snow plant|1
+(noun)|Sarcodes sanguinea|wildflower (generic term)|wild flower (generic term)
+snow thrower|1
+(noun)|snow blower|machine (generic term)
+snow tire|1
+(noun)|pneumatic tire (generic term)|pneumatic tyre (generic term)
+snow trillium|1
+(noun)|dwarf-white trillium|early wake-robin|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+snowball|5
+(noun)|sweet sand verbena|Abronia elliptica|sand verbena (generic term)
+(noun)|frozen dessert (generic term)
+(noun)|ball (generic term)
+(verb)|increase (generic term)
+(verb)|pelt (generic term)|bombard (generic term)
+snowbank|1
+(noun)|mound (generic term)|hill (generic term)
+snowbell|1
+(noun)|Styrax obassia|styrax (generic term)
+snowberry|1
+(noun)|common snowberry|waxberry|Symphoricarpos alba|poisonous plant (generic term)
+snowbird|3
+(noun)|fieldfare|Turdus pilaris|thrush (generic term)
+(noun)|snow bunting|snowflake|Plectrophenax nivalis|bunting (generic term)
+(noun)|junco|finch (generic term)
+snowblindness|1
+(noun)|snow-blindness|blindness (generic term)|sightlessness (generic term)|cecity (generic term)
+snowboard|2
+(noun)|board (generic term)
+(verb)|glide (generic term)
+snowboarder|1
+(noun)|skidder (generic term)|slider (generic term)|slipper (generic term)
+snowboarding|1
+(noun)|slide (generic term)|glide (generic term)|coast (generic term)
+snowbound|1
+(adj)|confined (similar term)
+snowcap|1
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+snowdrift|1
+(noun)|drift (generic term)
+snowdrop|1
+(noun)|wood anemone|Anemone quinquefolia|anemone (generic term)|windflower (generic term)
+snowdrop anemone|1
+(noun)|snowdrop windflower|Anemone sylvestris|anemone (generic term)|windflower (generic term)
+snowdrop tree|1
+(noun)|silver-bell tree|silverbell tree|opossum wood|Halesia carolina|Halesia tetraptera|silver bell (generic term)
+snowdrop windflower|1
+(noun)|snowdrop anemone|Anemone sylvestris|anemone (generic term)|windflower (generic term)
+snowfall|1
+(noun)|snow|precipitation (generic term)|downfall (generic term)
+snowfield|1
+(noun)|plain (generic term)|field (generic term)|champaign (generic term)
+snowflake|2
+(noun)|flake|crystal (generic term)
+(noun)|snow bunting|snowbird|Plectrophenax nivalis|bunting (generic term)
+snowman|1
+(noun)|figure (generic term)
+snowmobile|2
+(noun)|tracked vehicle (generic term)
+(verb)|ride (generic term)
+snowplough|1
+(noun)|snowplow|motor vehicle (generic term)|automotive vehicle (generic term)
+snowplow|1
+(noun)|snowplough|motor vehicle (generic term)|automotive vehicle (generic term)
+snowshoe|2
+(noun)|device (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+snowshoe hare|1
+(noun)|snowshoe rabbit|varying hare|Lepus americanus|hare (generic term)
+snowshoe rabbit|1
+(noun)|snowshoe hare|varying hare|Lepus americanus|hare (generic term)
+snowstorm|1
+(noun)|blizzard|storm (generic term)|violent storm (generic term)
+snowsuit|1
+(noun)|overgarment (generic term)|outer garment (generic term)
+snowy|3
+(adj)|white|covered (similar term)
+(adj)|snow-clad|snow-covered|covered (similar term)
+(adj)|snow-white|achromatic (similar term)
+snowy egret|1
+(noun)|snowy heron|Egretta thula|egret (generic term)
+snowy heron|1
+(noun)|snowy egret|Egretta thula|egret (generic term)
+snowy orchid|1
+(noun)|Habenaria nivea|fringed orchis (generic term)|fringed orchid (generic term)
+snowy tree cricket|1
+(noun)|Oecanthus fultoni|tree cricket (generic term)
+snub|5
+(adj)|short (similar term)
+(noun)|rebuff|repulse|rejection (generic term)
+(noun)|cut|cold shoulder|rebuff (generic term)|slight (generic term)
+(verb)|ignore|disregard|cut|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|rebuff|repel|reject (generic term)|spurn (generic term)|freeze off (generic term)|scorn (generic term)|pooh-pooh (generic term)|disdain (generic term)|turn down (generic term)
+snub-nosed|1
+(adj)|pug-nosed|pug-nose|short-nosed|nosed (similar term)
+snuff|7
+(adj)|snuff-brown|mummy-brown|chukker-brown|chromatic (similar term)
+(noun)|char (generic term)
+(noun)|touch (generic term)|hint (generic term)|tinge (generic term)|mite (generic term)|pinch (generic term)|jot (generic term)|speck (generic term)|soupcon (generic term)
+(noun)|tobacco (generic term)|baccy (generic term)
+(noun)|sniff|smell (generic term)|smelling (generic term)
+(verb)|snuffle|smell (generic term)
+(verb)|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+snuff-brown|1
+(adj)|snuff|mummy-brown|chukker-brown|chromatic (similar term)
+snuff-color|1
+(noun)|snuff-colour|yellowish brown (generic term)|raw sienna (generic term)|buff (generic term)|caramel (generic term)|caramel brown (generic term)
+snuff-colour|1
+(noun)|snuff-color|yellowish brown (generic term)|raw sienna (generic term)|buff (generic term)|caramel (generic term)|caramel brown (generic term)
+snuff it|1
+(verb)|die|decease|perish|go|exit|pass away|expire|pass|kick the bucket|cash in one's chips|buy the farm|conk|give-up the ghost|drop dead|pop off|choke|croak|change state (generic term)|turn (generic term)|die out (related term)|die off (related term)|die down (related term)|die down (related term)|be born (antonym)
+snuff out|2
+(verb)|extinguish|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+(verb)|blow out|extinguish|quench|ignite (antonym)
+snuff user|1
+(noun)|snuffer|consumer (generic term)
+snuffbox|1
+(noun)|box (generic term)
+snuffbox fern|1
+(noun)|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern (generic term)|Thelypteris palustris (generic term)|Dryopteris thelypteris (generic term)
+snuffer|3
+(noun)|implement (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|snuff user|consumer (generic term)
+snuffers|1
+(noun)|scissors (generic term)|pair of scissors (generic term)
+snuffle|4
+(noun)|sniffle|snivel|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(verb)|snuff|smell (generic term)
+(verb)|snivel|inhale (generic term)|inspire (generic term)|breathe in (generic term)
+(verb)|snivel|sniffle|blubber|blub|cry (generic term)|weep (generic term)
+snuffler|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+snuffling|1
+(adj)|sniffly|snuffly|tearful (similar term)
+snuffly|1
+(adj)|sniffly|snuffling|tearful (similar term)
+snug|5
+(adj)|protected (similar term)|secure (similar term)
+(adj)|close|close-fitting|tight (similar term)
+(adj)|tight (similar term)
+(adj)|cozy|cosy|comfortable (similar term)|comfy (similar term)
+(noun)|cubby|cubbyhole|snuggery|room (generic term)
+snuggery|1
+(noun)|cubby|cubbyhole|snug|room (generic term)
+snuggle|3
+(noun)|cuddle|nestle|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(verb)|cuddle|nestle|nest|nuzzle|draw close|cling to (generic term)|hold close (generic term)|hold tight (generic term)|clutch (generic term)
+(verb)|nestle|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+snuggled|1
+(adj)|nestled|close (similar term)
+snuggling|1
+(noun)|caressing|cuddling|fondling|hugging|kissing|necking|petting|smooching|foreplay (generic term)|arousal (generic term)|stimulation (generic term)
+snugness|1
+(noun)|coziness|cosiness|comfort (generic term)|comfortableness (generic term)
+so|4
+(noun)|sol|soh|solfa syllable (generic term)
+(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 (generic term)|disagreeable person (generic term)
+so-called|1
+(adj)|alleged|supposed|questionable (similar term)
+so-so|2
+(adj)|indifferent|ordinary (similar term)
+(adv)|acceptably|tolerably|intolerably (antonym)|unacceptably (antonym)
+so far|3
+(adv)|thus far|up to now|hitherto|heretofore|as yet|yet|til now|until now
+(adv)|insofar|in so far|to that extent|to that degree
+(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 (generic term)|word of farewell (generic term)
+so much|1
+(adj)|such|much (similar term)
+so to speak|2
+(adv)|as it were
+(adv)|as we say
+soak|11
+(noun)|soakage|soaking|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|soaking|wash (generic term)|washing (generic term)|lavation (generic term)
+(verb)|immerse (generic term)|plunge (generic term)
+(verb)|overcharge|surcharge|gazump|fleece|plume|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|drench|douse|dowse|sop|souse|wet (generic term)
+(verb)|pawn|hock|consign (generic term)|charge (generic term)
+(verb)|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|intoxicate|inebriate|affect (generic term)
+(verb)|souse|inebriate|hit it up|drink (generic term)|booze (generic term)|fuddle (generic term)
+(verb)|imbue|impregnate (generic term)|saturate (generic term)
+(verb)|heat (generic term)|heat up (generic term)
+soak through|1
+(verb)|sop|ooze through (generic term)
+soak up|2
+(verb)|absorb|suck|imbibe|sop up|suck up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|steep|immerse|engulf|plunge|engross|absorb|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+soakage|1
+(noun)|soak|soaking|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+soaked|2
+(adj)|drenched|saturated|soaking|sodden|sopping|soppy|wet (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+soaker|2
+(noun)|downpour|cloudburst|deluge|waterspout|torrent|pelter|rain (generic term)|rainfall (generic term)
+(noun)|alcoholic|alky|dipsomaniac|boozer|lush|souse|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+soaking|5
+(adj)|drenched|saturated|soaked|sodden|sopping|soppy|wet (similar term)
+(noun)|soak|soakage|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|drenching|souse|sousing|wetting (generic term)
+(noun)|soak|wash (generic term)|washing (generic term)|lavation (generic term)
+(adv)|sopping|dripping
+soaking up|1
+(noun)|absorption|sorption (generic term)
+soap|4
+(noun)|cleansing agent (generic term)|cleanser (generic term)|cleaner (generic term)
+(noun)|bribe (generic term)|payoff (generic term)
+(noun)|scoop|max|liquid ecstasy|grievous bodily harm|goop|Georgia home boy|easy lay|gamma hydroxybutyrate (generic term)|GHB (generic term)
+(verb)|lather|cleanse (generic term)|clean (generic term)
+soap-rock|1
+(noun)|soapstone|soaprock|steatite|talc (generic term)|talcum (generic term)
+soap-weed|1
+(noun)|soapweed|soap tree|Yucca elata|yucca (generic term)
+soap bubble|1
+(noun)|bubble (generic term)
+soap dish|1
+(noun)|fixture (generic term)
+soap dispenser|1
+(noun)|dispenser (generic term)
+soap film|1
+(noun)|film (generic term)
+soap flakes|1
+(noun)|soap (generic term)
+soap opera|1
+(noun)|serial (generic term)|series (generic term)
+soap pad|1
+(noun)|cleaning pad (generic term)
+soap powder|1
+(noun)|built-soap powder|washing powder|soap (generic term)
+soap tree|1
+(noun)|soapweed|soap-weed|Yucca elata|yucca (generic term)
+soapberry|1
+(noun)|soapberry tree|tree (generic term)
+soapberry family|1
+(noun)|Sapindaceae|family Sapindaceae|dicot family (generic term)|magnoliopsid family (generic term)
+soapberry tree|1
+(noun)|soapberry|tree (generic term)
+soapberry vine|1
+(noun)|vine (generic term)
+soapbox|2
+(noun)|crate (generic term)
+(noun)|dais|podium|pulpit|rostrum|ambo|stump|platform (generic term)
+soapfish|1
+(noun)|serranid fish (generic term)|serranid (generic term)
+soapiness|1
+(noun)|quality (generic term)
+soaprock|1
+(noun)|soapstone|soap-rock|steatite|talc (generic term)|talcum (generic term)
+soapstone|1
+(noun)|soaprock|soap-rock|steatite|talc (generic term)|talcum (generic term)
+soapsuds|1
+(noun)|suds|lather|foam (generic term)|froth (generic term)
+soapweed|1
+(noun)|soap-weed|soap tree|Yucca elata|yucca (generic term)
+soapwort|1
+(noun)|hedge pink|bouncing Bet|bouncing Bess|Saponaria officinalis|flower (generic term)
+soapwort gentian|1
+(noun)|Gentiana saponaria|gentian (generic term)
+soapy|2
+(adj)|saponaceous|cleansing agent|cleanser|cleaner (related term)
+(adj)|buttery|fulsome|oily|oleaginous|smarmy|unctuous|insincere (similar term)
+soar|6
+(noun)|zoom|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(verb)|soar up|soar upwards|surge|zoom|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|hang glide|fly (generic term)|aviate (generic term)|pilot (generic term)
+(verb)|fly (generic term)|wing (generic term)
+(verb)|rise (generic term)|go up (generic term)|climb (generic term)
+(verb)|sailplane|glide (generic term)
+soar up|1
+(verb)|soar|soar upwards|surge|zoom|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+soar upwards|1
+(verb)|soar|soar up|surge|zoom|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+soaring|4
+(adj)|high (similar term)
+(adj)|moving (similar term)
+(adj)|eminent|lofty|towering|high (similar term)
+(noun)|glide|gliding|sailplaning|sailing|flight (generic term)|flying (generic term)
+soave|1
+(noun)|Soave|white wine (generic term)
+sob|4
+(noun)|shortness of breath|SOB|breathlessness|dyspnea (generic term)|dyspnoea (generic term)
+(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|sobbing|crying (generic term)|weeping (generic term)|tears (generic term)
+(verb)|cry (generic term)|weep (generic term)
+sob sister|1
+(noun)|journalist (generic term)
+sob story|1
+(noun)|sob stuff|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+sob stuff|1
+(noun)|sob story|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+sobbing|1
+(noun)|sob|crying (generic term)|weeping (generic term)|tears (generic term)
+sober|6
+(adj)|cold sober (similar term)|stone-sober (similar term)|drug-free (similar term)|dry (similar term)|teetotal (similar term)|uninebriated (similar term)|unintoxicated (similar term)|intoxicated (antonym)
+(adj)|grave|sedate|solemn|serious (similar term)
+(adj)|drab|somber|sombre|colorless (similar term)|colourless (similar term)
+(adj)|unplayful|serious|playful (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sober up|become (generic term)|go (generic term)|get (generic term)
+sober up|1
+(verb)|sober|become (generic term)|go (generic term)|get (generic term)
+sobering|1
+(adj)|serious (similar term)
+soberly|1
+(adv)|gravely|staidly
+soberness|2
+(noun)|sobriety|temporary state (generic term)|drunkenness (antonym)
+(noun)|graveness|gravity|sobriety|somberness|sombreness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+sobersided|1
+(adj)|humorless (similar term)|humourless (similar term)|unhumorous (similar term)
+sobersides|1
+(noun)|adult (generic term)|grownup (generic term)
+sobralia|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+sobriety|4
+(noun)|soberness|temporary state (generic term)|drunkenness (antonym)
+(noun)|dryness|temperance (generic term)|moderation (generic term)
+(noun)|graveness|gravity|soberness|somberness|sombreness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+(noun)|temperance|abstinence (generic term)
+sobriquet|1
+(noun)|nickname|moniker|cognomen|soubriquet|byname|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+socage|1
+(noun)|service (generic term)
+soccer|1
+(noun)|association football|football (generic term)|football game (generic term)
+soccer ball|1
+(noun)|ball (generic term)
+soccer player|1
+(noun)|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+sociability|1
+(noun)|sociableness|sociality (generic term)|unsociability (antonym)
+sociable|3
+(adj)|clubbable (similar term)|clubable (similar term)|clubbish (similar term)|clubby (similar term)|companionable (similar term)|convivial (similar term)|good-time (similar term)|extroverted (similar term)|forthcoming (similar term)|outgoing (similar term)|social (similar term)|extroversive (related term)|extraversive (related term)|friendly (related term)|social (related term)|unsociable (antonym)
+(adj)|congenial (similar term)
+(noun)|social|mixer|party (generic term)
+sociableness|1
+(noun)|sociability|sociality (generic term)|unsociability (antonym)
+sociably|2
+(adv)|gregariously
+(adv)|unsociably (antonym)
+social|7
+(adj)|societal|social group (related term)
+(adj)|cultural (similar term)|ethnic (similar term)|ethnical (similar term)|gregarious (similar term)|interpersonal (similar term)|multiethnic (similar term)|multi-ethnic (similar term)|friendly (related term)|gregarious (related term)|sociable (related term)|unsocial (antonym)
+(adj)|elite|elite group (related term)
+(adj)|sociable (similar term)
+(adj)|gregarious (similar term)
+(adj)|friendly (similar term)
+(noun)|sociable|mixer|party (generic term)
+social action|1
+(noun)|social policy (generic term)
+social activity|1
+(noun)|group action (generic term)
+social affair|1
+(noun)|social gathering|gathering (generic term)|assemblage (generic term)
+social anthropologist|1
+(noun)|anthropologist (generic term)
+social anthropology|1
+(noun)|cultural anthropology|anthropology (generic term)
+social assistance|1
+(noun)|supplementary benefit|national assistance|social insurance (generic term)
+social class|1
+(noun)|class|socio-economic class|people (generic term)
+social climber|1
+(noun)|climber|upstart (generic term)|parvenu (generic term)|nouveau-riche (generic term)|arriviste (generic term)
+social club|1
+(noun)|club|society|guild|gild|lodge|order|association (generic term)
+social contract|1
+(noun)|agreement (generic term)|accord (generic term)
+social control|1
+(noun)|group action (generic term)
+social dancer|1
+(noun)|dancer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+social dancing|1
+(noun)|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+social democracy|1
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+social democratic party|1
+(noun)|Social Democratic Party|party (generic term)|political party (generic term)
+social development commission|1
+(noun)|Social Development Commission|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+social disease|1
+(noun)|venereal disease|VD|venereal infection|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+social drinker|1
+(noun)|tippler|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+social event|1
+(noun)|event (generic term)
+social function|1
+(noun)|affair|occasion|social occasion|function|social event (generic term)
+social gathering|1
+(noun)|social affair|gathering (generic term)|assemblage (generic term)
+social group|1
+(noun)|group (generic term)|grouping (generic term)
+social insurance|1
+(noun)|social welfare (generic term)|welfare (generic term)
+social intercourse|1
+(noun)|intercourse|intercommunication (generic term)
+social lion|1
+(noun)|lion|celebrity (generic term)|famous person (generic term)
+social movement|1
+(noun)|movement|front|social group (generic term)
+social occasion|1
+(noun)|affair|occasion|function|social function|social event (generic term)
+social organisation|1
+(noun)|social organization|social structure|social system|structure|system (generic term)|scheme (generic term)
+social organization|1
+(noun)|social organisation|social structure|social system|structure|system (generic term)|scheme (generic term)
+social phobia|1
+(noun)|phobia (generic term)|phobic disorder (generic term)|phobic neurosis (generic term)
+social policy|1
+(noun)|policy (generic term)
+social process|1
+(noun)|human process (generic term)
+social psychology|1
+(noun)|psychology (generic term)|psychological science (generic term)
+social rank|1
+(noun)|social station|social status|rank|status (generic term)|position (generic term)
+social reformer|1
+(noun)|reformer|reformist|crusader|meliorist|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+social relation|1
+(noun)|relation (generic term)
+social science|1
+(noun)|science (generic term)|scientific discipline (generic term)
+social scientist|1
+(noun)|scientist (generic term)|man of science (generic term)
+social season|1
+(noun)|season (generic term)
+social secretary|1
+(noun)|secretary (generic term)|secretarial assistant (generic term)
+social security|1
+(noun)|Social Security|social insurance (generic term)
+social security administration|1
+(noun)|Social Security Administration|SSA|independent agency (generic term)
+social security number|1
+(noun)|Social Security number|number (generic term)|identification number (generic term)
+social service|1
+(noun)|welfare work|work (generic term)
+social station|1
+(noun)|social status|social rank|rank|status (generic term)|position (generic term)
+social status|1
+(noun)|social station|social rank|rank|status (generic term)|position (generic term)
+social stratification|1
+(noun)|stratification|condition (generic term)
+social structure|1
+(noun)|social organization|social organisation|social system|structure|system (generic term)|scheme (generic term)
+social system|1
+(noun)|social organization|social organisation|social structure|structure|system (generic term)|scheme (generic term)
+social unit|1
+(noun)|unit|organization (generic term)|organisation (generic term)
+social welfare|1
+(noun)|welfare|financial aid (generic term)
+social work|1
+(noun)|welfare work (generic term)|social service (generic term)
+social worker|1
+(noun)|caseworker|welfare worker|public servant (generic term)
+socialisation|3
+(noun)|socialization|group action (generic term)
+(noun)|socialization|socializing|socialising|meeting (generic term)|coming together (generic term)
+(noun)|socialization|acculturation|enculturation|social control (generic term)
+socialise|4
+(verb)|socialize|interact (generic term)
+(verb)|socialize|educate (generic term)
+(verb)|socialize|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|socialize|change (generic term)|alter (generic term)|modify (generic term)
+socialised|1
+(adj)|socialized|liberal (similar term)
+socialiser|1
+(noun)|socializer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+socialising|1
+(noun)|socialization|socialisation|socializing|meeting (generic term)|coming together (generic term)
+socialism|2
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+(noun)|socialist economy|managed economy (generic term)|capitalism (antonym)
+socialist|3
+(adj)|socialistic|managed economy (related term)
+(adj)|socialistic|collective (similar term)|collectivist (similar term)|collectivistic (similar term)|collectivized (similar term)|collectivised (similar term)|state-controlled (similar term)|left (related term)|capitalistic (antonym)
+(noun)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+socialist economy|1
+(noun)|socialism|managed economy (generic term)|capitalism (antonym)
+socialist labor party|1
+(noun)|Socialist Labor Party|party (generic term)|political party (generic term)
+socialist party|1
+(noun)|Socialist Party|party (generic term)|political party (generic term)
+socialist people's libyan arab jamahiriya|1
+(noun)|Libya|Socialist People's Libyan Arab Jamahiriya|African country (generic term)|African nation (generic term)
+socialist republic of vietnam|1
+(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country (generic term)|Asian nation (generic term)
+socialistic|2
+(adj)|socialist|collective (similar term)|collectivist (similar term)|collectivistic (similar term)|collectivized (similar term)|collectivised (similar term)|state-controlled (similar term)|left (related term)|capitalistic (antonym)
+(adj)|socialist|managed economy (related term)
+socialite|1
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+sociality|1
+(noun)|nature (generic term)
+socialization|3
+(noun)|socialisation|group action (generic term)
+(noun)|socialisation|socializing|socialising|meeting (generic term)|coming together (generic term)
+(noun)|socialisation|acculturation|enculturation|social control (generic term)
+socialize|4
+(verb)|socialise|interact (generic term)
+(verb)|socialise|educate (generic term)
+(verb)|socialise|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|socialise|change (generic term)|alter (generic term)|modify (generic term)
+socialized|1
+(adj)|socialised|liberal (similar term)
+socializer|1
+(noun)|socialiser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+socializing|1
+(noun)|socialization|socialisation|socialising|meeting (generic term)|coming together (generic term)
+socially connected|1
+(adj)|well-connected|connected (similar term)
+societal|1
+(adj)|social|social group (related term)
+society|4
+(noun)|social group (generic term)
+(noun)|club|social club|guild|gild|lodge|order|association (generic term)
+(noun)|company|companionship|fellowship|friendship (generic term)|friendly relationship (generic term)
+(noun)|high society|beau monde|smart set|bon ton|elite (generic term)|elite group (generic term)
+society islands|1
+(noun)|Society Islands|archipelago (generic term)
+society of friends|1
+(noun)|Religious Society of Friends|Society of Friends|Quakers|sect (generic term)|religious sect (generic term)|religious order (generic term)
+society of jesus|1
+(noun)|Society of Jesus|Jesuit order|order (generic term)|monastic order (generic term)
+socinian|1
+(noun)|Socinian|disciple (generic term)|adherent (generic term)
+socinus|1
+(noun)|Socinus|Faustus Socinus|Fausto Paolo Sozzini|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+socio-economic class|1
+(noun)|class|social class|people (generic term)
+sociobiologic|1
+(adj)|sociobiological|biology|biological science (related term)
+sociobiological|1
+(adj)|sociobiologic|biology|biological science (related term)
+sociobiologist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+sociobiology|1
+(noun)|biology (generic term)|biological science (generic term)
+sociocultural|1
+(adj)|social group (related term)|content|cognitive content|mental object (related term)
+sociolinguist|1
+(noun)|linguist (generic term)|linguistic scientist (generic term)
+sociolinguistic|1
+(adj)|linguistics (related term)
+sociolinguistics|1
+(noun)|linguistics (generic term)
+sociological|1
+(adj)|social science (related term)
+sociologist|1
+(noun)|social scientist (generic term)
+sociology|1
+(noun)|social science (generic term)
+sociology department|1
+(noun)|department of sociology|academic department (generic term)
+sociometry|1
+(noun)|sociology (generic term)
+sociopath|1
+(noun)|psychopath|neurotic (generic term)|psychoneurotic (generic term)|mental case (generic term)
+sociopathic|1
+(adj)|personality disorder (related term)
+sociopathic personality|1
+(noun)|antisocial personality disorder|psychopathic personality|personality disorder (generic term)
+sock|3
+(noun)|hosiery (generic term)|hose (generic term)
+(noun)|windsock|wind sock|air sock|air-sleeve|wind sleeve|wind cone|drogue|visual signal (generic term)
+(verb)|bop|whop|whap|bonk|bash|hit (generic term)
+socket|2
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|receptacle (generic term)
+socket wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+sockeye|2
+(noun)|red salmon|sockeye salmon|salmon (generic term)
+(noun)|sockeye salmon|red salmon|blueback salmon|Oncorhynchus nerka|salmon (generic term)
+sockeye salmon|2
+(noun)|red salmon|sockeye|salmon (generic term)
+(noun)|sockeye|red salmon|blueback salmon|Oncorhynchus nerka|salmon (generic term)
+socle|1
+(noun)|pedestal (generic term)|plinth (generic term)|footstall (generic term)
+socotra begonia|1
+(noun)|Socotra begonia|Begonia socotrana|begonia (generic term)
+socrates|1
+(noun)|Socrates|philosopher (generic term)|Athenian (generic term)
+socratic|1
+(adj)|Socratic|philosopher|Athenian (related term)
+socratic irony|1
+(noun)|Socratic irony|irony (generic term)
+socratic method|1
+(noun)|Socratic method|maieutic method|teaching method (generic term)|pedagogics (generic term)|pedagogy (generic term)
+sod|5
+(noun)|turf|sward|greensward|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|superoxide dismutase|SOD|enzyme (generic term)
+(noun)|sodomite|sodomist|bugger|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+(noun)|guy (generic term)|cat (generic term)|hombre (generic term)|bozo (generic term)
+(verb)|cover (generic term)
+sod's law|1
+(noun)|Murphy's Law|Sod's Law|gnome (generic term)
+sod house|1
+(noun)|soddy|adobe house|house (generic term)
+soda|2
+(noun)|sodium carbonate|washing soda|sal soda|soda ash|salt (generic term)
+(noun)|pop|soda pop|soda water|tonic|soft drink (generic term)
+soda ash|1
+(noun)|sodium carbonate|washing soda|sal soda|soda|salt (generic term)
+soda biscuit|1
+(noun)|buttermilk biscuit|biscuit (generic term)
+soda bottle|1
+(noun)|pop bottle|bottle (generic term)
+soda can|1
+(noun)|can (generic term)|tin (generic term)|tin can (generic term)
+soda cracker|1
+(noun)|cracker (generic term)
+soda fountain|2
+(noun)|bar (generic term)
+(noun)|apparatus (generic term)|setup (generic term)
+soda jerk|1
+(noun)|soda jerker|counterperson (generic term)|counterwoman (generic term)|counterman (generic term)
+soda jerker|1
+(noun)|soda jerk|counterperson (generic term)|counterwoman (generic term)|counterman (generic term)
+soda lime|1
+(noun)|mixture (generic term)
+soda niter|1
+(noun)|sodium nitrate|nitrate (generic term)
+soda pop|1
+(noun)|pop|soda|soda water|tonic|soft drink (generic term)
+soda water|2
+(noun)|carbonated water|club soda|seltzer|sparkling water|drinking water (generic term)
+(noun)|pop|soda|soda pop|tonic|soft drink (generic term)
+sodalist|1
+(noun)|member (generic term)
+sodalite|1
+(noun)|mineral (generic term)
+sodality|1
+(noun)|brotherhood|fraternity|class (generic term)|social class (generic term)|socio-economic class (generic term)
+sodbuster|1
+(noun)|farmer|husbandman|granger|creator (generic term)
+sodden|1
+(adj)|drenched|saturated|soaked|soaking|sopping|soppy|wet (similar term)
+sodding|1
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|stark|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+soddy|2
+(noun)|sod house|adobe house|house (generic term)
+(noun)|Soddy|Frederick Soddy|chemist (generic term)
+sodium|1
+(noun)|Na|atomic number 11|metallic element (generic term)|metal (generic term)
+sodium-vapor lamp|1
+(noun)|sodium-vapour lamp|lamp (generic term)
+sodium-vapour lamp|1
+(noun)|sodium-vapor lamp|lamp (generic term)
+sodium benzoate|1
+(noun)|benzoate of soda|benzoate (generic term)
+sodium bicarbonate|1
+(noun)|bicarbonate of soda|sodium hydrogen carbonate|baking soda|saleratus|bicarbonate (generic term)|hydrogen carbonate (generic term)
+sodium bichromate|1
+(noun)|sodium dichromate|mordant (generic term)|salt (generic term)
+sodium carbonate|1
+(noun)|washing soda|sal soda|soda ash|soda|salt (generic term)
+sodium carboxymethyl cellulose|1
+(noun)|salt (generic term)
+sodium chlorate|1
+(noun)|salt (generic term)
+sodium chloride|1
+(noun)|common salt|binary compound (generic term)
+sodium cyanide|1
+(noun)|cyanide (generic term)
+sodium dichromate|1
+(noun)|sodium bichromate|mordant (generic term)|salt (generic term)
+sodium ethylmercurithiosalicylate|1
+(noun)|thimerosal|Merthiolate|antiseptic (generic term)
+sodium fluoride|1
+(noun)|salt (generic term)
+sodium hydride|1
+(noun)|hydride (generic term)
+sodium hydrogen carbonate|1
+(noun)|bicarbonate of soda|sodium bicarbonate|baking soda|saleratus|bicarbonate (generic term)|hydrogen carbonate (generic term)
+sodium hydroxide|1
+(noun)|caustic soda|hydroxide (generic term)|hydrated oxide (generic term)|lye (generic term)
+sodium hypochlorite|1
+(noun)|hypochlorite (generic term)|bleaching agent (generic term)|bleach (generic term)|blanching agent (generic term)|whitener (generic term)|disinfectant (generic term)|germicide (generic term)|antimicrobic (generic term)|antimicrobial (generic term)
+sodium iodide|1
+(noun)|iodide (generic term)
+sodium lauryl sulfate|1
+(noun)|sodium lauryl sulphate|SLS|sulfate (generic term)|sulphate (generic term)|detergent (generic term)
+sodium lauryl sulphate|1
+(noun)|sodium lauryl sulfate|SLS|sulfate (generic term)|sulphate (generic term)|detergent (generic term)
+sodium nitrate|1
+(noun)|soda niter|nitrate (generic term)
+sodium nitrite|1
+(noun)|nitrite (generic term)
+sodium orthophosphate|1
+(noun)|sodium phosphate|phosphate (generic term)|orthophosphate (generic term)|inorganic phosphate (generic term)
+sodium phosphate|1
+(noun)|sodium orthophosphate|phosphate (generic term)|orthophosphate (generic term)|inorganic phosphate (generic term)
+sodium pyrophosphate|1
+(noun)|tetrasodium pyrophosphate|builder (generic term)|detergent builder (generic term)
+sodium salicylate|1
+(noun)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+sodium silicate|1
+(noun)|soluble glass|water glass|glass (generic term)
+sodium sulfate|1
+(noun)|sodium sulphate|sulfate (generic term)|sulphate (generic term)
+sodium sulphate|1
+(noun)|sodium sulfate|sulfate (generic term)|sulphate (generic term)
+sodium thiopental|1
+(noun)|phenobarbital|phenobarbitone|Luminal|purple heart|barbiturate (generic term)
+sodium thiosulfate|1
+(noun)|hypo|sodium thiosulphate|fixing agent (generic term)|fixer (generic term)
+sodium thiosulphate|1
+(noun)|hypo|sodium thiosulfate|fixing agent (generic term)|fixer (generic term)
+sodium tripolyphosphate|1
+(noun)|builder (generic term)|detergent builder (generic term)
+sodoku|1
+(noun)|spirillum fever|ratbite fever (generic term)
+sodom|2
+(noun)|location (generic term)
+(noun)|Sodom|city (generic term)|metropolis (generic term)|urban center (generic term)
+sodomise|2
+(verb)|sodomize|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|sodomize|bugger|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+sodomist|1
+(noun)|sodomite|sod|bugger|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+sodomite|1
+(noun)|sodomist|sod|bugger|pervert (generic term)|deviant (generic term)|deviate (generic term)|degenerate (generic term)
+sodomize|2
+(verb)|sodomise|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+(verb)|sodomise|bugger|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+sodomy|1
+(noun)|buggery|anal sex|anal intercourse|perversion (generic term)|sexual perversion (generic term)
+sofa|1
+(noun)|couch|lounge|seat (generic term)
+sofa bed|1
+(noun)|convertible|sofa (generic term)|couch (generic term)|lounge (generic term)
+soffit|1
+(noun)|side (generic term)
+sofia|1
+(noun)|Sofia|Serdica|Bulgarian capital|national capital (generic term)
+sofia scicolone|1
+(noun)|Loren|Sophia Loren|Sofia Scicolone|actress (generic term)
+soft|20
+(adj)|brushed (similar term)|fleecy (similar term)|napped (similar term)|cheeselike (similar term)|compressible (similar term)|squeezable (similar term)|cottony (similar term)|cushioned (similar term)|cushiony (similar term)|padded (similar term)|demulcent (similar term)|emollient (similar term)|salving (similar term)|softening (similar term)|downy (similar term)|downlike (similar term)|flossy (similar term)|fluffy (similar term)|flaccid (similar term)|flocculent (similar term)|woolly (similar term)|wooly (similar term)|yielding (similar term)|mushy (similar term)|overstuffed (similar term)|softish (similar term)|semisoft (similar term)|spongy (similar term)|squashy (similar term)|squishy (similar term)|spongelike (similar term)|velvet (similar term)|velvety (similar term)|hard (antonym)
+(adj)|mellow (similar term)|tender (related term)|warmhearted (related term)|hard (antonym)
+(adj)|dull (similar term)|muffled (similar term)|muted (similar term)|softened (similar term)|euphonious (similar term)|gentle (similar term)|hushed (similar term)|muted (similar term)|subdued (similar term)|quiet (similar term)|little (similar term)|small (similar term)|low (similar term)|low-toned (similar term)|murmuring (similar term)|susurrant (similar term)|whispering (similar term)|murmurous (similar term)|rustling (similar term)|soughing (similar term)|susurrous (similar term)|soft-footed (similar term)|soft-spoken (similar term)|quiet (related term)|loud (antonym)
+(adj)|delicate|tender (similar term)|untoughened (similar term)
+(adj)|voiced|sonant|unvoiced (antonym)
+(adj)|hardened (antonym)
+(adj)|piano|pianissimo (similar term)|pianissimo assai (similar term)|forte (antonym)
+(adj)|diffuse|diffused|hard (antonym)
+(adj)|fricative (similar term)|continuant (similar term)|sibilant (similar term)|spirant (similar term)|strident (similar term)|palatal (similar term)|palatalized (similar term)|palatalised (similar term)|hard (antonym)
+(adj)|falling (similar term)
+(adj)|qualitative (similar term)
+(adj)|indulgent|lenient|permissive (similar term)
+(adj)|gentle|mild (similar term)
+(adj)|easy|gentle|light (similar term)
+(adj)|flabby|flaccid|unfit (similar term)
+(adj)|conciliatory (similar term)|conciliative (similar term)
+(adj)|cushy|easygoing|easy (similar term)
+(adj)|balmy|mild|clement (similar term)
+(adj)|subdued|dull (similar term)
+(adv)|easy
+soft-boiled|2
+(adj)|softhearted|hardhearted (antonym)
+(adj)|cooked (similar term)
+soft-cast steel|1
+(noun)|mild steel|low-carbon steel|steel (generic term)
+soft-coated wheaten terrier|1
+(noun)|terrier (generic term)
+soft-cover|1
+(noun)|paperback book|paper-back book|paperback|softback book|softback|soft-cover book|book (generic term)|volume (generic term)
+soft-cover book|1
+(noun)|paperback book|paper-back book|paperback|softback book|softback|soft-cover|book (generic term)|volume (generic term)
+soft-finned|1
+(adj)|teleost fish|teleost|teleostan (related term)
+soft-finned fish|1
+(noun)|malacopterygian|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)|spiny-finned fish (antonym)
+soft-footed|1
+(adj)|soft (similar term)
+soft-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+soft-nosed|1
+(adj)|projectile|missile (related term)
+soft-pedal|1
+(verb)|background (generic term)|play down (generic term)|downplay (generic term)
+soft-shell clam|2
+(noun)|steamer|steamer clam|long-neck clam|clam (generic term)
+(noun)|steamer|steamer clam|long-neck clam|Mya arenaria|clam (generic term)
+soft-shell crab|2
+(noun)|soft-shelled crab|crab (generic term)|crabmeat (generic term)
+(noun)|soft-shelled crab|crab (generic term)
+soft-shelled crab|2
+(noun)|soft-shell crab|crab (generic term)|crabmeat (generic term)
+(noun)|soft-shell crab|crab (generic term)
+soft-shelled turtle|1
+(noun)|pancake turtle|turtle (generic term)
+soft-shoe|1
+(noun)|soft-shoe shuffle|soft-shoe dancing|tap dancing (generic term)|tap dance (generic term)
+soft-shoe dancing|1
+(noun)|soft-shoe|soft-shoe shuffle|tap dancing (generic term)|tap dance (generic term)
+soft-shoe shuffle|1
+(noun)|soft-shoe|soft-shoe dancing|tap dancing (generic term)|tap dance (generic term)
+soft-soap|2
+(verb)|wheedle (generic term)|cajole (generic term)|palaver (generic term)|blarney (generic term)|coax (generic term)|sweet-talk (generic term)|inveigle (generic term)
+(verb)|flatter (generic term)|blandish (generic term)
+soft-solder|1
+(verb)|solder (generic term)
+soft-spoken|1
+(adj)|soft (similar term)
+soft-witted|1
+(adj)|nitwitted|senseless|witless|stupid (similar term)
+soft coal|1
+(noun)|bituminous coal|coal (generic term)
+soft copy|1
+(noun)|matter (generic term)
+soft corn|1
+(noun)|flour corn|squaw corn|Zea mays amylacea|field corn (generic term)
+soft diet|1
+(noun)|pap|spoon food|diet (generic term)
+soft drink|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+soft drug|1
+(noun)|drug of abuse (generic term)|street drug (generic term)|narcotic (generic term)|hard drug (antonym)
+soft flag|1
+(noun)|lesser bullrush|narrow-leaf cattail|narrow-leaved reedmace|Typha angustifolia|cattail (generic term)
+soft glass|1
+(noun)|glass (generic term)
+soft goods|1
+(noun)|drygoods|commodity (generic term)|trade good (generic term)|good (generic term)
+soft ice cream|1
+(noun)|frozen custard|frozen dessert (generic term)
+soft market|1
+(noun)|buyer's market|buyers' market|market (generic term)|marketplace (generic term)
+soft money|1
+(noun)|political contribution (generic term)|political donation (generic term)
+soft news|1
+(noun)|news (generic term)
+soft on|1
+(adj)|crazy|dotty|gaga|enamored|infatuated|in love|smitten|taken with|loving (similar term)
+soft option|1
+(noun)|option (generic term)|alternative (generic term)|choice (generic term)
+soft palate|1
+(noun)|velum|flap (generic term)
+soft pedal|1
+(noun)|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+soft pretzel|1
+(noun)|pretzel (generic term)
+soft roe|1
+(noun)|milt|seafood (generic term)
+soft roll|1
+(noun)|bun (generic term)|roll (generic term)
+soft rot|1
+(noun)|plant disease (generic term)
+soft rush|1
+(noun)|bulrush|bullrush|common rush|Juncus effusus|rush (generic term)
+soft scale|1
+(noun)|scale insect (generic term)
+soft sell|1
+(noun)|advertising (generic term)|publicizing (generic term)
+soft shield fern|1
+(noun)|Polystichum setiferum|shield fern (generic term)|buckler fern (generic term)
+soft soap|2
+(noun)|blarney|coaxing|sweet talk|flattery (generic term)
+(noun)|green soap|soap (generic term)
+soft solder|1
+(noun)|solder (generic term)
+soft spot|3
+(noun)|weak part|weak spot|weakness (generic term)|good part (antonym)
+(noun)|affection (generic term)|affectionateness (generic term)|fondness (generic term)|tenderness (generic term)|heart (generic term)|warmness (generic term)|warmheartedness (generic term)|philia (generic term)
+(noun)|fontanelle|fontanel|orifice (generic term)|opening (generic term)|porta (generic term)
+soft tick|1
+(noun)|argasid|tick (generic term)
+soft touch|1
+(noun)|chump|fool|gull|mark|patsy|fall guy|sucker|mug|victim (generic term)|dupe (generic term)
+soft tree fern|1
+(noun)|Dicksonia antarctica|tree fern (generic term)
+soft water|1
+(noun)|water (generic term)|H2O (generic term)|hard water (antonym)
+soft wheat|1
+(noun)|wheat (generic term)
+softback|1
+(noun)|paperback book|paper-back book|paperback|softback book|soft-cover book|soft-cover|book (generic term)|volume (generic term)
+softback book|1
+(noun)|paperback book|paper-back book|paperback|softback|soft-cover book|soft-cover|book (generic term)|volume (generic term)
+softball|2
+(noun)|playground ball|ball (generic term)
+(noun)|softball game|baseball (generic term)|baseball game (generic term)|hardball (antonym)
+softball game|1
+(noun)|softball|baseball (generic term)|baseball game (generic term)|hardball (antonym)
+soften|7
+(verb)|change intensity (generic term)|sharpen (antonym)
+(verb)|dampen|damp|weaken|break|deaden (generic term)|blunt (generic term)
+(verb)|yield|relent|stand (antonym)
+(verb)|cushion|buffer|modify (generic term)
+(verb)|mince|moderate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|harden (antonym)
+(verb)|change (generic term)|harden (antonym)
+softened|2
+(adj)|modulated (similar term)
+(adj)|dull|muffled|muted|soft (similar term)
+softener|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+softening|2
+(adj)|demulcent|emollient|salving|soft (similar term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+softheaded|1
+(adj)|crazy|half-baked|screwball|impractical (similar term)
+softhearted|1
+(adj)|soft-boiled|hardhearted (antonym)
+softheartedness|1
+(noun)|tenderness|concern (generic term)
+softie|1
+(noun)|softy|weakling (generic term)|doormat (generic term)|wuss (generic term)
+softish|1
+(adj)|semisoft|soft (similar term)
+softly|3
+(adv)|quietly|loudly (antonym)
+(adv)|lightly|gently
+(adv)|piano|forte (antonym)
+softness|10
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|hardness (antonym)
+(noun)|unfitness|poor shape|bad condition|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|fitness (antonym)
+(noun)|balminess|mildness (generic term)|clemency (generic term)
+(noun)|financial condition (generic term)|economic condition (generic term)
+(noun)|sound property (generic term)|loudness (antonym)
+(noun)|visual property (generic term)
+(noun)|gentleness|mildness|manner (generic term)|personal manner (generic term)
+(noun)|indistinctness|blurriness|fogginess|fuzziness|opacity (generic term)|opaqueness (generic term)|sharpness (antonym)|distinctness (antonym)
+(noun)|effeminacy|effeminateness|sissiness|womanishness|unmanliness|femininity (generic term)|muliebrity (generic term)
+(noun)|indulgence (generic term)|lenience (generic term)|leniency (generic term)
+software|1
+(noun)|software program|computer software|software system|software package|package|code (generic term)|computer code (generic term)|hardware (antonym)
+software documentation|1
+(noun)|documentation|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+software engineer|1
+(noun)|programmer|computer programmer|coder|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|computer user (generic term)
+software error|1
+(noun)|programming error|error (generic term)|computer error (generic term)
+software package|2
+(noun)|software|software program|computer software|software system|package|code (generic term)|computer code (generic term)|hardware (antonym)
+(noun)|software product|merchandise (generic term)|ware (generic term)|product (generic term)
+software product|1
+(noun)|software package|merchandise (generic term)|ware (generic term)|product (generic term)
+software program|1
+(noun)|software|computer software|software system|software package|package|code (generic term)|computer code (generic term)|hardware (antonym)
+software system|1
+(noun)|software|software program|computer software|software package|package|code (generic term)|computer code (generic term)|hardware (antonym)
+softwood|1
+(noun)|deal|wood (generic term)
+softy|1
+(noun)|softie|weakling (generic term)|doormat (generic term)|wuss (generic term)
+sogginess|1
+(noun)|wetness (generic term)
+soggy|3
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloppy|sloughy|squashy|swampy|waterlogged|wet (similar term)
+(adj)|doughy|heavy (similar term)
+(adj)|inert|sluggish|torpid|inactive (similar term)
+soh|1
+(noun)|sol|so|solfa syllable (generic term)
+soho|2
+(noun)|SoHo|city district (generic term)
+(noun)|Soho|city district (generic term)
+soi-disant|1
+(adj)|self-styled|questionable (similar term)
+soigne|1
+(adj)|soignee|elegant (similar term)
+soignee|1
+(adj)|soigne|elegant (similar term)
+soil|5
+(noun)|dirt|filth|grime|stain|grease|grunge|dirtiness (generic term)|uncleanness (generic term)
+(noun)|dirt|earth (generic term)|ground (generic term)
+(noun)|land|ground|object (generic term)|physical object (generic term)
+(noun)|territory|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(verb)|dirty|begrime|grime|colly|bemire|change (generic term)|alter (generic term)|modify (generic term)|clean (antonym)
+soil-building|1
+(adj)|planted (similar term)
+soil bank|1
+(noun)|bank (generic term)
+soil conditioner|1
+(noun)|chemical (generic term)|chemical substance (generic term)
+soil conservation|1
+(noun)|conservation (generic term)
+soil erosion|1
+(noun)|erosion (generic term)|eroding (generic term)|eating away (generic term)|wearing (generic term)|wearing away (generic term)
+soil horizon|1
+(noun)|horizon (generic term)
+soil pipe|1
+(noun)|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+soil profile|1
+(noun)|profile (generic term)
+soiled|1
+(adj)|dirty|unclean|Augean (similar term)|bedraggled (similar term)|draggled (similar term)|befouled (similar term)|fouled (similar term)|begrimed (similar term)|dingy (similar term)|grimy (similar term)|grubby (similar term)|grungy (similar term)|raunchy (similar term)|bespattered (similar term)|spattered (similar term)|besplashed (similar term)|splashed (similar term)|black (similar term)|smutty (similar term)|buggy (similar term)|cobwebby (similar term)|dirty-faced (similar term)|dusty (similar term)|dust-covered (similar term)|fecal (similar term)|faecal (similar term)|feculent (similar term)|filthy (similar term)|foul (similar term)|nasty (similar term)|flyblown (similar term)|squalid (similar term)|sordid (similar term)|greasy (similar term)|oily (similar term)|lousy (similar term)|maculate (similar term)|mucky (similar term)|muddy (similar term)|ratty (similar term)|scummy (similar term)|smudgy (similar term)|snotty (similar term)|snot-nosed (similar term)|sooty (similar term)|travel-soiled (similar term)|travel-stained (similar term)|uncleanly (similar term)|unswept (similar term)|unwashed (similar term)|unclean (related term)|impure (related term)|untidy (related term)|clean (antonym)
+soiling|1
+(noun)|soilure|dirtying|change of state (generic term)
+soilure|1
+(noun)|soiling|dirtying|change of state (generic term)
+soiree|1
+(noun)|party (generic term)
+soiree musicale|1
+(noun)|musical soiree|soiree (generic term)
+soissons|1
+(noun)|Soissons|battle of Soissons-Reims|battle of the Chemin-des-Dames|battle of the Aisne|pitched battle (generic term)
+soixante-neuf|1
+(noun)|sixty-nine|oral sex (generic term)|head (generic term)
+soja|1
+(noun)|soy|soya|soybean|soya bean|soybean plant|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+soja bean|1
+(noun)|soy|soya|soybean|soya bean|soybean plant|soja|Glycine max|legume (generic term)|leguminous plant (generic term)
+sojourn|2
+(noun)|visit|stay (generic term)
+(verb)|spend (generic term)|pass (generic term)
+sojourner|1
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+sojourner truth|1
+(noun)|Truth|Sojourner Truth|abolitionist (generic term)|emancipationist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+sokoro|1
+(noun)|Sokoro|East Chadic (generic term)
+sol|3
+(noun)|colloidal solution|colloidal suspension|colloid (generic term)
+(noun)|Sol|Roman deity (generic term)
+(noun)|soh|so|solfa syllable (generic term)
+sol hurok|1
+(noun)|Hurok|Sol Hurok|Solomon Hurok|showman (generic term)|promoter (generic term)|impresario (generic term)
+sol rojo|1
+(noun)|Puka Inti|Sol Rojo|Red Sun|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+solace|4
+(noun)|consolation|solacement|comfort (generic term)
+(noun)|solacement|comfort (generic term)|comfortableness (generic term)
+(noun)|consolation|comfort|relief (generic term)|succor (generic term)|succour (generic term)|ministration (generic term)
+(verb)|comfort|soothe|console
+solacement|2
+(noun)|solace|comfort (generic term)|comfortableness (generic term)
+(noun)|consolation|solace|comfort (generic term)
+solan|1
+(noun)|solan goose|solant goose|Sula bassana|gannet (generic term)
+solan goose|1
+(noun)|solan|solant goose|Sula bassana|gannet (generic term)
+solanaceae|1
+(noun)|Solanaceae|family Solanaceae|potato family|asterid dicot family (generic term)
+solanaceous|1
+(adj)|asterid dicot family (related term)
+solanaceous vegetable|1
+(noun)|vegetable (generic term)|veggie (generic term)
+solandra|1
+(noun)|Solandra|genus Solandra|asterid dicot genus (generic term)
+solandra guttata|1
+(noun)|chalice vine|trumpet flower|cupflower|Solandra guttata|shrub (generic term)|bush (generic term)
+solanopteris|1
+(noun)|Solanopteris|genus Solanopteris|fern genus (generic term)
+solanopteris bifrons|1
+(noun)|potato fern|Solanopteris bifrons|fern (generic term)
+solant goose|1
+(noun)|solan|solan goose|Sula bassana|gannet (generic term)
+solanum|1
+(noun)|Solanum|genus Solanum|asterid dicot genus (generic term)
+solanum aviculare|1
+(noun)|kangaroo apple|poroporo|Solanum aviculare|nightshade (generic term)
+solanum burbankii|1
+(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+solanum carolinense|1
+(noun)|horse nettle|ball nettle|bull nettle|ball nightshade|Solanum carolinense|nightshade (generic term)
+solanum commersonii|1
+(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine (generic term)
+solanum crispum|1
+(noun)|potato tree|Solanum crispum|vine (generic term)
+solanum dulcamara|1
+(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|woody nightshade|Solanum dulcamara|nightshade (generic term)
+solanum elaeagnifolium|1
+(noun)|trompillo|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+solanum giganteum|1
+(noun)|African holly|Solanum giganteum|nightshade (generic term)
+solanum jamesii|1
+(noun)|wild potato|Solanum jamesii|vine (generic term)
+solanum jasmoides|1
+(noun)|potato vine|Solanum jasmoides|vine (generic term)
+solanum macranthum|1
+(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub (generic term)|bush (generic term)
+solanum melanocerasum|1
+(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+solanum melongena|1
+(noun)|eggplant|aubergine|brinjal|eggplant bush|garden egg|mad apple|Solanum melongena|herb (generic term)|herbaceous plant (generic term)
+solanum nigrum|1
+(noun)|black nightshade|common nightshade|poisonberry|poison-berry|Solanum nigrum|nightshade (generic term)
+solanum nigrum guineese|1
+(noun)|garden huckleberry|wonderberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+solanum pseudocapsicum|1
+(noun)|Jerusalem cherry|winter cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade (generic term)
+solanum quitoense|1
+(noun)|naranjilla|Solanum quitoense|shrub (generic term)|bush (generic term)
+solanum rostratum|1
+(noun)|buffalo bur|Solanum rostratum|nightshade (generic term)
+solanum tuberosum|1
+(noun)|potato|white potato|white potato vine|Solanum tuberosum|vine (generic term)
+solanum wendlandii|1
+(noun)|potato vine|giant potato creeper|Solanum wendlandii|vine (generic term)
+solanum wrightii|1
+(noun)|potato tree|Brazilian potato tree|Solanum wrightii|Solanum macranthum|shrub (generic term)|bush (generic term)
+solar|1
+(adj)|star (related term)
+solar apex|1
+(noun)|apex|apex of the sun's way|celestial point (generic term)|antapex (antonym)
+solar array|1
+(noun)|solar battery|solar panel|electrical device (generic term)
+solar battery|1
+(noun)|solar array|solar panel|electrical device (generic term)
+solar calendar|1
+(noun)|calendar (generic term)
+solar cell|1
+(noun)|photovoltaic cell|cell (generic term)|electric cell (generic term)
+solar collector|1
+(noun)|solar dish|solar furnace|reflector (generic term)
+solar constant|1
+(noun)|rate (generic term)
+solar day|1
+(noun)|day|twenty-four hours|twenty-four hour period|24-hour interval|mean solar day|time unit (generic term)|unit of time (generic term)
+solar dish|1
+(noun)|solar collector|solar furnace|reflector (generic term)
+solar eclipse|1
+(noun)|eclipse (generic term)|occultation (generic term)
+solar energy|1
+(noun)|solar power|alternative energy (generic term)
+solar flare|1
+(noun)|flare|solar radiation (generic term)
+solar furnace|1
+(noun)|solar dish|solar collector|reflector (generic term)
+solar gravity|1
+(noun)|gravity (generic term)|gravitation (generic term)|gravitational attraction (generic term)|gravitational force (generic term)
+solar halo|1
+(noun)|parhelic circle|parhelic ring|halo (generic term)
+solar heater|1
+(noun)|heater (generic term)|warmer (generic term)
+solar house|1
+(noun)|house (generic term)
+solar magnetic field|1
+(noun)|magnetic field (generic term)|magnetic flux (generic term)|flux (generic term)
+solar month|1
+(noun)|month (generic term)
+solar panel|1
+(noun)|solar array|solar battery|electrical device (generic term)
+solar parallax|1
+(noun)|geocentric parallax (generic term)|diurnal parallax (generic term)
+solar physics|1
+(noun)|astronomy (generic term)|uranology (generic term)
+solar plexus|1
+(noun)|coeliac plexus|plexus celiacus|abdominal nerve plexus|nerve plexus (generic term)
+solar power|1
+(noun)|solar energy|alternative energy (generic term)
+solar prominence|1
+(noun)|solar radiation (generic term)
+solar radiation|1
+(noun)|radiation (generic term)
+solar system|1
+(noun)|system (generic term)|scheme (generic term)
+solar telescope|1
+(noun)|telescope (generic term)|scope (generic term)
+solar thermal system|1
+(noun)|system (generic term)
+solar trap|1
+(noun)|suntrap|patio (generic term)|terrace (generic term)
+solar wind|1
+(noun)|solar radiation (generic term)
+solar year|1
+(noun)|tropical year|astronomical year|equinoctial year|year (generic term)
+solarisation|1
+(noun)|solarization|exposure (generic term)
+solarise|4
+(verb)|solarize|develop (generic term)
+(verb)|solarize|change (generic term)
+(verb)|solarize|overexpose (generic term)
+(verb)|sun|insolate|solarize|expose (generic term)
+solarium|1
+(noun)|sun parlor|sun parlour|sun porch|sunporch|sunroom|sun lounge|room (generic term)
+solarization|1
+(noun)|solarisation|exposure (generic term)
+solarize|4
+(verb)|solarise|develop (generic term)
+(verb)|solarise|change (generic term)
+(verb)|solarise|overexpose (generic term)
+(verb)|sun|insolate|solarise|expose (generic term)
+sold|1
+(adj)|oversubscribed (similar term)|sold-out (similar term)|unsold (antonym)
+sold-out|2
+(adj)|corrupt (similar term)
+(adj)|sold (similar term)
+solder|2
+(noun)|alloy (generic term)|metal (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+solderer|1
+(noun)|worker (generic term)
+soldering|1
+(noun)|bonding|fastening (generic term)|attachment (generic term)
+soldering flux|1
+(noun)|flux (generic term)
+soldering iron|1
+(noun)|hand tool (generic term)
+soldier|3
+(noun)|enlisted person (generic term)
+(noun)|worker (generic term)
+(verb)|spend (generic term)|pass (generic term)
+soldier-fish|1
+(noun)|soldierfish|squirrelfish (generic term)
+soldier grainy club|1
+(noun)|grainy club (generic term)
+soldier of fortune|1
+(noun)|mercenary|adventurer (generic term)|venturer (generic term)
+soldierfish|1
+(noun)|soldier-fish|squirrelfish (generic term)
+soldiering|2
+(noun)|soldiership|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+(noun)|shirking|slacking|goofing off|goldbricking|evasion (generic term)|escape (generic term)|dodging (generic term)
+soldierlike|1
+(adj)|soldierly|warriorlike|martial|military (similar term)
+soldierly|1
+(adj)|soldierlike|warriorlike|martial|military (similar term)
+soldiers of god|1
+(noun)|Jund-ul-Islam|Soldiers of God|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+soldiership|1
+(noun)|soldiering|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+soldiery|1
+(noun)|military personnel|troops|force (generic term)|personnel (generic term)
+sole|7
+(adj)|exclusive|unshared (similar term)
+(adj)|lone|lonesome|only|solitary|single (similar term)
+(noun)|bottom (generic term)|underside (generic term)|undersurface (generic term)
+(noun)|fillet of sole|flatfish (generic term)
+(noun)|area (generic term)|region (generic term)
+(noun)|flatfish (generic term)|food fish (generic term)
+(verb)|resole|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+solea|1
+(noun)|Solea|genus Solea|fish genus (generic term)
+solea lascaris|1
+(noun)|lemon sole|Solea lascaris|sole (generic term)
+solea solea|1
+(noun)|European sole|Solea solea|sole (generic term)
+solecism|1
+(noun)|faux pas|gaffe|slip|gaucherie|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+soled|1
+(adj)|soleless (antonym)
+soledad|1
+(noun)|Soledad|city (generic term)|metropolis (generic term)|urban center (generic term)
+soledad pine|1
+(noun)|Torrey pine|Torrey's pine|grey-leaf pine|sabine pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+soleidae|1
+(noun)|Soleidae|family Soleidae|fish family (generic term)
+soleirolia|1
+(noun)|Helxine|genus Helxine|Soleirolia|genus Soleirolia|dicot genus (generic term)|magnoliopsid genus (generic term)
+soleirolia soleirolii|1
+(noun)|baby's tears|baby tears|Helxine soleirolia|Soleirolia soleirolii|groundcover (generic term)|ground cover (generic term)
+soleless|1
+(adj)|soled (antonym)
+solely|1
+(adv)|entirely|exclusively|alone|only
+solemn|2
+(adj)|grave|sedate|sober|serious (similar term)
+(adj)|earnest|sincere|serious (similar term)
+solemness|1
+(noun)|sedateness|staidness|solemnity|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+solemnisation|1
+(noun)|celebration|solemnization|ritual (generic term)
+solemnise|3
+(verb)|solemnize|observe (generic term)|celebrate (generic term)|keep (generic term)
+(verb)|solemnize|marry (generic term)|wed (generic term)|tie (generic term)|splice (generic term)
+(verb)|solemnize|change (generic term)|alter (generic term)|modify (generic term)
+solemnity|2
+(noun)|sedateness|staidness|solemness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+(noun)|gravity|feeling (generic term)|levity (antonym)
+solemnity of mary|1
+(noun)|Solemnity of Mary|January 1|holy day of obligation (generic term)
+solemnization|1
+(noun)|celebration|solemnisation|ritual (generic term)
+solemnize|3
+(verb)|solemnise|observe (generic term)|celebrate (generic term)|keep (generic term)
+(verb)|solemnise|marry (generic term)|wed (generic term)|tie (generic term)|splice (generic term)
+(verb)|solemnise|change (generic term)|alter (generic term)|modify (generic term)
+solenichthyes|1
+(noun)|Solenichthyes|order Solenichthyes|animal order (generic term)
+solenidae|1
+(noun)|Solenidae|family Solenidae|mollusk family (generic term)
+solenogaster|1
+(noun)|aplacophoran|gastropod (generic term)|univalve (generic term)
+solenogastres|1
+(noun)|Solenogastres|order Solenogastres|Aplacophora|order Aplacophora|animal order (generic term)
+solenoid|1
+(noun)|coil (generic term)|magnet (generic term)
+solenopsis|1
+(noun)|Solenopsis|genus Solenopsis|arthropod genus (generic term)
+solenostemon|1
+(noun)|Solenostemon|genus Solenostemon|asterid dicot genus (generic term)
+solenostemon blumei|1
+(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus (generic term)|flame nettle (generic term)
+solenostemon scutellarioides|1
+(noun)|painted nettle|Joseph's coat|Coleus blumei|Solenostemon blumei|Solenostemon scutellarioides|coleus (generic term)|flame nettle (generic term)
+solent|1
+(noun)|Solent|strait (generic term)|sound (generic term)
+soleus|1
+(noun)|soleus muscle|skeletal muscle (generic term)|striated muscle (generic term)
+soleus muscle|1
+(noun)|soleus|skeletal muscle (generic term)|striated muscle (generic term)
+solfa|1
+(noun)|tonic solfa|solmization (generic term)|solmisation (generic term)
+solfa syllable|1
+(noun)|syllable (generic term)
+solfege|2
+(noun)|solmization|solfeggio|singing (generic term)|vocalizing (generic term)
+(noun)|solfeggio|singing (generic term)|vocalizing (generic term)
+solfeggio|2
+(noun)|solmization|solfege|singing (generic term)|vocalizing (generic term)
+(noun)|solfege|singing (generic term)|vocalizing (generic term)
+solferino|2
+(noun)|purplish pink|pink (generic term)
+(noun)|Solferino|battle of Solferino|pitched battle (generic term)
+solicit|5
+(verb)|beg|tap|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|woo|court|romance|act (generic term)|move (generic term)
+(verb)|hook|accost|offer (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+(verb)|ask (generic term)
+solicitation|3
+(noun)|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+(noun)|appeal|collection|ingathering|request (generic term)|petition (generic term)|postulation (generic term)
+(noun)|allurement|enticement (generic term)|temptation (generic term)
+solicitor|2
+(noun)|canvasser|petitioner (generic term)|suppliant (generic term)|supplicant (generic term)|requester (generic term)
+(noun)|lawyer (generic term)|attorney (generic term)
+solicitor general|1
+(noun)|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+solicitorship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+solicitous|2
+(adj)|concerned (similar term)
+(adj)|attentive (similar term)
+solicitousness|1
+(noun)|solicitude|concern (generic term)
+solicitude|1
+(noun)|solicitousness|concern (generic term)
+solid|18
+(adj)|coagulated (similar term)|solidified (similar term)|concrete (similar term)|congealed (similar term)|jelled (similar term)|jellied (similar term)|dry (similar term)|semisolid (similar term)|solid-state (similar term)|solid-state (similar term)|hard (related term)|liquid (antonym)|gaseous (antonym)
+(adj)|good (similar term)
+(adj)|massive (similar term)|hollow (antonym)
+(adj)|homogeneous (similar term)|homogenous (similar term)
+(adj)|unbroken (similar term)
+(adj)|hearty|satisfying|square|substantial|wholesome (similar term)
+(adj)|strong|substantial|sound (similar term)
+(adj)|firm|hard (similar term)
+(adj)|cubic (similar term)|three-dimensional (similar term)
+(adj)|opaque (similar term)
+(adj)|sound (similar term)
+(adj)|serious (similar term)
+(adj)|self-colored|self-coloured|homogeneous (similar term)|homogenous (similar term)
+(adj)|worthy|upstanding|good (similar term)
+(adj)|unanimous|whole|undiversified (similar term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|solidness|solid state|state of matter (generic term)|state (generic term)
+(noun)|shape (generic term)|form (generic term)
+solid-colored|1
+(adj)|solid-coloured|plain (similar term)|unpatterned (similar term)
+solid-coloured|1
+(adj)|solid-colored|plain (similar term)|unpatterned (similar term)
+solid-hoofed|1
+(adj)|ungulate (similar term)|ungulated (similar term)|hoofed (similar term)|hooved (similar term)
+solid-state|1
+(adj)|solid (similar term)
+solid-state physics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+solid angle|1
+(noun)|angle (generic term)
+solid body substance|1
+(noun)|body substance (generic term)
+solid figure|1
+(noun)|three-dimensional figure|figure (generic term)
+solid food|1
+(noun)|food|solid (generic term)
+solid geometry|1
+(noun)|geometry (generic term)
+solid ground|1
+(noun)|land|dry land|earth|ground|terra firma|object (generic term)|physical object (generic term)
+solid solution|1
+(noun)|primary solid solution|solution (generic term)
+solid state|1
+(noun)|solid|solidness|state of matter (generic term)|state (generic term)
+solidago|1
+(noun)|Solidago|genus Solidago|asterid dicot genus (generic term)
+solidago bicolor|1
+(noun)|silverrod|Solidago bicolor|goldenrod (generic term)
+solidago canadensis|1
+(noun)|meadow goldenrod|Canadian goldenrod|Solidago canadensis|goldenrod (generic term)
+solidago missouriensis|1
+(noun)|Missouri goldenrod|Solidago missouriensis|goldenrod (generic term)
+solidago multiradiata|1
+(noun)|alpine goldenrod|Solidago multiradiata|goldenrod (generic term)
+solidago nemoralis|1
+(noun)|grey goldenrod|gray goldenrod|Solidago nemoralis|goldenrod (generic term)
+solidago odora|1
+(noun)|Blue Mountain tea|sweet goldenrod|Solidago odora|goldenrod (generic term)
+solidago rugosa|1
+(noun)|dyer's weed|Solidago rugosa|goldenrod (generic term)
+solidago sempervirens|1
+(noun)|seaside goldenrod|beach goldenrod|Solidago sempervirens|goldenrod (generic term)
+solidago spathulata|1
+(noun)|narrow goldenrod|Solidago spathulata|goldenrod (generic term)
+solidarity|1
+(noun)|commonality (generic term)|commonness (generic term)
+solidification|1
+(noun)|hardening|solidifying|set|curing|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+solidified|1
+(adj)|coagulated|solid (similar term)
+solidify|1
+(verb)|change integrity (generic term)
+solidifying|1
+(noun)|hardening|solidification|set|curing|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+solidity|3
+(noun)|solidness|consistency (generic term)|consistence (generic term)|body (generic term)|porosity (antonym)
+(noun)|fullness (generic term)|hollowness (antonym)
+(noun)|solidness|dependability (generic term)|dependableness (generic term)|reliability (generic term)|reliableness (generic term)
+solidness|4
+(noun)|solid|solid state|state of matter (generic term)|state (generic term)
+(noun)|solidity|consistency (generic term)|consistence (generic term)|body (generic term)|porosity (antonym)
+(noun)|substantiality|substantialness|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|insubstantiality (antonym)
+(noun)|solidity|dependability (generic term)|dependableness (generic term)|reliability (generic term)|reliableness (generic term)
+solidus|2
+(noun)|bezant|bezzant|byzant|coin (generic term)
+(noun)|slash|virgule|diagonal|stroke|separatrix|punctuation (generic term)|punctuation mark (generic term)
+soliloquise|1
+(verb)|monologuize|monologuise|soliloquize|talk (generic term)|speak (generic term)
+soliloquize|1
+(verb)|monologuize|monologuise|soliloquise|talk (generic term)|speak (generic term)
+soliloquy|2
+(noun)|monologue|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|actor's line (generic term)|speech (generic term)|words (generic term)
+solingen|1
+(noun)|Solingen|city (generic term)|metropolis (generic term)|urban center (generic term)
+solipsism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+solitaire|4
+(noun)|jewel (generic term)|gem (generic term)|precious stone (generic term)
+(noun)|Pezophaps solitaria|columbiform bird (generic term)
+(noun)|thrush (generic term)
+(noun)|patience|card game (generic term)|cards (generic term)
+solitariness|2
+(noun)|loneliness|isolation (generic term)
+(noun)|disposition (generic term)|temperament (generic term)
+solitary|7
+(adj)|lone|lonely|unsocial (similar term)
+(adj)|nongregarious|nonsocial|ungregarious (similar term)
+(adj)|alone|lone|lonely|unaccompanied (similar term)
+(adj)|lone|lonesome|only|sole|single (similar term)
+(adj)|lonely|unfrequented|inaccessible (similar term)|unaccessible (similar term)
+(noun)|solitary confinement|confinement (generic term)
+(noun)|hermit|recluse|solitudinarian|troglodyte|loner (generic term)|lone wolf (generic term)|lone hand (generic term)
+solitary confinement|1
+(noun)|solitary|confinement (generic term)
+solitary pussytoes|1
+(noun)|cat's foot (generic term)|cat's feet (generic term)|pussytoes (generic term)|Antennaria dioica (generic term)
+solitary vireo|1
+(noun)|Vireo solitarius|vireo (generic term)
+solitary wave|1
+(noun)|soliton|soliton wave|traveling wave (generic term)
+soliton|1
+(noun)|soliton wave|solitary wave|traveling wave (generic term)
+soliton wave|1
+(noun)|soliton|solitary wave|traveling wave (generic term)
+solitude|3
+(noun)|purdah|isolation (generic term)
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|aloneness|loneliness|lonesomeness|disposition (generic term)|temperament (generic term)
+solitudinarian|1
+(noun)|hermit|recluse|solitary|troglodyte|loner (generic term)|lone wolf (generic term)|lone hand (generic term)
+solleret|1
+(noun)|sabaton|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+solmisation|1
+(noun)|solmization|musical notation (generic term)
+solmizate|1
+(verb)|sing (generic term)
+solmization|2
+(noun)|solmisation|musical notation (generic term)
+(noun)|solfege|solfeggio|singing (generic term)|vocalizing (generic term)
+solo|7
+(adj)|unaccompanied (similar term)
+(noun)|activity (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|flight (generic term)|flying (generic term)
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+(verb)|perform (generic term)
+(adv)|alone|unaccompanied
+solo blast|1
+(noun)|solo homer|homer (generic term)|home run (generic term)
+solo homer|1
+(noun)|solo blast|homer (generic term)|home run (generic term)
+solo man|1
+(noun)|Solo man|Homo soloensis (generic term)
+soloist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+solomon|1
+(noun)|Solomon|king (generic term)|male monarch (generic term)|Rex (generic term)
+solomon's-seal|1
+(noun)|Solomon's-seal|liliaceous plant (generic term)
+solomon's seal|1
+(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem (generic term)|allegory (generic term)|hexagram (generic term)
+solomon guggenheim|1
+(noun)|Guggenheim|Solomon Guggenheim|philanthropist (generic term)|altruist (generic term)
+solomon hurok|1
+(noun)|Hurok|Sol Hurok|Solomon Hurok|showman (generic term)|promoter (generic term)|impresario (generic term)
+solomon islands|2
+(noun)|Solomon Islands|country (generic term)|state (generic term)|land (generic term)
+(noun)|Solomons|Solomon Islands|archipelago (generic term)
+solomonic|1
+(adj)|Solomonic|king|male monarch|Rex (related term)
+solomons|1
+(noun)|Solomons|Solomon Islands|archipelago (generic term)
+solon|1
+(noun)|statesman|national leader|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+solresol|1
+(noun)|Solresol|artificial language (generic term)
+solstice|1
+(noun)|cosmic time (generic term)
+solubility|3
+(noun)|quality (generic term)|insolubility (antonym)
+(noun)|definite quantity (generic term)
+(noun)|solvability|property (generic term)|insolubility (antonym)|unsolvability (antonym)
+soluble|2
+(adj)|alcohol-soluble (similar term)|dissolvable (similar term)|dissoluble (similar term)|fat-soluble (similar term)|meltable (similar term)|disintegrable (similar term)|oil-soluble (similar term)|water-soluble (similar term)|insoluble (antonym)
+(adj)|answerable (similar term)|solvable (similar term)|resolvable (similar term)|explicable (related term)|insoluble (antonym)
+soluble glass|1
+(noun)|water glass|sodium silicate|glass (generic term)
+soluble rna|1
+(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid (generic term)|RNA (generic term)
+solubleness|1
+(noun)|dissolubility|physical property (generic term)
+solute|1
+(noun)|substance (generic term)|matter (generic term)
+solution|5
+(noun)|mixture (generic term)
+(noun)|answer|result|resolution|solvent|statement (generic term)
+(noun)|method (generic term)
+(noun)|root|set (generic term)
+(noun)|success (generic term)
+solvability|1
+(noun)|solubility|property (generic term)|insolubility (antonym)|unsolvability (antonym)
+solvable|1
+(adj)|resolvable|soluble (similar term)
+solvate|3
+(noun)|substance (generic term)|matter (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change state (generic term)|turn (generic term)
+solvating agent|1
+(noun)|agent (generic term)
+solvation|1
+(noun)|association (generic term)
+solvay|1
+(noun)|Solvay|Ernest Solvay|chemist (generic term)|industrialist (generic term)
+solvay process|1
+(noun)|Solvay process|industrial process (generic term)
+solve|3
+(verb)|work out|figure out|puzzle out|lick|work|understand (generic term)
+(verb)|resolve|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+(verb)|clear|settle (generic term)|square off (generic term)|square up (generic term)|determine (generic term)
+solved|1
+(adj)|resolved|unsolved (antonym)
+solvency|1
+(noun)|financial condition (generic term)|economic condition (generic term)|insolvency (antonym)
+solvent|3
+(adj)|insolvent (antonym)
+(noun)|dissolvent|dissolver|dissolving agent|resolvent|medium (generic term)
+(noun)|solution|answer|result|resolution|statement (generic term)
+solver|1
+(noun)|problem solver|convergent thinker|thinker (generic term)
+solving|1
+(noun)|resolution|determination (generic term)|finding (generic term)
+solway firth|1
+(noun)|Solway Firth|firth (generic term)
+solzhenitsyn|1
+(noun)|Solzhenitsyn|Alexander Isayevich Solzhenitsyn|Aleksandr I. Solzhenitsyn|writer (generic term)|author (generic term)|political dissident (generic term)
+som|1
+(noun)|Kyrgyzstani monetary unit (generic term)
+soma|3
+(noun)|haoma|Sarcostemma acidum|vine (generic term)
+(noun)|Soma|Hindu deity (generic term)
+(noun)|human body|physical body|material body|build|figure|physique|anatomy|shape|bod|chassis|frame|form|flesh|body (generic term)|organic structure (generic term)|physical structure (generic term)
+somaesthesia|2
+(noun)|somesthesia|somatesthesia|somatic sensation|perception (generic term)
+(noun)|somesthesia|somesthesis|somaesthesis|somatesthesia|somataesthesis|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+somaesthesis|1
+(noun)|somesthesia|somesthesis|somaesthesia|somatesthesia|somataesthesis|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+somali|3
+(adj)|Somalian|Somali|African country|African nation (related term)
+(noun)|Somalian|Somali|African (generic term)
+(noun)|Somali|Cushitic (generic term)
+somali peninsula|1
+(noun)|Somali peninsula|Horn of Africa|peninsula (generic term)
+somalia|1
+(noun)|Somalia|African country (generic term)|African nation (generic term)
+somalian|2
+(adj)|Somalian|Somali|African country|African nation (related term)
+(noun)|Somalian|Somali|African (generic term)
+somalian monetary unit|1
+(noun)|Somalian monetary unit|monetary unit (generic term)
+somalian shilling|1
+(noun)|Somalian shilling|shilling|Somalian monetary unit (generic term)
+soman|1
+(noun)|GD|organophosphate nerve agent (generic term)
+somataesthesis|1
+(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+somateria|1
+(noun)|Somateria|genus Somateria|bird genus (generic term)
+somatesthesia|2
+(noun)|somesthesia|somaesthesia|somatic sensation|perception (generic term)
+(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somataesthesis|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+somatic|1
+(adj)|bodily|corporal|corporeal|physical (similar term)
+somatic cell|1
+(noun)|vegetative cell|cell (generic term)
+somatic cell nuclear transfer|1
+(noun)|somatic cell nuclear transplantation|SCNT|nuclear transplantation|biological research (generic term)
+somatic cell nuclear transplantation|1
+(noun)|somatic cell nuclear transfer|SCNT|nuclear transplantation|biological research (generic term)
+somatic chromosome|1
+(noun)|autosome|chromosome (generic term)
+somatic delusion|1
+(noun)|delusion (generic term)|psychotic belief (generic term)
+somatic sensation|1
+(noun)|somesthesia|somaesthesia|somatesthesia|perception (generic term)
+somatic sense|1
+(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somataesthesis|somatosensory system|somatic sensory system|interoception (generic term)
+somatic sensory system|1
+(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somataesthesis|somatosensory system|somatic sense|interoception (generic term)
+somatogenetic|1
+(adj)|somatogenic|physical (similar term)
+somatogenic|1
+(adj)|somatogenetic|physical (similar term)
+somatosense|1
+(noun)|modality (generic term)|sense modality (generic term)|sensory system (generic term)
+somatosensory|1
+(adj)|modality|sense modality|sensory system (related term)
+somatosensory system|1
+(noun)|somesthesia|somesthesis|somaesthesia|somaesthesis|somatesthesia|somataesthesis|somatic sensory system|somatic sense|interoception (generic term)
+somatotrophic hormone|1
+(noun)|somatotropin|somatotrophin|somatotropic hormone|STH|human growth hormone|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+somatotrophin|1
+(noun)|somatotropin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+somatotropic hormone|1
+(noun)|somatotropin|somatotrophin|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+somatotropin|1
+(noun)|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+somatotype|1
+(noun)|body type|physique (generic term)|build (generic term)|body-build (generic term)|habitus (generic term)
+somber|2
+(adj)|sombre|melancholy|cheerless (similar term)|uncheerful (similar term)
+(adj)|drab|sober|sombre|colorless (similar term)|colourless (similar term)
+somberly|1
+(adv)|sombrely
+somberness|3
+(noun)|gloom|sombreness|semidarkness (generic term)
+(noun)|gloom|gloominess|sombreness|melancholy (generic term)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|graveness|gravity|sobriety|soberness|sombreness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+sombre|2
+(adj)|somber|melancholy|cheerless (similar term)|uncheerful (similar term)
+(adj)|drab|sober|somber|colorless (similar term)|colourless (similar term)
+sombrely|1
+(adv)|somberly
+sombreness|3
+(noun)|gloom|somberness|semidarkness (generic term)
+(noun)|gloom|gloominess|somberness|melancholy (generic term)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|graveness|gravity|sobriety|soberness|somberness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+sombrero|2
+(noun)|Sombrero|island (generic term)
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+some|5
+(adj)|any (similar term)|whatever (similar term)|whatsoever (similar term)|both (similar term)|several (similar term)|few (related term)|many (related term)|no (antonym)|all (antonym)
+(adj)|many (similar term)
+(adj)|extraordinary (similar term)
+(adj)|much (similar term)
+(adv)|approximately|about|close to|just about|roughly|more or less|around|or so
+some other|1
+(adj)|another|other (similar term)
+somebody|1
+(noun)|person|individual|someone|mortal|soul|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+somehow|2
+(adv)|someway|someways|in some way|in some manner
+(adv)|for some reason
+someone|1
+(noun)|person|individual|somebody|mortal|soul|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+someplace|1
+(adv)|somewhere
+somersault|2
+(noun)|somerset|summersault|summerset|somersaulting|flip|tumble (generic term)
+(verb)|roll over (generic term)
+somersaulting|1
+(noun)|somersault|somerset|summersault|summerset|flip|tumble (generic term)
+somerset|2
+(noun)|Somerset|county (generic term)
+(noun)|somersault|summersault|summerset|somersaulting|flip|tumble (generic term)
+somerset maugham|1
+(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer (generic term)|author (generic term)
+somesthesia|2
+(noun)|somaesthesia|somatesthesia|somatic sensation|perception (generic term)
+(noun)|somesthesis|somaesthesia|somaesthesis|somatesthesia|somataesthesis|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+somesthesis|1
+(noun)|somesthesia|somaesthesia|somaesthesis|somatesthesia|somataesthesis|somatosensory system|somatic sensory system|somatic sense|interoception (generic term)
+something|1
+(noun)|thing (generic term)
+sometime|1
+(adj)|erstwhile|former|old|onetime|quondam|past (similar term)
+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|immoderately (antonym)|unreasonably (antonym)
+somewhere|2
+(noun)|location (generic term)
+(adv)|someplace
+somite|1
+(noun)|metamere|segment (generic term)
+somme|1
+(noun)|Somme|Somme River|Battle of the Somme|pitched battle (generic term)
+somme river|1
+(noun)|Somme|Somme River|Battle of the Somme|pitched battle (generic term)
+sommelier|1
+(noun)|wine waiter|wine steward|waiter (generic term)|server (generic term)
+somnambulate|1
+(verb)|sleepwalk|walk (generic term)
+somnambulation|1
+(noun)|sleepwalking|somnambulism|noctambulism|noctambulation|sleeping (generic term)|walk (generic term)|walking (generic term)
+somnambulism|1
+(noun)|sleepwalking|somnambulation|noctambulism|noctambulation|sleeping (generic term)|walk (generic term)|walking (generic term)
+somnambulist|1
+(noun)|sleepwalker|noctambulist|sleeper (generic term)|slumberer (generic term)
+somniferous|1
+(adj)|soporific|soporiferous|somnific|hypnogogic|hypnagogic|depressant (similar term)
+somnific|1
+(adj)|soporific|soporiferous|somniferous|hypnogogic|hypnagogic|depressant (similar term)
+somniloquism|1
+(noun)|sleep talking|somniloquy|sleeping (generic term)|process (generic term)|unconscious process (generic term)
+somniloquist|1
+(noun)|sleeper (generic term)|slumberer (generic term)
+somniloquy|1
+(noun)|sleep talking|somniloquism|sleeping (generic term)|process (generic term)|unconscious process (generic term)
+somnolence|1
+(noun)|sleepiness|drowsiness|temporary state (generic term)|wakefulness (antonym)
+somnolent|1
+(adj)|slumberous|slumbery|slumbrous|asleep (similar term)
+somnolently|1
+(adv)|drowsily
+somrai|1
+(noun)|Somrai|Sibine|East Chadic (generic term)
+son|2
+(noun)|boy|male offspring (generic term)|man-child (generic term)|girl (antonym)|daughter (antonym)
+(noun)|Son|Word|Logos|hypostasis (generic term)|hypostasis of Christ (generic term)
+son-in-law|1
+(noun)|in-law (generic term)|relative-in-law (generic term)
+son of a bitch|1
+(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|whoreson|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+sonant|2
+(adj)|voiced|soft|unvoiced (antonym)
+(noun)|voiced sound|phone (generic term)|speech sound (generic term)|sound (generic term)
+sonar|1
+(noun)|echo sounder|asdic|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)|navigational instrument (generic term)
+sonata|1
+(noun)|classical music (generic term)|classical (generic term)|serious music (generic term)
+sonata form|1
+(noun)|art form (generic term)
+sonatina|1
+(noun)|sonata (generic term)
+sonchus|1
+(noun)|Sonchus|genus Sonchus|asterid dicot genus (generic term)
+sonchus oleraceus|1
+(noun)|milkweed|Sonchus oleraceus|sow thistle (generic term)|milk thistle (generic term)
+sondheim|1
+(noun)|Sondheim|Stephen Sondheim|composer (generic term)
+sone|1
+(noun)|sound unit (generic term)
+song|6
+(noun)|vocal|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|sound (generic term)
+(noun)|strain|vocal music (generic term)
+(noun)|birdcall|call|birdsong|animal communication (generic term)
+(noun)|bargain (generic term)|buy (generic term)|steal (generic term)
+(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty (generic term)
+song and dance|2
+(noun)|performance (generic term)|public presentation (generic term)
+(noun)|fairytale|fairy tale|fairy story|cock-and-bull story|fib (generic term)|story (generic term)|tale (generic term)|tarradiddle (generic term)|taradiddle (generic term)
+song dynasty|1
+(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty (generic term)
+song of solomon|1
+(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book (generic term)
+song of songs|1
+(noun)|Song of Songs|Song of Solomon|Canticle of Canticles|Canticles|book (generic term)
+song sparrow|1
+(noun)|Melospiza melodia|New World sparrow (generic term)
+song thrush|1
+(noun)|mavis|throstle|Turdus philomelos|thrush (generic term)
+songbird|1
+(noun)|songster|oscine (generic term)|oscine bird (generic term)
+songbook|1
+(noun)|book (generic term)
+songful|1
+(adj)|canorous|melodious (similar term)|melodic (similar term)|musical (similar term)
+songfulness|1
+(noun)|lyricality|lyricism|musicality (generic term)|musicalness (generic term)
+songhai|1
+(noun)|Songhai|Nilo-Saharan (generic term)|Nilo-Saharan language (generic term)
+songlike|1
+(adj)|ariose|melodious (similar term)|melodic (similar term)|musical (similar term)
+songster|3
+(noun)|songwriter|ballad maker|composer (generic term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|songbird|oscine (generic term)|oscine bird (generic term)
+songstress|1
+(noun)|songster (generic term)
+songwriter|1
+(noun)|songster|ballad maker|composer (generic term)
+sonic|2
+(adj)|transonic|subsonic (antonym)|supersonic (antonym)
+(adj)|audible (similar term)|hearable (similar term)
+sonic barrier|1
+(noun)|sound barrier|drag (generic term)|retarding force (generic term)
+sonic boom|1
+(noun)|shock wave (generic term)|blast wave (generic term)
+sonic delay line|1
+(noun)|acoustic delay line|delay line (generic term)
+sonic depth finder|1
+(noun)|fathometer|depth finder (generic term)
+sonnet|3
+(noun)|poem (generic term)|verse form (generic term)
+(verb)|praise (generic term)
+(verb)|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+sonneteer|1
+(noun)|poet (generic term)
+sonny|1
+(noun)|cub|lad|laddie|sonny boy|male child (generic term)|boy (generic term)
+sonny boy|1
+(noun)|cub|lad|laddie|sonny|male child (generic term)|boy (generic term)
+sonny liston|1
+(noun)|Liston|Sonny Liston|Charles Liston|prizefighter (generic term)|gladiator (generic term)
+sonogram|1
+(noun)|echogram|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+sonograph|1
+(noun)|instrument (generic term)
+sonography|1
+(noun)|ultrasonography|echography|ultrasound|imaging (generic term)|tomography (generic term)|prenatal diagnosis (generic term)
+sonometer|1
+(noun)|audiometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+sonora|1
+(noun)|Sonora|genus Sonora|reptile genus (generic term)
+sonora gum|1
+(noun)|Sonora gum|gum resin (generic term)
+sonora lac|1
+(noun)|Sonora lac|animal product (generic term)
+sonora semiannulata|1
+(noun)|ground snake|Sonora semiannulata|colubrid snake (generic term)|colubrid (generic term)
+sonoran desert|1
+(noun)|Sonoran Desert|desert (generic term)
+sonoran lyre snake|1
+(noun)|Sonoran lyre snake|Trimorphodon lambda|lyre snake (generic term)
+sonoran whipsnake|1
+(noun)|Sonoran whipsnake|Masticophis bilineatus|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+sonority|1
+(noun)|plangency|resonance|reverberance|ringing|sonorousness|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+sonorous|1
+(adj)|heavy|full (similar term)
+sonorously|1
+(adv)|rotundly
+sonorousness|1
+(noun)|plangency|resonance|reverberance|ringing|sonority|vibrancy|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+sonsie|1
+(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsy|voluptuous|well-endowed|shapely (similar term)
+sonsy|1
+(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|voluptuous|well-endowed|shapely (similar term)
+sontag|1
+(noun)|Sontag|Susan Sontag|writer (generic term)|author (generic term)
+soochong|1
+(noun)|souchong|black tea (generic term)
+soon|1
+(adv)|shortly|presently|before long
+soon enough|1
+(adv)|in time
+sooner|3
+(noun)|Oklahoman|Sooner|American (generic term)
+(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 (generic term)
+soonest|1
+(adv)|earliest
+soot|2
+(noun)|carbon black|lampblack|smut|crock|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+(verb)|coat (generic term)|surface (generic term)
+soot-black|1
+(adj)|sooty-black|achromatic (similar term)
+soot black|1
+(noun)|coal black|ebony|jet black|pitch black|sable|black (generic term)|blackness (generic term)|inkiness (generic term)
+sooth|1
+(noun)|truthfulness (generic term)
+soothe|2
+(verb)|comfort|console|solace
+(verb)|relieve (generic term)|alleviate (generic term)|palliate (generic term)|assuage (generic term)|irritate (antonym)
+soothing|2
+(adj)|comfortable (similar term)|comfy (similar term)
+(adj)|assuasive|calming|pacifying|reassuring (similar term)
+soothing syrup|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+soothsayer|1
+(noun)|forecaster|predictor|prognosticator|visionary (generic term)|illusionist (generic term)|seer (generic term)
+soothsaying|1
+(noun)|divination|foretelling|fortune telling|prophecy (generic term)|prognostication (generic term)|vaticination (generic term)
+sootiness|1
+(noun)|smuttiness|dirtiness (generic term)|uncleanness (generic term)
+sooty|2
+(adj)|coal-black|jet|jet-black|pitchy|achromatic (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+sooty-black|1
+(adj)|soot-black|achromatic (similar term)
+sop|7
+(noun)|sops|morsel (generic term)|bit (generic term)|bite (generic term)
+(noun)|concession (generic term)
+(noun)|standing operating procedure|standard operating procedure|SOP|standard procedure|operating procedure (generic term)
+(verb)|bribe (generic term)|corrupt (generic term)|buy (generic term)|grease one's palms (generic term)
+(verb)|soak through|ooze through (generic term)
+(verb)|dunk (generic term)|dip (generic term)|souse (generic term)|plunge (generic term)|douse (generic term)
+(verb)|drench|douse|dowse|soak|souse|wet (generic term)
+sop up|2
+(verb)|absorb|suck|imbibe|soak up|suck up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|take in|suck in|take up|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+soph|1
+(noun)|sophomore|lowerclassman (generic term)|underclassman (generic term)
+sophia loren|1
+(noun)|Loren|Sophia Loren|Sofia Scicolone|actress (generic term)
+sophie tucker|1
+(noun)|Tucker|Sophie Tucker|vaudevillian (generic term)|comedienne (generic term)
+sophism|1
+(noun)|sophistry|sophistication|fallacy (generic term)|false belief (generic term)
+sophist|2
+(noun)|Sophist|philosopher (generic term)
+(noun)|casuist|reasoner (generic term)|ratiocinator (generic term)
+sophistic|2
+(adj)|reasoner|ratiocinator (related term)
+(adj)|sophistical|invalid (similar term)
+sophistical|1
+(adj)|sophistic|invalid (similar term)
+sophisticate|5
+(noun)|man of the world|adult (generic term)|grownup (generic term)
+(verb)|educate (generic term)|school (generic term)|train (generic term)|cultivate (generic term)|civilize (generic term)|civilise (generic term)
+(verb)|twist|twist around|pervert|convolute|denote (generic term)|refer (generic term)
+(verb)|doctor|doctor up|adulterate (generic term)|stretch (generic term)|dilute (generic term)|debase (generic term)
+(verb)|complicate (generic term)|refine (generic term)|rarify (generic term)|elaborate (generic term)
+sophisticated|3
+(adj)|blase (similar term)|worldly (similar term)|intelligent (similar term)|well-informed (similar term)|polished (similar term)|refined (similar term)|svelte (similar term)|urbane (similar term)|worldly-wise (similar term)|cosmopolitan (related term)|widely distributed (related term)|disenchanted (related term)|elegant (related term)|informed (related term)|literate (related term)|worldly (related term)|naive (antonym)
+(adj)|advanced|high-tech (similar term)|hi-tech (similar term)
+(adj)|intellectual (similar term)
+sophistication|5
+(noun)|edification|enlightenment (generic term)
+(noun)|sophism|sophistry|fallacy (generic term)|false belief (generic term)
+(noun)|expertness (generic term)|expertise (generic term)
+(noun)|worldliness|mundaneness|mundanity|quality (generic term)|naivete (antonym)
+(noun)|falsification (generic term)|falsehood (generic term)
+sophistry|1
+(noun)|sophism|sophistication|fallacy (generic term)|false belief (generic term)
+sophocles|1
+(noun)|Sophocles|dramatist (generic term)|playwright (generic term)
+sophomore|2
+(adj)|second-year|intermediate (similar term)
+(noun)|soph|lowerclassman (generic term)|underclassman (generic term)
+sophomore class|1
+(noun)|class (generic term)|year (generic term)
+sophonias|2
+(noun)|Zephaniah|Sophonias|prophet (generic term)
+(noun)|Zephaniah|Sophonias|Book of Zephaniah|book (generic term)
+sophora|1
+(noun)|Sophora|genus Sophora|rosid dicot genus (generic term)
+sophora japonica|1
+(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree (generic term)
+sophora secundiflora|1
+(noun)|mescal bean|coral bean|frijolito|frijolillo|Sophora secundiflora|tree (generic term)
+sophora sinensis|1
+(noun)|Japanese pagoda tree|Chinese scholartree|Chinese scholar tree|Sophora japonica|Sophora sinensis|tree (generic term)
+sophora tetraptera|1
+(noun)|kowhai|Sophora tetraptera|tree (generic term)
+sopor|1
+(noun)|sleep|physiological state (generic term)|physiological condition (generic term)
+soporiferous|2
+(adj)|soporific|somniferous|somnific|hypnogogic|hypnagogic|depressant (similar term)
+(adj)|narcotic|soporific|uninteresting (similar term)
+soporific|3
+(adj)|soporiferous|somniferous|somnific|hypnogogic|hypnagogic|depressant (similar term)
+(adj)|narcotic|soporiferous|uninteresting (similar term)
+(noun)|hypnotic|drug (generic term)|hypnagogue (generic term)
+sopping|2
+(adj)|drenched|saturated|soaked|soaking|sodden|soppy|wet (similar term)
+(adv)|soaking|dripping
+soppy|2
+(adj)|drenched|saturated|soaked|soaking|sodden|sopping|wet (similar term)
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soupy|slushy|emotional (similar term)
+sopranino|1
+(adj)|high (similar term)|high-pitched (similar term)
+soprano|4
+(adj)|treble|high (similar term)|high-pitched (similar term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|singing voice (generic term)
+(noun)|treble|pitch (generic term)
+soprano clef|1
+(noun)|clef (generic term)
+sops|1
+(noun)|sop|morsel (generic term)|bit (generic term)|bite (generic term)
+sorb|2
+(noun)|sorb apple|edible fruit (generic term)
+(verb)|take up|change state (generic term)|turn (generic term)
+sorb apple|2
+(noun)|service tree|sorb apple tree|Sorbus domestica|mountain ash (generic term)
+(noun)|sorb|edible fruit (generic term)
+sorb apple tree|1
+(noun)|service tree|sorb apple|Sorbus domestica|mountain ash (generic term)
+sorbate|1
+(noun)|material (generic term)|stuff (generic term)
+sorbed|1
+(adj)|occluded|combined (similar term)
+sorbefacient|1
+(adj)|absorbefacient|absorbent (similar term)|absorptive (similar term)
+sorbent|1
+(noun)|sorbent material|material (generic term)|stuff (generic term)
+sorbent material|1
+(noun)|sorbent|material (generic term)|stuff (generic term)
+sorbet|1
+(noun)|sherbert|sherbet|ice (generic term)|frappe (generic term)
+sorbian|2
+(noun)|Sorbian|Slav (generic term)
+(noun)|Sorbian|Lusatian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+sorbic acid|1
+(noun)|carboxylic acid (generic term)
+sorbonne|1
+(noun)|Paris University|University of Paris|Sorbonne|university (generic term)
+sorbus|1
+(noun)|Sorbus|genus Sorbus|rosid dicot genus (generic term)
+sorbus americana|1
+(noun)|American mountain ash|Sorbus americana|mountain ash (generic term)
+sorbus aucuparia|1
+(noun)|rowan|rowan tree|European mountain ash|Sorbus aucuparia|mountain ash (generic term)
+sorbus domestica|1
+(noun)|service tree|sorb apple|sorb apple tree|Sorbus domestica|mountain ash (generic term)
+sorbus sitchensis|1
+(noun)|Western mountain ash|Sorbus sitchensis|mountain ash (generic term)
+sorbus torminalis|1
+(noun)|wild service tree|Sorbus torminalis|service tree (generic term)|sorb apple (generic term)|sorb apple tree (generic term)|Sorbus domestica (generic term)
+sorcerer|1
+(noun)|magician|wizard|necromancer|thaumaturge|thaumaturgist|occultist (generic term)
+sorceress|1
+(noun)|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+sorcerise|1
+(verb)|sorcerize|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+sorcerize|1
+(verb)|sorcerise|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+sorcerous|1
+(adj)|charming|magic|magical|witching|wizard|wizardly|supernatural (similar term)
+sorcery|1
+(noun)|black magic|black art|necromancy|magic (generic term)|thaumaturgy (generic term)
+sordid|4
+(adj)|seamy|seedy|sleazy|squalid|disreputable (similar term)
+(adj)|dirty|corrupt (similar term)
+(adj)|flyblown|squalid|dirty (similar term)|soiled (similar term)|unclean (similar term)
+(adj)|acquisitive (similar term)
+sordidly|1
+(adv)|squalidly
+sordidness|2
+(noun)|squalor|squalidness|dirtiness (generic term)|uncleanness (generic term)
+(noun)|baseness|contemptibility|despicableness|despicability|unworthiness (generic term)
+sordino|1
+(noun)|sourdine|mute (generic term)
+sore|4
+(adj)|sensitive|raw|tender|painful (similar term)
+(adj)|afflictive|painful|unpleasant (similar term)
+(adj)|huffy|mad|angry (similar term)
+(noun)|infection (generic term)
+sore-eyed|1
+(adj)|unhealthy (similar term)
+sore throat|1
+(noun)|pharyngitis|raw throat|inflammatory disease (generic term)
+sorehead|1
+(noun)|malcontent (generic term)
+sorely|1
+(adv)|painfully|painlessly (antonym)
+soren aabye kierkegaard|1
+(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher (generic term)
+soren kierkegaard|1
+(noun)|Kierkegaard|Soren Kierkegaard|Soren Aabye Kierkegaard|philosopher (generic term)
+soren peter lauritz sorensen|1
+(noun)|Sorensen|Soren Peter Lauritz Sorensen|chemist (generic term)
+soreness|2
+(noun)|tenderness|rawness|pain (generic term)|hurting (generic term)
+(noun)|discomfort|irritation|suffering (generic term)|hurt (generic term)
+sorensen|1
+(noun)|Sorensen|Soren Peter Lauritz Sorensen|chemist (generic term)
+sorex|1
+(noun)|Sorex|genus Sorex|mammal genus (generic term)
+sorex araneus|1
+(noun)|common shrew|Sorex araneus|shrew (generic term)|shrewmouse (generic term)
+sorex cinereus|1
+(noun)|masked shrew|Sorex cinereus|shrew (generic term)|shrewmouse (generic term)
+sorex palustris|1
+(noun)|American water shrew|Sorex palustris|water shrew (generic term)
+sorgho|1
+(noun)|sorgo|sweet sorghum|sugar sorghum|sorghum (generic term)
+sorghum|3
+(noun)|millet (generic term)
+(noun)|genus Sorghum|Sorghum|monocot genus (generic term)|liliopsid genus (generic term)
+(noun)|sorghum molasses|syrup (generic term)|sirup (generic term)
+sorghum bicolor|1
+(noun)|great millet|kaffir|kafir corn|kaffir corn|Sorghum bicolor|sorghum (generic term)
+sorghum halapense|1
+(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+sorghum halepense|1
+(noun)|Johnson grass|Aleppa grass|means grass|evergreen millet|Sorghum halepense|Sorghum halapense|sorghum (generic term)
+sorghum molasses|1
+(noun)|sorghum|syrup (generic term)|sirup (generic term)
+sorghum vulgare caudatum|1
+(noun)|feterita|federita|Sorghum vulgare caudatum|grain sorghum (generic term)
+sorghum vulgare rosburghii|1
+(noun)|shallu|Sorghum vulgare rosburghii|grain sorghum (generic term)
+sorghum vulgare technicum|1
+(noun)|broomcorn|Sorghum vulgare technicum|sorghum (generic term)
+sorgo|1
+(noun)|sorgho|sweet sorghum|sugar sorghum|sorghum (generic term)
+soricidae|1
+(noun)|Soricidae|family Soricidae|mammal family (generic term)
+sororal|1
+(adj)|sisterly|sisterlike|brotherly (antonym)
+sorority|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+sorption|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+sorrel|6
+(adj)|brownish-orange|chromatic (similar term)
+(noun)|oxalis|wood sorrel|herb (generic term)|herbaceous plant (generic term)
+(noun)|dock|sour grass|herb (generic term)|herbaceous plant (generic term)
+(noun)|roselle|rozelle|red sorrel|Jamaica sorrel|Hibiscus sabdariffa|hibiscus (generic term)
+(noun)|common sorrel|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+sorrel tree|2
+(noun)|sourwood|titi|Oxydendrum arboreum|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|Hibiscus heterophyllus|hibiscus (generic term)
+sorriness|1
+(noun)|paltriness|worthlessness (generic term)|ineptitude (generic term)
+sorrow|5
+(noun)|sadness (generic term)|unhappiness (generic term)|joy (antonym)
+(noun)|regret|rue|ruefulness|sadness (generic term)|unhappiness (generic term)
+(noun)|grief|negative stimulus (generic term)
+(noun)|sadness|sorrowfulness|unhappiness (generic term)
+(verb)|grieve|suffer (generic term)
+sorrower|1
+(noun)|mourner|griever|lamenter|unfortunate (generic term)|unfortunate person (generic term)
+sorrowful|1
+(adj)|anguished (similar term)|tormented (similar term)|tortured (similar term)|bereaved (similar term)|bereft (similar term)|grief-stricken (similar term)|grieving (similar term)|mourning (similar term)|sorrowing (similar term)|bitter (similar term)|brokenhearted (similar term)|heartbroken (similar term)|heartsick (similar term)|dolorous (similar term)|dolourous (similar term)|lachrymose (similar term)|tearful (similar term)|weeping (similar term)|elegiac (similar term)|grievous (similar term)|heartbreaking (similar term)|heartrending (similar term)|lamenting (similar term)|wailing (similar term)|wailful (similar term)|lugubrious (similar term)|mournful (similar term)|plaintive (similar term)|sad (similar term)|woebegone (similar term)|woeful (similar term)|joyless (related term)|unhappy (related term)|joyful (antonym)
+sorrowfully|1
+(adv)|dolefully
+sorrowfulness|2
+(noun)|sadness|sorrow|unhappiness (generic term)
+(noun)|mournfulness|ruthfulness|sorrow (generic term)
+sorrowing|1
+(adj)|bereaved|bereft|grief-stricken|grieving|mourning|sorrowful (similar term)
+sorry|5
+(adj)|pitying|compassionate (similar term)
+(adj)|regretful|bad|penitent (related term)|repentant (related term)|unregretful (antonym)
+(adj)|deplorable|distressing|lamentable|pitiful|sad|bad (similar term)
+(adj)|blue|dark|depressing|dingy|disconsolate|dismal|dispiriting|gloomy|grim|drab|drear|dreary|cheerless (similar term)|uncheerful (similar term)
+(adj)|good-for-nothing|good-for-naught|meritless|no-account|no-count|no-good|worthless (similar term)
+sort|6
+(noun)|kind|form|variety|category (generic term)
+(noun)|similarity (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|sorting|operation (generic term)
+(verb)|screen|screen out|sieve|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|classify|class|assort|sort out|separate|categorize (generic term)|categorise (generic term)
+sort of|1
+(adv)|rather|kind of|kinda
+sort out|3
+(verb)|classify|class|sort|assort|separate|categorize (generic term)|categorise (generic term)
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|straighten out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|discipline|correct|punish (generic term)|penalize (generic term)|penalise (generic term)
+sort program|1
+(noun)|sorting program|utility program (generic term)|utility (generic term)|service program (generic term)
+sorted|2
+(adj)|sized (similar term)
+(adj)|grouped|classified (similar term)
+sorter|2
+(noun)|clerk (generic term)
+(noun)|machine (generic term)
+sortie|2
+(noun)|sally|military action (generic term)|action (generic term)
+(noun)|flight (generic term)|flying (generic term)
+sorting|3
+(noun)|sort|operation (generic term)
+(noun)|classification|categorization|categorisation|basic cognitive process (generic term)
+(noun)|grouping (generic term)
+sorting algorithm|1
+(noun)|algorithm (generic term)|algorithmic rule (generic term)|algorithmic program (generic term)
+sorting program|1
+(noun)|sort program|utility program (generic term)|utility (generic term)|service program (generic term)
+sortition|1
+(noun)|casting lots|drawing lots|decision (generic term)|determination (generic term)|conclusion (generic term)
+sorus|1
+(noun)|reproductive structure (generic term)
+sos|1
+(noun)|SOS|distress signal (generic term)|distress call (generic term)
+sot|1
+(noun)|drunkard|drunk|rummy|inebriate|wino|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+soteriological|1
+(adj)|Christian theology (related term)
+soteriology|1
+(noun)|Christian theology (generic term)
+sothis|1
+(noun)|Sirius|Dog Star|Canicula|Sothis|binary star (generic term)|binary (generic term)|double star (generic term)
+sotho|3
+(adj)|Sotho|Bantu|Bantoid language (related term)
+(noun)|Sotho|Bantu (generic term)
+(noun)|Sotho|Bantu (generic term)|Bantoid language (generic term)
+sottish|1
+(adj)|bibulous|boozy|drunken|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+sottishness|2
+(noun)|drunkenness (generic term)|inebriation (generic term)|inebriety (generic term)|intoxication (generic term)|tipsiness (generic term)|insobriety (generic term)
+(noun)|unrestraint (generic term)
+sotto voce|1
+(adv)|in a low voice
+sou|1
+(noun)|coin (generic term)
+sou'-east|2
+(noun)|southeast|southeastward|SE|compass point (generic term)|point (generic term)
+(adv)|southeast|south-east
+sou'-sou'-east|2
+(noun)|south southeast|SSE|compass point (generic term)|point (generic term)
+(adv)|south-southeast
+sou'-sou'-west|2
+(noun)|south southwest|SSW|compass point (generic term)|point (generic term)
+(adv)|south-southwest
+sou'-west|1
+(noun)|southwest|southwestward|SW|compass point (generic term)|point (generic term)
+sou'easter|1
+(noun)|southeaster|wind (generic term)|air current (generic term)|current of air (generic term)
+sou'west|1
+(adv)|southwest|south-west
+sou'wester|2
+(noun)|southwester|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+souari|1
+(noun)|souari nut|souari tree|Caryocar nuciferum|tree (generic term)
+souari nut|2
+(noun)|souari|souari tree|Caryocar nuciferum|tree (generic term)
+(noun)|edible nut (generic term)
+souari tree|1
+(noun)|souari|souari nut|Caryocar nuciferum|tree (generic term)
+soubise|1
+(noun)|Soubise|white onion sauce|sauce (generic term)
+soubrette|2
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|bit part (generic term)|minor role (generic term)
+soubriquet|1
+(noun)|nickname|moniker|cognomen|sobriquet|byname|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+souchong|1
+(noun)|soochong|black tea (generic term)
+soudan|2
+(noun)|Sudan|Republic of the Sudan|Soudan|African country (generic term)|African nation (generic term)
+(noun)|Sudan|Soudan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+souffle|1
+(noun)|dish (generic term)
+souffle-like|1
+(adj)|cooked (similar term)
+soufflot|1
+(noun)|Soufflot|Jacques Germain Soufflot|architect (generic term)|designer (generic term)
+sough|3
+(verb)|sow|seed|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|groan|moan|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|sow|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+soughing|1
+(adj)|murmurous|rustling|susurrous|soft (similar term)
+sought|1
+(adj)|sought-after|wanted (similar term)
+sought-after|1
+(adj)|sought|wanted (similar term)
+sought after|1
+(adj)|coveted|desired|in demand|desirable (similar term)
+souk|1
+(noun)|open-air market (generic term)|open-air marketplace (generic term)|market square (generic term)
+soul|5
+(noun)|psyche|spirit (generic term)
+(noun)|person|individual|someone|somebody|mortal|organism (generic term)|being (generic term)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|soulfulness|feeling (generic term)
+(noun)|embodiment (generic term)
+(noun)|gospel (generic term)|gospel singing (generic term)|black music (generic term)|African-American music (generic term)
+soul-destroying|1
+(adj)|destructive (similar term)
+soul-searching|1
+(noun)|self-analysis|introspection (generic term)|self-contemplation (generic term)|self-examination (generic term)
+soul-stirring|1
+(adj)|stirring|moving (similar term)
+soul brother|1
+(noun)|Black man (generic term)
+soul food|1
+(noun)|food (generic term)|nutrient (generic term)
+soul kiss|1
+(noun)|deep kiss|French kiss|kiss (generic term)|buss (generic term)|osculation (generic term)
+soul mate|1
+(noun)|lover (generic term)
+soulful|1
+(adj)|emotional (similar term)
+soulfulness|1
+(noun)|soul|feeling (generic term)
+soulless|1
+(adj)|insensitive (similar term)
+sound|23
+(adj)|dependable (similar term)|good (similar term)|safe (similar term)|secure (similar term)|healthy (similar term)|solid (similar term)|stable (similar term)|fit (related term)|healthy (related term)|healthy (related term)|unbroken (related term)|undamaged (related term)|uninjured (related term)|wholesome (related term)|unsound (antonym)
+(adj)|healthy|intelligent|levelheaded|level-headed|reasonable (similar term)|sensible (similar term)
+(adj)|solid (similar term)|strong (similar term)|substantial (similar term)|unsound (antonym)
+(adj)|good|healthy (similar term)
+(adj)|reasoned|well-grounded|valid (similar term)
+(adj)|legal|effectual|valid (similar term)
+(adj)|righteous (similar term)
+(adj)|heavy|profound|wakeless|deep (similar term)
+(adj)|complete (similar term)
+(noun)|sound property (generic term)|silence (antonym)
+(noun)|auditory sensation|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|mechanical phenomenon (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|audio|auditory communication (generic term)
+(noun)|phone|speech sound|language unit (generic term)|linguistic unit (generic term)
+(noun)|strait|channel (generic term)
+(noun)|body of water (generic term)|water (generic term)
+(verb)|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|go|cause to be perceived (generic term)
+(verb)|announce (generic term)|denote (generic term)
+(verb)|voice|vocalize|vocalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)|devoice (antonym)
+(verb)|sound off (related term)
+(verb)|fathom|quantify (generic term)|measure (generic term)
+sound alphabet|1
+(noun)|phonetic alphabet|alphabet (generic term)
+sound asleep|1
+(adj)|fast asleep|asleep (similar term)
+sound barrier|1
+(noun)|sonic barrier|drag (generic term)|retarding force (generic term)
+sound bite|1
+(noun)|line (generic term)
+sound bow|1
+(noun)|contact (generic term)|tangency (generic term)
+sound camera|1
+(noun)|motion-picture camera (generic term)|movie camera (generic term)|cine-camera (generic term)
+sound effect|1
+(noun)|effect (generic term)
+sound film|1
+(noun)|motion-picture film (generic term)|movie film (generic term)|cine-film (generic term)
+sound hole|1
+(noun)|hole (generic term)
+sound judgement|1
+(noun)|judgment|judgement|sound judgment|perspicacity|trait (generic term)
+sound judgment|1
+(noun)|judgment|judgement|sound judgement|perspicacity|trait (generic term)
+sound law|1
+(noun)|law (generic term)|natural law (generic term)
+sound off|3
+(verb)|opine|speak up|animadvert|declare (generic term)
+(verb)|strike up|play (generic term)
+(verb)|complain|kick|plain|quetch|kvetch|cheer (antonym)
+sound out|2
+(verb)|pronounce|articulate|enounce|enunciate|say
+(verb)|check out|feel out|question (generic term)|query (generic term)
+sound perception|1
+(noun)|auditory perception|perception (generic term)
+sound pollution|1
+(noun)|noise pollution|pollution (generic term)
+sound pressure|1
+(noun)|instantaneous sound pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+sound pressure level|1
+(noun)|acoustic power|intensity (generic term)|strength (generic term)|intensity level (generic term)
+sound projection|1
+(noun)|projection|acoustic projection|acoustic phenomenon (generic term)
+sound property|1
+(noun)|property (generic term)
+sound ranging|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+sound recording|1
+(noun)|audio recording|recording (generic term)
+sound reflection|1
+(noun)|echo|reverberation|replication|reflection (generic term)|reflexion (generic term)|reflectivity (generic term)
+sound reproduction|1
+(noun)|reproduction (generic term)|replication (generic term)
+sound spectrograph|1
+(noun)|spectrograph (generic term)
+sound spectrum|1
+(noun)|acoustic spectrum|spectrum (generic term)
+sound structure|1
+(noun)|morphology|syllable structure|word structure|structure (generic term)
+sound system|1
+(noun)|audio system|electronic equipment (generic term)|system (generic term)
+sound truck|1
+(noun)|truck (generic term)|motortruck (generic term)
+sound unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+sound wave|1
+(noun)|acoustic wave|wave (generic term)|undulation (generic term)
+soundable|1
+(adj)|fathomable|plumbable|unfathomable (antonym)
+soundboard|1
+(noun)|sounding board|resonator (generic term)|cavity resonator (generic term)|resonating chamber (generic term)
+soundbox|1
+(noun)|resonator (generic term)|cavity resonator (generic term)|resonating chamber (generic term)
+sounded|1
+(adj)|plumbed|measured (similar term)
+sounder|1
+(noun)|device (generic term)
+sounding|5
+(adj)|looking|superficial (similar term)
+(adj)|full (similar term)
+(adj)|audible (similar term)|hearable (similar term)
+(noun)|depth (generic term)
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+sounding board|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|soundboard|resonator (generic term)|cavity resonator (generic term)|resonating chamber (generic term)
+sounding lead|1
+(noun)|bob (generic term)
+sounding line|1
+(noun)|lead line|plumb line (generic term)|perpendicular (generic term)
+sounding rocket|1
+(noun)|test rocket (generic term)|research rocket (generic term)|test instrument vehicle (generic term)
+soundless|1
+(adj)|silent|still|quiet (similar term)
+soundlessly|1
+(adv)|noiselessly
+soundlessness|1
+(noun)|quietness|silence (generic term)|quiet (generic term)
+soundly|1
+(adv)|thoroughly|good
+soundman|1
+(noun)|technician (generic term)
+soundness|3
+(noun)|condition (generic term)|status (generic term)|unsoundness (antonym)
+(noun)|wisdom|wiseness|good (generic term)|goodness (generic term)|unsoundness (antonym)
+(noun)|firmness|strength (generic term)|unsoundness (antonym)
+soundproof|2
+(adj)|impervious (similar term)|imperviable (similar term)
+(verb)|insulate (generic term)
+soundtrack|1
+(noun)|sound recording (generic term)|audio recording (generic term)
+soup|4
+(noun)|dish (generic term)
+(noun)|composition (generic term)
+(noun)|situation (generic term)|position (generic term)
+(verb)|dope (generic term)|dope up (generic term)
+soup-fin|1
+(noun)|soupfin shark|soupfin|Galeorhinus zyopterus|requiem shark (generic term)
+soup-strainer|1
+(noun)|toothbrush|mustache (generic term)|moustache (generic term)
+soup bowl|1
+(noun)|bowl (generic term)
+soup du jour|1
+(noun)|soup (generic term)
+soup kitchen|1
+(noun)|charity (generic term)
+soup ladle|1
+(noun)|ladle (generic term)
+soup plate|1
+(noun)|plate (generic term)
+soup spoon|1
+(noun)|soupspoon|spoon (generic term)
+soup up|1
+(verb)|hop up|hot up|modify (generic term)
+soupcon|1
+(noun)|touch|hint|tinge|mite|pinch|jot|speck|small indefinite quantity (generic term)|small indefinite amount (generic term)
+soupfin|1
+(noun)|soupfin shark|soup-fin|Galeorhinus zyopterus|requiem shark (generic term)
+soupfin shark|1
+(noun)|soupfin|soup-fin|Galeorhinus zyopterus|requiem shark (generic term)
+soupiness|2
+(noun)|creaminess|thickness (generic term)
+(noun)|mawkishness|sentimentality|drippiness|mushiness|sloppiness|emotionality (generic term)|emotionalism (generic term)
+soupspoon|1
+(noun)|soup spoon|spoon (generic term)
+soupy|2
+(adj)|thick (similar term)
+(adj)|bathetic|drippy|hokey|maudlin|mawkish|mushy|schmaltzy|schmalzy|sentimental|soppy|slushy|emotional (similar term)
+sour|11
+(adj)|rancid|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+(adj)|acerb (similar term)|acerbic (similar term)|astringent (similar term)|acetose (similar term)|acetous (similar term)|vinegary (similar term)|vinegarish (similar term)|acidic (similar term)|acid (similar term)|acidulent (similar term)|acidulous (similar term)|lemony (similar term)|lemonlike (similar term)|sourish (similar term)|tangy (similar term)|tart (similar term)|subacid (similar term)|dry (related term)|soured (related term)|tasty (related term)|sweet (antonym)
+(adj)|tasty (similar term)
+(adj)|off|turned|soured (similar term)
+(adj)|false|off-key|inharmonious (similar term)|unharmonious (similar term)
+(adj)|dark|dour|glowering|glum|moody|morose|saturnine|sullen|ill-natured (similar term)
+(noun)|cocktail (generic term)
+(noun)|sourness|tartness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sourness|acidity|taste property (generic term)
+(verb)|turn|ferment|work|change state (generic term)|turn (generic term)
+(verb)|acidify|acidulate|acetify|change taste (generic term)|sweeten (antonym)
+sour-gum family|1
+(noun)|Nyssaceae|family Nyssaceae|tupelo family|dicot family (generic term)|magnoliopsid family (generic term)
+sour-tasting|1
+(adj)|acid-tasting|tasty (similar term)
+sour bread|1
+(noun)|sourdough bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+sour cherry|3
+(noun)|sour cherry tree|Prunus cerasus|cherry (generic term)|cherry tree (generic term)
+(noun)|Eugenia corynantha|fruit tree (generic term)
+(noun)|cherry (generic term)
+sour cherry tree|1
+(noun)|sour cherry|Prunus cerasus|cherry (generic term)|cherry tree (generic term)
+sour cream|1
+(noun)|soured cream|cream (generic term)
+sour dock|1
+(noun)|garden sorrel|Rumex acetosa|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+sour fig|1
+(noun)|Hottentot fig|Hottentot's fig|Carpobrotus edulis|Mesembryanthemum edule|succulent (generic term)
+sour gourd|3
+(noun)|cream-of-tartar tree|Adansonia gregorii|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|monkey bread|edible fruit (generic term)
+(noun)|edible fruit (generic term)
+sour grapes|1
+(noun)|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+sour grass|1
+(noun)|dock|sorrel|herb (generic term)|herbaceous plant (generic term)
+sour gum|1
+(noun)|black gum|pepperidge|Nyssa sylvatica|tupelo (generic term)|tupelo tree (generic term)
+sour mash|2
+(noun)|mash (generic term)
+(noun)|sour mash whiskey|whiskey (generic term)|whisky (generic term)
+sour mash whiskey|1
+(noun)|sour mash|whiskey (generic term)|whisky (generic term)
+sour orange|2
+(noun)|Seville orange|bitter orange|bitter orange tree|bigarade|marmalade orange|Citrus aurantium|orange (generic term)|orange tree (generic term)
+(noun)|bitter orange|Seville orange|orange (generic term)
+sour salt|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+sourball|1
+(noun)|hard candy (generic term)
+source|11
+(noun)|beginning|origin|root|rootage|point (generic term)
+(noun)|informant|communicator (generic term)
+(noun)|reference|publication (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|facility (generic term)|installation (generic term)
+(noun)|seed|germ|inspiration (generic term)
+(noun)|generator|author|maker (generic term)|shaper (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)|sink (antonym)
+(noun)|reservoir|thing (generic term)
+(verb)|obtain (generic term)
+(verb)|document (generic term)
+source book|1
+(noun)|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+source code|1
+(noun)|ASCII text file (generic term)
+source language|1
+(noun)|language (generic term)|linguistic communication (generic term)
+source materials|1
+(noun)|source (generic term)
+source of illumination|1
+(noun)|device (generic term)
+source program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)|object program (antonym)
+sourdine|2
+(noun)|sordino|mute (generic term)
+(noun)|organ stop (generic term)
+sourdough|2
+(noun)|leaven (generic term)|leavening (generic term)
+(noun)|settler (generic term)|colonist (generic term)|prospector (generic term)
+sourdough bread|1
+(noun)|sour bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+soured|1
+(adj)|off (similar term)|sour (similar term)|turned (similar term)|sour (related term)|unsoured (antonym)
+soured cream|1
+(noun)|sour cream|cream (generic term)
+souring|1
+(noun)|spoilage (generic term)|spoiling (generic term)
+sourish|1
+(adj)|lemony|lemonlike|tangy|tart|sour (similar term)
+sourness|3
+(noun)|sour|tartness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sour|acidity|taste property (generic term)
+(noun)|sulkiness|sullenness|moroseness|ill nature (generic term)
+sourpuss|1
+(noun)|picklepuss|gloomy Gus|pouter|unwelcome person (generic term)|persona non grata (generic term)
+soursop|2
+(noun)|prickly custard apple|soursop tree|Annona muricata|custard apple (generic term)|custard apple tree (generic term)
+(noun)|guanabana|custard apple (generic term)
+soursop tree|1
+(noun)|soursop|prickly custard apple|Annona muricata|custard apple (generic term)|custard apple tree (generic term)
+sourwood|1
+(noun)|sorrel tree|titi|Oxydendrum arboreum|angiospermous tree (generic term)|flowering tree (generic term)
+sousa|1
+(noun)|Sousa|John Philip Sousa|March King|bandmaster (generic term)|composer (generic term)
+sousaphone|1
+(noun)|bass horn|tuba|brass (generic term)|brass instrument (generic term)|bass (generic term)
+souse|7
+(noun)|alcoholic|alky|dipsomaniac|boozer|lush|soaker|drunkard (generic term)|drunk (generic term)|rummy (generic term)|sot (generic term)|inebriate (generic term)|wino (generic term)
+(noun)|sausage (generic term)
+(noun)|drenching|soaking|sousing|wetting (generic term)
+(verb)|drench|douse|dowse|soak|sop|wet (generic term)
+(verb)|dunk|dip|plunge|douse|immerse (generic term)|plunge (generic term)
+(verb)|soak|inebriate|hit it up|drink (generic term)|booze (generic term)|fuddle (generic term)
+(verb)|cook (generic term)
+soused|2
+(adj)|dunked|wet (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+sousing|1
+(noun)|drenching|soaking|souse|wetting (generic term)
+souslik|1
+(noun)|suslik|Citellus citellus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+sousse|1
+(noun)|Sousse|Susa|Susah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+soutache|1
+(noun)|braid (generic term)|gold braid (generic term)|braiding (generic term)
+soutane|1
+(noun)|cassock (generic term)
+south|6
+(adj)|southbound (similar term)|southward (similar term)|south-central (similar term)|southerly (similar term)|southern (similar term)|southerly (similar term)|southern (similar term)|southernmost (similar term)|southmost (similar term)|southeast (similar term)|southeastern (similar term)|southeasterly (similar term)|southeasterly (similar term)|southeast (similar term)|southeastward (similar term)|southwest (similar term)|southwestern (similar term)|southwesterly (similar term)|southwesterly (similar term)|southwest (similar term)|southwestward (similar term)|north (antonym)
+(noun)|South|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|Confederacy|Confederate States|Confederate States of America|South|Dixie|Dixieland|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|due south|southward|S|cardinal compass point (generic term)
+(noun)|South|southland|region (generic term)
+(adv)|to the south|in the south
+south-african yellowwood|1
+(noun)|South-African yellowwood|Podocarpus latifolius|gymnospermous yellowwood (generic term)
+south-central|2
+(adj)|south (similar term)
+(adj)|southern (similar term)
+south-central dravidian|1
+(noun)|South-Central Dravidian|Dravidian (generic term)|Dravidic (generic term)|Dravidian language (generic term)
+south-east|1
+(adv)|southeast|sou'-east
+south-polar|1
+(adj)|Antarctic|polar (similar term)
+south-seeking pole|1
+(noun)|negative magnetic pole|negative pole|pole (generic term)|magnetic pole (generic term)
+south-southeast|1
+(adv)|sou'-sou'-east
+south-southwest|1
+(adv)|sou'-sou'-west
+south-west|1
+(adv)|southwest|sou'west
+south africa|1
+(noun)|South Africa|Republic of South Africa|African country (generic term)|African nation (generic term)
+south african|2
+(adj)|South African|African country|African nation (related term)
+(noun)|South African|African (generic term)
+south african dutch|1
+(noun)|Afrikaans|Taal|South African Dutch|Dutch (generic term)
+south african monetary unit|1
+(noun)|South African monetary unit|monetary unit (generic term)
+south america|2
+(noun)|South America|continent (generic term)
+(noun)|South America|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+south american|2
+(adj)|South American|continent (related term)
+(noun)|South American|American (generic term)
+south american bullfrog|1
+(noun)|crapaud|South American bullfrog|Leptodactylus pentadactylus|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+south american country|1
+(noun)|South American country|South American nation|country (generic term)|state (generic term)|land (generic term)
+south american indian|1
+(noun)|South American Indian|Amerindian (generic term)|Native American (generic term)
+south american nation|1
+(noun)|South American country|South American nation|country (generic term)|state (generic term)|land (generic term)
+south american poison toad|1
+(noun)|South American poison toad|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+south american sea lion|1
+(noun)|South American sea lion|Otaria Byronia|sea lion (generic term)
+south american staghorn|1
+(noun)|South American staghorn|Platycerium andinum|staghorn fern (generic term)
+south atlantic|1
+(noun)|South Atlantic|part (generic term)|piece (generic term)
+south australia|1
+(noun)|South Australia|Australian state (generic term)
+south bend|1
+(noun)|South Bend|city (generic term)|metropolis (generic term)|urban center (generic term)
+south by east|1
+(noun)|SbE|compass point (generic term)|point (generic term)
+south by west|1
+(noun)|SbW|compass point (generic term)|point (generic term)
+south carolina|2
+(noun)|South Carolina|Colony (generic term)
+(noun)|South Carolina|Palmetto State|SC|American state (generic term)
+south carolinian|1
+(noun)|South Carolinian|American (generic term)
+south celestial pole|1
+(noun)|pole (generic term)|celestial pole (generic term)
+south china sea|1
+(noun)|South China Sea|sea (generic term)
+south dakota|1
+(noun)|South Dakota|Coyote State|Mount Rushmore State|SD|American state (generic term)
+south dakotan|1
+(noun)|South Dakotan|American (generic term)
+south dravidian|1
+(noun)|South Dravidian|Dravidian (generic term)|Dravidic (generic term)|Dravidian language (generic term)
+south equatorial current|1
+(noun)|South Equatorial Current|equatorial current (generic term)
+south frigid zone|1
+(noun)|Antarctic|Antarctic Zone|South Frigid Zone|Frigid Zone (generic term)|polar zone (generic term)|polar region (generic term)
+south island|1
+(noun)|South Island|island (generic term)
+south korea|1
+(noun)|South Korea|Republic of Korea|Asian country (generic term)|Asian nation (generic term)
+south korean|2
+(adj)|South Korean|Asian country|Asian nation (related term)
+(noun)|South Korean|Korean (generic term)
+south korean monetary unit|1
+(noun)|South Korean monetary unit|monetary unit (generic term)
+south korean won|1
+(noun)|South Korean won|won|South Korean monetary unit (generic term)
+south pacific|1
+(noun)|South Pacific|part (generic term)|piece (generic term)
+south platte|1
+(noun)|South Platte|South Platte River|river (generic term)
+south platte river|1
+(noun)|South Platte|South Platte River|river (generic term)
+south pole|1
+(noun)|South Pole|pole (generic term)
+south sea|1
+(noun)|South Sea|sea (generic term)
+south sea islands|1
+(noun)|South Sea Islands|island (generic term)
+south side|1
+(noun)|side (generic term)
+south southeast|1
+(noun)|sou'-sou'-east|SSE|compass point (generic term)|point (generic term)
+south southwest|1
+(noun)|sou'-sou'-west|SSW|compass point (generic term)|point (generic term)
+south temperate zone|1
+(noun)|South Temperate Zone|Temperate Zone (generic term)
+south vietnam|1
+(noun)|South Vietnam|Asian country (generic term)|Asian nation (generic term)
+south west africa|1
+(noun)|Namibia|Republic of Namibia|South West Africa|African country (generic term)|African nation (generic term)
+south wind|1
+(noun)|souther|southerly|wind (generic term)|air current (generic term)|current of air (generic term)
+south yorkshire|1
+(noun)|South Yorkshire|county (generic term)
+southbound|1
+(adj)|southward|south (similar term)
+southeast|5
+(adj)|southeasterly|south (similar term)
+(adj)|southeastern|southeasterly|south (similar term)
+(noun)|sou'-east|southeastward|SE|compass point (generic term)|point (generic term)
+(noun)|Southeast|southeastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(adv)|south-east|sou'-east
+southeast asia|1
+(noun)|Southeast Asia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+southeast by east|1
+(noun)|SEbE|compass point (generic term)|point (generic term)
+southeast by south|1
+(noun)|SEbS|compass point (generic term)|point (generic term)
+southeaster|1
+(noun)|sou'easter|wind (generic term)|air current (generic term)|current of air (generic term)
+southeasterly|2
+(adj)|southeast|south (similar term)
+(adj)|southeast|southeastern|south (similar term)
+southeastern|2
+(adj)|southeast|southeasterly|south (similar term)
+(adj)|eastern (similar term)
+southeastern pocket gopher|1
+(noun)|Geomys pinetis|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+southeastern united states|1
+(noun)|Southeast|southeastern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+southeastward|3
+(adj)|south (similar term)
+(noun)|southeast|sou'-east|SE|compass point (generic term)|point (generic term)
+(adv)|southeastwardly
+southeastwardly|1
+(adv)|southeastward
+souther|1
+(noun)|south wind|southerly|wind (generic term)|air current (generic term)|current of air (generic term)
+southerly|2
+(adj)|southern|south (similar term)
+(noun)|south wind|souther|wind (generic term)|air current (generic term)|current of air (generic term)
+southern|3
+(adj)|Confederate (similar term)|grey (similar term)|gray (similar term)|rebel (similar term)|northern (antonym)
+(adj)|austral (similar term)|meridional (similar term)|south-central (similar term)|northern (antonym)
+(adj)|southerly|south (similar term)
+southern arrow wood|1
+(noun)|arrow wood|Viburnum dentatum|shrub (generic term)|bush (generic term)
+southern aster|1
+(noun)|aster (generic term)
+southern baptist|1
+(noun)|Southern Baptist|Baptist (generic term)
+southern baptist convention|1
+(noun)|Southern Baptist Convention|association (generic term)
+southern beech|1
+(noun)|evergreen beech|tree (generic term)
+southern beech fern|1
+(noun)|broad beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern (generic term)
+southern blue flag|1
+(noun)|Iris virginica|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+southern bog lemming|1
+(noun)|Synaptomys cooperi|lemming (generic term)
+southern buckthorn|1
+(noun)|shittimwood|shittim|mock orange|Bumelia lycioides|buckthorn (generic term)
+southern cabbage butterfly|1
+(noun)|Pieris protodice|cabbage butterfly (generic term)
+southern crab apple|1
+(noun)|Southern crab apple|flowering crab|Malus angustifolia|crab apple (generic term)|crabapple (generic term)|cultivated crab apple (generic term)
+southern cross|1
+(noun)|Southern Cross|Crux|Crux Australis|constellation (generic term)
+southern cypress|1
+(noun)|bald cypress|swamp cypress|pond bald cypress|Taxodium distichum|cypress (generic term)
+southern dewberry|1
+(noun)|Southern dewberry|Rubus trivialis|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+southern flounder|1
+(noun)|Paralichthys lethostigmus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+southern flying squirrel|1
+(noun)|Glaucomys volans|American flying squirrel (generic term)
+southern harebell|1
+(noun)|Campanula divaricata|campanula (generic term)|bellflower (generic term)
+southern hemisphere|1
+(noun)|hemisphere (generic term)
+southern lights|1
+(noun)|aurora australis|aurora (generic term)
+southern live oak|1
+(noun)|Quercus virginiana|live oak (generic term)
+southern magnolia|1
+(noun)|evergreen magnolia|large-flowering magnolia|bull bay|Magnolia grandiflora|magnolia (generic term)
+southern maidenhair|1
+(noun)|common maidenhair|Venushair|Venus'-hair fern|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+southern porgy|1
+(noun)|scup|southern scup|Stenotomus aculeatus|porgy (generic term)
+southern red cedar|1
+(noun)|Juniperus silicicola|juniper (generic term)
+southern red oak|1
+(noun)|swamp red oak|turkey oak|Quercus falcata|red oak (generic term)
+southern rhodesia|1
+(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country (generic term)|African nation (generic term)
+southern scup|1
+(noun)|scup|southern porgy|Stenotomus aculeatus|porgy (generic term)
+southern spadefoot|1
+(noun)|Scaphiopus multiplicatus|spadefoot (generic term)|spadefoot toad (generic term)
+southern spatterdock|1
+(noun)|Nuphar sagittifolium|water lily (generic term)
+southern tai|1
+(noun)|Southern Tai|Tai (generic term)
+southern triangle|1
+(noun)|Triangulum Australe|Southern Triangle|constellation (generic term)
+southern white cedar|1
+(noun)|coast white cedar|Atlantic white cedar|white cypress|white cedar|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+southern yellow pine|1
+(noun)|longleaf pine|pitch pine|Georgia pine|Pinus palustris|yellow pine (generic term)
+southerner|1
+(noun)|Southerner|American (generic term)
+southernism|2
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)
+southernmost|1
+(adj)|southmost|south (similar term)
+southernness|1
+(noun)|position (generic term)|spatial relation (generic term)|northernness (antonym)
+southernwood|1
+(noun)|Artemisia abrotanum|wormwood (generic term)
+southey|1
+(noun)|Southey|Robert Southey|poet (generic term)
+southland|1
+(noun)|South|region (generic term)
+southmost|1
+(adj)|southernmost|south (similar term)
+southpaw|2
+(noun)|left-handed pitcher|left-hander|left hander|lefthander|lefty|pitcher (generic term)|hurler (generic term)|twirler (generic term)
+(noun)|left-hander|lefty|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+southward|3
+(adj)|southbound|south (similar term)
+(noun)|south|due south|S|cardinal compass point (generic term)
+(adv)|southwards
+southwards|1
+(adv)|southward
+southwest|5
+(adj)|southwesterly|south (similar term)
+(adj)|southwestern|southwesterly|south (similar term)
+(noun)|sou'-west|southwestward|SW|compass point (generic term)|point (generic term)
+(noun)|Southwest|southwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(adv)|south-west|sou'west
+southwest by south|1
+(noun)|SWbS|compass point (generic term)|point (generic term)
+southwest by west|1
+(noun)|SWbW|compass point (generic term)|point (generic term)
+southwester|1
+(noun)|sou'wester|wind (generic term)|air current (generic term)|current of air (generic term)
+southwesterly|2
+(adj)|southwest|south (similar term)
+(adj)|southwest|southwestern|south (similar term)
+southwestern|3
+(adj)|southwest|southwesterly|south (similar term)
+(adj)|western (similar term)
+(noun)|Southwestern|West Saxon|Middle English (generic term)
+southwestern lip fern|1
+(noun)|Cheilanthes eatonii|lip fern (generic term)|lipfern (generic term)
+southwestern toad|1
+(noun)|Bufo microscaphus|true toad (generic term)
+southwestern united states|1
+(noun)|Southwest|southwestern United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+southwestern white pine|1
+(noun)|Pinus strobiformis|white pine (generic term)
+southwestward|3
+(adj)|south (similar term)
+(noun)|southwest|sou'-west|SW|compass point (generic term)|point (generic term)
+(adv)|southwestwardly
+southwestwardly|1
+(adv)|southwestward
+soutine|1
+(noun)|Soutine|Chaim Soutine|painter (generic term)
+souvenir|2
+(noun)|keepsake|token|relic|object (generic term)|physical object (generic term)
+(noun)|memento|reminder (generic term)
+souvlaki|1
+(noun)|souvlakia|kabob (generic term)|kebab (generic term)|shish kebab (generic term)
+souvlakia|1
+(noun)|souvlaki|kabob (generic term)|kebab (generic term)|shish kebab (generic term)
+sovereign|3
+(adj)|autonomous|independent|self-governing|free (similar term)
+(adj)|supreme|dominant (similar term)
+(noun)|crowned head|monarch|ruler (generic term)|swayer (generic term)|head of state (generic term)|chief of state (generic term)
+sovereign immunity|1
+(noun)|exemption (generic term)|immunity (generic term)|granting immunity (generic term)
+sovereignty|3
+(noun)|self-government (generic term)|self-determination (generic term)|self-rule (generic term)
+(noun)|reign|dominion (generic term)|rule (generic term)
+(noun)|authority (generic term)|authorization (generic term)|authorisation (generic term)|potency (generic term)|dominance (generic term)|say-so (generic term)
+soviet|2
+(adj)|Soviet|country|state|land (related term)
+(noun)|council (generic term)
+soviet kgb|1
+(noun)|Committee for State Security|KGB|Soviet KGB|Russian agency (generic term)
+soviet russia|1
+(noun)|Soviet Russia|Russia|Russian Soviet Federated Socialist Republic|Soviet Socialist Republic (generic term)
+soviet socialist republic|1
+(noun)|Soviet Socialist Republic|state (generic term)|province (generic term)
+soviet union|1
+(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country (generic term)|state (generic term)|land (generic term)
+sovietise|2
+(verb)|sovietize|join (generic term)|bring together (generic term)
+(verb)|sovietize|model (generic term)|pattern (generic term)
+sovietism|1
+(noun)|Bolshevism|collectivism|communism (generic term)
+sovietize|2
+(verb)|sovietise|join (generic term)|bring together (generic term)
+(verb)|sovietise|model (generic term)|pattern (generic term)
+soviets|1
+(noun)|Soviets|state (generic term)
+sow|4
+(noun)|swine (generic term)
+(verb)|sough|seed|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|sough|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|inseminate|sow in|sow (generic term)|sough (generic term)|seed (generic term)
+sow bug|1
+(noun)|woodlouse (generic term)|slater (generic term)
+sow in|1
+(verb)|inseminate|sow|sow (generic term)|sough (generic term)|seed (generic term)
+sow one's oats|1
+(verb)|sow one's wild oats|gratify (generic term)|pander (generic term)|indulge (generic term)
+sow one's wild oats|1
+(verb)|sow one's oats|gratify (generic term)|pander (generic term)|indulge (generic term)
+sow thistle|1
+(noun)|milk thistle|shrub (generic term)|bush (generic term)
+sowbane|1
+(noun)|red goosefoot|Chenopodium hybridum|goosefoot (generic term)
+sowbelly|1
+(noun)|salt pork (generic term)
+sowbread|1
+(noun)|Cyclamen hederifolium|Cyclamen neopolitanum|flower (generic term)
+sower|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+soweto|1
+(noun)|Soweto|city (generic term)|metropolis (generic term)|urban center (generic term)
+sown|1
+(adj)|seeded|planted (similar term)
+soy|4
+(noun)|soybean|soya bean|bean (generic term)
+(noun)|soya|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+(noun)|soy sauce|condiment (generic term)
+(noun)|soybean|bean (generic term)|edible bean (generic term)
+soy flour|1
+(noun)|soybean meal|soybean flour|flour (generic term)
+soy sauce|1
+(noun)|soy|condiment (generic term)
+soya|1
+(noun)|soy|soybean|soya bean|soybean plant|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+soya bean|2
+(noun)|soy|soybean|bean (generic term)
+(noun)|soy|soya|soybean|soybean plant|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+soya milk|1
+(noun)|soybean milk|soymilk|milk (generic term)
+soyabean oil|1
+(noun)|soybean oil|vegetable oil (generic term)|oil (generic term)
+soybean|3
+(noun)|soy|soya bean|bean (generic term)
+(noun)|soy|soya|soya bean|soybean plant|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+(noun)|soy|bean (generic term)|edible bean (generic term)
+soybean flour|1
+(noun)|soybean meal|soy flour|flour (generic term)
+soybean future|1
+(noun)|future (generic term)
+soybean meal|1
+(noun)|soybean flour|soy flour|flour (generic term)
+soybean milk|1
+(noun)|soya milk|soymilk|milk (generic term)
+soybean oil|1
+(noun)|soyabean oil|vegetable oil (generic term)|oil (generic term)
+soybean plant|1
+(noun)|soy|soya|soybean|soya bean|soja|soja bean|Glycine max|legume (generic term)|leguminous plant (generic term)
+soymilk|1
+(noun)|soya milk|soybean milk|milk (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+spa|3
+(noun)|watering place|watering hole|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+(noun)|resort hotel|hotel (generic term)
+(noun)|health spa|health club|place of business (generic term)|business establishment (generic term)
+space|9
+(noun)|infinite|attribute (generic term)
+(noun)|amorphous shape (generic term)|location (generic term)
+(noun)|area (generic term)|country (generic term)
+(noun)|blank|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|distance|time interval (generic term)|interval (generic term)
+(noun)|blank space|place|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|area (generic term)|expanse (generic term)|surface area (generic term)
+(noun)|quad|type (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+space-reflection symmetry|1
+(noun)|parity|conservation of parity|mirror symmetry|conservation (generic term)
+space-time|1
+(noun)|space-time continuum|coordinate system (generic term)|frame of reference (generic term)|reference system (generic term)|reference frame (generic term)
+space-time continuum|1
+(noun)|space-time|coordinate system (generic term)|frame of reference (generic term)|reference system (generic term)|reference frame (generic term)
+space age|1
+(noun)|time (generic term)
+space bar|1
+(noun)|key (generic term)
+space biology|1
+(noun)|exobiology|astrobiology|biology (generic term)|biological science (generic term)
+space cadet|1
+(noun)|simpleton (generic term)|simple (generic term)
+space capsule|1
+(noun)|capsule|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+space heater|1
+(noun)|heater (generic term)|warmer (generic term)
+space helmet|1
+(noun)|helmet (generic term)
+space laboratory|1
+(noun)|space station|space platform|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+space lattice|1
+(noun)|crystal lattice|Bravais lattice|lattice (generic term)
+space medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+space platform|1
+(noun)|space station|space laboratory|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+space probe|1
+(noun)|guided missile (generic term)
+space program|1
+(noun)|program (generic term)|programme (generic term)
+space rocket|1
+(noun)|rocket (generic term)|rocket engine (generic term)
+space shuttle|1
+(noun)|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+space station|1
+(noun)|space platform|space laboratory|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+space travel|1
+(noun)|spaceflight|spacefaring|voyage (generic term)
+space vehicle|1
+(noun)|spacecraft|ballistic capsule|craft (generic term)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+space walk|1
+(noun)|activity (generic term)
+space writer|1
+(noun)|writer (generic term)|author (generic term)
+spacecraft|1
+(noun)|ballistic capsule|space vehicle|craft (generic term)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+spacecraft clock time|1
+(noun)|SCLK|clock time (generic term)|time (generic term)
+spacecraft event time|1
+(noun)|SCET|coordinated universal time (generic term)|UTC (generic term)
+spaced|2
+(adj)|separated|distributed (similar term)
+(adj)|double-spaced (similar term)|leaded (similar term)|single-spaced (similar term)|unspaced (antonym)
+spaced-out|2
+(adj)|spacy|spacey|unconventional (similar term)
+(adj)|confused (similar term)
+spacefaring|1
+(noun)|spaceflight|space travel|voyage (generic term)
+spaceflight|1
+(noun)|space travel|spacefaring|voyage (generic term)
+spaceman|1
+(noun)|astronaut|cosmonaut|traveler (generic term)|traveller (generic term)
+spaceship|1
+(noun)|starship|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+spacesuit|1
+(noun)|pressure suit (generic term)
+spacewalk|1
+(verb)|walk (generic term)
+spacewalker|1
+(noun)|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+spaceward|1
+(adv)|spacewards
+spacewards|1
+(adv)|spaceward
+spacey|1
+(adj)|spaced-out|spacy|unconventional (similar term)
+spacial|1
+(adj)|spatial|attribute (related term)|nonspatial (antonym)
+spacing|2
+(noun)|rate (generic term)
+(noun)|spatial arrangement|placement (generic term)|arrangement (generic term)
+spaciotemporal|1
+(adj)|spatiotemporal|comprehensive (similar term)
+spacious|2
+(adj)|broad|wide|large (similar term)|big (similar term)
+(adj)|roomy|commodious (similar term)|convenient (similar term)
+spaciously|1
+(adv)|roomily
+spaciousness|1
+(noun)|capaciousness|roominess|commodiousness|largeness (generic term)|bigness (generic term)
+spackle|1
+(noun)|spackling compound|plaster (generic term)
+spackling compound|1
+(noun)|spackle|plaster (generic term)
+spacy|1
+(adj)|spaced-out|spacey|unconventional (similar term)
+spade|4
+(noun)|playing card (generic term)
+(noun)|hand shovel (generic term)
+(noun)|nigger|nigga|coon|jigaboo|nigra|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+(verb)|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+spade-like|1
+(adj)|spade-shaped|formed (similar term)
+spade-shaped|1
+(adj)|spade-like|formed (similar term)
+spade bit|1
+(noun)|bit (generic term)
+spade casino|1
+(noun)|casino (generic term)|cassino (generic term)
+spadefish|1
+(noun)|angelfish|Chaetodipterus faber|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+spadefoot|1
+(noun)|spadefoot toad|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+spadefoot toad|1
+(noun)|spadefoot|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+spadeful|1
+(noun)|shovel|shovelful|containerful (generic term)
+spadework|1
+(noun)|work (generic term)
+spadix|1
+(noun)|axis (generic term)
+spaghetti|2
+(noun)|pasta (generic term)
+(noun)|pasta (generic term)|alimentary paste (generic term)
+spaghetti and meatballs|1
+(noun)|dish (generic term)
+spaghetti junction|1
+(noun)|interchange (generic term)
+spaghetti sauce|1
+(noun)|pasta sauce|sauce (generic term)
+spaghetti squash|2
+(noun)|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+(noun)|summer squash (generic term)
+spaghetti western|1
+(noun)|spaghetti Western|Western (generic term)|horse opera (generic term)
+spaghettini|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+spain|1
+(noun)|Spain|Kingdom of Spain|Espana|European country (generic term)|European nation (generic term)
+spalacidae|1
+(noun)|Spalacidae|family Spalacidae|mammal family (generic term)
+spalax|1
+(noun)|Spalax|genus Spalax|mammal genus (generic term)
+spall|1
+(noun)|spawl|fragment (generic term)
+spallanzani|1
+(noun)|Spallanzani|Lazzaro Spallanzani|physiologist (generic term)
+spallation|1
+(noun)|nuclear reaction (generic term)
+spam|3
+(noun)|Spam|canned meat (generic term)|tinned meat (generic term)
+(noun)|junk e-mail|electronic mail (generic term)|e-mail (generic term)|email (generic term)
+(verb)|e-mail (generic term)|email (generic term)|netmail (generic term)
+spammer|1
+(noun)|sender (generic term)|transmitter (generic term)
+span|7
+(noun)|duration (generic term)|continuance (generic term)
+(noun)|distance (generic term)
+(noun)|couple|pair|twosome|twain|brace|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|linear unit (generic term)
+(noun)|bridge|structure (generic term)|construction (generic term)
+(noun)|straddle|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|cross|traverse|sweep|cover (generic term)|continue (generic term)|extend (generic term)
+span loading|1
+(noun)|loading (generic term)
+spandau|1
+(noun)|Spandau|machine gun (generic term)
+spandex|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+spandrel|1
+(noun)|spandril|surface (generic term)
+spandril|1
+(noun)|spandrel|surface (generic term)
+spang|1
+(verb)|bang|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+spangle|3
+(noun)|sequin|diamante|adornment (generic term)
+(verb)|glitter (generic term)|glisten (generic term)|glint (generic term)|gleam (generic term)|shine (generic term)
+(verb)|bespangle|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+spangled|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangly|adorned (similar term)|decorated (similar term)
+spangly|1
+(adj)|beaded|beady|bejeweled|bejewelled|bespangled|gemmed|jeweled|jewelled|sequined|spangled|adorned (similar term)|decorated (similar term)
+spaniard|1
+(noun)|Spaniard|European (generic term)
+spaniel|1
+(noun)|sporting dog (generic term)|gun dog (generic term)
+spanish|3
+(adj)|Spanish|European country|European nation (related term)
+(noun)|Spanish|Romance (generic term)|Romance language (generic term)|Latinian language (generic term)
+(noun)|Spanish|Spanish people|nation (generic term)|land (generic term)|country (generic term)
+spanish-american war|1
+(noun)|Spanish-American War|Spanish War|war (generic term)|warfare (generic term)
+spanish-speaking|1
+(adj)|Spanish-speaking|communicative (similar term)|communicatory (similar term)
+spanish american|1
+(noun)|Spanish American|Hispanic American|Hispanic|American (generic term)
+spanish armada|1
+(noun)|Spanish Armada|Invincible Armada|armada (generic term)
+spanish bayonet|2
+(noun)|Spanish bayonet|Yucca baccata|yucca (generic term)
+(noun)|Spanish bayonet|Yucca aloifolia|yucca (generic term)
+spanish broom|2
+(noun)|Spanish broom|weaver's broom|Spartium junceum|broom (generic term)
+(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom (generic term)
+spanish burgoo|1
+(noun)|olla podrida|Spanish burgoo|stew (generic term)
+spanish capital|1
+(noun)|Madrid|capital of Spain|Spanish capital|national capital (generic term)
+spanish cedar|1
+(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany (generic term)|mahogany tree (generic term)
+spanish cedar tree|1
+(noun)|Spanish cedar|Spanish cedar tree|Cedrela odorata|mahogany (generic term)|mahogany tree (generic term)
+spanish chestnut|1
+(noun)|European chestnut|sweet chestnut|Spanish chestnut|Castanea sativa|chestnut (generic term)|chestnut tree (generic term)
+spanish civil war|1
+(noun)|Spanish Civil War|civil war (generic term)
+spanish dagger|2
+(noun)|Spanish dagger|Yucca gloriosa|yucca (generic term)
+(noun)|Spanish dagger|Yucca carnerosana|yucca (generic term)
+spanish elm|2
+(noun)|princewood|Spanish elm|Cordia gerascanthus|tree (generic term)
+(noun)|Spanish elm|Equador laurel|salmwood|cypre|princewood|Cordia alliodora|angiospermous tree (generic term)|flowering tree (generic term)
+spanish fly|1
+(noun)|Spanish fly|blister beetle (generic term)|meloid (generic term)
+spanish garlic|1
+(noun)|sand leek|giant garlic|Spanish garlic|rocambole|Allium scorodoprasum|alliaceous plant (generic term)
+spanish gorse|1
+(noun)|Spanish broom|Spanish gorse|Genista hispanica|broom (generic term)
+spanish grunt|1
+(noun)|Spanish grunt|Haemulon macrostomum|grunt (generic term)
+spanish guinea|1
+(noun)|Equatorial Guinea|Republic of Equitorial Guinea|Spanish Guinea|African country (generic term)|African nation (generic term)
+spanish heath|1
+(noun)|Spanish heath|Portuguese heath|Erica lusitanica|erica (generic term)|true heath (generic term)
+spanish inquisition|1
+(noun)|Spanish Inquisition|Inquisition (generic term)
+spanish iris|1
+(noun)|Spanish iris|xiphium iris|Iris xiphium|beardless iris (generic term)
+spanish lime|2
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+(noun)|genip|Spanish lime|edible fruit (generic term)
+spanish lime tree|1
+(noun)|Spanish lime|Spanish lime tree|honey berry|mamoncillo|genip|ginep|Melicocca bijuga|Melicocca bijugatus|fruit tree (generic term)
+spanish mackerel|3
+(noun)|Spanish mackerel|mackerel (generic term)
+(noun)|Spanish mackerel|Scomber colias|mackerel (generic term)
+(noun)|horse mackerel|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad (generic term)
+spanish monetary unit|1
+(noun)|Spanish monetary unit|monetary unit (generic term)
+spanish moss|1
+(noun)|Spanish moss|old man's beard|black moss|long moss|Tillandsia usneoides|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+spanish needles|2
+(noun)|Spanish needles|beggar-ticks|bur (generic term)|burr (generic term)
+(noun)|Spanish needles|Bidens bipinnata|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+spanish oak|1
+(noun)|Spanish oak|Quercus texana|oak (generic term)|oak tree (generic term)
+spanish onion|1
+(noun)|Spanish onion|onion (generic term)
+spanish oyster plant|1
+(noun)|Spanish oyster plant|Scolymus hispanicus|golden thistle (generic term)
+spanish paprika|1
+(noun)|Spanish paprika|paprika (generic term)
+spanish people|1
+(noun)|Spanish|Spanish people|nation (generic term)|land (generic term)|country (generic term)
+spanish peseta|1
+(noun)|peseta|Spanish peseta|Spanish monetary unit (generic term)
+spanish pointer|1
+(noun)|pointer|Spanish pointer|sporting dog (generic term)|gun dog (generic term)
+spanish psyllium|1
+(noun)|fleawort|psyllium|Spanish psyllium|Plantago psyllium|plantain (generic term)
+spanish rice|1
+(noun)|Spanish rice|dish (generic term)
+spanish sahara|1
+(noun)|Western Sahara|Spanish Sahara|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+spanish tamarind|1
+(noun)|Spanish tamarind|Vangueria madagascariensis|tree (generic term)
+spanish tea|1
+(noun)|American wormseed|Mexican tea|Spanish tea|wormseed|Chenopodium ambrosioides|goosefoot (generic term)
+spanish war|1
+(noun)|Spanish-American War|Spanish War|war (generic term)|warfare (generic term)
+spank|2
+(noun)|smack (generic term)|smacking (generic term)|slap (generic term)
+(verb)|paddle|larrup|beat (generic term)|beat up (generic term)|work over (generic term)
+spanker|2
+(noun)|slapper|hitter (generic term)|striker (generic term)
+(noun)|fore-and-aft sail (generic term)
+spanking|2
+(adj)|brisk|lively|merry|rattling|snappy|zippy|energetic (similar term)
+(noun)|discipline (generic term)|correction (generic term)
+spanner|1
+(noun)|wrench|hand tool (generic term)
+spar|7
+(noun)|mineral (generic term)
+(noun)|pole (generic term)
+(noun)|sparring|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|box (generic term)
+(verb)|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+spar buoy|1
+(noun)|buoy (generic term)
+sparaxis|1
+(noun)|Sparaxis|genus Sparaxis|liliid monocot genus (generic term)
+sparaxis tricolor|1
+(noun)|wandflower|Sparaxis tricolor|flower (generic term)
+spare|13
+(adj)|trim|thin (similar term)|lean (similar term)
+(adj)|excess|extra|redundant|supererogatory|superfluous|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+(adj)|free|unoccupied (similar term)
+(adj)|unnecessary (similar term)|unneeded (similar term)
+(adj)|bare|scanty|meager (similar term)|meagre (similar term)|meagerly (similar term)|stingy (similar term)|scrimpy (similar term)
+(adj)|plain|bare|unembellished|unornamented|unadorned (similar term)|undecorated (similar term)
+(noun)|spare part|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|fifth wheel|car wheel (generic term)
+(noun)|score (generic term)
+(verb)|save|refrain (generic term)|forbear (generic term)
+(verb)|exempt (generic term)|relieve (generic term)|free (generic term)
+(verb)|give up|part with|dispense with|give (generic term)
+(verb)|use (generic term)|expend (generic term)
+spare-time activity|1
+(noun)|avocation|by-line|hobby|pursuit|sideline|pastime (generic term)|interest (generic term)|pursuit (generic term)
+spare part|1
+(noun)|spare|component (generic term)|constituent (generic term)|element (generic term)
+spare time|2
+(noun)|free time|time off (generic term)
+(noun)|free time|leisure (generic term)|leisure time (generic term)
+spare tire|1
+(noun)|love handle|adipose tissue (generic term)|fat (generic term)|fatty tissue (generic term)
+spareness|2
+(noun)|sparseness|sparsity|thinness|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+(noun)|leanness|thinness|bodily property (generic term)|fatness (antonym)
+sparer|1
+(noun)|benefactor (generic term)|helper (generic term)
+sparerib|1
+(noun)|rib (generic term)
+spareribs|2
+(noun)|barbecued spareribs|dish (generic term)
+(noun)|cut of pork (generic term)
+sparganiaceae|1
+(noun)|Sparganiaceae|family Sparganiaceae|bur-reed family|monocot family (generic term)|liliopsid family (generic term)
+sparganium|1
+(noun)|Sparganium|genus Sparganium|monocot genus (generic term)|liliopsid genus (generic term)
+sparge|3
+(noun)|sprinkle|sprinkling|watering (generic term)
+(verb)|shake (generic term)|agitate (generic term)
+(verb)|sprinkle|besprinkle|wet (generic term)
+sparge pipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+sparid|1
+(noun)|sparid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sparid fish|1
+(noun)|sparid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sparidae|1
+(noun)|Sparidae|family Sparidae|fish family (generic term)
+sparing|1
+(adj)|economical|frugal|scotch|stinting|thrifty (similar term)
+sparingly|1
+(adv)|meagerly|slenderly|meagrely|amply (antonym)|amply (antonym)
+spark|8
+(noun)|flicker|glint|flash (generic term)
+(noun)|sparkle|twinkle|light|vitality (generic term)|verve (generic term)|expression (generic term)|look (generic term)|aspect (generic term)|facial expression (generic term)|face (generic term)
+(noun)|discharge|arc|electric arc|electric discharge|electrical conduction (generic term)
+(noun)|trace (generic term)|hint (generic term)|suggestion (generic term)
+(noun)|Spark|Muriel Spark|Dame Muriel Spark|Muriel Sarah Spark|writer (generic term)|author (generic term)
+(noun)|fragment (generic term)
+(verb)|trip|actuate|trigger|activate|set off|spark off|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+(verb)|sparkle|emit (generic term)|give out (generic term)|give off (generic term)
+spark advance|1
+(noun)|lead|timing (generic term)
+spark arrester|2
+(noun)|electrical device (generic term)
+(noun)|sparker|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+spark chamber|1
+(noun)|spark counter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+spark coil|1
+(noun)|induction coil (generic term)
+spark counter|1
+(noun)|spark chamber|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+spark gap|2
+(noun)|component (generic term)|constituent (generic term)|element (generic term)
+(noun)|gap (generic term)|crack (generic term)
+spark lever|1
+(noun)|lever (generic term)
+spark off|1
+(verb)|trip|actuate|trigger|activate|set off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+spark plug|1
+(noun)|sparking plug|plug|electrical device (generic term)
+spark transmitter|1
+(noun)|radio transmitter (generic term)
+sparker|1
+(noun)|spark arrester|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+sparking plug|1
+(noun)|spark plug|plug|electrical device (generic term)
+sparkle|7
+(noun)|twinkle|spark|light|vitality (generic term)|verve (generic term)|expression (generic term)|look (generic term)|aspect (generic term)|facial expression (generic term)|face (generic term)
+(noun)|glitter|coruscation|flash (generic term)
+(noun)|glitter|glister|glisten|scintillation|brightness (generic term)
+(verb)|scintillate|coruscate|reflect (generic term)|shine (generic term)
+(verb)|scintillate|coruscate|be (generic term)
+(verb)|spark|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|foam|froth|fizz|effervesce|bubble (generic term)
+sparkle metal|1
+(noun)|matte (generic term)
+sparkleberry|1
+(noun)|farkleberry|Vaccinium arboreum|blueberry (generic term)|blueberry bush (generic term)
+sparkler|2
+(noun)|ice|diamond (generic term)
+(noun)|firework (generic term)|pyrotechnic (generic term)
+sparkling|3
+(adj)|starry (similar term)
+(adj)|effervescent|still (antonym)
+(noun)|twinkle|scintillation|change (generic term)|alteration (generic term)|modification (generic term)
+sparkling water|1
+(noun)|soda water|carbonated water|club soda|seltzer|drinking water (generic term)
+sparkling wine|1
+(noun)|wine (generic term)|vino (generic term)
+sparkly|2
+(adj)|bubbling|effervescent|scintillating|lively (similar term)
+(adj)|aglitter|coruscant|fulgid|glinting|glistering|glittering|glittery|scintillant|scintillating|bright (similar term)
+sparkplug wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+sparling|2
+(noun)|European smelt|smelt (generic term)
+(noun)|European smelt|Osmerus eperlanus|smelt (generic term)
+sparmannia|1
+(noun)|Sparmannia|genus Sparmannia|dilleniid dicot genus (generic term)
+sparmannia africana|1
+(noun)|African hemp|Sparmannia africana|shrub (generic term)|bush (generic term)
+sparring|2
+(noun)|controversy (generic term)|contention (generic term)|contestation (generic term)|disputation (generic term)|disceptation (generic term)|tilt (generic term)|argument (generic term)|arguing (generic term)
+(noun)|spar|boxing (generic term)|pugilism (generic term)|fisticuffs (generic term)
+sparring match|1
+(noun)|boxing match (generic term)
+sparring mate|1
+(noun)|sparring partner|boxer (generic term)|pugilist (generic term)
+sparring partner|1
+(noun)|sparring mate|boxer (generic term)|pugilist (generic term)
+sparrow|2
+(noun)|true sparrow|passerine (generic term)|passeriform bird (generic term)
+(noun)|hedge sparrow|dunnock|Prunella modularis|accentor (generic term)
+sparrow-like|1
+(adj)|animal (similar term)
+sparrow-sized|1
+(adj)|sized (similar term)
+sparrow hawk|2
+(noun)|American kestrel|kestrel|Falco sparverius|falcon (generic term)
+(noun)|Accipiter nisus|hawk (generic term)
+sparrow unit|1
+(noun)|Sparrow Unit|hit squad (generic term)
+sparse|1
+(adj)|thin|distributed (similar term)
+sparseness|1
+(noun)|spareness|sparsity|thinness|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+sparsity|1
+(noun)|sparseness|spareness|thinness|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+sparta|1
+(noun)|Sparta|city (generic term)|metropolis (generic term)|urban center (generic term)
+spartan|5
+(adj)|Spartan|city|metropolis|urban center (related term)
+(adj)|resolute (similar term)
+(adj)|severe|nonindulgent (similar term)|strict (similar term)
+(adj)|ascetic|ascetical|austere|abstemious (similar term)
+(noun)|Spartan|Greek (generic term)|Hellene (generic term)
+spartina|1
+(noun)|Spartina|genus Spartina|monocot genus (generic term)|liliopsid genus (generic term)
+spartina cynosuroides|1
+(noun)|salt reed grass|Spartina cynosuroides|cordgrass (generic term)|cord grass (generic term)
+spartina pectinmata|1
+(noun)|prairie cordgrass|freshwater cordgrass|slough grass|Spartina pectinmata|cordgrass (generic term)|cord grass (generic term)
+spartium|1
+(noun)|Spartium|genus Spartium|rosid dicot genus (generic term)
+spartium junceum|1
+(noun)|Spanish broom|weaver's broom|Spartium junceum|broom (generic term)
+spasm|2
+(noun)|cramp|muscle spasm|symptom (generic term)
+(noun)|constriction (generic term)
+spasmodic|2
+(adj)|convulsive|spastic|unsteady (similar term)
+(adj)|fitful|sporadic (similar term)
+spasmodic laryngitis|1
+(noun)|croup|angina (generic term)
+spasmodically|1
+(adv)|jerkily
+spasmolysis|1
+(noun)|easing (generic term)|easement (generic term)|alleviation (generic term)|relief (generic term)
+spasmolytic|1
+(noun)|antispasmodic|antispasmodic agent|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+spassky|1
+(noun)|Spassky|Boris Spassky|Boris Vasilevich Spassky|chess master (generic term)
+spastic|4
+(adj)|symptom (related term)
+(adj)|ill (similar term)|sick (similar term)
+(adj)|convulsive|spasmodic|unsteady (similar term)
+(noun)|paralytic (generic term)
+spastic abasia|1
+(noun)|abasia (generic term)
+spastic bladder|1
+(noun)|bladder disorder (generic term)
+spastic colon|1
+(noun)|irritable bowel syndrome|mucous colitis|colitis (generic term)|inflammatory bowel disease (generic term)
+spastic paralysis|1
+(noun)|cerebral palsy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+spasticity|1
+(noun)|fitfulness (generic term)|jerkiness (generic term)
+spat|10
+(noun)|bicker|bickering|tiff|squabble|pettifoggery|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+(noun)|gaiter|legging (generic term)|legin (generic term)|leg covering (generic term)
+(noun)|young (generic term)|offspring (generic term)
+(verb)|precipitate (generic term)|come down (generic term)|fall (generic term)
+(verb)|attach (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|applaud|clap|acclaim|gesticulate (generic term)|gesture (generic term)|motion (generic term)|boo (antonym)
+(verb)|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+(verb)|spawn (generic term)
+(verb)|clap|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+spatangoida|1
+(noun)|Spatangoida|order Spatangoida|animal order (generic term)
+spatchcock|3
+(noun)|chicken (generic term)|poulet (generic term)|volaille (generic term)
+(verb)|organize (generic term)|organise (generic term)|prepare (generic term)|devise (generic term)|get up (generic term)|machinate (generic term)
+(verb)|slip in (generic term)|stick in (generic term)|sneak in (generic term)|insert (generic term)
+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 (generic term)|large indefinite amount (generic term)
+(noun)|rush|surge|upsurge|flow (generic term)|flowing (generic term)
+(noun)|freshet|flow (generic term)|flowing (generic term)
+spathe|1
+(noun)|bract (generic term)
+spathe flower|1
+(noun)|spathiphyllum|peace lily|flower (generic term)
+spathiphyllum|1
+(noun)|peace lily|spathe flower|flower (generic term)
+spatial|1
+(adj)|spacial|attribute (related term)|nonspatial (antonym)
+spatial arrangement|1
+(noun)|spacing|placement (generic term)|arrangement (generic term)
+spatial property|1
+(noun)|spatiality|property (generic term)
+spatial relation|1
+(noun)|position|relation (generic term)
+spatiality|1
+(noun)|spatial property|property (generic term)
+spatiotemporal|2
+(adj)|coordinate system|frame of reference|reference system|reference frame (related term)
+(adj)|spaciotemporal|comprehensive (similar term)
+spatter|5
+(noun)|spattering|splatter|splattering|sputter|splutter|sputtering|noise (generic term)
+(noun)|spattering|splash|splashing|splattering|painting (generic term)
+(verb)|splatter|plash|splash|splosh|swash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|sprinkle|spit|patter|pitter-patter|rain (generic term)|rain down (generic term)
+(verb)|bespatter|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+spatterdock|1
+(noun)|cow lily|yellow pond lily|Nuphar advena|water lily (generic term)
+spattered|2
+(adj)|dabbled|splashed|splattered|covered (similar term)
+(adj)|bespattered|besplashed|splashed|dirty (similar term)|soiled (similar term)|unclean (similar term)
+spattering|2
+(noun)|spatter|splatter|splattering|sputter|splutter|sputtering|noise (generic term)
+(noun)|spatter|splash|splashing|splattering|painting (generic term)
+spatula|2
+(noun)|turner (generic term)|food turner (generic term)
+(noun)|hand tool (generic term)
+spatula-shaped|1
+(adj)|spatulate|simple (similar term)|unsubdivided (similar term)
+spatulate|1
+(adj)|spatula-shaped|simple (similar term)|unsubdivided (similar term)
+spatulate leaf|1
+(noun)|simple leaf (generic term)
+spavin|1
+(noun)|animal disease (generic term)
+spavined|1
+(adj)|unfit (similar term)
+spawl|1
+(noun)|spall|fragment (generic term)
+spawn|3
+(noun)|egg (generic term)
+(verb)|engender|breed|cause (generic term)|do (generic term)|make (generic term)
+(verb)|lay (generic term)
+spawner|1
+(noun)|fish (generic term)
+spay|1
+(verb)|alter|neuter|castrate|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+spayed|1
+(adj)|castrated (similar term)|unsexed (similar term)
+spaying|1
+(noun)|neutering (generic term)|fixing (generic term)|altering (generic term)
+speak|5
+(verb)|talk|utter|mouth|verbalize|verbalise|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|talk|communicate (generic term)|intercommunicate (generic term)|speak for (related term)
+(verb)|talk|communicate (generic term)|intercommunicate (generic term)
+(verb)|address
+(verb)|sound (generic term)
+speak for|1
+(verb)|represent (generic term)
+speak in tongues|1
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+speak of the devil|1
+(verb)|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+speak up|2
+(verb)|opine|animadvert|sound off|declare (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+speakable|1
+(adj)|utterable|expressible (similar term)
+speakeasy|1
+(noun)|barroom (generic term)|bar (generic term)|saloon (generic term)|ginmill (generic term)|taproom (generic term)
+speaker|3
+(noun)|talker|utterer|verbalizer|verbaliser|articulator (generic term)
+(noun)|loudspeaker|speaker unit|loudspeaker system|speaker system|electro-acoustic transducer (generic term)
+(noun)|Speaker|presiding officer (generic term)
+speaker identification|1
+(noun)|talker identification|recognition (generic term)|identification (generic term)
+speaker system|1
+(noun)|loudspeaker|speaker|speaker unit|loudspeaker system|electro-acoustic transducer (generic term)
+speaker unit|1
+(noun)|loudspeaker|speaker|loudspeaker system|speaker system|electro-acoustic transducer (generic term)
+speakerphone|1
+(noun)|telephone (generic term)|phone (generic term)|telephone set (generic term)
+speakership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+speaking|3
+(adj)|talking (similar term)|tongued (similar term)|nonspeaking (antonym)
+(noun)|speech production|utterance (generic term)|vocalization (generic term)
+(noun)|public speaking|speechmaking|oral presentation|address (generic term)|speech (generic term)
+speaking trumpet|1
+(noun)|acoustic device (generic term)
+speaking tube|1
+(noun)|tube (generic term)|tubing (generic term)
+spear|4
+(noun)|lance|shaft|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|gig|fizgig|fishgig|lance|implement (generic term)
+(verb)|transfix (generic term)|impale (generic term)|empale (generic term)|spike (generic term)
+(verb)|spear up|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+spear-point|1
+(noun)|spearhead|spearpoint|point (generic term)
+spear carrier|1
+(noun)|supernumerary|extra|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+spear thistle|1
+(noun)|bull thistle|boar thistle|Cirsium vulgare|Cirsium lanceolatum|plume thistle (generic term)|plumed thistle (generic term)
+spear thrower|1
+(noun)|throwing stick|throwing board|dart thrower|device (generic term)
+spear up|1
+(verb)|spear|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+spearfish|1
+(noun)|billfish (generic term)
+spearhead|4
+(noun)|leader (generic term)
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|spearpoint|spear-point|point (generic term)
+(verb)|head (generic term)|lead (generic term)
+spearhead-shaped|1
+(adj)|hastate|simple (similar term)|unsubdivided (similar term)
+spearmint|1
+(noun)|Mentha spicata|mint (generic term)
+spearmint oil|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+spearnose bat|1
+(noun)|leafnose bat (generic term)|leaf-nosed bat (generic term)
+spearpoint|1
+(noun)|spearhead|spear-point|point (generic term)
+spec|1
+(noun)|specification|description (generic term)|verbal description (generic term)
+special|10
+(adj)|particular|peculiar|specific (similar term)
+(adj)|extraordinary (similar term)
+(adj)|especial|exceptional|particular|uncommon (similar term)
+(adj)|specialized (similar term)|specialised (similar term)
+(adj)|limited|specific (similar term)
+(adj)|particular|primary (similar term)
+(adj)|extra|unscheduled (similar term)
+(noun)|offer (generic term)|offering (generic term)
+(noun)|dish (generic term)
+(noun)|television program (generic term)|TV program (generic term)|television show (generic term)|TV show (generic term)
+special act|1
+(noun)|legislative act (generic term)|statute (generic term)
+special agent|1
+(noun)|agent (generic term)|general agent (antonym)
+special air service|1
+(noun)|Special Air Service|SAS|commando (generic term)
+special assessment|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+special branch|1
+(noun)|Special Branch|government department (generic term)
+special contract|1
+(noun)|sealed instrument|contract under seal|contract (generic term)
+special court-martial|1
+(noun)|court-martial (generic term)
+special delivery|1
+(noun)|mail (generic term)
+special drawing rights|1
+(noun)|paper gold|reserve assets (generic term)
+special education|1
+(noun)|education (generic term)
+special effect|1
+(noun)|effect (generic term)
+special forces|1
+(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division (generic term)
+special interest|1
+(noun)|interest (generic term)|interest group (generic term)
+special jury|1
+(noun)|blue ribbon jury|jury (generic term)
+special k|1
+(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+special olympics|1
+(noun)|Special Olympics|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+special pleading|2
+(noun)|specious argument (generic term)
+(noun)|pleading (generic term)
+special relativity|1
+(noun)|special theory of relativity|special relativity theory|Einstein's special theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+special relativity theory|1
+(noun)|special relativity|special theory of relativity|Einstein's special theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+special session|1
+(noun)|session (generic term)
+special theory of relativity|1
+(noun)|special relativity|special relativity theory|Einstein's special theory of relativity|relativity (generic term)|theory of relativity (generic term)|relativity theory (generic term)|Einstein's theory of relativity (generic term)
+special verdict|1
+(noun)|verdict (generic term)|finding of fact (generic term)|general verdict (antonym)
+special weapons and tactics squad|1
+(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad (generic term)
+special weapons and tactics team|1
+(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad (generic term)
+specialisation|3
+(noun)|specialization|differentiation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+(noun)|specialization|change of state (generic term)
+(noun)|specialization|specialty|speciality|specialism|career (generic term)|calling (generic term)|vocation (generic term)
+specialise|5
+(verb)|specialize|work (generic term)
+(verb)|specify|particularize|particularise|specialize|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)|generalize (antonym)
+(verb)|specialize|modify (generic term)
+(verb)|specialize|narrow|narrow down|change (generic term)|alter (generic term)|vary (generic term)|diversify (antonym)|diversify (antonym)
+(verb)|speciate|differentiate|specialize|evolve (generic term)
+specialised|2
+(adj)|specialized|differentiated (similar term)|special (similar term)|specialistic (similar term)|specific (related term)|unspecialized (antonym)
+(adj)|specialized|technical (similar term)
+specialiser|1
+(noun)|specialist|specializer|expert (generic term)|generalist (antonym)
+specialism|2
+(noun)|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+(noun)|specialization|specialisation|specialty|speciality|career (generic term)|calling (generic term)|vocation (generic term)
+specialist|2
+(noun)|specializer|specialiser|expert (generic term)|generalist (antonym)
+(noun)|medical specialist|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+specialistic|2
+(adj)|expert (related term)
+(adj)|specialized (similar term)|specialised (similar term)
+speciality|3
+(noun)|forte|strong suit|long suit|metier|specialty|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+(noun)|peculiarity|specialness|specialty|distinctiveness|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|specialization|specialisation|specialty|specialism|career (generic term)|calling (generic term)|vocation (generic term)
+specialization|3
+(noun)|specialisation|change of state (generic term)
+(noun)|specialisation|specialty|speciality|specialism|career (generic term)|calling (generic term)|vocation (generic term)
+(noun)|specialisation|differentiation|adaptation (generic term)|adaption (generic term)|adjustment (generic term)
+specialize|5
+(verb)|specialise|narrow|narrow down|change (generic term)|alter (generic term)|vary (generic term)|diversify (antonym)|diversify (antonym)
+(verb)|specify|particularize|particularise|specialise|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)|generalize (antonym)
+(verb)|specialise|modify (generic term)
+(verb)|specialise|work (generic term)
+(verb)|speciate|differentiate|specialise|evolve (generic term)
+specialized|2
+(adj)|specialised|differentiated (similar term)|special (similar term)|specialistic (similar term)|specific (related term)|unspecialized (antonym)
+(adj)|specialised|technical (similar term)
+specializer|1
+(noun)|specialist|specialiser|expert (generic term)|generalist (antonym)
+specially|2
+(adv)|especially
+(adv)|particularly|peculiarly|especially
+specialness|2
+(noun)|peculiarity|specialty|speciality|distinctiveness|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|particularity|quality (generic term)|generality (antonym)
+specialty|3
+(noun)|forte|strong suit|long suit|metier|speciality|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+(noun)|peculiarity|specialness|speciality|distinctiveness|individuality (generic term)|individualism (generic term)|individuation (generic term)
+(noun)|specialization|specialisation|speciality|specialism|career (generic term)|calling (generic term)|vocation (generic term)
+specialty store|1
+(noun)|shop (generic term)|store (generic term)
+speciate|1
+(verb)|differentiate|specialize|specialise|evolve (generic term)
+speciation|1
+(noun)|evolution (generic term)|organic evolution (generic term)|phylogeny (generic term)|phylogenesis (generic term)
+specie|1
+(noun)|coinage|mintage|metal money|currency (generic term)
+species|2
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+specifiable|1
+(adj)|identifiable (similar term)
+specific|6
+(adj)|ad hoc (similar term)|circumstantial (similar term)|limited (similar term)|special (similar term)|particular (similar term)|peculiar (similar term)|special (similar term)|particular (similar term)|particularized (similar term)|particularised (similar term)|proper (similar term)|unique (similar term)|precise (related term)|specialized (related term)|specialised (related term)|general (antonym)|nonspecific (antonym)
+(adj)|specified (similar term)
+(adj)|taxonomic group|taxonomic category|taxon (related term)
+(adj)|nonspecific (antonym)
+(noun)|particular|fact (generic term)|general (antonym)|general (antonym)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+specific gravity|1
+(noun)|relative density (generic term)
+specific heat|1
+(noun)|heat (generic term)|heat energy (generic term)
+specific performance|1
+(noun)|performance (generic term)|execution (generic term)|carrying out (generic term)|carrying into action (generic term)
+specifically|1
+(adv)|generally (antonym)
+specification|4
+(noun)|spec|description (generic term)|verbal description (generic term)
+(noun)|naming (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|stipulation|restriction (generic term)
+specificity|1
+(noun)|particularity (generic term)|specialness (generic term)
+specified|1
+(adj)|mere (similar term)|nominative (similar term)|nominal (similar term)|specific (similar term)|unspecified (antonym)
+specifier|1
+(noun)|intellectual (generic term)|intellect (generic term)
+specify|7
+(verb)|stipulate|qualify|condition|contract (generic term)|undertake (generic term)
+(verb)|define|delineate|delimit|delimitate|be (generic term)
+(verb)|set|determine|fix|limit|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|particularize|particularise|specialize|specialise|elaborate (generic term)|lucubrate (generic term)|expatiate (generic term)|exposit (generic term)|enlarge (generic term)|flesh out (generic term)|expand (generic term)|expound (generic term)|dilate (generic term)|generalize (antonym)
+(verb)|pin down|peg down|nail down|narrow down|narrow|determine (generic term)
+(verb)|intend|destine|designate|plan (generic term)
+(verb)|assign|set apart|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+specimen|2
+(noun)|example (generic term)|illustration (generic term)|instance (generic term)|representative (generic term)
+(noun)|sample (generic term)
+specimen bottle|1
+(noun)|bottle (generic term)
+specious|2
+(adj)|spurious|false (similar term)
+(adj)|gilded|meretricious|insincere (similar term)
+specious argument|1
+(noun)|argument (generic term)|statement (generic term)
+speciousness|1
+(noun)|meretriciousness|deceptiveness (generic term)|obliquity (generic term)
+speck|4
+(noun)|pinpoint|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+(noun)|atom|molecule|particle|corpuscle|mote|material (generic term)|stuff (generic term)
+(noun)|touch|hint|tinge|mite|pinch|jot|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(verb)|mark (generic term)
+specked|1
+(adj)|dotted|flecked|speckled|stippled|patterned (similar term)
+speckle|3
+(noun)|spot|dapple|patch|fleck|maculation|marking (generic term)
+(verb)|stipple|mottle (generic term)|dapple (generic term)|cloud (generic term)
+(verb)|bespeckle|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+speckled|1
+(adj)|dotted|flecked|specked|stippled|patterned (similar term)
+speckled alder|1
+(noun)|Alnus rugosa|alder (generic term)|alder tree (generic term)
+speckled rattlesnake|1
+(noun)|Crotalus mitchellii|rattlesnake (generic term)|rattler (generic term)
+speckled trout|2
+(noun)|brook trout|freshwater fish (generic term)
+(noun)|brook trout|Salvelinus fontinalis|trout (generic term)
+speckless|1
+(adj)|immaculate|spick-and-span|spic-and-span|spic|spick|spotless|clean (similar term)
+specs|1
+(noun)|spectacles|eyeglasses|glasses|optical instrument (generic term)
+spectacle|3
+(noun)|sight (generic term)
+(noun)|display (generic term)|presentation (generic term)
+(noun)|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+spectacled|1
+(adj)|bespectacled|monocled|adorned (similar term)|decorated (similar term)
+spectacled caiman|1
+(noun)|Caiman sclerops|cayman (generic term)|caiman (generic term)
+spectacles|1
+(noun)|specs|eyeglasses|glasses|optical instrument (generic term)
+spectacular|4
+(adj)|dramatic|striking|impressive (similar term)
+(adj)|dramatic (similar term)
+(adj)|outstanding|prominent|salient|striking|conspicuous (similar term)
+(noun)|performance (generic term)|public presentation (generic term)
+spectacularly|1
+(adv)|stunningly
+spectate|1
+(verb)|watch (generic term)|view (generic term)|see (generic term)|catch (generic term)|take in (generic term)
+spectator|2
+(noun)|witness|viewer|watcher|looker|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|spectator pump|pump (generic term)
+spectator pump|1
+(noun)|spectator|pump (generic term)
+spectator sport|1
+(noun)|sport (generic term)|athletics (generic term)
+specter|2
+(noun)|ghost|shade|spook|wraith|spectre|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+(noun)|apparition|phantom|phantasm|phantasma|fantasm|spectre|spirit (generic term)|disembodied spirit (generic term)
+spectinomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+spectral|2
+(adj)|array (related term)
+(adj)|apparitional|ghostlike|ghostly|phantasmal|spiritual|supernatural (similar term)
+spectral color|1
+(noun)|chromatic color|chromatic colour|spectral colour|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|achromatic color (antonym)
+spectral colour|1
+(noun)|chromatic color|chromatic colour|spectral color|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)|achromatic color (antonym)
+spectre|2
+(noun)|apparition|phantom|phantasm|phantasma|fantasm|specter|spirit (generic term)|disembodied spirit (generic term)
+(noun)|ghost|shade|spook|wraith|specter|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+spectrogram|1
+(noun)|spectrograph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+spectrograph|2
+(noun)|spectroscope (generic term)|prism spectroscope (generic term)
+(noun)|spectrogram|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+spectrographic|1
+(adj)|spectroscope|prism spectroscope (related term)
+spectrographic analysis|1
+(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrum analysis|chemical analysis (generic term)|qualitative analysis (generic term)
+spectrometer|1
+(noun)|mass spectrometer|spectroscope (generic term)|prism spectroscope (generic term)
+spectrometric|1
+(adj)|chemical analysis|qualitative analysis (related term)
+spectrometry|1
+(noun)|spectroscopy|spectroscopic analysis|spectrum analysis|spectrographic analysis|chemical analysis (generic term)|qualitative analysis (generic term)
+spectrophotometer|1
+(noun)|photometer (generic term)
+spectroscope|1
+(noun)|prism spectroscope|optical instrument (generic term)
+spectroscopic|1
+(adj)|spectroscopical|chemical analysis|qualitative analysis (related term)
+spectroscopic analysis|1
+(noun)|spectroscopy|spectrometry|spectrum analysis|spectrographic analysis|chemical analysis (generic term)|qualitative analysis (generic term)
+spectroscopical|1
+(adj)|spectroscopic|chemical analysis|qualitative analysis (related term)
+spectroscopy|1
+(noun)|spectrometry|spectroscopic analysis|spectrum analysis|spectrographic analysis|chemical analysis (generic term)|qualitative analysis (generic term)
+spectrum|2
+(noun)|array (generic term)
+(noun)|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+spectrum analysis|1
+(noun)|spectroscopy|spectrometry|spectroscopic analysis|spectrographic analysis|chemical analysis (generic term)|qualitative analysis (generic term)
+spectrum line|1
+(noun)|line (generic term)
+specular|1
+(adj)|mirrorlike|reflective (similar term)
+speculate|4
+(verb)|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+(verb)|reason (generic term)
+(verb)|chew over|think over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|job|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+speculation|4
+(noun)|guess|conjecture|supposition|surmise|surmisal|hypothesis|opinion (generic term)|view (generic term)
+(noun)|conjecture|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|venture|investment (generic term)|investment funds (generic term)
+(noun)|meditation|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+speculative|3
+(adj)|bad|risky|high-risk|unsound (similar term)
+(adj)|notional|theoretical (similar term)|theoretic (similar term)
+(adj)|inquisitive|questioning|wondering|curious (similar term)
+speculatively|1
+(adv)|with speculation
+speculativeness|2
+(noun)|riskiness (generic term)|peril (generic term)
+(noun)|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)
+speculator|2
+(noun)|thinker (generic term)
+(noun)|plunger|adventurer (generic term)|venturer (generic term)|gambler (generic term)
+speculum|2
+(noun)|mirror (generic term)
+(noun)|medical instrument (generic term)
+speech|8
+(noun)|address|speech act (generic term)
+(noun)|speech communication|spoken communication|spoken language|language|voice communication|oral communication|auditory communication (generic term)
+(noun)|utterance (generic term)|vocalization (generic term)
+(noun)|speaking (generic term)|speech production (generic term)
+(noun)|manner of speaking|delivery|expressive style (generic term)|style (generic term)
+(noun)|lecture|talking to|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+(noun)|actor's line|words|line (generic term)
+(noun)|language|faculty (generic term)|mental faculty (generic term)|module (generic term)
+speech-endowed|1
+(adj)|articulate (similar term)
+speech-read|1
+(verb)|lipread|lip-read|read (generic term)
+speech act|1
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+speech communication|1
+(noun)|speech|spoken communication|spoken language|language|voice communication|oral communication|auditory communication (generic term)
+speech community|1
+(noun)|community (generic term)
+speech day|1
+(noun)|day (generic term)
+speech defect|1
+(noun)|speech disorder|defect of speech|disorder (generic term)|upset (generic term)
+speech disorder|1
+(noun)|speech defect|defect of speech|disorder (generic term)|upset (generic term)
+speech intelligibility|1
+(noun)|intelligibility (generic term)
+speech organ|1
+(noun)|vocal organ|organ of speech|organ (generic term)
+speech pattern|1
+(noun)|accent|pronunciation (generic term)
+speech perception|1
+(noun)|auditory perception (generic term)|sound perception (generic term)
+speech production|1
+(noun)|speaking|utterance (generic term)|vocalization (generic term)
+speech rhythm|1
+(noun)|rhythm|prosody (generic term)|inflection (generic term)|template (generic term)|templet (generic term)|guide (generic term)
+speech sound|1
+(noun)|phone|sound|language unit (generic term)|linguistic unit (generic term)
+speech spectrum|1
+(noun)|sound spectrum (generic term)|acoustic spectrum (generic term)
+speech therapist|1
+(noun)|therapist (generic term)|healer (generic term)
+speech therapy|1
+(noun)|therapy (generic term)
+speechifier|1
+(noun)|orator|speechmaker|rhetorician|public speaker|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+speechify|1
+(verb)|deliver (generic term)|present (generic term)
+speechless|1
+(adj)|dumb|inarticulate (similar term)|unarticulate (similar term)
+speechlessness|1
+(noun)|silence (generic term)|quiet (generic term)
+speechmaker|1
+(noun)|orator|rhetorician|public speaker|speechifier|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+speechmaking|1
+(noun)|public speaking|speaking|oral presentation|address (generic term)|speech (generic term)
+speechwriter|1
+(noun)|writer (generic term)|author (generic term)
+speed|10
+(noun)|velocity|rate (generic term)
+(noun)|swiftness|fastness|pace (generic term)|rate (generic term)
+(noun)|speeding|hurrying|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|focal ratio|f number|stop number|ratio (generic term)
+(noun)|amphetamine|pep pill|upper|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)|drug of abuse (generic term)|street drug (generic term)
+(verb)|rush|hotfoot|hasten|hie|race|pelt along|rush along|cannonball along|bucket along|belt along|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)|linger (antonym)
+(verb)|accelerate|speed up|quicken|intensify (generic term)|deepen (generic term)|decelerate (antonym)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|travel rapidly|hurry|zip|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)
+(verb)|accelerate|speed up|modify (generic term)|qualify (generic term)|decelerate (antonym)
+speed-reading|1
+(noun)|reading (generic term)
+speed bump|1
+(noun)|hindrance (generic term)|hinderance (generic term)|hitch (generic term)|preventive (generic term)|preventative (generic term)|encumbrance (generic term)|incumbrance (generic term)|interference (generic term)
+speed cop|1
+(noun)|motorcycle cop|motorcycle policeman|policeman (generic term)|police officer (generic term)|officer (generic term)
+speed demon|1
+(noun)|speeder|driver (generic term)
+speed freak|1
+(noun)|addict (generic term)
+speed indicator|1
+(noun)|speedometer|meter (generic term)
+speed limit|1
+(noun)|regulation (generic term)|ordinance (generic term)
+speed of light|1
+(noun)|light speed|c|speed (generic term)|velocity (generic term)|constant (generic term)
+speed skate|2
+(noun)|racing skate|ice skate (generic term)
+(verb)|race (generic term)|run (generic term)
+speed skater|1
+(noun)|speedskater|ice-skater (generic term)
+speed skating|1
+(noun)|skating (generic term)
+speed trap|1
+(noun)|trap (generic term)|snare (generic term)
+speed up|2
+(verb)|accelerate|speed|quicken|intensify (generic term)|deepen (generic term)|decelerate (antonym)
+(verb)|accelerate|speed|modify (generic term)|qualify (generic term)|decelerate (antonym)
+speedboat|1
+(noun)|motorboat (generic term)|powerboat (generic term)
+speeded up|1
+(adj)|accelerated|expedited (similar term)
+speeder|1
+(noun)|speed demon|driver (generic term)
+speedily|1
+(adv)|quickly|rapidly|chop-chop|apace|slowly (antonym)
+speediness|1
+(noun)|celerity|quickness|rapidity|rapidness|pace (generic term)|rate (generic term)
+speeding|2
+(adj)|fast (similar term)
+(noun)|speed|hurrying|motion (generic term)|movement (generic term)|move (generic term)
+speeding ticket|1
+(noun)|ticket (generic term)
+speedometer|1
+(noun)|speed indicator|meter (generic term)
+speedskater|1
+(noun)|speed skater|ice-skater (generic term)
+speedup|1
+(noun)|acceleration|quickening|speed (generic term)|speeding (generic term)|hurrying (generic term)|deceleration (antonym)
+speedway|2
+(noun)|road (generic term)|route (generic term)
+(noun)|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+speedwell|1
+(noun)|veronica|flower (generic term)
+speedy|2
+(adj)|rapid|fast (similar term)
+(adj)|quick|fast (similar term)
+speer|1
+(noun)|Speer|Albert Speer|architect (generic term)|designer (generic term)
+speke|1
+(noun)|Speke|John Speke|John Hanning Speke|explorer (generic term)|adventurer (generic term)
+spelaeologist|1
+(noun)|potholer|spelunker|speleologist|explorer (generic term)|adventurer (generic term)
+spelaeology|2
+(noun)|speleology|geology (generic term)
+(noun)|speleology|avocation (generic term)|by-line (generic term)|hobby (generic term)|pursuit (generic term)|sideline (generic term)|spare-time activity (generic term)
+speleologist|1
+(noun)|potholer|spelunker|spelaeologist|explorer (generic term)|adventurer (generic term)
+speleology|2
+(noun)|spelaeology|geology (generic term)
+(noun)|spelaeology|avocation (generic term)|by-line (generic term)|hobby (generic term)|pursuit (generic term)|sideline (generic term)|spare-time activity (generic term)
+spell|10
+(noun)|enchantment|trance|psychological state (generic term)|mental state (generic term)
+(noun)|go|tour|turn|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|while|piece|patch|time (generic term)
+(noun)|magic spell|magical spell|charm|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(verb)|spell out|recite (generic term)
+(verb)|import|mean (generic term)|intend (generic term)
+(verb)|write
+(verb)|take over (generic term)|relieve (generic term)
+(verb)|hex (generic term)|bewitch (generic term)|glamour (generic term)|witch (generic term)|enchant (generic term)|jinx (generic term)|unspell (antonym)
+(verb)|alternate (generic term)|take turns (generic term)
+spell-bound|1
+(adj)|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|transfixed|enchanted (similar term)
+spell-checker|1
+(noun)|spelling checker|dictionary (generic term)|lexicon (generic term)
+spell out|3
+(verb)|specify (generic term)|particularize (generic term)|particularise (generic term)|specialize (generic term)|specialise (generic term)
+(verb)|spell (generic term)|write (generic term)
+(verb)|spell|recite (generic term)
+spellbind|3
+(verb)|fascinate|transfix|grip|interest (generic term)
+(verb)|magnetize|mesmerize|mesmerise|magnetise|bewitch|charm (generic term)|influence (generic term)|tempt (generic term)
+(verb)|entrance|hypnotize (generic term)|hypnotise (generic term)|mesmerize (generic term)|mesmerise (generic term)
+spellbinder|1
+(noun)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+spellbinding|1
+(adj)|hypnotic|mesmeric|mesmerizing|attractive (similar term)
+spellbound|1
+(adj)|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|spell-bound|transfixed|enchanted (similar term)
+spelldown|1
+(noun)|spelling bee|spelling contest|contest (generic term)|competition (generic term)
+speller|2
+(noun)|good speller|poor speller|writer (generic term)
+(noun)|primer (generic term)
+spelling|1
+(noun)|orthography (generic term)|writing system (generic term)
+spelling bee|1
+(noun)|spelldown|spelling contest|contest (generic term)|competition (generic term)
+spelling checker|1
+(noun)|spell-checker|dictionary (generic term)|lexicon (generic term)
+spelling contest|1
+(noun)|spelling bee|spelldown|contest (generic term)|competition (generic term)
+spelt|1
+(noun)|Triticum spelta|Triticum aestivum spelta|wheat (generic term)
+spelter|1
+(noun)|zinc (generic term)|Zn (generic term)|atomic number 30 (generic term)
+spelunk|1
+(verb)|cave|explore (generic term)
+spelunker|1
+(noun)|potholer|speleologist|spelaeologist|explorer (generic term)|adventurer (generic term)
+spencer|1
+(noun)|Spencer|Herbert Spencer|philosopher (generic term)|sociologist (generic term)
+spencer tracy|1
+(noun)|Tracy|Spencer Tracy|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+spend|3
+(verb)|pass
+(verb)|expend|drop|pay (generic term)
+(verb)|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+spend-all|1
+(noun)|spendthrift|spender|scattergood|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+spendable|1
+(adj)|expendable|disposable (similar term)
+spender|3
+(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet (generic term)|literary critic (generic term)
+(noun)|spendthrift|spend-all|scattergood|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+(noun)|disburser|expender|customer (generic term)|client (generic term)
+spending|1
+(noun)|disbursement|disbursal|outlay|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+spending cut|1
+(noun)|cut (generic term)
+spending money|1
+(noun)|pocket money|pin money|cash (generic term)|hard cash (generic term)|hard currency (generic term)
+spending spree|1
+(noun)|spree (generic term)|fling (generic term)
+spendthrift|2
+(adj)|extravagant|prodigal|profligate|wasteful (similar term)
+(noun)|spend-all|spender|scattergood|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+spendthrift trust|1
+(noun)|trust (generic term)
+spengler|1
+(noun)|Spengler|Oswald Spengler|philosopher (generic term)
+spenser|1
+(noun)|Spenser|Edmund Spenser|poet (generic term)
+spenserian sonnet|1
+(noun)|Spenserian sonnet|sonnet (generic term)
+spenserian stanza|1
+(noun)|Spenserian stanza|stanza (generic term)
+spent|2
+(adj)|exhausted|dog-tired|fagged|fatigued|played out|washed-out|worn-out|worn out|tired (similar term)
+(adj)|gone|expended|exhausted (similar term)
+spergula|1
+(noun)|Spergula|genus Spergula|caryophylloid dicot genus (generic term)
+spergula arvensis|1
+(noun)|corn spurry|corn spurrey|Spergula arvensis|weed (generic term)
+spergularia|1
+(noun)|Spergularia|genus Spergularia|caryophylloid dicot genus (generic term)
+spergularia rubra|1
+(noun)|sand spurry|sea spurry|Spergularia rubra|weed (generic term)
+sperm|1
+(noun)|sperm cell|spermatozoon|spermatozoan|gamete (generic term)
+sperm-filled|1
+(adj)|full (similar term)
+sperm bank|1
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+sperm cell|1
+(noun)|sperm|spermatozoon|spermatozoan|gamete (generic term)
+sperm count|2
+(noun)|count (generic term)
+(noun)|count (generic term)|counting (generic term)|numeration (generic term)|enumeration (generic term)|reckoning (generic term)|tally (generic term)
+sperm oil|1
+(noun)|animal oil (generic term)
+sperm whale|1
+(noun)|cachalot|black whale|Physeter catodon|toothed whale (generic term)
+spermaceti|1
+(noun)|wax (generic term)
+spermatic|1
+(adj)|spermous|gamete (related term)
+spermatic cord|1
+(noun)|funiculus (generic term)
+spermatid|1
+(noun)|gamete (generic term)
+spermatocele|1
+(noun)|swelling (generic term)|puffiness (generic term)|lump (generic term)
+spermatocide|1
+(noun)|spermicide|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+spermatocyte|1
+(noun)|gametocyte (generic term)
+spermatogenesis|1
+(noun)|gametogenesis (generic term)
+spermatophyta|1
+(noun)|Spermatophyta|division Spermatophyta|division (generic term)
+spermatophyte|1
+(noun)|phanerogam|seed plant|vascular plant (generic term)|tracheophyte (generic term)
+spermatozoan|1
+(noun)|sperm|sperm cell|spermatozoon|gamete (generic term)
+spermatozoid|1
+(noun)|antherozoid|gamete (generic term)
+spermatozoon|1
+(noun)|sperm|sperm cell|spermatozoan|gamete (generic term)
+spermicidal|1
+(adj)|contraceptive|preventive|preventative|contraceptive device|prophylactic device|birth control device (related term)
+spermicide|1
+(noun)|spermatocide|contraceptive (generic term)|preventive (generic term)|preventative (generic term)|contraceptive device (generic term)|prophylactic device (generic term)|birth control device (generic term)
+spermophile|1
+(noun)|ground squirrel|gopher|squirrel (generic term)
+spermophilus|1
+(noun)|Citellus|genus Citellus|Spermophilus|genus Spermophilus|mammal genus (generic term)
+spermous|1
+(adj)|spermatic|gamete (related term)
+sperry|1
+(noun)|Sperry|Elmer Ambrose Sperry|inventor (generic term)|discoverer (generic term)|artificer (generic term)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+spew|3
+(verb)|spit|ptyalize|ptyalise|spue|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|spit up (related term)|spit up (related term)
+(verb)|spew out|eruct|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+spew out|1
+(verb)|spew|eruct|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+spewer|1
+(noun)|vomiter|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+spf|1
+(noun)|sun protection factor|SPF|degree (generic term)|grade (generic term)|level (generic term)
+sphacelate|1
+(verb)|necrose|gangrene|mortify|waste (generic term)|rot (generic term)
+sphacele|1
+(noun)|Lepechinia|genus Lepechinia|Sphacele|genus Sphacele|asterid dicot genus (generic term)
+sphacele calycina|1
+(noun)|pitcher sage|Lepechinia calycina|Sphacele calycina|shrub (generic term)|bush (generic term)
+sphacelotheca|1
+(noun)|Sphacelotheca|genus Sphacelotheca|smut (generic term)|smut fungus (generic term)
+sphacelotheca reiliana|1
+(noun)|head smut|Sphacelotheca reiliana|smut (generic term)|smut fungus (generic term)
+sphacelus|2
+(noun)|gangrene|slough|pathology (generic term)
+(noun)|necrosis|mortification|gangrene|death (generic term)
+sphaeralcea|1
+(noun)|Sphaeralcea|genus Sphaeralcea|dilleniid dicot genus (generic term)
+sphaeralcea coccinea|1
+(noun)|prairie mallow|red false mallow|Sphaeralcea coccinea|Malvastrum coccineum|globe mallow (generic term)|false mallow (generic term)
+sphaeralcea fasciculata|1
+(noun)|chaparral mallow|Malacothamnus fasciculatus|Sphaeralcea fasciculata|mallow (generic term)
+sphaeralcea remota|1
+(noun)|wild hollyhock|Iliamna remota|Sphaeralcea remota|mallow (generic term)
+sphaeriaceae|1
+(noun)|Sphaeriaceae|family Sphaeriaceae|fungus family (generic term)
+sphaeriales|1
+(noun)|Sphaeriales|order Sphaeriales|fungus order (generic term)
+sphaerobolaceae|1
+(noun)|Sphaerobolaceae|family Sphaerobolaceae|fungus family (generic term)
+sphaerocarpaceae|1
+(noun)|Sphaerocarpaceae|family Sphaerocarpaceae|moss family (generic term)
+sphaerocarpales|1
+(noun)|Sphaerocarpales|order Sphaerocarpales|plant order (generic term)
+sphaerocarpos|1
+(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus (generic term)
+sphaerocarpus|1
+(noun)|Sphaerocarpus|genus Sphaerocarpus|Sphaerocarpos|genus Sphaerocarpos|moss genus (generic term)
+sphagnales|1
+(noun)|Sphagnales|order Sphagnales|plant order (generic term)
+sphagnum|1
+(noun)|sphagnum moss|peat moss|bog moss|moss (generic term)
+sphagnum moss|1
+(noun)|sphagnum|peat moss|bog moss|moss (generic term)
+sphalerite|1
+(noun)|zinc blende|blende|mineral (generic term)
+sphecidae|1
+(noun)|Sphecidae|family Sphecidae|arthropod family (generic term)
+sphecius|1
+(noun)|Sphecius|genus Sphecius|arthropod genus (generic term)
+sphecius speciosis|1
+(noun)|cicada killer|Sphecius speciosis|digger wasp (generic term)
+sphecoid|1
+(noun)|sphecoid wasp|wasp (generic term)
+sphecoid wasp|1
+(noun)|sphecoid|wasp (generic term)
+sphecoidea|1
+(noun)|Sphecoidea|superfamily Sphecoidea|arthropod family (generic term)
+sphecotheres|1
+(noun)|Sphecotheres|genus Sphecotheres|bird genus (generic term)
+sphenion|1
+(noun)|craniometric point (generic term)
+spheniscidae|1
+(noun)|Spheniscidae|family Spheniscidae|bird family (generic term)
+sphenisciform seabird|1
+(noun)|seabird (generic term)|sea bird (generic term)|seafowl (generic term)
+sphenisciformes|1
+(noun)|Sphenisciformes|order Sphenisciformes|animal order (generic term)
+spheniscus|1
+(noun)|Spheniscus|genus Spheniscus|bird genus (generic term)
+spheniscus demersus|1
+(noun)|jackass penguin|Spheniscus demersus|penguin (generic term)
+sphenodon|1
+(noun)|Sphenodon|genus Sphenodon|reptile genus (generic term)
+sphenodon punctatum|1
+(noun)|tuatara|Sphenodon punctatum|diapsid (generic term)|diapsid reptile (generic term)
+sphenoid|1
+(noun)|sphenoid bone|os sphenoidale|bone (generic term)|os (generic term)
+sphenoid bone|1
+(noun)|sphenoid|os sphenoidale|bone (generic term)|os (generic term)
+sphenoid fontanel|1
+(noun)|sphenoid fontanelle|sphenoidal fontanelle|sphenoidal fontanel|fontanelle (generic term)|fontanel (generic term)|soft spot (generic term)
+sphenoid fontanelle|1
+(noun)|sphenoid fontanel|sphenoidal fontanelle|sphenoidal fontanel|fontanelle (generic term)|fontanel (generic term)|soft spot (generic term)
+sphenoidal fontanel|1
+(noun)|sphenoid fontanelle|sphenoid fontanel|sphenoidal fontanelle|fontanelle (generic term)|fontanel (generic term)|soft spot (generic term)
+sphenoidal fontanelle|1
+(noun)|sphenoid fontanelle|sphenoid fontanel|sphenoidal fontanel|fontanelle (generic term)|fontanel (generic term)|soft spot (generic term)
+sphenopsida|1
+(noun)|Sphenopsida|class Sphenopsida|Equisetatae|class Equisetatae|class (generic term)
+sphere|6
+(noun)|domain|area|orbit|field|arena|environment (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|sphere of influence|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|sector|aspect (generic term)|facet (generic term)
+(noun)|round shape (generic term)
+(noun)|celestial sphere|empyrean|firmament|heavens|vault of heaven|welkin|surface (generic term)
+sphere of influence|1
+(noun)|sphere|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+spheric|1
+(adj)|ball-shaped|global|globose|globular|orbicular|spherical|round (similar term)|circular (similar term)
+spherical|2
+(adj)|round shape (related term)|nonspherical (antonym)
+(adj)|ball-shaped|global|globose|globular|orbicular|spheric|round (similar term)|circular (similar term)
+spherical aberration|1
+(noun)|aberration (generic term)|distortion (generic term)|optical aberration (generic term)
+spherical angle|1
+(noun)|angle (generic term)
+spherical geometry|1
+(noun)|geometry (generic term)
+spherical polygon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+spherical triangle|1
+(noun)|spherical polygon (generic term)
+spherical trigonometry|1
+(noun)|trigonometry (generic term)|trig (generic term)
+sphericalness|1
+(noun)|sphericity|globosity|globularness|rotundity|rotundness|roundness (generic term)
+sphericity|1
+(noun)|sphericalness|globosity|globularness|rotundity|rotundness|roundness (generic term)
+spherocyte|1
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+spheroid|1
+(noun)|ellipsoid of revolution|round shape (generic term)
+spheroid joint|1
+(noun)|ball-and-socket joint|cotyloid joint|enarthrodial joint|enarthrosis|articulatio spheroidea|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+spheroidal|1
+(adj)|ellipsoid|ellipsoidal|non-circular|rounded (similar term)
+spherometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+spherule|1
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+sphincter|1
+(noun)|anatomical sphincter|sphincter muscle|muscle (generic term)|musculus (generic term)
+sphincter ani|1
+(noun)|anal sphincter|musculus sphincter ani|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+sphincter muscle|1
+(noun)|sphincter|anatomical sphincter|muscle (generic term)|musculus (generic term)
+sphingid|1
+(noun)|hawkmoth|hawk moth|sphinx moth|hummingbird moth|moth (generic term)
+sphingidae|1
+(noun)|Sphingidae|family Sphingidae|arthropod family (generic term)
+sphingine|1
+(adj)|statue (related term)
+sphinx|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Sphinx|mythical monster (generic term)|mythical creature (generic term)
+(noun)|statue (generic term)
+sphinx moth|1
+(noun)|hawkmoth|hawk moth|sphingid|hummingbird moth|moth (generic term)
+sphygmomanometer|1
+(noun)|pressure gauge (generic term)|pressure gage (generic term)
+sphyraena|1
+(noun)|Sphyraena|genus Sphyraena|fish genus (generic term)
+sphyraena barracuda|1
+(noun)|great barracuda|Sphyraena barracuda|barracuda (generic term)
+sphyraenidae|1
+(noun)|Sphyraenidae|family Sphyraenidae|fish family (generic term)
+sphyrapicus|1
+(noun)|Sphyrapicus|genus Sphyrapicus|bird genus (generic term)
+sphyrapicus varius|1
+(noun)|yellow-bellied sapsucker|Sphyrapicus varius|sapsucker (generic term)
+sphyrapicus varius ruber|1
+(noun)|red-breasted sapsucker|Sphyrapicus varius ruber|sapsucker (generic term)
+sphyrna|1
+(noun)|Sphyrna|genus Sphyrna|fish genus (generic term)
+sphyrna tiburo|1
+(noun)|shovelhead|bonnethead|bonnet shark|Sphyrna tiburo|hammerhead (generic term)|hammerhead shark (generic term)
+sphyrna tudes|1
+(noun)|smalleye hammerhead|Sphyrna tudes|hammerhead (generic term)|hammerhead shark (generic term)
+sphyrna zygaena|1
+(noun)|smooth hammerhead|Sphyrna zygaena|hammerhead (generic term)|hammerhead shark (generic term)
+sphyrnidae|1
+(noun)|Sphyrnidae|family Sphyrnidae|fish family (generic term)
+spic|2
+(adj)|immaculate|speckless|spick-and-span|spic-and-span|spick|spotless|clean (similar term)
+(noun)|spik|spick|Latin American (generic term)|Latino (generic term)
+spic-and-span|2
+(adj)|brand-new|bran-new|spick-and-span|new (similar term)
+(adj)|immaculate|speckless|spick-and-span|spic|spick|spotless|clean (similar term)
+spica|1
+(noun)|Spica|star (generic term)
+spicate|1
+(adj)|inflorescence (related term)
+spiccato|1
+(noun)|spiccato bowing|bowing (generic term)
+spiccato bowing|1
+(noun)|spiccato|bowing (generic term)
+spice|5
+(noun)|preservative (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|spiciness|spicery|taste property (generic term)
+(verb)|spice up|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|zest|spice up|season (generic term)|flavor (generic term)|flavour (generic term)
+spice-scented|1
+(adj)|odorous (similar term)
+spice bush|1
+(noun)|spicebush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+spice cake|1
+(noun)|cake (generic term)
+spice cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+spice islands|1
+(noun)|Moluccas|Spice Islands|island (generic term)
+spice rack|1
+(noun)|rack (generic term)|stand (generic term)
+spice tree|2
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+spice up|2
+(verb)|zest|spice|season (generic term)|flavor (generic term)|flavour (generic term)
+(verb)|spice|change (generic term)|alter (generic term)|modify (generic term)
+spiceberry|2
+(noun)|coralberry|Ardisia crenata|shrub (generic term)|bush (generic term)
+(noun)|wintergreen|boxberry|checkerberry|teaberry|berry (generic term)
+spicebush|2
+(noun)|spice bush|American spicebush|Benjamin bush|Lindera benzoin|Benzoin odoriferum|shrub (generic term)|bush (generic term)
+(noun)|California allspice|Calycanthus occidentalis|allspice (generic term)
+spicemill|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+spicery|1
+(noun)|spiciness|spice|taste property (generic term)
+spicily|1
+(adv)|piquantly
+spiciness|2
+(noun)|spice|spicery|taste property (generic term)
+(noun)|gaminess|raciness|ribaldry|indelicacy (generic term)
+spick|2
+(adj)|immaculate|speckless|spick-and-span|spic-and-span|spic|spotless|clean (similar term)
+(noun)|spic|spik|Latin American (generic term)|Latino (generic term)
+spick-and-span|2
+(adj)|brand-new|bran-new|spic-and-span|new (similar term)
+(adj)|immaculate|speckless|spic-and-span|spic|spick|spotless|clean (similar term)
+spicule|1
+(noun)|spiculum|process (generic term)|outgrowth (generic term)|appendage (generic term)
+spiculum|1
+(noun)|spicule|process (generic term)|outgrowth (generic term)|appendage (generic term)
+spicy|2
+(adj)|piquant|savory|savoury|zesty|tasty (similar term)
+(adj)|blue|gamy|gamey|juicy|naughty|racy|risque|sexy (similar term)
+spider|3
+(noun)|arachnid (generic term)|arachnoid (generic term)
+(noun)|wanderer|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|frying pan (generic term)|frypan (generic term)|skillet (generic term)
+spider's web|2
+(noun)|spider web|web (generic term)|entanglement (generic term)
+(noun)|spider web|web (generic term)
+spider-shaped|1
+(adj)|formed (similar term)
+spider angioma|1
+(noun)|spider nevus|vascular spider|angioma (generic term)
+spider brake|1
+(noun)|spider fern|Pteris multifida|fern (generic term)
+spider crab|1
+(noun)|crab (generic term)
+spider fern|2
+(noun)|ribbon fern|Pteris serrulata|fern (generic term)
+(noun)|spider brake|Pteris multifida|fern (generic term)
+spider flower|1
+(noun)|spider plant|Cleome hassleriana|spiderflower (generic term)|cleome (generic term)
+spider mite|1
+(noun)|tetranychid|mite (generic term)
+spider monkey|1
+(noun)|Ateles geoffroyi|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+spider nevus|1
+(noun)|spider angioma|vascular spider|angioma (generic term)
+spider orchid|3
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Brassia verrucosa|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|Brassia lawrenceana|orchid (generic term)|orchidaceous plant (generic term)
+spider plant|1
+(noun)|spider flower|Cleome hassleriana|spiderflower (generic term)|cleome (generic term)
+spider web|2
+(noun)|spider's web|web (generic term)|entanglement (generic term)
+(noun)|spider's web|web (generic term)
+spiderflower|1
+(noun)|cleome|herb (generic term)|herbaceous plant (generic term)
+spiderlike|1
+(adj)|arachnoid|arachnidian|spidery|spiderly|class (related term)
+spiderly|1
+(adj)|arachnoid|arachnidian|spidery|spiderlike|class (related term)
+spiderwort|1
+(noun)|dayflower|herb (generic term)|herbaceous plant (generic term)
+spiderwort family|1
+(noun)|Commelinaceae|family Commelinaceae|monocot family (generic term)|liliopsid family (generic term)
+spidery|1
+(adj)|arachnoid|arachnidian|spiderlike|spiderly|class (related term)
+spiegel|1
+(noun)|spiegeleisen|spiegel iron|pig iron (generic term)
+spiegel iron|1
+(noun)|spiegeleisen|spiegel|pig iron (generic term)
+spiegeleisen|1
+(noun)|spiegel|spiegel iron|pig iron (generic term)
+spiel|3
+(noun)|patter|line of gab|line (generic term)
+(verb)|play|re-create (generic term)
+(verb)|talk (generic term)|speak (generic term)
+spiel off|1
+(verb)|rattle down|rattle off|reel off|roll off|recite (generic term)
+spielberg|1
+(noun)|Spielberg|Steven Spielberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+spielmeyer-vogt disease|1
+(noun)|Spielmeyer-Vogt disease|juvenile amaurotic idiocy|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+spiff|1
+(noun)|attractiveness (generic term)
+spiff up|1
+(verb)|spruce up|spruce|titivate|tittivate|smarten up|slick up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+spiffed up|1
+(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|togged up|clothed (similar term)|clad (similar term)
+spiffing|1
+(adj)|superior (similar term)
+spiffy|1
+(adj)|dapper|dashing|jaunty|natty|raffish|rakish|snappy|spruce|fashionable (similar term)|stylish (similar term)
+spigot|2
+(noun)|tap|plug (generic term)|stopper (generic term)|stopple (generic term)
+(noun)|faucet|regulator (generic term)
+spik|1
+(noun)|spic|spick|Latin American (generic term)|Latino (generic term)
+spike|15
+(noun)|electrical discharge (generic term)
+(noun)|sports equipment (generic term)
+(noun)|ear|capitulum|fruit (generic term)
+(noun)|inflorescence (generic term)
+(noun)|rise (generic term)
+(noun)|projection (generic term)
+(noun)|implement (generic term)
+(noun)|holding device (generic term)
+(noun)|nail (generic term)
+(verb)|banish (generic term)|relegate (generic term)|bar (generic term)
+(verb)|transfix|impale|empale|pierce (generic term)|thrust (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|spike out|develop (generic term)
+(verb)|lace|fortify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|increase (generic term)
+spike arrester|1
+(noun)|surge suppressor|surge protector|spike suppressor|lightning arrester|suppressor (generic term)|suppresser (generic term)
+spike heath|1
+(noun)|Bruckenthalia spiculifolia|heath (generic term)
+spike heel|1
+(noun)|stiletto heel|heel (generic term)
+spike lavender|1
+(noun)|French lavender|Lavandula latifolia|lavender (generic term)
+spike lavender oil|1
+(noun)|spike oil|oil (generic term)
+spike lee|1
+(noun)|Lee|Spike Lee|Shelton Jackson Lee|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+spike mike|1
+(noun)|microphone (generic term)|mike (generic term)
+spike moss|1
+(noun)|spikemoss|little club moss|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+spike oil|1
+(noun)|spike lavender oil|oil (generic term)
+spike out|1
+(verb)|spike|develop (generic term)
+spike rush|1
+(noun)|sedge (generic term)
+spike suppressor|1
+(noun)|surge suppressor|surge protector|spike arrester|lightning arrester|suppressor (generic term)|suppresser (generic term)
+spiked|1
+(adj)|pointed (similar term)
+spiked loosestrife|1
+(noun)|purple loosestrife|Lythrum salicaria|loosestrife (generic term)
+spikelet|1
+(noun)|spine|thorn|prickle|pricker|sticker|aculeus (generic term)
+spikelike|1
+(adj)|pointed (similar term)
+spikemoss|1
+(noun)|spike moss|little club moss|club moss (generic term)|club-moss (generic term)|lycopod (generic term)
+spikenard|1
+(noun)|nard|cream (generic term)|ointment (generic term)|emollient (generic term)
+spiky|1
+(adj)|peaky|high (similar term)|high-pitched (similar term)
+spile|2
+(noun)|pile|piling|stilt|column (generic term)|pillar (generic term)
+(noun)|bung|plug (generic term)|stopper (generic term)|stopple (generic term)
+spill|9
+(noun)|liquid (generic term)
+(noun)|spillway|wasteweir|conduit (generic term)
+(noun)|spillage|release|flow (generic term)|stream (generic term)
+(noun)|tumble|fall|slip (generic term)|trip (generic term)
+(verb)|slop|splatter|move (generic term)|displace (generic term)
+(verb)|run out|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|shed|disgorge|move (generic term)|displace (generic term)
+(verb)|shed|pour forth|pour (generic term)
+(verb)|talk|tell (generic term)
+spill out|1
+(verb)|spill over|pour out|pour (generic term)|swarm (generic term)|stream (generic term)|teem (generic term)|pullulate (generic term)
+spill over|2
+(verb)|bubble over|overflow|seethe (generic term)|boil (generic term)
+(verb)|spill out|pour out|pour (generic term)|swarm (generic term)|stream (generic term)|teem (generic term)|pullulate (generic term)
+spill the beans|1
+(verb)|let the cat out of the bag|talk|tattle|blab|peach|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+spillage|2
+(noun)|indefinite quantity (generic term)
+(noun)|spill|release|flow (generic term)|stream (generic term)
+spillane|1
+(noun)|Spillane|Mickey Spillane|Frank Morrison Spillane|writer (generic term)|author (generic term)
+spiller|2
+(noun)|shedder|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|trawl|trawl line|setline|trotline|fishing line (generic term)
+spillikin|1
+(noun)|jackstraw|strip (generic term)
+spillikins|1
+(noun)|jackstraws|child's game (generic term)
+spillover|1
+(noun)|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+spillway|1
+(noun)|spill|wasteweir|conduit (generic term)
+spilogale|1
+(noun)|Spilogale|genus Spilogale|mammal genus (generic term)
+spilogale putorius|1
+(noun)|spotted skunk|little spotted skunk|Spilogale putorius|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+spin|13
+(noun)|rotation (generic term)|revolution (generic term)|gyration (generic term)
+(noun)|twirl|twist|twisting|whirl|rotation (generic term)|rotary motion (generic term)
+(noun)|drive (generic term)|ride (generic term)
+(noun)|tailspin|acrobatics (generic term)|aerobatics (generic term)|stunting (generic term)|stunt flying (generic term)
+(noun)|rendition (generic term)|rendering (generic term)|interpretation (generic term)
+(verb)|spin around|whirl|reel|gyrate|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|stream (generic term)|well out (generic term)
+(verb)|whirl|birl|twirl|rotate (generic term)|circumvolve (generic term)
+(verb)|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|twist (generic term)|twine (generic term)|distort (generic term)
+(verb)|present (generic term)|represent (generic term)|lay out (generic term)
+(verb)|spin out|prolong (generic term)|protract (generic term)|extend (generic term)|draw out (generic term)
+spin-dry|1
+(verb)|dry (generic term)|dry out (generic term)
+spin-off|1
+(noun)|by-product|byproduct|product (generic term)|production (generic term)
+spin around|1
+(verb)|spin|whirl|reel|gyrate|revolve (generic term)|go around (generic term)|rotate (generic term)
+spin doctor|1
+(noun)|spinmeister|public relations person (generic term)
+spin drier|1
+(noun)|spin dryer|clothes dryer (generic term)|clothes drier (generic term)
+spin dryer|1
+(noun)|spin drier|clothes dryer (generic term)|clothes drier (generic term)
+spin off|1
+(verb)|bear (generic term)|turn out (generic term)
+spin out|1
+(verb)|spin|prolong (generic term)|protract (generic term)|extend (generic term)|draw out (generic term)
+spin the bottle|1
+(noun)|child's game (generic term)
+spin the plate|1
+(noun)|spin the platter|child's game (generic term)
+spin the platter|1
+(noun)|spin the plate|child's game (generic term)
+spina bifida|1
+(noun)|rachischisis|schistorrhachis|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+spinach|2
+(noun)|spinach plant|prickly-seeded spinach|Spinacia oleracea|vegetable (generic term)
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+spinach beet|2
+(noun)|chard|Swiss chard|leaf beet|chard plant|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|chard|Swiss chard|leaf beet|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+spinach blight|1
+(noun)|blight (generic term)
+spinach mustard|1
+(noun)|tendergreen|Brassica perviridis|Brassica rapa perviridis|crucifer (generic term)|cruciferous plant (generic term)
+spinach plant|1
+(noun)|spinach|prickly-seeded spinach|Spinacia oleracea|vegetable (generic term)
+spinacia|1
+(noun)|Spinacia|genus Spinacia|caryophylloid dicot genus (generic term)
+spinacia oleracea|1
+(noun)|spinach|spinach plant|prickly-seeded spinach|Spinacia oleracea|vegetable (generic term)
+spinal|2
+(adj)|skeletal structure (related term)
+(noun)|spinal anesthesia|spinal anaesthesia|regional anesthesia (generic term)|regional anaesthesia (generic term)
+spinal accessory|1
+(noun)|accessory nerve|nervus accessorius|eleventh cranial nerve|cranial nerve (generic term)
+spinal anaesthesia|1
+(noun)|spinal anesthesia|spinal|regional anesthesia (generic term)|regional anaesthesia (generic term)
+spinal anaesthetic|1
+(noun)|spinal anesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+spinal anesthesia|1
+(noun)|spinal anaesthesia|spinal|regional anesthesia (generic term)|regional anaesthesia (generic term)
+spinal anesthetic|1
+(noun)|spinal anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+spinal canal|1
+(noun)|vertebral canal|canalis vertebralis|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+spinal column|1
+(noun)|vertebral column|spine|backbone|back|rachis|skeletal structure (generic term)
+spinal cord|1
+(noun)|medulla spinalis|neural structure (generic term)|funiculus (generic term)
+spinal curvature|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+spinal fluid|1
+(noun)|cerebrospinal fluid|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+spinal fusion|1
+(noun)|fusion|correction (generic term)
+spinal nerve|1
+(noun)|nervus spinalis|nerve (generic term)|nervus (generic term)
+spinal puncture|1
+(noun)|lumbar puncture|spinal tap|centesis (generic term)
+spinal tap|1
+(noun)|lumbar puncture|spinal puncture|centesis (generic term)
+spinal vein|1
+(noun)|vena spinalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+spindle|3
+(noun)|fiber (generic term)|fibre (generic term)
+(noun)|mandrel|mandril|arbor|rotating shaft (generic term)|shaft (generic term)
+(noun)|stick (generic term)
+spindle-legged|1
+(adj)|spindle-shanked|thin (similar term)|lean (similar term)
+spindle-shanked|1
+(adj)|spindle-legged|thin (similar term)|lean (similar term)
+spindle-shaped|1
+(adj)|fusiform|cigar-shaped|pointed (similar term)
+spindle-tree family|1
+(noun)|Celastraceae|family Celastraceae|staff-tree family|dicot family (generic term)|magnoliopsid family (generic term)
+spindle horn|1
+(noun)|forest goat|Pseudoryx nghetinhensis|bovid (generic term)
+spindle tree|1
+(noun)|spindleberry|spindleberry tree|shrub (generic term)|bush (generic term)
+spindleberry|1
+(noun)|spindle tree|spindleberry tree|shrub (generic term)|bush (generic term)
+spindleberry tree|1
+(noun)|spindle tree|spindleberry|shrub (generic term)|bush (generic term)
+spindlelegs|2
+(noun)|spindleshanks|thin person (generic term)|skin and bones (generic term)|scrag (generic term)
+(noun)|spindleshanks|leg (generic term)
+spindleshanks|2
+(noun)|spindlelegs|thin person (generic term)|skin and bones (generic term)|scrag (generic term)
+(noun)|spindlelegs|leg (generic term)
+spindly|1
+(adj)|lank|thin (similar term)|lean (similar term)
+spindrift|1
+(noun)|spoondrift|spray (generic term)
+spine|5
+(noun)|spinal column|vertebral column|backbone|back|rachis|skeletal structure (generic term)
+(noun)|spur|acantha|projection (generic term)
+(noun)|thorn|prickle|pricker|sticker|spikelet|aculeus (generic term)
+(noun)|backbone|part (generic term)|portion (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+spine-tipped|1
+(adj)|tipped (similar term)
+spinel|1
+(noun)|mineral (generic term)
+spinel ruby|1
+(noun)|ruby spinel|spinel (generic term)
+spineless|4
+(adj)|namby-pamby|gutless|wishy-washy|weak (similar term)
+(adj)|invertebrate|vertebrate (antonym)
+(adj)|spinous (antonym)
+(adj)|thornless|unarmed (similar term)
+spinelessness|1
+(noun)|meekness (generic term)|subduedness (generic term)
+spinet|2
+(noun)|upright (generic term)|upright piano (generic term)
+(noun)|harpsichord (generic term)|cembalo (generic term)
+spininess|1
+(noun)|prickliness|bristliness|thorniness|roughness (generic term)|raggedness (generic term)
+spinmeister|1
+(noun)|spin doctor|public relations person (generic term)
+spinnability|1
+(noun)|quality (generic term)
+spinnable|2
+(adj)|impressionable (similar term)|impressible (similar term)
+(adj)|spinnbar|flexible (similar term)|flexile (similar term)
+spinnaker|1
+(noun)|headsail (generic term)
+spinnbar|1
+(adj)|spinnable|flexible (similar term)|flexile (similar term)
+spinnbarkeit|1
+(noun)|spinnability (generic term)
+spinner|3
+(noun)|spinster|thread maker|maker (generic term)|shaper (generic term)
+(noun)|game equipment (generic term)
+(noun)|fisherman's lure (generic term)|fish lure (generic term)
+spinney|1
+(noun)|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+spinning|1
+(noun)|handicraft (generic term)
+spinning frame|1
+(noun)|spinning machine (generic term)
+spinning jenny|1
+(noun)|spinning machine (generic term)
+spinning machine|1
+(noun)|textile machine (generic term)
+spinning rod|1
+(noun)|fishing rod (generic term)|fishing pole (generic term)
+spinning top|1
+(noun)|top|whirligig|teetotum|plaything (generic term)|toy (generic term)
+spinning wheel|1
+(noun)|spinning machine (generic term)
+spinocerebellar disorder|1
+(noun)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+spinose|1
+(adj)|rough (similar term)
+spinous|2
+(adj)|spiny|spineless (antonym)
+(adj)|acanthoid|acanthous|pointed (similar term)
+spinoza|1
+(noun)|Spinoza|de Spinoza|Baruch de Spinoza|Benedict de Spinoza|philosopher (generic term)
+spinster|2
+(noun)|old maid|unmarried woman (generic term)
+(noun)|spinner|thread maker|maker (generic term)|shaper (generic term)
+spinsterhood|1
+(noun)|marital status (generic term)
+spinus|1
+(noun)|Spinus|genus Spinus|bird genus (generic term)
+spinus pinus|1
+(noun)|pine siskin|pine finch|Spinus pinus|finch (generic term)
+spinus tristis|1
+(noun)|New world goldfinch|goldfinch|yellowbird|Spinus tristis|finch (generic term)
+spiny|2
+(adj)|spinous|spineless (antonym)
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|thorny|armed (similar term)
+spiny-backed|1
+(adj)|backed (similar term)
+spiny-edged|1
+(adj)|bordered (similar term)
+spiny-finned|1
+(adj)|teleost fish|teleost|teleostan (related term)
+spiny-finned fish|1
+(noun)|acanthopterygian|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)|soft-finned fish (antonym)
+spiny-headed worm|1
+(noun)|acanthocephalan|worm (generic term)
+spiny-leafed|1
+(adj)|spiny-leaved|leafy (similar term)
+spiny-leaved|1
+(adj)|spiny-leafed|leafy (similar term)
+spiny-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+spiny anteater|1
+(noun)|echidna|anteater|monotreme (generic term)|egg-laying mammal (generic term)
+spiny dogfish|1
+(noun)|dogfish (generic term)
+spiny lizard|2
+(noun)|mountain devil|Moloch horridus|moloch (generic term)
+(noun)|iguanid (generic term)|iguanid lizard (generic term)
+spiny lobster|2
+(noun)|langouste|rock lobster|crayfish|shellfish (generic term)
+(noun)|langouste|rock lobster|crawfish|crayfish|sea crawfish|lobster (generic term)
+spiny puffer|1
+(noun)|plectognath (generic term)|plectognath fish (generic term)
+spiny softshell|1
+(noun)|Trionyx spiniferus|soft-shelled turtle (generic term)|pancake turtle (generic term)
+spiny talinum|1
+(noun)|Talinum spinescens|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+spipistrellus hesperus|1
+(noun)|western pipistrel|SPipistrellus hesperus|vespertilian bat (generic term)|vespertilionid (generic term)
+spiracle|1
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+spiraea|3
+(noun)|spirea|Astilbe japonica|astilbe (generic term)
+(noun)|spirea|shrub (generic term)|bush (generic term)
+(noun)|Spiraea|genus Spiraea|rosid dicot genus (generic term)
+spiraea prunifolia|1
+(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea (generic term)|spiraea (generic term)
+spiral|9
+(adj)|coiling|helical|spiraling|volute|voluted|whorled|turbinate|coiled (similar term)
+(noun)|curve (generic term)|curved shape (generic term)
+(noun)|helix|curve (generic term)|curved shape (generic term)
+(noun)|volute|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|coil|volute|whorl|helix|structure (generic term)|construction (generic term)
+(noun)|rotation (generic term)|rotary motion (generic term)
+(verb)|gyrate|coil|turn (generic term)
+(verb)|wind (generic term)|twist (generic term)|curve (generic term)
+(verb)|corkscrew|turn (generic term)
+spiral-shelled|1
+(adj)|shelled (similar term)
+spiral bandage|1
+(noun)|oblique bandage (generic term)
+spiral galaxy|1
+(noun)|spiral nebula|galaxy (generic term)|extragalactic nebula (generic term)
+spiral nebula|1
+(noun)|spiral galaxy|galaxy (generic term)|extragalactic nebula (generic term)
+spiral ratchet screwdriver|1
+(noun)|ratchet screwdriver|screwdriver (generic term)
+spiral spring|1
+(noun)|spring (generic term)
+spiraling|1
+(adj)|coiling|helical|spiral|volute|voluted|whorled|turbinate|coiled (similar term)
+spirant|2
+(adj)|fricative|continuant|sibilant|strident|soft (similar term)
+(noun)|fricative consonant|fricative|continuant consonant (generic term)|continuant (generic term)
+spiranthes|1
+(noun)|Spiranthes|genus Spiranthes|monocot genus (generic term)|liliopsid genus (generic term)
+spiranthes cernua|1
+(noun)|screw augur|Spiranthes cernua|ladies' tresses (generic term)|lady's tresses (generic term)
+spiranthes porrifolia|1
+(noun)|western ladies' tresses|Spiranthes porrifolia|ladies' tresses (generic term)|lady's tresses (generic term)
+spiranthes romanzoffiana|1
+(noun)|hooded ladies' tresses|Spiranthes romanzoffiana|ladies' tresses (generic term)|lady's tresses (generic term)
+spiranthes spiralis|1
+(noun)|European ladies' tresses|Spiranthes spiralis|ladies' tresses (generic term)|lady's tresses (generic term)
+spire|1
+(noun)|steeple|tower (generic term)
+spirea|2
+(noun)|spiraea|Astilbe japonica|astilbe (generic term)
+(noun)|spiraea|shrub (generic term)|bush (generic term)
+spirilla|1
+(noun)|spirillum|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+spirillaceae|1
+(noun)|Spirillaceae|family Spirillaceae|bacteria family (generic term)
+spirillum|2
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+(noun)|spirilla|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+spirillum fever|1
+(noun)|sodoku|ratbite fever (generic term)
+spirillum minus|1
+(noun)|ratbite fever bacterium|Spirillum minus|spirillum (generic term)
+spirit|9
+(noun)|vital principle (generic term)|life principle (generic term)
+(noun)|tone|feel|feeling|flavor|flavour|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|character (generic term)|fiber (generic term)|fibre (generic term)
+(noun)|disembodied spirit|spiritual being (generic term)|supernatural being (generic term)
+(noun)|emotional state|emotion (generic term)
+(noun)|intent|purport|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|liveliness|life|sprightliness|animation (generic term)|spiritedness (generic term)|invigoration (generic term)|brio (generic term)|vivification (generic term)
+(noun)|heart|disposition (generic term)|temperament (generic term)
+(verb)|spirit up|inspirit|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+spirit away|2
+(verb)|spirit off|take away (generic term)|bear off (generic term)|bear away (generic term)|carry away (generic term)|carry off (generic term)
+(verb)|take away (generic term)|bear off (generic term)|bear away (generic term)|carry away (generic term)|carry off (generic term)
+spirit gum|1
+(noun)|adhesive material (generic term)|adhesive agent (generic term)|adhesive (generic term)
+spirit lamp|1
+(noun)|lamp (generic term)
+spirit level|1
+(noun)|level|indicator (generic term)
+spirit of turpentine|1
+(noun)|turpentine|oil of turpentine|turps|essential oil (generic term)|volatile oil (generic term)
+spirit off|1
+(verb)|spirit away|take away (generic term)|bear off (generic term)|bear away (generic term)|carry away (generic term)|carry off (generic term)
+spirit rapper|1
+(noun)|psychic (generic term)
+spirit rapping|1
+(noun)|table rapping|table tapping|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+spirit stove|1
+(noun)|stove (generic term)|kitchen stove (generic term)|range (generic term)|kitchen range (generic term)|cooking stove (generic term)
+spirit up|1
+(verb)|spirit|inspirit|enliven (generic term)|liven (generic term)|liven up (generic term)|invigorate (generic term)|animate (generic term)
+spirit world|1
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+spirited|4
+(adj)|boisterous (similar term)|knockabout (similar term)|con brio (similar term)|dashing (similar term)|gallant (similar term)|ebullient (similar term)|exuberant (similar term)|high-spirited (similar term)|feisty (similar term)|plucky (similar term)|spunky (similar term)|impertinent (similar term)|irreverent (similar term)|pert (similar term)|saucy (similar term)|lively (similar term)|racy (similar term)|mettlesome (similar term)|resilient (similar term)|snappy (similar term)|whipping (similar term)|sprightly (similar term)|vibrant (similar term)|vivacious (similar term)|zestful (similar term)|yeasty (similar term)|zesty (similar term)|barmy (similar term)|energetic (related term)|enthusiastic (related term)|lively (related term)|spiritless (antonym)
+(adj)|bouncing|bouncy|peppy|zippy|lively (similar term)
+(adj)|game|gamy|gamey|gritty|mettlesome|spunky|brave (similar term)|courageous (similar term)
+(adj)|enlivened|animated (similar term)|alive (similar term)
+spiritedness|1
+(noun)|animation|invigoration|brio|vivification|activeness (generic term)|activity (generic term)
+spiritise|1
+(verb)|spiritize|permeate (generic term)|pervade (generic term)|penetrate (generic term)|interpenetrate (generic term)|diffuse (generic term)|imbue (generic term)|riddle (generic term)
+spiritism|1
+(noun)|spirituality|spiritualism|otherworldliness|inwardness (generic term)|worldliness (antonym)
+spiritize|1
+(verb)|spiritise|permeate (generic term)|pervade (generic term)|penetrate (generic term)|interpenetrate (generic term)|diffuse (generic term)|imbue (generic term)|riddle (generic term)
+spiritless|2
+(adj)|apathetic (similar term)|bloodless (similar term)|dispirited (similar term)|listless (similar term)|heartless (similar term)|thin (similar term)|dull (related term)|unenthusiastic (related term)|spirited (antonym)
+(adj)|meek|submissive (similar term)
+spiritlessness|1
+(noun)|apathy|indifference|numbness|passivity (generic term)|passiveness (generic term)
+spiritous|1
+(adj)|spirituous|alcoholic (similar term)
+spirits|1
+(noun)|liquor|booze|hard drink|hard liquor|John Barleycorn|strong drink|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+spirits of ammonia|1
+(noun)|sal volatile|solution (generic term)
+spirits of wine|1
+(noun)|ethyl alcohol (generic term)|ethanol (generic term)|fermentation alcohol (generic term)|grain alcohol (generic term)
+spiritual|5
+(adj)|religious|sacred (similar term)
+(adj)|unearthly|unworldly (similar term)
+(adj)|incorporeal (similar term)|immaterial (similar term)
+(adj)|apparitional|ghostlike|ghostly|phantasmal|spectral|supernatural (similar term)
+(noun)|Negro spiritual|religious song (generic term)
+spiritual being|1
+(noun)|supernatural being|belief (generic term)
+spiritual bouquet|1
+(noun)|sympathy card (generic term)
+spiritual jewel|1
+(noun)|Shen-pao|Spiritual Jewel|Chinese deity (generic term)
+spiritual leader|1
+(noun)|leader (generic term)
+spiritual rebirth|1
+(noun)|conversion|rebirth|redemption (generic term)|salvation (generic term)
+spiritual world|1
+(noun)|unseen|belief (generic term)
+spiritualisation|1
+(noun)|spiritualization|change of state (generic term)
+spiritualise|2
+(verb)|spiritualize|interpret (generic term)|construe (generic term)|see (generic term)|literalize (antonym)
+(verb)|spiritualize|purify (generic term)|purge (generic term)|sanctify (generic term)
+spiritualism|3
+(noun)|theological doctrine (generic term)
+(noun)|belief (generic term)
+(noun)|spirituality|spiritism|otherworldliness|inwardness (generic term)|worldliness (antonym)
+spiritualist|2
+(adj)|spiritualistic|belief (related term)
+(noun)|medium|sensitive|psychic (generic term)
+spiritualistic|1
+(adj)|spiritualist|belief (related term)
+spirituality|2
+(noun)|spiritualty|church property|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|spiritualism|spiritism|otherworldliness|inwardness (generic term)|worldliness (antonym)
+spiritualization|1
+(noun)|spiritualisation|change of state (generic term)
+spiritualize|3
+(verb)|spiritualise|interpret (generic term)|construe (generic term)|see (generic term)|literalize (antonym)
+(verb)|transfigure|glorify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|spiritualise|purify (generic term)|purge (generic term)|sanctify (generic term)
+spiritualty|1
+(noun)|spirituality|church property|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+spirituous|1
+(adj)|spiritous|alcoholic (similar term)
+spirochaeta|1
+(noun)|Spirochaeta|genus Spirochaeta|bacteria genus (generic term)
+spirochaetaceae|1
+(noun)|Spirochaetaceae|family Spirochaetaceae|bacteria family (generic term)
+spirochaetales|1
+(noun)|Spirochaetales|order Spirochaetales|animal order (generic term)
+spirochaete|1
+(noun)|spirochete|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+spirochete|1
+(noun)|spirochaete|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+spirodela|1
+(noun)|Spirodela|genus Spirodela|monocot genus (generic term)|liliopsid genus (generic term)
+spirodela polyrrhiza|1
+(noun)|great duckweed|water flaxseed|Spirodela polyrrhiza|duckweed (generic term)
+spirogram|1
+(noun)|recording (generic term)
+spirograph|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+spirogyra|1
+(noun)|green algae (generic term)|chlorophyte (generic term)
+spirometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+spirometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+spironolactone|1
+(noun)|Aldactone|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+spirt|3
+(noun)|jet|squirt|spurt|discharge (generic term)|outpouring (generic term)|run (generic term)
+(verb)|spurt|gush|spout|pour (generic term)
+(verb)|forge|spurt|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+spirula|1
+(noun)|Spirula peronii|decapod (generic term)
+spirula peronii|1
+(noun)|spirula|Spirula peronii|decapod (generic term)
+spirulidae|1
+(noun)|Spirulidae|family Spirulidae|mollusk family (generic term)
+spit|8
+(noun)|tongue|cape (generic term)|ness (generic term)
+(noun)|saliva|spittle|secretion (generic term)
+(noun)|skewer (generic term)
+(noun)|spitting|expectoration|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+(verb)|ptyalize|ptyalise|spew|spue|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|spit up (related term)|spit up (related term)
+(verb)|spit out|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|sprinkle|spatter|patter|pitter-patter|rain (generic term)|rain down (generic term)
+(verb)|skewer|pin (generic term)
+spit and polish|1
+(noun)|orderliness (generic term)|order (generic term)
+spit curl|1
+(noun)|kiss curl|crimp (generic term)
+spit out|3
+(verb)|splutter|sputter|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)
+(verb)|spit|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|expectorate|cough up|cough out|spit up|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+spit up|2
+(verb)|cough up|pony up|give (generic term)
+(verb)|expectorate|cough up|cough out|spit out|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+spitball|2
+(noun)|projectile (generic term)|missile (generic term)
+(noun)|spitter|pitch (generic term)|delivery (generic term)
+spite|3
+(noun)|malice|maliciousness|spitefulness|venom|malevolence (generic term)|malignity (generic term)
+(noun)|cattiness|bitchiness|spitefulness|nastiness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+(verb)|hurt|wound|injure|bruise|offend|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+spiteful|1
+(adj)|despiteful|vindictive|malicious (similar term)
+spitefully|2
+(adv)|despitefully
+(adv)|with spite
+spitefulness|2
+(noun)|malice|maliciousness|spite|venom|malevolence (generic term)|malignity (generic term)
+(noun)|cattiness|bitchiness|spite|nastiness|malevolence (generic term)|malevolency (generic term)|malice (generic term)
+spitfire|1
+(noun)|emotional person (generic term)
+spitsbergen|1
+(noun)|Spitsbergen|Spitzbergen|island (generic term)
+spitter|2
+(noun)|expectorator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|spitball|pitch (generic term)|delivery (generic term)
+spitting|1
+(noun)|spit|expectoration|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+spitting cobra|1
+(noun)|black-necked cobra|Naja nigricollis|cobra (generic term)
+spitting image|1
+(noun)|likeness (generic term)|alikeness (generic term)|similitude (generic term)
+spitting snake|1
+(noun)|ringhals|rinkhals|Hemachatus haemachatus|elapid (generic term)|elapid snake (generic term)
+spittle|1
+(noun)|saliva|spit|secretion (generic term)
+spittle insect|1
+(noun)|spittlebug|homopterous insect (generic term)|homopteran (generic term)
+spittlebug|1
+(noun)|spittle insect|homopterous insect (generic term)|homopteran (generic term)
+spittoon|1
+(noun)|cuspidor|receptacle (generic term)
+spitz|1
+(noun)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+spitz-like|1
+(adj)|animal (similar term)
+spitzbergen|1
+(noun)|Spitsbergen|Spitzbergen|island (generic term)
+spiv|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+spizella|1
+(noun)|Spizella|genus Spizella|bird genus (generic term)
+spizella arborea|1
+(noun)|tree sparrow|Spizella arborea|New World sparrow (generic term)
+spizella passerina|1
+(noun)|chipping sparrow|Spizella passerina|New World sparrow (generic term)
+spizella pusilla|1
+(noun)|field sparrow|Spizella pusilla|New World sparrow (generic term)
+splanchnic|1
+(adj)|visceral|internal organ|viscus (related term)
+splanchnic nerve|1
+(noun)|nerve (generic term)|nervus (generic term)
+splash|12
+(noun)|plash|noise (generic term)
+(noun)|stir|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|dab|splatter|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+(noun)|spatter|spattering|splashing|splattering|painting (generic term)
+(noun)|splashing|wetting (generic term)
+(verb)|sprinkle|splosh|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|squelch|squish|splosh|slosh|slop|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|spatter|splatter|plash|splosh|swash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|overlay (generic term)|cover (generic term)
+(verb)|splosh|slosh|slush|sound (generic term)|go (generic term)
+(verb)|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+splash-guard|1
+(noun)|mudguard|splash guard|fender (generic term)|wing (generic term)
+splash around|1
+(verb)|dabble|paddle|play (generic term)
+splash guard|1
+(noun)|mudguard|splash-guard|fender (generic term)|wing (generic term)
+splashboard|2
+(noun)|washboard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|splasher|dashboard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+splashdown|1
+(noun)|landing (generic term)
+splashed|3
+(adj)|distributed (similar term)
+(adj)|dabbled|spattered|splattered|covered (similar term)
+(adj)|bespattered|spattered|besplashed|dirty (similar term)|soiled (similar term)|unclean (similar term)
+splasher|2
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|splashboard|dashboard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+splashiness|1
+(noun)|ostentation|ostentatiousness|pomposity|pompousness|pretentiousness|puffiness|inflation|inelegance (generic term)
+splashing|2
+(noun)|spatter|spattering|splash|splattering|painting (generic term)
+(noun)|splash|wetting (generic term)
+splashy|3
+(adj)|noise (related term)
+(adj)|showy|ostentatious (similar term)|pretentious (similar term)
+(adj)|covered (similar term)
+splat|5
+(noun)|splash (generic term)|plash (generic term)
+(noun)|slat (generic term)|spline (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|flatten (generic term)
+(verb)|flatten (generic term)|flatten out (generic term)
+splatter|4
+(noun)|spatter|spattering|splattering|sputter|splutter|sputtering|noise (generic term)
+(noun)|dab|splash|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(verb)|spill|slop|move (generic term)|displace (generic term)
+(verb)|spatter|plash|splash|splosh|swash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+splattered|1
+(adj)|dabbled|spattered|splashed|covered (similar term)
+splattering|2
+(noun)|spatter|spattering|splatter|sputter|splutter|sputtering|noise (generic term)
+(noun)|spatter|spattering|splash|splashing|painting (generic term)
+splay|5
+(adj)|splayfooted (similar term)|splayfoot (similar term)
+(noun)|bevel (generic term)|cant (generic term)|chamfer (generic term)
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)
+(verb)|turn out|spread out|rotate|turn (generic term)
+(verb)|dislocate|luxate|slip|move (generic term)|displace (generic term)
+splayfoot|2
+(adj)|splayfooted|flat-footed (similar term)|splay (similar term)|pigeon-toed (antonym)
+(noun)|flatfoot|pes planus|foot (generic term)|human foot (generic term)|pes (generic term)
+splayfooted|1
+(adj)|splayfoot|flat-footed (similar term)|splay (similar term)|pigeon-toed (antonym)
+spleen|2
+(noun)|lien|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+(noun)|irascibility|short temper|quick temper|bad temper (generic term)|ill temper (generic term)
+spleenwort|1
+(noun)|fern (generic term)
+splendid|2
+(adj)|glorious|resplendent|splendiferous|beautiful (similar term)
+(adj)|brilliant|glorious|magnificent|impressive (similar term)
+splendidly|2
+(adv)|magnificently|famously
+(adv)|gorgeously|resplendently|magnificently
+splendiferous|1
+(adj)|glorious|resplendent|splendid|beautiful (similar term)
+splendor|2
+(noun)|luster|lustre|brilliancy|splendour|brightness (generic term)
+(noun)|magnificence|brilliance|splendour|grandeur|grandness|elegance (generic term)
+splendour|2
+(noun)|luster|lustre|brilliancy|splendor|brightness (generic term)
+(noun)|magnificence|brilliance|splendor|grandeur|grandness|elegance (generic term)
+splenectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+splenetic|2
+(adj)|splenic|lienal|lymphatic tissue|lymphoid tissue (related term)
+(adj)|bristly|prickly|waspish|ill-natured (similar term)
+splenic|1
+(adj)|splenetic|lienal|lymphatic tissue|lymphoid tissue (related term)
+splenic artery|1
+(noun)|lienal artery|arteria lienalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+splenic fever|1
+(noun)|anthrax|zoonosis (generic term)|zoonotic disease (generic term)
+splenic vein|1
+(noun)|vena lienalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+splenitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+splenius|1
+(noun)|splenius muscle|skeletal muscle (generic term)|striated muscle (generic term)
+splenius muscle|1
+(noun)|splenius|skeletal muscle (generic term)|striated muscle (generic term)
+splenomegaly|1
+(noun)|hypertrophy (generic term)
+splice|5
+(noun)|splicing|junction (generic term)|conjunction (generic term)
+(noun)|lap joint|joint (generic term)
+(verb)|marry|wed|tie|officiate (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+(verb)|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+splicer|3
+(noun)|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+(noun)|worker (generic term)
+(noun)|mechanical device (generic term)
+splicing|1
+(noun)|splice|junction (generic term)|conjunction (generic term)
+spliff|1
+(noun)|joint|marijuana cigarette|reefer|stick|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+spline|2
+(noun)|strip (generic term)
+(noun)|slat|strip (generic term)
+splint|3
+(noun)|paring (generic term)|sliver (generic term)|shaving (generic term)
+(noun)|mechanical device (generic term)
+(verb)|treat (generic term)|care for (generic term)
+splint bone|1
+(noun)|bone (generic term)|os (generic term)
+splinter|4
+(noun)|sliver|bit (generic term)|chip (generic term)|flake (generic term)|fleck (generic term)|scrap (generic term)
+(verb)|secede|break away|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|sliver|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|sliver|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+splinter group|1
+(noun)|faction (generic term)|sect (generic term)
+splintering|1
+(noun)|chip|chipping|breakage (generic term)|break (generic term)|breaking (generic term)
+splinterless|1
+(adj)|shatterproof|splinterproof|unbreakable (similar term)
+splinterproof|1
+(adj)|shatterproof|splinterless|unbreakable (similar term)
+splinters|1
+(noun)|matchwood|wood (generic term)
+splintery|2
+(adj)|breakable (similar term)
+(adj)|slivery|fragment (related term)|bit|chip|flake|fleck|scrap (related term)
+split|19
+(adj)|divided (similar term)
+(adj)|disconnected|disunited|fragmented|divided (similar term)
+(adj)|cut (similar term)
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+(noun)|bottle (generic term)|bottleful (generic term)
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|rip|rent|snag|tear|opening (generic term)|gap (generic term)
+(noun)|Split|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|frozen dessert (generic term)
+(noun)|formation (generic term)
+(noun)|stock split|split up|increase (generic term)|step-up (generic term)
+(noun)|rent|rip|tear (generic term)
+(noun)|schism|division (generic term)
+(verb)|divide|split up|separate|dissever|carve up|change integrity (generic term)|unite (antonym)
+(verb)|cleave|rive|tear (generic term)
+(verb)|separate|part|split up|break|break up
+(verb)|separate|part|move (generic term)
+(verb)|burst|break open|break (generic term)|separate (generic term)|split up (generic term)|fall apart (generic term)|come apart (generic term)
+split-brain technique|1
+(noun)|brain surgery (generic term)
+split-half correlation|1
+(noun)|chance-half correlation|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+split-pea|1
+(noun)|green pea (generic term)|garden pea (generic term)
+split-pea soup|1
+(noun)|soup (generic term)
+split decision|1
+(noun)|decision (generic term)
+split down|1
+(noun)|reverse split|reverse stock split|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+split end|1
+(noun)|end (generic term)
+split infinitive|1
+(noun)|infinitive (generic term)
+split personality|1
+(noun)|multiple personality|dissociative disorder (generic term)
+split rail|1
+(noun)|fence rail|rail (generic term)
+split run|1
+(noun)|print run (generic term)|press run (generic term)
+split second|1
+(noun)|blink of an eye|flash|heartbeat|instant|jiffy|trice|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+split shift|1
+(noun)|shift (generic term)|work shift (generic term)|duty period (generic term)
+split ticket|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)|straight ticket (antonym)
+split up|5
+(noun)|split|stock split|increase (generic term)|step-up (generic term)
+(verb)|divorce|separate (generic term)|part (generic term)|split up (generic term)|split (generic term)|break (generic term)|break up (generic term)
+(verb)|divide|split|separate|dissever|carve up|change integrity (generic term)|unite (antonym)
+(verb)|separate|part|split|break|break up
+(verb)|break|separate|fall apart|come apart|change integrity (generic term)|break up (related term)
+splitsaw|1
+(noun)|ripsaw|handsaw (generic term)|hand saw (generic term)|carpenter's saw (generic term)
+splitsville|1
+(noun)|dissolution (generic term)|breakup (generic term)
+splitter|3
+(noun)|worker (generic term)
+(noun)|divider|taxonomist (generic term)|taxonomer (generic term)|systematist (generic term)|lumper (antonym)
+(noun)|rail-splitter|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+splitting|1
+(adj)|rending|ripping|cacophonous (similar term)|cacophonic (similar term)
+splitworm|1
+(noun)|potato moth|potato tuber moth|Phthorimaea operculella|gelechiid (generic term)|gelechiid moth (generic term)
+splodge|1
+(noun)|blotch|splotch|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+splosh|4
+(verb)|splash|slosh|slush|sound (generic term)|go (generic term)
+(verb)|squelch|squish|splash|slosh|slop|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|sprinkle|splash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|spatter|splatter|plash|splash|swash|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+splotch|2
+(noun)|blotch|splodge|smudge (generic term)|spot (generic term)|blot (generic term)|daub (generic term)|smear (generic term)|smirch (generic term)|slur (generic term)
+(verb)|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+splotched|1
+(adj)|blotched|blotchy|patterned (similar term)
+splurge|4
+(noun)|ostentation (generic term)|fanfare (generic term)|flash (generic term)
+(noun)|orgy|binge|indulgence (generic term)|indulging (generic term)|pampering (generic term)|humoring (generic term)
+(verb)|fling|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|flaunt (generic term)|flash (generic term)|show off (generic term)|ostentate (generic term)|swank (generic term)
+splutter|4
+(noun)|spatter|spattering|splatter|splattering|sputter|sputtering|noise (generic term)
+(noun)|sputter|utterance (generic term)|vocalization (generic term)
+(verb)|sputter|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|sputter|spit out|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)
+spock|1
+(noun)|Spock|Benjamin Spock|baby doctor (generic term)|pediatrician (generic term)|pediatrist (generic term)|paediatrician (generic term)
+spode|2
+(noun)|Spode|Josiah Spode|potter (generic term)|thrower (generic term)|ceramicist (generic term)|ceramist (generic term)
+(noun)|Spode|porcelain (generic term)
+spodoptera|1
+(noun)|Spodoptera|genus Spodoptera|arthropod genus (generic term)
+spodoptera exigua|2
+(noun)|beet armyworm|Spodoptera exigua|caterpillar (generic term)
+(noun)|Spodoptera exigua|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+spodoptera frugiperda|2
+(noun)|fall armyworm|Spodoptera frugiperda|caterpillar (generic term)
+(noun)|Spodoptera frugiperda|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+spodumene|1
+(noun)|mineral (generic term)
+spoil|11
+(noun)|stolen property (generic term)
+(noun)|spoiling|spoilage|injury (generic term)
+(noun)|spoliation|spoilation|despoilation|despoilment|despoliation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+(verb)|botch|bodge|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 (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|go bad|decay (generic term)
+(verb)|corrupt|modify (generic term)
+(verb)|pamper|featherbed|cosset|cocker|baby|coddle|mollycoddle|indulge|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|thwart|queer|scotch|foil|cross|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+(verb)|itch|desire (generic term)|want (generic term)
+(verb)|rape|despoil|violate|plunder|destroy (generic term)|ruin (generic term)
+(verb)|mar|impair|deflower|vitiate|damage (generic term)
+spoilable|2
+(adj)|decayable|putrescible|putrefiable|perishable (similar term)
+(noun)|perishable|foodstuff (generic term)|food product (generic term)
+spoilage|3
+(noun)|indefinite quantity (generic term)
+(noun)|spoiling|decay (generic term)
+(noun)|spoil|spoiling|injury (generic term)
+spoilation|1
+(noun)|spoil|spoliation|despoilation|despoilment|despoliation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+spoiled|2
+(adj)|spoilt|ill-natured (similar term)
+(adj)|bad|spoilt|stale (similar term)
+spoiler|4
+(noun)|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+(noun)|plunderer|pillager|looter|despoiler|raider|freebooter|thief (generic term)|stealer (generic term)
+(noun)|pamperer|coddler|mollycoddler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+spoiling|2
+(noun)|spoilage|decay (generic term)
+(noun)|spoil|spoilage|injury (generic term)
+spoils system|1
+(noun)|system (generic term)|system of rules (generic term)|merit system (antonym)
+spoilsport|1
+(noun)|killjoy|wet blanket|party pooper|unwelcome person (generic term)|persona non grata (generic term)
+spoilt|3
+(adj)|spoiled|ill-natured (similar term)
+(adj)|bad|spoiled|stale (similar term)
+(adj)|blighted|destroyed (similar term)
+spokane|1
+(noun)|Spokane|city (generic term)|metropolis (generic term)|urban center (generic term)
+spoke|2
+(noun)|wheel spoke|radius|support (generic term)
+(noun)|rundle|rung|crosspiece (generic term)
+spoken|1
+(adj)|expressed (similar term)|uttered (similar term)|verbalized (similar term)|verbalised (similar term)|oral (similar term)|unwritten (similar term)|verbal (similar term)|viva-voce (similar term)|word-of-mouth (similar term)|articulate (related term)|written (antonym)
+spoken communication|1
+(noun)|speech|speech communication|spoken language|language|voice communication|oral communication|auditory communication (generic term)
+spoken language|1
+(noun)|speech|speech communication|spoken communication|language|voice communication|oral communication|auditory communication (generic term)
+spoken word|1
+(noun)|vocable|word (generic term)
+spokeshave|1
+(noun)|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+spokesman|1
+(noun)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+spokesperson|1
+(noun)|interpreter|representative|voice|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+spokeswoman|1
+(noun)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+spoliation|2
+(noun)|destruction (generic term)|devastation (generic term)
+(noun)|spoil|spoilation|despoilation|despoilment|despoliation|plundering (generic term)|pillage (generic term)|pillaging (generic term)
+spondaic|1
+(adj)|metrical foot|foot|metrical unit (related term)
+spondaise|1
+(verb)|spondaize|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+spondaize|1
+(verb)|spondaise|verse (generic term)|versify (generic term)|poetize (generic term)|poetise (generic term)
+spondee|1
+(noun)|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+spondias|1
+(noun)|Spondias|genus Spondias|dicot genus (generic term)|magnoliopsid genus (generic term)
+spondias mombin|1
+(noun)|hog plum|yellow mombin|yellow mombin tree|Spondias mombin|fruit tree (generic term)
+spondias purpurea|1
+(noun)|mombin|mombin tree|jocote|Spondias purpurea|fruit tree (generic term)
+spondylarthritis|1
+(noun)|arthritis (generic term)
+spondylitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+spondylolisthesis|1
+(noun)|dislocation (generic term)
+sponge|9
+(noun)|absorbent material (generic term)|absorbent (generic term)
+(noun)|quick study|learner (generic term)|scholar (generic term)|assimilator (generic term)
+(noun)|leech|parasite|sponger|follower (generic term)
+(noun)|poriferan|parazoan|invertebrate (generic term)
+(verb)|wipe (generic term)|pass over (generic term)
+(verb)|mooch|bum|cadge|grub|obtain (generic term)
+(verb)|erase (generic term)|rub out (generic term)|score out (generic term)|efface (generic term)|wipe off (generic term)
+(verb)|wipe up (generic term)|mop up (generic term)|mop (generic term)
+(verb)|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+sponge bag|1
+(noun)|toilet bag|bag (generic term)
+sponge bath|1
+(noun)|washup (generic term)|bathing (generic term)
+sponge cake|1
+(noun)|cake (generic term)
+sponge cloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+sponge down|2
+(verb)|sponge off|rub (generic term)
+(verb)|wash (generic term)|lave (generic term)
+sponge genus|1
+(noun)|genus (generic term)
+sponge gourd|1
+(noun)|luffa|dishcloth gourd|rag gourd|strainer vine|vine (generic term)
+sponge mop|1
+(noun)|swab (generic term)|swob (generic term)|mop (generic term)
+sponge morel|1
+(noun)|common morel|Morchella esculenta|sponge mushroom|morel (generic term)
+sponge mushroom|1
+(noun)|common morel|Morchella esculenta|sponge morel|morel (generic term)
+sponge off|1
+(verb)|sponge down|rub (generic term)
+sponge on|1
+(verb)|put on (generic term)|apply (generic term)
+sponge up|1
+(verb)|absorb (generic term)|suck (generic term)|imbibe (generic term)|soak up (generic term)|sop up (generic term)|suck up (generic term)|draw (generic term)|take in (generic term)|take up (generic term)
+spongefly|1
+(noun)|spongillafly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+spongelike|2
+(adj)|spongy|squashy|squishy|soft (similar term)
+(adj)|spongy|absorbent (similar term)|absorptive (similar term)
+sponger|2
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|leech|parasite|sponge|follower (generic term)
+spongillafly|1
+(noun)|spongefly|neuropteron (generic term)|neuropteran (generic term)|neuropterous insect (generic term)
+sponginess|2
+(noun)|porosity (generic term)|porousness (generic term)
+(noun)|compressibility|squeezability|softness (generic term)|incompressibility (antonym)
+spongioblast|1
+(noun)|columnar cell (generic term)|columnar epithelial cell (generic term)
+spongioblastoma|1
+(noun)|glioblastoma|brain tumor (generic term)|brain tumour (generic term)
+spongy|2
+(adj)|squashy|squishy|spongelike|soft (similar term)
+(adj)|spongelike|absorbent (similar term)|absorptive (similar term)
+sponsor|5
+(noun)|patron|supporter|benefactor (generic term)|helper (generic term)
+(noun)|presenter|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(verb)|patronize|patronise|support (generic term)
+(verb)|support (generic term)|back up (generic term)
+(verb)|patronize|patronise|shop|shop at|buy at|frequent|support (generic term)|back up (generic term)|boycott (antonym)|boycott (antonym)
+sponsorship|1
+(noun)|support (generic term)
+spontaneity|1
+(noun)|spontaneousness|naturalness (generic term)
+spontaneous|2
+(adj)|self-generated|impulsive (similar term)|unprompted (similar term)|intuitive (similar term)|natural (similar term)|instinctive (similar term)|induced (antonym)
+(adj)|ad-lib|unwritten|unscripted (similar term)
+spontaneous abortion|1
+(noun)|miscarriage|stillbirth|abortion (generic term)|live birth (antonym)
+spontaneous combustion|1
+(noun)|ignition (generic term)
+spontaneous generation|1
+(noun)|abiogenesis|autogenesis|autogeny|organic phenomenon (generic term)
+spontaneously|1
+(adv)|ad lib|ad libitum|impromptu
+spontaneousness|1
+(noun)|spontaneity|naturalness (generic term)
+spoof|2
+(noun)|parody|lampoon|sendup|mockery|takeoff|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(verb)|burlesque|parody|mock (generic term)
+spook|3
+(noun)|creep|weirdo|weirdie|weirdy|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|ghost|shade|wraith|specter|spectre|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+(verb)|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+spookily|1
+(adv)|eerily
+spooky|1
+(adj)|skittish|flighty|nervous|excitable (similar term)
+spool|3
+(noun)|bobbin|reel|winder (generic term)
+(verb)|transfer (generic term)
+(verb)|wind (generic term)|wrap (generic term)|roll (generic term)|twine (generic term)
+spoon|5
+(noun)|cutlery (generic term)|eating utensil (generic term)|container (generic term)
+(noun)|spoonful|containerful (generic term)
+(noun)|wood (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|smooch|snog|neck (generic term)|make out (generic term)
+spoon-shaped|1
+(adj)|formed (similar term)
+spoon bread|1
+(noun)|batter bread|cornbread (generic term)
+spoon food|1
+(noun)|soft diet|pap|diet (generic term)
+spoonbill|1
+(noun)|wading bird (generic term)|wader (generic term)
+spoonbill catfish|1
+(noun)|flathead catfish|mudcat|goujon|shovelnose catfish|Pylodictus olivaris|catfish (generic term)|siluriform fish (generic term)
+spoondrift|1
+(noun)|spindrift|spray (generic term)
+spoonerism|1
+(noun)|slip of the tongue (generic term)
+spoonfeed|2
+(verb)|feed (generic term)|give (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+spoonfeeding|2
+(noun)|feeding (generic term)|alimentation (generic term)
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+spoonflower|1
+(noun)|yautia|tannia|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+spoonful|1
+(noun)|spoon|containerful (generic term)
+spoonleaf yucca|1
+(noun)|Adam's needle|Adam's needle-and-thread|needle palm|Yucca filamentosa|yucca (generic term)
+spoor|1
+(noun)|trail (generic term)
+sporadic|1
+(adj)|fitful (similar term)|spasmodic (similar term)|intermittent (similar term)|periodic (similar term)|irregular (similar term)|unpredictable (similar term)|isolated (similar term)|stray (similar term)|discontinuous (related term)|noncontinuous (related term)|infrequent (related term)|continual (antonym)
+sporadically|1
+(adv)|periodically
+sporangiophore|1
+(noun)|stalk (generic term)|stem (generic term)
+sporangium|1
+(noun)|spore case|spore sac|reproductive structure (generic term)
+sporanox|1
+(noun)|itraconazole|Sporanox|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+spore|1
+(noun)|agamete (generic term)
+spore-bearing|1
+(adj)|flowerless (similar term)|nonflowering (similar term)
+spore case|2
+(noun)|sporangium|spore sac|reproductive structure (generic term)
+(noun)|sporocarp|reproductive structure (generic term)
+spore mother cell|1
+(noun)|mother cell (generic term)
+spore sac|1
+(noun)|sporangium|spore case|reproductive structure (generic term)
+spork|1
+(noun)|Spork|cutlery (generic term)|eating utensil (generic term)
+sporobolus|1
+(noun)|Sporobolus|genus Sporobolus|monocot genus (generic term)|liliopsid genus (generic term)
+sporobolus cryptandrus|1
+(noun)|sand dropseed|Sporobolus cryptandrus|dropseed (generic term)|drop-seed (generic term)
+sporobolus poiretii|1
+(noun)|smut grass|blackseed|carpet grass|Sporobolus poiretii|dropseed (generic term)|drop-seed (generic term)
+sporocarp|1
+(noun)|spore case|reproductive structure (generic term)
+sporogenous|1
+(adj)|agamete (related term)
+sporophore|1
+(noun)|reproductive structure (generic term)
+sporophyl|1
+(noun)|sporophyll|leaf (generic term)|leafage (generic term)|foliage (generic term)
+sporophyll|1
+(noun)|sporophyl|leaf (generic term)|leafage (generic term)|foliage (generic term)
+sporophyte|1
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+sporotrichosis|1
+(noun)|fungal infection (generic term)|mycosis (generic term)
+sporozoa|1
+(noun)|Sporozoa|class Sporozoa|class (generic term)
+sporozoan|1
+(noun)|protozoan (generic term)|protozoon (generic term)
+sporozoite|1
+(noun)|sporozoan (generic term)
+sporran|1
+(noun)|pouch (generic term)
+sport|9
+(noun)|athletics|diversion (generic term)|recreation (generic term)
+(noun)|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|summercater|vacationer (generic term)|vacationist (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|sportsman|sportswoman|athlete (generic term)|jock (generic term)
+(noun)|mutant|mutation|variation|organism (generic term)|being (generic term)
+(noun)|fun|play|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(verb)|feature|boast|have (generic term)|feature (generic term)
+(verb)|frolic|lark|rollick|skylark|disport|cavort|gambol|frisk|romp|run around|lark about|play (generic term)
+sport car|1
+(noun)|sports car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+sport coat|1
+(noun)|blazer|sport jacket|sports jacket|sports coat|jacket (generic term)
+sport fish|1
+(noun)|game fish|fish (generic term)
+sport jacket|1
+(noun)|blazer|sport coat|sports jacket|sports coat|jacket (generic term)
+sport kite|1
+(noun)|stunt kite|kite (generic term)
+sport shirt|1
+(noun)|polo shirt|shirt (generic term)
+sport utility|1
+(noun)|sport utility vehicle|S.U.V.|SUV|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+sport utility vehicle|1
+(noun)|sport utility|S.U.V.|SUV|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+sportfishing|1
+(noun)|fishing|outdoor sport (generic term)|field sport (generic term)
+sporting|4
+(adj)|clean|sporty|sportsmanlike|fair (similar term)|just (similar term)
+(adj)|diversion|recreation (related term)
+(adj)|adventurous (similar term)|adventuresome (similar term)
+(adj)|dissipated|betting|card-playing|indulgent (similar term)
+sporting chance|1
+(noun)|fair chance|probability (generic term)|chance (generic term)
+sporting dog|1
+(noun)|gun dog|hunting dog (generic term)
+sporting goods|1
+(noun)|sports equipment (generic term)|commodity (generic term)|trade good (generic term)|good (generic term)
+sporting house|1
+(noun)|whorehouse|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|building (generic term)|edifice (generic term)
+sporting lady|1
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+sporting life|1
+(noun)|gambling (generic term)|gaming (generic term)|play (generic term)
+sporting man|2
+(noun)|gambler (generic term)
+(noun)|outdoor man|amateur (generic term)
+sportingly|1
+(adv)|unsportingly (antonym)
+sportive|2
+(adj)|diversion|recreation (related term)
+(adj)|coltish|frolicsome|frolicky|rollicking|playful (similar term)
+sportiveness|1
+(noun)|friskiness|frolicsomeness|playfulness (generic term)|fun (generic term)
+sports announcer|1
+(noun)|sportscaster|sports commentator|announcer (generic term)
+sports arena|1
+(noun)|field house|house (generic term)
+sports car|1
+(noun)|sport car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+sports coat|1
+(noun)|blazer|sport jacket|sport coat|sports jacket|jacket (generic term)
+sports commentator|1
+(noun)|sports announcer|sportscaster|announcer (generic term)
+sports desk|1
+(noun)|editorial department (generic term)
+sports editor|1
+(noun)|newspaper editor (generic term)
+sports equipment|1
+(noun)|equipment (generic term)
+sports fan|1
+(noun)|fan|rooter|enthusiast (generic term)|partisan (generic term)|partizan (generic term)
+sports implement|1
+(noun)|implement (generic term)
+sports jacket|1
+(noun)|blazer|sport jacket|sport coat|sports coat|jacket (generic term)
+sports medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+sports meeting|1
+(noun)|meet|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+sports page|1
+(noun)|page (generic term)
+sports section|1
+(noun)|section (generic term)|subdivision (generic term)
+sports stadium|1
+(noun)|stadium|bowl|arena|structure (generic term)|construction (generic term)
+sports writer|1
+(noun)|sportswriter|journalist (generic term)
+sportscast|2
+(noun)|newscast (generic term)
+(verb)|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+sportscaster|1
+(noun)|sports announcer|sports commentator|announcer (generic term)
+sportsman|1
+(noun)|sport|sportswoman|athlete (generic term)|jock (generic term)
+sportsmanlike|1
+(adj)|clean|sporting|sporty|fair (similar term)|just (similar term)
+sportsmanship|1
+(noun)|fairness (generic term)|equity (generic term)
+sportswear|1
+(noun)|athletic wear|activewear|attire (generic term)|garb (generic term)|dress (generic term)
+sportswoman|1
+(noun)|sport|sportsman|athlete (generic term)|jock (generic term)
+sportswriter|1
+(noun)|sports writer|journalist (generic term)
+sporty|3
+(adj)|clean|sporting|sportsmanlike|fair (similar term)|just (similar term)
+(adj)|flashy|gaudy|jazzy|showy|colorful (similar term)|colourful (similar term)
+(adj)|active (similar term)
+sporulate|2
+(verb)|produce (generic term)|bring forth (generic term)
+(verb)|convert (generic term)
+sporulation|1
+(noun)|monogenesis|asexual reproduction (generic term)|agamogenesis (generic term)
+spot|18
+(noun)|topographic point|place|point (generic term)
+(noun)|smudge|blot|daub|smear|smirch|slur|blemish (generic term)|defect (generic term)|mar (generic term)
+(noun)|speckle|dapple|patch|fleck|maculation|marking (generic term)
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|point|characteristic (generic term)
+(noun)|place of business (generic term)|business establishment (generic term)
+(noun)|position|post|berth|office|billet|place|situation|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|touch|attack (generic term)
+(noun)|bit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|pip|marker (generic term)|marking (generic term)|mark (generic term)
+(noun)|spotlight|lamp (generic term)
+(noun)|playing card (generic term)
+(noun)|blot|smear|smirch|stain|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|descry|espy|spy|sight (generic term)
+(verb)|blemish|dirty (generic term)|soil (generic term)|begrime (generic term)|grime (generic term)|colly (generic term)|bemire (generic term)
+(verb)|fleck|blob|blot|change surface (generic term)
+(verb)|change (generic term)
+(verb)|mark (generic term)
+spot-check|1
+(verb)|see (generic term)|check (generic term)|insure (generic term)|see to it (generic term)|ensure (generic term)|control (generic term)|ascertain (generic term)|assure (generic term)
+spot-weld|2
+(noun)|spot weld|weld (generic term)
+(verb)|spotweld|weld (generic term)
+spot-welder|1
+(noun)|spot welder|welder (generic term)
+spot-welding|1
+(noun)|spot welding|welding (generic term)
+spot check|1
+(noun)|check (generic term)|checkout (generic term)|check-out procedure (generic term)
+spot jam|1
+(verb)|jam (generic term)|block (generic term)
+spot jamming|1
+(noun)|selective jamming|jamming (generic term)|electronic jamming (generic term)|jam (generic term)
+spot market|1
+(noun)|commodity exchange (generic term)|commodities exchange (generic term)|commodities market (generic term)
+spot pass|1
+(noun)|pass (generic term)|passing play (generic term)|passing game (generic term)|passing (generic term)
+spot price|1
+(noun)|cash price|price (generic term)|terms (generic term)|damage (generic term)
+spot promote|1
+(verb)|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+spot weld|1
+(noun)|spot-weld|weld (generic term)
+spot welder|1
+(noun)|spot-welder|welder (generic term)
+spot welding|1
+(noun)|spot-welding|welding (generic term)
+spotless|1
+(adj)|immaculate|speckless|spick-and-span|spic-and-span|spic|spick|clean (similar term)
+spotlessness|1
+(noun)|immaculateness|cleanness (generic term)
+spotlight|4
+(noun)|limelight|glare|public eye|prominence (generic term)
+(noun)|spot|lamp (generic term)
+(verb)|foreground|highlight|play up|bring out (generic term)|set off (generic term)|play down (antonym)|background (antonym)
+(verb)|light (generic term)|illume (generic term)|illumine (generic term)|light up (generic term)|illuminate (generic term)
+spots|1
+(noun)|musca volitans|muscae volitantes|floater|symptom (generic term)
+spotsylvania|2
+(noun)|Spotsylvania|village (generic term)|hamlet (generic term)
+(noun)|Spotsylvania|battle of Spotsylvania Courthouse|pitched battle (generic term)
+spotted|2
+(adj)|patched|spotty|black-and-white|patterned (similar term)
+(adj)|besmirched|damaged|flyblown|stained|sullied|tainted|tarnished|blemished (similar term)
+spotted antbird|1
+(noun)|Hylophylax naevioides|antbird (generic term)|ant bird (generic term)
+spotted bat|1
+(noun)|jackass bat|Euderma maculata|vespertilian bat (generic term)|vespertilionid (generic term)
+spotted black bass|1
+(noun)|Kentucky black bass|Micropterus pseudoplites|black bass (generic term)
+spotted coral root|1
+(noun)|Corallorhiza maculata|coral root (generic term)
+spotted cowbane|1
+(noun)|spotted hemlock|spotted water hemlock|poisonous plant (generic term)
+spotted crake|1
+(noun)|Porzana porzana|crake (generic term)
+spotted cranesbill|1
+(noun)|wild geranium|Geranium maculatum|cranesbill (generic term)|crane's bill (generic term)
+spotted dick|1
+(noun)|suet pudding (generic term)
+spotted eagle ray|1
+(noun)|spotted ray|Aetobatus narinari|eagle ray (generic term)
+spotted fever|1
+(noun)|rickettsial disease (generic term)|rickettsiosis (generic term)
+spotted flycatcher|1
+(noun)|Muscicapa striata|Muscicapa grisola|Old World flycatcher (generic term)|true flycatcher (generic term)|flycatcher (generic term)
+spotted gum|1
+(noun)|Eucalyptus maculata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+spotted hemlock|1
+(noun)|spotted cowbane|spotted water hemlock|poisonous plant (generic term)
+spotted hyena|1
+(noun)|laughing hyena|Crocuta crocuta|hyena (generic term)|hyaena (generic term)
+spotted joe-pye weed|1
+(noun)|Joe-Pye weed|spotted Joe-Pye weed|Eupatorium maculatum|herb (generic term)|herbaceous plant (generic term)
+spotted lynx|1
+(noun)|Lynx pardina|lynx (generic term)|catamount (generic term)
+spotted owl|1
+(noun)|Strix occidentalis|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+spotted ray|1
+(noun)|spotted eagle ray|Aetobatus narinari|eagle ray (generic term)
+spotted salamander|2
+(noun)|Ambystoma maculatum|ambystomid (generic term)|ambystomid salamander (generic term)
+(noun)|fire salamander|Salamandra maculosa|salamander (generic term)
+spotted sandpiper|1
+(noun)|Actitis macularia|sandpiper (generic term)
+spotted sea trout|1
+(noun)|spotted weakfish|spotted squeateague|Cynoscion nebulosus|sea trout (generic term)
+spotted skunk|1
+(noun)|little spotted skunk|Spilogale putorius|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+spotted squeateague|1
+(noun)|spotted weakfish|spotted sea trout|Cynoscion nebulosus|sea trout (generic term)
+spotted sunfish|1
+(noun)|stumpknocker|Lepomis punctatus|freshwater bream (generic term)|bream (generic term)
+spotted water hemlock|1
+(noun)|spotted cowbane|spotted hemlock|poisonous plant (generic term)
+spotted weakfish|1
+(noun)|spotted sea trout|spotted squeateague|Cynoscion nebulosus|sea trout (generic term)
+spotter|3
+(noun)|employee (generic term)
+(noun)|lookout|lookout man|sentinel|sentry|watch|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+(noun)|finder|discoverer|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+spotting|2
+(noun)|staining|maculation|soiling (generic term)|soilure (generic term)|dirtying (generic term)
+(noun)|detection|catching|espial|spying|discovery (generic term)|find (generic term)|uncovering (generic term)
+spotty|2
+(adj)|patched|spotted|black-and-white|patterned (similar term)
+(adj)|uneven|scratchy|inconsistent (similar term)
+spotweld|1
+(verb)|spot-weld|weld (generic term)
+spousal|2
+(adj)|bridal|nuptial|ceremony|ceremonial|ceremonial occasion|observance (related term)|marriage|wedding|marriage ceremony (related term)
+(adj)|relative|relation|domestic partner|significant other|spousal equivalent|spouse equivalent (related term)
+spousal equivalent|1
+(noun)|domestic partner|significant other|spouse equivalent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+spousal relationship|1
+(noun)|marriage|matrimony|union|wedlock|marital status (generic term)
+spouse|1
+(noun)|partner|married person|mate|better half|relative (generic term)|relation (generic term)|domestic partner (generic term)|significant other (generic term)|spousal equivalent (generic term)|spouse equivalent (generic term)
+spouse equivalent|1
+(noun)|domestic partner|significant other|spousal equivalent|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+spout|3
+(noun)|opening (generic term)
+(verb)|spurt|spirt|gush|pour (generic term)
+(verb)|rant|mouth off|jabber|rabbit on|rave|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+spouter|3
+(noun)|chatterer|babbler|prater|chatterbox|magpie|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|oil well (generic term)|oiler (generic term)
+(noun)|whale (generic term)
+spouting|1
+(adj)|jetting|spurting|squirting|running (similar term)
+sprachgefuhl|1
+(noun)|feeling (generic term)|intuitive feeling (generic term)
+sprag|2
+(noun)|chock (generic term)|wedge (generic term)
+(noun)|pitprop|prop (generic term)
+spraguea|1
+(noun)|Spraguea|genus Spraguea|caryophylloid dicot genus (generic term)
+spraguea umbellatum|1
+(noun)|pussy-paw|pussy-paws|pussy's-paw|Spraguea umbellatum|Calyptridium umbellatum|wildflower (generic term)|wild flower (generic term)
+sprain|2
+(noun)|wrench (generic term)|twist (generic term)|pull (generic term)
+(verb)|twist|wrench|turn|wrick|rick|injure (generic term)|wound (generic term)
+sprat|2
+(noun)|brisling|herring (generic term)
+(noun)|brisling|Clupea sprattus|sardine (generic term)
+sprawl|4
+(noun)|conurbation|urban sprawl|urban area (generic term)|populated area (generic term)
+(noun)|sprawling|position (generic term)|posture (generic term)|attitude (generic term)
+(verb)|sit (generic term)|sit down (generic term)|lie (generic term)
+(verb)|straggle|spread (generic term)|distribute (generic term)
+sprawler|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sprawling|2
+(adj)|straggling|straggly|untidy (similar term)
+(noun)|sprawl|position (generic term)|posture (generic term)|attitude (generic term)
+sprawly|1
+(adj)|extended (similar term)
+spray|8
+(noun)|pesticide (generic term)
+(noun)|atomizer|atomiser|sprayer|nebulizer|nebuliser|dispenser (generic term)
+(noun)|spraying|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|flower arrangement (generic term)
+(noun)|water vapor (generic term)|water vapour (generic term)
+(noun)|jet (generic term)|squirt (generic term)|spurt (generic term)|spirt (generic term)
+(verb)|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|cover (generic term)
+spray-dry|1
+(verb)|dry (generic term)|dry out (generic term)
+spray can|1
+(noun)|aerosol|aerosol container|aerosol can|aerosol bomb|dispenser (generic term)
+spray gun|1
+(noun)|applicator (generic term)|applier (generic term)
+spray paint|1
+(noun)|paint (generic term)
+spray painting|1
+(noun)|painting (generic term)|spraying (generic term)
+sprayer|2
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|atomizer|atomiser|spray|nebulizer|nebuliser|dispenser (generic term)
+spraying|3
+(noun)|crop-dusting|dispersion (generic term)|dispersal (generic term)|dissemination (generic term)|diffusion (generic term)
+(noun)|spray|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+spread|22
+(adj)|dispersed|distributed (similar term)
+(adj)|prepared (similar term)
+(adj)|outspread|extended (similar term)
+(noun)|spreading|change of location (generic term)|travel (generic term)
+(noun)|gap|disparity (generic term)
+(noun)|ranch|cattle ranch|cattle farm|farm (generic term)
+(noun)|scatter|distribution (generic term)|dispersion (generic term)
+(noun)|paste|condiment (generic term)
+(noun)|banquet|feast|meal (generic term)|repast (generic term)
+(noun)|spread head|spreadhead|facing pages|page (generic term)
+(noun)|girth (generic term)
+(noun)|bedspread|bedcover|bed cover|bed covering|counterpane|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|spreading|extension (generic term)
+(verb)|distribute|spread out (related term)|spread out (related term)|spread out (related term)|spread out (related term)|gather (antonym)
+(verb)|propagate|move (generic term)
+(verb)|overspread|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|unfold|spread out|open|undo (generic term)|fold (antonym)
+(verb)|circulate|circularize|circularise|distribute|disseminate|propagate|broadcast|diffuse|disperse|pass around|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|go around|circulate|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|scatter|spread out|circulate (generic term)|pass around (generic term)|pass on (generic term)|distribute (generic term)
+(verb)|diffuse|spread out|fan out|spread (generic term)|distribute (generic term)
+(verb)|cover (generic term)
+spread-eagle|6
+(adj)|extended (similar term)
+(verb)|stretch (generic term)|extend (generic term)
+(verb)|range (generic term)|straddle (generic term)
+(verb)|figure skate (generic term)
+(verb)|sprawl (generic term)
+(verb)|spreadeagle|rout|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+spread-out|1
+(adj)|fanned|distributed (similar term)
+spread eagle|2
+(noun)|emblem (generic term)|allegory (generic term)
+(noun)|figure (generic term)
+spread head|1
+(noun)|spread|spreadhead|facing pages|page (generic term)
+spread out|7
+(verb)|diffuse|spread|fan out|spread (generic term)|distribute (generic term)
+(verb)|string out|arrange (generic term)|set up (generic term)
+(verb)|spread|scatter|circulate (generic term)|pass around (generic term)|pass on (generic term)|distribute (generic term)
+(verb)|expand|grow (generic term)|contract (antonym)
+(verb)|turn out|splay|rotate|turn (generic term)
+(verb)|disperse|dissipate|scatter|separate (generic term)|part (generic term)|split (generic term)
+(verb)|unfold|spread|open|undo (generic term)|fold (antonym)
+spread over|1
+(verb)|cover|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+spreadeagle|1
+(verb)|spread-eagle|rout|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+spreader|2
+(noun)|hand tool (generic term)
+(noun)|broadcaster|mechanical device (generic term)
+spreadhead|1
+(noun)|spread|spread head|facing pages|page (generic term)
+spreading|4
+(adj)|diffusing|diffusive|dispersive|disseminative|disseminating|scattering|distributive (similar term)
+(noun)|spread|change of location (generic term)|travel (generic term)
+(noun)|dissemination|airing|public exposure|transmission (generic term)
+(noun)|spread|extension (generic term)
+spreading bellflower|1
+(noun)|tussock bellflower|Campanula carpatica|campanula (generic term)|bellflower (generic term)
+spreading dogbane|1
+(noun)|common dogbane|rheumatism weed|Apocynum androsaemifolium|dogbane (generic term)
+spreading factor|1
+(noun)|hyaluronidase|Hyazyme|enzyme (generic term)
+spreading fleabane|1
+(noun)|Erigeron divergens|fleabane (generic term)
+spreading pogonia|1
+(noun)|funnel-crest rosebud orchid|Cleistes divaricata|Pogonia divaricata|orchid (generic term)|orchidaceous plant (generic term)
+spreadsheet|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+sprechgesang|1
+(noun)|sprechstimme|voice (generic term)|vocalization (generic term)|vocalisation (generic term)|vocalism (generic term)|phonation (generic term)|vox (generic term)
+sprechstimme|1
+(noun)|sprechgesang|voice (generic term)|vocalization (generic term)|vocalisation (generic term)|vocalism (generic term)|phonation (generic term)|vox (generic term)
+spree|2
+(noun)|fling|intemperance (generic term)|intemperateness (generic term)|self-indulgence (generic term)
+(verb)|gratify (generic term)|pander (generic term)|indulge (generic term)
+spree killer|1
+(noun)|serial killer (generic term)|serial murderer (generic term)
+sprig|2
+(noun)|branchlet|twig|branch (generic term)
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+sprig tail|1
+(noun)|sharp-tailed grouse|sprigtail|Pedioecetes phasianellus|grouse (generic term)
+sprigged|1
+(adj)|patterned (similar term)
+sprigger|1
+(noun)|stripper|stemmer|worker (generic term)
+sprightliness|1
+(noun)|liveliness|life|spirit|animation (generic term)|spiritedness (generic term)|invigoration (generic term)|brio (generic term)|vivification (generic term)
+sprightly|1
+(adj)|spirited (similar term)
+sprigtail|1
+(noun)|sharp-tailed grouse|sprig tail|Pedioecetes phasianellus|grouse (generic term)
+spring|11
+(noun)|springtime|season (generic term)|time of year (generic term)
+(noun)|fountain|outflow|outpouring|natural spring|geological formation (generic term)|formation (generic term)
+(noun)|elastic device (generic term)
+(noun)|leap|leaping|saltation|bound|bounce|jump (generic term)|jumping (generic term)
+(noun)|give|springiness|elasticity (generic term)|snap (generic term)
+(noun)|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(verb)|jump|leap|bound|move (generic term)|leap out (related term)|jump on (related term)
+(verb)|form|take form|take shape|become (generic term)
+(verb)|bounce|resile|take a hop|bound|rebound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+(verb)|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)
+spring-blooming|1
+(adj)|spring-flowering|early-flowering|early-blooming|late-spring-blooming|vernal (similar term)
+spring-clean|1
+(verb)|houseclean (generic term)|clean house (generic term)|clean (generic term)
+spring-cleaning|1
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+spring-flowering|1
+(adj)|early-flowering|spring-blooming|early-blooming|late-spring-blooming|vernal (similar term)
+spring-loaded|1
+(adj)|elastic device (related term)
+spring balance|1
+(noun)|spring scale|balance (generic term)
+spring beauty|1
+(noun)|Clatonia lanceolata|flower (generic term)
+spring break|1
+(noun)|respite (generic term)|recess (generic term)|break (generic term)|time out (generic term)
+spring cankerworm|1
+(noun)|cankerworm (generic term)
+spring chicken|2
+(noun)|young person|youth|younker|juvenile (generic term)|juvenile person (generic term)
+(noun)|chicken (generic term)|Gallus gallus (generic term)
+spring cleavers|1
+(noun)|cleavers|clivers|goose grass|catchweed|Galium aparine|bedstraw (generic term)
+spring cress|1
+(noun)|Cardamine bulbosa|bittercress (generic term)|bitter cress (generic term)
+spring equinox|1
+(noun)|vernal equinox|March equinox|equinox (generic term)|autumnal equinox (antonym)
+spring frog|2
+(noun)|green frog|Rana clamitans|true frog (generic term)|ranid (generic term)
+(noun)|leopard frog|Rana pipiens|true frog (generic term)|ranid (generic term)
+spring gun|1
+(noun)|set gun|gun (generic term)
+spring heath|1
+(noun)|winter heath|Erica carnea|erica (generic term)|true heath (generic term)
+spring mattress|1
+(noun)|mattress (generic term)
+spring onion|1
+(noun)|onion (generic term)
+spring peeper|1
+(noun)|Hyla crucifer|tree toad (generic term)|tree frog (generic term)|tree-frog (generic term)
+spring roll|1
+(noun)|egg roll|dish (generic term)
+spring scale|1
+(noun)|spring balance|balance (generic term)
+spring squill|1
+(noun)|Scilla verna|sea onion|scilla (generic term)|squill (generic term)
+spring to mind|1
+(verb)|come to mind|appear (generic term)
+spring training|1
+(noun)|preseason (generic term)
+spring up|1
+(verb)|originate|arise|rise|develop|uprise|grow|become (generic term)
+spring vetch|2
+(noun)|Vicia sativa|vetch (generic term)
+(noun)|spring vetchling|Lathyrus vernus|vetchling (generic term)
+spring vetchling|1
+(noun)|spring vetch|Lathyrus vernus|vetchling (generic term)
+spring water|2
+(noun)|ground water|well water|water (generic term)|H2O (generic term)
+(noun)|water (generic term)
+springboard|2
+(noun)|board (generic term)
+(noun)|jumping-off point|point of departure|beginning (generic term)|start (generic term)|commencement (generic term)
+springbok|1
+(noun)|springbuck|Antidorcas marsupialis|Antidorcas euchore|gazelle (generic term)
+springbuck|1
+(noun)|springbok|Antidorcas marsupialis|Antidorcas euchore|gazelle (generic term)
+springer|3
+(noun)|impost|stone (generic term)
+(noun)|springing cow|cow (generic term)|moo-cow (generic term)
+(noun)|springer spaniel|spaniel (generic term)
+springer spaniel|1
+(noun)|springer|spaniel (generic term)
+springfield|2
+(noun)|Springfield|capital of Illinois|state capital (generic term)
+(noun)|Springfield|city (generic term)|metropolis (generic term)|urban center (generic term)
+springiness|1
+(noun)|give|spring|elasticity (generic term)|snap (generic term)
+springing cow|1
+(noun)|springer|cow (generic term)|moo-cow (generic term)
+springless|1
+(adj)|inelastic (similar term)
+springlike|1
+(adj)|elastic (similar term)
+springtail|1
+(noun)|collembolan|insect (generic term)
+springtide|2
+(noun)|flush (generic term)|gush (generic term)|outpouring (generic term)
+(noun)|high tide (generic term)|high water (generic term)|highwater (generic term)|neap tide (antonym)
+springtime|1
+(noun)|spring|season (generic term)|time of year (generic term)
+springy|2
+(adj)|bouncy|live|lively|resilient|elastic (similar term)
+(adj)|active (similar term)
+sprinkle|6
+(noun)|scattering|sprinkling|shower (generic term)|rain shower (generic term)
+(noun)|sprinkling|sparge|watering (generic term)
+(verb)|scatter|dot|dust|disperse|discharge (generic term)
+(verb)|splash|splosh|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|spit|spatter|patter|pitter-patter|rain (generic term)|rain down (generic term)
+(verb)|sparge|besprinkle|wet (generic term)
+sprinkled|1
+(adj)|besprent|wet (similar term)
+sprinkler|1
+(noun)|mechanical device (generic term)
+sprinkler system|1
+(noun)|system (generic term)
+sprinkles|1
+(noun)|jimmies|chocolate candy (generic term)
+sprinkling|4
+(noun)|scattering|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|scattering|sprinkle|shower (generic term)|rain shower (generic term)
+(noun)|aspersion|baptism (generic term)
+(noun)|sprinkle|sparge|watering (generic term)
+sprint|2
+(noun)|dash|run (generic term)|running (generic term)
+(verb)|run (generic term)
+sprinter|1
+(noun)|runner (generic term)
+sprit|1
+(noun)|spar (generic term)
+sprite|1
+(noun)|fairy|faery|faerie|fay|spiritual being (generic term)|supernatural being (generic term)
+sprites|1
+(noun)|red sprites|atmospheric electricity (generic term)
+spritsail|1
+(noun)|fore-and-aft sail (generic term)
+spritz|3
+(noun)|jet (generic term)|squirt (generic term)|spurt (generic term)|spirt (generic term)
+(verb)|squirt (generic term)|force out (generic term)|squeeze out (generic term)|eject (generic term)
+(verb)|cover (generic term)
+spritzer|1
+(noun)|mixed drink (generic term)
+sprocket|3
+(noun)|roller (generic term)
+(noun)|sprocket wheel|wheel (generic term)
+(noun)|cog|tooth (generic term)
+sprocket wheel|1
+(noun)|sprocket|wheel (generic term)
+sprog|2
+(noun)|recruit (generic term)|military recruit (generic term)
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+sprout|4
+(noun)|plant organ (generic term)
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+(verb)|shoot|spud|germinate|pullulate|bourgeon|burgeon forth|grow (generic term)
+(verb)|stock|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+sprouted|1
+(adj)|up (similar term)
+sprouting|1
+(noun)|germination|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+spruce|5
+(adj)|dapper|dashing|jaunty|natty|raffish|rakish|spiffy|snappy|fashionable (similar term)|stylish (similar term)
+(noun)|wood (generic term)
+(noun)|conifer (generic term)|coniferous tree (generic term)
+(verb)|spruce up|titivate|tittivate|smarten up|slick up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|spruce up|slick up|smarten up|groom (generic term)|neaten (generic term)
+spruce bark beetle|1
+(noun)|Dendroctonus rufipennis|bark beetle (generic term)
+spruce beer|1
+(noun)|brew (generic term)|brewage (generic term)
+spruce gall aphid|1
+(noun)|Adelges abietis|adelgid (generic term)
+spruce grouse|1
+(noun)|Canachites canadensis|grouse (generic term)
+spruce pine|4
+(noun)|eastern hemlock|Canadian hemlock|Tsuga canadensis|hemlock (generic term)|hemlock tree (generic term)
+(noun)|black spruce|Picea mariana|spruce (generic term)
+(noun)|shore pine|lodgepole|lodgepole pine|Pinus contorta|pine (generic term)|pine tree (generic term)|true pine (generic term)
+(noun)|Pinus glabra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+spruce squirrel|1
+(noun)|American red squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel (generic term)
+spruce up|2
+(verb)|spruce|titivate|tittivate|smarten up|slick up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+(verb)|spruce|slick up|smarten up|groom (generic term)|neaten (generic term)
+spruced up|1
+(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spiffed up|togged up|clothed (similar term)|clad (similar term)
+sprucely|1
+(adv)|smartly|modishly
+spruceness|1
+(noun)|neatness|tidiness (generic term)
+sprue|1
+(noun)|tropical sprue|disorder (generic term)|upset (generic term)
+sprung rhythm|1
+(noun)|poetic rhythm (generic term)|rhythmic pattern (generic term)|prosody (generic term)
+spry|1
+(adj)|agile|nimble|quick|active (similar term)
+spud|4
+(noun)|potato|white potato|Irish potato|murphy|tater|root vegetable (generic term)|solanaceous vegetable (generic term)
+(noun)|stump spud|hand shovel (generic term)
+(verb)|bore (generic term)|drill (generic term)
+(verb)|shoot|germinate|pullulate|bourgeon|burgeon forth|sprout|grow (generic term)
+spue|2
+(verb)|spit|ptyalize|ptyalise|spew|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)|spit up (related term)|spit up (related term)
+(verb)|vomit|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+spume|2
+(noun)|foam (generic term)|froth (generic term)
+(verb)|froth|suds|make (generic term)|create (generic term)
+spumous|1
+(adj)|bubbling|foaming|foamy|frothing|spumy|sudsy|agitated (similar term)
+spumy|1
+(adj)|bubbling|foaming|foamy|frothing|spumous|sudsy|agitated (similar term)
+spun sugar|1
+(noun)|cotton candy|candyfloss|candy (generic term)|confect (generic term)
+spun yarn|1
+(noun)|small stuff (generic term)
+spunk|2
+(noun)|kindling|tinder|touchwood|punk|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+(noun)|heart|mettle|nerve|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+spunky|2
+(adj)|feisty|plucky|spirited (similar term)
+(adj)|game|gamy|gamey|gritty|mettlesome|spirited|brave (similar term)|courageous (similar term)
+spur|10
+(noun)|goad|goading|prod|prodding|urging|spurring|encouragement (generic term)
+(noun)|spine|acantha|projection (generic term)
+(noun)|plant process (generic term)|enation (generic term)
+(noun)|gad|prod (generic term)|goad (generic term)
+(noun)|branch line|spur track|line (generic term)|railway line (generic term)|rail line (generic term)
+(verb)|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+(verb)|goad|encourage (generic term)
+(verb)|strike (generic term)
+(verb)|goad (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+spur-of-the-moment|1
+(adj)|unprepared (similar term)
+spur blight|1
+(noun)|blight (generic term)
+spur gear|1
+(noun)|spur wheel|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+spur track|1
+(noun)|branch line|spur|line (generic term)|railway line (generic term)|rail line (generic term)
+spur wheel|1
+(noun)|spur gear|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+spurge|1
+(noun)|shrub (generic term)|bush (generic term)
+spurge family|1
+(noun)|Euphorbiaceae|family Euphorbiaceae|rosid dicot family (generic term)
+spurge laurel|1
+(noun)|wood laurel|Daphne laureola|daphne (generic term)
+spurge nettle|1
+(noun)|tread-softly|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+spurious|3
+(adj)|specious|false (similar term)
+(adj)|bastardly|misbegot|misbegotten|illegitimate (similar term)
+(adj)|inauthentic|unauthentic|counterfeit (similar term)|imitative (similar term)
+spurious correlation|1
+(noun)|correlation (generic term)|correlational statistics (generic term)
+spurious wing|1
+(noun)|bastard wing|alula|feather (generic term)|plume (generic term)|plumage (generic term)
+spuriousness|1
+(noun)|falsity (generic term)|falseness (generic term)|genuineness (antonym)
+spurn|1
+(verb)|reject|freeze off|scorn|pooh-pooh|disdain|turn down|refuse (generic term)|decline (generic term)
+spurned|1
+(adj)|jilted|rejected|unloved (similar term)
+spurner|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+spurred gentian|1
+(noun)|gentian (generic term)
+spurring|1
+(noun)|goad|goading|prod|prodding|urging|spur|encouragement (generic term)
+spurt|3
+(noun)|jet|squirt|spirt|discharge (generic term)|outpouring (generic term)|run (generic term)
+(verb)|spirt|gush|spout|pour (generic term)
+(verb)|forge|spirt|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+spurting|1
+(adj)|jetting|spouting|squirting|running (similar term)
+sputnik|1
+(noun)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+sputter|7
+(noun)|spatter|spattering|splatter|splattering|splutter|sputtering|noise (generic term)
+(noun)|splutter|utterance (generic term)|vocalization (generic term)
+(verb)|pop (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|clamber|scramble|shin|shinny|skin|struggle|climb (generic term)
+(verb)|splutter|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|splutter|spit out|expectorate (generic term)|cough up (generic term)|cough out (generic term)|spit up (generic term)|spit out (generic term)
+sputtering|1
+(noun)|spatter|spattering|splatter|splattering|sputter|splutter|noise (generic term)
+sputum|1
+(noun)|phlegm|mucus (generic term)|mucous secretion (generic term)
+sputum smear|1
+(noun)|lower respiratory tract smear|bronchoscopic smear|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+spy|5
+(noun)|undercover agent|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+(verb)|descry|spot|espy|sight (generic term)
+(verb)|stag|snoop|sleuth|monitor (generic term)|supervise (generic term)|ride herd on (generic term)
+(verb)|investigate (generic term)|inquire (generic term)|enquire (generic term)
+spy satellite|1
+(noun)|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+spyeria|1
+(noun)|Spyeria|genus Spyeria|arthropod genus (generic term)
+spyglass|1
+(noun)|field glass|glass|refracting telescope (generic term)
+spyhole|1
+(noun)|peephole|eyehole|hole (generic term)
+spying|3
+(noun)|watch (generic term)|vigil (generic term)
+(noun)|undercover work|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+(noun)|detection|catching|espial|spotting|discovery (generic term)|find (generic term)|uncovering (generic term)
+spymaster|1
+(noun)|master (generic term)
+spyware|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+sq ft|1
+(noun)|square foot|area unit (generic term)|square measure (generic term)
+sq in|1
+(noun)|square inch|area unit (generic term)|square measure (generic term)
+sq yd|1
+(noun)|square yard|area unit (generic term)|square measure (generic term)
+squab|4
+(adj)|squabby|short (similar term)
+(noun)|dove|poultry (generic term)
+(noun)|sofa (generic term)|couch (generic term)|lounge (generic term)
+(noun)|pigeon (generic term)
+squabble|2
+(noun)|bicker|bickering|spat|tiff|pettifoggery|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+(verb)|quibble|niggle|pettifog|bicker|brabble|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+squabbler|1
+(noun)|malcontent (generic term)
+squabby|1
+(adj)|squab|short (similar term)
+squad|2
+(noun)|army unit (generic term)
+(noun)|team|unit (generic term)|social unit (generic term)
+squad car|1
+(noun)|cruiser|police cruiser|patrol car|police car|prowl car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+squad room|1
+(noun)|room (generic term)
+squadron|3
+(noun)|cavalry (generic term)
+(noun)|air unit (generic term)
+(noun)|naval unit (generic term)
+squalid|2
+(adj)|seamy|seedy|sleazy|sordid|disreputable (similar term)
+(adj)|flyblown|sordid|dirty (similar term)|soiled (similar term)|unclean (similar term)
+squalidae|1
+(noun)|Squalidae|family Squalidae|fish family (generic term)
+squalidly|1
+(adv)|sordidly
+squalidness|1
+(noun)|sordidness|squalor|dirtiness (generic term)|uncleanness (generic term)
+squall|4
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+(verb)|waul|wawl|howl (generic term)|ululate (generic term)|wail (generic term)|roar (generic term)|yawl (generic term)|yaup (generic term)
+(verb)|shout|shout out|cry|call|yell|scream|holler|hollo|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|blow (generic term)
+squall line|1
+(noun)|cold front (generic term)|polar front (generic term)
+squalling|1
+(adj)|squally|unquiet (similar term)
+squally|2
+(adj)|squalling|unquiet (similar term)
+(adj)|stormy (similar term)
+squalor|1
+(noun)|sordidness|squalidness|dirtiness (generic term)|uncleanness (generic term)
+squalus|1
+(noun)|Squalus|genus Squalus|fish genus (generic term)
+squalus acanthias|1
+(noun)|Atlantic spiny dogfish|Squalus acanthias|spiny dogfish (generic term)
+squalus suckleyi|1
+(noun)|Pacific spiny dogfish|Squalus suckleyi|spiny dogfish (generic term)
+squama|1
+(noun)|scale (generic term)
+squamata|1
+(noun)|Squamata|order Squamata|animal order (generic term)
+squamous cell|1
+(noun)|epithelial cell (generic term)
+squamous cell carcinoma|1
+(noun)|cancroid|skin cancer (generic term)
+squamule|1
+(noun)|scale (generic term)|scale leaf (generic term)
+squamulose|1
+(adj)|rough (similar term)|unsmooth (similar term)
+squander|2
+(verb)|waste|blow|use (generic term)|expend (generic term)|conserve (antonym)
+(verb)|consume|waste|ware|spend (generic term)|expend (generic term)|drop (generic term)
+squandered|1
+(adj)|wasted|lost (similar term)
+squanderer|1
+(noun)|prodigal|profligate|consumer (generic term)
+squandering|1
+(noun)|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+squandermania|1
+(noun)|squandering (generic term)
+square|23
+(adj)|quadrate (similar term)|right-angled (similar term)|squared (similar term)|squarish (similar term)|angular (related term)|angulate (related term)|round (antonym)
+(adj)|straight|aboveboard (similar term)|straightforward (similar term)|guileless (similar term)|transparent (similar term)|straightarrow (similar term)|honest (related term)|honorable (related term)|lawful (related term)|crooked (antonym)
+(adj)|hearty|satisfying|solid|substantial|wholesome (similar term)
+(adj)|paid (similar term)
+(adj)|straightforward|straight|direct (similar term)
+(adj)|straight|conventional (similar term)
+(noun)|foursquare|rectangle (generic term)|regular polygon (generic term)
+(noun)|second power|number (generic term)
+(noun)|public square|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|shape (generic term)|form (generic term)
+(noun)|lame|simpleton (generic term)|simple (generic term)
+(noun)|square toes|conservative (generic term)|conservativist (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|hand tool (generic term)
+(verb)|multiply (generic term)
+(verb)|square up|shape (generic term)|form (generic term)
+(verb)|adjust (generic term)|conform (generic term)|adapt (generic term)
+(verb)|position (generic term)
+(verb)|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|settle (generic term)
+(verb)|feather|paddle (generic term)
+(verb)|feather|row (generic term)
+(adv)|squarely
+square-bashing|1
+(noun)|military drill (generic term)
+square-built|1
+(adj)|robust (similar term)
+square-dance music|1
+(noun)|folk music (generic term)|ethnic music (generic term)|folk (generic term)
+square-jawed|1
+(adj)|jawed (similar term)
+square-rigged|1
+(adj)|rigged (similar term)
+square-rigger|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+square-shaped|1
+(adj)|angular (similar term)|angulate (similar term)
+square-shouldered|1
+(adj)|big-shouldered|broad-shouldered|robust (similar term)
+square-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+square-toed|2
+(adj)|priggish|prim|prissy|prudish|puritanical|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+(adj)|squared-toe|toed (similar term)|toe (similar term)
+square and rabbet|1
+(noun)|annulet|bandelet|bandelette|bandlet|molding (generic term)|moulding (generic term)
+square away|1
+(verb)|tidy|tidy up|clean up|neaten|straighten|straighten out|order (generic term)
+square block|1
+(noun)|cube|block (generic term)
+square bracket|1
+(noun)|bracket|punctuation (generic term)|punctuation mark (generic term)
+square dance|2
+(noun)|square dancing|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+square dancer|1
+(noun)|folk dancer (generic term)
+square dancing|1
+(noun)|square dance|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+square deal|1
+(noun)|fair deal|deal (generic term)
+square foot|1
+(noun)|sq ft|area unit (generic term)|square measure (generic term)
+square inch|1
+(noun)|sq in|area unit (generic term)|square measure (generic term)
+square knot|1
+(noun)|knot (generic term)
+square matrix|1
+(noun)|matrix (generic term)
+square meal|1
+(noun)|meal (generic term)|repast (generic term)
+square measure|1
+(noun)|area unit|unit of measurement (generic term)|unit (generic term)
+square meter|1
+(noun)|square metre|centare|area unit (generic term)|square measure (generic term)
+square metre|1
+(noun)|square meter|centare|area unit (generic term)|square measure (generic term)
+square mile|1
+(noun)|area unit (generic term)|square measure (generic term)
+square nut|1
+(noun)|nut (generic term)
+square off|1
+(verb)|settle|square up|determine|conclude (generic term)|resolve (generic term)
+square one|1
+(noun)|situation (generic term)|state of affairs (generic term)
+square root|1
+(noun)|root (generic term)
+square sail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+square shooter|1
+(noun)|straight shooter|straight arrow|good person (generic term)|liar (antonym)
+square toes|1
+(noun)|square|conservative (generic term)|conservativist (generic term)
+square up|3
+(verb)|square|shape (generic term)|form (generic term)
+(verb)|jog|even up|square (generic term)
+(verb)|settle|square off|determine|conclude (generic term)|resolve (generic term)
+square yard|1
+(noun)|sq yd|area unit (generic term)|square measure (generic term)
+squared|1
+(adj)|square (similar term)
+squared-toe|1
+(adj)|square-toed|toed (similar term)|toe (similar term)
+squareflipper square flipper|1
+(noun)|bearded seal|Erignathus barbatus|earless seal (generic term)|true seal (generic term)|hair seal (generic term)
+squarely|3
+(adv)|forthrightly|forthright
+(adv)|square
+(adv)|foursquare|straightforwardly
+squareness|1
+(noun)|rectangularity (generic term)|oblongness (generic term)
+squaretail|1
+(noun)|scombroid (generic term)|scombroid fish (generic term)
+squarish|1
+(adj)|square (similar term)
+squark|1
+(noun)|strange quark|quark (generic term)
+squash|4
+(noun)|squash vine|vine (generic term)
+(noun)|vegetable (generic term)|veggie (generic term)
+(noun)|squash racquets|squash rackets|court game (generic term)
+(verb)|crush|squelch|mash|squeeze|press (generic term)
+squash ball|1
+(noun)|ball (generic term)
+squash bug|1
+(noun)|Anasa tristis|coreid bug (generic term)|coreid (generic term)
+squash court|1
+(noun)|court (generic term)
+squash pie|1
+(noun)|pie (generic term)
+squash racket|1
+(noun)|squash racquet|bat|racket (generic term)|racquet (generic term)
+squash rackets|1
+(noun)|squash|squash racquets|court game (generic term)
+squash racquet|1
+(noun)|squash racket|bat|racket (generic term)|racquet (generic term)
+squash racquets|1
+(noun)|squash|squash rackets|court game (generic term)
+squash vine|1
+(noun)|squash|vine (generic term)
+squashy|2
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloppy|sloughy|soggy|swampy|waterlogged|wet (similar term)
+(adj)|spongy|squishy|spongelike|soft (similar term)
+squasy|1
+(adj)|pulpy|nonwoody (similar term)
+squat|8
+(adj)|chunky|dumpy|low-set|squatty|stumpy|short (similar term)
+(adj)|underslung|low (similar term)
+(noun)|knee bend|squatting|leg exercise (generic term)
+(noun)|jack|doodly-squat|diddly-squat|diddlysquat|diddly-shit|diddlyshit|diddly|diddley|shit|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|squatting|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|crouch|scrunch|scrunch up|hunker|hunker down|sit (generic term)|sit down (generic term)
+(verb)|be (generic term)
+(verb)|occupy (generic term)|reside (generic term)|lodge in (generic term)
+squatina|1
+(noun)|Squatina|genus Squatina|fish genus (generic term)
+squatina squatina|1
+(noun)|angel shark|angelfish|Squatina squatina|monkfish|shark (generic term)
+squatinidae|1
+(noun)|Squatinidae|family Squatinidae|fish family (generic term)
+squatness|1
+(noun)|stubbiness|lowness (generic term)
+squatter|2
+(noun)|homesteader|nester|settler (generic term)|colonist (generic term)
+(noun)|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+squattiness|1
+(noun)|dumpiness|physique (generic term)|build (generic term)|body-build (generic term)|habitus (generic term)
+squatting|2
+(noun)|knee bend|squat|leg exercise (generic term)
+(noun)|squat|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+squatty|1
+(adj)|chunky|dumpy|low-set|squat|stumpy|short (similar term)
+squaw|1
+(noun)|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+squaw-bush|1
+(noun)|squawbush|skunkbush|Rhus trilobata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+squaw corn|1
+(noun)|soft corn|flour corn|Zea mays amylacea|field corn (generic term)
+squaw grass|1
+(noun)|bear grass|Xerophyllum tenax|liliaceous plant (generic term)
+squaw huckleberry|1
+(noun)|deerberry|Vaccinium stamineum|blueberry (generic term)|blueberry bush (generic term)
+squaw man|1
+(noun)|white man (generic term)
+squaw root|1
+(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squawroot|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+squawbush|1
+(noun)|squaw-bush|skunkbush|Rhus trilobata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+squawk|4
+(noun)|noise (generic term)
+(noun)|gripe|kick|beef|bitch|objection (generic term)
+(verb)|screak|skreak|skreigh|screech|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|gripe|grouse|crab|beef|bellyache|holler|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+squawk box|1
+(noun)|squawker|intercom speaker|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+squawker|2
+(noun)|whiner|complainer|moaner|sniveller|crybaby|bellyacher|grumbler|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|squawk box|intercom speaker|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+squawky|1
+(adj)|cackly|cacophonous (similar term)|cacophonic (similar term)
+squawroot|1
+(noun)|blue cohosh|blueberry root|papooseroot|papoose root|squaw root|Caulophyllum thalictrioides|Caulophyllum thalictroides|shrub (generic term)|bush (generic term)
+squeak|3
+(noun)|noise (generic term)
+(noun)|close call|close shave|squeaker|narrow escape|accomplishment (generic term)|achievement (generic term)
+(verb)|screech|creak|screak|skreak|make noise (generic term)|resound (generic term)|noise (generic term)
+squeak by|2
+(verb)|scrape along|scrape by|scratch along|squeeze by|rub along|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+(verb)|squeak through|pass (generic term)|go through (generic term)|go across (generic term)
+squeak through|1
+(verb)|squeak by|pass (generic term)|go through (generic term)|go across (generic term)
+squeaker|2
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|close call|close shave|squeak|narrow escape|accomplishment (generic term)|achievement (generic term)
+squeaking|1
+(adj)|screaky|screechy|squeaky|squealing|high (similar term)|high-pitched (similar term)
+squeaky|1
+(adj)|screaky|screechy|squeaking|squealing|high (similar term)|high-pitched (similar term)
+squeal|3
+(noun)|howl (generic term)
+(verb)|oink|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|confess|shrive|fink|admit (generic term)|acknowledge (generic term)
+squealer|2
+(noun)|informer|betrayer|rat|blabber|informant (generic term)|source (generic term)
+(noun)|hog|pig|grunter|Sus scrofa|swine (generic term)
+squealing|1
+(adj)|screaky|screechy|squeaking|squeaky|high (similar term)|high-pitched (similar term)
+squeamish|1
+(adj)|dainty|nice|overnice|prissy|fastidious (similar term)
+squeamishness|2
+(noun)|queasiness|qualm|nausea (generic term)|sickness (generic term)
+(noun)|fastidiousness (generic term)
+squeegee|2
+(noun)|cleaning implement (generic term)
+(verb)|wipe (generic term)|pass over (generic term)
+squeezability|1
+(noun)|compressibility|sponginess|softness (generic term)|incompressibility (antonym)
+squeezable|1
+(adj)|compressible|soft (similar term)
+squeeze|17
+(noun)|squeezing|compression (generic term)|compressing (generic term)
+(noun)|credit crunch|liquidity crisis|financial condition (generic term)|economic condition (generic term)
+(noun)|loss (generic term)|red ink (generic term)|red (generic term)
+(noun)|lover (generic term)
+(noun)|wring|movement (generic term)|motion (generic term)
+(noun)|power play|squeeze play|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|hug|clinch|embrace (generic term)|embracing (generic term)|embracement (generic term)
+(noun)|constriction (generic term)
+(verb)|squash|crush|squelch|mash|press (generic term)
+(verb)|press (generic term)|squeeze out (related term)|squeeze out (related term)|squeeze out (related term)
+(verb)|wedge|force|move (generic term)|displace (generic term)
+(verb)|coerce|hale|pressure|force|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|extort|rack|gouge|wring|overcharge (generic term)|soak (generic term)|surcharge (generic term)|gazump (generic term)|fleece (generic term)|plume (generic term)|pluck (generic term)|rob (generic term)|hook (generic term)
+(verb)|thrust|stuff|shove|push (generic term)|force (generic term)
+(verb)|pinch|twinge|tweet|nip|twitch|grip (generic term)
+(verb)|embrace|hug|bosom|clasp (generic term)
+(verb)|compress|constrict|compact|contract|press|tighten (generic term)
+squeeze box|1
+(noun)|accordion|piano accordion|free-reed instrument (generic term)
+squeeze by|1
+(verb)|scrape along|scrape by|scratch along|squeak by|rub along|cope (generic term)|get by (generic term)|make out (generic term)|make do (generic term)|contend (generic term)|grapple (generic term)|deal (generic term)|manage (generic term)
+squeeze for|1
+(verb)|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+squeeze out|6
+(verb)|fire (generic term)|give notice (generic term)|can (generic term)|dismiss (generic term)|give the axe (generic term)|send away (generic term)|sack (generic term)|force out (generic term)|give the sack (generic term)|terminate (generic term)
+(verb)|eke out|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|wring out|extract (generic term)|pull out (generic term)|pull (generic term)|pull up (generic term)|take out (generic term)|draw out (generic term)
+(verb)|eke out|obtain (generic term)
+(verb)|extrude|produce (generic term)|make (generic term)|create (generic term)
+(verb)|squirt|force out|eject|discharge (generic term)
+squeeze play|2
+(noun)|power play|squeeze|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|baseball play (generic term)
+squeezer|1
+(noun)|kitchen utensil (generic term)
+squeezing|1
+(noun)|squeeze|compression (generic term)|compressing (generic term)
+squelch|6
+(noun)|put-down|squelcher|takedown|derision (generic term)
+(noun)|squelch circuit|squelcher|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(verb)|quell|quench|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|squish|splash|splosh|slosh|slop|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|squash|crush|mash|squeeze|press (generic term)
+squelch circuit|1
+(noun)|squelch|squelcher|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+squelched|1
+(adj)|quelled|quenched|suppressed (similar term)
+squelcher|2
+(noun)|put-down|squelch|takedown|derision (generic term)
+(noun)|squelch circuit|squelch|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+squib|1
+(noun)|firework (generic term)|pyrotechnic (generic term)
+squid|2
+(noun)|calamari|calamary|seafood (generic term)
+(noun)|decapod (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+squiggle|2
+(noun)|curlicue|line (generic term)
+(noun)|scribble (generic term)|scratch (generic term)|scrawl (generic term)|cacography (generic term)
+squiggly|1
+(adj)|crooked (similar term)
+squill|3
+(noun)|bulb (generic term)
+(noun)|sea squill|sea onion|Urginea maritima|liliaceous plant (generic term)
+(noun)|scilla|liliaceous plant (generic term)
+squilla|1
+(noun)|mantis prawn|mantis shrimp (generic term)|mantis crab (generic term)
+squillidae|1
+(noun)|Squillidae|family Squillidae|arthropod family (generic term)
+squinch|4
+(noun)|arch (generic term)
+(verb)|crouch (generic term)|stoop (generic term)|bend (generic term)|bow (generic term)
+(verb)|flinch|funk|cringe|shrink|wince|recoil|quail|move (generic term)
+(verb)|squint|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+squinched|1
+(adj)|squinting|closed (similar term)|shut (similar term)
+squint|5
+(adj)|askance|askant|asquint|squint-eyed|squinty|sidelong|indirect (similar term)
+(noun)|strabismus|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|squinch|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+(verb)|look (generic term)
+squint-eye|1
+(noun)|squinter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+squint-eyed|2
+(adj)|abnormality|abnormalcy|abnormal condition (related term)
+(adj)|askance|askant|asquint|squint|squinty|sidelong|indirect (similar term)
+squinter|1
+(noun)|squint-eye|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+squinting|1
+(adj)|squinched|closed (similar term)|shut (similar term)
+squinty|2
+(adj)|look|looking|looking at (related term)
+(adj)|askance|askant|asquint|squint|squint-eyed|sidelong|indirect (similar term)
+squire|4
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|landowner (generic term)|landholder (generic term)|property owner (generic term)
+(noun)|gallant|attendant (generic term)|attender (generic term)|tender (generic term)
+(verb)|escort (generic term)
+squirearchy|1
+(noun)|landed gentry|gentry (generic term)|aristocracy (generic term)
+squirm|2
+(noun)|wiggle|wriggle|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|writhe|wrestle|wriggle|worm|twist|move (generic term)
+squirmer|1
+(noun)|wiggler|wriggler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+squirming|1
+(adj)|twisting|wiggling|wiggly|wriggling|wriggly|writhing|moving (similar term)
+squirrel|2
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+(noun)|fur (generic term)|pelt (generic term)
+squirrel's-foot fern|1
+(noun)|ball fern|Davalia bullata|Davalia bullata mariesii|Davallia Mariesii|davallia (generic term)
+squirrel-like|1
+(adj)|animal (similar term)
+squirrel-sized|1
+(adj)|sized (similar term)
+squirrel away|1
+(verb)|hoard|stash|cache|lay away|hive up|save (generic term)|lay aside (generic term)|save up (generic term)
+squirrel cage|1
+(noun)|cage (generic term)|coop (generic term)
+squirrel corn|1
+(noun)|Dicentra canadensis|herb (generic term)|herbaceous plant (generic term)
+squirrel monkey|1
+(noun)|Saimiri sciureus|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+squirrelfish|2
+(noun)|pinfish|sailor's-choice|Lagodon rhomboides|sparid (generic term)|sparid fish (generic term)
+(noun)|spiny-finned fish (generic term)|acanthopterygian (generic term)
+squirreltail barley|1
+(noun)|foxtail barley|squirreltail grass|Hordeum jubatum|barley (generic term)
+squirreltail grass|1
+(noun)|squirreltail barley|foxtail barley|Hordeum jubatum|barley (generic term)
+squirt|4
+(noun)|pip-squeak|small fry|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+(noun)|jet|spurt|spirt|discharge (generic term)|outpouring (generic term)|run (generic term)
+(verb)|force out|squeeze out|eject|discharge (generic term)
+(verb)|wet (generic term)
+squirt gun|1
+(noun)|water pistol|water gun|squirter|plaything (generic term)|toy (generic term)
+squirter|1
+(noun)|water pistol|water gun|squirt gun|plaything (generic term)|toy (generic term)
+squirting|1
+(adj)|jetting|spouting|spurting|running (similar term)
+squirting cucumber|1
+(noun)|exploding cucumber|touch-me-not|Ecballium elaterium|gourd (generic term)|gourd vine (generic term)
+squish|3
+(noun)|noise (generic term)
+(verb)|squelch|splash|splosh|slosh|slop|slog (generic term)|footslog (generic term)|plod (generic term)|trudge (generic term)|pad (generic term)|tramp (generic term)
+(verb)|squirt (generic term)
+squishy|1
+(adj)|spongy|squashy|spongelike|soft (similar term)
+sr|2
+(noun)|strontium|Sr|atomic number 38|metallic element (generic term)|metal (generic term)
+(noun)|steradian|angular unit (generic term)
+sr.|1
+(adj)|elder|older|senior (similar term)
+sravana|1
+(noun)|Sawan|Sravana|Hindu calendar month (generic term)
+srbija|1
+(noun)|Serbia|Srbija|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sri frederick handley page|1
+(noun)|Page|Sri Frederick Handley Page|industrialist (generic term)
+sri lanka|1
+(noun)|Sri Lanka|Democratic Socialist Republic of Sri Lanka|Ceylon|country (generic term)|state (generic term)|land (generic term)
+sri lanka rupee|1
+(noun)|Sri Lanka rupee|rupee|Sri Lankan monetary unit (generic term)
+sri lankan|2
+(adj)|Sri Lankan|Ceylonese|island (related term)
+(noun)|Sri Lankan|Asian (generic term)|Asiatic (generic term)
+sri lankan monetary unit|1
+(noun)|Sri Lankan monetary unit|monetary unit (generic term)
+ss|2
+(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency (generic term)
+(noun)|Schutzstaffel|SS|police (generic term)|police force (generic term)|constabulary (generic term)|law (generic term)
+ssa|1
+(noun)|Social Security Administration|SSA|independent agency (generic term)
+sse|1
+(noun)|south southeast|sou'-sou'-east|SSE|compass point (generic term)|point (generic term)
+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 (generic term)
+ssri|1
+(noun)|selective-serotonin reuptake inhibitor|SSRI|antidepressant (generic term)|antidepressant drug (generic term)
+sss|1
+(noun)|Selective Service|Selective Service System|SSS|independent agency (generic term)
+ssw|1
+(noun)|south southwest|sou'-sou'-west|SSW|compass point (generic term)|point (generic term)
+st.-bruno's-lily|1
+(noun)|St.-Bruno's-lily|Paradisea liliastrum|spiderwort (generic term)|dayflower (generic term)
+st. ambrose|1
+(noun)|Ambrose|Saint Ambrose|St. Ambrose|bishop (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|composer (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. andrew|1
+(noun)|Andrew|Saint Andrew|St. Andrew|Saint Andrew the Apostle|Apostle (generic term)|saint (generic term)
+st. andrew's cross|1
+(noun)|St. Andrew's cross|saltire|Cross (generic term)
+st. anselm|1
+(noun)|Anselm|Saint Anselm|St. Anselm|archbishop (generic term)|saint (generic term)
+st. anthony's cross|1
+(noun)|tau cross|St. Anthony's cross|Cross (generic term)
+st. athanasius|1
+(noun)|Athanasius|Saint Athanasius|St. Athanasius|Athanasius the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. augustine|2
+(noun)|Augustine|Saint Augustine|St. Augustine|Augustine of Hippo|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+(noun)|St. Augustine|Saint Augustine|city (generic term)|metropolis (generic term)|urban center (generic term)
+st. augustine grass|1
+(noun)|St. Augustine grass|Stenotaphrum secundatum|buffalo grass|grass (generic term)
+st. baeda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+st. barbara's herb|1
+(noun)|winter cress|St. Barbara's herb|scurvy grass|cress (generic term)|cress plant (generic term)
+st. basil|1
+(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. basil the great|1
+(noun)|Basil|St. Basil|Basil of Caesarea|Basil the Great|St. Basil the Great|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. beda|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+st. bede|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+st. benedict|1
+(noun)|Benedict|Saint Benedict|St. Benedict|monk (generic term)|monastic (generic term)|saint (generic term)
+st. boniface|1
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+st. bride|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+st. bridget|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+st. brigid|1
+(noun)|Bridget|Saint Bridget|St. Bridget|Brigid|Saint Brigid|St. Brigid|Bride|Saint Bride|St. Bride|abbess (generic term)|mother superior (generic term)|prioress (generic term)|saint (generic term)
+st. bruno|1
+(noun)|Bruno|Saint Bruno|St. Bruno|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)|saint (generic term)
+st. christopher|2
+(noun)|Christopher|Saint Christopher|St. Christopher|patron saint (generic term)
+(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+st. cloud|1
+(noun)|Saint Cloud|St. Cloud|town (generic term)
+st. crispin|1
+(noun)|Crispin|Saint Crispin|St. Crispin|patron saint (generic term)
+st. dabeoc's heath|1
+(noun)|Connemara heath|St. Dabeoc's heath|Daboecia cantabrica|heath (generic term)
+st. david|1
+(noun)|David|Saint David|St. David|patron saint (generic term)
+st. denis|1
+(noun)|St. Denis|Saint Denis|Ruth Saint Denis|Ruth St. Denis|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+st. dominic|1
+(noun)|Dominic|Saint Dominic|St. Dominic|Domingo de Guzman|priest (generic term)|saint (generic term)
+st. edward the confessor|1
+(noun)|Edward the Confessor|Saint Edward the Confessor|St. Edward the Confessor|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+st. edward the martyr|1
+(noun)|Edward the Martyr|Saint Edward the Martyr|St. Edward the Martyr|King of England (generic term)|King of Great Britain (generic term)|saint (generic term)
+st. elias mountains|1
+(noun)|St. Elias Range|St. Elias Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+st. elias range|1
+(noun)|St. Elias Range|St. Elias Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+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 (generic term)|spark (generic term)|arc (generic term)|electric arc (generic term)|electric discharge (generic term)
+st. eustatius|1
+(noun)|Saint Eustatius|St. Eustatius|island (generic term)
+st. francis|2
+(noun)|Francis of Assisi|Saint Francis of Assisi|St. Francis of Assisi|Saint Francis|St. Francis|Giovanni di Bernardone|saint (generic term)
+(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river (generic term)
+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 (generic term)
+st. francis river|1
+(noun)|Saint Francis|Saint Francis River|St. Francis|St. Francis River|river (generic term)
+st. george|1
+(noun)|George|Saint George|St. George|martyr (generic term)|patron saint (generic term)
+st. george's|1
+(noun)|St. George's|capital of Grenada|national capital (generic term)
+st. gregory i|1
+(noun)|Gregory|Gregory I|Saint Gregory I|St. Gregory I|Gregory the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. gregory of nazianzen|1
+(noun)|Gregory|Gregory Nazianzen|Gregory of Nazianzen|St. Gregory of Nazianzen|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. ignatius|1
+(noun)|Ignatius|Saint Ignatius|St. Ignatius|bishop (generic term)|saint (generic term)
+st. ignatius of loyola|1
+(noun)|Ignatius of Loyola|Saint Ignatius of Loyola|St. Ignatius of Loyola|Loyola|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)
+st. irenaeus|1
+(noun)|Irenaeus|Saint Irenaeus|St. Irenaeus|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. james|1
+(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle (generic term)|saint (generic term)
+st. james the apostle|1
+(noun)|James|Saint James|St. James|Saint James the Apostle|St. James the Apostle|Apostle (generic term)|saint (generic term)
+st. jerome|1
+(noun)|Jerome|Saint Jerome|St. Jerome|Hieronymus|Eusebius Hieronymus|Eusebius Sophronius Hieronymus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. john|3
+(noun)|John|Saint John|St. John|Saint John the Apostle|St. John the Apostle|John the Evangelist|John the Divine|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+(noun)|Saint John|Saint John River|St. John|St. John River|river (generic term)
+(noun)|Saint John|St. John|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+st. john's|2
+(noun)|Saint John's|St. John's|provincial capital (generic term)|port (generic term)
+(noun)|St. John's|Saint John's|capital of Antigua and Barbuda|national capital (generic term)
+st. john chrysostom|1
+(noun)|John Chrysostom|St. John Chrysostom|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|preacher (generic term)|preacher man (generic term)|sermonizer (generic term)|sermoniser (generic term)|Church Father (generic term)|Father of the Church (generic term)|Father (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. john river|1
+(noun)|Saint John|Saint John River|St. John|St. John River|river (generic term)
+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 (generic term)|Evangelist (generic term)|saint (generic term)
+st. john the baptist|1
+(noun)|John the Baptist|St. John the Baptist|hermit (generic term)|recluse (generic term)|solitary (generic term)|solitudinarian (generic term)|troglodyte (generic term)|saint (generic term)
+st. johns|1
+(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river (generic term)
+st. johns river|1
+(noun)|Saint Johns|Saint Johns River|St. Johns|St. Johns River|river (generic term)
+st. joseph|2
+(noun)|Saint Joseph|St. Joseph|town (generic term)
+(noun)|aspirin|acetylsalicylic acid|Bayer|Empirin|St. Joseph|salicylate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+st. jude|1
+(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle (generic term)|saint (generic term)
+st. kitts|1
+(noun)|Saint Christopher|St. Christopher|Saint Kitts|St. Kitts|island (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+st. lawrence|2
+(noun)|Lawrence|Saint Lawrence|St. Lawrence|Laurentius|martyr (generic term)|saint (generic term)
+(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river (generic term)
+st. lawrence river|1
+(noun)|Saint Lawrence|Saint Lawrence River|St. Lawrence|St. Lawrence River|river (generic term)
+st. lawrence seaway|1
+(noun)|Saint Lawrence Seaway|St. Lawrence Seaway|seaway (generic term)|sea lane (generic term)|ship route (generic term)|trade route (generic term)
+st. leo i|1
+(noun)|Leo I|St. Leo I|Leo the Great|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)|saint (generic term)
+st. louis|2
+(noun)|Saint Louis|St. Louis|Gateway to the West|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|Louis IX|Saint Louis|St. Louis|King of France (generic term)|saint (generic term)
+st. lucia|2
+(noun)|Saint Lucia|St. Lucia|country (generic term)|state (generic term)|land (generic term)
+(noun)|Saint Lucia|St. Lucia|island (generic term)
+st. luke|1
+(noun)|Luke|Saint Luke|St. Luke|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+st. maarten|1
+(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island (generic term)
+st. mark|1
+(noun)|Mark|Saint Mark|St. Mark|Apostle (generic term)|Apostelic Father (generic term)|Evangelist (generic term)|saint (generic term)
+st. martin|2
+(noun)|Martin|St. Martin|bishop (generic term)|saint (generic term)
+(noun)|Saint Martin|St. Martin|Saint Maarten|St. Maarten|island (generic term)
+st. mary magdalen|1
+(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner (generic term)|evildoer (generic term)|saint (generic term)
+st. mary magdalene|1
+(noun)|Mary Magdalene|St. Mary Magdalene|Mary Magdalen|St. Mary Magdalen|sinner (generic term)|evildoer (generic term)|saint (generic term)
+st. mary of bethlehem|1
+(noun)|Belem|Para|Feliz Lusitania|Santa Maria de Belem|St. Mary of Bethlehem|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+st. matthew|1
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+st. matthew the apostle|1
+(noun)|Matthew|Saint Matthew|St. Matthew|Saint Matthew the Apostle|St. Matthew the Apostle|Levi|Apostle (generic term)|Evangelist (generic term)|saint (generic term)
+st. nicholas|1
+(noun)|Nicholas|Saint Nicholas|St. Nicholas|bishop (generic term)|saint (generic term)
+st. nick|1
+(noun)|Santa Claus|Santa|Kriss Kringle|Father Christmas|Saint Nick|St. Nick|patron saint (generic term)
+st. olaf|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+st. olav|1
+(noun)|Olaf II|Olav II|Saint Olaf|Saint Olav|St. Olaf|St. Olav|king (generic term)|male monarch (generic term)|Rex (generic term)|saint (generic term)
+st. patrick|1
+(noun)|Patrick|Saint Patrick|St. Patrick|Apostle (generic term)|Apostelic Father (generic term)|patron saint (generic term)
+st. paul|2
+(noun)|Saint Paul|St. Paul|capital of Minnesota|state capital (generic term)
+(noun)|Paul|Saint Paul|St. Paul|Apostle Paul|Paul the Apostle|Apostle of the Gentiles|Saul|Saul of Tarsus|Apostle (generic term)|Apostelic Father (generic term)|missionary (generic term)|missioner (generic term)|saint (generic term)
+st. peter|1
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+st. peter's wreath|1
+(noun)|bridal wreath|bridal-wreath|Saint Peter's wreath|St. Peter's wreath|Spiraea prunifolia|spirea (generic term)|spiraea (generic term)
+st. peter the apostle|1
+(noun)|Peter|Simon Peter|Saint Peter|St. Peter|Saint Peter the Apostle|St. Peter the Apostle|Apostle (generic term)|saint (generic term)
+st. petersburg|2
+(noun)|St. Petersburg|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|St. Petersburg|Leningrad|Peterburg|Petrograd|Saint Petersburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+st. polycarp|1
+(noun)|Polycarp|Saint Polycarp|St. Polycarp|martyr (generic term)
+st. simon|1
+(noun)|Simon|St. Simon|Simon Zelotes|Simon the Zealot|Simon the Canaanite|Apostle (generic term)|saint (generic term)
+st. thomas|2
+(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle (generic term)|saint (generic term)
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. thomas a becket|1
+(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop (generic term)|martyr (generic term)|saint (generic term)
+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 (generic term)|state (generic term)|land (generic term)
+st. thomas aquinas|1
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+st. vincent|1
+(noun)|Saint Vincent|St. Vincent|island (generic term)
+st. vincent and the grenadines|1
+(noun)|Saint Vincent and the Grenadines|St. Vincent and the Grenadines|country (generic term)|state (generic term)|land (generic term)
+st. vitus|1
+(noun)|Vitus|St. Vitus|martyr (generic term)|saint (generic term)
+st. vitus dance|1
+(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea (generic term)
+st andrews's cross|1
+(noun)|St Andrews's cross|Hypericum crux andrae|St John's wort (generic term)
+st bernard|1
+(noun)|Saint Bernard|St Bernard|working dog (generic term)
+st john's day|1
+(noun)|Midsummer Day|Midsummer's Day|St John's Day|June 24|quarter day (generic term)
+st john's eve|1
+(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day (generic term)
+st john's night|1
+(noun)|Midsummer Eve|Midsummer Night|St John's Eve|St John's Night|June 23|day (generic term)
+st john's wort|1
+(noun)|St John's wort|subshrub (generic term)|suffrutex (generic term)
+st john's wort family|1
+(noun)|Guttiferae|family Guttiferae|Clusiaceae|family Clusiaceae|St John's wort family|dilleniid dicot family (generic term)
+st joseph|1
+(noun)|Saint Joseph|St Joseph|March 19|Christian holy day (generic term)
+st martin's day|1
+(noun)|Martinmas|St Martin's Day|11 November|quarter day (generic term)
+st mihiel|1
+(noun)|Saint-Mihiel|St Mihiel|battle of St Mihiel|pitched battle (generic term)
+st patrick's day|1
+(noun)|St Patrick's Day|Saint Patrick's Day|March 17|day (generic term)
+st peter's wort|1
+(noun)|St Peter's wort|Hypericum tetrapterum|Hypericum maculatum|St John's wort (generic term)
+st valentine's day|1
+(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day (generic term)
+stab|6
+(noun)|pang|twinge|feeling (generic term)
+(noun)|thrust|knife thrust|blow (generic term)
+(noun)|shot|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(verb)|knife|injure (generic term)|wound (generic term)
+(verb)|jab|thrust (generic term)
+(verb)|jab|prod|poke|dig|thrust (generic term)
+stabbed|1
+(adj)|injured (similar term)
+stabber|1
+(noun)|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+stabbing|2
+(adj)|wounding|harmful (similar term)
+(adj)|cutting|keen|knifelike|piercing|lancinate|lancinating|sharp (similar term)
+stabile|3
+(adj)|stable (similar term)
+(adj)|immovable|immoveable|unmovable|immobile (similar term)
+(noun)|sculpture (generic term)|mobile (antonym)
+stabilisation|2
+(noun)|stabilization|improvement (generic term)
+(noun)|stabilization|standardization (generic term)|standardisation (generic term)|normalization (generic term)|normalisation (generic term)|destabilisation (antonym)|destabilization (antonym)
+stabilise|3
+(verb)|brace|steady|stabilize|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|stabilize|change (generic term)|destabilize (antonym)|destabilise (antonym)
+(verb)|stabilize|change (generic term)|alter (generic term)|modify (generic term)|destabilise (antonym)|destabilize (antonym)
+stabilised|1
+(adj)|stabilized|stable (similar term)
+stabiliser|1
+(noun)|stabilizer|device (generic term)
+stabilising|1
+(adj)|stabilizing|helpful (similar term)
+stability|3
+(noun)|stableness|steadiness (generic term)|firmness (generic term)|unstableness (antonym)|instability (antonym)
+(noun)|order (generic term)|instability (antonym)
+(noun)|constancy|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|inconstancy (antonym)
+stabilization|2
+(noun)|stabilisation|standardization (generic term)|standardisation (generic term)|normalization (generic term)|normalisation (generic term)|destabilisation (antonym)|destabilization (antonym)
+(noun)|stabilisation|improvement (generic term)
+stabilize|3
+(verb)|stabilise|change (generic term)|alter (generic term)|modify (generic term)|destabilise (antonym)|destabilize (antonym)
+(verb)|brace|steady|stabilise|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(verb)|stabilise|change (generic term)|destabilize (antonym)|destabilise (antonym)
+stabilized|1
+(adj)|stabilised|stable (similar term)
+stabilizer|3
+(noun)|chemical (generic term)|chemical substance (generic term)
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+(noun)|stabiliser|device (generic term)
+stabilizer bar|1
+(noun)|anti-sway bar|bar (generic term)|stabilizer (generic term)|stabiliser (generic term)
+stabilizing|1
+(adj)|stabilising|helpful (similar term)
+stable|7
+(adj)|firm (similar term)|steady (similar term)|unfluctuating (similar term)|lasting (similar term)|stabile (similar term)|stabilized (similar term)|stabilised (similar term)|constant (related term)|permanent (related term)|lasting (related term)|steady (related term)|unstable (antonym)
+(adj)|sound (similar term)
+(adj)|unreactive (similar term)
+(adj)|balanced (similar term)
+(adj)|static|unchanging|unchangeable (similar term)
+(noun)|stalls|horse barn|farm building (generic term)
+(verb)|shelter (generic term)
+stable companion|1
+(noun)|stablemate|horse (generic term)|Equus caballus (generic term)
+stable factor|1
+(noun)|proconvertin|cothromboplastin|factor VII|coagulation factor (generic term)|clotting factor (generic term)
+stable gear|1
+(noun)|saddlery|tack|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+stableboy|1
+(noun)|stableman|groom|hostler|ostler|hired hand (generic term)|hand (generic term)|hired man (generic term)
+stableman|1
+(noun)|stableboy|groom|hostler|ostler|hired hand (generic term)|hand (generic term)|hired man (generic term)
+stablemate|1
+(noun)|stable companion|horse (generic term)|Equus caballus (generic term)
+stableness|1
+(noun)|stability|steadiness (generic term)|firmness (generic term)|unstableness (antonym)|instability (antonym)
+stabling|1
+(noun)|accommodation (generic term)
+stabroek|1
+(noun)|Georgetown|Stabroek|national capital (generic term)|port (generic term)
+staccato|2
+(adj)|disconnected|abrupt (similar term)|disconnected (similar term)|legato (antonym)
+(adv)|legato (antonym)
+stachyose|1
+(noun)|tetrasaccharide (generic term)
+stachys|1
+(noun)|Stachys|genus Stachys|asterid dicot genus (generic term)
+stachys palustris|1
+(noun)|hedge nettle|Stachys palustris|herb (generic term)|herbaceous plant (generic term)
+stachys sylvatica|1
+(noun)|hedge nettle|dead nettle|Stachys sylvatica|herb (generic term)|herbaceous plant (generic term)
+stack|8
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|push-down list|push-down stack|list (generic term)|listing (generic term)
+(noun)|smokestack|chimney (generic term)
+(noun)|push-down storage|push-down store|memory device (generic term)|storage device (generic term)
+(verb)|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)|stack away (related term)
+(verb)|pile|heap|arrange (generic term)|set up (generic term)|heap up (related term)|pile up (related term)|stack up (related term)
+(verb)|arrange (generic term)|set up (generic term)
+stack away|1
+(verb)|store|hive away|lay in|put in|salt away|stash away|keep (generic term)|hold on (generic term)
+stack up|1
+(verb)|pile up|heap up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+stacked|1
+(adj)|built|well-stacked|shapely (similar term)
+stacked heel|1
+(noun)|heel (generic term)
+stacker|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+stacks|2
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|storage space (generic term)
+stacte|1
+(noun)|spice (generic term)
+staddle|1
+(noun)|base (generic term)|pedestal (generic term)|stand (generic term)
+stadium|1
+(noun)|bowl|arena|sports stadium|structure (generic term)|construction (generic term)
+stadium jumping|1
+(noun)|showjumping|equestrian sport (generic term)
+stael|1
+(noun)|Stael|Madame de Stael|Baronne Anne Louise Germaine Necker de Steal-Holstein|writer (generic term)|author (generic term)
+staff|8
+(noun)|force (generic term)|personnel (generic term)
+(noun)|faculty|body (generic term)
+(noun)|stick (generic term)
+(noun)|building material (generic term)
+(noun)|symbol (generic term)
+(noun)|stave|musical notation (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|serve (generic term)
+staff-tree family|1
+(noun)|Celastraceae|family Celastraceae|spindle-tree family|dicot family (generic term)|magnoliopsid family (generic term)
+staff line|1
+(noun)|line (generic term)
+staff member|1
+(noun)|staffer|employee (generic term)
+staff of life|1
+(noun)|bread|breadstuff|baked goods (generic term)
+staff office|1
+(noun)|personnel department|personnel office|personnel|department (generic term)|section (generic term)
+staff officer|1
+(noun)|commissioned officer (generic term)
+staff sergeant|1
+(noun)|sergeant (generic term)
+staff tree|1
+(noun)|shrub (generic term)|bush (generic term)
+staff vine|1
+(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|waxwork|shrubby bittersweet|Celastrus scandens|vine (generic term)
+staffa|1
+(noun)|Staffa|island (generic term)
+staffer|1
+(noun)|staff member|employee (generic term)
+staffordshire bull terrier|1
+(noun)|Staffordshire bullterrier|Staffordshire bull terrier|bullterrier (generic term)|bull terrier (generic term)
+staffordshire bullterrier|1
+(noun)|Staffordshire bullterrier|Staffordshire bull terrier|bullterrier (generic term)|bull terrier (generic term)
+staffordshire terrier|1
+(noun)|American Staffordshire terrier|Staffordshire terrier|American pit bull terrier|pit bull terrier|bullterrier (generic term)|bull terrier (generic term)
+stag|4
+(noun)|hart|red deer (generic term)|Cervus elaphus (generic term)
+(noun)|buck (generic term)
+(verb)|denounce|tell on|betray|give away|rat|grass|shit|shop|snitch|inform (generic term)
+(verb)|spy|snoop|sleuth|monitor (generic term)|supervise (generic term)|ride herd on (generic term)
+stag's-horn coral|1
+(noun)|staghorn coral|stony coral (generic term)|madrepore (generic term)|madriporian coral (generic term)
+stag's garlic|1
+(noun)|crow garlic|false garlic|field garlic|wild garlic|Allium vineale|wild onion (generic term)
+stag beetle|1
+(noun)|lamellicorn beetle (generic term)
+stag party|1
+(noun)|smoker|party (generic term)
+stage|10
+(noun)|phase|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|degree|level|point|state (generic term)
+(noun)|platform (generic term)
+(noun)|dramaturgy (generic term)|dramatic art (generic term)|dramatics (generic term)|theater (generic term)|theatre (generic term)
+(noun)|scene (generic term)
+(noun)|stagecoach|coach (generic term)|four-in-hand (generic term)|coach-and-four (generic term)
+(noun)|leg|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|microscope stage|platform (generic term)
+(verb)|present|represent|re-create (generic term)
+(verb)|arrange|initiate (generic term)|pioneer (generic term)
+stage-struck|1
+(adj)|affected (similar term)
+stage business|1
+(noun)|business|byplay|acting (generic term)|playing (generic term)|playacting (generic term)|performing (generic term)
+stage crew|1
+(noun)|gang (generic term)|crew (generic term)|work party (generic term)
+stage dancing|1
+(noun)|choreography|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)|show (generic term)
+stage direct|1
+(verb)|direct (generic term)
+stage direction|1
+(noun)|direction (generic term)|instruction (generic term)
+stage director|1
+(noun)|director (generic term)|theater director (generic term)|theatre director (generic term)
+stage door|1
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+stage effect|1
+(noun)|special effect (generic term)
+stage fright|1
+(noun)|fear (generic term)|fearfulness (generic term)|fright (generic term)
+stage left|1
+(noun)|left stage|left (generic term)
+stage manager|1
+(noun)|stager|supervisor (generic term)
+stage name|1
+(noun)|pseudonym (generic term)|anonym (generic term)|nom de guerre (generic term)
+stage right|1
+(noun)|right stage|right (generic term)
+stage set|1
+(noun)|set|representation (generic term)
+stage setting|1
+(noun)|mise en scene|setting|stage (generic term)
+stage technician|1
+(noun)|stagehand|employee (generic term)
+stage whisper|1
+(noun)|whisper (generic term)|whispering (generic term)|susurration (generic term)|voicelessness (generic term)
+stagecoach|1
+(noun)|stage|coach (generic term)|four-in-hand (generic term)|coach-and-four (generic term)
+stagecraft|1
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+staged|2
+(adj)|arranged|artificial (similar term)|unreal (similar term)
+(adj)|unstaged (antonym)
+stagehand|1
+(noun)|stage technician|employee (generic term)
+stager|2
+(noun)|stage manager|supervisor (generic term)
+(noun)|veteran|old-timer|oldtimer|old hand|warhorse|old stager|expert (generic term)
+stagey|1
+(adj)|stagy|theatrical (similar term)
+stagflation|1
+(noun)|inflation (generic term)|rising prices (generic term)
+stagflationary|1
+(adj)|inflation|rising prices (related term)
+stagger|5
+(noun)|lurch|stumble|gait (generic term)
+(verb)|reel|keel|lurch|swag|careen|walk (generic term)
+(verb)|flounder|walk (generic term)
+(verb)|distribute|arrange (generic term)|set up (generic term)
+(verb)|overwhelm (generic term)|overpower (generic term)|sweep over (generic term)|whelm (generic term)|overcome (generic term)|overtake (generic term)
+stagger bush|1
+(noun)|staggerbush|Lyonia mariana|shrub (generic term)|bush (generic term)
+stagger head|1
+(noun)|dropline|drop line|stepped line|staggered head|stephead|headline (generic term)|newspaper headline (generic term)
+staggerbush|1
+(noun)|stagger bush|Lyonia mariana|shrub (generic term)|bush (generic term)
+staggered board of directors|1
+(noun)|directorate (generic term)|board of directors (generic term)
+staggered head|1
+(noun)|dropline|drop line|stepped line|stagger head|stephead|headline (generic term)|newspaper headline (generic term)
+staggerer|1
+(noun)|totterer|reeler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+staggering|1
+(adj)|astonishing|astounding|stupefying|impressive (similar term)
+staggeringly|1
+(adv)|enormously|tremendously|hugely
+staggers|1
+(noun)|blind staggers|animal disease (generic term)
+staghead|1
+(noun)|witches' broom|witch broom|hexenbesen|tuft (generic term)|tussock (generic term)
+staghorn coral|1
+(noun)|stag's-horn coral|stony coral (generic term)|madrepore (generic term)|madriporian coral (generic term)
+staghorn fern|1
+(noun)|fern (generic term)
+staghorn moss|1
+(noun)|ground cedar|Lycopodium complanatum|ground pine (generic term)|Christmas green (generic term)
+staghorn sumac|1
+(noun)|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+staghound|1
+(noun)|hound (generic term)|hound dog (generic term)
+stagily|1
+(adv)|theatrically
+staginess|1
+(noun)|theatricality|artificiality (generic term)
+staging|4
+(noun)|theatrical production|production (generic term)
+(noun)|scaffolding|system (generic term)
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|discard (generic term)|throwing away (generic term)
+staging area|1
+(noun)|area (generic term)|country (generic term)
+stagira|1
+(noun)|Stagira|Stagirus|town (generic term)
+stagirus|1
+(noun)|Stagira|Stagirus|town (generic term)
+stagnancy|2
+(noun)|stagnation|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|stagnation|doldrums|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+stagnant|2
+(adj)|dead|standing (similar term)
+(adj)|moribund|undynamic (similar term)|adynamic (similar term)
+stagnant anoxia|1
+(noun)|ischemic anoxia|anoxia (generic term)
+stagnant hypoxia|1
+(noun)|ischemic hypoxia|hypoxia (generic term)
+stagnate|3
+(verb)|change (generic term)
+(verb)|be (generic term)
+(verb)|idle|laze|slug|work (antonym)
+stagnation|2
+(noun)|stagnancy|doldrums|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|stagnancy|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+stagy|1
+(adj)|stagey|theatrical (similar term)
+staid|1
+(adj)|sedate|decorous (similar term)
+staidly|1
+(adv)|gravely|soberly
+staidness|1
+(noun)|sedateness|solemnity|solemness|seriousness (generic term)|earnestness (generic term)|serious-mindedness (generic term)|sincerity (generic term)
+stain|8
+(noun)|discoloration|discolouration|appearance (generic term)|visual aspect (generic term)
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+(noun)|dirt|filth|grime|soil|grease|grunge|dirtiness (generic term)|uncleanness (generic term)
+(noun)|mark|stigma|brand|symbol (generic term)
+(noun)|blot|smear|smirch|spot|mistake (generic term)|error (generic term)|fault (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tarnish|maculate|sully|defile|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+(verb)|dye (generic term)
+stainability|1
+(noun)|tendency (generic term)|inclination (generic term)
+stainable|1
+(adj)|tendency|inclination (related term)
+stained|3
+(adj)|discolored (similar term)|discoloured (similar term)|treated (similar term)|unstained (antonym)
+(adj)|varnished|painted (similar term)
+(adj)|besmirched|damaged|flyblown|spotted|sullied|tainted|tarnished|blemished (similar term)
+stained-glass window|1
+(noun)|window (generic term)
+stained glass|1
+(noun)|glass (generic term)
+stainer|1
+(noun)|worker (generic term)
+staining|2
+(noun)|dyeing (generic term)
+(noun)|spotting|maculation|soiling (generic term)|soilure (generic term)|dirtying (generic term)
+stainless|2
+(adj)|unstained|unsullied|untainted|untarnished|unblemished (similar term)
+(noun)|stainless steel|chromium steel|alloy steel (generic term)
+stainless steel|1
+(noun)|stainless|chromium steel|alloy steel (generic term)
+stair|1
+(noun)|step|support (generic term)
+stair-carpet|1
+(noun)|rug (generic term)|carpet (generic term)|carpeting (generic term)
+stair-rod|1
+(noun)|rod (generic term)
+staircase|1
+(noun)|stairway|way (generic term)
+stairhead|1
+(noun)|platform (generic term)
+stairs|1
+(noun)|steps|stairway (generic term)|staircase (generic term)
+stairway|1
+(noun)|staircase|way (generic term)
+stairwell|1
+(noun)|well (generic term)
+staisfise|1
+(verb)|satisfice|act (generic term)|move (generic term)
+stake|9
+(noun)|interest|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(noun)|post|visual signal (generic term)
+(noun)|instrument of execution (generic term)
+(noun)|stakes|bet|wager|gamble (generic term)
+(verb)|venture|hazard|adventure|jeopardize|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+(verb)|bet on|back|gage|game|punt|bet (generic term)|wager (generic term)|play (generic term)
+(verb)|post|mark (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|impale|kill (generic term)
+stake driver|1
+(noun)|American bittern|Botaurus lentiginosus|bittern (generic term)
+stake race|1
+(noun)|horse race (generic term)
+stakeholder|1
+(noun)|neutral (generic term)
+stakeout|1
+(noun)|surveillance (generic term)
+stakes|1
+(noun)|stake|bet|wager|gamble (generic term)
+stalactite|1
+(noun)|cylinder (generic term)
+stalagmite|1
+(noun)|cylinder (generic term)
+stale|4
+(adj)|addled (similar term)|bad (similar term)|spoiled (similar term)|spoilt (similar term)|cold (similar term)|day-old (similar term)|hard (similar term)|flyblown (similar term)|maggoty (similar term)|limp (similar term)|wilted (similar term)|moldy (similar term)|mouldy (similar term)|musty (similar term)|rancid (similar term)|old (related term)|unoriginal (related term)|fresh (antonym)
+(adj)|dusty|moth-eaten|unoriginal (similar term)
+(adj)|cold|old (similar term)
+(verb)|make (generic term)|urinate (generic term)|piddle (generic term)|puddle (generic term)|micturate (generic term)|piss (generic term)|pee (generic term)|pee-pee (generic term)|make water (generic term)|relieve oneself (generic term)|take a leak (generic term)|spend a penny (generic term)|wee (generic term)|wee-wee (generic term)|pass water (generic term)
+stalemate|3
+(noun)|deadlock|dead end|impasse|standstill|situation (generic term)
+(noun)|draw (generic term)|standoff (generic term)|tie (generic term)
+(verb)|move (generic term)|go (generic term)
+stalemated|1
+(adj)|deadlocked|obstructed (similar term)
+staleness|2
+(noun)|triteness|unoriginality (generic term)
+(noun)|oldness (generic term)|freshness (antonym)
+stalin|1
+(noun)|Stalin|Joseph Stalin|Iosif Vissarionovich Dzhugashvili|communist (generic term)|commie (generic term)
+stalin peak|1
+(noun)|Communism Peak|Mount Communism|Stalin Peak|Mount Garmo|mountain peak (generic term)
+stalinabad|1
+(noun)|Dushanbe|Dusanbe|Dyushambe|Stalinabad|capital of Tajikistan|capital (generic term)
+stalingrad|1
+(noun)|Volgograd|Stalingrad|Tsaritsyn|city (generic term)|metropolis (generic term)|urban center (generic term)
+stalinisation|1
+(noun)|Stalinization|Stalinisation|social process (generic term)
+stalinise|1
+(verb)|stalinize|transform (generic term)|transmute (generic term)|transubstantiate (generic term)|destalinize (antonym)
+stalinism|1
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|tyranny|autocracy (generic term)|autarchy (generic term)
+stalinist|2
+(adj)|Stalinist|communist|commie (related term)
+(noun)|Stalinist|follower (generic term)
+stalinization|1
+(noun)|Stalinization|Stalinisation|social process (generic term)
+stalinize|1
+(verb)|stalinise|transform (generic term)|transmute (generic term)|transubstantiate (generic term)|destalinize (antonym)
+stalino|1
+(noun)|Donetsk|Donetske|Stalino|city (generic term)|metropolis (generic term)|urban center (generic term)
+stalk|8
+(noun)|chaff|husk|shuck|straw|stubble|plant material (generic term)
+(noun)|stem|plant organ (generic term)
+(noun)|stalking|still hunt|hunt (generic term)|hunting (generic term)
+(noun)|stalking|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+(noun)|angry walk|gait (generic term)
+(verb)|walk (generic term)
+(verb)|haunt|pursue (generic term)|follow (generic term)
+(verb)|pursue (generic term)|follow (generic term)
+stalk-like|1
+(adj)|stalklike|stemlike|stem-like|vegetable (similar term)
+stalked|1
+(adj)|pedunculate|sessile (antonym)
+stalked puffball|2
+(noun)|fungus (generic term)
+(noun)|Podaxaceae (generic term)
+stalker|3
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|hunter (generic term)|huntsman (generic term)
+(noun)|prowler|sneak|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+stalking|2
+(noun)|stalk|still hunt|hunt (generic term)|hunting (generic term)
+(noun)|stalk|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+stalking-horse|4
+(noun)|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+(noun)|pretext|pretense (generic term)|pretence (generic term)|feigning (generic term)|dissembling (generic term)
+(noun)|screen (generic term)|cover (generic term)|covert (generic term)|concealment (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+stalkless|1
+(adj)|sessile|pedunculate (antonym)
+stalklike|1
+(adj)|stalk-like|stemlike|stem-like|vegetable (similar term)
+stall|13
+(noun)|compartment (generic term)
+(noun)|booth|cubicle|kiosk|closet (generic term)
+(noun)|stand|sales booth|booth (generic term)
+(noun)|malfunction (generic term)
+(noun)|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+(noun)|carrel|carrell|cubicle|alcove (generic term)|bay (generic term)
+(noun)|stalling|obstruction (generic term)
+(verb)|procrastinate|drag one's feet|drag one's heels|shillyshally|dilly-dally|dillydally|delay (generic term)
+(verb)|conk|stop (generic term)|halt (generic term)
+(verb)|delay (generic term)|detain (generic term)|hold up (generic term)
+(verb)|shelter (generic term)
+(verb)|stop (generic term)|halt (generic term)
+(verb)|stop (generic term)
+stall-fed|1
+(adj)|nourished (similar term)
+stall bar|1
+(noun)|gymnastic apparatus (generic term)|exerciser (generic term)
+stalling|1
+(noun)|stall|obstruction (generic term)
+stallion|1
+(noun)|entire|male horse (generic term)
+stalls|1
+(noun)|stable|horse barn|farm building (generic term)
+stalwart|4
+(adj)|hardy|stout|sturdy|robust (similar term)
+(adj)|stout|resolute (similar term)
+(adj)|stouthearted|brave (similar term)|courageous (similar term)
+(noun)|loyalist|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+stalwartness|1
+(noun)|stoutness|strength (generic term)
+stamboul|1
+(noun)|Istanbul|Stambul|Stamboul|Constantinople|city (generic term)|metropolis (generic term)|urban center (generic term)
+stambul|1
+(noun)|Istanbul|Stambul|Stamboul|Constantinople|city (generic term)|metropolis (generic term)|urban center (generic term)
+stamen|1
+(noun)|reproductive structure (generic term)
+stamina|1
+(noun)|staying power|toughness|endurance (generic term)
+staminate|1
+(adj)|antheral|male (similar term)
+stammel|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+stammer|2
+(noun)|stutter|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+(verb)|bumble|stutter|falter|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+stammerer|1
+(noun)|stutterer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+stamp|16
+(noun)|postage|postage stamp|token (generic term)|item (generic term)
+(noun)|cast|mold|solid (generic term)
+(noun)|class (generic term)|category (generic term)|family (generic term)
+(noun)|impression|symbol (generic term)
+(noun)|pestle|machine (generic term)
+(noun)|die (generic term)
+(noun)|seal|device (generic term)
+(verb)|stomp|stump|walk (generic term)
+(verb)|impress (generic term)|imprint (generic term)
+(verb)|qualify (generic term)|characterize (generic term)|characterise (generic term)
+(verb)|affix (generic term)|stick on (generic term)
+(verb)|pigeonhole|stereotype|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+(verb)|snuff out (generic term)|extinguish (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|squash (generic term)|crush (generic term)|squelch (generic term)|mash (generic term)|squeeze (generic term)
+(verb)|emboss|boss|impress (generic term)|imprint (generic term)
+stamp act|1
+(noun)|Stamp Act|legislative act (generic term)|statute (generic term)
+stamp album|1
+(noun)|album (generic term)
+stamp battery|1
+(noun)|battery|stamp mill (generic term)|stamping mill (generic term)
+stamp collecting|1
+(noun)|philately|stamp collection|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+stamp collection|2
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|philately|stamp collecting|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+stamp collector|1
+(noun)|philatelist|collector (generic term)|aggregator (generic term)
+stamp dealer|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+stamp down|1
+(verb)|suppress|inhibit|subdue|conquer|curb|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+stamp duty|1
+(noun)|stamp tax|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+stamp mill|1
+(noun)|stamping mill|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+stamp out|1
+(verb)|kill|end (generic term)|terminate (generic term)
+stamp pad|1
+(noun)|pad|inkpad|inking pad|block (generic term)
+stamp tax|1
+(noun)|stamp duty|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+stamped|1
+(adj)|sealed (similar term)
+stampede|4
+(noun)|group action (generic term)
+(noun)|change of location (generic term)|travel (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|flee (generic term)|fly (generic term)|take flight (generic term)
+stamper|3
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|stomper|tramper|trampler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|stamping machine|power tool (generic term)
+stamping ground|1
+(noun)|haunt|hangout|resort|repair|area (generic term)|country (generic term)
+stamping machine|1
+(noun)|stamper|power tool (generic term)
+stamping mill|1
+(noun)|stamp mill|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+stan laurel|1
+(noun)|Laurel|Stan Laurel|Arthur Stanley Jefferson Laurel|comedian (generic term)|comic (generic term)
+stan musial|1
+(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer (generic term)|baseball player (generic term)
+stan the man|1
+(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer (generic term)|baseball player (generic term)
+stance|2
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+(noun)|position|posture|attitude (generic term)|mental attitude (generic term)
+stanch|1
+(verb)|stem|staunch|halt|check (generic term)
+stanchion|1
+(noun)|post (generic term)
+stanchly|1
+(adv)|staunchly
+stand|24
+(noun)|base|pedestal|support (generic term)
+(noun)|position (generic term)|place (generic term)
+(noun)|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|table (generic term)
+(noun)|rack|support (generic term)
+(noun)|standstill|tie-up|stop (generic term)|halt (generic term)
+(noun)|point of view|viewpoint|standpoint|position (generic term)|stance (generic term)|posture (generic term)
+(noun)|stall|sales booth|booth (generic term)
+(noun)|stop (generic term)|stopover (generic term)|layover (generic term)
+(noun)|tiered seat (generic term)
+(noun)|bandstand|outdoor stage|platform (generic term)
+(noun)|defense (generic term)|defence (generic term)|defensive measure (generic term)
+(verb)|stand up|rest (generic term)|stand up (related term)|sit (antonym)|lie (antonym)
+(verb)|be (generic term)|stand for (related term)|stand out (related term)|stand out (related term)|stand by (related term)|stand by (related term)|stand firm (related term)
+(verb)|be (generic term)
+(verb)|remain firm|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)|yield (antonym)
+(verb)|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|digest|endure|stick out|stomach|bear|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|stay (generic term)|remain (generic term)|rest (generic term)
+(verb)|continue (generic term)
+(verb)|measure (generic term)
+(verb)|stand up|place upright|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|resist|fend|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)
+(verb)|serve (generic term)|service (generic term)
+stand-alone|1
+(adj)|complete (similar term)
+stand-down|2
+(noun)|standdown|abeyance (generic term)|suspension (generic term)
+(noun)|standdown|stop (generic term)|stoppage (generic term)
+stand-in|1
+(noun)|substitute|relief|reliever|backup|backup man|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+stand-up|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+stand back|2
+(verb)|keep one's eyes off|keep one's distance|keep one's hands off|stay away|be (generic term)
+(verb)|stand (generic term)|stand up (generic term)
+stand by|3
+(verb)|refrain (generic term)|forbear (generic term)
+(verb)|stick around|stick about|wait (generic term)
+(verb)|stick by|stick|adhere|be (generic term)
+stand fast|1
+(verb)|stand pat|stand firm|hold firm|insist (generic term)|take a firm stand (generic term)
+stand firm|2
+(verb)|resist|hold out|withstand|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)|surrender (antonym)
+(verb)|stand pat|hold firm|stand fast|insist (generic term)|take a firm stand (generic term)
+stand for|4
+(verb)|typify|symbolize|symbolise|represent|mean (generic term)|intend (generic term)
+(verb)|mean|intend|signify
+(verb)|represent|correspond|equal (generic term)|be (generic term)
+(verb)|hold still for|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+stand guard|1
+(verb)|stand watch|keep guard|stand sentinel|guard (generic term)
+stand in|1
+(verb)|substitute|sub|fill in|exchange (generic term)|change (generic term)|interchange (generic term)
+stand oil|1
+(noun)|oil (generic term)
+stand out|4
+(verb)|leap out|jump out|jump|stick out|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|excel|surpass
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+stand pat|1
+(verb)|stand firm|hold firm|stand fast|insist (generic term)|take a firm stand (generic term)
+stand sentinel|1
+(verb)|stand guard|stand watch|keep guard|guard (generic term)
+stand still|1
+(verb)|move (antonym)
+stand up|7
+(verb)|arise|rise|uprise|get up|change posture (generic term)|sit down (antonym)|lie down (antonym)
+(verb)|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|stand|place upright|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|stand|rest (generic term)|stand up (related term)|sit (antonym)|lie (antonym)
+(verb)|stick up|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|hold up|hold water|survive (generic term)|last (generic term)|live (generic term)|live on (generic term)|go (generic term)|endure (generic term)|hold up (generic term)|hold out (generic term)
+(verb)|bristle|uprise
+stand watch|1
+(verb)|stand guard|keep guard|stand sentinel|guard (generic term)
+standard|11
+(adj)|modular (similar term)|regular (similar term)|regulation (similar term)|standardized (similar term)|standardised (similar term)|stock (similar term)|normal (related term)|nonstandard (antonym)
+(adj)|common (similar term)
+(adj)|accepted (similar term)|authoritative (similar term)|classical (similar term)|definitive (similar term)|basic (similar term)|canonic (similar term)|canonical (similar term)|casebook (similar term)|textbook (similar term)|classic (similar term)|criterial (similar term)|criterional (similar term)|orthodox (related term)|nonstandard (antonym)
+(adj)|received|acceptable (similar term)|accepted (similar term)|nonstandard (antonym)
+(adj)|stock|regular (similar term)
+(noun)|criterion|measure|touchstone|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|criterion|ideal (generic term)
+(noun)|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(noun)|monetary standard|value (generic term)
+(noun)|post (generic term)
+(noun)|flag (generic term)
+standard-bearer|2
+(noun)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|color bearer|soldier (generic term)
+standard and poor's|1
+(noun)|Standard and Poor's|Standard and Poor's Index|stock index (generic term)|stock market index (generic term)
+standard and poor's index|1
+(noun)|Standard and Poor's|Standard and Poor's Index|stock index (generic term)|stock market index (generic term)
+standard atmosphere|1
+(noun)|atmosphere|atm|standard pressure|pressure unit (generic term)
+standard candle|1
+(noun)|candle|candela|cd|luminous intensity unit (generic term)|candlepower unit (generic term)
+standard cell|1
+(noun)|voltaic cell (generic term)|galvanic cell (generic term)|primary cell (generic term)
+standard deviation|1
+(noun)|variance (generic term)
+standard gauge|1
+(noun)|railroad track (generic term)|railroad (generic term)|railway (generic term)|gauge (generic term)
+standard generalized markup language|1
+(noun)|SGML|markup language (generic term)
+standard of life|1
+(noun)|standard of living|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+standard of living|1
+(noun)|standard of life|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+standard of measurement|1
+(noun)|gauge|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+standard operating procedure|1
+(noun)|standing operating procedure|SOP|standard procedure|operating procedure (generic term)
+standard poodle|1
+(noun)|poodle (generic term)|poodle dog (generic term)
+standard pressure|1
+(noun)|standard atmosphere|atmosphere|atm|pressure unit (generic term)
+standard procedure|1
+(noun)|standing operating procedure|standard operating procedure|SOP|operating procedure (generic term)
+standard schnauzer|1
+(noun)|schnauzer (generic term)
+standard temperature|1
+(noun)|degree centigrade (generic term)|degree Celsius (generic term)|C (generic term)
+standard time|1
+(noun)|civil time|local time|time (generic term)
+standard transmission|1
+(noun)|stick shift|transmission (generic term)|transmission system (generic term)
+standardisation|3
+(noun)|standardization|condition (generic term)|status (generic term)
+(noun)|standardization|normalization|normalisation|social control (generic term)
+(noun)|calibration|standardization|activity (generic term)
+standardise|2
+(verb)|standardize|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+(verb)|standardize|regulate (generic term)|regularize (generic term)|regularise (generic term)|order (generic term)|govern (generic term)
+standardised|2
+(adj)|standardized|standard (similar term)
+(adj)|exchangeable|interchangeable|similar|standardized|replaceable (similar term)
+standardiser|1
+(noun)|standardizer|changer (generic term)|modifier (generic term)
+standardization|3
+(noun)|standardisation|condition (generic term)|status (generic term)
+(noun)|standardisation|normalization|normalisation|social control (generic term)
+(noun)|calibration|standardisation|activity (generic term)
+standardize|2
+(verb)|standardise|regulate (generic term)|regularize (generic term)|regularise (generic term)|order (generic term)|govern (generic term)
+(verb)|standardise|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+standardized|2
+(adj)|standardised|standard (similar term)
+(adj)|exchangeable|interchangeable|similar|standardised|replaceable (similar term)
+standardizer|1
+(noun)|standardiser|changer (generic term)|modifier (generic term)
+standby|3
+(adj)|secondary (similar term)
+(noun)|thing (generic term)
+(noun)|understudy|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+standdown|2
+(noun)|stand-down|abeyance (generic term)|suspension (generic term)
+(noun)|stand-down|stop (generic term)|stoppage (generic term)
+standee|2
+(noun)|stander (generic term)
+(noun)|cutout (generic term)
+stander|1
+(noun)|organism (generic term)|being (generic term)|sitter (antonym)
+standing|9
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|dead (similar term)|stagnant (similar term)|slack (similar term)|still (similar term)|running (antonym)
+(adj)|permanent (similar term)|lasting (similar term)
+(adj)|running (antonym)
+(adj)|seated (antonym)
+(adj)|regular (similar term)
+(noun)|status (generic term)|position (generic term)
+(noun)|list (generic term)|listing (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+standing army|1
+(noun)|army (generic term)|regular army (generic term)|ground forces (generic term)
+standing committee|1
+(noun)|committee (generic term)|commission (generic term)
+standing operating procedure|1
+(noun)|standard operating procedure|SOP|standard procedure|operating procedure (generic term)
+standing order|1
+(noun)|order (generic term)|rules of order (generic term)|parliamentary law (generic term)|parliamentary procedure (generic term)
+standing ovation|1
+(noun)|ovation|recognition (generic term)|credit (generic term)
+standing press|1
+(noun)|press (generic term)|printing press (generic term)
+standing rib roast|1
+(noun)|rib roast|roast (generic term)|joint (generic term)
+standing room|1
+(noun)|room (generic term)|way (generic term)|elbow room (generic term)
+standing stone|1
+(noun)|menhir|megalith (generic term)|megalithic structure (generic term)
+standing wave|1
+(noun)|stationary wave|wave (generic term)|undulation (generic term)
+standish|1
+(noun)|Standish|Miles Standish|Myles Standish|settler (generic term)|colonist (generic term)
+standoff|2
+(noun)|draw|tie|finish (generic term)
+(noun)|repulsion|stand (generic term)
+standoffish|1
+(adj)|offish|unapproachable (similar term)
+standoffishness|1
+(noun)|aloofness|remoteness|withdrawnness|unsociability (generic term)|unsociableness (generic term)
+standpat|1
+(adj)|fusty|unprogressive|nonprogressive|conservative (similar term)
+standpipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+standpoint|1
+(noun)|point of view|viewpoint|stand|position (generic term)|stance (generic term)|posture (generic term)
+standstill|2
+(noun)|deadlock|dead end|impasse|stalemate|situation (generic term)
+(noun)|stand|tie-up|stop (generic term)|halt (generic term)
+standup comedian|1
+(noun)|gagman|comedian (generic term)|comic (generic term)
+stanford|2
+(noun)|Stanford|Leland Stanford|businessman (generic term)|man of affairs (generic term)
+(noun)|Stanford University|Stanford|university (generic term)
+stanford-binet test|1
+(noun)|Stanford-Binet test|intelligence test (generic term)|IQ test (generic term)
+stanford university|1
+(noun)|Stanford University|Stanford|university (generic term)
+stanford white|1
+(noun)|White|Stanford White|architect (generic term)|designer (generic term)
+stanhope|1
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+stanhopea|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+stanislavsky|1
+(noun)|Stanislavsky|Konstantin Stanislavsky|Konstantin Sergeyevich Stanislavsky|Konstantin Sergeevich Alekseev|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|director (generic term)|theater director (generic term)|theatre director (generic term)
+stanley|2
+(noun)|Stanley|Francis Edgar Stanley|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Stanley|Henry M. Stanley|Sir Henry Morton Stanley|John Rowlands|journalist (generic term)|explorer (generic term)|adventurer (generic term)
+stanley baldwin|1
+(noun)|Baldwin|Stanley Baldwin|1st Earl Baldwin of Bewdley|statesman (generic term)|solon (generic term)|national leader (generic term)
+stanley frank musial|1
+(noun)|Musial|Stan Musial|Stanley Frank Musial|Stan the Man|ballplayer (generic term)|baseball player (generic term)
+stanley kubrick|1
+(noun)|Kubrick|Stanley Kubrick|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+stanley smith stevens|1
+(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist (generic term)
+stanley steamer|1
+(noun)|Stanley Steamer|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+stanleya|1
+(noun)|Stanleya|genus Stanleya|dilleniid dicot genus (generic term)
+stanleya pinnata|1
+(noun)|desert plume|prince's-plume|Stanleya pinnata|Cleome pinnata|subshrub (generic term)|suffrutex (generic term)
+stannic|1
+(adj)|stannous|metallic element|metal (related term)
+stannic chloride|1
+(noun)|chloride (generic term)
+stannic sulfide|1
+(noun)|mosaic gold|pigment (generic term)
+stannite|1
+(noun)|tin pyrites|mineral (generic term)
+stannous|1
+(adj)|stannic|metallic element|metal (related term)
+stannous fluoride|1
+(noun)|fluoride (generic term)
+stanton|1
+(noun)|Stanton|Elizabeth Cady Stanton|suffragist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+stanza|1
+(noun)|text (generic term)|textual matter (generic term)
+stapedectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+stapelia|1
+(noun)|carrion flower|starfish flower|herb (generic term)|herbaceous plant (generic term)
+stapelias asterias|1
+(noun)|Stapelias asterias|stapelia (generic term)|carrion flower (generic term)|starfish flower (generic term)
+stapes|1
+(noun)|stirrup|auditory ossicle (generic term)
+staph|1
+(noun)|staphylococcus|staphylococci|coccus (generic term)|cocci (generic term)
+staphylaceae|1
+(noun)|Staphylaceae|family Staphylaceae|bladdernut family|dicot family (generic term)|magnoliopsid family (generic term)
+staphylea|1
+(noun)|Staphylea|genus Staphylea|dicot genus (generic term)|magnoliopsid genus (generic term)
+staphylinidae|1
+(noun)|Staphylinidae|family Staphylinidae|arthropod family (generic term)
+staphylococcal|1
+(adj)|coccus|cocci (related term)
+staphylococcal enterotoxin|1
+(noun)|enterotoxin (generic term)
+staphylococcal enterotoxin b|1
+(noun)|staphylococcal enterotoxin B|SEB|staphylococcal enterotoxin (generic term)|bioweapon (generic term)|biological weapon (generic term)|bioarm (generic term)
+staphylococcal infection|1
+(noun)|infection (generic term)
+staphylococci|1
+(noun)|staphylococcus|staph|coccus (generic term)|cocci (generic term)
+staphylococcus|1
+(noun)|staphylococci|staph|coccus (generic term)|cocci (generic term)
+staple|7
+(adj)|essential (similar term)
+(noun)|basic|commodity (generic term)|trade good (generic term)|good (generic term)
+(noun)|staple fiber|staple fibre|natural fiber (generic term)|natural fibre (generic term)
+(noun)|raw material|material (generic term)|stuff (generic term)
+(noun)|nail (generic term)
+(noun)|paper fastener (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unstaple (antonym)
+staple fiber|1
+(noun)|staple|staple fibre|natural fiber (generic term)|natural fibre (generic term)
+staple fibre|1
+(noun)|staple|staple fiber|natural fiber (generic term)|natural fibre (generic term)
+staple gun|1
+(noun)|staplegun|tacker|machine (generic term)
+staplegun|1
+(noun)|staple gun|tacker|machine (generic term)
+stapler|1
+(noun)|stapling machine|machine (generic term)
+stapling machine|1
+(noun)|stapler|machine (generic term)
+star|11
+(adj)|leading|prima|starring|stellar|major (similar term)
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(noun)|celestial body (generic term)|heavenly body (generic term)
+(noun)|plane figure (generic term)|two-dimensional figure (generic term)
+(noun)|principal|lead|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|headliner|performer (generic term)|performing artist (generic term)
+(noun)|asterisk|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|star topology|topology (generic term)|network topology (generic term)
+(verb)|have (generic term)|feature (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+(verb)|asterisk|mark (generic term)
+star-duckweed|1
+(noun)|Lemna trisulca|duckweed (generic term)
+star-glory|1
+(noun)|cypress vine|Indian pink|Ipomoea quamoclit|Quamoclit pennata|morning glory (generic term)
+star-leaf begonia|1
+(noun)|star begonia|Begonia heracleifolia|begonia (generic term)
+star-nosed mole|1
+(noun)|starnose mole|Condylura cristata|mole (generic term)
+star-of-bethlehem|1
+(noun)|star-of-Bethlehem|bulbous plant (generic term)
+star-shaped|1
+(adj)|asteroid|angular (similar term)|angulate (similar term)
+star-spangled banner|1
+(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag (generic term)
+star-thistle|1
+(noun)|caltrop|Centauria calcitrapa|centaury (generic term)
+star anise|3
+(noun)|Chinese anise|Illicium verum|anise tree (generic term)
+(noun)|Illicium anisatum|anise tree (generic term)
+(noun)|Chinese anise|star aniseed|spice (generic term)
+star aniseed|1
+(noun)|Chinese anise|star anise|spice (generic term)
+star apple|1
+(noun)|caimito|Chrysophyllum cainito|fruit tree (generic term)
+star begonia|1
+(noun)|star-leaf begonia|Begonia heracleifolia|begonia (generic term)
+star chamber|1
+(noun)|Star Chamber|court (generic term)|tribunal (generic term)|judicature (generic term)
+star chart|1
+(noun)|chart (generic term)
+star divination|1
+(noun)|astrology|pseudoscience (generic term)
+star drill|1
+(noun)|bore bit (generic term)|borer (generic term)|rock drill (generic term)|stone drill (generic term)
+star earthball|1
+(noun)|Scleroderma flavidium|earthball (generic term)|false truffle (generic term)|puffball (generic term)|hard-skinned puffball (generic term)
+star fruit|1
+(noun)|carambola|edible fruit (generic term)
+star grass|4
+(noun)|colicroot|colic root|crow corn|unicorn root|liliaceous plant (generic term)
+(noun)|cormous plant (generic term)
+(noun)|Bermuda grass|devil grass|Bahama grass|kweek|doob|scutch grass|Cynodon dactylon|grass (generic term)
+(noun)|windmill grass|creeping windmill grass|Chloris truncata|finger grass (generic term)
+star ipomoea|1
+(noun)|red morning-glory|Ipomoea coccinea|morning glory (generic term)
+star jasmine|1
+(noun)|confederate jasmine|Trachelospermum jasminoides|vine (generic term)
+star magnolia|1
+(noun)|Magnolia stellata|magnolia (generic term)
+star of david|1
+(noun)|Star of David|Shield of David|Magen David|Mogen David|Solomon's seal|emblem (generic term)|allegory (generic term)|hexagram (generic term)
+star of the veldt|1
+(noun)|cape marigold|sun marigold|flower (generic term)
+star sapphire|1
+(noun)|sapphire (generic term)
+star saxifrage|1
+(noun)|starry saxifrage|Saxifraga stellaris|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+star shell|1
+(noun)|flare (generic term)|flash (generic term)
+star sign|1
+(noun)|sign of the zodiac|sign|mansion|house|planetary house|region (generic term)|part (generic term)
+star topology|1
+(noun)|star|topology (generic term)|network topology (generic term)
+star tulip|1
+(noun)|elegant cat's ears|Calochortus elegans|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+starboard|3
+(adj)|right (similar term)
+(noun)|side (generic term)|larboard (antonym)
+(verb)|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+starch|2
+(noun)|amylum|polysaccharide (generic term)|polyose (generic term)
+(verb)|stiffen (generic term)
+starch wheat|1
+(noun)|emmer|two-grain spelt|Triticum dicoccum|wheat (generic term)
+starchless|1
+(adj)|starchy (antonym)
+starchlike|1
+(adj)|amylaceous|amyloid|amyloidal|farinaceous|starchy (similar term)
+starchy|2
+(adj)|starchlike (similar term)|amylaceous (similar term)|amyloid (similar term)|amyloidal (similar term)|farinaceous (similar term)|starchless (antonym)
+(adj)|stiff|buckram|formal (similar term)
+stardom|1
+(noun)|high status (generic term)
+stardust|1
+(noun)|romanticism (generic term)|romance (generic term)
+stare|3
+(noun)|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|gaze|look (generic term)
+(verb)|look (generic term)
+stare down|1
+(verb)|outstare|outface|gaze (generic term)|stare (generic term)
+starer|1
+(noun)|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+starets|1
+(noun)|Catholic (generic term)
+starfish|1
+(noun)|sea star|echinoderm (generic term)
+starfish-like|1
+(adj)|animal (similar term)
+starfish flower|1
+(noun)|stapelia|carrion flower|herb (generic term)|herbaceous plant (generic term)
+starflower|1
+(noun)|sleepy dick|summer snowflake|Ornithogalum umbellatum|star-of-Bethlehem (generic term)
+stargaze|2
+(verb)|gaze (generic term)|stare (generic term)
+(verb)|dream|daydream|woolgather|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)|dream up (related term)
+stargazer|3
+(noun)|lotus-eater|daydreamer (generic term)|woolgatherer (generic term)
+(noun)|astronomer|uranologist|physicist (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+stargazing|1
+(noun)|observation (generic term)|observance (generic term)|watching (generic term)
+staring|3
+(adj)|agaze|open (similar term)|opened (similar term)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adv)|staringly
+staringly|1
+(adv)|staring
+stark|5
+(adj)|blunt|crude|unconditional (similar term)
+(adj)|austere|severe|stern|plain (similar term)
+(adj)|immoderate (similar term)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|staring|thoroughgoing|utter|unadulterated|unmitigated (similar term)
+(adj)|bare|barren|bleak|desolate|inhospitable (similar term)
+stark naked|1
+(adj)|bare-assed|bare-ass|in the altogether|in the buff|in the raw|raw|peeled|naked as a jaybird|unclothed (similar term)
+starkers|1
+(adj)|unclothed (similar term)
+starkey|1
+(noun)|Starr|Ringo Starr|Starkey|Richard Starkey|rock star (generic term)|drummer (generic term)
+starkness|2
+(noun)|absoluteness|utterness|limit (generic term)|bound (generic term)|boundary (generic term)
+(noun)|bareness|plainness (generic term)
+starless|1
+(adj)|starry (antonym)
+starlet|2
+(noun)|actress (generic term)
+(noun)|star (generic term)
+starlight|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+starlike|1
+(adj)|starry (similar term)
+starling|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+starlit|1
+(adj)|starry (similar term)
+starnose mole|1
+(noun)|star-nosed mole|Condylura cristata|mole (generic term)
+starr|1
+(noun)|Starr|Ringo Starr|Starkey|Richard Starkey|rock star (generic term)|drummer (generic term)
+starred|1
+(adj)|asterisked|marked (similar term)
+starring|1
+(adj)|leading|prima|star|stellar|major (similar term)
+starry|1
+(adj)|comet-like (similar term)|sparkling (similar term)|starlike (similar term)|starlit (similar term)|starless (antonym)
+starry-eyed|1
+(adj)|optimistic (similar term)
+starry saxifrage|1
+(noun)|star saxifrage|Saxifraga stellaris|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+stars and bars|1
+(noun)|Stars and Bars|Confederate flag|flag (generic term)
+stars and stripes|1
+(noun)|American flag|Stars and Stripes|Star-Spangled Banner|Old Glory|flag (generic term)
+starship|1
+(noun)|spaceship|spacecraft (generic term)|ballistic capsule (generic term)|space vehicle (generic term)
+start|22
+(noun)|beginning (generic term)
+(noun)|beginning|commencement|first|outset|get-go|kickoff|starting time|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+(noun)|starting|turn (generic term)|play (generic term)
+(noun)|startle|jump|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|beginning|commencement|change of state (generic term)|finish (antonym)
+(noun)|starting line|line (generic term)
+(noun)|starting signal|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|head start|advantage (generic term)|vantage (generic term)
+(verb)|get down|begin|get|start out|set about|set out|commence|end (antonym)
+(verb)|begin|lead off|commence|end (antonym)
+(verb)|depart|part|start out|set forth|set off|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+(verb)|begin|end (antonym)
+(verb)|originate|initiate|make (generic term)|create (generic term)|originate in (related term)
+(verb)|start up|embark on|commence|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+(verb)|startle|jump|move (generic term)
+(verb)|start up|stop (antonym)
+(verb)|go|get going|stop (antonym)
+(verb)|take up
+(verb)|play (generic term)
+(verb)|begin|be (generic term)
+(verb)|begin|act (generic term)|move (generic term)
+(verb)|protrude|pop|pop out|bulge|bulge out|bug out|come out|change shape (generic term)|change form (generic term)|deform (generic term)
+start-off|1
+(noun)|kickoff|send-off|start (generic term)
+start out|2
+(verb)|get down|begin|get|start|set about|set out|commence|end (antonym)
+(verb)|depart|part|start|set forth|set off|set out|take off|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+start up|2
+(verb)|start|stop (antonym)
+(verb)|start|embark on|commence|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+starter|7
+(noun)|starter motor|starting motor|electric motor (generic term)
+(noun)|contestant (generic term)
+(noun)|dispatcher|official (generic term)
+(noun)|newcomer|fledgling|fledgeling|neophyte|freshman|newbie|entrant|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+(noun)|appetizer|appetiser|course (generic term)
+(noun)|crank|hand tool (generic term)
+(noun)|culture (generic term)
+starter motor|1
+(noun)|starter|starting motor|electric motor (generic term)
+starting|3
+(adj)|protrusive (similar term)
+(adj)|opening (similar term)
+(noun)|start|turn (generic term)|play (generic term)
+starting block|1
+(noun)|block (generic term)
+starting buffer|1
+(noun)|buffer solution (generic term)
+starting gate|1
+(noun)|starting stall|barrier (generic term)
+starting handle|1
+(noun)|crank handle|crank (generic term)|starter (generic term)
+starting line|1
+(noun)|start|line (generic term)
+starting motor|1
+(noun)|starter|starter motor|electric motor (generic term)
+starting pitcher|1
+(noun)|pitcher (generic term)|hurler (generic term)|twirler (generic term)|starter (generic term)
+starting point|1
+(noun)|terminus a quo|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)
+starting post|1
+(noun)|post (generic term)|stake (generic term)
+starting signal|1
+(noun)|start|signal (generic term)|signaling (generic term)|sign (generic term)
+starting stall|1
+(noun)|starting gate|barrier (generic term)
+starting time|1
+(noun)|beginning|commencement|first|outset|get-go|start|kickoff|showtime|offset|point (generic term)|point in time (generic term)|middle (antonym)|end (antonym)
+startle|3
+(noun)|jump|start|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|galvanize|galvanise|shock (generic term)|stun (generic term)|floor (generic term)|ball over (generic term)|blow out of the water (generic term)|take aback (generic term)
+(verb)|jump|start|move (generic term)
+startle reaction|1
+(noun)|startle response|startle (generic term)|jump (generic term)|start (generic term)
+startle reflex|1
+(noun)|Moro reflex|startle (generic term)|jump (generic term)|start (generic term)
+startle response|1
+(noun)|startle reaction|startle (generic term)|jump (generic term)|start (generic term)
+startled|1
+(adj)|surprised (similar term)
+startling|1
+(adj)|surprising (similar term)
+startup|2
+(noun)|beginning (generic term)|start (generic term)|commencement (generic term)
+(noun)|inauguration|beginning (generic term)|start (generic term)|commencement (generic term)
+starvation|2
+(noun)|famishment|hunger (generic term)|hungriness (generic term)
+(noun)|starving|privation (generic term)|deprivation (generic term)
+starvation acidosis|1
+(noun)|acidosis (generic term)
+starve|5
+(verb)|hunger|famish|suffer (generic term)|hurt (generic term)|be full (antonym)
+(verb)|famish|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+(verb)|famish|deprive (generic term)|feed (antonym)
+(verb)|crave|hunger|thirst|lust|desire (generic term)|want (generic term)
+(verb)|deprive (generic term)
+starved|2
+(adj)|starving|malnourished (similar term)
+(adj)|famished|ravenous|sharp-set|esurient|hungry (similar term)
+starved aster|1
+(noun)|calico aster|aster (generic term)
+starveling|1
+(noun)|pauper (generic term)|poor man (generic term)
+starving|2
+(adj)|starved|malnourished (similar term)
+(noun)|starvation|privation (generic term)|deprivation (generic term)
+starwort|1
+(noun)|stitchwort|greater stitchwort|Stellaria holostea|chickweed (generic term)
+stash|2
+(noun)|hoard|cache|store (generic term)|stock (generic term)|fund (generic term)
+(verb)|hoard|cache|lay away|hive up|squirrel away|save (generic term)|lay aside (generic term)|save up (generic term)
+stash away|1
+(verb)|store|hive away|lay in|put in|salt away|stack away|keep (generic term)|hold on (generic term)
+stash house|1
+(noun)|house (generic term)
+stasis|2
+(noun)|pathology (generic term)
+(noun)|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+stassano furnace|1
+(noun)|Stassano furnace|electric-arc furnace|electric furnace (generic term)
+stat mi|1
+(noun)|mile|statute mile|land mile|mi|linear unit (generic term)
+statant|1
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+state|11
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+(noun)|province|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|nation|country|land|commonwealth|res publica|body politic|political unit (generic term)|political entity (generic term)
+(noun)|attribute (generic term)
+(noun)|Department of State|United States Department of State|State Department|State|DoS|executive department (generic term)
+(noun)|country|land|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|emotional state (generic term)|spirit (generic term)
+(noun)|state of matter|chemical phenomenon (generic term)
+(verb)|say|tell|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|submit|put forward|posit|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|express|denote (generic term)|refer (generic term)
+state's attorney|1
+(noun)|state attorney|prosecutor (generic term)|public prosecutor (generic term)|prosecuting officer (generic term)|prosecuting attorney (generic term)
+state's evidence|1
+(noun)|evidence (generic term)
+state-controlled|1
+(adj)|collectivist|collectivistic|collectivized|collectivised|socialistic (similar term)|socialist (similar term)
+state-of-the-art|1
+(adj)|progressive (similar term)
+state-sponsored terrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+state-supported|1
+(adj)|public (similar term)
+state attorney|1
+(noun)|state's attorney|prosecutor (generic term)|public prosecutor (generic term)|prosecuting officer (generic term)|prosecuting attorney (generic term)
+state bank|1
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+state boundary|1
+(noun)|state line|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+state capital|1
+(noun)|capital (generic term)|city (generic term)|metropolis (generic term)|urban center (generic term)
+state capitalism|1
+(noun)|economy (generic term)|economic system (generic term)
+state change|1
+(noun)|phase change|phase transition|physical change|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+state department|2
+(noun)|Department of State|United States Department of State|State Department|State|DoS|executive department (generic term)
+(noun)|State Department|government department (generic term)
+state government|1
+(noun)|government (generic term)|authorities (generic term)|regime (generic term)
+state highway|1
+(noun)|expressway|freeway|motorway|pike|superhighway|throughway|thruway|highway (generic term)|main road (generic term)
+state line|1
+(noun)|state boundary|boundary line (generic term)|border (generic term)|borderline (generic term)|delimitation (generic term)|mete (generic term)
+state of affairs|1
+(noun)|situation|state (generic term)
+state of bahrain|1
+(noun)|Bahrain|State of Bahrain|Bahrein|Asian country (generic term)|Asian nation (generic term)
+state of eritrea|1
+(noun)|Eritrea|State of Eritrea|African country (generic term)|African nation (generic term)
+state of flux|1
+(noun)|flux|state (generic term)
+state of grace|1
+(noun)|grace|saving grace|state (generic term)
+state of israel|1
+(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country (generic term)|state (generic term)|land (generic term)
+state of katar|1
+(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country (generic term)|Asian nation (generic term)
+state of kuwait|1
+(noun)|Kuwait|State of Kuwait|Koweit|Asian country (generic term)|Asian nation (generic term)
+state of matter|1
+(noun)|state|chemical phenomenon (generic term)
+state of mind|2
+(noun)|frame of mind|temporary state (generic term)|psychological state (generic term)|mental state (generic term)
+(noun)|cognitive state|state (generic term)
+state of nature|1
+(noun)|wild|natural state|state (generic term)
+state of qatar|1
+(noun)|Qatar|State of Qatar|Katar|State of Katar|Asian country (generic term)|Asian nation (generic term)
+state of the art|1
+(noun)|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+state of the vatican city|1
+(noun)|Holy See|The Holy See|State of the Vatican City|European country (generic term)|European nation (generic term)|see (generic term)
+state of war|1
+(noun)|war|hostility (generic term)|enmity (generic term)|antagonism (generic term)|peace (antonym)
+state prison|1
+(noun)|prison (generic term)|prison house (generic term)
+state senator|1
+(noun)|senator (generic term)
+state socialism|1
+(noun)|economy (generic term)|economic system (generic term)
+state supreme court|1
+(noun)|supreme court|high court|court (generic term)|tribunal (generic term)|judicature (generic term)
+state tax lien|1
+(noun)|tax lien (generic term)
+state treasurer|1
+(noun)|treasurer (generic term)|financial officer (generic term)
+state trooper|1
+(noun)|trooper|policeman (generic term)|police officer (generic term)|officer (generic term)
+statecraft|1
+(noun)|statesmanship|diplomacy|wisdom (generic term)|wiseness (generic term)
+stated|1
+(adj)|declared|explicit (similar term)|expressed (similar term)
+statehouse|1
+(noun)|Statehouse|government building (generic term)
+stateless|1
+(adj)|homeless|unsettled (similar term)
+stateless person|1
+(noun)|displaced person|DP|refugee (generic term)
+stateliness|2
+(noun)|formality (generic term)|formalness (generic term)
+(noun)|majesty|loftiness|impressiveness (generic term)|grandness (generic term)|magnificence (generic term)|richness (generic term)
+stately|3
+(adj)|baronial|imposing|noble|impressive (similar term)
+(adj)|statuesque|tall (similar term)
+(adj)|courtly|formal|dignified (similar term)
+stately home|1
+(noun)|mansion (generic term)|mansion house (generic term)|manse (generic term)|hall (generic term)|residence (generic term)
+statement|6
+(noun)|argument|evidence (generic term)
+(noun)|theme (generic term)|melodic theme (generic term)|musical theme (generic term)|idea (generic term)
+(noun)|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|affirmation|assertion|speech act (generic term)
+(noun)|instruction|command|program line|code (generic term)|computer code (generic term)
+(noun)|financial statement|commercial document (generic term)|commercial instrument (generic term)
+staten island|1
+(noun)|Staten Island|borough (generic term)
+stater|2
+(noun)|coin (generic term)
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+stateroom|1
+(noun)|cabin (generic term)
+states' rights|2
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|right (generic term)
+states' rights democratic party|1
+(noun)|States' Rights Democratic Party|Dixiecrats|party (generic term)|political party (generic term)
+states general|1
+(noun)|States General|assembly (generic term)
+statesman|1
+(noun)|solon|national leader|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+statesmanlike|1
+(adj)|statesmanly|diplomatic (related term)|diplomatical (related term)|presidential (related term)|unstatesmanlike (antonym)
+statesmanly|1
+(adj)|statesmanlike|diplomatic (related term)|diplomatical (related term)|presidential (related term)|unstatesmanlike (antonym)
+statesmanship|1
+(noun)|statecraft|diplomacy|wisdom (generic term)|wiseness (generic term)
+stateswoman|1
+(noun)|statesman (generic term)|solon (generic term)|national leader (generic term)
+statewide|1
+(adj)|comprehensive (similar term)
+static|6
+(adj)|unchanging|undynamic (similar term)|adynamic (similar term)
+(adj)|inactive|motionless|still|nonmoving (similar term)|unmoving (similar term)
+(adj)|electrostatic|electricity (related term)
+(adj)|stable|unchanging|unchangeable (similar term)
+(noun)|atmospherics|atmospheric static|noise (generic term)|interference (generic term)|disturbance (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+static electricity|1
+(noun)|electricity (generic term)
+static line|1
+(noun)|cord (generic term)
+static magnet|1
+(noun)|permanent magnet|magnet (generic term)
+static tube|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+statice|1
+(noun)|sea lavender|marsh rosemary|subshrub (generic term)|suffrutex (generic term)
+statics|1
+(noun)|mechanics (generic term)
+statin|1
+(noun)|lipid-lowering medicine|lipid-lowering medication|statin drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+statin drug|1
+(noun)|lipid-lowering medicine|lipid-lowering medication|statin|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+station|5
+(noun)|facility (generic term)|installation (generic term)
+(noun)|place|social station (generic term)|social status (generic term)|social rank (generic term)|rank (generic term)
+(noun)|position (generic term)|place (generic term)
+(noun)|post|position (generic term)|place (generic term)
+(verb)|post|base|send|place|move (generic term)|displace (generic term)
+station agent|1
+(noun)|stationmaster|master (generic term)
+station house|1
+(noun)|police station|police headquarters|police office|station (generic term)
+station keeper|1
+(noun)|desk sergeant|deskman|police sergeant (generic term)|sergeant (generic term)
+station of the cross|1
+(noun)|Station of the Cross|representation (generic term)
+station waggon|1
+(noun)|beach wagon|station wagon|wagon|beach waggon|waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+station wagon|1
+(noun)|beach wagon|wagon|beach waggon|station waggon|waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+stationariness|1
+(noun)|immobility|fixedness|motionlessness (generic term)|stillness (generic term)|lifelessness (generic term)
+stationary|2
+(adj)|nonmoving (similar term)|unmoving (similar term)
+(adj)|fixed (similar term)
+stationary stochastic process|1
+(noun)|stochastic process (generic term)
+stationary wave|1
+(noun)|standing wave|wave (generic term)|undulation (generic term)
+stationer|1
+(noun)|stationery seller|merchant (generic term)|merchandiser (generic term)
+stationery|1
+(noun)|letter paper|writing paper (generic term)
+stationery seller|1
+(noun)|stationer|merchant (generic term)|merchandiser (generic term)
+stationmaster|1
+(noun)|station agent|master (generic term)
+stations|1
+(noun)|Stations|Stations of the Cross|devotion (generic term)|series (generic term)
+stations of the cross|1
+(noun)|Stations|Stations of the Cross|devotion (generic term)|series (generic term)
+statistic|1
+(noun)|datum (generic term)|data point (generic term)
+statistical|1
+(adj)|applied mathematics|applied math (related term)
+statistical commission|1
+(noun)|Statistical Commission|Economic and Social Council commission (generic term)|ECOSOC commission (generic term)
+statistical distribution|1
+(noun)|distribution|arrangement (generic term)|organization (generic term)|organisation (generic term)|system (generic term)
+statistical mechanics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+statistical method|1
+(noun)|statistical procedure|method (generic term)
+statistical procedure|1
+(noun)|statistical method|method (generic term)
+statistical regression|1
+(noun)|regression|simple regression|regression toward the mean|statistical method (generic term)|statistical procedure (generic term)
+statistical table|1
+(noun)|actuarial table|table (generic term)|tabular array (generic term)
+statistician|2
+(noun)|mathematical statistician|mathematician (generic term)
+(noun)|actuary|calculator (generic term)|reckoner (generic term)|figurer (generic term)|estimator (generic term)|computer (generic term)
+statistics|1
+(noun)|applied mathematics (generic term)|applied math (generic term)
+stative|1
+(adj)|active (antonym)
+stator|1
+(noun)|stator coil|mechanical device (generic term)|rotor (antonym)
+stator coil|1
+(noun)|stator|mechanical device (generic term)|rotor (antonym)
+statuary|2
+(adj)|sculpture (related term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+statue|1
+(noun)|sculpture (generic term)
+statue maker|1
+(noun)|sculptor|sculpturer|carver|artist (generic term)|creative person (generic term)
+statue of liberty|1
+(noun)|Statue of Liberty|statue (generic term)|memorial (generic term)|monument (generic term)
+statuesque|2
+(adj)|stately|tall (similar term)
+(adj)|Junoesque|shapely (similar term)
+statuette|1
+(noun)|figurine|figure (generic term)
+stature|2
+(noun)|esteem (generic term)|regard (generic term)|respect (generic term)
+(noun)|height|bodily property (generic term)
+status|2
+(noun)|position|state (generic term)
+(noun)|condition|state (generic term)
+status asthmaticus|1
+(noun)|asthma (generic term)|asthma attack (generic term)|bronchial asthma (generic term)
+status epilepticus|1
+(noun)|epilepsy (generic term)
+status quo|1
+(noun)|situation (generic term)|state of affairs (generic term)
+status seeking|1
+(noun)|power hunger|ambition (generic term)|ambitiousness (generic term)
+statute|2
+(adj)|codified|written (similar term)
+(noun)|legislative act|act (generic term)|enactment (generic term)
+statute book|1
+(noun)|written record (generic term)|written account (generic term)
+statute law|1
+(noun)|legislation|civil law (generic term)
+statute mile|1
+(noun)|mile|stat mi|land mile|mi|linear unit (generic term)
+statute of limitations|1
+(noun)|law (generic term)
+statute title|1
+(noun)|title|rubric|heading (generic term)|header (generic term)|head (generic term)
+statutory|2
+(adj)|act|enactment (related term)
+(adj)|legal (similar term)
+statutory law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+statutory offence|1
+(noun)|statutory offense|regulatory offense|regulatory offence|crime (generic term)|law-breaking (generic term)
+statutory offense|1
+(noun)|statutory offence|regulatory offense|regulatory offence|crime (generic term)|law-breaking (generic term)
+statutory rape|1
+(noun)|carnal abuse|rape (generic term)|violation (generic term)|assault (generic term)|ravishment (generic term)
+staunch|2
+(adj)|steadfast|unswerving|constant (similar term)
+(verb)|stem|stanch|halt|check (generic term)
+staunchly|1
+(adv)|stanchly
+staunchness|1
+(noun)|steadfastness|loyalty (generic term)|trueness (generic term)
+staurikosaur|1
+(noun)|staurikosaurus|ornithischian (generic term)|ornithischian dinosaur (generic term)
+staurikosaurus|1
+(noun)|staurikosaur|ornithischian (generic term)|ornithischian dinosaur (generic term)
+stavanger|1
+(noun)|Stavanger|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+stave|5
+(noun)|staff|musical notation (generic term)
+(noun)|lag|slat (generic term)|spline (generic term)
+(noun)|rung|round|crosspiece (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|stave in|burst (generic term)|split (generic term)|break open (generic term)
+stave in|2
+(verb)|break in (generic term)
+(verb)|stave|burst (generic term)|split (generic term)|break open (generic term)
+stave off|1
+(verb)|debar|obviate|deflect|avert|head off|fend off|avoid|ward off|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+stave wood|1
+(noun)|red beech|brown oak|booyong|crow's foot|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+stay|16
+(noun)|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|decree (generic term)|edict (generic term)|fiat (generic term)|order (generic term)|rescript (generic term)
+(noun)|arrest|check|halt|hitch|stop|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|brace (generic term)|bracing (generic term)
+(noun)|strip (generic term)|slip (generic term)
+(verb)|remain|rest|be (generic term)|change (antonym)
+(verb)|stick|stick around|stay put|stay in place (generic term)|move (antonym)
+(verb)|bide|abide|stay (generic term)|stay on (generic term)|continue (generic term)|remain (generic term)
+(verb)|stay on|continue|remain|be (generic term)
+(verb)|depart (antonym)
+(verb)|detain|delay|check (generic term)|retard (generic term)|delay (generic term)
+(verb)|persist|remain
+(verb)|last out|ride out|outride
+(verb)|stop (generic term)|halt (generic term)|block (generic term)|kibosh (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|quell|appease|meet (generic term)|satisfy (generic term)|fill (generic term)|fulfill (generic term)|fulfil (generic term)
+stay-at-home|2
+(adj)|provincial (similar term)
+(noun)|homebody|adult (generic term)|grownup (generic term)
+stay at|1
+(verb)|occupy (generic term)|reside (generic term)|lodge in (generic term)
+stay away|1
+(verb)|stand back|keep one's eyes off|keep one's distance|keep one's hands off|be (generic term)
+stay fresh|1
+(verb)|keep|stay (generic term)|remain (generic term)|rest (generic term)
+stay in place|1
+(verb)|travel (antonym)
+stay of execution|1
+(noun)|stay (generic term)
+stay off|1
+(verb)|keep off|avoid (generic term)
+stay on|1
+(verb)|stay|continue|remain|be (generic term)
+stay over|1
+(verb)|sleep over|lodge (generic term)
+stay put|1
+(verb)|stay|stick|stick around|stay in place (generic term)|move (antonym)
+stay together|1
+(verb)|stick together|stay (generic term)|remain (generic term)|rest (generic term)
+stay up|1
+(verb)|sit up|wake (generic term)
+stayer|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+staying power|1
+(noun)|stamina|toughness|endurance (generic term)
+stayman|1
+(noun)|Stayman|eating apple (generic term)|dessert apple (generic term)
+stayman winesap|1
+(noun)|Stayman Winesap|eating apple (generic term)|dessert apple (generic term)
+stays|1
+(noun)|corset|girdle|foundation garment (generic term)|foundation (generic term)
+staysail|1
+(noun)|fore-and-aft sail (generic term)
+stead|1
+(noun)|position|place|lieu|function (generic term)|office (generic term)|part (generic term)|role (generic term)
+steadfast|2
+(adj)|firm|steady|stiff|unbendable|unfaltering|unshakable|unwavering|resolute (similar term)
+(adj)|staunch|unswerving|constant (similar term)
+steadfastly|1
+(adv)|firm|firmly|unwaveringly
+steadfastness|2
+(noun)|staunchness|loyalty (generic term)|trueness (generic term)
+(noun)|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+steadied|1
+(adj)|steady (similar term)
+steadily|1
+(adv)|steady|unsteadily (antonym)
+steadiness|3
+(noun)|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(noun)|firmness|immovability (generic term)|immovableness (generic term)|unsteadiness (antonym)
+(noun)|regularity (generic term)|unsteadiness (antonym)
+steady|10
+(adj)|dependable (similar term)|rock-steady (similar term)|steady-going (similar term)|even (similar term)|regular (similar term)|firm (similar term)|level (similar term)|unwavering (similar term)|steadied (similar term)|sure (similar term)|surefooted (similar term)|sure-footed (similar term)|footsure (similar term)|even (related term)|stable (related term)|unagitated (related term)|unsteady (antonym)
+(adj)|firm|unfluctuating|stable (similar term)
+(adj)|secure (similar term)
+(adj)|firm|steadfast|stiff|unbendable|unfaltering|unshakable|unwavering|resolute (similar term)
+(adj)|regular|frequent (similar term)
+(adj)|unexcitable (similar term)
+(noun)|sweetheart|sweetie|truelove|lover (generic term)
+(verb)|calm|becalm|stabilize (generic term)|stabilise (generic term)
+(verb)|brace|stabilize|stabilise|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+(adv)|steadily|unsteadily (antonym)
+steady-going|1
+(adj)|dependable|rock-steady|steady (similar term)
+steady down|1
+(verb)|settle|root|take root|settle down|stabilize (generic term)|stabilise (generic term)
+steadying|1
+(adj)|helpful (similar term)
+steak|1
+(noun)|cut (generic term)|cut of meat (generic term)
+steak and kidney pie|1
+(noun)|meat pie (generic term)
+steak au poivre|1
+(noun)|peppered steak|pepper steak|dish (generic term)
+steak knife|1
+(noun)|table knife (generic term)
+steak sauce|1
+(noun)|condiment (generic term)
+steak tartare|1
+(noun)|tartar steak|cannibal mound|dish (generic term)
+steakhouse|1
+(noun)|chophouse|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+steal|5
+(noun)|bargain|buy|purchase (generic term)
+(noun)|baseball (generic term)|baseball game (generic term)
+(verb)|take (generic term)
+(verb)|slip|move (generic term)|slip away (related term)|steal away (related term)
+(verb)|gain (generic term)|advance (generic term)|win (generic term)|pull ahead (generic term)|make headway (generic term)|get ahead (generic term)|gain ground (generic term)
+steal away|1
+(verb)|slip away|sneak away|sneak off|sneak out|leave (generic term)|go forth (generic term)|go away (generic term)
+stealer|1
+(noun)|thief|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+stealing|2
+(noun)|larceny|theft|thievery|thieving|felony (generic term)
+(noun)|stealth|concealment (generic term)|concealing (generic term)|hiding (generic term)
+stealth|1
+(noun)|stealing|concealment (generic term)|concealing (generic term)|hiding (generic term)
+stealth aircraft|1
+(noun)|aircraft (generic term)
+stealth bomber|1
+(noun)|bomber (generic term)|stealth aircraft (generic term)
+stealth fighter|1
+(noun)|fighter (generic term)|fighter aircraft (generic term)|attack aircraft (generic term)|stealth aircraft (generic term)
+stealthiness|1
+(noun)|furtiveness|sneakiness|closeness (generic term)|secretiveness (generic term)
+stealthy|1
+(adj)|furtive|sneak|sneaky|surreptitious|concealed (similar term)
+steam|7
+(noun)|vapor (generic term)|vapour (generic term)
+(verb)|steamer|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|emit (generic term)|give out (generic term)|give off (generic term)
+(verb)|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|anger (generic term)|see red (generic term)
+(verb)|steam clean|clean (generic term)|make clean (generic term)
+(verb)|cook (generic term)
+steam-heat|1
+(verb)|heat (generic term)
+steam-powered|1
+(adj)|powered (similar term)
+steam bath|2
+(noun)|steam room|vapor bath|vapour bath|room (generic term)
+(noun)|Turkish bath|vapor bath|vapour bath|washup (generic term)|bathing (generic term)
+steam boiler|1
+(noun)|boiler|vessel (generic term)
+steam chest|1
+(noun)|chamber (generic term)
+steam clean|1
+(verb)|steam|clean (generic term)|make clean (generic term)
+steam coal|1
+(noun)|coal (generic term)
+steam engine|1
+(noun)|external-combustion engine (generic term)
+steam fitting|1
+(noun)|care (generic term)|maintenance (generic term)|upkeep (generic term)
+steam heat|1
+(noun)|steam heating|heating system (generic term)|heating plant (generic term)|heating (generic term)|heat (generic term)
+steam heating|1
+(noun)|steam heat|heating system (generic term)|heating plant (generic term)|heating (generic term)|heat (generic term)
+steam iron|1
+(noun)|iron (generic term)|smoothing iron (generic term)
+steam line|1
+(noun)|steam pipe|pipe (generic term)|pipage (generic term)|piping (generic term)
+steam locomotive|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+steam organ|1
+(noun)|calliope|musical instrument (generic term)|instrument (generic term)
+steam pipe|1
+(noun)|steam line|pipe (generic term)|pipage (generic term)|piping (generic term)
+steam room|1
+(noun)|steam bath|vapor bath|vapour bath|room (generic term)
+steam shovel|1
+(noun)|power shovel (generic term)|excavator (generic term)|digger (generic term)|shovel (generic term)
+steam turbine|1
+(noun)|turbine (generic term)
+steam whistle|1
+(noun)|whistle (generic term)
+steamboat|1
+(noun)|boat (generic term)
+steamed|2
+(adj)|cooked (similar term)
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|stung|displeased (similar term)
+steamed pudding|1
+(noun)|pudding (generic term)
+steamer|5
+(noun)|soft-shell clam|steamer clam|long-neck clam|clam (generic term)
+(noun)|cooking utensil (generic term)|cookware (generic term)
+(noun)|steamship|ship (generic term)
+(noun)|soft-shell clam|steamer clam|long-neck clam|Mya arenaria|clam (generic term)
+(verb)|steam|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+steamer clam|2
+(noun)|soft-shell clam|steamer|long-neck clam|clam (generic term)
+(noun)|soft-shell clam|steamer|long-neck clam|Mya arenaria|clam (generic term)
+steamfitter|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+steaminess|1
+(noun)|haziness|mistiness|vaporousness|vapourousness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+steaming|2
+(adj)|steamy|wet (similar term)
+(adv)|piping
+steamroll|4
+(verb)|steamroller|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|steamroller|go (generic term)|proceed (generic term)|move (generic term)
+(verb)|steamroller|overpower (generic term)|overmaster (generic term)|overwhelm (generic term)
+(verb)|steamroller|flatten (generic term)
+steamroller|7
+(noun)|juggernaut|power (generic term)|force (generic term)
+(noun)|road roller|vehicle (generic term)
+(verb)|steamroll|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|steamroll|go (generic term)|proceed (generic term)|move (generic term)
+(verb)|squash (generic term)|crush (generic term)|squelch (generic term)|mash (generic term)|squeeze (generic term)
+(verb)|steamroll|overpower (generic term)|overmaster (generic term)|overwhelm (generic term)
+(verb)|steamroll|flatten (generic term)
+steamship|1
+(noun)|steamer|ship (generic term)
+steamship company|1
+(noun)|steamship line|line (generic term)
+steamship line|1
+(noun)|steamship company|line (generic term)
+steamy|3
+(adj)|steaming|wet (similar term)
+(adj)|muggy|sticky|wet (similar term)
+(adj)|aroused|horny|randy|ruttish|turned on|sexy (similar term)
+stearic|1
+(adj)|lipid|lipide|lipoid (related term)
+stearic acid|1
+(noun)|octadecanoic acid|saturated fatty acid (generic term)
+stearin|1
+(noun)|glyceryl ester (generic term)
+steatite|1
+(noun)|soapstone|soaprock|soap-rock|talc (generic term)|talcum (generic term)
+steatocystoma|1
+(noun)|sebaceous cyst|pilar cyst|wen|cyst (generic term)
+steatornis|1
+(noun)|Steatornis|genus Steatornis|bird genus (generic term)
+steatornis caripensis|1
+(noun)|oilbird|guacharo|Steatornis caripensis|caprimulgiform bird (generic term)
+steatornithidae|1
+(noun)|Steatornithidae|family Steatornithidae|bird family (generic term)
+steatorrhea|1
+(noun)|symptom (generic term)
+steed|1
+(noun)|warhorse (generic term)
+steel|5
+(noun)|alloy (generic term)|metal (generic term)
+(noun)|sword|blade|brand|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(noun)|sharpener (generic term)
+(verb)|nerve|brace (generic term)|poise (generic term)
+(verb)|cover (generic term)
+steel-plated|1
+(adj)|armor-clad|armour-clad|armor-plated|armour-plated|armored (similar term)|armoured (similar term)
+steel-wool pad|1
+(noun)|abrader (generic term)|abradant (generic term)
+steel arch bridge|1
+(noun)|bridge (generic term)|span (generic term)
+steel band|1
+(noun)|dance band (generic term)|band (generic term)|dance orchestra (generic term)
+steel blue|1
+(noun)|blue (generic term)|blueness (generic term)
+steel company|1
+(noun)|company (generic term)
+steel drum|1
+(noun)|percussion instrument (generic term)|percussive instrument (generic term)
+steel engraving|2
+(noun)|engraving (generic term)
+(noun)|engraving (generic term)|etching (generic term)
+steel factory|1
+(noun)|steel mill|steelworks|steel plant|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+steel gray|1
+(noun)|iron blue|steel grey|Davy's grey|Davy's gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+steel grey|1
+(noun)|iron blue|steel gray|Davy's grey|Davy's gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+steel guitar|1
+(noun)|Hawaiian guitar|guitar (generic term)
+steel industry|1
+(noun)|industry (generic term)
+steel mill|1
+(noun)|steelworks|steel plant|steel factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+steel oneself against|1
+(verb)|steel onself for|brace oneself for|prepare for|inure (generic term)|harden (generic term)|indurate (generic term)
+steel onself for|1
+(verb)|steel oneself against|brace oneself for|prepare for|inure (generic term)|harden (generic term)|indurate (generic term)
+steel plant|1
+(noun)|steel mill|steelworks|steel factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+steel plate|1
+(noun)|plate (generic term)
+steel production|1
+(noun)|production (generic term)
+steel trap|2
+(noun)|acuteness (generic term)|acuity (generic term)|sharpness (generic term)|keenness (generic term)
+(noun)|trap (generic term)
+steel wool|1
+(noun)|wire wool|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+steele|1
+(noun)|Steele|Sir Richrd Steele|writer (generic term)|author (generic term)
+steelmaker|1
+(noun)|steelworker|steelman|maker (generic term)|shaper (generic term)
+steelman|1
+(noun)|steelmaker|steelworker|maker (generic term)|shaper (generic term)
+steelworker|1
+(noun)|steelmaker|steelman|maker (generic term)|shaper (generic term)
+steelworks|1
+(noun)|steel mill|steel plant|steel factory|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+steely|1
+(adj)|hard (similar term)
+steelyard|1
+(noun)|lever scale|beam scale|balance (generic term)
+steen|1
+(noun)|Steen|Jan Steen|old master (generic term)
+steenbok|1
+(noun)|steinbok|Raphicerus campestris|antelope (generic term)
+steep|6
+(adj)|abrupt (similar term)|precipitous (similar term)|sharp (similar term)|bluff (similar term)|bold (similar term)|sheer (similar term)|heavy (similar term)|perpendicular (similar term)|steepish (similar term)|steep-sided (similar term)|vertical (related term)|perpendicular (related term)|gradual (antonym)
+(adj)|exorbitant|extortionate|outrageous|unconscionable|usurious|immoderate (similar term)
+(adj)|high (similar term)
+(noun)|descent (generic term)|declivity (generic term)|fall (generic term)|decline (generic term)|declination (generic term)|declension (generic term)|downslope (generic term)
+(verb)|immerse|engulf|plunge|engross|absorb|soak up|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|infuse|soak (generic term)|imbue (generic term)
+steep-sided|1
+(adj)|steep (similar term)
+steepen|2
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+steeper|1
+(noun)|vessel (generic term)
+steepish|1
+(adj)|steep (similar term)
+steeple|1
+(noun)|spire|tower (generic term)
+steeplechase|2
+(noun)|footrace (generic term)|foot race (generic term)|run (generic term)
+(noun)|horse race (generic term)
+steeplechaser|1
+(noun)|horse (generic term)|Equus caballus (generic term)|racer (generic term)
+steeplejack|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+steepness|1
+(noun)|abruptness|precipitousness|gradient (generic term)|slope (generic term)|gradualness (antonym)
+steer|5
+(noun)|tip|lead|confidential information|wind|hint|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|bullock|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)|male (generic term)
+(verb)|maneuver|manoeuver|manoeuvre|direct|point|head|guide|channelize|channelise|control (generic term)|command (generic term)
+(verb)|control (generic term)|command (generic term)
+(verb)|guide|direct (generic term)
+steer roping|1
+(noun)|roping (generic term)
+steerable|1
+(adj)|dirigible|manageable (similar term)
+steerage|2
+(noun)|accommodation (generic term)
+(noun)|steering|control (generic term)
+steerageway|1
+(noun)|speed (generic term)|velocity (generic term)
+steerer|2
+(noun)|helmsman|steersman|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+(noun)|decoy|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)|accomplice (generic term)|confederate (generic term)
+steering|3
+(noun)|guidance|management (generic term)|direction (generic term)
+(noun)|guidance|direction|control (generic term)
+(noun)|steerage|control (generic term)
+steering committee|1
+(noun)|committee (generic term)|commission (generic term)
+steering gear|1
+(noun)|gear (generic term)|gear mechanism (generic term)
+steering linkage|1
+(noun)|mechanism (generic term)
+steering mechanism|1
+(noun)|steering system|mechanism (generic term)
+steering system|1
+(noun)|steering mechanism|mechanism (generic term)
+steering wheel|1
+(noun)|wheel|handwheel (generic term)
+steersman|1
+(noun)|helmsman|steerer|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+stefan wyszynski|1
+(noun)|Wyszynski|Stefan Wyszynski|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+stefan zweig|1
+(noun)|Zweig|Stefan Zweig|writer (generic term)|author (generic term)
+steffens|1
+(noun)|Steffens|Lincoln Steffens|Joseph Lincoln Steffens|journalist (generic term)
+steffi graf|1
+(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player (generic term)
+steganography|1
+(noun)|cryptography|coding|secret writing|writing (generic term)|committal to writing (generic term)
+steganopus|1
+(noun)|Steganopus|genus Steganopus|bird genus (generic term)
+steganopus tricolor|1
+(noun)|Wilson's phalarope|Steganopus tricolor|phalarope (generic term)
+stegocephalia|1
+(noun)|Stegocephalia|order Stegocephalia|animal order (generic term)
+stegosaur|1
+(noun)|stegosaurus|Stegosaur stenops|armored dinosaur (generic term)
+stegosaur stenops|1
+(noun)|stegosaur|stegosaurus|Stegosaur stenops|armored dinosaur (generic term)
+stegosaurus|1
+(noun)|stegosaur|Stegosaur stenops|armored dinosaur (generic term)
+steichen|1
+(noun)|Steichen|Edward Jean Steichen|photographer (generic term)|lensman (generic term)
+stein|2
+(noun)|beer mug|mug (generic term)
+(noun)|Stein|Gertrude Stein|writer (generic term)|author (generic term)
+steinbeck|1
+(noun)|Steinbeck|John Steinbeck|John Ernst Steinbeck|writer (generic term)|author (generic term)
+steinberg|1
+(noun)|Steinberg|Saul Steinberg|cartoonist (generic term)
+steinbok|1
+(noun)|steenbok|Raphicerus campestris|antelope (generic term)
+steinem|1
+(noun)|Steinem|Gloria Steinem|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+steinert's disease|1
+(noun)|myotonic muscular dystrophy|myotonic dystrophy|myotonia atrophica|Steinert's disease|muscular dystrophy (generic term)|dystrophy (generic term)
+steinman|1
+(noun)|Steinman|David Barnard Steinman|civil engineer (generic term)
+steinmetz|1
+(noun)|Steinmetz|Charles Proteus Steinmetz|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+steinway|1
+(noun)|Steinway|Henry Steinway|Henry Engelhard Steinway|Heinrich Engelhard Steinway|piano maker (generic term)
+stela|1
+(noun)|stele|stone (generic term)|antiquity (generic term)
+stele|2
+(noun)|vascular tissue (generic term)
+(noun)|stela|stone (generic term)|antiquity (generic term)
+stelis|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+stella|1
+(noun)|Stella|Frank Stella|Frank Philip Stella|painter (generic term)
+stellar|2
+(adj)|leading|prima|star|starring|major (similar term)
+(adj)|astral|celestial body|heavenly body (related term)
+stellar's sea eagle|1
+(noun)|Kamchatkan sea eagle|Stellar's sea eagle|Haliaeetus pelagicus|sea eagle (generic term)
+stellar parallax|1
+(noun)|heliocentric parallax (generic term)|annual parallax (generic term)
+stellaria|1
+(noun)|Stellaria|genus Stellaria|caryophylloid dicot family (generic term)
+stellaria holostea|1
+(noun)|stitchwort|greater stitchwort|starwort|Stellaria holostea|chickweed (generic term)
+stellaria media|1
+(noun)|common chickweed|Stellaria media|chickweed (generic term)
+stellate|1
+(adj)|radial|symmetrical (similar term)|symmetric (similar term)
+stellate venule|1
+(noun)|venule (generic term)|venula (generic term)|capillary vein (generic term)
+steller|1
+(noun)|Steller|Georg Wilhelm Steller|naturalist (generic term)|natural scientist (generic term)
+steller's sea cow|1
+(noun)|Steller's sea cow|Hydrodamalis gigas|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+steller's sea lion|1
+(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion (generic term)
+steller sea lion|1
+(noun)|Steller sea lion|Steller's sea lion|Eumetopias jubatus|sea lion (generic term)
+stellite|1
+(noun)|Stellite|alloy (generic term)|metal (generic term)
+stem|10
+(noun)|root|root word|base|theme|radical|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(noun)|stalk|plant organ (generic term)
+(noun)|shank|cylinder (generic term)
+(noun)|tube (generic term)|tubing (generic term)
+(noun)|bow|fore|prow|front (generic term)
+(noun)|stem turn|turn (generic term)|turning (generic term)
+(verb)|originate in (generic term)
+(verb)|orient (generic term)
+(verb)|stanch|staunch|halt|check (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+stem-cell research|1
+(noun)|biological research (generic term)
+stem-like|1
+(adj)|stalklike|stalk-like|stemlike|vegetable (similar term)
+stem-winder|1
+(noun)|watch (generic term)|ticker (generic term)
+stem blight|1
+(noun)|blight (generic term)
+stem canker|1
+(noun)|little potato|rosette|russet scab|rhizoctinia disease (generic term)
+stem cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+stem ginger|1
+(noun)|common ginger|Canton ginger|Zingiber officinale|ginger (generic term)
+stem lettuce|1
+(noun)|celtuce|Lactuca sativa asparagina|lettuce (generic term)
+stem turn|1
+(noun)|stem|turn (generic term)|turning (generic term)
+stem vowel|1
+(noun)|thematic vowel|vowel (generic term)|vowel sound (generic term)
+stemless|2
+(adj)|stemmed (similar term)|stemmed (antonym)
+(adj)|acaulescent|caulescent (antonym)
+stemless carline thistle|1
+(noun)|Carlina acaulis|carline thistle (generic term)
+stemless daisy|1
+(noun)|Easter daisy|Townsendia Exscapa|flower (generic term)
+stemless golden weed|1
+(noun)|Stenotus acaulis|Haplopappus acaulis|wildflower (generic term)|wild flower (generic term)
+stemless hymenoxys|1
+(noun)|Tetraneuris acaulis|Hymenoxys acaulis|wildflower (generic term)|wild flower (generic term)
+stemlike|1
+(adj)|stalklike|stalk-like|stem-like|vegetable (similar term)
+stemma|3
+(noun)|tree (generic term)|tree diagram (generic term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stock|genealogy (generic term)|family tree (generic term)
+(noun)|simple eye|ocellus|eye (generic term)|oculus (generic term)|optic (generic term)
+stemmatic|1
+(adj)|tree|tree diagram (related term)
+stemmatics|1
+(noun)|stemmatology|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+stemmatology|1
+(noun)|stemmatics|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+stemmed|3
+(adj)|stemless (antonym)
+(adj)|caulescent|cauline|cylindrical-stemmed (similar term)|leafy-stemmed (similar term)|multi-stemmed (similar term)|short-stemmed (similar term)|spiny-stemmed (similar term)|stout-stemmed (similar term)|thick-stemmed (similar term)|weak-stemmed (similar term)|wiry-stemmed (similar term)|woolly-stemmed (similar term)|woody-stemmed (similar term)|acaulescent (antonym)
+(adj)|stemless (similar term)
+stemmer|5
+(noun)|stripper|sprigger|worker (generic term)
+(noun)|worker (generic term)
+(noun)|stemming algorithm|algorithm (generic term)|algorithmic rule (generic term)|algorithmic program (generic term)
+(noun)|tamp (generic term)|tamper (generic term)|tamping bar (generic term)
+(noun)|device (generic term)
+stemming algorithm|1
+(noun)|stemmer|algorithm (generic term)|algorithmic rule (generic term)|algorithmic program (generic term)
+sten gun|1
+(noun)|Sten gun|submachine gun (generic term)
+stench|1
+(noun)|malodor|malodour|stink|reek|fetor|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+stench bomb|1
+(noun)|stink bomb|bomb (generic term)
+stencil|2
+(noun)|device (generic term)
+(verb)|print (generic term)
+stendhal|1
+(noun)|Stendhal|Marie Henri Beyle|writer (generic term)|author (generic term)
+stengel|1
+(noun)|Stengel|Casey Stengel|Charles Dillon Stengel|baseball coach (generic term)|baseball manager (generic term)
+stenocarpus|1
+(noun)|Stenocarpus|genus Stenocarpus|dicot genus (generic term)|magnoliopsid genus (generic term)
+stenocarpus salignus|1
+(noun)|scrub beefwood|beefwood|Stenocarpus salignus|tree (generic term)
+stenocarpus sinuatus|1
+(noun)|wheel tree|firewheel tree|Stenocarpus sinuatus|tree (generic term)
+stenochlaena|1
+(noun)|Stenochlaena|genus Stenochlaena|fern genus (generic term)
+stenograph|3
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|typewriter (generic term)
+(verb)|write (generic term)
+stenographer|1
+(noun)|amanuensis|shorthand typist|secretary (generic term)|secretarial assistant (generic term)
+stenographic|1
+(adj)|stenographical|handwriting|hand|script (related term)
+stenographical|1
+(adj)|stenographic|handwriting|hand|script (related term)
+stenography|2
+(noun)|shorthand|tachygraphy|handwriting (generic term)|hand (generic term)|script (generic term)
+(noun)|handwriting (generic term)
+stenopelmatidae|1
+(noun)|Stenopelmatidae|family Stenopelmatidae|arthropod family (generic term)
+stenopelmatus|1
+(noun)|Stenopelmatus|genus Stenopelmatus|arthropod genus (generic term)
+stenopelmatus fuscus|1
+(noun)|sand cricket|Jerusalem cricket|Stenopelmatus fuscus|long-horned grasshopper (generic term)|tettigoniid (generic term)
+stenopterygius|1
+(noun)|Stenopterygius quadrisicissus|ichthyosaur (generic term)
+stenopterygius quadrisicissus|1
+(noun)|stenopterygius|Stenopterygius quadrisicissus|ichthyosaur (generic term)
+stenosed|1
+(adj)|stenotic|constricted (similar term)
+stenosis|1
+(noun)|stricture|pathology (generic term)
+stenotaphrum|1
+(noun)|Stenotaphrum|genus Stenotaphrum|monocot genus (generic term)|liliopsid genus (generic term)
+stenotaphrum secundatum|1
+(noun)|St. Augustine grass|Stenotaphrum secundatum|buffalo grass|grass (generic term)
+stenotic|1
+(adj)|stenosed|constricted (similar term)
+stenotomus|1
+(noun)|Stenotomus|genus Stenotomus|fish genus (generic term)
+stenotomus aculeatus|1
+(noun)|scup|southern porgy|southern scup|Stenotomus aculeatus|porgy (generic term)
+stenotomus chrysops|1
+(noun)|scup|northern porgy|northern scup|Stenotomus chrysops|porgy (generic term)
+stenotus|1
+(noun)|Stenotus|genus Stenotus|asterid dicot genus (generic term)
+stenotus acaulis|1
+(noun)|stemless golden weed|Stenotus acaulis|Haplopappus acaulis|wildflower (generic term)|wild flower (generic term)
+stent|1
+(noun)|tube (generic term)|tubing (generic term)
+stentor|3
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|Stentor|mythical being (generic term)
+(noun)|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+stentorian|1
+(adj)|booming|full (similar term)
+step|21
+(noun)|measure|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|footstep|pace|stride|indefinite quantity (generic term)
+(noun)|locomotion (generic term)|travel (generic term)
+(noun)|stair|support (generic term)
+(noun)|gradation|rank (generic term)
+(noun)|stone's throw|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|footfall|footstep|sound (generic term)
+(noun)|tone|whole tone|whole step|interval (generic term)|musical interval (generic term)
+(noun)|footprint|footmark|mark (generic term)|print (generic term)
+(noun)|block (generic term)
+(noun)|dance step|locomotion (generic term)|travel (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|step out (related term)
+(verb)|tread|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|run (generic term)|execute (generic term)
+(verb)|mistreat|maltreat|abuse|ill-use|ill-treat|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|walk (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|pace|quantify (generic term)|measure (generic term)
+(verb)|move (generic term)
+step-by-step|1
+(adj)|bit-by-bit|in small stages|piecemeal|stepwise|gradual (similar term)
+step-down|1
+(noun)|decrease|diminution|reduction|change of magnitude (generic term)|increase (antonym)
+step-down transformer|1
+(noun)|transformer (generic term)
+step-in|1
+(noun)|pantie|panty|scanty|underpants (generic term)
+step-up|1
+(noun)|increase|change of magnitude (generic term)|decrease (antonym)
+step-up transformer|1
+(noun)|transformer (generic term)
+step by step|2
+(adv)|gradually|bit by bit
+(adv)|stepwise
+step dancing|1
+(noun)|hoofing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+step down|2
+(verb)|leave office|quit|resign|leave (generic term)|depart (generic term)|pull up stakes (generic term)|take office (antonym)
+(verb)|de-escalate|weaken|decrease (generic term)|lessen (generic term)|minify (generic term)|escalate (antonym)
+step forward|1
+(verb)|come to the fore|come forward|step up|step to the fore|come out|act (generic term)|move (generic term)
+step in|2
+(verb)|intervene|interfere|interpose|interact (generic term)
+(verb)|substitute|deputize|deputise|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+step ladder|1
+(noun)|stepladder|ladder (generic term)
+step on|1
+(verb)|tread on|step (generic term)|tread (generic term)
+step out|1
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)
+step rocket|1
+(noun)|multistage rocket|rocket (generic term)|projectile (generic term)
+step stool|1
+(noun)|stool (generic term)
+step to the fore|1
+(verb)|come to the fore|step forward|come forward|step up|come out|act (generic term)|move (generic term)
+step up|3
+(verb)|escalate|intensify|increase (generic term)|de-escalate (antonym)
+(verb)|rev up|increase (generic term)
+(verb)|come to the fore|step forward|come forward|step to the fore|come out|act (generic term)|move (generic term)
+stepbrother|1
+(noun)|half-brother|half brother|brother (generic term)|blood brother (generic term)
+stepchild|1
+(noun)|child (generic term)|kid (generic term)
+stepdaughter|1
+(noun)|stepchild (generic term)
+stepfather|1
+(noun)|stepparent (generic term)|father figure (generic term)|father surrogate (generic term)
+stephane grappelli|1
+(noun)|Grappelli|Stephane Grappelli|violinist (generic term)|fiddler (generic term)
+stephane mallarme|1
+(noun)|Mallarme|Stephane Mallarme|poet (generic term)
+stephanie graf|1
+(noun)|Graf|Steffi Graf|Stephanie Graf|tennis player (generic term)
+stephanion|1
+(noun)|craniometric point (generic term)
+stephanomeria|1
+(noun)|Stephanomeria|genus Stephanomeria|dilleniid dicot genus (generic term)
+stephanomeria malheurensis|1
+(noun)|malheur wire lettuce|Stephanomeria malheurensis|crucifer (generic term)|cruciferous plant (generic term)
+stephanotis|1
+(noun)|shrub (generic term)|bush (generic term)
+stephanotis floribunda|1
+(noun)|Madagascar jasmine|waxflower|Stephanotis floribunda|stephanotis (generic term)
+stephanus johannes paulus kruger|1
+(noun)|Kruger|Oom Paul Kruger|Stephanus Johannes Paulus Kruger|statesman (generic term)|solon (generic term)|national leader (generic term)
+stephead|1
+(noun)|dropline|drop line|stepped line|stagger head|staggered head|headline (generic term)|newspaper headline (generic term)
+stephen|1
+(noun)|Stephen|Sir Leslie Stephen|writer (generic term)|author (generic term)
+stephen a. douglas|1
+(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|Little Giant|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+stephen arnold douglas|1
+(noun)|Douglas|Stephen A. Douglas|Stephen Arnold Douglas|Little Giant|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+stephen butler leacock|1
+(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist (generic term)|economic expert (generic term)|humorist (generic term)|humourist (generic term)
+stephen collins foster|1
+(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+stephen crane|1
+(noun)|Crane|Stephen Crane|writer (generic term)|author (generic term)
+stephen decatur|1
+(noun)|Decatur|Stephen Decatur|naval officer (generic term)
+stephen foster|1
+(noun)|Foster|Stephen Foster|Stephen Collins Foster|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+stephen girard|1
+(noun)|Girard|Stephen Girard|financier (generic term)|moneyman (generic term)
+stephen grover cleveland|1
+(noun)|Cleveland|Grover Cleveland|Stephen Grover Cleveland|President Cleveland|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+stephen hawking|1
+(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist (generic term)
+stephen jay gould|1
+(noun)|Gould|Stephen Jay Gould|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)
+stephen leacock|1
+(noun)|Leacock|Stephen Leacock|Stephen Butler Leacock|economist (generic term)|economic expert (generic term)|humorist (generic term)|humourist (generic term)
+stephen michael reich|1
+(noun)|Reich|Steve Reich|Stephen Michael Reich|composer (generic term)
+stephen samuel wise|1
+(noun)|Wise|Stephen Samuel Wise|religious leader (generic term)
+stephen sondheim|1
+(noun)|Sondheim|Stephen Sondheim|composer (generic term)
+stephen spender|1
+(noun)|Spender|Stephen Spender|Sir Stephen Harold Spender|poet (generic term)|literary critic (generic term)
+stephen vincent benet|1
+(noun)|Benet|Stephen Vincent Benet|poet (generic term)
+stephen william hawking|1
+(noun)|Hawking|Stephen Hawking|Stephen William Hawking|physicist (generic term)
+stephenson|1
+(noun)|Stephenson|George Stephenson|businessman (generic term)|man of affairs (generic term)
+stepladder|1
+(noun)|step ladder|ladder (generic term)
+stepmother|1
+(noun)|stepparent (generic term)
+stepparent|1
+(noun)|parent (generic term)
+steppe|1
+(noun)|plain (generic term)|field (generic term)|champaign (generic term)
+stepped line|1
+(noun)|dropline|drop line|stagger head|staggered head|stephead|headline (generic term)|newspaper headline (generic term)
+stepper|3
+(noun)|hoofer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+(noun)|stepping motor|motor (generic term)
+(noun)|high stepper|horse (generic term)|Equus caballus (generic term)
+stepping down|1
+(noun)|abdication|resignation (generic term)
+stepping motor|1
+(noun)|stepper|motor (generic term)
+stepping stone|2
+(noun)|rock (generic term)|stone (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+steprelationship|1
+(noun)|affinity (generic term)
+steps|2
+(noun)|stairs|stairway (generic term)|staircase (generic term)
+(noun)|path (generic term)|track (generic term)|course (generic term)
+stepsister|1
+(noun)|half sister|half-sister|sister (generic term)|sis (generic term)
+stepson|1
+(noun)|stepchild (generic term)
+stepwise|2
+(adj)|bit-by-bit|in small stages|piecemeal|step-by-step|gradual (similar term)
+(adv)|step by step
+steradian|1
+(noun)|sr|angular unit (generic term)
+stercobilinogen|1
+(noun)|urobilinogen|chromogen (generic term)
+stercolith|1
+(noun)|coprolith|fecalith|faecalith|mass (generic term)
+stercorariidae|1
+(noun)|Stercorariidae|family Stercorariidae|bird family (generic term)
+stercorarius|1
+(noun)|Stercorarius|genus Stercorarius|bird genus (generic term)
+stercorarius parasiticus|1
+(noun)|parasitic jaeger|arctic skua|Stercorarius parasiticus|jaeger (generic term)
+sterculia|1
+(noun)|angiospermous tree (generic term)|flowering tree (generic term)
+sterculia acerifolia|1
+(noun)|flame tree|flame durrajong|Brachychiton acerifolius|Sterculia acerifolia|bottle-tree (generic term)|bottle tree (generic term)
+sterculia apetala|1
+(noun)|Panama tree|Sterculia apetala|sterculia (generic term)
+sterculia family|1
+(noun)|Sterculiaceae|family Sterculiaceae|dilleniid dicot family (generic term)
+sterculia foetida|1
+(noun)|kalumpang|Java olives|Sterculia foetida|sterculia (generic term)
+sterculia gum|1
+(noun)|karaya gum|gum (generic term)
+sterculia rupestris|1
+(noun)|Queensland bottletree|narrow-leaved bottletree|Brachychiton rupestris|Sterculia rupestris|bottle-tree (generic term)|bottle tree (generic term)
+sterculiaceae|1
+(noun)|Sterculiaceae|family Sterculiaceae|sterculia family|dilleniid dicot family (generic term)
+stereo|3
+(adj)|stereophonic|two-channel|binaural (similar term)|biaural (similar term)
+(noun)|stereophony|stereo system|stereophonic system|reproducer (generic term)
+(noun)|stereoscopic picture|stereoscopic photograph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+stereo system|1
+(noun)|stereo|stereophony|stereophonic system|reproducer (generic term)
+stereophonic|1
+(adj)|stereo|two-channel|binaural (similar term)|biaural (similar term)
+stereophonic system|1
+(noun)|stereo|stereophony|stereo system|reproducer (generic term)
+stereophony|1
+(noun)|stereo|stereo system|stereophonic system|reproducer (generic term)
+stereoscope|1
+(noun)|optical device (generic term)
+stereoscopic|2
+(adj)|optical device (related term)
+(adj)|binocular vision (related term)
+stereoscopic photograph|1
+(noun)|stereo|stereoscopic picture|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+stereoscopic picture|1
+(noun)|stereo|stereoscopic photograph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+stereoscopic vision|1
+(noun)|stereoscopy|binocular vision (generic term)
+stereoscopy|1
+(noun)|stereoscopic vision|binocular vision (generic term)
+stereospondyli|1
+(noun)|Stereospondyli|order Stereospondyli|animal order (generic term)
+stereotype|2
+(noun)|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(verb)|pigeonhole|stamp|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+stereotyped|1
+(adj)|stereotypic|stereotypical|unimaginative|conventional (similar term)
+stereotypic|1
+(adj)|stereotyped|stereotypical|unimaginative|conventional (similar term)
+stereotypical|1
+(adj)|stereotyped|stereotypic|unimaginative|conventional (similar term)
+sterile|3
+(adj)|unfertile|infertile|barren (similar term)|sterilized (similar term)|sterilised (similar term)|unfertilized (similar term)|unfertilised (similar term)|unimpregnated (similar term)|unfruitful (related term)|impotent (related term)|unproductive (related term)|fertile (antonym)
+(adj)|aseptic|antiseptic (similar term)
+(adj)|unimaginative|uninspired|uninventive|uncreative (similar term)
+sterileness|1
+(noun)|asepsis|antisepsis|sterility|sanitariness (generic term)
+sterilisation|2
+(noun)|sterilization|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|sterilization|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sterilise|2
+(verb)|sterilize|disinfect (generic term)
+(verb)|sterilize|desex|unsex|desexualize|desexualise|fix|operate on (generic term)|operate (generic term)
+sterilised|2
+(adj)|antiseptic|sterilized|germfree (similar term)
+(adj)|sterilized|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+steriliser|1
+(noun)|autoclave|sterilizer|vessel (generic term)
+sterility|2
+(noun)|asepsis|antisepsis|sterileness|sanitariness (generic term)
+(noun)|infertility|physiological state (generic term)|physiological condition (generic term)|fertility (antonym)
+sterilization|2
+(noun)|sterilisation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|sterilisation|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sterilize|2
+(verb)|sterilise|disinfect (generic term)
+(verb)|sterilise|desex|unsex|desexualize|desexualise|fix|operate on (generic term)|operate (generic term)
+sterilized|2
+(adj)|antiseptic|sterilised|germfree (similar term)
+(adj)|sterilised|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+sterilizer|1
+(noun)|autoclave|steriliser|vessel (generic term)
+sterling|2
+(adj)|greatest|superlative|superior (similar term)
+(noun)|money (generic term)
+sterling area|1
+(noun)|sterling bloc|scheduled territories|bloc (generic term)|axis (generic term)
+sterling bloc|1
+(noun)|sterling area|scheduled territories|bloc (generic term)|axis (generic term)
+sterling silver|1
+(noun)|alloy (generic term)|metal (generic term)
+stern|7
+(adj)|austere|nonindulgent (similar term)|strict (similar term)
+(adj)|grim|inexorable|relentless|unappeasable|unforgiving|unrelenting|implacable (similar term)
+(adj)|strict|exacting|demanding (similar term)
+(adj)|austere|severe|stark|plain (similar term)
+(noun)|after part|quarter|poop|tail|rear (generic term)|back (generic term)
+(noun)|Stern|Isaac Stern|violinist (generic term)|fiddler (generic term)
+(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 (generic term)
+stern chaser|1
+(noun)|naval gun (generic term)
+sterna|1
+(noun)|Sterna|genus Sterna|bird genus (generic term)
+sterna hirundo|1
+(noun)|sea swallow|Sterna hirundo|tern (generic term)
+sternal|1
+(adj)|bone|os (related term)
+sterne|1
+(noun)|Sterne|Laurence Sterne|writer (generic term)|author (generic term)
+sterninae|1
+(noun)|Sterninae|subfamily Sterninae|bird family (generic term)
+sternly|1
+(adv)|severely
+sternness|2
+(noun)|asperity (generic term)|grimness (generic term)|hardship (generic term)|rigor (generic term)|rigour (generic term)|severity (generic term)|severeness (generic term)|rigorousness (generic term)|rigourousness (generic term)
+(noun)|strictness|unpermissiveness (generic term)|restrictiveness (generic term)
+sternocleido mastoideus|1
+(noun)|sternocleidomastoid|sternocleidomastoid muscle|musculus sternocleidomastoideus|skeletal muscle (generic term)|striated muscle (generic term)
+sternocleidomastoid|1
+(noun)|sternocleidomastoid muscle|sternocleido mastoideus|musculus sternocleidomastoideus|skeletal muscle (generic term)|striated muscle (generic term)
+sternocleidomastoid muscle|1
+(noun)|sternocleidomastoid|sternocleido mastoideus|musculus sternocleidomastoideus|skeletal muscle (generic term)|striated muscle (generic term)
+sternocleidomastoid vein|1
+(noun)|vena sternocleidomastoidea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+sternotherus|1
+(noun)|Sternotherus|genus Sternotherus|reptile genus (generic term)
+sternpost|1
+(noun)|timber (generic term)
+sternum|1
+(noun)|breastbone|bone (generic term)|os (generic term)
+sternutation|1
+(noun)|sneeze|sneezing|symptom (generic term)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+sternutative|1
+(adj)|sternutatory|causative (similar term)
+sternutator|1
+(noun)|sternutatory|compound (generic term)|chemical compound (generic term)
+sternutatory|3
+(adj)|compound|chemical compound (related term)
+(adj)|sternutative|causative (similar term)
+(noun)|sternutator|compound (generic term)|chemical compound (generic term)
+sternwheeler|1
+(noun)|paddle steamer (generic term)|paddle-wheeler (generic term)
+steroid|2
+(noun)|organic compound (generic term)
+(noun)|steroid hormone|sex hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+steroid alcohol|1
+(noun)|sterol|alcohol (generic term)|steroid (generic term)
+steroid hormone|1
+(noun)|steroid|sex hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+steroidal|1
+(adj)|hormone|endocrine|internal secretion (related term)|nonsteroidal (antonym)
+sterol|1
+(noun)|steroid alcohol|alcohol (generic term)|steroid (generic term)
+sterope|2
+(noun)|Sterope|Asterope|nymph (generic term)
+(noun)|Sterope|Asterope|star (generic term)
+stertor|1
+(noun)|snore|snoring|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+stertorous|1
+(adj)|noisy (similar term)
+stet|2
+(verb)|invalidate (generic term)|annul (generic term)|quash (generic term)|void (generic term)|avoid (generic term)|nullify (generic term)
+(verb)|direct (generic term)
+stethoscope|1
+(noun)|medical instrument (generic term)
+stetson|1
+(noun)|fedora|felt hat|homburg|Stetson|trilby|hat (generic term)|chapeau (generic term)|lid (generic term)
+steuben|1
+(noun)|Steuben|Baron Friedrich Wilhelm Ludolf Gerhard Augustin von Steuben|American Revolutionary leader (generic term)
+steve martin|1
+(noun)|Martin|Steve Martin|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|comedian (generic term)|comic (generic term)
+steve reich|1
+(noun)|Reich|Steve Reich|Stephen Michael Reich|composer (generic term)
+stevedore|1
+(noun)|loader|longshoreman|docker|dockhand|dock worker|dockworker|dock-walloper|lumper|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+steven spielberg|1
+(noun)|Spielberg|Steven Spielberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+steven weinberg|1
+(noun)|Weinberg|Steven Weinberg|physicist (generic term)
+stevens|3
+(noun)|Stevens|Smitty Stevens|S. Smith Stevens|Stanley Smith Stevens|psychophysicist (generic term)
+(noun)|Stevens|Wallace Stevens|poet (generic term)
+(noun)|Stevens|George Stevens|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+stevens' law|1
+(noun)|Stevens' law|power law|Stevens' power law|law (generic term)|law of nature (generic term)
+stevens' power law|1
+(noun)|Stevens' law|power law|Stevens' power law|law (generic term)|law of nature (generic term)
+stevenson|2
+(noun)|Stevenson|Robert Louis Stevenson|Robert Louis Balfour Stevenson|writer (generic term)|author (generic term)
+(noun)|Stevenson|Adlai Stevenson|Adlai Ewing Stevenson|diplomat (generic term)|diplomatist (generic term)
+stevia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+stew|5
+(noun)|fret|sweat|lather|swither|agitation (generic term)
+(noun)|dish (generic term)
+(verb)|grizzle|brood|sulk (generic term)|pout (generic term)|brood (generic term)
+(verb)|grudge|resent (generic term)
+(verb)|cook (generic term)
+stew meat|1
+(noun)|meat (generic term)
+steward|5
+(noun)|fiduciary (generic term)
+(noun)|officer (generic term)|ship's officer (generic term)
+(noun)|flight attendant|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|shop steward|union representative (generic term)
+(noun)|custodian|keeper|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+stewardess|1
+(noun)|air hostess|hostess|steward (generic term)|flight attendant (generic term)
+stewardship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+stewart|2
+(noun)|Stewart|Jimmy Stewart|James Maitland Stewart|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Stewart|Dugald Stewart|philosopher (generic term)
+stewed|1
+(adj)|boiled|poached|cooked (similar term)
+stewing|2
+(noun)|agitation (generic term)
+(noun)|boiling|simmering|cooking (generic term)|cookery (generic term)|preparation (generic term)
+stewing pan|1
+(noun)|stewpan|saucepan (generic term)
+stewpan|1
+(noun)|stewing pan|saucepan (generic term)
+sth|1
+(noun)|somatotropin|somatotrophin|somatotropic hormone|somatotrophic hormone|STH|human growth hormone|growth hormone|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+sthene|1
+(noun)|force unit (generic term)
+stheno|1
+(noun)|Stheno|Gorgon (generic term)
+stibnite|1
+(noun)|mineral (generic term)
+stichaeidae|1
+(noun)|Stichaeidae|family Stichaeidae|fish family (generic term)
+sticherus|1
+(noun)|Sticherus|genus Sticherus|fern genus (generic term)
+sticherus flabellatus|1
+(noun)|umbrella fern|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern (generic term)
+stick|22
+(noun)|limb (generic term)|tree branch (generic term)
+(noun)|control stick|joystick|lever (generic term)
+(noun)|butter (generic term)|margarine (generic term)|margarin (generic term)|oleo (generic term)|oleomargarine (generic term)|marge (generic term)
+(noun)|pin|peg|leg (generic term)
+(noun)|sports equipment (generic term)
+(noun)|implement (generic term)
+(noun)|joint|marijuana cigarette|reefer|spliff|cigarette (generic term)|cigaret (generic term)|coffin nail (generic term)|butt (generic term)|fag (generic term)
+(noun)|punishment (generic term)|penalty (generic term)|penalization (generic term)|penalisation (generic term)
+(verb)|lodge|wedge|deposit|fasten (generic term)|fix (generic term)|secure (generic term)|stick out (related term)|dislodge (antonym)
+(verb)|stay|stick around|stay put|stay in place (generic term)|move (antonym)
+(verb)|put forward|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|adhere|hold fast|bond|bind|stick to|attach (generic term)
+(verb)|be (generic term)
+(verb)|persist (generic term)|remain (generic term)|stay (generic term)
+(verb)|adhere|adopt (generic term)|follow (generic term)|espouse (generic term)
+(verb)|stand by|stick by|adhere|be (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|fasten (generic term)
+(verb)|pierce (generic term)|thrust (generic term)
+(verb)|cling|cleave|adhere|cohere|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|sting|force (generic term)|thrust (generic term)
+(verb)|perplex|vex|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+stick-in-the-mud|2
+(adj)|fogyish|moss-grown|mossy|stodgy|unfashionable (similar term)|unstylish (similar term)
+(noun)|plodder|slowpoke|slowcoach|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+stick-on|1
+(adj)|adhesive (similar term)
+stick about|1
+(verb)|stand by|stick around|wait (generic term)
+stick around|2
+(verb)|stand by|stick about|wait (generic term)
+(verb)|stay|stick|stay put|stay in place (generic term)|move (antonym)
+stick by|1
+(verb)|stand by|stick|adhere|be (generic term)
+stick cinnamon|1
+(noun)|cinnamon (generic term)
+stick figure|1
+(noun)|drawing (generic term)
+stick horse|1
+(noun)|plaything (generic term)|toy (generic term)
+stick in|2
+(verb)|slip in|sneak in|insert|add (generic term)|append (generic term)|supply (generic term)
+(verb)|insert|enclose|inclose|put in|introduce|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+stick insect|1
+(noun)|walking stick|walkingstick|phasmid (generic term)|phasmid insect (generic term)
+stick lac|1
+(noun)|lac (generic term)
+stick on|2
+(verb)|plaster|plaster over|cover (generic term)
+(verb)|affix|attach (generic term)
+stick out|3
+(verb)|protrude|jut out|jut|project
+(verb)|leap out|jump out|jump|stand out|look (generic term)|appear (generic term)|seem (generic term)
+(verb)|digest|endure|stomach|bear|stand|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+stick shift|1
+(noun)|standard transmission|transmission (generic term)|transmission system (generic term)
+stick to|2
+(verb)|adhere|hold fast|bond|bind|stick|attach (generic term)
+(verb)|stick with|follow|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+stick together|1
+(verb)|stay together|stay (generic term)|remain (generic term)|rest (generic term)
+stick up|2
+(verb)|hold up|rob (generic term)
+(verb)|stand up|defend (generic term)|support (generic term)|fend for (generic term)
+stick with|1
+(verb)|stick to|follow|persevere (generic term)|persist (generic term)|hang in (generic term)|hang on (generic term)|hold on (generic term)
+stickball|1
+(noun)|stickball game|baseball (generic term)|baseball game (generic term)
+stickball game|1
+(noun)|stickball|baseball (generic term)|baseball game (generic term)
+sticker|4
+(noun)|spine|thorn|prickle|pricker|spikelet|aculeus (generic term)
+(noun)|gummed label|paster|label (generic term)
+(noun)|poser|stumper|toughie|problem (generic term)
+(noun)|dagger|knife (generic term)
+stickily|1
+(adv)|viscidly
+stickiness|1
+(noun)|viscosity (generic term)|viscousness (generic term)
+sticking|1
+(adj)|jutting|projected|projecting|protruding|sticking out|protrusive (similar term)
+sticking out|1
+(adj)|jutting|projected|projecting|protruding|sticking|protrusive (similar term)
+sticking plaster|1
+(noun)|plaster|adhesive plaster|adhesive tape (generic term)
+sticking point|1
+(noun)|detail (generic term)|item (generic term)|point (generic term)
+stickle|1
+(verb)|argue (generic term)|contend (generic term)|debate (generic term)|fence (generic term)
+stickleback|1
+(noun)|prickleback|spiny-finned fish (generic term)|acanthopterygian (generic term)
+stickler|1
+(noun)|martinet (generic term)|disciplinarian (generic term)|moralist (generic term)
+stickpin|1
+(noun)|pin (generic term)
+sticks and stone|1
+(noun)|building material (generic term)
+sticktight|2
+(noun)|bur marigold|burr marigold|beggar-ticks|beggar's-ticks|subshrub (generic term)|suffrutex (generic term)
+(noun)|sticktight flea|Echidnophaga gallinacea|flea (generic term)
+sticktight flea|1
+(noun)|sticktight|Echidnophaga gallinacea|flea (generic term)
+stickup|1
+(noun)|armed robbery|heist|holdup|robbery (generic term)
+stickup man|1
+(noun)|holdup man|thief (generic term)|stealer (generic term)
+stickweed|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+sticky|5
+(adj)|gluey|glutinous|gummy|mucilaginous|pasty|viscid|viscous|adhesive (similar term)
+(adj)|wet (similar term)
+(adj)|muggy|steamy|wet (similar term)
+(adj)|awkward|embarrassing|unenviable|difficult (similar term)|hard (similar term)
+(adj)|adhesive (similar term)
+sticky aster|1
+(noun)|Machaeranthera bigelovii|wildflower (generic term)|wild flower (generic term)
+sticky bun|1
+(noun)|honey bun|caramel bun|schnecken|sweet roll (generic term)|coffee roll (generic term)
+sticky end|1
+(noun)|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+sticky geranium|1
+(noun)|Geranium viscosissimum|cranesbill (generic term)|crane's bill (generic term)
+stictomys|1
+(noun)|Stictomys|genus Stictomys|mammal genus (generic term)
+stictopelia|1
+(noun)|Stictopelia|genus Stictopelia|bird genus (generic term)
+stictopelia cuneata|1
+(noun)|Australian turtledove|turtledove|Stictopelia cuneata|dove (generic term)
+stieglitz|1
+(noun)|Stieglitz|Alfred Stieglitz|photographer (generic term)|lensman (generic term)
+stiff|10
+(adj)|immobile (similar term)
+(adj)|strong (similar term)
+(adj)|starchy|buckram|formal (similar term)
+(adj)|potent|strong|equipotent (similar term)|multipotent (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|fertile (related term)|powerful (related term)|impotent (antonym)
+(adj)|firm|steadfast|steady|unbendable|unfaltering|unshakable|unwavering|resolute (similar term)
+(adj)|rigid|inflexible (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+(noun)|man (generic term)|adult male (generic term)
+(noun)|cadaver|corpse|clay|remains|body (generic term)|dead body (generic term)
+(adv)|stiffly
+stiff-backed|1
+(adj)|backed (similar term)
+stiff-branched|1
+(adj)|branchy (similar term)
+stiff-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+stiff-necked|1
+(adj)|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+stiff-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+stiff aster|1
+(noun)|Aster linarifolius|aster (generic term)
+stiff gentian|1
+(noun)|agueweed|ague weed|five-flowered gentian|Gentianella quinquefolia|Gentiana quinquefolia|gentian (generic term)
+stiff upper lip|1
+(noun)|self-restraint (generic term)|temperateness (generic term)
+stiffen|3
+(verb)|change (generic term)|loosen (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|loosen (antonym)
+(verb)|tighten|tighten up|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+stiffener|1
+(noun)|filler (generic term)
+stiffening|2
+(noun)|procedure (generic term)|process (generic term)
+(noun)|rigidifying|rigidification|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+stiffly|2
+(adv)|stiff
+(adv)|rigidly|bolt
+stiffness|5
+(noun)|inelasticity (generic term)
+(noun)|awkwardness (generic term)|clumsiness (generic term)
+(noun)|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+(noun)|awkwardness|clumsiness|gracelessness|inelegance (generic term)
+(noun)|severity|severeness|harshness|rigor|rigour|rigorousness|rigourousness|inclemency|hardness|sternness (generic term)|strictness (generic term)
+stifle|5
+(noun)|knee|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(verb)|smother|strangle|muffle|repress|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|dampen|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|stimulate (antonym)
+(verb)|suffocate|asphyxiate|choke|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|suffocate|asphyxiate|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+stifled|1
+(adj)|smothered|strangled|suppressed|inhibited (similar term)
+stifler|1
+(noun)|smotherer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+stifling|2
+(adj)|sultry|sulfurous|sulphurous|hot (similar term)
+(noun)|suppression|crushing|quelling|prevention (generic term)|bar (generic term)
+stigma|4
+(noun)|reproductive structure (generic term)
+(noun)|mark|brand|stain|symbol (generic term)
+(noun)|spiracle (generic term)
+(noun)|blemish (generic term)|defect (generic term)|mar (generic term)
+stigmata|1
+(noun)|wound (generic term)|lesion (generic term)
+stigmatic|4
+(adj)|symbol (related term)
+(adj)|anastigmatic|condition|status (related term)|lens|lense|lens system (related term)
+(adj)|anastigmatic|astigmatic (antonym)
+(noun)|stigmatist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+stigmatisation|1
+(noun)|stigmatization|branding|disapproval (generic term)
+stigmatise|2
+(verb)|stigmatize|brand|denounce|mark|label (generic term)
+(verb)|stigmatize|mark (generic term)
+stigmatism|3
+(noun)|condition (generic term)
+(noun)|condition (generic term)|status (generic term)|astigmatism (antonym)
+(noun)|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+stigmatist|1
+(noun)|stigmatic|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+stigmatization|1
+(noun)|stigmatisation|branding|disapproval (generic term)
+stigmatize|2
+(verb)|stigmatise|brand|denounce|mark|label (generic term)
+(verb)|stigmatise|mark (generic term)
+stilbesterol|1
+(noun)|diethylstilbesterol|DES|nonsteroid (generic term)|nonsteroidal (generic term)
+stilbestrol|1
+(noun)|diethylstilbestrol|diethylstilboestrol|stilboestrol|DES|estrogen (generic term)|oestrogen (generic term)
+stilboestrol|1
+(noun)|diethylstilbestrol|diethylstilboestrol|stilbestrol|DES|estrogen (generic term)|oestrogen (generic term)
+stile|1
+(noun)|upright (generic term)|vertical (generic term)
+stiletto|1
+(noun)|dagger (generic term)|sticker (generic term)
+stiletto heel|1
+(noun)|spike heel|heel (generic term)
+still|18
+(adj)|inactive|motionless|static|nonmoving (similar term)|unmoving (similar term)
+(adj)|silent|soundless|quiet (similar term)
+(adj)|placid|quiet|tranquil|smooth|unruffled|calm (similar term)
+(adj)|moving (antonym)
+(adj)|noneffervescent|sparkling (antonym)
+(adj)|standing (similar term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|hush|stillness|silence (generic term)|quiet (generic term)
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|distillery|plant (generic term)|works (generic term)|industrial plant (generic term)
+(verb)|calm|calm down|quiet|tranquilize|tranquillize|tranquillise|quieten|lull|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|hush|quieten|silence|shut up|hush up|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)|hush up (related term)|louden (antonym)
+(verb)|allay|relieve|ease|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(adv)|no longer (antonym)
+(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 (generic term)|atrophic arthritis (generic term)|rheumatism (generic term)
+still-fish|1
+(verb)|fish (generic term)
+still-hunt|1
+(verb)|ambush|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+still hunt|1
+(noun)|stalk|stalking|hunt (generic term)|hunting (generic term)
+still life|1
+(noun)|painting (generic term)|picture (generic term)
+still room|1
+(noun)|stillroom|pantry (generic term)|larder (generic term)|buttery (generic term)
+stillbirth|1
+(noun)|spontaneous abortion|miscarriage|abortion (generic term)|live birth (antonym)
+stillborn|2
+(adj)|abortive|unsuccessful|unfruitful (similar term)
+(adj)|dead (similar term)
+stillborn infant|1
+(noun)|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)|liveborn infant (antonym)
+stillness|3
+(noun)|hush|still|silence (generic term)|quiet (generic term)
+(noun)|windlessness|calmness (generic term)
+(noun)|motionlessness|lifelessness|state (generic term)|motion (antonym)
+stillroom|1
+(noun)|still room|pantry (generic term)|larder (generic term)|buttery (generic term)
+stillson wrench|1
+(noun)|Stillson wrench|pipe wrench (generic term)|tube wrench (generic term)
+stilly|1
+(adj)|quiet (similar term)
+stilt|4
+(noun)|pile|spile|piling|column (generic term)|pillar (generic term)
+(noun)|pole (generic term)
+(noun)|Australian stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+(noun)|stiltbird|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+stilt plover|1
+(noun)|stilt|stiltbird|longlegs|long-legs|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+stiltbird|1
+(noun)|stilt|longlegs|long-legs|stilt plover|Himantopus stilt|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+stilted|1
+(adj)|artificial|contrived|hokey|affected (similar term)|unnatural (similar term)
+stilton|1
+(noun)|Stilton|bleu (generic term)|blue cheese (generic term)
+stilwell|1
+(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general (generic term)|full general (generic term)
+stimulant|3
+(adj)|stimulating|stimulative (similar term)
+(noun)|stimulation|stimulus|input|information (generic term)
+(noun)|stimulant drug|excitant|drug (generic term)
+stimulant drug|1
+(noun)|stimulant|excitant|drug (generic term)
+stimulate|7
+(verb)|excite|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)|stifle (antonym)
+(verb)|induce|cause|have|get|make
+(verb)|shake|shake up|excite|stir|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|stir up (related term)
+(verb)|arouse|brace|energize|energise|perk up|affect (generic term)|de-energise (antonym)|de-energize (antonym)|sedate (antonym)
+(verb)|induce|rush|hasten|effect (generic term)|effectuate (generic term)|set up (generic term)
+(verb)|excite|stir|sensitize (generic term)|sensitise (generic term)
+(verb)|provoke|challenge (generic term)
+stimulated|1
+(adj)|stirred|stirred up|aroused|excited (similar term)
+stimulating|3
+(adj)|challenging (similar term)|thought-provoking (similar term)|exciting (similar term)|piquant (similar term)|salty (similar term)|rousing (similar term)|stirring (similar term)|thrilling (similar term)|exciting (related term)|interesting (related term)|invigorating (related term)|moving (related term)|stimulative (related term)|unstimulating (antonym)
+(adj)|stimulant|stimulative (similar term)
+(adj)|exhilarating|invigorating (similar term)
+stimulation|4
+(noun)|arousal (generic term)|rousing (generic term)
+(noun)|stimulus|stimulant|input|information (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|foreplay|arousal|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+stimulative|1
+(adj)|adrenocorticotropic (similar term)|adrenocorticotrophic (similar term)|analeptic (similar term)|excitant (similar term)|excitative (similar term)|excitatory (similar term)|irritating (similar term)|irritative (similar term)|stimulant (similar term)|stimulating (similar term)|stimulating (related term)|depressant (antonym)
+stimulus|1
+(noun)|stimulation|stimulant|input|information (generic term)
+stimulus generalisation|1
+(noun)|generalization|generalisation|stimulus generalization|transfer (generic term)|transfer of training (generic term)|carry-over (generic term)
+stimulus generalization|1
+(noun)|generalization|generalisation|stimulus generalisation|transfer (generic term)|transfer of training (generic term)|carry-over (generic term)
+sting|9
+(noun)|stinging|pain (generic term)|hurting (generic term)
+(noun)|pang|pain (generic term)|hurting (generic term)
+(noun)|bite|insect bite|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|bunco|bunco game|bunko|bunko game|con|confidence trick|confidence game|con game|gyp|hustle|flimflam|swindle (generic term)|cheat (generic term)|rig (generic term)
+(verb)|bite|burn|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|bite|prick|pierce (generic term)
+(verb)|stick|force (generic term)|thrust (generic term)
+(verb)|prick|twinge|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|hurt (generic term)|wound (generic term)|injure (generic term)|bruise (generic term)|offend (generic term)|spite (generic term)
+sting operation|1
+(noun)|bunco (generic term)|bunco game (generic term)|bunko (generic term)|bunko game (generic term)|con (generic term)|confidence trick (generic term)|confidence game (generic term)|con game (generic term)|gyp (generic term)|hustle (generic term)|sting (generic term)|flimflam (generic term)
+stingaree-bush|1
+(noun)|chaparral pea|Pickeringia montana|shrub (generic term)|bush (generic term)
+stinger|5
+(noun)|cocktail (generic term)
+(noun)|cut|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+(noun)|Stinger|surface-to-air missile (generic term)|SAM (generic term)|heat-seeking missile (generic term)
+(noun)|organ (generic term)
+(noun)|blow (generic term)
+stingily|1
+(adv)|cheaply|chintzily
+stinginess|1
+(noun)|trait (generic term)|generosity (antonym)
+stinging|3
+(adj)|prickling|tingling|painful (similar term)
+(adj)|cutting|edged|unkind (similar term)
+(noun)|sting|pain (generic term)|hurting (generic term)
+stinging hair|1
+(noun)|hair (generic term)|fuzz (generic term)|tomentum (generic term)
+stinging nettle|1
+(noun)|Urtica dioica|nettle (generic term)
+stingless|1
+(adj)|pain|hurting (related term)
+stingray|1
+(noun)|ray (generic term)
+stingy|2
+(adj)|ungenerous|beggarly (similar term)|mean (similar term)|cheap (similar term)|chinchy (similar term)|chintzy (similar term)|cheeseparing (similar term)|close (similar term)|near (similar term)|penny-pinching (similar term)|skinny (similar term)|closefisted (similar term)|hardfisted (similar term)|tightfisted (similar term)|grudging (similar term)|niggardly (similar term)|scrimy (similar term)|mean (similar term)|mingy (similar term)|miserly (similar term)|tight (similar term)|parsimonious (similar term)|penurious (similar term)|selfish (related term)|uncharitable (related term)|ungenerous (related term)|meanspirited (related term)|generous (antonym)
+(adj)|meager|meagre|meagerly|scrimpy|bare (similar term)|scanty (similar term)|spare (similar term)|exiguous (similar term)|hand-to-mouth (similar term)|hardscrabble (similar term)|marginal (similar term)|measly (similar term)|miserable (similar term)|paltry (similar term)|insufficient (related term)|deficient (related term)|scarce (related term)|ample (antonym)
+stink|3
+(noun)|malodor|malodour|stench|reek|fetor|foetor|mephitis|smell (generic term)|odor (generic term)|odour (generic term)|olfactory sensation (generic term)|olfactory perception (generic term)
+(verb)|be (generic term)
+(verb)|reek|smell (generic term)|stink up (related term)|stink out (related term)
+stink bell|1
+(noun)|Fritillaria agrestis|fritillary (generic term)|checkered lily (generic term)
+stink bomb|1
+(noun)|stench bomb|bomb (generic term)
+stink fly|1
+(noun)|green lacewing|chrysopid|lacewing (generic term)|lacewing fly (generic term)
+stink out|1
+(verb)|stink up|smell up|odorize (generic term)|odourise (generic term)|scent (generic term)
+stink up|1
+(verb)|smell up|stink out|odorize (generic term)|odourise (generic term)|scent (generic term)
+stinkbird|1
+(noun)|hoatzin|hoactzin|Opisthocomus hoazin|gallinaceous bird (generic term)|gallinacean (generic term)
+stinker|3
+(noun)|rotter|dirty dog|rat|skunk|stinkpot|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|thing (generic term)
+(noun)|lemon|artifact (generic term)|artefact (generic term)
+stinkhorn|1
+(noun)|carrion fungus|fungus (generic term)
+stinkiness|1
+(noun)|malodorousness|foulness|rankness|fetidness|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+stinking|2
+(adj)|icky|crappy|lousy|rotten|shitty|stinky|bad (similar term)
+(adj)|fetid|foetid|foul|foul-smelling|funky|noisome|smelly|ill-scented|malodorous (similar term)|malodourous (similar term)|unpeasant-smelling (similar term)|ill-smelling (similar term)|stinky (similar term)
+stinking bean trefoil|1
+(noun)|bean trefoil|Anagyris foetida|shrub (generic term)|bush (generic term)
+stinking cedar|1
+(noun)|stinking yew|Torrey tree|Torreya taxifolia|yew (generic term)
+stinking chamomile|1
+(noun)|mayweed|dog fennel|stinking mayweed|Anthemis cotula|composite (generic term)|composite plant (generic term)
+stinking clover|1
+(noun)|Rocky Mountain bee plant|Cleome serrulata|spiderflower (generic term)|cleome (generic term)
+stinking elder|1
+(noun)|American red elder|red-berried elder|Sambucus pubens|elder (generic term)|elderberry bush (generic term)
+stinking gladwyn|1
+(noun)|stinking iris|gladdon|gladdon iris|roast beef plant|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+stinking goosefoot|1
+(noun)|Chenopodium vulvaria|goosefoot (generic term)
+stinking hellebore|1
+(noun)|bear's foot|setterwort|Helleborus foetidus|hellebore (generic term)
+stinking horehound|1
+(noun)|black horehound|black archangel|fetid horehound|Ballota nigra|herb (generic term)|herbaceous plant (generic term)
+stinking iris|1
+(noun)|gladdon|gladdon iris|stinking gladwyn|roast beef plant|Iris foetidissima|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+stinking mayweed|1
+(noun)|mayweed|dog fennel|stinking chamomile|Anthemis cotula|composite (generic term)|composite plant (generic term)
+stinking nightshade|1
+(noun)|henbane|black henbane|Hyoscyamus niger|herb (generic term)|herbaceous plant (generic term)
+stinking smut|2
+(noun)|bunt|smut (generic term)
+(noun)|bunt|Tilletia foetida|smut (generic term)|smut fungus (generic term)
+stinking wattle|1
+(noun)|gidgee|Acacia cambegei|acacia (generic term)
+stinking weed|1
+(noun)|coffee senna|mogdad coffee|styptic weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+stinking yew|1
+(noun)|stinking cedar|Torrey tree|Torreya taxifolia|yew (generic term)
+stinkpot|2
+(noun)|rotter|dirty dog|rat|skunk|stinker|bum|puke|crumb|lowlife|scum bag|so-and-so|git|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|musk turtle|mud turtle (generic term)
+stinkweed|1
+(noun)|field pennycress|French weed|fanweed|penny grass|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+stinky|2
+(adj)|malodorous|malodourous|unpeasant-smelling|ill-smelling|bilgy (similar term)|fetid (similar term)|foetid (similar term)|foul (similar term)|foul-smelling (similar term)|funky (similar term)|noisome (similar term)|smelly (similar term)|stinking (similar term)|ill-scented (similar term)|fusty (similar term)|musty (similar term)|frowsty (similar term)|gamey (similar term)|gamy (similar term)|high (similar term)|miasmic (similar term)|mephitic (similar term)|niffy (similar term)|odoriferous (similar term)|odorous (similar term)|putrid-smelling (similar term)|rank-smelling (similar term)|reeking (similar term)|sour (similar term)|rancid (similar term)|fragrant (antonym)
+(adj)|icky|crappy|lousy|rotten|shitty|stinking|bad (similar term)
+stinky squid|1
+(noun)|Pseudocolus fusiformis|stinkhorn (generic term)|carrion fungus (generic term)
+stint|5
+(noun)|stretch|duration (generic term)|continuance (generic term)
+(noun)|least sandpiper|Erolia minutilla|sandpiper (generic term)
+(noun)|job (generic term)|task (generic term)|chore (generic term)
+(verb)|scrimp|skimp|save (generic term)
+(verb)|skimp|scant|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+stinter|1
+(noun)|economizer (generic term)|economiser (generic term)
+stinting|1
+(adj)|economical|frugal|scotch|sparing|thrifty (similar term)
+stipe|1
+(noun)|stalk (generic term)|stem (generic term)
+stipend|1
+(noun)|regular payment (generic term)
+stipendiary|4
+(adj)|regular payment (related term)
+(adj)|compensated|remunerated|salaried|paid (similar term)
+(adj)|compensable|paying|remunerative|salaried|paid (similar term)
+(noun)|stipendiary magistrate|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+stipendiary magistrate|1
+(noun)|stipendiary|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+stipple|3
+(verb)|engrave (generic term)
+(verb)|paint (generic term)
+(verb)|speckle|mottle (generic term)|dapple (generic term)|cloud (generic term)
+stippled|1
+(adj)|dotted|flecked|specked|speckled|patterned (similar term)
+stippler|1
+(noun)|painter (generic term)
+stipulate|3
+(verb)|qualify|condition|specify|contract (generic term)|undertake (generic term)
+(verb)|guarantee (generic term)|vouch (generic term)
+(verb)|contract (generic term)|undertake (generic term)
+stipulation|3
+(noun)|judicial admission|concession (generic term)
+(noun)|condition|precondition|premise (generic term)|premiss (generic term)|assumption (generic term)
+(noun)|specification|restriction (generic term)
+stipulative definition|1
+(noun)|definition (generic term)
+stipulatory|1
+(adj)|agreed upon|uncontroversial (similar term)|noncontroversial (similar term)
+stipule|1
+(noun)|plant part (generic term)|plant structure (generic term)
+stir|11
+(noun)|splash|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|agitation (generic term)
+(noun)|bustle|hustle|flurry|ado|fuss|commotion (generic term)|din (generic term)|ruction (generic term)|ruckus (generic term)|rumpus (generic term)|tumult (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|shift|budge|agitate|move (generic term)
+(verb)|stimulate|excite|sensitize (generic term)|sensitise (generic term)
+(verb)|stimulate|shake|shake up|excite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)|stir up (related term)
+(verb)|touch|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)|stir up (related term)
+(verb)|raise|conjure|conjure up|invoke|evoke|call down|arouse|bring up|put forward|call forth|make (generic term)|create (generic term)
+(verb)|arouse|move (generic term)
+(verb)|work (generic term)
+stir fry|1
+(verb)|fry (generic term)
+stir up|4
+(verb)|agitate|foment|provoke (generic term)|stimulate (generic term)
+(verb)|inflame|wake|ignite|heat|fire up|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|agitate|vex|disturb|commove|shake up|raise up|move (generic term)|displace (generic term)
+(verb)|incite|instigate|set off|provoke (generic term)|stimulate (generic term)
+stirk|1
+(noun)|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+stirred|3
+(adj)|moved|affected|touched|sick (similar term)|affected (related term)|emotional (related term)|unmoved (antonym)
+(adj)|stimulated|stirred up|aroused|excited (similar term)
+(adj)|agitated (similar term)
+stirred up|1
+(adj)|stimulated|stirred|aroused|excited (similar term)
+stirrer|2
+(noun)|scaremonger|alarmist (generic term)
+(noun)|implement (generic term)
+stirring|4
+(adj)|rousing|stimulating (similar term)
+(adj)|soul-stirring|moving (similar term)
+(noun)|agitation (generic term)
+(noun)|inspiration|arousal (generic term)|rousing (generic term)
+stirrup|2
+(noun)|stirrup iron|support (generic term)
+(noun)|stapes|auditory ossicle (generic term)
+stirrup-shaped|1
+(adj)|formed (similar term)
+stirrup cup|1
+(noun)|drink (generic term)
+stirrup iron|1
+(noun)|stirrup|support (generic term)
+stirrup pump|1
+(noun)|pump (generic term)
+stitch|3
+(noun)|sewing (generic term)|stitchery (generic term)
+(noun)|pain (generic term)|hurting (generic term)
+(verb)|sew|run up|sew together|fasten (generic term)|fix (generic term)|secure (generic term)
+stitched|1
+(adj)|sewed|sewn|seamed (similar term)
+stitcher|1
+(noun)|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)|finisher (generic term)
+stitchery|1
+(noun)|sewing|needlework (generic term)|needlecraft (generic term)
+stitching|1
+(noun)|sewing|handicraft (generic term)
+stitchwort|1
+(noun)|greater stitchwort|starwort|Stellaria holostea|chickweed (generic term)
+stizidae|1
+(noun)|Stizidae|family Stizidae|arthropod family (generic term)
+stizolobium|1
+(noun)|genus Mucuna|Stizolobium|genus Stizolobium|rosid dicot genus (generic term)
+stizolobium deeringiana|1
+(noun)|cowage|velvet bean|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+stizostedion|1
+(noun)|Stizostedion|genus Stizostedion|fish genus (generic term)
+stizostedion vitreum|1
+(noun)|walleye|walleyed pike|jack salmon|dory|Stizostedion vitreum|pike-perch (generic term)|pike perch (generic term)
+stm|1
+(noun)|short-term memory|STM|immediate memory|memory (generic term)|remembering (generic term)
+stoat|1
+(noun)|ermine (generic term)|shorttail weasel (generic term)|Mustela erminea (generic term)
+stob|1
+(noun)|stick (generic term)
+stochastic|1
+(adj)|random (similar term)
+stochastic process|1
+(noun)|model (generic term)|theoretical account (generic term)|framework (generic term)
+stochastic variable|1
+(noun)|random variable|variate|variant|chance variable|variable (generic term)|variable quantity (generic term)
+stochasticity|1
+(noun)|randomness|haphazardness|noise|irregularity (generic term)|unregularity (generic term)
+stock|25
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|threadbare|timeworn|tired|trite|well-worn|unoriginal (similar term)
+(adj)|standard (similar term)
+(adj)|standard|regular (similar term)
+(noun)|capital (generic term)|working capital (generic term)
+(noun)|broth|soup (generic term)
+(noun)|inventory|merchandise (generic term)|ware (generic term)|product (generic term)
+(noun)|store|fund|accumulation (generic term)
+(noun)|livestock|farm animal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+(noun)|lineage|line|line of descent|descent|bloodline|blood line|blood|pedigree|ancestry|origin|parentage|stemma|genealogy (generic term)|family tree (generic term)
+(noun)|gunstock|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)|support (generic term)
+(noun)|repute (generic term)|reputation (generic term)
+(noun)|breed|strain|variety (generic term)|animal group (generic term)
+(noun)|lumber (generic term)|timber (generic term)
+(noun)|stock certificate|security (generic term)|certificate (generic term)
+(noun)|Malcolm stock|flower (generic term)
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|gillyflower|flower (generic term)
+(noun)|handle (generic term)|grip (generic term)|handgrip (generic term)|hold (generic term)
+(noun)|caudex|stalk (generic term)|stem (generic term)
+(noun)|neckcloth|cravat (generic term)
+(verb)|carry|stockpile|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|buy in|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|sprout|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+stock-in-trade|1
+(noun)|equipment (generic term)
+stock-index futures|1
+(noun)|futures contract (generic term)
+stock-purchase warrant|1
+(noun)|warrant|stock warrant|security (generic term)|surety (generic term)
+stock-still|2
+(adj)|frozen|rooted|nonmoving (similar term)|unmoving (similar term)
+(adv)|still
+stock-take|2
+(noun)|stocktake|inventory (generic term)|inventorying (generic term)|stocktaking (generic term)|stock-taking (generic term)
+(verb)|inventory|take stock|list (generic term)
+stock-taker|1
+(noun)|stocktaker|employee (generic term)
+stock-taking|2
+(noun)|stocktaking|reappraisal (generic term)|revaluation (generic term)|review (generic term)|reassessment (generic term)
+(noun)|inventory|inventorying|stocktaking|listing (generic term)|itemization (generic term)|itemisation (generic term)
+stock breeder|1
+(noun)|breeder|stockman (generic term)|stock raiser (generic term)|stock farmer (generic term)
+stock buyback|1
+(noun)|purchase (generic term)
+stock car|2
+(noun)|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(noun)|racer (generic term)|race car (generic term)|racing car (generic term)
+stock certificate|1
+(noun)|stock|security (generic term)|certificate (generic term)
+stock company|2
+(noun)|company (generic term)
+(noun)|repertory company|theater company (generic term)
+stock cube|1
+(noun)|broth (generic term)|stock (generic term)
+stock dividend|1
+(noun)|dividend (generic term)
+stock exchange|1
+(noun)|stock market|securities market|exchange (generic term)
+stock farmer|1
+(noun)|stockman|stock raiser|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+stock index|1
+(noun)|stock market index|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+stock issue|1
+(noun)|issue (generic term)|issuing (generic term)|issuance (generic term)
+stock list|1
+(noun)|inventory|list (generic term)|listing (generic term)
+stock market|1
+(noun)|stock exchange|securities market|exchange (generic term)
+stock market index|1
+(noun)|stock index|index (generic term)|index number (generic term)|indicant (generic term)|indicator (generic term)
+stock of record|1
+(noun)|common stock (generic term)|common shares (generic term)|ordinary shares (generic term)
+stock option|1
+(noun)|option (generic term)
+stock power|1
+(noun)|power of attorney (generic term)
+stock purchase plan|1
+(noun)|plan (generic term)|program (generic term)|programme (generic term)
+stock raiser|1
+(noun)|stockman|stock farmer|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+stock room|1
+(noun)|stockroom|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+stock saddle|1
+(noun)|Western saddle|saddle (generic term)
+stock split|1
+(noun)|split|split up|increase (generic term)|step-up (generic term)
+stock symbol|1
+(noun)|symbol (generic term)
+stock ticker|1
+(noun)|ticker|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+stock trader|1
+(noun)|trader (generic term)|bargainer (generic term)|dealer (generic term)|monger (generic term)
+stock warrant|2
+(noun)|warrant|stock-purchase warrant|security (generic term)|surety (generic term)
+(noun)|guarantee (generic term)|warrant (generic term)|warrantee (generic term)|warranty (generic term)
+stockade|3
+(noun)|fortification (generic term)|munition (generic term)
+(noun)|concentration camp|penal institution (generic term)|penal facility (generic term)
+(verb)|wall (generic term)|palisade (generic term)|fence (generic term)|fence in (generic term)|surround (generic term)
+stockbroker|1
+(noun)|agent (generic term)|factor (generic term)|broker (generic term)
+stockbroker belt|1
+(noun)|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+stockcar|1
+(noun)|boxcar (generic term)
+stocked|1
+(adj)|stocked with|furnished (similar term)|equipped (similar term)
+stocked with|1
+(adj)|stocked|furnished (similar term)|equipped (similar term)
+stocker|1
+(noun)|domestic animal (generic term)
+stockfish|1
+(noun)|fish (generic term)
+stockholder|1
+(noun)|shareholder|shareowner|investor (generic term)
+stockholder of record|1
+(noun)|stockholder (generic term)|shareholder (generic term)|shareowner (generic term)
+stockholders meeting|1
+(noun)|meeting (generic term)|group meeting (generic term)
+stockholding|2
+(noun)|stockholdings|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|ownership (generic term)
+stockholdings|1
+(noun)|stockholding|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+stockholm|1
+(noun)|Stockholm|capital of Sweden|national capital (generic term)
+stockhorn|1
+(noun)|hornpipe|pibgorn|single-reed instrument (generic term)|single-reed woodwind (generic term)
+stockinet|1
+(noun)|stockinette|knit (generic term)|knitted fabric (generic term)
+stockinette|1
+(noun)|stockinet|knit (generic term)|knitted fabric (generic term)
+stockinette stitch|1
+(noun)|knitting stitch (generic term)
+stocking|2
+(noun)|hosiery (generic term)|hose (generic term)
+(noun)|provision (generic term)|supply (generic term)|supplying (generic term)
+stocking cap|1
+(noun)|ski cap|toboggan cap|cap (generic term)
+stocking filler|1
+(noun)|stocking stuffer|Christmas present (generic term)|Christmas gift (generic term)
+stocking stuffer|1
+(noun)|stocking filler|Christmas present (generic term)|Christmas gift (generic term)
+stockinged|1
+(adj)|unshod (similar term)|unshoed (similar term)
+stockist|1
+(noun)|supplier (generic term)|provider (generic term)
+stockjobber|1
+(noun)|stock trader (generic term)
+stockman|1
+(noun)|stock raiser|stock farmer|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+stockpile|3
+(noun)|reserve|backlog|accumulation (generic term)
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+(verb)|stock|carry|have (generic term)|have got (generic term)|hold (generic term)
+stockpiling|1
+(noun)|repositing (generic term)|reposition (generic term)|storage (generic term)|warehousing (generic term)
+stockpot|1
+(noun)|pot (generic term)
+stockroom|1
+(noun)|stock room|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+stocks|2
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|instrument of punishment (generic term)
+stocktake|1
+(noun)|stock-take|inventory (generic term)|inventorying (generic term)|stocktaking (generic term)|stock-taking (generic term)
+stocktaker|1
+(noun)|stock-taker|employee (generic term)
+stocktaking|2
+(noun)|stock-taking|reappraisal (generic term)|revaluation (generic term)|review (generic term)|reassessment (generic term)
+(noun)|inventory|inventorying|stock-taking|listing (generic term)|itemization (generic term)|itemisation (generic term)
+stockton|1
+(noun)|Stockton|Frank Stockton|Francis Richard Stockton|writer (generic term)|author (generic term)
+stocky|1
+(adj)|compact|heavyset|thick|thickset|fat (similar term)
+stockyard|1
+(noun)|yard (generic term)
+stodge|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+stodgily|1
+(adv)|stuffily
+stodginess|1
+(noun)|stuffiness|graveness (generic term)|gravity (generic term)|sobriety (generic term)|soberness (generic term)|somberness (generic term)|sombreness (generic term)
+stodgy|3
+(adj)|indigestible (similar term)
+(adj)|fogyish|moss-grown|mossy|stick-in-the-mud|unfashionable (similar term)|unstylish (similar term)
+(adj)|stuffy|conventional (similar term)
+stoep|1
+(noun)|stoop|porch (generic term)
+stogie|1
+(noun)|stogy|cigar (generic term)
+stogy|1
+(noun)|stogie|cigar (generic term)
+stoic|4
+(adj)|stoical|unemotional (similar term)
+(adj)|Stoic|philosophical doctrine|philosophical theory (related term)
+(noun)|Stoic|philosopher (generic term)
+(noun)|unemotional person|adult (generic term)|grownup (generic term)|emotional person (antonym)
+stoical|1
+(adj)|stoic|unemotional (similar term)
+stoichiometric|1
+(adj)|ratio (related term)
+stoichiometry|1
+(noun)|ratio (generic term)
+stoicism|2
+(noun)|stolidity|stolidness|unemotionality (generic term)|emotionlessness (generic term)
+(noun)|Stoicism|philosophical doctrine (generic term)|philosophical theory (generic term)
+stoke|1
+(verb)|tend (generic term)
+stokehold|1
+(noun)|stokehole|fireroom|chamber (generic term)
+stokehole|1
+(noun)|stokehold|fireroom|chamber (generic term)
+stoker|3
+(noun)|Stoker|Bram Stoker|Abraham Stoker|writer (generic term)|author (generic term)
+(noun)|fireman|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|mechanical device (generic term)
+stokes' aster|1
+(noun)|cornflower aster|Stokesia laevis|flower (generic term)
+stokes-adams syndrome|1
+(noun)|heart block|Adams-Stokes syndrome|Stokes-Adams syndrome|atrioventricular block|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+stokesia|1
+(noun)|Stokesia|genus Stokesia|asterid dicot genus (generic term)
+stokesia laevis|1
+(noun)|stokes' aster|cornflower aster|Stokesia laevis|flower (generic term)
+stokowski|1
+(noun)|Stokowski|Leopold Stokowski|Leopold Antoni Stanislaw Stokowski|conductor (generic term)|music director (generic term)|director (generic term)
+stole|1
+(noun)|scarf (generic term)
+stolen|1
+(adj)|purloined|taken (similar term)
+stolen property|1
+(noun)|transferred property (generic term)|transferred possession (generic term)
+stolid|1
+(adj)|impassive|unemotional (similar term)
+stolidity|2
+(noun)|emotionlessness|impassivity|impassiveness|phlegm|indifference|unemotionality|apathy (generic term)
+(noun)|stoicism|stolidness|unemotionality (generic term)|emotionlessness (generic term)
+stolidness|1
+(noun)|stoicism|stolidity|unemotionality (generic term)|emotionlessness (generic term)
+stolon|1
+(noun)|runner|offset|plant organ (generic term)
+stoloniferous|1
+(adj)|plant organ (related term)
+stoma|2
+(noun)|stomate|pore|aperture (generic term)
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+stomach|6
+(noun)|tummy|tum|breadbasket|internal organ (generic term)|viscus (generic term)
+(noun)|abdomen|venter|belly|body part (generic term)
+(noun)|inclination (generic term)
+(noun)|appetite (generic term)|appetency (generic term)|appetence (generic term)
+(verb)|digest (generic term)
+(verb)|digest|endure|stick out|bear|stand|tolerate|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+stomach ache|1
+(noun)|stomachache|bellyache|gastralgia|ache (generic term)|aching (generic term)
+stomach exercise|1
+(noun)|tummy crunch|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+stomach flu|1
+(noun)|gastroenteritis|intestinal flu|inflammatory disease (generic term)
+stomach pump|1
+(noun)|suction pump (generic term)
+stomach sweetbread|1
+(noun)|variety meat (generic term)|organs (generic term)
+stomach upset|1
+(noun)|indigestion|dyspepsia|upset stomach|symptom (generic term)
+stomachache|1
+(noun)|stomach ache|bellyache|gastralgia|ache (generic term)|aching (generic term)
+stomachal|1
+(adj)|gastric|stomachic|internal organ|viscus (related term)
+stomacher|1
+(noun)|garment (generic term)
+stomachic|1
+(adj)|gastric|stomachal|internal organ|viscus (related term)
+stomatal|2
+(adj)|stomatous|orifice|opening|porta (related term)
+(adj)|stomatous|aperture (related term)
+stomate|1
+(noun)|stoma|pore|aperture (generic term)
+stomatitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+stomatopod|1
+(noun)|stomatopod crustacean|crustacean (generic term)
+stomatopod crustacean|1
+(noun)|stomatopod|crustacean (generic term)
+stomatopoda|1
+(noun)|Stomatopoda|order Stomatopoda|animal order (generic term)
+stomatous|3
+(adj)|stomatal|orifice|opening|porta (related term)
+(adj)|stomatal|aperture (related term)
+(adj)|mouthlike (similar term)|astomatous (antonym)
+stomp|2
+(noun)|social dancing (generic term)
+(verb)|stamp|stump|walk (generic term)
+stomper|1
+(noun)|stamper|tramper|trampler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+stone|16
+(adj)|chromatic (similar term)
+(noun)|rock|natural object (generic term)
+(noun)|rock|material (generic term)|stuff (generic term)
+(noun)|building material (generic term)
+(noun)|gem|gemstone|crystal (generic term)
+(noun)|pit|endocarp|pericarp (generic term)|seed vessel (generic term)
+(noun)|avoirdupois unit (generic term)
+(noun)|Stone|Harlan Stone|Harlan F. Stone|Harlan Fisk Stone|chief justice (generic term)
+(noun)|Stone|Oliver Stone|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|Stone|Lucy Stone|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)|suffragist (generic term)
+(noun)|Stone|I. F. Stone|Isidor Feinstein Stone|journalist (generic term)
+(noun)|Stone|Harlan Fiske Stone|jurist (generic term)|legal expert (generic term)
+(noun)|Stone|Edward Durell Stone|architect (generic term)|designer (generic term)
+(noun)|coldness (generic term)|coolness (generic term)|frigidity (generic term)|frigidness (generic term)|iciness (generic term)|chilliness (generic term)
+(verb)|lapidate|kill (generic term)
+(verb)|pit|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+stone's throw|1
+(noun)|step|small indefinite quantity (generic term)|small indefinite amount (generic term)
+stone-blind|1
+(adj)|blind (similar term)|unsighted (similar term)
+stone-broke|1
+(adj)|broke|bust|skint|stony-broke|poor (similar term)
+stone-cold|1
+(adj)|cold (similar term)
+stone-dead|1
+(adj)|dead (similar term)
+stone-deaf|1
+(adj)|profoundly deaf|deaf as a post|unhearing|deaf (similar term)
+stone-face|1
+(noun)|lithops|living stone|stoneface|stone plant|stone life face|flowering stone|succulent (generic term)
+stone-gray|1
+(adj)|slate-grey|slate-gray|slaty-grey|slaty-gray|slaty|slatey|stone-grey|achromatic (similar term)
+stone-grey|1
+(adj)|slate-grey|slate-gray|slaty-grey|slaty-gray|slaty|slatey|stone-gray|achromatic (similar term)
+stone-root|1
+(noun)|horse balm|horseweed|stoneroot|richweed|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+stone-sober|1
+(adj)|cold sober|sober (similar term)
+stone-wash|1
+(verb)|stonewash|wash (generic term)|launder (generic term)
+stone age|1
+(noun)|Stone Age|time period (generic term)|period of time (generic term)|period (generic term)
+stone bass|1
+(noun)|wreckfish|Polyprion americanus|sea bass (generic term)
+stone bramble|1
+(noun)|Rubus saxatilis|bramble bush (generic term)
+stone breaker|1
+(noun)|breaker (generic term)|ledgeman (generic term)
+stone crab|2
+(noun)|crab (generic term)|crabmeat (generic term)
+(noun)|Menippe mercenaria|crab (generic term)
+stone cress|1
+(noun)|stonecress|herb (generic term)|herbaceous plant (generic term)
+stone curlew|1
+(noun)|thick-knee|Burhinus oedicnemus|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+stone drill|1
+(noun)|bore bit|borer|rock drill|drill (generic term)
+stone facing|1
+(noun)|revetment|revetement|facing (generic term)|cladding (generic term)
+stone fly|1
+(noun)|stonefly|plecopteran|insect (generic term)
+stone fruit|1
+(noun)|drupe|fruit (generic term)
+stone life face|1
+(noun)|lithops|living stone|stoneface|stone-face|stone plant|flowering stone|succulent (generic term)
+stone marten|1
+(noun)|beech marten|Martes foina|marten (generic term)|marten cat (generic term)
+stone mimicry plant|1
+(noun)|living granite|living rock|succulent (generic term)
+stone parsley|2
+(noun)|Sison amomum|herb (generic term)|herbaceous plant (generic term)
+(noun)|moon carrot|herb (generic term)|herbaceous plant (generic term)
+stone pine|1
+(noun)|umbrella pine|European nut pine|Pinus pinea|pine (generic term)|pine tree (generic term)|true pine (generic term)
+stone pit|1
+(noun)|pit|quarry|excavation (generic term)
+stone plant|1
+(noun)|lithops|living stone|stoneface|stone-face|stone life face|flowering stone|succulent (generic term)
+stone root|1
+(noun)|horse balm|horseweed|stoneroot|stone-root|richweed|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+stone wall|1
+(noun)|fence (generic term)|fencing (generic term)
+stonechat|1
+(noun)|Saxicola torquata|Old World chat (generic term)|chat (generic term)
+stonecress|1
+(noun)|stone cress|herb (generic term)|herbaceous plant (generic term)
+stonecrop|1
+(noun)|sedum (generic term)
+stonecrop family|1
+(noun)|Crassulaceae|family Crassulaceae|plant family (generic term)
+stonecutter|1
+(noun)|cutter|quarryman (generic term)|quarrier (generic term)
+stoned|1
+(adj)|hopped-up|intoxicated (similar term)|drunk (similar term)|inebriated (similar term)
+stoneface|1
+(noun)|lithops|living stone|stone-face|stone plant|stone life face|flowering stone|succulent (generic term)
+stonefish|1
+(noun)|Synanceja verrucosa|scorpaenid (generic term)|scorpaenid fish (generic term)
+stonefly|1
+(noun)|stone fly|plecopteran|insect (generic term)
+stonehenge|1
+(noun)|Stonehenge|monument (generic term)
+stoneless|1
+(adj)|seedless (similar term)
+stonelike|1
+(adj)|petrous|hard (similar term)
+stonemason|1
+(noun)|mason|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+stoner|1
+(noun)|lapidator|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+stoneroot|1
+(noun)|horse balm|horseweed|stone-root|richweed|stone root|Collinsonia canadensis|herb (generic term)|herbaceous plant (generic term)
+stonewall|2
+(verb)|obstruct (generic term)|blockade (generic term)|block (generic term)|hinder (generic term)|stymie (generic term)|stymy (generic term)|embarrass (generic term)
+(verb)|delay (generic term)|detain (generic term)|hold up (generic term)
+stonewall jackson|1
+(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general (generic term)|full general (generic term)
+stonewaller|1
+(noun)|obstructionist (generic term)|obstructor (generic term)|obstructer (generic term)|resister (generic term)|thwarter (generic term)
+stonewalling|1
+(noun)|stall (generic term)|stalling (generic term)
+stoneware|1
+(noun)|ceramic ware (generic term)
+stonewash|1
+(verb)|stone-wash|wash (generic term)|launder (generic term)
+stonework|1
+(noun)|masonry (generic term)
+stonewort|1
+(noun)|green algae (generic term)|chlorophyte (generic term)
+stoning|1
+(noun)|lapidation|corporal punishment (generic term)
+stony|3
+(adj)|rocky|bouldery|bouldered|rough (similar term)|unsmooth (similar term)
+(adj)|flinty|granitic|obdurate|hardhearted (similar term)|heartless (similar term)
+(adj)|granitic|granitelike|rocklike|hard (similar term)
+stony-broke|1
+(adj)|broke|bust|skint|stone-broke|poor (similar term)
+stony coral|1
+(noun)|madrepore|madriporian coral|coral (generic term)
+stony tunguska|1
+(noun)|Tunguska|Stony Tunguska|river (generic term)
+stonyhearted|1
+(adj)|hardhearted|unfeeling|uncompassionate (similar term)
+stooge|5
+(noun)|flunky|flunkey|yes-man|follower (generic term)
+(noun)|butt|goat|laughingstock|victim (generic term)|dupe (generic term)
+(verb)|cruise (generic term)
+(verb)|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+stool|8
+(noun)|seat (generic term)
+(noun)|fecal matter|faecal matter|feces|faeces|BM|ordure|dejection|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|stump (generic term)|tree stump (generic term)
+(noun)|toilet|can|commode|crapper|pot|potty|throne|plumbing fixture (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+(verb)|react (generic term)|respond (generic term)
+(verb)|tiller|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+(verb)|defecate|shit|take a shit|take a crap|ca-ca|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+stool pigeon|2
+(noun)|fink|snitch|snitcher|stoolpigeon|stoolie|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+(noun)|bait (generic term)|decoy (generic term)|lure (generic term)
+stool test|1
+(noun)|fecal occult test|faecal occult test|diagnostic test (generic term)|diagnostic assay (generic term)
+stoolie|1
+(noun)|fink|snitch|snitcher|stoolpigeon|stool pigeon|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+stoolpigeon|1
+(noun)|fink|snitch|snitcher|stool pigeon|stoolie|sneak|sneaker|canary|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+stoop|8
+(noun)|inclination (generic term)|inclining (generic term)
+(noun)|stoup|basin (generic term)
+(noun)|stoep|porch (generic term)
+(verb)|crouch|bend|bow|bend (generic term)|flex (generic term)|stoop to (related term)
+(verb)|condescend|lower oneself|act (generic term)|move (generic term)
+(verb)|pounce (generic term)|swoop (generic term)
+(verb)|slope (generic term)|incline (generic term)|pitch (generic term)
+(verb)|hold (generic term)|carry (generic term)|bear (generic term)
+stoop to|1
+(verb)|patronize (generic term)|patronise (generic term)|condescend (generic term)
+stooped|1
+(adj)|hunched|round-backed|round-shouldered|stooping|crooked|unerect (similar term)
+stooper|2
+(noun)|salvager (generic term)|salvor (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+stooping|1
+(adj)|hunched|round-backed|round-shouldered|stooped|crooked|unerect (similar term)
+stop|22
+(noun)|halt|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|stoppage|act (generic term)|human action (generic term)|human activity (generic term)
+(noun)|stopover|layover|stay (generic term)
+(noun)|arrest|check|halt|hitch|stay|stoppage|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|stop consonant|occlusive|plosive consonant|plosive speech sound|plosive|obstruent (generic term)|continuant consonant (antonym)
+(noun)|period|point|full stop|full point|punctuation (generic term)|punctuation mark (generic term)
+(noun)|knob (generic term)
+(noun)|diaphragm|mechanical device (generic term)
+(noun)|catch|restraint (generic term)|constraint (generic term)
+(noun)|blockage|block|closure|occlusion|stoppage|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(verb)|halt|start (antonym)
+(verb)|discontinue|cease|give up|quit|lay off|continue (antonym)
+(verb)|halt|block|kibosh|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|stop over|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|start (antonym)
+(verb)|break|break off|discontinue|end (generic term)|terminate (generic term)
+(verb)|check|turn back|arrest|contain|hold back|defend (generic term)
+(verb)|intercept|catch (generic term)|grab (generic term)|take hold of (generic term)
+(verb)|end|finish|terminate|cease|begin (antonym)
+(verb)|barricade|block|blockade|block off|block up|bar|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|hold on|interrupt (generic term)|break (generic term)
+stop-loss order|1
+(noun)|stop order|order (generic term)|purchase order (generic term)
+stop bath|1
+(noun)|short-stop|short-stop bath|developer (generic term)
+stop consonant|1
+(noun)|stop|occlusive|plosive consonant|plosive speech sound|plosive|obstruent (generic term)|continuant consonant (antonym)
+stop dead|1
+(verb)|freeze|stand still (generic term)
+stop number|1
+(noun)|focal ratio|f number|speed|ratio (generic term)
+stop order|1
+(noun)|stop-loss order|order (generic term)|purchase order (generic term)
+stop over|2
+(verb)|lay over|stop (generic term)|stop over (generic term)
+(verb)|stop|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+stop payment|1
+(noun)|order (generic term)|purchase order (generic term)
+stop press|1
+(noun)|news (generic term)
+stop up|1
+(verb)|plug|secure|close (generic term)|fill up (generic term)
+stopcock|1
+(noun)|cock|turncock|faucet (generic term)|spigot (generic term)
+stopes|1
+(noun)|Stopes|Marie Stopes|Marie Charlotte Carmichael Stopes|birth-control campaigner (generic term)|birth-control reformer (generic term)
+stopgap|1
+(noun)|makeshift|make-do|expedient (generic term)
+stoplight|2
+(noun)|brake light|visual signal (generic term)
+(noun)|traffic light|traffic signal|light (generic term)
+stopo watch|1
+(noun)|stopwatch|timer (generic term)
+stopover|2
+(noun)|way station|stop (generic term)
+(noun)|stop|layover|stay (generic term)
+stoppable|1
+(adj)|abatable (similar term)|unstoppable (antonym)
+stoppage|3
+(noun)|arrest|check|halt|hitch|stay|stop|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|blockage|block|closure|occlusion|stop|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|stop|act (generic term)|human action (generic term)|human activity (generic term)
+stoppard|1
+(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist (generic term)|playwright (generic term)
+stopped|1
+(adj)|stopped-up|stopped up|obstructed (similar term)
+stopped-up|2
+(adj)|stopped|stopped up|obstructed (similar term)
+(adj)|chinked|caulked (similar term)
+stopped up|1
+(adj)|stopped|stopped-up|obstructed (similar term)
+stopper|5
+(noun)|plug|stopple|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+(noun)|show-stopper|showstopper|act (generic term)|routine (generic term)|number (generic term)|turn (generic term)|bit (generic term)
+(noun)|conversation stopper|remark (generic term)|comment (generic term)
+(noun)|playing card (generic term)
+(verb)|stopple|plug (generic term)|stop up (generic term)|secure (generic term)
+stopper knot|1
+(noun)|knot (generic term)
+stoppered|1
+(adj)|closed (similar term)
+stopping|2
+(noun)|fillet|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|playing (generic term)
+stopping point|1
+(noun)|finale|finis|finish|last|conclusion|close|end (generic term)|ending (generic term)
+stopple|2
+(noun)|plug|stopper|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+(verb)|stopper|plug (generic term)|stop up (generic term)|secure (generic term)
+stops|1
+(noun)|Michigan|Chicago|Newmarket|boodle|card game (generic term)|cards (generic term)
+stopwatch|1
+(noun)|stopo watch|timer (generic term)
+storage|6
+(noun)|retention (generic term)|keeping (generic term)|holding (generic term)
+(noun)|storehouse|depot|entrepot|store|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|computer operation (generic term)|machine operation (generic term)
+(noun)|memory|computer memory|computer storage|store|memory board|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+(noun)|repositing|reposition|warehousing|deposit (generic term)|deposition (generic term)
+storage allocation|1
+(noun)|allocation|assignment (generic term)|assigning (generic term)
+storage area|1
+(noun)|cargo area|cargo deck|cargo hold|hold|enclosure (generic term)
+storage battery|1
+(noun)|accumulator|voltaic battery (generic term)|galvanic battery (generic term)
+storage cell|1
+(noun)|secondary cell|cell (generic term)|electric cell (generic term)
+storage device|1
+(noun)|memory device|device (generic term)
+storage locker|1
+(noun)|cabinet|locker|compartment (generic term)
+storage medium|1
+(noun)|data-storage medium|medium (generic term)
+storage ring|1
+(noun)|container (generic term)
+storage room|1
+(noun)|storeroom|stowage|room (generic term)
+storage space|1
+(noun)|area (generic term)
+storage tank|1
+(noun)|tank|vessel (generic term)
+storage warehouse|1
+(noun)|warehouse|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+storax|1
+(noun)|natural resin (generic term)
+storax family|1
+(noun)|Styracaceae|family Styracaceae|styrax family|dicot family (generic term)|magnoliopsid family (generic term)
+store|6
+(noun)|shop|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+(noun)|stock|fund|accumulation (generic term)
+(noun)|memory|computer memory|storage|computer storage|memory board|memory device (generic term)|storage device (generic term)|hardware (generic term)|computer hardware (generic term)
+(noun)|storehouse|depot|entrepot|storage|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+(verb)|hive away|lay in|put in|salt away|stack away|stash away|keep (generic term)|hold on (generic term)
+(verb)|keep (generic term)|hold on (generic term)
+store-bought|1
+(adj)|boughten|factory-made (similar term)
+store cheese|1
+(noun)|rat cheese|cheddar (generic term)|cheddar cheese (generic term)|Armerican cheddar (generic term)|American cheese (generic term)
+store detective|1
+(noun)|private detective (generic term)|PI (generic term)|private eye (generic term)|private investigator (generic term)|operative (generic term)|shamus (generic term)|sherlock (generic term)
+stored-program|1
+(adj)|program|programme|computer program|computer programme (related term)
+stored-up|1
+(adj)|saved up|stored up|concentrated (similar term)
+stored program|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+stored up|1
+(adj)|saved up|stored-up|concentrated (similar term)
+storefront|1
+(noun)|shopfront|front (generic term)
+storehouse|1
+(noun)|depot|entrepot|storage|store|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+storekeeper|1
+(noun)|shopkeeper|tradesman|market keeper|merchant (generic term)|merchandiser (generic term)
+storeria|1
+(noun)|Storeria|genus Storeria|reptile genus (generic term)
+storeria occipitamaculata|1
+(noun)|red-bellied snake|Storeria occipitamaculata|colubrid snake (generic term)|colubrid (generic term)
+storeroom|1
+(noun)|storage room|stowage|room (generic term)
+storey|1
+(noun)|floor|level|story|structure (generic term)|construction (generic term)
+storeyed|1
+(adj)|storied|high-rise (similar term)
+storied|2
+(adj)|celebrated|historied|glorious (similar term)
+(adj)|storeyed|high-rise (similar term)
+stork|1
+(noun)|wading bird (generic term)|wader (generic term)
+stork-like|1
+(adj)|animal (similar term)
+storksbill|1
+(noun)|heron's bill|geranium (generic term)
+storm|7
+(noun)|violent storm|atmospheric phenomenon (generic term)
+(noun)|tempest|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|assault (generic term)
+(verb)|ramp|rage|act (generic term)|behave (generic term)|do (generic term)
+(verb)|force|penetrate (generic term)|perforate (generic term)
+(verb)|blow (generic term)
+(verb)|surprise|attack (generic term)|assail (generic term)
+storm-beaten|1
+(adj)|damaged (similar term)
+storm-tossed|1
+(adj)|buffeted|tempest-tossed|tempest-tost|tempest-swept|troubled (similar term)
+storm cellar|1
+(noun)|cyclone cellar|tornado cellar|shelter (generic term)
+storm center|2
+(noun)|storm centre|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|storm centre|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+storm centre|2
+(noun)|storm center|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|storm center|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+storm cloud|1
+(noun)|cloud (generic term)
+storm cone|1
+(noun)|storm signal (generic term)
+storm door|1
+(noun)|door (generic term)
+storm lamp|1
+(noun)|hurricane lamp|hurricane lantern|tornado lantern|storm lantern|lamp (generic term)
+storm lantern|1
+(noun)|hurricane lamp|hurricane lantern|tornado lantern|storm lamp|lamp (generic term)
+storm petrel|1
+(noun)|petrel (generic term)
+storm sash|1
+(noun)|storm window|window (generic term)
+storm signal|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+storm trooper|1
+(noun)|Nazi (generic term)|German Nazi (generic term)
+storm troops|1
+(noun)|SA|Sturmarbeiteilung|Storm Troops|militia (generic term)|reserves (generic term)
+storm window|1
+(noun)|storm sash|window (generic term)
+stormbound|1
+(adj)|confined (similar term)
+stormily|1
+(adv)|turbulently|passionately
+storminess|2
+(noun)|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+(noun)|passion (generic term)|passionateness (generic term)
+stormproof|1
+(adj)|protected (similar term)|secure (similar term)
+stormy|2
+(adj)|angry (similar term)|furious (similar term)|raging (similar term)|tempestuous (similar term)|wild (similar term)|billowy (similar term)|billowing (similar term)|surging (similar term)|blustering (similar term)|blusterous (similar term)|blustery (similar term)|boisterous (similar term)|fierce (similar term)|rough (similar term)|blowy (similar term)|breezy (similar term)|windy (similar term)|choppy (similar term)|dirty (similar term)|gusty (similar term)|puffy (similar term)|squally (similar term)|thundery (similar term)|inclement (related term)|unpeaceful (related term)|calm (antonym)
+(adj)|tempestuous|unpeaceful (similar term)
+stormy petrel|1
+(noun)|northern storm petrel|Hydrobates pelagicus|storm petrel (generic term)
+story|6
+(noun)|narrative|narration|tale|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|fiction (generic term)
+(noun)|floor|level|storey|structure (generic term)|construction (generic term)
+(noun)|history|account|chronicle|record (generic term)
+(noun)|report|news report|account|write up|news (generic term)
+(noun)|fib|tale|tarradiddle|taradiddle|lie (generic term)|prevarication (generic term)
+storybook|1
+(noun)|book (generic term)
+storyline|1
+(noun)|plot line|plot (generic term)
+storyteller|2
+(noun)|narrator|teller|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|fibber|fabricator|liar (generic term)|prevaricator (generic term)
+stotinka|1
+(noun)|Bulgarian monetary unit (generic term)
+stoup|2
+(noun)|drinking vessel (generic term)
+(noun)|stoop|basin (generic term)
+stout|5
+(adj)|stalwart|resolute (similar term)
+(adj)|portly|fat (similar term)
+(adj)|hardy|stalwart|sturdy|robust (similar term)
+(noun)|ale (generic term)
+(noun)|size (generic term)
+stout-billed|1
+(adj)|beaked (similar term)
+stout-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+stouthearted|1
+(adj)|stalwart|brave (similar term)|courageous (similar term)
+stoutheartedness|1
+(noun)|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)|faintheartedness (antonym)
+stoutness|2
+(noun)|stalwartness|strength (generic term)
+(noun)|corpulence|overweight|adiposis|fleshiness (generic term)|obesity (generic term)|corpulency (generic term)
+stove|2
+(noun)|kitchen stove|range|kitchen range|cooking stove|kitchen appliance (generic term)
+(noun)|heater (generic term)|warmer (generic term)
+stove bolt|1
+(noun)|bolt (generic term)
+stove poker|1
+(noun)|poker|fire hook|salamander|fire iron (generic term)
+stovepipe|2
+(noun)|chimney (generic term)
+(noun)|dress hat|high hat|opera hat|silk hat|top hat|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+stovepipe iron|1
+(noun)|plate iron (generic term)
+stovepiped|1
+(adj)|retrieval (related term)
+stovepiping|1
+(noun)|retrieval (generic term)
+stover|1
+(noun)|fodder (generic term)
+stow|1
+(verb)|pack (generic term)
+stow away|1
+(verb)|hide (generic term)|hide out (generic term)
+stowage|3
+(noun)|charge (generic term)
+(noun)|storeroom|storage room|room (generic term)
+(noun)|stowing|storage (generic term)
+stowaway|1
+(noun)|passenger (generic term)|rider (generic term)
+stowe|1
+(noun)|Stowe|Harriet Beecher Stowe|Harriet Elizabeth Beecher Stowe|writer (generic term)|author (generic term)|abolitionist (generic term)|emancipationist (generic term)
+stowing|1
+(noun)|stowage|storage (generic term)
+stp|1
+(noun)|STP|s.t.p.|standard temperature (generic term)|standard atmosphere (generic term)|atmosphere (generic term)|atm (generic term)|standard pressure (generic term)
+strabismus|1
+(noun)|squint|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+strabotomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+strachey|1
+(noun)|Strachey|Lytton Strachey|Giles Lytton Strachey|biographer (generic term)
+strad|1
+(noun)|Stradavarius|Strad|violin (generic term)|fiddle (generic term)
+stradavarius|1
+(noun)|Stradavarius|Strad|violin (generic term)|fiddle (generic term)
+straddle|7
+(noun)|position (generic term)|view (generic term)|perspective (generic term)
+(noun)|gymnastic exercise (generic term)
+(noun)|span|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|option (generic term)
+(verb)|be (generic term)
+(verb)|range|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|side (antonym)
+stradivari|1
+(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker (generic term)
+stradivarius|1
+(noun)|Stradivari|Antonio Stradivari|Stradivarius|Antonius Stradivarius|violin maker (generic term)
+strafe|2
+(noun)|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(verb)|attack (generic term)|assail (generic term)
+strafer|1
+(noun)|combat pilot (generic term)
+straggle|3
+(noun)|group (generic term)|grouping (generic term)
+(verb)|sidetrack|depart|digress|deviate (generic term)|divert (generic term)
+(verb)|sprawl|spread (generic term)|distribute (generic term)
+straggler|1
+(noun)|strayer|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+straggling|1
+(adj)|sprawling|straggly|untidy (similar term)
+stragglingly|1
+(adv)|raggedly
+straggly|2
+(adj)|sprawling|straggling|untidy (similar term)
+(adj)|distributed (similar term)
+straight|20
+(adj)|consecutive|continuous (similar term)|uninterrupted (similar term)
+(adj)|aligned (similar term)|unbent (similar term)|untwisted (similar term)|direct (related term)|vertical (related term)|perpendicular (related term)|crooked (antonym)
+(adj)|uncurled (similar term)|unpermed (similar term)|curly (antonym)
+(adj)|unbent|unbowed|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|accurate (similar term)
+(adj)|square|aboveboard (similar term)|straightforward (similar term)|guileless (similar term)|transparent (similar term)|straightarrow (similar term)|honest (related term)|honorable (related term)|lawful (related term)|crooked (antonym)
+(adj)|uncoiled|uncurled (similar term)|coiled (antonym)
+(adj)|trabeated (similar term)|trabeate (similar term)|uncurved (similar term)|uncurving (similar term)|curved (antonym)
+(adj)|tidy (similar term)
+(adj)|heterosexual (similar term)
+(adj)|true|even (similar term)
+(adj)|square|straightforward|direct (similar term)
+(adj)|neat|full-strength|undiluted (similar term)
+(adj)|correct (similar term)|right (similar term)
+(adj)|square|conventional (similar term)
+(noun)|heterosexual|heterosexual person|straight person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|poker hand (generic term)
+(noun)|straightaway|section (generic term)|segment (generic term)
+(adv)|directly|direct
+(adv)|directly|flat|indirectly (antonym)
+straight-arm|1
+(noun)|maneuver (generic term)|manoeuvre (generic term)|evasive action (generic term)
+straight-backed|3
+(adj)|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|backed (similar term)
+(adv)|erectly
+straight-billed|1
+(adj)|beaked (similar term)
+straight-fluted drill|1
+(noun)|straight flute|bore bit (generic term)|borer (generic term)|rock drill (generic term)|stone drill (generic term)
+straight-from-the-shoulder|1
+(adj)|blunt|candid|forthright|frank|free-spoken|outspoken|plainspoken|point-blank|direct (similar term)
+straight-grained|1
+(adj)|even (similar term)
+straight-laced|1
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|tight-laced|victorian|proper (similar term)
+straight-legged|1
+(adj)|legged (similar term)
+straight-line method|1
+(noun)|straight-line method of depreciation|depreciation (generic term)|wear and tear (generic term)
+straight-line method of depreciation|1
+(noun)|straight-line method|depreciation (generic term)|wear and tear (generic term)
+straight-out|1
+(adj)|outright|unlimited|unqualified (similar term)
+straight and narrow|1
+(noun)|strait and narrow|way (generic term)|path (generic term)|way of life (generic term)
+straight angle|1
+(noun)|angular unit (generic term)
+straight arch|1
+(noun)|flat arch|arch (generic term)
+straight arrow|1
+(noun)|square shooter|straight shooter|good person (generic term)|liar (antonym)
+straight chain|1
+(noun)|open chain (generic term)
+straight chair|1
+(noun)|side chair|chair (generic term)
+straight face|1
+(noun)|facial expression (generic term)|facial gesture (generic term)
+straight flush|1
+(noun)|poker hand (generic term)
+straight flute|1
+(noun)|straight-fluted drill|bore bit (generic term)|borer (generic term)|rock drill (generic term)|stone drill (generic term)
+straight hang|1
+(noun)|hang (generic term)
+straight life insurance|1
+(noun)|whole life insurance|ordinary life insurance|life insurance (generic term)|life assurance (generic term)
+straight line|1
+(noun)|line (generic term)|curve (antonym)
+straight man|1
+(noun)|second banana|performer (generic term)|performing artist (generic term)
+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 (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+straight pin|1
+(noun)|pin (generic term)
+straight poker|1
+(noun)|poker (generic term)|poker game (generic term)
+straight razor|1
+(noun)|razor (generic term)
+straight shooter|1
+(noun)|square shooter|straight arrow|good person (generic term)|liar (antonym)
+straight sinus|1
+(noun)|tentorial sinus|sinus rectus|venous sinus (generic term)|sinus (generic term)
+straight thrust|1
+(noun)|lunge|passado|stab (generic term)|thrust (generic term)|knife thrust (generic term)
+straight ticket|1
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)|split ticket (antonym)
+straightarrow|1
+(adj)|straight (similar term)|square (similar term)
+straightaway|3
+(adj)|immediate|prompt|quick|fast (similar term)
+(noun)|straight|section (generic term)|segment (generic term)
+(adv)|immediately|instantly|straight off|directly|now|right away|at once|forthwith|in real time|like a shot
+straightedge|1
+(noun)|hand tool (generic term)
+straighten|6
+(verb)|unbend|change posture (generic term)|bend (antonym)
+(verb)|straighten out|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change posture (generic term)
+(verb)|tidy|tidy up|clean up|neaten|straighten out|square away|order (generic term)
+(verb)|roll out|unwind (generic term)|disentangle (generic term)
+(verb)|arrange (generic term)|set up (generic term)|straighten out (related term)|straighten out (related term)
+straighten out|6
+(verb)|iron out|put right|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|disentangle|unsnarl|order (generic term)|snarl (antonym)|entangle (antonym)
+(verb)|reform|see the light|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|straighten|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|clear|clear up|shed light on|crystallize|crystallise|crystalize|crystalise|sort out|enlighten|illuminate|elucidate|clarify (generic term)|clear up (generic term)|elucidate (generic term)
+(verb)|tidy|tidy up|clean up|neaten|straighten|square away|order (generic term)
+straighten up|1
+(verb)|draw up|pull up|straighten (generic term)
+straightener|1
+(noun)|device (generic term)
+straightforward|4
+(adj)|unequivocal (similar term)|univocal (similar term)|unambiguous (similar term)
+(adj)|square|straight|direct (similar term)
+(adj)|aboveboard|straight (similar term)|square (similar term)
+(adj)|direct (similar term)
+straightforwardly|1
+(adv)|squarely|foursquare
+straightforwardness|2
+(noun)|downrightness|directness (generic term)|straightness (generic term)
+(noun)|singleness|sincerity (generic term)
+straightjacket|1
+(noun)|straitjacket|garment (generic term)
+straightlaced|1
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straight-laced|tight-laced|victorian|proper (similar term)
+straightness|5
+(noun)|curvature (generic term)|curve (generic term)|curliness (antonym)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)|crookedness (antonym)
+(noun)|directness|characteristic (generic term)|indirectness (antonym)
+(noun)|good faith|honesty (generic term)|honestness (generic term)
+(noun)|heterosexuality|heterosexualism|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+strain|21
+(noun)|deformation (generic term)
+(noun)|stress|difficulty (generic term)
+(noun)|tune|melody|air|melodic line|line|melodic phrase|music (generic term)
+(noun)|mental strain|nervous strain|nervousness (generic term)|nerves (generic term)
+(noun)|breed|stock|variety (generic term)|animal group (generic term)
+(noun)|form|variant|var.|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|breed|ancestry (generic term)|lineage (generic term)|derivation (generic term)|filiation (generic term)
+(noun)|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|tenor|meaning (generic term)|substance (generic term)
+(noun)|striving|nisus|pains|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|straining|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(noun)|song|vocal music (generic term)
+(verb)|strive|reach|tug (generic term)|labor (generic term)|labour (generic term)|push (generic term)|drive (generic term)
+(verb)|try|stress|afflict (generic term)
+(verb)|extend|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|sift|sieve|separate (generic term)|sieve out (related term)
+(verb)|tense|tense up|affect (generic term)|unstrain (antonym)|relax (antonym)
+(verb)|tense|tighten (generic term)
+(verb)|filter|filtrate|separate out|filter out|separate (generic term)
+(verb)|puree|rub (generic term)
+(verb)|deform|distort|shape (generic term)|form (generic term)
+strain gage|1
+(noun)|strain gauge|gauge (generic term)|gage (generic term)
+strain gauge|1
+(noun)|strain gage|gauge (generic term)|gage (generic term)
+strained|4
+(adj)|labored|laboured|awkward (similar term)
+(adj)|tense (similar term)
+(adj)|constrained|forced|affected (similar term)|unnatural (similar term)
+(adj)|agonistic|affected (similar term)|unnatural (similar term)
+strainer|1
+(noun)|filter (generic term)
+strainer vine|1
+(noun)|luffa|dishcloth gourd|sponge gourd|rag gourd|vine (generic term)
+straining|3
+(adj)|arduous|strenuous|effortful (similar term)
+(noun)|strain|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(noun)|distortion|overrefinement|torture|twisting|falsification (generic term)|misrepresentaation (generic term)
+strait|3
+(adj)|narrow (similar term)
+(noun)|sound|channel (generic term)
+(noun)|pass|straits|situation (generic term)
+strait-laced|1
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+strait and narrow|1
+(noun)|straight and narrow|way (generic term)|path (generic term)|way of life (generic term)
+strait of calais|1
+(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait (generic term)|sound (generic term)
+strait of dover|1
+(noun)|Strait of Dover|Strait of Calais|Pas de Calais|strait (generic term)|sound (generic term)
+strait of georgia|1
+(noun)|Strait of Georgia|strait (generic term)|sound (generic term)
+strait of gibraltar|1
+(noun)|Strait of Gibraltar|strait (generic term)|sound (generic term)
+strait of hormuz|1
+(noun)|Strait of Hormuz|Strait of Ormuz|strait (generic term)|sound (generic term)
+strait of magellan|1
+(noun)|Strait of Magellan|strait (generic term)|sound (generic term)
+strait of messina|1
+(noun)|Strait of Messina|strait (generic term)|sound (generic term)
+strait of ormuz|1
+(noun)|Strait of Hormuz|Strait of Ormuz|strait (generic term)|sound (generic term)
+straiten|1
+(verb)|confine (generic term)|detain (generic term)
+straitjacket|2
+(noun)|hindrance (generic term)|hinderance (generic term)|deterrent (generic term)|impediment (generic term)|balk (generic term)|baulk (generic term)|check (generic term)|handicap (generic term)
+(noun)|straightjacket|garment (generic term)
+straitlaced|1
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|strait-laced|straightlaced|straight-laced|tight-laced|victorian|proper (similar term)
+straits|2
+(noun)|pass|strait|situation (generic term)
+(noun)|pass|head|juncture (generic term)|occasion (generic term)
+strake|1
+(noun)|wale|board (generic term)|plank (generic term)
+strand|7
+(noun)|form (generic term)|shape (generic term)|pattern (generic term)
+(noun)|line (generic term)
+(noun)|chain|string|necklace (generic term)
+(noun)|fibril|filament|fiber (generic term)|fibre (generic term)
+(noun)|shore (generic term)
+(noun)|Strand|street (generic term)
+(verb)|maroon|abandon (generic term)|forsake (generic term)|desolate (generic term)|desert (generic term)
+strand wolf|1
+(noun)|brown hyena|Hyaena brunnea|hyena (generic term)|hyaena (generic term)
+stranded|2
+(adj)|isolated|marooned|unaccompanied (similar term)
+(adj)|aground (similar term)
+strange|3
+(adj)|unusual|antic (similar term)|fantastic (similar term)|fantastical (similar term)|grotesque (similar term)|crazy (similar term)|curious (similar term)|funny (similar term)|odd (similar term)|peculiar (similar term)|queer (similar term)|rum (similar term)|rummy (similar term)|singular (similar term)|eerie (similar term)|eery (similar term)|exotic (similar term)|freaky (similar term)|gothic (similar term)|oddish (similar term)|other (similar term)|quaint (similar term)|quaint (similar term)|weird (similar term)|familiar (antonym)
+(adj)|unknown|unfamiliar (similar term)
+(adj)|foreign|adventive (similar term)|alien (similar term)|exotic (similar term)|nonnative (similar term)|established (similar term)|naturalized (similar term)|foreign-born (similar term)|nonnative (similar term)|imported (similar term)|tramontane (similar term)|unnaturalized (similar term)|unnaturalised (similar term)|native (antonym)
+strange attractor|1
+(noun)|chaotic attractor|attractor (generic term)|attracter (generic term)
+strange particle|1
+(noun)|elementary particle (generic term)|fundamental particle (generic term)
+strange quark|1
+(noun)|squark|quark (generic term)
+strangely|1
+(adv)|queerly|oddly|funnily
+strangeness|3
+(noun)|unfamiliarity|unusualness (generic term)|familiarity (antonym)
+(noun)|flavor (generic term)|flavour (generic term)
+(noun)|foreignness|curiousness|quality (generic term)|nativeness (antonym)
+stranger|1
+(noun)|alien|unknown|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+strangle|6
+(verb)|strangulate|throttle|kill (generic term)
+(verb)|smother|stifle|muffle|repress|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+(verb)|suffocate (generic term)|stifle (generic term)|asphyxiate (generic term)
+(verb)|hamper|halter|cramp|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|choke|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|gag|choke|suffocate|suffer (generic term)|hurt (generic term)
+strangled|1
+(adj)|smothered|stifled|suppressed|inhibited (similar term)
+stranglehold|2
+(noun)|chokehold|throttlehold|power (generic term)|powerfulness (generic term)
+(noun)|wrestling hold (generic term)
+strangler|2
+(noun)|strangler tree|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+(noun)|garroter|garrotter|throttler|choker|killer (generic term)|slayer (generic term)
+strangler fig|2
+(noun)|golden fig|Florida strangler fig|wild fig|Ficus aurea|fig tree (generic term)
+(noun)|pitch apple|Clusia rosea|Clusia major|strangler (generic term)|strangler tree (generic term)
+strangler tree|1
+(noun)|strangler|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+strangles|1
+(noun)|equine distemper|distemper (generic term)
+strangling|1
+(noun)|choking|strangulation|throttling|suffocation (generic term)|asphyxiation (generic term)
+strangulate|3
+(verb)|strangle|throttle|kill (generic term)
+(verb)|compress (generic term)|constrict (generic term)|squeeze (generic term)|compact (generic term)|contract (generic term)|press (generic term)
+(verb)|constrict (generic term)|constringe (generic term)|narrow (generic term)
+strangulation|3
+(noun)|choking|strangling|throttling|suffocation (generic term)|asphyxiation (generic term)
+(noun)|disorder (generic term)|upset (generic term)
+(noun)|constriction (generic term)
+strap|8
+(noun)|leather strip (generic term)
+(noun)|hanger (generic term)
+(noun)|shoulder strap|band (generic term)
+(noun)|whip (generic term)
+(verb)|tie (generic term)|bind (generic term)|unstrap (antonym)
+(verb)|flog|welt|whip|lather|lash|slash|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|sharpen (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+strap fern|1
+(noun)|fern (generic term)
+strap hinge|1
+(noun)|joint hinge|hinge (generic term)|flexible joint (generic term)
+strapado|1
+(noun)|strappado|torture (generic term)|torturing (generic term)
+straphanger|2
+(noun)|commuter (generic term)
+(noun)|passenger (generic term)|rider (generic term)
+strapless|2
+(adj)|unsupported (similar term)
+(noun)|dress (generic term)|frock (generic term)
+straplike|1
+(adj)|narrow (similar term)
+strappado|1
+(noun)|strapado|torture (generic term)|torturing (generic term)
+strapper|1
+(noun)|bull|bruiser|Samson|man (generic term)|adult male (generic term)
+strapping|1
+(adj)|beefy|burly|husky|buirdly|robust (similar term)
+strasberg|1
+(noun)|Strasberg|Lee Strasberg|Israel Strassberg|film director (generic term)|director (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+strasbourg|1
+(noun)|Strasbourg|Strassburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+strassburg|1
+(noun)|Strasbourg|Strassburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+stratagem|2
+(noun)|ploy|gambit|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|contrivance|dodge|scheme (generic term)|strategy (generic term)
+strategian|1
+(noun)|strategist|planner (generic term)|contriver (generic term)|deviser (generic term)
+strategic|2
+(adj)|strategical|plan of action (related term)
+(adj)|important (similar term)|of import (similar term)
+strategic arms limitation talks|1
+(noun)|Strategic Arms Limitation Talks|SALT|diplomacy (generic term)|diplomatic negotiations (generic term)
+strategic buyout|1
+(noun)|buyout (generic term)
+strategic intelligence|1
+(noun)|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+strategic warning|1
+(noun)|warning (generic term)
+strategical|1
+(adj)|strategic|plan of action (related term)
+strategics|1
+(noun)|science (generic term)|scientific discipline (generic term)
+strategist|1
+(noun)|strategian|planner (generic term)|contriver (generic term)|deviser (generic term)
+strategy|2
+(noun)|scheme|plan of action (generic term)
+(noun)|military science (generic term)
+stratford-on-avon|1
+(noun)|Stratford-on-Avon|Stratford-upon-Avon|town (generic term)
+stratford-upon-avon|1
+(noun)|Stratford-on-Avon|Stratford-upon-Avon|town (generic term)
+stratification|5
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+(noun)|social stratification|condition (generic term)
+(noun)|geological process (generic term)|geologic process (generic term)
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+stratified|3
+(adj)|graded|ranked|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+(adj)|bedded|foliate (similar term)|foliated (similar term)|foliaceous (similar term)|laminar (similar term)|laminal (similar term)|layered (similar term)|superimposed (similar term)|sheetlike (similar term)|unstratified (antonym)
+(adj)|class-conscious|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+stratified language|1
+(noun)|programming language (generic term)|programing language (generic term)|unstratified language (antonym)
+stratified sample|1
+(noun)|representative sample|proportional sample|sample distribution (generic term)|sample (generic term)|sampling (generic term)
+stratified sampling|1
+(noun)|representative sampling|proportional sampling|sampling (generic term)
+stratify|5
+(verb)|distinguish (generic term)|separate (generic term)|differentiate (generic term)|secern (generic term)|secernate (generic term)|severalize (generic term)|severalise (generic term)|tell (generic term)|tell apart (generic term)
+(verb)|arrange (generic term)|set up (generic term)
+(verb)|change (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|inseminate (generic term)|fecundate (generic term)|fertilize (generic term)|fertilise (generic term)
+stratigraphy|1
+(noun)|geology (generic term)
+stratocracy|1
+(noun)|military government|government (generic term)|authorities (generic term)|regime (generic term)
+stratosphere|1
+(noun)|layer (generic term)
+stratum|2
+(noun)|layer (generic term)
+(noun)|level|layer|place (generic term)
+stratum basale|1
+(noun)|stratum germinativum|malpighian layer|rete Malpighii|stratum (generic term)
+stratum corneum|1
+(noun)|corneum|horny layer|stratum (generic term)
+stratum germinativum|1
+(noun)|stratum basale|malpighian layer|rete Malpighii|stratum (generic term)
+stratum granulosum|1
+(noun)|stratum (generic term)
+stratum lucidum|1
+(noun)|stratum (generic term)
+stratus|1
+(noun)|stratus cloud|cloud (generic term)
+stratus cloud|1
+(noun)|stratus|cloud (generic term)
+strauss|3
+(noun)|Strauss|Richard Strauss|composer (generic term)
+(noun)|Strauss|Johann Strauss|Strauss the Younger|composer (generic term)
+(noun)|Strauss|Johann Strauss|Strauss the Elder|composer (generic term)
+strauss the elder|1
+(noun)|Strauss|Johann Strauss|Strauss the Elder|composer (generic term)
+strauss the younger|1
+(noun)|Strauss|Johann Strauss|Strauss the Younger|composer (generic term)
+stravinskian|1
+(adj)|Stravinskyan|Stravinskian|composer (related term)
+stravinsky|2
+(noun)|Stravinsky|Igor Stravinsky|Igor Fyodorovich Stravinsky|composer (generic term)
+(noun)|Stravinsky|music (generic term)
+stravinskyan|1
+(adj)|Stravinskyan|Stravinskian|composer (related term)
+straw|7
+(adj)|chromatic (similar term)
+(noun)|plant fiber (generic term)|plant fibre (generic term)
+(noun)|chaff|husk|shuck|stalk|stubble|plant material (generic term)
+(noun)|pale yellow|yellow (generic term)|yellowness (generic term)
+(noun)|drinking straw|tube (generic term)|tubing (generic term)
+(verb)|cover (generic term)
+(verb)|strew|spread (generic term)|distribute (generic term)
+straw-colored|1
+(adj)|straw-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+straw-coloured|1
+(adj)|straw-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+straw boss|1
+(noun)|assistant foreman|foreman (generic term)|chief (generic term)|gaffer (generic term)|honcho (generic term)|boss (generic term)
+straw foxglove|1
+(noun)|yellow foxglove|Digitalis lutea|foxglove (generic term)|digitalis (generic term)
+straw hat|1
+(noun)|boater|leghorn|Panama|Panama hat|sailor|skimmer|hat (generic term)|chapeau (generic term)|lid (generic term)
+straw man|3
+(noun)|front man|front|figurehead|nominal head|strawman|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|strawman|specious argument (generic term)
+(noun)|scarecrow|strawman|bird-scarer|scarer|effigy (generic term)|image (generic term)|simulacrum (generic term)
+straw mushroom|1
+(noun)|Chinese mushroom|Volvariella volvacea|agaric (generic term)
+straw poll|1
+(noun)|straw vote|poll (generic term)|opinion poll (generic term)|public opinion poll (generic term)|canvass (generic term)
+straw vote|1
+(noun)|straw poll|poll (generic term)|opinion poll (generic term)|public opinion poll (generic term)|canvass (generic term)
+straw wine|1
+(noun)|dessert wine (generic term)
+strawberry|3
+(noun)|berry (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|strawberry mark|hemangioma simplex|birthmark (generic term)|nevus (generic term)
+strawberry-shrub family|1
+(noun)|Calycanthaceae|family Calycanthaceae|calycanthus family|magnoliid dicot family (generic term)
+strawberry blite|1
+(noun)|strawberry pigweed|Indian paint|Chenopodium capitatum|goosefoot (generic term)
+strawberry bush|2
+(noun)|wahoo|Euonymus americanus|shrub (generic term)|bush (generic term)
+(noun)|Carolina allspice|strawberry shrub|sweet shrub|Calycanthus floridus|allspice (generic term)
+strawberry daiquiri|1
+(noun)|daiquiri (generic term)|rum cocktail (generic term)
+strawberry geranium|1
+(noun)|strawberry saxifrage|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+strawberry guava|1
+(noun)|guava|yellow cattley guava|Psidium littorale|fruit tree (generic term)
+strawberry haemangioma|1
+(noun)|strawberry hemangioma|hemangioma (generic term)|haemangioma (generic term)
+strawberry hemangioma|1
+(noun)|strawberry haemangioma|hemangioma (generic term)|haemangioma (generic term)
+strawberry ice cream|1
+(noun)|ice cream (generic term)|icecream (generic term)
+strawberry jam|1
+(noun)|strawberry preserves|jam (generic term)
+strawberry mark|1
+(noun)|strawberry|hemangioma simplex|birthmark (generic term)|nevus (generic term)
+strawberry pigweed|1
+(noun)|strawberry blite|Indian paint|Chenopodium capitatum|goosefoot (generic term)
+strawberry preserves|1
+(noun)|strawberry jam|jam (generic term)
+strawberry saxifrage|1
+(noun)|strawberry geranium|mother-of-thousands|Saxifraga stolonifera|Saxifraga sarmentosam|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+strawberry shrub|1
+(noun)|Carolina allspice|strawberry bush|sweet shrub|Calycanthus floridus|allspice (generic term)
+strawberry tomato|2
+(noun)|dwarf cape gooseberry|Physalis pruinosa|ground cherry (generic term)|husk tomato (generic term)
+(noun)|downy ground cherry|Physalis pubescens|ground cherry (generic term)|husk tomato (generic term)
+strawberry tree|1
+(noun)|Irish strawberry|Arbutus unedo|arbutus (generic term)
+strawboard|1
+(noun)|cardboard (generic term)|composition board (generic term)
+strawflower|3
+(noun)|cornflower|Uvularia grandiflora|bellwort (generic term)|merry bells (generic term)|wild oats (generic term)
+(noun)|everlasting (generic term)|everlasting flower (generic term)
+(noun)|golden everlasting|yellow paper daisy|Helichrysum bracteatum|everlasting (generic term)|everlasting flower (generic term)
+strawman|3
+(noun)|front man|front|figurehead|nominal head|straw man|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|straw man|specious argument (generic term)
+(noun)|scarecrow|straw man|bird-scarer|scarer|effigy (generic term)|image (generic term)|simulacrum (generic term)
+strawworm|2
+(noun)|caddisworm|caseworm (generic term)
+(noun)|jointworm|larva (generic term)
+stray|5
+(adj)|isolated|sporadic (similar term)
+(noun)|alley cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+(verb)|roll|wander|swan|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|err|drift|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|digress|divagate|wander|tell (generic term)
+strayer|1
+(noun)|straggler|dawdler (generic term)|drone (generic term)|laggard (generic term)|lagger (generic term)|trailer (generic term)|poke (generic term)
+straying|1
+(adj)|lost (similar term)
+streak|7
+(noun)|run|succession (generic term)
+(noun)|characteristic (generic term)
+(noun)|stripe|marking (generic term)
+(noun)|flash (generic term)
+(verb)|move (generic term)
+(verb)|run (generic term)
+(verb)|mottle|blotch|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+streaked|1
+(adj)|streaky|patterned (similar term)
+streaker|1
+(noun)|exhibitionist (generic term)|flasher (generic term)|nude (generic term)|nude person (generic term)
+streaky|1
+(adj)|streaked|patterned (similar term)
+stream|10
+(noun)|watercourse|body of water (generic term)|water (generic term)
+(noun)|flow|current|course (generic term)|line (generic term)
+(noun)|current|flow (generic term)|flowing (generic term)
+(noun)|flow|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|flow|motion (generic term)
+(verb)|float (generic term)|drift (generic term)|be adrift (generic term)|blow (generic term)
+(verb)|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+(verb)|pour|swarm|teem|pullulate|crowd (generic term)|crowd together (generic term)
+(verb)|pour|pelt|rain cats and dogs|rain buckets|rain (generic term)|rain down (generic term)
+(verb)|well out|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+stream of consciousness|2
+(noun)|prose (generic term)
+(noun)|consciousness (generic term)
+stream orchid|1
+(noun)|chatterbox|giant helleborine|Epipactis gigantea|helleborine (generic term)
+streambed|1
+(noun)|creek bed|bed (generic term)|bottom (generic term)
+streamer|4
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|banner|headline (generic term)|newspaper headline (generic term)
+(noun)|pennant|pennon|waft|flag (generic term)
+(noun)|banner|flag (generic term)
+streamer fly|1
+(noun)|fly (generic term)
+streaming|2
+(adj)|flowing|moving (similar term)
+(noun)|cyclosis|organic phenomenon (generic term)
+streamlet|1
+(noun)|rivulet|rill|run|runnel|stream (generic term)|watercourse (generic term)
+streamline|1
+(verb)|contour (generic term)
+streamline flow|1
+(noun)|flow (generic term)
+streamlined|2
+(adj)|efficient (similar term)
+(adj)|aerodynamic|flowing|sleek|smooth (similar term)
+streamliner|1
+(noun)|train (generic term)|railroad train (generic term)
+streep|1
+(noun)|Streep|Meryl Streep|actress (generic term)
+street|4
+(noun)|thoroughfare (generic term)
+(noun)|environment (generic term)
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|neighborhood (generic term)|neighbourhood (generic term)
+street-walk|1
+(verb)|streetwalk|prostitute (generic term)
+street address|1
+(noun)|address (generic term)
+street arab|1
+(noun)|gamin|throwaway|street urchin (generic term)|guttersnipe (generic term)
+street child|1
+(noun)|waif|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+street cleaner|1
+(noun)|street sweeper|cleaner (generic term)
+street clothes|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+street corner|1
+(noun)|corner|turning point|intersection (generic term)|crossroad (generic term)|crossway (generic term)|crossing (generic term)|carrefour (generic term)
+street cred|1
+(noun)|street credibility|cred|credibility (generic term)|credibleness (generic term)|believability (generic term)
+street credibility|1
+(noun)|street cred|cred|credibility (generic term)|credibleness (generic term)|believability (generic term)
+street drug|1
+(noun)|drug of abuse|drug (generic term)
+street fighter|2
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|tough|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+street girl|1
+(noun)|streetwalker|hooker|hustler|floozy|floozie|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+street lamp|1
+(noun)|streetlight|lamp (generic term)
+street name|3
+(noun)|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+(noun)|name (generic term)|slang (generic term)|cant (generic term)|jargon (generic term)|lingo (generic term)|argot (generic term)|patois (generic term)|vernacular (generic term)
+(noun)|name (generic term)
+street organ|1
+(noun)|barrel organ|grind organ|hand organ|hurdy gurdy|hurdy-gurdy|musical instrument (generic term)|instrument (generic term)
+street person|1
+(noun)|dosser|tramp (generic term)|hobo (generic term)|bum (generic term)
+street sign|1
+(noun)|sign (generic term)
+street smart|1
+(adj)|streetwise|with-it|smart (similar term)
+street smarts|1
+(noun)|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+street sweeper|1
+(noun)|street cleaner|cleaner (generic term)
+street theater|1
+(noun)|guerrilla theater|dramatization (generic term)|dramatisation (generic term)
+street urchin|1
+(noun)|guttersnipe|urchin (generic term)
+streetcar|1
+(noun)|tram|tramcar|trolley|trolley car|self-propelled vehicle (generic term)
+streetcar track|1
+(noun)|tramline|tramway|track (generic term)
+streetlight|1
+(noun)|street lamp|lamp (generic term)
+streetwalk|1
+(verb)|street-walk|prostitute (generic term)
+streetwalker|1
+(noun)|street girl|hooker|hustler|floozy|floozie|slattern|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+streetwise|1
+(adj)|street smart|with-it|smart (similar term)
+streisand|1
+(noun)|Streisand|Barbra Streisand|Barbra Joan Streisand|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|actress (generic term)
+strekelia|1
+(noun)|Strekelia|genus Strekelia|liliid monocot genus (generic term)
+strekelia formosissima|1
+(noun)|Jacobean lily|Aztec lily|Strekelia formosissima|amaryllis (generic term)
+strelitzia|1
+(noun)|Strelitzia|genus Strelitzia|monocot genus (generic term)|liliopsid genus (generic term)
+strelitzia family|1
+(noun)|Strelitziaceae|family Strelitziaceae|monocot family (generic term)|liliopsid family (generic term)
+strelitzia reginae|1
+(noun)|bird of paradise|Strelitzia reginae|herb (generic term)|herbaceous plant (generic term)
+strelitziaceae|1
+(noun)|Strelitziaceae|family Strelitziaceae|strelitzia family|monocot family (generic term)|liliopsid family (generic term)
+strength|9
+(noun)|property (generic term)|weakness (antonym)
+(noun)|military capability|military strength|military posture|posture|capability (generic term)|capableness (generic term)
+(noun)|force|forcefulness|intensity (generic term)|intensiveness (generic term)
+(noun)|forte|strong suit|long suit|metier|specialty|speciality|strong point|asset (generic term)|plus (generic term)|weak point (antonym)
+(noun)|persuasiveness|power (generic term)|powerfulness (generic term)|unpersuasiveness (antonym)
+(noun)|intensity|intensity level|magnitude (generic term)
+(noun)|potency|effectiveness|power (generic term)|powerfulness (generic term)
+(noun)|prosperity (generic term)|successfulness (generic term)|weakness (antonym)
+(noun)|lastingness|durability|enduringness|permanence (generic term)|permanency (generic term)
+strengthen|3
+(verb)|beef up|fortify|change (generic term)|alter (generic term)|modify (generic term)|weaken (antonym)
+(verb)|change (generic term)|weaken (antonym)
+(verb)|tone|tone up|exercise (generic term)|work out (generic term)
+strengthened|1
+(adj)|reinforced|strong (similar term)
+strengthener|1
+(noun)|reinforcement|device (generic term)
+strengthening|2
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)|weakening (antonym)
+(noun)|increase (generic term)|step-up (generic term)|weakening (antonym)
+strenuosity|1
+(noun)|athleticism|energy (generic term)|vigor (generic term)|vigour (generic term)|zip (generic term)
+strenuous|2
+(adj)|energetic (similar term)
+(adj)|arduous|straining|effortful (similar term)
+strenuousness|1
+(noun)|arduousness|effortfulness (generic term)
+strep|2
+(adj)|streptococcal|streptococcic|eubacteria|eubacterium|true bacteria (related term)
+(noun)|streptococcus|streptococci|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+strep throat|1
+(noun)|streptococcal sore throat|streptococcus tonsilitis|septic sore throat|throat infection|sore throat (generic term)|pharyngitis (generic term)|raw throat (generic term)|infection (generic term)
+strepera|1
+(noun)|Strepera|genus Strepera|bird genus (generic term)
+strepsiceros|1
+(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus (generic term)
+strepsirhini|1
+(noun)|Strepsirhini|suborder Strepsirhini|animal order (generic term)
+streptobacillus|1
+(noun)|rod (generic term)
+streptocarpus|1
+(noun)|flower (generic term)
+streptococcal|1
+(adj)|streptococcic|strep|eubacteria|eubacterium|true bacteria (related term)
+streptococcal sore throat|1
+(noun)|strep throat|streptococcus tonsilitis|septic sore throat|throat infection|sore throat (generic term)|pharyngitis (generic term)|raw throat (generic term)|infection (generic term)
+streptococci|1
+(noun)|streptococcus|strep|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+streptococcic|1
+(adj)|streptococcal|strep|eubacteria|eubacterium|true bacteria (related term)
+streptococcus|1
+(noun)|streptococci|strep|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+streptococcus anhemolyticus|1
+(noun)|Streptococcus anhemolyticus|bacteria species (generic term)
+streptococcus tonsilitis|1
+(noun)|streptococcal sore throat|strep throat|septic sore throat|throat infection|sore throat (generic term)|pharyngitis (generic term)|raw throat (generic term)|infection (generic term)
+streptodornase|1
+(noun)|enzyme (generic term)
+streptokinase|1
+(noun)|enzyme (generic term)
+streptolysin|1
+(noun)|hemolysin (generic term)|haemolysin (generic term)|erythrolysin (generic term)|erythrocytolysin (generic term)
+streptomyces|1
+(noun)|actinomycete (generic term)
+streptomyces erythreus|1
+(noun)|Streptomyces erythreus|streptomyces (generic term)
+streptomyces griseus|1
+(noun)|Streptomyces griseus|streptomyces (generic term)
+streptomyces scabies|1
+(noun)|potato scab bacteria|Streptomyces scabies|streptomyces (generic term)
+streptomycetaceae|1
+(noun)|Streptomycetaceae|family Streptomycetaceae|bacteria family (generic term)
+streptomycin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+streptopelia|1
+(noun)|Streptopelia|genus Streptopelia|bird genus (generic term)
+streptopelia risoria|1
+(noun)|ringdove|Streptopelia risoria|turtledove (generic term)
+streptopelia turtur|1
+(noun)|Streptopelia turtur|turtledove (generic term)
+streptosolen|1
+(noun)|Streptosolen|genus Streptosolen|asterid dicot genus (generic term)
+streptosolen jamesonii|1
+(noun)|marmalade bush|fire bush|fire-bush|Streptosolen jamesonii|shrub (generic term)|bush (generic term)
+streptothricin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+stress|8
+(noun)|emphasis|accent|prosody (generic term)|inflection (generic term)
+(noun)|tension|tenseness|strain (generic term)|mental strain (generic term)|nervous strain (generic term)
+(noun)|force (generic term)
+(noun)|focus|emphasis (generic term)|accent (generic term)
+(noun)|strain|difficulty (generic term)
+(verb)|emphasize|emphasise|punctuate|accent|accentuate|express (generic term)|show (generic term)|evince (generic term)
+(verb)|accent|accentuate|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|try|strain|afflict (generic term)
+stress fracture|1
+(noun)|fatigue fracture|fracture (generic term)|break (generic term)
+stress incontinence|1
+(noun)|enuresis (generic term)|urinary incontinence (generic term)
+stress mark|1
+(noun)|accent (generic term)|accent mark (generic term)
+stress test|1
+(noun)|assay (generic term)|check (generic term)
+stressed|2
+(adj)|distressed|in a bad way|troubled (similar term)
+(adj)|accented|emphatic (similar term)|emphasized (similar term)|emphasised (similar term)|masculine (similar term)|unstressed (antonym)
+stressful|1
+(adj)|nerve-racking|nerve-wracking|trying|disagreeable (similar term)
+stressor|1
+(noun)|agent (generic term)
+stretch|20
+(adj)|long (similar term)
+(adj)|elastic (similar term)
+(noun)|expanse (generic term)
+(noun)|reach|reaching|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|straightaway (generic term)|straight (generic term)
+(noun)|stretching|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+(noun)|extension (generic term)
+(noun)|stint|duration (generic term)|continuance (generic term)
+(noun)|stretchiness|stretchability|elasticity (generic term)|snap (generic term)
+(verb)|stretch along|be (generic term)
+(verb)|extend|tense (generic term)|strain (generic term)|tense up (generic term)
+(verb)|unfold|stretch out|extend|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|grow (generic term)|shrink (antonym)
+(verb)|elongate|lengthen (generic term)
+(verb)|stretch out|lie down (generic term)|lie (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|widen (generic term)|broaden (generic term)|extend (generic term)
+(verb)|adulterate|dilute|debase|corrupt (generic term)|spoil (generic term)
+(verb)|extend|increase (generic term)
+(verb)|stretch out|move (generic term)
+stretch along|1
+(verb)|stretch|be (generic term)
+stretch forth|1
+(verb)|exsert|stretch out|put out|extend|hold out|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+stretch mark|1
+(noun)|band (generic term)|banding (generic term)|stria (generic term)|striation (generic term)
+stretch out|5
+(verb)|unfold|stretch|extend|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|stretch|lie down (generic term)|lie (generic term)
+(verb)|exsert|put out|extend|hold out|stretch forth|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|stretch|move (generic term)
+(verb)|crane|stretch (generic term)|extend (generic term)
+stretch pants|1
+(noun)|trouser (generic term)|pant (generic term)
+stretch receptor|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+stretch reflex|1
+(noun)|myotactic reflex|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+stretchability|1
+(noun)|stretch|stretchiness|elasticity (generic term)|snap (generic term)
+stretchable|1
+(adj)|stretchy|elastic (similar term)
+stretched|2
+(adj)|flexible (similar term)|flexile (similar term)
+(adj)|extended (similar term)
+stretcher|4
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|mechanical device (generic term)
+(noun)|litter (generic term)
+(noun)|capstone|copestone|coping stone|stone (generic term)
+stretcher-bearer|1
+(noun)|litter-bearer|attendant (generic term)|attender (generic term)|tender (generic term)
+stretcher party|1
+(noun)|party (generic term)|company (generic term)
+stretchiness|1
+(noun)|stretch|stretchability|elasticity (generic term)|snap (generic term)
+stretching|2
+(noun)|expansion (generic term)|enlargement (generic term)
+(noun)|stretch|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+stretchy|1
+(adj)|stretchable|elastic (similar term)
+strew|2
+(verb)|straw|spread (generic term)|distribute (generic term)
+(verb)|cover (generic term)|spread over (generic term)
+strewing|1
+(noun)|scatter|scattering|spread (generic term)|spreading (generic term)
+stria|2
+(noun)|striation|groove (generic term)|channel (generic term)
+(noun)|band|banding|striation|stripe (generic term)|streak (generic term)
+striate|2
+(adj)|groove|channel (related term)
+(verb)|mark (generic term)
+striate body|1
+(noun)|corpus striatum|striatum|basal ganglion (generic term)
+striate vein|1
+(noun)|inferior thalamostriate vein|thalamostriate vein (generic term)
+striated muscle|1
+(noun)|skeletal muscle|muscle (generic term)|musculus (generic term)
+striated muscle cell|1
+(noun)|striated muscle fiber|muscle cell (generic term)|muscle fiber (generic term)|muscle fibre (generic term)
+striated muscle fiber|1
+(noun)|striated muscle cell|muscle cell (generic term)|muscle fiber (generic term)|muscle fibre (generic term)
+striated muscle tissue|1
+(noun)|muscle (generic term)|muscular tissue (generic term)
+striation|2
+(noun)|stria|groove (generic term)|channel (generic term)
+(noun)|band|banding|stria|stripe (generic term)|streak (generic term)
+striatum|1
+(noun)|corpus striatum|striate body|basal ganglion (generic term)
+stricken|3
+(adj)|afflicted|ill (similar term)|sick (similar term)
+(adj)|smitten|struck|affected (similar term)
+(adj)|laid low|ill (similar term)|sick (similar term)
+strickland|1
+(noun)|Strickland|William Strickland|architect (generic term)|designer (generic term)
+strickle|5
+(noun)|sharpener (generic term)
+(noun)|implement (generic term)
+(noun)|tool (generic term)
+(verb)|flush (generic term)|level (generic term)|even out (generic term)|even (generic term)
+(verb)|strike|flush (generic term)|level (generic term)|even out (generic term)|even (generic term)
+strict|5
+(adj)|hard-and-fast|invariable (similar term)
+(adj)|rigorous|exact (similar term)
+(adj)|nonindulgent|austere (similar term)|stern (similar term)|blue (similar term)|puritan (similar term)|puritanic (similar term)|puritanical (similar term)|corrective (similar term)|disciplinary (similar term)|disciplinal (similar term)|monkish (similar term)|renunciant (similar term)|renunciative (similar term)|self-abnegating (similar term)|self-denying (similar term)|self-disciplined (similar term)|self-restraining (similar term)|severe (similar term)|spartan (similar term)|abstemious (related term)|indulgent (antonym)
+(adj)|rigid|intolerant (similar term)
+(adj)|stern|exacting|demanding (similar term)
+strictly|3
+(adv)|purely
+(adv)|stringently
+(adv)|rigorously
+strictly speaking|1
+(adv)|properly speaking|to be precise
+strictness|2
+(noun)|stringency|conscientiousness (generic term)|painstakingness (generic term)
+(noun)|sternness|unpermissiveness (generic term)|restrictiveness (generic term)
+stricture|2
+(noun)|stenosis|pathology (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+stride|5
+(noun)|pace|tread|step (generic term)
+(noun)|footstep|pace|step|indefinite quantity (generic term)
+(noun)|advancement (generic term)|progress (generic term)
+(verb)|walk (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+stridence|1
+(noun)|shrillness|stridency|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+stridency|1
+(noun)|shrillness|stridence|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+strident|4
+(adj)|blatant|clamant|clamorous|vociferous|noisy (similar term)
+(adj)|fricative|continuant|sibilant|spirant|soft (similar term)
+(adj)|shrill|imperative (similar term)
+(adj)|raucous|cacophonous (similar term)|cacophonic (similar term)
+strider|1
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+stridor|1
+(noun)|symptom (generic term)
+stridulate|1
+(verb)|clitter|make noise (generic term)|resound (generic term)|noise (generic term)
+stridulation|1
+(noun)|noise (generic term)
+strife|2
+(noun)|discord|disorder (generic term)
+(noun)|conflict (generic term)|struggle (generic term)|battle (generic term)
+strigidae|1
+(noun)|Strigidae|family Strigidae|bird family (generic term)
+strigiformes|1
+(noun)|Strigiformes|order Strigiformes|animal order (generic term)
+strike|27
+(noun)|work stoppage|job action (generic term)
+(noun)|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+(noun)|pitch (generic term)|delivery (generic term)
+(noun)|rap|tap|blow (generic term)|bump (generic term)
+(noun)|ten-strike|score (generic term)
+(noun)|hit|smash|smasher|bang|success (generic term)
+(verb)|hit|impinge on|run into|collide with|touch (generic term)|miss (antonym)
+(verb)|touch (generic term)|strike down (related term)
+(verb)|affect|impress|move
+(verb)|hit|attack (generic term)|assail (generic term)
+(verb)|read (generic term)|register (generic term)|show (generic term)|record (generic term)
+(verb)|hit|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|walk out|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|fall|shine|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|come to|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|hit|touch (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|fall upon|come upon|light upon|chance upon|come across|chance on|happen upon|attain|discover|find (generic term)|regain (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|scratch|expunge|excise|delete (generic term)|cancel (generic term)
+(verb)|hit|come to
+(verb)|hit|move (generic term)|displace (generic term)
+(verb)|assume|take|take up|move (generic term)
+(verb)|mint|coin|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|strickle|flush (generic term)|level (generic term)|even out (generic term)|even (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+(verb)|solve (generic term)|work out (generic term)|figure out (generic term)|puzzle out (generic term)|lick (generic term)|work (generic term)
+strike-slip fault|1
+(noun)|fault (generic term)|faulting (generic term)|geological fault (generic term)|shift (generic term)|fracture (generic term)|break (generic term)
+strike a blow|1
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+strike a chord|3
+(verb)|resonate (generic term)|come across (generic term)
+(verb)|hit home|strike home|strike a note|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|touch a chord|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+strike a note|1
+(verb)|hit home|strike home|strike a chord|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+strike back|1
+(verb)|retaliate|strike (generic term)|hit (generic term)
+strike down|3
+(verb)|cancel|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|kill (generic term)
+(verb)|fell|drop|cut down|cut (generic term)
+strike dumb|1
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+strike hard|1
+(verb)|knock|strike (generic term)|knock over (related term)|knock down (related term)|knock out (related term)|knock cold (related term)
+strike home|1
+(verb)|hit home|strike a chord|strike a note|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+strike leader|1
+(noun)|leader (generic term)
+strike off|1
+(verb)|cross off|cross out|strike out|mark|take away (generic term)|take out (generic term)
+strike out|6
+(verb)|cross off|cross out|strike off|mark|take away (generic term)|take out (generic term)
+(verb)|fail (generic term)|neglect (generic term)
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+(verb)|move (generic term)
+(verb)|retire
+(verb)|get down (generic term)|begin (generic term)|get (generic term)|start out (generic term)|start (generic term)|set about (generic term)|set out (generic term)|commence (generic term)
+strike pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+strike up|2
+(verb)|sound off|play (generic term)
+(verb)|initiate (generic term)|pioneer (generic term)
+strike zone|1
+(noun)|zone (generic term)
+strikebound|1
+(adj)|inactive (similar term)
+strikebreaker|1
+(noun)|scab|blackleg|rat|worker (generic term)
+strikebreaking|1
+(noun)|confrontation (generic term)|opposition (generic term)
+strikeout|1
+(noun)|out (generic term)
+striker|5
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|bluejacket (generic term)|navy man (generic term)|sailor (generic term)|sailor boy (generic term)
+(noun)|nonworker (generic term)
+(noun)|hitter|mover (generic term)
+(noun)|mechanical device (generic term)
+striking|4
+(adj)|dramatic|spectacular|impressive (similar term)
+(adj)|outstanding|prominent|salient|spectacular|conspicuous (similar term)
+(noun)|contact|impinging|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|hit|hitting|touch (generic term)|touching (generic term)
+strikingness|2
+(noun)|salience|saliency|prominence (generic term)
+(noun)|boldness|conspicuousness (generic term)
+strindberg|1
+(noun)|Strindberg|August Strindberg|Johan August Strindberg|dramatist (generic term)|playwright (generic term)
+string|16
+(noun)|twine|cord (generic term)
+(noun)|bowed stringed instrument|stringed instrument (generic term)
+(noun)|cord (generic term)
+(noun)|train|series (generic term)
+(noun)|sequence (generic term)
+(noun)|drawstring|drawing string|tie (generic term)
+(noun)|cosmic string|elementary particle (generic term)|fundamental particle (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|chain|strand|necklace (generic term)
+(verb)|thread|draw|arrange (generic term)|set up (generic term)
+(verb)|string up|add (generic term)
+(verb)|string along|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+(verb)|arrange (generic term)|set up (generic term)|string out (related term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|unstring (antonym)
+string along|1
+(verb)|string|advance (generic term)|progress (generic term)|pass on (generic term)|move on (generic term)|march on (generic term)|go on (generic term)
+string bass|1
+(noun)|bass fiddle|bass viol|bull fiddle|double bass|contrabass|bowed stringed instrument (generic term)|string (generic term)|bass (generic term)
+string bean|1
+(noun)|green bean (generic term)
+string cheese|1
+(noun)|cheese (generic term)
+string line|1
+(noun)|balkline|baulk-line|line (generic term)
+string of beads|1
+(noun)|beads|string (generic term)
+string of words|1
+(noun)|word string|linguistic string|string (generic term)|language (generic term)|linguistic communication (generic term)
+string orchestra|1
+(noun)|orchestra (generic term)
+string out|1
+(verb)|spread out|arrange (generic term)|set up (generic term)
+string quartet|1
+(noun)|string quartette|quartet (generic term)|quartette (generic term)
+string quartette|1
+(noun)|string quartet|quartet (generic term)|quartette (generic term)
+string section|1
+(noun)|strings|section (generic term)
+string theory|1
+(noun)|model (generic term)|theoretical account (generic term)|framework (generic term)
+string tie|1
+(noun)|necktie (generic term)|tie (generic term)
+string up|2
+(verb)|hang|execute (generic term)|put to death (generic term)
+(verb)|string|add (generic term)
+stringed instrument|1
+(noun)|musical instrument (generic term)|instrument (generic term)
+stringency|2
+(noun)|tightness|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|strictness|conscientiousness (generic term)|painstakingness (generic term)
+stringent|1
+(adj)|rigorous|tight|demanding (similar term)
+stringently|1
+(adv)|strictly
+stringer|4
+(noun)|player (generic term)|participant (generic term)
+(noun)|worker (generic term)
+(noun)|brace (generic term)|bracing (generic term)
+(noun)|timber (generic term)
+strings|1
+(noun)|string section|section (generic term)
+stringy|4
+(adj)|wiry|thin (similar term)|lean (similar term)
+(adj)|fibrous|sinewy|unchewable|tough (similar term)
+(adj)|ropy|ropey|thready|thick (similar term)
+(adj)|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+stringybark|1
+(noun)|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+stringybark pine|1
+(noun)|Callitris parlatorei|cypress pine (generic term)
+strip|17
+(noun)|part (generic term)|piece (generic term)
+(noun)|slip|artifact (generic term)|artefact (generic term)
+(noun)|airstrip|flight strip|landing strip|airfield (generic term)|landing field (generic term)|flying field (generic term)|field (generic term)
+(noun)|comic strip|cartoon strip|funnies|cartoon (generic term)|sketch (generic term)
+(noun)|lumber (generic term)|timber (generic term)
+(noun)|striptease|strip show|nude dancing (generic term)
+(verb)|deprive|divest|take (generic term)
+(verb)|undress|discase|uncase|unclothe|strip down|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+(verb)|leach|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|denude|bare|denudate|clear (generic term)
+(verb)|plunder|despoil|loot|reave|rifle|ransack|pillage|foray|take (generic term)
+(verb)|clean|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|smooth (generic term)|smoothen (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|dismantle|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|milk (generic term)
+(verb)|undress|divest|disinvest|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+strip-jack-naked|1
+(noun)|beggar-my-neighbor|beggar-my-neighbour|strip-Jack-naked|card game (generic term)|cards (generic term)
+strip-mined|1
+(adj)|mined (similar term)
+strip-search|1
+(verb)|search (generic term)
+strip alert|1
+(noun)|alert (generic term)|qui vive (generic term)
+strip cropping|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+strip down|1
+(verb)|undress|discase|uncase|unclothe|strip|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+strip lighting|1
+(noun)|light (generic term)|light source (generic term)
+strip mall|1
+(noun)|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+strip mine|2
+(noun)|mine (generic term)
+(verb)|surface mine|surface-mine|mine (generic term)
+strip miner|1
+(noun)|miner (generic term)|mineworker (generic term)
+strip mining|1
+(noun)|opencast mining|mining (generic term)|excavation (generic term)
+strip poker|1
+(noun)|poker (generic term)|poker game (generic term)
+strip search|1
+(noun)|frisk (generic term)|frisking (generic term)
+strip show|1
+(noun)|strip|striptease|nude dancing (generic term)
+strip steak|1
+(noun)|New York strip|beefsteak (generic term)
+stripe|6
+(noun)|band|banding|adornment (generic term)
+(noun)|badge (generic term)
+(noun)|chevron|stripes|grade insignia|badge (generic term)
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|streak|marking (generic term)
+(verb)|mark (generic term)
+stripe blight|1
+(noun)|blight (generic term)
+striped|1
+(adj)|stripy|patterned (similar term)
+striped bass|2
+(noun)|striper|sea bass (generic term)|bass (generic term)
+(noun)|striper|Roccus saxatilis|rockfish|sea bass (generic term)
+striped button quail|1
+(noun)|Turnix sylvatica|button quail (generic term)|button-quail (generic term)|bustard quail (generic term)|hemipode (generic term)
+striped coral root|1
+(noun)|Corallorhiza striata|coral root (generic term)
+striped dogwood|1
+(noun)|moosewood|moose-wood|striped maple|goosefoot maple|Acer pennsylvanicum|maple (generic term)
+striped drum|1
+(noun)|Equetus pulcher|drum (generic term)|drumfish (generic term)
+striped gentian|1
+(noun)|Gentiana villosa|gentian (generic term)
+striped hyena|1
+(noun)|Hyaena hyaena|hyena (generic term)|hyaena (generic term)
+striped killifish|1
+(noun)|mayfish|may fish|Fundulus majalis|killifish (generic term)
+striped maple|1
+(noun)|moosewood|moose-wood|striped dogwood|goosefoot maple|Acer pennsylvanicum|maple (generic term)
+striped marlin|1
+(noun)|Makaira mitsukurii|marlin (generic term)
+striped muishond|1
+(noun)|Ictonyx striata|muishond (generic term)
+striped mullet|1
+(noun)|Mugil cephalus|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+striped racer|1
+(noun)|California whipsnake|Masticophis lateralis|whip-snake (generic term)|whip snake (generic term)|whipsnake (generic term)
+striped skunk|1
+(noun)|Mephitis mephitis|skunk (generic term)|polecat (generic term)|wood pussy (generic term)
+striped squirrel|1
+(noun)|eastern chipmunk|hackee|ground squirrel|Tamias striatus|squirrel (generic term)
+striped violet|1
+(noun)|pale violet|cream violet|Viola striata|violet (generic term)
+striper|3
+(noun)|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|striped bass|sea bass (generic term)|bass (generic term)
+(noun)|striped bass|Roccus saxatilis|rockfish|sea bass (generic term)
+stripes|1
+(noun)|chevron|stripe|grade insignia|badge (generic term)
+striping|1
+(noun)|marking (generic term)
+stripling|1
+(noun)|adolescent|teenager|teen|juvenile (generic term)|juvenile person (generic term)
+stripped|3
+(adj)|stripped-down|minimal (similar term)|minimum (similar term)
+(adj)|bare|empty (similar term)
+(adj)|unclothed (similar term)
+stripped-down|1
+(adj)|stripped|minimal (similar term)|minimum (similar term)
+stripper|4
+(noun)|compound (generic term)|chemical compound (generic term)
+(noun)|stemmer|sprigger|worker (generic term)
+(noun)|striptease artist|striptease|stripteaser|exotic dancer|ecdysiast|peeler|performer (generic term)|performing artist (generic term)
+(noun)|stripper well|oil well (generic term)|oiler (generic term)
+stripper well|1
+(noun)|stripper|oil well (generic term)|oiler (generic term)
+stripping|1
+(noun)|denudation|uncovering|baring|husking|removal (generic term)|remotion (generic term)
+striptease|2
+(noun)|stripper|striptease artist|stripteaser|exotic dancer|ecdysiast|peeler|performer (generic term)|performing artist (generic term)
+(noun)|strip|strip show|nude dancing (generic term)
+striptease artist|1
+(noun)|stripper|striptease|stripteaser|exotic dancer|ecdysiast|peeler|performer (generic term)|performing artist (generic term)
+stripteaser|1
+(noun)|stripper|striptease artist|striptease|exotic dancer|ecdysiast|peeler|performer (generic term)|performing artist (generic term)
+stripy|1
+(adj)|striped|patterned (similar term)
+strive|2
+(verb)|endeavor|endeavour|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|reach|strain|tug (generic term)|labor (generic term)|labour (generic term)|push (generic term)|drive (generic term)
+striver|1
+(noun)|slave|hard worker|worker (generic term)
+striving|1
+(noun)|nisus|pains|strain|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+strix|1
+(noun)|Strix|genus Strix|bird genus (generic term)
+strix aluco|1
+(noun)|tawny owl|Strix aluco|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+strix nebulosa|1
+(noun)|great grey owl|great gray owl|Strix nebulosa|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+strix occidentalis|1
+(noun)|spotted owl|Strix occidentalis|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+strix varia|1
+(noun)|barred owl|Strix varia|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+strizostedion vitreum glaucum|1
+(noun)|blue pike|blue pickerel|blue pikeperch|blue walleye|Strizostedion vitreum glaucum|walleye (generic term)|walleyed pike (generic term)|jack salmon (generic term)|dory (generic term)|Stizostedion vitreum (generic term)
+strobe|1
+(noun)|stroboscope|strobe light|scientific instrument (generic term)
+strobe light|1
+(noun)|stroboscope|strobe|scientific instrument (generic term)
+strobile|1
+(noun)|cone|strobilus|reproductive structure (generic term)
+strobilomyces|1
+(noun)|Strobilomyces|genus Strobilomyces|fungus genus (generic term)
+strobilomyces floccopus|1
+(noun)|old-man-of-the-woods|Strobilomyces floccopus|bolete (generic term)
+strobilus|1
+(noun)|cone|strobile|reproductive structure (generic term)
+stroboscope|1
+(noun)|strobe|strobe light|scientific instrument (generic term)
+stroheim|1
+(noun)|Stroheim|Erich von Stroheim|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+stroke|14
+(noun)|shot|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+(noun)|throw|cam stroke|movement (generic term)|motion (generic term)
+(noun)|apoplexy|cerebrovascular accident|CVA|attack (generic term)
+(noun)|touch (generic term)|touching (generic term)
+(noun)|stroking|touch (generic term)|touching (generic term)
+(noun)|oarsman (generic term)|rower (generic term)
+(noun)|solidus|slash|virgule|diagonal|separatrix|punctuation (generic term)|punctuation mark (generic term)
+(noun)|mark (generic term)|print (generic term)
+(noun)|locomotion (generic term)|travel (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|fondle|caress (generic term)
+(verb)|strike (generic term)|hit (generic term)
+(verb)|row (generic term)
+(verb)|flatter (generic term)|blandish (generic term)
+stroke play|1
+(noun)|medal play|golf (generic term)|golf game (generic term)
+stroking|1
+(noun)|stroke|touch (generic term)|touching (generic term)
+stroll|2
+(noun)|amble|promenade|saunter|perambulation|walk (generic term)
+(verb)|saunter|walk (generic term)
+stroller|2
+(noun)|saunterer|ambler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|baby buggy|baby carriage|carriage|perambulator|pram|go-cart|pushchair|pusher|wheeled vehicle (generic term)
+stroma|2
+(noun)|plant tissue (generic term)
+(noun)|animal tissue (generic term)
+stromateid|1
+(noun)|butterfish|stromateid fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+stromateid fish|1
+(noun)|butterfish|stromateid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+stromateidae|1
+(noun)|Stromateidae|family Stromateidae|fish family (generic term)
+strombidae|1
+(noun)|Strombidae|family Strombidae|mollusk family (generic term)
+strombus|1
+(noun)|Strombus|genus Strombus|mollusk genus (generic term)
+strombus gigas|1
+(noun)|giant conch|Strombus gigas|conch (generic term)
+strong|10
+(adj)|beardown (similar term)|beefed-up (similar term)|brawny (similar term)|hefty (similar term)|muscular (similar term)|powerful (similar term)|sinewy (similar term)|bullnecked (similar term)|bullocky (similar term)|fortified (similar term)|hard (similar term)|knockout (similar term)|severe (similar term)|industrial-strength (similar term)|weapons-grade (similar term)|ironlike (similar term)|knock-down (similar term)|powerful (similar term)|noticeable (similar term)|reinforced (similar term)|strengthened (similar term)|robust (similar term)|stiff (similar term)|vehement (similar term)|virile (similar term)|well-knit (similar term)|well-set (similar term)|powerful (related term)|robust (related term)|rugged (related term)|tough (related term)|toughened (related term)|weak (antonym)
+(adj)|intense (similar term)
+(adj)|potent|powerful (similar term)
+(adj)|potent|stiff|equipotent (similar term)|multipotent (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|fertile (related term)|powerful (related term)|impotent (antonym)
+(adj)|impregnable|inviolable|secure|unassailable|unattackable|invulnerable (similar term)
+(adj)|solid|substantial|sound (similar term)
+(adj)|irregular (similar term)
+(adj)|hard|alcoholic (similar term)
+(adj)|warm|fresh (similar term)
+(adj)|firm|forceful (similar term)
+strong-arm|4
+(adj)|forcible|physical|forceful (similar term)
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|bully|browbeat|bullyrag|ballyrag|boss around|hector|push around|intimidate (generic term)
+(verb)|beat (generic term)|beat up (generic term)|work over (generic term)
+strong-armer|1
+(noun)|hood|hoodlum|goon|punk|thug|tough|toughie|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+strong-boned|1
+(adj)|bony (similar term)|boney (similar term)
+strong-flavored|1
+(adj)|tasty (similar term)
+strong-growing|1
+(adj)|aggressive|fast-growing|invasive (similar term)
+strong-minded|2
+(adj)|strong-willed|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|independent (similar term)
+strong-scented|1
+(adj)|strong-smelling|odorous (similar term)
+strong-smelling|1
+(adj)|strong-scented|odorous (similar term)
+strong-willed|1
+(adj)|strong-minded|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+strong belief|1
+(noun)|conviction|article of faith|belief (generic term)
+strong breeze|1
+(noun)|breeze (generic term)|zephyr (generic term)|gentle wind (generic term)|air (generic term)
+strong drink|1
+(noun)|liquor|spirits|booze|hard drink|hard liquor|John Barleycorn|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+strong force|1
+(noun)|strong interaction|color force|interaction (generic term)|fundamental interaction (generic term)
+strong gale|1
+(noun)|gale (generic term)
+strong interaction|1
+(noun)|strong force|color force|interaction (generic term)|fundamental interaction (generic term)
+strong point|1
+(noun)|forte|strong suit|long suit|metier|specialty|speciality|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+strong suit|2
+(noun)|long suit (generic term)
+(noun)|forte|long suit|metier|specialty|speciality|strong point|strength|asset (generic term)|plus (generic term)|weak point (antonym)
+strongbox|1
+(noun)|deedbox|box (generic term)
+stronghold|1
+(noun)|fastness|defensive structure (generic term)|defense (generic term)|defence (generic term)
+strongly|2
+(adv)|weakly (antonym)
+(adv)|powerfully
+strongman|2
+(noun)|performer (generic term)|performing artist (generic term)
+(noun)|dictator (generic term)|potentate (generic term)
+strongroom|1
+(noun)|storeroom (generic term)|storage room (generic term)|stowage (generic term)
+strongylodon|1
+(noun)|Strongylodon|genus Strongylodon|rosid dicot genus (generic term)
+strongylodon macrobotrys|1
+(noun)|jade vine|emerald creeper|Strongylodon macrobotrys|liana (generic term)
+strontianite|1
+(noun)|mineral (generic term)
+strontium|1
+(noun)|Sr|atomic number 38|metallic element (generic term)|metal (generic term)
+strontium 90|1
+(noun)|strontium (generic term)|Sr (generic term)|atomic number 38 (generic term)
+strop|2
+(noun)|strap (generic term)|sharpener (generic term)
+(verb)|sharpen (generic term)
+strophanthin|1
+(noun)|glycoside (generic term)
+strophanthus|1
+(noun)|shrub (generic term)|bush (generic term)
+strophanthus kombe|1
+(noun)|Strophanthus kombe|strophanthus (generic term)
+stropharia|1
+(noun)|Stropharia|genus Stropharia|ring-stalked fungus|fungus genus (generic term)
+stropharia ambigua|1
+(noun)|Stropharia ambigua|agaric (generic term)
+stropharia hornemannii|1
+(noun)|Stropharia hornemannii|agaric (generic term)
+stropharia rugoso-annulata|1
+(noun)|Stropharia rugoso-annulata|agaric (generic term)
+strophariaceae|1
+(noun)|Strophariaceae|family Strophariaceae|fungus family (generic term)
+strophe|1
+(noun)|stanza (generic term)
+stroppy|1
+(adj)|bolshy|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+struck|1
+(adj)|smitten|stricken|affected (similar term)
+structural|6
+(adj)|cognition|knowledge|noesis (related term)
+(adj)|constitution|composition|makeup (related term)
+(adj)|functional (similar term)
+(adj)|constructive (similar term)
+(adj)|geomorphologic|geomorphological|morphologic|morphological|geophysics|geophysical science (related term)
+(adj)|morphologic|morphological|biology|biological science (related term)
+structural anthropology|1
+(noun)|structuralism|theory (generic term)
+structural formula|1
+(noun)|molecular formula (generic term)
+structural gene|1
+(noun)|gene (generic term)|cistron (generic term)|factor (generic term)
+structural genomics|1
+(noun)|genomics (generic term)
+structural iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+structural linguistics|1
+(noun)|structuralism|linguistics (generic term)
+structural member|1
+(noun)|support (generic term)
+structural sociology|1
+(noun)|structuralism|theory (generic term)
+structural steel|1
+(noun)|steel (generic term)
+structuralism|3
+(noun)|structural linguistics|linguistics (generic term)
+(noun)|structural anthropology|theory (generic term)
+(noun)|structural sociology|theory (generic term)
+structure|6
+(noun)|construction|artifact (generic term)|artefact (generic term)
+(noun)|constitution (generic term)|composition (generic term)|makeup (generic term)
+(noun)|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|anatomical structure|complex body part|bodily structure|body structure|body part (generic term)
+(noun)|social organization|social organisation|social structure|social system|system (generic term)|scheme (generic term)
+(verb)|organize (generic term)|organise (generic term)|coordinate (generic term)
+structured|2
+(adj)|organized (related term)|unstructured (antonym)
+(adj)|integrated|organic (similar term)
+strudel|1
+(noun)|pastry (generic term)
+struggle|7
+(noun)|battle|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|conflict|battle|group action (generic term)
+(noun)|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(verb)|fight|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+(verb)|endeavor (generic term)|endeavour (generic term)|strive (generic term)
+(verb)|clamber|scramble|shin|shinny|skin|sputter|climb (generic term)
+(verb)|contend|fight|fight off (related term)
+struggler|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+struggling|1
+(adj)|troubled (similar term)
+strum|2
+(noun)|sound (generic term)
+(verb)|thrum|sound (generic term)
+struma|2
+(noun)|goiter|goitre|thyromegaly|disease (generic term)
+(noun)|scrofula|king's evil|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+strumpet|1
+(noun)|adulteress|fornicatress|hussy|jade|loose woman|slut|trollop|adulterer (generic term)|fornicator (generic term)
+strung-out|1
+(adj)|dependent|dependant|drug-addicted|hooked|addicted (similar term)
+strut|3
+(noun)|prance|swagger|gait (generic term)
+(noun)|brace (generic term)|bracing (generic term)
+(verb)|tittup|swagger|ruffle|prance|sashay|cock|walk (generic term)
+struthio|1
+(noun)|Struthio|genus Struthio|bird genus (generic term)
+struthio camelus|1
+(noun)|ostrich|Struthio camelus|ratite (generic term)|ratite bird (generic term)|flightless bird (generic term)
+struthiomimus|1
+(noun)|ornithomimid (generic term)
+struthionidae|1
+(noun)|Struthionidae|family Struthionidae|bird family (generic term)
+struthioniformes|1
+(noun)|Struthioniformes|order Struthioniformes|animal order (generic term)
+strychnine|1
+(noun)|plant toxin (generic term)|phytotoxin (generic term)|alkaloid (generic term)
+strymon|1
+(noun)|Strymon|genus Strymon|arthropod genus (generic term)
+strymon melinus|1
+(noun)|Strymon melinus|hairstreak (generic term)|hairstreak butterfly (generic term)
+stuart|3
+(noun)|Stuart|Gilbert Stuart|Gilbert Charles Stuart|painter (generic term)
+(noun)|Stuart|ruler (generic term)|swayer (generic term)
+(noun)|Stuart|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+stuart davis|1
+(noun)|Davis|Stuart Davis|painter (generic term)
+stub|9
+(noun)|plant part (generic term)|plant structure (generic term)
+(noun)|nub|part (generic term)|piece (generic term)
+(noun)|ticket stub|receipt (generic term)
+(noun)|check stub|counterfoil|record (generic term)
+(noun)|butt|part (generic term)|portion (generic term)
+(verb)|uproot (generic term)|extirpate (generic term)|deracinate (generic term)|root out (generic term)
+(verb)|snuff out (generic term)|blow out (generic term)|extinguish (generic term)|quench (generic term)
+(verb)|weed (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+stub nail|1
+(noun)|nail (generic term)
+stub out|1
+(verb)|crush out|extinguish|press out|end (generic term)|terminate (generic term)
+stubbiness|1
+(noun)|squatness|lowness (generic term)
+stubble|2
+(noun)|chaff|husk|shuck|stalk|straw|plant material (generic term)
+(noun)|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+stubbled|1
+(adj)|bestubbled|stubbly|unshaven (similar term)|unshaved (similar term)
+stubbly|1
+(adj)|bestubbled|stubbled|unshaven (similar term)|unshaved (similar term)
+stubborn|2
+(adj)|obstinate|unregenerate|bloody-minded (similar term)|cantankerous (similar term)|bolshy (similar term)|stroppy (similar term)|bullheaded (similar term)|bullet-headed (similar term)|pigheaded (similar term)|dogged (similar term)|dour (similar term)|pertinacious (similar term)|tenacious (similar term)|unyielding (similar term)|contrarious (similar term)|cross-grained (similar term)|determined (similar term)|hardheaded (similar term)|mulish (similar term)|stiff-necked (similar term)|strong-minded (similar term)|strong-willed (similar term)|disobedient (related term)|intractable (related term)|uncompromising (related term)|sturdy (related term)|inflexible (related term)|docile (antonym)
+(adj)|refractory|intractable (similar term)
+stubbornly|1
+(adv)|pig-headedly|obdurately|mulishly|obstinately|cussedly
+stubbornness|2
+(noun)|obstinacy|obstinance|mulishness|intractability (generic term)|intractableness (generic term)
+(noun)|bullheadedness|obstinacy|obstinance|pigheadedness|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+stubbs|1
+(noun)|Stubbs|William Stubbs|historian (generic term)|historiographer (generic term)
+stubby|1
+(adj)|short (similar term)
+stucco|3
+(noun)|plaster (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|coat (generic term)|surface (generic term)
+stuck|2
+(adj)|cragfast (similar term)|unstuck (antonym)
+(adj)|perplexed (similar term)
+stuck-up|1
+(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|too big for one's breeches|uppish|proud (similar term)
+stuck with|1
+(adj)|cursed with|cursed (similar term)|curst (similar term)
+stud|7
+(noun)|he-man|macho-man|man (generic term)|adult male (generic term)
+(noun)|rivet|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|scantling|upright (generic term)|vertical (generic term)
+(noun)|studhorse|stallion (generic term)|entire (generic term)
+(noun)|stud poker|poker (generic term)|poker game (generic term)
+(verb)|dot|constellate|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|add (generic term)
+stud farm|1
+(noun)|farm (generic term)
+stud finder|1
+(noun)|permanent magnet (generic term)|static magnet (generic term)
+stud mare|1
+(noun)|broodmare|mare (generic term)|female horse (generic term)
+stud poker|1
+(noun)|stud|poker (generic term)|poker game (generic term)
+studbook|1
+(noun)|register (generic term)|registry (generic term)
+studded|1
+(adj)|adorned (similar term)|decorated (similar term)
+student|2
+(noun)|pupil|educatee|enrollee (generic term)
+(noun)|scholar|scholarly person|bookman|intellectual (generic term)|intellect (generic term)
+student center|1
+(noun)|center (generic term)|centre (generic term)
+student lamp|1
+(noun)|reading lamp (generic term)
+student lodging|1
+(noun)|hostel|youth hostel|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+student nurse|1
+(noun)|probationer|nurse (generic term)
+student residence|1
+(noun)|dormitory|dorm|residence hall|hall|living quarters (generic term)|quarters (generic term)|building (generic term)|edifice (generic term)
+student teacher|1
+(noun)|practice teacher|college student (generic term)|university student (generic term)
+student union|1
+(noun)|building (generic term)|edifice (generic term)
+studentship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+studhorse|1
+(noun)|stud|stallion (generic term)|entire (generic term)
+studied|2
+(adj)|deliberate|affected (related term)|unnatural (related term)|unstudied (antonym)
+(adj)|designed|premeditated (similar term)
+studio|3
+(noun)|workplace (generic term)|work (generic term)
+(noun)|studio apartment|apartment (generic term)|flat (generic term)
+(noun)|workplace (generic term)|work (generic term)|location (antonym)
+studio apartment|1
+(noun)|studio|apartment (generic term)|flat (generic term)
+studio couch|1
+(noun)|day bed|convertible (generic term)|sofa bed (generic term)
+studious|2
+(adj)|careful (similar term)
+(adj)|bookish|scholarly (similar term)
+studiousness|1
+(noun)|diligence (generic term)|industriousness (generic term)|industry (generic term)
+study|15
+(noun)|survey|examination (generic term)|scrutiny (generic term)
+(noun)|work|learning (generic term)|acquisition (generic term)
+(noun)|report|written report|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|concentration (generic term)|engrossment (generic term)|absorption (generic term)|immersion (generic term)
+(noun)|room (generic term)
+(noun)|discipline|subject|subject area|subject field|field|field of study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+(noun)|sketch|drawing (generic term)
+(noun)|cogitation|contemplation (generic term)|reflection (generic term)|reflexion (generic term)|rumination (generic term)|musing (generic term)|thoughtfulness (generic term)
+(noun)|memorizer (generic term)|memoriser (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(verb)|analyze|analyse|examine|canvass|canvas
+(verb)|consider|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+(verb)|learn|read|take
+(verb)|hit the books|learn (generic term)|larn (generic term)|acquire (generic term)
+(verb)|meditate|contemplate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+study hall|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|classroom (generic term)|schoolroom (generic term)
+studying|1
+(noun)|perusal|perusing|poring over|reading (generic term)
+stuff|13
+(noun)|material|substance (generic term)|matter (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|clobber|personal property (generic term)|personal estate (generic term)|personalty (generic term)|private property (generic term)
+(noun)|stuff and nonsense|hooey|poppycock|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|quality (generic term)
+(noun)|information (generic term)|info (generic term)
+(noun)|kernel (generic term)|substance (generic term)|core (generic term)|center (generic term)|essence (generic term)|gist (generic term)|heart (generic term)|heart and soul (generic term)|inwardness (generic term)|marrow (generic term)|meat (generic term)|nub (generic term)|pith (generic term)|sum (generic term)|nitty-gritty (generic term)
+(verb)|thrust|shove|squeeze|push (generic term)|force (generic term)
+(verb)|lug|choke up|block|clog (generic term)|choke off (generic term)|clog up (generic term)|back up (generic term)|congest (generic term)|choke (generic term)|foul (generic term)|unstuff (antonym)
+(verb)|gorge|ingurgitate|overindulge|glut|englut|engorge|overgorge|overeat|gormandize|gormandise|gourmandize|binge|pig out|satiate|scarf out|eat (generic term)
+(verb)|impregnate (generic term)|saturate (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|farce|fill (generic term)|fill up (generic term)|make full (generic term)
+stuff and nonsense|1
+(noun)|stuff|hooey|poppycock|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+stuff shot|1
+(noun)|dunk|dunk shot|basketball shot (generic term)
+stuffed|1
+(adj)|full (similar term)
+stuffed cabbage|1
+(noun)|dish (generic term)
+stuffed derma|1
+(noun)|kishke|dish (generic term)
+stuffed egg|1
+(noun)|deviled egg|dish (generic term)
+stuffed grape leaves|1
+(noun)|dolmas|dish (generic term)
+stuffed mushroom|1
+(noun)|hors d'oeuvre (generic term)
+stuffed peppers|1
+(noun)|dish (generic term)
+stuffed shirt|1
+(noun)|fuddy-duddy|bore (generic term)|dullard (generic term)
+stuffed tomato|2
+(noun)|cold stuffed tomato|dish (generic term)
+(noun)|hot stuffed tomato|dish (generic term)
+stuffer|2
+(noun)|taxidermist|animal stuffer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|circular (generic term)|handbill (generic term)|bill (generic term)|broadside (generic term)|broadsheet (generic term)|flier (generic term)|flyer (generic term)|throwaway (generic term)
+stuffily|1
+(adv)|stodgily
+stuffiness|3
+(noun)|congestion (generic term)
+(noun)|closeness|quality (generic term)
+(noun)|stodginess|graveness (generic term)|gravity (generic term)|sobriety (generic term)|soberness (generic term)|somberness (generic term)|sombreness (generic term)
+stuffing|2
+(noun)|dressing|concoction (generic term)|mixture (generic term)|intermixture (generic term)
+(noun)|padding (generic term)|cushioning (generic term)
+stuffing box|1
+(noun)|packing box|chamber (generic term)
+stuffing nut|1
+(noun)|packing nut|nut (generic term)
+stuffy|3
+(adj)|airless|close|unaired|unventilated (similar term)
+(adj)|stodgy|conventional (similar term)
+(adj)|obstructed (similar term)
+stultification|2
+(noun)|befooling|derision (generic term)
+(noun)|constipation|impairment|deadening|degradation (generic term)|debasement (generic term)
+stultify|3
+(verb)|prove (generic term)|demonstrate (generic term)|establish (generic term)|show (generic term)|shew (generic term)
+(verb)|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+(verb)|cripple|weaken (generic term)
+stumble|6
+(noun)|lurch|stagger|gait (generic term)
+(noun)|trip|trip-up|misstep|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|falter|bumble|walk (generic term)
+(verb)|trip|move (generic term)
+(verb)|hit|come by (generic term)
+(verb)|slip up|trip up|err (generic term)|mistake (generic term)|slip (generic term)
+stumblebum|2
+(noun)|palooka|boxer (generic term)|pugilist (generic term)
+(noun)|lout|clod|goon|oaf|lubber|lummox|lump|gawk|clumsy person (generic term)
+stumbler|2
+(noun)|tripper|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|bungler|blunderer|fumbler|bumbler|sad sack|botcher|butcher|fuckup|incompetent (generic term)|incompetent person (generic term)
+stumbling block|1
+(noun)|obstacle (generic term)
+stump|8
+(noun)|tree stump|plant part (generic term)|plant structure (generic term)
+(noun)|body part (generic term)
+(noun)|post (generic term)
+(noun)|dais|podium|pulpit|rostrum|ambo|soapbox|platform (generic term)
+(verb)|mix up|perplex (generic term)|vex (generic term)|stick (generic term)|get (generic term)|puzzle (generic term)|mystify (generic term)|baffle (generic term)|beat (generic term)|pose (generic term)|bewilder (generic term)|flummox (generic term)|stupefy (generic term)|nonplus (generic term)|gravel (generic term)|amaze (generic term)|dumbfound (generic term)
+(verb)|stomp|stamp|walk (generic term)
+(verb)|campaign (generic term)|run (generic term)
+(verb)|clear (generic term)
+stump speech|1
+(noun)|oratory (generic term)
+stump spud|1
+(noun)|spud|hand shovel (generic term)
+stumper|1
+(noun)|poser|toughie|sticker|problem (generic term)
+stumping|1
+(noun)|campaigning (generic term)|candidacy (generic term)|candidature (generic term)|electioneering (generic term)|political campaign (generic term)
+stumpknocker|1
+(noun)|spotted sunfish|Lepomis punctatus|freshwater bream (generic term)|bream (generic term)
+stumpy|1
+(adj)|chunky|dumpy|low-set|squat|squatty|short (similar term)
+stun|4
+(verb)|stupefy|immobilize (generic term)|immobilise (generic term)
+(verb)|shock|floor|ball over|blow out of the water|take aback|surprise (generic term)
+(verb)|sandbag|hit (generic term)
+(verb)|bedaze|daze|desensitize (generic term)|desensitise (generic term)
+stun baton|1
+(noun)|stun gun|weapon (generic term)|arm (generic term)|weapon system (generic term)
+stun gun|1
+(noun)|stun baton|weapon (generic term)|arm (generic term)|weapon system (generic term)
+stung|1
+(adj)|annoyed|irritated|miffed|nettled|peeved|pissed|pissed off|riled|roiled|steamed|displeased (similar term)
+stunned|3
+(adj)|amazed|astonied|astonished|astounded|surprised (similar term)
+(adj)|knocked out|kayoed|KO'd|out|unconscious (similar term)
+(adj)|dazed|stupefied|stupid|confused (similar term)
+stunner|2
+(noun)|smasher|knockout|beauty|ravisher|sweetheart|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+(noun)|surprise (generic term)
+stunning|4
+(adj)|arresting|sensational|impressive (similar term)
+(adj)|surprising (similar term)
+(adj)|disorienting (similar term)
+(adj)|beautiful (similar term)
+stunningly|1
+(adv)|spectacularly
+stunt|4
+(noun)|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(verb)|impede (generic term)|hinder (generic term)
+(verb)|perform (generic term)|execute (generic term)|do (generic term)
+stunt flier|1
+(noun)|barnstormer|stunt pilot|pilot (generic term)|airplane pilot (generic term)
+stunt flying|1
+(noun)|acrobatics|aerobatics|stunting|flight (generic term)|flying (generic term)
+stunt kite|1
+(noun)|sport kite|kite (generic term)
+stunt man|1
+(noun)|double|stunt woman|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+stunt pilot|1
+(noun)|barnstormer|stunt flier|pilot (generic term)|airplane pilot (generic term)
+stunt woman|1
+(noun)|double|stunt man|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+stunted|1
+(adj)|scrawny|scrubby|inferior (similar term)
+stuntedness|1
+(noun)|puniness|runtiness|smallness (generic term)|littleness (generic term)
+stunting|1
+(noun)|acrobatics|aerobatics|stunt flying|flight (generic term)|flying (generic term)
+stupa|1
+(noun)|tope|shrine (generic term)
+stupe|1
+(noun)|stupid|stupid person|dullard|dolt|pudding head|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+stupefaction|3
+(noun)|astonishment (generic term)|amazement (generic term)
+(noun)|grogginess|stupor|semiconsciousness|unconsciousness (generic term)
+(noun)|action (generic term)
+stupefied|2
+(adj)|dumbfounded|dumfounded|flabbergasted|thunderstruck|dumbstruck|dumbstricken|surprised (similar term)
+(adj)|dazed|stunned|stupid|confused (similar term)
+stupefy|3
+(verb)|besot|desensitize (generic term)|desensitise (generic term)
+(verb)|perplex|vex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+(verb)|stun|immobilize (generic term)|immobilise (generic term)
+stupefying|3
+(adj)|astonishing|astounding|staggering|impressive (similar term)
+(adj)|disorienting (similar term)
+(adj)|alarming (similar term)
+stupendous|1
+(adj)|colossal|prodigious|large (similar term)|big (similar term)
+stupid|4
+(adj)|anserine (similar term)|dopy (similar term)|dopey (similar term)|foolish (similar term)|goosey (similar term)|goosy (similar term)|gooselike (similar term)|jerky (similar term)|blockheaded (similar term)|boneheaded (similar term)|fatheaded (similar term)|loggerheaded (similar term)|thick (similar term)|thickheaded (similar term)|thick-skulled (similar term)|wooden-headed (similar term)|cloddish (similar term)|doltish (similar term)|dense (similar term)|dim (similar term)|dull (similar term)|dumb (similar term)|obtuse (similar term)|slow (similar term)|gaumless (similar term)|gormless (similar term)|lumpish (similar term)|lumpen (similar term)|unthinking (similar term)|nitwitted (similar term)|senseless (similar term)|soft-witted (similar term)|witless (similar term)|weak (similar term)|yokel-like (similar term)|unintelligent (related term)|stupid (related term)|smart (antonym)
+(adj)|dazed|stunned|stupefied|confused (similar term)
+(adj)|unintelligent|brainless (similar term)|headless (similar term)|feebleminded (similar term)|half-witted (similar term)|slow-witted (similar term)|imbecile (similar term)|imbecilic (similar term)|idiotic (similar term)|moronic (similar term)|retarded (related term)|stupid (related term)|intelligent (antonym)
+(noun)|stupid person|stupe|dullard|dolt|pudding head|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+stupid person|1
+(noun)|stupid|stupe|dullard|dolt|pudding head|pudden-head|poor fish|pillock|simpleton (generic term)|simple (generic term)
+stupidity|2
+(noun)|inability (generic term)|intelligence (antonym)
+(noun)|betise|folly|foolishness|imbecility|mistake (generic term)|error (generic term)|fault (generic term)
+stupidly|1
+(adv)|doltishly|without thinking
+stupor|2
+(noun)|daze|shock|stupefaction (generic term)
+(noun)|grogginess|stupefaction|semiconsciousness|unconsciousness (generic term)
+stuporous|1
+(adj)|dazed|foggy|groggy|logy|lethargic (similar term)|unergetic (similar term)
+sturdiness|3
+(noun)|good health (generic term)|healthiness (generic term)
+(noun)|strength (generic term)
+(noun)|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+sturdy|3
+(adj)|hardy|stalwart|stout|robust (similar term)
+(adj)|uncompromising|inflexible|hard-line (similar term)|hardline (similar term)|compromising (antonym)
+(adj)|tough|rugged (similar term)
+sturgeon|1
+(noun)|ganoid (generic term)|ganoid fish (generic term)
+sturm und drang|1
+(noun)|turbulence|upheaval|Sturm und Drang|disorder (generic term)
+sturmarbeiteilung|1
+(noun)|SA|Sturmarbeiteilung|Storm Troops|militia (generic term)|reserves (generic term)
+sturnella|1
+(noun)|Sturnella|genus Sturnella|bird genus (generic term)
+sturnella magna|1
+(noun)|eastern meadowlark|Sturnella magna|meadowlark (generic term)|lark (generic term)
+sturnella neglecta|1
+(noun)|western meadowlark|Sturnella neglecta|meadowlark (generic term)|lark (generic term)
+sturnidae|1
+(noun)|Sturnidae|family Sturnidae|bird family (generic term)
+sturnus|1
+(noun)|Sturnus|genus Sturnus|bird genus (generic term)
+sturnus vulgaris|1
+(noun)|common starling|Sturnus vulgaris|starling (generic term)
+sturt's desert pea|1
+(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea (generic term)|clianthus (generic term)
+sturt pea|1
+(noun)|desert pea|Sturt pea|Sturt's desert pea|Clianthus formosus|Clianthus speciosus|glory pea (generic term)|clianthus (generic term)
+stutter|2
+(noun)|stammer|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+(verb)|bumble|stammer|falter|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+stutterer|1
+(noun)|stammerer|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+stuttgart|1
+(noun)|Stuttgart|city (generic term)|metropolis (generic term)|urban center (generic term)
+stuyvesant|1
+(noun)|Stuyvesant|Peter Stuyvesant|Petrus Stuyvesant|administrator (generic term)|executive (generic term)
+sty|2
+(noun)|stye|hordeolum|eye infection|infection (generic term)
+(noun)|pigsty|pigpen|pen (generic term)
+stye|1
+(noun)|sty|hordeolum|eye infection|infection (generic term)
+stygian|2
+(adj)|Stygian|infernal (similar term)
+(adj)|Acheronian|Acherontic|Stygian|dark (similar term)
+style|12
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+(noun)|manner|mode|way|fashion|property (generic term)
+(noun)|expressive style|communication (generic term)
+(noun)|dash|elan|flair|panache|elegance (generic term)
+(noun)|vogue|trend|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|reproductive structure (generic term)
+(noun)|direction (generic term)|instruction (generic term)
+(noun)|stylus|tool (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(verb)|title|name (generic term)|call (generic term)
+(verb)|make (generic term)|create (generic term)
+(verb)|write (generic term)
+style of architecture|1
+(noun)|architectural style|type of architecture|art form (generic term)
+style sheet|1
+(noun)|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+styled|1
+(adj)|titled (similar term)
+styleless|1
+(adj)|unstylish|dowdy (similar term)|stylish (antonym)
+stylemark|1
+(noun)|hallmark|trademark|earmark|characteristic (generic term)
+styler|1
+(noun)|hairdresser|hairstylist|stylist|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+stylet|1
+(noun)|style (generic term)
+stylisation|1
+(noun)|stylization|standardization (generic term)|standardisation (generic term)|normalization (generic term)|normalisation (generic term)
+stylise|1
+(verb)|stylize|conventionalize|represent (generic term)|interpret (generic term)
+stylised|1
+(adj)|conventionalized|conventionalised|stylized|artificial (similar term)|unreal (similar term)
+stylish|2
+(adj)|fashionable|chic (similar term)|smart (similar term)|voguish (similar term)|chichi (similar term)|classy (similar term)|posh (similar term)|swish (similar term)|snazzy (similar term)|styleless (antonym)
+(adj)|fashionable|latest (similar term)|a la mode (similar term)|in style (similar term)|in vogue (similar term)|modish (similar term)|cool (similar term)|dapper (similar term)|dashing (similar term)|jaunty (similar term)|natty (similar term)|raffish (similar term)|rakish (similar term)|spiffy (similar term)|snappy (similar term)|spruce (similar term)|faddish (similar term)|faddy (similar term)|groovy (similar term)|swagger (similar term)|in (similar term)|up-to-date (similar term)|cutting-edge (similar term)|with-it (similar term)|mod (similar term)|modern (similar term)|modernistic (similar term)|old-time (similar term)|quaint (similar term)|olde worlde (similar term)|swank (similar term)|swanky (similar term)|trendsetting (similar term)|trend-setting (similar term)|trendy (similar term)|voguish (similar term)|unfashionable (antonym)
+stylishness|1
+(noun)|chic|chicness|chichi|modishness|smartness|swank|last word|elegance (generic term)
+stylist|2
+(noun)|artist (generic term)|creative person (generic term)
+(noun)|hairdresser|hairstylist|styler|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+stylistic|1
+(adj)|rhetorical (similar term)
+stylite|1
+(noun)|abstainer (generic term)|ascetic (generic term)
+stylization|1
+(noun)|stylisation|standardization (generic term)|standardisation (generic term)|normalization (generic term)|normalisation (generic term)
+stylize|1
+(verb)|stylise|conventionalize|represent (generic term)|interpret (generic term)
+stylized|1
+(adj)|conventionalized|conventionalised|stylised|artificial (similar term)|unreal (similar term)
+styloid process|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+stylomastoid vein|1
+(noun)|vena stylomastoidea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+stylomecon|1
+(noun)|Stylomecon|genus Stylomecon|dilleniid dicot genus (generic term)
+stylomecon heterophyllum|1
+(noun)|wind poppy|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy (generic term)
+stylophorum|1
+(noun)|Stylophorum|genus Stylophorum|dilleniid dicot genus (generic term)
+stylophorum diphyllum|1
+(noun)|celandine poppy|wood poppy|Stylophorum diphyllum|poppy (generic term)
+stylopodium|1
+(noun)|style (generic term)
+stylostixis|1
+(noun)|acupuncture|treatment (generic term)
+stylus|2
+(noun)|device (generic term)
+(noun)|style|tool (generic term)
+stylus printer|1
+(noun)|wire matrix printer|wire printer|dot matrix printer (generic term)|matrix printer (generic term)|dot printer (generic term)|impact printer (generic term)
+stymie|3
+(noun)|stymy|situation (generic term)|position (generic term)
+(noun)|stymy|obstacle (generic term)|obstruction (generic term)
+(verb)|obstruct|blockade|block|hinder|stymy|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+stymy|3
+(noun)|stymie|situation (generic term)|position (generic term)
+(noun)|stymie|obstacle (generic term)|obstruction (generic term)
+(verb)|obstruct|blockade|block|hinder|stymie|embarrass|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+styphelia|1
+(noun)|Styphelia|genus Styphelia|dilleniid dicot genus (generic term)
+styphelia humifusum|1
+(noun)|native cranberry|groundberry|ground-berry|cranberry heath|Astroloma humifusum|Styphelia humifusum|shrub (generic term)|bush (generic term)
+styphelia triflora|1
+(noun)|pink fivecorner|Styphelia triflora|shrub (generic term)|bush (generic term)
+stypsis|1
+(noun)|astringency|contractility (generic term)
+styptic|2
+(adj)|hemostatic|astringent (similar term)
+(noun)|astringent|astringent drug|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+styptic weed|1
+(noun)|coffee senna|mogdad coffee|stinking weed|Senna occidentalis|Cassia occidentalis|senna (generic term)
+styracaceae|1
+(noun)|Styracaceae|family Styracaceae|storax family|styrax family|dicot family (generic term)|magnoliopsid family (generic term)
+styracosaur|1
+(noun)|styracosaurus|ceratopsian (generic term)|horned dinosaur (generic term)
+styracosaurus|1
+(noun)|styracosaur|ceratopsian (generic term)|horned dinosaur (generic term)
+styrax|1
+(noun)|shrub (generic term)|bush (generic term)
+styrax family|1
+(noun)|Styracaceae|family Styracaceae|storax family|dicot family (generic term)|magnoliopsid family (generic term)
+styrax japonicum|1
+(noun)|Japanese snowbell|Styrax japonicum|styrax (generic term)
+styrax obassia|1
+(noun)|snowbell|Styrax obassia|styrax (generic term)
+styrax texana|1
+(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax (generic term)
+styrene|1
+(noun)|cinnamene|phenylethylene|vinylbenzene|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+styrofoam|1
+(noun)|Styrofoam|polystyrene (generic term)|foam (generic term)
+styron|1
+(noun)|Styron|William Styron|writer (generic term)|author (generic term)
+styx|1
+(noun)|Styx|River Styx|river (generic term)
+suasible|1
+(adj)|convincible|persuadable|persuasible|susceptible (similar term)
+suasion|1
+(noun)|persuasion|communication (generic term)|communicating (generic term)|dissuasion (antonym)
+suave|2
+(adj)|debonair|debonaire|debonnaire|refined (similar term)
+(adj)|politic|smooth|bland|diplomatic (similar term)|diplomatical (similar term)
+suaveness|1
+(noun)|suavity|blandness|smoothness|graciousness (generic term)
+suavity|1
+(noun)|suaveness|blandness|smoothness|graciousness (generic term)
+sub|3
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|submarine|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+(noun)|submarine|pigboat|U-boat|submersible (generic term)|submersible warship (generic term)
+(verb)|substitute|stand in|fill in|exchange (generic term)|change (generic term)|interchange (generic term)
+sub-assembly|1
+(noun)|assembly (generic term)
+sub-interval|1
+(noun)|interval (generic term)
+sub-rosa|1
+(adj)|under-the-table|behind-the-scenes|covert (similar term)
+sub-saharan|1
+(adj)|sub-Saharan|desert (related term)
+sub-saharan africa|1
+(noun)|Sub-Saharan Africa|Black Africa|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sub-test|1
+(noun)|test (generic term)|mental test (generic term)|mental testing (generic term)|psychometric test (generic term)
+sub judice|1
+(adj)|legal (similar term)
+subacid|1
+(adj)|sour (similar term)
+subacute|1
+(adj)|acute (similar term)
+subacute bacterial endocarditis|1
+(noun)|endocarditis (generic term)
+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 (generic term)
+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 (generic term)
+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 (generic term)
+subalpine|1
+(adj)|alpestrine|upland (similar term)|highland (similar term)
+subalpine fir|1
+(noun)|Alpine fir|Abies lasiocarpa|silver fir (generic term)
+subalpine larch|1
+(noun)|Larix lyallii|larch (generic term)|larch tree (generic term)
+subaltern|2
+(adj)|junior-grade|inferior|lower-ranking|lowly|petty|secondary|subordinate|junior (similar term)
+(noun)|commissioned military officer (generic term)
+subaquatic|2
+(adj)|subaqueous|submerged|submersed|underwater|aquatic (similar term)
+(adj)|semiaquatic|aquatic (similar term)
+subaqueous|1
+(adj)|subaquatic|submerged|submersed|underwater|aquatic (similar term)
+subarachnoid space|1
+(noun)|space (generic term)
+subarctic|1
+(adj)|polar circle (related term)
+subartesian|1
+(adj)|artesian (antonym)
+subatomic|2
+(adj)|substance|matter (related term)
+(adj)|microscopic (similar term)|microscopical (similar term)
+subatomic particle|1
+(noun)|particle|body (generic term)
+subbase|1
+(noun)|molding (generic term)|moulding (generic term)
+subbing|1
+(noun)|substituting|work (generic term)
+subclass|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+subclass acnidosporidia|1
+(noun)|Acnidosporidia|subclass Acnidosporidia|class (generic term)
+subclass actinopoda|1
+(noun)|Actinopoda|subclass Actinopoda|class (generic term)
+subclass alismatidae|1
+(noun)|Alismatidae|subclass Alismatidae|class (generic term)
+subclass amphineura|1
+(noun)|Amphineura|subclass Amphineura|class (generic term)
+subclass anapsida|1
+(noun)|Anapsida|subclass Anapsida|class (generic term)
+subclass archaeornithes|1
+(noun)|Archaeornithes|subclass Archaeornithes|class (generic term)
+subclass archosauria|1
+(noun)|Archosauria|subclass Archosauria|class (generic term)
+subclass arecidae|1
+(noun)|Arecidae|subclass Arecidae|class (generic term)
+subclass asteridae|1
+(noun)|Asteridae|subclass Asteridae|class (generic term)
+subclass branchiopoda|1
+(noun)|Branchiopoda|subclass Branchiopoda|class (generic term)
+subclass caryophyllidae|1
+(noun)|Caryophyllidae|subclass Caryophyllidae|class (generic term)
+subclass cirripedia|1
+(noun)|Cirripedia|subclass Cirripedia|class (generic term)
+subclass cnidosporidia|1
+(noun)|Cnidosporidia|subclass Cnidosporidia|class (generic term)
+subclass commelinidae|1
+(noun)|Commelinidae|subclass Commelinidae|class (generic term)
+subclass copepoda|1
+(noun)|Copepoda|subclass Copepoda|class (generic term)
+subclass crossopterygii|1
+(noun)|Crossopterygii|subclass Crossopterygii|class (generic term)
+subclass diapsida|1
+(noun)|Diapsida|subclass Diapsida|reptile (generic term)|reptilian (generic term)
+subclass dibranchia|1
+(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class (generic term)
+subclass dibranchiata|1
+(noun)|Dibranchiata|subclass Dibranchiata|Dibranchia|subclass Dibranchia|class (generic term)
+subclass dilleniidae|1
+(noun)|Dilleniidae|subclass Dilleniidae|class (generic term)
+subclass dipnoi|1
+(noun)|Dipnoi|subclass Dipnoi|class (generic term)
+subclass discomycetes|1
+(noun)|Discomycetes|subclass Discomycetes|class (generic term)
+subclass elasmobranchii|1
+(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class (generic term)
+subclass entomostraca|1
+(noun)|Entomostraca|subclass Entomostraca|class (generic term)
+subclass euascomycetes|1
+(noun)|Euascomycetes|subclass Euascomycetes|class (generic term)
+subclass euryalida|1
+(noun)|Euryalida|subclass Euryalida|class (generic term)
+subclass eutheria|1
+(noun)|Eutheria|subclass Eutheria|class (generic term)
+subclass exopterygota|1
+(noun)|Exopterygota|subclass Exopterygota|Hemimetabola|class (generic term)
+subclass hamamelidae|1
+(noun)|Hamamelidae|subclass Hamamelidae|class (generic term)
+subclass heterobasidiomycetes|1
+(noun)|Heterobasidiomycetes|subclass Heterobasidiomycetes|class (generic term)
+subclass holocephali|1
+(noun)|Holocephali|subclass Holocephali|class (generic term)
+subclass homobasidiomycetes|1
+(noun)|Homobasidiomycetes|subclass Homobasidiomycetes|class (generic term)
+subclass infusoria|1
+(noun)|Infusoria|subclass Infusoria|class (generic term)
+subclass lepidosauria|1
+(noun)|Lepidosauria|subclass Lepidosauria|class (generic term)
+subclass liliidae|1
+(noun)|Liliidae|subclass Liliidae|class (generic term)
+subclass magnoliidae|1
+(noun)|Magnoliidae|subclass Magnoliidae|ranalian complex|class (generic term)
+subclass malacostraca|1
+(noun)|Malacostraca|subclass Malacostraca|class (generic term)|category (generic term)|family (generic term)
+subclass metatheria|1
+(noun)|Metatheria|subclass Metatheria|class (generic term)
+subclass ophiurida|1
+(noun)|Ophiurida|subclass Ophiurida|class (generic term)
+subclass opisthobranchia|1
+(noun)|Opisthobranchia|subclass Opisthobranchia|class (generic term)
+subclass ostracoda|1
+(noun)|Ostracoda|subclass Ostracoda|class (generic term)
+subclass pantotheria|1
+(noun)|Pantotheria|subclass Pantotheria|class (generic term)
+subclass phytomastigina|1
+(noun)|Phytomastigina|subclass Phytomastigina|class (generic term)
+subclass prototheria|1
+(noun)|Prototheria|subclass Prototheria|class (generic term)
+subclass rhizopoda|1
+(noun)|Rhizopoda|subclass Rhizopoda|class (generic term)
+subclass rosidae|1
+(noun)|Rosidae|subclass Rosidae|class (generic term)
+subclass selachii|1
+(noun)|Elasmobranchii|subclass Elasmobranchii|Selachii|subclass Selachii|class (generic term)
+subclass synapsida|1
+(noun)|Synapsida|subclass Synapsida|class (generic term)
+subclass teleostei|1
+(noun)|Teleostei|subclass Teleostei|class (generic term)
+subclass telosporidia|1
+(noun)|Telosporidia|subclass Telosporidia|class (generic term)
+subclass zoomastigina|1
+(noun)|Zoomastigina|subclass Zoomastigina|class (generic term)
+subclavian|1
+(adj)|bone|os (related term)
+subclavian artery|1
+(noun)|arteria subclavia|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+subclavian vein|1
+(noun)|vena subclavia|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+subclinical absence|1
+(noun)|petit mal epilepsy (generic term)|absence (generic term)
+subcommittee|1
+(noun)|committee (generic term)|commission (generic term)
+subcompact|1
+(noun)|subcompact car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+subcompact car|1
+(noun)|subcompact|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+subconscious|2
+(adj)|unconscious (similar term)
+(noun)|subconscious mind|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+subconscious mind|1
+(noun)|subconscious|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+subconsciousness|1
+(noun)|cognitive state (generic term)|state of mind (generic term)
+subcontinent|1
+(noun)|landmass (generic term)
+subcontract|3
+(noun)|contract (generic term)
+(verb)|farm out|job|hire (generic term)|engage (generic term)|employ (generic term)
+(verb)|work (generic term)|do work (generic term)
+subcontractor|1
+(noun)|contractor (generic term)
+subcortical|1
+(adj)|neural structure (related term)
+subculture|1
+(noun)|social group (generic term)
+subcutaneous|1
+(adj)|hypodermic|connective tissue|body covering (related term)
+subcutaneous injection|1
+(noun)|injection (generic term)|shot (generic term)
+subcutaneous test|1
+(noun)|intradermal test|skin test (generic term)
+subdata base|1
+(noun)|database (generic term)
+subdeacon|1
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|Holy Order (generic term)|Order (generic term)
+subdirectory|1
+(noun)|directory (generic term)
+subdivide|2
+(verb)|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+subdivided|1
+(adj)|divided (similar term)
+subdivider|1
+(noun)|divider (generic term)
+subdivision|5
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|division (generic term)|partition (generic term)|partitioning (generic term)|segmentation (generic term)|sectionalization (generic term)|sectionalisation (generic term)
+(noun)|branch|arm|division (generic term)
+(noun)|section|writing (generic term)|written material (generic term)|piece of writing (generic term)|music (generic term)
+(noun)|subsection|section (generic term)|segment (generic term)
+subdivision ascomycota|1
+(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division (generic term)
+subdivision ascomycotina|1
+(noun)|Ascomycota|subdivision Ascomycota|Ascomycotina|subdivision Ascomycotina|division (generic term)
+subdivision basidiomycota|1
+(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division (generic term)
+subdivision basidiomycotina|1
+(noun)|Basidiomycota|subdivision Basidiomycota|Basidiomycotina|subdivision Basidiomycotina|division (generic term)
+subdivision coniferophytina|1
+(noun)|Coniferopsida|class Coniferopsida|Coniferophytina|subdivision Coniferophytina|Coniferophyta|class (generic term)
+subdivision cycadophyta|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+subdivision cycadophytina|1
+(noun)|Cycadopsida|class Cycadopsida|Cycadophytina|subdivision Cycadophytina|Cycadophyta|subdivision Cycadophyta|class (generic term)
+subdivision deuteromycota|1
+(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division (generic term)
+subdivision deuteromycotina|1
+(noun)|Deuteromycota|subdivision Deuteromycota|Deuteromycotina|Fungi imperfecti|subdivision Deuteromycotina|division (generic term)
+subdivision ginkgophyta|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+subdivision ginkgophytina|1
+(noun)|Ginkgopsida|class Ginkgopsida|Ginkgophytina|class Ginkgophytina|subdivision Ginkgophytina|subdivision Ginkgophyta|class (generic term)
+subdivision gnetophytina|1
+(noun)|Gnetopsida|class Gnetopsida|Gnetophytina|subdivision Gnetophytina|Gnetophyta|class (generic term)
+subdivision mastigomycota|1
+(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division (generic term)
+subdivision mastigomycotina|1
+(noun)|Mastigomycota|subdivision Mastigomycota|Mastigomycotina|subdivision Mastigomycotina|division (generic term)
+subdivision pinophytina|1
+(noun)|Pinopsida|class Pinopsida|Pinophytina|subdivision Pinophytina|class (generic term)
+subdivision pteropsida|1
+(noun)|Pteropsida|subdivision Pteropsida|division (generic term)
+subdivision taxophytina|1
+(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class (generic term)
+subdivision zygomycota|1
+(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division (generic term)
+subdivision zygomycotina|1
+(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division (generic term)
+subdominant|1
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+subduable|1
+(adj)|subjugable|conquerable (similar term)
+subduction|1
+(noun)|geological process (generic term)|geologic process (generic term)
+subdue|6
+(verb)|repress|quash|keep down|subjugate|reduce|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|suppress|stamp down|inhibit|conquer|curb|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|mortify|cricify|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|overcome|get over|surmount|master|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|subordinate|lower (generic term)|lour (generic term)
+(verb)|tame|chasten|change (generic term)|alter (generic term)|modify (generic term)
+subdued|5
+(adj)|hushed|muted|quiet|soft (similar term)
+(adj)|low-key|low-keyed|restrained (similar term)
+(adj)|tame (similar term)
+(adj)|soft|dull (similar term)
+(adj)|dim|dark (similar term)
+subduedness|2
+(noun)|dimness|dullness (generic term)
+(noun)|meekness|humility (generic term)|humbleness (generic term)
+subduer|1
+(noun)|surmounter|overcomer|restrainer (generic term)|controller (generic term)
+subdural|1
+(adj)|meninx|meninges (related term)
+subedit|1
+(verb)|copyread|copyedit|edit (generic term)|redact (generic term)
+subeditor|1
+(noun)|editor (generic term)|editor in chief (generic term)
+suberic acid|1
+(noun)|octanedioic acid|carboxylic acid (generic term)
+subfamily|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+subfamily acoraceae|1
+(noun)|Acoraceae|subfamily Acoraceae|monocot family (generic term)|liliopsid family (generic term)
+subfamily anserinae|1
+(noun)|Anserinae|subfamily Anserinae|bird family (generic term)
+subfamily bassariscidae|1
+(noun)|Bassariscidae|subfamily Bassariscidae|mammal family (generic term)
+subfamily bovinae|1
+(noun)|Bovinae|subfamily Bovinae|mammal family (generic term)
+subfamily cabombaceae|1
+(noun)|Cabombaceae|subfamily Cabombaceae|water-shield family|magnoliid dicot family (generic term)
+subfamily caesalpinioideae|1
+(noun)|Caesalpinioideae|subfamily Caesalpinioideae|rosid dicot family (generic term)
+subfamily carduelinae|1
+(noun)|Carduelinae|subfamily Carduelinae|bird family (generic term)
+subfamily carpinaceae|1
+(noun)|Carpinaceae|subfamily Carpinaceae|family Carpinaceae|hamamelid dicot family (generic term)
+subfamily cetoniidae|1
+(noun)|Cetoniidae|subfamily Cetoniidae|arthropod family (generic term)
+subfamily corylaceae|1
+(noun)|Corylaceae|subfamily Corylaceae|family Corylaceae|hamamelid dicot family (generic term)
+subfamily dorylinae|1
+(noun)|Dorylinae|subfamily Dorylinae|arthropod family (generic term)
+subfamily dracaenaceae|1
+(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family (generic term)
+subfamily dracenaceae|1
+(noun)|Dracenaceae|subfamily Dracenaceae|Dracaenaceae|subfamily Dracaenaceae|liliid monocot family (generic term)
+subfamily emberizidae|1
+(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family (generic term)
+subfamily emberizinae|1
+(noun)|Emberizidae|subfamily Emberizidae|subfamily Emberizinae|bird family (generic term)
+subfamily garrulinae|1
+(noun)|Garrulinae|subfamily Garrulinae|bird family (generic term)
+subfamily gerbillinae|1
+(noun)|Gerbillinae|subfamily Gerbillinae|mammal family (generic term)
+subfamily hydromyinae|1
+(noun)|Hydromyinae|subfamily Hydromyinae|mammal family (generic term)
+subfamily loriinae|1
+(noun)|Loriinae|subfamily Loriinae|bird family (generic term)
+subfamily lutrinae|1
+(noun)|Lutrinae|subfamily Lutrinae|mammal family (generic term)
+subfamily malaconotinae|1
+(noun)|Malaconotinae|subfamily Malaconotinae|bird family (generic term)
+subfamily melinae|1
+(noun)|Melinae|subfamily Melinae|mammal family (generic term)
+subfamily melolonthidae|1
+(noun)|Melolonthidae|subfamily Melolonthidae|arthropod family (generic term)
+subfamily mephitinae|1
+(noun)|Mephitinae|subfamily Mephitinae|mammal family (generic term)
+subfamily merginae|1
+(noun)|Merginae|subfamily Merginae|bird family (generic term)
+subfamily mimosoideae|1
+(noun)|Mimosoideae|subfamily Mimosoideae|rosid dicot family (generic term)
+subfamily nelumbonaceae|1
+(noun)|Nelumbonaceae|subfamily Nelumbonaceae|magnoliid dicot family (generic term)
+subfamily numididae|1
+(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family (generic term)
+subfamily numidinae|1
+(noun)|Numididae|subfamily Numididae|Numidinae|subfamily Numidinae|bird family (generic term)
+subfamily papilionoideae|1
+(noun)|Papilionoideae|subfamily Papilionoideae|rosid dicot family (generic term)
+subfamily perdicidae|1
+(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family (generic term)
+subfamily perdicinae|1
+(noun)|Perdicidae|subfamily Perdicidae|Perdicinae|subfamily Perdicinae|bird family (generic term)
+subfamily peristediinae|1
+(noun)|Peristediinae|subfamily Peristediinae|fish family (generic term)
+subfamily petauristidae|1
+(noun)|Petauristidae|subfamily Petauristidae|mammal family (generic term)
+subfamily philadelphaceae|1
+(noun)|Philadelphaceae|subfamily Philadelphaceae|rosid dicot family (generic term)
+subfamily potoroinae|1
+(noun)|Potoroinae|subfamily Potoroinae|mammal family (generic term)
+subfamily pythoninae|1
+(noun)|Pythoninae|subfamily Pythoninae|reptile family (generic term)
+subfamily smilacaceae|1
+(noun)|Smilacaceae|subfamily Smilacaceae|liliid monocot family (generic term)
+subfamily sterninae|1
+(noun)|Sterninae|subfamily Sterninae|bird family (generic term)
+subfamily sylviinae|1
+(noun)|Sylviinae|subfamily Sylviinae|bird family (generic term)
+subfamily taxodiaceae|1
+(noun)|Taxodiaceae|subfamily Taxodiaceae|redwood family|gymnosperm family (generic term)
+subfamily triglinae|1
+(noun)|Triglinae|subfamily Triglinae|fish family (generic term)
+subfamily turdinae|1
+(noun)|Turdinae|subfamily Turdinae|bird family (generic term)
+subfamily uvulariaceae|1
+(noun)|Uvulariaceae|subfamily Uvulariaceae|liliid monocot family (generic term)
+subfigure|1
+(noun)|figure (generic term)
+subfusc|1
+(adj)|unattractive (similar term)
+subgenus|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+subgenus azalea|1
+(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus (generic term)
+subgenus azaleastrum|1
+(noun)|subgenus Azalea|Azaleastrum|subgenus Azaleastrum|dilleniid dicot genus (generic term)
+subgenus calliopsis|1
+(noun)|subgenus Calliopsis|asterid dicot genus (generic term)
+subgenus chen|1
+(noun)|Chen|subgenus Chen|bird genus (generic term)
+subgenus pastor|1
+(noun)|Pastor|subgenus Pastor|bird genus (generic term)
+subgenus poinciana|1
+(noun)|Poinciana|subgenus Poinciana|rosid dicot genus (generic term)
+subgross|1
+(adj)|microscopic (similar term)|microscopical (similar term)
+subgroup|2
+(noun)|group (generic term)|grouping (generic term)
+(noun)|group (generic term)|mathematical group (generic term)
+subhead|1
+(noun)|subheading|heading (generic term)|header (generic term)|head (generic term)
+subheading|1
+(noun)|subhead|heading (generic term)|header (generic term)|head (generic term)
+subhuman|2
+(adj)|infrahuman (similar term)|superhuman (antonym)
+(adj)|unfit (similar term)
+subjacent|1
+(adj)|underlying (similar term)|superjacent (antonym)
+subject|16
+(adj)|taxable (similar term)|nonexempt (similar term)
+(adj)|capable|open|susceptible (similar term)
+(adj)|dependent|subordinate (similar term)
+(adj)|affected (similar term)
+(noun)|topic|theme|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|topic|issue|matter|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|discipline|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+(noun)|content|depicted object|thing (generic term)
+(noun)|case|guinea pig|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|national|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|constituent (generic term)|grammatical constituent (generic term)
+(noun)|term (generic term)
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|submit (generic term)
+(verb)|subjugate|dominate (generic term)|master (generic term)
+(verb)|submit|refer (generic term)
+subject area|1
+(noun)|discipline|subject|subject field|field|field of study|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+subject case|1
+(noun)|nominative|nominative case|case (generic term)|grammatical case (generic term)|oblique (antonym)
+subject field|1
+(noun)|discipline|subject|subject area|field|field of study|study|bailiwick|branch of knowledge|knowledge domain (generic term)|knowledge base (generic term)
+subject matter|1
+(noun)|message|content|substance|communication (generic term)
+subjection|2
+(noun)|subjugation|relationship (generic term)
+(noun)|conquest|conquering|subjugation|capture (generic term)|gaining control (generic term)|seizure (generic term)
+subjective|2
+(adj)|personal (similar term)|prejudiced (similar term)|unobjective (similar term)|unverifiable (similar term)|objective (antonym)
+(adj)|immanent|transeunt (antonym)
+subjectively|1
+(adv)|objectively (antonym)
+subjectiveness|1
+(noun)|subjectivity|judgment (generic term)|judgement (generic term)|sound judgment (generic term)|sound judgement (generic term)|perspicacity (generic term)
+subjectivism|2
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+(noun)|quality (generic term)
+subjectivist|1
+(noun)|intellectual (generic term)|intellect (generic term)
+subjectivity|1
+(noun)|subjectiveness|judgment (generic term)|judgement (generic term)|sound judgment (generic term)|sound judgement (generic term)|perspicacity (generic term)
+subjoin|1
+(verb)|append (generic term)|tag on (generic term)|tack on (generic term)|tack (generic term)|hang on (generic term)
+subjoining|1
+(noun)|supplementation|subjunction|expansion (generic term)|expanding upon (generic term)
+subjugable|1
+(adj)|subduable|conquerable (similar term)
+subjugate|2
+(verb)|repress|quash|keep down|subdue|reduce|oppress (generic term)|suppress (generic term)|crush (generic term)
+(verb)|subject|dominate (generic term)|master (generic term)
+subjugated|1
+(adj)|defeated (similar term)
+subjugation|3
+(noun)|subjection|relationship (generic term)
+(noun)|oppression|persecution (generic term)
+(noun)|conquest|conquering|subjection|capture (generic term)|gaining control (generic term)|seizure (generic term)
+subjugator|1
+(noun)|conqueror (generic term)|vanquisher (generic term)
+subjunction|1
+(noun)|supplementation|subjoining|expansion (generic term)|expanding upon (generic term)
+subjunctive|2
+(adj)|mood|mode|modality (related term)
+(noun)|subjunctive mood|mood (generic term)|mode (generic term)|modality (generic term)
+subjunctive mood|1
+(noun)|subjunctive|mood (generic term)|mode (generic term)|modality (generic term)
+subkingdom|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+subkingdom metazoa|1
+(noun)|Metazoa|subkingdom Metazoa|subkingdom (generic term)
+subkingdom parazoa|1
+(noun)|Parazoa|subkingdom Parazoa|subkingdom (generic term)
+sublease|2
+(noun)|sublet|lease (generic term)|rental (generic term)|letting (generic term)
+(verb)|sublet|lease (generic term)|let (generic term)|rent (generic term)
+sublet|2
+(noun)|sublease|lease (generic term)|rental (generic term)|letting (generic term)
+(verb)|sublease|lease (generic term)|let (generic term)|rent (generic term)
+sublieutenant|1
+(noun)|lieutenant (generic term)
+sublimate|7
+(adj)|purified|refined|pure (similar term)
+(noun)|gas (generic term)
+(verb)|redirect (generic term)|airt (generic term)
+(verb)|rarefy|subtilize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|purify|make pure|distill|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|sublime|gasify (generic term)|vaporize (generic term)|vaporise (generic term)|aerify (generic term)
+(verb)|sublime|change (generic term)
+sublimated|1
+(adj)|sublimed
+sublimation|2
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+sublimaze|1
+(noun)|Fentanyl|Sublimaze|opiate (generic term)|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+sublime|6
+(adj)|empyreal|empyrean|glorious (similar term)
+(adj)|reverend|sacred (similar term)
+(adj)|elated (similar term)
+(adj)|exalted|grand|high-flown|high-minded|lofty|rarefied|rarified|idealistic|noble-minded|noble (similar term)
+(verb)|sublimate|change (generic term)
+(verb)|sublimate|gasify (generic term)|vaporize (generic term)|vaporise (generic term)|aerify (generic term)
+sublime porte|1
+(noun)|Porte|Sublime Porte|court (generic term)|royal court (generic term)
+sublimed|1
+(adj)|sublimated
+subliminal|1
+(adj)|imperceptible (similar term)|unperceivable (similar term)
+sublimity|1
+(noun)|nobility (generic term)|nobleness (generic term)|magnanimousness (generic term)|grandeur (generic term)
+sublingual|1
+(adj)|organ|articulator (related term)
+sublingual gland|1
+(noun)|sublingual salivary gland|salivary gland (generic term)
+sublingual salivary gland|1
+(noun)|sublingual gland|salivary gland (generic term)
+sublingual vein|1
+(noun)|vena sublingualis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+subliterary|1
+(adj)|informal (similar term)
+sublittoral|1
+(adj)|ocean floor|ocean bottom|seabed|sea bottom|Davy Jones's locker|Davy Jones (related term)
+sublunar|2
+(adj)|sublunary|cislunar|satellite (related term)
+(adj)|sublunary|terrestrial|earthly (similar term)
+sublunary|2
+(adj)|sublunar|cislunar|satellite (related term)
+(adj)|sublunar|terrestrial|earthly (similar term)
+subluxate|1
+(verb)|injure (generic term)|wound (generic term)
+subluxation|1
+(noun)|luxation (generic term)
+submachine gun|1
+(noun)|machine gun (generic term)
+submandibular gland|1
+(noun)|submaxillary gland|submaxillary salivary gland|submandibular salivary gland|mandibular gland|salivary gland (generic term)
+submandibular salivary gland|1
+(noun)|submaxillary gland|submaxillary salivary gland|submandibular gland|mandibular gland|salivary gland (generic term)
+submarine|8
+(adj)|undersea|subsurface (similar term)
+(noun)|pigboat|sub|U-boat|submersible (generic term)|submersible warship (generic term)
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine sandwich|torpedo|wedge|zep|sandwich (generic term)
+(verb)|skid (generic term)|slip (generic term)|slue (generic term)|slew (generic term)|slide (generic term)
+(verb)|flip (generic term)|toss (generic term)|sky (generic term)|pitch (generic term)
+(verb)|down (generic term)|knock down (generic term)|cut down (generic term)|push down (generic term)|pull down (generic term)
+(verb)|operate (generic term)|control (generic term)
+(verb)|attack (generic term)|assail (generic term)
+submarine ball|1
+(noun)|submarine pitch|pitch (generic term)|delivery (generic term)
+submarine earthquake|1
+(noun)|seaquake|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+submarine pitch|1
+(noun)|submarine ball|pitch (generic term)|delivery (generic term)
+submarine sandwich|1
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|torpedo|wedge|zep|sandwich (generic term)
+submarine torpedo|1
+(noun)|torpedo (generic term)
+submariner|1
+(noun)|bluejacket (generic term)|navy man (generic term)|sailor (generic term)|sailor boy (generic term)
+submaxilla|1
+(noun)|lower jaw|mandible|mandibula|mandibular bone|lower jawbone|jawbone|jowl|jaw (generic term)|articulator (generic term)
+submaxillary gland|1
+(noun)|submaxillary salivary gland|submandibular gland|submandibular salivary gland|mandibular gland|salivary gland (generic term)
+submaxillary salivary gland|1
+(noun)|submaxillary gland|submandibular gland|submandibular salivary gland|mandibular gland|salivary gland (generic term)
+submediant|1
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+submenu|1
+(noun)|hierarchical menu|cascading menu|menu (generic term)|computer menu (generic term)
+submerge|4
+(verb)|submerse|sink (generic term)|settle (generic term)|go down (generic term)|go under (generic term)
+(verb)|drown|overwhelm|cover (generic term)|spread over (generic term)|drown out (related term)
+(verb)|submerse|immerse (generic term)|plunge (generic term)
+(verb)|inundate|deluge|flood (generic term)
+submerged|3
+(adj)|sunken|drowned (similar term)|swamped (similar term)|afloat (antonym)|aground (antonym)
+(adj)|submersed|underwater|subsurface (similar term)
+(adj)|subaqueous|subaquatic|submersed|underwater|aquatic (similar term)
+submergence|1
+(noun)|submerging|submersion|immersion|sinking (generic term)
+submergible|1
+(adj)|submersible|nonsubmersible (antonym)
+submerging|1
+(noun)|submergence|submersion|immersion|sinking (generic term)
+submerse|2
+(verb)|submerge|sink (generic term)|settle (generic term)|go down (generic term)|go under (generic term)
+(verb)|submerge|immerse (generic term)|plunge (generic term)
+submersed|2
+(adj)|submerged|underwater|subsurface (similar term)
+(adj)|subaqueous|subaquatic|submerged|underwater|aquatic (similar term)
+submersible|3
+(adj)|submergible|nonsubmersible (antonym)
+(noun)|apparatus (generic term)|setup (generic term)
+(noun)|submersible warship|warship (generic term)|war vessel (generic term)|combat ship (generic term)|surface ship (antonym)
+submersible warship|1
+(noun)|submersible|warship (generic term)|war vessel (generic term)|combat ship (generic term)|surface ship (antonym)
+submersion|2
+(noun)|submergence|submerging|immersion|sinking (generic term)
+(noun)|immersion|ducking|dousing|wetting (generic term)
+submission|7
+(noun)|entry|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|compliance|group action (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|meekness|humility (generic term)|humbleness (generic term)
+(noun)|written agreement (generic term)
+(noun)|agreement (generic term)|understanding (generic term)
+(noun)|contention (generic term)
+submissive|2
+(adj)|abject (similar term)|bowed (similar term)|bowing (similar term)|meek (similar term)|spiritless (similar term)|cringing (similar term)|groveling (similar term)|grovelling (similar term)|wormlike (similar term)|wormy (similar term)|dominated (similar term)|henpecked (similar term)|humble (related term)|obedient (related term)|subordinate (related term)|unassertive (related term)|domineering (antonym)
+(adj)|slavish|subservient|servile (similar term)
+submissively|1
+(adv)|deferentially
+submissiveness|1
+(noun)|obedience (generic term)
+submit|9
+(verb)|subject|refer (generic term)
+(verb)|state|put forward|posit|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|present|give (generic term)
+(verb)|relegate|pass on|submit (generic term)|subject (generic term)
+(verb)|bow|defer|accede|give in|yield (generic term)|give in (generic term)|succumb (generic term)|knuckle under (generic term)|buckle under (generic term)
+(verb)|take|undergo|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+(verb)|put in|apply (generic term)
+(verb)|render|give (generic term)|gift (generic term)|present (generic term)
+(verb)|resign|reconcile|accept (generic term)
+submitter|2
+(noun)|follower (generic term)
+(noun)|applicant (generic term)|applier (generic term)
+submucosa|1
+(noun)|connective tissue (generic term)
+subnormal|2
+(adj)|abnormal (similar term)
+(noun)|simpleton (generic term)|simple (generic term)
+subnormality|2
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|retardation|mental retardation|backwardness|slowness|stupidity (generic term)
+subocean|1
+(adj)|suboceanic|sea (similar term)
+suboceanic|1
+(adj)|subocean|sea (similar term)
+subocular|1
+(adj)|suborbital|cavity|bodily cavity|cavum (related term)
+suborbital|2
+(adj)|path|route|itinerary (related term)
+(adj)|subocular|cavity|bodily cavity|cavum (related term)
+suborder|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+suborder alcyonacea|1
+(noun)|Alcyonacea|suborder Alcyonacea|animal order (generic term)
+suborder anisoptera|1
+(noun)|Anisoptera|suborder Anisoptera|animal order (generic term)
+suborder anseres|1
+(noun)|Anseres|suborder Anseres|animal order (generic term)
+suborder anthropoidea|1
+(noun)|Anthropoidea|suborder Anthropoidea|animal order (generic term)
+suborder blattaria|1
+(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order (generic term)
+suborder blattodea|1
+(noun)|Blattodea|suborder Blattodea|Blattaria|suborder Blattaria|animal order (generic term)
+suborder blennioidea|1
+(noun)|Blennioidea|suborder Blennioidea|animal order (generic term)
+suborder brachyura|1
+(noun)|Brachyura|suborder Brachyura|animal order (generic term)
+suborder carnosaura|1
+(noun)|Carnosaura|suborder Carnosaura|animal order (generic term)
+suborder cephalaspida|1
+(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order (generic term)
+suborder ceratopsia|1
+(noun)|Ceratopsia|suborder Ceratopsia|animal order (generic term)
+suborder ceratosaura|1
+(noun)|suborder Ceratosaura|animal order (generic term)
+suborder charadrii|1
+(noun)|Charadrii|suborder Charadrii|animal order (generic term)
+suborder clamatores|1
+(noun)|Clamatores|suborder Clamatores|animal order (generic term)
+suborder euronithopoda|1
+(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order (generic term)
+suborder eurylaimi|1
+(noun)|Eurylaimi|suborder Eurylaimi|animal order (generic term)
+suborder gorgonacea|1
+(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order (generic term)
+suborder gorgoniacea|1
+(noun)|Gorgonacea|suborder Gorgonacea|Gorgoniacea|suborder Gorgoniacea|animal order (generic term)
+suborder heteroptera|1
+(noun)|Heteroptera|suborder Heteroptera|animal order (generic term)
+suborder heterostraci|1
+(noun)|Heterostraci|suborder Heterostraci|animal order (generic term)
+suborder homoptera|1
+(noun)|Homoptera|suborder Homoptera|animal order (generic term)
+suborder hyperoartia|1
+(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order (generic term)
+suborder hyperotreta|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+suborder hystricomorpha|1
+(noun)|Hystricomorpha|suborder Hystricomorpha|animal order (generic term)
+suborder lacertilia|1
+(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order (generic term)
+suborder lari|1
+(noun)|Lari|suborder Lari|animal order (generic term)
+suborder lemuroidea|1
+(noun)|Lemuroidea|suborder Lemuroidea|animal order (generic term)
+suborder limicolae|1
+(noun)|Limicolae|suborder Limicolae|animal order (generic term)
+suborder lipotyphla|1
+(noun)|Lipotyphla|suborder Lipotyphla|animal order (generic term)
+suborder maniraptora|1
+(noun)|Maniraptora|suborder Maniraptora|animal order (generic term)
+suborder manteodea|1
+(noun)|Manteodea|suborder Manteodea|animal order (generic term)
+suborder marginocephalia|1
+(noun)|Marginocephalia|suborder Marginocephalia|marginocephalian|animal order (generic term)
+suborder megachiroptera|1
+(noun)|Megachiroptera|suborder Megachiroptera|animal order (generic term)
+suborder megaloptera|1
+(noun)|Megaloptera|suborder Megaloptera|animal order (generic term)
+suborder menotyphla|1
+(noun)|Menotyphla|suborder Menotyphla|animal order (generic term)
+suborder menurae|1
+(noun)|Menurae|suborder Menurae|animal order (generic term)
+suborder microchiroptera|1
+(noun)|Microchiroptera|suborder Microchiroptera|animal order (generic term)
+suborder mugiloidea|1
+(noun)|Mugiloidea|suborder Mugiloidea|animal order (generic term)
+suborder myomorpha|1
+(noun)|Myomorpha|suborder Myomorpha|animal order (generic term)
+suborder mysticeti|1
+(noun)|Mysticeti|suborder Mysticeti|animal order (generic term)
+suborder myxiniformes|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+suborder myxinoidei|1
+(noun)|Myxiniformes|suborder Myxiniformes|Hyperotreta|suborder Hyperotreta|Myxinoidei|Myxinoidea|suborder Myxinoidei|animal order (generic term)
+suborder natantia|1
+(noun)|Natantia|suborder Natantia|animal order (generic term)
+suborder nematocera|1
+(noun)|Nematocera|suborder Nematocera|animal order (generic term)
+suborder nothosauria|1
+(noun)|Nothosauria|suborder Nothosauria|animal order (generic term)
+suborder odontoceti|1
+(noun)|Odontoceti|suborder Odontoceti|animal order (generic term)
+suborder ophidia|1
+(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order (generic term)
+suborder ornithomimida|1
+(noun)|Ornithomimida|suborder Ornithomimida|animal order (generic term)
+suborder ornithopoda|1
+(noun)|Euronithopoda|suborder Euronithopoda|euronithopod|Ornithopoda|suborder Ornithopoda|animal order (generic term)
+suborder oscines|1
+(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order (generic term)
+suborder osteostraci|1
+(noun)|Osteostraci|suborder Osteostraci|Cephalaspida|suborder Cephalaspida|animal order (generic term)
+suborder otides|1
+(noun)|Otides|suborder Otides|animal order (generic term)
+suborder pachycephalosaurus|1
+(noun)|suborder Pachycephalosaurus|animal order (generic term)
+suborder passeres|1
+(noun)|Oscines|suborder Oscines|Passeres|suborder Passeres|animal order (generic term)
+suborder percoidea|1
+(noun)|Percoidea|suborder Percoidea|animal order (generic term)
+suborder petromyzoniformes|1
+(noun)|Petromyzoniformes|suborder Petromyzoniformes|Hyperoartia|suborder Hyperoartia|animal order (generic term)
+suborder pinnipedia|1
+(noun)|Pinnipedia|suborder Pinnipedia|animal order (generic term)
+suborder plesiosauria|1
+(noun)|Plesiosauria|suborder Plesiosauria|animal order (generic term)
+suborder prosauropoda|1
+(noun)|Prosauropoda|suborder Prosauropoda|animal order (generic term)
+suborder prosimii|1
+(noun)|Prosimii|suborder Prosimii|animal order (generic term)
+suborder reptantia|1
+(noun)|Reptantia|suborder Reptantia|animal order (generic term)
+suborder ruminantia|1
+(noun)|Ruminantia|suborder Ruminantia|animal order (generic term)
+suborder sauria|1
+(noun)|Sauria|suborder Sauria|Lacertilia|suborder Lacertilia|animal order (generic term)
+suborder sauropoda|1
+(noun)|Sauropoda|suborder Sauropoda|animal order (generic term)
+suborder sauropodomorpha|1
+(noun)|Sauropodomorpha|suborder Sauropodomorpha|animal order (generic term)
+suborder sciuromorpha|1
+(noun)|Sciuromorpha|suborder Sciuromorpha|animal order (generic term)
+suborder scombroidea|1
+(noun)|Scombroidea|suborder Scombroidea|animal order (generic term)
+suborder scorpaenoidea|1
+(noun)|Scorpaenoidea|suborder Scorpaenoidea|animal order (generic term)
+suborder serpentes|1
+(noun)|Serpentes|suborder Serpentes|Ophidia|suborder Ophidia|animal order (generic term)
+suborder strepsirhini|1
+(noun)|Strepsirhini|suborder Strepsirhini|animal order (generic term)
+suborder tarsioidea|1
+(noun)|Tarsioidea|suborder Tarsioidea|animal order (generic term)
+suborder theropoda|1
+(noun)|Theropoda|suborder Theropoda|animal order (generic term)
+suborder thyreophora|1
+(noun)|Thyreophora|suborder Thyreophora|thyreophoran|animal order (generic term)
+suborder tyranni|1
+(noun)|Tyranni|suborder Tyranni|animal order (generic term)
+suborder xenarthra|1
+(noun)|Xenarthra|suborder Xenarthra|animal order (generic term)
+suborder zygoptera|1
+(noun)|Zygoptera|suborder Zygoptera|animal order (generic term)
+subordinate|8
+(adj)|low-level|adjunct (similar term)|assistant (similar term)|associate (similar term)|secondary (similar term)|under (similar term)|inferior (related term)|subordinate (related term)|dominant (antonym)
+(adj)|feudatory (similar term)|ruled (similar term)|subject (similar term)|dependent (similar term)|subservient (similar term)|submissive (related term)|subordinate (related term)|low-level (related term)|insubordinate (antonym)
+(adj)|dependent|independent (antonym)
+(adj)|junior-grade|inferior|lower-ranking|lowly|petty|secondary|subaltern|junior (similar term)
+(noun)|subsidiary|underling|foot soldier|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|hyponym|subordinate word|word (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+(verb)|subdue|lower (generic term)|lour (generic term)
+subordinate clause|1
+(noun)|dependent clause|clause (generic term)
+subordinate conjunction|1
+(noun)|subordinating conjunction|conjunction (generic term)|conjunctive (generic term)|connective (generic term)|continuative (generic term)
+subordinate word|1
+(noun)|hyponym|subordinate|word (generic term)
+subordinateness|1
+(noun)|subsidiarity|inferiority (generic term)|lower status (generic term)|lower rank (generic term)
+subordinating|1
+(adj)|subordinative|coordinating (antonym)
+subordinating conjunction|2
+(noun)|conjunction (generic term)
+(noun)|subordinate conjunction|conjunction (generic term)|conjunctive (generic term)|connective (generic term)|continuative (generic term)
+subordination|5
+(noun)|dependence (generic term)|dependance (generic term)|dependency (generic term)
+(noun)|hyponymy|semantic relation (generic term)
+(noun)|grammatical relation (generic term)
+(noun)|submissiveness (generic term)|insubordination (antonym)
+(noun)|mastery|domination (generic term)
+subordinative|1
+(adj)|subordinating|coordinating (antonym)
+suborn|3
+(verb)|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|procure (generic term)|secure (generic term)
+(verb)|induce (generic term)|stimulate (generic term)|cause (generic term)|have (generic term)|get (generic term)|make (generic term)
+subornation|2
+(noun)|provocation (generic term)|incitement (generic term)
+(noun)|testimony (generic term)
+subornation of perjury|1
+(noun)|subornation (generic term)
+suborner|1
+(noun)|briber|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+subpart|1
+(noun)|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+subphylum|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+subphylum cephalochordata|1
+(noun)|Cephalochordata|subphylum Cephalochordata|phylum (generic term)
+subphylum craniata|1
+(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum (generic term)
+subphylum pentastomida|1
+(noun)|Pentastomida|subphylum Pentastomida|phylum (generic term)
+subphylum tunicata|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+subphylum urochorda|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+subphylum urochordata|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+subphylum vertebrata|1
+(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum (generic term)
+subpoena|2
+(noun)|subpoena ad testificandum|writ (generic term)|judicial writ (generic term)
+(verb)|serve (generic term)|process (generic term)|swear out (generic term)
+subpoena ad testificandum|1
+(noun)|subpoena|writ (generic term)|judicial writ (generic term)
+subpoena duces tecum|1
+(noun)|writ (generic term)|judicial writ (generic term)
+subpopulation|1
+(noun)|population (generic term)|universe (generic term)
+subprogram|1
+(noun)|routine|subroutine|procedure|function|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+subrogate|1
+(verb)|substitute (generic term)|replace (generic term)
+subrogation|1
+(noun)|substitution (generic term)|exchange (generic term)|commutation (generic term)
+subroutine|1
+(noun)|routine|subprogram|procedure|function|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+subroutine library|1
+(noun)|library|program library|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+subscribe|5
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)
+(verb)|sign|write (generic term)|sign in (related term)|sign away (related term)|sign over (related term)
+(verb)|support|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|pledge|donate (generic term)
+(verb)|subscribe to|take|buy (generic term)|purchase (generic term)
+subscribe to|1
+(verb)|subscribe|take|buy (generic term)|purchase (generic term)
+subscribed|1
+(adj)|signed (similar term)
+subscriber|3
+(noun)|endorser|indorser|ratifier|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|reader|customer (generic term)|client (generic term)
+(noun)|contributor|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+subscriber line|1
+(noun)|telephone line|phone line|telephone circuit|line|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+subscript|2
+(adj)|inferior|adscript (antonym)|superscript (antonym)
+(noun)|inferior|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|superscript (antonym)
+subscription|4
+(noun)|payment (generic term)
+(noun)|agreement (generic term)
+(noun)|contribution (generic term)|donation (generic term)
+(noun)|handwriting (generic term)
+subscription right|1
+(noun)|preemption (generic term)|pre-emption (generic term)
+subscription warrant|1
+(noun)|warrant (generic term)|stock warrant (generic term)|stock-purchase warrant (generic term)
+subsection|1
+(noun)|subdivision|section (generic term)|segment (generic term)
+subsequence|2
+(noun)|sequel|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|posteriority|subsequentness|lateness (generic term)|priority (antonym)
+subsequent|1
+(adj)|consequent (similar term)|ensuant (similar term)|resultant (similar term)|resulting (similar term)|sequent (similar term)|future (similar term)|later (similar term)|ulterior (similar term)|succeeding (related term)|antecedent (antonym)
+subsequently|1
+(adv)|later|afterwards|afterward|after|later on
+subsequentness|1
+(noun)|posteriority|subsequence|lateness (generic term)|priority (antonym)
+subserve|1
+(verb)|help (generic term)|assist (generic term)|aid (generic term)
+subservience|3
+(noun)|condition (generic term)|status (generic term)
+(noun)|subservientness|subordinateness (generic term)|subsidiarity (generic term)
+(noun)|obsequiousness|servility|submissiveness (generic term)
+subservient|3
+(adj)|subordinate (similar term)
+(adj)|implemental|instrumental|helpful (similar term)
+(adj)|slavish|submissive|servile (similar term)
+subserviently|1
+(adv)|obsequiously|servilely
+subservientness|1
+(noun)|subservience|subordinateness (generic term)|subsidiarity (generic term)
+subset|1
+(noun)|set (generic term)
+subshrub|1
+(noun)|suffrutex|shrub (generic term)|bush (generic term)
+subside|4
+(verb)|lessen|weaken (generic term)
+(verb)|dip (generic term)|sink (generic term)
+(verb)|settle|sink (generic term)|settle (generic term)|go down (generic term)|go under (generic term)
+(verb)|sink|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+subsidence|3
+(noun)|remission|remittal|suspension (generic term)|respite (generic term)|reprieve (generic term)|hiatus (generic term)|abatement (generic term)
+(noun)|settling|subsiding|sinking (generic term)
+(noun)|cave in|collapse (generic term)
+subsidiarity|1
+(noun)|subordinateness|inferiority (generic term)|lower status (generic term)|lower rank (generic term)
+subsidiary|5
+(adj)|grant (related term)
+(adj)|accessory|adjunct|ancillary|adjuvant|appurtenant|auxiliary|supportive (similar term)
+(adj)|auxiliary|supplemental|supplementary|secondary (similar term)
+(noun)|subordinate|underling|foot soldier|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|subsidiary company|company (generic term)
+subsidiary company|1
+(noun)|subsidiary|company (generic term)
+subsidiary ledger|1
+(noun)|ledger (generic term)|leger (generic term)|account book (generic term)|book of account (generic term)|book (generic term)
+subsiding|1
+(noun)|settling|subsidence|sinking (generic term)
+subsidisation|2
+(noun)|subsidization|money (generic term)
+(noun)|grant|subsidization|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+subsidise|2
+(verb)|subsidize|pay (generic term)
+(verb)|subsidize|support (generic term)
+subsidised|1
+(adj)|subsidized|supported (similar term)
+subsidiser|1
+(noun)|subsidizer|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+subsidization|2
+(noun)|subsidisation|money (generic term)
+(noun)|grant|subsidisation|allotment (generic term)|apportionment (generic term)|apportioning (generic term)|allocation (generic term)|parceling (generic term)|parcelling (generic term)|assignation (generic term)
+subsidize|2
+(verb)|subsidise|support (generic term)
+(verb)|subsidise|pay (generic term)
+subsidized|1
+(adj)|subsidised|supported (similar term)
+subsidizer|1
+(noun)|subsidiser|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+subsidy|1
+(noun)|grant (generic term)
+subsist|1
+(verb)|exist|survive|live
+subsistence|3
+(noun)|support (generic term)|keep (generic term)|livelihood (generic term)|living (generic term)|bread and butter (generic term)|sustenance (generic term)
+(noun)|survival (generic term)|endurance (generic term)
+(noun)|being (generic term)|beingness (generic term)|existence (generic term)
+subsistence farming|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+subsister|1
+(noun)|survivor|unfortunate (generic term)|unfortunate person (generic term)
+subsoil|1
+(noun)|undersoil|soil (generic term)|dirt (generic term)
+subsonic|1
+(adj)|supersonic (antonym)|sonic (antonym)
+subspace|1
+(noun)|mathematical space (generic term)|topological space (generic term)
+subspecies|1
+(noun)|race|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+substance|6
+(noun)|matter|physical entity (generic term)
+(noun)|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|kernel|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|sum|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|meaning|idea (generic term)|thought (generic term)
+(noun)|means|capital (generic term)
+(noun)|message|content|subject matter|communication (generic term)
+substance abuse|1
+(noun)|drug abuse|habit|misuse (generic term)|abuse (generic term)
+substance abuser|1
+(noun)|drug user|user|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+substandard|1
+(adj)|deficient|inferior|nonstandard (similar term)
+substantia alba|1
+(noun)|white matter|nervous tissue (generic term)|nerve tissue (generic term)
+substantia grisea|1
+(noun)|grey matter|gray matter|grey substance|gray substance|nervous tissue (generic term)|nerve tissue (generic term)
+substantia nigra|1
+(noun)|nucleus niger|locus niger|neural structure (generic term)
+substantial|5
+(adj)|significant|considerable (similar term)
+(adj)|substantive|essential (similar term)
+(adj)|real|material|material (related term)|insubstantial (antonym)
+(adj)|hearty|satisfying|solid|square|wholesome (similar term)
+(adj)|solid|strong|sound (similar term)
+substantiality|1
+(noun)|substantialness|solidness|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|insubstantiality (antonym)
+substantially|1
+(adv)|well|considerably
+substantialness|1
+(noun)|substantiality|solidness|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|insubstantiality (antonym)
+substantiate|4
+(verb)|confirm|corroborate|sustain|support|affirm|negate (antonym)
+(verb)|incarnate|body forth|embody|be (generic term)
+(verb)|realize|realise|actualize|actualise|make (generic term)|create (generic term)
+(verb)|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+substantiated|1
+(adj)|corroborated|verified|supported (similar term)
+substantiating|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiative|validating|validatory|verificatory|verifying|supportive (similar term)
+substantiation|2
+(noun)|confirmation|verification|check|proof (generic term)|cogent evidence (generic term)
+(noun)|validation|proof|determination (generic term)|finding (generic term)
+substantiative|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|validating|validatory|verificatory|verifying|supportive (similar term)
+substantival|1
+(adj)|word (related term)
+substantive|4
+(adj)|substantial|essential (similar term)
+(adj)|essential|adjective (antonym)
+(adj)|meaty|meaningful (similar term)
+(noun)|word (generic term)
+substantive dye|1
+(noun)|direct dye|dye (generic term)|dyestuff (generic term)
+substation|1
+(noun)|station (generic term)
+substitutability|1
+(noun)|replaceability|commutability|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+substitutable|2
+(adj)|synonymous (similar term)
+(adj)|commutable|exchangeable (similar term)
+substitute|9
+(adj)|second-string|secondary (similar term)
+(adj)|utility|secondary (similar term)
+(adj)|ersatz|artificial (similar term)|unreal (similar term)
+(noun)|replacement|equivalent (generic term)
+(noun)|reserve|second-stringer|athlete (generic term)|jock (generic term)
+(noun)|stand-in|relief|reliever|backup|backup man|fill-in|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(verb)|replace|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|sub|stand in|fill in|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|deputize|deputise|step in|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+substituting|1
+(noun)|subbing|work (generic term)
+substitution|2
+(noun)|permutation|transposition|replacement|switch|variation (generic term)|fluctuation (generic term)
+(noun)|exchange|commutation|change (generic term)
+substitution class|1
+(noun)|paradigm|class (generic term)|category (generic term)|family (generic term)
+substrate|4
+(noun)|substance (generic term)|matter (generic term)
+(noun)|substratum|surface (generic term)
+(noun)|substratum|stratum (generic term)
+(noun)|substratum|indigenous language (generic term)
+substratum|3
+(noun)|substrate|surface (generic term)
+(noun)|substrate|stratum (generic term)
+(noun)|substrate|indigenous language (generic term)
+substring|1
+(noun)|string (generic term)
+substructure|2
+(noun)|infrastructure|structure (generic term)
+(noun)|foundation|base|fundament|foot|groundwork|understructure|support (generic term)
+subsume|2
+(verb)|include (generic term)
+(verb)|colligate|include (generic term)
+subsumption|2
+(noun)|minor premise|minor premiss|premise (generic term)|premiss (generic term)|assumption (generic term)
+(noun)|classification (generic term)|categorization (generic term)|categorisation (generic term)|sorting (generic term)
+subsurface|1
+(adj)|belowground (similar term)|underground (similar term)|submarine (similar term)|undersea (similar term)|submerged (similar term)|submersed (similar term)|underwater (similar term)|subterranean (similar term)|subterraneous (similar term)|overhead (antonym)|surface (antonym)
+subsystem|1
+(noun)|system (generic term)|scheme (generic term)
+subtend|1
+(verb)|delimit|be (generic term)
+subterfuge|1
+(noun)|blind|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+subterminal|1
+(adj)|last (similar term)
+subterranean|2
+(adj)|subterraneous|subsurface (similar term)
+(adj)|subterraneous|ulterior|covert (similar term)
+subterraneous|2
+(adj)|subterranean|subsurface (similar term)
+(adj)|subterranean|ulterior|covert (similar term)
+subthalamic nucleus|1
+(noun)|nucleus (generic term)|cell nucleus (generic term)|karyon (generic term)
+subthalamus|1
+(noun)|neural structure (generic term)
+subtilin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+subtilise|1
+(verb)|subtilize|sharpen (generic term)|heighten (generic term)
+subtilize|3
+(verb)|discriminate (generic term)|know apart (generic term)
+(verb)|rarefy|sublimate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|subtilise|sharpen (generic term)|heighten (generic term)
+subtitle|3
+(noun)|caption|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|title (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+subtle|4
+(adj)|elusive|impalpable (similar term)
+(adj)|delicate (similar term)
+(adj)|perceptive (similar term)
+(adj)|insidious|pernicious|harmful (similar term)
+subtlety|2
+(noun)|nuance|nicety|shade|refinement|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|niceness|difficulty (generic term)|difficultness (generic term)
+subtonic|1
+(noun)|leading tone|note (generic term)|musical note (generic term)|tone (generic term)
+subtopia|1
+(noun)|conurbation (generic term)|urban sprawl (generic term)|sprawl (generic term)
+subtotal|1
+(noun)|sum (generic term)|amount (generic term)|total (generic term)
+subtract|1
+(verb)|deduct|take off|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|add (antonym)
+subtracter|2
+(noun)|calculator (generic term)|reckoner (generic term)|figurer (generic term)|estimator (generic term)|computer (generic term)
+(noun)|calculator (generic term)|calculating machine (generic term)
+subtraction|2
+(noun)|minus|arithmetic operation (generic term)
+(noun)|deduction|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|addition (antonym)
+subtractive|1
+(adj)|ablative (similar term)|reductive (similar term)|additive (antonym)
+subtrahend|1
+(noun)|number (generic term)
+subtreasury|1
+(noun)|treasury (generic term)|exchequer (generic term)
+subtropic|1
+(adj)|subtropical|semitropical|semitropic|climatic zone (related term)
+subtropical|1
+(adj)|subtropic|semitropical|semitropic|climatic zone (related term)
+subtropics|1
+(noun)|semitropics|climatic zone (generic term)
+subularia|1
+(noun)|Subularia|genus Subularia|dilleniid dicot genus (generic term)
+subularia aquatica|1
+(noun)|awlwort|Subularia aquatica|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+subunit|1
+(noun)|fractional monetary unit|monetary unit (generic term)
+suburb|1
+(noun)|suburbia|suburban area|residential district (generic term)|residential area (generic term)|community (generic term)
+suburban|1
+(adj)|residential district|residential area|community (related term)
+suburban area|1
+(noun)|suburb|suburbia|residential district (generic term)|residential area (generic term)|community (generic term)
+suburbanise|2
+(verb)|suburbanize|change (generic term)
+(verb)|suburbanize|change (generic term)|alter (generic term)|modify (generic term)
+suburbanised|1
+(adj)|suburbanized|decentralized (similar term)|decentralised (similar term)
+suburbanite|1
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+suburbanize|2
+(verb)|suburbanise|change (generic term)
+(verb)|suburbanise|change (generic term)|alter (generic term)|modify (generic term)
+suburbanized|1
+(adj)|suburbanised|decentralized (similar term)|decentralised (similar term)
+suburbia|2
+(noun)|suburb|suburban area|residential district (generic term)|residential area (generic term)|community (generic term)
+(noun)|subculture (generic term)
+subvent|1
+(verb)|underwrite|subvention|undertake (generic term)|guarantee (generic term)
+subvention|3
+(noun)|subsidy (generic term)
+(noun)|provision (generic term)|supply (generic term)|supplying (generic term)
+(verb)|underwrite|subvent|undertake (generic term)|guarantee (generic term)
+subversion|2
+(noun)|corruption|degradation (generic term)|debasement (generic term)
+(noun)|subversive activity|overthrow (generic term)
+subversive|2
+(adj)|insurgent|seditious|disloyal (similar term)
+(noun)|revolutionist|revolutionary|subverter|radical (generic term)
+subversive activity|1
+(noun)|subversion|overthrow (generic term)
+subversiveness|1
+(noun)|treason|traitorousness|disloyalty (generic term)
+subvert|4
+(verb)|overthrow|overturn|bring down|depose (generic term)|force out (generic term)
+(verb)|corrupt|pervert|demoralize|demoralise|debauch|debase|profane|vitiate|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sabotage|undermine|countermine|counteract|weaken|disobey (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+subverter|1
+(noun)|revolutionist|revolutionary|subversive|radical (generic term)
+subvocalise|1
+(verb)|subvocalize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+subvocaliser|1
+(noun)|subvocalizer|articulator (generic term)
+subvocalize|1
+(verb)|subvocalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+subvocalizer|1
+(noun)|subvocaliser|articulator (generic term)
+subway|2
+(noun)|metro|tube|underground|subway system|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+(noun)|underpass|tunnel (generic term)
+subway fare|1
+(noun)|train fare (generic term)
+subway station|1
+(noun)|terminal (generic term)|terminus (generic term)|depot (generic term)
+subway system|1
+(noun)|metro|tube|underground|subway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+subway token|1
+(noun)|token (generic term)
+subway train|1
+(noun)|train (generic term)|railroad train (generic term)
+succedaneum|1
+(noun)|substitute (generic term)|replacement (generic term)
+succeed|2
+(verb)|win|come through|bring home the bacon|deliver the goods|fail (antonym)
+(verb)|come after|follow|precede (antonym)
+succeeder|1
+(noun)|achiever|winner|success|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|loser (antonym)
+succeeding|2
+(adj)|back-to-back (similar term)|consecutive (similar term)|ensuing (similar term)|following (similar term)|undermentioned (similar term)|following (similar term)|next (similar term)|in line (similar term)|postmortem (similar term)|subsequent (related term)|preceding (antonym)
+(adj)|future|next|incoming (similar term)
+success|4
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)|failure (antonym)
+(noun)|attainment (generic term)
+(noun)|prosperity (generic term)|successfulness (generic term)|failure (antonym)
+(noun)|achiever|winner|succeeder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|loser (antonym)
+successful|1
+(adj)|boffo (similar term)|booming (similar term)|flourishing (similar term)|palmy (similar term)|prospering (similar term)|prosperous (similar term)|roaring (similar term)|thriving (similar term)|eminent (similar term)|in (similar term)|made (similar term)|no-hit (similar term)|productive (similar term)|self-made (similar term)|sure-fire (similar term)|triple-crown (similar term)|triple-crown (similar term)|victorious (similar term)|winning (similar term)|winning (similar term)|fortunate (related term)|productive (related term)|undefeated (related term)|unsuccessful (antonym)
+successfully|1
+(adv)|with success|unsuccessfully (antonym)
+successfulness|1
+(noun)|prosperity|good fortune (generic term)|luckiness (generic term)|good luck (generic term)
+succession|5
+(noun)|sequence|chronological sequence|successiveness|chronological succession|temporal arrangement (generic term)|temporal order (generic term)
+(noun)|series (generic term)
+(noun)|sequence|order (generic term)|ordering (generic term)
+(noun)|ecological succession|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|taking over|acquisition (generic term)
+successive|1
+(adj)|consecutive|sequent|sequential|serial|ordered (similar term)
+successively|1
+(adv)|in turn
+successiveness|1
+(noun)|sequence|chronological sequence|succession|chronological succession|temporal arrangement (generic term)|temporal order (generic term)
+successor|3
+(noun)|replacement|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|substitute (generic term)|replacement (generic term)
+(noun)|heir|offspring (generic term)|progeny (generic term)|issue (generic term)
+succinct|1
+(adj)|compendious|compact|summary|concise (similar term)
+succinctly|1
+(adv)|compactly
+succinctness|1
+(noun)|conciseness|concision|pithiness|terseness (generic term)
+succinic|1
+(adj)|natural resin (related term)
+succinic acid|1
+(noun)|carboxylic acid (generic term)
+succinylcholine|1
+(noun)|muscle relaxant (generic term)
+succor|2
+(noun)|relief|succour|ministration|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(verb)|succour|help (generic term)|assist (generic term)|aid (generic term)
+succorer|1
+(noun)|succourer|rescuer (generic term)|recoverer (generic term)|saver (generic term)
+succory|1
+(noun)|chicory|chicory plant|Cichorium intybus|herb (generic term)|herbaceous plant (generic term)
+succos|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+succotash|1
+(noun)|dish (generic term)
+succoth|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+succour|2
+(noun)|relief|succor|ministration|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(verb)|succor|help (generic term)|assist (generic term)|aid (generic term)
+succourer|1
+(noun)|succorer|rescuer (generic term)|recoverer (generic term)|saver (generic term)
+succuba|1
+(noun)|succubus|devil (generic term)|fiend (generic term)|demon (generic term)|daemon (generic term)|daimon (generic term)
+succubus|1
+(noun)|succuba|devil (generic term)|fiend (generic term)|demon (generic term)|daemon (generic term)|daimon (generic term)
+succulence|1
+(noun)|succulency|juiciness|appetizingness (generic term)|appetisingness (generic term)
+succulency|1
+(noun)|succulence|juiciness|appetizingness (generic term)|appetisingness (generic term)
+succulent|2
+(adj)|lush|juicy (similar term)
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+succumb|2
+(verb)|yield|give in|knuckle under|buckle under|accept (generic term)|consent (generic term)|go for (generic term)
+(verb)|yield|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)|survive (antonym)
+succus|1
+(noun)|juice|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+succuss|1
+(verb)|shake up|shake (generic term)|agitate (generic term)
+succussion|1
+(noun)|auscultation (generic term)
+such|1
+(adj)|so much|much (similar term)
+suchlike|1
+(adj)|like (similar term)|similar (similar term)
+suck|6
+(noun)|sucking|suction|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(verb)|drink (generic term)|imbibe (generic term)|suck in (related term)
+(verb)|draw (generic term)|take out (generic term)
+(verb)|suck in|absorb (generic term)|take in (generic term)
+(verb)|absorb|imbibe|soak up|sop up|suck up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|breastfeed|bottle-feed|suckle|nurse|wet-nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+suck in|3
+(verb)|take in|sop up|take up|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|suck|absorb (generic term)|take in (generic term)
+(verb)|draw in|hollow (generic term)|hollow out (generic term)|core out (generic term)
+suck out|1
+(verb)|aspirate|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+suck up|3
+(verb)|absorb|suck|imbibe|soak up|sop up|draw|take in|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|cozy up|cotton up|shine up|play up|sidle up|ingratiate (generic term)
+(verb)|fawn|toady|truckle|bootlick|kowtow|kotow|flatter (generic term)|blandish (generic term)
+sucker|7
+(noun)|chump|fool|gull|mark|patsy|fall guy|soft touch|mug|victim (generic term)|dupe (generic term)
+(noun)|shoot (generic term)
+(noun)|drinker (generic term)
+(noun)|freshwater fish (generic term)
+(noun)|lollipop|all-day sucker|candy (generic term)|confect (generic term)
+(noun)|organ (generic term)
+(noun)|catostomid (generic term)
+sucker punch|1
+(noun)|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+suckerfish|1
+(noun)|remora|sucking fish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sucking|1
+(noun)|suck|suction|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+sucking fish|1
+(noun)|remora|suckerfish|spiny-finned fish (generic term)|acanthopterygian (generic term)
+sucking louse|1
+(noun)|louse|insect (generic term)
+sucking pig|1
+(noun)|piglet (generic term)|piggy (generic term)|shoat (generic term)|shote (generic term)
+suckle|2
+(verb)|feed (generic term)|eat (generic term)
+(verb)|breastfeed|bottle-feed|suck|nurse|wet-nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+suckled|1
+(adj)|nursed|breast-fed (similar term)
+suckling|4
+(noun)|Suckling|Sir John Suckling|poet (generic term)|courtier (generic term)
+(noun)|nursling|nurseling|baby (generic term)|babe (generic term)|infant (generic term)
+(noun)|young mammal (generic term)
+(noun)|lactation|feeding (generic term)|alimentation (generic term)
+suckling pig|1
+(noun)|cochon de lait|pork (generic term)|porc (generic term)
+suckling reflex|1
+(noun)|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+sucralfate|1
+(noun)|Carafate|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+sucrase|1
+(noun)|invertase|saccharase|disaccharidase (generic term)
+sucre|2
+(noun)|Ecuadoran monetary unit (generic term)
+(noun)|Sucre|capital (generic term)
+sucrose|1
+(noun)|saccharose|disaccharide (generic term)|plant product (generic term)
+suction|3
+(noun)|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+(noun)|sucking|suck|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(verb)|evacuate (generic term)|void (generic term)|empty (generic term)
+suction curettage|1
+(noun)|vacuum aspiration|curettage (generic term)|curettement (generic term)|induced abortion (generic term)
+suction pump|1
+(noun)|pump (generic term)
+suction stop|1
+(noun)|click|stop consonant (generic term)|stop (generic term)|occlusive (generic term)|plosive consonant (generic term)|plosive speech sound (generic term)|plosive (generic term)
+suctorial|1
+(adj)|consumption|ingestion|intake|uptake (related term)
+sudafed|1
+(noun)|naphazoline|Privine|Sudafed|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)|nasal decongestant (generic term)
+sudan|2
+(noun)|Sudan|Republic of the Sudan|Soudan|African country (generic term)|African nation (generic term)
+(noun)|Sudan|Soudan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sudanese|2
+(adj)|Sudanese|African country|African nation (related term)
+(noun)|Sudanese|African (generic term)
+sudanese monetary unit|1
+(noun)|Sudanese monetary unit|monetary unit (generic term)
+sudanese pound|1
+(noun)|Sudanese pound|pound|Sudanese monetary unit (generic term)
+sudate|1
+(verb)|sweat|perspire|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|sweat off (related term)
+sudation|1
+(noun)|perspiration|sweating|diaphoresis|hidrosis|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sudatorium|1
+(noun)|sudatory|bathhouse (generic term)|bagnio (generic term)
+sudatory|2
+(noun)|sudorific|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(noun)|sudatorium|bathhouse (generic term)|bagnio (generic term)
+sudbury|1
+(noun)|Sudbury|city (generic term)|metropolis (generic term)|urban center (generic term)
+sudden|1
+(adj)|abrupt (similar term)|choppy (similar term)|jerky (similar term)|emergent (similar term)|explosive (similar term)|fulminant (similar term)|sharp (similar term)|unexpected (similar term)|unforeseen (similar term)|fast (related term)|gradual (antonym)
+sudden death|1
+(noun)|overtime (generic term)|extra time (generic term)
+sudden infant death syndrome|1
+(noun)|SIDS|infant death|crib death|cot death|death (generic term)|sleep apnea (generic term)
+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|precipitousness|precipitance|precipitancy|haste (generic term)|hastiness (generic term)|hurry (generic term)|hurriedness (generic term)|precipitation (generic term)
+sudor|1
+(noun)|perspiration|sweat|secretion (generic term)
+sudoriferous gland|1
+(noun)|sweat gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+sudorific|2
+(adj)|diaphoretic|bodily process|body process|bodily function|activity (related term)
+(noun)|sudatory|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+sudra|2
+(noun)|Shudra|Sudra|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+(noun)|shudra|varna (generic term)
+suds|4
+(noun)|soapsuds|lather|foam (generic term)|froth (generic term)
+(noun)|beer (generic term)
+(verb)|wash (generic term)|launder (generic term)
+(verb)|froth|spume|make (generic term)|create (generic term)
+sudsy|2
+(adj)|lathery|foam|froth (related term)
+(adj)|bubbling|foaming|foamy|frothing|spumous|spumy|agitated (similar term)
+sue|2
+(noun)|Sue|Eugene Sue|writer (generic term)|author (generic term)
+(verb)|action|litigate|process|challenge (generic term)
+suede|2
+(noun)|suede leather|leather (generic term)
+(noun)|suede cloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+suede cloth|1
+(noun)|suede|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+suede glove|1
+(noun)|kid glove|glove (generic term)
+suede leather|1
+(noun)|suede|leather (generic term)
+suer|2
+(noun)|suitor|wooer|admirer (generic term)|adorer (generic term)
+(noun)|petitioner|plaintiff (generic term)|complainant (generic term)
+suet|1
+(noun)|edible fat (generic term)
+suet pudding|1
+(noun)|pudding (generic term)
+suety|1
+(adj)|fatty (similar term)|fat (similar term)
+suez|1
+(noun)|Suez|city (generic term)|metropolis (generic term)|urban center (generic term)
+suez canal|1
+(noun)|Suez Canal|ship canal (generic term)|shipway (generic term)
+suffer|11
+(verb)|endure|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)|enjoy (antonym)
+(verb)|sustain|have|get|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|feel (generic term)|experience (generic term)
+(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|support|brook|abide|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|worsen (generic term)|decline (generic term)
+(verb)|hurt|be (generic term)|be well (antonym)
+(verb)|hurt|ache|perceive (generic term)|comprehend (generic term)
+(verb)|meet|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+(verb)|be (generic term)
+(verb)|tend (generic term)|be given (generic term)|lean (generic term)|incline (generic term)|run (generic term)
+(verb)|lose|worsen (generic term)|decline (generic term)
+sufferable|1
+(adj)|bearable|endurable|supportable|tolerable (similar term)
+sufferance|2
+(noun)|endurance (generic term)
+(noun)|toleration|acceptance|permissiveness (generic term)|tolerance (generic term)
+sufferer|2
+(noun)|sick person|diseased person|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|martyr|victim (generic term)
+suffering|6
+(adj)|troubled (similar term)
+(adj)|miserable|wretched|unhappy (similar term)
+(noun)|agony|excruciation|pain (generic term)|hurting (generic term)
+(noun)|woe|misery (generic term)|wretchedness (generic term)|miserableness (generic term)
+(noun)|distress|hurt|pain (generic term)|painfulness (generic term)
+(noun)|hurt|pain (generic term)|painfulness (generic term)
+suffice|1
+(verb)|do|answer|serve|satisfy (generic term)|fulfill (generic term)|fulfil (generic term)|live up to (generic term)
+sufficiency|3
+(noun)|wealth (generic term)|wealthiness (generic term)
+(noun)|enough|relative quantity (generic term)
+(noun)|adequacy|quality (generic term)|inadequacy (antonym)|insufficiency (antonym)
+sufficient|1
+(adj)|adequate (similar term)|decent (similar term)|enough (similar term)|comfortable (similar term)|ample (related term)|insufficient (antonym)
+sufficiently|1
+(adv)|insufficiently (antonym)
+suffix|2
+(noun)|postfix|affix (generic term)|ending (generic term)|termination (generic term)
+(verb)|affix (generic term)|prefix (antonym)
+suffix notation|1
+(noun)|postfix notation|reverse Polish notation|parenthesis-free notation (generic term)
+suffixation|1
+(noun)|affixation (generic term)
+suffocate|7
+(verb)|smother|asphyxiate|kill (generic term)
+(verb)|stifle|asphyxiate|choke|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|choke|become (generic term)|turn (generic term)
+(verb)|choke|stifle (generic term)|dampen (generic term)
+(verb)|stifle|asphyxiate|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)
+(verb)|feel (generic term)
+(verb)|gag|choke|strangle|suffer (generic term)|hurt (generic term)
+suffocating|1
+(adj)|smothering|suffocative|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+suffocation|2
+(noun)|asphyxiation|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|asphyxiation|hypoxia (generic term)
+suffocative|1
+(adj)|smothering|suffocating|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+suffragan|1
+(noun)|suffragan bishop|bishop (generic term)
+suffragan bishop|1
+(noun)|suffragan|bishop (generic term)
+suffrage|1
+(noun)|right to vote|vote|franchise (generic term)|enfranchisement (generic term)
+suffragette|1
+(noun)|suffragist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+suffragism|1
+(noun)|belief (generic term)
+suffragist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+suffrutescent|1
+(adj)|woody (similar term)
+suffrutex|1
+(noun)|subshrub|shrub (generic term)|bush (generic term)
+suffuse|2
+(verb)|perfuse|flush (generic term)
+(verb)|change (generic term)
+suffusion|1
+(noun)|permeation|pervasion|diffusion (generic term)
+suffusive|1
+(adj)|distributive (similar term)
+sufi|2
+(adj)|Sufi|mysticism|religious mysticism (related term)|Muslim|Moslem (related term)
+(noun)|Sufi|Muslim (generic term)|Moslem (generic term)
+sufism|1
+(noun)|Sufism|mysticism (generic term)|religious mysticism (generic term)
+sugar|4
+(noun)|refined sugar|sweetening (generic term)|sweetener (generic term)
+(noun)|carbohydrate|saccharide|macromolecule (generic term)|supermolecule (generic term)
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|wampum|money (generic term)
+(verb)|saccharify|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+sugar-bush|1
+(noun)|sugar sumac|Rhus ovata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+sugar-coated|1
+(adj)|candied|sugary (similar term)
+sugar apple|1
+(noun)|sweetsop|anon|custard apple (generic term)
+sugar beet|2
+(noun)|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|beet (generic term)|beetroot (generic term)
+sugar bowl|1
+(noun)|dish (generic term)
+sugar candy|1
+(noun)|candy (generic term)|confect (generic term)
+sugar cane|2
+(noun)|sugarcane|cane (generic term)
+(noun)|sugarcane|Saccharum officinarum|gramineous plant (generic term)|graminaceous plant (generic term)
+sugar cookie|1
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+sugar corn|1
+(noun)|sweet corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+sugar daddy|1
+(noun)|sweetheart (generic term)|sweetie (generic term)|steady (generic term)|truelove (generic term)
+sugar loaf|1
+(noun)|sugarloaf|loaf sugar|sugar (generic term)|refined sugar (generic term)
+sugar maple|1
+(noun)|rock maple|Acer saccharum|maple (generic term)
+sugar of lead|1
+(noun)|lead acetate|acetate (generic term)|ethanoate (generic term)|dye (generic term)|dyestuff (generic term)
+sugar palm|1
+(noun)|gomuti|gomuti palm|Arenga pinnata|sago palm (generic term)
+sugar pea|2
+(noun)|snow pea|edible-pod pea (generic term)|edible-podded pea (generic term)|Pisum sativum macrocarpon (generic term)
+(noun)|snow pea|green pea (generic term)|garden pea (generic term)
+sugar ray robinson|1
+(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter (generic term)|gladiator (generic term)
+sugar refinery|1
+(noun)|refinery (generic term)
+sugar shell|1
+(noun)|sugar spoon|spoon (generic term)
+sugar snap pea|2
+(noun)|snap pea|edible-pod pea (generic term)|edible-podded pea (generic term)|Pisum sativum macrocarpon (generic term)
+(noun)|green pea (generic term)|garden pea (generic term)
+sugar sorghum|1
+(noun)|sorgo|sorgho|sweet sorghum|sorghum (generic term)
+sugar spoon|1
+(noun)|sugar shell|spoon (generic term)
+sugar sumac|1
+(noun)|sugar-bush|Rhus ovata|sumac (generic term)|sumach (generic term)|shumac (generic term)
+sugar syrup|1
+(noun)|syrup (generic term)|sirup (generic term)
+sugar water|1
+(noun)|drinking water (generic term)
+sugarberry|2
+(noun)|Celtis laevigata|hackberry (generic term)|nettle tree (generic term)
+(noun)|hackberry|berry (generic term)
+sugarcane|2
+(noun)|sugar cane|cane (generic term)
+(noun)|sugar cane|Saccharum officinarum|gramineous plant (generic term)|graminaceous plant (generic term)
+sugarcoat|2
+(verb)|glaze|candy|sweeten (generic term)|dulcify (generic term)|edulcorate (generic term)|dulcorate (generic term)
+(verb)|spin (generic term)
+sugared|1
+(adj)|sweetened|sweet|sweet-flavored|sugary (similar term)
+sugariness|2
+(noun)|sweet|sweetness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sweetness (generic term)|sweet (generic term)
+sugarless|1
+(adj)|nonsweet|unsugared (similar term)|unsweetened (similar term)|dry (related term)|sugary (antonym)
+sugarloaf|1
+(noun)|sugar loaf|loaf sugar|sugar (generic term)|refined sugar (generic term)
+sugarplum|1
+(noun)|candy (generic term)|confect (generic term)
+sugary|1
+(adj)|candied (similar term)|sugar-coated (similar term)|honeyed (similar term)|honied (similar term)|syrupy (similar term)|honeylike (similar term)|sugared (similar term)|sweetened (similar term)|sweet (similar term)|sweet-flavored (similar term)|sweet (related term)|sweet (related term)|sugarless (antonym)
+suggest|5
+(verb)|propose|advise|declare (generic term)
+(verb)|intimate|imply (generic term)
+(verb)|hint|convey (generic term)|impart (generic term)
+(verb)|indicate|inform (generic term)|contraindicate (antonym)
+(verb)|evoke|paint a picture|express (generic term)|show (generic term)|evince (generic term)
+suggested|1
+(adj)|recommended|advisable (similar term)
+suggester|1
+(noun)|proposer|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+suggestibility|1
+(noun)|susceptibility (generic term)|susceptibleness (generic term)
+suggestible|1
+(adj)|susceptible (similar term)
+suggestion|6
+(noun)|idea (generic term)|thought (generic term)
+(noun)|proposition|proffer|proposal (generic term)
+(noun)|trace|hint|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|prompting|persuasion (generic term)|suasion (generic term)
+(noun)|higher cognitive process (generic term)
+(noun)|hypnotism|mesmerism|influence (generic term)
+suggestive|2
+(adj)|implicative|connotative (similar term)
+(adj)|indicative|indicatory|revelatory|significative|revealing (similar term)
+sugi|1
+(noun)|Japanese cedar|Japan cedar|Cryptomeria japonica|cedar (generic term)|cedar tree (generic term)
+suharto|1
+(noun)|Suharto|statesman (generic term)|solon (generic term)|national leader (generic term)
+sui generis|1
+(adj)|single (similar term)
+suicidal|1
+(adj)|self-destructive|dangerous (similar term)|unsafe (similar term)
+suicide|2
+(noun)|self-destruction|self-annihilation|killing (generic term)|kill (generic term)|putting to death (generic term)
+(noun)|felo-de-se|killer (generic term)|slayer (generic term)
+suicide bomber|1
+(noun)|terrorist (generic term)
+suicide bombing|1
+(noun)|bombing (generic term)
+suicide mission|1
+(noun)|martyr operation|sacrifice operation|mission (generic term)|charge (generic term)|commission (generic term)
+suicide pact|1
+(noun)|agreement (generic term)|understanding (generic term)
+suicide pill|1
+(noun)|poison pill (generic term)
+suicide squeeze|1
+(noun)|suicide squeeze play|squeeze play (generic term)
+suicide squeeze play|1
+(noun)|suicide squeeze|squeeze play (generic term)
+suidae|1
+(noun)|Suidae|family Suidae|mammal family (generic term)
+suillus|1
+(noun)|Suillus|genus Suillus|fungus genus (generic term)
+suillus albivelatus|1
+(noun)|Suillus albivelatus|bolete (generic term)
+suisse|1
+(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country (generic term)|European nation (generic term)
+suit|10
+(noun)|lawsuit|case|cause|causa|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|suit of clothes|garment (generic term)
+(noun)|playing card (generic term)
+(noun)|businessman (generic term)|man of affairs (generic term)
+(noun)|courtship|wooing|courting|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+(noun)|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+(verb)|accommodate|fit|meet (generic term)|fit (generic term)|conform to (generic term)
+(verb)|be (generic term)
+(verb)|befit|beseem|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|become|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+suit of armor|1
+(noun)|body armor|body armour|suit of armour|coat of mail|cataphract|armor (generic term)|armour (generic term)
+suit of armour|1
+(noun)|body armor|body armour|suit of armor|coat of mail|cataphract|armor (generic term)|armour (generic term)
+suit of clothes|1
+(noun)|suit|garment (generic term)
+suitability|1
+(noun)|suitableness|quality (generic term)|unsuitableness (antonym)|unsuitability (antonym)
+suitable|3
+(adj)|appropriate|suited|fit (similar term)
+(adj)|proper|right|suited|appropriate (similar term)
+(adj)|desirable|worthy|eligible (similar term)
+suitableness|1
+(noun)|suitability|quality (generic term)|unsuitableness (antonym)|unsuitability (antonym)
+suitably|1
+(adv)|appropriately|fittingly|befittingly|fitly|unsuitably (antonym)|inappropriately (antonym)
+suitcase|1
+(noun)|bag|traveling bag|grip|baggage (generic term)|luggage (generic term)
+suite|4
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|rooms|apartment (generic term)|flat (generic term)
+(noun)|cortege|retinue|entourage|gathering (generic term)|assemblage (generic term)
+(noun)|set (generic term)
+suited|3
+(adj)|appropriate|suitable|fit (similar term)
+(adj)|clothed (similar term)|clad (similar term)
+(adj)|proper|right|suitable|appropriate (similar term)
+suiting|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+suitor|1
+(noun)|suer|wooer|admirer (generic term)|adorer (generic term)
+sukarno|1
+(noun)|Sukarno|Achmad Sukarno|statesman (generic term)|solon (generic term)|national leader (generic term)
+sukiyaki|1
+(noun)|dish (generic term)
+sukkoth|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+suksdorfia|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+suksdorfia violaceae|1
+(noun)|violet suksdorfia|Suksdorfia violaceae|suksdorfia (generic term)
+sukur|1
+(noun)|Sukur|Biu-Mandara (generic term)
+sula|1
+(noun)|Sula|genus Sula|bird genus (generic term)
+sula bassana|1
+(noun)|solan|solan goose|solant goose|Sula bassana|gannet (generic term)
+sulamyd|1
+(noun)|sulfacetamide|Sulamyd|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulawesi|1
+(noun)|Celebes|Sulawesi|island (generic term)
+sulcate|1
+(adj)|fissure (related term)
+sulcus|1
+(noun)|fissure (generic term)
+sulcus centralis|1
+(noun)|fissure of Rolando|Rolando's fissure|central sulcus|sulcus (generic term)
+sulcus lateralis cerebri|1
+(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus (generic term)
+sulfa|1
+(noun)|sulfa drug|sulpha|sulfonamide|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+sulfa drug|1
+(noun)|sulfa|sulpha|sulfonamide|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+sulfacetamide|1
+(noun)|Sulamyd|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfadiazine|1
+(noun)|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfamethazine|1
+(noun)|sulfamezathine|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfamethoxazole|1
+(noun)|Gantanol|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfamezathine|1
+(noun)|sulfamethazine|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfanilamide|1
+(noun)|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfanilic acid|1
+(noun)|sulphanilic acid|acid (generic term)
+sulfapyridine|1
+(noun)|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfate|2
+(noun)|sulphate|salt (generic term)
+(verb)|convert (generic term)
+sulfide|1
+(noun)|sulphide|compound (generic term)|chemical compound (generic term)
+sulfisoxazole|1
+(noun)|Gantrisin|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+sulfonamide|1
+(noun)|sulfa drug|sulfa|sulpha|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+sulfonate|1
+(noun)|salt (generic term)
+sulfonic acid|1
+(noun)|sulphonic acid|acid (generic term)
+sulfonylurea|1
+(noun)|antidiabetic (generic term)|antidiabetic drug (generic term)
+sulfur|2
+(noun)|S|sulphur|atomic number 16|chemical element (generic term)|element (generic term)
+(verb)|sulphur|process (generic term)|treat (generic term)
+sulfur-yellow|1
+(adj)|sulphur-yellow|chromatic (similar term)
+sulfur bacteria|1
+(noun)|thiobacteria|sulphur bacteria|thiobacillus (generic term)
+sulfur bottom|1
+(noun)|blue whale|Balaenoptera musculus|baleen whale (generic term)|whalebone whale (generic term)
+sulfur butterfly|1
+(noun)|sulphur butterfly|butterfly (generic term)
+sulfur dioxide|1
+(noun)|sulphur dioxide|dioxide (generic term)|gas (generic term)|pollutant (generic term)
+sulfur hexafluoride|1
+(noun)|sulphur hexafluoride|fluoride (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+sulfur mine|1
+(noun)|sulphur mine|mine (generic term)
+sulfur mustard|1
+(noun)|mustard gas|mustard agent|blistering agent|dichloroethyl sulfide|poison gas (generic term)|vesicant (generic term)|vesicatory (generic term)
+sulfur oxide|1
+(noun)|sulphur oxide|oxide (generic term)
+sulfur paintbrush|1
+(noun)|Castilleja sulphurea|Indian paintbrush (generic term)|painted cup (generic term)
+sulfurette|1
+(verb)|sulphurette|compound (generic term)|combine (generic term)
+sulfuretted|1
+(adj)|sulphuretted|sulfurized|chemical element|element (related term)
+sulfuric|1
+(adj)|sulphuric|chemical element|element (related term)
+sulfuric acid|1
+(noun)|vitriol|oil of vitriol|sulphuric acid|acid (generic term)
+sulfurized|1
+(adj)|sulphuretted|sulfuretted|chemical element|element (related term)
+sulfurous|3
+(adj)|sulphurous|chemical element|element (related term)
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulphurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|sultry|stifling|sulphurous|hot (similar term)
+sulidae|1
+(noun)|Sulidae|family Sulidae|bird family (generic term)
+sulindac|1
+(noun)|Clinoril|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+sulk|2
+(noun)|sulkiness|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)
+(verb)|pout|brood
+sulkiness|3
+(noun)|sulk|temper (generic term)|mood (generic term)|humor (generic term)|humour (generic term)
+(noun)|huffishness|resentment (generic term)|bitterness (generic term)|gall (generic term)|rancor (generic term)|rancour (generic term)
+(noun)|sullenness|moroseness|sourness|ill nature (generic term)
+sulky|4
+(adj)|huffish|ill-natured (similar term)
+(adj)|sluggish|slow (similar term)
+(adj)|glooming|gloomy|gloomful|dark (similar term)
+(noun)|horse-drawn vehicle (generic term)
+sulla|2
+(noun)|French honeysuckle|Hedysarum coronarium|subshrub (generic term)|suffrutex (generic term)
+(noun)|Sulla|Lucius Cornelius Sulla Felix|general (generic term)|full general (generic term)
+sullen|2
+(adj)|dark|dour|glowering|glum|moody|morose|saturnine|sour|ill-natured (similar term)
+(adj)|heavy|lowering|threatening|cloudy (similar term)
+sullenly|1
+(adv)|dourly|glumly
+sullenness|2
+(noun)|moroseness|glumness|moodiness (generic term)
+(noun)|sulkiness|moroseness|sourness|ill nature (generic term)
+sullied|1
+(adj)|besmirched|damaged|flyblown|spotted|stained|tainted|tarnished|blemished (similar term)
+sullivan|5
+(noun)|Sullivan|Louis Sullivan|Louis Henry Sullivan|Louis Henri Sullivan|architect (generic term)|designer (generic term)
+(noun)|Sullivan|Harry Stack Sullivan|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+(noun)|Sullivan|Ed Sullivan|Edward Vincent Sullivan|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+(noun)|Sullivan|Anne Sullivan|Anne Mansfield Sullivan|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|Sullivan|Arthur Sullivan|Arthur Seymour Sullivan|Sir Arthur Sullivan|composer (generic term)
+sully|5
+(noun)|Sully|Thomas Sully|painter (generic term)
+(noun)|Sully|Duc de Sully|Maxmilien de Bethune|statesman (generic term)|solon (generic term)|national leader (generic term)
+(verb)|defile|corrupt|taint|cloud|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|tarnish|stain|maculate|defile|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+(verb)|defame|slander|smirch|asperse|denigrate|calumniate|smear|besmirch|charge (generic term)|accuse (generic term)
+sulpha|1
+(noun)|sulfa drug|sulfa|sulfonamide|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+sulphanilic acid|1
+(noun)|sulfanilic acid|acid (generic term)
+sulphate|1
+(noun)|sulfate|salt (generic term)
+sulphide|1
+(noun)|sulfide|compound (generic term)|chemical compound (generic term)
+sulphonic acid|1
+(noun)|sulfonic acid|acid (generic term)
+sulphur|2
+(noun)|sulfur|S|atomic number 16|chemical element (generic term)|element (generic term)
+(verb)|sulfur|process (generic term)|treat (generic term)
+sulphur-crested cockatoo|1
+(noun)|Kakatoe galerita|Cacatua galerita|cockatoo (generic term)
+sulphur-yellow|1
+(adj)|sulfur-yellow|chromatic (similar term)
+sulphur bacteria|1
+(noun)|thiobacteria|sulfur bacteria|thiobacillus (generic term)
+sulphur butterfly|1
+(noun)|sulfur butterfly|butterfly (generic term)
+sulphur dioxide|1
+(noun)|sulfur dioxide|dioxide (generic term)|gas (generic term)|pollutant (generic term)
+sulphur hexafluoride|1
+(noun)|sulfur hexafluoride|fluoride (generic term)|greenhouse gas (generic term)|greenhouse emission (generic term)
+sulphur mine|1
+(noun)|sulfur mine|mine (generic term)
+sulphur oxide|1
+(noun)|sulfur oxide|oxide (generic term)
+sulphurette|1
+(verb)|sulfurette|compound (generic term)|combine (generic term)
+sulphuretted|1
+(adj)|sulfurized|sulfuretted|chemical element|element (related term)
+sulphuric|1
+(adj)|sulfuric|chemical element|element (related term)
+sulphuric acid|1
+(noun)|vitriol|oil of vitriol|sulfuric acid|acid (generic term)
+sulphurous|3
+(adj)|sulfurous|chemical element|element (related term)
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|venomous|virulent|vitriolic|unpleasant (similar term)
+(adj)|sultry|stifling|sulfurous|hot (similar term)
+sultan|1
+(noun)|grand Turk|ruler (generic term)|swayer (generic term)
+sultan of swat|1
+(noun)|Ruth|Babe Ruth|George Herman Ruth|Sultan of Swat|ballplayer (generic term)|baseball player (generic term)
+sultana|2
+(noun)|vinifera grape (generic term)
+(noun)|seedless raisin|raisin (generic term)
+sultanate|1
+(noun)|country (generic term)|state (generic term)|land (generic term)
+sultanate of oman|1
+(noun)|Oman|Sultanate of Oman|Muscat and Oman|Asian country (generic term)|Asian nation (generic term)
+sultrily|1
+(adv)|sensually
+sultriness|2
+(noun)|hot weather (generic term)
+(noun)|sex appeal (generic term)|desirability (generic term)|desirableness (generic term)|oomph (generic term)
+sultry|2
+(adj)|sensual|hot (similar term)
+(adj)|stifling|sulfurous|sulphurous|hot (similar term)
+sum|9
+(noun)|sum of money|amount|amount of money|assets (generic term)
+(noun)|amount|total|quantity (generic term)
+(noun)|summation|sum total|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|kernel|substance|core|center|essence|gist|heart|heart and soul|inwardness|marrow|meat|nub|pith|nitty-gritty|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|total|totality|aggregate|whole (generic term)|unit (generic term)
+(noun)|Uzbekistani monetary unit (generic term)
+(noun)|union|join|set (generic term)
+(verb)|summarize|summarise|sum up|state (generic term)|say (generic term)|tell (generic term)
+(verb)|total|tot|tot up|sum up|summate|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+sum-up|1
+(noun)|summary|statement (generic term)
+sum of money|1
+(noun)|sum|amount|amount of money|assets (generic term)
+sum total|1
+(noun)|sum|summation|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+sum up|3
+(verb)|summarize|summarise|resume|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|summarize|summarise|sum|state (generic term)|say (generic term)|tell (generic term)
+(verb)|total|tot|tot up|sum|summate|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+sumac|2
+(noun)|wood (generic term)
+(noun)|sumach|shumac|shrub (generic term)|bush (generic term)
+sumac family|1
+(noun)|Anacardiaceae|family Anacardiaceae|dicot family (generic term)|magnoliopsid family (generic term)
+sumach|1
+(noun)|sumac|shumac|shrub (generic term)|bush (generic term)
+sumatra|1
+(noun)|Sumatra|island (generic term)
+sumatran|2
+(adj)|Sumatran|island (related term)
+(noun)|Sumatran|Indonesian (generic term)
+sumer|1
+(noun)|Sumer|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sumerian|2
+(adj)|Sumerian|geographical area|geographic area|geographical region|geographic region (related term)|Babylonian (related term)
+(noun)|Sumerian|Babylonian (generic term)
+sumerology|1
+(noun)|Sumerology|archeology (generic term)|archaeology (generic term)
+summa cum laude|1
+(adj)|worthy (similar term)
+summarisation|1
+(noun)|summarization|report (generic term)|account (generic term)
+summarise|2
+(verb)|summarize|sum|sum up|state (generic term)|say (generic term)|tell (generic term)
+(verb)|sum up|summarize|resume|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+summarization|1
+(noun)|summarisation|report (generic term)|account (generic term)
+summarize|2
+(verb)|sum up|summarise|resume|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|summarise|sum|sum up|state (generic term)|say (generic term)|tell (generic term)
+summary|3
+(adj)|drumhead|unofficial (similar term)
+(adj)|compendious|compact|succinct|concise (similar term)
+(noun)|sum-up|statement (generic term)
+summary judgement|1
+(noun)|summary judgment|judgment on the pleadings|judgement on the pleadings|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+summary judgment|1
+(noun)|summary judgement|judgment on the pleadings|judgement on the pleadings|judgment (generic term)|judgement (generic term)|judicial decision (generic term)
+summary treatment|1
+(noun)|short shrift|rejection (generic term)
+summate|2
+(verb)|total|tot|tot up|sum|sum up|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+(verb)|combine (generic term)
+summation|4
+(noun)|summing up|rundown|summary (generic term)|sum-up (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|sum|sum total|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|addition|plus|arithmetic operation (generic term)
+summational|1
+(adj)|summative|additive (similar term)
+summative|1
+(adj)|summational|additive (similar term)
+summer|2
+(noun)|summertime|season (generic term)|time of year (generic term)
+(verb)|spend (generic term)|pass (generic term)
+summer-blooming|1
+(adj)|summer-flowering|summery (similar term)
+summer-flowering|1
+(adj)|summer-blooming|summery (similar term)
+summer camp|1
+(noun)|camp|site (generic term)|land site (generic term)
+summer cohosh|1
+(noun)|American bugbane|Cimicifuga americana|bugbane (generic term)
+summer crookneck|1
+(noun)|crookneck|crookneck squash|yellow squash (generic term)
+summer cypress|1
+(noun)|burning bush|fire bush|fire-bush|belvedere|Bassia scoparia|Kochia scoparia|shrub (generic term)|bush (generic term)
+summer damask rose|1
+(noun)|damask rose|Rosa damascena|rose (generic term)|rosebush (generic term)
+summer duck|1
+(noun)|wood duck|wood widgeon|Aix sponsa|duck (generic term)
+summer flounder|1
+(noun)|Paralichthys dentatus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+summer haw|1
+(noun)|mayhaw|Crataegus aestivalis|hawthorn (generic term)|haw (generic term)
+summer house|1
+(noun)|country house (generic term)
+summer hyacinth|1
+(noun)|cape hyacinth|Hyacinthus candicans|Galtonia candicans|hyacinth (generic term)
+summer redbird|1
+(noun)|summer tanager|Piranga rubra|tanager (generic term)
+summer savory|2
+(noun)|Satureja hortensis|Satureia hortensis|savory (generic term)
+(noun)|summer savoury|savory (generic term)|savoury (generic term)
+summer savoury|1
+(noun)|summer savory|savory (generic term)|savoury (generic term)
+summer school|1
+(noun)|school term (generic term)|academic term (generic term)|academic session (generic term)|session (generic term)
+summer snowflake|1
+(noun)|starflower|sleepy dick|Ornithogalum umbellatum|star-of-Bethlehem (generic term)
+summer solstice|1
+(noun)|June 21|midsummer|solstice (generic term)|winter solstice (antonym)
+summer squash|2
+(noun)|summer squash vine|Cucurbita pepo melopepo|squash (generic term)|squash vine (generic term)
+(noun)|squash (generic term)
+summer squash vine|1
+(noun)|summer squash|Cucurbita pepo melopepo|squash (generic term)|squash vine (generic term)
+summer stock|1
+(noun)|theatrical production (generic term)|staging (generic term)
+summer sweet|1
+(noun)|sweet pepperbush|pepper bush|white alder|Clethra alnifolia|shrub (generic term)|bush (generic term)
+summer tanager|1
+(noun)|summer redbird|Piranga rubra|tanager (generic term)
+summercater|1
+(noun)|sport|vacationer (generic term)|vacationist (generic term)
+summercaters|1
+(noun)|vacationer (generic term)|vacationist (generic term)
+summerhouse|1
+(noun)|gazebo|building (generic term)|edifice (generic term)
+summerise|1
+(verb)|summerize|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)|winterize (antonym)
+summerize|1
+(verb)|summerise|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)|winterize (antonym)
+summersault|1
+(noun)|somersault|somerset|summerset|somersaulting|flip|tumble (generic term)
+summerset|1
+(noun)|somersault|somerset|summersault|somersaulting|flip|tumble (generic term)
+summertime|1
+(noun)|summer|season (generic term)|time of year (generic term)
+summery|1
+(adj)|aestival (similar term)|estival (similar term)|summer-flowering (similar term)|summer-blooming (similar term)|autumnal (antonym)|wintry (antonym)|vernal (antonym)
+summing up|1
+(noun)|summation|rundown|summary (generic term)|sum-up (generic term)
+summit|4
+(noun)|acme|height|elevation|peak|pinnacle|superlative|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|peak|crown|crest|top|tip|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|summit meeting|meeting (generic term)|group meeting (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+summit meeting|1
+(noun)|summit|meeting (generic term)|group meeting (generic term)
+summon|4
+(verb)|summons|cite|call (generic term)|send for (generic term)
+(verb)|call (generic term)|send for (generic term)
+(verb)|muster|rally|come up|muster up|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+(verb)|mobilize|mobilise|marshal|gather (generic term)|garner (generic term)|collect (generic term)|pull together (generic term)
+summoning|1
+(noun)|evocation|conjuring (generic term)|conjuration (generic term)|conjury (generic term)|invocation (generic term)
+summons|4
+(noun)|bidding|invitation (generic term)
+(noun)|order (generic term)
+(noun)|process|writ (generic term)|judicial writ (generic term)
+(verb)|summon|cite|call (generic term)|send for (generic term)
+summum bonum|1
+(noun)|good (generic term)|goodness (generic term)
+sumner|1
+(noun)|Sumner|William Graham Sumner|sociologist (generic term)
+sumo|1
+(noun)|wrestling (generic term)|rassling (generic term)|grappling (generic term)|sport (generic term)
+sumo wrestler|1
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+sump|3
+(noun)|reservoir (generic term)
+(noun)|well (generic term)
+(noun)|cesspool|cesspit|sink|cistern (generic term)
+sump pump|1
+(noun)|suction pump (generic term)
+sumpsimus|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+sumpter|1
+(noun)|pack animal|beast of burden (generic term)|jument (generic term)
+sumptuary|1
+(adj)|restrictive (similar term)
+sumptuosity|1
+(noun)|lavishness|luxury|sumptuousness|expensiveness (generic term)
+sumptuous|1
+(adj)|deluxe|gilded|grand|luxurious|opulent|princely|rich (similar term)
+sumptuously|1
+(adv)|opulently
+sumptuousness|2
+(noun)|luxury|luxuriousness|opulence|wealth (generic term)|wealthiness (generic term)
+(noun)|lavishness|luxury|sumptuosity|expensiveness (generic term)
+sun|6
+(noun)|sunlight|sunshine|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|star (generic term)
+(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day (generic term)|day of rest (generic term)
+(verb)|sunbathe|lie (generic term)
+(verb)|insolate|solarize|solarise|expose (generic term)
+sun-drenched|1
+(adj)|covered (similar term)
+sun-dried|1
+(adj)|sundried|preserved (similar term)
+sun-loving|1
+(adj)|healthy (similar term)
+sun-ray|1
+(noun)|sunray|ultraviolet (generic term)|ultraviolet radiation (generic term)|ultraviolet light (generic term)|ultraviolet illumination (generic term)|UV (generic term)
+sun-ray lamp|1
+(noun)|sunlamp|sun lamp|sunray lamp|mercury-vapor lamp (generic term)
+sun-worship|1
+(noun)|heliolatry|worship (generic term)
+sun bathing|1
+(noun)|bathing (generic term)
+sun blocker|1
+(noun)|sunscreen|sunblock|cream (generic term)|ointment (generic term)|emollient (generic term)
+sun city|1
+(noun)|Sun City|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+sun dance|1
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+sun deck|1
+(noun)|deck (generic term)
+sun gear|1
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+sun god|1
+(noun)|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+sun hat|1
+(noun)|sunhat|hat (generic term)|chapeau (generic term)|lid (generic term)
+sun helmet|1
+(noun)|pith hat|pith helmet|topee|topi|sunhat (generic term)|sun hat (generic term)
+sun king|1
+(noun)|Louis XIV|Sun King|Louis the Great|King of France (generic term)
+sun lamp|1
+(noun)|sunlamp|sunray lamp|sun-ray lamp|mercury-vapor lamp (generic term)
+sun lounge|1
+(noun)|sun parlor|sun parlour|sun porch|sunporch|sunroom|solarium|room (generic term)
+sun marigold|1
+(noun)|cape marigold|star of the veldt|flower (generic term)
+sun myung moon|1
+(noun)|Moon|Sun Myung Moon|religious leader (generic term)
+sun parlor|1
+(noun)|sun parlour|sun porch|sunporch|sunroom|sun lounge|solarium|room (generic term)
+sun parlour|1
+(noun)|sun parlor|sun porch|sunporch|sunroom|sun lounge|solarium|room (generic term)
+sun pitcher|1
+(noun)|pitcher plant (generic term)
+sun plant|1
+(noun)|rose moss|Portulaca grandiflora|portulaca (generic term)
+sun porch|1
+(noun)|sun parlor|sun parlour|sunporch|sunroom|sun lounge|solarium|room (generic term)
+sun protection factor|1
+(noun)|SPF|degree (generic term)|grade (generic term)|level (generic term)
+sun river|1
+(noun)|Sun River|river (generic term)
+sun rose|1
+(noun)|helianthemum|sunrose|shrub (generic term)|bush (generic term)
+sun spurge|1
+(noun)|wartweed|wartwort|devil's milk|Euphorbia helioscopia|spurge (generic term)
+sun tea|1
+(noun)|tea (generic term)
+sun valley|1
+(noun)|Sun Valley|town (generic term)
+sun visor|1
+(noun)|shade (generic term)
+sun worshiper|1
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+sun yat-sen|1
+(noun)|Sun Yat-sen|Sun Yixian|statesman (generic term)|solon (generic term)|national leader (generic term)
+sun yixian|1
+(noun)|Sun Yat-sen|Sun Yixian|statesman (generic term)|solon (generic term)|national leader (generic term)
+sunbaked|2
+(adj)|adust|baked|parched|scorched|dry (similar term)
+(adj)|tempered (similar term)|treated (similar term)|hardened (similar term)|toughened (similar term)
+sunbathe|1
+(verb)|sun|lie (generic term)
+sunbather|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+sunbeam|1
+(noun)|sunray|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+sunbelt|1
+(noun)|Sunbelt|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sunberry|1
+(noun)|garden huckleberry|wonderberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+sunblind|1
+(noun)|awning|sunshade|canopy (generic term)
+sunblock|1
+(noun)|sunscreen|sun blocker|cream (generic term)|ointment (generic term)|emollient (generic term)
+sunbonnet|1
+(noun)|bonnet (generic term)|poke bonnet (generic term)|sunhat (generic term)|sun hat (generic term)
+sunburn|3
+(noun)|tan|suntan|burn|hyperpigmentation (generic term)
+(noun)|erythema solare|erythema (generic term)|first-degree burn (generic term)
+(verb)|burn|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+sunburned|1
+(adj)|sunburnt|unhealthy (similar term)
+sunburnt|1
+(adj)|sunburned|unhealthy (similar term)
+sunburst|3
+(noun)|sunlight (generic term)|sunshine (generic term)|sun (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|brooch (generic term)|broach (generic term)|breastpin (generic term)
+sunburst pleat|1
+(noun)|sunray pleat|knife pleat (generic term)
+sunchoke|1
+(noun)|Jerusalem artichoke|root vegetable (generic term)
+sunda islands|1
+(noun)|Sunda Islands|archipelago (generic term)
+sundacarpus|1
+(noun)|Sundacarpus|genus Sundacarpus|gymnosperm genus (generic term)
+sundacarpus amara|1
+(noun)|Sundacarpus amara|Prumnopitys amara|Podocarpus amara|conifer (generic term)|coniferous tree (generic term)
+sundae|1
+(noun)|ice-cream sundae|frozen dessert (generic term)
+sundanese|1
+(noun)|Sundanese|Indonesian (generic term)|Bahasa Indonesia (generic term)|Bahasa (generic term)
+sunday|3
+(noun)|Sunday|Lord's Day|Dominicus|Sun|rest day (generic term)|day of rest (generic term)
+(noun)|Sunday|Billy Sunday|William Ashley Sunday|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+(verb)|spend (generic term)|pass (generic term)
+sunday-go-to-meeting|1
+(adj)|go-to-meeting|Sunday-go-to-meeting|best (similar term)
+sunday best|1
+(noun)|Sunday best|Sunday clothes|finery (generic term)
+sunday clothes|1
+(noun)|Sunday best|Sunday clothes|finery (generic term)
+sunday punch|1
+(noun)|haymaker|knockout punch|KO punch|Sunday punch|punch (generic term)|clout (generic term)|poke (generic term)|lick (generic term)|biff (generic term)
+sunday school|1
+(noun)|Sunday school|Sabbath school|school (generic term)
+sunday school class|1
+(noun)|Sunday school class|class (generic term)|form (generic term)|grade (generic term)
+sunder|1
+(verb)|break up (generic term)|fragment (generic term)|fragmentize (generic term)|fragmentise (generic term)
+sunderland|1
+(noun)|Sunderland|town (generic term)|port (generic term)
+sundew|1
+(noun)|sundew plant|daily dew|carnivorous plant (generic term)
+sundew family|1
+(noun)|Droseraceae|family Droseraceae|dicot family (generic term)|magnoliopsid family (generic term)
+sundew plant|1
+(noun)|sundew|daily dew|carnivorous plant (generic term)
+sundial|1
+(noun)|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+sundial lupine|1
+(noun)|wild lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub (generic term)|suffrutex (generic term)
+sundog|1
+(noun)|parhelion|mock sun|topographic point (generic term)|place (generic term)|spot (generic term)
+sundown|1
+(noun)|sunset|hour (generic term)|time of day (generic term)|sunrise (antonym)
+sundowner|2
+(noun)|vagrant (generic term)|drifter (generic term)|floater (generic term)|vagabond (generic term)
+(noun)|drink (generic term)
+sundress|1
+(noun)|dress (generic term)|frock (generic term)
+sundried|1
+(adj)|sun-dried|preserved (similar term)
+sundries|1
+(noun)|stuff (generic term)
+sundrops|1
+(noun)|Oenothera fruticosa|evening primrose (generic term)
+sundry|1
+(adj)|assorted|miscellaneous|mixed|motley|heterogeneous (similar term)|heterogenous (similar term)
+sunfish|3
+(noun)|freshwater fish (generic term)
+(noun)|ocean sunfish|mola|headfish|plectognath (generic term)|plectognath fish (generic term)
+(noun)|centrarchid|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+sunflower|1
+(noun)|helianthus|flower (generic term)
+sunflower-seed oil|1
+(noun)|sunflower oil|vegetable oil (generic term)|oil (generic term)
+sunflower oil|1
+(noun)|sunflower-seed oil|vegetable oil (generic term)|oil (generic term)
+sunflower seed|1
+(noun)|edible seed (generic term)
+sunflower state|1
+(noun)|Kansas|Sunflower State|KS|American state (generic term)
+sung|1
+(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty (generic term)
+sung dynasty|1
+(noun)|Sung|Sung dynasty|Song|Song dynasty|dynasty (generic term)
+sunglass|1
+(noun)|converging lens (generic term)|convex lens (generic term)
+sunglasses|1
+(noun)|dark glasses|shades|spectacles (generic term)|specs (generic term)|eyeglasses (generic term)|glasses (generic term)
+sunhat|1
+(noun)|sun hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+sunk|1
+(adj)|done for|ruined|undone|washed-up|unsuccessful (similar term)
+sunk fence|1
+(noun)|ha-ha|haw-haw|ditch (generic term)
+sunken|2
+(adj)|deep-set|recessed|hollow (similar term)
+(adj)|submerged|drowned (similar term)|swamped (similar term)|afloat (antonym)|aground (antonym)
+sunken-eyed|1
+(adj)|deep-eyed|hollow-eyed|thin (similar term)|lean (similar term)
+sunken arch|1
+(noun)|fallen arch|instep (generic term)
+sunken garden|1
+(noun)|garden (generic term)
+sunlamp|1
+(noun)|sun lamp|sunray lamp|sun-ray lamp|mercury-vapor lamp (generic term)
+sunless|1
+(adj)|cloud-covered|clouded|overcast|cloudy (similar term)
+sunlight|1
+(noun)|sunshine|sun|light (generic term)|visible light (generic term)|visible radiation (generic term)
+sunlit|1
+(adj)|sunstruck|light (similar term)
+sunna|1
+(noun)|Sunnah|Sunna|hadith|way (generic term)|path (generic term)|way of life (generic term)
+sunnah|1
+(noun)|Sunnah|Sunna|hadith|way (generic term)|path (generic term)|way of life (generic term)
+sunni|2
+(noun)|Sunnite|Sunni|Sunni Muslim|Muslim (generic term)|Moslem (generic term)
+(noun)|Sunni|Sunni Islam|sect (generic term)|religious sect (generic term)|religious order (generic term)
+sunni islam|1
+(noun)|Sunni|Sunni Islam|sect (generic term)|religious sect (generic term)|religious order (generic term)
+sunni muslim|1
+(noun)|Sunnite|Sunni|Sunni Muslim|Muslim (generic term)|Moslem (generic term)
+sunnily|1
+(adv)|pleasantly|cheerily
+sunniness|2
+(noun)|light (generic term)|lightness (generic term)
+(noun)|cheerfulness|cheer|sunshine|attribute (generic term)|uncheerfulness (antonym)
+sunnite|1
+(noun)|Sunnite|Sunni|Sunni Muslim|Muslim (generic term)|Moslem (generic term)
+sunny|2
+(adj)|bright|shining|shiny|sunshiny|clear (similar term)
+(adj)|cheery|gay|cheerful (similar term)
+sunny-side up|1
+(adj)|cooked (similar term)
+sunporch|1
+(noun)|sun parlor|sun parlour|sun porch|sunroom|sun lounge|solarium|room (generic term)
+sunray|3
+(noun)|sunbeam|beam (generic term)|beam of light (generic term)|light beam (generic term)|ray (generic term)|ray of light (generic term)|shaft (generic term)|shaft of light (generic term)|irradiation (generic term)
+(noun)|Enceliopsis nudicaulis|wildflower (generic term)|wild flower (generic term)
+(noun)|sun-ray|ultraviolet (generic term)|ultraviolet radiation (generic term)|ultraviolet light (generic term)|ultraviolet illumination (generic term)|UV (generic term)
+sunray lamp|1
+(noun)|sunlamp|sun lamp|sun-ray lamp|mercury-vapor lamp (generic term)
+sunray pleat|1
+(noun)|sunburst pleat|knife pleat (generic term)
+sunrise|4
+(adj)|new (similar term)
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunup|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+(noun)|atmospheric phenomenon (generic term)
+(noun)|periodic event (generic term)|recurrent event (generic term)
+sunrise industry|1
+(noun)|industry (generic term)
+sunroof|1
+(noun)|sunshine-roof|roof (generic term)
+sunroom|1
+(noun)|sun parlor|sun parlour|sun porch|sunporch|sun lounge|solarium|room (generic term)
+sunrose|1
+(noun)|helianthemum|sun rose|shrub (generic term)|bush (generic term)
+sunscreen|1
+(noun)|sunblock|sun blocker|cream (generic term)|ointment (generic term)|emollient (generic term)
+sunset|5
+(adj)|old (similar term)
+(adj)|last (similar term)
+(noun)|sundown|hour (generic term)|time of day (generic term)|sunrise (antonym)
+(noun)|atmospheric phenomenon (generic term)
+(noun)|periodic event (generic term)|recurrent event (generic term)
+sunshade|2
+(noun)|awning|sunblind|canopy (generic term)
+(noun)|parasol|shade (generic term)
+sunshine|3
+(noun)|sunlight|sun|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|fair weather|temperateness|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|cheerfulness|cheer|sunniness|attribute (generic term)|uncheerfulness (antonym)
+sunshine-roof|1
+(noun)|sunroof|roof (generic term)
+sunshine state|1
+(noun)|Florida|Sunshine State|Everglade State|FL|American state (generic term)
+sunshiny|1
+(adj)|bright|shining|shiny|sunny|clear (similar term)
+sunspot|1
+(noun)|macula|topographic point (generic term)|place (generic term)|spot (generic term)
+sunstone|1
+(noun)|aventurine|quartz (generic term)|transparent gem (generic term)
+sunstroke|1
+(noun)|insolation|thermic fever|siriasis|heatstroke (generic term)|heat hyperpyrexia (generic term)
+sunstruck|1
+(adj)|sunlit|light (similar term)
+sunsuit|1
+(noun)|garment (generic term)
+suntan|2
+(noun)|tan|sunburn|burn|hyperpigmentation (generic term)
+(verb)|tan (generic term)|bronze (generic term)
+suntanned|1
+(adj)|bronzed|tanned|brunet (similar term)|brunette (similar term)
+suntrap|1
+(noun)|solar trap|patio (generic term)|terrace (generic term)
+sunup|1
+(noun)|dawn|dawning|morning|aurora|first light|daybreak|break of day|break of the day|dayspring|sunrise|cockcrow|hour (generic term)|time of day (generic term)|sunset (antonym)
+suomi|2
+(noun)|Finland|Republic of Finland|Suomi|European country (generic term)|European nation (generic term)
+(noun)|Finnish|Suomi|Baltic-Finnic (generic term)
+sup|2
+(noun)|swallow|taste (generic term)|mouthful (generic term)
+(verb)|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+super|5
+(adj)|ace|A-one|crack|fantastic|first-rate|tiptop|topnotch|tops|superior (similar term)
+(adj)|comprehensive (similar term)
+(adj)|large (similar term)|big (similar term)
+(noun)|superintendent|caretaker (generic term)
+(adv)|extremely
+super acid|1
+(noun)|K|jet|special K|honey oil|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+super c|1
+(noun)|K|jet|super acid|special K|honey oil|green|cat valium|super C|ketamine (generic term)|ketamine hydrochloride (generic term)|Ketalar (generic term)
+super heavyweight|1
+(noun)|boxer (generic term)|pugilist (generic term)
+superable|1
+(adj)|conquerable|surmountable (similar term)
+superabundance|1
+(noun)|overabundance|overmuch|overmuchness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+superabundant|1
+(adj)|abundant (similar term)
+superannuate|3
+(verb)|declare (generic term)|adjudge (generic term)|hold (generic term)
+(verb)|change (generic term)
+(verb)|retire (generic term)
+superannuated|3
+(adj)|retired|old (similar term)
+(adj)|overage|overaged|over-the-hill|old (similar term)
+(adj)|obsolete|outdated|out-of-date|noncurrent (similar term)
+superannuation|3
+(noun)|old-age pension|retirement pension|retirement check|retirement benefit|retirement fund|pension (generic term)
+(noun)|obsoleteness|oldness (generic term)
+(noun)|dismissal (generic term)|dismission (generic term)|discharge (generic term)|firing (generic term)|liberation (generic term)|release (generic term)|sack (generic term)|sacking (generic term)
+superannuation fund|1
+(noun)|pension fund|fund (generic term)|monetary fund (generic term)
+superb|2
+(adj)|brilliant|superior (similar term)
+(adj)|good (similar term)
+superbia|1
+(noun)|pride|mortal sin (generic term)|deadly sin (generic term)
+superbly|1
+(adv)|wonderfully|wondrous|wondrously|toppingly|marvellously|terrifically|marvelously
+superbug|1
+(noun)|Bemisia tabaci|poinsettia strain|sweet-potato whitefly (generic term)
+supercargo|1
+(noun)|officer (generic term)|ship's officer (generic term)
+supercede|1
+(verb)|supplant|replace|supersede|supervene upon|succeed (generic term)|come after (generic term)|follow (generic term)
+supercharge|2
+(verb)|boost|advance|increase (generic term)
+(verb)|pressurize|pressurise|change (generic term)|alter (generic term)|modify (generic term)
+supercharged|2
+(adj)|powered (similar term)
+(adj)|charged|emotional (similar term)
+supercharger|1
+(noun)|compressor (generic term)
+superciliary arch|1
+(noun)|supraorbital ridge|supraorbital torus|superciliary ridge|ridge (generic term)
+superciliary ridge|1
+(noun)|supraorbital ridge|supraorbital torus|superciliary arch|ridge (generic term)
+supercilious|2
+(adj)|disdainful|haughty|lordly|prideful|sniffy|swaggering|proud (similar term)
+(adj)|sneering|snide|uncomplimentary (similar term)
+superciliously|1
+(adv)|sneeringly|snidely
+superciliousness|1
+(noun)|condescension|disdainfulness|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+supercilium|1
+(noun)|eyebrow|brow|hair (generic term)
+superclass|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+superclass agnatha|1
+(noun)|Agnatha|superclass Agnatha|class (generic term)
+superclass chelicerata|1
+(noun)|Chelicerata|superclass Chelicerata|class (generic term)
+superclass gnathostomata|1
+(noun)|Gnathostomata|superclass Gnathostomata|class (generic term)
+superclass myriapoda|1
+(noun)|superclass Myriapoda|class (generic term)
+supercomputer|1
+(noun)|mainframe (generic term)|mainframe computer (generic term)
+superconducting supercollider|1
+(noun)|collider (generic term)
+superconductivity|1
+(noun)|electrical conduction (generic term)
+supercritical|1
+(adj)|critical (similar term)
+superego|1
+(noun)|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+supererogation|1
+(noun)|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+supererogatory|1
+(adj)|excess|extra|redundant|spare|superfluous|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+superfamily|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+superfamily aphidoidea|1
+(noun)|Aphidoidea|superfamily Aphidoidea|arthropod family (generic term)
+superfamily apoidea|1
+(noun)|Apoidea|superfamily Apoidea|arthropod family (generic term)
+superfamily coccoidea|1
+(noun)|Coccoidea|superfamily Coccoidea|arthropod family (generic term)
+superfamily hominoidea|1
+(noun)|Hominoidea|superfamily Hominoidea|class (generic term)
+superfamily lamellicornia|1
+(noun)|Lamellicornia|superfamily Lamellicornia|arthropod family (generic term)
+superfamily muroidea|1
+(noun)|Muroidea|superfamily Muroidea|mammal family (generic term)
+superfamily muscoidea|1
+(noun)|Muscoidea|superfamily Muscoidea|arthropod family (generic term)
+superfamily platyrrhini|1
+(noun)|Platyrrhini|superfamily Platyrrhini|mammal family (generic term)
+superfamily sphecoidea|1
+(noun)|Sphecoidea|superfamily Sphecoidea|arthropod family (generic term)
+superfamily tineoidea|1
+(noun)|Tineoidea|superfamily Tineoidea|arthropod family (generic term)
+superfamily tyrannidae|1
+(noun)|Tyrannidae|superfamily Tyrannidae|bird family (generic term)
+superfatted|1
+(adj)|fatty (similar term)|fat (similar term)
+superfecta|1
+(noun)|bet (generic term)|wager (generic term)
+superfecundation|1
+(noun)|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)
+superfetate|1
+(verb)|conceive (generic term)
+superfetation|1
+(noun)|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|impregnation (generic term)
+superficial|4
+(adj)|apparent (similar term)|ostensible (similar term)|seeming (similar term)|dilettante (similar term)|dilettantish (similar term)|dilettanteish (similar term)|sciolistic (similar term)|facile (similar term)|glib (similar term)|looking (similar term)|sounding (similar term)|shallow (similar term)|careless (related term)|frivolous (related term)|outward (related term)|profound (antonym)
+(adj)|boundary|bound|bounds (related term)
+(adj)|trivial|insignificant (similar term)|unimportant (similar term)
+(adj)|skin-deep|surface|shallow (similar term)
+superficial epigastric vein|1
+(noun)|vena epigastrica superficialis|epigastric vein (generic term)
+superficial middle cerebral vein|1
+(noun)|middle cerebral vein (generic term)|vena cerebri media (generic term)
+superficial temporal vein|1
+(noun)|temporal vein (generic term)|vena temporalis (generic term)
+superficiality|2
+(noun)|shallowness|depth (generic term)|profundity (antonym)
+(noun)|shallowness (generic term)
+superficies|2
+(noun)|appearance (generic term)|visual aspect (generic term)
+(noun)|surface (generic term)
+superfine|3
+(adj)|fine (similar term)
+(adj)|overrefined|refined (similar term)
+(adj)|best (similar term)
+superfluity|1
+(noun)|overplus|plethora|embarrassment|excess (generic term)|excessiveness (generic term)|inordinateness (generic term)
+superfluous|2
+(adj)|otiose|pointless|wasted|worthless (similar term)
+(adj)|excess|extra|redundant|spare|supererogatory|supernumerary|surplus|unnecessary (similar term)|unneeded (similar term)
+superfund|1
+(noun)|Superfund program|Superfund|program (generic term)|programme (generic term)
+superfund program|1
+(noun)|Superfund program|Superfund|program (generic term)|programme (generic term)
+superfund site|1
+(noun)|toxic site|toxic waste area|Superfund site|site (generic term)|land site (generic term)
+supergiant|1
+(noun)|star (generic term)
+supergrass|1
+(noun)|informer (generic term)|betrayer (generic term)|rat (generic term)|squealer (generic term)|blabber (generic term)
+superhet|1
+(noun)|heterodyne receiver|superheterodyne receiver|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+superheterodyne receiver|1
+(noun)|heterodyne receiver|superhet|radio receiver (generic term)|receiving set (generic term)|radio set (generic term)|radio (generic term)|tuner (generic term)|wireless (generic term)
+superhigh frequency|1
+(noun)|SHF|radio frequency (generic term)
+superhighway|2
+(noun)|expressway|freeway|motorway|pike|state highway|throughway|thruway|highway (generic term)|main road (generic term)
+(noun)|information superhighway|network (generic term)|electronic network (generic term)
+superhuman|1
+(adj)|divine (similar term)|godlike (similar term)|herculean (similar term)|powerful (similar term)|subhuman (antonym)
+superimpose|1
+(verb)|superpose|lay over|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+superimposed|2
+(adj)|overlying|superjacent (similar term)
+(adj)|layered|stratified (similar term)|bedded (similar term)
+superincumbent|1
+(adj)|superjacent (similar term)
+superinfect|1
+(verb)|infect (generic term)|taint (generic term)
+superinfection|1
+(noun)|infection (generic term)
+superintend|1
+(verb)|oversee|supervise|manage|administer (generic term)|administrate (generic term)
+superintendence|1
+(noun)|supervision|supervising|oversight|management (generic term)|direction (generic term)
+superintendent|2
+(noun)|overseer|supervisor (generic term)
+(noun)|super|caretaker (generic term)
+superior|13
+(adj)|ace (similar term)|A-one (similar term)|crack (similar term)|fantastic (similar term)|first-rate (similar term)|super (similar term)|tiptop (similar term)|topnotch (similar term)|tops (similar term)|banner (similar term)|blue-ribbon (similar term)|select (similar term)|boss (similar term)|brag (similar term)|brilliant (similar term)|superb (similar term)|capital (similar term)|choice (similar term)|prime (similar term)|prize (similar term)|quality (similar term)|select (similar term)|excellent (similar term)|first-class (similar term)|fantabulous (similar term)|gilt-edged (similar term)|greatest (similar term)|sterling (similar term)|superlative (similar term)|high-performance (similar term)|outstanding (similar term)|premium (similar term)|pukka (similar term)|pucka (similar term)|shining (similar term)|spiffing (similar term)|supreme (similar term)|top-flight (similar term)|top-hole (similar term)|topping (similar term)|transcendent (similar term)|surpassing (similar term)|weapons-grade (similar term)|well-made (similar term)|best (related term)|inferior (antonym)
+(adj)|arch (similar term)|condescending (similar term)|patronizing (similar term)|patronising (similar term)|eminent (similar term)|high (similar term)|leading (similar term)|preeminent (similar term)|high-level (similar term)|high-ranking (similar term)|upper-level (similar term)|majestic (similar term)|olympian (similar term)|superordinate (similar term)|upper (similar term)|dominant (related term)|high (related term)|inferior (antonym)
+(adj)|dominant (similar term)
+(adj)|superscript|subscript (antonym)|adscript (antonym)
+(adj)|inferior (antonym)
+(adj)|ranking|higher-ranking|senior (similar term)
+(adj)|unaffected (similar term)
+(noun)|higher-up|superordinate|leader (generic term)|inferior (antonym)
+(noun)|religious (generic term)
+(noun)|victor|master|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|Lake Superior|Superior|lake (generic term)
+(noun)|Superior|town (generic term)
+(noun)|superscript|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|subscript (antonym)
+superior alveolar artery|1
+(noun)|arteria alveolaris superior|alveolar artery (generic term)|arteria alveolaris (generic term)
+superior cerebellar artery|1
+(noun)|cerebellar artery (generic term)|arteria cerebelli (generic term)
+superior cerebral vein|1
+(noun)|vena cerebrum superior|cerebral vein (generic term)|vena cerebri (generic term)
+superior colliculus|1
+(noun)|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+superior conjunction|1
+(noun)|conjunction (generic term)|alignment (generic term)
+superior court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+superior epigastric veins|1
+(noun)|venae epigastricae superiores|epigastric vein (generic term)
+superior general|1
+(noun)|general|head (generic term)|chief (generic term)|top dog (generic term)
+superior labial artery|1
+(noun)|arteria labialis superior|labial artery (generic term)|arteria labialis (generic term)
+superior labial vein|1
+(noun)|vena labialis superior|labial vein (generic term)|vena labialis (generic term)
+superior mesenteric artery|1
+(noun)|mesenteric artery (generic term)|arteria mesenterica (generic term)
+superior ophthalmic vein|1
+(noun)|ophthalmic vein (generic term)|vena ophthalmica (generic term)
+superior planet|1
+(noun)|planet (generic term)|major planet (generic term)
+superior pulmonary vein|1
+(noun)|vena pulmonalis superior|pulmonary vein (generic term)|vena pulmonalis (generic term)
+superior rectus|1
+(noun)|superior rectus muscle|rectus superior|ocular muscle (generic term)|eye muscle (generic term)
+superior rectus muscle|1
+(noun)|superior rectus|rectus superior|ocular muscle (generic term)|eye muscle (generic term)
+superior skill|1
+(noun)|ability (generic term)|power (generic term)
+superior thalamostriate vein|1
+(noun)|thalamostriate vein (generic term)
+superior thyroid vein|1
+(noun)|thyroid vein (generic term)|vena thyroidea (generic term)
+superior vena cava|1
+(noun)|precava|vena cava (generic term)
+superior vocal cord|1
+(noun)|false vocal cord|false vocal fold|ventricular fold|vestibular fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+superiority|4
+(noun)|high quality|quality (generic term)|caliber (generic term)|calibre (generic term)|low quality (antonym)|inferiority (antonym)
+(noun)|favorable position|favourable position|advantage (generic term)|vantage (generic term)
+(noun)|arrogance (generic term)|haughtiness (generic term)|hauteur (generic term)|high-handedness (generic term)|lordliness (generic term)
+(noun)|transcendence|transcendency|domination (generic term)|mastery (generic term)|supremacy (generic term)
+superiority complex|1
+(noun)|egotism (generic term)|self-importance (generic term)|swelled head (generic term)
+superjacent|1
+(adj)|incumbent (similar term)|overlying (similar term)|superimposed (similar term)|superincumbent (similar term)|subjacent (antonym)
+superlative|4
+(adj)|greatest|sterling|superior (similar term)
+(noun)|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+(noun)|acme|height|elevation|peak|pinnacle|summit|meridian|tiptop|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|adjective (generic term)
+superload|1
+(noun)|live load|load (generic term)|loading (generic term)|burden (generic term)
+superlunar|2
+(adj)|translunar|translunary|superlunary|satellite (related term)
+(adj)|translunar|translunary|superlunary|heavenly (similar term)
+superlunary|2
+(adj)|translunar|translunary|superlunar|satellite (related term)
+(adj)|translunar|translunary|superlunar|heavenly (similar term)
+superman|2
+(noun)|demigod|Ubermensch|leader (generic term)
+(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|window pane|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+supermarket|1
+(noun)|grocery store (generic term)|grocery (generic term)|food market (generic term)|market (generic term)
+supermarketeer|1
+(noun)|supermarketer|operator (generic term)
+supermarketer|1
+(noun)|supermarketeer|operator (generic term)
+supermex|1
+(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer (generic term)|golf player (generic term)|linksman (generic term)
+supermodel|1
+(noun)|mannequin (generic term)|manikin (generic term)|mannikin (generic term)|manakin (generic term)|fashion model (generic term)|model (generic term)
+supermolecule|1
+(noun)|macromolecule|molecule (generic term)|organic compound (generic term)
+supermom|1
+(noun)|mother (generic term)|female parent (generic term)
+supernal|2
+(adj)|heavenly (related term)|infernal (antonym)
+(adj)|celestial|ethereal|heavenly (similar term)
+supernatant|2
+(adj)|supported (similar term)
+(noun)|liquid (generic term)
+supernatural|2
+(adj)|apparitional (similar term)|ghostlike (similar term)|ghostly (similar term)|phantasmal (similar term)|spectral (similar term)|spiritual (similar term)|eerie (similar term)|eldritch (similar term)|weird (similar term)|uncanny (similar term)|unearthly (similar term)|elfin (similar term)|fey (similar term)|charming (similar term)|magic (similar term)|magical (similar term)|sorcerous (similar term)|witching (similar term)|wizard (similar term)|wizardly (similar term)|marvelous (similar term)|marvellous (similar term)|miraculous (similar term)|metaphysical (similar term)|necromantic (similar term)|nonnatural (similar term)|otherworldly (similar term)|preternatural (similar term)|transcendental (similar term)|talismanic (similar term)|transmundane (similar term)|witchlike (similar term)|unreal (related term)|natural (antonym)
+(noun)|occult|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+supernatural being|1
+(noun)|spiritual being|belief (generic term)
+supernatural virtue|1
+(noun)|theological virtue|cardinal virtue (generic term)
+supernaturalism|2
+(noun)|belief (generic term)
+(noun)|supernaturalness|unnaturalness (generic term)
+supernaturalist|1
+(adj)|supernaturalistic|belief (related term)
+supernaturalistic|1
+(adj)|supernaturalist|belief (related term)
+supernaturally|1
+(adv)|preternaturally
+supernaturalness|1
+(noun)|supernaturalism|unnaturalness (generic term)
+supernormal|2
+(adj)|supranormal|paranormal (similar term)
+(adj)|abnormal (similar term)
+supernova|1
+(noun)|star (generic term)
+supernumerary|3
+(adj)|excess|extra|redundant|spare|supererogatory|superfluous|surplus|unnecessary (similar term)|unneeded (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|spear carrier|extra|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+superorder|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+superorder acanthopterygii|1
+(noun)|Acanthopterygii|superorder Acanthopterygii|animal order (generic term)
+superorder labyrinthodonta|1
+(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order (generic term)
+superorder labyrinthodontia|1
+(noun)|Labyrinthodontia|superorder Labyrinthodontia|Labyrinthodonta|superorder Labyrinthodonta|animal order (generic term)
+superorder malacopterygii|1
+(noun)|Malacopterygii|superorder Malacopterygii|animal order (generic term)
+superorder ratitae|1
+(noun)|Ratitae|superorder Ratitae|animal order (generic term)
+superordinate|4
+(adj)|superior (similar term)
+(noun)|superior|higher-up|leader (generic term)|inferior (antonym)
+(noun)|hypernym|superordinate word|word (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)
+superordinate word|1
+(noun)|hypernym|superordinate|word (generic term)
+superordination|1
+(noun)|hypernymy|semantic relation (generic term)
+superoxide|2
+(noun)|oxide (generic term)
+(noun)|superoxide anion|anion (generic term)
+superoxide anion|1
+(noun)|superoxide|anion (generic term)
+superoxide dismutase|1
+(noun)|SOD|enzyme (generic term)
+superpatriotic|1
+(adj)|chauvinistic|flag-waving|jingoistic|nationalistic|ultranationalistic|patriotic (similar term)|loyal (similar term)
+superpatriotism|1
+(noun)|chauvinism|jingoism|ultranationalism|patriotism (generic term)|nationalism (generic term)
+superphylum|1
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+superposable|1
+(adj)|identical|congruent (similar term)
+superpose|2
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|superimpose|lay over|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+superposition|3
+(noun)|deposition (generic term)|deposit (generic term)
+(noun)|principle of superposition|superposition principle|principle (generic term)|rule (generic term)
+(noun)|placement (generic term)|location (generic term)|locating (generic term)|position (generic term)|positioning (generic term)|emplacement (generic term)
+superposition principle|1
+(noun)|principle of superposition|superposition|principle (generic term)|rule (generic term)
+superpower|1
+(noun)|world power|major power|great power|power|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+supersaturated|1
+(adj)|saturated (similar term)|concentrated (similar term)
+superscribe|1
+(verb)|write (generic term)
+superscript|2
+(adj)|superior|subscript (antonym)|adscript (antonym)
+(noun)|superior|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|subscript (antonym)
+superscription|2
+(noun)|inscription (generic term)|lettering (generic term)
+(noun)|inscription (generic term)
+supersede|1
+(verb)|supplant|replace|supervene upon|supercede|succeed (generic term)|come after (generic term)|follow (generic term)
+supersedure|1
+(noun)|supersession|replacement (generic term)|replacing (generic term)
+supersensitised|1
+(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitized|susceptible (similar term)
+supersensitive|1
+(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitized|supersensitised|susceptible (similar term)
+supersensitized|1
+(adj)|allergic|hypersensitive|hypersensitized|hypersensitised|sensitized|sensitised|supersensitive|supersensitised|susceptible (similar term)
+supersession|1
+(noun)|supersedure|replacement (generic term)|replacing (generic term)
+superslasher|1
+(noun)|utahraptor|maniraptor (generic term)
+supersonic|2
+(adj)|sonic (antonym)|subsonic (antonym)
+(adj)|ultrasonic|inaudible (similar term)|unhearable (similar term)
+superstar|1
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|whiz|whizz|wizard|wiz|expert (generic term)
+superstition|1
+(noun)|superstitious notion|belief (generic term)
+superstitious|1
+(adj)|irrational (similar term)
+superstitious notion|1
+(noun)|superstition|belief (generic term)
+superstrate|2
+(noun)|superstratum|stratum (generic term)
+(noun)|superstratum|language (generic term)|linguistic communication (generic term)
+superstratum|2
+(noun)|superstrate|stratum (generic term)
+(noun)|superstrate|language (generic term)|linguistic communication (generic term)
+superstring|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+superstructure|1
+(noun)|structure (generic term)|construction (generic term)
+supersymmetry|1
+(noun)|scientific theory (generic term)
+supertanker|1
+(noun)|oil tanker (generic term)|oiler (generic term)|tanker (generic term)|tank ship (generic term)
+supertax|1
+(noun)|surtax|income tax (generic term)
+supertitle|1
+(noun)|surtitle|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+supertonic|1
+(noun)|note (generic term)|musical note (generic term)|tone (generic term)
+supertwister|1
+(noun)|tornado (generic term)|twister (generic term)
+supervene|1
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+supervene upon|1
+(verb)|supplant|replace|supersede|supercede|succeed (generic term)|come after (generic term)|follow (generic term)
+supervention|1
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+supervise|2
+(verb)|oversee|superintend|manage|administer (generic term)|administrate (generic term)
+(verb)|monitor|ride herd on|observe (generic term)
+supervised|1
+(adj)|unsupervised (antonym)
+supervising|1
+(noun)|supervision|superintendence|oversight|management (generic term)|direction (generic term)
+supervision|1
+(noun)|supervising|superintendence|oversight|management (generic term)|direction (generic term)
+supervisor|2
+(noun)|superior (generic term)|higher-up (generic term)|superordinate (generic term)
+(noun)|supervisory program|executive program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+supervisor call instruction|1
+(noun)|system call|call (generic term)
+supervisory|1
+(adj)|superior|higher-up|superordinate (related term)
+supervisory program|1
+(noun)|supervisor|executive program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+supervisory routine|1
+(noun)|executive routine|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+supervisory software|1
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+supinate|1
+(verb)|turn (generic term)
+supination|1
+(noun)|rotation (generic term)|rotary motion (generic term)|pronation (antonym)
+supinator|1
+(noun)|muscle (generic term)|musculus (generic term)
+supine|2
+(adj)|resupine|unerect (similar term)
+(adj)|resistless|unresisting|passive (similar term)|inactive (similar term)
+supper|2
+(noun)|meal (generic term)|repast (generic term)
+(noun)|social gathering (generic term)|social affair (generic term)
+supper club|1
+(noun)|cabaret (generic term)|nightclub (generic term)|club (generic term)|nightspot (generic term)
+supperless|1
+(adj)|hungry (similar term)
+suppertime|1
+(noun)|dinnertime|mealtime (generic term)
+supping|1
+(noun)|eating (generic term)|feeding (generic term)
+supplant|1
+(verb)|replace|supersede|supervene upon|supercede|succeed (generic term)|come after (generic term)|follow (generic term)
+supplanter|1
+(noun)|usurper|wrongdoer (generic term)|offender (generic term)
+supplanting|1
+(noun)|displacement|replacement (generic term)|replacing (generic term)
+supple|4
+(adj)|lissome|lissom|lithe|lithesome|slender|svelte|sylphlike|graceful (similar term)
+(adj)|limber|flexible (similar term)
+(adj)|limber|flexible (similar term)|flexile (similar term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+supplejack|1
+(noun)|walking stick (generic term)
+supplement|6
+(noun)|addendum|postscript|matter (generic term)
+(noun)|supplementation|increase (generic term)|increment (generic term)
+(noun)|accessory|appurtenance|add-on|component (generic term)|constituent (generic term)|element (generic term)
+(verb)|add (generic term)
+(verb)|constitute (generic term)|represent (generic term)|make up (generic term)|comprise (generic term)|be (generic term)
+(verb)|append|add on|affix|attach (generic term)
+supplemental|2
+(adj)|auxiliary|subsidiary|supplementary|secondary (similar term)
+(adj)|supplementary|additive (similar term)
+supplementary|2
+(adj)|auxiliary|subsidiary|supplemental|secondary (similar term)
+(adj)|supplemental|additive (similar term)
+supplementary benefit|1
+(noun)|social assistance|national assistance|social insurance (generic term)
+supplementation|2
+(noun)|supplement|increase (generic term)|increment (generic term)
+(noun)|subjunction|subjoining|expansion (generic term)|expanding upon (generic term)
+suppleness|3
+(noun)|lissomeness|litheness|gracefulness (generic term)
+(noun)|pliancy|pliantness|bendability (generic term)|pliability (generic term)
+(noun)|pliability|pliancy|pliantness|adaptability (generic term)
+suppliant|2
+(adj)|supplicant|supplicatory|beseeching (similar term)
+(noun)|petitioner|supplicant|requester|applicant (generic term)|applier (generic term)
+supplicant|3
+(adj)|suppliant|supplicatory|beseeching (similar term)
+(noun)|prayer|religious person (generic term)
+(noun)|petitioner|suppliant|requester|applicant (generic term)|applier (generic term)
+supplicate|3
+(verb)|beg (generic term)|implore (generic term)|pray (generic term)
+(verb)|petition (generic term)
+(verb)|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+supplication|3
+(noun)|invocation|prayer (generic term)|petition (generic term)|orison (generic term)
+(noun)|plea|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+(noun)|prayer|worship (generic term)
+supplicatory|1
+(adj)|suppliant|supplicant|beseeching (similar term)
+supplied with|1
+(adj)|furnished with|provided with|furnished (similar term)|equipped (similar term)
+supplier|1
+(noun)|provider|businessperson (generic term)|bourgeois (generic term)
+supply|7
+(noun)|indefinite quantity (generic term)
+(noun)|economic process (generic term)|demand (antonym)
+(noun)|provision|supplying|activity (generic term)
+(verb)|provide|render|furnish|give (generic term)
+(verb)|issue|distribute (generic term)|recall (antonym)
+(verb)|provide|ply|cater|give (generic term)
+(verb)|add|append|state (generic term)|say (generic term)|tell (generic term)
+supply-side economics|1
+(noun)|economics (generic term)|economic science (generic term)|political economy (generic term)
+supply chamber|1
+(noun)|mechanical device (generic term)
+supply closet|1
+(noun)|cupboard (generic term)|closet (generic term)
+supply line|1
+(noun)|supply route|path (generic term)|route (generic term)|itinerary (generic term)
+supply officer|1
+(noun)|commissioned officer (generic term)
+supply route|1
+(noun)|supply line|path (generic term)|route (generic term)|itinerary (generic term)
+supply ship|1
+(noun)|tender|ship (generic term)
+supplying|1
+(noun)|provision|supply|activity (generic term)
+support|22
+(noun)|activity (generic term)
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+(noun)|influence (generic term)
+(noun)|reinforcement|reenforcement|operation (generic term)|military operation (generic term)
+(noun)|documentation|validation (generic term)|proof (generic term)|substantiation (generic term)
+(noun)|keep|livelihood|living|bread and butter|sustenance|resource (generic term)
+(noun)|supporting structure (generic term)
+(noun)|supporting|activity (generic term)
+(noun)|accompaniment|musical accompaniment|backup|part (generic term)|voice (generic term)
+(noun)|device (generic term)
+(noun)|financial support|funding|backing|financial backing|resource (generic term)
+(verb)|back up
+(verb)|give (generic term)
+(verb)|back|endorse|indorse|plump for|plunk for|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+(verb)|hold|sustain|hold up
+(verb)|confirm|corroborate|sustain|substantiate|affirm|negate (antonym)
+(verb)|subscribe|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|corroborate|underpin|bear out|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|defend|fend for|argue (generic term)|reason (generic term)
+(verb)|act (generic term)|play (generic term)|represent (generic term)
+(verb)|patronize|patronise|patronage|keep going|foster (generic term)|nurture (generic term)
+(verb)|digest|endure|stick out|stomach|bear|stand|tolerate|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+support column|1
+(noun)|column (generic term)|pillar (generic term)
+support hose|1
+(noun)|support stocking|stocking (generic term)
+support level|1
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+support payment|1
+(noun)|payment (generic term)
+support stocking|1
+(noun)|support hose|stocking (generic term)
+support system|1
+(noun)|network (generic term)|web (generic term)
+supportable|1
+(adj)|bearable|endurable|sufferable|tolerable (similar term)
+supported|2
+(adj)|backed (similar term)|backed up (similar term)|based (similar term)|founded (similar term)|based on (similar term)|corroborated (similar term)|substantiated (similar term)|verified (similar term)|endorsed (similar term)|financed (similar term)|fostered (similar term)|nourished (similar term)|subsidized (similar term)|subsidised (similar term)|unsupported (antonym)
+(adj)|based (similar term)|braced (similar term)|buttressed (similar term)|gimbaled (similar term)|pendent (similar term)|pendant (similar term)|dependent (similar term)|hanging (similar term)|hanging down (similar term)|supernatant (similar term)|suspended (similar term)|underhung (similar term)|underslung (similar term)|unsupported (antonym)|unsupported (antonym)
+supporter|5
+(noun)|protagonist|champion|admirer|booster|friend|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|patron|sponsor|benefactor (generic term)|helper (generic term)
+(noun)|assistant|helper|help|worker (generic term)
+(noun)|garter|band (generic term)
+(noun)|athletic supporter|suspensor|jockstrap|jock|protective garment (generic term)|man's clothing (generic term)
+supporters of islam|1
+(noun)|Ansar al Islam|Ansar al-Islam|Supporters of Islam|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+supporting|3
+(adj)|encouraging|supportive (similar term)
+(adj)|load-bearing|bearing (similar term)
+(noun)|support|activity (generic term)
+supporting fire|1
+(noun)|fire (generic term)|firing (generic term)
+supporting players|1
+(noun)|ensemble|cast (generic term)|cast of characters (generic term)|dramatis personae (generic term)
+supporting structure|1
+(noun)|structure (generic term)|construction (generic term)
+supporting tower|1
+(noun)|tower (generic term)
+supportive|1
+(adj)|accessory (similar term)|adjunct (similar term)|ancillary (similar term)|adjuvant (similar term)|appurtenant (similar term)|auxiliary (similar term)|subsidiary (similar term)|certificatory (similar term)|collateral (similar term)|confirmative (similar term)|confirming (similar term)|confirmatory (similar term)|corroborative (similar term)|corroboratory (similar term)|substantiating (similar term)|substantiative (similar term)|validating (similar term)|validatory (similar term)|verificatory (similar term)|verifying (similar term)|demonstrative of (similar term)|encouraging (similar term)|supporting (similar term)|positive (related term)|unsupportive (antonym)
+supposable|1
+(adj)|presumable|surmisable|thinkable (similar term)
+supposal|2
+(noun)|assumption|supposition|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|supposition|conjecture (generic term)
+suppose|5
+(verb)|say|speculate (generic term)
+(verb)|think|opine|imagine|reckon|guess|expect (generic term)|anticipate (generic term)
+(verb)|speculate|theorize|theorise|conjecture|hypothesize|hypothesise|hypothecate|expect (generic term)|anticipate (generic term)
+(verb)|presuppose|assume (generic term)|presume (generic term)|take for granted (generic term)
+(verb)|presuppose|imply (generic term)
+supposed|7
+(adj)|expected (similar term)
+(adj)|improbable (similar term)|unlikely (similar term)
+(adj)|putative|purported|reputed|acknowledged (similar term)
+(adj)|intended (similar term)
+(adj)|alleged|so-called|questionable (similar term)
+(adj)|obligated (similar term)
+(adj)|conjectural|divinatory|hypothetical|hypothetic|suppositional|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+supposedly|1
+(adv)|purportedly
+supposition|3
+(noun)|guess|conjecture|surmise|surmisal|speculation|hypothesis|opinion (generic term)|view (generic term)
+(noun)|assumption|supposal|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+(noun)|supposal|conjecture (generic term)
+suppositional|1
+(adj)|conjectural|divinatory|hypothetical|hypothetic|supposed|suppositious|supposititious|theoretical (similar term)|theoretic (similar term)
+suppositious|1
+(adj)|conjectural|divinatory|hypothetical|hypothetic|supposed|suppositional|supposititious|theoretical (similar term)|theoretic (similar term)
+supposititious|1
+(adj)|conjectural|divinatory|hypothetical|hypothetic|supposed|suppositional|suppositious|theoretical (similar term)|theoretic (similar term)
+suppository|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+suppress|5
+(verb)|stamp down|inhibit|subdue|conquer|curb|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|oppress|crush
+(verb)|bottle up|restrain (generic term)|suppress (generic term)|keep (generic term)|keep back (generic term)|hold back (generic term)
+(verb)|restrain|keep|keep back|hold back|prevent (generic term)|keep (generic term)
+(verb)|repress|forget (generic term)|bury (generic term)
+suppressant|1
+(noun)|appetite suppressant|drug (generic term)
+suppressed|3
+(adj)|burked (similar term)|hushed-up (similar term)|quelled (similar term)|quenched (similar term)|squelched (similar term)|unreleased (similar term)|publicized (antonym)
+(adj)|silenced (similar term)
+(adj)|smothered|stifled|strangled|inhibited (similar term)
+suppresser|3
+(noun)|suppressor|restrainer (generic term)|controller (generic term)
+(noun)|suppressor|suppressor gene|suppresser gene|gene (generic term)|cistron (generic term)|factor (generic term)
+(noun)|suppressor|electrical device (generic term)
+suppresser gene|1
+(noun)|suppressor|suppresser|suppressor gene|gene (generic term)|cistron (generic term)|factor (generic term)
+suppression|4
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|curtailment|restraint (generic term)
+(noun)|crushing|quelling|stifling|prevention (generic term)|bar (generic term)
+(noun)|inhibition|abstinence (generic term)
+suppressive|1
+(adj)|restrictive (similar term)
+suppressive fire|1
+(noun)|fire (generic term)|firing (generic term)
+suppressor|3
+(noun)|suppresser|restrainer (generic term)|controller (generic term)
+(noun)|suppresser|suppressor gene|suppresser gene|gene (generic term)|cistron (generic term)|factor (generic term)
+(noun)|suppresser|electrical device (generic term)
+suppressor gene|1
+(noun)|suppressor|suppresser|suppresser gene|gene (generic term)|cistron (generic term)|factor (generic term)
+suppuku|1
+(noun)|harakiri|hara-kiri|harikari|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+suppurate|2
+(verb)|mature|draw (generic term)
+(verb)|fester|maturate|discharge (generic term)|expel (generic term)|eject (generic term)|release (generic term)
+suppurating sore|1
+(noun)|fester|sore (generic term)
+suppuration|2
+(noun)|festering|maturation|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|pus|purulence|ichor|sanies|festering|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+suppurative|1
+(adj)|bodily process|body process|bodily function|activity (related term)|nonsuppurative (antonym)
+supra|1
+(adv)|above|below (antonym)
+supra expressionism|1
+(noun)|expressionism (generic term)
+suprainfection|1
+(noun)|infection (generic term)
+supranational|1
+(adj)|international (similar term)
+supranormal|1
+(adj)|supernormal|paranormal (similar term)
+supraocular|1
+(adj)|supraorbital|cavity|bodily cavity|cavum (related term)
+supraorbital|1
+(adj)|supraocular|cavity|bodily cavity|cavum (related term)
+supraorbital ridge|1
+(noun)|supraorbital torus|superciliary ridge|superciliary arch|ridge (generic term)
+supraorbital torus|1
+(noun)|supraorbital ridge|superciliary ridge|superciliary arch|ridge (generic term)
+supraorbital vein|1
+(noun)|vena supraorbitalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+suprarenal gland|1
+(noun)|adrenal gland|adrenal|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+suprarenalectomy|1
+(noun)|adrenalectomy|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+suprasegmental|1
+(adj)|united (similar term)
+supratrochlear vein|1
+(noun)|vena supratrochlearis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+supremacism|1
+(noun)|belief (generic term)
+supremacist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+supremacy|1
+(noun)|domination|mastery|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+suprematism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+suprematist|1
+(noun)|abstractionist (generic term)|abstract artist (generic term)
+supreme|4
+(adj)|ultimate (similar term)
+(adj)|sovereign|dominant (similar term)
+(adj)|superior (similar term)
+(adj)|maximal (similar term)|maximum (similar term)
+supreme allied commander atlantic|1
+(noun)|Supreme Allied Commander Atlantic|SACLANT|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+supreme allied commander europe|1
+(noun)|Supreme Allied Commander Europe|SACEUR|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+supreme authority|1
+(noun)|arbiter|expert (generic term)
+supreme being|1
+(noun)|God|Supreme Being|spiritual being (generic term)|supernatural being (generic term)
+supreme court|2
+(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court (generic term)
+(noun)|state supreme court|high court|court (generic term)|tribunal (generic term)|judicature (generic term)
+supreme court of the united states|1
+(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court (generic term)
+supreme headquarters|1
+(noun)|high command|leadership (generic term)|leaders (generic term)
+supreme headquarters allied powers europe|1
+(noun)|Supreme Headquarters Allied Powers Europe|SHAPE|high command (generic term)|supreme headquarters (generic term)
+supreme truth|1
+(noun)|Aum Shinrikyo|Aum|Supreme Truth|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+supremo|1
+(noun)|big shot (generic term)|big gun (generic term)|big wheel (generic term)|big cheese (generic term)|big deal (generic term)|big enchilada (generic term)|big fish (generic term)|head honcho (generic term)
+sur|1
+(noun)|Sur|Tyre|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+sura|2
+(noun)|section (generic term)|subdivision (generic term)
+(noun)|calf|skeletal muscle (generic term)|striated muscle (generic term)
+surbase|1
+(noun)|molding (generic term)|moulding (generic term)
+surcease|1
+(noun)|cessation|stop (generic term)|halt (generic term)
+surcharge|8
+(noun)|charge (generic term)
+(verb)|charge (generic term)|bill (generic term)
+(verb)|overcharge|soak|gazump|fleece|plume|pluck|rob|hook|cheat (generic term)|rip off (generic term)|chisel (generic term)|undercharge (antonym)
+(verb)|overcrowd (generic term)
+(verb)|overprint (generic term)|print over (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|overload|overcharge|load (generic term)|lade (generic term)|laden (generic term)|load up (generic term)
+(verb)|show (generic term)
+surcoat|2
+(noun)|coat (generic term)
+(noun)|tunic (generic term)
+surd|2
+(adj)|unvoiced|voiceless|hard|whispered (similar term)|voiced (antonym)
+(noun)|voiceless consonant|consonant (generic term)
+sure|10
+(adj)|certain|convinced (similar term)|positive (similar term)|confident (similar term)|unsure (antonym)|uncertain (antonym)
+(adj)|certain|careful (similar term)
+(adj)|certain|bound (similar term)|destined (similar term)|doomed (similar term)|fated (similar term)|foreordained (similar term)|predestinate (similar term)|predestined (similar term)|in for (similar term)|predictable (related term)|uncertain (antonym)
+(adj)|secure (similar term)
+(adj)|certain|reliable (similar term)|dependable (similar term)
+(adj)|trusted|trustworthy (similar term)|trusty (similar term)
+(adj)|true (similar term)
+(adj)|steady (similar term)
+(adj)|indisputable|certain (similar term)
+(adv)|surely|certainly|for sure|for certain|sure enough|sure as shooting
+sure-enough|1
+(adj)|honest-to-god|honest-to-goodness|old|genuine (similar term)|echt (similar term)
+sure-fire|1
+(adj)|successful (similar term)
+sure-footed|2
+(adj)|surefooted|footsure|steady (similar term)
+(adj)|confident|surefooted|capable (similar term)
+sure-handed|1
+(adj)|skilled (similar term)
+sure as shooting|2
+(adj)|certain (similar term)
+(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 (generic term)|uncertainty (antonym)
+surefooted|2
+(adj)|sure-footed|footsure|steady (similar term)
+(adj)|confident|sure-footed|capable (similar term)
+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 (generic term)
+(noun)|steadiness (generic term)|firmness (generic term)
+surety|5
+(noun)|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+(noun)|security|transferred property (generic term)|transferred possession (generic term)
+(noun)|hostage|prisoner (generic term)|captive (generic term)
+(noun)|guarantor|warrantor|warranter|patron (generic term)|sponsor (generic term)|supporter (generic term)
+(noun)|security|guarantee (generic term)|warrant (generic term)|warrantee (generic term)|warranty (generic term)
+surety bond|1
+(noun)|performance bond|bond (generic term)|bond certificate (generic term)
+surf|4
+(noun)|breaker|breakers|wave (generic term)|moving ridge (generic term)
+(verb)|surfboard|glide (generic term)
+(verb)|browse|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|channel-surf|switch (generic term)|shift (generic term)|change (generic term)
+surf casting|1
+(noun)|surf fishing|casting (generic term)|cast (generic term)
+surf fish|2
+(noun)|yellowfin croaker|surffish|Umbrina roncador|croaker (generic term)
+(noun)|surfperch|surffish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+surf fishing|1
+(noun)|surf casting|casting (generic term)|cast (generic term)
+surface|11
+(adj)|aboveground (similar term)|grade-constructed (similar term)|opencast (similar term)|opencut (similar term)|subsurface (antonym)|overhead (antonym)
+(adj)|skin-deep|superficial|shallow (similar term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|boundary (generic term)|bound (generic term)|bounds (generic term)
+(noun)|Earth's surface|layer (generic term)
+(noun)|aspect (generic term)|facet (generic term)
+(noun)|open|public knowledge (generic term)|general knowledge (generic term)
+(noun)|airfoil|aerofoil|control surface|device (generic term)
+(verb)|come up|rise up|rise|ascend (generic term)|go up (generic term)
+(verb)|coat|cover (generic term)
+(verb)|come on|come out|turn up|show up|appear (generic term)
+surface-active|1
+(adj)|active (similar term)
+surface-active agent|1
+(noun)|wetting agent|wetter|surfactant|chemical agent (generic term)
+surface-assimilative|1
+(adj)|adsorbent|adsorptive|chemisorptive (similar term)|chemosorptive (similar term)|nonadsorbent (antonym)
+surface-mine|1
+(verb)|strip mine|surface mine|mine (generic term)
+surface-to-air|1
+(adj)|air-to-surface (antonym)|air-to-air (antonym)
+surface-to-air missile|1
+(noun)|SAM|guided missile (generic term)
+surface-to-air missile system|1
+(noun)|shipboard system (generic term)
+surface area|1
+(noun)|area|expanse|extent (generic term)
+surface assimilation|1
+(noun)|adsorption|sorption (generic term)
+surface fire|1
+(noun)|forest fire (generic term)
+surface gage|1
+(noun)|surface gauge|scribing block|gauge (generic term)|gage (generic term)
+surface gauge|1
+(noun)|surface gage|scribing block|gauge (generic term)|gage (generic term)
+surface lift|1
+(noun)|ski tow (generic term)|ski lift (generic term)|lift (generic term)
+surface mail|1
+(noun)|mail (generic term)|air mail (antonym)
+surface mine|1
+(verb)|strip mine|surface-mine|mine (generic term)
+surface noise|1
+(noun)|background noise (generic term)|ground noise (generic term)
+surface search radar|1
+(noun)|naval radar (generic term)
+surface ship|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)|submersible (antonym)
+surface soil|1
+(noun)|topsoil|soil (generic term)|dirt (generic term)
+surface tension|1
+(noun)|physical phenomenon (generic term)
+surfacing|1
+(noun)|egress (generic term)|egression (generic term)|emergence (generic term)
+surfactant|1
+(noun)|wetting agent|wetter|surface-active agent|chemical agent (generic term)
+surfbird|1
+(noun)|Aphriza virgata|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+surfboard|2
+(noun)|board (generic term)
+(verb)|surf|glide (generic term)
+surfboarder|1
+(noun)|surfer|swimmer (generic term)|natator (generic term)|bather (generic term)
+surfboarding|1
+(noun)|surfing|surfriding|water sport (generic term)|aquatics (generic term)
+surfboat|1
+(noun)|boat (generic term)
+surfeit|5
+(noun)|excess|overabundance|fullness (generic term)
+(noun)|glut|oversupply|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+(noun)|repletion|eating (generic term)|feeding (generic term)
+(verb)|cloy|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|indulge (generic term)|luxuriate (generic term)
+surfeited|1
+(adj)|gorged|sated|satiate (similar term)|satiated (similar term)
+surfer|1
+(noun)|surfboarder|swimmer (generic term)|natator (generic term)|bather (generic term)
+surffish|2
+(noun)|yellowfin croaker|surf fish|Umbrina roncador|croaker (generic term)
+(noun)|surfperch|surf fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+surficial|1
+(adj)|layer (related term)
+surfing|1
+(noun)|surfboarding|surfriding|water sport (generic term)|aquatics (generic term)
+surfperch|1
+(noun)|surffish|surf fish|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+surfriding|1
+(noun)|surfing|surfboarding|water sport (generic term)|aquatics (generic term)
+surge|8
+(noun)|rush|spate|upsurge|flow (generic term)|flowing (generic term)
+(noun)|upsurge|increase (generic term)|step-up (generic term)
+(noun)|billow|wave (generic term)|moving ridge (generic term)
+(verb)|billow|heave|inflate (generic term)|blow up (generic term)
+(verb)|soar|soar up|soar upwards|zoom|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|tide|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)|ebb (antonym)
+(verb)|scend|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+surge protector|1
+(noun)|surge suppressor|spike suppressor|spike arrester|lightning arrester|suppressor (generic term)|suppresser (generic term)
+surge suppressor|1
+(noun)|surge protector|spike suppressor|spike arrester|lightning arrester|suppressor (generic term)|suppresser (generic term)
+surgeon|1
+(noun)|operating surgeon|sawbones|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+surgeon's knot|1
+(noun)|knot (generic term)
+surgeon general|2
+(noun)|Surgeon General|executive (generic term)|executive director (generic term)
+(noun)|Surgeon General|medical officer (generic term)|medic (generic term)
+surgeonfish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+surgery|4
+(noun)|medical science (generic term)
+(noun)|room (generic term)
+(noun)|operating room|OR|operating theater|operating theatre|hospital room (generic term)
+(noun)|operation|surgical operation|surgical procedure|surgical process|medical procedure (generic term)
+surgical|3
+(adj)|medical procedure (related term)|nonsurgical (antonym)
+(adj)|operative|preoperative (similar term)|postoperative (similar term)|medical (antonym)
+(adj)|accurate (similar term)
+surgical contraception|1
+(noun)|sterilization (generic term)|sterilisation (generic term)|contraception (generic term)|contraceptive method (generic term)
+surgical dressing|1
+(noun)|dressing (generic term)|medical dressing (generic term)
+surgical gown|1
+(noun)|gown|scrubs|garment (generic term)
+surgical incision|1
+(noun)|incision|section|cut (generic term)|cutting (generic term)
+surgical instrument|1
+(noun)|medical instrument (generic term)
+surgical knife|1
+(noun)|knife (generic term)|surgical instrument (generic term)
+surgical operation|1
+(noun)|operation|surgery|surgical procedure|surgical process|medical procedure (generic term)
+surgical procedure|1
+(noun)|operation|surgery|surgical operation|surgical process|medical procedure (generic term)
+surgical process|1
+(noun)|operation|surgery|surgical operation|surgical procedure|medical procedure (generic term)
+surgical seam|1
+(noun)|suture|seam (generic term)
+surgical spirit|1
+(noun)|methylated spirit (generic term)
+surgical strike|1
+(noun)|strike (generic term)
+surging|1
+(adj)|billowy|billowing|stormy (similar term)
+suricata|1
+(noun)|Suricata|genus Suricata|mammal genus (generic term)
+suricata suricatta|1
+(noun)|slender-tailed meerkat|Suricata suricatta|meerkat (generic term)|mierkat (generic term)
+suricata tetradactyla|1
+(noun)|suricate|Suricata tetradactyla|meerkat (generic term)|mierkat (generic term)
+suricate|1
+(noun)|Suricata tetradactyla|meerkat (generic term)|mierkat (generic term)
+surinam|1
+(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country (generic term)|South American nation (generic term)
+surinam cherry|3
+(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+(noun)|Surinam cherry|pitanga|Eugenia uniflora|fruit tree (generic term)
+(noun)|acerola|barbados cherry|West Indian cherry|berry (generic term)
+surinam river|1
+(noun)|Suriname River|Surinam River|river (generic term)
+surinam toad|1
+(noun)|Surinam toad|Pipa pipa|Pipa americana|tongueless frog (generic term)
+suriname|1
+(noun)|Suriname|Republic of Suriname|Surinam|Dutch Guiana|Netherlands Guiana|South American country (generic term)|South American nation (generic term)
+suriname river|1
+(noun)|Suriname River|Surinam River|river (generic term)
+surinamese monetary unit|1
+(noun)|Surinamese monetary unit|monetary unit (generic term)
+surlily|1
+(adv)|churlishly
+surliness|1
+(noun)|temper|biliousness|irritability|peevishness|pettishness|snappishness|ill nature (generic term)
+surly|1
+(adj)|ugly|ill-natured (similar term)
+surmisable|1
+(adj)|presumable|supposable|thinkable (similar term)
+surmisal|1
+(noun)|guess|conjecture|supposition|surmise|speculation|hypothesis|opinion (generic term)|view (generic term)
+surmise|3
+(noun)|guess|conjecture|supposition|surmisal|speculation|hypothesis|opinion (generic term)|view (generic term)
+(verb)|deduce (generic term)|infer (generic term)|deduct (generic term)|derive (generic term)
+(verb)|suspect|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+surmontil|1
+(noun)|trimipramine|Surmontil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+surmount|4
+(verb)|overcome|get over|subdue|master|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|head (generic term)
+(verb)|scale|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|surpass|outstrip|outmatch|outgo|exceed|outdo|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+surmountable|2
+(adj)|conquerable (similar term)|superable (similar term)|conquerable (related term)|insurmountable (antonym)
+(adj)|climbable|passable (similar term)
+surmounter|1
+(noun)|subduer|overcomer|restrainer (generic term)|controller (generic term)
+surmullet|1
+(noun)|goatfish|red mullet|Mullus surmuletus|mullet (generic term)
+surname|1
+(noun)|family name|cognomen|last name|name (generic term)
+surnia|1
+(noun)|Surnia|genus Surnia|bird genus (generic term)
+surnia ulula|1
+(noun)|hawk owl|Surnia ulula|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+surpass|4
+(verb)|excel|stand out
+(verb)|outstrip|outmatch|outgo|exceed|outdo|surmount|outperform|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|travel by|pass by|go past|go by|pass|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|exceed|transcend
+surpassing|2
+(adj)|transcendent|superior (similar term)
+(adj)|exceeding|exceptional|olympian|prodigious|extraordinary (similar term)
+surplice|1
+(noun)|vestment (generic term)
+surpliced|1
+(adj)|clothed (similar term)|clad (similar term)
+surplus|2
+(adj)|excess|extra|redundant|spare|supererogatory|superfluous|supernumerary|unnecessary (similar term)|unneeded (similar term)
+(noun)|excess|surplusage|nimiety|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+surplusage|1
+(noun)|excess|surplus|nimiety|overabundance (generic term)|overmuch (generic term)|overmuchness (generic term)|superabundance (generic term)
+surprint|1
+(noun)|overprint|print (generic term)
+surprisal|1
+(noun)|surprise|disruption (generic term)|perturbation (generic term)
+surprise|6
+(noun)|astonishment (generic term)|amazement (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|surprisal|disruption (generic term)|perturbation (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|storm|attack (generic term)|assail (generic term)
+surprise attack|1
+(noun)|coup de main|attack (generic term)|onslaught (generic term)|onset (generic term)|onrush (generic term)
+surprised|1
+(adj)|amazed (similar term)|astonied (similar term)|astonished (similar term)|astounded (similar term)|stunned (similar term)|dumbfounded (similar term)|dumfounded (similar term)|flabbergasted (similar term)|stupefied (similar term)|thunderstruck (similar term)|dumbstruck (similar term)|dumbstricken (similar term)|gobsmacked (similar term)|goggle-eyed (similar term)|openmouthed (similar term)|popeyed (similar term)|jiggered (similar term)|startled (similar term)|unsurprised (antonym)
+surpriser|1
+(noun)|captor (generic term)|capturer (generic term)
+surprising|1
+(adj)|amazing (similar term)|astonishing (similar term)|startling (similar term)|stunning (similar term)|unexpected (related term)|unsurprising (antonym)
+surprisingly|1
+(adv)|amazingly|astonishingly
+surprisingness|1
+(noun)|unexpectedness|extraordinariness (generic term)|expectedness (antonym)
+surreal|2
+(adj)|phantasmagoric|phantasmagorical|surrealistic|unrealistic (similar term)
+(adj)|dreamlike|unreal (similar term)
+surrealism|1
+(noun)|artistic movement (generic term)|art movement (generic term)
+surrealist|1
+(noun)|artist (generic term)|creative person (generic term)
+surrealistic|1
+(adj)|phantasmagoric|phantasmagorical|surreal|unrealistic (similar term)
+surrebuttal|1
+(noun)|surrebutter|pleading (generic term)
+surrebutter|1
+(noun)|surrebuttal|pleading (generic term)
+surrejoinder|1
+(noun)|pleading (generic term)
+surrender|7
+(noun)|resignation|despair (generic term)
+(noun)|giving up|yielding|relinquishment (generic term)|relinquishing (generic term)
+(noun)|delivery (generic term)|livery (generic term)|legal transfer (generic term)
+(noun)|capitulation|fall|loss (generic term)
+(verb)|give up|yield (generic term)|resist (antonym)
+(verb)|cede|deliver|give up|give (generic term)|gift (generic term)|present (generic term)
+(verb)|relinquish|yield (generic term)
+surrendered|1
+(adj)|relinquished|given (similar term)
+surrenderer|1
+(noun)|yielder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+surreptitious|2
+(adj)|furtive|sneak|sneaky|stealthy|concealed (similar term)
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|secret|undercover|underground|covert (similar term)
+surreptitiously|1
+(adv)|sneakily
+surrey|2
+(noun)|Surrey|county (generic term)
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+surrogate|3
+(adj)|foster|adoptive (similar term)
+(noun)|alternate|replacement|stand-in (generic term)|substitute (generic term)|relief (generic term)|reliever (generic term)|backup (generic term)|backup man (generic term)|fill-in (generic term)
+(noun)|deputy|agent (generic term)
+surrogate mother|1
+(noun)|mother (generic term)|female parent (generic term)
+surround|6
+(noun)|environment|environs|surroundings|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(verb)|environ|encircle|circle|round|ring|hold (generic term)|bear (generic term)|carry (generic term)|contain (generic term)
+(verb)|skirt|border|touch (generic term)|adjoin (generic term)|meet (generic term)|contact (generic term)
+(verb)|smother|cover (generic term)
+(verb)|besiege|beleaguer|hem in|circumvent|attack (generic term)|assail (generic term)
+(verb)|wall|palisade|fence|fence in|protect (generic term)|wall in (related term)|wall up (related term)
+surrounded|1
+(adj)|encircled|enclosed (similar term)
+surrounding|1
+(adj)|encompassing|circumferent|close (similar term)
+surroundings|2
+(noun)|milieu|environment (generic term)
+(noun)|environment|environs|surround|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+sursum corda|1
+(noun)|versicle (generic term)
+surtax|2
+(noun)|supertax|income tax (generic term)
+(verb)|tax (generic term)
+surtitle|1
+(noun)|supertitle|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+surtout|1
+(noun)|greatcoat (generic term)|overcoat (generic term)|topcoat (generic term)
+surveil|1
+(verb)|follow|survey
+surveillance|1
+(noun)|police work (generic term)|police investigation (generic term)
+surveillance of disease|1
+(noun)|surveillance (generic term)
+surveillance system|1
+(noun)|closed-circuit television (generic term)
+survey|9
+(noun)|study|examination (generic term)|scrutiny (generic term)
+(noun)|sketch|resume|summary (generic term)|sum-up (generic term)
+(noun)|view|sight|look (generic term)|looking (generic term)|looking at (generic term)
+(verb)|appraise|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|examine (generic term)|see (generic term)
+(verb)|surveil|follow
+(verb)|review|go over|inspect (generic term)
+(verb)|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)
+surveying|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+surveying instrument|1
+(noun)|surveyor's instrument|instrument (generic term)
+surveyor|2
+(noun)|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+(noun)|statistician (generic term)|actuary (generic term)
+surveyor's instrument|1
+(noun)|surveying instrument|instrument (generic term)
+surveyor's level|1
+(noun)|surveying instrument (generic term)|surveyor's instrument (generic term)
+survival|3
+(noun)|endurance|animation (generic term)|life (generic term)|living (generic term)|aliveness (generic term)
+(noun)|survival of the fittest|natural selection|selection|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|continuance (generic term)|continuation (generic term)
+survival of the fittest|1
+(noun)|survival|natural selection|selection|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+survivalist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+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 (generic term)|overcome (generic term)|defeat (generic term)|succumb (antonym)
+(verb)|exist|live|subsist
+(verb)|outlive|outlast
+surviving|1
+(adj)|living|extant (similar term)
+survivor|3
+(noun)|subsister|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+survivor guilt|1
+(noun)|guilt (generic term)|guilty conscience (generic term)|guilt feelings (generic term)|guilt trip (generic term)
+survivors insurance|1
+(noun)|Social Security (generic term)
+survivorship annuity|1
+(noun)|reversionary annuity|annuity (generic term)|rente (generic term)
+surya|1
+(noun)|Surya|Hindu deity (generic term)
+sus|1
+(noun)|Sus|genus Sus|mammal genus (generic term)
+sus scrofa|2
+(noun)|wild boar|boar|Sus scrofa|swine (generic term)
+(noun)|hog|pig|grunter|squealer|Sus scrofa|swine (generic term)
+susa|1
+(noun)|Sousse|Susa|Susah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+susah|1
+(noun)|Sousse|Susa|Susah|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+susan anthony|1
+(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist (generic term)
+susan b. anthony|1
+(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist (generic term)
+susan b anthony dollar|1
+(noun)|Susan B Anthony dollar|dollar (generic term)
+susan brownell anthony|1
+(noun)|Anthony|Susan Anthony|Susan B. Anthony|Susan Brownell Anthony|suffragist (generic term)
+susan sontag|1
+(noun)|Sontag|Susan Sontag|writer (generic term)|author (generic term)
+susanna|1
+(noun)|Susanna|Book of Susanna|book (generic term)
+susceptibility|1
+(noun)|susceptibleness|condition (generic term)|status (generic term)|unsusceptibility (antonym)
+susceptible|2
+(adj)|allergic (similar term)|hypersensitive (similar term)|hypersensitized (similar term)|hypersensitised (similar term)|sensitized (similar term)|sensitised (similar term)|supersensitive (similar term)|supersensitized (similar term)|supersensitised (similar term)|amenable (similar term)|capable (similar term)|open (similar term)|subject (similar term)|convincible (similar term)|persuadable (similar term)|persuasible (similar term)|suasible (similar term)|fictile (similar term)|pliable (similar term)|liable (similar term)|nonimmune (similar term)|nonresistant (similar term)|unresistant (similar term)|predisposed (similar term)|responsive (similar term)|amenable (similar term)|tractable (similar term)|suggestible (similar term)|temptable (similar term)|unvaccinated (similar term)|vulnerable (similar term)|sensitive (related term)|unprotected (related term)|vulnerable (related term)|unsusceptible (antonym)
+(adj)|impressionable (similar term)|impressible (similar term)
+susceptibleness|1
+(noun)|susceptibility|condition (generic term)|status (generic term)|unsusceptibility (antonym)
+sushi|1
+(noun)|dish (generic term)
+sushi bar|1
+(noun)|bar (generic term)
+susian|1
+(noun)|Elamitic|Elamite|Susian|natural language (generic term)|tongue (generic term)
+susiana|1
+(noun)|Elam|Susiana|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+suslik|1
+(noun)|souslik|Citellus citellus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+suspect|6
+(adj)|fishy|funny|shady|suspicious|questionable (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|defendant|litigant (generic term)|litigator (generic term)|plaintiff (antonym)
+(verb)|surmise|guess (generic term)|venture (generic term)|pretend (generic term)|hazard (generic term)
+(verb)|distrust|mistrust|disbelieve (generic term)|discredit (generic term)|trust (antonym)|trust (antonym)
+(verb)|think (generic term)|opine (generic term)|suppose (generic term)|imagine (generic term)|reckon (generic term)|guess (generic term)
+suspected|1
+(adj)|unsuspected (antonym)
+suspend|6
+(verb)|hang (generic term)|hang up (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|debar|expel (generic term)|throw out (generic term)|kick out (generic term)
+(verb)|freeze|interrupt (generic term)|break (generic term)
+(verb)|set aside|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|postpone (generic term)|prorogue (generic term)|hold over (generic term)|put over (generic term)|table (generic term)|shelve (generic term)|set back (generic term)|defer (generic term)|remit (generic term)|put off (generic term)
+suspended|2
+(adj)|supported (similar term)
+(adj)|abeyant|delayed (similar term)
+suspended animation|1
+(noun)|physiological state (generic term)|physiological condition (generic term)
+suspender|1
+(noun)|brace|gallus|man's clothing (generic term)
+suspender belt|1
+(noun)|garter belt|undergarment (generic term)|unmentionable (generic term)
+suspense|3
+(noun)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+(noun)|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|anticipation (generic term)|expectancy (generic term)
+suspense account|1
+(noun)|account (generic term)|accounting (generic term)|account statement (generic term)
+suspenseful|1
+(adj)|cliff-hanging|suspensive|nail-biting|tense (similar term)
+suspension|7
+(noun)|mixture (generic term)
+(noun)|pause|intermission|break|interruption|time interval (generic term)|interval (generic term)
+(noun)|abeyance|inaction (generic term)|inactivity (generic term)|inactiveness (generic term)
+(noun)|respite|reprieve|hiatus|abatement|interruption (generic term)|break (generic term)
+(noun)|suspension system|mechanical system (generic term)
+(noun)|dangling|hanging|support (generic term)|supporting (generic term)
+(noun)|temporary removal|debarment (generic term)
+suspension bridge|1
+(noun)|bridge (generic term)|span (generic term)
+suspension point|1
+(noun)|period (generic term)|point (generic term)|full stop (generic term)|stop (generic term)|full point (generic term)
+suspension system|1
+(noun)|suspension|mechanical system (generic term)
+suspensive|2
+(adj)|cliff-hanging|suspenseful|nail-biting|tense (similar term)
+(adj)|indecisive (similar term)
+suspensor|1
+(noun)|athletic supporter|supporter|jockstrap|jock|protective garment (generic term)|man's clothing (generic term)
+suspensory|1
+(noun)|suspensory bandage|bandage (generic term)|patch (generic term)
+suspensory bandage|1
+(noun)|suspensory|bandage (generic term)|patch (generic term)
+suspicion|4
+(noun)|intuition|hunch|impression (generic term)|feeling (generic term)|belief (generic term)|notion (generic term)|opinion (generic term)
+(noun)|misgiving|mistrust|distrust|doubt (generic term)|uncertainty (generic term)|incertitude (generic term)|dubiety (generic term)|doubtfulness (generic term)|dubiousness (generic term)
+(noun)|hostility (generic term)|enmity (generic term)|antagonism (generic term)
+(noun)|suspiciousness|distrust (generic term)|distrustfulness (generic term)|mistrust (generic term)
+suspicious|2
+(adj)|leery|mistrustful|untrusting|wary|distrustful (similar term)
+(adj)|fishy|funny|shady|suspect|questionable (similar term)
+suspiciousness|1
+(noun)|suspicion|distrust (generic term)|distrustfulness (generic term)|mistrust (generic term)
+suspiration|1
+(noun)|sigh|utterance (generic term)|vocalization (generic term)
+suspire|2
+(verb)|sigh|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+(verb)|breathe|take a breath|respire|breathe out (related term)|breathe in (related term)
+susquehanna|1
+(noun)|Susquehanna|Susquehanna River|river (generic term)
+susquehanna river|1
+(noun)|Susquehanna|Susquehanna River|river (generic term)
+suss out|1
+(verb)|check|check up on|look into|check out|check over|go over|check into|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+sussex|1
+(noun)|Sussex|county (generic term)
+sussex spaniel|1
+(noun)|Sussex spaniel|spaniel (generic term)
+sussex university|1
+(noun)|University of Sussex|Sussex University|university (generic term)
+sustain|7
+(verb)|prolong|keep up|continue (generic term)|uphold (generic term)|carry on (generic term)|bear on (generic term)|preserve (generic term)
+(verb)|suffer|have|get|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|nourish|nurture|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|keep|maintain|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|hold|support|hold up
+(verb)|admit (generic term)|acknowledge (generic term)
+(verb)|confirm|corroborate|substantiate|support|affirm|negate (antonym)
+sustainability|1
+(noun)|property (generic term)
+sustainable|1
+(adj)|property (related term)
+sustained|2
+(adj)|continuous (similar term)|uninterrupted (similar term)
+(adj)|free burning|continuous (similar term)|uninterrupted (similar term)
+sustainer|1
+(noun)|upholder|maintainer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+sustaining pedal|1
+(noun)|loud pedal|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+sustaining program|1
+(noun)|broadcast (generic term)|program (generic term)|programme (generic term)
+sustainment|1
+(noun)|sustenance|sustentation|maintenance|upkeep|support (generic term)
+sustenance|3
+(noun)|nutriment|nourishment|nutrition|aliment|alimentation|victuals|food (generic term)|nutrient (generic term)
+(noun)|support|keep|livelihood|living|bread and butter|resource (generic term)
+(noun)|sustentation|sustainment|maintenance|upkeep|support (generic term)
+sustentacular|1
+(adj)|support (related term)
+sustentation|1
+(noun)|sustenance|sustainment|maintenance|upkeep|support (generic term)
+susurrant|1
+(adj)|murmuring|whispering|soft (similar term)
+susurrate|1
+(verb)|murmur (generic term)
+susurration|2
+(noun)|susurrus|sound (generic term)
+(noun)|whisper|whispering|voicelessness|speaking (generic term)|speech production (generic term)
+susurrous|1
+(adj)|murmurous|rustling|soughing|soft (similar term)
+susurrus|1
+(noun)|susurration|sound (generic term)
+sutherland|1
+(noun)|Sutherland|Joan Sutherland|Dame Joan Sutherland|soprano (generic term)
+sutler|1
+(noun)|victualer|victualler|provisioner|supplier (generic term)|provider (generic term)
+sutra|1
+(noun)|Sanskrit literature (generic term)
+suttee|1
+(noun)|suicide (generic term)|self-destruction (generic term)|self-annihilation (generic term)
+sutura|1
+(noun)|suture|fibrous joint|joint (generic term)|articulation (generic term)|articulatio (generic term)
+sutura coronalis|1
+(noun)|coronal suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutura frontalis|1
+(noun)|frontal suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutura intermaxillaris|1
+(noun)|intermaxillary suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutura internasalis|1
+(noun)|internasal suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutura lamboidea|1
+(noun)|lamboid suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutura sagittalis|1
+(noun)|sagittal suture|interparietal suture|suture (generic term)|sutura (generic term)|fibrous joint (generic term)
+sutural bone|1
+(noun)|Wormian bone|bone (generic term)|os (generic term)
+suture|4
+(noun)|sutura|fibrous joint|joint (generic term)|articulation (generic term)|articulatio (generic term)
+(noun)|surgical seam|seam (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+(verb)|seam (generic term)
+suturing|1
+(noun)|sewing (generic term)|stitching (generic term)
+suv|1
+(noun)|sport utility|sport utility vehicle|S.U.V.|SUV|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+suva|1
+(noun)|Suva|national capital (generic term)
+suzerain|1
+(noun)|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+suzerainty|2
+(noun)|dominion (generic term)|rule (generic term)
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+svalbard|1
+(noun)|Svalbard|archipelago (generic term)
+svante august arrhenius|1
+(noun)|Arrhenius|Svante August Arrhenius|chemist (generic term)|physicist (generic term)
+svedberg|1
+(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+svelte|3
+(adj)|polished|refined|urbane|sophisticated (similar term)
+(adj)|lissome|lissom|lithe|lithesome|slender|supple|sylphlike|graceful (similar term)
+(adj)|slender|slight|slim|thin (similar term)|lean (similar term)
+svengali|2
+(noun)|Svengali|persuader (generic term)|inducer (generic term)
+(noun)|Svengali|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sverdrup|1
+(noun)|Sverdrup|Otto Neumann Sverdrup|explorer (generic term)|adventurer (generic term)
+sverige|1
+(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country (generic term)|Scandinavian nation (generic term)
+svizzera|1
+(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country (generic term)|European nation (generic term)
+svoboda|1
+(noun)|freedom (generic term)
+svr|1
+(noun)|Foreign Intelligence Service|Sluzhba Vneshney Razvedki|SVR|international intelligence agency (generic term)
+sw|1
+(noun)|southwest|sou'-west|southwestward|SW|compass point (generic term)|point (generic term)
+swab|4
+(noun)|implement (generic term)
+(noun)|swob|mop|cleaning implement (generic term)
+(verb)|swob|wipe up (generic term)|mop up (generic term)|mop (generic term)
+(verb)|dab|swob|put on (generic term)|apply (generic term)
+swabbing|1
+(noun)|mopping|scrub (generic term)|scrubbing (generic term)|scouring (generic term)
+swad|1
+(noun)|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+swaddle|1
+(verb)|swathe|bind (generic term)
+swaddling bands|1
+(noun)|swaddling clothes|garment (generic term)
+swaddling clothes|2
+(noun)|swaddling bands|garment (generic term)
+(noun)|constraint (generic term)
+swadust mushroom|1
+(noun)|Pluteus magnus|agaric (generic term)
+swag|6
+(noun)|valuable (generic term)
+(noun)|loot|booty|pillage|plunder|prize|dirty money|stolen property (generic term)
+(noun)|bundle (generic term)|sheaf (generic term)
+(verb)|sag|droop|flag|sink (generic term)|drop (generic term)|drop down (generic term)
+(verb)|stagger|reel|keel|lurch|careen|walk (generic term)
+(verb)|rock (generic term)|sway (generic term)|shake (generic term)
+swage|2
+(noun)|upset|tool (generic term)
+(verb)|upset|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+swage block|1
+(noun)|block (generic term)
+swagger|6
+(adj)|groovy|fashionable (similar term)|stylish (similar term)
+(noun)|swagman|swaggie|itinerant (generic term)|gypsy (generic term)|gipsy (generic term)
+(noun)|strut|prance|gait (generic term)
+(verb)|tittup|ruffle|prance|strut|sashay|cock|walk (generic term)
+(verb)|browbeat|bully|wheedle (generic term)|cajole (generic term)|palaver (generic term)|blarney (generic term)|coax (generic term)|sweet-talk (generic term)|inveigle (generic term)
+(verb)|bluster|swash|act (generic term)|behave (generic term)|do (generic term)
+swagger stick|1
+(noun)|cane (generic term)
+swaggerer|1
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+swaggering|2
+(adj)|disdainful|haughty|lordly|prideful|sniffy|supercilious|proud (similar term)
+(adj)|swashbuckling|adventurous (similar term)|adventuresome (similar term)
+swaggie|1
+(noun)|swagman|swagger|itinerant (generic term)|gypsy (generic term)|gipsy (generic term)
+swagman|1
+(noun)|swagger|swaggie|itinerant (generic term)|gypsy (generic term)|gipsy (generic term)
+swahili|1
+(noun)|Swahili|Bantu (generic term)|Bantoid language (generic term)
+swain|1
+(noun)|boyfriend|fellow|beau|young man|man (generic term)|adult male (generic term)|lover (generic term)
+swainsona|1
+(noun)|Swainsona|genus Swainsona|rosid dicot genus (generic term)
+swainsona galegifolia|1
+(noun)|smooth darling pea|Swainsona galegifolia|darling pea (generic term)|poison bush (generic term)
+swainsona grandiflora|1
+(noun)|hairy darling pea|Swainsona greyana|Swainsona grandiflora|darling pea (generic term)|poison bush (generic term)
+swainsona greyana|1
+(noun)|hairy darling pea|Swainsona greyana|Swainsona grandiflora|darling pea (generic term)|poison bush (generic term)
+swale|1
+(noun)|trough (generic term)
+swallow|11
+(noun)|sup|taste (generic term)|mouthful (generic term)
+(noun)|drink|deglutition|consumption (generic term)|ingestion (generic term)|intake (generic term)|uptake (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+(verb)|get down|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|demolish (generic term)|destroy (generic term)
+(verb)|immerse|swallow up|bury|eat up|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|take back|unsay|withdraw|renounce (generic term)|repudiate (generic term)
+(verb)|suppress (generic term)|repress (generic term)
+(verb)|accept|live with|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+(verb)|believe (generic term)
+swallow-tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+swallow-tailed coat|1
+(noun)|swallowtail|morning coat|jacket (generic term)
+swallow-tailed hawk|1
+(noun)|swallow-tailed kite|Elanoides forficatus|kite (generic term)
+swallow-tailed kite|1
+(noun)|swallow-tailed hawk|Elanoides forficatus|kite (generic term)
+swallow dive|1
+(noun)|swan dive|dive (generic term)|diving (generic term)
+swallow hole|1
+(noun)|sinkhole|sink|natural depression (generic term)|depression (generic term)
+swallow shrike|1
+(noun)|wood swallow|oscine (generic term)|oscine bird (generic term)
+swallow up|1
+(verb)|immerse|swallow|bury|eat up|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+swallow wort|1
+(noun)|celandine|greater celandine|swallowwort|Chelidonium majus|poppy (generic term)
+swallowed|1
+(adj)|engulfed|enveloped|enclosed (similar term)
+swallowtail|1
+(noun)|swallow-tailed coat|morning coat|jacket (generic term)
+swallowwort|2
+(noun)|blood flower|Asclepias curassavica|milkweed (generic term)|silkweed (generic term)
+(noun)|celandine|greater celandine|swallow wort|Chelidonium majus|poppy (generic term)
+swami|1
+(noun)|Hindu (generic term)|Hindoo (generic term)
+swammerdam|1
+(noun)|Swammerdam|Jan Swammerdam|naturalist (generic term)|natural scientist (generic term)|microscopist (generic term)
+swamp|4
+(noun)|swampland|wetland (generic term)
+(noun)|situation (generic term)
+(verb)|drench|flood (generic term)
+(verb)|deluge|flood|inundate|fill (generic term)|fill up (generic term)|make full (generic term)|flood in (related term)
+swamp ash|1
+(noun)|Fraxinus caroliniana|ash (generic term)|ash tree (generic term)
+swamp azalea|1
+(noun)|swamp honeysuckle|white honeysuckle|Rhododendron viscosum|rhododendron (generic term)
+swamp bay|1
+(noun)|sweet bay|swamp laurel|Magnolia virginiana|magnolia (generic term)
+swamp birch|1
+(noun)|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+swamp blackberry|1
+(noun)|swamp dewberry|Rubus hispidus|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+swamp blueberry|1
+(noun)|high-bush blueberry|tall bilberry|Vaccinium corymbosum|blueberry (generic term)|blueberry bush (generic term)
+swamp buggy|1
+(noun)|marsh buggy|amphibian (generic term)|amphibious vehicle (generic term)
+swamp candleberry|1
+(noun)|bayberry|candleberry|waxberry|Myrica pensylvanica|wax myrtle (generic term)
+swamp candles|1
+(noun)|Lysimachia terrestris|loosestrife (generic term)
+swamp chestnut oak|1
+(noun)|Quercus michauxii|chestnut oak (generic term)
+swamp cottonwood|1
+(noun)|black cottonwood|downy poplar|swamp poplar|Populus heterophylla|cottonwood (generic term)
+swamp cypress|1
+(noun)|bald cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress (generic term)
+swamp dewberry|1
+(noun)|swamp blackberry|Rubus hispidus|dewberry (generic term)|dewberry bush (generic term)|running blackberry (generic term)
+swamp fever|1
+(noun)|leptospirosis|zoonosis (generic term)|zoonotic disease (generic term)
+swamp fly honeysuckle|1
+(noun)|American fly honeysuckle (generic term)|fly honeysuckle (generic term)|Lonicera canadensis (generic term)
+swamp gum|1
+(noun)|Eucalypt ovata|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+swamp hare|1
+(noun)|swamp rabbit|canecutter|Sylvilagus aquaticus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+swamp hickory|1
+(noun)|bitternut|bitternut hickory|bitter hickory|bitter pignut|Carya cordiformis|hickory (generic term)|hickory tree (generic term)
+swamp honeysuckle|1
+(noun)|swamp azalea|white honeysuckle|Rhododendron viscosum|rhododendron (generic term)
+swamp horsetail|1
+(noun)|water horsetail|Equisetum fluviatile|horsetail (generic term)
+swamp laurel|2
+(noun)|bog laurel|bog kalmia|Kalmia polifolia|kalmia (generic term)
+(noun)|sweet bay|swamp bay|Magnolia virginiana|magnolia (generic term)
+swamp lily|1
+(noun)|lizard's-tail|water dragon|Saururus cernuus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+swamp locust|1
+(noun)|water locust|Gleditsia aquatica|locust tree (generic term)|locust (generic term)
+swamp mallow|1
+(noun)|rose mallow|common rose mallow|swamp rose mallow|Hibiscus moscheutos|hibiscus (generic term)
+swamp maple|1
+(noun)|red maple|scarlet maple|Acer rubrum|maple (generic term)
+swamp milkweed|1
+(noun)|Asclepias incarnata|milkweed (generic term)|silkweed (generic term)
+swamp oak|3
+(noun)|Viminaria juncea|Viminaria denudata|shrub (generic term)|bush (generic term)
+(noun)|pin oak|Quercus palustris|oak (generic term)|oak tree (generic term)
+(noun)|swamp white oak|Quercus bicolor|white oak (generic term)
+swamp pine|1
+(noun)|pine (generic term)|pine tree (generic term)|true pine (generic term)
+swamp plant|1
+(noun)|marsh plant|bog plant|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+swamp poplar|1
+(noun)|swamp cottonwood|black cottonwood|downy poplar|Populus heterophylla|cottonwood (generic term)
+swamp rabbit|2
+(noun)|marsh hare|Sylvilagus palustris|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+(noun)|canecutter|swamp hare|Sylvilagus aquaticus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+swamp red oak|1
+(noun)|southern red oak|turkey oak|Quercus falcata|red oak (generic term)
+swamp rose mallow|1
+(noun)|rose mallow|swamp mallow|common rose mallow|Hibiscus moscheutos|hibiscus (generic term)
+swamp sparrow|1
+(noun)|Melospiza georgiana|New World sparrow (generic term)
+swamp sunflower|1
+(noun)|Helianthus angustifolius|sunflower (generic term)|helianthus (generic term)
+swamp white oak|1
+(noun)|swamp oak|Quercus bicolor|white oak (generic term)
+swamp willow|1
+(noun)|black willow|Salix nigra|willow (generic term)|willow tree (generic term)
+swamped|1
+(adj)|sunken (similar term)|submerged (similar term)
+swamphen|1
+(noun)|gallinule|marsh hen|water hen|aquatic bird (generic term)
+swampland|1
+(noun)|swamp|wetland (generic term)
+swampy|1
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloppy|sloughy|soggy|squashy|waterlogged|wet (similar term)
+swampy beggar-ticks|1
+(noun)|Bidens connata|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+swan|4
+(noun)|aquatic bird (generic term)
+(verb)|affirm|verify|assert|avow|aver|swear|declare (generic term)
+(verb)|roll|wander|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|sweep (generic term)|sail (generic term)
+swan's down|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|down (generic term)|down feather (generic term)
+swan-flower|1
+(noun)|swan orchid|swanflower|swanneck|swan-neck|orchid (generic term)|orchidaceous plant (generic term)
+swan-neck|1
+(noun)|swan orchid|swanflower|swan-flower|swanneck|orchid (generic term)|orchidaceous plant (generic term)
+swan dive|1
+(noun)|swallow dive|dive (generic term)|diving (generic term)
+swan orchid|1
+(noun)|swanflower|swan-flower|swanneck|swan-neck|orchid (generic term)|orchidaceous plant (generic term)
+swan river daisy|1
+(noun)|Swan River daisy|Brachycome Iberidifolia|flower (generic term)
+swan river everlasting|1
+(noun)|Swan River everlasting|rhodanthe|Rhodanthe manglesii|Helipterum manglesii|everlasting (generic term)|everlasting flower (generic term)
+swan song|1
+(noun)|last hurrah|performance (generic term)
+swanflower|1
+(noun)|swan orchid|swan-flower|swanneck|swan-neck|orchid (generic term)|orchidaceous plant (generic term)
+swank|3
+(adj)|swanky|fashionable (similar term)|stylish (similar term)
+(noun)|chic|chicness|chichi|modishness|smartness|stylishness|last word|elegance (generic term)
+(verb)|flaunt|flash|show off|ostentate|expose (generic term)|exhibit (generic term)|display (generic term)
+swanky|1
+(adj)|swank|fashionable (similar term)|stylish (similar term)
+swanneck|1
+(noun)|swan orchid|swanflower|swan-flower|swan-neck|orchid (generic term)|orchidaceous plant (generic term)
+swansea|1
+(noun)|Swansea|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+swanson|1
+(noun)|Swanson|Gloria Swanson|Gloria May Josephine Svensson|actress (generic term)
+swap|3
+(noun)|barter|swop|trade|exchange (generic term)|interchange (generic term)
+(verb)|trade|swop|switch|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+swap file|1
+(noun)|swap space|disk space (generic term)|disc space (generic term)
+swap space|1
+(noun)|swap file|disk space (generic term)|disc space (generic term)
+sward|1
+(noun)|turf|sod|greensward|land (generic term)|ground (generic term)|soil (generic term)
+swarm|4
+(noun)|drove|horde|crowd (generic term)
+(noun)|cloud|animal group (generic term)
+(verb)|teem|pullulate|hum (generic term)|buzz (generic term)|seethe (generic term)|teem in (related term)
+(verb)|pour|stream|teem|pullulate|crowd (generic term)|crowd together (generic term)
+swart|1
+(adj)|dark-skinned|dusky|swarthy|brunet (similar term)|brunette (similar term)
+swarthiness|1
+(noun)|darkness|duskiness|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+swarthy|1
+(adj)|dark-skinned|dusky|swart|brunet (similar term)|brunette (similar term)
+swash|5
+(noun)|wave (generic term)|moving ridge (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|spatter|splatter|plash|splash|splosh|scatter (generic term)|sprinkle (generic term)|dot (generic term)|dust (generic term)|disperse (generic term)
+(verb)|boast|tout|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+(verb)|swagger|bluster|act (generic term)|behave (generic term)|do (generic term)
+swashbuckler|1
+(noun)|daredevil|madcap|hothead|lunatic|harum-scarum|adventurer (generic term)|venturer (generic term)
+swashbuckling|2
+(adj)|swaggering|adventurous (similar term)|adventuresome (similar term)
+(noun)|demeanor (generic term)|demeanour (generic term)|behavior (generic term)|behaviour (generic term)|conduct (generic term)|deportment (generic term)
+swastika|1
+(noun)|Hakenkreuz|emblem (generic term)|allegory (generic term)|tetraskelion (generic term)|tetraskele (generic term)
+swat|2
+(noun)|blow (generic term)
+(verb)|hit (generic term)
+swat squad|1
+(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad (generic term)
+swat team|1
+(noun)|SWAT team|SWAT squad|Special Weapons and Tactics team|Special Weapons and Tactics squad|police squad (generic term)
+swatch|1
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+swath|2
+(noun)|space (generic term)
+(noun)|belt|path (generic term)|track (generic term)|course (generic term)
+swathe|2
+(noun)|wrapping|bandage (generic term)|patch (generic term)
+(verb)|swaddle|bind (generic term)
+swathing|1
+(noun)|covering (generic term)
+swatter|2
+(noun)|flyswatter|flyswat|implement (generic term)
+(verb)|splash (generic term)
+sway|6
+(noun)|power (generic term)|powerfulness (generic term)
+(noun)|rock|careen|tilt|lurch (generic term)|pitch (generic term)|pitching (generic term)
+(verb)|rock|shake|move back and forth (generic term)
+(verb)|swing|move back and forth (generic term)
+(verb)|carry|persuade|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|rock|move (generic term)|displace (generic term)
+swayback|1
+(adj)|dipped|lordotic|swaybacked|unfit (similar term)
+swaybacked|1
+(adj)|dipped|lordotic|swayback|unfit (similar term)
+swayer|1
+(noun)|ruler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+swazi|3
+(adj)|Swazi|African country|African nation (related term)
+(noun)|Swazi|African (generic term)
+(noun)|Swazi|Nguni (generic term)
+swaziland|1
+(noun)|Swaziland|Kingdom of Swaziland|African country (generic term)|African nation (generic term)
+swaziland monetary unit|1
+(noun)|Swaziland monetary unit|monetary unit (generic term)
+swbs|1
+(noun)|southwest by south|SWbS|compass point (generic term)|point (generic term)
+swbw|1
+(noun)|southwest by west|SWbW|compass point (generic term)|point (generic term)
+swear|5
+(verb)|curse|cuss|blaspheme|imprecate|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|affirm|verify|assert|avow|aver|swan|declare (generic term)
+(verb)|vow (generic term)|swear off (related term)
+(verb)|depose|depone|declare (generic term)
+(verb)|trust|rely|bank|believe (generic term)|mistrust (antonym)|distrust (antonym)
+swear in|1
+(verb)|inaugurate (generic term)|kick off (generic term)
+swear off|1
+(verb)|promise (generic term)|assure (generic term)
+swear out|1
+(verb)|serve|process|deliver (generic term)
+swearer|2
+(noun)|blasphemer (generic term)
+(noun)|communicator (generic term)
+swearing|2
+(noun)|curse|curse word|expletive|oath|swearword|cuss|profanity (generic term)
+(noun)|oath|commitment (generic term)|dedication (generic term)
+swearword|1
+(noun)|curse|curse word|expletive|oath|swearing|cuss|profanity (generic term)
+sweat|5
+(noun)|perspiration|sudor|secretion (generic term)
+(noun)|fret|stew|lather|swither|agitation (generic term)
+(noun)|condensation (generic term)|condensate (generic term)
+(noun)|effort|elbow grease|exertion|travail|labor (generic term)|labour (generic term)|toil (generic term)
+(verb)|sudate|perspire|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|sweat off (related term)
+sweat bag|1
+(noun)|bag (generic term)
+sweat duct|1
+(noun)|ductule (generic term)|ductulus (generic term)
+sweat equity|1
+(noun)|equity (generic term)
+sweat gland|1
+(noun)|sudoriferous gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+sweat off|1
+(verb)|reduce (generic term)|melt off (generic term)|lose weight (generic term)|slim (generic term)|slenderize (generic term)|thin (generic term)|slim down (generic term)
+sweat pants|1
+(noun)|sweatpants|trouser (generic term)|pant (generic term)
+sweat room|1
+(noun)|sauna|steam bath (generic term)|steam room (generic term)|vapor bath (generic term)|vapour bath (generic term)
+sweat sock|1
+(noun)|athletic sock|varsity sock|sock (generic term)
+sweat suit|1
+(noun)|sweatsuit|sweats|workout suit|garment (generic term)
+sweatband|1
+(noun)|band (generic term)
+sweatbox|2
+(noun)|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+(noun)|device (generic term)
+sweater|2
+(noun)|garment (generic term)
+(noun)|perspirer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+sweater girl|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+sweating|2
+(adj)|perspiring|sweaty|wet (similar term)
+(noun)|perspiration|diaphoresis|sudation|hidrosis|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+sweating sickness|2
+(noun)|animal disease (generic term)
+(noun)|miliary fever|infectious disease (generic term)
+sweatpants|1
+(noun)|sweat pants|trouser (generic term)|pant (generic term)
+sweats|1
+(noun)|sweat suit|sweatsuit|workout suit|garment (generic term)
+sweatshirt|1
+(noun)|pullover (generic term)|slipover (generic term)
+sweatshop|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+sweatsuit|1
+(noun)|sweat suit|sweats|workout suit|garment (generic term)
+sweaty|1
+(adj)|perspiring|sweating|wet (similar term)
+swede|3
+(noun)|Swede|European (generic term)
+(noun)|rutabaga|turnip cabbage|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant (generic term)
+(noun)|rutabaga|swedish turnip|yellow turnip|turnip (generic term)
+sweden|1
+(noun)|Sweden|Kingdom of Sweden|Sverige|Scandinavian country (generic term)|Scandinavian nation (generic term)
+swedenborg|1
+(noun)|Swedenborg|Svedberg|Emanuel Swedenborg|Emanuel Svedberg|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+swedish|2
+(adj)|Swedish|Scandinavian country|Scandinavian nation (related term)
+(noun)|Swedish|Scandinavian (generic term)|Scandinavian language (generic term)|Nordic (generic term)|Norse (generic term)|North Germanic (generic term)|North Germanic language (generic term)
+swedish iron|1
+(noun)|Swedish iron|wrought iron (generic term)
+swedish krona|1
+(noun)|Swedish krona|krona|Swedish monetary unit (generic term)
+swedish massage|1
+(noun)|Swedish massage|massage (generic term)
+swedish meatball|1
+(noun)|Swedish meatball|meatball (generic term)
+swedish mile|1
+(noun)|mile|Swedish mile|linear unit (generic term)
+swedish monetary unit|1
+(noun)|Swedish monetary unit|monetary unit (generic term)
+swedish nightingale|1
+(noun)|Lind|Jenny Lind|Swedish Nightingale|soprano (generic term)
+swedish rye|1
+(noun)|Swedish rye bread|Swedish rye|rye bread (generic term)
+swedish rye bread|1
+(noun)|Swedish rye bread|Swedish rye|rye bread (generic term)
+swedish turnip|2
+(noun)|rutabaga|turnip cabbage|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant (generic term)
+(noun)|rutabaga|swede|yellow turnip|turnip (generic term)
+sweeney todd|1
+(noun)|Todd|Sweeney Todd|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+sweep|15
+(noun)|expanse|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|chimneysweeper|chimneysweep|cleaner (generic term)
+(noun)|slam|victory (generic term)|triumph (generic term)
+(noun)|sweep oar|oar (generic term)
+(noun)|end run|run (generic term)|running (generic term)|running play (generic term)|running game (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|brush|move (generic term)
+(verb)|sail|move (generic term)|sail through (related term)|sweep through (related term)
+(verb)|broom|wipe (generic term)|pass over (generic term)
+(verb)|embroil|tangle|sweep up|drag|drag in|involve (generic term)
+(verb)|cross|traverse|span|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|clean (generic term)|make clean (generic term)
+(verb)|win (generic term)
+(verb)|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|swing|swing out|wield (generic term)|handle (generic term)
+sweep-second|1
+(noun)|sweep hand|second hand (generic term)
+sweep away|2
+(verb)|wipe out|destroy (generic term)|destruct (generic term)
+(verb)|sweep off|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+sweep hand|1
+(noun)|sweep-second|second hand (generic term)
+sweep oar|1
+(noun)|sweep|oar (generic term)
+sweep off|1
+(verb)|sweep away|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+sweep over|1
+(verb)|overwhelm|overpower|whelm|overcome|overtake|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+sweep through|1
+(verb)|breeze through|ace|pass with flying colors|sail through|nail|pass (generic term)|make it (generic term)
+sweep under the rug|1
+(verb)|hide (generic term)|conceal (generic term)
+sweep up|2
+(verb)|embroil|tangle|sweep|drag|drag in|involve (generic term)
+(verb)|espouse|embrace|adopt|accept (generic term)
+sweeper|3
+(noun)|employee (generic term)
+(noun)|carpet sweeper|cleaning implement (generic term)
+(noun)|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+sweeping|3
+(adj)|wide (similar term)|broad (similar term)
+(adj)|wholesale|indiscriminate (similar term)
+(noun)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+sweepstakes|1
+(noun)|lottery (generic term)|drawing (generic term)
+sweet|16
+(adj)|cloying (similar term)|saccharine (similar term)|syrupy (similar term)|treacly (similar term)|sweetish (similar term)|sugary (related term)|sweet (related term)|tasty (related term)|sour (antonym)
+(adj)|angelic|angelical|cherubic|seraphic|lovable (similar term)|loveable (similar term)
+(adj)|dulcet|honeyed|mellifluous|mellisonant|melodious (similar term)|melodic (similar term)|musical (similar term)
+(adj)|pleasing (similar term)
+(adj)|gratifying|pleasing (similar term)
+(adj)|odoriferous|odorous|perfumed|scented|sweet-scented|sweet-smelling|fragrant (similar term)
+(adj)|sugary (related term)|sweet (related term)|dry (antonym)
+(adj)|fresh|salty (antonym)
+(adj)|fresh|unfermented|unsoured (similar term)
+(adj)|sugared|sweetened|sweet-flavored|sugary (similar term)
+(noun)|Sweet|Henry Sweet|phonetician (generic term)
+(noun)|dessert|afters|course (generic term)
+(noun)|confection|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+(noun)|sweetness|sugariness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sweetness|taste property (generic term)
+(adv)|sweetly
+sweet-birch oil|1
+(noun)|methyl salicylate|birch oil|salicylate (generic term)
+sweet-breathed|1
+(adj)|breathing (similar term)|eupneic (similar term)|eupnoeic (similar term)
+sweet-faced|1
+(adj)|faced (similar term)
+sweet-flavored|1
+(adj)|sugared|sweetened|sweet|sugary (similar term)
+sweet-potato ring rot|1
+(noun)|plant disease (generic term)
+sweet-potato whitefly|1
+(noun)|whitefly (generic term)
+sweet-scented|1
+(adj)|odoriferous|odorous|perfumed|scented|sweet|sweet-smelling|fragrant (similar term)
+sweet-scented geranium|1
+(noun)|rose geranium|Pelargonium graveolens|geranium (generic term)
+sweet-smelling|1
+(adj)|odoriferous|odorous|perfumed|scented|sweet|sweet-scented|fragrant (similar term)
+sweet-talk|1
+(verb)|wheedle|cajole|palaver|blarney|coax|inveigle|persuade (generic term)
+sweet acacia|1
+(noun)|huisache|cassie|mimosa bush|sweet wattle|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+sweet alison|1
+(noun)|sweet alyssum|Lobularia maritima|flower (generic term)
+sweet almond|1
+(noun)|almond|Prunus dulcis|Prunus amygdalus|Amygdalus communis|almond tree (generic term)
+sweet almond oil|1
+(noun)|almond oil|expressed almond oil|oil (generic term)
+sweet alyssum|1
+(noun)|sweet alison|Lobularia maritima|flower (generic term)
+sweet balm|1
+(noun)|lemon balm|garden balm|bee balm|beebalm|Melissa officinalis|herb (generic term)|herbaceous plant (generic term)
+sweet basil|2
+(noun)|common basil|Ocimum basilicum|basil (generic term)
+(noun)|basil|herb (generic term)
+sweet bay|1
+(noun)|swamp bay|swamp laurel|Magnolia virginiana|magnolia (generic term)
+sweet bells|1
+(noun)|Leucothoe racemosa|shrub (generic term)|bush (generic term)
+sweet birch|1
+(noun)|cherry birch|black birch|Betula lenta|birch (generic term)|birch tree (generic term)
+sweet buckeye|1
+(noun)|horse chestnut (generic term)|buckeye (generic term)|Aesculus hippocastanum (generic term)
+sweet calabash|2
+(noun)|Passiflora maliformis|passionflower (generic term)|passionflower vine (generic term)
+(noun)|passion fruit (generic term)
+sweet calamus|1
+(noun)|sweet flag|calamus|myrtle flag|flagroot|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sweet cassava|1
+(noun)|Manihot dulcis|cassava (generic term)|casava (generic term)
+sweet cherry|2
+(noun)|Prunus avium|cherry (generic term)|cherry tree (generic term)
+(noun)|black cherry|cherry (generic term)
+sweet chestnut|1
+(noun)|European chestnut|Spanish chestnut|Castanea sativa|chestnut (generic term)|chestnut tree (generic term)
+sweet cicely|3
+(noun)|Myrrhis odorata|herb (generic term)|herbaceous plant (generic term)
+(noun)|myrrh|gum myrrh|gum resin (generic term)
+(noun)|herb (generic term)
+sweet cider|1
+(noun)|cider (generic term)|cyder (generic term)
+sweet clover|1
+(noun)|melilotus|melilot|woody plant (generic term)|ligneous plant (generic term)
+sweet coltsfoot|2
+(noun)|Petasites sagitattus|herb (generic term)|herbaceous plant (generic term)
+(noun)|winter heliotrope|Petasites fragrans|herb (generic term)|herbaceous plant (generic term)
+sweet corn|2
+(noun)|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+(noun)|green corn|corn (generic term)|edible corn (generic term)
+sweet corn plant|1
+(noun)|sweet corn|sugar corn|green corn|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+sweet cup|1
+(noun)|bell apple|water lemon|yellow granadilla|passion fruit (generic term)
+sweet elder|1
+(noun)|American elder|black elderberry|Sambucus canadensis|elder (generic term)|elderberry bush (generic term)
+sweet false chamomile|1
+(noun)|wild chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb (generic term)|herbaceous plant (generic term)
+sweet fanny adams|1
+(noun)|bugger all|fuck all|Fanny Adams|sweet Fanny Adams|nothing (generic term)|nil (generic term)|nix (generic term)|nada (generic term)|null (generic term)|aught (generic term)|cipher (generic term)|cypher (generic term)|goose egg (generic term)|naught (generic term)|zero (generic term)|zilch (generic term)|zip (generic term)|zippo (generic term)
+sweet fern|2
+(noun)|common polypody|adder's fern|wall fern|golden maidenhair|golden polypody|Polypodium vulgare|polypody (generic term)
+(noun)|Comptonia peregrina|Comptonia asplenifolia|shrub (generic term)|bush (generic term)
+sweet flag|1
+(noun)|calamus|sweet calamus|myrtle flag|flagroot|Acorus calamus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+sweet four o'clock|1
+(noun)|maravilla|Mirabilis longiflora|four o'clock (generic term)
+sweet gale|1
+(noun)|Scotch gale|Myrica gale|shrub (generic term)|bush (generic term)
+sweet goldenrod|1
+(noun)|Blue Mountain tea|Solidago odora|goldenrod (generic term)
+sweet granadilla|1
+(noun)|granadilla|Passiflora ligularis|passionflower (generic term)|passionflower vine (generic term)
+sweet grass|1
+(noun)|manna grass|meadowgrass (generic term)|meadow grass (generic term)
+sweet gum|3
+(noun)|satin walnut|hazelwood|red gum|gumwood (generic term)|gum (generic term)
+(noun)|liquidambar|gum (generic term)
+(noun)|sweet gum tree|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+sweet gum tree|1
+(noun)|sweet gum|bilsted|red gum|American sweet gum|Liquidambar styraciflua|liquidambar (generic term)
+sweet lemon|1
+(noun)|sweet lime|Citrus limetta|lemon (generic term)|lemon tree (generic term)|Citrus limon (generic term)|genus Citrus (generic term)
+sweet lime|1
+(noun)|sweet lemon|Citrus limetta|lemon (generic term)|lemon tree (generic term)|Citrus limon (generic term)|genus Citrus (generic term)
+sweet marjoram|1
+(noun)|knotted marjoram|Origanum majorana|Majorana hortensis|origanum (generic term)
+sweet melon|2
+(noun)|muskmelon|sweet melon vine|Cucumis melo|melon (generic term)|melon vine (generic term)
+(noun)|muskmelon|melon (generic term)
+sweet melon vine|1
+(noun)|sweet melon|muskmelon|Cucumis melo|melon (generic term)|melon vine (generic term)
+sweet nothings|1
+(noun)|honeyed words|nothings (generic term)
+sweet oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+sweet orange|2
+(noun)|orange (generic term)
+(noun)|sweet orange tree|Citrus sinensis|orange (generic term)|orange tree (generic term)
+sweet orange tree|1
+(noun)|sweet orange|Citrus sinensis|orange (generic term)|orange tree (generic term)
+sweet pea|1
+(noun)|sweetpea|Lathyrus odoratus|vine (generic term)
+sweet pepper|2
+(noun)|bell pepper|pimento|pimiento|paprika|sweet pepper plant|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+(noun)|pepper (generic term)
+sweet pepper plant|1
+(noun)|sweet pepper|bell pepper|pimento|pimiento|paprika|Capsicum annuum grossum|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+sweet pepperbush|1
+(noun)|pepper bush|summer sweet|white alder|Clethra alnifolia|shrub (generic term)|bush (generic term)
+sweet pickle|1
+(noun)|pickle (generic term)
+sweet potato|3
+(noun)|sweet potato vine|Ipomoea batatas|morning glory (generic term)
+(noun)|root vegetable (generic term)
+(noun)|ocarina|wind instrument (generic term)|wind (generic term)
+sweet potato vine|1
+(noun)|sweet potato|Ipomoea batatas|morning glory (generic term)
+sweet reseda|1
+(noun)|mignonette|Reseda odorata|reseda (generic term)
+sweet rocket|1
+(noun)|damask violet|Dame's violet|Hesperis matronalis|flower (generic term)
+sweet roll|1
+(noun)|coffee roll|bun (generic term)|roll (generic term)
+sweet sand verbena|2
+(noun)|Abronia fragrans|sand verbena (generic term)
+(noun)|snowball|Abronia elliptica|sand verbena (generic term)
+sweet scabious|1
+(noun)|pincushion flower|mournful widow|Scabiosa atropurpurea|scabious (generic term)|scabiosa (generic term)
+sweet shrub|1
+(noun)|Carolina allspice|strawberry shrub|strawberry bush|Calycanthus floridus|allspice (generic term)
+sweet sorghum|1
+(noun)|sorgo|sorgho|sugar sorghum|sorghum (generic term)
+sweet sultan|3
+(noun)|blessed thistle|Cnicus benedictus|thistle (generic term)
+(noun)|Centaurea imperialis|flower (generic term)
+(noun)|Amberboa moschata|Centaurea moschata|flower (generic term)
+sweet talk|1
+(noun)|blarney|coaxing|soft soap|flattery (generic term)
+sweet talker|1
+(noun)|smoothie|smoothy|charmer|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+sweet tooth|1
+(noun)|appetite (generic term)|appetency (generic term)|appetence (generic term)
+sweet unicorn plant|1
+(noun)|Proboscidea fragrans|Martynia fragrans|herb (generic term)|herbaceous plant (generic term)
+sweet vermouth|1
+(noun)|Italian vermouth|vermouth (generic term)
+sweet vetch|1
+(noun)|Hedysarum boreale|subshrub (generic term)|suffrutex (generic term)
+sweet violet|1
+(noun)|garden violet|English violet|Viola odorata|violet (generic term)
+sweet wattle|1
+(noun)|huisache|cassie|mimosa bush|sweet acacia|scented wattle|flame tree|Acacia farnesiana|acacia (generic term)
+sweet white violet|1
+(noun)|white violet|woodland white violet|Viola blanda|violet (generic term)
+sweet william|1
+(noun)|sweet William|Dianthus barbatus|pink (generic term)|garden pink (generic term)
+sweet woodruff|2
+(noun)|waldmeister|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw (generic term)
+(noun)|waldmeister|herb (generic term)
+sweet wormwood|1
+(noun)|Artemisia annua|wormwood (generic term)
+sweetbread|1
+(noun)|sweetbreads|variety meat (generic term)|organs (generic term)
+sweetbreads|1
+(noun)|sweetbread|variety meat (generic term)|organs (generic term)
+sweetbriar|1
+(noun)|sweetbrier|brier|briar|eglantine|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+sweetbrier|1
+(noun)|sweetbriar|brier|briar|eglantine|Rosa eglanteria|rose (generic term)|rosebush (generic term)
+sweeten|2
+(verb)|dulcify|edulcorate|dulcorate|change taste (generic term)|sour (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+sweetened|1
+(adj)|sugared|sweet|sweet-flavored|sugary (similar term)
+sweetener|2
+(noun)|sweetening|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|bait|come-on|hook|lure|temptation (generic term)|enticement (generic term)
+sweetening|3
+(noun)|sweetener|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|enhancement|improvement (generic term)
+(noun)|seasoning (generic term)
+sweetheart|4
+(adj)|privileged (similar term)
+(noun)|sweetie|steady|truelove|lover (generic term)
+(noun)|good person (generic term)
+(noun)|smasher|stunner|knockout|beauty|ravisher|peach|lulu|looker|mantrap|dish|woman (generic term)|adult female (generic term)
+sweetie|1
+(noun)|sweetheart|steady|truelove|lover (generic term)
+sweetish|1
+(adj)|sweet (similar term)
+sweetleaf|1
+(noun)|Symplocus tinctoria|angiospermous yellowwood (generic term)
+sweetleaf family|1
+(noun)|Symplocaceae|family Symplocaceae|dicot family (generic term)|magnoliopsid family (generic term)
+sweetly|1
+(adv)|sweet
+sweetmeat|1
+(noun)|sweet (generic term)|confection (generic term)
+sweetness|4
+(noun)|sweet|sugariness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|sweet|taste property (generic term)
+(noun)|bouquet|fragrance|fragrancy|redolence|olfactory property (generic term)|smell (generic term)|aroma (generic term)|odor (generic term)|odour (generic term)|scent (generic term)
+(noun)|pleasantness|quality (generic term)|unpleasantness (antonym)
+sweetness and light|1
+(noun)|affability (generic term)|affableness (generic term)|amiability (generic term)|amiableness (generic term)|bonhomie (generic term)|geniality (generic term)
+sweetpea|1
+(noun)|sweet pea|Lathyrus odoratus|vine (generic term)
+sweetsop|2
+(noun)|sweetsop tree|Annona squamosa|custard apple (generic term)|custard apple tree (generic term)
+(noun)|anon|sugar apple|custard apple (generic term)
+sweetsop tree|1
+(noun)|sweetsop|Annona squamosa|custard apple (generic term)|custard apple tree (generic term)
+sweetwood bark|1
+(noun)|cascarilla bark|eleuthra bark|bark (generic term)
+swell|11
+(adj)|bang-up|bully|corking|cracking|dandy|great|groovy|keen|neat|nifty|not bad|peachy|slap-up|smashing|good (similar term)
+(noun)|crestless wave|wave (generic term)|moving ridge (generic term)
+(noun)|natural elevation (generic term)|elevation (generic term)
+(noun)|crescendo (generic term)
+(noun)|dandy|dude|fop|gallant|sheik|beau|fashion plate|clotheshorse|man (generic term)|adult male (generic term)
+(verb)|increase (generic term)
+(verb)|puff up|act (generic term)|behave (generic term)|do (generic term)
+(verb)|swell up|intumesce|tumefy|tumesce|expand (generic term)
+(verb)|well up|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+(verb)|well|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+(verb)|grow (generic term)
+swell up|1
+(verb)|swell|intumesce|tumefy|tumesce|expand (generic term)
+swelled|1
+(adj)|big|vainglorious|proud (similar term)
+swelled head|1
+(noun)|egotism|self-importance|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+swellhead|1
+(noun)|egotist|egoist|unpleasant person (generic term)|disagreeable person (generic term)
+swelling|2
+(noun)|puffiness|lump|enlargement (generic term)|symptom (generic term)
+(noun)|intumescence|intumescency|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+swelter|2
+(verb)|suffer (generic term)
+(verb)|sweat (generic term)|sudate (generic term)|perspire (generic term)
+sweltering|1
+(adj)|sweltry|hot (similar term)
+sweltry|1
+(adj)|sweltering|hot (similar term)
+swept|1
+(adj)|sweptback (similar term)|sweptwing (similar term)|unswept (antonym)
+sweptback|2
+(adj)|swept (similar term)
+(adj)|backswept|backward (similar term)
+sweptwing|1
+(adj)|swept (similar term)
+swertia|1
+(noun)|Swertia|genus Swertia|dicot genus (generic term)|magnoliopsid genus (generic term)
+swertia perennia|1
+(noun)|marsh felwort|Swertia perennia|herb (generic term)|herbaceous plant (generic term)
+swertia speciosa|1
+(noun)|green gentian|Frasera speciosa|Swertia speciosa|herb (generic term)|herbaceous plant (generic term)
+swerve|3
+(noun)|swerving|veering|turn (generic term)|turning (generic term)
+(noun)|yaw|turning (generic term)|turn (generic term)
+(verb)|sheer|curve|trend|veer|slue|slew|cut|turn (generic term)
+swerving|1
+(noun)|swerve|veering|turn (generic term)|turning (generic term)
+swietinia|1
+(noun)|Swietinia|genus Swietinia|rosid dicot genus (generic term)
+swietinia macrophylla|1
+(noun)|Honduras mahogany|Swietinia macrophylla|mahogany (generic term)|mahogany tree (generic term)
+swietinia mahogani|1
+(noun)|true mahogany|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany (generic term)|mahogany tree (generic term)
+swift|5
+(adj)|fleet|fast (similar term)
+(noun)|Swift|Gustavus Franklin Swift|meat packer (generic term)|packer (generic term)
+(noun)|Swift|Jonathan Swift|Dean Swift|satirist (generic term)|ironist (generic term)|ridiculer (generic term)
+(noun)|apodiform bird (generic term)
+(noun)|western fence lizard|blue-belly|Sceloporus occidentalis|fence lizard (generic term)
+swift-footed|1
+(adj)|fast-footed|footed (similar term)
+swiftlet|1
+(noun)|Collocalia inexpectata|swift (generic term)
+swiftly|1
+(adv)|fleetly
+swiftness|1
+(noun)|speed|fastness|pace (generic term)|rate (generic term)
+swig|3
+(noun)|gulp|draft|draught|swallow (generic term)|drink (generic term)|deglutition (generic term)
+(verb)|slug|slog|hit (generic term)
+(verb)|gulp|quaff|drink (generic term)|imbibe (generic term)
+swill|3
+(noun)|slop|slops|pigswill|pigwash|feed (generic term)|provender (generic term)
+(verb)|slop|feed (generic term)|give (generic term)
+(verb)|swill down|drink (generic term)|imbibe (generic term)
+swill down|1
+(verb)|swill|drink (generic term)|imbibe (generic term)
+swilling|1
+(noun)|gulping|guzzling|drinking (generic term)|imbibing (generic term)|imbibition (generic term)
+swim|3
+(noun)|swimming|water sport (generic term)|aquatics (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|float|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|sink (antonym)
+swim bladder|1
+(noun)|air bladder|sac (generic term)
+swim meet|1
+(noun)|swimming meet|meet (generic term)|sports meeting (generic term)
+swimmer|2
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|natator|bather|traveler (generic term)|traveller (generic term)
+swimmer's itch|1
+(noun)|schistosome dermatitis|dermatitis (generic term)
+swimmeret|1
+(noun)|pleopod|extremity (generic term)|appendage (generic term)|member (generic term)
+swimming|3
+(adj)|liquid|tearful (similar term)
+(adj)|naiant|horizontal (similar term)
+(noun)|swim|water sport (generic term)|aquatics (generic term)
+swimming bath|1
+(noun)|swimming pool|natatorium|pool (generic term)|athletic facility (generic term)
+swimming cap|1
+(noun)|bathing cap|cap (generic term)
+swimming costume|1
+(noun)|swimsuit|swimwear|bathing suit|bathing costume|garment (generic term)
+swimming crab|1
+(noun)|crab (generic term)
+swimming event|1
+(noun)|match (generic term)
+swimming hole|1
+(noun)|pond (generic term)|pool (generic term)
+swimming kick|1
+(noun)|kick (generic term)|kicking (generic term)
+swimming meet|1
+(noun)|swim meet|meet (generic term)|sports meeting (generic term)
+swimming pool|1
+(noun)|swimming bath|natatorium|pool (generic term)|athletic facility (generic term)
+swimming stroke|1
+(noun)|stroke (generic term)
+swimming trunks|1
+(noun)|bathing trunks|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+swimmingly|1
+(adv)|smoothly
+swimsuit|1
+(noun)|swimwear|bathing suit|swimming costume|bathing costume|garment (generic term)
+swimwear|1
+(noun)|swimsuit|bathing suit|swimming costume|bathing costume|garment (generic term)
+swinburne|1
+(noun)|Swinburne|Algernon Charles Swinburne|poet (generic term)
+swindle|2
+(noun)|cheat|rig|fraud (generic term)
+(verb)|victimize|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+swindler|1
+(noun)|defrauder|chiseller|chiseler|gouger|scammer|grifter|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+swine|1
+(noun)|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+swine flu|1
+(noun)|swine influenza|influenza (generic term)|flu (generic term)|grippe (generic term)
+swine influenza|1
+(noun)|swine flu|influenza (generic term)|flu (generic term)|grippe (generic term)
+swineherd|1
+(noun)|pigman|herder (generic term)|herdsman (generic term)|drover (generic term)
+swing|22
+(noun)|action (generic term)|activity (generic term)|activeness (generic term)
+(noun)|mechanical device (generic term)|plaything (generic term)|toy (generic term)
+(noun)|blow (generic term)
+(noun)|swinging|vacillation|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|swing music|jive|jazz (generic term)
+(noun)|lilt|rhythmicity (generic term)
+(noun)|golf stroke|golf shot|stroke (generic term)|shot (generic term)
+(noun)|baseball swing|cut|stroke (generic term)|shot (generic term)
+(noun)|country-dance (generic term)|country dancing (generic term)|contredanse (generic term)|contra danse (generic term)|contradance (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|sway|move back and forth (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|swing over|influence (generic term)|act upon (generic term)|work (generic term)
+(verb)|sweep|swing out|wield (generic term)|handle (generic term)
+(verb)|dangle|drop|hang (generic term)
+(verb)|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|change (generic term)
+(verb)|live (generic term)
+(verb)|be (generic term)
+(verb)|get around|socialize (generic term)|socialise (generic term)
+(verb)|play (generic term)
+(verb)|fornicate (generic term)
+swing about|1
+(verb)|swing around|turn around|turn (generic term)
+swing around|1
+(verb)|swing about|turn around|turn (generic term)
+swing door|1
+(noun)|swinging door|door (generic term)
+swing music|1
+(noun)|swing|jive|jazz (generic term)
+swing out|1
+(verb)|swing|sweep|wield (generic term)|handle (generic term)
+swing over|1
+(verb)|swing|influence (generic term)|act upon (generic term)|work (generic term)
+swing shift|1
+(noun)|evening shift|shift (generic term)|work shift (generic term)|duty period (generic term)
+swing voter|1
+(noun)|floating voter|voter (generic term)|elector (generic term)
+swinge|1
+(verb)|singe|char (generic term)|blacken (generic term)|sear (generic term)|scorch (generic term)
+swingeing|1
+(adj)|bad (similar term)
+swinger|2
+(noun)|athlete (generic term)|jock (generic term)
+(noun)|tramp|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+swinging|2
+(adj)|lilting|swingy|tripping|rhythmical (similar term)|rhythmic (similar term)
+(noun)|swing|vacillation|motion (generic term)|movement (generic term)|move (generic term)
+swinging chad|1
+(noun)|chad (generic term)
+swinging door|1
+(noun)|swing door|door (generic term)
+swinging post|1
+(noun)|hinging post|gatepost (generic term)
+swingletree|1
+(noun)|whiffletree|whippletree|crossbar (generic term)
+swingy|1
+(adj)|lilting|swinging|tripping|rhythmical (similar term)|rhythmic (similar term)
+swinish|2
+(adj)|boorish|loutish|neanderthal|neandertal|oafish|unrefined (similar term)
+(adj)|hoggish|piggish|piggy|porcine|gluttonous (similar term)
+swipe|3
+(noun)|stroke (generic term)|shot (generic term)
+(verb)|hit (generic term)|sideswipe (related term)
+(verb)|pilfer|cabbage|purloin|pinch|abstract|snarf|hook|sneak|filch|nobble|lift|steal (generic term)
+swirl|3
+(noun)|whirl|vortex|convolution|round shape (generic term)
+(verb)|twirl|twiddle|whirl|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|eddy|purl|whirlpool|whirl|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+swirling|1
+(adj)|whirling|moving (similar term)
+swish|3
+(adj)|classy|posh|stylish (similar term)|fashionable (similar term)
+(noun)|sound (generic term)
+(verb)|lap|swosh|swoosh|sound (generic term)|go (generic term)
+swishing|1
+(adj)|swishy|noisy (similar term)
+swishy|1
+(adj)|swishing|noisy (similar term)
+swiss|2
+(adj)|Swiss|European country|European nation (related term)
+(noun)|Swiss|Swiss people|nation (generic term)|land (generic term)|country (generic term)
+swiss canton|1
+(noun)|Swiss canton|canton (generic term)
+swiss chard|2
+(noun)|chard|Swiss chard|spinach beet|leaf beet|chard plant|Beta vulgaris cicla|beet (generic term)|common beet (generic term)|Beta vulgaris (generic term)
+(noun)|chard|Swiss chard|spinach beet|leaf beet|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+swiss cheese|1
+(noun)|Swiss cheese|cheese (generic term)
+swiss confederation|1
+(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country (generic term)|European nation (generic term)
+swiss franc|1
+(noun)|Swiss franc|franc (generic term)
+swiss mountain pine|1
+(noun)|Swiss mountain pine|mountain pine|dwarf mountain pine|mugho pine|mugo pine|Pinus mugo|pine (generic term)|pine tree (generic term)|true pine (generic term)
+swiss people|1
+(noun)|Swiss|Swiss people|nation (generic term)|land (generic term)|country (generic term)
+swiss pine|1
+(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+swiss roll|1
+(noun)|jellyroll|Swiss roll|sponge cake (generic term)
+swiss steak|1
+(noun)|Swiss steak|dish (generic term)
+swiss stone pine|1
+(noun)|Swiss pine|Swiss stone pine|arolla pine|cembra nut tree|Pinus cembra|pine (generic term)|pine tree (generic term)|true pine (generic term)
+switch|14
+(noun)|electric switch|electrical switch|control (generic term)|controller (generic term)
+(noun)|substitution|permutation|transposition|replacement|variation (generic term)|fluctuation (generic term)
+(noun)|hairpiece (generic term)|false hair (generic term)|postiche (generic term)
+(noun)|railroad track (generic term)|railroad (generic term)|railway (generic term)
+(noun)|instrument of punishment (generic term)
+(noun)|basketball play (generic term)
+(noun)|switching|shift|change (generic term)
+(verb)|switch over|exchange|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|trade|swap|swop|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|shift|change
+(verb)|change over|shift|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|throw|flip|engage (generic term)|mesh (generic term)|lock (generic term)|operate (generic term)
+(verb)|flog (generic term)|welt (generic term)|whip (generic term)|lather (generic term)|lash (generic term)|slash (generic term)|strap (generic term)|trounce (generic term)
+(verb)|interchange|tack|alternate|flip|flip-flop|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+switch-hit|1
+(verb)|bat (generic term)
+switch-hitter|2
+(noun)|batter (generic term)|hitter (generic term)|slugger (generic term)|batsman (generic term)
+(noun)|bisexual (generic term)|bisexual person (generic term)
+switch-ivy|1
+(noun)|dog laurel|dog hobble|Leucothoe fontanesiana|Leucothoe editorum|shrub (generic term)|bush (generic term)
+switch cane|1
+(noun)|small cane|Arundinaria tecta|bamboo (generic term)
+switch engine|1
+(noun)|donkey engine|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+switch grass|1
+(noun)|Panicum virgatum|panic grass (generic term)
+switch off|1
+(verb)|cut|turn off|turn out|throw (generic term)|flip (generic term)|switch (generic term)|switch on (antonym)
+switch on|1
+(verb)|turn on|throw (generic term)|flip (generic term)|switch (generic term)|switch off (antonym)
+switch over|1
+(verb)|switch|exchange|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+switchblade|1
+(noun)|switchblade knife|flick knife|pocketknife (generic term)|pocket knife (generic term)
+switchblade knife|1
+(noun)|switchblade|flick knife|pocketknife (generic term)|pocket knife (generic term)
+switchboard|1
+(noun)|patchboard|plugboard|central (generic term)|telephone exchange (generic term)|exchange (generic term)
+switchboard operator|1
+(noun)|telephone operator|telephonist|operator (generic term)|manipulator (generic term)
+switcher|1
+(noun)|whipper|oppressor (generic term)
+switcheroo|1
+(noun)|switch (generic term)|switching (generic term)|shift (generic term)
+switching|1
+(noun)|switch|shift|change (generic term)
+switchman|1
+(noun)|operator (generic term)|manipulator (generic term)
+swither|1
+(noun)|fret|stew|sweat|lather|agitation (generic term)
+switzerland|1
+(noun)|Switzerland|Swiss Confederation|Suisse|Schweiz|Svizzera|European country (generic term)|European nation (generic term)
+swivel|2
+(noun)|coupling (generic term)|coupler (generic term)
+(verb)|pivot|turn (generic term)
+swivel chair|1
+(noun)|chair (generic term)
+swivel pin|1
+(noun)|kingbolt|kingpin|bolt (generic term)
+swiz|1
+(noun)|swindle (generic term)|cheat (generic term)|rig (generic term)
+swizzle|1
+(noun)|mixed drink (generic term)
+swizzle stick|1
+(noun)|stick (generic term)
+swob|3
+(noun)|swab|mop|cleaning implement (generic term)
+(verb)|swab|wipe up (generic term)|mop up (generic term)|mop (generic term)
+(verb)|dab|swab|put on (generic term)|apply (generic term)
+swollen|4
+(adj)|bloated|distended|puffed|puffy|intumescent|tumescent|tumid|turgid|unhealthy (similar term)
+(adj)|distended|expanded (similar term)
+(adj)|conceited|egotistic|egotistical|self-conceited|swollen-headed|vain|proud (similar term)
+(adj)|flooding|in flood|overflowing|high (similar term)
+swollen-headed|1
+(adj)|conceited|egotistic|egotistical|self-conceited|swollen|vain|proud (similar term)
+swoon|2
+(noun)|faint|syncope|deliquium|loss of consciousness (generic term)
+(verb)|faint|conk|pass out|zonk out (generic term)|pass out (generic term)|black out (generic term)
+swooning|1
+(adj)|faint|light|light-headed|lightheaded|ill (similar term)|sick (similar term)
+swoop|6
+(noun)|slide|glissando (generic term)
+(noun)|foray (generic term)|raid (generic term)|maraud (generic term)
+(noun)|descent (generic term)
+(verb)|pounce|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|move (generic term)
+(verb)|swoop up|snatch (generic term)|snatch up (generic term)|snap (generic term)
+swoop up|1
+(verb)|swoop|snatch (generic term)|snatch up (generic term)|snap (generic term)
+swoosh|2
+(noun)|whoosh|noise (generic term)
+(verb)|lap|swish|swosh|sound (generic term)|go (generic term)
+swop|2
+(noun)|barter|swap|trade|exchange (generic term)|interchange (generic term)
+(verb)|trade|swap|switch|exchange (generic term)|change (generic term)|interchange (generic term)
+sword|1
+(noun)|blade|brand|steel|weapon (generic term)|arm (generic term)|weapon system (generic term)
+sword-cut|1
+(noun)|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+sword-shaped|1
+(adj)|ensiform|swordlike|bladelike|simple (similar term)|unsubdivided (similar term)
+sword bean|1
+(noun)|Canavalia gladiata|vine (generic term)
+sword cane|1
+(noun)|sword stick|cane (generic term)
+sword dance|1
+(noun)|sword dancing|folk dancing (generic term)|folk dance (generic term)
+sword dancing|1
+(noun)|sword dance|folk dancing (generic term)|folk dance (generic term)
+sword fern|1
+(noun)|fern (generic term)
+sword grass|1
+(noun)|grass (generic term)
+sword knot|1
+(noun)|tassel (generic term)
+sword lily|2
+(noun)|gladiolus|gladiola|glad|iridaceous plant (generic term)
+(noun)|iris|flag|fleur-de-lis|iridaceous plant (generic term)
+sword of damocles|1
+(noun)|sword of Damocles|hazard (generic term)|jeopardy (generic term)|peril (generic term)|risk (generic term)|endangerment (generic term)
+sword stick|1
+(noun)|sword cane|cane (generic term)
+swordfish|2
+(noun)|saltwater fish (generic term)
+(noun)|Xiphias gladius|scombroid (generic term)|scombroid fish (generic term)
+swordlike|1
+(adj)|ensiform|sword-shaped|bladelike|simple (similar term)|unsubdivided (similar term)
+swordplay|1
+(noun)|play|action (generic term)
+swordsman|1
+(noun)|fencer|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+swordsmanship|1
+(noun)|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+swordtail|1
+(noun)|helleri|topminnow|Xyphophorus helleri|cyprinodont (generic term)
+sworn|2
+(adj)|pledged|committed (similar term)
+(adj)|bound (similar term)|unsworn (antonym)
+swosh|1
+(verb)|lap|swish|swoosh|sound (generic term)|go (generic term)
+swot|2
+(noun)|grind|nerd|wonk|dweeb|learner (generic term)|scholar (generic term)|assimilator (generic term)
+(verb)|cram|grind away|drum|bone up|get up|mug up|swot up|bone|study (generic term)|hit the books (generic term)
+swot up|1
+(verb)|cram|grind away|drum|bone up|swot|get up|mug up|bone|study (generic term)|hit the books (generic term)
+swung dash|1
+(noun)|punctuation (generic term)|punctuation mark (generic term)
+sybarite|1
+(noun)|voluptuary|sensualist (generic term)
+sybaritic|1
+(adj)|epicurean|luxurious|luxuriant|voluptuary|voluptuous|indulgent (similar term)
+sycamore|4
+(noun)|lacewood|wood (generic term)
+(noun)|plane tree|platan|tree (generic term)
+(noun)|great maple|scottish maple|Acer pseudoplatanus|maple (generic term)
+(noun)|sycamore fig|mulberry fig|Ficus sycomorus|fig tree (generic term)
+sycamore fig|1
+(noun)|sycamore|mulberry fig|Ficus sycomorus|fig tree (generic term)
+syconium|1
+(noun)|aggregate fruit (generic term)|multiple fruit (generic term)|syncarp (generic term)
+sycophancy|1
+(noun)|obsequiousness (generic term)|servility (generic term)|subservience (generic term)
+sycophant|1
+(noun)|toady|crawler|lackey|flatterer (generic term)|adulator (generic term)
+sycophantic|2
+(adj)|bootlicking|fawning|obsequious|toadyish|insincere (similar term)
+(adj)|bootlicking|fawning|toadyish|servile (similar term)
+sydenham|1
+(noun)|Sydenham|Thomas Sydenham|English Hippocrates|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+sydenham's chorea|1
+(noun)|Sydenham's chorea|Saint Vitus dance|St. Vitus dance|chorea (generic term)
+sydney|1
+(noun)|Sydney|state capital (generic term)
+sydney harbor bridge|1
+(noun)|Sydney Harbor Bridge|steel arch bridge (generic term)
+sydney pollack|1
+(noun)|Pollack|Sydney Pollack|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+sydney silky|1
+(noun)|silky terrier|Sydney silky|terrier (generic term)
+syllabary|1
+(noun)|syllabic script|script (generic term)
+syllabic|5
+(adj)|language unit|linguistic unit (related term)
+(adj)|script (related term)
+(adj)|accentual (antonym)|quantitative (antonym)
+(adj)|disyllabic (similar term)|monosyllabic (similar term)|octosyllabic (similar term)|pentasyllabic (similar term)|polysyllabic (similar term)|decasyllabic (similar term)|syllabled (similar term)|nonsyllabic (antonym)
+(adj)|nonsyllabic (antonym)
+syllabic script|1
+(noun)|syllabary|script (generic term)
+syllabicate|1
+(verb)|syllabify|syllabize|syllabise|segment (generic term)|section (generic term)
+syllabication|1
+(noun)|syllabification|division (generic term)
+syllabicity|1
+(noun)|language system (generic term)
+syllabification|1
+(noun)|syllabication|division (generic term)
+syllabify|1
+(verb)|syllabicate|syllabize|syllabise|segment (generic term)|section (generic term)
+syllabise|2
+(verb)|syllabify|syllabicate|syllabize|segment (generic term)|section (generic term)
+(verb)|syllabize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+syllabize|2
+(verb)|syllabify|syllabicate|syllabise|segment (generic term)|section (generic term)
+(verb)|syllabise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+syllable|1
+(noun)|language unit (generic term)|linguistic unit (generic term)
+syllable structure|1
+(noun)|morphology|sound structure|word structure|structure (generic term)
+syllabled|1
+(adj)|syllabic (similar term)
+syllabub|2
+(noun)|sillabub|drink (generic term)
+(noun)|sillabub|dessert (generic term)|sweet (generic term)|afters (generic term)
+syllabus|1
+(noun)|course of study|program|programme|curriculum|information (generic term)|info (generic term)
+syllepsis|1
+(noun)|zeugma (generic term)
+syllogise|1
+(verb)|syllogize|reason (generic term)|reason out (generic term)|conclude (generic term)
+syllogiser|1
+(noun)|syllogist|syllogizer|logician (generic term)|logistician (generic term)
+syllogism|1
+(noun)|deduction (generic term)|deductive reasoning (generic term)|synthesis (generic term)
+syllogist|1
+(noun)|syllogizer|syllogiser|logician (generic term)|logistician (generic term)
+syllogistic|1
+(adj)|deduction|deductive reasoning|synthesis (related term)
+syllogize|1
+(verb)|syllogise|reason (generic term)|reason out (generic term)|conclude (generic term)
+syllogizer|1
+(noun)|syllogist|syllogiser|logician (generic term)|logistician (generic term)
+sylph|2
+(noun)|woman (generic term)|adult female (generic term)
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+sylphlike|1
+(adj)|lissome|lissom|lithe|lithesome|slender|supple|svelte|graceful (similar term)
+sylva|1
+(noun)|silva|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+sylvan|2
+(adj)|silvan|wooded (similar term)
+(noun)|silvan|spirit (generic term)|disembodied spirit (generic term)
+sylvanite|1
+(noun)|graphic tellurium|mineral (generic term)
+sylvanus|1
+(noun)|Sylvanus|Silvanus|Roman deity (generic term)
+sylvester ii|1
+(noun)|Sylvester II|Gerbert|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+sylvia communis|1
+(noun)|greater whitethroat|whitethroat|Sylvia communis|warbler (generic term)
+sylvia curruca|1
+(noun)|lesser whitethroat|whitethroat|Sylvia curruca|warbler (generic term)
+sylvia plath|1
+(noun)|Plath|Sylvia Plath|writer (generic term)|author (generic term)|poet (generic term)
+sylvian aqueduct|1
+(noun)|cerebral aqueduct|Sylvian aqueduct|aqueductus cerebri|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+sylvian fissure|1
+(noun)|fissure of Sylvius|Sylvian fissure|lateral cerebral sulcus|sulcus lateralis cerebri|sulcus (generic term)
+sylviidae|1
+(noun)|Sylviidae|family Sylviidae|bird family (generic term)
+sylviinae|1
+(noun)|Sylviinae|subfamily Sylviinae|bird family (generic term)
+sylvilagus|1
+(noun)|Sylvilagus|genus Sylvilagus|mammal genus (generic term)
+sylvilagus aquaticus|1
+(noun)|swamp rabbit|canecutter|swamp hare|Sylvilagus aquaticus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+sylvilagus floridanus|1
+(noun)|eastern cottontail|Sylvilagus floridanus|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+sylvilagus palustris|1
+(noun)|marsh hare|swamp rabbit|Sylvilagus palustris|wood rabbit (generic term)|cottontail (generic term)|cottontail rabbit (generic term)
+sylvine|1
+(noun)|sylvite|mineral (generic term)
+sylvite|1
+(noun)|sylvine|mineral (generic term)
+symbion pandora|1
+(noun)|Symbion pandora|invertebrate (generic term)
+symbiosis|1
+(noun)|mutualism|mutuality (generic term)|interdependence (generic term)|interdependency (generic term)
+symbiotic|1
+(adj)|dependent (similar term)
+symbol|2
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|symbolization|symbolisation|symbolic representation|representational process (generic term)
+symbol-worship|1
+(noun)|symbolatry|symbololatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+symbolatry|1
+(noun)|symbololatry|symbol-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+symbolic|3
+(adj)|symbolical|signal|signaling|sign (related term)
+(adj)|emblematic|emblematical|symbolical|representative (similar term)
+(adj)|symbol (related term)
+symbolic logic|1
+(noun)|mathematical logic|formal logic|logic (generic term)|logical system (generic term)|system of logic (generic term)
+symbolic logician|1
+(noun)|logician (generic term)|logistician (generic term)
+symbolic representation|1
+(noun)|symbol|symbolization|symbolisation|representational process (generic term)
+symbolical|2
+(adj)|symbolic|signal|signaling|sign (related term)
+(adj)|emblematic|emblematical|symbolic|representative (similar term)
+symbolisation|3
+(noun)|symbolization|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|symbol|symbolization|symbolic representation|representational process (generic term)
+(noun)|symbolism|symbolization|practice (generic term)|pattern (generic term)
+symbolise|2
+(verb)|symbolize|represent (generic term)
+(verb)|typify|symbolize|stand for|represent|mean (generic term)|intend (generic term)
+symboliser|1
+(noun)|symbolist|symbolizer|interpreter (generic term)|translator (generic term)
+symbolising|1
+(noun)|symbolizing|figuration (generic term)
+symbolism|3
+(noun)|symbol (generic term)
+(noun)|symbolization|symbolisation|practice (generic term)|pattern (generic term)
+(noun)|artistic movement (generic term)|art movement (generic term)
+symbolist|2
+(noun)|artist (generic term)|creative person (generic term)
+(noun)|symbolizer|symboliser|interpreter (generic term)|translator (generic term)
+symbolization|3
+(noun)|symbolisation|meaning (generic term)|significance (generic term)|signification (generic term)|import (generic term)
+(noun)|symbol|symbolisation|symbolic representation|representational process (generic term)
+(noun)|symbolism|symbolisation|practice (generic term)|pattern (generic term)
+symbolize|2
+(verb)|typify|symbolise|stand for|represent|mean (generic term)|intend (generic term)
+(verb)|symbolise|represent (generic term)
+symbolizer|1
+(noun)|symbolist|symboliser|interpreter (generic term)|translator (generic term)
+symbolizing|1
+(noun)|symbolising|figuration (generic term)
+symbology|1
+(noun)|ology (generic term)
+symbololatry|1
+(noun)|symbolatry|symbol-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+symmetric|1
+(adj)|symmetrical|bilateral (similar term)|isobilateral (similar term)|bilaterally symmetrical (similar term)|bilaterally symmetric (similar term)|biradial (similar term)|cruciate (similar term)|cruciform (similar term)|even (similar term)|regular (similar term)|interchangeable (similar term)|isoceles (similar term)|radial (similar term)|stellate (similar term)|radially symmetrical (similar term)|centrosymmetric (similar term)|rhombohedral (similar term)|trigonal (similar term)|parallel (related term)|regular (related term)|asymmetrical (antonym)
+symmetrical|2
+(adj)|symmetric|bilateral (similar term)|isobilateral (similar term)|bilaterally symmetrical (similar term)|bilaterally symmetric (similar term)|biradial (similar term)|cruciate (similar term)|cruciform (similar term)|even (similar term)|regular (similar term)|interchangeable (similar term)|isoceles (similar term)|radial (similar term)|stellate (similar term)|radially symmetrical (similar term)|centrosymmetric (similar term)|rhombohedral (similar term)|trigonal (similar term)|parallel (related term)|regular (related term)|asymmetrical (antonym)
+(adj)|harmonious|proportionate|balanced (similar term)
+symmetrically|1
+(adv)|asymmetrically (antonym)
+symmetricalness|1
+(noun)|symmetry|correspondence|balance|spatial property (generic term)|spatiality (generic term)|asymmetry (antonym)
+symmetrise|1
+(verb)|symmetrize|change (generic term)|alter (generic term)|modify (generic term)
+symmetrize|1
+(verb)|symmetrise|change (generic term)|alter (generic term)|modify (generic term)
+symmetry|3
+(noun)|symmetricalness|correspondence|balance|spatial property (generic term)|spatiality (generic term)|asymmetry (antonym)
+(noun)|proportion|balance (generic term)|equilibrium (generic term)|equipoise (generic term)|counterbalance (generic term)|disproportion (antonym)
+(noun)|isotropy|property (generic term)|anisotropy (antonym)
+symonds|1
+(noun)|Symonds|John Addington Symonds|writer (generic term)|author (generic term)
+symons|1
+(noun)|Symons|Arthur Symons|poet (generic term)
+sympathectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+sympathetic|6
+(adj)|nervous system|systema nervosum (related term)
+(adj)|commiserative (similar term)|condolent (similar term)|empathic (similar term)|empathetic (similar term)|compassionate (related term)|congenial (related term)|kind (related term)|unsympathetic (antonym)
+(adj)|compatible|congenial (similar term)
+(adj)|charitable|benevolent|kindly|good-hearted|openhearted|large-hearted|kind (similar term)
+(adj)|appealing|likeable|likable|unsympathetic (antonym)
+(adj)|harmonic|harmonious (similar term)
+sympathetic nervous system|1
+(noun)|nervous system (generic term)|systema nervosum (generic term)
+sympathetic strike|1
+(noun)|sympathy strike|strike (generic term)|work stoppage (generic term)
+sympathetic vibration|1
+(noun)|oscillation (generic term)|vibration (generic term)
+sympathetically|1
+(adv)|empathetically|unsympathetically (antonym)
+sympathise|3
+(verb)|sympathize|feel (generic term)|experience (generic term)
+(verb)|commiserate|sympathize|feel for (generic term)|pity (generic term)|compassionate (generic term)|condole with (generic term)|sympathize with (generic term)
+(verb)|sympathize|empathize|empathise|understand
+sympathiser|2
+(noun)|sympathizer|comforter|communicator (generic term)
+(noun)|sympathizer|well-wisher|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+sympathize|3
+(verb)|sympathise|feel (generic term)|experience (generic term)
+(verb)|sympathise|empathize|empathise|understand
+(verb)|commiserate|sympathise|feel for (generic term)|pity (generic term)|compassionate (generic term)|condole with (generic term)|sympathize with (generic term)
+sympathize with|1
+(verb)|feel for|pity|compassionate|condole with|grieve (generic term)|sorrow (generic term)
+sympathizer|2
+(noun)|sympathiser|comforter|communicator (generic term)
+(noun)|sympathiser|well-wisher|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+sympathomimetic|1
+(adj)|adrenergic|hormone|endocrine|internal secretion|catecholamine|neurotransmitter|vasoconstrictor|vasoconstrictive|pressor (related term)
+sympathy|3
+(noun)|understanding|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|fellow feeling|feeling (generic term)
+(noun)|affinity (generic term)|kinship (generic term)
+sympathy card|1
+(noun)|card (generic term)
+sympathy strike|1
+(noun)|sympathetic strike|strike (generic term)|work stoppage (generic term)
+sympatric|1
+(adj)|allopatric (antonym)
+sympatry|1
+(noun)|occurrence (generic term)|allopatry (antonym)
+sympetalous|1
+(adj)|gamopetalous|petalous (similar term)|petaled (similar term)|petalled (similar term)
+symphalangus|1
+(noun)|Symphalangus|genus Symphalangus|mammal genus (generic term)
+symphalangus syndactylus|1
+(noun)|siamang|Hylobates syndactylus|Symphalangus syndactylus|lesser ape (generic term)
+symphilid|1
+(noun)|garden centipede|garden symphilid|Scutigerella immaculata|arthropod (generic term)
+symphonic|2
+(adj)|sonata (related term)
+(adj)|symphonious|harmonious (similar term)
+symphonic music|1
+(noun)|symphony|sonata (generic term)
+symphonic poem|1
+(noun)|tone poem|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+symphonious|1
+(adj)|symphonic|harmonious (similar term)
+symphonise|1
+(verb)|symphonize|play (generic term)
+symphonist|1
+(noun)|composer (generic term)
+symphonize|1
+(verb)|symphonise|play (generic term)
+symphony|2
+(noun)|symphonic music|sonata (generic term)
+(noun)|symphony orchestra|philharmonic|orchestra (generic term)
+symphony orchestra|1
+(noun)|symphony|philharmonic|orchestra (generic term)
+symphoricarpos|1
+(noun)|Symphoricarpos|genus Symphoricarpos|asterid dicot genus (generic term)
+symphoricarpos alba|1
+(noun)|snowberry|common snowberry|waxberry|Symphoricarpos alba|poisonous plant (generic term)
+symphoricarpos orbiculatus|1
+(noun)|coralberry|Indian currant|Symphoricarpos orbiculatus|shrub (generic term)|bush (generic term)
+symphyla|1
+(noun)|Symphyla|class Symphyla|class (generic term)
+symphysion|1
+(noun)|craniometric point (generic term)
+symphysis|2
+(noun)|adhesion (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+symphytum|1
+(noun)|Symphytum|genus Symphytum|plant genus (generic term)
+symphytum officinale|1
+(noun)|common comfrey|boneset|Symphytum officinale|comfrey (generic term)|cumfrey (generic term)
+symplocaceae|1
+(noun)|Symplocaceae|family Symplocaceae|sweetleaf family|dicot family (generic term)|magnoliopsid family (generic term)
+symplocarpus|1
+(noun)|Symplocarpus|genus Symplocarpus|monocot genus (generic term)|liliopsid genus (generic term)
+symplocarpus foetidus|1
+(noun)|skunk cabbage|polecat weed|foetid pothos|Symplocarpus foetidus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+symploce|1
+(noun)|repetition (generic term)
+symplocus|1
+(noun)|Symplocus|genus Symplocus|dicot genus (generic term)|magnoliopsid genus (generic term)
+symplocus paniculata|1
+(noun)|Asiatic sweetleaf|sapphire berry|Symplocus paniculata|flowering shrub (generic term)
+symplocus tinctoria|1
+(noun)|sweetleaf|Symplocus tinctoria|angiospermous yellowwood (generic term)
+symposiarch|1
+(noun)|toastmaster|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+symposiast|1
+(noun)|attendant (generic term)|attender (generic term)|attendee (generic term)|meeter (generic term)
+symposium|1
+(noun)|conference (generic term)
+symptom|2
+(noun)|evidence (generic term)|grounds (generic term)
+(noun)|indication (generic term)|indicant (generic term)
+symptomatic|2
+(adj)|diagnostic|characteristic (similar term)
+(adj)|evidence|grounds (related term)
+symptomless|1
+(adj)|asymptomatic|well (similar term)
+synaeresis|2
+(noun)|syneresis|linguistic process (generic term)
+(noun)|syneresis|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+synaesthesia|1
+(noun)|synesthesia|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+synaesthetic|1
+(adj)|synesthetic|sensation|esthesis|aesthesis|sense experience|sense impression|sense datum (related term)
+synagogue|1
+(noun)|temple|tabernacle|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+synagrops|1
+(noun)|Synagrops|genus Synagrops|fish genus (generic term)
+synagrops bellus|1
+(noun)|blackmouth bass|Synagrops bellus|sea bass (generic term)
+synanceja|1
+(noun)|Synanceja|genus Synanceja|fish genus (generic term)
+synanceja verrucosa|1
+(noun)|stonefish|Synanceja verrucosa|scorpaenid (generic term)|scorpaenid fish (generic term)
+synapse|1
+(noun)|junction (generic term)|conjunction (generic term)|conjugation (generic term)|colligation (generic term)
+synapsid|1
+(noun)|synapsid reptile|reptile (generic term)|reptilian (generic term)
+synapsid reptile|1
+(noun)|synapsid|reptile (generic term)|reptilian (generic term)
+synapsida|1
+(noun)|Synapsida|subclass Synapsida|class (generic term)
+synapsis|1
+(noun)|organic process (generic term)|biological process (generic term)
+synaptic|1
+(adj)|junction|conjunction|conjugation|colligation (related term)
+synaptomys|1
+(noun)|Synaptomys|genus Synaptomys|mammal genus (generic term)
+synaptomys borealis|1
+(noun)|northern bog lemming|Synaptomys borealis|lemming (generic term)
+synaptomys cooperi|1
+(noun)|southern bog lemming|Synaptomys cooperi|lemming (generic term)
+sync|1
+(verb)|synchronize|synchronise|adjust (generic term)|set (generic term)|correct (generic term)|desynchronise (antonym)|desynchronize (antonym)
+syncarp|1
+(noun)|aggregate fruit|multiple fruit|fruit (generic term)
+syncarpous|1
+(adj)|apocarpous (antonym)
+syncategorem|1
+(noun)|syncategoreme|word (generic term)|categoreme (antonym)|categorem (antonym)
+syncategorematic|1
+(adj)|synsemantic (similar term)|categorematic (antonym)
+syncategoreme|1
+(noun)|syncategorem|word (generic term)|categoreme (antonym)|categorem (antonym)
+synchro|1
+(noun)|selsyn|system (generic term)
+synchrocyclotron|1
+(noun)|cyclotron (generic term)
+synchroflash|1
+(noun)|device (generic term)
+synchromesh|1
+(noun)|system (generic term)
+synchronal|1
+(adj)|synchronous|synchronic|coetaneous (similar term)|coeval (similar term)|contemporaneous (similar term)|coexistent (similar term)|coexisting (similar term)|coincident (similar term)|coincidental (similar term)|coinciding (similar term)|concurrent (similar term)|co-occurrent (similar term)|cooccurring (similar term)|simultaneous (similar term)|contemporaneous (similar term)|contemporary (similar term)|parallel (similar term)|synchronic (similar term)|synchronized (similar term)|synchronised (similar term)|synchronic (related term)|descriptive (related term)|asynchronous (antonym)
+synchroneity|1
+(noun)|synchronism|synchrony|synchronicity|synchronization|synchronisation|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+synchronic|3
+(adj)|synchronous|synchronal|coetaneous (similar term)|coeval (similar term)|contemporaneous (similar term)|coexistent (similar term)|coexisting (similar term)|coincident (similar term)|coincidental (similar term)|coinciding (similar term)|concurrent (similar term)|co-occurrent (similar term)|cooccurring (similar term)|simultaneous (similar term)|contemporaneous (similar term)|contemporary (similar term)|parallel (similar term)|synchronic (similar term)|synchronized (similar term)|synchronised (similar term)|synchronic (related term)|descriptive (related term)|asynchronous (antonym)
+(adj)|descriptive|synchronous (related term)|synchronal (related term)|synchronic (related term)|diachronic (antonym)
+(adj)|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+synchronic linguistics|1
+(noun)|linguistics (generic term)
+synchronicity|1
+(noun)|synchronism|synchrony|synchroneity|synchronization|synchronisation|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+synchronisation|3
+(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronization|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+(noun)|synchronization|synchronizing|synchronising|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+(noun)|synchronization|synchronizing|coordination (generic term)
+synchronise|6
+(verb)|synchronize|contemporize|contemporise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|synchronize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|synchronize|contemporize|contemporise|arrange (generic term)|set up (generic term)|put (generic term)|order (generic term)
+(verb)|synchronize|operate (generic term)|control (generic term)
+(verb)|synchronize|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+(verb)|synchronize|sync|adjust (generic term)|set (generic term)|correct (generic term)|desynchronise (antonym)|desynchronize (antonym)
+synchronised|1
+(adj)|synchronized|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+synchroniser|1
+(noun)|synchroscope|synchronoscope|synchronizer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+synchronising|1
+(noun)|synchronization|synchronisation|synchronizing|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+synchronism|1
+(noun)|synchrony|synchronicity|synchroneity|synchronization|synchronisation|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+synchronization|3
+(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronisation|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+(noun)|synchronisation|synchronizing|synchronising|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+(noun)|synchronisation|synchronizing|coordination (generic term)
+synchronize|6
+(verb)|synchronise|sync|adjust (generic term)|set (generic term)|correct (generic term)|desynchronise (antonym)|desynchronize (antonym)
+(verb)|synchronise|contemporize|contemporise|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|synchronise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|synchronise|contemporize|contemporise|arrange (generic term)|set up (generic term)|put (generic term)|order (generic term)
+(verb)|synchronise|operate (generic term)|control (generic term)
+(verb)|synchronise|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+synchronized|1
+(adj)|synchronised|synchronous (similar term)|synchronal (similar term)|synchronic (similar term)
+synchronizer|1
+(noun)|synchroscope|synchronoscope|synchroniser|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+synchronizing|3
+(noun)|synchronism|synchrony|synchronicity|synchroneity|synchronization|synchronisation|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+(noun)|synchronization|synchronisation|synchronising|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+(noun)|synchronization|synchronisation|coordination (generic term)
+synchronoscope|1
+(noun)|synchroscope|synchronizer|synchroniser|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+synchronous|2
+(adj)|synchronal|synchronic|coetaneous (similar term)|coeval (similar term)|contemporaneous (similar term)|coexistent (similar term)|coexisting (similar term)|coincident (similar term)|coincidental (similar term)|coinciding (similar term)|concurrent (similar term)|co-occurrent (similar term)|cooccurring (similar term)|simultaneous (similar term)|contemporaneous (similar term)|contemporary (similar term)|parallel (similar term)|synchronic (similar term)|synchronized (similar term)|synchronised (similar term)|synchronic (related term)|descriptive (related term)|asynchronous (antonym)
+(adj)|asynchronous (antonym)
+synchronous converter|1
+(noun)|rotary|rotary converter|electrical converter (generic term)
+synchronous motor|1
+(noun)|electric motor (generic term)
+synchronous operation|1
+(noun)|operation (generic term)|asynchronous operation (antonym)
+synchrony|1
+(noun)|synchronism|synchronicity|synchroneity|synchronization|synchronisation|synchronizing|temporal relation (generic term)|desynchronizing (antonym)|desynchronization (antonym)|asynchronism (antonym)
+synchroscope|1
+(noun)|synchronoscope|synchronizer|synchroniser|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+synchrotron|1
+(noun)|cyclotron (generic term)
+synchytriaceae|1
+(noun)|Synchytriaceae|family Synchytriaceae|fungus family (generic term)
+synchytrium|1
+(noun)|Synchytrium|genus Synchytrium|fungus genus (generic term)
+synchytrium endobioticum|1
+(noun)|potato wart fungus|Synchytrium endobioticum|fungus (generic term)
+synclinal|1
+(adj)|anticlinal (antonym)
+syncopate|2
+(verb)|shorten (generic term)
+(verb)|modify (generic term)
+syncopated|1
+(adj)|rhythmical (similar term)|rhythmic (similar term)
+syncopation|3
+(noun)|syncope|articulation (generic term)
+(noun)|rhythm (generic term)|beat (generic term)|musical rhythm (generic term)
+(noun)|music (generic term)
+syncopator|1
+(noun)|jazz musician (generic term)|jazzman (generic term)
+syncope|2
+(noun)|faint|swoon|deliquium|loss of consciousness (generic term)
+(noun)|syncopation|articulation (generic term)
+syncretic|2
+(adj)|syncretical|syncretistic|syncretistical|fusion (related term)
+(adj)|syncretical|syncretistic|syncretistical|union|unification (related term)
+syncretical|2
+(adj)|syncretic|syncretistic|syncretistical|fusion (related term)
+(adj)|syncretic|syncretistic|syncretistical|union|unification (related term)
+syncretise|2
+(verb)|syncretize|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|syncretize|unify (generic term)|unite (generic term)|merge (generic term)
+syncretism|2
+(noun)|union (generic term)|unification (generic term)
+(noun)|fusion (generic term)
+syncretistic|2
+(adj)|syncretic|syncretical|syncretistical|fusion (related term)
+(adj)|syncretic|syncretical|syncretistical|union|unification (related term)
+syncretistical|2
+(adj)|syncretic|syncretical|syncretistic|fusion (related term)
+(adj)|syncretic|syncretical|syncretistic|union|unification (related term)
+syncretize|2
+(verb)|syncretise|blend (generic term)|flux (generic term)|mix (generic term)|conflate (generic term)|commingle (generic term)|immix (generic term)|fuse (generic term)|coalesce (generic term)|meld (generic term)|combine (generic term)|merge (generic term)
+(verb)|syncretise|unify (generic term)|unite (generic term)|merge (generic term)
+syncytium|1
+(noun)|cytoplasm (generic term)|cytol (generic term)
+syndactylism|1
+(noun)|syndactyly|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+syndactyly|1
+(noun)|syndactylism|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+syndetic|1
+(adj)|asyndetic (antonym)
+syndic|1
+(noun)|agent (generic term)|factor (generic term)|broker (generic term)
+syndicalism|1
+(noun)|political movement (generic term)
+syndicalist|1
+(noun)|anarchist|nihilist|radical (generic term)
+syndicate|6
+(noun)|crime syndicate|mob|family|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+(noun)|consortium|pool|association (generic term)
+(noun)|news agency (generic term)|press agency (generic term)|wire service (generic term)|press association (generic term)|news organization (generic term)|news organisation (generic term)
+(verb)|connect (generic term)|link (generic term)|link up (generic term)|join (generic term)|unite (generic term)
+(verb)|form (generic term)|organize (generic term)|organise (generic term)
+(verb)|sell (generic term)
+syndication|2
+(noun)|organization (generic term)|organisation (generic term)
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)
+syndicator|1
+(noun)|businessman (generic term)|man of affairs (generic term)
+syndrome|2
+(noun)|complex (generic term)|composite (generic term)
+(noun)|symptom (generic term)
+synecdoche|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+synecdochic|1
+(adj)|synecdochical|figurative (similar term)|nonliteral (similar term)
+synecdochical|1
+(adj)|synecdochic|figurative (similar term)|nonliteral (similar term)
+synechia|1
+(noun)|adhesion (generic term)
+synentognathi|1
+(noun)|Synentognathi|order Synentognathi|animal order (generic term)
+synercus|1
+(noun)|Synercus|genus Synercus|tribe synercus|mammal genus (generic term)
+synercus caffer|1
+(noun)|Cape buffalo|Synercus caffer|Old World buffalo (generic term)|buffalo (generic term)
+syneresis|2
+(noun)|synaeresis|linguistic process (generic term)
+(noun)|synaeresis|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+synergetic|1
+(adj)|synergistic|cooperative (similar term)
+synergism|2
+(noun)|synergy|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|theological doctrine (generic term)
+synergist|1
+(noun)|drug (generic term)|antagonist (antonym)
+synergistic|3
+(adj)|interactive|antagonistic (antonym)
+(adj)|theological doctrine (related term)
+(adj)|synergetic|cooperative (similar term)
+synergy|1
+(noun)|synergism|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+synesthesia|1
+(noun)|synaesthesia|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+synesthetic|1
+(adj)|synaesthetic|sensation|esthesis|aesthesis|sense experience|sense impression|sense datum (related term)
+synesthetic metaphor|1
+(noun)|metaphor (generic term)
+synezesis|1
+(noun)|synizesis|organic process (generic term)|biological process (generic term)
+synge|1
+(noun)|Synge|J. M. Synge|John Millington Synge|Edmund John Millington Synge|dramatist (generic term)|playwright (generic term)|poet (generic term)
+syngnathidae|1
+(noun)|Syngnathidae|family Syngnathidae|fish family (generic term)
+syngnathus|1
+(noun)|Syngnathus|genus Syngnathus|fish genus (generic term)
+syngnathus hildebrandi|1
+(noun)|dwarf pipefish|Syngnathus hildebrandi|pipefish (generic term)|needlefish (generic term)
+syngonium|1
+(noun)|Syngonium|genus Syngonium|monocot genus (generic term)|liliopsid genus (generic term)
+synizesis|1
+(noun)|synezesis|organic process (generic term)|biological process (generic term)
+synod|1
+(noun)|council (generic term)
+synodic month|1
+(noun)|lunar month|moon|lunation|month (generic term)
+synodontidae|1
+(noun)|Synodontidae|family Synodontidae|fish family (generic term)
+synoecious|1
+(adj)|synoicous|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+synoicous|1
+(adj)|synoecious|monoecious (similar term)|monecious (similar term)|monoicous (similar term)
+synonym|1
+(noun)|equivalent word|word (generic term)|antonym (antonym)
+synonym finder|1
+(noun)|thesaurus|wordbook (generic term)
+synonymist|1
+(noun)|lexicographer (generic term)|lexicologist (generic term)
+synonymity|1
+(noun)|synonymy|synonymousness|semantic relation (generic term)
+synonymous|1
+(adj)|similar (similar term)|substitutable (similar term)|antonymous (antonym)
+synonymousness|1
+(noun)|synonymy|synonymity|semantic relation (generic term)
+synonymy|1
+(noun)|synonymity|synonymousness|semantic relation (generic term)
+synopsis|1
+(noun)|outline|abstract|precis|summary (generic term)|sum-up (generic term)
+synoptic|2
+(adj)|summary|sum-up (related term)
+(adj)|synoptical|same (similar term)
+synoptic gospels|1
+(noun)|Synoptic Gospels|Synoptics|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+synoptical|1
+(adj)|synoptic|same (similar term)
+synoptics|1
+(noun)|Synoptic Gospels|Synoptics|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+synovia|1
+(noun)|synovial fluid|secretion (generic term)
+synovial|1
+(adj)|secretion (related term)
+synovial fluid|1
+(noun)|synovia|secretion (generic term)
+synovial joint|1
+(noun)|articulatio synovialis|diarthrosis|joint (generic term)|articulation (generic term)|articulatio (generic term)
+synovial membrane|1
+(noun)|synovium|membrane (generic term)|tissue layer (generic term)
+synovitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+synovium|1
+(noun)|synovial membrane|membrane (generic term)|tissue layer (generic term)
+synsemantic|1
+(adj)|syncategorematic (similar term)
+synset|1
+(noun)|set (generic term)
+syntactic|1
+(adj)|syntactical|grammar (related term)
+syntactic category|1
+(noun)|grammatical category|class (generic term)|category (generic term)|family (generic term)
+syntactical|1
+(adj)|syntactic|grammar (related term)
+syntactician|1
+(noun)|grammarian|linguist (generic term)|linguistic scientist (generic term)
+syntagm|1
+(noun)|syntagma|string of words (generic term)|word string (generic term)|linguistic string (generic term)
+syntagma|1
+(noun)|syntagm|string of words (generic term)|word string (generic term)|linguistic string (generic term)
+syntagmatic|1
+(adj)|string of words|word string|linguistic string (related term)|paradigmatic (antonym)
+syntax|3
+(noun)|sentence structure|phrase structure|structure (generic term)
+(noun)|system (generic term)|scheme (generic term)
+(noun)|grammar (generic term)
+syntax checker|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+syntax error|1
+(noun)|software error (generic term)|programming error (generic term)
+syntax language|1
+(noun)|metalanguage (generic term)
+synthesis|3
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|synthetic thinking|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)|analysis (antonym)
+(noun)|deduction|deductive reasoning|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)
+synthesise|1
+(verb)|synthesize|compound (generic term)|combine (generic term)|analyze (antonym)
+synthesiser|2
+(noun)|synthesist|synthesizer|intellectual (generic term)|intellect (generic term)
+(noun)|synthesizer|electronic instrument (generic term)
+synthesist|1
+(noun)|synthesizer|synthesiser|intellectual (generic term)|intellect (generic term)
+synthesize|2
+(verb)|synthesise|compound (generic term)|combine (generic term)|analyze (antonym)
+(verb)|change (generic term)
+synthesizer|2
+(noun)|synthesist|synthesiser|intellectual (generic term)|intellect (generic term)
+(noun)|synthesiser|electronic instrument (generic term)
+synthetic|7
+(adj)|man-made|semisynthetic|artificial (similar term)|unreal (similar term)
+(adj)|synthetical|analytic (antonym)
+(adj)|agglutinative (similar term)|polysynthetic (similar term)|analytic (antonym)
+(adj)|synthetical|a posteriori (related term)|inductive (related term)|logical (related term)|analytic (antonym)
+(adj)|celluloid|artificial (similar term)|unreal (similar term)
+(adj)|counterfeit (similar term)|imitative (similar term)
+(noun)|synthetic substance|compound (generic term)|chemical compound (generic term)
+synthetic cubism|1
+(noun)|cubism (generic term)
+synthetic fiber|1
+(noun)|man-made fiber|fiber (generic term)|fibre (generic term)
+synthetic heroin|1
+(noun)|methadone|methadone hydrochloride|methadon|dolophine hydrochloride|fixer|narcotic (generic term)
+synthetic resin|1
+(noun)|resin (generic term)|rosin (generic term)|polymer (generic term)
+synthetic rubber|1
+(noun)|rubber|synthetic (generic term)|synthetic substance (generic term)
+synthetic substance|1
+(noun)|synthetic|compound (generic term)|chemical compound (generic term)
+synthetic thinking|1
+(noun)|synthesis|reasoning (generic term)|logical thinking (generic term)|abstract thought (generic term)|analysis (antonym)
+synthetical|2
+(adj)|synthetic|analytic (antonym)
+(adj)|synthetic|a posteriori (related term)|inductive (related term)|logical (related term)|analytic (antonym)
+synthetism|1
+(noun)|genre (generic term)
+syph|1
+(noun)|syphilis|pox|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+syphilis|1
+(noun)|syph|pox|venereal disease (generic term)|VD (generic term)|venereal infection (generic term)|social disease (generic term)|Cupid's itch (generic term)|Cupid's disease (generic term)|Venus's curse (generic term)|sexually transmitted disease (generic term)|dose (generic term)
+syphilitic|2
+(adj)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+syphon|3
+(noun)|siphon|tube (generic term)|tubing (generic term)
+(noun)|siphon|organ (generic term)
+(verb)|siphon|siphon off|draw (generic term)|take out (generic term)
+syracuse|3
+(noun)|Syracuse|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Syracuse|Siracusa|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Syracuse|siege of Syracuse|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+syria|1
+(noun)|Syria|Syrian Arab Republic|Asian country (generic term)|Asian nation (generic term)
+syrian|2
+(adj)|Syrian|Asian country|Asian nation (related term)
+(noun)|Syrian|Asian (generic term)|Asiatic (generic term)
+syrian arab republic|1
+(noun)|Syria|Syrian Arab Republic|Asian country (generic term)|Asian nation (generic term)
+syrian bean caper|1
+(noun)|bean caper|Syrian bean caper|Zygophyllum fabago|shrub (generic term)|bush (generic term)
+syrian bear|1
+(noun)|Syrian bear|Ursus arctos syriacus|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+syrian desert|1
+(noun)|Syrian Desert|desert (generic term)
+syrian hamster|1
+(noun)|golden hamster|Syrian hamster|Mesocricetus auratus|hamster (generic term)
+syrian monetary unit|1
+(noun)|Syrian monetary unit|monetary unit (generic term)
+syrian pound|1
+(noun)|Syrian pound|pound|Syrian monetary unit (generic term)
+syringa|2
+(noun)|mock orange|Philadelphus coronarius|philadelphus (generic term)
+(noun)|Syringa|genus Syringa|dicot genus (generic term)|magnoliopsid genus (generic term)
+syringa amurensis japonica|1
+(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac (generic term)
+syringa emodi|1
+(noun)|Himalayan lilac|Syringa emodi|lilac (generic term)
+syringa josikaea|1
+(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac (generic term)
+syringa josikea|1
+(noun)|Hungarian lilac|Syringa josikaea|Syringa josikea|lilac (generic term)
+syringa persica|1
+(noun)|Persian lilac|Syringa persica|lilac (generic term)
+syringa reticulata|1
+(noun)|Japanese tree lilac|Syringa reticulata|Syringa amurensis japonica|lilac (generic term)
+syringa villosa|1
+(noun)|Japanese lilac|Syringa villosa|lilac (generic term)
+syringa vulgaris|1
+(noun)|common lilac|Syringa vulgaris|lilac (generic term)
+syringe|2
+(noun)|medical instrument (generic term)
+(verb)|spray (generic term)
+syrinx|2
+(noun)|panpipe|pandean pipe|wind instrument (generic term)|wind (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+syrrhaptes|1
+(noun)|Syrrhaptes|genus Syrrhaptes|bird genus (generic term)
+syrrhaptes paradoxus|1
+(noun)|pallas's sandgrouse|Syrrhaptes paradoxus|sandgrouse (generic term)|sand grouse (generic term)
+syrup|1
+(noun)|sirup|sweetening (generic term)|sweetener (generic term)
+syrupy|3
+(adj)|cloying|saccharine|treacly|sweet (similar term)
+(adj)|viscous|thick (similar term)
+(adj)|honeyed|honied|sugary (similar term)
+system|9
+(noun)|scheme|group (generic term)|grouping (generic term)
+(noun)|instrumentality (generic term)|instrumentation (generic term)
+(noun)|system of rules|method (generic term)
+(noun)|plan of action (generic term)
+(noun)|body part (generic term)
+(noun)|arrangement|organization|organisation|structure (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|live body (generic term)
+(noun)|organization|organisation|orderliness (generic term)|methodicalness (generic term)
+system administrator|1
+(noun)|supervisor (generic term)|computer user (generic term)
+system call|1
+(noun)|supervisor call instruction|call (generic term)
+system clock|2
+(noun)|clock (generic term)
+(noun)|electronic device (generic term)
+system command|1
+(noun)|direction (generic term)|instruction (generic term)
+system error|1
+(noun)|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+system of logic|1
+(noun)|logic|logical system|system (generic term)|system of rules (generic term)
+system of macrophages|1
+(noun)|mononuclear phagocyte system|MPS|system (generic term)
+system of measurement|1
+(noun)|metric|measure (generic term)|quantity (generic term)|amount (generic term)
+system of numeration|1
+(noun)|numeration system|number system|number representation system|mathematical notation (generic term)
+system of rules|1
+(noun)|system|method (generic term)
+system of weights|1
+(noun)|weight|system of measurement (generic term)|metric (generic term)
+system of weights and measures|1
+(noun)|system of measurement (generic term)|metric (generic term)
+system program|1
+(noun)|systems program|systems software|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+systema alimentarium|1
+(noun)|digestive system|gastrointestinal system|systema digestorium|system (generic term)
+systema digestorium|1
+(noun)|digestive system|gastrointestinal system|systema alimentarium|system (generic term)
+systema lymphaticum|1
+(noun)|lymphatic system|vascular system (generic term)
+systema nervosum|1
+(noun)|nervous system|system (generic term)
+systema nervosum centrale|1
+(noun)|central nervous system|CNS|system (generic term)
+systema nervosum periphericum|1
+(noun)|peripheral nervous system|system (generic term)
+systema respiratorium|1
+(noun)|respiratory system|system (generic term)
+systema skeletale|1
+(noun)|skeletal system|skeleton|frame|system (generic term)
+systema urogenitale|1
+(noun)|urogenital system|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|apparatus urogenitalis|system (generic term)
+systematic|2
+(adj)|in order (similar term)|systematized (similar term)|systematised (similar term)|tabular (similar term)|organized (related term)|regular (related term)|unsystematic (antonym)
+(adj)|orderly|nonrandom (similar term)
+systematic desensitisation|1
+(noun)|desensitization technique|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitization|behavior therapy (generic term)|behavior modification (generic term)
+systematic desensitization|1
+(noun)|desensitization technique|desensitisation technique|desensitization procedure|desensitisation procedure|systematic desensitisation|behavior therapy (generic term)|behavior modification (generic term)
+systematically|1
+(adv)|consistently|unsystematically (antonym)|inconsistently (antonym)
+systematics|1
+(noun)|science (generic term)|scientific discipline (generic term)
+systematisation|1
+(noun)|systematization|rationalization|rationalisation|organization (generic term)|organisation (generic term)
+systematise|1
+(verb)|systematize|systemize|systemise|order (generic term)
+systematised|1
+(adj)|systematized|systematic (similar term)
+systematiser|1
+(noun)|orderer|systematizer|systemizer|systemiser|systematist|organizer (generic term)|organiser (generic term)|arranger (generic term)
+systematism|1
+(noun)|practice (generic term)|pattern (generic term)
+systematist|2
+(noun)|taxonomist|taxonomer|biologist (generic term)|life scientist (generic term)
+(noun)|orderer|systematizer|systematiser|systemizer|systemiser|organizer (generic term)|organiser (generic term)|arranger (generic term)
+systematization|1
+(noun)|systematisation|rationalization|rationalisation|organization (generic term)|organisation (generic term)
+systematize|1
+(verb)|systematise|systemize|systemise|order (generic term)
+systematized|1
+(adj)|systematised|systematic (similar term)
+systematizer|1
+(noun)|orderer|systematiser|systemizer|systemiser|systematist|organizer (generic term)|organiser (generic term)|arranger (generic term)
+systeme international|1
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+systeme international d'unites|1
+(noun)|Systeme International d'Unites|Systeme International|SI system|SI|International System of Units|International System|metric system (generic term)
+systemic|1
+(adj)|general (similar term)
+systemic circulation|1
+(noun)|circulation (generic term)
+systemic lupus erythematosus|1
+(noun)|SLE|disseminated lupus erythematosus|lupus (generic term)
+systemise|1
+(verb)|systematize|systematise|systemize|order (generic term)
+systemiser|1
+(noun)|orderer|systematizer|systematiser|systemizer|systematist|organizer (generic term)|organiser (generic term)|arranger (generic term)
+systemize|1
+(verb)|systematize|systematise|systemise|order (generic term)
+systemizer|1
+(noun)|orderer|systematizer|systematiser|systemiser|systematist|organizer (generic term)|organiser (generic term)|arranger (generic term)
+systems analysis|1
+(noun)|analysis (generic term)|analytic thinking (generic term)
+systems analyst|1
+(noun)|analyst (generic term)
+systems program|1
+(noun)|system program|systems software|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+systems software|1
+(noun)|system program|systems program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+systole|1
+(noun)|pulse (generic term)|pulsation (generic term)|heartbeat (generic term)|beat (generic term)
+systolic|1
+(adj)|pulse|pulsation|heartbeat|beat (related term)
+systolic murmur|1
+(noun)|heart murmur (generic term)|cardiac murmur (generic term)|murmur (generic term)
+systolic pressure|1
+(noun)|blood pressure (generic term)
+syzygium|1
+(noun)|Syzygium|genus Syzygium|dicot genus (generic term)|magnoliopsid genus (generic term)
+syzygium aromaticum|1
+(noun)|clove|clove tree|Syzygium aromaticum|Eugenia aromaticum|Eugenia caryophyllatum|spice tree (generic term)
+syzygy|1
+(noun)|physical phenomenon (generic term)
+szechuan|1
+(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state (generic term)|province (generic term)
+szechwan|1
+(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state (generic term)|province (generic term)
+szechwan province|1
+(noun)|Szechwan|Sichuan|Szechuan|Szechwan province|state (generic term)|province (generic term)
+szell|1
+(noun)|Szell|George Szell|conductor (generic term)|music director (generic term)|director (generic term)
+szent-gyorgyi|1
+(noun)|Szent-Gyorgyi|Albert Szent-Gyorgyi|Albert von Szent-Gyorgyi|biochemist (generic term)
+szilard|1
+(noun)|Szilard|Leo Szilard|nuclear physicist (generic term)|molecular biologist (generic term)
+t|7
+(noun)|thymine|T|pyrimidine (generic term)
+(noun)|deoxythymidine monophosphate|T|nucleotide (generic term)
+(noun)|metric ton|MT|tonne|metric weight unit (generic term)|weight unit (generic term)
+(noun)|terabyte|T|TB|computer memory unit (generic term)
+(noun)|T|letter t|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|triiodothyronine|liothyronine|T|thyroid hormone (generic term)
+(noun)|thyroxine|thyroxin|tetraiodothyronine|T|thyroid hormone (generic term)
+t'ai chi|1
+(noun)|tai chi|t'ai chi chuan|tai chi chuan|taichi|taichichuan|martial art (generic term)
+t'ai chi chuan|1
+(noun)|t'ai chi|tai chi|tai chi chuan|taichi|taichichuan|martial art (generic term)
+t'ien-ching|1
+(noun)|Tianjin|Tientsin|T'ien-ching|city (generic term)|metropolis (generic term)|urban center (generic term)
+t-bar|1
+(noun)|T-bar lift|T-bar|Alpine lift|surface lift (generic term)
+t-bar lift|1
+(noun)|T-bar lift|T-bar|Alpine lift|surface lift (generic term)
+t-bill|1
+(noun)|Treasury bill|T-bill|Treasuries (generic term)|Treasury obligations (generic term)
+t-bone steak|1
+(noun)|T-bone steak|beefsteak (generic term)
+t-junction|1
+(noun)|T-junction|junction (generic term)
+t-man|1
+(noun)|T-man|government agent (generic term)
+t-network|1
+(noun)|T-network|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+t-scope|1
+(noun)|tachistoscope|scientific instrument (generic term)
+t-shaped|1
+(adj)|T-shaped|formed (similar term)
+t-shirt|1
+(noun)|jersey|T-shirt|tee shirt|shirt (generic term)
+t-square|1
+(noun)|T-square|square (generic term)|drafting instrument (generic term)
+t. e. lawrence|1
+(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier (generic term)|writer (generic term)|author (generic term)
+t. h. white|1
+(noun)|White|T. H. White|Theodore Harold White|journalist (generic term)
+t. s. eliot|1
+(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet (generic term)|dramatist (generic term)|playwright (generic term)
+t.b.|1
+(noun)|tuberculosis|TB|T.B.|infectious disease (generic term)
+t cell|1
+(noun)|T cell|T lymphocyte|lymphocyte (generic term)|lymph cell (generic term)
+t hinge|1
+(noun)|tee hinge|T hinge|hinge (generic term)|flexible joint (generic term)
+t lymphocyte|1
+(noun)|T cell|T lymphocyte|lymphocyte (generic term)|lymph cell (generic term)
+ta|1
+(noun)|tantalum|Ta|atomic number 73|metallic element (generic term)|metal (generic term)
+ta'ziyeh|1
+(noun)|Ta'ziyeh|music (generic term)
+taal|1
+(noun)|Afrikaans|Taal|South African Dutch|Dutch (generic term)
+tab|5
+(noun)|check|chit|bill (generic term)|account (generic term)|invoice (generic term)
+(noun)|yellow journalism|tabloid|journalism (generic term)|news media (generic term)|fourth estate (generic term)
+(noun)|tab key|key (generic term)
+(noun)|strip (generic term)|slip (generic term)
+(noun)|pill|lozenge|tablet|dose (generic term)
+tab key|1
+(noun)|tab|key (generic term)
+tabanidae|1
+(noun)|Tabanidae|family Tabanidae|arthropod family (generic term)
+tabard|1
+(noun)|tunic (generic term)
+tabasco|3
+(noun)|Tabasco|state (generic term)|province (generic term)
+(noun)|Tabasco|Tabasco sauce|hot sauce (generic term)
+(noun)|red pepper|hot pepper (generic term)
+tabasco pepper|1
+(noun)|hot pepper|tabasco plant|Capsicum frutescens|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+tabasco plant|1
+(noun)|tabasco pepper|hot pepper|Capsicum frutescens|capsicum (generic term)|pepper (generic term)|capsicum pepper plant (generic term)
+tabasco sauce|1
+(noun)|Tabasco|Tabasco sauce|hot sauce (generic term)
+tabbouleh|1
+(noun)|tabooli|salad (generic term)
+tabby|3
+(adj)|brindled|brindle|brinded|patterned (similar term)
+(noun)|tabby cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+(noun)|queen|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tabby cat|1
+(noun)|tabby|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tabernacle|3
+(noun)|Tabernacle|Mormon Tabernacle|temple (generic term)
+(noun)|Tabernacle|sanctuary (generic term)
+(noun)|synagogue|temple|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+tabernacles|1
+(noun)|Succoth|Sukkoth|Succos|Feast of Booths|Feast of Tabernacles|Tabernacles|religious festival (generic term)|church festival (generic term)|Jewish holy day (generic term)
+tabernaemontana|1
+(noun)|Tabernaemontana|genus Tabernaemontana|dicot genus (generic term)|magnoliopsid genus (generic term)
+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 (generic term)|bush (generic term)
+tabes|1
+(noun)|atrophy (generic term)|wasting (generic term)|wasting away (generic term)
+tabes dorsalis|1
+(noun)|locomotor ataxia|neurosyphilis (generic term)
+tabi|1
+(noun)|tabis|sock (generic term)
+tabis|1
+(noun)|tabi|sock (generic term)
+tablature|1
+(noun)|musical notation (generic term)
+table|6
+(noun)|tabular array|array (generic term)
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|mesa|tableland (generic term)|plateau (generic term)
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|board|fare (generic term)
+(verb)|postpone|prorogue|hold over|put over|shelve|set back|defer|remit|put off|delay (generic term)
+table-mountain pine|1
+(noun)|prickly pine|hickory pine|Pinus pungens|pine (generic term)|pine tree (generic term)|true pine (generic term)
+table-tennis bat|1
+(noun)|table-tennis racquet|pingpong paddle|paddle (generic term)
+table-tennis racquet|1
+(noun)|table-tennis bat|pingpong paddle|paddle (generic term)
+table-tennis table|1
+(noun)|ping-pong table|pingpong table|table (generic term)
+table d'hote|2
+(adj)|prix fixe|a la carte (antonym)
+(noun)|menu (generic term)|bill of fare (generic term)|card (generic term)|carte du jour (generic term)|carte (generic term)
+table game|1
+(noun)|game (generic term)
+table knife|1
+(noun)|knife (generic term)|cutlery (generic term)|eating utensil (generic term)
+table lamp|1
+(noun)|lamp (generic term)
+table lifting|1
+(noun)|table tipping|table tilting|table turning|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table linen|1
+(noun)|napery|linen (generic term)
+table mat|1
+(noun)|hot pad|pad (generic term)
+table mustard|1
+(noun)|mustard|condiment (generic term)
+table napkin|1
+(noun)|napkin|serviette|table linen (generic term)|napery (generic term)
+table of contents|1
+(noun)|contents|list (generic term)|listing (generic term)|table (generic term)|tabular array (generic term)
+table rapping|1
+(noun)|table tapping|spirit rapping|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table salt|1
+(noun)|salt|common salt|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+table saw|1
+(noun)|circular saw (generic term)|buzz saw (generic term)
+table service|1
+(noun)|service|tableware (generic term)
+table talk|1
+(noun)|conversation (generic term)
+table tapping|1
+(noun)|table rapping|spirit rapping|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table tennis|1
+(noun)|Ping-Pong|table game (generic term)
+table tilting|1
+(noun)|table tipping|table turning|table lifting|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table tipping|1
+(noun)|table tilting|table turning|table lifting|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table turning|1
+(noun)|table tipping|table tilting|table lifting|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+table wine|1
+(noun)|wine (generic term)|vino (generic term)
+tableau|2
+(noun)|tableau vivant|arrangement (generic term)
+(noun)|view (generic term)|aspect (generic term)|prospect (generic term)|scene (generic term)|vista (generic term)|panorama (generic term)
+tableau vivant|1
+(noun)|tableau|arrangement (generic term)
+tablecloth|1
+(noun)|table linen (generic term)|napery (generic term)
+tablefork|1
+(noun)|fork (generic term)
+tableland|1
+(noun)|plateau|highland (generic term)|upland (generic term)
+tablemate|1
+(noun)|dining companion|diner (generic term)
+tablespoon|2
+(noun)|tablespoonful|containerful (generic term)
+(noun)|spoon (generic term)
+tablespoonful|1
+(noun)|tablespoon|containerful (generic term)
+tablet|4
+(noun)|slab (generic term)
+(noun)|pad|pad of paper|paper (generic term)
+(noun)|cake (generic term)|bar (generic term)
+(noun)|pill|lozenge|tab|dose (generic term)
+tablet-armed chair|1
+(noun)|chair (generic term)
+tabletop|1
+(noun)|work surface (generic term)
+tableware|1
+(noun)|ware (generic term)
+tabloid|2
+(noun)|yellow journalism|tab|journalism (generic term)|news media (generic term)|fourth estate (generic term)
+(noun)|rag|sheet|newspaper (generic term)|paper (generic term)
+taboo|5
+(adj)|forbidden|out|prohibited|proscribed|tabu|verboten|impermissible (similar term)
+(adj)|tabu|sacred (similar term)
+(noun)|tabu|bias (generic term)|prejudice (generic term)|preconception (generic term)
+(noun)|tabu|inhibition (generic term)
+(verb)|restrict (generic term)
+tabooli|1
+(noun)|tabbouleh|salad (generic term)
+tabor|1
+(noun)|tabour|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tabor pipe|1
+(noun)|pipe|flageolet (generic term)|treble recorder (generic term)|shepherd's pipe (generic term)
+tabora|1
+(noun)|Tabora|city (generic term)|metropolis (generic term)|urban center (generic term)
+taboret|1
+(noun)|tabouret|stool (generic term)
+tabour|1
+(noun)|tabor|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tabouret|1
+(noun)|taboret|stool (generic term)
+tabriz|1
+(noun)|Tabriz|city (generic term)|metropolis (generic term)|urban center (generic term)
+tabu|4
+(adj)|taboo|sacred (similar term)
+(adj)|forbidden|out|prohibited|proscribed|taboo|verboten|impermissible (similar term)
+(noun)|taboo|bias (generic term)|prejudice (generic term)|preconception (generic term)
+(noun)|taboo|inhibition (generic term)
+tabuk|1
+(noun)|Tabuk|city (generic term)|metropolis (generic term)|urban center (generic term)
+tabula rasa|2
+(noun)|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+(noun)|fresh start|clean slate|opportunity (generic term)|chance (generic term)
+tabular|2
+(adj)|systematic (similar term)
+(adj)|planar (similar term)|two-dimensional (similar term)
+tabular array|1
+(noun)|table|array (generic term)
+tabular matter|1
+(noun)|tabulation|information (generic term)|info (generic term)
+tabularise|1
+(verb)|tabularize|tabulate|arrange (generic term)|set (generic term)
+tabularize|1
+(verb)|tabularise|tabulate|arrange (generic term)|set (generic term)
+tabulate|2
+(verb)|tabularize|tabularise|arrange (generic term)|set (generic term)
+(verb)|shape (generic term)|form (generic term)
+tabulation|2
+(noun)|tabular matter|information (generic term)|info (generic term)
+(noun)|investigation (generic term)|investigating (generic term)
+tabulator|1
+(noun)|counter|calculator (generic term)|calculating machine (generic term)
+tabun|1
+(noun)|GA|organophosphate nerve agent (generic term)
+tacamahac|1
+(noun)|balsam poplar|hackmatack|Populus balsamifera|poplar (generic term)|poplar tree (generic term)
+tacca|1
+(noun)|Tacca|genus Tacca|liliid monocot genus (generic term)
+tacca leontopetaloides|1
+(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb (generic term)|herbaceous plant (generic term)
+tacca pinnatifida|1
+(noun)|pia|Indian arrowroot|Tacca leontopetaloides|Tacca pinnatifida|herb (generic term)|herbaceous plant (generic term)
+taccaceae|1
+(noun)|Taccaceae|family Taccaceae|liliid monocot family (generic term)
+tach|1
+(noun)|tachometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tacheometer|1
+(noun)|tachymeter|theodolite (generic term)|transit (generic term)
+tachina fly|1
+(noun)|fly (generic term)
+tachinidae|1
+(noun)|Tachinidae|family Tachinidae|arthropod family (generic term)
+tachistoscope|1
+(noun)|t-scope|scientific instrument (generic term)
+tachogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+tachograph|1
+(noun)|tachometer (generic term)|tach (generic term)
+tachometer|1
+(noun)|tach|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tachycardia|1
+(noun)|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+tachyglossidae|1
+(noun)|Tachyglossidae|family Tachyglossidae|mammal family (generic term)
+tachyglossus|1
+(noun)|Tachyglossus|genus Tachyglossus|mammal genus (generic term)
+tachygraphy|1
+(noun)|shorthand|stenography|handwriting (generic term)|hand (generic term)|script (generic term)
+tachylite|1
+(noun)|volcanic glass (generic term)
+tachymeter|1
+(noun)|tacheometer|theodolite (generic term)|transit (generic term)
+tachypleus|1
+(noun)|Tachypleus|genus Tachypleus|arthropod genus (generic term)
+tacit|1
+(adj)|implied|silent|understood|implicit (similar term)|inexplicit (similar term)
+tacit consent|1
+(noun)|connivance|secret approval|approval (generic term)|commendation (generic term)
+taciturn|1
+(adj)|buttoned-up (similar term)|reticent (similar term)|untalkative (similar term)|concise (related term)|uncommunicative (related term)|incommunicative (related term)|voluble (antonym)
+taciturnity|1
+(noun)|reserve|reticence|uncommunicativeness (generic term)
+taciturnly|1
+(adv)|mutely|wordlessly|silently
+tacitus|1
+(noun)|Tacitus|Publius Cornelius Tacitus|Gaius Cornelius Tacitus|historian (generic term)|historiographer (generic term)
+tack|12
+(noun)|bearing (generic term)|heading (generic term)|aim (generic term)
+(noun)|nail (generic term)
+(noun)|stable gear|saddlery|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|sheet|mainsheet|weather sheet|shroud|line (generic term)
+(noun)|tacking|change of course (generic term)
+(noun)|sailing (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|tack on (related term)
+(verb)|wear round|sail (generic term)
+(verb)|assemble|piece|put together|set up|tack together|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+(verb)|baste|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+(verb)|append|tag on|tack on|hang on|attach (generic term)
+(verb)|interchange|switch|alternate|flip|flip-flop|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+tack hammer|1
+(noun)|hammer (generic term)
+tack on|1
+(verb)|append|tag on|tack|hang on|attach (generic term)
+tack together|1
+(verb)|assemble|piece|put together|set up|tack|join (generic term)|bring together (generic term)|make (generic term)|create (generic term)|disassemble (antonym)
+tacker|3
+(noun)|worker (generic term)
+(noun)|baster|sewer (generic term)
+(noun)|staple gun|staplegun|machine (generic term)
+tackiness|2
+(noun)|cohesiveness|glueyness|gluiness|gumminess|ropiness|viscidity|viscidness|viscosity (generic term)|viscousness (generic term)
+(noun)|cheapness|tat|sleaze|tastelessness (generic term)
+tacking|2
+(noun)|baste|basting|stitch (generic term)
+(noun)|tack|change of course (generic term)
+tackle|7
+(noun)|rigging|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|fishing gear|fishing tackle|fishing rig|rig|gear (generic term)|paraphernalia (generic term)|appurtenance (generic term)
+(noun)|lineman (generic term)
+(noun)|football play (generic term)
+(verb)|undertake|take on|confront (generic term)|face up (generic term)|face (generic term)
+(verb)|harness|attach (generic term)|unharness (antonym)
+(verb)|attack (generic term)|aggress (generic term)
+tackler|1
+(noun)|football player (generic term)|footballer (generic term)
+tacky|2
+(adj)|wet (similar term)
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tatty|tawdry|trashy|tasteless (similar term)
+taco|2
+(noun)|greaser|wetback|Mexican (generic term)
+(noun)|dish (generic term)
+taco sauce|1
+(noun)|condiment (generic term)
+tacoma|1
+(noun)|Tacoma|city (generic term)|metropolis (generic term)|urban center (generic term)
+tacoma narrows bridge|1
+(noun)|Tacoma Narrows Bridge|suspension bridge (generic term)
+taconic mountains|1
+(noun)|Taconic Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+taconite|1
+(noun)|chert (generic term)|iron ore (generic term)
+tact|1
+(noun)|tactfulness|consideration (generic term)|considerateness (generic term)|thoughtfulness (generic term)|tactlessness (antonym)
+tactful|2
+(adj)|discerning (similar term)|discreet (similar term)|considerate (related term)|tactless (antonym)
+(adj)|kid-glove|diplomatic (similar term)|diplomatical (similar term)
+tactfully|1
+(adv)|tactlessly (antonym)
+tactfulness|1
+(noun)|tact|consideration (generic term)|considerateness (generic term)|thoughtfulness (generic term)|tactlessness (antonym)
+tactic|1
+(noun)|tactics|maneuver|manoeuvre|plan of action (generic term)
+tactical|1
+(adj)|plan of action (related term)|military science (related term)
+tactical intelligence|1
+(noun)|combat intelligence|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+tactical maneuver|1
+(noun)|maneuver|manoeuvre|tactical manoeuvre|move (generic term)
+tactical manoeuvre|1
+(noun)|maneuver|manoeuvre|tactical maneuver|move (generic term)
+tactical warning|1
+(noun)|warning (generic term)
+tactician|1
+(noun)|planner (generic term)|contriver (generic term)|deviser (generic term)
+tactics|2
+(noun)|military science (generic term)
+(noun)|tactic|maneuver|manoeuvre|plan of action (generic term)
+tactile|2
+(adj)|haptic|tactual|somatosense|exteroception (related term)|perception (related term)
+(adj)|tactual|tangible (similar term)|touchable (similar term)
+tactile agnosia|1
+(noun)|astereognosis|agnosia (generic term)
+tactile property|1
+(noun)|feel|property (generic term)
+tactile sensation|1
+(noun)|touch|touch sensation|tactual sensation|feeling|perception (generic term)
+tactility|1
+(noun)|tactual sensation|touch perception|skin perceptiveness|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+tactless|2
+(adj)|untactful|inconsiderate (related term)|inelegant (related term)|tactful (antonym)
+(adj)|inept|maladroit (similar term)
+tactlessly|1
+(adv)|tactfully (antonym)
+tactlessness|1
+(noun)|inconsideration (generic term)|inconsiderateness (generic term)|thoughtlessness (generic term)|tactfulness (antonym)
+tactual|2
+(adj)|haptic|tactile|somatosense|exteroception (related term)|perception (related term)
+(adj)|tactile|tangible (similar term)|touchable (similar term)
+tactual exploration|1
+(noun)|palpation|examination (generic term)|scrutiny (generic term)|touch (generic term)|touching (generic term)
+tactual sensation|2
+(noun)|touch|touch sensation|tactile sensation|feeling|perception (generic term)
+(noun)|tactility|touch perception|skin perceptiveness|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+tactually|1
+(adv)|haptically
+tad|1
+(noun)|shade|small indefinite quantity (generic term)|small indefinite amount (generic term)
+tadalafil|1
+(noun)|Cialis|virility drug (generic term)|anti-impotence drug (generic term)
+tadarida|1
+(noun)|Tadarida|genus Tadarida|mammal genus (generic term)
+tadarida brasiliensis|1
+(noun)|guano bat|Mexican freetail bat|Tadarida brasiliensis|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+tadeus reichstein|1
+(noun)|Reichstein|Tadeus Reichstein|chemist (generic term)
+tadeusz andrzej bonawentura kosciuszko|1
+(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot (generic term)|nationalist (generic term)|soldier (generic term)
+tadirida femorosacca|1
+(noun)|pocketed bat|pocketed freetail bat|Tadirida femorosacca|freetail (generic term)|free-tailed bat (generic term)|freetailed bat (generic term)
+tadjik|1
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+tadorna|1
+(noun)|Tadorna|genus Tadorna|bird genus (generic term)
+tadpole|1
+(noun)|polliwog|pollywog|larva (generic term)
+tadpole-like|1
+(adj)|animal (similar term)
+tadpole-shaped|1
+(adj)|formed (similar term)
+tadpole shrimp|1
+(noun)|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+tadzhik|4
+(noun)|Tajik|Tadzhik|Asian (generic term)|Asiatic (generic term)
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+(noun)|Tajik|Tadzhik|ethnic group (generic term)|ethnos (generic term)
+(noun)|Tajiki|Tajik|Tadzhik|Iranian (generic term)|Iranian language (generic term)
+tadzhikistan|1
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+tae kwon do|1
+(noun)|taekwondo|martial art (generic term)
+taegu|1
+(noun)|Taegu|Tegu|city (generic term)|metropolis (generic term)|urban center (generic term)
+taekwondo|1
+(noun)|tae kwon do|martial art (generic term)
+tael|1
+(noun)|weight unit (generic term)|weight (generic term)
+taenia|2
+(noun)|tenia|fillet|headband (generic term)
+(noun)|tapeworm (generic term)|cestode (generic term)
+taeniidae|1
+(noun)|Taeniidae|family Taeniidae|worm family (generic term)
+taffeta|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+taffeta weave|1
+(noun)|plain weave|weave (generic term)
+taffrail|1
+(noun)|railing (generic term)|rail (generic term)
+taffrail log|1
+(noun)|patent log|screw log|log (generic term)
+taffy|1
+(noun)|candy (generic term)|confect (generic term)
+taffy apple|1
+(noun)|candied apple|candy apple|caramel apple|toffee apple|sweet (generic term)|confection (generic term)
+taft|2
+(noun)|Taft|Lorado Taft|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+(noun)|Taft|William Howard Taft|President Taft|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)|chief justice (generic term)
+tag|9
+(noun)|label (generic term)
+(noun)|rag|shred|tag end|tatter|piece of cloth (generic term)|piece of material (generic term)
+(noun)|child's game (generic term)
+(noun)|touch (generic term)|touching (generic term)
+(verb)|label|mark|attach (generic term)|mark down (related term)|mark up (related term)
+(verb)|touch (generic term)
+(verb)|name (generic term)|call (generic term)
+(verb)|chase|chase after|trail|tail|give chase|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|rhyme (generic term)|rime (generic term)
+tag along|1
+(verb)|accompany (generic term)
+tag end|1
+(noun)|rag|shred|tag|tatter|piece of cloth (generic term)|piece of material (generic term)
+tag line|1
+(noun)|punch line|laugh line|gag line|line (generic term)
+tag on|1
+(verb)|append|tack on|tack|hang on|attach (generic term)
+tagalog|2
+(noun)|Tagalog|Filipino (generic term)
+(noun)|Tagalog|Philippine (generic term)|Filipino (generic term)
+tagalong|1
+(noun)|hanger-on|follower (generic term)
+tagamet|1
+(noun)|cimetidine|Tagamet|histamine blocker (generic term)|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+tagasaste|1
+(noun)|Chamaecytisus palmensis|Cytesis proliferus|shrub (generic term)|bush (generic term)
+tagetes erecta|1
+(noun)|African marigold|big marigold|Aztec marigold|Tagetes erecta|marigold (generic term)
+tagetes patula|1
+(noun)|French marigold|Tagetes patula|marigold (generic term)
+tageteste|1
+(noun)|Tageteste|genus Tagetes|asterid dicot genus (generic term)
+tagged|1
+(adj)|labeled|labelled|unlabeled (antonym)
+tagger|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|tagging program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+tagging program|1
+(noun)|tagger|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+tagliatelle|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+tagore|1
+(noun)|Tagore|Rabindranath Tagore|Sir Rabindranath Tagore|writer (generic term)|author (generic term)|philosopher (generic term)
+taguan|1
+(noun)|flying marmot|flying cat|Petaurista petaurista|Asiatic flying squirrel (generic term)
+tagus|1
+(noun)|Tagus|Tagus River|river (generic term)
+tagus river|1
+(noun)|Tagus|Tagus River|river (generic term)
+tahini|1
+(noun)|spread (generic term)|paste (generic term)
+tahiti|1
+(noun)|Tahiti|island (generic term)
+tahitian|3
+(adj)|Tahitian|island (related term)
+(noun)|Tahitian|Polynesian (generic term)
+(noun)|Tahitian|Oceanic (generic term)|Eastern Malayo-Polynesian (generic term)
+tahoka daisy|1
+(noun)|tansy leaf aster|Machaeranthera tanacetifolia|wildflower (generic term)|wild flower (generic term)
+tai|5
+(adj)|Thai|Tai|Siamese|Asian|Asiatic (related term)
+(adj)|Thai|Tai|Siamese|Tai (related term)
+(adj)|Thai|Tai|Siamese|Asian country|Asian nation (related term)
+(noun)|Thai|Tai|Siamese|Asian (generic term)|Asiatic (generic term)
+(noun)|Tai|Kadai (generic term)|Kam-Tai (generic term)|Kadai language (generic term)
+tai chi|1
+(noun)|t'ai chi|t'ai chi chuan|tai chi chuan|taichi|taichichuan|martial art (generic term)
+tai chi chuan|1
+(noun)|t'ai chi|tai chi|t'ai chi chuan|taichi|taichichuan|martial art (generic term)
+tai dam|1
+(noun)|Tai Dam|Black Tai|Tai (generic term)
+tai long|1
+(noun)|Tai Long|Shan|Tai (generic term)
+tai lue|1
+(noun)|Tai Lue|Xishuangbanna Dai|Tai (generic term)
+tai nuea|1
+(noun)|Tai Nuea|Chinese Shan|Dehong Dai|Tai (generic term)
+tai yuan|1
+(noun)|Tai Yuan|Kam Muang|Tai (generic term)
+taichi|1
+(noun)|t'ai chi|tai chi|t'ai chi chuan|tai chi chuan|taichichuan|martial art (generic term)
+taichichuan|1
+(noun)|t'ai chi|tai chi|t'ai chi chuan|tai chi chuan|taichi|martial art (generic term)
+taichung|1
+(noun)|Taichung|city (generic term)|metropolis (generic term)|urban center (generic term)
+taif|1
+(noun)|Taif|city (generic term)|metropolis (generic term)|urban center (generic term)
+tail|11
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+(noun)|fag end|tail end|end (generic term)|ending (generic term)
+(noun)|tail end|projection (generic term)
+(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 (generic term)
+(noun)|shadow|shadower|follower (generic term)|spy (generic term)
+(noun)|reverse (generic term)|verso (generic term)|head (antonym)
+(noun)|tail assembly|empennage|rear (generic term)|back (generic term)
+(noun)|stern|after part|quarter|poop|rear (generic term)|back (generic term)
+(verb)|chase|chase after|trail|tag|give chase|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|dock|bob|cut (generic term)
+(verb)|top (generic term)|pinch (generic term)
+tail-flower|1
+(noun)|anthurium|tailflower|houseplant (generic term)
+tail-shaped|1
+(adj)|caudate (similar term)|caudated (similar term)
+tail assembly|1
+(noun)|tail|empennage|rear (generic term)|back (generic term)
+tail bone|1
+(noun)|coccyx|bone (generic term)|os (generic term)
+tail coat|1
+(noun)|dress suit|full dress|tailcoat|tails|white tie|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+tail end|3
+(noun)|fag end|tail|end (generic term)|ending (generic term)
+(noun)|tail|projection (generic term)
+(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 (generic term)
+tail feather|1
+(noun)|flight feather (generic term)|pinion (generic term)|quill (generic term)|quill feather (generic term)
+tail fin|3
+(noun)|vertical stabilizer|vertical stabiliser|vertical fin|tailfin|stabilizer (generic term)
+(noun)|tailfin|fin|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|caudal fin|fin (generic term)
+tail gate|1
+(noun)|gate (generic term)
+tail lamp|1
+(noun)|taillight|rear light|rear lamp|lamp (generic term)
+tail rotor|1
+(noun)|anti-torque rotor|rotor (generic term)
+tailback|1
+(noun)|back (generic term)
+tailboard|1
+(noun)|tailgate|gate (generic term)
+tailcoat|1
+(noun)|dress suit|full dress|tail coat|tails|white tie|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+tailed|1
+(adj)|caudate (similar term)|caudated (similar term)
+tailed frog|1
+(noun)|bell toad|ribbed toad|tailed toad|Ascaphus trui|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tailed toad|1
+(noun)|tailed frog|bell toad|ribbed toad|Ascaphus trui|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tailfin|2
+(noun)|vertical stabilizer|vertical stabiliser|vertical fin|tail fin|stabilizer (generic term)
+(noun)|tail fin|fin|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+tailflower|1
+(noun)|anthurium|tail-flower|houseplant (generic term)
+tailgate|2
+(noun)|tailboard|gate (generic term)
+(verb)|follow (generic term)
+tailgater|1
+(noun)|driver (generic term)
+tailing|2
+(adj)|shadowing|following (similar term)
+(noun)|shadowing|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+tailless|1
+(adj)|anurous|acaudate (similar term)|acaudal (similar term)
+tailless tenrec|1
+(noun)|Tenrec ecaudatus|tenrec (generic term)|tendrac (generic term)
+taillight|1
+(noun)|tail lamp|rear light|rear lamp|lamp (generic term)
+taillike|1
+(adj)|caudal|caudate (similar term)|caudated (similar term)
+tailor|4
+(noun)|seamster|sartor|garmentmaker (generic term)|garment-worker (generic term)|garment worker (generic term)
+(verb)|shoehorn|adapt (generic term)|accommodate (generic term)
+(verb)|cut|design (generic term)
+(verb)|sew|tailor-make|fashion (generic term)|forge (generic term)
+tailor's chalk|1
+(noun)|chalk (generic term)
+tailor's tack|1
+(noun)|stitch (generic term)
+tailor-made|2
+(adj)|bespoke|bespoken|made-to-order|tailored|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+tailor-make|2
+(verb)|sew|tailor|fashion (generic term)|forge (generic term)
+(verb)|custom-make|customize|customise|produce (generic term)|make (generic term)|create (generic term)
+tailorbird|1
+(noun)|Orthotomus sutorius|Old World warbler (generic term)|true warbler (generic term)
+tailored|2
+(adj)|trim|plain (similar term)
+(adj)|bespoke|bespoken|made-to-order|tailor-made|custom-made (similar term)|customized (similar term)|custom (similar term)|customised (similar term)
+tailoring|1
+(noun)|trade (generic term)|craft (generic term)
+tailpiece|1
+(noun)|appendage (generic term)
+tailpipe|1
+(noun)|pipe (generic term)|pipage (generic term)|piping (generic term)
+tailplane|1
+(noun)|horizontal stabilizer|horizontal stabiliser|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+tailrace|1
+(noun)|watercourse (generic term)|waterway (generic term)
+tails|1
+(noun)|dress suit|full dress|tailcoat|tail coat|white tie|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+tailspin|2
+(noun)|agitation (generic term)
+(noun)|spin|acrobatics (generic term)|aerobatics (generic term)|stunting (generic term)|stunt flying (generic term)
+tailstock|1
+(noun)|support (generic term)
+tailwind|1
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+tailwort|1
+(noun)|borage|Borago officinalis|herb (generic term)|herbaceous plant (generic term)
+taimyr peninsula|1
+(noun)|Taimyr Peninsula|Taymyr Peninsula|peninsula (generic term)
+taint|3
+(noun)|contamination|impurity (generic term)|impureness (generic term)
+(verb)|defile|sully|corrupt|cloud|mar (generic term)|impair (generic term)|spoil (generic term)|deflower (generic term)|vitiate (generic term)
+(verb)|infect|pollute (generic term)|foul (generic term)|contaminate (generic term)|disinfect (antonym)
+tainted|2
+(adj)|corrupt|rotten (similar term)
+(adj)|besmirched|damaged|flyblown|spotted|stained|sullied|tarnished|blemished (similar term)
+taipan|1
+(noun)|Oxyuranus scutellatus|elapid (generic term)|elapid snake (generic term)
+taipeh|1
+(noun)|Taipei|Taipeh|capital of Taiwan|national capital (generic term)
+taipei|1
+(noun)|Taipei|Taipeh|capital of Taiwan|national capital (generic term)
+taira|1
+(noun)|tayra|Eira barbara|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+taiwan|2
+(noun)|Taiwan|China|Nationalist China|Republic of China|island (generic term)
+(noun)|Taiwan|Formosa|island (generic term)
+taiwan dollar|1
+(noun)|Taiwan dollar|dollar (generic term)
+taiwanese|3
+(adj)|Taiwanese|Chinese|Formosan|island (related term)
+(noun)|Taiwanese|Asian (generic term)|Asiatic (generic term)
+(noun)|Min|Min dialect|Fukien|Fukkianese|Hokkianese|Amoy|Taiwanese|Chinese (generic term)
+taiyuan|1
+(noun)|Taiyuan|city (generic term)|metropolis (generic term)|urban center (generic term)
+taj mahal|1
+(noun)|Taj Mahal|mausoleum (generic term)
+tajik|4
+(noun)|Tajik|Tadzhik|Asian (generic term)|Asiatic (generic term)
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+(noun)|Tajik|Tadzhik|ethnic group (generic term)|ethnos (generic term)
+(noun)|Tajiki|Tajik|Tadzhik|Iranian (generic term)|Iranian language (generic term)
+tajiki|1
+(noun)|Tajiki|Tajik|Tadzhik|Iranian (generic term)|Iranian language (generic term)
+tajikistan|1
+(noun)|Tajikistan|Republic of Tajikistan|Tadzhikistan|Tadzhik|Tadjik|Tajik|Asian country (generic term)|Asian nation (generic term)
+tajikistani|1
+(adj)|Tajikistani|Asian country|Asian nation (related term)
+tajikistani monetary unit|1
+(noun)|Tajikistani monetary unit|monetary unit (generic term)
+taka|1
+(noun)|Bangladeshi monetary unit (generic term)
+takahe|1
+(noun)|notornis|Notornis mantelli|rail (generic term)
+takakkaw|1
+(noun)|Takakkaw|waterfall (generic term)|falls (generic term)
+takayasu's arteritis|1
+(noun)|Takayasu's arteritis|pulseless disease|arteritis (generic term)
+take|41
+(noun)|return|issue|takings|proceeds|yield|payoff|income (generic term)
+(noun)|filming (generic term)|cinematography (generic term)|motion-picture photography (generic term)
+(verb)|act (generic term)|move (generic term)
+(verb)|occupy|use up|use (generic term)|expend (generic term)
+(verb)|lead|direct|conduct|guide
+(verb)|get hold of|take in (related term)|take on (related term)|take up (related term)|take away (related term)|take in (related term)|take apart (related term)
+(verb)|assume|acquire|adopt|take on|change (generic term)
+(verb)|read|interpret (generic term)|construe (generic term)|see (generic term)
+(verb)|bring|convey|transport (generic term)|carry (generic term)|bring forward (related term)|bring down (related term)|bring down (related term)|bring up (related term)|bring on (related term)|bring out (related term)
+(verb)|take out (related term)|take back (related term)|take in (related term)|give (antonym)
+(verb)|necessitate|ask|postulate|need|require|involve|call for|demand|obviate (antonym)
+(verb)|choose|select|pick out|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|accept|have|get (generic term)|acquire (generic term)|take over (related term)|take over (related term)|take up (related term)|take in (related term)|refuse (antonym)
+(verb)|fill|work (generic term)|do work (generic term)
+(verb)|consider|deal|look at|think about (generic term)
+(verb)|experience (generic term)|receive (generic term)|have (generic term)|get (generic term)|undergo (generic term)
+(verb)|film|shoot|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|remove|take away|withdraw|take off (related term)
+(verb)|consume|ingest|take in|have|take up (related term)|abstain (antonym)
+(verb)|undergo|submit|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+(verb)|accept
+(verb)|assume|strike|take up|move (generic term)
+(verb)|accept|admit|take on|accept (generic term)|take (generic term)|have (generic term)
+(verb)|receive (generic term)|get (generic term)|find (generic term)|obtain (generic term)|incur (generic term)
+(verb)|learn|study|read
+(verb)|claim|exact|necessitate (generic term)|ask (generic term)|postulate (generic term)|need (generic term)|require (generic term)|take (generic term)|involve (generic term)|call for (generic term)|demand (generic term)
+(verb)|make|head (generic term)
+(verb)|aim|train|take aim|direct|position (generic term)
+(verb)|become (generic term)|go (generic term)|get (generic term)
+(verb)|carry|pack|have (generic term)|feature (generic term)
+(verb)|lease|rent|hire|charter|engage|get (generic term)|acquire (generic term)
+(verb)|subscribe|subscribe to|buy (generic term)|purchase (generic term)
+(verb)|buy (generic term)|purchase (generic term)|take out (related term)
+(verb)|have|roll in the hay (generic term)|love (generic term)|make out (generic term)|make love (generic term)|sleep with (generic term)|get laid (generic term)|have sex (generic term)|know (generic term)|do it (generic term)|be intimate (generic term)|have intercourse (generic term)|have it away (generic term)|have it off (generic term)|screw (generic term)|fuck (generic term)|jazz (generic term)|eff (generic term)|hump (generic term)|lie with (generic term)|bed (generic term)|have a go at it (generic term)|bang (generic term)|get it on (generic term)|bonk (generic term)
+(verb)|claim|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)|disclaim (antonym)
+(verb)|accept|be (generic term)
+(verb)|contain|hold|be (generic term)
+(verb)|drive|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|win (generic term)
+(verb)|contract|get|sicken (generic term)|come down (generic term)
+take-away|1
+(adj)|takeout|portable (similar term)
+take-home|1
+(adj)|net (similar term)|nett (similar term)
+take-home pay|1
+(noun)|wage (generic term)|pay (generic term)|earnings (generic term)|remuneration (generic term)|salary (generic term)
+take-in|1
+(noun)|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+take-up|2
+(noun)|device (generic term)
+(noun)|tightening (generic term)
+take a bow|2
+(verb)|accept (generic term)
+(verb)|bow (generic term)
+take a breath|1
+(verb)|breathe|respire|suspire|breathe out (related term)|breathe in (related term)
+take a breather|1
+(verb)|rest|breathe|catch one's breath|pause (generic term)|intermit (generic term)|break (generic term)
+take a chance|1
+(verb)|gamble|chance|risk|hazard|take chances|adventure|run a risk|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+take a crap|1
+(verb)|stool|defecate|shit|take a shit|ca-ca|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+take a dare|1
+(verb)|pick up the gauntlet|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+take a dive|1
+(verb)|feign (generic term)|sham (generic term)|pretend (generic term)|affect (generic term)|dissemble (generic term)
+take a firm stand|1
+(verb)|insist
+take a hit|1
+(verb)|snort|drug (generic term)|do drugs (generic term)
+take a hop|1
+(verb)|bounce|resile|spring|bound|rebound|recoil|reverberate|ricochet|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+take a joke|1
+(verb)|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+take a look|1
+(verb)|have a look|get a load|look (generic term)
+take a powder|1
+(verb)|skip town|disappear (generic term)|vanish (generic term)|go away (generic term)
+take a shit|1
+(verb)|stool|defecate|shit|take a crap|ca-ca|crap|make|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+take aback|1
+(verb)|shock|stun|floor|ball over|blow out of the water|surprise (generic term)
+take account|1
+(verb)|appreciate|understand (generic term)|realize (generic term)|realise (generic term)|see (generic term)
+take advantage|2
+(verb)|capitalize|capitalise|profit (generic term)|gain (generic term)|benefit (generic term)
+(verb)|trespass|use (generic term)
+take after|2
+(verb)|resemble (generic term)
+(verb)|follow|imitate (generic term)|copy (generic term)|simulate (generic term)
+take aim|1
+(verb)|aim|take|train|direct|position (generic term)
+take apart|3
+(verb)|disassemble|dismantle|break up|break apart|destroy (generic term)|destruct (generic term)|assemble (antonym)
+(verb)|dismember|discerp|separate (generic term)|divide (generic term)|part (generic term)
+(verb)|analyze|analyse|break down|dissect|synthesize (antonym)
+take arms|1
+(verb)|go to war|take up arms|war (generic term)
+take away|7
+(verb)|bear off|bear away|carry away|carry off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|bring (antonym)
+(verb)|remove|take|withdraw|take off (related term)
+(verb)|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|add (antonym)
+(verb)|take (generic term)
+(verb)|take out|eat (generic term)
+(verb)|remove
+(verb)|detract|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+take back|6
+(verb)|return|bring back|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|repossess|take (generic term)
+(verb)|relate (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|swallow|unsay|withdraw|renounce (generic term)|repudiate (generic term)
+(verb)|remind (generic term)
+take care|3
+(verb)|act (generic term)|move (generic term)
+(verb)|mind|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|attend|look|see|care (generic term)|give care (generic term)
+take chances|1
+(verb)|gamble|chance|risk|hazard|adventure|run a risk|take a chance|try (generic term)|seek (generic term)|attempt (generic term)|essay (generic term)|assay (generic term)
+take charge|1
+(verb)|take hold|take control|head (generic term)|lead (generic term)
+take control|1
+(verb)|take hold|take charge|head (generic term)|lead (generic term)
+take down|4
+(verb)|lower|let down|get down|bring down|move (generic term)|displace (generic term)|raise (antonym)
+(verb)|degrade|disgrace|demean|put down|humiliate (generic term)|mortify (generic term)|chagrin (generic term)|humble (generic term)|abase (generic term)
+(verb)|level|raze|rase|dismantle|tear down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+(verb)|note|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+take effect|1
+(verb)|become (generic term)|go (generic term)|get (generic term)
+take exception|1
+(verb)|challenge|object (generic term)
+take fire|1
+(verb)|erupt|ignite|catch fire|combust|conflagrate|change state (generic term)|turn (generic term)
+take five|1
+(verb)|pause (generic term)|intermit (generic term)|break (generic term)
+take flight|1
+(verb)|flee|fly|scat (generic term)|run (generic term)|scarper (generic term)|turn tail (generic term)|lam (generic term)|run away (generic term)|hightail it (generic term)|bunk (generic term)|head for the hills (generic term)|take to the woods (generic term)|escape (generic term)|fly the coop (generic term)|break away (generic term)
+take for|1
+(verb)|deem|hold|view as|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+take for granted|1
+(verb)|assume|presume|expect (generic term)|anticipate (generic term)
+take form|1
+(verb)|form|take shape|spring|become (generic term)
+take heart|1
+(verb)|buck up|cheer (generic term)|hearten (generic term)|recreate (generic term)|embolden (generic term)
+take heed|1
+(verb)|listen|hear|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+take hold|2
+(verb)|take charge|take control|head (generic term)|lead (generic term)
+(verb)|hold|let go of (antonym)
+take hold of|1
+(verb)|catch|grab|seize (generic term)|prehend (generic term)|clutch (generic term)|catch up (related term)
+take home|1
+(verb)|bring home|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+take in|17
+(verb)|house (generic term)|put up (generic term)|domiciliate (generic term)
+(verb)|gull|dupe|slang|befool|cod|fool|put on|put one over|put one across|deceive (generic term)|betray (generic term)|lead astray (generic term)
+(verb)|absorb|emit (antonym)
+(verb)|visit (generic term)|see (generic term)
+(verb)|collect|take (generic term)
+(verb)|watch|view|see|catch|watch (generic term)
+(verb)|receive|invite
+(verb)|gather in|roll up (generic term)|furl (generic term)
+(verb)|absorb|assimilate|ingest|learn (generic term)|larn (generic term)|acquire (generic term)
+(verb)|gain|clear|make|earn|realize|realise|pull in|bring in|get (generic term)|acquire (generic term)
+(verb)|catch|overhear|hear (generic term)
+(verb)|take up|receive (generic term)|have (generic term)
+(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take up|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|sop up|suck in|take up|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|consume|ingest|take|have|take up (related term)|abstain (antonym)
+(verb)|adopt|take (generic term)
+(verb)|change (generic term)|alter (generic term)|vary (generic term)|let out (antonym)
+take in charge|1
+(verb)|undertake|accept (generic term)|consent (generic term)|go for (generic term)
+take in vain|1
+(verb)|pervert (generic term)|misuse (generic term)|abuse (generic term)
+take in water|1
+(verb)|bilge|leak (generic term)
+take into account|1
+(verb)|allow|calculate (generic term)|estimate (generic term)|reckon (generic term)|count on (generic term)|figure (generic term)|forecast (generic term)
+take issue|1
+(verb)|disagree|differ|dissent|agree (antonym)
+take it easy|1
+(verb)|sit back|relax (generic term)|loosen up (generic term)|unbend (generic term)|unwind (generic term)|decompress (generic term)|slow down (generic term)
+take it on the chin|1
+(verb)|fail (generic term)|go wrong (generic term)|miscarry (generic term)
+take kindly to|1
+(verb)|tend (generic term)|be given (generic term)|lean (generic term)|incline (generic term)|run (generic term)
+take leave|1
+(verb)|depart|quit|leave (generic term)|go forth (generic term)|go away (generic term)|stay (antonym)
+take lying down|1
+(verb)|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+take note|1
+(verb)|note|observe
+take notice|1
+(verb)|notice (generic term)|mark (generic term)|note (generic term)
+take off|9
+(verb)|depart|part|start|start out|set forth|set off|set out|leave (generic term)|go forth (generic term)|go away (generic term)|part with (related term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|lift off|depart (generic term)|part (generic term)|start (generic term)|start out (generic term)|set forth (generic term)|set off (generic term)|set out (generic term)|take off (generic term)
+(verb)|take time off|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+(verb)|imitate (generic term)|copy (generic term)|simulate (generic term)
+(verb)|undress (generic term)|discase (generic term)|uncase (generic term)|unclothe (generic term)|strip (generic term)|strip down (generic term)|disrobe (generic term)|peel (generic term)
+(verb)|get off the ground|start (generic term)|go (generic term)|get going (generic term)
+(verb)|kill (generic term)
+(verb)|subtract|deduct|calculate (generic term)|cipher (generic term)|cypher (generic term)|compute (generic term)|work out (generic term)|reckon (generic term)|figure (generic term)|add (antonym)
+take office|1
+(verb)|start (generic term)|take up (generic term)|leave office (antonym)
+take on|5
+(verb)|assume|acquire|adopt|take|change (generic term)
+(verb)|assume|adopt|take over|take office (generic term)
+(verb)|undertake|tackle|confront (generic term)|face up (generic term)|face (generic term)
+(verb)|accept|admit|take|accept (generic term)|take (generic term)|have (generic term)
+(verb)|meet|encounter|play
+take one's lumps|1
+(verb)|get one's lumps|pay (generic term)
+take orders|1
+(verb)|obey (generic term)
+take out|14
+(verb)|move out|remove
+(verb)|unpack|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|pack (antonym)
+(verb)|take away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|add (antonym)
+(verb)|obtain (generic term)
+(verb)|ask out|invite out|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|buy food|buy (generic term)|purchase (generic term)
+(verb)|withdraw|draw|draw off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|deposit (antonym)
+(verb)|draw|pull|pull out|get out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|draw|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|draw out (related term)
+(verb)|extract|pull out|pull|pull up|draw out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|take away|eat (generic term)
+(verb)|excerpt|extract|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|exclude|except|leave out|leave off|omit|eliminate (generic term)|get rid of (generic term)|do away with (generic term)|include (antonym)
+take over|8
+(verb)|assume|usurp|seize|arrogate|take (generic term)
+(verb)|assume|adopt|take on|take office (generic term)
+(verb)|relieve|free (generic term)|discharge (generic term)
+(verb)|bear|accept|assume|take (generic term)
+(verb)|buy out|buy up|buy (generic term)|purchase (generic term)
+(verb)|repeat|act (generic term)|move (generic term)
+(verb)|adopt|borrow|take up|accept (generic term)|take (generic term)|have (generic term)
+(verb)|absorb|fund (generic term)
+take pains|1
+(verb)|be at pains|endeavor (generic term)|endeavour (generic term)|strive (generic term)
+take part|1
+(verb)|participate|act (generic term)|move (generic term)
+take place|1
+(verb)|happen|hap|go on|pass off|occur|pass|fall out|come about
+take pride|1
+(verb)|pride oneself|feel (generic term)|experience (generic term)
+take root|1
+(verb)|settle|root|steady down|settle down|stabilize (generic term)|stabilise (generic term)
+take shape|1
+(verb)|form|take form|spring|become (generic term)
+take stage|1
+(verb)|take the stage
+take stock|2
+(verb)|size up|scrutinize|scrutinise|examine (generic term)|see (generic term)
+(verb)|inventory|stock-take|list (generic term)
+take ten|1
+(verb)|pause (generic term)|intermit (generic term)|break (generic term)
+take the air|1
+(verb)|walk|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+take the bull by the horns|1
+(verb)|confront (generic term)|face (generic term)
+take the cake|1
+(verb)|win (generic term)
+take the count|1
+(verb)|remain down|lose (generic term)
+take the field|2
+(verb)|campaign
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+take the fifth|1
+(verb)|take the Fifth|take the Fifth Amendment|declare (generic term)
+take the fifth amendment|1
+(verb)|take the Fifth|take the Fifth Amendment|declare (generic term)
+take the floor|1
+(verb)|arise (generic term)|rise (generic term)|uprise (generic term)|get up (generic term)|stand up (generic term)
+take the road|1
+(verb)|tour (generic term)
+take the stage|1
+(verb)|take stage
+take the stand|1
+(verb)|testify|attest|bear witness|declare (generic term)
+take the veil|1
+(verb)|profess (generic term)
+take time by the forelock|1
+(verb)|act (generic term)|move (generic term)
+take time off|1
+(verb)|take off|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+take to|1
+(verb)|fancy|go for|desire (generic term)|want (generic term)
+take to be|1
+(verb)|think of|repute|regard as|look upon|look on|esteem|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+take to heart|1
+(verb)|attend to|mind (generic term)|bear in mind (generic term)|neglect (antonym)
+take to task|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|have words|lambaste|lambast|knock (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+take to the woods|1
+(verb)|scat|run|scarper|turn tail|lam|run away|hightail it|bunk|head for the hills|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+take turns|1
+(verb)|alternate|act (generic term)|move (generic term)
+take up|13
+(verb)|embark (generic term)|enter (generic term)
+(verb)|latch on|fasten on|hook on|seize on|espouse (generic term)|embrace (generic term)|adopt (generic term)|sweep up (generic term)
+(verb)|turn (generic term)
+(verb)|occupy (generic term)|fill (generic term)
+(verb)|start
+(verb)|adopt|borrow|take over|accept (generic term)|take (generic term)|have (generic term)
+(verb)|assume|take|strike|move (generic term)
+(verb)|sorb|change state (generic term)|turn (generic term)
+(verb)|scoop|scoop out|lift out|scoop up|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|take in|receive (generic term)|have (generic term)
+(verb)|absorb|suck|imbibe|soak up|sop up|suck up|draw|take in|draw in (related term)|draw in (related term)|suck in (related term)
+(verb)|take in|sop up|suck in|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|resume|change (generic term)
+take up arms|1
+(verb)|go to war|take arms|war (generic term)
+take water|1
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+takeaway|3
+(noun)|takeout|takeout food|convenience food (generic term)
+(noun)|concession (generic term)
+(noun)|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+takedown|2
+(noun)|fall (generic term)|pin (generic term)
+(noun)|put-down|squelch|squelcher|derision (generic term)
+takelma|2
+(noun)|Takelma|Penutian (generic term)
+(noun)|Takilman|Takelma|Penutian (generic term)
+taken|3
+(adj)|interpreted|understood (similar term)
+(adj)|appropriated (similar term)|condemned (similar term)|confiscate (similar term)|confiscated (similar term)|seized (similar term)|taken over (similar term)|assumed (similar term)|arrogated (similar term)|embezzled (similar term)|expropriated (similar term)|purloined (similar term)|stolen (similar term)|usurped (similar term)|given (antonym)
+(adj)|affected (similar term)
+taken for granted|2
+(adj)|axiomatic|self-evident|obvious (similar term)
+(adj)|assumed|assumptive|acknowledged (similar term)
+taken over|1
+(adj)|appropriated|condemned|confiscate|confiscated|seized|taken (similar term)
+taken up|1
+(adj)|haunted|obsessed|preoccupied|concerned (similar term)
+taken with|1
+(adj)|crazy|dotty|gaga|enamored|infatuated|in love|smitten|soft on|loving (similar term)
+takeoff|4
+(noun)|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(noun)|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|parody|lampoon|spoof|sendup|mockery|burlesque|travesty|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(noun)|parody|mockery|apery (generic term)|mimicry (generic term)
+takeoff booster|1
+(noun)|booster|booster rocket|booster unit|takeoff rocket|rocket (generic term)|rocket engine (generic term)
+takeoff rocket|1
+(noun)|booster|booster rocket|booster unit|takeoff booster|rocket (generic term)|rocket engine (generic term)
+takeout|3
+(adj)|take-away|portable (similar term)
+(noun)|takeout food|takeaway|convenience food (generic term)
+(noun)|bid (generic term)|bidding (generic term)
+takeout food|1
+(noun)|takeout|takeaway|convenience food (generic term)
+takeover|2
+(noun)|coup d'etat|coup|putsch|group action (generic term)
+(noun)|buyout (generic term)
+takeover arbitrage|1
+(noun)|risk arbitrage|arbitrage (generic term)
+takeover attempt|1
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+takeover bid|1
+(noun)|tender offer (generic term)
+takeover target|1
+(noun)|target company|company (generic term)
+taker|2
+(noun)|customer (generic term)|client (generic term)
+(noun)|bettor (generic term)|better (generic term)|wagerer (generic term)|punter (generic term)
+takilman|1
+(noun)|Takilman|Takelma|Penutian (generic term)
+takin|1
+(noun)|gnu goat|Budorcas taxicolor|goat antelope (generic term)
+taking|2
+(adj)|fetching|winning|attractive (similar term)
+(noun)|pickings|action (generic term)
+taking apart|1
+(noun)|dismemberment|mutilation (generic term)|torture (generic term)|torturing (generic term)
+taking hold|1
+(noun)|grasping|seizing|prehension|control (generic term)
+taking into custody|1
+(noun)|apprehension|arrest|catch|collar|pinch|capture (generic term)|gaining control (generic term)|seizure (generic term)
+taking over|1
+(noun)|succession|acquisition (generic term)
+taking possession|1
+(noun)|occupation|occupancy|moving in|acquiring (generic term)|getting (generic term)
+takings|1
+(noun)|return|issue|take|proceeds|yield|payoff|income (generic term)
+taklamakan desert|1
+(noun)|Taklimakan Desert|Taklamakan Desert|desert (generic term)
+taklimakan desert|1
+(noun)|Taklimakan Desert|Taklamakan Desert|desert (generic term)
+tala|1
+(noun)|Western Samoan monetary unit (generic term)
+talapoin|1
+(noun)|Cercopithecus talapoin|guenon (generic term)|guenon monkey (generic term)
+talaria|1
+(noun)|sandal (generic term)
+talbot|1
+(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor (generic term)|discoverer (generic term)|artificer (generic term)|photographer (generic term)|lensman (generic term)
+talc|2
+(noun)|talcum|mineral (generic term)
+(verb)|powder (generic term)
+talcott parsons|1
+(noun)|Parsons|Talcott Parsons|sociologist (generic term)
+talcum|2
+(noun)|talc|mineral (generic term)
+(noun)|talcum powder|toilet powder (generic term)|bath powder (generic term)|dusting powder (generic term)
+talcum powder|1
+(noun)|talcum|toilet powder (generic term)|bath powder (generic term)|dusting powder (generic term)
+tale|2
+(noun)|narrative|narration|story|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|fib|story|tarradiddle|taradiddle|lie (generic term)|prevarication (generic term)
+taleban|1
+(noun)|Taliban|Taleban|religious movement (generic term)
+talebearer|1
+(noun)|tattletale|tattler|taleteller|telltale|blabbermouth|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+talebearing|1
+(adj)|blabbermouthed|leaky|tattling|communicative (similar term)|communicatory (similar term)
+talent|2
+(noun)|endowment|gift|natural endowment|natural ability (generic term)
+(noun)|expert (generic term)
+talent agent|1
+(noun)|agent (generic term)
+talent scout|1
+(noun)|scout|recruiter (generic term)
+talented|1
+(adj)|gifted|untalented (antonym)
+talentless|1
+(adj)|untalented|talented (antonym)
+talentlessness|1
+(noun)|inaptitude (generic term)
+taleteller|1
+(noun)|tattletale|tattler|talebearer|telltale|blabbermouth|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+taliban|1
+(noun)|Taliban|Taleban|religious movement (generic term)
+talinum|1
+(noun)|Talinum|genus Talinum|caryophylloid dicot genus (generic term)
+talinum augustissimum|1
+(noun)|narrow-leaved flame flower|Talinum augustissimum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+talinum aurantiacum|1
+(noun)|flame flower|flame-flower|flameflower|Talinum aurantiacum|wildflower (generic term)|wild flower (generic term)
+talinum brevifolium|1
+(noun)|pigmy talinum|Talinum brevifolium|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+talinum calycinum|1
+(noun)|rock pink|Talinum calycinum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+talinum paniculatum|1
+(noun)|jewels-of-opar|Talinum paniculatum|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+talinum spinescens|1
+(noun)|spiny talinum|Talinum spinescens|flame flower (generic term)|flame-flower (generic term)|flameflower (generic term)|Talinum aurantiacum (generic term)
+talipes|1
+(noun)|clubfoot|deformity (generic term)|malformation (generic term)|misshapenness (generic term)
+talipes calcaneus|1
+(noun)|clubfoot (generic term)|talipes (generic term)
+talipes equinus|1
+(noun)|clubfoot (generic term)|talipes (generic term)
+talipes valgus|1
+(noun)|clubfoot (generic term)|talipes (generic term)
+talipot|1
+(noun)|talipot palm|Corypha umbraculifera|fan palm (generic term)
+talipot palm|1
+(noun)|talipot|Corypha umbraculifera|fan palm (generic term)
+talisman|1
+(noun)|amulet|charm (generic term)|good luck charm (generic term)
+talismanic|1
+(adj)|supernatural (similar term)
+talk|11
+(noun)|talking|conversation (generic term)
+(noun)|discussion (generic term)|treatment (generic term)|discourse (generic term)
+(noun)|lecture (generic term)|lecturing (generic term)
+(noun)|lecture|public lecture|address (generic term)|speech (generic term)
+(noun)|talk of the town|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+(verb)|speak|communicate (generic term)|intercommunicate (generic term)|speak for (related term)
+(verb)|speak|utter|mouth|verbalize|verbalise|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|speak|communicate (generic term)|intercommunicate (generic term)
+(verb)|spill|tell (generic term)
+(verb)|spill the beans|let the cat out of the bag|tattle|blab|peach|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+(verb)|lecture|teach (generic term)|learn (generic term)|instruct (generic term)
+talk about|2
+(verb)|discourse|discuss|cover (generic term)|treat (generic term)|handle (generic term)|plow (generic term)|deal (generic term)|address (generic term)
+(verb)|talk of|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+talk down|3
+(verb)|minimize (generic term)|belittle (generic term)|denigrate (generic term)|derogate (generic term)
+(verb)|talk (generic term)|speak (generic term)
+(verb)|direct (generic term)
+talk into|1
+(verb)|persuade (generic term)|talk out of (antonym)
+talk of|1
+(verb)|talk about|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+talk of the town|1
+(noun)|talk|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+talk out of|1
+(verb)|dissuade (generic term)|deter (generic term)|talk into (antonym)
+talk over|1
+(verb)|hash out|discuss|talk of (generic term)|talk about (generic term)
+talk shop|1
+(verb)|discourse (generic term)|talk about (generic term)|discuss (generic term)
+talk show|1
+(noun)|chat show|broadcast (generic term)|program (generic term)|programme (generic term)
+talk terms|1
+(verb)|negociate|negotiate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+talk turkey|1
+(verb)|talk (generic term)|speak (generic term)
+talkative|3
+(adj)|chatty|gabby|garrulous|loquacious|talky|voluble (similar term)
+(adj)|bigmouthed|blabbermouthed|blabby|indiscreet (similar term)
+(adj)|expansive|communicative (similar term)|communicatory (similar term)
+talkatively|1
+(adv)|loquaciously|garrulously|talkily
+talkativeness|1
+(noun)|garrulity|garrulousness|loquaciousness|loquacity|communicativeness (generic term)
+talker|1
+(noun)|speaker|utterer|verbalizer|verbaliser|articulator (generic term)
+talker identification|1
+(noun)|speaker identification|recognition (generic term)|identification (generic term)
+talkie|1
+(noun)|talking picture|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+talkily|1
+(adv)|loquaciously|garrulously|talkatively
+talking|2
+(adj)|speaking (similar term)
+(noun)|talk|conversation (generic term)
+talking book|1
+(noun)|sound recording (generic term)|audio recording (generic term)
+talking head|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+talking picture|1
+(noun)|talkie|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+talking point|1
+(noun)|point (generic term)
+talking to|1
+(noun)|lecture|speech|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+talks|1
+(noun)|negotiation|dialogue|discussion (generic term)|give-and-take (generic term)|word (generic term)
+talky|1
+(adj)|chatty|gabby|garrulous|loquacious|talkative|voluble (similar term)
+tall|5
+(adj)|full-length (similar term)|gangling (similar term)|gangly (similar term)|lanky (similar term)|rangy (similar term)|in height (similar term)|leggy (similar term)|long-legged (similar term)|long-shanked (similar term)|leggy (similar term)|tall-growing (similar term)|long (similar term)|long-stalked (similar term)|tall-stalked (similar term)|stately (similar term)|statuesque (similar term)|tallish (similar term)|large (related term)|big (related term)|high (related term)|short (antonym)
+(adj)|grandiloquent|magniloquent|rhetorical (similar term)
+(adj)|difficult (similar term)|hard (similar term)
+(adj)|improbable|marvelous|marvellous|incredible (similar term)|unbelievable (similar term)
+(noun)|size (generic term)
+tall-grass|1
+(noun)|tallgrass|grass (generic term)
+tall-growing|1
+(adj)|leggy|tall (similar term)
+tall-stalked|1
+(adj)|long-stalked|tall (similar term)
+tall bellflower|1
+(noun)|Campanula americana|campanula (generic term)|bellflower (generic term)
+tall bilberry|1
+(noun)|high-bush blueberry|swamp blueberry|Vaccinium corymbosum|blueberry (generic term)|blueberry bush (generic term)
+tall buttercup|1
+(noun)|meadow buttercup|tall crowfoot|tall field buttercup|Ranunculus acris|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+tall crowfoot|1
+(noun)|meadow buttercup|tall buttercup|tall field buttercup|Ranunculus acris|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+tall cupflower|1
+(noun)|Nierembergia frutescens|cupflower (generic term)|nierembergia (generic term)
+tall field buttercup|1
+(noun)|meadow buttercup|tall buttercup|tall crowfoot|Ranunculus acris|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+tall gallberry holly|1
+(noun)|holly (generic term)
+tall goldenrod|1
+(noun)|goldenrod (generic term)
+tall mallow|1
+(noun)|high mallow|cheese|cheeseflower|Malva sylvestris|mallow (generic term)
+tall meadow grass|1
+(noun)|tall oat grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass (generic term)
+tall oat grass|1
+(noun)|tall meadow grass|evergreen grass|false oat|French rye|Arrhenatherum elatius|grass (generic term)
+tall oil|1
+(noun)|oil (generic term)
+tall order|1
+(noun)|large order|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+tall sunflower|1
+(noun)|giant sunflower|Indian potato|Helianthus giganteus|sunflower (generic term)|helianthus (generic term)
+tall tale|1
+(noun)|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+tall white violet|1
+(noun)|Canada violet|white violet|Viola canadensis|violet (generic term)
+tall yellow-eye|1
+(noun)|Xyris operculata|yellow-eyed grass (generic term)
+tallahassee|1
+(noun)|Tallahassee|capital of Florida|state capital (generic term)
+tallapoosa|1
+(noun)|Tallapoosa|Tallapoosa River|river (generic term)
+tallapoosa river|1
+(noun)|Tallapoosa|Tallapoosa River|river (generic term)
+tallboy|1
+(noun)|highboy|chest of drawers (generic term)|chest (generic term)|bureau (generic term)|dresser (generic term)
+tallchief|1
+(noun)|Tallchief|Maria Tallchief|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+talleyrand|1
+(noun)|Talleyrand|Charles Maurice de Talleyrand|statesman (generic term)|solon (generic term)|national leader (generic term)
+tallgrass|1
+(noun)|tall-grass|grass (generic term)
+tallin|1
+(noun)|Tallinn|Tallin|capital of Estonia|capital (generic term)|port (generic term)
+tallinn|1
+(noun)|Tallinn|Tallin|capital of Estonia|capital (generic term)|port (generic term)
+tallis|2
+(noun)|Tallis|Thomas Tallis|organist (generic term)|composer (generic term)
+(noun)|prayer shawl|tallith|shawl (generic term)
+tallish|1
+(adj)|tall (similar term)
+tallith|1
+(noun)|prayer shawl|tallis|shawl (generic term)
+tallness|2
+(noun)|height|dimension (generic term)
+(noun)|stature (generic term)|height (generic term)|shortness (antonym)
+tallow|1
+(noun)|animal oil (generic term)
+tallow oil|1
+(noun)|animal oil (generic term)
+tallulah bankhead|1
+(noun)|Bankhead|Tallulah Bankhead|actress (generic term)
+tally|7
+(noun)|run|score (generic term)
+(noun)|reckoning|bill (generic term)|account (generic term)|invoice (generic term)
+(noun)|count|counting|numeration|enumeration|reckoning|investigation (generic term)|investigating (generic term)
+(verb)|match|fit|correspond|check|jibe|gibe|agree|equal (generic term)|be (generic term)|disagree (antonym)
+(verb)|score|hit|rack up|gain (generic term)|advance (generic term)|win (generic term)|pull ahead (generic term)|make headway (generic term)|get ahead (generic term)|gain ground (generic term)
+(verb)|chalk up|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|total|tot|tot up|sum|sum up|summate|tote up|add|add together|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+tally clerk|1
+(noun)|tallyman|clerk (generic term)
+tallyman|2
+(noun)|traveling salesman (generic term)|travelling salesman (generic term)|commercial traveler (generic term)|commercial traveller (generic term)|roadman (generic term)|bagman (generic term)
+(noun)|tally clerk|clerk (generic term)
+talmud|1
+(noun)|Talmud|Talmudic literature (generic term)
+talmudic literature|1
+(noun)|Talmudic literature|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+talon|1
+(noun)|claw (generic term)
+taloned|1
+(adj)|clawed|armed (similar term)
+talpidae|1
+(noun)|Talpidae|family Talpidae|mammal family (generic term)
+talus|2
+(noun)|scree|geological formation (generic term)|formation (generic term)
+(noun)|anklebone|astragal|astragalus|bone (generic term)|os (generic term)
+talwin|1
+(noun)|pentazocine|Talwin|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+tam|1
+(noun)|tam-o'-shanter|tammy|cap (generic term)
+tam-o'-shanter|1
+(noun)|tam|tammy|cap (generic term)
+tam-tam|1
+(noun)|gong|percussion instrument (generic term)|percussive instrument (generic term)
+tamable|1
+(adj)|tameable|tractable (similar term)|manipulable (similar term)
+tamale|2
+(noun)|Tamale|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|dish (generic term)
+tamale pie|1
+(noun)|dish (generic term)
+tamandu|1
+(noun)|tamandua|lesser anteater|Tamandua tetradactyla|anteater (generic term)|New World anteater (generic term)
+tamandua|1
+(noun)|tamandu|lesser anteater|Tamandua tetradactyla|anteater (generic term)|New World anteater (generic term)
+tamandua tetradactyla|1
+(noun)|tamandua|tamandu|lesser anteater|Tamandua tetradactyla|anteater (generic term)|New World anteater (generic term)
+tamanoir|1
+(noun)|ant bear|giant anteater|great anteater|Myrmecophaga jubata|anteater (generic term)|New World anteater (generic term)
+tamara karsavina|1
+(noun)|Karsavina|Tamara Karsavina|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+tamarack|1
+(noun)|American larch|black larch|Larix laricina|larch (generic term)|larch tree (generic term)
+tamarao|1
+(noun)|tamarau|Bubalus mindorensis|Anoa mindorensis|Old World buffalo (generic term)|buffalo (generic term)
+tamarau|1
+(noun)|tamarao|Bubalus mindorensis|Anoa mindorensis|Old World buffalo (generic term)|buffalo (generic term)
+tamaricaceae|1
+(noun)|Tamaricaceae|family Tamaricaceae|tamarisk family|dilleniid dicot family (generic term)
+tamarillo|1
+(noun)|tree tomato|shrub (generic term)|bush (generic term)
+tamarin|1
+(noun)|lion monkey|lion marmoset|leoncita|marmoset (generic term)
+tamarind|2
+(noun)|tamarind tree|tamarindo|Tamarindus indica|bean tree (generic term)
+(noun)|tamarindo|edible fruit (generic term)
+tamarind tree|1
+(noun)|tamarind|tamarindo|Tamarindus indica|bean tree (generic term)
+tamarindo|2
+(noun)|tamarind|tamarind tree|Tamarindus indica|bean tree (generic term)
+(noun)|tamarind|edible fruit (generic term)
+tamarindus|1
+(noun)|Tamarindus|genus Tamarindus|rosid dicot genus (generic term)
+tamarindus indica|1
+(noun)|tamarind|tamarind tree|tamarindo|Tamarindus indica|bean tree (generic term)
+tamarisk|1
+(noun)|shrub (generic term)|bush (generic term)
+tamarisk family|1
+(noun)|Tamaricaceae|family Tamaricaceae|dilleniid dicot family (generic term)
+tamarisk gerbil|1
+(noun)|Meriones unguiculatus|gerbil (generic term)|gerbille (generic term)
+tamarix|1
+(noun)|Tamarix|genus Tamarix|dilleniid dicot genus (generic term)
+tambac|1
+(noun)|tombac|tombak|alloy (generic term)|metal (generic term)
+tambala|1
+(noun)|Malawian monetary unit (generic term)
+tambocor|1
+(noun)|flecainide|Tambocor|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+tambour|2
+(noun)|embroidery frame|embroidery hoop|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tambourine|1
+(noun)|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tamburlaine|1
+(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler (generic term)|swayer (generic term)
+tame|9
+(adj)|unexciting (similar term)
+(adj)|subdued (similar term)|quiet (related term)|wild (antonym)
+(adj)|tamed|broken (similar term)|broken in (similar term)|cultivated (similar term)|docile (similar term)|gentle (similar term)|domestic (similar term)|domesticated (similar term)|tamed (similar term)|tractable (related term)|manipulable (related term)|wild (antonym)
+(adj)|meek|docile (similar term)
+(verb)|chasten|subdue|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tone down|moderate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|domesticate|cultivate|naturalize|naturalise|adapt (generic term)|accommodate (generic term)
+(verb)|domesticate|domesticize|domesticise|reclaim|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|domesticate|adapt (generic term)|accommodate (generic term)
+tameable|1
+(adj)|tamable|tractable (similar term)|manipulable (similar term)
+tamed|2
+(adj)|tame|broken (similar term)|broken in (similar term)|cultivated (similar term)|docile (similar term)|gentle (similar term)|domestic (similar term)|domesticated (similar term)|tamed (similar term)|tractable (related term)|manipulable (related term)|wild (antonym)
+(adj)|tame (similar term)|tamed (similar term)
+tameness|2
+(noun)|jejunity|jejuneness|vapidity|vapidness|dullness (generic term)
+(noun)|domestication|tractability (generic term)|tractableness (generic term)|flexibility (generic term)|wildness (antonym)
+tamer|1
+(noun)|animal trainer (generic term)|handler (generic term)
+tamerlane|1
+(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler (generic term)|swayer (generic term)
+tamias|1
+(noun)|Tamias|genus Tamias|mammal genus (generic term)
+tamias striatus|1
+(noun)|eastern chipmunk|hackee|striped squirrel|ground squirrel|Tamias striatus|squirrel (generic term)
+tamiasciurus|1
+(noun)|Tamiasciurus|genus Tamiasciurus|mammal genus (generic term)
+tamiasciurus douglasi|1
+(noun)|chickeree|Douglas squirrel|Tamiasciurus douglasi|tree squirrel (generic term)
+tamiasciurus hudsonicus|1
+(noun)|American red squirrel|spruce squirrel|red squirrel|Sciurus hudsonicus|Tamiasciurus hudsonicus|tree squirrel (generic term)
+tamil|3
+(adj)|Tamil|Dravidian (related term)|South Dravidian (related term)
+(noun)|Tamil|Dravidian (generic term)
+(noun)|Tamil|South Dravidian (generic term)
+tamil eelam|1
+(noun)|Eelam|Tamil Eelam|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+tamil nadu|1
+(noun)|Tamil Nadu|Madras|state (generic term)|province (generic term)
+tamil tigers|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tamm|1
+(noun)|Tamm|Igor Tamm|Igor Yevgeneevich Tamm|nuclear physicist (generic term)
+tammany|1
+(noun)|Tammany Hall|Tammany Society|Tammany|organization (generic term)|organisation (generic term)
+tammany hall|1
+(noun)|Tammany Hall|Tammany Society|Tammany|organization (generic term)|organisation (generic term)
+tammany society|1
+(noun)|Tammany Hall|Tammany Society|Tammany|organization (generic term)|organisation (generic term)
+tammerfors|1
+(noun)|Tampere|Tammerfors|city (generic term)|metropolis (generic term)|urban center (generic term)
+tammuz|2
+(noun)|Tammuz|Thammuz|Jewish calendar month (generic term)
+(noun)|Dumuzi|Tammuz|Semitic deity (generic term)
+tammy|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|tam|tam-o'-shanter|cap (generic term)
+tammy wynette|1
+(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+tammy wynetter pugh|1
+(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+tamoxifen|1
+(noun)|estrogen antagonist|antagonist (generic term)
+tamp|2
+(noun)|tamper|tamping bar|tool (generic term)
+(verb)|tamp down|pack|compress (generic term)|compact (generic term)|pack together (generic term)
+tamp down|1
+(verb)|tamp|pack|compress (generic term)|compact (generic term)|pack together (generic term)
+tampa|1
+(noun)|Tampa|city (generic term)|metropolis (generic term)|urban center (generic term)|port of entry (generic term)|point of entry (generic term)
+tampa bay|1
+(noun)|Tampa Bay|bay (generic term)|embayment (generic term)
+tampax|1
+(noun)|Tampax|tampon (generic term)
+tamper|3
+(noun)|tamp|tamping bar|tool (generic term)
+(verb)|fiddle|monkey|manipulate (generic term)
+(verb)|meddle|intervene (generic term)|step in (generic term)|interfere (generic term)|interpose (generic term)
+tampere|1
+(noun)|Tampere|Tammerfors|city (generic term)|metropolis (generic term)|urban center (generic term)
+tampering|1
+(noun)|meddling|change of state (generic term)
+tampico|1
+(noun)|Tampico|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+tamping bar|1
+(noun)|tamp|tamper|tool (generic term)
+tampion|1
+(noun)|tompion|plug (generic term)|stopper (generic term)|stopple (generic term)
+tampon|2
+(noun)|plug (generic term)|stopper (generic term)|stopple (generic term)
+(verb)|plug (generic term)|stop up (generic term)|secure (generic term)
+tamponade|1
+(noun)|tamponage|obstruction (generic term)|blockage (generic term)
+tamponage|1
+(noun)|tamponade|obstruction (generic term)|blockage (generic term)
+tamus|1
+(noun)|Tamus|genus Tamus|plant genus (generic term)
+tamus communis|1
+(noun)|black bryony|black bindweed|Tamus communis|vine (generic term)
+tan|6
+(adj)|chromatic (similar term)
+(noun)|suntan|sunburn|burn|hyperpigmentation (generic term)
+(noun)|topaz|light brown (generic term)
+(noun)|tangent|trigonometric function (generic term)|circular function (generic term)
+(verb)|convert (generic term)|change over (generic term)
+(verb)|bronze|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+tanacetum|1
+(noun)|Tanacetum|genus Tanacetum|asterid dicot genus (generic term)
+tanacetum balsamita|1
+(noun)|costmary|alecost|bible leaf|mint geranium|balsam herb|Tanacetum balsamita|Chrysanthemum balsamita|herb (generic term)|herbaceous plant (generic term)
+tanacetum camphoratum|1
+(noun)|camphor dune tansy|Tanacetum camphoratum|herb (generic term)|herbaceous plant (generic term)
+tanacetum cinerariifolium|1
+(noun)|pyrethrum|Dalmatian pyrethrum|Dalmatia pyrethrum|Tanacetum cinerariifolium|Chrysanthemum cinerariifolium|herb (generic term)|herbaceous plant (generic term)
+tanacetum coccineum|1
+(noun)|painted daisy|pyrethrum|Tanacetum coccineum|Chrysanthemum coccineum|flower (generic term)
+tanacetum douglasii|1
+(noun)|northern dune tansy|Tanacetum douglasii|wildflower (generic term)|wild flower (generic term)
+tanacetum parthenium|1
+(noun)|feverfew|Tanacetum parthenium|Chrysanthemum parthenium|herb (generic term)|herbaceous plant (generic term)
+tanacetum ptarmiciflorum|1
+(noun)|dusty miller|silver-lace|silver lace|Tanacetum ptarmiciflorum|Chrysanthemum ptarmiciflorum|composite (generic term)|composite plant (generic term)
+tanacetum vulgare|1
+(noun)|tansy|golden buttons|scented fern|Tanacetum vulgare|composite (generic term)|composite plant (generic term)
+tanach|1
+(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+tanager|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+tanakh|1
+(noun)|Tanakh|Tanach|Hebrew Scripture|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+tanbark|1
+(noun)|bark (generic term)
+tanbark oak|1
+(noun)|Lithocarpus densiflorus|tree (generic term)
+tancred|1
+(noun)|Tancred|soldier (generic term)
+tandearil|1
+(noun)|oxyphenbutazone|Tandearil|anti-inflammatory (generic term)|anti-inflammatory drug (generic term)
+tandem|3
+(noun)|placement (generic term)|arrangement (generic term)
+(noun)|bicycle-built-for-two|tandem bicycle|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+(adv)|in tandem
+tandem bicycle|1
+(noun)|bicycle-built-for-two|tandem|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+tandem trailer|1
+(noun)|trailer truck (generic term)|tractor trailer (generic term)|trucking rig (generic term)|rig (generic term)|articulated lorry (generic term)|semi (generic term)
+tandoor|1
+(noun)|oven (generic term)
+tandy|1
+(noun)|Tandy|Jessica Tandy|actress (generic term)
+tanekaha|1
+(noun)|Phyllocladus trichomanoides|celery pine (generic term)
+taney|1
+(noun)|Taney|Roger Taney|Roger Brooke Taney|chief justice (generic term)
+tang|7
+(noun)|relish|flavor|flavour|sapidity|savor|savour|smack|nip|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|nip|piquance|piquancy|piquantness|tanginess|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(noun)|Tang|Tang dynasty|dynasty (generic term)
+(noun)|bladderwrack|black rockweed|bladder fucus|Fucus vesiculosus|rockweed (generic term)
+(noun)|serrated wrack|Fucus serratus|brown algae (generic term)
+(noun)|sea tang|seaweed (generic term)
+(noun)|sea tangle|kelp (generic term)
+tang dynasty|1
+(noun)|Tang|Tang dynasty|dynasty (generic term)
+tanga|2
+(noun)|Tajikistani monetary unit (generic term)
+(noun)|Tanga|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+tanganyika|2
+(noun)|Lake Tanganyika|Tanganyika|lake (generic term)
+(noun)|Tanganyika|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+tange|1
+(noun)|Tange|Kenzo Tange|architect (generic term)|designer (generic term)
+tangelo|2
+(noun)|tangelo tree|ugli fruit|Citrus tangelo|citrus (generic term)|citrus tree (generic term)
+(noun)|ugli|ugli fruit|edible fruit (generic term)
+tangelo tree|1
+(noun)|tangelo|ugli fruit|Citrus tangelo|citrus (generic term)|citrus tree (generic term)
+tangency|2
+(noun)|contact (generic term)
+(noun)|contact|junction (generic term)|conjunction (generic term)
+tangent|2
+(noun)|straight line (generic term)
+(noun)|tan|trigonometric function (generic term)|circular function (generic term)
+tangent plane|1
+(noun)|plane (generic term)|sheet (generic term)
+tangential|2
+(adj)|digressive|irrelevant (similar term)
+(adj)|straight line (related term)
+tangerine|4
+(adj)|chromatic (similar term)
+(noun)|tangerine tree|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+(noun)|mandarin (generic term)|mandarin orange (generic term)
+(noun)|reddish orange (generic term)
+tangerine tree|1
+(noun)|tangerine|mandarin (generic term)|mandarin orange (generic term)|mandarin orange tree (generic term)|Citrus reticulata (generic term)
+tangibility|1
+(noun)|tangibleness|palpability|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|impalpability (antonym)|intangibility (antonym)
+tangible|4
+(adj)|touchable|tactile (similar term)|tactual (similar term)|concrete (related term)|intangible (antonym)
+(adj)|real|concrete (similar term)
+(adj)|real (similar term)|realizable (similar term)|intangible (antonym)
+(adj)|palpable|perceptible (similar term)|perceptible (related term)|impalpable (antonym)
+tangibleness|1
+(noun)|tangibility|palpability|materiality (generic term)|physicalness (generic term)|corporeality (generic term)|corporality (generic term)|impalpability (antonym)|intangibility (antonym)
+tangier|1
+(noun)|Tangier|Tangiers|city (generic term)|metropolis (generic term)|urban center (generic term)
+tangier pea|1
+(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea (generic term)
+tangier peavine|1
+(noun)|Tangier pea|Tangier peavine|Lalthyrus tingitanus|wild pea (generic term)
+tangiers|1
+(noun)|Tangier|Tangiers|city (generic term)|metropolis (generic term)|urban center (generic term)
+tanginess|1
+(noun)|nip|piquance|piquancy|piquantness|tang|zest|spiciness (generic term)|spice (generic term)|spicery (generic term)
+tangle|6
+(noun)|natural object (generic term)
+(noun)|snarl|maze|perplexity (generic term)
+(verb)|embroil|sweep|sweep up|drag|drag in|involve (generic term)
+(verb)|ravel|knot|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)|unknot (antonym)|unravel (antonym)|unravel (antonym)
+(verb)|tousle|dishevel|disarrange (generic term)
+(verb)|entangle|mat|snarl|twist (generic term)|twine (generic term)|distort (generic term)|unsnarl (antonym)|disentangle (antonym)
+tangle orchid|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+tangle with|1
+(verb)|get into|change state (generic term)|turn (generic term)
+tanglebush|1
+(noun)|desert olive|Forestiera neomexicana|forestiera (generic term)
+tangled|2
+(adj)|afoul (similar term)|foul (similar term)|fouled (similar term)|enmeshed (similar term)|intermeshed (similar term)|entangled (similar term)|intertwined (similar term)|knotted (similar term)|knotty (similar term)|snarled (similar term)|snarly (similar term)|matted (similar term)|rootbound (similar term)|thrown (similar term)|thrown and twisted (similar term)|untangled (antonym)
+(adj)|Byzantine|convoluted|involved|knotty|tortuous|complex (similar term)
+tango|3
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+tangor|1
+(noun)|temple orange|temple orange tree|king orange|Citrus nobilis|orange (generic term)|orange tree (generic term)
+tangram|1
+(noun)|puzzle (generic term)
+tangshan|1
+(noun)|Tangshan|city (generic term)|metropolis (generic term)|urban center (generic term)
+tanguy|1
+(noun)|Tanguy|Yves Tanguy|painter (generic term)
+tangy|1
+(adj)|lemony|lemonlike|sourish|tart|sour (similar term)
+tank|7
+(noun)|army tank|armored combat vehicle|armoured combat vehicle|military vehicle (generic term)|armored vehicle (generic term)|armoured vehicle (generic term)|tracked vehicle (generic term)
+(noun)|storage tank|vessel (generic term)
+(noun)|tankful|containerful (generic term)
+(noun)|tank car|freight car (generic term)
+(noun)|cooler|cell (generic term)|jail cell (generic term)|prison cell (generic term)
+(verb)|store (generic term)
+(verb)|process (generic term)|treat (generic term)
+tank car|1
+(noun)|tank|freight car (generic term)
+tank circuit|1
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+tank destroyer|1
+(noun)|armored vehicle (generic term)|armoured vehicle (generic term)
+tank driver|1
+(noun)|tanker|soldier (generic term)
+tank engine|1
+(noun)|tank locomotive|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+tank farm|1
+(noun)|area (generic term)|country (generic term)
+tank farming|1
+(noun)|hydroponics|aquiculture|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+tank furnace|1
+(noun)|furnace (generic term)
+tank iron|1
+(noun)|plate iron (generic term)
+tank locomotive|1
+(noun)|tank engine|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+tank shell|1
+(noun)|shell (generic term)
+tank ship|1
+(noun)|oil tanker|oiler|tanker|cargo ship (generic term)|cargo vessel (generic term)
+tank suit|1
+(noun)|maillot|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+tank top|1
+(noun)|shirt (generic term)
+tanka|2
+(noun)|poem (generic term)|verse form (generic term)
+(noun)|painting (generic term)|picture (generic term)
+tankage|3
+(noun)|indefinite quantity (generic term)
+(noun)|charge (generic term)
+(noun)|storage (generic term)
+tankard|1
+(noun)|drinking vessel (generic term)
+tanker|2
+(noun)|oil tanker|oiler|tank ship|cargo ship (generic term)|cargo vessel (generic term)
+(noun)|tank driver|soldier (generic term)
+tanker plane|1
+(noun)|airplane (generic term)|aeroplane (generic term)|plane (generic term)
+tankful|1
+(noun)|tank|containerful (generic term)
+tanned|2
+(adj)|bronzed|suntanned|brunet (similar term)|brunette (similar term)
+(adj)|untanned (antonym)
+tannenberg|1
+(noun)|Tannenberg|battle of Tannenberg|pitched battle (generic term)
+tanner|2
+(noun)|sixpence|coin (generic term)
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+tanner's cassia|1
+(noun)|avaram|Senna auriculata|Cassia auriculata|senna (generic term)
+tannery|1
+(noun)|workplace (generic term)|work (generic term)
+tannia|1
+(noun)|yautia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+tannic|1
+(adj)|phenol (related term)
+tannic acid|1
+(noun)|tannin|phenol (generic term)
+tannin|1
+(noun)|tannic acid|phenol (generic term)
+tanning|3
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|whipping|flogging|lashing|flagellation|beating (generic term)|thrashing (generic term)|licking (generic term)|drubbing (generic term)|lacing (generic term)|trouncing (generic term)|whacking (generic term)
+(noun)|trade (generic term)|craft (generic term)
+tannish|1
+(adj)|chromatic (similar term)
+tannoy|1
+(noun)|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+tanoan|1
+(noun)|Tanoan|Tanoan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+tanoan language|1
+(noun)|Tanoan|Tanoan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+tansy|1
+(noun)|golden buttons|scented fern|Tanacetum vulgare|composite (generic term)|composite plant (generic term)
+tansy-leaved rocket|1
+(noun)|Hugueninia tanacetifolia|Sisymbrium tanacetifolia|herb (generic term)|herbaceous plant (generic term)
+tansy-scented|1
+(adj)|tansy-smelling|odorous (similar term)
+tansy-smelling|1
+(adj)|tansy-scented|odorous (similar term)
+tansy leaf aster|1
+(noun)|tahoka daisy|Machaeranthera tanacetifolia|wildflower (generic term)|wild flower (generic term)
+tansy mustard|1
+(noun)|Descurainia pinnata|herb (generic term)|herbaceous plant (generic term)
+tansy ragwort|1
+(noun)|ragwort|ragweed|benweed|Senecio jacobaea|weed (generic term)
+tantalise|1
+(verb)|tease|razz|rag|cod|tantalize|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+tantaliser|1
+(noun)|tantalizer|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+tantalising|2
+(adj)|tantalizing|inviting (similar term)
+(adj)|tantalizing|tempting|inviting (similar term)
+tantalite|1
+(noun)|mineral (generic term)
+tantalization|1
+(noun)|tease|teasing|ribbing|harassment (generic term)|molestation (generic term)
+tantalize|1
+(verb)|tease|razz|rag|cod|tantalise|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+tantalizer|1
+(noun)|tantaliser|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+tantalizing|2
+(adj)|tantalising|inviting (similar term)
+(adj)|tantalising|tempting|inviting (similar term)
+tantalizingly|1
+(adv)|invitingly
+tantalum|1
+(noun)|Ta|atomic number 73|metallic element (generic term)|metal (generic term)
+tantalus|1
+(noun)|Tantalus|mythical being (generic term)
+tantamount|1
+(adj)|equivalent|equal (similar term)
+tantilla|1
+(noun)|Tantilla|genus Tantilla|reptile genus (generic term)
+tantra|2
+(noun)|Sanskrit literature (generic term)
+(noun)|Tantra|Tantrism|Buddhism (generic term)
+tantric|1
+(adj)|Tantric|Tantrik|Buddhism (related term)
+tantrik|1
+(adj)|Tantric|Tantrik|Buddhism (related term)
+tantrism|2
+(noun)|Tantrism|Buddhism (generic term)
+(noun)|Tantra|Tantrism|Buddhism (generic term)
+tantrist|1
+(noun)|Tantrist|disciple (generic term)|adherent (generic term)
+tantrum|1
+(noun)|fit|scene|conniption|bad temper (generic term)|ill temper (generic term)
+tanzania|1
+(noun)|Tanzania|United Republic of Tanzania|African country (generic term)|African nation (generic term)
+tanzanian|2
+(adj)|Tanzanian|African country|African nation (related term)
+(noun)|Tanzanian|African (generic term)
+tanzanian monetary unit|1
+(noun)|Tanzanian monetary unit|monetary unit (generic term)
+tanzanian shilling|1
+(noun)|Tanzanian shilling|shilling|Tanzanian monetary unit (generic term)
+tanzim|1
+(noun)|Fatah Tanzim|Tanzim|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tanzimul fuqra|1
+(noun)|Jamaat ul-Fuqra|Fuqra|Tanzimul Fuqra|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tao|2
+(noun)|Taoist|Tao|disciple (generic term)|adherent (generic term)
+(noun)|Tao|principle (generic term)
+taoism|4
+(noun)|Taoism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Taoism|religion (generic term)|faith (generic term)|organized religion (generic term)
+(noun)|Taoism|Hsuan Chiao|religion (generic term)|faith (generic term)|religious belief (generic term)
+(noun)|Taoism|Daoism|philosophical doctrine (generic term)|philosophical theory (generic term)
+taoist|3
+(adj)|Taoist|religion|faith|religious belief (related term)
+(adj)|Taoist|philosophical doctrine|philosophical theory (related term)
+(noun)|Taoist|Tao|disciple (generic term)|adherent (generic term)
+taoist trinity|1
+(noun)|Taoist Trinity|Chinese deity (generic term)
+taos|2
+(noun)|Taos|Pueblo (generic term)
+(noun)|Taos|town (generic term)
+tap|20
+(noun)|pat|rap|sound (generic term)
+(noun)|water faucet|water tap|hydrant|faucet (generic term)|spigot (generic term)|plumbing fixture (generic term)
+(noun)|rap|strike|blow (generic term)|bump (generic term)
+(noun)|plate (generic term)
+(noun)|tool (generic term)
+(noun)|spigot|plug (generic term)|stopper (generic term)|stopple (generic term)
+(noun)|wiretap|investigation (generic term)|investigating (generic term)
+(noun)|pat|dab|touch (generic term)|touching (generic term)
+(verb)|cut (generic term)
+(verb)|withdraw (generic term)|draw (generic term)|take out (generic term)|draw off (generic term)
+(verb)|tip|strike (generic term)
+(verb)|exploit|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|wiretap|intercept|bug|listen in (generic term)|eavesdrop (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|rap|knock|pink|sound (generic term)|go (generic term)
+(verb)|walk (generic term)
+(verb)|tapdance|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|draw (generic term)|take out (generic term)
+(verb)|pierce (generic term)
+(verb)|solicit|beg|request (generic term)|bespeak (generic term)|call for (generic term)|quest (generic term)
+tap-off|1
+(noun)|tip-off|jump ball (generic term)
+tap dance|2
+(noun)|tap dancing|step dancing (generic term)|hoofing (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+tap dancer|1
+(noun)|tapper|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+tap dancing|1
+(noun)|tap dance|step dancing (generic term)|hoofing (generic term)
+tap house|1
+(noun)|tavern|building (generic term)|edifice (generic term)
+tap out|1
+(verb)|beat out|thump out|beat (generic term)
+tap water|1
+(noun)|water (generic term)|H2O (generic term)
+tap wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+tapa|2
+(noun)|tapa bark|tappa|tappa bark|bark (generic term)
+(noun)|tappa|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+tapa bark|1
+(noun)|tapa|tappa|tappa bark|bark (generic term)
+tapdance|1
+(verb)|tap|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+tape|8
+(noun)|strip (generic term)|slip (generic term)
+(noun)|tape recording|taping|recording (generic term)
+(noun)|finishing line (generic term)|finish line (generic term)
+(noun)|tapeline|tape measure|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+(noun)|magnetic tape|mag tape|memory device (generic term)|storage device (generic term)
+(verb)|attach (generic term)
+(verb)|videotape|record (generic term)|enter (generic term)|put down (generic term)
+(verb)|record|record (generic term)|enter (generic term)|put down (generic term)|erase (antonym)
+tape-recorded|1
+(adj)|taped|recorded (similar term)
+tape cartridge|1
+(noun)|cartridge (generic term)
+tape deck|1
+(noun)|electronic equipment (generic term)
+tape drive|1
+(noun)|tape transport|transport|mechanism (generic term)
+tape grass|1
+(noun)|eelgrass|wild celery|Vallisneria spiralis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+tape machine|1
+(noun)|tape recorder|magnetic recorder (generic term)
+tape measure|1
+(noun)|tape|tapeline|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tape player|1
+(noun)|electronic equipment (generic term)
+tape record|1
+(verb)|record (generic term)|tape (generic term)
+tape recorder|1
+(noun)|tape machine|magnetic recorder (generic term)
+tape recording|1
+(noun)|tape|taping|recording (generic term)
+tape transport|1
+(noun)|tape drive|transport|mechanism (generic term)
+taped|2
+(adj)|fixed (similar term)
+(adj)|tape-recorded|recorded (similar term)
+tapeline|1
+(noun)|tape|tape measure|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tapenade|1
+(noun)|spread (generic term)|paste (generic term)
+taper|6
+(noun)|convex shape (generic term)|convexity (generic term)
+(noun)|narrowing (generic term)
+(noun)|wick|cord (generic term)
+(noun)|candle|wax light|lamp (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|sharpen|point|change shape (generic term)|change form (generic term)|deform (generic term)|taper off (related term)|taper off (related term)
+taper file|1
+(noun)|file (generic term)|blunt file (antonym)
+taper off|2
+(verb)|peter out|fizzle out|fizzle|discontinue (generic term)
+(verb)|narrow (generic term)|contract (generic term)
+tapered|2
+(adj)|tapering|pointed (similar term)
+(adj)|tapering|narrowing|narrow (similar term)
+tapering|4
+(adj)|tapered|pointed (similar term)
+(adj)|tapered|narrowing|narrow (similar term)
+(adj)|dwindling|tapering off|decreasing (similar term)
+(noun)|lowering (generic term)
+tapering off|1
+(adj)|dwindling|tapering|decreasing (similar term)
+tapestried|1
+(adj)|adorned (similar term)|decorated (similar term)
+tapestry|3
+(noun)|complexity (generic term)|complexness (generic term)
+(noun)|tapis|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|arras|hanging (generic term)|wall hanging (generic term)
+tapestry moth|1
+(noun)|carpet moth|Trichophaga tapetzella|tineid (generic term)|tineid moth (generic term)
+tapeworm|1
+(noun)|cestode|flatworm (generic term)|platyhelminth (generic term)
+tapeworm infection|1
+(noun)|infection (generic term)
+taphephobia|1
+(noun)|simple phobia (generic term)
+taphouse|1
+(noun)|public house|pub|saloon|pothouse|gin mill|tavern (generic term)|tap house (generic term)
+taping|1
+(noun)|tape|tape recording|recording (generic term)
+tapioca|1
+(noun)|foodstuff (generic term)|food product (generic term)
+tapioca plant|1
+(noun)|bitter cassava|manioc|mandioc|mandioca|gari|Manihot esculenta|Manihot utilissima|cassava (generic term)|casava (generic term)
+tapioca pudding|1
+(noun)|pudding (generic term)
+tapir|1
+(noun)|odd-toed ungulate (generic term)|perissodactyl (generic term)|perissodactyl mammal (generic term)
+tapiridae|1
+(noun)|Tapiridae|family Tapiridae|mammal family (generic term)
+tapirus|1
+(noun)|Tapirus|genus Tapirus|mammal genus (generic term)
+tapirus indicus|1
+(noun)|Malayan tapir|Indian tapir|Tapirus indicus|tapir (generic term)
+tapirus terrestris|1
+(noun)|New World tapir|Tapirus terrestris|tapir (generic term)
+tapis|1
+(noun)|tapestry|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+tapotement|1
+(noun)|massage (generic term)
+tappa|2
+(noun)|tapa|tapa bark|tappa bark|bark (generic term)
+(noun)|tapa|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+tappa bark|1
+(noun)|tapa|tapa bark|tappa|bark (generic term)
+tappan|1
+(noun)|Tappan|Arthur Tappan|abolitionist (generic term)|emancipationist (generic term)
+tappan zee bridge|1
+(noun)|Tappan Zee Bridge|cantilever bridge (generic term)
+tapped|1
+(adj)|abroach (similar term)|broached (similar term)|untapped (antonym)
+tapper|5
+(noun)|tapster|publican (generic term)|tavern keeper (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|worker (generic term)
+(noun)|wiretapper|phone tapper|eavesdropper (generic term)
+(noun)|tap dancer|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+tappet|1
+(noun)|lever (generic term)
+tappet wrench|1
+(noun)|open-end wrench|wrench (generic term)|spanner (generic term)
+tapping|1
+(noun)|sound (generic term)
+taproom|1
+(noun)|barroom|bar|saloon|ginmill|room (generic term)
+taproot|2
+(noun)|root (generic term)
+(noun)|source (generic term)|seed (generic term)|germ (generic term)
+taps|1
+(noun)|lights-out|bugle call (generic term)
+tapster|1
+(noun)|tapper|publican (generic term)|tavern keeper (generic term)
+tar|3
+(noun)|pitch|bitumen (generic term)
+(noun)|mariner|seaman|Jack-tar|Jack|old salt|seafarer|gob|sea dog|sailor (generic term)|crewman (generic term)
+(verb)|coat (generic term)|surface (generic term)
+tar-and-feather|1
+(verb)|punish (generic term)|penalize (generic term)|penalise (generic term)
+tar-wood|2
+(noun)|tarwood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer (generic term)|coniferous tree (generic term)
+(noun)|tarwood|Dacrydium colensoi|conifer (generic term)|coniferous tree (generic term)
+tar heel state|1
+(noun)|North Carolina|Old North State|Tar Heel State|NC|American state (generic term)
+tar paper|1
+(noun)|roofing paper|paper (generic term)|roofing material (generic term)
+tar pit|1
+(noun)|pit (generic term)|cavity (generic term)
+tara|1
+(noun)|Tara|town (generic term)
+tara vine|1
+(noun)|bower actinidia|Actinidia arguta|vine (generic term)
+tarabulus|1
+(noun)|Tarabulus|Tripoli|Tarabulus Ash-Sham|Trablous|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+tarabulus al-gharb|1
+(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital (generic term)
+tarabulus ash-sham|1
+(noun)|Tarabulus|Tripoli|Tarabulus Ash-Sham|Trablous|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+taracahitian|1
+(noun)|Taracahitian|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+taradiddle|2
+(noun)|fib|story|tale|tarradiddle|lie (generic term)|prevarication (generic term)
+(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|tarradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+tarahumara|1
+(noun)|Tarahumara|Taracahitian (generic term)
+tarahumara frog|1
+(noun)|Rana tarahumarae|true frog (generic term)|ranid (generic term)
+taraktagenos|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+taraktagenos kurzii|1
+(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+taraktogenos|1
+(noun)|Hydnocarpus|genus Hydnocarpus|Taraktagenos|genus Taraktagenos|Taraktogenos|genus Taraktogenos|dilleniid dicot genus (generic term)
+taraktogenos kurzii|1
+(noun)|chaulmoogra|chaulmoogra tree|chaulmugra|Hydnocarpus kurzii|Taraktagenos kurzii|Taraktogenos kurzii|tree (generic term)
+tarantella|2
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|tarantelle|social dancing (generic term)
+tarantelle|1
+(noun)|tarantella|social dancing (generic term)
+tarantino|1
+(noun)|Tarantino|Quentin Tarantino|Quentin Jerome Tarantino|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+tarantism|1
+(noun)|chorea (generic term)
+tarantula|2
+(noun)|European wolf spider|Lycosa tarentula|wolf spider (generic term)|hunting spider (generic term)
+(noun)|spider (generic term)
+taras grigoryevich shevchenko|1
+(noun)|Shevchenko|Taras Grigoryevich Shevchenko|poet (generic term)
+tarawa|2
+(noun)|Tarawa|Bairiki|national capital (generic term)
+(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault (generic term)
+tarawa-makin|1
+(noun)|Tarawa|Makin|Tarawa-Makin|amphibious assault (generic term)
+taraxacum|1
+(noun)|Taraxacum|genus Taraxacum|asterid dicot genus (generic term)
+taraxacum kok-saghyz|1
+(noun)|Russian dandelion|kok-saghyz|kok-sagyz|Taraxacum kok-saghyz|dandelion (generic term)|blowball (generic term)
+taraxacum officinale|1
+(noun)|common dandelion|Taraxacum ruderalia|Taraxacum officinale|dandelion (generic term)|blowball (generic term)
+taraxacum ruderalia|1
+(noun)|common dandelion|Taraxacum ruderalia|Taraxacum officinale|dandelion (generic term)|blowball (generic term)
+tarbell|1
+(noun)|Tarbell|Ida Tarbell|Ida M. Tarbell|Ida Minerva Tarbell|writer (generic term)|author (generic term)
+tarboosh|1
+(noun)|fez|cap (generic term)
+tarchanoff phenomenon|1
+(noun)|galvanic skin response|GSR|psychogalvanic response|electrodermal response|electrical skin response|Fere phenomenon|Tarchanoff phenomenon|reaction (generic term)|response (generic term)
+tardigrada|1
+(noun)|Tardigrada|class Tardigrada|class (generic term)
+tardigrade|1
+(noun)|arthropod (generic term)
+tardily|2
+(adv)|slowly|slow|easy|quickly (antonym)
+(adv)|late|belatedly|early (antonym)
+tardiness|1
+(noun)|timing (generic term)|punctuality (antonym)
+tardive|1
+(adj)|late (similar term)|later (similar term)
+tardive dyskinesia|1
+(noun)|dyskinesia (generic term)
+tardy|1
+(adj)|belated|late|unpunctual (similar term)
+tare|3
+(noun)|vetch (generic term)
+(noun)|darnel|bearded darnel|cheat|Lolium temulentum|rye grass (generic term)|ryegrass (generic term)
+(noun)|counterweight (generic term)|counterbalance (generic term)|counterpoise (generic term)|balance (generic term)|equalizer (generic term)|equaliser (generic term)
+tareekh e kasas|1
+(noun)|Tareekh e Kasas|Movement for Revenge|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+taret organ|1
+(noun)|organ (generic term)
+target|6
+(noun)|mark|reference point (generic term)|point of reference (generic term)|reference (generic term)
+(noun)|prey|quarry|fair game|victim (generic term)
+(noun)|target area|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|butt|sports equipment (generic term)
+(noun)|aim|object|objective|goal (generic term)|end (generic term)
+(verb)|aim|place|direct|point|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+target-hunting|1
+(adj)|guided (similar term)
+target acquisition system|1
+(noun)|shipboard system (generic term)
+target area|1
+(noun)|target|topographic point (generic term)|place (generic term)|spot (generic term)
+target cell|2
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+(noun)|red blood cell (generic term)|RBC (generic term)|erythrocyte (generic term)
+target company|1
+(noun)|takeover target|company (generic term)
+target language|2
+(noun)|object language|language (generic term)|linguistic communication (generic term)
+(noun)|object language|programming language (generic term)|programing language (generic term)
+target organ|1
+(noun)|organ (generic term)
+target practice|1
+(noun)|exercise (generic term)|practice (generic term)|drill (generic term)|practice session (generic term)|recitation (generic term)
+target program|1
+(noun)|object program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)|source program (antonym)
+target range|1
+(noun)|firing range|practice range (generic term)
+tarheel|1
+(noun)|North Carolinian|Tarheel|American (generic term)
+taricha|1
+(noun)|Taricha|genus Taricha|amphibian genus (generic term)
+taricha granulosa|1
+(noun)|rough-skinned newt|Taricha granulosa|Pacific newt (generic term)
+taricha torosa|1
+(noun)|California newt|Taricha torosa|Pacific newt (generic term)
+tariff|2
+(noun)|duty|indirect tax (generic term)
+(verb)|tax (generic term)
+tarkovsky|1
+(noun)|Tarkovsky|Andrei Tarkovsky|Andrei Arsenevich Tarkovsky|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+tarmac|3
+(noun)|tarmacadam|paving material (generic term)
+(noun)|tarmacadam|macadam|paved surface (generic term)
+(verb)|macadamize|macadamise|coat (generic term)|surface (generic term)
+tarmacadam|2
+(noun)|tarmac|paving material (generic term)
+(noun)|tarmac|macadam|paved surface (generic term)
+tarn|1
+(noun)|lake (generic term)
+tarnish|2
+(noun)|stain (generic term)|discoloration (generic term)|discolouration (generic term)
+(verb)|stain|maculate|sully|defile|spot (generic term)|fleck (generic term)|blob (generic term)|blot (generic term)
+tarnished|1
+(adj)|besmirched|damaged|flyblown|spotted|stained|sullied|tainted|blemished (similar term)
+tarnished plant bug|1
+(noun)|Lygus lineolaris|lygus bug (generic term)
+taro|3
+(noun)|cocoyam|dasheen|eddo|root (generic term)
+(noun)|taro plant|dalo|dasheen|Colocasia esculenta|arum (generic term)|aroid (generic term)
+(noun)|taro root|cocoyam|dasheen|edda|root vegetable (generic term)
+taro plant|1
+(noun)|taro|dalo|dasheen|Colocasia esculenta|arum (generic term)|aroid (generic term)
+taro root|1
+(noun)|taro|cocoyam|dasheen|edda|root vegetable (generic term)
+tarot|1
+(noun)|tarot card|card (generic term)
+tarot card|1
+(noun)|tarot|card (generic term)
+tarp|1
+(noun)|tarpaulin|canvas (generic term)|canvas fabric (generic term)|canvass (generic term)|canvass fabric (generic term)
+tarpan|1
+(noun)|Equus caballus gomelini|wild horse (generic term)
+tarpaulin|1
+(noun)|tarp|canvas (generic term)|canvas fabric (generic term)|canvass (generic term)|canvass fabric (generic term)
+tarpon|1
+(noun)|Tarpon atlanticus|soft-finned fish (generic term)|malacopterygian (generic term)
+tarpon atlanticus|1
+(noun)|tarpon|Tarpon atlanticus|soft-finned fish (generic term)|malacopterygian (generic term)
+tarquin|1
+(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king (generic term)|male monarch (generic term)|Rex (generic term)
+tarquin the proud|1
+(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king (generic term)|male monarch (generic term)|Rex (generic term)
+tarquinius|1
+(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king (generic term)|male monarch (generic term)|Rex (generic term)
+tarquinius superbus|1
+(noun)|Tarquin|Tarquin the Proud|Tarquinius|Tarquinius Superbus|Lucius Tarquinius Superbus|king (generic term)|male monarch (generic term)|Rex (generic term)
+tarradiddle|2
+(noun)|fib|story|tale|taradiddle|lie (generic term)|prevarication (generic term)
+(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tommyrot|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+tarragon|2
+(noun)|estragon|Artemisia dracunculus|artemisia (generic term)
+(noun)|estragon|herb (generic term)
+tarred-and-feathered|1
+(adj)|punished (similar term)
+tarriance|1
+(noun)|lingering|delay (generic term)|holdup (generic term)
+tarrietia|1
+(noun)|Tarrietia|genus Tarrietia|dilleniid dicot genus (generic term)
+tarrietia argyrodendron|1
+(noun)|silver tree|Tarrietia argyrodendron|tree (generic term)
+tarry|3
+(adj)|pitchy|resinous|resiny|adhesive (similar term)
+(verb)|loiter|lounge|footle|lollygag|loaf|lallygag|hang around|mess about|linger|lurk|mill about|mill around|be (generic term)
+(verb)|linger|leave (generic term)|go forth (generic term)|go away (generic term)
+tarsal|2
+(adj)|skeletal structure (related term)
+(noun)|tarsal bone|bone (generic term)|os (generic term)
+tarsal bone|1
+(noun)|tarsal|bone (generic term)|os (generic term)
+tarsal gland|1
+(noun)|Meibomian gland|sebaceous gland (generic term)|sebaceous follicle (generic term)|glandulae sebaceae (generic term)
+tarsier|1
+(noun)|primate (generic term)
+tarsiidae|1
+(noun)|Tarsiidae|family Tarsiidae|mammal family (generic term)
+tarsioidea|1
+(noun)|Tarsioidea|suborder Tarsioidea|animal order (generic term)
+tarsitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tarsius|1
+(noun)|Tarsius|genus Tarsius|mammal genus (generic term)
+tarsius glis|1
+(noun)|Tarsius glis|tarsier (generic term)
+tarsius syrichta|1
+(noun)|Tarsius syrichta|tarsier (generic term)
+tarsus|1
+(noun)|skeletal structure (generic term)
+tart|5
+(adj)|lemony|lemonlike|sourish|tangy|sour (similar term)
+(adj)|sharp|sharp-worded|unpleasant (similar term)
+(noun)|prostitute|cocotte|whore|harlot|bawd|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+(noun)|pie (generic term)
+(noun)|pastry (generic term)
+tart up|2
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|dress up (generic term)|fig out (generic term)|fig up (generic term)|deck up (generic term)|gussy up (generic term)|fancy up (generic term)|trick up (generic term)|deck out (generic term)|trick out (generic term)|prink (generic term)|attire (generic term)|get up (generic term)|rig out (generic term)|tog up (generic term)|tog out (generic term)|overdress (generic term)
+tartan|1
+(noun)|plaid|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+tartar|4
+(noun)|cream of tartar|potassium bitartrate|potassium hydrogen tartrate|salt (generic term)
+(noun)|dragon|unpleasant woman (generic term)|disagreeable woman (generic term)
+(noun)|Tatar|Tartar|Mongol Tatar|Mongol (generic term)|Mongolian (generic term)
+(noun)|calculus|tophus|crust (generic term)|incrustation (generic term)|encrustation (generic term)
+tartar emetic|1
+(noun)|antimony potassium tartrate|mordant (generic term)|tartrate (generic term)
+tartar sauce|1
+(noun)|tartare sauce|sauce (generic term)
+tartar steak|1
+(noun)|steak tartare|cannibal mound|dish (generic term)
+tartare sauce|1
+(noun)|tartar sauce|sauce (generic term)
+tartarean|1
+(adj)|Hadean|Plutonian|Tartarean|infernal (similar term)
+tartarian honeysuckle|1
+(noun)|bush honeysuckle|Tartarian honeysuckle|Lonicera tatarica|honeysuckle (generic term)
+tartaric|1
+(adj)|salt (related term)
+tartaric acid|1
+(noun)|hydroxy acid (generic term)
+tartarus|1
+(noun)|Gehenna|Tartarus|Hell (generic term)|perdition (generic term)|Inferno (generic term)|infernal region (generic term)|nether region (generic term)|pit (generic term)
+tartary|1
+(noun)|Tartary|Tatary|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+tartlet|1
+(noun)|tart (generic term)
+tartness|3
+(noun)|sour|sourness|taste (generic term)|taste sensation (generic term)|gustatory sensation (generic term)|taste perception (generic term)|gustatory perception (generic term)
+(noun)|acerbity|sourness (generic term)|sour (generic term)|acidity (generic term)
+(noun)|bitterness|acrimony|acerbity|jaundice|thorniness|disagreeableness (generic term)
+tartrate|1
+(noun)|salt (generic term)
+tartu|1
+(noun)|Tartu|city (generic term)|metropolis (generic term)|urban center (generic term)
+tartufe|1
+(noun)|Tartuffe|Tartufe|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+tartuffe|1
+(noun)|Tartuffe|Tartufe|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+tarweed|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|gumweed|gum plant|rosinweed|herb (generic term)|herbaceous plant (generic term)
+tarwood|2
+(noun)|tar-wood|New Zealand mountain pine|Halocarpus bidwilli|Dacrydium bidwilli|conifer (generic term)|coniferous tree (generic term)
+(noun)|tar-wood|Dacrydium colensoi|conifer (generic term)|coniferous tree (generic term)
+tarzan|2
+(noun)|Tarzan|man (generic term)|adult male (generic term)
+(noun)|Tarzan|Tarzan of the Apes|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+tarzan of the apes|1
+(noun)|Tarzan|Tarzan of the Apes|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+tashkent|1
+(noun)|Tashkent|Taskent|capital of Uzbek|capital (generic term)
+tashmit|1
+(noun)|Tashmit|Tashmitum|Semitic deity (generic term)
+tashmitum|1
+(noun)|Tashmit|Tashmitum|Semitic deity (generic term)
+tashunca-uitco|1
+(noun)|Crazy Horse|Tashunca-Uitco|Indian chief (generic term)|Indian chieftain (generic term)|Sioux (generic term)|Siouan (generic term)
+task|4
+(noun)|undertaking|project|labor|work (generic term)
+(noun)|job|chore|duty (generic term)
+(verb)|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|tax|strain (generic term)|extend (generic term)
+task force|2
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|unit (generic term)|social unit (generic term)
+taskent|1
+(noun)|Tashkent|Taskent|capital of Uzbek|capital (generic term)
+taskmaster|1
+(noun)|supervisor (generic term)
+taskmistress|1
+(noun)|taskmaster (generic term)
+tasman|1
+(noun)|Tasman|Abel Tasman|Abel Janszoon Tasman|navigator (generic term)
+tasman dwarf pine|1
+(noun)|Tasman dwarf pine|Microstrobos niphophilus|shrub (generic term)|bush (generic term)
+tasman sea|1
+(noun)|Tasman Sea|sea (generic term)
+tasmania|2
+(noun)|Tasmania|Australian state (generic term)
+(noun)|Tasmania|island (generic term)
+tasmanian|1
+(adj)|Tasmanian|Australian state (related term)
+tasmanian devil|1
+(noun)|Tasmanian devil|ursine dasyure|Sarcophilus hariisi|dasyurid marsupial (generic term)|dasyurid (generic term)
+tasmanian tiger|1
+(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial (generic term)|dasyurid (generic term)
+tasmanian wolf|1
+(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial (generic term)|dasyurid (generic term)
+tasse|1
+(noun)|tasset|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+tassel|1
+(noun)|adornment (generic term)
+tassel-shaped|1
+(adj)|formed (similar term)
+tassel flower|3
+(noun)|Emilia sagitta|herb (generic term)|herbaceous plant (generic term)
+(noun)|Emilia coccinea|Emilia javanica|Emilia flammea|Cacalia javanica|Cacalia lutea|herb (generic term)|herbaceous plant (generic term)
+(noun)|love-lies-bleeding|velvet flower|Amaranthus caudatus|amaranth (generic term)
+tassel hyacinth|1
+(noun)|Muscari comosum|grape hyacinth (generic term)
+tasseled|1
+(adj)|tasselled|adorned (similar term)|decorated (similar term)
+tasselled|1
+(adj)|tasseled|adorned (similar term)|decorated (similar term)
+tasset|1
+(noun)|tasse|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+tasso|1
+(noun)|Tasso|Torquato Tasso|poet (generic term)
+taste|13
+(noun)|taste sensation|gustatory sensation|taste perception|gustatory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|preference|penchant|predilection|liking (generic term)
+(noun)|appreciation|discernment|perceptiveness|discrimination (generic term)|secernment (generic term)
+(noun)|experience (generic term)
+(noun)|mouthful|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|gustation|sense of taste|gustatory modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+(noun)|tasting|sensing (generic term)|perception (generic term)
+(verb)|savor|savour
+(verb)|sample|try|try out|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|smack|taste (generic term)|savor (generic term)|savour (generic term)
+(verb)|identify (generic term)
+(verb)|know (generic term)|experience (generic term)|live (generic term)
+taste-maker|1
+(noun)|trend-setter|fashion arbiter|model (generic term)|role model (generic term)
+taste-tester|1
+(noun)|taster|taste tester|sampler|critic (generic term)
+taste bud|1
+(noun)|tastebud|gustatory organ|chemoreceptor (generic term)
+taste cell|1
+(noun)|gustatory cell|epithelial cell (generic term)
+taste perception|1
+(noun)|taste|taste sensation|gustatory sensation|gustatory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+taste property|1
+(noun)|property (generic term)
+taste sensation|1
+(noun)|taste|gustatory sensation|taste perception|gustatory perception|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+taste tester|1
+(noun)|taster|taste-tester|sampler|critic (generic term)
+tastebud|1
+(noun)|taste bud|gustatory organ|chemoreceptor (generic term)
+tasteful|2
+(adj)|aesthetic (similar term)|esthetic (similar term)|artistic (similar term)|pleasing (similar term)|understated (similar term)|unostentatious (similar term)|unpretentious (similar term)|elegant (related term)|unpretentious (related term)|tasteless (antonym)
+(adj)|neat|refined|elegant (similar term)
+tastefully|1
+(adv)|tastily|tastelessly (antonym)
+tastefulness|1
+(noun)|elegance (generic term)|tastelessness (antonym)
+tasteless|2
+(adj)|bland (similar term)|flat (similar term)|flavorless (similar term)|flavourless (similar term)|insipid (similar term)|savorless (similar term)|savourless (similar term)|vapid (similar term)|unflavored (similar term)|unflavoured (similar term)|nonflavored (similar term)|nonflavoured (similar term)|unsalted (similar term)|unseasoned (similar term)|unappetizing (related term)|unappetising (related term)|unpalatable (related term)|tasty (antonym)
+(adj)|barbaric (similar term)|brassy (similar term)|cheap (similar term)|flash (similar term)|flashy (similar term)|garish (similar term)|gaudy (similar term)|gimcrack (similar term)|loud (similar term)|meretricious (similar term)|tacky (similar term)|tatty (similar term)|tawdry (similar term)|trashy (similar term)|Brummagem (similar term)|camp (similar term)|campy (similar term)|indelicate (similar term)|off-color (similar term)|off-colour (similar term)|ostentatious (similar term)|pretentious (similar term)|kitsch (similar term)|inelegant (related term)|pretentious (related term)|tasteful (antonym)
+tastelessly|1
+(adv)|tastefully (antonym)
+tastelessness|2
+(noun)|flavorlessness|flavourlessness|savorlessness|savourlessness|unappetizingness (generic term)|unappetisingness (generic term)
+(noun)|inelegance (generic term)|tastefulness (antonym)
+taster|1
+(noun)|taste tester|taste-tester|sampler|critic (generic term)
+tastily|1
+(adv)|tastefully|tastelessly (antonym)
+tastiness|1
+(noun)|pleasingness|palatability (generic term)|palatableness (generic term)
+tasting|3
+(noun)|sample (generic term)
+(noun)|taste|sensing (generic term)|perception (generic term)
+(noun)|savoring|savouring|relishing|degustation|eating (generic term)|feeding (generic term)
+tasty|1
+(adj)|acid-tasting (similar term)|sour-tasting (similar term)|ambrosial (similar term)|ambrosian (similar term)|nectarous (similar term)|bitter (similar term)|bitterish (similar term)|sharp-tasting (similar term)|bittersweet (similar term)|semisweet (similar term)|choice (similar term)|dainty (similar term)|delectable (similar term)|delicious (similar term)|luscious (similar term)|pleasant-tasting (similar term)|scrumptious (similar term)|toothsome (similar term)|yummy (similar term)|flavorful (similar term)|flavourful (similar term)|flavorous (similar term)|flavourous (similar term)|flavorsome (similar term)|flavoursome (similar term)|sapid (similar term)|saporous (similar term)|fruity (similar term)|full-bodied (similar term)|racy (similar term)|rich (similar term)|robust (similar term)|peppery (similar term)|gingery (similar term)|hot (similar term)|grapey (similar term)|grapy (similar term)|mild-tasting (similar term)|nippy (similar term)|nutty (similar term)|nutlike (similar term)|piquant (similar term)|savory (similar term)|savoury (similar term)|spicy (similar term)|zesty (similar term)|pungent (similar term)|acrid (similar term)|salty (similar term)|salt (similar term)|smoky (similar term)|sour (similar term)|strong-flavored (similar term)|winy (similar term)|winey (similar term)|appetizing (related term)|appetising (related term)|palatable (related term)|toothsome (related term)|salty (related term)|sour (related term)|sweet (related term)|tasteless (antonym)
+tat|3
+(noun)|cheapness|tackiness|sleaze|tastelessness (generic term)
+(noun)|Thematic Apperception Test|TAT|projective test (generic term)|projective device (generic term)|projective technique (generic term)
+(verb)|intertwine|create from raw material (generic term)|create from raw stuff (generic term)
+tatahumara|1
+(noun)|Tatahumara|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+tatar|3
+(noun)|Tatar|Tartar|Mongol Tatar|Mongol (generic term)|Mongolian (generic term)
+(noun)|Tatar|Russian (generic term)
+(noun)|Tatar|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+tatary|1
+(noun)|Tartary|Tatary|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+tate|1
+(noun)|Tate|Allen Tate|John Orley Allen Tate|critic (generic term)|poet (generic term)
+tater|1
+(noun)|potato|white potato|Irish potato|murphy|spud|root vegetable (generic term)|solanaceous vegetable (generic term)
+tati|1
+(noun)|Tati|Jacques Tati|Jacques Tatischeff|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+tatou|1
+(noun)|giant armadillo|tatu|Priodontes giganteus|armadillo (generic term)
+tatouay|1
+(noun)|cabassous|Cabassous unicinctus|armadillo (generic term)
+tatter|1
+(noun)|rag|shred|tag|tag end|piece of cloth (generic term)|piece of material (generic term)
+tatterdemalion|3
+(adj)|tattered|worn (similar term)
+(adj)|bedraggled|broken-down|derelict|dilapidated|ramshackle|tumble-down|damaged (similar term)
+(noun)|ragamuffin|urchin (generic term)
+tattered|2
+(adj)|tatterdemalion|worn (similar term)
+(adj)|shattered|destroyed (similar term)
+tattily|1
+(adv)|cheaply|inexpensively|expensively (antonym)
+tatting|2
+(noun)|needlework (generic term)|needlecraft (generic term)
+(noun)|lace making|handicraft (generic term)
+tattle|3
+(noun)|singing|telling|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|twaddle|clack|maunder|prattle|blab|gibber|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|spill the beans|let the cat out of the bag|talk|blab|peach|babble|sing|babble out|blab out|unwrap (generic term)|disclose (generic term)|let on (generic term)|bring out (generic term)|reveal (generic term)|discover (generic term)|expose (generic term)|divulge (generic term)|impart (generic term)|break (generic term)|give away (generic term)|let out (generic term)|keep quiet (antonym)
+tattler|2
+(noun)|tattletale|taleteller|talebearer|telltale|blabbermouth|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+(noun)|sandpiper (generic term)
+tattletale|1
+(noun)|tattler|taleteller|talebearer|telltale|blabbermouth|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+tattletale gray|1
+(noun)|tattletale grey|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+tattletale grey|1
+(noun)|tattletale gray|gray (generic term)|grayness (generic term)|grey (generic term)|greyness (generic term)
+tattling|1
+(adj)|blabbermouthed|leaky|talebearing|communicative (similar term)|communicatory (similar term)
+tattoo|4
+(noun)|drumbeat (generic term)|bugle call (generic term)
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(noun)|decoration (generic term)
+(verb)|stain (generic term)
+tatty|2
+(adj)|moth-eaten|ratty|shabby|worn (similar term)
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tawdry|trashy|tasteless (similar term)
+tatu|1
+(noun)|giant armadillo|tatou|Priodontes giganteus|armadillo (generic term)
+tatum|2
+(noun)|Tatum|Edward Lawrie Tatum|biochemist (generic term)
+(noun)|Tatum|Art Tatum|Arthur Tatum|jazz musician (generic term)|jazzman (generic term)
+tau|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+tau-minus particle|1
+(noun)|tauon|lepton (generic term)
+tau-plus particle|1
+(noun)|antitauon|antilepton (generic term)
+tau coefficient of correlation|1
+(noun)|Kendall's tau|Kendall rank correlation|Kendall test (generic term)
+tau cross|1
+(noun)|St. Anthony's cross|Cross (generic term)
+taunt|2
+(noun)|twit|taunting|aggravation (generic term)|irritation (generic term)|provocation (generic term)
+(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|twit|rally|ride|mock (generic term)|bemock (generic term)
+taunting|2
+(adj)|derisive|gibelike|jeering|mocking|disrespectful (similar term)
+(noun)|twit|taunt|aggravation (generic term)|irritation (generic term)|provocation (generic term)
+tauntingly|1
+(adv)|teasingly
+tauon|1
+(noun)|tau-minus particle|lepton (generic term)
+taupe|2
+(adj)|fuscous|chromatic (similar term)
+(noun)|brown (generic term)|brownness (generic term)
+taurine|2
+(adj)|cattle|cows|kine|oxen|Bos taurus (related term)
+(noun)|compound (generic term)|chemical compound (generic term)
+tauromachy|1
+(noun)|bullfighting|blood sport (generic term)
+taurotragus|1
+(noun)|Taurotragus|genus Taurotragus|mammal genus (generic term)
+taurotragus derbianus|1
+(noun)|giant eland|Taurotragus derbianus|eland (generic term)
+taurotragus oryx|1
+(noun)|common eland|Taurotragus oryx|eland (generic term)
+taurus|4
+(noun)|Sanchez|Ilich Sanchez|Ilich Ramirez Sanchez|Carlos|Carlos the Jackal|Salim|Andres Martinez|Taurus|Glen Gebhard|Hector Hevodidbon|Michael Assat|terrorist (generic term)
+(noun)|Taurus|Bull|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Taurus|constellation (generic term)
+(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+taurus the bull|1
+(noun)|Taurus|Taurus the Bull|Bull|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+taut|2
+(adj)|tight|tense (similar term)
+(adj)|tense (similar term)
+tauten|2
+(verb)|firm|tighten (generic term)
+(verb)|firm|tighten (generic term)|fasten (generic term)
+tautness|2
+(noun)|tension|tensity|tenseness|condition (generic term)|status (generic term)
+(noun)|tightness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+tautog|1
+(noun)|blackfish|Tautoga onitis|wrasse (generic term)
+tautoga|1
+(noun)|Tautoga|genus Tautoga|fish genus (generic term)
+tautoga onitis|1
+(noun)|tautog|blackfish|Tautoga onitis|wrasse (generic term)
+tautogolabrus|1
+(noun)|Tautogolabrus|genus Tautogolabrus|fish genus (generic term)
+tautogolabrus adspersus|1
+(noun)|cunner|bergall|Tautogolabrus adspersus|wrasse (generic term)
+tautologic|1
+(adj)|pleonastic|redundant|tautological|prolix (similar term)
+tautological|1
+(adj)|pleonastic|redundant|tautologic|prolix (similar term)
+tautology|2
+(noun)|truth (generic term)|true statement (generic term)
+(noun)|repetitiveness (generic term)|repetitiousness (generic term)
+tavern|1
+(noun)|tap house|building (generic term)|edifice (generic term)
+tavern keeper|1
+(noun)|publican|bartender (generic term)|barman (generic term)|barkeep (generic term)|barkeeper (generic term)|mixologist (generic term)
+taw|2
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|shooter|marble (generic term)
+tawdrily|1
+(adv)|garishly|gaudily
+tawdriness|1
+(noun)|flashiness|garishness|gaudiness|loudness|brashness|meretriciousness|glitz|tastelessness (generic term)
+tawdry|2
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|trashy|tasteless (similar term)
+(adj)|cheapjack|shoddy|inferior (similar term)
+tawney|1
+(noun)|Tawney|Richard Henry Tawney|economist (generic term)|economic expert (generic term)
+tawniness|1
+(noun)|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+tawny|1
+(adj)|tawny-brown|chromatic (similar term)
+tawny-brown|1
+(adj)|tawny|chromatic (similar term)
+tawny-colored|1
+(adj)|tawny-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+tawny-coloured|1
+(adj)|tawny-colored|colored (similar term)|coloured (similar term)|colorful (similar term)
+tawny eagle|1
+(noun)|Aquila rapax|eagle (generic term)|bird of Jove (generic term)
+tawny owl|1
+(noun)|Strix aluco|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+tawse|1
+(noun)|strap (generic term)
+tax|5
+(noun)|taxation|revenue enhancement|levy (generic term)
+(verb)|levy (generic term)|impose (generic term)
+(verb)|assess|determine (generic term)|set (generic term)
+(verb)|task|strain (generic term)|extend (generic term)
+(verb)|charge (generic term)
+tax-exempt|2
+(adj)|tax-free|untaxed|nontaxable (similar term)|exempt (similar term)
+(noun)|tax-exempt security|security (generic term)|certificate (generic term)
+tax-exempt security|1
+(noun)|tax-exempt|security (generic term)|certificate (generic term)
+tax-free|1
+(adj)|tax-exempt|untaxed|nontaxable (similar term)|exempt (similar term)
+tax-increase|1
+(noun)|tax boost|tax hike|increase (generic term)|increment (generic term)
+tax advantage|1
+(noun)|advantage (generic term)|vantage (generic term)
+tax assessment|1
+(noun)|assessment (generic term)
+tax assessor|1
+(noun)|assessor|bureaucrat (generic term)|administrative official (generic term)
+tax avoidance|1
+(noun)|minimization (generic term)|minimisation (generic term)
+tax base|1
+(noun)|assets (generic term)
+tax benefit|1
+(noun)|tax break|tax write-off (generic term)|tax deduction (generic term)|deduction (generic term)
+tax bill|1
+(noun)|bill (generic term)|account (generic term)|invoice (generic term)
+tax boost|1
+(noun)|tax-increase|tax hike|increase (generic term)|increment (generic term)
+tax bracket|1
+(noun)|income bracket|income tax bracket|bracket (generic term)
+tax break|1
+(noun)|tax benefit|tax write-off (generic term)|tax deduction (generic term)|deduction (generic term)
+tax collection|1
+(noun)|collection (generic term)|collecting (generic term)|assembling (generic term)|aggregation (generic term)
+tax collector|1
+(noun)|taxman|exciseman|collector of internal revenue|internal revenue agent|bureaucrat (generic term)|administrative official (generic term)
+tax credit|1
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+tax cut|1
+(noun)|cut (generic term)
+tax deduction|1
+(noun)|tax write-off|deduction|write-off (generic term)|write-down (generic term)
+tax evasion|1
+(noun)|evasion (generic term)|nonpayment (generic term)
+tax form|1
+(noun)|form (generic term)
+tax haven|1
+(noun)|country (generic term)|state (generic term)|land (generic term)
+tax hike|1
+(noun)|tax-increase|tax boost|increase (generic term)|increment (generic term)
+tax income|1
+(noun)|taxation|tax revenue|revenue|government income (generic term)|government revenue (generic term)
+tax law|1
+(noun)|law (generic term)|jurisprudence (generic term)
+tax liability|1
+(noun)|liabilities (generic term)
+tax lien|1
+(noun)|lien (generic term)
+tax policy|1
+(noun)|tax program|program (generic term)|programme (generic term)
+tax program|1
+(noun)|tax policy|program (generic term)|programme (generic term)
+tax rate|1
+(noun)|rate (generic term)|charge per unit (generic term)
+tax return|1
+(noun)|income tax return|return|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+tax revenue|1
+(noun)|tax income|taxation|revenue|government income (generic term)|government revenue (generic term)
+tax shelter|1
+(noun)|shelter|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)
+tax system|1
+(noun)|legal system (generic term)
+tax write-off|1
+(noun)|tax deduction|deduction|write-off (generic term)|write-down (generic term)
+taxability|1
+(noun)|liability (generic term)
+taxable|1
+(adj)|nonexempt|assessable (similar term)|dutiable (similar term)|ratable (similar term)|rateable (similar term)|subject (similar term)|nonexempt (related term)|nontaxable (antonym)
+taxaceae|1
+(noun)|Taxaceae|family Taxaceae|yew family|gymnosperm family (generic term)
+taxales|1
+(noun)|Taxales|order Taxales|plant order (generic term)
+taxation|3
+(noun)|tax|revenue enhancement|levy (generic term)
+(noun)|tax income|tax revenue|revenue|government income (generic term)|government revenue (generic term)
+(noun)|imposition (generic term)|infliction (generic term)
+taxer|1
+(noun)|bureaucrat (generic term)|administrative official (generic term)
+taxi|3
+(noun)|cab|hack|taxicab|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|cab|ride (generic term)
+taxi dancer|1
+(noun)|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+taxi fare|1
+(noun)|cab fare|fare (generic term)|transportation (generic term)
+taxi rank|1
+(noun)|cabstand|taxistand|stand (generic term)
+taxi strip|1
+(noun)|taxiway|paved surface (generic term)
+taxicab|1
+(noun)|cab|hack|taxi|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+taxidea|1
+(noun)|Taxidea|genus Taxidea|mammal genus (generic term)
+taxidea taxus|1
+(noun)|American badger|Taxidea taxus|badger (generic term)
+taxidermist|1
+(noun)|animal stuffer|stuffer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+taxidermy|1
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+taxidriver|1
+(noun)|taximan|cabdriver|cabman|cabby|hack driver|hack-driver|livery driver|driver (generic term)
+taximan|1
+(noun)|taxidriver|cabdriver|cabman|cabby|hack driver|hack-driver|livery driver|driver (generic term)
+taximeter|1
+(noun)|meter (generic term)
+taxing|1
+(adj)|burdensome|onerous|heavy (similar term)
+taxis|2
+(noun)|reaction (generic term)|response (generic term)
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+taxistand|1
+(noun)|cabstand|taxi rank|stand (generic term)
+taxiway|1
+(noun)|taxi strip|paved surface (generic term)
+taxman|1
+(noun)|tax collector|exciseman|collector of internal revenue|internal revenue agent|bureaucrat (generic term)|administrative official (generic term)
+taxodiaceae|1
+(noun)|Taxodiaceae|subfamily Taxodiaceae|redwood family|gymnosperm family (generic term)
+taxodium|1
+(noun)|Taxodium|genus Taxodium|gymnosperm genus (generic term)
+taxodium ascendens|1
+(noun)|pond cypress|bald cypress|Taxodium ascendens|cypress (generic term)
+taxodium distichum|1
+(noun)|bald cypress|swamp cypress|pond bald cypress|southern cypress|Taxodium distichum|cypress (generic term)
+taxodium mucronatum|1
+(noun)|Montezuma cypress|Mexican swamp cypress|Taxodium mucronatum|cypress (generic term)
+taxon|1
+(noun)|taxonomic group|taxonomic category|biological group (generic term)
+taxonomer|1
+(noun)|taxonomist|systematist|biologist (generic term)|life scientist (generic term)
+taxonomic|1
+(adj)|taxonomical|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment (related term)
+taxonomic category|1
+(noun)|taxonomic group|taxon|biological group (generic term)
+taxonomic group|1
+(noun)|taxonomic category|taxon|biological group (generic term)
+taxonomical|1
+(adj)|taxonomic|categorization|categorisation|classification|compartmentalization|compartmentalisation|assortment (related term)
+taxonomist|1
+(noun)|taxonomer|systematist|biologist (generic term)|life scientist (generic term)
+taxonomy|3
+(noun)|hierarchy (generic term)
+(noun)|systematics (generic term)
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+taxophytina|1
+(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class (generic term)
+taxopsida|1
+(noun)|Taxopsida|class Taxopsida|Taxophytina|subdivision Taxophytina|class (generic term)
+taxpayer|1
+(noun)|payer (generic term)|remunerator (generic term)
+taxpaying|1
+(adj)|nonexempt (similar term)
+taxus|1
+(noun)|Taxus|genus Taxus|gymnosperm genus (generic term)
+taxus baccata|1
+(noun)|Old World yew|English yew|Taxus baccata|yew (generic term)
+taxus brevifolia|1
+(noun)|Pacific yew|California yew|western yew|Taxus brevifolia|yew (generic term)
+taxus cuspidata|1
+(noun)|Japanese yew|Taxus cuspidata|yew (generic term)
+taxus floridana|1
+(noun)|Florida yew|Taxus floridana|yew (generic term)
+tay|1
+(noun)|Tay|Tai (generic term)
+tay-sachs|1
+(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+tay-sachs disease|1
+(noun)|Tay-Sachs disease|Tay-Sachs|Sachs disease|infantile amaurotic idiocy|lipidosis (generic term)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+tayalic|1
+(noun)|Tayalic|Atayalic|Formosan (generic term)
+tayassu|1
+(noun)|Tayassu|genus Tayassu|genus Pecari|mammal genus (generic term)
+tayassu angulatus|1
+(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary (generic term)|musk hog (generic term)
+tayassu pecari|1
+(noun)|white-lipped peccary|Tayassu pecari|peccary (generic term)|musk hog (generic term)
+tayassu tajacu|1
+(noun)|collared peccary|javelina|Tayassu angulatus|Tayassu tajacu|Peccari angulatus|peccary (generic term)|musk hog (generic term)
+tayassuidae|1
+(noun)|Tayassuidae|family Tayassuidae|mammal family (generic term)
+taylor|3
+(noun)|Taylor|Deems Taylor|Joseph Deems Taylor|composer (generic term)|music critic (generic term)
+(noun)|Taylor|Elizabeth Taylor|actress (generic term)
+(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+taymyr peninsula|1
+(noun)|Taimyr Peninsula|Taymyr Peninsula|peninsula (generic term)
+tayra|1
+(noun)|taira|Eira barbara|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+tazicef|1
+(noun)|ceftazidime|Fortaz|Tazicef|cephalosporin (generic term)|Mefoxin (generic term)
+tazir crime|1
+(noun)|Tazir crime|crime (generic term)|law-breaking (generic term)
+tb|3
+(noun)|terbium|Tb|atomic number 65|metallic element (generic term)|metal (generic term)
+(noun)|tuberculosis|TB|T.B.|infectious disease (generic term)
+(noun)|terabyte|T|TB|computer memory unit (generic term)
+tbilisi|1
+(noun)|Tbilisi|Tiflis|capital of Georgia|capital (generic term)
+tc|2
+(noun)|technetium|Tc|atomic number 43|metallic element (generic term)|metal (generic term)
+(noun)|Trusteeship Council|TC|council (generic term)
+tce|1
+(noun)|trichloroethylene|trichloroethane|TCE|ethylene (generic term)|ethene (generic term)
+tchad|1
+(noun)|Chad|Republic of Chad|Tchad|African country (generic term)|African nation (generic term)
+tchaikovsky|1
+(noun)|Tchaikovsky|Peter Tchaikovsky|Peter Ilich Tchaikovsky|Pyotr Tchaikovsky|Pyotr Ilych Tchaikovsky|composer (generic term)
+tchotchke|2
+(noun)|chachka|mistress (generic term)|kept woman (generic term)|fancy woman (generic term)
+(noun)|chachka|collectible (generic term)|collectable (generic term)
+tcp|1
+(noun)|transmission control protocol|TCP|protocol (generic term)|communications protocol (generic term)
+tcp/ip|1
+(noun)|transmission control protocol/internet protocol|TCP/IP|protocol (generic term)|communications protocol (generic term)
+tdt|1
+(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|ephemeris time|time unit (generic term)|unit of time (generic term)
+te|2
+(noun)|tellurium|Te|atomic number 52|chemical element (generic term)|element (generic term)
+(noun)|ti|si|solfa syllable (generic term)
+te deum|1
+(noun)|Te Deum|hymn (generic term)|anthem (generic term)
+te kanawa|1
+(noun)|Te Kanawa|Dame Kiri Te Kanawa|Dame Kiri Janette Te Kanawa|soprano (generic term)
+tea|5
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|afternoon tea|teatime|meal (generic term)|repast (generic term)
+(noun)|tea leaf|herb (generic term)
+(noun)|reception (generic term)
+(noun)|Camellia sinensis|shrub (generic term)|bush (generic term)
+tea-like drink|1
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+tea-scented|1
+(adj)|odorous (similar term)
+tea-strainer|1
+(noun)|strainer (generic term)
+tea bag|2
+(noun)|tea (generic term)|tea leaf (generic term)
+(noun)|bag (generic term)
+tea ball|1
+(noun)|kitchen utensil (generic term)
+tea biscuit|1
+(noun)|teacake|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+tea bread|1
+(noun)|bun (generic term)|roll (generic term)
+tea break|1
+(noun)|coffee break|bite (generic term)|collation (generic term)|snack (generic term)
+tea caddy|1
+(noun)|caddy|can (generic term)|tin (generic term)|tin can (generic term)
+tea cart|1
+(noun)|teacart|tea trolley|tea wagon|serving cart (generic term)
+tea ceremony|1
+(noun)|chanoyu|ceremony (generic term)
+tea chest|1
+(noun)|chest (generic term)
+tea cloth|1
+(noun)|tablecloth (generic term)
+tea cosey|1
+(noun)|cosy|tea cosy|cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+tea cosy|1
+(noun)|cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+tea cozey|1
+(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|cozie|tea cozie|cloth covering (generic term)
+tea cozie|1
+(noun)|cosy|tea cosy|cosey|tea cosey|cozy|tea cozy|cozey|tea cozey|cozie|cloth covering (generic term)
+tea cozy|1
+(noun)|cosy|tea cosy|cosey|tea cosey|cozy|cozey|tea cozey|cozie|tea cozie|cloth covering (generic term)
+tea family|1
+(noun)|Theaceae|family Theaceae|dilleniid dicot family (generic term)
+tea garden|1
+(noun)|garden (generic term)
+tea gown|1
+(noun)|gown (generic term)
+tea leaf|1
+(noun)|tea|herb (generic term)
+tea maker|1
+(noun)|spoon (generic term)
+tea napkin|1
+(noun)|napkin (generic term)|table napkin (generic term)|serviette (generic term)
+tea parlor|1
+(noun)|teashop|teahouse|tearoom|tea parlour|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+tea parlour|1
+(noun)|teashop|teahouse|tearoom|tea parlor|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+tea party|1
+(noun)|party (generic term)
+tea rose|1
+(noun)|Rosa odorata|rose (generic term)|rosebush (generic term)
+tea service|1
+(noun)|tea set|tableware (generic term)
+tea set|1
+(noun)|tea service|tableware (generic term)
+tea table|1
+(noun)|table (generic term)
+tea tortrix|1
+(noun)|tortrix|Homona coffearia|tortricid (generic term)|tortricid moth (generic term)
+tea towel|1
+(noun)|dishtowel|dish towel|towel (generic term)
+tea tray|1
+(noun)|tray (generic term)
+tea trolley|1
+(noun)|tea cart|teacart|tea wagon|serving cart (generic term)
+tea urn|1
+(noun)|urn (generic term)
+tea wagon|1
+(noun)|tea cart|teacart|tea trolley|serving cart (generic term)
+teaberry|2
+(noun)|wintergreen|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+(noun)|wintergreen|boxberry|checkerberry|spiceberry|berry (generic term)
+teacake|2
+(noun)|tea biscuit|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+(noun)|cake (generic term)
+teacart|1
+(noun)|tea cart|tea trolley|tea wagon|serving cart (generic term)
+teach|3
+(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+(verb)|learn|instruct|inform (generic term)
+(verb)|habituate (generic term)|accustom (generic term)
+teach-in|1
+(noun)|conference (generic term)|group discussion (generic term)
+teachable|1
+(adj)|docile|tractable (similar term)|manipulable (similar term)
+teacher|2
+(noun)|instructor|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|abstraction (generic term)|abstract (generic term)
+teacher's certificate|1
+(noun)|teaching certificate|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+teacher's pet|1
+(noun)|darling (generic term)|favorite (generic term)|favourite (generic term)|pet (generic term)|dearie (generic term)|deary (generic term)|ducky (generic term)
+teacher-student relation|1
+(noun)|academic relation (generic term)
+teachers college|1
+(noun)|normal school|junior college (generic term)
+teachership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+teaching|3
+(noun)|instruction|pedagogy|education (generic term)
+(noun)|precept|commandment|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+(noun)|education|instruction|pedagogy|didactics|educational activity|activity (generic term)
+teaching aid|1
+(noun)|equipment (generic term)
+teaching certificate|1
+(noun)|teacher's certificate|certificate (generic term)|certification (generic term)|credential (generic term)|credentials (generic term)
+teaching fellow|1
+(noun)|teacher (generic term)|instructor (generic term)
+teaching method|1
+(noun)|pedagogics|pedagogy|method (generic term)
+teaching reading|1
+(noun)|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+teacup|2
+(noun)|teacupful|containerful (generic term)
+(noun)|cup (generic term)
+teacupful|1
+(noun)|teacup|containerful (generic term)
+teahouse|1
+(noun)|teashop|tearoom|tea parlor|tea parlour|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+teak|2
+(noun)|teakwood|wood (generic term)
+(noun)|Tectona grandis|tree (generic term)
+teakettle|1
+(noun)|kettle (generic term)|boiler (generic term)
+teakwood|1
+(noun)|teak|wood (generic term)
+teal|3
+(adj)|bluish green|blue-green|cyan|chromatic (similar term)
+(noun)|bluish green|blue green|green (generic term)|greenness (generic term)|viridity (generic term)
+(noun)|duck (generic term)
+team|3
+(noun)|squad|unit (generic term)|social unit (generic term)
+(noun)|animal group (generic term)
+(verb)|team up|group (generic term)|aggroup (generic term)
+team spirit|1
+(noun)|esprit de corps|morale|disposition (generic term)|temperament (generic term)
+team sport|1
+(noun)|sport (generic term)|athletics (generic term)
+team teaching|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+team up|1
+(verb)|team|group (generic term)|aggroup (generic term)
+teammate|1
+(noun)|mate|associate (generic term)
+teamster|2
+(noun)|driver (generic term)
+(noun)|trucker|truck driver|driver (generic term)
+teamsters union|1
+(noun)|Teamsters Union|industrial union (generic term)|vertical union (generic term)
+teamwork|1
+(noun)|cooperation (generic term)
+teapot|1
+(noun)|pot (generic term)
+teapot dome|1
+(noun)|Teapot Dome|Teapot Dome scandal|scandal (generic term)|outrage (generic term)
+teapot dome scandal|1
+(noun)|Teapot Dome|Teapot Dome scandal|scandal (generic term)|outrage (generic term)
+tear|9
+(noun)|teardrop|drop (generic term)|drib (generic term)|driblet (generic term)
+(noun)|rip|rent|snag|split|opening (generic term)|gap (generic term)
+(noun)|bust|binge|bout|revel (generic term)|revelry (generic term)
+(noun)|separation (generic term)
+(verb)|rupture|snap|bust|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)|tear up (related term)|tear apart (related term)|tear down (related term)
+(verb)|separate (generic term)|disunite (generic term)|divide (generic term)|part (generic term)
+(verb)|shoot|shoot down|charge|buck|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|shoot up (related term)
+(verb)|pluck|pull|deplume|deplumate|displume|strip (generic term)
+(verb)|cry (generic term)|weep (generic term)
+tear apart|1
+(verb)|pan|trash|disparage (generic term)|belittle (generic term)|pick at (generic term)
+tear away|1
+(verb)|tear off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+tear down|1
+(verb)|level|raze|rase|dismantle|take down|pull down|destroy (generic term)|destruct (generic term)|raise (antonym)
+tear duct|1
+(noun)|lacrimal duct|lachrymal duct|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+tear gas|1
+(noun)|teargas|lacrimator|lachrymator|gas (generic term)|chemical weapon (generic term)
+tear gland|1
+(noun)|lacrimal gland|lachrymal gland|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+tear into|1
+(verb)|lam into|lace into|pitch into|lay into|hit (generic term)
+tear off|1
+(verb)|tear away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+tear sac|1
+(noun)|lacrimal sac|dacryocyst|vesicle (generic term)|cyst (generic term)
+tear sheet|1
+(noun)|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+tear up|1
+(verb)|shred|rip up|tear (generic term)|rupture (generic term)|snap (generic term)|bust (generic term)
+tearaway|2
+(adj)|hotheaded|impulsive|impetuous|madcap|brainish|incautious (similar term)
+(noun)|daredevil (generic term)|madcap (generic term)|hothead (generic term)|swashbuckler (generic term)|lunatic (generic term)|harum-scarum (generic term)
+teardrop|2
+(noun)|drop (generic term)|bead (generic term)|pearl (generic term)
+(noun)|tear|drop (generic term)|drib (generic term)|driblet (generic term)
+tearful|2
+(adj)|liquid (similar term)|swimming (similar term)|misty-eyed (similar term)|teary (similar term)|teary-eyed (similar term)|watery-eyed (similar term)|sniffly (similar term)|snuffling (similar term)|snuffly (similar term)|weepy (similar term)|tearless (antonym)
+(adj)|dolorous|dolourous|lachrymose|weeping|sorrowful (similar term)
+tearfulness|1
+(noun)|weepiness|sadness (generic term)|unhappiness (generic term)
+teargas|2
+(noun)|tear gas|lacrimator|lachrymator|gas (generic term)|chemical weapon (generic term)
+(verb)|gas (generic term)
+tearing|2
+(adj)|fierce|vehement|violent|trigger-happy|intense (similar term)
+(noun)|lacrimation|lachrymation|watering|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+tearing down|1
+(noun)|razing|leveling|demolishing|destruction (generic term)|devastation (generic term)
+tearjerker|1
+(noun)|narrative (generic term)|narration (generic term)|story (generic term)|tale (generic term)
+tearless|1
+(adj)|dry-eyed|dry (similar term)|tearful (antonym)
+tearoom|1
+(noun)|teashop|teahouse|tea parlor|tea parlour|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+tears|1
+(noun)|crying|weeping|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+teary|1
+(adj)|teary-eyed|watery-eyed|tearful (similar term)
+teary-eyed|1
+(adj)|teary|watery-eyed|tearful (similar term)
+teasdale|1
+(noun)|Teasdale|Sara Teasdale|poet (generic term)
+tease|12
+(noun)|teaser|annoyer|vexer|unwelcome person (generic term)|persona non grata (generic term)
+(noun)|coquette|flirt|vamp|vamper|minx|prickteaser|woman (generic term)|adult female (generic term)
+(noun)|teasing|ribbing|tantalization|harassment (generic term)|molestation (generic term)
+(verb)|badger|pester|bug|beleaguer|torment (generic term)|rag (generic term)|bedevil (generic term)|crucify (generic term)|dun (generic term)|frustrate (generic term)
+(verb)|razz|rag|cod|tantalize|tantalise|bait|taunt|twit|rally|ride|mock (generic term)|bemock (generic term)
+(verb)|manipulate (generic term)|keep in line (generic term)|control (generic term)
+(verb)|shred (generic term)|tear up (generic term)|rip up (generic term)
+(verb)|change surface (generic term)
+(verb)|tease apart|loosen|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)
+(verb)|card|separate (generic term)
+(verb)|ridicule (generic term)|roast (generic term)|guy (generic term)|blackguard (generic term)|laugh at (generic term)|jest at (generic term)|rib (generic term)|make fun (generic term)|poke fun (generic term)
+(verb)|fluff|comb (generic term)|comb out (generic term)|disentangle (generic term)
+tease apart|1
+(verb)|tease|loosen|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)
+teased|1
+(adj)|titillated|excited (similar term)
+teasel|1
+(noun)|teazel|teasle|herb (generic term)|herbaceous plant (generic term)
+teaser|7
+(noun)|worker (generic term)
+(noun)|tease|annoyer|vexer|unwelcome person (generic term)|persona non grata (generic term)
+(noun)|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|puzzle|puzzler|mystifier|problem (generic term)
+(noun)|opening (generic term)
+(noun)|tormenter|tormentor|flat (generic term)
+(noun)|device (generic term)
+teashop|1
+(noun)|teahouse|tearoom|tea parlor|tea parlour|restaurant (generic term)|eating house (generic term)|eating place (generic term)
+teasing|6
+(adj)|mocking|quizzical|playful (similar term)
+(adj)|seductive (similar term)
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|vexatious|vexing|disagreeable (similar term)
+(noun)|tease|ribbing|tantalization|harassment (generic term)|molestation (generic term)
+(noun)|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+(noun)|comb-out|comb (generic term)|combing (generic term)
+teasingly|1
+(adv)|tauntingly
+teasle|1
+(noun)|teasel|teazel|herb (generic term)|herbaceous plant (generic term)
+teaspoon|2
+(noun)|spoon (generic term)
+(noun)|teaspoonful|containerful (generic term)
+teaspoonful|1
+(noun)|teaspoon|containerful (generic term)
+teat|1
+(noun)|nipple|mammilla|mamilla|pap|tit|reproductive organ (generic term)|sex organ (generic term)
+teatime|1
+(noun)|tea|afternoon tea|meal (generic term)|repast (generic term)
+teazel|1
+(noun)|teasel|teasle|herb (generic term)|herbaceous plant (generic term)
+tebaldi|1
+(noun)|Tebaldi|Renata Tebaldi|soprano (generic term)
+tebet|1
+(noun)|Tebet|Tevet|Jewish calendar month (generic term)
+tec|1
+(noun)|detective|investigator|police detective|policeman (generic term)|police officer (generic term)|officer (generic term)
+tech|1
+(noun)|technical school|school (generic term)
+techie|1
+(noun)|tekki|technician (generic term)
+technetium|1
+(noun)|Tc|atomic number 43|metallic element (generic term)|metal (generic term)
+technical|7
+(adj)|method (related term)
+(adj)|specialized (similar term)|specialised (similar term)|nontechnical (antonym)
+(adj)|skillfulness (related term)
+(adj)|technological|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+(adj)|commercial (similar term)
+(noun)|pickup (generic term)|pickup truck (generic term)|military vehicle (generic term)
+(noun)|technical foul|foul (generic term)
+technical foul|1
+(noun)|technical|foul (generic term)
+technical knockout|1
+(noun)|TKO|knockout (generic term)|KO (generic term)|kayo (generic term)
+technical school|1
+(noun)|tech|school (generic term)
+technical sergeant|1
+(noun)|sergeant (generic term)
+technicality|1
+(noun)|trifle|triviality|detail (generic term)|item (generic term)|point (generic term)
+technician|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|expert (generic term)
+technicolor|1
+(noun)|method (generic term)
+technique|2
+(noun)|method (generic term)
+(noun)|proficiency|skillfulness (generic term)
+techno|1
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+technobabble|1
+(noun)|jargon (generic term)
+technocracy|1
+(noun)|political system (generic term)|form of government (generic term)
+technocrat|2
+(noun)|expert (generic term)
+(noun)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+technological|2
+(adj)|scientific (similar term)
+(adj)|technical|discipline|subject|subject area|subject field|field|field of study|study|bailiwick|branch of knowledge (related term)
+technological revolution|1
+(noun)|Industrial Revolution|historic period (generic term)|age (generic term)
+technologist|1
+(noun)|engineer|applied scientist|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+technology|2
+(noun)|engineering|application (generic term)|practical application (generic term)|profession (generic term)
+(noun)|engineering|engineering science|applied science|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+technology administration|1
+(noun)|Technology Administration|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+technophile|1
+(noun)|fancier (generic term)|enthusiast (generic term)|technophobe (antonym)
+technophilia|1
+(noun)|enthusiasm (generic term)
+technophilic|1
+(adj)|enthusiasm (related term)
+technophobe|1
+(noun)|naysayer (generic term)|technophile (antonym)
+technophobia|1
+(noun)|dislike (generic term)
+technophobic|1
+(adj)|dislike (related term)
+techy|1
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|scratchy|testy|tetchy|ill-natured (similar term)
+tecophilaeacea|1
+(noun)|Tecophilaeacea|family Tecophilaeacea|liliid monocot family (generic term)
+tectaria|1
+(noun)|Tectaria|genus Tectaria|fern genus (generic term)
+tectaria cicutaria|1
+(noun)|button fern|Tectaria cicutaria|fern (generic term)
+tectaria macrodonta|1
+(noun)|Indian button fern|Tectaria macrodonta|fern (generic term)
+tectona|1
+(noun)|Tectona|genus Tectona|asterid dicot genus (generic term)
+tectona grandis|1
+(noun)|teak|Tectona grandis|tree (generic term)
+tectonic|2
+(adj)|morphology|geomorphology (related term)
+(adj)|architectonic|science|scientific discipline (related term)
+tectonic movement|1
+(noun)|crustal movement|movement (generic term)|motion (generic term)
+tectonics|2
+(noun)|architectonics|science (generic term)|scientific discipline (generic term)
+(noun)|plate tectonics|plate tectonic theory|morphology (generic term)|geomorphology (generic term)
+tecumseh|1
+(noun)|Tecumseh|Tecumtha|Shawnee (generic term)
+tecumtha|1
+(noun)|Tecumseh|Tecumtha|Shawnee (generic term)
+ted|1
+(noun)|Ted|Teddy boy|tough guy (generic term)|plug-ugly (generic term)
+ted hughes|1
+(noun)|Hughes|Ted Hughes|Edward James Hughes|poet (generic term)
+ted shawn|1
+(noun)|Shawn|Ted Shawn|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+ted williams|1
+(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer (generic term)|baseball player (generic term)
+teddy|2
+(noun)|teddy bear|plaything (generic term)|toy (generic term)
+(noun)|chemise|shimmy|shift|slip|undergarment (generic term)|unmentionable (generic term)
+teddy bear|1
+(noun)|teddy|plaything (generic term)|toy (generic term)
+teddy boy|1
+(noun)|Ted|Teddy boy|tough guy (generic term)|plug-ugly (generic term)
+teddy boys|1
+(noun)|youth subculture (generic term)
+tedious|2
+(adj)|boring|deadening|dull|ho-hum|irksome|slow|tiresome|wearisome|uninteresting (similar term)
+(adj)|long-winded|verbose|windy|wordy|prolix (similar term)
+tediously|1
+(adv)|boringly|tiresomely
+tediousness|1
+(noun)|tedium|tiresomeness|dullness (generic term)
+tedium|2
+(noun)|boredom|ennui|dissatisfaction (generic term)
+(noun)|tediousness|tiresomeness|dullness (generic term)
+tee|5
+(noun)|teeing ground|site (generic term)|land site (generic term)
+(noun)|football tee|support (generic term)
+(noun)|golf tee|peg (generic term)|nog (generic term)|golf equipment (generic term)
+(verb)|tee up|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+tee hinge|1
+(noun)|T hinge|hinge (generic term)|flexible joint (generic term)
+tee off|1
+(verb)|play (generic term)
+tee shirt|1
+(noun)|jersey|T-shirt|shirt (generic term)
+tee up|2
+(verb)|stage (generic term)|arrange (generic term)
+(verb)|tee|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+teeing ground|1
+(noun)|tee|site (generic term)|land site (generic term)
+teem|2
+(verb)|pullulate|swarm|hum (generic term)|buzz (generic term)|seethe (generic term)|teem in (related term)
+(verb)|pour|swarm|stream|pullulate|crowd (generic term)|crowd together (generic term)
+teem in|1
+(verb)|abound in|pullulate with|occur (generic term)
+teeming|1
+(adj)|abundant (similar term)
+teemingness|1
+(noun)|abundance|copiousness|quantity (generic term)|scarcity (antonym)
+teen|2
+(adj)|adolescent|teenage|teenaged|young (similar term)|immature (similar term)
+(noun)|adolescent|stripling|teenager|juvenile (generic term)|juvenile person (generic term)
+teenage|1
+(adj)|adolescent|teen|teenaged|young (similar term)|immature (similar term)
+teenaged|1
+(adj)|adolescent|teen|teenage|young (similar term)|immature (similar term)
+teenager|1
+(noun)|adolescent|stripling|teen|juvenile (generic term)|juvenile person (generic term)
+teens|2
+(noun)|time of life (generic term)
+(noun)|large integer (generic term)
+teensy|1
+(adj)|bitty|bittie|teentsy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+teensy-weensy|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+teentsy|1
+(adj)|bitty|bittie|teensy|teeny|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+teeny|1
+(adj)|bitty|bittie|teensy|teentsy|wee|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+teeny-weeny|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|weensy|teensy-weensy|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+teeoff|1
+(noun)|golf stroke (generic term)|golf shot (generic term)|swing (generic term)
+teepee|1
+(noun)|tepee|tipi|tent (generic term)|collapsible shelter (generic term)|lodge (generic term)|indian lodge (generic term)
+teeter|2
+(noun)|seesaw|teeter-totter|teetertotter|teeterboard|tilting board|dandle board|plaything (generic term)|toy (generic term)
+(verb)|seesaw|totter|move (generic term)
+teeter-totter|2
+(noun)|seesaw|teeter|teetertotter|teeterboard|tilting board|dandle board|plaything (generic term)|toy (generic term)
+(verb)|teetertotter|seesaw|play (generic term)
+teeterboard|1
+(noun)|seesaw|teeter|teeter-totter|teetertotter|tilting board|dandle board|plaything (generic term)|toy (generic term)
+teetertotter|2
+(noun)|seesaw|teeter|teeter-totter|teeterboard|tilting board|dandle board|plaything (generic term)|toy (generic term)
+(verb)|teeter-totter|seesaw|play (generic term)
+teeth|1
+(noun)|dentition|set (generic term)
+teethe|1
+(verb)|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+teething|1
+(noun)|dentition|odontiasis|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+teething ring|1
+(noun)|comforter|pacifier|baby's dummy|device (generic term)
+teetotal|2
+(adj)|dry|sober (similar term)
+(verb)|abstain (generic term)|refrain (generic term)|desist (generic term)
+teetotaler|1
+(noun)|teetotaller|teetotalist|abstainer (generic term)|abstinent (generic term)|nondrinker (generic term)
+teetotaling|1
+(noun)|teetotalism|abstinence (generic term)
+teetotalism|1
+(noun)|teetotaling|abstinence (generic term)
+teetotalist|1
+(noun)|teetotaler|teetotaller|abstainer (generic term)|abstinent (generic term)|nondrinker (generic term)
+teetotaller|1
+(noun)|teetotaler|teetotalist|abstainer (generic term)|abstinent (generic term)|nondrinker (generic term)
+teetotum|1
+(noun)|top|whirligig|spinning top|plaything (generic term)|toy (generic term)
+teff|1
+(noun)|teff grass|Eragrostis tef|Eragrostic abyssinica|love grass (generic term)|bay grass (generic term)
+teff grass|1
+(noun)|teff|Eragrostis tef|Eragrostic abyssinica|love grass (generic term)|bay grass (generic term)
+tefillin|1
+(noun)|phylactery|reminder (generic term)
+teflon|1
+(noun)|Teflon|polytetrafluoroethylene|plastic (generic term)
+teg|1
+(noun)|lamb (generic term)
+tegu|1
+(noun)|Taegu|Tegu|city (generic term)|metropolis (generic term)|urban center (generic term)
+tegucigalpa|1
+(noun)|Tegucigalpa|Honduran capital|national capital (generic term)
+tegular|1
+(adj)|roofing material (related term)
+tegument|1
+(noun)|skin|cutis|connective tissue (generic term)|body covering (generic term)
+teheran|1
+(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital (generic term)
+tehran|1
+(noun)|Teheran|Tehran|capital of Iran|Iranian capital|national capital (generic term)
+teiid|1
+(noun)|teiid lizard|lizard (generic term)
+teiid lizard|1
+(noun)|teiid|lizard (generic term)
+teiidae|1
+(noun)|Teiidae|family Teiidae|reptile family (generic term)
+teilhard de chardin|1
+(noun)|Teilhard de Chardin|Pierre Teilhard de Chardin|paleontologist (generic term)|palaeontologist (generic term)|fossilist (generic term)|philosopher (generic term)
+teju|1
+(noun)|teiid lizard (generic term)|teiid (generic term)
+tekki|1
+(noun)|techie|technician (generic term)
+tektite|1
+(noun)|natural glass (generic term)
+tel aviv|1
+(noun)|Tel Aviv|Tel Aviv-Yalo|Tel Aviv-Jaffa|city (generic term)|metropolis (generic term)|urban center (generic term)
+tel aviv-jaffa|1
+(noun)|Tel Aviv|Tel Aviv-Yalo|Tel Aviv-Jaffa|city (generic term)|metropolis (generic term)|urban center (generic term)
+tel aviv-yalo|1
+(noun)|Tel Aviv|Tel Aviv-Yalo|Tel Aviv-Jaffa|city (generic term)|metropolis (generic term)|urban center (generic term)
+telamon|1
+(noun)|atlas|column (generic term)|pillar (generic term)
+telanthera|1
+(noun)|Telanthera|genus Telanthera|caryophylloid dicot genus (generic term)
+telco|1
+(noun)|telephone company|telephone service|phone company|phone service|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+telco building|1
+(noun)|telecom hotel|building (generic term)|edifice (generic term)
+telecast|2
+(noun)|broadcast (generic term)
+(verb)|televise|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+telecaster|1
+(noun)|broadcaster (generic term)
+telecasting|1
+(noun)|television|TV|video|broadcasting (generic term)
+telecom|1
+(noun)|telecommunication|medium (generic term)
+telecom equipment|1
+(noun)|telecommunication system|telecom system|telecommunication equipment|communication system (generic term)
+telecom hotel|1
+(noun)|telco building|building (generic term)|edifice (generic term)
+telecom system|1
+(noun)|telecommunication system|telecommunication equipment|telecom equipment|communication system (generic term)
+telecommerce|1
+(noun)|telemarketing|teleselling|selling (generic term)|merchandising (generic term)|marketing (generic term)
+telecommunicate|1
+(verb)|communicate (generic term)|intercommunicate (generic term)
+telecommunication|2
+(noun)|telecom|medium (generic term)
+(noun)|electrical engineering (generic term)|EE (generic term)
+telecommunication equipment|1
+(noun)|telecommunication system|telecom system|telecom equipment|communication system (generic term)
+telecommunication system|1
+(noun)|telecom system|telecommunication equipment|telecom equipment|communication system (generic term)
+telecommuting|1
+(noun)|teleworking|employment (generic term)|work (generic term)
+teleconference|1
+(noun)|teleconferencing|conference (generic term)|group discussion (generic term)
+teleconferencing|1
+(noun)|teleconference|conference (generic term)|group discussion (generic term)
+telefax|1
+(verb)|fax|facsimile|telecommunicate (generic term)
+telefilm|1
+(noun)|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+telegnosis|1
+(noun)|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+telegnostic|1
+(adj)|extrasensory (similar term)|paranormal (similar term)
+telegram|1
+(noun)|wire|message (generic term)
+telegraph|2
+(noun)|telegraphy|apparatus (generic term)|setup (generic term)
+(verb)|cable|wire|telecommunicate (generic term)
+telegraph form|1
+(noun)|form (generic term)
+telegraph key|1
+(noun)|key (generic term)
+telegraph line|1
+(noun)|telephone wire|telephone line|telegraph wire|wire (generic term)|conducting wire (generic term)
+telegraph operator|1
+(noun)|telegrapher|telegraphist|operator (generic term)|manipulator (generic term)
+telegraph plant|1
+(noun)|semaphore plant|Codariocalyx motorius|Desmodium motorium|Desmodium gyrans|shrub (generic term)|bush (generic term)
+telegraph pole|1
+(noun)|telephone pole|telegraph post|post (generic term)
+telegraph post|1
+(noun)|telephone pole|telegraph pole|post (generic term)
+telegraph wire|1
+(noun)|telephone wire|telephone line|telegraph line|wire (generic term)|conducting wire (generic term)
+telegrapher|1
+(noun)|telegraphist|telegraph operator|operator (generic term)|manipulator (generic term)
+telegraphese|1
+(noun)|non-standard speech (generic term)
+telegraphic|2
+(adj)|apparatus|setup (related term)
+(adj)|concise (similar term)
+telegraphic signal|1
+(noun)|radiotelegraphic signal|signal (generic term)|signaling (generic term)|sign (generic term)
+telegraphically|1
+(adv)|tersely
+telegraphist|1
+(noun)|telegrapher|telegraph operator|operator (generic term)|manipulator (generic term)
+telegraphy|2
+(noun)|telecommunication (generic term)|telecom (generic term)
+(noun)|telegraph|apparatus (generic term)|setup (generic term)
+telekinesis|1
+(noun)|psychokinesis|psychic phenomena (generic term)|psychic phenomenon (generic term)|parapsychology (generic term)
+telemann|1
+(noun)|Telemann|Georg Philipp Telemann|composer (generic term)
+telemark|1
+(noun)|turn (generic term)|turning (generic term)
+telemarketing|1
+(noun)|teleselling|telecommerce|selling (generic term)|merchandising (generic term)|marketing (generic term)
+telemeter|1
+(noun)|scientific instrument (generic term)
+telemetered|1
+(adj)|measurement|measuring|measure|mensuration (related term)
+telemetry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+telemetry intelligence|1
+(noun)|TELINT|signals intelligence (generic term)|SIGINT (generic term)
+telencephalon|1
+(noun)|neural structure (generic term)
+teleological|1
+(adj)|philosophical doctrine|philosophical theory (related term)
+teleologist|1
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+teleology|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+teleost|1
+(noun)|teleost fish|teleostan|bony fish (generic term)
+teleost fish|1
+(noun)|teleost|teleostan|bony fish (generic term)
+teleostan|1
+(noun)|teleost fish|teleost|bony fish (generic term)
+teleostei|1
+(noun)|Teleostei|subclass Teleostei|class (generic term)
+telepathic|1
+(adj)|extrasensory (similar term)|paranormal (similar term)
+telepathise|1
+(verb)|telepathize|communicate (generic term)|intercommunicate (generic term)
+telepathist|2
+(noun)|thought-reader|mental telepathist|mind reader|communicator (generic term)
+(noun)|mind reader|thought-reader|magician (generic term)|prestidigitator (generic term)|conjurer (generic term)|conjuror (generic term)|illusionist (generic term)
+telepathize|1
+(verb)|telepathise|communicate (generic term)|intercommunicate (generic term)
+telepathy|1
+(noun)|thought transference|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+telephone|3
+(noun)|phone|telephone set|electronic equipment (generic term)
+(noun)|telephony|telecommunication (generic term)|telecom (generic term)
+(verb)|call|call up|phone|ring|telecommunicate (generic term)
+telephone bell|1
+(noun)|electric bell (generic term)
+telephone bill|1
+(noun)|phone bill|bill (generic term)|account (generic term)|invoice (generic term)
+telephone book|1
+(noun)|phonebook|phone book|telephone directory|directory (generic term)
+telephone booth|1
+(noun)|phone booth|call box|telephone box|telephone kiosk|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+telephone box|1
+(noun)|telephone booth|phone booth|call box|telephone kiosk|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+telephone call|1
+(noun)|call|phone call|telephone (generic term)|telephony (generic term)
+telephone circuit|1
+(noun)|telephone line|phone line|subscriber line|line|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+telephone company|1
+(noun)|telephone service|phone company|phone service|telco|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+telephone conversation|1
+(noun)|conversation (generic term)
+telephone cord|1
+(noun)|phone cord|telephone wire (generic term)|telephone line (generic term)|telegraph wire (generic term)|telegraph line (generic term)
+telephone dial|1
+(noun)|dial|selector (generic term)|selector switch (generic term)
+telephone directory|1
+(noun)|phonebook|phone book|telephone book|directory (generic term)
+telephone exchange|1
+(noun)|central|exchange|workplace (generic term)|work (generic term)
+telephone extension|1
+(noun)|extension|extension phone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+telephone interview|1
+(noun)|interview (generic term)
+telephone jack|1
+(noun)|phone jack|jack (generic term)
+telephone kiosk|1
+(noun)|telephone booth|phone booth|call box|telephone box|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+telephone line|2
+(noun)|telephone wire|telegraph wire|telegraph line|wire (generic term)|conducting wire (generic term)
+(noun)|phone line|telephone circuit|subscriber line|line|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+telephone message|1
+(noun)|phone message|message (generic term)
+telephone number|1
+(noun)|phone number|number|signal (generic term)|signaling (generic term)|sign (generic term)
+telephone operator|1
+(noun)|telephonist|switchboard operator|operator (generic term)|manipulator (generic term)
+telephone order|1
+(noun)|telemarketing (generic term)|teleselling (generic term)|telecommerce (generic term)
+telephone plug|1
+(noun)|phone plug|plug (generic term)|male plug (generic term)
+telephone pole|1
+(noun)|telegraph pole|telegraph post|post (generic term)
+telephone receiver|1
+(noun)|receiver|earphone (generic term)|earpiece (generic term)|headphone (generic term)|phone (generic term)
+telephone service|1
+(noun)|telephone company|phone company|phone service|telco|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+telephone set|1
+(noun)|telephone|phone|electronic equipment (generic term)
+telephone system|1
+(noun)|phone system|communication system (generic term)
+telephone unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+telephone wire|1
+(noun)|telephone line|telegraph wire|telegraph line|wire (generic term)|conducting wire (generic term)
+telephoner|1
+(noun)|caller|caller-up|phoner|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+telephonic|1
+(adj)|telecommunication|telecom (related term)
+telephonist|1
+(noun)|telephone operator|switchboard operator|operator (generic term)|manipulator (generic term)
+telephony|1
+(noun)|telephone|telecommunication (generic term)|telecom (generic term)
+telephoto|1
+(noun)|telephotograph|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+telephoto lens|1
+(noun)|zoom lens|camera lens (generic term)|optical lens (generic term)
+telephotograph|2
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|telephoto|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+telephotography|2
+(noun)|transmission (generic term)|transmittal (generic term)|transmitting (generic term)
+(noun)|photography (generic term)|picture taking (generic term)
+teleport|1
+(verb)|transport (generic term)
+teleportation|1
+(noun)|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+teleprinter|1
+(noun)|teletypewriter|teletype machine|telex|telex machine|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+teleprocessing|1
+(noun)|distributed data processing|remote-access data processing|data processing (generic term)
+teleprompter|1
+(noun)|Teleprompter|prompter (generic term)|autocue (generic term)
+telerobotics|1
+(noun)|robotics (generic term)
+telescope|3
+(noun)|scope|magnifier (generic term)
+(verb)|squash (generic term)|crush (generic term)|squelch (generic term)|mash (generic term)|squeeze (generic term)
+(verb)|digest (generic term)|condense (generic term)|concentrate (generic term)
+telescope sight|1
+(noun)|telescopic sight|gunsight (generic term)|gun-sight (generic term)
+telescoped|1
+(adj)|shortened|short (similar term)
+telescopic|3
+(adj)|visible (similar term)|seeable (similar term)
+(adj)|farsighted (similar term)|presbyopic (similar term)
+(adj)|collapsible (similar term)|collapsable (similar term)
+telescopic sight|1
+(noun)|telescope sight|gunsight (generic term)|gun-sight (generic term)
+telescopium|1
+(noun)|Telescopium|constellation (generic term)
+telescopy|1
+(noun)|art (generic term)|artistry (generic term)|prowess (generic term)
+teleselling|1
+(noun)|telemarketing|telecommerce|selling (generic term)|merchandising (generic term)|marketing (generic term)
+telethermometer|1
+(noun)|thermometer (generic term)
+teletype machine|1
+(noun)|teletypewriter|teleprinter|telex|telex machine|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+teletypewriter|1
+(noun)|teleprinter|teletype machine|telex|telex machine|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+televangelism|1
+(noun)|evangelism (generic term)
+televangelist|1
+(noun)|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+televise|1
+(verb)|telecast|air (generic term)|send (generic term)|broadcast (generic term)|beam (generic term)|transmit (generic term)
+television|3
+(noun)|telecasting|TV|video|broadcasting (generic term)
+(noun)|television receiver|television set|tv|tv set|idiot box|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+(noun)|television system|telecommunication system (generic term)|telecom system (generic term)|telecommunication equipment (generic term)|telecom equipment (generic term)
+television-camera tube|1
+(noun)|television pickup tube|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+television announcer|1
+(noun)|tv announcer|announcer (generic term)
+television antenna|1
+(noun)|tv-antenna|omnidirectional antenna (generic term)|nondirectional antenna (generic term)
+television camera|1
+(noun)|tv camera|camera|television equipment (generic term)|video equipment (generic term)
+television channel|1
+(noun)|channel|TV channel|television station (generic term)|TV station (generic term)
+television equipment|1
+(noun)|video equipment|electronic equipment (generic term)
+television monitor|1
+(noun)|tv monitor|monitor (generic term)
+television news|1
+(noun)|newscast (generic term)
+television newscaster|1
+(noun)|television reporter|TV reporter|TV newsman|reporter (generic term)|newsman (generic term)|newsperson (generic term)
+television pickup tube|1
+(noun)|television-camera tube|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+television program|1
+(noun)|TV program|television show|TV show|broadcast (generic term)|program (generic term)|programme (generic term)
+television receiver|1
+(noun)|television|television set|tv|tv set|idiot box|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+television reporter|1
+(noun)|television newscaster|TV reporter|TV newsman|reporter (generic term)|newsman (generic term)|newsperson (generic term)
+television room|1
+(noun)|tv room|room (generic term)
+television set|1
+(noun)|television receiver|television|tv|tv set|idiot box|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+television show|1
+(noun)|television program|TV program|TV show|broadcast (generic term)|program (generic term)|programme (generic term)
+television star|1
+(noun)|TV star|star (generic term)|principal (generic term)|lead (generic term)
+television station|1
+(noun)|TV station|station (generic term)
+television system|1
+(noun)|television|telecommunication system (generic term)|telecom system (generic term)|telecommunication equipment (generic term)|telecom equipment (generic term)
+television transmitter|1
+(noun)|transmitter (generic term)|sender (generic term)
+television tube|1
+(noun)|kinescope|picture tube|cathode-ray tube (generic term)|CRT (generic term)
+teleworking|1
+(noun)|telecommuting|employment (generic term)|work (generic term)
+telex|2
+(noun)|teletypewriter|teleprinter|teletype machine|telex machine|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+(verb)|telecommunicate (generic term)
+telex machine|1
+(noun)|teletypewriter|teleprinter|teletype machine|telex|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+telfer|1
+(noun)|telpher|conveyance (generic term)|transport (generic term)
+telferage|1
+(noun)|telpherage|transportation system (generic term)|transportation (generic term)|transit (generic term)
+telingo potato|1
+(noun)|pungapung|elephant yam|Amorphophallus paeonifolius|Amorphophallus campanulatus|arum (generic term)|aroid (generic term)
+telint|1
+(noun)|telemetry intelligence|TELINT|signals intelligence (generic term)|SIGINT (generic term)
+teliospore|1
+(noun)|chlamydospore (generic term)
+tell|9
+(noun)|Tell|William Tell|archer (generic term)|bowman (generic term)
+(verb)|state|say|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|inform (generic term)|tell off (related term)
+(verb)|narrate|recount|recite|inform (generic term)
+(verb)|order|enjoin|say|request (generic term)
+(verb)|guess (generic term)|infer (generic term)
+(verb)|assure|affirm (generic term)|verify (generic term)|assert (generic term)|avow (generic term)|aver (generic term)|swan (generic term)|swear (generic term)
+(verb)|evidence|inform (generic term)|tell apart (related term)
+(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell apart|identify (generic term)|place (generic term)
+tell apart|2
+(verb)|recognize|recognise|distinguish|discern|pick out|make out
+(verb)|distinguish|separate|differentiate|secern|secernate|severalize|severalise|tell|identify (generic term)|place (generic term)
+tell off|1
+(verb)|brush down|call on the carpet (generic term)|take to task (generic term)|rebuke (generic term)|rag (generic term)|trounce (generic term)|reproof (generic term)|lecture (generic term)|reprimand (generic term)|jaw (generic term)|dress down (generic term)|call down (generic term)|scold (generic term)|chide (generic term)|berate (generic term)|bawl out (generic term)|remonstrate (generic term)|chew out (generic term)|chew up (generic term)|have words (generic term)|lambaste (generic term)|lambast (generic term)
+tell on|2
+(verb)|denounce|betray|give away|rat|grass|shit|shop|snitch|stag|inform (generic term)
+(verb)|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+teller|4
+(noun)|Teller|Edward Teller|nuclear physicist (generic term)
+(noun)|vote counter|official (generic term)|functionary (generic term)
+(noun)|cashier|bank clerk|banker (generic term)
+(noun)|narrator|storyteller|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+tellima|1
+(noun)|Tellima|genus Tellima|rosid dicot genus (generic term)
+tellima affinis|1
+(noun)|woodland star|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower (generic term)
+tellima grandiflora|1
+(noun)|false alumroot|fringe cups|Tellima grandiflora|wildflower (generic term)|wild flower (generic term)
+telling|6
+(adj)|revealing|telltale|informative (similar term)|informatory (similar term)
+(adj)|cogent|weighty|persuasive (similar term)
+(adj)|impressive|effective (similar term)|effectual (similar term)|efficacious (similar term)
+(noun)|relation|recounting|narration (generic term)|recital (generic term)|yarn (generic term)
+(noun)|apprisal|notification|informing (generic term)|making known (generic term)
+(noun)|tattle|singing|disclosure (generic term)|revelation (generic term)|revealing (generic term)
+telltale|2
+(adj)|revealing|telling|informative (similar term)|informatory (similar term)
+(noun)|tattletale|tattler|taleteller|talebearer|blabbermouth|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+tellurian|2
+(adj)|telluric|terrestrial|terrene|object|physical object (related term)
+(noun)|earthling|earthman|worldling|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+telluric|2
+(adj)|chemical element|element (related term)
+(adj)|tellurian|terrestrial|terrene|object|physical object (related term)
+telluride|1
+(noun)|compound (generic term)|chemical compound (generic term)
+tellurium|1
+(noun)|Te|atomic number 52|chemical element (generic term)|element (generic term)
+tellus|1
+(noun)|Tellus|Roman deity (generic term)
+telly|1
+(noun)|television receiver|television|television set|tv|tv set|idiot box|boob tube|goggle box|receiver (generic term)|receiving system (generic term)
+telocentric|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+telocentric chromosome|1
+(noun)|chromosome (generic term)
+telomerase|1
+(noun)|enzyme (generic term)
+telomere|1
+(noun)|end (generic term)
+telopea|1
+(noun)|Telopea|genus Telopea|dicot genus (generic term)|magnoliopsid genus (generic term)
+telopea oreades|1
+(noun)|waratah|Telopea Oreades|shrub (generic term)|bush (generic term)
+telopea speciosissima|1
+(noun)|waratah|Telopea speciosissima|shrub (generic term)|bush (generic term)
+telophase|1
+(noun)|phase of cell division (generic term)
+telosporidia|1
+(noun)|Telosporidia|subclass Telosporidia|class (generic term)
+telpher|1
+(noun)|telfer|conveyance (generic term)|transport (generic term)
+telpherage|1
+(noun)|telferage|transportation system (generic term)|transportation (generic term)|transit (generic term)
+telsontail|1
+(noun)|proturan|insect (generic term)
+telugu|2
+(noun)|Telugu|Dravidian (generic term)
+(noun)|Telugu|South-Central Dravidian (generic term)
+temazepam|1
+(noun)|Restoril|benzodiazepine (generic term)
+temblor|1
+(noun)|earthquake|quake|seism|geological phenomenon (generic term)
+temerarious|1
+(adj)|daredevil|bold (similar term)
+temerity|1
+(noun)|audacity|audaciousness|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+temnospondyli|1
+(noun)|Temnospondyli|order Temnospondyli|animal order (generic term)
+temp|1
+(noun)|temporary|temporary worker|worker (generic term)
+temper|9
+(noun)|pique|irritation|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|mood|humor|humour|feeling (generic term)
+(noun)|biliousness|irritability|peevishness|pettishness|snappishness|surliness|ill nature (generic term)
+(noun)|toughness|elasticity (generic term)|snap (generic term)
+(verb)|anneal|normalize|toughen (generic term)
+(verb)|harden|modify (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|season|mollify|weaken (generic term)
+(verb)|chasten|moderate|change (generic term)|alter (generic term)|modify (generic term)
+tempera|1
+(noun)|poster paint|poster color|poster colour|water-base paint (generic term)
+temperament|3
+(noun)|disposition|nature (generic term)
+(noun)|emotionality (generic term)|emotionalism (generic term)
+(noun)|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+temperamental|3
+(adj)|nature (related term)
+(adj)|moody|emotional (similar term)
+(adj)|erratic|unreliable (similar term)|undependable (similar term)
+temperance|3
+(noun)|moderation|restraint (generic term)|control (generic term)|natural virtue (generic term)|intemperance (antonym)
+(noun)|sobriety|abstinence (generic term)
+(noun)|combination (generic term)|combining (generic term)|compounding (generic term)
+temperate|3
+(adj)|cold-temperate (similar term)|equable (similar term)|clement (related term)|intemperate (antonym)
+(adj)|abstemious (similar term)|light (similar term)|moderate (similar term)|restrained (similar term)|mild (related term)|moderate (related term)|intemperate (antonym)
+(adj)|moderate|mild (similar term)
+temperate rain forest|1
+(noun)|rain forest (generic term)|rainforest (generic term)
+temperate zone|1
+(noun)|Temperate Zone|climatic zone (generic term)
+temperately|1
+(adv)|abstemiously
+temperateness|2
+(noun)|fair weather|sunshine|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|self-restraint|restraint (generic term)|control (generic term)
+temperature|2
+(noun)|fundamental quantity (generic term)|fundamental measure (generic term)|physical property (generic term)
+(noun)|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+temperature change|1
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+temperature gradient|1
+(noun)|gradient (generic term)
+temperature reduction|1
+(noun)|cooling|chilling|temperature change (generic term)
+temperature scale|1
+(noun)|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)|system of measurement (generic term)|metric (generic term)
+temperature unit|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+tempered|2
+(adj)|treated|hardened|toughened|annealed (similar term)|baked (similar term)|burned (similar term)|burnt (similar term)|curable (similar term)|sunbaked (similar term)|untempered (antonym)
+(adj)|diluted (similar term)|toned down (similar term)|moderated (similar term)|qualified (similar term)|tuned (similar term)|untempered (antonym)
+tempering|2
+(adj)|moderating (similar term)
+(noun)|annealing|hardening (generic term)
+tempest|2
+(noun)|storm|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|windstorm (generic term)
+tempest-swept|1
+(adj)|buffeted|storm-tossed|tempest-tossed|tempest-tost|troubled (similar term)
+tempest-tossed|1
+(adj)|buffeted|storm-tossed|tempest-tost|tempest-swept|troubled (similar term)
+tempest-tost|1
+(adj)|buffeted|storm-tossed|tempest-tossed|tempest-swept|troubled (similar term)
+tempestuous|2
+(adj)|stormy|unpeaceful (similar term)
+(adj)|angry|furious|raging|wild|stormy (similar term)
+tempestuousness|2
+(noun)|storminess (generic term)
+(noun)|agitation|ferment|fermentation|unrest|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+templar|1
+(noun)|Knight Templar|Templar|knight (generic term)
+template|1
+(noun)|templet|guide|model (generic term)|example (generic term)
+template rna|1
+(noun)|messenger RNA|mRNA|template RNA|informational RNA|ribonucleic acid (generic term)|RNA (generic term)
+temple|4
+(noun)|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+(noun)|feature (generic term)|lineament (generic term)
+(noun)|building (generic term)|edifice (generic term)
+(noun)|synagogue|tabernacle|place of worship (generic term)|house of prayer (generic term)|house of God (generic term)|house of worship (generic term)
+temple of apollo|1
+(noun)|Temple of Apollo|Oracle of Apollo|Delphic oracle|oracle of Delphi|oracle (generic term)
+temple of artemis|1
+(noun)|Temple of Artemis|temple (generic term)
+temple of jerusalem|1
+(noun)|Temple of Jerusalem|Temple of Solomon|synagogue (generic term)|temple (generic term)|tabernacle (generic term)
+temple of solomon|1
+(noun)|Temple of Jerusalem|Temple of Solomon|synagogue (generic term)|temple (generic term)|tabernacle (generic term)
+temple orange|2
+(noun)|temple orange tree|tangor|king orange|Citrus nobilis|orange (generic term)|orange tree (generic term)
+(noun)|orange (generic term)
+temple orange tree|1
+(noun)|temple orange|tangor|king orange|Citrus nobilis|orange (generic term)|orange tree (generic term)
+temple tree|1
+(noun)|pagoda tree|Plumeria acutifolia|frangipani (generic term)|frangipanni (generic term)
+templet|1
+(noun)|template|guide|model (generic term)|example (generic term)
+templetonia|1
+(noun)|Templetonia|genus Templetonia|rosid dicot genus (generic term)
+templetonia retusa|1
+(noun)|coral bush|flame bush|Templetonia retusa|shrub (generic term)|bush (generic term)
+tempo|2
+(noun)|pacing|musical time (generic term)
+(noun)|pace|rate (generic term)
+temporal|7
+(adj)|impermanent (similar term)|temporary (similar term)
+(adj)|attribute (related term)
+(adj)|feature|lineament (related term)
+(adj)|worldly (similar term)
+(adj)|worldly|profane (similar term)
+(adj)|earthly (similar term)
+(noun)|temporal role|semantic role (generic term)|participant role (generic term)
+temporal arrangement|1
+(noun)|temporal order|temporal property (generic term)
+temporal arteritis|1
+(noun)|arteritis (generic term)
+temporal artery|1
+(noun)|cerebral artery (generic term)|arteria cerebri (generic term)
+temporal bone|1
+(noun)|os temporale|bone (generic term)|os (generic term)
+temporal canthus|1
+(noun)|canthus (generic term)
+temporal gyrus|1
+(noun)|gyrus (generic term)|convolution (generic term)
+temporal lobe|1
+(noun)|lobe (generic term)
+temporal lobe epilepsy|1
+(noun)|psychomotor epilepsy|epilepsy (generic term)
+temporal muscle|1
+(noun)|temporalis muscle|temporalis|musculus temporalis|skeletal muscle (generic term)|striated muscle (generic term)
+temporal order|1
+(noun)|temporal arrangement|temporal property (generic term)
+temporal property|1
+(noun)|property (generic term)
+temporal relation|1
+(noun)|relation (generic term)
+temporal role|1
+(noun)|temporal|semantic role (generic term)|participant role (generic term)
+temporal vein|1
+(noun)|vena temporalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+temporalis|1
+(noun)|temporalis muscle|temporal muscle|musculus temporalis|skeletal muscle (generic term)|striated muscle (generic term)
+temporalis muscle|1
+(noun)|temporal muscle|temporalis|musculus temporalis|skeletal muscle (generic term)|striated muscle (generic term)
+temporality|1
+(noun)|temporalty|spiritualty (generic term)|spirituality (generic term)|church property (generic term)
+temporalty|2
+(noun)|temporality|spiritualty (generic term)|spirituality (generic term)|church property (generic term)
+(noun)|laity|multitude (generic term)|masses (generic term)|mass (generic term)|hoi polloi (generic term)|people (generic term)|the great unwashed (generic term)|clergy (antonym)
+temporarily|1
+(adv)|permanently (antonym)
+temporariness|1
+(noun)|impermanence (generic term)|impermanency (generic term)
+temporary|3
+(adj)|impermanent|acting (similar term)|ephemeral (similar term)|passing (similar term)|short-lived (similar term)|transient (similar term)|transitory (similar term)|fugacious (similar term)|episodic (similar term)|evanescent (similar term)|fly-by-night (similar term)|improvised (similar term)|jury-rigged (similar term)|makeshift (similar term)|interim (similar term)|pro tem (similar term)|pro tempore (similar term)|temporal (similar term)|terminable (similar term)|working (similar term)|unstable (related term)|permanent (antonym)
+(adj)|irregular|part-time (similar term)|parttime (similar term)
+(noun)|temp|temporary worker|worker (generic term)
+temporary expedient|1
+(noun)|improvisation|expedient (generic term)
+temporary hookup|1
+(noun)|patch|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)|lash-up (generic term)|contrivance (generic term)
+temporary injunction|1
+(noun)|interlocutory injunction|injunction (generic term)|enjoining (generic term)|enjoinment (generic term)|cease and desist order (generic term)
+temporary removal|1
+(noun)|suspension|debarment (generic term)
+temporary state|1
+(noun)|state (generic term)
+temporary worker|1
+(noun)|temp|temporary|worker (generic term)
+temporise|1
+(verb)|temporize|prolong (generic term)|protract (generic term)|extend (generic term)|draw out (generic term)
+temporiser|1
+(noun)|temporizer|delayer (generic term)
+temporize|1
+(verb)|temporise|prolong (generic term)|protract (generic term)|extend (generic term)|draw out (generic term)
+temporizer|1
+(noun)|temporiser|delayer (generic term)
+temporomandibular joint|1
+(noun)|mandibular joint|articulatio temporomandibularis|synovial joint (generic term)|articulatio synovialis (generic term)|diarthrosis (generic term)
+tempra|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+tempt|6
+(verb)|allure|invite (generic term)|bid (generic term)
+(verb)|entice|lure|provoke (generic term)|stimulate (generic term)
+(verb)|invite|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|charm|influence|persuade (generic term)
+(verb)|arouse (generic term)|sex (generic term)|excite (generic term)|turn on (generic term)|wind up (generic term)
+(verb)|persuade (generic term)
+temptable|1
+(adj)|susceptible (similar term)
+temptation|2
+(noun)|desire (generic term)
+(noun)|enticement|influence (generic term)
+tempter|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+tempting|2
+(adj)|alluring|beguiling|enticing|seductive (similar term)
+(adj)|tantalizing|tantalising|inviting (similar term)
+temptingly|1
+(adv)|seductively
+temptingness|1
+(noun)|allure|allurement|attraction (generic term)|attractiveness (generic term)
+temptress|1
+(noun)|enchantress|siren|Delilah|femme fatale|woman (generic term)|adult female (generic term)
+tempura|1
+(noun)|dish (generic term)
+temuco|1
+(noun)|Temuco|city (generic term)|metropolis (generic term)|urban center (generic term)
+temujin|1
+(noun)|Genghis Khan|Jinghis Khan|Jenghiz Khan|Temujin|emperor (generic term)
+ten|2
+(adj)|10|x|cardinal (similar term)
+(noun)|10|X|tenner|decade|large integer (generic term)
+ten-day fern|1
+(noun)|leather fern|leatherleaf fern|Rumohra adiantiformis|Polystichum adiantiformis|fern (generic term)
+ten-fold|1
+(adj)|tenfold|denary|multiple (similar term)
+ten-gallon hat|1
+(noun)|cowboy hat|hat (generic term)|chapeau (generic term)|lid (generic term)
+ten-membered|1
+(adj)|10-membered|membered (similar term)
+ten-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+ten-spined stickleback|1
+(noun)|Gasterosteus pungitius|stickleback (generic term)|prickleback (generic term)
+ten-spot|1
+(noun)|spot (generic term)
+ten-strike|1
+(noun)|strike|score (generic term)
+ten-thousandth|1
+(noun)|one-ten-thousandth|common fraction (generic term)|simple fraction (generic term)
+ten commandments|1
+(noun)|Decalogue|Ten Commandments|commandment (generic term)
+ten dollar bill|1
+(noun)|tenner|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+ten percent|1
+(noun)|one-tenth|tenth|tenth part|common fraction (generic term)|simple fraction (generic term)
+ten thousand|2
+(adj)|cardinal (similar term)
+(noun)|10000|myriad|large integer (generic term)
+tenability|1
+(noun)|reasonableness|tenableness|plausibility (generic term)|plausibleness (generic term)
+tenable|1
+(adj)|well-founded|reasonable (similar term)|sensible (similar term)
+tenableness|1
+(noun)|reasonableness|tenability|plausibility (generic term)|plausibleness (generic term)
+tenacious|3
+(adj)|retentive|recollective|long|mindful (related term)|aware (related term)|unretentive (antonym)
+(adj)|dogged|dour|pertinacious|unyielding|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|coherent|adhesive (similar term)
+tenaciously|1
+(adv)|doggedly
+tenaciousness|1
+(noun)|doggedness|perseverance|persistence|persistency|tenacity|pertinacity|determination (generic term)|purpose (generic term)
+tenacity|1
+(noun)|doggedness|perseverance|persistence|persistency|tenaciousness|pertinacity|determination (generic term)|purpose (generic term)
+tenancy|1
+(noun)|occupancy|residency (generic term)|residence (generic term)|abidance (generic term)
+tenant|4
+(noun)|renter|payer (generic term)|remunerator (generic term)
+(noun)|holder (generic term)|bearer (generic term)
+(noun)|resident (generic term)|occupant (generic term)|occupier (generic term)
+(verb)|inhabit (generic term)|occupy (generic term)
+tenant farmer|1
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)|tenant (generic term)
+tenanted|1
+(adj)|occupied|inhabited (similar term)
+tenantry|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+tench|1
+(noun)|Tinca tinca|cyprinid (generic term)|cyprinid fish (generic term)
+tend|3
+(verb)|be given|lean|incline|run|be (generic term)
+(verb)|attend (generic term)|take care (generic term)|look (generic term)|see (generic term)
+(verb)|take care (generic term)|mind (generic term)
+tended to|1
+(adj)|attended|cared-for (similar term)
+tendencious|1
+(adj)|tendentious|partisan (similar term)|partizan (similar term)
+tendency|4
+(noun)|inclination|disposition|attitude (generic term)|mental attitude (generic term)
+(noun)|leaning|propensity|inclination (generic term)
+(noun)|inclination|disposition (generic term)
+(noun)|trend|direction (generic term)|way (generic term)
+tendentious|1
+(adj)|tendencious|partisan (similar term)|partizan (similar term)
+tendentiousness|1
+(noun)|bias (generic term)|prejudice (generic term)|preconception (generic term)
+tender|18
+(adj)|caring (similar term)|protective (similar term)|sentimental (similar term)|soft (related term)|tough (antonym)
+(adj)|sensitive|sore|raw|painful (similar term)
+(adj)|young (similar term)|immature (similar term)
+(adj)|affectionate|caring|fond|lovesome|warm|loving (similar term)
+(adj)|chewable (similar term)|cuttable (similar term)|crisp (similar term)|crispy (similar term)|flaky (similar term)|flakey (similar term)|tenderized (similar term)|tenderised (similar term)|edible (related term)|comestible (related term)|eatable (related term)|tough (antonym)
+(adj)|untoughened|delicate (similar term)|soft (similar term)|weak (related term)|tough (antonym)
+(adj)|crank|cranky|tippy|unstable (similar term)
+(adj)|delicate (similar term)
+(noun)|legal tender|medium of exchange (generic term)|monetary system (generic term)
+(noun)|attendant|attender|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+(noun)|bid|offer (generic term)|offering (generic term)
+(noun)|car (generic term)|railcar (generic term)|railway car (generic term)|railroad car (generic term)
+(noun)|ship's boat|pinnace|cutter|boat (generic term)
+(noun)|supply ship|ship (generic term)
+(verb)|give (generic term)|gift (generic term)|present (generic term)
+(verb)|offer|bid
+(verb)|offer (generic term)|proffer (generic term)
+(verb)|tenderize|tenderise|change (generic term)|alter (generic term)|modify (generic term)
+tender loving care|1
+(noun)|TLC|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+tender offer|1
+(noun)|offer (generic term)|offering (generic term)
+tenderfoot|1
+(noun)|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+tendergreen|1
+(noun)|spinach mustard|Brassica perviridis|Brassica rapa perviridis|crucifer (generic term)|cruciferous plant (generic term)
+tenderhearted|2
+(adj)|loving (similar term)
+(adj)|compassionate (similar term)
+tenderheartedness|1
+(noun)|tenderness|compassion (generic term)|compassionateness (generic term)
+tenderisation|1
+(noun)|tenderization|improvement (generic term)
+tenderise|1
+(verb)|tender|tenderize|change (generic term)|alter (generic term)|modify (generic term)
+tenderised|1
+(adj)|tenderized|tender (similar term)
+tenderiser|1
+(noun)|tenderizer|compound (generic term)|chemical compound (generic term)
+tenderization|1
+(noun)|tenderisation|improvement (generic term)
+tenderize|1
+(verb)|tender|tenderise|change (generic term)|alter (generic term)|modify (generic term)
+tenderized|1
+(adj)|tenderised|tender (similar term)
+tenderizer|1
+(noun)|tenderiser|compound (generic term)|chemical compound (generic term)
+tenderloin|2
+(noun)|combat zone|city district (generic term)
+(noun)|undercut|cut (generic term)|cut of meat (generic term)
+tenderness|5
+(noun)|affectionateness (generic term)|fondness (generic term)|lovingness (generic term)|warmth (generic term)
+(noun)|soreness|rawness|pain (generic term)|hurting (generic term)
+(noun)|tenderheartedness|compassion (generic term)|compassionateness (generic term)
+(noun)|affection|affectionateness|fondness|heart|warmness|warmheartedness|philia|feeling (generic term)
+(noun)|softheartedness|concern (generic term)
+tending|2
+(adj)|apt|disposed|given|minded|inclined (similar term)
+(noun)|care|attention|aid|work (generic term)
+tendinitis|1
+(noun)|tendonitis|tenonitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tendinous|1
+(adj)|sinewy|connective tissue (related term)
+tendon|1
+(noun)|sinew|connective tissue (generic term)
+tendon of achilles|1
+(noun)|Achilles tendon|tendon of Achilles|tendon (generic term)|sinew (generic term)
+tendonitis|1
+(noun)|tendinitis|tenonitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tendonous synovitis|1
+(noun)|tenosynovitis|tendosynovitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|synovitis (generic term)
+tendosynovitis|1
+(noun)|tenosynovitis|tendonous synovitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|synovitis (generic term)
+tendrac|1
+(noun)|tenrec|insectivore (generic term)
+tendril|1
+(noun)|plant part (generic term)|plant structure (generic term)
+tendril-climbing|1
+(adj)|plant part|plant structure (related term)
+tenebrific|1
+(adj)|tenebrous|tenebrious|dark (similar term)
+tenebrionid|1
+(noun)|darkling beetle|darkling groung beetle|weevil (generic term)
+tenebrionidae|1
+(noun)|Tenebrionidae|family Tenebrionidae|arthropod family (generic term)
+tenebrious|1
+(adj)|tenebrous|tenebrific|dark (similar term)
+tenebrous|1
+(adj)|tenebrific|tenebrious|dark (similar term)
+tenement|1
+(noun)|tenement house|apartment building (generic term)|apartment house (generic term)
+tenement district|1
+(noun)|residential district (generic term)|residential area (generic term)|community (generic term)
+tenement house|1
+(noun)|tenement|apartment building (generic term)|apartment house (generic term)
+tenerife|1
+(noun)|Tenerife|island (generic term)
+tenesmus|1
+(noun)|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+tenet|1
+(noun)|dogma|religious doctrine (generic term)|church doctrine (generic term)|gospel (generic term)|creed (generic term)
+tenfold|1
+(adj)|ten-fold|denary|multiple (similar term)
+teng hsiao-ping|1
+(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman (generic term)|solon (generic term)|national leader (generic term)
+teng hsiaoping|1
+(noun)|Deng Xiaoping|Teng Hsiao-ping|Teng Hsiaoping|statesman (generic term)|solon (generic term)|national leader (generic term)
+tenge|2
+(noun)|Turkmen monetary unit (generic term)
+(noun)|Kazakhstani monetary unit (generic term)
+tenia|1
+(noun)|taenia|fillet|headband (generic term)
+tenner|2
+(noun)|ten|10|X|decade|large integer (generic term)
+(noun)|ten dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+tennessean|1
+(noun)|Tennessean|Volunteer|American (generic term)
+tennessee|2
+(noun)|Tennessee|Volunteer State|TN|American state (generic term)
+(noun)|Tennessee|Tennessee River|river (generic term)
+tennessee river|1
+(noun)|Tennessee|Tennessee River|river (generic term)
+tennessee walker|1
+(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+tennessee walking horse|1
+(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+tennessee williams|1
+(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist (generic term)|playwright (generic term)
+tenniel|1
+(noun)|Tenniel|Sir John Tenniel|cartoonist (generic term)
+tennis|1
+(noun)|lawn tennis|court game (generic term)
+tennis ball|1
+(noun)|ball (generic term)
+tennis camp|1
+(noun)|camp (generic term)
+tennis club|1
+(noun)|racket club (generic term)
+tennis coach|1
+(noun)|coach (generic term)|manager (generic term)|handler (generic term)
+tennis court|1
+(noun)|court (generic term)
+tennis elbow|1
+(noun)|lateral epicondylitis|lateral humeral epicondylitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|epicondylitis (generic term)
+tennis lesson|1
+(noun)|lesson (generic term)
+tennis match|1
+(noun)|match (generic term)
+tennis player|1
+(noun)|athlete (generic term)|jock (generic term)|player (generic term)|participant (generic term)
+tennis pro|1
+(noun)|professional tennis player|tennis player (generic term)
+tennis racket|1
+(noun)|tennis racquet|racket (generic term)|racquet (generic term)
+tennis racquet|1
+(noun)|tennis racket|racket (generic term)|racquet (generic term)
+tennis shoe|1
+(noun)|gym shoe|sneaker|shoe (generic term)
+tennis shot|1
+(noun)|tennis stroke|stroke (generic term)|shot (generic term)
+tennis stroke|1
+(noun)|tennis shot|stroke (generic term)|shot (generic term)
+tenno|1
+(noun)|mikado|emperor (generic term)
+tennyson|1
+(noun)|Tennyson|Alfred Tennyson|First Baron Tennyson|Alfred Lord Tennyson|poet (generic term)
+tenon|1
+(noun)|projection (generic term)
+tenonitis|1
+(noun)|tendinitis|tendonitis|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tenor|6
+(adj)|high (similar term)|high-pitched (similar term)
+(noun)|tenor voice|singing voice (generic term)
+(noun)|pitch (generic term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|direction (generic term)
+(noun)|strain|meaning (generic term)|substance (generic term)
+tenor clef|1
+(noun)|clef (generic term)
+tenor drum|1
+(noun)|tom-tom|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tenor saxophonist|1
+(noun)|tenorist|saxophonist (generic term)|saxist (generic term)
+tenor voice|1
+(noun)|tenor|singing voice (generic term)
+tenoretic|1
+(noun)|Tenoretic|antihypertensive (generic term)|antihypertensive drug (generic term)
+tenorist|1
+(noun)|tenor saxophonist|saxophonist (generic term)|saxist (generic term)
+tenormin|1
+(noun)|atenolol|Tenormin|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+tenoroon|1
+(noun)|bassoon (generic term)
+tenosynovitis|1
+(noun)|tendosynovitis|tendonous synovitis|tendinitis (generic term)|tendonitis (generic term)|tenonitis (generic term)|synovitis (generic term)
+tenpence|1
+(noun)|coin (generic term)
+tenpenny nail|1
+(noun)|nail (generic term)
+tenpin|1
+(noun)|bowling pin (generic term)|pin (generic term)
+tenpin bowling|1
+(noun)|tenpins|bowling (generic term)
+tenpins|1
+(noun)|tenpin bowling|bowling (generic term)
+tenpounder|1
+(noun)|ladyfish|Elops saurus|tarpon (generic term)|Tarpon atlanticus (generic term)
+tenrec|1
+(noun)|tendrac|insectivore (generic term)
+tenrec ecaudatus|1
+(noun)|tailless tenrec|Tenrec ecaudatus|tenrec (generic term)|tendrac (generic term)
+tenrecidae|1
+(noun)|Tenrecidae|family Tenrecidae|mammal family (generic term)
+tense|8
+(adj)|aroused (similar term)|wound up (similar term)|cliff-hanging (similar term)|suspenseful (similar term)|suspensive (similar term)|nail-biting (similar term)|taut (similar term)|edgy (similar term)|high-strung (similar term)|highly strung (similar term)|in suspense (similar term)|jittery (similar term)|jumpy (similar term)|nervy (similar term)|overstrung (similar term)|restive (similar term)|uptight (similar term)|electric (similar term)|isotonic (similar term)|nervous (similar term)|strained (similar term)|unrelaxed (similar term)|pumped-up (similar term)|pumped up (similar term)|pumped (similar term)|wired (similar term)|agitated (related term)|uneasy (related term)|relaxed (antonym)
+(adj)|constricted (similar term)|lax (antonym)
+(adj)|overstrung (similar term)|taut (similar term)|tight (similar term)|tight (related term)|lax (antonym)
+(noun)|grammatical category (generic term)|syntactic category (generic term)
+(verb)|strain|tighten (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|tense up|change state (generic term)|turn (generic term)|relax (antonym)
+(verb)|strain|tense up|affect (generic term)|unstrain (antonym)|relax (antonym)
+tense system|1
+(noun)|language system (generic term)
+tense up|2
+(verb)|tense|change state (generic term)|turn (generic term)|relax (antonym)
+(verb)|tense|strain|affect (generic term)|unstrain (antonym)|relax (antonym)
+tensed|1
+(adj)|finite (similar term)
+tenseness|2
+(noun)|tension|tensity|tautness|condition (generic term)|status (generic term)
+(noun)|tension|stress|strain (generic term)|mental strain (generic term)|nervous strain (generic term)
+tensile|2
+(adj)|stress (related term)
+(adj)|ductile|malleable|pliable|pliant|tractile|formed (similar term)
+tensile strength|1
+(noun)|lastingness (generic term)|durability (generic term)|enduringness (generic term)|strength (generic term)
+tensimeter|1
+(noun)|manometer (generic term)
+tensiometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tension|6
+(noun)|latent hostility|hostility (generic term)|enmity (generic term)|antagonism (generic term)
+(noun)|tenseness|stress|strain (generic term)|mental strain (generic term)|nervous strain (generic term)
+(noun)|tensity|tenseness|tautness|condition (generic term)|status (generic term)
+(noun)|balance (generic term)
+(noun)|stress (generic term)
+(noun)|stretching (generic term)
+tension headache|1
+(noun)|headache (generic term)|head ache (generic term)|cephalalgia (generic term)
+tensional|1
+(adj)|balance (related term)
+tensionless|1
+(adj)|lax (similar term)
+tensity|1
+(noun)|tension|tenseness|tautness|condition (generic term)|status (generic term)
+tensor|2
+(noun)|variable (generic term)|variable quantity (generic term)
+(noun)|muscle (generic term)|musculus (generic term)
+tensor tympani|1
+(noun)|tensor (generic term)
+tent|2
+(noun)|collapsible shelter|shelter (generic term)
+(verb)|camp|encamp|camp out|bivouac|dwell (generic term)|live (generic term)|inhabit (generic term)
+tent-caterpillar moth|2
+(noun)|Malacosoma disstria|lasiocampid (generic term)|lasiocampid moth (generic term)
+(noun)|Malacosoma americana|moth (generic term)
+tent-fly|1
+(noun)|rainfly|fly sheet|fly|tent flap|flap (generic term)
+tent caterpillar|1
+(noun)|caterpillar (generic term)
+tent flap|1
+(noun)|tent-fly|rainfly|fly sheet|fly|flap (generic term)
+tent peg|1
+(noun)|peg (generic term)|nog (generic term)
+tent stitch|1
+(noun)|petit point|stitch (generic term)
+tentacle|2
+(noun)|grip (generic term)|grasp (generic term)
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+tentacled|1
+(adj)|process|outgrowth|appendage (related term)
+tentacular|1
+(adj)|process|outgrowth|appendage (related term)
+tentaculata|1
+(noun)|Tentaculata|class Tentaculata|class (generic term)
+tentative|2
+(adj)|probationary|provisional|provisionary|conditional (similar term)
+(adj)|doubtful|unsettled (similar term)
+tenter|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+tenterhook|1
+(noun)|hook (generic term)|claw (generic term)
+tenth|3
+(adj)|10th|ordinal (similar term)
+(noun)|one-tenth|tenth part|ten percent|common fraction (generic term)|simple fraction (generic term)
+(noun)|rank (generic term)
+tenth cranial nerve|1
+(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|wandering nerve|cranial nerve (generic term)
+tenth part|1
+(noun)|one-tenth|tenth|ten percent|common fraction (generic term)|simple fraction (generic term)
+tenthredinidae|1
+(noun)|Tenthredinidae|family Tenthredinidae|arthropod family (generic term)
+tenting|1
+(noun)|camping|encampment|bivouacking|inhabitancy (generic term)|inhabitation (generic term)|habitation (generic term)
+tentmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+tentorial sinus|1
+(noun)|straight sinus|sinus rectus|venous sinus (generic term)|sinus (generic term)
+tentorium|1
+(noun)|fold (generic term)|plica (generic term)
+tenuity|3
+(noun)|thinness|slenderness|dimension (generic term)|thickness (antonym)
+(noun)|feebleness|weakness (generic term)
+(noun)|rarity|low density|density (generic term)|denseness (generic term)
+tenuous|2
+(adj)|flimsy|slight|thin|weak (similar term)
+(adj)|thin (similar term)
+tenure|3
+(noun)|term of office|incumbency|term (generic term)
+(noun)|land tenure|legal right (generic term)
+(verb)|promote (generic term)|upgrade (generic term)|advance (generic term)|kick upstairs (generic term)|raise (generic term)|elevate (generic term)
+tenured|1
+(adj)|irremovable (similar term)
+tenzing norgay|1
+(noun)|Tenzing Norgay|Sherpa (generic term)|mountaineer (generic term)|mountain climber (generic term)
+teodor josef konrad korzeniowski|1
+(noun)|Conrad|Joseph Conrad|Teodor Josef Konrad Korzeniowski|writer (generic term)|author (generic term)
+tepal|1
+(noun)|plant part (generic term)|plant structure (generic term)
+tepary bean|1
+(noun)|Phaseolus acutifolius latifolius|shell bean (generic term)|shell bean plant (generic term)
+tepee|1
+(noun)|tipi|teepee|tent (generic term)|collapsible shelter (generic term)|lodge (generic term)|indian lodge (generic term)
+tephrosia|1
+(noun)|Tephrosia|genus Tephrosia|rosid dicot genus (generic term)
+tephrosia purpurea|1
+(noun)|bastard indigo|Tephrosia purpurea|hoary pea (generic term)
+tephrosia virginiana|1
+(noun)|catgut|goat's rue|wild sweet pea|Tephrosia virginiana|hoary pea (generic term)
+tepic|1
+(noun)|Tepic|city (generic term)|metropolis (generic term)|urban center (generic term)
+tepid|2
+(adj)|lukewarm|warm (similar term)
+(adj)|halfhearted|half-hearted|lukewarm|unenthusiastic (similar term)
+tepidity|1
+(noun)|lukewarmness|tepidness|warmth (generic term)|warmness (generic term)
+tepidly|1
+(adv)|lukewarmly
+tepidness|2
+(noun)|lukewarmness|tepidity|warmth (generic term)|warmness (generic term)
+(noun)|lukewarmness|coldness (generic term)|coolness (generic term)|frigidity (generic term)|frigidness (generic term)|iciness (generic term)|chilliness (generic term)
+tequila|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+tera|1
+(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara (generic term)
+terabyte|1
+(noun)|T|TB|computer memory unit (generic term)
+teraflop|1
+(noun)|trillion floating point operations per second|unit of measurement (generic term)|unit (generic term)
+terahertz|1
+(noun)|THz|rate (generic term)
+teras|1
+(noun)|monster|fetus (generic term)|foetus (generic term)
+teratogen|1
+(noun)|agent (generic term)
+teratogenesis|1
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+teratogenic|1
+(adj)|agent (related term)
+teratology|1
+(noun)|embryology (generic term)
+teratoma|1
+(noun)|tumor (generic term)|tumour (generic term)|neoplasm (generic term)
+terazosin|1
+(noun)|Hytrin|antihypertensive (generic term)|antihypertensive drug (generic term)|alpha blocker (generic term)|alpha-blocker (generic term)|alpha-adrenergic blocker (generic term)|alpha-adrenergic blocking agent (generic term)
+terbinafine|1
+(noun)|Lamisil|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)
+terbium|1
+(noun)|Tb|atomic number 65|metallic element (generic term)|metal (generic term)
+terbium metal|1
+(noun)|rare earth (generic term)|rare-earth element (generic term)|lanthanoid (generic term)|lanthanide (generic term)|lanthanon (generic term)
+terce|1
+(noun)|tierce|canonical hour (generic term)
+tercel|1
+(noun)|tiercel|tercelet|hawk (generic term)
+tercelet|1
+(noun)|tiercel|tercel|hawk (generic term)
+tercentenary|1
+(noun)|tercentennial|triennial|anniversary (generic term)|day of remembrance (generic term)
+tercentennial|1
+(noun)|tercentenary|triennial|anniversary (generic term)|day of remembrance (generic term)
+tercet|1
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+terebella|1
+(noun)|Terebella|genus Terebella|worm genus (generic term)
+terebellidae|1
+(noun)|Terebellidae|family Terebellidae|worm family (generic term)
+terebinth|1
+(noun)|Pistacia terebinthus|angiospermous tree (generic term)|flowering tree (generic term)
+teredinid|1
+(noun)|shipworm|clam (generic term)
+teredinidae|1
+(noun)|Teredinidae|family Teredinidae|mollusk family (generic term)
+teredo|1
+(noun)|shipworm (generic term)|teredinid (generic term)
+terefah|1
+(adj)|nonkosher|tref|unclean (similar term)|impure (similar term)
+terence|1
+(noun)|Terence|Publius Terentius Afer|dramatist (generic term)|playwright (generic term)
+terence rattigan|1
+(noun)|Rattigan|Terence Rattigan|Sir Terence Mervyn Rattigan|dramatist (generic term)|playwright (generic term)
+teres|1
+(noun)|teres muscle|skeletal muscle (generic term)|striated muscle (generic term)
+teres major|1
+(noun)|teres major muscle|musculus teres major|teres (generic term)|teres muscle (generic term)
+teres major muscle|1
+(noun)|teres major|musculus teres major|teres (generic term)|teres muscle (generic term)
+teres minor|1
+(noun)|teres minor muscle|musculus teres minor|teres (generic term)|teres muscle (generic term)
+teres minor muscle|1
+(noun)|teres minor|musculus teres minor|teres (generic term)|teres muscle (generic term)
+teres muscle|1
+(noun)|teres|skeletal muscle (generic term)|striated muscle (generic term)
+teresa|1
+(noun)|Teresa|Mother Teresa|Theresa|Mother Theresa|Agnes Gonxha Bojaxhiu|nun (generic term)|missionary (generic term)|missioner (generic term)
+teresa of avila|1
+(noun)|Teresa of Avila|Saint Teresa of Avila|saint (generic term)
+tereshkova|1
+(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+terete|1
+(adj)|rounded (similar term)
+tergiversate|2
+(verb)|beat around the bush|equivocate|prevaricate|palter|misinform (generic term)|mislead (generic term)
+(verb)|apostatize|apostatise|renounce (generic term)|repudiate (generic term)
+tergiversation|2
+(noun)|equivocation|falsification (generic term)|misrepresentaation (generic term)
+(noun)|apostasy|abandonment (generic term)|forsaking (generic term)|desertion (generic term)
+tergiversator|1
+(noun)|hedger|equivocator|respondent (generic term)|responder (generic term)|answerer (generic term)
+teriyaki|1
+(noun)|dish (generic term)
+term|8
+(noun)|word (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|condition|statement (generic term)
+(noun)|quantity (generic term)
+(noun)|constituent (generic term)|grammatical constituent (generic term)
+(noun)|full term|point (generic term)|point in time (generic term)
+(noun)|terminus|terminal figure|statue (generic term)
+(verb)|name (generic term)|call (generic term)
+term infant|1
+(noun)|neonate (generic term)|newborn (generic term)|newborn infant (generic term)|newborn baby (generic term)
+term insurance|1
+(noun)|insurance (generic term)
+term of a contract|1
+(noun)|lease|time period (generic term)|period of time (generic term)|period (generic term)
+term of enlistment|1
+(noun)|enlistment|hitch|tour of duty|duty tour|tour|time period (generic term)|period of time (generic term)|period (generic term)
+term of office|1
+(noun)|tenure|incumbency|term (generic term)
+term paper|1
+(noun)|composition (generic term)|paper (generic term)|report (generic term)|theme (generic term)
+termagant|1
+(noun)|shrew|unpleasant woman (generic term)|disagreeable woman (generic term)
+termer|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+termes|1
+(noun)|Termes|genus Termes|arthropod genus (generic term)
+terminable|1
+(adj)|impermanent (similar term)|temporary (similar term)
+terminable interest|1
+(noun)|interest (generic term)|stake (generic term)
+terminal|8
+(adj)|endmost|last (similar term)
+(adj)|end (related term)
+(adj)|time period|period of time|period (related term)
+(adj)|concluding|final|last|closing (similar term)
+(adj)|fatal (similar term)
+(noun)|terminus|depot|station (generic term)
+(noun)|pole|contact (generic term)|tangency (generic term)
+(noun)|electronic equipment (generic term)
+terminal emulation|1
+(noun)|emulation (generic term)
+terminal figure|1
+(noun)|terminus|term|statue (generic term)
+terminal leave|1
+(noun)|leave (generic term)|leave of absence (generic term)
+terminal point|1
+(noun)|terminus ad quem|limit|end (generic term)|ending (generic term)
+terminal velocity|1
+(noun)|speed (generic term)|velocity (generic term)
+terminate|4
+(verb)|end|change (generic term)|alter (generic term)|modify (generic term)|begin (antonym)|begin (antonym)
+(verb)|end|stop|finish|cease|begin (antonym)
+(verb)|end|be (generic term)
+(verb)|fire|give notice|can|dismiss|give the axe|send away|sack|force out|give the sack|remove (generic term)|hire (antonym)
+terminated|2
+(adj)|complete|concluded|ended|over|all over|finished (similar term)
+(adj)|expired (similar term)
+termination|5
+(noun)|expiration|expiry|end (generic term)|ending (generic term)
+(noun)|end point|endpoint|terminus|end (generic term)
+(noun)|result|resultant|final result|outcome|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|ending|morpheme (generic term)
+(noun)|ending|conclusion|change of state (generic term)
+terminative|1
+(adj)|closing (similar term)
+terminator|1
+(noun)|exterminator|eradicator|killer (generic term)|slayer (generic term)
+terminological|1
+(adj)|word (related term)
+terminology|1
+(noun)|nomenclature|language|word (generic term)
+terminus|5
+(noun)|end point|endpoint|termination|end (generic term)
+(noun)|destination|goal (generic term)|end (generic term)
+(noun)|terminal figure|term|statue (generic term)
+(noun)|end (generic term)
+(noun)|terminal|depot|station (generic term)
+terminus a quo|1
+(noun)|starting point|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)
+terminus ad quem|1
+(noun)|terminal point|limit|end (generic term)|ending (generic term)
+termite|1
+(noun)|white ant|insect (generic term)
+termitidae|1
+(noun)|Termitidae|family Termitidae|arthropod family (generic term)
+terms|2
+(noun)|footing|status (generic term)|position (generic term)
+(noun)|price|damage|cost (generic term)
+tern|1
+(noun)|larid (generic term)
+ternary|2
+(adj)|treble|triple|triplex|multiple (similar term)
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+ternate|1
+(adj)|compound (similar term)
+ternion|1
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+terpene|1
+(noun)|hydrocarbon (generic term)
+terpsichore|2
+(noun)|Terpsichore|Muse (generic term)
+(noun)|dancing|dance|saltation|diversion (generic term)|recreation (generic term)|performing arts (generic term)
+terpsichorean|2
+(adj)|diversion|recreation|performing arts (related term)
+(noun)|dancer|professional dancer|performer (generic term)|performing artist (generic term)
+terra alba|3
+(noun)|gypsum (generic term)
+(noun)|pipeclay|clay (generic term)
+(noun)|china clay|china stone|kaolin|kaoline|porcelain clay|clay (generic term)
+terra cotta|1
+(noun)|earthenware (generic term)
+terra firma|1
+(noun)|land|dry land|earth|ground|solid ground|object (generic term)|physical object (generic term)
+terra incognita|1
+(noun)|unknown|unknown region|region (generic term)
+terra sigillata|1
+(noun)|Samian ware|earthenware (generic term)
+terrace|5
+(noun)|patio|area (generic term)
+(noun)|bench|tableland (generic term)|plateau (generic term)
+(noun)|row (generic term)
+(verb)|terrasse|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|shape (generic term)|form (generic term)
+terraced house|1
+(noun)|row house (generic term)|town house (generic term)
+terrain|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+terrain flight|1
+(noun)|low level flight|flight (generic term)|flying (generic term)
+terrain intelligence|1
+(noun)|tactical intelligence (generic term)|combat intelligence (generic term)
+terramycin|1
+(noun)|oxytetracycline|hydroxytetracycline|oxytetracycline hydrochloride|Terramycin|antibiotic (generic term)|antibiotic drug (generic term)
+terrapene|1
+(noun)|Terrapene|genus Terrapene|reptile genus (generic term)
+terrapene ornata|1
+(noun)|Western box turtle|Terrapene ornata|box turtle (generic term)|box tortoise (generic term)
+terrapin|1
+(noun)|turtle (generic term)
+terrarium|1
+(noun)|vivarium (generic term)
+terrasse|1
+(verb)|terrace|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+terre adelie|1
+(noun)|Adelie Land|Terre Adelie|Adelie Coast|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+terrene|2
+(adj)|tellurian|telluric|terrestrial|object|physical object (related term)
+(adj)|mundane|earthly (similar term)
+terreplein|1
+(noun)|space (generic term)
+terrestrial|5
+(adj)|tellurian|telluric|terrene|object|physical object (related term)
+(adj)|planetary|terrestrial planet (related term)
+(adj)|amphibious (antonym)|aquatic (antonym)
+(adj)|mundane|worldly (similar term)
+(adj)|sublunar|sublunary|earthly (similar term)
+terrestrial dynamical time|1
+(noun)|terrestrial time|TT|TDT|ephemeris time|time unit (generic term)|unit of time (generic term)
+terrestrial guidance|1
+(noun)|steering (generic term)|guidance (generic term)|direction (generic term)
+terrestrial planet|1
+(noun)|planet (generic term)|major planet (generic term)
+terrestrial time|1
+(noun)|TT|terrestrial dynamical time|TDT|ephemeris time|time unit (generic term)|unit of time (generic term)
+terrestrially|1
+(adv)|mundanely
+terrible|4
+(adj)|awful|dire|direful|dread|dreaded|dreadful|fearful|fearsome|frightening|horrendous|horrific|alarming (similar term)
+(adj)|atrocious|abominable|awful|dreadful|painful|unspeakable|bad (similar term)
+(adj)|severe|wicked|intense (similar term)
+(adj)|frightful|awful|tremendous|extraordinary (similar term)
+terribleness|1
+(noun)|awfulness|dreadfulness|horridness|unpleasantness (generic term)
+terribly|2
+(adv)|awfully|awful|frightfully
+(adv)|atrociously|awfully|abominably|abysmally|rottenly
+terrier|1
+(noun)|hunting dog (generic term)
+terrietia|1
+(noun)|Heritiera|genus Heritiera|Terrietia|genus Terrietia|dilleniid dicot genus (generic term)
+terrietia trifoliolata|1
+(noun)|red beech|brown oak|booyong|crow's foot|stave wood|silky elm|Heritiera trifoliolata|Terrietia trifoliolata|angiospermous tree (generic term)|flowering tree (generic term)
+terrific|3
+(adj)|intense (similar term)
+(adj)|fantastic|grand|howling|marvelous|marvellous|rattling|tremendous|wonderful|wondrous|extraordinary (similar term)
+(adj)|terrifying|alarming (similar term)
+terrifically|1
+(adv)|wonderfully|wondrous|wondrously|superbly|toppingly|marvellously|marvelously
+terrified|1
+(adj)|panicky|panicked|panic-stricken|panic-struck|frightened|afraid (similar term)
+terrify|1
+(verb)|terrorize|terrorise|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+terrifying|1
+(adj)|terrific|alarming (similar term)
+terrine|1
+(noun)|dish (generic term)
+territorial|5
+(adj)|region (related term)
+(adj)|nonterritorial (antonym)
+(adj)|jurisdictional (similar term)|regional (similar term)|sectional (similar term)|extraterritorial (antonym)
+(noun)|soldier (generic term)
+(noun)|territorial reserve|militia (generic term)|reserves (generic term)
+territorial army|1
+(noun)|Territorial Army|territorial (generic term)|territorial reserve (generic term)
+territorial division|1
+(noun)|administrative district|administrative division|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+territorial dominion|1
+(noun)|district|territory|dominion|region (generic term)
+territorial reserve|1
+(noun)|territorial|militia (generic term)|reserves (generic term)
+territorial waters|1
+(noun)|body of water (generic term)|water (generic term)|high sea (antonym)|international waters (antonym)
+territorialisation|1
+(noun)|territorialization|organization (generic term)|organisation (generic term)
+territorialise|3
+(verb)|territorialize|organize (generic term)|organise (generic term)
+(verb)|territorialize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|territorialize|widen (generic term)|broaden (generic term)|extend (generic term)
+territoriality|1
+(noun)|behavior (generic term)|behaviour (generic term)
+territorialization|1
+(noun)|territorialisation|organization (generic term)|organisation (generic term)
+territorialize|3
+(verb)|territorialise|organize (generic term)|organise (generic term)
+(verb)|territorialise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|territorialise|widen (generic term)|broaden (generic term)|extend (generic term)
+territory|3
+(noun)|district|territorial dominion|dominion|region (generic term)
+(noun)|area (generic term)
+(noun)|soil|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+terror|3
+(noun)|panic|affright|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|scourge|threat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|brat|little terror|holy terror|imp (generic term)|scamp (generic term)|monkey (generic term)|rascal (generic term)|rapscallion (generic term)|scalawag (generic term)|scallywag (generic term)
+terror-stricken|1
+(adj)|terror-struck|afraid (similar term)
+terror-struck|1
+(adj)|terror-stricken|afraid (similar term)
+terrorisation|2
+(noun)|terrorization|frightening|bullying (generic term)|intimidation (generic term)
+(noun)|terrorization|transgression (generic term)|evildoing (generic term)
+terrorise|2
+(verb)|terrorize|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|terrify|terrorize|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+terrorism|1
+(noun)|act of terrorism|terrorist act|coercion (generic term)
+terrorist|2
+(adj)|violent (similar term)
+(noun)|radical (generic term)
+terrorist act|1
+(noun)|terrorism|act of terrorism|coercion (generic term)
+terrorist attack|1
+(noun)|surprise attack (generic term)|coup de main (generic term)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+terrorist cell|1
+(noun)|radical cell|cell (generic term)|cadre (generic term)
+terrorist group|1
+(noun)|terrorist organization|foreign terrorist organization|FTO|political movement (generic term)
+terrorist organization|1
+(noun)|terrorist group|foreign terrorist organization|FTO|political movement (generic term)
+terrorization|2
+(noun)|terrorisation|frightening|bullying (generic term)|intimidation (generic term)
+(noun)|terrorisation|transgression (generic term)|evildoing (generic term)
+terrorize|2
+(verb)|terrorise|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+(verb)|terrify|terrorise|frighten (generic term)|fright (generic term)|scare (generic term)|affright (generic term)
+terry|2
+(noun)|Terry|Dame Ellen Terry|Dame Alice Ellen Terry|actress (generic term)
+(noun)|terry cloth|terrycloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)|toweling (generic term)|towelling (generic term)
+terry cloth|1
+(noun)|terry|terrycloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)|toweling (generic term)|towelling (generic term)
+terry towel|1
+(noun)|Turkish towel|bath towel (generic term)
+terrycloth|1
+(noun)|terry|terry cloth|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)|toweling (generic term)|towelling (generic term)
+terse|1
+(adj)|crisp|curt|laconic|concise (similar term)
+tersely|1
+(adv)|telegraphically
+terseness|1
+(noun)|expressive style (generic term)|style (generic term)|verboseness (antonym)
+tertian|2
+(adj)|repeat|repetition (related term)
+(adj)|interval|musical interval (related term)
+tertiary|2
+(adj)|third|3rd|ordinal (similar term)
+(noun)|Tertiary|Tertiary period|period (generic term)|geological period (generic term)
+tertiary period|1
+(noun)|Tertiary|Tertiary period|period (generic term)|geological period (generic term)
+tertiary syphilis|1
+(noun)|syphilis (generic term)|syph (generic term)|pox (generic term)
+tertigravida|1
+(noun)|gravida III|gravida (generic term)
+tertium quid|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+tertry|1
+(noun)|Tertry|battle of Tertry|pitched battle (generic term)
+tertullian|1
+(noun)|Tertullian|Quintus Septimius Florens Tertullianus|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+terylene|1
+(noun)|Dacron|Terylene|polyester (generic term)|polyester fabric (generic term)
+terza rima|1
+(noun)|poem (generic term)|verse form (generic term)
+terzetto|1
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|trey|deuce-ace|digit (generic term)|figure (generic term)
+tesla|2
+(noun)|flux density unit (generic term)
+(noun)|Tesla|Nikola Tesla|electrical engineer (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+tesla coil|1
+(noun)|Tesla coil|transformer (generic term)
+tesselate|1
+(verb)|fit (generic term)|go (generic term)
+tessella|1
+(noun)|tessera (generic term)
+tessellate|1
+(verb)|tile (generic term)
+tessellated|2
+(adj)|patterned (similar term)
+(adj)|mosaic|adorned (similar term)|decorated (similar term)
+tessellation|2
+(noun)|juxtaposition (generic term)|apposition (generic term)|collocation (generic term)
+(noun)|decoration (generic term)
+tessera|1
+(noun)|tile (generic term)
+tessin|1
+(noun)|Ticino|Tessin|Swiss canton (generic term)
+test|13
+(noun)|mental test|mental testing|psychometric test|mental measurement (generic term)
+(noun)|trial|run|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|trial|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|trial|trial run|tryout|experiment (generic term)|experimentation (generic term)
+(noun)|examination|exam|communication (generic term)|communicating (generic term)
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(verb)|prove|try|try out|examine|essay|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|screen|check (generic term)
+(verb)|quiz|examine (generic term)
+(verb)|be (generic term)
+(verb)|score (generic term)
+(verb)|determine (generic term)|check (generic term)|find out (generic term)|see (generic term)|ascertain (generic term)|watch (generic term)|learn (generic term)
+(verb)|take (generic term)|undergo (generic term)|submit (generic term)
+test-cross|1
+(noun)|testcross|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+test-tube baby|1
+(noun)|baby (generic term)|babe (generic term)|infant (generic term)
+test ban|1
+(noun)|ban (generic term)|banning (generic term)|forbiddance (generic term)|forbidding (generic term)
+test bed|1
+(noun)|workplace (generic term)|work (generic term)
+test case|1
+(noun)|test suit|legal action (generic term)|action (generic term)|action at law (generic term)
+test copy|1
+(noun)|proof|trial impression|impression (generic term)|printing (generic term)
+test drive|2
+(noun)|road test (generic term)
+(verb)|drive (generic term)
+test driver|1
+(noun)|driver (generic term)
+test equipment|1
+(noun)|equipment (generic term)
+test fly|1
+(verb)|fly (generic term)|aviate (generic term)|pilot (generic term)
+test instrument vehicle|1
+(noun)|test rocket|research rocket|rocket (generic term)|projectile (generic term)
+test match|1
+(noun)|match game|matched game|match (generic term)
+test paper|2
+(noun)|examination paper|exam paper|question sheet|examination (generic term)|exam (generic term)|test (generic term)
+(noun)|indicator (generic term)
+test period|1
+(noun)|trial period|time period (generic term)|period of time (generic term)|period (generic term)
+test pilot|1
+(noun)|pilot (generic term)|airplane pilot (generic term)
+test range|1
+(noun)|range (generic term)
+test rocket|1
+(noun)|research rocket|test instrument vehicle|rocket (generic term)|projectile (generic term)
+test room|1
+(noun)|testing room|room (generic term)
+test suit|1
+(noun)|test case|legal action (generic term)|action (generic term)|action at law (generic term)
+test tube|1
+(noun)|tube (generic term)|tubing (generic term)
+testa|1
+(noun)|episperm|seed coat|reproductive structure (generic term)
+testacea|1
+(noun)|Testacea|order Testacea|animal order (generic term)
+testacean|1
+(noun)|rhizopod (generic term)|rhizopodan (generic term)
+testaceous|2
+(adj)|covering|natural covering|cover (related term)
+(adj)|reproductive structure (related term)
+testament|4
+(noun)|creed (generic term)|credo (generic term)
+(noun)|will|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|testimony (generic term)|testimonial (generic term)
+(noun)|Testament|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+testamentary|1
+(adj)|legal document|legal instrument|official document|instrument (related term)
+testamentary trust|1
+(noun)|trust (generic term)
+testate|2
+(adj)|intestate (antonym)
+(noun)|testator|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+testator|1
+(noun)|testate|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+testatrix|1
+(noun)|testator (generic term)|testate (generic term)
+testcross|1
+(noun)|test-cross|hybridization (generic term)|hybridisation (generic term)|crossbreeding (generic term)|crossing (generic term)|cross (generic term)|interbreeding (generic term)|hybridizing (generic term)
+tested|2
+(adj)|tried|well-tried|proved (similar term)|proven (similar term)
+(adj)|time-tested|tried|tried and true|reliable (similar term)|dependable (similar term)
+testee|1
+(noun)|examinee|respondent (generic term)|responder (generic term)|answerer (generic term)
+tester|2
+(noun)|examiner|quizzer|inquirer (generic term)|enquirer (generic term)|questioner (generic term)|querier (generic term)|asker (generic term)
+(noun)|canopy (generic term)
+testicle|1
+(noun)|testis|orchis|ball|ballock|bollock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+testicular|1
+(adj)|male reproductive gland|gonad|sex gland (related term)
+testicular artery|1
+(noun)|internal spermatic artery|arteria testicularis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+testicular cancer|1
+(noun)|seminoma|carcinoma (generic term)
+testicular vein|1
+(noun)|vena testicularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+testiere|1
+(noun)|chanfron|chamfron|frontstall|front-stall|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+testifier|1
+(noun)|deponent|deposer|witness (generic term)|witnesser (generic term)|informant (generic term)
+testify|2
+(verb)|attest|take the stand|bear witness|declare (generic term)
+(verb)|bear witness|prove|evidence|show|inform (generic term)
+testily|1
+(adv)|irritably|petulantly|pettishly
+testimonial|5
+(adj)|approval|commendation (related term)
+(adj)|evidence (related term)
+(noun)|testimony|evidence (generic term)
+(noun)|tribute|approval (generic term)|commendation (generic term)
+(noun)|recommendation|good word|praise (generic term)|congratulations (generic term)|kudos (generic term)|extolment (generic term)
+testimonial immunity|1
+(noun)|use immunity|exemption (generic term)|immunity (generic term)|granting immunity (generic term)
+testimony|3
+(noun)|evidence (generic term)
+(noun)|assertion (generic term)|averment (generic term)|asseveration (generic term)
+(noun)|testimonial|evidence (generic term)
+testiness|1
+(noun)|touchiness|tetchiness|irritability (generic term)|crossness (generic term)|fretfulness (generic term)|fussiness (generic term)|peevishness (generic term)|petulance (generic term)|choler (generic term)
+testing|3
+(noun)|experiment (generic term)|experimentation (generic term)
+(noun)|examination (generic term)|scrutiny (generic term)
+(noun)|examination|investigation (generic term)|investigating (generic term)
+testing ground|1
+(noun)|laboratory|region (generic term)
+testing room|1
+(noun)|test room|room (generic term)
+testis|1
+(noun)|testicle|orchis|ball|ballock|bollock|nut|egg|male reproductive gland (generic term)|gonad (generic term)|sex gland (generic term)
+testosterone|1
+(noun)|androgen (generic term)|androgenic hormone (generic term)
+testudinata|1
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+testudines|1
+(noun)|Chelonia|order Chelonia|Testudinata|order Testudinata|Testudines|order Testudines|animal order (generic term)
+testudinidae|1
+(noun)|Testudinidae|family Testudinidae|reptile family (generic term)
+testudo|2
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+(noun)|Testudo|genus Testudo|reptile genus (generic term)
+testudo graeca|1
+(noun)|European tortoise|Testudo graeca|tortoise (generic term)
+testy|1
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|scratchy|tetchy|techy|ill-natured (similar term)
+tet|1
+(noun)|Tet|day (generic term)
+tetanic|2
+(adj)|syndrome (related term)
+(adj)|infection (related term)
+tetanilla|1
+(noun)|tetany|intermittent tetanus|intermittent cramp|apyretic tetanus|syndrome (generic term)
+tetanus|2
+(noun)|lockjaw|infection (generic term)
+(noun)|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+tetanus antitoxin|1
+(noun)|antitoxin (generic term)
+tetanus immune globulin|1
+(noun)|tetanus immunoglobulin|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+tetanus immunoglobulin|1
+(noun)|tetanus immune globulin|immunoglobulin (generic term)|Ig (generic term)|immune serum globulin (generic term)|immune gamma globulin (generic term)|immune globulin (generic term)
+tetany|1
+(noun)|tetanilla|intermittent tetanus|intermittent cramp|apyretic tetanus|syndrome (generic term)
+tetartanopia|1
+(noun)|yellow-blindness|yellow-blue dichromacy (generic term)|yellow-blue color blindness (generic term)
+tetchiness|1
+(noun)|testiness|touchiness|irritability (generic term)|crossness (generic term)|fretfulness (generic term)|fussiness (generic term)|peevishness (generic term)|petulance (generic term)|choler (generic term)
+tetchy|1
+(adj)|cranky|fractious|irritable|nettlesome|peevish|peckish|pettish|petulant|scratchy|testy|techy|ill-natured (similar term)
+tete-a-tete|3
+(adj)|head-to-head|private (similar term)
+(noun)|conversation (generic term)
+(noun)|love seat|loveseat|vis-a-vis|sofa (generic term)|couch (generic term)|lounge (generic term)
+teth|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+tether|2
+(noun)|leash|lead|restraint (generic term)|constraint (generic term)
+(verb)|attach (generic term)
+tetherball|1
+(noun)|athletic game (generic term)
+tethered|1
+(adj)|bound (similar term)
+tethyidae|1
+(noun)|Aplysiidae|family Aplysiidae|Tethyidae|family Tethyidae|mollusk family (generic term)
+tethys|2
+(noun)|Tethys|Titaness (generic term)
+(noun)|Aplysia|genus Aplysia|Tethys|genus Tethus|mollusk genus (generic term)
+teton|1
+(noun)|Teton|Lakota|Teton Sioux|Teton Dakota|Sioux (generic term)|Siouan (generic term)
+teton dakota|1
+(noun)|Teton|Lakota|Teton Sioux|Teton Dakota|Sioux (generic term)|Siouan (generic term)
+teton range|1
+(noun)|Teton Range|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+teton sioux|1
+(noun)|Teton|Lakota|Teton Sioux|Teton Dakota|Sioux (generic term)|Siouan (generic term)
+tetra|1
+(noun)|characin (generic term)|characin fish (generic term)|characid (generic term)
+tetrabasic acid|1
+(noun)|acid (generic term)
+tetrabromo-phenolsulfonephthalein|1
+(noun)|bromophenol blue|bromphenol blue|dye (generic term)|dyestuff (generic term)|acid-base indicator (generic term)
+tetracaine|1
+(noun)|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+tetrachlorethylene|1
+(noun)|tetrachloroethylene|ethylene tetrachloride|carbon dichloride|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+tetrachloride|1
+(noun)|compound (generic term)|chemical compound (generic term)
+tetrachloroethylene|1
+(noun)|tetrachlorethylene|ethylene tetrachloride|carbon dichloride|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+tetrachloromethane|1
+(noun)|carbon tetrachloride|carbon tet|perchloromethane|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)|tetrachloride (generic term)
+tetrachoric correlation|1
+(noun)|tetrachoric correlation coefficient|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+tetrachoric correlation coefficient|1
+(noun)|tetrachoric correlation|correlation coefficient (generic term)|coefficient of correlation (generic term)|correlation (generic term)
+tetraclinis|1
+(noun)|Tetraclinis|genus Tetraclinis|gymnosperm genus (generic term)
+tetraclinis articulata|1
+(noun)|sandarac|sandarac tree|Tetraclinis articulata|Callitris quadrivalvis|cypress (generic term)
+tetracycline|1
+(noun)|Achromycin|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+tetrad|1
+(noun)|four|4|IV|quatern|quaternion|quaternary|quaternity|quartet|quadruplet|foursome|Little Joe|digit (generic term)|figure (generic term)
+tetradecanoic acid|1
+(noun)|myristic acid|saturated fatty acid (generic term)
+tetraethyl lead|1
+(noun)|lead tetraethyl|antiknock (generic term)
+tetrafluoroethylene|1
+(noun)|fluorocarbon (generic term)
+tetragon|1
+(noun)|quadrilateral|quadrangle|polygon (generic term)|polygonal shape (generic term)
+tetragonal|1
+(adj)|polygon|polygonal shape (related term)
+tetragonia|1
+(noun)|Tetragonia|genus Tetragonia|caryophylloid dicot genus (generic term)
+tetragonia expansa|1
+(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb (generic term)|herbaceous plant (generic term)
+tetragonia tetragonioides|1
+(noun)|New Zealand spinach|Tetragonia tetragonioides|Tetragonia expansa|herb (generic term)|herbaceous plant (generic term)
+tetragoniaceae|1
+(noun)|Aizoaceae|family Aizoaceae|Tetragoniaceae|family Tetragoniaceae|carpetweed family|caryophylloid dicot family (generic term)
+tetragonurus|1
+(noun)|Tetragonurus|genus Tetragonurus|fish genus (generic term)
+tetragram|1
+(noun)|written word (generic term)
+tetragrammaton|1
+(noun)|Tetragrammaton|tetragram (generic term)
+tetrahalide|1
+(noun)|halide (generic term)
+tetrahedron|1
+(noun)|polyhedron (generic term)
+tetrahydrocannabinol|1
+(noun)|THC|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+tetrahymena|1
+(noun)|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+tetraiodothyronine|1
+(noun)|thyroxine|thyroxin|T|thyroid hormone (generic term)
+tetralogy|1
+(noun)|serial (generic term)|series (generic term)
+tetralogy of fallot|1
+(noun)|tetralogy of Fallot|Fallot's tetralogy|Fallot's syndrome|congenital heart defect (generic term)|syndrome (generic term)
+tetramerous|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+tetrameter|1
+(noun)|verse (generic term)|verse line (generic term)
+tetramethyldiarsine|1
+(noun)|cacodyl|organic compound (generic term)
+tetrametric|1
+(adj)|verse|verse line (related term)
+tetraneuris|1
+(noun)|Tetraneuris|genus Tetraneuris|asterid dicot genus (generic term)
+tetraneuris acaulis|1
+(noun)|stemless hymenoxys|Tetraneuris acaulis|Hymenoxys acaulis|wildflower (generic term)|wild flower (generic term)
+tetraneuris grandiflora|1
+(noun)|old man of the mountain|alpine sunflower|Tetraneuris grandiflora|Hymenoxys grandiflora|wildflower (generic term)|wild flower (generic term)
+tetranychid|1
+(noun)|spider mite|mite (generic term)
+tetranychidae|1
+(noun)|Tetranychidae|family Tetranychidae|arthropod family (generic term)
+tetrao|1
+(noun)|Tetrao|genus Tetrao|bird genus (generic term)
+tetrao urogallus|1
+(noun)|capercaillie|capercailzie|horse of the wood|Tetrao urogallus|grouse (generic term)
+tetraodontidae|1
+(noun)|Tetraodontidae|family Tetraodontidae|fish family (generic term)
+tetraonidae|1
+(noun)|Tetraonidae|family Tetraonidae|bird family (generic term)
+tetrapod|1
+(noun)|vertebrate (generic term)|craniate (generic term)
+tetrapturus|1
+(noun)|Tetrapturus|genus Tetrapturus|fish genus (generic term)
+tetrasaccharide|1
+(noun)|oligosaccharide (generic term)
+tetraskele|1
+(noun)|tetraskelion|design (generic term)|pattern (generic term)|figure (generic term)
+tetraskelion|1
+(noun)|tetraskele|design (generic term)|pattern (generic term)|figure (generic term)
+tetrasodium pyrophosphate|1
+(noun)|sodium pyrophosphate|builder (generic term)|detergent builder (generic term)
+tetrasporangium|1
+(noun)|sporangium (generic term)|spore case (generic term)|spore sac (generic term)
+tetraspore|1
+(noun)|spore (generic term)
+tetravalent|1
+(adj)|power|powerfulness (related term)
+tetrazzini|1
+(noun)|Tetrazzini|dish (generic term)
+tetri|1
+(noun)|Georgian monetary unit (generic term)
+tetrode|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+tetrodotoxin|1
+(noun)|neurotoxin (generic term)|neurolysin (generic term)
+tetrose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+tetroxide|1
+(noun)|oxide (generic term)
+tetryl|1
+(noun)|nitramine|explosive (generic term)
+tetterwort|1
+(noun)|bloodroot|puccoon|redroot|Sanguinaria canadensis|herb (generic term)|herbaceous plant (generic term)
+tettigoniid|1
+(noun)|long-horned grasshopper|grasshopper (generic term)|hopper (generic term)
+tettigoniidae|1
+(noun)|Tettigoniidae|family Tettigoniidae|arthropod family (generic term)
+teucrium|1
+(noun)|Teucrium|genus Teucrium|asterid dicot genus (generic term)
+teucrium canadense|1
+(noun)|American germander|wood sage|Teucrium canadense|germander (generic term)
+teucrium chamaedrys|1
+(noun)|wall germander|Teucrium chamaedrys|germander (generic term)
+teucrium marum|1
+(noun)|cat thyme|marum|Teucrium marum|germander (generic term)
+teucrium scorodonia|1
+(noun)|wood sage|Teucrium scorodonia|germander (generic term)
+teutoburger wald|1
+(noun)|Teutoburger Wald|battle of Teutoburger Wald|pitched battle (generic term)
+teuton|2
+(noun)|Teuton|German (generic term)
+(noun)|Teuton|European (generic term)
+teutonic|2
+(adj)|Teutonic|Germanic|European (related term)
+(adj)|German|Germanic|Teutonic|European country|European nation (related term)
+teutonic deity|1
+(noun)|Teutonic deity|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+teutonist|1
+(noun)|Teutonist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+tevere|1
+(noun)|Tiber|Tevere|river (generic term)
+tevet|1
+(noun)|Tebet|Tevet|Jewish calendar month (generic term)
+tewkesbury|1
+(noun)|Tewkesbury|battle of Tewkesbury|pitched battle (generic term)
+texan|2
+(adj)|Texan|American state (related term)
+(noun)|Texan|American (generic term)
+texarkana|1
+(noun)|Texarkana|town (generic term)
+texas|1
+(noun)|Texas|Lone-Star State|TX|American state (generic term)
+texas armadillo|1
+(noun)|peba|nine-banded armadillo|Texas armadillo|Dasypus novemcinctus|armadillo (generic term)
+texas bluebonnet|2
+(noun)|Texas bluebonnet|Lupinus texensis|lupine (generic term)|lupin (generic term)
+(noun)|bluebonnet|buffalo clover|Texas bluebonnet|Lupinus subcarnosus|lupine (generic term)|lupin (generic term)
+texas chachalaca|1
+(noun)|Texas chachalaca|Ortilis vetula macalli|chachalaca (generic term)
+texas fever|1
+(noun)|Texas fever|animal disease (generic term)
+texas horned lizard|1
+(noun)|Texas horned lizard|Phrynosoma cornutum|horned lizard (generic term)|horned toad (generic term)|horny frog (generic term)
+texas independence day|1
+(noun)|Texas Independence Day|March 2|day (generic term)
+texas leaguer|1
+(noun)|Texas leaguer|fly (generic term)|fly ball (generic term)
+texas longhorn|1
+(noun)|longhorn|Texas longhorn|beef (generic term)|beef cattle (generic term)
+texas millet|1
+(noun)|goose grass|Texas millet|Panicum Texanum|panic grass (generic term)
+texas purple spike|1
+(noun)|Texas purple spike|Hexalectris warnockii|orchid (generic term)|orchidaceous plant (generic term)
+texas ranger|1
+(noun)|Texas Ranger|Ranger|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+texas snowbell|1
+(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax (generic term)
+texas snowbells|1
+(noun)|Texas snowbell|Texas snowbells|Styrax texana|styrax (generic term)
+texas star|2
+(noun)|prairia Sabbatia|Texas star|Sabbatia campestris|sabbatia (generic term)
+(noun)|Texas star|Lindheimera texana|flower (generic term)
+texas storksbill|1
+(noun)|Texas storksbill|Erodium texanum|storksbill (generic term)|heron's bill (generic term)
+texas toad|1
+(noun)|Texas toad|Bufo speciosus|true toad (generic term)
+texas tortoise|1
+(noun)|Texas tortoise|tortoise (generic term)
+text|4
+(noun)|textual matter|matter (generic term)
+(noun)|passage (generic term)
+(noun)|textbook|text edition|schoolbook|school text|book (generic term)|trade edition (antonym)
+(noun)|matter (generic term)
+text-matching|1
+(noun)|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+text edition|1
+(noun)|textbook|text|schoolbook|school text|book (generic term)|trade edition (antonym)
+text editor|2
+(noun)|copy editor|copyreader|editor (generic term)|editor in chief (generic term)
+(noun)|editor program (generic term)|editor (generic term)
+text file|1
+(noun)|document|computer file (generic term)
+textbook|2
+(adj)|casebook|standard (similar term)
+(noun)|text|text edition|schoolbook|school text|book (generic term)|trade edition (antonym)
+textile|2
+(adj)|artifact|artefact (related term)
+(noun)|fabric|cloth|material|artifact (generic term)|artefact (generic term)
+textile machine|1
+(noun)|machine (generic term)
+textile mill|1
+(noun)|factory (generic term)|mill (generic term)|manufacturing plant (generic term)|manufactory (generic term)
+textile screw pine|1
+(noun)|lauhala|Pandanus tectorius|pandanus (generic term)|screw pine (generic term)
+textual|1
+(adj)|matter (related term)
+textual criticism|1
+(noun)|criticism (generic term)|literary criticism (generic term)
+textual matter|1
+(noun)|text|matter (generic term)
+texture|4
+(noun)|tactile property (generic term)|feel (generic term)
+(noun)|quality (generic term)|character (generic term)|lineament (generic term)
+(noun)|musicality (generic term)|musicalness (generic term)
+(noun)|visual property (generic term)
+textured|1
+(adj)|rough-textured|coarse-textured|rough (similar term)|unsmooth (similar term)
+th|2
+(noun)|Thursday|Th|weekday (generic term)
+(noun)|thorium|Th|atomic number 90|metallic element (generic term)|metal (generic term)
+thackeray|1
+(noun)|Thackeray|William Makepeace Thackeray|writer (generic term)|author (generic term)
+thaddaeus|1
+(noun)|Jude|Saint Jude|St. Jude|Judas|Thaddaeus|Apostle (generic term)|saint (generic term)
+thaddeus kosciusko|1
+(noun)|Kosciusko|Thaddeus Kosciusko|Kosciuszko|Tadeusz Andrzej Bonawentura Kosciuszko|patriot (generic term)|nationalist (generic term)|soldier (generic term)
+thai|5
+(adj)|Thai|Tai|Siamese|Asian|Asiatic (related term)
+(adj)|Thai|Tai|Siamese|Tai (related term)
+(adj)|Thai|Tai|Siamese|Asian country|Asian nation (related term)
+(noun)|Thai|Tai|Siamese|Asian (generic term)|Asiatic (generic term)
+(noun)|Thai|Siamese|Central Thai|Tai (generic term)
+thai monetary unit|1
+(noun)|Thai monetary unit|monetary unit (generic term)
+thailand|1
+(noun)|Thailand|Kingdom of Thailand|Siam|Asian country (generic term)|Asian nation (generic term)
+thalamostriate vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+thalamus|1
+(noun)|neural structure (generic term)
+thalarctos|1
+(noun)|Thalarctos|genus Thalarctos|mammal genus (generic term)
+thalarctos maritimus|1
+(noun)|ice bear|polar bear|Ursus Maritimus|Thalarctos maritimus|bear (generic term)
+thalassaemia|1
+(noun)|thalassemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia (generic term)|hypochromic anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+thalassaemia major|1
+(noun)|Cooley's anemia|Cooley's anaemia|thalassemia major|thalassemia (generic term)|thalassaemia (generic term)|Mediterranean anemia (generic term)|Mediterranean anaemia (generic term)
+thalassemia|1
+(noun)|thalassaemia|Mediterranean anemia|Mediterranean anaemia|hypochromic anemia (generic term)|hypochromic anaemia (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+thalassemia major|1
+(noun)|Cooley's anemia|Cooley's anaemia|thalassaemia major|thalassemia (generic term)|thalassaemia (generic term)|Mediterranean anemia (generic term)|Mediterranean anaemia (generic term)
+thalassic|1
+(adj)|body of water|water (related term)
+thalassoma|1
+(noun)|Thalassoma|genus Thalassoma|fish genus (generic term)
+thalassoma bifasciatum|1
+(noun)|bluehead|Thalassoma bifasciatum|wrasse (generic term)
+thales|1
+(noun)|Thales|Thales of Miletus|philosopher (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+thales of miletus|1
+(noun)|Thales|Thales of Miletus|philosopher (generic term)|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+thalia|2
+(noun)|Thalia|Muse (generic term)
+(noun)|Thalia|Grace (generic term)
+thaliacea|1
+(noun)|Thaliacea|class Thaliacea|class (generic term)
+thalictrum|1
+(noun)|Thalictrum|genus Thalictrum|magnoliid dicot genus (generic term)
+thalidomide|1
+(noun)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)|teratogen (generic term)
+thalidone|1
+(noun)|chlorthalidone|Hygroton|Thalidone|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+thallium|1
+(noun)|Tl|atomic number 81|metallic element (generic term)|metal (generic term)
+thalloid|1
+(adj)|plant part|plant structure (related term)
+thallophyta|1
+(noun)|Thallophyta|division (generic term)
+thallophyte|1
+(noun)|cryptogam (generic term)
+thallophytic|1
+(adj)|cryptogam (related term)
+thallus|1
+(noun)|plant part (generic term)|plant structure (generic term)
+thalmencephalon|1
+(noun)|diencephalon|interbrain|betweenbrain|neural structure (generic term)
+thalweg|2
+(noun)|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|contour (generic term)|contour line (generic term)
+thames|1
+(noun)|Thames|River Thames|Thames River|river (generic term)
+thames river|1
+(noun)|Thames|River Thames|Thames River|river (generic term)
+thammuz|1
+(noun)|Tammuz|Thammuz|Jewish calendar month (generic term)
+thamnophilus|1
+(noun)|Thamnophilus|genus Thamnophilus|bird genus (generic term)
+thamnophis|1
+(noun)|Thamnophis|genus Thamnophis|reptile genus (generic term)
+thamnophis proximus|1
+(noun)|Western ribbon snake|Thamnophis proximus|garter snake (generic term)|grass snake (generic term)
+thamnophis sauritus|1
+(noun)|ribbon snake|Thamnophis sauritus|garter snake (generic term)|grass snake (generic term)
+thamnophis sirtalis|1
+(noun)|common garter snake|Thamnophis sirtalis|garter snake (generic term)|grass snake (generic term)
+thanatology|1
+(noun)|science (generic term)|scientific discipline (generic term)
+thanatophobia|1
+(noun)|simple phobia (generic term)
+thanatopsis|1
+(noun)|essay (generic term)
+thanatos|2
+(noun)|Thanatos|Greek deity (generic term)
+(noun)|death instinct|death wish|Thanatos|urge (generic term)|impulse (generic term)
+thane|2
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|citizen (generic term)
+thaneship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+thank|1
+(verb)|give thanks|convey (generic term)|impart (generic term)
+thank offering|1
+(noun)|offering (generic term)
+thank you|1
+(noun)|thanks (generic term)
+thankful|1
+(adj)|grateful|appreciative (similar term)|glad (similar term)|ungrateful (antonym)
+thankfulness|1
+(noun)|gratefulness|appreciativeness|gratitude (generic term)
+thankless|2
+(adj)|ungrateful|unthankful|unappreciative (similar term)|grateful (antonym)
+(adj)|unappreciated|ungratifying|unrewarding (similar term)
+thankless wretch|1
+(noun)|ingrate|ungrateful person|unwelcome person (generic term)|persona non grata (generic term)
+thanks|2
+(noun)|acknowledgment (generic term)|acknowledgement (generic term)
+(noun)|aid (generic term)|assist (generic term)|assistance (generic term)|help (generic term)
+thanksgiving|2
+(noun)|Thanksgiving|Thanksgiving Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|feast day (generic term)|fete day (generic term)
+(noun)|grace|blessing|prayer (generic term)|petition (generic term)|orison (generic term)
+thanksgiving cactus|1
+(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus (generic term)
+thanksgiving day|1
+(noun)|Thanksgiving|Thanksgiving Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|feast day (generic term)|fete day (generic term)
+thar desert|1
+(noun)|Thar Desert|Great Indian Desert|desert (generic term)
+tharp|1
+(noun)|Tharp|Twyla Tharp|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+that is to say|1
+(adv)|namely|viz.|videlicet
+thatch|5
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|roofing material (generic term)
+(noun)|Teach|Edward Teach|Thatch|Edward Thatch|Blackbeard|pirate (generic term)|buccaneer (generic term)|sea robber (generic term)|sea rover (generic term)
+(noun)|thatched roof|roof (generic term)
+(verb)|roof (generic term)
+thatch palm|1
+(noun)|thatch tree|silver thatch|broom palm|Thrinax parviflora|fan palm (generic term)
+thatch tree|1
+(noun)|thatch palm|silver thatch|broom palm|Thrinax parviflora|fan palm (generic term)
+thatched roof|1
+(noun)|thatch|roof (generic term)
+thatcher|2
+(noun)|Thatcher|Margaret Thatcher|Margaret Hilda Thatcher|Baroness Thatcher of Kesteven|Iron Lady|stateswoman (generic term)
+(noun)|roofer (generic term)
+thatcherism|1
+(noun)|Thatcherism|policy (generic term)
+thatcherite|1
+(noun)|Thatcherite|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+thaumatolatry|1
+(noun)|miracle-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+thaumaturge|1
+(noun)|sorcerer|magician|wizard|necromancer|thaumaturgist|occultist (generic term)
+thaumaturgist|1
+(noun)|sorcerer|magician|wizard|necromancer|thaumaturge|occultist (generic term)
+thaumaturgy|2
+(noun)|magic|supernaturalism (generic term)
+(noun)|magic trick|conjuring trick|trick|magic|legerdemain|conjuration|illusion|deception|performance (generic term)
+thaw|4
+(noun)|melt|thawing|melting|heating (generic term)|warming (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(noun)|thawing|warming|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|relaxation (generic term)|loosening (generic term)|slackening (generic term)
+(verb)|dissolve|unfreeze|unthaw|dethaw|melt|liquefy (generic term)|flux (generic term)|liquify (generic term)
+thawed|2
+(adj)|melted (similar term)|liquid (similar term)|liquified (similar term)
+(adj)|unfrozen (similar term)
+thawing|2
+(noun)|thaw|melt|melting|heating (generic term)|warming (generic term)|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(noun)|thaw|warming|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+thb|1
+(noun)|Bachelor of Theology|ThB|bachelor's degree (generic term)|baccalaureate (generic term)
+thc|1
+(noun)|tetrahydrocannabinol|THC|psychoactive drug (generic term)|mind-altering drug (generic term)|consciousness-altering drug (generic term)|psychoactive substance (generic term)
+thd|1
+(noun)|Doctor of Theology|ThD|doctor's degree (generic term)|doctorate (generic term)
+the absurd|1
+(noun)|absurd|situation (generic term)|state of affairs (generic term)
+the admirable crichton|1
+(noun)|Crichton|James Crichton|The Admirable Crichton|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+the alps|1
+(noun)|Alps|the Alps|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+the boot|1
+(noun)|boot|iron boot|iron heel|instrument of torture (generic term)
+the brakes|1
+(noun)|brake system|brake (generic term)
+the city|2
+(noun)|City of London|the City|center (generic term)|centre (generic term)|middle (generic term)|heart (generic term)|eye (generic term)
+(noun)|the City|market (generic term)|securities industry (generic term)
+the devil|1
+(noun)|trouble (generic term)|difficulty (generic term)
+the flood|1
+(noun)|Noah's flood|Noachian deluge|Noah and the Flood|the Flood|flood (generic term)|inundation (generic term)|deluge (generic term)|alluvion (generic term)
+the gambia|1
+(noun)|Gambia|The Gambia|Republic of The Gambia|African country (generic term)|African nation (generic term)
+the great calamity|1
+(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine (generic term)
+the great charter|1
+(noun)|Magna Carta|Magna Charta|The Great Charter|royal charter (generic term)
+the great compromiser|1
+(noun)|Clay|Henry Clay|the Great Compromiser|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+the great hunger|1
+(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine (generic term)
+the great starvation|1
+(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine (generic term)
+the great unwashed|1
+(noun)|multitude|masses|mass|hoi polloi|people|group (generic term)|grouping (generic term)
+the hague|1
+(noun)|The Hague|'s Gravenhage|Den Haag|city (generic term)|metropolis (generic term)|urban center (generic term)
+the halt|1
+(noun)|disabled (generic term)|handicapped (generic term)
+the hill|1
+(noun)|Capitol Hill|the Hill|hill (generic term)
+the holy see|1
+(noun)|Holy See|The Holy See|State of the Vatican City|European country (generic term)|European nation (generic term)|see (generic term)
+the hots|1
+(noun)|sexual desire (generic term)|eros (generic term)|concupiscence (generic term)|physical attraction (generic term)
+the indies|1
+(noun)|West Indies|the Indies|archipelago (generic term)
+the irish famine|1
+(noun)|the Irish Famine|the Great Hunger|the Great Starvation|the Great Calamity|famine (generic term)
+the least bit|1
+(adv)|at all|in the least
+the like|1
+(noun)|like|the likes of|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+the likes of|1
+(noun)|like|the like|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)
+the nazarene|1
+(noun)|Jesus|Jesus of Nazareth|the Nazarene|Jesus Christ|Christ|Savior|Saviour|Good Shepherd|Redeemer|Deliverer|Son (generic term)|Word (generic term)|Logos (generic term)|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)|prophet (generic term)
+the netherlands|1
+(noun)|Netherlands|The Netherlands|Kingdom of The Netherlands|Nederland|Holland|European country (generic term)|European nation (generic term)
+the other way around|1
+(adv)|vice versa|contrariwise
+the pamirs|1
+(noun)|Pamir Mountains|the Pamirs|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+the pits|1
+(noun)|hell|hell on earth|hellhole|snake pit|inferno|region (generic term)|part (generic term)
+the right way|1
+(adv)|properly|decently|decent|in good order|right|improperly (antonym)
+the shits|1
+(noun)|the trots|diarrhea (generic term)|diarrhoea (generic term)|looseness of the bowels (generic term)|looseness (generic term)
+the skinny|1
+(noun)|dope|poop|low-down|details (generic term)|inside information (generic term)
+the star-spangled banner|1
+(noun)|The Star-Spangled Banner|national anthem (generic term)
+the states|1
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+the street|1
+(noun)|Wall Street|the Street|market (generic term)|securities industry (generic term)
+the tempter|1
+(noun)|Satan|Old Nick|Devil|Lucifer|Beelzebub|the Tempter|Prince of Darkness|spiritual being (generic term)|supernatural being (generic term)
+the trots|1
+(noun)|the shits|diarrhea (generic term)|diarrhoea (generic term)|looseness of the bowels (generic term)|looseness (generic term)
+the true|1
+(noun)|truth|verity|trueness|actuality (generic term)|falsity (antonym)
+the venerable bede|1
+(noun)|Bede|Saint Bede|St. Bede|Baeda|Saint Baeda|St. Baeda|Beda|Saint Beda|St. Beda|the Venerable Bede|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)|historian (generic term)|historiographer (generic term)
+the virgin|1
+(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess (generic term)|mother (generic term)|female parent (generic term)
+the way of the world|1
+(noun)|the ways of the world|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+the ways of the world|1
+(noun)|the way of the world|behavior (generic term)|behaviour (generic term)|conduct (generic term)|doings (generic term)
+the whole way|1
+(adv)|all the way
+thea|1
+(noun)|Thea|Theia|Titaness (generic term)
+theaceae|1
+(noun)|Theaceae|family Theaceae|tea family|dilleniid dicot family (generic term)
+theanthropism|2
+(noun)|theological doctrine (generic term)
+(noun)|anthropomorphism|representational process (generic term)
+theater|3
+(noun)|theatre|house|building (generic term)|edifice (generic term)
+(noun)|dramaturgy|dramatic art|dramatics|theatre|communication (generic term)|communicating (generic term)
+(noun)|field|field of operations|theater of operations|theatre|theatre of operations|region (generic term)
+theater company|1
+(noun)|company (generic term)|troupe (generic term)
+theater critic|1
+(noun)|drama critic|critic (generic term)
+theater curtain|1
+(noun)|theatre curtain|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+theater director|1
+(noun)|director|theatre director|supervisor (generic term)
+theater in the round|1
+(noun)|arena theater|theater (generic term)|theatre (generic term)|house (generic term)
+theater light|1
+(noun)|light (generic term)|light source (generic term)
+theater of operations|1
+(noun)|field|field of operations|theater|theatre|theatre of operations|region (generic term)
+theater of the absurd|1
+(noun)|play (generic term)|drama (generic term)|dramatic play (generic term)
+theater of war|1
+(noun)|theatre of war|region (generic term)
+theater prompter|1
+(noun)|prompter|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+theater stage|1
+(noun)|theatre stage|stage (generic term)
+theater ticket|1
+(noun)|theatre ticket|ticket (generic term)
+theatergoer|1
+(noun)|playgoer|theatregoer|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+theatre|3
+(noun)|theater|house|building (generic term)|edifice (generic term)
+(noun)|dramaturgy|dramatic art|dramatics|theater|communication (generic term)|communicating (generic term)
+(noun)|field|field of operations|theater|theater of operations|theatre of operations|region (generic term)
+theatre curtain|1
+(noun)|theater curtain|curtain (generic term)|drape (generic term)|drapery (generic term)|mantle (generic term)|pall (generic term)
+theatre director|1
+(noun)|director|theater director|supervisor (generic term)
+theatre of operations|1
+(noun)|field|field of operations|theater|theater of operations|theatre|region (generic term)
+theatre of war|1
+(noun)|theater of war|region (generic term)
+theatre stage|1
+(noun)|theater stage|stage (generic term)
+theatre ticket|1
+(noun)|theater ticket|ticket (generic term)
+theatregoer|1
+(noun)|playgoer|theatergoer|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+theatrical|3
+(adj)|communication|communicating (related term)
+(adj)|histrionic (similar term)|melodramatic (similar term)|showy (similar term)|stagy (similar term)|stagey (similar term)|untheatrical (antonym)
+(noun)|theatrical performance|representation|histrionics|performance (generic term)|public presentation (generic term)
+theatrical agent|1
+(noun)|actor's agent|business agent (generic term)
+theatrical performance|1
+(noun)|theatrical|representation|histrionics|performance (generic term)|public presentation (generic term)
+theatrical poster|1
+(noun)|show bill|show card|poster (generic term)|posting (generic term)|placard (generic term)|notice (generic term)|bill (generic term)|card (generic term)
+theatrical producer|1
+(noun)|producer (generic term)
+theatrical production|1
+(noun)|staging|production (generic term)
+theatrical role|1
+(noun)|character|role|part|persona|portrayal (generic term)|characterization (generic term)|enactment (generic term)|personation (generic term)
+theatrical season|1
+(noun)|season (generic term)
+theatricality|1
+(noun)|staginess|artificiality (generic term)
+theatrically|1
+(adv)|stagily
+theban|3
+(adj)|Theban|city|metropolis|urban center (related term)
+(noun)|Theban|Egyptian (generic term)
+(noun)|Theban|Greek (generic term)|Hellene (generic term)
+thebe|1
+(noun)|Botswana monetary unit (generic term)
+thebes|1
+(noun)|Thebes|city (generic term)|metropolis (generic term)|urban center (generic term)
+theca|2
+(noun)|sac|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|sheath (generic term)|case (generic term)
+thecodont|1
+(noun)|thecodont reptile|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+thecodont reptile|1
+(noun)|thecodont|archosaur (generic term)|archosaurian (generic term)|archosaurian reptile (generic term)
+thecodontia|1
+(noun)|Thecodontia|order Thecodontia|animal order (generic term)
+theelin|1
+(noun)|estrone|oestrone|Estronol|estrogen (generic term)|oestrogen (generic term)|ketosteroid (generic term)
+theft|1
+(noun)|larceny|thievery|thieving|stealing|felony (generic term)
+theia|1
+(noun)|Thea|Theia|Titaness (generic term)
+theism|1
+(noun)|religion (generic term)|faith (generic term)|religious belief (generic term)|atheism (antonym)
+theist|2
+(adj)|theistical|theistic|religion|faith|religious belief (related term)
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+theistic|1
+(adj)|theist|theistical|religion|faith|religious belief (related term)
+theistical|1
+(adj)|theist|theistic|religion|faith|religious belief (related term)
+thelarche|1
+(noun)|start (generic term)
+thelephoraceae|1
+(noun)|Thelephoraceae|family Thelephoraceae|fungus family (generic term)
+thelonious monk|1
+(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician (generic term)|jazzman (generic term)
+thelonious sphere monk|1
+(noun)|Monk|Thelonious Monk|Thelonious Sphere Monk|jazz musician (generic term)|jazzman (generic term)
+thelypteridaceae|1
+(noun)|Thelypteridaceae|family Thelypteridaceae|fern family (generic term)
+thelypteris|1
+(noun)|Thelypteris|genus Thelypteris|fern genus (generic term)
+thelypteris dryopteris|1
+(noun)|oak fern|Gymnocarpium dryopteris|Thelypteris dryopteris|fern (generic term)
+thelypteris hexagonoptera|1
+(noun)|broad beech fern|southern beech fern|Phegopteris hexagonoptera|Dryopteris hexagonoptera|Thelypteris hexagonoptera|beech fern (generic term)
+thelypteris palustris|1
+(noun)|marsh fern|Thelypteris palustris|Dryopteris thelypteris|fern (generic term)
+thelypteris palustris pubescens|1
+(noun)|snuffbox fern|meadow fern|Thelypteris palustris pubescens|Dryopteris thelypteris pubescens|marsh fern (generic term)|Thelypteris palustris (generic term)|Dryopteris thelypteris (generic term)
+thelypteris phegopteris|1
+(noun)|long beech fern|narrow beech fern|northern beech fern|Phegopteris connectilis|Dryopteris phegopteris|Thelypteris phegopteris|beech fern (generic term)
+thelypteris simulata|1
+(noun)|Massachusetts fern|Parathelypteris simulata|Thelypteris simulata|fern (generic term)
+thematic|2
+(adj)|message|content|subject matter|substance (related term)
+(adj)|tune|melody|air|strain|melodic line|line|melodic phrase (related term)|unthematic (antonym)
+thematic apperception test|1
+(noun)|Thematic Apperception Test|TAT|projective test (generic term)|projective device (generic term)|projective technique (generic term)
+thematic vowel|1
+(noun)|stem vowel|vowel (generic term)|vowel sound (generic term)
+theme|6
+(noun)|subject|topic|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|motif|idea (generic term)|thought (generic term)
+(noun)|melodic theme|musical theme|idea|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(noun)|composition|paper|report|essay (generic term)
+(noun)|root|root word|base|stem|radical|form (generic term)|word form (generic term)|signifier (generic term)|descriptor (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+theme park|1
+(noun)|amusement park (generic term)|funfair (generic term)|pleasure ground (generic term)
+theme song|2
+(noun)|signature|signature tune|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(noun)|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+themis|1
+(noun)|Themis|Titaness (generic term)
+themistocles|1
+(noun)|Themistocles|statesman (generic term)|solon (generic term)|national leader (generic term)
+then|3
+(adj)|past (similar term)
+(noun)|point (generic term)|point in time (generic term)
+(adv)|so|and so|and then
+then again|1
+(adv)|on the other hand|but then|on the one hand (antonym)
+thenal|1
+(adj)|thenar|area|region (related term)
+thenar|3
+(adj)|thenal|area|region (related term)
+(noun)|area (generic term)|region (generic term)
+(noun)|palm|area (generic term)|region (generic term)
+thence|3
+(adv)|therefrom
+(adv)|therefrom|thereof
+(adv)|therefore|hence|thus
+thenceforth|1
+(adv)|thereafter
+theobid|1
+(noun)|theophylline|Elixophyllin|Slo-Bid|Theobid|bronchodilator (generic term)
+theobroma|1
+(noun)|Theobroma|genus Theobroma|dilleniid dicot genus (generic term)
+theobroma cacao|1
+(noun)|cacao|cacao tree|chocolate tree|Theobroma cacao|angiospermous tree (generic term)|flowering tree (generic term)
+theocracy|2
+(noun)|political system (generic term)|form of government (generic term)
+(noun)|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+theocratic|1
+(adj)|political system|form of government (related term)
+theodicy|1
+(noun)|theology (generic term)|divinity (generic term)
+theodolite|1
+(noun)|transit|surveying instrument (generic term)|surveyor's instrument (generic term)
+theodor mommsen|1
+(noun)|Mommsen|Theodor Mommsen|historian (generic term)|historiographer (generic term)
+theodor schwann|1
+(noun)|Schwann|Theodor Schwann|physiologist (generic term)|histologist (generic term)
+theodor seuss geisel|1
+(noun)|Geisel|Theodor Seuss Geisel|Dr. Seuss|writer (generic term)|author (generic term)
+theodore dreiser|1
+(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer (generic term)|author (generic term)
+theodore dwight weld|1
+(noun)|Weld|Theodore Dwight Weld|abolitionist (generic term)|emancipationist (generic term)
+theodore francis powys|1
+(noun)|Powys|Theodore Francis Powys|writer (generic term)|author (generic term)
+theodore harold white|1
+(noun)|White|T. H. White|Theodore Harold White|journalist (generic term)
+theodore herman albert dreiser|1
+(noun)|Dreiser|Theodore Dreiser|Theodore Herman Albert Dreiser|writer (generic term)|author (generic term)
+theodore roosevelt|1
+(noun)|Roosevelt|Theodore Roosevelt|President Roosevelt|President Theodore Roosevelt|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+theodore roosevelt memorial national park|1
+(noun)|Theodore Roosevelt Memorial National Park|national park (generic term)
+theodore samuel williams|1
+(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer (generic term)|baseball player (generic term)
+theodosius|1
+(noun)|Theodosius|Theodosius I|Theodosius the Great|Flavius Theodosius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+theodosius i|1
+(noun)|Theodosius|Theodosius I|Theodosius the Great|Flavius Theodosius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+theodosius the great|1
+(noun)|Theodosius|Theodosius I|Theodosius the Great|Flavius Theodosius|Roman Emperor (generic term)|Emperor of Rome (generic term)
+theogony|1
+(noun)|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+theologian|1
+(noun)|theologist|theologizer|theologiser|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+theological|1
+(adj)|system|system of rules (related term)
+theological doctrine|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+theological system|1
+(noun)|theology|system (generic term)|system of rules (generic term)
+theological virtue|1
+(noun)|supernatural virtue|cardinal virtue (generic term)
+theologise|2
+(verb)|theologize|cover (generic term)|treat (generic term)|handle (generic term)|plow (generic term)|deal (generic term)|address (generic term)
+(verb)|theologize|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+theologiser|1
+(noun)|theologian|theologist|theologizer|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+theologist|1
+(noun)|theologian|theologizer|theologiser|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+theologize|2
+(verb)|theologise|cover (generic term)|treat (generic term)|handle (generic term)|plow (generic term)|deal (generic term)|address (generic term)
+(verb)|theologise|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+theologizer|1
+(noun)|theologian|theologist|theologiser|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+theology|3
+(noun)|divinity|discipline (generic term)|subject (generic term)|subject area (generic term)|subject field (generic term)|field (generic term)|field of study (generic term)|study (generic term)|bailiwick (generic term)|branch of knowledge (generic term)
+(noun)|theological system|system (generic term)|system of rules (generic term)
+(noun)|learned profession (generic term)
+theophany|1
+(noun)|manifestation (generic term)
+theophrastaceae|1
+(noun)|Theophrastaceae|family Theophrastaceae|dicot family (generic term)|magnoliopsid family (generic term)
+theophrastus|1
+(noun)|Theophrastus|philosopher (generic term)
+theophrastus philippus aureolus bombastus von hohenheim|1
+(noun)|Paracelsus|Philippus Aureolus Paracelsus|Theophrastus Philippus Aureolus Bombastus von Hohenheim|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+theophylline|1
+(noun)|Elixophyllin|Slo-Bid|Theobid|bronchodilator (generic term)
+theorem|2
+(noun)|proposition (generic term)
+(noun)|idea (generic term)|thought (generic term)
+theoretic|1
+(adj)|theoretical|abstractive (similar term)|a priori (similar term)|conjectural (similar term)|divinatory (similar term)|hypothetical (similar term)|hypothetic (similar term)|supposed (similar term)|suppositional (similar term)|suppositious (similar term)|supposititious (similar term)|notional (similar term)|speculative (similar term)|metaphysical (similar term)|theory-based (similar term)|empirical (antonym)
+theoretical|2
+(adj)|theoretic|abstractive (similar term)|a priori (similar term)|conjectural (similar term)|divinatory (similar term)|hypothetical (similar term)|hypothetic (similar term)|supposed (similar term)|suppositional (similar term)|suppositious (similar term)|supposititious (similar term)|notional (similar term)|speculative (similar term)|metaphysical (similar term)|theory-based (similar term)|empirical (antonym)
+(adj)|abstract (similar term)|academic (similar term)|pure (similar term)|applied (antonym)
+theoretical account|1
+(noun)|model|framework|hypothesis (generic term)|possibility (generic term)|theory (generic term)
+theoretically|2
+(adv)|on paper|in theory
+(adv)|empirically (antonym)
+theoretician|1
+(noun)|theorist|theorizer|theoriser|idealogue|intellectual (generic term)|intellect (generic term)
+theorisation|1
+(noun)|theorization|conjecture (generic term)
+theorise|1
+(verb)|speculate|theorize|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+theoriser|1
+(noun)|theorist|theoretician|theorizer|idealogue|intellectual (generic term)|intellect (generic term)
+theorist|1
+(noun)|theoretician|theorizer|theoriser|idealogue|intellectual (generic term)|intellect (generic term)
+theorization|1
+(noun)|theorisation|conjecture (generic term)
+theorize|2
+(verb)|speculate|theorise|conjecture|hypothesize|hypothesise|hypothecate|suppose|expect (generic term)|anticipate (generic term)
+(verb)|reason (generic term)
+theorizer|1
+(noun)|theorist|theoretician|theoriser|idealogue|intellectual (generic term)|intellect (generic term)
+theory|3
+(noun)|explanation (generic term)
+(noun)|hypothesis|possibility|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|belief (generic term)
+theory-based|1
+(adj)|theoretical (similar term)|theoretic (similar term)
+theory of dissociation|1
+(noun)|theory of electrolytic dissociation|Arrhenius theory of dissociation|scientific theory (generic term)
+theory of electrolytic dissociation|1
+(noun)|theory of dissociation|Arrhenius theory of dissociation|scientific theory (generic term)
+theory of evolution|1
+(noun)|theory of organic evolution|evolutionism|scientific theory (generic term)
+theory of games|1
+(noun)|game theory|scientific theory (generic term)
+theory of gravitation|1
+(noun)|theory of gravity|gravitational theory|Newton's theory of gravitation|scientific theory (generic term)
+theory of gravity|1
+(noun)|theory of gravitation|gravitational theory|Newton's theory of gravitation|scientific theory (generic term)
+theory of indicators|1
+(noun)|Ostwald's theory of indicators|scientific theory (generic term)
+theory of inheritance|1
+(noun)|scientific theory (generic term)
+theory of organic evolution|1
+(noun)|theory of evolution|evolutionism|scientific theory (generic term)
+theory of preformation|1
+(noun)|preformation|theory (generic term)
+theory of punctuated equilibrium|1
+(noun)|punctuated equilibrium|theory of evolution (generic term)|theory of organic evolution (generic term)|evolutionism (generic term)
+theory of relativity|1
+(noun)|relativity|relativity theory|Einstein's theory of relativity|scientific theory (generic term)
+theosophical|1
+(adj)|system|system of rules (related term)
+theosophism|1
+(noun)|belief (generic term)
+theosophist|1
+(noun)|believer (generic term)|worshiper (generic term)|worshipper (generic term)
+theosophy|1
+(noun)|system (generic term)|system of rules (generic term)
+theoterrorism|1
+(noun)|terrorism (generic term)|act of terrorism (generic term)|terrorist act (generic term)
+therapeutic|3
+(adj)|curative|healing|alterative|remedial|sanative|healthful (similar term)
+(adj)|therapeutical|medical care|medical aid (related term)
+(noun)|remedy|curative|cure|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+therapeutic abortion|1
+(noun)|induced abortion (generic term)
+therapeutic cloning|1
+(noun)|biomedical cloning|somatic cell nuclear transplantation (generic term)|somatic cell nuclear transfer (generic term)|SCNT (generic term)|nuclear transplantation (generic term)|cloning (generic term)
+therapeutic rehabilitation|1
+(noun)|physical rehabilitation|physical restoration|rehabilitation (generic term)
+therapeutical|1
+(adj)|therapeutic|medical care|medical aid (related term)
+therapeutics|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+theraphosidae|1
+(noun)|Theraphosidae|family Theraphosidae|arthropod family (generic term)
+therapist|1
+(noun)|healer|expert (generic term)
+therapsid|1
+(noun)|protomammal|synapsid (generic term)|synapsid reptile (generic term)
+therapsida|1
+(noun)|Therapsida|order Therapsida|animal order (generic term)
+therapy|1
+(noun)|medical care (generic term)|medical aid (generic term)
+theravada|1
+(noun)|Theravada|Theravada Buddhism|Buddhism (generic term)
+theravada buddhism|1
+(noun)|Theravada|Theravada Buddhism|Buddhism (generic term)
+there|4
+(noun)|location (generic term)|here (antonym)
+(adv)|at that place|in that location|here (antonym)
+(adv)|in that respect|on that point
+(adv)|thither|here (antonym)
+thereabout|1
+(adv)|thereabouts
+thereabouts|1
+(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 (generic term)
+(noun)|presence (generic term)|hereness (antonym)
+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 (generic term)|missionary (generic term)|missioner (generic term)
+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 (generic term)
+theridiidae|1
+(noun)|Theridiidae|family Theridiidae|arthropod family (generic term)
+therm|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+thermal|4
+(adj)|thermic|caloric|energy (related term)|nonthermal (antonym)
+(adj)|spring|fountain|outflow|outpouring|natural spring (related term)
+(adj)|hot (similar term)
+(noun)|wind (generic term)|air current (generic term)|current of air (generic term)
+thermal barrier|1
+(noun)|heat barrier|limit (generic term)|bound (generic term)|boundary (generic term)
+thermal emission|1
+(noun)|thermionic emission|emission (generic term)
+thermal equilibrium|1
+(noun)|equilibrium (generic term)
+thermal pollution|1
+(noun)|pollution (generic term)
+thermal printer|1
+(noun)|printer (generic term)|printing machine (generic term)
+thermal reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)|fast reactor (antonym)
+thermal resistor|1
+(noun)|thermistor|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+thermal spring|1
+(noun)|hot spring|spring (generic term)|fountain (generic term)|outflow (generic term)|outpouring (generic term)|natural spring (generic term)
+thermalgesia|1
+(noun)|pain (generic term)|hurting (generic term)
+thermel|1
+(noun)|thermoelectric thermometer|electric thermometer|thermometer (generic term)
+thermic|1
+(adj)|thermal|caloric|energy (related term)|nonthermal (antonym)
+thermic fever|1
+(noun)|sunstroke|insolation|siriasis|heatstroke (generic term)|heat hyperpyrexia (generic term)
+thermidor|1
+(noun)|Thermidor|Revolutionary calendar month (generic term)
+thermion|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+thermionic|1
+(adj)|particle|subatomic particle (related term)
+thermionic current|1
+(noun)|current (generic term)|electric current (generic term)
+thermionic emission|1
+(noun)|thermal emission|emission (generic term)
+thermionic tube|1
+(noun)|tube|vacuum tube|thermionic vacuum tube|electron tube|thermionic valve|electronic device (generic term)
+thermionic vacuum tube|1
+(noun)|tube|vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device (generic term)
+thermionic valve|1
+(noun)|tube|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|electronic device (generic term)
+thermionics|1
+(noun)|electronics (generic term)
+thermistor|1
+(noun)|thermal resistor|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+thermoacidophile|1
+(noun)|archaebacteria (generic term)|archaebacterium (generic term)|archaeobacteria (generic term)|archeobacteria (generic term)
+thermobaric bomb|1
+(noun)|fuel-air bomb|vacuum bomb|volume-detonation bomb|aerosol bomb|bomb (generic term)|fuel-air explosive (generic term)|FAE (generic term)
+thermobia|1
+(noun)|Thermobia|genus Thermobia|arthropod genus (generic term)
+thermobia domestica|1
+(noun)|firebrat|Thermobia domestica|bristletail (generic term)
+thermocautery|1
+(noun)|cautery (generic term)|cauterization (generic term)|cauterisation (generic term)
+thermochemistry|1
+(noun)|chemistry (generic term)|chemical science (generic term)
+thermocoagulation|1
+(noun)|curdling (generic term)|clotting (generic term)|coagulation (generic term)
+thermocouple|1
+(noun)|thermocouple junction|thermometer (generic term)
+thermocouple junction|1
+(noun)|thermocouple|thermometer (generic term)
+thermodynamic|1
+(adj)|thermodynamical|physics|physical science|natural philosophy (related term)
+thermodynamical|1
+(adj)|thermodynamic|physics|physical science|natural philosophy (related term)
+thermodynamics|1
+(noun)|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+thermodynamics of equilibrium|1
+(noun)|thermostatics|thermodynamics (generic term)
+thermoelectric|1
+(adj)|thermoelectrical|electricity (related term)
+thermoelectric thermometer|1
+(noun)|thermel|electric thermometer|thermometer (generic term)
+thermoelectrical|1
+(adj)|thermoelectric|electricity (related term)
+thermoelectricity|1
+(noun)|electricity (generic term)
+thermogram|1
+(noun)|graph (generic term)|graphical record (generic term)
+thermograph|2
+(noun)|medical instrument (generic term)
+(noun)|thermometrograph|thermometer (generic term)
+thermography|1
+(noun)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+thermogravimeter|1
+(noun)|thermohydrometer|hydrometer (generic term)|gravimeter (generic term)
+thermogravimetric|1
+(adj)|thermohydrometric
+thermogravimetry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)|chemical analysis (generic term)|qualitative analysis (generic term)
+thermohydrometer|1
+(noun)|thermogravimeter|hydrometer (generic term)|gravimeter (generic term)
+thermohydrometric|1
+(adj)|thermogravimetric
+thermojunction|1
+(noun)|junction (generic term)|conjunction (generic term)
+thermolabile|1
+(adj)|reactive (similar term)
+thermometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+thermometric|1
+(adj)|measurement|measuring|measure|mensuration (related term)
+thermometrograph|1
+(noun)|thermograph|thermometer (generic term)
+thermometry|1
+(noun)|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+thermonuclear|1
+(adj)|nuclear (similar term)|atomic (similar term)
+thermonuclear bomb|1
+(noun)|hydrogen bomb|H-bomb|fusion bomb|nuclear weapon (generic term)|bomb (generic term)
+thermonuclear reaction|1
+(noun)|fusion (generic term)|nuclear fusion (generic term)|nuclear fusion reaction (generic term)
+thermonuclear reactor|1
+(noun)|fusion reactor|nuclear reactor (generic term)|reactor (generic term)
+thermonuclear warhead|1
+(noun)|atomic warhead|nuclear warhead|nuke|warhead (generic term)|payload (generic term)|load (generic term)
+thermopile|1
+(noun)|thermometer (generic term)
+thermoplastic|2
+(adj)|thermosetting (antonym)
+(noun)|thermoplastic resin|plastic (generic term)
+thermoplastic resin|1
+(noun)|thermoplastic|plastic (generic term)
+thermopsis|1
+(noun)|Thermopsis|genus Thermopsis|rosid dicot genus (generic term)
+thermopsis macrophylla|1
+(noun)|false lupine|golden pea|yellow pea|Thermopsis macrophylla|bush pea (generic term)
+thermopsis villosa|1
+(noun)|Carolina lupine|Thermopsis villosa|bush pea (generic term)
+thermopylae|1
+(noun)|Thermopylae|battle of Thermopylae|pitched battle (generic term)
+thermoreceptor|1
+(noun)|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+thermoregulator|1
+(noun)|thermostat|regulator (generic term)
+thermos|1
+(noun)|thermos bottle|thermos flask|vacuum flask (generic term)|vacuum bottle (generic term)
+thermos bottle|1
+(noun)|thermos|thermos flask|vacuum flask (generic term)|vacuum bottle (generic term)
+thermos flask|1
+(noun)|thermos|thermos bottle|vacuum flask (generic term)|vacuum bottle (generic term)
+thermoset|1
+(adj)|thermosetting|thermoplastic (antonym)
+thermosetting|1
+(adj)|thermoset|thermoplastic (antonym)
+thermosetting compositions|1
+(noun)|thermosetting resin|plastic (generic term)
+thermosetting resin|1
+(noun)|thermosetting compositions|plastic (generic term)
+thermosphere|1
+(noun)|layer (generic term)
+thermostat|2
+(noun)|thermoregulator|regulator (generic term)
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+thermostated|1
+(adj)|regulated (similar term)
+thermostatic|1
+(adj)|regulator (related term)
+thermostatics|1
+(noun)|thermodynamics of equilibrium|thermodynamics (generic term)
+thermotherapy|1
+(noun)|therapy (generic term)
+thermotropism|1
+(noun)|tropism (generic term)
+theropod|1
+(noun)|theropod dinosaur|bird-footed dinosaur|saurischian (generic term)|saurischian dinosaur (generic term)
+theropod dinosaur|1
+(noun)|theropod|bird-footed dinosaur|saurischian (generic term)|saurischian dinosaur (generic term)
+theropoda|1
+(noun)|Theropoda|suborder Theropoda|animal order (generic term)
+thesaurus|1
+(noun)|synonym finder|wordbook (generic term)
+theseus|1
+(noun)|Theseus|mythical being (generic term)
+thesis|2
+(noun)|premise (generic term)|premiss (generic term)|assumption (generic term)
+(noun)|dissertation|treatise (generic term)
+thespesia|1
+(noun)|Thespesia|genus Thespesia|dilleniid dicot genus (generic term)
+thespesia populnea|1
+(noun)|portia tree|bendy tree|seaside mahoe|Thespesia populnea|tulipwood tree (generic term)
+thespian|2
+(adj)|dramatic composition|dramatic work (related term)
+(noun)|actor|histrion|player|role player|performer (generic term)|performing artist (generic term)
+thespis|1
+(noun)|Thespis|poet (generic term)
+thessalia|1
+(noun)|Thessalia|Thessaly|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+thessalian|1
+(noun)|Thessalian|Greek (generic term)|Hellene (generic term)
+thessalonian|1
+(noun)|Thessalonian|Greek (generic term)|Hellene (generic term)
+thessalonica|1
+(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+thessaloniki|1
+(noun)|Thessaloniki|Salonika|Salonica|Thessalonica|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+thessaly|1
+(noun)|Thessalia|Thessaly|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+theta|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+theta rhythm|1
+(noun)|theta wave|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+theta wave|1
+(noun)|theta rhythm|brainwave (generic term)|brain wave (generic term)|cortical potential (generic term)
+thetis|1
+(noun)|Thetis|Nereid (generic term)
+theurgy|2
+(noun)|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+(noun)|white magic (generic term)
+thevetia|1
+(noun)|Thevetia|genus Thevetia|dicot genus (generic term)|magnoliopsid genus (generic term)
+thevetia neriifolia|1
+(noun)|yellow oleander|Thevetia peruviana|Thevetia neriifolia|shrub (generic term)|bush (generic term)
+thevetia peruviana|1
+(noun)|yellow oleander|Thevetia peruviana|Thevetia neriifolia|shrub (generic term)|bush (generic term)
+thiabendazole|1
+(noun)|antifungal (generic term)|antifungal agent (generic term)|fungicide (generic term)|antimycotic (generic term)|antimycotic agent (generic term)|vermifuge (generic term)|anthelmintic (generic term)|anthelminthic (generic term)|helminthic (generic term)
+thiamin|1
+(noun)|vitamin B1|thiamine|aneurin|antiberiberi factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+thiamine|1
+(noun)|vitamin B1|thiamin|aneurin|antiberiberi factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+thiamine pyrophosphate|1
+(noun)|cocarboxylase|coenzyme (generic term)
+thiazide|1
+(noun)|diuretic drug (generic term)|diuretic (generic term)|water pill (generic term)
+thiazine|1
+(noun)|organic compound (generic term)
+thibet|1
+(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country (generic term)|Asian nation (generic term)
+thick|13
+(adj)|deep (similar term)|deep-chested (similar term)|fat (similar term)|four-ply (similar term)|heavy (similar term)|heavy (similar term)|quilted (similar term)|thickened (similar term)|three-ply (similar term)|two-ply (similar term)|fat (related term)|wide (related term)|broad (related term)|thin (antonym)
+(adj)|compact|dense|concentrated (similar term)
+(adj)|clogged (similar term)|clotted (similar term)|coagulable (similar term)|coagulate (similar term)|coagulated (similar term)|curdled (similar term)|grumous (similar term)|grumose (similar term)|creamy (similar term)|dense (similar term)|heavy (similar term)|impenetrable (similar term)|gelatinous (similar term)|gelatinlike (similar term)|jellylike (similar term)|ropy (similar term)|ropey (similar term)|stringy (similar term)|thready (similar term)|soupy (similar term)|syrupy (similar term)|viscous (similar term)|thickened (similar term)|thin (antonym)
+(adj)|slurred|unintelligible (similar term)
+(adj)|dense|impenetrable (similar term)
+(adj)|deep|intense (similar term)
+(adj)|compact|heavyset|stocky|thickset|fat (similar term)
+(adj)|chummy|buddy-buddy|close (similar term)
+(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thickheaded|thick-skulled|wooden-headed|stupid (similar term)
+(adj)|abundant (similar term)
+(noun)|midst|inside (generic term)|interior (generic term)
+(adv)|thickly|thinly (antonym)
+(adv)|thickly
+thick-billed|1
+(adj)|beaked (similar term)
+thick-billed murre|1
+(noun)|Uria lomvia|murre (generic term)
+thick-bodied|1
+(adj)|bodied (similar term)
+thick-branched|1
+(adj)|branchy (similar term)
+thick-footed morel|1
+(noun)|Morchella crassipes|morel (generic term)
+thick-haired|1
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+thick-knee|1
+(noun)|stone curlew|Burhinus oedicnemus|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+thick-lipped|1
+(adj)|lipped (similar term)
+thick-skinned|1
+(adj)|tough-skinned|insensitive (similar term)
+thick-skulled|1
+(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thickheaded|wooden-headed|stupid (similar term)
+thick-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+thick skin|1
+(noun)|skin (generic term)|tegument (generic term)|cutis (generic term)
+thicken|3
+(verb)|inspissate|change (generic term)|alter (generic term)|modify (generic term)|thin (antonym)
+(verb)|inspissate|change state (generic term)|turn (generic term)|thin (antonym)
+(verb)|inspissate|change integrity (generic term)
+thickened|2
+(adj)|calloused|callous|tough (similar term)|toughened (similar term)
+(adj)|thick (similar term)
+thickener|1
+(noun)|thickening|material (generic term)|stuff (generic term)
+thickening|5
+(adj)|deepening|intensifying (similar term)
+(adj)|complex (similar term)
+(noun)|thickener|material (generic term)|stuff (generic term)
+(noun)|node|knob|convex shape (generic term)|convexity (generic term)
+(noun)|inspissation|condensing (generic term)|condensation (generic term)
+thicket|1
+(noun)|brush|brushwood|coppice|copse|vegetation (generic term)|flora (generic term)|botany (generic term)
+thicket-forming|1
+(adj)|wooded (similar term)
+thickhead|1
+(noun)|whistler|Old World flycatcher (generic term)|true flycatcher (generic term)|flycatcher (generic term)
+thickheaded|1
+(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thick-skulled|wooden-headed|stupid (similar term)
+thickly|4
+(adv)|densely|thinly (antonym)
+(adv)|thick|thinly (antonym)
+(adv)|thinly (antonym)
+(adv)|thick
+thickly settled|1
+(adj)|populous|inhabited (similar term)
+thickness|4
+(noun)|dimension (generic term)|thinness (antonym)
+(noun)|articulation (generic term)
+(noun)|heaviness|wideness (generic term)|broadness (generic term)
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|thinness (antonym)
+thickset|2
+(adj)|compact|heavyset|stocky|thick|fat (similar term)
+(adj)|concentrated (similar term)
+thickspread|1
+(adj)|covered (similar term)
+thief|1
+(noun)|stealer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+thielavia|1
+(noun)|Thielavia|genus Thielavia|fungus genus (generic term)
+thielavia basicola|1
+(noun)|brown root rot fungus|Thielavia basicola|fungus (generic term)
+thieve|1
+(verb)|hook|snitch|cop|knock off|glom|steal (generic term)
+thievery|1
+(noun)|larceny|theft|thieving|stealing|felony (generic term)
+thieving|2
+(adj)|thievish|dishonest (similar term)|dishonorable (similar term)
+(noun)|larceny|theft|thievery|stealing|felony (generic term)
+thievish|1
+(adj)|thieving|dishonest (similar term)|dishonorable (similar term)
+thievishness|1
+(noun)|larcenous|dishonesty (generic term)
+thigh|2
+(noun)|limb (generic term)
+(noun)|second joint|helping (generic term)|portion (generic term)|serving (generic term)
+thigh-slapper|1
+(noun)|belly laugh|sidesplitter|howler|scream|wow|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+thigh boot|1
+(noun)|hip boot|boot (generic term)
+thigh pad|1
+(noun)|protective garment (generic term)
+thighbone|1
+(noun)|femur|femoris|leg bone (generic term)
+thill|1
+(noun)|shaft (generic term)
+thimble|2
+(noun)|thimbleful|containerful (generic term)
+(noun)|cap (generic term)|container (generic term)
+thimble-shaped|1
+(adj)|formed (similar term)
+thimbleberry|3
+(noun)|flowering raspberry|purple-flowering raspberry|Rubus odoratus|raspberry (generic term)|raspberry bush (generic term)
+(noun)|salmonberry|salmon berry|Rubus parviflorus|raspberry (generic term)|raspberry bush (generic term)
+(noun)|black raspberry|blackcap|blackcap raspberry|Rubus occidentalis|raspberry (generic term)|raspberry bush (generic term)
+thimbleful|1
+(noun)|thimble|containerful (generic term)
+thimblerig|1
+(noun)|shell game|swindle (generic term)|cheat (generic term)|rig (generic term)
+thimbleweed|1
+(noun)|Anemone cylindrica|anemone (generic term)|windflower (generic term)
+thimerosal|1
+(noun)|sodium ethylmercurithiosalicylate|Merthiolate|antiseptic (generic term)
+thin|13
+(adj)|bladed (similar term)|capillary (similar term)|hairlike (similar term)|compressed (similar term)|flat (similar term)|depressed (similar term)|diaphanous (similar term)|filmy (similar term)|gauzy (similar term)|gauze-like (similar term)|gossamer (similar term)|see-through (similar term)|sheer (similar term)|transparent (similar term)|vaporous (similar term)|vapourous (similar term)|cobwebby (similar term)|filamentous (similar term)|filiform (similar term)|filamentlike (similar term)|threadlike (similar term)|thready (similar term)|fine (similar term)|flimsy (similar term)|light (similar term)|hyperfine (similar term)|paper thin (similar term)|papery (similar term)|ribbonlike (similar term)|ribbony (similar term)|sleazy (similar term)|slender (similar term)|tenuous (similar term)|wafer-thin (similar term)|narrow (related term)|thin (related term)|lean (related term)|thick (antonym)
+(adj)|lean|anorexic (similar term)|anorectic (similar term)|bony (similar term)|cadaverous (similar term)|emaciated (similar term)|gaunt (similar term)|haggard (similar term)|pinched (similar term)|skeletal (similar term)|wasted (similar term)|deep-eyed (similar term)|hollow-eyed (similar term)|sunken-eyed (similar term)|gangling (similar term)|gangly (similar term)|lanky (similar term)|lank (similar term)|spindly (similar term)|rawboned (similar term)|reedy (similar term)|reedlike (similar term)|twiggy (similar term)|twiglike (similar term)|scarecrowish (similar term)|scraggy (similar term)|boney (similar term)|scrawny (similar term)|skinny (similar term)|underweight (similar term)|weedy (similar term)|shriveled (similar term)|shrivelled (similar term)|shrunken (similar term)|withered (similar term)|wizen (similar term)|wizened (similar term)|slender (similar term)|slight (similar term)|slim (similar term)|svelte (similar term)|slender-waisted (similar term)|slim-waisted (similar term)|wasp-waisted (similar term)|spare (similar term)|trim (similar term)|spindle-legged (similar term)|spindle-shanked (similar term)|stringy (similar term)|wiry (similar term)|wisplike (similar term)|wispy (similar term)|ectomorphic (related term)|thin (related term)|fat (antonym)
+(adj)|slender|narrow (similar term)
+(adj)|flimsy|slight|tenuous|weak (similar term)
+(adj)|sparse|distributed (similar term)
+(adj)|tenuous (similar term)|rare (similar term)|rarefied (similar term)|rarified (similar term)|thick (antonym)
+(adj)|pale (similar term)|full (antonym)
+(adj)|spiritless (similar term)
+(verb)|change state (generic term)|turn (generic term)|thicken (antonym)
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)|thicken (antonym)
+(verb)|dilute|thin out|reduce|cut|weaken (generic term)
+(verb)|reduce|melt off|lose weight|slim|slenderize|slim down|change state (generic term)|turn (generic term)|gain (antonym)
+(adv)|thinly|thickly (antonym)
+thin-bodied|1
+(adj)|slim-bodied|slender-bodied|bodied (similar term)
+thin-leaved bilberry|1
+(noun)|bilberry|mountain blue berry|Viccinium membranaceum|blueberry (generic term)|blueberry bush (generic term)
+thin-leaved stringybark|1
+(noun)|white stringybark|Eucalyptusd eugenioides|stringybark (generic term)
+thin-shelled|1
+(adj)|shelled (similar term)
+thin-shelled mussel|1
+(noun)|freshwater mussel (generic term)|freshwater clam (generic term)
+thin-skinned|1
+(adj)|huffy|feisty|touchy|sensitive (similar term)
+thin air|1
+(noun)|nothingness (generic term)|void (generic term)|nullity (generic term)|nihility (generic term)
+thin out|3
+(verb)|reduce (generic term)|cut down (generic term)|cut back (generic term)|trim (generic term)|trim down (generic term)|trim back (generic term)|cut (generic term)|bring down (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|dilute|thin|reduce|cut|weaken (generic term)
+thin person|1
+(noun)|skin and bones|scrag|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|fat person (antonym)
+thing|12
+(noun)|situation (generic term)|state of affairs (generic term)
+(noun)|action (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|statement (generic term)
+(noun)|attribute (generic term)
+(noun)|abstraction (generic term)|abstract (generic term)
+(noun)|matter|affair|concern (generic term)
+(noun)|entity (generic term)
+(noun)|aim (generic term)|object (generic term)|objective (generic term)|target (generic term)
+(noun)|feeling (generic term)
+(noun)|physical entity (generic term)
+thing-in-itself|1
+(noun)|noumenon|content (generic term)|cognitive content (generic term)|mental object (generic term)
+thingamabob|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+thingamajig|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+thingmabob|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+thingmajig|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+things|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+thingumabob|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+thingumajig|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+thingummy|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|whatchamacallit|whatchamacallum|whatsis|widget|stuff (generic term)
+think|11
+(noun)|deliberation (generic term)|weighing (generic term)|advisement (generic term)
+(verb)|believe|consider|conceive|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|opine|suppose|imagine|reckon|guess|expect (generic term)|anticipate (generic term)
+(verb)|cogitate|cerebrate|think over (related term)|think out (related term)|think up (related term)
+(verb)|remember|retrieve|recall|call back|call up|recollect|think back (related term)|forget (antonym)
+(verb)|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+(verb)|intend|mean|will (generic term)|wish (generic term)
+(verb)|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+think about|2
+(verb)|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+(verb)|entertain|think of|toy with|flirt with|contemplate (generic term)
+think back|1
+(verb)|remember
+think factory|1
+(noun)|think tank|company (generic term)
+think of|6
+(verb)|remember|forget (antonym)
+(verb)|repute|regard as|look upon|look on|esteem|take to be|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|entertain|toy with|flirt with|think about|contemplate (generic term)
+(verb)|have in mind|mean|associate (generic term)|tie in (generic term)|relate (generic term)|link (generic term)|colligate (generic term)|link up (generic term)|connect (generic term)
+(verb)|think up|dream up|hatch|concoct|create by mental act (generic term)|create mentally (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+think out|1
+(verb)|plan (generic term)|be after (generic term)
+think over|1
+(verb)|chew over|meditate|ponder|excogitate|contemplate|muse|reflect|mull|mull over|ruminate|speculate|think (generic term)|cogitate (generic term)|cerebrate (generic term)
+think piece|1
+(noun)|article (generic term)
+think tank|1
+(noun)|think factory|company (generic term)
+think the world of|1
+(verb)|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)
+think twice|1
+(verb)|consider (generic term)|debate (generic term)|moot (generic term)|turn over (generic term)|deliberate (generic term)
+think up|1
+(verb)|think of|dream up|hatch|concoct|create by mental act (generic term)|create mentally (generic term)
+thinkable|1
+(adj)|cogitable (similar term)|ponderable (similar term)|conceivable (similar term)|imaginable (similar term)|possible (similar term)|presumable (similar term)|supposable (similar term)|surmisable (similar term)|credible (related term)|believable (related term)|possible (related term)|unthinkable (antonym)
+thinker|2
+(noun)|creative thinker|mind|intellectual (generic term)|intellect (generic term)
+(noun)|intellectual (generic term)|intellect (generic term)
+thinking|2
+(adj)|intelligent|reasoning|rational (similar term)
+(noun)|thought|thought process|cerebration|intellection|mentation|higher cognitive process (generic term)
+thinking cap|1
+(noun)|state of mind (generic term)|frame of mind (generic term)
+thinly|3
+(adv)|thin|thickly (antonym)
+(adv)|lightly|thickly (antonym)
+(adv)|thickly (antonym)
+thinned|1
+(adj)|cut|weakened|diluted (similar term)|dilute (similar term)
+thinner|1
+(noun)|dilutant|diluent|agent (generic term)
+thinness|5
+(noun)|tenuity|slenderness|dimension (generic term)|thickness (antonym)
+(noun)|leanness|spareness|bodily property (generic term)|fatness (antonym)
+(noun)|fineness|narrowness (generic term)
+(noun)|sparseness|spareness|sparsity|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|thickness (antonym)
+thinning|1
+(noun)|cutting|dilution (generic term)
+thinning shears|1
+(noun)|shears (generic term)
+thiobacillus|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+thiobacteria|1
+(noun)|sulphur bacteria|sulfur bacteria|thiobacillus (generic term)
+thiobacteriaceae|1
+(noun)|Thiobacteriaceae|family Thiobacteriaceae|bacteria family (generic term)
+thiocyanate|1
+(noun)|salt (generic term)
+thiocyanic acid|1
+(noun)|acid (generic term)
+thiodiphenylamine|1
+(noun)|phenothiazine|thiazine (generic term)
+thioguanine|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+thiopental|1
+(noun)|thiopental sodium|thiopentobarbital sodium|Pentothal|barbiturate (generic term)|truth serum (generic term)|truth drug (generic term)
+thiopental sodium|1
+(noun)|thiopental|thiopentobarbital sodium|Pentothal|barbiturate (generic term)|truth serum (generic term)|truth drug (generic term)
+thiopentobarbital sodium|1
+(noun)|thiopental|thiopental sodium|Pentothal|barbiturate (generic term)|truth serum (generic term)|truth drug (generic term)
+thioridazine|1
+(noun)|Mellaril|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+thiosulfil|1
+(noun)|Thiosulfil|sulfa drug (generic term)|sulfa (generic term)|sulpha (generic term)|sulfonamide (generic term)
+thiotepa|1
+(noun)|antineoplastic (generic term)|antineoplastic drug (generic term)|cancer drug (generic term)
+thiothixene|1
+(noun)|Navane|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)
+thiouracil|1
+(noun)|organic compound (generic term)
+third|9
+(adj)|3rd|tertiary|ordinal (similar term)
+(adj)|fractional (similar term)
+(noun)|one-third|tierce|common fraction (generic term)|simple fraction (generic term)
+(noun)|third base|position (generic term)
+(noun)|rank (generic term)
+(noun)|interval (generic term)|musical interval (generic term)
+(noun)|third gear|gear (generic term)|gear mechanism (generic term)
+(noun)|third base|base (generic term)|bag (generic term)
+(adv)|thirdly
+third-class mail|1
+(noun)|third class|mail (generic term)
+third-degree burn|1
+(noun)|burn (generic term)
+third-dimensional|1
+(adj)|three-dimensional|3-dimensional|three-d|multidimensional (similar term)
+third-dimensionality|1
+(noun)|three-dimensionality|dimensionality (generic term)
+third-place finish|1
+(noun)|finish (generic term)
+third-rate|1
+(adj)|inferior (similar term)
+third-rater|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+third-year|1
+(adj)|junior|next-to-last|intermediate (similar term)
+third baron rayleigh|1
+(noun)|Rayleigh|Third Baron Rayleigh|Lord Rayleigh|John William Strutt|physicist (generic term)
+third base|2
+(noun)|third|base (generic term)|bag (generic term)
+(noun)|third|position (generic term)
+third baseman|1
+(noun)|third sacker|infielder (generic term)
+third battle of ypres|1
+(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle (generic term)
+third class|2
+(noun)|third-class mail|mail (generic term)
+(noun)|tourist class|accommodation (generic term)
+third council of constantinople|1
+(noun)|Constantinople|Third Council of Constantinople|ecumenical council (generic term)
+third cranial nerve|1
+(noun)|oculomotor|oculomotor nerve|nervus oculomotorius|cranial nerve (generic term)
+third crusade|1
+(noun)|Third Crusade|Crusade (generic term)
+third deck|1
+(noun)|lower deck|deck (generic term)
+third degree|1
+(noun)|interrogation (generic term)|examination (generic term)|interrogatory (generic term)
+third dimension|1
+(noun)|dimension (generic term)
+third epistel of john|1
+(noun)|Third Epistel of John|III John|Epistle (generic term)
+third estate|1
+(noun)|commonalty (generic term)|commonality (generic term)|commons (generic term)
+third eye|1
+(noun)|pineal eye|sense organ (generic term)|sensory receptor (generic term)|receptor (generic term)
+third eyelid|1
+(noun)|nictitating membrane|protective fold (generic term)
+third gear|1
+(noun)|third|gear (generic term)|gear mechanism (generic term)
+third house|1
+(noun)|lobby|pressure group|political unit (generic term)|political entity (generic term)
+third lateran council|1
+(noun)|Third Lateran Council|Lateran Council (generic term)
+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 (generic term)|Newton's law (generic term)|law of motion (generic term)
+third law of thermodynamics|1
+(noun)|law of thermodynamics (generic term)
+third party|2
+(noun)|arbiter (generic term)|arbitrator (generic term)
+(noun)|party (generic term)|political party (generic term)
+third period|1
+(noun)|playing period (generic term)|period of play (generic term)|play (generic term)
+third person|1
+(noun)|person (generic term)
+third power|1
+(noun)|cube|number (generic term)
+third rail|1
+(noun)|track (generic term)|rail (generic term)|rails (generic term)
+third reich|1
+(noun)|Third Reich|Nazi Germany|Reich (generic term)
+third sacker|1
+(noun)|third baseman|infielder (generic term)
+third stomach|1
+(noun)|psalterium|omasum|stomach (generic term)|tummy (generic term)|tum (generic term)|breadbasket (generic term)
+third tonsil|1
+(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|tonsilla pharyngealis|tonsilla adenoidea|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+third trimester|1
+(noun)|trimester (generic term)
+third ventricle|1
+(noun)|ventricle (generic term)
+third world|1
+(noun)|Third World|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+thirdhand|1
+(adj)|secondary (similar term)
+thirdly|1
+(adv)|third
+thirst|4
+(noun)|thirstiness|drive (generic term)
+(noun)|hunger|hungriness|thirstiness|desire (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|crave|hunger|starve|lust|desire (generic term)|want (generic term)
+thirst for knowledge|1
+(noun)|desire to know|lust for learning|curiosity (generic term)|wonder (generic term)
+thirster|1
+(noun)|longer|yearner|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+thirstily|1
+(adv)|eagerly
+thirstiness|3
+(noun)|aridity|aridness|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+(noun)|thirst|drive (generic term)
+(noun)|hunger|hungriness|thirst|desire (generic term)
+thirsty|4
+(adj)|dry (similar term)
+(adj)|hungry (antonym)
+(adj)|athirst|hungry|desirous (similar term)|wishful (similar term)
+(adj)|absorbent (similar term)|absorptive (similar term)
+thirteen|2
+(adj)|13|xiii|cardinal (similar term)
+(noun)|13|XIII|baker's dozen|long dozen|large integer (generic term)
+thirteenth|2
+(adj)|13th|ordinal (similar term)
+(noun)|rank (generic term)
+thirties|2
+(noun)|mid-thirties|thirty-something|time of life (generic term)
+(noun)|1930s|decade (generic term)|decennary (generic term)|decennium (generic term)
+thirtieth|2
+(adj)|30th|ordinal (similar term)
+(noun)|rank (generic term)
+thirty|2
+(adj)|30|xxx|cardinal (similar term)
+(noun)|30|XXX|large integer (generic term)
+thirty-eight|1
+(adj)|38|xxxviii|cardinal (similar term)
+thirty-eighth|1
+(adj)|38th|ordinal (similar term)
+thirty-fifth|1
+(adj)|35th|ordinal (similar term)
+thirty-first|1
+(adj)|31st|ordinal (similar term)
+thirty-five|1
+(adj)|35|xxxv|cardinal (similar term)
+thirty-four|1
+(adj)|34|xxxiv|cardinal (similar term)
+thirty-fourth|1
+(adj)|34th|ordinal (similar term)
+thirty-nine|1
+(adj)|39|ixl|cardinal (similar term)
+thirty-ninth|1
+(adj)|39th|ordinal (similar term)
+thirty-one|1
+(adj)|31|xxxi|cardinal (similar term)
+thirty-second|2
+(adj)|32nd|ordinal (similar term)
+(noun)|one-thirty-second|thirty-second part|common fraction (generic term)|simple fraction (generic term)
+thirty-second note|1
+(noun)|demisemiquaver|note (generic term)|musical note (generic term)|tone (generic term)
+thirty-second part|1
+(noun)|one-thirty-second|thirty-second|common fraction (generic term)|simple fraction (generic term)
+thirty-seven|1
+(adj)|37|xxxvii|cardinal (similar term)
+thirty-seventh|1
+(adj)|37th|ordinal (similar term)
+thirty-six|1
+(adj)|36|xxxvi|cardinal (similar term)
+thirty-sixth|1
+(adj)|36th|ordinal (similar term)
+thirty-something|1
+(noun)|thirties|mid-thirties|time of life (generic term)
+thirty-third|1
+(adj)|33rd|ordinal (similar term)
+thirty-three|1
+(adj)|33|xxxiii|cardinal (similar term)
+thirty-two|1
+(adj)|32|xxxii|cardinal (similar term)
+thirty years' war|1
+(noun)|Thirty Years' War|war (generic term)|warfare (generic term)
+this evening|1
+(adv)|tonight|this night
+this night|1
+(adv)|tonight|this evening
+thistle|1
+(noun)|weed (generic term)
+thistledown|1
+(noun)|pappus (generic term)
+thistlelike|1
+(adj)|armed (similar term)
+thither|1
+(adv)|there|here (antonym)
+thlaspi|1
+(noun)|Thlaspi|genus Thlaspi|dilleniid dicot genus (generic term)
+thlaspi arvense|1
+(noun)|field pennycress|French weed|fanweed|penny grass|stinkweed|mithridate mustard|Thlaspi arvense|pennycress (generic term)
+thm|1
+(noun)|Master of Theology|ThM|master's degree (generic term)
+tho|1
+(noun)|Tho|Tai (generic term)
+thole|1
+(noun)|peg|pin|tholepin|rowlock|oarlock|holder (generic term)
+tholepin|1
+(noun)|peg|pin|thole|rowlock|oarlock|holder (generic term)
+thomas|5
+(noun)|Thomas|Seth Thomas|clocksmith (generic term)|clockmaker (generic term)
+(noun)|Thomas|Norman Thomas|Norman Mattoon Thomas|socialist (generic term)
+(noun)|Thomas|Lowell Thomas|Lowell Jackson Thomas|broadcast journalist (generic term)
+(noun)|Thomas|Dylan Thomas|Dylan Marlais Thomas|poet (generic term)
+(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle (generic term)|saint (generic term)
+thomas a becket|1
+(noun)|Becket|Thomas a Becket|Saint Thomas a Becket|St. Thomas a Becket|archbishop (generic term)|martyr (generic term)|saint (generic term)
+thomas a kempis|1
+(noun)|a Kempis|Thomas a Kempis|cleric (generic term)|churchman (generic term)|divine (generic term)|ecclesiastic (generic term)
+thomas alva edison|1
+(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+thomas aquinas|1
+(noun)|Aquinas|Thomas Aquinas|Saint Thomas|St. Thomas|Saint Thomas Aquinas|St. Thomas Aquinas|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)|saint (generic term)|Doctor of the Church (generic term)|Doctor (generic term)
+thomas augustus watson|1
+(noun)|Watson|Thomas Augustus Watson|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+thomas babington macaulay|1
+(noun)|Macaulay|Thomas Babington Macaulay|First Baron Macaulay|Lord Macaulay|historian (generic term)|historiographer (generic term)
+thomas bayes|1
+(noun)|Bayes|Thomas Bayes|mathematician (generic term)
+thomas bowdler|1
+(noun)|Bowdler|Thomas Bowdler|editor (generic term)|editor in chief (generic term)
+thomas bradley|1
+(noun)|Bradley|Thomas Bradley|Tom Bradley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+thomas carew|1
+(noun)|Carew|Thomas Carew|poet (generic term)
+thomas carlyle|1
+(noun)|Carlyle|Thomas Carlyle|historian (generic term)|historiographer (generic term)
+thomas chippendale|1
+(noun)|Chippendale|Thomas Chippendale|cabinetmaker (generic term)|furniture maker (generic term)
+thomas clayton wolfe|1
+(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer (generic term)|author (generic term)
+thomas crawford|1
+(noun)|Crawford|Thomas Crawford|sculptor (generic term)|sculpturer (generic term)|carver (generic term)|statue maker (generic term)
+thomas de quincey|1
+(noun)|De Quincey|Thomas De Quincey|writer (generic term)|author (generic term)
+thomas decker|1
+(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+thomas dekker|1
+(noun)|Dekker|Decker|Thomas Dekker|Thomas Decker|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+thomas edison|1
+(noun)|Edison|Thomas Edison|Thomas Alva Edison|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+thomas edward lawrence|1
+(noun)|Lawrence|T. E. Lawrence|Thomas Edward Lawrence|Lawrence of Arabia|soldier (generic term)|writer (generic term)|author (generic term)
+thomas gainsborough|1
+(noun)|Gainsborough|Thomas Gainsborough|painter (generic term)
+thomas gray|1
+(noun)|Gray|Thomas Gray|poet (generic term)
+thomas hardy|1
+(noun)|Hardy|Thomas Hardy|writer (generic term)|author (generic term)
+thomas hart benton|2
+(noun)|Benton|Thomas Hart Benton|painter (generic term)
+(noun)|Benton|Thomas Hart Benton|Old Bullion|legislator (generic term)
+thomas hastings|1
+(noun)|Hastings|Thomas Hastings|architect (generic term)|designer (generic term)
+thomas henry huxley|1
+(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist (generic term)|life scientist (generic term)
+thomas higginson|1
+(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier (generic term)|writer (generic term)|author (generic term)
+thomas hobbes|1
+(noun)|Hobbes|Thomas Hobbes|philosopher (generic term)
+thomas hodgkin|1
+(noun)|Hodgkin|Thomas Hodgkin|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+thomas hopkins gallaudet|1
+(noun)|Gallaudet|Thomas Hopkins Gallaudet|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+thomas hunt morgan|1
+(noun)|Morgan|Thomas Hunt Morgan|biologist (generic term)|life scientist (generic term)
+thomas huxley|1
+(noun)|Huxley|Thomas Huxley|Thomas Henry Huxley|biologist (generic term)|life scientist (generic term)
+thomas j. hanks|1
+(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+thomas j. jackson|1
+(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general (generic term)|full general (generic term)
+thomas jackson|1
+(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general (generic term)|full general (generic term)
+thomas jefferson|1
+(noun)|Jefferson|Thomas Jefferson|President Jefferson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+thomas jonathan jackson|1
+(noun)|Jackson|Thomas Jackson|Thomas J. Jackson|Thomas Jonathan Jackson|Stonewall Jackson|general (generic term)|full general (generic term)
+thomas kennerly wolfe jr.|1
+(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer (generic term)|author (generic term)
+thomas kid|1
+(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist (generic term)|playwright (generic term)
+thomas kyd|1
+(noun)|Kyd|Kid|Thomas Kyd|Thomas Kid|dramatist (generic term)|playwright (generic term)
+thomas lanier williams|1
+(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist (generic term)|playwright (generic term)
+thomas malory|1
+(noun)|Malory|Thomas Malory|Sir Thomas Malory|writer (generic term)|author (generic term)
+thomas malthus|1
+(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist (generic term)|economic expert (generic term)
+thomas mann|1
+(noun)|Mann|Thomas Mann|writer (generic term)|author (generic term)
+thomas merton|1
+(noun)|Merton|Thomas Merton|religious (generic term)|writer (generic term)|author (generic term)
+thomas middleton|1
+(noun)|Middleton|Thomas Middleton|dramatist (generic term)|playwright (generic term)|pamphleteer (generic term)
+thomas moore|1
+(noun)|Moore|Thomas Moore|poet (generic term)
+thomas more|1
+(noun)|More|Thomas More|Sir Thomas More|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+thomas nast|1
+(noun)|Nast|Thomas Nast|cartoonist (generic term)
+thomas nelson page|1
+(noun)|Page|Thomas Nelson Page|writer (generic term)|author (generic term)|diplomat (generic term)|diplomatist (generic term)
+thomas paine|1
+(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader (generic term)|pamphleteer (generic term)
+thomas pynchon|1
+(noun)|Pynchon|Thomas Pynchon|writer (generic term)|author (generic term)
+thomas reid|1
+(noun)|Reid|Thomas Reid|philosopher (generic term)
+thomas robert malthus|1
+(noun)|Malthus|Thomas Malthus|Thomas Robert Malthus|economist (generic term)|economic expert (generic term)
+thomas stearns eliot|1
+(noun)|Eliot|T. S. Eliot|Thomas Stearns Eliot|poet (generic term)|dramatist (generic term)|playwright (generic term)
+thomas straussler|1
+(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist (generic term)|playwright (generic term)
+thomas sully|1
+(noun)|Sully|Thomas Sully|painter (generic term)
+thomas sydenham|1
+(noun)|Sydenham|Thomas Sydenham|English Hippocrates|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+thomas tallis|1
+(noun)|Tallis|Thomas Tallis|organist (generic term)|composer (generic term)
+thomas the doubting apostle|1
+(noun)|Thomas|Saint Thomas|St. Thomas|doubting Thomas|Thomas the doubting Apostle|Apostle (generic term)|saint (generic term)
+thomas wentworth storrow higginson|1
+(noun)|Higginson|Thomas Higginson|Thomas Wentworth Storrow Higginson|soldier (generic term)|writer (generic term)|author (generic term)
+thomas willis|1
+(noun)|Willis|Thomas Willis|neurologist (generic term)|brain doctor (generic term)
+thomas wolfe|2
+(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer (generic term)|author (generic term)
+(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer (generic term)|author (generic term)
+thomas woodrow wilson|1
+(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+thomas wright waller|1
+(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician (generic term)|jazzman (generic term)
+thomas young|1
+(noun)|Young|Thomas Young|physicist (generic term)|Egyptologist (generic term)
+thomism|1
+(noun)|Thomism|theological doctrine (generic term)
+thomomys|1
+(noun)|Thomomys|genus Thomomys|mammal genus (generic term)
+thomomys bottae|1
+(noun)|valley pocket gopher|Thomomys bottae|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+thomomys talpoides|1
+(noun)|northern pocket gopher|Thomomys talpoides|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+thompson|2
+(noun)|Thompson|Homer Thompson|Homer A. Thompson|Homer Armstrong Thompson|archeologist (generic term)|archaeologist (generic term)
+(noun)|Thompson|Benjamin Thompson|Count Rumford|physicist (generic term)
+thompson seedless|1
+(noun)|Thompson Seedless|vinifera grape (generic term)
+thompson submachine gun|1
+(noun)|Tommy gun|Thompson submachine gun|submachine gun (generic term)
+thomsen's disease|1
+(noun)|myotonia congenita|Thomsen's disease|myotonia (generic term)
+thomson|4
+(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer (generic term)
+(noun)|Thomson|Elihu Thomson|electrical engineer (generic term)
+(noun)|Thomson|George Paget Thomson|Sir George Paget Thomson|physicist (generic term)
+(noun)|Thomson|Joseph John Thomson|Sir Joseph John Thomson|physicist (generic term)
+thomson's gazelle|1
+(noun)|Thomson's gazelle|Gazella thomsoni|gazelle (generic term)
+thong|4
+(noun)|lash|leather strip (generic term)
+(noun)|leather strip (generic term)
+(noun)|G-string|woman's clothing (generic term)
+(noun)|flip-flop|sandal (generic term)
+thor|1
+(noun)|Thor|Norse deity (generic term)
+thor hyerdahl|1
+(noun)|Heyerdahl|Thor Hyerdahl|anthropologist (generic term)
+thoracentesis|1
+(noun)|thoracocentesis|centesis (generic term)
+thoracic|1
+(adj)|pectoral|body part (related term)
+thoracic actinomycosis|1
+(noun)|actinomycosis (generic term)
+thoracic aorta|1
+(noun)|aorta (generic term)
+thoracic cavity|1
+(noun)|chest cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+thoracic duct|1
+(noun)|lymph vessel (generic term)|lymphatic vessel (generic term)
+thoracic medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+thoracic nerve|1
+(noun)|spinal nerve (generic term)|nervus spinalis (generic term)
+thoracic outlet syndrome|1
+(noun)|syndrome (generic term)
+thoracic vein|1
+(noun)|vena thoracica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+thoracic vertebra|1
+(noun)|dorsal vertebra|vertebra (generic term)
+thoracocentesis|1
+(noun)|thoracentesis|centesis (generic term)
+thoracoepigastric vein|1
+(noun)|vena thoracoepigastrica|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+thoracotomy|1
+(noun)|incision (generic term)|section (generic term)|surgical incision (generic term)
+thorax|2
+(noun)|chest|pectus|body part (generic term)
+(noun)|body part (generic term)
+thorazine|1
+(noun)|chlorpromazine|Thorazine|major tranquilizer (generic term)|major tranquillizer (generic term)|major tranquilliser (generic term)|antipsychotic drug (generic term)|antipsychotic agent (generic term)|antipsychotic (generic term)|neuroleptic drug (generic term)|neuroleptic agent (generic term)|neuroleptic (generic term)|phenothiazine (generic term)|thiodiphenylamine (generic term)
+thoreau|1
+(noun)|Thoreau|Henry David Thoreau|writer (generic term)|author (generic term)
+thoreauvian|1
+(adj)|Thoreauvian|writer|author (related term)
+thoriate|1
+(verb)|impregnate (generic term)|saturate (generic term)
+thoriated|1
+(adj)|tittering
+thorite|1
+(noun)|mineral (generic term)
+thorium|1
+(noun)|Th|atomic number 90|metallic element (generic term)|metal (generic term)
+thorium-228|1
+(noun)|radiothorium|thorium (generic term)|Th (generic term)|atomic number 90 (generic term)
+thorn|3
+(noun)|irritant|annoyance (generic term)|bother (generic term)|botheration (generic term)|pain (generic term)|infliction (generic term)|pain in the neck (generic term)|pain in the ass (generic term)
+(noun)|spine|prickle|pricker|sticker|spikelet|aculeus (generic term)
+(noun)|rune (generic term)|runic letter (generic term)
+thorn-tipped|1
+(adj)|tipped (similar term)
+thorn apple|1
+(noun)|shrub (generic term)|bush (generic term)
+thornbill|1
+(noun)|hummingbird (generic term)
+thorndike|2
+(noun)|Thorndike|Dame Sybil Thorndike|actress (generic term)
+(noun)|Thorndike|Edward Lee Thorndike|psychologist (generic term)
+thorniness|2
+(noun)|prickliness|bristliness|spininess|roughness (generic term)|raggedness (generic term)
+(noun)|bitterness|acrimony|acerbity|jaundice|tartness|disagreeableness (generic term)
+thornless|1
+(adj)|spineless|unarmed (similar term)
+thornton|1
+(noun)|Thornton|William Thornton|architect (generic term)|designer (generic term)
+thornton niven wilder|1
+(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+thornton wilder|1
+(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+thorny|2
+(adj)|difficult (similar term)|hard (similar term)
+(adj)|barbed|barbellate|briary|briery|bristled|bristly|burred|burry|prickly|setose|setaceous|spiny|armed (similar term)
+thorny amaranth|1
+(noun)|Amaranthus spinosus|herb (generic term)|herbaceous plant (generic term)
+thorny skate|1
+(noun)|Raja radiata|skate (generic term)
+thorough|2
+(adj)|careful (similar term)
+(adj)|exhaustive|thoroughgoing|complete (similar term)
+thorough bass|1
+(noun)|figured bass|basso continuo|continuo|bass (generic term)|bass part (generic term)
+thoroughbred|4
+(adj)|pedigree|pedigreed|pureblood|pureblooded|purebred (similar term)
+(noun)|adult (generic term)|grownup (generic term)|mixed-blood (antonym)
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+(noun)|purebred|pureblood|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+thoroughbred race|1
+(noun)|horse race (generic term)
+thoroughbred racing|1
+(noun)|horse racing (generic term)
+thoroughfare|1
+(noun)|road (generic term)|route (generic term)
+thoroughgoing|2
+(adj)|exhaustive|thorough|complete (similar term)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|utter|unadulterated|unmitigated (similar term)
+thoroughly|2
+(adv)|soundly|good
+(adv)|exhaustively
+thoroughness|1
+(noun)|conscientiousness (generic term)|painstakingness (generic term)
+thoroughwort|1
+(noun)|boneset|agueweed|Eupatorium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+thorpe|1
+(noun)|Thorpe|Jim Thorpe|James Francis Thorpe|athlete (generic term)|jock (generic term)
+thorshavn|1
+(noun)|Thorshavn|city (generic term)|metropolis (generic term)|urban center (generic term)
+thorstein bunde veblen|1
+(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist (generic term)|economic expert (generic term)
+thorstein veblen|1
+(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist (generic term)|economic expert (generic term)
+thortveitite|1
+(noun)|mineral (generic term)
+thoth|1
+(noun)|Thoth|Egyptian deity (generic term)
+thou|1
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|yard|large integer (generic term)
+thought|4
+(noun)|idea|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|thinking|thought process|cerebration|intellection|mentation|higher cognitive process (generic term)
+(noun)|belief (generic term)
+(noun)|opinion|sentiment|persuasion|view|belief (generic term)
+thought-image|1
+(noun)|imagination image|image (generic term)|mental image (generic term)
+thought-provoking|1
+(adj)|challenging|stimulating (similar term)
+thought-reader|2
+(noun)|telepathist|mental telepathist|mind reader|communicator (generic term)
+(noun)|mind reader|telepathist|magician (generic term)|prestidigitator (generic term)|conjurer (generic term)|conjuror (generic term)|illusionist (generic term)
+thought process|1
+(noun)|thinking|thought|cerebration|intellection|mentation|higher cognitive process (generic term)
+thought transference|1
+(noun)|telepathy|psychic communication (generic term)|psychical communication (generic term)|anomalous communication (generic term)
+thoughtful|5
+(adj)|profound (similar term)
+(adj)|bemused (similar term)|deep in thought (similar term)|lost (similar term)|preoccupied (similar term)|brooding (similar term)|broody (similar term)|contemplative (similar term)|meditative (similar term)|musing (similar term)|pensive (similar term)|pondering (similar term)|reflective (similar term)|ruminative (similar term)|cogitative (similar term)|considered (similar term)|reasoned (similar term)|well thought out (similar term)|deliberate (similar term)|deliberative (similar term)|excogitative (similar term)|considerate (related term)|thoughtless (antonym)
+(adj)|serious-minded|serious (similar term)
+(adj)|heedful|attentive|paying attention|heedless (antonym)
+(adj)|considerate (similar term)
+thoughtfully|1
+(adv)|thoughtlessly (antonym)
+thoughtfulness|4
+(noun)|contemplation|reflection|reflexion|rumination|musing|consideration (generic term)
+(noun)|consideration|considerateness|kindness (generic term)|thoughtlessness (antonym)|inconsideration (antonym)
+(noun)|trait (generic term)|unthoughtfulness (antonym)
+(noun)|consideration|kindness (generic term)|benignity (generic term)
+thoughtless|3
+(adj)|inconsiderate (similar term)|unconsidered (similar term)|unreflective (similar term)|unthinking (similar term)|unthoughtful (similar term)|inconsiderate (related term)|thoughtful (antonym)
+(adj)|heedless|unheeding|careless (similar term)|regardless (similar term)|deaf (similar term)|indifferent (similar term)|heedful (antonym)
+(adj)|uncaring|unthinking|inconsiderate (similar term)
+thoughtlessly|2
+(adv)|unthinkingly|unthinking|thoughtfully (antonym)
+(adv)|thoughtfully (antonym)
+thoughtlessness|2
+(noun)|inconsideration|inconsiderateness|unkindness (generic term)|thoughtfulness (antonym)|consideration (antonym)
+(noun)|unthoughtfulness|trait (generic term)|thoughtfulness (antonym)
+thousand|2
+(adj)|one thousand|1000|m|k|cardinal (similar term)
+(noun)|one thousand|1000|M|K|chiliad|G|grand|thou|yard|large integer (generic term)
+thousand-fold|1
+(adv)|thousand times
+thousand and one nights|1
+(noun)|Arabian Nights' Entertainment|Arabian Nights|Thousand and One Nights|folktale (generic term)|folk tale (generic term)
+thousand island dressing|1
+(noun)|Thousand Island dressing|dressing (generic term)|salad dressing (generic term)
+thousand times|1
+(adv)|thousand-fold
+thousandth|3
+(adj)|1000th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-thousandth|common fraction (generic term)|simple fraction (generic term)
+thrace|1
+(noun)|Thrace|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+thracian|3
+(adj)|Thracian|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|Thracian|European (generic term)
+(noun)|Thracian|Thraco-Phrygian (generic term)
+thraco-phrygian|1
+(noun)|Thraco-Phrygian|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+thraldom|1
+(noun)|bondage|slavery|thrall|thralldom|subjugation (generic term)|subjection (generic term)
+thrall|2
+(noun)|bondage|slavery|thralldom|thraldom|subjugation (generic term)|subjection (generic term)
+(noun)|bond servant (generic term)
+thralldom|1
+(noun)|bondage|slavery|thrall|thraldom|subjugation (generic term)|subjection (generic term)
+thrash|8
+(noun)|swimming kick (generic term)
+(verb)|thresh|lam|flail|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|convulse|thresh|thresh about|thrash about|slash|toss|jactitate|shake (generic term)|agitate (generic term)
+(verb)|slam dance|slam|mosh|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|swap (generic term)
+(verb)|thresh|beat (generic term)
+(verb)|cream|bat|clobber|drub|lick|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+thrash about|1
+(verb)|convulse|thresh|thresh about|thrash|slash|toss|jactitate|shake (generic term)|agitate (generic term)
+thrash out|1
+(verb)|hammer out|hash out (generic term)|discuss (generic term)|talk over (generic term)
+thrasher|3
+(noun)|thresher|threshing machine|farm machine (generic term)
+(noun)|mocking thrush|oscine (generic term)|oscine bird (generic term)
+(noun)|thresher|thresher shark|fox shark|Alopius vulpinus|shark (generic term)
+thrashing|2
+(noun)|walloping|debacle|drubbing|slaughter|trouncing|whipping|defeat (generic term)|licking (generic term)
+(noun)|beating|licking|drubbing|lacing|trouncing|whacking|corporal punishment (generic term)
+thraupidae|1
+(noun)|Thraupidae|family Thraupidae|bird family (generic term)
+thread|8
+(noun)|yarn|cord (generic term)
+(noun)|ribbon|object (generic term)|physical object (generic term)
+(noun)|train of thought|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+(noun)|screw thread|rib (generic term)
+(verb)|weave|wind|meander|wander|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|extract (generic term)|pull out (generic term)|pull (generic term)|pull up (generic term)|take out (generic term)|draw out (generic term)
+(verb)|guide (generic term)|run (generic term)|draw (generic term)|pass (generic term)
+(verb)|string|draw|arrange (generic term)|set up (generic term)
+thread-fish|1
+(noun)|threadfish|Alectis ciliaris|jack (generic term)
+thread blight|1
+(noun)|blight (generic term)
+thread maker|1
+(noun)|spinner|spinster|maker (generic term)|shaper (generic term)
+threadbare|2
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|timeworn|tired|trite|well-worn|unoriginal (similar term)
+(adj)|worn (similar term)
+threaded|1
+(adj)|rib (related term)
+threader|1
+(noun)|bodkin|hand tool (generic term)
+threadfin|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+threadfish|1
+(noun)|thread-fish|Alectis ciliaris|jack (generic term)
+threadleaf groundsel|1
+(noun)|Senecio doublasii|weed (generic term)
+threadlike|1
+(adj)|filamentous|filiform|filamentlike|thready|thin (similar term)
+threads|1
+(noun)|togs|duds|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+threadworm|1
+(noun)|pinworm|Enterobius vermicularis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+thready|2
+(adj)|ropy|ropey|stringy|thick (similar term)
+(adj)|filamentous|filiform|filamentlike|threadlike|thin (similar term)
+threat|4
+(noun)|menace|danger (generic term)
+(noun)|warning (generic term)
+(noun)|declaration (generic term)
+(noun)|terror|scourge|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+threaten|3
+(verb)|endanger|jeopardize|jeopardise|menace|imperil|peril|exist (generic term)|be (generic term)
+(verb)|warn (generic term)
+(verb)|bode (generic term)|portend (generic term)|auspicate (generic term)|prognosticate (generic term)|omen (generic term)|presage (generic term)|betoken (generic term)|foreshadow (generic term)|augur (generic term)|foretell (generic term)|prefigure (generic term)|forecast (generic term)|predict (generic term)
+threatened|1
+(adj)|vulnerable (similar term)
+threatened abortion|1
+(noun)|imminent abortion|spontaneous abortion (generic term)|miscarriage (generic term)|stillbirth (generic term)
+threatening|2
+(adj)|baleful|forbidding|menacing|minacious|minatory|ominous|sinister|alarming (similar term)
+(adj)|heavy|lowering|sullen|cloudy (similar term)
+threateningly|1
+(adv)|menacingly
+three|2
+(adj)|3|iii|cardinal (similar term)
+(noun)|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+three-bagger|1
+(noun)|triple|three-base hit|base hit (generic term)|safety (generic term)
+three-banded armadillo|1
+(noun)|apar|Tolypeutes tricinctus|armadillo (generic term)
+three-base hit|1
+(noun)|triple|three-bagger|base hit (generic term)|safety (generic term)
+three-card monte|1
+(noun)|monte|four-card monte|card game (generic term)|cards (generic term)
+three-centered arch|1
+(noun)|basket-handle arch|round arch (generic term)
+three-cornered|2
+(adj)|angular (similar term)|angulate (similar term)
+(adj)|multilateral (similar term)|many-sided (similar term)
+three-cornered leek|1
+(noun)|triquetrous leek|Allium triquetrum|alliaceous plant (generic term)
+three-d|3
+(adj)|three-dimensional|3-dimensional|third-dimensional|multidimensional (similar term)
+(noun)|three-D|3-D|3D|movie (generic term)|film (generic term)|picture (generic term)|moving picture (generic term)|moving-picture show (generic term)|motion picture (generic term)|motion-picture show (generic term)|picture show (generic term)|pic (generic term)|flick (generic term)
+(noun)|three-D|3-D|3D|appearance (generic term)
+three-day event|1
+(noun)|equestrian sport (generic term)
+three-day measles|1
+(noun)|German measles|rubella|epidemic roseola|measles (generic term)|rubeola (generic term)|morbilli (generic term)
+three-decker|3
+(noun)|club sandwich|triple-decker|sandwich (generic term)
+(noun)|ship (generic term)
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+three-dimensional|2
+(adj)|3-dimensional|third-dimensional|three-d|multidimensional (similar term)
+(adj)|cubic|blockish (similar term)|blocky (similar term)|boxlike (similar term)|boxy (similar term)|box-shaped (similar term)|brick-shaped (similar term)|cubelike (similar term)|cube-shaped (similar term)|cubical (similar term)|cubiform (similar term)|cuboid (similar term)|cuboidal (similar term)|isometric (similar term)|solid (similar term)|linear (antonym)|planar (antonym)
+three-dimensional figure|1
+(noun)|solid figure|figure (generic term)
+three-dimensional radar|1
+(noun)|3d radar|radar (generic term)|microwave radar (generic term)|radio detection and ranging (generic term)|radiolocation (generic term)
+three-dimensionality|1
+(noun)|third-dimensionality|dimensionality (generic term)
+three-figure|1
+(adj)|quantitative (similar term)
+three-fold|2
+(adj)|treble|threefold|triple|multiple (similar term)
+(adj)|double|dual|twofold|two-fold|treble|threefold|multiple (similar term)
+three-fourths|1
+(noun)|common fraction (generic term)|simple fraction (generic term)
+three-hitter|1
+(noun)|3-hitter|baseball (generic term)|baseball game (generic term)
+three-hundredth|1
+(adj)|300th|ordinal (similar term)
+three-lane|1
+(adj)|multilane (similar term)
+three-legged|1
+(adj)|legged (similar term)
+three-lipped|1
+(adj)|lipped (similar term)
+three-lobed|2
+(adj)|trilobate|trilobated|trilobed|compound (similar term)
+(adj)|multilateral (similar term)|many-sided (similar term)
+three-membered|1
+(adj)|3-membered|membered (similar term)
+three-mile limit|1
+(noun)|limit (generic term)|demarcation (generic term)|demarcation line (generic term)
+three-needled|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+three-party|1
+(adj)|triangular|trilateral|tripartite|three-way|multilateral (similar term)|many-sided (similar term)
+three-petaled|1
+(adj)|three-petalled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+three-petalled|1
+(adj)|three-petaled|petalous (similar term)|petaled (similar term)|petalled (similar term)
+three-piece|1
+(adj)|one-piece (antonym)|two-piece (antonym)
+three-piece suit|1
+(noun)|business suit (generic term)
+three-ply|1
+(adj)|thick (similar term)
+three-point landing|1
+(noun)|aircraft landing (generic term)|airplane landing (generic term)
+three-point switch|1
+(noun)|three-way switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+three-point turn|1
+(noun)|turn (generic term)|turning (generic term)
+three-pronged|1
+(adj)|divided (similar term)
+three-quarter|1
+(adj)|three-quarter-length|fractional (similar term)
+three-quarter-length|1
+(adj)|three-quarter|fractional (similar term)
+three-quarter binding|1
+(noun)|binding (generic term)|book binding (generic term)|cover (generic term)|back (generic term)
+three-ring circus|1
+(noun)|circus (generic term)
+three-seeded|1
+(adj)|seedy (similar term)
+three-seeded mercury|1
+(noun)|Acalypha virginica|shrub (generic term)|bush (generic term)
+three-sided|1
+(adj)|trilateral|triangular|multilateral (similar term)|many-sided (similar term)
+three-spined stickleback|1
+(noun)|Gasterosteus aculeatus|stickleback (generic term)|prickleback (generic term)
+three-toed sloth|1
+(noun)|ai|Bradypus tridactylus|sloth (generic term)|tree sloth (generic term)
+three-way|1
+(adj)|triangular|trilateral|tripartite|three-party|multilateral (similar term)|many-sided (similar term)
+three-way calling|1
+(noun)|conference call (generic term)
+three-way switch|1
+(noun)|three-point switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+three-wheel|1
+(adj)|three-wheeled|machine|simple machine (related term)
+three-wheeled|1
+(adj)|three-wheel|machine|simple machine (related term)
+three-year-old|1
+(adj)|young (similar term)|immature (similar term)
+three-year-old horse|1
+(noun)|three year old|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+three hundred|1
+(adj)|300|ccc|cardinal (similar term)
+three kings' day|1
+(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day (generic term)
+three times|1
+(adv)|threefold
+three weird sisters|1
+(noun)|Fates|Weird Sisters|Three Weird Sisters|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+three year old|1
+(noun)|three-year-old horse|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+threefold|3
+(adj)|treble|three-fold|triple|multiple (similar term)
+(adj)|double|dual|twofold|two-fold|treble|three-fold|multiple (similar term)
+(adv)|three times
+threepence|1
+(noun)|coin (generic term)
+threepenny|2
+(adj)|sized (similar term)
+(adj)|sixpenny|twopenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap (similar term)|inexpensive (similar term)
+threescore|2
+(adj)|sixty|60|lx|cardinal (similar term)
+(noun)|set (generic term)
+threesome|2
+(noun)|three|3|III|trio|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|trio|triad|trinity|gathering (generic term)|assemblage (generic term)
+threnody|1
+(noun)|dirge|coronach|lament|requiem|song (generic term)|vocal (generic term)
+threonine|1
+(noun)|essential amino acid (generic term)
+thresh|4
+(verb)|convulse|thresh about|thrash|thrash about|slash|toss|jactitate|shake (generic term)|agitate (generic term)
+(verb)|flail|beat (generic term)|flap (generic term)
+(verb)|thrash|beat (generic term)
+(verb)|thrash|lam|flail|beat (generic term)|beat up (generic term)|work over (generic term)
+thresh about|1
+(verb)|convulse|thresh|thrash|thrash about|slash|toss|jactitate|shake (generic term)|agitate (generic term)
+thresher|2
+(noun)|thrasher|threshing machine|farm machine (generic term)
+(noun)|thrasher|thresher shark|fox shark|Alopius vulpinus|shark (generic term)
+thresher's lung|1
+(noun)|farmer's lung|alveolitis (generic term)
+thresher shark|1
+(noun)|thresher|thrasher|fox shark|Alopius vulpinus|shark (generic term)
+threshing|1
+(noun)|separation (generic term)
+threshing floor|1
+(noun)|area (generic term)
+threshing machine|1
+(noun)|thresher|thrasher|farm machine (generic term)
+threshold|5
+(noun)|beginning (generic term)|commencement (generic term)|first (generic term)|outset (generic term)|get-go (generic term)|start (generic term)|kickoff (generic term)|starting time (generic term)|showtime (generic term)|offset (generic term)
+(noun)|limen|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|doorway|door|room access|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+(noun)|doorsill|doorstep|sill (generic term)
+(noun)|brink|verge|boundary (generic term)|edge (generic term)|bound (generic term)
+threshold element|1
+(noun)|threshold gate|logic element (generic term)
+threshold function|1
+(noun)|function (generic term)|mathematical function (generic term)
+threshold gate|1
+(noun)|threshold element|logic element (generic term)
+threshold level|1
+(noun)|intensity (generic term)|strength (generic term)|intensity level (generic term)
+threshold operation|1
+(noun)|operation (generic term)
+threskiornis|1
+(noun)|Threskiornis|genus Threskiornis|bird genus (generic term)
+threskiornis aethiopica|1
+(noun)|sacred ibis|Threskiornis aethiopica|ibis (generic term)
+threskiornithidae|1
+(noun)|Threskiornithidae|family Threskiornithidae|family Ibidiidae|bird family (generic term)
+thrift|2
+(noun)|subshrub (generic term)|suffrutex (generic term)
+(noun)|parsimony|parsimoniousness|penny-pinching|frugality (generic term)|frugalness (generic term)
+thrift institution|1
+(noun)|depository financial institution (generic term)|bank (generic term)|banking concern (generic term)|banking company (generic term)
+thriftiness|1
+(noun)|economy|frugality (generic term)|frugalness (generic term)
+thriftless|1
+(adj)|improvident (similar term)
+thriftlessness|1
+(noun)|waste|wastefulness|improvidence (generic term)|shortsightedness (generic term)
+thriftshop|1
+(noun)|second-hand store|shop (generic term)|store (generic term)
+thrifty|2
+(adj)|economical (similar term)|frugal (similar term)|scotch (similar term)|sparing (similar term)|stinting (similar term)|penny-wise (similar term)|saving (similar term)|provident (related term)|wasteful (antonym)
+(adj)|careful|provident (similar term)
+thrill|7
+(noun)|bang|boot|charge|rush|flush|kick|exhilaration (generic term)|excitement (generic term)
+(noun)|frisson|shiver|chill|quiver|shudder|tingle|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|excitation (generic term)|excitement (generic term)
+(verb)|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|tickle|vibrate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|shudder|shiver|throb|tremble (generic term)
+(verb)|exhilarate|inebriate|exalt|beatify|elate (generic term)|lift up (generic term)|uplift (generic term)|pick up (generic term)|intoxicate (generic term)
+thrilled|1
+(adj)|excited (similar term)
+thriller|1
+(noun)|adventure story (generic term)|heroic tale (generic term)
+thrillful|1
+(adj)|excited (similar term)
+thrilling|2
+(adj)|electrifying|exciting (similar term)
+(adj)|stimulating (similar term)
+thrinax|1
+(noun)|Thrinax|genus Thrinax|monocot genus (generic term)|liliopsid genus (generic term)
+thrinax keyensis|1
+(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm (generic term)
+thrinax microcarpa|1
+(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm (generic term)
+thrinax morrisii|1
+(noun)|key palm|silvertop palmetto|silver thatch|Thrinax microcarpa|Thrinax morrisii|Thrinax keyensis|fan palm (generic term)
+thrinax parviflora|1
+(noun)|thatch palm|thatch tree|silver thatch|broom palm|Thrinax parviflora|fan palm (generic term)
+thrip|1
+(noun)|thrips|thripid|thysanopter (generic term)|thysanopteron (generic term)|thysanopterous insect (generic term)
+thripid|1
+(noun)|thrips|thrip|thysanopter (generic term)|thysanopteron (generic term)|thysanopterous insect (generic term)
+thripidae|1
+(noun)|Thripidae|family Thripidae|arthropod family (generic term)
+thrips|1
+(noun)|thrip|thripid|thysanopter (generic term)|thysanopteron (generic term)|thysanopterous insect (generic term)
+thrips tobaci|1
+(noun)|onion thrips|onion louse|Thrips tobaci|thrips (generic term)|thrip (generic term)|thripid (generic term)
+thrive|2
+(verb)|boom|prosper|get ahead|flourish|expand|grow (generic term)
+(verb)|prosper|fly high|flourish|change state (generic term)|turn (generic term)
+thriving|2
+(adj)|booming|flourishing|palmy|prospering|prosperous|roaring|successful (similar term)
+(adj)|flourishing|growing|healthy (similar term)
+throat|3
+(noun)|pharynx|tubular cavity (generic term)
+(noun)|opening (generic term)
+(noun)|passage (generic term)
+throat infection|1
+(noun)|streptococcal sore throat|strep throat|streptococcus tonsilitis|septic sore throat|sore throat (generic term)|pharyngitis (generic term)|raw throat (generic term)|infection (generic term)
+throat protector|1
+(noun)|protective garment (generic term)
+throat sweetbread|1
+(noun)|neck sweetbread|variety meat (generic term)|organs (generic term)
+throated|1
+(adj)|necked (similar term)
+throatwort|1
+(noun)|nettle-leaved bellflower|Campanula trachelium|campanula (generic term)|bellflower (generic term)
+throaty|1
+(adj)|low (similar term)|low-pitched (similar term)
+throb|5
+(noun)|pain (generic term)|hurting (generic term)
+(noun)|throbbing|pounding|pulse (generic term)|pulsation (generic term)|heartbeat (generic term)|beat (generic term)
+(verb)|ache (generic term)|smart (generic term)|hurt (generic term)
+(verb)|pulsate|pulse|beat (generic term)|pound (generic term)|thump (generic term)
+(verb)|shudder|shiver|thrill|tremble (generic term)
+throbbing|3
+(adj)|rhythmical (similar term)|rhythmic (similar term)
+(noun)|throb|pounding|pulse (generic term)|pulsation (generic term)|heartbeat (generic term)|beat (generic term)
+(noun)|sound (generic term)
+throe|2
+(noun)|agony (generic term)|suffering (generic term)|excruciation (generic term)
+(noun)|distress (generic term)
+throes|1
+(noun)|suffering (generic term)|hurt (generic term)
+thrombasthenia|1
+(noun)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)
+thrombectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+thrombin|1
+(noun)|coagulase (generic term)
+thrombocyte|1
+(noun)|platelet|blood platelet|protoplasm (generic term)|living substance (generic term)
+thrombocytopenia|1
+(noun)|thrombopenia|blood disease (generic term)|blood disorder (generic term)
+thrombocytopenic purpura|1
+(noun)|idiopathic thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura (generic term)|peliosis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+thrombocytosis|1
+(noun)|symptom (generic term)
+thromboembolism|1
+(noun)|occlusion (generic term)
+thrombokinase|1
+(noun)|thromboplastin|factor III|coagulation factor (generic term)|clotting factor (generic term)
+thrombolysis|1
+(noun)|lysis (generic term)
+thrombolytic|1
+(noun)|thrombolytic agent|clot buster|pharmaceutical (generic term)|pharmaceutic (generic term)
+thrombolytic agent|1
+(noun)|thrombolytic|clot buster|pharmaceutical (generic term)|pharmaceutic (generic term)
+thrombolytic therapy|1
+(noun)|therapy (generic term)
+thrombopenia|1
+(noun)|thrombocytopenia|blood disease (generic term)|blood disorder (generic term)
+thrombophlebitis|1
+(noun)|phlebitis (generic term)
+thromboplastin|1
+(noun)|thrombokinase|factor III|coagulation factor (generic term)|clotting factor (generic term)
+thrombose|1
+(verb)|change state (generic term)|turn (generic term)
+thrombosed|1
+(adj)|obstructed (similar term)
+thrombosis|1
+(noun)|occlusion (generic term)
+thrombus|1
+(noun)|clot (generic term)|coagulum (generic term)
+throne|5
+(noun)|chair (generic term)
+(noun)|toilet|can|commode|crapper|pot|potty|stool|plumbing fixture (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+(verb)|govern (generic term)|rule (generic term)
+(verb)|enthrone|invest (generic term)|vest (generic term)|enthrone (generic term)|dethrone (antonym)
+throng|2
+(noun)|multitude|concourse|gathering (generic term)|assemblage (generic term)
+(verb)|mob|pack|pile|jam|crowd (generic term)|crowd together (generic term)
+thronged|1
+(adj)|crowded (similar term)
+throstle|2
+(noun)|spinning machine (generic term)
+(noun)|song thrush|mavis|Turdus philomelos|thrush (generic term)
+throttle|5
+(noun)|accelerator|throttle valve|valve (generic term)
+(noun)|accelerator|accelerator pedal|gas pedal|gas|gun|pedal (generic term)|treadle (generic term)|foot pedal (generic term)|foot lever (generic term)
+(verb)|restrict|restrain|trammel|limit|bound|confine|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|strangle|strangulate|kill (generic term)
+(verb)|choke|enrich (generic term)
+throttle valve|1
+(noun)|accelerator|throttle|valve (generic term)
+throttlehold|1
+(noun)|stranglehold|chokehold|power (generic term)|powerfulness (generic term)
+throttler|1
+(noun)|garroter|garrotter|strangler|choker|killer (generic term)|slayer (generic term)
+throttling|1
+(noun)|choking|strangling|strangulation|suffocation (generic term)|asphyxiation (generic term)
+through|3
+(adj)|done|through with|finished (similar term)
+(adj)|direct (similar term)
+(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|theoretically (antonym)
+through with|2
+(adj)|done|through|finished (similar term)
+(adj)|done with|finished (similar term)
+throughout|2
+(adv)|end-to-end
+(adv)|passim
+throughput|1
+(noun)|output (generic term)|outturn (generic term)|turnout (generic term)
+throughway|1
+(noun)|expressway|freeway|motorway|pike|state highway|superhighway|thruway|highway (generic term)|main road (generic term)
+throw|20
+(noun)|propulsion (generic term)|actuation (generic term)
+(noun)|opportunity (generic term)|chance (generic term)
+(noun)|stroke|cam stroke|movement (generic term)|motion (generic term)
+(noun)|bedclothes (generic term)|bed clothing (generic term)|bedding (generic term)
+(noun)|gambling (generic term)|gaming (generic term)|play (generic term)
+(verb)|propel (generic term)|impel (generic term)
+(verb)|move (generic term)
+(verb)|shed|cast|cast off|shake off|throw off|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|thrust|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|give|communicate (generic term)|intercommunicate (generic term)
+(verb)|flip|switch|engage (generic term)|mesh (generic term)|lock (generic term)|operate (generic term)
+(verb)|project|cast|contrive|send (generic term)|direct (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|bewilder|bemuse|discombobulate|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+(verb)|hurl|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|hold|have|make|give|direct (generic term)
+(verb)|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|dislodge (generic term)|displace (generic term)|bump (generic term)
+(verb)|turn (generic term)|release (generic term)
+(verb)|confuse|fox|befuddle|fuddle|bedevil|confound|discombobulate|be (generic term)
+throw-in|1
+(noun)|throw (generic term)
+throw-weight|1
+(noun)|weight (generic term)
+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 (generic term)
+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 (generic term)|remove (generic term)
+(verb)|shed|cast|cast off|shake off|throw|throw off|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+throw back|1
+(verb)|toss back|flip (generic term)|toss (generic term)|sky (generic term)|pitch (generic term)
+throw cold water on|1
+(verb)|pour cold water on|discourage (generic term)
+throw in|3
+(verb)|lend (generic term)|impart (generic term)|bestow (generic term)|contribute (generic term)|add (generic term)|bring (generic term)
+(verb)|drop out|give up|fall by the wayside|drop by the wayside|throw in the towel|quit|chuck up the sponge|enter (antonym)
+(verb)|interject|come in|interpose|put in|inject|interrupt (generic term)|disrupt (generic term)|break up (generic term)|cut off (generic term)
+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|enter (antonym)
+throw off|2
+(verb)|shed|cast|cast off|shake off|throw|throw away|drop|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|shake|shake off|escape from|escape (generic term)|get away (generic term)|break loose (generic term)
+throw out|6
+(verb)|expel|kick out|move (generic term)|displace (generic term)
+(verb)|discard|fling|toss|toss out|toss away|chuck out|cast aside|dispose|cast out|throw away|cast away|put away|get rid of (generic term)|remove (generic term)
+(verb)|expel|eject|chuck out|exclude|kick out|turf out|boot out|turn out|move (generic term)|displace (generic term)
+(verb)|oust|drum out|boot out|kick out|expel|remove (generic term)
+(verb)|advance|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|dismiss
+throw out of kilter|1
+(verb)|perturb|derange|disorder (generic term)|disarray (generic term)
+throw overboard|2
+(verb)|forfeit|give up|waive|forgo|abandon (generic term)|claim (antonym)
+(verb)|deep-six|throw (generic term)
+throw pillow|1
+(noun)|cushion (generic term)
+throw rug|1
+(noun)|scatter rug|rug (generic term)|carpet (generic term)|carpeting (generic term)
+throw stick|1
+(noun)|boomerang|throwing stick|projectile (generic term)|missile (generic term)
+throw together|2
+(verb)|fudge together|produce (generic term)|make (generic term)|create (generic term)
+(verb)|scramble|jumble|disorder (generic term)|disarray (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+throwaway|5
+(adj)|cast-off|discarded|thrown-away|unwanted (similar term)
+(adj)|disposable (similar term)
+(noun)|street arab|gamin|street urchin (generic term)|guttersnipe (generic term)
+(noun)|circular|handbill|bill|broadside|broadsheet|flier|flyer|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|actor's line (generic term)|speech (generic term)|words (generic term)
+throwback|3
+(adj)|atavistic|regressive (similar term)
+(noun)|atavist|organism (generic term)|being (generic term)
+(noun)|atavism|reversion|recurrence (generic term)|return (generic term)
+thrower|3
+(noun)|throwster|worker (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|potter|ceramicist|ceramist|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+throwing away|1
+(noun)|discard|abandonment (generic term)
+throwing board|1
+(noun)|throwing stick|spear thrower|dart thrower|device (generic term)
+throwing stick|2
+(noun)|throwing board|spear thrower|dart thrower|device (generic term)
+(noun)|boomerang|throw stick|projectile (generic term)|missile (generic term)
+thrown|2
+(adj)|down (similar term)
+(adj)|thrown and twisted|tangled (similar term)
+thrown-away|1
+(adj)|cast-off|discarded|throwaway|unwanted (similar term)
+thrown and twisted|1
+(adj)|thrown|tangled (similar term)
+throwster|1
+(noun)|thrower|worker (generic term)
+thrum|4
+(noun)|sound (generic term)
+(verb)|hum|sound (generic term)|go (generic term)
+(verb)|strum|sound (generic term)
+(verb)|drum|beat|sound (generic term)|go (generic term)
+thrush|3
+(noun)|candidiasis (generic term)|moniliasis (generic term)|monilia disease (generic term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+thrush-like|1
+(adj)|animal (similar term)
+thrush nightingale|1
+(noun)|Luscinia luscinia|thrush (generic term)
+thrust|12
+(noun)|push|force (generic term)
+(noun)|stab|knife thrust|blow (generic term)
+(noun)|drive|driving force|propulsion (generic term)|actuation (generic term)
+(noun)|criticism (generic term)|unfavorable judgment (generic term)
+(noun)|jab|jabbing|poke|poking|thrusting|gesture (generic term)
+(verb)|push (generic term)|force (generic term)|thrust ahead (related term)
+(verb)|stuff|shove|squeeze|push (generic term)|force (generic term)
+(verb)|lunge|hurl|hurtle|move (generic term)
+(verb)|force|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|pierce|penetrate (generic term)|perforate (generic term)
+(verb)|push up|stick out (generic term)|protrude (generic term)|jut out (generic term)|jut (generic term)|project (generic term)
+(verb)|throw|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+thrust ahead|1
+(verb)|barge|push forward|rush (generic term)|hotfoot (generic term)|hasten (generic term)|hie (generic term)|speed (generic term)|race (generic term)|pelt along (generic term)|rush along (generic term)|cannonball along (generic term)|bucket along (generic term)|belt along (generic term)|barge in (related term)
+thrust bearing|1
+(noun)|bearing (generic term)
+thrust fault|1
+(noun)|overthrust fault|reverse fault|inclined fault (generic term)
+thrust out|1
+(verb)|push out|obtrude|push (generic term)|force (generic term)
+thrust stage|1
+(noun)|theater stage (generic term)|theatre stage (generic term)
+thruster|2
+(noun)|pusher|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|rocket (generic term)|rocket engine (generic term)
+thrusting|1
+(noun)|jab|jabbing|poke|poking|thrust|gesture (generic term)
+thruway|1
+(noun)|expressway|freeway|motorway|pike|state highway|superhighway|throughway|highway (generic term)|main road (generic term)
+thryothorus|1
+(noun)|Thryothorus|genus Thryothorus|bird genus (generic term)
+thryothorus ludovicianus|1
+(noun)|Carolina wren|Thryothorus ludovicianus|wren (generic term)|jenny wren (generic term)
+thucydides|1
+(noun)|Thucydides|historian (generic term)|historiographer (generic term)
+thud|4
+(noun)|thump|thumping|clump|clunk|sound (generic term)
+(verb)|thump|sound (generic term)|go (generic term)
+(verb)|hit (generic term)|strike (generic term)|impinge on (generic term)|run into (generic term)|collide with (generic term)
+(verb)|crump|scrunch|crunch (generic term)|scranch (generic term)|scraunch (generic term)|crackle (generic term)
+thudding|1
+(adj)|dull|unreverberant (similar term)|nonresonant (similar term)
+thug|1
+(noun)|hood|hoodlum|goon|punk|tough|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+thuggee|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+thuggery|1
+(noun)|crime (generic term)|law-breaking (generic term)
+thuja|1
+(noun)|Thuja|genus Thuja|gymnosperm genus (generic term)
+thuja occidentalis|1
+(noun)|American arborvitae|northern white cedar|white cedar|Thuja occidentalis|arborvitae (generic term)
+thuja orientalis|1
+(noun)|Oriental arborvitae|Thuja orientalis|Platycladus orientalis|arborvitae (generic term)
+thuja plicata|1
+(noun)|western red cedar|red cedar|canoe cedar|Thuja plicata|arborvitae (generic term)
+thujopsis|1
+(noun)|Thujopsis|genus Thujopsis|gymnosperm genus (generic term)
+thujopsis dolobrata|1
+(noun)|hiba arborvitae|Thujopsis dolobrata|arborvitae (generic term)
+thule|2
+(noun)|Thule|town (generic term)
+(noun)|Thule|ultima Thule|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+thulium|1
+(noun)|Tm|atomic number 69|metallic element (generic term)|metal (generic term)
+thumb|6
+(noun)|pollex|finger (generic term)
+(noun)|covering (generic term)
+(noun)|ovolo|quarter round|molding (generic term)|moulding (generic term)
+(verb)|hitchhike|hitch|ride (generic term)
+(verb)|flick|flip|riffle|leaf|riff|peruse (generic term)
+(verb)|finger|touch (generic term)
+thumb index|1
+(noun)|notch (generic term)
+thumbed|1
+(adj)|worn (similar term)
+thumbhole|2
+(noun)|hole (generic term)
+(noun)|finger hole (generic term)
+thumbnail|1
+(noun)|fingernail (generic term)
+thumbnut|1
+(noun)|wing nut|wing-nut|wing screw|butterfly nut|nut (generic term)
+thumbprint|1
+(noun)|fingerprint (generic term)
+thumbscrew|2
+(noun)|instrument of torture (generic term)
+(noun)|screw (generic term)
+thumbstall|1
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+thumbtack|2
+(noun)|drawing pin|pushpin|tack (generic term)|paper fastener (generic term)
+(verb)|tack (generic term)
+thump|5
+(noun)|thumping|clump|clunk|thud|sound (generic term)
+(noun)|blow (generic term)
+(verb)|beat|pound|move (generic term)
+(verb)|thud|sound (generic term)|go (generic term)
+(verb)|pound|poke|hit (generic term)
+thump out|1
+(verb)|beat out|tap out|beat (generic term)
+thumping|2
+(adj)|humongous|banging|whopping|walloping|large (similar term)|big (similar term)
+(noun)|thump|clump|clunk|thud|sound (generic term)
+thunbergia|1
+(noun)|Thunbergia|genus Thunbergia|asterid dicot genus (generic term)
+thunbergia alata|1
+(noun)|black-eyed Susan|black-eyed Susan vine|Thunbergia alata|vine (generic term)
+thunder|7
+(noun)|boom|roar|roaring|noise (generic term)
+(noun)|noise (generic term)
+(noun)|big H|hell dust|nose drops|smack|skag|scag|heroin (generic term)|diacetylmorphine (generic term)
+(verb)|move (generic term)
+(verb)|roar|shout (generic term)
+(verb)|boom
+(verb)|roar (generic term)|howl (generic term)
+thunder bay|1
+(noun)|Thunder Bay|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+thunder lizard|1
+(noun)|apatosaur|apatosaurus|brontosaur|brontosaurus|Apatosaurus excelsus|sauropod (generic term)|sauropod dinosaur (generic term)
+thunder mug|1
+(noun)|chamberpot|potty|receptacle (generic term)
+thunder snake|1
+(noun)|worm snake|Carphophis amoenus|colubrid snake (generic term)|colubrid (generic term)
+thunderbird|1
+(noun)|spirit (generic term)|disembodied spirit (generic term)
+thunderbolt|2
+(noun)|bolt|bolt of lightning|lightning (generic term)
+(noun)|bombshell|thunderclap|surprise (generic term)
+thunderclap|2
+(noun)|thunder (generic term)
+(noun)|bombshell|thunderbolt|surprise (generic term)
+thundercloud|1
+(noun)|cumulonimbus|cumulonimbus cloud|cloud (generic term)
+thunderer|2
+(noun)|Jupiter Tonans|Thunderer|Jupiter (generic term)|Jove (generic term)
+(noun)|noisemaker (generic term)
+thunderhead|1
+(noun)|cumulus (generic term)|cumulus cloud (generic term)
+thundering|2
+(adj)|noisy (similar term)
+(adj)|impressive (similar term)
+thunderous|2
+(adj)|deafening|earsplitting|roaring|thundery|loud (similar term)
+(adj)|unpropitious (similar term)
+thundershower|1
+(noun)|rainstorm (generic term)
+thunderstorm|1
+(noun)|electrical storm|electric storm|storm (generic term)|violent storm (generic term)
+thunderstruck|1
+(adj)|dumbfounded|dumfounded|flabbergasted|stupefied|dumbstruck|dumbstricken|surprised (similar term)
+thundery|2
+(adj)|deafening|earsplitting|roaring|thunderous|loud (similar term)
+(adj)|stormy (similar term)
+thunk|1
+(noun)|sound (generic term)
+thunnus|1
+(noun)|Thunnus|genus Thunnus|fish genus (generic term)
+thunnus alalunga|1
+(noun)|albacore|long-fin tunny|Thunnus alalunga|tuna (generic term)|tunny (generic term)
+thunnus albacares|1
+(noun)|yellowfin|yellowfin tuna|Thunnus albacares|tuna (generic term)|tunny (generic term)
+thunnus thynnus|1
+(noun)|bluefin|bluefin tuna|horse mackerel|Thunnus thynnus|tuna (generic term)|tunny (generic term)
+thurber|1
+(noun)|Thurber|James Thurber|James Grover Thurber|humorist (generic term)|humourist (generic term)|cartoonist (generic term)
+thurible|1
+(noun)|censer|vessel (generic term)
+thurifer|1
+(noun)|acolyte (generic term)
+thurify|1
+(verb)|cense|incense|odorize (generic term)|odourise (generic term)|scent (generic term)
+thuringia|1
+(noun)|Thuringia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+thursday|1
+(noun)|Thursday|Th|weekday (generic term)
+thus|3
+(noun)|frankincense|olibanum|gum olibanum|gum (generic term)
+(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 (generic term)
+(verb)|smack|hit (generic term)
+thwart|2
+(noun)|cross thwart|crosspiece (generic term)
+(verb)|queer|spoil|scotch|foil|cross|frustrate|baffle|bilk|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)|double cross (related term)
+thwarted|1
+(adj)|defeated|disappointed|discomfited|foiled|frustrated|unsuccessful (similar term)
+thwarter|1
+(noun)|obstructionist|obstructor|obstructer|resister|disputant (generic term)|controversialist (generic term)|eristic (generic term)
+thwarting|2
+(adj)|frustrating|frustrative|preventive (similar term)|preventative (similar term)
+(noun)|frustration|foiling|hindrance (generic term)|hinderance (generic term)|interference (generic term)
+thwartwise|1
+(adj)|cross|transverse|transversal|crosswise (similar term)
+thylacine|1
+(noun)|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial (generic term)|dasyurid (generic term)
+thylacinus|1
+(noun)|Thylacinus|genus Thylacinus|mammal genus (generic term)
+thylacinus cynocephalus|1
+(noun)|thylacine|Tasmanian wolf|Tasmanian tiger|Thylacinus cynocephalus|dasyurid marsupial (generic term)|dasyurid (generic term)
+thylogale|1
+(noun)|Thylogale|genus Thylogale|mammal genus (generic term)
+thyme|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|herb (generic term)
+thyme-leaved sandwort|1
+(noun)|Arenaria serpyllifolia|sandwort (generic term)
+thyme-leaved speedwell|1
+(noun)|Veronica serpyllifolia|veronica (generic term)|speedwell (generic term)
+thyme camphor|1
+(noun)|thymol|thymic acid|phenol (generic term)
+thymelaeaceae|1
+(noun)|Thymelaeaceae|family Thymelaeaceae|daphne family|dicot family (generic term)|magnoliopsid family (generic term)
+thymelaeales|1
+(noun)|Myrtales|order Myrtales|Thymelaeales|order Thymelaeales|plant order (generic term)
+thymic acid|1
+(noun)|thymol|thyme camphor|phenol (generic term)
+thymidine|1
+(noun)|deoxythymidine|nucleoside (generic term)
+thymine|1
+(noun)|T|pyrimidine (generic term)
+thymol|1
+(noun)|thyme camphor|thymic acid|phenol (generic term)
+thymosin|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thymus|2
+(noun)|Thymus|genus Thymus|asterid dicot genus (generic term)
+(noun)|thymus gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+thymus gland|1
+(noun)|thymus|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+thymus serpyllum|1
+(noun)|wild thyme|creeping thyme|Thymus serpyllum|thyme (generic term)
+thymus vulgaris|1
+(noun)|common thyme|Thymus vulgaris|thyme (generic term)
+thyreophora|1
+(noun)|Thyreophora|suborder Thyreophora|thyreophoran|animal order (generic term)
+thyreophoran|1
+(noun)|Thyreophora|suborder Thyreophora|animal order (generic term)
+thyrocalcitonin|1
+(noun)|calcitonin|thyroid hormone (generic term)
+thyroglobulin|1
+(noun)|iodoprotein (generic term)|iodinated protein (generic term)
+thyroid|3
+(adj)|thyroidal|endocrine gland|endocrine|ductless gland (related term)
+(adj)|endocrine gland|endocrine|ductless gland (related term)
+(noun)|thyroid gland|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+thyroid-stimulating hormone|1
+(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyroid cartilage|1
+(noun)|Adam's apple|cartilage (generic term)|gristle (generic term)
+thyroid gland|1
+(noun)|thyroid|endocrine gland (generic term)|endocrine (generic term)|ductless gland (generic term)
+thyroid hormone|1
+(noun)|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyroid vein|1
+(noun)|vena thyroidea|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+thyroidal|1
+(adj)|thyroid|endocrine gland|endocrine|ductless gland (related term)
+thyroidectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+thyroiditis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+thyromegaly|1
+(noun)|goiter|goitre|struma|disease (generic term)
+thyronine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+thyroprotein|1
+(noun)|iodoprotein (generic term)|iodinated protein (generic term)
+thyrotoxic|1
+(adj)|glandular disease|gland disease|glandular disorder|adenosis (related term)
+thyrotoxicosis|1
+(noun)|hyperthyroidism|glandular disease (generic term)|gland disease (generic term)|glandular disorder (generic term)|adenosis (generic term)|hypothyroidism (antonym)
+thyrotrophic hormone|1
+(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyroid-stimulating hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyrotrophin|1
+(noun)|thyrotropin|thyrotropic hormone|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyrotropic hormone|1
+(noun)|thyrotropin|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyrotropin|1
+(noun)|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyrotropin-releasing factor|1
+(noun)|thyrotropin-releasing hormone|TRH|TRF|protirelin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyrotropin-releasing hormone|1
+(noun)|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+thyroxin|1
+(noun)|thyroxine|tetraiodothyronine|T|thyroid hormone (generic term)
+thyroxine|1
+(noun)|thyroxin|tetraiodothyronine|T|thyroid hormone (generic term)
+thyrse|1
+(noun)|thyrsus|flower cluster (generic term)
+thyrsopteris|1
+(noun)|Thyrsopteris elegans|tree fern (generic term)
+thyrsopteris elegans|1
+(noun)|thyrsopteris|Thyrsopteris elegans|tree fern (generic term)
+thyrsus|1
+(noun)|thyrse|flower cluster (generic term)
+thysanocarpus|1
+(noun)|Thysanocarpus|genus Thysanocarpus|dilleniid dicot genus (generic term)
+thysanopter|1
+(noun)|thysanopteron|thysanopterous insect|insect (generic term)
+thysanoptera|1
+(noun)|Thysanoptera|order Thysanoptera|animal order (generic term)
+thysanopteron|1
+(noun)|thysanopter|thysanopterous insect|insect (generic term)
+thysanopterous insect|1
+(noun)|thysanopter|thysanopteron|insect (generic term)
+thysanura|1
+(noun)|Thysanura|order Thysanura|animal order (generic term)
+thysanuran insect|1
+(noun)|thysanuron|insect (generic term)
+thysanuron|1
+(noun)|thysanuran insect|insect (generic term)
+thz|1
+(noun)|terahertz|THz|rate (generic term)
+ti|3
+(noun)|titanium|Ti|atomic number 22|metallic element (generic term)|metal (generic term)
+(noun)|Cordyline terminalis|shrub (generic term)|bush (generic term)
+(noun)|te|si|solfa syllable (generic term)
+tia|1
+(noun)|transient ischemic attack|TIA|ischemia (generic term)|ischaemia (generic term)
+tiamat|1
+(noun)|Tiamat|Semitic deity (generic term)
+tianjin|1
+(noun)|Tianjin|Tientsin|T'ien-ching|city (generic term)|metropolis (generic term)|urban center (generic term)
+tiara|1
+(noun)|jewelled headdress (generic term)
+tiarella|1
+(noun)|Tiarella|genus Tiarella|rosid dicot genus (generic term)
+tiarella cordifolia|1
+(noun)|foamflower|coolwart|false miterwort|false mitrewort|Tiarella cordifolia|herb (generic term)|herbaceous plant (generic term)
+tiarella unifoliata|1
+(noun)|false miterwort|false mitrewort|Tiarella unifoliata|wildflower (generic term)|wild flower (generic term)
+tiber|1
+(noun)|Tiber|Tevere|river (generic term)
+tiberius|1
+(noun)|Tiberius|Tiberius Claudius Nero Caesar Augustus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+tiberius claudius drusus nero germanicus|1
+(noun)|Claudius|Claudius I|Tiberius Claudius Drusus Nero Germanicus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+tiberius claudius nero caesar augustus|1
+(noun)|Tiberius|Tiberius Claudius Nero Caesar Augustus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+tibet|1
+(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country (generic term)|Asian nation (generic term)
+tibetan|3
+(adj)|Tibetan|Asian country|Asian nation (related term)
+(noun)|Tibetan|Himalayish (generic term)
+(noun)|Tibetan|Asian (generic term)|Asiatic (generic term)
+tibetan buddhism|1
+(noun)|Lamaism|Tibetan Buddhism|Buddhism (generic term)
+tibetan mastiff|1
+(noun)|Tibetan mastiff|mastiff (generic term)
+tibetan terrier|1
+(noun)|Tibetan terrier|chrysanthemum dog|terrier (generic term)
+tibeto-burman|1
+(noun)|Tibeto-Burman|Tibeto-Burman language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+tibeto-burman language|1
+(noun)|Tibeto-Burman|Tibeto-Burman language|Sino-Tibetan (generic term)|Sino-Tibetan language (generic term)
+tibia|1
+(noun)|shinbone|shin|leg bone (generic term)
+tibia valga|1
+(noun)|knock-knee|genu valgum|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+tibia vara|1
+(noun)|bowleg|genu varum|leg (generic term)|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+tibial|1
+(adj)|leg bone (related term)
+tibial vein|1
+(noun)|vena tibialis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+tibialis|1
+(noun)|tibialis muscle|musculus tibialis|skeletal muscle (generic term)|striated muscle (generic term)
+tibialis anterior|1
+(noun)|tibialis anticus|tibialis (generic term)|tibialis muscle (generic term)|musculus tibialis (generic term)
+tibialis anticus|1
+(noun)|tibialis anterior|tibialis (generic term)|tibialis muscle (generic term)|musculus tibialis (generic term)
+tibialis muscle|1
+(noun)|tibialis|musculus tibialis|skeletal muscle (generic term)|striated muscle (generic term)
+tibialis posterior|1
+(noun)|tibialis posticus|tibialis (generic term)|tibialis muscle (generic term)|musculus tibialis (generic term)
+tibialis posticus|1
+(noun)|tibialis posterior|tibialis (generic term)|tibialis muscle (generic term)|musculus tibialis (generic term)
+tibicen|1
+(noun)|Tibicen|genus Tibicen|arthropod genus (generic term)
+tibur|1
+(noun)|Tivoli|Tibur|town (generic term)
+tic|1
+(noun)|twitch (generic term)|twitching (generic term)|vellication (generic term)
+tic-tac-toe|1
+(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tit-tat-toe|noughts and crosses|board game (generic term)
+tic douloureux|1
+(noun)|trigeminal neuralgia|neuralgia (generic term)|neuralgy (generic term)
+tical|1
+(noun)|baht|Thai monetary unit (generic term)
+tichodroma|1
+(noun)|Tichodroma|genus Tichodroma|bird genus (generic term)
+tichodroma muriaria|1
+(noun)|wall creeper|tichodrome|Tichodroma muriaria|creeper (generic term)|tree creeper (generic term)
+tichodrome|1
+(noun)|wall creeper|Tichodroma muriaria|creeper (generic term)|tree creeper (generic term)
+ticino|1
+(noun)|Ticino|Tessin|Swiss canton (generic term)
+tick|8
+(noun)|ticking|sound (generic term)
+(noun)|acarine (generic term)
+(noun)|check mark|check|mark (generic term)
+(noun)|mattress (generic term)
+(verb)|click|sound (generic term)|go (generic term)
+(verb)|ticktock|ticktack|beat|sound (generic term)|go (generic term)
+(verb)|retick|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+(verb)|check|check off|mark|mark off|tick off|verify (generic term)
+tick-tack-toe|1
+(noun)|ticktacktoe|ticktacktoo|tic-tac-toe|tit-tat-toe|noughts and crosses|board game (generic term)
+tick-weed|1
+(noun)|coreopsis|tickseed|tickweed|herb (generic term)|herbaceous plant (generic term)
+tick fever|1
+(noun)|Rocky Mountain spotted fever|mountain fever|spotted fever (generic term)
+tick off|1
+(verb)|check|check off|mark|mark off|tick|verify (generic term)
+tick over|1
+(verb)|idle|run (antonym)
+tick trefoil|1
+(noun)|beggar lice|beggar's lice|subshrub (generic term)|suffrutex (generic term)
+ticker|3
+(noun)|heart|pump|internal organ (generic term)|viscus (generic term)
+(noun)|watch|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+(noun)|stock ticker|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+ticker tape|1
+(noun)|paper (generic term)
+ticket|6
+(noun)|commercial document (generic term)|commercial instrument (generic term)
+(noun)|summons (generic term)|process (generic term)
+(noun)|slate|list (generic term)|listing (generic term)
+(noun)|just the ticket|appropriateness (generic term)
+(verb)|fine|book (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+ticket-of-leave|1
+(noun)|pass (generic term)|laissez passer (generic term)
+ticket agent|1
+(noun)|booking clerk|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+ticket book|1
+(noun)|booklet (generic term)|brochure (generic term)|folder (generic term)|leaflet (generic term)|pamphlet (generic term)
+ticket booth|1
+(noun)|box office|ticket office|office (generic term)|business office (generic term)
+ticket collector|1
+(noun)|ticket taker|doorkeeper (generic term)|doorman (generic term)|door guard (generic term)|hall porter (generic term)|porter (generic term)|gatekeeper (generic term)|ostiary (generic term)
+ticket holder|1
+(noun)|holder (generic term)|bearer (generic term)
+ticket line|1
+(noun)|queue (generic term)|waiting line (generic term)
+ticket office|1
+(noun)|box office|ticket booth|office (generic term)|business office (generic term)
+ticket stub|1
+(noun)|stub|receipt (generic term)
+ticket taker|1
+(noun)|ticket collector|doorkeeper (generic term)|doorman (generic term)|door guard (generic term)|hall porter (generic term)|porter (generic term)|gatekeeper (generic term)|ostiary (generic term)
+ticket tout|1
+(noun)|tout|scalper (generic term)
+ticket window|1
+(noun)|window (generic term)
+ticking|2
+(noun)|tick|sound (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+ticking bomb|1
+(noun)|time bomb|situation (generic term)
+tickle|5
+(noun)|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+(noun)|tickling|titillation|touch (generic term)|touching (generic term)
+(verb)|titillate|vellicate|itch (generic term)
+(verb)|thrill|vibrate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|caress (generic term)
+tickler|1
+(noun)|tickler file|file (generic term)|data file (generic term)
+tickler coil|1
+(noun)|coil (generic term)
+tickler file|1
+(noun)|tickler|file (generic term)|data file (generic term)
+tickling|2
+(adj)|tingling|titillating|exciting (similar term)
+(noun)|tickle|titillation|touch (generic term)|touching (generic term)
+ticklish|1
+(adj)|delicate|touchy|difficult (similar term)|hard (similar term)
+tickseed|1
+(noun)|coreopsis|tickweed|tick-weed|herb (generic term)|herbaceous plant (generic term)
+tickseed sunflower|1
+(noun)|Bidens coronata|Bidens trichosperma|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+ticktack|2
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+(verb)|tick|ticktock|beat|sound (generic term)|go (generic term)
+ticktacktoe|1
+(noun)|ticktacktoo|tick-tack-toe|tic-tac-toe|tit-tat-toe|noughts and crosses|board game (generic term)
+ticktacktoo|1
+(noun)|ticktacktoe|tick-tack-toe|tic-tac-toe|tit-tat-toe|noughts and crosses|board game (generic term)
+ticktock|2
+(noun)|tocktact|tictac|tick (generic term)|ticking (generic term)
+(verb)|tick|ticktack|beat|sound (generic term)|go (generic term)
+tickweed|1
+(noun)|coreopsis|tickseed|tick-weed|herb (generic term)|herbaceous plant (generic term)
+ticonderoga|1
+(noun)|Fort Ticonderoga|Ticonderoga|pitched battle (generic term)
+tictac|1
+(noun)|ticktock|tocktact|tick (generic term)|ticking (generic term)
+tidal|1
+(adj)|periodic event|recurrent event (related term)
+tidal basin|1
+(noun)|basin (generic term)
+tidal bore|1
+(noun)|bore|eagre|aegir|eager|tidal flow (generic term)|tidal current (generic term)
+tidal current|1
+(noun)|tidal flow|current (generic term)|stream (generic term)
+tidal flow|1
+(noun)|tidal current|current (generic term)|stream (generic term)
+tidal river|1
+(noun)|tidewater river|tidal stream|tidewater stream|stream (generic term)|watercourse (generic term)
+tidal stream|1
+(noun)|tidal river|tidewater river|tidewater stream|stream (generic term)|watercourse (generic term)
+tidal wave|3
+(noun)|manifestation (generic term)
+(noun)|wave (generic term)|moving ridge (generic term)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+(noun)|wave (generic term)|moving ridge (generic term)
+tidal zone|1
+(noun)|zone (generic term)
+tidbit|1
+(noun)|choice morsel|titbit|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+tiddler|1
+(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+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 (similar term)|drunk (similar term)|inebriated (similar term)
+tiddlywinks|1
+(noun)|child's game (generic term)
+tide|6
+(noun)|periodic event (generic term)|recurrent event (generic term)
+(noun)|variation (generic term)|fluctuation (generic term)
+(noun)|lunar time period|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|surge|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)|ebb (antonym)
+(verb)|float (generic term)|tide over (related term)
+(verb)|float (generic term)|drift (generic term)|be adrift (generic term)|blow (generic term)
+tide over|1
+(verb)|bridge over|keep going|suffice (generic term)|do (generic term)|answer (generic term)|serve (generic term)
+tide rip|1
+(noun)|rip|riptide|crosscurrent|countercurrent|turbulence (generic term)|turbulency (generic term)
+tideland|1
+(noun)|seashore (generic term)|coast (generic term)|seacoast (generic term)|sea-coast (generic term)
+tidemark|1
+(noun)|indicator (generic term)
+tidewater|2
+(noun)|coastal plain (generic term)
+(noun)|Tidewater|Tidewater region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+tidewater region|1
+(noun)|Tidewater|Tidewater region|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+tidewater river|1
+(noun)|tidal river|tidal stream|tidewater stream|stream (generic term)|watercourse (generic term)
+tidewater stream|1
+(noun)|tidal river|tidewater river|tidal stream|stream (generic term)|watercourse (generic term)
+tideway|1
+(noun)|channel (generic term)
+tidiness|2
+(noun)|orderliness (generic term)|order (generic term)|untidiness (antonym)
+(noun)|neatness|cleanliness (generic term)|untidiness (antonym)
+tidings|1
+(noun)|news|intelligence|word|information (generic term)|info (generic term)
+tidy|5
+(adj)|clean-cut (similar term)|trig (similar term)|trim (similar term)|neat (similar term)|neat (similar term)|orderly (similar term)|ruly (similar term)|shipshape (similar term)|trim (similar term)|well-kept (similar term)|slicked up (similar term)|straight (similar term)|uncluttered (similar term)|unlittered (similar term)|clean (related term)|fastidious (related term)|groomed (related term)|untidy (antonym)
+(adj)|kempt|groomed (similar term)
+(adj)|goodly|goodish|hefty|respectable|sizable|sizeable|considerable (similar term)
+(noun)|receptacle (generic term)
+(verb)|tidy up|clean up|neaten|straighten|straighten out|square away|order (generic term)
+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 (generic term)|large indefinite amount (generic term)
+tidy tips|1
+(noun)|tidytips|Layia platyglossa|flower (generic term)
+tidy up|1
+(verb)|tidy|clean up|neaten|straighten|straighten out|square away|order (generic term)
+tidytips|1
+(noun)|tidy tips|Layia platyglossa|flower (generic term)
+tie|18
+(noun)|necktie|neckwear (generic term)
+(noun)|affiliation|association|tie-up|relationship (generic term)
+(noun)|draw|standoff|finish (generic term)
+(noun)|tie beam|beam (generic term)
+(noun)|link|linkup|tie-in|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(noun)|equality (generic term)|equivalence (generic term)|equation (generic term)|par (generic term)
+(noun)|slur (generic term)
+(noun)|railroad tie|crosstie|sleeper|brace (generic term)|bracing (generic term)
+(noun)|cord (generic term)
+(verb)|bind|fasten (generic term)|fix (generic term)|secure (generic term)|tie down (related term)|tie up (related term)|untie (antonym)
+(verb)|draw|equal (generic term)|match (generic term)|equalize (generic term)|equalise (generic term)|equate (generic term)
+(verb)|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|connect|link|link up|disconnect (antonym)
+(verb)|shape (generic term)|form (generic term)
+(verb)|bind|attach|bond|relate (generic term)
+(verb)|marry|wed|splice|officiate (generic term)
+(verb)|fashion (generic term)|forge (generic term)
+(verb)|connect (generic term)|link (generic term)|tie (generic term)|link up (generic term)
+tie-dye|1
+(verb)|hand-dye (generic term)
+tie-in|1
+(noun)|link|linkup|tie|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+tie-on|1
+(adj)|attachable (similar term)
+tie-up|2
+(noun)|affiliation|association|tie|relationship (generic term)
+(noun)|stand|standstill|stop (generic term)|halt (generic term)
+tie beam|1
+(noun)|tie|beam (generic term)
+tie clip|1
+(noun)|jewelry (generic term)|jewellery (generic term)
+tie down|2
+(verb)|tie up|bind|truss|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|oblige (generic term)|bind (generic term)|hold (generic term)|obligate (generic term)
+tie in|2
+(verb)|relate (generic term)|interrelate (generic term)
+(verb)|associate|relate|link|colligate|link up|connect|think (generic term)|cogitate (generic term)|cerebrate (generic term)|dissociate (antonym)
+tie rack|1
+(noun)|rack (generic term)
+tie rod|1
+(noun)|rod (generic term)
+tie tack|1
+(noun)|tiepin|scarfpin|pin (generic term)
+tie up|5
+(verb)|tie down|bind|truss|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|invest (generic term)|put (generic term)|commit (generic term)|place (generic term)
+(verb)|obstruct (generic term)|obturate (generic term)|impede (generic term)|occlude (generic term)|jam (generic term)|block (generic term)|close up (generic term)
+(verb)|moor|berth|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|bind off|tie (generic term)|bind (generic term)
+tieback|1
+(noun)|pullback|holding device (generic term)
+tiebreaker|1
+(noun)|overtime (generic term)|extra time (generic term)
+tied|5
+(adj)|trussed|bound (similar term)
+(adj)|united (similar term)
+(adj)|fastened|knotted (similar term)|untied (antonym)
+(adj)|laced|unlaced (antonym)
+(adj)|even|level|equal (similar term)
+tied up|1
+(adj)|busy (similar term)
+tien-pao|1
+(noun)|Tien-pao|Heavenly Jewel|Chinese deity (generic term)
+tien shan|1
+(noun)|Tien Shan|Tyan Shan|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+tientsin|1
+(noun)|Tianjin|Tientsin|T'ien-ching|city (generic term)|metropolis (generic term)|urban center (generic term)
+tiepin|1
+(noun)|tie tack|scarfpin|pin (generic term)
+tiepolo|1
+(noun)|Tiepolo|Giovanni Battista Tiepolo|painter (generic term)
+tier|5
+(noun)|grade|level|rank (generic term)
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|tier up|worker (generic term)
+(noun)|rope (generic term)
+(noun)|layer (generic term)|bed (generic term)
+tier up|1
+(noun)|tier|worker (generic term)
+tierce|3
+(noun)|terce|canonical hour (generic term)
+(noun)|three|3|III|trio|threesome|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|one-third|third|common fraction (generic term)|simple fraction (generic term)
+tiercel|1
+(noun)|tercel|tercelet|hawk (generic term)
+tiered|1
+(adj)|layer|bed (related term)
+tiered seat|1
+(noun)|seating (generic term)|seats (generic term)|seating room (generic term)|seating area (generic term)
+tierra del fuego|1
+(noun)|Tierra del Fuego|archipelago (generic term)
+tietze's syndrome|1
+(noun)|Tietze's syndrome|syndrome (generic term)
+tiff|1
+(noun)|bicker|bickering|spat|squabble|pettifoggery|fuss|quarrel (generic term)|wrangle (generic term)|row (generic term)|words (generic term)|run-in (generic term)|dustup (generic term)
+tiffany|1
+(noun)|Tiffany|Louis Comfort Tiffany|artist (generic term)|creative person (generic term)
+tiffany glass|1
+(noun)|Tiffany glass|stained glass (generic term)
+tiffin|1
+(noun)|lunch|luncheon|dejeuner|meal (generic term)|repast (generic term)
+tiflis|1
+(noun)|Tbilisi|Tiflis|capital of Georgia|capital (generic term)
+tiger|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Panthera tigris|big cat (generic term)|cat (generic term)
+tiger-striped|1
+(adj)|patterned (similar term)
+tiger beetle|1
+(noun)|beetle (generic term)
+tiger cat|2
+(noun)|Felis tigrina|wildcat (generic term)
+(noun)|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tiger cowrie|1
+(noun)|Cypraea tigris|cowrie (generic term)|cowry (generic term)
+tiger cub|1
+(noun)|cub (generic term)|young carnivore (generic term)|tiger (generic term)|Panthera tigris (generic term)
+tiger lily|2
+(noun)|devil lily|kentan|Lilium lancifolium|lily (generic term)
+(noun)|leopard lily|pine lily|Lilium catesbaei|lily (generic term)
+tiger moth|1
+(noun)|arctiid (generic term)|arctiid moth (generic term)
+tiger rattlesnake|1
+(noun)|Crotalus tigris|rattlesnake (generic term)|rattler (generic term)
+tiger salamander|1
+(noun)|Ambystoma tigrinum|ambystomid (generic term)|ambystomid salamander (generic term)
+tiger shark|1
+(noun)|Galeocerdo cuvieri|requiem shark (generic term)
+tiger snake|1
+(noun)|Notechis scutatus|elapid (generic term)|elapid snake (generic term)
+tigerish|1
+(adj)|merciless (similar term)|unmerciful (similar term)
+tigers|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tight|16
+(adj)|binding (similar term)|constricting (similar term)|choky (similar term)|clenched (similar term)|clinched (similar term)|close (similar term)|snug (similar term)|close-fitting (similar term)|skintight (similar term)|skin-tight (similar term)|tight-fitting (similar term)|tightly fitting (similar term)|skinny (similar term)|viselike (similar term)|tense (related term)|tight (related term)|loose (antonym)
+(adj)|taut|tense (similar term)
+(adj)|invulnerable (similar term)
+(adj)|compressed|closed (similar term)|shut (similar term)
+(adj)|mean|mingy|miserly|stingy (similar term)|ungenerous (similar term)
+(adj)|scarce (similar term)
+(adj)|airtight (similar term)|air-tight (similar term)|gas-tight (similar term)|dripless (similar term)|hermetic (similar term)|leakproof (similar term)|rainproof (similar term)|waterproof (similar term)|waterproofed (similar term)|snug (similar term)|watertight (similar term)|impermeable (related term)|seaworthy (related term)|tight (related term)|leaky (antonym)
+(adj)|close|fine (similar term)
+(adj)|secure (similar term)
+(adj)|close|equal (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+(adj)|nasty|difficult (similar term)|hard (similar term)
+(adj)|rigorous|stringent|demanding (similar term)
+(adj)|compact (similar term)
+(adv)|fast
+(adv)|close|closely
+tight-fitting|1
+(adj)|tightly fitting|skinny|tight (similar term)
+tight-knit|1
+(adj)|tightly knit|integrated (similar term)
+tight-laced|1
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|victorian|proper (similar term)
+tight end|1
+(noun)|end (generic term)
+tight money|1
+(noun)|financial condition (generic term)|economic condition (generic term)|easy money (antonym)
+tighten|4
+(verb)|fasten|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+(verb)|stiffen|tighten up|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+(verb)|reduce|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+tighten one's belt|1
+(verb)|save (generic term)|economize (generic term)|economise (generic term)
+tighten up|1
+(verb)|stiffen|tighten|constrain|restrict (generic term)|restrain (generic term)|trammel (generic term)|limit (generic term)|bound (generic term)|confine (generic term)|throttle (generic term)
+tightened|1
+(adj)|demanding (similar term)
+tightening|1
+(noun)|alteration (generic term)|modification (generic term)|adjustment (generic term)|loosening (antonym)
+tightfisted|1
+(adj)|closefisted|hardfisted|stingy (similar term)|ungenerous (similar term)
+tightfistedness|1
+(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightness|closeness|stinginess (generic term)
+tightlipped|1
+(adj)|close|closelipped|closemouthed|secretive|uncommunicative (similar term)|incommunicative (similar term)
+tightly fitting|1
+(adj)|tight-fitting|skinny|tight (similar term)
+tightly knit|1
+(adj)|tight-knit|integrated (similar term)
+tightness|5
+(noun)|stringency|lack (generic term)|deficiency (generic term)|want (generic term)
+(noun)|constriction|feeling (generic term)
+(noun)|concentration|density|denseness|compactness|spacing (generic term)|spatial arrangement (generic term)|distribution (antonym)
+(noun)|meanness|minginess|niggardliness|niggardness|parsimony|parsimoniousness|tightfistedness|closeness|stinginess (generic term)
+(noun)|tautness|immovability (generic term)|immovableness (generic term)|looseness (antonym)
+tightrope|1
+(noun)|rope (generic term)
+tightrope walker|1
+(noun)|funambulist|acrobat (generic term)
+tightrope walking|1
+(noun)|funambulism|sport (generic term)|athletics (generic term)
+tights|1
+(noun)|leotards|hosiery (generic term)|hose (generic term)
+tightwad|1
+(noun)|cheapskate|miser (generic term)
+tiglon|1
+(noun)|tigon|big cat (generic term)|cat (generic term)
+tigon|1
+(noun)|tiglon|big cat (generic term)|cat (generic term)
+tigress|1
+(noun)|tiger (generic term)|Panthera tigris (generic term)
+tigris|1
+(noun)|Tigris|Tigris River|river (generic term)
+tigris river|1
+(noun)|Tigris|Tigris River|river (generic term)
+tijuana|1
+(noun)|Tijuana|city (generic term)|metropolis (generic term)|urban center (generic term)
+tike|2
+(noun)|peasant|barbarian|boor|churl|Goth|tyke|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+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 (generic term)
+tilapia nilotica|1
+(noun)|bolti|Tilapia nilotica|cichlid (generic term)|cichlid fish (generic term)
+tilde|1
+(noun)|diacritical mark (generic term)|diacritic (generic term)
+tilden|1
+(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player (generic term)
+tile|3
+(noun)|slab (generic term)
+(noun)|roofing tile|roofing material (generic term)
+(verb)|cover (generic term)
+tile cutter|1
+(noun)|cutter (generic term)|cutlery (generic term)|cutting tool (generic term)
+tile roof|1
+(noun)|roof (generic term)
+tiled|1
+(adj)|covered (similar term)
+tilefish|2
+(noun)|blanquillo|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|Lopholatilus chamaeleonticeps|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+tiler|1
+(noun)|worker (generic term)
+tilia|1
+(noun)|Tilia|genus Tilia|dilleniid dicot genus (generic term)
+tilia americana|1
+(noun)|American basswood|American lime|Tilia americana|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+tilia cordata|1
+(noun)|small-leaved linden|small-leaved lime|Tilia cordata|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+tilia heterophylla|1
+(noun)|white basswood|cottonwood|Tilia heterophylla|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+tilia japonica|1
+(noun)|Japanese linden|Japanese lime|Tilia japonica|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+tilia tomentosa|1
+(noun)|silver lime|silver linden|Tilia tomentosa|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+tiliaceae|1
+(noun)|Tiliaceae|family Tiliaceae|linden family|dilleniid dicot family (generic term)
+tiling|1
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+tiliomycetes|1
+(noun)|Tiliomycetes|class Tiliomycetes|class (generic term)
+till|4
+(noun)|boulder clay|soil (generic term)|dirt (generic term)
+(noun)|public treasury|trough|treasury (generic term)|exchequer (generic term)
+(noun)|cashbox|money box|strongbox (generic term)|deedbox (generic term)
+(verb)|work (generic term)|work on (generic term)|process (generic term)
+tillable|1
+(adj)|arable|cultivable|cultivatable|productive (similar term)
+tillage|2
+(noun)|cultivated land|farmland|plowland|ploughland|tilled land|tilth|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|culture (generic term)
+tillandsia|1
+(noun)|Tillandsia|genus Tillandsia|monocot genus (generic term)|liliopsid genus (generic term)
+tillandsia usneoides|1
+(noun)|Spanish moss|old man's beard|black moss|long moss|Tillandsia usneoides|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+tilled|1
+(adj)|plowed (similar term)|ploughed (similar term)
+tilled land|1
+(noun)|cultivated land|farmland|plowland|ploughland|tillage|tilth|land (generic term)|ground (generic term)|soil (generic term)
+tiller|5
+(noun)|shoot (generic term)
+(noun)|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+(noun)|lever (generic term)
+(noun)|cultivator|farm machine (generic term)
+(verb)|stool|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+tilletia|1
+(noun)|Tilletia|genus Tilletia|fungus genus (generic term)
+tilletia caries|1
+(noun)|bunt|Tilletia caries|smut (generic term)|smut fungus (generic term)
+tilletia foetida|1
+(noun)|bunt|stinking smut|Tilletia foetida|smut (generic term)|smut fungus (generic term)
+tilletiaceae|1
+(noun)|Tilletiaceae|family Tilletiaceae|fungus family (generic term)
+tillich|1
+(noun)|Tillich|Paul Tillich|Paul Johannes Tillich|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+tilling|1
+(noun)|cultivation (generic term)
+tilt|9
+(noun)|joust|struggle (generic term)|battle (generic term)
+(noun)|controversy|contention|contestation|disputation|disceptation|argument|arguing|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|partiality (generic term)|partisanship (generic term)
+(noun)|list|inclination|lean|leaning|position (generic term)|spatial relation (generic term)
+(noun)|rock|careen|sway|lurch (generic term)|pitch (generic term)|pitching (generic term)
+(verb)|lean|tip|slant|angle|bend (generic term)|flex (generic term)|tip over (related term)|tip over (related term)|lean against (related term)|lean on (related term)
+(verb)|cant|cant over|slant|pitch|move (generic term)
+(verb)|careen|wobble|shift|move (generic term)
+(verb)|joust (generic term)
+tilt-top table|1
+(noun)|tip-top table|tip table|pedestal table (generic term)
+tilt angle|1
+(noun)|angle (generic term)
+tilted|1
+(adj)|atilt|canted|leaning|tipped|inclined (similar term)
+tilter|2
+(noun)|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+(noun)|device (generic term)
+tilth|2
+(noun)|condition (generic term)|status (generic term)
+(noun)|cultivated land|farmland|plowland|ploughland|tilled land|tillage|land (generic term)|ground (generic term)|soil (generic term)
+tilting board|1
+(noun)|seesaw|teeter|teeter-totter|teetertotter|teeterboard|dandle board|plaything (generic term)|toy (generic term)
+tiltyard|1
+(noun)|yard (generic term)
+tim leary|1
+(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist (generic term)
+timalia|1
+(noun)|Timalia|genus Timalia|bird genus (generic term)
+timaliidae|1
+(noun)|Timaliidae|family Timaliidae|bird family (generic term)
+timbale|2
+(noun)|dish (generic term)
+(noun)|timbale case|pastry (generic term)
+timbale case|1
+(noun)|timbale|pastry (generic term)
+timber|5
+(noun)|lumber|building material (generic term)
+(noun)|beam (generic term)
+(noun)|post (generic term)
+(noun)|forest|woodland|timberland|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)|biome (generic term)
+(noun)|timbre|quality|tone|sound property (generic term)
+timber-framed|1
+(adj)|timbered (similar term)
+timber hitch|1
+(noun)|hitch (generic term)
+timber line|1
+(noun)|timberline|tree line|line (generic term)
+timber rattlesnake|1
+(noun)|banded rattlesnake|Crotalus horridus horridus|rattlesnake (generic term)|rattler (generic term)
+timber wolf|1
+(noun)|grey wolf|gray wolf|Canis lupus|wolf (generic term)
+timbered|2
+(adj)|half-timber (similar term)|half-timbered (similar term)|timber-framed (similar term)|untimbered (antonym)
+(adj)|wooded (similar term)
+timberland|1
+(noun)|forest|woodland|timber|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)|biome (generic term)
+timberline|1
+(noun)|timber line|tree line|line (generic term)
+timberman|1
+(noun)|owner (generic term)|proprietor (generic term)
+timbre|1
+(noun)|timber|quality|tone|sound property (generic term)
+timbrel|1
+(noun)|drum (generic term)|membranophone (generic term)|tympan (generic term)
+timbuktu|1
+(noun)|Timbuktu|city (generic term)|metropolis (generic term)|urban center (generic term)
+time|13
+(noun)|clip|case (generic term)|instance (generic term)|example (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|moment (generic term)|minute (generic term)|second (generic term)|instant (generic term)
+(noun)|attribute (generic term)
+(noun)|clock time|reading (generic term)|meter reading (generic term)|indication (generic term)
+(noun)|fourth dimension|dimension (generic term)
+(noun)|experience (generic term)
+(noun)|meter|metre|rhythmicity (generic term)
+(noun)|prison term|sentence|term (generic term)
+(verb)|clock|quantify (generic term)|measure (generic term)
+(verb)|schedule (generic term)
+(verb)|determine (generic term)|shape (generic term)|mold (generic term)|influence (generic term)|regulate (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+time-and-motion study|1
+(noun)|time and motion study|time-motion study|motion study|time study|work study|examination (generic term)|scrutiny (generic term)
+time-ball|1
+(noun)|ball (generic term)|globe (generic term)|orb (generic term)
+time-consuming|1
+(adj)|long (similar term)
+time-delay measuring instrument|1
+(noun)|time-delay measuring system|chronoscope (generic term)
+time-delay measuring system|1
+(noun)|time-delay measuring instrument|chronoscope (generic term)
+time-fuse|1
+(noun)|fuse (generic term)|fuze (generic term)|fusee (generic term)|fuzee (generic term)|primer (generic term)|priming (generic term)
+time-honored|2
+(adj)|time-honoured|honorable (similar term)|honourable (similar term)
+(adj)|time-honoured|traditional (similar term)
+time-honoured|2
+(adj)|time-honored|honorable (similar term)|honourable (similar term)
+(adj)|time-honored|traditional (similar term)
+time-motion study|1
+(noun)|time and motion study|time-and-motion study|motion study|time study|work study|examination (generic term)|scrutiny (generic term)
+time-out|1
+(noun)|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+time-release|1
+(adj)|natural process|natural action|action|activity (related term)
+time-scale factor|1
+(noun)|scale factor (generic term)
+time-switch|1
+(noun)|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+time-tested|1
+(adj)|tested|tried|tried and true|reliable (similar term)|dependable (similar term)
+time and a half|1
+(noun)|pay rate (generic term)|rate of pay (generic term)
+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 (generic term)|scrutiny (generic term)
+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 (generic term)|nowadays (generic term)
+time bill|1
+(noun)|time draft|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+time bomb|2
+(noun)|ticking bomb|situation (generic term)
+(noun)|infernal machine|bomb (generic term)
+time capsule|1
+(noun)|container (generic term)
+time clock|1
+(noun)|clock (generic term)
+time constant|2
+(noun)|time interval (generic term)|interval (generic term)
+(noun)|ratio (generic term)
+time deposit|1
+(noun)|certificate of deposit (generic term)|CD (generic term)
+time deposit account|1
+(noun)|deposit account|savings account (generic term)
+time draft|1
+(noun)|time bill|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+time exposure|2
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|exposure (generic term)
+time frame|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+time immemorial|1
+(noun)|time out of mind|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+time interval|1
+(noun)|interval|measure (generic term)|quantity (generic term)|amount (generic term)
+time lag|1
+(noun)|delay|hold|postponement|wait|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+time limit|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+time loan|1
+(noun)|loan (generic term)
+time machine|1
+(noun)|machine (generic term)
+time note|1
+(noun)|note (generic term)|promissory note (generic term)|note of hand (generic term)
+time of arrival|1
+(noun)|arrival time|point (generic term)|point in time (generic term)
+time of day|1
+(noun)|hour|clock time (generic term)|time (generic term)
+time of departure|1
+(noun)|departure time|point (generic term)|point in time (generic term)
+time of life|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+time of origin|1
+(noun)|vintage|oldness (generic term)
+time of year|1
+(noun)|season|time period (generic term)|period of time (generic term)|period (generic term)
+time off|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|work time (antonym)
+time out|1
+(noun)|respite|recess|break|pause (generic term)
+time out of mind|1
+(noun)|time immemorial|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+time period|1
+(noun)|period of time|period|fundamental quantity (generic term)|fundamental measure (generic term)
+time plan|1
+(noun)|installment plan|installment buying|regular payment (generic term)
+time scale|1
+(noun)|duration (generic term)|continuance (generic term)
+time series|1
+(noun)|statistic (generic term)
+time sharing|1
+(noun)|sharing (generic term)
+time sheet|1
+(noun)|written record (generic term)|written account (generic term)
+time signal|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+time signature|1
+(noun)|musical time signature|musical notation (generic term)
+time slot|1
+(noun)|slot|time interval (generic term)|interval (generic term)
+time study|1
+(noun)|time and motion study|time-and-motion study|time-motion study|motion study|work study|examination (generic term)|scrutiny (generic term)
+time to come|1
+(noun)|future|hereafter|futurity|time (generic term)|past (antonym)
+time unit|1
+(noun)|unit of time|measure (generic term)|quantity (generic term)|amount (generic term)
+time value|1
+(noun)|value|note value|duration (generic term)|continuance (generic term)
+time zone|1
+(noun)|zone (generic term)|geographical zone (generic term)
+timecard|2
+(noun)|written record (generic term)|written account (generic term)
+(noun)|card (generic term)
+timed|1
+(adj)|regular (similar term)
+timekeeper|3
+(noun)|timer|official (generic term)
+(noun)|clerk (generic term)
+(noun)|timepiece|horologe|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+timekeeping|1
+(noun)|activity (generic term)
+timeless|1
+(adj)|dateless|unaltered (similar term)|unchanged (similar term)
+timeless existence|1
+(noun)|eternity|timelessness|being (generic term)|beingness (generic term)|existence (generic term)
+timelessness|1
+(noun)|eternity|timeless existence|being (generic term)|beingness (generic term)|existence (generic term)
+timeline|1
+(noun)|chronology (generic term)
+timeliness|2
+(noun)|seasonableness|timing (generic term)|untimeliness (antonym)|unseasonableness (antonym)
+(noun)|opportuneness|patness|convenience (generic term)|inopportuneness (antonym)
+timely|3
+(adj)|punctual (similar term)
+(adj)|seasonable|well-timed|well timed|opportune (similar term)
+(adv)|seasonably|well-timed|apropos
+timepiece|1
+(noun)|timekeeper|horologe|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+timer|3
+(noun)|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+(noun)|timekeeper|official (generic term)
+(noun)|governor (generic term)|regulator (generic term)
+times|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|multiplication|arithmetic operation (generic term)
+times square|1
+(noun)|Times Square|city district (generic term)
+timesaving|1
+(adj)|expeditious|prompt|efficient (similar term)
+timeserver|1
+(noun)|opportunist (generic term)|self-seeker (generic term)
+timeserving|1
+(adj)|opportunist|opportunistic|expedient (similar term)
+timetable|1
+(noun)|schedule (generic term)
+timework|1
+(noun)|work (generic term)
+timeworn|1
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|tired|trite|well-worn|unoriginal (similar term)
+timgad|1
+(noun)|Timgad|town (generic term)
+timid|4
+(adj)|bashful (similar term)|coy (similar term)|fearful (similar term)|timorous (similar term)|trepid (similar term)|intimidated (similar term)|mousy (similar term)|mousey (similar term)|shy (similar term)|afraid (related term)|backward (related term)|cowardly (related term)|fearful (related term)|unadventurous (related term)|unassertive (related term)|bold (antonym)
+(adj)|diffident|shy|unsure|unconfident (similar term)
+(adj)|faint|fainthearted|faint-hearted|cowardly (similar term)|fearful (similar term)
+(noun)|cautious|people (generic term)|brave (antonym)
+timidity|2
+(noun)|timidness|timorousness|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|timorousness|fearfulness (generic term)|boldness (antonym)
+timidly|1
+(adv)|shyly|bashfully
+timidness|1
+(noun)|timidity|timorousness|fear (generic term)|fearfulness (generic term)|fright (generic term)
+timimoun|1
+(noun)|Timimoun|town (generic term)
+timing|2
+(noun)|temporal arrangement (generic term)|temporal order (generic term)
+(noun)|regulation (generic term)|regulating (generic term)
+timolol|1
+(noun)|Blocadren|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+timor|1
+(noun)|Timor|island (generic term)
+timor sea|1
+(noun)|Timor Sea|sea (generic term)
+timorese|2
+(adj)|Timorese|island (related term)
+(noun)|Timorese|Asian (generic term)|Asiatic (generic term)
+timorous|1
+(adj)|fearful|trepid|timid (similar term)
+timorously|1
+(adv)|trepidly
+timorousness|2
+(noun)|timidity|timidness|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|timidity|fearfulness (generic term)|boldness (antonym)
+timothy|3
+(noun)|herd's grass|Phleum pratense|grass (generic term)
+(noun)|Timothy|Christian (generic term)
+(noun)|hay (generic term)
+timothy francis leary|1
+(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist (generic term)
+timothy leary|1
+(noun)|Leary|Tim Leary|Timothy Leary|Timothy Francis Leary|psychologist (generic term)
+timothy miles bindon rice|1
+(noun)|Rice|Sir Tim Rice|Timothy Miles Bindon Rice|lyricist (generic term)|lyrist (generic term)
+timpani|1
+(noun)|kettle|kettledrum|tympanum|tympani|percussion instrument (generic term)|percussive instrument (generic term)
+timpanist|1
+(noun)|tympanist|drummer (generic term)
+timucu|1
+(noun)|needlefish (generic term)|gar (generic term)|billfish (generic term)
+timur|1
+(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler (generic term)|swayer (generic term)
+timur lenk|1
+(noun)|Tamerlane|Tamburlaine|Timur|Timur Lenk|ruler (generic term)|swayer (generic term)
+tin|5
+(noun)|Sn|atomic number 50|metallic element (generic term)|metal (generic term)
+(noun)|canister|cannister|container (generic term)
+(noun)|can|tin can|container (generic term)
+(verb)|can|put up|preserve (generic term)|keep (generic term)
+(verb)|plate (generic term)
+tin-plating|1
+(noun)|tinning|application (generic term)|coating (generic term)|covering (generic term)
+tin can|2
+(noun)|destroyer (generic term)|guided missile destroyer (generic term)
+(noun)|can|tin|container (generic term)
+tin disease|1
+(noun)|tin pest|tin plague|transformation (generic term)|transmutation (generic term)|shift (generic term)
+tin ear|2
+(noun)|tone deafness|deafness (generic term)|hearing loss (generic term)
+(noun)|insensitivity (generic term)|insensitiveness (generic term)
+tin foil|2
+(noun)|tinfoil|foil (generic term)
+(noun)|aluminum foil|aluminium foil|foil (generic term)
+tin hat|1
+(noun)|hard hat|safety hat|helmet (generic term)
+tin opener|1
+(noun)|can opener|opener (generic term)
+tin pan alley|1
+(noun)|Tin Pan Alley|business district (generic term)|downtown (generic term)
+tin pest|1
+(noun)|tin disease|tin plague|transformation (generic term)|transmutation (generic term)|shift (generic term)
+tin plague|1
+(noun)|tin pest|tin disease|transformation (generic term)|transmutation (generic term)|shift (generic term)
+tin plate|1
+(noun)|sheet metal (generic term)
+tin pyrites|1
+(noun)|stannite|mineral (generic term)
+tin whistle|1
+(noun)|pennywhistle|whistle|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+tinamidae|1
+(noun)|Tinamidae|family Tinamidae|bird family (generic term)
+tinamiformes|1
+(noun)|Tinamiformes|order Tinamiformes|animal order (generic term)
+tinamou|1
+(noun)|partridge|game bird (generic term)
+tinbergen|2
+(noun)|Tinbergen|Nikolaas Tinbergen|zoologist (generic term)|animal scientist (generic term)
+(noun)|Tinbergen|Jan Tinbergen|economist (generic term)|economic expert (generic term)
+tinca|1
+(noun)|Tinca|genus Tinca|fish genus (generic term)
+tinca tinca|1
+(noun)|tench|Tinca tinca|cyprinid (generic term)|cyprinid fish (generic term)
+tinct|1
+(verb)|tint|tinge|touch|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+tincture|6
+(noun)|coloring material (generic term)|colouring material (generic term)|color (generic term)|colour (generic term)
+(noun)|trace|vestige|shadow|indication (generic term)|indicant (generic term)
+(noun)|shade|tint|tone|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+(verb)|impregnate|infuse|instill|fill (generic term)|fill up (generic term)|make full (generic term)
+(verb)|tint (generic term)|tinct (generic term)|tinge (generic term)|touch (generic term)
+tincture of iodine|1
+(noun)|iodine|tincture (generic term)|antiseptic (generic term)
+tincture of opium|1
+(noun)|laudanum|opiate (generic term)
+tindal|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+tindale|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+tinder|1
+(noun)|kindling|touchwood|spunk|punk|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+tinderbox|2
+(noun)|situation (generic term)
+(noun)|box (generic term)
+tine|1
+(noun)|prong (generic term)
+tine test|1
+(noun)|tuberculin test (generic term)|tuberculin skin test (generic term)
+tinea|2
+(noun)|ringworm|roundworm|fungal infection (generic term)|mycosis (generic term)
+(noun)|Tinea|genus Tinea|arthropod genus (generic term)
+tinea barbae|1
+(noun)|barber's itch|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tinea capitis|1
+(noun)|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tinea corporis|1
+(noun)|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tinea cruris|1
+(noun)|jock itch|eczema marginatum|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tinea pedis|1
+(noun)|athlete's foot|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tinea pellionella|1
+(noun)|casemaking clothes moth|Tinea pellionella|clothes moth (generic term)
+tinea unguium|1
+(noun)|tinea (generic term)|ringworm (generic term)|roundworm (generic term)
+tined|1
+(adj)|pronged|divided (similar term)
+tineid|1
+(noun)|tineid moth|tineoid (generic term)|tineoid moth (generic term)
+tineid moth|1
+(noun)|tineid|tineoid (generic term)|tineoid moth (generic term)
+tineidae|1
+(noun)|Tineidae|family Tineidae|arthropod family (generic term)
+tineoid|1
+(noun)|tineoid moth|moth (generic term)
+tineoid moth|1
+(noun)|tineoid|moth (generic term)
+tineoidea|1
+(noun)|Tineoidea|superfamily Tineoidea|arthropod family (generic term)
+tineola|1
+(noun)|Tineola|genus Tineola|arthropod genus (generic term)
+tineola bisselliella|1
+(noun)|webbing clothes moth|webbing moth|Tineola bisselliella|clothes moth (generic term)
+tinfoil|1
+(noun)|tin foil|foil (generic term)
+ting|3
+(noun)|tinkle|sound (generic term)
+(verb)|sound (generic term)
+(verb)|sound (generic term)|go (generic term)
+tinge|4
+(noun)|touch|hint|mite|pinch|jot|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|undertone|shade (generic term)|tint (generic term)|tincture (generic term)|tone (generic term)
+(verb)|color|colour|distort|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|tint|tinct|touch|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+tingidae|1
+(noun)|Tingidae|family Tingidae|arthropod family (generic term)
+tingle|3
+(noun)|frisson|shiver|chill|quiver|shudder|thrill|fear (generic term)|fearfulness (generic term)|fright (generic term)
+(noun)|prickling|tingling|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+(verb)|prickle|itch (generic term)
+tingling|3
+(adj)|tickling|titillating|exciting (similar term)
+(adj)|prickling|stinging|painful (similar term)
+(noun)|prickling|tingle|somesthesia (generic term)|somaesthesia (generic term)|somatesthesia (generic term)|somatic sensation (generic term)
+tininess|1
+(noun)|diminutiveness|minuteness|petiteness|weeness|smallness (generic term)|littleness (generic term)
+tink|1
+(verb)|tinkle|clink|chink|sound (generic term)|go (generic term)
+tinker|6
+(noun)|tinkerer|experimenter (generic term)
+(noun)|itinerant (generic term)|gypsy (generic term)|gipsy (generic term)
+(noun)|chub mackerel|Scomber japonicus|mackerel (generic term)
+(verb)|putter|mess around|potter|monkey|monkey around|muck about|muck around|work (generic term)
+(verb)|work (generic term)|do work (generic term)
+(verb)|fiddle|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+tinker's dam|1
+(noun)|damn|darn|hoot|red cent|shit|shucks|tinker's damn|worthlessness (generic term)|ineptitude (generic term)
+tinker's damn|1
+(noun)|damn|darn|hoot|red cent|shit|shucks|tinker's dam|worthlessness (generic term)|ineptitude (generic term)
+tinker's root|1
+(noun)|feverroot|horse gentian|wild coffee|Triostium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+tinkerer|2
+(noun)|fiddler|unskilled person (generic term)
+(noun)|tinker|experimenter (generic term)
+tinkle|2
+(noun)|ting|sound (generic term)
+(verb)|tink|clink|chink|sound (generic term)|go (generic term)
+tinkling|1
+(adj)|tinkly|reverberant (similar term)|ringing (similar term)
+tinkly|1
+(adj)|tinkling|reverberant (similar term)|ringing (similar term)
+tinned|1
+(adj)|canned|preserved (similar term)
+tinned goods|1
+(noun)|canned food|canned foods|canned goods|foodstuff (generic term)|food product (generic term)
+tinned meat|1
+(noun)|canned meat|canned food (generic term)|canned foods (generic term)|canned goods (generic term)|tinned goods (generic term)
+tinner|1
+(noun)|tinsmith|smith (generic term)
+tinnevelly senna|1
+(noun)|Alexandria senna|Alexandrian senna|true senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+tinning|2
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+(noun)|tin-plating|application (generic term)|coating (generic term)|covering (generic term)
+tinnitus|1
+(noun)|symptom (generic term)
+tinny|3
+(adj)|metallic element|metal (related term)
+(adj)|bum|cheap|cheesy|chintzy|crummy|punk|sleazy|inferior (similar term)
+(adj)|metallic (similar term)|metal (similar term)
+tinpot|1
+(adj)|worthless (similar term)
+tinsel|5
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+(verb)|lend (generic term)|impart (generic term)|bestow (generic term)|contribute (generic term)|add (generic term)|bring (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|weave (generic term)|interweave (generic term)
+tinseled|1
+(adj)|clinquant|tinselly|adorned (similar term)|decorated (similar term)
+tinselly|1
+(adj)|clinquant|tinseled|adorned (similar term)|decorated (similar term)
+tinsmith|1
+(noun)|tinner|smith (generic term)
+tinsnips|1
+(noun)|snips|shears (generic term)
+tint|2
+(noun)|shade|tincture|tone|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(verb)|tinct|tinge|touch|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+tintack|1
+(noun)|tack (generic term)
+tinter|1
+(noun)|hairdresser (generic term)|hairstylist (generic term)|stylist (generic term)|styler (generic term)
+tinting|1
+(noun)|coloring (generic term)|colouring (generic term)
+tintinnabulate|1
+(verb)|ring (generic term)|peal (generic term)
+tintinnabulation|1
+(noun)|ring|ringing|sound (generic term)
+tintometer|1
+(noun)|colorimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tintoretto|1
+(noun)|Tintoretto|Jacopo Robusti|old master (generic term)
+tinware|1
+(noun)|article of commerce (generic term)
+tiny|1
+(adj)|bantam|diminutive|lilliputian|midget|petite|flyspeck|small (similar term)|little (similar term)
+tip|14
+(noun)|end (generic term)
+(noun)|gratuity|pourboire|baksheesh|bakshish|bakshis|backsheesh|fringe benefit (generic term)|perquisite (generic term)|perk (generic term)
+(noun)|lead|steer|confidential information|wind|hint|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|point|peak|convex shape (generic term)|convexity (generic term)
+(noun)|peak|crown|crest|top|summit|topographic point (generic term)|place (generic term)|spot (generic term)
+(verb)|reorient (generic term)
+(verb)|mark (generic term)
+(verb)|fee|bung|give (generic term)|gift (generic term)|present (generic term)
+(verb)|topple|tumble|push (generic term)|force (generic term)
+(verb)|lean|tilt|slant|angle|bend (generic term)|flex (generic term)|tip over (related term)|tip over (related term)|lean against (related term)|lean on (related term)
+(verb)|tiptoe|tippytoe|walk (generic term)
+(verb)|tap|strike (generic term)
+(verb)|tip off|rede (generic term)|advise (generic term)|counsel (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+tip-and-run|1
+(adj)|hit-and-run|offensive (similar term)
+tip-off|2
+(noun)|information (generic term)
+(noun)|tap-off|jump ball (generic term)
+tip-tilted|1
+(adj)|retrousse|upturned|shapely (similar term)
+tip-top table|1
+(noun)|tilt-top table|tip table|pedestal table (generic term)
+tip-up|1
+(adj)|collapsible (similar term)|collapsable (similar term)
+tip in|1
+(noun)|basketball shot (generic term)
+tip off|1
+(verb)|tip|rede (generic term)|advise (generic term)|counsel (generic term)
+tip over|2
+(verb)|overturn|turn over|upset|knock over|bowl over|tump over|move (generic term)|displace (generic term)
+(verb)|overturn|turn over|tump over|turn (generic term)
+tip sheet|1
+(noun)|publication (generic term)
+tip table|1
+(noun)|tilt-top table|tip-top table|pedestal table (generic term)
+tip truck|1
+(noun)|dump truck|dumper|tipper truck|tipper lorry|tipper|truck (generic term)|motortruck (generic term)
+tipi|1
+(noun)|tepee|teepee|tent (generic term)|collapsible shelter (generic term)|lodge (generic term)|indian lodge (generic term)
+tipped|2
+(adj)|filter-tipped (similar term)|pink-tipped (similar term)|plume-tipped (similar term)|spine-tipped (similar term)|thorn-tipped (similar term)|yellow-tipped (similar term)|untipped (antonym)
+(adj)|atilt|canted|leaning|tilted|inclined (similar term)
+tipper|2
+(noun)|donor (generic term)|giver (generic term)|presenter (generic term)|bestower (generic term)|conferrer (generic term)
+(noun)|dump truck|dumper|tipper truck|tipper lorry|tip truck|truck (generic term)|motortruck (generic term)
+tipper lorry|1
+(noun)|dump truck|dumper|tipper truck|tip truck|tipper|truck (generic term)|motortruck (generic term)
+tipper truck|1
+(noun)|dump truck|dumper|tipper lorry|tip truck|tipper|truck (generic term)|motortruck (generic term)
+tippet|1
+(noun)|cape (generic term)|mantle (generic term)
+tipple|2
+(noun)|draft|draught|potation|drink (generic term)
+(verb)|bib|drink (generic term)|booze (generic term)|fuddle (generic term)
+tippler|1
+(noun)|social drinker|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+tippy|1
+(adj)|crank|cranky|tender|unstable (similar term)
+tippytoe|1
+(verb)|tiptoe|tip|walk (generic term)
+tipsiness|1
+(noun)|drunkenness|inebriation|inebriety|intoxication|insobriety|temporary state (generic term)|soberness (antonym)
+tipstaff|1
+(noun)|staff (generic term)
+tipster|1
+(noun)|tout|adviser (generic term)|advisor (generic term)|consultant (generic term)
+tipsy|2
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+(adj)|unstable (similar term)
+tipsy cake|1
+(noun)|trifle (generic term)
+tiptoe|3
+(adj)|quiet (similar term)
+(noun)|tip (generic term)
+(verb)|tip|tippytoe|walk (generic term)
+tiptop|3
+(adj)|ace|A-one|crack|fantastic|first-rate|super|topnotch|tops|superior (similar term)
+(noun)|acme|height|elevation|peak|pinnacle|summit|superlative|meridian|top|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|top (generic term)|top side (generic term)|upper side (generic term)|upside (generic term)
+tipu|1
+(noun)|tipu tree|yellow jacaranda|pride of Bolivia|tree (generic term)
+tipu tree|1
+(noun)|tipu|yellow jacaranda|pride of Bolivia|tree (generic term)
+tipuana|1
+(noun)|Tipuana|genus Tipuana|rosid dicot genus (generic term)
+tipulidae|1
+(noun)|Tipulidae|family Tipulidae|arthropod family (generic term)
+tirade|1
+(noun)|philippic|broadside|denunciation (generic term)|denouncement (generic term)|declamation (generic term)
+tiramisu|1
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+tirana|1
+(noun)|Tirana|Albanian capital|national capital (generic term)
+tire|5
+(noun)|tyre|hoop (generic term)|ring (generic term)
+(verb)|pall|weary|fatigue|jade|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+(verb)|wear upon|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+(verb)|run down|exhaust|play out|sap|consume (generic term)|eat up (generic term)|use up (generic term)|eat (generic term)|deplete (generic term)|exhaust (generic term)|run through (generic term)|wipe out (generic term)
+(verb)|bore|interest (antonym)
+tire chain|1
+(noun)|snow chain|chain (generic term)
+tire iron|1
+(noun)|tire tool|hand tool (generic term)|lever (generic term)
+tire out|1
+(verb)|tire|wear upon|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+tire tool|1
+(noun)|tire iron|hand tool (generic term)|lever (generic term)
+tired|2
+(adj)|all in (similar term)|beat (similar term)|bushed (similar term)|dead (similar term)|aweary (similar term)|weary (similar term)|bleary (similar term)|blear (similar term)|bleary-eyed (similar term)|blear-eyed (similar term)|bored (similar term)|world-weary (similar term)|burned-out (similar term)|burnt-out (similar term)|careworn (similar term)|drawn (similar term)|haggard (similar term)|raddled (similar term)|worn (similar term)|drooping (similar term)|flagging (similar term)|exhausted (similar term)|dog-tired (similar term)|fagged (similar term)|fatigued (similar term)|played out (similar term)|spent (similar term)|washed-out (similar term)|worn-out (similar term)|worn out (similar term)|footsore (similar term)|jaded (similar term)|wearied (similar term)|knackered (similar term)|drained (similar term)|ragged (similar term)|travel-worn (similar term)|unrefreshed (similar term)|unrested (similar term)|whacked (similar term)|rested (antonym)
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|trite|well-worn|unoriginal (similar term)
+tired of|1
+(adj)|disgusted|fed up|sick|sick of|displeased (similar term)
+tiredly|1
+(adv)|wearily
+tiredness|1
+(noun)|fatigue|weariness|temporary state (generic term)
+tireless|2
+(adj)|indefatigable|unflagging|unwearying|energetic (similar term)
+(adj)|hardworking|industrious|untiring|diligent (similar term)
+tirelessly|1
+(adv)|indefatigably|inexhaustibly
+tirelessness|1
+(noun)|indefatigability|indefatigableness|determination (generic term)|purpose (generic term)
+tiresias|1
+(noun)|Tiresias|mythical being (generic term)
+tiresome|1
+(adj)|boring|deadening|dull|ho-hum|irksome|slow|tedious|wearisome|uninteresting (similar term)
+tiresomely|1
+(adv)|boringly|tediously
+tiresomeness|1
+(noun)|tediousness|tedium|dullness (generic term)
+tirich mir|1
+(noun)|Tirich Mir|mountain peak (generic term)
+tiring|1
+(adj)|exhausting|wearing|wearying|effortful (similar term)
+tiro|1
+(noun)|novice|beginner|tyro|initiate|unskilled person (generic term)
+tirol|1
+(noun)|Tyrol|Tirol|state (generic term)|province (generic term)
+tirso de molina|1
+(noun)|Tirso de Molina|Gabriel Tellez|dramatist (generic term)|playwright (generic term)
+tisane|1
+(noun)|herb tea (generic term)|herbal tea (generic term)|herbal (generic term)
+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 (generic term)|major fast day (generic term)
+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 (generic term)|major fast day (generic term)
+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 (generic term)|major fast day (generic term)
+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 (generic term)|major fast day (generic term)
+tishri|1
+(noun)|Tishri|Jewish calendar month (generic term)
+tisiphone|1
+(noun)|Tisiphone|Fury (generic term)|Eumenides (generic term)|Erinyes (generic term)
+tissue|3
+(noun)|body part (generic term)
+(noun)|tissue paper|paper (generic term)
+(verb)|weave|create from raw material (generic term)|create from raw stuff (generic term)
+tissue layer|1
+(noun)|membrane|animal tissue (generic term)
+tissue paper|1
+(noun)|tissue|paper (generic term)
+tissue plasminogen activator|1
+(noun)|Activase|thrombolytic (generic term)|thrombolytic agent (generic term)|clot buster (generic term)
+tissue typing|1
+(noun)|diagnostic test (generic term)|diagnostic assay (generic term)
+tit|3
+(noun)|breast|bosom|knocker|boob|titty|mammary gland (generic term)|mamma (generic term)
+(noun)|nipple|mammilla|mamilla|pap|teat|reproductive organ (generic term)|sex organ (generic term)
+(noun)|titmouse|oscine (generic term)|oscine bird (generic term)
+tit-tat-toe|1
+(noun)|ticktacktoe|ticktacktoo|tick-tack-toe|tic-tac-toe|noughts and crosses|board game (generic term)
+tit for tat|1
+(noun)|return (generic term)|paying back (generic term)|getting even (generic term)
+titan|3
+(noun)|colossus|behemoth|giant|heavyweight|important person (generic term)|influential person (generic term)|personage (generic term)
+(noun)|Titan|Greek deity (generic term)
+(noun)|Titan|satellite (generic term)
+titan arum|1
+(noun)|krubi|Amorphophallus titanum|arum (generic term)|aroid (generic term)
+titaness|1
+(noun)|Titaness|Greek deity (generic term)
+titania|2
+(noun)|titanium dioxide|titanium oxide|titanic oxide|pigment (generic term)|oxide (generic term)
+(noun)|Titania|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+titanic|1
+(adj)|large (similar term)|big (similar term)
+titanic acid|1
+(noun)|acid (generic term)
+titanic oxide|1
+(noun)|titanium dioxide|titanium oxide|titania|pigment (generic term)|oxide (generic term)
+titanium|1
+(noun)|Ti|atomic number 22|metallic element (generic term)|metal (generic term)
+titanium dioxide|1
+(noun)|titanium oxide|titanic oxide|titania|pigment (generic term)|oxide (generic term)
+titanium oxide|1
+(noun)|titanium dioxide|titanic oxide|titania|pigment (generic term)|oxide (generic term)
+titanosaur|1
+(noun)|titanosaurian|dinosaur (generic term)
+titanosaurian|1
+(noun)|titanosaur|dinosaur (generic term)
+titanosauridae|1
+(noun)|Titanosauridae|family Titanosauridae|reptile family (generic term)
+titanosaurus|1
+(noun)|Titanosaurus|genus Titanosaurus|reptile genus (generic term)
+titbit|1
+(noun)|choice morsel|tidbit|dainty (generic term)|delicacy (generic term)|goody (generic term)|kickshaw (generic term)|treat (generic term)
+titer|1
+(noun)|titre|concentration (generic term)
+titfer|1
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+tithe|5
+(noun)|levy (generic term)
+(noun)|offering (generic term)
+(verb)|charge (generic term)|bill (generic term)
+(verb)|levy (generic term)|impose (generic term)
+(verb)|pay (generic term)
+tithe barn|1
+(noun)|barn (generic term)
+tither|1
+(noun)|payer (generic term)|remunerator (generic term)
+tithonia|1
+(noun)|Mexican sunflower|flower (generic term)
+titi|3
+(noun)|buckwheat tree|Cliftonia monophylla|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|sorrel tree|sourwood|Oxydendrum arboreum|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|titi monkey|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+titi family|1
+(noun)|Cyrilliaceae|family Cyrilliaceae|cyrilla family|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+titi monkey|1
+(noun)|titi|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+titian|1
+(noun)|Titian|Tiziano Vecellio|old master (generic term)
+titillate|2
+(verb)|tickle|vellicate|itch (generic term)
+(verb)|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+titillated|1
+(adj)|teased|excited (similar term)
+titillating|3
+(adj)|exciting (similar term)
+(adj)|erotic|sexy (similar term)
+(adj)|tickling|tingling|exciting (similar term)
+titillation|3
+(noun)|exhilaration (generic term)|excitement (generic term)
+(noun)|arousal (generic term)|rousing (generic term)
+(noun)|tickle|tickling|touch (generic term)|touching (generic term)
+titivate|1
+(verb)|spruce up|spruce|tittivate|smarten up|slick up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+titivation|1
+(noun)|tittivation|decoration (generic term)
+titlark|1
+(noun)|pipit|lark|oscine (generic term)|oscine bird (generic term)
+title|12
+(noun)|statute title|rubric|heading (generic term)|header (generic term)|head (generic term)
+(noun)|name (generic term)
+(noun)|subheading (generic term)|subhead (generic term)
+(noun)|championship|high status (generic term)
+(noun)|deed|deed of conveyance|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(noun)|title of respect|form of address|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+(noun)|claim|legal right (generic term)
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+(noun)|claim|right (generic term)
+(verb)|entitle|name (generic term)|call (generic term)
+(verb)|style|name (generic term)|call (generic term)
+title-holder|1
+(noun)|champion|champ|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+title deed|1
+(noun)|deed (generic term)|deed of conveyance (generic term)|title (generic term)
+title of respect|1
+(noun)|title|form of address|appellation (generic term)|denomination (generic term)|designation (generic term)|appellative (generic term)
+title page|1
+(noun)|page (generic term)
+title role|1
+(noun)|name part|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+titled|2
+(adj)|called (similar term)|known as (similar term)|called (similar term)|named (similar term)|styled (similar term)|entitled (similar term)|untitled (antonym)
+(adj)|coroneted|highborn|noble (similar term)
+titmouse|1
+(noun)|tit|oscine (generic term)|oscine bird (generic term)
+tito|1
+(noun)|Tito|Marshal Tito|Josip Broz|statesman (generic term)|solon (generic term)|national leader (generic term)
+titrate|1
+(verb)|quantify (generic term)|measure (generic term)
+titration|1
+(noun)|volumetric analysis (generic term)
+titrator|1
+(noun)|apparatus (generic term)|setup (generic term)
+titre|1
+(noun)|titer|concentration (generic term)
+titter|2
+(noun)|laugh (generic term)|laughter (generic term)
+(verb)|giggle|laugh (generic term)|express joy (generic term)|express mirth (generic term)
+titterer|1
+(noun)|giggler|laugher (generic term)
+tittering|1
+(adj)|thoriated
+tittivate|1
+(verb)|spruce up|spruce|titivate|smarten up|slick up|spiff up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+tittivation|1
+(noun)|titivation|decoration (generic term)
+tittle|1
+(noun)|shred|scintilla|whit|iota|smidgen|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+tittle-tattle|2
+(noun)|chitchat|small talk|gab|gabfest|gossip|chin-wag|chin-wagging|causerie|chat (generic term)|confab (generic term)|confabulation (generic term)|schmooze (generic term)|schmoose (generic term)
+(verb)|chatter|piffle|palaver|prate|twaddle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+tittup|1
+(verb)|swagger|ruffle|prance|strut|sashay|cock|walk (generic term)
+titty|1
+(noun)|breast|bosom|knocker|boob|tit|mammary gland (generic term)|mamma (generic term)
+titular|4
+(adj)|titulary|legal right (related term)
+(adj)|name (related term)
+(adj)|appellation|denomination|designation|appellative (related term)
+(adj)|nominal|formal (similar term)
+titulary|1
+(adj)|titular|legal right (related term)
+titus|3
+(noun)|Titus|Christian (generic term)
+(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+(noun)|Epistle of Paul the Apostle to Titus|Epistle to Titus|Titus|Epistle (generic term)
+titus flavius domitianus|1
+(noun)|Domitian|Titus Flavius Domitianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+titus flavius sabinus vespasianus|1
+(noun)|Vespasian|Titus Flavius Sabinus Vespasianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+titus flavius vespasianus|1
+(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+titus livius|1
+(noun)|Livy|Titus Livius|historian (generic term)|historiographer (generic term)
+titus lucretius carus|1
+(noun)|Lucretius|Titus Lucretius Carus|philosopher (generic term)|poet (generic term)
+titus maccius plautus|1
+(noun)|Plautus|Titus Maccius Plautus|dramatist (generic term)|playwright (generic term)
+titus oates|1
+(noun)|Oates|Titus Oates|conspirator (generic term)|coconspirator (generic term)|plotter (generic term)|machinator (generic term)
+titus vespasianus augustus|1
+(noun)|Titus|Titus Vespasianus Augustus|Titus Flavius Vespasianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+tiu|1
+(noun)|Tiu|Anglo-Saxon deity (generic term)
+tivoli|1
+(noun)|Tivoli|Tibur|town (generic term)
+tiyin|1
+(noun)|Kazakhstani monetary unit (generic term)
+tiziano vecellio|1
+(noun)|Titian|Tiziano Vecellio|old master (generic term)
+tizzy|1
+(noun)|dither|pother|fuss|flap|agitation (generic term)
+tjalling charles koopmans|1
+(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist (generic term)|economic expert (generic term)
+tjalling koopmans|1
+(noun)|Koopmans|Tjalling Koopmans|Tjalling Charles Koopmans|economist (generic term)|economic expert (generic term)
+tko|1
+(noun)|technical knockout|TKO|knockout (generic term)|KO (generic term)|kayo (generic term)
+tl|1
+(noun)|thallium|Tl|atomic number 81|metallic element (generic term)|metal (generic term)
+tlc|1
+(noun)|tender loving care|TLC|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+tlingit|2
+(noun)|Tlingit|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Tlingit|Na-Dene (generic term)
+tm|1
+(noun)|thulium|Tm|atomic number 69|metallic element (generic term)|metal (generic term)
+tmv|1
+(noun)|tobacco mosaic virus|TMV|plant virus (generic term)
+tn|1
+(noun)|Tennessee|Volunteer State|TN|American state (generic term)
+tnf|1
+(noun)|tumor necrosis factor|tumour necrosis factor|TNF|cytokine (generic term)
+tnt|1
+(noun)|TNT|trinitrotoluene|explosive compound (generic term)
+to-do|1
+(noun)|disturbance|disruption|commotion|flutter|hurly burly|hoo-ha|hoo-hah|kerfuffle|disorder (generic term)
+to a fault|1
+(adv)|excessively|overly|too
+to a great extent|1
+(adv)|heavily
+to a greater extent|1
+(adv)|more|less (antonym)
+to a higher degree|1
+(adv)|more than|less than (antonym)
+to a higher place|1
+(adv)|above|higher up|in a higher place|below (antonym)
+to a lesser degree|1
+(adv)|less than|more than (antonym)
+to a lesser extent|1
+(adv)|less|more (antonym)
+to a lower place|1
+(adv)|below|at a lower place|beneath|above (antonym)
+to a t|1
+(adv)|to a T|to the letter|just right|to perfection
+to all intents and purposes|1
+(adv)|for all practical purposes|for all intents and purposes
+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|monaurally (antonym)
+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 (generic term)
+to no degree|1
+(adv)|nowise
+to one ear|1
+(adv)|monaurally|in one ear|binaurally (antonym)
+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|so far|to that extent
+to that extent|1
+(adv)|insofar|in so far|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|least (antonym)
+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|most (antonym)
+to the north|1
+(adv)|north|in the north|northerly|northwards|northward
+to the point|1
+(adj)|pertinent|relevant (similar term)
+to the south|1
+(adv)|south|in the south
+to windward|1
+(noun)|windward side|weatherboard|weather side|windward (generic term)
+toad|1
+(noun)|frog|toad frog|anuran|batrachian|salientian|amphibian (generic term)
+toad-in-the-hole|1
+(noun)|pastry (generic term)
+toad frog|1
+(noun)|frog|toad|anuran|batrachian|salientian|amphibian (generic term)
+toad lily|1
+(noun)|Montia chamissoi|Indian lettuce (generic term)
+toad rush|1
+(noun)|Juncus bufonius|rush (generic term)
+toadfish|1
+(noun)|Opsanus tau|spiny-finned fish (generic term)|acanthopterygian (generic term)
+toadflax|1
+(noun)|butter-and-eggs|wild snapdragon|devil's flax|Linaria vulgaris|flower (generic term)
+toadshade|1
+(noun)|red trillium|sessile trillium|Trillium sessile|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+toadstool|1
+(noun)|agaric (generic term)|mushroom (antonym)
+toady|2
+(noun)|sycophant|crawler|lackey|flatterer (generic term)|adulator (generic term)
+(verb)|fawn|truckle|bootlick|kowtow|kotow|suck up|flatter (generic term)|blandish (generic term)
+toadyish|2
+(adj)|bootlicking|fawning|obsequious|sycophantic|insincere (similar term)
+(adj)|bootlicking|fawning|sycophantic|servile (similar term)
+toast|6
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+(noun)|celebrity (generic term)|famous person (generic term)
+(noun)|goner|desperate (generic term)
+(noun)|pledge|drink (generic term)
+(verb)|crispen|crisp|heat (generic term)|heat up (generic term)
+(verb)|drink|pledge|salute|wassail|honor (generic term)|honour (generic term)|reward (generic term)
+toast mistress|1
+(noun)|toastmaster (generic term)|symposiarch (generic term)
+toasted|1
+(adj)|cooked (similar term)
+toaster|2
+(noun)|kitchen appliance (generic term)
+(noun)|wassailer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+toaster oven|1
+(noun)|kitchen appliance (generic term)
+toasting|1
+(noun)|browning|cooking (generic term)|cookery (generic term)|preparation (generic term)
+toasting fork|1
+(noun)|fork (generic term)
+toastmaster|1
+(noun)|symposiarch|master of ceremonies (generic term)|emcee (generic term)|host (generic term)
+toastrack|1
+(noun)|rack (generic term)
+tobacco|2
+(noun)|baccy|plant product (generic term)|drug of abuse (generic term)|street drug (generic term)
+(noun)|tobacco plant|herb (generic term)|herbaceous plant (generic term)
+tobacco budworm|1
+(noun)|corn earworm|cotton bollworm|tomato fruitworm|vetchworm|Heliothis zia|bollworm (generic term)
+tobacco hornworm|1
+(noun)|tomato worm|Manduca sexta|caterpillar (generic term)
+tobacco industry|1
+(noun)|industry (generic term)
+tobacco juice|1
+(noun)|saliva (generic term)|spit (generic term)|spittle (generic term)
+tobacco mildew|1
+(noun)|Peronospora hyoscyami|downy mildew (generic term)|false mildew (generic term)
+tobacco mosaic|1
+(noun)|mosaic (generic term)
+tobacco mosaic virus|1
+(noun)|TMV|plant virus (generic term)
+tobacco moth|1
+(noun)|cacao moth|Ephestia elutella|pyralid (generic term)|pyralid moth (generic term)
+tobacco pipe|1
+(noun)|pipe|tube (generic term)|tubing (generic term)
+tobacco plant|1
+(noun)|tobacco|herb (generic term)|herbaceous plant (generic term)
+tobacco pouch|1
+(noun)|pouch (generic term)
+tobacco shop|1
+(noun)|tobacconist shop|tobacconist|shop (generic term)|store (generic term)
+tobacco thrips|1
+(noun)|Frankliniella fusca|thrips (generic term)|thrip (generic term)|thripid (generic term)
+tobacco user|1
+(noun)|smoker|consumer (generic term)|nonsmoker (antonym)
+tobacco wilt|1
+(noun)|ring rot|ring disease|brown rot (generic term)
+tobacconist|2
+(noun)|shopkeeper (generic term)|tradesman (generic term)|storekeeper (generic term)|market keeper (generic term)
+(noun)|tobacco shop|tobacconist shop|shop (generic term)|store (generic term)
+tobacconist shop|1
+(noun)|tobacco shop|tobacconist|shop (generic term)|store (generic term)
+tobago|1
+(noun)|Tobago|island (generic term)
+tobagonian|2
+(adj)|Tobagonian|island (related term)
+(noun)|Tobagonian|West Indian (generic term)
+tobey|1
+(noun)|Tobey|Mark Tobey|painter (generic term)
+tobias george smollett|1
+(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer (generic term)|author (generic term)
+tobias smollett|1
+(noun)|Smollett|Tobias Smollett|Tobias George Smollett|writer (generic term)|author (generic term)
+tobin|1
+(noun)|Tobin|James Tobin|economist (generic term)|economic expert (generic term)
+tobin bronze|1
+(noun)|naval brass|Admiralty brass|Admiralty Metal|Tobin bronze|alpha-beta brass (generic term)|Muntz metal (generic term)|yellow metal (generic term)
+tobit|1
+(noun)|Tobit|Book of Tobit|book (generic term)
+toboggan|2
+(noun)|sled (generic term)|sledge (generic term)|sleigh (generic term)
+(verb)|luge|sled (generic term)|sleigh (generic term)
+toboggan cap|1
+(noun)|ski cap|stocking cap|cap (generic term)
+tobogganing|1
+(noun)|sledding (generic term)
+tobogganist|1
+(noun)|sledder (generic term)
+tobramycin|1
+(noun)|Nebcin|antibiotic (generic term)|antibiotic drug (generic term)
+toby|1
+(noun)|toby jug|toby fillpot jug|mug (generic term)
+toby fillpot jug|1
+(noun)|toby|toby jug|mug (generic term)
+toby jug|1
+(noun)|toby|toby fillpot jug|mug (generic term)
+tocainide|1
+(noun)|Tonocard|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+tocantins|1
+(noun)|Tocantins|Tocantins River|river (generic term)
+tocantins river|1
+(noun)|Tocantins|Tocantins River|river (generic term)
+toccata|1
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+tocharian|1
+(noun)|Tocharian|Indo-European (generic term)|Indo-European language (generic term)|Indo-Hittite (generic term)
+tocktact|1
+(noun)|ticktock|tictac|tick (generic term)|ticking (generic term)
+tocology|1
+(noun)|obstetrics|OB|midwifery|medicine (generic term)|medical specialty (generic term)
+tocopherol|1
+(noun)|vitamin E|E|fat-soluble vitamin (generic term)|antioxidant (generic term)
+tocqueville|1
+(noun)|Tocqueville|Alexis de Tocqueville|Alexis Charles Henri Maurice de Tocqueville|writer (generic term)|author (generic term)
+tocsin|2
+(noun)|alarm bell|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|warning bell|bell (generic term)
+tod|2
+(adj)|unaccompanied (similar term)
+(noun)|weight unit (generic term)|weight (generic term)
+toda|2
+(noun)|Toda|Dravidian (generic term)
+(noun)|Toda|South Dravidian (generic term)
+today|3
+(noun)|present (generic term)|nowadays (generic term)
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(adv)|nowadays|now
+todd|2
+(noun)|Todd|Sir Alexander Robertus Todd|chemist (generic term)
+(noun)|Todd|Sweeney Todd|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+toddle|1
+(verb)|coggle|totter|dodder|paddle|waddle|walk (generic term)
+toddler|1
+(noun)|yearling|tot|bambino|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+toddy|1
+(noun)|hot toddy|mixed drink (generic term)
+toddy alm|1
+(noun)|wine palm|jaggery palm|kitul|kittul|kitul tree|Caryota urens|sago palm (generic term)
+toddy palm|1
+(noun)|palmyra|palmyra palm|wine palm|lontar|longar palm|Borassus flabellifer|fan palm (generic term)
+todea|1
+(noun)|Todea|genus Todea|fern genus (generic term)
+todea barbara|1
+(noun)|crepe fern|king fern|Todea barbara|fern (generic term)
+todea superba|1
+(noun)|crape fern|Prince-of-Wales fern|Prince-of-Wales feather|Prince-of-Wales plume|Leptopteris superba|Todea superba|fern (generic term)
+todidae|1
+(noun)|Todidae|family Todidae|bird family (generic term)
+todus|1
+(noun)|Todus|genus Todus|bird genus (generic term)
+tody|1
+(noun)|coraciiform bird (generic term)
+toe|9
+(adj)|toed|pointy-toed (similar term)|pointed-toe (similar term)|square-toed (similar term)|squared-toe (similar term)|two-toed (similar term)|two-toe (similar term)|toeless (antonym)
+(noun)|digit (generic term)|dactyl (generic term)|extremity (generic term)
+(noun)|covering (generic term)
+(noun)|body part (generic term)
+(noun)|part (generic term)|portion (generic term)
+(verb)|walk (generic term)
+(verb)|toenail|force (generic term)|drive (generic term)|ram (generic term)
+(verb)|hit (generic term)
+(verb)|touch (generic term)
+toe-in|1
+(noun)|alignment (generic term)
+toe box|1
+(noun)|upper (generic term)
+toe crack|1
+(noun)|sand crack (generic term)
+toe dance|1
+(noun)|toe dancing|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+toe dancing|1
+(noun)|toe dance|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+toe the line|1
+(verb)|comply (generic term)|follow (generic term)|abide by (generic term)
+toe toe|1
+(noun)|plumed tussock|toetoe|Cortaderia richardii|Arundo richardii|grass (generic term)
+toea|1
+(noun)|Papuan monetary unit (generic term)
+toecap|1
+(noun)|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+toed|1
+(adj)|toe|pointy-toed (similar term)|pointed-toe (similar term)|square-toed (similar term)|squared-toe (similar term)|two-toed (similar term)|two-toe (similar term)|toeless (antonym)
+toehold|3
+(noun)|status (generic term)|position (generic term)
+(noun)|foothold (generic term)|footing (generic term)
+(noun)|wrestling hold (generic term)
+toeless|1
+(adj)|toed (antonym)
+toenail|2
+(noun)|nail (generic term)
+(verb)|toe|force (generic term)|drive (generic term)|ram (generic term)
+toetoe|2
+(noun)|plumed tussock|toe toe|Cortaderia richardii|Arundo richardii|grass (generic term)
+(noun)|toitoi|Arundo conspicua|Chionochloa conspicua|reed (generic term)
+toff|1
+(noun)|nob|man of means (generic term)|rich man (generic term)|wealthy man (generic term)
+toffee|1
+(noun)|brittle|toffy|candy (generic term)|confect (generic term)
+toffee-nosed|1
+(adj)|private (similar term)
+toffee apple|1
+(noun)|candied apple|candy apple|taffy apple|caramel apple|sweet (generic term)|confection (generic term)
+toffy|1
+(noun)|brittle|toffee|candy (generic term)|confect (generic term)
+tofieldia|1
+(noun)|Tofieldia|genus Tofieldia|liliid monocot genus (generic term)
+tofieldia pusilla|1
+(noun)|Scotch asphodel|Tofieldia pusilla|false asphodel (generic term)
+tofranil|1
+(noun)|imipramine|impramine hydrochloride|Imavate|Tofranil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+tofu|1
+(noun)|bean curd|curd (generic term)
+tog|1
+(verb)|dress|clothe|enclothe|garb|raiment|garment|habilitate|fit out|apparel|change state (generic term)|turn (generic term)|undress (antonym)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+toga|1
+(noun)|cloak (generic term)
+toga virilis|1
+(noun)|toga (generic term)
+togaviridae|1
+(noun)|Togaviridae|arbovirus (generic term)|arborvirus (generic term)
+together|4
+(adj)|unneurotic (similar term)
+(adv)|jointly|collectively|conjointly|put together
+(adv)|in collaboration|unitedly
+(adv)|in concert
+togetherness|1
+(noun)|closeness (generic term)|intimacy (generic term)
+togged|1
+(adj)|clothed (similar term)|clad (similar term)
+togged up|1
+(adj)|dressed|dressed-up|dressed to the nines|dressed to kill|dolled up|spruced up|spiffed up|clothed (similar term)|clad (similar term)
+toggle|6
+(noun)|instruction (generic term)|command (generic term)|statement (generic term)|program line (generic term)
+(noun)|toggle switch|on-off switch|on/off switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+(verb)|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+toggle bolt|1
+(noun)|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+toggle joint|1
+(noun)|joint (generic term)
+toggle switch|1
+(noun)|toggle|on-off switch|on/off switch|switch (generic term)|electric switch (generic term)|electrical switch (generic term)
+togo|1
+(noun)|Togo|Togolese Republic|African country (generic term)|African nation (generic term)
+togo franc|1
+(noun)|Togo franc|franc (generic term)
+togolese|2
+(adj)|Togolese|African country|African nation (related term)
+(noun)|Togolese|African (generic term)
+togolese republic|1
+(noun)|Togo|Togolese Republic|African country (generic term)|African nation (generic term)
+togs|1
+(noun)|threads|duds|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+toil|2
+(noun)|labor|labour|work (generic term)
+(verb)|labor|labour|fag|travail|grind|drudge|dig|moil|work (generic term)|do work (generic term)
+toiler|1
+(noun)|worker (generic term)
+toilet|4
+(noun)|lavatory|lav|can|john|privy|bathroom|room (generic term)
+(noun)|can|commode|crapper|pot|potty|stool|throne|plumbing fixture (generic term)
+(noun)|gutter|sewer|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)
+(noun)|toilette|dressing (generic term)|grooming (generic term)
+toilet-train|1
+(verb)|train (generic term)|develop (generic term)|prepare (generic term)|educate (generic term)
+toilet-trained|1
+(adj)|potty-trained|pot-trained|trained (similar term)
+toilet article|1
+(noun)|toiletry|instrumentality (generic term)|instrumentation (generic term)
+toilet bag|1
+(noun)|sponge bag|bag (generic term)
+toilet bowl|1
+(noun)|bowl (generic term)
+toilet facility|1
+(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|wash room|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+toilet kit|1
+(noun)|travel kit|kit (generic term)
+toilet paper|1
+(noun)|toilet tissue|bathroom tissue|tissue (generic term)|tissue paper (generic term)
+toilet powder|1
+(noun)|bath powder|dusting powder|powder (generic term)
+toilet roll|1
+(noun)|toilet tissue (generic term)|toilet paper (generic term)|bathroom tissue (generic term)
+toilet seat|1
+(noun)|seat (generic term)
+toilet soap|1
+(noun)|face soap|bath soap|soap (generic term)
+toilet table|1
+(noun)|dressing table|dresser|vanity|table (generic term)
+toilet tissue|1
+(noun)|toilet paper|bathroom tissue|tissue (generic term)|tissue paper (generic term)
+toilet water|1
+(noun)|eau de toilette|perfume (generic term)|essence (generic term)
+toiletry|1
+(noun)|toilet article|instrumentality (generic term)|instrumentation (generic term)
+toilette|1
+(noun)|toilet|dressing (generic term)|grooming (generic term)
+toiling|1
+(adj)|drudging|laboring|labouring|busy (similar term)
+toilsome|1
+(adj)|arduous|backbreaking|grueling|gruelling|hard|heavy|laborious|operose|punishing|effortful (similar term)
+toilsomeness|1
+(noun)|laboriousness|operoseness|effortfulness (generic term)
+toitoi|1
+(noun)|toetoe|Arundo conspicua|Chionochloa conspicua|reed (generic term)
+tojo|1
+(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator (generic term)|potentate (generic term)
+tojo eiki|1
+(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator (generic term)|potentate (generic term)
+tojo hideki|1
+(noun)|Tojo|Tojo Hideki|Tojo Eiki|dictator (generic term)|potentate (generic term)
+tokamak|1
+(noun)|chamber (generic term)
+tokay|2
+(noun)|Tokay|wine (generic term)|vino (generic term)
+(noun)|Tokay|vinifera grape (generic term)
+toke|1
+(noun)|puff (generic term)|drag (generic term)|pull (generic term)
+token|4
+(adj)|nominal|tokenish|minimal (similar term)|minimum (similar term)
+(noun)|item|symbol (generic term)
+(noun)|disk (generic term)|disc (generic term)
+(noun)|keepsake|souvenir|relic|object (generic term)|physical object (generic term)
+token economy|1
+(noun)|behavior therapy (generic term)|behavior modification (generic term)
+token money|1
+(noun)|money (generic term)
+token payment|1
+(noun)|payment (generic term)
+tokenish|1
+(adj)|nominal|token|minimal (similar term)|minimum (similar term)
+tokio|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+toklas|1
+(noun)|Toklas|Alice B. Toklas|writer (generic term)|author (generic term)
+tokyo|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+tolazamide|1
+(noun)|Tolinase|sulfonylurea (generic term)
+tolazoline|1
+(noun)|vasodilator (generic term)|vasodilative (generic term)
+tolbooth|1
+(noun)|tollbooth|tollhouse|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+tolbukhin|1
+(noun)|Dobrich|Tolbukhin|city (generic term)|metropolis (generic term)|urban center (generic term)
+tolbutamide|1
+(noun)|Orinase|sulfonylurea (generic term)|hypoglycemic agent (generic term)|hypoglycaemic agent (generic term)
+tole|1
+(noun)|metalware (generic term)
+tolectin|1
+(noun)|tolmetin sodium|Tolectin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+toledo|1
+(noun)|Toledo|city (generic term)|metropolis (generic term)|urban center (generic term)
+tolerable|2
+(adj)|bearable (similar term)|endurable (similar term)|sufferable (similar term)|supportable (similar term)|tolerant (similar term)|resistant (similar term)|permissible (related term)|allowable (related term)|intolerable (antonym)
+(adj)|adequate|passable|fair to middling|satisfactory (similar term)
+tolerably|1
+(adv)|acceptably|so-so|intolerably (antonym)|unacceptably (antonym)
+tolerance|5
+(noun)|endurance (generic term)
+(noun)|permissiveness|disposition (generic term)|temperament (generic term)|unpermissiveness (antonym)
+(noun)|allowance (generic term)
+(noun)|attitude (generic term)|mental attitude (generic term)|intolerance (antonym)
+(noun)|allowance|leeway|margin|discrepancy (generic term)|disagreement (generic term)|divergence (generic term)|variance (generic term)
+tolerant|5
+(adj)|unbigoted (similar term)|charitable (related term)|patient (related term)|intolerant (antonym)
+(adj)|kind|forgiving (similar term)
+(adj)|broad|large-minded|liberal|broad-minded (similar term)
+(adj)|resistant|tolerable (similar term)
+(adj)|patient of|patient (similar term)
+tolerantly|1
+(adv)|intolerantly (antonym)
+tolerate|4
+(verb)|digest|endure|stick out|stomach|bear|stand|support|brook|abide|suffer|put up|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|respect (generic term)|honor (generic term)|honour (generic term)|abide by (generic term)|observe (generic term)
+(verb)|suffer (generic term)|endure (generic term)
+(verb)|allow|permit|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+toleration|2
+(noun)|acceptance|sufferance|permissiveness (generic term)|tolerance (generic term)
+(noun)|license (generic term)|permission (generic term)|permit (generic term)
+tolinase|1
+(noun)|tolazamide|Tolinase|sulfonylurea (generic term)
+tolkien|1
+(noun)|Tolkien|J.R.R. Tolkien|John Ronald Reuel Tolkien|philologist (generic term)|philologue (generic term)|writer (generic term)|author (generic term)
+toll|5
+(noun)|fee (generic term)
+(noun)|price|cost|value (generic term)
+(noun)|bell|sound (generic term)
+(verb)|ring (generic term)|knell (generic term)
+(verb)|levy (generic term)|impose (generic term)
+toll-free|1
+(adj)|fee (related term)
+toll agent|1
+(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll taker|toller|employee (generic term)
+toll call|1
+(noun)|long distance (generic term)|long-distance call (generic term)|trunk call (generic term)
+toll collector|1
+(noun)|tollkeeper|tollman|tollgatherer|toll taker|toll agent|toller|employee (generic term)
+toll house cookie|1
+(noun)|chocolate chip cookie|Toll House cookie|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+toll line|1
+(noun)|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+toll plaza|1
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+toll taker|1
+(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll agent|toller|employee (generic term)
+tollbar|1
+(noun)|tollgate|gate (generic term)
+tollbooth|1
+(noun)|tolbooth|tollhouse|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+toller|2
+(noun)|bell ringer|ringer|signaler (generic term)|signaller (generic term)
+(noun)|tollkeeper|tollman|tollgatherer|toll collector|toll taker|toll agent|employee (generic term)
+tollgate|1
+(noun)|tollbar|gate (generic term)
+tollgatherer|1
+(noun)|tollkeeper|tollman|toll collector|toll taker|toll agent|toller|employee (generic term)
+tollhouse|1
+(noun)|tollbooth|tolbooth|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+tollkeeper|1
+(noun)|tollman|tollgatherer|toll collector|toll taker|toll agent|toller|employee (generic term)
+tollman|1
+(noun)|tollkeeper|tollgatherer|toll collector|toll taker|toll agent|toller|employee (generic term)
+tollon|1
+(noun)|toyon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+tolmetin sodium|1
+(noun)|Tolectin|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+tolmiea|1
+(noun)|Tolmiea|genus Tolmiea|rosid dicot genus (generic term)
+tolmiea menziesii|1
+(noun)|pickaback plant|piggyback plant|youth-on-age|Tolmiea menziesii|herb (generic term)|herbaceous plant (generic term)
+tolstoy|1
+(noun)|Tolstoy|Leo Tolstoy|Count Lev Nikolayevitch Tolstoy|writer (generic term)|author (generic term)
+toltec|1
+(noun)|Toltec|Nahuatl (generic term)
+tolu|1
+(noun)|balsam of tolu|tolu balsam|balsam (generic term)
+tolu balsam|1
+(noun)|tolu|balsam of tolu|balsam (generic term)
+tolu balsam tree|1
+(noun)|tolu tree|Myroxylon balsamum|Myroxylon toluiferum|tree (generic term)
+tolu tree|1
+(noun)|tolu balsam tree|Myroxylon balsamum|Myroxylon toluiferum|tree (generic term)
+toluene|1
+(noun)|methylbenzene|alkylbenzene (generic term)|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+toluic acid|1
+(noun)|acid (generic term)
+tolypeutes|1
+(noun)|Tolypeutes|genus Tolypeutes|mammal genus (generic term)
+tolypeutes tricinctus|1
+(noun)|apar|three-banded armadillo|Tolypeutes tricinctus|armadillo (generic term)
+tom|3
+(noun)|Tom|Uncle Tom|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+(noun)|tomcat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+(noun)|turkey cock|gobbler|tom turkey|turkey (generic term)|Meleagris gallopavo (generic term)
+tom-tom|1
+(noun)|tenor drum|drum (generic term)|membranophone (generic term)|tympan (generic term)
+tom and jerry|1
+(noun)|Tom and Jerry|hot toddy (generic term)|toddy (generic term)
+tom bradley|1
+(noun)|Bradley|Thomas Bradley|Tom Bradley|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+tom collins|1
+(noun)|collins|Tom Collins|highball (generic term)
+tom hanks|1
+(noun)|Hanks|Tom Hanks|Thomas J. Hanks|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+tom paine|1
+(noun)|Paine|Tom Paine|Thomas Paine|American Revolutionary leader (generic term)|pamphleteer (generic term)
+tom sawyer|1
+(noun)|Tom Sawyer|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+tom stoppard|1
+(noun)|Stoppard|Tom Stoppard|Sir Tom Stoppard|Thomas Straussler|dramatist (generic term)|playwright (generic term)
+tom thumb|2
+(noun)|Tom Thumb|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|Tom Thumb|small person (generic term)
+tom turkey|1
+(noun)|turkey cock|gobbler|tom|turkey (generic term)|Meleagris gallopavo (generic term)
+tom wolfe|1
+(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer (generic term)|author (generic term)
+tomahawk|3
+(noun)|hatchet|weapon (generic term)|arm (generic term)|weapon system (generic term)
+(verb)|cut (generic term)
+(verb)|kill (generic term)
+tomalley|1
+(noun)|liver (generic term)
+tomas de torquemada|1
+(noun)|Torquemada|Tomas de Torquemada|Grand Inquisitor (generic term)
+tomasso parentucelli|1
+(noun)|Nicholas V|Tomasso Parentucelli|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+tomatillo|3
+(noun)|miltomate|purple ground cherry|jamberry|Physalis philadelphica|ground cherry (generic term)|husk tomato (generic term)
+(noun)|jamberry|Mexican husk tomato|Physalis ixocarpa|ground cherry (generic term)|husk tomato (generic term)
+(noun)|husk tomato|Mexican husk tomato|solanaceous vegetable (generic term)
+tomato|2
+(noun)|solanaceous vegetable (generic term)
+(noun)|love apple|tomato plant|Lycopersicon esculentum|herb (generic term)|herbaceous plant (generic term)
+tomato-like|1
+(adj)|vegetable (similar term)
+tomato blight|1
+(noun)|tomato yellows|blight (generic term)
+tomato concentrate|1
+(noun)|concentrate (generic term)
+tomato fruitworm|1
+(noun)|corn earworm|cotton bollworm|tobacco budworm|vetchworm|Heliothis zia|bollworm (generic term)
+tomato hornworm|1
+(noun)|potato worm|Manduca quinquemaculata|caterpillar (generic term)
+tomato juice|1
+(noun)|juice (generic term)
+tomato ketchup|1
+(noun)|catsup|ketchup|cetchup|condiment (generic term)
+tomato paste|1
+(noun)|ingredient (generic term)|fixings (generic term)
+tomato plant|1
+(noun)|tomato|love apple|Lycopersicon esculentum|herb (generic term)|herbaceous plant (generic term)
+tomato sauce|1
+(noun)|spaghetti sauce (generic term)|pasta sauce (generic term)
+tomato streak|1
+(noun)|yellow spot (generic term)
+tomato worm|1
+(noun)|tobacco hornworm|Manduca sexta|caterpillar (generic term)
+tomato yellows|1
+(noun)|tomato blight|blight (generic term)
+tomb|1
+(noun)|grave|topographic point (generic term)|place (generic term)|spot (generic term)
+tombac|1
+(noun)|tombak|tambac|alloy (generic term)|metal (generic term)
+tombak|1
+(noun)|tombac|tambac|alloy (generic term)|metal (generic term)
+tombaugh|1
+(noun)|Tombaugh|Clyde Tombaugh|Clyde William Tombaugh|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+tombigbee|1
+(noun)|Tombigbee|Tombigbee River|river (generic term)
+tombigbee river|1
+(noun)|Tombigbee|Tombigbee River|river (generic term)
+tombola|1
+(noun)|lottery (generic term)|drawing (generic term)
+tomboy|1
+(noun)|romp|hoyden|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+tomboyish|1
+(adj)|hoydenish|unwomanly (similar term)
+tomboyishness|1
+(noun)|hoydenism|masculinity (generic term)
+tombstone|1
+(noun)|gravestone|headstone|stone (generic term)|memorial (generic term)|monument (generic term)
+tomcat|1
+(noun)|tom|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tome|1
+(noun)|book (generic term)
+tomentose|2
+(adj)|plant process|enation (related term)
+(adj)|tomentous|hairy (similar term)|haired (similar term)|hirsute (similar term)
+tomentous|1
+(adj)|tomentose|hairy (similar term)|haired (similar term)|hirsute (similar term)
+tomentum|2
+(noun)|hair|fuzz|plant process (generic term)|enation (generic term)
+(noun)|tomentum cerebri|capillary (generic term)|capillary vessel (generic term)
+tomentum cerebri|1
+(noun)|tomentum|capillary (generic term)|capillary vessel (generic term)
+tomfool|1
+(noun)|fool|sap|saphead|muggins|simpleton (generic term)|simple (generic term)
+tomfoolery|1
+(noun)|folly|foolery|craziness|lunacy|indulgence|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+tomistoma|1
+(noun)|Tomistoma|genus Tomistoma|reptile genus (generic term)
+tomistoma schlegeli|1
+(noun)|false gavial|Tomistoma schlegeli|crocodilian reptile (generic term)|crocodilian (generic term)
+tommy gun|1
+(noun)|Tommy gun|Thompson submachine gun|submachine gun (generic term)
+tommyrot|1
+(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tosh|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+tomograph|1
+(noun)|X-ray machine (generic term)
+tomography|1
+(noun)|imaging|pictorial representation (generic term)|picturing (generic term)
+tomorrow|2
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(noun)|future (generic term)|hereafter (generic term)|futurity (generic term)|time to come (generic term)
+tompion|1
+(noun)|tampion|plug (generic term)|stopper (generic term)|stopple (generic term)
+tomtate|1
+(noun)|Haemulon aurolineatum|grunt (generic term)
+tomtit|1
+(noun)|blue tit|Parus caeruleus|titmouse (generic term)|tit (generic term)
+ton|2
+(noun)|short ton|net ton|avoirdupois unit (generic term)
+(noun)|long ton|gross ton|avoirdupois unit (generic term)
+tonal|2
+(adj)|tonic|pitch (related term)
+(adj)|keyed (similar term)|diatonic (similar term)|polytonal (similar term)|toned (similar term)|tonic (similar term)|atonal (antonym)
+tonal language|1
+(noun)|tone language|natural language (generic term)|tongue (generic term)
+tonal pattern|1
+(noun)|melody|musical perception (generic term)
+tonal system|1
+(noun)|tone system|phonological system (generic term)|phonologic system (generic term)
+tonality|1
+(noun)|key|musical notation (generic term)|atonality (antonym)
+tone|15
+(noun)|tone of voice|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|pitch (generic term)
+(noun)|timbre|timber|quality|sound property (generic term)
+(noun)|spirit|feel|feeling|flavor|flavour|look|smell|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|shade|tint|tincture|color (generic term)|colour (generic term)|coloring (generic term)|colouring (generic term)
+(noun)|note|musical note|musical notation (generic term)
+(noun)|pure tone|sound (generic term)|auditory sensation (generic term)
+(noun)|tonicity|tonus|tension (generic term)|tensity (generic term)|tenseness (generic term)|tautness (generic term)|atonicity (antonym)
+(noun)|whole tone|step|whole step|interval (generic term)|musical interval (generic term)
+(noun)|quality (generic term)
+(verb)|chant|intone|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|inflect|modulate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+(verb)|tone up|strengthen|exercise (generic term)|work out (generic term)
+tone-beginning|1
+(noun)|attack|beginning (generic term)|start (generic term)|commencement (generic term)
+tone-deaf|1
+(adj)|deaf (similar term)
+tone arm|1
+(noun)|pickup|pickup arm|mechanical device (generic term)
+tone deafness|1
+(noun)|tin ear|deafness (generic term)|hearing loss (generic term)
+tone down|2
+(verb)|muffle|mute|dull|damp|dampen|soften (generic term)
+(verb)|moderate|tame|change (generic term)|alter (generic term)|modify (generic term)
+tone ending|1
+(noun)|release|termination (generic term)|ending (generic term)|conclusion (generic term)
+tone language|1
+(noun)|tonal language|natural language (generic term)|tongue (generic term)
+tone of voice|1
+(noun)|tone|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+tone poem|1
+(noun)|symphonic poem|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+tone system|1
+(noun)|tonal system|phonological system (generic term)|phonologic system (generic term)
+tone up|1
+(verb)|tone|strengthen|exercise (generic term)|work out (generic term)
+toned|2
+(adj)|tonal (similar term)
+(adj)|toneless (antonym)
+toned down|1
+(adj)|diluted|tempered (similar term)
+tonegawa susumu|1
+(noun)|Tonegawa Susumu|molecular biologist (generic term)
+toneless|1
+(adj)|toned (antonym)
+toner|3
+(noun)|solution (generic term)
+(noun)|material (generic term)|stuff (generic term)
+(noun)|lotion (generic term)
+tong ho|1
+(noun)|chop-suey greens|shun giku|Chrysanthemum coronarium spatiosum|chrysanthemum (generic term)
+tonga|2
+(noun)|Tonga|Kingdom of Tonga|Friendly Islands|country (generic term)|state (generic term)|land (generic term)
+(noun)|Tonga|Bantu (generic term)|Bantoid language (generic term)
+tongan|3
+(adj)|Tongan|country|state|land (related term)
+(noun)|Tongan|Polynesian (generic term)
+(noun)|Tongan|Malayo-Polynesian (generic term)|Polynesian (generic term)
+tongan monetary unit|1
+(noun)|Tongan monetary unit|monetary unit (generic term)
+tongs|1
+(noun)|pair of tongs|device (generic term)
+tongue|10
+(noun)|lingua|glossa|clapper|organ (generic term)|articulator (generic term)
+(noun)|natural language|language (generic term)|linguistic communication (generic term)|artificial language (antonym)
+(noun)|knife|projection (generic term)
+(noun)|manner of speaking (generic term)|speech (generic term)|delivery (generic term)
+(noun)|spit|cape (generic term)|ness (generic term)
+(noun)|variety meat (generic term)|organs (generic term)
+(noun)|flap (generic term)
+(noun)|clapper|striker (generic term)
+(verb)|play (generic term)|spiel (generic term)
+(verb)|lick (generic term)|lap (generic term)
+tongue-fish|1
+(noun)|tonguefish|flatfish (generic term)
+tongue-flower|1
+(noun)|tongueflower|orchid (generic term)|orchidaceous plant (generic term)
+tongue-in-cheek|3
+(adj)|bantering|facetious|humorous (similar term)|humourous (similar term)
+(adv)|banteringly
+(adv)|facetiously|jokingly
+tongue-lashing|1
+(noun)|chiding|scolding|objurgation|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+tongue-shaped|1
+(adj)|lingulate|rounded (similar term)
+tongue-tie|1
+(verb)|deprive (generic term)
+tongue-tied|1
+(adj)|incoherent|inarticulate (similar term)|unarticulate (similar term)
+tongue and groove joint|1
+(noun)|mortise joint (generic term)|mortise-and-tenon joint (generic term)
+tongue depressor|1
+(noun)|depressor (generic term)
+tongue fern|1
+(noun)|felt fern|Pyrrosia lingua|Cyclophorus lingua|fern (generic term)
+tongue tie|1
+(noun)|ankyloglossia|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+tongue twister|1
+(noun)|saying (generic term)|expression (generic term)|locution (generic term)
+tongue worm|1
+(noun)|pentastomid|arthropod (generic term)
+tongued|2
+(adj)|tonguelike (similar term)|tongueless (antonym)
+(adj)|speaking (similar term)
+tonguefish|1
+(noun)|tongue-fish|flatfish (generic term)
+tongueflower|1
+(noun)|tongue-flower|orchid (generic term)|orchidaceous plant (generic term)
+tongueless|3
+(adj)|tongued (antonym)
+(adj)|mute|nonspeaking (similar term)|walk-on (similar term)
+(adj)|mute|unspoken|wordless|inarticulate (similar term)|unarticulate (similar term)
+tongueless frog|1
+(noun)|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tonguelike|1
+(adj)|tongued (similar term)
+tonguing and grooving plane|1
+(noun)|match plane|plane (generic term)|carpenter's plane (generic term)|woodworking plane (generic term)
+toni morrison|1
+(noun)|Morrison|Toni Morrison|Chloe Anthony Wofford|writer (generic term)|author (generic term)
+tonic|9
+(adj)|tension|tensity|tenseness|tautness (related term)
+(adj)|tonal|pitch (related term)
+(adj)|accented|atonic (antonym)
+(adj)|tonal (similar term)
+(adj)|bracing|brisk|energizing|energising|fresh|refreshing|refreshful|invigorating (similar term)
+(noun)|tonic water|quinine water|soft drink (generic term)
+(noun)|pop|soda|soda pop|soda water|soft drink (generic term)
+(noun)|keynote|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|restorative|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+tonic accent|1
+(noun)|pitch accent|stress (generic term)|emphasis (generic term)|accent (generic term)
+tonic epilepsy|1
+(noun)|epilepsy (generic term)
+tonic key|1
+(noun)|home key|key (generic term)|tonality (generic term)
+tonic solfa|1
+(noun)|solfa|solmization (generic term)|solmisation (generic term)
+tonic water|1
+(noun)|tonic|quinine water|soft drink (generic term)
+tonicity|1
+(noun)|tonus|tone|tension (generic term)|tensity (generic term)|tenseness (generic term)|tautness (generic term)|atonicity (antonym)
+tonight|2
+(noun)|present (generic term)|nowadays (generic term)
+(adv)|this evening|this night
+tonka bean|2
+(noun)|coumara nut|bean (generic term)
+(noun)|tonka bean tree|Coumarouna odorata|Dipteryx odorata|bean tree (generic term)
+tonka bean tree|1
+(noun)|tonka bean|Coumarouna odorata|Dipteryx odorata|bean tree (generic term)
+tonnage|1
+(noun)|tunnage|tonnage duty|duty (generic term)|tariff (generic term)
+tonnage duty|1
+(noun)|tonnage|tunnage|duty (generic term)|tariff (generic term)
+tonne|1
+(noun)|metric ton|MT|t|metric weight unit (generic term)|weight unit (generic term)
+tonocard|1
+(noun)|tocainide|Tonocard|antiarrhythmic (generic term)|antiarrhythmic drug (generic term)|antiarrhythmic medication (generic term)
+tonometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+tons|1
+(noun)|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|wads|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+tonsil|1
+(noun)|palatine tonsil|faucial tonsil|tonsilla|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+tonsilla|1
+(noun)|tonsil|palatine tonsil|faucial tonsil|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+tonsilla adenoidea|1
+(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla pharyngealis|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+tonsilla pharyngealis|1
+(noun)|pharyngeal tonsil|adenoid|Luschka's tonsil|third tonsil|tonsilla adenoidea|lymphatic tissue (generic term)|lymphoid tissue (generic term)
+tonsillectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+tonsillitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tonsorial|1
+(adj)|hairdresser|hairstylist|stylist|styler (related term)
+tonsure|3
+(noun)|pate (generic term)|poll (generic term)|crown (generic term)
+(noun)|shave (generic term)|shaving (generic term)
+(verb)|shave (generic term)
+tonsured|1
+(adj)|hairless (similar term)
+tontine|2
+(noun)|tontine insurance|life insurance (generic term)|life assurance (generic term)
+(noun)|annuity (generic term)|rente (generic term)
+tontine insurance|1
+(noun)|tontine|life insurance (generic term)|life assurance (generic term)
+tonus|1
+(noun)|tonicity|tone|tension (generic term)|tensity (generic term)|tenseness (generic term)|tautness (generic term)|atonicity (antonym)
+tony blair|1
+(noun)|Blair|Tony Blair|Anthony Charles Lynton Blair|statesman (generic term)|solon (generic term)|national leader (generic term)
+too|2
+(adv)|excessively|overly|to a fault
+(adv)|besides|also|likewise|as well
+too-careful|1
+(adj)|overcareful|careful (similar term)
+too-generous|1
+(adj)|lavish|munificent|overgenerous|prodigal|unsparing|unstinted|unstinting|generous (similar term)
+too-greedy|1
+(adj)|overgreedy|gluttonous (similar term)
+too bad|1
+(adj)|regrettable|unfortunate (similar term)
+too big for one's breeches|1
+(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|stuck-up|uppish|proud (similar term)
+too large|1
+(adj)|overlarge|large (similar term)|big (similar term)
+too little|1
+(adj)|insufficient (similar term)|deficient (similar term)
+too much|1
+(adv)|overmuch
+too soon|1
+(adv)|early|ahead of time|late (antonym)
+tool|8
+(noun)|implement (generic term)
+(noun)|instrument|means (generic term)|agency (generic term)|way (generic term)
+(noun)|creature|puppet|slave (generic term)
+(noun)|cock|prick|dick|shaft|pecker|peter|putz|penis (generic term)|phallus (generic term)|member (generic term)
+(verb)|drive (generic term)
+(verb)|joyride|tool around|ride (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|work (generic term)|work on (generic term)|process (generic term)
+tool-and-die work|1
+(noun)|trade (generic term)|craft (generic term)
+tool around|1
+(verb)|joyride|tool|ride (generic term)
+tool bag|1
+(noun)|bag (generic term)
+tool cabinet|1
+(noun)|toolbox|tool chest|tool case|chest (generic term)
+tool case|1
+(noun)|toolbox|tool chest|tool cabinet|chest (generic term)
+tool chest|1
+(noun)|toolbox|tool cabinet|tool case|chest (generic term)
+tool kit|1
+(noun)|carpenter's kit|kit (generic term)|outfit (generic term)
+tool steel|1
+(noun)|alloy steel (generic term)
+toolbox|1
+(noun)|tool chest|tool cabinet|tool case|chest (generic term)
+toolhouse|1
+(noun)|toolshed|shed (generic term)
+toolmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+toolshed|1
+(noun)|toolhouse|shed (generic term)
+toon|1
+(noun)|cartoon|animated cartoon|short subject (generic term)
+toona|1
+(noun)|Toona|genus Toona|rosid dicot genus (generic term)
+toona calantas|1
+(noun)|Philippine mahogany|Philippine cedar|kalantas|Toona calantas|Cedrela calantas|mahogany (generic term)|mahogany tree (generic term)
+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 (generic term)
+toot|3
+(noun)|sound (generic term)
+(noun)|carouse|carousal|bender|booze-up|revel (generic term)|revelry (generic term)
+(verb)|honk|blare|beep|claxon|sound (generic term)|go (generic term)
+tooth|4
+(noun)|bone (generic term)|os (generic term)
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|projection (generic term)
+tooth decay|1
+(noun)|cavity|caries|dental caries|decay (generic term)
+tooth doctor|1
+(noun)|dentist|dental practitioner|medical practitioner (generic term)|medical man (generic term)
+tooth enamel|1
+(noun)|enamel|solid body substance (generic term)
+tooth fairy|1
+(noun)|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+tooth fungus|1
+(noun)|fungus (generic term)
+tooth powder|1
+(noun)|toothpowder|dentifrice (generic term)
+tooth root|1
+(noun)|root|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+tooth shell|1
+(noun)|tusk shell|scaphopod (generic term)
+tooth socket|1
+(noun)|alveolus|socket (generic term)
+toothache|1
+(noun)|odontalgia|ache (generic term)|aching (generic term)
+toothache tree|1
+(noun)|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash (generic term)
+toothbrush|2
+(noun)|brush (generic term)|toiletry (generic term)|toilet article (generic term)
+(noun)|soup-strainer|mustache (generic term)|moustache (generic term)
+toothbrush tree|1
+(noun)|mustard tree|Salvadora persica|fruit tree (generic term)
+toothed|3
+(adj)|buck-toothed (similar term)|cogged (similar term)|fine-toothed (similar term)|fine-tooth (similar term)|gap-toothed (similar term)|saber-toothed (similar term)|sabertoothed (similar term)|sabre-toothed (similar term)|small-toothed (similar term)|toothlike (similar term)|toothy (similar term)|toothless (antonym)
+(adj)|serrate|serrated|saw-toothed|notched|rough (similar term)
+(adj)|erose|jagged|jaggy|notched|rough (similar term)
+toothed spurge|1
+(noun)|Euphorbia dentata|spurge (generic term)
+toothed sword fern|1
+(noun)|basket fern|Nephrolepis pectinata|sword fern (generic term)
+toothed whale|1
+(noun)|whale (generic term)
+toothed wheel|1
+(noun)|roulette|wheel (generic term)
+toothless|2
+(adj)|edental (similar term)|edentate (similar term)|edentulate (similar term)|edentulous (similar term)|toothed (antonym)
+(adj)|ineffective (similar term)|uneffective (similar term)|ineffectual (similar term)
+toothlike|1
+(adj)|toothed (similar term)
+toothpaste|1
+(noun)|dentifrice (generic term)
+toothpick|1
+(noun)|pick (generic term)|strip (generic term)
+toothpowder|1
+(noun)|tooth powder|dentifrice (generic term)
+toothsome|3
+(adj)|palatable|appetizing (related term)|appetising (related term)|edible (related term)|comestible (related term)|eatable (related term)|tasty (related term)|unpalatable (antonym)
+(adj)|delectable|delicious|luscious|pleasant-tasting|scrumptious|yummy|tasty (similar term)
+(adj)|juicy|luscious|red-hot|voluptuous|sexy (similar term)
+toothsomeness|1
+(noun)|delectability|deliciousness|lusciousness|appetizingness (generic term)|appetisingness (generic term)
+toothwort|1
+(noun)|crinkleroot|crinkle-root|crinkle root|pepper root|Cardamine diphylla|Dentaria diphylla|bittercress (generic term)|bitter cress (generic term)
+toothy|1
+(adj)|toothed (similar term)
+tootle|2
+(noun)|sound (generic term)
+(verb)|honk (generic term)|blare (generic term)|beep (generic term)|claxon (generic term)|toot (generic term)
+toowomba canary grass|1
+(noun)|hardinggrass|Harding grass|Phalaris aquatica|Phalaris tuberosa|grass (generic term)
+top|22
+(adj)|apical (similar term)|crowning (similar term)|topmost (similar term)|uppermost (similar term)|upmost (similar term)|upper (similar term)|best (related term)|high (related term)|bottom (antonym)|side (antonym)
+(noun)|region (generic term)|part (generic term)
+(noun)|top side|upper side|upside|side (generic term)|face (generic term)
+(noun)|peak|crown|crest|tip|summit|topographic point (generic term)|place (generic term)|spot (generic term)
+(noun)|top of the inning|turn (generic term)|bout (generic term)|round (generic term)|bottom (antonym)
+(noun)|acme|height|elevation|peak|pinnacle|summit|superlative|meridian|tiptop|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+(noun)|intensity (generic term)|intensiveness (generic term)
+(noun)|platform (generic term)
+(noun)|whirligig|teetotum|spinning top|plaything (generic term)|toy (generic term)
+(noun)|cover|covering (generic term)
+(noun)|woman's clothing (generic term)
+(noun)|circus tent|big top|round top|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+(verb)|exceed|transcend|overstep|pass|go past|excel (generic term)|stand out (generic term)|surpass (generic term)
+(verb)|clear|pass (generic term)|overtake (generic term)|overhaul (generic term)
+(verb)|lie (generic term)
+(verb)|lead
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)
+(verb)|hit (generic term)
+(verb)|pinch|snip (generic term)|clip (generic term)|crop (generic term)|trim (generic term)|lop (generic term)|dress (generic term)|prune (generic term)|cut back (generic term)
+(verb)|crown|culminate (generic term)|climax (generic term)
+(verb)|top off|complete (generic term)|finish (generic term)
+top-down|1
+(adj)|bottom-up (antonym)
+top-flight|1
+(adj)|top-hole|topping|superior (similar term)
+top-grade|1
+(adj)|high-grade|top-quality|best (similar term)
+top-heavy|1
+(adj)|unstable (similar term)
+top-hole|1
+(adj)|top-flight|topping|superior (similar term)
+top-quality|1
+(adj)|high-grade|top-grade|best (similar term)
+top-secret|1
+(adj)|classified (similar term)
+top-up|1
+(noun)|indefinite quantity (generic term)
+top banana|2
+(noun)|comedian (generic term)|comic (generic term)
+(noun)|kingpin|bigwig|important person (generic term)|influential person (generic term)|personage (generic term)
+top billing|1
+(noun)|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+top boot|1
+(noun)|buskin|combat boot|desert boot|half boot|boot (generic term)
+top brass|1
+(noun)|administration (generic term)|governance (generic term)|governing body (generic term)|establishment (generic term)|brass (generic term)|organization (generic term)|organisation (generic term)
+top dog|1
+(noun)|head|chief|leader (generic term)
+top dressing|1
+(noun)|fertilization (generic term)|fertilisation (generic term)|fecundation (generic term)|dressing (generic term)
+top executive|1
+(noun)|baron|big businessman|business leader|king|magnate|mogul|power|tycoon|businessman (generic term)|man of affairs (generic term)
+top fermentation|1
+(noun)|zymosis (generic term)|zymolysis (generic term)|fermentation (generic term)|fermenting (generic term)|ferment (generic term)
+top fermenting yeast|1
+(noun)|brewer's yeast (generic term)
+top hat|1
+(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|topper|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+top lift|1
+(noun)|lift (generic term)
+top of the inning|1
+(noun)|top|turn (generic term)|bout (generic term)|round (generic term)|bottom (antonym)
+top of the line|1
+(noun)|merchandise (generic term)|ware (generic term)|product (generic term)
+top off|2
+(verb)|top|complete (generic term)|finish (generic term)
+(verb)|fill (generic term)|fill up (generic term)|make full (generic term)
+top onion|1
+(noun)|tree onion|Egyptian onion|Allium cepa viviparum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+top out|2
+(verb)|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|reach (generic term)|make (generic term)|attain (generic term)|hit (generic term)|arrive at (generic term)|gain (generic term)|bottom out (antonym)
+top quark|1
+(noun)|truth quark|quark (generic term)
+top round|1
+(noun)|roast (generic term)|joint (generic term)
+top side|1
+(noun)|top|upper side|upside|side (generic term)|face (generic term)
+topaz|3
+(noun)|false topaz|common topaz|quartz (generic term)
+(noun)|transparent gem (generic term)|mineral (generic term)
+(noun)|tan|light brown (generic term)
+topcoat|1
+(noun)|greatcoat|overcoat|coat (generic term)
+topdress|1
+(verb)|fertilize (generic term)|fertilise (generic term)|feed (generic term)
+tope|2
+(noun)|stupa|shrine (generic term)
+(verb)|drink|use (generic term)|habituate (generic term)
+topee|1
+(noun)|pith hat|pith helmet|sun helmet|topi|sunhat (generic term)|sun hat (generic term)
+topeka|1
+(noun)|Topeka|capital of Kansas|state capital (generic term)
+toper|1
+(noun)|drinker|imbiber|juicer|consumer (generic term)|nondrinker (antonym)
+toper's nose|1
+(noun)|rhinophyma|hypertrophic rosacea|brandy nose|rum nose|rum-blossom|potato nose|hammer nose|copper nose|rhinopathy (generic term)
+topgallant|2
+(noun)|topgallant sail|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+(noun)|topgallant mast|topmast (generic term)
+topgallant mast|1
+(noun)|topgallant|topmast (generic term)
+topgallant sail|1
+(noun)|topgallant|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+tophus|2
+(noun)|chalkstone|urate (generic term)
+(noun)|tartar|calculus|crust (generic term)|incrustation (generic term)|encrustation (generic term)
+topi|2
+(noun)|pith hat|pith helmet|sun helmet|topee|sunhat (generic term)|sun hat (generic term)
+(noun)|sassaby|Damaliscus lunatus|antelope (generic term)
+topiary|2
+(noun)|garden (generic term)
+(noun)|art (generic term)|artistic creation (generic term)|artistic production (generic term)
+topic|2
+(noun)|subject|theme|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|subject|issue|matter|content (generic term)|cognitive content (generic term)|mental object (generic term)
+topic sentence|1
+(noun)|sentence (generic term)
+topical|3
+(adj)|local (similar term)
+(adj)|content|cognitive content|mental object (related term)
+(adj)|current (similar term)
+topical anaesthesia|1
+(noun)|topical anesthesia|anesthesia (generic term)|anaesthesia (generic term)
+topical anaesthetic|1
+(noun)|local anesthetic|local anaesthetic|local|topical anesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+topical anesthesia|1
+(noun)|topical anaesthesia|anesthesia (generic term)|anaesthesia (generic term)
+topical anesthetic|1
+(noun)|local anesthetic|local anaesthetic|local|topical anaesthetic|anesthetic (generic term)|anaesthetic (generic term)|anesthetic agent (generic term)|anaesthetic agent (generic term)
+topicality|1
+(noun)|interest (generic term)|interestingness (generic term)
+topicalization|1
+(noun)|emphasis (generic term)
+topicalize|1
+(verb)|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+topically|1
+(adv)|locally
+topknot|2
+(noun)|headdress (generic term)|headgear (generic term)
+(noun)|crest (generic term)
+topknotted|1
+(adj)|crested|tufted|adorned (similar term)|decorated (similar term)
+topless|2
+(adj)|lidless (similar term)|topped (antonym)
+(adj)|bare-breasted|braless|unclothed (similar term)
+topmast|1
+(noun)|mast (generic term)
+topminnow|2
+(noun)|poeciliid fish|poeciliid|live-bearer|cypriniform fish (generic term)
+(noun)|swordtail|helleri|Xyphophorus helleri|cyprinodont (generic term)
+topmost|1
+(adj)|uppermost|upmost|top (similar term)
+topnotch|1
+(adj)|ace|A-one|crack|fantastic|first-rate|super|tiptop|tops|superior (similar term)
+topognosia|1
+(noun)|topognosis|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+topognosis|1
+(noun)|topognosia|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+topographic|1
+(adj)|topographical|geography|geographics (related term)
+topographic anatomy|1
+(noun)|regional anatomy|topology|anatomy (generic term)|general anatomy (generic term)
+topographic point|1
+(noun)|place|spot|point (generic term)
+topographical|1
+(adj)|topographic|geography|geographics (related term)
+topography|2
+(noun)|shape (generic term)|form (generic term)|configuration (generic term)|contour (generic term)|conformation (generic term)
+(noun)|geography (generic term)|geographics (generic term)
+topolatry|1
+(noun)|place-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+topologic|1
+(adj)|topological|pure mathematics (related term)
+topological|1
+(adj)|topologic|pure mathematics (related term)
+topological space|1
+(noun)|mathematical space|space (generic term)|infinite (generic term)|set (generic term)
+topology|4
+(noun)|topography (generic term)
+(noun)|regional anatomy|topographic anatomy|anatomy (generic term)|general anatomy (generic term)
+(noun)|analysis situs|pure mathematics (generic term)
+(noun)|network topology|configuration (generic term)|constellation (generic term)
+toponomy|2
+(noun)|toponymy|terminology (generic term)|nomenclature (generic term)|language (generic term)
+(noun)|toponymy|lexicology (generic term)
+toponym|1
+(noun)|place name|name (generic term)
+toponymy|2
+(noun)|toponomy|terminology (generic term)|nomenclature (generic term)|language (generic term)
+(noun)|toponomy|lexicology (generic term)
+topos|1
+(noun)|theme (generic term)|motif (generic term)
+topped|1
+(adj)|flat-topped (similar term)|flat-top (similar term)|lidded (similar term)|screw-topped (similar term)|topless (antonym)
+topper|5
+(noun)|worker (generic term)
+(noun)|best|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|wit (generic term)|humor (generic term)|humour (generic term)|witticism (generic term)|wittiness (generic term)
+(noun)|coat (generic term)
+(noun)|dress hat|high hat|opera hat|silk hat|stovepipe|top hat|beaver|hat (generic term)|chapeau (generic term)|lid (generic term)|man's clothing (generic term)
+topping|2
+(adj)|top-flight|top-hole|superior (similar term)
+(noun)|garnish (generic term)
+toppingly|1
+(adv)|wonderfully|wondrous|wondrously|superbly|marvellously|terrifically|marvelously
+topple|2
+(verb)|tumble|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|tumble|tip|push (generic term)|force (generic term)
+tops|1
+(adj)|ace|A-one|crack|fantastic|first-rate|super|tiptop|topnotch|superior (similar term)
+topsail|1
+(noun)|sail (generic term)|canvas (generic term)|canvass (generic term)|sheet (generic term)
+topside|1
+(noun)|weather deck (generic term)|shelter deck (generic term)
+topsoil|1
+(noun)|surface soil|soil (generic term)|dirt (generic term)
+topspin|1
+(noun)|spin (generic term)
+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 (similar term)
+(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 (generic term)
+topsy-turvyness|1
+(noun)|chaos|pandemonium|bedlam|topsy-turvydom|confusion (generic term)
+topv|1
+(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|trivalent live oral poliomyelitis vaccine|TOPV|poliovirus vaccine (generic term)
+toque|2
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+(noun)|pillbox|turban|millinery (generic term)|woman's hat (generic term)
+tor|2
+(noun)|rock (generic term)|stone (generic term)
+(noun)|hill (generic term)
+toradol|1
+(noun)|ketorolac tromethamine|Acular|Toradol|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+torah|3
+(noun)|Torah|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|Torah|Pentateuch|Laws|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|Torah|scroll (generic term)|roll (generic term)
+torch|5
+(noun)|light (generic term)|light source (generic term)
+(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+(noun)|flashlight|electric lamp (generic term)
+(noun)|blowtorch|blowlamp|burner (generic term)
+(verb)|burn (generic term)|fire (generic term)|burn down (generic term)
+torch race|1
+(noun)|relays (generic term)|relay race (generic term)
+torch singer|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+torch song|1
+(noun)|song (generic term)|vocal (generic term)
+torchbearer|1
+(noun)|leader (generic term)
+torchlight|1
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+torchwood family|1
+(noun)|Burseraceae|family Burseraceae|rosid dicot family (generic term)
+tore|1
+(noun)|torus|molding (generic term)|moulding (generic term)
+toreador|1
+(noun)|bullfighter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+toreador pants|1
+(noun)|pedal pusher|trouser (generic term)|pant (generic term)
+torero|1
+(noun)|bullfighter (generic term)|toreador (generic term)
+torino|1
+(noun)|Turin|Torino|city (generic term)|metropolis (generic term)|urban center (generic term)
+torment|9
+(noun)|torture|pain (generic term)|hurting (generic term)
+(noun)|anguish|torture|distress (generic term)|hurt (generic term)|suffering (generic term)
+(noun)|agony|torture|suffering (generic term)|hurt (generic term)
+(noun)|harassment|annoyance (generic term)|chafe (generic term)|vexation (generic term)
+(noun)|curse|affliction (generic term)
+(noun)|badgering|worrying|bedevilment|harassment (generic term)|molestation (generic term)
+(verb)|torture|excruciate|rack|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|rag|bedevil|crucify|dun|frustrate|harass (generic term)|hassle (generic term)|harry (generic term)|chivy (generic term)|chivvy (generic term)|chevy (generic term)|chevvy (generic term)|beset (generic term)|plague (generic term)|molest (generic term)|provoke (generic term)
+(verb)|torture|excruciate|injure (generic term)|wound (generic term)
+tormented|2
+(adj)|anguished|tortured|sorrowful (similar term)
+(adj)|hag-ridden|hagridden|troubled (similar term)
+tormenter|2
+(noun)|tormentor|persecutor|oppressor (generic term)
+(noun)|tormentor|teaser|flat (generic term)
+tormentor|2
+(noun)|tormenter|persecutor|oppressor (generic term)
+(noun)|tormenter|teaser|flat (generic term)
+torn|2
+(adj)|lacerate|lacerated|mangled|injured (similar term)
+(adj)|divided (similar term)
+tornado|2
+(noun)|twister|cyclone (generic term)
+(noun)|crack|cocaine (generic term)|cocain (generic term)
+tornado cellar|1
+(noun)|storm cellar|cyclone cellar|shelter (generic term)
+tornado lantern|1
+(noun)|hurricane lamp|hurricane lantern|storm lantern|storm lamp|lamp (generic term)
+tornillo|1
+(noun)|screw bean|screwbean|screwbean mesquite|Prosopis pubescens|mesquite (generic term)|mesquit (generic term)
+torodal|1
+(noun)|ketorolac|Torodal|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+toroid|2
+(noun)|solid (generic term)
+(noun)|torus|round shape (generic term)
+toroidal|1
+(adj)|solid (related term)
+toronto|1
+(noun)|Toronto|provincial capital (generic term)
+torpedinidae|1
+(noun)|Torpedinidae|family Torpedinidae|fish family (generic term)
+torpediniformes|1
+(noun)|Torpediniformes|order Torpediniformes|animal order (generic term)
+torpedo|8
+(noun)|gunman|gunslinger|hired gun|gun|gun for hire|triggerman|hit man|hitman|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|wedge|zep|sandwich (generic term)
+(noun)|explosive device (generic term)
+(noun)|firework (generic term)|pyrotechnic (generic term)
+(noun)|explosive device (generic term)|alarm (generic term)|alert (generic term)|warning signal (generic term)|alarum (generic term)
+(noun)|armament (generic term)
+(noun)|electric ray|crampfish|numbfish|ray (generic term)
+(verb)|attack (generic term)|assail (generic term)
+torpedo-boat destroyer|1
+(noun)|destroyer (generic term)|guided missile destroyer (generic term)
+torpedo boat|1
+(noun)|warship (generic term)|war vessel (generic term)|combat ship (generic term)
+torpedo tube|1
+(noun)|tube (generic term)|tubing (generic term)
+torpid|2
+(adj)|inert|sluggish|soggy|inactive (similar term)
+(adj)|dormant|hibernating|asleep (similar term)
+torpidity|2
+(noun)|torpor|physiological state (generic term)|physiological condition (generic term)
+(noun)|listlessness|torpidness|torpor|passivity (generic term)|passiveness (generic term)
+torpidly|1
+(adv)|dazedly
+torpidness|1
+(noun)|listlessness|torpidity|torpor|passivity (generic term)|passiveness (generic term)
+torpor|2
+(noun)|torpidity|physiological state (generic term)|physiological condition (generic term)
+(noun)|listlessness|torpidity|torpidness|passivity (generic term)|passiveness (generic term)
+torquato tasso|1
+(noun)|Tasso|Torquato Tasso|poet (generic term)
+torque|1
+(noun)|torsion|force (generic term)
+torque converter|1
+(noun)|converter (generic term)|convertor (generic term)
+torque wrench|1
+(noun)|wrench (generic term)|spanner (generic term)
+torquemada|1
+(noun)|Torquemada|Tomas de Torquemada|Grand Inquisitor (generic term)
+torr|1
+(noun)|millimeter of mercury|mm Hg|pressure unit (generic term)
+torrent|3
+(noun)|downpour|cloudburst|deluge|waterspout|pelter|soaker|rain (generic term)|rainfall (generic term)
+(noun)|violent stream|current (generic term)|stream (generic term)
+(noun)|flood|inundation|deluge|batch (generic term)|deal (generic term)|flock (generic term)|good deal (generic term)|great deal (generic term)|hatful (generic term)|heap (generic term)|lot (generic term)|mass (generic term)|mess (generic term)|mickle (generic term)|mint (generic term)|muckle (generic term)|peck (generic term)|pile (generic term)|plenty (generic term)|pot (generic term)|quite a little (generic term)|raft (generic term)|sight (generic term)|slew (generic term)|spate (generic term)|stack (generic term)|tidy sum (generic term)|wad (generic term)|whole lot (generic term)|whole slew (generic term)
+torrential|3
+(adj)|current|stream (related term)
+(adj)|uncontrolled (similar term)
+(adj)|abundant (similar term)
+torreon|1
+(noun)|Torreon|city (generic term)|metropolis (generic term)|urban center (generic term)
+torres strait|1
+(noun)|Torres Strait|strait (generic term)|sound (generic term)
+torrey's pine|1
+(noun)|Torrey pine|Torrey's pine|soledad pine|grey-leaf pine|sabine pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+torrey pine|1
+(noun)|Torrey pine|Torrey's pine|soledad pine|grey-leaf pine|sabine pine|Pinus torreyana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+torrey tree|1
+(noun)|stinking cedar|stinking yew|Torrey tree|Torreya taxifolia|yew (generic term)
+torreya|1
+(noun)|Torreya|genus Torreya|gymnosperm genus (generic term)
+torreya californica|1
+(noun)|California nutmeg|nutmeg-yew|Torreya californica|yew (generic term)
+torreya taxifolia|1
+(noun)|stinking cedar|stinking yew|Torrey tree|Torreya taxifolia|yew (generic term)
+torricelli|1
+(noun)|Torricelli|Evangelista Torricelli|physicist (generic term)
+torrid|2
+(adj)|ardent|burning|fervent|fervid|fiery|impassioned|perfervid|passionate (similar term)
+(adj)|hot (similar term)
+torrid zone|1
+(noun)|Torrid Zone|tropical zone|tropics|climatic zone (generic term)
+torridity|1
+(noun)|hotness (generic term)|heat (generic term)|high temperature (generic term)
+torsion|2
+(noun)|tortuosity|tortuousness|contortion|crookedness|distorted shape (generic term)|distortion (generic term)
+(noun)|torque|force (generic term)
+torsion balance|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+torsk|1
+(noun)|cusk|Brosme brosme|gadoid (generic term)|gadoid fish (generic term)
+torso|1
+(noun)|trunk|body|body part (generic term)
+tort|1
+(noun)|civil wrong|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+tort-feasor|1
+(noun)|tortfeasor|party (generic term)
+torte|1
+(noun)|cake (generic term)
+tortellini|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+tortfeasor|1
+(noun)|tort-feasor|party (generic term)
+torticollis|1
+(noun)|wryneck|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+tortilla|1
+(noun)|pancake (generic term)|battercake (generic term)|flannel cake (generic term)|flannel-cake (generic term)|flapcake (generic term)|flapjack (generic term)|griddlecake (generic term)|hotcake (generic term)|hot cake (generic term)
+tortilla chip|1
+(noun)|corn chip (generic term)
+tortious|1
+(adj)|wrongdoing|wrongful conduct|misconduct|actus reus (related term)
+tortoise|1
+(noun)|turtle (generic term)
+tortoise plant|1
+(noun)|elephant's-foot|Hottentot bread vine|Hottentot's bread vine|Dioscorea elephantipes|vine (generic term)
+tortoiseshell|3
+(noun)|horn (generic term)
+(noun)|tortoiseshell butterfly|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+(noun)|tortoiseshell-cat|calico cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tortoiseshell-cat|1
+(noun)|tortoiseshell|calico cat|domestic cat (generic term)|house cat (generic term)|Felis domesticus (generic term)|Felis catus (generic term)
+tortoiseshell butterfly|1
+(noun)|tortoiseshell|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+tortoiseshell turtle|1
+(noun)|hawksbill turtle|hawksbill|hawkbill|Eretmochelys imbricata|sea turtle (generic term)|marine turtle (generic term)
+tortricid|1
+(noun)|tortricid moth|moth (generic term)
+tortricid moth|1
+(noun)|tortricid|moth (generic term)
+tortricidae|1
+(noun)|Tortricidae|family Tortricidae|arthropod family (generic term)
+tortrix|2
+(noun)|orange tortrix|Argyrotaenia citrana|tortricid (generic term)|tortricid moth (generic term)
+(noun)|tea tortrix|Homona coffearia|tortricid (generic term)|tortricid moth (generic term)
+tortuosity|1
+(noun)|tortuousness|torsion|contortion|crookedness|distorted shape (generic term)|distortion (generic term)
+tortuous|3
+(adj)|Byzantine|convoluted|involved|knotty|tangled|complex (similar term)
+(adj)|twisting|twisty|winding|voluminous|crooked (similar term)
+(adj)|indirect (similar term)
+tortuousness|2
+(noun)|tortuosity|torsion|contortion|crookedness|distorted shape (generic term)|distortion (generic term)
+(noun)|complicatedness|complication|knottiness|complexity (generic term)|complexness (generic term)
+torture|7
+(noun)|anguish|torment|distress (generic term)|hurt (generic term)|suffering (generic term)
+(noun)|torment|pain (generic term)|hurting (generic term)
+(noun)|agony|torment|suffering (generic term)|hurt (generic term)
+(noun)|distortion|overrefinement|straining|twisting|falsification (generic term)|misrepresentaation (generic term)
+(noun)|torturing|persecution (generic term)
+(verb)|torment|excruciate|rack|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|excruciate|torment|injure (generic term)|wound (generic term)
+torture chamber|1
+(noun)|room (generic term)
+tortured|2
+(adj)|punished (similar term)
+(adj)|anguished|tormented|sorrowful (similar term)
+torturer|1
+(noun)|oppressor (generic term)
+torturesome|1
+(adj)|agonizing|agonising|excruciating|harrowing|torturing|torturous|painful (similar term)
+torturing|2
+(adj)|agonizing|agonising|excruciating|harrowing|torturous|torturesome|painful (similar term)
+(noun)|torture|persecution (generic term)
+torturous|1
+(adj)|agonizing|agonising|excruciating|harrowing|torturing|torturesome|painful (similar term)
+torturously|1
+(adv)|agonizingly|excruciatingly
+torulose|1
+(adj)|unshapely (similar term)
+torus|2
+(noun)|toroid|round shape (generic term)
+(noun)|tore|molding (generic term)|moulding (generic term)
+tory|3
+(noun)|Tory|American (generic term)
+(noun)|Tory|Englishman (generic term)
+(noun)|Tory|rightist (generic term)|right-winger (generic term)
+toscana|1
+(noun)|Tuscany|Toscana|Italian region (generic term)
+toscanini|1
+(noun)|Toscanini|Arturo Toscanini|conductor (generic term)|music director (generic term)|director (generic term)
+tosh|1
+(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|twaddle|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+tosk|1
+(noun)|Tosk|Tosk dialect|Albanian (generic term)
+tosk dialect|1
+(noun)|Tosk|Tosk dialect|Albanian (generic term)
+toss|9
+(noun)|flip|throw (generic term)
+(noun)|pass|flip|throw (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|flip|sky|pitch|fling (generic term)
+(verb)|flip|turn (generic term)
+(verb)|chuck|throw (generic term)
+(verb)|convulse|thresh|thresh about|thrash|thrash about|slash|jactitate|shake (generic term)|agitate (generic term)
+(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 (generic term)|remove (generic term)
+(verb)|agitate (generic term)|vex (generic term)|disturb (generic term)|commove (generic term)|shake up (generic term)|stir up (generic term)|raise up (generic term)
+toss-up|1
+(noun)|tossup|even chance|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+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 (generic term)|remove (generic term)
+toss back|1
+(verb)|throw back|flip (generic term)|toss (generic term)|sky (generic term)|pitch (generic term)
+toss bombing|1
+(noun)|loft bombing|bombing run (generic term)
+toss in|1
+(verb)|add (generic term)|append (generic term)|supply (generic term)
+toss off|2
+(verb)|dash off|scratch off|knock off|fling off|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|pop|bolt down|belt down|pour down|down|drink down|kill|drink (generic term)|imbibe (generic term)
+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 (generic term)|remove (generic term)
+tossed salad|1
+(noun)|salad (generic term)
+tosser|2
+(noun)|jerk-off|wanker|masturbator (generic term)|onanist (generic term)
+(noun)|thrower (generic term)
+tossing|1
+(adj)|agitated|moving (similar term)
+tossup|1
+(noun)|toss-up|even chance|luck (generic term)|fortune (generic term)|chance (generic term)|hazard (generic term)
+tostada|2
+(noun)|dish (generic term)
+(noun)|tortilla (generic term)
+tot|3
+(noun)|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|toddler|yearling|bambino|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(verb)|total|tot up|sum|sum up|summate|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+tot up|1
+(verb)|total|tot|sum|sum up|summate|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+total|9
+(adj)|entire|full|whole (similar term)
+(adj)|overall|whole|gross (similar term)
+(adj)|absolute|unconditioned|unconditional (similar term)
+(adj)|full|complete (similar term)
+(noun)|sum|totality|aggregate|whole (generic term)|unit (generic term)
+(noun)|sum|amount|quantity (generic term)
+(verb)|number|add up|come|amount|be (generic term)
+(verb)|tot|tot up|sum|sum up|summate|tote up|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+(verb)|damage (generic term)
+total aphasia|1
+(noun)|global aphasia|aphasia (generic term)
+total darkness|1
+(noun)|lightlessness|blackness|pitch blackness|black|dark (generic term)|darkness (generic term)
+total depravity|1
+(noun)|theological doctrine (generic term)
+total eclipse|1
+(noun)|eclipse (generic term)|occultation (generic term)
+total heat|1
+(noun)|heat content|enthalpy|H|physical property (generic term)
+total hysterectomy|1
+(noun)|hysterectomy (generic term)
+total parenteral nutrition|1
+(noun)|TPN|hyperalimentation|feeding (generic term)|alimentation (generic term)
+totaled|1
+(adj)|destroyed (similar term)
+totalisator|1
+(noun)|pari-mutuel machine|totalizer|totaliser|totalizator|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+totalise|1
+(verb)|totalize|compound (generic term)|combine (generic term)
+totaliser|2
+(noun)|pari-mutuel machine|totalizer|totalizator|totalisator|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+(noun)|adding machine|totalizer|calculator (generic term)|calculating machine (generic term)
+totalism|1
+(noun)|absolutism|totalitarianism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+totalistic|1
+(adj)|totalitarian|political orientation|ideology|political theory (related term)
+totalitarian|3
+(adj)|undemocratic (similar term)
+(adj)|totalistic|political orientation|ideology|political theory (related term)
+(noun)|disciple (generic term)|adherent (generic term)
+totalitarianism|2
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|tyranny|autocracy (generic term)|autarchy (generic term)
+(noun)|absolutism|totalism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+totality|3
+(noun)|entirety|entireness|integrality|completeness (generic term)
+(noun)|generality (generic term)
+(noun)|sum|total|aggregate|whole (generic term)|unit (generic term)
+totalizator|1
+(noun)|pari-mutuel machine|totalizer|totaliser|totalisator|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+totalize|1
+(verb)|totalise|compound (generic term)|combine (generic term)
+totalizer|2
+(noun)|pari-mutuel machine|totaliser|totalizator|totalisator|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+(noun)|adding machine|totaliser|calculator (generic term)|calculating machine (generic term)
+totally|1
+(adv)|wholly|entirely|completely|all|altogether|whole|partly (antonym)
+totara|1
+(noun)|Podocarpus totara|conifer (generic term)|coniferous tree (generic term)
+tote|2
+(noun)|carryall|holdall|tote bag|bag (generic term)
+(verb)|lug|tug|transport (generic term)|carry (generic term)
+tote bag|1
+(noun)|carryall|holdall|tote|bag (generic term)
+tote up|1
+(verb)|total|tot|tot up|sum|sum up|summate|add|add together|tally|add up|count (generic term)|number (generic term)|enumerate (generic term)|numerate (generic term)
+totem|2
+(noun)|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+(noun)|emblem (generic term)
+totem pole|1
+(noun)|column (generic term)|pillar (generic term)|emblem (generic term)
+totemic|1
+(adj)|belief (related term)
+totemism|1
+(noun)|belief (generic term)
+totemist|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+toter|1
+(noun)|carrier|bearer|traveler (generic term)|traveller (generic term)
+totipotence|1
+(noun)|totipotency|ability (generic term)
+totipotency|1
+(noun)|totipotence|ability (generic term)
+totipotent|1
+(adj)|ability (related term)
+totten trust|1
+(noun)|savings account trust|savings bank trust|trust account|trustee account|Totten trust|trust (generic term)
+totter|3
+(verb)|rock (generic term)|sway (generic term)|shake (generic term)
+(verb)|toddle|coggle|dodder|paddle|waddle|walk (generic term)
+(verb)|teeter|seesaw|move (generic term)
+totterer|1
+(noun)|staggerer|reeler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+tottering|2
+(adj)|tottery|unsteady (similar term)
+(adj)|unstable (similar term)
+tottery|1
+(adj)|tottering|unsteady (similar term)
+toucan|1
+(noun)|piciform bird (generic term)
+toucanet|1
+(noun)|toucan (generic term)
+touch|27
+(noun)|touching|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|sense of touch|skin senses|touch modality|cutaneous senses|somatosense (generic term)|exteroception (generic term)
+(noun)|trace|ghost|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|signature|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|touching|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+(noun)|hint|tinge|mite|pinch|jot|speck|soupcon|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|contact|communication (generic term)|communicating (generic term)
+(noun)|spot|attack (generic term)
+(noun)|solicitation (generic term)
+(noun)|touch sensation|tactual sensation|tactile sensation|feeling|perception (generic term)
+(noun)|adeptness (generic term)|adroitness (generic term)|deftness (generic term)|facility (generic term)|quickness (generic term)
+(noun)|tactile property (generic term)|feel (generic term)
+(verb)|touch down (related term)
+(verb)|perceive (generic term)|comprehend (generic term)
+(verb)|stir|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)|stir up (related term)
+(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 (generic term)|alter (generic term)|modify (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|touch (generic term)
+(verb)|reach|extend to|be (generic term)|reach out (related term)|reach into (related term)
+(verb)|equal|rival|match|compete (generic term)|vie (generic term)|contend (generic term)
+(verb)|disturb|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|allude|advert|hint (generic term)|suggest (generic term)
+(verb)|understand (generic term)
+(verb)|partake|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|tint|tinct|tinge|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+touch-and-go|1
+(adj)|parlous|perilous|precarious|dangerous (similar term)|unsafe (similar term)
+touch-me-not|3
+(noun)|jewelweed|lady's earrings|orange balsam|celandine|Impatiens capensis|herb (generic term)|herbaceous plant (generic term)
+(noun)|squirting cucumber|exploding cucumber|Ecballium elaterium|gourd (generic term)|gourd vine (generic term)
+(noun)|sensitive plant|shame plant|live-and-die|humble plant|action plant|Mimosa pudica|mimosa (generic term)
+touch-type|1
+(verb)|type (generic term)|typewrite (generic term)
+touch-typist|1
+(noun)|typist (generic term)
+touch a chord|1
+(verb)|strike a chord|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+touch base|1
+(verb)|get in touch|connect|interact (generic term)
+touch down|1
+(verb)|land (generic term)|set down (generic term)
+touch football|1
+(noun)|American football (generic term)|American football game (generic term)
+touch modality|1
+(noun)|touch|sense of touch|skin senses|cutaneous senses|somatosense (generic term)|exteroception (generic term)
+touch off|1
+(verb)|trip|actuate|trigger|activate|set off|spark off|spark|trigger off|initiate (generic term)|pioneer (generic term)
+touch on|4
+(verb)|mention (generic term)|advert (generic term)|bring up (generic term)|cite (generic term)|name (generic term)|refer (generic term)
+(verb)|refer|pertain|relate|concern|come to|bear on|touch
+(verb)|repair|mend|fix|bushel|doctor|furbish up|restore|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)|break (antonym)
+(verb)|affect|impact|bear upon|bear on|touch|change (generic term)|alter (generic term)|modify (generic term)
+touch perception|1
+(noun)|tactual sensation|tactility|skin perceptiveness|somesthesia (generic term)|somesthesis (generic term)|somaesthesia (generic term)|somaesthesis (generic term)|somatesthesia (generic term)|somataesthesis (generic term)|somatosensory system (generic term)|somatic sensory system (generic term)|somatic sense (generic term)
+touch screen|1
+(noun)|touchscreen|computer screen (generic term)|computer display (generic term)
+touch sensation|1
+(noun)|touch|tactual sensation|tactile sensation|feeling|perception (generic term)
+touch system|1
+(noun)|touch typing|typing (generic term)|typewriting (generic term)
+touch typing|1
+(noun)|touch system|typing (generic term)|typewriting (generic term)
+touch up|1
+(verb)|retouch|enhance (generic term)
+touchable|1
+(adj)|tangible|tactile (similar term)|tactual (similar term)|concrete (related term)|intangible (antonym)
+touchback|1
+(noun)|football play (generic term)
+touchdown|2
+(noun)|score (generic term)
+(noun)|landing (generic term)
+touched|3
+(adj)|brushed (similar term)|grazed (similar term)|untouched (antonym)
+(adj)|moved|affected|stirred|sick (similar term)|affected (related term)|emotional (related term)|unmoved (antonym)
+(adj)|fey|insane (similar term)
+toucher|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+touchiness|1
+(noun)|testiness|tetchiness|irritability (generic term)|crossness (generic term)|fretfulness (generic term)|fussiness (generic term)|peevishness (generic term)|petulance (generic term)|choler (generic term)
+touching|3
+(adj)|affecting|poignant|moving (similar term)
+(noun)|touch|contact (generic term)|impinging (generic term)|striking (generic term)
+(noun)|touch|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+touchingly|1
+(adv)|affectingly|poignantly
+touchline|1
+(noun)|sideline (generic term)|out of bounds (generic term)
+touchscreen|1
+(noun)|touch screen|computer screen (generic term)|computer display (generic term)
+touchstone|1
+(noun)|standard|criterion|measure|reference point (generic term)|point of reference (generic term)|reference (generic term)
+touchwood|1
+(noun)|kindling|tinder|spunk|punk|igniter (generic term)|ignitor (generic term)|lighter (generic term)
+touchy|2
+(adj)|huffy|thin-skinned|feisty|sensitive (similar term)
+(adj)|delicate|ticklish|difficult (similar term)|hard (similar term)
+touchy-feely|1
+(adj)|loving (similar term)
+tough|12
+(adj)|hard-bitten (similar term)|hard-boiled (similar term)|pugnacious (similar term)|tough-minded (similar term)|unsentimental (similar term)|hard (related term)|insensitive (related term)|tender (antonym)
+(adj)|rugged|difficult (similar term)|hard (similar term)
+(adj)|toughened|calloused (similar term)|callous (similar term)|thickened (similar term)|enured (similar term)|inured (similar term)|hardened (similar term)|weather-beaten (similar term)|experienced (related term)|experient (related term)|rugged (related term)|strong (related term)|tender (antonym)
+(adj)|sturdy|rugged (similar term)
+(adj)|ruffianly|violent (similar term)
+(adj)|bad|uncomfortable (similar term)
+(adj)|cartilaginous (similar term)|gristly (similar term)|rubbery (similar term)|chewy (similar term)|coriaceous (similar term)|leathered (similar term)|leatherlike (similar term)|leathery (similar term)|fibrous (similar term)|sinewy (similar term)|stringy (similar term)|unchewable (similar term)|hempen (similar term)|fibrous (similar term)|tough-skinned (similar term)|inedible (related term)|uneatable (related term)|tender (antonym)
+(adj)|hard|bad (similar term)
+(adj)|baffling|knotty|problematic|problematical|difficult (similar term)|hard (similar term)
+(noun)|street fighter|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|hood|hoodlum|goon|punk|thug|toughie|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|bully|hooligan|ruffian|roughneck|rowdy|yob|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+tough-minded|1
+(adj)|unsentimental|tough (similar term)
+tough-skinned|2
+(adj)|tough (similar term)
+(adj)|thick-skinned|insensitive (similar term)
+tough guy|1
+(noun)|plug-ugly|bully (generic term)|tough (generic term)|hooligan (generic term)|ruffian (generic term)|roughneck (generic term)|rowdy (generic term)|yob (generic term)|yobo (generic term)|yobbo (generic term)
+tough luck|1
+(noun)|misfortune|bad luck|ill luck|fortune (generic term)|destiny (generic term)|fate (generic term)|luck (generic term)|lot (generic term)|circumstances (generic term)|portion (generic term)|good luck (antonym)|good fortune (antonym)
+toughen|1
+(verb)|strengthen (generic term)
+toughened|2
+(adj)|tough|calloused (similar term)|callous (similar term)|thickened (similar term)|enured (similar term)|inured (similar term)|hardened (similar term)|weather-beaten (similar term)|experienced (related term)|experient (related term)|rugged (related term)|strong (related term)|tender (antonym)
+(adj)|tempered|treated|hardened|annealed (similar term)|baked (similar term)|burned (similar term)|burnt (similar term)|curable (similar term)|sunbaked (similar term)|untempered (antonym)
+toughie|2
+(noun)|hood|hoodlum|goon|punk|thug|tough|strong-armer|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|poser|stumper|sticker|problem (generic term)
+toughness|4
+(noun)|stamina|staying power|endurance (generic term)
+(noun)|huskiness|ruggedness|strength (generic term)
+(noun)|temper|elasticity (generic term)|snap (generic term)
+(noun)|formidability|difficulty (generic term)|difficultness (generic term)
+toulon|1
+(noun)|Toulon|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+toulouse|1
+(noun)|Toulouse|city (generic term)|metropolis (generic term)|urban center (generic term)
+toulouse-lautrec|1
+(noun)|Toulouse-Lautrec|Henri Toulouse-Lautrec|painter (generic term)
+toupe|1
+(noun)|toupee|hairpiece (generic term)|false hair (generic term)|postiche (generic term)
+toupee|1
+(noun)|toupe|hairpiece (generic term)|false hair (generic term)|postiche (generic term)
+toupeed|1
+(adj)|wigged (similar term)
+tour|4
+(noun)|circuit|journey (generic term)|journeying (generic term)
+(noun)|go|spell|turn|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|enlistment|hitch|term of enlistment|tour of duty|duty tour|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|travel (generic term)|journey (generic term)
+tour de force|1
+(noun)|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+tour de france|1
+(noun)|Tour de France|bicycle race (generic term)
+tour guide|1
+(noun)|guide (generic term)
+tour of duty|1
+(noun)|enlistment|hitch|term of enlistment|duty tour|tour|time period (generic term)|period of time (generic term)|period (generic term)
+touraco|1
+(noun)|turaco|turacou|turakoo|cuculiform bird (generic term)
+tourer|2
+(noun)|tourist|holidaymaker|traveler (generic term)|traveller (generic term)
+(noun)|touring car|phaeton|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+tourette|1
+(noun)|Tourette|Gilles de la Tourette|Georges Gilles de la Tourette|neurologist (generic term)|brain doctor (generic term)
+tourette's syndrome|1
+(noun)|Tourette's syndrome|Gilles de la Tourette syndrome|syndrome (generic term)
+touring|1
+(adj)|itinerant|road|traveling|moving (similar term)
+touring car|1
+(noun)|phaeton|tourer|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+tourism|1
+(noun)|touristry|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+tourist|1
+(noun)|tourer|holidaymaker|traveler (generic term)|traveller (generic term)
+tourist class|1
+(noun)|third class|accommodation (generic term)
+tourist court|1
+(noun)|motor hotel|motor inn|motor lodge|court|hotel (generic term)
+touristed|1
+(adj)|touristy|popular (similar term)
+touristry|1
+(noun)|tourism|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+touristy|1
+(adj)|touristed|popular (similar term)
+tourmaline|1
+(noun)|transparent gem (generic term)|mineral (generic term)
+tournament|2
+(noun)|tourney|contest (generic term)|competition (generic term)
+(noun)|contest (generic term)|competition (generic term)
+tournedos|1
+(noun)|fillet (generic term)|filet (generic term)
+tourney|2
+(noun)|tournament|contest (generic term)|competition (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+tourniquet|1
+(noun)|compression bandage|bandage (generic term)|patch (generic term)
+tours|1
+(noun)|Tours|city (generic term)|metropolis (generic term)|urban center (generic term)
+tousle|1
+(verb)|dishevel|tangle|disarrange (generic term)
+tousled|1
+(adj)|disheveled|dishevelled|frowzled|rumpled|untidy (similar term)
+tout|5
+(noun)|ticket tout|scalper (generic term)
+(noun)|touter|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+(noun)|tipster|adviser (generic term)|advisor (generic term)|consultant (generic term)
+(verb)|pronounce (generic term)|label (generic term)|judge (generic term)
+(verb)|boast|swash|shoot a line|brag|gas|blow|bluster|vaunt|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+tout ensemble|3
+(noun)|ensemble|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|impression (generic term)|effect (generic term)
+(adv)|all in all|on the whole|altogether
+touter|1
+(noun)|tout|advertiser (generic term)|advertizer (generic term)|adman (generic term)
+tovarich|1
+(noun)|tovarisch|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+tovarisch|1
+(noun)|tovarich|companion (generic term)|comrade (generic term)|fellow (generic term)|familiar (generic term)|associate (generic term)
+tow|2
+(noun)|towage|draw (generic term)|haul (generic term)|haulage (generic term)
+(verb)|shlep (generic term)|schlep (generic term)|pull along (generic term)
+tow-headed snake|1
+(noun)|rubber boa|Charina bottae|boa (generic term)
+tow car|1
+(noun)|tow truck|wrecker|truck (generic term)|motortruck (generic term)
+tow truck|1
+(noun)|tow car|wrecker|truck (generic term)|motortruck (generic term)
+towage|1
+(noun)|tow|draw (generic term)|haul (generic term)|haulage (generic term)
+toward land|1
+(adv)|ashore|on land|onto land
+toward the sea|1
+(adv)|seaward|seawards|asea
+towboat|1
+(noun)|tugboat|tug|tower|boat (generic term)
+towel|2
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(verb)|wipe (generic term)|pass over (generic term)
+towel bar|1
+(noun)|towel rail|bar (generic term)
+towel horse|1
+(noun)|towel rack|rack (generic term)
+towel rack|1
+(noun)|towel horse|rack (generic term)
+towel rail|1
+(noun)|towel bar|bar (generic term)
+towel ring|1
+(noun)|hoop (generic term)|ring (generic term)
+toweling|1
+(noun)|towelling|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+towelling|1
+(noun)|toweling|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+tower|4
+(noun)|structure (generic term)|construction (generic term)
+(noun)|column|pillar|shape (generic term)|form (generic term)
+(noun)|tugboat|tug|towboat|boat (generic term)
+(verb)|loom|predominate|hulk|rise (generic term)|lift (generic term)|rear (generic term)
+tower block|1
+(noun)|high-rise|tower (generic term)
+tower cress|2
+(noun)|tower mustard|Turritis glabra|Arabis glabra|cress (generic term)|cress plant (generic term)
+(noun)|tower mustard|Arabis turrita|rock cress (generic term)|rockcress (generic term)
+tower mustard|2
+(noun)|tower cress|Turritis glabra|Arabis glabra|cress (generic term)|cress plant (generic term)
+(noun)|tower cress|Arabis turrita|rock cress (generic term)|rockcress (generic term)
+tower of babel|1
+(noun)|Tower of Babel|Babel|ziggurat (generic term)|zikkurat (generic term)|zikurat (generic term)
+tower of london|1
+(noun)|Tower of London|fortress (generic term)|fort (generic term)
+tower of pharos|1
+(noun)|Tower of Pharos|beacon (generic term)|lighthouse (generic term)|beacon light (generic term)|pharos (generic term)
+tower of strength|1
+(noun)|pillar of strength|patron (generic term)|sponsor (generic term)|supporter (generic term)
+towering|1
+(adj)|eminent|lofty|soaring|high (similar term)
+towhead|1
+(noun)|blond (generic term)|blonde (generic term)
+towheaded|1
+(adj)|ash-blonde|platinum-blonde|blond (similar term)|blonde (similar term)|light-haired (similar term)
+towhee|1
+(noun)|finch (generic term)
+towing line|1
+(noun)|towline|towrope|towing rope|line (generic term)
+towing path|1
+(noun)|towpath|path (generic term)
+towing rope|1
+(noun)|towline|towrope|towing line|line (generic term)
+towline|1
+(noun)|towrope|towing line|towing rope|line (generic term)
+town|3
+(noun)|municipality (generic term)
+(noun)|township|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|townspeople|townsfolk|municipality (generic term)
+town clerk|1
+(noun)|official (generic term)|functionary (generic term)
+town crier|1
+(noun)|crier|announcer (generic term)
+town gas|1
+(noun)|coal gas (generic term)
+town hall|1
+(noun)|government building (generic term)
+town house|1
+(noun)|row house|house (generic term)
+town meeting|2
+(noun)|local government (generic term)
+(noun)|meeting (generic term)|group meeting (generic term)
+town planning|1
+(noun)|city planning|urban planning|planning (generic term)
+townee|1
+(noun)|townsman (generic term)|towner (generic term)
+towner|1
+(noun)|townsman|resident (generic term)|occupant (generic term)|occupier (generic term)
+townie|1
+(noun)|towny|townsman (generic term)|towner (generic term)
+townsend|1
+(noun)|Townsend|Francis Everett Townsend|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+townsend harris|1
+(noun)|Harris|Townsend Harris|diplomat (generic term)|diplomatist (generic term)
+townsendia|1
+(noun)|Townsendia|genus Townsendia|asterid dicot genus (generic term)
+townsendia exscapa|1
+(noun)|Easter daisy|stemless daisy|Townsendia Exscapa|flower (generic term)
+townsfolk|1
+(noun)|town|townspeople|municipality (generic term)
+township|1
+(noun)|town|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+townsman|2
+(noun)|peer (generic term)|equal (generic term)|match (generic term)|compeer (generic term)
+(noun)|towner|resident (generic term)|occupant (generic term)|occupier (generic term)
+townspeople|1
+(noun)|town|townsfolk|municipality (generic term)
+towny|1
+(noun)|townie|townsman (generic term)|towner (generic term)
+towpath|1
+(noun)|towing path|path (generic term)
+towrope|1
+(noun)|towline|towing line|towing rope|line (generic term)
+toxaemia|2
+(noun)|toxemia of pregnancy|toxaemia of pregnancy|toxemia|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|toxemia|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+toxaemia of pregnancy|1
+(noun)|toxemia of pregnancy|toxemia|toxaemia|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+toxemia|2
+(noun)|toxemia of pregnancy|toxaemia of pregnancy|toxaemia|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+(noun)|toxaemia|blood poisoning (generic term)|septicemia (generic term)|septicaemia (generic term)
+toxemia of pregnancy|1
+(noun)|toxaemia of pregnancy|toxemia|toxaemia|illness (generic term)|unwellness (generic term)|malady (generic term)|sickness (generic term)
+toxic|1
+(adj)|cyanogenetic (similar term)|cyanogenic (similar term)|deadly (similar term)|venomous (similar term)|virulent (similar term)|hepatotoxic (similar term)|nephrotoxic (similar term)|ototoxic (similar term)|poisonous (similar term)|toxicant (similar term)|harmful (related term)|noxious (related term)|harmful (related term)|unhealthful (related term)|nontoxic (antonym)
+toxic condition|1
+(noun)|poisoning|intoxication|physiological state (generic term)|physiological condition (generic term)
+toxic dumpsite|1
+(noun)|toxic waste dump|toxic waste site|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+toxic industrial waste|1
+(noun)|toxic waste|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+toxic shock|1
+(noun)|toxic shock syndrome|TSS|syndrome (generic term)
+toxic shock syndrome|1
+(noun)|toxic shock|TSS|syndrome (generic term)
+toxic site|1
+(noun)|toxic waste area|Superfund site|site (generic term)|land site (generic term)
+toxic waste|1
+(noun)|toxic industrial waste|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+toxic waste area|1
+(noun)|toxic site|Superfund site|site (generic term)|land site (generic term)
+toxic waste dump|1
+(noun)|toxic waste site|toxic dumpsite|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+toxic waste site|1
+(noun)|toxic waste dump|toxic dumpsite|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+toxicant|2
+(adj)|poisonous|toxic (similar term)
+(noun)|poison|poisonous substance|substance (generic term)|matter (generic term)
+toxicity|2
+(noun)|definite quantity (generic term)
+(noun)|perniciousness|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)
+toxicodendron|1
+(noun)|Toxicodendron|genus Toxicodendron|dicot genus (generic term)|magnoliopsid genus (generic term)
+toxicodendron diversilobum|1
+(noun)|western poison oak|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant (generic term)
+toxicodendron quercifolium|1
+(noun)|eastern poison oak|Toxicodendron quercifolium|Rhus quercifolia|Rhus toxicodenedron|poisonous plant (generic term)
+toxicodendron radicans|1
+(noun)|poison ivy|markweed|poison mercury|poison oak|Toxicodendron radicans|Rhus radicans|poisonous plant (generic term)
+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 (generic term)
+toxicodendron vernix|1
+(noun)|poison ash|poison dogwood|poison sumac|Toxicodendron vernix|Rhus vernix|poisonous plant (generic term)
+toxicologic|1
+(adj)|toxicological|pharmacology|pharmacological medicine|materia medica (related term)
+toxicological|1
+(adj)|toxicologic|pharmacology|pharmacological medicine|materia medica (related term)
+toxicologist|1
+(noun)|medical scientist (generic term)
+toxicology|1
+(noun)|pharmacology (generic term)|pharmacological medicine (generic term)|materia medica (generic term)
+toxin|1
+(noun)|poison (generic term)|toxicant (generic term)|poisonous substance (generic term)
+toxin antitoxin|1
+(noun)|immunogen (generic term)|immunizing agent (generic term)
+toxoid|1
+(noun)|anatoxin|bacterial toxin (generic term)|antigen (generic term)
+toxoplasmosis|1
+(noun)|infection (generic term)
+toxostoma|1
+(noun)|Toxostoma|genus Toxostoma|bird genus (generic term)
+toxostoma rufums|1
+(noun)|brown thrasher|brown thrush|Toxostoma rufums|thrasher (generic term)|mocking thrush (generic term)
+toxotes|1
+(noun)|Toxotes|genus Toxotes|fish genus (generic term)
+toxotes jaculatrix|1
+(noun)|archerfish|Toxotes jaculatrix|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+toxotidae|1
+(noun)|Toxotidae|family Toxotidae|fish family (generic term)
+toy|7
+(noun)|plaything|artifact (generic term)|artefact (generic term)
+(noun)|replica (generic term)|replication (generic term)|reproduction (generic term)
+(noun)|miniature|copy (generic term)
+(noun)|toy dog|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+(verb)|dally|play|flirt|act (generic term)|move (generic term)
+(verb)|fiddle|diddle|play|manipulate (generic term)|toy with (related term)
+(verb)|play|act (generic term)|behave (generic term)|do (generic term)
+toy box|1
+(noun)|toy chest|chest (generic term)
+toy business|1
+(noun)|toy industry|industry (generic term)
+toy chest|1
+(noun)|toy box|chest (generic term)
+toy dog|1
+(noun)|toy|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+toy industry|1
+(noun)|toy business|industry (generic term)
+toy manchester|1
+(noun)|toy Manchester|toy Manchester terrier|Manchester terrier (generic term)|black-and-tan terrier (generic term)
+toy manchester terrier|1
+(noun)|toy Manchester|toy Manchester terrier|Manchester terrier (generic term)|black-and-tan terrier (generic term)
+toy poodle|1
+(noun)|poodle (generic term)|poodle dog (generic term)
+toy soldier|1
+(noun)|doll (generic term)|dolly (generic term)
+toy spaniel|1
+(noun)|toy dog (generic term)|toy (generic term)
+toy terrier|1
+(noun)|toy dog (generic term)|toy (generic term)
+toy with|1
+(verb)|entertain|think of|flirt with|think about|contemplate (generic term)
+toying|1
+(noun)|flirt|flirting|flirtation|coquetry|dalliance|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+toynbee|1
+(noun)|Toynbee|Arnold Toynbee|Arnold Joseph Toynbee|historian (generic term)|historiographer (generic term)
+toyohashi|1
+(noun)|Toyohashi|city (generic term)|metropolis (generic term)|urban center (generic term)
+toyon|1
+(noun)|tollon|Christmasberry|Christmas berry|Heteromeles arbutifolia|Photinia arbutifolia|shrub (generic term)|bush (generic term)
+toyonaki|1
+(noun)|Toyonaki|city (generic term)|metropolis (generic term)|urban center (generic term)
+toyota|1
+(noun)|Toyota|city (generic term)|metropolis (generic term)|urban center (generic term)
+toyshop|1
+(noun)|shop (generic term)|store (generic term)
+tpn|1
+(noun)|total parenteral nutrition|TPN|hyperalimentation|feeding (generic term)|alimentation (generic term)
+tra-la|1
+(noun)|tra-la-la|refrain (generic term)|chorus (generic term)
+tra-la-la|1
+(noun)|tra-la|refrain (generic term)|chorus (generic term)
+trabeate|1
+(adj)|trabeated|straight (similar term)
+trabeated|1
+(adj)|trabeate|straight (similar term)
+trabecula|1
+(noun)|fibrous tissue (generic term)
+trabecular|1
+(adj)|trabeculate|fibrous tissue (related term)
+trabeculate|1
+(adj)|trabecular|fibrous tissue (related term)
+trablous|1
+(noun)|Tarabulus|Tripoli|Tarabulus Ash-Sham|Trablous|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+trace|14
+(noun)|hint|suggestion|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|vestige|tincture|shadow|indication (generic term)|indicant (generic term)
+(noun)|touch|ghost|suggestion (generic term)|proposition (generic term)|proffer (generic term)
+(noun)|tracing|drawing (generic term)
+(noun)|line (generic term)
+(noun)|mark (generic term)|print (generic term)
+(verb)|follow|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|draw|line|describe|delineate|mark (generic term)
+(verb)|retrace|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|hound|hunt|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+(verb)|detect (generic term)|observe (generic term)|find (generic term)|discover (generic term)|notice (generic term)
+(verb)|proceed (generic term)|go forward (generic term)|continue (generic term)
+(verb)|copy (generic term)|re-create (generic term)
+(verb)|decipher|read (generic term)
+trace detector|1
+(noun)|detector (generic term)|sensor (generic term)|sensing element (generic term)
+trace element|1
+(noun)|chemical element (generic term)|element (generic term)
+trace program|1
+(noun)|utility program (generic term)|utility (generic term)|service program (generic term)
+traceable|2
+(adj)|attributable (similar term)
+(adj)|trackable|untraceable (antonym)
+traced|1
+(adj)|copied|derived (similar term)
+tracer|4
+(noun)|detective (generic term)|investigator (generic term)|tec (generic term)|police detective (generic term)
+(noun)|instrument (generic term)
+(noun)|radioisotope (generic term)
+(noun)|tracer bullet|ammunition (generic term)|ammo (generic term)
+tracer bullet|1
+(noun)|tracer|ammunition (generic term)|ammo (generic term)
+tracery|1
+(noun)|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+trachea|2
+(noun)|windpipe|cartilaginous tube (generic term)
+(noun)|tubule (generic term)
+tracheal|1
+(adj)|cartilaginous tube (related term)
+tracheal vein|1
+(noun)|vena trachealis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+tracheid|1
+(noun)|vascular tissue (generic term)
+tracheitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+trachelospermum|1
+(noun)|Trachelospermum|genus Trachelospermum|dicot genus (generic term)|magnoliopsid genus (generic term)
+trachelospermum jasminoides|1
+(noun)|star jasmine|confederate jasmine|Trachelospermum jasminoides|vine (generic term)
+tracheobronchitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tracheophyta|1
+(noun)|Tracheophyta|division Tracheophyta|division (generic term)
+tracheophyte|1
+(noun)|vascular plant|plant (generic term)|flora (generic term)|plant life (generic term)
+tracheostomy|1
+(noun)|tracheotomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+tracheotomy|1
+(noun)|tracheostomy|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+trachinotus|1
+(noun)|Trachinotus|genus Trachinotus|fish genus (generic term)
+trachinotus carolinus|1
+(noun)|Florida pompano|Trachinotus carolinus|pompano (generic term)
+trachinotus falcatus|1
+(noun)|permit|Trachinotus falcatus|pompano (generic term)
+trachipteridae|1
+(noun)|Trachipteridae|family Trachipteridae|fish family (generic term)
+trachipterus|1
+(noun)|Trachipterus|genus Trachipterus|fish genus (generic term)
+trachipterus arcticus|1
+(noun)|dealfish|Trachipterus arcticus|ribbonfish (generic term)
+trachodon|1
+(noun)|trachodont|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+trachodont|1
+(noun)|trachodon|hadrosaur (generic term)|hadrosaurus (generic term)|duck-billed dinosaur (generic term)
+trachoma|1
+(noun)|eye disease (generic term)
+trachurus|1
+(noun)|Trachurus|genus Trachurus|fish genus (generic term)
+trachurus symmetricus|1
+(noun)|horse mackerel|jack mackerel|Spanish mackerel|saurel|Trachurus symmetricus|scad (generic term)
+trachurus trachurus|1
+(noun)|horse mackerel|saurel|Trachurus trachurus|scad (generic term)
+tracing|2
+(noun)|drawing (generic term)|draftsmanship (generic term)|drafting (generic term)
+(noun)|trace|drawing (generic term)
+tracing paper|1
+(noun)|paper (generic term)
+tracing routine|1
+(noun)|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+track|16
+(noun)|path|course|line (generic term)
+(noun)|lead|trail|evidence (generic term)|grounds (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|racetrack|racecourse|raceway|course (generic term)
+(noun)|cut|excerpt (generic term)|excerption (generic term)|extract (generic term)|selection (generic term)
+(noun)|caterpillar track|caterpillar tread|belt (generic term)
+(noun)|data track|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|groove (generic term)|channel (generic term)
+(noun)|rail|rails|bar (generic term)
+(noun)|cart track|cartroad|road (generic term)|route (generic term)
+(noun)|running|track and field (generic term)
+(verb)|bring in (generic term)|introduce (generic term)
+(verb)|observe (generic term)
+(verb)|chase|chase after|trail|tail|tag|give chase|dog|go after|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|traverse|cover|cross|pass over|get over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|make (generic term)|create (generic term)
+track-to-track seek time|1
+(noun)|seek time (generic term)
+track and field|1
+(noun)|sport (generic term)|athletics (generic term)
+track down|1
+(verb)|hunt|run|hunt down|capture (generic term)|catch (generic term)
+track event|1
+(noun)|footrace (generic term)|foot race (generic term)|run (generic term)
+track meet|1
+(noun)|meet (generic term)|sports meeting (generic term)
+track record|2
+(noun)|record (generic term)
+(noun)|record|accomplishment (generic term)|achievement (generic term)
+track star|1
+(noun)|ace (generic term)|adept (generic term)|champion (generic term)|sensation (generic term)|maven (generic term)|mavin (generic term)|virtuoso (generic term)|genius (generic term)|hotshot (generic term)|star (generic term)|superstar (generic term)|whiz (generic term)|whizz (generic term)|wizard (generic term)|wiz (generic term)
+trackable|1
+(adj)|traceable|untraceable (antonym)
+trackball|1
+(noun)|electronic device (generic term)
+tracked|1
+(adj)|caterpillar-tracked (similar term)|half-track (similar term)|half-tracked (similar term)|trackless (antonym)
+tracked vehicle|1
+(noun)|self-propelled vehicle (generic term)
+tracker|1
+(noun)|hunter (generic term)|huntsman (generic term)
+tracking|1
+(noun)|trailing|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+tracklayer|1
+(noun)|platelayer|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+trackless|2
+(adj)|tracked (antonym)
+(adj)|pathless|roadless|untracked|untrod|untrodden|inaccessible (similar term)|unaccessible (similar term)
+trackless trolley|1
+(noun)|trolleybus|trolley coach|bus (generic term)|autobus (generic term)|coach (generic term)|charabanc (generic term)|double-decker (generic term)|jitney (generic term)|motorbus (generic term)|motorcoach (generic term)|omnibus (generic term)|passenger vehicle (generic term)
+tract|4
+(noun)|piece of land|piece of ground|parcel of land|parcel|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|system (generic term)
+(noun)|pamphlet|treatise (generic term)
+(noun)|nerve pathway|nerve tract|pathway|white matter (generic term)|substantia alba (generic term)
+tract house|1
+(noun)|house (generic term)
+tract housing|1
+(noun)|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+tractability|1
+(noun)|tractableness|flexibility|trait (generic term)|intractability (antonym)
+tractable|2
+(adj)|manipulable|ductile (similar term)|malleable (similar term)|docile (similar term)|teachable (similar term)|tamable (similar term)|tameable (similar term)|compliant (related term)|docile (related term)|manageable (related term)|obedient (related term)|tame (related term)|tamed (related term)|intractable (antonym)
+(adj)|responsive|amenable|susceptible (similar term)
+tractableness|1
+(noun)|tractability|flexibility|trait (generic term)|intractability (antonym)
+tractarian|1
+(noun)|Tractarian|Christian (generic term)
+tractarianism|1
+(noun)|Tractarianism|Puseyism|Christianity (generic term)|Christian religion (generic term)
+tractile|1
+(adj)|ductile|malleable|pliable|pliant|tensile|formed (similar term)
+traction|2
+(noun)|grip|adhesive friction|friction (generic term)|rubbing (generic term)
+(noun)|pull (generic term)|pulling (generic term)
+traction engine|1
+(noun)|locomotive (generic term)|engine (generic term)|locomotive engine (generic term)|railway locomotive (generic term)
+tractive|1
+(adj)|friction|rubbing (related term)
+tractor|2
+(noun)|self-propelled vehicle (generic term)
+(noun)|truck (generic term)|motortruck (generic term)
+tractor trailer|1
+(noun)|trailer truck|trucking rig|rig|articulated lorry|semi|truck (generic term)|motortruck (generic term)
+tracy|1
+(noun)|Tracy|Spencer Tracy|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+trad|1
+(noun)|jazz (generic term)
+trade|12
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|craft|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|barter|swap|swop|exchange (generic term)|interchange (generic term)
+(noun)|craft|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|deal|business deal|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(noun)|patronage|business (generic term)
+(noun)|trade wind|prevailing wind (generic term)
+(verb)|merchandise
+(verb)|trade in|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|sell (generic term)
+(verb)|swap|swop|switch|exchange (generic term)|change (generic term)|interchange (generic term)
+(verb)|deal|sell|transact (generic term)|deal out (related term)|trade (related term)
+trade-in|1
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+trade-last|1
+(noun)|compliment (generic term)
+trade-off|1
+(noun)|tradeoff|exchange (generic term)
+trade acceptance|1
+(noun)|draft (generic term)|bill of exchange (generic term)|order of payment (generic term)
+trade balance|1
+(noun)|balance of trade|visible balance|trade gap|balance (generic term)
+trade barrier|1
+(noun)|import barrier|protectionism (generic term)
+trade bill|1
+(noun)|bill (generic term)|measure (generic term)
+trade book|1
+(noun)|trade edition|book (generic term)|text edition (antonym)
+trade cycle|1
+(noun)|business cycle|variation (generic term)|fluctuation (generic term)
+trade deficit|1
+(noun)|deficit (generic term)
+trade discount|1
+(noun)|deduction (generic term)|discount (generic term)
+trade edition|1
+(noun)|trade book|book (generic term)|text edition (antonym)
+trade embargo|1
+(noun)|embargo|trade stoppage|trade barrier (generic term)|import barrier (generic term)
+trade expense|1
+(noun)|business expense|expense (generic term)|disbursal (generic term)|disbursement (generic term)
+trade gap|1
+(noun)|balance of trade|trade balance|visible balance|balance (generic term)
+trade good|1
+(noun)|commodity|good|artifact (generic term)|artefact (generic term)
+trade in|1
+(verb)|trade|exchange (generic term)|change (generic term)|interchange (generic term)
+trade magazine|1
+(noun)|magazine (generic term)|mag (generic term)
+trade name|1
+(noun)|brand name|brand|marque|name (generic term)
+trade policy|1
+(noun)|national trading policy|foreign policy (generic term)
+trade protection|1
+(noun)|protection|imposition (generic term)|infliction (generic term)
+trade rat|1
+(noun)|packrat|pack rat|bushytail woodrat|Neotoma cinerea|wood rat (generic term)|wood-rat (generic term)
+trade route|2
+(noun)|seaway|sea lane|ship route|lane (generic term)
+(noun)|path (generic term)|route (generic term)|itinerary (generic term)
+trade school|1
+(noun)|vocational school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+trade secret|1
+(noun)|secret (generic term)
+trade stoppage|1
+(noun)|embargo|trade embargo|trade barrier (generic term)|import barrier (generic term)
+trade union|1
+(noun)|union|labor union|trades union|brotherhood|organization (generic term)|organisation (generic term)
+trade union movement|1
+(noun)|labor movement|labor|reform movement (generic term)
+trade unionism|1
+(noun)|unionism|labor movement (generic term)|trade union movement (generic term)|labor (generic term)
+trade unionist|1
+(noun)|unionist|union member|worker (generic term)
+trade wind|1
+(noun)|trade|prevailing wind (generic term)
+tradecraft|1
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+traded|1
+(adj)|listed (similar term)
+trademark|2
+(noun)|hallmark|earmark|stylemark|characteristic (generic term)
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+trademarked|1
+(adj)|proprietary (similar term)
+tradeoff|1
+(noun)|trade-off|exchange (generic term)
+trader|1
+(noun)|bargainer|dealer|monger|merchant (generic term)|merchandiser (generic term)
+trades union|1
+(noun)|union|labor union|trade union|brotherhood|organization (generic term)|organisation (generic term)
+tradescant|1
+(noun)|Tradescant|John Tradescant|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+tradescant's aster|1
+(noun)|aster (generic term)
+tradescantia|1
+(noun)|Tradescantia|genus Tradescantia|monocot genus (generic term)|liliopsid genus (generic term)
+tradesman|1
+(noun)|shopkeeper|storekeeper|market keeper|merchant (generic term)|merchandiser (generic term)
+tradespeople|1
+(noun)|people (generic term)
+trading|1
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+trading card|1
+(noun)|card (generic term)
+trading floor|1
+(noun)|floor|room (generic term)
+trading operations|1
+(noun)|operations|transaction (generic term)|dealing (generic term)|dealings (generic term)
+trading post|1
+(noun)|country store|general store|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+trading stamp|1
+(noun)|token (generic term)|item (generic term)
+tradition|2
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|custom|practice (generic term)
+traditional|2
+(adj)|conventional (similar term)|handed-down (similar term)|tralatitious (similar term)|long-standing (similar term)|longstanding (similar term)|time-honored (similar term)|time-honoured (similar term)|traditionalistic (similar term)|nontraditional (antonym)
+(adj)|orthodox (similar term)
+traditional knowledge|1
+(noun)|lore|content (generic term)|cognitive content (generic term)|mental object (generic term)
+traditionalism|3
+(noun)|traditionality|orthodoxy (generic term)
+(noun)|attachment (generic term)|adherence (generic term)|adhesion (generic term)
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+traditionalist|2
+(adj)|hidebound|conservative (similar term)
+(noun)|diehard|conservative (generic term)|conservativist (generic term)
+traditionalistic|1
+(adj)|traditional (similar term)
+traditionality|1
+(noun)|traditionalism|orthodoxy (generic term)
+traduce|1
+(verb)|badmouth|malign|drag through the mud|defame (generic term)|slander (generic term)|smirch (generic term)|asperse (generic term)|denigrate (generic term)|calumniate (generic term)|smear (generic term)|sully (generic term)|besmirch (generic term)
+traducement|1
+(noun)|defamation|calumny|calumniation|obloquy|hatchet job|disparagement (generic term)|depreciation (generic term)|derogation (generic term)
+traducer|1
+(noun)|defamer|maligner|slanderer|vilifier|libeler|backbiter|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+trafalgar|1
+(noun)|Trafalgar|battle of Trafalgar|naval battle (generic term)
+trafalgar square|1
+(noun)|Trafalgar Square|public square (generic term)|square (generic term)
+traffic|5
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|commerce (generic term)|commercialism (generic term)|mercantilism (generic term)
+(noun)|communication (generic term)|communicating (generic term)
+(noun)|dealings|interchange (generic term)|reciprocation (generic term)|give-and-take (generic term)
+(verb)|trade (generic term)|merchandise (generic term)
+traffic circle|1
+(noun)|circle|rotary|roundabout|junction (generic term)
+traffic control|1
+(noun)|control (generic term)
+traffic cop|1
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+traffic court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+traffic island|1
+(noun)|safety island|safety isle|safety zone|island (generic term)
+traffic jam|1
+(noun)|snarl-up|crush (generic term)|jam (generic term)|press (generic term)
+traffic lane|1
+(noun)|lane (generic term)
+traffic light|1
+(noun)|traffic signal|stoplight|light (generic term)
+traffic pattern|1
+(noun)|approach pattern|pattern|path (generic term)|route (generic term)|itinerary (generic term)
+traffic signal|1
+(noun)|traffic light|stoplight|light (generic term)
+trafficator|1
+(noun)|blinker|turn signal|turn indicator|visual signal (generic term)
+trafficker|1
+(noun)|seller|marketer|vender|vendor|merchant (generic term)|merchandiser (generic term)
+tragacanth|1
+(noun)|gum (generic term)
+tragedian|2
+(noun)|writer (generic term)|author (generic term)
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+tragedienne|1
+(noun)|actress (generic term)
+tragedy|2
+(noun)|calamity|catastrophe|disaster|cataclysm|misfortune (generic term)|bad luck (generic term)
+(noun)|drama (generic term)|comedy (antonym)
+tragelaphus|1
+(noun)|Tragelaphus|genus Tragelaphus|Strepsiceros|genus Strepsiceros|mammal genus (generic term)
+tragelaphus angasi|1
+(noun)|nyala|Tragelaphus angasi|harnessed antelope (generic term)
+tragelaphus buxtoni|1
+(noun)|mountain nyala|Tragelaphus buxtoni|antelope (generic term)
+tragelaphus eurycerus|1
+(noun)|bongo|Tragelaphus eurycerus|Boocercus eurycerus|antelope (generic term)
+tragelaphus imberbis|1
+(noun)|lesser kudu|Tragelaphus imberbis|kudu (generic term)|koodoo (generic term)|koudou (generic term)
+tragelaphus scriptus|1
+(noun)|bushbuck|guib|Tragelaphus scriptus|harnessed antelope (generic term)
+tragelaphus strepsiceros|1
+(noun)|greater kudu|Tragelaphus strepsiceros|kudu (generic term)|koodoo (generic term)|koudou (generic term)
+tragic|2
+(adj)|tragical|sad (similar term)
+(adj)|drama (related term)
+tragic flaw|1
+(noun)|hamartia|flaw (generic term)
+tragical|1
+(adj)|tragic|sad (similar term)
+tragicomedy|2
+(noun)|tragedy (generic term)
+(noun)|seriocomedy|comedy (generic term)
+tragicomic|3
+(adj)|tragedy (related term)
+(adj)|tragicomical|sad (similar term)
+(adj)|tragicomical|humorous (similar term)|humourous (similar term)
+tragicomical|2
+(adj)|tragicomic|sad (similar term)
+(adj)|tragicomic|humorous (similar term)|humourous (similar term)
+tragopan|1
+(noun)|pheasant (generic term)
+tragopogon|1
+(noun)|Tragopogon|genus Tragopogon|asterid dicot genus (generic term)
+tragopogon dubius|1
+(noun)|yellow salsify|Tragopogon dubius|wildflower (generic term)|wild flower (generic term)
+tragopogon porrifolius|1
+(noun)|salsify|oyster plant|vegetable oyster|Tragopogon porrifolius|herb (generic term)|herbaceous plant (generic term)
+tragopogon pratensis|1
+(noun)|meadow salsify|goatsbeard|shepherd's clock|Tragopogon pratensis|wildflower (generic term)|wild flower (generic term)
+tragulidae|1
+(noun)|Tragulidae|family Tragulidae|mammal family (generic term)
+tragulus|1
+(noun)|Tragulus|genus Tragulus|mammal genus (generic term)
+tragulus javanicus|1
+(noun)|napu|Tragulus Javanicus|chevrotain (generic term)|mouse deer (generic term)
+tragulus kanchil|1
+(noun)|kanchil|Tragulus kanchil|chevrotain (generic term)|mouse deer (generic term)
+tragus|1
+(noun)|cartilaginous structure (generic term)
+trail|7
+(noun)|path (generic term)|track (generic term)|course (generic term)
+(noun)|track (generic term)|cart track (generic term)|cartroad (generic term)
+(noun)|lead|track|evidence (generic term)|grounds (generic term)
+(verb)|drag|get behind|hang back|drop behind|lag (generic term)|dawdle (generic term)|fall back (generic term)|fall behind (generic term)
+(verb)|chase|chase after|tail|tag|give chase|dog|go after|track|pursue (generic term)|follow (generic term)|tag along (related term)|chase away (related term)
+(verb)|shack|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|train|drag (generic term)
+trail bike|1
+(noun)|dirt bike|scrambler|motorcycle (generic term)|bike (generic term)
+trail boss|1
+(noun)|supervisor (generic term)
+trail head|1
+(noun)|trailhead|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+trail riding|1
+(noun)|riding (generic term)|horseback riding (generic term)
+trailblazer|2
+(noun)|scout (generic term)|pathfinder (generic term)|guide (generic term)
+(noun)|pioneer|innovator|groundbreaker|originator (generic term)|conceiver (generic term)|mastermind (generic term)
+trailer|4
+(noun)|dawdler|drone|laggard|lagger|poke|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+(noun)|preview|prevue|ad (generic term)|advertisement (generic term)|advertizement (generic term)|advertising (generic term)|advertizing (generic term)|advert (generic term)
+(noun)|conveyance (generic term)|transport (generic term)
+(noun)|house trailer|wheeled vehicle (generic term)
+trailer camp|1
+(noun)|trailer park|camp (generic term)
+trailer park|1
+(noun)|trailer camp|camp (generic term)
+trailer truck|1
+(noun)|tractor trailer|trucking rig|rig|articulated lorry|semi|truck (generic term)|motortruck (generic term)
+trailhead|1
+(noun)|trail head|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+trailing|1
+(noun)|tracking|pursuit (generic term)|chase (generic term)|pursual (generic term)|following (generic term)
+trailing arbutus|1
+(noun)|mayflower|Epigaea repens|shrub (generic term)|bush (generic term)
+trailing edge|1
+(noun)|edge (generic term)
+trailing four o'clock|1
+(noun)|trailing windmills|Allionia incarnata|wildflower (generic term)|wild flower (generic term)
+trailing windmills|1
+(noun)|trailing four o'clock|Allionia incarnata|wildflower (generic term)|wild flower (generic term)
+train|17
+(noun)|railroad train|public transport (generic term)
+(noun)|string|series (generic term)
+(noun)|caravan|wagon train|procession (generic term)
+(noun)|consequence (generic term)|aftermath (generic term)
+(noun)|piece of cloth (generic term)|piece of material (generic term)
+(noun)|gearing|gear|geartrain|power train|wheelwork (generic term)
+(verb)|develop|prepare|educate|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|prepare|learn (generic term)|study (generic term)|read (generic term)|take (generic term)
+(verb)|discipline|check|condition|develop (generic term)|make grow (generic term)
+(verb)|prepare|groom|educate (generic term)
+(verb)|educate|school|cultivate|civilize|civilise|polish (generic term)|refine (generic term)|fine-tune (generic term)|down (generic term)
+(verb)|aim|take|take aim|direct|position (generic term)
+(verb)|coach|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|exercise (generic term)|work out (generic term)
+(verb)|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+(verb)|rail|ride (generic term)
+(verb)|trail|drag (generic term)
+train depot|1
+(noun)|railway station|railroad station|railroad terminal|train station|terminal (generic term)|terminus (generic term)|depot (generic term)
+train dispatcher|1
+(noun)|yardmaster|trainmaster|dispatcher (generic term)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)
+train fare|1
+(noun)|fare (generic term)|transportation (generic term)
+train of thought|1
+(noun)|thread|thinking (generic term)|thought (generic term)|thought process (generic term)|cerebration (generic term)|intellection (generic term)|mentation (generic term)
+train oil|1
+(noun)|whale oil|animal oil (generic term)
+train set|1
+(noun)|plaything (generic term)|toy (generic term)
+train station|1
+(noun)|railway station|railroad station|railroad terminal|train depot|terminal (generic term)|terminus (generic term)|depot (generic term)
+train ticket|1
+(noun)|railroad ticket|ticket (generic term)
+trainband|1
+(noun)|company (generic term)|militia (generic term)|reserves (generic term)
+trainbandsman|1
+(noun)|militiaman (generic term)
+trainbearer|1
+(noun)|attendant (generic term)|attender (generic term)|tender (generic term)
+trained|2
+(adj)|disciplined (similar term)|drilled (similar term)|housebroken (similar term)|house-trained (similar term)|potty-trained (similar term)|pot-trained (similar term)|toilet-trained (similar term)|untrained (antonym)
+(adj)|skilled (similar term)
+trained nurse|1
+(noun)|graduate nurse|nurse (generic term)
+trained worker|1
+(noun)|skilled worker|skilled workman|worker (generic term)
+trainee|1
+(noun)|novice (generic term)|beginner (generic term)|tyro (generic term)|tiro (generic term)|initiate (generic term)
+traineeship|1
+(noun)|aid (generic term)|economic aid (generic term)
+trainer|2
+(noun)|leader (generic term)
+(noun)|flight simulator|simulator (generic term)
+training|2
+(noun)|preparation|grooming|activity (generic term)
+(noun)|education|breeding|upbringing (generic term)
+training college|1
+(noun)|college (generic term)
+training program|1
+(noun)|educational program (generic term)
+training school|2
+(noun)|school (generic term)
+(noun)|reformatory|reform school|correctional institution (generic term)
+training ship|1
+(noun)|school ship|ship (generic term)
+training table|1
+(noun)|board (generic term)|table (generic term)
+trainload|1
+(noun)|load (generic term)|loading (generic term)
+trainman|1
+(noun)|railroader|railroad man|railwayman|railway man|employee (generic term)
+trainmaster|1
+(noun)|yardmaster|train dispatcher|dispatcher (generic term)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)
+traipse|1
+(verb)|shlep|walk (generic term)
+trait|1
+(noun)|attribute (generic term)
+traitor|2
+(noun)|treasonist|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|double-crosser|double-dealer|two-timer|betrayer|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+traitorous|1
+(adj)|faithless|unfaithful|treasonable|treasonous|disloyal (similar term)
+traitorously|1
+(adv)|faithlessly|treacherously|treasonably|false
+traitorousness|1
+(noun)|treason|subversiveness|disloyalty (generic term)
+traitress|1
+(noun)|traitor (generic term)|treasonist (generic term)
+trajan|1
+(noun)|Trajan|Marcus Ulpius Traianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+trajectory|1
+(noun)|flight|mechanical phenomenon (generic term)
+tralatitious|1
+(adj)|handed-down|traditional (similar term)
+tram|4
+(noun)|tramway|aerial tramway|cable tramway|ropeway|conveyance (generic term)|transport (generic term)
+(noun)|tramcar|wagon (generic term)|waggon (generic term)
+(noun)|streetcar|tramcar|trolley|trolley car|self-propelled vehicle (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+tramcar|2
+(noun)|tram|wagon (generic term)|waggon (generic term)
+(noun)|streetcar|tram|trolley|trolley car|self-propelled vehicle (generic term)
+tramline|1
+(noun)|tramway|streetcar track|track (generic term)
+trammel|6
+(noun)|trammel net|fishnet (generic term)|fishing net (generic term)
+(noun)|pothook (generic term)
+(noun)|restraint (generic term)|constraint (generic term)
+(noun)|shackle|bond|hamper|restraint (generic term)|constraint (generic term)
+(verb)|trap|entrap|snare|ensnare|capture (generic term)|catch (generic term)
+(verb)|restrict|restrain|limit|bound|confine|throttle|control (generic term)|hold in (generic term)|hold (generic term)|contain (generic term)|check (generic term)|curb (generic term)|moderate (generic term)
+trammel net|1
+(noun)|trammel|fishnet (generic term)|fishing net (generic term)
+tramontana|1
+(noun)|tramontane|north wind (generic term)|northerly (generic term)|norther (generic term)|boreas (generic term)
+tramontane|3
+(adj)|transmontane|transalpine (similar term)|ultramontane (similar term)|cismontane (antonym)
+(adj)|foreign (similar term)|strange (similar term)
+(noun)|tramontana|north wind (generic term)|northerly (generic term)|norther (generic term)|boreas (generic term)
+tramp|10
+(noun)|hobo|bum|vagrant (generic term)|drifter (generic term)|floater (generic term)|vagabond (generic term)
+(noun)|swinger|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+(noun)|hiker|tramper|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|footfall (generic term)|footstep (generic term)|step (generic term)
+(noun)|tramp steamer|steamer (generic term)|steamship (generic term)
+(noun)|hike|hiking|walk (generic term)
+(verb)|hike (generic term)
+(verb)|slog|footslog|plod|trudge|pad|walk (generic term)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|roll|wander|swan|stray|roam|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+tramp's spurge|1
+(noun)|wild spurge|flowering spurge|Euphorbia corollata|spurge (generic term)
+tramp down|1
+(verb)|trample|tread down|walk (generic term)
+tramp steamer|1
+(noun)|tramp|steamer (generic term)|steamship (generic term)
+tramper|2
+(noun)|stamper|stomper|trampler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|hiker|tramp|pedestrian (generic term)|walker (generic term)|footer (generic term)
+trample|4
+(noun)|trampling|sound (generic term)
+(verb)|tread|walk (generic term)
+(verb)|injure (generic term)|wound (generic term)
+(verb)|tramp down|tread down|walk (generic term)
+trampled|1
+(adj)|trodden|damaged (similar term)
+trampler|2
+(noun)|bad person (generic term)
+(noun)|stamper|stomper|tramper|pedestrian (generic term)|walker (generic term)|footer (generic term)
+trampling|1
+(noun)|trample|sound (generic term)
+trampoline|1
+(noun)|gymnastic apparatus (generic term)|exerciser (generic term)
+tramway|2
+(noun)|tram|aerial tramway|cable tramway|ropeway|conveyance (generic term)|transport (generic term)
+(noun)|tramline|streetcar track|track (generic term)
+trance|3
+(noun)|enchantment|spell|psychological state (generic term)|mental state (generic term)
+(noun)|unconsciousness (generic term)
+(verb)|capture|enamour|catch|becharm|enamor|captivate|beguile|charm|fascinate|bewitch|entrance|enchant|attract (generic term)|appeal (generic term)
+trancelike|1
+(adj)|confused (similar term)
+tranche|1
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+trandate|1
+(noun)|labetalol|labetalol hydrochloride|Trandate|Normodyne|blocker (generic term)|blocking agent (generic term)|antihypertensive (generic term)|antihypertensive drug (generic term)
+tranquil|2
+(adj)|placid|quiet|still|smooth|unruffled|calm (similar term)
+(adj)|calm|unagitated|serene|composed (similar term)
+tranquilising|1
+(adj)|ataractic|ataraxic|sedative|tranquilizing|depressant (similar term)
+tranquility|3
+(noun)|repose|quiet|placidity|serenity|tranquillity|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+(noun)|tranquillity|quiet|order (generic term)
+(noun)|tranquillity|quietness|quietude|calmness (generic term)
+tranquilize|2
+(verb)|calm|calm down|quiet|tranquillize|tranquillise|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|sedate|calm|tranquillize|tranquillise|affect (generic term)|stimulate (antonym)
+tranquilizer|1
+(noun)|tranquillizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+tranquilizing|1
+(adj)|ataractic|ataraxic|sedative|tranquilising|depressant (similar term)
+tranquillise|2
+(verb)|calm|calm down|quiet|tranquilize|tranquillize|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|sedate|calm|tranquilize|tranquillize|affect (generic term)|stimulate (antonym)
+tranquilliser|1
+(noun)|tranquilizer|tranquillizer|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+tranquillity|3
+(noun)|tranquility|quiet|order (generic term)
+(noun)|tranquility|quietness|quietude|calmness (generic term)
+(noun)|repose|quiet|placidity|serenity|tranquility|composure (generic term)|calm (generic term)|calmness (generic term)|equanimity (generic term)
+tranquillize|2
+(verb)|calm|calm down|quiet|tranquilize|tranquillise|quieten|lull|still|comfort (generic term)|soothe (generic term)|console (generic term)|solace (generic term)|agitate (antonym)
+(verb)|sedate|calm|tranquilize|tranquillise|affect (generic term)|stimulate (antonym)
+tranquillizer|1
+(noun)|tranquilizer|tranquilliser|antianxiety agent|ataractic drug|ataractic agent|ataractic|psychotropic agent (generic term)|sedative-hypnotic (generic term)|sedative-hypnotic drug (generic term)
+trans-alaska pipeline|1
+(noun)|Alaskan pipeline|trans-Alaska pipeline|pipeline (generic term)|line (generic term)
+trans fatty acid|1
+(noun)|fatty acid (generic term)
+transact|1
+(verb)|interact (generic term)
+transactinide|2
+(adj)|chemical element|element (related term)
+(noun)|chemical element (generic term)|element (generic term)
+transaction|1
+(noun)|dealing|dealings|group action (generic term)
+transaction file|1
+(noun)|detail file|computer file (generic term)
+transactional immunity|1
+(noun)|use immunity (generic term)|testimonial immunity (generic term)
+transactions|1
+(noun)|minutes|proceedings|written record (generic term)|written account (generic term)
+transactor|1
+(noun)|businessman (generic term)|man of affairs (generic term)
+transalpine|2
+(adj)|ultramontane|tramontane (similar term)|transmontane (similar term)
+(noun)|foreigner (generic term)|outsider (generic term)
+transaminase|1
+(noun)|aminotransferase|aminopherase|transferase (generic term)
+transaminate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+transamination|1
+(noun)|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+transcaucasia|1
+(noun)|Transcaucasia|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+transcend|2
+(verb)|exceed|surpass
+(verb)|exceed|overstep|pass|go past|top|excel (generic term)|stand out (generic term)|surpass (generic term)
+transcendence|2
+(noun)|transcendency|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|transcendency|superiority|domination (generic term)|mastery (generic term)|supremacy (generic term)
+transcendency|2
+(noun)|transcendence|being (generic term)|beingness (generic term)|existence (generic term)
+(noun)|transcendence|superiority|domination (generic term)|mastery (generic term)|supremacy (generic term)
+transcendent|2
+(adj)|unknown (similar term)
+(adj)|surpassing|superior (similar term)
+transcendental|2
+(adj)|nonnatural|otherworldly|preternatural|supernatural (similar term)
+(adj)|philosophy (related term)
+transcendental number|1
+(noun)|irrational number (generic term)|irrational (generic term)
+transcendental philosophy|1
+(noun)|transcendentalism|philosophy (generic term)
+transcendentalism|1
+(noun)|transcendental philosophy|philosophy (generic term)
+transcendentalist|1
+(noun)|philosopher (generic term)
+transcontinental|1
+(adj)|continental (similar term)
+transcortical aphasia|1
+(noun)|aphasia (generic term)
+transcribe|5
+(verb)|write down (generic term)|set down (generic term)|get down (generic term)|put down (generic term)
+(verb)|transliterate|rewrite (generic term)
+(verb)|adapt (generic term)|accommodate (generic term)
+(verb)|rewrite (generic term)
+(verb)|convert (generic term)
+transcribed|2
+(adj)|written (similar term)
+(adj)|canned|recorded (similar term)
+transcriber|4
+(noun)|translator|linguist (generic term)|polyglot (generic term)
+(noun)|phonetician (generic term)
+(noun)|writer (generic term)
+(noun)|arranger|adapter|musician (generic term)
+transcript|2
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|copy|written record (generic term)|written account (generic term)
+transcriptase|1
+(noun)|polymerase (generic term)
+transcription|5
+(noun)|written text|written communication (generic term)|written language (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|recording (generic term)
+(noun)|arrangement|arranging|composing (generic term)|composition (generic term)
+(noun)|recording|creating from raw materials (generic term)
+transcultural|1
+(adj)|society (related term)
+transcutaneous|1
+(adj)|transdermal|transdermic|percutaneous|connective tissue|body covering (related term)|stratum (related term)
+transdermal|1
+(adj)|transdermic|percutaneous|transcutaneous|connective tissue|body covering (related term)|stratum (related term)
+transdermal patch|1
+(noun)|skin patch|pad (generic term)
+transdermic|1
+(adj)|transdermal|percutaneous|transcutaneous|connective tissue|body covering (related term)|stratum (related term)
+transduce|1
+(verb)|convert (generic term)|change over (generic term)
+transducer|1
+(noun)|electrical device (generic term)
+transducing vector|1
+(noun)|gene delivery vector|vector (generic term)|transmitter (generic term)
+transduction|2
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+transect|1
+(verb)|cut (generic term)
+transept|1
+(noun)|structure (generic term)|construction (generic term)
+transeunt|1
+(adj)|transient|immanent (antonym)
+transexual|2
+(noun)|transsexual|anomaly (generic term)|unusual person (generic term)
+(noun)|transsexual|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+transfer|14
+(noun)|transportation|transferral|conveyance|movement (generic term)
+(noun)|transferee|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|transference|change of state (generic term)
+(noun)|ticket (generic term)
+(noun)|transfer of training|carry-over|learning (generic term)|acquisition (generic term)
+(noun)|transference|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(verb)|shift|move (generic term)|displace (generic term)
+(verb)|reassign|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|transplant|displace (generic term)|force out (generic term)
+(verb)|change|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|transmit|transport|channel|channelize|channelise|move (generic term)|displace (generic term)
+(verb)|remove|transfer (generic term)|shift (generic term)
+(verb)|transpose|transplant|shift (generic term)
+transfer agent|1
+(noun)|agency (generic term)
+transfer of training|1
+(noun)|transfer|carry-over|learning (generic term)|acquisition (generic term)
+transfer paper|1
+(noun)|paper (generic term)
+transfer payment|1
+(noun)|outgo (generic term)|expenditure (generic term)|outlay (generic term)
+transfer rna|1
+(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid (generic term)|RNA (generic term)
+transfer tax|1
+(noun)|tax (generic term)|taxation (generic term)|revenue enhancement (generic term)
+transferability|1
+(noun)|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+transferable|2
+(adj)|movable|moveable|transferrable|transportable|mobile (similar term)
+(adj)|assignable|conveyable|negotiable|transferrable|alienable (similar term)
+transferase|1
+(noun)|enzyme (generic term)
+transferee|2
+(noun)|recipient (generic term)|receiver (generic term)
+(noun)|transfer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+transference|3
+(noun)|displacement (generic term)
+(noun)|transfer|transaction (generic term)|dealing (generic term)|dealings (generic term)
+(noun)|transfer|change of state (generic term)
+transferer|1
+(noun)|transferrer|mover (generic term)
+transferor|1
+(noun)|transferer (generic term)|transferrer (generic term)
+transferrable|2
+(adj)|movable|moveable|transferable|transportable|mobile (similar term)
+(adj)|assignable|conveyable|negotiable|transferable|alienable (similar term)
+transferral|1
+(noun)|transportation|transfer|conveyance|movement (generic term)
+transferred possession|1
+(noun)|transferred property|possession (generic term)
+transferred property|1
+(noun)|transferred possession|possession (generic term)
+transferrer|1
+(noun)|transferer|mover (generic term)
+transferrin|1
+(noun)|beta globulin|siderophilin|globulin (generic term)
+transfiguration|4
+(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day (generic term)
+(noun)|Transfiguration|Transfiguration of Jesus|miracle (generic term)
+(noun)|metamorphosis|revision (generic term)|alteration (generic term)
+(noun)|transformation (generic term)|translation (generic term)
+transfiguration day|1
+(noun)|Transfiguration|Transfiguration Day|August 6|Christian holy day (generic term)
+transfiguration of jesus|1
+(noun)|Transfiguration|Transfiguration of Jesus|miracle (generic term)
+transfigure|2
+(verb)|glorify|spiritualize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|metamorphose|transmogrify|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+transfix|2
+(verb)|fascinate|grip|spellbind|interest (generic term)
+(verb)|impale|empale|spike|pierce (generic term)|thrust (generic term)
+transfixed|1
+(adj)|fascinated|hypnotized|hypnotised|mesmerized|mesmerised|spellbound|spell-bound|enchanted (similar term)
+transform|4
+(verb)|transmute|transubstantiate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|transmute|metamorphose|change (generic term)
+(verb)|translate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+transformable|1
+(adj)|convertible|translatable|transmutable|commutable (similar term)
+transformation|5
+(noun)|transmutation|shift|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|function (generic term)|mathematical function (generic term)
+(noun)|grammatical rule (generic term)|rule of grammar (generic term)
+(noun)|change of integrity (generic term)
+(noun)|translation|change of integrity (generic term)
+transformed|1
+(adj)|changed (similar term)
+transformer|1
+(noun)|electrical device (generic term)
+transforming gene|1
+(noun)|oncogene|gene (generic term)|cistron (generic term)|factor (generic term)
+transfuse|4
+(verb)|instill|lend (generic term)|impart (generic term)|bestow (generic term)|contribute (generic term)|add (generic term)|bring (generic term)
+(verb)|pour (generic term)
+(verb)|cup|treat (generic term)|care for (generic term)
+(verb)|administer (generic term)|dispense (generic term)
+transfusion|2
+(noun)|blood transfusion|insertion (generic term)|introduction (generic term)|intromission (generic term)
+(noun)|action (generic term)
+transfusion reaction|1
+(noun)|reaction (generic term)|response (generic term)
+transgender|1
+(adj)|transgendered|homosexual (similar term)
+transgendered|1
+(adj)|transgender|homosexual (similar term)
+transgress|4
+(verb)|offend|infract|violate|go against|breach|break|disrespect (generic term)|keep (antonym)
+(verb)|spread (generic term)|overspread (generic term)
+(verb)|sin|trespass|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|trespass|overstep|pass (generic term)|go through (generic term)|go across (generic term)
+transgression|3
+(noun)|evildoing|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|geological phenomenon (generic term)
+(noun)|action (generic term)
+transgressor|1
+(noun)|wrongdoer (generic term)|offender (generic term)
+transience|2
+(noun)|transiency|transitoriness|impermanence (generic term)|impermanency (generic term)
+(noun)|brevity|briefness|duration (generic term)|length (generic term)
+transiency|1
+(noun)|transience|transitoriness|impermanence (generic term)|impermanency (generic term)
+transient|4
+(adj)|transeunt|immanent (antonym)
+(adj)|ephemeral|passing|short-lived|transitory|fugacious|impermanent (similar term)|temporary (similar term)
+(noun)|traveler (generic term)|traveller (generic term)
+(noun)|oscillation (generic term)|vibration (generic term)
+transient global amnesia|1
+(noun)|amnesia (generic term)|memory loss (generic term)|blackout (generic term)
+transient ischemic attack|1
+(noun)|TIA|ischemia (generic term)|ischaemia (generic term)
+transistor|1
+(noun)|junction transistor|electronic transistor|semiconductor device (generic term)|semiconductor unit (generic term)|semiconductor (generic term)
+transistorise|1
+(verb)|transistorize|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+transistorised|1
+(adj)|transistorized|equipped (similar term)|equipt (similar term)
+transistorize|1
+(verb)|transistorise|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+transistorized|1
+(adj)|transistorised|equipped (similar term)|equipt (similar term)
+transit|7
+(noun)|theodolite|surveying instrument (generic term)|surveyor's instrument (generic term)
+(noun)|transportation system|transportation|facility (generic term)|installation (generic term)
+(noun)|passage|journey (generic term)|journeying (generic term)
+(verb)|pass through|move through|pass across|pass over|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|roll (generic term)|revolve (generic term)
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+transit declinometer|1
+(noun)|declinometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+transit instrument|1
+(noun)|telescope (generic term)|scope (generic term)
+transit line|1
+(noun)|line (generic term)
+transit zone|1
+(noun)|zone (generic term)|geographical zone (generic term)
+transition|7
+(noun)|passage|change of state (generic term)
+(noun)|conversion|changeover|transformation (generic term)|transmutation (generic term)|shift (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|modulation|passage (generic term)|musical passage (generic term)
+(noun)|passage (generic term)
+(verb)|convert (generic term)
+(verb)|switch (generic term)|shift (generic term)|change (generic term)
+transitional|1
+(adj)|transformation|transmutation|shift (related term)
+transitive|2
+(adj)|intransitive (antonym)
+(noun)|transitive verb|transitive verb form|verb (generic term)
+transitive verb|1
+(noun)|transitive verb form|transitive|verb (generic term)
+transitive verb form|1
+(noun)|transitive verb|transitive|verb (generic term)
+transitively|1
+(adv)|intransitively (antonym)
+transitiveness|1
+(noun)|transitivity|grammatical relation (generic term)|intransitivity (antonym)
+transitivise|1
+(verb)|transitivize|change (generic term)|alter (generic term)|modify (generic term)|detransitivize (antonym)
+transitivity|2
+(noun)|logical relation (generic term)|mathematical relation (generic term)
+(noun)|transitiveness|grammatical relation (generic term)|intransitivity (antonym)
+transitivize|1
+(verb)|transitivise|change (generic term)|alter (generic term)|modify (generic term)|detransitivize (antonym)
+transitoriness|1
+(noun)|transience|transiency|impermanence (generic term)|impermanency (generic term)
+transitory|1
+(adj)|ephemeral|passing|short-lived|transient|fugacious|impermanent (similar term)|temporary (similar term)
+translatable|2
+(adj)|untranslatable (antonym)
+(adj)|convertible|transformable|transmutable|commutable (similar term)
+translate|9
+(verb)|interpret|render|repeat (generic term)|reiterate (generic term)|ingeminate (generic term)|iterate (generic term)|restate (generic term)|retell (generic term)
+(verb)|transform|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|understand|read|interpret|understand (generic term)
+(verb)|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|equal (generic term)|be (generic term)
+(verb)|be (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|paraphrase (generic term)|rephrase (generic term)|reword (generic term)
+(verb)|determine (generic term)|find (generic term)|find out (generic term)|ascertain (generic term)
+translating program|1
+(noun)|translator|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+translation|7
+(noun)|interlingual rendition|rendering|version|written record (generic term)|written account (generic term)
+(noun)|change of location (generic term)|travel (generic term)
+(noun)|transformation|change of integrity (generic term)
+(noun)|transformation (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+(noun)|paraphrase (generic term)|paraphrasis (generic term)
+(noun)|displacement|motion (generic term)|movement (generic term)|move (generic term)
+translational|1
+(adj)|change of location|travel (related term)|nontranslational (antonym)
+translator|3
+(noun)|transcriber|linguist (generic term)|polyglot (generic term)
+(noun)|interpreter|mediator (generic term)|go-between (generic term)|intermediator (generic term)|intermediary (generic term)|intercessor (generic term)
+(noun)|translating program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+transliterate|1
+(verb)|transcribe|rewrite (generic term)
+transliteration|1
+(noun)|transcription (generic term)|written text (generic term)
+translocate|2
+(verb)|transfer (generic term)|shift (generic term)
+(verb)|transfer (generic term)
+translocation|1
+(noun)|organic process (generic term)|biological process (generic term)
+translucence|1
+(noun)|translucency|semitransparency|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+translucency|1
+(noun)|translucence|semitransparency|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+translucent|1
+(adj)|semitransparent|clear (similar term)
+translucent substance|1
+(noun)|transparent substance|material (generic term)|stuff (generic term)
+translunar|2
+(adj)|translunary|superlunar|superlunary|satellite (related term)
+(adj)|translunary|superlunar|superlunary|heavenly (similar term)
+translunary|2
+(adj)|translunar|superlunar|superlunary|satellite (related term)
+(adj)|translunar|superlunar|superlunary|heavenly (similar term)
+transmigrante|1
+(noun)|Latin American (generic term)|Latino (generic term)|peddler (generic term)|pedlar (generic term)|packman (generic term)|hawker (generic term)|pitchman (generic term)
+transmigrate|2
+(verb)|reincarnate|be born (generic term)
+(verb)|migrate|move (generic term)
+transmigration|1
+(noun)|reincarnation (generic term)|rebirth (generic term)|renascence (generic term)
+transmissible|3
+(adj)|catching|communicable|contagious|contractable|transmittable|infectious (similar term)
+(adj)|familial|genetic|hereditary|inherited|transmitted|inheritable (similar term)|heritable (similar term)
+(adj)|ancestral|hereditary|patrimonial|inheritable (similar term)|heritable (similar term)
+transmission|5
+(noun)|transmittal|transmitting|sending (generic term)
+(noun)|communication (generic term)|communicating (generic term)
+(noun)|transmittance|coefficient (generic term)
+(noun)|infection|contagion|incident (generic term)
+(noun)|transmission system|gear (generic term)|gear mechanism (generic term)
+transmission channel|1
+(noun)|channel|transmission (generic term)
+transmission control protocol|1
+(noun)|TCP|protocol (generic term)|communications protocol (generic term)
+transmission control protocol/internet protocol|1
+(noun)|TCP/IP|protocol (generic term)|communications protocol (generic term)
+transmission line|1
+(noun)|cable|line|conductor (generic term)
+transmission mechanism|1
+(noun)|mechanism (generic term)
+transmission shaft|1
+(noun)|rotating shaft (generic term)|shaft (generic term)
+transmission system|1
+(noun)|transmission|gear (generic term)|gear mechanism (generic term)
+transmission time|1
+(noun)|TRM|coordinated universal time (generic term)|UTC (generic term)
+transmit|4
+(verb)|convey|communicate|transfer (generic term)
+(verb)|conduct|convey|carry|channel|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|air|send|broadcast|beam|publicize (generic term)|publicise (generic term)|air (generic term)|bare (generic term)
+(verb)|transfer|transport|channel|channelize|channelise|move (generic term)|displace (generic term)
+transmittable|1
+(adj)|catching|communicable|contagious|contractable|transmissible|infectious (similar term)
+transmittal|1
+(noun)|transmission|transmitting|sending (generic term)
+transmittance|1
+(noun)|transmission|coefficient (generic term)
+transmitted|2
+(adj)|sent (similar term)
+(adj)|familial|genetic|hereditary|inherited|transmissible|inheritable (similar term)|heritable (similar term)
+transmitter|3
+(noun)|sender|communicator (generic term)
+(noun)|vector|agent (generic term)
+(noun)|sender|set (generic term)
+transmitting|1
+(noun)|transmission|transmittal|sending (generic term)
+transmitting aerial|1
+(noun)|antenna|aerial|electrical device (generic term)
+transmogrification|1
+(noun)|transformation (generic term)|translation (generic term)
+transmogrify|1
+(verb)|metamorphose|transfigure|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+transmontane|1
+(adj)|tramontane|transalpine (similar term)|ultramontane (similar term)|cismontane (antonym)
+transmundane|1
+(adj)|supernatural (similar term)
+transmutability|1
+(noun)|commutability|changeableness (generic term)|changeability (generic term)
+transmutable|1
+(adj)|convertible|transformable|translatable|commutable (similar term)
+transmutation|3
+(noun)|transubstantiation|conversion (generic term)
+(noun)|transformation|shift|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+transmute|3
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|transform|metamorphose|change (generic term)
+(verb)|transform|transubstantiate|change (generic term)|alter (generic term)|modify (generic term)
+transnational|1
+(adj)|multinational|international (similar term)
+transoceanic|1
+(adj)|body of water|water (related term)
+transom|2
+(noun)|transom window|fanlight|window (generic term)
+(noun)|traverse|crosspiece (generic term)
+transom window|1
+(noun)|transom|fanlight|window (generic term)
+transonic|1
+(adj)|sonic|subsonic (antonym)|supersonic (antonym)
+transorbital lobotomy|1
+(noun)|lobotomy (generic term)|leukotomy (generic term)|leucotomy (generic term)|prefrontal lobotomy (generic term)|prefrontal leukotomy (generic term)|prefrontal leucotomy (generic term)|frontal lobotomy (generic term)
+transparence|2
+(noun)|transparency|physical phenomenon (generic term)|opacity (antonym)
+(noun)|transparency|transparentness|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+transparency|3
+(noun)|transparence|physical phenomenon (generic term)|opacity (antonym)
+(noun)|transparence|transparentness|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+(noun)|foil|picture (generic term)|image (generic term)|icon (generic term)|ikon (generic term)
+transparent|4
+(adj)|crystalline|crystal clear|limpid|lucid|pellucid|clear (similar term)
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|see-through|sheer|vaporous|vapourous|cobwebby|thin (similar term)
+(adj)|guileless|straight (similar term)|square (similar term)
+(adj)|obvious (similar term)
+transparent gem|1
+(noun)|gem (generic term)|gemstone (generic term)|stone (generic term)
+transparent quartz|1
+(noun)|rock crystal|quartz (generic term)
+transparent substance|1
+(noun)|translucent substance|material (generic term)|stuff (generic term)
+transparentness|1
+(noun)|transparency|transparence|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+transpirate|1
+(verb)|transpire|flow (generic term)|flux (generic term)
+transpiration|3
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+(noun)|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+transpire|5
+(verb)|transpirate|flow (generic term)|flux (generic term)
+(verb)|evaporate (generic term)|vaporize (generic term)|vaporise (generic term)
+(verb)|change (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|exude (generic term)|exudate (generic term)|transude (generic term)|ooze out (generic term)|ooze (generic term)
+transplacental|1
+(adj)|placental (similar term)
+transplant|7
+(noun)|graft|animal tissue (generic term)
+(noun)|transplantation|organ transplant|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|transplantation|transplanting|movement (generic term)
+(verb)|transfer|displace (generic term)|force out (generic term)
+(verb)|be (generic term)
+(verb)|graft|insert (generic term)|infix (generic term)|enter (generic term)|introduce (generic term)
+(verb)|transfer|transpose|shift (generic term)
+transplantable|1
+(adj)|mobile (similar term)
+transplantation|2
+(noun)|transplant|organ transplant|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+(noun)|transplant|transplanting|movement (generic term)
+transplanter|1
+(noun)|gardener (generic term)|nurseryman (generic term)
+transplanting|1
+(noun)|transplant|transplantation|movement (generic term)
+transpolar|1
+(adj)|geographic point|geographical point (related term)
+transponder|1
+(noun)|electrical device (generic term)
+transport|10
+(noun)|conveyance|instrumentality (generic term)|instrumentation (generic term)
+(noun)|diffusion (generic term)
+(noun)|transportation|shipping|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|ecstasy|rapture|exaltation|raptus|emotional state (generic term)|spirit (generic term)
+(noun)|tape drive|tape transport|mechanism (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|carry|move (generic term)|displace (generic term)
+(verb)|enchant|enrapture|enthrall|ravish|enthral|delight|please (generic term)|delight (generic term)|disenchant (antonym)
+(verb)|send|ship|move (generic term)|displace (generic term)|send on (related term)|send off (related term)
+(verb)|transmit|transfer|channel|channelize|channelise|move (generic term)|displace (generic term)
+transport ship|1
+(noun)|ship (generic term)
+transportable|1
+(adj)|movable|moveable|transferable|transferrable|mobile (similar term)
+transportation|6
+(noun)|transportation system|transit|facility (generic term)|installation (generic term)
+(noun)|transfer|transferral|conveyance|movement (generic term)
+(noun)|fare|charge (generic term)
+(noun)|Department of Transportation|Transportation|DoT|executive department (generic term)
+(noun)|shipping|transport|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(noun)|exile|deportation|expatriation|banishment (generic term)|proscription (generic term)
+transportation company|1
+(noun)|company (generic term)
+transportation secretary|2
+(noun)|Secretary of Transportation|Transportation Secretary|secretary (generic term)
+(noun)|Secretary of Transportation|Transportation Secretary|secretaryship (generic term)
+transportation security administration|1
+(noun)|Transportation Security Administration|TSA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+transportation system|1
+(noun)|transportation|transit|facility (generic term)|installation (generic term)
+transporter|3
+(noun)|car transporter|truck (generic term)|motortruck (generic term)
+(noun)|crane (generic term)
+(noun)|conveyer belt|conveyor belt|conveyer|conveyor|belt (generic term)
+transposability|1
+(noun)|permutability|permutableness|exchangeability (generic term)|interchangeability (generic term)|interchangeableness (generic term)|fungibility (generic term)
+transposable|1
+(adj)|permutable|exchangeable (similar term)
+transpose|8
+(noun)|matrix (generic term)
+(verb)|permute|commute|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|transfer|transplant|shift (generic term)
+(verb)|counterchange|interchange|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|transfer (generic term)|shift (generic term)
+(verb)|arrange (generic term)|set (generic term)
+(verb)|commute|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+transposed|1
+(adj)|converse|reversed|backward (similar term)
+transposition|7
+(noun)|heterotaxy|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|substitution|permutation|replacement|switch|variation (generic term)|fluctuation (generic term)
+(noun)|mutation (generic term)|genetic mutation (generic term)|chromosomal mutation (generic term)
+(noun)|calculation (generic term)|computation (generic term)|computing (generic term)
+(noun)|rearrangement (generic term)
+(noun)|reversal|reordering (generic term)
+(noun)|playing (generic term)
+transposon|1
+(noun)|jumping gene|deoxyribonucleic acid (generic term)|desoxyribonucleic acid (generic term)|DNA (generic term)
+transsexual|3
+(adj)|homosexual (similar term)
+(noun)|transexual|anomaly (generic term)|unusual person (generic term)
+(noun)|transexual|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+transsexual surgery|1
+(noun)|sex-change operation|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+transsexualism|1
+(noun)|condition (generic term)
+transship|1
+(verb)|transfer (generic term)|shift (generic term)
+transshipment|1
+(noun)|transportation (generic term)|transfer (generic term)|transferral (generic term)|conveyance (generic term)
+transshipment center|1
+(noun)|entrepot|port (generic term)
+transubstantiate|2
+(verb)|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+(verb)|transform|transmute|change (generic term)|alter (generic term)|modify (generic term)
+transubstantiation|2
+(noun)|theological doctrine (generic term)
+(noun)|transmutation|conversion (generic term)
+transudate|1
+(noun)|transudation|discharge (generic term)|emission (generic term)
+transudation|2
+(noun)|transudate|discharge (generic term)|emission (generic term)
+(noun)|exudation|seepage (generic term)|ooze (generic term)|oozing (generic term)
+transude|1
+(verb)|exude|exudate|ooze out|ooze|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+transuranic|1
+(adj)|metallic element|metal (related term)
+transuranic element|1
+(noun)|chemical element (generic term)|element (generic term)
+transurethral resection of the prostate|1
+(noun)|TURP|resection (generic term)
+transvaal|1
+(noun)|Transvaal|state (generic term)|province (generic term)
+transvaal daisy|1
+(noun)|Barberton daisy|Transvaal daisy|Gerbera jamesonii|African daisy (generic term)
+transvaal kafferboom|1
+(noun)|kaffir boom|Transvaal kafferboom|Erythrina lysistemon|coral tree (generic term)|erythrina (generic term)
+transversal|1
+(adj)|cross|transverse|thwartwise|crosswise (similar term)
+transversally|1
+(adv)|transversely
+transverse|1
+(adj)|cross|transversal|thwartwise|crosswise (similar term)
+transverse colon|1
+(noun)|colon (generic term)
+transverse flute|1
+(noun)|flute|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+transverse muscle of abdomen|1
+(noun)|transversus abdominis muscle|musculus transversalis abdominis|transversus abdominis|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+transverse process|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+transverse sinus|1
+(noun)|sinus transversus|venous sinus (generic term)|sinus (generic term)
+transversely|1
+(adv)|transversally
+transversus abdominis|1
+(noun)|transversus abdominis muscle|transverse muscle of abdomen|musculus transversalis abdominis|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+transversus abdominis muscle|1
+(noun)|transverse muscle of abdomen|musculus transversalis abdominis|transversus abdominis|abdominal (generic term)|abdominal muscle (generic term)|ab (generic term)
+transvestic|1
+(adj)|transvestite|homosexual (similar term)
+transvestism|1
+(noun)|transvestitism|cross dressing|practice (generic term)|pattern (generic term)
+transvestite|2
+(adj)|transvestic|homosexual (similar term)
+(noun)|cross-dresser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+transvestitism|1
+(noun)|transvestism|cross dressing|practice (generic term)|pattern (generic term)
+tranylcypromine|1
+(noun)|monoamine oxidase inhibitor (generic term)|MAOI (generic term)
+trap|12
+(noun)|device (generic term)
+(noun)|drain (generic term)|drainpipe (generic term)|waste pipe (generic term)
+(noun)|snare|design (generic term)|plan (generic term)
+(noun)|mechanical device (generic term)
+(noun)|ambush|ambuscade|lying in wait|surprise attack (generic term)|coup de main (generic term)
+(noun)|cakehole|hole|maw|yap|gob|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|bunker|sand trap|hazard (generic term)
+(verb)|confine (generic term)|detain (generic term)
+(verb)|entrap|snare|ensnare|trammel|capture (generic term)|catch (generic term)
+(verb)|hold (generic term)|take hold (generic term)
+(verb)|pin|immobilize|immobilise
+trap-and-drain auger|1
+(noun)|snake (generic term)
+trap-door spider|1
+(noun)|spider (generic term)
+trap block|1
+(noun)|blocking (generic term)|block (generic term)
+trap door|1
+(noun)|door (generic term)
+trap line|1
+(noun)|line (generic term)
+trap play|1
+(noun)|mousetrap|maneuver (generic term)|manoeuvre (generic term)|play (generic term)
+trapa|1
+(noun)|Trapa|genus Trapa|dicot genus (generic term)|magnoliopsid genus (generic term)
+trapa bicornis|1
+(noun)|ling|ling ko|Trapa bicornis|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+trapa natans|1
+(noun)|water caltrop|Jesuits' nut|Trapa natans|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+trapaceae|1
+(noun)|Trapaceae|family Trapaceae|dicot family (generic term)|magnoliopsid family (generic term)
+trapeze|1
+(noun)|swing (generic term)
+trapezium|3
+(noun)|quadrilateral (generic term)|quadrangle (generic term)|tetragon (generic term)|parallelogram (antonym)
+(noun)|Trapezium|multiple star (generic term)
+(noun)|trapezium bone|os trapezium|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+trapezium bone|1
+(noun)|trapezium|os trapezium|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+trapezius|1
+(noun)|trapezius muscle|cowl muscle|musculus trapezius|skeletal muscle (generic term)|striated muscle (generic term)
+trapezius muscle|1
+(noun)|trapezius|cowl muscle|musculus trapezius|skeletal muscle (generic term)|striated muscle (generic term)
+trapezohedron|1
+(noun)|polyhedron (generic term)
+trapezoid|2
+(noun)|quadrilateral (generic term)|quadrangle (generic term)|tetragon (generic term)
+(noun)|trapezoid bone|os trapezoideum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+trapezoid bone|1
+(noun)|trapezoid|os trapezoideum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+trapezoidal|1
+(adj)|quadrilateral|quadrangle|tetragon (related term)
+trapped|1
+(adj)|at bay|cornered|treed|unfree (similar term)
+trapper|1
+(noun)|hunter (generic term)|huntsman (generic term)
+trapper's tea|1
+(noun)|glandular Labrador tea|shrub (generic term)|bush (generic term)
+trapping|1
+(noun)|caparison|housing|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+trappings|1
+(noun)|furnishing|accessory (generic term)|accoutrement (generic term)|accouterment (generic term)
+trappist|1
+(noun)|Trappist|Cistercian|monk (generic term)|monastic (generic term)
+trapshooter|1
+(noun)|shot (generic term)|shooter (generic term)
+trapshooting|1
+(noun)|skeet|skeet shooting|shoot (generic term)
+trash|6
+(noun)|rubbish|scrap|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+(noun)|scum|rabble (generic term)|riffraff (generic term)|ragtag (generic term)|ragtag and bobtail (generic term)
+(noun)|folderol|rubbish|tripe|trumpery|wish-wash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+(noun)|methamphetamine|methamphetamine hydrochloride|Methedrine|meth|deoxyephedrine|chalk|chicken feed|crank|glass|ice|shabu|amphetamine (generic term)|pep pill (generic term)|upper (generic term)|speed (generic term)|controlled substance (generic term)
+(verb)|junk|scrap|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|pan|tear apart|disparage (generic term)|belittle (generic term)|pick at (generic term)
+trash barrel|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash bin|bin (generic term)
+trash bin|1
+(noun)|ashcan|trash can|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|bin (generic term)
+trash can|1
+(noun)|ashcan|garbage can|wastebin|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+trash collection|1
+(noun)|garbage collection|garbage pickup|trash pickup|pickup (generic term)
+trash dump|1
+(noun)|dump|garbage dump|rubbish dump|wasteyard|waste-yard|dumpsite|site (generic term)|land site (generic term)
+trash heap|1
+(noun)|garbage heap|junk heap|rubbish heap|scrapheap|junk pile|trash pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+trash pickup|1
+(noun)|garbage collection|garbage pickup|trash collection|pickup (generic term)
+trash pile|1
+(noun)|garbage heap|junk heap|rubbish heap|scrapheap|trash heap|junk pile|refuse heap|dump (generic term)|garbage dump (generic term)|trash dump (generic term)|rubbish dump (generic term)|wasteyard (generic term)|waste-yard (generic term)|dumpsite (generic term)
+trashiness|1
+(noun)|shoddiness|worthlessness (generic term)|ineptitude (generic term)
+trashy|2
+(adj)|rubbishy|worthless (similar term)
+(adj)|brassy|cheap|flash|flashy|garish|gaudy|gimcrack|loud|meretricious|tacky|tatty|tawdry|tasteless (similar term)
+trasimeno|1
+(noun)|Trasimeno|battle of Trasimeno|pitched battle (generic term)
+traubel|1
+(noun)|Traubel|Helen Traubel|soprano (generic term)
+trauma|2
+(noun)|injury|hurt|harm|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)
+(noun)|psychic trauma|psychological state (generic term)|mental state (generic term)
+traumatic|2
+(adj)|ill health|unhealthiness|health problem (related term)
+(adj)|painful (similar term)
+traumatic epilepsy|1
+(noun)|posttraumatic epilepsy|epilepsy (generic term)
+traumatise|1
+(verb)|traumatize|shock|injure (generic term)|wound (generic term)
+traumatize|1
+(verb)|traumatise|shock|injure (generic term)|wound (generic term)
+traumatology|1
+(noun)|accident surgery|medicine (generic term)|medical specialty (generic term)
+traumatophobia|1
+(noun)|social phobia (generic term)
+trautvetteria|1
+(noun)|Trautvetteria|genus Trautvetteria|magnoliid dicot genus (generic term)
+trautvetteria carolinensis|1
+(noun)|false bugbane|Trautvetteria carolinensis|herb (generic term)|herbaceous plant (generic term)
+travail|3
+(noun)|parturiency|labor|labour|confinement|lying-in|childbed|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+(noun)|effort|elbow grease|exertion|sweat|labor (generic term)|labour (generic term)|toil (generic term)
+(verb)|labor|labour|toil|fag|grind|drudge|dig|moil|work (generic term)|do work (generic term)
+trave|1
+(noun)|traverse|crossbeam|crosspiece|beam (generic term)
+travel|9
+(noun)|traveling|travelling|motion (generic term)|movement (generic term)|move (generic term)
+(noun)|change of location|movement (generic term)|motion (generic term)
+(noun)|locomotion|motion (generic term)|movement (generic term)|move (generic term)
+(verb)|go|move|locomote|move on (related term)|move out (related term)|move back (related term)|go on (related term)|go up (related term)|go by (related term)|go off (related term)|go out (related term)|go by (related term)|go up (related term)|go down (related term)|go down (related term)|go down (related term)|go under (related term)|go on (related term)|go around (related term)|stay in place (antonym)
+(verb)|journey|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|trip|jaunt
+(verb)|journey|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|move around|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+travel-soiled|1
+(adj)|travel-stained|dirty (similar term)|soiled (similar term)|unclean (similar term)
+travel-stained|1
+(adj)|travel-soiled|dirty (similar term)|soiled (similar term)|unclean (similar term)
+travel-worn|1
+(adj)|tired (similar term)
+travel agency|1
+(noun)|agency (generic term)
+travel agent|1
+(noun)|agent (generic term)|factor (generic term)|broker (generic term)
+travel allowance|1
+(noun)|travel reimbursement|allowance (generic term)
+travel along|1
+(verb)|follow|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+travel and entertainment account|1
+(noun)|expense account|account (generic term)|accounting (generic term)|account statement (generic term)
+travel back and forth|1
+(verb)|commute|travel (generic term)|trip (generic term)|jaunt (generic term)
+travel bargain|1
+(noun)|bargain (generic term)|buy (generic term)|steal (generic term)
+travel by|1
+(verb)|pass by|surpass|go past|go by|pass|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+travel expense|1
+(noun)|expense (generic term)
+travel guidebook|1
+(noun)|itinerary|guidebook (generic term)|guide (generic term)
+travel iron|1
+(noun)|iron (generic term)|smoothing iron (generic term)
+travel kit|1
+(noun)|toilet kit|kit (generic term)
+travel plan|1
+(noun)|itinerary|plan of action (generic term)
+travel purposefully|1
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+travel rapidly|1
+(verb)|speed|hurry|zip|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)
+travel reimbursement|1
+(noun)|travel allowance|allowance (generic term)
+travel time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+travel to|1
+(verb)|visit|travel (generic term)|trip (generic term)|jaunt (generic term)
+travelable|1
+(adj)|traversable|passable (similar term)
+traveled|2
+(adj)|heavily traveled (similar term)|untraveled (antonym)
+(adj)|travelled|cosmopolitan (similar term)
+traveler|1
+(noun)|traveller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+traveler's check|1
+(noun)|traveller's check|banker's check|traveler's letter of credit (generic term)|traveller's letter of credit (generic term)
+traveler's joy|1
+(noun)|traveller's joy|old man's beard|Clematis vitalba|clematis (generic term)
+traveler's letter of credit|1
+(noun)|traveller's letter of credit|letter of credit (generic term)
+traveler's tree|1
+(noun)|traveller's tree|ravenala|Ravenala madagascariensis|woody plant (generic term)|ligneous plant (generic term)
+traveling|2
+(adj)|itinerant|road|touring|moving (similar term)
+(noun)|travel|travelling|motion (generic term)|movement (generic term)|move (generic term)
+traveling bag|1
+(noun)|bag|grip|suitcase|baggage (generic term)|luggage (generic term)
+traveling salesman|1
+(noun)|travelling salesman|commercial traveler|commercial traveller|roadman|bagman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+traveling wave|1
+(noun)|wave (generic term)|undulation (generic term)
+travelled|1
+(adj)|traveled|cosmopolitan (similar term)
+traveller|1
+(noun)|traveler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+traveller's check|1
+(noun)|traveler's check|banker's check|traveler's letter of credit (generic term)|traveller's letter of credit (generic term)
+traveller's joy|1
+(noun)|traveler's joy|old man's beard|Clematis vitalba|clematis (generic term)
+traveller's letter of credit|1
+(noun)|traveler's letter of credit|letter of credit (generic term)
+traveller's tree|1
+(noun)|traveler's tree|ravenala|Ravenala madagascariensis|woody plant (generic term)|ligneous plant (generic term)
+travelling|1
+(noun)|travel|traveling|motion (generic term)|movement (generic term)|move (generic term)
+travelling salesman|1
+(noun)|traveling salesman|commercial traveler|commercial traveller|roadman|bagman|salesman (generic term)|spokesperson (generic term)|interpreter (generic term)|representative (generic term)|voice (generic term)
+travelog|1
+(noun)|travelogue|attraction (generic term)
+travelogue|1
+(noun)|travelog|attraction (generic term)
+traversable|1
+(adj)|travelable|passable (similar term)
+traversal|2
+(noun)|traverse|crossing (generic term)
+(noun)|traverse|travel (generic term)|traveling (generic term)|travelling (generic term)
+traverse|7
+(noun)|trave|crossbeam|crosspiece|beam (generic term)
+(noun)|transom|crosspiece (generic term)
+(noun)|traversal|crossing (generic term)
+(noun)|traversal|travel (generic term)|traveling (generic term)|travelling (generic term)
+(verb)|track|cover|cross|pass over|get over|get across|cut through|cut across|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|cross|span|sweep|cover (generic term)|continue (generic term)|extend (generic term)
+(verb)|deny
+traverse city|1
+(noun)|Traverse City|town (generic term)
+traverser|1
+(noun)|mover (generic term)
+travesty|3
+(noun)|farce|farce comedy|comedy (generic term)
+(noun)|parody|lampoon|spoof|sendup|mockery|takeoff|burlesque|charade|pasquinade|put-on|caricature (generic term)|imitation (generic term)|impersonation (generic term)
+(verb)|spoof (generic term)|burlesque (generic term)|parody (generic term)
+trawl|3
+(noun)|trawl line|spiller|setline|trotline|fishing line (generic term)
+(noun)|dragnet|trawl net|fishnet (generic term)|fishing net (generic term)
+(verb)|fish (generic term)
+trawl line|1
+(noun)|trawl|spiller|setline|trotline|fishing line (generic term)
+trawl net|1
+(noun)|trawl|dragnet|fishnet (generic term)|fishing net (generic term)
+trawler|2
+(noun)|fisherman (generic term)|fisher (generic term)
+(noun)|dragger|fishing boat (generic term)|fishing smack (generic term)|fishing vessel (generic term)
+tray|1
+(noun)|receptacle (generic term)
+tray cloth|1
+(noun)|table linen (generic term)|napery (generic term)
+trazodone|1
+(noun)|trazodone hydrochloride|Desyrel|nontricyclic (generic term)|nontricyclic drug (generic term)|nontricyclic antidepressant (generic term)|nontricyclic antidepressant drug (generic term)
+trazodone hydrochloride|1
+(noun)|trazodone|Desyrel|nontricyclic (generic term)|nontricyclic drug (generic term)|nontricyclic antidepressant (generic term)|nontricyclic antidepressant drug (generic term)
+treacherous|2
+(adj)|unreliable|dangerous (similar term)|unsafe (similar term)
+(adj)|punic|perfidious|unfaithful (similar term)
+treacherously|1
+(adv)|faithlessly|traitorously|treasonably|false
+treachery|2
+(noun)|perfidy|perfidiousness|disloyalty (generic term)
+(noun)|betrayal|treason|perfidy|dishonesty (generic term)|knavery (generic term)
+treacle|2
+(noun)|golden syrup|syrup (generic term)|sirup (generic term)
+(noun)|mush|slop|sentimentalism (generic term)
+treacly|1
+(adj)|cloying|saccharine|syrupy|sweet (similar term)
+tread|10
+(noun)|pace|stride|step (generic term)
+(noun)|surface (generic term)
+(noun)|contact (generic term)|tangency (generic term)
+(noun)|structural member (generic term)
+(verb)|step|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|trample|walk (generic term)
+(verb)|squash (generic term)|crush (generic term)|squelch (generic term)|mash (generic term)|squeeze (generic term)
+(verb)|brace (generic term)
+(verb)|give (generic term)|apply (generic term)
+(verb)|copulate (generic term)|mate (generic term)|pair (generic term)|couple (generic term)
+tread-softly|1
+(noun)|spurge nettle|devil nettle|pica-pica|Cnidoscolus urens|Jatropha urens|Jatropha stimulosus|herb (generic term)|herbaceous plant (generic term)
+tread-wheel|1
+(noun)|treadmill|treadwheel|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+tread down|1
+(verb)|tramp down|trample|walk (generic term)
+tread on|1
+(verb)|step on|step (generic term)|tread (generic term)
+treading water|1
+(noun)|swimming stroke (generic term)
+treadle|3
+(noun)|pedal|foot pedal|foot lever|lever (generic term)
+(verb)|tread (generic term)|trample (generic term)
+(verb)|operate (generic term)|control (generic term)
+treadmill|3
+(noun)|exercise device (generic term)
+(noun)|treadwheel|tread-wheel|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+(noun)|salt mine|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+treadmill test|1
+(noun)|stress test (generic term)
+treadwheel|1
+(noun)|treadmill|tread-wheel|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+treason|3
+(noun)|high treason|lese majesty|crime (generic term)|law-breaking (generic term)
+(noun)|subversiveness|traitorousness|disloyalty (generic term)
+(noun)|treachery|betrayal|perfidy|dishonesty (generic term)|knavery (generic term)
+treasonable|1
+(adj)|faithless|traitorous|unfaithful|treasonous|disloyal (similar term)
+treasonably|1
+(adv)|faithlessly|traitorously|treacherously|false
+treasonist|1
+(noun)|traitor|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+treasonous|1
+(adj)|faithless|traitorous|unfaithful|treasonable|disloyal (similar term)
+treasure|6
+(noun)|hoarded wealth|wealth (generic term)|riches (generic term)
+(noun)|gem|art (generic term)|fine art (generic term)
+(noun)|possession (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(verb)|prize|value|appreciate|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|care for|cherish|hold dear|love (generic term)
+treasure chest|1
+(noun)|chest (generic term)
+treasure flower|1
+(noun)|Gazania rigens|gazania (generic term)
+treasure house|1
+(noun)|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+treasure hunt|1
+(noun)|game (generic term)
+treasure ship|1
+(noun)|ship (generic term)
+treasure state|1
+(noun)|Montana|Treasure State|MT|American state (generic term)
+treasure trove|2
+(noun)|trove|treasure (generic term)|hoarded wealth (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+treasured|1
+(adj)|cherished|precious|wanted|loved (similar term)
+treasurer|1
+(noun)|financial officer|money handler (generic term)|money dealer (generic term)
+treasurer's check|1
+(noun)|cashier's check|cashier's cheque|treasurer's cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+treasurer's cheque|1
+(noun)|cashier's check|treasurer's check|cashier's cheque|check (generic term)|bank check (generic term)|cheque (generic term)
+treasurership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+treasuries|1
+(noun)|Treasuries|Treasury obligations|government bond (generic term)
+treasury|5
+(noun)|exchequer|funds (generic term)|finances (generic term)|monetary resource (generic term)|cash in hand (generic term)|pecuniary resource (generic term)
+(noun)|government department (generic term)
+(noun)|Treasury|First Lord of the Treasury|cabinet minister (generic term)
+(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department (generic term)
+(noun)|depository (generic term)|deposit (generic term)|depositary (generic term)|repository (generic term)
+treasury bill|1
+(noun)|Treasury bill|T-bill|Treasuries (generic term)|Treasury obligations (generic term)
+treasury bond|1
+(noun)|Treasury bond|Treasuries (generic term)|Treasury obligations (generic term)
+treasury department|1
+(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department (generic term)
+treasury note|1
+(noun)|Treasury note|Treasuries (generic term)|Treasury obligations (generic term)
+treasury obligations|1
+(noun)|Treasuries|Treasury obligations|government bond (generic term)
+treasury secretary|2
+(noun)|Secretary of the Treasury|Treasury Secretary|secretary (generic term)
+(noun)|Secretary of the Treasury|Treasury Secretary|secretaryship (generic term)
+treasury shares|1
+(noun)|treasury stock|reacquired stock|stock (generic term)
+treasury stock|1
+(noun)|treasury shares|reacquired stock|stock (generic term)
+treat|10
+(noun)|dainty|delicacy|goody|kickshaw|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(verb)|handle|do by|interact (generic term)
+(verb)|process|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|care for
+(verb)|cover|handle|plow|deal|address|broach (generic term)|initiate (generic term)
+(verb)|give (generic term)|gift (generic term)|present (generic term)
+(verb)|regale|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+(verb)|negociate (generic term)
+(verb)|react (generic term)|respond (generic term)
+treated|4
+(adj)|activated (similar term)|aerated (similar term)|burned (similar term)|burnt (similar term)|doped (similar term)|fumed (similar term)|proofed (similar term)|processed (related term)|untreated (antonym)
+(adj)|stained (similar term)
+(adj)|bandaged (similar term)|bound (similar term)|dosed (similar term)|dressed (similar term)|untreated (antonym)
+(adj)|tempered|hardened|toughened|annealed (similar term)|baked (similar term)|burned (similar term)|burnt (similar term)|curable (similar term)|sunbaked (similar term)|untempered (antonym)
+treater|1
+(noun)|negotiator|negotiant|communicator (generic term)
+treatise|1
+(noun)|writing (generic term)|written material (generic term)|piece of writing (generic term)
+treatment|4
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+(noun)|handling|management (generic term)|direction (generic term)
+(noun)|artistic style (generic term)|idiom (generic term)
+(noun)|discussion|discourse|communication (generic term)|communicating (generic term)
+treaty|1
+(noun)|pact|accord|written agreement (generic term)
+treaty of versailles|1
+(noun)|Treaty of Versailles|peace (generic term)|peace treaty (generic term)|pacification (generic term)
+treaty port|1
+(noun)|port (generic term)
+treble|7
+(adj)|soprano|high (similar term)|high-pitched (similar term)
+(adj)|threefold|three-fold|triple|multiple (similar term)
+(adj)|ternary|triple|triplex|multiple (similar term)
+(adj)|double|dual|twofold|two-fold|threefold|three-fold|multiple (similar term)
+(noun)|soprano|pitch (generic term)
+(verb)|sing (generic term)
+(verb)|triple|multiply (generic term)|manifold (generic term)
+treble clef|1
+(noun)|treble staff|G clef|clef (generic term)
+treble damages|1
+(noun)|punitive damages (generic term)|exemplary damages (generic term)|smart money (generic term)
+treble recorder|1
+(noun)|flageolet|shepherd's pipe|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+treble staff|1
+(noun)|treble clef|G clef|clef (generic term)
+trebuchet|1
+(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|onager|trebucket|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+trebucket|1
+(noun)|catapult|arbalest|arbalist|ballista|bricole|mangonel|onager|trebuchet|artillery (generic term)|heavy weapon (generic term)|gun (generic term)|ordnance (generic term)
+tree|7
+(noun)|woody plant (generic term)|ligneous plant (generic term)
+(noun)|tree diagram|plane figure (generic term)|two-dimensional figure (generic term)
+(noun)|Tree|Sir Herbert Beerbohm Tree|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|theatrical producer (generic term)
+(verb)|corner|steer (generic term)|maneuver (generic term)|manoeuver (generic term)|manoeuvre (generic term)|direct (generic term)|point (generic term)|head (generic term)|guide (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|plant (generic term)|set (generic term)
+(verb)|chase (generic term)|chase after (generic term)|trail (generic term)|tail (generic term)|tag (generic term)|give chase (generic term)|dog (generic term)|go after (generic term)|track (generic term)
+(verb)|shoetree|elongate (generic term)|stretch (generic term)
+tree-frog|2
+(noun)|tree toad|tree frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+(noun)|tree frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tree-living|1
+(adj)|arboreal|arboreous|nonarboreal (antonym)
+tree-shaped|1
+(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|treelike|branchy (similar term)
+tree-worship|1
+(noun)|arborolatry|worship (generic term)
+tree branch|1
+(noun)|limb|branch (generic term)
+tree celandine|1
+(noun)|bocconia|Bocconia frutescens|angiospermous tree (generic term)|flowering tree (generic term)
+tree clubmoss|1
+(noun)|ground fir|princess pine|Lycopodium obscurum|ground pine (generic term)|Christmas green (generic term)
+tree cotton|2
+(noun)|sea island cotton|Gossypium barbadense|cotton (generic term)|cotton plant (generic term)
+(noun)|Gossypium arboreum|cotton (generic term)|cotton plant (generic term)
+tree creeper|2
+(noun)|creeper|oscine (generic term)|oscine bird (generic term)
+(noun)|woodhewer|woodcreeper|wood-creeper|tyrannid (generic term)
+tree cricket|1
+(noun)|cricket (generic term)
+tree diagram|1
+(noun)|tree|plane figure (generic term)|two-dimensional figure (generic term)
+tree farm|1
+(noun)|forest (generic term)|woodland (generic term)|timberland (generic term)|timber (generic term)
+tree farmer|1
+(noun)|forester|arboriculturist|farmer (generic term)|husbandman (generic term)|granger (generic term)|sodbuster (generic term)
+tree farming|1
+(noun)|arboriculture|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+tree fern|1
+(noun)|fern (generic term)
+tree frog|2
+(noun)|tree toad|tree-frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+(noun)|tree-frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tree fuchsia|1
+(noun)|konini|native fuchsia|Fuchsia excorticata|fuchsia (generic term)
+tree heath|2
+(noun)|grass tree|Richea pandanifolia|Australian heath (generic term)
+(noun)|briar|brier|Erica arborea|erica (generic term)|true heath (generic term)
+tree house|1
+(noun)|playhouse (generic term)|wendy house (generic term)
+tree hugger|1
+(noun)|environmentalist (generic term)|conservationist (generic term)
+tree kangaroo|1
+(noun)|tree wallaby|wallaby (generic term)|brush kangaroo (generic term)
+tree line|1
+(noun)|timber line|timberline|line (generic term)
+tree lizard|1
+(noun)|Urosaurus ornatus|iguanid (generic term)|iguanid lizard (generic term)
+tree lupine|1
+(noun)|Lupinus arboreus|shrub (generic term)|bush (generic term)
+tree mallow|1
+(noun)|velvetleaf|velvet-leaf|Lavatera arborea|shrub (generic term)|bush (generic term)
+tree martin|1
+(noun)|tree swallow|Hirundo nigricans|swallow (generic term)
+tree of heaven|1
+(noun)|tree of the gods|Ailanthus altissima|ailanthus (generic term)
+tree of knowledge|1
+(noun)|tree (generic term)
+tree of the gods|1
+(noun)|tree of heaven|Ailanthus altissima|ailanthus (generic term)
+tree onion|1
+(noun)|Egyptian onion|top onion|Allium cepa viviparum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+tree poppy|1
+(noun)|bush poppy|shrub (generic term)|bush (generic term)
+tree shrew|1
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+tree sloth|1
+(noun)|sloth|edentate (generic term)
+tree sparrow|2
+(noun)|Passer montanus|sparrow (generic term)|true sparrow (generic term)
+(noun)|Spizella arborea|New World sparrow (generic term)
+tree squirrel|1
+(noun)|squirrel (generic term)
+tree stump|1
+(noun)|stump|plant part (generic term)|plant structure (generic term)
+tree surgeon|1
+(noun)|arborist|specialist (generic term)|specializer (generic term)|specialiser (generic term)
+tree surgery|1
+(noun)|care (generic term)|attention (generic term)|aid (generic term)|tending (generic term)
+tree swallow|2
+(noun)|white-bellied swallow|Iridoprocne bicolor|swallow (generic term)
+(noun)|tree martin|Hirundo nigricans|swallow (generic term)
+tree swift|1
+(noun)|crested swift|apodiform bird (generic term)
+tree toad|1
+(noun)|tree frog|tree-frog|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+tree tobacco|1
+(noun)|mustard tree|Nicotiana glauca|tobacco (generic term)|tobacco plant (generic term)
+tree tomato|1
+(noun)|tamarillo|shrub (generic term)|bush (generic term)
+tree trunk|1
+(noun)|trunk|bole|stalk (generic term)|stem (generic term)
+tree wallaby|1
+(noun)|tree kangaroo|wallaby (generic term)|brush kangaroo (generic term)
+treed|1
+(adj)|at bay|cornered|trapped|unfree (similar term)
+treehopper|1
+(noun)|plant hopper (generic term)|planthopper (generic term)
+treeless|1
+(adj)|unwooded|unforested (similar term)|untimbered (similar term)|cleared (related term)|wooded (antonym)
+treelet|1
+(noun)|tree (generic term)
+treelike|1
+(adj)|arboreal|arboreous|arborescent|arboresque|arboriform|dendriform|dendroid|dendroidal|tree-shaped|branchy (similar term)
+treenail|1
+(noun)|trenail|trunnel|peg (generic term)|nog (generic term)
+treetop|1
+(noun)|crown|capitulum|top (generic term)
+tref|1
+(adj)|nonkosher|terefah|unclean (similar term)|impure (similar term)
+trefoil|3
+(noun)|medic|medick|herb (generic term)|herbaceous plant (generic term)
+(noun)|clover|herb (generic term)|herbaceous plant (generic term)
+(noun)|architectural ornament (generic term)
+trefoil arch|1
+(noun)|pointed arch (generic term)
+treillage|1
+(noun)|trellis|lattice (generic term)|latticework (generic term)|fretwork (generic term)
+trek|3
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|trip (generic term)
+(verb)|travel (generic term)|journey (generic term)
+trekker|1
+(noun)|traveler (generic term)|traveller (generic term)
+trellis|2
+(noun)|treillage|lattice (generic term)|latticework (generic term)|fretwork (generic term)
+(verb)|train (generic term)
+trema|1
+(noun)|Trema|genus Trema|dicot genus (generic term)|magnoliopsid genus (generic term)
+trematoda|1
+(noun)|Trematoda|class Trematoda|class (generic term)
+trematode|1
+(noun)|fluke|trematode worm|flatworm (generic term)|platyhelminth (generic term)
+trematode worm|1
+(noun)|fluke|trematode|flatworm (generic term)|platyhelminth (generic term)
+tremble|2
+(noun)|shiver|shake|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|shake (generic term)|agitate (generic term)
+trembler|1
+(noun)|quaker|coward (generic term)
+trembles|1
+(noun)|milk sickness|animal disease (generic term)
+trembling|2
+(adj)|shaky|shivering|unsteady (similar term)
+(noun)|shaking|shakiness|quiver|quivering|vibration|palpitation|motion (generic term)
+tremella|1
+(noun)|Tremella|genus Tremella|fungus genus (generic term)
+tremella foliacea|1
+(noun)|Tremella foliacea|jelly fungus (generic term)
+tremella fuciformis|1
+(noun)|snow mushroom|Tremella fuciformis|jelly fungus (generic term)
+tremella lutescens|1
+(noun)|witches' butter|Tremella lutescens|jelly fungus (generic term)
+tremella reticulata|1
+(noun)|Tremella reticulata|jelly fungus (generic term)
+tremellaceae|1
+(noun)|Tremellaceae|family Tremellaceae|fungus family (generic term)
+tremellales|1
+(noun)|Tremellales|order Tremellales|fungus order (generic term)
+tremendous|3
+(adj)|enormous|large (similar term)|big (similar term)
+(adj)|fantastic|grand|howling|marvelous|marvellous|rattling|terrific|wonderful|wondrous|extraordinary (similar term)
+(adj)|frightful|terrible|awful|extraordinary (similar term)
+tremendously|1
+(adv)|enormously|hugely|staggeringly
+tremolite|1
+(noun)|asbestos (generic term)
+tremolo|2
+(noun)|shaking (generic term)|shakiness (generic term)|trembling (generic term)|quiver (generic term)|quivering (generic term)|vibration (generic term)|palpitation (generic term)
+(noun)|vibrato (generic term)
+tremor|4
+(noun)|shudder|vibration (generic term)|quiver (generic term)|quivering (generic term)
+(noun)|earth tremor|microseism|earthquake (generic term)|quake (generic term)|temblor (generic term)|seism (generic term)
+(noun)|shaking (generic term)|shakiness (generic term)|trembling (generic term)|quiver (generic term)|quivering (generic term)|vibration (generic term)|palpitation (generic term)
+(verb)|quake|shake (generic term)|agitate (generic term)
+tremulous|1
+(adj)|quavering|unsteady (similar term)
+trenail|1
+(noun)|treenail|trunnel|peg (generic term)|nog (generic term)
+trench|8
+(noun)|deep|oceanic abyss|natural depression (generic term)|depression (generic term)
+(noun)|ditch (generic term)
+(verb)|impinge|encroach|entrench|trespass (generic term)|take advantage (generic term)
+(verb)|fortify (generic term)|fort (generic term)
+(verb)|cut (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|ditch|excavate (generic term)|dig (generic term)|hollow (generic term)
+(verb)|dig (generic term)|dig out (generic term)
+trench coat|1
+(noun)|raincoat (generic term)|waterproof (generic term)
+trench fever|1
+(noun)|rickettsial disease (generic term)|rickettsiosis (generic term)
+trench foot|1
+(noun)|immersion foot|frostbite (generic term)|cryopathy (generic term)
+trench knife|1
+(noun)|knife (generic term)
+trench mortar|1
+(noun)|mortar|howitzer|high-angle gun (generic term)
+trench mouth|1
+(noun)|Vincent's angina|Vincent's infection|contagious disease (generic term)|contagion (generic term)|angina (generic term)
+trench warfare|2
+(noun)|war (generic term)|warfare (generic term)
+(noun)|combat (generic term)|armed combat (generic term)
+trenchancy|1
+(noun)|incisiveness|effectiveness (generic term)|effectivity (generic term)|effectualness (generic term)|effectuality (generic term)
+trenchant|3
+(adj)|searching|intelligent (similar term)
+(adj)|hard-hitting|effective (similar term)|effectual (similar term)|efficacious (similar term)
+(adj)|clear-cut|distinct|clear (similar term)
+trencher|2
+(noun)|digger (generic term)
+(noun)|board (generic term)
+trencherman|1
+(noun)|glutton|gourmand|gourmandizer|eater (generic term)|feeder (generic term)
+trenching spade|1
+(noun)|entrenching tool|hand shovel (generic term)
+trend|5
+(noun)|tendency|direction (generic term)|way (generic term)
+(noun)|course|direction (generic term)|way (generic term)
+(noun)|drift|movement|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|vogue|style|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(verb)|swerve|sheer|curve|veer|slue|slew|cut|turn (generic term)
+trend-setter|1
+(noun)|taste-maker|fashion arbiter|model (generic term)|role model (generic term)
+trend-setting|1
+(adj)|trendsetting|fashionable (similar term)|stylish (similar term)
+trend analysis|1
+(noun)|analysis (generic term)|analytic thinking (generic term)
+trend line|1
+(noun)|line (generic term)
+trend setting|1
+(noun)|leadership (generic term)|leading (generic term)
+trendsetting|1
+(adj)|trend-setting|fashionable (similar term)|stylish (similar term)
+trendy|1
+(adj)|voguish|fashionable (similar term)|stylish (similar term)
+trent|2
+(noun)|Trent|River Trent|Trent River|river (generic term)
+(noun)|Trento|Trent|city (generic term)|metropolis (generic term)|urban center (generic term)
+trent river|1
+(noun)|Trent|River Trent|Trent River|river (generic term)
+trental|1
+(noun)|pentoxifylline|Trental|drug (generic term)
+trente-et-quarante|1
+(noun)|rouge et noir|card game (generic term)|cards (generic term)
+trentino-alto adige|1
+(noun)|Trentino-Alto Adige|Italian region (generic term)
+trento|1
+(noun)|Trento|Trent|city (generic term)|metropolis (generic term)|urban center (generic term)
+trenton|1
+(noun)|Trenton|capital of New Jersey|state capital (generic term)
+trepan|3
+(noun)|trephine|surgical instrument (generic term)
+(noun)|drill (generic term)
+(verb)|bore (generic term)|drill (generic term)
+trepang|1
+(noun)|Holothuria edulis|sea cucumber (generic term)|holothurian (generic term)
+trephination|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+trephine|2
+(noun)|trepan|surgical instrument (generic term)
+(verb)|operate on (generic term)|operate (generic term)
+trephritidae|1
+(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family (generic term)
+trepid|1
+(adj)|fearful|timorous|timid (similar term)
+trepidation|1
+(noun)|apprehension (generic term)|apprehensiveness (generic term)|dread (generic term)
+trepidly|1
+(adv)|timorously
+treponema|1
+(noun)|spirochete (generic term)|spirochaete (generic term)
+treponemataceae|1
+(noun)|Treponemataceae|family Treponemataceae|bacteria family (generic term)
+trespass|7
+(noun)|tort (generic term)|civil wrong (generic term)
+(noun)|encroachment|violation|intrusion|usurpation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(verb)|intrude|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)|trespass (related term)
+(verb)|take advantage|use (generic term)
+(verb)|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|sin|transgress|transgress (generic term)|offend (generic term)|infract (generic term)|violate (generic term)|go against (generic term)|breach (generic term)|break (generic term)
+(verb)|transgress|overstep|pass (generic term)|go through (generic term)|go across (generic term)
+trespass de bonis asportatis|1
+(noun)|trespass (generic term)
+trespass on the case|1
+(noun)|trespass (generic term)
+trespass quare clausum fregit|1
+(noun)|trespass (generic term)
+trespass viet armis|1
+(noun)|trespass (generic term)
+trespasser|1
+(noun)|intruder|interloper|entrant (generic term)|unwelcome person (generic term)|persona non grata (generic term)
+trespassing|1
+(adj)|encroaching|invasive|intrusive (similar term)
+tress|1
+(noun)|braid|plait|twist|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+trestle|2
+(noun)|supporting tower (generic term)
+(noun)|sawhorse (generic term)|horse (generic term)|sawbuck (generic term)|buck (generic term)
+trestle bridge|1
+(noun)|bridge (generic term)|span (generic term)
+trestle table|1
+(noun)|table (generic term)
+trestlework|1
+(noun)|structure (generic term)|construction (generic term)
+trevelyan|2
+(noun)|Trevelyan|George Macaulay Trevelyan|historian (generic term)|historiographer (generic term)
+(noun)|Trevelyan|George Otto Trevelyan|Sir George Otto Trevelyan|historian (generic term)|historiographer (generic term)
+trevino|1
+(noun)|Trevino|Lee Trevino|Lee Buck Trevino|Supermex|golfer (generic term)|golf player (generic term)|linksman (generic term)
+trevithick|1
+(noun)|Trevithick|Richard Trevithick|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+trews|1
+(noun)|trouser (generic term)|pant (generic term)
+trey|2
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|playing card (generic term)
+trf|1
+(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+trh|1
+(noun)|thyrotropin-releasing hormone|TRH|thyrotropin-releasing factor|TRF|protirelin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+tri-chad|1
+(noun)|chad (generic term)
+tri-iodomethane|1
+(noun)|iodoform|haloform (generic term)
+tri-iodothyronine|1
+(noun)|iodothyronine (generic term)
+triacetate|1
+(noun)|cellulose triacetate|cellulose acetate (generic term)
+triad|4
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|trio|triplet|triple|set (generic term)
+(noun)|trio|threesome|trinity|gathering (generic term)|assemblage (generic term)
+(noun)|common chord|chord (generic term)
+triaenodon|1
+(noun)|Triaenodon|genus Triaenodon|fish genus (generic term)
+triaenodon obseus|1
+(noun)|whitetip shark|reef whitetip shark|Triaenodon obseus|smooth dogfish (generic term)
+triage|1
+(noun)|sorting (generic term)
+triakidae|1
+(noun)|Triakidae|family Triakidae|fish family (generic term)
+trial|6
+(noun)|test|run|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|contest (generic term)|competition (generic term)
+(noun)|proceeding (generic term)|legal proceeding (generic term)|proceedings (generic term)
+(noun)|trial run|test|tryout|experiment (generic term)|experimentation (generic term)
+(noun)|tribulation|visitation|affliction (generic term)
+(noun)|test|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+trial-and-error|2
+(adj)|empirical (similar term)|empiric (similar term)
+(adj)|heuristic (similar term)
+trial and error|1
+(noun)|experiment (generic term)|experimentation (generic term)
+trial attorney|1
+(noun)|trial lawyer|lawyer (generic term)|attorney (generic term)
+trial balance|1
+(noun)|balance (generic term)
+trial balloon|2
+(noun)|trial (generic term)|trial run (generic term)|test (generic term)|tryout (generic term)
+(noun)|balloon (generic term)
+trial by ordeal|1
+(noun)|ordeal|trial (generic term)
+trial court|1
+(noun)|court (generic term)|tribunal (generic term)|judicature (generic term)
+trial impression|1
+(noun)|proof|test copy|impression (generic term)|printing (generic term)
+trial judge|1
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+trial lawyer|1
+(noun)|trial attorney|lawyer (generic term)|attorney (generic term)
+trial period|1
+(noun)|test period|time period (generic term)|period of time (generic term)|period (generic term)
+trial run|1
+(noun)|trial|test|tryout|experiment (generic term)|experimentation (generic term)
+trialeurodes|1
+(noun)|Trialeurodes|genus Trialeurodes|arthropod genus (generic term)
+trialeurodes vaporariorum|1
+(noun)|greenhouse whitefly|Trialeurodes vaporariorum|whitefly (generic term)
+triamcinolone|1
+(noun)|Aristocort|Aristopak|Kenalog|corticosteroid (generic term)|corticoid (generic term)|adrenal cortical steroid (generic term)
+triangle|5
+(noun)|trigon|trilateral|polygon (generic term)|polygonal shape (generic term)
+(noun)|shape (generic term)|form (generic term)
+(noun)|Triangulum|Triangle|constellation (generic term)
+(noun)|drafting instrument (generic term)
+(noun)|percussion instrument (generic term)|percussive instrument (generic term)
+triangular|3
+(adj)|angular (similar term)|angulate (similar term)
+(adj)|trilateral|tripartite|three-party|three-way|multilateral (similar term)|many-sided (similar term)
+(adj)|trilateral|three-sided|multilateral (similar term)|many-sided (similar term)
+triangular bandage|1
+(noun)|sling|scarf bandage|bandage (generic term)|patch (generic term)
+triangular prism|1
+(noun)|prism (generic term)
+triangularity|1
+(noun)|angularity (generic term)
+triangulate|4
+(adj)|polygon|polygonal shape (related term)
+(verb)|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|measure (generic term)|mensurate (generic term)|measure out (generic term)
+(verb)|survey (generic term)
+triangulation|2
+(noun)|trigonometry (generic term)|trig (generic term)
+(noun)|surveying (generic term)
+triangulum|1
+(noun)|Triangulum|Triangle|constellation (generic term)
+triangulum australe|1
+(noun)|Triangulum Australe|Southern Triangle|constellation (generic term)
+triassic|2
+(adj)|Triassic|period|geological period (related term)
+(noun)|Triassic|Triassic period|period (generic term)|geological period (generic term)
+triassic period|1
+(noun)|Triassic|Triassic period|period (generic term)|geological period (generic term)
+triatoma|1
+(noun)|Triatoma|genus Triatoma|arthropod genus (generic term)
+triavil|1
+(noun)|perphenazine|Triavil|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+triazine|1
+(noun)|compound (generic term)|chemical compound (generic term)
+triazolam|1
+(noun)|Halcion|benzodiazepine (generic term)
+tribade|1
+(noun)|lesbian|gay woman|homosexual (generic term)|homophile (generic term)|homo (generic term)|gay (generic term)
+tribadism|1
+(noun)|lesbianism (generic term)|sapphism (generic term)
+tribadistic|1
+(adj)|homosexual (similar term)
+tribal|1
+(adj)|social group (related term)
+tribal chief|1
+(noun)|headman|chieftain|leader (generic term)
+tribal sheik|1
+(noun)|sheik|sheikh|tribal sheikh|Arab chief|ruler (generic term)|swayer (generic term)
+tribal sheikh|1
+(noun)|sheik|tribal sheik|sheikh|Arab chief|ruler (generic term)|swayer (generic term)
+tribal society|1
+(noun)|society (generic term)
+tribalisation|1
+(noun)|tribalization|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)|detribalisation (antonym)|detribalization (antonym)
+tribalism|2
+(noun)|state (generic term)
+(noun)|belief (generic term)
+tribalization|1
+(noun)|tribalisation|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)|detribalisation (antonym)|detribalization (antonym)
+tribasic acid|1
+(noun)|acid (generic term)
+tribasic sodium phosphate|1
+(noun)|trisodium phosphate|trisodium orthophosphate|builder (generic term)|detergent builder (generic term)
+tribe|4
+(noun)|folk|social group (generic term)
+(noun)|federation of tribes|nation (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|kin|kin group|kinship group|kindred|clan|social group (generic term)
+tribe bambuseae|1
+(noun)|Bambuseae|tribe Bambuseae|tribe (generic term)
+tribe bovini|1
+(noun)|Bovini|tribe Bovini|tribe (generic term)
+tribe bubalus|1
+(noun)|Bubalus|genus Bubalus|tribe Bubalus|mammal genus (generic term)
+tribe synercus|1
+(noun)|Synercus|genus Synercus|mammal genus (generic term)
+tribes of israel|1
+(noun)|Tribes of Israel|Twelve Tribes of Israel|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+tribesman|1
+(noun)|member (generic term)
+tribolium|1
+(noun)|Tribolium|genus Tribolium|arthropod genus (generic term)
+tribologist|1
+(noun)|mechanical engineer (generic term)
+tribology|1
+(noun)|mechanical engineering (generic term)
+tribonema|1
+(noun)|Tribonema|genus Tribonema|genus Conferva|protoctist genus (generic term)
+tribonemaceae|1
+(noun)|Tribonemaceae|family Tribonemaceae|protoctist family (generic term)
+tribromoethanol|1
+(noun)|tribromoethyl alcohol|intravenous anesthetic (generic term)
+tribromoethyl alcohol|1
+(noun)|tribromoethanol|intravenous anesthetic (generic term)
+tribromomethane|1
+(noun)|bromoform|haloform (generic term)
+tribulate|1
+(verb)|afflict (generic term)
+tribulation|1
+(noun)|trial|visitation|affliction (generic term)
+tribulus|1
+(noun)|Tribulus|genus Tribulus|rosid dicot genus (generic term)
+tribulus terestris|1
+(noun)|caltrop|devil's weed|Tribulus terestris|subshrub (generic term)|suffrutex (generic term)
+tribunal|1
+(noun)|court|judicature|assembly (generic term)
+tribune|2
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|apse (generic term)|apsis (generic term)
+tribuneship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+tributary|4
+(adj)|secondary (similar term)
+(adj)|obligated (similar term)
+(adj)|conducive|contributing|contributive|contributory|causative (similar term)
+(noun)|feeder|confluent|affluent|branch (generic term)|distributary (antonym)
+tribute|3
+(noun)|testimonial|approval (generic term)|commendation (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+(noun)|protection|extortion (generic term)
+tribute album|1
+(noun)|benefit album|concept album (generic term)
+tributyrin|1
+(noun)|butyrin (generic term)
+tricarboxylic acid cycle|1
+(noun)|Krebs cycle|Krebs citric acid cycle|citric acid cycle|organic process (generic term)|biological process (generic term)
+trice|3
+(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|twinkling|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+(verb)|trice up|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|trice up|hoist (generic term)|lift (generic term)|wind (generic term)
+trice up|2
+(verb)|trice|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|trice|hoist (generic term)|lift (generic term)|wind (generic term)
+tricentenary|1
+(adj)|tricentennial|anniversary|day of remembrance (related term)
+tricentennial|1
+(adj)|tricentenary|anniversary|day of remembrance (related term)
+triceps|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+triceps brachii|1
+(noun)|musculus triceps brachii|triceps (generic term)
+triceratops|1
+(noun)|ceratopsian (generic term)|horned dinosaur (generic term)
+trichechidae|1
+(noun)|Trichechidae|family Trichechidae|mammal family (generic term)
+trichechus|1
+(noun)|Trichechus|genus Trichecus|mammal genus (generic term)
+trichechus manatus|1
+(noun)|manatee|Trichechus manatus|sea cow (generic term)|sirenian mammal (generic term)|sirenian (generic term)
+trichina|1
+(noun)|Trichinella spiralis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+trichinella spiralis|1
+(noun)|trichina|Trichinella spiralis|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+trichiniasis|1
+(noun)|trichinosis|myositis trichinosa|myositis (generic term)|infestation (generic term)
+trichinosis|1
+(noun)|trichiniasis|myositis trichinosa|myositis (generic term)|infestation (generic term)
+trichion|1
+(noun)|crinion|point (generic term)
+trichiuridae|1
+(noun)|Trichiuridae|family Trichiuridae|fish family (generic term)
+trichloracetic acid|1
+(noun)|trichloroacetic acid|acetic acid (generic term)|ethanoic acid (generic term)
+trichloride|1
+(noun)|chloride (generic term)
+trichlormethiazide|1
+(noun)|Naqua|thiazide (generic term)
+trichloroacetic acid|1
+(noun)|trichloracetic acid|acetic acid (generic term)|ethanoic acid (generic term)
+trichloroethane|1
+(noun)|trichloroethylene|TCE|ethylene (generic term)|ethene (generic term)
+trichloroethylene|1
+(noun)|trichloroethane|TCE|ethylene (generic term)|ethene (generic term)
+trichloromethane|1
+(noun)|chloroform|haloform (generic term)|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+trichobezoar|1
+(noun)|hairball|hair ball|tangle (generic term)
+trichoceros|1
+(noun)|Trichoceros|genus Trichoceros|monocot genus (generic term)|liliopsid genus (generic term)
+trichodesmium|1
+(noun)|cyanobacteria (generic term)|blue-green algae (generic term)
+trichodontidae|1
+(noun)|Trichodontidae|family Trichodontidae|fish family (generic term)
+trichoglossus|1
+(noun)|Trichoglossus|genus Trichoglossus|bird genus (generic term)
+trichoglossus moluccanus|1
+(noun)|rainbow lorikeet|Trichoglossus moluccanus|lorikeet (generic term)
+tricholoma|1
+(noun)|Tricholoma|genus Tricholoma|fungus genus (generic term)
+tricholoma aurantium|1
+(noun)|Tricholoma aurantium|agaric (generic term)
+tricholoma flavovirens|1
+(noun)|man-on-a-horse|Tricholoma flavovirens|agaric (generic term)
+tricholoma irinum|1
+(noun)|Clitocybe irina|Tricholoma irinum|Lepista irina|agaric (generic term)
+tricholoma pardinum|1
+(noun)|Tricholoma pardinum|agaric (generic term)
+tricholoma pessundatum|1
+(noun)|Tricholoma pessundatum|agaric (generic term)
+tricholoma populinum|1
+(noun)|sandy mushroom|Tricholoma populinum|agaric (generic term)
+tricholoma sejunctum|1
+(noun)|Tricholoma sejunctum|agaric (generic term)
+tricholoma vaccinum|1
+(noun)|Tricholoma vaccinum|agaric (generic term)
+tricholoma venenata|1
+(noun)|Tricholoma venenata|agaric (generic term)
+tricholomataceae|1
+(noun)|Tricholomataceae|family Tricholomataceae|fungus family (generic term)
+trichomanes|1
+(noun)|Trichomanes|genus Trichomanes|fern genus (generic term)
+trichomanes boschianum|1
+(noun)|hare's-foot bristle fern|Trichomanes boschianum|bristle fern (generic term)|filmy fern (generic term)
+trichomanes reniforme|1
+(noun)|kidney fern|Trichomanes reniforme|bristle fern (generic term)|filmy fern (generic term)
+trichomanes speciosum|1
+(noun)|Killarney fern|Trichomanes speciosum|bristle fern (generic term)|filmy fern (generic term)
+trichomonad|1
+(noun)|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+trichomoniasis|1
+(noun)|protozoal infection (generic term)
+trichophaga|1
+(noun)|Trichophaga|genus Trichophaga|arthropod genus (generic term)
+trichophaga tapetzella|1
+(noun)|carpet moth|tapestry moth|Trichophaga tapetzella|tineid (generic term)|tineid moth (generic term)
+trichophyton|1
+(noun)|Trichophyton|genus Trichophyton|fungus genus (generic term)
+trichoptera|1
+(noun)|Trichoptera|order Trichoptera|animal order (generic term)
+trichopteran|1
+(noun)|trichopterous insect|trichopteron|insect (generic term)
+trichopteron|1
+(noun)|trichopterous insect|trichopteran|insect (generic term)
+trichopterous insect|1
+(noun)|trichopteran|trichopteron|insect (generic term)
+trichostema|1
+(noun)|Trichostema|genus Trichostema|asterid dicot genus (generic term)
+trichostema dichotomum|1
+(noun)|bastard pennyroyal|Trichostema dichotomum|blue curls (generic term)
+trichostema lanatum|1
+(noun)|black sage|wooly blue curls|California romero|Trichostema lanatum|blue curls (generic term)
+trichostema lanceolatum|1
+(noun)|turpentine camphor weed|camphorweed|vinegarweed|Trichostema lanceolatum|blue curls (generic term)
+trichostigma|1
+(noun)|Trichostigma|genus Trichostigma|caryophylloid dicot genus (generic term)
+trichosurus|1
+(noun)|Trichosurus|genus Trichosurus|mammal genus (generic term)
+trichosurus vulpecula|1
+(noun)|brush-tailed phalanger|Trichosurus vulpecula|phalanger (generic term)|opossum (generic term)|possum (generic term)
+trichotillomania|1
+(noun)|mania (generic term)|passion (generic term)|cacoethes (generic term)
+trichotomy|1
+(noun)|classification (generic term)|categorization (generic term)|categorisation (generic term)
+trichroism|1
+(noun)|pleochroism (generic term)
+trichromacy|1
+(noun)|color vision|chromatic vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+trichromatic|1
+(adj)|trichrome|tricolor|colored (similar term)|coloured (similar term)|colorful (similar term)
+trichrome|1
+(adj)|trichromatic|tricolor|colored (similar term)|coloured (similar term)|colorful (similar term)
+trichuriasis|1
+(noun)|infestation (generic term)
+trichys|1
+(noun)|Trichys|genus Trichys|mammal genus (generic term)
+trichys lipura|1
+(noun)|long-tailed porcupine|Trichys lipura|Old World porcupine (generic term)
+trick|8
+(noun)|fast one|device (generic term)|gimmick (generic term)|twist (generic term)
+(noun)|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|dishonesty (generic term)|knavery (generic term)
+(noun)|antic|joke|prank|caper|put-on|diversion (generic term)|recreation (generic term)
+(noun)|magic trick|conjuring trick|magic|legerdemain|conjuration|thaumaturgy|illusion|deception|performance (generic term)
+(noun)|whoremaster|whoremonger|john|customer (generic term)|client (generic term)
+(noun)|turn (generic term)|play (generic term)
+(verb)|flim-flam|fob|fox|pull a fast one on|play a trick on|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+trick or treat|1
+(noun)|request (generic term)|asking (generic term)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+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 (generic term)|get dressed (generic term)|dress (related term)|dress down (antonym)
+tricked-out|1
+(adj)|adorned (similar term)|decorated (similar term)
+tricked out|1
+(adj)|fancied up|gussied|gussied up|adorned (similar term)|decorated (similar term)
+tricker|1
+(noun)|prankster|cut-up|trickster|hoaxer|practical joker|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+trickery|2
+(noun)|hocus-pocus|slickness|hanky panky|jiggery-pokery|skulduggery|skullduggery|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|chicanery|chicane|guile|wile|shenanigan|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+trickily|1
+(adv)|craftily|cunningly|foxily|knavishly|slyly|artfully
+trickiness|2
+(noun)|rascality|shiftiness|slipperiness|dishonesty (generic term)
+(noun)|complexity (generic term)|complexness (generic term)
+trickle|2
+(noun)|drip|dribble|flow (generic term)|flowing (generic term)
+(verb)|dribble|filter|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+trickster|3
+(noun)|prankster|cut-up|tricker|hoaxer|practical joker|troublemaker (generic term)|trouble maker (generic term)|troubler (generic term)|mischief-maker (generic term)|bad hat (generic term)
+(noun)|deceiver|cheat|cheater|beguiler|slicker|wrongdoer (generic term)|offender (generic term)
+(noun)|spiritual being (generic term)|supernatural being (generic term)
+tricksy|1
+(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricky|wily|artful (similar term)
+tricky|3
+(adj)|slippery|untrustworthy (similar term)|untrusty (similar term)
+(adj)|catchy|difficult (similar term)|hard (similar term)
+(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|wily|artful (similar term)
+triclinic|1
+(adj)|anorthic|monoclinic (antonym)
+triclinium|2
+(noun)|dining room (generic term)|dining-room (generic term)
+(noun)|dining table (generic term)|board (generic term)
+tricolor|2
+(adj)|trichromatic|trichrome|colored (similar term)|coloured (similar term)|colorful (similar term)
+(noun)|tricolour|flag (generic term)
+tricolor television tube|1
+(noun)|tricolour television tube|tricolor tube|tricolour tube|color tube (generic term)|colour tube (generic term)|color television tube (generic term)|colour television tube (generic term)|color TV tube (generic term)|colour TV tube (generic term)
+tricolor tube|1
+(noun)|tricolor television tube|tricolour television tube|tricolour tube|color tube (generic term)|colour tube (generic term)|color television tube (generic term)|colour television tube (generic term)|color TV tube (generic term)|colour TV tube (generic term)
+tricolour|1
+(noun)|tricolor|flag (generic term)
+tricolour television tube|1
+(noun)|tricolor television tube|tricolor tube|tricolour tube|color tube (generic term)|colour tube (generic term)|color television tube (generic term)|colour television tube (generic term)|color TV tube (generic term)|colour TV tube (generic term)
+tricolour tube|1
+(noun)|tricolor television tube|tricolour television tube|tricolor tube|color tube (generic term)|colour tube (generic term)|color television tube (generic term)|colour television tube (generic term)|color TV tube (generic term)|colour TV tube (generic term)
+tricorn|1
+(noun)|tricorne|cocked hat (generic term)
+tricorne|1
+(noun)|tricorn|cocked hat (generic term)
+tricot|1
+(noun)|knit (generic term)|knitted fabric (generic term)
+tricuspid|1
+(adj)|tricuspidate|angular (similar term)|angulate (similar term)
+tricuspid valve|1
+(noun)|right atrioventricular valve|atrioventricular valve (generic term)
+tricuspidate|1
+(adj)|tricuspid|angular (similar term)|angulate (similar term)
+tricycle|1
+(noun)|trike|velocipede|wheeled vehicle (generic term)
+tricyclic|1
+(noun)|tricyclic antidepressant|tricyclic antidepressant drug|antidepressant (generic term)|antidepressant drug (generic term)
+tricyclic antidepressant|1
+(noun)|tricyclic|tricyclic antidepressant drug|antidepressant (generic term)|antidepressant drug (generic term)
+tricyclic antidepressant drug|1
+(noun)|tricyclic|tricyclic antidepressant|antidepressant (generic term)|antidepressant drug (generic term)
+tridacna|1
+(noun)|Tridacna|genus Tridacna|mollusk genus (generic term)
+tridacna gigas|1
+(noun)|giant clam|Tridacna gigas|clam (generic term)
+tridacnidae|1
+(noun)|Tridacnidae|family Tridacnidae|mollusk family (generic term)
+trident|1
+(noun)|spear (generic term)|lance (generic term)|shaft (generic term)
+tridymite|1
+(noun)|mineral (generic term)
+tried|2
+(adj)|tested|well-tried|proved (similar term)|proven (similar term)
+(adj)|tested|time-tested|tried and true|reliable (similar term)|dependable (similar term)
+tried and true|1
+(adj)|tested|time-tested|tried|reliable (similar term)|dependable (similar term)
+triennial|2
+(adj)|time period|period of time|period (related term)
+(noun)|tercentennial|tercentenary|anniversary (generic term)|day of remembrance (generic term)
+trier|2
+(noun)|judge (generic term)|justice (generic term)|jurist (generic term)|magistrate (generic term)
+(noun)|attempter|essayer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+trifid|1
+(adj)|divided (similar term)
+trifid beggar-ticks|1
+(noun)|European beggar-ticks|trifid bur marigold|Bidens tripartita|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+trifid bur marigold|1
+(noun)|European beggar-ticks|trifid beggar-ticks|Bidens tripartita|bur marigold (generic term)|burr marigold (generic term)|beggar-ticks (generic term)|beggar's-ticks (generic term)|sticktight (generic term)
+trifle|6
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+(noun)|technicality|triviality|detail (generic term)|item (generic term)|point (generic term)
+(noun)|triviality|trivia|small beer|object (generic term)|physical object (generic term)
+(verb)|piddle|wanton|wanton away|piddle away|spend (generic term)|pass (generic term)
+(verb)|frivol|act (generic term)|behave (generic term)|do (generic term)
+(verb)|dally|play|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+trifle away|1
+(verb)|wanton|wanton away|spend (generic term)|expend (generic term)|drop (generic term)
+trifler|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+trifling|2
+(adj)|negligible|paltry|worthless (similar term)
+(noun)|dalliance|dawdling|delay (generic term)|holdup (generic term)
+trifluoromethane|1
+(noun)|fluoroform|haloform (generic term)
+trifoliata|1
+(noun)|trifoliate orange|wild orange|Poncirus trifoliata|tree (generic term)
+trifoliate|1
+(adj)|trifoliolate|trifoliated|compound (similar term)
+trifoliate orange|1
+(noun)|trifoliata|wild orange|Poncirus trifoliata|tree (generic term)
+trifoliated|1
+(adj)|trifoliate|trifoliolate|compound (similar term)
+trifoliolate|1
+(adj)|trifoliate|trifoliated|compound (similar term)
+trifoliolate leaf|1
+(noun)|compound leaf (generic term)
+trifolium|1
+(noun)|Trifolium|genus Trifolium|rosid dicot genus (generic term)
+trifolium alpinum|1
+(noun)|alpine clover|Trifolium alpinum|clover (generic term)|trefoil (generic term)
+trifolium dubium|1
+(noun)|hop clover|shamrock|lesser yellow trefoil|Trifolium dubium|clover (generic term)|trefoil (generic term)
+trifolium incarnatum|1
+(noun)|crimson clover|Italian clover|Trifolium incarnatum|clover (generic term)|trefoil (generic term)
+trifolium pratense|1
+(noun)|red clover|purple clover|Trifolium pratense|clover (generic term)|trefoil (generic term)
+trifolium reflexum|1
+(noun)|buffalo clover|Trifolium reflexum|Trifolium stoloniferum|clover (generic term)|trefoil (generic term)
+trifolium repens|1
+(noun)|white clover|dutch clover|shamrock|Trifolium repens|clover (generic term)|trefoil (generic term)
+trifolium stoloniferum|1
+(noun)|buffalo clover|Trifolium reflexum|Trifolium stoloniferum|clover (generic term)|trefoil (generic term)
+trifurcate|1
+(verb)|branch (generic term)|ramify (generic term)|fork (generic term)|furcate (generic term)|separate (generic term)
+trifurcation|1
+(noun)|branching (generic term)|ramification (generic term)|fork (generic term)|forking (generic term)
+trig|2
+(adj)|clean-cut|trim|tidy (similar term)
+(noun)|trigonometry|pure mathematics (generic term)
+triga|1
+(noun)|Triga|genus Triga|fish genus (generic term)
+trigeminal|1
+(noun)|trigeminal nerve|trigeminus|nervus trigeminus|fifth cranial nerve|cranial nerve (generic term)
+trigeminal nerve|1
+(noun)|trigeminal|trigeminus|nervus trigeminus|fifth cranial nerve|cranial nerve (generic term)
+trigeminal neuralgia|1
+(noun)|tic douloureux|neuralgia (generic term)|neuralgy (generic term)
+trigeminus|1
+(noun)|trigeminal|trigeminal nerve|nervus trigeminus|fifth cranial nerve|cranial nerve (generic term)
+trigger|4
+(noun)|gun trigger|lever (generic term)
+(noun)|device (generic term)
+(noun)|induction|initiation|causing (generic term)|causation (generic term)
+(verb)|trip|actuate|activate|set off|spark off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+trigger-happy|2
+(adj)|irresponsible (similar term)
+(adj)|fierce|tearing|vehement|violent|intense (similar term)
+trigger off|1
+(verb)|trip|actuate|trigger|activate|set off|spark off|spark|touch off|initiate (generic term)|pioneer (generic term)
+triggerfish|1
+(noun)|plectognath (generic term)|plectognath fish (generic term)
+triggerman|1
+(noun)|gunman|gunslinger|hired gun|gun|gun for hire|hit man|hitman|torpedo|shooter|murderer (generic term)|liquidator (generic term)|manslayer (generic term)
+trigla lucerna|1
+(noun)|tub gurnard|yellow gurnard|Trigla lucerna|gurnard (generic term)
+triglidae|1
+(noun)|Triglidae|family Triglidae|fish family (generic term)
+triglinae|1
+(noun)|Triglinae|subfamily Triglinae|fish family (generic term)
+triglochin|1
+(noun)|Triglochin|genus Triglochin|monocot genus (generic term)|liliopsid genus (generic term)
+triglochin maritima|1
+(noun)|arrow grass|Triglochin maritima|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+triglyceride|1
+(noun)|lipid (generic term)|lipide (generic term)|lipoid (generic term)|glyceride (generic term)|acylglycerol (generic term)
+trigon|3
+(noun)|triangle|trilateral|polygon (generic term)|polygonal shape (generic term)
+(noun)|triplicity|trio (generic term)|triad (generic term)|triplet (generic term)|triple (generic term)
+(noun)|lyre (generic term)
+trigonal|1
+(adj)|rhombohedral|symmetrical (similar term)|symmetric (similar term)
+trigonella|1
+(noun)|Trigonella|genus Trigonella|rosid dicot genus (generic term)
+trigonella foenumgraecum|1
+(noun)|fenugreek|Greek clover|Trigonella foenumgraecum|herb (generic term)|herbaceous plant (generic term)
+trigonella ornithopodioides|1
+(noun)|bird's foot trefoil|Trigonella ornithopodioides|herb (generic term)|herbaceous plant (generic term)
+trigonometric|1
+(adj)|pure mathematics (related term)
+trigonometric function|1
+(noun)|circular function|function (generic term)|mathematical function (generic term)
+trigonometrician|1
+(noun)|mathematician (generic term)
+trigonometry|1
+(noun)|trig|pure mathematics (generic term)
+trigonum cerebrale|1
+(noun)|fornix|fiber bundle (generic term)|fibre bundle (generic term)|fascicle (generic term)|fasciculus (generic term)
+trigram|1
+(noun)|written word (generic term)
+trihydroxy|1
+(adj)|group|radical|chemical group (related term)
+triiodomethane|1
+(noun)|iodoform|antiseptic (generic term)
+triiodothyronine|1
+(noun)|liothyronine|T|thyroid hormone (generic term)
+trike|1
+(noun)|tricycle|velocipede|wheeled vehicle (generic term)
+trilateral|3
+(adj)|triangular|tripartite|three-party|three-way|multilateral (similar term)|many-sided (similar term)
+(adj)|triangular|three-sided|multilateral (similar term)|many-sided (similar term)
+(noun)|triangle|trigon|polygon (generic term)|polygonal shape (generic term)
+trilby|2
+(noun)|Trilby|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|fedora|felt hat|homburg|Stetson|hat (generic term)|chapeau (generic term)|lid (generic term)
+trilingual|1
+(adj)|multilingual (similar term)
+trilisa|1
+(noun)|Trilisa|genus Trilisa|asterid dicot genus (generic term)
+trilisa odoratissima|1
+(noun)|wild vanilla|Trilisa odoratissima|herb (generic term)|herbaceous plant (generic term)
+trill|4
+(noun)|shake|note (generic term)|musical note (generic term)|tone (generic term)
+(noun)|articulation (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|warble|quaver|sing (generic term)
+trilled|1
+(adj)|rolled|rolling|pronounceable (similar term)
+trilliaceae|1
+(noun)|Trilliaceae|family Trilliaceae|trillium family|liliid monocot family (generic term)
+trilling|1
+(noun)|Trilling|Lionel Trilling|literary critic (generic term)
+trillion|4
+(adj)|cardinal (similar term)
+(noun)|million|billion|zillion|jillion|large indefinite quantity (generic term)|large indefinite amount (generic term)
+(noun)|one million million million|large integer (generic term)
+(noun)|one million million|1000000000000|large integer (generic term)
+trillion floating point operations per second|1
+(noun)|teraflop|unit of measurement (generic term)|unit (generic term)
+trillionth|2
+(adj)|ordinal (similar term)
+(noun)|one-trillionth|common fraction (generic term)|simple fraction (generic term)
+trillium|1
+(noun)|wood lily|wake-robin|liliaceous plant (generic term)
+trillium erectum|1
+(noun)|purple trillium|red trillium|birthroot|Trillium erectum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+trillium family|1
+(noun)|Trilliaceae|family Trilliaceae|liliid monocot family (generic term)
+trillium recurvatum|1
+(noun)|prairie wake-robin|prairie trillium|Trillium recurvatum|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+trillium sessile|1
+(noun)|red trillium|toadshade|sessile trillium|Trillium sessile|trillium (generic term)|wood lily (generic term)|wake-robin (generic term)
+trilobate|1
+(adj)|trilobated|trilobed|three-lobed|compound (similar term)
+trilobated|1
+(adj)|trilobate|trilobed|three-lobed|compound (similar term)
+trilobed|1
+(adj)|trilobate|trilobated|three-lobed|compound (similar term)
+trilobite|1
+(noun)|arthropod (generic term)
+trilogy|1
+(noun)|trio (generic term)|triad (generic term)|triplet (generic term)|triple (generic term)
+trim|17
+(adj)|spare|thin (similar term)|lean (similar term)
+(adj)|shipshape|well-kept|tidy (similar term)
+(adj)|clean-cut|trig|tidy (similar term)
+(adj)|tailored|plain (similar term)
+(noun)|trimness|neatness (generic term)|spruceness (generic term)
+(noun)|trimming|passementerie|adornment (generic term)
+(noun)|attitude (generic term)
+(noun)|trimming|clipping|cut (generic term)|cutting (generic term)|cutting off (generic term)
+(verb)|pare|cut (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|reduce|cut down|cut back|trim down|trim back|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+(verb)|balance (generic term)|equilibrate (generic term)|equilibrize (generic term)|equilibrise (generic term)
+(verb)|be (generic term)
+(verb)|garnish|dress|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|snip|clip|crop|lop|dress|prune|cut back|thin out (generic term)
+(verb)|shave|cut (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+trim back|1
+(verb)|reduce|cut down|cut back|trim|trim down|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+trim down|1
+(verb)|reduce|cut down|cut back|trim|trim back|cut|bring down|decrease (generic term)|lessen (generic term)|minify (generic term)
+trimaran|1
+(noun)|sailboat (generic term)|sailing boat (generic term)
+trimer|1
+(noun)|polymer (generic term)
+trimester|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|school term (generic term)|academic term (generic term)|academic session (generic term)|session (generic term)
+trimipramine|1
+(noun)|Surmontil|tricyclic (generic term)|tricyclic antidepressant (generic term)|tricyclic antidepressant drug (generic term)
+trimmed|1
+(adj)|cut|clipped (similar term)|untrimmed (antonym)
+trimmer|4
+(noun)|pruner|worker (generic term)
+(noun)|machine (generic term)
+(noun)|trimming capacitor|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+(noun)|trimmer joist|joist (generic term)
+trimmer arch|1
+(noun)|arch (generic term)
+trimmer joist|1
+(noun)|trimmer|joist (generic term)
+trimming|3
+(noun)|decoration (generic term)
+(noun)|trim|passementerie|adornment (generic term)
+(noun)|trim|clipping|cut (generic term)|cutting (generic term)|cutting off (generic term)
+trimming capacitor|1
+(noun)|trimmer|capacitor (generic term)|capacitance (generic term)|condenser (generic term)|electrical condenser (generic term)
+trimmings|1
+(noun)|fixings|accessory (generic term)|appurtenance (generic term)|supplement (generic term)|add-on (generic term)
+trimness|1
+(noun)|trim|neatness (generic term)|spruceness (generic term)
+trimorphodon|1
+(noun)|Trimorphodon|genus Trimorphodon|reptile genus (generic term)
+trimorphodon lambda|1
+(noun)|Sonoran lyre snake|Trimorphodon lambda|lyre snake (generic term)
+trimotored|1
+(adj)|motorized (similar term)|motorised (similar term)|motored (similar term)
+trimox|1
+(noun)|amoxicillin|Amoxil|Larotid|Polymox|Trimox|Augmentin|penicillin (generic term)
+trimurti|1
+(noun)|Trimurti|trio (generic term)|triad (generic term)|triplet (generic term)|triple (generic term)
+trine|1
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+trine immersion|1
+(noun)|immersion (generic term)
+trinectes|1
+(noun)|Trinectes|genus Trinectes|fish genus (generic term)
+trinectes maculatus|1
+(noun)|hogchoker|Trinectes maculatus|sole (generic term)
+tringa|1
+(noun)|Tringa|genus Tringa|bird genus (generic term)
+tringa flavipes|1
+(noun)|lesser yellowlegs|Tringa flavipes|yellowlegs (generic term)
+tringa melanoleuca|1
+(noun)|greater yellowlegs|Tringa melanoleuca|yellowlegs (generic term)
+tringa nebularia|1
+(noun)|greenshank|Tringa nebularia|sandpiper (generic term)
+tringa totanus|1
+(noun)|redshank|Tringa totanus|sandpiper (generic term)
+trinidad|1
+(noun)|Trinidad|island (generic term)
+trinidad and tobago|1
+(noun)|Trinidad and Tobago|Republic of Trinidad and Tobago|country (generic term)|state (generic term)|land (generic term)
+trinidad and tobago dollar|1
+(noun)|Trinidad and Tobago dollar|dollar (generic term)
+trinidadian|2
+(adj)|Trinidadian|island (related term)
+(noun)|Trinidadian|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+trinil man|1
+(noun)|Java man|Trinil man|Homo erectus (generic term)
+trinitarian|1
+(noun)|Trinitarian|disciple (generic term)|adherent (generic term)
+trinitarianism|1
+(noun)|Trinitarianism|Protestantism (generic term)
+trinitroglycerin|1
+(noun)|nitroglycerin|nitroglycerine|glyceryl trinitrate|Nitrospan|Nitrostat|nitrate (generic term)|vasodilator (generic term)|vasodilative (generic term)
+trinitrotoluene|1
+(noun)|TNT|explosive compound (generic term)
+trinity|3
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|Trinity|Holy Trinity|Blessed Trinity|Sacred Trinity|Godhead (generic term)|Lord (generic term)|Creator (generic term)|Maker (generic term)|Divine (generic term)|God Almighty (generic term)|Almighty (generic term)|Jehovah (generic term)
+(noun)|trio|threesome|triad|gathering (generic term)|assemblage (generic term)
+trinity river|1
+(noun)|Trinity River|river (generic term)
+trinity sunday|1
+(noun)|Trinity Sunday|Christian holy day (generic term)
+trinket|1
+(noun)|bangle|bauble|gaud|gewgaw|novelty|fallal|adornment (generic term)
+trinketry|1
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+trinuclear|1
+(adj)|trinucleate|trinucleated|mononuclear (antonym)|binucleate (antonym)
+trinucleate|1
+(adj)|trinuclear|trinucleated|mononuclear (antonym)|binucleate (antonym)
+trinucleated|1
+(adj)|trinucleate|trinuclear|mononuclear (antonym)|binucleate (antonym)
+trio|5
+(noun)|three|3|III|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+(noun)|musical organization (generic term)|musical organisation (generic term)|musical group (generic term)
+(noun)|triad|triplet|triple|set (generic term)
+(noun)|threesome|triad|trinity|gathering (generic term)|assemblage (generic term)
+triode|1
+(noun)|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+triolein|1
+(noun)|olein|glyceryl ester (generic term)
+trionychidae|1
+(noun)|Trionychidae|family Trionychidae|reptile family (generic term)
+trionyx|1
+(noun)|Trionyx|genus Trionyx|reptile genus (generic term)
+trionyx muticus|1
+(noun)|smooth softshell|Trionyx muticus|soft-shelled turtle (generic term)|pancake turtle (generic term)
+trionyx spiniferus|1
+(noun)|spiny softshell|Trionyx spiniferus|soft-shelled turtle (generic term)|pancake turtle (generic term)
+triopidae|1
+(noun)|Triopidae|family Triopidae|arthropod family (generic term)
+triops|1
+(noun)|Triops|genus Triops|arthropod genus (generic term)
+triose|1
+(noun)|monosaccharide (generic term)|monosaccharose (generic term)|simple sugar (generic term)
+triostium|1
+(noun)|Triostium|genus Triostium|asterid dicot genus (generic term)
+triostium perfoliatum|1
+(noun)|feverroot|horse gentian|tinker's root|wild coffee|Triostium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+trioxide|1
+(noun)|oxide (generic term)
+trip|12
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|hallucination (generic term)
+(noun)|slip|mishap (generic term)|misadventure (generic term)|mischance (generic term)
+(noun)|head trip|experience (generic term)
+(noun)|tripper|catch (generic term)|stop (generic term)
+(noun)|step (generic term)
+(noun)|trip-up|stumble|misstep|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+(verb)|stumble|move (generic term)
+(verb)|trip up
+(verb)|travel|jaunt
+(verb)|actuate|trigger|activate|set off|spark off|spark|trigger off|touch off|initiate (generic term)|pioneer (generic term)
+(verb)|trip out|turn on|get off
+trip-up|1
+(noun)|trip|stumble|misstep|blunder (generic term)|blooper (generic term)|bloomer (generic term)|bungle (generic term)|pratfall (generic term)|foul-up (generic term)|fuckup (generic term)|flub (generic term)|botch (generic term)|boner (generic term)|boo-boo (generic term)
+trip line|1
+(noun)|rope (generic term)
+trip out|1
+(verb)|trip|turn on|get off
+trip the light fantastic|1
+(verb)|dance|trip the light fantastic toe|move (generic term)
+trip the light fantastic toe|1
+(verb)|dance|trip the light fantastic|move (generic term)
+trip up|3
+(verb)|catch|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)
+(verb)|trip
+(verb)|stumble|slip up|err (generic term)|mistake (generic term)|slip (generic term)
+trip wire|2
+(noun)|military unit (generic term)|military force (generic term)|military group (generic term)|force (generic term)
+(noun)|wire (generic term)
+tripalmitin|1
+(noun)|glycerol tripalmitate|glyceryl ester (generic term)
+tripartite|1
+(adj)|triangular|trilateral|three-party|three-way|multilateral (similar term)|many-sided (similar term)
+tripe|2
+(noun)|variety meat (generic term)|organs (generic term)
+(noun)|folderol|rubbish|trumpery|trash|wish-wash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+triphammer|1
+(noun)|hammer (generic term)|power hammer (generic term)
+triphosphopyridine|1
+(noun)|pyridine (generic term)
+triphosphopyridine nucleotide|1
+(noun)|coenzyme (generic term)
+triphosphoric acid|1
+(noun)|acid (generic term)
+tripinnate|1
+(adj)|tripinnated|compound (similar term)
+tripinnated|1
+(adj)|tripinnate|compound (similar term)
+tripinnatifid|1
+(adj)|compound (similar term)
+triple|7
+(adj)|ternary|treble|triplex|multiple (similar term)
+(adj)|treble|threefold|three-fold|multiple (similar term)
+(noun)|three-base hit|three-bagger|base hit (generic term)|safety (generic term)
+(noun)|trio|triad|triplet|set (generic term)
+(noun)|multiple (generic term)
+(verb)|treble|multiply (generic term)|manifold (generic term)
+(verb)|hit (generic term)
+triple-crown|1
+(adj)|successful (similar term)
+triple-crown season|1
+(noun)|baseball season (generic term)
+triple-decker|1
+(noun)|club sandwich|three-decker|sandwich (generic term)
+triple-space|1
+(verb)|type (generic term)|typewrite (generic term)
+triple-spacing|1
+(noun)|typing (generic term)|typewriting (generic term)
+triple-tongue|1
+(verb)|double tongue|tongue (generic term)
+triple cream|1
+(noun)|triple creme|cheese (generic term)
+triple creme|1
+(noun)|triple cream|cheese (generic term)
+triple crown|1
+(noun)|championship (generic term)|title (generic term)
+triple frontier|1
+(noun)|Triple Frontier|frontier (generic term)
+triple jump|1
+(noun)|hop-step-and-jump|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+triple play|1
+(noun)|baseball play (generic term)
+triple sec|1
+(noun)|orange liqueur (generic term)
+triple time|1
+(noun)|musical time (generic term)
+triplet|3
+(noun)|three|3|III|trio|threesome|tierce|leash|troika|triad|trine|trinity|ternary|ternion|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|sibling (generic term)|sib (generic term)
+(noun)|trio|triad|triple|set (generic term)
+triplet code|1
+(noun)|genetic code (generic term)
+tripletail|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+tripleurospermum|1
+(noun)|Tripleurospermum|genus Tripleurospermum|asterid dicot genus (generic term)
+tripleurospermum inodorum|1
+(noun)|scentless camomile|scentless false camomile|scentless mayweed|scentless hayweed|corn mayweed|Tripleurospermum inodorum|Matricaria inodorum|herb (generic term)|herbaceous plant (generic term)
+tripleurospermum oreades tchihatchewii|1
+(noun)|turfing daisy|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb (generic term)|herbaceous plant (generic term)
+tripleurospermum tchihatchewii|1
+(noun)|turfing daisy|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb (generic term)|herbaceous plant (generic term)
+triplex|1
+(adj)|ternary|treble|triple|multiple (similar term)
+triplicate|2
+(noun)|copy (generic term)
+(verb)|reproduce (generic term)
+triplicity|2
+(noun)|trigon|trio (generic term)|triad (generic term)|triplet (generic term)|triple (generic term)
+(noun)|magnitude (generic term)
+tripling|1
+(noun)|multiplication (generic term)
+triplochiton|1
+(noun)|Triplochiton|genus Triplochiton|dilleniid dicot genus (generic term)
+triplochiton scleroxcylon|1
+(noun)|obeche|obechi|arere|samba|Triplochiton scleroxcylon|tree (generic term)
+triploid|1
+(adj)|polyploid (similar term)
+tripod|1
+(noun)|rack (generic term)|stand (generic term)
+tripoli|3
+(noun)|rottenstone|limestone (generic term)
+(noun)|Tripoli|Tarabulus Al-Gharb|capital of Libya|national capital (generic term)
+(noun)|Tarabulus|Tripoli|Tarabulus Ash-Sham|Trablous|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+tripos|1
+(noun)|examination (generic term)|exam (generic term)|test (generic term)
+tripper|4
+(noun)|drug user (generic term)|substance abuser (generic term)|user (generic term)
+(noun)|stumbler|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|sightseer|excursionist|rubberneck|tourist (generic term)|tourer (generic term)|holidaymaker (generic term)
+(noun)|trip|catch (generic term)|stop (generic term)
+tripping|2
+(adj)|lilting|swinging|swingy|rhythmical (similar term)|rhythmic (similar term)
+(adj)|light|lightsome|light-footed (similar term)
+trippingly|1
+(adv)|lightsomely
+triptych|1
+(noun)|art (generic term)|fine art (generic term)
+triquetral|1
+(noun)|triquetral bone|os triquetrum|cuneiform bone|pyramidal bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+triquetral bone|1
+(noun)|triquetral|os triquetrum|cuneiform bone|pyramidal bone|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+triquetrous leek|1
+(noun)|three-cornered leek|Allium triquetrum|alliaceous plant (generic term)
+trireme|1
+(noun)|galley (generic term)
+trisaccharide|1
+(noun)|oligosaccharide (generic term)
+trisect|1
+(verb)|cut (generic term)
+triskaidekaphobia|1
+(noun)|simple phobia (generic term)
+triskaidekaphobic|1
+(adj)|afraid (similar term)
+triskele|1
+(noun)|triskelion|design (generic term)|pattern (generic term)|figure (generic term)
+triskelion|1
+(noun)|triskele|design (generic term)|pattern (generic term)|figure (generic term)
+trismus|1
+(noun)|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+trisodium orthophosphate|1
+(noun)|trisodium phosphate|tribasic sodium phosphate|builder (generic term)|detergent builder (generic term)
+trisodium phosphate|1
+(noun)|trisodium orthophosphate|tribasic sodium phosphate|builder (generic term)|detergent builder (generic term)
+trisomy|1
+(noun)|chromosomal aberration (generic term)|chromosomal anomaly (generic term)|chrosomal abnormality (generic term)|chromosonal disorder (generic term)
+trisomy 21|1
+(noun)|mongolism|mongolianism|Down's syndrome|Down syndrome|trisomy (generic term)|birth defect (generic term)|congenital anomaly (generic term)|congenital defect (generic term)|congenital disorder (generic term)|congenital abnormality (generic term)
+tristan|1
+(noun)|Tristan|Tristram|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+tristan tzara|1
+(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet (generic term)
+tristearin|1
+(noun)|glycerol tristearate|glyceryl ester (generic term)
+tristram|1
+(noun)|Tristan|Tristram|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+trisyllable|1
+(noun)|word (generic term)
+tritanopia|1
+(noun)|blue-blindness|yellow-blue dichromacy (generic term)|yellow-blue color blindness (generic term)
+tritanopic|1
+(adj)|blue-blind|blind (similar term)|unsighted (similar term)
+trite|1
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|well-worn|unoriginal (similar term)
+triteness|1
+(noun)|staleness|unoriginality (generic term)
+tritheism|1
+(noun)|polytheism (generic term)|heresy (generic term)|unorthodoxy (generic term)
+tritheist|1
+(noun)|religious person (generic term)
+triticum|1
+(noun)|Triticum|genus Triticum|monocot genus (generic term)|liliopsid genus (generic term)
+triticum aestivum|1
+(noun)|common wheat|Triticum aestivum|wheat (generic term)
+triticum aestivum spelta|1
+(noun)|spelt|Triticum spelta|Triticum aestivum spelta|wheat (generic term)
+triticum dicoccum|1
+(noun)|emmer|starch wheat|two-grain spelt|Triticum dicoccum|wheat (generic term)
+triticum dicoccum dicoccoides|1
+(noun)|wild wheat|wild emmer|Triticum dicoccum dicoccoides|wheat (generic term)
+triticum durum|1
+(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat (generic term)
+triticum spelta|1
+(noun)|spelt|Triticum spelta|Triticum aestivum spelta|wheat (generic term)
+triticum turgidum|1
+(noun)|durum|durum wheat|hard wheat|Triticum durum|Triticum turgidum|macaroni wheat|wheat (generic term)
+tritium|1
+(noun)|hydrogen (generic term)|H (generic term)|atomic number 1 (generic term)
+tritoma|1
+(noun)|kniphofia|flame flower|flame-flower|flameflower|herb (generic term)|herbaceous plant (generic term)
+triton|4
+(noun)|Triton|Greek deity (generic term)
+(noun)|Triton|moon (generic term)
+(noun)|seasnail (generic term)
+(noun)|newt|salamander (generic term)
+triturus|1
+(noun)|Triturus|genus Triturus|amphibian genus (generic term)
+triturus vulgaris|1
+(noun)|common newt|Triturus vulgaris|newt (generic term)|triton (generic term)
+triumph|6
+(noun)|victory|ending (generic term)|conclusion (generic term)|finish (generic term)|success (generic term)|defeat (antonym)
+(noun)|exultation (generic term)|jubilance (generic term)|jubilancy (generic term)|jubilation (generic term)
+(verb)|prevail|win (generic term)
+(verb)|wallow|rejoice|exult (generic term)|walk on air (generic term)|be on cloud nine (generic term)|jump for joy (generic term)
+(verb)|gloat|crow|boast (generic term)|tout (generic term)|swash (generic term)|shoot a line (generic term)|brag (generic term)|gas (generic term)|blow (generic term)|bluster (generic term)|vaunt (generic term)|gasconade (generic term)
+(verb)|exuberate|exult|rejoice|jubilate|cheer (generic term)|cheer up (generic term)|chirk up (generic term)
+triumphal|2
+(adj)|ending|conclusion|finish|success (related term)
+(adj)|exultant|exulting|jubilant|prideful|rejoicing|triumphant|elated (similar term)
+triumphal arch|1
+(noun)|arch (generic term)|memorial (generic term)|monument (generic term)
+triumphant|2
+(adj)|exultant|exulting|jubilant|prideful|rejoicing|triumphal|elated (similar term)
+(adj)|victorious|undefeated (similar term)
+triumvir|1
+(noun)|administrator (generic term)|executive (generic term)
+triumvirate|1
+(noun)|trio (generic term)|threesome (generic term)|triad (generic term)|trinity (generic term)
+triune|1
+(adj)|multiple (similar term)
+trivalent|1
+(adj)|power|powerfulness (related term)
+trivalent live oral poliomyelitis vaccine|1
+(noun)|Sabin vaccine|oral poliovirus vaccine|OPV|TOPV|poliovirus vaccine (generic term)
+trivet|1
+(noun)|base (generic term)|pedestal (generic term)|stand (generic term)
+trivia|1
+(noun)|triviality|trifle|small beer|object (generic term)|physical object (generic term)
+trivial|5
+(adj)|fiddling|footling|lilliputian|little|niggling|piddling|piffling|petty|picayune|unimportant (similar term)
+(adj)|ordinary (similar term)
+(adj)|superficial|insignificant (similar term)|unimportant (similar term)
+(adj)|frivolous (similar term)
+(adj)|insignificant|inconsiderable (similar term)
+trivialise|1
+(verb)|trivialize|understate (generic term)|minimize (generic term)|minimise (generic term)|downplay (generic term)
+triviality|3
+(noun)|pettiness|slightness|puniness|unimportance (generic term)
+(noun)|technicality|trifle|detail (generic term)|item (generic term)|point (generic term)
+(noun)|trivia|trifle|small beer|object (generic term)|physical object (generic term)
+trivialize|1
+(verb)|trivialise|understate (generic term)|minimize (generic term)|minimise (generic term)|downplay (generic term)
+trivium|1
+(noun)|humanistic discipline (generic term)|humanities (generic term)|liberal arts (generic term)|arts (generic term)
+trm|1
+(noun)|transmission time|TRM|coordinated universal time (generic term)|UTC (generic term)
+trna|1
+(noun)|transfer RNA|tRNA|acceptor RNA|soluble RNA|ribonucleic acid (generic term)|RNA (generic term)
+troat|1
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+trochaic|1
+(adj)|metrical foot|foot|metrical unit (related term)
+trochanter|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+troche|1
+(noun)|cough drop|pastille|pastil|lozenge (generic term)
+trochee|1
+(noun)|metrical foot (generic term)|foot (generic term)|metrical unit (generic term)
+trochilidae|1
+(noun)|Trochilidae|family Trochilidae|bird family (generic term)
+trochlear|1
+(noun)|trochlear nerve|trochlearis|fourth cranial nerve|cranial nerve (generic term)
+trochlear nerve|1
+(noun)|trochlear|trochlearis|fourth cranial nerve|cranial nerve (generic term)
+trochlearis|1
+(noun)|trochlear|trochlear nerve|fourth cranial nerve|cranial nerve (generic term)
+trodden|1
+(adj)|trampled|damaged (similar term)
+trofim denisovich lysenko|1
+(noun)|Lysenko|Trofim Denisovich Lysenko|geneticist (generic term)
+trogium|1
+(noun)|Trogium|genus Trogium|arthropod genus (generic term)
+trogium pulsatorium|1
+(noun)|common booklouse|Trogium pulsatorium|booklouse (generic term)|book louse (generic term)|deathwatch (generic term)|Liposcelis divinatorius (generic term)
+troglodyte|2
+(noun)|hermit|recluse|solitary|solitudinarian|loner (generic term)|lone wolf (generic term)|lone hand (generic term)
+(noun)|caveman|cave man|cave dweller|primitive (generic term)|primitive person (generic term)
+troglodytes|1
+(noun)|Troglodytes|genus Troglodytes|bird genus (generic term)
+troglodytes aedon|1
+(noun)|house wren|Troglodytes aedon|wren (generic term)|jenny wren (generic term)
+troglodytes troglodytes|1
+(noun)|winter wren|Troglodytes troglodytes|wren (generic term)|jenny wren (generic term)
+troglodytidae|1
+(noun)|Troglodytidae|family Troglodytidae|bird family (generic term)
+trogon|1
+(noun)|bird (generic term)
+trogonidae|1
+(noun)|Trogonidae|family Trogonidae|bird family (generic term)
+trogoniformes|1
+(noun)|Trogoniformes|order Trogoniformes|animal order (generic term)
+troika|3
+(noun)|carriage (generic term)|equipage (generic term)|rig (generic term)
+(noun)|three|3|III|trio|threesome|tierce|leash|triad|trine|trinity|ternary|ternion|triplet|tercet|terzetto|trey|deuce-ace|digit (generic term)|figure (generic term)
+(noun)|triumvirate (generic term)
+trojan|3
+(adj)|Trojan|city|metropolis|urban center (related term)
+(noun)|Trojan|Dardan|Dardanian|Asian (generic term)|Asiatic (generic term)
+(noun)|trojan horse|malevolent program (generic term)
+trojan horse|3
+(noun)|fifth column|Trojan horse|unit (generic term)|social unit (generic term)
+(noun)|trojan|malevolent program (generic term)
+(noun)|Trojan Horse|Wooden Horse|figure (generic term)
+trojan war|1
+(noun)|Trojan War|war (generic term)|warfare (generic term)
+troll|10
+(noun)|mythical monster (generic term)|mythical creature (generic term)
+(noun)|round|partsong (generic term)
+(noun)|fisherman's lure (generic term)|fish lure (generic term)
+(noun)|trolling|angling (generic term)
+(verb)|circle (generic term)|circulate (generic term)
+(verb)|wheel (generic term)|roll (generic term)
+(verb)|angle (generic term)
+(verb)|sing (generic term)
+(verb)|praise (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+troller|1
+(noun)|angler|fisherman (generic term)|fisher (generic term)
+trolley|1
+(noun)|streetcar|tram|tramcar|trolley car|self-propelled vehicle (generic term)
+trolley car|1
+(noun)|streetcar|tram|tramcar|trolley|self-propelled vehicle (generic term)
+trolley coach|1
+(noun)|trolleybus|trackless trolley|bus (generic term)|autobus (generic term)|coach (generic term)|charabanc (generic term)|double-decker (generic term)|jitney (generic term)|motorbus (generic term)|motorcoach (generic term)|omnibus (generic term)|passenger vehicle (generic term)
+trolley line|1
+(noun)|transit line (generic term)
+trolleybus|1
+(noun)|trolley coach|trackless trolley|bus (generic term)|autobus (generic term)|coach (generic term)|charabanc (generic term)|double-decker (generic term)|jitney (generic term)|motorbus (generic term)|motorcoach (generic term)|omnibus (generic term)|passenger vehicle (generic term)
+trolling|1
+(noun)|troll|angling (generic term)
+trollius|1
+(noun)|Trollius|genus Trollius|magnoliid dicot genus (generic term)
+trollop|2
+(noun)|slattern|slut|slovenly woman|slob (generic term)|sloven (generic term)|pig (generic term)|slovenly person (generic term)
+(noun)|adulteress|fornicatress|hussy|jade|loose woman|slut|strumpet|adulterer (generic term)|fornicator (generic term)
+trollope|1
+(noun)|Trollope|Anthony Trollope|writer (generic term)|author (generic term)
+trombicula|1
+(noun)|Trombicula|genus Trombicula|arthropod genus (generic term)
+trombiculiasis|1
+(noun)|infestation (generic term)
+trombiculidae|1
+(noun)|Trombiculidae|family Trombiculidae|arthropod family (generic term)
+trombiculiid|1
+(noun)|mite (generic term)
+trombidiid|1
+(noun)|mite (generic term)
+trombidiidae|1
+(noun)|Trombidiidae|family Trombidiidae|arthropod family (generic term)
+trombone|1
+(noun)|brass (generic term)|brass instrument (generic term)
+trombone player|1
+(noun)|trombonist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+trombonist|1
+(noun)|trombone player|musician (generic term)|instrumentalist (generic term)|player (generic term)
+trompe-l'oeil|1
+(adj)|eye-deceiving|unreal (similar term)
+trompe l'oeil|1
+(noun)|painting (generic term)|picture (generic term)
+trompillo|1
+(noun)|white horse nettle|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+trondheim|1
+(noun)|Trondheim|Nidaros|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+trondheim fiord|1
+(noun)|Trondheim Fjord|Trondheim Fiord|fjord (generic term)|fiord (generic term)
+trondheim fjord|1
+(noun)|Trondheim Fjord|Trondheim Fiord|fjord (generic term)|fiord (generic term)
+troop|5
+(noun)|army unit (generic term)
+(noun)|scout troop|scout group|unit (generic term)|social unit (generic term)
+(noun)|flock|crowd (generic term)
+(verb)|parade|promenade|march (generic term)|process (generic term)
+(verb)|march (generic term)
+troop carrier|1
+(noun)|troop transport|military vehicle (generic term)
+troop movement|1
+(noun)|movement (generic term)
+troop transport|1
+(noun)|troop carrier|military vehicle (generic term)
+trooper|3
+(noun)|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|state trooper|policeman (generic term)|police officer (generic term)|officer (generic term)
+(noun)|cavalryman|soldier (generic term)
+troops|1
+(noun)|military personnel|soldiery|force (generic term)|personnel (generic term)
+troopship|1
+(noun)|ship (generic term)|troop carrier (generic term)|troop transport (generic term)
+tropaeolaceae|1
+(noun)|Tropaeolaceae|family Tropaeolaceae|nasturtium family|rosid dicot family (generic term)
+tropaeolum|1
+(noun)|Tropaeolum|genus Tropaeolum|rosid dicot genus (generic term)
+tropaeolum majus|1
+(noun)|garden nasturtium|Indian cress|Tropaeolum majus|nasturtium (generic term)
+tropaeolum minus|1
+(noun)|bush nasturtium|Tropaeolum minus|nasturtium (generic term)
+tropaeolum peregrinum|1
+(noun)|canarybird flower|canarybird vine|canary creeper|Tropaeolum peregrinum|nasturtium (generic term)
+trope|1
+(noun)|figure of speech|figure|image|rhetorical device (generic term)
+trophic|1
+(adj)|organic process|biological process (related term)
+trophobiosis|1
+(noun)|symbiosis (generic term)|mutualism (generic term)
+trophoblast|1
+(noun)|membrane (generic term)|tissue layer (generic term)
+trophoblastic|1
+(adj)|membrane|tissue layer (related term)
+trophoblastic cancer|1
+(noun)|carcinoma (generic term)
+trophotropic|1
+(adj)|tropism (related term)
+trophotropism|1
+(noun)|tropism (generic term)
+trophozoite|1
+(noun)|sporozoan (generic term)
+trophy|2
+(noun)|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+(noun)|prize|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+trophy case|1
+(noun)|case (generic term)|display case (generic term)|showcase (generic term)|vitrine (generic term)
+trophy wife|1
+(noun)|wife (generic term)|married woman (generic term)
+tropic|3
+(adj)|tropical|equatorial (similar term)
+(adj)|tropical|hot (similar term)
+(noun)|latitude (generic term)|line of latitude (generic term)|parallel of latitude (generic term)|parallel (generic term)
+tropic bird|1
+(noun)|tropicbird|boatswain bird|pelecaniform seabird (generic term)
+tropic of cancer|1
+(noun)|Tropic of Cancer|tropic (generic term)
+tropic of capricorn|1
+(noun)|Tropic of Capricorn|tropic (generic term)
+tropical|4
+(adj)|tropic|equatorial (similar term)
+(adj)|latitude|line of latitude|parallel of latitude|parallel (related term)
+(adj)|figurative (similar term)|nonliteral (similar term)
+(adj)|tropic|hot (similar term)
+tropical medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+tropical pitcher plant|1
+(noun)|pitcher plant (generic term)
+tropical prawn|1
+(noun)|decapod crustacean (generic term)|decapod (generic term)
+tropical rain forest|1
+(noun)|selva|rain forest (generic term)|rainforest (generic term)
+tropical sore|1
+(noun)|cutaneous leishmaniasis|Old World leishmaniasis|oriental sore|Delhi boil|Aleppo boil|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+tropical sprue|1
+(noun)|sprue|disorder (generic term)|upset (generic term)
+tropical year|1
+(noun)|solar year|astronomical year|equinoctial year|year (generic term)
+tropical zone|1
+(noun)|Torrid Zone|tropics|climatic zone (generic term)
+tropicbird|1
+(noun)|tropic bird|boatswain bird|pelecaniform seabird (generic term)
+tropics|1
+(noun)|Torrid Zone|tropical zone|climatic zone (generic term)
+tropidoclonion|1
+(noun)|Tropidoclonion|genus Tropidoclonion|reptile genus (generic term)
+tropidoclonion lineatum|1
+(noun)|lined snake|Tropidoclonion lineatum|colubrid snake (generic term)|colubrid (generic term)
+tropism|1
+(noun)|reaction (generic term)|response (generic term)
+troponomy|1
+(noun)|troponymy|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+troponym|1
+(noun)|manner name|word (generic term)
+troponymy|2
+(noun)|semantic relation (generic term)
+(noun)|troponomy|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+tropopause|1
+(noun)|layer (generic term)
+troposphere|1
+(noun)|layer (generic term)
+trot|7
+(noun)|jog|lope|locomotion (generic term)|travel (generic term)
+(noun)|Trotskyite|Trotskyist|Trot|radical (generic term)
+(noun)|pony|crib|translation (generic term)|interlingual rendition (generic term)|rendering (generic term)|version (generic term)
+(noun)|gait (generic term)
+(verb)|jog|clip|run (generic term)
+(verb)|ride horseback (generic term)
+(verb)|walk (generic term)
+trot out|1
+(verb)|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+troth|2
+(noun)|betrothal|engagement|promise (generic term)
+(noun)|plight|assurance (generic term)|pledge (generic term)
+trotline|1
+(noun)|trawl|trawl line|spiller|setline|fishing line (generic term)
+trotsky|1
+(noun)|Trotsky|Leon Trotsky|Lev Davidovich Bronstein|Bolshevik (generic term)|Bolshevist (generic term)|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+trotskyism|1
+(noun)|Trotskyism|communism (generic term)
+trotskyist|1
+(noun)|Trotskyite|Trotskyist|Trot|radical (generic term)
+trotskyite|1
+(noun)|Trotskyite|Trotskyist|Trot|radical (generic term)
+trotter|2
+(noun)|animal foot (generic term)|foot (generic term)
+(noun)|trotting horse|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+trotting horse|1
+(noun)|trotter|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+trou-de-loup|1
+(noun)|pit (generic term)|quarry (generic term)|stone pit (generic term)
+troubadour|1
+(noun)|folk singer|jongleur|minstrel|poet-singer|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+trouble|11
+(noun)|problem|difficulty (generic term)
+(noun)|fuss|bother|hassle|perturbation (generic term)|disturbance (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|difficulty|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+(noun)|worry|anxiety (generic term)
+(noun)|pregnancy (generic term)|gestation (generic term)|maternity (generic term)
+(verb)|disturb|upset|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|put out|inconvenience|disoblige|discommode|incommode|bother|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|perturb|unhinge|disquiet|cark|distract|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+(verb)|trouble oneself|bother|inconvenience oneself|strive (generic term)|reach (generic term)|strain (generic term)
+(verb)|afflict|ail|pain|hurt (generic term)
+trouble-free|1
+(adj)|untroubled (similar term)
+trouble-shoot|1
+(verb)|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+trouble maker|1
+(noun)|troublemaker|troubler|mischief-maker|bad hat|unwelcome person (generic term)|persona non grata (generic term)
+trouble oneself|1
+(verb)|trouble|bother|inconvenience oneself|strive (generic term)|reach (generic term)|strain (generic term)
+trouble shooter|1
+(noun)|troubleshooter|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+troubled|2
+(adj)|annoyed (similar term)|harassed (similar term)|harried (similar term)|pestered (similar term)|vexed (similar term)|anxious (similar term)|nervous (similar term)|queasy (similar term)|uneasy (similar term)|unquiet (similar term)|buffeted (similar term)|storm-tossed (similar term)|tempest-tossed (similar term)|tempest-tost (similar term)|tempest-swept (similar term)|careful (similar term)|care-laden (similar term)|heavy-laden (similar term)|clouded (similar term)|disquieted (similar term)|distressed (similar term)|disturbed (similar term)|upset (similar term)|worried (similar term)|distressed (similar term)|hard-pressed (similar term)|hard put (similar term)|in a bad way (similar term)|fraught (similar term)|hag-ridden (similar term)|hagridden (similar term)|tormented (similar term)|haunted (similar term)|in Dutch (similar term)|infested (similar term)|overrun (similar term)|plagued (similar term)|in trouble (similar term)|mothy (similar term)|stressed (similar term)|distressed (similar term)|in a bad way (similar term)|struggling (similar term)|suffering (similar term)|troublous (similar term)|concerned (related term)|unquiet (related term)|untroubled (antonym)
+(adj)|disruptive|riotous|tumultuous|turbulent|unquiet (similar term)
+troublemaker|1
+(noun)|trouble maker|troubler|mischief-maker|bad hat|unwelcome person (generic term)|persona non grata (generic term)
+troubler|1
+(noun)|troublemaker|trouble maker|mischief-maker|bad hat|unwelcome person (generic term)|persona non grata (generic term)
+troubleshooter|1
+(noun)|trouble shooter|repairman (generic term)|maintenance man (generic term)|service man (generic term)
+troublesome|1
+(adj)|difficult (similar term)|hard (similar term)
+troublesomeness|1
+(noun)|inconvenience|worriment|difficulty (generic term)|difficultness (generic term)
+troubling|1
+(adj)|distressing|distressful|disturbing|perturbing|worrisome|worrying|heavy (similar term)
+troublous|1
+(adj)|troubled (similar term)
+trough|6
+(noun)|natural depression (generic term)|depression (generic term)
+(noun)|gutter|channel (generic term)
+(noun)|bowl|concave shape (generic term)|concavity (generic term)|incurvation (generic term)|incurvature (generic term)
+(noun)|public treasury|till|treasury (generic term)|exchequer (generic term)
+(noun)|receptacle (generic term)
+(noun)|manger|container (generic term)
+trounce|3
+(verb)|flog|welt|whip|lather|lash|slash|strap|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|beat|beat out|crush|shell|vanquish|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+(verb)|call on the carpet|take to task|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 (generic term)|criticize (generic term)|criticise (generic term)|pick apart (generic term)
+trouncing|2
+(noun)|thrashing|walloping|debacle|drubbing|slaughter|whipping|defeat (generic term)|licking (generic term)
+(noun)|beating|thrashing|licking|drubbing|lacing|whacking|corporal punishment (generic term)
+troupe|1
+(noun)|company|organization (generic term)|organisation (generic term)
+trouper|2
+(noun)|good person (generic term)
+(noun)|barnstormer|playactor|play-actor|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+trouser|2
+(noun)|pant|garment (generic term)
+(noun)|garment (generic term)
+trouser clip|1
+(noun)|bicycle clip|clip (generic term)
+trouser cuff|1
+(noun)|cuff (generic term)|turnup (generic term)
+trouser leg|1
+(noun)|pant leg|leg (generic term)
+trouser press|1
+(noun)|pants presser|home appliance (generic term)|household appliance (generic term)
+trousered|1
+(adj)|breeched|pantalooned|clothed (similar term)|clad (similar term)
+trousering|1
+(noun)|panting|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+trousseau|1
+(noun)|outfit (generic term)|getup (generic term)|rig (generic term)|turnout (generic term)
+trout|2
+(noun)|fish (generic term)
+(noun)|salmonid (generic term)|food fish (generic term)
+trout-like|1
+(adj)|troutlike|animal (similar term)
+trout lily|1
+(noun)|yellow adder's tongue|amberbell|Erythronium americanum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+troutlike|1
+(adj)|trout-like|animal (similar term)
+trove|1
+(noun)|treasure trove|treasure (generic term)|hoarded wealth (generic term)
+trowel|2
+(noun)|hand tool (generic term)
+(verb)|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+troy|2
+(noun)|troy weight|system of weights (generic term)|weight (generic term)
+(noun)|Troy|Ilion|Ilium|city (generic term)|metropolis (generic term)|urban center (generic term)
+troy ounce|1
+(noun)|ounce|apothecaries' ounce|apothecaries' unit (generic term)|apothecaries' weight (generic term)|troy unit (generic term)
+troy pound|1
+(noun)|apothecaries' pound|apothecaries' unit (generic term)|apothecaries' weight (generic term)|troy unit (generic term)
+troy unit|1
+(noun)|weight unit (generic term)|weight (generic term)
+troy weight|1
+(noun)|troy|system of weights (generic term)|weight (generic term)
+truancy|1
+(noun)|hooky|nonattendance (generic term)
+truant|3
+(adj)|awol|absent (similar term)
+(noun)|hooky player|absentee (generic term)
+(noun)|no-show|nonattender|wrongdoer (generic term)|offender (generic term)
+truce|1
+(noun)|armistice|cease-fire|peace (generic term)
+truck|3
+(noun)|motortruck|motor vehicle (generic term)|automotive vehicle (generic term)
+(noun)|hand truck|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+(verb)|transport (generic term)
+truck bed|1
+(noun)|floor (generic term)|flooring (generic term)
+truck dealer|1
+(noun)|dealer (generic term)
+truck driver|1
+(noun)|teamster|trucker|driver (generic term)
+truck farm|1
+(noun)|truck garden|farm (generic term)
+truck farming|1
+(noun)|farming (generic term)|agriculture (generic term)|husbandry (generic term)
+truck garden|1
+(noun)|truck farm|farm (generic term)
+truck stop|1
+(noun)|service station (generic term)
+truck traffic|1
+(noun)|vehicular traffic (generic term)|vehicle traffic (generic term)
+truckage|2
+(noun)|fee (generic term)
+(noun)|hauling|trucking|transportation (generic term)|shipping (generic term)|transport (generic term)
+trucker|1
+(noun)|teamster|truck driver|driver (generic term)
+trucking|1
+(noun)|hauling|truckage|transportation (generic term)|shipping (generic term)|transport (generic term)
+trucking company|1
+(noun)|shipping company (generic term)
+trucking industry|1
+(noun)|industry (generic term)
+trucking rig|1
+(noun)|trailer truck|tractor trailer|rig|articulated lorry|semi|truck (generic term)|motortruck (generic term)
+truckle|3
+(noun)|trundle bed|trundle|truckle bed|bed (generic term)
+(verb)|yield (generic term)|relent (generic term)|soften (generic term)
+(verb)|fawn|toady|bootlick|kowtow|kotow|suck up|flatter (generic term)|blandish (generic term)
+truckle bed|1
+(noun)|trundle bed|trundle|truckle|bed (generic term)
+truckler|1
+(noun)|apple polisher|bootlicker|fawner|groveller|groveler|ass-kisser|sycophant (generic term)|toady (generic term)|crawler (generic term)|lackey (generic term)
+truckling|1
+(noun)|obedience (generic term)|obeisance (generic term)
+truculence|1
+(noun)|truculency|aggressiveness (generic term)|belligerence (generic term)|pugnacity (generic term)
+truculency|1
+(noun)|truculence|aggressiveness (generic term)|belligerence (generic term)|pugnacity (generic term)
+truculent|1
+(adj)|aggressive (similar term)
+trudge|2
+(noun)|hike (generic term)|hiking (generic term)|tramp (generic term)
+(verb)|slog|footslog|plod|pad|tramp|walk (generic term)
+trudger|1
+(noun)|plodder|slogger|pedestrian (generic term)|walker (generic term)|footer (generic term)
+true|15
+(adj)|actual (similar term)|genuine (similar term)|literal (similar term)|real (similar term)|apodictic (similar term)|apodeictic (similar term)|truthful (similar term)|sure (similar term)|correct (related term)|right (related term)|faithful (related term)|genuine (related term)|echt (related term)|honest (related term)|honorable (related term)|sincere (related term)|false (antonym)
+(adj)|typical (similar term)
+(adj)|dead on target|accurate (similar term)
+(adj)|faithful (similar term)
+(adj)|truthful|honest (similar term)|veracious (similar term)|honest (similar term)|untruthful (antonym)
+(adj)|dependable|honest|reliable|trustworthy (similar term)|trusty (similar term)
+(adj)|genuine|unfeigned|sincere (similar term)
+(adj)|real (similar term)
+(adj)|geographic (similar term)|geographical (similar term)
+(adj)|lawful|rightful|legitimate (similar term)
+(adj)|on-key|harmonious (similar term)
+(adj)|straight|even (similar term)
+(noun)|alignment (generic term)
+(verb)|true up|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+(adv)|admittedly|avowedly|confessedly
+true-blue|1
+(adj)|loyal (similar term)
+true-false|1
+(adj)|multiple-choice (antonym)
+true-to-life|1
+(adj)|true to life|realistic (similar term)
+true anomaly|1
+(noun)|angular distance (generic term)
+true bacteria|1
+(noun)|eubacteria|eubacterium|bacteria (generic term)|bacterium (generic term)|moneran (generic term)|moneron (generic term)
+true bill|1
+(noun)|indictment (generic term)|bill of indictment (generic term)
+true blackberry|1
+(noun)|Rubus fruticosus|blackberry (generic term)|blackberry bush (generic term)
+true bug|1
+(noun)|hemipterous insect (generic term)|bug (generic term)|hemipteran (generic term)|hemipteron (generic term)
+true cat|1
+(noun)|cat|feline (generic term)|felid (generic term)
+true cedar|1
+(noun)|cedar|cedar tree|conifer (generic term)|coniferous tree (generic term)
+true dwarf|1
+(noun)|primordial dwarf|hypoplastic dwarf|normal dwarf|dwarf (generic term)|midget (generic term)|nanus (generic term)
+true fir|1
+(noun)|fir|fir tree|conifer (generic term)|coniferous tree (generic term)
+true flycatcher|1
+(noun)|Old World flycatcher|flycatcher|oscine (generic term)|oscine bird (generic term)
+true frog|1
+(noun)|ranid|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+true fungus|1
+(noun)|fungus (generic term)
+true glottis|1
+(noun)|rima glottidis|rima vocalis|glottis vera|rima (generic term)
+true guava|1
+(noun)|guava|guava bush|Psidium guajava|fruit tree (generic term)
+true heath|1
+(noun)|erica|heath (generic term)
+true jasmine|1
+(noun)|common jasmine|jessamine|Jasminum officinale|jasmine (generic term)
+true laurel|1
+(noun)|bay|bay laurel|bay tree|Laurus nobilis|laurel (generic term)
+true lobster|1
+(noun)|lobster (generic term)
+true lover's knot|2
+(noun)|love knot|lovers' knot|lover's knot|true lovers' knot|knot (generic term)
+(noun)|fisherman's knot|truelove knot|knot (generic term)
+true lovers' knot|1
+(noun)|love knot|lovers' knot|lover's knot|true lover's knot|knot (generic term)
+true mahogany|1
+(noun)|Cuban mahogany|Dominican mahogany|Swietinia mahogani|mahogany (generic term)|mahogany tree (generic term)
+true marmoset|1
+(noun)|marmoset (generic term)
+true pepper|1
+(noun)|pepper vine|vine (generic term)
+true pine|1
+(noun)|pine|pine tree|conifer (generic term)|coniferous tree (generic term)
+true puffball|1
+(noun)|puffball|fungus (generic term)
+true rib|1
+(noun)|rib (generic term)|costa (generic term)
+true sago palm|1
+(noun)|Metroxylon sagu|sago palm (generic term)
+true sandalwood|1
+(noun)|sandalwood tree|Santalum album|tree (generic term)
+true seal|1
+(noun)|earless seal|hair seal|seal (generic term)
+true senna|1
+(noun)|Alexandria senna|Alexandrian senna|tinnevelly senna|Indian senna|Senna alexandrina|Cassia acutifolia|Cassia augustifolia|senna (generic term)
+true slime mold|1
+(noun)|acellular slime mold|plasmodial slime mold|myxomycete|slime mold (generic term)|slime mould (generic term)
+true sparrow|1
+(noun)|sparrow|passerine (generic term)|passeriform bird (generic term)
+true statement|1
+(noun)|truth|statement (generic term)|falsehood (antonym)
+true to|1
+(adj)|faithful (similar term)
+true to life|1
+(adj)|true-to-life|realistic (similar term)
+true toad|1
+(noun)|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+true tulipwood|1
+(noun)|tulipwood|whitewood|white poplar|yellow poplar|wood (generic term)
+true up|1
+(verb)|true|align (generic term)|aline (generic term)|line up (generic term)|adjust (generic term)
+true vampire bat|1
+(noun)|vampire bat|carnivorous bat (generic term)|microbat (generic term)
+true vocal cord|1
+(noun)|true vocal fold|inferior vocal cord|inferior vocal fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+true vocal fold|1
+(noun)|true vocal cord|inferior vocal cord|inferior vocal fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+true warbler|1
+(noun)|Old World warbler|warbler (generic term)
+truehearted|1
+(adj)|firm|loyal|fast|faithful (similar term)
+truelove|1
+(noun)|sweetheart|sweetie|steady|lover (generic term)
+truelove knot|1
+(noun)|fisherman's knot|true lover's knot|knot (generic term)
+trueness|3
+(noun)|truth|the true|verity|actuality (generic term)|falsity (antonym)
+(noun)|loyalty|fidelity (generic term)|faithfulness (generic term)|disloyalty (antonym)
+(noun)|exactness (generic term)|exactitude (generic term)
+truffaut|1
+(noun)|Truffaut|Francois Truffaut|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+truffle|3
+(noun)|earthnut|earth-ball|fungus (generic term)
+(noun)|earthnut|vegetable (generic term)|veggie (generic term)
+(noun)|chocolate truffle|candy (generic term)|confect (generic term)
+truism|1
+(noun)|truth (generic term)|true statement (generic term)
+truly|4
+(adv)|genuinely|really
+(adv)|rightfully
+(adv)|sincerely|unfeignedly|insincerely (antonym)
+(adv)|in truth|really
+truman|1
+(noun)|Truman|Harry Truman|Harry S Truman|President Truman|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+truman doctrine|1
+(noun)|Truman doctrine|foreign policy (generic term)
+trumbo|1
+(noun)|Trumbo|Dalton Trumbo|screenwriter (generic term)|film writer (generic term)
+trumbull|3
+(noun)|Trumbull|Jonathan Trumbull|American Revolutionary leader (generic term)
+(noun)|Trumbull|John Trumbull|painter (generic term)
+(noun)|Trumbull|John Trumbull|poet (generic term)
+trump|7
+(noun)|trump card|playing card (generic term)
+(noun)|suit (generic term)
+(noun)|cornet|horn|trumpet|brass (generic term)|brass instrument (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|outdo|outflank|best|scoop|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|ruff|move (generic term)|go (generic term)
+(verb)|trump out|announce (generic term)|denote (generic term)
+trump card|1
+(noun)|trump|playing card (generic term)
+trump out|1
+(verb)|trump|announce (generic term)|denote (generic term)
+trump up|1
+(verb)|concoct|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+trumped-up|1
+(adj)|false (similar term)
+trumpery|2
+(noun)|folderol|rubbish|tripe|trash|wish-wash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+(noun)|folderal|falderol|frill|gimcrackery|gimcrack|nonsense|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+trumpet|4
+(noun)|cornet|horn|trump|brass (generic term)|brass instrument (generic term)
+(verb)|proclaim (generic term)|exclaim (generic term)|promulgate (generic term)
+(verb)|play (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+trumpet-like|1
+(adj)|loud (similar term)
+trumpet-shaped|1
+(adj)|formed (similar term)
+trumpet-wood|1
+(noun)|trumpetwood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+trumpet arch|1
+(noun)|squinch (generic term)
+trumpet creeper|1
+(noun)|trumpet vine|Campsis radicans|Bignoniaceae (generic term)|family Bignoniaceae (generic term)
+trumpet flower|3
+(noun)|chalice vine|cupflower|Solandra guttata|shrub (generic term)|bush (generic term)
+(noun)|cross vine|quartervine|quarter-vine|Bignonia capreolata|vine (generic term)
+(noun)|trumpet honeysuckle|coral honeysuckle|trumpet vine|Lonicera sempervirens|honeysuckle (generic term)
+trumpet honeysuckle|1
+(noun)|coral honeysuckle|trumpet flower|trumpet vine|Lonicera sempervirens|honeysuckle (generic term)
+trumpet section|1
+(noun)|brass section (generic term)|brass (generic term)
+trumpet tree|1
+(noun)|trumpetwood|trumpet-wood|snake wood|imbauba|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+trumpet vine|2
+(noun)|trumpet creeper|Campsis radicans|Bignoniaceae (generic term)|family Bignoniaceae (generic term)
+(noun)|trumpet honeysuckle|coral honeysuckle|trumpet flower|Lonicera sempervirens|honeysuckle (generic term)
+trumpet weed|1
+(noun)|Joe-Pye weed|purple boneset|marsh milkweed|Eupatorium purpureum|herb (generic term)|herbaceous plant (generic term)
+trumpeter|4
+(noun)|cornetist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+(noun)|herald|messenger (generic term)|courier (generic term)
+(noun)|wading bird (generic term)|wader (generic term)
+(noun)|trumpeter swan|Cygnus buccinator|swan (generic term)
+trumpeter swan|1
+(noun)|trumpeter|Cygnus buccinator|swan (generic term)
+trumpetfish|1
+(noun)|Aulostomus maculatus|teleost fish (generic term)|teleost (generic term)|teleostan (generic term)
+trumpets|1
+(noun)|huntsman's horn|huntsman's horns|yellow trumpet|yellow pitcher plant|Sarracenia flava|pitcher plant (generic term)
+trumpetwood|1
+(noun)|trumpet-wood|trumpet tree|snake wood|imbauba|Cecropia peltata|angiospermous tree (generic term)|flowering tree (generic term)
+trumping|1
+(noun)|ruff|turn (generic term)|play (generic term)
+truncate|4
+(adj)|truncated|short (similar term)
+(verb)|substitute (generic term)|replace (generic term)
+(verb)|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|cut short|shorten (generic term)
+truncated|2
+(adj)|abbreviated|shortened|short (similar term)
+(adj)|truncate|short (similar term)
+truncated cone|1
+(noun)|frustum (generic term)
+truncated pyramid|1
+(noun)|frustum (generic term)
+truncation|3
+(noun)|shortness|lowness (generic term)
+(noun)|carving (generic term)|cutting (generic term)
+(noun)|shortening (generic term)
+truncation error|1
+(noun)|miscalculation (generic term)|misreckoning (generic term)|misestimation (generic term)
+truncheon|1
+(noun)|nightstick|baton|billy|billystick|billy club|club (generic term)
+truncocolumella|1
+(noun)|Truncocolumella|genus Truncocolumella|fungus genus (generic term)
+truncocolumella citrina|1
+(noun)|Truncocolumella citrina|false truffle (generic term)
+truncus atrioventricularis|1
+(noun)|atrioventricular bundle|bundle of His|atrioventricular trunk|cardiac muscle (generic term)|heart muscle (generic term)
+truncus celiacus|1
+(noun)|celiac trunk|celiac artery|arteria celiaca|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+truncus pulmonalis|1
+(noun)|pulmonary trunk|pulmonary artery (generic term)|arteria pulmonalis (generic term)
+trundle|3
+(noun)|trundle bed|truckle bed|truckle|bed (generic term)
+(noun)|wheel (generic term)|roller (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+trundle bed|1
+(noun)|trundle|truckle bed|truckle|bed (generic term)
+trunk|5
+(noun)|tree trunk|bole|stalk (generic term)|stem (generic term)
+(noun)|baggage (generic term)|luggage (generic term)
+(noun)|torso|body|body part (generic term)
+(noun)|luggage compartment|automobile trunk|compartment (generic term)
+(noun)|proboscis|snout (generic term)|neb (generic term)
+trunk call|1
+(noun)|long distance|long-distance call|call (generic term)|phone call (generic term)|telephone call (generic term)
+trunk hose|1
+(noun)|breeches (generic term)|knee breeches (generic term)|knee pants (generic term)|knickerbockers (generic term)|knickers (generic term)
+trunk lid|1
+(noun)|lid (generic term)
+trunk line|2
+(noun)|trunk route|line (generic term)|railway line (generic term)|rail line (generic term)
+(noun)|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+trunk road|1
+(noun)|highroad|highway (generic term)|main road (generic term)
+trunk route|1
+(noun)|trunk line|line (generic term)|railway line (generic term)|rail line (generic term)
+trunkfish|1
+(noun)|boxfish|plectognath (generic term)|plectognath fish (generic term)
+trunks|1
+(noun)|short pants|shorts|trouser (generic term)|pant (generic term)
+trunnel|1
+(noun)|treenail|trenail|peg (generic term)|nog (generic term)
+truss|6
+(noun)|bandage (generic term)|patch (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|corbel|bracket (generic term)
+(verb)|tie (generic term)|bind (generic term)
+(verb)|tie down|tie up|bind|restrain (generic term)|confine (generic term)|hold (generic term)
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+truss bridge|1
+(noun)|bridge (generic term)|span (generic term)
+trussed|1
+(adj)|tied|bound (similar term)
+trust|12
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+(noun)|reliance|certainty (generic term)
+(noun)|trustingness|trustfulness|trait (generic term)|distrust (antonym)
+(noun)|corporate trust|combine|cartel|consortium (generic term)|pool (generic term)|syndicate (generic term)
+(noun)|faith|belief (generic term)
+(noun)|confidence|friendship (generic term)|friendly relationship (generic term)
+(verb)|swear|rely|bank|believe (generic term)|mistrust (antonym)|distrust (antonym)
+(verb)|permit (generic term)|allow (generic term)|let (generic term)|countenance (generic term)
+(verb)|believe|expect (generic term)|anticipate (generic term)
+(verb)|hope|desire|wish (generic term)
+(verb)|entrust|intrust|confide|commit|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|sell (generic term)
+trust account|1
+(noun)|savings account trust|savings bank trust|trustee account|Totten trust|trust (generic term)
+trust busting|1
+(noun)|government (generic term)|governing (generic term)|governance (generic term)|government activity (generic term)
+trust company|1
+(noun)|trust corporation|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+trust corporation|1
+(noun)|trust company|financial institution (generic term)|financial organization (generic term)|financial organisation (generic term)
+trust deed|1
+(noun)|deed of trust|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+trust fund|1
+(noun)|fund (generic term)|monetary fund (generic term)
+trust territory|1
+(noun)|trusteeship|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+trustbuster|1
+(noun)|agent (generic term)|federal agent (generic term)
+trusted|1
+(adj)|sure|trustworthy (similar term)|trusty (similar term)
+trustee|2
+(noun)|legal guardian|fiduciary (generic term)
+(noun)|regent|committee member (generic term)
+trustee-beneficiary relation|1
+(noun)|fiduciary relation (generic term)
+trustee account|1
+(noun)|savings account trust|savings bank trust|trust account|Totten trust|trust (generic term)
+trusteeship|2
+(noun)|trust territory|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+trusteeship council|1
+(noun)|Trusteeship Council|TC|council (generic term)
+truster|1
+(noun)|believer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+trustful|1
+(adj)|trusting|confiding (similar term)|unsuspecting (similar term)|unsuspicious (similar term)|credulous (related term)|distrustful (antonym)
+trustfully|1
+(adv)|trustingly|confidingly|distrustfully (antonym)
+trustfulness|1
+(noun)|trust|trustingness|trait (generic term)|distrust (antonym)
+trustiness|1
+(noun)|trustworthiness|trait (generic term)|untrustiness (antonym)|untrustworthiness (antonym)
+trusting|1
+(adj)|trustful|confiding (similar term)|unsuspecting (similar term)|unsuspicious (similar term)|credulous (related term)|distrustful (antonym)
+trustingly|1
+(adv)|trustfully|confidingly|distrustfully (antonym)
+trustingness|1
+(noun)|trust|trustfulness|trait (generic term)|distrust (antonym)
+trustworthiness|1
+(noun)|trustiness|trait (generic term)|untrustiness (antonym)|untrustworthiness (antonym)
+trustworthy|2
+(adj)|trusty|authentic (similar term)|reliable (similar term)|creditworthy (similar term)|responsible (similar term)|dependable (similar term)|honest (similar term)|reliable (similar term)|true (similar term)|fiducial (similar term)|sure (similar term)|trusted (similar term)|faithful (related term)|honest (related term)|honorable (related term)|reliable (related term)|dependable (related term)|responsible (related term)|untrustworthy (antonym)
+(adj)|responsible (similar term)
+trusty|2
+(adj)|trustworthy|authentic (similar term)|reliable (similar term)|creditworthy (similar term)|responsible (similar term)|dependable (similar term)|honest (similar term)|reliable (similar term)|true (similar term)|fiducial (similar term)|sure (similar term)|trusted (similar term)|faithful (related term)|honest (related term)|honorable (related term)|reliable (related term)|dependable (related term)|responsible (related term)|untrustworthy (antonym)
+(noun)|convict (generic term)|con (generic term)|inmate (generic term)|jail bird (generic term)|jailbird (generic term)|gaolbird (generic term)|yard bird (generic term)|yardbird (generic term)
+truth|5
+(noun)|fact (generic term)
+(noun)|the true|verity|trueness|actuality (generic term)|falsity (antonym)
+(noun)|true statement|statement (generic term)|falsehood (antonym)
+(noun)|accuracy|quality (generic term)|inaccuracy (antonym)
+(noun)|Truth|Sojourner Truth|abolitionist (generic term)|emancipationist (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+truth drug|1
+(noun)|truth serum|intravenous anesthetic (generic term)
+truth quark|1
+(noun)|top quark|quark (generic term)
+truth serum|1
+(noun)|truth drug|intravenous anesthetic (generic term)
+truthful|2
+(adj)|true|honest (similar term)|veracious (similar term)|honest (similar term)|untruthful (antonym)
+(adj)|true (similar term)
+truthfully|1
+(adv)|untruthfully (antonym)
+truthfulness|1
+(noun)|honesty (generic term)|honestness (generic term)|untruthfulness (antonym)
+try|10
+(noun)|attempt|effort|endeavor|endeavour|activity (generic term)
+(verb)|seek|attempt|essay|assay|act (generic term)|move (generic term)|try out (related term)
+(verb)|test|prove|try out|examine|essay|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|judge|adjudicate|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|sample|try out|taste|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|hear|probe (generic term)|examine (generic term)
+(verb)|pain (generic term)|anguish (generic term)|hurt (generic term)
+(verb)|strain|stress|afflict (generic term)
+(verb)|render|melt (generic term)|run (generic term)|melt down (generic term)
+(verb)|try on|wear (generic term)|put on (generic term)|get into (generic term)|don (generic term)|assume (generic term)
+try-on|1
+(noun)|fitting|trying on|test (generic term)|trial (generic term)|run (generic term)
+try for|1
+(verb)|go for|compete (generic term)|vie (generic term)|contend (generic term)
+try on|1
+(verb)|try|wear (generic term)|put on (generic term)|get into (generic term)|don (generic term)|assume (generic term)
+try out|4
+(verb)|test|prove|try|examine|essay|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|experiment
+(verb)|audition|perform (generic term)
+(verb)|sample|try|taste|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+try square|1
+(noun)|square (generic term)
+trygve halvden lie|1
+(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat (generic term)|diplomatist (generic term)
+trygve lie|1
+(noun)|Lie|Trygve Lie|Trygve Halvden Lie|diplomat (generic term)|diplomatist (generic term)
+trying|2
+(adj)|difficult (similar term)|hard (similar term)
+(adj)|nerve-racking|nerve-wracking|stressful|disagreeable (similar term)
+trying on|1
+(noun)|fitting|try-on|test (generic term)|trial (generic term)|run (generic term)
+tryout|2
+(noun)|trial|trial run|test|experiment (generic term)|experimentation (generic term)
+(noun)|audition|test (generic term)|trial (generic term)|run (generic term)
+trypetidae|1
+(noun)|Trypetidae|family Trypetidae|Trephritidae|family Trephritidae|arthropod family (generic term)
+trypsin|1
+(noun)|enzyme (generic term)
+trypsinogen|1
+(noun)|trypsin (generic term)
+tryptophan|1
+(noun)|tryptophane|essential amino acid (generic term)
+tryptophane|1
+(noun)|tryptophan|essential amino acid (generic term)
+tryst|2
+(noun)|rendezvous|date (generic term)|appointment (generic term)|engagement (generic term)
+(noun)|assignation|rendezvous (generic term)
+tsa|1
+(noun)|Transportation Security Administration|TSA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+tsar|1
+(noun)|czar|tzar|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+tsarina|1
+(noun)|czarina|tzarina|czaritza|tsaritsa|female aristocrat (generic term)
+tsarist|1
+(adj)|czarist|czaristic|tsaristic|tzarist|tyrant|autocrat|despot (related term)
+tsaristic|1
+(adj)|czarist|czaristic|tsarist|tzarist|tyrant|autocrat|despot (related term)
+tsaritsa|1
+(noun)|czarina|tsarina|tzarina|czaritza|female aristocrat (generic term)
+tsaritsyn|1
+(noun)|Volgograd|Stalingrad|Tsaritsyn|city (generic term)|metropolis (generic term)|urban center (generic term)
+tsetse|1
+(noun)|tsetse fly|tzetze fly|tzetze|glossina|fly (generic term)
+tsetse fly|1
+(noun)|tsetse|tzetze fly|tzetze|glossina|fly (generic term)
+tsh|1
+(noun)|thyrotropin|thyrotropic hormone|thyrotrophin|thyrotrophic hormone|thyroid-stimulating hormone|TSH|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)
+tshiluba|1
+(noun)|Luba|Tshiluba|Bantu (generic term)|Bantoid language (generic term)
+tsimshian|1
+(noun)|Tsimshian|Penutian (generic term)
+tsine|1
+(noun)|banteng|banting|Bos banteng|ox (generic term)|wild ox (generic term)
+tsk|1
+(verb)|tut|tut-tut|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+tsoris|1
+(noun)|distress (generic term)|hurt (generic term)|suffering (generic term)
+tsouic|1
+(noun)|Tsouic|Formosan (generic term)
+tss|1
+(noun)|toxic shock|toxic shock syndrome|TSS|syndrome (generic term)
+tsuga|1
+(noun)|Tsuga|genus Tsuga|gymnosperm genus (generic term)
+tsuga canadensis|1
+(noun)|eastern hemlock|Canadian hemlock|spruce pine|Tsuga canadensis|hemlock (generic term)|hemlock tree (generic term)
+tsuga caroliniana|1
+(noun)|Carolina hemlock|Tsuga caroliniana|hemlock (generic term)|hemlock tree (generic term)
+tsuga heterophylla|1
+(noun)|western hemlock|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock (generic term)|hemlock tree (generic term)
+tsuga mertensiana|1
+(noun)|mountain hemlock|black hemlock|Tsuga mertensiana|hemlock (generic term)|hemlock tree (generic term)
+tsunami|1
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)|wave (generic term)|moving ridge (generic term)
+tsung dao lee|1
+(noun)|Lee|Tsung Dao Lee|nuclear physicist (generic term)
+tsuris|1
+(noun)|trouble (generic term)|difficulty (generic term)
+tsushima|1
+(noun)|Tsushima|naval battle (generic term)
+tsutsugamushi disease|1
+(noun)|scrub typhus|rickettsial disease (generic term)|rickettsiosis (generic term)
+tswana|2
+(noun)|Tswana|Bechuana|Batswana|Bantu (generic term)
+(noun)|Tswana|Setswana|Sechuana|Sotho (generic term)
+tt|3
+(noun)|terrestrial time|TT|terrestrial dynamical time|TDT|ephemeris time|time unit (generic term)|unit of time (generic term)
+(noun)|Palau|Republic of Palau|TT|country (generic term)|state (generic term)|land (generic term)
+(noun)|Micronesia|Federated States of Micronesia|TT|country (generic term)|state (generic term)|land (generic term)
+tuamotu archipelago|1
+(noun)|Tuamotu Archipelago|Paumotu Archipelago|Low Archipelago|archipelago (generic term)
+tuareg|2
+(noun)|Tuareg|African (generic term)
+(noun)|Tuareg|Berber (generic term)
+tuatara|1
+(noun)|Sphenodon punctatum|diapsid (generic term)|diapsid reptile (generic term)
+tuatha de|1
+(noun)|Tuatha De Danann|Tuatha De|Celtic deity (generic term)
+tuatha de danann|1
+(noun)|Tuatha De Danann|Tuatha De|Celtic deity (generic term)
+tub|3
+(noun)|bathtub|bathing tub|bath|vessel (generic term)
+(noun)|vat|vessel (generic term)
+(noun)|tubful|containerful (generic term)
+tub-cart|1
+(noun)|pony cart|ponycart|donkey cart|cart (generic term)
+tub-thumper|1
+(noun)|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)
+tub gurnard|1
+(noun)|yellow gurnard|Trigla lucerna|gurnard (generic term)
+tuba|1
+(noun)|bass horn|sousaphone|brass (generic term)|brass instrument (generic term)|bass (generic term)
+tuba root|1
+(noun)|derris root|Derris elliptica|vine (generic term)
+tubal|1
+(adj)|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+tubal ligation|1
+(noun)|ligation (generic term)|surgical contraception (generic term)
+tubal pregnancy|1
+(noun)|ectopic pregnancy (generic term)|extrauterine pregnancy (generic term)|ectopic gestation (generic term)|extrauterine gestation (generic term)|eccyesis (generic term)|metacyesis (generic term)
+tubbiness|1
+(noun)|chubbiness|pudginess|rolypoliness|plumpness (generic term)|embonpoint (generic term)|roundness (generic term)
+tubby|1
+(adj)|dumpy|podgy|pudgy|roly-poly|fat (similar term)
+tube|9
+(noun)|tubing|conduit (generic term)
+(noun)|vacuum tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device (generic term)
+(noun)|pipe|cylinder (generic term)
+(noun)|tube-shaped structure|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|metro|underground|subway system|subway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|ride (generic term)
+(verb)|envelop (generic term)|enfold (generic term)|enwrap (generic term)|wrap (generic term)|enclose (generic term)
+tube-nosed|1
+(adj)|nosed (similar term)
+tube-nosed bat|1
+(noun)|harpy|harpy bat|tube-nosed fruit bat|fruit bat (generic term)|megabat (generic term)
+tube-nosed fruit bat|1
+(noun)|harpy|harpy bat|tube-nosed bat|fruit bat (generic term)|megabat (generic term)
+tube-shaped|1
+(adj)|tubular|cannular|tubelike|vasiform|hollow (similar term)
+tube-shaped structure|1
+(noun)|tube|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+tube foot|1
+(noun)|foot (generic term)|invertebrate foot (generic term)
+tube well|1
+(noun)|driven well|well (generic term)
+tube wrench|1
+(noun)|pipe wrench|adjustable wrench (generic term)|adjustable spanner (generic term)
+tubed|1
+(adj)|tubeless (antonym)
+tubeless|2
+(adj)|tubed (antonym)
+(noun)|tubeless tire|pneumatic tire (generic term)|pneumatic tyre (generic term)
+tubeless tire|1
+(noun)|tubeless|pneumatic tire (generic term)|pneumatic tyre (generic term)
+tubelike|1
+(adj)|tubular|cannular|tube-shaped|vasiform|hollow (similar term)
+tuber|2
+(noun)|stalk (generic term)|stem (generic term)
+(noun)|Tuber|genus Tuber|fungus genus (generic term)
+tuber root|1
+(noun)|butterfly weed|orange milkweed|chigger flower|chiggerflower|pleurisy root|Indian paintbrush|Asclepias tuberosa|milkweed (generic term)|silkweed (generic term)
+tuberaceae|1
+(noun)|Tuberaceae|family Tuberaceae|fungus family (generic term)
+tuberales|1
+(noun)|Tuberales|order Tuberales|fungus order (generic term)
+tubercle|3
+(noun)|lesion (generic term)
+(noun)|nodule|plant process (generic term)|enation (generic term)
+(noun)|tuberosity|eminence|process (generic term)|outgrowth (generic term)|appendage (generic term)
+tubercle bacillus|1
+(noun)|Mycobacterium tuberculosis|mycobacteria (generic term)|mycobacterium (generic term)
+tubercular|5
+(adj)|lesion (related term)
+(adj)|process|outgrowth|appendage (related term)
+(adj)|infectious disease (related term)
+(adj)|tuberculous|ill (similar term)|sick (similar term)
+(noun)|consumptive|lunger|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+tubercularia|1
+(noun)|Tubercularia|genus Tubercularia|fungus genus (generic term)
+tuberculariaceae|1
+(noun)|Tuberculariaceae|family Tuberculariaceae|fungus family (generic term)
+tuberculate|1
+(adj)|plant process|enation (related term)
+tuberculin|1
+(noun)|liquid (generic term)
+tuberculin skin test|1
+(noun)|tuberculin test|skin test (generic term)
+tuberculin test|1
+(noun)|tuberculin skin test|skin test (generic term)
+tuberculoid|1
+(adj)|infectious disease (related term)
+tuberculoid leprosy|1
+(noun)|leprosy (generic term)|Hansen's disease (generic term)
+tuberculosis|1
+(noun)|TB|T.B.|infectious disease (generic term)
+tuberculous|1
+(adj)|tubercular|ill (similar term)|sick (similar term)
+tuberose|1
+(noun)|Polianthes tuberosa|flower (generic term)
+tuberosity|1
+(noun)|tubercle|eminence|process (generic term)|outgrowth (generic term)|appendage (generic term)
+tuberous|1
+(adj)|stalk|stem (related term)
+tuberous begonia|1
+(noun)|begonia (generic term)
+tuberous plant|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+tuberous vetch|1
+(noun)|heath pea|earth-nut pea|earthnut pea|Lathyrus tuberosus|vine (generic term)
+tubful|1
+(noun)|tub|containerful (generic term)
+tubing|1
+(noun)|tube|conduit (generic term)
+tubman|1
+(noun)|Tubman|Harriet Tubman|abolitionist (generic term)|emancipationist (generic term)
+tubocurarine|1
+(noun)|curare|alkaloid (generic term)|neuromuscular blocking agent (generic term)|plant toxin (generic term)|phytotoxin (generic term)
+tubuai islands|1
+(noun)|Tubuai Islands|Austral Islands|archipelago (generic term)
+tubular|1
+(adj)|cannular|tubelike|tube-shaped|vasiform|hollow (similar term)
+tubular cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+tubule|1
+(noun)|tube (generic term)|tube-shaped structure (generic term)
+tubulidentata|1
+(noun)|Tubulidentata|order Tubulidentata|animal order (generic term)
+tucana|1
+(noun)|Tucana|constellation (generic term)
+tuchman|1
+(noun)|Tuchman|Barbara Tuchman|Barbara Wertheim Tuchman|historian (generic term)|historiographer (generic term)
+tuck|7
+(noun)|comestible (generic term)|edible (generic term)|eatable (generic term)|pabulum (generic term)|victual (generic term)|victuals (generic term)
+(noun)|position (generic term)|posture (generic term)|attitude (generic term)
+(noun)|pleat (generic term)|plait (generic term)
+(noun)|rapier|sword (generic term)|blade (generic term)|brand (generic term)|steel (generic term)
+(verb)|insert|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+(verb)|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|gather|pucker|sew (generic term)|run up (generic term)|sew together (generic term)|stitch (generic term)
+tuck away|1
+(verb)|tuck in|put away|eat up (generic term)|finish (generic term)|polish off (generic term)
+tuck box|1
+(noun)|box (generic term)
+tuck in|1
+(verb)|tuck away|put away|eat up (generic term)|finish (generic term)|polish off (generic term)
+tuck shop|1
+(noun)|confectionery (generic term)|confectionary (generic term)|candy store (generic term)
+tuckahoe|1
+(noun)|green arrow arum|Peltandra virginica|arrow arum (generic term)
+tucked|1
+(adj)|untucked (antonym)
+tucker|5
+(noun)|Tucker|Benjamin Ricketson Tucker|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+(noun)|Tucker|Sophie Tucker|vaudevillian (generic term)|comedienne (generic term)
+(noun)|sewer (generic term)
+(noun)|yoke (generic term)
+(verb)|exhaust|wash up|beat|tucker out|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+tucker-bag|1
+(noun)|bag (generic term)
+tucker out|1
+(verb)|exhaust|wash up|beat|tucker|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+tucket|1
+(noun)|flourish|fanfare|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+tucson|1
+(noun)|Tucson|city (generic term)|metropolis (generic term)|urban center (generic term)
+tudor|4
+(adj)|Tudor|dynasty (related term)
+(noun)|Tudor|House of Tudor|dynasty (generic term)
+(noun)|Tudor|Antony Tudor|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+(noun)|Tudor|ruler (generic term)|swayer (generic term)
+tudor arch|1
+(noun)|Tudor arch|four-centered arch|arch (generic term)
+tudor architecture|1
+(noun)|Tudor architecture|perpendicular (generic term)|perpendicular style (generic term)|English-Gothic (generic term)|English-Gothic architecture (generic term)
+tudung|1
+(noun)|scarf (generic term)
+tues|1
+(noun)|Tuesday|Tues|weekday (generic term)
+tuesday|1
+(noun)|Tuesday|Tues|weekday (generic term)
+tufa|2
+(noun)|calc-tufa|rock (generic term)|stone (generic term)
+(noun)|tuff|volcanic rock (generic term)
+tuff|1
+(noun)|tufa|volcanic rock (generic term)
+tuffet|1
+(noun)|footstool|footrest|ottoman|stool (generic term)
+tuft|2
+(noun)|tussock|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+(noun)|crest (generic term)
+tufted|3
+(adj)|caespitose|cespitose|ungregarious (similar term)
+(adj)|adorned (similar term)|decorated (similar term)
+(adj)|crested|topknotted|adorned (similar term)|decorated (similar term)
+tufted centaury|1
+(noun)|Centaurium scilloides|centaury (generic term)
+tufted gentian|1
+(noun)|Gentianopsis holopetala|Gentiana holopetala|fringed gentian (generic term)
+tufted pansy|1
+(noun)|horned violet|Viola cornuta|viola (generic term)
+tufted puffin|1
+(noun)|Lunda cirrhata|puffin (generic term)
+tufted titmouse|1
+(noun)|Parus bicolor|titmouse (generic term)|tit (generic term)
+tufted vetch|1
+(noun)|bird vetch|Calnada pea|Vicia cracca|vetch (generic term)
+tug|9
+(noun)|jerk|pull (generic term)|pulling (generic term)
+(noun)|tugboat|towboat|tower|boat (generic term)
+(verb)|attract (generic term)|pull (generic term)|pull in (generic term)|draw (generic term)|draw in (generic term)
+(verb)|labor|labour|push|drive|fight (generic term)|struggle (generic term)|push on (related term)
+(verb)|tow (generic term)
+(verb)|lug|tote|transport (generic term)|carry (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+tug-of-war|2
+(noun)|conflict (generic term)|struggle (generic term)|battle (generic term)
+(noun)|athletic contest (generic term)|athletic competition (generic term)|athletics (generic term)
+tugboat|1
+(noun)|tug|towboat|tower|boat (generic term)
+tugela|1
+(noun)|Tugela|Tugela Falls|waterfall (generic term)|falls (generic term)
+tugela falls|1
+(noun)|Tugela|Tugela Falls|waterfall (generic term)|falls (generic term)
+tugger|1
+(noun)|puller|dragger|worker (generic term)
+tughrik|1
+(noun)|tugrik|Mongolian monetary unit (generic term)
+tugrik|1
+(noun)|tughrik|Mongolian monetary unit (generic term)
+tuileries|2
+(noun)|Tuileries|Tuileries Palace|palace (generic term)
+(noun)|Tuileries|Tuileries Gardens|formal garden (generic term)
+tuileries gardens|1
+(noun)|Tuileries|Tuileries Gardens|formal garden (generic term)
+tuileries palace|1
+(noun)|Tuileries|Tuileries Palace|palace (generic term)
+tuille|1
+(noun)|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+tuition|2
+(noun)|tuition fee|fee (generic term)
+(noun)|tutelage|tutorship|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+tuition fee|1
+(noun)|tuition|fee (generic term)
+tularaemia|1
+(noun)|tularemia|rabbit fever|deer fly fever|yatobyo|zoonosis (generic term)|zoonotic disease (generic term)
+tularemia|1
+(noun)|tularaemia|rabbit fever|deer fly fever|yatobyo|zoonosis (generic term)|zoonotic disease (generic term)
+tule tree|1
+(noun)|Ahuehuete|Tule tree|Montezuma cypress (generic term)|Mexican swamp cypress (generic term)|Taxodium mucronatum (generic term)
+tulestoma|1
+(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus (generic term)
+tulip|1
+(noun)|liliaceous plant (generic term)
+tulip bed|1
+(noun)|flowerbed (generic term)|flower bed (generic term)|bed of flowers (generic term)
+tulip gentian|1
+(noun)|prairie gentian|bluebell|Eustoma grandiflorum|wildflower (generic term)|wild flower (generic term)
+tulip orchid|1
+(noun)|Encyclia citrina|Cattleya citrina|orchid (generic term)|orchidaceous plant (generic term)
+tulip poplar|1
+(noun)|tulip tree|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree (generic term)|flowering tree (generic term)
+tulip tree|1
+(noun)|tulip poplar|yellow poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree (generic term)|flowering tree (generic term)
+tulipa|1
+(noun)|Tulipa|genus Tulipa|liliid monocot genus (generic term)
+tulipa armena|1
+(noun)|dwarf tulip|Tulipa armena|Tulipa suaveolens|tulip (generic term)
+tulipa clusiana|1
+(noun)|lady tulip|candlestick tulip|Tulipa clusiana|tulip (generic term)
+tulipa gesneriana|1
+(noun)|Tulipa gesneriana|tulip (generic term)
+tulipa suaveolens|1
+(noun)|dwarf tulip|Tulipa armena|Tulipa suaveolens|tulip (generic term)
+tulipwood|2
+(noun)|wood (generic term)
+(noun)|true tulipwood|whitewood|white poplar|yellow poplar|wood (generic term)
+tulipwood tree|1
+(noun)|tree (generic term)
+tulle|1
+(noun)|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+tully|1
+(noun)|Cicero|Marcus Tullius Cicero|Tully|orator (generic term)|speechmaker (generic term)|rhetorician (generic term)|public speaker (generic term)|speechifier (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+tulostoma|1
+(noun)|Tulostoma|genus Tulostoma|Tulestoma|genus Tulestoma|fungus genus (generic term)
+tulostomaceae|1
+(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family (generic term)
+tulostomataceae|1
+(noun)|Tulostomaceae|family Tulostomaceae|Tulostomataceae|family Tulostomataceae|fungus family (generic term)
+tulostomatales|1
+(noun)|Tulostomatales|order Tulostomatales|fungus order (generic term)
+tulsa|1
+(noun)|Tulsa|city (generic term)|metropolis (generic term)|urban center (generic term)
+tulu|2
+(noun)|Tulu|Dravidian (generic term)
+(noun)|Tulu|South Dravidian (generic term)
+tum|1
+(noun)|stomach|tummy|breadbasket|internal organ (generic term)|viscus (generic term)
+tumble|13
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+(noun)|spill|fall|slip (generic term)|trip (generic term)
+(verb)|topple|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+(verb)|topple|tip|push (generic term)|force (generic term)
+(verb)|roll over (generic term)
+(verb)|whirl|whirl around|move (generic term)
+(verb)|crumble|crumple|break down|collapse|change integrity (generic term)
+(verb)|scramble (generic term)|jumble (generic term)|throw together (generic term)
+(verb)|catch on|get wise|get onto|latch on|cotton on|twig|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+(verb)|drop (generic term)
+(verb)|toss (generic term)
+(verb)|worsen (generic term)|decline (generic term)
+(verb)|exercise (generic term)|work out (generic term)
+tumble-down|1
+(adj)|bedraggled|broken-down|derelict|dilapidated|ramshackle|tatterdemalion|damaged (similar term)
+tumble-dryer|1
+(noun)|tumble drier|clothes dryer (generic term)|clothes drier (generic term)
+tumble drier|1
+(noun)|tumble-dryer|clothes dryer (generic term)|clothes drier (generic term)
+tumble dry|1
+(verb)|dry (generic term)|dry out (generic term)
+tumble grass|1
+(noun)|witchgrass|witch grass|old witchgrass|old witch grass|Panicum capillare|panic grass (generic term)
+tumblebug|1
+(noun)|dung beetle (generic term)
+tumbler|4
+(noun)|gymnast (generic term)
+(noun)|glass (generic term)|drinking glass (generic term)
+(noun)|obstruction (generic term)|obstructor (generic term)|obstructer (generic term)|impediment (generic term)|impedimenta (generic term)
+(noun)|roller|tumbler pigeon|domestic pigeon (generic term)
+tumbler pigeon|1
+(noun)|roller|tumbler|domestic pigeon (generic term)
+tumbleweed|4
+(noun)|weed (generic term)
+(noun)|Russian thistle|Russian tumbleweed|Russian cactus|Salsola kali tenuifolia|shrub (generic term)|bush (generic term)
+(noun)|winged pigweed|Cycloloma atriplicifolium|shrub (generic term)|bush (generic term)
+(noun)|Amaranthus albus|Amaranthus graecizans|amaranth (generic term)
+tumbling|2
+(adj)|billowing|rolling|moving (similar term)
+(noun)|acrobatics|gymnastics (generic term)|gymanstic exercise (generic term)
+tumbrel|1
+(noun)|tumbril|dumpcart (generic term)
+tumbril|1
+(noun)|tumbrel|dumpcart (generic term)
+tumefaction|1
+(noun)|organic process (generic term)|biological process (generic term)
+tumefy|2
+(verb)|swell (generic term)
+(verb)|swell|swell up|intumesce|tumesce|expand (generic term)
+tumesce|1
+(verb)|swell|swell up|intumesce|tumefy|expand (generic term)
+tumescence|1
+(noun)|tumidity (generic term)|tumidness (generic term)
+tumescent|1
+(adj)|bloated|distended|puffed|puffy|swollen|intumescent|tumid|turgid|unhealthy (similar term)
+tumid|3
+(adj)|bombastic|declamatory|large|orotund|turgid|rhetorical (similar term)
+(adj)|bloated|distended|puffed|puffy|swollen|intumescent|tumescent|turgid|unhealthy (similar term)
+(adj)|erect|hard (similar term)
+tumidity|1
+(noun)|tumidness|swelling (generic term)|puffiness (generic term)|lump (generic term)
+tumidness|1
+(noun)|tumidity|swelling (generic term)|puffiness (generic term)|lump (generic term)
+tummy|2
+(noun)|pot|potbelly|bay window|corporation|belly (generic term)|paunch (generic term)
+(noun)|stomach|tum|breadbasket|internal organ (generic term)|viscus (generic term)
+tummy crunch|1
+(noun)|stomach exercise|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+tummy tuck|1
+(noun)|abdominoplasty|plastic surgery (generic term)|reconstructive surgery (generic term)|anaplasty (generic term)
+tumor|1
+(noun)|tumour|neoplasm|growth (generic term)
+tumor necrosis factor|1
+(noun)|tumour necrosis factor|TNF|cytokine (generic term)
+tumor virus|1
+(noun)|virus (generic term)
+tumour|1
+(noun)|tumor|neoplasm|growth (generic term)
+tumour necrosis factor|1
+(noun)|tumor necrosis factor|TNF|cytokine (generic term)
+tump over|2
+(verb)|overturn|tip over|turn over|upset|knock over|bowl over|move (generic term)|displace (generic term)
+(verb)|overturn|turn over|tip over|turn (generic term)
+tums|1
+(noun)|Tums|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+tumult|3
+(noun)|tumultuousness|uproar|garboil|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|turmoil|agitation (generic term)
+(noun)|commotion|din|ruction|ruckus|rumpus|disturbance (generic term)
+tumultuous|1
+(adj)|disruptive|riotous|troubled|turbulent|unquiet (similar term)
+tumultuous disturbance|1
+(noun)|outburst|disturbance (generic term)
+tumultuously|1
+(adv)|riotously
+tumultuousness|1
+(noun)|tumult|uproar|garboil|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+tumulus|1
+(noun)|burial mound|grave mound|barrow|mound (generic term)|hill (generic term)
+tun|1
+(noun)|barrel (generic term)|cask (generic term)
+tuna|4
+(noun)|Opuntia tuna|prickly pear (generic term)|prickly pear cactus (generic term)
+(noun)|tuna fish|tunny|saltwater fish (generic term)
+(noun)|tunny|scombroid (generic term)|scombroid fish (generic term)|food fish (generic term)
+(noun)|Anguilla sucklandii|eel (generic term)
+tuna-like|1
+(adj)|animal (similar term)
+tuna fish|1
+(noun)|tuna|tunny|saltwater fish (generic term)
+tuna fish salad|1
+(noun)|tuna salad|salad (generic term)
+tuna oil|1
+(noun)|fish-liver oil (generic term)|fish oil (generic term)
+tuna salad|1
+(noun)|tuna fish salad|salad (generic term)
+tunaburger|1
+(noun)|sandwich (generic term)
+tundra|1
+(noun)|plain (generic term)|field (generic term)|champaign (generic term)
+tundra soil|1
+(noun)|soil (generic term)|dirt (generic term)
+tundra swan|1
+(noun)|Cygnus columbianus|swan (generic term)
+tune|5
+(noun)|melody|air|strain|melodic line|line|melodic phrase|music (generic term)
+(noun)|pitch (generic term)
+(noun)|alteration (generic term)|modification (generic term)|adjustment (generic term)
+(verb)|tune up|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|tune up|adjust (generic term)|set (generic term)|correct (generic term)|untune (antonym)
+tune-up|2
+(noun)|warm-up|prolusion|preparation (generic term)|readying (generic term)
+(noun)|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+tune in|1
+(verb)|tune (generic term)|tune up (generic term)
+tune up|2
+(verb)|tune|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|tune|adjust (generic term)|set (generic term)|correct (generic term)|untune (antonym)
+tuned|3
+(adj)|attuned|adjusted (similar term)
+(adj)|attuned|keyed|adjusted (similar term)
+(adj)|tempered (similar term)
+tuneful|1
+(adj)|melodious|tuneless (antonym)
+tunefully|1
+(adv)|melodiously|unmelodiously (antonym)
+tunefulness|1
+(noun)|melodiousness|musicality (generic term)|musicalness (generic term)
+tuneless|1
+(adj)|untuneful|unmelodious|tuneful (antonym)
+tuner|2
+(noun)|piano tuner|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|radio receiver|receiving set|radio set|radio|wireless|receiver (generic term)|receiving system (generic term)
+tung|1
+(noun)|tung tree|tung-oil tree|Aleurites fordii|angiospermous tree (generic term)|flowering tree (generic term)
+tung-oil tree|1
+(noun)|tung tree|tung|Aleurites fordii|angiospermous tree (generic term)|flowering tree (generic term)
+tung oil|1
+(noun)|Chinese wood oil|oil (generic term)
+tung tree|1
+(noun)|tung|tung-oil tree|Aleurites fordii|angiospermous tree (generic term)|flowering tree (generic term)
+tunga|1
+(noun)|Tunga|genus Tunga|arthropod genus (generic term)
+tunga penetrans|1
+(noun)|chigoe|chigger|chigoe flea|Tunga penetrans|flea (generic term)
+tungstate|1
+(noun)|salt (generic term)
+tungsten|1
+(noun)|wolfram|W|atomic number 74|metallic element (generic term)|metal (generic term)
+tungsten steel|1
+(noun)|wolfram steel|alloy steel (generic term)
+tungstic acid|1
+(noun)|oxyacid (generic term)|oxygen acid (generic term)
+tungus|2
+(noun)|Tungus|Evenk|Tungusic (generic term)
+(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic (generic term)|Tungusic language (generic term)
+tungusic|2
+(noun)|Tungusic|Altaic (generic term)
+(noun)|Tungusic|Tungusic language|Altaic (generic term)|Altaic language (generic term)
+tungusic language|1
+(noun)|Tungusic|Tungusic language|Altaic (generic term)|Altaic language (generic term)
+tunguska|3
+(noun)|Tunguska|Stony Tunguska|river (generic term)
+(noun)|Tunguska|Lower Tunguska|river (generic term)
+(noun)|Angara|Angara River|Tunguska|Upper Tunguska|river (generic term)
+tunguz|1
+(noun)|Tungus|Tunguz|Evenki|Ewenki|Tungusic (generic term)|Tungusic language (generic term)
+tunic|2
+(noun)|tunica|adventitia|membrane (generic term)|tissue layer (generic term)
+(noun)|cloak (generic term)
+tunica|1
+(noun)|tunic|adventitia|membrane (generic term)|tissue layer (generic term)
+tunica albuginea testes|1
+(noun)|albuginea (generic term)
+tunica conjunctiva bulbi|1
+(noun)|bulbar conjunctiva|conjunctival layer of bulb|conjunctiva (generic term)
+tunica conjunctiva palpebrarum|1
+(noun)|palpebra conjunctiva|conjunctival layer of eyelids|conjunctiva (generic term)
+tunicata|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+tunicate|1
+(noun)|urochordate|urochord|chordate (generic term)
+tuning|1
+(noun)|calibration (generic term)|standardization (generic term)|standardisation (generic term)
+tuning fork|1
+(noun)|implement (generic term)
+tunis|1
+(noun)|Tunis|capital of Tunisia|national capital (generic term)|port (generic term)
+tunisia|1
+(noun)|Tunisia|Republic of Tunisia|African country (generic term)|African nation (generic term)
+tunisian|3
+(adj)|Tunisian|national capital|port (related term)
+(adj)|Tunisian|African country|African nation (related term)
+(noun)|Tunisian|African (generic term)
+tunisian dinar|1
+(noun)|Tunisian dinar|dinar|Tunisian monetary unit (generic term)
+tunisian dirham|1
+(noun)|Tunisian dirham|dirham|Tunisian monetary unit (generic term)
+tunisian monetary unit|1
+(noun)|Tunisian monetary unit|monetary unit (generic term)
+tunker|1
+(noun)|Dunker|Dunkard|Tunker|Baptist (generic term)
+tunnage|1
+(noun)|tonnage|tonnage duty|duty (generic term)|tariff (generic term)
+tunnel|4
+(noun)|passageway (generic term)
+(noun)|burrow|hole (generic term)|hollow (generic term)
+(verb)|burrow|dig (generic term)|delve (generic term)|cut into (generic term)|turn over (generic term)
+(verb)|penetrate (generic term)|perforate (generic term)
+tunnel vision|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+tunney|1
+(noun)|Tunney|Gene Tunney|James Joseph Tunney|prizefighter (generic term)|gladiator (generic term)
+tunny|2
+(noun)|tuna|tuna fish|saltwater fish (generic term)
+(noun)|tuna|scombroid (generic term)|scombroid fish (generic term)|food fish (generic term)
+tup|1
+(noun)|ram|sheep (generic term)
+tupac amaru revolutionary movement|1
+(noun)|Tupac Amaru Revolutionary Movement|Movimiento Revolucionario Tupac Anaru|MRTA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tupac katari guerrilla army|1
+(noun)|Tupac Katari Guerrilla Army|EGTK|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+tupaia|1
+(noun)|Tupaia|genus Tupaia|mammal genus (generic term)
+tupaiidae|1
+(noun)|Tupaiidae|family Tupaiidae|mammal family (generic term)
+tupek|1
+(noun)|tupik|sealskin tent|tent (generic term)|collapsible shelter (generic term)
+tupelo|3
+(noun)|wood (generic term)
+(noun)|tupelo tree|gum tree (generic term)|gum (generic term)
+(noun)|Tupelo|town (generic term)
+tupelo family|1
+(noun)|Nyssaceae|family Nyssaceae|sour-gum family|dicot family (generic term)|magnoliopsid family (generic term)
+tupelo tree|1
+(noun)|tupelo|gum tree (generic term)|gum (generic term)
+tupi|2
+(noun)|Tupi|South American Indian (generic term)
+(noun)|Tupi|Tupi-Guarani (generic term)|Tupi-Guarani language (generic term)
+tupi-guarani|1
+(noun)|Tupi-Guarani|Tupi-Guarani language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+tupi-guarani language|1
+(noun)|Tupi-Guarani|Tupi-Guarani language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+tupik|1
+(noun)|tupek|sealskin tent|tent (generic term)|collapsible shelter (generic term)
+tupinambis|1
+(noun)|Tupinambis|genus Tupinambis|reptile genus (generic term)
+tuppence|1
+(noun)|twopence|coin (generic term)
+tuppeny|1
+(adj)|sixpenny|threepenny|twopenny|two-a-penny|twopenny-halfpenny|cheap (similar term)|inexpensive (similar term)
+tupungatito|1
+(noun)|Tupungatito|volcano (generic term)
+tupungato|1
+(noun)|Tupungato|mountain peak (generic term)
+turaco|1
+(noun)|touraco|turacou|turakoo|cuculiform bird (generic term)
+turacou|1
+(noun)|touraco|turaco|turakoo|cuculiform bird (generic term)
+turakoo|1
+(noun)|touraco|turaco|turacou|cuculiform bird (generic term)
+turban|2
+(noun)|headdress (generic term)|headgear (generic term)
+(noun)|pillbox|toque|millinery (generic term)|woman's hat (generic term)
+turban squash|2
+(noun)|Cucurbita maxima turbaniformis|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+turbaned|1
+(adj)|hatted (similar term)
+turbatrix|1
+(noun)|Anguillula|genus Anguillula|Turbatrix|genus Turbatrix|worm genus (generic term)
+turbatrix aceti|1
+(noun)|vinegar eel|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm (generic term)
+turbellaria|1
+(noun)|Turbellaria|class Turbellaria|class (generic term)
+turbid|1
+(adj)|cloudy|muddy|mirky|murky|opaque (similar term)
+turbidity|1
+(noun)|turbidness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+turbidness|1
+(noun)|turbidity|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+turbinal|1
+(noun)|turbinate bone|turbinate|bone (generic term)|os (generic term)
+turbinate|3
+(adj)|bone|os (related term)
+(adj)|coiling|helical|spiral|spiraling|volute|voluted|whorled|coiled (similar term)
+(noun)|turbinate bone|turbinal|bone (generic term)|os (generic term)
+turbinate bone|1
+(noun)|turbinate|turbinal|bone (generic term)|os (generic term)
+turbine|1
+(noun)|rotary engine (generic term)
+turbo-propeller plane|1
+(noun)|propjet|turboprop|propeller plane (generic term)
+turbofan|2
+(noun)|fanjet|fan-jet|turbojet|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+(noun)|fanjet|fan-jet|fanjet engine|turbojet|turbojet engine|turbofan engine|jet engine (generic term)
+turbofan engine|1
+(noun)|fanjet|fan-jet|fanjet engine|turbojet|turbojet engine|turbofan|jet engine (generic term)
+turbogenerator|1
+(noun)|generator (generic term)
+turbojet|2
+(noun)|fanjet|fan-jet|turbofan|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+(noun)|fanjet|fan-jet|fanjet engine|turbojet engine|turbofan|turbofan engine|jet engine (generic term)
+turbojet engine|1
+(noun)|fanjet|fan-jet|fanjet engine|turbojet|turbofan|turbofan engine|jet engine (generic term)
+turboprop|1
+(noun)|propjet|turbo-propeller plane|propeller plane (generic term)
+turbot|2
+(noun)|flounder (generic term)
+(noun)|Psetta maxima|lefteye flounder (generic term)|lefteyed flounder (generic term)
+turbulence|3
+(noun)|turbulency|physical phenomenon (generic term)
+(noun)|bad weather (generic term)|inclemency (generic term)|inclementness (generic term)
+(noun)|upheaval|Sturm und Drang|disorder (generic term)
+turbulency|1
+(noun)|turbulence|physical phenomenon (generic term)
+turbulent|2
+(adj)|disruptive|riotous|troubled|tumultuous|unquiet (similar term)
+(adj)|churning|roiling|roiled|roily|agitated (similar term)
+turbulent flow|1
+(noun)|flow (generic term)
+turbulently|1
+(adv)|stormily|passionately
+turcoman|2
+(noun)|Turkoman|Turkmen|Turcoman|Turki (generic term)
+(noun)|Turkmen|Turkoman|Turcoman|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+turd|1
+(noun)|crap|dirt|shit|shite|poop|fecal matter (generic term)|faecal matter (generic term)|feces (generic term)|faeces (generic term)|BM (generic term)|stool (generic term)|ordure (generic term)|dejection (generic term)
+turdidae|1
+(noun)|Turdidae|family Turdidae|bird family (generic term)
+turdinae|1
+(noun)|Turdinae|subfamily Turdinae|bird family (generic term)
+turdus|1
+(noun)|Turdus|genus Turdus|bird genus (generic term)
+turdus greyi|1
+(noun)|clay-colored robin|Turdus greyi|thrush (generic term)
+turdus iliacus|1
+(noun)|redwing|Turdus iliacus|thrush (generic term)
+turdus merula|1
+(noun)|blackbird|merl|merle|ouzel|ousel|European blackbird|Turdus merula|thrush (generic term)
+turdus migratorius|1
+(noun)|robin|American robin|Turdus migratorius|thrush (generic term)
+turdus philomelos|1
+(noun)|song thrush|mavis|throstle|Turdus philomelos|thrush (generic term)
+turdus pilaris|1
+(noun)|fieldfare|snowbird|Turdus pilaris|thrush (generic term)
+turdus torquatus|1
+(noun)|ring ouzel|ring blackbird|ring thrush|Turdus torquatus|thrush (generic term)
+turdus viscivorus|1
+(noun)|missel thrush|mistle thrush|mistletoe thrush|Turdus viscivorus|thrush (generic term)
+tureen|1
+(noun)|serving dish (generic term)
+turf|4
+(noun)|sod|sward|greensward|land (generic term)|ground (generic term)|soil (generic term)
+(noun)|city district (generic term)
+(noun)|jurisdiction (generic term)
+(verb)|cover (generic term)
+turf out|1
+(verb)|expel|eject|chuck out|exclude|throw out|kick out|boot out|turn out|move (generic term)|displace (generic term)
+turf war|1
+(noun)|conflict (generic term)|struggle (generic term)|battle (generic term)
+turfan|1
+(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian (generic term)
+turfan dialect|1
+(noun)|Turfan|East Tocharian|Turfan dialect|Tocharian (generic term)
+turfing daisy|2
+(noun)|Tripleurospermum tchihatchewii|Matricaria tchihatchewii|herb (generic term)|herbaceous plant (generic term)
+(noun)|Tripleurospermum oreades tchihatchewii|Matricaria oreades|herb (generic term)|herbaceous plant (generic term)
+turgenev|1
+(noun)|Turgenev|Ivan Turgenev|Ivan Sergeevich Turgenev|writer (generic term)|author (generic term)
+turgid|2
+(adj)|bombastic|declamatory|large|orotund|tumid|rhetorical (similar term)
+(adj)|bloated|distended|puffed|puffy|swollen|intumescent|tumescent|tumid|unhealthy (similar term)
+turgidity|1
+(noun)|turgidness|flatulence|prolixity (generic term)|prolixness (generic term)|windiness (generic term)|long-windedness (generic term)|wordiness (generic term)
+turgidly|1
+(adv)|bombastically
+turgidness|1
+(noun)|turgidity|flatulence|prolixity (generic term)|prolixness (generic term)|windiness (generic term)|long-windedness (generic term)|wordiness (generic term)
+turgor|1
+(noun)|state (generic term)
+turgot|1
+(noun)|Turgot|Anne Robert Jacques Turgot|economist (generic term)|economic expert (generic term)
+turin|1
+(noun)|Turin|Torino|city (generic term)|metropolis (generic term)|urban center (generic term)
+turing|1
+(noun)|Turing|Alan Turing|Alan Mathison Turing|mathematician (generic term)
+turing machine|1
+(noun)|Turing machine|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+turk|1
+(noun)|Turk|Turki (generic term)
+turk's-cap|2
+(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily (generic term)
+(noun)|Turk's-cap|martagon|Lilium martagon|lily (generic term)
+turk's cap-lily|1
+(noun)|Turk's-cap|Turk's cap-lily|Lilium superbum|lily (generic term)
+turk's head|1
+(noun)|Turk's head|knot (generic term)
+turkestan|1
+(noun)|Turkistan|Turkestan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+turkestan desert|1
+(noun)|Kara Kum|Qara Qum|Turkestan Desert|desert (generic term)
+turkey|5
+(noun)|Meleagris gallopavo|domestic fowl (generic term)|fowl (generic term)|poultry (generic term)
+(noun)|Turkey|Republic of Turkey|country (generic term)|state (generic term)|land (generic term)
+(noun)|joker|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|poultry (generic term)
+(noun)|bomb|dud|flop (generic term)|bust (generic term)|fizzle (generic term)
+turkey-like|1
+(adj)|animal (similar term)
+turkey-sized|1
+(adj)|sized (similar term)
+turkey buzzard|1
+(noun)|buzzard|turkey vulture|Cathartes aura|New World vulture (generic term)|cathartid (generic term)
+turkey cock|1
+(noun)|gobbler|tom|tom turkey|turkey (generic term)|Meleagris gallopavo (generic term)
+turkey drumstick|1
+(noun)|turkey leg|drumstick (generic term)
+turkey leg|1
+(noun)|turkey drumstick|drumstick (generic term)
+turkey oak|4
+(noun)|American turkey oak|Quercus laevis|oak (generic term)|oak tree (generic term)
+(noun)|bluejack oak|Quercus incana|oak (generic term)|oak tree (generic term)
+(noun)|southern red oak|swamp red oak|Quercus falcata|red oak (generic term)
+(noun)|European turkey oak|Quercus cerris|oak (generic term)|oak tree (generic term)
+turkey red|1
+(noun)|Turkey red|alizarine red|red (generic term)|redness (generic term)
+turkey stew|1
+(noun)|fricassee (generic term)
+turkey stuffing|1
+(noun)|stuffing (generic term)|dressing (generic term)
+turkey trot|1
+(noun)|one-step (generic term)
+turkey vulture|1
+(noun)|buzzard|turkey buzzard|Cathartes aura|New World vulture (generic term)|cathartid (generic term)
+turkey wing|1
+(noun)|wing (generic term)
+turki|2
+(noun)|Turki|Asian (generic term)|Asiatic (generic term)
+(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic (generic term)|Altaic language (generic term)
+turkic|2
+(adj)|Turkic|Altaic|Altaic language (related term)
+(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic (generic term)|Altaic language (generic term)
+turkic-speaking|1
+(adj)|Turkic-speaking|communicative (similar term)|communicatory (similar term)
+turkic language|1
+(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic (generic term)|Altaic language (generic term)
+turkish|2
+(adj)|Turkish|country|state|land (related term)
+(noun)|Turkish|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+turkish bath|2
+(noun)|Turkish bath|steam bath (generic term)|steam room (generic term)|vapor bath (generic term)|vapour bath (generic term)
+(noun)|Turkish bath|steam bath|vapor bath|vapour bath|washup (generic term)|bathing (generic term)
+turkish boxwood|1
+(noun)|boxwood|Turkish boxwood|wood (generic term)
+turkish capital|1
+(noun)|Ankara|Turkish capital|capital of Turkey|Angora|national capital (generic term)
+turkish coffee|1
+(noun)|Turkish coffee|coffee (generic term)|java (generic term)
+turkish delight|1
+(noun)|Turkish Delight|candy (generic term)|confect (generic term)
+turkish empire|1
+(noun)|Ottoman Empire|Turkish Empire|empire (generic term)|imperium (generic term)
+turkish hizballah|1
+(noun)|Turkish Hizballah|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+turkish lira|1
+(noun)|lira|Turkish lira|Turkish monetary unit (generic term)
+turkish monetary unit|1
+(noun)|Turkish monetary unit|monetary unit (generic term)
+turkish tobacco|1
+(noun)|Turkish tobacco|tobacco (generic term)|baccy (generic term)
+turkish towel|1
+(noun)|Turkish towel|terry towel|bath towel (generic term)
+turkistan|1
+(noun)|Turkistan|Turkestan|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+turkmen|4
+(adj)|Turkmen|country|state|land (related term)
+(noun)|Turkoman|Turkmen|Turcoman|Turki (generic term)
+(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country (generic term)|state (generic term)|land (generic term)
+(noun)|Turkmen|Turkoman|Turcoman|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+turkmen monetary unit|1
+(noun)|Turkmen monetary unit|monetary unit (generic term)
+turkmenia|1
+(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country (generic term)|state (generic term)|land (generic term)
+turkmenistan|1
+(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country (generic term)|state (generic term)|land (generic term)
+turko-tatar|1
+(noun)|Turki|Turkic|Turko-Tatar|Turkic language|Altaic (generic term)|Altaic language (generic term)
+turkoman|2
+(noun)|Turkoman|Turkmen|Turcoman|Turki (generic term)
+(noun)|Turkmen|Turkoman|Turcoman|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+turkomen|1
+(noun)|Turkmenistan|Turkomen|Turkmen|Turkmenia|country (generic term)|state (generic term)|land (generic term)
+turmeric|2
+(noun)|Curcuma longa|Curcuma domestica|herb (generic term)|herbaceous plant (generic term)
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+turmeric root|1
+(noun)|goldenseal|golden seal|yellow root|Hydrastis Canadensis|herb (generic term)|herbaceous plant (generic term)
+turmoil|3
+(noun)|convulsion|upheaval|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|tumult|agitation (generic term)
+(noun)|agitation|excitement|upheaval|hullabaloo|disturbance (generic term)
+turn|36
+(noun)|bend|crook|twist|curve (generic term)|curved shape (generic term)
+(noun)|turning|change of course (generic term)
+(noun)|play|activity (generic term)
+(noun)|turn of events|twist|development (generic term)
+(noun)|turning|movement (generic term)|motion (generic term)
+(noun)|change of direction (generic term)|reorientation (generic term)
+(noun)|twist|rotation (generic term)|rotary motion (generic term)
+(noun)|go|spell|tour|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|bout|round|playing period (generic term)|period of play (generic term)|play (generic term)
+(noun)|act|routine|number|bit|performance (generic term)|public presentation (generic term)
+(noun)|good turn|favor (generic term)|favour (generic term)
+(noun)|walk (generic term)
+(verb)|move (generic term)|turn back (related term)|turn away (related term)|turn to (related term)
+(verb)|become|transform (generic term)|transmute (generic term)|metamorphose (generic term)
+(verb)|change state|change (generic term)|turn around (related term)|turn off (related term)
+(verb)|grow|change (generic term)
+(verb)|move around|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|move (generic term)
+(verb)|turn over|move (generic term)|displace (generic term)
+(verb)|change by reversal|reverse|change (generic term)|turn on (related term)|turn off (related term)
+(verb)|plow|plough|till (generic term)
+(verb)|turn (generic term)|grow (generic term)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|release|transmit (generic term)|transfer (generic term)|transport (generic term)|channel (generic term)|channelize (generic term)|channelise (generic term)
+(verb)|twist|sprain|wrench|wrick|rick|injure (generic term)|wound (generic term)
+(verb)|shape (generic term)|form (generic term)
+(verb)|sour|ferment|work|change state (generic term)|turn (generic term)
+(verb)|do (generic term)|perform (generic term)
+(verb)|get (generic term)|acquire (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|send (generic term)|direct (generic term)
+(verb)|flex|bend|deform|twist|change shape (generic term)|change form (generic term)|deform (generic term)|unbend (antonym)
+(verb)|operate (generic term)|control (generic term)
+(verb)|aim (generic term)|take (generic term)|train (generic term)|take aim (generic term)|direct (generic term)
+(verb)|call on|appeal (generic term)|invoke (generic term)
+(verb)|senesce (generic term)|age (generic term)|get on (generic term)|mature (generic term)|maturate (generic term)
+turn-on|1
+(noun)|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+turn a blind eye|1
+(verb)|dismiss (generic term)|disregard (generic term)|brush aside (generic term)|brush off (generic term)|discount (generic term)|push aside (generic term)|ignore (generic term)
+turn a loss|1
+(verb)|lose|profit (antonym)|break even (antonym)
+turn a nice dime|1
+(verb)|turn a nice penny|turn a nice dollar|profit (generic term)|turn a profit (generic term)
+turn a nice dollar|1
+(verb)|turn a nice dime|turn a nice penny|profit (generic term)|turn a profit (generic term)
+turn a nice penny|1
+(verb)|turn a nice dime|turn a nice dollar|profit (generic term)|turn a profit (generic term)
+turn a profit|1
+(verb)|profit|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)|lose (antonym)|break even (antonym)
+turn a trick|1
+(verb)|work (generic term)|do work (generic term)
+turn around|4
+(noun)|reversal|turning (generic term)|turn (generic term)
+(verb)|swing around|swing about|turn (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|pick up|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+turn away|4
+(verb)|turn (generic term)
+(verb)|deflect|bend|turn (generic term)
+(verb)|reject|turn down|refuse|admit (antonym)
+(verb)|avert|turn (generic term)
+turn back|5
+(verb)|backtrack|double back|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|revert|return|retrovert|regress|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|chase away|drive out|drive away|dispel|drive off|run off|move (generic term)|displace (generic term)
+(verb)|check|arrest|stop|contain|hold back|defend (generic term)
+(verb)|invert|reverse|change (generic term)|alter (generic term)|modify (generic term)
+turn down|5
+(verb)|refuse|reject|pass up|decline|accept (antonym)
+(verb)|reject|turn away|refuse|admit (antonym)
+(verb)|reject|spurn|freeze off|scorn|pooh-pooh|disdain|refuse (generic term)|decline (generic term)
+(verb)|worsen (generic term)|decline (generic term)
+(verb)|lower|lour|decrease (generic term)|lessen (generic term)|minify (generic term)
+turn in|4
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+(verb)|hand over|fork over|fork out|fork up|get in|deliver|render|pass (generic term)|hand (generic term)|reach (generic term)|pass on (generic term)|turn over (generic term)|give (generic term)
+(verb)|put on|make (generic term)|create (generic term)
+(verb)|go to bed|bed|crawl in|kip down|hit the hay|hit the sack|sack out|go to sleep|retire|turn out (antonym)|get up (antonym)
+turn indicator|1
+(noun)|blinker|turn signal|trafficator|visual signal (generic term)
+turn of events|1
+(noun)|turn|twist|development (generic term)
+turn of expression|1
+(noun)|turn of phrase|expressive style (generic term)|style (generic term)
+turn of phrase|1
+(noun)|turn of expression|expressive style (generic term)|style (generic term)
+turn of the century|1
+(noun)|historic period (generic term)|age (generic term)
+turn off|3
+(verb)|switch off|cut|turn out|throw (generic term)|flip (generic term)|switch (generic term)|switch on (antonym)
+(verb)|turn (generic term)
+(verb)|put off|repel (generic term)|repulse (generic term)
+turn on|7
+(verb)|switch on|throw (generic term)|flip (generic term)|switch (generic term)|switch off (antonym)
+(verb)|depend on|devolve on|depend upon|ride|hinge on|hinge upon
+(verb)|produce (generic term)|bring forth (generic term)
+(verb)|change (generic term)
+(verb)|agitate|rouse|charge|commove|excite|charge up|disturb (generic term)|upset (generic term)|trouble (generic term)|calm (antonym)
+(verb)|arouse|sex|excite|wind up|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|trip|trip out|get off
+turn on a dime|1
+(verb)|turn (generic term)
+turn one's stomach|1
+(verb)|sicken|nauseate|disgust (generic term)|gross out (generic term)|revolt (generic term)|repel (generic term)
+turn out|12
+(verb)|prove|turn up|be (generic term)
+(verb)|happen (generic term)|hap (generic term)|go on (generic term)|pass off (generic term)|occur (generic term)|pass (generic term)|fall out (generic term)|come about (generic term)|take place (generic term)
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+(verb)|come out|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|appear (generic term)
+(verb)|bear|make (generic term)|create (generic term)|bear out (related term)
+(verb)|expel|eject|chuck out|exclude|throw out|kick out|turf out|boot out|move (generic term)|displace (generic term)
+(verb)|meet (generic term)|gather (generic term)|assemble (generic term)|forgather (generic term)|foregather (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|splay|spread out|rotate|turn (generic term)
+(verb)|switch off|cut|turn off|throw (generic term)|flip (generic term)|switch (generic term)|switch on (antonym)
+(verb)|get up|arise|uprise|rise|turn in (antonym)|go to bed (antonym)
+turn over|9
+(verb)|pass|hand|reach|pass on|give|transfer (generic term)|hand out (related term)|hand down (related term)|hand over (related term)|pass on (related term)|pass on (related term)|pass on (related term)|pass on (related term)
+(verb)|overturn|tip over|upset|knock over|bowl over|tump over|move (generic term)|displace (generic term)
+(verb)|roll|turn (generic term)|roll down (related term)|roll over (related term)
+(verb)|dig|delve|cut into|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|dig up (related term)|dig in (related term)|dig out (related term)
+(verb)|transact (generic term)
+(verb)|turn|move (generic term)|displace (generic term)
+(verb)|overturn|tip over|tump over|turn (generic term)
+(verb)|flip|flip over|turn (generic term)
+(verb)|consider|debate|moot|deliberate|hash out (generic term)|discuss (generic term)|talk over (generic term)
+turn signal|1
+(noun)|blinker|turn indicator|trafficator|visual signal (generic term)
+turn tail|1
+(verb)|scat|run|scarper|lam|run away|hightail it|bunk|head for the hills|take to the woods|escape|fly the coop|break away|leave (generic term)|go forth (generic term)|go away (generic term)
+turn the tables|1
+(verb)|turn the tide|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+turn the tide|1
+(verb)|turn the tables|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+turn thumbs down|1
+(verb)|vote down|vote (generic term)
+turn to|1
+(verb)|address|communicate (generic term)|intercommunicate (generic term)
+turn turtle|1
+(verb)|capsize|turtle|overturn (generic term)|turn over (generic term)|tip over (generic term)|tump over (generic term)
+turn up|5
+(verb)|come on|come out|surface|show up|appear (generic term)
+(verb)|fold|fold up|change surface (generic term)|unfold (antonym)
+(verb)|locate|find (generic term)|regain (generic term)
+(verb)|prove|turn out|be (generic term)
+(verb)|excavate|dig up|obtain (generic term)
+turn up the heat|1
+(verb)|turn up the pressure|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+turn up the pressure|1
+(verb)|turn up the heat|coerce (generic term)|hale (generic term)|squeeze (generic term)|pressure (generic term)|force (generic term)
+turnabout|2
+(noun)|reversal|change of mind|flip-flop|turnaround|decision making (generic term)|deciding (generic term)
+(noun)|reversion|reverse|reversal|turnaround|change of direction (generic term)|reorientation (generic term)
+turnaround|5
+(noun)|turnaround time|work time (generic term)
+(noun)|reversal|change of mind|flip-flop|turnabout|decision making (generic term)|deciding (generic term)
+(noun)|area (generic term)
+(noun)|turnround|preparation (generic term)|readying (generic term)
+(noun)|reversion|reverse|reversal|turnabout|change of direction (generic term)|reorientation (generic term)
+turnaround time|1
+(noun)|turnaround|work time (generic term)
+turnbuckle|1
+(noun)|coupling (generic term)|coupler (generic term)
+turncoat|1
+(noun)|deserter|apostate|renegade|recreant|ratter|quitter (generic term)
+turncock|2
+(noun)|employee (generic term)
+(noun)|stopcock|cock|faucet (generic term)|spigot (generic term)
+turndown|1
+(noun)|nonacceptance|rejection (generic term)
+turned|2
+(adj)|inverted (similar term)|upside-down (similar term)|overturned (similar term)|upset (similar term)|upturned (similar term)|reversed (similar term)|rotated (similar term)|revolved (similar term)|wrong-side-out (similar term)|inside-out (similar term)|unturned (antonym)
+(adj)|off|sour|soured (similar term)
+turned on|1
+(adj)|aroused|horny|randy|ruttish|steamy|sexy (similar term)
+turned out|1
+(adj)|clothed (similar term)|clad (similar term)
+turner|8
+(noun)|Turner|Nat Turner|slave (generic term)|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+(noun)|Turner|Henry Hubert Turner|endocrinologist (generic term)
+(noun)|Turner|Joseph Mallord William Turner|painter (generic term)
+(noun)|Turner|Frederick Jackson Turner|historian (generic term)|historiographer (generic term)
+(noun)|tumbler (generic term)
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|food turner|cooking utensil (generic term)|cookware (generic term)
+turner's syndrome|1
+(noun)|Turner's syndrome|sex-linked disorder (generic term)
+turnery|2
+(noun)|workshop (generic term)|shop (generic term)
+(noun)|product (generic term)|production (generic term)
+turnicidae|1
+(noun)|Turnicidae|family Turnicidae|bird family (generic term)
+turning|6
+(noun)|turn|change of course (generic term)
+(noun)|change (generic term)
+(noun)|paring (generic term)|sliver (generic term)|shaving (generic term)
+(noun)|turn|movement (generic term)|motion (generic term)
+(noun)|end product (generic term)|output (generic term)
+(noun)|formation (generic term)|shaping (generic term)
+turning away|1
+(noun)|avoidance|shunning|dodging|rejection (generic term)
+turning point|2
+(noun)|landmark|watershed|juncture (generic term)|occasion (generic term)
+(noun)|corner|street corner|intersection (generic term)|crossroad (generic term)|crossway (generic term)|crossing (generic term)|carrefour (generic term)
+turnip|2
+(noun)|white turnip|Brassica rapa|turnip plant (generic term)
+(noun)|root vegetable (generic term)|cruciferous vegetable (generic term)
+turnip-rooted celery|1
+(noun)|celeriac|celery root|knob celery|root celery|Apium graveolens rapaceum|herb (generic term)|herbaceous plant (generic term)
+turnip-rooted parsley|1
+(noun)|Hamburg parsley|Petroselinum crispum tuberosum|parsley (generic term)|Petroselinum crispum (generic term)
+turnip-shaped|1
+(adj)|formed (similar term)
+turnip bed|1
+(noun)|bed (generic term)
+turnip cabbage|2
+(noun)|rutabaga|swede|Swedish turnip|rutabaga plant|Brassica napus napobrassica|turnip plant (generic term)
+(noun)|kohlrabi|cruciferous vegetable (generic term)
+turnip greens|1
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+turnip plant|1
+(noun)|crucifer (generic term)|cruciferous plant (generic term)
+turnix|1
+(noun)|Turnix|genus Turnix|bird genus (generic term)
+turnix sylvatica|1
+(noun)|striped button quail|Turnix sylvatica|button quail (generic term)|button-quail (generic term)|bustard quail (generic term)|hemipode (generic term)
+turnkey|1
+(noun)|prison guard|jailer|jailor|gaoler|screw|lawman (generic term)|law officer (generic term)|peace officer (generic term)|keeper (generic term)
+turnoff|2
+(noun)|negative stimulation|stimulation (generic term)|stimulus (generic term)|stimulant (generic term)|input (generic term)
+(noun)|road (generic term)|route (generic term)
+turnout|7
+(noun)|gathering (generic term)|assemblage (generic term)
+(noun)|widening|part (generic term)|portion (generic term)
+(noun)|siding|railroad siding|sidetrack|railroad track (generic term)|railroad (generic term)|railway (generic term)
+(noun)|output|outturn|product (generic term)|production (generic term)
+(noun)|outfit|getup|rig|attire (generic term)|garb (generic term)|dress (generic term)
+(noun)|attendance (generic term)|attending (generic term)
+(noun)|rotation (generic term)|rotary motion (generic term)
+turnover|4
+(noun)|employee turnover|turnover rate|ratio (generic term)
+(noun)|dish (generic term)
+(noun)|dollar volume|bulk (generic term)|mass (generic term)|volume (generic term)
+(noun)|upset|overturn|inversion (generic term)|upending (generic term)
+turnover rate|1
+(noun)|employee turnover|turnover|ratio (generic term)
+turnpike|2
+(noun)|gate (generic term)
+(noun)|expressway (generic term)|freeway (generic term)|motorway (generic term)|pike (generic term)|state highway (generic term)|superhighway (generic term)|throughway (generic term)|thruway (generic term)
+turnround|1
+(noun)|turnaround|preparation (generic term)|readying (generic term)
+turnspit|1
+(noun)|spit (generic term)
+turnstile|1
+(noun)|gate (generic term)
+turnstone|1
+(noun)|plover (generic term)
+turntable|2
+(noun)|lazy Susan|tray (generic term)
+(noun)|platform (generic term)
+turnup|1
+(noun)|cuff|lap (generic term)|overlap (generic term)
+turnverein|1
+(noun)|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+turp|1
+(noun)|transurethral resection of the prostate|TURP|resection (generic term)
+turpentine|2
+(noun)|gum terpentine|oleoresin (generic term)
+(noun)|oil of turpentine|spirit of turpentine|turps|essential oil (generic term)|volatile oil (generic term)
+turpentine camphor weed|1
+(noun)|camphorweed|vinegarweed|Trichostema lanceolatum|blue curls (generic term)
+turpentine weed|1
+(noun)|rabbitweed|rabbit-weed|snakeweed|broom snakeweed|broom snakeroot|Gutierrezia sarothrae|matchweed (generic term)|matchbush (generic term)
+turpin|1
+(noun)|Turpin|Dick Turpin|highjacker (generic term)|highwayman (generic term)|hijacker (generic term)|road agent (generic term)
+turpitude|1
+(noun)|depravity|transgression (generic term)|evildoing (generic term)
+turps|1
+(noun)|turpentine|oil of turpentine|spirit of turpentine|essential oil (generic term)|volatile oil (generic term)
+turquoise|2
+(noun)|mineral (generic term)|opaque gem (generic term)
+(noun)|greenish blue|aqua|aquamarine|cobalt blue|peacock blue|blue (generic term)|blueness (generic term)
+turreae|1
+(noun)|tree (generic term)
+turret|2
+(noun)|tower (generic term)
+(noun)|gun enclosure|gun turret|platform (generic term)|weapons platform (generic term)
+turret clock|1
+(noun)|clock (generic term)
+turritis|1
+(noun)|Turritis|genus Turritis|dilleniid dicot genus (generic term)
+turritis glabra|1
+(noun)|tower mustard|tower cress|Turritis glabra|Arabis glabra|cress (generic term)|cress plant (generic term)
+tursiops|1
+(noun)|Tursiops|genus Tursiops|mammal genus (generic term)
+tursiops gilli|1
+(noun)|Pacific bottlenose dolphin|Tursiops gilli|bottlenose dolphin (generic term)|bottle-nosed dolphin (generic term)|bottlenose (generic term)
+tursiops truncatus|1
+(noun)|Atlantic bottlenose dolphin|Tursiops truncatus|bottlenose dolphin (generic term)|bottle-nosed dolphin (generic term)|bottlenose (generic term)
+turtle|3
+(noun)|chelonian (generic term)|chelonian reptile (generic term)
+(verb)|capsize|turn turtle|overturn (generic term)|turn over (generic term)|tip over (generic term)|tump over (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+turtle bean|1
+(noun)|black bean|common bean (generic term)
+turtle soup|1
+(noun)|green turtle soup|soup (generic term)
+turtledove|2
+(noun)|Australian turtledove|Stictopelia cuneata|dove (generic term)
+(noun)|dove (generic term)
+turtlehead|1
+(noun)|shellflower|shell-flower|snakehead|snake-head|Chelone glabra|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+turtleneck|2
+(adj)|turtlenecked|necked (similar term)
+(noun)|polo-neck|sweater (generic term)|jersey (generic term)|T-shirt (generic term)|tee shirt (generic term)
+turtleneck collar|1
+(noun)|polo-neck collar|collar (generic term)|neckband (generic term)
+turtlenecked|1
+(adj)|turtleneck|necked (similar term)
+turtler|1
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+tuscaloosa|1
+(noun)|Tuscaloosa|town (generic term)
+tuscan|2
+(adj)|Tuscan|Italian region (related term)
+(noun)|Tuscan|Italian (generic term)
+tuscan order|1
+(noun)|Tuscan order|order (generic term)
+tuscany|1
+(noun)|Tuscany|Toscana|Italian region (generic term)
+tuscarora|2
+(noun)|Tuscarora|Iroquois (generic term)
+(noun)|Tuscarora|Iroquoian (generic term)|Iroquois (generic term)|Iroquoian language (generic term)
+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 (generic term)
+tushery|1
+(noun)|literary composition (generic term)|literary work (generic term)
+tusk|4
+(noun)|ivory|dentine (generic term)|dentin (generic term)
+(noun)|tooth (generic term)
+(verb)|horn|pierce (generic term)|thrust (generic term)
+(verb)|detusk|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+tusk shell|1
+(noun)|tooth shell|scaphopod (generic term)
+tuskegee|1
+(noun)|Tuskegee|town (generic term)
+tusker|1
+(noun)|mammal (generic term)|mammalian (generic term)
+tussah|1
+(noun)|tusseh|tussur|tussore|tusser|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+tussaud|1
+(noun)|Tussaud|Marie Tussaud|Madame Tussaud|Marie Grosholtz|modeler (generic term)|modeller (generic term)
+tusseh|1
+(noun)|tussah|tussur|tussore|tusser|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+tusser|1
+(noun)|tussah|tusseh|tussur|tussore|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+tussilago|1
+(noun)|Tussilago|genus Tussilago|asterid dicot genus (generic term)
+tussilago alpina|1
+(noun)|alpine coltsfoot|Homogyne alpina|Tussilago alpina|herb (generic term)|herbaceous plant (generic term)
+tussilago farfara|1
+(noun)|coltsfoot|Tussilago farfara|herb (generic term)|herbaceous plant (generic term)
+tussle|3
+(noun)|hassle|scuffle|dogfight|rough-and-tumble|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+(verb)|scuffle|contend (generic term)|fight (generic term)|struggle (generic term)
+(verb)|muss|disarrange (generic term)
+tussock|1
+(noun)|tuft|bunch (generic term)|clump (generic term)|cluster (generic term)|clustering (generic term)
+tussock bellflower|1
+(noun)|spreading bellflower|Campanula carpatica|campanula (generic term)|bellflower (generic term)
+tussock caterpillar|1
+(noun)|caterpillar (generic term)
+tussock moth|1
+(noun)|lymantriid|moth (generic term)
+tussore|1
+(noun)|tussah|tusseh|tussur|tusser|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+tussur|1
+(noun)|tussah|tusseh|tussore|tusser|Antheraea mylitta|saturniid (generic term)|saturniid moth (generic term)
+tut|1
+(verb)|tsk|tut-tut|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+tut-tut|1
+(verb)|tsk|tut|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+tutankhamen|1
+(noun)|Tutankhamen|Pharaoh (generic term)|Pharaoh of Egypt (generic term)
+tutee|1
+(noun)|learner (generic term)|scholar (generic term)|assimilator (generic term)
+tutelage|2
+(noun)|tuition|tutorship|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+(noun)|care|charge|guardianship|protection (generic term)
+tutelar|1
+(adj)|custodial|guardian|tutelary|protective (similar term)
+tutelary|1
+(adj)|custodial|guardian|tutelar|protective (similar term)
+tutelo|2
+(noun)|Tutelo|Sioux (generic term)|Siouan (generic term)
+(noun)|Tutelo|Siouan (generic term)|Siouan language (generic term)
+tutor|3
+(noun)|coach|private instructor|teacher (generic term)|instructor (generic term)
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+(verb)|relate (generic term)|interrelate (generic term)
+tutorial|2
+(adj)|teacher|instructor (related term)
+(noun)|session (generic term)
+tutorship|1
+(noun)|tutelage|tuition|teaching (generic term)|instruction (generic term)|pedagogy (generic term)
+tutsan|1
+(noun)|common St John's wort|Hypericum androsaemum|St John's wort (generic term)
+tutsi|1
+(noun)|Tutsi|Watutsi|Watusi|Bantu (generic term)
+tutti-frutti|1
+(noun)|ice cream (generic term)|icecream (generic term)
+tutu|2
+(noun)|Tutu|Desmond Tutu|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+(noun)|ballet skirt|skirt (generic term)
+tuvalu|2
+(noun)|Tuvalu|country (generic term)|state (generic term)|land (generic term)
+(noun)|Tuvalu|Ellice Islands|archipelago (generic term)
+tuvalu dollar|1
+(noun)|Tuvalu dollar|dollar (generic term)
+tux|1
+(noun)|dinner jacket|tuxedo|black tie|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+tuxedo|1
+(noun)|dinner jacket|tux|black tie|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+tuxedoed|1
+(adj)|clothed (similar term)|clad (similar term)
+tuxtla gutierrez|1
+(noun)|Tuxtla Gutierrez|city (generic term)|metropolis (generic term)|urban center (generic term)
+tv|2
+(noun)|television|telecasting|TV|video|broadcasting (generic term)
+(noun)|television receiver|television|television set|tv set|idiot box|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+tv-antenna|1
+(noun)|television antenna|omnidirectional antenna (generic term)|nondirectional antenna (generic term)
+tv announcer|1
+(noun)|television announcer|announcer (generic term)
+tv audience|1
+(noun)|viewing audience|TV audience|viewers|audience (generic term)
+tv camera|1
+(noun)|television camera|camera|television equipment (generic term)|video equipment (generic term)
+tv channel|1
+(noun)|channel|television channel|TV channel|television station (generic term)|TV station (generic term)
+tv dinner|1
+(noun)|TV dinner|convenience food (generic term)
+tv monitor|1
+(noun)|television monitor|monitor (generic term)
+tv newsman|1
+(noun)|television reporter|television newscaster|TV reporter|TV newsman|reporter (generic term)|newsman (generic term)|newsperson (generic term)
+tv program|1
+(noun)|television program|TV program|television show|TV show|broadcast (generic term)|program (generic term)|programme (generic term)
+tv reporter|1
+(noun)|television reporter|television newscaster|TV reporter|TV newsman|reporter (generic term)|newsman (generic term)|newsperson (generic term)
+tv room|1
+(noun)|television room|room (generic term)
+tv set|1
+(noun)|television receiver|television|television set|tv|idiot box|boob tube|telly|goggle box|receiver (generic term)|receiving system (generic term)
+tv show|1
+(noun)|television program|TV program|television show|TV show|broadcast (generic term)|program (generic term)|programme (generic term)
+tv star|1
+(noun)|television star|TV star|star (generic term)|principal (generic term)|lead (generic term)
+tv station|1
+(noun)|television station|TV station|station (generic term)
+twaddle|2
+(noun)|baloney|boloney|bilgewater|bosh|drool|humbug|taradiddle|tarradiddle|tommyrot|tosh|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(verb)|chatter|piffle|palaver|prate|tittle-tattle|clack|maunder|prattle|blab|gibber|tattle|blabber|gabble|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+twaddler|1
+(noun)|communicator (generic term)
+twain|1
+(noun)|couple|pair|twosome|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+twang|7
+(noun)|sound (generic term)
+(noun)|nasal twang|nasality (generic term)
+(verb)|sound (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|throb (generic term)
+(verb)|pluck (generic term)|plunk (generic term)|pick (generic term)
+(verb)|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+twat|2
+(noun)|fathead|goof|goofball|bozo|jackass|goose|cuckoo|zany|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+(noun)|cunt|puss|pussy|slit|snatch|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+twayblade|2
+(noun)|Listera ovata|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+tweak|4
+(noun)|pinch|squeeze (generic term)|squeezing (generic term)
+(verb)|pinch (generic term)|squeeze (generic term)|twinge (generic term)|tweet (generic term)|nip (generic term)|twitch (generic term)
+(verb)|pluck|pull off|pick off|pull (generic term)|draw (generic term)|force (generic term)
+(verb)|fine-tune|tune (generic term)|tune up (generic term)
+twee|1
+(adj)|dainty|mincing|niminy-piminy|prim|refined (similar term)
+tweed|2
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|flannel|gabardine|white|trouser (generic term)|pant (generic term)
+tweediness|2
+(noun)|coarseness|nubbiness|roughness (generic term)|raggedness (generic term)
+(noun)|inelegance (generic term)
+tweedle|3
+(verb)|chirp|sing (generic term)
+(verb)|play (generic term)
+(verb)|entice (generic term)|lure (generic term)|tempt (generic term)
+tweedledee and tweedledum|1
+(noun)|Tweedledum and Tweedledee|Tweedledee and Tweedledum|pair (generic term)|brace (generic term)
+tweedledum and tweedledee|1
+(noun)|Tweedledum and Tweedledee|Tweedledee and Tweedledum|pair (generic term)|brace (generic term)
+tweedy|2
+(adj)|homespun|nubby|nubbly|slubbed|rough (similar term)|unsmooth (similar term)
+(adj)|upper-class (similar term)
+tweet|3
+(noun)|chirp (generic term)
+(verb)|twirp|sound (generic term)|go (generic term)
+(verb)|pinch|squeeze|twinge|nip|twitch|grip (generic term)
+tweeter|1
+(noun)|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+tweeze|1
+(verb)|pluck (generic term)|tweak (generic term)|pull off (generic term)|pick off (generic term)
+tweezer|1
+(noun)|pincer|pair of pincers|pair of tweezers|hand tool (generic term)
+twelfth|3
+(adj)|12th|ordinal (similar term)
+(noun)|rank (generic term)
+(noun)|one-twelfth|twelfth part|duodecimal|common fraction (generic term)|simple fraction (generic term)
+twelfth cranial nerve|1
+(noun)|hypoglossal|hypoglossal nerve|nervus hypoglosus|cranial nerve (generic term)
+twelfth day|1
+(noun)|Epiphany|Epiphany of Our Lord|Twelfth day|Three Kings' Day|January 6|Christian holy day (generic term)
+twelfth night|1
+(noun)|Twelfth night|Christian holy day (generic term)
+twelfth part|1
+(noun)|one-twelfth|twelfth|duodecimal|common fraction (generic term)|simple fraction (generic term)
+twelfthtide|1
+(noun)|Twelfthtide|season (generic term)
+twelve|2
+(adj)|12|xii|dozen|cardinal (similar term)
+(noun)|12|XII|dozen|large integer (generic term)
+twelve-sided|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+twelve-tone music|1
+(noun)|12-tone music|twelve-tone system|12-tone system|serialism (generic term)|serial music (generic term)
+twelve-tone system|1
+(noun)|twelve-tone music|12-tone music|12-tone system|serialism (generic term)|serial music (generic term)
+twelve noon|1
+(noun)|noon|high noon|midday|noonday|noontide|hour (generic term)|time of day (generic term)
+twelve tribes of israel|1
+(noun)|Tribes of Israel|Twelve Tribes of Israel|kin (generic term)|kin group (generic term)|kinship group (generic term)|kindred (generic term)|clan (generic term)|tribe (generic term)
+twelvemonth|1
+(noun)|year|yr|time period (generic term)|period of time (generic term)|period (generic term)
+twenties|2
+(noun)|mid-twenties|time of life (generic term)
+(noun)|1920s|decade (generic term)|decennary (generic term)|decennium (generic term)
+twentieth|2
+(adj)|20th|ordinal (similar term)
+(noun)|rank (generic term)
+twentieth amendment|1
+(noun)|Twentieth Amendment|amendment (generic term)
+twenty|3
+(adj)|20|xx|cardinal (similar term)
+(noun)|20|XX|large integer (generic term)
+(noun)|twenty dollar bill|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+twenty-eight|2
+(adj)|28|xxviii|cardinal (similar term)
+(noun)|28|XXVIII|large integer (generic term)
+twenty-eighth|1
+(adj)|28th|ordinal (similar term)
+twenty-fifth|1
+(adj)|25th|ordinal (similar term)
+twenty-first|1
+(adj)|21st|ordinal (similar term)
+twenty-five|2
+(adj)|25|xxv|cardinal (similar term)
+(noun)|25|XXV|large integer (generic term)
+twenty-five percent|1
+(noun)|one-fourth|fourth|quarter|fourth part|quartern|common fraction (generic term)|simple fraction (generic term)
+twenty-four|2
+(adj)|24|xxiv|cardinal (similar term)
+(noun)|24|XXIV|two dozen|large integer (generic term)
+twenty-four hour period|1
+(noun)|day|twenty-four hours|24-hour interval|solar day|mean solar day|time unit (generic term)|unit of time (generic term)
+twenty-four hours|1
+(noun)|day|twenty-four hour period|24-hour interval|solar day|mean solar day|time unit (generic term)|unit of time (generic term)
+twenty-fourth|1
+(adj)|24th|ordinal (similar term)
+twenty-nine|2
+(adj)|29|xxix|cardinal (similar term)
+(noun)|29|XXIX|large integer (generic term)
+twenty-ninth|1
+(adj)|29th|ordinal (similar term)
+twenty-one|3
+(adj)|21|xxi|cardinal (similar term)
+(noun)|21|XXI|large integer (generic term)
+(noun)|blackjack|vingt-et-un|card game (generic term)|cards (generic term)
+twenty-second|1
+(adj)|22nd|ordinal (similar term)
+twenty-seven|2
+(adj)|27|xxvii|cardinal (similar term)
+(noun)|27|XXVII|large integer (generic term)
+twenty-seventh|1
+(adj)|27th|ordinal (similar term)
+twenty-six|2
+(adj)|26|xxvi|cardinal (similar term)
+(noun)|26|XXVI|large integer (generic term)
+twenty-sixth|1
+(adj)|26th|ordinal (similar term)
+twenty-third|1
+(adj)|23rd|ordinal (similar term)
+twenty-three|2
+(adj)|23|xxiii|cardinal (similar term)
+(noun)|23|XXIII|large integer (generic term)
+twenty-two|3
+(adj)|22|xxii|cardinal (similar term)
+(noun)|22|XXII|large integer (generic term)
+(noun)|.22|firearm (generic term)|piece (generic term)|small-arm (generic term)
+twenty-two pistol|1
+(noun)|twenty-two (generic term)|.22 (generic term)
+twenty-two rifle|1
+(noun)|twenty-two (generic term)|.22 (generic term)
+twenty dollar bill|1
+(noun)|twenty|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+twenty percent|1
+(noun)|one-fifth|fifth|fifth part|common fraction (generic term)|simple fraction (generic term)
+twerp|1
+(noun)|twirp|twit|simpleton (generic term)|simple (generic term)
+twice|1
+(adv)|doubly|double
+twice-baked bread|1
+(noun)|zwieback|rusk|Brussels biscuit|toast (generic term)
+twice-pinnate|1
+(noun)|bijugate leaf|bijugous leaf|pinnate leaf (generic term)
+twiddle|3
+(noun)|twist (generic term)|turn (generic term)
+(verb)|twirl|swirl|whirl|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|fiddle with|manipulate (generic term)
+twiddler|1
+(noun)|fiddler|manipulator (generic term)
+twig|3
+(noun)|branchlet|sprig|branch (generic term)
+(verb)|branch (generic term)|ramify (generic term)|fork (generic term)|furcate (generic term)|separate (generic term)
+(verb)|catch on|get wise|get onto|tumble|latch on|cotton on|get it|grok (generic term)|get the picture (generic term)|comprehend (generic term)|savvy (generic term)|dig (generic term)|grasp (generic term)|compass (generic term)|apprehend (generic term)
+twig blight|1
+(noun)|blight (generic term)
+twiggy|1
+(adj)|twiglike|thin (similar term)|lean (similar term)
+twiglike|1
+(adj)|twiggy|thin (similar term)|lean (similar term)
+twilight|4
+(adj)|dusky|twilit|dark (similar term)
+(noun)|dusk|gloaming|gloam|nightfall|evenfall|fall|crepuscule|crepuscle|hour (generic term)|time of day (generic term)
+(noun)|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|decline (generic term)|declination (generic term)
+twilight of the gods|1
+(noun)|Gotterdammerung|Ragnarok|Twilight of the Gods|myth (generic term)
+twilight sleep|1
+(noun)|general anesthesia (generic term)|general anaesthesia (generic term)
+twilight vision|1
+(noun)|night vision|night-sight|scotopic vision|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+twilight zone|2
+(noun)|ocean floor (generic term)|ocean bottom (generic term)|seabed (generic term)|sea bottom (generic term)|Davy Jones's locker (generic term)|Davy Jones (generic term)
+(noun)|no man's land|ambiguity (generic term)|equivocalness (generic term)
+twilit|1
+(adj)|dusky|twilight|dark (similar term)
+twill|3
+(noun)|twill weave|weave (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|weave (generic term)|tissue (generic term)
+twill weave|1
+(noun)|twill|weave (generic term)
+twilled|1
+(adj)|corded|rough (similar term)|unsmooth (similar term)
+twin|10
+(adj)|duplicate|matching|twinned|matched (similar term)
+(adj)|siamese|similar (similar term)
+(noun)|sibling (generic term)|sib (generic term)
+(noun)|Gemini|Twin|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Twin|Twin Falls|waterfall (generic term)|falls (generic term)
+(noun)|counterpart|similitude|duplicate (generic term)|duplication (generic term)
+(verb)|duplicate|parallel|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+(verb)|match|mate|couple|pair|join (generic term)|bring together (generic term)
+(verb)|grow (generic term)
+(verb)|give birth (generic term)|deliver (generic term)|bear (generic term)|birth (generic term)|have (generic term)
+twin-aisle airplane|1
+(noun)|widebody aircraft|wide-body aircraft|wide-body|airliner (generic term)
+twin-bedded|1
+(adj)|bedded (similar term)
+twin-prop|1
+(noun)|double-prop|double-propeller plane|twin-propeller-plane|propeller plane (generic term)
+twin-propeller-plane|1
+(noun)|double-prop|double-propeller plane|twin-prop|propeller plane (generic term)
+twin bed|1
+(noun)|bed (generic term)
+twin bill|1
+(noun)|doubleheader|double feature|game (generic term)
+twin cities|1
+(noun)|Twin Cities|urban area (generic term)|populated area (generic term)
+twin falls|2
+(noun)|Twin|Twin Falls|waterfall (generic term)|falls (generic term)
+(noun)|Twin Falls|town (generic term)
+twin towers|1
+(noun)|World Trade Center|WTC|skyscraper (generic term)
+twinberry|2
+(noun)|Lonicera involucrata|honeysuckle (generic term)
+(noun)|partridgeberry|boxberry|Mitchella repens|vine (generic term)
+twine|6
+(noun)|string|cord (generic term)
+(verb)|intertwine|entwine|enlace|interlace|lace|twist (generic term)|twine (generic term)|distort (generic term)|untwine (antonym)
+(verb)|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+(verb)|wind|wrap|roll|move (generic term)|displace (generic term)|roll up (related term)|wrap up (related term)|unwind (antonym)
+(verb)|make (generic term)|create (generic term)
+(verb)|twist|distort|change shape (generic term)|change form (generic term)|deform (generic term)|untwist (antonym)
+twined|1
+(adj)|twisted|coiled (similar term)
+twiner|1
+(noun)|worker (generic term)
+twinflower|1
+(noun)|Linnaea borealis|subshrub (generic term)|suffrutex (generic term)
+twinge|5
+(noun)|pang|stab|feeling (generic term)
+(noun)|pain (generic term)|pain sensation (generic term)|painful sensation (generic term)
+(verb)|prick|sting|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|hurt (generic term)|ache (generic term)|suffer (generic term)
+(verb)|pinch|squeeze|tweet|nip|twitch|grip (generic term)
+twinjet|1
+(noun)|jet (generic term)|jet plane (generic term)|jet-propelled plane (generic term)
+twinkle|4
+(noun)|scintillation|sparkling|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|sparkle|spark|light|vitality (generic term)|verve (generic term)|expression (generic term)|look (generic term)|aspect (generic term)|facial expression (generic term)|face (generic term)
+(verb)|flash|blink|wink|winkle|radiate (generic term)
+(verb)|winkle|scintillate|shine (generic term)|beam (generic term)
+twinkler|1
+(noun)|shiner (generic term)
+twinkling|2
+(adj)|bright (similar term)
+(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|wink|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+twinkly|1
+(adj)|beamish|smiling|cheerful (similar term)
+twinned|1
+(adj)|duplicate|matching|twin|matched (similar term)
+twinning|1
+(adj)|biparous|multiparous (similar term)
+twins|2
+(noun)|crystal (generic term)
+(noun)|Gemini|Gemini the Twins|Twins|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+twirl|4
+(noun)|kink|twist|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(noun)|spin|twist|twisting|whirl|rotation (generic term)|rotary motion (generic term)
+(verb)|swirl|twiddle|whirl|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|whirl|birl|spin|rotate (generic term)|circumvolve (generic term)
+twirler|2
+(noun)|baton twirler|performer (generic term)|performing artist (generic term)
+(noun)|pitcher|hurler|thrower (generic term)|ballplayer (generic term)|baseball player (generic term)
+twirp|3
+(noun)|twerp|twit|simpleton (generic term)|simple (generic term)
+(verb)|tweet|sound (generic term)|go (generic term)
+(verb)|peep|cheep|chirp|chirrup|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+twist|23
+(noun)|turn|turn of events|development (generic term)
+(noun)|construction|interpretation (generic term)
+(noun)|device|gimmick|maneuver (generic term)|manoeuvre (generic term)|tactical maneuver (generic term)|tactical manoeuvre (generic term)
+(noun)|spin|twirl|twisting|whirl|rotation (generic term)|rotary motion (generic term)
+(noun)|wrench|pull|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|kink|twirl|fold (generic term)|crease (generic term)|plication (generic term)|flexure (generic term)|crimp (generic term)|bend (generic term)
+(noun)|bend|crook|turn|curve (generic term)|curved shape (generic term)
+(noun)|eddy|current (generic term)|stream (generic term)
+(noun)|wrench|movement (generic term)|motion (generic term)
+(noun)|braid|plait|tress|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|social dancing (generic term)
+(noun)|wind|winding|rotation (generic term)|rotary motion (generic term)
+(noun)|turn|rotation (generic term)|rotary motion (generic term)
+(verb)|writhe|wrestle|wriggle|worm|squirm|move (generic term)
+(verb)|flex|bend|deform|turn|change shape (generic term)|change form (generic term)|deform (generic term)|unbend (antonym)
+(verb)|turn (generic term)
+(verb)|twine|distort|change shape (generic term)|change form (generic term)|deform (generic term)|untwist (antonym)
+(verb)|shape (generic term)|form (generic term)
+(verb)|wind|curve|be (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+(verb)|wrench|pull (generic term)
+(verb)|twist around|pervert|convolute|sophisticate|denote (generic term)|refer (generic term)
+(verb)|sprain|wrench|turn|wrick|rick|injure (generic term)|wound (generic term)
+twist around|1
+(verb)|twist|pervert|convolute|sophisticate|denote (generic term)|refer (generic term)
+twist bit|1
+(noun)|twist drill|bit (generic term)
+twist drill|1
+(noun)|twist bit|bit (generic term)
+twist wood|1
+(noun)|wayfaring tree|twistwood|Viburnum lantana|shrub (generic term)|bush (generic term)
+twisted|3
+(adj)|twined|coiled (similar term)
+(adj)|contorted|distorted|crooked (similar term)
+(adj)|distorted|misrepresented|perverted|disingenuous (similar term)|artful (similar term)
+twister|2
+(noun)|tornado|cyclone (generic term)
+(noun)|cruller|friedcake (generic term)
+twisting|4
+(adj)|squirming|wiggling|wiggly|wriggling|wriggly|writhing|moving (similar term)
+(adj)|tortuous|twisty|winding|voluminous|crooked (similar term)
+(noun)|distortion|overrefinement|straining|torture|falsification (generic term)|misrepresentaation (generic term)
+(noun)|spin|twirl|twist|whirl|rotation (generic term)|rotary motion (generic term)
+twistwood|1
+(noun)|wayfaring tree|twist wood|Viburnum lantana|shrub (generic term)|bush (generic term)
+twisty|1
+(adj)|tortuous|twisting|winding|voluminous|crooked (similar term)
+twit|3
+(noun)|twerp|twirp|simpleton (generic term)|simple (generic term)
+(noun)|taunt|taunting|aggravation (generic term)|irritation (generic term)|provocation (generic term)
+(verb)|tease|razz|rag|cod|tantalize|tantalise|bait|taunt|rally|ride|mock (generic term)|bemock (generic term)
+twitch|6
+(noun)|twitching|vellication|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+(verb)|jerk|move involuntarily (generic term)|move reflexively (generic term)
+(verb)|jerk|move (generic term)
+(verb)|flip|move (generic term)
+(verb)|pinch|squeeze|twinge|tweet|nip|grip (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)
+twitching|1
+(noun)|twitch|vellication|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+twitter|2
+(noun)|chirrup|sound (generic term)
+(verb)|chitter|peep (generic term)|twirp (generic term)|cheep (generic term)|chirp (generic term)|chirrup (generic term)
+twitterer|1
+(noun)|bird (generic term)
+two|2
+(adj)|2|ii|cardinal (similar term)
+(noun)|2|II|deuce|digit (generic term)|figure (generic term)
+two-a-penny|1
+(adj)|sixpenny|threepenny|twopenny|tuppeny|twopenny-halfpenny|cheap (similar term)|inexpensive (similar term)
+two-bagger|1
+(noun)|double|two-base hit|two-baser|base hit (generic term)|safety (generic term)
+two-base hit|1
+(noun)|double|two-bagger|two-baser|base hit (generic term)|safety (generic term)
+two-baser|1
+(noun)|double|two-base hit|two-bagger|base hit (generic term)|safety (generic term)
+two-by-four|1
+(noun)|timber (generic term)
+two-chambered|1
+(adj)|bicameral|divided (similar term)
+two-channel|1
+(adj)|stereophonic|stereo|binaural (similar term)|biaural (similar term)
+two-dimensional|2
+(adj)|planar|coplanar (similar term)|flat (similar term)|placoid (similar term)|platelike (similar term)|planate (similar term)|flattened (similar term)|tabular (similar term)|cubic (antonym)|linear (antonym)
+(adj)|2-dimensional|flat|multidimensional (similar term)
+two-dimensional figure|1
+(noun)|plane figure|figure (generic term)
+two-dimensionality|1
+(noun)|flatness|planeness|dimensionality (generic term)
+two-eared|1
+(adj)|binaural (similar term)|biaural (similar term)
+two-eyed violet|1
+(noun)|heartsease|Viola ocellata|violet (generic term)
+two-faced|2
+(adj)|ambidextrous|deceitful|double-dealing|duplicitous|Janus-faced|double-faced|double-tongued|dishonest (similar term)|dishonorable (similar term)
+(adj)|Janus-faced|faced (similar term)
+two-fold|2
+(adj)|double|dual|twofold|treble|threefold|three-fold|multiple (similar term)
+(adj)|double|doubled|twofold|multiple (similar term)
+two-footed|1
+(adj)|bipedal|biped|quadruped (antonym)|quadrupedal (antonym)
+two-grain spelt|1
+(noun)|emmer|starch wheat|Triticum dicoccum|wheat (generic term)
+two-handed|2
+(adj)|ambidextrous|equipoised (similar term)|right-handed (antonym)|left-handed (antonym)
+(adj)|bimanual|handed (similar term)
+two-handed backhand|1
+(noun)|backhand (generic term)|backhand stroke (generic term)|backhand shot (generic term)
+two-handed saw|1
+(noun)|whipsaw|two-man saw|lumberman's saw|saw (generic term)
+two-hitter|1
+(noun)|2-hitter|baseball (generic term)|baseball game (generic term)
+two-humped|1
+(adj)|double-humped|projection (related term)
+two-hundredth|1
+(adj)|200th|ordinal (similar term)
+two-lane|1
+(adj)|multilane (similar term)
+two-leafed|1
+(adj)|two-leaved|leafy (similar term)
+two-leaved|1
+(adj)|two-leafed|leafy (similar term)
+two-lipped|1
+(adj)|bilabiate|lipped (similar term)
+two-lobed|1
+(adj)|multilateral (similar term)|many-sided (similar term)
+two-man saw|1
+(noun)|two-handed saw|whipsaw|lumberman's saw|saw (generic term)
+two-man tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+two-needled|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+two-note call|1
+(noun)|birdcall (generic term)|call (generic term)|birdsong (generic term)|song (generic term)
+two-part|1
+(adj)|bipartite|two-way|multilateral (similar term)|many-sided (similar term)
+two-party|1
+(adj)|bipartisan|bipartizan|two-way|nonpartisan (similar term)|nonpartizan (similar term)
+two-piece|3
+(adj)|three-piece (antonym)|one-piece (antonym)
+(noun)|two-piece suit|lounge suit|business suit (generic term)
+(noun)|bikini|swimsuit (generic term)|swimwear (generic term)|bathing suit (generic term)|swimming costume (generic term)|bathing costume (generic term)
+two-piece suit|1
+(noun)|two-piece|lounge suit|business suit (generic term)
+two-ply|1
+(adj)|thick (similar term)
+two-pronged|1
+(adj)|divided (similar term)
+two-seater|1
+(noun)|roadster|runabout|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+two-sided|2
+(adj)|reversible|double-faced (similar term)|nonreversible (antonym)
+(adj)|bilateral|multilateral (similar term)|many-sided (similar term)
+two-spotted ladybug|1
+(noun)|Adalia bipunctata|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+two-step|2
+(noun)|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+two-thirds|1
+(noun)|common fraction (generic term)|simple fraction (generic term)
+two-tier bid|1
+(noun)|takeover bid (generic term)
+two-time|1
+(verb)|cheat on (generic term)|cheat (generic term)|cuckold (generic term)|betray (generic term)|wander (generic term)
+two-timer|2
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|double-crosser|double-dealer|betrayer|traitor|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+two-timing|1
+(adj)|adulterous|cheating|unfaithful (similar term)
+two-toe|1
+(adj)|two-toed|toed (similar term)|toe (similar term)
+two-toed|1
+(adj)|two-toe|toed (similar term)|toe (similar term)
+two-toed anteater|1
+(noun)|silky anteater|Cyclopes didactylus|anteater (generic term)|New World anteater (generic term)
+two-toed sloth|2
+(noun)|unau|unai|Choloepus hoffmanni|sloth (generic term)|tree sloth (generic term)
+(noun)|unau|unai|Choloepus didactylus|sloth (generic term)|tree sloth (generic term)
+two-way|3
+(adj)|bipartisan|bipartizan|two-party|nonpartisan (similar term)|nonpartizan (similar term)
+(adj)|bipartite|two-part|multilateral (similar term)|many-sided (similar term)
+(adj)|bidirectional (similar term)
+two-way street|1
+(noun)|street (generic term)
+two-wheel|1
+(adj)|two-wheeled|machine|simple machine (related term)
+two-wheeled|1
+(adj)|two-wheel|machine|simple machine (related term)
+two-wing flying fish|1
+(noun)|monoplane flying fish|flying fish (generic term)
+two-winged insects|1
+(noun)|dipterous insect|dipteran|dipteron|insect (generic term)
+two-year|1
+(adj)|biennial|perennial (antonym)|annual (antonym)
+two-year-old|1
+(adj)|young (similar term)|immature (similar term)
+two-year-old horse|1
+(noun)|two year old|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+two dollar bill|1
+(noun)|bill (generic term)|note (generic term)|government note (generic term)|bank bill (generic term)|banker's bill (generic term)|bank note (generic term)|banknote (generic term)|Federal Reserve note (generic term)|greenback (generic term)
+two dozen|1
+(noun)|twenty-four|24|XXIV|large integer (generic term)
+two hundred|1
+(adj)|200|cc|cardinal (similar term)
+two iron|1
+(noun)|midiron|iron (generic term)
+two kettle|1
+(noun)|Two Kettle|Teton (generic term)|Lakota (generic term)|Teton Sioux (generic term)|Teton Dakota (generic term)
+two times|1
+(adv)|twofold
+two weeks|1
+(noun)|fortnight|time period (generic term)|period of time (generic term)|period (generic term)
+two year old|1
+(noun)|two-year-old horse|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+twofer|2
+(noun)|offer (generic term)|offering (generic term)
+(noun)|coupon (generic term)|voucher (generic term)
+twofold|3
+(adj)|double|dual|two-fold|treble|threefold|three-fold|multiple (similar term)
+(adj)|double|doubled|two-fold|multiple (similar term)
+(adv)|two times
+twopence|1
+(noun)|tuppence|coin (generic term)
+twopenny|1
+(adj)|sixpenny|threepenny|tuppeny|two-a-penny|twopenny-halfpenny|cheap (similar term)|inexpensive (similar term)
+twopenny-halfpenny|1
+(adj)|sixpenny|threepenny|twopenny|tuppeny|two-a-penny|cheap (similar term)|inexpensive (similar term)
+twoscore|1
+(adj)|forty|40|xl|cardinal (similar term)
+twosome|2
+(noun)|couple|pair|twain|brace|span|yoke|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|couple|duo|duet|pair (generic term)
+twyla tharp|1
+(noun)|Tharp|Twyla Tharp|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|choreographer (generic term)
+tx|1
+(noun)|Texas|Lone-Star State|TX|American state (generic term)
+tyan shan|1
+(noun)|Tien Shan|Tyan Shan|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+tyche|1
+(noun)|Tyche|Greek deity (generic term)
+tycho brahe|1
+(noun)|Brahe|Tycho Brahe|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+tycoon|1
+(noun)|baron|big businessman|business leader|king|magnate|mogul|power|top executive|businessman (generic term)|man of affairs (generic term)
+tying|1
+(noun)|ligature|fastening (generic term)|attachment (generic term)
+tying up|1
+(noun)|docking|moorage|dockage|arrival (generic term)
+tyiyn|1
+(noun)|Kyrgyzstani monetary unit (generic term)
+tyke|3
+(noun)|Tyke|English person (generic term)
+(noun)|peasant|barbarian|boor|churl|Goth|tike|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|child|kid|youngster|minor|shaver|nipper|small fry|tiddler|tike|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+tylenchidae|1
+(noun)|Tylenchidae|family Tylenchidae|worm family (generic term)
+tylenchus|1
+(noun)|Tylenchus|genus Tylenchus|worm genus (generic term)
+tylenchus tritici|1
+(noun)|wheatworm|wheat eel|wheat eelworm|Tylenchus tritici|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+tylenol|1
+(noun)|acetaminophen|Datril|Tylenol|Panadol|Phenaphen|Tempra|Anacin III|analgesic (generic term)|anodyne (generic term)|painkiller (generic term)|pain pill (generic term)
+tyler|2
+(noun)|Tyler|John Tyler|President Tyler|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Tyler|town (generic term)
+tympan|1
+(noun)|drum|membranophone|percussion instrument (generic term)|percussive instrument (generic term)
+tympani|1
+(noun)|kettle|kettledrum|tympanum|timpani|percussion instrument (generic term)|percussive instrument (generic term)
+tympanic|2
+(adj)|percussion instrument|percussive instrument (related term)
+(adj)|membrane|tissue layer (related term)
+tympanic bone|1
+(noun)|bone (generic term)|os (generic term)
+tympanic cavity|1
+(noun)|middle ear|tympanum|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+tympanic membrane|1
+(noun)|eardrum|tympanum|myringa|membrane (generic term)|tissue layer (generic term)
+tympanic vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+tympanist|1
+(noun)|timpanist|drummer (generic term)
+tympanites|1
+(noun)|dilatation (generic term)|distension (generic term)|distention (generic term)
+tympanitic|1
+(adj)|dilatation|distension|distention (related term)
+tympanitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+tympanoplasty|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+tympanuchus|1
+(noun)|Tympanuchus|genus Tympanuchus|bird genus (generic term)
+tympanuchus cupido|1
+(noun)|greater prairie chicken|Tympanuchus cupido|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+tympanuchus cupido cupido|1
+(noun)|heath hen|Tympanuchus cupido cupido|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+tympanuchus pallidicinctus|1
+(noun)|lesser prairie chicken|Tympanuchus pallidicinctus|prairie chicken (generic term)|prairie grouse (generic term)|prairie fowl (generic term)
+tympanum|3
+(noun)|middle ear|tympanic cavity|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|eardrum|tympanic membrane|myringa|membrane (generic term)|tissue layer (generic term)
+(noun)|kettle|kettledrum|tympani|timpani|percussion instrument (generic term)|percussive instrument (generic term)
+tyndale|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+tyndall|1
+(noun)|Tyndall|John Tyndall|physicist (generic term)
+tyndall effect|1
+(noun)|Tyndall effect|optical phenomenon (generic term)
+tyne|1
+(noun)|Tyne|River Tyne|Tyne River|river (generic term)
+tyne river|1
+(noun)|Tyne|River Tyne|Tyne River|river (generic term)
+type|8
+(noun)|kind (generic term)|sort (generic term)|form (generic term)|variety (generic term)|antitype (antonym)
+(noun)|character|eccentric|case|adult (generic term)|grownup (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|character (generic term)|grapheme (generic term)|graphic symbol (generic term)
+(noun)|block (generic term)
+(noun)|symbol (generic term)
+(verb)|typewrite|write (generic term)
+(verb)|typecast|identify (generic term)
+type a|1
+(noun)|A|type A|group A|blood group (generic term)|blood type (generic term)
+type ab|1
+(noun)|AB|type AB|group AB|blood group (generic term)|blood type (generic term)
+type b|1
+(noun)|B|type B|group B|blood group (generic term)|blood type (generic term)
+type family|1
+(noun)|type (generic term)
+type genus|1
+(noun)|genus (generic term)
+type i allergic reaction|1
+(noun)|immediate allergy|atopy|atopic allergy|type I allergic reaction|allergy (generic term)|allergic reaction (generic term)
+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 (generic term)|DM (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+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 (generic term)|DM (generic term)
+type iv allergic reaction|1
+(noun)|delayed allergy|type IV allergic reaction|allergy (generic term)|allergic reaction (generic term)
+type metal|1
+(noun)|alloy (generic term)|metal (generic term)
+type o|1
+(noun)|O|type O|group O|blood group (generic term)|blood type (generic term)
+type of architecture|1
+(noun)|architectural style|style of architecture|art form (generic term)
+type species|1
+(noun)|species (generic term)
+type specimen|1
+(noun)|holotype|model (generic term)|example (generic term)
+typecast|2
+(verb)|cast (generic term)
+(verb)|type|identify (generic term)
+typed|1
+(adj)|typewritten|written (similar term)
+typeface|1
+(noun)|font|fount|face|type (generic term)
+typescript|1
+(noun)|matter (generic term)
+typeset|1
+(verb)|set|print (generic term)|impress (generic term)
+typesetter|1
+(noun)|compositor|setter|typographer|printer (generic term)|pressman (generic term)
+typesetting machine|1
+(noun)|printer (generic term)|printing machine (generic term)
+typewrite|1
+(verb)|type|write (generic term)
+typewriter|1
+(noun)|character printer (generic term)|character-at-a-time printer (generic term)|serial printer (generic term)
+typewriter carriage|1
+(noun)|carriage (generic term)
+typewriter font|1
+(noun)|constant-width font|fixed-width font|monospaced font|font (generic term)|fount (generic term)|typeface (generic term)|face (generic term)|proportional font (antonym)
+typewriter keyboard|1
+(noun)|keyboard (generic term)
+typewriter paper|1
+(noun)|typing paper|writing paper (generic term)
+typewriter ribbon|1
+(noun)|ribbon|strip (generic term)|slip (generic term)
+typewriting|1
+(noun)|typing|writing (generic term)
+typewritten|1
+(adj)|typed|written (similar term)
+typha|1
+(noun)|Typha|genus Typha|monocot genus (generic term)|liliopsid genus (generic term)
+typha angustifolia|1
+(noun)|lesser bullrush|narrow-leaf cattail|narrow-leaved reedmace|soft flag|Typha angustifolia|cattail (generic term)
+typha latifolia|1
+(noun)|cat's-tail|bullrush|bulrush|nailrod|reed mace|reedmace|Typha latifolia|cattail (generic term)
+typhaceae|1
+(noun)|Typhaceae|family Typhaceae|cattail family|monocot family (generic term)|liliopsid family (generic term)
+typhlopidae|1
+(noun)|Typhlopidae|family Typhlopidae|reptile family (generic term)
+typhoeus|1
+(noun)|Typhoeus|mythical monster (generic term)|mythical creature (generic term)
+typhoid|1
+(noun)|typhoid fever|enteric fever|infectious disease (generic term)
+typhoid bacillus|1
+(noun)|Salmonella typhosa|Salmonella typhi|salmonella (generic term)
+typhoid bacteriophage|1
+(noun)|bacteriophage (generic term)|phage (generic term)
+typhoid fever|1
+(noun)|typhoid|enteric fever|infectious disease (generic term)
+typhoid mary|1
+(noun)|Mallon|Mary Mallon|Typhoid Mary|carrier (generic term)|immune carrier (generic term)
+typhon|1
+(noun)|Typhon|mythical monster (generic term)|mythical creature (generic term)
+typhoon|1
+(noun)|cyclone (generic term)
+typhus|1
+(noun)|typhus fever|rickettsial disease (generic term)|rickettsiosis (generic term)
+typhus fever|1
+(noun)|typhus|rickettsial disease (generic term)|rickettsiosis (generic term)
+typic|1
+(adj)|emblematic|exemplary|typical (similar term)
+typical|3
+(adj)|emblematic (similar term)|exemplary (similar term)|typic (similar term)|representative (similar term)|regular (similar term)|veritable (similar term)|true (similar term)|characteristic (related term)|atypical (antonym)
+(adj)|distinctive|characteristic (similar term)
+(adj)|normal (similar term)
+typical jerboa|1
+(noun)|jerboa (generic term)
+typicality|1
+(noun)|normality (generic term)|normalcy (generic term)|atypicality (antonym)
+typically|1
+(adv)|atypically (antonym)
+typification|2
+(noun)|exemplification|representational process (generic term)
+(noun)|representation (generic term)
+typify|2
+(verb)|epitomize|epitomise|typify (generic term)|symbolize (generic term)|symbolise (generic term)|stand for (generic term)|represent (generic term)
+(verb)|symbolize|symbolise|stand for|represent|mean (generic term)|intend (generic term)
+typing|1
+(noun)|typewriting|writing (generic term)
+typing paper|1
+(noun)|typewriter paper|writing paper (generic term)
+typing pool|1
+(noun)|pool (generic term)
+typist|1
+(noun)|employee (generic term)
+typo|1
+(noun)|misprint|erratum|typographical error|literal error|literal|error (generic term)|mistake (generic term)
+typographer|1
+(noun)|compositor|typesetter|setter|printer (generic term)|pressman (generic term)
+typographic|1
+(adj)|typographical|trade|craft (related term)
+typographical|1
+(adj)|typographic|trade|craft (related term)
+typographical error|1
+(noun)|misprint|erratum|typo|literal error|literal|error (generic term)|mistake (generic term)
+typography|2
+(noun)|trade (generic term)|craft (generic term)
+(noun)|composition|printing (generic term)|printing process (generic term)
+typology|1
+(noun)|categorization (generic term)|categorisation (generic term)|classification (generic term)|compartmentalization (generic term)|compartmentalisation (generic term)|assortment (generic term)
+tyr|1
+(noun)|Tyr|Tyrr|Norse deity (generic term)
+tyramine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+tyranni|1
+(noun)|Tyranni|suborder Tyranni|animal order (generic term)
+tyrannic|1
+(adj)|tyrannical|autocracy|autarchy (related term)
+tyrannical|3
+(adj)|tyrannic|autocracy|autarchy (related term)
+(adj)|oppressive|tyrannous|domineering (similar term)
+(adj)|authoritarian|autocratic|dictatorial|despotic|undemocratic (similar term)
+tyrannicide|1
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+tyrannid|1
+(noun)|passerine (generic term)|passeriform bird (generic term)
+tyrannidae|1
+(noun)|Tyrannidae|superfamily Tyrannidae|bird family (generic term)
+tyrannise|2
+(verb)|tyrannize|grind down|dictate (generic term)
+(verb)|tyrannize|domineer|strong-arm (generic term)|bully (generic term)|browbeat (generic term)|bullyrag (generic term)|ballyrag (generic term)|boss around (generic term)|hector (generic term)|push around (generic term)
+tyrannize|2
+(verb)|tyrannise|grind down|dictate (generic term)
+(verb)|tyrannise|domineer|strong-arm (generic term)|bully (generic term)|browbeat (generic term)|bullyrag (generic term)|ballyrag (generic term)|boss around (generic term)|hector (generic term)|push around (generic term)
+tyrannosaur|1
+(noun)|tyrannosaurus|Tyrannosaurus rex|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+tyrannosaurus|1
+(noun)|tyrannosaur|Tyrannosaurus rex|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+tyrannosaurus rex|1
+(noun)|tyrannosaur|tyrannosaurus|Tyrannosaurus rex|theropod (generic term)|theropod dinosaur (generic term)|bird-footed dinosaur (generic term)
+tyrannous|1
+(adj)|oppressive|tyrannical|domineering (similar term)
+tyrannus|1
+(noun)|Tyrannus|genus Tyrannus|bird genus (generic term)
+tyrannus domenicensis domenicensis|1
+(noun)|grey kingbird|gray kingbird|petchary|Tyrannus domenicensis domenicensis|kingbird (generic term)|Tyrannus tyrannus (generic term)
+tyrannus tyrannus|1
+(noun)|kingbird|Tyrannus tyrannus|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+tyrannus vociferans|1
+(noun)|Cassin's kingbird|Tyrannus vociferans|kingbird (generic term)|Tyrannus tyrannus (generic term)
+tyranny|2
+(noun)|dictatorship|absolutism|authoritarianism|Caesarism|despotism|monocracy|one-man rule|shogunate|Stalinism|totalitarianism|autocracy (generic term)|autarchy (generic term)
+(noun)|absolutism|despotism|dominance (generic term)|ascendance (generic term)|ascendence (generic term)|ascendancy (generic term)|ascendency (generic term)|control (generic term)
+tyrant|3
+(noun)|autocrat|despot|dictator (generic term)|potentate (generic term)
+(noun)|ruler (generic term)|swayer (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+tyrant bird|1
+(noun)|New World flycatcher|flycatcher|tyrant flycatcher|tyrannid (generic term)
+tyrant flycatcher|1
+(noun)|New World flycatcher|flycatcher|tyrant bird|tyrannid (generic term)
+tyre|2
+(noun)|Sur|Tyre|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|tire|hoop (generic term)|ring (generic term)
+tyrian purple|2
+(noun)|Tyrian purple|dye (generic term)|dyestuff (generic term)
+(noun)|Tyrian purple|reddish purple (generic term)|royal purple (generic term)
+tyro|1
+(noun)|novice|beginner|tiro|initiate|unskilled person (generic term)
+tyrocidin|1
+(noun)|tyrocidine|antibiotic (generic term)|antibiotic drug (generic term)
+tyrocidine|1
+(noun)|tyrocidin|antibiotic (generic term)|antibiotic drug (generic term)
+tyrol|1
+(noun)|Tyrol|Tirol|state (generic term)|province (generic term)
+tyrolean|2
+(adj)|Tyrolean|Tyrolese|state|province (related term)
+(noun)|hat (generic term)|chapeau (generic term)|lid (generic term)
+tyrolese|1
+(adj)|Tyrolean|Tyrolese|state|province (related term)
+tyrosine|1
+(noun)|amino acid (generic term)|aminoalkanoic acid (generic term)
+tyrosine kinase inhibitor|1
+(noun)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+tyrosinemia|1
+(noun)|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)
+tyrothricin|1
+(noun)|antibiotic (generic term)|antibiotic drug (generic term)
+tyrr|1
+(noun)|Tyr|Tyrr|Norse deity (generic term)
+tyrrhenian sea|1
+(noun)|Tyrrhenian Sea|sea (generic term)
+tyson|1
+(noun)|Tyson|Mike Tyson|Michael Gerald Tyson|prizefighter (generic term)|gladiator (generic term)
+tyto|1
+(noun)|Tyto|genus Tyto|bird genus (generic term)
+tyto alba|1
+(noun)|barn owl|Tyto alba|owl (generic term)|bird of Minerva (generic term)|bird of night (generic term)|hooter (generic term)
+tytonidae|1
+(noun)|Tytonidae|family Tytonidae|bird family (generic term)
+tyyn|1
+(noun)|Uzbekistani monetary unit (generic term)
+tzar|1
+(noun)|czar|tsar|sovereign (generic term)|crowned head (generic term)|monarch (generic term)
+tzara|1
+(noun)|Tzara|Tristan Tzara|Samuel Rosenstock|poet (generic term)
+tzarina|1
+(noun)|czarina|tsarina|czaritza|tsaritsa|female aristocrat (generic term)
+tzarist|1
+(adj)|czarist|czaristic|tsarist|tsaristic|tyrant|autocrat|despot (related term)
+tzetze|1
+(noun)|tsetse fly|tsetse|tzetze fly|glossina|fly (generic term)
+tzetze fly|1
+(noun)|tsetse fly|tsetse|tzetze|glossina|fly (generic term)
+u|4
+(adj)|upper-class (similar term)
+(noun)|uracil|U|nucleotide (generic term)
+(noun)|uranium|U|atomic number 92|metallic element (generic term)|metal (generic term)
+(noun)|U|letter u|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+u-boat|1
+(noun)|submarine|pigboat|sub|U-boat|submersible (generic term)|submersible warship (generic term)
+u-drive|1
+(noun)|car rental|hire car|rent-a-car|self-drive|you-drive|lease (generic term)|rental (generic term)|letting (generic term)
+u-shaped|1
+(adj)|U-shaped|formed (similar term)
+u-turn|1
+(noun)|reversion (generic term)|reverse (generic term)|reversal (generic term)|turnabout (generic term)|turnaround (generic term)
+u. s. air force|1
+(noun)|United States Air Force|U. S. Air Force|US Air Force|Air Force|USAF|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+u. s. army|1
+(noun)|United States Army|US Army|U. S. Army|Army|USA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+u. s. army special forces|1
+(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division (generic term)
+u. s. coast guard|1
+(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard (generic term)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+u. s. code|1
+(noun)|United States Code|U. S. Code|legal code (generic term)
+u.k.|1
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+u.s.|2
+(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government (generic term)
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+u.s. 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 (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+u.s. congress|1
+(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+u.s. government|1
+(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government (generic term)
+u.s. 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 (generic term)
+u.s. 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 (generic term)
+u.s. mint|1
+(noun)|United States Mint|U.S. Mint|US Mint|mint (generic term)
+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 (generic term)
+u.s. senate|1
+(noun)|United States Senate|U.S. Senate|US Senate|Senate|senate (generic term)
+u.s. waters|1
+(noun)|United States waters|U.S. waters|territorial waters (generic term)
+u.s.a.|1
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+u308|1
+(noun)|yellowcake|U308|compound (generic term)|chemical compound (generic term)
+uakari|1
+(noun)|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+ubermensch|1
+(noun)|demigod|superman|Ubermensch|leader (generic term)
+ubiety|1
+(noun)|presence (generic term)
+ubiquinone|1
+(noun)|coenzyme Q|quinone (generic term)|benzoquinone (generic term)|coenzyme (generic term)
+ubiquitous|1
+(adj)|omnipresent|present (similar term)
+ubiquitousness|1
+(noun)|ubiquity|omnipresence|presence (generic term)
+ubiquity|1
+(noun)|ubiquitousness|omnipresence|presence (generic term)
+ubykh|1
+(noun)|Ubykh|Caucasian (generic term)|Caucasian language (generic term)
+uca|1
+(noun)|Uca|genus Uca|arthropod genus (generic term)
+uda|1
+(noun)|Ulster Defense Association|UDA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+udder|1
+(noun)|bag|mammary gland (generic term)|mamma (generic term)
+udmurt|2
+(noun)|Udmurt|Votyak|Russian (generic term)
+(noun)|Udmurt|Votyak|Permic (generic term)
+udometer|1
+(noun)|rain gauge|rain gage|pluviometer|gauge (generic term)|gage (generic term)
+ufa|1
+(noun)|Ufa|city (generic term)|metropolis (generic term)|urban center (generic term)
+ufo|1
+(noun)|unidentified flying object|UFO|flying saucer|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+uganda|1
+(noun)|Uganda|Republic of Uganda|African country (generic term)|African nation (generic term)
+ugandan|2
+(adj)|Ugandan|African country|African nation (related term)
+(noun)|Ugandan|African (generic term)
+ugandan monetary unit|1
+(noun)|Ugandan monetary unit|monetary unit (generic term)
+ugandan shilling|1
+(noun)|Ugandan shilling|shilling|Ugandan monetary unit (generic term)
+ugaritic|1
+(noun)|Ugaritic|Canaanitic (generic term)|Canaanitic language (generic term)
+ugli|1
+(noun)|tangelo|ugli fruit|edible fruit (generic term)
+ugli fruit|2
+(noun)|tangelo|tangelo tree|Citrus tangelo|citrus (generic term)|citrus tree (generic term)
+(noun)|tangelo|ugli|edible fruit (generic term)
+uglify|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|beautify (antonym)
+ugliness|2
+(noun)|appearance (generic term)|visual aspect (generic term)|beauty (antonym)
+(noun)|nefariousness|wickedness|vileness|evil (generic term)|evilness (generic term)
+ugly|4
+(adj)|disfigured (similar term)|evil-looking (similar term)|fugly (similar term)|grotesque (similar term)|monstrous (similar term)|unnatural (similar term)|hideous (similar term)|repulsive (similar term)|ill-favored (similar term)|ill-favoured (similar term)|scrofulous (similar term)|unlovely (similar term)|unpicturesque (similar term)|unsightly (similar term)|displeasing (related term)|unattractive (related term)|awkward (related term)|beautiful (antonym)
+(adj)|surly|ill-natured (similar term)
+(adj)|despicable|vile|slimy|unworthy|worthless|wretched|evil (similar term)
+(adj)|atrocious|frightful|horrifying|horrible|alarming (similar term)
+ugly duckling|1
+(noun)|anomaly (generic term)|unusual person (generic term)
+ugo buoncompagni|1
+(noun)|Gregory|Gregory XIII|Ugo Buoncompagni|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+ugrian|1
+(noun)|Ugric|Ugrian|Finno-Ugric (generic term)|Finno-Ugrian (generic term)
+ugric|1
+(noun)|Ugric|Ugrian|Finno-Ugric (generic term)|Finno-Ugrian (generic term)
+uhf|1
+(noun)|ultrahigh frequency|UHF|radio frequency (generic term)
+uhland|1
+(noun)|Uhland|Johann Ludwig Uhland|poet (generic term)
+uighur|3
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+(noun)|Uighur|Uigur|Uygur|script (generic term)
+uigur|3
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+(noun)|Uighur|Uigur|Uygur|script (generic term)
+uintathere|1
+(noun)|dinoceras|dinocerate (generic term)
+uintatheriidae|1
+(noun)|Uintatheriidae|family Uintatheriidae|mammal family (generic term)
+uintatherium|1
+(noun)|Uintatherium|genus Uintatherium|mammal genus (generic term)
+uk|1
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+ukase|1
+(noun)|imperial decree (generic term)
+uke|1
+(noun)|ukulele|guitar (generic term)
+ukraine|1
+(noun)|Ukraine|Ukrayina|country (generic term)|state (generic term)|land (generic term)
+ukrainian|2
+(adj)|Ukrainian|country|state|land (related term)
+(noun)|Ukrainian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+ukranian|1
+(noun)|Ukranian|European (generic term)
+ukranian monetary unit|1
+(noun)|Ukranian monetary unit|monetary unit (generic term)
+ukrayina|1
+(noun)|Ukraine|Ukrayina|country (generic term)|state (generic term)|land (generic term)
+ukulele|1
+(noun)|uke|guitar (generic term)
+ulaanbaatar|1
+(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital (generic term)
+ulalgia|1
+(noun)|pain (generic term)|hurting (generic term)
+ulama|1
+(noun)|ulema|body (generic term)
+ulan bator|1
+(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital (generic term)
+ulanova|1
+(noun)|Ulanova|Galina Ulanova|Galina Sergeevna Ulanova|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+ulatrophia|1
+(noun)|periodontal disease (generic term)|periodontitis (generic term)
+ulcer|1
+(noun)|ulceration|lesion (generic term)
+ulcer diet|1
+(noun)|bland diet|diet (generic term)
+ulcerate|2
+(verb)|change (generic term)
+(verb)|affect (generic term)
+ulcerated|1
+(adj)|cankerous|ulcerous|unhealthy (similar term)
+ulceration|2
+(noun)|ulcer|lesion (generic term)
+(noun)|organic process (generic term)|biological process (generic term)
+ulcerative|1
+(adj)|lesion (related term)
+ulcerative colitis|1
+(noun)|colitis (generic term)|inflammatory bowel disease (generic term)
+ulcerous|1
+(adj)|cankerous|ulcerated|unhealthy (similar term)
+ulema|1
+(noun)|ulama|body (generic term)
+ulemorrhagia|1
+(noun)|bleeding (generic term)|hemorrhage (generic term)|haemorrhage (generic term)
+ulex|1
+(noun)|Ulex|genus Ulex|rosid dicot genus (generic term)
+ulex europaeus|1
+(noun)|gorse|furze|whin|Irish gorse|Ulex europaeus|shrub (generic term)|bush (generic term)
+ulfila|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+ulfilas|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+ulitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+ull|1
+(noun)|Ull|Ullr|Norse deity (generic term)
+ullage|1
+(noun)|indefinite quantity (generic term)
+ullr|1
+(noun)|Ull|Ullr|Norse deity (generic term)
+ulmaceae|1
+(noun)|Ulmaceae|family Ulmaceae|elm family|dicot family (generic term)|magnoliopsid family (generic term)
+ulmus|1
+(noun)|Ulmus|genus Ulmus|dicot genus (generic term)|magnoliopsid genus (generic term)
+ulmus alata|1
+(noun)|winged elm|wing elm|Ulmus alata|elm (generic term)|elm tree (generic term)
+ulmus americana|1
+(noun)|American elm|white elm|water elm|rock elm|Ulmus americana|elm (generic term)|elm tree (generic term)
+ulmus campestris sarniensis|1
+(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+ulmus campestris wheatleyi|1
+(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+ulmus carpinifolia|1
+(noun)|smooth-leaved elm|European field elm|Ulmus carpinifolia|elm (generic term)|elm tree (generic term)
+ulmus crassifolia|1
+(noun)|cedar elm|Ulmus crassifolia|elm (generic term)|elm tree (generic term)
+ulmus glabra|1
+(noun)|witch elm|wych elm|Ulmus glabra|elm (generic term)|elm tree (generic term)
+ulmus hollandica|1
+(noun)|Dutch elm|Ulmus hollandica|elm (generic term)|elm tree (generic term)
+ulmus hollandica vegetata|1
+(noun)|Huntingdon elm|Ulmus hollandica vegetata|elm (generic term)|elm tree (generic term)
+ulmus laevis|1
+(noun)|water elm|Ulmus laevis|elm (generic term)|elm tree (generic term)
+ulmus parvifolia|1
+(noun)|Chinese elm|Ulmus parvifolia|elm (generic term)|elm tree (generic term)
+ulmus procera|1
+(noun)|English elm|European elm|Ulmus procera|elm (generic term)|elm tree (generic term)
+ulmus pumila|1
+(noun)|Siberian elm|Chinese elm|dwarf elm|Ulmus pumila|elm (generic term)|elm tree (generic term)
+ulmus rubra|1
+(noun)|slippery elm|red elm|Ulmus rubra|elm (generic term)|elm tree (generic term)
+ulmus sarniensis|1
+(noun)|Jersey elm|guernsey elm|wheately elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+ulmus serotina|1
+(noun)|September elm|red elm|Ulmus serotina|elm (generic term)|elm tree (generic term)
+ulmus thomasii|1
+(noun)|rock elm|Ulmus thomasii|elm (generic term)|elm tree (generic term)
+ulna|1
+(noun)|elbow bone|arm bone (generic term)
+ulnar|1
+(adj)|arm bone (related term)
+ulnar artery|1
+(noun)|arteria ulnaris|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+ulnar nerve|1
+(noun)|cubital nerve|nervus ulnaris|nerve (generic term)|nervus (generic term)
+ulnar vein|1
+(noun)|vena ulnaris|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+ulrich zwingli|1
+(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+ulster|2
+(noun)|Ulster|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|greatcoat (generic term)|overcoat (generic term)|topcoat (generic term)
+ulster defense association|1
+(noun)|Ulster Defense Association|UDA|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+ult|1
+(adj)|ultimo|past (similar term)
+ulterior|3
+(adj)|subterranean|subterraneous|covert (similar term)
+(adj)|distant (similar term)
+(adj)|future|later|subsequent (similar term)
+ulteriority|1
+(noun)|quality (generic term)
+ultima|1
+(noun)|syllable (generic term)
+ultima thule|1
+(noun)|Thule|ultima Thule|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+ultimacy|1
+(noun)|ultimateness|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+ultimate|3
+(adj)|crowning (similar term)|eventual (similar term)|final (similar term)|last (similar term)|net (similar term)|last-ditch (similar term)|supreme (similar term)|proximate (antonym)
+(adj)|last (similar term)
+(noun)|quality (generic term)
+ultimate frisbee|1
+(noun)|field game (generic term)
+ultimately|1
+(adv)|finally|in the end|at last|at long last
+ultimateness|1
+(noun)|ultimacy|degree (generic term)|level (generic term)|stage (generic term)|point (generic term)
+ultimatum|1
+(noun)|demand (generic term)
+ultimo|1
+(adj)|ult|past (similar term)
+ultra|1
+(adj)|extremist|radical|immoderate (similar term)
+ultra vires|1
+(adj)|intra vires (antonym)
+ultracef|1
+(noun)|cefadroxil|Ultracef|cephalosporin (generic term)|Mefoxin (generic term)
+ultracentrifugation|1
+(noun)|centrifugation (generic term)
+ultracentrifuge|2
+(noun)|centrifuge (generic term)|extractor (generic term)|separator (generic term)
+(verb)|centrifuge (generic term)|centrifugate (generic term)
+ultraconservative|2
+(adj)|conservative (similar term)
+(noun)|reactionary|extreme right-winger|conservative (generic term)|conservativist (generic term)
+ultrahigh frequency|1
+(noun)|UHF|radio frequency (generic term)
+ultramarine|3
+(adj)|chromatic (similar term)
+(noun)|ultramarine blue|pigment (generic term)
+(noun)|blue (generic term)|blueness (generic term)
+ultramarine blue|1
+(noun)|ultramarine|pigment (generic term)
+ultramicroscope|1
+(noun)|dark-field microscope|light microscope (generic term)
+ultramicroscopic|1
+(adj)|light microscope (related term)
+ultramodern|1
+(adj)|modern (similar term)
+ultramontane|4
+(adj)|policy (related term)
+(adj)|transalpine|tramontane (similar term)|transmontane (similar term)
+(adj)|cisalpine|cismontane (similar term)
+(noun)|Roman Catholic (generic term)
+ultramontanism|1
+(noun)|policy (generic term)
+ultranationalism|1
+(noun)|chauvinism|jingoism|superpatriotism|patriotism (generic term)|nationalism (generic term)
+ultranationalistic|1
+(adj)|chauvinistic|flag-waving|jingoistic|nationalistic|superpatriotic|patriotic (similar term)|loyal (similar term)
+ultrasonic|1
+(adj)|supersonic|inaudible (similar term)|unhearable (similar term)
+ultrasonography|1
+(noun)|sonography|echography|ultrasound|imaging (generic term)|tomography (generic term)|prenatal diagnosis (generic term)
+ultrasound|2
+(noun)|sound (generic term)
+(noun)|sonography|ultrasonography|echography|imaging (generic term)|tomography (generic term)|prenatal diagnosis (generic term)
+ultrasuede|1
+(noun)|Ultrasuede|suede cloth (generic term)|suede (generic term)
+ultraviolet|2
+(adj)|invisible (similar term)|unseeable (similar term)
+(noun)|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV|actinic radiation (generic term)|actinic ray (generic term)
+ultraviolet illumination|1
+(noun)|ultraviolet|ultraviolet radiation|ultraviolet light|UV|actinic radiation (generic term)|actinic ray (generic term)
+ultraviolet lamp|1
+(noun)|ultraviolet source|source of illumination (generic term)
+ultraviolet light|1
+(noun)|ultraviolet|ultraviolet radiation|ultraviolet illumination|UV|actinic radiation (generic term)|actinic ray (generic term)
+ultraviolet radiation|1
+(noun)|ultraviolet|ultraviolet light|ultraviolet illumination|UV|actinic radiation (generic term)|actinic ray (generic term)
+ultraviolet source|1
+(noun)|ultraviolet lamp|source of illumination (generic term)
+ultraviolet spectrum|1
+(noun)|spectrum (generic term)
+ulugh muz tagh|1
+(noun)|Ulugh Muztagh|Ulugh Muz Tagh|mountain peak (generic term)
+ulugh muztagh|1
+(noun)|Ulugh Muztagh|Ulugh Muz Tagh|mountain peak (generic term)
+ululate|1
+(verb)|howl|wail|roar|yawl|yaup|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+ululation|1
+(noun)|howl|howling|utterance (generic term)|vocalization (generic term)
+ulva|1
+(noun)|Ulva|genus Ulva|protoctist genus (generic term)
+ulvaceae|1
+(noun)|Ulvaceae|family Ulvaceae|sea-lettuce family|protoctist family (generic term)
+ulvales|1
+(noun)|Ulvales|order Ulvales|protoctist order (generic term)
+ulvophyceae|1
+(noun)|Ulvophyceae|class Ulvophyceae|class (generic term)
+ulysses|1
+(noun)|Ulysses|mythical being (generic term)
+ulysses grant|1
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+ulysses s. grant|1
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+ulysses simpson grant|1
+(noun)|Grant|Ulysses Grant|Ulysses S. Grant|Ulysses Simpson Grant|Hiram Ulysses Grant|President Grant|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+uma|2
+(noun)|Uma|Hindu deity (generic term)
+(noun)|Uma|genus Uma|reptile genus (generic term)
+uma notata|1
+(noun)|fringe-toed lizard|Uma notata|iguanid (generic term)|iguanid lizard (generic term)
+umar al-mukhtar forces|1
+(noun)|Forces of Umar Al-Mukhtar|Umar al-Mukhtar Forces|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+umayyad|1
+(noun)|Umayyad|Ommiad|Omayyad|dynasty (generic term)
+umbel|1
+(noun)|inflorescence (generic term)
+umbel-like|1
+(adj)|umbellate|convex (similar term)|bulging (similar term)
+umbellales|1
+(noun)|Umbellales|order Umbellales|plant order (generic term)
+umbellar|1
+(adj)|umbellate|inflorescence (related term)
+umbellate|2
+(adj)|umbellar|inflorescence (related term)
+(adj)|umbel-like|convex (similar term)|bulging (similar term)
+umbellifer|1
+(noun)|umbelliferous plant|herb (generic term)|herbaceous plant (generic term)
+umbelliferae|1
+(noun)|Umbelliferae|family Umbelliferae|Apiaceae|family Apiaceae|carrot family|rosid dicot family (generic term)
+umbelliferous|1
+(adj)|rosid dicot family (related term)
+umbelliferous plant|1
+(noun)|umbellifer|herb (generic term)|herbaceous plant (generic term)
+umbelliform|1
+(adj)|inflorescence (related term)
+umbellularia|1
+(noun)|Umbellularia|genus Umbellularia|magnoliid dicot genus (generic term)
+umbellularia californica|1
+(noun)|California laurel|California bay tree|Oregon myrtle|pepperwood|spice tree|sassafras laurel|California olive|mountain laurel|Umbellularia californica|laurel (generic term)
+umber|3
+(adj)|chromatic (similar term)
+(noun)|earth color (generic term)
+(noun)|chocolate|coffee|deep brown|burnt umber|brown (generic term)|brownness (generic term)
+umbilical|2
+(adj)|point (related term)
+(noun)|umbilical cord|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)|funiculus (generic term)|fetal membrane (generic term)
+umbilical cord|1
+(noun)|umbilical|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)|funiculus (generic term)|fetal membrane (generic term)
+umbilical hernia|1
+(noun)|omphalocele|hernia (generic term)|herniation (generic term)
+umbilical vein|1
+(noun)|vena umbilicalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+umbilical vesicle|1
+(noun)|yolk sac|vitelline sac|vesicula umbilicus|sac (generic term)
+umbilicate|1
+(adj)|concave (similar term)
+umbilicus|1
+(noun)|navel|bellybutton|omphalos|omphalus|point (generic term)
+umbo|1
+(noun)|convex shape (generic term)|convexity (generic term)
+umbra|1
+(noun)|shadow (generic term)
+umbrage|1
+(noun)|offense|offence|anger (generic term)|choler (generic term)|ire (generic term)
+umbrageous|2
+(adj)|shady|shadowed|shadowy|shaded (similar term)
+(adj)|indignant|incensed|outraged|angry (similar term)
+umbrella|4
+(adj)|comprehensive (similar term)
+(noun)|canopy (generic term)
+(noun)|defense (generic term)|defence (generic term)|defensive measure (generic term)
+(noun)|union (generic term)|unification (generic term)|uniting (generic term)|conjugation (generic term)|jointure (generic term)
+umbrella-shaped|1
+(adj)|formed (similar term)
+umbrella arum|1
+(noun)|devil's tongue|snake palm|Amorphophallus rivieri|arum (generic term)|aroid (generic term)
+umbrella bird|1
+(noun)|Cephalopterus ornatus|cotinga (generic term)|chatterer (generic term)
+umbrella fern|1
+(noun)|fan fern|Sticherus flabellatus|Gleichenia flabellata|fern (generic term)
+umbrella magnolia|1
+(noun)|umbrella tree|elkwood|elk-wood|Magnolia tripetala|magnolia (generic term)
+umbrella pine|1
+(noun)|stone pine|European nut pine|Pinus pinea|pine (generic term)|pine tree (generic term)|true pine (generic term)
+umbrella plant|3
+(noun)|Indian rhubarb|Darmera peltata|Peltiphyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+(noun)|Eriogonum allenii|eriogonum (generic term)
+(noun)|umbrella sedge|Cyperus alternifolius|sedge (generic term)
+umbrella sedge|1
+(noun)|umbrella plant|Cyperus alternifolius|sedge (generic term)
+umbrella tent|1
+(noun)|tent (generic term)|collapsible shelter (generic term)
+umbrella tree|2
+(noun)|Schefflera actinophylla|Brassaia actinophylla|shrub (generic term)|bush (generic term)
+(noun)|umbrella magnolia|elkwood|elk-wood|Magnolia tripetala|magnolia (generic term)
+umbrellalike|1
+(adj)|rounded (similar term)
+umbrellawort|1
+(noun)|flower (generic term)
+umbria|1
+(noun)|Umbria|Italian region (generic term)
+umbrian|1
+(noun)|Umbrian|Osco-Umbrian (generic term)
+umbrina|1
+(noun)|Umbrina|genus Umbrina|fish genus (generic term)
+umbrina roncador|1
+(noun)|yellowfin croaker|surffish|surf fish|Umbrina roncador|croaker (generic term)
+umbundu|1
+(noun)|Umbundu|Bantu (generic term)|Bantoid language (generic term)
+umlaut|1
+(noun)|dieresis|diaeresis|diacritical mark (generic term)|diacritic (generic term)
+umma|1
+(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community (generic term)
+umma tameer-e-nau|1
+(noun)|Umma Tameer-e-Nau|UTN|nongovernmental organization (generic term)|NGO (generic term)
+ummah|1
+(noun)|Ummah|Umma|Muslim Ummah|Islamic Ummah|Islam Nation|community (generic term)
+ump|1
+(noun)|umpire|official (generic term)
+umpirage|2
+(noun)|mediation (generic term)
+(noun)|officiation|officiating|refereeing|decision making (generic term)|deciding (generic term)
+umpire|2
+(noun)|ump|official (generic term)
+(verb)|referee|judge (generic term)
+umpteen|1
+(adj)|umteen|many (similar term)
+umpteenth|1
+(adj)|umteenth|umptieth|ordinal (similar term)
+umptieth|1
+(adj)|umpteenth|umteenth|ordinal (similar term)
+umteen|1
+(adj)|umpteen|many (similar term)
+umteenth|1
+(adj)|umpteenth|umptieth|ordinal (similar term)
+un|1
+(noun)|United Nations|UN|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+un-american|1
+(adj)|un-American|unpatriotic (similar term)|disloyal (similar term)
+un-come-at-able|1
+(adj)|un-get-at-able|ungetatable|inaccessible (similar term)|unaccessible (similar term)
+un-get-at-able|1
+(adj)|un-come-at-able|ungetatable|inaccessible (similar term)|unaccessible (similar term)
+un agency|1
+(noun)|United Nations agency|UN agency|administrative unit (generic term)|administrative body (generic term)
+unabashed|1
+(adj)|unembarrassed|unashamed (similar term)
+unabated|1
+(adj)|intense (similar term)
+unable|3
+(adj)|able (antonym)
+(adj)|incapable (similar term)
+(adj)|ineffective|ineffectual|impotent (similar term)
+unable to help|1
+(adv)|helplessly|impotently
+unabridged|2
+(adj)|full-length (similar term)|uncut (similar term)|abridged (antonym)
+(noun)|unabridged dictionary|dictionary (generic term)|lexicon (generic term)
+unabridged dictionary|1
+(noun)|unabridged|dictionary (generic term)|lexicon (generic term)
+unabused|1
+(adj)|abused (antonym)
+unaccented|2
+(adj)|atonic|tonic (antonym)
+(adj)|light|weak|unstressed (similar term)
+unacceptability|1
+(noun)|unacceptableness|unsatisfactoriness (generic term)|acceptability (antonym)
+unacceptable|4
+(adj)|unsatisfactory (similar term)
+(adj)|exceptionable (similar term)|objectionable (similar term)|unsatisfactory (related term)|unwelcome (related term)|acceptable (antonym)
+(adj)|impossible|insufferable|unsufferable|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+(adj)|unaccepted|nonstandard (similar term)
+unacceptableness|1
+(noun)|unacceptability|unsatisfactoriness (generic term)|acceptability (antonym)
+unacceptably|1
+(adv)|intolerably|tolerably (antonym)|acceptably (antonym)
+unaccepted|1
+(adj)|unacceptable|nonstandard (similar term)
+unaccessible|1
+(adj)|inaccessible|outback (similar term)|remote (similar term)|deserted (similar term)|pathless (similar term)|roadless (similar term)|trackless (similar term)|untracked (similar term)|untrod (similar term)|untrodden (similar term)|lonely (similar term)|solitary (similar term)|unfrequented (similar term)|unapproachable (similar term)|unreachable (similar term)|unreached (similar term)|out of reach (similar term)|un-come-at-able (similar term)|un-get-at-able (similar term)|ungetatable (similar term)|accessible (antonym)
+unaccommodating|2
+(adj)|unobliging|disobliging (similar term)|uncooperative (similar term)|accommodating (antonym)
+(adj)|unhelpful (similar term)
+unaccompanied|3
+(adj)|a cappella (similar term)|alone (similar term)|lone (similar term)|lonely (similar term)|solitary (similar term)|isolated (similar term)|marooned (similar term)|stranded (similar term)|solo (similar term)|tod (similar term)|unattended (similar term)|accompanied (antonym)
+(adj)|separate (similar term)
+(adv)|alone|solo
+unaccountable|2
+(adj)|unexplainable|inexplicable (similar term)|incomprehensible (similar term)
+(adj)|irresponsible (similar term)
+unaccredited|1
+(adj)|unlicensed|unlicenced|unauthorized (similar term)|unauthorised (similar term)
+unaccustomed|2
+(adj)|new (similar term)|unused (similar term)|accustomed (antonym)
+(adj)|unusual (similar term)
+unachievable|1
+(adj)|unattainable|undoable|unrealizable|impossible (similar term)
+unachievably|1
+(adv)|unattainably
+unacknowledged|2
+(adj)|disowned (similar term)|repudiated (similar term)|unappreciated (similar term)|unsung (similar term)|unvalued (similar term)|unavowed (similar term)|secret (similar term)|unconfessed (similar term)|unrecognized (similar term)|unrecognised (similar term)|unknown (related term)|acknowledged (antonym)
+(adj)|undeclared (similar term)
+unacquainted|2
+(adj)|innocent|uninformed (similar term)
+(adj)|unacquainted with|unfamiliar with|unfamiliar (similar term)
+unacquainted with|1
+(adj)|unacquainted|unfamiliar with|unfamiliar (similar term)
+unacquisitive|1
+(adj)|acquisitive (antonym)
+unactable|1
+(adj)|actable (antonym)
+unadaptability|1
+(noun)|inability (generic term)|unfitness (generic term)|adaptability (antonym)
+unadaptable|1
+(adj)|inflexible (similar term)|rigid (similar term)|unbending (similar term)|adaptable (antonym)
+unadapted|2
+(adj)|unmodified (similar term)
+(adj)|unadjusted|maladjusted (similar term)
+unaddicted|1
+(adj)|clean (similar term)|addicted (antonym)
+unaddressed|1
+(adj)|addressed (antonym)
+unadjustable|1
+(adj)|fixed (similar term)
+unadjusted|2
+(adj)|maladjusted (similar term)|adjusted (antonym)
+(adj)|unadapted|maladjusted (similar term)
+unadmonished|1
+(adj)|unchastened|unrebuked|unreproved|unpunished (similar term)
+unadoptable|1
+(adj)|adoptable (antonym)
+unadorned|1
+(adj)|undecorated|plain (similar term)|bare (similar term)|spare (similar term)|unembellished (similar term)|unornamented (similar term)|untufted (similar term)|plain (related term)|unclothed (related term)|adorned (antonym)
+unadulterated|2
+(adj)|pure (similar term)
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|utter|unmitigated (similar term)
+unadventurous|1
+(adj)|safe (similar term)|cautious (related term)|timid (related term)|adventurous (antonym)
+unadvisable|1
+(adj)|inadvisable|foolish (related term)|imprudent (related term)|advisable (antonym)
+unadvised|2
+(adj)|ill-advised|foolish (related term)|imprudent (related term)|well-advised (antonym)
+(adj)|uninformed (similar term)
+unaerated|1
+(adj)|unoxygenated|unventilated (similar term)
+unaesthetic|1
+(adj)|inaesthetic|inartistic (similar term)|unartistic (similar term)|aesthetic (antonym)
+unaffected|4
+(adj)|immune (similar term)|superior (similar term)|unimpressed (similar term)|uninfluenced (similar term)|unswayed (similar term)|untouched (similar term)|unmoved (related term)|unaffected (related term)|untouched (related term)|affected (antonym)
+(adj)|insensible|insensitive (similar term)
+(adj)|unmoved|untouched|unaffected (related term)|unemotional (related term)|moved (antonym)
+(adj)|lifelike (similar term)|natural (similar term)|unmannered (similar term)|unselfconscious (similar term)|unstilted (similar term)|unstudied (related term)|uncontrived (related term)|affected (antonym)
+unaffectedness|1
+(noun)|naturalness (generic term)|affectedness (antonym)
+unaffecting|1
+(adj)|unmoving (similar term)
+unaffectionate|1
+(adj)|uncaring|unloving (similar term)
+unaffiliated|1
+(adj)|independent (similar term)
+unaffixed|1
+(adj)|loose|affixed (antonym)
+unafraid|2
+(adj)|fearless|unapprehensive (similar term)|unblinking (similar term)|unflinching (similar term)|unintimidated (similar term)|unshrinking (similar term)|unfrightened (similar term)|bold (related term)|brave (related term)|courageous (related term)|afraid (antonym)
+(adj)|secure|untroubled|insecure (antonym)
+unaged|1
+(adj)|green (similar term)|unripe (similar term)|unripened (similar term)|immature (similar term)
+unaggressive|1
+(adj)|nonaggressive|low-pressure (similar term)|peaceful (related term)|unassertive (related term)|aggressive (antonym)
+unagitated|3
+(adj)|nonturbulent (similar term)|unstirred (similar term)|agitated (antonym)
+(adj)|composed (related term)|cool (related term)|quiet (related term)|relaxed (related term)|steady (related term)|unexcited (related term)|agitated (antonym)
+(adj)|calm|serene|tranquil|composed (similar term)
+unai|2
+(noun)|two-toed sloth|unau|Choloepus hoffmanni|sloth (generic term)|tree sloth (generic term)
+(noun)|two-toed sloth|unau|Choloepus didactylus|sloth (generic term)|tree sloth (generic term)
+unaided|1
+(adj)|unassisted (similar term)
+unaired|1
+(adj)|airless|close|stuffy|unventilated (similar term)
+unairworthy|1
+(adj)|airworthy (antonym)
+unalarming|1
+(adj)|calming (similar term)|lulling (similar term)|quietening (similar term)|alarming (antonym)
+unalert|1
+(adj)|unwary (related term)|alert (antonym)
+unalienable|1
+(adj)|inalienable|absolute (similar term)|infrangible (similar term)|inviolable (similar term)|non-negotiable (similar term)|nontransferable (similar term)|unassignable (similar term)|untransferable (similar term)|intrinsic (related term)|intrinsical (related term)|alienable (antonym)
+unalike|1
+(adj)|dissimilar|alike (antonym)
+unalloyed|1
+(adj)|pure (similar term)
+unalterability|2
+(noun)|immutability (generic term)|immutableness (generic term)|fixity (generic term)|alterability (antonym)
+(noun)|fixedness|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)
+unalterable|3
+(adj)|inalterable|incurable (similar term)|final (similar term)|last (similar term)|alterable (antonym)
+(adj)|incommutable (similar term)
+(adj)|changeless|unchangeable (similar term)
+unalterably|1
+(adv)|unchangeably|unassailably|immutably
+unaltered|1
+(adj)|unchanged|dateless (similar term)|timeless (similar term)|in-situ (similar term)|unmoved (similar term)|unedited (similar term)|unreduced (similar term)|unrevised (similar term)|altered (antonym)
+unambiguity|1
+(noun)|unequivocalness|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)|equivocalness (antonym)|ambiguity (antonym)
+unambiguous|2
+(adj)|monosemous (similar term)|clear (related term)|unequivocal (related term)|univocal (related term)|unambiguous (related term)|ambiguous (antonym)
+(adj)|unequivocal|univocal|absolute (similar term)|conclusive (similar term)|straightforward (similar term)|unquestionable (similar term)|unambiguous (related term)|equivocal (antonym)
+unambiguously|2
+(adv)|unequivocally|without ambiguity|ambiguously (antonym)
+(adv)|uniquely
+unambitious|1
+(adj)|ambitionless|shiftless (similar term)|unenterprising (related term)|nonenterprising (related term)|ambitious (antonym)
+unambitiously|1
+(adv)|ambitiously (antonym)
+unamended|1
+(adj)|amended (antonym)
+unamused|1
+(adj)|mirthless|joyless (similar term)
+unamusing|1
+(adj)|unentertaining (similar term)
+unanalyzable|1
+(adj)|undecomposable|simple (similar term)
+unanalyzed|1
+(adj)|crude (similar term)|raw (similar term)|analyzed (antonym)
+unangry|1
+(adj)|angry (antonym)
+unanimated|1
+(adj)|dead (similar term)|lifeless (similar term)|wan (similar term)|animated (antonym)
+unanimity|1
+(noun)|agreement (generic term)|accord (generic term)
+unanimous|2
+(adj)|consentaneous|consentient|accordant (similar term)
+(adj)|solid|whole|undiversified (similar term)
+unanimously|1
+(adv)|nem con|nemine contradicente
+unannealed|1
+(adj)|brittle|untempered (similar term)|unhardened (similar term)
+unannounced|1
+(adj)|unheralded|unpredicted|unexpected (similar term)
+unanswerable|1
+(adj)|incontestable (similar term)|incontestible (similar term)
+unanswered|1
+(adj)|unreciprocated|unrequited|nonreciprocal (similar term)
+unanticipated|1
+(adj)|unforeseen|unlooked-for|out of the blue|unexpected (similar term)
+unapologetic|1
+(adj)|apologetic (antonym)
+unappareled|1
+(adj)|unattired|unclad|undressed|ungarbed|ungarmented|unclothed (similar term)
+unapparent|1
+(adj)|unobvious (similar term)
+unappealable|1
+(adj)|appealable (antonym)
+unappealing|2
+(adj)|unsympathetic|unlikeable|unlikable|sympathetic (antonym)
+(adj)|off-putting (similar term)|unattractive (similar term)|appealing (antonym)
+unappealingly|1
+(adv)|appealingly (antonym)
+unappeasable|1
+(adj)|grim|inexorable|relentless|stern|unforgiving|unrelenting|implacable (similar term)
+unappendaged|1
+(adj)|appendaged (antonym)
+unappetising|1
+(adj)|unappetizing|insipid (similar term)|tasty (related term)|unpalatable (related term)|appetizing (antonym)
+unappetisingness|1
+(noun)|unappetizingness|unpalatability (generic term)|unpalatableness (generic term)|appetizingness (antonym)
+unappetizing|1
+(adj)|unappetising|insipid (similar term)|tasty (related term)|unpalatable (related term)|appetizing (antonym)
+unappetizingness|1
+(noun)|unappetisingness|unpalatability (generic term)|unpalatableness (generic term)|appetizingness (antonym)
+unappreciated|2
+(adj)|thankless|ungratifying|unrewarding (similar term)
+(adj)|unsung|unvalued|unacknowledged (similar term)
+unappreciative|1
+(adj)|ungrateful (similar term)|thankless (similar term)|unthankful (similar term)
+unappreciatively|1
+(adv)|ungratefully|gratefully (antonym)|appreciatively (antonym)
+unapprehensive|1
+(adj)|unafraid (similar term)|fearless (similar term)
+unapproachability|1
+(noun)|aloofness (generic term)|remoteness (generic term)|standoffishness (generic term)|withdrawnness (generic term)|approachability (antonym)
+unapproachable|2
+(adj)|offish (similar term)|standoffish (similar term)|approachable (antonym)
+(adj)|unreachable|unreached|out of reach|inaccessible (similar term)|unaccessible (similar term)
+unarbitrary|1
+(adj)|nonarbitrary|prescribed (similar term)|arbitrary (antonym)
+unarguable|1
+(adj)|inarguable|incontestable (similar term)|incontestible (similar term)
+unarguably|1
+(adv)|undisputedly
+unargumentative|1
+(adj)|noncontentious (similar term)|argumentative (antonym)
+unarm|1
+(verb)|disarm|deprive (generic term)|strip (generic term)|divest (generic term)
+unarmed|2
+(adj)|barehanded (similar term)|clean (similar term)|defenseless (similar term)|defenceless (similar term)|weaponless (similar term)|armed (antonym)
+(adj)|thornless (similar term)|spineless (similar term)|armed (antonym)
+unarmored|2
+(adj)|unarmoured|scaleless (similar term)|armored (antonym)
+(adj)|unarmoured|armored (antonym)
+unarmoured|2
+(adj)|unarmored|scaleless (similar term)|armored (antonym)
+(adj)|unarmored|armored (antonym)
+unarticulate|1
+(adj)|inarticulate|aphasic (similar term)|aphonic (similar term)|voiceless (similar term)|dumb (similar term)|mute (similar term)|silent (similar term)|dumb (similar term)|groaning (similar term)|moaning (similar term)|grunting (similar term)|incoherent (similar term)|tongue-tied (similar term)|mute (similar term)|tongueless (similar term)|unspoken (similar term)|wordless (similar term)|speechless (similar term)|dumb (similar term)|unarticulated (similar term)|uncommunicative (related term)|incommunicative (related term)|articulate (antonym)
+unarticulated|2
+(adj)|unjointed (similar term)|articulated (antonym)
+(adj)|inarticulate (similar term)|unarticulate (similar term)
+unartistic|1
+(adj)|inartistic|inaesthetic (similar term)|unaesthetic (similar term)
+unary|1
+(adj)|single (similar term)
+unary operation|1
+(noun)|monadic operation|operation (generic term)
+unascertainable|1
+(adj)|undiscoverable|indeterminable (similar term)|undeterminable (similar term)
+unascribable|1
+(adj)|unattributable|attributable (antonym)
+unashamed|1
+(adj)|audacious (similar term)|barefaced (similar term)|bodacious (similar term)|bald-faced (similar term)|brassy (similar term)|brazen (similar term)|brazen-faced (similar term)|insolent (similar term)|shameless (similar term)|unblushing (similar term)|unabashed (similar term)|unembarrassed (similar term)|impenitent (related term)|unrepentant (related term)|unremorseful (related term)|ashamed (antonym)
+unashamedly|1
+(adv)|shamelessly|barefacedly|ashamedly (antonym)
+unasked|1
+(adj)|unsolicited|unrequested (similar term)
+unassailable|3
+(adj)|impregnable|inviolable|secure|strong|unattackable|invulnerable (similar term)
+(adj)|untouchable|inviolable (similar term)
+(adj)|unshakable|watertight|bulletproof|incontestable (similar term)|incontestible (similar term)
+unassailably|1
+(adv)|unalterably|unchangeably|immutably
+unassertive|1
+(adj)|nonassertive (similar term)|reticent (similar term)|self-effacing (similar term)|retiring (similar term)|submissive (related term)|timid (related term)|unaggressive (related term)|nonaggressive (related term)|assertive (antonym)
+unassertively|1
+(adv)|assertively (antonym)
+unassertiveness|1
+(noun)|diffidence (generic term)|self-doubt (generic term)|self-distrust (generic term)
+unassignable|1
+(adj)|nontransferable|untransferable|inalienable (similar term)|unalienable (similar term)
+unassigned|1
+(adj)|assigned (antonym)
+unassisted|2
+(adj)|single-handed|unbacked|unsupported (similar term)
+(adj)|naked (similar term)|unaided (similar term)|assisted (antonym)
+unassuming|1
+(adj)|retiring|modest (similar term)
+unassumingness|1
+(noun)|sincerity|naturalness (generic term)
+unassured|1
+(adj)|insecure (similar term)
+unasterisked|1
+(adj)|unstarred|unmarked (similar term)
+unattached|3
+(adj)|unconnected (similar term)
+(adj)|uncommitted|unengaged (similar term)|unpledged (similar term)|unpromised (similar term)|attached (antonym)
+(adj)|free-swimming|vagile (similar term)
+unattackable|1
+(adj)|impregnable|inviolable|secure|strong|unassailable|invulnerable (similar term)
+unattainable|1
+(adj)|unachievable|undoable|unrealizable|impossible (similar term)
+unattainableness|1
+(noun)|impossibility (generic term)|impossibleness (generic term)
+unattainably|1
+(adv)|unachievably
+unattended|3
+(adj)|unsupervised (similar term)
+(adj)|unaccompanied (similar term)
+(adj)|neglected|uncared-for (similar term)
+unattired|1
+(adj)|unappareled|unclad|undressed|ungarbed|ungarmented|unclothed (similar term)
+unattractive|3
+(adj)|homely (similar term)|plain (similar term)|subfusc (similar term)|unprepossessing (similar term)|unpresentable (similar term)|ugly (related term)|uninviting (related term)|unseductive (related term)|attractive (antonym)
+(adj)|unappealing (similar term)
+(adj)|untempting|uninviting (similar term)
+unattractively|1
+(adv)|attractively (antonym)
+unattractiveness|1
+(noun)|ugliness (generic term)|attractiveness (antonym)
+unattributable|1
+(adj)|unascribable|attributable (antonym)
+unau|2
+(noun)|two-toed sloth|unai|Choloepus hoffmanni|sloth (generic term)|tree sloth (generic term)
+(noun)|two-toed sloth|unai|Choloepus didactylus|sloth (generic term)|tree sloth (generic term)
+unauthentic|1
+(adj)|inauthentic|spurious|counterfeit (similar term)|imitative (similar term)
+unauthorised|2
+(adj)|unauthorized|self-appointed (similar term)|unaccredited (similar term)|unlicensed (similar term)|unlicenced (similar term)|illegitimate (related term)|unofficial (related term)|authorized (antonym)
+(adj)|unauthorized|wildcat|unofficial (similar term)
+unauthorized|2
+(adj)|unauthorised|self-appointed (similar term)|unaccredited (similar term)|unlicensed (similar term)|unlicenced (similar term)|illegitimate (related term)|unofficial (related term)|authorized (antonym)
+(adj)|unauthorised|wildcat|unofficial (similar term)
+unauthorized absence|1
+(noun)|absence without leave|desertion (generic term)|abandonment (generic term)|defection (generic term)
+unavailability|1
+(noun)|inaccessibility|inconvenience (generic term)|availability (antonym)|accessibility (antonym)
+unavailable|1
+(adj)|inaccessible (similar term)|unobtainable (similar term)|unprocurable (similar term)|untouchable (similar term)|out of stock (similar term)|available (antonym)
+unavailing|1
+(adj)|futile|ineffectual|otiose|useless (similar term)
+unavenged|1
+(adj)|avenged (antonym)
+unavoidability|1
+(noun)|ineluctability|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+unavoidable|1
+(adj)|ineluctable|inescapable|inevitable (similar term)
+unavoidable casualty|1
+(noun)|act of God|force majeure|vis major|inevitable accident|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+unavoidably|1
+(adv)|inescapably|ineluctably|inevitably
+unavowed|3
+(adj)|sneaking|concealed (similar term)
+(adj)|undeclared (similar term)
+(adj)|secret|unacknowledged (similar term)
+unawakened|2
+(adj)|awakened (antonym)
+(adj)|asleep (similar term)
+unaware|2
+(adj)|incognizant|oblivious (similar term)|unmindful (similar term)|unconscious (similar term)|unsuspecting (similar term)|asleep (related term)|insensible (related term)|unconscious (related term)|aware (antonym)
+(adj)|unwitting|witting (antonym)
+unawareness|1
+(noun)|unknowingness|unconsciousness (generic term)
+unawares|1
+(adv)|short
+unawed|1
+(adj)|aweless (similar term)|awless (similar term)|awed (antonym)
+unbacked|1
+(adj)|single-handed|unassisted|unsupported (similar term)
+unbaffled|1
+(adj)|unconfused|unperplexed (similar term)
+unbalance|4
+(noun)|imbalance|instability|disequilibrium (generic term)|balance (antonym)
+(noun)|derangement|mental unsoundness|insanity (generic term)
+(verb)|balance (antonym)
+(verb)|derange|madden (generic term)|craze (generic term)
+unbalanced|3
+(adj)|imbalanced|labile (similar term)|balanced (antonym)
+(adj)|brainsick|crazy|demented|distracted|disturbed|mad|sick|unhinged|insane (similar term)
+(adj)|unequal (similar term)
+unbalconied|1
+(adj)|balconied (antonym)
+unbanded|1
+(adj)|banded (antonym)
+unbaptised|1
+(adj)|unbaptized|baptized (antonym)
+unbaptized|1
+(adj)|unbaptised|baptized (antonym)
+unbar|1
+(verb)|open (generic term)|open up (generic term)|bar (antonym)
+unbarred|1
+(adj)|unbolted|unlatched|unlocked|unsecured|unfastened (similar term)
+unbarreled|1
+(adj)|unbarrelled|barreled (antonym)
+unbarrelled|1
+(adj)|unbarreled|barreled (antonym)
+unbearable|1
+(adj)|intolerable|unendurable|bitter (similar term)|impossible (similar term)|insufferable (similar term)|unacceptable (similar term)|unsufferable (similar term)|unsupportable (similar term)|impermissible (related term)|tolerable (antonym)
+unbeatable|2
+(adj)|unstoppable (similar term)
+(adj)|invincible|unvanquishable|unconquerable (similar term)
+unbeaten|1
+(adj)|unconquered|unvanquished|undefeated (similar term)
+unbecoming|1
+(adj)|indecent|indecorous|uncomely|unseemly|untoward|improper (similar term)
+unbecomingly|1
+(adv)|indecorously|decorously (antonym)
+unbecomingness|1
+(noun)|indecorum (generic term)|indecorousness (generic term)|becomingness (antonym)
+unbefitting|1
+(adj)|inappropriate (similar term)
+unbeholden|1
+(adj)|unobligated (similar term)
+unbeknown|2
+(adj)|unbeknownst|unknown (similar term)
+(adv)|unbeknownst
+unbeknownst|2
+(adj)|unbeknown|unknown (similar term)
+(adv)|unbeknown
+unbelief|1
+(noun)|disbelief|content (generic term)|cognitive content (generic term)|mental object (generic term)|belief (antonym)
+unbelievable|2
+(adj)|incredible|astounding (similar term)|dumbfounding (similar term)|dumfounding (similar term)|fabulous (similar term)|improbable (similar term)|marvelous (similar term)|marvellous (similar term)|tall (similar term)|undreamed (similar term)|undreamed of (similar term)|undreamt (similar term)|undreamt of (similar term)|unimagined (similar term)|implausible (related term)|incredulous (related term)|unconvincing (related term)|unthinkable (related term)|credible (antonym)
+(adj)|improbable|unconvincing|unlikely|implausible (similar term)
+unbelievably|2
+(adv)|incredibly|improbably|implausibly|believably (antonym)|credibly (antonym)
+(adv)|believably (antonym)
+unbeliever|1
+(noun)|disbeliever|nonbeliever|nonreligious person (generic term)
+unbelieving|3
+(adj)|atheistic|atheistical|irreligious (similar term)
+(adj)|nescient|agnostic (similar term)|agnostical (similar term)
+(adj)|disbelieving|skeptical|sceptical|incredulous (similar term)
+unbelievingly|1
+(adv)|incredulously|disbelievingly|believingly (antonym)|credulously (antonym)
+unbeloved|1
+(adj)|bereft|lovelorn|unloved (similar term)
+unbelt|1
+(verb)|undo (generic term)|belt (antonym)
+unbelted|1
+(adj)|beltless|belted (antonym)
+unbend|6
+(verb)|straighten|change posture (generic term)|bend (antonym)
+(verb)|unfasten (generic term)
+(verb)|straighten (generic term)|straighten out (generic term)|bend (antonym)
+(verb)|relax|loosen (generic term)|loose (generic term)
+(verb)|relax|loosen up|unwind|decompress|slow down|change state (generic term)|turn (generic term)|tense (antonym)
+(verb)|relax (generic term)|unstrain (generic term)|unlax (generic term)|loosen up (generic term)|unwind (generic term)|make relaxed (generic term)
+unbendable|1
+(adj)|firm|steadfast|steady|stiff|unfaltering|unshakable|unwavering|resolute (similar term)
+unbending|1
+(adj)|inflexible|rigid|unadaptable (similar term)
+unbeneficed|1
+(adj)|beneficed (antonym)
+unbent|2
+(adj)|straight (similar term)
+(adj)|straight|unbowed|erect (similar term)|vertical (similar term)|upright (similar term)
+unbiased|2
+(adj)|indifferent|unbiassed|impartial (similar term)|fair (similar term)
+(adj)|unbiassed|nonpartisan (similar term)|nonpartizan (similar term)
+unbiassed|2
+(adj)|indifferent|unbiased|impartial (similar term)|fair (similar term)
+(adj)|unbiased|nonpartisan (similar term)|nonpartizan (similar term)
+unbigoted|1
+(adj)|tolerant (similar term)
+unbind|1
+(verb)|detach (generic term)|bind (antonym)
+unbitter|1
+(adj)|unresentful (similar term)
+unbleached|1
+(adj)|uncolored|undyed|natural (similar term)
+unblemished|1
+(adj)|clean (similar term)|clear (similar term)|stainless (similar term)|unstained (similar term)|unsullied (similar term)|untainted (similar term)|untarnished (similar term)|perfect (related term)|undamaged (related term)|blemished (antonym)
+unblended|1
+(adj)|unhomogenized (similar term)|unhomogenised (similar term)|blended (antonym)
+unblessed|1
+(adj)|unendowed (similar term)
+unblinking|2
+(adj)|unemotional (similar term)
+(adj)|unflinching|unintimidated|unshrinking|unafraid (similar term)|fearless (similar term)
+unblock|3
+(verb)|unstuff (generic term)|loosen up (generic term)
+(verb)|play (generic term)
+(verb)|unfreeze|free|release|issue (generic term)|supply (generic term)|freeze (antonym)|block (antonym)
+unbloodied|1
+(adj)|bloodless (similar term)
+unbloody|1
+(adj)|nonviolent|bloodless (similar term)
+unblushing|1
+(adj)|shameless|unashamed (similar term)
+unbodied|2
+(adj)|bodiless (similar term)|bodyless (similar term)|formless (similar term)|incorporeal (related term)|immaterial (related term)|bodied (antonym)
+(adj)|discorporate|unembodied|bodiless|disembodied|incorporeal (similar term)|immaterial (similar term)
+unbolt|1
+(verb)|open (generic term)|open up (generic term)|bolt (antonym)
+unbolted|1
+(adj)|unbarred|unlatched|unlocked|unsecured|unfastened (similar term)
+unbooked|1
+(adj)|unreserved (similar term)
+unbordered|1
+(adj)|bordered (antonym)
+unborn|1
+(adj)|unhatched (similar term)|born (antonym)
+unbosom|1
+(verb)|relieve|confide (generic term)
+unbound|3
+(adj)|loose (similar term)|looseleaf (similar term)|bound (antonym)
+(adj)|unchained (similar term)|unfettered (similar term)|unshackled (similar term)|untied (similar term)|untethered (similar term)|free (related term)|bound (antonym)
+(adj)|free (similar term)
+unbounded|1
+(adj)|boundless|limitless|infinite (similar term)
+unbounded interval|1
+(noun)|open interval|interval (generic term)|closed interval (antonym)
+unboundedness|1
+(noun)|infiniteness|infinitude|boundlessness|limitlessness|quality (generic term)|finiteness (antonym)
+unbowed|2
+(adj)|straight|unbent|erect (similar term)|vertical (similar term)|upright (similar term)
+(adj)|undefeated (similar term)
+unbox|1
+(verb)|unpack (generic term)|take out (generic term)|box (antonym)
+unbrace|4
+(verb)|untie|unlace|undo (generic term)|tie (antonym)
+(verb)|relax (generic term)|unbend (generic term)
+(verb)|weaken (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+unbraced|1
+(adj)|unsupported (similar term)
+unbraid|1
+(verb)|undo (generic term)|braid (antonym)
+unbrainwashed|1
+(adj)|brainwashed (antonym)
+unbranched|1
+(adj)|unbranching|branchless (similar term)
+unbranching|1
+(adj)|unbranched|branchless (similar term)
+unbranded|1
+(adj)|branded (antonym)
+unbreakable|1
+(adj)|infrangible (similar term)|shatterproof (similar term)|splinterless (similar term)|splinterproof (similar term)|breakable (antonym)
+unbreakableness|1
+(noun)|consistency (generic term)|consistence (generic term)|body (generic term)|breakableness (antonym)
+unbridgeable|1
+(adj)|bridgeable (antonym)
+unbridle|1
+(verb)|get rid of (generic term)|remove (generic term)|bridle (antonym)
+unbridled|1
+(adj)|unchecked|uncurbed|ungoverned|unrestrained (similar term)
+unbroken|5
+(adj)|solid (similar term)|uninterrupted (similar term)|continuous (related term)|uninterrupted (related term)|broken (antonym)
+(adj)|wild (similar term)|untamed (similar term)
+(adj)|unplowed|unploughed|fallow (similar term)|untilled (similar term)|plowed (antonym)
+(adj)|kept|broken (antonym)
+(adj)|perfect (related term)|sound (related term)|undamaged (related term)|uninjured (related term)|broken (antonym)
+unbrushed|1
+(adj)|ungroomed (similar term)
+unbuckle|1
+(verb)|undo (generic term)|buckle (antonym)
+unburden|2
+(verb)|take (generic term)
+(verb)|disburden|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|burden (antonym)
+unburdened|2
+(adj)|unencumbered (similar term)|burdened (antonym)
+(adj)|burdenless|unencumbered (similar term)
+unburied|1
+(adj)|buried (antonym)
+unburned|1
+(adj)|burned (antonym)
+unburnished|1
+(adj)|unpolished (similar term)
+unbutton|1
+(verb)|undo (generic term)|button (antonym)
+unbuttoned|2
+(adj)|unfastened|open-collared (similar term)|buttoned (antonym)
+(adj)|unlaced|unrestrained (similar term)
+uncalled-for|2
+(adj)|unwanted (similar term)
+(adj)|gratuitous|needless|unnecessary (similar term)|unneeded (similar term)
+uncamphorated|1
+(adj)|camphorated (antonym)
+uncanny|2
+(adj)|eldritch|weird|unearthly|supernatural (similar term)
+(adj)|preternatural|extraordinary (similar term)
+uncapped|1
+(adj)|uncrowned (similar term)
+uncarbonated|1
+(adj)|noncarbonated|noneffervescent (similar term)
+uncared-for|1
+(adj)|neglected (similar term)|unattended (similar term)|untended (similar term)|cared-for (antonym)
+uncaring|2
+(adj)|unaffectionate|unloving (similar term)
+(adj)|thoughtless|unthinking|inconsiderate (similar term)
+uncarpeted|1
+(adj)|carpeted (antonym)
+uncarved|1
+(adj)|carved (antonym)
+uncase|1
+(verb)|undress|discase|unclothe|strip|strip down|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+uncastrated|1
+(adj)|entire (similar term)|intact (similar term)|castrated (antonym)
+uncategorised|1
+(adj)|uncategorized|unsorted|unclassified (similar term)
+uncategorized|1
+(adj)|uncategorised|unsorted|unclassified (similar term)
+uncaulked|1
+(adj)|caulked (antonym)
+uncaused|1
+(adj)|causeless|fortuitous|unintended (similar term)
+unceasing|2
+(adj)|ageless|aeonian|eonian|eternal|everlasting|perpetual|unending|permanent (similar term)|lasting (similar term)
+(adj)|ceaseless|constant|incessant|never-ending|perpetual|unremitting|continuous (similar term)|uninterrupted (similar term)
+unceasingly|1
+(adv)|endlessly|ceaselessly|incessantly|unendingly|continuously
+uncensored|1
+(adj)|unexpurgated (similar term)|censored (antonym)
+unceremonial|1
+(adj)|unceremonious|informal (similar term)
+unceremonious|2
+(adj)|unceremonial|informal (similar term)
+(adj)|discourteous (similar term)
+unceremoniously|1
+(adv)|ceremoniously (antonym)
+unceremoniousness|1
+(noun)|informality (generic term)|ceremoniousness (antonym)
+uncertain|7
+(adj)|unsure|incertain|ambivalent (similar term)|doubtful (similar term)|dubious (similar term)|groping (similar term)|hesitant (similar term)|sure (antonym)|certain (antonym)
+(adj)|indefinite (similar term)|up in the air (similar term)|indeterminate (related term)|undetermined (related term)|certain (antonym)
+(adj)|unsealed|sealed (antonym)
+(adj)|chancy (similar term)|fluky (similar term)|flukey (similar term)|iffy (similar term)|contingent (similar term)|up in the air (similar term)|unpredictable (related term)|certain (antonym)
+(adj)|changeable|unsettled|variable (similar term)
+(adj)|unreliable (similar term)|undependable (similar term)
+(adj)|ambiguous (similar term)
+uncertainly|1
+(adv)|unsteadily|falteringly|steadily (antonym)
+uncertainness|1
+(noun)|uncertainty|precariousness|quality (generic term)|certainty (antonym)
+uncertainty|2
+(noun)|uncertainness|precariousness|quality (generic term)|certainty (antonym)
+(noun)|doubt|incertitude|dubiety|doubtfulness|dubiousness|cognitive state (generic term)|state of mind (generic term)|certainty (antonym)
+uncertainty principle|1
+(noun)|indeterminacy principle|scientific theory (generic term)
+uncertified|1
+(adj)|certified (antonym)
+unchain|2
+(verb)|unfasten (generic term)|chain (antonym)
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)
+unchained|1
+(adj)|unfettered|unshackled|untied|unbound (similar term)
+unchallengeable|1
+(adj)|uncontroversial (similar term)|noncontroversial (similar term)
+unchallenged|1
+(adj)|accepted|undisputed|unquestioned|uncontroversial (similar term)|noncontroversial (similar term)
+unchangeability|1
+(noun)|changelessness|unchangeableness|unchangingness|quality (generic term)|changeableness (antonym)
+unchangeable|1
+(adj)|changeless (similar term)|unalterable (similar term)|confirmed (similar term)|fixed (similar term)|frozen (similar term)|set in stone (similar term)|carved in stone (similar term)|static (similar term)|stable (similar term)|unchanging (similar term)|constant (related term)|permanent (related term)|lasting (related term)|changeable (antonym)
+unchangeableness|1
+(noun)|changelessness|unchangeability|unchangingness|quality (generic term)|changeableness (antonym)
+unchangeably|1
+(adv)|unalterably|unassailably|immutably
+unchanged|2
+(adj)|idempotent (similar term)|same (similar term)|unvaried (related term)|unvarying (related term)|changed (antonym)
+(adj)|unaltered|dateless (similar term)|timeless (similar term)|in-situ (similar term)|unmoved (similar term)|unedited (similar term)|unreduced (similar term)|unrevised (similar term)|altered (antonym)
+unchanging|3
+(adj)|static|undynamic (similar term)|adynamic (similar term)
+(adj)|consistent (similar term)
+(adj)|static|stable|unchangeable (similar term)
+unchangingness|1
+(noun)|changelessness|unchangeability|unchangeableness|quality (generic term)|changeableness (antonym)
+uncharacteristic|1
+(adj)|uncharacteristic of|atypical (related term)|untypical (related term)|characteristic (antonym)
+uncharacteristic of|1
+(adj)|uncharacteristic|atypical (related term)|untypical (related term)|characteristic (antonym)
+uncharacteristically|1
+(adv)|characteristically (antonym)
+uncharged|1
+(adj)|dead (similar term)|drained (similar term)|charged (antonym)
+uncharitable|1
+(adj)|ungenerous (related term)|meanspirited (related term)|stingy (related term)|ungenerous (related term)|charitable (antonym)
+uncharted|1
+(adj)|chartless|unmapped|unknown (similar term)
+unchartered|1
+(adj)|chartered (antonym)
+unchaste|1
+(adj)|cyprian (similar term)|easy (similar term)|light (similar term)|loose (similar term)|promiscuous (similar term)|sluttish (similar term)|wanton (similar term)|fallen (similar term)|licentious (similar term)|immoral (related term)|impure (related term)|chaste (antonym)
+unchastened|1
+(adj)|unadmonished|unrebuked|unreproved|unpunished (similar term)
+uncheckable|1
+(adj)|unmanageable (similar term)|difficult (similar term)
+unchecked|1
+(adj)|unbridled|uncurbed|ungoverned|unrestrained (similar term)
+uncheerful|1
+(adj)|cheerless|blue (similar term)|dark (similar term)|depressing (similar term)|dingy (similar term)|disconsolate (similar term)|dismal (similar term)|dispiriting (similar term)|gloomy (similar term)|grim (similar term)|sorry (similar term)|drab (similar term)|drear (similar term)|dreary (similar term)|somber (similar term)|sombre (similar term)|melancholy (similar term)|joyless (related term)|unhappy (related term)|cheerful (antonym)
+uncheerfulness|2
+(noun)|cheerlessness|sadness (generic term)|unhappiness (generic term)|cheerfulness (antonym)
+(noun)|attribute (generic term)|cheerfulness (antonym)
+unchewable|1
+(adj)|fibrous|sinewy|stringy|tough (similar term)
+unchivalrous|1
+(adj)|caddish|ungallant|discourteous (similar term)
+unchivalrously|1
+(adv)|chivalrously (antonym)
+unchristian|1
+(adj)|christless (similar term)|nonchristian (similar term)|unchristianly (similar term)|unchristlike (similar term)|christian (antonym)
+unchristianly|1
+(adj)|unchristlike|unchristian (similar term)
+unchristlike|1
+(adj)|unchristianly|unchristian (similar term)
+unchurch|1
+(verb)|excommunicate|curse|exclude (generic term)|keep out (generic term)|shut out (generic term)|shut (generic term)|communicate (antonym)
+uncial|2
+(adj)|script (related term)
+(noun)|script (generic term)
+unciform bone|1
+(noun)|hamate|hamate bone|os hamatum|carpal bone (generic term)|carpal (generic term)|wrist bone (generic term)
+uncivil|1
+(adj)|rude|civil (antonym)
+uncivilised|1
+(adj)|barbarian|barbaric|savage|uncivilized|wild|noncivilized (similar term)|noncivilised (similar term)
+uncivilized|1
+(adj)|barbarian|barbaric|savage|uncivilised|wild|noncivilized (similar term)|noncivilised (similar term)
+uncivilly|1
+(adv)|civilly (antonym)
+unclad|1
+(adj)|unappareled|unattired|undressed|ungarbed|ungarmented|unclothed (similar term)
+unclaimed|1
+(adj)|unwanted (similar term)
+unclasp|1
+(verb)|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)|clasp (antonym)|clasp (antonym)
+unclassifiable|1
+(adj)|unidentifiable (similar term)
+unclassified|2
+(adj)|declassified (similar term)|nonsensitive (similar term)|unrestricted (similar term)|classified (antonym)
+(adj)|uncategorized (similar term)|uncategorised (similar term)|unsorted (similar term)|classified (antonym)
+uncle|2
+(noun)|kinsman (generic term)|aunt (antonym)
+(noun)|benefactor (generic term)|helper (generic term)
+uncle joe|1
+(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general (generic term)|full general (generic term)
+uncle remus|1
+(noun)|Uncle Remus|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+uncle sam|1
+(noun)|Uncle Sam|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+uncle tom|2
+(noun)|Tom|Uncle Tom|Black (generic term)|Black person (generic term)|blackamoor (generic term)|Negro (generic term)|Negroid (generic term)
+(noun)|Uncle Tom|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+unclean|2
+(adj)|dirty|soiled|Augean (similar term)|bedraggled (similar term)|draggled (similar term)|befouled (similar term)|fouled (similar term)|begrimed (similar term)|dingy (similar term)|grimy (similar term)|grubby (similar term)|grungy (similar term)|raunchy (similar term)|bespattered (similar term)|spattered (similar term)|besplashed (similar term)|splashed (similar term)|black (similar term)|smutty (similar term)|buggy (similar term)|cobwebby (similar term)|dirty-faced (similar term)|dusty (similar term)|dust-covered (similar term)|fecal (similar term)|faecal (similar term)|feculent (similar term)|filthy (similar term)|foul (similar term)|nasty (similar term)|flyblown (similar term)|squalid (similar term)|sordid (similar term)|greasy (similar term)|oily (similar term)|lousy (similar term)|maculate (similar term)|mucky (similar term)|muddy (similar term)|ratty (similar term)|scummy (similar term)|smudgy (similar term)|snotty (similar term)|snot-nosed (similar term)|sooty (similar term)|travel-soiled (similar term)|travel-stained (similar term)|uncleanly (similar term)|unswept (similar term)|unwashed (similar term)|unclean (related term)|impure (related term)|untidy (related term)|clean (antonym)
+(adj)|impure|defiled (similar term)|nonkosher (similar term)|tref (similar term)|terefah (similar term)|untouchable (similar term)|dirty (related term)|soiled (related term)|unclean (related term)|impure (related term)|clean (antonym)
+uncleanliness|1
+(noun)|trait (generic term)|cleanliness (antonym)
+uncleanly|1
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+uncleanness|1
+(noun)|dirtiness|sanitary condition (generic term)|cleanness (antonym)
+unclear|3
+(adj)|ill-defined|well-defined (antonym)
+(adj)|bewildering (similar term)|blurred (similar term)|clouded (similar term)|confusing (similar term)|perplexing (similar term)|puzzling (similar term)|obscure (similar term)|vague (similar term)|ambiguous (related term)|indefinite (related term)|incomprehensible (related term)|uncomprehensible (related term)|indistinct (related term)|opaque (related term)|clear (antonym)
+(adj)|indecipherable|undecipherable|unreadable|illegible (similar term)
+uncleared|1
+(adj)|unimproved (similar term)|wooded (related term)|cleared (antonym)
+unclearness|1
+(noun)|incomprehensibility (generic term)|clearness (antonym)
+unclimbable|2
+(adj)|unscalable|scalable (antonym)
+(adj)|unsurmountable|impassable (similar term)|unpassable (similar term)
+unclip|1
+(verb)|undo (generic term)|clip (antonym)
+unclipped|1
+(adj)|untrimmed (similar term)|uncut (similar term)
+uncloak|2
+(verb)|unmask|debunk (generic term)|expose (generic term)
+(verb)|take off (generic term)
+unclog|1
+(verb)|free (generic term)|disengage (generic term)|clog (antonym)
+unclogged|1
+(adj)|unobstructed (similar term)
+unclothe|3
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+(verb)|uncover (generic term)|expose (generic term)
+(verb)|undress|discase|uncase|strip|strip down|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+unclothed|1
+(adj)|bare (similar term)|au naturel (similar term)|naked (similar term)|nude (similar term)|bare-assed (similar term)|bare-ass (similar term)|in the altogether (similar term)|in the buff (similar term)|in the raw (similar term)|raw (similar term)|peeled (similar term)|naked as a jaybird (similar term)|stark naked (similar term)|bare-breasted (similar term)|braless (similar term)|topless (similar term)|bareheaded (similar term)|bared (similar term)|barelegged (similar term)|bottomless (similar term)|clothesless (similar term)|garmentless (similar term)|raimentless (similar term)|en deshabille (similar term)|in dishabille (similar term)|exposed (similar term)|uncovered (similar term)|half-clothed (similar term)|scantily clad (similar term)|underclothed (similar term)|mother-naked (similar term)|naked as the day one was born (similar term)|naked as the day you were born (similar term)|in one's birthday suit (similar term)|in your birthday suit (similar term)|off-the-shoulder (similar term)|seminude (similar term)|starkers (similar term)|stripped (similar term)|unappareled (similar term)|unattired (similar term)|unclad (similar term)|undressed (similar term)|ungarbed (similar term)|ungarmented (similar term)|without a stitch (similar term)|unadorned (related term)|undecorated (related term)|clothed (antonym)
+unclouded|4
+(adj)|clean|clear|light|pure (similar term)
+(adj)|cloudless|clear (similar term)
+(adj)|clearheaded (similar term)|clear-thinking (similar term)
+(adj)|clear (similar term)
+uncloudedness|1
+(noun)|clearness|clarity|quality (generic term)|opacity (antonym)
+unclutter|1
+(verb)|clear|change (generic term)|alter (generic term)|modify (generic term)|clear off (related term)|clear away (related term)|clutter (antonym)
+uncluttered|1
+(adj)|unlittered|tidy (similar term)
+unco|1
+(adv)|unusually|remarkably|outstandingly|unremarkably (antonym)
+uncoated|1
+(adj)|coated (antonym)
+uncoerced|1
+(adj)|unforced|willing|voluntary (similar term)
+uncoil|1
+(verb)|unwind (generic term)|disentangle (generic term)|coil (antonym)
+uncoiled|1
+(adj)|straight|uncurled (similar term)|coiled (antonym)
+uncollected|1
+(adj)|ungathered|gathered (antonym)|collected (antonym)
+uncollectible|1
+(adj)|bad|invalid (similar term)
+uncolored|2
+(adj)|uncoloured|achromatous (similar term)|achromic (similar term)|achromous (similar term)|achromatic (related term)|colored (antonym)
+(adj)|unbleached|undyed|natural (similar term)
+uncoloured|1
+(adj)|uncolored|achromatous (similar term)|achromic (similar term)|achromous (similar term)|achromatic (related term)|colored (antonym)
+uncolumned|1
+(adj)|noncolumned|astylar (similar term)|unpillared (similar term)|columned (antonym)
+uncombable|1
+(adj)|uncombed (similar term)
+uncombed|1
+(adj)|uncombable (similar term)|unkempt (similar term)|combed (antonym)
+uncombined|1
+(adj)|uncompounded (similar term)|unmixed (similar term)|combined (antonym)
+uncomely|1
+(adj)|indecent|indecorous|unbecoming|unseemly|untoward|improper (similar term)
+uncomfortable|2
+(adj)|awkward (similar term)|ill at ease (similar term)|uneasy (similar term)|discomfited (similar term)|embarrassed (similar term)|disquieting (similar term)|ill-fitting (similar term)|self-conscious (similar term)|uneasy (related term)|comfortable (antonym)
+(adj)|bad (similar term)|tough (similar term)|comfortless (similar term)|irritating (similar term)|painful (similar term)|miserable (similar term)|wretched (similar term)|uneasy (similar term)|warm (similar term)|comfortable (antonym)
+uncomfortableness|2
+(noun)|discomfort|condition (generic term)|status (generic term)|comfort (antonym)
+(noun)|self-consciousness|uneasiness|embarrassment (generic term)
+uncomfortably|1
+(adv)|comfortably (antonym)
+uncommercial|1
+(adj)|noncommercial (similar term)
+uncommercialised|1
+(adj)|uncommercialized|noncommercial (similar term)
+uncommercialized|1
+(adj)|uncommercialised|noncommercial (similar term)
+uncommitted|3
+(adj)|fancy-free (similar term)|floating (similar term)|undecided (similar term)|committed (antonym)
+(adj)|unattached|unengaged (similar term)|unpledged (similar term)|unpromised (similar term)|attached (antonym)
+(adj)|available|free (similar term)
+uncommon|2
+(adj)|especial (similar term)|exceptional (similar term)|particular (similar term)|special (similar term)|rare (similar term)|red carpet (similar term)|red-carpet (similar term)|unusual (similar term)|unwonted (similar term)|extraordinary (related term)|unusual (related term)|common (antonym)
+(adj)|rare|extraordinary (similar term)
+uncommonness|2
+(noun)|extraordinariness (generic term)
+(noun)|extraordinariness (generic term)|commonness (antonym)
+uncommunicative|1
+(adj)|incommunicative|blank (similar term)|vacuous (similar term)|close (similar term)|closelipped (similar term)|closemouthed (similar term)|secretive (similar term)|tightlipped (similar term)|deadpan (similar term)|expressionless (similar term)|impassive (similar term)|poker-faced (similar term)|unexpressive (similar term)|incommunicado (similar term)|inexpressive (similar term)|mum (similar term)|silent (similar term)|unpronounceable (similar term)|unutterable (similar term)|inarticulate (related term)|unarticulate (related term)|taciturn (related term)|communicative (antonym)
+uncommunicativeness|1
+(noun)|trait (generic term)|communicativeness (antonym)
+uncompahgre peak|1
+(noun)|Uncompahgre Peak|mountain peak (generic term)
+uncomparable|1
+(adj)|incomparable|all-time (similar term)|incommensurable (similar term)|matchless (similar term)|nonpareil (similar term)|one (similar term)|one and only (similar term)|peerless (similar term)|unmatched (similar term)|unmatchable (similar term)|unrivaled (similar term)|unrivalled (similar term)|alone (similar term)|unique (similar term)|unequaled (similar term)|unequalled (similar term)|unparalleled (similar term)|best (related term)|extraordinary (related term)|comparable (antonym)
+uncomparably|1
+(adv)|incomparably|comparably (antonym)
+uncompartmented|1
+(adj)|compartmented (antonym)
+uncompassionate|1
+(adj)|hardhearted (similar term)|stonyhearted (similar term)|unfeeling (similar term)|merciless (related term)|unmerciful (related term)|unsympathetic (related term)|compassionate (antonym)
+uncompensated|1
+(adj)|unsalaried|unpaid (similar term)
+uncompetitive|1
+(adj)|noncompetitive (similar term)
+uncomplaining|1
+(adj)|patient (similar term)|unmurmuring (similar term)|unprotesting (similar term)|patient (related term)|complaining (antonym)
+uncomplainingly|1
+(adv)|complainingly (antonym)
+uncomplete|1
+(adj)|incomplete|broken (similar term)|half (similar term)|partial (similar term)|rudimentary (similar term)|sketchy (similar term)|unelaborated (similar term)|uncompleted (similar term)|fractional (related term)|complete (antonym)
+uncompleted|2
+(adj)|incomplete|unfinished (similar term)
+(adj)|incomplete (similar term)|uncomplete (similar term)
+uncomplicated|2
+(adj)|unsophisticated|simple (similar term)
+(adj)|elementary|simple|unproblematic|easy (similar term)
+uncomplimentary|2
+(adj)|unflattering|flattering (antonym)
+(adj)|belittling (similar term)|deprecating (similar term)|deprecative (similar term)|deprecatory (similar term)|depreciative (similar term)|depreciatory (similar term)|slighting (similar term)|derogative (similar term)|derogatory (similar term)|disparaging (similar term)|dyslogistic (similar term)|dislogistic (similar term)|pejorative (similar term)|supercilious (similar term)|sneering (similar term)|snide (similar term)|unfavorable (related term)|unfavourable (related term)|complimentary (antonym)
+uncompounded|1
+(adj)|unmixed|uncombined (similar term)
+uncomprehended|1
+(adj)|ununderstood (similar term)
+uncomprehending|1
+(adj)|undiscerning (similar term)
+uncomprehensible|1
+(adj)|incomprehensible|dark (similar term)|obscure (similar term)|enigmatic (similar term)|enigmatical (similar term)|puzzling (similar term)|unfathomable (similar term)|impenetrable (similar term)|indecipherable (similar term)|lost (similar term)|missed (similar term)|opaque (similar term)|unintelligible (similar term)|inexplicable (related term)|incomprehensible (related term)|unclear (related term)|unintelligible (related term)|comprehensible (antonym)
+uncompress|1
+(verb)|decompress|restore (generic term)|reconstruct (generic term)|compress (antonym)
+uncompromising|1
+(adj)|sturdy|inflexible|hard-line (similar term)|hardline (similar term)|compromising (antonym)
+unconcealed|1
+(adj)|blatant (similar term)|blazing (similar term)|conspicuous (similar term)|discovered (similar term)|disclosed (similar term)|revealed (similar term)|exhibitionistic (similar term)|in full view (similar term)|overt (related term)|open (related term)|concealed (antonym)
+unconcern|2
+(noun)|nonchalance|indifference|carefreeness (generic term)
+(noun)|feeling (generic term)|concern (antonym)
+unconcerned|3
+(adj)|blase (similar term)|blithe (similar term)|casual (similar term)|insouciant (similar term)|nonchalant (similar term)|degage (similar term)|detached (similar term)|uninvolved (similar term)|indifferent (similar term)|careless (related term)|untroubled (related term)|concerned (antonym)
+(adj)|untroubled (similar term)
+(adj)|uninvolved (similar term)
+unconditional|3
+(adj)|absolute (similar term)|total (similar term)|unconditioned (similar term)|blunt (similar term)|crude (similar term)|stark (similar term)|independent (similar term)|vested (similar term)|unqualified (related term)|conditional (antonym)
+(adj)|categoric|categorical|flat|unqualified (similar term)
+(adj)|independent (similar term)
+unconditionally|2
+(adv)|conditionally (antonym)
+(adv)|flatly|categorically
+unconditioned|2
+(adj)|absolute|total|unconditional (similar term)
+(adj)|innate|unlearned|naive (similar term)|conditioned (antonym)
+unconditioned reflex|1
+(noun)|reflex|instinctive reflex|innate reflex|inborn reflex|physiological reaction|reaction (generic term)|response (generic term)
+unconfessed|2
+(adj)|unacknowledged (similar term)
+(noun)|people (generic term)
+unconfident|1
+(adj)|diffident (similar term)|shy (similar term)|timid (similar term)|unsure (similar term)|confident (antonym)
+unconfined|2
+(adj)|free-range (similar term)|free (related term)|confined (antonym)
+(adj)|unimprisoned|free (similar term)
+unconfirmed|1
+(adj)|unofficial (similar term)|confirmed (antonym)
+unconformable|1
+(adj)|inconsistent (similar term)
+unconformist|1
+(adj)|nonconformist|conformist (antonym)
+unconfused|1
+(adj)|unbaffled|unperplexed (similar term)
+uncongenial|3
+(adj)|incompatible|disagreeable (similar term)|unsympathetic (similar term)|incompatible (related term)|unfriendly (related term)|unsympathetic (related term)|congenial (antonym)
+(adj)|hostile|unfriendly|inhospitable (similar term)
+(adj)|incompatible (similar term)
+uncongeniality|1
+(noun)|unfriendliness (generic term)|congeniality (antonym)
+unconnected|3
+(adj)|apart (similar term)|isolated (similar term)|obscure (similar term)|asternal (similar term)|detached (similar term)|separated (similar term)|disjoined (similar term)|separate (similar term)|exploded (similar term)|unattached (similar term)|uncoupled (similar term)|unrelated (related term)|connected (antonym)
+(adj)|unrelated (similar term)
+(adj)|confused|disconnected|disjointed|disordered|garbled|illogical|scattered|incoherent (similar term)
+unconnectedness|1
+(noun)|relation (generic term)|connectedness (antonym)
+unconquerable|2
+(adj)|impregnable (similar term)|inexpugnable (similar term)|indomitable (similar term)|never-say-die (similar term)|unsubduable (similar term)|insuperable (similar term)|insurmountable (similar term)|invincible (similar term)|unbeatable (similar term)|unvanquishable (similar term)|all-victorious (similar term)|insurmountable (related term)|unsurmountable (related term)|invulnerable (related term)|conquerable (antonym)
+(adj)|insuperable|insurmountable (similar term)|unsurmountable (similar term)
+unconquered|1
+(adj)|unbeaten|unvanquished|undefeated (similar term)
+unconscientious|1
+(adj)|conscienceless (similar term)|unconscionable (similar term)|conscientious (antonym)
+unconscientiousness|2
+(noun)|conscience (generic term)|conscientiousness (antonym)
+(noun)|carelessness (generic term)|sloppiness (generic term)|conscientiousness (antonym)
+unconscionable|2
+(adj)|conscienceless|unconscientious (similar term)
+(adj)|exorbitant|extortionate|outrageous|steep|usurious|immoderate (similar term)
+unconscious|4
+(adj)|cold (similar term)|comatose (similar term)|innocent (similar term)|insensible (similar term)|senseless (similar term)|knocked out (similar term)|kayoed (similar term)|KO'd (similar term)|out (similar term)|stunned (similar term)|nonconscious (similar term)|semicomatose (similar term)|subconscious (similar term)|asleep (related term)|insensible (related term)|involuntary (related term)|nonvoluntary (related term)|unvoluntary (related term)|unaware (related term)|incognizant (related term)|conscious (antonym)
+(adj)|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+(adj)|unaware (similar term)|incognizant (similar term)
+(noun)|unconscious mind|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+unconscious mind|1
+(noun)|unconscious|mind (generic term)|head (generic term)|brain (generic term)|psyche (generic term)|nous (generic term)
+unconscious process|1
+(noun)|process|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+unconsciously|1
+(adv)|consciously (antonym)
+unconsciousness|1
+(noun)|cognitive state (generic term)|state of mind (generic term)|consciousness (antonym)
+unconsecrated|1
+(adj)|profane|unsanctified|unholy (similar term)|unhallowed (similar term)
+unconsidered|1
+(adj)|inconsiderate|thoughtless (similar term)
+unconsolable|1
+(adj)|inconsolable|disconsolate|desolate (similar term)|consolable (antonym)
+unconsolidated|1
+(adj)|loose (similar term)
+unconstipated|1
+(adj)|regular|diarrheal (similar term)|diarrhoeal (similar term)|diarrhetic (similar term)|diarrhoetic (similar term)|diarrheic (similar term)|diarrhoeic (similar term)|lax (similar term)|loose (similar term)|constipated (antonym)
+unconstitutional|1
+(adj)|constitutional (antonym)
+unconstitutionally|1
+(adv)|constitutionally (antonym)
+unconstrained|1
+(adj)|free (similar term)
+unconstraint|1
+(noun)|abandon|wantonness|unrestraint (generic term)
+unconstricted|1
+(adj)|open (similar term)|constricted (antonym)
+unconstructive|1
+(adj)|unhelpful (similar term)
+unconsumed|1
+(adj)|unexhausted (similar term)
+unconsummated|1
+(adj)|consummated (antonym)
+uncontaminated|2
+(adj)|contaminated (antonym)
+(adj)|unpolluted|pure (similar term)
+uncontaminating|1
+(adj)|clean|dirty (antonym)
+uncontested|1
+(adj)|contested (antonym)
+uncontrived|1
+(adj)|unstudied|candid (similar term)|unaffected (related term)|studied (antonym)
+uncontrollable|4
+(adj)|unmanageable|intractable (similar term)
+(adj)|indocile|ungovernable|unruly|unmanageable (similar term)|difficult (similar term)
+(adj)|uncorrectable|unmanageable|incorrigible (similar term)
+(adj)|irrepressible|uncontrolled (similar term)
+uncontrolled|1
+(adj)|anarchic (similar term)|anarchical (similar term)|lawless (similar term)|errant (similar term)|irrepressible (similar term)|uncontrollable (similar term)|loose (similar term)|lordless (similar term)|masterless (similar term)|rampant (similar term)|runaway (similar term)|torrential (similar term)|undisciplined (similar term)|ungoverned (similar term)|wild (similar term)|unrestrained (related term)|controlled (antonym)
+uncontroversial|2
+(adj)|noncontroversial|unchallengeable (similar term)|accepted (similar term)|undisputed (similar term)|unchallenged (similar term)|unquestioned (similar term)|agreed upon (similar term)|stipulatory (similar term)|controversial (antonym)
+(adj)|inoffensive|innocuous (similar term)|harmless (similar term)
+uncontroversially|1
+(adv)|controversially (antonym)
+unconventional|3
+(adj)|bohemian (similar term)|go-as-you-please (similar term)|irregular (similar term)|maverick (similar term)|unorthodox (similar term)|original (related term)|conventional (antonym)
+(adj)|alternative (similar term)|bizarre (similar term)|eccentric (similar term)|freakish (similar term)|freaky (similar term)|flaky (similar term)|flakey (similar term)|gonzo (similar term)|off-the-wall (similar term)|outlandish (similar term)|outre (similar term)|devil-may-care (similar term)|raffish (similar term)|rakish (similar term)|far-out (similar term)|kinky (similar term)|offbeat (similar term)|quirky (similar term)|way-out (similar term)|funky (similar term)|spaced-out (similar term)|spacy (similar term)|spacey (similar term)|conventional (antonym)|conventional (antonym)
+(adj)|improper|unlawful|irregular (similar term)
+unconventionality|2
+(noun)|originality (generic term)|conventionality (antonym)
+(noun)|unorthodoxy (generic term)|heterodoxy (generic term)|conventionality (antonym)
+unconventionally|1
+(adv)|conventionally (antonym)
+unconverted|1
+(adj)|unpersuaded|unregenerate (similar term)|unregenerated (similar term)
+unconvertible|1
+(adj)|inconvertible|unexchangeable|irredeemable (similar term)|convertible (antonym)
+unconvinced|1
+(adj)|dubious (similar term)|convinced (antonym)
+unconvincing|2
+(adj)|unpersuasive (similar term)|incredible (related term)|unbelievable (related term)|convincing (antonym)
+(adj)|improbable|unbelievable|unlikely|implausible (similar term)
+unconvincingly|1
+(adv)|convincingly (antonym)
+uncooked|1
+(adj)|raw (similar term)
+uncool|1
+(adj)|bad (similar term)
+uncooperative|2
+(adj)|disobedient (related term)|unhelpful (related term)|cooperative (antonym)
+(adj)|disobliging|unaccommodating (similar term)|unobliging (similar term)
+uncoordinated|2
+(adj)|unorganized (similar term)|unorganised (similar term)
+(adj)|maladroit (similar term)
+uncordial|1
+(adj)|unfriendly (similar term)
+uncork|2
+(verb)|unleash (generic term)
+(verb)|open (generic term)|open up (generic term)|cork (antonym)
+uncorrectable|1
+(adj)|uncontrollable|unmanageable|incorrigible (similar term)
+uncorrected|2
+(adj)|unremedied (similar term)|corrected (antonym)
+(adj)|undisciplined|unpunished (similar term)
+uncorrelated|1
+(adj)|unrelated (similar term)
+uncorroborated|1
+(adj)|unsubstantiated|unsupported (similar term)
+uncorrupted|3
+(adj)|undefiled|perfect (similar term)
+(adj)|unspoiled|incorrupt (similar term)
+(adj)|incorrupt (similar term)
+uncounted|1
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|myriad|numberless|unnumberable|unnumbered|unnumerable|incalculable (similar term)
+uncouple|1
+(verb)|decouple|disconnect (generic term)|couple (antonym)
+uncoupled|1
+(adj)|unconnected (similar term)
+uncousinly|1
+(adj)|cousinly (antonym)
+uncouth|1
+(adj)|coarse|common|rough-cut|vulgar|unrefined (similar term)
+uncouthness|1
+(noun)|boorishness|inelegance (generic term)
+uncover|2
+(verb)|bring out|unveil|reveal|show (generic term)
+(verb)|expose|cover (antonym)
+uncovered|1
+(adj)|exposed|unclothed (similar term)
+uncovering|2
+(noun)|denudation|stripping|baring|husking|removal (generic term)|remotion (generic term)
+(noun)|discovery|find|deed (generic term)|feat (generic term)|effort (generic term)|exploit (generic term)
+uncrannied|1
+(adj)|crannied (antonym)
+uncrate|1
+(verb)|unpack (generic term)|take out (generic term)|crate (antonym)
+uncreased|1
+(adj)|creaseless|smooth (similar term)
+uncreative|1
+(adj)|sterile (similar term)|unimaginative (similar term)|uninspired (similar term)|uninventive (similar term)|unoriginal (related term)|unproductive (related term)|creative (antonym)
+uncreativeness|1
+(noun)|inability (generic term)|creativeness (antonym)
+uncritical|2
+(adj)|noncritical|unscholarly (related term)|critical (antonym)
+(adj)|critical (antonym)
+uncritically|1
+(adv)|critically (antonym)
+uncropped|1
+(adj)|unplanted (similar term)
+uncross|1
+(verb)|unfold (generic term)|spread (generic term)|spread out (generic term)|open (generic term)|cross (antonym)
+uncrossed|1
+(adj)|crossed (antonym)
+uncrowded|1
+(adj)|crowded (antonym)
+uncrowned|2
+(adj)|uncapped (similar term)|crowned (antonym)
+(adj)|crownless|quasi-royal (similar term)|crowned (antonym)
+uncrystallised|2
+(adj)|uncrystallized|crystallized (antonym)
+(adj)|amorphous|uncrystallized|noncrystalline (similar term)
+uncrystallized|2
+(adj)|uncrystallised|crystallized (antonym)
+(adj)|amorphous|uncrystallised|noncrystalline (similar term)
+unction|4
+(noun)|smarm|fulsomeness|compliment (generic term)
+(noun)|fulsomeness|oiliness|oleaginousness|smarminess|unctuousness|hypocrisy (generic term)
+(noun)|ointment|unguent|balm|salve|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|inunction|anointing (generic term)|anointment (generic term)|religious ceremony (generic term)|religious ritual (generic term)
+unctuous|1
+(adj)|buttery|fulsome|oily|oleaginous|smarmy|soapy|insincere (similar term)
+unctuously|1
+(adv)|smarmily|fulsomely
+unctuousness|1
+(noun)|fulsomeness|oiliness|oleaginousness|smarminess|unction|hypocrisy (generic term)
+uncultivable|1
+(adj)|uncultivatable|uncultivated (similar term)
+uncultivatable|1
+(adj)|uncultivable|uncultivated (similar term)
+uncultivated|3
+(adj)|uncultivable (similar term)|uncultivatable (similar term)|cultivated (antonym)
+(adj)|artless|uncultured|unrefined (similar term)
+(adj)|lowbrow|lowbrowed|nonintellectual (similar term)
+uncultured|1
+(adj)|artless|uncultivated|unrefined (similar term)
+uncurbed|1
+(adj)|unbridled|unchecked|ungoverned|unrestrained (similar term)
+uncured|1
+(adj)|unseasoned (similar term)
+uncurl|1
+(verb)|change posture (generic term)
+uncurled|2
+(adj)|uncoiled (similar term)|straight (similar term)
+(adj)|straight (similar term)
+uncurtained|1
+(adj)|curtainless|curtained (antonym)
+uncurved|1
+(adj)|uncurving|straight (similar term)
+uncurving|1
+(adj)|uncurved|straight (similar term)
+uncus|1
+(noun)|hook (generic term)|crotchet (generic term)
+uncut|7
+(adj)|untrimmed|unclipped (similar term)|trimmed (antonym)
+(adj)|unmown|mown (antonym)
+(adj)|rough|unsheared (similar term)|cut (antonym)
+(adj)|cut (antonym)
+(adj)|imperforate (similar term)|unpierced (similar term)|cut (antonym)
+(adj)|uninjured (similar term)
+(adj)|full-length|unabridged (similar term)
+undamaged|1
+(adj)|intact (similar term)|unmarred (similar term)|unmutilated (similar term)|unblemished (related term)|unbroken (related term)|unimpaired (related term)|uninjured (related term)|damaged (antonym)
+undatable|1
+(adj)|dateless (similar term)|undated (similar term)|dateless (similar term)|datable (antonym)
+undated|1
+(adj)|dateless|undatable (similar term)
+undaunted|2
+(adj)|undismayed|unshaken|resolute (similar term)
+(adj)|brave (similar term)|courageous (similar term)
+undecagon|1
+(noun)|polygon (generic term)|polygonal shape (generic term)
+undeceive|1
+(verb)|inform (generic term)|deceive (antonym)
+undeceived|1
+(adj)|disabused|disenchanted (similar term)
+undecided|3
+(adj)|open|undetermined|unresolved|unsettled (similar term)
+(adj)|on the fence|indecisive (similar term)
+(adj)|uncommitted (similar term)
+undecipherable|1
+(adj)|indecipherable|unclear|unreadable|illegible (similar term)
+undecipherably|1
+(adv)|illegibly|unreadably|legibly (antonym)
+undeciphered|1
+(adj)|deciphered (antonym)
+undeclared|1
+(adj)|unacknowledged (similar term)|unavowed (similar term)|declared (antonym)
+undecomposable|1
+(adj)|unanalyzable|simple (similar term)
+undecomposed|1
+(adj)|fresh (similar term)
+undecorated|1
+(adj)|unadorned|plain (similar term)|bare (similar term)|spare (similar term)|unembellished (similar term)|unornamented (similar term)|untufted (similar term)|plain (related term)|unclothed (related term)|adorned (antonym)
+undecylenic acid|1
+(noun)|acid (generic term)
+undedicated|1
+(adj)|dedicated (antonym)
+undefeated|1
+(adj)|triumphant (similar term)|victorious (similar term)|unbeaten (similar term)|unconquered (similar term)|unvanquished (similar term)|unbowed (similar term)|successful (related term)|defeated (antonym)
+undefendable|1
+(adj)|assailable|undefended|open|vulnerable (similar term)
+undefended|1
+(adj)|assailable|undefendable|open|vulnerable (similar term)
+undeferential|1
+(adj)|disrespectful (similar term)
+undefiled|2
+(adj)|immaculate|pure (similar term)
+(adj)|uncorrupted|perfect (similar term)
+undefinable|1
+(adj)|indefinable|undefined (similar term)|vague (similar term)
+undefined|1
+(adj)|vague|indefinable (similar term)|undefinable (similar term)|indefinite (related term)|defined (antonym)
+undelineated|1
+(adj)|undepicted (similar term)|unpictured (similar term)|undrawn (similar term)|delineated (antonym)
+undemanding|1
+(adj)|easy (similar term)|lenient (similar term)|easygoing (similar term)|light (similar term)|unexacting (similar term)|easy (related term)|demanding (antonym)
+undemocratic|1
+(adj)|authoritarian (similar term)|autocratic (similar term)|dictatorial (similar term)|despotic (similar term)|tyrannical (similar term)|despotic (similar term)|monarchal (similar term)|monarchical (similar term)|monarchic (similar term)|totalitarian (similar term)|democratic (antonym)
+undemocratically|1
+(adv)|democratically (antonym)
+undemonstrative|1
+(adj)|reserved (similar term)|restrained (similar term)|reticent (similar term)|unemotional (similar term)|reserved (related term)|demonstrative (antonym)
+undeniable|1
+(adj)|incontestable (similar term)|indisputable (similar term)|undisputable (similar term)|incontrovertible (similar term)|irrefutable (similar term)|positive (similar term)|unquestionable (related term)|deniable (antonym)
+undenominational|1
+(adj)|nonsectarian (similar term)|unsectarian (similar term)
+undependability|1
+(noun)|undependableness|unreliability|unreliableness|irresponsibility (generic term)|irresponsibleness (generic term)|reliableness (antonym)|reliability (antonym)|dependableness (antonym)|dependability (antonym)
+undependable|2
+(adj)|unreliable|erratic (similar term)|temperamental (similar term)|uncertain (similar term)|unsound (similar term)|untrustworthy (related term)|untrusty (related term)|dependable (antonym)|reliable (antonym)
+(adj)|unreliable|fallible (similar term)
+undependableness|1
+(noun)|undependability|unreliability|unreliableness|irresponsibility (generic term)|irresponsibleness (generic term)|reliableness (antonym)|reliability (antonym)|dependableness (antonym)|dependability (antonym)
+undependably|1
+(adv)|unfaithfully|unreliably|reliably (antonym)|dependably (antonym)|faithfully (antonym)
+undepicted|1
+(adj)|unpictured|undelineated (similar term)
+under|3
+(adj)|nether|low (similar term)
+(adj)|subordinate (similar term)|low-level (similar term)
+(adv)|below
+under-the-counter|1
+(adj)|illegal (similar term)
+under-the-table|1
+(adj)|sub-rosa|behind-the-scenes|covert (similar term)
+under attack|1
+(adj)|under fire|vulnerable (similar term)
+under consideration|1
+(adj)|at issue|in dispute|in hand|in question|relevant (similar term)
+under control|1
+(adv)|in check|in restraint
+under fire|1
+(adj)|under attack|vulnerable (similar term)
+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|seedy|ill (similar term)|sick (similar term)
+under wraps|1
+(adj)|covert (similar term)
+underachieve|1
+(verb)|underperform|do (generic term)|perform (generic term)
+underachievement|1
+(noun)|performance (generic term)|overachievement (antonym)
+underachiever|1
+(noun)|underperformer|nonachiever|student (generic term)|pupil (generic term)|educatee (generic term)
+underact|1
+(verb)|underplay|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|overact (antonym)
+underactive|1
+(adj)|hypoactive|inactive (similar term)
+underage|2
+(adj)|minor|nonaged|major (antonym)
+(adj)|dependent (similar term)
+underarm|2
+(adj)|underhand|underhanded|overhand (antonym)
+(adv)|underhand
+underbelly|3
+(noun)|bottom (generic term)|underside (generic term)|undersurface (generic term)
+(noun)|underbody|abdomen (generic term)|venter (generic term)|stomach (generic term)|belly (generic term)
+(noun)|weak part (generic term)|weak spot (generic term)|soft spot (generic term)
+underbid|3
+(verb)|bid (generic term)|call (generic term)
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)|outbid (antonym)
+(verb)|offer (generic term)|bid (generic term)|tender (generic term)|overbid (antonym)
+underbodice|1
+(noun)|camisole|undergarment (generic term)|unmentionable (generic term)
+underbody|1
+(noun)|underbelly|abdomen (generic term)|venter (generic term)|stomach (generic term)|belly (generic term)
+underboss|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+underbred|2
+(adj)|ill-bred|bounderish|lowbred|rude|yokelish|unrefined (similar term)
+(adj)|crossbred (similar term)
+underbrush|1
+(noun)|undergrowth|underwood|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+undercarriage|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)|support (generic term)
+undercharge|3
+(noun)|charge (generic term)
+(noun)|charge (generic term)|burster (generic term)|bursting charge (generic term)|explosive charge (generic term)
+(verb)|charge (generic term)|bill (generic term)|overcharge (antonym)
+underclass|2
+(adj)|underprivileged (similar term)
+(noun)|lower class|class (generic term)|social class (generic term)|socio-economic class (generic term)
+underclassman|1
+(noun)|lowerclassman|undergraduate (generic term)|undergrad (generic term)
+underclothed|1
+(adj)|half-clothed|scantily clad|unclothed (similar term)
+underclothes|1
+(noun)|underwear|underclothing|undergarment (generic term)|unmentionable (generic term)
+underclothing|1
+(noun)|underwear|underclothes|undergarment (generic term)|unmentionable (generic term)
+undercoat|4
+(noun)|underseal|seal (generic term)
+(noun)|flat coat|ground|primer|priming|primer coat|priming coat|coat of paint (generic term)
+(noun)|underfur|fur (generic term)
+(verb)|prime|ground|paint (generic term)
+undercoated|1
+(adj)|undersealed|rustless (similar term)
+undercover|1
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|secret|surreptitious|underground|covert (similar term)
+undercover agent|1
+(noun)|spy|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+undercover operation|1
+(noun)|operation (generic term)
+undercover work|1
+(noun)|spying|intelligence (generic term)|intelligence activity (generic term)|intelligence operation (generic term)
+undercurrent|2
+(noun)|undertone|meaning (generic term)|substance (generic term)
+(noun)|undertide|current (generic term)|stream (generic term)
+undercut|9
+(noun)|material (generic term)|stuff (generic term)
+(noun)|tenderloin|cut (generic term)|cut of meat (generic term)
+(noun)|notch (generic term)|forestry (generic term)
+(noun)|cut|stroke (generic term)|shot (generic term)
+(noun)|cut (generic term)|cutting (generic term)
+(verb)|undersell|sell (generic term)
+(verb)|cut away (generic term)
+(verb)|hit (generic term)
+(verb)|cut (generic term)
+underdevelop|1
+(verb)|develop (generic term)
+underdeveloped|3
+(adj)|developing|nonindustrial (similar term)
+(adj)|immature (similar term)
+(adj)|flat (similar term)
+underdevelopment|2
+(noun)|development (generic term)
+(noun)|development (generic term)|developing (generic term)
+underdog|1
+(noun)|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+underdone|1
+(adj)|half-baked|raw (similar term)
+underdrawers|1
+(noun)|drawers|shorts|boxers|boxershorts|underpants (generic term)
+underdress|1
+(verb)|dress down|dress (generic term)|get dressed (generic term)|dress up (antonym)
+underdressed|1
+(adj)|clothed (similar term)|clad (similar term)
+undereducated|1
+(adj)|uneducated (similar term)
+underemployed|1
+(adj)|part-time (similar term)|parttime (similar term)
+underestimate|4
+(noun)|underestimation|underrating|underreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+(verb)|undervalue|value (generic term)|overestimate (antonym)|overvalue (antonym)
+(verb)|lowball|estimate (generic term)|gauge (generic term)|approximate (generic term)|guess (generic term)|judge (generic term)
+(verb)|underrate|misjudge (generic term)|overestimate (antonym)
+underestimation|1
+(noun)|underestimate|underrating|underreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+underevaluation|1
+(noun)|appraisal (generic term)|assessment (generic term)
+underexpose|1
+(verb)|expose (generic term)|overexpose (antonym)
+underexposure|1
+(noun)|exposure (generic term)
+underfed|1
+(adj)|ill-fed|undernourished|malnourished (similar term)
+underfelt|1
+(noun)|carpet pad (generic term)|rug pad (generic term)|underlay (generic term)|underlayment (generic term)
+underframe|1
+(noun)|skeleton|skeletal frame|frame|supporting structure (generic term)
+underfur|1
+(noun)|undercoat|fur (generic term)
+undergarment|1
+(noun)|unmentionable|garment (generic term)|overgarment (antonym)
+undergird|2
+(verb)|support (generic term)|back up (generic term)
+(verb)|brace up|strengthen (generic term)|beef up (generic term)|fortify (generic term)
+undergo|3
+(verb)|experience|receive|have|get
+(verb)|experience|see|go through|participate (generic term)|take part (generic term)
+(verb)|take|submit|digest (generic term)|endure (generic term)|stick out (generic term)|stomach (generic term)|bear (generic term)|stand (generic term)|tolerate (generic term)|support (generic term)|brook (generic term)|abide (generic term)|suffer (generic term)|put up (generic term)
+undergrad|1
+(noun)|undergraduate|collegian (generic term)|college man (generic term)|college boy (generic term)
+undergraduate|1
+(noun)|undergrad|collegian (generic term)|college man (generic term)|college boy (generic term)
+underground|4
+(adj)|belowground|subsurface (similar term)
+(adj)|clandestine|cloak-and-dagger|hole-and-corner|hugger-mugger|hush-hush|secret|surreptitious|undercover|covert (similar term)
+(noun)|resistance|revolutionary group (generic term)
+(noun)|metro|tube|subway system|subway|railway (generic term)|railroad (generic term)|railroad line (generic term)|railway line (generic term)|railway system (generic term)
+underground press|1
+(noun)|samizdat|print media (generic term)
+underground railroad|1
+(noun)|Underground Railroad|Underground Railway|escape (generic term)|flight (generic term)
+underground railway|1
+(noun)|Underground Railroad|Underground Railway|escape (generic term)|flight (generic term)
+undergrow|1
+(verb)|grow (generic term)
+undergrowth|1
+(noun)|underbrush|underwood|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+underhand|4
+(adj)|underhanded|underarm|overhand (antonym)
+(adj)|sneaky|underhanded|crooked (similar term)|corrupt (similar term)
+(adv)|underhandedly
+(adv)|underarm
+underhanded|2
+(adj)|sneaky|underhand|crooked (similar term)|corrupt (similar term)
+(adj)|underhand|underarm|overhand (antonym)
+underhandedly|1
+(adv)|underhand
+underhung|2
+(adj)|supported (similar term)
+(adj)|undershot|underslung|protrusive (similar term)
+underivative|1
+(adj)|original (similar term)
+underived|1
+(adj)|original (similar term)|primary (similar term)|derived (antonym)
+underlay|4
+(noun)|carpet pad|rug pad|underlayment|pad (generic term)
+(verb)|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+(verb)|provide (generic term)|supply (generic term)|ply (generic term)|cater (generic term)
+underlayment|1
+(noun)|carpet pad|rug pad|underlay|pad (generic term)
+underlie|2
+(verb)|be (generic term)
+(verb)|lie (generic term)
+underline|3
+(noun)|underscore|stroke (generic term)
+(verb)|underscore|emphasize|emphasise|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|underscore|mark (generic term)
+underling|1
+(noun)|subordinate|subsidiary|foot soldier|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+underlip|1
+(noun)|lip (generic term)
+underlying|3
+(adj)|implicit in|inherent|implicit (similar term)|inexplicit (similar term)
+(adj)|subjacent (similar term)
+(adj)|fundamental|rudimentary|basic (similar term)
+undermanned|1
+(adj)|short-handed|short-staffed|understaffed|inadequate (similar term)
+undermentioned|1
+(adj)|following|succeeding (similar term)
+undermine|2
+(verb)|sabotage|countermine|counteract|subvert|weaken|disobey (generic term)
+(verb)|cave|hollow (generic term)|hollow out (generic term)|core out (generic term)
+undernourish|1
+(verb)|malnourish|feed (generic term)|give (generic term)
+undernourished|1
+(adj)|ill-fed|underfed|malnourished (similar term)
+undernourishment|1
+(noun)|malnourishment|hunger (generic term)|hungriness (generic term)
+underpants|1
+(noun)|undergarment (generic term)|unmentionable (generic term)
+underpart|1
+(noun)|body part (generic term)
+underpass|1
+(noun)|subway|tunnel (generic term)
+underpay|1
+(verb)|pay (generic term)|overpay (antonym)
+underpayment|2
+(noun)|payment (generic term)
+(noun)|payment (generic term)|defrayal (generic term)|defrayment (generic term)
+underperform|2
+(verb)|underachieve|do (generic term)|perform (generic term)
+(verb)|perform (generic term)
+underperformer|2
+(noun)|underachiever|nonachiever|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|business (generic term)|concern (generic term)|business concern (generic term)|business organization (generic term)|business organisation (generic term)
+underpin|2
+(verb)|hold (generic term)|support (generic term)|sustain (generic term)|hold up (generic term)
+(verb)|corroborate|bear out|support|match (generic term)|fit (generic term)|correspond (generic term)|check (generic term)|jibe (generic term)|gibe (generic term)|tally (generic term)|agree (generic term)
+underplay|2
+(verb)|underact|act (generic term)|play (generic term)|roleplay (generic term)|playact (generic term)|overact (antonym)
+(verb)|play (generic term)
+underpopulated|1
+(adj)|inhabited (similar term)
+underprice|1
+(verb)|dump|sell (generic term)
+underprivileged|1
+(adj)|deprived (similar term)|disadvantaged (similar term)|underclass (similar term)|poor (related term)|unfortunate (related term)|privileged (antonym)
+underproduce|1
+(verb)|produce (generic term)|make (generic term)|create (generic term)
+underproduction|1
+(noun)|production (generic term)
+underquote|2
+(verb)|price (generic term)
+(verb)|quote (generic term)
+underrate|1
+(verb)|underestimate|misjudge (generic term)|overestimate (antonym)
+underrating|1
+(noun)|underestimate|underestimation|underreckoning|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+underreckoning|1
+(noun)|underestimate|underestimation|underrating|estimate (generic term)|estimation (generic term)|approximation (generic term)|idea (generic term)
+underscore|3
+(noun)|underline|stroke (generic term)
+(verb)|underline|emphasize|emphasise|stress (generic term)|emphasize (generic term)|emphasise (generic term)|punctuate (generic term)|accent (generic term)|accentuate (generic term)
+(verb)|underline|mark (generic term)
+undersea|1
+(adj)|submarine|subsurface (similar term)
+underseal|1
+(noun)|undercoat|seal (generic term)
+undersealed|1
+(adj)|undercoated|rustless (similar term)
+undersecretary|1
+(noun)|secretary (generic term)
+undersell|1
+(verb)|undercut|sell (generic term)
+underseller|1
+(noun)|seller (generic term)|marketer (generic term)|vender (generic term)|vendor (generic term)|trafficker (generic term)
+undersexed|1
+(adj)|unsexy (similar term)
+undershirt|1
+(noun)|singlet|vest|undergarment (generic term)|unmentionable (generic term)
+undershoot|2
+(verb)|land (generic term)|set down (generic term)
+(verb)|miss (generic term)|overshoot (antonym)
+undershot|1
+(adj)|underhung|underslung|protrusive (similar term)
+undershrub|1
+(noun)|shrub (generic term)|bush (generic term)
+underside|1
+(noun)|bottom|undersurface|side (generic term)|face (generic term)
+undersign|1
+(verb)|sign (generic term)
+undersize|1
+(adj)|undersized|small (similar term)|little (similar term)
+undersized|1
+(adj)|undersize|small (similar term)|little (similar term)
+underskirt|1
+(noun)|petticoat|half-slip|undergarment (generic term)|unmentionable (generic term)
+underslung|3
+(adj)|supported (similar term)
+(adj)|underhung|undershot|protrusive (similar term)
+(adj)|squat|low (similar term)
+undersoil|1
+(noun)|subsoil|soil (generic term)|dirt (generic term)
+underspend|2
+(verb)|spend (generic term)|overspend (antonym)
+(verb)|spend (generic term)|expend (generic term)|drop (generic term)|overspend (antonym)
+underspent|1
+(adj)|efficient (similar term)
+understaffed|1
+(adj)|short-handed|short-staffed|undermanned|inadequate (similar term)
+understand|4
+(verb)|realize|realise|see
+(verb)|read|interpret|translate|understand (generic term)
+(verb)|infer|believe (generic term)
+(verb)|sympathize|sympathise|empathize|empathise
+understandability|1
+(noun)|comprehensibility|quality (generic term)|incomprehensibility (antonym)
+understandable|1
+(adj)|apprehensible|intelligible|graspable|perceivable|comprehensible (similar term)|comprehendible (similar term)
+understandably|1
+(adv)|intelligibly|clearly|unintelligibly (antonym)
+understanding|5
+(adj)|perceptive (similar term)
+(noun)|apprehension|discernment|savvy|knowing (generic term)
+(noun)|agreement|statement (generic term)
+(noun)|sympathy|inclination (generic term)|disposition (generic term)|tendency (generic term)
+(noun)|reason|intellect|faculty (generic term)|mental faculty (generic term)|module (generic term)
+understate|1
+(verb)|minimize|minimise|downplay|inform (generic term)|overstate (antonym)
+understated|1
+(adj)|unostentatious|unpretentious|tasteful (similar term)
+understatement|1
+(noun)|statement (generic term)|overstatement (antonym)
+understock|1
+(verb)|stock (generic term)|buy in (generic term)|overstock (antonym)
+understood|2
+(adj)|appreciated (similar term)|apprehended (similar term)|comprehended (similar term)|interpreted (similar term)|taken (similar term)|ununderstood (antonym)
+(adj)|implied|silent|tacit|implicit (similar term)|inexplicit (similar term)
+understructure|1
+(noun)|foundation|base|fundament|foot|groundwork|substructure|support (generic term)
+understudy|2
+(noun)|standby|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(verb)|alternate|memorize (generic term)|memorise (generic term)|con (generic term)|learn (generic term)
+undersurface|1
+(noun)|bottom|underside|side (generic term)|face (generic term)
+undertake|5
+(verb)|set about|attempt|initiate (generic term)|pioneer (generic term)
+(verb)|tackle|take on|confront (generic term)|face up (generic term)|face (generic term)
+(verb)|guarantee|promise (generic term)|assure (generic term)
+(verb)|contract|promise (generic term)|assure (generic term)
+(verb)|take in charge|accept (generic term)|consent (generic term)|go for (generic term)
+undertaker|1
+(noun)|mortician|funeral undertaker|funeral director|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+undertaking|2
+(noun)|project|task|labor|work (generic term)
+(noun)|trade (generic term)|craft (generic term)
+undertide|1
+(noun)|undercurrent|current (generic term)|stream (generic term)
+undertone|3
+(noun)|tone (generic term)|tone of voice (generic term)
+(noun)|undercurrent|meaning (generic term)|substance (generic term)
+(noun)|tinge|shade (generic term)|tint (generic term)|tincture (generic term)|tone (generic term)
+undertow|2
+(noun)|inclination (generic term)
+(noun)|sea puss|sea-puss|sea purse|sea-purse|sea-poose|undertide (generic term)|undercurrent (generic term)
+undervaluation|1
+(noun)|evaluation (generic term)|valuation (generic term)|rating (generic term)
+undervalue|3
+(verb)|underestimate|value (generic term)|overestimate (antonym)|overvalue (antonym)
+(verb)|disrespect (generic term)|disesteem (generic term)
+(verb)|depreciate|devaluate|devalue|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|appreciate (antonym)
+underwater|2
+(adj)|submerged|submersed|subsurface (similar term)
+(adj)|subaqueous|subaquatic|submerged|submersed|aquatic (similar term)
+underwater archaeology|1
+(noun)|marine archeology|marine archaeology|underwater archeology|archeology (generic term)|archaeology (generic term)
+underwater archeology|1
+(noun)|marine archeology|marine archaeology|underwater archaeology|archeology (generic term)|archaeology (generic term)
+underwater diver|1
+(noun)|diver|frogman|explorer (generic term)|adventurer (generic term)
+underway|1
+(adj)|afoot|current (similar term)
+underwear|1
+(noun)|underclothes|underclothing|undergarment (generic term)|unmentionable (generic term)
+underweight|1
+(adj)|scraggy|boney|scrawny|skinny|weedy|thin (similar term)|lean (similar term)
+underwing|1
+(noun)|noctuid moth (generic term)|noctuid (generic term)|owlet moth (generic term)
+underwood|1
+(noun)|underbrush|undergrowth|brush (generic term)|brushwood (generic term)|coppice (generic term)|copse (generic term)|thicket (generic term)
+underworld|2
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|Hel|Hell|Hades|infernal region|netherworld|Scheol|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+underwrite|2
+(verb)|subvention|subvent|undertake (generic term)|guarantee (generic term)
+(verb)|cover|insure|guarantee (generic term)|warrant (generic term)
+underwriter|3
+(noun)|investment banker|agent (generic term)|factor (generic term)|broker (generic term)
+(noun)|insurance broker|insurance agent|general agent|agent (generic term)|factor (generic term)|broker (generic term)
+(noun)|insurance company|insurance firm|insurer|insurance underwriter|nondepository financial institution (generic term)
+undescended|1
+(adj)|testis|testicle|orchis|ball|ballock|bollock|nut|egg (related term)
+undescended testicle|1
+(noun)|undescended testis|testis (generic term)|testicle (generic term)|orchis (generic term)|ball (generic term)|ballock (generic term)|bollock (generic term)|nut (generic term)|egg (generic term)
+undescended testis|1
+(noun)|undescended testicle|testis (generic term)|testicle (generic term)|orchis (generic term)|ball (generic term)|ballock (generic term)|bollock (generic term)|nut (generic term)|egg (generic term)
+undescriptive|1
+(adj)|descriptive (antonym)
+undeserved|1
+(adj)|unmerited (similar term)
+undeservedly|1
+(adv)|deservedly (antonym)
+undeserving|1
+(adj)|undeserving of|unworthy of|unworthy (similar term)
+undeserving of|1
+(adj)|undeserving|unworthy of|unworthy (similar term)
+undesigned|1
+(adj)|unintentional|designed (antonym)
+undesirability|1
+(noun)|bad (generic term)|badness (generic term)|desirability (antonym)
+undesirable|3
+(adj)|unenviable (similar term)|unwanted (similar term)|hateful (related term)|unwanted (related term)|desirable (antonym)
+(adj)|unsuitable|ineligible (similar term)
+(noun)|unwelcome person (generic term)|persona non grata (generic term)
+undesired|1
+(adj)|unsought|unwanted (similar term)
+undesiring|1
+(adj)|undesirous|desirous (antonym)
+undesirous|1
+(adj)|undesiring|desirous (antonym)
+undestroyable|2
+(adj)|durable|indestructible|perdurable|imperishable (similar term)
+(adj)|indestructible (similar term)
+undetectable|2
+(adj)|invisible (similar term)|unseeable (similar term)
+(adj)|indiscernible|insensible|imperceptible (similar term)|unperceivable (similar term)
+undetected|1
+(adj)|undiscovered (similar term)|unobserved (similar term)|unseen (similar term)|detected (antonym)
+undeterminable|1
+(adj)|indeterminable|indeterminate (similar term)|unascertainable (similar term)|undiscoverable (similar term)|unpredictable (similar term)|incalculable (related term)|indeterminate (related term)|undetermined (related term)|determinable (antonym)
+undetermined|3
+(adj)|unexplained (similar term)|determined (antonym)
+(adj)|indeterminate|cost-plus (similar term)|open-ended (similar term)|inconclusive (related term)|indeterminable (related term)|undeterminable (related term)|uncertain (related term)|determinate (antonym)
+(adj)|open|undecided|unresolved|unsettled (similar term)
+undeterred|1
+(adj)|undiscouraged|resolute (similar term)
+undeveloped|3
+(adj)|budding (similar term)|immature (similar term)|unformed (similar term)|vestigial (similar term)|rudimentary (similar term)|developed (antonym)
+(adj)|unexploited|fallow (similar term)|untapped (similar term)|exploited (antonym)
+(adj)|unimproved (similar term)
+undeviating|2
+(adj)|unswerving|direct (similar term)
+(adj)|reliable (similar term)|dependable (similar term)
+undiagnosable|1
+(adj)|unidentifiable (similar term)
+undiagnosed|1
+(adj)|unknown (similar term)
+undies|1
+(noun)|lingerie (generic term)|intimate apparel (generic term)
+undifferentiated|1
+(adj)|uniform|dedifferentiated (similar term)|differentiated (antonym)
+undigested|2
+(adj)|ununderstood (similar term)
+(adj)|indigestible (similar term)
+undignified|1
+(adj)|demeaning (similar term)|humbling (similar term)|humiliating (similar term)|mortifying (similar term)|infra dig (similar term)|pathetic (similar term)|ridiculous (similar term)|silly (similar term)|discomposed (related term)|inelegant (related term)|dignified (antonym)
+undiluted|1
+(adj)|black (similar term)|concentrated (similar term)|neat (similar term)|straight (similar term)|full-strength (similar term)|diluted (antonym)
+undiminished|1
+(adj)|unrelieved|unmitigated (similar term)
+undimmed|1
+(adj)|bright|dimmed (antonym)
+undine|1
+(noun)|water sprite (generic term)|water nymph (generic term)|water spirit (generic term)
+undiplomatic|1
+(adj)|diplomatic (antonym)
+undiplomatically|1
+(adv)|without diplomacy|diplomatically (antonym)
+undirected|1
+(adj)|adrift|afloat|aimless|directionless|planless|rudderless|purposeless (similar term)
+undiscerning|1
+(adj)|obtuse (similar term)|purblind (similar term)|uncomprehending (similar term)|indiscriminate (related term)|discerning (antonym)
+undischarged|2
+(adj)|outstanding|owed|owing|unpaid (similar term)
+(adj)|unexploded|loaded (similar term)
+undiscipline|1
+(noun)|indiscipline|trait (generic term)|discipline (antonym)
+undisciplined|3
+(adj)|untrained (similar term)
+(adj)|uncorrected|unpunished (similar term)
+(adj)|ungoverned|uncontrolled (similar term)
+undisclosed|1
+(adj)|unrevealed|covert (similar term)
+undiscouraged|1
+(adj)|undeterred|resolute (similar term)
+undiscoverable|1
+(adj)|unascertainable|indeterminable (similar term)|undeterminable (similar term)
+undiscovered|2
+(adj)|undetected (similar term)
+(adj)|unexplored|unknown (similar term)
+undiscriminating|1
+(adj)|indiscriminating|indiscriminate (similar term)|scattershot (similar term)|unperceptive (similar term)|unselective (similar term)|indiscriminate (related term)|discriminating (antonym)
+undisguised|1
+(adj)|overt (similar term)|open (similar term)
+undismayed|1
+(adj)|undaunted|unshaken|resolute (similar term)
+undisputable|1
+(adj)|incontestable|indisputable|undeniable (similar term)
+undisputed|1
+(adj)|accepted|unchallenged|unquestioned|uncontroversial (similar term)|noncontroversial (similar term)
+undisputedly|1
+(adv)|unarguably
+undissolved|1
+(adj)|unmelted (similar term)
+undistinguishable|1
+(adj)|indistinguishable|distinguishable (antonym)
+undistinguished|1
+(adj)|insignificant|unnoticeable (similar term)
+undistorted|1
+(adj)|ingenuous (similar term)|artless (similar term)
+undistributed|1
+(adj)|undiversified (similar term)
+undisturbed|2
+(adj)|unmolested|untroubled (similar term)
+(adj)|peaceful (similar term)
+undiversified|1
+(adj)|general (similar term)|monolithic (similar term)|solid (similar term)|unanimous (similar term)|whole (similar term)|undistributed (similar term)|homogeneous (related term)|homogenous (related term)|diversified (antonym)
+undividable|1
+(adj)|indivisible by|indivisible (similar term)
+undivided|4
+(adj)|united (similar term)
+(adj)|unshared (similar term)
+(adj)|single|exclusive|concentrated (similar term)
+(adj)|whole (similar term)
+undivided interest|1
+(noun)|undivided right|interest (generic term)|stake (generic term)
+undivided right|1
+(noun)|undivided interest|interest (generic term)|stake (generic term)
+undo|5
+(verb)|change by reversal (generic term)|turn (generic term)|reverse (generic term)
+(verb)|unmake|make (antonym)
+(verb)|ruin (generic term)
+(verb)|untie|loosen|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|unwrap|uncover (generic term)|expose (generic term)|wrap (antonym)
+undoable|1
+(adj)|unachievable|unattainable|unrealizable|impossible (similar term)
+undock|2
+(verb)|exit (generic term)|go out (generic term)|get out (generic term)|leave (generic term)|dock (antonym)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|dock (antonym)
+undocumented|1
+(adj)|unregistered (similar term)|unsupported (similar term)|documented (antonym)
+undoer|3
+(noun)|seducer (generic term)|ladies' man (generic term)|lady killer (generic term)
+(noun)|opener|unfastener|untier|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|destroyer|ruiner|waster|uprooter|bad person (generic term)
+undogmatic|1
+(adj)|free-thinking|latitudinarian|undogmatical|broad-minded (similar term)
+undogmatical|1
+(adj)|free-thinking|latitudinarian|undogmatic|broad-minded (similar term)
+undoing|2
+(noun)|about-face (generic term)|volte-face (generic term)|reversal (generic term)|policy change (generic term)
+(noun)|untying|unfastening|loosening (generic term)|laxation (generic term)
+undomestic|1
+(adj)|undomesticated (similar term)|domestic (antonym)
+undomesticated|2
+(adj)|wild (similar term)|untamed (similar term)
+(adj)|undomestic (similar term)
+undone|4
+(adj)|unfinished (similar term)
+(adj)|done for|ruined|sunk|washed-up|unsuccessful (similar term)
+(adj)|unfastened (similar term)
+(adj)|unstuck|disorganized (similar term)|disorganised (similar term)
+undoubtedly|1
+(adv)|doubtless|beyond question|without doubt|beyond any doubt
+undrained|1
+(adj)|drained (antonym)
+undramatic|1
+(adj)|unspectacular (similar term)|dramatic (antonym)
+undramatically|1
+(adv)|dramatically (antonym)
+undrape|1
+(verb)|uncover (generic term)|expose (generic term)
+undraped|2
+(adj)|unveiled (similar term)
+(adj)|bare (similar term)
+undrawn|1
+(adj)|undelineated (similar term)
+undreamed|1
+(adj)|undreamed of|undreamt|undreamt of|unimagined|incredible (similar term)|unbelievable (similar term)
+undreamed of|1
+(adj)|undreamed|undreamt|undreamt of|unimagined|incredible (similar term)|unbelievable (similar term)
+undreamt|1
+(adj)|undreamed|undreamed of|undreamt of|unimagined|incredible (similar term)|unbelievable (similar term)
+undreamt of|1
+(adj)|undreamed|undreamed of|undreamt|unimagined|incredible (similar term)|unbelievable (similar term)
+undress|3
+(noun)|nakedness (generic term)|nudity (generic term)|nudeness (generic term)
+(verb)|discase|uncase|unclothe|strip|strip down|disrobe|peel|take off (generic term)|dress (antonym)|dress (antonym)
+(verb)|strip|divest|disinvest|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+undressed|2
+(adj)|unfinished (similar term)
+(adj)|unappareled|unattired|unclad|ungarbed|ungarmented|unclothed (similar term)
+undried|1
+(adj)|wet (similar term)
+undrinkable|1
+(adj)|drinkable (antonym)
+undset|1
+(noun)|Undset|Sigrid Undset|writer (generic term)|author (generic term)
+undue|4
+(adj)|not due|due (antonym)
+(adj)|due (antonym)
+(adj)|unjustified|unwarranted|unreasonable (similar term)
+(adj)|excessive|inordinate|unreasonable|immoderate (similar term)
+undulant|1
+(adj)|undulatory|movement|motion (related term)
+undulant fever|1
+(noun)|brucellosis|Malta fever|Gibraltar fever|Rock fever|Mediterranean fever|infectious disease (generic term)
+undulate|5
+(adj)|smooth (similar term)
+(verb)|ripple|ruffle|riffle|cockle|flow (generic term)|flux (generic term)
+(verb)|roll
+(verb)|roll|flap|wave|move (generic term)
+(verb)|change (generic term)
+undulation|3
+(noun)|wave|curve (generic term)|curved shape (generic term)
+(noun)|movement (generic term)|motion (generic term)
+(noun)|wave|movement (generic term)|motion (generic term)
+undulatory|1
+(adj)|undulant|movement|motion (related term)
+undulatory theory|1
+(noun)|wave theory|wave theory of light|scientific theory (generic term)|corpuscular theory of light (antonym)|corpuscular theory (antonym)
+undutiful|1
+(adj)|impious|disrespectful (similar term)
+undutifulness|1
+(noun)|impiety (generic term)|impiousness (generic term)
+undyed|1
+(adj)|unbleached|uncolored|natural (similar term)
+undying|1
+(adj)|deathless|immortal (similar term)
+undynamic|1
+(adj)|adynamic|stagnant (similar term)|moribund (similar term)|static (similar term)|unchanging (similar term)|dynamic (antonym)
+uneager|1
+(adj)|reluctant (similar term)|eager (antonym)
+unearned|1
+(adj)|honorary (similar term)|earned (antonym)
+unearned income|1
+(noun)|unearned revenue|income (generic term)
+unearned increment|1
+(noun)|financial gain (generic term)
+unearned revenue|1
+(noun)|unearned income|income (generic term)
+unearned run|1
+(noun)|run (generic term)|tally (generic term)|earned run (antonym)
+unearth|2
+(verb)|locate (generic term)|turn up (generic term)
+(verb)|excavate|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+unearthly|2
+(adj)|spiritual|unworldly (similar term)
+(adj)|eldritch|weird|uncanny|supernatural (similar term)
+unease|2
+(noun)|malaise|uneasiness|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|disquiet|uneasiness|discomposure (generic term)
+uneasily|1
+(adv)|anxiously|apprehensively
+uneasiness|5
+(noun)|edginess|inquietude|disquietude|anxiety (generic term)
+(noun)|malaise|unease|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|self-consciousness|uncomfortableness|embarrassment (generic term)
+(noun)|disquiet|unease|discomposure (generic term)
+(noun)|restlessness|queasiness|nervousness (generic term)
+uneasy|5
+(adj)|apprehensive (similar term)|worried (similar term)|precarious (similar term)|unstable (similar term)|tense (related term)|uncomfortable (related term)|unquiet (related term)|easy (antonym)
+(adj)|anxious|nervous|queasy|unquiet|troubled (similar term)
+(adj)|restless|unquiet (similar term)
+(adj)|awkward|ill at ease|uncomfortable (similar term)
+(adj)|uncomfortable (similar term)
+uneatable|1
+(adj)|inedible|poisonous (similar term)|indigestible (related term)|tough (related term)|unpalatable (related term)|edible (antonym)
+uneconomic|1
+(adj)|uneconomical|wasteful (similar term)
+uneconomical|2
+(adj)|wasteful|inefficient (similar term)
+(adj)|uneconomic|wasteful (similar term)
+unedifying|1
+(adj)|unenlightening|edifying (antonym)
+unedited|1
+(adj)|unaltered (similar term)|unchanged (similar term)
+uneducated|1
+(adj)|ignorant (similar term)|illiterate (similar term)|ignorant (similar term)|nescient (similar term)|unenlightened (similar term)|unlearned (similar term)|unlettered (similar term)|undereducated (similar term)|unschooled (similar term)|untaught (similar term)|untutored (similar term)|unstudied (similar term)|illiterate (related term)|innumerate (related term)|noncivilized (related term)|noncivilised (related term)|unenlightened (related term)|uninformed (related term)|educated (antonym)
+uneducated person|1
+(noun)|ignoramus|know nothing|unskilled person (generic term)
+uneffective|1
+(adj)|ineffective|ineffectual|toothless (similar term)|unproductive (similar term)|idle (related term)|inefficacious (related term)|inefficient (related term)|powerless (related term)|useless (related term)|effective (antonym)
+unelaborate|1
+(adj)|inelaborate|plain (similar term)
+unelaborated|1
+(adj)|sketchy|incomplete (similar term)|uncomplete (similar term)
+unembarrassed|1
+(adj)|unabashed|unashamed (similar term)
+unembellished|1
+(adj)|plain|bare|spare|unornamented|unadorned (similar term)|undecorated (similar term)
+unembodied|1
+(adj)|discorporate|bodiless|unbodied|disembodied|incorporeal (similar term)|immaterial (similar term)
+unemotional|2
+(adj)|chilly (similar term)|dry (similar term)|impassive (similar term)|stolid (similar term)|philosophical (similar term)|philosophic (similar term)|phlegmatic (similar term)|phlegmatical (similar term)|stoic (similar term)|stoical (similar term)|unblinking (similar term)|cool (related term)|passionless (related term)|unmoved (related term)|unaffected (related term)|untouched (related term)|unmoving (related term)|emotional (antonym)
+(adj)|reserved|restrained|reticent|undemonstrative (similar term)
+unemotional person|1
+(noun)|stoic|adult (generic term)|grownup (generic term)|emotional person (antonym)
+unemotionality|2
+(noun)|emotionlessness|impassivity|impassiveness|phlegm|indifference|stolidity|apathy (generic term)
+(noun)|emotionlessness|trait (generic term)|emotionality (antonym)
+unemotionally|1
+(adv)|emotionally (antonym)
+unemphatic|1
+(adj)|unstressed (similar term)
+unemployable|1
+(adj)|employable (antonym)
+unemployed|2
+(adj)|discharged (similar term)|dismissed (similar term)|fired (similar term)|laid-off (similar term)|pink-slipped (similar term)|idle (similar term)|jobless (similar term)|out of work (similar term)|idle (related term)|employed (antonym)
+(noun)|unemployed people|people (generic term)
+unemployed people|1
+(noun)|unemployed|people (generic term)
+unemployed person|1
+(noun)|nonworker (generic term)
+unemployment|1
+(noun)|state (generic term)|employment (antonym)
+unemployment compensation|1
+(noun)|social insurance (generic term)
+unemployment line|1
+(noun)|queue (generic term)|waiting line (generic term)
+unemployment rate|1
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+unenclosed|1
+(adj)|hypaethral (similar term)|hypethral (similar term)|open (similar term)|unfenced (similar term)|enclosed (antonym)
+unencouraging|1
+(adj)|discouraging (similar term)
+unencumbered|2
+(adj)|burdenless (similar term)|unburdened (similar term)|clear (similar term)|unmortgaged (similar term)|encumbered (antonym)
+(adj)|unburdened (similar term)
+unended|1
+(adj)|unfinished (similar term)
+unending|1
+(adj)|ageless|aeonian|eonian|eternal|everlasting|perpetual|unceasing|permanent (similar term)|lasting (similar term)
+unendingly|1
+(adv)|endlessly|ceaselessly|incessantly|unceasingly|continuously
+unendowed|1
+(adj)|dowerless (similar term)|unblessed (similar term)|endowed (antonym)
+unendurable|1
+(adj)|intolerable|unbearable|bitter (similar term)|impossible (similar term)|insufferable (similar term)|unacceptable (similar term)|unsufferable (similar term)|unsupportable (similar term)|impermissible (related term)|tolerable (antonym)
+unenergetic|1
+(adj)|slowgoing|unenterprising (similar term)|nonenterprising (similar term)
+unenergetically|1
+(adv)|lethargically
+unenforceable|1
+(adj)|enforceable (antonym)
+unenforced|1
+(adj)|enforced (antonym)
+unengaged|2
+(adj)|idle (similar term)
+(adj)|unpledged|unpromised|unattached (similar term)|uncommitted (similar term)
+unenlightened|3
+(adj)|benighted (similar term)|dark (similar term)|uneducated (related term)|uninformed (related term)|enlightened (antonym)
+(adj)|uninstructed|naive|uninformed (similar term)
+(adj)|ignorant|nescient|unlearned|unlettered|uneducated (similar term)
+unenlightening|2
+(adj)|unilluminating|enlightening (antonym)
+(adj)|unedifying|edifying (antonym)
+unenlightenment|1
+(noun)|ignorance (generic term)|enlightenment (antonym)
+unenlivened|1
+(adj)|enlivened (antonym)
+unenterprising|1
+(adj)|nonenterprising|slowgoing (similar term)|unenergetic (similar term)|unadventurous (related term)|unambitious (related term)|ambitionless (related term)|enterprising (antonym)
+unentertaining|1
+(adj)|unamusing (similar term)|entertaining (antonym)
+unenthusiastic|1
+(adj)|cold (similar term)|halfhearted (similar term)|half-hearted (similar term)|tepid (similar term)|lukewarm (similar term)|passionless (related term)|spiritless (related term)|enthusiastic (antonym)
+unenthusiastically|1
+(adv)|enthusiastically (antonym)
+unentitled|1
+(adj)|unqualified|ineligible (similar term)
+unenviable|2
+(adj)|awkward|embarrassing|sticky|difficult (similar term)|hard (similar term)
+(adj)|undesirable (similar term)
+unequal|2
+(adj)|unlike|like (antonym)
+(adj)|anisometric (similar term)|unsymmetrical (similar term)|mismatched (similar term)|uneven (similar term)|nonequivalent (similar term)|odds-on (similar term)|unbalanced (similar term)|unequalized (similar term)|unequalised (similar term)|incommensurate (related term)|equal (antonym)
+unequal to|1
+(adj)|incapable|incompetent|inadequate (similar term)
+unequaled|1
+(adj)|alone|unique|unequalled|unparalleled|incomparable (similar term)|uncomparable (similar term)
+unequalised|1
+(adj)|unequalized|unequal (similar term)
+unequalized|1
+(adj)|unequalised|unequal (similar term)
+unequalled|1
+(adj)|alone|unique|unequaled|unparalleled|incomparable (similar term)|uncomparable (similar term)
+unequally|1
+(adv)|unevenly|equally (antonym)|evenly (antonym)
+unequipped|1
+(adj)|ill-equipped (similar term)|equipped (antonym)
+unequivocal|2
+(adj)|univocal|unambiguous|absolute (similar term)|conclusive (similar term)|straightforward (similar term)|unquestionable (similar term)|unambiguous (related term)|equivocal (antonym)
+(adj)|definitive|explicit (similar term)|expressed (similar term)
+unequivocally|1
+(adv)|unambiguously|without ambiguity|ambiguously (antonym)
+unequivocalness|1
+(noun)|unambiguity|clarity (generic term)|lucidity (generic term)|lucidness (generic term)|pellucidity (generic term)|clearness (generic term)|limpidity (generic term)|equivocalness (antonym)|ambiguity (antonym)
+unerasable|1
+(adj)|indelible|ineradicable (similar term)
+unerect|1
+(adj)|accumbent (similar term)|decumbent (similar term)|recumbent (similar term)|reclining (similar term)|bent (similar term)|bowed (similar term)|inclined (similar term)|bended (similar term)|bent (similar term)|cernuous (similar term)|drooping (similar term)|nodding (similar term)|pendulous (similar term)|couchant (similar term)|crouched (similar term)|crouching (similar term)|huddled (similar term)|hunkered (similar term)|hunkered down (similar term)|dormant (similar term)|sleeping (similar term)|flat (similar term)|prostrate (similar term)|hunched (similar term)|round-backed (similar term)|round-shouldered (similar term)|stooped (similar term)|stooping (similar term)|crooked (similar term)|procumbent (similar term)|prone (similar term)|prostrate (similar term)|semi-prostrate (similar term)|slouched (similar term)|slouching (similar term)|slumped (similar term)|supine (similar term)|resupine (similar term)|erect (antonym)
+unergetic|1
+(adj)|lethargic|dazed (similar term)|foggy (similar term)|groggy (similar term)|logy (similar term)|stuporous (similar term)|dreamy (similar term)|lackadaisical (similar term)|languid (similar term)|languorous (similar term)|listless (similar term)|inactive (related term)|energetic (antonym)
+unerring|1
+(adj)|inerrable|inerrant|infallible (similar term)
+unesco|1
+(noun)|United Nations Educational Scientific and Cultural Organization|UNESCO|United Nations agency (generic term)|UN agency (generic term)
+unessential|1
+(adj)|inessential|accessorial (similar term)|adscititious (similar term)|incidental (similar term)|nonessential (similar term)|dispensable (related term)|expendable (related term)|extrinsic (related term)|secondary (related term)|unimportant (related term)|unnecessary (related term)|unneeded (related term)|essential (antonym)
+unestablished|1
+(adj)|unrecognized (similar term)|unrecognised (similar term)|established (antonym)
+unethical|2
+(adj)|wrong (related term)|ethical (antonym)
+(adj)|base|dishonorable|dishonourable|immoral|wrong (similar term)
+unethically|1
+(adv)|ethically (antonym)
+uneven|3
+(adj)|crinkled (similar term)|crinkly (similar term)|rippled (similar term)|wavy (similar term)|wavelike (similar term)|curly-grained (similar term)|cross-grained (similar term)|wavy-grained (similar term)|irregular (similar term)|jagged (similar term)|jaggy (similar term)|scraggy (similar term)|lumpy (similar term)|out of true (similar term)|untrue (similar term)|patchy (similar term)|pebble-grained (similar term)|ragged (similar term)|unparallel (similar term)|rough (related term)|unsmooth (related term)|unsteady (related term)|even (antonym)
+(adj)|mismatched|unequal (similar term)
+(adj)|spotty|scratchy|inconsistent (similar term)
+unevenly|3
+(adv)|evenly (antonym)
+(adv)|raggedly
+(adv)|unequally|equally (antonym)|evenly (antonym)
+unevenness|2
+(noun)|variability|irregularity (generic term)|unregularity (generic term)|invariability (antonym)|evenness (antonym)
+(noun)|inequality (generic term)|evenness (antonym)
+uneventful|1
+(adj)|eventful (antonym)
+unexacting|1
+(adj)|undemanding (similar term)
+unexampled|1
+(adj)|new|unprecedented (similar term)
+unexceeded|1
+(adj)|unexcelled|unsurpassed|best (similar term)
+unexcelled|1
+(adj)|unexceeded|unsurpassed|best (similar term)
+unexceptionable|1
+(adj)|unimpeachable|acceptable (similar term)
+unexceptional|1
+(adj)|run-of-the-mill|run-of-the-mine|mine run|ordinary (similar term)
+unexchangeability|1
+(noun)|changelessness (generic term)|unchangeability (generic term)|unchangeableness (generic term)|unchangingness (generic term)|exchangeability (antonym)
+unexchangeable|2
+(adj)|incommutable (similar term)|exchangeable (antonym)
+(adj)|inconvertible|unconvertible|irredeemable (similar term)|convertible (antonym)
+unexcitable|1
+(adj)|steady (similar term)|excitable (antonym)
+unexcited|1
+(adj)|unagitated (related term)|excited (antonym)
+unexciting|2
+(adj)|unstimulating|bland (similar term)|flat (similar term)|dry (similar term)|juiceless (similar term)|vapid (similar term)|unexciting (related term)|uninteresting (related term)|unmoving (related term)|stimulating (antonym)
+(adj)|commonplace (similar term)|humdrum (similar term)|prosaic (similar term)|unglamorous (similar term)|unglamourous (similar term)|uninspired (similar term)|tame (similar term)|uninteresting (related term)|unprovocative (related term)|unprovoking (related term)|unstimulating (related term)|unexciting (related term)|exciting (antonym)
+unexcitingly|1
+(adv)|excitingly (antonym)
+unexclusive|1
+(adj)|unrestricted|public (similar term)
+unexcused|1
+(adj)|nonexempt (similar term)
+unexhausted|1
+(adj)|leftover (similar term)|left over (similar term)|left (similar term)|odd (similar term)|remaining (similar term)|unexpended (similar term)|unconsumed (similar term)|unspent (similar term)|unexpended (similar term)|exhausted (antonym)
+unexpansive|2
+(adj)|expansive (antonym)
+(adj)|restrained (similar term)
+unexpected|4
+(adj)|unannounced (similar term)|unheralded (similar term)|unpredicted (similar term)|unanticipated (similar term)|unforeseen (similar term)|unlooked-for (similar term)|out of the blue (similar term)|unhoped (similar term)|unhoped-for (similar term)|unthought (similar term)|unthought-of (similar term)|unprovided for (similar term)|upset (similar term)|surprising (related term)|expected (antonym)
+(adj)|forced|unscheduled (similar term)
+(adj)|unplanned (similar term)
+(adj)|unforeseen|sudden (similar term)
+unexpectedly|2
+(adv)|out of the blue
+(adv)|by chance|accidentally|circumstantially|deliberately (antonym)
+unexpectedness|1
+(noun)|surprisingness|extraordinariness (generic term)|expectedness (antonym)
+unexpendable|1
+(adj)|essential (similar term)|essential (related term)|irreplaceable (related term)|unreplaceable (related term)|expendable (antonym)
+unexpended|2
+(adj)|unspent|unexhausted (similar term)
+(adj)|leftover|left over|left|odd|remaining|unexhausted (similar term)
+unexpired|1
+(adj)|valid (similar term)|expired (antonym)
+unexplainable|1
+(adj)|unaccountable|inexplicable (similar term)|incomprehensible (similar term)
+unexplained|2
+(adj)|undetermined (similar term)
+(adj)|inexplicable (similar term)|incomprehensible (similar term)
+unexploded|1
+(adj)|undischarged|loaded (similar term)
+unexploited|1
+(adj)|undeveloped|fallow (similar term)|untapped (similar term)|exploited (antonym)
+unexplorative|1
+(adj)|nonexploratory|nonexplorative|unexploratory|exploratory (antonym)
+unexploratory|1
+(adj)|nonexploratory|nonexplorative|unexplorative|exploratory (antonym)
+unexplored|1
+(adj)|undiscovered|unknown (similar term)
+unexportable|1
+(adj)|exportable (antonym)
+unexpressed|1
+(adj)|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unexpressible|1
+(adj)|inexpressible|indefinable (similar term)|indescribable (similar term)|ineffable (similar term)|unspeakable (similar term)|untellable (similar term)|unutterable (similar term)|expressible (antonym)
+unexpressive|1
+(adj)|deadpan|expressionless|impassive|poker-faced|uncommunicative (similar term)|incommunicative (similar term)
+unexpurgated|1
+(adj)|uncensored (similar term)
+unextended|1
+(adj)|extended (antonym)
+unfaceted|1
+(adj)|faceted (antonym)
+unfading|1
+(adj)|amaranthine|immortal (similar term)
+unfailing|3
+(adj)|foolproof|infallible (similar term)
+(adj)|inexhaustible (similar term)
+(adj)|unflagging|constant (similar term)
+unfair|2
+(adj)|partial|biased (similar term)|colored (similar term)|coloured (similar term)|one-sided (similar term)|slanted (similar term)|unfair (related term)|unjust (related term)|impartial (antonym)
+(adj)|unjust|below the belt (similar term)|cheating (similar term)|dirty (similar term)|foul (similar term)|unsporting (similar term)|unsportsmanlike (similar term)|raw (similar term)|partial (related term)|unfair (related term)|unjust (related term)|fair (antonym)
+unfairly|1
+(adv)|below the belt|fairly (antonym)
+unfairness|3
+(noun)|partiality (generic term)|partisanship (generic term)|fairness (antonym)
+(noun)|inequity|injustice (generic term)|unjustness (generic term)|equity (antonym)|fairness (antonym)
+(noun)|injustice|iniquity|shabbiness|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+unfaithful|4
+(adj)|apostate (similar term)|punic (similar term)|perfidious (similar term)|treacherous (similar term)|untrue (similar term)|inconstant (related term)|untrustworthy (related term)|untrusty (related term)|faithful (antonym)
+(adj)|adulterous (similar term)|cheating (similar term)|two-timing (similar term)|faithful (antonym)
+(adj)|faithless|traitorous|treasonable|treasonous|disloyal (similar term)
+(adj)|inaccurate (similar term)
+unfaithfully|1
+(adv)|undependably|unreliably|reliably (antonym)|dependably (antonym)|faithfully (antonym)
+unfaithfulness|1
+(noun)|infidelity|quality (generic term)|faithfulness (antonym)|fidelity (antonym)
+unfaltering|1
+(adj)|firm|steadfast|steady|stiff|unbendable|unshakable|unwavering|resolute (similar term)
+unfalteringly|1
+(adv)|determinedly|unshakably|with determination
+unfamiliar|1
+(adj)|strange (similar term)|unknown (similar term)|unacquainted (similar term)|unacquainted with (similar term)|unfamiliar with (similar term)|foreign (related term)|strange (related term)|unknown (related term)|familiar (antonym)
+unfamiliar with|1
+(adj)|unacquainted|unacquainted with|unfamiliar (similar term)
+unfamiliarity|1
+(noun)|strangeness|unusualness (generic term)|familiarity (antonym)
+unfashionable|1
+(adj)|unstylish|antique (similar term)|demode (similar term)|ex (similar term)|old-fashioned (similar term)|old-hat (similar term)|outmoded (similar term)|passe (similar term)|passee (similar term)|dated (similar term)|dowdy (similar term)|frumpy (similar term)|frumpish (similar term)|fogyish (similar term)|moss-grown (similar term)|mossy (similar term)|stick-in-the-mud (similar term)|stodgy (similar term)|out (similar term)|prehistoric (similar term)|old (related term)|fashionable (antonym)
+unfashionably|1
+(adv)|fashionably (antonym)
+unfasten|2
+(verb)|undo (generic term)|fasten (antonym)
+(verb)|open (generic term)|open up (generic term)|fasten (antonym)
+unfastened|4
+(adj)|unbarred (similar term)|unbolted (similar term)|unlatched (similar term)|unlocked (similar term)|unsecured (similar term)|undone (similar term)|fastened (antonym)
+(adj)|open|ajar (similar term)|wide-open (similar term)|open (related term)|shut (antonym)
+(adj)|unbuttoned|open-collared (similar term)|buttoned (antonym)
+(adj)|untied|tied (antonym)
+unfastener|1
+(noun)|undoer|opener|untier|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unfastening|1
+(noun)|untying|undoing|loosening (generic term)|laxation (generic term)
+unfastidious|2
+(adj)|fastidious (antonym)
+(adj)|unrefined (related term)|untidy (related term)|fastidious (antonym)
+unfathomable|3
+(adj)|unsoundable (similar term)|deep (related term)|fathomable (antonym)
+(adj)|abysmal|abyssal|deep (similar term)
+(adj)|incomprehensible (similar term)|uncomprehensible (similar term)
+unfathomed|1
+(adj)|profound|unplumbed|unsounded|deep (similar term)
+unfattened|1
+(adj)|unfinished (similar term)
+unfavorable|3
+(adj)|unfavourable|admonitory (similar term)|admonishing (similar term)|reproachful (similar term)|reproving (similar term)|adverse (similar term)|harmful (similar term)|inauspicious (similar term)|untoward (similar term)|hostile (similar term)|disapproving (similar term)|discriminatory (similar term)|invidious (similar term)|bad (related term)|critical (related term)|negative (related term)|uncomplimentary (related term)|favorable (antonym)
+(adj)|unfavourable|adverse (similar term)|contrary (similar term)|unpropitious (related term)|favorable (antonym)
+(adj)|unfavourable|bad (similar term)
+unfavorable judgment|1
+(noun)|criticism|disapproval (generic term)
+unfavorable position|1
+(noun)|inferiority|disadvantage (generic term)
+unfavorableness|1
+(noun)|unfavourableness|disadvantage (generic term)|favorableness (antonym)
+unfavorably|1
+(adv)|unfavourably|favorably (antonym)
+unfavourable|3
+(adj)|unfavorable|admonitory (similar term)|admonishing (similar term)|reproachful (similar term)|reproving (similar term)|adverse (similar term)|harmful (similar term)|inauspicious (similar term)|untoward (similar term)|hostile (similar term)|disapproving (similar term)|discriminatory (similar term)|invidious (similar term)|bad (related term)|critical (related term)|negative (related term)|uncomplimentary (related term)|favorable (antonym)
+(adj)|unfavorable|adverse (similar term)|contrary (similar term)|unpropitious (related term)|favorable (antonym)
+(adj)|unfavorable|bad (similar term)
+unfavourableness|1
+(noun)|unfavorableness|disadvantage (generic term)|favorableness (antonym)
+unfavourably|1
+(adv)|unfavorably|favorably (antonym)
+unfearing|1
+(adj)|audacious|brave|dauntless|fearless|intrepid|bold (similar term)
+unfeasibility|1
+(noun)|infeasibility|impracticability (generic term)|impracticableness (generic term)|feasibility (antonym)
+unfeasible|1
+(adj)|impracticable|infeasible|unworkable|impossible (similar term)
+unfeathered|2
+(adj)|featherless|plucked (similar term)|unfledged (similar term)|fledgeless (similar term)|unvaned (similar term)|feathered (antonym)
+(adj)|unfledged (similar term)|immature (similar term)
+unfed|2
+(adj)|malnourished (similar term)
+(adj)|unfueled (similar term)
+unfeeling|2
+(adj)|hardhearted|stonyhearted|uncompassionate (similar term)
+(adj)|insentient (similar term)|insensate (similar term)
+unfeelingly|2
+(adv)|feelingly (antonym)
+(adv)|callously
+unfeelingness|1
+(noun)|callousness|callosity|hardness|insensibility|insensitivity (generic term)|insensitiveness (generic term)
+unfeigned|1
+(adj)|genuine|true|sincere (similar term)
+unfeignedly|1
+(adv)|sincerely|truly|insincerely (antonym)
+unfeminine|1
+(adj)|unwomanly (similar term)
+unfenced|1
+(adj)|unenclosed (similar term)
+unfermented|1
+(adj)|fresh|sweet|unsoured (similar term)
+unfertile|1
+(adj)|sterile|infertile|barren (similar term)|sterilized (similar term)|sterilised (similar term)|unfertilized (similar term)|unfertilised (similar term)|unimpregnated (similar term)|unfruitful (related term)|impotent (related term)|unproductive (related term)|fertile (antonym)
+unfertilised|1
+(adj)|unfertilized|unimpregnated|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+unfertilized|1
+(adj)|unfertilised|unimpregnated|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+unfettered|1
+(adj)|unchained|unshackled|untied|unbound (similar term)
+unfilled|1
+(adj)|filled (antonym)
+unfilmed|1
+(adj)|untaped|live (similar term)|unrecorded (similar term)
+unfinished|3
+(adj)|raw (similar term)|unsanded (similar term)|roughhewn (similar term)|rough-cut (similar term)|undressed (similar term)|unfattened (similar term)|unhewn (similar term)|rough (related term)|unsmooth (related term)|unpainted (related term)|unprocessed (related term)|finished (antonym)
+(adj)|incomplete (similar term)|uncompleted (similar term)|pending (similar term)|undone (similar term)|unended (similar term)|finished (antonym)
+(adj)|bare|unpainted (similar term)
+unfinished business|1
+(noun)|loose end|work (generic term)
+unfirm|2
+(adj)|unsteady|unfixed (similar term)
+(adj)|shifting|loose (similar term)
+unfit|4
+(adj)|condemned (similar term)|subhuman (similar term)|unsuitable (similar term)|fit (antonym)
+(adj)|afflicted (similar term)|impaired (similar term)|apractic (similar term)|apraxic (similar term)|bandy (similar term)|bandy-legged (similar term)|bowed (similar term)|bowleg (similar term)|bowlegged (similar term)|broken-backed (similar term)|crippled (similar term)|halt (similar term)|halting (similar term)|lame (similar term)|gimpy (similar term)|game (similar term)|crookback (similar term)|crookbacked (similar term)|humped (similar term)|humpbacked (similar term)|hunchbacked (similar term)|gibbous (similar term)|kyphotic (similar term)|disabled (similar term)|handicapped (similar term)|gammy (similar term)|knock-kneed (similar term)|soft (similar term)|flabby (similar term)|flaccid (similar term)|spavined (similar term)|dipped (similar term)|lordotic (similar term)|swayback (similar term)|swaybacked (similar term)|maimed (similar term)|mutilated (similar term)|ill (related term)|sick (related term)|unhealthy (related term)|unsound (related term)|fit (antonym)
+(adj)|bad|unsound|unhealthy (similar term)
+(verb)|disqualify|indispose|change (generic term)|alter (generic term)|modify (generic term)|qualify (antonym)
+unfitness|3
+(noun)|softness|poor shape|bad condition|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|fitness (antonym)
+(noun)|inability|quality (generic term)|ability (antonym)
+(noun)|unsuitability (generic term)|unsuitableness (generic term)|ineptness (generic term)|fitness (antonym)
+unfitting|1
+(adj)|inappropriate|incompatible|out or keeping|incongruous (similar term)
+unfixed|2
+(adj)|detached (similar term)|free (similar term)|floating (similar term)|unfirm (similar term)|unsteady (similar term)|insecure (related term)|fixed (antonym)
+(adj)|nebulous|indefinite (similar term)
+unflagging|2
+(adj)|indefatigable|tireless|unwearying|energetic (similar term)
+(adj)|unfailing|constant (similar term)
+unflappable|1
+(adj)|imperturbable|composed (similar term)
+unflattering|1
+(adj)|uncomplimentary|flattering (antonym)
+unflavored|1
+(adj)|unflavoured|nonflavored|nonflavoured|tasteless (similar term)
+unflavoured|1
+(adj)|unflavored|nonflavored|nonflavoured|tasteless (similar term)
+unflawed|1
+(adj)|flawless|perfect (similar term)
+unfledged|3
+(adj)|immature|unfeathered (similar term)|fledged (antonym)
+(adj)|fledgeless|unvaned|unfeathered (similar term)|featherless (similar term)
+(adj)|fledgling|callow|inexperienced (similar term)|inexperient (similar term)
+unflinching|1
+(adj)|unblinking|unintimidated|unshrinking|unafraid (similar term)|fearless (similar term)
+unfluctuating|1
+(adj)|firm|steady|stable (similar term)
+unflurried|1
+(adj)|unflustered|unperturbed|unruffled|composed (similar term)
+unflustered|1
+(adj)|unflurried|unperturbed|unruffled|composed (similar term)
+unfocused|2
+(adj)|unfocussed|focused (antonym)
+(adj)|unfocussed|distributed (similar term)
+unfocussed|2
+(adj)|unfocused|focused (antonym)
+(adj)|unfocused|distributed (similar term)
+unfold|4
+(verb)|blossom|blossom out|blossom forth|develop (generic term)
+(verb)|uncover (generic term)|bring out (generic term)|unveil (generic term)|reveal (generic term)
+(verb)|stretch|stretch out|extend|change shape (generic term)|change form (generic term)|deform (generic term)
+(verb)|spread|spread out|open|undo (generic term)|fold (antonym)
+unfolding|1
+(noun)|flowering|development (generic term)|evolution (generic term)
+unforbearing|1
+(adj)|impatient (similar term)
+unforced|2
+(adj)|uncoerced|willing|voluntary (similar term)
+(adj)|unstrained|effortless (similar term)
+unforceful|1
+(adj)|forceless|wimpish (similar term)|wimpy (similar term)|forceful (antonym)
+unforeseeable|1
+(adj)|unpredictable (similar term)
+unforeseen|2
+(adj)|unanticipated|unlooked-for|out of the blue|unexpected (similar term)
+(adj)|unexpected|sudden (similar term)
+unforesightful|1
+(adj)|short|shortsighted|myopic|improvident (similar term)
+unforested|1
+(adj)|unwooded (similar term)|treeless (similar term)
+unforethoughtful|1
+(adj)|improvident (similar term)
+unforfeitable|1
+(adj)|inalienable|indefeasible (similar term)
+unforgettable|1
+(adj)|haunting (similar term)|persistent (similar term)|memorable (similar term)|red-letter (similar term)|forgettable (antonym)
+unforgettably|1
+(adv)|memorably|unmemorably (antonym)
+unforgivable|1
+(adj)|inexcusable|unpardonable (similar term)
+unforgivably|1
+(adv)|inexcusably|unpardonably|forgivably (antonym)|pardonably (antonym)|excusably (antonym)
+unforgiving|2
+(adj)|revengeful (similar term)|vindictive (similar term)|vengeful (similar term)|forgiving (antonym)
+(adj)|grim|inexorable|relentless|stern|unappeasable|unrelenting|implacable (similar term)
+unforgivingly|1
+(adv)|forgivingly (antonym)
+unformatted capacity|1
+(noun)|capacity (generic term)
+unformed|4
+(adj)|amorphous (similar term)|formless (similar term)|shapeless (similar term)|unshaped (similar term)|unshapen (similar term)|formed (antonym)
+(adj)|unorganized (similar term)|unorganised (similar term)
+(adj)|immature (similar term)
+(adj)|immature|undeveloped (similar term)
+unfortunate|4
+(adj)|abject (similar term)|black (similar term)|calamitous (similar term)|disastrous (similar term)|fatal (similar term)|fateful (similar term)|dispossessed (similar term)|homeless (similar term)|roofless (similar term)|hapless (similar term)|miserable (similar term)|misfortunate (similar term)|pathetic (similar term)|piteous (similar term)|pitiable (similar term)|pitiful (similar term)|poor (similar term)|wretched (similar term)|doomed (similar term)|ill-fated (similar term)|ill-omened (similar term)|ill-starred (similar term)|unlucky (similar term)|downtrodden (similar term)|infelicitous (similar term)|unhappy (similar term)|regrettable (similar term)|too bad (similar term)|underprivileged (related term)|unlucky (related term)|luckless (related term)|unsuccessful (related term)|fortunate (antonym)
+(adj)|inauspicious|unpromising (similar term)|auspicious (antonym)
+(adj)|infelicitous (similar term)
+(noun)|unfortunate person|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unfortunate person|1
+(noun)|unfortunate|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unfortunately|1
+(adv)|unluckily|regrettably|alas|luckily (antonym)|fortunately (antonym)
+unfounded|1
+(adj)|baseless|groundless|idle|unwarranted|wild|unsupported (similar term)
+unframed|1
+(adj)|framed (antonym)
+unfree|1
+(adj)|adscript (similar term)|adscripted (similar term)|apprenticed (similar term)|articled (similar term)|bound (similar term)|indentured (similar term)|at bay (similar term)|cornered (similar term)|trapped (similar term)|treed (similar term)|captive (similar term)|confined (similar term)|imprisoned (similar term)|jailed (similar term)|entangled (similar term)|nonautonomous (similar term)|nonsovereign (similar term)|prisonlike (similar term)|serflike (similar term)|bound (related term)|confined (related term)|dependent (related term)|restricted (related term)|slave (related term)|free (antonym)
+unfreeze|2
+(verb)|dissolve|thaw|unthaw|dethaw|melt|liquefy (generic term)|flux (generic term)|liquify (generic term)
+(verb)|unblock|free|release|issue (generic term)|supply (generic term)|freeze (antonym)|block (antonym)
+unfrequented|1
+(adj)|lonely|solitary|inaccessible (similar term)|unaccessible (similar term)
+unfretted|1
+(adj)|bar (related term)|fretted (antonym)
+unfriendliness|2
+(noun)|dislike (generic term)|friendliness (antonym)
+(noun)|disposition (generic term)|temperament (generic term)|friendliness (antonym)
+unfriendly|4
+(adj)|friendly (antonym)
+(adj)|beetle-browed (similar term)|scowling (similar term)|chilly (similar term)|hostile (similar term)|uncordial (similar term)|unneighborly (similar term)|unneighbourly (similar term)|cool (related term)|hostile (related term)|inhospitable (related term)|uncongenial (related term)|incompatible (related term)|unsociable (related term)|friendly (antonym)
+(adj)|inimical|hostile (similar term)
+(adj)|hostile|uncongenial|inhospitable (similar term)
+unfrightened|1
+(adj)|unafraid (similar term)|fearless (similar term)
+unfrock|1
+(verb)|defrock|divest (generic term)|disinvest (generic term)
+unfrosted|1
+(adj)|clear (similar term)
+unfrozen|1
+(adj)|ice-free (similar term)|liquescent (similar term)|melting (similar term)|slushy (similar term)|thawed (similar term)|melted (related term)|liquid (related term)|liquified (related term)|frozen (antonym)
+unfruitful|1
+(adj)|abortive (similar term)|stillborn (similar term)|unsuccessful (similar term)|acarpous (similar term)|childless (similar term)|sterile (related term)|unfertile (related term)|infertile (related term)|fruitful (antonym)
+unfueled|1
+(adj)|self-sustained (similar term)|unfed (similar term)|fueled (antonym)
+unfulfilled|1
+(adj)|unrealized|unrealised|unsuccessful (similar term)
+unfunctional|1
+(adj)|impractical (similar term)
+unfunded|1
+(adj)|funded (antonym)
+unfunny|1
+(adj)|humorless (similar term)|humourless (similar term)|unhumorous (similar term)
+unfurl|1
+(verb)|unroll|change surface (generic term)|roll up (antonym)
+unfurnished|1
+(adj)|furnished (antonym)
+unfurrowed|1
+(adj)|unwrinkled|furrowed (antonym)
+ungainliness|1
+(noun)|gawkiness|awkwardness (generic term)|clumsiness (generic term)
+ungainly|2
+(adj)|gawky|clumsy|clunky|unwieldy|awkward (similar term)
+(adj)|awkward|bunglesome|clumsy|unwieldy (similar term)|unmanageable (similar term)
+ungallant|1
+(adj)|caddish|unchivalrous|discourteous (similar term)
+ungarbed|1
+(adj)|unappareled|unattired|unclad|undressed|ungarmented|unclothed (similar term)
+ungarmented|1
+(adj)|unappareled|unattired|unclad|undressed|ungarbed|unclothed (similar term)
+ungathered|1
+(adj)|uncollected|gathered (antonym)|collected (antonym)
+ungeared|1
+(adj)|out of gear (similar term)|geared (antonym)
+ungenerous|2
+(adj)|meanspirited|stingy (related term)|ungenerous (related term)|generous (antonym)
+(adj)|stingy|beggarly (similar term)|mean (similar term)|cheap (similar term)|chinchy (similar term)|chintzy (similar term)|cheeseparing (similar term)|close (similar term)|near (similar term)|penny-pinching (similar term)|skinny (similar term)|closefisted (similar term)|hardfisted (similar term)|tightfisted (similar term)|grudging (similar term)|niggardly (similar term)|scrimy (similar term)|mean (similar term)|mingy (similar term)|miserly (similar term)|tight (similar term)|parsimonious (similar term)|penurious (similar term)|selfish (related term)|uncharitable (related term)|ungenerous (related term)|meanspirited (related term)|generous (antonym)
+ungentle|1
+(adj)|ignoble|untitled|lowborn (similar term)
+ungentlemanlike|1
+(adj)|ungentlemanly|unrefined (similar term)
+ungentlemanly|1
+(adj)|ungentlemanlike|unrefined (similar term)
+ungetatable|1
+(adj)|un-come-at-able|un-get-at-able|inaccessible (similar term)|unaccessible (similar term)
+unglamorous|1
+(adj)|commonplace|humdrum|prosaic|unglamourous|unexciting (similar term)
+unglamourous|1
+(adj)|commonplace|humdrum|prosaic|unglamorous|unexciting (similar term)
+unglazed|2
+(adj)|glassless|glazed (antonym)
+(adj)|unvitrified (similar term)|glazed (antonym)
+ungodliness|1
+(noun)|godlessness|impiety (generic term)|impiousness (generic term)|godliness (antonym)
+ungodly|2
+(adj)|iniquitous|sinful|wicked (similar term)
+(adj)|impious|irreligious (similar term)
+ungovernable|1
+(adj)|indocile|uncontrollable|unruly|unmanageable (similar term)|difficult (similar term)
+ungoverned|2
+(adj)|unbridled|unchecked|uncurbed|unrestrained (similar term)
+(adj)|undisciplined|uncontrolled (similar term)
+ungraceful|1
+(adj)|graceless|awkward (similar term)
+ungracefully|1
+(adv)|ungraciously|gracelessly|woodenly|without graciousness|gracefully (antonym)|graciously (antonym)
+ungracefulness|1
+(noun)|gracelessness|awkwardness (generic term)|clumsiness (generic term)
+ungracious|2
+(adj)|churlish (similar term)|graceless (similar term)|unpleasing (similar term)|unrefined (related term)|gracious (antonym)
+(adj)|discourteous|impolite (similar term)
+ungraciously|1
+(adv)|ungracefully|gracelessly|woodenly|without graciousness|gracefully (antonym)|graciously (antonym)
+ungraciousness|1
+(noun)|discourtesy (generic term)|rudeness (generic term)|graciousness (antonym)
+ungradable opposition|1
+(noun)|opposition (generic term)|oppositeness (generic term)
+ungraded|2
+(adj)|dirt|unimproved (similar term)
+(adj)|unordered|unranked|nonhierarchical (similar term)|nonhierarchic (similar term)
+ungrammatical|1
+(adj)|ill-formed|grammatical (antonym)
+ungrammatically|1
+(adv)|grammatically (antonym)
+ungrasped|1
+(adj)|ununderstood (similar term)
+ungrateful|2
+(adj)|thankless|unthankful|unappreciative (similar term)|grateful (antonym)
+(adj)|unpleasant (similar term)
+ungrateful person|1
+(noun)|ingrate|thankless wretch|unwelcome person (generic term)|persona non grata (generic term)
+ungratefully|1
+(adv)|unappreciatively|gratefully (antonym)|appreciatively (antonym)
+ungratefulness|1
+(noun)|ingratitude|feeling (generic term)|gratitude (antonym)
+ungratified|1
+(adj)|restless|unsatisfied|discontented (similar term)|discontent (similar term)
+ungratifying|1
+(adj)|thankless|unappreciated|unrewarding (similar term)
+ungreased|1
+(adj)|unlubricated|lubricated (antonym)
+ungregarious|3
+(adj)|caespitose (similar term)|cespitose (similar term)|tufted (similar term)|gregarious (antonym)
+(adj)|nongregarious (similar term)|nonsocial (similar term)|solitary (similar term)|unsocial (related term)|gregarious (antonym)
+(adj)|unsociable (similar term)
+ungroomed|1
+(adj)|bushy (similar term)|shaggy (similar term)|shaggy-haired (similar term)|shaggy-coated (similar term)|ill-dressed (similar term)|unbrushed (similar term)|unkempt (similar term)|untidy (related term)|groomed (antonym)
+ungrudging|1
+(adj)|generous (similar term)
+ungrudgingly|1
+(adv)|grudgingly (antonym)
+ungual|1
+(adj)|horny structure|unguis (related term)|animal foot|foot (related term)
+unguaranteed|1
+(adj)|unsecured|insecure (similar term)|unsafe (similar term)
+unguarded|2
+(adj)|vulnerable (similar term)
+(adj)|unwary (similar term)
+unguent|1
+(noun)|ointment|unction|balm|salve|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+unguiculata|1
+(noun)|Unguiculata|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+unguiculate|2
+(adj)|unguiculated|clawed (similar term)|clawlike (similar term)|ungulate (antonym)
+(noun)|unguiculate mammal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+unguiculate mammal|1
+(noun)|unguiculate|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+unguiculated|1
+(adj)|unguiculate|clawed (similar term)|clawlike (similar term)|ungulate (antonym)
+unguided|1
+(adj)|guided (antonym)
+unguis|1
+(noun)|horny structure|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+ungulata|1
+(noun)|Ungulata|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+ungulate|2
+(adj)|ungulated|hoofed|hooved|solid-hoofed (similar term)|unguiculate (antonym)
+(noun)|hoofed mammal|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+ungulated|1
+(adj)|ungulate|hoofed|hooved|solid-hoofed (similar term)|unguiculate (antonym)
+ungummed|1
+(adj)|nonadhesive (similar term)
+ungusseted|1
+(adj)|gusseted (antonym)
+unhallow|1
+(verb)|desecrate|deconsecrate|change by reversal (generic term)|turn (generic term)|reverse (generic term)|consecrate (antonym)
+unhallowed|1
+(adj)|unholy|profane (similar term)|unconsecrated (similar term)|unsanctified (similar term)|holy (antonym)
+unhampered|2
+(adj)|unhindered|unrestrained (similar term)
+(adj)|free of|free (similar term)
+unhand|1
+(verb)|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+unhappily|2
+(adv)|happily (antonym)
+(adv)|sadly|happily (antonym)
+unhappiness|2
+(noun)|sadness|feeling (generic term)|happiness (antonym)
+(noun)|emotional state (generic term)|spirit (generic term)|happiness (antonym)
+unhappy|4
+(adj)|homesick (similar term)|nostalgic (similar term)|lovesick (similar term)|miserable (similar term)|suffering (similar term)|wretched (similar term)|dejected (related term)|discontented (related term)|discontent (related term)|dysphoric (related term)|distressed (related term)|unhappy (related term)|infelicitous (related term)|joyless (related term)|sad (related term)|sorrowful (related term)|cheerless (related term)|uncheerful (related term)|happy (antonym)
+(adj)|dysphoric|distressed|dejected (related term)|unhappy (related term)|euphoric (antonym)
+(adj)|unpleasant (similar term)
+(adj)|infelicitous|unfortunate (similar term)
+unhardened|1
+(adj)|untempered|brittle (similar term)|unannealed (similar term)|tempered (antonym)
+unharmed|1
+(adj)|unhurt|unscathed|whole|uninjured (similar term)
+unharmonious|1
+(adj)|inharmonious|discordant (similar term)|disharmonious (similar term)|dissonant (similar term)|inharmonic (similar term)|false (similar term)|off-key (similar term)|sour (similar term)|unresolved (similar term)|dissonant (similar term)|incompatible (related term)|harmonious (antonym)
+unharmoniously|1
+(adv)|discordantly
+unharness|1
+(verb)|unhitch (generic term)|harness (antonym)
+unhatched|1
+(adj)|unborn (similar term)
+unhazardous|1
+(adj)|risk-free|riskless|safe (similar term)
+unheaded|1
+(adj)|headed (antonym)
+unhealed|1
+(adj)|ill (similar term)|sick (similar term)
+unhealthful|3
+(adj)|unsanitary|insanitary|unhygienic (similar term)|sanitary (antonym)
+(adj)|crippling (similar term)|disabling (similar term)|incapacitating (similar term)|cytopathogenic (similar term)|infective (similar term)|morbific (similar term)|pathogenic (similar term)|unmedicinal (similar term)|unmedicative (similar term)|unmedical (similar term)|nonmedicinal (similar term)|unhealthy (similar term)|septic (related term)|infected (related term)|toxic (related term)|unwholesome (related term)|healthful (antonym)
+(adj)|insalubrious|unhealthy|unwholesome (similar term)
+unhealthfulness|1
+(noun)|unwholesomeness (generic term)|morbidness (generic term)|morbidity (generic term)|healthfulness (antonym)
+unhealthiness|1
+(noun)|ill health|health problem|pathological state (generic term)|good health (antonym)
+unhealthy|3
+(adj)|angry (similar term)|arthritic (similar term)|creaky (similar term)|rheumatic (similar term)|rheumatoid (similar term)|rheumy (similar term)|asthmatic (similar term)|wheezing (similar term)|wheezy (similar term)|bad (similar term)|unfit (similar term)|unsound (similar term)|blebby (similar term)|blistery (similar term)|bloated (similar term)|distended (similar term)|puffed (similar term)|puffy (similar term)|swollen (similar term)|intumescent (similar term)|tumescent (similar term)|tumid (similar term)|turgid (similar term)|bloodshot (similar term)|cankerous (similar term)|ulcerated (similar term)|ulcerous (similar term)|carbuncled (similar term)|carbuncular (similar term)|carious (similar term)|caseous (similar term)|chilblained (similar term)|colicky (similar term)|flatulent (similar term)|gassy (similar term)|cytomegalic (similar term)|dehydrated (similar term)|diseased (similar term)|morbid (similar term)|pathologic (similar term)|pathological (similar term)|edematous (similar term)|dropsical (similar term)|enlarged (similar term)|foaming (similar term)|foamy (similar term)|frothing (similar term)|gangrenous (similar term)|mortified (similar term)|inflamed (similar term)|inflammatory (similar term)|ingrowing (similar term)|ingrown (similar term)|jaundiced (similar term)|icteric (similar term)|yellow (similar term)|membranous (similar term)|membrane-forming (similar term)|mental (similar term)|proinflammatory (similar term)|pro-inflammatory (similar term)|sallow (similar term)|sickly (similar term)|sore-eyed (similar term)|sunburned (similar term)|sunburnt (similar term)|varicose (similar term)|windburned (similar term)|windburnt (similar term)|frail (related term)|ill (related term)|sick (related term)|unfit (related term)|unwholesome (related term)|healthy (antonym)
+(adj)|insalubrious|unhealthful|unwholesome (similar term)
+(adj)|unhealthful (similar term)
+unhearable|1
+(adj)|inaudible|breathed (similar term)|voiceless (similar term)|infrasonic (similar term)|silent (similar term)|silent (similar term)|unsounded (similar term)|supersonic (similar term)|ultrasonic (similar term)|unheard (similar term)|imperceptible (related term)|unperceivable (related term)|quiet (related term)|audible (antonym)
+unheard|1
+(adj)|inaudible (similar term)|unhearable (similar term)
+unheard-of|1
+(adj)|unknown (similar term)
+unhearing|1
+(adj)|profoundly deaf|stone-deaf|deaf as a post|deaf (similar term)
+unheated|1
+(adj)|unwarmed|cold (similar term)
+unheeded|1
+(adj)|ignored|neglected|unnoticed (similar term)
+unheeding|1
+(adj)|heedless|thoughtless|careless (similar term)|regardless (similar term)|deaf (similar term)|indifferent (similar term)|heedful (antonym)
+unhelpful|1
+(adj)|unaccommodating (similar term)|unconstructive (similar term)|discouraging (related term)|uncooperative (related term)|helpful (antonym)
+unhelpfully|1
+(adv)|helpfully (antonym)
+unhelpfulness|1
+(noun)|unkindness (generic term)
+unheralded|1
+(adj)|unannounced|unpredicted|unexpected (similar term)
+unhesitating|1
+(adj)|resolute|decisive (similar term)
+unhesitatingly|1
+(adv)|hesitantly (antonym)
+unhewn|1
+(adj)|unfinished (similar term)
+unhindered|1
+(adj)|unhampered|unrestrained (similar term)
+unhinge|2
+(verb)|perturb|disquiet|trouble|cark|distract|disorder|disturb (generic term)|upset (generic term)|trouble (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+unhinged|1
+(adj)|brainsick|crazy|demented|distracted|disturbed|mad|sick|unbalanced|insane (similar term)
+unhitch|1
+(verb)|undo (generic term)|hitch (antonym)
+unholiness|1
+(noun)|quality (generic term)|holiness (antonym)
+unholy|3
+(adj)|unhallowed|profane (similar term)|unconsecrated (similar term)|unsanctified (similar term)|holy (antonym)
+(adj)|demonic|diabolic|diabolical|fiendish|hellish|infernal|satanic|evil (similar term)
+(adj)|sinful|wicked|unrighteous (similar term)
+unhomogenised|1
+(adj)|unhomogenized|unblended (similar term)
+unhomogenized|1
+(adj)|unhomogenised|unblended (similar term)
+unhook|1
+(verb)|detach (generic term)|hook (antonym)
+unhoped|1
+(adj)|unhoped-for|unthought|unthought-of|unexpected (similar term)
+unhoped-for|1
+(adj)|unhoped|unthought|unthought-of|unexpected (similar term)
+unhopeful|1
+(adj)|abject|resigned|hopeless (similar term)
+unhorse|1
+(verb)|dismount|light|get off|get down|descend (generic term)|fall (generic term)|go down (generic term)|come down (generic term)
+unhostile|1
+(adj)|amicable (similar term)
+unhuman|1
+(adj)|dehumanized|dehumanised|nonhuman (similar term)
+unhumorous|1
+(adj)|humorless|humourless|sobersided (similar term)|po-faced (similar term)|unfunny (similar term)|humorous (antonym)
+unhurried|2
+(adj)|careful (similar term)|deliberate (similar term)|measured (similar term)|easy (similar term)|easygoing (similar term)|leisurely (similar term)|hurried (antonym)
+(adj)|patient (similar term)
+unhurriedly|1
+(adv)|hurriedly (antonym)
+unhurriedness|1
+(noun)|slowness|deliberation|deliberateness|pace (generic term)|rate (generic term)
+unhurt|2
+(adj)|unharmed|unscathed|whole|uninjured (similar term)
+(adj)|safe and sound|safe (similar term)
+unhygienic|1
+(adj)|unsanitary (similar term)|insanitary (similar term)|unhealthful (similar term)
+unhygienically|1
+(adv)|hygienically (antonym)
+uniat|1
+(noun)|Uniat|Uniate|Uniate Christian|Catholic (generic term)
+uniat church|1
+(noun)|Uniat Church|Uniate Church|Catholic Church (generic term)
+uniate|2
+(adj)|Uniate|Catholic Church (related term)
+(noun)|Uniat|Uniate|Uniate Christian|Catholic (generic term)
+uniate christian|1
+(noun)|Uniat|Uniate|Uniate Christian|Catholic (generic term)
+uniate church|1
+(noun)|Uniat Church|Uniate Church|Catholic Church (generic term)
+unicameral|1
+(adj)|bicameral (antonym)
+unicef|1
+(noun)|United Nations Children's Fund|United Nations International Children's Emergency Fund|UNICEF|United Nations agency (generic term)|UN agency (generic term)
+unicellular|1
+(adj)|living thing|animate thing (related term)
+unicorn|1
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+unicorn root|1
+(noun)|colicroot|colic root|crow corn|star grass|liliaceous plant (generic term)
+unicuspid|1
+(adj)|angular (similar term)|angulate (similar term)
+unicycle|2
+(noun)|monocycle|wheeled vehicle (generic term)
+(verb)|bicycle (generic term)|cycle (generic term)|bike (generic term)|pedal (generic term)|wheel (generic term)
+unicyclist|1
+(noun)|pedaler (generic term)|pedaller (generic term)
+unidentifiable|1
+(adj)|elusive (similar term)|intangible (similar term)|unclassifiable (similar term)|undiagnosable (similar term)|unrecognizable (similar term)|unrecognisable (similar term)|identifiable (antonym)
+unidentified|2
+(adj)|unknown (similar term)
+(adj)|nameless|unknown|unnamed|anonymous (similar term)|anon. (similar term)
+unidentified flying object|1
+(noun)|UFO|flying saucer|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+unidimensional|1
+(adj)|one-dimensional|multidimensional (antonym)
+unidirectional|1
+(adj)|one-way (similar term)|simplex (similar term)|unifacial (similar term)|bidirectional (antonym)
+unifacial|1
+(adj)|unidirectional (similar term)
+unification|3
+(noun)|fusion|merger|union (generic term)
+(noun)|union|state (generic term)|separation (antonym)
+(noun)|union|uniting|conjugation|jointure|combination (generic term)|combining (generic term)|compounding (generic term)|disunion (antonym)
+unification church|1
+(noun)|Unification Church|church (generic term)|Christian church (generic term)
+unified|2
+(adj)|incorporate|incorporated|integrated|merged|united (similar term)
+(adj)|coordinated|co-ordinated|interconnected|integrated (similar term)
+unifoliate|1
+(adj)|leafy (similar term)
+uniform|6
+(adj)|unvarying|single (similar term)|multiform (antonym)
+(adj)|consistent|homogeneous (similar term)|homogenous (similar term)
+(adj)|undifferentiated|dedifferentiated (similar term)|differentiated (antonym)
+(adj)|regular (similar term)
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+uniform resource locator|1
+(noun)|URL|universal resource locator|address (generic term)|computer address (generic term)
+uniformed|1
+(adj)|clothed (similar term)|clad (similar term)
+uniformise|1
+(verb)|uniformize|change (generic term)|alter (generic term)|modify (generic term)
+uniformity|2
+(noun)|regularity (generic term)
+(noun)|uniformness|similarity (generic term)|nonuniformity (antonym)
+uniformize|1
+(verb)|uniformise|change (generic term)|alter (generic term)|modify (generic term)
+uniformness|1
+(noun)|uniformity|similarity (generic term)|nonuniformity (antonym)
+unify|5
+(verb)|unite|merge|integrate (generic term)|disunify (antonym)
+(verb)|mix|mingle|commix|amalgamate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|unite|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|unite|join (generic term)|fall in (generic term)|get together (generic term)|divide (antonym)
+(verb)|unite|merge|change (generic term)|alter (generic term)|modify (generic term)
+unifying|2
+(adj)|consolidative|integrative (similar term)
+(adj)|centripetal|centralizing (similar term)|centralising (similar term)
+unilateral|2
+(adj)|one-sided|one-party (similar term)|multilateral (antonym)
+(adj)|unilateralist|lineal (similar term)|direct (similar term)
+unilateral contract|1
+(noun)|agreement (generic term)|understanding (generic term)
+unilateral descent|1
+(noun)|descent (generic term)|line of descent (generic term)|lineage (generic term)|filiation (generic term)
+unilateral paralysis|1
+(noun)|hemiplegia|paralysis (generic term)|palsy (generic term)
+unilateralism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+unilateralist|2
+(adj)|unilateral|lineal (similar term)|direct (similar term)
+(noun)|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+unilaterally|1
+(adv)|bilaterally (antonym)
+unilluminated|1
+(adj)|lightless|unlighted|unlit|dark (similar term)
+unilluminating|1
+(adj)|unenlightening|enlightening (antonym)
+unimaginable|1
+(adj)|impossible|inconceivable|out of the question|unthinkable (similar term)
+unimaginably|1
+(adv)|unthinkably
+unimaginative|3
+(adj)|sterile|uninspired|uninventive|uncreative (similar term)
+(adj)|practical (similar term)
+(adj)|stereotyped|stereotypic|stereotypical|conventional (similar term)
+unimaginatively|2
+(adv)|prosaically
+(adv)|imaginatively (antonym)
+unimagined|1
+(adj)|undreamed|undreamed of|undreamt|undreamt of|incredible (similar term)|unbelievable (similar term)
+unimodal|1
+(adj)|bimodal (antonym)
+unimpaired|1
+(adj)|intact (similar term)|whole (similar term)|undamaged (related term)|uninjured (related term)|impaired (antonym)
+unimpassioned|1
+(adj)|passionless (similar term)
+unimpeachable|3
+(adj)|unquestionable (similar term)
+(adj)|blameless|inculpable|irreproachable|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+(adj)|unexceptionable|acceptable (similar term)
+unimpeachably|1
+(adv)|unquestionably
+unimpeded|1
+(adj)|unobstructed (similar term)
+unimportance|2
+(noun)|humbleness|obscureness|lowliness|obscurity (generic term)
+(noun)|value (generic term)|importance (antonym)
+unimportant|2
+(adj)|inconsequent (similar term)|inconsequential (similar term)|immaterial (similar term)|indifferent (similar term)|fiddling (similar term)|footling (similar term)|lilliputian (similar term)|little (similar term)|niggling (similar term)|piddling (similar term)|piffling (similar term)|petty (similar term)|picayune (similar term)|trivial (similar term)|lightweight (similar term)|nickel-and-dime (similar term)|small-time (similar term)|potty (similar term)|meaningless (related term)|nonmeaningful (related term)|inessential (related term)|unessential (related term)|insignificant (related term)|unimportant (related term)|important (antonym)
+(adj)|insignificant|hole-and-corner (similar term)|hole-in-corner (similar term)|inappreciable (similar term)|light (similar term)|superficial (similar term)|trivial (similar term)|meaningless (related term)|nonmeaningful (related term)|unimportant (related term)|significant (antonym)
+unimposing|1
+(adj)|unimpressive (similar term)
+unimpregnated|1
+(adj)|unfertilized|unfertilised|sterile (similar term)|unfertile (similar term)|infertile (similar term)
+unimpressed|1
+(adj)|unaffected (similar term)
+unimpressionable|1
+(adj)|impressionable (antonym)
+unimpressive|1
+(adj)|unimposing (similar term)|humble (related term)|impressive (antonym)
+unimpressively|1
+(adv)|impressively (antonym)
+unimprisoned|1
+(adj)|unconfined|free (similar term)
+unimproved|2
+(adj)|dirt (similar term)|ungraded (similar term)|scrub (similar term)|undeveloped (similar term)|improved (antonym)
+(adj)|uncleared (similar term)
+unincorporated|1
+(adj)|unorganized (similar term)|unorganised (similar term)
+unindustrialised|1
+(adj)|unindustrialized|nonindustrial (similar term)
+unindustrialized|1
+(adj)|unindustrialised|nonindustrial (similar term)
+uninebriated|1
+(adj)|unintoxicated|sober (similar term)
+uninfected|1
+(adj)|clean|antiseptic (similar term)
+uninflected|2
+(adj)|inflected (antonym)
+(adj)|analytic|isolating (similar term)|synthetic (antonym)
+uninfluenced|1
+(adj)|unswayed|untouched|unaffected (similar term)
+uninfluential|1
+(adj)|influential (antonym)
+uninformative|1
+(adj)|newsless (similar term)|informative (antonym)
+uninformatively|1
+(adv)|uninstructively|instructively (antonym)|informatively (antonym)
+uninformed|1
+(adj)|clueless (similar term)|ignorant (similar term)|unknowledgeable (similar term)|unknowing (similar term)|unwitting (similar term)|innocent (similar term)|unacquainted (similar term)|newsless (similar term)|unadvised (similar term)|uninstructed (similar term)|unenlightened (similar term)|naive (similar term)|unread (similar term)|naive (related term)|naif (related term)|uneducated (related term)|unenlightened (related term)|informed (antonym)
+uninhabitable|1
+(adj)|unlivable (similar term)|unliveable (similar term)
+uninhabited|1
+(adj)|abandoned (similar term)|derelict (similar term)|depopulated (similar term)|unoccupied (similar term)|untenanted (similar term)|unpeopled (similar term)|unpopulated (similar term)|unsettled (similar term)|inhabited (antonym)
+uninhibited|1
+(adj)|abandoned (similar term)|earthy (similar term)|unrepressed (similar term)|unsuppressed (similar term)|unreserved (related term)|unrestrained (related term)|inhibited (antonym)
+uninitiate|2
+(adj)|uninitiated|naive|inexperienced (similar term)|inexperient (similar term)
+(noun)|people (generic term)|initiate (antonym)
+uninitiated|1
+(adj)|uninitiate|naive|inexperienced (similar term)|inexperient (similar term)
+uninjectable|1
+(adj)|injectable (antonym)
+uninjured|1
+(adj)|intact (similar term)|inviolate (similar term)|uncut (similar term)|unharmed (similar term)|unhurt (similar term)|unscathed (similar term)|whole (similar term)|unwounded (similar term)|safe (related term)|sound (related term)|unbroken (related term)|undamaged (related term)|unimpaired (related term)|injured (antonym)
+uninominal|1
+(adj)|one-member|single (similar term)
+uninominal system|1
+(noun)|uninominal voting system|single-member system|scrutin uninomial system|scrutin uninominal voting system|voting system (generic term)|electoral system (generic term)
+uninominal voting system|1
+(noun)|uninominal system|single-member system|scrutin uninomial system|scrutin uninominal voting system|voting system (generic term)|electoral system (generic term)
+uninquiring|2
+(adj)|uninquisitive|inquiring (antonym)
+(adj)|uninquisitive|incurious (similar term)
+uninquisitive|2
+(adj)|uninquiring|inquiring (antonym)
+(adj)|uninquiring|incurious (similar term)
+uninspired|2
+(adj)|unexciting (similar term)
+(adj)|sterile|unimaginative|uninventive|uncreative (similar term)
+uninspiring|1
+(adj)|inspiring (antonym)
+uninstructed|1
+(adj)|unenlightened|naive|uninformed (similar term)
+uninstructive|1
+(adj)|instructive (antonym)
+uninstructively|1
+(adv)|uninformatively|instructively (antonym)|informatively (antonym)
+uninsurability|1
+(noun)|ineligibility (generic term)|insurability (antonym)
+uninsurable|1
+(adj)|uninsured (similar term)
+uninsured|1
+(adj)|uninsurable (similar term)|insured (antonym)
+unintegrated|2
+(adj)|nonintegrated|integrated (antonym)
+(adj)|segregated|isolated (similar term)|quarantined (similar term)|separate (similar term)|sequestered (similar term)|white (similar term)|lily-white (similar term)|divided (related term)|separate (related term)|integrated (antonym)
+unintelligent|1
+(adj)|stupid|brainless (similar term)|headless (similar term)|feebleminded (similar term)|half-witted (similar term)|slow-witted (similar term)|imbecile (similar term)|imbecilic (similar term)|idiotic (similar term)|moronic (similar term)|retarded (related term)|stupid (related term)|intelligent (antonym)
+unintelligently|1
+(adv)|intelligently (antonym)
+unintelligibility|2
+(noun)|incoherence|incoherency|nonsense (generic term)|bunk (generic term)|nonsensicality (generic term)|meaninglessness (generic term)|hokum (generic term)
+(noun)|incomprehensibility (generic term)|intelligibility (antonym)
+unintelligible|2
+(adj)|slurred (similar term)|thick (similar term)|incomprehensible (related term)|uncomprehensible (related term)|intelligible (antonym)
+(adj)|opaque|incomprehensible (similar term)|uncomprehensible (similar term)
+unintelligibly|1
+(adv)|ununderstandably|intelligibly (antonym)
+unintended|1
+(adj)|accidental (similar term)|inadvertent (similar term)|causeless (similar term)|fortuitous (similar term)|uncaused (similar term)|unintentional (similar term)|unplanned (similar term)|unwitting (similar term)|unmotivated (related term)|unplanned (related term)|intended (antonym)
+unintentional|3
+(adj)|undesigned|designed (antonym)
+(adj)|unwilled|unwilling (similar term)
+(adj)|unplanned|unwitting|unintended (similar term)
+unintentionally|1
+(adv)|accidentally|deliberately (antonym)|intentionally (antonym)
+uninterested|2
+(adj)|apathetic (similar term)|indifferent (similar term)|blase (similar term)|bored (similar term)|dismissive (similar term)|dulled (similar term)|benumbed (similar term)|interested (antonym)
+(adj)|incurious (similar term)
+uninteresting|2
+(adj)|boring (similar term)|deadening (similar term)|dull (similar term)|ho-hum (similar term)|irksome (similar term)|slow (similar term)|tedious (similar term)|tiresome (similar term)|wearisome (similar term)|insipid (similar term)|jejune (similar term)|narcotic (similar term)|soporiferous (similar term)|soporific (similar term)|pedestrian (similar term)|prosaic (similar term)|prosy (similar term)|earthbound (similar term)|ponderous (similar term)|putdownable (similar term)|unexciting (related term)|unstimulating (related term)|unexciting (related term)|interesting (antonym)
+(adj)|institutional (similar term)
+uninterestingly|1
+(adv)|interestingly (antonym)
+uninterestingness|1
+(noun)|powerlessness (generic term)|impotence (generic term)|impotency (generic term)|interestingness (antonym)
+uninterrupted|2
+(adj)|unbroken (similar term)
+(adj)|continuous|around-the-clock (similar term)|day-and-night (similar term)|nonstop (similar term)|round-the-clock (similar term)|ceaseless (similar term)|constant (similar term)|incessant (similar term)|never-ending (similar term)|perpetual (similar term)|unceasing (similar term)|unremitting (similar term)|continual (similar term)|dogging (similar term)|persisting (similar term)|endless (similar term)|free burning (similar term)|sustained (similar term)|straight (similar term)|consecutive (similar term)|sustained (similar term)|unbroken (related term)|discontinuous (antonym)
+unintimidated|1
+(adj)|unblinking|unflinching|unshrinking|unafraid (similar term)|fearless (similar term)
+unintoxicated|1
+(adj)|uninebriated|sober (similar term)
+unintrusive|1
+(adj)|not intrusive|intrusive (antonym)
+uninucleate|1
+(adj)|organelle|cell organelle|cell organ (related term)|multinucleate (antonym)
+uninventive|1
+(adj)|sterile|unimaginative|uninspired|uncreative (similar term)
+uninvited|1
+(adj)|unwelcome (similar term)
+uninvitedly|1
+(adv)|unwantedly
+uninviting|2
+(adj)|unattractive (similar term)|untempting (similar term)|unattractive (related term)|inviting (antonym)
+(adj)|untempting|unseductive (similar term)
+uninvolved|2
+(adj)|unconcerned (similar term)|involved (antonym)
+(adj)|degage|detached|unconcerned (similar term)
+unio|1
+(noun)|Unio|genus Unio|mollusk genus (generic term)
+uniocular dichromat|1
+(noun)|dichromat (generic term)
+union|13
+(adj)|Union|Federal|northern (similar term)
+(adj)|closed (similar term)|organized (similar term)|organised (similar term)|unionized (similar term)|unionised (similar term)|nonunion (antonym)
+(noun)|labor union|trade union|trades union|brotherhood|organization (generic term)|organisation (generic term)
+(noun)|Union|North|United States (generic term)|United States of America (generic term)|America (generic term)|the States (generic term)|US (generic term)|U.S. (generic term)|USA (generic term)|U.S.A. (generic term)
+(noun)|coupling|mating|pairing|conjugation|sexual union|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+(noun)|unification|state (generic term)|separation (antonym)
+(noun)|marriage|matrimony|spousal relationship|wedlock|marital status (generic term)
+(noun)|conglutination|healing (generic term)
+(noun)|political unit (generic term)|political entity (generic term)
+(noun)|sum|join|set (generic term)
+(noun)|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|device (generic term)
+(noun)|unification|uniting|conjugation|jointure|combination (generic term)|combining (generic term)|compounding (generic term)|disunion (antonym)
+union army|1
+(noun)|Union Army|army (generic term)|regular army (generic term)|ground forces (generic term)|blue (generic term)
+union card|1
+(noun)|membership card (generic term)
+union flag|1
+(noun)|Union Jack|Union flag|flag (generic term)
+union jack|1
+(noun)|Union Jack|Union flag|flag (generic term)
+union member|1
+(noun)|trade unionist|unionist|worker (generic term)
+union of burma|1
+(noun)|Myanmar|Union of Burma|Burma|Asian country (generic term)|Asian nation (generic term)
+union of serbia and montenegro|1
+(noun)|Serbia and Montenegro|Union of Serbia and Montenegro|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|European country (generic term)|European nation (generic term)
+union of soviet socialist republics|1
+(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country (generic term)|state (generic term)|land (generic term)
+union representative|1
+(noun)|representative (generic term)
+union shop|1
+(noun)|company (generic term)
+union soldier|1
+(noun)|Federal|Federal soldier|Union soldier|Yankee (generic term)|Yank (generic term)|Northerner (generic term)
+union suit|1
+(noun)|long underwear|undergarment (generic term)|unmentionable (generic term)
+unionidae|1
+(noun)|Unionidae|family Unionidae|mollusk family (generic term)
+unionisation|1
+(noun)|unionization|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+unionise|2
+(verb)|unionize|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)
+(verb)|unionize|organize|organise|join (generic term)|fall in (generic term)|get together (generic term)
+unionised|2
+(adj)|nonionized|nonionised|unionized|nonionic|ionized (antonym)
+(adj)|organized|organised|unionized|union (similar term)
+unionism|1
+(noun)|trade unionism|labor movement (generic term)|trade union movement (generic term)|labor (generic term)
+unionist|1
+(noun)|trade unionist|union member|worker (generic term)
+unionization|1
+(noun)|unionisation|constitution (generic term)|establishment (generic term)|formation (generic term)|organization (generic term)|organisation (generic term)
+unionize|2
+(verb)|unionise|enroll (generic term)|inscribe (generic term)|enter (generic term)|enrol (generic term)|recruit (generic term)
+(verb)|unionise|organize|organise|join (generic term)|fall in (generic term)|get together (generic term)
+unionized|2
+(adj)|nonionized|nonionised|unionised|nonionic|ionized (antonym)
+(adj)|organized|organised|unionised|union (similar term)
+uniovular|1
+(adj)|uniovulate|reproductive structure (related term)
+uniovulate|1
+(adj)|uniovular|reproductive structure (related term)
+uniparous|1
+(adj)|multiparous (antonym)
+unipolar|1
+(adj)|bipolar (antonym)
+unipolar depression|1
+(noun)|major depressive episode (generic term)
+unique|4
+(adj)|alone|unequaled|unequalled|unparalleled|incomparable (similar term)|uncomparable (similar term)
+(adj)|specific (similar term)
+(adj)|singular|single (similar term)
+(adj)|unusual (similar term)
+uniquely|1
+(adv)|unambiguously
+uniqueness|1
+(noun)|singularity|individuality (generic term)|individualism (generic term)|individuation (generic term)
+unironed|1
+(adj)|wrinkled|drip-dry (similar term)|permanent-press (similar term)|roughdried (similar term)|unpressed (similar term)|rough (related term)|unsmooth (related term)|ironed (antonym)
+unisex|1
+(adj)|androgynous (similar term)
+unisexual|1
+(adj)|sexual (similar term)
+unison|3
+(noun)|agreement (generic term)|accord (generic term)
+(noun)|concurrence (generic term)|coincidence (generic term)|conjunction (generic term)|co-occurrence (generic term)
+(noun)|sound (generic term)
+unit|6
+(noun)|unit of measurement|definite quantity (generic term)
+(noun)|part (generic term)|portion (generic term)|component part (generic term)|component (generic term)
+(noun)|social unit|organization (generic term)|organisation (generic term)
+(noun)|whole (generic term)
+(noun)|building block|thing (generic term)
+(noun)|whole|object (generic term)|physical object (generic term)
+unit cell|1
+(noun)|unit (generic term)|building block (generic term)
+unit character|1
+(noun)|character (generic term)
+unit cost|1
+(noun)|cost (generic term)
+unit investment trust|1
+(noun)|unit trust|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+unit matrix|1
+(noun)|identity matrix|scalar matrix (generic term)
+unit of ammunition|1
+(noun)|round|one shot|ammunition (generic term)|ammo (generic term)
+unit of measurement|1
+(noun)|unit|definite quantity (generic term)
+unit of time|1
+(noun)|time unit|measure (generic term)|quantity (generic term)|amount (generic term)
+unit of viscosity|1
+(noun)|unit of measurement (generic term)|unit (generic term)
+unit trust|1
+(noun)|unit investment trust|investment company (generic term)|investment trust (generic term)|investment firm (generic term)|fund (generic term)
+unitard|1
+(noun)|leotard|body suit|cat suit|garment (generic term)
+unitarian|2
+(adj)|Unitarian|Protestantism (related term)
+(noun)|Unitarian|disciple (generic term)|adherent (generic term)
+unitarian church|1
+(noun)|Unitarian Church|Protestant denomination (generic term)
+unitarianism|1
+(noun)|Unitarianism|Protestantism (generic term)
+unitary|4
+(adj)|state (related term)
+(adj)|thing (related term)
+(adj)|federal (antonym)
+(adj)|one|united (similar term)
+unite|6
+(verb)|unify|join (generic term)|fall in (generic term)|get together (generic term)|divide (antonym)
+(verb)|unify|merge|integrate (generic term)|disunify (antonym)
+(verb)|combine|have (generic term)|feature (generic term)
+(verb)|connect|link|link up|join
+(verb)|unify|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|unify|merge|change (generic term)|alter (generic term)|modify (generic term)
+united|3
+(adj)|agreed (similar term)|in agreement (similar term)|allied (similar term)|confederate (similar term)|confederative (similar term)|amalgamate (similar term)|amalgamated (similar term)|coalesced (similar term)|consolidated (similar term)|fused (similar term)|coalescent (similar term)|coalescing (similar term)|cohesive (similar term)|conjugate (similar term)|conjugated (similar term)|coupled (similar term)|conjunct (similar term)|federate (similar term)|federated (similar term)|incorporate (similar term)|incorporated (similar term)|integrated (similar term)|merged (similar term)|unified (similar term)|in league (similar term)|one (similar term)|unitary (similar term)|suprasegmental (similar term)|tied (similar term)|undivided (similar term)|unpartitioned (similar term)|unsegmented (similar term)|nonsegmental (similar term)|collective (related term)|integrated (related term)|joint (related term)|divided (antonym)
+(adj)|combined|concerted|conjunct|conjunctive|cooperative|joint (similar term)
+(adj)|joined|married (similar term)
+united arab emirate dirham|1
+(noun)|United Arab Emirate dirham|dirham|United Arab Emirate monetary unit (generic term)
+united arab emirate monetary unit|1
+(noun)|United Arab Emirate monetary unit|monetary unit (generic term)
+united arab emirates|1
+(noun)|United Arab Emirates|Asian country (generic term)|Asian nation (generic term)
+united arab emirates's capital|1
+(noun)|Abu Dhabi|United Arab Emirates's capital|national capital (generic term)
+united arab republic|1
+(noun)|Egypt|Arab Republic of Egypt|United Arab Republic|African country (generic term)|African nation (generic term)
+united church of christ|1
+(noun)|United Church of Christ|Protestant denomination (generic term)
+united front|1
+(noun)|Northern Alliance|United Front|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+united kingdom|1
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+united kingdom of great britain and northern ireland|1
+(noun)|United Kingdom|UK|U.K.|Great Britain|GB|Britain|United Kingdom of Great Britain and Northern Ireland|kingdom (generic term)
+united methodist church|1
+(noun)|United Methodist Church|Methodist denomination (generic term)
+united mexican states|1
+(noun)|Mexico|United Mexican States|North American country (generic term)|North American nation (generic term)
+united mine workers|1
+(noun)|United Mine Workers of America|United Mine Workers|industrial union (generic term)|vertical union (generic term)
+united mine workers of america|1
+(noun)|United Mine Workers of America|United Mine Workers|industrial union (generic term)|vertical union (generic term)
+united nations|1
+(noun)|United Nations|UN|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+united nations agency|1
+(noun)|United Nations agency|UN agency|administrative unit (generic term)|administrative body (generic term)
+united nations children's fund|1
+(noun)|United Nations Children's Fund|United Nations International Children's Emergency Fund|UNICEF|United Nations agency (generic term)|UN agency (generic term)
+united nations crime prevention and criminal justice|1
+(noun)|United Nations Crime Prevention and Criminal Justice|Centre for International Crime Prevention|United Nations agency (generic term)|UN agency (generic term)
+united nations day|1
+(noun)|United Nations Day|October 24|day (generic term)
+united nations educational scientific and cultural organization|1
+(noun)|United Nations Educational Scientific and Cultural Organization|UNESCO|United Nations agency (generic term)|UN agency (generic term)
+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 (generic term)|UN agency (generic term)
+united nations office for drug control and crime prevention|1
+(noun)|United Nations Office for Drug Control and Crime Prevention|DCCP|United Nations agency (generic term)|UN agency (generic term)
+united nations secretariat|1
+(noun)|United Nations Secretariat|secretariat (generic term)|secretariate (generic term)
+united republic of tanzania|1
+(noun)|Tanzania|United Republic of Tanzania|African country (generic term)|African nation (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+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 (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+united society of believers in christ's second appearing|1
+(noun)|Shakers|United Society of Believers in Christ's Second Appearing|sect (generic term)|religious sect (generic term)|religious order (generic term)
+united states|2
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government (generic term)
+united states air force|1
+(noun)|United States Air Force|U. S. Air Force|US Air Force|Air Force|USAF|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states air force academy|1
+(noun)|United States Air Force Academy|US Air Force Academy|air force academy (generic term)
+united states army|1
+(noun)|United States Army|US Army|U. S. Army|Army|USA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+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 (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states army rangers|1
+(noun)|United States Army Rangers|battalion (generic term)
+united states army special forces|1
+(noun)|Special Forces|U. S. Army Special Forces|United States Army Special Forces|division (generic term)
+united states attorney general|1
+(noun)|Attorney General|United States Attorney General|US Attorney General|secretary (generic term)
+united states border patrol|1
+(noun)|United States Border Patrol|US Border Patrol|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states cabinet|1
+(noun)|United States Cabinet|US Cabinet|cabinet (generic term)
+united states civil war|1
+(noun)|American Civil War|United States Civil War|War between the States|civil war (generic term)
+united states coast guard|1
+(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard (generic term)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states code|1
+(noun)|United States Code|U. S. Code|legal code (generic term)
+united states congress|1
+(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+united states constitution|1
+(noun)|United States Constitution|Constitution of the United States|fundamental law (generic term)|organic law (generic term)|constitution (generic term)
+united states customary system|1
+(noun)|United States Customary System|system of weights and measures (generic term)
+united states department of defense|1
+(noun)|Department of Defense|Defense Department|United States Department of Defense|Defense|DoD|executive department (generic term)
+united states department of state|1
+(noun)|Department of State|United States Department of State|State Department|State|DoS|executive department (generic term)
+united states dollar|1
+(noun)|United States dollar|dollar (generic term)
+united states dry unit|1
+(noun)|United States dry unit|dry unit (generic term)|dry measure (generic term)
+united states fish and wildlife service|1
+(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states government|1
+(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government (generic term)
+united states government accounting office|1
+(noun)|Government Accounting Office|GAO|United States Government Accounting Office|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states government printing office|1
+(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+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 (generic term)
+united states intelligence agency|1
+(noun)|United States intelligence agency|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+united states intelligence community|1
+(noun)|Intelligence Community|National Intelligence Community|United States Intelligence Community|IC|intelligence (generic term)|intelligence service (generic term)|intelligence agency (generic term)
+united states liquid unit|1
+(noun)|United States liquid unit|liquid unit (generic term)|liquid measure (generic term)
+united states marine corps|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+united states marines|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+united states marshals service|1
+(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency (generic term)
+united states military academy|1
+(noun)|United States Military Academy|US Military Academy|military academy (generic term)
+united states mint|1
+(noun)|United States Mint|U.S. Mint|US Mint|mint (generic term)
+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 (generic term)
+united states naval academy|1
+(noun)|United States Naval Academy|US Naval Academy|naval academy (generic term)
+united states navy|1
+(noun)|United States Navy|US Navy|USN|Navy|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states of america|1
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+united states post office|1
+(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency (generic term)
+united states postal inspection service|1
+(noun)|United States Postal Inspection Service|US Postal Inspection Service|independent agency (generic term)
+united states postal service|1
+(noun)|United States Postal Service|US Postal Service|USPS|independent agency (generic term)
+united states president|1
+(noun)|President of the United States|United States President|President|Chief Executive|head of state (generic term)|chief of state (generic term)
+united states public health service|1
+(noun)|United States Public Health Service|PHS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+united states secret service|1
+(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency (generic term)
+united states senate|1
+(noun)|United States Senate|U.S. Senate|US Senate|Senate|senate (generic term)
+united states supreme court|1
+(noun)|Supreme Court|Supreme Court of the United States|United States Supreme Court|federal court (generic term)
+united states trade representative|1
+(noun)|United States Trade Representative|US Trade Representative|executive agency (generic term)
+united states treasury|1
+(noun)|Department of the Treasury|Treasury Department|Treasury|United States Treasury|executive department (generic term)
+united states virgin islands|1
+(noun)|United States Virgin Islands|American Virgin Islands|VI|possession (generic term)
+united states waters|1
+(noun)|United States waters|U.S. waters|territorial waters (generic term)
+unitedly|1
+(adv)|together|in collaboration
+uniting|2
+(noun)|amalgamation|merger|consolidation (generic term)|integration (generic term)
+(noun)|union|unification|conjugation|jointure|combination (generic term)|combining (generic term)|compounding (generic term)|disunion (antonym)
+unitisation|4
+(noun)|unitization|chunking|configuration (generic term)|constellation (generic term)
+(noun)|unitization|packaging (generic term)
+(noun)|unitization|conversion (generic term)
+(noun)|unitization|exploitation (generic term)|development (generic term)
+unitise|3
+(verb)|unitize|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|unitize|aggregate (generic term)|combine (generic term)
+(verb)|unitize|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+unitization|4
+(noun)|unitisation|chunking|configuration (generic term)|constellation (generic term)
+(noun)|unitisation|packaging (generic term)
+(noun)|unitisation|conversion (generic term)
+(noun)|unitisation|exploitation (generic term)|development (generic term)
+unitize|3
+(verb)|unitise|divide (generic term)|split (generic term)|split up (generic term)|separate (generic term)|dissever (generic term)|carve up (generic term)
+(verb)|unitise|aggregate (generic term)|combine (generic term)
+(verb)|unitise|classify (generic term)|class (generic term)|sort (generic term)|assort (generic term)|sort out (generic term)|separate (generic term)
+unity|3
+(noun)|integrity|wholeness|state (generic term)
+(noun)|one|1|I|ace|single|digit (generic term)|figure (generic term)
+(noun)|oneness|identity (generic term)|identicalness (generic term)|indistinguishability (generic term)
+univalent|2
+(adj)|bivalent (antonym)|multivalent (antonym)
+(adj)|monovalent|polyvalent (antonym)
+univalve|2
+(adj)|single-shelled (similar term)|bivalve (antonym)
+(noun)|gastropod|mollusk (generic term)|mollusc (generic term)|shellfish (generic term)
+universal|7
+(adj)|cosmopolitan|ecumenical|oecumenical|general|worldwide|world-wide|comprehensive (similar term)
+(adj)|general (similar term)
+(adj)|adaptable (similar term)
+(noun)|linguistic universal|rule (generic term)|linguistic rule (generic term)
+(noun)|universal proposition|proposition (generic term)|particular proposition (antonym)|particular (antonym)
+(noun)|convention (generic term)|normal (generic term)|pattern (generic term)|rule (generic term)|formula (generic term)
+(noun)|universal joint|coupling (generic term)|coupler (generic term)
+universal agent|1
+(noun)|general agent|agent (generic term)|special agent (antonym)
+universal donor|1
+(noun)|blood donor (generic term)
+universal gas constant|1
+(noun)|gas constant|R|constant (generic term)
+universal gravitational constant|1
+(noun)|gravitational constant|constant of gravitation|G|constant (generic term)
+universal joint|1
+(noun)|universal|coupling (generic term)|coupler (generic term)
+universal product code|1
+(noun)|bar code|Universal Product Code|code (generic term)
+universal proposition|1
+(noun)|universal|proposition (generic term)|particular proposition (antonym)|particular (antonym)
+universal quantifier|1
+(noun)|quantifier (generic term)
+universal resource locator|1
+(noun)|URL|uniform resource locator|address (generic term)|computer address (generic term)
+universal set|1
+(noun)|set (generic term)
+universal solvent|1
+(noun)|alkahest|alcahest|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+universal suffrage|1
+(noun)|right to vote (generic term)|vote (generic term)|suffrage (generic term)
+universal time|1
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|UT|UT1|time (generic term)
+universal veil|1
+(noun)|velum|plant part (generic term)|plant structure (generic term)
+universalise|1
+(verb)|universalize|generalize (generic term)|generalise (generic term)|extrapolate (generic term)|infer (generic term)
+universalism|1
+(noun)|theological doctrine (generic term)
+universalist|1
+(adj)|universalistic|theological doctrine (related term)
+universalistic|2
+(adj)|universalist|theological doctrine (related term)
+(adj)|concept|conception|construct (related term)
+universality|1
+(noun)|catholicity|generality (generic term)
+universalize|1
+(verb)|universalise|generalize (generic term)|generalise (generic term)|extrapolate (generic term)|infer (generic term)
+universe|3
+(noun)|existence|creation|world|cosmos|macrocosm|natural object (generic term)
+(noun)|population|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|universe of discourse|content (generic term)|cognitive content (generic term)|mental object (generic term)
+universe of discourse|1
+(noun)|universe|content (generic term)|cognitive content (generic term)|mental object (generic term)
+university|3
+(noun)|body (generic term)
+(noun)|establishment (generic term)
+(noun)|educational institution (generic term)
+university extension|1
+(noun)|extension|extension service|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+university of california at berkeley|1
+(noun)|University of California at Berkeley|university (generic term)
+university of chicago|1
+(noun)|University of Chicago|university (generic term)
+university of michigan|1
+(noun)|University of Michigan|university (generic term)
+university of nebraska|1
+(noun)|University of Nebraska|university (generic term)
+university of north carolina|1
+(noun)|University of North Carolina|university (generic term)
+university of paris|1
+(noun)|Paris University|University of Paris|Sorbonne|university (generic term)
+university of pennsylvania|1
+(noun)|University of Pennsylvania|Pennsylvania|Penn|university (generic term)
+university of pittsburgh|1
+(noun)|University of Pittsburgh|university (generic term)
+university of sussex|1
+(noun)|University of Sussex|Sussex University|university (generic term)
+university of texas|1
+(noun)|University of Texas|university (generic term)
+university of vermont|1
+(noun)|University of Vermont|university (generic term)
+university of washington|1
+(noun)|University of Washington|university (generic term)
+university of west virginia|1
+(noun)|University of West Virginia|university (generic term)
+university of wisconsin|1
+(noun)|University of Wisconsin|university (generic term)
+university student|1
+(noun)|college student|collegian (generic term)|college man (generic term)|college boy (generic term)
+univocal|1
+(adj)|unequivocal|unambiguous|absolute (similar term)|conclusive (similar term)|straightforward (similar term)|unquestionable (similar term)|unambiguous (related term)|equivocal (antonym)
+unix|1
+(noun)|UNIX|UNIX system|UNIX operating system|operating system (generic term)|OS (generic term)
+unix guru|1
+(noun)|UNIX guru|computer expert (generic term)|computer guru (generic term)
+unix operating system|1
+(noun)|UNIX|UNIX system|UNIX operating system|operating system (generic term)|OS (generic term)
+unix system|1
+(noun)|UNIX|UNIX system|UNIX operating system|operating system (generic term)|OS (generic term)
+unjointed|1
+(adj)|unarticulated (similar term)
+unjust|3
+(adj)|unfair|below the belt (similar term)|cheating (similar term)|dirty (similar term)|foul (similar term)|unsporting (similar term)|unsportsmanlike (similar term)|raw (similar term)|partial (related term)|unfair (related term)|unjust (related term)|fair (antonym)
+(adj)|actionable (similar term)|wrongful (similar term)|dishonorable (related term)|dishonourable (related term)|unfair (related term)|unjust (related term)|unrighteous (related term)|wrong (related term)|just (antonym)
+(adj)|inequitable|equitable (antonym)
+unjustifiable|1
+(adj)|indefensible|insupportable|unwarrantable|unwarranted|inexcusable (similar term)
+unjustifiably|1
+(adv)|inexcusably|justifiably (antonym)
+unjustified|1
+(adj)|undue|unwarranted|unreasonable (similar term)
+unjustly|1
+(adv)|justly (antonym)
+unjustness|1
+(noun)|injustice|unrighteousness (generic term)|justice (antonym)
+unkempt|3
+(adj)|uncombed (similar term)
+(adj)|ungroomed (similar term)
+(adj)|untidy (similar term)
+unkemptness|1
+(noun)|sloppiness|slovenliness|untidiness (generic term)
+unkept|1
+(adj)|broken|unbroken (antonym)
+unkeyed|1
+(adj)|atonal|tonal (antonym)
+unkind|2
+(adj)|cutting (similar term)|edged (similar term)|stinging (similar term)|harsh (similar term)|rough (similar term)|hurtful (similar term)|unkindly (similar term)|unsympathetic (similar term)|malign (related term)|merciless (related term)|unmerciful (related term)|kind (antonym)
+(adj)|pitiless|inhumane (similar term)
+unkind person|1
+(noun)|meanie|meany|oppressor (generic term)
+unkindled|1
+(adj)|unlighted (similar term)|unlit (similar term)
+unkindly|2
+(adj)|unsympathetic|unkind (similar term)
+(adv)|kindly (antonym)
+unkindness|1
+(noun)|insensitivity (generic term)|insensitiveness (generic term)|kindness (antonym)
+unknot|1
+(verb)|unravel|unscramble|untangle|unpick|undo (generic term)|knot (antonym)|ravel (antonym)
+unknowable|1
+(adj)|knowable (antonym)
+unknowing|2
+(adj)|ignorant|unknowledgeable|unwitting|uninformed (similar term)
+(noun)|ignorantness|nescience|unknowingness|ignorance (generic term)
+unknowingly|1
+(adv)|unwittingly|inadvertently|advertently (antonym)|wittingly (antonym)|knowingly (antonym)
+unknowingness|2
+(noun)|ignorantness|nescience|unknowing|ignorance (generic term)
+(noun)|unawareness|unconsciousness (generic term)
+unknowledgeable|1
+(adj)|ignorant|unknowing|unwitting|uninformed (similar term)
+unknown|8
+(adj)|chartless (similar term)|uncharted (similar term)|unmapped (similar term)|little-known (similar term)|unbeknown (similar term)|unbeknownst (similar term)|undiagnosed (similar term)|undiscovered (similar term)|unexplored (similar term)|unheard-of (similar term)|unidentified (similar term)|transcendent (similar term)|inglorious (related term)|dishonorable (related term)|unacknowledged (related term)|unfamiliar (related term)|known (antonym)
+(adj)|nameless|unidentified|unnamed|anonymous (similar term)|anon. (similar term)
+(adj)|unsuspected (similar term)
+(adj)|obscure|unsung|inglorious (similar term)|dishonorable (similar term)
+(adj)|strange|unfamiliar (similar term)
+(noun)|unknown region|terra incognita|region (generic term)
+(noun)|stranger|alien|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+(noun)|unknown quantity|variable (generic term)
+unknown quantity|2
+(noun)|factor (generic term)
+(noun)|unknown|variable (generic term)
+unknown region|1
+(noun)|unknown|terra incognita|region (generic term)
+unknown soldier|1
+(noun)|Unknown Soldier|soldier (generic term)
+unlabeled|1
+(adj)|unlabelled|untagged|labeled (antonym)
+unlabelled|1
+(adj)|unlabeled|untagged|labeled (antonym)
+unlace|1
+(verb)|untie|unbrace|undo (generic term)|tie (antonym)
+unlaced|2
+(adj)|untied|laced (antonym)
+(adj)|unbuttoned|unrestrained (similar term)
+unlade|1
+(verb)|unload|offload|empty (generic term)
+unladylike|1
+(adj)|unrefined (similar term)
+unlamented|1
+(adj)|unmourned|lamented (antonym)
+unlash|1
+(verb)|untie (generic term)|unbrace (generic term)|unlace (generic term)|lash (antonym)
+unlatched|1
+(adj)|unbarred|unbolted|unlocked|unsecured|unfastened (similar term)
+unlaureled|1
+(adj)|unlaurelled|laureled (antonym)
+unlaurelled|1
+(adj)|unlaureled|laureled (antonym)
+unlawful|5
+(adj)|improper|unconventional|irregular (similar term)
+(adj)|lawless (similar term)|outlaw (similar term)|wide-open (similar term)|lawless (similar term)|wrongful (similar term)|crooked (related term)|corrupt (related term)|illegal (related term)|lawful (antonym)
+(adj)|illicit (similar term)
+(adj)|wrongful|illegitimate (similar term)
+(adj)|illegitimate|illicit|outlaw|outlawed|illegal (similar term)
+unlawful carnal knowledge|1
+(noun)|criminal congress|sexual intercourse (generic term)|intercourse (generic term)|sex act (generic term)|copulation (generic term)|coitus (generic term)|coition (generic term)|sexual congress (generic term)|congress (generic term)|sexual relation (generic term)|relation (generic term)|carnal knowledge (generic term)
+unlawfully|1
+(adv)|lawfully (antonym)
+unlawfulness|1
+(noun)|quality (generic term)|lawfulness (antonym)
+unlax|1
+(verb)|relax|unstrain|loosen up|unwind|make relaxed|affect (generic term)|strain (antonym)|tense (antonym)
+unleaded|2
+(adj)|leadless|lead-free (similar term)|nonleaded (similar term)|leaded (antonym)
+(adj)|unspaced (similar term)
+unleaded gasoline|1
+(noun)|gasoline (generic term)|gasolene (generic term)|gas (generic term)|petrol (generic term)|leaded gasoline (antonym)
+unlearn|2
+(verb)|forget (generic term)|bury (generic term)
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+unlearned|3
+(adj)|unconditioned|innate|naive (similar term)|conditioned (antonym)
+(adj)|unscholarly (similar term)
+(adj)|ignorant|nescient|unenlightened|unlettered|uneducated (similar term)
+unleash|2
+(verb)|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+(verb)|let loose|loose|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)
+unleavened|1
+(adj)|unraised|leavened (antonym)
+unleavened bread|1
+(noun)|matzo|matzoh|matzah|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+unlettered|2
+(adj)|analphabetic|illiterate (similar term)
+(adj)|ignorant|nescient|unenlightened|unlearned|uneducated (similar term)
+unlicenced|1
+(adj)|unaccredited|unlicensed|unauthorized (similar term)|unauthorised (similar term)
+unlicensed|1
+(adj)|unaccredited|unlicenced|unauthorized (similar term)|unauthorised (similar term)
+unlicensed gambling|1
+(noun)|gambling (generic term)|gaming (generic term)|play (generic term)|vice crime (generic term)
+unlifelike|1
+(adj)|cardboard|artificial (similar term)|unreal (similar term)
+unlighted|2
+(adj)|unlit|unkindled (similar term)|lighted (antonym)
+(adj)|lightless|unilluminated|unlit|dark (similar term)
+unlikable|2
+(adj)|unsympathetic|unappealing|unlikeable|sympathetic (antonym)
+(adj)|unlikeable|disliked (similar term)
+unlike|2
+(adj)|dissimilar|different|like (antonym)
+(adj)|unequal|like (antonym)
+unlikeable|2
+(adj)|unsympathetic|unappealing|unlikable|sympathetic (antonym)
+(adj)|unlikable|disliked (similar term)
+unlikelihood|1
+(noun)|unlikeliness|improbability (generic term)|improbableness (generic term)|likeliness (antonym)|likelihood (antonym)
+unlikeliness|1
+(noun)|unlikelihood|improbability (generic term)|improbableness (generic term)|likeliness (antonym)|likelihood (antonym)
+unlikely|3
+(adj)|improbable|supposed (similar term)|probable (antonym)
+(adj)|farfetched (similar term)|implausible (similar term)|last (similar term)|outside (similar term)|remote (similar term)|likely (antonym)
+(adj)|improbable|unbelievable|unconvincing|implausible (similar term)
+unlikeness|1
+(noun)|dissimilitude|dissimilarity (generic term)|unsimilarity (generic term)|similitude (antonym)|likeness (antonym)
+unlimited|3
+(adj)|limitless|bottomless (similar term)|oceanic (similar term)|untrammeled (similar term)|untrammelled (similar term)|limited (antonym)
+(adj)|outright|straight-out|unqualified (similar term)
+(adj)|inexhaustible|infinite (similar term)
+unlined|2
+(adj)|lined (antonym)
+(adj)|seamless|unseamed|smooth (similar term)
+unlipped|1
+(adj)|lipless|lipped (antonym)
+unlisted|2
+(adj)|ex-directory (similar term)|not listed (similar term)|not traded (similar term)|over-the-counter (similar term)|otc (similar term)|listed (antonym)
+(adj)|unregistered (similar term)
+unlisted security|1
+(noun)|over the counter security|OTC security|security (generic term)|certificate (generic term)|listed security (antonym)
+unlisted stock|1
+(noun)|over the counter stock|OTC stock|unlisted security (generic term)|over the counter security (generic term)|OTC security (generic term)
+unlit|2
+(adj)|unlighted|unkindled (similar term)|lighted (antonym)
+(adj)|lightless|unilluminated|unlighted|dark (similar term)
+unliterary|1
+(adj)|nonliterary|informal (similar term)
+unlittered|1
+(adj)|uncluttered|tidy (similar term)
+unlivable|1
+(adj)|unliveable|uninhabitable (similar term)|livable (antonym)
+unlive|1
+(verb)|live down|live (generic term)
+unliveable|1
+(adj)|unlivable|uninhabitable (similar term)|livable (antonym)
+unliveried|1
+(adj)|liveried (antonym)
+unload|2
+(verb)|drop|drop off|set down|put down|discharge|deliver (generic term)
+(verb)|unlade|offload|empty (generic term)
+unloaded|1
+(adj)|blank (similar term)|dud (similar term)|loaded (antonym)
+unloading|1
+(noun)|handling (generic term)|loading (antonym)
+unlobed|1
+(adj)|simple (similar term)|unsubdivided (similar term)
+unlocated|1
+(adj)|unsettled (similar term)
+unlock|3
+(verb)|open (generic term)|open up (generic term)|lock (antonym)
+(verb)|disengage (generic term)|withdraw (generic term)
+(verb)|disengage (generic term)|lock (antonym)|lock (antonym)
+unlocked|1
+(adj)|unbarred|unbolted|unlatched|unsecured|unfastened (similar term)
+unlogical|1
+(adj)|illogical|absurd (similar term)|inconsequential (similar term)|intuitive (similar term)|nonrational (similar term)|visceral (similar term)|incoherent (related term)|irrational (related term)|unreasonable (related term)|logical (antonym)
+unlooked-for|1
+(adj)|unanticipated|unforeseen|out of the blue|unexpected (similar term)
+unloose|2
+(verb)|free|liberate|release|unloosen|loose|confine (antonym)
+(verb)|unloosen|untie (generic term)|unbrace (generic term)|unlace (generic term)
+unloosen|2
+(verb)|free|liberate|release|unloose|loose|confine (antonym)
+(verb)|unloose|untie (generic term)|unbrace (generic term)|unlace (generic term)
+unlovable|1
+(adj)|hateful (similar term)
+unloved|1
+(adj)|alienated (similar term)|estranged (similar term)|bereft (similar term)|lovelorn (similar term)|unbeloved (similar term)|despised (similar term)|detested (similar term)|hated (similar term)|scorned (similar term)|disinherited (similar term)|jilted (similar term)|rejected (similar term)|spurned (similar term)|loveless (similar term)|unwanted (related term)|loved (antonym)
+unlovely|1
+(adj)|unpicturesque|ugly (similar term)
+unloving|1
+(adj)|cold (similar term)|frigid (similar term)|loveless (similar term)|unaffectionate (similar term)|uncaring (similar term)|unromantic (similar term)|coldhearted (related term)|loving (antonym)
+unlubricated|1
+(adj)|ungreased|lubricated (antonym)
+unluckily|1
+(adv)|unfortunately|regrettably|alas|luckily (antonym)|fortunately (antonym)
+unlucky|2
+(adj)|luckless|hexed (similar term)|jinxed (similar term)|unfortunate (related term)|lucky (antonym)
+(adj)|doomed|ill-fated|ill-omened|ill-starred|unfortunate (similar term)
+unmade|1
+(adj)|made (antonym)
+unmake|1
+(verb)|undo|make (antonym)
+unmalicious|1
+(adj)|malicious (antonym)
+unmalleability|1
+(noun)|physical property (generic term)|malleability (antonym)
+unmalleable|1
+(adj)|intractable (similar term)
+unmalted|1
+(adj)|malted (antonym)
+unman|1
+(verb)|faze (generic term)|unnerve (generic term)|enervate (generic term)|unsettle (generic term)
+unmanageable|4
+(adj)|unwieldy|awkward (similar term)|bunglesome (similar term)|clumsy (similar term)|ungainly (similar term)|cumbersome (similar term)|cumbrous (similar term)|wieldy (antonym)
+(adj)|difficult|indocile (similar term)|uncontrollable (similar term)|ungovernable (similar term)|unruly (similar term)|uncheckable (similar term)|defiant (related term)|noncompliant (related term)|disobedient (related term)|intractable (related term)|manageable (antonym)
+(adj)|uncontrollable|intractable (similar term)
+(adj)|uncontrollable|uncorrectable|incorrigible (similar term)
+unmanageableness|1
+(noun)|refractoriness|recalcitrance|recalcitrancy|intractability (generic term)|intractableness (generic term)
+unmanageably|1
+(adv)|manageably (antonym)
+unmanful|1
+(adj)|unmanly|unmanlike|effeminate (similar term)|emasculate (similar term)|epicene (similar term)|cissy (similar term)|sissified (similar term)|sissyish (similar term)|sissy (similar term)|womanish (similar term)|manly (antonym)
+unmanfully|1
+(adv)|unmanly|manfully (antonym)
+unmanlike|1
+(adj)|unmanly|unmanful|effeminate (similar term)|emasculate (similar term)|epicene (similar term)|cissy (similar term)|sissified (similar term)|sissyish (similar term)|sissy (similar term)|womanish (similar term)|manly (antonym)
+unmanliness|1
+(noun)|effeminacy|effeminateness|sissiness|softness|womanishness|femininity (generic term)|muliebrity (generic term)
+unmanly|3
+(adj)|unmanful|unmanlike|effeminate (similar term)|emasculate (similar term)|epicene (similar term)|cissy (similar term)|sissified (similar term)|sissyish (similar term)|sissy (similar term)|womanish (similar term)|manly (antonym)
+(adj)|pusillanimous|poor-spirited|cowardly (similar term)|fearful (similar term)
+(adv)|unmanfully|manfully (antonym)
+unmanned|1
+(adj)|remote-controlled|pilotless (similar term)|manned (antonym)
+unmannered|2
+(adj)|ill-mannered|bad-mannered|rude|unmannerly|impolite (similar term)
+(adj)|unaffected (similar term)
+unmannerly|1
+(adj)|ill-mannered|bad-mannered|rude|unmannered|impolite (similar term)
+unmapped|1
+(adj)|chartless|uncharted|unknown (similar term)
+unmarked|2
+(adj)|unasterisked (similar term)|unstarred (similar term)|marked (antonym)
+(adj)|overlooked|unnoted|unnoticed (similar term)
+unmarketable|2
+(adj)|unmerchantable|unvendible|unsalable (similar term)|unsaleable (similar term)
+(adj)|unsalable (similar term)|unsaleable (similar term)
+unmarred|1
+(adj)|unmutilated|undamaged (similar term)
+unmarried|1
+(adj)|single|divorced (similar term)|mateless (similar term)|unwed (similar term)|unwedded (similar term)|widowed (similar term)|unmated (related term)|married (antonym)
+unmarried man|1
+(noun)|bachelor|man (generic term)|adult male (generic term)
+unmarried woman|1
+(noun)|woman (generic term)|adult female (generic term)
+unmask|2
+(verb)|uncloak|debunk (generic term)|expose (generic term)
+(verb)|uncover (generic term)|expose (generic term)|mask (antonym)
+unmasking|1
+(noun)|expose|exposure (generic term)
+unmatchable|1
+(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+unmatched|2
+(adj)|odd|unmated|unpaired|mismatched (similar term)
+(adj)|matchless|nonpareil|one|one and only|peerless|unmatchable|unrivaled|unrivalled|incomparable (similar term)|uncomparable (similar term)
+unmated|2
+(adj)|mateless (similar term)|unmarried (related term)|single (related term)|mated (antonym)
+(adj)|odd|unmatched|unpaired|mismatched (similar term)
+unmeaning|1
+(adj)|insignificant|meaningless (similar term)|nonmeaningful (similar term)
+unmeasurable|1
+(adj)|immeasurable|immensurable|abysmal (similar term)|illimitable (similar term)|limitless (similar term)|measureless (similar term)|unmeasured (similar term)|measurable (antonym)
+unmeasured|2
+(adj)|measured (antonym)
+(adj)|illimitable|limitless|measureless|immeasurable (similar term)|unmeasurable (similar term)|immensurable (similar term)
+unmechanical|1
+(adj)|nonmechanical|maladroit (similar term)
+unmechanised|1
+(adj)|unmechanized|nonmechanical (similar term)
+unmechanized|1
+(adj)|unmechanised|nonmechanical (similar term)
+unmediated|1
+(adj)|direct|immediate (similar term)
+unmedical|1
+(adj)|unmedicinal|unmedicative|nonmedicinal|unhealthful (similar term)
+unmedicative|1
+(adj)|unmedicinal|unmedical|nonmedicinal|unhealthful (similar term)
+unmedicinal|1
+(adj)|unmedicative|unmedical|nonmedicinal|unhealthful (similar term)
+unmelodic|1
+(adj)|unmelodious|unmusical|melodious (antonym)
+unmelodious|2
+(adj)|tuneless|untuneful|tuneful (antonym)
+(adj)|unmelodic|unmusical|melodious (antonym)
+unmelodiously|1
+(adv)|melodiously (antonym)
+unmelted|1
+(adj)|frozen (similar term)|undissolved (similar term)|frozen (related term)|melted (antonym)
+unmemorable|1
+(adj)|forgettable (similar term)
+unmemorably|1
+(adv)|memorably (antonym)
+unmentionable|2
+(adj)|impermissible (similar term)
+(noun)|undergarment|garment (generic term)|overgarment (antonym)
+unmercenary|1
+(adj)|unworldly (similar term)
+unmerchantable|1
+(adj)|unmarketable|unvendible|unsalable (similar term)|unsaleable (similar term)
+unmerciful|1
+(adj)|merciless|cutthroat (similar term)|fierce (similar term)|bowelless (similar term)|mortal (similar term)|pitiless (similar term)|remorseless (similar term)|ruthless (similar term)|unpitying (similar term)|tigerish (similar term)|bloody (related term)|hard (related term)|inclement (related term)|implacable (related term)|uncompassionate (related term)|unkind (related term)|merciful (antonym)
+unmercifully|1
+(adv)|mercilessly|pitilessly|remorselessly
+unmercifulness|1
+(noun)|mercilessness|inhumaneness (generic term)|inhumanity (generic term)|mercifulness (antonym)
+unmerited|2
+(adj)|gratuitous (similar term)|undeserved (similar term)|merited (antonym)
+(adj)|unworthy (similar term)
+unmeritorious|1
+(adj)|unworthy (similar term)
+unmethodical|1
+(adj)|disorganized (similar term)|disorganised (similar term)
+unmilitary|1
+(adj)|nonmilitary|unsoldierly (similar term)|military (antonym)
+unmindful|2
+(adj)|forgetful|mindless|amnesic (similar term)|amnesiac (similar term)|mindful (antonym)
+(adj)|oblivious|unaware (similar term)|incognizant (similar term)
+unmindfully|1
+(adv)|mindfully (antonym)
+unmindfulness|1
+(noun)|heedlessness|inadvertence|inadvertency|attentiveness (generic term)|heedfulness (antonym)|mindfulness (antonym)
+unmined|1
+(adj)|mined (antonym)
+unmingled|1
+(adj)|plain|sheer|unmixed|pure (similar term)
+unmistakable|2
+(adj)|clear (similar term)
+(adj)|apparent|evident|manifest|patent|plain|obvious (similar term)
+unmistakably|1
+(adv)|signally|remarkably
+unmitigable|1
+(adj)|implacable (similar term)
+unmitigated|1
+(adj)|arrant (similar term)|complete (similar term)|consummate (similar term)|double-dyed (similar term)|everlasting (similar term)|gross (similar term)|perfect (similar term)|pure (similar term)|sodding (similar term)|stark (similar term)|staring (similar term)|thoroughgoing (similar term)|utter (similar term)|unadulterated (similar term)|bally (similar term)|blinking (similar term)|bloody (similar term)|blooming (similar term)|crashing (similar term)|flaming (similar term)|fucking (similar term)|bodacious (similar term)|undiminished (similar term)|unrelieved (similar term)|mitigated (antonym)
+unmixable|1
+(adj)|immiscible|non-miscible|incompatible (similar term)|miscible (antonym)
+unmixed|2
+(adj)|plain|sheer|unmingled|pure (similar term)
+(adj)|uncompounded|uncombined (similar term)
+unmoderated|1
+(adj)|untempered (similar term)
+unmodernised|1
+(adj)|unmodernized|regressive (similar term)
+unmodernized|1
+(adj)|unmodernised|regressive (similar term)
+unmodifiable|1
+(adj)|modifiable (antonym)
+unmodified|1
+(adj)|unadapted (similar term)|unrestricted (similar term)|unqualified (related term)|modified (antonym)
+unmodulated|1
+(adj)|flat (similar term)|monotone (similar term)|monotonic (similar term)|monotonous (similar term)|modulated (antonym)
+unmolested|1
+(adj)|undisturbed|untroubled (similar term)
+unmoral|1
+(adj)|amoral|neutral (similar term)|nonmoral (similar term)|moral (antonym)|immoral (antonym)
+unmortgaged|1
+(adj)|clear|unencumbered (similar term)
+unmotivated|1
+(adj)|causeless (similar term)|reasonless (similar term)|motiveless (similar term)|unprovoked (similar term)|wanton (similar term)|unintended (related term)|motivated (antonym)
+unmotorised|1
+(adj)|unmotorized|motorless|motorized (antonym)
+unmotorized|1
+(adj)|unmotorised|motorless|motorized (antonym)
+unmourned|1
+(adj)|unlamented|lamented (antonym)
+unmovable|1
+(adj)|immovable|immoveable|stabile|immobile (similar term)
+unmoved|2
+(adj)|unaffected|untouched|unaffected (related term)|unemotional (related term)|moved (antonym)
+(adj)|in-situ|unaltered (similar term)|unchanged (similar term)
+unmoving|2
+(adj)|nonmoving|inactive (similar term)|motionless (similar term)|static (similar term)|still (similar term)|becalmed (similar term)|fixed (similar term)|set (similar term)|rigid (similar term)|frozen (similar term)|rooted (similar term)|stock-still (similar term)|inert (similar term)|sitting (similar term)|stationary (similar term)|immobile (related term)|moving (antonym)
+(adj)|unaffecting (similar term)|unemotional (related term)|unstimulating (related term)|unexciting (related term)|moving (antonym)
+unmown|1
+(adj)|uncut|mown (antonym)
+unmurmuring|1
+(adj)|unprotesting|uncomplaining (similar term)
+unmusical|3
+(adj)|nonmusical|musical (antonym)
+(adj)|nonmusical|dissonant|musical (antonym)
+(adj)|unmelodious|unmelodic|melodious (antonym)
+unmusically|1
+(adv)|musically (antonym)
+unmutilated|1
+(adj)|unmarred|undamaged (similar term)
+unmuzzle|1
+(verb)|get rid of (generic term)|remove (generic term)|muzzle (antonym)
+unmyelinated|1
+(adj)|fat (related term)|myelinated (antonym)
+unnameable|1
+(adj)|ineffable|unspeakable|unutterable|sacred (similar term)
+unnamed|1
+(adj)|nameless|unidentified|unknown|anonymous (similar term)|anon. (similar term)
+unnatural|3
+(adj)|violent (similar term)|affected (related term)|paranormal (related term)|supernatural (related term)|natural (antonym)
+(adj)|affected|agonistic (similar term)|strained (similar term)|artificial (similar term)|contrived (similar term)|hokey (similar term)|stilted (similar term)|constrained (similar term)|forced (similar term)|strained (similar term)|elocutionary (similar term)|mannered (similar term)|plummy (similar term)|studied (related term)|deliberate (related term)|unaffected (antonym)
+(adj)|grotesque|monstrous|ugly (similar term)
+unnaturalised|1
+(adj)|unnaturalized|foreign (similar term)|strange (similar term)
+unnaturalized|1
+(adj)|unnaturalised|foreign (similar term)|strange (similar term)
+unnaturally|2
+(adv)|artificially|by artificial means|naturally (antonym)
+(adv)|naturally (antonym)
+unnaturalness|1
+(noun)|quality (generic term)|naturalness (antonym)
+unnavigable|1
+(adj)|impassable (similar term)|unpassable (similar term)
+unnecessarily|1
+(adv)|necessarily (antonym)
+unnecessary|1
+(adj)|unneeded|excess (similar term)|extra (similar term)|redundant (similar term)|spare (similar term)|supererogatory (similar term)|superfluous (similar term)|supernumerary (similar term)|surplus (similar term)|gratuitous (similar term)|needless (similar term)|uncalled-for (similar term)|inessential (similar term)|spare (similar term)|inessential (related term)|unessential (related term)|necessary (antonym)
+unneeded|1
+(adj)|unnecessary|excess (similar term)|extra (similar term)|redundant (similar term)|spare (similar term)|supererogatory (similar term)|superfluous (similar term)|supernumerary (similar term)|surplus (similar term)|gratuitous (similar term)|needless (similar term)|uncalled-for (similar term)|inessential (similar term)|spare (similar term)|inessential (related term)|unessential (related term)|necessary (antonym)
+unneighborliness|1
+(noun)|unfriendliness (generic term)|neighborliness (antonym)
+unneighborly|1
+(adj)|unneighbourly|unfriendly (similar term)
+unneighbourly|1
+(adj)|unneighborly|unfriendly (similar term)
+unnerve|1
+(verb)|faze|enervate|unsettle|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+unnerved|1
+(adj)|afraid (similar term)
+unnerving|1
+(adj)|formidable|redoubtable|alarming (similar term)
+unneurotic|1
+(adj)|together (similar term)|neurotic (antonym)
+unnilquadium|1
+(noun)|rutherfordium|Rf|Unq|element 104|atomic number 104|chemical element (generic term)|element (generic term)
+unnotched|1
+(adj)|untoothed|smooth (similar term)
+unnoted|1
+(adj)|overlooked|unmarked|unnoticed (similar term)
+unnoticeable|3
+(adj)|unobtrusive|obtrusive (antonym)
+(adj)|insignificant (similar term)|undistinguished (similar term)|noticeable (antonym)
+(adj)|obscure|inconspicuous (similar term)|invisible (similar term)
+unnoticeableness|1
+(noun)|inconspicuousness (generic term)
+unnoticeably|1
+(adv)|imperceptibly|perceptibly (antonym)
+unnoticed|1
+(adj)|disregarded (similar term)|forgotten (similar term)|ignored (similar term)|neglected (similar term)|unheeded (similar term)|overlooked (similar term)|unmarked (similar term)|unnoted (similar term)|unobserved (similar term)|unperceived (similar term)|unremarked (similar term)|noticed (antonym)
+unnourished|1
+(adj)|malnourished (similar term)
+unnumberable|1
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|myriad|numberless|uncounted|unnumbered|unnumerable|incalculable (similar term)
+unnumbered|1
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|myriad|numberless|uncounted|unnumberable|unnumerable|incalculable (similar term)
+unnumerable|1
+(adj)|countless|infinite|innumerable|innumerous|multitudinous|myriad|numberless|uncounted|unnumberable|unnumbered|incalculable (similar term)
+unobjectionable|3
+(adj)|clean|antiseptic (similar term)|decent (related term)|dirty (antonym)
+(adj)|innocuous|inoffensive (similar term)
+(adj)|acceptable (similar term)
+unobjective|1
+(adj)|unverifiable|subjective (similar term)
+unobligated|1
+(adj)|unbeholden (similar term)|obligated (antonym)
+unobliging|1
+(adj)|unaccommodating|disobliging (similar term)|uncooperative (similar term)|accommodating (antonym)
+unobservable|1
+(adj)|imperceptible (similar term)|unperceivable (similar term)
+unobservant|1
+(adj)|unseeing|unperceptive (similar term)|unperceiving (similar term)
+unobserved|2
+(adj)|unseen|undetected (similar term)
+(adj)|unnoticed (similar term)
+unobserved fire|1
+(noun)|fire (generic term)|firing (generic term)
+unobstructed|1
+(adj)|clear (similar term)|open (similar term)|patent (similar term)|unimpeded (similar term)|unclogged (similar term)|obstructed (antonym)
+unobtainable|1
+(adj)|inaccessible|unprocurable|untouchable|unavailable (similar term)
+unobtrusive|1
+(adj)|unnoticeable|obtrusive (antonym)
+unobtrusively|1
+(adv)|obtrusively (antonym)
+unobtrusiveness|1
+(noun)|inconspicuousness (generic term)|obtrusiveness (antonym)
+unobvious|1
+(adj)|unapparent (similar term)|unprovable (similar term)|obvious (antonym)
+unoccupied|3
+(adj)|free (similar term)|spare (similar term)|free (similar term)|occupied (antonym)
+(adj)|relinquished (similar term)|occupied (antonym)
+(adj)|untenanted|uninhabited (similar term)
+unoffending|3
+(adj)|offending (antonym)
+(adj)|inoffensive|offenseless (similar term)|offenceless (similar term)|offensive (antonym)
+(adj)|inoffensive|harmless (similar term)
+unofficial|2
+(adj)|drumhead (similar term)|summary (similar term)|informal (similar term)|loose (similar term)|unauthorized (similar term)|unauthorised (similar term)|wildcat (similar term)|unsanctioned (similar term)|unauthorized (related term)|unauthorised (related term)|official (antonym)
+(adj)|unconfirmed (similar term)
+unofficially|2
+(adv)|on the side
+(adv)|officially (antonym)
+unoiled|2
+(adj)|oiled (antonym)
+(adj)|unpainted (similar term)
+unopen|1
+(adj)|shut|closed|closed (related term)|open (antonym)
+unopened|1
+(adj)|sealed (similar term)
+unopposable|1
+(adj)|opposable (antonym)
+unopposed|1
+(adj)|opposed (antonym)
+unordered|2
+(adj)|disordered|ordered (antonym)
+(adj)|ungraded|unranked|nonhierarchical (similar term)|nonhierarchic (similar term)
+unorganised|2
+(adj)|unorganized|uncoordinated (similar term)|unformed (similar term)|unincorporated (similar term)|unstructured (related term)|organized (antonym)
+(adj)|unorganized|nonunionized|nonunionised|nonunion (similar term)
+unorganized|2
+(adj)|unorganised|uncoordinated (similar term)|unformed (similar term)|unincorporated (similar term)|unstructured (related term)|organized (antonym)
+(adj)|unorganised|nonunionized|nonunionised|nonunion (similar term)
+unoriented|1
+(adj)|alienated (similar term)|anomic (similar term)|disoriented (similar term)|confused (similar term)|disoriented (similar term)|lost (similar term)|disorienting (related term)|oriented (antonym)
+unoriginal|1
+(adj)|banal (similar term)|commonplace (similar term)|hackneyed (similar term)|old-hat (similar term)|shopworn (similar term)|stock (similar term)|threadbare (similar term)|timeworn (similar term)|tired (similar term)|trite (similar term)|well-worn (similar term)|bromidic (similar term)|corny (similar term)|platitudinal (similar term)|platitudinous (similar term)|cliched (similar term)|ready-made (similar term)|stale (similar term)|dusty (similar term)|moth-eaten (similar term)|slavish (similar term)|conventional (related term)|secondary (related term)|stale (related term)|uncreative (related term)|original (antonym)
+unoriginality|2
+(noun)|uncreativeness (generic term)
+(noun)|quality (generic term)|originality (antonym)
+unornamented|1
+(adj)|plain|bare|spare|unembellished|unadorned (similar term)|undecorated (similar term)
+unorthodox|2
+(adj)|irregular|maverick|unconventional (similar term)
+(adj)|dissentient (similar term)|recusant (similar term)|dissident (similar term)|heretical (similar term)|heterodox (similar term)|iconoclastic (similar term)|nonconforming (similar term)|nonconformist (similar term)|Reformed (similar term)|orthodox (antonym)
+unorthodoxy|3
+(noun)|heterodoxy|heresy|orientation (generic term)|orthodoxy (antonym)
+(noun)|heresy|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|heterodoxy|originality (generic term)|orthodoxy (antonym)
+unostentatious|3
+(adj)|unpretentious|unpretending|quiet (similar term)|restrained (similar term)|ostentatious (antonym)
+(adj)|understated|unpretentious|tasteful (similar term)
+(adj)|modest|restrained|discreet (similar term)
+unowned|1
+(adj)|ownerless|owned (antonym)
+unoxygenated|1
+(adj)|unaerated|unventilated (similar term)
+unpack|1
+(verb)|take out|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|pack (antonym)
+unpackaged|1
+(adj)|loose (similar term)|packaged (antonym)
+unpaid|3
+(adj)|buckshee (similar term)|complimentary (similar term)|costless (similar term)|free (similar term)|gratis (similar term)|gratuitous (similar term)|non-paying (similar term)|outstanding (similar term)|owed (similar term)|owing (similar term)|undischarged (similar term)|pro bono (similar term)|rent-free (similar term)|uncompensated (similar term)|unsalaried (similar term)|paid (antonym)
+(adj)|volunteer|voluntary (similar term)
+(adj)|amateur|recreational|nonprofessional (similar term)
+unpaid worker|1
+(noun)|volunteer|worker (generic term)
+unpainful|1
+(adj)|pain-free|painless (similar term)
+unpaintable|1
+(adj)|paintable (antonym)
+unpainted|2
+(adj)|unrouged (similar term)|painted (antonym)
+(adj)|bare (similar term)|unfinished (similar term)|unoiled (similar term)|unstained (similar term)|unvarnished (similar term)|unfinished (related term)|painted (antonym)
+unpaired|1
+(adj)|odd|unmatched|unmated|mismatched (similar term)
+unpalatability|2
+(noun)|unpalatableness|taste property (generic term)|palatability (antonym)
+(noun)|unpalatableness|disagreeableness (generic term)
+unpalatable|1
+(adj)|brackish (similar term)|distasteful (similar term)|unsavory (similar term)|unsavoury (similar term)|inedible (related term)|uneatable (related term)|offensive (related term)|tasteless (related term)|unappetizing (related term)|unappetising (related term)|unpleasant (related term)|palatable (antonym)
+unpalatableness|2
+(noun)|unpalatability|taste property (generic term)|palatability (antonym)
+(noun)|unpalatability|disagreeableness (generic term)
+unpalatably|1
+(adv)|palatably (antonym)
+unparallel|1
+(adj)|uneven (similar term)
+unparalleled|1
+(adj)|alone|unique|unequaled|unequalled|incomparable (similar term)|uncomparable (similar term)
+unpardonable|1
+(adj)|deadly (similar term)|mortal (similar term)|inexcusable (similar term)|unforgivable (similar term)|inexpiable (similar term)|pardonable (antonym)
+unpardonably|1
+(adv)|inexcusably|unforgivably|forgivably (antonym)|pardonably (antonym)|excusably (antonym)
+unparented|1
+(adj)|parentless|orphan (similar term)|orphaned (similar term)|fatherless (similar term)|motherless (similar term)|parented (antonym)
+unparliamentary|1
+(adj)|impolite (similar term)
+unpartitioned|1
+(adj)|united (similar term)
+unpassable|1
+(adj)|impassable|unsurmountable (similar term)|unclimbable (similar term)|unnavigable (similar term)|untraversable (similar term)|passable (antonym)
+unpasteurised|1
+(adj)|unpasteurized
+unpasteurized|1
+(adj)|unpasteurised
+unpatented|1
+(adj)|nonproprietary (similar term)
+unpatriotic|1
+(adj)|disloyal|un-American (similar term)|disloyal (related term)|patriotic (antonym)
+unpatriotically|1
+(adv)|patriotically (antonym)
+unpatronised|1
+(adj)|unpatronized|patronless|briefless (similar term)|patronized (antonym)
+unpatronized|1
+(adj)|unpatronised|patronless|briefless (similar term)|patronized (antonym)
+unpatterned|1
+(adj)|plain|solid-colored (similar term)|solid-coloured (similar term)|patterned (antonym)
+unpaved|1
+(adj)|caliche-topped (similar term)|paved (antonym)
+unpeaceable|1
+(adj)|unpeaceful (similar term)
+unpeaceful|1
+(adj)|belligerent (similar term)|fighting (similar term)|militant (similar term)|war-ridden (similar term)|warring (similar term)|militant (similar term)|hawkish (similar term)|warlike (similar term)|stormy (similar term)|tempestuous (similar term)|unpeaceable (similar term)|hostile (related term)|stormy (related term)|violent (related term)|peaceful (antonym)
+unpeasant-smelling|1
+(adj)|malodorous|malodourous|ill-smelling|stinky|bilgy (similar term)|fetid (similar term)|foetid (similar term)|foul (similar term)|foul-smelling (similar term)|funky (similar term)|noisome (similar term)|smelly (similar term)|stinking (similar term)|ill-scented (similar term)|fusty (similar term)|musty (similar term)|frowsty (similar term)|gamey (similar term)|gamy (similar term)|high (similar term)|miasmic (similar term)|mephitic (similar term)|niffy (similar term)|odoriferous (similar term)|odorous (similar term)|putrid-smelling (similar term)|rank-smelling (similar term)|reeking (similar term)|sour (similar term)|rancid (similar term)|fragrant (antonym)
+unpeopled|1
+(adj)|unpopulated|uninhabited (similar term)
+unperceivable|1
+(adj)|imperceptible|impalpable (similar term)|incognizable (similar term)|incognoscible (similar term)|indiscernible (similar term)|insensible (similar term)|undetectable (similar term)|subliminal (similar term)|unobservable (similar term)|impalpable (related term)|inaudible (related term)|unhearable (related term)|invisible (related term)|unseeable (related term)|perceptible (antonym)
+unperceived|1
+(adj)|unremarked|unnoticed (similar term)
+unperceiving|1
+(adj)|unperceptive|blind (similar term)|unobservant (similar term)|unseeing (similar term)|perceptive (antonym)
+unperceptive|2
+(adj)|unperceiving|blind (similar term)|unobservant (similar term)|unseeing (similar term)|perceptive (antonym)
+(adj)|undiscriminating (similar term)|indiscriminating (similar term)
+unperceptiveness|1
+(noun)|insensitivity (generic term)|insensitiveness (generic term)|perceptiveness (antonym)
+unperformed|1
+(adj)|unstaged (similar term)
+unpermed|1
+(adj)|straight (similar term)
+unpermissive|1
+(adj)|authoritarian (similar term)|dictatorial (similar term)|permissive (antonym)
+unpermissiveness|1
+(noun)|restrictiveness|disposition (generic term)|temperament (generic term)|permissiveness (antonym)
+unperplexed|1
+(adj)|unbaffled (similar term)|unconfused (similar term)|perplexed (antonym)
+unperson|1
+(noun)|nonperson|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unpersuadable|1
+(adj)|unsuasible|unsusceptible (similar term)|insusceptible (similar term)
+unpersuaded|1
+(adj)|unconverted|unregenerate (similar term)|unregenerated (similar term)
+unpersuasive|1
+(adj)|unconvincing (similar term)
+unpersuasiveness|1
+(noun)|powerlessness (generic term)|impotence (generic term)|impotency (generic term)|persuasiveness (antonym)
+unperturbed|1
+(adj)|unflurried|unflustered|unruffled|composed (similar term)
+unpick|2
+(verb)|unravel|unknot|unscramble|untangle|undo (generic term)|knot (antonym)|ravel (antonym)
+(verb)|undo (generic term)
+unpictured|1
+(adj)|undepicted|undelineated (similar term)
+unpicturesque|1
+(adj)|unlovely|ugly (similar term)
+unpierced|1
+(adj)|uncut (similar term)
+unpigmented|1
+(adj)|coloration|colouration (related term)
+unpillared|1
+(adj)|noncolumned (similar term)|uncolumned (similar term)
+unpin|1
+(verb)|undo (generic term)|pin (antonym)
+unpitying|1
+(adj)|pitiless|remorseless|ruthless|merciless (similar term)|unmerciful (similar term)
+unplaced|1
+(adj)|unsuccessful (similar term)
+unplanned|2
+(adj)|accidental (similar term)|casual (similar term)|chance (similar term)|ad hoc (similar term)|casual (similar term)|unexpected (similar term)|unpremeditated (similar term)|unintended (related term)|planned (antonym)
+(adj)|unintentional|unwitting|unintended (similar term)
+unplanted|1
+(adj)|uncropped (similar term)|unseeded (similar term)|unsown (similar term)|planted (antonym)
+unplayable|1
+(adj)|playable (antonym)
+unplayful|1
+(adj)|serious|sober|playful (antonym)
+unpleasant|1
+(adj)|acerb (similar term)|acerbic (similar term)|acid (similar term)|acrid (similar term)|bitter (similar term)|blistering (similar term)|caustic (similar term)|sulfurous (similar term)|sulphurous (similar term)|venomous (similar term)|virulent (similar term)|vitriolic (similar term)|beastly (similar term)|hellish (similar term)|god-awful (similar term)|dour (similar term)|forbidding (similar term)|grim (similar term)|dreadful (similar term)|embarrassing (similar term)|mortifying (similar term)|harsh (similar term)|rough (similar term)|harsh (similar term)|hot (similar term)|afflictive (similar term)|painful (similar term)|sore (similar term)|rebarbative (similar term)|repellent (similar term)|repellant (similar term)|sharp (similar term)|sharp-worded (similar term)|tart (similar term)|ungrateful (similar term)|unhappy (similar term)|displeasing (related term)|ill-natured (related term)|nasty (related term)|awful (related term)|offensive (related term)|unpalatable (related term)|pleasant (antonym)
+unpleasant person|1
+(noun)|disagreeable person|unwelcome person (generic term)|persona non grata (generic term)
+unpleasant woman|1
+(noun)|disagreeable woman|unpleasant person (generic term)|disagreeable person (generic term)
+unpleasantly|1
+(adv)|pleasantly (antonym)
+unpleasantness|2
+(noun)|pain (generic term)|painfulness (generic term)|pleasantness (antonym)
+(noun)|quality (generic term)|pleasantness (antonym)
+unpleasing|1
+(adj)|graceless|ungracious (similar term)
+unpleasingness|1
+(noun)|ugliness (generic term)|pleasingness (antonym)
+unpledged|1
+(adj)|unengaged|unpromised|unattached (similar term)|uncommitted (similar term)
+unploughed|1
+(adj)|unplowed|unbroken|fallow (similar term)|untilled (similar term)|plowed (antonym)
+unplowed|1
+(adj)|unploughed|unbroken|fallow (similar term)|untilled (similar term)|plowed (antonym)
+unplug|1
+(verb)|disconnect|undo (generic term)|plug in (antonym)
+unplumbed|1
+(adj)|profound|unfathomed|unsounded|deep (similar term)
+unpointed|1
+(adj)|pointless|blunt (similar term)|pointed (antonym)
+unpointedness|1
+(noun)|taper (generic term)|pointedness (antonym)
+unpolished|2
+(adj)|raw (similar term)|rough (similar term)|unburnished (similar term)|dull (related term)|unrefined (related term)|polished (antonym)
+(adj)|gauche|graceless|inelegant (similar term)
+unpolitical|1
+(adj)|apolitical|nonpolitical (similar term)
+unpolluted|1
+(adj)|uncontaminated|pure (similar term)
+unpompous|1
+(adj)|unpretentious (similar term)
+unpopular|1
+(adj)|less-traveled (similar term)|popular (antonym)
+unpopularity|1
+(noun)|quality (generic term)|popularity (antonym)
+unpopulated|1
+(adj)|unpeopled|uninhabited (similar term)
+unportable|1
+(adj)|portable (antonym)
+unposed|1
+(adj)|posed (antonym)
+unpotted|1
+(adj)|potted (antonym)
+unpowered|1
+(adj)|powered (antonym)
+unpracticed|1
+(adj)|unpractised|unversed|inexperienced (similar term)|inexperient (similar term)
+unpractised|1
+(adj)|unpracticed|unversed|inexperienced (similar term)|inexperient (similar term)
+unprecedented|1
+(adj)|new (similar term)|unexampled (similar term)|precedented (antonym)
+unprecedentedly|1
+(adv)|precedentedly (antonym)
+unpredictability|3
+(noun)|capriciousness|inconstancy (generic term)|changefulness (generic term)
+(noun)|volatility|irresoluteness (generic term)|irresolution (generic term)
+(noun)|uncertainty (generic term)|uncertainness (generic term)|precariousness (generic term)|predictability (antonym)
+unpredictable|3
+(adj)|aleatory (similar term)|capricious (similar term)|freakish (similar term)|episodic (similar term)|occasional (similar term)|unforeseeable (similar term)|uncertain (related term)|predictable (antonym)
+(adj)|indeterminable (similar term)|undeterminable (similar term)
+(adj)|irregular|sporadic (similar term)
+unpredictably|1
+(adv)|erratically
+unpredicted|1
+(adj)|unannounced|unheralded|unexpected (similar term)
+unpredictive|1
+(adj)|unprophetic (similar term)
+unprejudiced|1
+(adj)|impartial|color-blind (similar term)|colour-blind (similar term)|nonracist (similar term)|receptive (related term)|open (related term)|prejudiced (antonym)
+unpremeditated|2
+(adj)|unplanned (similar term)
+(adj)|impulsive (similar term)|unplanned (related term)|premeditated (antonym)
+unprepared|1
+(adj)|ad-lib (similar term)|extemporaneous (similar term)|extemporary (similar term)|extempore (similar term)|impromptu (similar term)|offhand (similar term)|offhanded (similar term)|off-the-cuff (similar term)|unrehearsed (similar term)|spur-of-the-moment (similar term)|unready (related term)|prepared (antonym)
+unprepossessing|1
+(adj)|unpresentable|unattractive (similar term)
+unpresentable|1
+(adj)|unprepossessing|unattractive (similar term)
+unpresidential|1
+(adj)|unstatesmanlike (related term)|presidential (antonym)
+unpressed|1
+(adj)|unironed (similar term)|wrinkled (similar term)
+unpretending|1
+(adj)|unostentatious|unpretentious|quiet (similar term)|restrained (similar term)|ostentatious (antonym)
+unpretentious|3
+(adj)|honest (similar term)|modest (similar term)|unpompous (similar term)|plain (related term)|tasteful (related term)|pretentious (antonym)
+(adj)|unostentatious|unpretending|quiet (similar term)|restrained (similar term)|ostentatious (antonym)
+(adj)|understated|unostentatious|tasteful (similar term)
+unpretentiously|1
+(adv)|pretentiously (antonym)
+unpretentiousness|1
+(noun)|naturalness (generic term)|pretentiousness (antonym)
+unpreventable|1
+(adj)|preventable (antonym)
+unpriestly|1
+(adj)|priestly (antonym)
+unprincipled|2
+(adj)|immoral (similar term)|unscrupulous (related term)|principled (antonym)
+(adj)|dishonorable (similar term)|dishonourable (similar term)
+unprintable|1
+(adj)|printable (antonym)
+unproblematic|1
+(adj)|elementary|simple|uncomplicated|easy (similar term)
+unprocessed|3
+(adj)|unrefined|crude|refined (antonym)
+(adj)|natural (similar term)|raw (similar term)|rude (similar term)|unvulcanized (similar term)|unvulcanised (similar term)|impure (related term)|unfinished (related term)|untreated (related term)|processed (antonym)
+(adj)|fresh (similar term)
+unprocurable|1
+(adj)|inaccessible|unobtainable|untouchable|unavailable (similar term)
+unproductive|2
+(adj)|bootless (similar term)|fruitless (similar term)|futile (similar term)|sleeveless (similar term)|vain (similar term)|dry (similar term)|nonproductive (similar term)|sterile (related term)|unfertile (related term)|infertile (related term)|uncreative (related term)|unprofitable (related term)|productive (antonym)
+(adj)|ineffective (similar term)|uneffective (similar term)|ineffectual (similar term)
+unproductively|1
+(adv)|fruitlessly|unprofitably|profitably (antonym)|fruitfully (antonym)|productively (antonym)
+unproductiveness|1
+(noun)|fruitlessness (generic term)|aridity (generic term)|barrenness (generic term)|productiveness (antonym)
+unprofessional|1
+(adj)|amateurish (similar term)|amateur (similar term)|inexpert (similar term)|unskilled (similar term)|professional (antonym)
+unprofitability|1
+(noun)|unprofitableness|disadvantage (generic term)|profitability (antonym)|profitableness (antonym)
+unprofitable|3
+(adj)|dead (similar term)|idle (similar term)|lean (similar term)|marginal (similar term)|unremunerative (similar term)|unproductive (related term)|unsuccessful (related term)|useless (related term)|profitable (antonym)
+(adj)|inutile|useless (similar term)
+(adj)|profitless|unrewarding (similar term)
+unprofitableness|1
+(noun)|unprofitability|disadvantage (generic term)|profitability (antonym)|profitableness (antonym)
+unprofitably|2
+(adv)|profitlessly|gainlessly
+(adv)|unproductively|fruitlessly|profitably (antonym)|fruitfully (antonym)|productively (antonym)
+unprogressive|1
+(adj)|fusty|standpat|nonprogressive|conservative (similar term)
+unpromised|1
+(adj)|unengaged|unpledged|unattached (similar term)|uncommitted (similar term)
+unpromising|1
+(adj)|inauspicious (similar term)|unfortunate (similar term)
+unprompted|1
+(adj)|impulsive|spontaneous (similar term)|self-generated (similar term)
+unpronounceable|2
+(adj)|pronounceable (antonym)
+(adj)|unutterable|uncommunicative (similar term)|incommunicative (similar term)
+unprophetic|1
+(adj)|nonprognosticative (similar term)|unpredictive (similar term)|prophetic (antonym)
+unpropitious|1
+(adj)|ill (similar term)|inauspicious (similar term)|ominous (similar term)|thunderous (similar term)|unfavorable (related term)|unfavourable (related term)|propitious (antonym)
+unpropitiously|1
+(adv)|inauspiciously|propitiously (antonym)|auspiciously (antonym)
+unpropitiousness|1
+(noun)|inauspiciousness|unfavorableness (generic term)|unfavourableness (generic term)|propitiousness (antonym)|auspiciousness (antonym)
+unprotected|1
+(adj)|exposed (similar term)|open (similar term)|naked (similar term)|defenseless (similar term)|unshielded (similar term)|insecure (related term)|unsafe (related term)|susceptible (related term)|vulnerable (related term)|protected (antonym)
+unprotectedness|1
+(noun)|defenselessness|defencelessness|vulnerability (generic term)
+unprotective|1
+(adj)|protective (antonym)
+unprotesting|1
+(adj)|unmurmuring|uncomplaining (similar term)
+unprovable|1
+(adj)|unobvious (similar term)
+unproved|1
+(adj)|unproven|on trial (similar term)|unverified (similar term)|proved (antonym)
+unproven|1
+(adj)|unproved|on trial (similar term)|unverified (similar term)|proved (antonym)
+unprovided for|2
+(adj)|poor (similar term)
+(adj)|unexpected (similar term)
+unprovocative|1
+(adj)|unprovoking|disarming (similar term)|noninflammatory (similar term)|nonviolent (related term)|unexciting (related term)|provocative (antonym)
+unprovoked|1
+(adj)|motiveless|wanton|unmotivated (similar term)
+unprovoking|1
+(adj)|unprovocative|disarming (similar term)|noninflammatory (similar term)|nonviolent (related term)|unexciting (related term)|provocative (antonym)
+unpublishable|1
+(adj)|publishable (antonym)
+unpublished|1
+(adj)|published (antonym)
+unpunctual|1
+(adj)|behindhand (similar term)|belated (similar term)|late (similar term)|tardy (similar term)|benighted (similar term)|nighted (similar term)|dilatory (similar term)|laggard (similar term)|last-minute (similar term)|punctual (antonym)
+unpunished|1
+(adj)|unadmonished (similar term)|unchastened (similar term)|unrebuked (similar term)|unreproved (similar term)|uncorrected (similar term)|undisciplined (similar term)|punished (antonym)
+unpurified|1
+(adj)|impure (similar term)
+unputdownable|1
+(adj)|interesting (similar term)
+unq|1
+(noun)|rutherfordium|Rf|unnilquadium|Unq|element 104|atomic number 104|chemical element (generic term)|element (generic term)
+unqualified|5
+(adj)|categoric (similar term)|categorical (similar term)|flat (similar term)|unconditional (similar term)|clean (similar term)|clear (similar term)|cool (similar term)|outright (similar term)|straight-out (similar term)|unlimited (similar term)|unconditional (related term)|unmodified (related term)|qualified (antonym)
+(adj)|quack (similar term)|incompetent (related term)|ineligible (related term)|qualified (antonym)
+(adj)|unentitled|ineligible (similar term)
+(adj)|incompetent (similar term)
+(adj)|incapable|incompetent (similar term)
+unquenchable|1
+(adj)|quenchless|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+unquestionability|1
+(noun)|indisputability|indubitability|unquestionableness|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+unquestionable|3
+(adj)|acknowledged (similar term)|beyond doubt (similar term)|indubitable (similar term)|for sure (similar term)|mathematical (similar term)|unimpeachable (similar term)|incontestable (related term)|incontestible (related term)|undeniable (related term)|questionable (antonym)
+(adj)|authentic|bona fide|veritable|genuine (similar term)|echt (similar term)
+(adj)|unequivocal (similar term)|univocal (similar term)|unambiguous (similar term)
+unquestionableness|1
+(noun)|indisputability|indubitability|unquestionability|certainty (generic term)|sure thing (generic term)|foregone conclusion (generic term)
+unquestionably|2
+(adv)|unimpeachably
+(adv)|decidedly|emphatically|definitely|in spades|by all odds
+unquestioned|1
+(adj)|accepted|undisputed|unchallenged|uncontroversial (similar term)|noncontroversial (similar term)
+unquestioning|2
+(adj)|credulous (similar term)
+(adj)|implicit|absolute (similar term)
+unquiet|2
+(adj)|antsy (similar term)|fidgety (similar term)|fretful (similar term)|itchy (similar term)|restless (similar term)|disruptive (similar term)|riotous (similar term)|troubled (similar term)|tumultuous (similar term)|turbulent (similar term)|squally (similar term)|squalling (similar term)|uneasy (similar term)|restless (similar term)|agitated (related term)|uneasy (related term)|wild (related term)|quiet (antonym)
+(adj)|anxious|nervous|queasy|uneasy|troubled (similar term)
+unquietly|1
+(adv)|quietly (antonym)
+unquotable|1
+(adj)|unrepeatable|quotable (antonym)|repeatable (antonym)
+unraised|1
+(adj)|unleavened|leavened (antonym)
+unranked|1
+(adj)|ungraded|unordered|nonhierarchical (similar term)|nonhierarchic (similar term)
+unratable|1
+(adj)|nontaxable (similar term)|exempt (similar term)
+unratified|1
+(adj)|illegal (similar term)
+unravel|3
+(verb)|unknot|unscramble|untangle|unpick|undo (generic term)|knot (antonym)|ravel (antonym)
+(verb)|ravel|ravel out|disentangle (generic term)|unsnarl (generic term)|straighten out (generic term)|ravel (antonym)
+(verb)|run|disintegrate (generic term)
+unraveler|1
+(noun)|disentangler|unraveller|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unraveller|1
+(noun)|disentangler|unraveler|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unreachable|1
+(adj)|unapproachable|unreached|out of reach|inaccessible (similar term)|unaccessible (similar term)
+unreached|1
+(adj)|unapproachable|unreachable|out of reach|inaccessible (similar term)|unaccessible (similar term)
+unreactive|2
+(adj)|inactive (similar term)|inert (similar term)|indifferent (similar term)|neutral (similar term)|noble (similar term)|stable (similar term)|reactive (antonym)
+(adj)|insensitive (similar term)
+unread|1
+(adj)|uninformed (similar term)
+unreadable|1
+(adj)|indecipherable|unclear|undecipherable|illegible (similar term)
+unreadably|1
+(adv)|illegibly|undecipherably|legibly (antonym)
+unready|1
+(adj)|flat-footed (similar term)|napping (similar term)|off-guard (similar term)|off guard (similar term)|off one's guard (similar term)|off his guard (similar term)|off her guard (similar term)|off your guard (similar term)|unripe (similar term)|unprepared (related term)|ready (antonym)
+unreal|4
+(adj)|dreamed (similar term)|envisioned (similar term)|pictured (similar term)|visualized (similar term)|visualised (similar term)|eye-deceiving (similar term)|trompe-l'oeil (similar term)|fabled (similar term)|legendary (similar term)|fabricated (similar term)|fancied (similar term)|fictional (similar term)|fictitious (similar term)|invented (similar term)|made-up (similar term)|fabulous (similar term)|mythic (similar term)|mythical (similar term)|mythologic (similar term)|mythological (similar term)|fanciful (similar term)|imaginary (similar term)|imagined (similar term)|notional (similar term)|fantastic (similar term)|fantastical (similar term)|hallucinatory (similar term)|illusional (similar term)|illusionary (similar term)|illusive (similar term)|illusory (similar term)|make-believe (similar term)|pretend (similar term)|artificial (related term)|unreal (related term)|counterfeit (related term)|imitative (related term)|insincere (related term)|supernatural (related term)|unrealistic (related term)|real (antonym)
+(adj)|deceptive (similar term)|delusory (similar term)|dreamlike (similar term)|surreal (similar term)|phantom (similar term)|real (antonym)
+(adj)|artificial|arranged (similar term)|staged (similar term)|bionic (similar term)|bleached (similar term)|colored (similar term)|coloured (similar term)|dyed (similar term)|cardboard (similar term)|unlifelike (similar term)|celluloid (similar term)|synthetic (similar term)|conventionalized (similar term)|conventionalised (similar term)|stylized (similar term)|stylised (similar term)|dummy (similar term)|ersatz (similar term)|substitute (similar term)|factitious (similar term)|fake (similar term)|false (similar term)|faux (similar term)|imitation (similar term)|simulated (similar term)|man-made (similar term)|semisynthetic (similar term)|synthetic (similar term)|near (similar term)|painted (similar term)|counterfeit (related term)|imitative (related term)|unreal (related term)|natural (antonym)
+(adj)|insubstantial|unsubstantial|aeriform (similar term)|aerial (similar term)|airy (similar term)|aery (similar term)|ethereal (similar term)|shadowy (similar term)|wraithlike (similar term)|stringy (similar term)|immaterial (related term)|nonmaterial (related term)|substantial (antonym)
+unrealised|1
+(adj)|unfulfilled|unrealized|unsuccessful (similar term)
+unrealism|1
+(noun)|abstractionism|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+unrealistic|1
+(adj)|chimerical (similar term)|delusive (similar term)|false (similar term)|fantastic (similar term)|wild (similar term)|kafkaesque (similar term)|phantasmagoric (similar term)|phantasmagorical (similar term)|surreal (similar term)|surrealistic (similar term)|impossible (related term)|impractical (related term)|unreal (related term)|realistic (antonym)
+unrealistically|1
+(adv)|realistically (antonym)
+unreality|2
+(noun)|immateriality (generic term)|incorporeality (generic term)|reality (antonym)
+(noun)|irreality|nonexistence (generic term)|nonentity (generic term)|reality (antonym)
+unrealizable|1
+(adj)|unachievable|unattainable|undoable|impossible (similar term)
+unrealized|1
+(adj)|unfulfilled|unrealised|unsuccessful (similar term)
+unreason|1
+(noun)|irrationality|insanity (generic term)
+unreasonable|2
+(adj)|counterintuitive (similar term)|indefensible (similar term)|untenable (similar term)|mindless (similar term)|reasonless (similar term)|senseless (similar term)|undue (similar term)|unjustified (similar term)|unwarranted (similar term)|illogical (related term)|unlogical (related term)|immoderate (related term)|irrational (related term)|reasonable (antonym)
+(adj)|excessive|inordinate|undue|immoderate (similar term)
+unreasonably|2
+(adv)|reasonably (antonym)
+(adv)|immoderately|moderately (antonym)|reasonably (antonym)
+unreasoning|1
+(adj)|blind|irrational (similar term)
+unreasoningly|1
+(adv)|viscerally
+unreassuring|1
+(adj)|worrisome|reassuring (antonym)
+unrebuked|1
+(adj)|unadmonished|unchastened|unreproved|unpunished (similar term)
+unreceptive|1
+(adj)|closed (similar term)|unsympathetic (similar term)|receptive (antonym)
+unreciprocated|1
+(adj)|unanswered|unrequited|nonreciprocal (similar term)
+unrecognisable|2
+(adj)|unrecognizable|unidentifiable (similar term)
+(adv)|unrecognizably|recognizably (antonym)
+unrecognised|2
+(adj)|unrecognized|unestablished (similar term)
+(adj)|unrecognized|unacknowledged (similar term)
+unrecognizable|1
+(adj)|unrecognisable|unidentifiable (similar term)
+unrecognizably|1
+(adv)|unrecognisable|recognizably (antonym)
+unrecognized|2
+(adj)|unrecognised|unacknowledged (similar term)
+(adj)|unrecognised|unestablished (similar term)
+unreconcilable|1
+(adj)|irreconcilable|hostile (similar term)|inconsistent (similar term)|reconcilable (antonym)
+unreconciled|2
+(adj)|reconciled (antonym)
+(adj)|inconsistent (similar term)
+unreconstructed|1
+(adj)|reconstructed (antonym)
+unrecorded|1
+(adj)|live|unfilmed (similar term)|untaped (similar term)|recorded (antonym)
+unrecoverable|1
+(adj)|irrecoverable|forgotten (similar term)|lost (similar term)|irretrievable (similar term)|unretrievable (similar term)|lost (similar term)|recoverable (antonym)
+unredeemable|1
+(adj)|irreclaimable|irredeemable|unreformable|wicked (similar term)
+unredeemed|1
+(adj)|cursed|damned|doomed|unsaved|lost (similar term)
+unreduced|1
+(adj)|unaltered (similar term)|unchanged (similar term)
+unreel|1
+(verb)|reel off|reel (generic term)
+unreeling|1
+(adj)|unwinding|moving (similar term)
+unrefined|2
+(adj)|unprocessed|crude|refined (antonym)
+(adj)|agrestic (similar term)|artless (similar term)|uncultivated (similar term)|uncultured (similar term)|boorish (similar term)|loutish (similar term)|neanderthal (similar term)|neandertal (similar term)|oafish (similar term)|swinish (similar term)|coarse (similar term)|common (similar term)|rough-cut (similar term)|uncouth (similar term)|vulgar (similar term)|crass (similar term)|ill-bred (similar term)|bounderish (similar term)|lowbred (similar term)|rude (similar term)|underbred (similar term)|yokelish (similar term)|low (similar term)|robust (similar term)|rough (similar term)|rough-spoken (similar term)|ungentlemanly (similar term)|ungentlemanlike (similar term)|unladylike (similar term)|inelegant (related term)|unfastidious (related term)|ungracious (related term)|unpolished (related term)|refined (antonym)
+unreflected|1
+(adj)|absorbed (similar term)|reflected (antonym)
+unreflective|1
+(adj)|unthinking|unthoughtful|thoughtless (similar term)
+unreformable|2
+(adj)|irreclaimable|irredeemable|unredeemable|wicked (similar term)
+(adj)|unregenerate|incorrigible (similar term)
+unreformed|1
+(adj)|orthodox (similar term)
+unrefreshed|1
+(adj)|unrested|tired (similar term)
+unregenerate|3
+(adj)|stubborn|obstinate|bloody-minded (similar term)|cantankerous (similar term)|bolshy (similar term)|stroppy (similar term)|bullheaded (similar term)|bullet-headed (similar term)|pigheaded (similar term)|dogged (similar term)|dour (similar term)|pertinacious (similar term)|tenacious (similar term)|unyielding (similar term)|contrarious (similar term)|cross-grained (similar term)|determined (similar term)|hardheaded (similar term)|mulish (similar term)|stiff-necked (similar term)|strong-minded (similar term)|strong-willed (similar term)|disobedient (related term)|intractable (related term)|uncompromising (related term)|sturdy (related term)|inflexible (related term)|docile (antonym)
+(adj)|unregenerated|cussed (similar term)|obdurate (similar term)|obstinate (similar term)|unrepentant (similar term)|impenitent (similar term)|unconverted (similar term)|unpersuaded (similar term)|lost (related term)|impenitent (related term)|unrepentant (related term)|unremorseful (related term)|regenerate (antonym)
+(adj)|unreformable|incorrigible (similar term)
+unregenerated|1
+(adj)|unregenerate|cussed (similar term)|obdurate (similar term)|obstinate (similar term)|unrepentant (similar term)|impenitent (similar term)|unconverted (similar term)|unpersuaded (similar term)|lost (related term)|impenitent (related term)|unrepentant (related term)|unremorseful (related term)|regenerate (antonym)
+unregistered|3
+(adj)|registered (antonym)
+(adj)|unlisted (similar term)|registered (antonym)
+(adj)|undocumented (similar term)
+unregretful|1
+(adj)|unregretting|regretful (antonym)
+unregretting|1
+(adj)|unregretful|regretful (antonym)
+unregularity|1
+(noun)|irregularity|quality (generic term)|regularity (antonym)
+unregulated|2
+(adj)|regulated (antonym)
+(adj)|unstructured (similar term)
+unrehearsed|1
+(adj)|ad-lib|extemporaneous|extemporary|extempore|impromptu|offhand|offhanded|off-the-cuff|unprepared (similar term)
+unrelated|2
+(adj)|misrelated (similar term)|orthogonal (similar term)|uncorrelated (similar term)|related (antonym)
+(adj)|unconnected (similar term)|related (antonym)
+unrelatedness|1
+(noun)|unconnectedness (generic term)|relatedness (antonym)
+unrelaxed|1
+(adj)|tense (similar term)
+unreleased|1
+(adj)|suppressed (similar term)
+unrelenting|2
+(adj)|grim|inexorable|relentless|stern|unappeasable|unforgiving|implacable (similar term)
+(adj)|persistent|relentless|continual (similar term)
+unrelentingly|1
+(adv)|relentlessly
+unreliability|1
+(noun)|undependability|undependableness|unreliableness|irresponsibility (generic term)|irresponsibleness (generic term)|reliableness (antonym)|reliability (antonym)|dependableness (antonym)|dependability (antonym)
+unreliable|4
+(adj)|undependable|fallible (similar term)
+(adj)|undependable|erratic (similar term)|temperamental (similar term)|uncertain (similar term)|unsound (similar term)|untrustworthy (related term)|untrusty (related term)|dependable (antonym)|reliable (antonym)
+(adj)|treacherous|dangerous (similar term)|unsafe (similar term)
+(adj)|irresponsible (similar term)
+unreliableness|1
+(noun)|undependability|undependableness|unreliability|irresponsibility (generic term)|irresponsibleness (generic term)|reliableness (antonym)|reliability (antonym)|dependableness (antonym)|dependability (antonym)
+unreliably|1
+(adv)|unfaithfully|undependably|reliably (antonym)|dependably (antonym)|faithfully (antonym)
+unrelieved|1
+(adj)|undiminished|unmitigated (similar term)
+unremarkable|1
+(adj)|everyday|mundane|quotidian|routine|workaday|ordinary (similar term)
+unremarkably|1
+(adv)|normally|usually|commonly|ordinarily|remarkably (antonym)
+unremarked|1
+(adj)|unperceived|unnoticed (similar term)
+unremedied|1
+(adj)|uncorrected (similar term)
+unremitting|1
+(adj)|ceaseless|constant|incessant|never-ending|perpetual|unceasing|continuous (similar term)|uninterrupted (similar term)
+unremorseful|1
+(adj)|impenitent|unrepentant|unashamed (related term)|unregenerate (related term)|unregenerated (related term)|repentant (antonym)|penitent (antonym)
+unremunerative|1
+(adj)|unprofitable (similar term)
+unrenewable|1
+(adj)|nonrenewable|renewable (antonym)
+unrenewed|1
+(adj)|unrevived|revived (antonym)
+unrentable|1
+(adj)|rentable (antonym)
+unrepaired|1
+(adj)|unserviceable (similar term)
+unrepeatable|2
+(adj)|unquotable|quotable (antonym)|repeatable (antonym)
+(adj)|unreproducible (similar term)|irreproducible (similar term)
+unrepentant|2
+(adj)|impenitent|unremorseful|unashamed (related term)|unregenerate (related term)|unregenerated (related term)|repentant (antonym)|penitent (antonym)
+(adj)|cussed|obdurate|obstinate|unregenerate (similar term)|unregenerated (similar term)
+unrepentantly|1
+(adv)|impenitently|repentantly (antonym)|penitently (antonym)
+unreplaceable|1
+(adj)|irreplaceable|unexpendable (related term)|replaceable (antonym)
+unreportable|1
+(adj)|reportable (antonym)
+unreported|1
+(adj)|reported (antonym)
+unrepresentative|1
+(adj)|atypical (similar term)|untypical (similar term)
+unrepressed|1
+(adj)|uninhibited (similar term)
+unreproducible|1
+(adj)|irreproducible|inimitable (similar term)|unrepeatable (similar term)|reproducible (antonym)
+unreproducibly|1
+(adv)|inimitably
+unreproved|1
+(adj)|unadmonished|unchastened|unrebuked|unpunished (similar term)
+unrequested|1
+(adj)|unasked (similar term)|unsolicited (similar term)|requested (antonym)
+unrequited|1
+(adj)|unanswered|unreciprocated|nonreciprocal (similar term)
+unresentful|1
+(adj)|unbitter (similar term)|resentful (antonym)
+unreserved|2
+(adj)|first-come-first-serve (similar term)|rush (similar term)|unbooked (similar term)|reserved (antonym)
+(adj)|demonstrative (related term)|uninhibited (related term)|unrestrained (related term)|reserved (antonym)
+unresistant|1
+(adj)|liable|nonimmune|nonresistant|susceptible (similar term)
+unresisting|1
+(adj)|resistless|supine|passive (similar term)|inactive (similar term)
+unresolvable|2
+(adj)|insolvable|unsoluble|unsolvable|insoluble (similar term)
+(adj)|inextricable (similar term)
+unresolved|3
+(adj)|unsolved|solved (antonym)
+(adj)|open|undecided|undetermined|unsettled (similar term)
+(adj)|dissonant|inharmonious (similar term)|unharmonious (similar term)
+unrespectability|1
+(noun)|disreputability|disreputableness|dishonorableness (generic term)|dishonourableness (generic term)|reputability (antonym)|respectability (antonym)
+unrespectable|1
+(adj)|respectable (antonym)
+unrespected|1
+(adj)|disreputable (similar term)
+unresponsive|3
+(adj)|refractory (similar term)|insensitive (related term)|insensitive (related term)|responsive (antonym)
+(adj)|cool (similar term)
+(adj)|unsusceptible (similar term)|insusceptible (similar term)
+unresponsiveness|1
+(noun)|deadness|quality (generic term)|responsiveness (antonym)
+unrest|2
+(noun)|agitation|ferment|fermentation|tempestuousness|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+(noun)|agitation (generic term)
+unrested|1
+(adj)|unrefreshed|tired (similar term)
+unrestrained|3
+(adj)|excessive (similar term)|extravagant (similar term)|exuberant (similar term)|overweening (similar term)|freewheeling (similar term)|highflying (similar term)|unbridled (similar term)|unchecked (similar term)|uncurbed (similar term)|ungoverned (similar term)|unbuttoned (similar term)|unlaced (similar term)|unhampered (similar term)|unhindered (similar term)|free (related term)|uncontrolled (related term)|uninhibited (related term)|unreserved (related term)|restrained (antonym)
+(adj)|delirious|excited|frantic|mad|wild (similar term)
+(adj)|flamboyant|colorful (similar term)|colourful (similar term)
+unrestraint|1
+(noun)|indiscipline (generic term)|undiscipline (generic term)|restraint (antonym)
+unrestricted|5
+(adj)|all-weather (similar term)|discretionary (similar term)|open (similar term)|open-plan (similar term)|open-ended (similar term)|free (related term)|restricted (antonym)
+(adj)|free (similar term)
+(adj)|unexclusive|public (similar term)
+(adj)|unmodified (similar term)
+(adj)|nonsensitive|unclassified (similar term)
+unrestrictive|1
+(adj)|emancipative (similar term)|nonrestrictive (similar term)|restrictive (antonym)
+unretentive|1
+(adj)|forgetful|short|unmindful (related term)|forgetful (related term)|mindless (related term)|retentive (antonym)
+unretrievable|1
+(adj)|irretrievable|unrecoverable (similar term)|irrecoverable (similar term)
+unrevealed|1
+(adj)|undisclosed|covert (similar term)
+unreverberant|1
+(adj)|nonresonant|anechoic (similar term)|dead (similar term)|dull (similar term)|thudding (similar term)|reverberant (antonym)
+unrevised|1
+(adj)|unaltered (similar term)|unchanged (similar term)
+unrevived|1
+(adj)|unrenewed|revived (antonym)
+unrewarded|1
+(adj)|empty-handed|unsuccessful (similar term)
+unrewarding|1
+(adj)|thankless (similar term)|unappreciated (similar term)|ungratifying (similar term)|profitless (similar term)|unprofitable (similar term)|rewarding (antonym)
+unrhetorical|1
+(adj)|matter-of-fact (similar term)|prosaic (similar term)|plainspoken (similar term)|informal (related term)|literal (related term)|plain (related term)|rhetorical (antonym)
+unrhymed|1
+(adj)|unrimed|rhymeless|rimeless|rhymed (antonym)
+unrhythmic|1
+(adj)|unrhythmical|arrhythmic (similar term)|arrhythmical (similar term)|nonrhythmic (similar term)|irregular (related term)|rhythmical (antonym)
+unrhythmical|1
+(adj)|unrhythmic|arrhythmic (similar term)|arrhythmical (similar term)|nonrhythmic (similar term)|irregular (related term)|rhythmical (antonym)
+unrifled|1
+(adj)|smoothbore|rifled (antonym)
+unrigged|1
+(adj)|rigged (antonym)
+unrighteous|1
+(adj)|sinful (similar term)|unholy (similar term)|wicked (similar term)|evil (related term)|guilty (related term)|immoral (related term)|unjust (related term)|unworthy (related term)|wicked (related term)|righteous (antonym)
+unrighteously|1
+(adv)|righteously (antonym)
+unrighteousness|1
+(noun)|immorality (generic term)|righteousness (antonym)
+unrimed|1
+(adj)|unrhymed|rhymeless|rimeless|rhymed (antonym)
+unripe|2
+(adj)|green|unripened|immature|unaged (similar term)|ripe (antonym)
+(adj)|unready (similar term)
+unripened|1
+(adj)|green|unripe|immature|unaged (similar term)|ripe (antonym)
+unrivaled|1
+(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivalled|incomparable (similar term)|uncomparable (similar term)
+unrivalled|1
+(adj)|matchless|nonpareil|one|one and only|peerless|unmatched|unmatchable|unrivaled|incomparable (similar term)|uncomparable (similar term)
+unroll|2
+(verb)|unwind|wind off|move (generic term)|displace (generic term)|wind (antonym)
+(verb)|unfurl|change surface (generic term)|roll up (antonym)
+unromantic|1
+(adj)|unloving (similar term)
+unromantically|1
+(adv)|romantically (antonym)
+unroofed|1
+(adj)|bare (similar term)
+unrouged|1
+(adj)|unpainted (similar term)
+unruffled|2
+(adj)|unflurried|unflustered|unperturbed|composed (similar term)
+(adj)|placid|quiet|still|tranquil|smooth|calm (similar term)
+unruliness|1
+(noun)|fractiousness|willfulness|wilfulness|intractability (generic term)|intractableness (generic term)
+unruly|3
+(adj)|boisterous|rambunctious|robustious|rumbustious|disorderly (similar term)
+(adj)|disobedient|insubordinate (similar term)
+(adj)|indocile|uncontrollable|ungovernable|unmanageable (similar term)|difficult (similar term)
+unrusted|1
+(adj)|rust-free|rustless (similar term)
+unsaddle|1
+(verb)|offsaddle|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|saddle (antonym)
+unsaddled|1
+(adj)|bareback (similar term)|barebacked (similar term)|saddled (antonym)
+unsafe|3
+(adj)|insecure|embattled (similar term)|precarious (similar term)|shaky (similar term)|unguaranteed (similar term)|unsecured (similar term)|dangerous (related term)|unsafe (related term)|unprotected (related term)|vulnerable (related term)|secure (antonym)
+(adj)|dangerous|breakneck (similar term)|chancy (similar term)|chanceful (similar term)|dicey (similar term)|dodgy (similar term)|desperate (similar term)|harmful (similar term)|hazardous (similar term)|risky (similar term)|wild (similar term)|insidious (similar term)|mordacious (similar term)|on the hook (similar term)|parlous (similar term)|perilous (similar term)|precarious (similar term)|touch-and-go (similar term)|self-destructive (similar term)|suicidal (similar term)|treacherous (similar term)|unreliable (similar term)|insecure (related term)|unsafe (related term)|vulnerable (related term)|safe (antonym)
+(adj)|insecure|vulnerable (similar term)
+unsaid|1
+(adj)|unexpressed|unstated|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unsalable|1
+(adj)|unsaleable|unmarketable (similar term)|unmarketable (similar term)|unmerchantable (similar term)|unvendible (similar term)|salable (antonym)
+unsalaried|1
+(adj)|uncompensated|unpaid (similar term)
+unsaleable|1
+(adj)|unsalable|unmarketable (similar term)|unmarketable (similar term)|unmerchantable (similar term)|unvendible (similar term)|salable (antonym)
+unsalted|1
+(adj)|unseasoned|tasteless (similar term)
+unsanctification|1
+(noun)|profaneness|unholiness (generic term)
+unsanctified|1
+(adj)|profane|unconsecrated|unholy (similar term)|unhallowed (similar term)
+unsanctify|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+unsanctioned|1
+(adj)|unofficial (similar term)
+unsanded|1
+(adj)|raw|unfinished (similar term)
+unsanitariness|1
+(noun)|sanitary condition (generic term)|sanitariness (antonym)
+unsanitary|1
+(adj)|insanitary|unhealthful|unhygienic (similar term)|sanitary (antonym)
+unsaponified|1
+(adj)|saponified (antonym)
+unsarcastic|1
+(adj)|sarcastic (antonym)
+unsated|1
+(adj)|unsatiated|unsatisfied|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+unsatiable|1
+(adj)|insatiate|insatiable|quenchless (similar term)|unquenchable (similar term)|unsated (similar term)|unsatiated (similar term)|unsatisfied (similar term)|unsatisfiable (similar term)|satiate (antonym)
+unsatiably|1
+(adv)|insatiably
+unsatiated|1
+(adj)|unsated|unsatisfied|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+unsatisfactorily|1
+(adv)|satisfactorily (antonym)
+unsatisfactoriness|1
+(noun)|quality (generic term)|satisfactoriness (antonym)
+unsatisfactory|1
+(adj)|disappointing (similar term)|dissatisfactory (similar term)|unsatisfying (similar term)|failing (similar term)|off (similar term)|unacceptable (similar term)|inadequate (related term)|unacceptable (related term)|satisfactory (antonym)
+unsatisfiable|1
+(adj)|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+unsatisfied|2
+(adj)|unsated|unsatiated|insatiate (similar term)|insatiable (similar term)|unsatiable (similar term)
+(adj)|restless|ungratified|discontented (similar term)|discontent (similar term)
+unsatisfying|1
+(adj)|disappointing|dissatisfactory|unsatisfactory (similar term)
+unsaturated|3
+(adj)|saturated (antonym)
+(adj)|monounsaturated (similar term)|polyunsaturated (similar term)|saturated (antonym)
+(adj)|dull (similar term)|saturated (antonym)
+unsaturated fatty acid|1
+(noun)|fatty acid (generic term)
+unsaved|1
+(adj)|cursed|damned|doomed|unredeemed|lost (similar term)
+unsavoriness|2
+(noun)|disgustingness|distastefulness|nauseatingness|sickeningness|unpalatability (generic term)|unpalatableness (generic term)
+(noun)|disgustingness|unpalatability (generic term)|unpalatableness (generic term)
+unsavory|2
+(adj)|unsavoury|offensive|odoriferous (similar term)|savory (antonym)
+(adj)|distasteful|unsavoury|unpalatable (similar term)
+unsavoury|2
+(adj)|unsavory|offensive|odoriferous (similar term)|savory (antonym)
+(adj)|distasteful|unsavory|unpalatable (similar term)
+unsay|1
+(verb)|swallow|take back|withdraw|renounce (generic term)|repudiate (generic term)
+unscalable|1
+(adj)|unclimbable|scalable (antonym)
+unscathed|1
+(adj)|unharmed|unhurt|whole|uninjured (similar term)
+unscheduled|1
+(adj)|extra (similar term)|special (similar term)|forced (similar term)|unexpected (similar term)|scheduled (antonym)
+unscholarly|1
+(adj)|unlearned (similar term)|unstudious (similar term)|nonintellectual (related term)|scholarly (antonym)
+unschooled|1
+(adj)|untaught|untutored|uneducated (similar term)
+unscientific|1
+(adj)|pseudoscientific (similar term)|scientific (antonym)
+unscramble|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|scramble (antonym)
+(verb)|unravel|unknot|untangle|unpick|undo (generic term)|knot (antonym)|ravel (antonym)
+unscrew|2
+(verb)|loosen (generic term)|loose (generic term)
+(verb)|loosen (generic term)|loose (generic term)|screw (antonym)
+unscripted|1
+(adj)|ad-lib (similar term)|spontaneous (similar term)|unwritten (similar term)|scripted (antonym)
+unscrupulous|1
+(adj)|unprincipled (related term)|scrupulous (antonym)
+unscrupulousness|1
+(noun)|dishonesty (generic term)|scrupulousness (antonym)
+unseal|1
+(verb)|open (generic term)|open up (generic term)|seal (antonym)
+unsealed|2
+(adj)|uncertain|sealed (antonym)
+(adj)|open (similar term)|opened (similar term)|open (related term)|sealed (antonym)
+unseamanlike|1
+(adj)|lubberly (similar term)|landlubberly (similar term)|seamanlike (antonym)
+unseamed|2
+(adj)|seamless (similar term)
+(adj)|seamless|unlined|smooth (similar term)
+unseasonable|2
+(adj)|seasonable (antonym)
+(adj)|ill-timed|untimely|wrong|inopportune (similar term)
+unseasonableness|1
+(noun)|untimeliness|timing (generic term)|timeliness (antonym)|seasonableness (antonym)
+unseasonably|1
+(adv)|seasonably (antonym)
+unseasoned|3
+(adj)|uncured (similar term)|seasoned (antonym)
+(adj)|unsalted|tasteless (similar term)
+(adj)|untested|untried|young|inexperienced (similar term)|inexperient (similar term)
+unseat|2
+(verb)|remove (generic term)
+(verb)|move (generic term)|displace (generic term)
+unseaworthy|1
+(adj)|leaky (related term)|seaworthy (antonym)
+unsectarian|1
+(adj)|nonsectarian|ecumenic (similar term)|oecumenic (similar term)|ecumenical (similar term)|oecumenical (similar term)|interchurch (similar term)|interdenominational (similar term)|nondenominational (similar term)|undenominational (similar term)|sectarian (antonym)
+unsecured|2
+(adj)|unbarred|unbolted|unlatched|unlocked|unfastened (similar term)
+(adj)|unguaranteed|insecure (similar term)|unsafe (similar term)
+unsecured bond|1
+(noun)|debenture|debenture bond|bond (generic term)|bond certificate (generic term)|secured bond (antonym)
+unseductive|1
+(adj)|uninviting (similar term)|untempting (similar term)|unattractive (related term)|seductive (antonym)
+unseeable|1
+(adj)|invisible|camouflaged (similar term)|concealed (similar term)|hidden (similar term)|out of sight (similar term)|infrared (similar term)|lightless (similar term)|nonvisual (similar term)|occult (similar term)|ultraviolet (similar term)|undetectable (similar term)|unseen (similar term)|imperceptible (related term)|unperceivable (related term)|covert (related term)|visible (antonym)
+unseeded|2
+(adj)|seeded (antonym)
+(adj)|unsown|unplanted (similar term)
+unseeing|2
+(adj)|unobservant|unperceptive (similar term)|unperceiving (similar term)
+(adj)|eyeless|sightless|blind (similar term)|unsighted (similar term)
+unseemliness|1
+(noun)|indecorum (generic term)|indecorousness (generic term)|seemliness (antonym)
+unseemly|1
+(adj)|indecent|indecorous|unbecoming|uncomely|untoward|improper (similar term)
+unseen|3
+(adj)|invisible (similar term)|unseeable (similar term)
+(adj)|unobserved|undetected (similar term)
+(noun)|spiritual world|belief (generic term)
+unsegmented|1
+(adj)|nonsegmental|united (similar term)
+unsegregated|1
+(adj)|desegrated|nonsegregated|integrated (similar term)
+unselected|1
+(adj)|random (similar term)|selected (antonym)
+unselective|1
+(adj)|undiscriminating (similar term)|indiscriminating (similar term)
+unselfconscious|1
+(adj)|unaffected (similar term)
+unselfconsciously|1
+(adv)|self-consciously (antonym)
+unselfconsciousness|1
+(noun)|unknowingness (generic term)|unawareness (generic term)|self-consciousness (antonym)
+unselfish|2
+(adj)|public-spirited (similar term)|self-denying (similar term)|self-giving (similar term)|self-sacrificing (similar term)|self-forgetful (similar term)|sharing (similar term)|altruistic (related term)|selfless (related term)|considerate (related term)|generous (related term)|selfish (antonym)
+(adj)|generous (similar term)
+unselfishly|1
+(adv)|selfishly (antonym)
+unselfishness|2
+(noun)|generosity (generic term)|generousness (generic term)|selfishness (antonym)
+(noun)|generosity|sharing (generic term)|share-out (generic term)
+unsensational|1
+(adj)|sensational (antonym)
+unsent|1
+(adj)|sent (antonym)
+unsentimental|1
+(adj)|tough-minded|tough (similar term)
+unsentimentally|1
+(adv)|sentimentally (antonym)
+unserviceable|2
+(adj)|broken-down (similar term)|burned-out (similar term)|burnt-out (similar term)|inoperable (similar term)|unrepaired (similar term)|nonfunctional (related term)|useless (related term)|serviceable (antonym)
+(adj)|unusable|unuseable|useless (similar term)
+unservile|1
+(adj)|unsubmissive|servile (antonym)
+unsettle|1
+(verb)|faze|unnerve|enervate|upset (generic term)|discompose (generic term)|untune (generic term)|disconcert (generic term)|discomfit (generic term)
+unsettled|4
+(adj)|doubtful (similar term)|tentative (similar term)|open (similar term)|undecided (similar term)|undetermined (similar term)|unresolved (similar term)|settled (antonym)
+(adj)|aimless (similar term)|drifting (similar term)|floating (similar term)|vagabond (similar term)|vagrant (similar term)|erratic (similar term)|planetary (similar term)|wandering (similar term)|homeless (similar term)|stateless (similar term)|migrant (similar term)|migratory (similar term)|mobile (similar term)|nomadic (similar term)|peregrine (similar term)|roving (similar term)|wandering (similar term)|peripatetic (similar term)|wayfaring (similar term)|itinerant (similar term)|rootless (similar term)|vagabond (similar term)|unlocated (similar term)|settled (antonym)
+(adj)|changeable|uncertain|variable (similar term)
+(adj)|uninhabited (similar term)
+unsex|3
+(verb)|deprive (generic term)|strip (generic term)|divest (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|sterilize|sterilise|desex|desexualize|desexualise|fix|operate on (generic term)|operate (generic term)
+unsexed|1
+(adj)|castrated|altered (similar term)|neutered (similar term)|cut (similar term)|emasculated (similar term)|gelded (similar term)|spayed (similar term)|uncastrated (antonym)
+unsexy|1
+(adj)|sexless (similar term)|sexless (similar term)|undersexed (similar term)|sexy (antonym)
+unshackled|1
+(adj)|unchained|unfettered|untied|unbound (similar term)
+unshaded|2
+(adj)|shaded (antonym)
+(adj)|unshadowed (similar term)|shaded (antonym)
+unshadowed|1
+(adj)|unshaded (similar term)
+unshakable|2
+(adj)|firm|steadfast|steady|stiff|unbendable|unfaltering|unwavering|resolute (similar term)
+(adj)|unassailable|watertight|bulletproof|incontestable (similar term)|incontestible (similar term)
+unshakably|1
+(adv)|determinedly|unfalteringly|with determination
+unshaken|1
+(adj)|undaunted|undismayed|resolute (similar term)
+unshaped|1
+(adj)|unshapen|unformed (similar term)
+unshapely|1
+(adj)|acromegalic (similar term)|pituitary (similar term)|chunky (similar term)|lumpy (similar term)|clubfooted (similar term)|deformed (similar term)|distorted (similar term)|ill-shapen (similar term)|malformed (similar term)|misshapen (similar term)|ill-proportioned (similar term)|knobby (similar term)|knobbly (similar term)|nodular (similar term)|nodulated (similar term)|noduled (similar term)|nodulose (similar term)|pigeon-breasted (similar term)|chicken-breasted (similar term)|shapeless (similar term)|torulose (similar term)|asymmetrical (related term)|asymmetric (related term)|shapely (antonym)
+unshapen|1
+(adj)|unshaped|unformed (similar term)
+unshared|1
+(adj)|exclusive (similar term)|sole (similar term)|individual (similar term)|separate (similar term)|single (similar term)|undivided (similar term)|separate (related term)|shared (antonym)
+unsharpened|1
+(adj)|dull (similar term)
+unshaved|1
+(adj)|unshaven|bearded (similar term)|barbate (similar term)|bewhiskered (similar term)|whiskered (similar term)|whiskery (similar term)|bestubbled (similar term)|stubbled (similar term)|stubbly (similar term)|goateed (similar term)|mustachioed (similar term)|mustached (similar term)|shaven (antonym)
+unshaven|1
+(adj)|unshaved|bearded (similar term)|barbate (similar term)|bewhiskered (similar term)|whiskered (similar term)|whiskery (similar term)|bestubbled (similar term)|stubbled (similar term)|stubbly (similar term)|goateed (similar term)|mustachioed (similar term)|mustached (similar term)|shaven (antonym)
+unsheared|2
+(adj)|unshorn|sheared (antonym)
+(adj)|uncut (similar term)|rough (similar term)
+unsheathe|1
+(verb)|draw (generic term)|pull (generic term)|pull out (generic term)|get out (generic term)|take out (generic term)|sheathe (antonym)
+unsheathed|1
+(adj)|bare|sheathed (antonym)
+unshelled|1
+(adj)|shell-less|shelled (antonym)
+unshielded|1
+(adj)|unprotected (similar term)
+unshockable|1
+(adj)|broad-minded|shockable (antonym)
+unshod|2
+(adj)|discalced|discalceate|calced (antonym)
+(adj)|unshoed|barefoot (similar term)|barefooted (similar term)|shoeless (similar term)|stockinged (similar term)|shod (antonym)
+unshoed|1
+(adj)|unshod|barefoot (similar term)|barefooted (similar term)|shoeless (similar term)|stockinged (similar term)|shod (antonym)
+unshorn|1
+(adj)|unsheared|sheared (antonym)
+unshrinkable|1
+(adj)|shrinkable (antonym)
+unshrinking|1
+(adj)|unblinking|unflinching|unintimidated|unafraid (similar term)|fearless (similar term)
+unshuttered|1
+(adj)|shuttered (antonym)
+unsighted|1
+(adj)|blind|blinded (similar term)|blindfold (similar term)|blindfolded (similar term)|color-blind (similar term)|colour-blind (similar term)|dazzled (similar term)|deuteranopic (similar term)|green-blind (similar term)|dim-sighted (similar term)|near-blind (similar term)|purblind (similar term)|sand-blind (similar term)|visually impaired (similar term)|visually challenged (similar term)|eyeless (similar term)|sightless (similar term)|unseeing (similar term)|protanopic (similar term)|red-blind (similar term)|snow-blind (similar term)|snow-blinded (similar term)|stone-blind (similar term)|tritanopic (similar term)|blue-blind (similar term)|sighted (antonym)
+unsightliness|1
+(noun)|ugliness (generic term)
+unsightly|1
+(adj)|ugly (similar term)
+unsigned|1
+(adj)|signed (antonym)
+unsilenced|1
+(adj)|silenced (antonym)
+unsimilarity|1
+(noun)|dissimilarity|difference (generic term)|similarity (antonym)
+unsinkable|1
+(adj)|sinkable (antonym)
+unsized|2
+(adj)|sized (antonym)
+(adj)|unsorted (similar term)|sized (antonym)
+unskilled|3
+(adj)|artless (similar term)|botchy (similar term)|butcherly (similar term)|unskillful (similar term)|bungled (similar term)|botched (similar term)|bungling (similar term)|clumsy (similar term)|fumbling (similar term)|incompetent (similar term)|crude (similar term)|rough (similar term)|hopeless (similar term)|humble (similar term)|menial (similar term)|lowly (similar term)|lubberly (similar term)|out of practice (similar term)|rusty (similar term)|semiskilled (similar term)|weak (similar term)|incompetent (related term)|inexperienced (related term)|inexperient (related term)|skilled (antonym)
+(adj)|amateurish|amateur|inexpert|unprofessional (similar term)
+(adj)|incompetent|bad (similar term)
+unskilled person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unskillful|1
+(adj)|botchy|butcherly|unskilled (similar term)
+unskillfulness|1
+(noun)|inability (generic term)|skillfulness (antonym)
+unslaked lime|1
+(noun)|calcium oxide|quicklime|lime|calx|calcined lime|fluxing lime|burnt lime|oxide (generic term)
+unsleeping|1
+(adj)|wide-awake|awake (similar term)
+unsloped|1
+(adj)|upright|vertical (similar term)|perpendicular (similar term)
+unsmiling|1
+(adj)|joyless (similar term)
+unsmilingly|1
+(adv)|smilingly (antonym)
+unsmooth|1
+(adj)|rough|abrasive (similar term)|scratchy (similar term)|alligatored (similar term)|cracked (similar term)|barky (similar term)|broken (similar term)|rugged (similar term)|bullate (similar term)|bumpy (similar term)|chapped (similar term)|cracked (similar term)|roughened (similar term)|corded (similar term)|twilled (similar term)|costate (similar term)|ribbed (similar term)|cragged (similar term)|craggy (similar term)|hilly (similar term)|mountainous (similar term)|crushed (similar term)|homespun (similar term)|nubby (similar term)|nubbly (similar term)|slubbed (similar term)|tweedy (similar term)|imbricate (similar term)|imbricated (similar term)|lepidote (similar term)|leprose (similar term)|scabrous (similar term)|scaly (similar term)|scurfy (similar term)|squamulose (similar term)|lined (similar term)|seamed (similar term)|pocked (similar term)|pockmarked (similar term)|potholed (similar term)|rocky (similar term)|bouldery (similar term)|bouldered (similar term)|stony (similar term)|roughish (similar term)|rugose (similar term)|sandpapery (similar term)|saw-like (similar term)|scabby (similar term)|shagged (similar term)|shaggy (similar term)|textured (similar term)|rough-textured (similar term)|coarse-textured (similar term)|verrucose (similar term)|warty (similar term)|wartlike (similar term)|coarse (related term)|harsh (related term)|irregular (related term)|nonslippery (related term)|uneven (related term)|unironed (related term)|wrinkled (related term)|unpolished (related term)|smooth (antonym)
+unsmoothed|1
+(adj)|wrinkled (similar term)
+unsnarl|1
+(verb)|disentangle|straighten out|order (generic term)|snarl (antonym)|entangle (antonym)
+unsnarled|1
+(adj)|disentangled|loosened|untangled (similar term)
+unsnarling|1
+(noun)|untangling|disentanglement|extrication|liberation (generic term)|release (generic term)|freeing (generic term)
+unsociability|1
+(noun)|unsociableness|disposition (generic term)|temperament (generic term)|sociability (antonym)
+unsociable|1
+(adj)|antisocial (similar term)|ungregarious (similar term)|unfriendly (related term)|unsocial (related term)|sociable (antonym)
+unsociableness|1
+(noun)|unsociability|disposition (generic term)|temperament (generic term)|sociability (antonym)
+unsociably|1
+(adv)|sociably (antonym)
+unsocial|1
+(adj)|alone (similar term)|antisocial (similar term)|asocial (similar term)|asocial (similar term)|lone (similar term)|lonely (similar term)|solitary (similar term)|recluse (similar term)|reclusive (similar term)|withdrawn (similar term)|ungregarious (related term)|unsociable (related term)|social (antonym)
+unsoiled|1
+(adj)|unspotted|unstained|clean (similar term)
+unsold|1
+(adj)|sold (antonym)
+unsolder|1
+(verb)|detach (generic term)|come off (generic term)|come away (generic term)
+unsoldierly|1
+(adj)|unmilitary (similar term)|nonmilitary (similar term)
+unsolicited|1
+(adj)|unasked|unrequested (similar term)
+unsoluble|1
+(adj)|insolvable|unsolvable|unresolvable|insoluble (similar term)
+unsolvability|1
+(noun)|insolubility|property (generic term)|solubility (antonym)|solvability (antonym)
+unsolvable|1
+(adj)|insolvable|unsoluble|unresolvable|insoluble (similar term)
+unsolved|1
+(adj)|unresolved|solved (antonym)
+unsophisticated|3
+(adj)|unworldly|naive (similar term)|naif (similar term)
+(adj)|uncomplicated|simple (similar term)
+(adj)|bumpkinly|hick|rustic|provincial (similar term)
+unsorted|2
+(adj)|unsized (similar term)
+(adj)|uncategorized|uncategorised|unclassified (similar term)
+unsought|1
+(adj)|undesired|unwanted (similar term)
+unsound|6
+(adj)|corroded (similar term)|decayed (similar term)|rotten (similar term)|rotted (similar term)|sound (antonym)
+(adj)|bad (similar term)|risky (similar term)|high-risk (similar term)|speculative (similar term)|long (similar term)|wildcat (similar term)|broken (related term)|damaged (related term)|injured (related term)|unfit (related term)|unhealthy (related term)|unwholesome (related term)|sound (antonym)
+(adj)|fallacious|invalid (similar term)
+(adj)|mentally ill|unstable|insane (similar term)
+(adj)|bad|unfit|unhealthy (similar term)
+(adj)|unreliable (similar term)|undependable (similar term)
+unsoundable|1
+(adj)|unfathomable (similar term)
+unsounded|2
+(adj)|profound|unfathomed|unplumbed|deep (similar term)
+(adj)|silent|inaudible (similar term)|unhearable (similar term)
+unsoundness|3
+(noun)|condition (generic term)|status (generic term)|soundness (antonym)
+(noun)|misconception (generic term)
+(noun)|bad (generic term)|badness (generic term)|soundness (antonym)|soundness (antonym)
+unsoured|1
+(adj)|fresh (similar term)|sweet (similar term)|unfermented (similar term)|soured (antonym)
+unsown|1
+(adj)|unseeded|unplanted (similar term)
+unspaced|1
+(adj)|unleaded (similar term)|spaced (antonym)
+unsparing|2
+(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unstinted|unstinting|generous (similar term)
+(adj)|inclement (similar term)
+unsparingly|1
+(adv)|scathingly
+unspeakable|3
+(adj)|indefinable|indescribable|ineffable|untellable|unutterable|inexpressible (similar term)|unexpressible (similar term)
+(adj)|atrocious|abominable|awful|dreadful|painful|terrible|bad (similar term)
+(adj)|ineffable|unnameable|unutterable|sacred (similar term)
+unspeakably|1
+(adv)|ineffably|indescribably|unutterably
+unspecialised|1
+(adj)|unspecialized|generalized (similar term)|generalised (similar term)|general (related term)|specialized (antonym)
+unspecialized|1
+(adj)|unspecialised|generalized (similar term)|generalised (similar term)|general (related term)|specialized (antonym)
+unspecific|1
+(adj)|broad|general (similar term)
+unspecified|1
+(adj)|specified (antonym)
+unspectacular|1
+(adj)|undramatic (similar term)
+unspell|1
+(verb)|free (generic term)|liberate (generic term)|release (generic term)|unloose (generic term)|unloosen (generic term)|loose (generic term)|spell (antonym)
+unspent|1
+(adj)|unexpended|unexhausted (similar term)
+unspoiled|2
+(adj)|good|unspoilt|fresh (similar term)
+(adj)|uncorrupted|incorrupt (similar term)
+unspoilt|1
+(adj)|good|unspoiled|fresh (similar term)
+unspoken|2
+(adj)|mute|tongueless|wordless|inarticulate (similar term)|unarticulate (similar term)
+(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unvoiced|implicit (similar term)|inexplicit (similar term)
+unspoken accusation|1
+(noun)|veiled accusation|implication (generic term)
+unsporting|1
+(adj)|cheating|dirty|foul|unsportsmanlike|unfair (similar term)|unjust (similar term)
+unsportingly|1
+(adv)|sportingly (antonym)
+unsportsmanlike|1
+(adj)|cheating|dirty|foul|unsporting|unfair (similar term)|unjust (similar term)
+unspotted|1
+(adj)|unsoiled|unstained|clean (similar term)
+unstable|6
+(adj)|coseismic (similar term)|coseismal (similar term)|crank (similar term)|cranky (similar term)|tender (similar term)|tippy (similar term)|explosive (similar term)|volatile (similar term)|rickety (similar term)|shaky (similar term)|wobbly (similar term)|wonky (similar term)|rocky (similar term)|seismic (similar term)|seismal (similar term)|tipsy (similar term)|top-heavy (similar term)|tottering (similar term)|volcanic (similar term)|impermanent (related term)|temporary (related term)|inconstant (related term)|unsteady (related term)|stable (antonym)
+(adj)|reactive (similar term)
+(adj)|precarious|uneasy (similar term)
+(adj)|mentally ill|unsound|insane (similar term)
+(adj)|irresolute (similar term)
+(adj)|fluid|changeable (similar term)|changeful (similar term)
+unstableness|1
+(noun)|instability|unsteadiness (generic term)|stableness (antonym)|stability (antonym)
+unstaged|1
+(adj)|unperformed (similar term)|staged (antonym)
+unstained|4
+(adj)|untreated (similar term)|stained (antonym)
+(adj)|unvarnished|unpainted (similar term)
+(adj)|unsoiled|unspotted|clean (similar term)
+(adj)|stainless|unsullied|untainted|untarnished|unblemished (similar term)
+unstaple|1
+(verb)|undo (generic term)|staple (antonym)
+unstarred|1
+(adj)|unasterisked|unmarked (similar term)
+unstartling|1
+(adj)|unsurprising (similar term)
+unstated|1
+(adj)|unexpressed|unsaid|unuttered|unverbalized|unverbalised|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unstatesmanlike|1
+(adj)|unpresidential (related term)|statesmanlike (antonym)
+unsteadily|1
+(adv)|falteringly|uncertainly|steadily (antonym)
+unsteadiness|2
+(noun)|ricketiness|movability (generic term)|movableness (generic term)|steadiness (antonym)
+(noun)|irregularity (generic term)|unregularity (generic term)|steadiness (antonym)
+unsteady|2
+(adj)|arrhythmic (similar term)|jerking (similar term)|jerky (similar term)|convulsive (similar term)|spasmodic (similar term)|spastic (similar term)|faltering (similar term)|flickering (similar term)|aflicker (similar term)|fluctuating (similar term)|palpitant (similar term)|palpitating (similar term)|shaky (similar term)|shivering (similar term)|trembling (similar term)|quavering (similar term)|tremulous (similar term)|shifting (similar term)|shifty (similar term)|shuddering (similar term)|tottering (similar term)|tottery (similar term)|wobbling (similar term)|agitated (related term)|irregular (related term)|uneven (related term)|unstable (related term)|steady (antonym)
+(adj)|unfirm|unfixed (similar term)
+unsterilised|1
+(adj)|unsterilized|germy (similar term)
+unsterilized|1
+(adj)|unsterilised|germy (similar term)
+unstilted|1
+(adj)|unaffected (similar term)
+unstimulating|1
+(adj)|unexciting|bland (similar term)|flat (similar term)|dry (similar term)|juiceless (similar term)|vapid (similar term)|unexciting (related term)|uninteresting (related term)|unmoving (related term)|stimulating (antonym)
+unstinted|1
+(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unsparing|unstinting|generous (similar term)
+unstinting|1
+(adj)|lavish|munificent|overgenerous|prodigal|too-generous|unsparing|unstinted|generous (similar term)
+unstirred|1
+(adj)|unagitated (similar term)
+unstoppable|1
+(adj)|unbeatable (similar term)|stoppable (antonym)
+unstoppered|1
+(adj)|open (similar term)
+unstrain|1
+(verb)|relax|unlax|loosen up|unwind|make relaxed|affect (generic term)|strain (antonym)|tense (antonym)
+unstrained|2
+(adj)|relaxed (similar term)
+(adj)|unforced|effortless (similar term)
+unstrap|1
+(verb)|undo (generic term)|strap (antonym)
+unstratified|1
+(adj)|stratified (antonym)
+unstratified language|1
+(noun)|programming language (generic term)|programing language (generic term)|stratified language (antonym)
+unstressed|1
+(adj)|feminine (similar term)|unaccented (similar term)|light (similar term)|weak (similar term)|unemphatic (similar term)|stressed (antonym)
+unstring|1
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|string (antonym)
+unstructured|2
+(adj)|ambiguous (similar term)|unregulated (similar term)|unorganized (related term)|unorganised (related term)|structured (antonym)
+(adj)|amorphous|inorganic (similar term)
+unstrung|1
+(adj)|discomposed (similar term)
+unstuck|2
+(adj)|stuck (antonym)
+(adj)|undone|disorganized (similar term)|disorganised (similar term)
+unstudied|2
+(adj)|uncontrived|candid (similar term)|unaffected (related term)|studied (antonym)
+(adj)|uneducated (similar term)
+unstudious|1
+(adj)|unscholarly (similar term)
+unstuff|1
+(verb)|loosen up|free (generic term)|disengage (generic term)|stuff (antonym)
+unstylish|2
+(adj)|styleless|dowdy (similar term)|stylish (antonym)
+(adj)|unfashionable|antique (similar term)|demode (similar term)|ex (similar term)|old-fashioned (similar term)|old-hat (similar term)|outmoded (similar term)|passe (similar term)|passee (similar term)|dated (similar term)|dowdy (similar term)|frumpy (similar term)|frumpish (similar term)|fogyish (similar term)|moss-grown (similar term)|mossy (similar term)|stick-in-the-mud (similar term)|stodgy (similar term)|out (similar term)|prehistoric (similar term)|old (related term)|fashionable (antonym)
+unsuasible|1
+(adj)|unpersuadable|unsusceptible (similar term)|insusceptible (similar term)
+unsubdivided|1
+(adj)|simple|acerate (similar term)|acerose (similar term)|acicular (similar term)|needle-shaped (similar term)|acuminate (similar term)|apiculate (similar term)|caudate (similar term)|cordate (similar term)|heart-shaped (similar term)|cordiform (similar term)|cuneate (similar term)|wedge-shaped (similar term)|deltoid (similar term)|dolabriform (similar term)|dolabrate (similar term)|elliptic (similar term)|ensiform (similar term)|sword-shaped (similar term)|swordlike (similar term)|bladelike (similar term)|hastate (similar term)|spearhead-shaped (similar term)|lanceolate (similar term)|lancelike (similar term)|linear (similar term)|elongate (similar term)|lyrate (similar term)|needled (similar term)|two-needled (similar term)|three-needled (similar term)|four-needled (similar term)|five-needled (similar term)|obtuse (similar term)|oblanceolate (similar term)|oblong (similar term)|obovate (similar term)|orbiculate (similar term)|orbicular (similar term)|ovate (similar term)|pandurate (similar term)|panduriform (similar term)|fiddle-shaped (similar term)|peltate (similar term)|shield-shaped (similar term)|perfoliate (similar term)|reniform (similar term)|kidney-shaped (similar term)|sagittate (similar term)|sagittiform (similar term)|arrow-shaped (similar term)|spatulate (similar term)|spatula-shaped (similar term)|unlobed (similar term)|simple (related term)|smooth (related term)|compound (antonym)
+unsubduable|1
+(adj)|indomitable|never-say-die|unconquerable (similar term)
+unsubdued|1
+(adj)|wild (similar term)
+unsubmissive|1
+(adj)|unservile|servile (antonym)
+unsubstantial|1
+(adj)|insubstantial|unreal|aeriform (similar term)|aerial (similar term)|airy (similar term)|aery (similar term)|ethereal (similar term)|shadowy (similar term)|wraithlike (similar term)|stringy (similar term)|immaterial (related term)|nonmaterial (related term)|substantial (antonym)
+unsubstantialise|1
+(verb)|immaterialize|immaterialise|unsubstantialize|change (generic term)|alter (generic term)|modify (generic term)
+unsubstantialize|1
+(verb)|immaterialize|immaterialise|unsubstantialise|change (generic term)|alter (generic term)|modify (generic term)
+unsubstantiated|1
+(adj)|uncorroborated|unsupported (similar term)
+unsubtle|1
+(adj)|broad|clear (similar term)
+unsuccessful|2
+(adj)|attempted (similar term)|defeated (similar term)|disappointed (similar term)|discomfited (similar term)|foiled (similar term)|frustrated (similar term)|thwarted (similar term)|done for (similar term)|ruined (similar term)|sunk (similar term)|undone (similar term)|washed-up (similar term)|down-and-out (similar term)|empty-handed (similar term)|unrewarded (similar term)|failed (similar term)|failing (similar term)|hitless (similar term)|no-win (similar term)|out (similar term)|scoreless (similar term)|goalless (similar term)|hitless (similar term)|self-defeating (similar term)|unfulfilled (similar term)|unrealized (similar term)|unrealised (similar term)|unplaced (similar term)|winless (similar term)|defeated (related term)|unfortunate (related term)|unprofitable (related term)|successful (antonym)
+(adj)|abortive|stillborn|unfruitful (similar term)
+unsuccessful person|1
+(noun)|failure|loser|nonstarter|unfortunate (generic term)|unfortunate person (generic term)|achiever (antonym)
+unsuccessfully|1
+(adv)|successfully (antonym)
+unsufferable|1
+(adj)|impossible|insufferable|unacceptable|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+unsugared|1
+(adj)|sugarless (similar term)|nonsweet (similar term)
+unsuitability|1
+(noun)|unsuitableness|ineptness|quality (generic term)|suitableness (antonym)|suitability (antonym)
+unsuitable|5
+(adj)|unfit (similar term)
+(adj)|inapplicable|irrelevant (similar term)
+(adj)|bad (similar term)
+(adj)|undesirable|ineligible (similar term)
+(adj)|improper|wrong|inappropriate (similar term)
+unsuitableness|1
+(noun)|unsuitability|ineptness|quality (generic term)|suitableness (antonym)|suitability (antonym)
+unsuitably|1
+(adv)|inappropriately|not suitably|appropriately (antonym)|suitably (antonym)
+unsuited|1
+(adj)|ill-sorted|incompatible|mismated|mismatched (similar term)
+unsullied|2
+(adj)|clean (similar term)
+(adj)|stainless|unstained|untainted|untarnished|unblemished (similar term)
+unsung|2
+(adj)|obscure|unknown|inglorious (similar term)|dishonorable (similar term)
+(adj)|unappreciated|unvalued|unacknowledged (similar term)
+unsupervised|1
+(adj)|unattended (similar term)|supervised (antonym)
+unsupportable|1
+(adj)|intolerable (similar term)|unbearable (similar term)|unendurable (similar term)
+unsupported|3
+(adj)|baseless (similar term)|groundless (similar term)|idle (similar term)|unfounded (similar term)|unwarranted (similar term)|wild (similar term)|single-handed (similar term)|unassisted (similar term)|unbacked (similar term)|uncorroborated (similar term)|unsubstantiated (similar term)|supported (antonym)|supported (antonym)
+(adj)|strapless (similar term)|unbraced (similar term)|supported (antonym)
+(adj)|undocumented (similar term)
+unsupportive|1
+(adj)|confounding (similar term)|contradictory (similar term)|disconfirming (similar term)|invalidating (similar term)|negative (related term)|supportive (antonym)
+unsuppressed|1
+(adj)|uninhibited (similar term)
+unsure|2
+(adj)|uncertain|incertain|ambivalent (similar term)|doubtful (similar term)|dubious (similar term)|groping (similar term)|hesitant (similar term)|sure (antonym)|certain (antonym)
+(adj)|diffident|shy|timid|unconfident (similar term)
+unsurmountable|2
+(adj)|insurmountable|insuperable (similar term)|unconquerable (similar term)|impossible (related term)|unconquerable (related term)|surmountable (antonym)
+(adj)|unclimbable|impassable (similar term)|unpassable (similar term)
+unsurpassable|1
+(adj)|best (similar term)
+unsurpassed|1
+(adj)|unexcelled|unexceeded|best (similar term)
+unsurprised|1
+(adj)|not surprised|surprised (antonym)
+unsurprising|1
+(adj)|expected (similar term)|unstartling (similar term)|expected (related term)|surprising (antonym)
+unsusceptibility|1
+(noun)|immunity|condition (generic term)|status (generic term)|susceptibility (antonym)
+unsusceptible|1
+(adj)|insusceptible|immune (similar term)|resistant (similar term)|immunized (similar term)|immunised (similar term)|vaccinated (similar term)|immunogenic (similar term)|incapable (similar term)|unpersuadable (similar term)|unsuasible (similar term)|unresponsive (similar term)|insensitive (related term)|susceptible (antonym)
+unsuspected|1
+(adj)|unknown (similar term)|suspected (antonym)
+unsuspecting|2
+(adj)|unsuspicious|trustful (similar term)|trusting (similar term)
+(adj)|unaware (similar term)|incognizant (similar term)
+unsuspicious|1
+(adj)|unsuspecting|trustful (similar term)|trusting (similar term)
+unswayed|1
+(adj)|uninfluenced|untouched|unaffected (similar term)
+unsweet|2
+(adj)|sec|dry (similar term)
+(adj)|disagreeable (similar term)
+unsweetened|1
+(adj)|sugarless (similar term)|nonsweet (similar term)
+unswept|2
+(adj)|swept (antonym)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+unswerving|2
+(adj)|undeviating|direct (similar term)
+(adj)|steadfast|staunch|constant (similar term)
+unsworn|1
+(adj)|sworn (antonym)
+unsyllabic|1
+(adj)|nonsyllabic|unsyllabled (similar term)|syllabic (antonym)
+unsyllabled|1
+(adj)|nonsyllabic (similar term)|unsyllabic (similar term)
+unsymbolic|1
+(adj)|nonrepresentative|representative (antonym)
+unsymmetric|1
+(adj)|unsymmetrical|asymmetrical (similar term)|asymmetric (similar term)
+unsymmetrical|2
+(adj)|unsymmetric|asymmetrical (similar term)|asymmetric (similar term)
+(adj)|anisometric|unequal (similar term)
+unsymmetrically|1
+(adv)|asymmetrically|symmetrically (antonym)
+unsympathetic|5
+(adj)|unsympathizing (similar term)|unsympathising (similar term)|uncompassionate (related term)|uncongenial (related term)|incompatible (related term)|unresponsive (related term)|sympathetic (antonym)
+(adj)|unappealing|unlikeable|unlikable|sympathetic (antonym)
+(adj)|closed|unreceptive (similar term)
+(adj)|unkindly|unkind (similar term)
+(adj)|disagreeable|uncongenial (similar term)|incompatible (similar term)
+unsympathetically|1
+(adv)|without sympathy|sympathetically (antonym)
+unsympathising|1
+(adj)|unsympathizing|unsympathetic (similar term)
+unsympathizing|1
+(adj)|unsympathising|unsympathetic (similar term)
+unsynchronised|1
+(adj)|nonsynchronous|unsynchronized|unsynchronous|asynchronous (similar term)
+unsynchronized|1
+(adj)|nonsynchronous|unsynchronised|unsynchronous|asynchronous (similar term)
+unsynchronous|1
+(adj)|nonsynchronous|unsynchronized|unsynchronised|asynchronous (similar term)
+unsystematic|1
+(adj)|unsystematized (similar term)|unsystematised (similar term)|disorganized (related term)|disorganised (related term)|irregular (related term)|systematic (antonym)
+unsystematically|1
+(adv)|systematically (antonym)
+unsystematised|1
+(adj)|unsystematized|unsystematic (similar term)
+unsystematized|1
+(adj)|unsystematised|unsystematic (similar term)
+untactful|1
+(adj)|tactless|inconsiderate (related term)|inelegant (related term)|tactful (antonym)
+untagged|1
+(adj)|unlabeled|unlabelled|labeled (antonym)
+untainted|1
+(adj)|stainless|unstained|unsullied|untarnished|unblemished (similar term)
+untalented|1
+(adj)|talentless|talented (antonym)
+untalkative|1
+(adj)|reticent|taciturn (similar term)
+untamed|1
+(adj)|wild|feral (similar term)|ferine (similar term)|savage (similar term)|semi-wild (similar term)|unbroken (similar term)|undomesticated (similar term)|intractable (related term)|tame (antonym)
+untangle|2
+(verb)|extricate|disentangle|disencumber|free (generic term)|disengage (generic term)
+(verb)|unravel|unknot|unscramble|unpick|undo (generic term)|knot (antonym)|ravel (antonym)
+untangled|1
+(adj)|disentangled (similar term)|loosened (similar term)|unsnarled (similar term)|tangled (antonym)
+untangling|1
+(noun)|unsnarling|disentanglement|extrication|liberation (generic term)|release (generic term)|freeing (generic term)
+untanned|1
+(adj)|tanned (antonym)
+untaped|1
+(adj)|unfilmed|live (similar term)|unrecorded (similar term)
+untapped|2
+(adj)|tapped (antonym)
+(adj)|unexploited (similar term)|undeveloped (similar term)
+untarnished|1
+(adj)|stainless|unstained|unsullied|untainted|unblemished (similar term)
+untasted|1
+(adj)|untouched|full (similar term)
+untaught|1
+(adj)|unschooled|untutored|uneducated (similar term)
+untaxed|1
+(adj)|tax-exempt|tax-free|nontaxable (similar term)|exempt (similar term)
+unteach|1
+(verb)|teach (generic term)|learn (generic term)|instruct (generic term)
+untechnical|1
+(adj)|nontechnical|technical (antonym)
+untellable|1
+(adj)|indefinable|indescribable|ineffable|unspeakable|unutterable|inexpressible (similar term)|unexpressible (similar term)
+untempered|2
+(adj)|unhardened|brittle (similar term)|unannealed (similar term)|tempered (antonym)
+(adj)|unmoderated (similar term)|tempered (antonym)
+untempting|2
+(adj)|uninviting|unseductive (similar term)
+(adj)|unattractive|uninviting (similar term)
+untenable|1
+(adj)|indefensible|unreasonable (similar term)
+untenanted|1
+(adj)|unoccupied|uninhabited (similar term)
+untended|1
+(adj)|uncared-for (similar term)
+untermeyer|1
+(noun)|Untermeyer|Louis Untermeyer|writer (generic term)|author (generic term)
+untested|2
+(adj)|unseasoned|untried|young|inexperienced (similar term)|inexperient (similar term)
+(adj)|untried|new (similar term)
+untethered|1
+(adj)|unbound (similar term)
+unthankful|1
+(adj)|ungrateful|thankless|unappreciative (similar term)|grateful (antonym)
+unthaw|1
+(verb)|dissolve|thaw|unfreeze|dethaw|melt|liquefy (generic term)|flux (generic term)|liquify (generic term)
+unthawed|1
+(adj)|frozen (similar term)
+untheatrical|1
+(adj)|theatrical (antonym)
+unthematic|1
+(adj)|message|content|subject matter|substance (related term)|thematic (antonym)
+unthinkable|1
+(adj)|impossible (similar term)|inconceivable (similar term)|out of the question (similar term)|unimaginable (similar term)|impossible (related term)|incredible (related term)|unbelievable (related term)|thinkable (antonym)
+unthinkably|1
+(adv)|unimaginably
+unthinking|4
+(adj)|unreflective|unthoughtful|thoughtless (similar term)
+(adj)|thoughtless|uncaring|inconsiderate (similar term)
+(adj)|lumpish|lumpen|stupid (similar term)
+(adv)|thoughtlessly|unthinkingly|thoughtfully (antonym)
+unthinkingly|1
+(adv)|thoughtlessly|unthinking|thoughtfully (antonym)
+unthought|1
+(adj)|unhoped|unhoped-for|unthought-of|unexpected (similar term)
+unthought-of|1
+(adj)|unhoped|unhoped-for|unthought|unexpected (similar term)
+unthoughtful|1
+(adj)|unreflective|unthinking|thoughtless (similar term)
+unthoughtfulness|1
+(noun)|thoughtlessness|trait (generic term)|thoughtfulness (antonym)
+unthreatening|1
+(adj)|well-meaning|amicable (similar term)
+untidily|1
+(adv)|messily
+untidiness|2
+(noun)|disorderliness (generic term)|disorder (generic term)|tidiness (antonym)
+(noun)|messiness|uncleanliness (generic term)|tidiness (antonym)
+untidy|1
+(adj)|blowsy (similar term)|blowzy (similar term)|slatternly (similar term)|sluttish (similar term)|cluttered (similar term)|littered (similar term)|disheveled (similar term)|dishevelled (similar term)|frowzled (similar term)|rumpled (similar term)|tousled (similar term)|disorderly (similar term)|higgledy-piggledy (similar term)|hugger-mugger (similar term)|jumbled (similar term)|topsy-turvy (similar term)|frowsy (similar term)|frowzy (similar term)|slovenly (similar term)|messy (similar term)|mussy (similar term)|scraggly (similar term)|sloppy (similar term)|slouchy (similar term)|sprawling (similar term)|straggling (similar term)|straggly (similar term)|unkempt (similar term)|dirty (related term)|soiled (related term)|unclean (related term)|unfastidious (related term)|ungroomed (related term)|tidy (antonym)
+untie|2
+(verb)|unbrace|unlace|undo (generic term)|tie (antonym)
+(verb)|undo|loosen|change (generic term)|alter (generic term)|modify (generic term)
+untied|3
+(adj)|unfastened|tied (antonym)
+(adj)|unlaced|laced (antonym)
+(adj)|unchained|unfettered|unshackled|unbound (similar term)
+untier|1
+(noun)|undoer|opener|unfastener|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+until now|1
+(adv)|so far|thus far|up to now|hitherto|heretofore|as yet|yet|til now
+untilled|1
+(adj)|unplowed (similar term)|unploughed (similar term)|unbroken (similar term)
+untimbered|2
+(adj)|timbered (antonym)
+(adj)|unwooded (similar term)|treeless (similar term)
+untimeliness|2
+(noun)|unseasonableness|timing (generic term)|timeliness (antonym)|seasonableness (antonym)
+(noun)|inopportuneness|inconvenience (generic term)|opportuneness (antonym)
+untimely|3
+(adj)|ill-timed|unseasonable|wrong|inopportune (similar term)
+(adj)|premature|early (similar term)
+(adv)|prematurely
+untipped|1
+(adj)|tipped (antonym)
+untired|1
+(adj)|unwearied|unweary|rested (similar term)
+untiring|1
+(adj)|hardworking|industrious|tireless|diligent (similar term)
+untitled|2
+(adj)|titled (antonym)
+(adj)|ignoble|ungentle|lowborn (similar term)
+untoasted|1
+(adj)|raw (similar term)
+untold|1
+(adj)|much (similar term)
+untoothed|1
+(adj)|unnotched|smooth (similar term)
+untouchable|6
+(adj)|invulnerable (similar term)
+(adj)|unassailable|inviolable (similar term)
+(adj)|impermissible (similar term)
+(adj)|unclean (similar term)|impure (similar term)
+(adj)|inaccessible|unobtainable|unprocurable|unavailable (similar term)
+(noun)|Harijan|outcast (generic term)|castaway (generic term)|pariah (generic term)|Ishmael (generic term)
+untouched|4
+(adj)|untasted|full (similar term)
+(adj)|uninfluenced|unswayed|unaffected (similar term)
+(adj)|touched (antonym)
+(adj)|unmoved|unaffected|unaffected (related term)|unemotional (related term)|moved (antonym)
+untoughened|1
+(adj)|tender|delicate (similar term)|soft (similar term)|weak (related term)|tough (antonym)
+untoward|2
+(adj)|indecent|indecorous|unbecoming|uncomely|unseemly|improper (similar term)
+(adj)|adverse|harmful|inauspicious|unfavorable (similar term)|unfavourable (similar term)
+untraceable|1
+(adj)|traceable (antonym)
+untracked|1
+(adj)|pathless|roadless|trackless|untrod|untrodden|inaccessible (similar term)|unaccessible (similar term)
+untraditional|1
+(adj)|nontraditional|traditional (antonym)
+untrained|1
+(adj)|primitive (similar term)|naive (similar term)|undisciplined (similar term)|trained (antonym)
+untrammeled|1
+(adj)|untrammelled|unlimited (similar term)|limitless (similar term)
+untrammelled|1
+(adj)|untrammeled|unlimited (similar term)|limitless (similar term)
+untransferable|1
+(adj)|nontransferable|unassignable|inalienable (similar term)|unalienable (similar term)
+untranslatable|1
+(adj)|translatable (antonym)
+untransmutable|1
+(adj)|inconvertible|incommutable (similar term)
+untraveled|1
+(adj)|untravelled|untraversed (similar term)|traveled (antonym)
+untravelled|1
+(adj)|untraveled|untraversed (similar term)|traveled (antonym)
+untraversable|1
+(adj)|impassable (similar term)|unpassable (similar term)
+untraversed|1
+(adj)|untraveled (similar term)|untravelled (similar term)
+untreated|3
+(adj)|treated (antonym)
+(adj)|raw (similar term)|unprocessed (related term)|treated (antonym)
+(adj)|unstained (similar term)
+untried|2
+(adj)|unseasoned|untested|young|inexperienced (similar term)|inexperient (similar term)
+(adj)|untested|new (similar term)
+untrimmed|1
+(adj)|uncut|unclipped (similar term)|trimmed (antonym)
+untrod|1
+(adj)|pathless|roadless|trackless|untracked|untrodden|inaccessible (similar term)|unaccessible (similar term)
+untrodden|1
+(adj)|pathless|roadless|trackless|untracked|untrod|inaccessible (similar term)|unaccessible (similar term)
+untroubled|3
+(adj)|carefree (similar term)|unworried (similar term)|clear (similar term)|dreamless (similar term)|trouble-free (similar term)|unconcerned (similar term)|undisturbed (similar term)|unmolested (similar term)|quiet (related term)|unconcerned (related term)|troubled (antonym)
+(adj)|secure|unafraid|insecure (antonym)
+(adj)|quiet (similar term)
+untrue|4
+(adj)|false (similar term)
+(adj)|unfaithful (similar term)
+(adj)|out of true|uneven (similar term)
+(adj)|false|inconstant (similar term)
+untrustiness|1
+(noun)|untrustworthiness|trait (generic term)|trustiness (antonym)|trustworthiness (antonym)
+untrusting|1
+(adj)|leery|mistrustful|suspicious|wary|distrustful (similar term)
+untrustworthiness|1
+(noun)|untrustiness|trait (generic term)|trustiness (antonym)|trustworthiness (antonym)
+untrustworthy|1
+(adj)|untrusty|devious (similar term)|shifty (similar term)|fly-by-night (similar term)|shady (similar term)|slippery (similar term)|tricky (similar term)|dishonest (related term)|dishonorable (related term)|unfaithful (related term)|unreliable (related term)|undependable (related term)|trustworthy (antonym)
+untrusty|1
+(adj)|untrustworthy|devious (similar term)|shifty (similar term)|fly-by-night (similar term)|shady (similar term)|slippery (similar term)|tricky (similar term)|dishonest (related term)|dishonorable (related term)|unfaithful (related term)|unreliable (related term)|undependable (related term)|trustworthy (antonym)
+untruth|1
+(noun)|falsehood|falsity|statement (generic term)|truth (antonym)
+untruthful|1
+(adj)|dishonest (similar term)|lying (similar term)|mendacious (similar term)|truthful (antonym)
+untruthfully|1
+(adv)|mendaciously|truthfully (antonym)
+untruthfulness|1
+(noun)|dishonesty (generic term)|truthfulness (antonym)
+untucked|1
+(adj)|tucked (antonym)
+untufted|1
+(adj)|unadorned (similar term)|undecorated (similar term)
+untune|2
+(verb)|upset|discompose|disconcert|discomfit|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|tune (antonym)
+untuneful|1
+(adj)|tuneless|unmelodious|tuneful (antonym)
+unturned|1
+(adj)|right-side-out (similar term)|right-side-up (similar term)|turned (antonym)
+untutored|1
+(adj)|unschooled|untaught|uneducated (similar term)
+untwine|1
+(verb)|straighten (generic term)|straighten out (generic term)|twine (antonym)
+untwist|1
+(verb)|straighten (generic term)|straighten out (generic term)|twist (antonym)
+untwisted|1
+(adj)|straight (similar term)
+untying|1
+(noun)|undoing|unfastening|loosening (generic term)|laxation (generic term)
+untypical|1
+(adj)|atypical|unrepresentative (similar term)|abnormal (related term)|uncharacteristic (related term)|uncharacteristic of (related term)|typical (antonym)
+untypicality|1
+(noun)|atypicality|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)|typicality (antonym)
+untypically|1
+(adv)|atypically|typically (antonym)
+ununbium|1
+(noun)|Uub|element 112|atomic number 112|chemical element (generic term)|element (generic term)
+ununderstandably|1
+(adv)|unintelligibly|intelligibly (antonym)
+ununderstood|1
+(adj)|misunderstood (similar term)|uncomprehended (similar term)|undigested (similar term)|ungrasped (similar term)|understood (antonym)
+ununhexium|1
+(noun)|Uuh|element 116|atomic number 116|chemical element (generic term)|element (generic term)
+ununpentium|1
+(noun)|Uup|element 115|atomic number 115|chemical element (generic term)|element (generic term)
+ununquadium|1
+(noun)|Uuq|element 114|atomic number 114|chemical element (generic term)|element (generic term)
+ununtrium|1
+(noun)|Uut|element 113|atomic number 113|chemical element (generic term)|element (generic term)
+unusable|1
+(adj)|unserviceable|unuseable|useless (similar term)
+unuseable|1
+(adj)|unserviceable|unusable|useless (similar term)
+unused|4
+(adj)|fresh|clean (similar term)
+(adj)|new (similar term)
+(adj)|idle|inactive (similar term)
+(adj)|unaccustomed (similar term)
+unusefulness|1
+(noun)|inutility|uselessness|quality (generic term)|usefulness (antonym)|utility (antonym)
+unusual|3
+(adj)|different (similar term)|extraordinary (similar term)|odd (similar term)|out-of-the-way (similar term)|peculiar (similar term)|unaccustomed (similar term)|unique (similar term)|uncommon (related term)|usual (antonym)
+(adj)|strange|antic (similar term)|fantastic (similar term)|fantastical (similar term)|grotesque (similar term)|crazy (similar term)|curious (similar term)|funny (similar term)|odd (similar term)|peculiar (similar term)|queer (similar term)|rum (similar term)|rummy (similar term)|singular (similar term)|eerie (similar term)|eery (similar term)|exotic (similar term)|freaky (similar term)|gothic (similar term)|oddish (similar term)|other (similar term)|quaint (similar term)|quaint (similar term)|weird (similar term)|familiar (antonym)
+(adj)|uncommon (similar term)
+unusual person|1
+(noun)|anomaly|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unusually|1
+(adv)|remarkably|outstandingly|unco|unremarkably (antonym)
+unusualness|1
+(noun)|uncommonness (generic term)|usualness (antonym)
+unutterable|3
+(adj)|ineffable|unnameable|unspeakable|sacred (similar term)
+(adj)|indefinable|indescribable|ineffable|unspeakable|untellable|inexpressible (similar term)|unexpressible (similar term)
+(adj)|unpronounceable|uncommunicative (similar term)|incommunicative (similar term)
+unutterably|1
+(adv)|ineffably|indescribably|unspeakably
+unuttered|1
+(adj)|unexpressed|unsaid|unstated|unverbalized|unverbalised|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unvaccinated|1
+(adj)|susceptible (similar term)
+unvalued|1
+(adj)|unappreciated|unsung|unacknowledged (similar term)
+unvaned|1
+(adj)|unfledged|fledgeless|unfeathered (similar term)|featherless (similar term)
+unvanquishable|1
+(adj)|invincible|unbeatable|unconquerable (similar term)
+unvanquished|1
+(adj)|unbeaten|unconquered|undefeated (similar term)
+unvaried|1
+(adj)|unvarying|same (related term)|varied (antonym)
+unvariedness|1
+(noun)|invariability (generic term)|invariableness (generic term)|invariance (generic term)|variedness (antonym)
+unvarnished|2
+(adj)|unstained|unpainted (similar term)
+(adj)|plain|direct (similar term)
+unvarying|3
+(adj)|changeless|constant|invariant|invariable (similar term)
+(adj)|unvaried|same (related term)|varied (antonym)
+(adj)|uniform|single (similar term)|multiform (antonym)
+unveil|3
+(verb)|uncover (generic term)|expose (generic term)|veil (antonym)
+(verb)|uncover|bring out|reveal|show (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+unveiled|1
+(adj)|disclosed (similar term)|undraped (similar term)|veiled (antonym)
+unveiling|2
+(noun)|presentation (generic term)
+(noun)|introduction|debut|first appearance|launching|entry|beginning (generic term)|start (generic term)|commencement (generic term)
+unvendible|1
+(adj)|unmarketable|unmerchantable|unsalable (similar term)|unsaleable (similar term)
+unvented|1
+(adj)|unventilated (similar term)
+unventilated|1
+(adj)|airless (similar term)|close (similar term)|stuffy (similar term)|unaired (similar term)|fuggy (similar term)|unaerated (similar term)|unoxygenated (similar term)|unvented (similar term)|breathless (related term)|dyspneic (related term)|dyspnoeic (related term)|dyspneal (related term)|dyspnoeal (related term)|ventilated (antonym)
+unverbalised|1
+(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unverbalized|1
+(adj)|unexpressed|unsaid|unstated|unuttered|unverbalised|unvoiced|unspoken|implicit (similar term)|inexplicit (similar term)
+unverifiable|1
+(adj)|unobjective|subjective (similar term)
+unverified|1
+(adj)|unproved (similar term)|unproven (similar term)
+unversed|1
+(adj)|unpracticed|unpractised|inexperienced (similar term)|inexperient (similar term)
+unvindictive|1
+(adj)|forgiving (similar term)
+unvitrified|1
+(adj)|unglazed (similar term)
+unvoiced|2
+(adj)|voiceless|surd|hard|whispered (similar term)|voiced (antonym)
+(adj)|unexpressed|unsaid|unstated|unuttered|unverbalized|unverbalised|unspoken|implicit (similar term)|inexplicit (similar term)
+unvoluntary|1
+(adj)|involuntary|nonvoluntary|driven (similar term)|goaded (similar term)|forced (similar term)|unconscious (similar term)|unwilled (similar term)|unwilling (similar term)|unconscious (related term)|unwilling (related term)|voluntary (antonym)
+unvulcanised|1
+(adj)|unvulcanized|unprocessed (similar term)
+unvulcanized|1
+(adj)|unvulcanised|unprocessed (similar term)
+unwanted|2
+(adj)|abdicable (similar term)|cast-off (similar term)|discarded (similar term)|throwaway (similar term)|thrown-away (similar term)|friendless (similar term)|outcast (similar term)|outcaste (similar term)|casteless (similar term)|uncalled-for (similar term)|unclaimed (similar term)|undesired (similar term)|unsought (similar term)|unwelcome (similar term)|unwished (similar term)|unwished-for (similar term)|undesirable (related term)|unloved (related term)|unwelcome (related term)|wanted (antonym)
+(adj)|undesirable (similar term)
+unwantedly|1
+(adv)|uninvitedly
+unwarily|1
+(adv)|warily (antonym)
+unwariness|1
+(noun)|incaution (generic term)|incautiousness (generic term)|wariness (antonym)
+unwarmed|1
+(adj)|unheated|cold (similar term)
+unwarrantable|1
+(adj)|indefensible|insupportable|unjustifiable|unwarranted|inexcusable (similar term)
+unwarranted|3
+(adj)|indefensible|insupportable|unjustifiable|unwarrantable|inexcusable (similar term)
+(adj)|baseless|groundless|idle|unfounded|wild|unsupported (similar term)
+(adj)|undue|unjustified|unreasonable (similar term)
+unwary|1
+(adj)|gullible (similar term)|unguarded (similar term)|wary (antonym)
+unwashed|2
+(adj)|common|plebeian|vulgar|lowborn (similar term)
+(adj)|dirty (similar term)|soiled (similar term)|unclean (similar term)
+unwavering|2
+(adj)|firm|steadfast|steady|stiff|unbendable|unfaltering|unshakable|resolute (similar term)
+(adj)|level|steady (similar term)
+unwaveringly|1
+(adv)|firm|firmly|steadfastly
+unwaxed|1
+(adj)|waxed (antonym)
+unweaned|1
+(adj)|weaned (antonym)
+unwearable|1
+(adj)|wearable (antonym)
+unwearied|1
+(adj)|untired|unweary|rested (similar term)
+unweary|1
+(adj)|untired|unwearied|rested (similar term)
+unwearying|1
+(adj)|indefatigable|tireless|unflagging|energetic (similar term)
+unweathered|1
+(adj)|new (similar term)
+unweave|1
+(verb)|straighten (generic term)|straighten out (generic term)|weave (antonym)
+unwebbed|1
+(adj)|webbed (antonym)
+unwed|1
+(adj)|unwedded|unmarried (similar term)|single (similar term)
+unwedded|1
+(adj)|unwed|unmarried (similar term)|single (similar term)
+unwelcome|2
+(adj)|uninvited (similar term)|unwanted (related term)|welcome (antonym)
+(adj)|unwished|unwished-for|unwanted (similar term)
+unwelcome guest|1
+(noun)|gatecrasher|crasher|intruder (generic term)|interloper (generic term)|trespasser (generic term)
+unwelcome person|1
+(noun)|persona non grata|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+unwell|1
+(adj)|ailing|indisposed|peaked|poorly|sickly|under the weather|seedy|ill (similar term)|sick (similar term)
+unwellness|1
+(noun)|illness|malady|sickness|ill health (generic term)|unhealthiness (generic term)|health problem (generic term)|wellness (antonym)|wellness (antonym)
+unwholesome|1
+(adj)|insalubrious (similar term)|unhealthful (similar term)|unhealthy (similar term)|insubstantial (similar term)|jejune (similar term)|morbid (similar term)|nauseating (similar term)|nauseous (similar term)|noisome (similar term)|queasy (similar term)|loathsome (similar term)|offensive (similar term)|sickening (similar term)|vile (similar term)|rich (similar term)|harmful (related term)|noxious (related term)|harmful (related term)|unhealthful (related term)|unhealthy (related term)|unsound (related term)|wholesome (antonym)
+unwholesomeness|1
+(noun)|morbidness|morbidity|quality (generic term)|wholesomeness (antonym)
+unwieldiness|2
+(noun)|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+(noun)|awkwardness|cumbersomeness|troublesomeness (generic term)|inconvenience (generic term)|worriment (generic term)
+unwieldy|3
+(adj)|unmanageable|awkward (similar term)|bunglesome (similar term)|clumsy (similar term)|ungainly (similar term)|cumbersome (similar term)|cumbrous (similar term)|wieldy (antonym)
+(adj)|impractical (similar term)
+(adj)|gawky|clumsy|clunky|ungainly|awkward (similar term)
+unwilled|2
+(adj)|unintentional|unwilling (similar term)
+(adj)|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+unwilling|2
+(adj)|grudging (similar term)|loath (similar term)|loth (similar term)|reluctant (similar term)|unintentional (similar term)|unwilled (similar term)|defiant (related term)|noncompliant (related term)|disinclined (related term)|involuntary (related term)|nonvoluntary (related term)|unvoluntary (related term)|willing (antonym)
+(adj)|involuntary (similar term)|nonvoluntary (similar term)|unvoluntary (similar term)
+unwillingly|1
+(adv)|willingly (antonym)
+unwillingness|1
+(noun)|involuntariness|disposition (generic term)|temperament (generic term)|willingness (antonym)
+unwind|4
+(verb)|wind off|unroll|move (generic term)|displace (generic term)|wind (antonym)
+(verb)|disentangle|undo (generic term)
+(verb)|relax|loosen up|unbend|decompress|slow down|change state (generic term)|turn (generic term)|tense (antonym)
+(verb)|relax|unstrain|unlax|loosen up|make relaxed|affect (generic term)|strain (antonym)|tense (antonym)
+unwinding|1
+(adj)|unreeling|moving (similar term)
+unwire|1
+(verb)|undo (generic term)|wire (antonym)
+unwise|2
+(adj)|foolish (similar term)
+(adj)|inexpedient|impolitic (similar term)
+unwisely|1
+(adv)|foolishly|wisely (antonym)
+unwiseness|1
+(noun)|folly|foolishness|trait (generic term)|wisdom (antonym)
+unwished|1
+(adj)|unwelcome|unwished-for|unwanted (similar term)
+unwished-for|1
+(adj)|unwelcome|unwished|unwanted (similar term)
+unwitting|3
+(adj)|unintentional|unplanned|unintended (similar term)
+(adj)|unaware|witting (antonym)
+(adj)|ignorant|unknowledgeable|unknowing|uninformed (similar term)
+unwittingly|1
+(adv)|inadvertently|unknowingly|advertently (antonym)|wittingly (antonym)|knowingly (antonym)
+unwomanly|1
+(adj)|hoydenish (similar term)|tomboyish (similar term)|mannish (similar term)|unfeminine (similar term)|womanly (antonym)
+unwonted|1
+(adj)|uncommon (similar term)
+unwooded|1
+(adj)|treeless|unforested (similar term)|untimbered (similar term)|cleared (related term)|wooded (antonym)
+unworkable|1
+(adj)|impracticable|infeasible|unfeasible|impossible (similar term)
+unworkmanlike|1
+(adj)|incompetent (similar term)
+unworldly|2
+(adj)|anchoritic (similar term)|eremitic (similar term)|eremitical (similar term)|hermitic (similar term)|hermitical (similar term)|cloistered (similar term)|cloistral (similar term)|conventual (similar term)|monastic (similar term)|monastical (similar term)|spiritual (similar term)|unearthly (similar term)|unmercenary (similar term)|naive (related term)|naif (related term)|pious (related term)|worldly (antonym)
+(adj)|unsophisticated|naive (similar term)|naif (similar term)
+unworried|1
+(adj)|carefree|untroubled (similar term)
+unworthiness|2
+(noun)|bad (generic term)|badness (generic term)|worthiness (antonym)
+(noun)|inappropriateness|unsuitability (generic term)|unsuitableness (generic term)|ineptness (generic term)|appropriateness (antonym)
+unworthy|2
+(adj)|undeserving (similar term)|undeserving of (similar term)|unworthy of (similar term)|unmerited (similar term)|unmeritorious (similar term)|contemptible (related term)|dishonorable (related term)|dishonourable (related term)|unrighteous (related term)|worthless (related term)|worthy (antonym)
+(adj)|despicable|ugly|vile|slimy|worthless|wretched|evil (similar term)
+unworthy of|1
+(adj)|undeserving|undeserving of|unworthy (similar term)
+unwounded|1
+(adj)|uninjured (similar term)
+unwoven|1
+(adj)|felted (similar term)|knitted (similar term)|woven (antonym)
+unwrap|2
+(verb)|undo|uncover (generic term)|expose (generic term)|wrap (antonym)
+(verb)|disclose|let on|bring out|reveal|discover|expose|divulge|impart|break|give away|let out|tell (generic term)
+unwrapped|1
+(adj)|wrapped (antonym)
+unwrinkled|2
+(adj)|wrinkleless|wrinkled (antonym)
+(adj)|unfurrowed|furrowed (antonym)
+unwritten|3
+(adj)|common-law (similar term)|written (antonym)
+(adj)|oral|spoken (similar term)
+(adj)|ad-lib|spontaneous|unscripted (similar term)
+unwritten law|1
+(noun)|practice (generic term)|pattern (generic term)
+unyielding|2
+(adj)|dogged|dour|pertinacious|tenacious|stubborn (similar term)|obstinate (similar term)|unregenerate (similar term)
+(adj)|hard (similar term)
+unyieldingness|1
+(noun)|adamance|obduracy|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+unyoke|1
+(verb)|unhitch (generic term)|yoke (antonym)
+unzip|1
+(verb)|unfasten (generic term)|zip up (antonym)
+up|12
+(adj)|ahead (similar term)|in the lead (similar term)|leading (similar term)|aweigh (similar term)|dormie (similar term)|dormy (similar term)|heavenward (similar term)|skyward (similar term)|risen (similar term)|sprouted (similar term)|upbound (similar term)|upfield (similar term)|upward (similar term)|ascending (related term)|high (related term)|down (antonym)
+(adj)|improving|rising (similar term)
+(adj)|upward|ascending (similar term)
+(adj)|prepared (similar term)
+(adj)|raised (similar term)
+(adj)|functioning (similar term)
+(adj)|finished (similar term)
+(adj)|astir|awake (similar term)
+(verb)|increase (generic term)
+(adv)|upwards|upward|upwardly|downwardly (antonym)|downward (antonym)|downwards (antonym)|down (antonym)
+(adv)|down (antonym)
+(adv)|upwards|upward
+up-and-coming|1
+(adj)|energetic|gumptious|industrious|enterprising (similar term)
+up-bow|1
+(noun)|bow (generic term)
+up-tick|1
+(noun)|increase (generic term)|increment (generic term)
+up-to-date|2
+(adj)|current (similar term)
+(adj)|cutting-edge|with-it|fashionable (similar term)|stylish (similar term)
+up-to-dateness|1
+(noun)|currentness|currency|presentness (generic term)|nowness (generic term)
+up-to-the-minute|1
+(adj)|latest|current (similar term)
+up here|1
+(adv)|over here
+up in the air|1
+(adj)|uncertain (similar term)
+up on|1
+(adj)|abreast|au courant|au fait|informed (similar term)
+up quark|1
+(noun)|quark (generic term)
+up the stairs|1
+(adv)|upstairs|on a higher floor|downstairs (antonym)
+up to|2
+(adj)|busy (similar term)
+(adj)|adequate to|capable|equal to|adequate (similar term)
+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 (similar term)
+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 (similar term)
+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 (similar term)
+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 (similar term)
+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 (similar term)
+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 (similar term)
+upanishad|1
+(noun)|Upanishad|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+upbeat|3
+(adj)|cheerful|pollyannaish|optimistic (similar term)
+(noun)|wellbeing|well-being|welfare|eudaemonia|eudaimonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+(noun)|offbeat|rhythm (generic term)|beat (generic term)|musical rhythm (generic term)
+upbound|1
+(adj)|up (similar term)
+upbraid|1
+(verb)|reproach|accuse (generic term)|impeach (generic term)|incriminate (generic term)|criminate (generic term)
+upbraider|1
+(noun)|reprover|reproacher|rebuker|authority (generic term)
+upbraiding|1
+(noun)|castigation|earful|bawling out|chewing out|going-over|dressing down|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+upbringing|2
+(noun)|inheritance (generic term)|heritage (generic term)
+(noun)|breeding|bringing up|fostering|fosterage|nurture|raising|rearing|socialization (generic term)|socialisation (generic term)|acculturation (generic term)|enculturation (generic term)
+upcast|1
+(noun)|air passage (generic term)|air duct (generic term)|airway (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+upcoming|1
+(adj)|approaching|coming|forthcoming|future (similar term)
+upcountry|1
+(adj)|interior|midland|inland (similar term)
+upcurved|1
+(adj)|curved (similar term)|curving (similar term)
+update|3
+(noun)|news (generic term)|intelligence (generic term)|tidings (generic term)|word (generic term)
+(verb)|inform (generic term)
+(verb)|modify (generic term)
+updating|1
+(noun)|change (generic term)
+updike|1
+(noun)|Updike|John Updike|John Hoyer Updike|writer (generic term)|author (generic term)
+updraft|1
+(noun)|draft (generic term)|draught (generic term)
+upend|2
+(verb)|overturn (generic term)|turn over (generic term)|tip over (generic term)|tump over (generic term)
+(verb)|put (generic term)|set (generic term)|place (generic term)|pose (generic term)|position (generic term)|lay (generic term)
+upended|1
+(adj)|vertical (similar term)|perpendicular (similar term)
+upending|1
+(noun)|inversion|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+upfield|1
+(adj)|up (similar term)
+upfront|1
+(adj)|direct (similar term)
+upgrade|10
+(noun)|ascent|acclivity|rise|raise|climb|slope (generic term)|incline (generic term)|side (generic term)|descent (antonym)
+(noun)|software (generic term)|software program (generic term)|computer software (generic term)|software system (generic term)|software package (generic term)|package (generic term)
+(noun)|reservation (generic term)
+(noun)|rise|rising slope|grade (generic term)
+(noun)|hardware (generic term)|computer hardware (generic term)
+(noun)|improvement (generic term)
+(verb)|rate (generic term)|rank (generic term)|range (generic term)|order (generic term)|grade (generic term)|place (generic term)|downgrade (antonym)
+(verb)|promote|advance|kick upstairs|raise|elevate|delegate (generic term)|designate (generic term)|depute (generic term)|assign (generic term)|demote (antonym)
+(verb)|better (generic term)|improve (generic term)|ameliorate (generic term)|meliorate (generic term)
+(verb)|better (generic term)|improve (generic term)|amend (generic term)|ameliorate (generic term)|meliorate (generic term)
+upheaval|4
+(noun)|turbulence|Sturm und Drang|disorder (generic term)
+(noun)|convulsion|turmoil|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|uplift|upthrow|upthrust|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|agitation|excitement|turmoil|hullabaloo|disturbance (generic term)
+upheave|1
+(verb)|heave (generic term)|heave up (generic term)|heft (generic term)|heft up (generic term)
+uphill|2
+(adj)|acclivitous|rising|ascending (similar term)
+(noun)|ascent (generic term)|acclivity (generic term)|rise (generic term)|raise (generic term)|climb (generic term)|upgrade (generic term)
+uphold|3
+(verb)|continue|carry on|bear on|preserve|keep (generic term)|maintain (generic term)|hold (generic term)|discontinue (antonym)
+(verb)|defend (generic term)|support (generic term)|fend for (generic term)
+(verb)|maintain|confirm (generic term)|reassert (generic term)
+upholder|1
+(noun)|maintainer|sustainer|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+upholster|1
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+upholsterer|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+upholstery|2
+(noun)|covering (generic term)
+(noun)|trade (generic term)|craft (generic term)
+upholstery material|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+upholstery needle|1
+(noun)|sewing needle (generic term)
+upjohn|1
+(noun)|Upjohn|Richard Upjohn|architect (generic term)|designer (generic term)
+upkeep|2
+(noun)|care|maintenance|repair (generic term)|fix (generic term)|fixing (generic term)|fixture (generic term)|mend (generic term)|mending (generic term)|reparation (generic term)
+(noun)|sustenance|sustentation|sustainment|maintenance|support (generic term)
+upland|2
+(adj)|highland|alpestrine (similar term)|subalpine (similar term)|alpine (similar term)|mountainous (similar term)|lowland (antonym)
+(noun)|highland|natural elevation (generic term)|elevation (generic term)|lowland (antonym)
+upland cotton|1
+(noun)|Gossypium hirsutum|cotton (generic term)|cotton plant (generic term)
+upland plover|1
+(noun)|upland sandpiper|Bartramian sandpiper|Bartramia longicauda|sandpiper (generic term)
+upland sandpiper|1
+(noun)|upland plover|Bartramian sandpiper|Bartramia longicauda|sandpiper (generic term)
+upland white aster|1
+(noun)|Aster ptarmicoides|aster (generic term)
+uplift|5
+(noun)|upheaval|upthrow|upthrust|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|brassiere (generic term)|bra (generic term)|bandeau (generic term)
+(verb)|elate|lift up|pick up|intoxicate|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)|depress (antonym)
+(verb)|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+(verb)|push up (generic term)
+uplifted|1
+(adj)|elated (similar term)
+uplifting|1
+(noun)|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+uplink|1
+(noun)|transmission (generic term)
+upload|1
+(verb)|transfer (generic term)|download (antonym)
+upmarket|1
+(adj)|upscale (similar term)|downmarket (antonym)
+upmost|1
+(adj)|topmost|uppermost|top (similar term)
+upon one's guard|1
+(adj)|on guard|on one's guard|on your guard|wary (similar term)
+upper|6
+(adj)|high (similar term)
+(adj)|top (similar term)
+(adj)|superior (similar term)
+(noun)|upper berth|berth (generic term)|bunk (generic term)|built in bed (generic term)
+(noun)|piece of leather (generic term)
+(noun)|amphetamine|pep pill|speed|stimulant (generic term)|stimulant drug (generic term)|excitant (generic term)|drug of abuse (generic term)|street drug (generic term)
+upper-case letter|1
+(noun)|capital|capital letter|uppercase|majuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|lowercase (antonym)
+upper-class|1
+(adj)|quality (similar term)|propertied (similar term)|property-owning (similar term)|u (similar term)|tweedy (similar term)|wellborn (similar term)|lower-class (antonym)|middle-class (antonym)
+upper-level|1
+(adj)|high-level|high-ranking|superior (similar term)
+upper-lower-class|1
+(adj)|lower-class (similar term)|low-class (similar term)
+upper-middle-class|1
+(adj)|middle-class (similar term)
+upper-normandy|1
+(noun)|Haute-Normandie|Upper-Normandy|French region (generic term)
+upper avon|1
+(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river (generic term)
+upper avon river|1
+(noun)|Avon|River Avon|Upper Avon|Upper Avon River|river (generic term)
+upper balcony|1
+(noun)|second balcony|family circle|peanut gallery|area (generic term)
+upper berth|1
+(noun)|upper|berth (generic term)|bunk (generic term)|built in bed (generic term)
+upper bound|1
+(noun)|boundary (generic term)|edge (generic term)|bound (generic term)
+upper cannon|1
+(noun)|rerebrace|cannon (generic term)
+upper carboniferous|1
+(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period (generic term)|geological period (generic term)
+upper carboniferous period|1
+(noun)|Pennsylvanian|Pennsylvanian period|Upper Carboniferous|Upper Carboniferous period|period (generic term)|geological period (generic term)
+upper class|1
+(noun)|upper crust|class (generic term)|social class (generic term)|socio-economic class (generic term)
+upper crust|1
+(noun)|upper class|class (generic term)|social class (generic term)|socio-economic class (generic term)
+upper deck|1
+(noun)|deck (generic term)
+upper egypt|1
+(noun)|Upper Egypt|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+upper hand|1
+(noun)|whip hand|superiority (generic term)|favorable position (generic term)|favourable position (generic term)
+upper jaw|1
+(noun)|upper jawbone|maxilla|maxillary|jaw (generic term)
+upper jawbone|1
+(noun)|upper jaw|maxilla|maxillary|jaw (generic term)
+upper limit|2
+(noun)|maximum|extremum (generic term)|peak (generic term)|large indefinite quantity (generic term)|large indefinite amount (generic term)|minimum (antonym)
+(noun)|limit (generic term)|demarcation (generic term)|demarcation line (generic term)
+upper mantle|1
+(noun)|layer (generic term)
+upper paleolithic|1
+(noun)|Upper Paleolithic|time period (generic term)|period of time (generic term)|period (generic term)
+upper peninsula|1
+(noun)|Upper Peninsula|peninsula (generic term)
+upper respiratory infection|1
+(noun)|respiratory tract infection (generic term)|respiratory infection (generic term)
+upper respiratory tract|1
+(noun)|respiratory tract (generic term)|airway (generic term)
+upper side|1
+(noun)|top|top side|upside|side (generic term)|face (generic term)
+upper surface|1
+(noun)|side (generic term)
+upper tunguska|1
+(noun)|Angara|Angara River|Tunguska|Upper Tunguska|river (generic term)
+upper volta|1
+(noun)|Burkina Faso|Upper Volta|country (generic term)|state (generic term)|land (generic term)
+uppercase|2
+(adj)|capital (similar term)|great (similar term)|majuscule (similar term)|majuscule (related term)|lowercase (antonym)
+(noun)|capital|capital letter|upper-case letter|majuscule|character (generic term)|grapheme (generic term)|graphic symbol (generic term)|lowercase (antonym)
+uppercut|1
+(noun)|blow (generic term)
+uppermost|1
+(adj)|topmost|upmost|top (similar term)
+uppish|1
+(adj)|bigheaded|persnickety|snooty|snot-nosed|snotty|stuck-up|too big for one's breeches|proud (similar term)
+uppishly|1
+(adv)|snobbishly|snootily
+uppishness|1
+(noun)|uppityness|presumption (generic term)|presumptuousness (generic term)|effrontery (generic term)|assumption (generic term)
+uppity|1
+(adj)|overweening|immodest (similar term)
+uppityness|1
+(noun)|uppishness|presumption (generic term)|presumptuousness (generic term)|effrontery (generic term)|assumption (generic term)
+uppp|1
+(noun)|palatopharyngoplasty|PPP|uvulopalatopharyngoplasty|UPPP|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+uppsala|1
+(noun)|Uppsala|Upsala|city (generic term)|metropolis (generic term)|urban center (generic term)
+upraise|1
+(verb)|resurrect|raise|resuscitate (generic term)|revive (generic term)
+upraised|1
+(adj)|lifted|raised (similar term)
+upright|5
+(adj)|unsloped|vertical (similar term)|perpendicular (similar term)
+(adj)|good|just|righteous (similar term)
+(adj)|erect|vertical|erectile (similar term)|fastigiate (similar term)|orthostatic (similar term)|passant (similar term)|rampant (similar term)|rearing (similar term)|semi-climbing (similar term)|semi-erect (similar term)|semi-upright (similar term)|standing (similar term)|stand-up (similar term)|statant (similar term)|straight-backed (similar term)|straight (similar term)|unbent (similar term)|unbowed (similar term)|unerect (antonym)
+(noun)|vertical|structural member (generic term)
+(noun)|upright piano|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+upright piano|1
+(noun)|upright|piano (generic term)|pianoforte (generic term)|forte-piano (generic term)
+uprightly|1
+(adv)|honorably|dishonorably (antonym)
+uprightness|3
+(noun)|erectness|stance (generic term)
+(noun)|verticality|verticalness|erectness|position (generic term)|spatial relation (generic term)
+(noun)|rectitude|righteousness (generic term)
+uprise|8
+(verb)|originate|arise|rise|develop|spring up|grow|become (generic term)
+(verb)|ascend (generic term)|go up (generic term)
+(verb)|bristle|stand up
+(verb)|arise|rise|get up|stand up|change posture (generic term)|sit down (antonym)|lie down (antonym)
+(verb)|rise|come up|ascend|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)|set (antonym)
+(verb)|rise|lift|arise|move up|go up|come up|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|rise up (related term)|fall (antonym)
+(verb)|resurrect|rise|return (generic term)|go back (generic term)|get back (generic term)|come back (generic term)
+(verb)|get up|turn out|arise|rise|turn in (antonym)|go to bed (antonym)
+uprising|1
+(noun)|rebellion|insurrection|revolt|rising|conflict (generic term)|struggle (generic term)|battle (generic term)
+upriver|1
+(adv)|upstream|downstream (antonym)|downriver (antonym)
+uproar|2
+(noun)|tumult|tumultuousness|garboil|disturbance (generic term)|disruption (generic term)|commotion (generic term)|flutter (generic term)|hurly burly (generic term)|to-do (generic term)|hoo-ha (generic term)|hoo-hah (generic term)|kerfuffle (generic term)
+(noun)|hubbub|brouhaha|katzenjammer|noise (generic term)
+uproarious|2
+(adj)|rackety|rip-roaring|noisy (similar term)
+(adj)|hilarious|screaming|humorous (similar term)|humourous (similar term)
+uproariously|1
+(adv)|hilariously
+uproot|3
+(verb)|displace|deracinate|place (generic term)
+(verb)|eradicate|extirpate|root out|exterminate|destroy (generic term)|destruct (generic term)
+(verb)|extirpate|deracinate|root out|move (generic term)|displace (generic term)
+uprooter|1
+(noun)|destroyer|ruiner|undoer|waster|bad person (generic term)
+upsala|1
+(noun)|Uppsala|Upsala|city (generic term)|metropolis (generic term)|urban center (generic term)
+upscale|1
+(adj)|upmarket (similar term)
+upset|17
+(adj)|disquieted|distressed|disturbed|worried|troubled (similar term)
+(adj)|broken|confused|disordered|disorganized (similar term)|disorganised (similar term)
+(adj)|unexpected (similar term)
+(adj)|ill (similar term)|sick (similar term)
+(adj)|overturned|upturned|turned (similar term)
+(noun)|disturbance|perturbation|agitation (generic term)
+(noun)|derangement|overthrow|disturbance (generic term)
+(noun)|disorder|condition (generic term)|status (generic term)
+(noun)|swage|tool (generic term)
+(noun)|overturn|turnover|inversion (generic term)|upending (generic term)
+(noun)|overturn|success (generic term)
+(verb)|touch (generic term)|disturb (generic term)
+(verb)|discompose|untune|disconcert|discomfit|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|disturb|trouble|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|overturn|tip over|turn over|knock over|bowl over|tump over|move (generic term)|displace (generic term)
+(verb)|swage|shape (generic term)|form (generic term)|work (generic term)|mold (generic term)|mould (generic term)|forge (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+upset price|1
+(noun)|asking price (generic term)|selling price (generic term)
+upset stomach|1
+(noun)|indigestion|dyspepsia|stomach upset|symptom (generic term)
+upsetter|1
+(noun)|winner (generic term)|victor (generic term)
+upsetting|1
+(adj)|disconcerting|displeasing (similar term)
+upshot|1
+(noun)|consequence|effect|outcome|result|event|issue|phenomenon (generic term)
+upside|1
+(noun)|top|top side|upper side|side (generic term)|face (generic term)
+upside-down|1
+(adj)|inverted|turned (similar term)
+upside-down cake|1
+(noun)|skillet cake|cake (generic term)
+upsilon|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+upstage|7
+(adj)|downstage (antonym)
+(adj)|aloof|distant|reserved (similar term)
+(noun)|part (generic term)|portion (generic term)
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|outshine (generic term)
+(adv)|downstage (antonym)
+upstager|1
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+upstair|1
+(adj)|upstairs|downstairs (antonym)
+upstairs|4
+(adj)|upstair|downstairs (antonym)
+(noun)|part (generic term)|portion (generic term)
+(adv)|up the stairs|on a higher floor|downstairs (antonym)
+(adv)|in the head|in the mind
+upstanding|1
+(adj)|worthy|solid|good (similar term)
+upstart|4
+(adj)|nouveau-riche|parvenu|parvenue|pretentious (similar term)
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|parvenu|nouveau-riche|arriviste|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|kip|gymnastic exercise (generic term)
+upstream|2
+(adj)|downstream (antonym)
+(adv)|upriver|downstream (antonym)|downriver (antonym)
+upstroke|1
+(noun)|stroke (generic term)
+upsurge|2
+(noun)|rush|spate|surge|flow (generic term)|flowing (generic term)
+(noun)|surge|increase (generic term)|step-up (generic term)
+uptake|2
+(noun)|consumption|ingestion|intake|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|human process (generic term)
+upthrow|1
+(noun)|upheaval|uplift|upthrust|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+upthrust|1
+(noun)|upheaval|uplift|upthrow|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+uptick|1
+(noun)|transaction (generic term)|dealing (generic term)|dealings (generic term)|downtick (antonym)
+uptight|1
+(adj)|edgy|high-strung|highly strung|in suspense|jittery|jumpy|nervy|overstrung|restive|tense (similar term)
+uptime|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|downtime (antonym)
+upton beall sinclair|1
+(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer (generic term)|author (generic term)
+upton sinclair|1
+(noun)|Sinclair|Upton Sinclair|Upton Beall Sinclair|writer (generic term)|author (generic term)
+uptown|3
+(adj)|downtown (antonym)
+(noun)|residential district (generic term)|residential area (generic term)|community (generic term)
+(adv)|downtown (antonym)
+upturn|1
+(noun)|improvement (generic term)
+upturned|2
+(adj)|overturned|upset|turned (similar term)
+(adj)|retrousse|tip-tilted|shapely (similar term)
+upupa|1
+(noun)|Upupa|genus Upupa|bird genus (generic term)
+upupa epops|1
+(noun)|Euopean hoopoe|Upupa epops|hoopoe (generic term)|hoopoo (generic term)
+upupidae|1
+(noun)|Upupidae|family Upupidae|bird family (generic term)
+upward|4
+(adj)|up (similar term)
+(adj)|up|ascending (similar term)
+(adv)|up|upwards|upwardly|downwardly (antonym)|downward (antonym)|downwards (antonym)|down (antonym)
+(adv)|up|upwards
+upwardly|1
+(adv)|up|upwards|upward|downwardly (antonym)|downward (antonym)|downwards (antonym)|down (antonym)
+upwards|2
+(adv)|up|upward|upwardly|downwardly (antonym)|downward (antonym)|downwards (antonym)|down (antonym)
+(adv)|up|upward
+upwind|3
+(adj)|weather|windward (similar term)
+(adv)|leeward|downwind (antonym)|windward (antonym)
+(adv)|against the wind|into the wind|downwind (antonym)
+ur|1
+(noun)|Ur|city (generic term)|metropolis (generic term)|urban center (generic term)
+uracil|1
+(noun)|U|nucleotide (generic term)
+uraemia|1
+(noun)|uremia|azotemia|azotaemia|pathology (generic term)
+uraemic|1
+(adj)|azotemic|uremic|pathology (related term)
+ural-altaic|1
+(noun)|Ural-Altaic|natural language (generic term)|tongue (generic term)
+ural mountains|1
+(noun)|Urals|Ural Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+uralic|1
+(noun)|Uralic|Uralic language|Ural-Altaic (generic term)
+uralic language|1
+(noun)|Uralic|Uralic language|Ural-Altaic (generic term)
+urals|1
+(noun)|Urals|Ural Mountains|range (generic term)|mountain range (generic term)|range of mountains (generic term)|chain (generic term)|mountain chain (generic term)|chain of mountains (generic term)
+uranalysis|1
+(noun)|urinalysis|chemical analysis (generic term)|qualitative analysis (generic term)|diagnosis (generic term)|diagnosing (generic term)
+urania|2
+(noun)|Urania|Muse (generic term)
+(noun)|Venus|Urania|Roman deity (generic term)
+uraninite|1
+(noun)|pitchblende|uranium ore (generic term)
+uranium|1
+(noun)|U|atomic number 92|metallic element (generic term)|metal (generic term)
+uranium 235|1
+(noun)|uranium (generic term)|U (generic term)|atomic number 92 (generic term)
+uranium 238|1
+(noun)|uranium (generic term)|U (generic term)|atomic number 92 (generic term)
+uranium ore|1
+(noun)|ore (generic term)
+uranologist|1
+(noun)|astronomer|stargazer|physicist (generic term)
+uranology|1
+(noun)|astronomy|physics (generic term)|physical science (generic term)|natural philosophy (generic term)
+uranoplasty|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+uranoscopidae|1
+(noun)|Uranoscopidae|family Uranoscopidae|fish family (generic term)
+uranus|2
+(noun)|Ouranos|Uranus|Greek deity (generic term)
+(noun)|Uranus|Jovian planet (generic term)|gas giant (generic term)|superior planet (generic term)|outer planet (generic term)
+uranyl|1
+(noun)|uranyl group|uranyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+uranyl group|1
+(noun)|uranyl|uranyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+uranyl nitrate|1
+(noun)|nitrate (generic term)
+uranyl oxalate|1
+(noun)|oxalate (generic term)
+uranyl radical|1
+(noun)|uranyl|uranyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+urarthritis|1
+(noun)|gout|gouty arthritis|arthritis (generic term)
+urate|1
+(noun)|salt (generic term)
+uratemia|1
+(noun)|blood disease (generic term)|blood disorder (generic term)|symptom (generic term)
+uraturia|1
+(noun)|symptom (generic term)
+urban|2
+(adj)|municipality (related term)
+(adj)|citified (similar term)|cityfied (similar term)|city-bred (similar term)|city-born (similar term)|city-like (similar term)|urbanized (similar term)|urbanised (similar term)|rural (antonym)
+urban area|1
+(noun)|populated area|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)|rural area (antonym)
+urban center|1
+(noun)|city|metropolis|municipality (generic term)
+urban guerrilla|1
+(noun)|guerrilla (generic term)|guerilla (generic term)|irregular (generic term)|insurgent (generic term)
+urban ii|1
+(noun)|Urban II|Odo|Odo of Lagery|Otho|Otho of Lagery|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+urban legend|1
+(noun)|report (generic term)|news report (generic term)|story (generic term)|account (generic term)|write up (generic term)
+urban planning|2
+(noun)|architecture (generic term)
+(noun)|city planning|town planning|planning (generic term)
+urban renewal|1
+(noun)|reclamation (generic term)|renewal (generic term)|rehabilitation (generic term)
+urban sprawl|1
+(noun)|conurbation|sprawl|urban area (generic term)|populated area (generic term)
+urban typhus|1
+(noun)|murine typhus|rat typhus|endemic typhus|typhus (generic term)|typhus fever (generic term)
+urban v|1
+(noun)|Urban V|Guillaume de Grimoard|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+urban vi|1
+(noun)|Urban VI|Bartolomeo Prignano|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+urban viii|1
+(noun)|Urban VIII|Maffeo Barberini|pope (generic term)|Catholic Pope (generic term)|Roman Catholic Pope (generic term)|pontiff (generic term)|Holy Father (generic term)|Vicar of Christ (generic term)|Bishop of Rome (generic term)
+urbana|1
+(noun)|Urbana|town (generic term)
+urbane|1
+(adj)|polished|refined|svelte|sophisticated (similar term)
+urbanisation|2
+(noun)|urbanization|condition (generic term)|status (generic term)
+(noun)|urbanization|social process (generic term)
+urbanise|1
+(verb)|urbanize|change (generic term)|alter (generic term)|modify (generic term)
+urbanised|1
+(adj)|urbanized|urban (similar term)
+urbanity|2
+(noun)|courtesy (generic term)|good manners (generic term)
+(noun)|quality (generic term)|rusticity (antonym)
+urbanization|2
+(noun)|urbanisation|condition (generic term)|status (generic term)
+(noun)|urbanisation|social process (generic term)
+urbanize|1
+(verb)|urbanise|change (generic term)|alter (generic term)|modify (generic term)
+urbanized|1
+(adj)|urbanised|urban (similar term)
+urceolate|1
+(adj)|vessel (related term)
+urceole|1
+(noun)|vessel (generic term)
+urchin|1
+(noun)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+urd|1
+(noun)|Urd|Urth|Norn (generic term)
+urdu|2
+(adj)|Urdu|Sanskrit|Sanskritic language (related term)
+(noun)|Urdu|Sanskrit (generic term)|Sanskritic language (generic term)
+urea|1
+(noun)|carbamide|organic compound (generic term)
+urea-formaldehyde resin|1
+(noun)|synthetic resin (generic term)
+urease|1
+(noun)|enzyme (generic term)
+uredinales|1
+(noun)|Uredinales|order Uredinales|fungus order (generic term)
+uremia|1
+(noun)|uraemia|azotemia|azotaemia|pathology (generic term)
+uremic|1
+(adj)|azotemic|uraemic|pathology (related term)
+ureter|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+ureteritis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+ureterocele|1
+(noun)|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+ureterorenal reflux|1
+(noun)|reflux (generic term)
+ureterostenosis|1
+(noun)|stenosis (generic term)|stricture (generic term)
+urethane|1
+(noun)|ester (generic term)
+urethra|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+urethral|1
+(adj)|duct|epithelial duct|canal|channel (related term)
+urethral orifice|1
+(noun)|external orifice|orifice (generic term)|opening (generic term)|porta (generic term)
+urethral sphincter|1
+(noun)|musculus sphincter urethrae|sphincter (generic term)|anatomical sphincter (generic term)|sphincter muscle (generic term)
+urethritis|1
+(noun)|urinary tract infection (generic term)
+urethrocele|1
+(noun)|prolapse (generic term)|prolapsus (generic term)|descensus (generic term)
+urex|1
+(noun)|methenamine|Mandelamine|Urex|antibacterial (generic term)|antibacterial drug (generic term)|bactericide (generic term)
+urey|1
+(noun)|Urey|Harold Urey|Harold Clayton Urey|chemist (generic term)
+urga|1
+(noun)|Ulan Bator|Ulaanbaatar|Urga|Kulun|capital of Mongolia|national capital (generic term)
+urge|5
+(noun)|impulse|motivation (generic term)|motive (generic term)|need (generic term)
+(noun)|itch|desire (generic term)
+(verb)|urge on|press|exhort|rede (generic term)|advise (generic term)|counsel (generic term)
+(verb)|recommend|advocate|propose (generic term)|suggest (generic term)|advise (generic term)
+(verb)|cheer|inspire|barrack|urge on|exhort|pep up|encourage (generic term)
+urge incontinence|1
+(noun)|enuresis (generic term)|urinary incontinence (generic term)
+urge on|2
+(verb)|cheer|inspire|urge|barrack|exhort|pep up|encourage (generic term)
+(verb)|urge|press|exhort|rede (generic term)|advise (generic term)|counsel (generic term)
+urgency|4
+(noun)|necessity (generic term)
+(noun)|importance (generic term)
+(noun)|situation (generic term)
+(noun)|importunity|urging|solicitation (generic term)
+urgent|1
+(adj)|pressing|imperative (similar term)
+urgently|1
+(adv)|desperately
+urginea|1
+(noun)|Urginea|genus Urginea|liliid monocot genus (generic term)
+urginea maritima|1
+(noun)|sea squill|sea onion|squill|Urginea maritima|liliaceous plant (generic term)
+urging|3
+(noun)|goad|goading|prod|prodding|spur|spurring|encouragement (generic term)
+(noun)|advocacy (generic term)|protagonism (generic term)
+(noun)|importunity|urgency|solicitation (generic term)
+uria|1
+(noun)|Uria|genus Uria|bird genus (generic term)
+uria aalge|1
+(noun)|common murre|Uria aalge|murre (generic term)
+uria lomvia|1
+(noun)|thick-billed murre|Uria lomvia|murre (generic term)
+uriah|1
+(noun)|Uriah|soldier (generic term)
+urial|1
+(noun)|Ovis vignei|wild sheep (generic term)
+uric|1
+(adj)|body waste|excretion|excreta|excrement|excretory product (related term)
+uric acid|1
+(noun)|acid (generic term)
+uricaciduria|1
+(noun)|blood disease (generic term)|blood disorder (generic term)|symptom (generic term)
+uricosuric|1
+(adj)|body waste|excretion|excreta|excrement|excretory product (related term)
+urim and thummim|1
+(noun)|Urim and Thummim|answer (generic term)
+urinal|1
+(noun)|plumbing fixture (generic term)
+urinalysis|1
+(noun)|uranalysis|chemical analysis (generic term)|qualitative analysis (generic term)|diagnosis (generic term)|diagnosing (generic term)
+urinary|2
+(adj)|body waste|excretion|excreta|excrement|excretory product (related term)
+(adj)|system (related term)
+urinary apparatus|1
+(noun)|urogenital system|urogenital apparatus|urinary system|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system (generic term)
+urinary bladder|1
+(noun)|bladder (generic term)|vesica (generic term)
+urinary calculus|1
+(noun)|kidney stone|nephrolith|renal calculus|calculus (generic term)|concretion (generic term)
+urinary hesitancy|1
+(noun)|difficulty (generic term)
+urinary incontinence|1
+(noun)|enuresis|incontinence (generic term)|incontinency (generic term)
+urinary organ|1
+(noun)|excretory organ|internal organ (generic term)|viscus (generic term)
+urinary retention|1
+(noun)|retentiveness (generic term)|retentivity (generic term)|retention (generic term)
+urinary system|1
+(noun)|urogenital system|urogenital apparatus|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system (generic term)
+urinary tract|1
+(noun)|tract (generic term)
+urinary tract infection|1
+(noun)|inflammatory disease (generic term)
+urinate|2
+(verb)|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+urination|1
+(noun)|micturition|elimination (generic term)|evacuation (generic term)|excretion (generic term)|excreting (generic term)|voiding (generic term)
+urinator|1
+(noun)|pisser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+urine|1
+(noun)|piss|pee|piddle|weewee|water|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+uriniferous tubule|1
+(noun)|nephron|tubule (generic term)
+url|1
+(noun)|URL|uniform resource locator|universal resource locator|address (generic term)|computer address (generic term)
+urmia|2
+(noun)|Lake Urmia|Urmia|Daryacheh-ye Orumiyeh|lake (generic term)
+(noun)|Urmia|Orumiyeh|city (generic term)|metropolis (generic term)|urban center (generic term)
+urn|2
+(noun)|vase (generic term)
+(noun)|pot (generic term)
+urn-shaped|1
+(adj)|concave (similar term)
+urn fungus|1
+(noun)|Urnula craterium|discomycete (generic term)|cup fungus (generic term)
+urnula craterium|1
+(noun)|Urnula craterium|urn fungus|discomycete (generic term)|cup fungus (generic term)
+urobilin|1
+(noun)|animal pigment (generic term)
+urobilinogen|1
+(noun)|stercobilinogen|chromogen (generic term)
+urocele|1
+(noun)|extravasation (generic term)
+urochesia|1
+(noun)|urochezia|defecation (generic term)|laxation (generic term)|shitting (generic term)
+urochezia|1
+(noun)|urochesia|defecation (generic term)|laxation (generic term)|shitting (generic term)
+urochord|2
+(noun)|tunicate|urochordate|chordate (generic term)
+(noun)|notochord (generic term)
+urochorda|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+urochordata|1
+(noun)|Urochordata|subphylum Urochordata|Urochorda|subphylum Urochorda|Tunicata|subphylum Tunicata|phylum (generic term)
+urochordate|1
+(noun)|tunicate|urochord|chordate (generic term)
+urocyon|1
+(noun)|Urocyon|genus Urocyon|mammal genus (generic term)
+urocyon cinereoargenteus|1
+(noun)|grey fox|gray fox|Urocyon cinereoargenteus|fox (generic term)
+urocystis|1
+(noun)|Urocystis|genus Urocystis|fungus genus (generic term)
+urocystis cepulae|1
+(noun)|onion smut|Urocystis cepulae|smut (generic term)|smut fungus (generic term)
+urocystis tritici|1
+(noun)|wheat flag smut|Urocystis tritici|flag smut fungus (generic term)
+urodele|1
+(noun)|caudate|amphibian (generic term)
+urodella|1
+(noun)|Urodella|order Urodella|Caudata|order Caudata|animal order (generic term)
+urodynia|1
+(noun)|pain (generic term)|hurting (generic term)
+urogenital|1
+(adj)|system (related term)
+urogenital apparatus|1
+(noun)|urogenital system|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system (generic term)
+urogenital cleft|1
+(noun)|pudendal cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|vulvar slit|rima (generic term)
+urogenital medicine|1
+(noun)|urology|medicine (generic term)|medical specialty (generic term)
+urogenital system|1
+(noun)|urogenital apparatus|urinary system|urinary apparatus|genitourinary system|genitourinary apparatus|systema urogenitale|apparatus urogenitalis|system (generic term)
+urokinase|1
+(noun)|plasminogen activator|protease (generic term)|peptidase (generic term)|proteinase (generic term)|proteolytic enzyme (generic term)
+urolith|1
+(noun)|calculus (generic term)|concretion (generic term)
+urologist|1
+(noun)|specialist (generic term)|medical specialist (generic term)
+urology|1
+(noun)|urogenital medicine|medicine (generic term)|medical specialty (generic term)
+uropathy|1
+(noun)|pathology (generic term)
+urophycis|1
+(noun)|Urophycis|genus Urophycis|fish genus (generic term)
+uropsilus|1
+(noun)|Uropsilus|genus Uropsilus|mammal genus (generic term)
+uropsilus soricipes|1
+(noun)|Asiatic shrew mole|Uropsilus soricipes|shrew mole (generic term)
+uropygi|1
+(noun)|Pedipalpi|order Pedipalpi|Uropygi|order Uropygi|animal order (generic term)
+uropygial gland|1
+(noun)|preen gland|oil gland (generic term)
+uropygium|1
+(noun)|tail (generic term)
+urosaurus|1
+(noun)|Urosaurus|genus Urosaurus|reptile genus (generic term)
+urosaurus ornatus|1
+(noun)|tree lizard|Urosaurus ornatus|iguanid (generic term)|iguanid lizard (generic term)
+ursa major|1
+(noun)|Great Bear|Ursa Major|constellation (generic term)
+ursa minor|1
+(noun)|Little Bear|Ursa Minor|constellation (generic term)
+ursidae|1
+(noun)|Ursidae|family Ursidae|mammal family (generic term)
+ursine|1
+(adj)|carnivore (related term)
+ursine dasyure|1
+(noun)|Tasmanian devil|Sarcophilus hariisi|dasyurid marsupial (generic term)|dasyurid (generic term)
+ursinia|1
+(noun)|flower (generic term)
+ursus|1
+(noun)|Ursus|genus Ursus|mammal genus (generic term)
+ursus americanus|1
+(noun)|American black bear|black bear|Ursus americanus|Euarctos americanus|bear (generic term)
+ursus arctos|1
+(noun)|brown bear|bruin|Ursus arctos|bear (generic term)
+ursus arctos horribilis|1
+(noun)|grizzly|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+ursus arctos middendorffi|1
+(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+ursus arctos syriacus|1
+(noun)|Syrian bear|Ursus arctos syriacus|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+ursus horribilis|1
+(noun)|grizzly|grizzly bear|silvertip|silver-tip|Ursus horribilis|Ursus arctos horribilis|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+ursus maritimus|1
+(noun)|ice bear|polar bear|Ursus Maritimus|Thalarctos maritimus|bear (generic term)
+ursus middendorffi|1
+(noun)|Alaskan brown bear|Kodiak bear|Kodiak|Ursus middendorffi|Ursus arctos middendorffi|brown bear (generic term)|bruin (generic term)|Ursus arctos (generic term)
+ursus thibetanus|1
+(noun)|Asiatic black bear|black bear|Ursus thibetanus|Selenarctos thibetanus|bear (generic term)
+ursus ursinus|1
+(noun)|sloth bear|Melursus ursinus|Ursus ursinus|bear (generic term)
+urth|1
+(noun)|Urd|Urth|Norn (generic term)
+urtica|1
+(noun)|Urtica|genus Urtica|dicot genus (generic term)|magnoliopsid genus (generic term)
+urtica dioica|1
+(noun)|stinging nettle|Urtica dioica|nettle (generic term)
+urtica pipulifera|1
+(noun)|Roman nettle|Urtica pipulifera|nettle (generic term)
+urticaceae|1
+(noun)|Urticaceae|family Urticaceae|nettle family|dicot family (generic term)|magnoliopsid family (generic term)
+urticales|1
+(noun)|Urticales|order Urticales|plant order (generic term)
+urticaria|1
+(noun)|urtication|hives|nettle rash|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)|hypersensitivity reaction (generic term)
+urticate|2
+(verb)|whip (generic term)|lash (generic term)
+(verb)|nettle|bite (generic term)|sting (generic term)|burn (generic term)
+urtication|2
+(noun)|urticaria|hives|nettle rash|rash (generic term)|roseola (generic term)|efflorescence (generic term)|skin rash (generic term)|hypersensitivity reaction (generic term)
+(noun)|cutaneous sensation (generic term)|haptic sensation (generic term)|skin sensation (generic term)
+urubupunga|1
+(noun)|Urubupunga|Urubupunga Falls|waterfall (generic term)|falls (generic term)
+urubupunga falls|1
+(noun)|Urubupunga|Urubupunga Falls|waterfall (generic term)|falls (generic term)
+uruguay|1
+(noun)|Uruguay|South American country (generic term)|South American nation (generic term)
+uruguay potato|2
+(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine (generic term)
+(noun)|Uruguay potato|potato (generic term)|white potato (generic term)|Irish potato (generic term)|murphy (generic term)|spud (generic term)|tater (generic term)
+uruguay potato vine|1
+(noun)|Uruguay potato|Uruguay potato vine|Solanum commersonii|vine (generic term)
+uruguay river|1
+(noun)|Uruguay River|river (generic term)
+uruguayan|2
+(adj)|Uruguayan|South American country|South American nation (related term)
+(noun)|Uruguayan|South American (generic term)
+uruguayan monetary unit|1
+(noun)|Uruguayan monetary unit|monetary unit (generic term)
+uruguayan peso|1
+(noun)|Uruguayan peso|peso|Uruguayan monetary unit (generic term)
+urus|1
+(noun)|aurochs|Bos primigenius|ox (generic term)|wild ox (generic term)
+us|1
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+us air force|1
+(noun)|United States Air Force|U. S. Air Force|US Air Force|Air Force|USAF|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us air force academy|1
+(noun)|United States Air Force Academy|US Air Force Academy|air force academy (generic term)
+us army|1
+(noun)|United States Army|US Army|U. S. Army|Army|USA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+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 (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us attorney general|1
+(noun)|Attorney General|United States Attorney General|US Attorney General|secretary (generic term)
+us border patrol|1
+(noun)|United States Border Patrol|US Border Patrol|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us cabinet|1
+(noun)|United States Cabinet|US Cabinet|cabinet (generic term)
+us coast guard|1
+(noun)|United States Coast Guard|U. S. Coast Guard|US Coast Guard|coastguard (generic term)|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us congress|1
+(noun)|Congress|United States Congress|U.S. Congress|US Congress|legislature (generic term)|legislative assembly (generic term)|legislative (generic term)|general assembly (generic term)|law-makers (generic term)
+us fish and wildlife service|1
+(noun)|United States Fish and Wildlife Service|US Fish and Wildlife Service|FWS|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us government|1
+(noun)|United States government|United States|U.S. government|US Government|U.S.|federal government (generic term)
+us government printing office|1
+(noun)|United States Government Printing Office|US Government Printing Office|Government Printing Office|GPO|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+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 (generic term)
+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 (generic term)
+us marine corps|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+us marshals service|1
+(noun)|United States Marshals Service|US Marshals Service|Marshals|law enforcement agency (generic term)
+us military academy|1
+(noun)|United States Military Academy|US Military Academy|military academy (generic term)
+us mint|1
+(noun)|United States Mint|U.S. Mint|US Mint|mint (generic term)
+us naval academy|1
+(noun)|United States Naval Academy|US Naval Academy|naval academy (generic term)
+us navy|1
+(noun)|United States Navy|US Navy|USN|Navy|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+us post office|1
+(noun)|United States Post Office|US Post Office|Post Office|PO|independent agency (generic term)
+us postal inspection service|1
+(noun)|United States Postal Inspection Service|US Postal Inspection Service|independent agency (generic term)
+us postal service|1
+(noun)|United States Postal Service|US Postal Service|USPS|independent agency (generic term)
+us secret service|1
+(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency (generic term)
+us senate|1
+(noun)|United States Senate|U.S. Senate|US Senate|Senate|senate (generic term)
+us trade representative|1
+(noun)|United States Trade Representative|US Trade Representative|executive agency (generic term)
+usa|2
+(noun)|United States|United States of America|America|the States|US|U.S.|USA|U.S.A.|North American country (generic term)|North American nation (generic term)
+(noun)|United States Army|US Army|U. S. Army|Army|USA|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+usability|1
+(noun)|serviceability|serviceableness|usableness|useableness|utility (generic term)|usefulness (generic term)
+usable|3
+(adj)|useable|useful (similar term)|utile (similar term)
+(adj)|functional|useable|in working order|operable|operational|serviceable (similar term)
+(adj)|available|useable|disposable (similar term)
+usableness|1
+(noun)|serviceability|serviceableness|useableness|usability|utility (generic term)|usefulness (generic term)
+usacil|1
+(noun)|United States Army Criminal Investigation Laboratory|U.S. Army Criminal Investigation Laboratory|US Army Criminal Investigation Laboratory|USACIL|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+usaf|1
+(noun)|United States Air Force|U. S. Air Force|US Air Force|Air Force|USAF|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+usage|2
+(noun)|use|utilization|utilisation|employment|exercise|activity (generic term)
+(noun)|custom|usance|practice (generic term)|pattern (generic term)|survival (generic term)
+usama bin laden|1
+(noun)|bin Laden|Osama bin Laden|Usama bin Laden|terrorist (generic term)
+usance|3
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|consumption|economic consumption|use|use of goods and services|demand (generic term)
+(noun)|custom|usage|practice (generic term)|pattern (generic term)|survival (generic term)
+usbeg|2
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+usbek|2
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+uscb|1
+(noun)|Bureau of Customs|Customs Bureau|Customs Service|USCB|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+usda|1
+(noun)|Department of Agriculture|Agriculture Department|Agriculture|USDA|executive department (generic term)
+use|13
+(noun)|usage|utilization|utilisation|employment|exercise|activity (generic term)
+(noun)|utility (generic term)|usefulness (generic term)
+(noun)|function|purpose|role|utility (generic term)|usefulness (generic term)
+(noun)|consumption|economic consumption|usance|use of goods and services|demand (generic term)
+(noun)|habit|wont|custom (generic term)|usage (generic term)|usance (generic term)
+(noun)|enjoyment|legal right (generic term)
+(noun)|manipulation|influence (generic term)
+(verb)|utilize|utilise|apply|employ
+(verb)|habituate|consume (generic term)|ingest (generic term)|take in (generic term)|take (generic term)|have (generic term)
+(verb)|exploit (generic term)|work (generic term)
+(verb)|expend|use up (related term)
+(verb)|practice|apply
+(verb)|act (generic term)|move (generic term)
+use immunity|1
+(noun)|testimonial immunity|exemption (generic term)|immunity (generic term)|granting immunity (generic term)
+use of goods and services|1
+(noun)|consumption|economic consumption|usance|use|demand (generic term)
+use up|2
+(verb)|consume|eat up|eat|deplete|exhaust|run through|wipe out|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|take|occupy|use (generic term)|expend (generic term)
+useable|3
+(adj)|functional|usable|in working order|operable|operational|serviceable (similar term)
+(adj)|usable|useful (similar term)|utile (similar term)
+(adj)|available|usable|disposable (similar term)
+useableness|1
+(noun)|serviceability|serviceableness|usableness|usability|utility (generic term)|usefulness (generic term)
+used|3
+(adj)|in use (similar term)|utilized (similar term)|utilised (similar term)|misused (antonym)
+(adj)|exploited|ill-used|put-upon|victimized|victimised|misused (similar term)
+(adj)|secondhand|old (similar term)
+used-car|1
+(noun)|secondhand car|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+used-car lot|1
+(noun)|parking lot (generic term)|car park (generic term)|park (generic term)|parking area (generic term)
+used-up|1
+(adj)|consumed|used up|exhausted (similar term)
+used to|1
+(adj)|wont to|accustomed (similar term)
+used up|1
+(adj)|consumed|used-up|exhausted (similar term)
+useful|2
+(adj)|utile|helpful (similar term)|multipurpose (similar term)|reclaimable (similar term)|recyclable (similar term)|reusable (similar term)|serviceable (similar term)|useable (similar term)|usable (similar term)|utilitarian (similar term)|utilizable (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|expedient (related term)|helpful (related term)|profitable (related term)|serviceable (related term)|useless (antonym)
+(adj)|utilitarian|functional (similar term)
+usefully|1
+(adv)|uselessly (antonym)
+usefulness|1
+(noun)|utility|quality (generic term)|uselessness (antonym)|inutility (antonym)
+useless|1
+(adj)|futile (similar term)|ineffectual (similar term)|otiose (similar term)|unavailing (similar term)|inutile (similar term)|unprofitable (similar term)|unserviceable (similar term)|unusable (similar term)|unuseable (similar term)|ineffective (related term)|uneffective (related term)|ineffectual (related term)|unprofitable (related term)|unserviceable (related term)|useful (antonym)
+uselessly|1
+(adv)|usefully (antonym)
+uselessness|1
+(noun)|inutility|unusefulness|quality (generic term)|usefulness (antonym)|utility (antonym)
+user|3
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|exploiter|selfish person (generic term)
+(noun)|drug user|substance abuser|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+user-friendly|1
+(adj)|easy (similar term)
+user interface|1
+(noun)|interface|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+ushas|1
+(noun)|Ushas|Hindu deity (generic term)
+usher|4
+(noun)|Ussher|James Ussher|Usher|James Usher|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+(noun)|doorkeeper|official (generic term)|functionary (generic term)
+(noun)|guide|escort (generic term)
+(verb)|show|lead (generic term)|take (generic term)|direct (generic term)|conduct (generic term)|guide (generic term)
+usher in|1
+(verb)|inaugurate|introduce|begin (generic term)|lead off (generic term)|start (generic term)|commence (generic term)
+usher out|1
+(verb)|dismiss|say farewell (generic term)
+usherette|1
+(noun)|usher (generic term)|guide (generic term)
+ushering in|1
+(noun)|introduction (generic term)|debut (generic term)|first appearance (generic term)|launching (generic term)|unveiling (generic term)|entry (generic term)
+using|1
+(noun)|exploitation|victimization|victimisation|mistreatment (generic term)
+using up|1
+(noun)|consumption|expenditure|depletion (generic term)
+uskub|1
+(noun)|Skopje|Skoplje|Uskub|national capital (generic term)
+usmc|1
+(noun)|United States Marine Corps|United States Marines|Marine Corps|US Marine Corps|USMC|Marines|naval unit (generic term)
+usn|1
+(noun)|United States Navy|US Navy|USN|Navy|agency (generic term)|federal agency (generic term)|government agency (generic term)|bureau (generic term)|office (generic term)|authority (generic term)
+usnea|1
+(noun)|Usnea|genus Usnea|fungus genus (generic term)
+usnea barbata|1
+(noun)|beard lichen|beard moss|Usnea barbata|lichen (generic term)
+usneaceae|1
+(noun)|Usneaceae|family Usneaceae|fungus family (generic term)
+usps|1
+(noun)|United States Postal Service|US Postal Service|USPS|independent agency (generic term)
+uss cole|1
+(noun)|USS Cole|destroyer (generic term)|guided missile destroyer (generic term)
+ussher|1
+(noun)|Ussher|James Ussher|Usher|James Usher|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+ussr|1
+(noun)|Soviet Union|Russia|Union of Soviet Socialist Republics|USSR|country (generic term)|state (generic term)|land (generic term)
+usss|1
+(noun)|United States Secret Service|US Secret Service|USSS|Secret Service|SS|United States intelligence agency (generic term)
+ustilaginaceae|1
+(noun)|Ustilaginaceae|family Ustilaginaceae|fungus family (generic term)
+ustilaginales|1
+(noun)|Ustilaginales|order Ustilaginales|fungus order (generic term)
+ustilaginoidea|1
+(noun)|Ustilaginoidea|genus Ustilaginoidea|fungus genus (generic term)
+ustilaginoidea virens|1
+(noun)|green smut fungus|Ustilaginoidea virens|fungus (generic term)
+ustilago|1
+(noun)|Ustilago|genus Ustilago|fungus genus (generic term)
+ustilago maydis|1
+(noun)|boil smut|Ustilago maydis|cornsmut (generic term)|corn smut (generic term)
+ustinov|1
+(noun)|Ustinov|Sir Peter Ustinov|Peter Alexander Ustinov|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|dramatist (generic term)|playwright (generic term)
+usual|2
+(adj)|accustomed (similar term)|customary (similar term)|habitual (similar term)|wonted (similar term)|regular (similar term)|common (related term)|unusual (antonym)
+(adj)|common|familiar (similar term)
+usually|1
+(adv)|normally|unremarkably|commonly|ordinarily|remarkably (antonym)
+usualness|1
+(noun)|commonness (generic term)|commonplaceness (generic term)|everydayness (generic term)|unusualness (antonym)
+usufruct|1
+(noun)|legal right (generic term)
+usufructuary|2
+(adj)|legal right (related term)
+(noun)|user (generic term)
+usuli|1
+(noun)|Usuli|religious movement (generic term)
+usumbura|1
+(noun)|Bujumbura|Usumbura|capital of Burundi|national capital (generic term)
+usurer|1
+(noun)|loan shark|moneylender|shylock|lender (generic term)|loaner (generic term)|shark (generic term)
+usurious|1
+(adj)|exorbitant|extortionate|outrageous|steep|unconscionable|immoderate (similar term)
+usuriously|1
+(adv)|exorbitantly|extortionately
+usurp|2
+(verb)|assume|seize|take over|arrogate|take (generic term)
+(verb)|supplant (generic term)|replace (generic term)|supersede (generic term)|supervene upon (generic term)|supercede (generic term)
+usurpation|2
+(noun)|trespass|encroachment|violation|intrusion|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|capture (generic term)|gaining control (generic term)|seizure (generic term)
+usurped|1
+(adj)|taken (similar term)
+usurper|1
+(noun)|supplanter|wrongdoer (generic term)|offender (generic term)
+usury|2
+(noun)|vigorish|interest rate (generic term)|rate of interest (generic term)
+(noun)|lending (generic term)|loaning (generic term)
+ut|3
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time (generic term)
+(noun)|Utah|Beehive State|Mormon State|UT|American state (generic term)
+(noun)|do|doh|solfa syllable (generic term)
+ut1|1
+(noun)|Greenwich Mean Time|Greenwich Time|GMT|universal time|UT|UT1|time (generic term)
+uta|1
+(noun)|Uta|genus Uta|reptile genus (generic term)
+uta stansburiana|1
+(noun)|side-blotched lizard|sand lizard|Uta stansburiana|iguanid (generic term)|iguanid lizard (generic term)
+utah|1
+(noun)|Utah|Beehive State|Mormon State|UT|American state (generic term)
+utahan|1
+(noun)|Utahan|American (generic term)
+utahraptor|1
+(noun)|superslasher|maniraptor (generic term)
+utc|1
+(noun)|coordinated universal time|UTC|Greenwich Mean Time (generic term)|Greenwich Time (generic term)|GMT (generic term)|universal time (generic term)|UT (generic term)|UT1 (generic term)
+ute|2
+(noun)|Ute|Shoshone (generic term)|Shoshoni (generic term)
+(noun)|Ute|Shoshonean (generic term)|Shoshonean language (generic term)|Shoshonian (generic term)|Shoshonian language (generic term)
+utensil|1
+(noun)|implement (generic term)
+uterine|1
+(adj)|female internal reproductive organ (related term)
+uterine artery|1
+(noun)|arteria uterina|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+uterine cavity|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+uterine cervix|1
+(noun)|cervix|cervix uteri|orifice (generic term)|opening (generic term)|porta (generic term)
+uterine contraction|1
+(noun)|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+uterine tube|1
+(noun)|Fallopian tube|oviduct|salpinx (generic term)|female internal reproductive organ (generic term)
+uterine vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+uterus|1
+(noun)|womb|female internal reproductive organ (generic term)
+utica|1
+(noun)|Utica|city (generic term)|metropolis (generic term)|urban center (generic term)
+utile|1
+(adj)|useful|helpful (similar term)|multipurpose (similar term)|reclaimable (similar term)|recyclable (similar term)|reusable (similar term)|serviceable (similar term)|useable (similar term)|usable (similar term)|utilitarian (similar term)|utilizable (similar term)|effective (related term)|effectual (related term)|efficacious (related term)|expedient (related term)|helpful (related term)|profitable (related term)|serviceable (related term)|useless (antonym)
+utilisation|1
+(noun)|use|usage|utilization|employment|exercise|activity (generic term)
+utilise|1
+(verb)|use|utilize|apply|employ
+utilised|1
+(adj)|utilized|used (similar term)
+utiliser|1
+(noun)|utilizer|user (generic term)
+utilitarian|3
+(adj)|useful|functional (similar term)
+(adj)|useful (similar term)|utile (similar term)
+(noun)|moralist (generic term)
+utilitarianism|1
+(noun)|doctrine (generic term)|philosophy (generic term)|philosophical system (generic term)|school of thought (generic term)|ism (generic term)
+utility|8
+(adj)|utility-grade|inferior (similar term)
+(adj)|substitute|secondary (similar term)
+(noun)|public utility|public utility company|public-service corporation|service (generic term)
+(noun)|usefulness|quality (generic term)|uselessness (antonym)|inutility (antonym)
+(noun)|service (generic term)
+(noun)|system of measurement (generic term)|metric (generic term)
+(noun)|utility program|service program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+(noun)|facility (generic term)|installation (generic term)
+utility-grade|1
+(adj)|utility|inferior (similar term)
+utility bond|1
+(noun)|utility revenue bond|municipal bond (generic term)
+utility man|2
+(noun)|ballplayer (generic term)|baseball player (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+utility program|1
+(noun)|utility|service program|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+utility revenue bond|1
+(noun)|utility bond|municipal bond (generic term)
+utility routine|1
+(noun)|service routine|routine (generic term)|subroutine (generic term)|subprogram (generic term)|procedure (generic term)|function (generic term)
+utilizable|1
+(adj)|useful (similar term)|utile (similar term)
+utilization|2
+(noun)|use|usage|utilisation|employment|exercise|activity (generic term)
+(noun)|state (generic term)
+utilize|2
+(verb)|use|utilise|apply|employ
+(verb)|change (generic term)|exchange (generic term)|commute (generic term)|convert (generic term)
+utilized|1
+(adj)|utilised|used (similar term)
+utilizer|1
+(noun)|utiliser|user (generic term)
+utmost|4
+(adj)|extreme|uttermost|intense (similar term)
+(adj)|last|high (similar term)
+(adj)|farthermost|farthest|furthermost|furthest|uttermost|far (similar term)
+(noun)|uttermost|maximum|level best|limit (generic term)|bound (generic term)|boundary (generic term)
+utn|1
+(noun)|Umma Tameer-e-Nau|UTN|nongovernmental organization (generic term)|NGO (generic term)
+utnapishtim|1
+(noun)|Utnapishtim|Semitic deity (generic term)
+uto-aztecan|1
+(noun)|Uto-Aztecan|Uto-Aztecan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+uto-aztecan language|1
+(noun)|Uto-Aztecan|Uto-Aztecan language|Amerind (generic term)|Amerindian language (generic term)|American-Indian language (generic term)|American Indian (generic term)|Indian (generic term)
+utopia|4
+(noun)|Utopia|book (generic term)
+(noun)|state (generic term)|dystopia (antonym)
+(noun)|fiction (generic term)
+(noun)|Utopia|Zion|Sion|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+utopian|3
+(adj)|Utopian|book (related term)|state (related term)
+(adj)|airy (similar term)|impractical (similar term)|visionary (similar term)|Laputan (similar term)|windy (similar term)|perfect (related term)|dystopian (antonym)
+(noun)|Utopian|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+utopian socialism|1
+(noun)|socialism (generic term)
+utopianism|1
+(noun)|Utopianism|political orientation (generic term)|ideology (generic term)|political theory (generic term)
+utrecht|1
+(noun)|Utrecht|city (generic term)|metropolis (generic term)|urban center (generic term)
+utricle|1
+(noun)|utriculus|pouch (generic term)|pocket (generic term)
+utricularia|1
+(noun)|Utricularia|genus Utricularia|plant genus (generic term)
+utriculus|1
+(noun)|utricle|pouch (generic term)|pocket (generic term)
+utrillo|1
+(noun)|Utrillo|Maurice Utrillo|painter (generic term)
+uttar pradesh|1
+(noun)|Uttar Pradesh|state (generic term)|province (generic term)
+utter|6
+(adj)|arrant|complete|consummate|double-dyed|everlasting|gross|perfect|pure|sodding|stark|staring|thoroughgoing|unadulterated|unmitigated (similar term)
+(adj)|dead|absolute (similar term)
+(verb)|express|verbalize|verbalise|give tongue to
+(verb)|emit|let out|let loose
+(verb)|talk|speak|mouth|verbalize|verbalise|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|circulate (generic term)|pass around (generic term)|pass on (generic term)|distribute (generic term)
+utterable|1
+(adj)|speakable|expressible (similar term)
+utterance|1
+(noun)|vocalization|auditory communication (generic term)
+uttered|1
+(adj)|expressed|verbalized|verbalised|spoken (similar term)
+utterer|3
+(noun)|vocalizer|vocaliser|organism (generic term)|being (generic term)
+(noun)|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+(noun)|speaker|talker|verbalizer|verbaliser|articulator (generic term)
+utterly|1
+(adv)|absolutely|perfectly|dead
+uttermost|3
+(adj)|extreme|utmost|intense (similar term)
+(adj)|farthermost|farthest|furthermost|furthest|utmost|far (similar term)
+(noun)|utmost|maximum|level best|limit (generic term)|bound (generic term)|boundary (generic term)
+utterness|1
+(noun)|starkness|absoluteness|limit (generic term)|bound (generic term)|boundary (generic term)
+utu|1
+(noun)|Utu|Utug|Semitic deity (generic term)
+utug|1
+(noun)|Utu|Utug|Semitic deity (generic term)
+uub|1
+(noun)|ununbium|Uub|element 112|atomic number 112|chemical element (generic term)|element (generic term)
+uuh|1
+(noun)|ununhexium|Uuh|element 116|atomic number 116|chemical element (generic term)|element (generic term)
+uup|1
+(noun)|ununpentium|Uup|element 115|atomic number 115|chemical element (generic term)|element (generic term)
+uuq|1
+(noun)|ununquadium|Uuq|element 114|atomic number 114|chemical element (generic term)|element (generic term)
+uut|1
+(noun)|ununtrium|Uut|element 113|atomic number 113|chemical element (generic term)|element (generic term)
+uv|1
+(noun)|ultraviolet|ultraviolet radiation|ultraviolet light|ultraviolet illumination|UV|actinic radiation (generic term)|actinic ray (generic term)
+uvea|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+uveal|1
+(adj)|uveous|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+uveitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+uveous|1
+(adj)|uveal|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+uvula|1
+(noun)|flap (generic term)
+uvular|1
+(adj)|flap (related term)
+uvularia|1
+(noun)|Uvularia|genus Uvularia|liliid monocot genus (generic term)
+uvularia grandiflora|1
+(noun)|strawflower|cornflower|Uvularia grandiflora|bellwort (generic term)|merry bells (generic term)|wild oats (generic term)
+uvulariaceae|1
+(noun)|Uvulariaceae|subfamily Uvulariaceae|liliid monocot family (generic term)
+uvulitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+uvulopalatopharyngoplasty|1
+(noun)|palatopharyngoplasty|PPP|UPPP|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+ux|1
+(noun)|uxor|wife (generic term)|married woman (generic term)
+uxor|1
+(noun)|ux|wife (generic term)|married woman (generic term)
+uxorial|1
+(adj)|wifely|wifelike|husbandly (antonym)
+uxoricide|2
+(noun)|husband (generic term)|hubby (generic term)|married man (generic term)
+(noun)|murder (generic term)|slaying (generic term)|execution (generic term)
+uxorious|1
+(adj)|loving (similar term)
+uxoriousness|1
+(noun)|affectionateness (generic term)|fondness (generic term)|lovingness (generic term)|warmth (generic term)
+uygur|3
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)
+(noun)|Uighur|Uigur|Uygur|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+(noun)|Uighur|Uigur|Uygur|script (generic term)
+uzbak|2
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+uzbeg|2
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+uzbek|3
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)
+(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country (generic term)|Asian nation (generic term)
+(noun)|Uzbek|Uzbeg|Uzbak|Usbek|Usbeg|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+uzbekistan|1
+(noun)|Uzbekistan|Republic of Uzbekistan|Uzbek|Asian country (generic term)|Asian nation (generic term)
+uzbekistani|1
+(adj)|Uzbekistani|Asian country|Asian nation (related term)
+uzbekistani monetary unit|1
+(noun)|Uzbekistani monetary unit|monetary unit (generic term)
+uzi|1
+(noun)|Uzi|submachine gun (generic term)
+v|5
+(adj)|five|5|cardinal (similar term)
+(noun)|volt|V|potential unit (generic term)
+(noun)|vanadium|V|atomic number 23|metallic element (generic term)|metal (generic term)
+(noun)|five|5|V|cinque|quint|quintet|fivesome|quintuplet|pentad|fin|Phoebe|Little Phoebe|digit (generic term)|figure (generic term)
+(noun)|V|letter v|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+v-1|1
+(noun)|buzz bomb|robot bomb|flying bomb|doodlebug|V-1|guided missile (generic term)
+v-8 juice|1
+(noun)|V-8 juice|juice (generic term)
+v-day|1
+(noun)|V-day|Victory Day|day (generic term)
+v-e day|1
+(noun)|V-E Day|8 May 1945|V-day (generic term)|Victory Day (generic term)
+v-j day|1
+(noun)|V-J Day|15 August 1945|V-day (generic term)|Victory Day (generic term)
+v-shaped|1
+(adj)|formed (similar term)
+v.p.|1
+(noun)|vice president|V.P.|executive (generic term)|executive director (generic term)
+v neck|1
+(noun)|V neck|neck (generic term)|neck opening (generic term)
+v sign|1
+(noun)|V sign|gesture (generic term)|motion (generic term)
+va|2
+(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state (generic term)
+(noun)|Department of Veterans Affairs|VA|executive department (generic term)
+vac|1
+(noun)|vacation (generic term)|holiday (generic term)
+vacancy|2
+(noun)|emptiness (generic term)
+(noun)|void|emptiness|vacuum|space (generic term)
+vacancy rate|1
+(noun)|percentage (generic term)|percent (generic term)|per centum (generic term)|pct (generic term)
+vacant|1
+(adj)|empty (similar term)
+vacant lot|1
+(noun)|building site|lot (generic term)
+vacate|3
+(verb)|resign|renounce|give up|leave office (generic term)|quit (generic term)|step down (generic term)|resign (generic term)
+(verb)|empty|abandon|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|revoke|annul|lift|countermand|reverse|repeal|overturn|rescind|cancel (generic term)|strike down (generic term)
+vacation|3
+(noun)|holiday|leisure (generic term)|leisure time (generic term)
+(noun)|abrogation (generic term)|repeal (generic term)|annulment (generic term)
+(verb)|holiday|spend (generic term)|pass (generic term)
+vacation home|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+vacation spot|1
+(noun)|resort area|playground|area (generic term)|country (generic term)
+vacationer|1
+(noun)|vacationist|nonworker (generic term)
+vacationing|1
+(noun)|leisure (generic term)
+vacationist|1
+(noun)|vacationer|nonworker (generic term)
+vaccaria|1
+(noun)|Vaccaria|genus Vaccaria|caryophylloid dicot genus (generic term)
+vaccaria hispanica|1
+(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower (generic term)
+vaccaria pyramidata|1
+(noun)|cowherb|cow cockle|Vaccaria hispanica|Vaccaria pyramidata|Saponaria vaccaria|flower (generic term)
+vaccina|1
+(noun)|vaccinia|variola vaccine|variola vaccinia|variola vaccina|infection (generic term)
+vaccinate|1
+(verb)|immunize|immunise|inoculate|inject (generic term)|shoot (generic term)
+vaccinated|1
+(adj)|immunized|immunised|unsusceptible (similar term)|insusceptible (similar term)
+vaccinating|1
+(noun)|inoculating|protection (generic term)
+vaccination|2
+(noun)|inoculation|immunization (generic term)|immunisation (generic term)
+(noun)|scar (generic term)|cicatrix (generic term)|cicatrice (generic term)
+vaccinator|1
+(noun)|inoculator|medical practitioner (generic term)|medical man (generic term)
+vaccine|1
+(noun)|vaccinum|immunogen (generic term)|immunizing agent (generic term)
+vaccinee|1
+(noun)|patient (generic term)
+vaccinia|2
+(noun)|vaccina|variola vaccine|variola vaccinia|variola vaccina|infection (generic term)
+(noun)|cowpox|animal disease (generic term)|pox (generic term)
+vaccinia gangrenosa|1
+(noun)|progressive vaccinia|vaccinia (generic term)|vaccina (generic term)|variola vaccine (generic term)|variola vaccinia (generic term)|variola vaccina (generic term)
+vaccinium|1
+(noun)|Vaccinium|genus Vaccinium|dilleniid dicot genus (generic term)
+vaccinium angustifolium|1
+(noun)|low-bush blueberry|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium arboreum|1
+(noun)|farkleberry|sparkleberry|Vaccinium arboreum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium ashei|1
+(noun)|rabbiteye blueberry|rabbit-eye blueberry|rabbiteye|Vaccinium ashei|blueberry (generic term)|blueberry bush (generic term)
+vaccinium caespitosum|1
+(noun)|dwarf bilberry|dwarf blueberry|Vaccinium caespitosum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium corymbosum|1
+(noun)|high-bush blueberry|tall bilberry|swamp blueberry|Vaccinium corymbosum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium macrocarpon|1
+(noun)|American cranberry|large cranberry|Vaccinium macrocarpon|cranberry (generic term)
+vaccinium myrsinites|1
+(noun)|evergreen blueberry|Vaccinium myrsinites|blueberry (generic term)|blueberry bush (generic term)
+vaccinium ovatum|1
+(noun)|evergreen huckleberry|Vaccinium ovatum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium oxycoccus|1
+(noun)|European cranberry|small cranberry|Vaccinium oxycoccus|cranberry (generic term)
+vaccinium pallidum|1
+(noun)|dryland blueberry|dryland berry|Vaccinium pallidum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium pennsylvanicum|1
+(noun)|low-bush blueberry|low blueberry|Vaccinium angustifolium|Vaccinium pennsylvanicum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium scoparium|1
+(noun)|grouseberry|grouse-berry|grouse whortleberry|Vaccinium scoparium|blueberry (generic term)|blueberry bush (generic term)
+vaccinium stamineum|1
+(noun)|deerberry|squaw huckleberry|Vaccinium stamineum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium uliginosum alpinum|1
+(noun)|bog bilberry|bog whortleberry|moor berry|Vaccinium uliginosum alpinum|blueberry (generic term)|blueberry bush (generic term)
+vaccinium vitis-idaea|1
+(noun)|cowberry|mountain cranberry|lingonberry|lingenberry|lingberry|foxberry|Vaccinium vitis-idaea|cranberry (generic term)
+vaccinum|1
+(noun)|vaccine|immunogen (generic term)|immunizing agent (generic term)
+vachel lindsay|1
+(noun)|Lindsay|Vachel Lindsay|Nicholas Vachel Lindsay|poet (generic term)
+vacillant|1
+(adj)|vacillating|wavering|irresolute (similar term)
+vacillate|2
+(verb)|hover|vibrate|oscillate|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|fluctuate|waver|swing (generic term)
+vacillating|1
+(adj)|vacillant|wavering|irresolute (similar term)
+vacillation|2
+(noun)|hesitation|wavering|indecision (generic term)|indecisiveness (generic term)|irresolution (generic term)
+(noun)|swing|swinging|motion (generic term)|movement (generic term)|move (generic term)
+vacillator|1
+(noun)|waverer|hesitator|hesitater|coward (generic term)
+vaclav havel|1
+(noun)|Havel|Vaclav Havel|dramatist (generic term)|playwright (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+vacuity|3
+(noun)|vacuum|emptiness (generic term)
+(noun)|vacuum|region (generic term)|part (generic term)
+(noun)|inanity|senselessness|mindlessness|pointlessness|meaninglessness (generic term)
+vacuolate|1
+(adj)|vacuolated|cavity|bodily cavity|cavum (related term)
+vacuolated|1
+(adj)|vacuolate|cavity|bodily cavity|cavum (related term)
+vacuolation|1
+(noun)|vacuolization|vacuolisation|condition (generic term)|status (generic term)
+vacuole|1
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+vacuolisation|1
+(noun)|vacuolization|vacuolation|condition (generic term)|status (generic term)
+vacuolization|1
+(noun)|vacuolisation|vacuolation|condition (generic term)|status (generic term)
+vacuous|4
+(adj)|asinine|fatuous|inane|mindless|foolish (similar term)
+(adj)|empty|hollow|meaningless (similar term)|nonmeaningful (similar term)
+(adj)|empty (similar term)
+(adj)|blank|uncommunicative (similar term)|incommunicative (similar term)
+vacuousness|1
+(noun)|stupidity (generic term)
+vacuum|5
+(noun)|vacuity|emptiness (generic term)
+(noun)|void|vacancy|emptiness|space (generic term)
+(noun)|vacuity|region (generic term)|part (generic term)
+(noun)|vacuum cleaner|home appliance (generic term)|household appliance (generic term)
+(verb)|vacuum-clean|hoover|clean (generic term)|make clean (generic term)
+vacuum-clean|1
+(verb)|vacuum|hoover|clean (generic term)|make clean (generic term)
+vacuum aspiration|1
+(noun)|suction curettage|curettage (generic term)|curettement (generic term)|induced abortion (generic term)
+vacuum bag|1
+(noun)|dust bag|bag (generic term)
+vacuum bomb|1
+(noun)|thermobaric bomb|fuel-air bomb|volume-detonation bomb|aerosol bomb|bomb (generic term)|fuel-air explosive (generic term)|FAE (generic term)
+vacuum bottle|1
+(noun)|vacuum flask|flask (generic term)
+vacuum chamber|1
+(noun)|chamber (generic term)
+vacuum cleaner|1
+(noun)|vacuum|home appliance (generic term)|household appliance (generic term)
+vacuum flask|1
+(noun)|vacuum bottle|flask (generic term)
+vacuum gage|1
+(noun)|vacuum gauge|gauge (generic term)|gage (generic term)
+vacuum gauge|1
+(noun)|vacuum gage|gauge (generic term)|gage (generic term)
+vacuum pump|1
+(noun)|air pump|pump (generic term)
+vacuum tube|1
+(noun)|tube|thermionic vacuum tube|thermionic tube|electron tube|thermionic valve|electronic device (generic term)
+vade mecum|1
+(noun)|handbook|enchiridion|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+vaduz|1
+(noun)|Vaduz|capital of Liechtenstein|national capital (generic term)
+vagabond|5
+(adj)|rootless|unsettled (similar term)
+(adj)|aimless|drifting|floating|vagrant|unsettled (similar term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|vagrant|drifter|floater|wanderer (generic term)|roamer (generic term)|rover (generic term)|bird of passage (generic term)|poor person (generic term)|have-not (generic term)
+(verb)|roll|wander|swan|stray|tramp|roam|cast|ramble|rove|range|drift|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+vagabondage|1
+(noun)|wandering|roving|travel (generic term)|traveling (generic term)|travelling (generic term)
+vagal|1
+(adj)|pneumogastric|cranial nerve (related term)
+vagary|1
+(noun)|change (generic term)|alteration (generic term)|modification (generic term)
+vagile|1
+(adj)|free-swimming (similar term)|unattached (similar term)|sessile (antonym)
+vagina|1
+(noun)|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+vaginal|1
+(adj)|duct|epithelial duct|canal|channel (related term)
+vaginal artery|1
+(noun)|arteria vaginalis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+vaginal birth|1
+(noun)|childbirth|childbearing|accouchement|parturition (generic term)|birth (generic term)|giving birth (generic term)|birthing (generic term)
+vaginal discharge|1
+(noun)|discharge (generic term)|emission (generic term)
+vaginal smear|1
+(noun)|smear (generic term)|cytologic smear (generic term)|cytosmear (generic term)
+vaginismus|1
+(noun)|contraction (generic term)|muscular contraction (generic term)|muscle contraction (generic term)
+vaginitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vaginocele|1
+(noun)|colpocele|hernia (generic term)|herniation (generic term)
+vagn walfrid ekman|1
+(noun)|Ekman|Vagn Walfrid Ekman|oceanographer (generic term)
+vagrancy|1
+(noun)|homelessness (generic term)
+vagrant|2
+(adj)|aimless|drifting|floating|vagabond|unsettled (similar term)
+(noun)|drifter|floater|vagabond|wanderer (generic term)|roamer (generic term)|rover (generic term)|bird of passage (generic term)|poor person (generic term)|have-not (generic term)
+vague|3
+(adj)|obscure|unclear (similar term)
+(adj)|undefined|indefinable (similar term)|undefinable (similar term)|indefinite (related term)|defined (antonym)
+(adj)|dim|faint|shadowy|wispy|indistinct (similar term)
+vaguely|1
+(adv)|mistily
+vagueness|2
+(noun)|unclearness (generic term)
+(noun)|indistinctness (generic term)|softness (generic term)|blurriness (generic term)|fogginess (generic term)|fuzziness (generic term)
+vagus|1
+(noun)|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve (generic term)
+vagus nerve|1
+(noun)|vagus|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|wandering nerve|cranial nerve (generic term)
+vain|2
+(adj)|conceited|egotistic|egotistical|self-conceited|swollen|swollen-headed|proud (similar term)
+(adj)|bootless|fruitless|futile|sleeveless|unproductive (similar term)
+vainglorious|1
+(adj)|big|swelled|proud (similar term)
+vainglory|1
+(noun)|boastfulness|conceit (generic term)|conceitedness (generic term)|vanity (generic term)
+vainly|1
+(adv)|in vain
+vaisakha|1
+(noun)|Baisakh|Vaisakha|Hindu calendar month (generic term)
+vaishnava|1
+(noun)|Vaishnava|Hindu (generic term)|Hindoo (generic term)
+vaishnavism|2
+(noun)|Vaishnavism|Vaisnavism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism (generic term)|Hindooism (generic term)
+vaisnavism|2
+(noun)|Vaishnavism|Vaisnavism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism (generic term)|Hindooism (generic term)
+vaisya|2
+(noun)|Vaisya|Hindu (generic term)|Hindoo (generic term)|Hindustani (generic term)
+(noun)|varna (generic term)
+vajra|1
+(noun)|Vajra|Hindu deity (generic term)
+valance|1
+(noun)|cornice|valance board|pelmet|framework (generic term)|frame (generic term)|framing (generic term)
+valance board|1
+(noun)|cornice|valance|pelmet|framework (generic term)|frame (generic term)|framing (generic term)
+valdez|1
+(noun)|Valdez|port (generic term)
+valdosta|1
+(noun)|Valdosta|town (generic term)
+vale|1
+(noun)|valley|natural depression (generic term)|depression (generic term)
+valediction|2
+(noun)|valedictory address|valedictory oration|valedictory|oratory (generic term)
+(noun)|farewell (generic term)|leave (generic term)|leave-taking (generic term)|parting (generic term)
+valedictorian|1
+(noun)|valedictory speaker|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+valedictory|3
+(adj)|farewell|leave|leave-taking|parting (related term)
+(adj)|exaugural (similar term)
+(noun)|valediction|valedictory address|valedictory oration|oratory (generic term)
+valedictory address|1
+(noun)|valediction|valedictory oration|valedictory|oratory (generic term)
+valedictory oration|1
+(noun)|valediction|valedictory address|valedictory|oratory (generic term)
+valedictory speaker|1
+(noun)|valedictorian|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+valence|1
+(noun)|valency|power (generic term)|powerfulness (generic term)
+valence electron|1
+(noun)|electron (generic term)|negatron (generic term)
+valencia|1
+(noun)|Valencia|city (generic term)|metropolis (generic term)|urban center (generic term)
+valencia orange|1
+(noun)|Valencia orange|sweet orange (generic term)
+valenciennes|2
+(noun)|Valenciennes|town (generic term)
+(noun)|Valenciennes|Valenciennes lace|pillow lace (generic term)|bobbin lace (generic term)
+valenciennes lace|1
+(noun)|Valenciennes|Valenciennes lace|pillow lace (generic term)|bobbin lace (generic term)
+valency|2
+(noun)|chemical phenomenon (generic term)
+(noun)|valence|power (generic term)|powerfulness (generic term)
+valent|1
+(adj)|power|powerfulness (related term)
+valentina tereshkova|1
+(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+valentina vladmirovna tereshkova|1
+(noun)|Tereshkova|Valentina Tereshkova|Valentina Vladmirovna Tereshkova|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+valentine|2
+(noun)|sweetheart (generic term)|sweetie (generic term)|steady (generic term)|truelove (generic term)
+(noun)|Valentine|greeting card (generic term)
+valentine's day|1
+(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day (generic term)
+valentine day|1
+(noun)|Valentine Day|Valentine's Day|Saint Valentine's Day|St Valentine's Day|February 14|day (generic term)
+valerian|1
+(noun)|flower (generic term)
+valerian family|1
+(noun)|Valerianaceae|family Valerianaceae|asterid dicot family (generic term)
+valeriana|1
+(noun)|Valeriana|genus Valeriana|asterid dicot genus (generic term)
+valeriana officinalis|1
+(noun)|common valerian|garden heliotrope|Valeriana officinalis|valerian (generic term)
+valerianaceae|1
+(noun)|Valerianaceae|family Valerianaceae|valerian family|asterid dicot family (generic term)
+valerianella|1
+(noun)|Valerianella|genus Valerianella|asterid dicot genus (generic term)
+valerianella locusta|1
+(noun)|common corn salad|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad (generic term)
+valerianella olitoria|1
+(noun)|common corn salad|lamb's lettuce|Valerianella olitoria|Valerianella locusta|corn salad (generic term)
+valeric acid|1
+(noun)|pentanoic acid|carboxylic acid (generic term)
+valet|2
+(noun)|valet de chambre|gentleman|gentleman's gentleman|man|manservant (generic term)|body servant (generic term)
+(verb)|serve (generic term)|attend to (generic term)|wait on (generic term)|attend (generic term)|assist (generic term)
+valet de chambre|1
+(noun)|valet|gentleman|gentleman's gentleman|man|manservant (generic term)|body servant (generic term)
+valet parking|1
+(noun)|service (generic term)
+valetta|1
+(noun)|Valletta|Valetta|capital of Malta|national capital (generic term)
+valetudinarian|2
+(adj)|valetudinary|sick person|diseased person|sufferer (related term)
+(noun)|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+valetudinarianism|1
+(noun)|infirmity|frailty|debility|feebleness|frailness|unfitness (generic term)|softness (generic term)|poor shape (generic term)|bad condition (generic term)
+valetudinary|1
+(adj)|valetudinarian|sick person|diseased person|sufferer (related term)
+valhalla|1
+(noun)|Valhalla|Walhalla|Heaven (generic term)
+vali|1
+(noun)|Vali|Norse deity (generic term)
+valiance|1
+(noun)|heroism|gallantry|valor|valour|valorousness|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+valiancy|1
+(noun)|heroism|gallantry|valor|valour|valorousness|valiance|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+valiant|1
+(adj)|valorous|brave (similar term)|courageous (similar term)
+valiantly|1
+(adv)|valorously
+valid|2
+(adj)|binding (similar term)|legal (similar term)|sound (similar term)|effectual (similar term)|legitimate (similar term)|logical (similar term)|reasoned (similar term)|sound (similar term)|well-grounded (similar term)|validated (similar term)|legitimate (related term)|reasonable (related term)|sensible (related term)|invalid (antonym)
+(adj)|unexpired (similar term)
+validate|4
+(verb)|formalize|formalise|authorize (generic term)|authorise (generic term)|pass (generic term)|clear (generic term)|invalidate (antonym)
+(verb)|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)|invalidate (antonym)
+(verb)|corroborate|confirm (generic term)|reassert (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|invalidate (antonym)
+validated|1
+(adj)|valid (similar term)
+validating|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validatory|verificatory|verifying|supportive (similar term)
+validation|2
+(noun)|proof|substantiation|determination (generic term)|finding (generic term)
+(noun)|establishment|proof (generic term)|cogent evidence (generic term)
+validatory|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|verificatory|verifying|supportive (similar term)
+validity|2
+(noun)|cogency|rigor|rigour|credibility (generic term)|credibleness (generic term)|believability (generic term)
+(noun)|validness|legality (generic term)
+validly|1
+(adv)|with validity
+validness|1
+(noun)|validity|legality (generic term)
+valine|1
+(noun)|essential amino acid (generic term)
+valise|1
+(noun)|overnighter (generic term)|overnight bag (generic term)|overnight case (generic term)
+valium|1
+(noun)|diazepam|Valium|benzodiazepine (generic term)
+valkyrie|1
+(noun)|Valkyrie|mythical being (generic term)
+valle d'aosta|1
+(noun)|Valle D'Aosta|Italian region (generic term)
+vallecula|1
+(noun)|groove|body part (generic term)
+valletta|1
+(noun)|Valletta|Valetta|capital of Malta|national capital (generic term)
+valley|1
+(noun)|vale|natural depression (generic term)|depression (generic term)
+valley fever|1
+(noun)|coccidioidomycosis|coccidiomycosis|desert rheumatism|fungal infection (generic term)|mycosis (generic term)
+valley girl|1
+(noun)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+valley oak|1
+(noun)|California white oak|valley white oak|roble|Quercus lobata|white oak (generic term)
+valley pocket gopher|1
+(noun)|Thomomys bottae|gopher (generic term)|pocket gopher (generic term)|pouched rat (generic term)
+valley white oak|1
+(noun)|California white oak|valley oak|roble|Quercus lobata|white oak (generic term)
+vallisneria|1
+(noun)|Vallisneria|genus Vallisneria|monocot genus (generic term)|liliopsid genus (generic term)
+vallisneria spiralis|1
+(noun)|tape grass|eelgrass|wild celery|Vallisneria spiralis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+valmy|1
+(noun)|Valmy|battle of Valmy|pitched battle (generic term)
+valois|1
+(noun)|Valois|dynasty (generic term)
+valor|1
+(noun)|heroism|gallantry|valour|valorousness|valiance|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+valorous|1
+(adj)|valiant|brave (similar term)|courageous (similar term)
+valorously|1
+(adv)|valiantly
+valorousness|1
+(noun)|heroism|gallantry|valor|valour|valiance|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+valour|1
+(noun)|heroism|gallantry|valor|valorousness|valiance|valiancy|courage (generic term)|courageousness (generic term)|bravery (generic term)|braveness (generic term)
+valparaiso|1
+(noun)|Valparaiso|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+valproic acid|1
+(noun)|Depokene|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+valse|1
+(noun)|waltz|ballroom dancing (generic term)|ballroom dance (generic term)
+valuable|3
+(adj)|blue-chip (similar term)|invaluable (similar term)|priceless (similar term)|precious (similar term)|rich (similar term)|semiprecious (similar term)|valued (similar term)|worth (similar term)|expensive (related term)|important (related term)|of import (related term)|worthy (related term)|worthless (antonym)
+(adj)|worthful|worthy (similar term)
+(noun)|treasure (generic term)|hoarded wealth (generic term)
+valuableness|1
+(noun)|invaluableness|preciousness|pricelessness|value (generic term)
+valuate|1
+(verb)|measure|evaluate|assess|appraise|value|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+valuation|2
+(noun)|evaluation|rating|appraisal (generic term)|assessment (generic term)
+(noun)|price (generic term)|terms (generic term)|damage (generic term)
+valuation account|1
+(noun)|valuation reserve|allowance|allowance account|reserve account (generic term)|reserve fund (generic term)
+valuation reserve|1
+(noun)|valuation account|allowance|allowance account|reserve account (generic term)|reserve fund (generic term)
+valuator|1
+(noun)|appraiser|evaluator (generic term)|judge (generic term)
+value|11
+(noun)|numerical quantity (generic term)
+(noun)|worth (generic term)
+(noun)|economic value|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|color property (generic term)
+(noun)|time value|note value|duration (generic term)|continuance (generic term)
+(noun)|ideal (generic term)
+(verb)|determine (generic term)|set (generic term)
+(verb)|prize|treasure|appreciate|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+(verb)|respect|esteem|prize|prise|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)|disesteem (antonym)|disrespect (antonym)
+(verb)|measure|evaluate|valuate|assess|appraise|evaluate (generic term)|pass judgment (generic term)|judge (generic term)
+(verb)|rate|measure (generic term)|evaluate (generic term)|valuate (generic term)|assess (generic term)|appraise (generic term)|value (generic term)
+value-added tax|1
+(noun)|VAT|ad valorem tax|excise (generic term)|excise tax (generic term)
+value-system|1
+(noun)|ethic|moral principle|value orientation|principle (generic term)
+value judgement|1
+(noun)|value judgment|judgment (generic term)|judgement (generic term)|assessment (generic term)
+value judgment|1
+(noun)|value judgement|judgment (generic term)|judgement (generic term)|assessment (generic term)
+value orientation|1
+(noun)|ethic|moral principle|value-system|principle (generic term)
+value statement|1
+(noun)|statement (generic term)
+valued|2
+(adj)|quantitative (similar term)
+(adj)|valuable (similar term)
+valueless|1
+(adj)|worthless (similar term)
+valuelessness|1
+(noun)|worthlessness (generic term)|ineptitude (generic term)
+valuer|1
+(noun)|appraiser (generic term)|valuator (generic term)
+values|1
+(noun)|belief (generic term)
+valve|3
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(noun)|device (generic term)
+(noun)|control (generic term)|controller (generic term)
+valve-in-head engine|1
+(noun)|internal-combustion engine (generic term)|ICE (generic term)
+valve rocker|1
+(noun)|rocker arm|lever (generic term)
+valved|1
+(adj)|device (related term)
+valvelet|1
+(noun)|valvule|valvula|valve (generic term)
+valvotomy|1
+(noun)|valvulotomy|incision (generic term)|section (generic term)|surgical incision (generic term)
+valvula|1
+(noun)|valvule|valvelet|valve (generic term)
+valvular|1
+(adj)|control|controller (related term)
+valvular heart disease|1
+(noun)|heart disease (generic term)|heart condition (generic term)|cardiopathy (generic term)
+valvular incompetence|1
+(noun)|incompetence (generic term)
+valvule|1
+(noun)|valvelet|valvula|valve (generic term)
+valvulitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+valvulotomy|1
+(noun)|valvotomy|incision (generic term)|section (generic term)|surgical incision (generic term)
+vambrace|1
+(noun)|lower cannon|cannon (generic term)
+vamoose|1
+(verb)|decamp|skip|leave (generic term)|go forth (generic term)|go away (generic term)
+vamp|7
+(noun)|coquette|flirt|vamper|minx|tease|prickteaser|woman (generic term)|adult female (generic term)
+(noun)|accompaniment (generic term)|musical accompaniment (generic term)|backup (generic term)|support (generic term)
+(noun)|piece of leather (generic term)
+(verb)|vamp up|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|vamp up|patch (generic term)|piece (generic term)
+(verb)|chat up (generic term)|flirt (generic term)|dally (generic term)|butterfly (generic term)|coquet (generic term)|coquette (generic term)|romance (generic term)|philander (generic term)|mash (generic term)
+(verb)|revamp|repair (generic term)|mend (generic term)|fix (generic term)|bushel (generic term)|doctor (generic term)|furbish up (generic term)|restore (generic term)|touch on (generic term)
+vamp up|2
+(verb)|vamp|fabricate (generic term)|manufacture (generic term)|cook up (generic term)|make up (generic term)|invent (generic term)
+(verb)|vamp|patch (generic term)|piece (generic term)
+vamper|1
+(noun)|coquette|flirt|vamp|minx|tease|prickteaser|woman (generic term)|adult female (generic term)
+vampire|1
+(noun)|lamia|evil spirit (generic term)
+vampire bat|1
+(noun)|true vampire bat|carnivorous bat (generic term)|microbat (generic term)
+vampirism|2
+(noun)|belief (generic term)
+(noun)|action (generic term)
+van|4
+(noun)|avant-garde|vanguard|new wave|artistic movement (generic term)|art movement (generic term)
+(noun)|vanguard|army unit (generic term)
+(noun)|caravan|camper (generic term)|camping bus (generic term)|motor home (generic term)
+(noun)|truck (generic term)|motortruck (generic term)
+van allen|1
+(noun)|Van Allen|James Alfred Van Allen|physicist (generic term)
+van allen belt|1
+(noun)|Van Allen belt|belt (generic term)
+van beethoven|1
+(noun)|Beethoven|van Beethoven|Ludwig van Beethoven|composer (generic term)
+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 (generic term)
+van buren|1
+(noun)|Van Buren|Martin Van Buren|President Van Buren|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+van de graaff|1
+(noun)|Van de Graaff|Robert Van de Graaff|Robert Jemison Van de Graaff|physicist (generic term)
+van de graaff generator|1
+(noun)|electrostatic generator|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device (generic term)
+van de velde|1
+(noun)|van de Velde|Henri van de Velde|Henri Clemens van de Velde|architect (generic term)|designer (generic term)
+van der waal's forces|1
+(noun)|van der Waal's forces|attraction (generic term)|attractive force (generic term)
+van der waals|1
+(noun)|van der Waals|Johannes van der Waals|Johannes Diderik van der Waals|physicist (generic term)
+van doren|1
+(noun)|Van Doren|Carl Van Doren|Carl Clinton Van Doren|writer (generic term)|author (generic term)|literary critic (generic term)
+van dyck|1
+(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master (generic term)
+van eyck|1
+(noun)|Eyck|van Eyck|Jan van Eyck|old master (generic term)
+van gogh|1
+(noun)|van Gogh|Vincent van Gogh|Gogh|painter (generic term)
+van vleck|1
+(noun)|Van Vleck|John Van Vleck|John Hasbrouck Van Vleck|physicist (generic term)
+van wyck brooks|1
+(noun)|Brooks|Van Wyck Brooks|literary critic (generic term)
+vanadate|1
+(noun)|salt (generic term)
+vanadic acid|1
+(noun)|vanadium pentoxide|oxyacid (generic term)|oxygen acid (generic term)
+vanadinite|1
+(noun)|mineral (generic term)
+vanadium|1
+(noun)|V|atomic number 23|metallic element (generic term)|metal (generic term)
+vanadium pentoxide|1
+(noun)|vanadic acid|oxyacid (generic term)|oxygen acid (generic term)
+vanadium steel|1
+(noun)|alloy steel (generic term)
+vanbrugh|1
+(noun)|Vanbrugh|John Vanbrugh|Sir John Vanbrigh|architect (generic term)|designer (generic term)
+vancocin|1
+(noun)|vancomycin|Vancocin|antibiotic (generic term)|antibiotic drug (generic term)
+vancomycin|1
+(noun)|Vancocin|antibiotic (generic term)|antibiotic drug (generic term)
+vancouver|3
+(noun)|Vancouver|George Vancouver|navigator (generic term)
+(noun)|Vancouver|town (generic term)
+(noun)|Vancouver|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+vancouver island|1
+(noun)|Vancouver Island|island (generic term)
+vanda|1
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+vanda coerulea|1
+(noun)|blue orchid|Vanda coerulea|vanda (generic term)
+vandal|2
+(noun)|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+(noun)|Vandal|savage (generic term)|barbarian (generic term)
+vandalise|1
+(verb)|vandalize|destroy (generic term)|ruin (generic term)
+vandalism|1
+(noun)|hooliganism|malicious mischief|mischief (generic term)|mischief-making (generic term)|mischievousness (generic term)|deviltry (generic term)|devilry (generic term)|devilment (generic term)|rascality (generic term)|roguery (generic term)|roguishness (generic term)|shenanigan (generic term)|destruction (generic term)|devastation (generic term)
+vandalize|1
+(verb)|vandalise|destroy (generic term)|ruin (generic term)
+vanderbilt|1
+(noun)|Vanderbilt|Cornelius Vanderbilt|Commodore Vanderbilt|financier (generic term)|moneyman (generic term)|philanthropist (generic term)|altruist (generic term)
+vandyke|2
+(noun)|Vandyke|Van Dyck|Anthony Vandyke|Sir Anthony Vandyke|old master (generic term)
+(noun)|vandyke beard|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+vandyke beard|1
+(noun)|vandyke|beard (generic term)|face fungus (generic term)|whiskers (generic term)
+vandyke brown|1
+(noun)|Vandyke brown|brown (generic term)|brownness (generic term)
+vane|4
+(noun)|blade|rotating mechanism (generic term)
+(noun)|weathervane|weather vane|wind vane|mechanical device (generic term)
+(noun)|fin (generic term)
+(noun)|web|blade (generic term)
+vaned|1
+(adj)|fledged|feathered (similar term)
+vanellus|1
+(noun)|Vanellus|genus Vanellus|bird genus (generic term)
+vanern|1
+(noun)|Lake Vanern|Vanern|lake (generic term)
+vanessa|1
+(noun)|Vanessa|genus Vanessa|arthropod genus (generic term)
+vanessa atalanta|1
+(noun)|red admiral|Vanessa atalanta|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+vanessa bell|1
+(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter (generic term)
+vanessa stephen|1
+(noun)|Bell|Vanessa Bell|Vanessa Stephen|painter (generic term)
+vanessa virginiensis|1
+(noun)|painted beauty|Vanessa virginiensis|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+vanguard|3
+(noun)|van|army unit (generic term)
+(noun)|avant-garde|van|new wave|artistic movement (generic term)|art movement (generic term)
+(noun)|forefront|cutting edge|position (generic term)|view (generic term)|perspective (generic term)
+vanguards of conquest|1
+(noun)|al-Jihad|Egyptian Islamic Jihad|Islamic Jihad|Vanguards of Conquest|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+vangueria|1
+(noun)|Vangueria|genus Vangueria|asterid dicot genus (generic term)
+vangueria infausta|1
+(noun)|wild medlar|wild medlar tree|medlar|Vangueria infausta|tree (generic term)
+vangueria madagascariensis|1
+(noun)|Spanish tamarind|Vangueria madagascariensis|tree (generic term)
+vanilla|5
+(adj)|flavorer|flavourer|flavoring|flavouring|seasoner|seasoning (related term)
+(adj)|plain (similar term)
+(noun)|orchid (generic term)|orchidaceous plant (generic term)
+(noun)|vanilla extract|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+(noun)|relish (generic term)|flavor (generic term)|flavour (generic term)|sapidity (generic term)|savor (generic term)|savour (generic term)|smack (generic term)|nip (generic term)|tang (generic term)
+vanilla-scented|1
+(adj)|odorous (similar term)
+vanilla bean|1
+(noun)|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+vanilla extract|1
+(noun)|vanilla|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+vanilla ice cream|1
+(noun)|ice cream (generic term)|icecream (generic term)
+vanilla orchid|1
+(noun)|Vanilla planifolia|vanilla (generic term)
+vanilla planifolia|1
+(noun)|vanilla orchid|Vanilla planifolia|vanilla (generic term)
+vanilla pudding|1
+(noun)|pudding (generic term)
+vanillin|1
+(noun)|compound (generic term)|chemical compound (generic term)
+vanir|1
+(noun)|Vanir|Norse deity (generic term)
+vanish|5
+(verb)|disappear|go away|appear (antonym)
+(verb)|disappear|go away|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)
+(verb)|fly|fell|elapse (generic term)|lapse (generic term)|pass (generic term)|slip by (generic term)|glide by (generic term)|slip away (generic term)|go by (generic term)|slide by (generic term)|go along (generic term)
+(verb)|disappear|end (generic term)|stop (generic term)|finish (generic term)|terminate (generic term)|cease (generic term)|appear (antonym)
+(verb)|fly|vaporize|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+vanished|1
+(adj)|nonexistent (similar term)
+vanisher|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+vanishing|3
+(adj)|disappearing
+(noun)|disappearance (generic term)
+(noun)|disappearance (generic term)|disappearing (generic term)
+vanishing cream|1
+(noun)|cold cream|coldcream|face cream|cream (generic term)|ointment (generic term)|emollient (generic term)
+vanishing point|2
+(noun)|point (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+vanity|4
+(noun)|amour propre|conceit|self-love|pride (generic term)|pridefulness (generic term)
+(noun)|emptiness|worthlessness (generic term)|ineptitude (generic term)
+(noun)|conceit|conceitedness|pride (generic term)
+(noun)|dressing table|dresser|toilet table|table (generic term)
+vanity fair|1
+(noun)|life style (generic term)|life-style (generic term)|lifestyle (generic term)|modus vivendi (generic term)
+vannevar bush|1
+(noun)|Bush|Vannevar Bush|electrical engineer (generic term)
+vanquish|1
+(verb)|beat|beat out|crush|shell|trounce|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+vanquishable|1
+(adj)|beatable|vincible|conquerable (similar term)
+vanquisher|1
+(noun)|conqueror|victor (generic term)|master (generic term)|superior (generic term)
+vantage|2
+(noun)|position (generic term)|place (generic term)
+(noun)|advantage|asset (generic term)|plus (generic term)|disadvantage (antonym)
+vantage point|1
+(noun)|viewpoint|vantage (generic term)
+vanua levu|1
+(noun)|Vanua Levu|island (generic term)
+vanuatu|1
+(noun)|Vanuatu|Republic of Vanuatu|New Hebrides|country (generic term)|state (generic term)|land (generic term)
+vanzetti|1
+(noun)|Vanzetti|Bartolomeo Vanzetti|anarchist (generic term)|nihilist (generic term)|syndicalist (generic term)
+vapid|2
+(adj)|bland|flat|flavorless|flavourless|insipid|savorless|savourless|tasteless (similar term)
+(adj)|unstimulating (similar term)|unexciting (similar term)
+vapidity|1
+(noun)|jejunity|jejuneness|tameness|vapidness|dullness (generic term)
+vapidness|1
+(noun)|jejunity|jejuneness|tameness|vapidity|dullness (generic term)
+vapor|2
+(noun)|vapour|suspension (generic term)
+(noun)|vaporization|vaporisation|vapour|evaporation|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+vapor bath|2
+(noun)|steam bath|steam room|vapour bath|room (generic term)
+(noun)|Turkish bath|steam bath|vapour bath|washup (generic term)|bathing (generic term)
+vapor density|1
+(noun)|vapour density|relative density (generic term)
+vapor lock|1
+(noun)|vapour lock|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+vapor pressure|1
+(noun)|vapour pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+vaporific|2
+(adj)|evaporable|vapourific|vaporizable|vapourisable|volatilizable|volatilisable|volatile (similar term)
+(adj)|vapourific|vaporish|vapourish|vaporous|vapourous|gaseous (similar term)
+vaporing|1
+(noun)|brag|bragging|crow|crowing|line-shooting|gasconade|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+vaporisation|2
+(noun)|vaporization|vapor|vapour|evaporation|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+(noun)|vaporization|annihilation (generic term)|obliteration (generic term)
+vaporise|4
+(verb)|evaporate|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|evaporate|change (generic term)
+(verb)|gasify|vaporize|aerify|change integrity (generic term)
+(verb)|evaporate|vaporize|change integrity (generic term)
+vaporiser|1
+(noun)|vaporizer|device (generic term)
+vaporish|1
+(adj)|vaporific|vapourific|vapourish|vaporous|vapourous|gaseous (similar term)
+vaporizable|1
+(adj)|evaporable|vaporific|vapourific|vapourisable|volatilizable|volatilisable|volatile (similar term)
+vaporization|2
+(noun)|vaporisation|annihilation (generic term)|obliteration (generic term)
+(noun)|vaporisation|vapor|vapour|evaporation|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+vaporize|4
+(verb)|gasify|vaporise|aerify|change integrity (generic term)
+(verb)|zap|kill (generic term)
+(verb)|evaporate|vaporise|change integrity (generic term)
+(verb)|vanish|fly|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+vaporized|1
+(adj)|gasified|vapourised|volatilized|volatilised|gaseous (similar term)
+vaporizer|1
+(noun)|vaporiser|device (generic term)
+vaporous|3
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|see-through|sheer|transparent|vapourous|cobwebby|thin (similar term)
+(adj)|vaporific|vapourific|vaporish|vapourish|vapourous|gaseous (similar term)
+(adj)|miasmal|miasmic|vapourous|cloudy (similar term)
+vaporousness|1
+(noun)|haziness|mistiness|steaminess|vapourousness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+vapors|1
+(noun)|blues|blue devils|megrims|vapours|depression (generic term)
+vapour|2
+(noun)|vapor|suspension (generic term)
+(noun)|vaporization|vaporisation|vapor|evaporation|phase change (generic term)|phase transition (generic term)|state change (generic term)|physical change (generic term)
+vapour bath|2
+(noun)|steam bath|steam room|vapor bath|room (generic term)
+(noun)|Turkish bath|steam bath|vapor bath|washup (generic term)|bathing (generic term)
+vapour density|1
+(noun)|vapor density|relative density (generic term)
+vapour lock|1
+(noun)|vapor lock|blockage (generic term)|block (generic term)|closure (generic term)|occlusion (generic term)|stop (generic term)|stoppage (generic term)
+vapour pressure|1
+(noun)|vapor pressure|pressure (generic term)|pressure level (generic term)|force per unit area (generic term)
+vapourific|2
+(adj)|evaporable|vaporific|vaporizable|vapourisable|volatilizable|volatilisable|volatile (similar term)
+(adj)|vaporific|vaporish|vapourish|vaporous|vapourous|gaseous (similar term)
+vapourisable|1
+(adj)|evaporable|vaporific|vapourific|vaporizable|volatilizable|volatilisable|volatile (similar term)
+vapourised|1
+(adj)|gasified|vaporized|volatilized|volatilised|gaseous (similar term)
+vapourish|1
+(adj)|vaporific|vapourific|vaporish|vaporous|vapourous|gaseous (similar term)
+vapourous|3
+(adj)|diaphanous|filmy|gauzy|gauze-like|gossamer|see-through|sheer|transparent|vaporous|cobwebby|thin (similar term)
+(adj)|vaporific|vapourific|vaporish|vapourish|vaporous|gaseous (similar term)
+(adj)|miasmal|miasmic|vaporous|cloudy (similar term)
+vapourousness|1
+(noun)|haziness|mistiness|steaminess|vaporousness|cloudiness (generic term)|murkiness (generic term)|muddiness (generic term)
+vapours|1
+(noun)|blues|blue devils|megrims|vapors|depression (generic term)
+vaquero|1
+(noun)|buckaroo|buckeroo|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+vaquita|1
+(noun)|Phocaena sinus|porpoise (generic term)
+var|1
+(noun)|volt-ampere|power unit (generic term)
+var.|1
+(noun)|form|variant|strain|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+vara|1
+(noun)|linear unit (generic term)
+varan|1
+(noun)|monitor|monitor lizard|lizard (generic term)
+varanidae|1
+(noun)|Varanidae|family Varanidae|reptile family (generic term)
+varanus|1
+(noun)|Varanus|genus Varanus|reptile genus (generic term)
+varanus komodoensis|1
+(noun)|Komodo dragon|Komodo lizard|dragon lizard|giant lizard|Varanus komodoensis|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+varanus niloticus|1
+(noun)|African monitor|Varanus niloticus|monitor (generic term)|monitor lizard (generic term)|varan (generic term)
+vardenafil|1
+(noun)|Levitra|virility drug (generic term)|anti-impotence drug (generic term)
+varese|1
+(noun)|Varese|Edgar Varese|composer (generic term)
+vargas|1
+(noun)|Vargas|Getulio Dornelles Vargas|statesman (generic term)|solon (generic term)|national leader (generic term)
+vargas llosa|1
+(noun)|Vargas Llosa|Mario Vargas Llosa|Jorge Mario Pedro Vargas Llosa|writer (generic term)|author (generic term)
+variability|2
+(noun)|variableness|variance|changeableness (generic term)|changeability (generic term)|invariableness (antonym)|invariability (antonym)
+(noun)|unevenness|irregularity (generic term)|unregularity (generic term)|invariability (antonym)|evenness (antonym)
+variable|7
+(adj)|changeable (similar term)|uncertain (similar term)|unsettled (similar term)|covariant (similar term)|multivariate (similar term)|protean (similar term)|shifting (similar term)|variant (similar term)|versatile (similar term)|inconsistent (related term)|inconstant (related term)|invariable (antonym)
+(adj)|varying|varied (similar term)
+(adj)|adaptable (similar term)
+(noun)|thing (generic term)
+(noun)|variable quantity|quantity (generic term)
+(noun)|variable star|star (generic term)
+(noun)|symbol (generic term)
+variable-pitch propeller|1
+(noun)|propeller (generic term)|propellor (generic term)
+variable quantity|1
+(noun)|variable|quantity (generic term)
+variable resistor|1
+(noun)|rheostat|resistor (generic term)|resistance (generic term)
+variable star|1
+(noun)|variable|star (generic term)
+variableness|1
+(noun)|variability|variance|changeableness (generic term)|changeability (generic term)|invariableness (antonym)|invariability (antonym)
+variance|7
+(noun)|discrepancy|variant|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+(noun)|division|discord (generic term)|dissension (generic term)
+(noun)|moment (generic term)
+(noun)|discrepancy|disagreement|divergence|difference (generic term)
+(noun)|variability|variableness|changeableness (generic term)|changeability (generic term)|invariableness (antonym)|invariability (antonym)
+(noun)|dispensation (generic term)
+(noun)|variation|activity (generic term)
+variant|6
+(adj)|different (similar term)
+(adj)|variable (similar term)
+(noun)|discrepancy|variance|deviation (generic term)|divergence (generic term)|departure (generic term)|difference (generic term)
+(noun)|form|strain|var.|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|random variable|variate|stochastic variable|chance variable|variable (generic term)|variable quantity (generic term)
+(noun)|version|variation|edition|type (generic term)
+variate|1
+(noun)|random variable|variant|stochastic variable|chance variable|variable (generic term)|variable quantity (generic term)
+variation|11
+(noun)|fluctuation|change (generic term)|alteration (generic term)|modification (generic term)
+(noun)|variance|activity (generic term)
+(noun)|theme (generic term)|melodic theme (generic term)|musical theme (generic term)|idea (generic term)
+(noun)|version|variant|edition|type (generic term)
+(noun)|thing (generic term)
+(noun)|magnetic declination|magnetic variation|angle (generic term)
+(noun)|process (generic term)|physical process (generic term)
+(noun)|perturbation (generic term)
+(noun)|mutant|mutation|sport|organism (generic term)|being (generic term)
+(noun)|pas seul|dancing (generic term)|dance (generic term)|terpsichore (generic term)|saltation (generic term)
+(noun)|change (generic term)
+varicella|1
+(noun)|chickenpox|pox (generic term)
+varicella zoster virus|1
+(noun)|herpes (generic term)|herpes virus (generic term)
+varicelliform|1
+(adj)|pox (related term)
+varicocele|1
+(noun)|dilatation (generic term)|distension (generic term)|distention (generic term)
+varicolored|2
+(adj)|varicoloured|variegated|varied (similar term)
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicoloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+varicoloured|2
+(adj)|varicolored|variegated|varied (similar term)
+(adj)|motley|calico|multicolor|multi-color|multicolour|multi-colour|multicolored|multi-colored|multicoloured|multi-coloured|painted|particolored|particoloured|piebald|pied|varicolored|colored (similar term)|coloured (similar term)|colorful (similar term)
+varicose|1
+(adj)|unhealthy (similar term)
+varicose vein|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)|varicosity (generic term)
+varicosis|1
+(noun)|pathology (generic term)
+varicosity|1
+(noun)|varix (generic term)
+varied|3
+(adj)|many-sided (similar term)|multifaceted (similar term)|multifarious (similar term)|omnifarious (similar term)|varicolored (similar term)|varicoloured (similar term)|variegated (similar term)|variform (similar term)|varying (similar term)|variable (similar term)|versatile (similar term)|various (similar term)|different (related term)|heterogeneous (related term)|heterogenous (related term)|modified (related term)|unvaried (antonym)
+(adj)|wide-ranging|diversified (similar term)
+(adj)|changed (similar term)
+varied lorikeet|1
+(noun)|varied Lorikeet|Glossopsitta versicolor|lorikeet (generic term)
+variedness|1
+(noun)|variability (generic term)|variableness (generic term)|variance (generic term)|unvariedness (antonym)
+variegate|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vary|motley|diversify (generic term)
+variegated|1
+(adj)|varicolored|varicoloured|varied (similar term)
+variegated horsetail|1
+(noun)|variegated scouring rush|Equisetum variegatum|horsetail (generic term)
+variegated scouring rush|1
+(noun)|variegated horsetail|Equisetum variegatum|horsetail (generic term)
+variegation|2
+(noun)|variability (generic term)|variableness (generic term)|variance (generic term)
+(noun)|diversification|change (generic term)
+varietal|1
+(noun)|varietal wine|wine (generic term)|vino (generic term)|generic wine (antonym)|generic (antonym)
+varietal wine|1
+(noun)|varietal|wine (generic term)|vino (generic term)|generic wine (antonym)|generic (antonym)
+variety|6
+(noun)|assortment|mixture|mixed bag|miscellany|miscellanea|salmagundi|smorgasbord|potpourri|motley|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+(noun)|diverseness|diversity|multifariousness|heterogeneity (generic term)|heterogeneousness (generic term)
+(noun)|taxonomic group (generic term)|taxonomic category (generic term)|taxon (generic term)
+(noun)|variety show|show (generic term)
+(noun)|kind|sort|form|category (generic term)
+(noun)|change|difference (generic term)
+variety meat|1
+(noun)|organs|meat (generic term)
+variety show|1
+(noun)|variety|show (generic term)
+variform|1
+(adj)|varied (similar term)
+variola|1
+(noun)|smallpox|variola major|pox (generic term)
+variola major|2
+(noun)|smallpox|variola|pox (generic term)
+(noun)|variola major virus|variola virus (generic term)|smallpox virus (generic term)
+variola major virus|1
+(noun)|variola major|variola virus (generic term)|smallpox virus (generic term)
+variola minor|2
+(noun)|alastrim|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+(noun)|variola minor virus|variola virus (generic term)|smallpox virus (generic term)
+variola minor virus|1
+(noun)|variola minor|variola virus (generic term)|smallpox virus (generic term)
+variola vaccina|1
+(noun)|vaccinia|vaccina|variola vaccine|variola vaccinia|infection (generic term)
+variola vaccine|1
+(noun)|vaccinia|vaccina|variola vaccinia|variola vaccina|infection (generic term)
+variola vaccinia|1
+(noun)|vaccinia|vaccina|variola vaccine|variola vaccina|infection (generic term)
+variola virus|1
+(noun)|smallpox virus|poxvirus (generic term)
+variolar|1
+(adj)|variolic|variolous|pox (related term)
+variolation|1
+(noun)|variolization|inoculating (generic term)|vaccinating (generic term)
+variolic|1
+(adj)|variolar|variolous|pox (related term)
+variolization|1
+(noun)|variolation|inoculating (generic term)|vaccinating (generic term)
+variolous|1
+(adj)|variolar|variolic|pox (related term)
+variometer|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+variorum|1
+(noun)|variorum edition|edition (generic term)
+variorum edition|1
+(noun)|variorum|edition (generic term)
+various|4
+(adj)|assorted|different (similar term)
+(adj)|respective|several|individual (similar term)|single (similar term)
+(adj)|diverse|different (similar term)
+(adj)|versatile|varied (similar term)
+variously|1
+(adv)|diversely|multifariously
+variously-leaved pondweed|1
+(noun)|Potamogeton gramineous|pondweed (generic term)
+varix|1
+(noun)|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+varlet|2
+(noun)|rogue|knave|rascal|rapscallion|scalawag|scallywag|villain (generic term)|scoundrel (generic term)
+(noun)|page|attendant (generic term)|attender (generic term)|tender (generic term)
+varment|1
+(noun)|varmint|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+varmint|2
+(noun)|vermin|bad person (generic term)
+(noun)|varment|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+varna|2
+(noun)|Varna|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+(noun)|group (generic term)|grouping (generic term)
+varnish|2
+(noun)|paint (generic term)
+(verb)|seal|coat (generic term)|surface (generic term)
+varnish tree|2
+(noun)|candlenut|Aleurites moluccana|angiospermous tree (generic term)|flowering tree (generic term)
+(noun)|lacquer tree|Chinese lacquer tree|Japanese lacquer tree|Japanese varnish tree|Japanese sumac|Toxicodendron vernicifluum|Rhus verniciflua|poisonous plant (generic term)
+varnished|1
+(adj)|stained|painted (similar term)
+varnisher|1
+(noun)|finisher (generic term)
+varro|1
+(noun)|Varro|Marcus Terentius Varro|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+varsity|2
+(noun)|university (generic term)
+(noun)|first team|team (generic term)|squad (generic term)
+varsity letter|1
+(noun)|letter|award (generic term)|accolade (generic term)|honor (generic term)|honour (generic term)|laurels (generic term)
+varsity sock|1
+(noun)|athletic sock|sweat sock|sock (generic term)
+varuna|1
+(noun)|Varuna|Hindu deity (generic term)
+vary|4
+(verb)|change|alter
+(verb)|deviate|diverge|depart|differ (generic term)|conform (antonym)
+(verb)|differ (generic term)
+(verb)|variegate|motley|diversify (generic term)
+varying|1
+(adj)|variable|varied (similar term)
+varying hare|1
+(noun)|snowshoe hare|snowshoe rabbit|Lepus americanus|hare (generic term)
+vas|1
+(noun)|vessel|tube (generic term)|tube-shaped structure (generic term)
+vas deferens|1
+(noun)|ductus deferens|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+vasa brevis|1
+(noun)|short gastric artery|arteria gastrica breves|gastric artery (generic term)|arteria gastrica (generic term)
+vasa efferentia|1
+(noun)|tubule (generic term)
+vasa vasorum|1
+(noun)|blood vessel (generic term)
+vasarely|1
+(noun)|Vasarely|Viktor Vasarely|painter (generic term)
+vasari|1
+(noun)|Vasari|Giorgio Vasari|painter (generic term)|art historian (generic term)
+vasco da gamma|1
+(noun)|da Gamma|Vasco da Gamma|Gamma|navigator (generic term)
+vasco nunez de balboa|1
+(noun)|Balboa|Vasco Nunez de Balboa|navigator (generic term)
+vascular|1
+(adj)|tube|tube-shaped structure (related term)|avascular (antonym)
+vascular bundle|1
+(noun)|vascular strand|fibrovascular bundle|vascular tissue (generic term)
+vascular hemophilia|1
+(noun)|von Willebrand's disease|angiohemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+vascular plant|1
+(noun)|tracheophyte|plant (generic term)|flora (generic term)|plant life (generic term)
+vascular ray|1
+(noun)|medullary ray|vascular tissue (generic term)
+vascular spider|1
+(noun)|spider angioma|spider nevus|angioma (generic term)
+vascular strand|1
+(noun)|vascular bundle|fibrovascular bundle|vascular tissue (generic term)
+vascular structure|1
+(noun)|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+vascular system|1
+(noun)|system (generic term)
+vascular tissue|1
+(noun)|plant tissue (generic term)
+vascularisation|1
+(noun)|vascularization|organic process (generic term)|biological process (generic term)
+vascularise|2
+(verb)|vascularize|change (generic term)
+(verb)|vascularize|change (generic term)|alter (generic term)|modify (generic term)
+vascularity|1
+(noun)|property (generic term)
+vascularization|1
+(noun)|vascularisation|organic process (generic term)|biological process (generic term)
+vascularize|2
+(verb)|vascularise|change (generic term)
+(verb)|vascularise|change (generic term)|alter (generic term)|modify (generic term)
+vasculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vase|1
+(noun)|jar (generic term)
+vase-fine|1
+(noun)|leather flower|vase vine|Clematis viorna|clematis (generic term)
+vase-shaped|1
+(adj)|formed (similar term)
+vase vine|1
+(noun)|leather flower|vase-fine|Clematis viorna|clematis (generic term)
+vasectomise|1
+(verb)|vasectomize|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+vasectomize|1
+(verb)|vasectomise|sterilize (generic term)|sterilise (generic term)|desex (generic term)|unsex (generic term)|desexualize (generic term)|desexualise (generic term)|fix (generic term)
+vasectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)|surgical contraception (generic term)
+vaseline|1
+(noun)|Vaseline|petrolatum (generic term)|petroleum jelly (generic term)|mineral jelly (generic term)
+vasiform|1
+(adj)|tubular|cannular|tubelike|tube-shaped|hollow (similar term)
+vaslav nijinsky|1
+(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+vasoconstriction|1
+(noun)|constriction (generic term)
+vasoconstrictive|1
+(noun)|vasoconstrictor|pressor|agent (generic term)
+vasoconstrictor|1
+(noun)|vasoconstrictive|pressor|agent (generic term)
+vasodilation|1
+(noun)|dilation (generic term)|dilatation (generic term)
+vasodilative|1
+(noun)|vasodilator|dilator (generic term)
+vasodilator|1
+(noun)|vasodilative|dilator (generic term)
+vasomax|1
+(noun)|phentolamine|Vasomax|virility drug (generic term)|anti-impotence drug (generic term)
+vasomotor|1
+(adj)|constriction (related term)|dilation|dilatation (related term)
+vasopressin|1
+(noun)|antidiuretic hormone|ADH|Pitressin|hormone (generic term)|endocrine (generic term)|internal secretion (generic term)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+vasopressor|1
+(noun)|vasoconstrictor (generic term)|vasoconstrictive (generic term)|pressor (generic term)
+vasosection|1
+(noun)|vasotomy|incision (generic term)|section (generic term)|surgical incision (generic term)
+vasotec|1
+(noun)|enalapril|Vasotec|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+vasotomy|1
+(noun)|vasosection|incision (generic term)|section (generic term)|surgical incision (generic term)
+vasovasostomy|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+vasovesiculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vassal|1
+(noun)|liege|liegeman|liege subject|feudatory|follower (generic term)
+vassalage|1
+(noun)|serfdom|serfhood|bondage (generic term)|slavery (generic term)|thrall (generic term)|thralldom (generic term)|thraldom (generic term)
+vast|1
+(adj)|huge|immense|Brobdingnagian|large (similar term)|big (similar term)
+vastly|1
+(adv)|immensely
+vastness|1
+(noun)|enormousness|grandness|greatness|immenseness|immensity|sizeableness|wideness|largeness (generic term)|bigness (generic term)
+vat|2
+(noun)|VAT|value-added tax|ad valorem tax|excise (generic term)|excise tax (generic term)
+(noun)|tub|vessel (generic term)
+vat color|1
+(noun)|vat dye|dye (generic term)|dyestuff (generic term)
+vat dye|1
+(noun)|vat color|dye (generic term)|dyestuff (generic term)
+vatic|1
+(adj)|divinatory|mantic|sibylline|sibyllic|vatical|prophetic (similar term)|prophetical (similar term)
+vatical|1
+(adj)|divinatory|mantic|sibylline|sibyllic|vatic|prophetic (similar term)|prophetical (similar term)
+vatican|1
+(noun)|Vatican|Vatican Palace|residence (generic term)
+vatican city|1
+(noun)|Vatican City|Citta del Vaticano|city (generic term)|metropolis (generic term)|urban center (generic term)
+vatican council|1
+(noun)|Vatican Council|council (generic term)
+vatican i|1
+(noun)|First Vatican Council|Vatican I|Vatican Council (generic term)
+vatican ii|1
+(noun)|Second Vatican Council|Vatican II|Vatican Council (generic term)
+vatican palace|1
+(noun)|Vatican|Vatican Palace|residence (generic term)
+vaticinate|2
+(verb)|prophesy|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)
+(verb)|prophesy (generic term)|vaticinate (generic term)
+vaticination|1
+(noun)|prophecy|prognostication|prediction (generic term)|anticipation (generic term)|prevision (generic term)
+vaticinator|1
+(noun)|prophet|prophesier|oracle|seer|diviner (generic term)
+vaudeville|1
+(noun)|music hall|variety show (generic term)|variety (generic term)
+vaudeville theater|1
+(noun)|music hall|vaudeville theatre|theater (generic term)|theatre (generic term)|house (generic term)
+vaudeville theatre|1
+(noun)|music hall|vaudeville theater|theater (generic term)|theatre (generic term)|house (generic term)
+vaudevillian|1
+(noun)|performer (generic term)|performing artist (generic term)
+vaudois|1
+(noun)|Waldenses|Vaudois|sect (generic term)|religious sect (generic term)|religious order (generic term)
+vaughan|1
+(noun)|Vaughan|Sarah Vaughan|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+vaughan williams|1
+(noun)|Vaughan Williams|Ralph Vaughan Williams|composer (generic term)
+vault|6
+(noun)|burial vault|burial chamber (generic term)|sepulcher (generic term)|sepulchre (generic term)|sepulture (generic term)
+(noun)|bank vault|strongroom (generic term)
+(noun)|roof (generic term)
+(noun)|hurdle|jump (generic term)|jumping (generic term)
+(verb)|overleap|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+(verb)|jump (generic term)|leap (generic term)|bound (generic term)|spring (generic term)
+vault of heaven|1
+(noun)|celestial sphere|sphere|empyrean|firmament|heavens|welkin|surface (generic term)
+vaulted|1
+(adj)|domed|rounded (similar term)
+vaulter|1
+(noun)|pole vaulter|pole jumper|athlete (generic term)|jock (generic term)
+vaulting|3
+(adj)|overreaching|bold (similar term)
+(noun)|structure (generic term)|construction (generic term)
+(noun)|curvet|dressage (generic term)
+vaulting horse|1
+(noun)|long horse|buck|horse (generic term)|gymnastic horse (generic term)
+vaunt|2
+(noun)|boast (generic term)|boasting (generic term)|self-praise (generic term)|jactitation (generic term)
+(verb)|boast|tout|swash|shoot a line|brag|gas|blow|bluster|gasconade|overstate (generic term)|exaggerate (generic term)|overdraw (generic term)|hyperbolize (generic term)|hyerbolise (generic term)|magnify (generic term)|amplify (generic term)
+vaunter|1
+(noun)|bragger|braggart|boaster|blowhard|line-shooter|egotist (generic term)|egoist (generic term)|swellhead (generic term)
+vauntingly|1
+(adv)|boastfully|big|large
+vaux|1
+(noun)|Vaux|Calvert Vaux|landscape architect (generic term)|landscape gardener (generic term)|landscaper (generic term)|landscapist (generic term)
+vayu|1
+(noun)|Vayu|Hindu deity (generic term)
+vcr|1
+(noun)|videocassette recorder|VCR|tape recorder (generic term)|tape machine (generic term)
+vd|1
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+vdu|1
+(noun)|visual display unit|VDU|display (generic term)|presentation (generic term)
+veadar|1
+(noun)|Veadar|Adar Sheni|Jewish calendar month (generic term)
+veal|1
+(noun)|veau|meat (generic term)
+veal cordon bleu|1
+(noun)|dish (generic term)
+veal parmesan|1
+(noun)|veal parmigiana|dish (generic term)
+veal parmigiana|1
+(noun)|veal parmesan|dish (generic term)
+veal roast|1
+(noun)|roast veal|roast (generic term)|joint (generic term)
+veal scallopini|1
+(noun)|scallopine (generic term)|scallopini (generic term)
+veau|1
+(noun)|veal|meat (generic term)
+veblen|2
+(noun)|Veblen|Thorstein Veblen|Thorstein Bunde Veblen|economist (generic term)|economic expert (generic term)
+(noun)|Veblen|Oswald Veblen|mathematician (generic term)
+vector|3
+(noun)|variable (generic term)|variable quantity (generic term)
+(noun)|straight line (generic term)
+(noun)|transmitter|agent (generic term)
+vector-borne transmission|1
+(noun)|indirect transmission (generic term)
+vector algebra|1
+(noun)|algebra (generic term)
+vector decomposition|1
+(noun)|decomposition|vector algebra (generic term)
+vector product|1
+(noun)|cross product|vector (generic term)
+vector sum|1
+(noun)|resultant|vector (generic term)
+veda|1
+(noun)|Vedic literature|Veda|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+vedalia|1
+(noun)|Rodolia cardinalis|ladybug (generic term)|ladybeetle (generic term)|lady beetle (generic term)|ladybird (generic term)|ladybird beetle (generic term)
+vedanga|1
+(noun)|Vedanga|Vedic literature (generic term)|Veda (generic term)
+vedanta|1
+(noun)|Vedanta|Hinduism (generic term)|Hindooism (generic term)
+vedic|1
+(adj)|Vedic|sacred text|sacred writing|religious writing|religious text (related term)
+vedic literature|1
+(noun)|Vedic literature|Veda|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+vedism|1
+(noun)|Vedism|Hinduism (generic term)|Hindooism (generic term)
+vedist|1
+(noun)|Vedist|scholar (generic term)|scholarly person (generic term)|bookman (generic term)|student (generic term)
+veer|2
+(verb)|swerve|sheer|curve|trend|slue|slew|cut|turn (generic term)
+(verb)|switch (generic term)|change over (generic term)|shift (generic term)|back (antonym)
+veering|1
+(noun)|swerve|swerving|turn (generic term)|turning (generic term)
+veery|1
+(noun)|Wilson's thrush|Hylocichla fuscescens|thrush (generic term)
+vega|2
+(noun)|Vega|Lope de Vega|Lope Felix de Vega Carpio|dramatist (generic term)|playwright (generic term)
+(noun)|Vega|binary star (generic term)|binary (generic term)|double star (generic term)
+vegan|1
+(noun)|vegetarian (generic term)
+vege out|1
+(verb)|vegetate|relax (generic term)|loosen up (generic term)|unbend (generic term)|unwind (generic term)|decompress (generic term)|slow down (generic term)
+vegetable|3
+(adj)|banana-like (similar term)|bean-like (similar term)|blackberry-like (similar term)|branchlike (similar term)|branch-like (similar term)|cabbage-like (similar term)|cherry-like (similar term)|crabapple-like (similar term)|garlic-like (similar term)|gooseberry-like (similar term)|gourd-like (similar term)|melon-like (similar term)|mosslike (similar term)|moss-like (similar term)|mushroom-shaped (similar term)|onion-like (similar term)|parsley-like (similar term)|plant-like (similar term)|plum-shaped (similar term)|rooted (similar term)|rootlike (similar term)|root-like (similar term)|seedlike (similar term)|seed-like (similar term)|seed-producing (similar term)|stalklike (similar term)|stalk-like (similar term)|stemlike (similar term)|stem-like (similar term)|tomato-like (similar term)|vegetal (similar term)|vegetational (similar term)|vegetative (similar term)|mineral (antonym)|animal (antonym)
+(noun)|veggie|produce (generic term)|green goods (generic term)|green groceries (generic term)|garden truck (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+vegetable garden|1
+(noun)|kitchen garden|vegetable patch|garden (generic term)
+vegetable hummingbird|1
+(noun)|scarlet wisteria tree|Sesbania grandiflora|tree (generic term)
+vegetable ivory|1
+(noun)|ivory nut|apple nut|seed (generic term)
+vegetable marrow|2
+(noun)|marrow|marrow squash|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+(noun)|marrow|summer squash (generic term)
+vegetable matter|1
+(noun)|substance (generic term)|matter (generic term)
+vegetable oil|1
+(noun)|oil|edible fat (generic term)
+vegetable oyster|2
+(noun)|salsify|oyster plant|Tragopogon porrifolius|herb (generic term)|herbaceous plant (generic term)
+(noun)|oyster plant|salsify (generic term)
+vegetable patch|1
+(noun)|kitchen garden|vegetable garden|garden (generic term)
+vegetable sheep|2
+(noun)|sheep plant|Raoulia lutescens|Raoulia australis|herb (generic term)|herbaceous plant (generic term)
+(noun)|sheep plant|Haastia pulvinaris|herb (generic term)|herbaceous plant (generic term)
+vegetable silk|1
+(noun)|kapok|silk cotton|plant fiber (generic term)|plant fibre (generic term)
+vegetable soup|1
+(noun)|petite marmite|minestrone|soup (generic term)
+vegetable sponge|1
+(noun)|loofah|Luffa cylindrica|luffa (generic term)|dishcloth gourd (generic term)|sponge gourd (generic term)|rag gourd (generic term)|strainer vine (generic term)
+vegetable tallow|1
+(noun)|plant material (generic term)
+vegetable wax|1
+(noun)|wax (generic term)
+vegetal|2
+(adj)|vegetative|asexual (similar term)|nonsexual (similar term)
+(adj)|vegetational|vegetative|vegetable (similar term)
+vegetarian|1
+(noun)|eater (generic term)|feeder (generic term)
+vegetarianism|1
+(noun)|diet (generic term)
+vegetate|4
+(verb)|live (generic term)
+(verb)|grow (generic term)
+(verb)|propagate (generic term)
+(verb)|vege out|relax (generic term)|loosen up (generic term)|unbend (generic term)|unwind (generic term)|decompress (generic term)|slow down (generic term)
+vegetation|4
+(noun)|flora|botany|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|fauna (antonym)
+(noun)|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+(noun)|excrescence (generic term)
+(noun)|quiescence (generic term)|quiescency (generic term)|dormancy (generic term)|sleeping (generic term)
+vegetational|1
+(adj)|vegetal|vegetative|vegetable (similar term)
+vegetative|4
+(adj)|vegetive|quiescence|quiescency|dormancy|sleeping (related term)
+(adj)|involuntary (similar term)
+(adj)|vegetal|asexual (similar term)|nonsexual (similar term)
+(adj)|vegetal|vegetational|vegetable (similar term)
+vegetative cell|1
+(noun)|somatic cell|cell (generic term)
+vegetive|1
+(adj)|vegetative|quiescence|quiescency|dormancy|sleeping (related term)
+veggie|1
+(noun)|vegetable|produce (generic term)|green goods (generic term)|green groceries (generic term)|garden truck (generic term)
+vehemence|2
+(noun)|emphasis|intensity (generic term)|intensiveness (generic term)
+(noun)|ferocity|fierceness|furiousness|fury|violence|wildness|intensity (generic term)|intensiveness (generic term)
+vehement|2
+(adj)|fierce|tearing|violent|trigger-happy|intense (similar term)
+(adj)|strong (similar term)
+vehicle|4
+(noun)|conveyance (generic term)|transport (generic term)
+(noun)|medium (generic term)
+(noun)|substance (generic term)|matter (generic term)
+(noun)|fomite|object (generic term)|physical object (generic term)
+vehicle-borne transmission|1
+(noun)|indirect transmission (generic term)
+vehicle traffic|1
+(noun)|vehicular traffic|traffic (generic term)
+vehicular|1
+(adj)|conveyance|transport (related term)
+vehicular traffic|1
+(noun)|vehicle traffic|traffic (generic term)
+veil|5
+(noun)|head covering|garment (generic term)
+(noun)|caul|embryonic membrane|fetal membrane (generic term)
+(noun)|humeral veil|vestment (generic term)
+(verb)|hide (generic term)|conceal (generic term)|unveil (antonym)
+(verb)|obscure|blot out|obliterate|hide|change (generic term)|alter (generic term)|modify (generic term)
+veiled|2
+(adj)|unveiled (antonym)
+(adj)|indistinct (similar term)
+veiled accusation|1
+(noun)|unspoken accusation|implication (generic term)
+veiling|1
+(noun)|gauze|netting|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+vein|6
+(noun)|vena|venous blood vessel|blood vessel (generic term)
+(noun)|expressive style (generic term)|style (generic term)
+(noun)|nervure|vascular bundle (generic term)|vascular strand (generic term)|fibrovascular bundle (generic term)
+(noun)|mineral vein|geological formation (generic term)|formation (generic term)
+(noun)|nervure|rib (generic term)
+(verb)|stain (generic term)
+vein of penis|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+veinal|1
+(adj)|vascular bundle|vascular strand|fibrovascular bundle (related term)
+veined|1
+(adj)|venose|veinlike|patterned (similar term)
+veinlike|1
+(adj)|veined|venose|patterned (similar term)
+vela|1
+(noun)|Vela|constellation (generic term)
+velar|3
+(adj)|flap (related term)
+(adj)|hard (similar term)
+(noun)|velar consonant|consonant (generic term)
+velar consonant|1
+(noun)|velar|consonant (generic term)
+velazquez|1
+(noun)|Velazquez|Diego Rodriguez de Silva y Velazquez|old master (generic term)
+velban|1
+(noun)|vinblastine|Velban|periwinkle plant derivative (generic term)
+velcro|2
+(noun)|Velcro|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)
+veld|1
+(noun)|veldt|grassland (generic term)
+veldt|1
+(noun)|veld|grassland (generic term)
+velleity|2
+(noun)|wish (generic term)|wishing (generic term)|want (generic term)
+(noun)|volition (generic term)|will (generic term)
+vellicate|2
+(verb)|tickle|titillate|itch (generic term)
+(verb)|pinch|irritate (generic term)
+vellication|1
+(noun)|twitch|twitching|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+vellum|2
+(noun)|writing paper (generic term)
+(noun)|parchment (generic term)|sheepskin (generic term)|lambskin (generic term)
+velocipede|2
+(noun)|bicycle (generic term)|bike (generic term)|wheel (generic term)|cycle (generic term)
+(noun)|tricycle|trike|wheeled vehicle (generic term)
+velociraptor|1
+(noun)|maniraptor (generic term)
+velocity|1
+(noun)|speed|rate (generic term)
+velodrome|1
+(noun)|racetrack (generic term)|racecourse (generic term)|raceway (generic term)|track (generic term)
+velour|1
+(noun)|velours|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+velours|1
+(noun)|velour|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+veloute|1
+(noun)|sauce (generic term)
+velum|3
+(noun)|partial veil|plant part (generic term)|plant structure (generic term)
+(noun)|universal veil|plant part (generic term)|plant structure (generic term)
+(noun)|soft palate|flap (generic term)
+velveeta|1
+(noun)|Velveeta|cheese (generic term)
+velvet|3
+(adj)|velvety|velvet-textured|smooth (similar term)
+(adj)|velvety|soft (similar term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+velvet-leaf|2
+(noun)|tree mallow|velvetleaf|Lavatera arborea|shrub (generic term)|bush (generic term)
+(noun)|velvetleaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+velvet-textured|1
+(adj)|velvet|velvety|smooth (similar term)
+velvet ant|1
+(noun)|wasp (generic term)
+velvet bean|1
+(noun)|cowage|Bengal bean|Benghal bean|Florida bean|Mucuna pruriens utilis|Mucuna deeringiana|Mucuna aterrima|Stizolobium deeringiana|mucuna (generic term)
+velvet bent|1
+(noun)|velvet bent grass|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+velvet bent grass|1
+(noun)|velvet bent|brown bent|Rhode Island bent|dog bent|Agrostis canina|bent (generic term)|bent grass (generic term)|bent-grass (generic term)
+velvet flower|1
+(noun)|love-lies-bleeding|tassel flower|Amaranthus caudatus|amaranth (generic term)
+velvet grass|1
+(noun)|Yorkshire fog|Holcus lanatus|grass (generic term)
+velvet osier|1
+(noun)|common osier|hemp willow|Salix viminalis|osier (generic term)
+velvet plant|2
+(noun)|mullein|flannel leaf|herb (generic term)|herbaceous plant (generic term)
+(noun)|purple velvet plant|royal velvet plant|Gynura aurantiaca|houseplant (generic term)
+velvet sumac|1
+(noun)|staghorn sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+velvet worm|1
+(noun)|onychophoran|peripatus|arthropod (generic term)
+velveteen|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+velvetleaf|2
+(noun)|tree mallow|velvet-leaf|Lavatera arborea|shrub (generic term)|bush (generic term)
+(noun)|velvet-leaf|velvetweed|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+velvetweed|1
+(noun)|velvetleaf|velvet-leaf|Indian mallow|butter-print|China jute|Abutilon theophrasti|mallow (generic term)
+velvety|2
+(adj)|velvet|velvet-textured|smooth (similar term)
+(adj)|velvet|soft (similar term)
+velvety-furred|1
+(adj)|velvety-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+velvety-haired|1
+(adj)|velvety-furred|hairy (similar term)|haired (similar term)|hirsute (similar term)
+velvety-plumaged|1
+(adj)|feathered (similar term)
+velvety-skinned|1
+(adj)|skinned (similar term)
+vena|1
+(noun)|vein|venous blood vessel|blood vessel (generic term)
+vena anastomotica|1
+(noun)|anastomotic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena angularis|1
+(noun)|angular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena appendicularis|1
+(noun)|appendicular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena arcuata renis|1
+(noun)|arcuate vein of the kidney|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena auricularis|1
+(noun)|auricular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena axillaris|1
+(noun)|axillary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena azygos|1
+(noun)|azygos vein|azygous vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena basalis|1
+(noun)|basal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena basilica|1
+(noun)|basilic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena basivertebralis|1
+(noun)|basivertebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena brachialis|1
+(noun)|brachial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena brachiocephalica|1
+(noun)|brachiocephalic vein|innominate vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena bronchialis|1
+(noun)|bronchial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena bulbi penis|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena bulbi vestibuli|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena canaliculi cochleae|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cava|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena centrales retinae|1
+(noun)|central vein of retina|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena centralis glandulae suprarenalis|1
+(noun)|central vein of suprarenal gland|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cephalica|1
+(noun)|cephalic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cephalica accessoria|1
+(noun)|accessory cephalic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cerebellum|1
+(noun)|cerebellar vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cerebri|1
+(noun)|cerebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cerebri anterior|1
+(noun)|anterior cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+vena cerebri magna|1
+(noun)|great cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+vena cerebri media|1
+(noun)|middle cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+vena cerebrum internus|1
+(noun)|internal cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+vena cerebrum superior|1
+(noun)|superior cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+vena cervicalis profunda|1
+(noun)|cervical vein|deep cervical vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena choroidea|1
+(noun)|choroid vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena circumflexa|1
+(noun)|circumflex vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena circumflexa ilium|1
+(noun)|circumflex iliac vein|circumflex vein (generic term)|vena circumflexa (generic term)
+vena circumflexus femoris|1
+(noun)|circumflex femoral vein|circumflex vein (generic term)|vena circumflexa (generic term)
+vena clitoridis|1
+(noun)|clitoral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena colica|1
+(noun)|colic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena comitans|1
+(noun)|accompanying vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cutanea|1
+(noun)|cutaneous vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena cystica|1
+(noun)|cystic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena digitalis|1
+(noun)|digital vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena diploica|1
+(noun)|diploic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena dorsalis clitoridis profunda|1
+(noun)|clitoral vein (generic term)|vena clitoridis (generic term)
+vena emissaria|1
+(noun)|emissary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena epigastrica inferior|1
+(noun)|inferior epigastric vein|epigastric vein (generic term)
+vena epigastrica superficialis|1
+(noun)|superficial epigastric vein|epigastric vein (generic term)
+vena ethmoidalis|1
+(noun)|ethmoidal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena facialis|1
+(noun)|facial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena facialis anterior|1
+(noun)|anterior facial vein|facial vein (generic term)|vena facialis (generic term)
+vena femoralis|1
+(noun)|femoral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena gastrica|1
+(noun)|gastric vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena gastrica-dextra|1
+(noun)|pyloric vein|right gastric vein|gastric vein (generic term)|vena gastrica (generic term)
+vena gastrica sinistra|1
+(noun)|left gastric vein|gastric vein (generic term)|vena gastrica (generic term)
+vena gastroomentalis|1
+(noun)|gastroomental vein|gastroepiploic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena genus|1
+(noun)|genicular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena gluteus|1
+(noun)|gluteal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena hemiazygos accessoria|1
+(noun)|accessory hemiazygos vein|accessory hemiazygous vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena hemizygos|1
+(noun)|hemizygos vein|hemizygous vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena hepatica|1
+(noun)|hepatic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena ileocolica|1
+(noun)|ileocolic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena iliaca|1
+(noun)|iliac vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena iliolumbalis|1
+(noun)|iliolumbar vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena intercapitalis|1
+(noun)|intercapitular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena intercostalis|1
+(noun)|intercostal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena intervertebralis|1
+(noun)|intervertebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena jugularis|1
+(noun)|jugular vein|jugular|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena labialis|1
+(noun)|labial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena labialis inferior|1
+(noun)|inferior labial vein|labial vein (generic term)|vena labialis (generic term)
+vena labialis superior|1
+(noun)|superior labial vein|labial vein (generic term)|vena labialis (generic term)
+vena lacrimalis|1
+(noun)|lacrimal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena laryngea|1
+(noun)|laryngeal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena lienalis|1
+(noun)|splenic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena lingualis|1
+(noun)|lingual vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena lumbalis|1
+(noun)|lumbar vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena maxillaris|1
+(noun)|maxillary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena mesenterica|1
+(noun)|mesenteric vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena metacarpus|1
+(noun)|metacarpal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena metatarsus|1
+(noun)|metatarsal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena musculophrenica|1
+(noun)|musculophrenic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena nasalis externa|1
+(noun)|external nasal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena nasofrontalis|1
+(noun)|nasofrontal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena obliqua atrii sinistri|1
+(noun)|oblique vein of the left atrium|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena obturatoria|1
+(noun)|obturator vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena occipitalis|1
+(noun)|occipital vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena ophthalmica|1
+(noun)|ophthalmic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena ovarica|1
+(noun)|ovarian vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena palatina|1
+(noun)|palatine vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena paraumbilicalis|1
+(noun)|paraumbilical vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena pectoralis|1
+(noun)|pectoral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena perforantis|1
+(noun)|perforating vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena pericardiaca|1
+(noun)|pericardial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena peroneus|1
+(noun)|peroneal vein|fibular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena pharyngeus|1
+(noun)|pharyngeal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena phrenica|1
+(noun)|phrenic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena poplitea|1
+(noun)|popliteal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena portae|1
+(noun)|portal vein|hepatic portal vein|portal|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena posterior ventriculi sinistri|1
+(noun)|posterior vein of the left ventricle|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena profunda penis|1
+(noun)|vein of penis (generic term)
+vena pulmanalis inferior|1
+(noun)|inferior pulmonary vein|pulmonary vein (generic term)|vena pulmonalis (generic term)
+vena pulmonalis|1
+(noun)|pulmonary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena pulmonalis superior|1
+(noun)|superior pulmonary vein|pulmonary vein (generic term)|vena pulmonalis (generic term)
+vena pylorica|1
+(noun)|prepyloric vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena radialis|1
+(noun)|radial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena rectalis|1
+(noun)|hemorrhoidal vein|rectal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena renalis|1
+(noun)|renal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena retromandibularis|1
+(noun)|retromandibular vein|posterior facial vein|facial vein (generic term)|vena facialis (generic term)
+vena sacralis|1
+(noun)|sacral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena saphena|1
+(noun)|saphenous vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena scapularis dorsalis|1
+(noun)|dorsal scapular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena scrotalis|1
+(noun)|scrotal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena sigmoideus|1
+(noun)|sigmoid vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena spinalis|1
+(noun)|spinal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena sternocleidomastoidea|1
+(noun)|sternocleidomastoid vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena stylomastoidea|1
+(noun)|stylomastoid vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena subclavia|1
+(noun)|subclavian vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena sublingualis|1
+(noun)|sublingual vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena supraorbitalis|1
+(noun)|supraorbital vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena supratrochlearis|1
+(noun)|supratrochlear vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena temporalis|1
+(noun)|temporal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena testicularis|1
+(noun)|testicular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena thoracica|1
+(noun)|thoracic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena thoracoepigastrica|1
+(noun)|thoracoepigastric vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena thyroidea|1
+(noun)|thyroid vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena tibialis|1
+(noun)|tibial vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena trachealis|1
+(noun)|tracheal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena ulnaris|1
+(noun)|ulnar vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena umbilicalis|1
+(noun)|umbilical vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vertebralis|1
+(noun)|vertebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vertebralis accessoria|1
+(noun)|accessory vertebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vertebralis anterior|1
+(noun)|anterior vertebral vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vesicalis|1
+(noun)|vesical vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vestibularis|1
+(noun)|vestibular vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vena vorticosum|1
+(noun)|vortex vein|vorticose vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae centrales hepatis|1
+(noun)|central veins of liver|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae cerebrum inferior|1
+(noun)|inferior cerebral vein|cerebral vein (generic term)|vena cerebri (generic term)
+venae ciliares|1
+(noun)|ciliary veins|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae conjunctivales|1
+(noun)|conjunctival veins|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae dorsales clitoridis superficiales|1
+(noun)|clitoral vein (generic term)|vena clitoridis (generic term)
+venae dorsales penis profunda|1
+(noun)|vein of penis (generic term)
+venae dorsales penis superficiales|1
+(noun)|vein of penis (generic term)
+venae epigastricae superiores|1
+(noun)|superior epigastric veins|epigastric vein (generic term)
+venae episclerales|1
+(noun)|episcleral veins|venule (generic term)|venula (generic term)|capillary vein (generic term)
+venae esophageae|1
+(noun)|esophageal veins|oesophageal veins|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae interlobulares hepatis|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae interlobulares renis|1
+(noun)|venae renis (generic term)
+venae labiales anteriores|1
+(noun)|anterior labial veins|labial vein (generic term)|vena labialis (generic term)
+venae labiales posteriores|1
+(noun)|posterior labial veins|labial vein (generic term)|vena labialis (generic term)
+venae meningeae|1
+(noun)|meningeal veins|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae palpebrales|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae pancreatica|1
+(noun)|pancreatic vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae profundae clitoridis|1
+(noun)|clitoral vein (generic term)|vena clitoridis (generic term)
+venae pudendum|1
+(noun)|pudendal vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae renis|1
+(noun)|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venae sclerales|1
+(noun)|scleral veins|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venal|1
+(adj)|corruptible|bribable|dishonest|purchasable|corrupt (similar term)
+venality|1
+(noun)|corruptness (generic term)|corruption (generic term)
+venally|1
+(adv)|dishonestly|deceitfully|honestly (antonym)
+venation|2
+(noun)|arrangement (generic term)
+(noun)|venous blood system|system (generic term)
+vend|1
+(verb)|peddle|monger|huckster|hawk|pitch|deal (generic term)|sell (generic term)|trade (generic term)
+vendable|1
+(adj)|marketable|merchantable|sellable|vendible|salable (similar term)|saleable (similar term)
+vendee|1
+(noun)|buyer|purchaser|emptor|customer (generic term)|client (generic term)
+vendemiaire|1
+(noun)|Vendemiaire|Revolutionary calendar month (generic term)
+vender|1
+(noun)|seller|marketer|vendor|trafficker|merchant (generic term)|merchandiser (generic term)
+vendetta|1
+(noun)|blood feud|feud (generic term)
+vendible|1
+(adj)|marketable|merchantable|sellable|vendable|salable (similar term)|saleable (similar term)
+vending|1
+(noun)|peddling|hawking|vendition|selling (generic term)|merchandising (generic term)|marketing (generic term)
+vending machine|1
+(noun)|slot machine (generic term)|coin machine (generic term)
+vendition|1
+(noun)|vending|peddling|hawking|selling (generic term)|merchandising (generic term)|marketing (generic term)
+vendor|1
+(noun)|seller|marketer|vender|trafficker|merchant (generic term)|merchandiser (generic term)
+vendue|1
+(noun)|auction|auction sale|sale (generic term)
+veneer|3
+(noun)|veneering|coating (generic term)|coat (generic term)
+(noun)|facing|coating (generic term)|coat (generic term)
+(verb)|cover (generic term)
+veneering|2
+(noun)|veneer|coating (generic term)|coat (generic term)
+(noun)|lamination (generic term)
+venerability|1
+(noun)|venerableness|honorableness (generic term)|honourableness (generic term)
+venerable|2
+(adj)|old (similar term)
+(adj)|august|revered|honorable (similar term)|honourable (similar term)
+venerableness|1
+(noun)|venerability|honorableness (generic term)|honourableness (generic term)
+venerate|1
+(verb)|reverence|fear|revere|respect (generic term)|esteem (generic term)|value (generic term)|prize (generic term)|prise (generic term)
+venerating|1
+(adj)|respectful|reverential|reverent (similar term)
+veneration|2
+(noun)|fear|reverence|awe|emotion (generic term)
+(noun)|idolatry|devotion|cultism|worship (generic term)
+venerator|1
+(noun)|admirer (generic term)
+venereal|1
+(adj)|genital|reproductive organ|sex organ (related term)
+venereal disease|1
+(noun)|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+venereal infection|1
+(noun)|venereal disease|VD|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+venereal wart|1
+(noun)|genital wart|condyloma acuminatum|verruca acuminata|wart (generic term)|verruca (generic term)
+veneridae|1
+(noun)|Veneridae|family Veneridae|mollusk family (generic term)
+venesect|1
+(verb)|operate on (generic term)|operate (generic term)
+venesection|1
+(noun)|phlebotomy|incision (generic term)|section (generic term)|surgical incision (generic term)|bloodletting (generic term)
+venetia|1
+(noun)|Veneto|Venezia-Euganea|Venetia|Italian region (generic term)
+venetian|2
+(adj)|Venetian|city|metropolis|urban center (related term)
+(noun)|Venetian|Italian (generic term)
+venetian blind|1
+(noun)|Venetian blind|window blind (generic term)
+venetian glass|1
+(noun)|Venetian glass|glassware (generic term)|glasswork (generic term)
+venetian red|1
+(noun)|reddish brown|sepia|burnt sienna|Venetian red|brown (generic term)|brownness (generic term)
+venetian sumac|1
+(noun)|Venetian sumac|wig tree|Cotinus coggygria|smoke tree (generic term)|smoke bush (generic term)
+veneto|1
+(noun)|Veneto|Venezia-Euganea|Venetia|Italian region (generic term)
+venezia|1
+(noun)|Venice|Venezia|city (generic term)|metropolis (generic term)|urban center (generic term)
+venezia-euganea|1
+(noun)|Veneto|Venezia-Euganea|Venetia|Italian region (generic term)
+venezuela|1
+(noun)|Venezuela|Republic of Venezuela|South American country (generic term)|South American nation (generic term)
+venezuelan|2
+(adj)|Venezuelan|South American country|South American nation (related term)
+(noun)|Venezuelan|South American (generic term)
+venezuelan monetary unit|1
+(noun)|Venezuelan monetary unit|monetary unit (generic term)
+vengeance|1
+(noun)|retribution|payback|retaliation (generic term)|revenge (generic term)
+vengeful|1
+(adj)|revengeful|vindictive|unforgiving (similar term)
+vengefully|1
+(adv)|revengefully|vindictively
+vengefulness|1
+(noun)|vindictiveness|malevolence (generic term)|malignity (generic term)
+venial|2
+(adj)|minor|pardonable (similar term)
+(adj)|excusable|forgivable|pardonable (similar term)
+venial sin|1
+(noun)|sin (generic term)|sinning (generic term)|mortal sin (antonym)
+venice|1
+(noun)|Venice|Venezia|city (generic term)|metropolis (generic term)|urban center (generic term)
+venipuncture|1
+(noun)|puncture (generic term)
+venire|1
+(noun)|panel|body (generic term)
+venire facias|1
+(noun)|writ (generic term)|judicial writ (generic term)
+venison|1
+(noun)|game (generic term)
+venn|1
+(noun)|Venn|John Venn|logician (generic term)|logistician (generic term)
+venn's diagram|1
+(noun)|Venn diagram|Venn's diagram|diagram (generic term)
+venn diagram|1
+(noun)|Venn diagram|Venn's diagram|diagram (generic term)
+venogram|1
+(noun)|phlebogram|roentgenogram (generic term)|X ray (generic term)|X-ray (generic term)|X-ray picture (generic term)|X-ray photograph (generic term)
+venography|1
+(noun)|arthrography (generic term)
+venom|2
+(noun)|animal toxin (generic term)|zootoxin (generic term)
+(noun)|malice|maliciousness|spite|spitefulness|malevolence (generic term)|malignity (generic term)
+venomed|1
+(adj)|malicious (similar term)
+venomous|3
+(adj)|deadly|virulent|toxic (similar term)
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|virulent|vitriolic|unpleasant (similar term)
+(adj)|poisonous|vicious|malicious (similar term)
+venomous lizard|1
+(noun)|lizard (generic term)
+venomously|1
+(adv)|poisonously
+venose|1
+(adj)|veined|veinlike|patterned (similar term)
+venous|1
+(adj)|blood vessel (related term)
+venous blood|1
+(noun)|blood (generic term)
+venous blood system|1
+(noun)|venation|system (generic term)
+venous blood vessel|1
+(noun)|vein|vena|blood vessel (generic term)
+venous pressure|1
+(noun)|blood pressure (generic term)
+venous sinus|1
+(noun)|sinus|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+venous thrombosis|1
+(noun)|phlebothrombosis|thrombosis (generic term)
+vent|7
+(noun)|venthole|vent-hole|blowhole|hole (generic term)
+(noun)|orifice (generic term)|opening (generic term)|porta (generic term)
+(noun)|volcano|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|slit (generic term)
+(noun)|release|outlet|activity (generic term)
+(verb)|ventilate|give vent|express (generic term)|show (generic term)|evince (generic term)
+(verb)|ventilate|air out|air|refresh (generic term)|freshen (generic term)
+vent-hole|1
+(noun)|vent|venthole|blowhole|hole (generic term)
+ventail|1
+(noun)|camail|aventail|hood (generic term)
+vented|1
+(adj)|ventilated (similar term)
+venter|4
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|abdomen|stomach|belly|body part (generic term)
+(noun)|uterus (generic term)|womb (generic term)
+(noun)|body part (generic term)
+venthole|1
+(noun)|vent|vent-hole|blowhole|hole (generic term)
+ventilate|5
+(verb)|vent|air out|air|refresh (generic term)|freshen (generic term)
+(verb)|expose (generic term)
+(verb)|circulate (generic term)
+(verb)|vent|give vent|express (generic term)|show (generic term)|evince (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+ventilated|1
+(adj)|aired (similar term)|airy (similar term)|louvered (similar term)|vented (similar term)|unventilated (antonym)
+ventilating system|1
+(noun)|ventilation|ventilation system|mechanical system (generic term)
+ventilation|4
+(noun)|airing|improvement (generic term)
+(noun)|ventilation system|ventilating system|mechanical system (generic term)
+(noun)|public discussion|discussion (generic term)|give-and-take (generic term)|word (generic term)
+(noun)|breathing|external respiration|respiration|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+ventilation shaft|1
+(noun)|shaft (generic term)|air passage (generic term)|air duct (generic term)|airway (generic term)
+ventilation system|1
+(noun)|ventilation|ventilating system|mechanical system (generic term)
+ventilator|2
+(noun)|device (generic term)
+(noun)|breathing device|breathing apparatus|breathing machine|device (generic term)
+ventilatory|1
+(adj)|improvement (related term)
+venting|1
+(noun)|discharge|emission (generic term)|emanation (generic term)
+ventner|1
+(noun)|Ventner|Craig Ventner|J. Craig Ventner|geneticist (generic term)
+ventolin|1
+(noun)|albuterol|Ventolin|Proventil|bronchodilator (generic term)
+ventose|1
+(noun)|Ventose|Revolutionary calendar month (generic term)
+ventral|2
+(adj)|dorsoventral (similar term)|dorsal (antonym)
+(adj)|adaxial|abaxial (antonym)
+ventral fin|1
+(noun)|pelvic fin|fin (generic term)
+ventral placentation|1
+(noun)|marginal placentation|placentation (generic term)
+ventricle|2
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+(noun)|heart ventricle|chamber (generic term)
+ventricose|1
+(adj)|ventricous|protrusive (similar term)
+ventricous|1
+(adj)|ventricose|protrusive (similar term)
+ventricular|1
+(adj)|chamber (related term)|cavity|bodily cavity|cavum (related term)
+ventricular aneurysm|1
+(noun)|aneurysm (generic term)|aneurism (generic term)
+ventricular fibrillation|1
+(noun)|fibrillation (generic term)|cardiac arrhythmia (generic term)|arrhythmia (generic term)
+ventricular fold|1
+(noun)|false vocal cord|false vocal fold|superior vocal cord|vestibular fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+ventricular septal defect|1
+(noun)|septal defect (generic term)
+ventriculus|1
+(noun)|gizzard|gastric mill|pouch (generic term)|pocket (generic term)
+ventriloquism|1
+(noun)|ventriloquy|art (generic term)|artistry (generic term)|prowess (generic term)
+ventriloquist|1
+(noun)|performer (generic term)|performing artist (generic term)
+ventriloquist's dummy|1
+(noun)|dummy (generic term)
+ventriloquy|1
+(noun)|ventriloquism|art (generic term)|artistry (generic term)|prowess (generic term)
+venture|6
+(noun)|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+(noun)|speculation|investment (generic term)|investment funds (generic term)
+(noun)|commercial enterprise (generic term)|business enterprise (generic term)|business (generic term)
+(verb)|embark|go (generic term)|proceed (generic term)|move (generic term)
+(verb)|guess|pretend|hazard|speculate (generic term)
+(verb)|hazard|adventure|stake|jeopardize|risk (generic term)|put on the line (generic term)|lay on the line (generic term)
+venture capital|1
+(noun)|risk capital|capital (generic term)|working capital (generic term)
+venture capitalism|1
+(noun)|capitalism (generic term)|capitalist economy (generic term)
+venture capitalist|1
+(noun)|speculator (generic term)|plunger (generic term)
+venturer|2
+(noun)|merchant-venturer|merchant (generic term)|merchandiser (generic term)
+(noun)|adventurer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+venturesome|1
+(adj)|audacious|daring|venturous|adventurous (similar term)|adventuresome (similar term)
+venturesomeness|1
+(noun)|adventurousness|boldness (generic term)|daring (generic term)|hardiness (generic term)|hardihood (generic term)
+venturi|2
+(noun)|Venturi|Robert Venturi|Robert Charles Venturi|architect (generic term)|designer (generic term)
+(noun)|tube (generic term)|tubing (generic term)
+venturi tube|1
+(noun)|Venturi tube|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+venturous|1
+(adj)|audacious|daring|venturesome|adventurous (similar term)|adventuresome (similar term)
+venue|2
+(noun)|locale|locus|scene (generic term)
+(noun)|jurisdiction (generic term)
+venula|1
+(noun)|venule|capillary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venule|1
+(noun)|venula|capillary vein|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+venus|3
+(noun)|Venus|terrestrial planet (generic term)|inferior planet (generic term)
+(noun)|Venus|Urania|Roman deity (generic term)
+(noun)|Venus|genus Venus|mollusk genus (generic term)
+venus'-hair fern|1
+(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+venus' slipper|1
+(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid (generic term)|orchidaceous plant (generic term)
+venus's curse|1
+(noun)|venereal disease|VD|venereal infection|social disease|Cupid's itch|Cupid's disease|Venus's curse|sexually transmitted disease|dose|contagious disease (generic term)|contagion (generic term)
+venus's flower basket|1
+(noun)|Venus's flower basket|glass sponge (generic term)
+venus's flytrap|1
+(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant (generic term)
+venus's flytraps|1
+(noun)|Venus's flytrap|Venus's flytraps|Dionaea muscipula|carnivorous plant (generic term)
+venus's girdle|1
+(noun)|Venus's girdle|Cestum veneris|ctenophore (generic term)|comb jelly (generic term)
+venus's shoe|1
+(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid (generic term)|orchidaceous plant (generic term)
+venus's slipper|1
+(noun)|Venus' slipper|Venus's slipper|Venus's shoe|orchid (generic term)|orchidaceous plant (generic term)
+venus maidenhair|1
+(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+venus mercenaria|1
+(noun)|quahog|quahaug|hard-shell clam|hard clam|round clam|Venus mercenaria|Mercenaria mercenaria|clam (generic term)
+venushair|1
+(noun)|common maidenhair|Venushair|Venus'-hair fern|southern maidenhair|Venus maidenhair|Adiantum capillus-veneris|maidenhair (generic term)|maidenhair fern (generic term)
+veps|2
+(noun)|Veps|Vepse|Vepsian|Russian (generic term)
+(noun)|Veps|Vepse|Vepsian|Baltic-Finnic (generic term)
+vepse|2
+(noun)|Veps|Vepse|Vepsian|Russian (generic term)
+(noun)|Veps|Vepse|Vepsian|Baltic-Finnic (generic term)
+vepsian|2
+(noun)|Veps|Vepse|Vepsian|Russian (generic term)
+(noun)|Veps|Vepse|Vepsian|Baltic-Finnic (generic term)
+veracious|2
+(adj)|honest|truthful (similar term)|true (similar term)
+(adj)|accurate (similar term)
+veracity|1
+(noun)|truthfulness (generic term)|mendacity (antonym)
+veracruz|1
+(noun)|Veracruz|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+veranda|1
+(noun)|verandah|gallery|porch (generic term)
+verandah|1
+(noun)|veranda|gallery|porch (generic term)
+verapamil|1
+(noun)|Calan|Isoptin|calcium blocker (generic term)|calcium-channel blocker (generic term)
+veratrum|1
+(noun)|Veratrum|genus Veratrum|liliid monocot genus (generic term)
+veratrum viride|1
+(noun)|white hellebore|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore (generic term)|false hellebore (generic term)
+verb|2
+(noun)|major form class (generic term)
+(noun)|content word (generic term)|open-class word (generic term)
+verb phrase|1
+(noun)|predicate|phrase (generic term)
+verbal|6
+(adj)|communicative (similar term)|communicatory (similar term)
+(adj)|language unit|linguistic unit (related term)
+(adj)|major form class (related term)
+(adj)|numerical (antonym)
+(adj)|spoken (similar term)
+(adj)|prolix (similar term)
+verbal creation|1
+(noun)|creating by mental acts (generic term)
+verbal description|1
+(noun)|description|statement (generic term)
+verbal expression|1
+(noun)|expression|verbalism|communication (generic term)|communicating (generic term)
+verbal intelligence|1
+(noun)|intelligence (generic term)
+verbal noun|1
+(noun)|deverbal noun|common noun (generic term)
+verbalisation|1
+(noun)|verbalization|wording (generic term)|diction (generic term)|phrasing (generic term)|phraseology (generic term)|choice of words (generic term)|verbiage (generic term)
+verbalise|4
+(verb)|verbalize|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|talk|speak|utter|mouth|verbalize|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|express|verbalize|utter|give tongue to
+(verb)|verbalize|convert (generic term)
+verbalised|1
+(adj)|expressed|uttered|verbalized|spoken (similar term)
+verbaliser|1
+(noun)|speaker|talker|utterer|verbalizer|articulator (generic term)
+verbalism|2
+(noun)|expression|verbal expression|communication (generic term)|communicating (generic term)
+(noun)|verbiage|verboseness (generic term)|verbosity (generic term)
+verbalization|1
+(noun)|verbalisation|wording (generic term)|diction (generic term)|phrasing (generic term)|phraseology (generic term)|choice of words (generic term)|verbiage (generic term)
+verbalize|4
+(verb)|verbalise|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|talk|speak|utter|mouth|verbalise|communicate (generic term)|intercommunicate (generic term)|mouth off (related term)|speak up (related term)
+(verb)|express|verbalise|utter|give tongue to
+(verb)|verbalise|convert (generic term)
+verbalized|1
+(adj)|expressed|uttered|verbalised|spoken (similar term)
+verbalizer|1
+(noun)|speaker|talker|utterer|verbaliser|articulator (generic term)
+verbascum|1
+(noun)|Verbascum|genus Verbascum|asterid dicot genus (generic term)
+verbascum blattaria|1
+(noun)|moth mullein|Verbascum blattaria|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+verbascum lychnitis|1
+(noun)|white mullein|Verbascum lychnitis|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+verbascum phoeniceum|1
+(noun)|purple mullein|Verbascum phoeniceum|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+verbascum thapsus|1
+(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|woolly mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+verbatim|2
+(adj)|direct|exact (similar term)
+(adv)|word for word
+verbena|1
+(noun)|vervain|flower (generic term)
+verbena family|1
+(noun)|Verbenaceae|family Verbenaceae|vervain family|asterid dicot family (generic term)
+verbenaceae|1
+(noun)|Verbenaceae|family Verbenaceae|verbena family|vervain family|asterid dicot family (generic term)
+verbesina|1
+(noun)|Verbesina|genus Verbesina|asterid dicot genus (generic term)
+verbesina alternifolia|1
+(noun)|wingstem|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+verbesina encelioides|1
+(noun)|cowpen daisy|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+verbesina helianthoides|1
+(noun)|gravelweed|Verbesina helianthoides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+verbesina virginica|1
+(noun)|Virginia crownbeard|frostweed|frost-weed|Verbesina virginica|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+verbiage|2
+(noun)|verbalism|verboseness (generic term)|verbosity (generic term)
+(noun)|wording|diction|phrasing|phraseology|choice of words|formulation (generic term)|expression (generic term)
+verbify|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+verbolatry|1
+(noun)|grammatolatry|word-worship|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+verbose|1
+(adj)|long-winded|tedious|windy|wordy|prolix (similar term)
+verbosely|1
+(adv)|windily|long-windedly|wordily
+verboseness|1
+(noun)|verbosity|expressive style (generic term)|style (generic term)|terseness (antonym)
+verbosity|1
+(noun)|verboseness|expressive style (generic term)|style (generic term)|terseness (antonym)
+verboten|1
+(adj)|forbidden|out|prohibited|proscribed|taboo|tabu|impermissible (similar term)
+verd antique|1
+(noun)|verde antique|marble (generic term)
+verdancy|1
+(noun)|greenness|verdure|profusion (generic term)|profuseness (generic term)|richness (generic term)|cornucopia (generic term)
+verdandi|1
+(noun)|Verdandi|Verthandi|Norn (generic term)
+verdant|1
+(adj)|abundant (similar term)
+verde antique|1
+(noun)|verd antique|marble (generic term)
+verdi|1
+(noun)|Verdi|Giuseppe Verdi|Guiseppe Fortunino Francesco Verdi|composer (generic term)
+verdicchio|2
+(noun)|Verdicchio|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|Verdicchio|white wine (generic term)
+verdict|1
+(noun)|finding of fact|finding (generic term)
+verdigris|3
+(noun)|cupric acetate|pigment (generic term)
+(noun)|patina (generic term)
+(verb)|color (generic term)|colorize (generic term)|colorise (generic term)|colourise (generic term)|colourize (generic term)|colour (generic term)|color in (generic term)|colour in (generic term)
+verdin|1
+(noun)|Auriparus flaviceps|titmouse (generic term)|tit (generic term)
+verdolagas|1
+(noun)|common purslane|pussley|pusly|Portulaca oleracea|purslane (generic term)
+verdun|1
+(noun)|Verdun|battle of Verdun|pitched battle (generic term)
+verdure|2
+(noun)|greenery|leaf (generic term)|leafage (generic term)|foliage (generic term)
+(noun)|greenness|verdancy|profusion (generic term)|profuseness (generic term)|richness (generic term)|cornucopia (generic term)
+verey pistol|1
+(noun)|Very pistol|Verey pistol|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+verge|5
+(noun)|brink|threshold|boundary (generic term)|edge (generic term)|bound (generic term)
+(noun)|brink|limit (generic term)|bound (generic term)|boundary (generic term)
+(noun)|scepter|sceptre|wand|staff (generic term)
+(noun)|border (generic term)
+(verb)|bound (generic term)|border (generic term)
+verger|1
+(noun)|church officer (generic term)|caretaker (generic term)
+vergil|1
+(noun)|Virgil|Vergil|Publius Vergilius Maro|poet (generic term)
+veridical|1
+(adj)|real|realistic (similar term)
+verifiable|2
+(adj)|objective (similar term)|nonsubjective (similar term)
+(adj)|confirmable|falsifiable|empirical (similar term)|empiric (similar term)
+verification|2
+(noun)|confirmation|check|substantiation|proof (generic term)|cogent evidence (generic term)
+(noun)|affidavit (generic term)
+verificatory|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verifying|supportive (similar term)
+verified|2
+(adj)|corroborated|substantiated|supported (similar term)
+(adj)|proved (similar term)|proven (similar term)
+verifier|1
+(noun)|voucher|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+verify|4
+(verb)|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)
+(verb)|control|test (generic term)|prove (generic term)|try (generic term)|try out (generic term)|examine (generic term)|essay (generic term)
+(verb)|confirm (generic term)|reassert (generic term)
+(verb)|affirm|assert|avow|aver|swan|swear|declare (generic term)
+verifying|1
+(adj)|collateral|confirmative|confirming|confirmatory|corroborative|corroboratory|substantiating|substantiative|validating|validatory|verificatory|supportive (similar term)
+verisimilar|1
+(adj)|probable (similar term)|likely (similar term)
+verisimilitude|1
+(noun)|semblance (generic term)|gloss (generic term)|color (generic term)|colour (generic term)
+veritable|2
+(adj)|regular|typical (similar term)
+(adj)|authentic|bona fide|unquestionable|genuine (similar term)|echt (similar term)
+verity|2
+(noun)|truth|the true|trueness|actuality (generic term)|falsity (antonym)
+(noun)|truth (generic term)
+verlaine|1
+(noun)|Verlaine|Paul Verlaine|poet (generic term)
+vermeer|1
+(noun)|Vermeer|Jan Vermeer|Jan van der Meer|old master (generic term)
+vermicelli|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+vermicide|1
+(noun)|agent (generic term)|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+vermicular|1
+(adj)|vermiculate|vermiculated|fancy (similar term)
+vermiculate|3
+(adj)|worm-eaten|wormy|worn (similar term)
+(adj)|vermicular|vermiculated|fancy (similar term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+vermiculated|1
+(adj)|vermicular|vermiculate|fancy (similar term)
+vermiculation|2
+(noun)|peristalsis|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)|anastalsis (antonym)
+(noun)|carving (generic term)|embellishment (generic term)
+vermiculite|1
+(noun)|mineral (generic term)
+vermiform|1
+(adj)|worm-shaped|formed (similar term)
+vermiform appendix|1
+(noun)|appendix|vermiform process|cecal appendage|process (generic term)|outgrowth (generic term)|appendage (generic term)
+vermiform process|1
+(noun)|appendix|vermiform appendix|cecal appendage|process (generic term)|outgrowth (generic term)|appendage (generic term)
+vermifuge|1
+(noun)|anthelmintic|anthelminthic|helminthic|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+vermilion|3
+(adj)|vermillion|cinnabar|Chinese-red|chromatic (similar term)
+(noun)|scarlet|orange red|red (generic term)|redness (generic term)
+(verb)|redden (generic term)
+vermillion|1
+(adj)|vermilion|cinnabar|Chinese-red|chromatic (similar term)
+vermillion flycatcher|1
+(noun)|firebird|Pyrocephalus rubinus mexicanus|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+vermillion rockfish|1
+(noun)|rasher|Sebastodes miniatus|rockfish (generic term)
+vermin|2
+(noun)|varmint|bad person (generic term)
+(noun)|pest (generic term)
+verminous|1
+(adj)|offensive (similar term)
+vermis|1
+(noun)|vermis cerebelli|neural structure (generic term)
+vermis cerebelli|1
+(noun)|vermis|neural structure (generic term)
+vermont|1
+(noun)|Vermont|Green Mountain State|VT|American state (generic term)
+vermonter|1
+(noun)|Vermonter|American (generic term)
+vermouth|1
+(noun)|wine (generic term)|vino (generic term)
+vernacular|3
+(adj)|common|vulgar|informal (similar term)
+(noun)|slang|cant|jargon|lingo|argot|patois|non-standard speech (generic term)
+(noun)|non-standard speech (generic term)
+vernacular art|1
+(noun)|outsider art|self-taught art|naive art|primitive art|genre (generic term)
+vernal|2
+(adj)|youthful|young|young (similar term)|immature (similar term)
+(adj)|spring-flowering (similar term)|early-flowering (similar term)|spring-blooming (similar term)|early-blooming (similar term)|late-spring-blooming (similar term)|summery (antonym)|autumnal (antonym)|wintry (antonym)
+vernal equinox|2
+(noun)|March equinox|spring equinox|equinox (generic term)|autumnal equinox (antonym)
+(noun)|equinoctial point (generic term)|equinox (generic term)
+vernal iris|1
+(noun)|dwarf iris|Iris verna|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+vernal witch hazel|1
+(noun)|Hamamelis vernalis|witch hazel (generic term)|witch hazel plant (generic term)|wych hazel (generic term)|wych hazel plant (generic term)
+vernation|1
+(noun)|arrangement (generic term)
+verne|1
+(noun)|Verne|Jules Verne|writer (generic term)|author (generic term)
+verner|1
+(noun)|Verner|Karl Adolph Verner|philologist (generic term)|philologue (generic term)
+verner's law|1
+(noun)|Verner's law|sound law (generic term)
+vernier|2
+(noun)|vernier scale|scale (generic term)
+(noun)|Vernier|Paul Vernier|mathematician (generic term)
+vernier caliper|1
+(noun)|vernier micrometer|caliper (generic term)|calliper (generic term)
+vernier micrometer|1
+(noun)|vernier caliper|caliper (generic term)|calliper (generic term)
+vernier scale|1
+(noun)|vernier|scale (generic term)
+vernix|1
+(noun)|vernix caseosa|material (generic term)|stuff (generic term)
+vernix caseosa|1
+(noun)|vernix|material (generic term)|stuff (generic term)
+vernonia|1
+(noun)|ironweed|herb (generic term)|herbaceous plant (generic term)
+verona|1
+(noun)|Verona|city (generic term)|metropolis (generic term)|urban center (generic term)
+veronal|1
+(noun)|barbital|barbitone|diethylbarbituric acid|diethylmalonylurea|barbiturate (generic term)
+veronese|1
+(noun)|Veronese|Paolo Veronese|Paola Caliari|old master (generic term)
+veronica|1
+(noun)|speedwell|flower (generic term)
+veronica agrestis|1
+(noun)|field speedwell|Veronica agrestis|veronica (generic term)|speedwell (generic term)
+veronica americana|1
+(noun)|brooklime|American brooklime|Veronica americana|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+veronica anagallis-aquatica|1
+(noun)|water speedwell|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+veronica arvensis|1
+(noun)|corn speedwell|Veronica arvensis|veronica (generic term)|speedwell (generic term)
+veronica beccabunga|1
+(noun)|brooklime|European brooklime|Veronica beccabunga|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+veronica chamaedrys|1
+(noun)|germander speedwell|bird's eye|Veronica chamaedrys|veronica (generic term)|speedwell (generic term)
+veronica michauxii|1
+(noun)|water speedwell|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+veronica officinalis|1
+(noun)|common speedwell|gypsyweed|Veronica officinalis|veronica (generic term)|speedwell (generic term)
+veronica peregrina|1
+(noun)|purslane speedwell|Veronica peregrina|veronica (generic term)|speedwell (generic term)
+veronica serpyllifolia|1
+(noun)|thyme-leaved speedwell|Veronica serpyllifolia|veronica (generic term)|speedwell (generic term)
+veronicastrum virginicum|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|whorlywort|Veronicastrum virginicum|asterid dicot genus (generic term)
+verpa|1
+(noun)|Verpa|bell morel|morel (generic term)
+verpa bohemica|1
+(noun)|Verpa bohemica|early morel|Verpa (generic term)|bell morel (generic term)
+verpa conica|1
+(noun)|Verpa conica|conic Verpa|Verpa (generic term)|bell morel (generic term)
+verrazano|1
+(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator (generic term)
+verrazano-narrows bridge|1
+(noun)|Verrazano-Narrows Bridge|suspension bridge (generic term)
+verrazano narrows|1
+(noun)|Verrazano Narrows|narrow (generic term)
+verrazzano|1
+(noun)|Verrazano|Giovanni da Verrazano|Verrazzano|Giovanni da Verrazzano|navigator (generic term)
+verruca|1
+(noun)|wart|blemish (generic term)|defect (generic term)|mar (generic term)|keratosis (generic term)
+verruca acuminata|1
+(noun)|genital wart|venereal wart|condyloma acuminatum|wart (generic term)|verruca (generic term)
+verrucose|1
+(adj)|warty|wartlike|rough (similar term)|unsmooth (similar term)
+vers libre|1
+(noun)|free verse|poem (generic term)|verse form (generic term)
+versace|1
+(noun)|Versace|Gianni Versace|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+versailles|2
+(noun)|Versailles|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Versailles|Palace of Versailles|palace (generic term)
+versant|1
+(noun)|mountainside|slope (generic term)|incline (generic term)|side (generic term)
+versatile|4
+(adj)|various|varied (similar term)
+(adj)|variable (similar term)
+(adj)|skilled (similar term)
+(adj)|mobile (similar term)
+versatility|1
+(noun)|skillfulness (generic term)
+verse|5
+(noun)|poetry|poesy|writing style (generic term)|literary genre (generic term)|genre (generic term)
+(noun)|rhyme|poem (generic term)|verse form (generic term)
+(noun)|verse line|line (generic term)
+(verb)|versify|poetize|poetise|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|familiarize (generic term)|familiarise (generic term)|acquaint (generic term)
+verse form|1
+(noun)|poem|literary composition (generic term)|literary work (generic term)
+verse line|1
+(noun)|verse|line (generic term)
+versed|2
+(adj)|intimate|knowledgeable|experienced (similar term)|experient (similar term)
+(noun)|midazolam|Versed|benzodiazepine (generic term)
+versicle|1
+(noun)|poem (generic term)|verse form (generic term)
+versification|3
+(noun)|adaptation (generic term)|version (generic term)
+(noun)|form (generic term)
+(noun)|writing (generic term)|authorship (generic term)|composition (generic term)|penning (generic term)
+versifier|1
+(noun)|rhymer|rhymester|poetizer|poetiser|writer (generic term)|author (generic term)
+versify|1
+(verb)|verse|poetize|poetise|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+version|6
+(noun)|interpretation (generic term)
+(noun)|variant|variation|edition|type (generic term)
+(noun)|adaptation|writing (generic term)|written material (generic term)|piece of writing (generic term)
+(noun)|translation|interlingual rendition|rendering|written record (generic term)|written account (generic term)
+(noun)|interpretation|reading|representation (generic term)|mental representation (generic term)|internal representation (generic term)
+(noun)|turn (generic term)|turning (generic term)
+verso|2
+(noun)|page (generic term)|recto (antonym)
+(noun)|reverse|side (generic term)|obverse (antonym)
+verst|1
+(noun)|linear unit (generic term)
+vertebra|1
+(noun)|bone (generic term)|os (generic term)
+vertebral|1
+(adj)|bone|os (related term)
+vertebral arch|1
+(noun)|neural arch|arch (generic term)
+vertebral artery|1
+(noun)|arteria vertebralis|artery (generic term)|arteria (generic term)|arterial blood vessel (generic term)
+vertebral canal|1
+(noun)|spinal canal|canalis vertebralis|duct (generic term)|epithelial duct (generic term)|canal (generic term)|channel (generic term)
+vertebral column|1
+(noun)|spinal column|spine|backbone|back|rachis|skeletal structure (generic term)
+vertebral vein|1
+(noun)|vena vertebralis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vertebrata|1
+(noun)|Vertebrata|subphylum Vertebrata|Craniata|subphylum Craniata|phylum (generic term)
+vertebrate|2
+(adj)|invertebrate (antonym)
+(noun)|craniate|chordate (generic term)
+vertebrate foot|1
+(noun)|pedal extremity|extremity (generic term)
+vertebrate paleontology|1
+(noun)|paleontology (generic term)|palaeontology (generic term)|fossilology (generic term)
+vertex|2
+(noun)|intersection (generic term)|intersection point (generic term)|point of intersection (generic term)
+(noun)|peak|apex|acme|extreme point (generic term)|extreme (generic term)|extremum (generic term)
+verthandi|1
+(noun)|Verdandi|Verthandi|Norn (generic term)
+vertical|6
+(adj)|perpendicular|plumb (similar term)|upended (similar term)|upright (similar term)|unsloped (similar term)|steep (related term)|straight (related term)|inclined (antonym)|horizontal (antonym)
+(adj)|consolidation|integration (related term)
+(adj)|erect|upright|erectile (similar term)|fastigiate (similar term)|orthostatic (similar term)|passant (similar term)|rampant (similar term)|rearing (similar term)|semi-climbing (similar term)|semi-erect (similar term)|semi-upright (similar term)|standing (similar term)|stand-up (similar term)|statant (similar term)|straight-backed (similar term)|straight (similar term)|unbent (similar term)|unbowed (similar term)|unerect (antonym)
+(adj)|hierarchical (similar term)|hierarchal (similar term)|hierarchic (similar term)
+(noun)|orientation (generic term)
+(noun)|upright|structural member (generic term)
+vertical angle|1
+(noun)|angle (generic term)
+vertical bank|1
+(noun)|bank (generic term)
+vertical circle|1
+(noun)|great circle (generic term)
+vertical combination|1
+(noun)|vertical integration|consolidation (generic term)|integration (generic term)
+vertical file|1
+(noun)|file (generic term)|file cabinet (generic term)|filing cabinet (generic term)
+vertical fin|1
+(noun)|vertical stabilizer|vertical stabiliser|tail fin|tailfin|stabilizer (generic term)
+vertical flute|1
+(noun)|fipple flute|fipple pipe|recorder|woodwind (generic term)|woodwind instrument (generic term)|wood (generic term)
+vertical integration|1
+(noun)|vertical combination|consolidation (generic term)|integration (generic term)
+vertical section|1
+(noun)|mechanical drawing (generic term)
+vertical stabiliser|1
+(noun)|vertical stabilizer|vertical fin|tail fin|tailfin|stabilizer (generic term)
+vertical stabilizer|1
+(noun)|vertical stabiliser|vertical fin|tail fin|tailfin|stabilizer (generic term)
+vertical surface|1
+(noun)|surface (generic term)
+vertical tail|1
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+vertical union|1
+(noun)|industrial union|union (generic term)|labor union (generic term)|trade union (generic term)|trades union (generic term)|brotherhood (generic term)
+verticality|1
+(noun)|verticalness|erectness|uprightness|position (generic term)|spatial relation (generic term)
+verticalness|1
+(noun)|verticality|erectness|uprightness|position (generic term)|spatial relation (generic term)
+verticil|1
+(noun)|coil (generic term)|whorl (generic term)|roll (generic term)|curl (generic term)|curlicue (generic term)|ringlet (generic term)|gyre (generic term)|scroll (generic term)
+verticillate|1
+(adj)|verticillated|whorled|cyclic (similar term)
+verticillated|1
+(adj)|verticillate|whorled|cyclic (similar term)
+verticilliosis|1
+(noun)|wilt (generic term)|wilt disease (generic term)
+verticillium|1
+(noun)|fungus (generic term)
+vertiginous|1
+(adj)|dizzy|giddy|woozy|ill (similar term)|sick (similar term)
+vertigo|1
+(noun)|dizziness|giddiness|lightheadedness|symptom (generic term)
+vertu|2
+(noun)|virtu|connoisseurship|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|virtu|quality (generic term)
+vervain|1
+(noun)|verbena|flower (generic term)
+vervain family|1
+(noun)|Verbenaceae|family Verbenaceae|verbena family|asterid dicot family (generic term)
+vervain sage|1
+(noun)|wild sage|wild clary|Salvia verbenaca|sage (generic term)|salvia (generic term)
+verve|1
+(noun)|vitality|energy (generic term)|muscularity (generic term)|vigor (generic term)|vigour (generic term)|vim (generic term)
+vervet|1
+(noun)|vervet monkey|Cercopithecus aethiops pygerythrus|guenon (generic term)|guenon monkey (generic term)
+vervet monkey|1
+(noun)|vervet|Cercopithecus aethiops pygerythrus|guenon (generic term)|guenon monkey (generic term)
+verwoerd|1
+(noun)|Verwoerd|Hendrik Verwoerd|Hendrik Frensch Verwoerd|statesman (generic term)|solon (generic term)|national leader (generic term)
+very|3
+(adj)|precise (similar term)
+(adj)|identical|selfsame|same (similar term)
+(adv)|really|real|rattling
+very-light|1
+(noun)|Very light|Very-light|flare (generic term)|flash (generic term)
+very fast|1
+(adv)|in no time
+very high frequency|1
+(noun)|VHF|radio frequency (generic term)
+very important person|1
+(noun)|VIP|high-up|dignitary|panjandrum|high muckamuck|important person (generic term)|influential person (generic term)|personage (generic term)
+very light|1
+(noun)|Very light|Very-light|flare (generic term)|flash (generic term)
+very loudly|1
+(adv)|fortissimo|pianissimo (antonym)
+very low density lipoprotein|1
+(noun)|VLDL|lipoprotein (generic term)
+very low frequency|1
+(noun)|VLF|radio frequency (generic term)
+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 (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+very reverend|1
+(noun)|Very Reverend|title (generic term)|title of respect (generic term)|form of address (generic term)
+very softly|1
+(adv)|pianissimo|fortissimo (antonym)
+very well|2
+(adv)|first-rate
+(adv)|fine|alright|all right|OK
+vesalius|1
+(noun)|Vesalius|Andreas Vesalius|anatomist (generic term)
+vesey|1
+(noun)|Vesey|Denmark Vesey|slave (generic term)|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+vesica|1
+(noun)|bladder|sac (generic term)
+vesical|1
+(adj)|sac (related term)
+vesical vein|1
+(noun)|vena vesicalis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vesicant|2
+(adj)|vesicatory|noxious (similar term)|harmful (similar term)
+(noun)|vesicatory|chemical agent (generic term)
+vesicaria|1
+(noun)|Vesicaria|genus Vesicaria|dilleniid dicot genus (generic term)
+vesicate|1
+(verb)|blister|swell (generic term)|swell up (generic term)|intumesce (generic term)|tumefy (generic term)|tumesce (generic term)
+vesication|1
+(noun)|vesiculation|blistering|organic process (generic term)|biological process (generic term)
+vesicatory|2
+(adj)|vesicant|noxious (similar term)|harmful (similar term)
+(noun)|vesicant|chemical agent (generic term)
+vesicle|1
+(noun)|cyst|sac (generic term)
+vesicopapule|1
+(noun)|papulovesicle|papule (generic term)
+vesicoureteral reflux|1
+(noun)|reflux (generic term)
+vesicula umbilicus|1
+(noun)|yolk sac|vitelline sac|umbilical vesicle|sac (generic term)
+vesicular|1
+(adj)|sac (related term)
+vesicular stomatitis|1
+(noun)|stomatitis (generic term)
+vesiculate|2
+(verb)|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+vesiculation|1
+(noun)|vesication|blistering|organic process (generic term)|biological process (generic term)
+vesiculitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vesiculovirus|1
+(noun)|animal virus (generic term)
+vespa|1
+(noun)|Vespa|genus Vespa|arthropod genus (generic term)
+vespa crabro|1
+(noun)|giant hornet|Vespa crabro|hornet (generic term)
+vespasian|1
+(noun)|Vespasian|Titus Flavius Sabinus Vespasianus|Roman Emperor (generic term)|Emperor of Rome (generic term)
+vesper|2
+(noun)|evening star|Hesperus|Vesper|planet (generic term)|major planet (generic term)
+(noun)|service (generic term)|religious service (generic term)|divine service (generic term)
+vesper mouse|1
+(noun)|white-footed mouse|Peromyscus leucopus|wood mouse (generic term)
+vesper sparrow|1
+(noun)|grass finch|Pooecetes gramineus|New World sparrow (generic term)
+vespers|1
+(noun)|evensong|canonical hour (generic term)
+vespertilian bat|1
+(noun)|vespertilionid|carnivorous bat (generic term)|microbat (generic term)
+vespertilio|1
+(noun)|Vespertilio|genus Vespertilio|mammal genus (generic term)
+vespertilio murinus|1
+(noun)|frosted bat|Vespertilio murinus|vespertilian bat (generic term)|vespertilionid (generic term)
+vespertilionid|1
+(noun)|vespertilian bat|carnivorous bat (generic term)|microbat (generic term)
+vespertilionidae|1
+(noun)|Vespertilionidae|family Vespertilionidae|mammal family (generic term)
+vespid|1
+(noun)|vespid wasp|wasp (generic term)
+vespid wasp|1
+(noun)|vespid|wasp (generic term)
+vespidae|1
+(noun)|Vespidae|family Vespidae|arthropod family (generic term)
+vespucci|1
+(noun)|Vespucci|Amerigo Vespucci|Americus Vespucius|navigator (generic term)
+vespula|1
+(noun)|Vespula|genus Vespula|arthropod genus (generic term)
+vespula maculata|1
+(noun)|bald-faced hornet|white-faced hornet|Vespula maculata|hornet (generic term)
+vespula maculifrons|1
+(noun)|yellow jacket|yellow hornet|Vespula maculifrons|hornet (generic term)
+vespula vulgaris|1
+(noun)|common wasp|Vespula vulgaris|vespid (generic term)|vespid wasp (generic term)
+vessel|3
+(noun)|vas|tube (generic term)|tube-shaped structure (generic term)
+(noun)|watercraft|craft (generic term)
+(noun)|container (generic term)
+vest|7
+(noun)|waistcoat|garment (generic term)
+(noun)|singlet|undershirt|undergarment (generic term)|unmentionable (generic term)
+(verb)|invest|enthrone|install (generic term)|divest (antonym)
+(verb)|give (generic term)
+(verb)|change hands (generic term)|change owners (generic term)
+(verb)|dress (generic term)|dress up (generic term)
+(verb)|robe|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+vest pocket|1
+(noun)|pocket (generic term)
+vesta|2
+(noun)|Vesta|Roman deity (generic term)
+(noun)|Vesta|asteroid (generic term)
+vestal|3
+(adj)|Roman deity (related term)
+(adj)|pure|virgin|virginal|virtuous|chaste (similar term)
+(noun)|woman (generic term)|adult female (generic term)
+vestal virgin|1
+(noun)|votary (generic term)
+vested|1
+(adj)|unconditional (similar term)
+vested interest|2
+(noun)|interest (generic term)|stake (generic term)
+(noun)|interest (generic term)|interest group (generic term)
+vestiary|1
+(adj)|covering|consumer goods (related term)
+vestibular|1
+(adj)|proprioception (related term)
+vestibular apparatus|1
+(noun)|vestibular system|sensory system (generic term)
+vestibular fold|1
+(noun)|false vocal cord|false vocal fold|superior vocal cord|ventricular fold|vocal cord (generic term)|vocal fold (generic term)|vocal band (generic term)|plica vocalis (generic term)
+vestibular gland|1
+(noun)|exocrine gland (generic term)|exocrine (generic term)|duct gland (generic term)
+vestibular sense|1
+(noun)|equilibrium|labyrinthine sense|sense of balance|sense of equilibrium|proprioception (generic term)
+vestibular system|1
+(noun)|vestibular apparatus|sensory system (generic term)
+vestibular vein|1
+(noun)|vena vestibularis|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vestibule|2
+(noun)|anteroom|antechamber|entrance hall|hall|foyer|lobby|room (generic term)
+(noun)|cavity (generic term)|bodily cavity (generic term)|cavum (generic term)
+vestibule of the ear|1
+(noun)|vestibule (generic term)
+vestibule of the vagina|1
+(noun)|vestibule (generic term)
+vestibulocochlear nerve|1
+(noun)|acoustic nerve|auditory nerve|nervus vestibulocochlearis|eighth cranial nerve|cranial nerve (generic term)
+vestige|1
+(noun)|trace|tincture|shadow|indication (generic term)|indicant (generic term)
+vestigial|1
+(adj)|rudimentary|undeveloped (similar term)
+vestiture|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+vestment|1
+(noun)|gown (generic term)|robe (generic term)
+vestmental|1
+(adj)|gown|robe (related term)
+vestmented|1
+(adj)|clothed (similar term)|clad (similar term)
+vestris|1
+(noun)|Vestris|Gaetan Vestris|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+vestry|2
+(noun)|committee (generic term)|commission (generic term)
+(noun)|sacristy|room (generic term)
+vestryman|1
+(noun)|church officer (generic term)
+vestrywoman|1
+(noun)|church officer (generic term)
+vesture|3
+(noun)|covering (generic term)|natural covering (generic term)|cover (generic term)
+(noun)|clothing|article of clothing|wear|wearable|habiliment|covering (generic term)|consumer goods (generic term)
+(verb)|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+vesuvian|1
+(noun)|vesuvianite|idocrase|mineral (generic term)
+vesuvianite|1
+(noun)|vesuvian|idocrase|mineral (generic term)
+vesuvius|1
+(noun)|Vesuvius|Mount Vesuvius|Mt. Vesuvius|volcano (generic term)
+vet|6
+(noun)|veterinarian|veterinary|veterinary surgeon|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+(noun)|veteran|ex-serviceman|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(verb)|be (generic term)|follow (generic term)
+(verb)|inspect (generic term)
+(verb)|treat (generic term)|care for (generic term)
+(verb)|doctor (generic term)
+vetch|1
+(noun)|legume (generic term)|leguminous plant (generic term)
+vetchling|1
+(noun)|vine (generic term)
+vetchworm|1
+(noun)|corn earworm|cotton bollworm|tomato fruitworm|tobacco budworm|Heliothis zia|bollworm (generic term)
+veteran|4
+(adj)|seasoned|experienced (similar term)|experient (similar term)
+(noun)|veteran soldier|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|vet|ex-serviceman|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+(noun)|old-timer|oldtimer|old hand|warhorse|old stager|stager|expert (generic term)
+veteran soldier|1
+(noun)|veteran|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)
+veterans' day|1
+(noun)|Veterans Day|Veterans' Day|Armistice Day|November 11|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+veterans day|1
+(noun)|Veterans Day|Veterans' Day|Armistice Day|November 11|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+veterans of foreign wars|1
+(noun)|Veterans of Foreign Wars|VFW|association (generic term)
+veterinarian|1
+(noun)|veterinary|veterinary surgeon|vet|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+veterinary|2
+(adj)|doctor|doc|physician|MD|Dr.|medico (related term)|medicine|medical specialty (related term)
+(noun)|veterinarian|veterinary surgeon|vet|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+veterinary medicine|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+veterinary school|1
+(noun)|school (generic term)
+veterinary surgeon|1
+(noun)|veterinarian|veterinary|vet|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+vetluga|1
+(noun)|Vetluga|Vetluga River|river (generic term)
+vetluga river|1
+(noun)|Vetluga|Vetluga River|river (generic term)
+veto|4
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+(noun)|power (generic term)|powerfulness (generic term)
+(verb)|blackball|negative|oppose (generic term)|controvert (generic term)|contradict (generic term)
+(verb)|forbid|prohibit|interdict|proscribe|disallow|command (generic term)|require (generic term)|compel (generic term)|allow (antonym)|permit (antonym)
+vex|5
+(verb)|annoy|rag|get to|bother|get at|irritate|rile|nark|nettle|gravel|chafe|devil|displease (generic term)
+(verb)|worry|perturb (generic term)|unhinge (generic term)|disquiet (generic term)|trouble (generic term)|cark (generic term)|distract (generic term)|disorder (generic term)|reassure (antonym)
+(verb)|agitate|disturb|commove|shake up|stir up|raise up|move (generic term)|displace (generic term)
+(verb)|debate (generic term)|deliberate (generic term)
+(verb)|perplex|stick|get|puzzle|mystify|baffle|beat|pose|bewilder|flummox|stupefy|nonplus|gravel|amaze|dumbfound|confuse (generic term)|throw (generic term)|fox (generic term)|befuddle (generic term)|fuddle (generic term)|bedevil (generic term)|confound (generic term)|discombobulate (generic term)|puzzle over (related term)|puzzle out (related term)
+vexation|4
+(noun)|annoyance|chafe|anger (generic term)|choler (generic term)|ire (generic term)
+(noun)|irritation|annoyance|botheration|psychological state (generic term)|mental state (generic term)
+(noun)|concern|worry|headache|negative stimulus (generic term)
+(noun)|annoyance|annoying|irritation|mistreatment (generic term)
+vexatious|1
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexing|disagreeable (similar term)
+vexatious litigation|1
+(noun)|litigation (generic term)|judicial proceeding (generic term)
+vexed|2
+(adj)|annoyed|harassed|harried|pestered|troubled (similar term)
+(adj)|difficult (similar term)|hard (similar term)
+vexer|1
+(noun)|tease|teaser|annoyer|unwelcome person (generic term)|persona non grata (generic term)
+vexing|2
+(adj)|exasperating|infuriating|maddening|displeasing (similar term)
+(adj)|annoying|bothersome|galling|irritating|nettlesome|pesky|pestering|pestiferous|plaguy|plaguey|teasing|vexatious|disagreeable (similar term)
+vfw|1
+(noun)|Veterans of Foreign Wars|VFW|association (generic term)
+vhf|2
+(noun)|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|viral haemorrhagic fever|VHF|viral infection (generic term)|virus infection (generic term)
+(noun)|very high frequency|VHF|radio frequency (generic term)
+vi|3
+(adj)|six|6|half dozen|half-dozen|cardinal (similar term)
+(noun)|six|6|VI|sixer|sise|Captain Hicks|half a dozen|sextet|sestet|sextuplet|hexad|digit (generic term)|figure (generic term)
+(noun)|United States Virgin Islands|American Virgin Islands|VI|possession (generic term)
+via aircraft|1
+(adv)|aerially
+via media|1
+(noun)|compromise|cooperation (generic term)
+viability|2
+(noun)|property (generic term)
+(noun)|practicality (generic term)
+viable|2
+(adj)|feasible|executable|practicable|workable|possible (similar term)
+(adj)|alive (similar term)|live (similar term)
+viaduct|1
+(noun)|bridge (generic term)|span (generic term)
+viagra|1
+(noun)|sildenafil|sildenafil citrate|Viagra|virility drug (generic term)|anti-impotence drug (generic term)
+vial|1
+(noun)|phial|ampule|ampul|ampoule|bottle (generic term)
+viand|1
+(noun)|dish (generic term)
+viands|1
+(noun)|commissariat|provisions|provender|victuals|food (generic term)|nutrient (generic term)
+viatical|1
+(adj)|buying|purchasing (related term)
+viatical settlement|2
+(noun)|advance death benefit (generic term)
+(noun)|viaticus settlement|liquidation (generic term)|settlement (generic term)
+viatication|1
+(noun)|viaticus|buying (generic term)|purchasing (generic term)
+viaticus|1
+(noun)|viatication|buying (generic term)|purchasing (generic term)
+viaticus settlement|1
+(noun)|viatical settlement|liquidation (generic term)|settlement (generic term)
+vibe|1
+(noun)|vibration|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+vibes|1
+(noun)|vibraphone|vibraharp|percussion instrument (generic term)|percussive instrument (generic term)
+vibist|1
+(noun)|vibraphonist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+viborg|1
+(noun)|Viborg|town (generic term)
+vibraharp|1
+(noun)|vibraphone|vibes|percussion instrument (generic term)|percussive instrument (generic term)
+vibramycin|1
+(noun)|doxycycline|Vibramycin|antibiotic (generic term)|antibiotic drug (generic term)
+vibrancy|1
+(noun)|plangency|resonance|reverberance|ringing|sonorousness|sonority|timbre (generic term)|timber (generic term)|quality (generic term)|tone (generic term)
+vibrant|3
+(adj)|vivacious|spirited (similar term)
+(adj)|reverberant (similar term)|ringing (similar term)
+(adj)|colorful (similar term)|colourful (similar term)
+vibraphone|1
+(noun)|vibraharp|vibes|percussion instrument (generic term)|percussive instrument (generic term)
+vibraphonist|1
+(noun)|vibist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+vibrate|5
+(verb)|move (generic term)
+(verb)|oscillate|swing (generic term)|sway (generic term)
+(verb)|hover|vacillate|oscillate|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|resonate|sound (generic term)|go (generic term)
+(verb)|thrill|tickle|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+vibrating|1
+(adj)|vibratory|moving (similar term)
+vibrating reed|1
+(noun)|reed|vibrator (generic term)
+vibration|5
+(noun)|quiver|quivering|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|vibe|atmosphere (generic term)|ambiance (generic term)|ambience (generic term)
+(noun)|shaking|shakiness|trembling|quiver|quivering|palpitation|motion (generic term)
+(noun)|oscillation|wave (generic term)|undulation (generic term)
+(noun)|air (generic term)|aura (generic term)|atmosphere (generic term)
+vibrational|1
+(adj)|wave|undulation (related term)
+vibrato|1
+(noun)|sound (generic term)
+vibrator|1
+(noun)|mechanical device (generic term)
+vibratory|1
+(adj)|vibrating|moving (similar term)
+vibrio|1
+(noun)|vibrion|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+vibrio comma|1
+(noun)|comma bacillus|Vibrio comma|vibrio (generic term)|vibrion (generic term)
+vibrio fetus|1
+(noun)|Vibrio fetus|vibrio (generic term)|vibrion (generic term)
+vibrion|1
+(noun)|vibrio|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+vibrionic|1
+(adj)|bacteria genus (related term)
+vibrissa|1
+(noun)|whisker|sensory hair|hair (generic term)
+viburnum|1
+(noun)|Viburnum|genus Viburnum|asterid dicot genus (generic term)
+viburnum dentatum|1
+(noun)|arrow wood|southern arrow wood|Viburnum dentatum|shrub (generic term)|bush (generic term)
+viburnum lantana|1
+(noun)|wayfaring tree|twist wood|twistwood|Viburnum lantana|shrub (generic term)|bush (generic term)
+viburnum opulus|1
+(noun)|guelder rose|European cranberrybush|European cranberry bush|crampbark|cranberry tree|Viburnum opulus|shrub (generic term)|bush (generic term)
+viburnum prunifolium|1
+(noun)|black haw|Viburnum prunifolium|shrub (generic term)|bush (generic term)
+viburnum recognitum|1
+(noun)|arrow wood|Viburnum recognitum|shrub (generic term)|bush (generic term)
+viburnum trilobum|1
+(noun)|cranberry bush|cranberry tree|American cranberry bush|highbush cranberry|Viburnum trilobum|shrub (generic term)|bush (generic term)
+vicar|2
+(noun)|priest (generic term)
+(noun)|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+vicar-general|1
+(noun)|deputy (generic term)|lieutenant (generic term)
+vicar apostolic|1
+(noun)|bishop (generic term)
+vicar of christ|1
+(noun)|pope|Catholic Pope|Roman Catholic Pope|pontiff|Holy Father|Vicar of Christ|Bishop of Rome|spiritual leader (generic term)|Catholic (generic term)
+vicarage|1
+(noun)|parsonage|rectory|residence (generic term)
+vicarial|1
+(adj)|priest (related term)
+vicariate|1
+(noun)|vicarship|institution (generic term)|establishment (generic term)
+vicarious|3
+(adj)|secondary (similar term)
+(adj)|abnormal (similar term)
+(adj)|exchangeable (similar term)
+vicarship|1
+(noun)|vicariate|institution (generic term)|establishment (generic term)
+viccinium membranaceum|1
+(noun)|bilberry|thin-leaved bilberry|mountain blue berry|Viccinium membranaceum|blueberry (generic term)|blueberry bush (generic term)
+viccinium myrtillus|1
+(noun)|bilberry|whortleberry|whinberry|blaeberry|Viccinium myrtillus|blueberry (generic term)|blueberry bush (generic term)
+vice|2
+(noun)|frailty|evil (generic term)|evilness (generic term)
+(noun)|transgression (generic term)|evildoing (generic term)
+vice-presidency|2
+(noun)|vice-presidential term|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+vice-presidential|1
+(adj)|executive|executive director (related term)
+vice-presidential term|1
+(noun)|vice-presidency|tenure (generic term)|term of office (generic term)|incumbency (generic term)
+vice-regent|1
+(noun)|deputy (generic term)|lieutenant (generic term)
+vice admiral|1
+(noun)|flag officer (generic term)
+vice chairman|1
+(noun)|president (generic term)|chairman (generic term)|chairwoman (generic term)|chair (generic term)|chairperson (generic term)
+vice chancellor|1
+(noun)|administrator (generic term)|decision maker (generic term)
+vice crime|1
+(noun)|crime (generic term)|law-breaking (generic term)
+vice president|1
+(noun)|V.P.|executive (generic term)|executive director (generic term)
+vice president of the united states|1
+(noun)|Vice President of the United States|vice president (generic term)|V.P. (generic term)
+vice squad|1
+(noun)|police squad (generic term)
+vice versa|1
+(adv)|the other way around|contrariwise
+vicegerent|1
+(noun)|deputy (generic term)|surrogate (generic term)
+vicenary|1
+(adj)|quantitative (similar term)
+vicennial|1
+(adj)|large integer (related term)
+vicente lopez|1
+(noun)|Vicente Lopez|city (generic term)|metropolis (generic term)|urban center (generic term)
+viceregal|1
+(adj)|governor (related term)
+vicereine|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|viceroy|governor (generic term)
+viceroy|2
+(noun)|vicereine|governor (generic term)
+(noun)|Limenitis archippus|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+viceroyalty|1
+(noun)|jurisdiction (generic term)
+viceroyship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+vichy|1
+(noun)|Vichy|town (generic term)
+vichy water|1
+(noun)|Vichy water|mineral water (generic term)
+vichyssoise|1
+(noun)|soup (generic term)
+vicia|1
+(noun)|Vicia|genus Vicia|rosid dicot genus (generic term)
+vicia cracca|1
+(noun)|tufted vetch|bird vetch|Calnada pea|Vicia cracca|vetch (generic term)
+vicia faba|1
+(noun)|broad bean|broad-bean|broad-bean plant|English bean|European bean|field bean|Vicia faba|shell bean (generic term)|shell bean plant (generic term)
+vicia orobus|1
+(noun)|bitter betch|Vicia orobus|vetch (generic term)
+vicia sativa|1
+(noun)|spring vetch|Vicia sativa|vetch (generic term)
+vicia sepium|1
+(noun)|bush vetch|Vicia sepium|vetch (generic term)
+vicia villosa|1
+(noun)|hairy vetch|hairy tare|Vicia villosa|tare (generic term)
+vicinal|1
+(adj)|section (related term)
+vicinity|1
+(noun)|locality|neighborhood|neighbourhood|neck of the woods|section (generic term)
+vicious|4
+(adj)|barbarous|brutal|cruel|fell|roughshod|savage|inhumane (similar term)
+(adj)|evil|wicked (similar term)
+(adj)|condemnable|criminal|deplorable|reprehensible|wrong (similar term)
+(adj)|poisonous|venomous|malicious (similar term)
+vicious circle|2
+(noun)|vicious cycle|positive feedback (generic term)|regeneration (generic term)
+(noun)|specious argument (generic term)
+vicious cycle|1
+(noun)|vicious circle|positive feedback (generic term)|regeneration (generic term)
+viciously|1
+(adv)|brutally|savagely
+viciousness|1
+(noun)|ferociousness|brutality|savagery|cruelty (generic term)|cruelness (generic term)|harshness (generic term)
+vicissitude|2
+(noun)|variation (generic term)|fluctuation (generic term)
+(noun)|mutability (generic term)|mutableness (generic term)
+vicksburg|2
+(noun)|Vicksburg|town (generic term)
+(noun)|Vicksburg|siege of Vicksburg|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+vicomte de chateaubriand|1
+(noun)|Chateaubriand|Francois Rene Chateaubriand|Vicomte de Chateaubriand|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+vicomte ferdinand marie de lesseps|1
+(noun)|Lesseps|Ferdinand de Lesseps|Vicomte Ferdinand Marie de Lesseps|diplomat (generic term)|diplomatist (generic term)
+victim|2
+(noun)|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|dupe|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+victimisation|1
+(noun)|exploitation|victimization|using|mistreatment (generic term)
+victimise|2
+(verb)|victimize|wrong (generic term)
+(verb)|victimize|punish (generic term)|penalize (generic term)|penalise (generic term)
+victimised|1
+(adj)|exploited|ill-used|put-upon|used|victimized|misused (similar term)
+victimiser|1
+(noun)|victimizer|bad person (generic term)
+victimization|2
+(noun)|adversity (generic term)|hardship (generic term)|hard knocks (generic term)
+(noun)|exploitation|victimisation|using|mistreatment (generic term)
+victimize|3
+(verb)|victimise|wrong (generic term)
+(verb)|victimise|punish (generic term)|penalize (generic term)|penalise (generic term)
+(verb)|swindle|rook|goldbrick|nobble|diddle|bunco|defraud|scam|mulct|gyp|gip|hornswoggle|short-change|con|cheat (generic term)|rip off (generic term)|chisel (generic term)
+victimized|1
+(adj)|exploited|ill-used|put-upon|used|victimised|misused (similar term)
+victimizer|1
+(noun)|victimiser|bad person (generic term)
+victimless crime|1
+(noun)|crime (generic term)|law-breaking (generic term)
+victor|2
+(noun)|master|superior|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+(noun)|winner|contestant (generic term)|loser (antonym)
+victor-marie hugo|1
+(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet (generic term)|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+victor emanuel ii|1
+(noun)|Victor Emanuel II|king (generic term)|male monarch (generic term)|Rex (generic term)
+victor emanuel iii|1
+(noun)|Victor Emanuel III|king (generic term)|male monarch (generic term)|Rex (generic term)
+victor franz hess|1
+(noun)|Hess|Victor Hess|Victor Franz Hess|physicist (generic term)
+victor herbert|1
+(noun)|Herbert|Victor Herbert|musician (generic term)
+victor hess|1
+(noun)|Hess|Victor Hess|Victor Franz Hess|physicist (generic term)
+victor horta|1
+(noun)|Horta|Victor Horta|architect (generic term)|designer (generic term)
+victor hugo|1
+(noun)|Hugo|Victor Hugo|Victor-Marie Hugo|poet (generic term)|novelist (generic term)|dramatist (generic term)|playwright (generic term)
+victoria|7
+(noun)|Victoria|Queen Victoria|Queen of England (generic term)|empress (generic term)
+(noun)|Victoria|Roman deity (generic term)
+(noun)|Victoria|Victoria Falls|waterfall (generic term)|falls (generic term)
+(noun)|Victoria|town (generic term)
+(noun)|Victoria|capital of Seychelles|national capital (generic term)|port (generic term)
+(noun)|Victoria|Australian state (generic term)
+(noun)|Victoria|provincial capital (generic term)|port (generic term)
+victoria clafin woodhull|1
+(noun)|Woodhull|Victoria Clafin Woodhull|suffragist (generic term)
+victoria cross|1
+(noun)|Victoria Cross|decoration (generic term)|laurel wreath (generic term)|medal (generic term)|medallion (generic term)|palm (generic term)|ribbon (generic term)
+victoria day|1
+(noun)|Victoria Day|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)
+victoria de durango|1
+(noun)|Durango|Victoria de Durango|city (generic term)|metropolis (generic term)|urban center (generic term)
+victoria falls|2
+(noun)|Victoria|Victoria Falls|waterfall (generic term)|falls (generic term)
+(noun)|Iguazu|Iguazu Falls|Iguassu|Iguassu Falls|Victoria Falls|waterfall (generic term)|falls (generic term)
+victoria land|1
+(noun)|Victoria Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+victoria nyanza|1
+(noun)|Lake Victoria|Victoria Nyanza|lake (generic term)
+victoria plum|1
+(noun)|Victoria plum|plum (generic term)
+victoria sandwich|1
+(noun)|Victoria sandwich|Victoria sponge|cake (generic term)
+victoria sponge|1
+(noun)|Victoria sandwich|Victoria sponge|cake (generic term)
+victorian|4
+(adj)|Victorian|Queen of England|empress (related term)|historic period|age (related term)
+(adj)|priggish|prim|prissy|prudish|puritanical|square-toed|straitlaced|strait-laced|straightlaced|straight-laced|tight-laced|proper (similar term)
+(adj)|Victorian|nonmodern (similar term)
+(noun)|Victorian|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+victorian age|1
+(noun)|Victorian age|historic period (generic term)|age (generic term)
+victorian architecture|1
+(noun)|Victorian architecture|architectural style (generic term)|style of architecture (generic term)|type of architecture (generic term)
+victoriana|1
+(noun)|Victoriana|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+victorious|2
+(adj)|winning|successful (similar term)
+(adj)|triumphant|undefeated (similar term)
+victory|1
+(noun)|triumph|ending (generic term)|conclusion (generic term)|finish (generic term)|success (generic term)|defeat (antonym)
+victory celebration|1
+(noun)|celebration (generic term)|festivity (generic term)
+victory day|1
+(noun)|V-day|Victory Day|day (generic term)
+victory garden|1
+(noun)|kitchen garden (generic term)|vegetable garden (generic term)|vegetable patch (generic term)
+victory lap|1
+(noun)|lap of honour|lap (generic term)|circle (generic term)|circuit (generic term)
+victrola|1
+(noun)|Victrola|gramophone (generic term)|acoustic gramophone (generic term)
+victual|4
+(noun)|comestible|edible|eatable|pabulum|victuals|food (generic term)|nutrient (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|store (generic term)|hive away (generic term)|lay in (generic term)|put in (generic term)|salt away (generic term)|stack away (generic term)|stash away (generic term)
+(verb)|eat (generic term)
+victualer|2
+(noun)|victualler|host (generic term)|innkeeper (generic term)|boniface (generic term)
+(noun)|sutler|victualler|provisioner|supplier (generic term)|provider (generic term)
+victualler|2
+(noun)|victualer|host (generic term)|innkeeper (generic term)|boniface (generic term)
+(noun)|sutler|victualer|provisioner|supplier (generic term)|provider (generic term)
+victuals|3
+(noun)|commissariat|provisions|provender|viands|food (generic term)|nutrient (generic term)
+(noun)|nutriment|nourishment|nutrition|sustenance|aliment|alimentation|food (generic term)|nutrient (generic term)
+(noun)|comestible|edible|eatable|pabulum|victual|food (generic term)|nutrient (generic term)
+vicugna|1
+(noun)|Vicugna|genus Vicugna|mammal genus (generic term)
+vicugna vicugna|1
+(noun)|vicuna|Vicugna vicugna|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+vicuna|3
+(noun)|wool (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|Vicugna vicugna|even-toed ungulate (generic term)|artiodactyl (generic term)|artiodactyl mammal (generic term)
+vidal|1
+(noun)|Vidal|Gore Vidal|Eugene Luther Vidal|writer (generic term)|author (generic term)
+vidalia onion|1
+(noun)|Vidalia onion|onion (generic term)
+vidar|1
+(noun)|Vitharr|Vithar|Vidar|Norse deity (generic term)
+videlicet|1
+(adv)|namely|viz.|that is to say
+video|3
+(noun)|picture|visual communication (generic term)
+(noun)|video recording|recording (generic term)
+(noun)|television|telecasting|TV|broadcasting (generic term)
+video digitizing|1
+(noun)|photography (generic term)
+video display|1
+(noun)|display|electronic device (generic term)
+video equipment|1
+(noun)|television equipment|electronic equipment (generic term)
+video game|1
+(noun)|computer game|game (generic term)
+video recording|1
+(noun)|video|recording (generic term)
+videocassette|1
+(noun)|cassette (generic term)|video recording (generic term)|video (generic term)
+videocassette recorder|1
+(noun)|VCR|tape recorder (generic term)|tape machine (generic term)
+videodisc|1
+(noun)|videodisk|DVD|optical disk (generic term)|optical disc (generic term)
+videodisk|1
+(noun)|videodisc|DVD|optical disk (generic term)|optical disc (generic term)
+videotape|3
+(noun)|tape (generic term)|tape recording (generic term)|taping (generic term)|video recording (generic term)|video (generic term)
+(noun)|magnetic tape (generic term)|mag tape (generic term)|tape (generic term)
+(verb)|tape|record (generic term)|enter (generic term)|put down (generic term)
+vidua|1
+(noun)|Vidua|genus Vidua|bird genus (generic term)
+vie|1
+(verb)|compete|contend
+vienna|1
+(noun)|Vienna|Austrian capital|capital of Austria|national capital (generic term)
+vienna roll|1
+(noun)|hard roll|Vienna roll|bun (generic term)|roll (generic term)
+vienna sausage|1
+(noun)|Vienna sausage|frank (generic term)|frankfurter (generic term)|hotdog (generic term)|hot dog (generic term)|dog (generic term)|wiener (generic term)|wienerwurst (generic term)|weenie (generic term)
+vienne|2
+(noun)|Vienne|town (generic term)
+(noun)|Vienne|Council of Vienne|council (generic term)
+viennese|1
+(adj)|Viennese|national capital (related term)
+vientiane|1
+(noun)|Vientiane|Laotian capital|capital of Laos|national capital (generic term)
+vieques|1
+(noun)|Vieques|island (generic term)
+viet nam|1
+(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country (generic term)|Asian nation (generic term)
+vietnam|2
+(noun)|Vietnam|Socialist Republic of Vietnam|Viet Nam|Annam|Asian country (generic term)|Asian nation (generic term)
+(noun)|Vietnam War|Vietnam|war (generic term)|warfare (generic term)
+vietnam war|1
+(noun)|Vietnam War|Vietnam|war (generic term)|warfare (generic term)
+vietnamese|5
+(adj)|Vietnamese|Asian country|Asian nation (related term)
+(adj)|Vietnamese|Mon-Khmer (related term)
+(adj)|Vietnamese|Asian|Asiatic (related term)
+(noun)|Vietnamese|Annamese|Asian (generic term)|Asiatic (generic term)
+(noun)|Vietnamese|Annamese|Annamite|Mon-Khmer (generic term)
+vietnamese monetary unit|1
+(noun)|Vietnamese monetary unit|monetary unit (generic term)
+view|13
+(noun)|position|perspective|orientation (generic term)
+(noun)|aspect|prospect|scene|vista|panorama|visual percept (generic term)|visual image (generic term)
+(noun)|survey|sight|look (generic term)|looking (generic term)|looking at (generic term)
+(noun)|eyeshot|range (generic term)|reach (generic term)
+(noun)|opinion|sentiment|persuasion|thought|belief (generic term)
+(noun)|opinion|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+(noun)|scene|graphic art (generic term)
+(noun)|horizon|purview|scope (generic term)|range (generic term)|reach (generic term)|orbit (generic term)|compass (generic term)|ambit (generic term)
+(noun)|appearance (generic term)|visual aspect (generic term)
+(verb)|see|consider|reckon|regard|think (generic term)|believe (generic term)|consider (generic term)|conceive (generic term)
+(verb)|consider|look at|analyze (generic term)|analyse (generic term)|study (generic term)|examine (generic term)|canvass (generic term)|canvas (generic term)
+(verb)|watch|see|catch|take in|watch (generic term)
+view angle|1
+(noun)|angle of view|angle (generic term)
+view as|1
+(verb)|deem|hold|take for|see (generic term)|consider (generic term)|reckon (generic term)|view (generic term)|regard (generic term)
+view finder|1
+(noun)|finder|viewfinder|optical device (generic term)
+viewable|1
+(adj)|visible (similar term)|seeable (similar term)
+viewer|2
+(noun)|spectator|witness|watcher|looker|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|optical device (generic term)
+viewers|1
+(noun)|viewing audience|TV audience|audience (generic term)
+viewfinder|1
+(noun)|finder|view finder|optical device (generic term)
+viewgraph|1
+(noun)|overhead|foil (generic term)|transparency (generic term)
+viewing|2
+(noun)|screening|showing|display (generic term)
+(noun)|wake|vigil (generic term)|watch (generic term)
+viewing audience|1
+(noun)|TV audience|viewers|audience (generic term)
+viewless|1
+(adj)|neutral (similar term)
+viewpoint|2
+(noun)|point of view|stand|standpoint|position (generic term)|stance (generic term)|posture (generic term)
+(noun)|vantage point|vantage (generic term)
+vigdis finnbogadottir|1
+(noun)|Finnbogadottir|Vigdis Finnbogadottir|president (generic term)
+vigee-lebrun|1
+(noun)|Vigee-Lebrun|Elisabeth Vigee-Lebrun|Marie Louise Elisabeth Vigee-Lebrun|painter (generic term)
+vigesimal|1
+(adj)|large integer (related term)
+vigil|3
+(noun)|wakefulness (generic term)
+(noun)|watch|rite (generic term)|religious rite (generic term)
+(noun)|watch|surveillance (generic term)
+vigil candle|1
+(noun)|vigil light|candle (generic term)|taper (generic term)|wax light (generic term)
+vigil light|1
+(noun)|vigil candle|candle (generic term)|taper (generic term)|wax light (generic term)
+vigilance|2
+(noun)|watchfulness|wakefulness|alertness|attention (generic term)
+(noun)|watchfulness|weather eye|attentiveness (generic term)
+vigilance committee|1
+(noun)|committee (generic term)|citizens committee (generic term)
+vigilance man|1
+(noun)|vigilante|volunteer (generic term)|unpaid worker (generic term)
+vigilant|1
+(adj)|argus-eyed|open-eyed|wakeful|watchful|alert (similar term)
+vigilante|1
+(noun)|vigilance man|volunteer (generic term)|unpaid worker (generic term)
+vigilantism|1
+(noun)|law enforcement (generic term)
+vigilantly|1
+(adv)|watchfully
+vigna|1
+(noun)|Vigna|genus Vigna|rosid dicot genus (generic term)
+vigna aconitifolia|1
+(noun)|moth bean|Vigna aconitifolia|Phaseolus aconitifolius|legume (generic term)|leguminous plant (generic term)
+vigna angularis|1
+(noun)|adzuki bean|adsuki bean|Vigna angularis|Phaseolus angularis|legume (generic term)|leguminous plant (generic term)
+vigna caracalla|1
+(noun)|snailflower|snail-flower|snail flower|snail bean|corkscrew flower|Vigna caracalla|Phaseolus caracalla|legume (generic term)|leguminous plant (generic term)
+vigna radiata|1
+(noun)|mung|mung bean|green gram|golden gram|Vigna radiata|Phaseolus aureus|legume (generic term)|leguminous plant (generic term)
+vigna sesquipedalis|1
+(noun)|asparagus bean|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume (generic term)|leguminous plant (generic term)
+vigna sinensis|1
+(noun)|cowpea|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume (generic term)|leguminous plant (generic term)
+vigna unguiculata|1
+(noun)|cowpea|cowpea plant|black-eyed pea|Vigna unguiculata|Vigna sinensis|legume (generic term)|leguminous plant (generic term)
+vigna unguiculata sesquipedalis|1
+(noun)|asparagus bean|yard-long bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume (generic term)|leguminous plant (generic term)
+vignette|3
+(noun)|sketch|description (generic term)
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+(noun)|sketch (generic term)|study (generic term)
+vigor|3
+(noun)|energy|vigour|zip|force (generic term)|forcefulness (generic term)|strength (generic term)
+(noun)|vigour|dynamism|heartiness|strength (generic term)
+(noun)|energy|muscularity|vigour|vim|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+vigorish|2
+(noun)|usury|interest rate (generic term)|rate of interest (generic term)
+(noun)|rake-off|cut (generic term)
+vigorous|2
+(adj)|energetic (similar term)
+(adj)|robust (similar term)
+vigorously|1
+(adv)|smartly
+vigour|3
+(noun)|energy|vigor|zip|force (generic term)|forcefulness (generic term)|strength (generic term)
+(noun)|vigor|dynamism|heartiness|strength (generic term)
+(noun)|energy|muscularity|vigor|vim|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+vii|2
+(adj)|seven|7|cardinal (similar term)
+(noun)|seven|7|VII|sevener|heptad|septet|septenary|digit (generic term)|figure (generic term)
+viii|2
+(adj)|eight|8|cardinal (similar term)
+(noun)|eight|8|VIII|eighter|eighter from Decatur|octad|ogdoad|octonary|octet|digit (generic term)|figure (generic term)
+viking|1
+(noun)|Viking|Scandinavian (generic term)|Norse (generic term)|Northman (generic term)
+viktor korchnoi|1
+(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master (generic term)
+viktor lvovich korchnoi|1
+(noun)|Korchnoi|Viktor Korchnoi|Viktor Lvovich Korchnoi|chess master (generic term)
+viktor vasarely|1
+(noun)|Vasarely|Viktor Vasarely|painter (generic term)
+vila|1
+(noun)|Port Vila|Vila|capital of Vanuatu|national capital (generic term)
+vile|2
+(adj)|despicable|ugly|slimy|unworthy|worthless|wretched|evil (similar term)
+(adj)|nauseating|nauseous|noisome|queasy|loathsome|offensive|sickening|unwholesome (similar term)
+vileness|2
+(noun)|nefariousness|wickedness|ugliness|evil (generic term)|evilness (generic term)
+(noun)|loathsomeness|repulsiveness|sliminess|lousiness|wickedness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+vilfredo pareto|1
+(noun)|Pareto|Vilfredo Pareto|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+vilification|2
+(noun)|smear|malignment|defamation (generic term)|calumny (generic term)|calumniation (generic term)|obloquy (generic term)|traducement (generic term)|hatchet job (generic term)
+(noun)|abuse|insult|revilement|contumely|disrespect (generic term)|discourtesy (generic term)
+vilifier|1
+(noun)|defamer|maligner|slanderer|libeler|backbiter|traducer|detractor (generic term)|disparager (generic term)|depreciator (generic term)|knocker (generic term)
+vilify|1
+(verb)|revile|vituperate|rail|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+vilipend|1
+(verb)|deprecate|depreciate|disparage (generic term)|belittle (generic term)|pick at (generic term)
+villa|3
+(noun)|Villa|Pancho Villa|Francisco Villa|Doroteo Arango|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+(noun)|house (generic term)
+(noun)|country house (generic term)
+villa-lobos|1
+(noun)|Villa-Lobos|Heitor Villa-Lobos|composer (generic term)
+villa hermosa|1
+(noun)|Villahermosa|Villa Hermosa|city (generic term)|metropolis (generic term)|urban center (generic term)
+village|3
+(noun)|small town|settlement|community (generic term)
+(noun)|hamlet|settlement (generic term)
+(noun)|Greenwich Village|Village|residential district (generic term)|residential area (generic term)|community (generic term)
+village green|1
+(noun)|park (generic term)|commons (generic term)|common (generic term)|green (generic term)
+villager|1
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+villahermosa|1
+(noun)|Villahermosa|Villa Hermosa|city (generic term)|metropolis (generic term)|urban center (generic term)
+villain|2
+(noun)|scoundrel|unwelcome person (generic term)|persona non grata (generic term)
+(noun)|baddie|character (generic term)|role (generic term)|theatrical role (generic term)|part (generic term)|persona (generic term)
+villainage|1
+(noun)|villeinage|legal status (generic term)|servitude (generic term)
+villainess|1
+(noun)|villain (generic term)|scoundrel (generic term)
+villainous|1
+(adj)|nefarious|wicked (similar term)
+villainousness|1
+(noun)|villainy|evil (generic term)|evilness (generic term)
+villainy|2
+(noun)|villainousness|evil (generic term)|evilness (generic term)
+(noun)|transgression (generic term)|evildoing (generic term)
+villard|1
+(noun)|Villard|Henry Villard|businessman (generic term)|man of affairs (generic term)
+villein|1
+(noun)|serf|helot|thrall (generic term)
+villeinage|2
+(noun)|villainage|legal status (generic term)|servitude (generic term)
+(noun)|tenure (generic term)|land tenure (generic term)
+villoma|1
+(noun)|papilloma|papillary tumor|papillary tumour|benign tumor (generic term)|benign tumour (generic term)|nonmalignant tumor (generic term)|nonmalignant tumour (generic term)|nonmalignant neoplasm (generic term)
+villon|1
+(noun)|Villon|Francois Villon|poet (generic term)
+villus|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+vilna|1
+(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital (generic term)
+vilnius|1
+(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital (generic term)
+vilno|1
+(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital (generic term)
+vim|2
+(noun)|energy|vitality|good health (generic term)|healthiness (generic term)
+(noun)|energy|muscularity|vigor|vigour|liveliness (generic term)|life (generic term)|spirit (generic term)|sprightliness (generic term)
+viminaria|1
+(noun)|Viminaria|genus Viminaria|rosid dicot genus (generic term)
+viminaria denudata|1
+(noun)|swamp oak|Viminaria juncea|Viminaria denudata|shrub (generic term)|bush (generic term)
+viminaria juncea|1
+(noun)|swamp oak|Viminaria juncea|Viminaria denudata|shrub (generic term)|bush (generic term)
+vin ordinaire|1
+(noun)|table wine (generic term)
+vina del mar|1
+(noun)|Vina del Mar|city (generic term)|metropolis (generic term)|urban center (generic term)
+vinaceous|2
+(adj)|vinous|alcohol|alcoholic beverage|intoxicant|inebriant (related term)
+(adj)|chromatic (similar term)
+vinaigrette|1
+(noun)|French dressing|sauce vinaigrette|dressing (generic term)|salad dressing (generic term)
+vinblastine|1
+(noun)|Velban|periwinkle plant derivative (generic term)
+vinca|1
+(noun)|Vinca|genus Vinca|dicot genus (generic term)|magnoliopsid genus (generic term)
+vinca major|1
+(noun)|large periwinkle|Vinca major|periwinkle (generic term)
+vinca minor|1
+(noun)|myrtle|Vinca minor|periwinkle (generic term)
+vinca rosea|1
+(noun)|periwinkle|rose periwinkle|Madagascar periwinkle|old maid|Cape periwinkle|red periwinkle|cayenne jasmine|Catharanthus roseus|Vinca rosea|herb (generic term)|herbaceous plant (generic term)
+vincent's angina|1
+(noun)|Vincent's angina|Vincent's infection|trench mouth|contagious disease (generic term)|contagion (generic term)|angina (generic term)
+vincent's infection|1
+(noun)|Vincent's angina|Vincent's infection|trench mouth|contagious disease (generic term)|contagion (generic term)|angina (generic term)
+vincent van gogh|1
+(noun)|van Gogh|Vincent van Gogh|Gogh|painter (generic term)
+vincenzo bellini|1
+(noun)|Bellini|Vincenzo Bellini|composer (generic term)
+vincetoxicum|1
+(noun)|Vincetoxicum|genus Vincetoxicum|dicot genus (generic term)|magnoliopsid genus (generic term)
+vincetoxicum hirsutum|1
+(noun)|negro vine|Vincetoxicum hirsutum|Vincetoxicum negrum|vine (generic term)
+vincetoxicum negrum|1
+(noun)|negro vine|Vincetoxicum hirsutum|Vincetoxicum negrum|vine (generic term)
+vincible|1
+(adj)|beatable|vanquishable|conquerable (similar term)
+vincristine|1
+(noun)|Oncovin|periwinkle plant derivative (generic term)
+vindicate|3
+(verb)|justify|uphold (generic term)|maintain (generic term)
+(verb)|maintain (generic term)|defend (generic term)
+(verb)|acquit (generic term)|assoil (generic term)|clear (generic term)|discharge (generic term)|exonerate (generic term)|exculpate (generic term)
+vindicated|1
+(adj)|absolved|clear|cleared|exculpated|exonerated|innocent (similar term)|guiltless (similar term)|clean-handed (similar term)
+vindication|2
+(noun)|exoneration|clearing (generic term)
+(noun)|defense|defence|justification (generic term)
+vindicator|1
+(noun)|apologist|justifier|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+vindicatory|3
+(adj)|retaliatory|relatiative|retributive|retributory|punitive (similar term)|punitory (similar term)
+(adj)|retributive|retributory|just (similar term)
+(adj)|justificative|justificatory|exculpatory (similar term)
+vindictive|2
+(adj)|revengeful|vengeful|unforgiving (similar term)
+(adj)|despiteful|spiteful|malicious (similar term)
+vindictively|1
+(adv)|revengefully|vengefully
+vindictiveness|1
+(noun)|vengefulness|malevolence (generic term)|malignity (generic term)
+vine|1
+(noun)|vascular plant (generic term)|tracheophyte (generic term)
+vine cactus|1
+(noun)|ocotillo|coachwhip|Jacob's staff|Fouquieria splendens|candlewood (generic term)
+vine maple|1
+(noun)|Acer circinatum|maple (generic term)
+vine snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+vinegar|2
+(noun)|acetum|condiment (generic term)
+(noun)|acetic acid (generic term)|ethanoic acid (generic term)
+vinegar eel|1
+(noun)|vinegar worm|Anguillula aceti|Turbatrix aceti|eelworm (generic term)
+vinegar fly|1
+(noun)|fruit fly (generic term)|pomace fly (generic term)
+vinegar joe stilwell|1
+(noun)|Stilwell|Joseph Warren Stilwell|Vinegar Joe Stilwell|Uncle Joe|general (generic term)|full general (generic term)
+vinegar tree|2
+(noun)|staghorn sumac|velvet sumac|Virginian sumac|Rhus typhina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+(noun)|smooth sumac|scarlet sumac|Rhus glabra|sumac (generic term)|sumach (generic term)|shumac (generic term)
+vinegar worm|1
+(noun)|vinegar eel|Anguillula aceti|Turbatrix aceti|eelworm (generic term)
+vinegariness|1
+(noun)|vinegarishness|sourness (generic term)|sour (generic term)|acidity (generic term)
+vinegarish|2
+(adj)|acetose|acetous|vinegary|sour (similar term)
+(adj)|vinegary|ill-natured (similar term)
+vinegarishness|1
+(noun)|vinegariness|sourness (generic term)|sour (generic term)|acidity (generic term)
+vinegarroon|1
+(noun)|Mastigoproctus giganteus|whip-scorpion (generic term)|whip scorpion (generic term)
+vinegarweed|1
+(noun)|turpentine camphor weed|camphorweed|Trichostema lanceolatum|blue curls (generic term)
+vinegary|2
+(adj)|acetose|acetous|vinegarish|sour (similar term)
+(adj)|vinegarish|ill-natured (similar term)
+vinery|1
+(noun)|vineyard|farm (generic term)
+vineyard|1
+(noun)|vinery|farm (generic term)
+vingt-et-un|1
+(noun)|blackjack|twenty-one|card game (generic term)|cards (generic term)
+viniculture|1
+(noun)|viticulture|culture (generic term)
+vinifera|1
+(noun)|vinifera grape|common grape vine|Vitis vinifera|grape (generic term)|grapevine (generic term)
+vinifera grape|2
+(noun)|vinifera|common grape vine|Vitis vinifera|grape (generic term)|grapevine (generic term)
+(noun)|grape (generic term)
+vinification|1
+(noun)|zymosis (generic term)|zymolysis (generic term)|fermentation (generic term)|fermenting (generic term)|ferment (generic term)
+vinify|1
+(verb)|ferment (generic term)|work (generic term)
+vino|1
+(noun)|wine|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+vinogradoff|1
+(noun)|Vinogradoff|Sir Paul Gavrilovich Vinogradoff|historian (generic term)|historiographer (generic term)
+vinous|1
+(adj)|vinaceous|alcohol|alcoholic beverage|intoxicant|inebriant (related term)
+vinson|1
+(noun)|Vinson|Frederick Moore Vinson|chief justice (generic term)
+vintage|2
+(noun)|wine (generic term)|vino (generic term)
+(noun)|time of origin|oldness (generic term)
+vintager|1
+(noun)|harvester (generic term)|reaper (generic term)
+vintner|2
+(noun)|wine merchant|merchant (generic term)|merchandiser (generic term)
+(noun)|winemaker|wine maker|maker (generic term)|shaper (generic term)
+vinyl|2
+(noun)|vinyl group|vinyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+(noun)|plastic (generic term)
+vinyl cyanide|1
+(noun)|propenonitrile|acrylonitrile|nitrile (generic term)|nitril (generic term)|cyanide (generic term)
+vinyl ether|1
+(noun)|ether|ethoxyethane|divinyl ether|diethyl ether|ethyl ether|inhalation anesthetic (generic term)|inhalation anaesthetic (generic term)|inhalation general anesthetic (generic term)|inhalation general anaesthetic (generic term)
+vinyl group|1
+(noun)|vinyl|vinyl radical|group (generic term)|radical (generic term)|chemical group (generic term)
+vinyl polymer|1
+(noun)|vinyl resin|polyvinyl resin|synthetic resin (generic term)
+vinyl radical|1
+(noun)|vinyl|vinyl group|group (generic term)|radical (generic term)|chemical group (generic term)
+vinyl resin|1
+(noun)|vinyl polymer|polyvinyl resin|synthetic resin (generic term)
+vinylbenzene|1
+(noun)|styrene|cinnamene|phenylethylene|vinyl polymer (generic term)|vinyl resin (generic term)|polyvinyl resin (generic term)
+vinylite|1
+(noun)|Vinylite|plastic (generic term)
+viocin|1
+(noun)|viomycin|Viocin|antibiotic (generic term)|antibiotic drug (generic term)
+viol|1
+(noun)|bowed stringed instrument (generic term)|string (generic term)
+viola|3
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|Viola|genus Viola|dilleniid dicot genus (generic term)
+(noun)|bowed stringed instrument (generic term)|string (generic term)
+viola arvensis|1
+(noun)|field pansy|heartsease|Viola arvensis|viola (generic term)
+viola blanda|1
+(noun)|sweet white violet|white violet|woodland white violet|Viola blanda|violet (generic term)
+viola canadensis|1
+(noun)|Canada violet|tall white violet|white violet|Viola canadensis|violet (generic term)
+viola canina|1
+(noun)|dog violet|heath violet|Viola canina|violet (generic term)
+viola clef|1
+(noun)|alto clef|clef (generic term)
+viola conspersa|1
+(noun)|American dog violet|Viola conspersa|violet (generic term)
+viola cornuta|1
+(noun)|horned violet|tufted pansy|Viola cornuta|viola (generic term)
+viola d'amore|1
+(noun)|viol (generic term)
+viola da braccio|1
+(noun)|viol (generic term)
+viola da gamba|1
+(noun)|gamba|bass viol|viol (generic term)
+viola ocellata|1
+(noun)|two-eyed violet|heartsease|Viola ocellata|violet (generic term)
+viola odorata|1
+(noun)|sweet violet|garden violet|English violet|Viola odorata|violet (generic term)
+viola pedata|1
+(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|wood violet|Viola pedata|violet (generic term)
+viola pubescens|1
+(noun)|downy yellow violet|Viola pubescens|violet (generic term)
+viola reichenbachiana|1
+(noun)|hedge violet|wood violet|Viola sylvatica|Viola reichenbachiana|violet (generic term)
+viola rostrata|1
+(noun)|long-spurred violet|Viola rostrata|violet (generic term)
+viola striata|1
+(noun)|pale violet|striped violet|cream violet|Viola striata|violet (generic term)
+viola sylvatica|1
+(noun)|hedge violet|wood violet|Viola sylvatica|Viola reichenbachiana|violet (generic term)
+viola tricolor|1
+(noun)|wild pansy|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola (generic term)
+viola tricolor hortensis|1
+(noun)|pansy|Viola tricolor hortensis|viola (generic term)
+violable|1
+(adj)|inviolable (antonym)
+violaceae|1
+(noun)|Violaceae|family Violaceae|violet family|dilleniid dicot family (generic term)
+violate|6
+(verb)|go against|break|conform to (antonym)
+(verb)|transgress|offend|infract|go against|breach|break|disrespect (generic term)|keep (antonym)
+(verb)|touch (generic term)|disturb (generic term)
+(verb)|desecrate|profane|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|rape|ravish|assault|dishonor|dishonour|outrage|assail (generic term)|assault (generic term)|set on (generic term)|attack (generic term)
+(verb)|rape|spoil|despoil|plunder|destroy (generic term)|ruin (generic term)
+violated|1
+(adj)|profaned|desecrated (similar term)
+violation|5
+(noun)|misdemeanor|misdemeanour|infraction|offence|offense|infringement|crime (generic term)|law-breaking (generic term)
+(noun)|infringement|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|trespass|encroachment|intrusion|usurpation|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(noun)|irreverence|evil (generic term)|immorality (generic term)|wickedness (generic term)|iniquity (generic term)
+(noun)|rape|assault|ravishment|sexual assault (generic term)|sexual abuse (generic term)|sex crime (generic term)|sex offense (generic term)
+violative|1
+(adj)|offensive|offending (similar term)
+violator|2
+(noun)|lawbreaker|law offender|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+(noun)|debaucher|ravisher|libertine (generic term)|debauchee (generic term)|rounder (generic term)
+violence|3
+(noun)|force|aggression (generic term)|hostility (generic term)
+(noun)|ferocity|fierceness|furiousness|fury|vehemence|wildness|intensity (generic term)|intensiveness (generic term)
+(noun)|turbulence (generic term)|upheaval (generic term)|Sturm und Drang (generic term)
+violent|5
+(adj)|convulsive (similar term)|ferocious (similar term)|fierce (similar term)|furious (similar term)|savage (similar term)|hot (similar term)|raging (similar term)|knockdown-dragout (similar term)|knock-down-and-drag-out (similar term)|lashing (similar term)|lurid (similar term)|rampageous (similar term)|ruffianly (similar term)|tough (similar term)|slam-bang (similar term)|terrorist (similar term)|hostile (related term)|unpeaceful (related term)|nonviolent (antonym)
+(adj)|unnatural (similar term)
+(adj)|wild|intense (similar term)
+(adj)|fierce|tearing|vehement|trigger-happy|intense (similar term)
+(adj)|crimson|red|bloody (similar term)
+violent death|1
+(noun)|killing|fatality (generic term)|human death (generic term)
+violent disorder|1
+(noun)|rampage|disturbance (generic term)
+violent storm|1
+(noun)|storm|atmospheric phenomenon (generic term)
+violent stream|1
+(noun)|torrent|current (generic term)|stream (generic term)
+violently|1
+(adv)|nonviolently (antonym)
+violet|3
+(adj)|purple|purplish|chromatic (similar term)
+(noun)|viola (generic term)
+(noun)|reddish blue|purple (generic term)|purpleness (generic term)
+violet-black|1
+(adj)|achromatic (similar term)
+violet-blue|1
+(adj)|lilac-blue|chromatic (similar term)
+violet-colored|1
+(adj)|violet-coloured|violet-flowered|colored (similar term)|coloured (similar term)|colorful (similar term)
+violet-coloured|1
+(adj)|violet-colored|violet-flowered|colored (similar term)|coloured (similar term)|colorful (similar term)
+violet-flowered|1
+(adj)|violet-colored|violet-coloured|colored (similar term)|coloured (similar term)|colorful (similar term)
+violet-flowered petunia|1
+(noun)|Petunia integrifolia|petunia (generic term)
+violet-pink|1
+(adj)|lilac-pink|lavender-pink|chromatic (similar term)
+violet-purple|1
+(adj)|colored (similar term)|coloured (similar term)|colorful (similar term)
+violet-scented|1
+(adj)|odorous (similar term)
+violet-streaked|1
+(adj)|patterned (similar term)
+violet-tinged|1
+(adj)|violet-tinted|chromatic (similar term)
+violet-tinted|1
+(adj)|violet-tinged|chromatic (similar term)
+violet family|1
+(noun)|Violaceae|family Violaceae|dilleniid dicot family (generic term)
+violet suksdorfia|1
+(noun)|Suksdorfia violaceae|suksdorfia (generic term)
+violet wood sorrel|1
+(noun)|Oxalis violacea|oxalis (generic term)|sorrel (generic term)|wood sorrel (generic term)
+violin|1
+(noun)|fiddle|bowed stringed instrument (generic term)|string (generic term)
+violin bow|1
+(noun)|fiddlestick|bow (generic term)
+violin family|1
+(noun)|class (generic term)|category (generic term)|family (generic term)
+violin lesson|1
+(noun)|music lesson (generic term)
+violin maker|1
+(noun)|maker (generic term)|shaper (generic term)
+violin section|1
+(noun)|string section (generic term)|strings (generic term)
+violinist|1
+(noun)|fiddler|musician (generic term)|instrumentalist (generic term)|player (generic term)
+violist|1
+(noun)|musician (generic term)|instrumentalist (generic term)|player (generic term)
+violoncellist|1
+(noun)|cellist|musician (generic term)|instrumentalist (generic term)|player (generic term)
+violoncello|1
+(noun)|cello|bowed stringed instrument (generic term)|string (generic term)
+viomycin|1
+(noun)|Viocin|antibiotic (generic term)|antibiotic drug (generic term)
+viorna baldwinii|1
+(noun)|pine hyacinth|Clematis baldwinii|Viorna baldwinii|clematis (generic term)
+viosterol|1
+(noun)|vitamin D|calciferol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin (generic term)
+vioxx|1
+(noun)|rofecoxib|Vioxx|Cox-2 inhibitor (generic term)
+vip|1
+(noun)|very important person|VIP|high-up|dignitary|panjandrum|high muckamuck|important person (generic term)|influential person (generic term)|personage (generic term)
+viper|1
+(noun)|snake (generic term)|serpent (generic term)|ophidian (generic term)
+viper's bugloss|1
+(noun)|blueweed|blue devil|blue thistle|Echium vulgare|herb (generic term)|herbaceous plant (generic term)
+viper's grass|1
+(noun)|black salsify|scorzonera|Scorzonera hispanica|herb (generic term)|herbaceous plant (generic term)
+vipera|1
+(noun)|Vipera|genus Vipera|reptile genus (generic term)
+vipera aspis|1
+(noun)|asp|asp viper|Vipera aspis|viper (generic term)
+vipera berus|1
+(noun)|adder|common viper|Vipera berus|viper (generic term)
+viperidae|1
+(noun)|Viperidae|family Viperidae|reptile family (generic term)
+viperine grass snake|1
+(noun)|Natrix maura|grass snake (generic term)|ring snake (generic term)|ringed snake (generic term)|Natrix natrix (generic term)
+viracept|1
+(noun)|nelfinavir|Viracept|protease inhibitor (generic term)|PI (generic term)
+viraemia|1
+(noun)|viremia|pathology (generic term)
+virago|2
+(noun)|shrew (generic term)|termagant (generic term)
+(noun)|amazon|woman (generic term)|adult female (generic term)
+viral|1
+(adj)|microorganism|micro-organism|infectious agent|infective agent (related term)
+viral delivery vector|1
+(noun)|transducing vector (generic term)|gene delivery vector (generic term)
+viral haemorrhagic fever|1
+(noun)|hemorrhagic fever|haemorrhagic fever|viral hemorrhagic fever|VHF|viral infection (generic term)|virus infection (generic term)
+viral hemorrhagic fever|1
+(noun)|hemorrhagic fever|haemorrhagic fever|viral haemorrhagic fever|VHF|viral infection (generic term)|virus infection (generic term)
+viral hepatitis|1
+(noun)|hepatitis (generic term)
+viral infection|1
+(noun)|virus infection|infection (generic term)
+viral pneumonia|1
+(noun)|viral infection (generic term)|virus infection (generic term)|pneumonia (generic term)
+viramune|1
+(noun)|nevirapine|Viramune|non-nucleoside reverse transcriptase inhibitor (generic term)|NNRTI (generic term)
+virazole|1
+(noun)|ribavirin|Virazole|antiviral (generic term)|antiviral agent (generic term)|antiviral drug (generic term)
+virchow|1
+(noun)|Virchow|Rudolf Virchow|Rudolf Karl Virchow|diagnostician (generic term)|pathologist (generic term)
+viremia|1
+(noun)|viraemia|pathology (generic term)
+vireo|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+vireo olivaceous|1
+(noun)|red-eyed vireo|Vireo olivaceous|vireo (generic term)
+vireo solitarius|1
+(noun)|solitary vireo|Vireo solitarius|vireo (generic term)
+vireo solitarius solitarius|1
+(noun)|blue-headed vireo|Vireo solitarius solitarius|vireo (generic term)
+vireonidae|1
+(noun)|Vireonidae|family Vireonidae|bird family (generic term)
+virga|1
+(noun)|precipitation (generic term)|downfall (generic term)
+virgil|1
+(noun)|Virgil|Vergil|Publius Vergilius Maro|poet (generic term)
+virgil garnett thomson|1
+(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer (generic term)
+virgil thomson|1
+(noun)|Thomson|Virgil Thomson|Virgil Garnett Thomson|composer (generic term)
+virgilia|1
+(noun)|Virgilia|genus Virgilia|rosid dicot genus (generic term)
+virgilia capensis|1
+(noun)|keurboom|Virgilia capensis|Virgilia oroboides|tree (generic term)
+virgilia divaricata|1
+(noun)|keurboom|Virgilia divaricata|tree (generic term)
+virgilia oroboides|1
+(noun)|keurboom|Virgilia capensis|Virgilia oroboides|tree (generic term)
+virgin|5
+(adj)|new (similar term)
+(adj)|pure|vestal|virginal|virtuous|chaste (similar term)
+(noun)|innocent (generic term)|inexperienced person (generic term)
+(noun)|Virgo|Virgin|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+virgin's bower|1
+(noun)|old man's beard|devil's darning needle|Clematis virginiana|clematis (generic term)
+virgin birth|2
+(noun)|parthenogenesis|parthenogeny|asexual reproduction (generic term)|agamogenesis (generic term)
+(noun)|Virgin Birth|Nativity|theological doctrine (generic term)
+virgin forest|1
+(noun)|old growth|forest (generic term)|wood (generic term)|woods (generic term)
+virgin islands|1
+(noun)|Virgin Islands|island (generic term)
+virgin islands national park|1
+(noun)|Virgin Islands National Park|national park (generic term)
+virgin mary|2
+(noun)|Mary|Virgin Mary|The Virgin|Blessed Virgin|Madonna|Jewess (generic term)|mother (generic term)|female parent (generic term)
+(noun)|Virgin Mary|bloody shame|Bloody Mary (generic term)
+virgin wool|1
+(noun)|wool (generic term)
+virginal|4
+(adj)|condition|status (related term)
+(adj)|pure (similar term)
+(adj)|pure|vestal|virgin|virtuous|chaste (similar term)
+(noun)|pair of virginals|harpsichord (generic term)|cembalo (generic term)
+virginal membrane|1
+(noun)|hymen|maidenhead|mucous membrane (generic term)|mucosa (generic term)
+virginia|3
+(noun)|Virginia|Old Dominion|Old Dominion State|VA|American state (generic term)
+(noun)|Virginia|Colony (generic term)
+(noun)|Virginia|town (generic term)
+virginia beach|1
+(noun)|Virginia Beach|city (generic term)|metropolis (generic term)|urban center (generic term)
+virginia bluebell|1
+(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb (generic term)|herbaceous plant (generic term)
+virginia chain fern|1
+(noun)|Virginia chain fern|Woodwardia virginica|chain fern (generic term)
+virginia cowslip|1
+(noun)|Virginia bluebell|Virginia cowslip|Mertensia virginica|herb (generic term)|herbaceous plant (generic term)
+virginia creeper|1
+(noun)|Virginia creeper|American ivy|woodbine|Parthenocissus quinquefolia|vine (generic term)
+virginia crownbeard|1
+(noun)|Virginia crownbeard|frostweed|frost-weed|Verbesina virginica|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+virginia deer|1
+(noun)|Virginia deer|white tail|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+virginia fence|1
+(noun)|worm fence|snake fence|snake-rail fence|Virginia fence|rail fence (generic term)
+virginia ham|1
+(noun)|Virginia ham|ham (generic term)|jambon (generic term)|gammon (generic term)
+virginia katherine mcmath|1
+(noun)|Rogers|Ginger Rogers|Virginia McMath|Virginia Katherine McMath|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+virginia mallow|1
+(noun)|Virginia mallow|Sida hermaphrodita|mallow (generic term)
+virginia mcmath|1
+(noun)|Rogers|Ginger Rogers|Virginia McMath|Virginia Katherine McMath|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)|actress (generic term)
+virginia oyster|1
+(noun)|Virginia oyster|oyster (generic term)
+virginia pine|1
+(noun)|scrub pine|Virginia pine|Jersey pine|Pinus virginiana|pine (generic term)|pine tree (generic term)|true pine (generic term)
+virginia reel|1
+(noun)|Virginia reel|reel|longways (generic term)|longways dance (generic term)
+virginia serpentaria|1
+(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort (generic term)|Aristolochia clematitis (generic term)
+virginia serpentary|1
+(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort (generic term)|Aristolochia clematitis (generic term)
+virginia snakeroot|1
+(noun)|Virginia snakeroot|Virginia serpentaria|Virginia serpentary|Aristolochia serpentaria|birthwort (generic term)|Aristolochia clematitis (generic term)
+virginia spring beauty|1
+(noun)|Virginia spring beauty|Claytonia virginica|flower (generic term)
+virginia stock|1
+(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower (generic term)
+virginia strawberry|1
+(noun)|Virginia strawberry|scarlet strawberry|Fragaria virginiana|strawberry (generic term)
+virginia thimbleweed|1
+(noun)|Virginia thimbleweed|Anemone virginiana|thimbleweed (generic term)|Anemone cylindrica (generic term)
+virginia wade|1
+(noun)|Wade|Virginia Wade|tennis player (generic term)
+virginia waterleaf|1
+(noun)|Virginia waterleaf|Shawnee salad|shawny|Indian salad|John's cabbage|Hydrophyllum virginianum|waterleaf (generic term)
+virginia woolf|1
+(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer (generic term)|author (generic term)
+virginian|1
+(noun)|Virginian|American (generic term)
+virginian stock|1
+(noun)|Virginian stock|Virginia stock|Malcolmia maritima|flower (generic term)
+virginian sumac|1
+(noun)|staghorn sumac|velvet sumac|Virginian sumac|vinegar tree|Rhus typhina|sumac (generic term)|sumach (generic term)|shumac (generic term)
+virginian witch hazel|1
+(noun)|Virginian witch hazel|Hamamelis virginiana|witch hazel (generic term)|witch hazel plant (generic term)|wych hazel (generic term)|wych hazel plant (generic term)
+virginity|1
+(noun)|condition (generic term)|status (generic term)
+virgo|3
+(noun)|Virgo|Virgin|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Virgo|constellation (generic term)
+(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+virgo the virgin|1
+(noun)|Virgo|Virgo the Virgin|Virgin|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+virgule|1
+(noun)|solidus|slash|diagonal|stroke|separatrix|punctuation (generic term)|punctuation mark (generic term)
+viricidal|1
+(adj)|virucidal|agent (related term)
+viricide|1
+(noun)|virucide|agent (generic term)
+viridity|1
+(noun)|green|greenness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+virile|3
+(adj)|strong (similar term)
+(adj)|male|manful|manlike|manly|masculine (similar term)
+(adj)|potent|impotent (antonym)
+virilisation|1
+(noun)|masculinization|masculinisation|virilization|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+virilise|1
+(verb)|masculinize|masculinise|virilize|change (generic term)|alter (generic term)|modify (generic term)
+virilism|1
+(noun)|sex characteristic (generic term)|sexual characteristic (generic term)|sex character (generic term)
+virility|2
+(noun)|maleness (generic term)|masculinity (generic term)
+(noun)|manfulness|manliness|masculinity (generic term)
+virility drug|1
+(noun)|anti-impotence drug|drug (generic term)
+virilization|1
+(noun)|masculinization|masculinisation|virilisation|growth (generic term)|growing (generic term)|maturation (generic term)|development (generic term)|ontogeny (generic term)|ontogenesis (generic term)
+virilize|1
+(verb)|masculinize|masculinise|virilise|change (generic term)|alter (generic term)|modify (generic term)
+virino|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+virion|1
+(noun)|particle (generic term)|subatomic particle (generic term)
+viroid|1
+(noun)|virusoid|plant virus (generic term)
+virological|1
+(adj)|medicine|medical specialty (related term)
+virologist|1
+(noun)|microbiologist (generic term)
+virology|1
+(noun)|medicine (generic term)|medical specialty (generic term)
+virtu|3
+(noun)|vertu|connoisseurship|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|vertu|quality (generic term)
+(noun)|objet d'art (generic term)|art object (generic term)|piece (generic term)
+virtual|2
+(adj)|practical|realistic (similar term)
+(adj)|essential (similar term)
+virtual image|1
+(noun)|reflection (generic term)|reflexion (generic term)
+virtual memory|1
+(noun)|virtual storage|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+virtual reality|1
+(noun)|computer game (generic term)|video game (generic term)
+virtual storage|1
+(noun)|virtual memory|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)
+virtually|1
+(adv)|about|just about|almost|most|all but|nearly|near|nigh|well-nigh
+virtue|4
+(noun)|virtuousness|moral excellence|good (generic term)|goodness (generic term)
+(noun)|merit|worth (generic term)|demerit (antonym)
+(noun)|chastity|sexual morality|morality (generic term)
+(noun)|good (generic term)|goodness (generic term)
+virtuosity|1
+(noun)|skill (generic term)|science (generic term)
+virtuoso|3
+(adj)|consummate|masterful|masterly|skilled (similar term)
+(noun)|ace|adept|champion|sensation|maven|mavin|genius|hotshot|star|superstar|whiz|whizz|wizard|wiz|expert (generic term)
+(noun)|musician (generic term)
+virtuous|2
+(adj)|impeccable (similar term)|impeccant (similar term)|innocent (similar term)|sinless (similar term)|chaste (related term)|good (related term)|moral (related term)|pious (related term)|righteous (related term)|wicked (antonym)
+(adj)|pure|vestal|virgin|virginal|chaste (similar term)
+virtuously|2
+(adv)|morally|immorally (antonym)
+(adv)|chastely
+virtuousness|1
+(noun)|virtue|moral excellence|good (generic term)|goodness (generic term)
+virucidal|1
+(adj)|viricidal|agent (related term)
+virucide|1
+(noun)|viricide|agent (generic term)
+virulence|2
+(noun)|virulency|harmfulness (generic term)|injuriousness (generic term)
+(noun)|virulency|hostility (generic term)|ill will (generic term)
+virulency|2
+(noun)|virulence|harmfulness (generic term)|injuriousness (generic term)
+(noun)|virulence|hostility (generic term)|ill will (generic term)
+virulent|3
+(adj)|deadly|venomous|toxic (similar term)
+(adj)|highly infective (similar term)|deadly (similar term)|avirulent (antonym)
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|vitriolic|unpleasant (similar term)
+virus|3
+(noun)|microorganism (generic term)|micro-organism (generic term)|infectious agent (generic term)|infective agent (generic term)
+(noun)|representation (generic term)|delegacy (generic term)|agency (generic term)
+(noun)|computer virus|malevolent program (generic term)
+virus infection|1
+(noun)|viral infection|infection (generic term)
+virusoid|1
+(noun)|viroid|plant virus (generic term)
+vis-a-vis|2
+(noun)|counterpart|opposite number|equivalent (generic term)
+(noun)|love seat|loveseat|tete-a-tete|sofa (generic term)|couch (generic term)|lounge (generic term)
+vis major|1
+(noun)|act of God|force majeure|inevitable accident|unavoidable casualty|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+visa|3
+(noun)|sanction (generic term)|countenance (generic term)|endorsement (generic term)|indorsement (generic term)|warrant (generic term)|imprimatur (generic term)
+(verb)|endorse (generic term)|indorse (generic term)
+(verb)|approve (generic term)|O.K. (generic term)|okay (generic term)|sanction (generic term)
+visage|2
+(noun)|countenance|physiognomy|phiz|kisser|smiler|mug|face (generic term)|human face (generic term)
+(noun)|countenance|appearance (generic term)|visual aspect (generic term)
+visaged|1
+(adj)|faced (similar term)
+visayan|1
+(noun)|Visayan|Bisayan|Filipino (generic term)
+visayan islands|1
+(noun)|Visayan Islands|Bisayas|island (generic term)
+viscaceae|1
+(noun)|Viscaceae|family Viscaceae|mistletoe family|dilleniid dicot family (generic term)
+viscacha|1
+(noun)|chinchillon|Lagostomus maximus|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+viscera|1
+(noun)|entrails|innards|internal organ (generic term)|viscus (generic term)
+visceral|2
+(adj)|splanchnic|internal organ|viscus (related term)
+(adj)|intuitive|nonrational|illogical (similar term)|unlogical (similar term)
+visceral brain|1
+(noun)|limbic system|limbic brain|neural structure (generic term)
+visceral leishmaniasis|1
+(noun)|kala-azar|Assam fever|dumdum fever|leishmaniasis (generic term)|leishmaniosis (generic term)|kala azar (generic term)
+visceral pericardium|1
+(noun)|epicardium|serous membrane (generic term)|serosa (generic term)
+visceral pleura|1
+(noun)|pleura (generic term)
+viscerally|1
+(adv)|unreasoningly
+viscid|1
+(adj)|gluey|glutinous|gummy|mucilaginous|pasty|sticky|viscous|adhesive (similar term)
+viscid mushroom|1
+(noun)|nameko|Pholiota nameko|agaric (generic term)
+viscidity|1
+(noun)|cohesiveness|glueyness|gluiness|gumminess|tackiness|ropiness|viscidness|viscosity (generic term)|viscousness (generic term)
+viscidly|1
+(adv)|stickily
+viscidness|1
+(noun)|cohesiveness|glueyness|gluiness|gumminess|tackiness|ropiness|viscidity|viscosity (generic term)|viscousness (generic term)
+viscoelastic|1
+(adj)|elastic (similar term)
+viscometer|1
+(noun)|viscosimeter|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+viscometric|1
+(adj)|viscosimetric|measuring instrument|measuring system|measuring device (related term)
+viscometry|1
+(noun)|viscosimetry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+visconti|1
+(noun)|Visconti|Luchino Visconti|Don Luchino Visconti Conte di Modrone|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+viscose|2
+(noun)|cellulose xanthate|cellulose ester (generic term)|xanthate (generic term)
+(noun)|viscose rayon|rayon (generic term)
+viscose rayon|1
+(noun)|viscose|rayon (generic term)
+viscosimeter|1
+(noun)|viscometer|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+viscosimetric|1
+(adj)|viscometric|measuring instrument|measuring system|measuring device (related term)
+viscosimetry|1
+(noun)|viscometry|measurement (generic term)|measuring (generic term)|measure (generic term)|mensuration (generic term)
+viscosity|1
+(noun)|viscousness|consistency (generic term)|consistence (generic term)|body (generic term)
+viscount|2
+(noun)|Lord (generic term)|noble (generic term)|nobleman (generic term)
+(noun)|peer (generic term)
+viscount nelson|1
+(noun)|Nelson|Horatio Nelson|Viscount Nelson|Admiral Nelson|Lord Nelson|admiral (generic term)|full admiral (generic term)
+viscount northcliffe|1
+(noun)|Harmsworth|Alfred Charles William Harmsworth|Viscount Northcliffe|publisher (generic term)|newspaper publisher (generic term)
+viscount st. albans|1
+(noun)|Bacon|Francis Bacon|Sir Francis Bacon|Baron Verulam|1st Baron Verulam|Viscount St. Albans|statesman (generic term)|solon (generic term)|national leader (generic term)|philosopher (generic term)
+viscountcy|2
+(noun)|viscounty|rank (generic term)
+(noun)|title (generic term)
+viscountess|2
+(noun)|wife (generic term)|married woman (generic term)
+(noun)|peer (generic term)
+viscountess astor|1
+(noun)|Astor|Nancy Witcher Astor|Viscountess Astor|viscountess (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+viscounty|2
+(noun)|viscountcy|rank (generic term)
+(noun)|domain (generic term)|demesne (generic term)|land (generic term)
+viscous|2
+(adj)|syrupy|thick (similar term)
+(adj)|gluey|glutinous|gummy|mucilaginous|pasty|sticky|viscid|adhesive (similar term)
+viscousness|1
+(noun)|viscosity|consistency (generic term)|consistence (generic term)|body (generic term)
+viscum|1
+(noun)|Viscum|genus Viscum|dilleniid dicot genus (generic term)
+viscum album|1
+(noun)|mistletoe|Viscum album|Old World mistletoe|parasitic plant (generic term)
+viscus|1
+(noun)|internal organ|organ (generic term)
+vise|1
+(noun)|bench vise|holding device (generic term)
+viselike|1
+(adj)|tight (similar term)
+vishnu|1
+(noun)|Vishnu|Hindu deity (generic term)
+vishnuism|1
+(noun)|Vaishnavism|Vaisnavism|Vishnuism|Hinduism (generic term)|Hindooism (generic term)
+visibility|3
+(noun)|visibleness|perceptibility (generic term)|invisibility (antonym)
+(noun)|profile|salience (generic term)|saliency (generic term)|strikingness (generic term)
+(noun)|clearness (generic term)|clarity (generic term)|uncloudedness (generic term)
+visible|3
+(adj)|seeable|circumpolar (similar term)|in sight (similar term)|ocular (similar term)|visual (similar term)|panoptic (similar term)|panoptical (similar term)|telescopic (similar term)|viewable (similar term)|perceptible (related term)|invisible (antonym)
+(adj)|overt (similar term)|open (similar term)
+(adj)|available (similar term)
+visible balance|1
+(noun)|balance of trade|trade balance|trade gap|balance (generic term)
+visible horizon|1
+(noun)|horizon|apparent horizon|sensible horizon|skyline|line (generic term)
+visible light|1
+(noun)|light|visible radiation|actinic radiation (generic term)|actinic ray (generic term)
+visible radiation|1
+(noun)|light|visible light|actinic radiation (generic term)|actinic ray (generic term)
+visible spectrum|1
+(noun)|color spectrum|spectrum (generic term)
+visible speech|2
+(noun)|phonetic alphabet (generic term)|sound alphabet (generic term)
+(noun)|spectrogram (generic term)|spectrograph (generic term)
+visibleness|1
+(noun)|visibility|perceptibility (generic term)|invisibility (antonym)
+visibly|1
+(adv)|invisibly (antonym)
+visigoth|1
+(noun)|Visigoth|Goth (generic term)
+vision|5
+(noun)|imagination (generic term)|imaging (generic term)|imagery (generic term)|mental imagery (generic term)
+(noun)|sight|visual sense|visual modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+(noun)|visual sensation|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+(noun)|imagination|imaginativeness|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+(noun)|experience (generic term)
+vision defect|1
+(noun)|visual impairment|visual defect|visual disorder|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+visionary|3
+(adj)|airy|impractical|Laputan|windy|utopian (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|illusionist|seer|intellectual (generic term)|intellect (generic term)
+visit|11
+(noun)|meeting (generic term)|get together (generic term)
+(noun)|meeting (generic term)|coming together (generic term)
+(noun)|sojourn|stay (generic term)
+(verb)|see|tour (generic term)
+(verb)|travel to|travel (generic term)|trip (generic term)|jaunt (generic term)
+(verb)|call in|call|meet (generic term)|get together (generic term)
+(verb)|inspect
+(verb)|inflict|bring down|impose|communicate (generic term)|intercommunicate (generic term)
+(verb)|chew the fat|shoot the breeze|chat|confabulate|confab|chitchat|chatter|chaffer|natter|gossip|jaw|claver|converse (generic term)|discourse (generic term)
+(verb)|bide (generic term)|abide (generic term)|stay (generic term)
+(verb)|afflict (generic term)|smite (generic term)
+visitant|1
+(noun)|visitor|traveler (generic term)|traveller (generic term)
+visitation|3
+(noun)|trial|tribulation|affliction (generic term)
+(noun)|calamity (generic term)|catastrophe (generic term)|disaster (generic term)|tragedy (generic term)|cataclysm (generic term)
+(noun)|visit (generic term)
+visitation right|1
+(noun)|legal right (generic term)
+visiting|1
+(noun)|visit (generic term)
+visiting card|1
+(noun)|calling card|card|greeting (generic term)|salutation (generic term)
+visiting fireman|1
+(noun)|visitor (generic term)|visitant (generic term)
+visiting nurse|1
+(noun)|nurse (generic term)
+visiting professor|1
+(noun)|professor (generic term)|prof (generic term)
+visitor|1
+(noun)|visitant|traveler (generic term)|traveller (generic term)
+visken|1
+(noun)|pindolol|Visken|beta blocker (generic term)|beta-adrenergic blocker (generic term)|beta-adrenergic blocking agent (generic term)
+visor|2
+(noun)|vizor|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|bill|peak|eyeshade|vizor|brim (generic term)
+visored|1
+(adj)|equipped (similar term)|equipt (similar term)
+vista|1
+(noun)|view|aspect|prospect|scene|panorama|visual percept (generic term)|visual image (generic term)
+vistaril|1
+(noun)|hydroxyzine hydrochloride|hydroxyzine|Atarax|Vistaril|minor tranquilizer (generic term)|minor tranquillizer (generic term)|minor tranquilliser (generic term)|antianxiety drug (generic term)|anxiolytic (generic term)|anxiolytic drug (generic term)
+vistula|1
+(noun)|Vistula|Vistula River|river (generic term)
+vistula river|1
+(noun)|Vistula|Vistula River|river (generic term)
+visual|2
+(adj)|ocular|optic|optical|modality|sense modality|sensory system|exteroception (related term)
+(adj)|ocular|visible (similar term)|seeable (similar term)
+visual acuity|1
+(noun)|acuity|sharp-sightedness|sight (generic term)|vision (generic term)|visual sense (generic term)|visual modality (generic term)
+visual agnosia|1
+(noun)|agnosia (generic term)
+visual aphasia|1
+(noun)|alexia|word blindness|aphasia (generic term)
+visual area|1
+(noun)|visual cortex|cortical area (generic term)|cortical region (generic term)
+visual aspect|1
+(noun)|appearance|quality (generic term)
+visual cell|1
+(noun)|somatic cell (generic term)|vegetative cell (generic term)
+visual communication|1
+(noun)|communication (generic term)
+visual cortex|1
+(noun)|visual area|cortical area (generic term)|cortical region (generic term)
+visual defect|1
+(noun)|visual impairment|vision defect|visual disorder|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+visual disorder|1
+(noun)|visual impairment|visual defect|vision defect|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+visual display unit|1
+(noun)|VDU|display (generic term)|presentation (generic term)
+visual field|1
+(noun)|field of vision|field of regard|visual percept (generic term)|visual image (generic term)
+visual hallucination|1
+(noun)|hallucination (generic term)
+visual image|2
+(noun)|visualization|visualisation|image (generic term)|mental image (generic term)
+(noun)|visual percept|percept (generic term)|perception (generic term)|perceptual experience (generic term)
+visual impairment|1
+(noun)|visual defect|vision defect|visual disorder|disability (generic term)|disablement (generic term)|handicap (generic term)|impairment (generic term)
+visual joke|1
+(noun)|sight gag|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+visual modality|1
+(noun)|sight|vision|visual sense|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+visual percept|1
+(noun)|visual image|percept (generic term)|perception (generic term)|perceptual experience (generic term)
+visual perception|1
+(noun)|beholding|seeing|perception (generic term)
+visual property|1
+(noun)|property (generic term)
+visual purple|1
+(noun)|rhodopsin|retinal purple|photopigment (generic term)
+visual range|1
+(noun)|visibility (generic term)|visibleness (generic term)
+visual sensation|1
+(noun)|vision|sensation (generic term)|esthesis (generic term)|aesthesis (generic term)|sense experience (generic term)|sense impression (generic term)|sense datum (generic term)
+visual sense|1
+(noun)|sight|vision|visual modality|modality (generic term)|sense modality (generic term)|sensory system (generic term)|exteroception (generic term)
+visual signal|1
+(noun)|signal (generic term)|signaling (generic term)|sign (generic term)
+visual space|1
+(noun)|visual perception (generic term)|beholding (generic term)|seeing (generic term)
+visual system|1
+(noun)|sensory system (generic term)
+visualisation|1
+(noun)|visual image|visualization|image (generic term)|mental image (generic term)
+visualise|4
+(verb)|visualize|watch (generic term)|view (generic term)|see (generic term)|catch (generic term)|take in (generic term)
+(verb)|visualize|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|visualize|envision|project|fancy|see|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|visualize|change (generic term)|alter (generic term)|modify (generic term)
+visualised|1
+(adj)|envisioned|pictured|visualized|unreal (similar term)
+visualiser|1
+(noun)|visualizer|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+visualization|1
+(noun)|visual image|visualisation|image (generic term)|mental image (generic term)
+visualize|4
+(verb)|visualise|envision|project|fancy|see|figure|picture|image|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|visualise|watch (generic term)|view (generic term)|see (generic term)|catch (generic term)|take in (generic term)
+(verb)|visualise|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)
+(verb)|visualise|change (generic term)|alter (generic term)|modify (generic term)
+visualized|1
+(adj)|envisioned|pictured|visualised|unreal (similar term)
+visualizer|1
+(noun)|visualiser|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+visually challenged|1
+(adj)|dim-sighted|near-blind|purblind|sand-blind|visually impaired|blind (similar term)|unsighted (similar term)
+visually impaired|2
+(adj)|dim-sighted|near-blind|purblind|sand-blind|visually challenged|blind (similar term)|unsighted (similar term)
+(adj)|impaired (similar term)
+visually impaired person|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+vitaceae|1
+(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family (generic term)|magnoliopsid family (generic term)
+vital|4
+(adj)|critical|indispensable (similar term)
+(adj)|life-sustaining|essential (similar term)
+(adj)|full of life|lively|animated (similar term)|alive (similar term)
+(adj)|alive (similar term)|live (similar term)
+vital capacity|1
+(noun)|capacity (generic term)|content (generic term)|diagnostic test (generic term)|diagnostic assay (generic term)
+vital force|1
+(noun)|life force|vitality|elan vital|force (generic term)
+vital organ|1
+(noun)|vitals|organ (generic term)
+vital principle|1
+(noun)|life principle|causal agent (generic term)|cause (generic term)|causal agency (generic term)
+vital sign|1
+(noun)|sign (generic term)
+vital statistics|1
+(noun)|statistic (generic term)
+vitalisation|1
+(noun)|vitalization|physiological state (generic term)|physiological condition (generic term)
+vitalise|2
+(verb)|vitalize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vitalize|strengthen (generic term)|beef up (generic term)|fortify (generic term)|devitalize (antonym)
+vitaliser|1
+(noun)|energizer|energiser|vitalizer|animator|actor (generic term)|doer (generic term)|worker (generic term)
+vitalism|1
+(noun)|philosophical doctrine (generic term)|philosophical theory (generic term)
+vitalist|1
+(noun)|believer (generic term)|truster (generic term)
+vitality|4
+(noun)|verve|energy (generic term)|muscularity (generic term)|vigor (generic term)|vigour (generic term)|vim (generic term)
+(noun)|energy|vim|good health (generic term)|healthiness (generic term)
+(noun)|life force|vital force|elan vital|force (generic term)
+(noun)|animation|animateness (generic term)|aliveness (generic term)|liveness (generic term)
+vitalization|1
+(noun)|vitalisation|physiological state (generic term)|physiological condition (generic term)
+vitalize|2
+(verb)|vitalise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vitalise|strengthen (generic term)|beef up (generic term)|fortify (generic term)|devitalize (antonym)
+vitalizer|1
+(noun)|energizer|energiser|vitaliser|animator|actor (generic term)|doer (generic term)|worker (generic term)
+vitalizing|1
+(adj)|life-giving|invigorating (similar term)
+vitalness|2
+(noun)|indispensability|indispensableness|essentiality (generic term)|essentialness (generic term)|dispensableness (antonym)|dispensability (antonym)
+(noun)|essentiality (generic term)|essentialness (generic term)
+vitals|1
+(noun)|vital organ|organ (generic term)
+vitamin|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+vitamin-deficiency diet|1
+(noun)|high-vitamin diet|diet (generic term)
+vitamin a|1
+(noun)|vitamin A|antiophthalmic factor|axerophthol|A|fat-soluble vitamin (generic term)
+vitamin a1|1
+(noun)|vitamin A1|retinol|vitamin A (generic term)|antiophthalmic factor (generic term)|axerophthol (generic term)|A (generic term)
+vitamin a2|1
+(noun)|vitamin A2|dehydroretinol|vitamin A (generic term)|antiophthalmic factor (generic term)|axerophthol (generic term)|A (generic term)
+vitamin b|1
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+vitamin b1|1
+(noun)|vitamin B1|thiamine|thiamin|aneurin|antiberiberi factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin b12|1
+(noun)|vitamin B12|cobalamin|cyanocobalamin|antipernicious anemia factor|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin b2|1
+(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin b6|1
+(noun)|vitamin B6|pyridoxine|pyridoxal|pyridoxamine|adermin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin b complex|1
+(noun)|B-complex vitamin|B complex|vitamin B complex|vitamin B|B vitamin|B|water-soluble vitamin (generic term)
+vitamin bc|1
+(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin c|1
+(noun)|vitamin C|ascorbic acid|water-soluble vitamin (generic term)|antioxidant (generic term)
+vitamin d|1
+(noun)|vitamin D|calciferol|viosterol|ergocalciferol|cholecarciferol|D|fat-soluble vitamin (generic term)
+vitamin e|1
+(noun)|vitamin E|tocopherol|E|fat-soluble vitamin (generic term)|antioxidant (generic term)
+vitamin g|1
+(noun)|vitamin B2|vitamin G|riboflavin|lactoflavin|ovoflavin|hepatoflavin|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin h|1
+(noun)|biotin|vitamin H|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin k|1
+(noun)|vitamin K|naphthoquinone|antihemorrhagic factor|fat-soluble vitamin (generic term)
+vitamin k1|1
+(noun)|vitamin K1|phylloquinone|phytonadione|vitamin K (generic term)|naphthoquinone (generic term)|antihemorrhagic factor (generic term)
+vitamin k3|1
+(noun)|vitamin K3|menadione|vitamin K (generic term)|naphthoquinone (generic term)|antihemorrhagic factor (generic term)
+vitamin m|1
+(noun)|vitamin Bc|vitamin M|folate|folic acid|folacin|pteroylglutamic acid|pteroylmonoglutamic acid|B-complex vitamin (generic term)|B complex (generic term)|vitamin B complex (generic term)|vitamin B (generic term)|B vitamin (generic term)|B (generic term)
+vitamin p|1
+(noun)|vitamin P|bioflavinoid|citrin|water-soluble vitamin (generic term)
+vitamin pill|1
+(noun)|pill (generic term)|lozenge (generic term)|tablet (generic term)|tab (generic term)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+vitaminise|1
+(verb)|vitaminize|supplement (generic term)
+vitaminize|1
+(verb)|vitaminise|supplement (generic term)
+vitelline circulation|1
+(noun)|circulation (generic term)
+vitelline sac|1
+(noun)|yolk sac|umbilical vesicle|vesicula umbilicus|sac (generic term)
+vitellus|1
+(noun)|yolk|food (generic term)|nutrient (generic term)
+vithar|1
+(noun)|Vitharr|Vithar|Vidar|Norse deity (generic term)
+vitharr|1
+(noun)|Vitharr|Vithar|Vidar|Norse deity (generic term)
+viti levu|1
+(noun)|Viti Levu|island (generic term)
+vitiate|3
+(verb)|corrupt|pervert|subvert|demoralize|demoralise|debauch|debase|profane|deprave|misdirect|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|mar|impair|spoil|deflower|damage (generic term)
+(verb)|invalidate|void|change (generic term)|alter (generic term)|modify (generic term)|validate (antonym)
+vitiated|2
+(adj)|diminished|lessened|weakened|impaired (similar term)
+(adj)|corrupted|debased|corrupt (similar term)
+vitiation|1
+(noun)|nullification (generic term)|override (generic term)
+viticulture|1
+(noun)|viniculture|culture (generic term)
+viticulturist|1
+(noun)|agriculturist (generic term)|agriculturalist (generic term)|cultivator (generic term)|grower (generic term)|raiser (generic term)
+vitidaceae|1
+(noun)|Vitaceae|family Vitaceae|Vitidaceae|grapevine family|dicot family (generic term)|magnoliopsid family (generic term)
+vitiliginous|1
+(adj)|skin disease|disease of the skin|skin disorder|skin problem|skin condition (related term)
+vitiligo|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+vitis|1
+(noun)|Vitis|genus Vitis|dicot genus (generic term)|magnoliopsid genus (generic term)
+vitis labrusca|1
+(noun)|fox grape|Vitis labrusca|grape (generic term)|grapevine (generic term)
+vitis rotundifolia|1
+(noun)|muscadine|Vitis rotundifolia|grape (generic term)|grapevine (generic term)
+vitis vinifera|1
+(noun)|vinifera|vinifera grape|common grape vine|Vitis vinifera|grape (generic term)|grapevine (generic term)
+vitreous|3
+(adj)|liquid body substance|bodily fluid|body fluid|humor|humour (related term)
+(adj)|solid (related term)
+(adj)|glassy|vitrified|glazed (similar term)|shiny (similar term)
+vitreous body|1
+(noun)|vitreous humor|vitreous humour|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+vitreous humor|1
+(noun)|vitreous humour|vitreous body|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+vitreous humour|1
+(noun)|vitreous humor|vitreous body|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+vitreous silica|1
+(noun)|quartz glass|quartz|lechatelierite|crystal|natural glass (generic term)
+vitrification|2
+(noun)|solid (generic term)
+(noun)|natural process (generic term)|natural action (generic term)|action (generic term)|activity (generic term)
+vitrified|1
+(adj)|glassy|vitreous|glazed (similar term)|shiny (similar term)
+vitrify|2
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|change (generic term)
+vitrine|1
+(noun)|case|display case|showcase|container (generic term)
+vitriol|4
+(noun)|oil of vitriol|sulfuric acid|sulphuric acid|acid (generic term)
+(noun)|vituperation|invective|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+(verb)|subject (generic term)
+(verb)|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+vitriolic|2
+(adj)|acerb|acerbic|acid|acrid|bitter|blistering|caustic|sulfurous|sulphurous|venomous|virulent|unpleasant (similar term)
+(adj)|caustic|corrosive|erosive|mordant|destructive (similar term)
+vitriolically|1
+(adv)|caustically
+vittaria|1
+(noun)|Vittaria|genus Vittaria|fern genus (generic term)
+vittaria lineata|1
+(noun)|grass fern|ribbon fern|Vittaria lineata|fern (generic term)
+vittariaceae|1
+(noun)|Vittariaceae|family Vittariaceae|fern family (generic term)
+vittorio de sica|1
+(noun)|De Sica|Vittorio De Sica|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+vituperate|1
+(verb)|vilify|revile|rail|abuse (generic term)|clapperclaw (generic term)|blackguard (generic term)|shout (generic term)
+vituperation|1
+(noun)|invective|vitriol|abuse (generic term)|insult (generic term)|revilement (generic term)|contumely (generic term)|vilification (generic term)
+vituperative|1
+(adj)|scathing|blistering|scalding|critical (similar term)
+vitus|1
+(noun)|Vitus|St. Vitus|martyr (generic term)|saint (generic term)
+vitus behring|1
+(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator (generic term)
+vitus bering|1
+(noun)|Bering|Vitus Bering|Behring|Vitus Behring|navigator (generic term)
+viva|1
+(noun)|oral|oral exam|oral examination|viva voce|examination (generic term)|exam (generic term)|test (generic term)
+viva-voce|1
+(adj)|word-of-mouth|spoken (similar term)
+viva voce|2
+(noun)|oral|oral exam|oral examination|viva|examination (generic term)|exam (generic term)|test (generic term)
+(adv)|by word of mouth
+vivace|1
+(adj)|fast (similar term)
+vivacious|1
+(adj)|vibrant|spirited (similar term)
+vivacity|1
+(noun)|high-spiritedness (generic term)
+vivaldi|1
+(noun)|Vivaldi|Antonio Vivaldi|Antonio Lucio Vivaldi|composer (generic term)|violinist (generic term)|fiddler (generic term)
+vivarium|1
+(noun)|enclosure (generic term)
+viverra|1
+(noun)|Viverra|genus Viverra|mammal genus (generic term)
+viverra zibetha|1
+(noun)|large civet|Viverra zibetha|civet (generic term)|civet cat (generic term)
+viverricula|1
+(noun)|Viverricula|genus Viverricula|mammal genus (generic term)
+viverricula indica|1
+(noun)|small civet|Viverricula indica|Viverricula malaccensis|civet (generic term)|civet cat (generic term)
+viverricula malaccensis|1
+(noun)|small civet|Viverricula indica|Viverricula malaccensis|civet (generic term)|civet cat (generic term)
+viverridae|1
+(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family (generic term)
+viverrinae|1
+(noun)|Viverridae|family Viverridae|Viverrinae|family Viverrinae|mammal family (generic term)
+viverrine|1
+(noun)|viverrine mammal|carnivore (generic term)
+viverrine mammal|1
+(noun)|viverrine|carnivore (generic term)
+vivid|4
+(adj)|graphic|lifelike|pictorial|realistic (similar term)
+(adj)|clear (similar term)
+(adj)|bright|brilliant|colorful (similar term)|colourful (similar term)
+(adj)|intense|saturated (similar term)|pure (similar term)
+vividness|2
+(noun)|color|colour|interest (generic term)|interestingness (generic term)
+(noun)|saturation|chroma|intensity|color property (generic term)
+vivien leigh|1
+(noun)|Leigh|Vivien Leigh|actress (generic term)
+vivification|2
+(noun)|animation|spiritedness|invigoration|brio|activeness (generic term)|activity (generic term)
+(noun)|invigoration|animation|energizing (generic term)|activating (generic term)|activation (generic term)
+vivify|2
+(verb)|animate|recreate|reanimate|revive|renovate|repair|quicken|revivify|stimulate (generic term)|arouse (generic term)|brace (generic term)|energize (generic term)|energise (generic term)|perk up (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+viviparous|1
+(adj)|live-bearing|oviparous (antonym)|ovoviviparous (antonym)
+viviparous eelpout|1
+(noun)|Zoarces viviparus|eelpout (generic term)|pout (generic term)
+vivisect|1
+(verb)|dissect (generic term)
+vivisection|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+vivisectionist|1
+(noun)|biologist (generic term)|life scientist (generic term)
+vixen|1
+(noun)|harpy|hellcat|unpleasant woman (generic term)|disagreeable woman (generic term)
+vixenish|1
+(adj)|malicious (similar term)
+viyella|1
+(noun)|Viyella|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+viz.|1
+(adv)|namely|that is to say|videlicet
+vizcaino|1
+(noun)|Vizcaino|Sebastian Vizcaino|explorer (generic term)|adventurer (generic term)
+vizier|1
+(noun)|official (generic term)|functionary (generic term)
+viziership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+vizla|1
+(noun)|Hungarian pointer|pointer (generic term)|Spanish pointer (generic term)
+vizor|2
+(noun)|visor|armor plate (generic term)|armour plate (generic term)|armor plating (generic term)|plate armor (generic term)|plate armour (generic term)
+(noun)|bill|peak|eyeshade|visor|brim (generic term)
+vladimir horowitz|1
+(noun)|Horowitz|Vladimir Horowitz|pianist (generic term)|piano player (generic term)
+vladimir ilich lenin|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+vladimir ilich ulyanov|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+vladimir ilyich lenin|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+vladimir ilyich ulyanov|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+vladimir kosma zworykin|1
+(noun)|Zworykin|Vladimir Kosma Zworykin|physicist (generic term)
+vladimir lenin|1
+(noun)|Lenin|Vladimir Lenin|Nikolai Lenin|Vladimir Ilyich Lenin|Vladimir Ilich Lenin|Vladimir Ilyich Ulyanov|Vladimir Ilich Ulyanov|Bolshevik (generic term)|Bolshevist (generic term)
+vladimir nabokov|1
+(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer (generic term)|author (generic term)
+vladimir putin|1
+(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman (generic term)|solon (generic term)|national leader (generic term)
+vladimir vladimirovich mayakovski|1
+(noun)|Mayakovski|Vladimir Vladimirovich Mayakovski|poet (generic term)
+vladimir vladimirovich nabokov|1
+(noun)|Nabokov|Vladimir Nabokov|Vladimir vladimirovich Nabokov|writer (generic term)|author (generic term)
+vladimir vladimirovich putin|1
+(noun)|Putin|Vladimir Putin|Vladimir Vladimirovich Putin|statesman (generic term)|solon (generic term)|national leader (generic term)
+vladivostok|1
+(noun)|Vladivostok|city (generic term)|metropolis (generic term)|urban center (generic term)
+vlaminck|1
+(noun)|Vlaminck|Maurice de Vlaminck|painter (generic term)
+vldl|1
+(noun)|very low density lipoprotein|VLDL|lipoprotein (generic term)
+vlf|1
+(noun)|very low frequency|VLF|radio frequency (generic term)
+vocable|1
+(noun)|spoken word|word (generic term)
+vocabulary|3
+(noun)|wordbook (generic term)
+(noun)|lexicon|mental lexicon|cognition (generic term)|knowledge (generic term)|noesis (generic term)
+(noun)|frame of reference (generic term)
+vocal|6
+(adj)|communication (related term)|instrumental (antonym)
+(adj)|communication (related term)
+(adj)|outspoken|communicative (similar term)|communicatory (similar term)
+(adj)|loud (similar term)
+(noun)|vocal music|music (generic term)
+(noun)|song|musical composition (generic term)|opus (generic term)|composition (generic term)|piece (generic term)|piece of music (generic term)
+vocal band|1
+(noun)|vocal cord|vocal fold|plica vocalis|fold (generic term)|plica (generic term)
+vocal cord|1
+(noun)|vocal fold|vocal band|plica vocalis|fold (generic term)|plica (generic term)
+vocal fold|1
+(noun)|vocal cord|vocal band|plica vocalis|fold (generic term)|plica (generic term)
+vocal music|2
+(noun)|vocal|music (generic term)
+(noun)|music (generic term)
+vocal organ|1
+(noun)|speech organ|organ of speech|organ (generic term)
+vocalic|2
+(adj)|vowellike (similar term)|consonantal (antonym)
+(adj)|phone|speech sound|sound (related term)
+vocalisation|1
+(noun)|voice|vocalization|vocalism|phonation|vox|communication (generic term)
+vocalise|5
+(verb)|vocalize|sing (generic term)
+(verb)|vocalize|vowelize|vowelise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|articulate|enunciate|vocalize|state (generic term)|say (generic term)|tell (generic term)
+(verb)|voice|sound|vocalize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)|devoice (antonym)
+(verb)|vocalize|phonate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+vocaliser|2
+(noun)|utterer|vocalizer|organism (generic term)|being (generic term)
+(noun)|singer|vocalist|vocalizer|musician (generic term)|instrumentalist (generic term)|player (generic term)
+vocalism|2
+(noun)|vowel system|phonemic system (generic term)
+(noun)|voice|vocalization|vocalisation|phonation|vox|communication (generic term)
+vocalist|1
+(noun)|singer|vocalizer|vocaliser|musician (generic term)|instrumentalist (generic term)|player (generic term)
+vocalization|2
+(noun)|voice|vocalisation|vocalism|phonation|vox|communication (generic term)
+(noun)|utterance|auditory communication (generic term)
+vocalize|5
+(verb)|voice|sound|vocalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)|devoice (antonym)
+(verb)|vocalise|sing (generic term)
+(verb)|vocalise|vowelize|vowelise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+(verb)|articulate|enunciate|vocalise|state (generic term)|say (generic term)|tell (generic term)
+(verb)|vocalise|phonate|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+vocalizer|2
+(noun)|utterer|vocaliser|organism (generic term)|being (generic term)
+(noun)|singer|vocalist|vocaliser|musician (generic term)|instrumentalist (generic term)|player (generic term)
+vocalizing|1
+(noun)|singing|vocal music (generic term)|musical performance (generic term)
+vocation|2
+(noun)|career|calling|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|occupational group|body (generic term)
+vocational|1
+(adj)|occupation|business|job|line of work|line (related term)
+vocational education|1
+(noun)|vocational training|education (generic term)
+vocational program|1
+(noun)|educational program (generic term)
+vocational rehabilitation|1
+(noun)|rehabilitation (generic term)
+vocational rehabilitation program|1
+(noun)|rehabilitation program (generic term)
+vocational school|1
+(noun)|trade school|secondary school (generic term)|lyceum (generic term)|lycee (generic term)|Gymnasium (generic term)|middle school (generic term)
+vocational training|1
+(noun)|vocational education|education (generic term)
+vocative|2
+(adj)|oblique|oblique case (related term)
+(noun)|vocative case|oblique (generic term)|oblique case (generic term)
+vocative case|1
+(noun)|vocative|oblique (generic term)|oblique case (generic term)
+vociferate|1
+(verb)|shout out|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+vociferation|1
+(noun)|cry|outcry|call|yell|shout|utterance (generic term)|vocalization (generic term)
+vociferator|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+vociferous|1
+(adj)|blatant|clamant|clamorous|strident|noisy (similar term)
+vodka|1
+(noun)|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+vodka martini|1
+(noun)|martini (generic term)
+vodoun|1
+(noun)|voodoo|voodooism|hoodooism|cult (generic term)|cultus (generic term)|religious cult (generic term)
+vogue|2
+(noun)|trend|style|taste (generic term)|appreciation (generic term)|discernment (generic term)|perceptiveness (generic term)
+(noun)|currency|acceptance (generic term)
+voguish|2
+(adj)|chic|smart|stylish (similar term)|fashionable (similar term)
+(adj)|trendy|fashionable (similar term)|stylish (similar term)
+vogul|2
+(noun)|Vogul|Mansi|Russian (generic term)
+(noun)|Mansi|Vogul|Ugric (generic term)|Ugrian (generic term)
+voice|12
+(noun)|vocalization|vocalisation|vocalism|phonation|vox|communication (generic term)
+(noun)|sound (generic term)
+(noun)|articulation|expression (generic term)|verbal expression (generic term)|verbalism (generic term)
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|communication (generic term)
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|spokesperson|interpreter|representative|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)
+(noun)|physical ability (generic term)
+(noun)|grammatical relation (generic term)
+(noun)|part|tune (generic term)|melody (generic term)|air (generic term)|strain (generic term)|melodic line (generic term)|line (generic term)|melodic phrase (generic term)
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|sound|vocalize|vocalise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)|devoice (antonym)
+voice box|1
+(noun)|larynx|cartilaginous structure (generic term)|speech organ (generic term)|vocal organ (generic term)|organ of speech (generic term)
+voice communication|1
+(noun)|speech|speech communication|spoken communication|spoken language|language|oral communication|auditory communication (generic term)
+voice mail|1
+(noun)|voicemail|telephone (generic term)|telephony (generic term)
+voice of conscience|1
+(noun)|wee small voice|small voice|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+voice over|1
+(noun)|voice (generic term)|vocalization (generic term)|vocalisation (generic term)|vocalism (generic term)|phonation (generic term)|vox (generic term)
+voice part|1
+(noun)|part (generic term)|voice (generic term)
+voiced|1
+(adj)|sonant|soft|unvoiced (antonym)
+voiced sound|1
+(noun)|sonant|phone (generic term)|speech sound (generic term)|sound (generic term)
+voiceless|4
+(adj)|unvoiced|surd|hard|whispered (similar term)|voiced (antonym)
+(adj)|disenfranchised|disfranchised|voteless|enfranchised (antonym)
+(adj)|breathed|inaudible (similar term)|unhearable (similar term)
+(adj)|aphonic|inarticulate (similar term)|unarticulate (similar term)
+voiceless consonant|1
+(noun)|surd|consonant (generic term)
+voicelessness|3
+(noun)|aphonia|speech disorder (generic term)|speech defect (generic term)|defect of speech (generic term)
+(noun)|whisper|whispering|susurration|speaking (generic term)|speech production (generic term)
+(noun)|powerlessness (generic term)|impotence (generic term)|impotency (generic term)
+voicemail|1
+(noun)|voice mail|telephone (generic term)|telephony (generic term)
+voiceprint|1
+(noun)|biometric identification (generic term)|biometric authentication (generic term)|identity verification (generic term)
+voicer|2
+(noun)|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+voicing|1
+(noun)|adjustment (generic term)|registration (generic term)|readjustment (generic term)
+void|8
+(adj)|null|invalid (similar term)
+(adj)|empty (similar term)
+(noun)|nothingness|nullity|nihility|nonexistence (generic term)|nonentity (generic term)
+(noun)|vacancy|emptiness|vacuum|space (generic term)
+(verb)|invalidate|annul|quash|avoid|nullify|cancel (generic term)|strike down (generic term)|validate (antonym)
+(verb)|empty (generic term)
+(verb)|invalidate|vitiate|change (generic term)|alter (generic term)|modify (generic term)|validate (antonym)
+(verb)|evacuate|empty|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+voidable|1
+(adj)|rescindable|revocable (similar term)|revokable (similar term)
+voidance|1
+(noun)|emptying|evacuation|removal (generic term)|remotion (generic term)
+voider|4
+(noun)|invalidator|nullifier|official (generic term)|functionary (generic term)
+(noun)|defecator|shitter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|gusset|chain mail (generic term)|ring mail (generic term)|mail (generic term)|chain armor (generic term)|chain armour (generic term)|ring armor (generic term)|ring armour (generic term)
+(noun)|clothes hamper|laundry basket|clothes basket|hamper (generic term)
+voiding|1
+(noun)|elimination|evacuation|excretion|excreting|discharge (generic term)|emission (generic term)|expelling (generic term)
+voile|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+voix celeste|1
+(noun)|vox angelica|organ stop (generic term)
+vol-au-vent|1
+(noun)|pastry (generic term)
+volaille|1
+(noun)|chicken|poulet|poultry (generic term)
+volans|1
+(noun)|Volans|constellation (generic term)
+volant|1
+(adj)|winged (similar term)
+volapuk|1
+(noun)|Volapuk|artificial language (generic term)
+volar|1
+(adj)|palmar|area|region (related term)
+volary|1
+(noun)|aviary|bird sanctuary|building (generic term)|edifice (generic term)
+volatile|5
+(adj)|evaporable (similar term)|vaporific (similar term)|vapourific (similar term)|vaporizable (similar term)|vapourisable (similar term)|volatilizable (similar term)|volatilisable (similar term)|inconstant (related term)|nonvolatile (antonym)
+(adj)|explosive|unstable (similar term)
+(adj)|fickle|inconstant (similar term)
+(adj)|changeable (similar term)|changeful (similar term)
+(noun)|substance (generic term)|matter (generic term)
+volatile oil|1
+(noun)|essential oil|oil (generic term)
+volatile storage|1
+(noun)|memory (generic term)|computer memory (generic term)|storage (generic term)|computer storage (generic term)|store (generic term)|memory board (generic term)|non-volatile storage (antonym)|nonvolatile storage (antonym)
+volatilisable|1
+(adj)|evaporable|vaporific|vapourific|vaporizable|vapourisable|volatilizable|volatile (similar term)
+volatilise|1
+(verb)|volatilize|change (generic term)|alter (generic term)|modify (generic term)
+volatilised|1
+(adj)|gasified|vaporized|vapourised|volatilized|gaseous (similar term)
+volatility|3
+(noun)|chemical property (generic term)
+(noun)|unpredictability|irresoluteness (generic term)|irresolution (generic term)
+(noun)|excitability|excitableness|emotionality (generic term)|emotionalism (generic term)
+volatilizable|1
+(adj)|evaporable|vaporific|vapourific|vaporizable|vapourisable|volatilisable|volatile (similar term)
+volatilize|1
+(verb)|volatilise|change (generic term)|alter (generic term)|modify (generic term)
+volatilized|1
+(adj)|gasified|vaporized|vapourised|volatilised|gaseous (similar term)
+volcan de colima|1
+(noun)|Colima|Nevado de Colima|Volcan de Colima|volcano (generic term)
+volcanic|3
+(adj)|mountain|mount (related term)
+(adj)|unstable (similar term)
+(adj)|extrusive (similar term)
+volcanic crater|1
+(noun)|crater|geological formation (generic term)|formation (generic term)
+volcanic eruption|1
+(noun)|eruption|discharge (generic term)
+volcanic glass|1
+(noun)|volcanic rock (generic term)
+volcanic rock|1
+(noun)|igneous rock (generic term)
+volcanism|1
+(noun)|geological phenomenon (generic term)
+volcano|2
+(noun)|vent|crack (generic term)|cleft (generic term)|crevice (generic term)|fissure (generic term)|scissure (generic term)
+(noun)|mountain (generic term)|mount (generic term)
+volcano islands|1
+(noun)|Volcano Islands|archipelago (generic term)
+volcanology|1
+(noun)|vulcanology|geophysics (generic term)|geophysical science (generic term)
+vole|1
+(noun)|field mouse|wood rat (generic term)|wood-rat (generic term)
+vole-like|1
+(adj)|animal (similar term)
+volga|1
+(noun)|Volga|Volga River|river (generic term)
+volga river|1
+(noun)|Volga|Volga River|river (generic term)
+volgaic|1
+(noun)|Volgaic|Fennic (generic term)|Finnic (generic term)|Non-Ugric (generic term)
+volgograd|1
+(noun)|Volgograd|Stalingrad|Tsaritsyn|city (generic term)|metropolis (generic term)|urban center (generic term)
+volition|2
+(noun)|will|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|willing|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+volitional|1
+(adj)|willing (similar term)|voluntary (related term)
+volitionally|1
+(adv)|willingly|unwillingly (antonym)
+volkhov|1
+(noun)|Volkhov|Volkhov River|river (generic term)
+volkhov river|1
+(noun)|Volkhov|Volkhov River|river (generic term)
+volley|7
+(noun)|fusillade|salvo|burst|fire (generic term)|firing (generic term)
+(noun)|return (generic term)|ground stroke (antonym)
+(verb)|disperse (generic term)|dissipate (generic term)|scatter (generic term)|spread out (generic term)
+(verb)|hit (generic term)
+(verb)|discharge (generic term)
+(verb)|play (generic term)
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+volleyball|2
+(noun)|volleyball game|court game (generic term)
+(noun)|ball (generic term)
+volleyball court|1
+(noun)|court (generic term)
+volleyball game|1
+(noun)|volleyball|court game (generic term)
+volleyball net|1
+(noun)|net (generic term)
+volleyball player|1
+(noun)|player (generic term)|participant (generic term)
+volt|1
+(noun)|V|potential unit (generic term)
+volt-ampere|1
+(noun)|var|power unit (generic term)
+volta|1
+(noun)|Volta|Count Alessandro Volta|Conte Alessandro Volta|Conte Alessandro Giuseppe Antonio Anastasio Volta|physicist (generic term)
+voltage|2
+(noun)|electromotive force|emf|electrical phenomenon (generic term)
+(noun)|electric potential|potential|potential difference|potential drop|electrical phenomenon (generic term)
+voltage divider|1
+(noun)|potential divider|resistor (generic term)|resistance (generic term)
+voltage drop|1
+(noun)|drop (generic term)|dip (generic term)|fall (generic term)|free fall (generic term)
+voltage regulator|1
+(noun)|transformer (generic term)
+voltaic|2
+(adj)|galvanic|electricity (related term)|electrical phenomenon (related term)
+(noun)|Gur|Voltaic|Niger-Congo (generic term)
+voltaic battery|1
+(noun)|galvanic battery|battery (generic term)|electric battery (generic term)
+voltaic cell|1
+(noun)|galvanic cell|primary cell|cell (generic term)|electric cell (generic term)|electrolytic cell (antonym)
+voltaic pile|1
+(noun)|pile|galvanic pile|battery (generic term)|electric battery (generic term)
+voltaire|1
+(noun)|Voltaire|Arouet|Francois-Marie Arouet|writer (generic term)|author (generic term)
+voltarean|1
+(adj)|Voltarian|Voltarean|writer|author (related term)
+voltaren|1
+(noun)|diclofenac sodium|Voltaren|nonsteroidal anti-inflammatory (generic term)|nonsteroidal anti-inflammatory drug (generic term)|NSAID (generic term)
+voltarian|1
+(adj)|Voltarian|Voltarean|writer|author (related term)
+volte-face|1
+(noun)|about-face|reversal|policy change|change (generic term)
+voltmeter|1
+(noun)|meter (generic term)
+volubility|1
+(noun)|fluency|articulateness|communicativeness (generic term)
+voluble|1
+(adj)|blathering (similar term)|blithering (similar term)|jabbering (similar term)|babbling (similar term)|chatty (similar term)|gabby (similar term)|garrulous (similar term)|loquacious (similar term)|talkative (similar term)|talky (similar term)|communicative (related term)|communicatory (related term)|prolix (related term)|taciturn (antonym)
+volubly|1
+(adv)|chattily
+volume|5
+(noun)|bulk|mass|magnitude (generic term)
+(noun)|book|product (generic term)|production (generic term)
+(noun)|publication (generic term)
+(noun)|measure (generic term)|quantity (generic term)|amount (generic term)
+(noun)|loudness|intensity|sound property (generic term)|softness (antonym)
+volume-detonation bomb|1
+(noun)|thermobaric bomb|fuel-air bomb|vacuum bomb|aerosol bomb|bomb (generic term)|fuel-air explosive (generic term)|FAE (generic term)
+volume unit|1
+(noun)|capacity unit|capacity measure|cubage unit|cubic measure|cubic content unit|displacement unit|cubature unit|unit of measurement (generic term)|unit (generic term)
+volumed|3
+(adj)|publication (related term)
+(adj)|large (similar term)|big (similar term)
+(adj)|furnished (similar term)|equipped (similar term)
+volumeter|1
+(noun)|meter (generic term)
+volumetric|1
+(adj)|volumetrical|meter (related term)
+volumetric analysis|1
+(noun)|quantitative analysis (generic term)|quantitative chemical analysis (generic term)
+volumetrical|1
+(adj)|volumetric|meter (related term)
+voluminosity|1
+(noun)|fullness|voluminousness|largeness (generic term)|bigness (generic term)
+voluminous|3
+(adj)|large (similar term)|big (similar term)
+(adj)|tortuous|twisting|twisty|winding|crooked (similar term)
+(adj)|copious|abundant (similar term)
+voluminousness|1
+(noun)|fullness|voluminosity|largeness (generic term)|bigness (generic term)
+volund|1
+(noun)|Volund|mythical being (generic term)
+voluntarily|1
+(adv)|involuntarily (antonym)
+voluntary|4
+(adj)|by choice (similar term)|intentional (similar term)|willful (similar term)|wilful (similar term)|freewill (similar term)|self-imposed (similar term)|uncoerced (similar term)|unforced (similar term)|willing (similar term)|unpaid (similar term)|volunteer (similar term)|conscious (related term)|willing (related term)|involuntary (antonym)
+(adj)|involuntary (antonym)
+(noun)|volunteer|military volunteer|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|draftee (antonym)
+(noun)|solo (generic term)
+voluntary muscle|1
+(noun)|skeletal muscle (generic term)|striated muscle (generic term)
+volunteer|7
+(adj)|unpaid|voluntary (similar term)
+(noun)|military volunteer|voluntary|serviceman (generic term)|military man (generic term)|man (generic term)|military personnel (generic term)|draftee (antonym)
+(noun)|unpaid worker|worker (generic term)
+(noun)|Tennessean|Volunteer|American (generic term)
+(verb)|inform (generic term)
+(verb)|offer|act (generic term)|move (generic term)
+(verb)|work (generic term)
+volunteer state|1
+(noun)|Tennessee|Volunteer State|TN|American state (generic term)
+voluptuary|2
+(adj)|epicurean|luxurious|luxuriant|sybaritic|voluptuous|indulgent (similar term)
+(noun)|sybarite|sensualist (generic term)
+voluptuous|3
+(adj)|juicy|luscious|red-hot|toothsome|sexy (similar term)
+(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|well-endowed|shapely (similar term)
+(adj)|epicurean|luxurious|luxuriant|sybaritic|voluptuary|indulgent (similar term)
+voluptuousness|3
+(noun)|hot stuff|quality (generic term)
+(noun)|luxuriance|lushness|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(noun)|curvaceousness|shapeliness|pulchritude (generic term)
+volute|3
+(adj)|coiling|helical|spiral|spiraling|voluted|whorled|turbinate|coiled (similar term)
+(noun)|spiral|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+(noun)|coil|spiral|whorl|helix|structure (generic term)|construction (generic term)
+volute spring|1
+(noun)|coil spring|spring (generic term)
+voluted|1
+(adj)|coiling|helical|spiral|spiraling|volute|whorled|turbinate|coiled (similar term)
+volution|1
+(noun)|turning (generic term)|turn (generic term)
+volva|1
+(noun)|plant part (generic term)|plant structure (generic term)
+volvaria|1
+(noun)|Volvaria|genus Volvaria|fungus genus (generic term)
+volvaria bombycina|1
+(noun)|Volvaria bombycina|fungus (generic term)
+volvariaceae|1
+(noun)|Volvariaceae|family Volvariaceae|fungus family (generic term)
+volvariella|1
+(noun)|Volvariella|genus Volvariella|fungus genus (generic term)
+volvariella bombycina|1
+(noun)|Volvariella bombycina|agaric (generic term)
+volvariella volvacea|1
+(noun)|straw mushroom|Chinese mushroom|Volvariella volvacea|agaric (generic term)
+volvocaceae|1
+(noun)|Volvocaceae|family Volvocaceae|protoctist family (generic term)
+volvocales|1
+(noun)|Volvocales|order Volvocales|protoctist order (generic term)
+volvox|1
+(noun)|Volvox|genus Volvox|protoctist genus (generic term)
+volvulus|1
+(noun)|pathology (generic term)
+vombatidae|1
+(noun)|Vombatidae|family Vombatidae|mammal family (generic term)
+vomer|1
+(noun)|bone (generic term)|os (generic term)
+vomit|4
+(noun)|vomitus|puke|barf|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|emetic|vomitive|nauseant|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+(noun)|vomiting|emesis|regurgitation|disgorgement|puking|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+(verb)|vomit up|purge|cast|sick|cat|be sick|disgorge|regorge|retch|puke|barf|spew|spue|chuck|upchuck|honk|regurgitate|throw up|excrete (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)|keep down (antonym)
+vomiter|1
+(noun)|spewer|sick person (generic term)|diseased person (generic term)|sufferer (generic term)
+vomiting|1
+(noun)|vomit|emesis|regurgitation|disgorgement|puking|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)|expulsion (generic term)|projection (generic term)|ejection (generic term)|forcing out (generic term)
+vomitive|1
+(noun)|emetic|vomit|nauseant|remedy (generic term)|curative (generic term)|cure (generic term)|therapeutic (generic term)
+vomitory|1
+(noun)|entrance (generic term)|entranceway (generic term)|entryway (generic term)|entry (generic term)|entree (generic term)
+vomitus|1
+(noun)|vomit|puke|barf|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+von bismarck|1
+(noun)|Bismarck|von Bismarck|Otto von Bismarck|Prince Otto von Bismarck|Prince Otto Eduard Leopold von Bismarck|Iron Chancellor|statesman (generic term)|solon (generic term)|national leader (generic term)
+von blucher|1
+(noun)|Blucher|von Blucher|G. L. von Blucher|Gebhard Leberecht von Blucher|general (generic term)|full general (generic term)
+von braun|1
+(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer (generic term)|rocket scientist (generic term)
+von mauser|1
+(noun)|Mauser|von Mauser|P. P. von Mauser|Peter Paul Mauser|inventor (generic term)|discoverer (generic term)|artificer (generic term)|arms manufacturer (generic term)
+von neumann|1
+(noun)|von Neumann|Neumann|John von Neumann|mathematician (generic term)
+von neumann machine|1
+(noun)|von Neumann machine|digital computer (generic term)
+von recklinghausen's disease|1
+(noun)|neurofibromatosis|von Recklinghausen's disease|autosomal dominant disease (generic term)|autosomal dominant disorder (generic term)|monogenic disorder (generic term)|monogenic disease (generic term)
+von rundstedt|1
+(noun)|Rundstedt|von Rundstedt|Karl Rudolf Gerd von Rundstedt|field marshal (generic term)
+von sternberg|1
+(noun)|von Sternberg|Josef von Sternberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+von willebrand|1
+(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+von willebrand's disease|1
+(noun)|von Willebrand's disease|angiohemophilia|vascular hemophilia|hemophilia (generic term)|haemophilia (generic term)|bleeder's disease (generic term)
+vonnegut|1
+(noun)|Vonnegut|Kurt Vonnegut|writer (generic term)|author (generic term)
+voodoo|3
+(noun)|juju|hoodoo|fetish|fetich|charm (generic term)|good luck charm (generic term)
+(noun)|vodoun|voodooism|hoodooism|cult (generic term)|cultus (generic term)|religious cult (generic term)
+(verb)|hex (generic term)|bewitch (generic term)|glamour (generic term)|witch (generic term)|enchant (generic term)|jinx (generic term)
+voodooism|1
+(noun)|voodoo|vodoun|hoodooism|cult (generic term)|cultus (generic term)|religious cult (generic term)
+voracious|2
+(adj)|rapacious|ravening|acquisitive (similar term)
+(adj)|edacious|esurient|rapacious|ravening|ravenous|wolfish|gluttonous (similar term)
+voraciousness|3
+(noun)|edacity|esurience|ravenousness|voracity|hunger (generic term)|hungriness (generic term)
+(noun)|edacity|esurience|rapaciousness|rapacity|voracity|gluttony (generic term)
+(noun)|greediness|rapaciousness|selfishness (generic term)
+voracity|2
+(noun)|edacity|esurience|ravenousness|voraciousness|hunger (generic term)|hungriness (generic term)
+(noun)|edacity|esurience|rapaciousness|rapacity|voraciousness|gluttony (generic term)
+vortex|2
+(noun)|whirl|swirl|convolution|round shape (generic term)
+(noun)|whirlpool|maelstrom|current (generic term)|stream (generic term)
+vortex vein|1
+(noun)|vorticose vein|vena vorticosum|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+vorticella|1
+(noun)|ciliate (generic term)|ciliated protozoan (generic term)|ciliophoran (generic term)
+vorticose vein|1
+(noun)|vortex vein|vena vorticosum|vein (generic term)|vena (generic term)|venous blood vessel (generic term)
+votary|3
+(noun)|religious (generic term)
+(noun)|priest (generic term)|non-Christian priest (generic term)
+(noun)|disciple (generic term)|adherent (generic term)
+vote|8
+(noun)|ballot|voting|balloting|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+(noun)|group action (generic term)
+(noun)|right to vote|suffrage|franchise (generic term)|enfranchisement (generic term)
+(noun)|body (generic term)
+(noun)|voter turnout|numerical quantity (generic term)
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)|vote in (related term)|vote out (related term)
+(verb)|express (generic term)|state (generic term)
+(verb)|vote (generic term)
+vote counter|1
+(noun)|teller|official (generic term)|functionary (generic term)
+vote down|2
+(verb)|kill|shoot down|defeat|vote out|veto (generic term)|blackball (generic term)|negative (generic term)
+(verb)|turn thumbs down|vote (generic term)
+vote in|1
+(verb)|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+vote of confidence|1
+(noun)|encouragement (generic term)
+vote out|1
+(verb)|kill|shoot down|defeat|vote down|veto (generic term)|blackball (generic term)|negative (generic term)
+voteless|1
+(adj)|disenfranchised|disfranchised|voiceless|enfranchised (antonym)
+voter|1
+(noun)|elector|citizen (generic term)
+voter turnout|1
+(noun)|vote|numerical quantity (generic term)
+voting|1
+(noun)|vote|ballot|balloting|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+voting age|1
+(noun)|age (generic term)|eld (generic term)
+voting booth|1
+(noun)|booth (generic term)|cubicle (generic term)|stall (generic term)|kiosk (generic term)
+voting machine|1
+(noun)|mechanical device (generic term)
+voting precinct|1
+(noun)|election district|precinct (generic term)
+voting right|1
+(noun)|right (generic term)
+voting stock|1
+(noun)|stock (generic term)
+voting system|1
+(noun)|electoral system|legal system (generic term)
+voting trust|1
+(noun)|trust (generic term)
+votive|1
+(adj)|consecrated (similar term)|consecrate (similar term)|dedicated (similar term)
+votyak|2
+(noun)|Udmurt|Votyak|Russian (generic term)
+(noun)|Udmurt|Votyak|Permic (generic term)
+vouch|4
+(verb)|testify (generic term)|attest (generic term)|take the stand (generic term)|bear witness (generic term)
+(verb)|guarantee|pledge (generic term)|plight (generic term)
+(verb)|summon (generic term)|summons (generic term)|cite (generic term)
+(verb)|confirm (generic term)|corroborate (generic term)|sustain (generic term)|substantiate (generic term)|support (generic term)|affirm (generic term)
+vouch in|1
+(verb)|summon (generic term)|summons (generic term)|cite (generic term)
+vouchee|1
+(noun)|party (generic term)
+voucher|3
+(noun)|verifier|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|document (generic term)|written document (generic term)|papers (generic term)
+(noun)|coupon|commercial document (generic term)|commercial instrument (generic term)
+vouchsafe|1
+(verb)|allow (generic term)|grant (generic term)
+vouge|1
+(noun)|pike (generic term)
+voussoir|1
+(noun)|building block (generic term)
+vouvray|1
+(noun)|Vouvray|white wine (generic term)
+vow|3
+(noun)|assurance (generic term)|pledge (generic term)
+(verb)|pledge (generic term)|plight (generic term)
+(verb)|consecrate|give (generic term)|dedicate (generic term)|consecrate (generic term)|commit (generic term)|devote (generic term)
+vowel|2
+(noun)|vowel sound|phone (generic term)|speech sound (generic term)|sound (generic term)|consonant (antonym)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+vowel point|1
+(noun)|vowel (generic term)
+vowel rhyme|1
+(noun)|assonance|rhyme (generic term)|rime (generic term)
+vowel sound|1
+(noun)|vowel|phone (generic term)|speech sound (generic term)|sound (generic term)|consonant (antonym)
+vowel system|1
+(noun)|vocalism|phonemic system (generic term)
+vowelise|1
+(verb)|vocalize|vocalise|vowelize|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+vowelize|1
+(verb)|vocalize|vocalise|vowelise|pronounce (generic term)|articulate (generic term)|enounce (generic term)|sound out (generic term)|enunciate (generic term)|say (generic term)
+vowellike|1
+(adj)|vocalic (similar term)
+vower|1
+(noun)|promiser (generic term)|promisor (generic term)
+vox|1
+(noun)|voice|vocalization|vocalisation|vocalism|phonation|communication (generic term)
+vox angelica|1
+(noun)|voix celeste|organ stop (generic term)
+vox humana|1
+(noun)|reed stop (generic term)
+vox populi|1
+(noun)|public opinion|popular opinion|opinion|belief (generic term)
+voyage|3
+(noun)|ocean trip|water travel (generic term)|seafaring (generic term)
+(noun)|journey (generic term)|journeying (generic term)
+(verb)|sail|navigate|travel (generic term)|journey (generic term)
+voyager|1
+(noun)|traveler (generic term)|traveller (generic term)
+voyageurs national park|1
+(noun)|Voyageurs National Park|national park (generic term)
+voyeur|1
+(noun)|Peeping Tom|peeper|spectator (generic term)|witness (generic term)|viewer (generic term)|watcher (generic term)|looker (generic term)
+voyeurism|1
+(noun)|paraphilia (generic term)
+voyeuristic|1
+(adj)|voyeuristical|paraphilia (related term)|spectator|witness|viewer|watcher|looker (related term)
+voyeuristical|1
+(adj)|voyeuristic|paraphilia (related term)|spectator|witness|viewer|watcher|looker (related term)
+voznesenski|1
+(noun)|Voznesenski|Andrei Voznesenski|poet (generic term)
+vroom|2
+(noun)|sound (generic term)
+(verb)|roar (generic term)|howl (generic term)
+vt|1
+(noun)|Vermont|Green Mountain State|VT|American state (generic term)
+vuillard|1
+(noun)|Vuillard|Edouard Vuillard|Jean Edouard Vuillard|painter (generic term)
+vulcan|1
+(noun)|Vulcan|Roman deity (generic term)
+vulcanisation|1
+(noun)|vulcanization|processing (generic term)
+vulcanise|2
+(verb)|vulcanize|change (generic term)
+(verb)|vulcanize|process (generic term)|treat (generic term)
+vulcanised|1
+(adj)|cured|vulcanized|processed (similar term)
+vulcaniser|1
+(noun)|vulcanizer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+vulcanite|1
+(noun)|hard rubber|ebonite|rubber (generic term)|natural rubber (generic term)|India rubber (generic term)|gum elastic (generic term)|caoutchouc (generic term)
+vulcanization|1
+(noun)|vulcanisation|processing (generic term)
+vulcanize|2
+(verb)|vulcanise|change (generic term)
+(verb)|vulcanise|process (generic term)|treat (generic term)
+vulcanized|1
+(adj)|cured|vulcanised|processed (similar term)
+vulcanized fiber|1
+(noun)|fiber|fibre|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+vulcanizer|1
+(noun)|vulcaniser|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+vulcanology|1
+(noun)|volcanology|geophysics (generic term)|geophysical science (generic term)
+vulgar|4
+(adj)|coarse|common|rough-cut|uncouth|unrefined (similar term)
+(adj)|common|plebeian|unwashed|lowborn (similar term)
+(adj)|common|vernacular|informal (similar term)
+(adj)|coarse|crude|earthy|gross|indecent (similar term)
+vulgar latin|1
+(noun)|Vulgar Latin|Low Latin (generic term)
+vulgarian|1
+(noun)|unpleasant person (generic term)|disagreeable person (generic term)
+vulgarisation|2
+(noun)|vulgarization|degradation (generic term)|debasement (generic term)
+(noun)|popularization|popularisation|vulgarization|degradation (generic term)|debasement (generic term)
+vulgarise|3
+(verb)|popularize|popularise|vulgarize|generalize|generalise|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|vulgarize|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vulgarize|act (generic term)|behave (generic term)|do (generic term)
+vulgariser|2
+(noun)|vulgarizer|debaser (generic term)|degrader (generic term)
+(noun)|popularizer|populariser|vulgarizer|communicator (generic term)
+vulgarism|2
+(noun)|obscenity|smut|filth|dirty word|profanity (generic term)
+(noun)|coarseness|commonness|grossness|vulgarity|raunch|inelegance (generic term)
+vulgarity|1
+(noun)|coarseness|commonness|grossness|vulgarism|raunch|inelegance (generic term)
+vulgarization|2
+(noun)|vulgarisation|degradation (generic term)|debasement (generic term)
+(noun)|popularization|popularisation|vulgarisation|degradation (generic term)|debasement (generic term)
+vulgarize|3
+(verb)|popularize|popularise|vulgarise|generalize|generalise|circulate (generic term)|circularize (generic term)|circularise (generic term)|distribute (generic term)|disseminate (generic term)|propagate (generic term)|broadcast (generic term)|spread (generic term)|diffuse (generic term)|disperse (generic term)|pass around (generic term)
+(verb)|vulgarise|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|vulgarise|act (generic term)|behave (generic term)|do (generic term)
+vulgarizer|2
+(noun)|vulgariser|debaser (generic term)|degrader (generic term)
+(noun)|popularizer|populariser|vulgariser|communicator (generic term)
+vulgarly|1
+(adv)|smuttily
+vulgate|1
+(noun)|Vulgate|Bible (generic term)|Christian Bible (generic term)|Book (generic term)|Good Book (generic term)|Holy Scripture (generic term)|Holy Writ (generic term)|Scripture (generic term)|Word of God (generic term)|Word (generic term)
+vulnerability|2
+(noun)|exposure|danger (generic term)
+(noun)|weakness (generic term)|invulnerability (antonym)
+vulnerable|3
+(adj)|assailable (similar term)|undefendable (similar term)|undefended (similar term)|open (similar term)|compromising (similar term)|defenseless (similar term)|defenceless (similar term)|endangered (similar term)|indefensible (similar term)|insecure (similar term)|unsafe (similar term)|penetrable (similar term)|threatened (similar term)|under attack (similar term)|under fire (similar term)|unguarded (similar term)|conquerable (related term)|dangerous (related term)|unsafe (related term)|insecure (related term)|unsafe (related term)|susceptible (related term)|unprotected (related term)|invulnerable (antonym)
+(adj)|susceptible (similar term)
+(adj)|weak (similar term)
+vulpecula|1
+(noun)|Vulpecula|constellation (generic term)
+vulpecular|1
+(adj)|vulpine|canine|canid (related term)
+vulpes|1
+(noun)|Vulpes|genus Vulpes|mammal genus (generic term)
+vulpes fulva|1
+(noun)|red fox|Vulpes fulva|fox (generic term)
+vulpes macrotis|1
+(noun)|kit fox|Vulpes macrotis|fox (generic term)
+vulpes velox|1
+(noun)|kit fox|prairie fox|Vulpes velox|fox (generic term)
+vulpes vulpes|1
+(noun)|red fox|Vulpes vulpes|fox (generic term)
+vulpine|1
+(adj)|vulpecular|canine|canid (related term)
+vultur|1
+(noun)|Vultur|genus Vultur|bird genus (generic term)
+vultur gryphus|1
+(noun)|Andean condor|Vultur gryphus|condor (generic term)
+vulture|2
+(noun)|bird of prey (generic term)|raptor (generic term)|raptorial bird (generic term)
+(noun)|marauder|predator|piranha|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+vulturine|1
+(adj)|predatory|rapacious|raptorial|ravening|vulturous|aggressive (similar term)
+vulturous|1
+(adj)|predatory|rapacious|raptorial|ravening|vulturine|aggressive (similar term)
+vulva|1
+(noun)|female genitalia (generic term)|female genitals (generic term)|female genital organ (generic term)|fanny (generic term)
+vulval|1
+(adj)|vulvar|female genitalia|female genitals|female genital organ|fanny (related term)
+vulvar|1
+(adj)|vulval|female genitalia|female genitals|female genital organ|fanny (related term)
+vulvar slit|1
+(noun)|pudendal cleft|urogenital cleft|rima pudendi|rima vulvae|pudendal cleavage|pudendal slit|rima (generic term)
+vulvectomy|1
+(noun)|ablation (generic term)|extirpation (generic term)|cutting out (generic term)|excision (generic term)
+vulvitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vulvovaginitis|1
+(noun)|inflammation (generic term)|redness (generic term)|rubor (generic term)
+vx gas|1
+(noun)|VX gas|nerve gas (generic term)|nerve agent (generic term)
+vyacheslav mikhailovich molotov|1
+(noun)|Molotov|Vyacheslav Mikhailovich Molotov|statesman (generic term)|solon (generic term)|national leader (generic term)
+w|4
+(noun)|tungsten|wolfram|W|atomic number 74|metallic element (generic term)|metal (generic term)
+(noun)|west|due west|westward|W|cardinal compass point (generic term)
+(noun)|watt|W|power unit (generic term)
+(noun)|W|letter w|double-u|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+w-shaped|1
+(adj)|W-shaped|formed (similar term)
+w. b. yeats|1
+(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet (generic term)|dramatist (generic term)|playwright (generic term)
+w. c. fields|1
+(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian (generic term)|comic (generic term)
+w. c. handy|1
+(noun)|Handy|W. C. Handy|William Christopher Handy|composer (generic term)
+w. e. b. du bois|1
+(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+w. h. auden|1
+(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet (generic term)
+w. h. hudson|1
+(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist (generic term)|natural scientist (generic term)
+w. k. kellogg|1
+(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer (generic term)
+w. somerset maugham|1
+(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer (generic term)|author (generic term)
+w. v. quine|1
+(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher (generic term)|logician (generic term)|logistician (generic term)
+w. w. jacobs|1
+(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer (generic term)|author (generic term)
+w.c.|1
+(noun)|water closet|closet|W.C.|loo|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+w.m.d.|1
+(noun)|weapon of mass destruction|WMD|W.M.D.|weapon (generic term)|arm (generic term)|weapon system (generic term)
+wa|1
+(noun)|Washington|Evergreen State|WA|American state (generic term)
+wabash|1
+(noun)|Wabash|Wabash River|river (generic term)
+wabash river|1
+(noun)|Wabash|Wabash River|river (generic term)
+wac|2
+(noun)|Wac|soldier (generic term)|woman (generic term)|adult female (generic term)
+(noun)|Women's Army Corps|WAC|corps (generic term)|army corps (generic term)
+wackily|1
+(adv)|daftly|dottily|balmily|nuttily
+wacko|1
+(noun)|nutter|whacko|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+wacky|2
+(adj)|cockamamie|cockamamy|goofy|sappy|silly|whacky|zany|foolish (similar term)
+(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 (similar term)
+waco|1
+(noun)|Waco|city (generic term)|metropolis (generic term)|urban center (generic term)
+wad|5
+(noun)|material (generic term)|stuff (generic term)
+(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 (generic term)|large indefinite amount (generic term)
+(noun)|chew|chaw|cud|quid|plug|morsel (generic term)|bit (generic term)|bite (generic term)
+(verb)|pack|bundle|compact|arrange (generic term)|set up (generic term)|bundle off (related term)
+(verb)|jam|jampack|ram|chock up|cram|stuff (generic term)
+wadding|1
+(noun)|packing material|packing|material (generic term)|stuff (generic term)
+waddle|2
+(noun)|gait (generic term)
+(verb)|toddle|coggle|totter|dodder|paddle|walk (generic term)
+waddler|1
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+wade|2
+(noun)|Wade|Virginia Wade|tennis player (generic term)
+(verb)|walk (generic term)
+wader|1
+(noun)|wading bird|aquatic bird (generic term)
+waders|1
+(noun)|hip boot (generic term)|thigh boot (generic term)
+wadi|1
+(noun)|gully (generic term)
+wading|1
+(noun)|walk (generic term)|walking (generic term)
+wading bird|1
+(noun)|wader|aquatic bird (generic term)
+wading pool|1
+(noun)|pool (generic term)
+wads|1
+(noun)|tons|dozens|heaps|lots|mountain|piles|scores|stacks|loads|rafts|slews|oodles|gobs|scads|lashings|large indefinite quantity (generic term)|large indefinite amount (generic term)
+wafer|3
+(noun)|paste (generic term)|library paste (generic term)
+(noun)|cookie (generic term)|cooky (generic term)|biscuit (generic term)
+(noun)|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+wafer-like|1
+(adj)|cooked (similar term)
+wafer-thin|1
+(adj)|thin (similar term)
+waffle|2
+(noun)|cake (generic term)
+(verb)|hesitate|waver
+waffle iron|1
+(noun)|kitchen appliance (generic term)
+waffler|1
+(noun)|communicator (generic term)
+waft|3
+(noun)|pennant|pennon|streamer|flag (generic term)
+(verb)|float (generic term)|drift (generic term)|be adrift (generic term)|blow (generic term)
+(verb)|blow (generic term)
+wafture|1
+(noun)|wave|waving|gesture (generic term)|motion (generic term)
+wag|3
+(noun)|wit|card|humorist (generic term)|humourist (generic term)
+(noun)|waggle|shake|agitation (generic term)
+(verb)|waggle|jiggle (generic term)|joggle (generic term)|wiggle (generic term)
+wage|2
+(noun)|pay|earnings|remuneration|salary|regular payment (generic term)
+(verb)|engage|contend (generic term)|fight (generic term)|struggle (generic term)
+wage-earning|2
+(adj)|working-class|blue-collar (similar term)
+(adj)|propertyless|working-class|blue-collar|lower-class (similar term)|low-class (similar term)
+wage claim|1
+(noun)|pay claim|demand (generic term)
+wage concession|1
+(noun)|concession (generic term)
+wage earner|1
+(noun)|earner|jobholder (generic term)
+wage floor|1
+(noun)|floor (generic term)|base (generic term)
+wage freeze|1
+(noun)|freeze (generic term)
+wage hike|1
+(noun)|raise|rise|hike|wage increase|salary increase|increase (generic term)|increment (generic term)
+wage increase|1
+(noun)|raise|rise|wage hike|hike|salary increase|increase (generic term)|increment (generic term)
+wage scale|1
+(noun)|wage schedule|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+wage schedule|1
+(noun)|wage scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+wage setter|1
+(noun)|financial condition (generic term)|economic condition (generic term)
+wager|4
+(noun)|bet|gambling (generic term)|gaming (generic term)|play (generic term)
+(noun)|stake|stakes|bet|gamble (generic term)
+(verb)|bet|play|gamble (generic term)
+(verb)|bet|predict (generic term)|foretell (generic term)|prognosticate (generic term)|call (generic term)|forebode (generic term)|anticipate (generic term)|promise (generic term)|bet on (related term)
+wagerer|1
+(noun)|bettor|better|punter|gambler (generic term)
+wages|1
+(noun)|reward|payoff|consequence (generic term)|aftermath (generic term)
+wagga wagga|1
+(noun)|Wagga Wagga|town (generic term)
+waggery|2
+(noun)|waggishness|fun (generic term)|play (generic term)|sport (generic term)
+(noun)|drollery|jest (generic term)|joke (generic term)|jocularity (generic term)
+waggish|1
+(adj)|humorous (similar term)|humourous (similar term)
+waggishness|1
+(noun)|waggery|fun (generic term)|play (generic term)|sport (generic term)
+waggle|3
+(noun)|wag|shake|agitation (generic term)
+(verb)|wag|jiggle (generic term)|joggle (generic term)|wiggle (generic term)
+(verb)|wamble|move (generic term)
+waggon|2
+(noun)|wagon|wheeled vehicle (generic term)
+(noun)|beach wagon|station wagon|wagon|beach waggon|station waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+waggoner|1
+(noun)|wagoner|driver (generic term)
+waggonwright|1
+(noun)|wagonwright|wainwright|wright (generic term)
+wagner|3
+(noun)|Wagner|Otto Wagner|architect (generic term)|designer (generic term)
+(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer (generic term)
+(noun)|Wagner|music (generic term)
+wagnerian|2
+(adj)|Wagnerian|composer (related term)
+(noun)|Wagnerian|follower (generic term)
+wagon|5
+(noun)|waggon|wheeled vehicle (generic term)
+(noun)|police van|police wagon|paddy wagon|patrol wagon|black Maria|van (generic term)
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+(noun)|coaster wagon|wheeled vehicle (generic term)
+(noun)|beach wagon|station wagon|beach waggon|station waggon|waggon|car (generic term)|auto (generic term)|automobile (generic term)|machine (generic term)|motorcar (generic term)
+wagon-lit|1
+(noun)|sleeping car|sleeper|passenger car (generic term)|coach (generic term)|carriage (generic term)
+wagon tire|1
+(noun)|tire (generic term)|tyre (generic term)
+wagon train|1
+(noun)|caravan|train|procession (generic term)
+wagon wheel|1
+(noun)|wheel (generic term)
+wagoner|1
+(noun)|waggoner|driver (generic term)
+wagonwright|1
+(noun)|waggonwright|wainwright|wright (generic term)
+wagram|2
+(noun)|Wagram|town (generic term)
+(noun)|Wagram|battle of Wagram|pitched battle (generic term)
+wagtail|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+wahabi|1
+(noun)|Wahhabi|Wahabi|Muslim (generic term)|Moslem (generic term)
+wahabism|1
+(noun)|Wahhabism|Wahabism|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+wahhabi|1
+(noun)|Wahhabi|Wahabi|Muslim (generic term)|Moslem (generic term)
+wahhabism|1
+(noun)|Wahhabism|Wahabism|Islam (generic term)|Islamism (generic term)|Mohammedanism (generic term)|Muhammadanism (generic term)|Muslimism (generic term)
+wahoo|3
+(noun)|strawberry bush|Euonymus americanus|shrub (generic term)|bush (generic term)
+(noun)|burning bush|Euonymus atropurpureus|shrub (generic term)|bush (generic term)
+(noun)|Acanthocybium solandri|mackerel (generic term)
+wahunsonacock|1
+(noun)|Powhatan|Wahunsonacock|Indian chief (generic term)|Indian chieftain (generic term)|Algonquian (generic term)|Algonquin (generic term)
+wahvey|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+waif|1
+(noun)|street child|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+waikiki|1
+(noun)|Waikiki|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+wail|3
+(noun)|lament|lamentation|plaint|complaint (generic term)
+(verb)|howl|ululate|roar|yawl|yaup|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|whimper|mewl|pule|cry (generic term)|weep (generic term)
+wailer|1
+(noun)|mourner (generic term)|griever (generic term)|sorrower (generic term)|lamenter (generic term)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+wailful|1
+(adj)|lamenting|wailing|sorrowful (similar term)
+wailing|2
+(adj)|lamenting|wailful|sorrowful (similar term)
+(noun)|bawling|crying (generic term)|weeping (generic term)|tears (generic term)
+wailing wall|1
+(noun)|Wailing Wall|wall (generic term)
+wain|3
+(noun)|Wain|John Wain|John Barrington Wain|writer (generic term)|author (generic term)
+(noun)|Big Dipper|Dipper|Plough|Charles's Wain|Wain|Wagon|asterism (generic term)
+(noun)|wagon (generic term)|waggon (generic term)
+wainscot|2
+(noun)|dado|panel (generic term)
+(noun)|wainscoting|wainscotting|panel (generic term)
+wainscoted|1
+(adj)|paneled|adorned (similar term)|decorated (similar term)
+wainscoting|2
+(noun)|wainscotting|wall (generic term)
+(noun)|wainscot|wainscotting|panel (generic term)
+wainscotting|2
+(noun)|wainscoting|wall (generic term)
+(noun)|wainscot|wainscoting|panel (generic term)
+wainwright|1
+(noun)|wagonwright|waggonwright|wright (generic term)
+waist|2
+(noun)|waistline|area (generic term)|region (generic term)
+(noun)|shank|part (generic term)|portion (generic term)
+waist-deep|1
+(adv)|waist-high
+waist-high|1
+(adv)|waist-deep
+waist-length|1
+(adj)|fractional (similar term)
+waist anchor|1
+(noun)|sheet anchor|anchor (generic term)|ground tackle (generic term)
+waist pack|1
+(noun)|belt bag|pouch (generic term)
+waistband|1
+(noun)|girdle|cincture|sash|waistcloth|band (generic term)
+waistcloth|1
+(noun)|girdle|cincture|sash|waistband|band (generic term)
+waistcoat|1
+(noun)|vest|garment (generic term)
+waistline|1
+(noun)|waist|area (generic term)|region (generic term)
+wait|5
+(noun)|delay|hold|time lag|postponement|pause (generic term)|intermission (generic term)|break (generic term)|interruption (generic term)|suspension (generic term)
+(noun)|waiting|inactivity (generic term)
+(verb)|hold off|hold back|act (generic term)|move (generic term)
+(verb)|expect|look|await
+(verb)|waitress|work (generic term)
+wait on|1
+(verb)|serve|attend to|attend|assist|help (generic term)|assist (generic term)|aid (generic term)
+waite|1
+(noun)|Waite|Morrison Waite|Morrison R. Waite|Morrison Remick Waite|chief justice (generic term)
+waiter|2
+(noun)|server|dining-room attendant (generic term)|restaurant attendant (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+waiter's assistant|1
+(noun)|busboy|dining-room attendant (generic term)|restaurant attendant (generic term)
+waiting|2
+(adj)|ready and waiting|ready (similar term)
+(noun)|wait|inactivity (generic term)
+waiting area|1
+(noun)|lounge|waiting room|room (generic term)
+waiting game|1
+(noun)|scheme (generic term)|strategy (generic term)
+waiting line|1
+(noun)|queue|line (generic term)
+waiting list|1
+(noun)|roll (generic term)|roster (generic term)
+waiting room|1
+(noun)|lounge|waiting area|room (generic term)
+waitress|2
+(noun)|waiter (generic term)|server (generic term)
+(verb)|wait|work (generic term)
+waive|2
+(verb)|relinquish|forgo|foreswear|dispense with
+(verb)|forfeit|give up|throw overboard|forgo|abandon (generic term)|claim (antonym)
+waiver|1
+(noun)|release|discharge|relinquishment (generic term)|relinquishing (generic term)
+wajda|1
+(noun)|Wajda|Andrzej Wajda|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+wakashan|2
+(noun)|Wakashan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Wakashan|Wakashan language|Mosan (generic term)
+wakashan language|1
+(noun)|Wakashan|Wakashan language|Mosan (generic term)
+wake|9
+(noun)|aftermath|backwash|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|Wake Island|Wake|island (generic term)
+(noun)|backwash|wave (generic term)|moving ridge (generic term)
+(noun)|viewing|vigil (generic term)|watch (generic term)
+(verb)|sleep (antonym)
+(verb)|wake up|awake|arouse|awaken|come alive|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+(verb)|inflame|stir up|ignite|heat|fire up|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+(verb)|alarm (generic term)|alert (generic term)
+(verb)|awaken|waken|rouse|wake up|arouse|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+wake-robin|2
+(noun)|trillium|wood lily|liliaceous plant (generic term)
+(noun)|jack-in-the-pulpit|Indian turnip|Arisaema triphyllum|Arisaema atrorubens|arum (generic term)|aroid (generic term)
+wake-up call|2
+(noun)|warning (generic term)
+(noun)|call (generic term)|phone call (generic term)|telephone call (generic term)
+wake-up signal|1
+(noun)|reveille|bugle call (generic term)
+wake board|1
+(noun)|wakeboard|board (generic term)
+wake island|1
+(noun)|Wake Island|Wake|island (generic term)
+wake up|2
+(verb)|awaken|wake|waken|rouse|arouse|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+(verb)|awake|arouse|awaken|wake|come alive|waken|change state (generic term)|turn (generic term)|fall asleep (antonym)
+wakeboard|1
+(noun)|wake board|board (generic term)
+wakeful|3
+(adj)|argus-eyed|open-eyed|vigilant|watchful|alert (similar term)
+(adj)|light|shallow (similar term)
+(adj)|waking|awake (similar term)
+wakefulness|3
+(noun)|waking (generic term)|physiological state (generic term)|physiological condition (generic term)
+(noun)|sleeplessness|temporary state (generic term)|sleepiness (antonym)
+(noun)|watchfulness|vigilance|alertness|attention (generic term)
+wakeless|1
+(adj)|heavy|profound|sound|deep (similar term)
+waken|2
+(verb)|awaken|wake|rouse|wake up|arouse|change (generic term)|alter (generic term)|modify (generic term)|cause to sleep (antonym)
+(verb)|wake up|awake|arouse|awaken|wake|come alive|change state (generic term)|turn (generic term)|fall asleep (antonym)
+wakening|1
+(noun)|awakening|waking up|arousal (generic term)|rousing (generic term)
+waker|2
+(noun)|rouser|arouser|attendant (generic term)|attender (generic term)|tender (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+waking|2
+(adj)|wakeful|awake (similar term)
+(noun)|consciousness (generic term)|sleeping (antonym)
+waking up|1
+(noun)|awakening|wakening|arousal (generic term)|rousing (generic term)
+walapai|2
+(noun)|Walapai|Hualapai|Hualpai|Hokan (generic term)|Hoka (generic term)
+(noun)|Walapai|Hualapai|Hualpai|Yuman (generic term)
+walbiri|1
+(noun)|Walbiri|Warlpiri|Australian (generic term)|Aboriginal Australian (generic term)
+waldenses|1
+(noun)|Waldenses|Vaudois|sect (generic term)|religious sect (generic term)|religious order (generic term)
+waldheim|1
+(noun)|Waldheim|Kurt Waldheim|diplomat (generic term)|diplomatist (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+waldmeister|2
+(noun)|sweet woodruff|woodruff|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw (generic term)
+(noun)|sweet woodruff|herb (generic term)
+waldorf salad|1
+(noun)|Waldorf salad|fruit salad (generic term)
+wale|2
+(noun)|welt|weal|wheal|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|strake|board (generic term)|plank (generic term)
+wales|1
+(noun)|Wales|Cymru|Cambria|principality (generic term)|princedom (generic term)
+walesa|1
+(noun)|Walesa|Lech Walesa|labor leader (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+walhalla|1
+(noun)|Valhalla|Walhalla|Heaven (generic term)
+walk|17
+(noun)|walking|locomotion (generic term)|travel (generic term)
+(noun)|base on balls|pass|accomplishment (generic term)|achievement (generic term)
+(noun)|manner of walking|carriage (generic term)|bearing (generic term)|posture (generic term)
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+(noun)|walkway|paseo|path (generic term)
+(noun)|gait (generic term)
+(noun)|walk of life|career (generic term)|calling (generic term)|vocation (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|walk around (related term)|walk about (related term)|ride (antonym)
+(verb)|traverse (generic term)|track (generic term)|cover (generic term)|cross (generic term)|pass over (generic term)|get over (generic term)|get across (generic term)|cut through (generic term)|cut across (generic term)
+(verb)|accompany (generic term)
+(verb)|score (generic term)|hit (generic term)|tally (generic term)|rack up (generic term)
+(verb)|behave (generic term)|comport (generic term)
+(verb)|take the air|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|play (generic term)
+(verb)|consociate (generic term)|associate (generic term)
+(verb)|compel (generic term)|oblige (generic term)|obligate (generic term)
+(verb)|pace (generic term)
+walk-in|5
+(adj)|deep (similar term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)|deserter (generic term)|defector (generic term)
+(noun)|waltz|victory (generic term)|triumph (generic term)
+(noun)|room (generic term)
+walk-on|2
+(adj)|nonspeaking|mute (similar term)|tongueless (similar term)|speaking (antonym)
+(noun)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+walk-through|4
+(noun)|explanation (generic term)|account (generic term)
+(noun)|passageway (generic term)
+(noun)|rehearsal (generic term)|dry run (generic term)
+(noun)|walk (generic term)
+walk-to|1
+(adj)|walking|close (similar term)
+walk-up|3
+(adj)|low-rise (similar term)
+(noun)|walk-up apartment|apartment (generic term)|flat (generic term)
+(noun)|apartment building (generic term)|apartment house (generic term)
+walk-up apartment|1
+(noun)|walk-up|apartment (generic term)|flat (generic term)
+walk about|1
+(verb)|perambulate|walk around|walk (generic term)
+walk around|4
+(verb)|perambulate|walk about|walk (generic term)
+(verb)|circumambulate|circle (generic term)
+(verb)|behave (generic term)|acquit (generic term)|bear (generic term)|deport (generic term)|conduct (generic term)|comport (generic term)|carry (generic term)
+(verb)|act (generic term)
+walk away|1
+(verb)|walk off|leave (generic term)|go forth (generic term)|go away (generic term)
+walk in|1
+(verb)|enter (generic term)|come in (generic term)|get into (generic term)|get in (generic term)|go into (generic term)|go in (generic term)|move into (generic term)
+walk of life|1
+(noun)|walk|career (generic term)|calling (generic term)|vocation (generic term)
+walk off|2
+(verb)|steal (generic term)
+(verb)|walk away|leave (generic term)|go forth (generic term)|go away (generic term)
+walk on air|1
+(verb)|exult|be on cloud nine|jump for joy|rejoice (generic term)|joy (generic term)
+walk out|3
+(verb)|strike|protest (generic term)|resist (generic term)|dissent (generic term)
+(verb)|leave (generic term)|go forth (generic term)|go away (generic term)
+(verb)|abandon (generic term)|forsake (generic term)|desolate (generic term)|desert (generic term)
+walk out of|1
+(verb)|depart (generic term)|take leave (generic term)|quit (generic term)
+walk over|1
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+walk through|1
+(verb)|rehearse (generic term)|practise (generic term)|practice (generic term)
+walkabout|3
+(noun)|tour (generic term)|circuit (generic term)
+(noun)|amble (generic term)|promenade (generic term)|saunter (generic term)|stroll (generic term)|perambulation (generic term)
+(noun)|walk (generic term)
+walkaway|1
+(noun)|runaway|blowout|romp|laugher|shoo-in|victory (generic term)|triumph (generic term)
+walker|6
+(noun)|Walker|John Walker|four-minute man (generic term)
+(noun)|Walker|Alice Walker|Alice Malsenior Walker|writer (generic term)|author (generic term)
+(noun)|pedestrian|footer|traveler (generic term)|traveller (generic term)
+(noun)|shoe (generic term)
+(noun)|Zimmer|Zimmer frame|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|baby-walker|go-cart|framework (generic term)|frame (generic term)|framing (generic term)
+walker foxhound|1
+(noun)|Walker hound|Walker foxhound|foxhound (generic term)
+walker hound|1
+(noun)|Walker hound|Walker foxhound|foxhound (generic term)
+walker percy|1
+(noun)|Percy|Walker Percy|writer (generic term)|author (generic term)
+walker smith|1
+(noun)|Robinson|Ray Robinson|Sugar Ray Robinson|Walker Smith|prizefighter (generic term)|gladiator (generic term)
+walkie-talkie|1
+(noun)|walky-talky|radio link (generic term)|link (generic term)
+walking|2
+(adj)|walk-to|close (similar term)
+(noun)|walk|locomotion (generic term)|travel (generic term)
+walking delegate|1
+(noun)|union representative (generic term)
+walking fern|1
+(noun)|walking leaf|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort (generic term)
+walking horse|1
+(noun)|Tennessee walker|Tennessee walking horse|Walking horse|Plantation walking horse|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+walking leaf|2
+(noun)|walking fern|Asplenium rhizophyllum|Camptosorus rhizophyllus|spleenwort (generic term)
+(noun)|leaf insect|phasmid (generic term)|phasmid insect (generic term)
+walking on air|1
+(noun)|bliss|blissfulness|cloud nine|seventh heaven|elation (generic term)
+walking papers|1
+(noun)|marching orders|dismissal (generic term)|dismission (generic term)|pink slip (generic term)
+walking shoe|1
+(noun)|shoe (generic term)
+walking stick|2
+(noun)|stick (generic term)
+(noun)|walkingstick|stick insect|phasmid (generic term)|phasmid insect (generic term)
+walkingstick|1
+(noun)|walking stick|stick insect|phasmid (generic term)|phasmid insect (generic term)
+walkman|1
+(noun)|Walkman|stereo (generic term)|stereophony (generic term)|stereo system (generic term)|stereophonic system (generic term)
+walkout|2
+(noun)|strike (generic term)|work stoppage (generic term)
+(noun)|protest (generic term)|objection (generic term)|dissent (generic term)
+walkover|2
+(noun)|acrobatic stunt (generic term)|acrobatic feat (generic term)
+(noun)|cinch|breeze|picnic|snap|duck soup|child's play|pushover|piece of cake|undertaking (generic term)|project (generic term)|task (generic term)|labor (generic term)
+walkway|1
+(noun)|walk|paseo|path (generic term)
+walky-talky|1
+(noun)|walkie-talkie|radio link (generic term)|link (generic term)
+wall|9
+(noun)|partition (generic term)|divider (generic term)
+(noun)|rampart|bulwark|embankment (generic term)
+(noun)|object (generic term)|physical object (generic term)
+(noun)|fence (generic term)|fencing (generic term)
+(noun)|paries|stratum (generic term)
+(noun)|geological formation (generic term)|formation (generic term)
+(noun)|layer (generic term)|bed (generic term)
+(noun)|difficulty (generic term)
+(verb)|palisade|fence|fence in|surround|protect (generic term)|wall in (related term)|wall up (related term)
+wall-paperer|1
+(noun)|wallpaperer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+wall barley|1
+(noun)|barley grass|Hordeum murinum|barley (generic term)
+wall clock|1
+(noun)|clock (generic term)
+wall creeper|1
+(noun)|tichodrome|Tichodroma muriaria|creeper (generic term)|tree creeper (generic term)
+wall fern|1
+(noun)|common polypody|adder's fern|golden maidenhair|golden polypody|sweet fern|Polypodium vulgare|polypody (generic term)
+wall germander|1
+(noun)|Teucrium chamaedrys|germander (generic term)
+wall hanging|1
+(noun)|hanging|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+wall in|1
+(verb)|wall up|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+wall of silence|1
+(noun)|blue wall of silence|blue wall|cover-up (generic term)
+wall painting|1
+(noun)|mural|painting (generic term)|picture (generic term)
+wall panel|1
+(noun)|paneling (generic term)|panelling (generic term)|pane (generic term)
+wall pellitory|1
+(noun)|pellitory-of-the-wall|pellitory|Parietaria difussa|herb (generic term)|herbaceous plant (generic term)
+wall pepper|1
+(noun)|Sedum acre|stonecrop (generic term)
+wall plate|1
+(noun)|plate (generic term)
+wall plug|1
+(noun)|wall socket|electric outlet|electrical outlet|outlet|electric receptacle|receptacle (generic term)
+wall rock|1
+(noun)|rock (generic term)|stone (generic term)
+wall rocket|1
+(noun)|Diplotaxis muralis|Diplotaxis tenuifolia|herb (generic term)|herbaceous plant (generic term)
+wall rue|1
+(noun)|wall rue spleenwort|Asplenium ruta-muraria|spleenwort (generic term)
+wall rue spleenwort|1
+(noun)|wall rue|Asplenium ruta-muraria|spleenwort (generic term)
+wall socket|1
+(noun)|wall plug|electric outlet|electrical outlet|outlet|electric receptacle|receptacle (generic term)
+wall st.|1
+(noun)|Wall Street|Wall St.|street (generic term)
+wall street|2
+(noun)|Wall Street|Wall St.|street (generic term)
+(noun)|Wall Street|the Street|market (generic term)|securities industry (generic term)
+wall tent|1
+(noun)|canvas tent (generic term)|canvas (generic term)|canvass (generic term)
+wall unit|1
+(noun)|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+wall up|1
+(verb)|wall in|enclose (generic term)|close in (generic term)|inclose (generic term)|shut in (generic term)
+walla walla|1
+(noun)|Walla Walla|town (generic term)
+wallaby|1
+(noun)|brush kangaroo|kangaroo (generic term)
+wallace|3
+(noun)|Wallace|Sir William Wallace|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+(noun)|Wallace|Edgar Wallace|Richard Horatio Edgar Wallace|writer (generic term)|author (generic term)
+(noun)|Wallace|Alfred Russel Wallace|naturalist (generic term)|natural scientist (generic term)
+wallace carothers|1
+(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist (generic term)
+wallace hume carothers|1
+(noun)|Carothers|Wallace Carothers|Wallace Hume Carothers|chemist (generic term)
+wallace stevens|1
+(noun)|Stevens|Wallace Stevens|poet (generic term)
+wallah|1
+(noun)|worker (generic term)
+wallboard|1
+(noun)|drywall|board (generic term)
+wallenstein|1
+(noun)|Wallenstein|Albrecht Eusebius Wenzel von Wallenstein|general (generic term)|full general (generic term)
+waller|1
+(noun)|Waller|Fats Waller|Thomas Wright Waller|jazz musician (generic term)|jazzman (generic term)
+wallet|1
+(noun)|billfold|notecase|pocketbook|case (generic term)
+walleye|2
+(noun)|divergent strabismus|exotropia|strabismus (generic term)|squint (generic term)
+(noun)|walleyed pike|jack salmon|dory|Stizostedion vitreum|pike-perch (generic term)|pike perch (generic term)
+walleyed|1
+(adj)|cross-eyed (antonym)
+walleyed pike|1
+(noun)|walleye|jack salmon|dory|Stizostedion vitreum|pike-perch (generic term)|pike perch (generic term)
+wallflower|3
+(noun)|flower (generic term)
+(noun)|Cheiranthus cheiri|Erysimum cheiri|flower (generic term)
+(noun)|shy person (generic term)|shrinking violet (generic term)
+wallis warfield simpson|1
+(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee (generic term)|grass widow (generic term)
+wallis warfield windsor|1
+(noun)|Simpson|Mrs. Simpson|Wallis Warfield Simpson|Wallis Warfield Windsor|Duchess of Windsor|divorcee (generic term)|grass widow (generic term)
+walloon|3
+(noun)|Walloon|Belgian (generic term)
+(noun)|Walloon|ethnic group (generic term)|ethnos (generic term)
+(noun)|Walloon|French (generic term)
+wallop|4
+(noun)|impact|consequence (generic term)|effect (generic term)|outcome (generic term)|result (generic term)|event (generic term)|issue (generic term)|upshot (generic term)
+(noun)|blow (generic term)
+(verb)|whack|wham|whop|hit (generic term)
+(verb)|get the better of (generic term)|overcome (generic term)|defeat (generic term)
+walloper|3
+(noun)|hitter (generic term)|striker (generic term)
+(noun)|winner (generic term)|victor (generic term)
+(noun)|whopper|lie (generic term)|prevarication (generic term)
+walloping|2
+(adj)|humongous|banging|thumping|whopping|large (similar term)|big (similar term)
+(noun)|thrashing|debacle|drubbing|slaughter|trouncing|whipping|defeat (generic term)|licking (generic term)
+wallow|7
+(noun)|mud puddle (generic term)
+(noun)|axial rotation (generic term)|axial motion (generic term)|roll (generic term)
+(verb)|indulge (generic term)
+(verb)|welter|move (generic term)
+(verb)|billow|soar (generic term)|soar up (generic term)|soar upwards (generic term)|surge (generic term)|zoom (generic term)
+(verb)|rejoice|triumph|exult (generic term)|walk on air (generic term)|be on cloud nine (generic term)|jump for joy (generic term)
+(verb)|delight (generic term)|enjoy (generic term)|revel (generic term)
+wallpaper|2
+(noun)|paper (generic term)
+(verb)|paper|cover (generic term)
+wallpaperer|1
+(noun)|wall-paperer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+wally|1
+(noun)|Wally|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+walnut|3
+(noun)|edible nut (generic term)
+(noun)|wood (generic term)
+(noun)|walnut tree|nut tree (generic term)
+walnut blight|1
+(noun)|blight (generic term)
+walnut family|1
+(noun)|Juglandaceae|family Juglandaceae|dicot family (generic term)|magnoliopsid family (generic term)
+walnut oil|1
+(noun)|vegetable oil (generic term)|oil (generic term)
+walnut tree|1
+(noun)|walnut|nut tree (generic term)
+walpole|2
+(noun)|Walpole|Horace Walpole|Horatio Walpole|Fourth Earl of Orford|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+(noun)|Walpole|Robert Walpole|Sir Robert Walpole|First Earl of Orford|statesman (generic term)|solon (generic term)|national leader (generic term)
+walpurgis night|1
+(noun)|Walpurgis Night|day (generic term)
+walrus|1
+(noun)|seahorse|sea horse|pinniped mammal (generic term)|pinniped (generic term)|pinnatiped (generic term)
+walrus moustache|1
+(noun)|walrus mustache|mustache (generic term)|moustache (generic term)
+walrus mustache|1
+(noun)|walrus moustache|mustache (generic term)|moustache (generic term)
+walt disney|1
+(noun)|Disney|Walt Disney|Walter Elias Disney|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+walt disney world|1
+(noun)|Walt Disney World|amusement park (generic term)|funfair (generic term)|pleasure ground (generic term)
+walt whitman|1
+(noun)|Whitman|Walt Whitman|poet (generic term)
+walt whitman bridge|1
+(noun)|Walt Whitman Bridge|suspension bridge (generic term)
+walter|1
+(noun)|Walter|Bruno Walter|conductor (generic term)|music director (generic term)|director (generic term)
+walter de la mare|1
+(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet (generic term)
+walter elias disney|1
+(noun)|Disney|Walt Disney|Walter Elias Disney|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+walter gropius|1
+(noun)|Gropius|Walter Gropius|architect (generic term)|designer (generic term)
+walter hess|1
+(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist (generic term)
+walter john de la mare|1
+(noun)|de la Mare|Walter de la Mare|Walter John de la Mare|poet (generic term)
+walter lippmann|1
+(noun)|Lippmann|Walter Lippmann|journalist (generic term)
+walter mitty|1
+(noun)|Walter Mitty|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+walter piston|1
+(noun)|Piston|Walter Piston|composer (generic term)
+walter ralegh|1
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+walter raleigh|1
+(noun)|Raleigh|Walter Raleigh|Sir Walter Raleigh|Ralegh|Walter Ralegh|Sir Walter Ralegh|courtier (generic term)|colonizer (generic term)|coloniser (generic term)
+walter reed|1
+(noun)|Reed|Walter Reed|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+walter rudolf hess|1
+(noun)|Hess|Walter Hess|Walter Rudolf Hess|physiologist (generic term)
+walter scott|1
+(noun)|Scott|Walter Scott|Sir Walter Scott|writer (generic term)|author (generic term)
+walter william skeat|1
+(noun)|Skeat|Walter William Skeat|philologist (generic term)|philologue (generic term)
+walther hermann nernst|1
+(noun)|Nernst|Walther Hermann Nernst|chemist (generic term)|physicist (generic term)
+walther richard rudolf hess|1
+(noun)|Hess|Rudolf Hess|Walther Richard Rudolf Hess|Nazi (generic term)|German Nazi (generic term)
+walton|3
+(noun)|Walton|William Walton|Sir William Walton|Sir William Turner Walton|composer (generic term)
+(noun)|Walton|Izaak Walton|writer (generic term)|author (generic term)
+(noun)|Walton|E. T. S. Walton|Ernest Walton|Ernest Thomas Sinton Walton|nuclear physicist (generic term)
+waltz|4
+(noun)|walk-in|victory (generic term)|triumph (generic term)
+(noun)|dance music (generic term)|danceroom music (generic term)|ballroom music (generic term)
+(noun)|valse|ballroom dancing (generic term)|ballroom dance (generic term)
+(verb)|waltz around|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+waltz around|1
+(verb)|waltz|dance (generic term)|trip the light fantastic (generic term)|trip the light fantastic toe (generic term)
+waltzer|1
+(noun)|dancer (generic term)|social dancer (generic term)
+wamble|1
+(verb)|waggle|move (generic term)
+wampanoag|1
+(noun)|Wampanoag|Algonquian (generic term)|Algonquin (generic term)
+wampee|1
+(noun)|pickerelweed|pickerel weed|Pontederia cordata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+wampum|2
+(noun)|boodle|bread|cabbage|clams|dinero|dough|gelt|kale|lettuce|lolly|lucre|loot|moolah|pelf|scratch|shekels|simoleons|sugar|money (generic term)
+(noun)|peag|wampumpeag|beads (generic term)|string of beads (generic term)
+wampumpeag|1
+(noun)|wampum|peag|beads (generic term)|string of beads (generic term)
+wan|5
+(adj)|pale|pallid|sick|weak (similar term)
+(adj)|pale|pallid|colorless (similar term)|colourless (similar term)
+(adj)|unanimated (similar term)
+(noun)|wide area network|WAN|computer network (generic term)
+(verb)|sicken (generic term)|come down (generic term)
+wanamaker|1
+(noun)|Wanamaker|John Wanamaker|businessman (generic term)|man of affairs (generic term)
+wand|4
+(noun)|rod (generic term)
+(noun)|branchlet (generic term)|twig (generic term)|sprig (generic term)
+(noun)|scepter|sceptre|verge|staff (generic term)
+(noun)|baton|rod (generic term)
+wanda landowska|1
+(noun)|Landowska|Wanda Landowska|harpsichordist (generic term)
+wandala|1
+(noun)|Mandara|Wandala|Biu-Mandara (generic term)
+wander|5
+(verb)|roll|swan|stray|tramp|roam|cast|ramble|rove|range|drift|vagabond|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|cheat on|cheat|cuckold|betray|deceive (generic term)|lead on (generic term)|delude (generic term)|cozen (generic term)
+(verb)|proceed (generic term)|go forward (generic term)|continue (generic term)
+(verb)|weave|wind|thread|meander|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|digress|stray|divagate|tell (generic term)
+wanderer|2
+(noun)|roamer|rover|bird of passage|traveler (generic term)|traveller (generic term)
+(noun)|spider|program (generic term)|programme (generic term)|computer program (generic term)|computer programme (generic term)
+wandering|4
+(adj)|mobile|nomadic|peregrine|roving|unsettled (similar term)
+(adj)|meandering|rambling|winding|indirect (similar term)
+(adj)|erratic|planetary|unsettled (similar term)
+(noun)|roving|vagabondage|travel (generic term)|traveling (generic term)|travelling (generic term)
+wandering albatross|1
+(noun)|Diomedea exulans|albatross (generic term)|mollymawk (generic term)
+wandering jew|1
+(noun)|Wandering Jew|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+wandering nerve|1
+(noun)|vagus|vagus nerve|nervus vagus|pneumogastric|pneumogastric nerve|tenth cranial nerve|cranial nerve (generic term)
+wanderlust|1
+(noun)|itchy feet|urge (generic term)|impulse (generic term)
+wandflower|2
+(noun)|Sparaxis tricolor|flower (generic term)
+(noun)|galax|galaxy|beetleweed|coltsfoot|Galax urceolata|herb (generic term)|herbaceous plant (generic term)
+wane|3
+(noun)|ebb|ebbing|decline (generic term)|diminution (generic term)
+(verb)|decline|go down|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|wax (antonym)
+wangle|3
+(noun)|wangling|contrivance (generic term)|stratagem (generic term)|dodge (generic term)
+(verb)|finagle|manage|achieve (generic term)|accomplish (generic term)|attain (generic term)|reach (generic term)
+(verb)|fudge|manipulate|fake|falsify|cook|misrepresent|cheat (generic term)|chisel (generic term)|cook up (related term)
+wangler|1
+(noun)|finagler|deceiver (generic term)|cheat (generic term)|cheater (generic term)|trickster (generic term)|beguiler (generic term)|slicker (generic term)
+wangling|1
+(noun)|wangle|contrivance (generic term)|stratagem (generic term)|dodge (generic term)
+waning|2
+(adj)|waxing (antonym)
+(noun)|decrease (generic term)|lessening (generic term)|drop-off (generic term)|waxing (antonym)
+wank|2
+(noun)|jacking off|jerking off|hand job|masturbation (generic term)|onanism (generic term)
+(verb)|masturbate|fuck off|she-bop|jack off|jerk off|stimulate (generic term)|excite (generic term)|stir (generic term)
+wankel engine|1
+(noun)|Wankel engine|Wankel rotary engine|epitrochoidal engine|rotary engine (generic term)
+wankel rotary engine|1
+(noun)|Wankel engine|Wankel rotary engine|epitrochoidal engine|rotary engine (generic term)
+wanker|1
+(noun)|tosser|jerk-off|masturbator (generic term)|onanist (generic term)
+wannabe|1
+(noun)|aspirant|aspirer|hopeful|wannabee|applicant (generic term)|applier (generic term)
+wannabee|1
+(noun)|aspirant|aspirer|hopeful|wannabe|applicant (generic term)|applier (generic term)
+wanness|1
+(noun)|lividness|lividity|luridness|paleness|pallidness|pallor|achromasia|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+want|9
+(noun)|privation|deprivation|neediness|poverty (generic term)|poorness (generic term)|impoverishment (generic term)
+(noun)|lack|deficiency|need (generic term)|demand (generic term)
+(noun)|need|necessity (generic term)|essential (generic term)|requirement (generic term)|requisite (generic term)|necessary (generic term)
+(noun)|wish|wishing|desire (generic term)
+(verb)|desire
+(verb)|need|require|be (generic term)
+(verb)|demand (generic term)
+(verb)|search (generic term)|seek (generic term)|look for (generic term)
+(verb)|miss (generic term)|lack (generic term)
+want ad|1
+(noun)|classified ad (generic term)|classified advertisement (generic term)|classified (generic term)
+wanted|2
+(adj)|craved (similar term)|desired (similar term)|hot (similar term)|longed-for (similar term)|wished-for (similar term)|yearned-for (similar term)|sought (similar term)|sought-after (similar term)|desirable (related term)|loved (related term)|welcome (related term)|unwanted (antonym)
+(adj)|cherished|precious|treasured|loved (similar term)
+wanted notice|1
+(noun)|wanted poster|announcement (generic term)|promulgation (generic term)
+wanted poster|1
+(noun)|wanted notice|announcement (generic term)|promulgation (generic term)
+wanter|1
+(noun)|needer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+wanting|2
+(adj)|lacking|missing|nonexistent|absent (similar term)
+(adj)|deficient|lacking|inadequate (similar term)
+wanton|9
+(adj)|motiveless|unprovoked|unmotivated (similar term)
+(adj)|easy|light|loose|promiscuous|sluttish|unchaste (similar term)
+(noun)|sensualist (generic term)
+(verb)|piddle|wanton away|piddle away|trifle|spend (generic term)|pass (generic term)
+(verb)|live (generic term)
+(verb)|wanton away|trifle away|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|luxuriate|consume (generic term)|squander (generic term)|waste (generic term)|ware (generic term)
+(verb)|chat up (generic term)|flirt (generic term)|dally (generic term)|butterfly (generic term)|coquet (generic term)|coquette (generic term)|romance (generic term)|philander (generic term)|mash (generic term)
+(verb)|act (generic term)|behave (generic term)|do (generic term)
+wanton away|2
+(verb)|piddle|wanton|piddle away|trifle|spend (generic term)|pass (generic term)
+(verb)|wanton|trifle away|spend (generic term)|expend (generic term)|drop (generic term)
+wantonly|1
+(adv)|licentiously|promiscuously
+wantonness|2
+(noun)|abandon|unconstraint|unrestraint (generic term)
+(noun)|licentiousness|immorality (generic term)
+wapiti|1
+(noun)|American elk|Cervus canadensis|deer (generic term)|cervid (generic term)
+war|5
+(noun)|warfare|military action (generic term)|action (generic term)
+(noun)|state of war|hostility (generic term)|enmity (generic term)|antagonism (generic term)|peace (antonym)
+(noun)|warfare|conflict (generic term)|struggle (generic term)|battle (generic term)
+(noun)|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)|make peace (antonym)
+war-ridden|1
+(adj)|belligerent|fighting|militant|warring|unpeaceful (similar term)
+war-torn|1
+(adj)|war-worn|destroyed (similar term)
+war-worn|1
+(adj)|war-torn|destroyed (similar term)
+war admiral|1
+(noun)|War Admiral|thoroughbred (generic term)
+war advocacy|1
+(noun)|warmongering|hawkishness (generic term)
+war baby|1
+(noun)|baby (generic term)|babe (generic term)|infant (generic term)
+war between the states|1
+(noun)|American Civil War|United States Civil War|War between the States|civil war (generic term)
+war bride|1
+(noun)|bride (generic term)
+war chest|1
+(noun)|fund (generic term)|monetary fund (generic term)
+war cloud|1
+(noun)|augury (generic term)|sign (generic term)|foretoken (generic term)|preindication (generic term)
+war correspondent|1
+(noun)|correspondent (generic term)|newspaperman (generic term)|newspaperwoman (generic term)|newswriter (generic term)|pressman (generic term)
+war crime|1
+(noun)|crime (generic term)|law-breaking (generic term)
+war criminal|1
+(noun)|wrongdoer (generic term)|offender (generic term)
+war cry|2
+(noun)|rallying cry|battle cry|cry|watchword|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+(noun)|war whoop|rallying cry|battle cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+war dance|1
+(noun)|ritual dancing (generic term)|ritual dance (generic term)|ceremonial dance (generic term)
+war department|1
+(noun)|War Department|executive department (generic term)
+war game|1
+(noun)|simulation (generic term)
+war god|1
+(noun)|god of war|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+war hawk|1
+(noun)|hawk|militarist (generic term)|warmonger (generic term)|dove (antonym)
+war machine|1
+(noun)|military|armed forces|armed services|military machine|force (generic term)|personnel (generic term)
+war of 1812|1
+(noun)|War of 1812|war (generic term)|warfare (generic term)
+war of american independence|1
+(noun)|American Revolution|American Revolutionary War|War of American Independence|American War of Independence|revolution (generic term)
+war of greek independence|1
+(noun)|War of Greek Independence|war (generic term)|warfare (generic term)
+war of nerves|1
+(noun)|psychological warfare|war (generic term)|warfare (generic term)
+war of the austrian succession|1
+(noun)|War of the Austrian Succession|war (generic term)|warfare (generic term)
+war of the grand alliance|1
+(noun)|War of the Grand Alliance|War of the League of Augsburg|war (generic term)|warfare (generic term)
+war of the league of augsburg|1
+(noun)|War of the Grand Alliance|War of the League of Augsburg|war (generic term)|warfare (generic term)
+war of the roses|1
+(noun)|War of the Roses|Wars of the Roses|war (generic term)|warfare (generic term)
+war of the spanish succession|1
+(noun)|War of the Spanish Succession|war (generic term)|warfare (generic term)
+war paint|3
+(noun)|adornment (generic term)
+(noun)|array (generic term)|raiment (generic term)|regalia (generic term)
+(noun)|makeup|make-up|cosmetic (generic term)
+war party|2
+(noun)|party (generic term)|company (generic term)
+(noun)|party (generic term)|political party (generic term)
+war power|1
+(noun)|office (generic term)|power (generic term)
+war room|1
+(noun)|room (generic term)
+war secretary|1
+(noun)|Secretary of War|War Secretary|secretaryship (generic term)
+war to end war|1
+(noun)|World War I|World War 1|Great War|First World War|War to End War|world war (generic term)
+war vessel|1
+(noun)|warship|combat ship|ship (generic term)|military vehicle (generic term)
+war whoop|1
+(noun)|war cry|rallying cry|battle cry|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+war widow|1
+(noun)|widow (generic term)|widow woman (generic term)
+war zone|1
+(noun)|combat zone (generic term)|combat area (generic term)
+waratah|2
+(noun)|Telopea speciosissima|shrub (generic term)|bush (generic term)
+(noun)|Telopea Oreades|shrub (generic term)|bush (generic term)
+warble|3
+(noun)|animal disease (generic term)
+(verb)|trill|quaver|sing (generic term)
+(verb)|yodel|descant|sing (generic term)
+warble fly|1
+(noun)|gadfly (generic term)
+warbler|2
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|oscine (generic term)|oscine bird (generic term)
+warburg|2
+(noun)|Warburg|Otto Heinrich Warburg|biochemist (generic term)
+(noun)|Warburg|Aby Warburg|Aby Moritz Warburg|art historian (generic term)
+ward|8
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|administrative district (generic term)|administrative division (generic term)|territorial division (generic term)
+(noun)|hospital ward|block (generic term)
+(noun)|Ward|Barbara Ward|Baroness Jackson of Lodsworth|economist (generic term)|economic expert (generic term)|environmentalist (generic term)|conservationist (generic term)
+(noun)|Ward|Mrs. Humphrey Ward|Mary Augusta Arnold Ward|writer (generic term)|author (generic term)
+(noun)|Ward|Montgomery Ward|Aaron Montgomery Ward|businessman (generic term)|man of affairs (generic term)
+(noun)|cellblock|block (generic term)
+(verb)|guard|protect (generic term)
+ward-heeler|1
+(noun)|machine politician|political hack|hack|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+ward off|2
+(verb)|debar|obviate|deflect|avert|head off|stave off|fend off|avoid|prevent (generic term)|forestall (generic term)|foreclose (generic term)|preclude (generic term)|forbid (generic term)
+(verb)|defend (generic term)
+warden|1
+(noun)|warder|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+wardenship|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+warder|1
+(noun)|warden|lawman (generic term)|law officer (generic term)|peace officer (generic term)
+wardership|1
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+wardress|1
+(noun)|warden (generic term)|warder (generic term)
+wardrobe|2
+(noun)|closet|press|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+wardroom|1
+(noun)|military quarters (generic term)
+ware|3
+(noun)|article (generic term)
+(noun)|merchandise|product|commodity (generic term)|trade good (generic term)|good (generic term)
+(verb)|consume|squander|waste|spend (generic term)|expend (generic term)|drop (generic term)
+warehouse|2
+(noun)|storage warehouse|storehouse (generic term)|depot (generic term)|entrepot (generic term)|storage (generic term)|store (generic term)
+(verb)|store (generic term)
+warehouseman|1
+(noun)|warehouser|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+warehouseman's lien|1
+(noun)|lien (generic term)
+warehouser|1
+(noun)|warehouseman|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+warehousing|1
+(noun)|repositing|reposition|storage|deposit (generic term)|deposition (generic term)
+warfare|2
+(noun)|war|military action (generic term)|action (generic term)
+(noun)|war|conflict (generic term)|struggle (generic term)|battle (generic term)
+warfarin|1
+(noun)|Coumadin|anticoagulant (generic term)|anticoagulant medication (generic term)|decoagulant (generic term)
+warhead|1
+(noun)|payload|load|explosive (generic term)
+warhol|1
+(noun)|Warhol|Andy Warhol|painter (generic term)
+warhorse|3
+(noun)|work of art (generic term)
+(noun)|veteran|old-timer|oldtimer|old hand|old stager|stager|expert (generic term)
+(noun)|saddle horse (generic term)|riding horse (generic term)|mount (generic term)
+warily|1
+(adv)|unwarily (antonym)
+wariness|1
+(noun)|chariness|circumspection (generic term)|caution (generic term)|unwariness (antonym)
+warji|1
+(noun)|Warji|West Chadic (generic term)
+warlike|2
+(adj)|militant|hawkish|unpeaceful (similar term)
+(adj)|martial|military (similar term)
+warlock|1
+(noun)|witch (generic term)
+warlord|1
+(noun)|military leader (generic term)
+warlpiri|1
+(noun)|Walbiri|Warlpiri|Australian (generic term)|Aboriginal Australian (generic term)
+warm|13
+(adj)|lukewarm (similar term)|tepid (similar term)|warmed (similar term)|warming (similar term)|hot (related term)|cool (antonym)
+(adj)|cordial (similar term)|hearty (similar term)|emotional (related term)|friendly (related term)|cool (antonym)
+(adj)|hot (similar term)|cool (antonym)
+(adj)|affectionate|caring|fond|lovesome|tender|loving (similar term)
+(adj)|strong|fresh (similar term)
+(adj)|quick|excitable (similar term)
+(adj)|ardent|enthusiastic (similar term)
+(adj)|lively (similar term)
+(adj)|uncomfortable (similar term)
+(adj)|near (similar term)|close (similar term)|nigh (similar term)
+(verb)|warm up|change (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(adv)|warmly
+warm-blooded|1
+(adj)|homoiothermic (similar term)|homeothermic (similar term)|homothermic (similar term)|cold-blooded (antonym)
+warm-toned|1
+(adj)|emotional (similar term)
+warm-up|1
+(noun)|tune-up|prolusion|preparation (generic term)|readying (generic term)
+warm front|1
+(noun)|front (generic term)
+warm the bench|1
+(verb)|ride the bench|idle (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+warm to|1
+(verb)|consider (generic term)|take (generic term)|deal (generic term)|look at (generic term)
+warm up|5
+(verb)|operate (generic term)|run (generic term)
+(verb)|change (generic term)
+(verb)|warm|change (generic term)
+(verb)|exercise (generic term)|work (generic term)|work out (generic term)|work (generic term)|put to work (generic term)
+(verb)|limber up|loosen up|exercise (generic term)|work out (generic term)
+warmed|1
+(adj)|warm (similar term)
+warmer|1
+(noun)|heater|device (generic term)
+warmhearted|1
+(adj)|loving (related term)|coldhearted (antonym)
+warmheartedness|2
+(noun)|warmth|lovingness (generic term)|caring (generic term)
+(noun)|affection|affectionateness|fondness|tenderness|heart|warmness|philia|feeling (generic term)
+warming|4
+(adj)|warm (similar term)
+(adj)|calefacient|hot (similar term)
+(noun)|heating|temperature change (generic term)
+(noun)|thaw|thawing|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+warming pan|1
+(noun)|pan (generic term)
+warmly|2
+(adv)|heartily|cordially
+(adv)|warm
+warmness|2
+(noun)|affection|affectionateness|fondness|tenderness|heart|warmheartedness|philia|feeling (generic term)
+(noun)|warmth|hotness (generic term)|heat (generic term)|high temperature (generic term)
+warmonger|1
+(noun)|militarist|adult (generic term)|grownup (generic term)
+warmongering|1
+(noun)|war advocacy|hawkishness (generic term)
+warmth|5
+(noun)|heat|temperature (generic term)
+(noun)|warmheartedness|lovingness (generic term)|caring (generic term)
+(noun)|warmness|hotness (generic term)|heat (generic term)|high temperature (generic term)
+(noun)|heat|passion|emotionality (generic term)|emotionalism (generic term)
+(noun)|affectionateness|fondness|lovingness|emotionality (generic term)|emotionalism (generic term)
+warn|3
+(verb)|discourage|admonish|monish|rede (generic term)|advise (generic term)|counsel (generic term)
+(verb)|order (generic term)|tell (generic term)|enjoin (generic term)|say (generic term)
+(verb)|inform (generic term)
+warner|2
+(noun)|Warner|Charles Dudley Warner|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+(noun)|communicator (generic term)
+warning|3
+(adj)|admonitory|cautionary|exemplary|monitory|dissuasive (similar term)
+(noun)|informing (generic term)|making known (generic term)
+(noun)|admonition|monition|word of advice|advice (generic term)
+warning bell|1
+(noun)|tocsin|bell (generic term)
+warning coloration|1
+(noun)|aposematic coloration|protective coloration (generic term)
+warning device|1
+(noun)|alarm|alarm system|device (generic term)
+warning light|1
+(noun)|red light|visual signal (generic term)
+warning of attack|1
+(noun)|tactical warning (generic term)
+warning of war|1
+(noun)|strategic warning (generic term)
+warning signal|1
+(noun)|alarm|alert|alarum|signal (generic term)|signaling (generic term)|sign (generic term)
+warp|6
+(noun)|deflection|aberrance (generic term)|aberrancy (generic term)|aberration (generic term)|deviance (generic term)
+(noun)|buckle|distorted shape (generic term)|distortion (generic term)
+(noun)|warping|distortion (generic term)|deformation (generic term)
+(noun)|thread (generic term)|yarn (generic term)
+(verb)|falsify|distort|garble|misrepresent (generic term)|belie (generic term)
+(verb)|heave|buckle|change surface (generic term)
+warpath|2
+(noun)|belligerence (generic term)|belligerency (generic term)
+(noun)|way (generic term)|path (generic term)|way of life (generic term)
+warped|1
+(adj)|crooked (similar term)
+warping|1
+(noun)|warp|distortion (generic term)|deformation (generic term)
+warplane|1
+(noun)|military plane|heavier-than-air craft (generic term)|military vehicle (generic term)
+warragal|2
+(noun)|warrigal|wild horse (generic term)
+(noun)|dingo|warrigal|Canis dingo|wild dog (generic term)
+warrant|6
+(noun)|writ (generic term)|judicial writ (generic term)
+(noun)|stock warrant|stock-purchase warrant|security (generic term)|surety (generic term)
+(noun)|sanction|countenance|endorsement|indorsement|imprimatur|approval (generic term)|commendation (generic term)
+(noun)|guarantee|warrantee|warranty|assurance (generic term)|pledge (generic term)
+(verb)|justify|confirm (generic term)|reassert (generic term)
+(verb)|guarantee|back (generic term)|endorse (generic term)|indorse (generic term)|plump for (generic term)|plunk for (generic term)|support (generic term)
+warrant officer|1
+(noun)|military officer (generic term)|officer (generic term)
+warranted|1
+(adj)|bonded|guaranteed|secured|secure (similar term)
+warrantee|3
+(noun)|recipient (generic term)|receiver (generic term)
+(noun)|customer (generic term)|client (generic term)
+(noun)|guarantee|warrant|warranty|assurance (generic term)|pledge (generic term)
+warranter|1
+(noun)|guarantor|surety|warrantor|patron (generic term)|sponsor (generic term)|supporter (generic term)
+warrantor|1
+(noun)|guarantor|surety|warranter|patron (generic term)|sponsor (generic term)|supporter (generic term)
+warranty|1
+(noun)|guarantee|warrant|warrantee|assurance (generic term)|pledge (generic term)
+warren|5
+(noun)|Warren|Robert Penn Warren|writer (generic term)|author (generic term)|poet (generic term)
+(noun)|Warren|Earl Warren|chief justice (generic term)
+(noun)|rabbit warren|burrow (generic term)|tunnel (generic term)
+(noun)|rabbit warren|residential district (generic term)|residential area (generic term)|community (generic term)
+(noun)|animal group (generic term)
+warren burger|1
+(noun)|Burger|Warren Burger|Warren E. Burger|Warren Earl Burger|chief justice (generic term)
+warren e. burger|1
+(noun)|Burger|Warren Burger|Warren E. Burger|Warren Earl Burger|chief justice (generic term)
+warren earl burger|1
+(noun)|Burger|Warren Burger|Warren E. Burger|Warren Earl Burger|chief justice (generic term)
+warren gamaliel harding|1
+(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+warren harding|1
+(noun)|Harding|Warren Harding|Warren Gamaliel Harding|President Harding|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+warrener|1
+(noun)|gamekeeper (generic term)|game warden (generic term)
+warrigal|2
+(noun)|warragal|wild horse (generic term)
+(noun)|dingo|warragal|Canis dingo|wild dog (generic term)
+warring|1
+(adj)|belligerent|fighting|militant|war-ridden|unpeaceful (similar term)
+warrior|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+warriorlike|1
+(adj)|soldierly|soldierlike|martial|military (similar term)
+wars of the roses|1
+(noun)|War of the Roses|Wars of the Roses|war (generic term)|warfare (generic term)
+warsaw|1
+(noun)|Warszawa|Warsaw|capital of Poland|national capital (generic term)
+warship|1
+(noun)|war vessel|combat ship|ship (generic term)|military vehicle (generic term)
+warszawa|1
+(noun)|Warszawa|Warsaw|capital of Poland|national capital (generic term)
+wart|2
+(noun)|bulge (generic term)|bump (generic term)|hump (generic term)|gibbosity (generic term)|gibbousness (generic term)|jut (generic term)|prominence (generic term)|protuberance (generic term)|protrusion (generic term)|extrusion (generic term)|excrescence (generic term)
+(noun)|verruca|blemish (generic term)|defect (generic term)|mar (generic term)|keratosis (generic term)
+warthog|1
+(noun)|swine (generic term)
+wartime|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+wartlike|1
+(adj)|verrucose|warty|rough (similar term)|unsmooth (similar term)
+wartweed|1
+(noun)|sun spurge|wartwort|devil's milk|Euphorbia helioscopia|spurge (generic term)
+wartwort|1
+(noun)|sun spurge|wartweed|devil's milk|Euphorbia helioscopia|spurge (generic term)
+warty|1
+(adj)|verrucose|wartlike|rough (similar term)|unsmooth (similar term)
+warwick|1
+(noun)|Warwick|Earl of Warwick|Richard Neville|Kingmaker|statesman (generic term)|solon (generic term)|national leader (generic term)
+wary|2
+(adj)|on guard (similar term)|on one's guard (similar term)|upon one's guard (similar term)|on your guard (similar term)|shy (similar term)|unwary (antonym)
+(adj)|leery|mistrustful|suspicious|untrusting|distrustful (similar term)
+wasabi|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|condiment (generic term)
+wash|21
+(noun)|water-base paint (generic term)
+(noun)|washing|lavation|work (generic term)
+(noun)|dry wash|streambed (generic term)|creek bed (generic term)
+(noun)|washout|soil erosion (generic term)
+(noun)|slipstream|airstream|race|backwash|flow (generic term)
+(noun)|wash drawing|watercolor (generic term)|water-color (generic term)|watercolour (generic term)|water-colour (generic term)
+(noun)|laundry|washing|washables|garment (generic term)|white goods (generic term)|household linen (generic term)
+(noun)|business activity (generic term)|commercial activity (generic term)
+(verb)|rinse|serve (generic term)|process (generic term)|swear out (generic term)
+(verb)|lave|cleanse (generic term)|clean (generic term)|wash up (related term)
+(verb)|launder|clean (generic term)|make clean (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|be (generic term)
+(verb)|stand (generic term)
+(verb)|separate (generic term)
+(verb)|cover (generic term)
+(verb)|wash out|wash off|wash away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|erode (generic term)|eat away (generic term)|fret (generic term)
+(verb)|moisten|dampen|wet (generic term)
+(verb)|lave|lap|flow (generic term)
+(verb)|cleanse (generic term)|clean (generic term)
+wash-and-wear|2
+(adj)|drip-dry|washable (similar term)
+(noun)|wash-and-wear fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+wash-and-wear fabric|1
+(noun)|wash-and-wear|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+wash-hand basin|1
+(noun)|washbasin|handbasin|washbowl|lavabo|basin (generic term)
+wash-hand stand|1
+(noun)|washstand|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+wash away|2
+(verb)|remove (generic term)|take away (generic term)
+(verb)|wash|wash out|wash off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+wash down|2
+(verb)|eat (generic term)
+(verb)|flush down|flush (generic term)
+wash drawing|1
+(noun)|wash|watercolor (generic term)|water-color (generic term)|watercolour (generic term)|water-colour (generic term)
+wash leather|1
+(noun)|chamois (generic term)|chamois leather (generic term)|chammy (generic term)|chammy leather (generic term)|shammy (generic term)|shammy leather (generic term)
+wash off|1
+(verb)|wash|wash out|wash away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+wash one's hands|1
+(verb)|absolve (generic term)|justify (generic term)|free (generic term)
+wash out|6
+(verb)|rain out|prevent (generic term)|keep (generic term)
+(verb)|wash (generic term)|launder (generic term)
+(verb)|destroy (generic term)|ruin (generic term)
+(verb)|wash|wash off|wash away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|weaken (generic term)
+(verb)|discolor (generic term)
+wash room|1
+(noun)|public toilet|comfort station|public convenience|convenience|public lavatory|restroom|toilet facility|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)|facility (generic term)
+wash up|5
+(verb)|lave|freshen (generic term)|refresh (generic term)|refreshen (generic term)|freshen up (generic term)
+(verb)|conduct (generic term)|transmit (generic term)|convey (generic term)|carry (generic term)|channel (generic term)
+(verb)|do the dishes|clean (generic term)|make clean (generic term)
+(verb)|appear (generic term)
+(verb)|exhaust|beat|tucker|tucker out|tire (generic term)|wear upon (generic term)|tire out (generic term)|wear (generic term)|weary (generic term)|jade (generic term)|wear out (generic term)|outwear (generic term)|wear down (generic term)|fag out (generic term)|fag (generic term)|fatigue (generic term)
+washable|1
+(adj)|wash-and-wear (similar term)|drip-dry (similar term)|nonwashable (antonym)
+washables|1
+(noun)|laundry|wash|washing|garment (generic term)|white goods (generic term)|household linen (generic term)
+washbasin|2
+(noun)|basin|washbowl|washstand|lavatory|sink (generic term)
+(noun)|handbasin|washbowl|lavabo|wash-hand basin|basin (generic term)
+washboard|2
+(noun)|device (generic term)
+(noun)|splashboard|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+washbowl|2
+(noun)|washbasin|basin|washstand|lavatory|sink (generic term)
+(noun)|washbasin|handbasin|lavabo|wash-hand basin|basin (generic term)
+washcloth|1
+(noun)|washrag|flannel|face cloth|bath linen (generic term)
+washday|1
+(noun)|washing day|day (generic term)
+washed|2
+(adj)|water-washed|clean (similar term)
+(adj)|wet (similar term)
+washed-out|2
+(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|worn-out|worn out|tired (similar term)
+(adj)|bleached|faded|washy|colorless (similar term)|colourless (similar term)
+washed-up|1
+(adj)|done for|ruined|sunk|undone|unsuccessful (similar term)
+washer|3
+(noun)|worker (generic term)
+(noun)|seal (generic term)
+(noun)|automatic washer|washing machine|white goods (generic term)
+washerman|1
+(noun)|laundryman|washer (generic term)
+washerwoman|1
+(noun)|washwoman|laundrywoman|laundress|washer (generic term)
+washhouse|1
+(noun)|laundry (generic term)
+washing|2
+(noun)|wash|lavation|work (generic term)
+(noun)|laundry|wash|washables|garment (generic term)|white goods (generic term)|household linen (generic term)
+washing-up|1
+(noun)|wash (generic term)|washing (generic term)|lavation (generic term)
+washing day|1
+(noun)|washday|day (generic term)
+washing machine|1
+(noun)|washer|automatic washer|white goods (generic term)
+washing powder|1
+(noun)|soap powder|built-soap powder|soap (generic term)
+washing soda|1
+(noun)|sodium carbonate|sal soda|soda ash|soda|salt (generic term)
+washington|5
+(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital (generic term)
+(noun)|Washington|Evergreen State|WA|American state (generic term)
+(noun)|Capital|Washington|federal government (generic term)
+(noun)|Washington|George Washington|President Washington|general (generic term)|full general (generic term)|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Washington|Booker T. Washington|Booker Taliaferro Washington|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+washington's birthday|1
+(noun)|Washington's Birthday|February 22|day (generic term)
+washington d.c.|1
+(noun)|Washington|Washington D.C.|American capital|capital of the United States|national capital (generic term)
+washington irving|1
+(noun)|Irving|Washington Irving|writer (generic term)|author (generic term)
+washington monument|1
+(noun)|Washington Monument|memorial (generic term)|monument (generic term)|obelisk (generic term)
+washingtonian|5
+(adj)|Washingtonian|general|full general|President of the United States|United States President|President|Chief Executive (related term)
+(adj)|Washingtonian|federal government (related term)
+(adj)|Washingtonian|national capital (related term)
+(adj)|Washingtonian|American state (related term)
+(noun)|Washingtonian|American (generic term)
+washout|3
+(noun)|groove (generic term)|channel (generic term)
+(noun)|wash|soil erosion (generic term)
+(noun)|flop|dud|failure (generic term)|loser (generic term)|nonstarter (generic term)|unsuccessful person (generic term)
+washrag|1
+(noun)|washcloth|flannel|face cloth|bath linen (generic term)
+washroom|1
+(noun)|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+washstand|2
+(noun)|wash-hand stand|furniture (generic term)|piece of furniture (generic term)|article of furniture (generic term)
+(noun)|washbasin|basin|washbowl|lavatory|sink (generic term)
+washtub|1
+(noun)|tub (generic term)|vat (generic term)
+washup|2
+(noun)|bathing|wash (generic term)|washing (generic term)|lavation (generic term)|cleaning (generic term)|cleansing (generic term)|cleanup (generic term)
+(noun)|dishwashing|wash (generic term)|washing (generic term)|lavation (generic term)
+washwoman|1
+(noun)|washerwoman|laundrywoman|laundress|washer (generic term)
+washy|2
+(adj)|watery|weak|diluted (similar term)|dilute (similar term)
+(adj)|bleached|faded|washed-out|colorless (similar term)|colourless (similar term)
+waslaw nijinsky|1
+(noun)|Nijinsky|Vaslav Nijinsky|Waslaw Nijinsky|dancer (generic term)|professional dancer (generic term)|terpsichorean (generic term)
+wasp|2
+(noun)|WASP|white Anglo-Saxon Protestant|White (generic term)|white person (generic term)|Caucasian (generic term)|Protestant (generic term)
+(noun)|hymenopterous insect (generic term)|hymenopteran (generic term)|hymenopteron (generic term)|hymenopter (generic term)
+wasp's nest|1
+(noun)|wasps' nest|hornet's nest|hornets' nest|nidus (generic term)
+wasp-waisted|1
+(adj)|slender-waisted|slim-waisted|thin (similar term)|lean (similar term)
+wasp waist|1
+(noun)|waist (generic term)|waistline (generic term)
+waspish|1
+(adj)|bristly|prickly|splenetic|ill-natured (similar term)
+wasps' nest|1
+(noun)|wasp's nest|hornet's nest|hornets' nest|nidus (generic term)
+wassail|3
+(noun)|punch (generic term)
+(verb)|revel|racket|make whoopie|make merry|make happy|whoop it up|jollify|celebrate (generic term)|fete (generic term)
+(verb)|toast|drink|pledge|salute|honor (generic term)|honour (generic term)|reward (generic term)
+wassailer|2
+(noun)|carouser|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+(noun)|toaster|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+wasserman reaction|1
+(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test (generic term)
+wassermann|2
+(noun)|Wassermann|Agust von Wassermann|bacteriologist (generic term)
+(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test (generic term)
+wassermann test|1
+(noun)|Wassermann test|Wasserman reaction|Wassermann|complement fixation test (generic term)
+wassily kandinski|1
+(noun)|Kandinsky|Wassily Kandinsky|Kandinski|Wassily Kandinski|painter (generic term)
+wassily kandinsky|1
+(noun)|Kandinsky|Wassily Kandinsky|Kandinski|Wassily Kandinski|painter (generic term)
+wassily leontief|1
+(noun)|Leontief|Wassily Leontief|economist (generic term)|economic expert (generic term)
+wastage|2
+(noun)|decrease (generic term)|decrement (generic term)
+(noun)|loss (generic term)
+waste|16
+(adj)|desert|godforsaken|wild|inhospitable (similar term)
+(noun)|waste material|waste matter|waste product|material (generic term)|stuff (generic term)
+(noun)|wastefulness|dissipation|activity (generic term)
+(noun)|thriftlessness|wastefulness|improvidence (generic term)|shortsightedness (generic term)
+(noun)|barren|wasteland|wilderness (generic term)|wild (generic term)
+(noun)|permissive waste|act (generic term)|human action (generic term)|human activity (generic term)
+(verb)|blow|squander|use (generic term)|expend (generic term)|conserve (antonym)
+(verb)|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|discard (generic term)|fling (generic term)|toss (generic term)|toss out (generic term)|toss away (generic term)|chuck out (generic term)|cast aside (generic term)|dispose (generic term)|throw out (generic term)|cast out (generic term)|throw away (generic term)|cast away (generic term)|put away (generic term)
+(verb)|run off|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|neutralize|neutralise|liquidate|knock off|do in|kill (generic term)
+(verb)|consume|squander|ware|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|pine away|languish|weaken (generic term)
+(verb)|emaciate|macerate|enfeeble (generic term)|debilitate (generic term)|drain (generic term)
+(verb)|lay waste to|devastate|desolate|ravage|scourge|destroy (generic term)|ruin (generic term)
+(verb)|rot|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+waste-paper basket|1
+(noun)|wastepaper basket|wastebasket|waste basket|circular file|container (generic term)
+waste-yard|1
+(noun)|dump|garbage dump|trash dump|rubbish dump|wasteyard|dumpsite|site (generic term)|land site (generic term)
+waste basket|1
+(noun)|wastepaper basket|waste-paper basket|wastebasket|circular file|container (generic term)
+waste material|1
+(noun)|waste|waste matter|waste product|material (generic term)|stuff (generic term)
+waste matter|1
+(noun)|waste|waste material|waste product|material (generic term)|stuff (generic term)
+waste of effort|1
+(noun)|waste of energy|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+waste of energy|1
+(noun)|waste of effort|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+waste of material|1
+(noun)|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+waste of money|1
+(noun)|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+waste of time|1
+(noun)|waste (generic term)|wastefulness (generic term)|dissipation (generic term)
+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 (generic term)|laze (generic term)|slug (generic term)|stagnate (generic term)
+waste paper|1
+(noun)|paper (generic term)
+waste pipe|1
+(noun)|drain|drainpipe|pipe (generic term)|pipage (generic term)|piping (generic term)
+waste product|1
+(noun)|waste|waste material|waste matter|material (generic term)|stuff (generic term)
+wastebasket|1
+(noun)|wastepaper basket|waste-paper basket|waste basket|circular file|container (generic term)
+wastebin|1
+(noun)|ashcan|trash can|garbage can|ash bin|ash-bin|ashbin|dustbin|trash barrel|trash bin|bin (generic term)
+wasted|4
+(adj)|otiose|pointless|superfluous|worthless (similar term)
+(adj)|squandered|lost (similar term)
+(adj)|atrophied|diminished|hypertrophied (antonym)
+(adj)|bony|cadaverous|emaciated|gaunt|haggard|pinched|skeletal|thin (similar term)|lean (similar term)
+wasteful|3
+(adj)|uneconomical|inefficient (similar term)
+(adj)|extravagant (similar term)|prodigal (similar term)|profligate (similar term)|spendthrift (similar term)|pound-foolish (similar term)|uneconomical (similar term)|uneconomic (similar term)|improvident (related term)|thrifty (antonym)
+(adj)|destructive (similar term)
+wastefully|1
+(adv)|prodigally
+wastefulness|2
+(noun)|thriftlessness|waste|improvidence (generic term)|shortsightedness (generic term)
+(noun)|waste|dissipation|activity (generic term)
+wasteland|1
+(noun)|barren|waste|wilderness (generic term)|wild (generic term)
+wastepaper basket|1
+(noun)|waste-paper basket|wastebasket|waste basket|circular file|container (generic term)
+waster|2
+(noun)|wastrel|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+(noun)|destroyer|ruiner|undoer|uprooter|bad person (generic term)
+wastewater|1
+(noun)|effluent|sewer water|waste (generic term)|waste material (generic term)|waste matter (generic term)|waste product (generic term)
+wasteweir|1
+(noun)|spillway|spill|conduit (generic term)
+wasteyard|1
+(noun)|dump|garbage dump|trash dump|rubbish dump|waste-yard|dumpsite|site (generic term)|land site (generic term)
+wasting|2
+(noun)|cachexia|cachexy|infirmity (generic term)|frailty (generic term)|debility (generic term)|feebleness (generic term)|frailness (generic term)|valetudinarianism (generic term)
+(noun)|atrophy|wasting away|symptom (generic term)
+wasting away|1
+(noun)|atrophy|wasting|symptom (generic term)
+wasting disease|1
+(noun)|pulmonary tuberculosis|consumption|phthisis|white plague|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+wastrel|1
+(noun)|waster|prodigal (generic term)|profligate (generic term)|squanderer (generic term)
+watch|11
+(noun)|ticker|timepiece (generic term)|timekeeper (generic term)|horologe (generic term)
+(noun)|shift (generic term)|work shift (generic term)|duty period (generic term)
+(noun)|vigil|surveillance (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|lookout|lookout man|sentinel|sentry|spotter|scout|picket|watchman (generic term)|watcher (generic term)|security guard (generic term)
+(noun)|vigil|rite (generic term)|religious rite (generic term)
+(verb)|observe|follow|watch over|keep an eye on|check (generic term)|check up on (generic term)|look into (generic term)|check out (generic term)|suss out (generic term)|check over (generic term)|go over (generic term)|check into (generic term)
+(verb)|view|see|catch|take in|watch (generic term)
+(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 (generic term)
+watch cap|1
+(noun)|cap (generic term)
+watch case|1
+(noun)|case (generic term)
+watch chain|1
+(noun)|fob|watch guard|chain (generic term)
+watch crystal|1
+(noun)|crystal|watch glass|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+watch fire|1
+(noun)|visual signal (generic term)
+watch glass|2
+(noun)|dish (generic term)
+(noun)|crystal|watch crystal|protective covering (generic term)|protective cover (generic term)|protection (generic term)
+watch guard|1
+(noun)|fob|watch chain|chain (generic term)
+watch key|1
+(noun)|winder (generic term)|key (generic term)
+watch night|1
+(noun)|service (generic term)|religious service (generic term)|divine service (generic term)
+watch out|1
+(verb)|watch|look out
+watch over|1
+(verb)|watch|observe|follow|keep an eye on|check (generic term)|check up on (generic term)|look into (generic term)|check out (generic term)|suss out (generic term)|check over (generic term)|go over (generic term)|check into (generic term)
+watch pocket|1
+(noun)|fob|vest pocket (generic term)
+watchband|1
+(noun)|watchstrap|wristband|watch bracelet|bracelet|band (generic term)
+watchdog|2
+(noun)|defender (generic term)|guardian (generic term)|protector (generic term)|shielder (generic term)
+(noun)|guard dog|working dog (generic term)
+watcher|3
+(noun)|spectator|witness|viewer|looker|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|watchman|security guard|guard (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+watchful|2
+(adj)|argus-eyed|open-eyed|vigilant|wakeful|alert (similar term)
+(adj)|insomniac|sleepless|awake (similar term)
+watchfully|1
+(adv)|vigilantly
+watchfulness|2
+(noun)|wakefulness|vigilance|alertness|attention (generic term)
+(noun)|vigilance|weather eye|attentiveness (generic term)
+watching|1
+(noun)|observation|observance|look (generic term)|looking (generic term)|looking at (generic term)
+watchmaker|1
+(noun)|horologist|horologer|maker (generic term)|shaper (generic term)
+watchman|1
+(noun)|watcher|security guard|guard (generic term)
+watchstrap|1
+(noun)|watchband|wristband|watch bracelet|bracelet|band (generic term)
+watchtower|1
+(noun)|tower (generic term)
+watchword|2
+(noun)|war cry|rallying cry|battle cry|cry|motto (generic term)|slogan (generic term)|catchword (generic term)|shibboleth (generic term)
+(noun)|password|word|parole|countersign|positive identification (generic term)|secret (generic term)|arcanum (generic term)
+water|10
+(noun)|H2O|binary compound (generic term)|liquid (generic term)
+(noun)|body of water|thing (generic term)
+(noun)|water system|water supply|facility (generic term)|installation (generic term)
+(noun)|element (generic term)
+(noun)|urine|piss|pee|piddle|weewee|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|food (generic term)|nutrient (generic term)
+(verb)|irrigate|wet (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|secrete (generic term)|release (generic term)
+(verb)|fill (generic term)|fill up (generic term)
+water-base paint|1
+(noun)|paint (generic term)
+water-color|4
+(noun)|watercolor|watercolour|water-colour|pigment (generic term)
+(noun)|watercolor|watercolour|water-colour|water-base paint (generic term)
+(noun)|watercolor|watercolour|water-colour|painting (generic term)|picture (generic term)
+(noun)|watercolor|watercolour|water-colour|painting (generic term)
+water-colour|4
+(noun)|watercolor|water-color|watercolour|pigment (generic term)
+(noun)|watercolor|water-color|watercolour|water-base paint (generic term)
+(noun)|watercolor|water-color|watercolour|painting (generic term)|picture (generic term)
+(noun)|watercolor|water-color|watercolour|painting (generic term)
+water-cooled|1
+(adj)|cool (similar term)
+water-cooled reactor|1
+(noun)|nuclear reactor (generic term)|reactor (generic term)
+water-insoluble|1
+(adj)|non-water-soluble|insoluble (similar term)|indissoluble (similar term)
+water-lily family|1
+(noun)|Nymphaeaceae|family Nymphaeaceae|magnoliid dicot family (generic term)
+water-loving|1
+(adj)|healthy (similar term)
+water-milfoil family|1
+(noun)|Haloragidaceae|family Haloragidaceae|Haloragaceae|family Haloragaceae|dicot family (generic term)|magnoliopsid family (generic term)
+water-mint|1
+(noun)|water mint|Mentha aquatica|mint (generic term)
+water-plantain family|1
+(noun)|Alismataceae|family Alismataceae|monocot family (generic term)|liliopsid family (generic term)
+water-rate|1
+(noun)|charge (generic term)
+water-repellent|1
+(adj)|water-resistant|impermeable (similar term)
+water-resistant|1
+(adj)|water-repellent|impermeable (similar term)
+water-shield|2
+(noun)|Brasenia schreberi|water-target|water lily (generic term)
+(noun)|fanwort|Cabomba caroliniana|water lily (generic term)
+water-shield family|1
+(noun)|Cabombaceae|subfamily Cabombaceae|magnoliid dicot family (generic term)
+water-skiing|1
+(noun)|water sport (generic term)|aquatics (generic term)
+water-soluble|1
+(adj)|soluble (similar term)
+water-soluble vitamin|1
+(noun)|vitamin (generic term)
+water-target|1
+(noun)|water-shield|Brasenia schreberi|water lily (generic term)
+water-wash|1
+(verb)|wash (generic term)|launder (generic term)
+water-washed|2
+(adj)|inhospitable (similar term)
+(adj)|washed|clean (similar term)
+water arum|1
+(noun)|wild calla|Calla palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+water avens|1
+(noun)|Indian chocolate|purple avens|chocolate root|Geum rivale|avens (generic term)
+water back|1
+(noun)|water heater (generic term)|hot-water heater (generic term)|hot-water tank (generic term)
+water bearer|2
+(noun)|Aquarius|Water Bearer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Aquarius|Aquarius the Water Bearer|Water Bearer|sign of the zodiac (generic term)|star sign (generic term)|sign (generic term)|mansion (generic term)|house (generic term)|planetary house (generic term)
+water bed|1
+(noun)|bed (generic term)
+water beetle|1
+(noun)|beetle (generic term)
+water birch|1
+(noun)|swamp birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+water bird|1
+(noun)|waterfowl|waterbird|aquatic bird (generic term)
+water biscuit|1
+(noun)|cracker (generic term)
+water bitternut|1
+(noun)|water hickory|bitter pecan|Carya aquatica|hickory (generic term)|hickory tree (generic term)
+water blister|1
+(noun)|blister (generic term)|bulla (generic term)|bleb (generic term)
+water boatman|1
+(noun)|boat bug|water bug (generic term)
+water bottle|1
+(noun)|bottle (generic term)
+water boy|1
+(noun)|waterer|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+water buffalo|1
+(noun)|water ox|Asiatic buffalo|Bubalus bubalis|Old World buffalo (generic term)|buffalo (generic term)
+water bug|2
+(noun)|heteropterous insect (generic term)
+(noun)|German cockroach|Croton bug|crotonbug|Blattella germanica|cockroach (generic term)|roach (generic term)
+water butt|1
+(noun)|butt (generic term)
+water buttercup|1
+(noun)|water crowfoot|Ranunculus aquatilis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water cabbage|1
+(noun)|pistia|water lettuce|Pistia stratiotes|Pistia stratoites|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water caltrop|1
+(noun)|Jesuits' nut|Trapa natans|water chestnut (generic term)|water chestnut plant (generic term)|caltrop (generic term)
+water cannon|1
+(noun)|watercannon|hose (generic term)|hosepipe (generic term)
+water carpet|1
+(noun)|water mat|Chrysosplenium americanum|golden saxifrage (generic term)|golden spleen (generic term)
+water cart|1
+(noun)|cart (generic term)
+water chestnut|3
+(noun)|water chestnut plant|caltrop|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|Chinese water chestnut|Eleocharis dulcis|spike rush (generic term)
+(noun)|tuber (generic term)
+water chestnut plant|1
+(noun)|water chestnut|caltrop|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water chevrotain|1
+(noun)|water deer|Hyemoschus aquaticus|chevrotain (generic term)|mouse deer (generic term)
+water chickweed|1
+(noun)|blinks|blinking chickweed|Montia lamprosperma|Indian lettuce (generic term)
+water chinquapin|2
+(noun)|American lotus|yanquapin|Nelumbo lutea|water lily (generic term)
+(noun)|edible seed (generic term)
+water chute|1
+(noun)|chute (generic term)|slide (generic term)|slideway (generic term)|sloping trough (generic term)
+water clock|1
+(noun)|clepsydra|water glass|clock (generic term)
+water closet|1
+(noun)|closet|W.C.|loo|toilet (generic term)|lavatory (generic term)|lav (generic term)|can (generic term)|john (generic term)|privy (generic term)|bathroom (generic term)
+water clover|1
+(noun)|Marsilea quadrifolia|clover fern (generic term)|pepperwort (generic term)
+water company|1
+(noun)|waterworks|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+water conservation|1
+(noun)|conservation (generic term)
+water cooler|1
+(noun)|device (generic term)
+water crowfoot|1
+(noun)|water buttercup|Ranunculus aquatilis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water deer|1
+(noun)|water chevrotain|Hyemoschus aquaticus|chevrotain (generic term)|mouse deer (generic term)
+water development|1
+(noun)|water project|water program|exploitation (generic term)|development (generic term)
+water dog|2
+(noun)|water rat|sailor (generic term)|crewman (generic term)
+(noun)|sporting dog (generic term)|gun dog (generic term)
+water down|2
+(verb)|dilute (generic term)|thin (generic term)|thin out (generic term)|reduce (generic term)|cut (generic term)
+(verb)|adulterate (generic term)|stretch (generic term)|dilute (generic term)|debase (generic term)
+water dragon|2
+(noun)|lizard's-tail|swamp lily|Saururus cernuus|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+(noun)|marsh marigold|kingcup|meadow bright|May blob|cowslip|Caltha palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+water dropwort|1
+(noun)|hemlock water dropwort|Oenanthe crocata|poisonous plant (generic term)
+water elm|2
+(noun)|Ulmus laevis|elm (generic term)|elm tree (generic term)
+(noun)|American elm|white elm|rock elm|Ulmus americana|elm (generic term)|elm tree (generic term)
+water faucet|1
+(noun)|water tap|tap|hydrant|faucet (generic term)|spigot (generic term)|plumbing fixture (generic term)
+water fennel|1
+(noun)|Oenanthe aquatica|poisonous plant (generic term)
+water fern|1
+(noun)|aquatic fern|fern (generic term)
+water filter|1
+(noun)|filter (generic term)
+water finder|1
+(noun)|divining rod|dowser|dowsing rod|waterfinder|stick (generic term)
+water flaxseed|1
+(noun)|great duckweed|Spirodela polyrrhiza|duckweed (generic term)
+water flea|2
+(noun)|cyclops|copepod (generic term)|copepod crustacean (generic term)
+(noun)|daphnia|branchiopod crustacean (generic term)|branchiopod (generic term)|branchiopodan (generic term)
+water fountain|1
+(noun)|drinking fountain|bubbler|fountain (generic term)
+water gage|1
+(noun)|water gauge|water glass|gauge (generic term)|gage (generic term)
+water gap|1
+(noun)|col (generic term)|gap (generic term)
+water gas|1
+(noun)|fuel (generic term)|gas (generic term)
+water gate|1
+(noun)|sluicegate|sluice valve|floodgate|penstock|head gate|regulator (generic term)
+water gauge|1
+(noun)|water gage|water glass|gauge (generic term)|gage (generic term)
+water gillyflower|1
+(noun)|American featherfoil|Hottonia inflata|featherfoil (generic term)|feather-foil (generic term)
+water glass|4
+(noun)|soluble glass|sodium silicate|glass (generic term)
+(noun)|glass (generic term)|drinking glass (generic term)
+(noun)|water gauge|water gage|gauge (generic term)|gage (generic term)
+(noun)|water clock|clepsydra|clock (generic term)
+water gum|1
+(noun)|Nyssa aquatica|tupelo (generic term)|tupelo tree (generic term)
+water gun|1
+(noun)|water pistol|squirt gun|squirter|plaything (generic term)|toy (generic term)
+water hammer|1
+(noun)|bang (generic term)|clap (generic term)|eruption (generic term)|blast (generic term)|bam (generic term)
+water hazard|1
+(noun)|hazard (generic term)
+water heater|1
+(noun)|hot-water heater|hot-water tank|heater (generic term)|warmer (generic term)|tank (generic term)|storage tank (generic term)
+water hemlock|1
+(noun)|Cicuta verosa|poisonous plant (generic term)
+water hen|2
+(noun)|American coot|marsh hen|mud hen|Fulica americana|coot (generic term)
+(noun)|gallinule|marsh hen|swamphen|aquatic bird (generic term)
+water hickory|1
+(noun)|bitter pecan|water bitternut|Carya aquatica|hickory (generic term)|hickory tree (generic term)
+water hole|1
+(noun)|pond (generic term)|pool (generic term)
+water horehound|1
+(noun)|Lycopus americanus|herb (generic term)|herbaceous plant (generic term)
+water horsetail|1
+(noun)|swamp horsetail|Equisetum fluviatile|horsetail (generic term)
+water hyacinth|1
+(noun)|water orchid|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water ice|2
+(noun)|ice|crystal (generic term)
+(noun)|ice (generic term)|frappe (generic term)
+water jacket|1
+(noun)|vessel (generic term)
+water jug|1
+(noun)|jug (generic term)
+water jump|1
+(noun)|pool (generic term)|obstacle (generic term)
+water lemon|1
+(noun)|bell apple|sweet cup|yellow granadilla|passion fruit (generic term)
+water lettuce|1
+(noun)|pistia|water cabbage|Pistia stratiotes|Pistia stratoites|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water level|4
+(noun)|elevation (generic term)
+(noun)|water table|groundwater level|geological formation (generic term)|formation (generic term)
+(noun)|waterline|water line|line (generic term)
+(noun)|water gauge (generic term)|water gage (generic term)|water glass (generic term)
+water lily|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water line|2
+(noun)|waterline|water level|line (generic term)
+(noun)|watermark|line (generic term)
+water lobelia|1
+(noun)|Lobelia dortmanna|lobelia (generic term)
+water locust|1
+(noun)|swamp locust|Gleditsia aquatica|locust tree (generic term)|locust (generic term)
+water main|1
+(noun)|main (generic term)
+water mat|1
+(noun)|water carpet|Chrysosplenium americanum|golden saxifrage (generic term)|golden spleen (generic term)
+water meter|1
+(noun)|meter (generic term)
+water milfoil|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water mill|1
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+water mint|1
+(noun)|water-mint|Mentha aquatica|mint (generic term)
+water moccasin|2
+(noun)|cottonmouth|cottonmouth moccasin|Agkistrodon piscivorus|pit viper (generic term)
+(noun)|water snake (generic term)
+water mold|1
+(noun)|mold (generic term)|mould (generic term)
+water nymph|4
+(noun)|naiad|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+(noun)|fragrant water lily|pond lily|Nymphaea odorata|water lily (generic term)
+(noun)|nymph (generic term)
+(noun)|water sprite|water spirit|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+water oak|1
+(noun)|possum oak|Quercus nigra|oak (generic term)|oak tree (generic term)
+water of crystallisation|1
+(noun)|water of crystallization|water of hydration|water (generic term)|H2O (generic term)
+water of crystallization|1
+(noun)|water of crystallisation|water of hydration|water (generic term)|H2O (generic term)
+water of hydration|1
+(noun)|water of crystallization|water of crystallisation|water (generic term)|H2O (generic term)
+water on the knee|1
+(noun)|hydrarthrosis (generic term)
+water orchid|1
+(noun)|water hyacinth|Eichhornia crassipes|Eichhornia spesiosa|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water ouzel|1
+(noun)|dipper|oscine (generic term)|oscine bird (generic term)
+water ox|1
+(noun)|water buffalo|Asiatic buffalo|Bubalus bubalis|Old World buffalo (generic term)|buffalo (generic term)
+water parsnip|1
+(noun)|Sium suave|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+water parting|1
+(noun)|watershed|divide|line (generic term)
+water pill|1
+(noun)|diuretic drug|diuretic|drug (generic term)
+water pimpernel|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water pipe|1
+(noun)|hookah|narghile|nargileh|sheesha|shisha|chicha|calean|kalian|hubble-bubble|hubbly-bubbly|pipe (generic term)|tobacco pipe (generic term)
+water pistol|1
+(noun)|water gun|squirt gun|squirter|plaything (generic term)|toy (generic term)
+water plant|1
+(noun)|aquatic plant|hydrophyte|hydrophytic plant|vascular plant (generic term)|tracheophyte (generic term)
+water plantain|1
+(noun)|Alisma plantago-aquatica|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+water pollution|1
+(noun)|pollution (generic term)
+water polo|1
+(noun)|athletic game (generic term)
+water pore|1
+(noun)|hydathode|water stoma|stoma (generic term)|stomate (generic term)|pore (generic term)
+water program|1
+(noun)|water development|water project|exploitation (generic term)|development (generic term)
+water project|1
+(noun)|water development|water program|exploitation (generic term)|development (generic term)
+water pump|1
+(noun)|pump (generic term)
+water rat|3
+(noun)|water dog|sailor (generic term)|crewman (generic term)
+(noun)|water vole|Arvicola amphibius|vole (generic term)|field mouse (generic term)
+(noun)|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+water right|1
+(noun)|riparian right|right (generic term)
+water sapphire|1
+(noun)|cordierite (generic term)|transparent gem (generic term)
+water scooter|1
+(noun)|sea scooter|scooter|motorboat (generic term)|powerboat (generic term)
+water scorpion|1
+(noun)|water bug (generic term)
+water shamrock|1
+(noun)|buckbean|bogbean|bog myrtle|marsh trefoil|Menyanthes trifoliata|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water shrew|1
+(noun)|shrew (generic term)|shrewmouse (generic term)
+water skater|1
+(noun)|water strider|pond-skater|water bug (generic term)
+water ski|2
+(noun)|ski (generic term)
+(verb)|ski (generic term)
+water skin|1
+(noun)|waterskin|skin (generic term)
+water snake|1
+(noun)|colubrid snake (generic term)|colubrid (generic term)
+water softener|1
+(noun)|softener (generic term)
+water spaniel|1
+(noun)|spaniel (generic term)
+water speedwell|1
+(noun)|Veronica michauxii|Veronica anagallis-aquatica|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water spirit|1
+(noun)|water sprite|water nymph|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+water sport|1
+(noun)|aquatics|sport (generic term)|athletics (generic term)
+water sprite|2
+(noun)|floating fern|Ceratopteris pteridioides|aquatic fern (generic term)|water fern (generic term)
+(noun)|water nymph|water spirit|fairy (generic term)|faery (generic term)|faerie (generic term)|fay (generic term)|sprite (generic term)
+water star grass|1
+(noun)|mud plantain|Heteranthera dubia|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water starwort|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water stoma|1
+(noun)|hydathode|water pore|stoma (generic term)|stomate (generic term)|pore (generic term)
+water strider|1
+(noun)|pond-skater|water skater|water bug (generic term)
+water supply|1
+(noun)|water system|water|facility (generic term)|installation (generic term)
+water system|2
+(noun)|system (generic term)|scheme (generic term)
+(noun)|water supply|water|facility (generic term)|installation (generic term)
+water table|1
+(noun)|water level|groundwater level|geological formation (generic term)|formation (generic term)
+water tank|1
+(noun)|cistern|tank (generic term)|storage tank (generic term)
+water tap|1
+(noun)|water faucet|tap|hydrant|faucet (generic term)|spigot (generic term)|plumbing fixture (generic term)
+water thrush|1
+(noun)|New World warbler (generic term)|wood warbler (generic term)
+water tower|1
+(noun)|reservoir (generic term)
+water travel|1
+(noun)|seafaring|travel (generic term)|traveling (generic term)|travelling (generic term)
+water trumpet|1
+(noun)|cryptocoryne|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+water turkey|1
+(noun)|Anhinga anhinga|snakebird (generic term)|anhinga (generic term)|darter (generic term)
+water under the bridge|1
+(noun)|bygone|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+water vapor|1
+(noun)|water vapour|vapor (generic term)|vapour (generic term)
+water vapour|1
+(noun)|water vapor|vapor (generic term)|vapour (generic term)
+water vascular system|1
+(noun)|vascular system (generic term)
+water violet|1
+(noun)|Hottonia palustris|featherfoil (generic term)|feather-foil (generic term)
+water vole|2
+(noun)|water rat|Arvicola amphibius|vole (generic term)|field mouse (generic term)
+(noun)|Richardson vole|Microtus richardsoni|vole (generic term)|field mouse (generic term)
+water waggon|1
+(noun)|water wagon|wagon (generic term)|waggon (generic term)
+water wagon|1
+(noun)|water waggon|wagon (generic term)|waggon (generic term)
+water wheel|1
+(noun)|waterwheel|wheel (generic term)
+water wings|1
+(noun)|life preserver (generic term)|preserver (generic term)|flotation device (generic term)
+water witch|1
+(noun)|dowser|rhabdomancer|diviner (generic term)
+water yam|1
+(noun)|white yam|Dioscorea alata|yam (generic term)|yam plant (generic term)
+waterbird|1
+(noun)|waterfowl|water bird|aquatic bird (generic term)
+waterborne|2
+(adj)|mobile (similar term)
+(adj)|afloat (similar term)
+waterbuck|1
+(noun)|antelope (generic term)
+waterbury|1
+(noun)|Waterbury|city (generic term)|metropolis (generic term)|urban center (generic term)
+watercannon|1
+(noun)|water cannon|hose (generic term)|hosepipe (generic term)
+watercolor|5
+(noun)|water-color|watercolour|water-colour|painting (generic term)|picture (generic term)
+(noun)|water-color|watercolour|water-colour|water-base paint (generic term)
+(noun)|water-color|watercolour|water-colour|pigment (generic term)
+(noun)|water-color|watercolour|water-colour|painting (generic term)
+(verb)|watercolour|paint (generic term)
+watercolorist|1
+(noun)|watercolourist|painter (generic term)
+watercolour|5
+(noun)|watercolor|water-color|water-colour|pigment (generic term)
+(noun)|watercolor|water-color|water-colour|water-base paint (generic term)
+(noun)|watercolor|water-color|water-colour|painting (generic term)|picture (generic term)
+(noun)|watercolor|water-color|water-colour|painting (generic term)
+(verb)|watercolor|paint (generic term)
+watercolourist|1
+(noun)|watercolorist|painter (generic term)
+watercourse|3
+(noun)|channel (generic term)
+(noun)|stream|body of water (generic term)|water (generic term)
+(noun)|waterway|way (generic term)
+watercraft|2
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+(noun)|vessel|craft (generic term)
+watercress|3
+(adj)|cress green|cresson|chromatic (similar term)
+(noun)|cress (generic term)|cress plant (generic term)
+(noun)|cress (generic term)
+waterdog|1
+(noun)|ambystomid (generic term)|ambystomid salamander (generic term)
+watered|1
+(adj)|moire|patterned (similar term)
+watered-silk|1
+(noun)|moire|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+watered stock|1
+(noun)|stock (generic term)
+waterer|2
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+(noun)|water boy|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+waterfall|1
+(noun)|falls|body of water (generic term)|water (generic term)
+waterfinder|1
+(noun)|divining rod|dowser|dowsing rod|water finder|stick (generic term)
+waterford|1
+(noun)|Waterford|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+waterfowl|1
+(noun)|water bird|waterbird|aquatic bird (generic term)
+waterfront|1
+(noun)|city district (generic term)
+watergate|1
+(noun)|Watergate|Watergate scandal|scandal (generic term)|outrage (generic term)
+watergate scandal|1
+(noun)|Watergate|Watergate scandal|scandal (generic term)|outrage (generic term)
+waterhouse-friderichsen syndrome|1
+(noun)|Waterhouse-Friderichsen syndrome|syndrome (generic term)
+wateriness|3
+(noun)|muddiness|sloppiness|wetness (generic term)
+(noun)|meagerness (generic term)|meagreness (generic term)|leanness (generic term)|poorness (generic term)|scantiness (generic term)|scantness (generic term)|exiguity (generic term)
+(noun)|thinness (generic term)
+watering|2
+(noun)|lacrimation|lachrymation|tearing|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+(noun)|wetting (generic term)
+watering can|1
+(noun)|watering pot|container (generic term)
+watering cart|1
+(noun)|water cart (generic term)
+watering hole|1
+(noun)|watering place|spa|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+watering place|1
+(noun)|watering hole|spa|resort area (generic term)|playground (generic term)|vacation spot (generic term)
+watering pot|1
+(noun)|watering can|container (generic term)
+waterleaf|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+waterleaf family|1
+(noun)|Hydrophyllaceae|family Hydrophyllaceae|asterid dicot family (generic term)
+waterless|1
+(adj)|arid|dry (similar term)
+waterlessness|1
+(noun)|dryness|xerotes|condition (generic term)|status (generic term)|wetness (antonym)
+waterline|1
+(noun)|water line|water level|line (generic term)
+waterlogged|1
+(adj)|boggy|marshy|miry|mucky|muddy|quaggy|sloppy|sloughy|soggy|squashy|swampy|wet (similar term)
+waterloo|3
+(noun)|Waterloo|town (generic term)
+(noun)|defeat (generic term)|licking (generic term)
+(noun)|Waterloo|Battle of Waterloo|pitched battle (generic term)
+waterman|1
+(noun)|boatman|boater|worker (generic term)
+watermark|2
+(noun)|water line|line (generic term)
+(noun)|marker (generic term)|marking (generic term)|mark (generic term)
+watermeal|1
+(noun)|duckweed (generic term)
+watermelon|2
+(noun)|watermelon vine|Citrullus vulgaris|melon (generic term)|melon vine (generic term)
+(noun)|melon (generic term)
+watermelon-shaped|1
+(adj)|prolate|cucumber-shaped (similar term)|rounded (related term)|oblate (antonym)
+watermelon begonia|1
+(noun)|Peperomia argyreia|Peperomia sandersii|peperomia (generic term)
+watermelon vine|1
+(noun)|watermelon|Citrullus vulgaris|melon (generic term)|melon vine (generic term)
+waterpower|1
+(noun)|power (generic term)
+waterproof|4
+(adj)|rainproof|waterproofed|tight (similar term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|raincoat|coat (generic term)
+(verb)|seal (generic term)|seal off (generic term)
+waterproofed|1
+(adj)|rainproof|waterproof|tight (similar term)
+waterproofing|2
+(noun)|sealing|protection (generic term)
+(noun)|coating (generic term)|coat (generic term)
+waters|2
+(noun)|Waters|Ethel Waters|actress (generic term)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+(noun)|amniotic fluid|amnionic fluid|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+waterscape|1
+(noun)|seascape|painting (generic term)|picture (generic term)
+watershed|2
+(noun)|water parting|divide|line (generic term)
+(noun)|landmark|turning point|juncture (generic term)|occasion (generic term)
+waterside|1
+(noun)|bank (generic term)
+waterskin|1
+(noun)|water skin|skin (generic term)
+waterspout|3
+(noun)|tornado (generic term)|twister (generic term)
+(noun)|downpour|cloudburst|deluge|torrent|pelter|soaker|rain (generic term)|rainfall (generic term)
+(noun)|conduit (generic term)
+watertight|2
+(adj)|tight (similar term)
+(adj)|unassailable|unshakable|bulletproof|incontestable (similar term)|incontestible (similar term)
+watertown|1
+(noun)|Watertown|town (generic term)
+waterway|2
+(noun)|body of water (generic term)|water (generic term)
+(noun)|watercourse|way (generic term)
+waterweed|1
+(noun)|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+waterwheel|1
+(noun)|water wheel|wheel (generic term)
+waterwheel plant|1
+(noun)|Aldrovanda vesiculosa|carnivorous plant (generic term)
+waterworks|2
+(noun)|water company|utility (generic term)|public utility (generic term)|public utility company (generic term)|public-service corporation (generic term)
+(noun)|workplace (generic term)|work (generic term)
+waterworn|1
+(adj)|worn (similar term)
+watery|4
+(adj)|wet (similar term)
+(adj)|reeking|dripping|wet (similar term)
+(adj)|liquid (similar term)
+(adj)|washy|weak|diluted (similar term)|dilute (similar term)
+watery-eyed|1
+(adj)|teary|teary-eyed|tearful (similar term)
+wats|1
+(noun)|WATS|WATS line|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+wats line|1
+(noun)|WATS|WATS line|telephone line (generic term)|phone line (generic term)|telephone circuit (generic term)|subscriber line (generic term)|line (generic term)
+watson|3
+(noun)|Watson|Thomas Augustus Watson|engineer (generic term)|applied scientist (generic term)|technologist (generic term)
+(noun)|Watson|John Broadus Watson|psychologist (generic term)
+(noun)|Watson|James Watson|James Dewey Watson|geneticist (generic term)
+watt|2
+(noun)|W|power unit (generic term)
+(noun)|Watt|James Watt|engineer (generic term)|applied scientist (generic term)|technologist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+watt-hour|1
+(noun)|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+watt second|1
+(noun)|joule|J|work unit (generic term)|heat unit (generic term)|energy unit (generic term)
+wattage|1
+(noun)|electrical power|electric power|power (generic term)
+watteau|1
+(noun)|Watteau|Jean Antoine Watteau|old master (generic term)
+wattle|4
+(noun)|lappet|caruncle (generic term)|caruncula (generic term)
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(verb)|construct (generic term)|build (generic term)|make (generic term)
+(verb)|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+wattle and daub|1
+(noun)|building material (generic term)
+wattmeter|1
+(noun)|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+watts|1
+(noun)|Watts|Isaac Watts|poet (generic term)|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+watusi|1
+(noun)|Tutsi|Watutsi|Watusi|Bantu (generic term)
+watutsi|1
+(noun)|Tutsi|Watutsi|Watusi|Bantu (generic term)
+waugh|1
+(noun)|Waugh|Evelyn Waugh|Evelyn Arthur Saint John Waugh|writer (generic term)|author (generic term)
+waul|1
+(verb)|squall|wawl|howl (generic term)|ululate (generic term)|wail (generic term)|roar (generic term)|yawl (generic term)|yaup (generic term)
+wausau|1
+(noun)|Wausau|town (generic term)
+wave|14
+(noun)|moving ridge|movement (generic term)|motion (generic term)
+(noun)|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(noun)|undulation|movement (generic term)|motion (generic term)
+(noun)|rise (generic term)
+(noun)|waving|wafture|gesture (generic term)|motion (generic term)
+(noun)|hairdo (generic term)|hairstyle (generic term)|hair style (generic term)|coiffure (generic term)|coif (generic term)
+(noun)|undulation|curve (generic term)|curved shape (generic term)
+(noun)|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|Wave|reservist (generic term)|woman (generic term)|adult female (generic term)
+(verb)|beckon|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|brandish|flourish|move (generic term)|displace (generic term)
+(verb)|roll|undulate|flap|move (generic term)
+(verb)|curl|twist (generic term)
+(verb)|dress (generic term)|arrange (generic term)|set (generic term)|do (generic term)|coif (generic term)|coiffe (generic term)|coiffure (generic term)
+wave-off|1
+(noun)|overshoot|go-around|landing approach (generic term)
+wave-particle duality|1
+(noun)|duality|property (generic term)
+wave angle|1
+(noun)|angle (generic term)
+wave equation|1
+(noun)|differential equation (generic term)
+wave form|1
+(noun)|waveform|wave shape|wave (generic term)|undulation (generic term)
+wave front|2
+(noun)|propagation (generic term)
+(noun)|wavefront|surface (generic term)
+wave guide|1
+(noun)|waveguide|conductor (generic term)
+wave mechanics|1
+(noun)|quantum mechanics (generic term)
+wave number|1
+(noun)|frequency (generic term)|frequence (generic term)|oftenness (generic term)
+wave off|1
+(verb)|background (generic term)|play down (generic term)|downplay (generic term)
+wave shape|1
+(noun)|wave form|waveform|wave (generic term)|undulation (generic term)
+wave theory|1
+(noun)|undulatory theory|wave theory of light|scientific theory (generic term)|corpuscular theory of light (antonym)|corpuscular theory (antonym)
+wave theory of light|1
+(noun)|wave theory|undulatory theory|scientific theory (generic term)|corpuscular theory of light (antonym)|corpuscular theory (antonym)
+wave train|1
+(noun)|series (generic term)
+waveband|1
+(noun)|frequency band|band (generic term)
+waveform|1
+(noun)|wave form|wave shape|wave (generic term)|undulation (generic term)
+wavefront|1
+(noun)|wave front|surface (generic term)
+waveguide|1
+(noun)|wave guide|conductor (generic term)
+wavelength|2
+(noun)|distance (generic term)
+(noun)|orientation (generic term)
+wavelet|1
+(noun)|ripple|rippling|riffle|wave (generic term)|moving ridge (generic term)
+wavelike|1
+(adj)|crinkled|crinkly|rippled|wavy|uneven (similar term)
+wavell|1
+(noun)|Wavell|Archibald Percival Wavell|First Earl Wavell|general (generic term)|full general (generic term)|field marshal (generic term)
+waver|10
+(noun)|communicator (generic term)
+(noun)|hesitation|falter|faltering|pause (generic term)
+(noun)|flutter|flicker|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|hesitate|waffle
+(verb)|falter|hesitate (generic term)|waver (generic term)|waffle (generic term)
+(verb)|falter|move (generic term)
+(verb)|fluctuate|vacillate|swing (generic term)
+(verb)|flicker|flitter|flutter|quiver|move back and forth (generic term)
+(verb)|weave|swing (generic term)|sway (generic term)
+(verb)|quaver|voice (generic term)|sound (generic term)|vocalize (generic term)|vocalise (generic term)
+waverer|1
+(noun)|vacillator|hesitator|hesitater|coward (generic term)
+wavering|3
+(adj)|vacillant|vacillating|irresolute (similar term)
+(noun)|hesitation|vacillation|indecision (generic term)|indecisiveness (generic term)|irresolution (generic term)
+(noun)|fluctuation|irregularity (generic term)|unregularity (generic term)
+waviness|2
+(noun)|curliness|curvature (generic term)|curve (generic term)|straightness (antonym)
+(noun)|unevenness (generic term)|variability (generic term)
+waving|2
+(adj)|aflare|flaring|flying|moving (similar term)
+(noun)|wave|wafture|gesture (generic term)|motion (generic term)
+wavy|2
+(adj)|curly (similar term)
+(adj)|crinkled|crinkly|rippled|wavelike|uneven (similar term)
+wavy-grained|1
+(adj)|curly-grained|cross-grained|uneven (similar term)
+wavy-leaved aster|1
+(noun)|aster (generic term)
+waw|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+wawl|1
+(verb)|squall|waul|howl (generic term)|ululate (generic term)|wail (generic term)|roar (generic term)|yawl (generic term)|yaup (generic term)
+wax|4
+(noun)|lipid (generic term)|lipide (generic term)|lipoid (generic term)
+(verb)|cover (generic term)
+(verb)|mount|climb|rise|increase (generic term)|wane (antonym)
+(verb)|full|increase (generic term)|wane (antonym)
+wax-chandler|1
+(noun)|chandler (generic term)
+wax-coated|1
+(adj)|waxlike|waxy|ceraceous|smooth (similar term)
+wax-myrtle family|1
+(noun)|Myricaceae|family Myricaceae|dicot family (generic term)|magnoliopsid family (generic term)
+wax bean|2
+(noun)|common bean (generic term)|common bean plant (generic term)|Phaseolus vulgaris (generic term)
+(noun)|yellow bean|fresh bean (generic term)
+wax begonia|1
+(noun)|Begonia semperflorens|begonia (generic term)
+wax crayon|1
+(noun)|crayon|writing implement (generic term)
+wax figure|1
+(noun)|waxwork|effigy (generic term)|image (generic term)|simulacrum (generic term)
+wax insect|1
+(noun)|scale insect (generic term)
+wax light|1
+(noun)|candle|taper|lamp (generic term)
+wax mallow|1
+(noun)|waxmallow|sleeping hibiscus|mallow (generic term)
+wax moth|1
+(noun)|bee moth|Galleria mellonella|pyralid (generic term)|pyralid moth (generic term)
+wax myrtle|1
+(noun)|shrub (generic term)|bush (generic term)
+wax palm|3
+(noun)|caranday|caranda|caranda palm|Copernicia australis|Copernicia alba|fan palm (generic term)
+(noun)|carnauba|carnauba palm|Copernicia prunifera|Copernicia cerifera|fan palm (generic term)
+(noun)|Ceroxylon andicola|Ceroxylon alpinum|feather palm (generic term)
+wax paper|1
+(noun)|paper (generic term)
+wax plant|1
+(noun)|Hoya carnosa|hoya (generic term)
+waxberry|2
+(noun)|snowberry|common snowberry|Symphoricarpos alba|poisonous plant (generic term)
+(noun)|bayberry|candleberry|swamp candleberry|Myrica pensylvanica|wax myrtle (generic term)
+waxed|1
+(adj)|unwaxed (antonym)
+waxen|2
+(adj)|waxy|lipid|lipide|lipoid (related term)
+(adj)|waxlike|waxy|colorless (similar term)|colourless (similar term)
+waxflower|3
+(noun)|Madagascar jasmine|Stephanotis floribunda|stephanotis (generic term)
+(noun)|Clusia insignis|air plant (generic term)|epiphyte (generic term)|aerophyte (generic term)|epiphytic plant (generic term)
+(noun)|Indian pipe|Monotropa uniflora|wildflower (generic term)|wild flower (generic term)
+waxiness|1
+(noun)|quality (generic term)
+waxing|3
+(adj)|waning (antonym)
+(noun)|application (generic term)|coating (generic term)|covering (generic term)
+(noun)|increase (generic term)|waning (antonym)
+waxlike|2
+(adj)|waxen|waxy|colorless (similar term)|colourless (similar term)
+(adj)|wax-coated|waxy|ceraceous|smooth (similar term)
+waxmallow|1
+(noun)|wax mallow|sleeping hibiscus|mallow (generic term)
+waxwing|1
+(noun)|oscine (generic term)|oscine bird (generic term)
+waxwork|2
+(noun)|bittersweet|American bittersweet|climbing bittersweet|false bittersweet|staff vine|shrubby bittersweet|Celastrus scandens|vine (generic term)
+(noun)|wax figure|effigy (generic term)|image (generic term)|simulacrum (generic term)
+waxy|3
+(adj)|waxen|lipid|lipide|lipoid (related term)
+(adj)|waxlike|wax-coated|ceraceous|smooth (similar term)
+(adj)|waxen|waxlike|colorless (similar term)|colourless (similar term)
+waxycap|1
+(noun)|agaric (generic term)
+way|13
+(noun)|manner|mode|style|fashion|property (generic term)
+(noun)|means|agency|implementation (generic term)|effectuation (generic term)
+(noun)|journey (generic term)|journeying (generic term)
+(noun)|condition (generic term)|status (generic term)
+(noun)|path|way of life|course (generic term)|course of action (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|direction|path (generic term)|route (generic term)|itinerary (generic term)
+(noun)|distance (generic term)
+(noun)|choice (generic term)|pick (generic term)|selection (generic term)
+(noun)|category (generic term)
+(noun)|room|elbow room|position (generic term)|spatial relation (generic term)
+(noun)|share (generic term)|portion (generic term)|part (generic term)|percentage (generic term)
+(adv)|right smart
+way-out|1
+(adj)|far-out|kinky|offbeat|quirky|unconventional (similar term)
+way of life|1
+(noun)|way|path|course (generic term)|course of action (generic term)
+way out|1
+(noun)|exit|issue|outlet|opening (generic term)
+way station|2
+(noun)|stopover|stop (generic term)
+(noun)|whistle stop|flag stop|railway station (generic term)|railroad station (generic term)|railroad terminal (generic term)|train station (generic term)|train depot (generic term)
+waybill|1
+(noun)|bill of lading|receipt (generic term)
+wayfarer|2
+(noun)|pedestrian (generic term)|walker (generic term)|footer (generic term)
+(noun)|journeyer|traveler (generic term)|traveller (generic term)
+wayfaring|2
+(adj)|peripatetic|unsettled (similar term)
+(noun)|travel (generic term)|traveling (generic term)|travelling (generic term)
+wayfaring tree|1
+(noun)|twist wood|twistwood|Viburnum lantana|shrub (generic term)|bush (generic term)
+wayland|1
+(noun)|Wayland|Wayland the Smith|Wieland|mythical being (generic term)
+wayland the smith|1
+(noun)|Wayland|Wayland the Smith|Wieland|mythical being (generic term)
+waylay|1
+(verb)|ambush|scupper|bushwhack|lurk|ambuscade|lie in wait|wait (generic term)
+wayne|2
+(noun)|Wayne|John Wayne|Duke Wayne|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+(noun)|Wayne|Anthony Wayne|Mad Anthony Wayne|general (generic term)|full general (generic term)
+wayne gretzky|1
+(noun)|Gretzky|Wayne Gretzky|hockey player (generic term)|ice-hockey player (generic term)
+ways|1
+(noun)|shipway|slipway|structure (generic term)|construction (generic term)
+ways and means|1
+(noun)|resource (generic term)
+ways and means committee|1
+(noun)|Ways and Means Committee|standing committee (generic term)
+wayside|1
+(noun)|roadside|edge (generic term)|margin (generic term)
+wayward|1
+(adj)|contrary|obstinate|perverse|disobedient (similar term)
+wb|1
+(noun)|weber|Wb|flux unit (generic term)|magnetic flux unit (generic term)
+wbc|1
+(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+wbn|1
+(noun)|west by north|WbN|compass point (generic term)|point (generic term)
+wbs|1
+(noun)|west by south|WbS|compass point (generic term)|point (generic term)
+weak|12
+(adj)|anemic (similar term)|anaemic (similar term)|adynamic (similar term)|asthenic (similar term)|debilitated (similar term)|enervated (similar term)|faint (similar term)|feeble (similar term)|feeble (similar term)|lame (similar term)|flaccid (similar term)|lax (similar term)|limp (similar term)|slack (similar term)|flimsy (similar term)|slight (similar term)|tenuous (similar term)|thin (similar term)|flimsy (similar term)|fragile (similar term)|jerry-built (similar term)|shoddy (similar term)|namby-pamby (similar term)|gutless (similar term)|spineless (similar term)|wishy-washy (similar term)|pale (similar term)|pallid (similar term)|wan (similar term)|sick (similar term)|puny (similar term)|vulnerable (similar term)|weakened (similar term)|delicate (related term)|tender (related term)|untoughened (related term)|powerless (related term)|strong (antonym)
+(adj)|watery|washy|diluted (similar term)|dilute (similar term)
+(adj)|unaccented|light|unstressed (similar term)
+(adj)|fallible|frail|imperfect|human (similar term)
+(adj)|down (similar term)
+(adj)|unskilled (similar term)
+(adj)|decrepit|debile|feeble|infirm|rickety|sapless|weakly|frail (similar term)
+(adj)|regular (similar term)
+(adj)|powerless (similar term)
+(adj)|faint|perceptible (similar term)
+(adj)|fallible (similar term)
+(adj)|stupid (similar term)
+weak-kneed|1
+(adj)|irresolute (similar term)
+weak-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+weak force|1
+(noun)|weak interaction|interaction (generic term)|fundamental interaction (generic term)
+weak interaction|1
+(noun)|weak force|interaction (generic term)|fundamental interaction (generic term)
+weak part|1
+(noun)|weak spot|soft spot|weakness (generic term)|good part (antonym)
+weak point|1
+(noun)|liability (generic term)|strong point (antonym)
+weak spot|1
+(noun)|weak part|soft spot|weakness (generic term)|good part (antonym)
+weaken|5
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|strengthen (antonym)
+(verb)|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)|strengthen (antonym)
+(verb)|sabotage|undermine|countermine|counteract|subvert|disobey (generic term)
+(verb)|de-escalate|step down|decrease (generic term)|lessen (generic term)|minify (generic term)|escalate (antonym)
+(verb)|dampen|damp|soften|break|deaden (generic term)|blunt (generic term)
+weakened|5
+(adj)|diminished|lessened|vitiated|impaired (similar term)
+(adj)|weak (similar term)
+(adj)|attenuate|attenuated|faded|decreased (similar term)|reduced (similar term)
+(adj)|cut|thinned|diluted (similar term)|dilute (similar term)
+(adj)|hurt|damaged (similar term)
+weakener|1
+(noun)|agent (generic term)
+weakening|4
+(adj)|debilitative|enervating|enfeebling|debilitating (similar term)
+(adj)|moderating (similar term)
+(noun)|transformation (generic term)|transmutation (generic term)|shift (generic term)|strengthening (antonym)
+(noun)|decrease (generic term)|diminution (generic term)|reduction (generic term)|step-down (generic term)|strengthening (antonym)
+weakfish|2
+(noun)|saltwater fish (generic term)
+(noun)|Cynoscion regalis|sea trout (generic term)
+weakling|1
+(noun)|doormat|wuss|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+weakly|2
+(adj)|decrepit|debile|feeble|infirm|rickety|sapless|weak|frail (similar term)
+(adv)|strongly (antonym)
+weakly interacting massive particle|1
+(noun)|WIMP|elementary particle (generic term)|fundamental particle (generic term)
+weakness|5
+(noun)|failing|imperfection (generic term)|imperfectness (generic term)
+(noun)|helplessness|impuissance|powerlessness (generic term)|impotence (generic term)|impotency (generic term)
+(noun)|property (generic term)|strength (antonym)
+(noun)|misfortune (generic term)|bad luck (generic term)|tough luck (generic term)|ill luck (generic term)|strength (antonym)
+(noun)|preference (generic term)|penchant (generic term)|predilection (generic term)|taste (generic term)
+weal|1
+(noun)|wale|welt|wheal|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+weald|1
+(noun)|country (generic term)|rural area (generic term)
+wealth|4
+(noun)|wealthiness|financial condition (generic term)|economic condition (generic term)|poverty (antonym)
+(noun)|abundance (generic term)|copiousness (generic term)|teemingness (generic term)
+(noun)|riches|material resource (generic term)
+(noun)|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+wealthiness|1
+(noun)|wealth|financial condition (generic term)|economic condition (generic term)|poverty (antonym)
+wealthy|1
+(adj)|affluent|flush|loaded|moneyed|rich (similar term)
+wealthy man|1
+(noun)|man of means|rich man|rich person (generic term)|wealthy person (generic term)|have (generic term)
+wealthy person|1
+(noun)|rich person|have|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+wean|2
+(verb)|ablactate|deprive (generic term)
+(verb)|estrange (generic term)|alienate (generic term)|alien (generic term)|disaffect (generic term)
+weaned|1
+(adj)|unweaned (antonym)
+weaning|1
+(noun)|ablactation|substitution (generic term)|exchange (generic term)|commutation (generic term)
+weapon|2
+(noun)|arm|weapon system|instrument (generic term)
+(noun)|artillery|persuasion (generic term)|suasion (generic term)
+weapon-grade plutonium|1
+(noun)|weapons plutonium|plutonium 239 (generic term)
+weapon of mass destruction|1
+(noun)|WMD|W.M.D.|weapon (generic term)|arm (generic term)|weapon system (generic term)
+weapon system|1
+(noun)|weapon|arm|instrument (generic term)
+weaponed|1
+(adj)|equipped|armed (similar term)
+weaponize|1
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+weaponless|1
+(adj)|unarmed (similar term)
+weaponry|1
+(noun)|arms|implements of war|weapons system|munition|instrumentality (generic term)|instrumentation (generic term)
+weapons-grade|2
+(adj)|superior (similar term)
+(adj)|industrial-strength|strong (similar term)
+weapons carrier|1
+(noun)|military vehicle (generic term)|self-propelled vehicle (generic term)
+weapons emplacement|1
+(noun)|gun emplacement|emplacement (generic term)
+weapons platform|1
+(noun)|platform|structure (generic term)|construction (generic term)
+weapons plutonium|1
+(noun)|weapon-grade plutonium|plutonium 239 (generic term)
+weapons system|1
+(noun)|weaponry|arms|implements of war|munition|instrumentality (generic term)|instrumentation (generic term)
+wear|11
+(noun)|deterioration (generic term)|impairment (generic term)
+(noun)|clothing|article of clothing|vesture|wearable|habiliment|covering (generic term)|consumer goods (generic term)
+(noun)|wearing|act (generic term)|human action (generic term)|human activity (generic term)
+(verb)|have on
+(verb)|bear|have (generic term)|feature (generic term)
+(verb)|wear off|wear out|wear down|wear thin|deteriorate (generic term)
+(verb)|have (generic term)|feature (generic term)
+(verb)|hold out|endure|last (generic term)|endure (generic term)
+(verb)|break|wear out|bust|fall apart|decay (generic term)|crumble (generic term)|delapidate (generic term)|wear away (related term)|wear off (related term)|wear away (related term)|break away (related term)|break off (related term)|break up (related term)|break apart (related term)
+(verb)|tire|wear upon|tire out|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+(verb)|put on|get into|don|assume|dress (generic term)|get dressed (generic term)
+wear and tear|1
+(noun)|depreciation|financial loss (generic term)|non-cash expense (generic term)
+wear away|3
+(verb)|whittle away|whittle down|damage (generic term)
+(verb)|wear off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|erode|gnaw|gnaw at|eat at|decay (generic term)|crumble (generic term)|delapidate (generic term)
+wear down|2
+(verb)|tire|wear upon|tire out|wear|weary|jade|wear out|outwear|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+(verb)|wear|wear off|wear out|wear thin|deteriorate (generic term)
+wear off|2
+(verb)|wear|wear out|wear down|wear thin|deteriorate (generic term)
+(verb)|wear away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+wear on|1
+(verb)|decline (generic term)|go down (generic term)|wane (generic term)
+wear out|3
+(verb)|tire|wear upon|tire out|wear|weary|jade|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+(verb)|break|wear|bust|fall apart|decay (generic term)|crumble (generic term)|delapidate (generic term)|wear away (related term)|wear off (related term)|wear away (related term)|break away (related term)|break off (related term)|break up (related term)|break apart (related term)
+(verb)|wear|wear off|wear down|wear thin|deteriorate (generic term)
+wear round|1
+(verb)|tack|sail (generic term)
+wear ship|1
+(verb)|sail (generic term)
+wear the trousers|1
+(verb)|call the shots|call the tune|control (generic term)|command (generic term)
+wear thin|1
+(verb)|wear|wear off|wear out|wear down|deteriorate (generic term)
+wear upon|1
+(verb)|tire|tire out|wear|weary|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+wearable|2
+(adj)|unwearable (antonym)
+(noun)|clothing|article of clothing|vesture|wear|habiliment|covering (generic term)|consumer goods (generic term)
+wearer|1
+(noun)|user (generic term)
+wearied|1
+(adj)|jaded|tired (similar term)
+wearily|1
+(adv)|tiredly
+weariness|1
+(noun)|fatigue|tiredness|temporary state (generic term)
+wearing|3
+(adj)|exhausting|tiring|wearying|effortful (similar term)
+(noun)|erosion|eroding|eating away|wearing away|geological process (generic term)|geologic process (generic term)
+(noun)|wear|act (generic term)|human action (generic term)|human activity (generic term)
+wearing apparel|1
+(noun)|apparel|dress|clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+wearing away|1
+(noun)|erosion|eroding|eating away|wearing|geological process (generic term)|geologic process (generic term)
+wearisome|1
+(adj)|boring|deadening|dull|ho-hum|irksome|slow|tedious|tiresome|uninteresting (similar term)
+weary|3
+(adj)|aweary|tired (similar term)
+(verb)|tire|wear upon|tire out|wear|jade|wear out|outwear|wear down|fag out|fag|fatigue|indispose (generic term)|refresh (antonym)
+(verb)|tire|pall|fatigue|jade|devolve (generic term)|deteriorate (generic term)|drop (generic term)|degenerate (generic term)
+weary willie|1
+(noun)|Kelly|Emmett Kelly|Weary Willie|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+wearying|1
+(adj)|exhausting|tiring|wearing|effortful (similar term)
+weasel|1
+(noun)|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+weasel-worded|1
+(adj)|hedged|qualified (similar term)
+weasel word|1
+(noun)|reservation (generic term)|qualification (generic term)
+weather|6
+(adj)|upwind|windward (similar term)
+(noun)|weather condition|atmospheric condition|atmospheric phenomenon (generic term)
+(verb)|endure|brave|brave out|defy (generic term)|withstand (generic term)|hold (generic term)|hold up (generic term)
+(verb)|lean (generic term)|tilt (generic term)|tip (generic term)|slant (generic term)|angle (generic term)
+(verb)|sail (generic term)
+(verb)|decay (generic term)|crumble (generic term)|delapidate (generic term)
+weather-beaten|2
+(adj)|tough (similar term)|toughened (similar term)
+(adj)|weatherworn|weathered|worn (similar term)
+weather-bound|1
+(adj)|confined (similar term)
+weather-stripped|1
+(adj)|caulked (similar term)
+weather bureau|1
+(noun)|administrative unit (generic term)|administrative body (generic term)
+weather chart|1
+(noun)|weather map|map (generic term)
+weather condition|1
+(noun)|weather|atmospheric condition|atmospheric phenomenon (generic term)
+weather deck|1
+(noun)|shelter deck|upper deck (generic term)
+weather eye|1
+(noun)|watchfulness|vigilance|attentiveness (generic term)
+weather forecast|1
+(noun)|weather outlook|prognosis (generic term)|forecast (generic term)
+weather forecaster|1
+(noun)|weatherman|meteorologist (generic term)
+weather forecasting|1
+(noun)|meteorology|prediction (generic term)|foretelling (generic term)|forecasting (generic term)|prognostication (generic term)
+weather map|1
+(noun)|weather chart|map (generic term)
+weather outlook|1
+(noun)|weather forecast|prognosis (generic term)|forecast (generic term)
+weather radar|1
+(noun)|radar (generic term)|microwave radar (generic term)|radio detection and ranging (generic term)|radiolocation (generic term)
+weather satellite|1
+(noun)|meteorological satellite|satellite (generic term)|artificial satellite (generic term)|orbiter (generic term)
+weather sheet|1
+(noun)|sheet|tack|mainsheet|shroud|line (generic term)
+weather ship|1
+(noun)|vessel (generic term)|watercraft (generic term)
+weather side|1
+(noun)|to windward|windward side|weatherboard|windward (generic term)
+weather station|1
+(noun)|meteorological observation post|lookout (generic term)|observation post (generic term)
+weather strip|1
+(noun)|weatherstrip|weather stripping|weatherstripping|strip (generic term)|slip (generic term)
+weather stripping|1
+(noun)|weather strip|weatherstrip|weatherstripping|strip (generic term)|slip (generic term)
+weather vane|1
+(noun)|weathervane|vane|wind vane|mechanical device (generic term)
+weatherboard|2
+(noun)|clapboard|weatherboarding|siding (generic term)
+(noun)|to windward|windward side|weather side|windward (generic term)
+weatherboarding|1
+(noun)|clapboard|weatherboard|siding (generic term)
+weathercock|1
+(noun)|weathervane (generic term)|weather vane (generic term)|vane (generic term)|wind vane (generic term)
+weathered|1
+(adj)|weather-beaten|weatherworn|worn (similar term)
+weatherglass|1
+(noun)|barometer (generic term)
+weatherliness|1
+(noun)|maneuverability (generic term)|manoeuvrability (generic term)
+weatherly|1
+(adj)|maneuverability|manoeuvrability (related term)
+weatherman|1
+(noun)|weather forecaster|meteorologist (generic term)
+weatherproof|2
+(adj)|protected (similar term)|secure (similar term)
+(verb)|proof (generic term)
+weatherstrip|2
+(noun)|weather strip|weather stripping|weatherstripping|strip (generic term)|slip (generic term)
+(verb)|insulate (generic term)
+weatherstripping|1
+(noun)|weather strip|weatherstrip|weather stripping|strip (generic term)|slip (generic term)
+weathervane|1
+(noun)|weather vane|vane|wind vane|mechanical device (generic term)
+weatherworn|1
+(adj)|weather-beaten|weathered|worn (similar term)
+weave|5
+(noun)|design (generic term)|pattern (generic term)|figure (generic term)
+(verb)|interweave|twist (generic term)|twine (generic term)|distort (generic term)|unweave (antonym)
+(verb)|tissue|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|waver|swing (generic term)|sway (generic term)
+(verb)|wind|thread|meander|wander|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+weaver|2
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+(noun)|weaverbird|weaver finch|oscine (generic term)|oscine bird (generic term)
+weaver's broom|1
+(noun)|Spanish broom|Spartium junceum|broom (generic term)
+weaver's hitch|1
+(noun)|sheet bend|becket bend|weaver's knot|hitch (generic term)
+weaver's knot|1
+(noun)|sheet bend|becket bend|weaver's hitch|hitch (generic term)
+weaver finch|1
+(noun)|weaver|weaverbird|oscine (generic term)|oscine bird (generic term)
+weaverbird|1
+(noun)|weaver|weaver finch|oscine (generic term)|oscine bird (generic term)
+weaving|1
+(noun)|handicraft (generic term)
+web|8
+(noun)|object (generic term)|physical object (generic term)
+(noun)|entanglement|trap (generic term)
+(noun)|vane|blade (generic term)
+(noun)|network|system (generic term)|scheme (generic term)
+(noun)|World Wide Web|WWW|computer network (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|membrane (generic term)|tissue layer (generic term)
+(verb)|net|weave (generic term)|tissue (generic term)
+web-footed|1
+(adj)|web-toed|footed (similar term)
+web-spinning mite|1
+(noun)|mite (generic term)
+web-toed|1
+(adj)|web-footed|footed (similar term)
+web-toed salamander|1
+(noun)|salamander (generic term)
+web browser|1
+(noun)|browser|application (generic term)|application program (generic term)|applications programme (generic term)
+web log|1
+(noun)|blog|diary (generic term)|journal (generic term)
+web page|1
+(noun)|webpage|text file (generic term)|document (generic term)
+web site|1
+(noun)|website|internet site|site|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+web spinner|1
+(noun)|insect (generic term)
+webb|2
+(noun)|Webb|Beatrice Webb|Martha Beatrice Potter Webb|writer (generic term)|author (generic term)
+(noun)|Webb|Sidney Webb|Sidney James Webb|First Baron Passfield|sociologist (generic term)|economist (generic term)|economic expert (generic term)
+webbed|2
+(adj)|palmate (similar term)|unwebbed (antonym)
+(adj)|lacy|netlike|netted|weblike|webby|reticulate (similar term)|reticular (similar term)
+webbed foot|1
+(noun)|bird's foot (generic term)
+webbing|3
+(noun)|web (generic term)
+(noun)|tape (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+webbing clothes moth|1
+(noun)|webbing moth|Tineola bisselliella|clothes moth (generic term)
+webbing moth|1
+(noun)|webbing clothes moth|Tineola bisselliella|clothes moth (generic term)
+webby|1
+(adj)|lacy|netlike|netted|webbed|weblike|reticulate (similar term)|reticular (similar term)
+webcam|1
+(noun)|digital camera (generic term)
+weber|6
+(noun)|Wb|flux unit (generic term)|magnetic flux unit (generic term)
+(noun)|Weber|Wilhelm Eduard Weber|physicist (generic term)
+(noun)|Weber|Max Weber|painter (generic term)
+(noun)|Weber|Max Weber|sociologist (generic term)
+(noun)|Weber|Carl Maria von Weber|Baron Karl Maria Friedrich Ernst von Weber|conductor (generic term)|music director (generic term)|director (generic term)|composer (generic term)
+(noun)|Weber|E. H. Weber|Ernst Heinrich Weber|physiologist (generic term)
+weber's law|1
+(noun)|Weber's law|law (generic term)|law of nature (generic term)
+weber-fechner law|1
+(noun)|Fechner's law|Weber-Fechner law|law (generic term)|law of nature (generic term)
+webfoot|1
+(noun)|animal foot (generic term)|foot (generic term)
+weblike|1
+(adj)|lacy|netlike|netted|webbed|webby|reticulate (similar term)|reticular (similar term)
+webmaster|1
+(noun)|technician (generic term)
+webpage|1
+(noun)|web page|text file (generic term)|document (generic term)
+website|1
+(noun)|web site|internet site|site|computer (generic term)|computing machine (generic term)|computing device (generic term)|data processor (generic term)|electronic computer (generic term)|information processing system (generic term)
+webster|3
+(noun)|Webster|John Webster|dramatist (generic term)|playwright (generic term)
+(noun)|Webster|Daniel Webster|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+(noun)|Webster|Noah Webster|lexicographer (generic term)|lexicologist (generic term)
+webworm|1
+(noun)|caterpillar (generic term)
+webworm moth|1
+(noun)|lasiocampid (generic term)|lasiocampid moth (generic term)
+wed|4
+(adj)|wedded|married (similar term)
+(noun)|Wednesday|Midweek|Wed|weekday (generic term)
+(verb)|marry|get married|conjoin|hook up with|get hitched with|espouse|unite (generic term)|unify (generic term)
+(verb)|marry|tie|splice|officiate (generic term)
+wedded|1
+(adj)|wed|married (similar term)
+weddell sea|1
+(noun)|Weddell Sea|sea (generic term)
+wedding|3
+(noun)|wedding ceremony|nuptials|hymeneals|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+(noun)|marriage|marriage ceremony|ritual (generic term)|rite (generic term)
+(noun)|wedding party|party (generic term)
+wedding anniversary|1
+(noun)|anniversary (generic term)|day of remembrance (generic term)
+wedding band|1
+(noun)|wedding ring|ring (generic term)|band (generic term)
+wedding cake|1
+(noun)|bridecake|cake (generic term)
+wedding ceremony|1
+(noun)|wedding|nuptials|hymeneals|ceremony (generic term)|ceremonial (generic term)|ceremonial occasion (generic term)|observance (generic term)
+wedding chest|1
+(noun)|hope chest|chest (generic term)
+wedding day|1
+(noun)|day (generic term)
+wedding dress|1
+(noun)|bridal gown|wedding gown|gown (generic term)
+wedding gift|1
+(noun)|wedding present|present (generic term)
+wedding gown|1
+(noun)|bridal gown|wedding dress|gown (generic term)
+wedding guest|1
+(noun)|guest (generic term)|invitee (generic term)
+wedding licence|1
+(noun)|marriage license|marriage licence|wedding license|license (generic term)|licence (generic term)|permit (generic term)
+wedding license|1
+(noun)|marriage license|marriage licence|wedding licence|license (generic term)|licence (generic term)|permit (generic term)
+wedding march|1
+(noun)|processional march (generic term)|recessional march (generic term)
+wedding night|1
+(noun)|night (generic term)|nighttime (generic term)|dark (generic term)
+wedding party|1
+(noun)|wedding|party (generic term)
+wedding picture|1
+(noun)|photograph (generic term)|photo (generic term)|exposure (generic term)|pic (generic term)
+wedding present|1
+(noun)|wedding gift|present (generic term)
+wedding reception|1
+(noun)|reception (generic term)
+wedding ring|1
+(noun)|wedding band|ring (generic term)|band (generic term)
+wedel|1
+(verb)|ski (generic term)
+wedge|9
+(noun)|wedge shape|cuneus|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|zep|sandwich (generic term)
+(noun)|hacek|diacritical mark (generic term)|diacritic (generic term)
+(noun)|wedge heel|heel (generic term)
+(noun)|iron (generic term)
+(noun)|inclined plane (generic term)
+(noun)|chock|block (generic term)
+(verb)|lodge|stick|deposit|fasten (generic term)|fix (generic term)|secure (generic term)|stick out (related term)|dislodge (antonym)
+(verb)|squeeze|force|move (generic term)|displace (generic term)
+wedge-shaped|2
+(adj)|cuneate|simple (similar term)|unsubdivided (similar term)
+(adj)|cuneal|cuneiform|triangle|trigon|trilateral (related term)
+wedge bone|1
+(noun)|cut of beef (generic term)
+wedge heel|1
+(noun)|wedge|heel (generic term)
+wedge shape|1
+(noun)|wedge|cuneus|triangle (generic term)|trigon (generic term)|trilateral (generic term)
+wedged|1
+(adj)|impacted|compact (similar term)
+wedgie|1
+(noun)|shoe (generic term)
+wedgwood|2
+(noun)|Wedgwood|Josiah Wedgwood|potter (generic term)|thrower (generic term)|ceramicist (generic term)|ceramist (generic term)
+(noun)|Wedgwood|pottery (generic term)|clayware (generic term)
+wedlock|1
+(noun)|marriage|matrimony|union|spousal relationship|marital status (generic term)
+wednesday|1
+(noun)|Wednesday|Midweek|Wed|weekday (generic term)
+wee|4
+(adj)|bitty|bittie|teensy|teentsy|teeny|weeny|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+(adj)|early (similar term)
+(noun)|time (generic term)
+(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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+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 (generic term)|egest (generic term)|eliminate (generic term)|pass (generic term)
+wee small voice|1
+(noun)|small voice|voice of conscience|conscience (generic term)|scruples (generic term)|moral sense (generic term)|sense of right and wrong (generic term)
+weed|4
+(noun)|vascular plant (generic term)|tracheophyte (generic term)|cultivated plant (antonym)
+(noun)|mourning band|band (generic term)
+(noun)|pot|grass|green goddess|dope|gage|sess|sens|smoke|skunk|locoweed|Mary Jane|cannabis (generic term)|marijuana (generic term)|marihuana (generic term)|ganja (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+weed-whacker|1
+(noun)|weeder|hand tool (generic term)
+weed killer|1
+(noun)|herbicide|weedkiller|chemical (generic term)|chemical substance (generic term)
+weed out|1
+(verb)|comb out|get rid of (generic term)|remove (generic term)
+weeded|1
+(adj)|weedless (similar term)
+weeder|2
+(noun)|farmhand (generic term)|fieldhand (generic term)|field hand (generic term)|farm worker (generic term)
+(noun)|weed-whacker|hand tool (generic term)
+weedkiller|1
+(noun)|herbicide|weed killer|chemical (generic term)|chemical substance (generic term)
+weedless|1
+(adj)|weeded (similar term)|weedy (antonym)
+weeds|1
+(noun)|widow's weeds|garment (generic term)
+weedy|2
+(adj)|weedless (antonym)
+(adj)|scraggy|boney|scrawny|skinny|underweight|thin (similar term)|lean (similar term)
+week|3
+(noun)|hebdomad|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|calendar week|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|workweek|work time (generic term)
+week from monday|1
+(noun)|week from Monday|week (generic term)|hebdomad (generic term)
+weekday|2
+(adj)|time unit|unit of time (related term)
+(noun)|day of the week (generic term)
+weekend|2
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(verb)|spend (generic term)|pass (generic term)
+weekend warrior|2
+(noun)|homeowner (generic term)|householder (generic term)
+(noun)|reservist (generic term)
+weekender|2
+(noun)|vacationer (generic term)|vacationist (generic term)
+(noun)|bag (generic term)|traveling bag (generic term)|grip (generic term)|suitcase (generic term)
+weeklong|1
+(adj)|seven-day|long (similar term)
+weekly|3
+(adj)|time period|period of time|period (related term)
+(noun)|series (generic term)|serial (generic term)|serial publication (generic term)
+(adv)|hebdomadally|every week|each week
+weeknight|1
+(noun)|night (generic term)|nighttime (generic term)|dark (generic term)
+weeness|1
+(noun)|diminutiveness|minuteness|petiteness|tininess|smallness (generic term)|littleness (generic term)
+weenie|1
+(noun)|frank|frankfurter|hotdog|hot dog|dog|wiener|wienerwurst|sausage (generic term)
+weenie roast|1
+(noun)|wiener roast|cookout (generic term)
+weensy|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weeny|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+weeny|1
+(adj)|bitty|bittie|teensy|teentsy|teeny|wee|weensy|teensy-weensy|teeny-weeny|itty-bitty|itsy-bitsy|small (similar term)|little (similar term)
+weep|1
+(verb)|cry|express emotion (generic term)|express feelings (generic term)|laugh (antonym)
+weeper|2
+(noun)|crier|unfortunate (generic term)|unfortunate person (generic term)
+(noun)|mourner (generic term)|griever (generic term)|sorrower (generic term)|lamenter (generic term)
+weepiness|1
+(noun)|tearfulness|sadness (generic term)|unhappiness (generic term)
+weeping|2
+(adj)|dolorous|dolourous|lachrymose|tearful|sorrowful (similar term)
+(noun)|crying|tears|bodily process (generic term)|body process (generic term)|bodily function (generic term)|activity (generic term)
+weeping beech|1
+(noun)|Fagus pendula|Fagus sylvatica pendula|beech (generic term)|beech tree (generic term)
+weeping love grass|1
+(noun)|African love grass|Eragrostis curvula|love grass (generic term)|bay grass (generic term)
+weeping spruce|1
+(noun)|Brewer's spruce|Picea breweriana|spruce (generic term)
+weeping tree broom|1
+(noun)|broom (generic term)
+weeping willow|1
+(noun)|Babylonian weeping willow|Salix babylonica|willow (generic term)|willow tree (generic term)
+weepy|1
+(adj)|tearful (similar term)
+weevil|1
+(noun)|beetle (generic term)
+weewee|1
+(noun)|urine|piss|pee|piddle|water|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+weft|1
+(noun)|woof|filling|pick|thread (generic term)|yarn (generic term)
+wegener|1
+(noun)|Wegener|Alfred Lothar Wegener|geophysicist (generic term)
+wei|1
+(noun)|Wei|Wei dynasty|dynasty (generic term)
+wei dynasty|1
+(noun)|Wei|Wei dynasty|dynasty (generic term)
+weigela|1
+(noun)|Weigela florida|shrub (generic term)|bush (generic term)
+weigela florida|1
+(noun)|weigela|Weigela florida|shrub (generic term)|bush (generic term)
+weigh|5
+(verb)|measure (generic term)
+(verb)|consider|count
+(verb)|librate|quantify (generic term)|measure (generic term)
+(verb)|count|matter|be (generic term)|matter to (related term)
+(verb)|press|count (generic term)|matter (generic term)|weigh (generic term)
+weigh anchor|1
+(verb)|weigh the anchor|heave (generic term)|heave up (generic term)|heft (generic term)|heft up (generic term)
+weigh down|2
+(verb)|weigh on|sadden (generic term)|lighten (antonym)
+(verb)|drag down|bear down|bear down on|press down on|press (generic term)
+weigh on|1
+(verb)|weigh down|sadden (generic term)|lighten (antonym)
+weigh the anchor|1
+(verb)|weigh anchor|heave (generic term)|heave up (generic term)|heft (generic term)|heft up (generic term)
+weighbridge|1
+(noun)|scale (generic term)|weighing machine (generic term)
+weighed down|2
+(adj)|heavy|full (similar term)
+(adj)|bowed down|loaded down|overburdened|burdened (similar term)
+weigher|1
+(noun)|official (generic term)|functionary (generic term)
+weighing|1
+(noun)|deliberation|advisement|consideration (generic term)
+weighing machine|1
+(noun)|scale|measuring instrument (generic term)|measuring system (generic term)|measuring device (generic term)
+weight|10
+(noun)|physical property (generic term)
+(noun)|free weight|exercising weight|sports equipment (generic term)
+(noun)|weightiness|importance (generic term)
+(noun)|artifact (generic term)|artefact (generic term)
+(noun)|oppression (generic term)|oppressiveness (generic term)
+(noun)|system of weights|system of measurement (generic term)|metric (generic term)
+(noun)|weight unit|unit of measurement (generic term)|unit (generic term)
+(noun)|weighting|coefficient (generic term)
+(verb)|burden|burthen|weight down|charge (generic term)|unburden (antonym)
+(verb)|slant|angle|bias (generic term)|predetermine (generic term)
+weight-lift|1
+(verb)|weightlift|press|exercise (generic term)|work out (generic term)
+weight down|1
+(verb)|burden|burthen|weight|charge (generic term)|unburden (antonym)
+weight gainer|1
+(noun)|gainer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+weight gaining|1
+(noun)|bodybuilding (generic term)|anaerobic exercise (generic term)|muscle building (generic term)|musclebuilding (generic term)
+weight unit|2
+(noun)|metric weight unit|mass unit (generic term)|metric unit (generic term)|metric (generic term)
+(noun)|weight|unit of measurement (generic term)|unit (generic term)
+weighted|2
+(adj)|leaden|heavy (similar term)
+(adj)|adjusted (similar term)
+weightiness|2
+(noun)|weight|importance (generic term)
+(noun)|heaviness|weight (generic term)|lightness (antonym)
+weighting|1
+(noun)|weight|coefficient (generic term)
+weightless|1
+(adj)|weighty (antonym)
+weightlessness|1
+(noun)|lightness|weight (generic term)|heaviness (antonym)
+weightlift|2
+(noun)|weightlifting|bodybuilding (generic term)|anaerobic exercise (generic term)|muscle building (generic term)|musclebuilding (generic term)
+(verb)|weight-lift|press|exercise (generic term)|work out (generic term)
+weightlifter|1
+(noun)|lifter|athlete (generic term)|jock (generic term)
+weightlifting|1
+(noun)|weightlift|bodybuilding (generic term)|anaerobic exercise (generic term)|muscle building (generic term)|musclebuilding (generic term)
+weighty|5
+(adj)|weightless (antonym)
+(adj)|cogent|telling|persuasive (similar term)
+(adj)|grave|grievous|heavy|important (similar term)|of import (similar term)
+(adj)|heavy (similar term)
+(adj)|corpulent|obese|rotund|fat (similar term)
+weil|2
+(noun)|Weil|Simone Weil|philosopher (generic term)
+(noun)|Weil|Andre Weil|mathematician (generic term)
+weil's disease|1
+(noun)|Weil's disease|swamp fever (generic term)|leptospirosis (generic term)
+weill|1
+(noun)|Weill|Kurt Weill|composer (generic term)
+weimar|1
+(noun)|Weimar|city (generic term)|metropolis (generic term)|urban center (generic term)
+weimar republic|1
+(noun)|Weimar Republic|democracy (generic term)|republic (generic term)|commonwealth (generic term)
+weimaraner|1
+(noun)|Weimaraner|hound (generic term)|hound dog (generic term)
+weinberg|1
+(noun)|Weinberg|Steven Weinberg|physicist (generic term)
+weir|2
+(noun)|dam (generic term)|dike (generic term)|dyke (generic term)
+(noun)|fence (generic term)|fencing (generic term)
+weird|3
+(adj)|eldritch|uncanny|unearthly|supernatural (similar term)
+(adj)|strange (similar term)|unusual (similar term)
+(noun)|Wyrd|Weird|Anglo-Saxon deity (generic term)
+weird sisters|1
+(noun)|Fates|Weird Sisters|Three Weird Sisters|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+weirdie|1
+(noun)|creep|weirdo|weirdy|spook|unpleasant person (generic term)|disagreeable person (generic term)
+weirdness|1
+(noun)|outlandishness|bizarreness|unfamiliarity (generic term)|strangeness (generic term)
+weirdo|2
+(noun)|creep|weirdie|weirdy|spook|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|crazy|loony|looney|lunatic (generic term)|madman (generic term)|maniac (generic term)
+weirdy|1
+(noun)|creep|weirdo|weirdie|spook|unpleasant person (generic term)|disagreeable person (generic term)
+weisenheimer|1
+(noun)|wise guy|smart aleck|wiseacre|wisenheimer|upstart (generic term)
+weismann|1
+(noun)|Weismann|August Friedrich Leopold Weismann|geneticist (generic term)
+weissbier|1
+(noun)|Weissbier|white beer|wheat beer|ale (generic term)
+weisshorn|1
+(noun)|Weisshorn|mountain peak (generic term)
+weizenbier|1
+(noun)|Weizenbier|Weissbier (generic term)|white beer (generic term)|wheat beer (generic term)
+weizenbock|1
+(noun)|Weizenbock|Weissbier (generic term)|white beer (generic term)|wheat beer (generic term)
+weizmann|1
+(noun)|Weizmann|Chaim Weizmann|Chaim Azriel Weizmann|statesman (generic term)|solon (generic term)|national leader (generic term)
+weka|1
+(noun)|maori hen|wood hen|rail (generic term)
+welcher|1
+(noun)|welsher|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+welcome|6
+(adj)|wanted (related term)|unwelcome (antonym)
+(noun)|acceptance (generic term)
+(noun)|greeting (generic term)|salutation (generic term)
+(verb)|accept (generic term)|take (generic term)|have (generic term)
+(verb)|receive|greet (generic term)|recognize (generic term)|recognise (generic term)|say farewell (antonym)
+(verb)|receive (generic term)|take in (generic term)|invite (generic term)
+welcome mat|1
+(noun)|doormat|mat (generic term)
+welcome wagon|1
+(noun)|wheeled vehicle (generic term)
+welcomer|1
+(noun)|greeter|saluter|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+welcoming|1
+(adj)|hospitable (similar term)
+welcoming committee|1
+(noun)|committee (generic term)|citizens committee (generic term)
+weld|5
+(noun)|dyer's rocket|dyer's mignonette|Reseda luteola|reseda (generic term)
+(noun)|Weld|Theodore Dwight Weld|abolitionist (generic term)|emancipationist (generic term)
+(noun)|joint (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+(verb)|unite (generic term)|unify (generic term)|merge (generic term)
+welder|1
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+welder's mask|1
+(noun)|mask (generic term)
+welding|1
+(noun)|fastening (generic term)|attachment (generic term)
+weldment|1
+(noun)|assembly (generic term)
+welfare|3
+(noun)|social welfare|financial aid (generic term)
+(noun)|benefit|good (generic term)|goodness (generic term)
+(noun)|wellbeing|well-being|upbeat|eudaemonia|eudaimonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+welfare-statist|1
+(adj)|welfarist|liberal (similar term)
+welfare case|1
+(noun)|charity case|case (generic term)
+welfare state|1
+(noun)|state (generic term)
+welfare work|1
+(noun)|social service|work (generic term)
+welfare worker|1
+(noun)|social worker|caseworker|public servant (generic term)
+welfarist|1
+(adj)|welfare-statist|liberal (similar term)
+welkin|1
+(noun)|celestial sphere|sphere|empyrean|firmament|heavens|vault of heaven|surface (generic term)
+well|17
+(adj)|asymptomatic (similar term)|symptomless (similar term)|cured (similar term)|healed (similar term)|recovered (similar term)|fit (related term)|healthy (related term)|healthy (related term)|ill (antonym)
+(adj)|good|fortunate (similar term)
+(adj)|advisable (similar term)
+(noun)|excavation (generic term)
+(noun)|vessel (generic term)
+(noun)|wellspring|fountainhead|source (generic term)
+(noun)|shaft (generic term)
+(noun)|compartment (generic term)
+(verb)|swell|surface (generic term)|come up (generic term)|rise up (generic term)|rise (generic term)
+(adv)|good|ill (antonym)
+(adv)|easily
+(adv)|ill (antonym)
+(adv)|considerably|substantially
+(adv)|intimately
+(adv)|advantageously|disadvantageously (antonym)|badly (antonym)
+(adv)|comfortably
+(adv)|badly (antonym)
+well-adjusted|1
+(adj)|well-balanced|adjusted (similar term)
+well-advised|1
+(adj)|advised|considered (similar term)|wise (related term)|ill-advised (antonym)
+well-appointed|1
+(adj)|well-found|furnished (similar term)|equipped (similar term)
+well-balanced|2
+(adj)|balanced (similar term)
+(adj)|well-adjusted|adjusted (similar term)
+well-behaved|1
+(adj)|well behaved|good (similar term)
+well-being|1
+(noun)|wellbeing|welfare|upbeat|eudaemonia|eudaimonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+well-bound|1
+(adj)|bound (similar term)
+well-branched|1
+(adj)|branchy (similar term)
+well-bred|1
+(adj)|well-mannered|refined (similar term)
+well-chosen|1
+(adj)|happy|felicitous (similar term)
+well-conducted|1
+(adj)|organized (similar term)
+well-connected|1
+(adj)|socially connected|connected (similar term)
+well-defined|2
+(adj)|chiseled|distinct (similar term)
+(adj)|clear|ill-defined (antonym)
+well-disposed|1
+(adj)|favorable|friendly (similar term)
+well-done|1
+(adj)|cooked (similar term)
+well-dressed|1
+(adj)|well-groomed|groomed (similar term)
+well-educated|1
+(adj)|enlightened|knowing|knowledgeable|learned|lettered|well-read|educated (similar term)
+well-endowed|1
+(adj)|bosomy|busty|buxom|curvaceous|curvy|full-bosomed|sonsie|sonsy|voluptuous|shapely (similar term)
+well-favored|1
+(adj)|fine-looking|good-looking|better-looking|handsome|well-favoured|beautiful (similar term)
+well-favoured|1
+(adj)|fine-looking|good-looking|better-looking|handsome|well-favored|beautiful (similar term)
+well-fed|1
+(adj)|well-nourished|nourished (similar term)
+well-fixed|1
+(adj)|comfortable|easy|prosperous|well-heeled|well-off|well-situated|well-to-do|rich (similar term)
+well-formed|1
+(adj)|grammatical|ungrammatical (antonym)
+well-found|1
+(adj)|well-appointed|furnished (similar term)|equipped (similar term)
+well-founded|1
+(adj)|tenable|reasonable (similar term)|sensible (similar term)
+well-groomed|2
+(adj)|well-dressed|groomed (similar term)
+(adj)|groomed (similar term)
+well-grooved|1
+(adj)|grooved|established (similar term)|constituted (similar term)
+well-grounded|1
+(adj)|reasoned|sound|valid (similar term)
+well-heeled|1
+(adj)|comfortable|easy|prosperous|well-fixed|well-off|well-situated|well-to-do|rich (similar term)
+well-informed|1
+(adj)|intelligent|sophisticated (similar term)
+well-intentioned|1
+(adj)|well-meaning|well-meant|intended (similar term)
+well-kept|2
+(adj)|kept up|maintained|preserved (similar term)
+(adj)|shipshape|trim|tidy (similar term)
+well-knit|1
+(adj)|well-set|strong (similar term)
+well-known|2
+(adj)|known (similar term)
+(adj)|long-familiar|familiar (similar term)
+well-lighted|1
+(adj)|illuminated|lighted|lit|light (similar term)
+well-lined|1
+(adj)|full (similar term)
+well-made|1
+(adj)|superior (similar term)
+well-mannered|2
+(adj)|well-bred|refined (similar term)
+(adj)|mannerly|polite (similar term)
+well-marked|1
+(adj)|marked (similar term)
+well-matched|1
+(adj)|compatible|matched (similar term)
+well-meaning|2
+(adj)|unthreatening|amicable (similar term)
+(adj)|well-intentioned|well-meant|intended (similar term)
+well-meant|1
+(adj)|well-intentioned|well-meaning|intended (similar term)
+well-mined|1
+(adj)|mined (similar term)
+well-nigh|1
+(adv)|about|just about|almost|most|all but|nearly|near|nigh|virtually
+well-nourished|1
+(adj)|well-fed|nourished (similar term)
+well-off|2
+(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-situated|well-to-do|rich (similar term)
+(adj)|fortunate (similar term)
+well-ordered|1
+(adj)|regular (similar term)
+well-preserved|1
+(adj)|healthy (similar term)
+well-proportioned|1
+(adj)|shapely (similar term)
+well-qualified|1
+(adj)|qualified (similar term)
+well-read|2
+(adj)|informed (similar term)
+(adj)|enlightened|knowing|knowledgeable|learned|lettered|well-educated|educated (similar term)
+well-rounded|1
+(adj)|all-around|all-round|comprehensive (similar term)
+well-set|1
+(adj)|well-knit|strong (similar term)
+well-shaven|1
+(adj)|clean-shaven|smooth-shaven|shaven (similar term)|shaved (similar term)
+well-situated|1
+(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-off|well-to-do|rich (similar term)
+well-spoken|1
+(adj)|articulate (similar term)
+well-stacked|1
+(adj)|built|stacked|shapely (similar term)
+well-thought-of|1
+(adj)|respected|reputable (similar term)
+well-timed|2
+(adj)|timely|seasonable|well timed|opportune (similar term)
+(adv)|seasonably|timely|apropos
+well-to-do|1
+(adj)|comfortable|easy|prosperous|well-fixed|well-heeled|well-off|well-situated|rich (similar term)
+well-tried|1
+(adj)|tested|tried|proved (similar term)|proven (similar term)
+well-turned|2
+(adj)|shapely (similar term)
+(adj)|felicitous (similar term)
+well-wisher|1
+(noun)|sympathizer|sympathiser|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+well-wishing|2
+(adj)|felicitous (similar term)
+(noun)|greeting (generic term)|salutation (generic term)
+well-worn|2
+(adj)|worn (similar term)
+(adj)|banal|commonplace|hackneyed|old-hat|shopworn|stock|threadbare|timeworn|tired|trite|unoriginal (similar term)
+well behaved|1
+(adj)|well-behaved|good (similar term)
+well endowed|1
+(adj)|abundant (similar term)
+well out|1
+(verb)|stream|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+well over|1
+(verb)|overflow|overrun|run over|brim over|spill (generic term)|run out (generic term)
+well point|1
+(noun)|wellpoint|tube (generic term)|tubing (generic term)
+well thought out|1
+(adj)|considered|reasoned|thoughtful (similar term)
+well timed|1
+(adj)|timely|seasonable|well-timed|opportune (similar term)
+well up|1
+(verb)|swell|originate (generic term)|arise (generic term)|rise (generic term)|develop (generic term)|uprise (generic term)|spring up (generic term)|grow (generic term)
+well water|1
+(noun)|ground water|spring water|water (generic term)|H2O (generic term)
+wellbeing|1
+(noun)|well-being|welfare|upbeat|eudaemonia|eudaimonia|prosperity (generic term)|successfulness (generic term)|ill-being (antonym)
+wellborn|1
+(adj)|upper-class (similar term)
+wellerism|1
+(noun)|rhetorical device (generic term)
+welles|1
+(noun)|Welles|Orson Welles|George Orson Welles|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+wellhead|2
+(noun)|wellspring|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|structure (generic term)|construction (generic term)
+wellington|3
+(noun)|Wellington|Duke of Wellington|First Duke of Wellington|Arthur Wellesley|Iron Duke|general (generic term)|full general (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Wellington|capital of New Zealand|national capital (generic term)
+(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot (generic term)
+wellington boot|1
+(noun)|Hessian boot|hessian|jackboot|Wellington|Wellington boot|boot (generic term)
+wellness|1
+(noun)|health|wellbeing (generic term)|well-being (generic term)|welfare (generic term)|upbeat (generic term)|eudaemonia (generic term)|eudaimonia (generic term)|illness (antonym)|unwellness (antonym)
+wellpoint|1
+(noun)|well point|tube (generic term)|tubing (generic term)
+wells|1
+(noun)|Wells|H. G. Wells|Herbert George Wells|writer (generic term)|author (generic term)
+wellspring|2
+(noun)|wellhead|beginning (generic term)|origin (generic term)|root (generic term)|rootage (generic term)|source (generic term)
+(noun)|well|fountainhead|source (generic term)
+welsh|5
+(adj)|Welsh|Cambrian|principality|princedom (related term)
+(noun)|Welshman|Welsh|Cambrian|Cymry|European (generic term)
+(noun)|Welsh|Cymric|Brythonic (generic term)|Brittanic (generic term)
+(noun)|Welsh|Welsh Black|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+(verb)|cheat (generic term)|rip off (generic term)|chisel (generic term)
+welsh black|1
+(noun)|Welsh|Welsh Black|cattle (generic term)|cows (generic term)|kine (generic term)|oxen (generic term)|Bos taurus (generic term)
+welsh corgi|1
+(noun)|corgi|Welsh corgi|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+welsh onion|1
+(noun)|Welsh onion|Japanese leek|Allium fistulosum|onion (generic term)|onion plant (generic term)|Allium cepa (generic term)
+welsh pony|1
+(noun)|Welsh pony|pony (generic term)
+welsh poppy|1
+(noun)|Welsh poppy|Meconopsis cambrica|poppy (generic term)
+welsh rabbit|1
+(noun)|Welsh rarebit|Welsh rabbit|rarebit|dish (generic term)
+welsh rarebit|1
+(noun)|Welsh rarebit|Welsh rabbit|rarebit|dish (generic term)
+welsh springer spaniel|1
+(noun)|Welsh springer spaniel|springer spaniel (generic term)|springer (generic term)
+welsh terrier|1
+(noun)|Welsh terrier|wirehair (generic term)|wirehaired terrier (generic term)|wire-haired terrier (generic term)
+welsher|1
+(noun)|welcher|swindler (generic term)|defrauder (generic term)|chiseller (generic term)|chiseler (generic term)|gouger (generic term)|scammer (generic term)|grifter (generic term)
+welshman|1
+(noun)|Welshman|Welsh|Cambrian|Cymry|European (generic term)
+welt|4
+(noun)|wale|weal|wheal|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|seam (generic term)
+(verb)|flog|whip|lather|lash|slash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|add (generic term)
+weltanschauung|1
+(noun)|Weltanschauung|world view|position (generic term)|view (generic term)|perspective (generic term)
+welted thistle|1
+(noun)|Carduus crispus|thistle (generic term)
+welter|3
+(noun)|clutter|jumble|muddle|fuddle|mare's nest|smother|disorderliness (generic term)|disorder (generic term)
+(verb)|roll over (generic term)
+(verb)|wallow|move (generic term)
+welterweight|4
+(noun)|weight unit (generic term)|weight (generic term)
+(noun)|boxer (generic term)|pugilist (generic term)
+(noun)|wrestler (generic term)|grappler (generic term)|matman (generic term)
+(noun)|prizefighter (generic term)|gladiator (generic term)
+weltschmerz|1
+(noun)|world-weariness|Weltschmerz|melancholy (generic term)
+welty|1
+(noun)|Welty|Eudora Welty|writer (generic term)|author (generic term)
+welwitschia|1
+(noun)|Welwitschia mirabilis|gymnosperm (generic term)
+welwitschia mirabilis|1
+(noun)|welwitschia|Welwitschia mirabilis|gymnosperm (generic term)
+welwitschiaceae|1
+(noun)|Welwitschiaceae|family Welwitschiaceae|gymnosperm family (generic term)
+wembley|1
+(noun)|Wembley|city district (generic term)
+wen|1
+(noun)|sebaceous cyst|pilar cyst|steatocystoma|cyst (generic term)
+wen-ti|1
+(noun)|Wen Ch'ang|Wen-Ti|Chinese deity (generic term)
+wen ch'ang|1
+(noun)|Wen Ch'ang|Wen-Ti|Chinese deity (generic term)
+wench|2
+(noun)|dame|doll|skirt|chick|bird|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(verb)|fornicate (generic term)
+wencher|1
+(noun)|adulterer (generic term)|fornicator (generic term)
+wend|1
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+wendy house|1
+(noun)|playhouse|plaything (generic term)|toy (generic term)
+werdnig-hoffman disease|1
+(noun)|Werdnig-Hoffman disease|autosomal recessive disease (generic term)|autosomal recessive defect (generic term)
+werewolf|1
+(noun)|wolfman|lycanthrope|mythical monster (generic term)|mythical creature (generic term)
+werfel|1
+(noun)|Werfel|Franz Werfel|writer (generic term)|author (generic term)
+werlhof's disease|1
+(noun)|thrombocytopenic purpura|idiopathic thrombocytopenic purpura|purpura hemorrhagica|Werlhof's disease|purpura (generic term)|peliosis (generic term)|autoimmune disease (generic term)|autoimmune disorder (generic term)
+werner karl heisenberg|1
+(noun)|Heisenberg|Werner Karl Heisenberg|nuclear physicist (generic term)
+wernher magnus maximilian von braun|1
+(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer (generic term)|rocket scientist (generic term)
+wernher von braun|1
+(noun)|Braun|von Braun|Wernher von Braun|Wernher Magnus Maximilian von Braun|rocket engineer (generic term)|rocket scientist (generic term)
+wernicke|1
+(noun)|Wernicke|Karl Wernicke|neurologist (generic term)|brain doctor (generic term)
+wernicke's aphasia|1
+(noun)|Wernicke's aphasia|fluent aphasia|receptive aphasia|sensory aphasia|impressive aphasia|aphasia (generic term)
+wernicke's area|1
+(noun)|Wernicke's area|Wernicke's center|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+wernicke's center|1
+(noun)|Wernicke's area|Wernicke's center|center (generic term)|centre (generic term)|nerve center (generic term)|nerve centre (generic term)
+wernicke's encephalopathy|1
+(noun)|Wernicke's encephalopathy|brain disorder (generic term)|encephalopathy (generic term)|brain disease (generic term)
+weser|1
+(noun)|Weser|Weser River|river (generic term)
+weser river|1
+(noun)|Weser|Weser River|river (generic term)
+wesley|2
+(noun)|Wesley|Charles Wesley|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+(noun)|Wesley|John Wesley|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)
+wesleyan|2
+(adj)|Methodist|Wesleyan|Protestant denomination (related term)
+(noun)|Wesleyan|Methodist (generic term)
+wesleyan methodist church|1
+(noun)|Wesleyan Methodist Church|Wesleyan Methodists|Methodist denomination (generic term)
+wesleyan methodists|1
+(noun)|Wesleyan Methodist Church|Wesleyan Methodists|Methodist denomination (generic term)
+wesleyanism|1
+(noun)|Wesleyanism|Wesleyism|Protestantism (generic term)
+wesleyism|1
+(noun)|Wesleyanism|Wesleyism|Protestantism (generic term)
+wessex|1
+(noun)|Wessex|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+west|7
+(adj)|westbound (similar term)|westerly (similar term)|westward (similar term)|western (similar term)|westerly (similar term)|western (similar term)|westerly (similar term)|western (similar term)|westernmost (similar term)|westmost (similar term)|westside (similar term)|east (antonym)
+(noun)|West|Occident|region (generic term)
+(noun)|due west|westward|W|cardinal compass point (generic term)
+(noun)|West|western United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|West|Rebecca West|Dame Rebecca West|Cicily Isabel Fairfield|writer (generic term)|author (generic term)
+(noun)|West|Mae West|actress (generic term)|comedienne (generic term)
+(noun)|West|Benjamin West|painter (generic term)
+west-central|1
+(adj)|western (similar term)
+west-sider|1
+(noun)|West-sider|New Yorker (generic term)
+west africa|1
+(noun)|West Africa|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+west african|2
+(adj)|West African|geographical area|geographic area|geographical region|geographic region (related term)
+(noun)|West African|Niger-Congo (generic term)
+west bank|1
+(noun)|West Bank|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+west bengal|1
+(noun)|West Bengal|state (generic term)|province (generic term)
+west berlin|1
+(noun)|West Berlin|city district (generic term)
+west berliner|1
+(noun)|West Berliner|Berliner (generic term)
+west by north|1
+(noun)|WbN|compass point (generic term)|point (generic term)
+west by south|1
+(noun)|WbS|compass point (generic term)|point (generic term)
+west chadic|1
+(noun)|West Chadic|Chad (generic term)|Chadic (generic term)|Chadic language (generic term)
+west coast|1
+(noun)|West Coast|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+west coast hemlock|1
+(noun)|western hemlock|Pacific hemlock|Tsuga heterophylla|hemlock (generic term)|hemlock tree (generic term)
+west country|1
+(noun)|West Country|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+west end|1
+(noun)|West End|city district (generic term)
+west germanic|1
+(noun)|West Germanic|West Germanic language|Germanic (generic term)|Germanic language (generic term)
+west germanic language|1
+(noun)|West Germanic|West Germanic language|Germanic (generic term)|Germanic language (generic term)
+west germany|1
+(noun)|West Germany|Federal Republic of Germany|European country (generic term)|European nation (generic term)
+west highland white terrier|1
+(noun)|West Highland white terrier|terrier (generic term)
+west indian|1
+(noun)|West Indian|American (generic term)
+west indian cherry|2
+(noun)|barbados cherry|acerola|Surinam cherry|West Indian cherry|Malpighia glabra|dicot (generic term)|dicotyledon (generic term)|magnoliopsid (generic term)|exogen (generic term)
+(noun)|acerola|barbados cherry|surinam cherry|West Indian cherry|berry (generic term)
+west indian jasmine|1
+(noun)|West Indian jasmine|pagoda tree|Plumeria alba|frangipani (generic term)|frangipanni (generic term)
+west indian satinwood|1
+(noun)|satinwood|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood (generic term)
+west indian smallpox|1
+(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|white pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+west indian snowberry|1
+(noun)|blolly|West Indian snowberry|Chiococca alba|shrub (generic term)|bush (generic term)
+west indies|1
+(noun)|West Indies|the Indies|archipelago (generic term)
+west malaysia|1
+(noun)|West Malaysia|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+west midland|1
+(noun)|West Midland|Middle English (generic term)
+west nile encephalitis|1
+(noun)|West Nile encephalitis|encephalitis (generic term)|cephalitis (generic term)|phrenitis (generic term)
+west nile encephalitis virus|1
+(noun)|West Nile virus|West Nile encephalitis virus|flavivirus (generic term)
+west nile virus|1
+(noun)|West Nile virus|West Nile encephalitis virus|flavivirus (generic term)
+west northwest|1
+(noun)|WNW|compass point (generic term)|point (generic term)
+west pakistan|1
+(noun)|Pakistan|Islamic Republic of Pakistan|West Pakistan|Asian country (generic term)|Asian nation (generic term)
+west palm beach|1
+(noun)|West Palm Beach|town (generic term)
+west point|1
+(noun)|West Point|military installation (generic term)
+west saxon|3
+(noun)|West Saxon|Saxon (generic term)
+(noun)|West Saxon|Old English (generic term)|Anglo-Saxon (generic term)
+(noun)|Southwestern|West Saxon|Middle English (generic term)
+west side|1
+(noun)|side (generic term)
+west southwest|1
+(noun)|WSW|compass point (generic term)|point (generic term)
+west sussex|1
+(noun)|West Sussex|county (generic term)
+west tocharian|1
+(noun)|Kuchean|West Tocharian|Kuchean dialect|Tocharian (generic term)
+west virginia|1
+(noun)|West Virginia|Mountain State|WV|American state (generic term)
+west virginian|1
+(noun)|West Virginian|American (generic term)
+west wind|1
+(noun)|wester|wind (generic term)|air current (generic term)|current of air (generic term)
+west yorkshire|1
+(noun)|West Yorkshire|county (generic term)
+westbound|1
+(adj)|westerly|westward|west (similar term)
+wester|1
+(noun)|west wind|wind (generic term)|air current (generic term)|current of air (generic term)
+westerly|4
+(adj)|western|west (similar term)
+(adj)|westbound|westward|west (similar term)
+(noun)|prevailing westerly|west wind (generic term)|wester (generic term)
+(adv)|easterly (antonym)
+western|6
+(adj)|occidental (similar term)|Hesperian (similar term)|eastern (antonym)
+(adj)|southwestern (similar term)|midwestern (similar term)|northwestern (similar term)|west-central (similar term)|eastern (antonym)
+(adj)|west (similar term)
+(adj)|westerly|west (similar term)
+(noun)|Western|horse opera|feature (generic term)|feature film (generic term)
+(noun)|western sandwich|sandwich (generic term)
+western australia|1
+(noun)|Western Australia|Australian state (generic term)
+western australia coral pea|1
+(noun)|Western Australia coral pea|Hardenbergia comnptoniana|vine (generic term)
+western ax|1
+(noun)|double-bitted ax|double-bitted axe|Western ax|Western axe|ax (generic term)|axe (generic term)
+western axe|1
+(noun)|double-bitted ax|double-bitted axe|Western ax|Western axe|ax (generic term)|axe (generic term)
+western balsam poplar|1
+(noun)|black cottonwood|Western balsam poplar|Populus trichocarpa|cottonwood (generic term)
+western big-eared bat|1
+(noun)|Plecotus townsendi|long-eared bat (generic term)
+western birch|1
+(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+western black-legged tick|1
+(noun)|Ixodes pacificus|hard tick (generic term)|ixodid (generic term)
+western blackberry|1
+(noun)|western dewberry|Rubus ursinus|blackberry (generic term)|blackberry bush (generic term)
+western blind snake|1
+(noun)|Leptotyphlops humilis|blind snake (generic term)|worm snake (generic term)
+western box turtle|1
+(noun)|Western box turtle|Terrapene ornata|box turtle (generic term)|box tortoise (generic term)
+western buttercup|1
+(noun)|Ranunculus occidentalis|buttercup (generic term)|butterflower (generic term)|butter-flower (generic term)|crowfoot (generic term)|goldcup (generic term)|kingcup (generic term)
+western chimpanzee|1
+(noun)|Pan troglodytes verus|chimpanzee (generic term)|chimp (generic term)|Pan troglodytes (generic term)
+western chokecherry|1
+(noun)|Prunus virginiana demissa|Prunus demissa|chokecherry (generic term)|chokecherry tree (generic term)|Prunus virginiana (generic term)
+western church|1
+(noun)|Roman Catholic|Western Church|Roman Catholic Church|Church of Rome|Roman Church|Catholic Church (generic term)
+western civilization|1
+(noun)|Western culture|Western civilization|culture (generic term)|civilization (generic term)|civilisation (generic term)
+western coral snake|1
+(noun)|Micruroides euryxanthus|coral snake (generic term)|harlequin-snake (generic term)|New World coral snake (generic term)
+western crab apple|1
+(noun)|Iowa crab|Iowa crab apple|prairie crab|Malus ioensis|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+western culture|1
+(noun)|Western culture|Western civilization|culture (generic term)|civilization (generic term)|civilisation (generic term)
+western dewberry|1
+(noun)|western blackberry|Rubus ursinus|blackberry (generic term)|blackberry bush (generic term)
+western diamondback|1
+(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake (generic term)|rattler (generic term)
+western diamondback rattlesnake|1
+(noun)|Western diamondback|Western diamondback rattlesnake|Crotalus atrox|rattlesnake (generic term)|rattler (generic term)
+western empire|1
+(noun)|Western Roman Empire|Western Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+western fence lizard|1
+(noun)|swift|blue-belly|Sceloporus occidentalis|fence lizard (generic term)
+western gray squirrel|1
+(noun)|western grey squirrel|Sciurus griseus|tree squirrel (generic term)
+western grey squirrel|1
+(noun)|western gray squirrel|Sciurus griseus|tree squirrel (generic term)
+western hemisphere|1
+(noun)|occident|New World|hemisphere (generic term)
+western hemlock|1
+(noun)|Pacific hemlock|west coast hemlock|Tsuga heterophylla|hemlock (generic term)|hemlock tree (generic term)
+western holly fern|1
+(noun)|Polystichum scopulinum|holly fern (generic term)
+western honey mesquite|1
+(noun)|honey mesquite|Western honey mesquite|Prosopis glandulosa|mesquite (generic term)|mesquit (generic term)
+western islands|1
+(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago (generic term)
+western isles|1
+(noun)|Hebrides|Hebridean Islands|Hebridean Isles|Western Islands|Western Isles|archipelago (generic term)
+western kingbird|1
+(noun)|Arkansas kingbird|kingbird (generic term)|Tyrannus tyrannus (generic term)
+western ladies' tresses|1
+(noun)|Spiranthes porrifolia|ladies' tresses (generic term)|lady's tresses (generic term)
+western larch|1
+(noun)|western tamarack|Oregon larch|Larix occidentalis|larch (generic term)|larch tree (generic term)
+western lowland gorilla|1
+(noun)|Gorilla gorilla gorilla|gorilla (generic term)|Gorilla gorilla (generic term)
+western malayo-polynesian|1
+(noun)|Western Malayo-Polynesian|Malayo-Polynesian (generic term)|Polynesian (generic term)
+western meadowlark|1
+(noun)|Sturnella neglecta|meadowlark (generic term)|lark (generic term)
+western mountain ash|1
+(noun)|Western mountain ash|Sorbus sitchensis|mountain ash (generic term)
+western mugwort|1
+(noun)|white sage|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+western narrow-mouthed toad|1
+(noun)|Gastrophryne olivacea|frog (generic term)|toad (generic term)|toad frog (generic term)|anuran (generic term)|batrachian (generic term)|salientian (generic term)
+western omelet|1
+(noun)|firm omelet (generic term)
+western paper birch|1
+(noun)|swamp birch|water birch|mountain birch|Western paper birch|Western birch|Betula fontinalis|birch (generic term)|birch tree (generic term)
+western pasqueflower|1
+(noun)|Western pasqueflower|Pulsatilla occidentalis|Anemone occidentalis|pasqueflower (generic term)|pasque flower (generic term)
+western pipistrel|1
+(noun)|SPipistrellus hesperus|vespertilian bat (generic term)|vespertilionid (generic term)
+western poison oak|1
+(noun)|Toxicodendron diversilobum|Rhus diversiloba|poisonous plant (generic term)
+western poppy|1
+(noun)|Papaver californicum|poppy (generic term)
+western prince's pine|1
+(noun)|love-in-winter|Chimaphila umbellata|Chimaphila corymbosa|pipsissewa (generic term)|prince's pine (generic term)
+western ragweed|1
+(noun)|perennial ragweed|Ambrosia psilostachya|ragweed (generic term)|ambrosia (generic term)|bitterweed (generic term)
+western rattlesnake|1
+(noun)|prairie rattlesnake|prairie rattler|Western rattlesnake|Crotalus viridis|rattlesnake (generic term)|rattler (generic term)
+western red-backed salamander|1
+(noun)|Plethodon vehiculum|salamander (generic term)
+western red cedar|1
+(noun)|red cedar|canoe cedar|Thuja plicata|arborvitae (generic term)
+western redbud|1
+(noun)|California redbud|Cercis occidentalis|shrub (generic term)|bush (generic term)
+western ribbon snake|1
+(noun)|Western ribbon snake|Thamnophis proximus|garter snake (generic term)|grass snake (generic term)
+western roman empire|1
+(noun)|Western Roman Empire|Western Empire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+western saddle|1
+(noun)|stock saddle|Western saddle|saddle (generic term)
+western sahara|1
+(noun)|Western Sahara|Spanish Sahara|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+western samoa|1
+(noun)|Samoa|Independent State of Samoa|Western Samoa|Samoa i Sisifo|country (generic term)|state (generic term)|land (generic term)
+western samoan monetary unit|1
+(noun)|Western Samoan monetary unit|monetary unit (generic term)
+western sand cherry|1
+(noun)|Western sand cherry|Rocky Mountains cherry|Prunus besseyi|subshrub (generic term)|suffrutex (generic term)
+western sandwich|1
+(noun)|western|sandwich (generic term)
+western saxifrage|1
+(noun)|Saxifraga occidentalis|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+western silvery aster|1
+(noun)|Western silvery aster|aster (generic term)
+western skink|1
+(noun)|Eumeces skiltonianus|skink (generic term)|scincid (generic term)|scincid lizard (generic term)
+western spadefoot|1
+(noun)|Scaphiopus hammondii|spadefoot (generic term)|spadefoot toad (generic term)
+western tamarack|1
+(noun)|western larch|Oregon larch|Larix occidentalis|larch (generic term)|larch tree (generic term)
+western tanager|1
+(noun)|Piranga ludoviciana|tanager (generic term)
+western toad|1
+(noun)|Bufo boreas|true toad (generic term)
+western united states|1
+(noun)|West|western United States|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+western wall flower|1
+(noun)|Erysimum asperum|Cheiranthus asperus|Erysimum arkansanum|flower (generic term)
+western wheatgrass|1
+(noun)|bluestem wheatgrass|Agropyron smithii|wheatgrass (generic term)|wheat-grass (generic term)
+western whiptail|1
+(noun)|Cnemidophorus tigris|whiptail (generic term)|whiptail lizard (generic term)
+western white pine|1
+(noun)|silver pine|mountain pine|Pinus monticola|white pine (generic term)
+western wood pewee|1
+(noun)|Contopus sordidulus|pewee (generic term)|peewee (generic term)|peewit (generic term)|pewit (generic term)|wood pewee (generic term)|Contopus virens (generic term)
+western yellow pine|1
+(noun)|ponderosa|ponderosa pine|bull pine|Pinus ponderosa|yellow pine (generic term)
+western yew|1
+(noun)|Pacific yew|California yew|Taxus brevifolia|yew (generic term)
+westerner|1
+(noun)|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+westernisation|1
+(noun)|Westernization|Westernisation|assimilation (generic term)|absorption (generic term)
+westernise|1
+(verb)|occidentalize|occidentalise|westernize|change (generic term)|alter (generic term)|modify (generic term)|orientalise (antonym)|orientalize (antonym)
+westernization|1
+(noun)|Westernization|Westernisation|assimilation (generic term)|absorption (generic term)
+westernize|1
+(verb)|occidentalize|occidentalise|westernise|change (generic term)|alter (generic term)|modify (generic term)|orientalise (antonym)|orientalize (antonym)
+westernmost|1
+(adj)|westmost|west (similar term)
+westinghouse|1
+(noun)|Westinghouse|George Westinghouse|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+westland pine|1
+(noun)|silver pine|Lagarostrobus colensoi|conifer (generic term)|coniferous tree (generic term)
+westminster|1
+(noun)|Westminster|City of Westminster|borough (generic term)
+westminster abbey|1
+(noun)|Westminster Abbey|minster (generic term)
+westmost|1
+(adj)|westernmost|west (similar term)
+weston|1
+(noun)|Weston|Edward Weston|photographer (generic term)|lensman (generic term)
+weston cell|1
+(noun)|Weston cell|cadmium cell|standard cell (generic term)
+westside|1
+(adj)|west (similar term)
+westward|3
+(adj)|westbound|westerly|west (similar term)
+(noun)|west|due west|W|cardinal compass point (generic term)
+(adv)|westwards
+westwards|1
+(adv)|westward
+wet|8
+(adj)|bedewed (similar term)|dewy (similar term)|besprent (similar term)|sprinkled (similar term)|boggy (similar term)|marshy (similar term)|miry (similar term)|mucky (similar term)|muddy (similar term)|quaggy (similar term)|sloppy (similar term)|sloughy (similar term)|soggy (similar term)|squashy (similar term)|swampy (similar term)|waterlogged (similar term)|clammy (similar term)|dank (similar term)|damp (similar term)|dampish (similar term)|moist (similar term)|drenched (similar term)|saturated (similar term)|soaked (similar term)|soaking (similar term)|sodden (similar term)|sopping (similar term)|soppy (similar term)|dripping (similar term)|drippy (similar term)|drizzly (similar term)|dunked (similar term)|soused (similar term)|humid (similar term)|misty (similar term)|muggy (similar term)|steamy (similar term)|sticky (similar term)|perspiring (similar term)|sweating (similar term)|sweaty (similar term)|reeking (similar term)|dripping (similar term)|watery (similar term)|rheumy (similar term)|sloppy (similar term)|showery (similar term)|rainy (similar term)|steaming (similar term)|steamy (similar term)|sticky (similar term)|tacky (similar term)|undried (similar term)|washed (similar term)|watery (similar term)|dry (antonym)
+(adj)|dry (antonym)
+(adj)|lactating|fresh (similar term)|dry (antonym)
+(adj)|alcoholic (similar term)
+(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 (similar term)|drunk (similar term)|inebriated (similar term)
+(noun)|moisture|wetness (generic term)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)|dry (antonym)
+(verb)|make (generic term)|urinate (generic term)|piddle (generic term)|puddle (generic term)|micturate (generic term)|piss (generic term)|pee (generic term)|pee-pee (generic term)|make water (generic term)|relieve oneself (generic term)|take a leak (generic term)|spend a penny (generic term)|wee (generic term)|wee-wee (generic term)|pass water (generic term)
+wet-bulb thermometer|1
+(noun)|thermometer (generic term)|dry-bulb thermometer (antonym)
+wet-nurse|2
+(noun)|wet nurse|wetnurse|amah|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+(verb)|breastfeed|bottle-feed|suckle|suck|nurse|lactate|give suck|feed (generic term)|give (generic term)|bottlefeed (antonym)
+wet bar|1
+(noun)|bar (generic term)
+wet blanket|1
+(noun)|spoilsport|killjoy|party pooper|unwelcome person (generic term)|persona non grata (generic term)
+wet cell|1
+(noun)|voltaic cell (generic term)|galvanic cell (generic term)|primary cell (generic term)
+wet dream|1
+(noun)|dream (generic term)|dreaming (generic term)
+wet fly|1
+(noun)|fly (generic term)|dry fly (antonym)
+wet lung|1
+(noun)|adult respiratory distress syndrome|ARDS|white lung|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+wet nurse|1
+(noun)|wet-nurse|wetnurse|amah|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+wet suit|1
+(noun)|garment (generic term)
+wetback|1
+(noun)|greaser|taco|Mexican (generic term)
+wether|1
+(noun)|sheep (generic term)
+wetland|1
+(noun)|land (generic term)|ground (generic term)|soil (generic term)
+wetness|1
+(noun)|condition (generic term)|status (generic term)|dryness (antonym)
+wetnurse|1
+(noun)|wet nurse|wet-nurse|amah|nanny (generic term)|nursemaid (generic term)|nurse (generic term)
+wetter|3
+(noun)|wetting agent|surfactant|surface-active agent|chemical agent (generic term)
+(noun)|workman (generic term)|workingman (generic term)|working man (generic term)|working person (generic term)
+(noun)|bedwetter|bed wetter|pisser (generic term)|urinator (generic term)
+wetting|2
+(noun)|change of state (generic term)
+(noun)|leak|making water|passing water|micturition (generic term)|urination (generic term)
+wetting agent|1
+(noun)|wetter|surfactant|surface-active agent|chemical agent (generic term)
+weymouth pine|1
+(noun)|American white pine|eastern white pine|Pinus strobus|white pine (generic term)
+whack|3
+(noun)|sound (generic term)
+(noun)|knock|belt|rap|whang|blow (generic term)
+(verb)|wham|whop|wallop|hit (generic term)
+whacked|1
+(adj)|tired (similar term)
+whacker|1
+(noun)|whopper|thing (generic term)
+whacking|2
+(adj)|large (similar term)|big (similar term)
+(noun)|beating|thrashing|licking|drubbing|lacing|trouncing|corporal punishment (generic term)
+whacko|1
+(noun)|nutter|wacko|eccentric (generic term)|eccentric person (generic term)|flake (generic term)|oddball (generic term)|geek (generic term)
+whacky|2
+(adj)|cockamamie|cockamamy|goofy|sappy|silly|wacky|zany|foolish (similar term)
+(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 (similar term)
+whale|3
+(noun)|giant|hulk|heavyweight|large person (generic term)
+(noun)|cetacean (generic term)|cetacean mammal (generic term)|blower (generic term)
+(verb)|hunt (generic term)|run (generic term)|hunt down (generic term)|track down (generic term)
+whale louse|1
+(noun)|amphipod (generic term)
+whale oil|1
+(noun)|train oil|animal oil (generic term)
+whale shark|1
+(noun)|Rhincodon typus|shark (generic term)
+whale sucker|1
+(noun)|whalesucker|Remilegia australis|remora (generic term)|suckerfish (generic term)|sucking fish (generic term)
+whaleboat|1
+(noun)|sea boat (generic term)
+whalebone|1
+(noun)|baleen|horn (generic term)
+whalebone whale|1
+(noun)|baleen whale|whale (generic term)
+whaler|2
+(noun)|mariner (generic term)|seaman (generic term)|tar (generic term)|Jack-tar (generic term)|Jack (generic term)|old salt (generic term)|seafarer (generic term)|gob (generic term)|sea dog (generic term)
+(noun)|whaling ship|ship (generic term)
+whalesucker|1
+(noun)|whale sucker|Remilegia australis|remora (generic term)|suckerfish (generic term)|sucking fish (generic term)
+whaling gun|1
+(noun)|gun (generic term)
+whaling ship|1
+(noun)|whaler|ship (generic term)
+wham|1
+(verb)|whack|whop|wallop|hit (generic term)
+whammy|2
+(noun)|reverse (generic term)|reversal (generic term)|setback (generic term)|blow (generic term)|black eye (generic term)
+(noun)|hex|jinx|curse|spell (generic term)|magic spell (generic term)|magical spell (generic term)|charm (generic term)
+whang|4
+(noun)|knock|belt|rap|whack|blow (generic term)
+(verb)|beat (generic term)
+(verb)|hit (generic term)
+(verb)|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+whap|1
+(verb)|sock|bop|whop|bonk|bash|hit (generic term)
+wharf|6
+(noun)|pier|wharfage|dock|platform (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|store (generic term)
+(verb)|drop (generic term)|drop off (generic term)|set down (generic term)|put down (generic term)|unload (generic term)|discharge (generic term)
+(verb)|moor|berth|dock (generic term)
+(verb)|moor (generic term)|berth (generic term)|tie up (generic term)
+wharf rat|2
+(noun)|sneak thief (generic term)|pilferer (generic term)|snitcher (generic term)
+(noun)|brown rat (generic term)|Norway rat (generic term)|Rattus norvegicus (generic term)
+wharfage|2
+(noun)|quayage|fee (generic term)
+(noun)|pier|wharf|dock|platform (generic term)
+wharton|1
+(noun)|Wharton|Edith Wharton|Edith Newbold Jones Wharton|writer (generic term)|author (generic term)
+what for|1
+(noun)|rebuke (generic term)|reproof (generic term)|reproval (generic term)|reprehension (generic term)|reprimand (generic term)
+what is more|1
+(adv)|furthermore|moreover
+whatchamacallit|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallum|whatsis|widget|stuff (generic term)
+whatchamacallum|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatsis|widget|stuff (generic term)
+whatever|1
+(adj)|any|whatsoever|some (similar term)
+whatever may come|1
+(adv)|come hell or high water|no matter what happens
+whatnot|1
+(noun)|bric-a-brac|knickknack|nicknack|knickknackery|curio (generic term)|curiosity (generic term)|oddity (generic term)|oddment (generic term)|peculiarity (generic term)|rarity (generic term)
+whatsis|1
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|widget|stuff (generic term)
+whatsoever|1
+(adj)|any|whatever|some (similar term)
+wheal|1
+(noun)|wale|welt|weal|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+wheat|2
+(noun)|cereal (generic term)|cereal grass (generic term)
+(noun)|wheat berry|grain (generic term)|food grain (generic term)|cereal (generic term)
+wheat-grass|1
+(noun)|wheatgrass|grass (generic term)
+wheat beer|1
+(noun)|Weissbier|white beer|ale (generic term)
+wheat berry|2
+(noun)|grain (generic term)|caryopsis (generic term)
+(noun)|wheat|grain (generic term)|food grain (generic term)|cereal (generic term)
+wheat eel|1
+(noun)|wheatworm|wheat eelworm|Tylenchus tritici|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+wheat eelworm|1
+(noun)|wheatworm|wheat eel|Tylenchus tritici|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+wheat field|1
+(noun)|wheatfield|grainfield (generic term)|grain field (generic term)
+wheat flag smut|1
+(noun)|Urocystis tritici|flag smut fungus (generic term)
+wheat flour|1
+(noun)|flour (generic term)
+wheat future|1
+(noun)|future (generic term)
+wheat germ|1
+(noun)|nutriment (generic term)|nourishment (generic term)|nutrition (generic term)|sustenance (generic term)|aliment (generic term)|alimentation (generic term)|victuals (generic term)
+wheat gluten|1
+(noun)|gluten (generic term)
+wheat rust|1
+(noun)|Puccinia graminis|rust (generic term)|rust fungus (generic term)
+wheat scab|1
+(noun)|head blight (generic term)
+wheatear|1
+(noun)|thrush (generic term)
+wheately elm|1
+(noun)|Jersey elm|guernsey elm|Ulmus sarniensis|Ulmus campestris sarniensis|Ulmus campestris wheatleyi|elm (generic term)|elm tree (generic term)
+wheaten|1
+(adj)|whole-wheat|wholemeal|grain|food grain|cereal (related term)
+wheatfield|1
+(noun)|wheat field|grainfield (generic term)|grain field (generic term)
+wheatflake|1
+(noun)|cold cereal (generic term)|dry cereal (generic term)
+wheatgrass|1
+(noun)|wheat-grass|grass (generic term)
+wheatley|1
+(noun)|Wheatley|Phillis Wheatley|poet (generic term)
+wheatstone|1
+(noun)|Wheatstone|Sir Charles Wheatstone|physicist (generic term)|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+wheatstone bridge|1
+(noun)|Wheatstone bridge|bridge (generic term)|bridge circuit (generic term)
+wheatworm|1
+(noun)|wheat eel|wheat eelworm|Tylenchus tritici|nematode (generic term)|nematode worm (generic term)|roundworm (generic term)
+wheedle|1
+(verb)|cajole|palaver|blarney|coax|sweet-talk|inveigle|persuade (generic term)
+wheedler|1
+(noun)|coaxer|persuader (generic term)|inducer (generic term)
+wheedling|1
+(noun)|blandishment|enticement (generic term)|temptation (generic term)
+wheel|11
+(noun)|machine (generic term)|simple machine (generic term)
+(noun)|steering wheel|handwheel (generic term)
+(noun)|force (generic term)
+(noun)|helm (generic term)
+(noun)|roulette wheel|game equipment (generic term)
+(noun)|rack|instrument of torture (generic term)
+(noun)|bicycle|bike|cycle|wheeled vehicle (generic term)
+(verb)|wheel around|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|wheel around|transport (generic term)
+(verb)|roll|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|bicycle|cycle|bike|pedal|ride (generic term)
+wheel-like|1
+(adj)|round (similar term)|circular (similar term)
+wheel and axle|1
+(noun)|hoist (generic term)
+wheel around|2
+(verb)|wheel|transport (generic term)
+(verb)|wheel|revolve (generic term)|go around (generic term)|rotate (generic term)
+wheel bug|1
+(noun)|Arilus cristatus|assassin bug (generic term)|reduviid (generic term)
+wheel horse|1
+(noun)|wheeler|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+wheel lock|1
+(noun)|gunlock (generic term)|firing mechanism (generic term)
+wheel spoke|1
+(noun)|spoke|radius|support (generic term)
+wheel tree|1
+(noun)|firewheel tree|Stenocarpus sinuatus|tree (generic term)
+wheelbarrow|2
+(noun)|barrow|garden cart|lawn cart|handcart (generic term)|pushcart (generic term)|cart (generic term)|go-cart (generic term)
+(verb)|transport (generic term)
+wheelbase|1
+(noun)|distance (generic term)
+wheelchair|1
+(noun)|chair (generic term)
+wheeled|1
+(adj)|wheelless (antonym)
+wheeled vehicle|1
+(noun)|vehicle (generic term)|container (generic term)
+wheeler|5
+(noun)|Wheeler|Sir Mortimer Wheeler|Sir Robert Eric Mortimer Wheeler|archeologist (generic term)|archaeologist (generic term)
+(noun)|wheelwright|wright (generic term)
+(noun)|marcher (generic term)|parader (generic term)
+(noun)|cyclist|bicyclist|bicycler|pedaler (generic term)|pedaller (generic term)
+(noun)|wheel horse|draft horse (generic term)|draught horse (generic term)|dray horse (generic term)
+wheeler dealer|1
+(noun)|hustler|operator|opportunist (generic term)|self-seeker (generic term)
+wheeler peak|1
+(noun)|Wheeler Peak|mountain peak (generic term)
+wheelhouse|1
+(noun)|pilothouse|compartment (generic term)
+wheeling|2
+(noun)|Wheeling|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|rolling|propulsion (generic term)|actuation (generic term)
+wheelless|1
+(adj)|wheeled (antonym)
+wheelwork|1
+(noun)|mechanical device (generic term)
+wheelwright|1
+(noun)|wheeler|wright (generic term)
+wheeze|3
+(noun)|breathing (generic term)|external respiration (generic term)|respiration (generic term)|ventilation (generic term)
+(noun)|scheme (generic term)|strategy (generic term)
+(verb)|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+wheezily|1
+(adv)|wheezingly
+wheeziness|1
+(noun)|symptom (generic term)
+wheezing|1
+(adj)|asthmatic|wheezy|unhealthy (similar term)
+wheezingly|1
+(adv)|wheezily
+wheezy|2
+(adj)|reedy|noisy (similar term)
+(adj)|asthmatic|wheezing|unhealthy (similar term)
+whelk|3
+(noun)|seafood (generic term)
+(noun)|seasnail (generic term)
+(verb)|snail (generic term)
+whelm|1
+(verb)|overwhelm|overpower|sweep over|overcome|overtake|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+whelp|2
+(noun)|pup|young mammal (generic term)
+(verb)|pup|litter (generic term)
+whelped|1
+(adj)|born (similar term)
+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
+whereabouts|1
+(noun)|location (generic term)
+wherefore|1
+(noun)|why|reason (generic term)|ground (generic term)
+wherewithal|1
+(noun)|means (generic term)|substance (generic term)
+wherry|2
+(noun)|Norfolk wherry|barge (generic term)|flatboat (generic term)|hoy (generic term)|lighter (generic term)
+(noun)|dinghy (generic term)|dory (generic term)|rowboat (generic term)
+whet|2
+(verb)|quicken|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|sharpen (generic term)
+whetstone|1
+(noun)|stone (generic term)
+whey|2
+(noun)|milk whey|serum (generic term)|blood serum (generic term)
+(noun)|dairy product (generic term)
+whicker|2
+(noun)|neigh|nicker|whinny|cry (generic term)
+(verb)|neigh|nicker|whinny|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+whidah|1
+(noun)|whydah|widow bird|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+whiff|8
+(noun)|puff|puff of air|gust (generic term)|blast (generic term)|blow (generic term)
+(noun)|lefteye flounder (generic term)|lefteyed flounder (generic term)
+(noun)|strikeout (generic term)
+(verb)|sniff|smell (generic term)|sniff out (related term)
+(verb)|blow (generic term)
+(verb)|strike out (generic term)
+(verb)|puff|smoke (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+whiffer|1
+(noun)|batter (generic term)|hitter (generic term)|slugger (generic term)|batsman (generic term)
+whiffletree|1
+(noun)|whippletree|swingletree|crossbar (generic term)
+whig|3
+(noun)|Whig|Englishman (generic term)|liberal (generic term)|liberalist (generic term)|progressive (generic term)
+(noun)|Whig|supporter (generic term)|protagonist (generic term)|champion (generic term)|admirer (generic term)|booster (generic term)|friend (generic term)
+(noun)|Whig|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+whig party|1
+(noun)|Whig Party|party (generic term)|political party (generic term)
+while|1
+(noun)|piece|spell|patch|time (generic term)
+while away|1
+(verb)|get through|spend (generic term)|pass (generic term)
+whim|2
+(noun)|caprice|impulse|desire (generic term)
+(noun)|notion|whimsy|whimsey|idea (generic term)|thought (generic term)
+whimper|2
+(noun)|whine|complaint (generic term)
+(verb)|wail|mewl|pule|cry (generic term)|weep (generic term)
+whimsey|2
+(noun)|notion|whim|whimsy|idea (generic term)|thought (generic term)
+(noun)|flightiness|arbitrariness|whimsicality|whimsy|capriciousness|irresponsibility (generic term)|irresponsibleness (generic term)
+whimsical|1
+(adj)|capricious|impulsive|arbitrary (similar term)
+whimsicality|2
+(noun)|flightiness|arbitrariness|whimsy|whimsey|capriciousness|irresponsibility (generic term)|irresponsibleness (generic term)
+(noun)|impishness|mischievousness|puckishness|playfulness (generic term)|fun (generic term)
+whimsically|1
+(adv)|fancifully
+whimsy|2
+(noun)|notion|whim|whimsey|idea (generic term)|thought (generic term)
+(noun)|flightiness|arbitrariness|whimsicality|whimsey|capriciousness|irresponsibility (generic term)|irresponsibleness (generic term)
+whin|3
+(noun)|gorse|furze|Irish gorse|Ulex europaeus|shrub (generic term)|bush (generic term)
+(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|woadwaxen|Genista tinctoria|broom (generic term)
+(noun)|whinstone|rock (generic term)|stone (generic term)
+whinberry|1
+(noun)|bilberry|whortleberry|blaeberry|Viccinium myrtillus|blueberry (generic term)|blueberry bush (generic term)
+whinchat|1
+(noun)|Saxicola rubetra|Old World chat (generic term)|chat (generic term)
+whine|4
+(noun)|whimper|complaint (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|snivel|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+(verb)|grizzle|yammer|yawp|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+whiner|1
+(noun)|complainer|moaner|sniveller|crybaby|bellyacher|grumbler|squawker|unpleasant person (generic term)|disagreeable person (generic term)
+whiney|1
+(adj)|fretful|querulous|whining|whiny|complaining (similar term)|complaintive (similar term)
+whining|2
+(adj)|noisy (similar term)
+(adj)|fretful|querulous|whiney|whiny|complaining (similar term)|complaintive (similar term)
+whinny|2
+(noun)|neigh|nicker|whicker|cry (generic term)
+(verb)|neigh|nicker|whicker|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+whinstone|1
+(noun)|whin|rock (generic term)|stone (generic term)
+whiny|1
+(adj)|fretful|querulous|whiney|whining|complaining (similar term)|complaintive (similar term)
+whip|11
+(noun)|instrument (generic term)
+(noun)|party whip|legislator (generic term)
+(noun)|dessert (generic term)|sweet (generic term)|afters (generic term)
+(noun)|flexibility (generic term)|flexibleness (generic term)
+(noun)|lash|whiplash|blow (generic term)
+(verb)|flog|welt|lather|lash|slash|strap|trounce|beat (generic term)|beat up (generic term)|work over (generic term)
+(verb)|worst|pip|mop up|rack up|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+(verb)|convulse (generic term)|thresh (generic term)|thresh about (generic term)|thrash (generic term)|thrash about (generic term)|slash (generic term)|toss (generic term)|jactitate (generic term)
+(verb)|lash|strike (generic term)
+(verb)|whisk|beat (generic term)|scramble (generic term)|whip up (related term)
+(verb)|blister|scald|attack (generic term)|round (generic term)|assail (generic term)|lash out (generic term)|snipe (generic term)|assault (generic term)
+whip-round|1
+(noun)|solicitation (generic term)|appeal (generic term)|collection (generic term)|ingathering (generic term)
+whip-scorpion|1
+(noun)|whip scorpion|arachnid (generic term)|arachnoid (generic term)
+whip-snake|1
+(noun)|whip snake|whipsnake|colubrid snake (generic term)|colubrid (generic term)
+whip hand|1
+(noun)|upper hand|superiority (generic term)|favorable position (generic term)|favourable position (generic term)
+whip scorpion|1
+(noun)|whip-scorpion|arachnid (generic term)|arachnoid (generic term)
+whip snake|1
+(noun)|whip-snake|whipsnake|colubrid snake (generic term)|colubrid (generic term)
+whip through|1
+(verb)|work through (generic term)|run through (generic term)|go through (generic term)
+whip top|1
+(noun)|whipping top|top (generic term)|whirligig (generic term)|teetotum (generic term)|spinning top (generic term)
+whip up|1
+(verb)|whomp up|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+whipcord|2
+(noun)|cord (generic term)
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+whiplash|2
+(noun)|whiplash injury|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|whip|lash|blow (generic term)
+whiplash injury|1
+(noun)|whiplash|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+whiplike|1
+(adj)|flagellate|flagellated|lash-like|leather strip (related term)|instrument (related term)|process|outgrowth|appendage (related term)
+whipped cream|1
+(noun)|topping (generic term)
+whipper|1
+(noun)|switcher|oppressor (generic term)
+whipper-in|1
+(noun)|assistant (generic term)|helper (generic term)|help (generic term)|supporter (generic term)
+whippersnapper|1
+(noun)|jackanapes|lightweight|cipher (generic term)|cypher (generic term)|nobody (generic term)|nonentity (generic term)
+whippet|1
+(noun)|greyhound (generic term)
+whipping|5
+(adj)|snappy|spirited (similar term)
+(noun)|tanning|flogging|lashing|flagellation|beating (generic term)|thrashing (generic term)|licking (generic term)|drubbing (generic term)|lacing (generic term)|trouncing (generic term)|whacking (generic term)
+(noun)|thrashing|walloping|debacle|drubbing|slaughter|trouncing|defeat (generic term)|licking (generic term)
+(noun)|whipstitch|whipstitching|stitch (generic term)
+(noun)|beating|fight (generic term)|fighting (generic term)|combat (generic term)|scrap (generic term)
+whipping boy|1
+(noun)|scapegoat|victim (generic term)
+whipping cream|1
+(noun)|light whipping cream|cream (generic term)
+whipping post|1
+(noun)|post (generic term)
+whipping top|1
+(noun)|whip top|top (generic term)|whirligig (generic term)|teetotum (generic term)|spinning top (generic term)
+whipple's penstemon|1
+(noun)|Whipple's penstemon|Penstemon whippleanus|wildflower (generic term)|wild flower (generic term)
+whippletree|1
+(noun)|whiffletree|swingletree|crossbar (generic term)
+whippoorwill|1
+(noun)|Caprimulgus vociferus|goatsucker (generic term)|nightjar (generic term)|caprimulgid (generic term)
+whippoorwill-like|1
+(adj)|animal (similar term)
+whippy|1
+(adj)|flexible|elastic (similar term)
+whipsaw|3
+(noun)|two-handed saw|two-man saw|lumberman's saw|saw (generic term)
+(verb)|cheat (generic term)|rip off (generic term)|chisel (generic term)
+(verb)|saw (generic term)
+whipsnake|1
+(noun)|whip-snake|whip snake|colubrid snake (generic term)|colubrid (generic term)
+whipstitch|1
+(noun)|whipping|whipstitching|stitch (generic term)
+whipstitching|1
+(noun)|whipstitch|whipping|stitch (generic term)
+whiptail|1
+(noun)|whiptail lizard|teiid lizard (generic term)|teiid (generic term)
+whiptail lizard|1
+(noun)|whiptail|teiid lizard (generic term)|teiid (generic term)
+whir|2
+(noun)|whirr|whirring|birr|sound (generic term)
+(verb)|whizz|whiz|whirr|birr|purr|sound (generic term)|go (generic term)
+whirl|9
+(noun)|commotion|movement (generic term)|motion (generic term)
+(noun)|swirl|vortex|convolution|round shape (generic term)
+(noun)|crack|fling|go|pass|offer|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)
+(noun)|spin|twirl|twist|twisting|rotation (generic term)|rotary motion (generic term)
+(verb)|twirl|swirl|twiddle|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|birl|spin|twirl|rotate (generic term)|circumvolve (generic term)
+(verb)|eddy|purl|whirlpool|swirl|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+(verb)|spin|spin around|reel|gyrate|revolve (generic term)|go around (generic term)|rotate (generic term)
+(verb)|tumble|whirl around|move (generic term)
+whirl around|1
+(verb)|whirl|tumble|move (generic term)
+whirlaway|1
+(noun)|Whirlaway|thoroughbred (generic term)
+whirler|2
+(noun)|whirling dervish|dervish (generic term)
+(noun)|mechanism (generic term)
+whirligig|3
+(noun)|top|teetotum|spinning top|plaything (generic term)|toy (generic term)
+(noun)|carousel|carrousel|merry-go-round|roundabout|ride (generic term)
+(verb)|spin (generic term)|spin around (generic term)|whirl (generic term)|reel (generic term)|gyrate (generic term)
+whirligig beetle|1
+(noun)|beetle (generic term)
+whirling|2
+(adj)|swirling|moving (similar term)
+(noun)|gyration|rotation (generic term)|rotary motion (generic term)
+whirling dervish|1
+(noun)|whirler|dervish (generic term)
+whirlpool|2
+(noun)|vortex|maelstrom|current (generic term)|stream (generic term)
+(verb)|eddy|purl|swirl|whirl|run (generic term)|flow (generic term)|feed (generic term)|course (generic term)
+whirlwind|1
+(noun)|windstorm (generic term)
+whirlybird|1
+(noun)|helicopter|chopper|eggbeater|heavier-than-air craft (generic term)
+whirr|3
+(noun)|whir|whirring|birr|sound (generic term)
+(verb)|whizz|whiz|whir|birr|purr|sound (generic term)|go (generic term)
+(verb)|churr|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+whirring|2
+(adj)|noisy (similar term)
+(noun)|whir|whirr|birr|sound (generic term)
+whish|2
+(verb)|sound (generic term)|go (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+whisk|6
+(noun)|mixer (generic term)
+(noun)|whisk broom|broom (generic term)
+(verb)|bring (generic term)|convey (generic term)|take (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|whisk off|wipe (generic term)|pass over (generic term)
+(verb)|whip|beat (generic term)|scramble (generic term)|whip up (related term)
+whisk away|1
+(verb)|whisk off|take away (generic term)|bear off (generic term)|bear away (generic term)|carry away (generic term)|carry off (generic term)
+whisk broom|1
+(noun)|whisk|broom (generic term)
+whisk by|1
+(verb)|zip by|fly by|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+whisk fern|1
+(noun)|fern ally (generic term)
+whisk off|2
+(verb)|whisk|wipe (generic term)|pass over (generic term)
+(verb)|whisk away|take away (generic term)|bear off (generic term)|bear away (generic term)|carry away (generic term)|carry off (generic term)
+whisker|3
+(noun)|hair's-breadth|hairsbreadth|hair|small indefinite quantity (generic term)|small indefinite amount (generic term)
+(noun)|vibrissa|sensory hair|hair (generic term)
+(verb)|bewhisker|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+whisker jack|1
+(noun)|Canada jay|grey jay|gray jay|camp robber|Perisoreus canadensis|jay (generic term)
+whiskered|1
+(adj)|bearded|barbate|bewhiskered|whiskery|unshaven (similar term)|unshaved (similar term)
+whiskerless|1
+(adj)|beardless|shaven (similar term)|shaved (similar term)
+whiskers|1
+(noun)|beard|face fungus|hair (generic term)
+whiskery|1
+(adj)|bearded|barbate|bewhiskered|whiskered|unshaven (similar term)|unshaved (similar term)
+whiskey|1
+(noun)|whisky|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+whiskey bottle|1
+(noun)|bottle (generic term)
+whiskey jug|1
+(noun)|jug (generic term)
+whiskey neat|1
+(noun)|whisky neat|drink (generic term)
+whiskey on the rocks|1
+(noun)|whisky on the rocks|drink (generic term)
+whiskey sour|1
+(noun)|whisky sour|sour (generic term)
+whisky|1
+(noun)|whiskey|liquor (generic term)|spirits (generic term)|booze (generic term)|hard drink (generic term)|hard liquor (generic term)|John Barleycorn (generic term)|strong drink (generic term)
+whisky neat|1
+(noun)|whiskey neat|drink (generic term)
+whisky on the rocks|1
+(noun)|whiskey on the rocks|drink (generic term)
+whisky sour|1
+(noun)|whiskey sour|sour (generic term)
+whisper|3
+(noun)|whispering|susurration|voicelessness|speaking (generic term)|speech production (generic term)
+(noun)|rustle|rustling|whispering|noise (generic term)
+(verb)|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)|shout (antonym)
+whispered|1
+(adj)|unvoiced (similar term)|voiceless (similar term)|surd (similar term)|hard (similar term)
+whisperer|1
+(noun)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+whispering|3
+(adj)|murmuring|susurrant|soft (similar term)
+(noun)|rustle|rustling|whisper|noise (generic term)
+(noun)|whisper|susurration|voicelessness|speaking (generic term)|speech production (generic term)
+whispering bells|1
+(noun)|yellow bells|California yellow bells|Emmanthe penduliflora|herb (generic term)|herbaceous plant (generic term)
+whispering campaign|1
+(noun)|campaigning (generic term)|candidacy (generic term)|candidature (generic term)|electioneering (generic term)|political campaign (generic term)
+whispering dome|1
+(noun)|whispering gallery|dome (generic term)
+whispering gallery|1
+(noun)|whispering dome|dome (generic term)
+whist|1
+(noun)|long whist|short whist|card game (generic term)|cards (generic term)
+whist drive|1
+(noun)|party (generic term)
+whistle|10
+(noun)|whistling|sound (generic term)
+(noun)|whistling|signal (generic term)|signaling (generic term)|sign (generic term)
+(noun)|acoustic device (generic term)|signaling device (generic term)
+(noun)|pennywhistle|tin whistle|fipple flute (generic term)|fipple pipe (generic term)|recorder (generic term)|vertical flute (generic term)
+(verb)|sound (generic term)|go (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|sing|sound (generic term)|go (generic term)
+(verb)|sign (generic term)|signal (generic term)|signalize (generic term)|signalise (generic term)
+whistle-blower|1
+(noun)|whistle blower|whistleblower|informant (generic term)|source (generic term)
+whistle-stop tour|1
+(noun)|tour (generic term)|circuit (generic term)
+whistle blower|1
+(noun)|whistle-blower|whistleblower|informant (generic term)|source (generic term)
+whistle buoy|1
+(noun)|whistling buoy|acoustic buoy (generic term)
+whistle stop|1
+(noun)|flag stop|way station|railway station (generic term)|railroad station (generic term)|railroad terminal (generic term)|train station (generic term)|train depot (generic term)
+whistleblower|1
+(noun)|whistle blower|whistle-blower|informant (generic term)|source (generic term)
+whistler|5
+(noun)|Whistler|James Abbott McNeill Whistler|painter (generic term)
+(noun)|signaler (generic term)|signaller (generic term)
+(noun)|hoary marmot|whistling marmot|Marmota caligata|marmot (generic term)
+(noun)|goldeneye|Bucephela clangula|duck (generic term)
+(noun)|thickhead|Old World flycatcher (generic term)|true flycatcher (generic term)|flycatcher (generic term)
+whistlestop|1
+(verb)|campaign (generic term)|run (generic term)
+whistling|3
+(noun)|whistle|sound (generic term)
+(noun)|music (generic term)
+(noun)|whistle|signal (generic term)|signaling (generic term)|sign (generic term)
+whistling buoy|1
+(noun)|whistle buoy|acoustic buoy (generic term)
+whistling marmot|1
+(noun)|hoary marmot|whistler|Marmota caligata|marmot (generic term)
+whistling swan|1
+(noun)|Cygnus columbianus columbianus|tundra swan (generic term)|Cygnus columbianus (generic term)
+whit|1
+(noun)|shred|scintilla|iota|tittle|smidgen|smidgeon|smidgin|smidge|small indefinite quantity (generic term)|small indefinite amount (generic term)
+whit-tuesday|1
+(noun)|Whit-Tuesday|Whitsun Tuesday|Tuesday (generic term)|Tues (generic term)
+whit leather|1
+(noun)|white leather|leather (generic term)
+white|25
+(adj)|albescent (similar term)|light (related term)|light-colored (related term)|black (antonym)
+(adj)|Caucasian (similar term)|Caucasoid (similar term)|light-skinned (similar term)|black (antonym)
+(adj)|pure (similar term)
+(adj)|snowy|covered (similar term)
+(adj)|lily-white|segregated (similar term)|unintegrated (similar term)
+(adj)|white-hot|hot (similar term)
+(adj)|good (similar term)
+(adj)|blank|clean|empty (similar term)
+(adj)|diluted (similar term)|dilute (similar term)
+(adj)|whitened|colorless (similar term)|colourless (similar term)
+(adj)|ashen|blanched|bloodless|livid|colorless (similar term)|colourless (similar term)
+(adj)|light (similar term)
+(noun)|White|white person|Caucasian|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|whiteness|achromatic color (generic term)|achromatic colour (generic term)|black (antonym)
+(noun)|White|Edward White|Edward D. White|Edward Douglas White Jr.|chief justice (generic term)
+(noun)|White|Patrick White|Patrick Victor Martindale White|writer (generic term)|author (generic term)
+(noun)|White|T. H. White|Theodore Harold White|journalist (generic term)
+(noun)|White|Stanford White|architect (generic term)|designer (generic term)
+(noun)|White|E. B. White|Elwyn Brooks White|writer (generic term)|author (generic term)
+(noun)|White|Andrew D. White|Andrew Dickson White|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+(noun)|White|White River|river (generic term)
+(noun)|egg white|albumen|ovalbumin|ingredient (generic term)|fixings (generic term)
+(noun)|man (generic term)|piece (generic term)|black (antonym)
+(noun)|flannel|gabardine|tweed|trouser (generic term)|pant (generic term)
+(verb)|whiten|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|blacken (antonym)
+white-alder family|1
+(noun)|Clethraceae|family Clethraceae|dilleniid dicot family (generic term)
+white-bellied swallow|1
+(noun)|tree swallow|Iridoprocne bicolor|swallow (generic term)
+white-berry yew|1
+(noun)|Pseudotaxus chienii|yew (generic term)
+white-blotched|1
+(adj)|patterned (similar term)
+white-bread|1
+(adj)|conventional (similar term)
+white-breasted nuthatch|1
+(noun)|Sitta carolinensis|nuthatch (generic term)|nutcracker (generic term)
+white-chinned petrel|1
+(noun)|Procellaria aequinoctialis|petrel (generic term)
+white-coat hypertension|1
+(noun)|high blood pressure (generic term)|hypertension (generic term)
+white-collar|1
+(adj)|clerical (similar term)|professional (similar term)|pink-collar (similar term)|skilled (related term)|blue-collar (antonym)
+white-crowned sparrow|1
+(noun)|Zonotrichia leucophrys|New World sparrow (generic term)
+white-edged|1
+(adj)|bordered (similar term)
+white-faced hornet|1
+(noun)|bald-faced hornet|Vespula maculata|hornet (generic term)
+white-flowered|1
+(adj)|achromatic (similar term)
+white-footed mouse|1
+(noun)|vesper mouse|Peromyscus leucopus|wood mouse (generic term)
+white-haired|2
+(adj)|grey|gray|grey-haired|gray-haired|grey-headed|gray-headed|grizzly|hoar|hoary|old (similar term)
+(adj)|blue-eyed|fair-haired|loved (similar term)
+white-headed stilt|1
+(noun)|Himantopus himantopus leucocephalus|stilt (generic term)|stiltbird (generic term)|longlegs (generic term)|long-legs (generic term)|stilt plover (generic term)|Himantopus stilt (generic term)
+white-heart hickory|1
+(noun)|mockernut|mockernut hickory|black hickory|big-bud hickory|Carya tomentosa|hickory (generic term)|hickory tree (generic term)
+white-hot|2
+(adj)|hot (similar term)
+(adj)|white|hot (similar term)
+white-leaved rockrose|1
+(noun)|Cistus albidus|rockrose (generic term)|rock rose (generic term)
+white-lipped|1
+(adj)|afraid (similar term)
+white-lipped peccary|1
+(noun)|Tayassu pecari|peccary (generic term)|musk hog (generic term)
+white-livered|1
+(adj)|chicken|chickenhearted|lily-livered|yellow|yellow-bellied|cowardly (similar term)|fearful (similar term)
+white-man's foot|1
+(noun)|broad-leaved plantain|common plantain|whiteman's foot|cart-track plant|Plantago major|plantain (generic term)
+white-out|1
+(verb)|whiteout|lose (generic term)
+white-pine rust|1
+(noun)|blister rust|white pine blister rust|rust (generic term)
+white-pink|1
+(adj)|chromatic (similar term)
+white-rayed mule's ears|1
+(noun)|Wyethia helianthoides|wildflower (generic term)|wild flower (generic term)
+white-ribbed|1
+(adj)|patterned (similar term)
+white-rumped shrike|1
+(noun)|Lanius ludovicianus excubitorides|butcherbird (generic term)
+white-seeded|1
+(adj)|seedy (similar term)
+white-shoe|1
+(adj)|exclusive (similar term)
+white-stemmed filaree|1
+(noun)|musk clover|muskus grass|Erodium moschatum|storksbill (generic term)|heron's bill (generic term)
+white-streaked|1
+(adj)|patterned (similar term)
+white-tailed deer|1
+(noun)|Virginia deer|white tail|whitetail|whitetail deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+white-tailed jackrabbit|1
+(noun)|whitetail jackrabbit|Lepus townsendi|jackrabbit (generic term)
+white-tailed kite|1
+(noun)|Elanus leucurus|kite (generic term)
+white-tailed sea eagle|1
+(noun)|ern|erne|grey sea eagle|gray sea eagle|European sea eagle|Haliatus albicilla|sea eagle (generic term)
+white-throated sparrow|1
+(noun)|whitethroat|Zonotrichia albicollis|New World sparrow (generic term)
+white-tie|1
+(adj)|formal (similar term)
+white-tipped shark|1
+(noun)|whitetip shark|oceanic whitetip shark|Carcharinus longimanus|requiem shark (generic term)
+white-topped aster|1
+(noun)|flower (generic term)
+white admiral|2
+(noun)|banded purple|Limenitis arthemis|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+(noun)|Limenitis camilla|nymphalid (generic term)|nymphalid butterfly (generic term)|brush-footed butterfly (generic term)|four-footed butterfly (generic term)
+white alder|2
+(noun)|mountain alder|Alnus rhombifolia|alder (generic term)|alder tree (generic term)
+(noun)|sweet pepperbush|pepper bush|summer sweet|Clethra alnifolia|shrub (generic term)|bush (generic term)
+white anglo-saxon protestant|1
+(noun)|WASP|white Anglo-Saxon Protestant|White (generic term)|white person (generic term)|Caucasian (generic term)|Protestant (generic term)
+white ant|1
+(noun)|termite|insect (generic term)
+white arsenic|1
+(noun)|arsenic|arsenic trioxide|arsenous anhydride|arsenous oxide|ratsbane|trioxide (generic term)
+white ash|2
+(noun)|snow gum|ghost gum|Eucalyptus coriacea|Eucalyptus pauciflora|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+(noun)|Fraxinus Americana|ash (generic term)|ash tree (generic term)
+white aspen|1
+(noun)|white poplar|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+white avens|2
+(noun)|bennet|Geum virginianum|avens (generic term)
+(noun)|bennet|Geum canadense|avens (generic term)
+white backlash|1
+(noun)|whitelash|backlash (generic term)
+white baneberry|1
+(noun)|white cohosh|white bead|doll's eyes|Actaea alba|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+white basswood|1
+(noun)|cottonwood|Tilia heterophylla|linden (generic term)|linden tree (generic term)|basswood (generic term)|lime (generic term)|lime tree (generic term)
+white bead|1
+(noun)|white baneberry|white cohosh|doll's eyes|Actaea alba|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+white bean|1
+(noun)|navy bean|pea bean|common bean (generic term)
+white bedstraw|1
+(noun)|wild madder|white madder|infant's-breath|false baby's breath|Galium mollugo|bedstraw (generic term)
+white beech|1
+(noun)|American beech|red beech|Fagus grandifolia|Fagus americana|beech (generic term)|beech tree (generic term)
+white beer|1
+(noun)|Weissbier|wheat beer|ale (generic term)
+white birch|1
+(noun)|downy birch|Betula pubescens|birch (generic term)|birch tree (generic term)
+white blood cell|1
+(noun)|leukocyte|leucocyte|white cell|white blood corpuscle|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+white blood corpuscle|1
+(noun)|leukocyte|leucocyte|white blood cell|white cell|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+white book|1
+(noun)|white paper|report (generic term)|study (generic term)|written report (generic term)
+white bread|1
+(noun)|light bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+white broom|1
+(noun)|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom (generic term)
+white bryony|1
+(noun)|devil's turnip|Bryonia alba|bryony (generic term)|briony (generic term)
+white burgundy|1
+(noun)|Chablis|white Burgundy|Burgundy (generic term)|Burgundy wine (generic term)|white wine (generic term)
+white cake|1
+(noun)|cake (generic term)
+white camas|1
+(noun)|Zigadenus glaucus|death camas (generic term)|zigadene (generic term)
+white campion|1
+(noun)|evening lychnis|white cockle|bladder campion|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+white cedar|2
+(noun)|American arborvitae|northern white cedar|Thuja occidentalis|arborvitae (generic term)
+(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cypress|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+white cell|1
+(noun)|leukocyte|leucocyte|white blood cell|white blood corpuscle|white corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+white chocolate|1
+(noun)|chocolate (generic term)
+white cinnamon|1
+(noun)|canella|canella bark|bark (generic term)
+white cinnamon tree|1
+(noun)|wild cinnamon|Canella winterana|Canella-alba|shrub (generic term)|bush (generic term)
+white clover|1
+(noun)|dutch clover|shamrock|Trifolium repens|clover (generic term)|trefoil (generic term)
+white cockle|1
+(noun)|white campion|evening lychnis|bladder campion|Silene latifolia|Lychnis alba|silene (generic term)|campion (generic term)|catchfly (generic term)
+white cohosh|1
+(noun)|white baneberry|white bead|doll's eyes|Actaea alba|baneberry (generic term)|cohosh (generic term)|herb Christopher (generic term)
+white corpuscle|1
+(noun)|leukocyte|leucocyte|white blood cell|white cell|white blood corpuscle|WBC|blood cell (generic term)|blood corpuscle (generic term)|corpuscle (generic term)|free phagocyte (generic term)
+white crappie|1
+(noun)|Pomoxis annularis|crappie (generic term)
+white croaker|2
+(noun)|queenfish|Seriphus politus|croaker (generic term)
+(noun)|chenfish|kingfish|Genyonemus lineatus|croaker (generic term)
+white currant|1
+(noun)|Ribes sativum|currant (generic term)|currant bush (generic term)
+white cypress|1
+(noun)|southern white cedar|coast white cedar|Atlantic white cedar|white cedar|Chamaecyparis thyoides|cedar (generic term)|cedar tree (generic term)
+white cypress pine|1
+(noun)|Callitris glaucophylla|Callitris glauca|cypress pine (generic term)
+white daisy|1
+(noun)|oxeye daisy|ox-eyed daisy|marguerite|moon daisy|Leucanthemum vulgare|Chrysanthemum leucanthemum|flower (generic term)
+white dead nettle|1
+(noun)|Lamium album|dead nettle (generic term)
+white dipladenia|1
+(noun)|Mandevilla boliviensis|Dipladenia boliviensis|liana (generic term)
+white dog's-tooth violet|1
+(noun)|white dogtooth violet|blonde lilian|Erythronium albidum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+white dogtooth violet|1
+(noun)|white dog's-tooth violet|blonde lilian|Erythronium albidum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+white dwarf|1
+(noun)|white dwarf star|star (generic term)
+white dwarf star|1
+(noun)|white dwarf|star (generic term)
+white elephant|2
+(noun)|possession (generic term)
+(noun)|Indian elephant (generic term)|Elephas maximus (generic term)
+white elm|1
+(noun)|American elm|water elm|rock elm|Ulmus americana|elm (generic term)|elm tree (generic term)
+white fairy lantern|1
+(noun)|white globe lily|Calochortus albus|globe lily (generic term)|fairy lantern (generic term)
+white false indigo|1
+(noun)|Baptisia lactea|wild indigo (generic term)|false indigo (generic term)
+white feather|1
+(noun)|symbol (generic term)|symbolization (generic term)|symbolisation (generic term)|symbolic representation (generic term)
+white feldspar|1
+(noun)|albite|plagioclase (generic term)|oligoclase (generic term)
+white fir|2
+(noun)|Colorado fir|California white fir|Abies concolor|Abies lowiana|silver fir (generic term)
+(noun)|amabilis fir|Pacific silver fir|red silver fir|Christmas tree|Abies amabilis|silver fir (generic term)
+white flag|1
+(noun)|flag of truce|flag (generic term)
+white fox|1
+(noun)|arctic fox|Alopex lagopus|fox (generic term)
+white friar|1
+(noun)|Carmelite|White Friar|friar (generic term)|mendicant (generic term)
+white fringed orchid|1
+(noun)|white fringed orchis|Habenaria albiflora|fringed orchis (generic term)|fringed orchid (generic term)
+white fringed orchis|1
+(noun)|white fringed orchid|Habenaria albiflora|fringed orchis (generic term)|fringed orchid (generic term)
+white fritillary|1
+(noun)|Fritillaria liliaceae|fritillary (generic term)|checkered lily (generic term)
+white fungus|1
+(noun)|Saprolegnia ferax|fungus (generic term)
+white globe lily|1
+(noun)|white fairy lantern|Calochortus albus|globe lily (generic term)|fairy lantern (generic term)
+white gold|1
+(noun)|alloy (generic term)|metal (generic term)
+white goods|2
+(noun)|home appliance (generic term)|household appliance (generic term)
+(noun)|household linen|drygoods (generic term)|soft goods (generic term)
+white heat|1
+(noun)|hotness (generic term)|heat (generic term)|high temperature (generic term)
+white heather|1
+(noun)|Cassiope mertensiana|heath (generic term)
+white hellebore|1
+(noun)|American hellebore|Indian poke|bugbane|Veratrum viride|hellebore (generic term)|false hellebore (generic term)
+white honeysuckle|2
+(noun)|Lonicera albiflora|honeysuckle (generic term)
+(noun)|swamp azalea|swamp honeysuckle|Rhododendron viscosum|rhododendron (generic term)
+white hope|1
+(noun)|great white hope|hope (generic term)
+white horehound|1
+(noun)|common horehound|Marrubium vulgare|horehound (generic term)
+white horse|1
+(noun)|whitecap|wave (generic term)|moving ridge (generic term)
+white horse nettle|1
+(noun)|trompillo|prairie berry|purple nightshade|silverleaf nightshade|silver-leaved nightshade|silver-leaved nettle|Solanum elaeagnifolium|nightshade (generic term)
+white house|2
+(noun)|White House|EXEC|executive department (generic term)
+(noun)|White House|residence (generic term)|government building (generic term)
+white knight|1
+(noun)|company (generic term)
+white lead|1
+(noun)|ceruse|lead carbonate|pigment (generic term)
+white lead ore|1
+(noun)|cerussite|mineral (generic term)
+white leather|1
+(noun)|whit leather|leather (generic term)
+white leg|1
+(noun)|milk leg|phlegmasia alba dolens|thrombosis (generic term)
+white lettuce|1
+(noun)|cankerweed|Nabalus alba|Prenanthes alba|rattlesnake root (generic term)
+white lie|1
+(noun)|lie (generic term)|prevarication (generic term)
+white lily|2
+(noun)|Madonna lily|Annunciation lily|Lent lily|Lilium candidum|lily (generic term)
+(noun)|lotus|white lotus|Egyptian water lily|Nymphaea lotus|water lily (generic term)
+white line|1
+(noun)|reference point (generic term)|point of reference (generic term)|reference (generic term)
+white lotus|1
+(noun)|lotus|Egyptian water lily|white lily|Nymphaea lotus|water lily (generic term)
+white lung|1
+(noun)|adult respiratory distress syndrome|ARDS|wet lung|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+white lupine|1
+(noun)|field lupine|wolf bean|Egyptian lupine|Lupinus albus|lupine (generic term)|lupin (generic term)
+white madder|1
+(noun)|wild madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw (generic term)
+white magic|1
+(noun)|magic (generic term)|thaumaturgy (generic term)
+white maire|1
+(noun)|Olea lanceolata|olive tree (generic term)
+white mallee|1
+(noun)|congoo mallee|Eucalyptus dumosa|mallee (generic term)
+white mallow|1
+(noun)|marsh mallow|Althea officinalis|althea (generic term)|althaea (generic term)|hollyhock (generic term)
+white man|1
+(noun)|man (generic term)|adult male (generic term)|White (generic term)|white person (generic term)|Caucasian (generic term)
+white man's burden|1
+(noun)|duty (generic term)|responsibility (generic term)|obligation (generic term)
+white mangrove|2
+(noun)|Avicennia officinalis|tree (generic term)
+(noun)|Laguncularia racemosa|tree (generic term)
+white marlin|1
+(noun)|Makaira albida|marlin (generic term)
+white matsutake|1
+(noun)|Armillaria ponderosa|agaric (generic term)
+white matter|1
+(noun)|substantia alba|nervous tissue (generic term)|nerve tissue (generic term)
+white meat|1
+(noun)|breast|helping (generic term)|portion (generic term)|serving (generic term)
+white melilot|1
+(noun)|white sweet clover|Melilotus alba|melilotus (generic term)|melilot (generic term)|sweet clover (generic term)
+white metal|1
+(noun)|bearing metal|alloy (generic term)|metal (generic term)
+white milkweed|1
+(noun)|Asclepias albicans|milkweed (generic term)|silkweed (generic term)
+white mountain ash|1
+(noun)|Eucalyptus fraxinoides|eucalyptus (generic term)|eucalypt (generic term)|eucalyptus tree (generic term)
+white mulberry|1
+(noun)|Morus alba|mulberry (generic term)|mulberry tree (generic term)
+white mullein|1
+(noun)|Verbascum lychnitis|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+white mullet|1
+(noun)|Mugil curema|mullet (generic term)|grey mullet (generic term)|gray mullet (generic term)
+white mustard|1
+(noun)|Brassica hirta|Sinapis alba|mustard (generic term)
+white nile|1
+(noun)|White Nile|headstream (generic term)
+white noise|1
+(noun)|noise (generic term)|dissonance (generic term)|racket (generic term)
+white oak|1
+(noun)|oak (generic term)|oak tree (generic term)
+white onion sauce|1
+(noun)|Soubise|sauce (generic term)
+white out|2
+(verb)|whiteout|cover (generic term)
+(verb)|widen (generic term)
+white pages|1
+(noun)|phonebook (generic term)|phone book (generic term)|telephone book (generic term)|telephone directory (generic term)
+white paper|1
+(noun)|white book|report (generic term)|study (generic term)|written report (generic term)
+white pelican|1
+(noun)|Pelecanus erythrorhynchos|pelican (generic term)
+white people|1
+(noun)|White race|White people|Caucasoid race|Caucasian race|race (generic term)
+white pepper|2
+(noun)|pepper|common pepper|black pepper|Madagascar pepper|Piper nigrum|true pepper (generic term)|pepper vine (generic term)
+(noun)|pepper (generic term)|peppercorn (generic term)
+white perch|1
+(noun)|silver perch|Morone americana|serranid fish (generic term)|serranid (generic term)
+white person|1
+(noun)|White|Caucasian|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+white pine|2
+(noun)|pine (generic term)|pine tree (generic term)|true pine (generic term)
+(noun)|pine (generic term)
+white pine blister rust|1
+(noun)|blister rust|white-pine rust|rust (generic term)
+white plague|2
+(noun)|pulmonary tuberculosis|consumption|phthisis|wasting disease|tuberculosis (generic term)|TB (generic term)|T.B. (generic term)
+(noun)|drug addiction|addiction (generic term)|dependence (generic term)|dependance (generic term)|dependency (generic term)|habituation (generic term)
+white popinac|1
+(noun)|lead tree|Leucaena glauca|Leucaena leucocephala|tree (generic term)
+white poplar|2
+(noun)|white aspen|abele|aspen poplar|silver-leaved poplar|Populus alba|poplar (generic term)|poplar tree (generic term)
+(noun)|tulipwood|true tulipwood|whitewood|yellow poplar|wood (generic term)
+white potato|2
+(noun)|potato|white potato vine|Solanum tuberosum|vine (generic term)
+(noun)|potato|Irish potato|murphy|spud|tater|root vegetable (generic term)|solanaceous vegetable (generic term)
+white potato vine|1
+(noun)|potato|white potato|Solanum tuberosum|vine (generic term)
+white pox|1
+(noun)|alastrim|variola minor|pseudosmallpox|pseudovariola|milk pox|West Indian smallpox|Cuban itch|Kaffir pox|smallpox (generic term)|variola (generic term)|variola major (generic term)
+white prairie aster|1
+(noun)|Aster falcatus|aster (generic term)
+white race|1
+(noun)|White race|White people|Caucasoid race|Caucasian race|race (generic term)
+white rhinoceros|1
+(noun)|Ceratotherium simum|Diceros simus|rhinoceros (generic term)|rhino (generic term)
+white rice|1
+(noun)|polished rice|rice (generic term)
+white river|1
+(noun)|White|White River|river (generic term)
+white rocket|1
+(noun)|Diplotaxis erucoides|herb (generic term)|herbaceous plant (generic term)
+white room|1
+(noun)|clean room|room (generic term)
+white russia|1
+(noun)|Belarus|Republic of Belarus|Byelarus|Byelorussia|Belorussia|White Russia|European country (generic term)|European nation (generic term)
+white russian|3
+(noun)|Byelorussian|Belorussian|White Russian|European (generic term)
+(noun)|White Russian|cocktail (generic term)
+(noun)|Belarusian|Byelorussian|White Russian|Slavic (generic term)|Slavic language (generic term)|Slavonic (generic term)|Slavonic language (generic term)
+white rust|1
+(noun)|fungus (generic term)
+white sage|1
+(noun)|western mugwort|cudweed|prairie sage|Artemisia ludoviciana|Artemisia gnaphalodes|mugwort (generic term)
+white sale|1
+(noun)|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+white sanicle|1
+(noun)|white snakeroot|Ageratina altissima|Eupatorium rugosum|herb (generic term)|herbaceous plant (generic term)
+white sauce|1
+(noun)|bechamel sauce|bechamel|sauce (generic term)
+white sea|1
+(noun)|White Sea|inlet (generic term)|recess (generic term)
+white separatism|1
+(noun)|segregation (generic term)|separatism (generic term)
+white separatist|1
+(noun)|separatist (generic term)|separationist (generic term)
+white shark|1
+(noun)|great white shark|man-eater|man-eating shark|Carcharodon carcharias|mackerel shark (generic term)
+white sheep|1
+(noun)|Dall sheep|Dall's sheep|Ovis montana dalli|wild sheep (generic term)
+white silk-cotton tree|1
+(noun)|kapok|ceiba tree|silk-cotton tree|Bombay ceiba|God tree|Ceiba pentandra|angiospermous tree (generic term)|flowering tree (generic term)
+white slave|1
+(noun)|prostitute (generic term)|cocotte (generic term)|whore (generic term)|harlot (generic term)|bawd (generic term)|tart (generic term)|cyprian (generic term)|fancy woman (generic term)|working girl (generic term)|sporting lady (generic term)|lady of pleasure (generic term)|woman of the street (generic term)
+white slaver|1
+(noun)|slaver (generic term)|slave dealer (generic term)|slave trader (generic term)
+white slime mushroom|1
+(noun)|slime mushroom (generic term)
+white snakeroot|1
+(noun)|white sanicle|Ageratina altissima|Eupatorium rugosum|herb (generic term)|herbaceous plant (generic term)
+white snapdragon|1
+(noun)|Antirrhinum coulterianum|snapdragon (generic term)
+white spanish broom|1
+(noun)|white broom|white Spanish broom|Cytisus albus|Cytisus multiflorus|broom (generic term)
+white spruce|1
+(noun)|Picea glauca|spruce (generic term)
+white squire|1
+(noun)|white knight (generic term)
+white stork|1
+(noun)|Ciconia ciconia|stork (generic term)
+white stringybark|1
+(noun)|thin-leaved stringybark|Eucalyptusd eugenioides|stringybark (generic term)
+white sturgeon|2
+(noun)|beluga|hausen|Acipenser huso|sturgeon (generic term)
+(noun)|Pacific sturgeon|Sacramento sturgeon|Acipenser transmontanus|sturgeon (generic term)
+white supremacist|1
+(noun)|supremacist (generic term)
+white supremacy|1
+(noun)|racism (generic term)
+white sweet clover|1
+(noun)|white melilot|Melilotus alba|melilotus (generic term)|melilot (generic term)|sweet clover (generic term)
+white tai|1
+(noun)|White Tai|Tai (generic term)
+white tail|1
+(noun)|Virginia deer|whitetail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+white thistle|2
+(noun)|prickly poppy|argemone|devil's fig|herb (generic term)|herbaceous plant (generic term)
+(noun)|quail bush|quail brush|Atriplex lentiformis|saltbush (generic term)
+white tie|2
+(noun)|bow tie (generic term)|bow-tie (generic term)|bowtie (generic term)
+(noun)|dress suit|full dress|tailcoat|tail coat|tails|white tie and tails|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+white tie and tails|1
+(noun)|dress suit|full dress|tailcoat|tail coat|tails|white tie|formalwear (generic term)|eveningwear (generic term)|evening dress (generic term)|evening clothes (generic term)
+white titi|1
+(noun)|cyrilla|leatherwood|Cyrilla racemiflora|shrub (generic term)|bush (generic term)
+white trash|1
+(noun)|poor white trash|poor white|White (generic term)|white person (generic term)|Caucasian (generic term)
+white trumpet lily|1
+(noun)|Easter lily|Bermuda lily|Lilium longiflorum|lily (generic term)
+white turnip|2
+(noun)|turnip|Brassica rapa|turnip plant (generic term)
+(noun)|turnip (generic term)
+white violet|2
+(noun)|sweet white violet|woodland white violet|Viola blanda|violet (generic term)
+(noun)|Canada violet|tall white violet|Viola canadensis|violet (generic term)
+white vitriol|1
+(noun)|zinc sulfate|zinc sulphate|zinc vitriol|sulfate (generic term)|sulphate (generic term)
+white walnut|1
+(noun)|butternut|butternut tree|Juglans cinerea|walnut (generic term)|walnut tree (generic term)
+white water|1
+(noun)|whitewater|foam (generic term)|froth (generic term)
+white wax tree|1
+(noun)|Chinese privet|Ligustrum lucidum|privet (generic term)
+white whale|1
+(noun)|beluga|Delphinapterus leucas|dolphin (generic term)
+white willow|1
+(noun)|Huntingdon willow|Salix alba|willow (generic term)|willow tree (generic term)
+white wine|1
+(noun)|wine (generic term)|vino (generic term)
+white wolf|1
+(noun)|Arctic wolf|Canis lupus tundrarum|wolf (generic term)
+white woman|1
+(noun)|woman (generic term)|adult female (generic term)|White (generic term)|white person (generic term)|Caucasian (generic term)
+white wood aster|1
+(noun)|Aster divaricatus|wood aster (generic term)
+white yam|1
+(noun)|water yam|Dioscorea alata|yam (generic term)|yam plant (generic term)
+white zinnia|1
+(noun)|Zinnia acerosa|zinnia (generic term)|old maid (generic term)|old maid flower (generic term)
+whitebait|2
+(noun)|herring (generic term)
+(noun)|young fish (generic term)
+whitebark pine|1
+(noun)|whitebarked pine|Pinus albicaulis|white pine (generic term)
+whitebarked pine|1
+(noun)|whitebark pine|Pinus albicaulis|white pine (generic term)
+whitecap|1
+(noun)|white horse|wave (generic term)|moving ridge (generic term)
+whitecup|1
+(noun)|Nierembergia repens|Nierembergia rivularis|cupflower (generic term)|nierembergia (generic term)
+whited sepulcher|1
+(noun)|whited sepulchre|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+whited sepulchre|1
+(noun)|whited sepulcher|hypocrite (generic term)|dissembler (generic term)|dissimulator (generic term)|phony (generic term)|phoney (generic term)|pretender (generic term)
+whiteface|2
+(noun)|Hereford|beef (generic term)|beef cattle (generic term)
+(noun)|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+whitefish|3
+(noun)|seafood (generic term)
+(noun)|freshwater fish (generic term)
+(noun)|soft-finned fish (generic term)|malacopterygian (generic term)|food fish (generic term)
+whitefly|1
+(noun)|homopterous insect (generic term)|homopteran (generic term)
+whitehall|2
+(noun)|Whitehall|street (generic term)
+(noun)|Whitehall|civil service (generic term)
+whitehead|2
+(noun)|Whitehead|Alfred North Whitehead|philosopher (generic term)|mathematician (generic term)
+(noun)|milium|blemish (generic term)|defect (generic term)|mar (generic term)
+whitehorse|1
+(noun)|Whitehorse|provincial capital (generic term)
+whitelash|1
+(noun)|white backlash|backlash (generic term)
+whiteman's foot|1
+(noun)|broad-leaved plantain|common plantain|white-man's foot|cart-track plant|Plantago major|plantain (generic term)
+whiten|1
+(verb)|white|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)|blacken (antonym)
+whitened|1
+(adj)|white|colorless (similar term)|colourless (similar term)
+whitener|1
+(noun)|bleaching agent|bleach|blanching agent|agent (generic term)
+whiteness|3
+(noun)|white|achromatic color (generic term)|achromatic colour (generic term)|black (antonym)
+(noun)|purity|pureness|sinlessness|innocence|condition (generic term)|status (generic term)
+(noun)|complexion (generic term)|skin color (generic term)|skin colour (generic term)
+whitening|1
+(noun)|lightening|change of color (generic term)
+whiteout|3
+(noun)|snow (generic term)|snowfall (generic term)
+(verb)|white out|cover (generic term)
+(verb)|white-out|lose (generic term)
+whitetail|1
+(noun)|Virginia deer|white tail|white-tailed deer|whitetail deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+whitetail antelope squirrel|1
+(noun)|antelope squirrel|antelope chipmunk|Citellus leucurus|ground squirrel (generic term)|gopher (generic term)|spermophile (generic term)
+whitetail deer|1
+(noun)|Virginia deer|white tail|whitetail|white-tailed deer|Odocoileus Virginianus|deer (generic term)|cervid (generic term)
+whitetail jackrabbit|1
+(noun)|white-tailed jackrabbit|Lepus townsendi|jackrabbit (generic term)
+whitetail prairie dog|1
+(noun)|Cynomys gunnisoni|prairie dog (generic term)|prairie marmot (generic term)
+whitethorn|1
+(noun)|English hawthorn|may|Crataegus laevigata|Crataegus oxycantha|hawthorn (generic term)|haw (generic term)
+whitethroat|3
+(noun)|lesser whitethroat|Sylvia curruca|warbler (generic term)
+(noun)|greater whitethroat|Sylvia communis|warbler (generic term)
+(noun)|white-throated sparrow|Zonotrichia albicollis|New World sparrow (generic term)
+whitetip shark|2
+(noun)|reef whitetip shark|Triaenodon obseus|smooth dogfish (generic term)
+(noun)|oceanic whitetip shark|white-tipped shark|Carcharinus longimanus|requiem shark (generic term)
+whitewash|6
+(noun)|defeat (generic term)|licking (generic term)
+(noun)|wash (generic term)
+(noun)|clearing (generic term)
+(verb)|gloss over|sleek over|hush up|cover (generic term)|cover up (generic term)
+(verb)|wash (generic term)
+(verb)|acquit (generic term)|assoil (generic term)|clear (generic term)|discharge (generic term)|exonerate (generic term)|exculpate (generic term)
+whitewashed|1
+(adj)|painted (similar term)
+whitewater|1
+(noun)|white water|foam (generic term)|froth (generic term)
+whitewood|1
+(noun)|tulipwood|true tulipwood|white poplar|yellow poplar|wood (generic term)
+whitey|1
+(noun)|honky|honkey|honkie|White (generic term)|white person (generic term)|Caucasian (generic term)
+whiting|5
+(noun)|saltwater fish (generic term)
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+(noun)|sciaenid fish (generic term)|sciaenid (generic term)
+(noun)|silver hake|Merluccius bilinearis|hake (generic term)
+(noun)|Merlangus merlangus|Gadus merlangus|gadoid (generic term)|gadoid fish (generic term)
+whitish|2
+(adj)|milky|milklike|opaque (similar term)
+(adj)|off-white|achromatic (similar term)
+whitlavia|1
+(noun)|California bluebell|Phacelia minor|Phacelia whitlavia|scorpionweed (generic term)|scorpion weed (generic term)|phacelia (generic term)
+whitlow|1
+(noun)|felon|infection (generic term)
+whitlow grass|1
+(noun)|shadflower|shad-flower|Draba verna|draba (generic term)
+whitlowwort|1
+(noun)|groundcover (generic term)|ground cover (generic term)
+whitman|2
+(noun)|Whitman|Walt Whitman|poet (generic term)
+(noun)|Whitman|Marcus Whitman|missionary (generic term)
+whitmonday|1
+(noun)|Whitmonday|Whitsun Monday|Monday (generic term)|Mon (generic term)
+whitney|2
+(noun)|Whitney|Eli Whitney|inventor (generic term)|discoverer (generic term)|artificer (generic term)|manufacturer (generic term)|producer (generic term)
+(noun)|Whitney|Mount Whitney|mountain peak (generic term)
+whitney moore young jr.|1
+(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+whitney young|1
+(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+whitsun|1
+(noun)|Whitsun|Whitsuntide|Whitweek|season (generic term)
+whitsun monday|1
+(noun)|Whitmonday|Whitsun Monday|Monday (generic term)|Mon (generic term)
+whitsun tuesday|1
+(noun)|Whit-Tuesday|Whitsun Tuesday|Tuesday (generic term)|Tues (generic term)
+whitsunday|1
+(noun)|Pentecost|Whitsunday|quarter day (generic term)
+whitsuntide|1
+(noun)|Whitsun|Whitsuntide|Whitweek|season (generic term)
+whittier|1
+(noun)|Whittier|John Greenleaf Whittier|poet (generic term)
+whittle|2
+(noun)|Whittle|Frank Whittle|Sir Frank Whittle|aeronautical engineer (generic term)
+(verb)|pare|cut (generic term)
+whittle away|1
+(verb)|whittle down|wear away|damage (generic term)
+whittle down|1
+(verb)|whittle away|wear away|damage (generic term)
+whittler|1
+(noun)|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+whitweek|1
+(noun)|Whitsun|Whitsuntide|Whitweek|season (generic term)
+whiz|3
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whizz|wizard|wiz|expert (generic term)
+(noun)|sound (generic term)
+(verb)|whizz|whirr|whir|birr|purr|sound (generic term)|go (generic term)
+whiz-kid|1
+(noun)|go-getter|whizz-kid|ball of fire|actor (generic term)|doer (generic term)|worker (generic term)
+whizbang|2
+(noun)|whizzbang|whizbang shell|shell (generic term)
+(noun)|whizzbang|firecracker (generic term)|cracker (generic term)|banger (generic term)
+whizbang shell|1
+(noun)|whizbang|whizzbang|shell (generic term)
+whizz|3
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|wizard|wiz|expert (generic term)
+(verb)|whiz|whirr|whir|birr|purr|sound (generic term)|go (generic term)
+(verb)|zoom|zoom along|whizz along|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+whizz-kid|1
+(noun)|go-getter|whiz-kid|ball of fire|actor (generic term)|doer (generic term)|worker (generic term)
+whizz along|1
+(verb)|zoom|zoom along|whizz|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+whizzbang|2
+(noun)|whizbang|whizbang shell|shell (generic term)
+(noun)|whizbang|firecracker (generic term)|cracker (generic term)|banger (generic term)
+who|1
+(noun)|World Health Organization|WHO|United Nations agency (generic term)|UN agency (generic term)
+whodunit|1
+(noun)|mystery|mystery story|story (generic term)
+whole|10
+(adj)|entire (similar term)|full (similar term)|total (similar term)|full-length (similar term)|full-page (similar term)|integral (similar term)|entire (similar term)|intact (similar term)|livelong (similar term)|undivided (similar term)|complete (related term)|fractional (antonym)
+(adj)|half (antonym)
+(adj)|overall|total|gross (similar term)
+(adj)|unharmed|unhurt|unscathed|uninjured (similar term)
+(adj)|intact|unimpaired (similar term)
+(adj)|hale|healthy (similar term)
+(adj)|solid|unanimous|undiversified (similar term)
+(noun)|concept (generic term)|conception (generic term)|construct (generic term)
+(noun)|unit|object (generic term)|physical object (generic term)
+(adv)|wholly|entirely|completely|totally|all|altogether|partly (antonym)
+whole-souled|1
+(adj)|heart-whole|wholehearted|sincere (similar term)
+whole-wheat|1
+(adj)|wheaten|wholemeal|grain|food grain|cereal (related term)
+whole-word method|1
+(noun)|teaching reading (generic term)
+whole blood|1
+(noun)|blood (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+whole gale|1
+(noun)|gale (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+whole life insurance|1
+(noun)|ordinary life insurance|straight life insurance|life insurance (generic term)|life assurance (generic term)
+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 (generic term)|large indefinite amount (generic term)
+whole meal bread|1
+(noun)|dark bread|whole wheat bread|brown bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+whole meal flour|1
+(noun)|whole wheat flour|graham flour|graham|wheat flour (generic term)
+whole milk|1
+(noun)|milk (generic term)|skim milk (antonym)
+whole name|1
+(noun)|holonym|word (generic term)
+whole note|1
+(noun)|semibreve|note (generic term)|musical note (generic term)|tone (generic term)
+whole number|1
+(noun)|integer|number (generic term)
+whole rest|1
+(noun)|rest (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+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 (generic term)|large indefinite amount (generic term)
+whole snipe|1
+(noun)|Gallinago gallinago|snipe (generic term)
+whole step|1
+(noun)|tone|whole tone|step|interval (generic term)|musical interval (generic term)
+whole to part relation|1
+(noun)|holonymy|semantic relation (generic term)
+whole tone|1
+(noun)|tone|step|whole step|interval (generic term)|musical interval (generic term)
+whole wheat bread|1
+(noun)|dark bread|whole meal bread|brown bread|bread (generic term)|breadstuff (generic term)|staff of life (generic term)
+whole wheat flour|1
+(noun)|graham flour|graham|whole meal flour|wheat flour (generic term)
+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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+wholehearted|1
+(adj)|heart-whole|whole-souled|sincere (similar term)
+wholeheartedness|2
+(noun)|heartiness|sincerity (generic term)
+(noun)|willingness (generic term)
+wholemeal|1
+(adj)|wheaten|whole-wheat|grain|food grain|cereal (related term)
+wholeness|2
+(noun)|integrity|unity|state (generic term)
+(noun)|haleness|good health (generic term)|healthiness (generic term)
+wholesale|6
+(adj)|retail (antonym)
+(adj)|sweeping|indiscriminate (similar term)
+(noun)|selling (generic term)|merchandising (generic term)|marketing (generic term)|retail (antonym)
+(verb)|sell (generic term)|retail (antonym)
+(adv)|retail (antonym)
+(adv)|in large quantities
+wholesale house|1
+(noun)|discount house|discount store|discounter|mercantile establishment (generic term)|retail store (generic term)|sales outlet (generic term)|outlet (generic term)
+wholesale price index|1
+(noun)|producer price index|price index (generic term)|price level (generic term)
+wholesaler|1
+(noun)|jobber|middleman|distributor (generic term)|distributer (generic term)
+wholesome|2
+(adj)|alimentary (similar term)|alimental (similar term)|nourishing (similar term)|nutrient (similar term)|nutritious (similar term)|nutritive (similar term)|heart-healthy (similar term)|healthy (similar term)|salubrious (similar term)|good for you (similar term)|hearty (similar term)|satisfying (similar term)|solid (similar term)|square (similar term)|substantial (similar term)|organic (similar term)|salubrious (similar term)|healthful (related term)|healthy (related term)|sound (related term)|unwholesome (antonym)
+(adj)|healthy (similar term)
+wholesomeness|1
+(noun)|quality (generic term)|unwholesomeness (antonym)
+wholly|1
+(adv)|entirely|completely|totally|all|altogether|whole|partly (antonym)
+whomp|2
+(verb)|cuff|slap (generic term)
+(verb)|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+whomp up|1
+(verb)|whip up|cook (generic term)|fix (generic term)|ready (generic term)|make (generic term)|prepare (generic term)
+whoop|3
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+(verb)|hack|cough (generic term)
+whoop it up|1
+(verb)|revel|racket|make whoopie|make merry|make happy|jollify|wassail|celebrate (generic term)|fete (generic term)
+whoopee|1
+(noun)|revel (generic term)|revelry (generic term)
+whooper|2
+(noun)|whooping crane|Grus americana|crane (generic term)
+(noun)|whooper swan|Cygnus cygnus|swan (generic term)
+whooper swan|1
+(noun)|whooper|Cygnus cygnus|swan (generic term)
+whooping cough|1
+(noun)|pertussis|infectious disease (generic term)|respiratory disease (generic term)|respiratory illness (generic term)|respiratory disorder (generic term)
+whooping crane|1
+(noun)|whooper|Grus americana|crane (generic term)
+whoosh|4
+(noun)|swoosh|noise (generic term)
+(verb)|woosh|move (generic term)|displace (generic term)
+(verb)|hiss|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|spurt (generic term)|spirt (generic term)|gush (generic term)|spout (generic term)
+whop|2
+(verb)|whack|wham|wallop|hit (generic term)
+(verb)|sock|bop|whap|bonk|bash|hit (generic term)
+whopper|2
+(noun)|walloper|lie (generic term)|prevarication (generic term)
+(noun)|whacker|thing (generic term)
+whopping|1
+(adj)|humongous|banging|thumping|walloping|large (similar term)|big (similar term)
+whore|3
+(noun)|prostitute|cocotte|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+(verb)|corrupt (generic term)|pervert (generic term)|subvert (generic term)|demoralize (generic term)|demoralise (generic term)|debauch (generic term)|debase (generic term)|profane (generic term)|vitiate (generic term)|deprave (generic term)|misdirect (generic term)
+(verb)|fornicate (generic term)
+whoredom|1
+(noun)|prostitution|harlotry|vice crime (generic term)
+whorehouse|1
+(noun)|brothel|bordello|bagnio|house of prostitution|house of ill repute|bawdyhouse|cathouse|sporting house|building (generic term)|edifice (generic term)
+whoremaster|2
+(noun)|whoremonger|john|trick|customer (generic term)|client (generic term)
+(noun)|whoremonger|pimp (generic term)|procurer (generic term)|panderer (generic term)|pander (generic term)|pandar (generic term)|fancy man (generic term)|ponce (generic term)
+whoremonger|2
+(noun)|whoremaster|john|trick|customer (generic term)|client (generic term)
+(noun)|whoremaster|pimp (generic term)|procurer (generic term)|panderer (generic term)|pander (generic term)|pandar (generic term)|fancy man (generic term)|ponce (generic term)
+whoreson|2
+(noun)|bastard|by-blow|love child|illegitimate child|illegitimate|offspring (generic term)|progeny (generic term)|issue (generic term)
+(noun)|asshole|bastard|cocksucker|dickhead|shit|mother fucker|motherfucker|prick|son of a bitch|SOB|unpleasant person (generic term)|disagreeable person (generic term)
+whorl|3
+(noun)|coil|roll|curl|curlicue|ringlet|gyre|scroll|round shape (generic term)
+(noun)|lock|curl|ringlet|hair (generic term)
+(noun)|coil|spiral|volute|helix|structure (generic term)|construction (generic term)
+whorled|3
+(adj)|looped|coiled (similar term)
+(adj)|coiling|helical|spiral|spiraling|volute|voluted|turbinate|coiled (similar term)
+(adj)|verticillate|verticillated|cyclic (similar term)
+whorled aster|1
+(noun)|Aster acuminatus|aster (generic term)
+whorled caraway|1
+(noun)|caraway (generic term)|Carum carvi (generic term)
+whorled loosestrife|1
+(noun)|Lysimachia quadrifolia|loosestrife (generic term)
+whorled milkweed|1
+(noun)|Asclepias verticillata|milkweed (generic term)|silkweed (generic term)
+whorlywort|1
+(noun)|Culver's root|Culvers root|Culver's physic|Culvers physic|Veronicastrum virginicum|asterid dicot genus (generic term)
+whortleberry|2
+(noun)|bilberry|whinberry|blaeberry|Viccinium myrtillus|blueberry (generic term)|blueberry bush (generic term)
+(noun)|bilberry|European blueberry|berry (generic term)
+why|1
+(noun)|wherefore|reason (generic term)|ground (generic term)
+whydah|1
+(noun)|whidah|widow bird|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+wi|1
+(noun)|Wisconsin|Badger State|WI|American state (generic term)
+wicca|2
+(noun)|Wicca|cult (generic term)
+(noun)|Wicca|religion (generic term)|faith (generic term)|religious belief (generic term)
+wiccan|2
+(adj)|Wiccan|religion|faith|religious belief (related term)
+(noun)|Wiccan|witch|pagan (generic term)
+wichita|3
+(noun)|Wichita|Caddo (generic term)
+(noun)|Wichita|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Wichita|Caddo (generic term)|Caddoan (generic term)|Caddoan language (generic term)
+wichita falls|1
+(noun)|Wichita Falls|city (generic term)|metropolis (generic term)|urban center (generic term)
+wick|2
+(noun)|cord (generic term)
+(noun)|taper|cord (generic term)
+wicked|5
+(adj)|evil (similar term)|vicious (similar term)|heavy (similar term)|iniquitous (similar term)|sinful (similar term)|ungodly (similar term)|irreclaimable (similar term)|irredeemable (similar term)|unredeemable (similar term)|unreformable (similar term)|nefarious (similar term)|villainous (similar term)|peccable (similar term)|peccant (similar term)|evil (related term)|immoral (related term)|impious (related term)|unrighteous (related term)|wrong (related term)|virtuous (antonym)
+(adj)|sinful|unholy|unrighteous (similar term)
+(adj)|severe|terrible|intense (similar term)
+(adj)|impish|implike|mischievous|pixilated|prankish|puckish|playful (similar term)
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|yucky|offensive (similar term)
+wickedly|1
+(adv)|evilly
+wickedness|5
+(noun)|evil|immorality|iniquity|transgression (generic term)|evildoing (generic term)
+(noun)|iniquity|darkness|dark|condition (generic term)|status (generic term)
+(noun)|nefariousness|vileness|ugliness|evil (generic term)|evilness (generic term)
+(noun)|sin|sinfulness|unrighteousness (generic term)
+(noun)|loathsomeness|repulsiveness|sliminess|vileness|lousiness|offensiveness (generic term)|odiousness (generic term)|distastefulness (generic term)
+wicker|2
+(noun)|wood (generic term)
+(noun)|wickerwork|caning|work (generic term)|piece of work (generic term)
+wicker basket|1
+(noun)|basket (generic term)|handbasket (generic term)
+wickerwork|1
+(noun)|wicker|caning|work (generic term)|piece of work (generic term)
+wicket|4
+(noun)|cricket equipment (generic term)
+(noun)|hoop|croquet equipment (generic term)
+(noun)|wicket door|wicket gate|gate (generic term)
+(noun)|lattice|grille|opening (generic term)
+wicket-keeper|1
+(noun)|cricketer (generic term)
+wicket door|1
+(noun)|wicket|wicket gate|gate (generic term)
+wicket gate|1
+(noun)|wicket|wicket door|gate (generic term)
+wickiup|1
+(noun)|wikiup|lodge (generic term)|indian lodge (generic term)
+wickliffe|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+wickup|1
+(noun)|fireweed|giant willowherb|rosebay willowherb|Epilobium angustifolium|willowherb (generic term)
+wiclif|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+wicopy|1
+(noun)|leatherwood|moosewood|moose-wood|ropebark|Dirca palustris|shrub (generic term)|bush (generic term)
+widal's test|1
+(noun)|Widal test|Widal's test|agglutination test (generic term)
+widal test|1
+(noun)|Widal test|Widal's test|agglutination test (generic term)
+wide|9
+(adj)|broad|beamy (similar term)|bird's-eye (similar term)|panoramic (similar term)|broad-brimmed (similar term)|deep (similar term)|fanlike (similar term)|sweeping (similar term)|wide-screen (similar term)|comprehensive (related term)|thick (related term)|narrow (antonym)
+(adj)|across-the-board|all-embracing|all-encompassing|all-inclusive|blanket|broad|encompassing|extensive|panoptic|comprehensive (similar term)
+(adj)|wide-eyed|open (similar term)|opened (similar term)
+(adj)|broad|spacious|large (similar term)|big (similar term)
+(adj)|comfortable (similar term)|narrow (antonym)
+(adj)|wide-cut|full|ample (similar term)
+(adj)|wide of the mark|inaccurate (similar term)
+(adv)|astray
+(adv)|widely
+wide-angle|1
+(adj)|fisheye|camera lens|optical lens (related term)
+wide-angle lens|1
+(noun)|fisheye lens|camera lens (generic term)|optical lens (generic term)
+wide-awake|2
+(adj)|unsleeping|awake (similar term)
+(adj)|heads-up|alert (similar term)
+wide-body|1
+(noun)|widebody aircraft|wide-body aircraft|twin-aisle airplane|airliner (generic term)
+wide-body aircraft|1
+(noun)|widebody aircraft|wide-body|twin-aisle airplane|airliner (generic term)
+wide-cut|1
+(adj)|wide|full|ample (similar term)
+wide-eyed|2
+(adj)|childlike|round-eyed|dewy-eyed|simple|naive (similar term)|naif (similar term)
+(adj)|wide|open (similar term)|opened (similar term)
+wide-open|2
+(adj)|open (similar term)|unfastened (similar term)
+(adj)|lawless|unlawful (similar term)
+wide-ranging|2
+(adj)|large (similar term)|big (similar term)
+(adj)|varied|diversified (similar term)
+wide-screen|1
+(adj)|wide (similar term)|broad (similar term)
+wide area network|1
+(noun)|WAN|computer network (generic term)
+wide of the mark|1
+(adj)|wide|inaccurate (similar term)
+wide screen|1
+(noun)|screen (generic term)|silver screen (generic term)|projection screen (generic term)
+wide wale|1
+(noun)|cord (generic term)|corduroy (generic term)
+wideband|1
+(adj)|broadband|band (related term)
+widebody aircraft|1
+(noun)|wide-body aircraft|wide-body|twin-aisle airplane|airliner (generic term)
+widegrip pushup|1
+(noun)|pushup (generic term)|press-up (generic term)
+widely|1
+(adv)|wide
+widely distributed|1
+(adj)|cosmopolitan|endemic (antonym)
+widen|4
+(verb)|increase (generic term)|narrow (antonym)
+(verb)|let out|change (generic term)|alter (generic term)|vary (generic term)|take in (antonym)
+(verb)|change (generic term)|alter (generic term)|modify (generic term)
+(verb)|broaden|extend|increase (generic term)
+wideness|2
+(noun)|broadness|width (generic term)|breadth (generic term)|narrowness (antonym)
+(noun)|enormousness|grandness|greatness|immenseness|immensity|sizeableness|vastness|largeness (generic term)|bigness (generic term)
+widening|3
+(noun)|broadening|increase (generic term)|increment (generic term)|growth (generic term)|narrowing (antonym)
+(noun)|turnout|part (generic term)|portion (generic term)
+(noun)|broadening|change of shape (generic term)|narrowing (antonym)
+widespread|2
+(adj)|general (similar term)
+(adj)|far-flung|distributed (similar term)
+widgeon|1
+(noun)|wigeon|Anas penelope|duck (generic term)
+widget|2
+(noun)|doodad|doohickey|doojigger|gimmick|gizmo|gismo|gubbins|thingamabob|thingumabob|thingmabob|thingamajig|thingumajig|thingmajig|thingummy|whatchamacallit|whatchamacallum|whatsis|stuff (generic term)
+(noun)|appliance|contraption|contrivance|convenience|gadget|gizmo|gismo|device (generic term)
+widow|2
+(noun)|widow woman|woman (generic term)|adult female (generic term)
+(verb)|leave (generic term)|leave behind (generic term)
+widow's peak|1
+(noun)|point (generic term)|tip (generic term)|peak (generic term)
+widow's walk|1
+(noun)|lookout (generic term)|observation tower (generic term)|lookout station (generic term)|observatory (generic term)
+widow's weeds|1
+(noun)|weeds|garment (generic term)
+widow bird|1
+(noun)|whydah|whidah|weaver (generic term)|weaverbird (generic term)|weaver finch (generic term)
+widow woman|1
+(noun)|widow|woman (generic term)|adult female (generic term)
+widowed|1
+(adj)|unmarried (similar term)|single (similar term)
+widower|1
+(noun)|widowman|man (generic term)|adult male (generic term)
+widowhood|2
+(noun)|time of life (generic term)
+(noun)|marital status (generic term)
+widowman|1
+(noun)|widower|man (generic term)|adult male (generic term)
+width|1
+(noun)|breadth|dimension (generic term)
+wieland|1
+(noun)|Wayland|Wayland the Smith|Wieland|mythical being (generic term)
+wield|2
+(verb)|exert|maintain|have (generic term)|have got (generic term)|hold (generic term)
+(verb)|handle|manipulate (generic term)
+wieldy|1
+(adj)|unwieldy (antonym)
+wiener|2
+(noun)|Wiener|Norbert Wiener|mathematician (generic term)
+(noun)|frank|frankfurter|hotdog|hot dog|dog|wienerwurst|weenie|sausage (generic term)
+wiener roast|1
+(noun)|weenie roast|cookout (generic term)
+wiener schnitzel|1
+(noun)|schnitzel|Wiener schnitzel|dish (generic term)
+wienerwurst|1
+(noun)|frank|frankfurter|hotdog|hot dog|dog|wiener|weenie|sausage (generic term)
+wiesbaden|1
+(noun)|Wiesbaden|city (generic term)|metropolis (generic term)|urban center (generic term)|watering place (generic term)|watering hole (generic term)|spa (generic term)
+wiesel|1
+(noun)|Wiesel|Elie Wiesel|Eliezer Wiesel|writer (generic term)|author (generic term)|historian (generic term)|historiographer (generic term)
+wiesenboden|1
+(noun)|soil (generic term)|dirt (generic term)
+wiesenthal|1
+(noun)|Wiesenthal|Samuel Wiesenthal|investigator (generic term)
+wife|1
+(noun)|married woman|woman (generic term)|adult female (generic term)|spouse (generic term)|partner (generic term)|married person (generic term)|mate (generic term)|better half (generic term)|husband (antonym)
+wifelike|1
+(adj)|wifely|uxorial|husbandly (antonym)
+wifely|1
+(adj)|wifelike|uxorial|husbandly (antonym)
+wiffle|1
+(noun)|Wiffle|Wiffle Ball|ball (generic term)
+wiffle ball|1
+(noun)|Wiffle|Wiffle Ball|ball (generic term)
+wifi|1
+(noun)|wireless local area network|WLAN|wireless fidelity|WiFi|local area network (generic term)|LAN (generic term)
+wig|2
+(noun)|hairpiece (generic term)|false hair (generic term)|postiche (generic term)
+(noun)|wigging|chiding (generic term)|scolding (generic term)|objurgation (generic term)|tongue-lashing (generic term)
+wig tree|1
+(noun)|Venetian sumac|Cotinus coggygria|smoke tree (generic term)|smoke bush (generic term)
+wigeon|1
+(noun)|widgeon|Anas penelope|duck (generic term)
+wigged|1
+(adj)|peruked (similar term)|periwigged (similar term)|toupeed (similar term)|wigless (antonym)
+wigging|1
+(noun)|wig|chiding (generic term)|scolding (generic term)|objurgation (generic term)|tongue-lashing (generic term)
+wiggle|2
+(noun)|wriggle|squirm|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|jiggle|joggle|shake (generic term)|agitate (generic term)
+wiggle nail|1
+(noun)|corrugated fastener|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+wiggle room|1
+(noun)|flexibility (generic term)|flexibleness (generic term)
+wiggler|3
+(noun)|wriggler|squirmer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|wriggler|larva (generic term)
+(noun)|earthworm|angleworm|fishworm|fishing worm|nightwalker|nightcrawler|crawler|dew worm|red worm|oligochaete (generic term)|oligochaete worm (generic term)
+wiggliness|1
+(noun)|looseness (generic term)|play (generic term)
+wiggling|1
+(adj)|squirming|twisting|wiggly|wriggling|wriggly|writhing|moving (similar term)
+wiggly|2
+(adj)|sinuate|sinuous|curved (similar term)|curving (similar term)
+(adj)|squirming|twisting|wiggling|wriggling|wriggly|writhing|moving (similar term)
+wight|2
+(noun)|creature|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|Wight|Isle of Wight|isle (generic term)|islet (generic term)|county (generic term)
+wigless|1
+(adj)|wigged (antonym)
+wigmaker|1
+(noun)|maker (generic term)|shaper (generic term)
+wigner|1
+(noun)|Wigner|Eugene Wigner|Eugene Paul Wigner|nuclear physicist (generic term)
+wigwag|2
+(verb)|brandish (generic term)|flourish (generic term)|wave (generic term)
+(verb)|sign (generic term)|signal (generic term)|signalize (generic term)|signalise (generic term)
+wigwam|1
+(noun)|lodge (generic term)|indian lodge (generic term)
+wikiup|1
+(noun)|wickiup|lodge (generic term)|indian lodge (generic term)
+wilbur wright|1
+(noun)|Wright|Wilbur Wright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+wild|16
+(adj)|chaotic (similar term)|disorderly (similar term)|delirious (similar term)|excited (similar term)|frantic (similar term)|mad (similar term)|unrestrained (similar term)|frenzied (similar term)|manic (similar term)|unsubdued (similar term)|unquiet (related term)|tame (antonym)
+(adj)|untamed|feral (similar term)|ferine (similar term)|savage (similar term)|semi-wild (similar term)|unbroken (similar term)|undomesticated (similar term)|intractable (related term)|tame (antonym)
+(adj)|passionate (similar term)
+(adj)|uncontrolled (similar term)
+(adj)|violent|intense (similar term)
+(adj)|baseless|groundless|idle|unfounded|unwarranted|unsupported (similar term)
+(adj)|raving|raving mad|insane (similar term)
+(adj)|hazardous|risky|dangerous (similar term)|unsafe (similar term)
+(adj)|fantastic|unrealistic (similar term)
+(adj)|desert|godforsaken|waste|inhospitable (similar term)
+(adj)|crazy|enthusiastic (similar term)
+(adj)|barbarian|barbaric|savage|uncivilized|uncivilised|noncivilized (similar term)|noncivilised (similar term)
+(adj)|angry|furious|raging|tempestuous|stormy (similar term)
+(noun)|natural state|state of nature|state (generic term)
+(noun)|wilderness|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(adv)|rampantly
+wild-eyed|2
+(adj)|agitated (similar term)
+(adj)|quixotic|romantic|impractical (similar term)
+wild-goose chase|1
+(noun)|pursuit (generic term)|pursuance (generic term)|quest (generic term)
+wild angelica|1
+(noun)|Angelica sylvestris|angelica (generic term)|angelique (generic term)
+wild apple|1
+(noun)|crab apple|crabapple|apple tree (generic term)
+wild ass|1
+(noun)|ass (generic term)
+wild basil|1
+(noun)|cushion calamint|Clinopodium vulgare|Satureja vulgaris|herb (generic term)|herbaceous plant (generic term)
+wild bean|2
+(noun)|groundnut|groundnut vine|Indian potato|potato bean|Apios americana|Apios tuberosa|vine (generic term)
+(noun)|groundnut|potato bean|tuber (generic term)
+wild bergamot|1
+(noun)|monarda|herb (generic term)|herbaceous plant (generic term)
+wild bill hickock|1
+(noun)|Hickock|Wild Bill Hickock|James Butler Hickock|marshal (generic term)|marshall (generic term)
+wild blue yonder|1
+(noun)|blue sky|blue|blue air|sky (generic term)
+wild boar|1
+(noun)|boar|Sus scrofa|swine (generic term)
+wild buckwheat|1
+(noun)|California buckwheat|Erigonum fasciculatum|eriogonum (generic term)
+wild cabbage|1
+(noun)|Brassica oleracea|crucifer (generic term)|cruciferous plant (generic term)
+wild calla|1
+(noun)|water arum|Calla palustris|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+wild card|2
+(noun)|factor (generic term)
+(noun)|playing card (generic term)
+wild carrot|1
+(noun)|Queen Anne's lace|Daucus carota|wildflower (generic term)|wild flower (generic term)
+wild cavy|1
+(noun)|aperea|Cavia porcellus|cavy (generic term)
+wild celery|2
+(noun)|Apium graveolens|herb (generic term)|herbaceous plant (generic term)
+(noun)|tape grass|eelgrass|Vallisneria spiralis|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+wild chamomile|1
+(noun)|sweet false chamomile|German chamomile|Matricaria recutita|Matricaria chamomilla|herb (generic term)|herbaceous plant (generic term)
+wild cherry|2
+(noun)|fruit (generic term)
+(noun)|wild cherry tree|cherry (generic term)|cherry tree (generic term)
+wild cherry tree|1
+(noun)|wild cherry|cherry (generic term)|cherry tree (generic term)
+wild chervil|1
+(noun)|cow parsley|Anthriscus sylvestris|herb (generic term)|herbaceous plant (generic term)
+wild china tree|1
+(noun)|wild China tree|Sapindus drumondii|Sapindus marginatus|soapberry (generic term)|soapberry tree (generic term)
+wild cinnamon|2
+(noun)|white cinnamon tree|Canella winterana|Canella-alba|shrub (generic term)|bush (generic term)
+(noun)|bayberry|bay-rum tree|Jamaica bayberry|Pimenta acris|tree (generic term)
+wild clary|1
+(noun)|wild sage|vervain sage|Salvia verbenaca|sage (generic term)|salvia (generic term)
+wild climbing hempweed|1
+(noun)|climbing hempweed|climbing boneset|climbing hemp-vine|Mikania scandens|vine (generic term)
+wild coffee|1
+(noun)|feverroot|horse gentian|tinker's root|Triostium perfoliatum|herb (generic term)|herbaceous plant (generic term)
+wild cotton|1
+(noun)|Arizona wild cotton|Gossypium thurberi|cotton (generic term)|cotton plant (generic term)
+wild crab|1
+(noun)|Malus sylvestris|wild apple (generic term)|crab apple (generic term)|crabapple (generic term)
+wild cranberry|1
+(noun)|common bearberry|red bearberry|mealberry|hog cranberry|sand berry|sandberry|mountain box|bear's grape|creashak|Arctostaphylos uva-ursi|bearberry (generic term)
+wild crocus|1
+(noun)|American pasqueflower|Eastern pasque flower|lion's beard|prairie anemone|blue tulip|American pulsatilla|Pulsatilla patens|Anemone ludoviciana|pasqueflower (generic term)|pasque flower (generic term)
+wild dog|1
+(noun)|canine (generic term)|canid (generic term)
+wild duck|1
+(noun)|duck (generic term)
+wild emmer|1
+(noun)|wild wheat|Triticum dicoccum dicoccoides|wheat (generic term)
+wild fig|2
+(noun)|golden fig|Florida strangler fig|strangler fig|Ficus aurea|fig tree (generic term)
+(noun)|Clusia flava|tree (generic term)
+wild flower|1
+(noun)|wildflower|angiosperm (generic term)|flowering plant (generic term)|wilding (generic term)
+wild garlic|2
+(noun)|wood garlic|Ramsons|Allium ursinum|alliaceous plant (generic term)
+(noun)|crow garlic|false garlic|field garlic|stag's garlic|Allium vineale|wild onion (generic term)
+wild geranium|1
+(noun)|spotted cranesbill|Geranium maculatum|cranesbill (generic term)|crane's bill (generic term)
+wild ginger|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+wild goat|1
+(noun)|goat (generic term)|caprine animal (generic term)
+wild hollyhock|2
+(noun)|checkerbloom|Sidalcea malviflora|mallow (generic term)
+(noun)|Iliamna remota|Sphaeralcea remota|mallow (generic term)
+wild hop|1
+(noun)|red bryony|Bryonia dioica|bryony (generic term)|briony (generic term)
+wild horse|1
+(noun)|horse (generic term)|Equus caballus (generic term)
+wild hyacinth|2
+(noun)|wood hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+(noun)|indigo squill|Camassia scilloides|camas (generic term)|camass (generic term)|quamash (generic term)|camosh (generic term)|camash (generic term)
+wild hydrangea|1
+(noun)|Hydrangea arborescens|hydrangea (generic term)
+wild indigo|1
+(noun)|false indigo|woody plant (generic term)|ligneous plant (generic term)
+wild leek|2
+(noun)|ramp|Allium tricoccum|alliaceous plant (generic term)
+(noun)|Levant garlic|kurrat|Allium ampeloprasum|alliaceous plant (generic term)
+wild licorice|3
+(noun)|Galium lanceolatum|bedstraw (generic term)
+(noun)|wild liquorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb (generic term)|herbaceous plant (generic term)
+(noun)|wild liquorice|Astragalus glycyphyllos|milk vetch (generic term)|milk-vetch (generic term)
+wild lily of the valley|2
+(noun)|Pyrola rotundifolia|wintergreen (generic term)|pyrola (generic term)
+(noun)|shinleaf|Pyrola elliptica|wintergreen (generic term)|pyrola (generic term)
+wild liquorice|2
+(noun)|wild licorice|American licorice|American liquorice|Glycyrrhiza lepidota|herb (generic term)|herbaceous plant (generic term)
+(noun)|wild licorice|Astragalus glycyphyllos|milk vetch (generic term)|milk-vetch (generic term)
+wild lupine|1
+(noun)|sundial lupine|Indian beet|old-maid's bonnet|Lupinus perennis|subshrub (generic term)|suffrutex (generic term)
+wild madder|1
+(noun)|white madder|white bedstraw|infant's-breath|false baby's breath|Galium mollugo|bedstraw (generic term)
+wild man|1
+(noun)|feral man|primitive (generic term)|primitive person (generic term)
+wild mandrake|1
+(noun)|mayapple|May apple|Podophyllum peltatum|herb (generic term)|herbaceous plant (generic term)
+wild mango|1
+(noun)|dika|wild mango tree|Irvingia gabonensis|fruit tree (generic term)
+wild mango tree|1
+(noun)|wild mango|dika|Irvingia gabonensis|fruit tree (generic term)
+wild marjoram|1
+(noun)|oregano|marjoram|pot marjoram|winter sweet|Origanum vulgare|origanum (generic term)
+wild meadow lily|1
+(noun)|Canada lily|wild yellow lily|meadow lily|Lilium canadense|lily (generic term)
+wild medlar|1
+(noun)|wild medlar tree|medlar|Vangueria infausta|tree (generic term)
+wild medlar tree|1
+(noun)|wild medlar|medlar|Vangueria infausta|tree (generic term)
+wild morning-glory|2
+(noun)|hedge bindweed|Calystegia sepium|Convolvulus sepium|bindweed (generic term)
+(noun)|field bindweed|Convolvulus arvensis|bindweed (generic term)
+wild mustard|1
+(noun)|field mustard|charlock|chadlock|Brassica kaber|Sinapis arvensis|mustard (generic term)
+wild oat|1
+(noun)|wild oat grass|Avena fatua|oat (generic term)
+wild oat grass|1
+(noun)|wild oat|Avena fatua|oat (generic term)
+wild oats|1
+(noun)|bellwort|merry bells|flower (generic term)
+wild olive|1
+(noun)|Elaeagnus latifolia|oleaster (generic term)
+wild onion|1
+(noun)|alliaceous plant (generic term)
+wild orange|2
+(noun)|trifoliate orange|trifoliata|Poncirus trifoliata|tree (generic term)
+(noun)|cherry laurel|laurel cherry|mock orange|Prunus caroliniana|angiospermous tree (generic term)|flowering tree (generic term)
+wild ox|1
+(noun)|ox|bovine (generic term)
+wild pansy|1
+(noun)|Johnny-jump-up|heartsease|love-in-idleness|pink of my John|Viola tricolor|viola (generic term)
+wild parsley|1
+(noun)|umbellifer (generic term)|umbelliferous plant (generic term)
+wild parsnip|1
+(noun)|madnep|parsnip (generic term)|Pastinaca sativa (generic term)|weed (generic term)
+wild pea|1
+(noun)|legume (generic term)|leguminous plant (generic term)
+wild peach|1
+(noun)|Kiggelaria africana|shrub (generic term)|bush (generic term)
+wild peanut|1
+(noun)|hog peanut|Amphicarpaea bracteata|Amphicarpa bracteata|vine (generic term)
+wild pink|2
+(noun)|bog rose|dragon's mouth|Arethusa bulbosa|arethusa (generic term)
+(noun)|Silene caroliniana|silene (generic term)|campion (generic term)|catchfly (generic term)
+wild pitch|1
+(noun)|pitch (generic term)|delivery (generic term)
+wild plum|2
+(noun)|wild plum tree|plum (generic term)|plum tree (generic term)
+(noun)|hog plum|edible fruit (generic term)
+wild plum tree|1
+(noun)|wild plum|plum (generic term)|plum tree (generic term)
+wild potato|1
+(noun)|Solanum jamesii|vine (generic term)
+wild potato vine|1
+(noun)|wild sweet potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+wild pumpkin|1
+(noun)|prairie gourd|prairie gourd vine|Missouri gourd|buffalo gourd|calabazilla|Cucurbita foetidissima|gourd (generic term)|gourd vine (generic term)
+wild quinine|1
+(noun)|American feverfew|prairie dock|Parthenium integrifolium|subshrub (generic term)|suffrutex (generic term)
+wild radish|1
+(noun)|jointed charlock|wild rape|runch|Raphanus raphanistrum|weed (generic term)
+wild rape|1
+(noun)|jointed charlock|wild radish|runch|Raphanus raphanistrum|weed (generic term)
+wild raspberry|1
+(noun)|European raspberry|framboise|Rubus idaeus|red raspberry (generic term)
+wild red oat|1
+(noun)|animated oat|Avene sterilis|oat (generic term)
+wild rice|2
+(noun)|Zizania aquatica|cereal (generic term)|cereal grass (generic term)
+(noun)|Indian rice|grain (generic term)|food grain (generic term)|cereal (generic term)
+wild rosemary|1
+(noun)|marsh tea|Ledum palustre|shrub (generic term)|bush (generic term)
+wild rye|1
+(noun)|grass (generic term)
+wild sage|1
+(noun)|wild clary|vervain sage|Salvia verbenaca|sage (generic term)|salvia (generic term)
+wild sarsaparilla|1
+(noun)|false sarsaparilla|wild sarsparilla|Aralia nudicaulis|subshrub (generic term)|suffrutex (generic term)
+wild sarsparilla|1
+(noun)|wild sarsaparilla|false sarsaparilla|Aralia nudicaulis|subshrub (generic term)|suffrutex (generic term)
+wild senna|1
+(noun)|Senna marilandica|Cassia marilandica|herb (generic term)|herbaceous plant (generic term)
+wild sensitive plant|1
+(noun)|partridge pea|sensitive pea|Chamaecrista fasciculata|Cassia fasciculata|subshrub (generic term)|suffrutex (generic term)
+wild service tree|1
+(noun)|Sorbus torminalis|service tree (generic term)|sorb apple (generic term)|sorb apple tree (generic term)|Sorbus domestica (generic term)
+wild sheep|1
+(noun)|bovid (generic term)
+wild snapdragon|1
+(noun)|toadflax|butter-and-eggs|devil's flax|Linaria vulgaris|flower (generic term)
+wild spinach|4
+(noun)|good-king-henry|allgood|fat hen|Chenopodium bonus-henricus|goosefoot (generic term)
+(noun)|lamb's-quarters|pigweed|Chenopodium album|goosefoot (generic term)
+(noun)|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+(noun)|lamb's-quarter|pigweed|greens (generic term)|green (generic term)|leafy vegetable (generic term)
+wild spurge|1
+(noun)|flowering spurge|tramp's spurge|Euphorbia corollata|spurge (generic term)
+wild strawberry|1
+(noun)|wood strawberry|Fragaria vesca|strawberry (generic term)
+wild sweet pea|1
+(noun)|catgut|goat's rue|Tephrosia virginiana|hoary pea (generic term)
+wild sweet potato vine|1
+(noun)|wild potato vine|man-of-the-earth|manroot|scammonyroot|Ipomoea panurata|Ipomoea fastigiata|morning glory (generic term)
+wild tamarind|2
+(noun)|manila tamarind|camachile|huamachil|Pithecellobium dulce|tree (generic term)
+(noun)|Lysiloma latisiliqua|Lysiloma bahamensis|tree (generic term)
+wild teasel|1
+(noun)|Dipsacus sylvestris|teasel (generic term)|teazel (generic term)|teasle (generic term)
+wild thyme|1
+(noun)|creeping thyme|Thymus serpyllum|thyme (generic term)
+wild tobacco|1
+(noun)|Indian tobacco|Nicotiana rustica|tobacco (generic term)|tobacco plant (generic term)
+wild vanilla|1
+(noun)|Trilisa odoratissima|herb (generic term)|herbaceous plant (generic term)
+wild water lemon|1
+(noun)|love-in-a-mist|running pop|Passiflora foetida|passionflower (generic term)|passionflower vine (generic term)
+wild west|1
+(noun)|Wild West|West (generic term)|western United States (generic term)
+wild west show|1
+(noun)|Wild West Show|Buffalo Bill's Wild West Show|show (generic term)
+wild wheat|1
+(noun)|wild emmer|Triticum dicoccum dicoccoides|wheat (generic term)
+wild wilkworm|1
+(noun)|silkworm|giant silkworm|caterpillar (generic term)
+wild winterpea|1
+(noun)|singletary pea|Caley pea|rough pea|Lathyrus hirsutus|wild pea (generic term)
+wild yam|1
+(noun)|Dioscorea paniculata|vine (generic term)
+wild yellow lily|1
+(noun)|Canada lily|meadow lily|wild meadow lily|Lilium canadense|lily (generic term)
+wildcat|6
+(adj)|unsound (similar term)
+(adj)|unauthorized|unauthorised|unofficial (similar term)
+(adj)|exploratory (similar term)|explorative (similar term)
+(noun)|wildcat well|oil well (generic term)|oiler (generic term)
+(noun)|beast|wolf|savage|brute|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(noun)|cat (generic term)|true cat (generic term)
+wildcat strike|1
+(noun)|strike (generic term)|work stoppage (generic term)
+wildcat well|1
+(noun)|wildcat|oil well (generic term)|oiler (generic term)
+wildcatter|1
+(noun)|oilman (generic term)
+wilde|1
+(noun)|Wilde|Oscar Wilde|Oscar Fingal O'Flahertie Wills Wilde|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+wilde dagga|1
+(noun)|dagga|Cape dagga|red dagga|Leonotis leonurus|herb (generic term)|herbaceous plant (generic term)
+wildebeest|1
+(noun)|gnu|antelope (generic term)
+wilder|2
+(noun)|Wilder|Thornton Wilder|Thornton Niven Wilder|writer (generic term)|author (generic term)|dramatist (generic term)|playwright (generic term)
+(noun)|Wilder|Billy Wilder|Samuel Wilder|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+wilderness|4
+(noun)|disfavor (generic term)|disfavour (generic term)
+(noun)|Wilderness|forest (generic term)|wood (generic term)|woods (generic term)
+(noun)|wild|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|profusion (generic term)|profuseness (generic term)|richness (generic term)|cornucopia (generic term)
+wilderness campaign|1
+(noun)|Wilderness Campaign|campaign (generic term)|military campaign (generic term)
+wildfire|1
+(noun)|conflagration (generic term)|inferno (generic term)
+wildflower|1
+(noun)|wild flower|angiosperm (generic term)|flowering plant (generic term)|wilding (generic term)
+wildfowl|1
+(noun)|bird (generic term)|fowl (generic term)
+wilding|2
+(noun)|plant (generic term)|flora (generic term)|plant life (generic term)
+(noun)|rampage (generic term)|violent disorder (generic term)
+wildlife|1
+(noun)|life (generic term)
+wildness|4
+(noun)|abandon|passion (generic term)|passionateness (generic term)
+(noun)|ferocity|fierceness|furiousness|fury|vehemence|violence|intensity (generic term)|intensiveness (generic term)
+(noun)|unruliness (generic term)|fractiousness (generic term)|willfulness (generic term)|wilfulness (generic term)
+(noun)|intractability (generic term)|intractableness (generic term)|tameness (antonym)
+wile|1
+(noun)|trickery|chicanery|chicane|guile|shenanigan|deception (generic term)|deceit (generic term)|dissembling (generic term)|dissimulation (generic term)
+wiley post|1
+(noun)|Post|Wiley Post|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)
+wilful|2
+(adj)|intentional|willful|voluntary (similar term)
+(adj)|froward|headstrong|self-willed|willful|disobedient (similar term)
+wilfully|1
+(adv)|willfully
+wilfulness|1
+(noun)|unruliness|fractiousness|willfulness|intractability (generic term)|intractableness (generic term)
+wilhelm apollinaris de kostrowitzki|1
+(noun)|Apollinaire|Guillaume Apollinaire|Wilhelm Apollinaris de Kostrowitzki|poet (generic term)
+wilhelm eduard weber|1
+(noun)|Weber|Wilhelm Eduard Weber|physicist (generic term)
+wilhelm grimm|1
+(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer (generic term)|author (generic term)
+wilhelm ii|1
+(noun)|Wilhelm II|Kaiser Wilhelm|Kaiser Bill|Kaiser (generic term)
+wilhelm karl grimm|1
+(noun)|Grimm|Wilhelm Grimm|Wilhelm Karl Grimm|writer (generic term)|author (generic term)
+wilhelm konrad roentgen|1
+(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist (generic term)
+wilhelm konrad rontgen|1
+(noun)|Roentgen|Wilhelm Konrad Roentgen|Rontgen|Wilhelm Konrad Rontgen|physicist (generic term)
+wilhelm ostwald|1
+(noun)|Ostwald|Wilhelm Ostwald|chemist (generic term)
+wilhelm reich|1
+(noun)|Reich|Wilhelm Reich|analyst (generic term)|psychoanalyst (generic term)
+wilhelm richard wagner|1
+(noun)|Wagner|Richard Wagner|Wilhelm Richard Wagner|composer (generic term)
+wilhelm von opel|1
+(noun)|Opel|Wilhelm von Opel|industrialist (generic term)
+wiliness|1
+(noun)|craft|craftiness|cunning|foxiness|guile|slyness|shrewdness (generic term)|astuteness (generic term)|perspicacity (generic term)|perspicaciousness (generic term)
+wilkes|2
+(noun)|Wilkes|John Wilkes|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+(noun)|Wilkes|Charles Wilkes|explorer (generic term)|adventurer (generic term)
+wilkes land|1
+(noun)|Wilkes Land|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+wilkie collins|1
+(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer (generic term)|author (generic term)
+wilkins|3
+(noun)|Wilkins|Roy Wilkins|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|Wilkins|George Hubert Wilkins|explorer (generic term)|adventurer (generic term)
+(noun)|Wilkins|Maurice Wilkins|Maurice Hugh Frederick Wilkins|biochemist (generic term)
+wilkins micawber|1
+(noun)|Micawber|Wilkins Micawber|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+wilkinson|1
+(noun)|Wilkinson|Sir Geoffrey Wilkinson|chemist (generic term)
+will|7
+(noun)|volition|faculty (generic term)|mental faculty (generic term)|module (generic term)
+(noun)|purpose (generic term)|intent (generic term)|intention (generic term)|aim (generic term)|design (generic term)
+(noun)|testament|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+(verb)|ordain (generic term)
+(verb)|wish
+(verb)|decide (generic term)|make up one's mind (generic term)|determine (generic term)
+(verb)|bequeath|leave|give (generic term)|gift (generic term)|present (generic term)|disinherit (antonym)
+will-o'-the-wisp|2
+(noun)|friar's lantern|ignis fatuus|jack-o'-lantern|light (generic term)|visible light (generic term)|visible radiation (generic term)
+(noun)|ignis fatuus|illusion (generic term)|fantasy (generic term)|phantasy (generic term)|fancy (generic term)
+will durant|1
+(noun)|Durant|Will Durant|William James Durant|historian (generic term)|historiographer (generic term)
+will hays|1
+(noun)|Hays|Will Hays|William Harrison Hays|lawyer (generic term)|attorney (generic term)
+will keith kellog|1
+(noun)|Kellogg|W. K. Kellogg|Will Keith Kellog|food manufacturer (generic term)
+will rogers|1
+(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist (generic term)|humourist (generic term)
+willa cather|1
+(noun)|Cather|Willa Cather|Willa Sibert Cather|writer (generic term)|author (generic term)
+willa sibert cather|1
+(noun)|Cather|Willa Cather|Willa Sibert Cather|writer (generic term)|author (generic term)
+willamette|1
+(noun)|Willamette|Willamette River|river (generic term)
+willamette river|1
+(noun)|Willamette|Willamette River|river (generic term)
+willard|2
+(noun)|Willard|Frances Elizabeth Caroline Willard|suffragist (generic term)|dry (generic term)|prohibitionist (generic term)
+(noun)|Willard|Emma Hart Willard|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+willard frank libby|1
+(noun)|Libby|Willard Frank Libby|chemist (generic term)
+willard huntington wright|1
+(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer (generic term)|author (generic term)
+willard van orman quine|1
+(noun)|Quine|W. V. Quine|Willard Van Orman Quine|philosopher (generic term)|logician (generic term)|logistician (generic term)
+willebrand|1
+(noun)|Willebrand|von Willebrand|E. A. von Willebrand|Erik von Willebrand|Erik Adolf von Willebrand|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)
+willem de kooning|1
+(noun)|de Kooning|Willem de Kooning|painter (generic term)
+willem de sitter|1
+(noun)|Sitter|Willem de Sitter|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+willem einthoven|1
+(noun)|Einthoven|Willem Einthoven|physiologist (generic term)
+willet|1
+(noun)|Catoptrophorus semipalmatus|tattler (generic term)
+willful|2
+(adj)|intentional|wilful|voluntary (similar term)
+(adj)|froward|headstrong|self-willed|wilful|disobedient (similar term)
+willful neglect|1
+(noun)|delinquency|dereliction|negligence (generic term)|neglect (generic term)|neglectfulness (generic term)
+willfully|1
+(adv)|wilfully
+willfulness|1
+(noun)|unruliness|fractiousness|wilfulness|intractability (generic term)|intractableness (generic term)
+william a. craigie|1
+(noun)|Craigie|William A. Craigie|Sir William Alexander Craigie|lexicographer (generic term)|lexicologist (generic term)
+william and mary|1
+(noun)|William and Mary|nobility (generic term)|aristocracy (generic term)
+william ashley sunday|1
+(noun)|Sunday|Billy Sunday|William Ashley Sunday|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+william augustus|1
+(noun)|Cumberland|William Augustus|Duke of Cumberland|Butcher Cumberland|general (generic term)|full general (generic term)
+william averell harriman|1
+(noun)|Harriman|Averell Harriman|William Averell Harriman|financier (generic term)|moneyman (generic term)|diplomat (generic term)|diplomatist (generic term)
+william beaumont|1
+(noun)|Beaumont|William Beaumont|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+william benjamin hogan|1
+(noun)|Hogan|Ben Hogan|William Benjamin Hogan|golfer (generic term)|golf player (generic term)|linksman (generic term)
+william blake|1
+(noun)|Blake|William Blake|poet (generic term)|painter (generic term)
+william bligh|1
+(noun)|Bligh|William Bligh|Captain Bligh|admiral (generic term)|full admiral (generic term)
+william bradford|1
+(noun)|Bradford|William Bradford|printer (generic term)|pressman (generic term)
+william bradford shockley|1
+(noun)|Shockley|William Shockley|William Bradford Shockley|physicist (generic term)
+william burroughs|1
+(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer (generic term)|author (generic term)
+william butler yeats|1
+(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet (generic term)|dramatist (generic term)|playwright (generic term)
+william butterfield|1
+(noun)|Butterfield|William Butterfield|architect (generic term)|designer (generic term)
+william byrd|1
+(noun)|Byrd|William Byrd|organist (generic term)|composer (generic term)
+william carlos williams|1
+(noun)|Williams|William Carlos Williams|poet (generic term)
+william caxton|1
+(noun)|Caxton|William Caxton|printer (generic term)|pressman (generic term)
+william chambers|1
+(noun)|Chambers|William Chambers|Sir William Chambers|architect (generic term)|designer (generic term)
+william christopher handy|1
+(noun)|Handy|W. C. Handy|William Christopher Handy|composer (generic term)
+william claire menninger|1
+(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+william clark|1
+(noun)|Clark|William Clark|explorer (generic term)|adventurer (generic term)
+william clark gable|1
+(noun)|Gable|Clark Gable|William Clark Gable|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+william claude dukenfield|1
+(noun)|Fields|W. C. Fields|William Claude Dukenfield|comedian (generic term)|comic (generic term)
+william congreve|1
+(noun)|Congreve|William Congreve|dramatist (generic term)|playwright (generic term)
+william cowper|2
+(noun)|Cowper|William Cowper|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+(noun)|Cowper|William Cowper|poet (generic term)
+william crawford gorgas|1
+(noun)|Gorgas|William Crawford Gorgas|surgeon (generic term)|operating surgeon (generic term)|sawbones (generic term)
+william crookes|1
+(noun)|Crookes|William Crookes|Sir William Crookes|chemist (generic term)|physicist (generic term)
+william curtis|1
+(noun)|Curtis|William Curtis|botanist (generic term)|phytologist (generic term)|plant scientist (generic term)
+william cuthbert faulkner|1
+(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist (generic term)
+william dawes|1
+(noun)|Dawes|William Dawes|American Revolutionary leader (generic term)
+william dean howells|1
+(noun)|Howells|William Dean Howells|writer (generic term)|author (generic term)
+william dudley haywood|1
+(noun)|Haywood|Big Bill Haywood|William Dudley Haywood|labor leader (generic term)|socialist (generic term)
+william edward burghardt du bois|1
+(noun)|Du Bois|W. E. B. Du Bois|William Edward Burghardt Du Bois|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+william ewart gladstone|1
+(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman (generic term)|solon (generic term)|national leader (generic term)
+william f. cody|1
+(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman (generic term)|promoter (generic term)|impresario (generic term)
+william falkner|1
+(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist (generic term)
+william faulkner|1
+(noun)|Faulkner|William Faulkner|William Cuthbert Faulkner|Falkner|William Falkner|novelist (generic term)
+william felton russell|1
+(noun)|Russell|Bill Russell|William Felton Russell|center (generic term)
+william franklin graham|1
+(noun)|Graham|Billy Graham|William Franklin Graham|evangelist (generic term)|revivalist (generic term)|gospeler (generic term)|gospeller (generic term)
+william frederick cody|1
+(noun)|Cody|William F. Cody|William Frederick Cody|Buffalo Bill|Buffalo Bill Cody|showman (generic term)|promoter (generic term)|impresario (generic term)
+william fulbright|1
+(noun)|Fulbright|William Fulbright|James William Fulbright|senator (generic term)
+william gilbert|2
+(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist (generic term)|poet (generic term)
+(noun)|Gilbert|William Gilbert|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|physicist (generic term)
+william gladstone|1
+(noun)|Gladstone|William Gladstone|William Ewart Gladstone|statesman (generic term)|solon (generic term)|national leader (generic term)
+william golding|1
+(noun)|Golding|William Golding|Sir William Gerald Golding|writer (generic term)|author (generic term)
+william graham sumner|1
+(noun)|Sumner|William Graham Sumner|sociologist (generic term)
+william green|1
+(noun)|Green|William Green|labor leader (generic term)
+william h. bonney|1
+(noun)|Bonney|William H. Bonney|Billie the Kid|criminal (generic term)|felon (generic term)|crook (generic term)|outlaw (generic term)|malefactor (generic term)
+william harrison dempsey|1
+(noun)|Dempsey|Jack Dempsey|William Harrison Dempsey|Manassa Mauler|prizefighter (generic term)|gladiator (generic term)
+william harrison hays|1
+(noun)|Hays|Will Hays|William Harrison Hays|lawyer (generic term)|attorney (generic term)
+william harvey|1
+(noun)|Harvey|William Harvey|doctor (generic term)|doc (generic term)|physician (generic term)|MD (generic term)|Dr. (generic term)|medico (generic term)|scientist (generic term)|man of science (generic term)
+william hazlitt|1
+(noun)|Hazlitt|William Hazlitt|literary critic (generic term)
+william henry|1
+(noun)|Henry|William Henry|chemist (generic term)
+william henry beveridge|1
+(noun)|Beveridge|William Henry Beveridge|First Baron Beveridge|economist (generic term)|economic expert (generic term)
+william henry fox talbot|1
+(noun)|Talbot|Fox Talbot|William Henry Fox Talbot|inventor (generic term)|discoverer (generic term)|artificer (generic term)|photographer (generic term)|lensman (generic term)
+william henry gates|1
+(noun)|Gates|Bill Gates|William Henry Gates|computer scientist (generic term)|entrepreneur (generic term)|enterpriser (generic term)
+william henry harrison|1
+(noun)|Harrison|William Henry Harrison|President Harrison|President William Henry Harrison|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+william henry hoover|1
+(noun)|Hoover|William Hoover|William Henry Hoover|industrialist (generic term)
+william henry hudson|1
+(noun)|Hudson|W. H. Hudson|William Henry Hudson|naturalist (generic term)|natural scientist (generic term)
+william henry mauldin|1
+(noun)|Mauldin|Bill Mauldin|William Henry Mauldin|cartoonist (generic term)
+william henry pratt|1
+(noun)|Karloff|Boris Karloff|William Henry Pratt|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+william henry seward|1
+(noun)|Seward|William Henry Seward|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+william herschel|1
+(noun)|Herschel|William Herschel|Sir William Herschel|Sir Frederick William Herschel|astronomer (generic term)|uranologist (generic term)|stargazer (generic term)
+william hogarth|1
+(noun)|Hogarth|William Hogarth|old master (generic term)|engraver (generic term)
+william holman hunt|1
+(noun)|Hunt|Holman Hunt|William Holman Hunt|Pre-Raphaelite (generic term)
+william holmes mcguffey|1
+(noun)|McGuffey|William Holmes McGuffey|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+william hoover|1
+(noun)|Hoover|William Hoover|William Henry Hoover|industrialist (generic term)
+william howard taft|1
+(noun)|Taft|William Howard Taft|President Taft|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)|chief justice (generic term)
+william hubbs rehnquist|1
+(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|chief justice (generic term)
+william hyde wollaston|1
+(noun)|Wollaston|William Hyde Wollaston|chemist (generic term)|physicist (generic term)
+william i|1
+(noun)|William I|William the Conqueror|King of England (generic term)|King of Great Britain (generic term)
+william ii|1
+(noun)|William II|William Rufus|King of England (generic term)|King of Great Britain (generic term)
+william iii|1
+(noun)|William III|William of Orange|King of England (generic term)|King of Great Britain (generic term)
+william inge|1
+(noun)|Inge|William Inge|dramatist (generic term)|playwright (generic term)
+william iv|1
+(noun)|William IV|Sailor King|King of England (generic term)|King of Great Britain (generic term)
+william james|1
+(noun)|James|William James|psychologist (generic term)|philosopher (generic term)
+william james durant|1
+(noun)|Durant|Will Durant|William James Durant|historian (generic term)|historiographer (generic term)
+william jefferson clinton|1
+(noun)|Clinton|Bill Clinton|William Jefferson Clinton|President Clinton|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+william jennings bryan|1
+(noun)|Bryan|William Jennings Bryan|Great Commoner|Boy Orator of the Platte|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)|lawyer (generic term)|attorney (generic term)
+william john clifton haley jr.|1
+(noun)|Haley|Bill Haley|William John Clifton Haley Jr.|rock star (generic term)
+william kidd|1
+(noun)|Kidd|William Kidd|Captain Kidd|master (generic term)|captain (generic term)|sea captain (generic term)|skipper (generic term)
+william lawrence shirer|1
+(noun)|Shirer|William Lawrence Shirer|journalist (generic term)
+william le baron jenny|1
+(noun)|Jenny|William Le Baron Jenny|architect (generic term)|designer (generic term)
+william lloyd garrison|1
+(noun)|Garrison|William Lloyd Garrison|abolitionist (generic term)|emancipationist (generic term)
+william makepeace thackeray|1
+(noun)|Thackeray|William Makepeace Thackeray|writer (generic term)|author (generic term)
+william maxwell aitken|1
+(noun)|Beaverbrook|1st Baron Beaverbrook|William Maxwell Aitken|publisher (generic term)|newspaper publisher (generic term)|politician (generic term)|politico (generic term)|pol (generic term)|political leader (generic term)
+william mckinley|1
+(noun)|McKinley|William McKinley|President McKinley|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+william menninger|1
+(noun)|Menninger|William Menninger|William Claire Menninger|psychiatrist (generic term)|head-shrinker (generic term)|shrink (generic term)
+william mitchell|1
+(noun)|Mitchell|William Mitchell|Billy Mitchell|aviator (generic term)|aeronaut (generic term)|airman (generic term)|flier (generic term)|flyer (generic term)|general (generic term)|full general (generic term)
+william morris|1
+(noun)|Morris|William Morris|poet (generic term)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+william nunn lipscom jr.|1
+(noun)|Lipscomb|William Nunn Lipscom Jr.|chemist (generic term)
+william of occam|1
+(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher (generic term)
+william of ockham|1
+(noun)|Occam|William of Occam|Ockham|William of Ockham|philosopher (generic term)
+william of orange|1
+(noun)|William III|William of Orange|King of England (generic term)|King of Great Britain (generic term)
+william of wykeham|1
+(noun)|Wykeham|William of Wykeham|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+william patterson|1
+(noun)|Paterson|William Patterson|American Revolutionary leader (generic term)
+william penn|1
+(noun)|Penn|William Penn|Friend (generic term)|Quaker (generic term)
+william penn adair rogers|1
+(noun)|Rogers|Will Rogers|William Penn Adair Rogers|humorist (generic term)|humourist (generic term)
+william pitt|2
+(noun)|Pitt|William Pitt|Second Earl of Chatham|Pitt the Younger|statesman (generic term)|solon (generic term)|national leader (generic term)
+(noun)|Pitt|William Pitt|First Earl of Chatham|Pitt the Elder|statesman (generic term)|solon (generic term)|national leader (generic term)
+william ralph inge|1
+(noun)|Inge|William Ralph Inge|Gloomy Dean|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+william randolph hearst|1
+(noun)|Hearst|William Randolph Hearst|publisher (generic term)|newspaper publisher (generic term)
+william rehnquist|1
+(noun)|Rehnquist|William Rehnquist|William Hubbs Rehnquist|chief justice (generic term)
+william richard morris|1
+(noun)|Nuffield|William Richard Morris|First Viscount Nuffield|industrialist (generic term)|philanthropist (generic term)|altruist (generic term)
+william rose benet|1
+(noun)|Benet|William Rose Benet|writer (generic term)|author (generic term)
+william rowan hamilton|1
+(noun)|Hamilton|William Rowan Hamilton|Sir William Rowan Hamilton|mathematician (generic term)
+william rufus|1
+(noun)|William II|William Rufus|King of England (generic term)|King of Great Britain (generic term)
+william s. burroughs|1
+(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer (generic term)|author (generic term)
+william s. gilbert|1
+(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist (generic term)|poet (generic term)
+william saroyan|1
+(noun)|Saroyan|William Saroyan|writer (generic term)|author (generic term)
+william schwenk gilbert|1
+(noun)|Gilbert|William Gilbert|William S. Gilbert|William Schwenk Gilbert|Sir William Gilbert|librettist (generic term)|poet (generic term)
+william seward burroughs|2
+(noun)|Burroughs|William Burroughs|William S. Burroughs|William Seward Burroughs|writer (generic term)|author (generic term)
+(noun)|Burroughs|William Seward Burroughs|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+william shakespeare|1
+(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|Bard of Avon|dramatist (generic term)|playwright (generic term)|poet (generic term)
+william shakspere|1
+(noun)|Shakespeare|William Shakespeare|Shakspere|William Shakspere|Bard of Avon|dramatist (generic term)|playwright (generic term)|poet (generic term)
+william shockley|1
+(noun)|Shockley|William Shockley|William Bradford Shockley|physicist (generic term)
+william somerset maugham|1
+(noun)|Maugham|Somerset Maugham|W. Somerset Maugham|William Somerset Maugham|writer (generic term)|author (generic term)
+william stanley jevons|1
+(noun)|Jevons|William Stanley Jevons|economist (generic term)|economic expert (generic term)|logician (generic term)|logistician (generic term)
+william strickland|1
+(noun)|Strickland|William Strickland|architect (generic term)|designer (generic term)
+william stubbs|1
+(noun)|Stubbs|William Stubbs|historian (generic term)|historiographer (generic term)
+william styron|1
+(noun)|Styron|William Styron|writer (generic term)|author (generic term)
+william sydney porter|1
+(noun)|Porter|William Sydney Porter|O. Henry|writer (generic term)|author (generic term)
+william tatem tilden jr.|1
+(noun)|Tilden|Big Bill Tilden|William Tatem Tilden Jr.|tennis player (generic term)
+william tecumseh sherman|1
+(noun)|Sherman|William Tecumseh Sherman|general (generic term)|full general (generic term)
+william tell|1
+(noun)|Tell|William Tell|archer (generic term)|bowman (generic term)
+william the conqueror|1
+(noun)|William I|William the Conqueror|King of England (generic term)|King of Great Britain (generic term)
+william thompson|1
+(noun)|Kelvin|First Baron Kelvin|William Thompson|physicist (generic term)
+william thornton|1
+(noun)|Thornton|William Thornton|architect (generic term)|designer (generic term)
+william tindal|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+william tindale|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+william tyndale|1
+(noun)|Tyndale|William Tyndale|Tindale|William Tindale|Tindal|William Tindal|interpreter (generic term)|translator (generic term)|martyr (generic term)|sufferer (generic term)
+william walton|1
+(noun)|Walton|William Walton|Sir William Walton|Sir William Turner Walton|composer (generic term)
+william wilkie collins|1
+(noun)|Collins|Wilkie Collins|William Wilkie Collins|writer (generic term)|author (generic term)
+william wordsworth|1
+(noun)|Wordsworth|William Wordsworth|poet (generic term)
+william wycherley|1
+(noun)|Wycherley|William Wycherley|dramatist (generic term)|playwright (generic term)
+william wyler|1
+(noun)|Wyler|William Wyler|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+william wymark jacobs|1
+(noun)|Jacobs|W. W. Jacobs|William Wymark Jacobs|writer (generic term)|author (generic term)
+williams|6
+(noun)|Williams|Hank Williams|Hiram Williams|Hiram King Williams|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+(noun)|Williams|Sir Bernanrd Williams|Bernanrd Arthur Owen Williams|philosopher (generic term)
+(noun)|Williams|William Carlos Williams|poet (generic term)
+(noun)|Williams|Ted Williams|Theodore Samuel Williams|ballplayer (generic term)|baseball player (generic term)
+(noun)|Williams|Roger Williams|clergyman (generic term)|reverend (generic term)|man of the cloth (generic term)|settler (generic term)|colonist (generic term)
+(noun)|Williams|Tennessee Williams|Thomas Lanier Williams|dramatist (generic term)|playwright (generic term)
+williams syndrome|1
+(noun)|Williams syndrome|syndrome (generic term)
+williamstown|1
+(noun)|Williamstown|town (generic term)
+willie howard mays jr.|1
+(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|Say Hey Kid|ballplayer (generic term)|baseball player (generic term)
+willie mays|1
+(noun)|Mays|Willie Mays|Willie Howard Mays Jr.|Say Hey Kid|ballplayer (generic term)|baseball player (generic term)
+willies|1
+(noun)|edginess (generic term)|uneasiness (generic term)|inquietude (generic term)|disquietude (generic term)
+willing|3
+(adj)|consenting (similar term)|disposed (similar term)|fain (similar term)|inclined (similar term)|prepared (similar term)|glad (similar term)|happy (similar term)|ready (similar term)|volitional (similar term)|willing and able (similar term)|compliant (related term)|inclined (related term)|ready (related term)|voluntary (related term)|unwilling (antonym)
+(adj)|uncoerced|unforced|voluntary (similar term)
+(noun)|volition|choice (generic term)|selection (generic term)|option (generic term)|pick (generic term)
+willing and able|1
+(adj)|willing (similar term)
+willingly|1
+(adv)|volitionally|unwillingly (antonym)
+willingness|1
+(noun)|disposition (generic term)|temperament (generic term)|unwillingness (antonym)
+willis|1
+(noun)|Willis|Thomas Willis|neurologist (generic term)|brain doctor (generic term)
+willow|2
+(noun)|willow tree|tree (generic term)
+(noun)|textile machine (generic term)
+willow-pattern|1
+(noun)|willowware|chinaware (generic term)|china (generic term)
+willow aster|1
+(noun)|aster (generic term)
+willow bell|1
+(noun)|peach bells|peach bell|Campanula persicifolia|campanula (generic term)|bellflower (generic term)
+willow family|1
+(noun)|Salicaceae|family Salicaceae|hamamelid dicot family (generic term)
+willow oak|1
+(noun)|Quercus phellos|oak (generic term)|oak tree (generic term)
+willow tree|1
+(noun)|willow|tree (generic term)
+willowherb|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+willowware|1
+(noun)|willow-pattern|chinaware (generic term)|china (generic term)
+willowy|1
+(adj)|gracile|graceful (similar term)
+willpower|1
+(noun)|self-control|self-possession|possession|self-command|self-will|resoluteness (generic term)|firmness (generic term)|firmness of purpose (generic term)|resolve (generic term)|resolution (generic term)
+willy-nilly|1
+(adv)|randomly|indiscriminately|haphazardly|arbitrarily|at random|every which way
+willy brandt|1
+(noun)|Brandt|Willy Brandt|statesman (generic term)|solon (generic term)|national leader (generic term)
+wilmington|2
+(noun)|Wilmington|town (generic term)
+(noun)|Wilmington|city (generic term)|metropolis (generic term)|urban center (generic term)
+wilms' tumor|1
+(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|embryoma of the kidney|sarcoma (generic term)
+wilms tumour|1
+(noun)|Wilms' tumor|Wilms tumour|adenomyosarcoma|nephroblastoma|embryoma of the kidney|sarcoma (generic term)
+wilmut|1
+(noun)|Wilmut|Ian Wilmut|geneticist (generic term)
+wilno|1
+(noun)|Vilnius|Vilna|Vilno|Wilno|capital of Lithuania|capital (generic term)
+wilson|11
+(noun)|Wilson|Harriet Wilson|writer (generic term)|author (generic term)
+(noun)|Wilson|Sir Angus Wilson|Angus Frank Johnstone Wilson|writer (generic term)|author (generic term)
+(noun)|Wilson|Alexander Wilson|ornithologist (generic term)|bird watcher (generic term)
+(noun)|Wilson|Robert Woodrow Wilson|physicist (generic term)
+(noun)|Wilson|John Tuzo Wilson|geophysicist (generic term)
+(noun)|Wilson|James Wilson|American Revolutionary leader (generic term)
+(noun)|Wilson|E. O. Wilson|Edward Osborne Wilson|entomologist (generic term)|bugologist (generic term)|bug-hunter (generic term)
+(noun)|Wilson|Charles Thomson Rees Wilson|nuclear physicist (generic term)
+(noun)|Wilson|Edmund Wilson|literary critic (generic term)
+(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+(noun)|Wilson|Mount Wilson|mountain peak (generic term)
+wilson's blackcap|1
+(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler (generic term)|wood warbler (generic term)
+wilson's disease|1
+(noun)|hepatolenticular degeneration|Wilson's disease|genetic disease (generic term)|genetic disorder (generic term)|genetic abnormality (generic term)|genetic defect (generic term)|congenital disease (generic term)|inherited disease (generic term)|inherited disorder (generic term)|hereditary disease (generic term)|hereditary condition (generic term)
+wilson's phalarope|1
+(noun)|Wilson's phalarope|Steganopus tricolor|phalarope (generic term)
+wilson's snipe|1
+(noun)|Wilson's snipe|Gallinago gallinago delicata|snipe (generic term)
+wilson's thrush|1
+(noun)|veery|Wilson's thrush|Hylocichla fuscescens|thrush (generic term)
+wilson's warbler|1
+(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler (generic term)|wood warbler (generic term)
+wilson cloud chamber|1
+(noun)|cloud chamber|Wilson cloud chamber|apparatus (generic term)|setup (generic term)
+wilsonia pusilla|1
+(noun)|Wilson's warbler|Wilson's blackcap|Wilsonia pusilla|New World warbler (generic term)|wood warbler (generic term)
+wilsonian|1
+(adj)|Wilsonian|President of the United States|United States President|President|Chief Executive (related term)
+wilt|4
+(noun)|wilt disease|plant disease (generic term)
+(noun)|wilting|weakening (generic term)
+(verb)|weaken (generic term)
+(verb)|droop|decay (generic term)|crumble (generic term)|delapidate (generic term)
+wilt disease|1
+(noun)|wilt|plant disease (generic term)
+wilted|1
+(adj)|limp|stale (similar term)
+wilting|1
+(noun)|wilt|weakening (generic term)
+wilton|1
+(noun)|Wilton|Wilton carpet|rug (generic term)|carpet (generic term)|carpeting (generic term)
+wilton carpet|1
+(noun)|Wilton|Wilton carpet|rug (generic term)|carpet (generic term)|carpeting (generic term)
+wily|1
+(adj)|crafty|cunning|dodgy|foxy|guileful|knavish|slick|sly|tricksy|tricky|artful (similar term)
+wimble|1
+(noun)|auger|gimlet|screw auger|drill (generic term)
+wimbledon|1
+(noun)|Wimbledon|suburb (generic term)|suburbia (generic term)|suburban area (generic term)
+wimp|2
+(noun)|chicken|crybaby|weakling (generic term)|doormat (generic term)|wuss (generic term)
+(noun)|weakly interacting massive particle|WIMP|elementary particle (generic term)|fundamental particle (generic term)
+wimpish|1
+(adj)|wimpy|forceless (similar term)|unforceful (similar term)
+wimple|1
+(noun)|headdress (generic term)|headgear (generic term)
+wimpy|1
+(adj)|wimpish|forceless (similar term)|unforceful (similar term)
+wimshurst machine|1
+(noun)|electrostatic generator|electrostatic machine|Wimshurst machine|Van de Graaff generator|electrical device (generic term)
+win|6
+(noun)|victory (generic term)|triumph (generic term)
+(noun)|winnings|profits|financial gain (generic term)|losings (antonym)
+(verb)|lose (antonym)
+(verb)|acquire|gain|get (generic term)|acquire (generic term)|lose (antonym)
+(verb)|gain|advance|pull ahead|make headway|get ahead|gain ground|fall back (antonym)
+(verb)|succeed|come through|bring home the bacon|deliver the goods|fail (antonym)
+win back|1
+(verb)|get back|get (generic term)|acquire (generic term)
+win over|1
+(verb)|convert|convince|persuade (generic term)
+wince|4
+(noun)|facial expression (generic term)|facial gesture (generic term)
+(noun)|flinch|startle (generic term)|jump (generic term)|start (generic term)
+(verb)|flinch|squinch|funk|cringe|shrink|recoil|quail|move (generic term)
+(verb)|grimace (generic term)|make a face (generic term)|pull a face (generic term)
+wincey|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+winceyette|1
+(noun)|flannelette (generic term)
+winch|2
+(noun)|windlass|lifting device (generic term)
+(verb)|pull (generic term)|draw (generic term)|force (generic term)
+winchester|2
+(noun)|Winchester|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Winchester|rifle (generic term)
+winchester college|1
+(noun)|Winchester College|public school (generic term)
+winchester drive|1
+(noun)|disk drive|disc drive|hard drive|Winchester drive|drive (generic term)
+winckelmann|1
+(noun)|Winckelmann|Johann Winckelmann|Johann Joachim Winckelmann|archeologist (generic term)|archaeologist (generic term)|art historian (generic term)
+wind|15
+(noun)|air current|current of air|weather (generic term)|weather condition (generic term)|atmospheric condition (generic term)
+(noun)|influence (generic term)
+(noun)|exhalation (generic term)|expiration (generic term)|breathing out (generic term)
+(noun)|idle words|jazz|nothingness|talk (generic term)|talking (generic term)
+(noun)|tip|lead|steer|confidential information|hint|guidance (generic term)|counsel (generic term)|counseling (generic term)|counselling (generic term)|direction (generic term)
+(noun)|wind instrument|musical instrument (generic term)|instrument (generic term)
+(noun)|fart|farting|flatus|breaking wind|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(noun)|winding|twist|rotation (generic term)|rotary motion (generic term)
+(verb)|weave|thread|meander|wander|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|twist|curve|be (generic term)
+(verb)|wrap|roll|twine|move (generic term)|displace (generic term)|roll up (related term)|wrap up (related term)|unwind (antonym)
+(verb)|scent|nose|smell (generic term)|scent out (related term)
+(verb)|wind up|tighten (generic term)|fasten (generic term)
+(verb)|wreathe|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+(verb)|hoist|lift|raise (generic term)|lift (generic term)|elevate (generic term)|get up (generic term)|bring up (generic term)
+wind bell|1
+(noun)|wind chime|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+wind cave national park|1
+(noun)|Wind Cave National Park|national park (generic term)
+wind chime|1
+(noun)|wind bell|decoration (generic term)|ornament (generic term)|ornamentation (generic term)
+wind cone|1
+(noun)|windsock|wind sock|sock|air sock|air-sleeve|wind sleeve|drogue|visual signal (generic term)
+wind deflection|1
+(noun)|windage|deflection (generic term)|deflexion (generic term)|bending (generic term)
+wind energy facility|1
+(noun)|wind farm|wind park|power station (generic term)|power plant (generic term)|powerhouse (generic term)
+wind exposure|1
+(noun)|windage|exposure (generic term)
+wind farm|1
+(noun)|wind park|wind energy facility|power station (generic term)|power plant (generic term)|powerhouse (generic term)
+wind gage|1
+(noun)|anemometer|wind gauge|gauge (generic term)|gage (generic term)
+wind gap|1
+(noun)|col (generic term)|gap (generic term)
+wind gauge|1
+(noun)|anemometer|wind gage|gauge (generic term)|gage (generic term)
+wind generation|1
+(noun)|wind power|alternative energy (generic term)
+wind generator|1
+(noun)|windmill|aerogenerator|generator (generic term)
+wind harp|1
+(noun)|aeolian harp|aeolian lyre|harp (generic term)
+wind instrument|1
+(noun)|wind|musical instrument (generic term)|instrument (generic term)
+wind off|1
+(verb)|unwind|unroll|move (generic term)|displace (generic term)|wind (antonym)
+wind park|1
+(noun)|wind farm|wind energy facility|power station (generic term)|power plant (generic term)|powerhouse (generic term)
+wind poppy|1
+(noun)|flaming poppy|Stylomecon heterophyllum|Papaver heterophyllum|poppy (generic term)
+wind power|1
+(noun)|wind generation|alternative energy (generic term)
+wind rose|1
+(noun)|weather map (generic term)|weather chart (generic term)
+wind scale|1
+(noun)|Beaufort scale|scale (generic term)|scale of measurement (generic term)|graduated table (generic term)|ordered series (generic term)
+wind sleeve|1
+(noun)|windsock|wind sock|sock|air sock|air-sleeve|wind cone|drogue|visual signal (generic term)
+wind sock|1
+(noun)|windsock|sock|air sock|air-sleeve|wind sleeve|wind cone|drogue|visual signal (generic term)
+wind tee|1
+(noun)|weathervane (generic term)|weather vane (generic term)|vane (generic term)|wind vane (generic term)
+wind tunnel|1
+(noun)|structure (generic term)|construction (generic term)
+wind turbine|1
+(noun)|turbine (generic term)
+wind up|4
+(verb)|finish up|land up|fetch up|end up|finish|act (generic term)|move (generic term)
+(verb)|swing (generic term)
+(verb)|arouse|sex|excite|turn on|stimulate (generic term)|shake (generic term)|shake up (generic term)|excite (generic term)|stir (generic term)
+(verb)|wind|tighten (generic term)|fasten (generic term)
+wind vane|1
+(noun)|weathervane|weather vane|vane|mechanical device (generic term)
+windage|4
+(noun)|drag (generic term)|retarding force (generic term)
+(noun)|diameter (generic term)|diam (generic term)
+(noun)|wind exposure|exposure (generic term)
+(noun)|wind deflection|deflection (generic term)|deflexion (generic term)|bending (generic term)
+windaus|1
+(noun)|Windaus|Adolf Windaus|chemist (generic term)
+windbag|1
+(noun)|gasbag|bore (generic term)|dullard (generic term)
+windblown|1
+(adj)|crooked (similar term)
+windbreak|1
+(noun)|shelterbelt|hedge (generic term)|hedgerow (generic term)
+windbreaker|1
+(noun)|parka|windcheater|anorak|jacket (generic term)
+windburn|1
+(noun)|erythema (generic term)
+windburned|1
+(adj)|windburnt|unhealthy (similar term)
+windburnt|1
+(adj)|windburned|unhealthy (similar term)
+windcheater|1
+(noun)|parka|windbreaker|anorak|jacket (generic term)
+winded|1
+(adj)|blown|gasping|out of breath|panting|pursy|short-winded|breathless (similar term)|dyspneic (similar term)|dyspnoeic (similar term)|dyspneal (similar term)|dyspnoeal (similar term)
+winder|3
+(noun)|worker (generic term)
+(noun)|key|mechanical device (generic term)
+(noun)|mechanical device (generic term)
+windfall|2
+(noun)|edible fruit (generic term)
+(noun)|boom|bonanza|gold rush|gravy|godsend|manna from heaven|bunce|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+windfall profit|1
+(noun)|net income (generic term)|net (generic term)|net profit (generic term)|lucre (generic term)|profit (generic term)|profits (generic term)|earnings (generic term)
+windflower|1
+(noun)|anemone|flower (generic term)
+windhoek|1
+(noun)|Windhoek|national capital (generic term)
+windily|1
+(adv)|verbosely|long-windedly|wordily
+windiness|2
+(noun)|breeziness|storminess (generic term)
+(noun)|prolixity|prolixness|long-windedness|wordiness|verboseness (generic term)|verbosity (generic term)
+winding|3
+(adj)|tortuous|twisting|twisty|voluminous|crooked (similar term)
+(adj)|meandering|rambling|wandering|indirect (similar term)
+(noun)|wind|twist|rotation (generic term)|rotary motion (generic term)
+winding-clothes|1
+(noun)|pall|shroud|cerement|winding-sheet|burial garment (generic term)
+winding-sheet|1
+(noun)|pall|shroud|cerement|winding-clothes|burial garment (generic term)
+windjammer|1
+(noun)|sailing vessel (generic term)|sailing ship (generic term)
+windlass|1
+(noun)|winch|lifting device (generic term)
+windless|1
+(adj)|calm (similar term)
+windlessness|1
+(noun)|stillness|calmness (generic term)
+windmill|2
+(noun)|mill (generic term)|grinder (generic term)|milling machinery (generic term)
+(noun)|aerogenerator|wind generator|generator (generic term)
+windmill grass|1
+(noun)|creeping windmill grass|star grass|Chloris truncata|finger grass (generic term)
+window|7
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+(noun)|panel (generic term)
+(noun)|opening (generic term)|gap (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|windowpane|pane (generic term)|pane of glass (generic term)|window glass (generic term)
+(noun)|opening (generic term)
+(noun)|display (generic term)|video display (generic term)
+window-dress|1
+(verb)|dress up|fancify (generic term)|beautify (generic term)|embellish (generic term)|prettify (generic term)
+window-shop|1
+(verb)|shop (generic term)|browse (generic term)
+window-washing|1
+(noun)|wash (generic term)|washing (generic term)|lavation (generic term)
+window blind|1
+(noun)|blind (generic term)|screen (generic term)
+window box|1
+(noun)|box (generic term)
+window cleaner|1
+(noun)|cleaner (generic term)
+window dresser|1
+(noun)|window trimmer|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+window dressing|2
+(noun)|facade|misrepresentation (generic term)|deceit (generic term)|deception (generic term)
+(noun)|decoration (generic term)
+window envelope|1
+(noun)|envelope (generic term)
+window frame|1
+(noun)|framework (generic term)|frame (generic term)|framing (generic term)
+window glass|1
+(noun)|pane|pane of glass|plate glass (generic term)|sheet glass (generic term)
+window lock|1
+(noun)|sash fastener|sash lock|lock (generic term)
+window oyster|1
+(noun)|windowpane oyster|capiz|Placuna placenta|oyster (generic term)
+window pane|1
+(noun)|acid|back breaker|battery-acid|dose|dot|Elvis|loony toons|Lucy in the sky with diamonds|pane|superman|Zen|lysergic acid diethylamide (generic term)|LSD (generic term)
+window sash|1
+(noun)|sash|framework (generic term)|frame (generic term)|framing (generic term)
+window screen|1
+(noun)|screen (generic term)
+window seat|1
+(noun)|bench (generic term)
+window shade|1
+(noun)|window blind (generic term)
+window trimmer|1
+(noun)|window dresser|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+window washer|1
+(noun)|washer (generic term)
+windowpane|2
+(noun)|window|pane (generic term)|pane of glass (generic term)|window glass (generic term)
+(noun)|Scophthalmus aquosus|lefteye flounder (generic term)|lefteyed flounder (generic term)
+windowpane oyster|1
+(noun)|window oyster|capiz|Placuna placenta|oyster (generic term)
+windows|1
+(noun)|Windows|operating system (generic term)|OS (generic term)
+windowsill|1
+(noun)|sill (generic term)
+windpipe|1
+(noun)|trachea|cartilaginous tube (generic term)
+windscreen|1
+(noun)|windshield|screen (generic term)
+windscreen wiper|1
+(noun)|windshield wiper|wiper|wiper blade|mechanical device (generic term)
+windshield|1
+(noun)|windscreen|screen (generic term)
+windshield wiper|1
+(noun)|windscreen wiper|wiper|wiper blade|mechanical device (generic term)
+windsock|1
+(noun)|wind sock|sock|air sock|air-sleeve|wind sleeve|wind cone|drogue|visual signal (generic term)
+windsor|2
+(noun)|Windsor|city (generic term)|metropolis (generic term)|urban center (generic term)
+(noun)|Windsor|House of Windsor|dynasty (generic term)
+windsor chair|1
+(noun)|Windsor chair|straight chair (generic term)|side chair (generic term)
+windsor green|1
+(noun)|Windsor green|chrome green (generic term)
+windsor knot|1
+(noun)|Windsor knot|slipknot (generic term)
+windsor tie|1
+(noun)|Windsor tie|necktie (generic term)|tie (generic term)
+windstorm|1
+(noun)|storm (generic term)|violent storm (generic term)
+windsurf|1
+(verb)|surfboard (generic term)|surf (generic term)
+windswept|1
+(adj)|inhospitable (similar term)
+windtalker|1
+(noun)|codetalker|secret agent (generic term)|intelligence officer (generic term)|intelligence agent (generic term)|operative (generic term)
+windup|2
+(adj)|mechanical (similar term)
+(noun)|completion|culmination|closing|mop up|termination (generic term)|ending (generic term)|conclusion (generic term)
+windward|3
+(adj)|upwind (similar term)|weather (similar term)|leeward (antonym)
+(noun)|direction (generic term)|leeward (antonym)
+(adv)|downwind|upwind (antonym)|leeward (antonym)
+windward islands|1
+(noun)|Windward Islands|Windward Isles|archipelago (generic term)
+windward isles|1
+(noun)|Windward Islands|Windward Isles|archipelago (generic term)
+windward passage|1
+(noun)|Windward Passage|channel (generic term)
+windward side|1
+(noun)|to windward|weatherboard|weather side|windward (generic term)
+windy|4
+(adj)|blowy|breezy|stormy (similar term)
+(adj)|airy|impractical|visionary|Laputan|utopian (similar term)
+(adj)|fast (similar term)
+(adj)|long-winded|tedious|verbose|wordy|prolix (similar term)
+windy city|1
+(noun)|Chicago|Windy City|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+wine|4
+(noun)|vino|alcohol (generic term)|alcoholic beverage (generic term)|intoxicant (generic term)|inebriant (generic term)
+(noun)|wine-colored|dark red (generic term)
+(verb)|drink (generic term)|booze (generic term)|fuddle (generic term)
+(verb)|regale (generic term)|treat (generic term)
+wine-colored|1
+(noun)|wine|dark red (generic term)
+wine-maker's yeast|1
+(noun)|Saccharomyces ellipsoides|yeast (generic term)
+wine-red|1
+(adj)|chromatic (similar term)
+wine and dine|2
+(verb)|feast (generic term)|banquet (generic term)|junket (generic term)
+(verb)|host (generic term)
+wine bar|1
+(noun)|bar (generic term)
+wine barrel|1
+(noun)|wine cask|barrel (generic term)|cask (generic term)
+wine bottle|1
+(noun)|bottle (generic term)
+wine bucket|1
+(noun)|wine cooler|bucket (generic term)|pail (generic term)
+wine cask|1
+(noun)|wine barrel|barrel (generic term)|cask (generic term)
+wine cellar|1
+(noun)|cellar|storage space (generic term)
+wine cooler|1
+(noun)|wine bucket|bucket (generic term)|pail (generic term)
+wine lover|1
+(noun)|oenophile|oenophilist|connoisseur (generic term)|cognoscenti (generic term)
+wine maker|2
+(noun)|vintner|winemaker|maker (generic term)|shaper (generic term)
+(noun)|winery|distillery (generic term)|still (generic term)
+wine merchant|1
+(noun)|vintner|merchant (generic term)|merchandiser (generic term)
+wine palm|2
+(noun)|jaggery palm|kitul|kittul|kitul tree|toddy alm|Caryota urens|sago palm (generic term)
+(noun)|palmyra|palmyra palm|toddy palm|lontar|longar palm|Borassus flabellifer|fan palm (generic term)
+wine sauce|1
+(noun)|sauce (generic term)
+wine steward|1
+(noun)|sommelier|wine waiter|waiter (generic term)|server (generic term)
+wine taster|1
+(noun)|taster (generic term)|taste tester (generic term)|taste-tester (generic term)|sampler (generic term)
+wine tasting|1
+(noun)|gathering (generic term)|assemblage (generic term)
+wine vinegar|1
+(noun)|vinegar (generic term)|acetum (generic term)
+wine waiter|1
+(noun)|sommelier|wine steward|waiter (generic term)|server (generic term)
+wineberry|2
+(noun)|Rubus phoenicolasius|raspberry (generic term)|raspberry bush (generic term)
+(noun)|makomako|New Zealand wine berry|Aristotelia serrata|Aristotelia racemosa|shrub (generic term)|bush (generic term)
+wineglass|1
+(noun)|glass (generic term)|drinking glass (generic term)
+wineglass heel|1
+(noun)|heel (generic term)
+winemaker|1
+(noun)|vintner|wine maker|maker (generic term)|shaper (generic term)
+winemaking|1
+(noun)|trade (generic term)|craft (generic term)
+winepress|1
+(noun)|press (generic term)|mechanical press (generic term)
+winery|1
+(noun)|wine maker|distillery (generic term)|still (generic term)
+winesap|1
+(noun)|Winesap|eating apple (generic term)|dessert apple (generic term)
+wineskin|1
+(noun)|skin (generic term)
+winey|1
+(adj)|winy|tasty (similar term)
+winfield scott|1
+(noun)|Scott|Winfield Scott|general (generic term)|full general (generic term)
+winfred|1
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+wing|10
+(noun)|organ (generic term)
+(noun)|airfoil (generic term)|aerofoil (generic term)|control surface (generic term)|surface (generic term)
+(noun)|offstage|backstage|stage (generic term)
+(noun)|air unit (generic term)
+(noun)|flank|formation (generic term)
+(noun)|hockey player (generic term)|ice-hockey player (generic term)
+(noun)|helping (generic term)|portion (generic term)|serving (generic term)
+(noun)|fender|barrier (generic term)
+(noun)|annex|annexe|extension|addition (generic term)|add-on (generic term)|improver (generic term)
+(verb)|fly|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+wing-nut|2
+(noun)|wing nut|nut tree (generic term)
+(noun)|wing nut|wing screw|butterfly nut|thumbnut|nut (generic term)
+wing-shaped|1
+(adj)|alar|alary|aliform|winged (similar term)
+wing case|1
+(noun)|elytron|wing (generic term)
+wing chair|1
+(noun)|easy chair (generic term)|lounge chair (generic term)|overstuffed chair (generic term)
+wing commander|1
+(noun)|commanding officer (generic term)|commandant (generic term)|commander (generic term)
+wing elm|1
+(noun)|winged elm|Ulmus alata|elm (generic term)|elm tree (generic term)
+wing flat|1
+(noun)|coulisse|flat (generic term)
+wing loading|1
+(noun)|loading (generic term)
+wing nut|2
+(noun)|wing-nut|nut tree (generic term)
+(noun)|wing-nut|wing screw|butterfly nut|thumbnut|nut (generic term)
+wing screw|1
+(noun)|wing nut|wing-nut|butterfly nut|thumbnut|nut (generic term)
+wing shooting|1
+(noun)|shooting (generic term)
+wing tip|2
+(noun)|shoe (generic term)
+(noun)|toecap (generic term)
+wingback|1
+(noun)|back (generic term)
+winged|2
+(adj)|alar (similar term)|alary (similar term)|aliform (similar term)|wing-shaped (similar term)|alate (similar term)|alated (similar term)|batwing (similar term)|brachypterous (similar term)|short-winged (similar term)|flying (similar term)|one-winged (similar term)|pinioned (similar term)|slender-winged (similar term)|small-winged (similar term)|volant (similar term)|winglike (similar term)|wingless (antonym)
+(adj)|fast (similar term)
+winged bean|1
+(noun)|winged pea|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+winged elm|1
+(noun)|wing elm|Ulmus alata|elm (generic term)|elm tree (generic term)
+winged everlasting|1
+(noun)|Ammobium alatum|ammobium (generic term)
+winged pea|2
+(noun)|winged bean|goa bean|goa bean vine|Manila bean|Psophocarpus tetragonolobus|vine (generic term)
+(noun)|asparagus pea|Lotus tetragonolobus|herb (generic term)|herbaceous plant (generic term)
+winged pigweed|1
+(noun)|tumbleweed|Cycloloma atriplicifolium|shrub (generic term)|bush (generic term)
+winged spindle tree|1
+(noun)|Euonymous alatus|spindle tree (generic term)|spindleberry (generic term)|spindleberry tree (generic term)
+winger|1
+(noun)|athlete (generic term)|jock (generic term)
+wingless|1
+(adj)|apterous (similar term)|apteral (similar term)|flightless (similar term)|winged (antonym)
+winglike|1
+(adj)|winged (similar term)
+wingman|1
+(noun)|pilot (generic term)|airplane pilot (generic term)
+wings|2
+(noun)|means (generic term)|agency (generic term)|way (generic term)
+(noun)|insignia (generic term)
+wingspan|1
+(noun)|wingspread|distance (generic term)|length (generic term)
+wingspread|2
+(noun)|distance (generic term)|length (generic term)
+(noun)|wingspan|distance (generic term)|length (generic term)
+wingstem|1
+(noun)|golden ironweed|yellow ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+wink|7
+(noun)|blink of an eye|flash|heartbeat|instant|jiffy|split second|trice|twinkling|New York minute|moment (generic term)|minute (generic term)|second (generic term)|bit (generic term)
+(noun)|facial expression (generic term)|facial gesture (generic term)
+(noun)|blink|eye blink|blinking|winking|nictitation|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|gesticulate (generic term)|gesture (generic term)|motion (generic term)
+(verb)|flash|blink|twinkle|winkle|radiate (generic term)
+(verb)|blink|nictitate|nictate|act involuntarily (generic term)|act reflexively (generic term)
+(verb)|blink|blink away|suppress (generic term)|stamp down (generic term)|inhibit (generic term)|subdue (generic term)|conquer (generic term)|curb (generic term)
+wink at|1
+(verb)|connive at|promote (generic term)|advance (generic term)|boost (generic term)|further (generic term)|encourage (generic term)
+winker|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|blinker|blinder|blind (generic term)|screen (generic term)
+winking|2
+(adj)|blinking|closed (similar term)|shut (similar term)
+(noun)|blink|eye blink|blinking|wink|nictitation|nictation|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+winkle|5
+(noun)|periwinkle|seafood (generic term)
+(noun)|periwinkle|seasnail (generic term)
+(verb)|twinkle|scintillate|shine (generic term)|beam (generic term)
+(verb)|flash|blink|wink|twinkle|radiate (generic term)
+(verb)|winkle out|bring out (generic term)|get out (generic term)
+winkle out|2
+(verb)|remove (generic term)
+(verb)|winkle|bring out (generic term)|get out (generic term)
+winless|1
+(adj)|unsuccessful (similar term)
+winnebago|2
+(noun)|Winnebago|Sioux (generic term)|Siouan (generic term)
+(noun)|Winnebago|Siouan (generic term)|Siouan language (generic term)
+winner|3
+(noun)|victor|contestant (generic term)|loser (antonym)
+(noun)|gambler (generic term)|loser (antonym)
+(noun)|achiever|success|succeeder|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|loser (antonym)
+winner's circle|1
+(noun)|area (generic term)|country (generic term)
+winning|4
+(adj)|successful (similar term)
+(adj)|victorious|successful (similar term)
+(adj)|fetching|taking|attractive (similar term)
+(noun)|success (generic term)
+winning post|1
+(noun)|post (generic term)|stake (generic term)
+winning streak|1
+(noun)|streak (generic term)|run (generic term)
+winnings|1
+(noun)|win|profits|financial gain (generic term)|losings (antonym)
+winnipeg|2
+(noun)|Winnipeg|provincial capital (generic term)
+(noun)|Winnipeg|Lake Winnipeg|lake (generic term)
+winnow|5
+(noun)|winnowing|sifting|separation (generic term)
+(verb)|fan|sift (generic term)|sieve (generic term)|strain (generic term)
+(verb)|fan (generic term)
+(verb)|cull out|choose (generic term)|take (generic term)|select (generic term)|pick out (generic term)
+(verb)|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+winnow out|1
+(verb)|rule out|eliminate|reject
+winnowing|1
+(noun)|winnow|sifting|separation (generic term)
+wino|1
+(noun)|drunkard|drunk|rummy|sot|inebriate|drinker (generic term)|imbiber (generic term)|toper (generic term)|juicer (generic term)
+winslow|1
+(noun)|Winslow|Edward Winslow|settler (generic term)|colonist (generic term)
+winslow homer|1
+(noun)|Homer|Winslow Homer|painter (generic term)
+winsome|1
+(adj)|attractive (similar term)
+winsomely|1
+(adv)|engagingly
+winsomeness|1
+(noun)|appeal (generic term)|appealingness (generic term)|charm (generic term)
+winston-salem|1
+(noun)|Winston-Salem|city (generic term)|metropolis (generic term)|urban center (generic term)
+winston churchill|1
+(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+winston s. churchill|1
+(noun)|Churchill|Winston Churchill|Winston S. Churchill|Sir Winston Leonard Spenser Churchill|statesman (generic term)|solon (generic term)|national leader (generic term)|writer (generic term)|author (generic term)
+winter|2
+(noun)|wintertime|season (generic term)|time of year (generic term)
+(verb)|overwinter|spend (generic term)|pass (generic term)
+winter's bark|2
+(noun)|bark (generic term)
+(noun)|winter's bark tree|Drimys winteri|tree (generic term)
+winter's bark family|1
+(noun)|Winteraceae|family Winteraceae|magnoliid dicot family (generic term)
+winter's bark tree|1
+(noun)|winter's bark|Drimys winteri|tree (generic term)
+winter-blooming|1
+(adj)|winter-flowering|wintry (similar term)|wintery (similar term)
+winter-flowering|1
+(adj)|winter-blooming|wintry (similar term)|wintery (similar term)
+winter aconite|1
+(noun)|Eranthis hyemalis|herb (generic term)|herbaceous plant (generic term)
+winter cherry|2
+(noun)|Chinese lantern plant|bladder cherry|Physalis alkekengi|ground cherry (generic term)|husk tomato (generic term)
+(noun)|Jerusalem cherry|Madeira winter cherry|Solanum pseudocapsicum|nightshade (generic term)
+winter cress|2
+(noun)|St. Barbara's herb|scurvy grass|cress (generic term)|cress plant (generic term)
+(noun)|cress (generic term)
+winter crookneck|1
+(noun)|winter crookneck squash|Cucurbita moschata|winter squash (generic term)|winter squash plant (generic term)
+winter crookneck squash|2
+(noun)|winter crookneck|Cucurbita moschata|winter squash (generic term)|winter squash plant (generic term)
+(noun)|winter squash (generic term)
+winter currant|1
+(noun)|Ribes sanguineum|currant (generic term)|currant bush (generic term)
+winter fern|1
+(noun)|hemlock|poison hemlock|poison parsley|California fern|Nebraska fern|Conium maculatum|poisonous plant (generic term)
+winter flounder|2
+(noun)|lemon sole|flounder (generic term)
+(noun)|blackback flounder|lemon sole|Pseudopleuronectes americanus|righteye flounder (generic term)|righteyed flounder (generic term)
+winter flowering cherry|1
+(noun)|rosebud cherry|Prunus subhirtella|flowering cherry (generic term)
+winter hazel|1
+(noun)|flowering hazel|shrub (generic term)|bush (generic term)
+winter heath|1
+(noun)|spring heath|Erica carnea|erica (generic term)|true heath (generic term)
+winter heliotrope|1
+(noun)|sweet coltsfoot|Petasites fragrans|herb (generic term)|herbaceous plant (generic term)
+winter jasmine|1
+(noun)|Jasminum nudiflorum|jasmine (generic term)
+winter melon|2
+(noun)|Persian melon|honeydew melon|winter melon vine|Cucumis melo inodorus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+(noun)|muskmelon (generic term)|sweet melon (generic term)
+winter melon vine|1
+(noun)|winter melon|Persian melon|honeydew melon|Cucumis melo inodorus|sweet melon (generic term)|muskmelon (generic term)|sweet melon vine (generic term)|Cucumis melo (generic term)
+winter mushroom|1
+(noun)|Flammulina velutipes|agaric (generic term)
+winter olympic games|1
+(noun)|Winter Olympic Games|Winter Olympics|Olympic Games (generic term)|Olympics (generic term)|Olympiad (generic term)
+winter olympics|1
+(noun)|Winter Olympic Games|Winter Olympics|Olympic Games (generic term)|Olympics (generic term)|Olympiad (generic term)
+winter purslane|1
+(noun)|miner's lettuce|Cuban spinach|Montia perfoliata|Indian lettuce (generic term)
+winter rose|1
+(noun)|Christmas rose|black hellebore|Helleborus niger|hellebore (generic term)
+winter savory|2
+(noun)|Satureja montana|Satureia montana|savory (generic term)
+(noun)|winter savoury|savory (generic term)|savoury (generic term)
+winter savoury|1
+(noun)|winter savory|savory (generic term)|savoury (generic term)
+winter solstice|1
+(noun)|solstice (generic term)|summer solstice (antonym)
+winter squash|2
+(noun)|winter squash plant|squash (generic term)|squash vine (generic term)
+(noun)|squash (generic term)
+winter squash plant|1
+(noun)|winter squash|squash (generic term)|squash vine (generic term)
+winter sweet|4
+(noun)|dittany of crete|cretan dittany|crete dittany|hop marjoram|Origanum dictamnus|origanum (generic term)
+(noun)|oregano|marjoram|pot marjoram|wild marjoram|Origanum vulgare|origanum (generic term)
+(noun)|poison arrow plant|Acocanthera oblongifolia|Acocanthera spectabilis|shrub (generic term)|bush (generic term)
+(noun)|Japan allspice|Japanese allspice|Chimonanthus praecox|shrub (generic term)|bush (generic term)
+winter urn|1
+(noun)|Sarcosomataceae (generic term)
+winter wren|1
+(noun)|Troglodytes troglodytes|wren (generic term)|jenny wren (generic term)
+wintera|1
+(noun)|Pseudowintera|genus Pseudowintera|Wintera|genus Wintera|magnoliid dicot genus (generic term)
+wintera colorata|1
+(noun)|pepper shrub|Pseudowintera colorata|Wintera colorata|shrub (generic term)|bush (generic term)
+winteraceae|1
+(noun)|Winteraceae|family Winteraceae|winter's bark family|magnoliid dicot family (generic term)
+winterberry|1
+(noun)|bearberry|possum haw|Ilex decidua|holly (generic term)
+wintergreen|3
+(noun)|pyrola|herb (generic term)|herbaceous plant (generic term)
+(noun)|teaberry|checkerberry|mountain tea|groundberry|ground-berry|creeping wintergreen|Gaultheria procumbens|shrublet (generic term)
+(noun)|boxberry|checkerberry|teaberry|spiceberry|berry (generic term)
+wintergreen family|1
+(noun)|Pyrolaceae|family Pyrolaceae|dilleniid dicot family (generic term)
+wintergreen oil|1
+(noun)|oil of wintergreen|flavorer (generic term)|flavourer (generic term)|flavoring (generic term)|flavouring (generic term)|seasoner (generic term)|seasoning (generic term)
+winterise|1
+(verb)|winterize|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)|summerize (antonym)
+winterize|1
+(verb)|winterise|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)|summerize (antonym)
+wintertime|1
+(noun)|winter|season (generic term)|time of year (generic term)
+wintery|1
+(adj)|wintry|brumal (similar term)|hibernal (similar term)|hiemal (similar term)|winter-blooming (similar term)|winter-flowering (similar term)|vernal (antonym)|summery (antonym)|autumnal (antonym)
+wintry|2
+(adj)|wintery|brumal (similar term)|hibernal (similar term)|hiemal (similar term)|winter-blooming (similar term)|winter-flowering (similar term)|vernal (antonym)|summery (antonym)|autumnal (antonym)
+(adj)|frigid|frosty|frozen|glacial|icy|cold (similar term)
+wintun|2
+(noun)|Wintun|Penutian (generic term)
+(noun)|Wintun|Copehan (generic term)
+winy|1
+(adj)|winey|tasty (similar term)
+wipe|2
+(noun)|rub|contact (generic term)|physical contact (generic term)
+(verb)|pass over|rub (generic term)|pass (related term)|wipe off (related term)|wipe away (related term)|wipe off (related term)|wipe out (related term)
+wipe away|1
+(verb)|wipe off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+wipe off|2
+(verb)|wipe away|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)
+(verb)|erase|rub out|score out|efface|delete (generic term)|cancel (generic term)
+wipe out|6
+(verb)|consume|eat up|use up|eat|deplete|exhaust|run through|spend (generic term)|expend (generic term)|drop (generic term)
+(verb)|eliminate|annihilate|extinguish|eradicate|decimate|carry off|kill (generic term)
+(verb)|sweep away|destroy (generic term)|destruct (generic term)
+(verb)|erase|kill (generic term)
+(verb)|kill|obliterate|take away (generic term)|take out (generic term)
+(verb)|cancel out|eliminate (generic term)|get rid of (generic term)|do away with (generic term)
+wipe up|1
+(verb)|mop up|mop|absorb (generic term)|suck (generic term)|imbibe (generic term)|soak up (generic term)|sop up (generic term)|suck up (generic term)|draw (generic term)|take in (generic term)|take up (generic term)
+wiped out|2
+(adj)|annihilated|exterminated|destroyed (similar term)
+(adj)|broken|impoverished|destroyed (similar term)
+wipeout|2
+(noun)|destruction|demolition|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|spill (generic term)|tumble (generic term)|fall (generic term)
+wiper|3
+(noun)|worker (generic term)
+(noun)|wiper arm|contact arm|contact (generic term)|tangency (generic term)
+(noun)|windshield wiper|windscreen wiper|wiper blade|mechanical device (generic term)
+wiper arm|1
+(noun)|wiper|contact arm|contact (generic term)|tangency (generic term)
+wiper blade|1
+(noun)|windshield wiper|windscreen wiper|wiper|mechanical device (generic term)
+wiper motor|1
+(noun)|electric motor (generic term)
+wire|9
+(noun)|ligament (generic term)
+(noun)|conducting wire|conductor (generic term)
+(noun)|finishing line (generic term)|finish line (generic term)
+(noun)|telegram|message (generic term)
+(verb)|equip (generic term)|fit (generic term)|fit out (generic term)|outfit (generic term)
+(verb)|cable|telegraph|telecommunicate (generic term)
+(verb)|fasten (generic term)|fix (generic term)|secure (generic term)|unwire (antonym)
+(verb)|string (generic term)|thread (generic term)|draw (generic term)
+(verb)|electrify|adapt (generic term)|accommodate (generic term)
+wire-haired|1
+(adj)|wiry-coated|hairy (similar term)|haired (similar term)|hirsute (similar term)
+wire-haired fox terrier|1
+(noun)|fox terrier (generic term)
+wire-haired pointing griffon|1
+(noun)|griffon|sporting dog (generic term)|gun dog (generic term)
+wire-haired terrier|1
+(noun)|wirehair|wirehaired terrier|terrier (generic term)
+wire-puller|1
+(noun)|hustler (generic term)|wheeler dealer (generic term)|operator (generic term)
+wire cloth|1
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+wire cutter|1
+(noun)|edge tool (generic term)
+wire gage|1
+(noun)|wire gauge|gauge (generic term)|gage (generic term)
+wire gauge|1
+(noun)|wire gage|gauge (generic term)|gage (generic term)
+wire glass|1
+(noun)|glass (generic term)
+wire grass|2
+(noun)|broom beard grass|prairie grass|Andropogon scoparius|Schizachyrium scoparium|broom grass (generic term)
+(noun)|yardgrass|yard grass|goose grass|Eleusine indica|millet (generic term)
+wire matrix printer|1
+(noun)|wire printer|stylus printer|dot matrix printer (generic term)|matrix printer (generic term)|dot printer (generic term)|impact printer (generic term)
+wire printer|1
+(noun)|wire matrix printer|stylus printer|dot matrix printer (generic term)|matrix printer (generic term)|dot printer (generic term)|impact printer (generic term)
+wire recorder|1
+(noun)|magnetic recorder (generic term)
+wire service|1
+(noun)|news agency|press agency|press association|news organization|news organisation|agency (generic term)
+wire stripper|1
+(noun)|hand tool (generic term)
+wire wool|1
+(noun)|steel wool|abrasive (generic term)|abradant (generic term)|abrasive material (generic term)
+wired|3
+(adj)|bugged (similar term)|connected (similar term)|wireless (antonym)
+(adj)|pumped-up|pumped up|pumped|tense (similar term)
+(adj)|bound (similar term)
+wirehair|1
+(noun)|wirehaired terrier|wire-haired terrier|terrier (generic term)
+wirehaired terrier|1
+(noun)|wirehair|wire-haired terrier|terrier (generic term)
+wireless|5
+(adj)|wired (antonym)
+(noun)|radio|radiocommunication|broadcasting (generic term)
+(noun)|telecommunication (generic term)|telecom (generic term)
+(noun)|radio receiver|receiving set|radio set|radio|tuner|receiver (generic term)|receiving system (generic term)
+(noun)|radio|communication system (generic term)
+wireless fidelity|1
+(noun)|wireless local area network|WLAN|WiFi|local area network (generic term)|LAN (generic term)
+wireless local area network|1
+(noun)|WLAN|wireless fidelity|WiFi|local area network (generic term)|LAN (generic term)
+wireless telegraph|1
+(noun)|radiotelegraph|radiotelegraphy|wireless telegraphy|radio (generic term)|wireless (generic term)
+wireless telegraphy|2
+(noun)|radiotelegraph|radiotelegraphy|wireless (generic term)
+(noun)|radiotelegraph|radiotelegraphy|wireless telegraph|radio (generic term)|wireless (generic term)
+wireless telephone|2
+(noun)|radiotelephone|radiotelephony|wireless (generic term)
+(noun)|radiotelephone|radiophone|telephone (generic term)|phone (generic term)|telephone set (generic term)
+wireman|1
+(noun)|wirer|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+wirer|2
+(noun)|communicator (generic term)
+(noun)|wireman|skilled worker (generic term)|trained worker (generic term)|skilled workman (generic term)
+wiretap|2
+(noun)|tap|investigation (generic term)|investigating (generic term)
+(verb)|tap|intercept|bug|listen in (generic term)|eavesdrop (generic term)
+wiretapper|1
+(noun)|tapper|phone tapper|eavesdropper (generic term)
+wirework|1
+(noun)|grillwork|net (generic term)|network (generic term)|mesh (generic term)|meshing (generic term)|meshwork (generic term)
+wireworm|1
+(noun)|larva (generic term)
+wiriness|1
+(noun)|leanness (generic term)|thinness (generic term)|spareness (generic term)
+wiring|2
+(noun)|circuit (generic term)|electrical circuit (generic term)|electric circuit (generic term)
+(noun)|manual labor (generic term)|manual labour (generic term)
+wiring diagram|1
+(noun)|schematic (generic term)|schematic drawing (generic term)
+wiry|3
+(adj)|stringy|thin (similar term)|lean (similar term)
+(adj)|ligament (related term)
+(adj)|hairy (similar term)|haired (similar term)|hirsute (similar term)
+wiry-coated|1
+(adj)|wire-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+wiry-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+wisconsin|2
+(noun)|Wisconsin|Wisconsin River|river (generic term)
+(noun)|Wisconsin|Badger State|WI|American state (generic term)
+wisconsin river|1
+(noun)|Wisconsin|Wisconsin River|river (generic term)
+wisconsin weeping willow|1
+(noun)|Wisconsin weeping willow|Salix pendulina|Salix blanda|Salix pendulina blanda|willow (generic term)|willow tree (generic term)
+wisconsinite|1
+(noun)|Wisconsinite|Badger|American (generic term)
+wisdom|5
+(noun)|content (generic term)|cognitive content (generic term)|mental object (generic term)
+(noun)|wiseness|trait (generic term)|folly (antonym)
+(noun)|sapience|know-how (generic term)
+(noun)|wiseness|soundness|good (generic term)|goodness (generic term)|unsoundness (antonym)
+(noun)|Wisdom of Solomon|Wisdom|book (generic term)
+wisdom book|1
+(noun)|sapiential book|wisdom literature|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+wisdom literature|1
+(noun)|sapiential book|wisdom book|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+wisdom of jesus the son of sirach|1
+(noun)|Ben Sira|Sirach|Ecclesiasticus|Wisdom of Jesus the Son of Sirach|book (generic term)
+wisdom of solomon|1
+(noun)|Wisdom of Solomon|Wisdom|book (generic term)
+wisdom tooth|1
+(noun)|molar (generic term)|grinder (generic term)
+wise|7
+(adj)|all-knowing (similar term)|omniscient (similar term)|perspicacious (similar term)|sagacious (similar term)|sapient (similar term)|owlish (similar term)|sapiential (similar term)|sage (similar term)|advisable (related term)|well-advised (related term)|advised (related term)|politic (related term)|prudent (related term)|foolish (antonym)
+(adj)|judicious|heady|prudent (similar term)
+(adj)|knowing|wise to|informed (similar term)
+(adj)|fresh|impertinent|impudent|overbold|smart|saucy|sassy|forward (similar term)
+(noun)|manner (generic term)|mode (generic term)|style (generic term)|way (generic term)|fashion (generic term)
+(noun)|Wise|Stephen Samuel Wise|religious leader (generic term)
+(noun)|Wise|Isaac Mayer Wise|religious leader (generic term)
+wise guy|1
+(noun)|smart aleck|wiseacre|wisenheimer|weisenheimer|upstart (generic term)
+wise man|1
+(noun)|mentor|intellectual (generic term)|intellect (generic term)
+wise men|1
+(noun)|Wise Men|Magi|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)
+wise to|1
+(adj)|knowing|wise|informed (similar term)
+wise up|2
+(verb)|learn (generic term)|hear (generic term)|get word (generic term)|get wind (generic term)|pick up (generic term)|find out (generic term)|get a line (generic term)|discover (generic term)|see (generic term)
+(verb)|inform (generic term)
+wiseacre|1
+(noun)|wise guy|smart aleck|wisenheimer|weisenheimer|upstart (generic term)
+wisecrack|2
+(noun)|crack|sally|quip|remark (generic term)|comment (generic term)
+(verb)|comment (generic term)|notice (generic term)|remark (generic term)|point out (generic term)
+wisely|1
+(adv)|sagely|foolishly (antonym)
+wiseness|2
+(noun)|wisdom|soundness|good (generic term)|goodness (generic term)|unsoundness (antonym)
+(noun)|wisdom|trait (generic term)|folly (antonym)
+wisenheimer|1
+(noun)|wise guy|smart aleck|wiseacre|weisenheimer|upstart (generic term)
+wisent|1
+(noun)|aurochs|Bison bonasus|bison (generic term)
+wish|11
+(noun)|wishing|want|desire (generic term)
+(noun)|indirect request|request (generic term)|asking (generic term)
+(noun)|regard|compliments|greeting (generic term)|salutation (generic term)
+(noun)|preference (generic term)|druthers (generic term)
+(verb)|desire (generic term)|want (generic term)
+(verb)|care|like|desire (generic term)|want (generic term)
+(verb)|will
+(verb)|express (generic term)|verbalize (generic term)|verbalise (generic term)|utter (generic term)|give tongue to (generic term)
+(verb)|wish well|desire (generic term)|want (generic term)|begrudge (antonym)
+(verb)|order (generic term)
+(verb)|bid|greet (generic term)|recognize (generic term)|recognise (generic term)
+wish-wash|2
+(noun)|beverage (generic term)|drink (generic term)|drinkable (generic term)|potable (generic term)
+(noun)|folderol|rubbish|tripe|trumpery|trash|applesauce|codswallop|drivel (generic term)|garbage (generic term)
+wish list|1
+(noun)|list (generic term)|listing (generic term)
+wish well|1
+(verb)|wish|desire (generic term)|want (generic term)|begrudge (antonym)
+wishbone|1
+(noun)|wishing bone|furcula (generic term)
+wished-for|1
+(adj)|longed-for|yearned-for|wanted (similar term)
+wishful|2
+(adj)|desirous|appetent (similar term)|athirst (similar term)|hungry (similar term)|thirsty (similar term)|avid (similar term)|devouring (similar term)|esurient (similar term)|greedy (similar term)|covetous (similar term)|envious (similar term)|jealous (similar term)|undesirous (antonym)
+(adj)|aspirant|aspiring|ambitious (similar term)
+wishful thinker|1
+(noun)|escapist|dreamer|daydreamer (generic term)|woolgatherer (generic term)
+wishful thinking|1
+(noun)|illusion (generic term)|fantasy (generic term)|phantasy (generic term)|fancy (generic term)
+wishfulness|1
+(noun)|longing (generic term)|yearning (generic term)|hungriness (generic term)
+wishing|1
+(noun)|wish|want|desire (generic term)
+wishing bone|1
+(noun)|wishbone|furcula (generic term)
+wishing cap|1
+(noun)|cap (generic term)
+wishy-washy|1
+(adj)|namby-pamby|gutless|spineless|weak (similar term)
+wisp|4
+(noun)|tuft (generic term)|tussock (generic term)
+(noun)|small person (generic term)
+(noun)|package (generic term)|bundle (generic term)|packet (generic term)|parcel (generic term)
+(noun)|flock (generic term)
+wisplike|1
+(adj)|wispy|thin (similar term)|lean (similar term)
+wispy|2
+(adj)|wisplike|thin (similar term)|lean (similar term)
+(adj)|dim|faint|shadowy|vague|indistinct (similar term)
+wistaria|1
+(noun)|wisteria|vine (generic term)
+wister|1
+(noun)|Wister|Owen Wister|writer (generic term)|author (generic term)
+wisteria|1
+(noun)|wistaria|vine (generic term)
+wisteria chinensis|1
+(noun)|Chinese wistaria|Wisteria chinensis|wisteria (generic term)|wistaria (generic term)
+wisteria floribunda|1
+(noun)|Japanese wistaria|Wisteria floribunda|wisteria (generic term)|wistaria (generic term)
+wisteria frutescens|1
+(noun)|American wistaria|American wisteria|Wisteria frutescens|wisteria (generic term)|wistaria (generic term)
+wisteria venusta|1
+(noun)|silky wisteria|Wisteria venusta|wisteria (generic term)|wistaria (generic term)
+wistful|1
+(adj)|pensive|sad (similar term)
+wistfulness|1
+(noun)|longing (generic term)|yearning (generic term)|hungriness (generic term)
+wit|3
+(noun)|humor|humour|witticism|wittiness|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+(noun)|brain|brainpower|learning ability|mental capacity|mentality|intelligence (generic term)
+(noun)|wag|card|humorist (generic term)|humourist (generic term)
+witch|5
+(noun)|enchantress|occultist (generic term)
+(noun)|imaginary being (generic term)|imaginary creature (generic term)
+(noun)|Wiccan|pagan (generic term)
+(noun)|hag|beldam|beldame|crone|old woman (generic term)
+(verb)|hex|bewitch|glamour|enchant|jinx|charm (generic term)|becharm (generic term)
+witch's brew|1
+(noun)|witches' brew|witches' broth|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+witch-hazel family|1
+(noun)|Hamamelidaceae|family Hamamelidaceae|hamamelid dicot family (generic term)
+witch-hunt|1
+(noun)|harassment (generic term)|molestation (generic term)
+witch-hunter|1
+(noun)|tormentor (generic term)|tormenter (generic term)|persecutor (generic term)
+witch alder|1
+(noun)|fothergilla|shrub (generic term)|bush (generic term)
+witch broom|1
+(noun)|witches' broom|hexenbesen|staghead|tuft (generic term)|tussock (generic term)
+witch doctor|1
+(noun)|sorcerer (generic term)|magician (generic term)|wizard (generic term)|necromancer (generic term)|thaumaturge (generic term)|thaumaturgist (generic term)
+witch elm|1
+(noun)|wych elm|Ulmus glabra|elm (generic term)|elm tree (generic term)
+witch grass|2
+(noun)|witchgrass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass (generic term)
+(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witchgrass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+witch hazel|2
+(noun)|witch hazel plant|wych hazel|wych hazel plant|shrub (generic term)|bush (generic term)
+(noun)|wych hazel|lotion (generic term)|application (generic term)
+witch hazel plant|1
+(noun)|witch hazel|wych hazel|wych hazel plant|shrub (generic term)|bush (generic term)
+witchcraft|1
+(noun)|witchery|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+witchery|1
+(noun)|witchcraft|sorcery (generic term)|black magic (generic term)|black art (generic term)|necromancy (generic term)
+witches' brew|1
+(noun)|witches' broth|witch's brew|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+witches' broom|1
+(noun)|witch broom|hexenbesen|staghead|tuft (generic term)|tussock (generic term)
+witches' broth|1
+(noun)|witches' brew|witch's brew|assortment (generic term)|mixture (generic term)|mixed bag (generic term)|miscellany (generic term)|miscellanea (generic term)|variety (generic term)|salmagundi (generic term)|smorgasbord (generic term)|potpourri (generic term)|motley (generic term)
+witches' butter|1
+(noun)|Tremella lutescens|jelly fungus (generic term)
+witches' sabbath|1
+(noun)|sabbat|witches' Sabbath|assembly (generic term)
+witchgrass|2
+(noun)|witch grass|old witchgrass|old witch grass|tumble grass|Panicum capillare|panic grass (generic term)
+(noun)|dog grass|couch grass|quackgrass|quack grass|quick grass|witch grass|Agropyron repens|wheatgrass (generic term)|wheat-grass (generic term)
+witching|2
+(adj)|charming|magic|magical|sorcerous|wizard|wizardly|supernatural (similar term)
+(noun)|practice (generic term)
+witchlike|1
+(adj)|supernatural (similar term)
+with-it|2
+(adj)|up-to-date|cutting-edge|fashionable (similar term)|stylish (similar term)
+(adj)|streetwise|street smart|smart (similar term)
+with adroitness|1
+(adv)|adroitly|maladroitly (antonym)
+with all respect|1
+(adv)|respectfully|disrespectfully (antonym)
+with ambition|1
+(adv)|ambitiously|determinedly|unambitiously (antonym)
+with an editorial|1
+(adv)|editorially|in an editorial
+with approval|1
+(adv)|approvingly|disapprovingly (antonym)
+with attention|1
+(adv)|attentively|paying attention
+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 (similar term)
+with competence|1
+(adv)|competently|aptly|ably|capably|incompetently (antonym)
+with conceit|1
+(adv)|conceitedly|self-conceitedly
+with confidence|1
+(adv)|confidently
+with consideration|1
+(adv)|considerately|inconsiderately (antonym)
+with convulsions|1
+(adv)|convulsively
+with cynicism|1
+(adv)|cynically
+with determination|1
+(adv)|determinedly|unfalteringly|unshakably
+with diplomacy|1
+(adv)|diplomatically|undiplomatically (antonym)
+with efficiency|1
+(adv)|efficiently|expeditiously|inefficiently (antonym)
+with excitement|1
+(adv)|excitedly
+with great care|1
+(adv)|just so
+with happiness|1
+(adv)|happily|merrily|mirthfully|gayly|blithely|jubilantly|unhappily (antonym)
+with hostility|1
+(adv)|belligerently|hostilely
+with impatience|1
+(adv)|impatiently|patiently (antonym)
+with inspiration|1
+(adv)|inspirationally
+with kid gloves|1
+(adv)|cautiously|carefully|carelessly (antonym)|incautiously (antonym)
+with love|1
+(adv)|amorously
+with moderation|1
+(adv)|moderately|immoderately (antonym)
+with modesty|1
+(adv)|modestly|immodestly (antonym)
+with much to-do|1
+(adv)|in a big way
+with ostentation|1
+(adv)|ostentatiously|showily
+with patience|1
+(adv)|patiently|impatiently (antonym)
+with pride|1
+(adv)|proudly
+with reason|1
+(adv)|justifiably|unjustifiably (antonym)
+with speculation|1
+(adv)|speculatively
+with spite|1
+(adv)|spitefully
+with success|1
+(adv)|successfully|unsuccessfully (antonym)
+with that|1
+(adv)|thereupon|therewith
+with the wind|1
+(adv)|downwind|upwind (antonym)
+with validity|1
+(adv)|validly
+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 (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|retire|discontinue (generic term)|stop (generic term)|cease (generic term)|give up (generic term)|quit (generic term)|lay off (generic term)
+(verb)|disengage|let go of (generic term)|let go (generic term)|release (generic term)|relinquish (generic term)|engage (antonym)
+(verb)|recall|call in|call back|take (generic term)
+(verb)|swallow|take back|unsay|renounce (generic term)|repudiate (generic term)
+(verb)|seclude|sequester|sequestrate|isolate (generic term)|insulate (generic term)
+(verb)|remove|take|take away|take off (related term)
+(verb)|adjourn|retire|close up (generic term)|close (generic term)|fold (generic term)|shut down (generic term)|close down (generic term)
+(verb)|bow out|retire (generic term)
+(verb)|draw|take out|draw off|remove (generic term)|take (generic term)|take away (generic term)|withdraw (generic term)|deposit (antonym)
+(verb)|retire|tire (generic term)|pall (generic term)|weary (generic term)|fatigue (generic term)|jade (generic term)
+(verb)|retreat|pull back|back out|back away|crawfish|crawfish out|pull in one's horns
+withdrawal|6
+(noun)|backdown|climb-down|retraction (generic term)|abjuration (generic term)|recantation (generic term)
+(noun)|removal (generic term)|remotion (generic term)
+(noun)|departure (generic term)|going (generic term)|going away (generic term)|leaving (generic term)
+(noun)|detachment|indifference (generic term)
+(noun)|secession|separation (generic term)
+(noun)|drug withdrawal|termination (generic term)|ending (generic term)|conclusion (generic term)
+withdrawal method|1
+(noun)|coitus interruptus|pulling out|onanism|birth control (generic term)|birth prevention (generic term)|family planning (generic term)
+withdrawal symptom|1
+(noun)|symptom (generic term)
+withdrawer|6
+(noun)|authority (generic term)
+(noun)|individualist (generic term)
+(noun)|drug addict (generic term)|junkie (generic term)|junky (generic term)
+(noun)|contestant (generic term)
+(noun)|student (generic term)|pupil (generic term)|educatee (generic term)
+(noun)|depositor (generic term)
+withdrawing|1
+(adj)|retreating (similar term)
+withdrawing room|1
+(noun)|drawing room|reception room (generic term)
+withdrawn|2
+(adj)|recluse|reclusive|unsocial (similar term)
+(adj)|indrawn|reserved (similar term)
+withdrawnness|1
+(noun)|aloofness|remoteness|standoffishness|unsociability (generic term)|unsociableness (generic term)
+withe|2
+(noun)|band (generic term)
+(noun)|withy|branchlet (generic term)|twig (generic term)|sprig (generic term)
+wither|2
+(verb)|shrivel|shrivel up|shrink|decrease (generic term)|diminish (generic term)|lessen (generic term)|fall (generic term)
+(verb)|fade|disappear (generic term)|vanish (generic term)|go away (generic term)
+withered|2
+(adj)|shriveled|shrivelled|shrunken|wizen|wizened|thin (similar term)|lean (similar term)
+(adj)|dried-up|sere|sear|shriveled|shrivelled|dry (similar term)
+withering|3
+(adj)|annihilative|annihilating|devastating|destructive (similar term)
+(adj)|annihilating|devastating|disrespectful (similar term)
+(noun)|atrophy|weakening (generic term)
+withers|1
+(noun)|body part (generic term)
+witherspoon|1
+(noun)|Witherspoon|John Witherspoon|American Revolutionary leader (generic term)|educator (generic term)|pedagogue (generic term)|pedagog (generic term)
+withhold|2
+(verb)|keep back|deny (generic term)|refuse (generic term)
+(verb)|deduct|recoup|keep (generic term)|hold on (generic term)
+withholder|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|granter (antonym)
+(noun)|restrainer (generic term)|controller (generic term)
+withholding|3
+(noun)|subtraction (generic term)|deduction (generic term)
+(noun)|withholding tax|income tax (generic term)
+(noun)|retention (generic term)|keeping (generic term)|holding (generic term)
+withholding tax|1
+(noun)|withholding|income tax (generic term)
+within|1
+(adv)|inside|outside (antonym)
+within reason|1
+(adv)|reasonably|moderately|somewhat|fairly|middling|passably|immoderately (antonym)|unreasonably (antonym)
+without a stitch|1
+(adj)|unclothed (similar term)
+without aim|1
+(adv)|aimlessly
+without ambiguity|1
+(adv)|unambiguously|unequivocally|ambiguously (antonym)
+without bias|1
+(adv)|disinterestedly
+without bloodshed|1
+(adv)|bloodlessly|bloodily (antonym)
+without consideration|1
+(adv)|inconsiderately|considerately (antonym)
+without diplomacy|1
+(adv)|undiplomatically|diplomatically (antonym)
+without doubt|2
+(adv)|to be sure|no doubt
+(adv)|undoubtedly|doubtless|beyond question|beyond any doubt
+without end|1
+(adv)|endlessly
+without expression|1
+(adv)|blankly
+without graciousness|1
+(adv)|ungraciously|ungracefully|gracelessly|woodenly|gracefully (antonym)|graciously (antonym)
+without moderation|1
+(adv)|immoderately|moderately (antonym)
+without modesty|1
+(adv)|immodestly|modestly (antonym)
+without reasoning|1
+(adv)|irrationally|rationally (antonym)
+without sympathy|1
+(adv)|unsympathetically|sympathetically (antonym)
+without thinking|1
+(adv)|stupidly|doltishly
+withstand|2
+(verb)|defy|hold|hold up|resist (generic term)|hold out (generic term)|withstand (generic term)|stand firm (generic term)
+(verb)|resist|hold out|stand firm|fight (generic term)|oppose (generic term)|fight back (generic term)|fight down (generic term)|defend (generic term)|surrender (antonym)
+withstander|2
+(noun)|adversary (generic term)|antagonist (generic term)|opponent (generic term)|opposer (generic term)|resister (generic term)
+(noun)|defender|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+withy|1
+(noun)|withe|branchlet (generic term)|twig (generic term)|sprig (generic term)
+witless|1
+(adj)|nitwitted|senseless|soft-witted|stupid (similar term)
+witloof|2
+(noun)|endive|Cichorium endivia|herb (generic term)|herbaceous plant (generic term)
+(noun)|Belgian endive|French endive|chicory escarole (generic term)|endive (generic term)|escarole (generic term)
+witness|7
+(noun)|witnesser|informant|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+(noun)|spectator|viewer|watcher|looker|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)
+(noun)|testimony (generic term)
+(noun)|attestant|attestor|attestator|signer (generic term)|signatory (generic term)
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(verb)|watch (generic term)
+(verb)|find|see|experience (generic term)|undergo (generic term)|see (generic term)|go through (generic term)
+witness box|1
+(noun)|witness stand|box (generic term)
+witness stand|1
+(noun)|witness box|box (generic term)
+witnesser|1
+(noun)|witness|informant|perceiver (generic term)|percipient (generic term)|observer (generic term)|beholder (generic term)|speaker (generic term)|talker (generic term)|utterer (generic term)|verbalizer (generic term)|verbaliser (generic term)
+witold gombrowicz|1
+(noun)|Gombrowicz|Witold Gombrowicz|writer (generic term)|author (generic term)
+wits|1
+(noun)|marbles|intelligence (generic term)
+wittgenstein|1
+(noun)|Wittgenstein|Ludwig Wittgenstein|Ludwig Josef Johan Wittgenstein|philosopher (generic term)
+wittgensteinian|1
+(adj)|Wittgensteinian|philosopher (related term)
+witticism|1
+(noun)|wit|humor|humour|wittiness|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+wittiness|1
+(noun)|wit|humor|humour|witticism|message (generic term)|content (generic term)|subject matter (generic term)|substance (generic term)
+witting|2
+(adj)|aware|unwitting (antonym)
+(adj)|conscious|intended (similar term)
+wittingly|1
+(adv)|knowingly|unknowingly (antonym)|unwittingly (antonym)
+wittol|1
+(noun)|cuckold (generic term)
+witty|1
+(adj)|humorous (similar term)|humourous (similar term)
+witwatersrand|1
+(noun)|Witwatersrand|Rand|Reef|region (generic term)|part (generic term)
+wive|2
+(verb)|marry (generic term)|get married (generic term)|wed (generic term)|conjoin (generic term)|hook up with (generic term)|get hitched with (generic term)|espouse (generic term)
+(verb)|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+wivern|1
+(noun)|wyvern|dragon (generic term)|firedrake (generic term)
+wiz|1
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wizard|expert (generic term)
+wizard|3
+(adj)|charming|magic|magical|sorcerous|witching|wizardly|supernatural (similar term)
+(noun)|ace|adept|champion|sensation|maven|mavin|virtuoso|genius|hotshot|star|superstar|whiz|whizz|wiz|expert (generic term)
+(noun)|sorcerer|magician|necromancer|thaumaturge|thaumaturgist|occultist (generic term)
+wizardly|1
+(adj)|charming|magic|magical|sorcerous|witching|wizard|supernatural (similar term)
+wizardry|1
+(noun)|genius|creativity (generic term)|creativeness (generic term)|creative thinking (generic term)
+wizen|1
+(adj)|shriveled|shrivelled|shrunken|withered|wizened|thin (similar term)|lean (similar term)
+wizened|1
+(adj)|shriveled|shrivelled|shrunken|withered|wizen|thin (similar term)|lean (similar term)
+wlan|1
+(noun)|wireless local area network|WLAN|wireless fidelity|WiFi|local area network (generic term)|LAN (generic term)
+wmd|1
+(noun)|weapon of mass destruction|WMD|W.M.D.|weapon (generic term)|arm (generic term)|weapon system (generic term)
+wmo|1
+(noun)|World Meteorological Organization|WMO|United Nations agency (generic term)|UN agency (generic term)
+wnw|1
+(noun)|west northwest|WNW|compass point (generic term)|point (generic term)
+woad|2
+(noun)|dye (generic term)|dyestuff (generic term)
+(noun)|herb (generic term)|herbaceous plant (generic term)
+woadwaxen|1
+(noun)|woodwaxen|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|Genista tinctoria|broom (generic term)
+wobble|4
+(noun)|movement (generic term)|motion (generic term)
+(verb)|coggle|move (generic term)
+(verb)|careen|shift|tilt|move (generic term)
+(verb)|shimmy|vibrate (generic term)
+wobbler|1
+(noun)|thing (generic term)
+wobbling|1
+(adj)|unsteady (similar term)
+wobbly|2
+(adj)|rickety|shaky|wonky|unstable (similar term)
+(noun)|Wobbly|radical (generic term)
+wodan|1
+(noun)|Woden|Wodan|Anglo-Saxon deity (generic term)
+wodehouse|1
+(noun)|Wodehouse|P. G. Wodehouse|Pelham Grenville Wodehouse|writer (generic term)|author (generic term)
+woden|1
+(noun)|Woden|Wodan|Anglo-Saxon deity (generic term)
+woe|2
+(noun)|suffering|misery (generic term)|wretchedness (generic term)|miserableness (generic term)
+(noun)|woefulness|mournfulness (generic term)|sorrowfulness (generic term)|ruthfulness (generic term)
+woebegone|2
+(adj)|creaky|decrepit|derelict|flea-bitten|run-down|worn (similar term)
+(adj)|woeful|sorrowful (similar term)
+woeful|2
+(adj)|woebegone|sorrowful (similar term)
+(adj)|deplorable|execrable|miserable|wretched|inferior (similar term)
+woefully|1
+(adv)|deplorably|lamentably|sadly
+woefulness|1
+(noun)|woe|mournfulness (generic term)|sorrowfulness (generic term)|ruthfulness (generic term)
+wog|1
+(noun)|person of color (generic term)|person of colour (generic term)
+wok|1
+(noun)|pan (generic term)|cooking pan (generic term)
+wold|1
+(noun)|country (generic term)|rural area (generic term)
+wolf|6
+(noun)|canine (generic term)|canid (generic term)
+(noun)|Wolf|Hugo Wolf|composer (generic term)
+(noun)|Wolf|Friedrich August Wolf|classicist (generic term)|classical scholar (generic term)
+(noun)|woman chaser|skirt chaser|masher|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+(noun)|beast|savage|brute|wildcat|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+(verb)|wolf down|eat (generic term)
+wolf's bane|1
+(noun)|wolfsbane|wolfbane|Aconitum lycoctonum|aconite (generic term)
+wolf's milk|1
+(noun)|leafy spurge|Euphorbia esula|spurge (generic term)
+wolf-sized|1
+(adj)|sized (similar term)
+wolf-whistle|1
+(verb)|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+wolf bean|1
+(noun)|white lupine|field lupine|Egyptian lupine|Lupinus albus|lupine (generic term)|lupin (generic term)
+wolf boy|1
+(noun)|wild man (generic term)|feral man (generic term)
+wolf cub|1
+(noun)|wolf pup|young mammal (generic term)|wolf (generic term)
+wolf down|1
+(verb)|wolf|eat (generic term)
+wolf fish|1
+(noun)|wolffish|catfish|blennioid fish (generic term)|blennioid (generic term)
+wolf pack|2
+(noun)|fleet (generic term)
+(noun)|pack (generic term)
+wolf pup|1
+(noun)|wolf cub|young mammal (generic term)|wolf (generic term)
+wolf spider|1
+(noun)|hunting spider|spider (generic term)
+wolfbane|1
+(noun)|wolfsbane|wolf's bane|Aconitum lycoctonum|aconite (generic term)
+wolfe|2
+(noun)|Wolfe|Tom Wolfe|Thomas Wolfe|Thomas Kennerly Wolfe Jr.|writer (generic term)|author (generic term)
+(noun)|Wolfe|Thomas Wolfe|Thomas Clayton Wolfe|writer (generic term)|author (generic term)
+wolff|1
+(noun)|Wolff|Kaspar Friedrich Wolff|anatomist (generic term)
+wolffia|1
+(noun)|Wolffia|genus Wolffia|monocot genus (generic term)|liliopsid genus (generic term)
+wolffia columbiana|1
+(noun)|common wolffia|Wolffia columbiana|watermeal (generic term)
+wolffiella|1
+(noun)|Wolffiella|genus Wolffiella|monocot genus (generic term)|liliopsid genus (generic term)
+wolffiella gladiata|1
+(noun)|mud midget|bogmat|Wolffiella gladiata|duckweed (generic term)
+wolffish|2
+(noun)|wolf fish|catfish|blennioid fish (generic term)|blennioid (generic term)
+(noun)|lancetfish|lancet fish|soft-finned fish (generic term)|malacopterygian (generic term)
+wolfgang amadeus mozart|1
+(noun)|Mozart|Wolfgang Amadeus Mozart|composer (generic term)
+wolfgang pauli|1
+(noun)|Pauli|Wolfgang Pauli|nuclear physicist (generic term)
+wolfhound|1
+(noun)|hound (generic term)|hound dog (generic term)
+wolfish|2
+(adj)|wolflike|canine|canid (related term)
+(adj)|edacious|esurient|rapacious|ravening|ravenous|voracious|gluttonous (similar term)
+wolflike|1
+(adj)|wolfish|canine|canid (related term)
+wolfman|1
+(noun)|werewolf|lycanthrope|mythical monster (generic term)|mythical creature (generic term)
+wolfram|1
+(noun)|tungsten|W|atomic number 74|metallic element (generic term)|metal (generic term)
+wolfram steel|1
+(noun)|tungsten steel|alloy steel (generic term)
+wolframite|1
+(noun)|iron manganese tungsten|mineral (generic term)
+wolfsbane|1
+(noun)|wolfbane|wolf's bane|Aconitum lycoctonum|aconite (generic term)
+wollaston|1
+(noun)|Wollaston|William Hyde Wollaston|chemist (generic term)|physicist (generic term)
+wollaston prism|1
+(noun)|Rochon prism|Wollaston prism|optical device (generic term)
+wollastonite|1
+(noun)|mineral (generic term)
+wollemi pine|1
+(noun)|Wollemi pine|conifer (generic term)|coniferous tree (generic term)
+wollstonecraft|1
+(noun)|Wollstonecraft|Mary Wollstonecraft|Mary Wollstonecraft Godwin|writer (generic term)|author (generic term)|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+wolof|1
+(noun)|Wolof|West African (generic term)
+wolstonian glaciation|1
+(noun)|Wolstonian glaciation|glaciation (generic term)
+wolverine|3
+(noun)|Michigander|Wolverine|American (generic term)
+(noun)|glutton|Gulo gulo|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+(noun)|carcajou|skunk bear|Gulo luscus|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+wolverine state|1
+(noun)|Michigan|Wolverine State|Great Lakes State|MI|American state (generic term)
+woman|4
+(noun)|adult female|female (generic term)|female person (generic term)|adult (generic term)|grownup (generic term)|man (antonym)
+(noun)|womanhood|fair sex|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|charwoman|char|cleaning woman|cleaning lady|cleaner (generic term)
+(noun)|female (generic term)|female person (generic term)|man (antonym)
+woman's body|1
+(noun)|adult female body|adult body (generic term)|female body (generic term)
+woman's clothing|1
+(noun)|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+woman's doctor|1
+(noun)|gynecologist|gynaecologist|specialist (generic term)|medical specialist (generic term)
+woman's hat|1
+(noun)|millinery|hat (generic term)|chapeau (generic term)|lid (generic term)
+woman-worship|1
+(noun)|gyneolatry|gynaeolatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+woman chaser|1
+(noun)|wolf|skirt chaser|masher|womanizer (generic term)|womaniser (generic term)|philanderer (generic term)
+woman hater|1
+(noun)|misogynist|misanthrope (generic term)|misanthropist (generic term)
+woman of the house|1
+(noun)|housewife|homemaker|lady of the house|wife (generic term)|married woman (generic term)
+woman of the street|1
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|working girl|sporting lady|lady of pleasure|woman (generic term)|adult female (generic term)
+womanhood|3
+(noun)|muliebrity|adulthood (generic term)
+(noun)|woman|fair sex|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|position (generic term)|post (generic term)|berth (generic term)|office (generic term)|spot (generic term)|billet (generic term)|place (generic term)|situation (generic term)
+womanise|1
+(verb)|philander|womanize|interact (generic term)
+womaniser|1
+(noun)|womanizer|philanderer|libertine (generic term)|debauchee (generic term)|rounder (generic term)|man (generic term)|adult male (generic term)
+womanish|1
+(adj)|unmanly (similar term)|unmanful (similar term)|unmanlike (similar term)
+womanishness|1
+(noun)|effeminacy|effeminateness|sissiness|softness|unmanliness|femininity (generic term)|muliebrity (generic term)
+womanize|2
+(verb)|philander|womanise|interact (generic term)
+(verb)|feminize|feminise|effeminize|erreminise|change (generic term)|alter (generic term)|modify (generic term)
+womanizer|1
+(noun)|womaniser|philanderer|libertine (generic term)|debauchee (generic term)|rounder (generic term)|man (generic term)|adult male (generic term)
+womankind|1
+(noun)|people (generic term)
+womanlike|2
+(adj)|womanly (similar term)|feminine (similar term)
+(noun)|womanliness|femininity (generic term)|muliebrity (generic term)
+womanliness|1
+(noun)|womanlike|femininity (generic term)|muliebrity (generic term)
+womanly|1
+(adj)|feminine|matronly (similar term)|womanlike (similar term)|unwomanly (antonym)
+womb|1
+(noun)|uterus|female internal reproductive organ (generic term)
+womb-to-tomb|1
+(adj)|lifelong|long (similar term)
+wombat|1
+(noun)|marsupial (generic term)|pouched mammal (generic term)
+women's army corps|1
+(noun)|Women's Army Corps|WAC|corps (generic term)|army corps (generic term)
+women's lib|1
+(noun)|feminist movement|feminism|women's liberation movement|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+women's liberation movement|1
+(noun)|feminist movement|feminism|women's lib|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+women's liberationist|1
+(noun)|feminist|women's rightist|libber|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+women's rightist|1
+(noun)|feminist|women's liberationist|libber|reformer (generic term)|reformist (generic term)|crusader (generic term)|social reformer (generic term)|meliorist (generic term)
+won|3
+(adj)|lost (antonym)
+(noun)|South Korean won|South Korean monetary unit (generic term)
+(noun)|North Korean won|North Korean monetary unit (generic term)
+won-lost record|1
+(noun)|record (generic term)|record book (generic term)|book (generic term)
+won ton|2
+(noun)|wonton|dumpling (generic term)|dumplings (generic term)
+(noun)|wonton|wonton soup|soup (generic term)
+wonder|6
+(noun)|wonderment|admiration|astonishment (generic term)|amazement (generic term)
+(noun)|marvel|happening (generic term)|occurrence (generic term)|occurrent (generic term)|natural event (generic term)
+(noun)|curiosity|cognitive state (generic term)|state of mind (generic term)
+(verb)|inquire|enquire|question (generic term)|query (generic term)
+(verb)|question|chew over (generic term)|think over (generic term)|meditate (generic term)|ponder (generic term)|excogitate (generic term)|contemplate (generic term)|muse (generic term)|reflect (generic term)|mull (generic term)|mull over (generic term)|ruminate (generic term)|speculate (generic term)
+(verb)|marvel|react (generic term)|respond (generic term)
+wonder-struck|1
+(adj)|affected (similar term)
+wonder bean|1
+(noun)|jack bean|giant stock bean|Canavalia ensiformis|vine (generic term)
+wonder boy|1
+(noun)|golden boy|man (generic term)|adult male (generic term)
+wonder child|1
+(noun)|child prodigy|infant prodigy|prodigy (generic term)|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+wonder flower|1
+(noun)|chincherinchee|Ornithogalum thyrsoides|star-of-Bethlehem (generic term)
+wonder woman|1
+(noun)|woman (generic term)|adult female (generic term)
+wonderberry|1
+(noun)|garden huckleberry|sunberry|Solanum nigrum guineese|Solanum melanocerasum|Solanum burbankii|black nightshade (generic term)|common nightshade (generic term)|poisonberry (generic term)|poison-berry (generic term)|Solanum nigrum (generic term)
+wonderer|2
+(noun)|intellectual (generic term)|intellect (generic term)
+(noun)|marveller|admirer (generic term)
+wonderful|1
+(adj)|fantastic|grand|howling|marvelous|marvellous|rattling|terrific|tremendous|wondrous|extraordinary (similar term)
+wonderfully|1
+(adv)|wondrous|wondrously|superbly|toppingly|marvellously|terrifically|marvelously
+wonderfulness|1
+(noun)|admirability|admirableness|excellence (generic term)
+wondering|1
+(adj)|inquisitive|speculative|questioning|curious (similar term)
+wonderingly|1
+(adv)|questioningly
+wonderland|2
+(noun)|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)
+(noun)|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+wonderment|1
+(noun)|wonder|admiration|astonishment (generic term)|amazement (generic term)
+wonderworking|1
+(adj)|extraordinary (similar term)
+wondrous|2
+(adj)|fantastic|grand|howling|marvelous|marvellous|rattling|terrific|tremendous|wonderful|extraordinary (similar term)
+(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 (generic term)|scholar (generic term)|assimilator (generic term)
+wonky|2
+(adj)|askew|awry|cockeyed|lopsided|skew-whiff|crooked (similar term)
+(adj)|rickety|shaky|wobbly|unstable (similar term)
+wont|2
+(noun)|habit|custom (generic term)|tradition (generic term)
+(noun)|habit|use|custom (generic term)|usage (generic term)|usance (generic term)
+wont to|1
+(adj)|used to|accustomed (similar term)
+wonted|1
+(adj)|accustomed|customary|habitual|usual (similar term)
+wonton|2
+(noun)|won ton|dumpling (generic term)|dumplings (generic term)
+(noun)|won ton|wonton soup|soup (generic term)
+wonton soup|1
+(noun)|won ton|wonton|soup (generic term)
+woo|2
+(verb)|court
+(verb)|court|romance|solicit|act (generic term)|move (generic term)
+wood|8
+(noun)|plant material (generic term)
+(noun)|forest|woods|vegetation (generic term)|flora (generic term)|botany (generic term)
+(noun)|Wood|Natalie Wood|actress (generic term)
+(noun)|Wood|Sir Henry Wood|Sir Henry Joseph Wood|conductor (generic term)|music director (generic term)|director (generic term)
+(noun)|Wood|Mrs. Henry Wood|Ellen Price Wood|writer (generic term)|author (generic term)
+(noun)|Wood|Grant Wood|painter (generic term)
+(noun)|woodwind|woodwind instrument|wind instrument (generic term)|wind (generic term)
+(noun)|golf club (generic term)|golf-club (generic term)|club (generic term)
+wood's alloy|1
+(noun)|Wood's metal|Wood's alloy|alloy (generic term)|metal (generic term)
+wood's metal|1
+(noun)|Wood's metal|Wood's alloy|alloy (generic term)|metal (generic term)
+wood-creeper|1
+(noun)|woodhewer|woodcreeper|tree creeper|tyrannid (generic term)
+wood-fern|1
+(noun)|wood fern|woodfern|fern (generic term)
+wood-frog|1
+(noun)|wood frog|Rana sylvatica|true frog (generic term)|ranid (generic term)
+wood-rat|1
+(noun)|wood rat|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+wood-sorrel family|1
+(noun)|Oxalidaceae|family Oxalidaceae|rosid dicot family (generic term)
+wood alcohol|1
+(noun)|methanol|methyl alcohol|wood spirit|alcohol (generic term)|fuel (generic term)
+wood anemone|2
+(noun)|snowdrop|Anemone quinquefolia|anemone (generic term)|windflower (generic term)
+(noun)|Anemone nemorosa|anemone (generic term)|windflower (generic term)
+wood ant|1
+(noun)|Formica rufa|ant (generic term)|emmet (generic term)|pismire (generic term)
+wood aster|1
+(noun)|aster (generic term)
+wood avens|1
+(noun)|herb bennet|cloveroot|clover-root|Geum urbanum|avens (generic term)
+wood block|1
+(noun)|woodcut|wood engraving|engraving (generic term)
+wood chisel|1
+(noun)|chisel (generic term)
+wood coal|2
+(noun)|lignite|brown coal|coal (generic term)|humate (generic term)
+(noun)|charcoal|fuel (generic term)|carbon (generic term)|C (generic term)|atomic number 6 (generic term)
+wood cudweed|1
+(noun)|chafeweed|Gnaphalium sylvaticum|cudweed (generic term)
+wood drake|1
+(noun)|wood duck (generic term)|summer duck (generic term)|wood widgeon (generic term)|Aix sponsa (generic term)
+wood duck|1
+(noun)|summer duck|wood widgeon|Aix sponsa|duck (generic term)
+wood engraving|2
+(noun)|woodcut|engraving (generic term)
+(noun)|woodcut|wood block|engraving (generic term)
+wood fern|1
+(noun)|wood-fern|woodfern|fern (generic term)
+wood file|1
+(noun)|rasp|file (generic term)
+wood frog|1
+(noun)|wood-frog|Rana sylvatica|true frog (generic term)|ranid (generic term)
+wood garlic|1
+(noun)|wild garlic|Ramsons|Allium ursinum|alliaceous plant (generic term)
+wood grain|1
+(noun)|woodgrain|woodiness|grain (generic term)
+wood hen|1
+(noun)|weka|maori hen|rail (generic term)
+wood hoopoe|1
+(noun)|coraciiform bird (generic term)
+wood horsetail|1
+(noun)|Equisetum Sylvaticum|horsetail (generic term)
+wood hyacinth|1
+(noun)|wild hyacinth|bluebell|harebell|Hyacinthoides nonscripta|Scilla nonscripta|liliaceous plant (generic term)
+wood ibis|2
+(noun)|wood stork|Ibis ibis|ibis (generic term)
+(noun)|wood stork|flinthead|Mycteria americana|stork (generic term)
+wood laurel|2
+(noun)|spurge laurel|Daphne laureola|daphne (generic term)
+(noun)|mountain laurel|American laurel|calico bush|Kalmia latifolia|kalmia (generic term)
+wood lily|2
+(noun)|trillium|wake-robin|liliaceous plant (generic term)
+(noun)|Lilium philadelphicum|lily (generic term)
+wood meadowgrass|1
+(noun)|Poa nemoralis|Agrostis alba|meadowgrass (generic term)|meadow grass (generic term)
+wood mint|1
+(noun)|herb (generic term)|herbaceous plant (generic term)
+wood mouse|1
+(noun)|mouse (generic term)
+wood nettle|1
+(noun)|Laportea canadensis|nettle (generic term)
+wood nymph|1
+(noun)|dryad|nymph (generic term)
+wood pewee|1
+(noun)|pewee|peewee|peewit|pewit|Contopus virens|New World flycatcher (generic term)|flycatcher (generic term)|tyrant flycatcher (generic term)|tyrant bird (generic term)
+wood pigeon|1
+(noun)|ringdove|cushat|Columba palumbus|pigeon (generic term)
+wood poppy|1
+(noun)|celandine poppy|Stylophorum diphyllum|poppy (generic term)
+wood pulp|1
+(noun)|pulp (generic term)
+wood pussy|1
+(noun)|skunk|polecat|musteline mammal (generic term)|mustelid (generic term)|musteline (generic term)
+wood rabbit|1
+(noun)|cottontail|cottontail rabbit|rabbit (generic term)|coney (generic term)|cony (generic term)
+wood rat|1
+(noun)|wood-rat|rodent (generic term)|gnawer (generic term)|gnawing animal (generic term)
+wood sage|2
+(noun)|Teucrium scorodonia|germander (generic term)
+(noun)|American germander|Teucrium canadense|germander (generic term)
+wood shavings|1
+(noun)|excelsior|packing material (generic term)|packing (generic term)|wadding (generic term)
+wood sorrel|1
+(noun)|oxalis|sorrel|herb (generic term)|herbaceous plant (generic term)
+wood spirit|1
+(noun)|methanol|methyl alcohol|wood alcohol|alcohol (generic term)|fuel (generic term)
+wood spurge|1
+(noun)|Euphorbia amygdaloides|spurge (generic term)
+wood stork|2
+(noun)|wood ibis|Ibis ibis|ibis (generic term)
+(noun)|wood ibis|flinthead|Mycteria americana|stork (generic term)
+wood strawberry|1
+(noun)|wild strawberry|Fragaria vesca|strawberry (generic term)
+wood sugar|1
+(noun)|xylose|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+wood swallow|1
+(noun)|swallow shrike|oscine (generic term)|oscine bird (generic term)
+wood tar|1
+(noun)|natural resin (generic term)
+wood thrush|1
+(noun)|Hylocichla mustelina|thrush (generic term)
+wood tick|1
+(noun)|American dog tick|Dermacentor variabilis|hard tick (generic term)|ixodid (generic term)
+wood vinegar|1
+(noun)|pyroligneous acid|liquid (generic term)
+wood violet|2
+(noun)|hedge violet|Viola sylvatica|Viola reichenbachiana|violet (generic term)
+(noun)|bird's-foot violet|pansy violet|Johnny-jump-up|Viola pedata|violet (generic term)
+wood vise|1
+(noun)|woodworking vise|shoulder vise|vise (generic term)|bench vise (generic term)
+wood warbler|2
+(noun)|New World warbler|warbler (generic term)
+(noun)|Phylloscopus sibilatrix|Old World warbler (generic term)|true warbler (generic term)
+wood widgeon|1
+(noun)|wood duck|summer duck|Aix sponsa|duck (generic term)
+woodbine|2
+(noun)|Virginia creeper|American ivy|Parthenocissus quinquefolia|vine (generic term)
+(noun)|Lonicera periclymenum|honeysuckle (generic term)
+woodborer|1
+(noun)|borer|invertebrate (generic term)
+woodbury|1
+(noun)|Woodbury|Helen Laura Sumner Woodbury|economist (generic term)|economic expert (generic term)
+woodcarver|1
+(noun)|carver|woodworker (generic term)|woodsman (generic term)|woodman (generic term)
+woodcarving|1
+(noun)|carving (generic term)
+woodchuck|1
+(noun)|groundhog|Marmota monax|marmot (generic term)
+woodcock|1
+(noun)|shorebird (generic term)|shore bird (generic term)|limicoline bird (generic term)
+woodcock snipe|2
+(noun)|great snipe|Gallinago media|snipe (generic term)
+(noun)|American woodcock|Philohela minor|woodcock (generic term)
+woodcraft|2
+(noun)|experience (generic term)
+(noun)|craft (generic term)|craftsmanship (generic term)|workmanship (generic term)
+woodcreeper|1
+(noun)|woodhewer|wood-creeper|tree creeper|tyrannid (generic term)
+woodcut|2
+(noun)|wood engraving|engraving (generic term)
+(noun)|wood block|wood engraving|engraving (generic term)
+woodcutter|1
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+wooded|1
+(adj)|arboraceous (similar term)|arboreous (similar term)|woodsy (similar term)|woody (similar term)|bosky (similar term)|brushy (similar term)|braky (similar term)|brambly (similar term)|forested (similar term)|jungly (similar term)|overgrown (similar term)|rushy (similar term)|scrabbly (similar term)|scrubby (similar term)|sylvan (similar term)|silvan (similar term)|thicket-forming (similar term)|timbered (similar term)|woodsy (similar term)|uncleared (related term)|unwooded (antonym)
+wooden|2
+(adj)|woody (similar term)
+(adj)|awkward (similar term)
+wooden-headed|1
+(adj)|blockheaded|boneheaded|fatheaded|loggerheaded|thick|thickheaded|thick-skulled|stupid (similar term)
+wooden horse|1
+(noun)|Trojan Horse|Wooden Horse|figure (generic term)
+wooden leg|1
+(noun)|peg|leg|pegleg|prosthesis (generic term)|prosthetic device (generic term)
+wooden shoe|1
+(noun)|sabot|shoe (generic term)
+wooden spoon|2
+(noun)|booby prize (generic term)
+(noun)|spoon (generic term)|woodenware (generic term)
+woodenly|1
+(adv)|ungraciously|ungracefully|gracelessly|without graciousness|gracefully (antonym)|graciously (antonym)
+woodenness|1
+(noun)|awkwardness (generic term)|clumsiness (generic term)|gracelessness (generic term)|stiffness (generic term)
+woodenware|1
+(noun)|ware (generic term)
+woodfern|1
+(noun)|wood fern|wood-fern|fern (generic term)
+woodgrain|1
+(noun)|wood grain|woodiness|grain (generic term)
+woodgraining|1
+(noun)|graining|grain (generic term)
+woodhewer|1
+(noun)|woodcreeper|wood-creeper|tree creeper|tyrannid (generic term)
+woodhull|1
+(noun)|Woodhull|Victoria Clafin Woodhull|suffragist (generic term)
+woodiness|2
+(noun)|woodsiness|quality (generic term)
+(noun)|wood grain|woodgrain|grain (generic term)
+woodland|1
+(noun)|forest|timberland|timber|land (generic term)|dry land (generic term)|earth (generic term)|ground (generic term)|solid ground (generic term)|terra firma (generic term)|biome (generic term)
+woodland caribou|1
+(noun)|Rangifer caribou|caribou (generic term)|reindeer (generic term)|Greenland caribou (generic term)|Rangifer tarandus (generic term)
+woodland oxeye|1
+(noun)|Buphthalmum salicifolium|oxeye (generic term)
+woodland star|1
+(noun)|Lithophragma affine|Lithophragma affinis|Tellima affinis|flower (generic term)
+woodland white violet|1
+(noun)|sweet white violet|white violet|Viola blanda|violet (generic term)
+woodlet|1
+(noun)|grove|orchard|plantation|garden (generic term)
+woodlouse|1
+(noun)|slater|isopod (generic term)
+woodman|2
+(noun)|woodsman|rustic (generic term)
+(noun)|woodworker|woodsman|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+woodpecker|1
+(noun)|peckerwood|pecker|piciform bird (generic term)
+woodpile|1
+(noun)|pile (generic term)|heap (generic term)|mound (generic term)|agglomerate (generic term)|cumulation (generic term)|cumulus (generic term)
+woodrow charles herman|1
+(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician (generic term)|jazzman (generic term)|bandleader (generic term)
+woodrow wilson|1
+(noun)|Wilson|Woodrow Wilson|Thomas Woodrow Wilson|President Wilson|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+woodrow wilson guthrie|1
+(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+woodruff|2
+(noun)|sweet woodruff|waldmeister|fragrant bedstraw|Galium odoratum|Asperula odorata|bedstraw (generic term)
+(noun)|subshrub (generic term)|suffrutex (generic term)
+woods|1
+(noun)|forest|wood|vegetation (generic term)|flora (generic term)|botany (generic term)
+woodscrew|1
+(noun)|screw (generic term)
+woodshed|1
+(noun)|shed (generic term)
+woodsia|1
+(noun)|fern (generic term)
+woodsia alpina|1
+(noun)|Alpine woodsia|northern woodsia|flower-cup fern|Woodsia alpina|woodsia (generic term)
+woodsia glabella|1
+(noun)|smooth woodsia|Woodsia glabella|woodsia (generic term)
+woodsia ilvensis|1
+(noun)|rusty woodsia|fragrant woodsia|oblong woodsia|Woodsia ilvensis|woodsia (generic term)
+woodsiness|1
+(noun)|woodiness|quality (generic term)
+woodsman|2
+(noun)|woodman|rustic (generic term)
+(noun)|woodworker|woodman|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+woodsy|2
+(adj)|wooded (similar term)
+(adj)|arboraceous|arboreous|woody|wooded (similar term)
+woodward|2
+(noun)|Woodward|C. Vann Woodward|Comer Vann Woodward|historian (generic term)|historiographer (generic term)
+(noun)|Woodward|Bob Woodward|Robert Woodward|Robert Burns Woodward|chemist (generic term)
+woodwardia|1
+(noun)|Woodwardia|genus Woodwardia|fern genus (generic term)
+woodwardia virginica|1
+(noun)|Virginia chain fern|Woodwardia virginica|chain fern (generic term)
+woodwaxen|1
+(noun)|dyer's greenweed|dyer's-broom|dyeweed|greenweed|whin|woadwaxen|Genista tinctoria|broom (generic term)
+woodwind|1
+(noun)|woodwind instrument|wood|wind instrument (generic term)|wind (generic term)
+woodwind family|1
+(noun)|class (generic term)|category (generic term)|family (generic term)
+woodwind instrument|1
+(noun)|woodwind|wood|wind instrument (generic term)|wind (generic term)
+woodwork|2
+(noun)|work (generic term)|piece of work (generic term)
+(noun)|carpentry|woodworking|trade (generic term)|craft (generic term)
+woodworker|1
+(noun)|woodsman|woodman|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+woodworking|1
+(noun)|carpentry|woodwork|trade (generic term)|craft (generic term)
+woodworking plane|1
+(noun)|plane|carpenter's plane|edge tool (generic term)|hand tool (generic term)
+woodworking vise|1
+(noun)|wood vise|shoulder vise|vise (generic term)|bench vise (generic term)
+woodworm|1
+(noun)|worm (generic term)
+woody|3
+(adj)|ashen (similar term)|beechen (similar term)|birch (similar term)|birchen (similar term)|birken (similar term)|cedarn (similar term)|ligneous (similar term)|oaken (similar term)|suffrutescent (similar term)|wooden (similar term)|nonwoody (antonym)
+(adj)|arboraceous|arboreous|woodsy|wooded (similar term)
+(adj)|lignified|hard (similar term)
+woody-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+woody allen|1
+(noun)|Allen|Woody Allen|Allen Stewart Konigsberg|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)|actor (generic term)|histrion (generic term)|player (generic term)|thespian (generic term)|role player (generic term)
+woody guthrie|1
+(noun)|Guthrie|Woody Guthrie|Woodrow Wilson Guthrie|folk singer (generic term)|jongleur (generic term)|minstrel (generic term)|poet-singer (generic term)|troubadour (generic term)|songwriter (generic term)|songster (generic term)|ballad maker (generic term)
+woody herman|1
+(noun)|Herman|Woody Herman|Woodrow Charles Herman|jazz musician (generic term)|jazzman (generic term)|bandleader (generic term)
+woody nightshade|1
+(noun)|bittersweet|bittersweet nightshade|climbing nightshade|deadly nightshade|poisonous nightshade|Solanum dulcamara|nightshade (generic term)
+woody pear|1
+(noun)|native pear|Xylomelum pyriforme|shrub (generic term)|bush (generic term)
+woody plant|1
+(noun)|ligneous plant|vascular plant (generic term)|tracheophyte (generic term)
+wooer|1
+(noun)|suitor|suer|admirer (generic term)|adorer (generic term)
+woof|1
+(noun)|weft|filling|pick|thread (generic term)|yarn (generic term)
+woofer|1
+(noun)|loudspeaker (generic term)|speaker (generic term)|speaker unit (generic term)|loudspeaker system (generic term)|speaker system (generic term)
+wooing|1
+(noun)|courtship|courting|suit|entreaty (generic term)|prayer (generic term)|appeal (generic term)
+wool|3
+(noun)|woolen|woollen|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|animal fiber (generic term)|animal fibre (generic term)
+(noun)|fleece|coat (generic term)|pelage (generic term)
+wool fat|1
+(noun)|lanolin|wool grease|animal oil (generic term)
+wool grass|2
+(noun)|Scirpus cyperinus|sedge (generic term)
+(noun)|Ravenna grass|Erianthus ravennae|plume grass (generic term)
+wool grease|1
+(noun)|lanolin|wool fat|animal oil (generic term)
+wool oil|1
+(noun)|animal oil (generic term)
+wool stapler|2
+(noun)|distributor (generic term)|distributer (generic term)
+(noun)|woolsorter|grader (generic term)
+woolen|2
+(adj)|woollen|fabric|cloth|material|textile (related term)
+(noun)|wool|woollen|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+woolf|1
+(noun)|Woolf|Virginia Woolf|Adeline Virginia Stephen Woolf|writer (generic term)|author (generic term)
+woolgather|1
+(verb)|dream|daydream|stargaze|imagine (generic term)|conceive of (generic term)|ideate (generic term)|envisage (generic term)|dream up (related term)
+woolgatherer|1
+(noun)|daydreamer|idler (generic term)|loafer (generic term)|do-nothing (generic term)|layabout (generic term)|bum (generic term)
+woolgathering|2
+(adj)|dreamy|moony|inattentive (similar term)
+(noun)|dream (generic term)|dreaming (generic term)
+woollcott|1
+(noun)|Woollcott|Alexander Woollcott|drama critic (generic term)|theater critic (generic term)|journalist (generic term)
+woollen|2
+(adj)|woolen|fabric|cloth|material|textile (related term)
+(noun)|wool|woolen|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+woolley|1
+(noun)|Woolley|Sir Leonard Woolley|Sir Charles Leonard Woolley|archeologist (generic term)|archaeologist (generic term)
+woolly|4
+(adj)|flocculent|wooly|soft (similar term)
+(adj)|addled|befuddled|muddled|muzzy|wooly|woolly-headed|wooly-minded|confused (similar term)
+(adj)|wooly|wooly-haired|woolly-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+(adj)|lanate|hairy (similar term)|haired (similar term)|hirsute (similar term)
+woolly-haired|1
+(adj)|wooly|woolly|wooly-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+woolly-headed|1
+(adj)|addled|befuddled|muddled|muzzy|woolly|wooly|wooly-minded|confused (similar term)
+woolly-stemmed|1
+(adj)|caulescent (similar term)|cauline (similar term)|stemmed (similar term)
+woolly adelgid|1
+(noun)|adelgid (generic term)
+woolly alder aphid|1
+(noun)|Prociphilus tessellatus|woolly aphid (generic term)|woolly plant louse (generic term)
+woolly aphid|1
+(noun)|woolly plant louse|aphid (generic term)
+woolly apple aphid|1
+(noun)|American blight|Eriosoma lanigerum|woolly aphid (generic term)|woolly plant louse (generic term)
+woolly bear|1
+(noun)|woolly bear caterpillar|caterpillar (generic term)
+woolly bear caterpillar|1
+(noun)|woolly bear|caterpillar (generic term)
+woolly bear moth|1
+(noun)|woolly bear (generic term)|woolly bear caterpillar (generic term)
+woolly daisy|1
+(noun)|dwarf daisy|Antheropeas wallacei|Eriophyllum wallacei|wildflower (generic term)|wild flower (generic term)
+woolly indris|1
+(noun)|Avahi laniger|lemur (generic term)
+woolly mammoth|1
+(noun)|northern mammoth|Mammuthus primigenius|mammoth (generic term)
+woolly manzanita|1
+(noun)|downy manzanita|Arctostaphylos tomentosa|manzanita (generic term)
+woolly monkey|1
+(noun)|New World monkey (generic term)|platyrrhine (generic term)|platyrrhinian (generic term)
+woolly mullein|1
+(noun)|common mullein|great mullein|Aaron's rod|flannel mullein|torch|Verbascum thapsus|mullein (generic term)|flannel leaf (generic term)|velvet plant (generic term)
+woolly plant louse|1
+(noun)|woolly aphid|aphid (generic term)
+woolly rhinoceros|1
+(noun)|Rhinoceros antiquitatis|rhinoceros (generic term)|rhino (generic term)
+woolly sunflower|1
+(noun)|wildflower (generic term)|wild flower (generic term)
+woolly thistle|2
+(noun)|cotton thistle|Scotch thistle|Onopordum acanthium|Onopordon acanthium|thistle (generic term)
+(noun)|Cirsium flodmanii|plume thistle (generic term)|plumed thistle (generic term)
+woolsorter|1
+(noun)|wool stapler|grader (generic term)
+woolsorter's disease|1
+(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's pneumonia|anthrax (generic term)
+woolsorter's pneumonia|1
+(noun)|pulmonary anthrax|inhalation anthrax|anthrax pneumonia|ragpicker's disease|ragsorter's disease|woolsorter's disease|anthrax (generic term)
+woolworth|1
+(noun)|Woolworth|Frank Winfield Woolworth|businessman (generic term)|man of affairs (generic term)
+wooly|3
+(adj)|flocculent|woolly|soft (similar term)
+(adj)|addled|befuddled|muddled|muzzy|woolly|woolly-headed|wooly-minded|confused (similar term)
+(adj)|woolly|wooly-haired|woolly-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+wooly-haired|1
+(adj)|wooly|woolly|woolly-haired|hairy (similar term)|haired (similar term)|hirsute (similar term)
+wooly-minded|1
+(adj)|addled|befuddled|muddled|muzzy|woolly|wooly|woolly-headed|confused (similar term)
+wooly blue curls|1
+(noun)|black sage|California romero|Trichostema lanatum|blue curls (generic term)
+wooly lip fern|1
+(noun)|hairy lip fern|Cheilanthes lanosa|lip fern (generic term)|lipfern (generic term)
+woosh|1
+(verb)|whoosh|move (generic term)|displace (generic term)
+woozy|1
+(adj)|dizzy|giddy|vertiginous|ill (similar term)|sick (similar term)
+wop|1
+(noun)|dago|ginzo|Guinea|greaseball|Italian (generic term)
+worcester|2
+(noun)|Worcester|Joseph Emerson Worcester|lexicographer (generic term)|lexicologist (generic term)
+(noun)|Worcester|city (generic term)|metropolis (generic term)|urban center (generic term)
+worcester sauce|1
+(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce (generic term)
+worcestershire|1
+(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce (generic term)
+worcestershire sauce|1
+(noun)|Worcester sauce|Worcestershire|Worcestershire sauce|sauce (generic term)
+word|11
+(noun)|language unit (generic term)|linguistic unit (generic term)
+(noun)|statement (generic term)
+(noun)|news|intelligence|tidings|information (generic term)|info (generic term)
+(noun)|Son|Word|Logos|hypostasis (generic term)|hypostasis of Christ (generic term)
+(noun)|parole|word of honor|promise (generic term)
+(noun)|password|watchword|parole|countersign|positive identification (generic term)|secret (generic term)|arcanum (generic term)
+(noun)|discussion|give-and-take|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|order (generic term)
+(noun)|computer memory unit (generic term)
+(verb)|give voice|formulate|phrase|articulate|express (generic term)|show (generic term)|evince (generic term)
+word-blind|1
+(adj)|alexic|aphasia (related term)
+word-of-mouth|1
+(adj)|viva-voce|spoken (similar term)
+word-painter|1
+(noun)|writer (generic term)|author (generic term)
+word-painting|1
+(noun)|word picture|delineation|depiction|picture|characterization|characterisation|description (generic term)|verbal description (generic term)
+word-perfect|1
+(adj)|letter-perfect|correct (similar term)|right (similar term)
+word-splitting|1
+(noun)|hairsplitting|differentiation (generic term)|distinction (generic term)
+word-worship|1
+(noun)|verbolatry|grammatolatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+word accent|1
+(noun)|word stress|stress (generic term)|emphasis (generic term)|accent (generic term)
+word blindness|1
+(noun)|visual aphasia|alexia|aphasia (generic term)
+word class|1
+(noun)|part of speech|form class|grammatical category (generic term)|syntactic category (generic term)
+word deafness|1
+(noun)|auditory aphasia|acoustic aphasia|aphasia (generic term)
+word division|1
+(noun)|hyphenation|division (generic term)
+word finder|1
+(noun)|wordfinder|thesaurus (generic term)|synonym finder (generic term)
+word for word|1
+(adv)|verbatim
+word form|1
+(noun)|form|signifier|descriptor|word (generic term)
+word game|1
+(noun)|parlor game (generic term)|parlour game (generic term)
+word meaning|1
+(noun)|word sense|acceptation|sense (generic term)|signified (generic term)
+word of advice|1
+(noun)|admonition|monition|warning|advice (generic term)
+word of farewell|1
+(noun)|farewell|acknowledgment (generic term)|acknowledgement (generic term)
+word of god|3
+(noun)|Word of God|manifestation (generic term)
+(noun)|Bible|Christian Bible|Book|Good Book|Holy Scripture|Holy Writ|Scripture|Word of God|Word|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+(noun)|Word of God|Gospel (generic term)|Gospels (generic term)|evangel (generic term)
+word of honor|1
+(noun)|parole|word|promise (generic term)
+word of mouth|1
+(noun)|grapevine|pipeline|gossip (generic term)|comment (generic term)|scuttlebutt (generic term)
+word order|1
+(noun)|ordering (generic term)|order (generic term)|ordination (generic term)
+word picture|1
+(noun)|word-painting|delineation|depiction|picture|characterization|characterisation|description (generic term)|verbal description (generic term)
+word play|1
+(noun)|play (generic term)|frolic (generic term)|romp (generic term)|gambol (generic term)|caper (generic term)
+word processing|1
+(noun)|data processing (generic term)
+word processing system|1
+(noun)|word processor|application (generic term)|application program (generic term)|applications programme (generic term)
+word processor|1
+(noun)|word processing system|application (generic term)|application program (generic term)|applications programme (generic term)
+word salad|1
+(noun)|incoherence (generic term)|incoherency (generic term)|unintelligibility (generic term)
+word sense|1
+(noun)|word meaning|acceptation|sense (generic term)|signified (generic term)
+word square|1
+(noun)|acrostic|problem (generic term)
+word stress|1
+(noun)|word accent|stress (generic term)|emphasis (generic term)|accent (generic term)
+word string|1
+(noun)|string of words|linguistic string|string (generic term)|language (generic term)|linguistic communication (generic term)
+word structure|1
+(noun)|morphology|sound structure|syllable structure|structure (generic term)
+wordbook|1
+(noun)|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+wordfinder|1
+(noun)|word finder|thesaurus (generic term)|synonym finder (generic term)
+wordily|1
+(adv)|verbosely|windily|long-windedly
+wordiness|1
+(noun)|prolixity|prolixness|windiness|long-windedness|verboseness (generic term)|verbosity (generic term)
+wording|1
+(noun)|diction|phrasing|phraseology|choice of words|verbiage|formulation (generic term)|expression (generic term)
+wordless|1
+(adj)|mute|tongueless|unspoken|inarticulate (similar term)|unarticulate (similar term)
+wordlessly|1
+(adv)|mutely|silently|taciturnly
+wordmonger|1
+(noun)|writer (generic term)|author (generic term)
+wordnet|2
+(noun)|lexical database (generic term)
+(noun)|WordNet|Princeton WordNet|lexical database (generic term)
+wordplay|1
+(noun)|pun|punning|paronomasia|fun (generic term)|play (generic term)|sport (generic term)
+words|5
+(noun)|speech (generic term)|speech communication (generic term)|spoken communication (generic term)|spoken language (generic term)|language (generic term)|voice communication (generic term)|oral communication (generic term)
+(noun)|lyric|language|text (generic term)|textual matter (generic term)
+(noun)|language (generic term)|linguistic communication (generic term)
+(noun)|quarrel|wrangle|row|run-in|dustup|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|actor's line|speech|line (generic term)
+words per minute|1
+(noun)|wpm|rate (generic term)
+wordsmith|1
+(noun)|writer (generic term)|author (generic term)
+wordsworth|1
+(noun)|Wordsworth|William Wordsworth|poet (generic term)
+wordsworthian|1
+(adj)|Wordsworthian|poet (related term)
+wordy|1
+(adj)|long-winded|tedious|verbose|windy|prolix (similar term)
+work|33
+(noun)|activity (generic term)
+(noun)|piece of work|product (generic term)|production (generic term)
+(noun)|employment|occupation (generic term)|business (generic term)|job (generic term)|line of work (generic term)|line (generic term)
+(noun)|study|learning (generic term)|acquisition (generic term)
+(noun)|oeuvre|body of work|end product (generic term)|output (generic term)
+(noun)|workplace|geographic point (generic term)|geographical point (generic term)
+(noun)|energy (generic term)
+(verb)|idle (antonym)
+(verb)|do work
+(verb)|act|succeed (generic term)|win (generic term)|come through (generic term)|bring home the bacon (generic term)|deliver the goods (generic term)
+(verb)|function|operate|go|run|malfunction (antonym)
+(verb)|work on|process|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+(verb)|exercise|work out|work (generic term)|put to work (generic term)
+(verb)|make|pass (generic term)|go through (generic term)|go across (generic term)
+(verb)|work (generic term)
+(verb)|go (generic term)|proceed (generic term)|move (generic term)
+(verb)|bring|play|wreak|make for|make (generic term)|create (generic term)|bring on (related term)|bring off (related term)|bring up (related term)
+(verb)|put to work|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|cultivate|crop|fix (generic term)|prepare (generic term)|set up (generic term)|ready (generic term)|gear up (generic term)|set (generic term)
+(verb)|be (generic term)
+(verb)|influence|act upon|affect (generic term)|impact (generic term)|bear upon (generic term)|bear on (generic term)|touch on (generic term)|touch (generic term)
+(verb)|operate (generic term)|run (generic term)
+(verb)|manage (generic term)|deal (generic term)|care (generic term)|handle (generic term)
+(verb)|stimulate (generic term)|excite (generic term)|stir (generic term)
+(verb)|capture (generic term)|enamour (generic term)|trance (generic term)|catch (generic term)|becharm (generic term)|enamor (generic term)|captivate (generic term)|beguile (generic term)|charm (generic term)|fascinate (generic term)|bewitch (generic term)|entrance (generic term)|enchant (generic term)
+(verb)|shape|form|mold|mould|forge|create from raw material (generic term)|create from raw stuff (generic term)
+(verb)|move (generic term)|displace (generic term)
+(verb)|knead|manipulate (generic term)
+(verb)|exploit|use (generic term)|utilize (generic term)|utilise (generic term)|apply (generic term)|employ (generic term)
+(verb)|solve|work out|figure out|puzzle out|lick|understand (generic term)
+(verb)|ferment|convert (generic term)
+(verb)|sour|turn|ferment|change state (generic term)|turn (generic term)
+(verb)|become (generic term)|go (generic term)|get (generic term)
+work-board|1
+(noun)|workboard|board (generic term)
+work-clothes|1
+(noun)|work-clothing|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+work-clothing|1
+(noun)|work-clothes|clothing (generic term)|article of clothing (generic term)|vesture (generic term)|wear (generic term)|wearable (generic term)|habiliment (generic term)
+work-in|1
+(noun)|demonstration (generic term)|manifestation (generic term)
+work-shirt|1
+(noun)|shirt (generic term)|workwear (generic term)
+work-shy|1
+(adj)|faineant|indolent|lazy|otiose|slothful|idle (similar term)
+work-study program|1
+(noun)|education (generic term)|instruction (generic term)|teaching (generic term)|pedagogy (generic term)|didactics (generic term)|educational activity (generic term)
+work animal|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+work at|1
+(verb)|work on|work (generic term)
+work bench|1
+(noun)|workbench|bench|worktable (generic term)|work table (generic term)
+work camp|1
+(noun)|prison camp|prison farm|camp (generic term)
+work day|1
+(noun)|workday|working day|weekday (generic term)|rest day (antonym)
+work flow|1
+(noun)|workflow|advancement (generic term)|progress (generic term)
+work force|1
+(noun)|workforce|manpower|hands|men|force (generic term)|personnel (generic term)
+work in|1
+(verb)|add (generic term)
+work in progress|1
+(noun)|work (generic term)|piece of work (generic term)
+work of art|1
+(noun)|art (generic term)|fine art (generic term)
+work off|1
+(verb)|get rid of (generic term)|remove (generic term)
+work on|2
+(verb)|work at|work (generic term)
+(verb)|work|process|transform (generic term)|transmute (generic term)|transubstantiate (generic term)
+work out|8
+(verb)|work up|develop (generic term)|make grow (generic term)
+(verb)|turn out (generic term)|come out (generic term)
+(verb)|elaborate|develop (generic term)|make grow (generic term)
+(verb)|exercise
+(verb)|total (generic term)|number (generic term)|add up (generic term)|come (generic term)|amount (generic term)
+(verb)|calculate|cipher|cypher|compute|reckon|figure|reason (generic term)|figure out (related term)|reckon (related term)
+(verb)|solve|figure out|puzzle out|lick|work|understand (generic term)
+(verb)|exercise|work|work (generic term)|put to work (generic term)
+work over|1
+(verb)|beat|beat up
+work papers|1
+(noun)|working papers|work permit|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+work party|1
+(noun)|gang|crew|unit (generic term)|social unit (generic term)
+work permit|1
+(noun)|working papers|work papers|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+work shift|1
+(noun)|shift|duty period|hours (generic term)
+work shoe|1
+(noun)|brogan|brogue|clodhopper|shoe (generic term)
+work song|1
+(noun)|song (generic term)|vocal (generic term)
+work stoppage|1
+(noun)|strike|job action (generic term)
+work study|1
+(noun)|time and motion study|time-and-motion study|time-motion study|motion study|time study|examination (generic term)|scrutiny (generic term)
+work surface|1
+(noun)|surface (generic term)
+work table|1
+(noun)|worktable|table (generic term)
+work through|1
+(verb)|run through|go through|work (generic term)
+work time|1
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)|time off (antonym)
+work to rule|1
+(noun)|job action (generic term)
+work unit|1
+(noun)|heat unit|energy unit|unit of measurement (generic term)|unit (generic term)
+work up|4
+(verb)|build up|build|progress|develop (generic term)
+(verb)|get up|grow (generic term)|develop (generic term)|produce (generic term)|get (generic term)|acquire (generic term)
+(verb)|build up|build|ramp up|increase (generic term)
+(verb)|work out|develop (generic term)|make grow (generic term)
+workable|1
+(adj)|feasible|executable|practicable|viable|possible (similar term)
+workaday|1
+(adj)|everyday|mundane|quotidian|routine|unremarkable|ordinary (similar term)
+workaholic|1
+(noun)|compulsive (generic term)
+workaholism|1
+(noun)|compulsiveness (generic term)|compulsivity (generic term)
+workbag|1
+(noun)|workbasket|workbox|container (generic term)
+workbasket|1
+(noun)|workbox|workbag|container (generic term)
+workbench|1
+(noun)|work bench|bench|worktable (generic term)|work table (generic term)
+workboard|1
+(noun)|work-board|board (generic term)
+workbook|1
+(noun)|book (generic term)
+workbox|1
+(noun)|workbasket|workbag|container (generic term)
+workday|2
+(noun)|working day|work day|weekday (generic term)|rest day (antonym)
+(noun)|working day|day (generic term)
+worked up|1
+(adj)|aroused|emotional|excited|agitated (similar term)
+worker|4
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)|nonworker (antonym)
+(noun)|proletarian|prole|commoner (generic term)|common man (generic term)|common person (generic term)
+(noun)|insect (generic term)
+(noun)|actor|doer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+worker bee|1
+(noun)|worker (generic term)
+workfellow|1
+(noun)|colleague|co-worker|fellow worker|associate (generic term)
+workflow|1
+(noun)|work flow|advancement (generic term)|progress (generic term)
+workforce|1
+(noun)|work force|manpower|hands|men|force (generic term)|personnel (generic term)
+workhorse|2
+(noun)|machine (generic term)
+(noun)|horse (generic term)|Equus caballus (generic term)
+workhouse|2
+(noun)|poorhouse (generic term)
+(noun)|jail (generic term)|jailhouse (generic term)|gaol (generic term)|clink (generic term)|slammer (generic term)|poky (generic term)|pokey (generic term)
+working|6
+(adj)|on the job|employed (similar term)
+(adj)|practical (similar term)
+(adj)|impermanent (similar term)|temporary (similar term)
+(adj)|running|operative|functional|functioning (similar term)
+(adj)|operative (similar term)
+(noun)|workings|excavation (generic term)
+working-class|2
+(adj)|propertyless|wage-earning|blue-collar|lower-class (similar term)|low-class (similar term)
+(adj)|wage-earning|blue-collar (similar term)
+working agreement|1
+(noun)|agreement (generic term)|understanding (generic term)
+working capital|1
+(noun)|capital|assets (generic term)
+working class|1
+(noun)|labor|labour|proletariat|class (generic term)|social class (generic term)|socio-economic class (generic term)
+working day|2
+(noun)|workday|work day|weekday (generic term)|rest day (antonym)
+(noun)|workday|day (generic term)
+working dog|1
+(noun)|dog (generic term)|domestic dog (generic term)|Canis familiaris (generic term)
+working girl|2
+(noun)|worker (generic term)|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+(noun)|prostitute|cocotte|whore|harlot|bawd|tart|cyprian|fancy woman|sporting lady|lady of pleasure|woman of the street|woman (generic term)|adult female (generic term)
+working group|1
+(noun)|working party|unit (generic term)|social unit (generic term)
+working man|1
+(noun)|workman|workingman|working person|employee (generic term)
+working memory|1
+(noun)|memory (generic term)|remembering (generic term)
+working out|1
+(noun)|elaboration|development (generic term)
+working papers|2
+(noun)|record (generic term)
+(noun)|work papers|work permit|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+working party|1
+(noun)|working group|unit (generic term)|social unit (generic term)
+working person|1
+(noun)|workman|workingman|working man|employee (generic term)
+working principle|1
+(noun)|working rule|rule (generic term)|regulation (generic term)
+working rule|1
+(noun)|working principle|rule (generic term)|regulation (generic term)
+workingman|1
+(noun)|workman|working man|working person|employee (generic term)
+workings|2
+(noun)|works|mechanism (generic term)
+(noun)|working|excavation (generic term)
+workload|1
+(noun)|employment (generic term)|work (generic term)
+workman|1
+(noun)|workingman|working man|working person|employee (generic term)
+workmanlike|1
+(adj)|competent (similar term)
+workmanship|1
+(noun)|craft|craftsmanship|skill (generic term)|accomplishment (generic term)|acquirement (generic term)|acquisition (generic term)|attainment (generic term)
+workmate|1
+(noun)|worker (generic term)
+workmen's compensation|1
+(noun)|compensation (generic term)
+workout|1
+(noun)|exercise|exercising|physical exercise|physical exertion|effort (generic term)|elbow grease (generic term)|exertion (generic term)|travail (generic term)|sweat (generic term)
+workout suit|1
+(noun)|sweat suit|sweatsuit|sweats|garment (generic term)
+workpiece|1
+(noun)|work (generic term)|piece of work (generic term)
+workplace|1
+(noun)|work|geographic point (generic term)|geographical point (generic term)
+workroom|1
+(noun)|room (generic term)
+works|4
+(noun)|plant|industrial plant|building complex (generic term)|complex (generic term)
+(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 (generic term)|entireness (generic term)|integrality (generic term)|totality (generic term)
+(noun)|deeds|activity (generic term)
+(noun)|workings|mechanism (generic term)
+works council|1
+(noun)|council (generic term)
+works program|1
+(noun)|program (generic term)|programme (generic term)
+worksheet|2
+(noun)|sheet (generic term)|piece of paper (generic term)|sheet of paper (generic term)
+(noun)|written record (generic term)|written account (generic term)
+workshop|2
+(noun)|shop|workplace (generic term)|work (generic term)
+(noun)|course (generic term)|course of study (generic term)|course of instruction (generic term)|class (generic term)
+workspace|1
+(noun)|space (generic term)
+workstation|1
+(noun)|digital computer (generic term)
+worktable|1
+(noun)|work table|table (generic term)
+workwear|1
+(noun)|apparel (generic term)|wearing apparel (generic term)|dress (generic term)|clothes (generic term)
+workweek|1
+(noun)|week|work time (generic term)
+world|9
+(adj)|global|planetary|worldwide|world-wide|international (similar term)
+(noun)|universe|existence|creation|cosmos|macrocosm|natural object (generic term)
+(noun)|reality|experience (generic term)
+(noun)|domain|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|Earth|globe|terrestrial planet (generic term)
+(noun)|worldly concern|earthly concern|earth|concern (generic term)
+(noun)|part (generic term)|piece (generic term)
+(noun)|populace|public|people (generic term)
+(noun)|human race|humanity|humankind|human beings|humans|mankind|man|homo (generic term)|man (generic term)|human being (generic term)|human (generic term)|group (generic term)|grouping (generic term)
+world-beater|1
+(noun)|king|queen|rival (generic term)|challenger (generic term)|competitor (generic term)|competition (generic term)|contender (generic term)
+world-class|1
+(adj)|first|foremost|best (similar term)
+world-shaking|1
+(adj)|earthshaking|world-shattering|significant (similar term)|important (similar term)
+world-shattering|1
+(adj)|earthshaking|world-shaking|significant (similar term)|important (similar term)
+world-weariness|1
+(noun)|Weltschmerz|melancholy (generic term)
+world-weary|1
+(adj)|bored|tired (similar term)
+world-wide|3
+(adj)|global|planetary|world|worldwide|international (similar term)
+(adj)|worldwide|intercontinental (similar term)
+(adj)|cosmopolitan|ecumenical|oecumenical|general|universal|worldwide|comprehensive (similar term)
+world affairs|1
+(noun)|international affairs|affairs (generic term)
+world bank|1
+(noun)|International Bank for Reconstruction and Development|World Bank|IBRD|United Nations agency (generic term)|UN agency (generic term)
+world council|1
+(noun)|council (generic term)
+world council of churches|1
+(noun)|World Council of Churches|world council (generic term)
+world court|1
+(noun)|International Court of Justice|World Court|court (generic term)|tribunal (generic term)|judicature (generic term)
+world cup|1
+(noun)|World Cup|tournament (generic term)|tourney (generic term)
+world health organization|1
+(noun)|World Health Organization|WHO|United Nations agency (generic term)|UN agency (generic term)
+world meteorological organization|1
+(noun)|World Meteorological Organization|WMO|United Nations agency (generic term)|UN agency (generic term)
+world organisation|1
+(noun)|world organization|international organization|international organisation|global organization|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+world organization|1
+(noun)|world organisation|international organization|international organisation|global organization|alliance (generic term)|coalition (generic term)|alignment (generic term)|alinement (generic term)
+world power|1
+(noun)|major power|great power|power|superpower|state (generic term)|nation (generic term)|country (generic term)|land (generic term)|commonwealth (generic term)|res publica (generic term)|body politic (generic term)
+world premiere|1
+(noun)|performance (generic term)|public presentation (generic term)
+world record|1
+(noun)|record (generic term)
+world series|1
+(noun)|World Series|series (generic term)|playoff (generic term)
+world tamil association|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+world tamil movement|1
+(noun)|Liberation Tigers of Tamil Eelam|LTTE|Tamil Tigers|Tigers|World Tamil Association|World Tamil Movement|terrorist organization (generic term)|terrorist group (generic term)|foreign terrorist organization (generic term)|FTO (generic term)
+world trade center|1
+(noun)|World Trade Center|WTC|twin towers|skyscraper (generic term)
+world trade organization|1
+(noun)|World Trade Organization|WTO|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+world traveler|1
+(noun)|globetrotter|cosmopolitan (generic term)|cosmopolite (generic term)
+world view|1
+(noun)|Weltanschauung|position (generic term)|view (generic term)|perspective (generic term)
+world war|1
+(noun)|war (generic term)|warfare (generic term)
+world war 1|1
+(noun)|World War I|World War 1|Great War|First World War|War to End War|world war (generic term)
+world war 2|1
+(noun)|World War II|World War 2|Second World War|world war (generic term)
+world war i|1
+(noun)|World War I|World War 1|Great War|First World War|War to End War|world war (generic term)
+world war ii|1
+(noun)|World War II|World War 2|Second World War|world war (generic term)
+world wide web|1
+(noun)|World Wide Web|WWW|web|computer network (generic term)
+worldliness|2
+(noun)|sophistication|mundaneness|mundanity|quality (generic term)|naivete (antonym)
+(noun)|outwardness (generic term)|externality (generic term)|otherworldliness (antonym)
+worldling|2
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|tellurian|earthling|earthman|inhabitant (generic term)|habitant (generic term)|dweller (generic term)|denizen (generic term)|indweller (generic term)
+worldly|3
+(adj)|economic (similar term)|material (similar term)|materialistic (similar term)|mercenary (similar term)|worldly-minded (similar term)|mundane (similar term)|terrestrial (similar term)|temporal (similar term)|earthly (related term)|sophisticated (related term)|unworldly (antonym)
+(adj)|blase|sophisticated (similar term)
+(adj)|temporal|profane (similar term)
+worldly-minded|1
+(adj)|materialistic|mercenary|worldly (similar term)
+worldly-wise|1
+(adj)|sophisticated (similar term)
+worldly belongings|1
+(noun)|worldly possessions|worldly goods|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+worldly concern|1
+(noun)|earthly concern|world|earth|concern (generic term)
+worldly goods|1
+(noun)|worldly possessions|worldly belongings|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+worldly possessions|1
+(noun)|worldly belongings|worldly goods|property (generic term)|belongings (generic term)|holding (generic term)|material possession (generic term)
+worldwide|3
+(adj)|world-wide|intercontinental (similar term)
+(adj)|global|planetary|world|world-wide|international (similar term)
+(adj)|cosmopolitan|ecumenical|oecumenical|general|universal|world-wide|comprehensive (similar term)
+worm|5
+(noun)|invertebrate (generic term)
+(noun)|louse|insect|dirt ball|unpleasant person (generic term)|disagreeable person (generic term)
+(noun)|malevolent program (generic term)
+(noun)|screw (generic term)
+(verb)|writhe|wrestle|wriggle|squirm|twist|move (generic term)
+worm-eaten|1
+(adj)|vermiculate|wormy|worn (similar term)
+worm-shaped|1
+(adj)|vermiform|formed (similar term)
+worm family|1
+(noun)|family (generic term)
+worm fence|1
+(noun)|snake fence|snake-rail fence|Virginia fence|rail fence (generic term)
+worm fish|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+worm gear|1
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+worm genus|1
+(noun)|genus (generic term)
+worm lizard|1
+(noun)|lizard (generic term)
+worm salamander|1
+(noun)|slender salamander|salamander (generic term)
+worm snake|2
+(noun)|blind snake|snake (generic term)|serpent (generic term)|ophidian (generic term)
+(noun)|thunder snake|Carphophis amoenus|colubrid snake (generic term)|colubrid (generic term)
+worm wheel|1
+(noun)|gear (generic term)|gear wheel (generic term)|geared wheel (generic term)|cogwheel (generic term)
+wormcast|2
+(noun)|body waste (generic term)|excretion (generic term)|excreta (generic term)|excrement (generic term)|excretory product (generic term)
+(noun)|fossil (generic term)
+wormhole|1
+(noun)|hole (generic term)|hollow (generic term)
+wormian bone|1
+(noun)|Wormian bone|sutural bone|bone (generic term)|os (generic term)
+wormlike|1
+(adj)|cringing|groveling|grovelling|wormy|submissive (similar term)
+wormseed|1
+(noun)|American wormseed|Mexican tea|Spanish tea|Chenopodium ambrosioides|goosefoot (generic term)
+wormseed mustard|1
+(noun)|Erysimum cheiranthoides|weed (generic term)
+wormwood|1
+(noun)|subshrub (generic term)|suffrutex (generic term)
+wormwood oil|1
+(noun)|absinthe oil|essential oil (generic term)|volatile oil (generic term)
+wormwood sage|1
+(noun)|prairie sagewort|Artemisia frigida|wormwood (generic term)
+wormy|2
+(adj)|vermiculate|worm-eaten|worn (similar term)
+(adj)|cringing|groveling|grovelling|wormlike|submissive (similar term)
+worn|2
+(adj)|aged (similar term)|attrited (similar term)|battered (similar term)|clapped out (similar term)|creaky (similar term)|decrepit (similar term)|derelict (similar term)|flea-bitten (similar term)|run-down (similar term)|woebegone (similar term)|dog-eared (similar term)|eared (similar term)|eroded (similar term)|scoured (similar term)|frayed (similar term)|mangy (similar term)|mangey (similar term)|moth-eaten (similar term)|mothy (similar term)|played out (similar term)|ragged (similar term)|raddled (similar term)|worn-out (similar term)|moth-eaten (similar term)|ratty (similar term)|shabby (similar term)|tatty (similar term)|scruffy (similar term)|seedy (similar term)|shopworn (similar term)|shopsoiled (similar term)|tattered (similar term)|tatterdemalion (similar term)|threadbare (similar term)|thumbed (similar term)|vermiculate (similar term)|worm-eaten (similar term)|wormy (similar term)|waterworn (similar term)|weather-beaten (similar term)|weatherworn (similar term)|weathered (similar term)|well-worn (similar term)|old (related term)|new (antonym)
+(adj)|careworn|drawn|haggard|raddled|tired (similar term)
+worn-out|2
+(adj)|raddled|worn (similar term)
+(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|washed-out|worn out|tired (similar term)
+worn out|1
+(adj)|exhausted|dog-tired|fagged|fatigued|played out|spent|washed-out|worn-out|tired (similar term)
+worn spot|1
+(noun)|fret|spot (generic term)|speckle (generic term)|dapple (generic term)|patch (generic term)|fleck (generic term)|maculation (generic term)
+worried|2
+(adj)|disquieted|distressed|disturbed|upset|troubled (similar term)
+(adj)|apprehensive|uneasy (similar term)
+worrier|1
+(noun)|fuss-budget|fusspot|worrywart|spoilsport (generic term)|killjoy (generic term)|wet blanket (generic term)|party pooper (generic term)
+worriment|1
+(noun)|troublesomeness|inconvenience|difficulty (generic term)|difficultness (generic term)
+worrisome|2
+(adj)|unreassuring|reassuring (antonym)
+(adj)|distressing|distressful|disturbing|perturbing|troubling|worrying|heavy (similar term)
+worry|7
+(noun)|concern|headache|vexation|negative stimulus (generic term)
+(noun)|trouble|anxiety (generic term)
+(verb)|care|mind (generic term)
+(verb)|vex|perturb (generic term)|unhinge (generic term)|disquiet (generic term)|trouble (generic term)|cark (generic term)|distract (generic term)|disorder (generic term)|reassure (antonym)
+(verb)|concern|interest|occupy
+(verb)|incise (generic term)
+(verb)|rub (generic term)
+worrying|3
+(adj)|distressing|distressful|disturbing|perturbing|troubling|worrisome|heavy (similar term)
+(noun)|badgering|torment|bedevilment|harassment (generic term)|molestation (generic term)
+(noun)|agitation (generic term)
+worrywart|1
+(noun)|worrier|fuss-budget|fusspot|spoilsport (generic term)|killjoy (generic term)|wet blanket (generic term)|party pooper (generic term)
+worse|3
+(adj)|worsened (similar term)|better (antonym)
+(adj)|worsened|better (antonym)
+(noun)|bad (generic term)|badness (generic term)
+worsen|2
+(verb)|decline|change state (generic term)|turn (generic term)|better (antonym)
+(verb)|aggravate|exacerbate|exasperate|change (generic term)|alter (generic term)|modify (generic term)|better (antonym)
+worsened|2
+(adj)|worse|better (antonym)
+(adj)|worse (similar term)
+worsening|3
+(adj)|bettering (antonym)
+(noun)|deterioration|decline in quality|declension|decline (generic term)|diminution (generic term)
+(noun)|change of state (generic term)
+worship|5
+(noun)|activity (generic term)
+(noun)|adoration|love (generic term)
+(verb)|idolize|idolise|hero-worship|revere|adore (generic term)
+(verb)|reverence (generic term)|fear (generic term)|revere (generic term)|venerate (generic term)
+(verb)|attend (generic term)|go to (generic term)
+worship of heavenly bodies|1
+(noun)|astrolatry|worship (generic term)
+worship of man|1
+(noun)|anthropolatry|idolatry (generic term)|devotion (generic term)|veneration (generic term)|cultism (generic term)
+worshiper|2
+(noun)|worshipper|admirer (generic term)|adorer (generic term)
+(noun)|believer|worshipper|religious person (generic term)
+worshipful|2
+(adj)|adoring|reverent (similar term)
+(adj)|godly|reverent|pious (similar term)
+worshiping|1
+(adj)|worshipping
+worshipped|1
+(adj)|adored|idolized|idolised|loved (similar term)
+worshipper|2
+(noun)|believer|worshiper|religious person (generic term)
+(noun)|worshiper|admirer (generic term)|adorer (generic term)
+worshipping|1
+(adj)|worshiping
+worst|5
+(adj)|bottom (similar term)|last (similar term)|last-place (similar term)|lowest (similar term)|pessimal (similar term)|pessimum (similar term)|bad (related term)|inferior (related term)|best (antonym)
+(noun)|result (generic term)|resultant (generic term)|final result (generic term)|outcome (generic term)|termination (generic term)
+(noun)|evil (generic term)|evilness (generic term)
+(noun)|attempt (generic term)|effort (generic term)|endeavor (generic term)|endeavour (generic term)|try (generic term)|best (antonym)
+(verb)|pip|mop up|whip|rack up|beat (generic term)|beat out (generic term)|crush (generic term)|shell (generic term)|trounce (generic term)|vanquish (generic term)
+worsted|2
+(noun)|worsted fabric|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|worsted yarn|thread (generic term)|yarn (generic term)
+worsted fabric|1
+(noun)|worsted|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+worsted yarn|1
+(noun)|worsted|thread (generic term)|yarn (generic term)
+wort|2
+(noun)|herb (generic term)|herbaceous plant (generic term)
+(noun)|malt (generic term)
+worth|5
+(adj)|deserving|meriting|worthy (similar term)
+(adj)|valuable (similar term)
+(noun)|indefinite quantity (generic term)
+(noun)|quality (generic term)|worthlessness (antonym)
+(noun)|Worth|Charles Frederick Worth|couturier (generic term)|fashion designer (generic term)|clothes designer (generic term)|designer (generic term)
+worthful|1
+(adj)|valuable|worthy (similar term)
+worthiness|1
+(noun)|good (generic term)|goodness (generic term)|unworthiness (antonym)
+worthless|2
+(adj)|chaffy (similar term)|good-for-nothing (similar term)|good-for-naught (similar term)|meritless (similar term)|no-account (similar term)|no-count (similar term)|no-good (similar term)|sorry (similar term)|manky (similar term)|negligible (similar term)|paltry (similar term)|trifling (similar term)|nugatory (similar term)|otiose (similar term)|pointless (similar term)|superfluous (similar term)|wasted (similar term)|rubbishy (similar term)|trashy (similar term)|tinpot (similar term)|valueless (similar term)|unworthy (related term)|valuable (antonym)
+(adj)|despicable|ugly|vile|slimy|unworthy|wretched|evil (similar term)
+worthlessness|2
+(noun)|ineptitude|quality (generic term)|worth (antonym)
+(noun)|inutility (generic term)|uselessness (generic term)|unusefulness (generic term)
+worthwhile|1
+(adj)|worthy (similar term)
+worthwhileness|1
+(noun)|worth (generic term)
+worthy|5
+(adj)|applaudable (similar term)|commendable (similar term)|laudable (similar term)|praiseworthy (similar term)|creditable (similar term)|cum laude (similar term)|deserving (similar term)|meriting (similar term)|worth (similar term)|exemplary (similar term)|model (similar term)|honorable (similar term)|honourable (similar term)|honored (similar term)|honoured (similar term)|magna cum laude (similar term)|meritorious (similar term)|meritable (similar term)|noteworthy (similar term)|notable (similar term)|quotable (similar term)|sacred (similar term)|summa cum laude (similar term)|valuable (similar term)|worthful (similar term)|worthwhile (similar term)|estimable (related term)|good (related term)|honorable (related term)|honourable (related term)|righteous (related term)|valuable (related term)|unworthy (antonym)
+(adj)|desirable|suitable|eligible (similar term)
+(adj)|respectable (similar term)
+(adj)|upstanding|solid|good (similar term)
+(noun)|important person (generic term)|influential person (generic term)|personage (generic term)
+wotan|1
+(noun)|Wotan|Teutonic deity (generic term)
+wouk|1
+(noun)|Wouk|Herman Wouk|writer (generic term)|author (generic term)
+would-be|1
+(adj)|manque|ambitious (similar term)
+wound|7
+(adj)|coiled (similar term)
+(noun)|lesion|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|injury|combat injury|personnel casualty (generic term)|loss (generic term)
+(noun)|distress (generic term)|hurt (generic term)|suffering (generic term)
+(noun)|wounding|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+(verb)|injure|hurt (generic term)
+(verb)|hurt|injure|bruise|offend|spite|arouse (generic term)|elicit (generic term)|enkindle (generic term)|kindle (generic term)|evoke (generic term)|fire (generic term)|raise (generic term)|provoke (generic term)
+wound tumor virus|1
+(noun)|WTV|tumor virus (generic term)
+wound up|1
+(adj)|aroused|tense (similar term)
+wounded|2
+(adj)|hurt|injured (similar term)
+(noun)|maimed|people (generic term)
+wounding|2
+(adj)|stabbing|harmful (similar term)
+(noun)|wound|damage (generic term)|harm (generic term)|hurt (generic term)|scathe (generic term)
+wove paper|1
+(noun)|writing paper (generic term)
+woven|1
+(adj)|plain-woven (similar term)|unwoven (antonym)
+wow|2
+(noun)|belly laugh|sidesplitter|howler|thigh-slapper|scream|riot|joke (generic term)|gag (generic term)|laugh (generic term)|jest (generic term)|jape (generic term)
+(verb)|impress (generic term)
+wpm|1
+(noun)|words per minute|rate (generic term)
+wrack|4
+(noun)|seaweed (generic term)
+(noun)|rack|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|sea wrack|seaweed (generic term)
+(verb)|bust up|wreck|destroy (generic term)|ruin (generic term)
+wraith|1
+(noun)|ghost|shade|spook|specter|spectre|apparition (generic term)|phantom (generic term)|phantasm (generic term)|phantasma (generic term)|fantasm (generic term)|shadow (generic term)
+wraithlike|1
+(adj)|shadowy|insubstantial (similar term)|unsubstantial (similar term)|unreal (similar term)
+wrangell-st. elias national park|1
+(noun)|Wrangell-St. Elias National Park|national park (generic term)
+wrangle|4
+(noun)|quarrel|row|words|run-in|dustup|dispute (generic term)|difference (generic term)|difference of opinion (generic term)|conflict (generic term)
+(noun)|haggle|haggling|wrangling|bargaining (generic term)
+(verb)|brawl|quarrel (generic term)|dispute (generic term)|scrap (generic term)|argufy (generic term)|altercate (generic term)
+(verb)|herd (generic term)
+wrangler|2
+(noun)|debater (generic term)|arguer (generic term)
+(noun)|horse wrangler|cowboy (generic term)|cowpuncher (generic term)|puncher (generic term)|cowman (generic term)|cattleman (generic term)|cowpoke (generic term)|cowhand (generic term)|cowherd (generic term)
+wrangling|1
+(noun)|haggle|haggling|wrangle|bargaining (generic term)
+wrap|6
+(noun)|wrapper|cloak (generic term)
+(noun)|sandwich (generic term)
+(noun)|wrapping|wrapper|covering (generic term)
+(verb)|wrap up|cover (generic term)|unwrap (antonym)
+(verb)|wind|roll|twine|move (generic term)|displace (generic term)|roll up (related term)|wrap up (related term)|unwind (antonym)
+(verb)|envelop|enfold|enwrap|enclose|cover (generic term)
+wrap up|4
+(verb)|wrap|cover (generic term)|unwrap (antonym)
+(verb)|get through|finish off|mop up|polish off|clear up|finish up|complete (generic term)|finish (generic term)
+(verb)|roll up|change surface (generic term)|unfurl (antonym)
+(verb)|cover|dress (generic term)|clothe (generic term)|enclothe (generic term)|garb (generic term)|raiment (generic term)|tog (generic term)|garment (generic term)|habilitate (generic term)|fit out (generic term)|apparel (generic term)
+wraparound|1
+(noun)|garment (generic term)
+wrapped|3
+(adj)|cloaked|clothed|draped|mantled|covered (similar term)
+(adj)|captive|absorbed|engrossed|enwrapped|intent|attentive (similar term)
+(adj)|done up (similar term)|enwrapped (similar term)|shrink-wrapped (similar term)|unwrapped (antonym)
+wrapped up|1
+(adj)|bound up|committed (similar term)
+wrapper|3
+(noun)|negligee|neglige|peignoir|housecoat|woman's clothing (generic term)
+(noun)|wrapping|wrap|covering (generic term)
+(noun)|wrap|cloak (generic term)
+wrapping|2
+(noun)|wrap|wrapper|covering (generic term)
+(noun)|swathe|bandage (generic term)|patch (generic term)
+wrapping paper|1
+(noun)|paper (generic term)
+wrasse|1
+(noun)|percoid fish (generic term)|percoid (generic term)|percoidean (generic term)
+wrath|2
+(noun)|fury (generic term)|rage (generic term)|madness (generic term)
+(noun)|anger|ire|ira|mortal sin (generic term)|deadly sin (generic term)
+wrathful|1
+(adj)|wroth|wrothful|angry (similar term)
+wrawl|1
+(verb)|howl|yammer|yowl|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+wreak|1
+(verb)|bring|work|play|make for|make (generic term)|create (generic term)|bring on (related term)|bring off (related term)|bring up (related term)
+wreath|2
+(noun)|garland|coronal|chaplet|lei|flower arrangement (generic term)
+(verb)|wreathe|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+wreathe|3
+(verb)|wreath|surround (generic term)|environ (generic term)|encircle (generic term)|circle (generic term)|round (generic term)|ring (generic term)
+(verb)|decorate (generic term)|adorn (generic term)|grace (generic term)|ornament (generic term)|embellish (generic term)|beautify (generic term)
+(verb)|wind|intertwine (generic term)|twine (generic term)|entwine (generic term)|enlace (generic term)|interlace (generic term)|lace (generic term)
+wreathed|1
+(adj)|encircled|ringed|adorned (similar term)|decorated (similar term)
+wreck|5
+(noun)|decline (generic term)|declination (generic term)
+(noun)|shipwreck|accident (generic term)
+(noun)|crash|accident (generic term)
+(noun)|ship (generic term)
+(verb)|bust up|wrack|destroy (generic term)|ruin (generic term)
+wreckage|1
+(noun)|part (generic term)|portion (generic term)
+wrecked|1
+(adj)|destroyed (similar term)
+wrecker|3
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+(noun)|saboteur|diversionist|destroyer (generic term)|ruiner (generic term)|undoer (generic term)|waster (generic term)|uprooter (generic term)
+(noun)|tow truck|tow car|truck (generic term)|motortruck (generic term)
+wreckfish|1
+(noun)|stone bass|Polyprion americanus|sea bass (generic term)
+wrecking|2
+(noun)|razing|destruction (generic term)|demolition (generic term)|wipeout (generic term)
+(noun)|laying waste|ruin|ruining|ruination|destruction (generic term)|devastation (generic term)
+wrecking bar|1
+(noun)|crowbar|pry|pry bar|lever (generic term)
+wren|2
+(noun)|Wren|Sir Christopher Wren|architect (generic term)|designer (generic term)
+(noun)|jenny wren|passerine (generic term)|passeriform bird (generic term)
+wren-tit|1
+(noun)|Chamaea fasciata|titmouse (generic term)|tit (generic term)
+wren warbler|1
+(noun)|Old World warbler (generic term)|true warbler (generic term)
+wrench|7
+(noun)|twist|pull|injury (generic term)|hurt (generic term)|harm (generic term)|trauma (generic term)
+(noun)|twist|movement (generic term)|motion (generic term)
+(noun)|spanner|hand tool (generic term)
+(verb)|twist|pull (generic term)
+(verb)|writhe (generic term)|wrestle (generic term)|wriggle (generic term)|worm (generic term)|squirm (generic term)|twist (generic term)
+(verb)|wring|twist (generic term)|twine (generic term)|distort (generic term)|wring out (related term)
+(verb)|twist|sprain|turn|wrick|rick|injure (generic term)|wound (generic term)
+wrenching|1
+(adj)|racking|painful (similar term)
+wrest|1
+(verb)|seize (generic term)
+wrester|1
+(noun)|puller (generic term)
+wrestle|5
+(noun)|wrestling|grapple|grappling|hand-to-hand struggle|struggle (generic term)
+(verb)|battle (generic term)|combat (generic term)
+(verb)|consider (generic term)|debate (generic term)|moot (generic term)|turn over (generic term)|deliberate (generic term)
+(verb)|writhe|wriggle|worm|squirm|twist|move (generic term)
+(verb)|contend (generic term)|fight (generic term)|struggle (generic term)
+wrestler|1
+(noun)|grappler|matman|combatant (generic term)|battler (generic term)|belligerent (generic term)|fighter (generic term)|scrapper (generic term)
+wrestling|2
+(noun)|wrestle|grapple|grappling|hand-to-hand struggle|struggle (generic term)
+(noun)|rassling|grappling|contact sport (generic term)
+wrestling hold|1
+(noun)|clasp (generic term)|clench (generic term)|clutch (generic term)|clutches (generic term)|grasp (generic term)|grip (generic term)|hold (generic term)
+wrestling mat|1
+(noun)|mat (generic term)|gym mat (generic term)
+wrestling match|1
+(noun)|match (generic term)
+wrestling ring|1
+(noun)|ring (generic term)
+wretch|2
+(noun)|reprobate (generic term)|miscreant (generic term)
+(noun)|poor devil|victim (generic term)
+wretched|5
+(adj)|deplorable|execrable|miserable|woeful|inferior (similar term)
+(adj)|miserable|uncomfortable (similar term)
+(adj)|miserable|suffering|unhappy (similar term)
+(adj)|despicable|ugly|vile|slimy|unworthy|worthless|evil (similar term)
+(adj)|hapless|miserable|misfortunate|pathetic|piteous|pitiable|pitiful|poor|unfortunate (similar term)
+wretchedness|3
+(noun)|misery|miserableness|ill-being (generic term)
+(noun)|discomfort (generic term)|uncomfortableness (generic term)
+(noun)|inferiority (generic term)|low quality (generic term)
+wrick|2
+(noun)|crick|kink|rick|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+(verb)|twist|sprain|wrench|turn|rick|injure (generic term)|wound (generic term)
+wriggle|2
+(noun)|wiggle|squirm|motion (generic term)|movement (generic term)|move (generic term)|motility (generic term)
+(verb)|writhe|wrestle|worm|squirm|twist|move (generic term)
+wriggler|2
+(noun)|wiggler|squirmer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+(noun)|wiggler|larva (generic term)
+wriggling|1
+(adj)|squirming|twisting|wiggling|wiggly|wriggly|writhing|moving (similar term)
+wriggly|1
+(adj)|squirming|twisting|wiggling|wiggly|wriggling|writhing|moving (similar term)
+wright|7
+(noun)|Wright|Willard Huntington Wright|S. S. Van Dine|writer (generic term)|author (generic term)
+(noun)|Wright|Richard Wright|writer (generic term)|author (generic term)
+(noun)|Wright|Wilbur Wright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Wright|Orville Wright|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Wright|Frank Lloyd Wright|architect (generic term)|designer (generic term)
+(noun)|Wright|Frances Wright|Fanny Wright|feminist (generic term)|women's rightist (generic term)|women's liberationist (generic term)|libber (generic term)
+(noun)|craftsman (generic term)|artisan (generic term)|journeyman (generic term)|artificer (generic term)
+wring|5
+(noun)|squeeze|movement (generic term)|motion (generic term)
+(verb)|contort|deform|distort|twist (generic term)|twine (generic term)|distort (generic term)
+(verb)|wrench|twist (generic term)|twine (generic term)|distort (generic term)|wring out (related term)
+(verb)|extort|squeeze|rack|gouge|overcharge (generic term)|soak (generic term)|surcharge (generic term)|gazump (generic term)|fleece (generic term)|plume (generic term)|pluck (generic term)|rob (generic term)|hook (generic term)
+(verb)|squash (generic term)|crush (generic term)|squelch (generic term)|mash (generic term)|squeeze (generic term)
+wring from|1
+(verb)|extort|obtain (generic term)
+wring out|1
+(verb)|squeeze out|extract (generic term)|pull out (generic term)|pull (generic term)|pull up (generic term)|take out (generic term)|draw out (generic term)
+wringer|1
+(noun)|clothes dryer (generic term)|clothes drier (generic term)
+wrinkle|7
+(noun)|furrow|crease|crinkle|seam|line|depression (generic term)|impression (generic term)|imprint (generic term)
+(noun)|difficulty (generic term)
+(noun)|method (generic term)
+(verb)|purse|contract (generic term)
+(verb)|ruckle|crease|crinkle|scrunch|scrunch up|crisp|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|furrow|crease|fold (generic term)|fold up (generic term)|turn up (generic term)
+(verb)|rumple|crumple|crease|crinkle|fold (generic term)|fold up (generic term)
+wrinkle-resistant|1
+(adj)|creaseproof|wrinkleproof|crease-resistant|depression|impression|imprint (related term)
+wrinkled|3
+(adj)|wrinkly|furrowed (similar term)
+(adj)|unsmoothed (similar term)|unwrinkled (antonym)
+(adj)|unironed|drip-dry (similar term)|permanent-press (similar term)|roughdried (similar term)|unpressed (similar term)|rough (related term)|unsmooth (related term)|ironed (antonym)
+wrinkleless|1
+(adj)|unwrinkled|wrinkled (antonym)
+wrinkleproof|1
+(adj)|creaseproof|crease-resistant|wrinkle-resistant|depression|impression|imprint (related term)
+wrinkly|1
+(adj)|wrinkled|furrowed (similar term)
+wrist|1
+(noun)|carpus|wrist joint|radiocarpal joint|articulatio radiocarpea|gliding joint (generic term)|articulatio plana (generic term)
+wrist band|1
+(noun)|wristlet|band (generic term)
+wrist bone|1
+(noun)|carpal bone|carpal|bone (generic term)|os (generic term)
+wrist joint|1
+(noun)|wrist|carpus|radiocarpal joint|articulatio radiocarpea|gliding joint (generic term)|articulatio plana (generic term)
+wrist pad|1
+(noun)|protective garment (generic term)
+wrist pin|1
+(noun)|gudgeon pin|pin (generic term)
+wrist watch|1
+(noun)|wristwatch|watch (generic term)|ticker (generic term)
+wristband|2
+(noun)|band (generic term)
+(noun)|watchband|watchstrap|watch bracelet|bracelet|band (generic term)
+wristlet|1
+(noun)|wrist band|band (generic term)
+wristwatch|1
+(noun)|wrist watch|watch (generic term)|ticker (generic term)
+writ|1
+(noun)|judicial writ|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+writ large|1
+(adj)|obvious (similar term)
+writ of certiorari|1
+(noun)|certiorari|writ (generic term)|judicial writ (generic term)
+writ of detinue|1
+(noun)|writ (generic term)|judicial writ (generic term)
+writ of election|1
+(noun)|writ (generic term)|judicial writ (generic term)
+writ of error|1
+(noun)|writ (generic term)|judicial writ (generic term)
+writ of execution|1
+(noun)|execution|court order (generic term)
+writ of habeas corpus|1
+(noun)|habeas corpus|writ (generic term)|judicial writ (generic term)
+writ of mandamus|1
+(noun)|mandamus|writ (generic term)|judicial writ (generic term)
+writ of prohibition|1
+(noun)|writ (generic term)|judicial writ (generic term)
+writ of right|1
+(noun)|writ (generic term)|judicial writ (generic term)
+write|9
+(verb)|compose|pen|indite|create verbally (generic term)|write out (related term)
+(verb)|publish|create verbally (generic term)
+(verb)|drop a line|correspond (generic term)
+(verb)|communicate (generic term)|intercommunicate (generic term)
+(verb)|compose|make (generic term)|create (generic term)
+(verb)|trace (generic term)|draw (generic term)|line (generic term)|describe (generic term)|delineate (generic term)
+(verb)|record (generic term)|tape (generic term)
+(verb)|spell
+(verb)|create by mental act (generic term)|create mentally (generic term)
+write-down|1
+(noun)|write-off|depreciation (generic term)|wear and tear (generic term)
+write-in|2
+(noun)|write-in candidate|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+(noun)|vote (generic term)|ballot (generic term)|voting (generic term)|balloting (generic term)
+write-in candidate|1
+(noun)|write-in|campaigner (generic term)|candidate (generic term)|nominee (generic term)
+write-off|2
+(noun)|write-down|depreciation (generic term)|wear and tear (generic term)
+(noun)|cancellation (generic term)
+write about|1
+(verb)|write on|write of|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+write copy|1
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+write down|2
+(verb)|set down|get down|put down|write (generic term)
+(verb)|write off|depreciate (generic term)
+write in|2
+(verb)|vote (generic term)
+(verb)|write (generic term)
+write in code|1
+(verb)|encode|code|encipher|cipher|cypher|encrypt|inscribe|write (generic term)|decode (antonym)
+write of|1
+(verb)|write on|write about|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+write off|4
+(verb)|admit (generic term)|acknowledge (generic term)
+(verb)|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|cancel (generic term)|strike down (generic term)
+(verb)|write down|depreciate (generic term)
+write on|1
+(verb)|write of|write about|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+write out|2
+(verb)|write up|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+(verb)|issue|make out|cut|write (generic term)
+write up|3
+(noun)|report|news report|story|account|news (generic term)
+(verb)|write (generic term)
+(verb)|write out|write (generic term)|compose (generic term)|pen (generic term)|indite (generic term)
+writer|2
+(noun)|author|communicator (generic term)
+(noun)|literate (generic term)|literate person (generic term)
+writer's block|1
+(noun)|block (generic term)|mental block (generic term)
+writer's cramp|1
+(noun)|graphospasm|spasm (generic term)|cramp (generic term)|muscle spasm (generic term)
+writer's name|1
+(noun)|author's name|name (generic term)
+writhe|1
+(verb)|wrestle|wriggle|worm|squirm|twist|move (generic term)
+writhed|1
+(adj)|contorted|writhen|crooked (similar term)
+writhen|1
+(adj)|contorted|writhed|crooked (similar term)
+writhing|1
+(adj)|squirming|twisting|wiggling|wiggly|wriggling|wriggly|moving (similar term)
+writing|5
+(noun)|authorship|composition|penning|verbal creation (generic term)
+(noun)|written material|piece of writing|written communication (generic term)|written language (generic term)
+(noun)|written communication (generic term)|written language (generic term)|oeuvre (generic term)|work (generic term)|body of work (generic term)
+(noun)|written communication (generic term)|written language (generic term)
+(noun)|committal to writing|activity (generic term)
+writing arm|1
+(noun)|arm (generic term)
+writing assignment|1
+(noun)|written assignment|assignment (generic term)
+writing board|1
+(noun)|work surface (generic term)
+writing desk|2
+(noun)|case (generic term)
+(noun)|desk (generic term)
+writing implement|1
+(noun)|implement (generic term)
+writing ink|1
+(noun)|ink (generic term)
+writing pad|1
+(noun)|message pad|pad (generic term)|pad of paper (generic term)|tablet (generic term)
+writing paper|1
+(noun)|paper (generic term)
+writing style|1
+(noun)|literary genre|genre|expressive style (generic term)|style (generic term)
+writing system|1
+(noun)|orthography|writing (generic term)
+writing table|1
+(noun)|secretary|escritoire|secretaire|desk (generic term)
+writings|1
+(noun)|Hagiographa|Ketubim|Writings|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+written|3
+(adj)|backhand (similar term)|left-slanting (similar term)|cursive (similar term)|engrossed (similar term)|graphic (similar term)|graphical (similar term)|in writing (similar term)|handwritten (similar term)|holographic (similar term)|inscribed (similar term)|longhand (similar term)|printed (similar term)|scrawled (similar term)|scrivened (similar term)|shorthand (similar term)|transcribed (similar term)|typed (similar term)|typewritten (similar term)|scripted (related term)|written (related term)|spoken (antonym)
+(adj)|codified (similar term)|statute (similar term)|unwritten (antonym)
+(adj)|scripted|unscripted (antonym)
+written account|1
+(noun)|written record|record (generic term)
+written agreement|1
+(noun)|agreement (generic term)|understanding (generic term)|legal document (generic term)|legal instrument (generic term)|official document (generic term)|instrument (generic term)
+written assignment|1
+(noun)|writing assignment|assignment (generic term)
+written communication|1
+(noun)|written language|communication (generic term)
+written document|1
+(noun)|document|papers|writing (generic term)|written material (generic term)|piece of writing (generic term)
+written language|1
+(noun)|written communication|communication (generic term)
+written material|1
+(noun)|writing|piece of writing|written communication (generic term)|written language (generic term)
+written matter|1
+(noun)|copy|text (generic term)|textual matter (generic term)
+written record|1
+(noun)|written account|record (generic term)
+written report|1
+(noun)|report|study|document (generic term)|written document (generic term)|papers (generic term)
+written symbol|1
+(noun)|printed symbol|symbol (generic term)
+written text|1
+(noun)|transcription|written communication (generic term)|written language (generic term)
+written word|1
+(noun)|word (generic term)
+wroclaw|1
+(noun)|Wroclaw|Breslau|city (generic term)|metropolis (generic term)|urban center (generic term)
+wrong|12
+(adj)|incorrect|erroneous (similar term)|inaccurate (similar term)|fallacious (similar term)|false (similar term)|mistaken (similar term)|false (related term)|improper (related term)|inaccurate (related term)|right (antonym)|correct (antonym)
+(adj)|condemnable (similar term)|criminal (similar term)|deplorable (similar term)|reprehensible (similar term)|vicious (similar term)|base (similar term)|dishonorable (similar term)|dishonourable (similar term)|immoral (similar term)|unethical (similar term)|misguided (similar term)|mistaken (similar term)|evil (related term)|improper (related term)|unethical (related term)|unjust (related term)|wicked (related term)|right (antonym)
+(adj)|unsuitable|improper|inappropriate (similar term)
+(adj)|amiss|awry|haywire|malfunctioning (similar term)|nonfunctional (similar term)
+(adj)|wrongheaded (similar term)|right (antonym)
+(adj)|improper (similar term)
+(adj)|inside (similar term)
+(adj)|ill-timed|unseasonable|untimely|inopportune (similar term)
+(noun)|wrongfulness|injustice (generic term)|unjustness (generic term)|rightfulness (antonym)|right (antonym)
+(noun)|legal injury|damage|wrongdoing (generic term)|wrongful conduct (generic term)|misconduct (generic term)|actus reus (generic term)
+(verb)|treat (generic term)|handle (generic term)|do by (generic term)|right (antonym)
+(adv)|incorrectly|wrongly|right (antonym)|correctly (antonym)
+wrong-side-out|1
+(adj)|inside-out|turned (similar term)
+wrong-site surgery|1
+(noun)|operation (generic term)|surgery (generic term)|surgical operation (generic term)|surgical procedure (generic term)|surgical process (generic term)
+wrong 'un|1
+(noun)|googly|bosie|bosie ball|bowling (generic term)
+wrongdoer|1
+(noun)|offender|bad person (generic term)
+wrongdoing|2
+(noun)|error|evil (generic term)|evilness (generic term)
+(noun)|wrongful conduct|misconduct|actus reus|activity (generic term)
+wrongful|3
+(adj)|unlawful|illegitimate (similar term)
+(adj)|unlawful (similar term)
+(adj)|unjust (similar term)
+wrongful conduct|1
+(noun)|wrongdoing|misconduct|actus reus|activity (generic term)
+wrongful death|1
+(noun)|death (generic term)|decease (generic term)|expiry (generic term)
+wrongfulness|1
+(noun)|wrong|injustice (generic term)|unjustness (generic term)|rightfulness (antonym)|right (antonym)
+wrongheaded|1
+(adj)|wrong (similar term)
+wrongly|1
+(adv)|incorrectly|wrong|right (antonym)|correctly (antonym)
+wrongness|3
+(noun)|inappropriateness|impropriety (generic term)|improperness (generic term)|appropriateness (antonym)
+(noun)|immorality (generic term)|rightness (antonym)
+(noun)|incorrectness|quality (generic term)|rightness (antonym)|correctness (antonym)
+wroth|1
+(adj)|wrathful|wrothful|angry (similar term)
+wrothful|1
+(adj)|wrathful|wroth|angry (similar term)
+wrought|1
+(adj)|shaped|molded|formed (similar term)
+wrought iron|1
+(noun)|iron (generic term)|Fe (generic term)|atomic number 26 (generic term)
+wry|2
+(adj)|dry|ironic|ironical|humorous (similar term)|humourous (similar term)
+(adj)|crooked (similar term)
+wry face|1
+(noun)|pout|moue|grimace (generic term)|face (generic term)
+wrymouth|1
+(noun)|ghostfish|Cryptacanthodes maculatus|blennioid fish (generic term)|blennioid (generic term)
+wryneck|2
+(noun)|torticollis|abnormality (generic term)|abnormalcy (generic term)|abnormal condition (generic term)
+(noun)|woodpecker (generic term)|peckerwood (generic term)|pecker (generic term)
+wsw|1
+(noun)|west southwest|WSW|compass point (generic term)|point (generic term)
+wtc|1
+(noun)|World Trade Center|WTC|twin towers|skyscraper (generic term)
+wto|1
+(noun)|World Trade Organization|WTO|world organization (generic term)|world organisation (generic term)|international organization (generic term)|international organisation (generic term)|global organization (generic term)
+wtv|1
+(noun)|wound tumor virus|WTV|tumor virus (generic term)
+wu|1
+(noun)|Wu|Wu dialect|Shanghai dialect|Chinese (generic term)
+wu dialect|1
+(noun)|Wu|Wu dialect|Shanghai dialect|Chinese (generic term)
+wuerzburg|1
+(noun)|Wurzburg|Wuerzburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+wuhan|1
+(noun)|Wuhan|city (generic term)|metropolis (generic term)|urban center (generic term)
+wulfenite|1
+(noun)|mineral (generic term)
+wulfila|1
+(noun)|Ulfilas|Bishop Ulfilas|Ulfila|Bishop Ulfila|Wulfila|Bishop Wulfila|bishop (generic term)|interpreter (generic term)|translator (generic term)
+wurlitzer|1
+(noun)|Wurlitzer|Rudolf Wurlitzer|businessman (generic term)|man of affairs (generic term)
+wurzburg|1
+(noun)|Wurzburg|Wuerzburg|city (generic term)|metropolis (generic term)|urban center (generic term)
+wuss|1
+(noun)|weakling|doormat|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+wv|1
+(noun)|West Virginia|Mountain State|WV|American state (generic term)
+www|1
+(noun)|World Wide Web|WWW|web|computer network (generic term)
+wy|1
+(noun)|Wyoming|Equality State|WY|American state (generic term)
+wyat|1
+(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet (generic term)
+wyatt|2
+(noun)|Wyatt|James Wyatt|architect (generic term)|designer (generic term)
+(noun)|Wyatt|Sir Thomas Wyatt|Wyat|Sir Thomas Wyat|poet (generic term)
+wych elm|1
+(noun)|witch elm|Ulmus glabra|elm (generic term)|elm tree (generic term)
+wych hazel|2
+(noun)|witch hazel|witch hazel plant|wych hazel plant|shrub (generic term)|bush (generic term)
+(noun)|witch hazel|lotion (generic term)|application (generic term)
+wych hazel plant|1
+(noun)|witch hazel|witch hazel plant|wych hazel|shrub (generic term)|bush (generic term)
+wycherley|1
+(noun)|Wycherley|William Wycherley|dramatist (generic term)|playwright (generic term)
+wyclif|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+wycliffe|1
+(noun)|Wycliffe|John Wycliffe|Wickliffe|John Wickliffe|Wyclif|John Wyclif|Wiclif|John Wiclif|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+wye|1
+(noun)|Y|letter y|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+wyeth|1
+(noun)|Wyeth|Andrew Wyeth|painter (generic term)
+wyethia amplexicaulis|1
+(noun)|mule's ears|Wyethia amplexicaulis|wildflower (generic term)|wild flower (generic term)
+wyethia helianthoides|1
+(noun)|white-rayed mule's ears|Wyethia helianthoides|wildflower (generic term)|wild flower (generic term)
+wykeham|1
+(noun)|Wykeham|William of Wykeham|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)|statesman (generic term)|solon (generic term)|national leader (generic term)
+wykehamist|1
+(noun)|Wykehamist|student (generic term)|pupil (generic term)|educatee (generic term)
+wyler|1
+(noun)|Wyler|William Wyler|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+wylie|1
+(noun)|Wylie|Elinor Morton Hoyt Wylie|poet (generic term)
+wynette|1
+(noun)|Wynette|Tammy Wynette|Tammy Wynetter Pugh|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+wynfrith|1
+(noun)|Boniface|Saint Boniface|St. Boniface|Winfred|Wynfrith|Apostle of Germany|missionary (generic term)|saint (generic term)
+wynnea|1
+(noun)|Wynnea|genus Wynnea|fungus genus (generic term)
+wynnea americana|1
+(noun)|Wynnea americana|fungus (generic term)
+wynnea sparassoides|1
+(noun)|Wynnea sparassoides|fungus (generic term)
+wyoming|1
+(noun)|Wyoming|Equality State|WY|American state (generic term)
+wyomingite|1
+(noun)|Wyomingite|American (generic term)
+wyrd|1
+(noun)|Wyrd|Weird|Anglo-Saxon deity (generic term)
+wysiwyg|1
+(adj)|WYSIWYG|application|application program|applications programme (related term)
+wystan hugh auden|1
+(noun)|Auden|W. H. Auden|Wystan Hugh Auden|poet (generic term)
+wyszynski|1
+(noun)|Wyszynski|Stefan Wyszynski|archpriest (generic term)|hierarch (generic term)|high priest (generic term)|prelate (generic term)|primate (generic term)
+wytensin|1
+(noun)|guanabenz|Wytensin|antihypertensive (generic term)|antihypertensive drug (generic term)
+wyvern|1
+(noun)|wivern|dragon (generic term)|firedrake (generic term)
+x|4
+(adj)|ten|10|cardinal (similar term)
+(noun)|ten|10|X|tenner|decade|large integer (generic term)
+(noun)|X|letter x|ex|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+x-axis|1
+(noun)|coordinate axis (generic term)
+x-linked|1
+(adj)|X-linked|sex chromosome (related term)
+x-linked dominant inheritance|1
+(noun)|X-linked dominant inheritance|inheritance (generic term)|hereditary pattern (generic term)
+x-linked gene|1
+(noun)|X-linked gene|gene (generic term)|cistron (generic term)|factor (generic term)
+x-linked recessive inheritance|1
+(noun)|X-linked recessive inheritance|inheritance (generic term)|hereditary pattern (generic term)
+x-linked scid|1
+(noun)|X-linked SCID|X-SCID|severe combined immunodeficiency (generic term)|severe combined immunodeficiency disease (generic term)|SCID (generic term)
+x-or circuit|1
+(noun)|X-OR circuit|XOR circuit|XOR gate|gate (generic term)|logic gate (generic term)
+x-radiation|2
+(noun)|X ray|X-ray|X-radiation|roentgen ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)|ionizing radiation (generic term)
+(noun)|X-raying|X-radiation|imaging (generic term)|tomography (generic term)
+x-ray|4
+(noun)|X ray|X-ray|X-radiation|roentgen ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)|ionizing radiation (generic term)
+(noun)|roentgenogram|X ray|X-ray|X-ray picture|X-ray photograph|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+(verb)|examine (generic term)|see (generic term)
+(verb)|photograph (generic term)|snap (generic term)|shoot (generic term)
+x-ray diffraction|1
+(noun)|X-ray diffraction|diffraction (generic term)
+x-ray film|1
+(noun)|X-ray film|film (generic term)|photographic film (generic term)
+x-ray machine|1
+(noun)|X-ray machine|apparatus (generic term)|setup (generic term)
+x-ray photograph|1
+(noun)|roentgenogram|X ray|X-ray|X-ray picture|X-ray photograph|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+x-ray photography|1
+(noun)|roentgenography|X-ray photography|radiography (generic term)|diagnostic procedure (generic term)|diagnostic technique (generic term)
+x-ray picture|1
+(noun)|roentgenogram|X ray|X-ray|X-ray picture|X-ray photograph|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+x-ray therapy|1
+(noun)|X-ray therapy|radiotherapy (generic term)|radiation therapy (generic term)|radiation (generic term)|actinotherapy (generic term)|irradiation (generic term)
+x-ray tube|1
+(noun)|X-ray tube|tube (generic term)|vacuum tube (generic term)|thermionic vacuum tube (generic term)|thermionic tube (generic term)|electron tube (generic term)|thermionic valve (generic term)
+x-raying|1
+(noun)|X-raying|X-radiation|imaging (generic term)|tomography (generic term)
+x-scid|1
+(noun)|X-linked SCID|X-SCID|severe combined immunodeficiency (generic term)|severe combined immunodeficiency disease (generic term)|SCID (generic term)
+x chromosome|1
+(noun)|X chromosome|sex chromosome (generic term)
+x ray|2
+(noun)|X ray|X-ray|X-radiation|roentgen ray|electromagnetic radiation (generic term)|electromagnetic wave (generic term)|nonparticulate radiation (generic term)|ionizing radiation (generic term)
+(noun)|roentgenogram|X ray|X-ray|X-ray picture|X-ray photograph|radiogram (generic term)|radiograph (generic term)|shadowgraph (generic term)|skiagraph (generic term)|skiagram (generic term)
+xanax|1
+(noun)|alprazolam|Xanax|benzodiazepine (generic term)
+xanthate|1
+(noun)|salt (generic term)
+xanthelasma|1
+(noun)|xanthoma (generic term)
+xanthemia|1
+(noun)|carotenemia|pathology (generic term)
+xanthic acid|1
+(noun)|acid (generic term)
+xanthine|1
+(noun)|organic compound (generic term)
+xanthium|1
+(noun)|Xanthium|genus Xanthium|asterid dicot genus (generic term)
+xanthoma|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+xanthoma disseminatum|1
+(noun)|xanthoma (generic term)
+xanthoma multiplex|1
+(noun)|xanthomatosis|cholesterosis cutis|lipid granulomatosis|lipoid granulomatosis|xanthoma (generic term)
+xanthomatosis|1
+(noun)|xanthoma multiplex|cholesterosis cutis|lipid granulomatosis|lipoid granulomatosis|xanthoma (generic term)
+xanthomonad|1
+(noun)|eubacteria (generic term)|eubacterium (generic term)|true bacteria (generic term)
+xanthomonas|1
+(noun)|Xanthomonas|genus Xanthomonas|bacteria genus (generic term)
+xanthophyceae|1
+(noun)|Xanthophyceae|class Xanthophyceae|class (generic term)
+xanthophyl|1
+(noun)|xanthophyll|lutein|carotenoid (generic term)
+xanthophyll|1
+(noun)|xanthophyl|lutein|carotenoid (generic term)
+xanthopsia|1
+(noun)|visual impairment (generic term)|visual defect (generic term)|vision defect (generic term)|visual disorder (generic term)
+xanthorrhoeaceae|1
+(noun)|Xanthorrhoeaceae|family Xanthorrhoeaceae|grass tree family|liliid monocot family (generic term)
+xanthorroea|1
+(noun)|Xanthorroea|genus Xanthorroea|liliid monocot genus (generic term)
+xanthosis|1
+(noun)|skin disease (generic term)|disease of the skin (generic term)|skin disorder (generic term)|skin problem (generic term)|skin condition (generic term)
+xanthosoma|1
+(noun)|Xanthosoma|genus Xanthosoma|monocot genus (generic term)|liliopsid genus (generic term)
+xanthosoma atrovirens|1
+(noun)|yautia|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+xanthosoma sagittifolium|1
+(noun)|yautia|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+xanthous|1
+(adj)|yellow|yellowish|chromatic (similar term)
+xantusiidae|1
+(noun)|Xantusiidae|family Xantusiidae|reptile family (generic term)
+xavier|1
+(noun)|Xavier|Saint Francis Xavier|missionary (generic term)
+xc|2
+(adj)|ninety|90|cardinal (similar term)
+(noun)|ninety|90|XC|large integer (generic term)
+xci|1
+(adj)|ninety-one|91|cardinal (similar term)
+xcii|1
+(adj)|ninety-two|92|cardinal (similar term)
+xciii|1
+(adj)|ninety-three|93|cardinal (similar term)
+xciv|1
+(adj)|ninety-four|94|cardinal (similar term)
+xcl|1
+(adj)|one hundred ninety|190|cardinal (similar term)
+xcv|1
+(adj)|ninety-five|95|cardinal (similar term)
+xcvi|1
+(adj)|ninety-six|96|cardinal (similar term)
+xcvii|1
+(adj)|ninety-seven|97|cardinal (similar term)
+xcviii|1
+(adj)|ninety-eight|98|cardinal (similar term)
+xe|1
+(noun)|xenon|Xe|atomic number 54|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+xenarthra|1
+(noun)|Xenarthra|suborder Xenarthra|animal order (generic term)
+xenicidae|1
+(noun)|Xenicidae|family Xenicidae|Acanthisittidae|family Acanthisittidae|bird family (generic term)
+xenicus|1
+(noun)|Xenicus|genus Xenicus|bird genus (generic term)
+xenicus gilviventris|1
+(noun)|rock wren|Xenicus gilviventris|New Zealand wren (generic term)
+xenogeneic|1
+(adj)|allogeneic (antonym)
+xenogenesis|1
+(noun)|alternation of generations|heterogenesis|organic phenomenon (generic term)
+xenograft|1
+(noun)|heterograft|graft (generic term)|transplant (generic term)
+xenolith|1
+(noun)|rock (generic term)|stone (generic term)
+xenon|1
+(noun)|Xe|atomic number 54|chemical element (generic term)|element (generic term)|noble gas (generic term)|inert gas (generic term)|argonon (generic term)
+xenophanes|1
+(noun)|Xenophanes|philosopher (generic term)
+xenophobia|1
+(noun)|social phobia (generic term)
+xenophobic|1
+(adj)|afraid (similar term)
+xenophon|1
+(noun)|Xenophon|general (generic term)|full general (generic term)|historian (generic term)|historiographer (generic term)
+xenopodidae|1
+(noun)|Xenopodidae|family Xenopodidae|amphibian family (generic term)
+xenopus|1
+(noun)|Xenopus|genus Xenopus|amphibian genus (generic term)
+xenopus laevis|1
+(noun)|African clawed frog|Xenopus laevis|tongueless frog (generic term)
+xenorhyncus|1
+(noun)|Xenorhyncus|genus Xenorhyncus|bird genus (generic term)
+xenorhyncus asiaticus|1
+(noun)|policeman bird|black-necked stork|jabiru|Xenorhyncus asiaticus|stork (generic term)
+xenosauridae|1
+(noun)|Xenosauridae|family Xenosauridae|reptile family (generic term)
+xenosaurus|1
+(noun)|Xenosaurus|genus Xenosaurus|reptile genus (generic term)
+xenotime|1
+(noun)|mineral (generic term)
+xenotransplant|1
+(noun)|xenotransplantation|transplant (generic term)|transplantation (generic term)|organ transplant (generic term)
+xenotransplantation|1
+(noun)|xenotransplant|transplant (generic term)|transplantation (generic term)|organ transplant (generic term)
+xeranthemum|1
+(noun)|flower (generic term)
+xeranthemum annuum|1
+(noun)|immortelle|Xeranthemum annuum|everlasting (generic term)|everlasting flower (generic term)
+xeric|1
+(adj)|xerophytic (similar term)|hydric (antonym)|mesic (antonym)
+xerobates|1
+(noun)|Xerobates|genus Xerobates|reptile genus (generic term)
+xeroderma|1
+(noun)|xerodermia|ichthyosis (generic term)
+xeroderma pigmentosum|1
+(noun)|xeroderma (generic term)|xerodermia (generic term)
+xerodermia|1
+(noun)|xeroderma|ichthyosis (generic term)
+xerographic|1
+(adj)|photography|picture taking (related term)
+xerographic copier|1
+(noun)|Xerox|Xerox machine|duplicator (generic term)|copier (generic term)
+xerographic printer|1
+(noun)|page printer (generic term)|page-at-a-time printer (generic term)
+xerography|1
+(noun)|photography (generic term)|picture taking (generic term)
+xeroma|1
+(noun)|xerophthalmia|xerophthalmus|conjunctivitis arida|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+xerophile|1
+(noun)|desert plant|xerophyte|xerophytic plant|xerophilous plant|vascular plant (generic term)|tracheophyte (generic term)
+xerophilous plant|1
+(noun)|desert plant|xerophyte|xerophytic plant|xerophile|vascular plant (generic term)|tracheophyte (generic term)
+xerophthalmia|1
+(noun)|xerophthalmus|xeroma|conjunctivitis arida|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+xerophthalmus|1
+(noun)|xerophthalmia|xeroma|conjunctivitis arida|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+xerophyllum|1
+(noun)|Xerophyllum|genus Xerophyllum|liliid monocot genus (generic term)
+xerophyllum tenax|1
+(noun)|squaw grass|bear grass|Xerophyllum tenax|liliaceous plant (generic term)
+xerophyte|1
+(noun)|desert plant|xerophytic plant|xerophile|xerophilous plant|vascular plant (generic term)|tracheophyte (generic term)
+xerophytic|1
+(adj)|xeric (similar term)
+xerophytic plant|1
+(noun)|desert plant|xerophyte|xerophile|xerophilous plant|vascular plant (generic term)|tracheophyte (generic term)
+xeroradiography|1
+(noun)|radiography (generic term)
+xerostomia|1
+(noun)|dry mouth|dryness (generic term)|waterlessness (generic term)|xerotes (generic term)
+xerotes|1
+(noun)|dryness|waterlessness|condition (generic term)|status (generic term)|wetness (antonym)
+xerox|3
+(noun)|xerox copy|copy (generic term)
+(noun)|Xerox|xerographic copier|Xerox machine|duplicator (generic term)|copier (generic term)
+(verb)|photocopy|run off|reproduce (generic term)
+xerox copy|1
+(noun)|xerox|copy (generic term)
+xerox machine|1
+(noun)|Xerox|xerographic copier|Xerox machine|duplicator (generic term)|copier (generic term)
+xerxes i|1
+(noun)|Xerxes I|Xerxes the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+xerxes the great|1
+(noun)|Xerxes I|Xerxes the Great|king (generic term)|male monarch (generic term)|Rex (generic term)
+xestobium rufovillosum|1
+(noun)|deathwatch beetle|deathwatch|Xestobium rufovillosum|beetle (generic term)
+xhosa|1
+(noun)|Xhosa|Nguni (generic term)
+xi|3
+(adj)|eleven|11|cardinal (similar term)
+(noun)|eleven|11|XI|large integer (generic term)
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+xian|1
+(noun)|Xian|Sian|Singan|Changan|Hsian|city (generic term)|metropolis (generic term)|urban center (generic term)
+xii|2
+(adj)|twelve|12|dozen|cardinal (similar term)
+(noun)|twelve|12|XII|dozen|large integer (generic term)
+xiii|2
+(adj)|thirteen|13|cardinal (similar term)
+(noun)|thirteen|13|XIII|baker's dozen|long dozen|large integer (generic term)
+ximenesia encelioides|1
+(noun)|cowpen daisy|golden crownbeard|golden crown beard|butter daisy|Verbesina encelioides|Ximenesia encelioides|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+xinjiang|1
+(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state (generic term)|province (generic term)
+xinjiang uighur autonomous region|1
+(noun)|Xinjiang|Sinkiang|Xinjiang Uighur Autonomous Region|state (generic term)|province (generic term)
+xiphias|1
+(noun)|Xiphias|genus Xiphias|fish genus (generic term)
+xiphias gladius|1
+(noun)|swordfish|Xiphias gladius|scombroid (generic term)|scombroid fish (generic term)
+xiphiidae|1
+(noun)|Xiphiidae|family Xiphiidae|fish family (generic term)
+xiphium iris|1
+(noun)|Spanish iris|Iris xiphium|beardless iris (generic term)
+xiphoid process|1
+(noun)|bone (generic term)|os (generic term)
+xiphosura|1
+(noun)|Xiphosura|order Xiphosura|animal order (generic term)
+xiphosurus polyphemus|1
+(noun)|horseshoe crab|king crab|Limulus polyphemus|Xiphosurus polyphemus|arthropod (generic term)
+xishuangbanna dai|1
+(noun)|Tai Lue|Xishuangbanna Dai|Tai (generic term)
+xiv|2
+(adj)|fourteen|14|cardinal (similar term)
+(noun)|fourteen|14|XIV|large integer (generic term)
+xix|2
+(adj)|nineteen|19|cardinal (similar term)
+(noun)|nineteen|19|XIX|large integer (generic term)
+xizang|1
+(noun)|Tibet|Thibet|Xizang|Sitsang|Asian country (generic term)|Asian nation (generic term)
+xl|2
+(adj)|forty|40|twoscore|cardinal (similar term)
+(noun)|forty|40|XL|large integer (generic term)
+xli|1
+(adj)|forty-one|41|cardinal (similar term)
+xlii|1
+(adj)|forty-two|42|cardinal (similar term)
+xliii|1
+(adj)|forty-three|43|cardinal (similar term)
+xliv|1
+(adj)|forty-four|44|cardinal (similar term)
+xlv|1
+(adj)|forty-five|45|cardinal (similar term)
+xlvi|1
+(adj)|forty-six|46|cardinal (similar term)
+xlvii|1
+(adj)|forty-seven|47|cardinal (similar term)
+xlviii|1
+(adj)|forty-eight|48|cardinal (similar term)
+xmas|1
+(noun)|Christmas|Christmas Day|Xmas|Dec 25|legal holiday (generic term)|national holiday (generic term)|public holiday (generic term)|holy day of obligation (generic term)|quarter day (generic term)|feast day (generic term)|fete day (generic term)
+xor circuit|1
+(noun)|X-OR circuit|XOR circuit|XOR gate|gate (generic term)|logic gate (generic term)
+xor gate|1
+(noun)|X-OR circuit|XOR circuit|XOR gate|gate (generic term)|logic gate (generic term)
+xt|1
+(noun)|crosstalk|XT|noise (generic term)|interference (generic term)|disturbance (generic term)
+xtc|1
+(noun)|Adam|ecstasy|XTC|go|disco biscuit|cristal|X|hug drug|methylenedioxymethamphetamine (generic term)|MDMA (generic term)
+xv|2
+(adj)|fifteen|15|cardinal (similar term)
+(noun)|fifteen|15|XV|large integer (generic term)
+xvi|2
+(adj)|sixteen|16|cardinal (similar term)
+(noun)|sixteen|16|XVI|large integer (generic term)
+xvii|2
+(adj)|seventeen|17|cardinal (similar term)
+(noun)|seventeen|17|XVII|large integer (generic term)
+xviii|2
+(adj)|eighteen|18|cardinal (similar term)
+(noun)|eighteen|18|XVIII|large integer (generic term)
+xx|3
+(adj)|twenty|20|cardinal (similar term)
+(noun)|twenty|20|XX|large integer (generic term)
+(noun)|XX|sex chromosome (generic term)
+xxi|2
+(adj)|twenty-one|21|cardinal (similar term)
+(noun)|twenty-one|21|XXI|large integer (generic term)
+xxii|2
+(adj)|twenty-two|22|cardinal (similar term)
+(noun)|twenty-two|22|XXII|large integer (generic term)
+xxiii|2
+(adj)|twenty-three|23|cardinal (similar term)
+(noun)|twenty-three|23|XXIII|large integer (generic term)
+xxiv|2
+(adj)|twenty-four|24|cardinal (similar term)
+(noun)|twenty-four|24|XXIV|two dozen|large integer (generic term)
+xxix|2
+(adj)|twenty-nine|29|cardinal (similar term)
+(noun)|twenty-nine|29|XXIX|large integer (generic term)
+xxv|2
+(adj)|twenty-five|25|cardinal (similar term)
+(noun)|twenty-five|25|XXV|large integer (generic term)
+xxvi|2
+(adj)|twenty-six|26|cardinal (similar term)
+(noun)|twenty-six|26|XXVI|large integer (generic term)
+xxvii|2
+(adj)|twenty-seven|27|cardinal (similar term)
+(noun)|twenty-seven|27|XXVII|large integer (generic term)
+xxviii|2
+(adj)|twenty-eight|28|cardinal (similar term)
+(noun)|twenty-eight|28|XXVIII|large integer (generic term)
+xxx|3
+(adj)|thirty|30|cardinal (similar term)
+(noun)|thirty|30|XXX|large integer (generic term)
+(noun)|XXX|sex chromosome (generic term)
+xxxi|1
+(adj)|thirty-one|31|cardinal (similar term)
+xxxii|1
+(adj)|thirty-two|32|cardinal (similar term)
+xxxiii|1
+(adj)|thirty-three|33|cardinal (similar term)
+xxxiv|1
+(adj)|thirty-four|34|cardinal (similar term)
+xxxv|1
+(adj)|thirty-five|35|cardinal (similar term)
+xxxvi|1
+(adj)|thirty-six|36|cardinal (similar term)
+xxxvii|1
+(adj)|thirty-seven|37|cardinal (similar term)
+xxxviii|1
+(adj)|thirty-eight|38|cardinal (similar term)
+xxy|1
+(noun)|XXY|sex chromosome (generic term)
+xxy-syndrome|1
+(noun)|Klinefelter's syndrome|Klinefelter syndrome|XXY-syndrome|syndrome (generic term)
+xy|1
+(noun)|XY|sex chromosome (generic term)
+xylaria|1
+(noun)|Xylaria|genus Xylaria|fungus genus (generic term)
+xylaria mali|1
+(noun)|black root rot fungus|Xylaria mali|fungus (generic term)
+xylaria polymorpha|1
+(noun)|dead-man's-fingers|dead-men's-fingers|Xylaria polymorpha|fungus (generic term)
+xylariaceae|1
+(noun)|Xylariaceae|family Xylariaceae|fungus family (generic term)
+xylem|1
+(noun)|vascular tissue (generic term)
+xylene|1
+(noun)|xylol|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+xylocaine|1
+(noun)|Lidocaine|Xylocaine|local anesthetic (generic term)|local anaesthetic (generic term)|local (generic term)|topical anesthetic (generic term)|topical anaesthetic (generic term)
+xylocopa|1
+(noun)|Xylocopa|genus Xylocopa|arthropod genus (generic term)
+xylol|1
+(noun)|xylene|solvent (generic term)|dissolvent (generic term)|dissolver (generic term)|dissolving agent (generic term)|resolvent (generic term)
+xylomelum|1
+(noun)|Xylomelum|genus Xylomelum|dicot genus (generic term)|magnoliopsid genus (generic term)
+xylomelum pyriforme|1
+(noun)|native pear|woody pear|Xylomelum pyriforme|shrub (generic term)|bush (generic term)
+xylophone|1
+(noun)|marimba|percussion instrument (generic term)|percussive instrument (generic term)
+xylophonist|1
+(noun)|percussionist (generic term)
+xylopia|1
+(noun)|Xylopia|genus Xylopia|magnoliid dicot genus (generic term)
+xylopia aethiopica|1
+(noun)|Guinea pepper|negro pepper|Xylopia aethiopica|tree (generic term)
+xylose|1
+(noun)|wood sugar|carbohydrate (generic term)|saccharide (generic term)|sugar (generic term)
+xylosma|1
+(noun)|Xylosma congestum|shrub (generic term)|bush (generic term)
+xylosma congestum|1
+(noun)|xylosma|Xylosma congestum|shrub (generic term)|bush (generic term)
+xyphophorus|1
+(noun)|Xyphophorus|genus Xyphophorus|fish genus (generic term)
+xyphophorus helleri|1
+(noun)|swordtail|helleri|topminnow|Xyphophorus helleri|cyprinodont (generic term)
+xyridaceae|1
+(noun)|Xyridaceae|family Xyridaceae|yellow-eyed grass family|monocot family (generic term)|liliopsid family (generic term)
+xyridales|1
+(noun)|Xyridales|order Xyridales|Commelinales|order Commelinales|plant order (generic term)
+xyris|1
+(noun)|Xyris|genus Xyris|monocot genus (generic term)|liliopsid genus (generic term)
+xyris operculata|1
+(noun)|tall yellow-eye|Xyris operculata|yellow-eyed grass (generic term)
+xyy|1
+(noun)|XYY|sex chromosome (generic term)
+y|2
+(noun)|yttrium|Y|atomic number 39|metallic element (generic term)|metal (generic term)
+(noun)|Y|letter y|wye|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+y-axis|1
+(noun)|coordinate axis (generic term)
+y-linked gene|1
+(noun)|Y-linked gene|holandric gene|gene (generic term)|cistron (generic term)|factor (generic term)
+y-shaped|1
+(adj)|Y-shaped|formed (similar term)
+y2k|1
+(noun)|Y2K|year (generic term)|twelvemonth (generic term)|yr (generic term)
+y2k compliant|1
+(adj)|Y2K compliant|obedient (similar term)
+y chromosome|1
+(noun)|Y chromosome|sex chromosome (generic term)
+yacca|1
+(noun)|yacca podocarp|Podocarpus coriaceus|conifer (generic term)|coniferous tree (generic term)
+yacca podocarp|1
+(noun)|yacca|Podocarpus coriaceus|conifer (generic term)|coniferous tree (generic term)
+yacht|2
+(noun)|racing yacht|vessel (generic term)|watercraft (generic term)
+(verb)|boat (generic term)
+yacht chair|1
+(noun)|folding chair (generic term)
+yacht club|1
+(noun)|boat club|club (generic term)|social club (generic term)|society (generic term)|guild (generic term)|gild (generic term)|lodge (generic term)|order (generic term)
+yacht race|1
+(noun)|sailing-race|boat race (generic term)
+yachting|1
+(noun)|boating|water travel (generic term)|seafaring (generic term)
+yachting cap|1
+(noun)|kepi|peaked cap|service cap|cap (generic term)
+yachtsman|1
+(noun)|yachtswoman|sailor (generic term)|crewman (generic term)
+yachtswoman|1
+(noun)|yachtsman|sailor (generic term)|crewman (generic term)
+yack|2
+(noun)|yak|yakety-yak|chatter|cackle|talk (generic term)|talking (generic term)
+(verb)|jaw|yack away|rattle on|yap away|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+yack away|1
+(verb)|yack|jaw|rattle on|yap away|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+yafo|1
+(noun)|Jaffa|Joppa|Yafo|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+yagi|1
+(noun)|Yagi aerial|directional antenna (generic term)
+yagi aerial|1
+(noun)|yagi|Yagi aerial|directional antenna (generic term)
+yahi|2
+(noun)|Yahi|Hokan (generic term)|Hoka (generic term)
+(noun)|Yahi|Yanan (generic term)
+yahoo|3
+(noun)|yokel|rube|hick|hayseed|bumpkin|chawbacon|rustic (generic term)
+(noun)|Yahoo|fictional character (generic term)|fictitious character (generic term)|character (generic term)
+(noun)|Yahoo|search engine (generic term)
+yahve|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yahveh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yahwe|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yahweh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yajur-veda|1
+(noun)|Yajur-Veda|Samhita (generic term)
+yak|2
+(noun)|yack|yakety-yak|chatter|cackle|talk (generic term)|talking (generic term)
+(noun)|Bos grunniens|ox (generic term)|wild ox (generic term)
+yak's milk|1
+(noun)|milk (generic term)
+yak butter|1
+(noun)|butter (generic term)
+yakety-yak|1
+(noun)|yak|yack|chatter|cackle|talk (generic term)|talking (generic term)
+yakima|1
+(noun)|Yakima|town (generic term)
+yakut|2
+(noun)|Yakut|Turki (generic term)
+(noun)|Yakut|Turki (generic term)|Turkic (generic term)|Turko-Tatar (generic term)|Turkic language (generic term)
+yakuza|2
+(noun)|gangster (generic term)|mobster (generic term)
+(noun)|organized crime (generic term)|gangland (generic term)|gangdom (generic term)
+yale|2
+(noun)|Yale University|Yale|university (generic term)
+(noun)|Yale|Elihu Yale|philanthropist (generic term)|altruist (generic term)
+yale university|1
+(noun)|Yale University|Yale|university (generic term)
+yalta|1
+(noun)|Yalta|city (generic term)|metropolis (generic term)|urban center (generic term)
+yaltopya|1
+(noun)|Ethiopia|Federal Democratic Republic of Ethiopia|Yaltopya|Abyssinia|African country (generic term)|African nation (generic term)
+yalu|1
+(noun)|Yalu|Yalu River|river (generic term)
+yalu river|2
+(noun)|Yalu|Yalu River|river (generic term)
+(noun)|Yalu River|pitched battle (generic term)
+yam|4
+(noun)|tuber (generic term)
+(noun)|yam plant|vine (generic term)
+(noun)|sweet potato (generic term)
+(noun)|root vegetable (generic term)
+yam bean|2
+(noun)|potato bean|Pachyrhizus tuberosus|vine (generic term)
+(noun)|Pachyrhizus erosus|vine (generic term)
+yam family|1
+(noun)|Dioscoreaceae|family Dioscoreaceae|plant family (generic term)
+yam plant|1
+(noun)|yam|vine (generic term)
+yama|1
+(noun)|Yama|Hindu deity (generic term)
+yamaltu|1
+(noun)|Tera|Pidlimdi|Yamaltu|Biu-Mandara (generic term)
+yamamoto|1
+(noun)|Yamamoto|Isoroku Yamamoto|admiral (generic term)|full admiral (generic term)
+yamani|1
+(noun)|Yamani|Ahmed Zoki Yamani|minister (generic term)|government minister (generic term)
+yammer|2
+(verb)|howl|wrawl|yowl|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|whine|grizzle|yawp|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+yamoussukro|1
+(noun)|Yamoussukro|national capital (generic term)
+yana|2
+(noun)|Yana|Hokan (generic term)|Hoka (generic term)
+(noun)|Yana|Yanan (generic term)
+yanan|1
+(noun)|Yanan|Hokan (generic term)|Hoka (generic term)
+yang|1
+(noun)|principle (generic term)|rule (generic term)|yin (antonym)
+yang chen ning|1
+(noun)|Yang Chen Ning|Chen N. Yang|physicist (generic term)
+yangon|1
+(noun)|Yangon|Rangoon|national capital (generic term)
+yangtze|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+yangtze kiang|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+yangtze river|1
+(noun)|Chang Jiang|Changjiang|Chang|Yangtze|Yangtze River|Yangtze Kiang|river (generic term)
+yank|3
+(noun)|Yankee|Yank|Northerner|American (generic term)
+(noun)|Yankee|Yank|Yankee-Doodle|American (generic term)
+(verb)|jerk|pull (generic term)|draw (generic term)|force (generic term)
+yankee|4
+(adj)|Yankee|northern (similar term)
+(noun)|Yankee|Yank|Northerner|American (generic term)
+(noun)|New Englander|Yankee|American (generic term)
+(noun)|Yankee|Yank|Yankee-Doodle|American (generic term)
+yankee-doodle|1
+(noun)|Yankee|Yank|Yankee-Doodle|American (generic term)
+yankee corn|1
+(noun)|flint corn|flint maize|Yankee corn|Zea mays indurata|field corn (generic term)
+yanker|1
+(noun)|jerker|puller (generic term)
+yanquapin|1
+(noun)|water chinquapin|American lotus|Nelumbo lutea|water lily (generic term)
+yaounde|1
+(noun)|Yaounde|capital of Cameroon|national capital (generic term)
+yap|2
+(noun)|trap|cakehole|hole|maw|gob|mouth (generic term)|oral cavity (generic term)|oral fissure (generic term)|rima oris (generic term)
+(verb)|yelp|yip|bark (generic term)
+yap away|1
+(verb)|yack|jaw|yack away|rattle on|talk (generic term)|speak (generic term)|utter (generic term)|mouth (generic term)|verbalize (generic term)|verbalise (generic term)
+yard|8
+(noun)|pace|linear unit (generic term)
+(noun)|grounds|curtilage|field (generic term)
+(noun)|railway yard|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+(noun)|enclosure (generic term)
+(noun)|cubic yard|volume unit (generic term)|capacity unit (generic term)|capacity measure (generic term)|cubage unit (generic term)|cubic measure (generic term)|cubic content unit (generic term)|displacement unit (generic term)|cubature unit (generic term)
+(noun)|spar (generic term)
+(noun)|thousand|one thousand|1000|M|K|chiliad|G|grand|thou|large integer (generic term)
+(noun)|tract (generic term)|piece of land (generic term)|piece of ground (generic term)|parcel of land (generic term)|parcel (generic term)
+yard-long bean|1
+(noun)|asparagus bean|Vigna unguiculata sesquipedalis|Vigna sesquipedalis|legume (generic term)|leguminous plant (generic term)
+yard bird|2
+(noun)|yardbird|recruit (generic term)|military recruit (generic term)
+(noun)|convict|con|inmate|jail bird|jailbird|gaolbird|yardbird|prisoner (generic term)|captive (generic term)
+yard donkey|1
+(noun)|yarder|winch (generic term)|windlass (generic term)
+yard goods|1
+(noun)|piece goods|merchandise (generic term)|ware (generic term)|product (generic term)
+yard grass|1
+(noun)|yardgrass|wire grass|goose grass|Eleusine indica|millet (generic term)
+yard line|1
+(noun)|line (generic term)
+yard marker|1
+(noun)|marker (generic term)
+yard measure|1
+(noun)|yardstick|rule (generic term)|ruler (generic term)
+yard sale|1
+(noun)|garage sale|sale (generic term)|cut-rate sale (generic term)|sales event (generic term)
+yardage|1
+(noun)|distance (generic term)
+yardarm|1
+(noun)|end (generic term)
+yardbird|2
+(noun)|yard bird|recruit (generic term)|military recruit (generic term)
+(noun)|convict|con|inmate|jail bird|jailbird|gaolbird|yard bird|prisoner (generic term)|captive (generic term)
+yardbird parker|1
+(noun)|Parker|Charlie Parker|Yardbird Parker|Bird Parker|Charles Christopher Parker|saxophonist (generic term)|saxist (generic term)
+yarder|2
+(noun)|linear unit (generic term)
+(noun)|yard donkey|winch (generic term)|windlass (generic term)
+yardgrass|1
+(noun)|yard grass|wire grass|goose grass|Eleusine indica|millet (generic term)
+yardie|1
+(noun)|gangster (generic term)|mobster (generic term)
+yardman|2
+(noun)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)
+(noun)|laborer (generic term)|manual laborer (generic term)|labourer (generic term)|jack (generic term)
+yardmaster|1
+(noun)|trainmaster|train dispatcher|dispatcher (generic term)|trainman (generic term)|railroader (generic term)|railroad man (generic term)|railwayman (generic term)|railway man (generic term)
+yardstick|2
+(noun)|standard (generic term)|criterion (generic term)|measure (generic term)|touchstone (generic term)
+(noun)|yard measure|rule (generic term)|ruler (generic term)
+yarmelke|1
+(noun)|yarmulke|yarmulka|skullcap (generic term)
+yarmulka|1
+(noun)|yarmulke|yarmelke|skullcap (generic term)
+yarmulke|1
+(noun)|yarmulka|yarmelke|skullcap (generic term)
+yarn|3
+(noun)|narration|recital|report (generic term)|account (generic term)
+(noun)|thread|cord (generic term)
+(verb)|tell (generic term)|narrate (generic term)|recount (generic term)|recite (generic term)
+yarn-dye|1
+(verb)|impress|dye (generic term)
+yarn-spinning|1
+(adj)|communicative (similar term)|communicatory (similar term)
+yarrow|1
+(noun)|milfoil|Achillea millefolium|achillea (generic term)
+yashmac|1
+(noun)|yashmak|head covering (generic term)|veil (generic term)
+yashmak|1
+(noun)|yashmac|head covering (generic term)|veil (generic term)
+yasser arafat|1
+(noun)|Arafat|Yasser Arafat|statesman (generic term)|solon (generic term)|national leader (generic term)
+yastrzemski|1
+(noun)|Yastrzemski|Carl Yastrzemski|ballplayer (generic term)|baseball player (generic term)
+yataghan|1
+(noun)|knife (generic term)
+yatobyo|1
+(noun)|tularemia|tularaemia|rabbit fever|deer fly fever|zoonosis (generic term)|zoonotic disease (generic term)
+yaup|1
+(verb)|howl|ululate|wail|roar|yawl|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+yaupon holly|1
+(noun)|holly (generic term)
+yautia|1
+(noun)|tannia|spoonflower|malanga|Xanthosoma sagittifolium|Xanthosoma atrovirens|arum (generic term)|aroid (generic term)
+yavapai|2
+(noun)|Yavapai|Hokan (generic term)|Hoka (generic term)
+(noun)|Yavapai|Yuman (generic term)
+yaw|4
+(noun)|swerve|turning (generic term)|turn (generic term)
+(verb)|gape|yawn|be (generic term)
+(verb)|deviate (generic term)|divert (generic term)
+(verb)|swerve (generic term)|sheer (generic term)|curve (generic term)|trend (generic term)|veer (generic term)|slue (generic term)|slew (generic term)|cut (generic term)
+yawl|3
+(noun)|small boat (generic term)
+(noun)|dandy|sailing vessel (generic term)|sailing ship (generic term)
+(verb)|howl|ululate|wail|roar|yaup|shout (generic term)|shout out (generic term)|cry (generic term)|call (generic term)|yell (generic term)|scream (generic term)|holler (generic term)|hollo (generic term)|squall (generic term)
+yawn|3
+(noun)|yawning|oscitance|oscitancy|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+(verb)|breathe (generic term)|take a breath (generic term)|respire (generic term)|suspire (generic term)
+(verb)|gape|yaw|be (generic term)
+yawner|1
+(noun)|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+yawning|4
+(adj)|open (similar term)
+(adj)|open (similar term)|opened (similar term)
+(adj)|drowsy|oscitant|inattentive (similar term)
+(noun)|yawn|oscitance|oscitancy|reflex (generic term)|instinctive reflex (generic term)|innate reflex (generic term)|inborn reflex (generic term)|unconditioned reflex (generic term)|physiological reaction (generic term)
+yawp|2
+(verb)|bawl|roar (generic term)|howl (generic term)
+(verb)|whine|grizzle|yammer|complain (generic term)|kick (generic term)|plain (generic term)|sound off (generic term)|quetch (generic term)|kvetch (generic term)
+yaws|1
+(noun)|frambesia|framboesia|infectious disease (generic term)
+yay|1
+(noun)|Yay|Tai (generic term)
+yazoo|1
+(noun)|Yazoo|Yazoo River|river (generic term)
+yazoo river|1
+(noun)|Yazoo|Yazoo River|river (generic term)
+yb|1
+(noun)|ytterbium|Yb|atomic number 70|metallic element (generic term)|metal (generic term)
+yea|2
+(noun)|affirmative (generic term)|nay (antonym)
+(adv)|yeah
+yeah|1
+(adv)|yea
+year|3
+(noun)|twelvemonth|yr|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|class|gathering (generic term)|assemblage (generic term)
+year-around|1
+(adj)|year-round|seasonal (antonym)
+year-end|2
+(adj)|closing (similar term)
+(noun)|end (generic term)|ending (generic term)
+year-round|1
+(adj)|year-around|seasonal (antonym)
+year dot|1
+(noun)|long time (generic term)|age (generic term)|years (generic term)
+year of grace|1
+(noun)|year (generic term)|twelvemonth (generic term)|yr (generic term)
+yearbook|2
+(noun)|book (generic term)
+(noun)|annual|yearly|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+yearling|3
+(noun)|toddler|tot|bambino|child (generic term)|kid (generic term)|youngster (generic term)|minor (generic term)|shaver (generic term)|nipper (generic term)|small fry (generic term)|tiddler (generic term)|tike (generic term)|tyke (generic term)|fry (generic term)|nestling (generic term)
+(noun)|racehorse (generic term)|race horse (generic term)|bangtail (generic term)
+(noun)|placental (generic term)|placental mammal (generic term)|eutherian (generic term)|eutherian mammal (generic term)
+yearlong|1
+(adj)|long (similar term)
+yearly|3
+(adj)|annual|time period|period of time|period (related term)
+(noun)|annual|yearbook|reference book (generic term)|reference (generic term)|reference work (generic term)|book of facts (generic term)
+(adv)|annually|every year|each year
+yearn|3
+(verb)|hanker|long|desire (generic term)|want (generic term)
+(verb)|ache|yen|pine|languish|hanker (generic term)|long (generic term)|yearn (generic term)
+(verb)|care for (generic term)|cherish (generic term)|hold dear (generic term)|treasure (generic term)
+yearned-for|1
+(adj)|longed-for|wished-for|wanted (similar term)
+yearner|1
+(noun)|longer|thirster|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+yearning|1
+(noun)|longing|hungriness|desire (generic term)
+yearningly|1
+(adv)|longingly
+years|3
+(noun)|old age|age|eld|geezerhood|time of life (generic term)
+(noun)|long time|age|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|days|life (generic term)
+yeast|2
+(noun)|barm|leaven (generic term)|leavening (generic term)
+(noun)|fungus (generic term)
+yeast cake|1
+(noun)|yeast (generic term)|barm (generic term)
+yeastlike|1
+(adj)|yeasty|leaven|leavening (related term)|fungus (related term)
+yeasty|3
+(adj)|yeastlike|leaven|leavening (related term)|fungus (related term)
+(adj)|zestful|zesty|barmy|spirited (similar term)
+(adj)|creative (similar term)|originative (similar term)
+yeats|1
+(noun)|Yeats|William Butler Yeats|W. B. Yeats|poet (generic term)|dramatist (generic term)|playwright (generic term)
+yeatsian|1
+(adj)|Yeatsian|poet|dramatist|playwright (related term)
+yeddo|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+yedo|1
+(noun)|Tokyo|Tokio|Yeddo|Yedo|Edo|Japanese capital|capital of Japan|national capital (generic term)
+yehudi menuhin|1
+(noun)|Menuhin|Yehudi Menuhin|Sir Yehudi Menuhin|violinist (generic term)|fiddler (generic term)
+yekaterinoslav|1
+(noun)|Dnipropetrovsk|Yekaterinoslav|city (generic term)|metropolis (generic term)|urban center (generic term)
+yell|4
+(noun)|cry|outcry|call|shout|vociferation|utterance (generic term)|vocalization (generic term)
+(noun)|cry|utterance (generic term)|vocalization (generic term)
+(verb)|shout|shout out|cry|call|scream|holler|hollo|squall|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)|call out (related term)|cry out (related term)
+(verb)|scream|shout (generic term)
+yelled|1
+(adj)|shouted|loud (similar term)
+yeller|1
+(noun)|roarer|bawler|bellower|screamer|screecher|shouter|communicator (generic term)
+yelling|2
+(adj)|crying|shouting|noisy (similar term)
+(noun)|shouting|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+yellow|8
+(adj)|yellowish|xanthous|chromatic (similar term)
+(adj)|chicken|chickenhearted|lily-livered|white-livered|yellow-bellied|cowardly (similar term)|fearful (similar term)
+(adj)|yellowed|old (similar term)
+(adj)|scandalmongering|sensationalistic|sensational (similar term)
+(adj)|dishonorable (similar term)|dishonourable (similar term)
+(adj)|jaundiced|icteric|unhealthy (similar term)
+(noun)|yellowness|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+(verb)|discolor (generic term)|discolour (generic term)|colour (generic term)|color (generic term)
+yellow-banded|1
+(adj)|patterned (similar term)
+yellow-beige|1
+(adj)|yellowish-beige|chromatic (similar term)
+yellow-bellied|1
+(adj)|chicken|chickenhearted|lily-livered|white-livered|yellow|cowardly (similar term)|fearful (similar term)
+yellow-bellied sapsucker|1
+(noun)|Sphyrapicus varius|sapsucker (generic term)
+yellow-bellied terrapin|1
+(noun)|slider|Pseudemys scripta|turtle (generic term)
+yellow-blindness|1
+(noun)|tetartanopia|yellow-blue dichromacy (generic term)|yellow-blue color blindness (generic term)
+yellow-blue color blindness|1
+(noun)|yellow-blue dichromacy|dichromacy (generic term)|dichromatism (generic term)|dichromatopsia (generic term)|dichromia (generic term)|dichromasy (generic term)
+yellow-blue dichromacy|1
+(noun)|yellow-blue color blindness|dichromacy (generic term)|dichromatism (generic term)|dichromatopsia (generic term)|dichromia (generic term)|dichromasy (generic term)
+yellow-breasted bunting|1
+(noun)|Emberiza aureola|bunting (generic term)
+yellow-breasted chat|1
+(noun)|Icteria virens|New World chat (generic term)|chat (generic term)
+yellow-brown|1
+(adj)|amber|brownish-yellow|chromatic (similar term)
+yellow-crowned night heron|1
+(noun)|Nyctanassa violacea|night heron (generic term)|night raven (generic term)
+yellow-dog contract|1
+(noun)|labor contract (generic term)|labor agreement (generic term)|collective agreement (generic term)
+yellow-eyed grass|1
+(noun)|marsh plant (generic term)|bog plant (generic term)|swamp plant (generic term)
+yellow-eyed grass family|1
+(noun)|Xyridaceae|family Xyridaceae|monocot family (generic term)|liliopsid family (generic term)
+yellow-fever mosquito|1
+(noun)|Aedes aegypti|mosquito (generic term)
+yellow-gray|1
+(adj)|yellow-grey|yellowish-grey|yellowish-gray|achromatic (similar term)
+yellow-green|1
+(adj)|chromatic (similar term)
+yellow-green algae|1
+(noun)|alga (generic term)|algae (generic term)
+yellow-grey|1
+(adj)|yellow-gray|yellowish-grey|yellowish-gray|achromatic (similar term)
+yellow-leaf sickle pine|1
+(noun)|Falcatifolium taxoides|conifer (generic term)|coniferous tree (generic term)
+yellow-marked|1
+(adj)|patterned (similar term)
+yellow-orange|1
+(adj)|yellowish-orange|chromatic (similar term)
+yellow-shafted flicker|1
+(noun)|Colaptes auratus|yellowhammer|flicker (generic term)
+yellow-spotted|1
+(adj)|patterned (similar term)
+yellow-striped|1
+(adj)|patterned (similar term)
+yellow-throated marten|1
+(noun)|Charronia flavigula|marten (generic term)|marten cat (generic term)
+yellow-tinged|1
+(adj)|chromatic (similar term)
+yellow-tipped|1
+(adj)|tipped (similar term)
+yellow-white|1
+(adj)|yellowish-white|achromatic (similar term)
+yellow adder's tongue|1
+(noun)|trout lily|amberbell|Erythronium americanum|dogtooth violet (generic term)|dogtooth (generic term)|dog's-tooth violet (generic term)
+yellow ageratum|1
+(noun)|African daisy|Lonas inodora|Lonas annua|flower (generic term)
+yellow asphodel|1
+(noun)|king's spear|Asphodeline lutea|asphodel (generic term)
+yellow avens|2
+(noun)|Geum macrophyllum|avens (generic term)
+(noun)|Geum alleppicum strictum|Geum strictum|avens (generic term)
+yellow bachelor's button|1
+(noun)|orange milkwort|yellow milkwort|candyweed|Polygala lutea|milkwort (generic term)
+yellow bass|1
+(noun)|Morone interrupta|serranid fish (generic term)|serranid (generic term)
+yellow bean|1
+(noun)|wax bean|fresh bean (generic term)
+yellow bedstraw|1
+(noun)|yellow cleavers|Our Lady's bedstraw|Galium verum|bedstraw (generic term)
+yellow bells|1
+(noun)|California yellow bells|whispering bells|Emmanthe penduliflora|herb (generic term)|herbaceous plant (generic term)
+yellow berry|1
+(noun)|buckthorn berry|fruit (generic term)
+yellow bile|1
+(noun)|choler|liquid body substance (generic term)|bodily fluid (generic term)|body fluid (generic term)|humor (generic term)|humour (generic term)
+yellow birch|1
+(noun)|Betula alleghaniensis|Betula leutea|birch (generic term)|birch tree (generic term)
+yellow bone marrow|1
+(noun)|yellow marrow|marrow (generic term)|bone marrow (generic term)
+yellow bristle grass|1
+(noun)|yellow bristlegrass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail (generic term)|foxtail grass (generic term)
+yellow bristlegrass|1
+(noun)|yellow bristle grass|yellow foxtail|glaucous bristlegrass|Setaria glauca|foxtail (generic term)|foxtail grass (generic term)
+yellow bugle|1
+(noun)|ground pine|Ajuga chamaepitys|bugle (generic term)|bugleweed (generic term)
+yellow bunting|1
+(noun)|yellowhammer|Emberiza citrinella|bunting (generic term)
+yellow cattley guava|1
+(noun)|guava|strawberry guava|Psidium littorale|fruit tree (generic term)
+yellow cedar|1
+(noun)|yellow cypress|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar (generic term)|cedar tree (generic term)
+yellow chamomile|1
+(noun)|golden marguerite|dyers' chamomile|Anthemis tinctoria|composite (generic term)|composite plant (generic term)
+yellow chestnut oak|1
+(noun)|chinquapin oak|chinkapin oak|Quercus muehlenbergii|chestnut oak (generic term)
+yellow cleavers|1
+(noun)|yellow bedstraw|Our Lady's bedstraw|Galium verum|bedstraw (generic term)
+yellow clintonia|1
+(noun)|heal all|Clintonia borealis|clintonia (generic term)|Clinton's lily (generic term)
+yellow colicroot|1
+(noun)|Aletris aurea|colicroot (generic term)|colic root (generic term)|crow corn (generic term)|star grass (generic term)|unicorn root (generic term)
+yellow cypress|1
+(noun)|yellow cedar|Nootka cypress|Alaska cedar|Chamaecyparis nootkatensis|cedar (generic term)|cedar tree (generic term)
+yellow delicious|1
+(noun)|Golden Delicious|Yellow Delicious|Delicious (generic term)
+yellow dock|1
+(noun)|bitter dock|broad-leaved dock|Rumex obtusifolius|dock (generic term)|sorrel (generic term)|sour grass (generic term)
+yellow dwarf|1
+(noun)|plant disease (generic term)
+yellow dwarf of potato|1
+(noun)|potato yellow dwarf|yellow dwarf (generic term)
+yellow fever|1
+(noun)|yellow jack|black vomit|infectious disease (generic term)
+yellow flag|1
+(noun)|yellow iris|yellow water flag|Iris pseudacorus|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+yellow foxglove|1
+(noun)|straw foxglove|Digitalis lutea|foxglove (generic term)|digitalis (generic term)
+yellow foxtail|1
+(noun)|yellow bristlegrass|yellow bristle grass|glaucous bristlegrass|Setaria glauca|foxtail (generic term)|foxtail grass (generic term)
+yellow giant hyssop|1
+(noun)|Agastache nepetoides|giant hyssop (generic term)
+yellow globe lily|1
+(noun)|golden fairy lantern|Calochortus amabilis|globe lily (generic term)|fairy lantern (generic term)
+yellow goatfish|1
+(noun)|Mulloidichthys martinicus|goatfish (generic term)|red mullet (generic term)|surmullet (generic term)|Mullus surmuletus (generic term)
+yellow granadilla|2
+(noun)|Jamaica honeysuckle|Passiflora laurifolia|passionflower (generic term)|passionflower vine (generic term)
+(noun)|bell apple|sweet cup|water lemon|passion fruit (generic term)
+yellow green|1
+(noun)|yellowish green|chartreuse|Paris green|pea green|green (generic term)|greenness (generic term)|viridity (generic term)
+yellow gurnard|1
+(noun)|tub gurnard|Trigla lucerna|gurnard (generic term)
+yellow hawkweed|1
+(noun)|king devil|Hieracium praealtum|weed (generic term)
+yellow henbane|1
+(noun)|Physalis viscosa|ground cherry (generic term)|husk tomato (generic term)
+yellow honeysuckle|2
+(noun)|Lonicera flava|honeysuckle (generic term)
+(noun)|Lonicera dioica|honeysuckle (generic term)
+yellow horned poppy|1
+(noun)|horn poppy|horned poppy|sea poppy|Glaucium flavum|flower (generic term)
+yellow hornet|1
+(noun)|yellow jacket|Vespula maculifrons|hornet (generic term)
+yellow iris|1
+(noun)|yellow flag|yellow water flag|Iris pseudacorus|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+yellow ironweed|1
+(noun)|wingstem|golden ironweed|golden honey plant|Verbesina alternifolia|Actinomeris alternifolia|crownbeard (generic term)|crown-beard (generic term)|crown beard (generic term)
+yellow jacaranda|1
+(noun)|tipu|tipu tree|pride of Bolivia|tree (generic term)
+yellow jack|3
+(noun)|yellow fever|black vomit|infectious disease (generic term)
+(noun)|flag (generic term)
+(noun)|Caranx bartholomaei|jack (generic term)
+yellow jacket|2
+(noun)|pentobarbital sodium|pentobarbital|Nembutal|barbiturate (generic term)
+(noun)|yellow hornet|Vespula maculifrons|hornet (generic term)
+yellow jasmine|1
+(noun)|yellow jessamine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine (generic term)
+yellow jessamine|1
+(noun)|yellow jasmine|Carolina jasmine|evening trumpet flower|Gelsemium sempervirens|vine (generic term)
+yellow journalism|1
+(noun)|tabloid|tab|journalism (generic term)|news media (generic term)|fourth estate (generic term)
+yellow lady's slipper|1
+(noun)|yellow lady-slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+yellow lady-slipper|1
+(noun)|yellow lady's slipper|Cypripedium calceolus|Cypripedium parviflorum|lady's slipper (generic term)|lady-slipper (generic term)|ladies' slipper (generic term)|slipper orchid (generic term)
+yellow light|1
+(noun)|traffic light (generic term)|traffic signal (generic term)|stoplight (generic term)
+yellow locust|1
+(noun)|black locust|Robinia pseudoacacia|locust tree (generic term)|locust (generic term)
+yellow loosestrife|1
+(noun)|garden loosestrife|Lysimachia vulgaris|loosestrife (generic term)
+yellow lupine|1
+(noun)|Lupinus luteus|lupine (generic term)|lupin (generic term)
+yellow man|1
+(noun)|man (generic term)|adult male (generic term)|Oriental (generic term)|oriental person (generic term)
+yellow mariposa tulip|1
+(noun)|Calochortus luteus|mariposa (generic term)|mariposa tulip (generic term)|mariposa lily (generic term)
+yellow marrow|1
+(noun)|yellow bone marrow|marrow (generic term)|bone marrow (generic term)
+yellow metal|1
+(noun)|alpha-beta brass|Muntz metal|brass (generic term)
+yellow milkwort|1
+(noun)|orange milkwort|candyweed|yellow bachelor's button|Polygala lutea|milkwort (generic term)
+yellow mombin|2
+(noun)|hog plum|yellow mombin tree|Spondias mombin|fruit tree (generic term)
+(noun)|hog plum|edible fruit (generic term)
+yellow mombin tree|1
+(noun)|hog plum|yellow mombin|Spondias mombin|fruit tree (generic term)
+yellow mountain saxifrage|1
+(noun)|Saxifraga aizoides|saxifrage (generic term)|breakstone (generic term)|rockfoil (generic term)
+yellow nutgrass|1
+(noun)|chufa|earth almond|ground almond|rush nut|Cyperus esculentus|sedge (generic term)
+yellow oak|1
+(noun)|black oak|quercitron|quercitron oak|Quercus velutina|oak (generic term)|oak tree (generic term)
+yellow ocher|1
+(noun)|yellow ochre|ocher (generic term)|ochre (generic term)
+yellow ochre|1
+(noun)|yellow ocher|ocher (generic term)|ochre (generic term)
+yellow oleander|1
+(noun)|Thevetia peruviana|Thevetia neriifolia|shrub (generic term)|bush (generic term)
+yellow pages|1
+(noun)|phonebook (generic term)|phone book (generic term)|telephone book (generic term)|telephone directory (generic term)
+yellow paper daisy|1
+(noun)|strawflower|golden everlasting|Helichrysum bracteatum|everlasting (generic term)|everlasting flower (generic term)
+yellow parilla|1
+(noun)|common moonseed|Canada moonseed|Menispermum canadense|moonseed (generic term)
+yellow pea|1
+(noun)|false lupine|golden pea|Thermopsis macrophylla|bush pea (generic term)
+yellow perch|1
+(noun)|Perca flavescens|perch (generic term)
+yellow peril|1
+(noun)|menace (generic term)|threat (generic term)
+yellow pimpernel|1
+(noun)|Lysimachia nemorum|loosestrife (generic term)
+yellow pine|2
+(noun)|pine (generic term)|pine tree (generic term)|true pine (generic term)
+(noun)|pine (generic term)
+yellow pitcher plant|1
+(noun)|huntsman's horn|huntsman's horns|yellow trumpet|trumpets|Sarracenia flava|pitcher plant (generic term)
+yellow pond lily|1
+(noun)|spatterdock|cow lily|Nuphar advena|water lily (generic term)
+yellow poplar|2
+(noun)|tulipwood|true tulipwood|whitewood|white poplar|wood (generic term)
+(noun)|tulip tree|tulip poplar|canary whitewood|Liriodendron tulipifera|angiospermous tree (generic term)|flowering tree (generic term)
+yellow prussiate of potash|1
+(noun)|potassium ferrocyanide|ferrocyanide (generic term)
+yellow race|1
+(noun)|Yellow race|Mongoloid race|Mongolian race|race (generic term)
+yellow river|1
+(noun)|Huang He|Hwang Ho|Yellow River|river (generic term)
+yellow rocket|1
+(noun)|rockcress|rocket cress|Barbarea vulgaris|Sisymbrium barbarea|weed (generic term)
+yellow root|1
+(noun)|goldenseal|golden seal|turmeric root|Hydrastis Canadensis|herb (generic term)|herbaceous plant (generic term)
+yellow salsify|1
+(noun)|Tragopogon dubius|wildflower (generic term)|wild flower (generic term)
+yellow sand verbena|1
+(noun)|Abronia latifolia|sand verbena (generic term)
+yellow sea|1
+(noun)|Yellow Sea|Huang Hai|sea (generic term)
+yellow spiny daisy|1
+(noun)|Haplopappus spinulosus|goldenbush (generic term)
+yellow spot|2
+(noun)|plant disease (generic term)
+(noun)|macula|macula lutea|macular area|area (generic term)|region (generic term)
+yellow spot fungus|1
+(noun)|Cercospora kopkei|fungus (generic term)
+yellow spruce|1
+(noun)|red spruce|eastern spruce|Picea rubens|spruce (generic term)
+yellow squash|2
+(noun)|summer squash (generic term)|summer squash vine (generic term)|Cucurbita pepo melopepo (generic term)
+(noun)|summer squash (generic term)
+yellow star-thistle|1
+(noun)|Barnaby's thistle|Centaurea solstitialis|weed (generic term)
+yellow sweet clover|1
+(noun)|Melilotus officinalis|melilotus (generic term)|melilot (generic term)|sweet clover (generic term)
+yellow trefoil|1
+(noun)|black medick|hop clover|nonesuch clover|Medicago lupulina|medic (generic term)|medick (generic term)|trefoil (generic term)
+yellow trumpet|1
+(noun)|huntsman's horn|huntsman's horns|yellow pitcher plant|trumpets|Sarracenia flava|pitcher plant (generic term)
+yellow turnip|1
+(noun)|rutabaga|swede|swedish turnip|turnip (generic term)
+yellow twining snapdragon|1
+(noun)|Antirrhinum filipes|snapdragon (generic term)
+yellow vetchling|1
+(noun)|common vetchling|meadow pea|Lathyrus pratensis|wild pea (generic term)
+yellow warbler|1
+(noun)|golden warbler|yellowbird|Dendroica petechia|New World warbler (generic term)|wood warbler (generic term)
+yellow water flag|1
+(noun)|yellow iris|yellow flag|Iris pseudacorus|iris (generic term)|flag (generic term)|fleur-de-lis (generic term)|sword lily (generic term)
+yellow water lily|1
+(noun)|Nuphar lutea|water lily (generic term)
+yellow watercress|1
+(noun)|marsh cress|Rorippa islandica|watercress (generic term)
+yellow woman|1
+(noun)|woman (generic term)|adult female (generic term)|Oriental (generic term)|oriental person (generic term)
+yellowbelly marmot|1
+(noun)|rockchuck|Marmota flaviventris|marmot (generic term)
+yellowbird|2
+(noun)|yellow warbler|golden warbler|Dendroica petechia|New World warbler (generic term)|wood warbler (generic term)
+(noun)|New world goldfinch|goldfinch|Spinus tristis|finch (generic term)
+yellowcake|1
+(noun)|U308|compound (generic term)|chemical compound (generic term)
+yellowed|1
+(adj)|yellow|old (similar term)
+yellowfin|1
+(noun)|yellowfin tuna|Thunnus albacares|tuna (generic term)|tunny (generic term)
+yellowfin croaker|1
+(noun)|surffish|surf fish|Umbrina roncador|croaker (generic term)
+yellowfin mojarra|1
+(noun)|Gerres cinereus|mojarra (generic term)
+yellowfin tuna|1
+(noun)|yellowfin|Thunnus albacares|tuna (generic term)|tunny (generic term)
+yellowhammer|2
+(noun)|yellow-shafted flicker|Colaptes auratus|flicker (generic term)
+(noun)|yellow bunting|Emberiza citrinella|bunting (generic term)
+yellowish|1
+(adj)|yellow|xanthous|chromatic (similar term)
+yellowish-beige|1
+(adj)|yellow-beige|chromatic (similar term)
+yellowish-gray|1
+(adj)|yellow-grey|yellow-gray|yellowish-grey|achromatic (similar term)
+yellowish-grey|1
+(adj)|yellow-grey|yellow-gray|yellowish-gray|achromatic (similar term)
+yellowish-orange|1
+(adj)|yellow-orange|chromatic (similar term)
+yellowish-white|1
+(adj)|yellow-white|achromatic (similar term)
+yellowish brown|1
+(noun)|raw sienna|buff|caramel|caramel brown|brown (generic term)|brownness (generic term)
+yellowish green|1
+(noun)|yellow green|chartreuse|Paris green|pea green|green (generic term)|greenness (generic term)|viridity (generic term)
+yellowish pink|1
+(noun)|apricot|peach|salmon pink|pink (generic term)
+yellowknife|1
+(noun)|Yellowknife|town (generic term)
+yellowlegs|1
+(noun)|sandpiper (generic term)
+yellowness|1
+(noun)|yellow|chromatic color (generic term)|chromatic colour (generic term)|spectral color (generic term)|spectral colour (generic term)
+yellowstone|1
+(noun)|Yellowstone|Yellowstone River|river (generic term)
+yellowstone national park|1
+(noun)|Yellowstone National Park|national park (generic term)
+yellowstone river|1
+(noun)|Yellowstone|Yellowstone River|river (generic term)
+yellowtail|2
+(noun)|yellowtail snapper|Ocyurus chrysurus|snapper (generic term)
+(noun)|Seriola dorsalis|jack (generic term)
+yellowtail flounder|2
+(noun)|flounder (generic term)
+(noun)|Limanda ferruginea|righteye flounder (generic term)|righteyed flounder (generic term)
+yellowtail snapper|1
+(noun)|yellowtail|Ocyurus chrysurus|snapper (generic term)
+yellowthroat|1
+(noun)|New World warbler (generic term)|wood warbler (generic term)
+yellowwood|2
+(noun)|wood (generic term)
+(noun)|yellowwood tree|tree (generic term)
+yellowwood tree|1
+(noun)|yellowwood|tree (generic term)
+yelp|2
+(noun)|yip|yelping|cry (generic term)
+(verb)|yip|yap|bark (generic term)
+yelping|1
+(noun)|yip|yelp|cry (generic term)
+yemen|1
+(noun)|Yemen|Republic of Yemen|Asian country (generic term)|Asian nation (generic term)
+yemeni|2
+(adj)|Yemeni|Asian country|Asian nation (related term)
+(noun)|Yemeni|Arab (generic term)|Arabian (generic term)
+yemeni fils|1
+(noun)|Yemeni fils|fils|Yemeni monetary unit (generic term)
+yemeni monetary unit|1
+(noun)|Yemeni monetary unit|monetary unit (generic term)
+yemeni rial|1
+(noun)|Yemeni rial|rial|Yemeni monetary unit (generic term)
+yen|3
+(noun)|hankering|longing (generic term)|yearning (generic term)|hungriness (generic term)
+(noun)|Japanese monetary unit (generic term)
+(verb)|ache|yearn|pine|languish|hanker (generic term)|long (generic term)|yearn (generic term)
+yenisei|2
+(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river (generic term)
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+yenisei-samoyed|1
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+yenisei river|1
+(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river (generic term)
+yeniseian|2
+(noun)|Yeniseian|Russian (generic term)
+(noun)|Enets|Entsi|Entsy|Yenisei|Yenisei-Samoyed|Yeniseian|Samoyedic (generic term)|Samoyed (generic term)
+yenisey|1
+(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river (generic term)
+yenisey river|1
+(noun)|Yenisei|Yenisei River|Yenisey|Yenisey River|river (generic term)
+yenta|2
+(noun)|shrew (generic term)|termagant (generic term)
+(noun)|gossip (generic term)|gossiper (generic term)|gossipmonger (generic term)|rumormonger (generic term)|rumourmonger (generic term)|newsmonger (generic term)
+yeoman|2
+(noun)|yeoman of the guard|beefeater|bodyguard (generic term)|escort (generic term)
+(noun)|freeholder (generic term)
+yeoman of the guard|1
+(noun)|yeoman|beefeater|bodyguard (generic term)|escort (generic term)
+yeomanry|2
+(noun)|class (generic term)|social class (generic term)|socio-economic class (generic term)
+(noun)|guard (generic term)|bodyguard (generic term)
+yerba buena|1
+(noun)|Micromeria chamissonis|Micromeria douglasii|Satureja douglasii|herb (generic term)|herbaceous plant (generic term)
+yerba mansa|1
+(noun)|Anemopsis californica|herb (generic term)|herbaceous plant (generic term)
+yerba santa|1
+(noun)|Eriodictyon californicum|shrub (generic term)|bush (generic term)
+yerevan|1
+(noun)|Yerevan|Jerevan|Erivan|capital of Armenia|capital (generic term)
+yerkes|1
+(noun)|Yerkes|Robert M. Yerkes|Robert Mearns Yerkes|psychologist (generic term)
+yersin|1
+(noun)|Yersin|Alexandre Yersin|Alexandre Emile Jean Yersin|bacteriologist (generic term)
+yersinia pestis|1
+(noun)|Yersinia pestis|bacillus (generic term)|B (generic term)
+yerupaja|1
+(noun)|Yerupaja|mountain peak (generic term)
+yerwa-maiduguri|1
+(noun)|Maiduguri|Yerwa-Maiduguri|city (generic term)|metropolis (generic term)|urban center (generic term)
+yes|1
+(noun)|affirmative (generic term)|no (antonym)
+yes-man|1
+(noun)|flunky|flunkey|stooge|follower (generic term)
+yes-no question|1
+(noun)|question (generic term)|interrogation (generic term)|interrogative (generic term)|interrogative sentence (generic term)
+yeshiva|1
+(noun)|yeshivah|academy (generic term)
+yeshivah|1
+(noun)|yeshiva|academy (generic term)
+yesterday|2
+(noun)|day (generic term)|twenty-four hours (generic term)|twenty-four hour period (generic term)|24-hour interval (generic term)|solar day (generic term)|mean solar day (generic term)
+(noun)|past (generic term)|past times (generic term)|yesteryear (generic term)|yore (generic term)
+yesteryear|1
+(noun)|past|past times|yore|time (generic term)|future (antonym)
+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 (generic term)
+yevgeni aleksandrovich yevtushenko|1
+(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet (generic term)
+yevgeni yevtushenko|1
+(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet (generic term)
+yevtushenko|1
+(noun)|Yevtushenko|Yevgeni Yevtushenko|Yevgeni Aleksandrovich Yevtushenko|poet (generic term)
+yew|2
+(noun)|wood (generic term)
+(noun)|conifer (generic term)|coniferous tree (generic term)
+yew family|1
+(noun)|Taxaceae|family Taxaceae|gymnosperm family (generic term)
+yezo|1
+(noun)|Hokkaido|Ezo|Yezo|island (generic term)
+ygdrasil|1
+(noun)|Yggdrasil|Ygdrasil|mythical being (generic term)|ash (generic term)|ash tree (generic term)
+yggdrasil|1
+(noun)|Yggdrasil|Ygdrasil|mythical being (generic term)|ash (generic term)|ash tree (generic term)
+yhvh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yhwh|1
+(noun)|Yahweh|YHWH|Yahwe|Yahveh|YHVH|Yahve|Wahvey|Jahvey|Jahweh|Jehovah|JHVH|God (generic term)|Supreme Being (generic term)
+yi|1
+(noun)|Lolo|Yi|Loloish (generic term)
+yid|1
+(noun)|kike|hymie|sheeny|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+yiddish|1
+(noun)|Yiddish|German (generic term)|High German (generic term)|German language (generic term)
+yield|16
+(noun)|output|production (generic term)
+(noun)|fruit|product (generic term)|production (generic term)
+(noun)|return|issue|take|takings|proceeds|payoff|income (generic term)
+(noun)|output|production|indefinite quantity (generic term)
+(verb)|give|afford|supply (generic term)|provide (generic term)|render (generic term)|furnish (generic term)
+(verb)|give way|change (generic term)
+(verb)|render|return|give|generate|produce (generic term)|make (generic term)|create (generic term)
+(verb)|concede|cede|grant|give (generic term)
+(verb)|relent|soften|stand (antonym)
+(verb)|move over|give way|give|ease up|move (generic term)
+(verb)|give|make (generic term)|create (generic term)
+(verb)|concede|grant|agree (generic term)|hold (generic term)|concur (generic term)|concord (generic term)
+(verb)|succumb|die (generic term)|decease (generic term)|perish (generic term)|go (generic term)|exit (generic term)|pass away (generic term)|expire (generic term)|pass (generic term)|kick the bucket (generic term)|cash in one's chips (generic term)|buy the farm (generic term)|conk (generic term)|give-up the ghost (generic term)|drop dead (generic term)|pop off (generic term)|choke (generic term)|croak (generic term)|snuff it (generic term)|survive (antonym)
+(verb)|pay|bear|gain (generic term)|take in (generic term)|clear (generic term)|make (generic term)|earn (generic term)|realize (generic term)|realise (generic term)|pull in (generic term)|bring in (generic term)
+(verb)|give|stretch (generic term)|give in (related term)
+(verb)|give in|succumb|knuckle under|buckle under|accept (generic term)|consent (generic term)|go for (generic term)
+yield up|1
+(verb)|surrender (generic term)|cede (generic term)|deliver (generic term)|give up (generic term)
+yielder|1
+(noun)|surrenderer|person (generic term)|individual (generic term)|someone (generic term)|somebody (generic term)|mortal (generic term)|soul (generic term)
+yielding|5
+(adj)|docile (similar term)
+(adj)|soft (similar term)
+(adj)|compromising (similar term)|conciliatory (similar term)|flexible (similar term)
+(noun)|giving up|surrender|relinquishment (generic term)|relinquishing (generic term)
+(noun)|concession|conceding|assent (generic term)|acquiescence (generic term)
+yieldingly|1
+(adv)|obediently|disobediently (antonym)
+yin|1
+(noun)|principle (generic term)|rule (generic term)|yang (antonym)
+yip|2
+(noun)|yelp|yelping|cry (generic term)
+(verb)|yelp|yap|bark (generic term)
+yips|1
+(noun)|tension (generic term)|tenseness (generic term)|stress (generic term)
+yisrael|1
+(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country (generic term)|state (generic term)|land (generic term)
+ylang-ylang|1
+(noun)|ilang-ilang|Cananga odorata|angiospermous tree (generic term)|flowering tree (generic term)
+ylem|1
+(noun)|substance (generic term)|matter (generic term)
+ymir|1
+(noun)|Ymir|mythical being (generic term)
+yo-yo|1
+(noun)|plaything (generic term)|toy (generic term)
+yob|1
+(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yobo|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+yobbo|1
+(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+yobo|1
+(noun)|bully|tough|hooligan|ruffian|roughneck|rowdy|yob|yobbo|attacker (generic term)|aggressor (generic term)|assailant (generic term)|assaulter (generic term)
+yodel|2
+(noun)|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|warble|descant|sing (generic term)
+yodeling|1
+(noun)|singing (generic term)|vocalizing (generic term)
+yodeller|1
+(noun)|singer (generic term)|vocalist (generic term)|vocalizer (generic term)|vocaliser (generic term)
+yodh|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+yoga|2
+(noun)|Hinduism (generic term)|Hindooism (generic term)
+(noun)|exercise (generic term)|exercising (generic term)|physical exercise (generic term)|physical exertion (generic term)|workout (generic term)
+yogacara|1
+(noun)|Yogacara|Mahayana (generic term)|Mahayana Buddhism (generic term)
+yoghourt|1
+(noun)|yogurt|yoghurt|dairy product (generic term)|food (generic term)|solid food (generic term)
+yoghurt|1
+(noun)|yogurt|yoghourt|dairy product (generic term)|food (generic term)|solid food (generic term)
+yogi|2
+(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer (generic term)|baseball player (generic term)
+(noun)|philosopher (generic term)
+yogi berra|1
+(noun)|Berra|Lawrence Peter Berra|Yogi|Yogi Berra|ballplayer (generic term)|baseball player (generic term)
+yogic|1
+(adj)|yogistic|Hinduism|Hindooism (related term)
+yogistic|1
+(adj)|yogic|Hinduism|Hindooism (related term)
+yogurt|1
+(noun)|yoghurt|yoghourt|dairy product (generic term)|food (generic term)|solid food (generic term)
+yoke|10
+(noun)|fabric (generic term)|cloth (generic term)|material (generic term)|textile (generic term)
+(noun)|oppression (generic term)
+(noun)|couple|pair|twosome|twain|brace|span|couplet|distich|duo|duet|dyad|duad|two (generic term)|2 (generic term)|II (generic term)|deuce (generic term)
+(noun)|pair (generic term)
+(noun)|support (generic term)
+(noun)|coupling|connection (generic term)|connexion (generic term)|connector (generic term)|connecter (generic term)|connective (generic term)
+(noun)|stable gear (generic term)|saddlery (generic term)|tack (generic term)
+(verb)|join (generic term)|conjoin (generic term)
+(verb)|link|attach (generic term)
+(verb)|attach (generic term)|unyoke (antonym)
+yokel|1
+(noun)|rube|hick|yahoo|hayseed|bumpkin|chawbacon|rustic (generic term)
+yokel-like|1
+(adj)|stupid (similar term)
+yokelish|1
+(adj)|ill-bred|bounderish|lowbred|rude|underbred|unrefined (similar term)
+yoko ono|1
+(noun)|Ono|Yoko Ono|musician (generic term)
+yokohama|1
+(noun)|Yokohama|city (generic term)|metropolis (generic term)|urban center (generic term)|port (generic term)
+yokuts|2
+(noun)|Mariposan|Yokuts|Penutian (generic term)
+(noun)|Yokuts|Penutian (generic term)
+yolk|2
+(noun)|egg yolk|ingredient (generic term)|fixings (generic term)
+(noun)|vitellus|food (generic term)|nutrient (generic term)
+yolk sac|2
+(noun)|vitelline sac|umbilical vesicle|vesicula umbilicus|sac (generic term)
+(noun)|sac (generic term)
+yom kippur|1
+(noun)|Yom Kippur|Day of Atonement|High Holy Day (generic term)|High Holiday (generic term)|major fast day (generic term)
+yom kippur war|1
+(noun)|Arab-Israeli War|Yom Kippur War|war (generic term)|warfare (generic term)
+yon|2
+(adj)|yonder|distant (similar term)
+(adv)|yonder
+yonder|2
+(adj)|yon|distant (similar term)
+(adv)|yon
+yore|1
+(noun)|past|past times|yesteryear|time (generic term)|future (antonym)
+york|1
+(noun)|York|House of York|dynasty (generic term)|royalty (generic term)|royal family (generic term)|royal line (generic term)|royal house (generic term)
+yorkshire|1
+(noun)|Yorkshire|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+yorkshire fog|1
+(noun)|velvet grass|Yorkshire fog|Holcus lanatus|grass (generic term)
+yorkshire pudding|1
+(noun)|Yorkshire pudding|quick bread (generic term)
+yorkshire terrier|1
+(noun)|Yorkshire terrier|terrier (generic term)
+yorktown|1
+(noun)|Yorktown|siege (generic term)|besieging (generic term)|beleaguering (generic term)|military blockade (generic term)
+yorktwon|1
+(noun)|Yorktwon|village (generic term)|hamlet (generic term)
+yoruba|2
+(noun)|Yoruba|Nigerian (generic term)
+(noun)|Yoruba|Aku|Kwa (generic term)
+yosemite|1
+(noun)|Yosemite|Yosemite Falls|waterfall (generic term)|falls (generic term)
+yosemite falls|1
+(noun)|Yosemite|Yosemite Falls|waterfall (generic term)|falls (generic term)
+yosemite national park|1
+(noun)|Yosemite National Park|national park (generic term)
+yosemite toad|1
+(noun)|Yosemite toad|Bufo canorus|true toad (generic term)
+you-drive|1
+(noun)|car rental|hire car|rent-a-car|self-drive|u-drive|lease (generic term)|rental (generic term)|letting (generic term)
+you bet|1
+(adv)|and how|you said it
+you said it|1
+(adv)|and how|you bet
+young|14
+(adj)|immature|one-year-old (similar term)|two-year-old (similar term)|three-year-old (similar term)|four-year-old (similar term)|five-year-old (similar term)|adolescent (similar term)|teen (similar term)|teenage (similar term)|teenaged (similar term)|infantile (similar term)|boyish (similar term)|boylike (similar term)|schoolboyish (similar term)|childlike (similar term)|childly (similar term)|early (similar term)|formative (similar term)|girlish (similar term)|schoolgirlish (similar term)|junior (similar term)|little (similar term)|small (similar term)|newborn (similar term)|preteen (similar term)|preadolescent (similar term)|puppyish (similar term)|puppylike (similar term)|tender (similar term)|youngish (similar term)|youthful (similar term)|vernal (similar term)|young (similar term)|immature (related term)|junior (related term)|new (related term)|old (antonym)
+(adj)|new|early (similar term)
+(adj)|youthful|vernal|young (similar term)|immature (similar term)
+(adj)|new (similar term)
+(adj)|unseasoned|untested|untried|inexperienced (similar term)|inexperient (similar term)
+(noun)|offspring|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+(noun)|Young|Loretta Young|actress (generic term)
+(noun)|Young|Whitney Young|Whitney Moore Young Jr.|civil rights leader (generic term)|civil rights worker (generic term)|civil rights activist (generic term)
+(noun)|Young|Thomas Young|physicist (generic term)|Egyptologist (generic term)
+(noun)|Young|Pres Young|Lester Willis Young|saxophonist (generic term)|saxist (generic term)
+(noun)|Young|Edward Young|poet (generic term)
+(noun)|Young|Cy Young|Danton True Young|ballplayer (generic term)|baseball player (generic term)
+(noun)|Young|Brigham Young|religious leader (generic term)
+(noun)|youth|age group (generic term)|age bracket (generic term)|cohort (generic term)|aged (antonym)
+young's modulus|1
+(noun)|Young's modulus|coefficient of elasticity (generic term)|modulus of elasticity (generic term)|elastic modulus (generic term)
+young-bearing|1
+(adj)|egg-producing|female (similar term)
+young-begetting|1
+(adj)|male (similar term)
+young bird|1
+(noun)|young (generic term)|offspring (generic term)
+young buck|1
+(noun)|young man|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)|man (generic term)|adult male (generic term)
+young carnivore|1
+(noun)|cub|young mammal (generic term)
+young fish|1
+(noun)|young (generic term)|offspring (generic term)|fish (generic term)
+young girl|1
+(noun)|lass|lassie|jeune fille|girl (generic term)|miss (generic term)|missy (generic term)|young lady (generic term)|young woman (generic term)|fille (generic term)
+young lady|1
+(noun)|girl|miss|missy|young woman|fille|woman (generic term)|adult female (generic term)
+young mammal|1
+(noun)|young (generic term)|offspring (generic term)
+young man|2
+(noun)|young buck|adolescent (generic term)|stripling (generic term)|teenager (generic term)|teen (generic term)|man (generic term)|adult male (generic term)
+(noun)|boyfriend|fellow|beau|swain|man (generic term)|adult male (generic term)|lover (generic term)
+young person|1
+(noun)|youth|younker|spring chicken|juvenile (generic term)|juvenile person (generic term)
+young turk|2
+(noun)|Young Turk|insurgent (generic term)|insurrectionist (generic term)|freedom fighter (generic term)|rebel (generic term)
+(noun)|Young Turk|radical (generic term)
+young woman|1
+(noun)|girl|miss|missy|young lady|fille|woman (generic term)|adult female (generic term)
+younger|1
+(adj)|jr.|junior (similar term)
+youngish|1
+(adj)|young (similar term)|immature (similar term)
+youngness|1
+(noun)|age (generic term)|oldness (antonym)
+youngster|1
+(noun)|child|kid|minor|shaver|nipper|small fry|tiddler|tike|tyke|fry|nestling|juvenile (generic term)|juvenile person (generic term)
+youngstown|1
+(noun)|Youngstown|city (generic term)|metropolis (generic term)|urban center (generic term)
+younker|1
+(noun)|young person|youth|spring chicken|juvenile (generic term)|juvenile person (generic term)
+youth|6
+(noun)|young person|younker|spring chicken|juvenile (generic term)|juvenile person (generic term)
+(noun)|young|age group (generic term)|age bracket (generic term)|cohort (generic term)|aged (antonym)
+(noun)|time of life (generic term)
+(noun)|maturity (generic term)|matureness (generic term)
+(noun)|early days|time period (generic term)|period of time (generic term)|period (generic term)
+(noun)|youthfulness|juvenility|youngness (generic term)
+youth-on-age|1
+(noun)|pickaback plant|piggyback plant|Tolmiea menziesii|herb (generic term)|herbaceous plant (generic term)
+youth crusade|1
+(noun)|youth movement|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+youth culture|1
+(noun)|subculture (generic term)|coevals (generic term)|contemporaries (generic term)|generation (generic term)
+youth gang|1
+(noun)|gang (generic term)|pack (generic term)|ring (generic term)|mob (generic term)
+youth hostel|1
+(noun)|hostel|student lodging|housing (generic term)|lodging (generic term)|living accommodations (generic term)
+youth movement|1
+(noun)|youth crusade|campaign (generic term)|cause (generic term)|crusade (generic term)|drive (generic term)|movement (generic term)|effort (generic term)
+youth subculture|1
+(noun)|youth culture (generic term)
+youthful|1
+(adj)|vernal|young|young (similar term)|immature (similar term)
+youthfulness|1
+(noun)|youth|juvenility|youngness (generic term)
+yowl|3
+(noun)|bellow|bellowing|holla|holler|hollering|hollo|holloa|roar|roaring|cry (generic term)|outcry (generic term)|call (generic term)|yell (generic term)|shout (generic term)|vociferation (generic term)
+(verb)|howl|wrawl|yammer|utter (generic term)|emit (generic term)|let out (generic term)|let loose (generic term)
+(verb)|caterwaul|shriek (generic term)|shrill (generic term)|pipe up (generic term)|pipe (generic term)
+ypres|3
+(noun)|Ypres|battle of Ypres|third battle of Ypres|pitched battle (generic term)
+(noun)|Ypres|battle of Ypres|second battle of Ypres|pitched battle (generic term)
+(noun)|Ypres|battle of Ypres|first battle of Ypres|pitched battle (generic term)
+yquem|1
+(noun)|Yquem|white wine (generic term)
+yr|1
+(noun)|year|twelvemonth|time period (generic term)|period of time (generic term)|period (generic term)
+ytterbite|1
+(noun)|gadolinite|mineral (generic term)
+ytterbium|1
+(noun)|Yb|atomic number 70|metallic element (generic term)|metal (generic term)
+yttrium|1
+(noun)|Y|atomic number 39|metallic element (generic term)|metal (generic term)
+yuan|2
+(noun)|kwai|Chinese monetary unit (generic term)
+(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty (generic term)
+yuan dynasty|1
+(noun)|Yuan|Yuan dynasty|Mongol dynasty|dynasty (generic term)
+yucatan|2
+(noun)|Yucatan|state (generic term)|province (generic term)
+(noun)|Yucatan|Yucatan Peninsula|peninsula (generic term)
+yucatan peninsula|1
+(noun)|Yucatan|Yucatan Peninsula|peninsula (generic term)
+yucatec|2
+(noun)|Yucatec|Yucateco|Mayan (generic term)|Maya (generic term)
+(noun)|Yucatec|Yucateco|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+yucateco|2
+(noun)|Yucatec|Yucateco|Mayan (generic term)|Maya (generic term)
+(noun)|Yucatec|Yucateco|Maya (generic term)|Mayan (generic term)|Mayan language (generic term)
+yucca|1
+(noun)|shrub (generic term)|bush (generic term)
+yucca aloifolia|1
+(noun)|Spanish bayonet|Yucca aloifolia|yucca (generic term)
+yucca baccata|1
+(noun)|Spanish bayonet|Yucca baccata|yucca (generic term)
+yucca brevifolia|1
+(noun)|Joshua tree|Yucca brevifolia|yucca (generic term)
+yucca carnerosana|1
+(noun)|Spanish dagger|Yucca carnerosana|yucca (generic term)
+yucca elata|1
+(noun)|soapweed|soap-weed|soap tree|Yucca elata|yucca (generic term)
+yucca filamentosa|1
+(noun)|Adam's needle|Adam's needle-and-thread|spoonleaf yucca|needle palm|Yucca filamentosa|yucca (generic term)
+yucca glauca|1
+(noun)|bear grass|Yucca glauca|yucca (generic term)
+yucca gloriosa|1
+(noun)|Spanish dagger|Yucca gloriosa|yucca (generic term)
+yucca smalliana|1
+(noun)|bear grass|Yucca smalliana|yucca (generic term)
+yucca whipplei|1
+(noun)|Our Lord's candle|Yucca whipplei|yucca (generic term)
+yucky|1
+(adj)|disgusting|disgustful|distasteful|foul|loathly|loathsome|repellent|repellant|repelling|revolting|skanky|wicked|offensive (similar term)
+yue|1
+(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese (generic term)
+yue dialect|1
+(noun)|Yue|Yue dialect|Cantonese|Cantonese dialect|Chinese (generic term)
+yugoslav|2
+(adj)|Yugoslavian|Yugoslav|European country|European nation (related term)
+(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European (generic term)
+yugoslavia|2
+(noun)|Serbia and Montenegro|Union of Serbia and Montenegro|Yugoslavia|Federal Republic of Yugoslavia|Jugoslavija|European country (generic term)|European nation (generic term)
+(noun)|Yugoslavia|European country (generic term)|European nation (generic term)
+yugoslavian|2
+(adj)|Yugoslavian|Yugoslav|European country|European nation (related term)
+(noun)|Yugoslav|Jugoslav|Yugoslavian|Jugoslavian|European (generic term)
+yugoslavian dinar|1
+(noun)|Yugoslavian dinar|dinar|Yugoslavian monetary unit (generic term)
+yugoslavian monetary unit|1
+(noun)|Yugoslavian monetary unit|monetary unit (generic term)
+yukawa|1
+(noun)|Yukawa|Hideki Yukawa|nuclear physicist (generic term)
+yukon|2
+(noun)|Yukon|Yukon River|river (generic term)
+(noun)|Yukon|Yukon Territory|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+yukon river|1
+(noun)|Yukon|Yukon River|river (generic term)
+yukon territory|1
+(noun)|Yukon|Yukon Territory|district (generic term)|territory (generic term)|territorial dominion (generic term)|dominion (generic term)
+yukon time|1
+(noun)|Alaska Standard Time|Yukon Time|civil time (generic term)|standard time (generic term)|local time (generic term)
+yukon white birch|1
+(noun)|Yukon white birch|Betula neoalaskana|birch (generic term)|birch tree (generic term)
+yule|1
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+yule log|1
+(noun)|Yule log|backlog (generic term)|log (generic term)
+yuletide|1
+(noun)|Christmas|Christmastide|Christmastime|Yule|Yuletide|Noel|season (generic term)
+yuma|3
+(noun)|Yuma|Hokan (generic term)|Hoka (generic term)
+(noun)|Yuma|town (generic term)
+(noun)|Yuma|Yuman (generic term)
+yuman|2
+(adj)|Yuman|Hokan|Hoka (related term)
+(noun)|Yuman|Hokan (generic term)|Hoka (generic term)
+yummy|1
+(adj)|delectable|delicious|luscious|pleasant-tasting|scrumptious|toothsome|tasty (similar term)
+yunnan|1
+(noun)|Yunnan|Yunnan province|state (generic term)|province (generic term)
+yunnan province|1
+(noun)|Yunnan|Yunnan province|state (generic term)|province (generic term)
+yuppie|1
+(noun)|professional (generic term)|professional person (generic term)
+yurak-samoyed|1
+(noun)|Nenets|Nentsi|Nentsy|Yurak-Samoyed|Samoyedic (generic term)|Samoyed (generic term)
+yuri alekseyevich gagarin|1
+(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+yuri gagarin|1
+(noun)|Gagarin|Yuri Gagarin|Yuri Alekseyevich Gagarin|astronaut (generic term)|spaceman (generic term)|cosmonaut (generic term)
+yurt|1
+(noun)|dwelling (generic term)|home (generic term)|domicile (generic term)|abode (generic term)|habitation (generic term)|dwelling house (generic term)
+yves tanguy|1
+(noun)|Tanguy|Yves Tanguy|painter (generic term)
+z|2
+(noun)|omega|Z|ending (generic term)|conclusion (generic term)|finish (generic term)
+(noun)|Z|letter z|zee|zed|ezed|izzard|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+z-axis|1
+(noun)|coordinate axis (generic term)
+zaar|1
+(noun)|Zaar|Sayanci|West Chadic (generic term)
+zabaglione|1
+(noun)|sabayon|dessert (generic term)|sweet (generic term)|afters (generic term)
+zabrze|1
+(noun)|Zabrze|city (generic term)|metropolis (generic term)|urban center (generic term)
+zacharias|2
+(noun)|Zechariah|Zacharias|prophet (generic term)
+(noun)|Zechariah|Zacharias|Book of Zachariah|book (generic term)
+zachary taylor|1
+(noun)|Taylor|Zachary Taylor|President Taylor|President of the United States (generic term)|United States President (generic term)|President (generic term)|Chief Executive (generic term)
+zaftig|1
+(adj)|buxom|chubby|embonpoint|plump|zoftig|fat (similar term)
+zag|1
+(noun)|zigzag|zig|angular shape (generic term)|angularity (generic term)
+zaglossus|1
+(noun)|Zaglossus|genus Zaglossus|mammal genus (generic term)
+zagreb|1
+(noun)|Zagreb|national capital (generic term)
+zaharias|1
+(noun)|Zaharias|Babe Zaharias|Didrikson|Babe Didrikson|Mildred Ella Didrikson|Mildred Ella Didrikson Zaharias|athlete (generic term)|jock (generic term)
+zaire|2
+(noun)|Zairese monetary unit (generic term)
+(noun)|Congo|Democratic Republic of the Congo|Zaire|Belgian Congo|African country (generic term)|African nation (generic term)
+zaire river|1
+(noun)|Congo|Congo River|Zaire River|river (generic term)
+zairean|2
+(adj)|Zairean|Zairese|African country|African nation (related term)
+(noun)|Zairese|Zairean|African (generic term)
+zairese|2
+(adj)|Zairean|Zairese|African country|African nation (related term)
+(noun)|Zairese|Zairean|African (generic term)
+zairese monetary unit|1
+(noun)|Zairese monetary unit|monetary unit (generic term)
+zakat|1
+(noun)|pillar of Islam (generic term)|charity (generic term)
+zalophus|1
+(noun)|Zalophus|genus Zalophus|mammal genus (generic term)
+zalophus californianus|1
+(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion (generic term)
+zalophus californicus|1
+(noun)|California sea lion|Zalophus californianus|Zalophus californicus|sea lion (generic term)
+zalophus lobatus|1
+(noun)|Australian sea lion|Zalophus lobatus|sea lion (generic term)
+zama|1
+(noun)|Zama|battle of Zama|pitched battle (generic term)
+zaman|1
+(noun)|rain tree|saman|monkeypod|monkey pod|zamang|Albizia saman|albizzia (generic term)|albizia (generic term)
+zamang|1
+(noun)|rain tree|saman|monkeypod|monkey pod|zaman|Albizia saman|albizzia (generic term)|albizia (generic term)
+zambezi|1
+(noun)|Zambezi|Zambezi River|river (generic term)
+zambezi river|1
+(noun)|Zambezi|Zambezi River|river (generic term)
+zambia|1
+(noun)|Zambia|Republic of Zambia|Northern Rhodesia|African country (generic term)|African nation (generic term)
+zambian|2
+(adj)|Zambian|African country|African nation (related term)
+(noun)|Zambian|African (generic term)
+zambian kwacha|1
+(noun)|Zambian kwacha|kwacha|Zambian monetary unit (generic term)
+zambian monetary unit|1
+(noun)|Zambian monetary unit|monetary unit (generic term)
+zamboni|1
+(noun)|Zamboni|machine (generic term)
+zamia|1
+(noun)|cycad (generic term)
+zamia family|1
+(noun)|Zamiaceae|family Zamiaceae|gymnosperm family (generic term)
+zamia pumila|1
+(noun)|coontie|Florida arrowroot|Seminole bread|Zamia pumila|zamia (generic term)
+zamiaceae|1
+(noun)|Zamiaceae|family Zamiaceae|zamia family|gymnosperm family (generic term)
+zane grey|1
+(noun)|Grey|Zane Grey|writer (generic term)|author (generic term)
+zangwill|1
+(noun)|Zangwill|Israel Zangwill|writer (generic term)|author (generic term)
+zannichellia|1
+(noun)|Zannichellia|genus Zannichellia|monocot genus (generic term)|liliopsid genus (generic term)
+zannichellia palustris|1
+(noun)|horned pondweed|Zannichellia palustris|pondweed (generic term)
+zannichelliaceae|1
+(noun)|Zannichelliaceae|family Zannichelliaceae|monocot family (generic term)|liliopsid family (generic term)
+zantac|1
+(noun)|ranitidine|Zantac|histamine blocker (generic term)|antacid (generic term)|gastric antacid (generic term)|alkalizer (generic term)|alkaliser (generic term)|antiacid (generic term)
+zantedeschia|1
+(noun)|Zantedeschia|genus Zantedeschia|monocot genus (generic term)|liliopsid genus (generic term)
+zantedeschia aethiopica|1
+(noun)|calla lily|calla|arum lily|Zantedeschia aethiopica|flower (generic term)
+zantedeschia rehmanii|1
+(noun)|pink calla|Zantedeschia rehmanii|calla lily (generic term)|calla (generic term)|arum lily (generic term)|Zantedeschia aethiopica (generic term)
+zanthoxylum|1
+(noun)|Zanthoxylum|genus Zanthoxylum|rosid dicot genus (generic term)
+zanthoxylum americanum|1
+(noun)|toothache tree|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash (generic term)
+zanthoxylum clava-herculis|1
+(noun)|Hercules'-club|Hercules'-clubs|Hercules-club|Zanthoxylum clava-herculis|prickly ash (generic term)
+zanthoxylum flavum|1
+(noun)|satinwood|West Indian satinwood|Zanthoxylum flavum|angiospermous yellowwood (generic term)
+zanthoxylum fraxineum|1
+(noun)|toothache tree|sea ash|Zanthoxylum americanum|Zanthoxylum fraxineum|prickly ash (generic term)
+zanuck|1
+(noun)|Zanuck|Darryl Zanuck|Darryl Francis Zanuck|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+zany|4
+(adj)|cockamamie|cockamamy|goofy|sappy|silly|wacky|whacky|foolish (similar term)
+(adj)|buffoonish|clownish|clownlike|humorous (similar term)|humourous (similar term)
+(noun)|clown (generic term)|buffoon (generic term)|merry andrew (generic term)
+(noun)|fathead|goof|goofball|bozo|jackass|goose|cuckoo|twat|fool (generic term)|sap (generic term)|saphead (generic term)|muggins (generic term)|tomfool (generic term)
+zanzibar|1
+(noun)|Zanzibar|island (generic term)
+zanzibar copal|1
+(noun)|Zanzibar copal|anime|copal (generic term)
+zap|5
+(noun)|event (generic term)
+(verb)|affect (generic term)|impress (generic term)|move (generic term)|strike (generic term)
+(verb)|vaporize|kill (generic term)
+(verb)|nuke|atomize|atomise|bombard (generic term)|bomb (generic term)
+(verb)|microwave|micro-cook|nuke|cook (generic term)
+zapata|1
+(noun)|Zapata|Emiliano Zapata|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)
+zapodidae|1
+(noun)|Zapodidae|family Zapodidae|mammal family (generic term)
+zapotec|3
+(adj)|Zapotec|Indian|American Indian|Red Indian (related term)
+(noun)|Zapotec|Zapotecan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Zapotec|Zapotecan|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+zapotecan|2
+(noun)|Zapotec|Zapotecan|Indian (generic term)|American Indian (generic term)|Red Indian (generic term)
+(noun)|Zapotec|Zapotecan|Uto-Aztecan (generic term)|Uto-Aztecan language (generic term)
+zapper|1
+(noun)|electrical device (generic term)
+zapus|1
+(noun)|Zapus|genus Zapus|mammal genus (generic term)
+zapus hudsonius|1
+(noun)|meadow jumping mouse|Zapus hudsonius|jumping mouse (generic term)
+zaragoza|1
+(noun)|Zaragoza|Saragossa|city (generic term)|metropolis (generic term)|urban center (generic term)
+zarathustra|1
+(noun)|Zoroaster|Zarathustra|prophet (generic term)
+zarf|1
+(noun)|holder (generic term)
+zaria|1
+(noun)|Zaria|city (generic term)|metropolis (generic term)|urban center (generic term)
+zarontin|1
+(noun)|ethosuximide|Emeside|Zarontin|anticonvulsant (generic term)|anticonvulsant drug (generic term)|antiepileptic (generic term)|antiepileptic drug (generic term)
+zarpanit|1
+(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity (generic term)
+zarqa|1
+(noun)|Az Zarqa|Zarqa|city (generic term)|metropolis (generic term)|urban center (generic term)
+zauschneria californica|1
+(noun)|California fuchsia|humming bird's trumpet|Epilobium canum canum|Zauschneria californica|shrublet (generic term)
+zayin|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+zdv|1
+(noun)|zidovudine|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+zea|1
+(noun)|Zea|genus Zea|monocot genus (generic term)|liliopsid genus (generic term)
+zea mays|1
+(noun)|corn|maize|Indian corn|Zea mays|cereal (generic term)|cereal grass (generic term)
+zea mays amylacea|1
+(noun)|soft corn|flour corn|squaw corn|Zea mays amylacea|field corn (generic term)
+zea mays everta|1
+(noun)|popcorn|Zea mays everta|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+zea mays indentata|1
+(noun)|dent corn|Zea mays indentata|field corn (generic term)
+zea mays indurata|1
+(noun)|flint corn|flint maize|Yankee corn|Zea mays indurata|field corn (generic term)
+zea mays rugosa|1
+(noun)|sweet corn|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+zea saccharata|1
+(noun)|sweet corn|sugar corn|green corn|sweet corn plant|Zea mays rugosa|Zea saccharata|corn (generic term)|maize (generic term)|Indian corn (generic term)|Zea mays (generic term)
+zeal|3
+(noun)|ardor|ardour|elan|eagerness (generic term)|avidity (generic term)|avidness (generic term)|keenness (generic term)
+(noun)|ardor (generic term)|ardour (generic term)|fervor (generic term)|fervour (generic term)|fervency (generic term)|fire (generic term)|fervidness (generic term)
+(noun)|readiness|eagerness|forwardness|willingness (generic term)
+zealand|1
+(noun)|Zealand|Seeland|Sjaelland|island (generic term)
+zealander|1
+(noun)|Zealander|Dane (generic term)
+zealot|2
+(noun)|Zealot|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+(noun)|partisan|drumbeater|advocate (generic term)|advocator (generic term)|proponent (generic term)|exponent (generic term)|nonpartisan (antonym)
+zealotry|1
+(noun)|fanaticism|fanatism|intolerance (generic term)
+zealous|1
+(adj)|avid|great|eager|enthusiastic (similar term)
+zeaxanthin|1
+(noun)|carotenoid (generic term)
+zebra|1
+(noun)|equine (generic term)|equid (generic term)
+zebra-tailed lizard|1
+(noun)|gridiron-tailed lizard|Callisaurus draconoides|iguanid (generic term)|iguanid lizard (generic term)
+zebra crossing|1
+(noun)|pedestrian crossing|crossing (generic term)|crosswalk (generic term)|crossover (generic term)
+zebra finch|1
+(noun)|Poephila castanotis|grassfinch (generic term)|grass finch (generic term)
+zebra mussel|1
+(noun)|Dreissena polymorpha|freshwater mussel (generic term)|freshwater clam (generic term)
+zebra orchid|1
+(noun)|Caladenia cairnsiana|caladenia (generic term)
+zebrawood|2
+(noun)|wood (generic term)
+(noun)|zebrawood tree|tree (generic term)
+zebrawood family|1
+(noun)|Connaraceae|family Connaraceae|rosid dicot family (generic term)
+zebrawood tree|1
+(noun)|zebrawood|tree (generic term)
+zebu|1
+(noun)|Brahman (generic term)|Brahma (generic term)|Brahmin (generic term)|Bos indicus (generic term)
+zechariah|2
+(noun)|Zechariah|Zacharias|prophet (generic term)
+(noun)|Zechariah|Zacharias|Book of Zachariah|book (generic term)
+zed|1
+(noun)|Z|letter z|zee|ezed|izzard|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+zee|1
+(noun)|Z|letter z|zed|ezed|izzard|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+zeeman|1
+(noun)|Zeeman|Pieter Zeeman|physicist (generic term)
+zeidae|1
+(noun)|Zeidae|family Zeidae|fish family (generic term)
+zeitgeist|1
+(noun)|Zeitgeist|spirit (generic term)|tone (generic term)|feel (generic term)|feeling (generic term)|flavor (generic term)|flavour (generic term)|look (generic term)|smell (generic term)
+zen|2
+(noun)|Zen|Zen Buddhism|Buddhism (generic term)
+(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 (generic term)|LSD (generic term)
+zen buddhism|1
+(noun)|Zen|Zen Buddhism|Buddhism (generic term)
+zen buddhist|1
+(noun)|Zen Buddhist|disciple (generic term)|adherent (generic term)
+zenaidura|1
+(noun)|Zenaidura|genus Zenaidura|bird genus (generic term)
+zenaidura macroura|1
+(noun)|mourning dove|Zenaidura macroura|dove (generic term)
+zend|1
+(noun)|Avestan|Zend|Iranian (generic term)|Iranian language (generic term)
+zend-avesta|1
+(noun)|Avesta|Zend-Avesta|sacred text (generic term)|sacred writing (generic term)|religious writing (generic term)|religious text (generic term)
+zenith|1
+(noun)|celestial point (generic term)|nadir (antonym)
+zenithal|1
+(adj)|celestial point (related term)
+zeno|2
+(noun)|Zeno|Zeno of Elea|philosopher (generic term)
+(noun)|Zeno|Zeno of Citium|philosopher (generic term)
+zeno of citium|1
+(noun)|Zeno|Zeno of Citium|philosopher (generic term)
+zeno of elea|1
+(noun)|Zeno|Zeno of Elea|philosopher (generic term)
+zeolite|1
+(noun)|mineral (generic term)|water softener (generic term)
+zeomorphi|1
+(noun)|Zeomorphi|order Zeomorphi|animal order (generic term)
+zep|1
+(noun)|bomber|grinder|hero|hero sandwich|hoagie|hoagy|Cuban sandwich|Italian sandwich|poor boy|sub|submarine|submarine sandwich|torpedo|wedge|sandwich (generic term)
+zephaniah|2
+(noun)|Zephaniah|Sophonias|prophet (generic term)
+(noun)|Zephaniah|Sophonias|Book of Zephaniah|book (generic term)
+zephyr|2
+(noun)|breeze|gentle wind|air|wind (generic term)|air current (generic term)|current of air (generic term)
+(noun)|Zephyr|Greek deity (generic term)
+zeppelin|2
+(noun)|Zeppelin|Count Ferdinand von Zeppelin|inventor (generic term)|discoverer (generic term)|artificer (generic term)
+(noun)|Graf Zeppelin|airship (generic term)|dirigible (generic term)
+zeppo|1
+(noun)|Marx|Herbert Marx|Zeppo|comedian (generic term)|comic (generic term)
+zero|9
+(adj)|0|cardinal (similar term)
+(adj)|ordinal (similar term)
+(adj)|set (related term)
+(adj)|no (similar term)
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zilch|zip|zippo|relative quantity (generic term)
+(noun)|0|nought|cipher|cypher|digit (generic term)|figure (generic term)
+(noun)|zero point|numerical quantity (generic term)
+(verb)|adjust (generic term)|set (generic term)|correct (generic term)
+(verb)|zero in|adjust (generic term)|set (generic term)|correct (generic term)
+zero-coupon bond|1
+(noun)|zero coupon bond|zero-coupon security (generic term)|zero coupon security (generic term)|bond (generic term)|bond certificate (generic term)
+zero-coupon security|1
+(noun)|zero coupon security|security (generic term)|certificate (generic term)
+zero-sum game|1
+(noun)|game (generic term)
+zero-tolerance policy|1
+(noun)|policy (generic term)
+zero coupon bond|1
+(noun)|zero-coupon bond|zero-coupon security (generic term)|zero coupon security (generic term)|bond (generic term)|bond certificate (generic term)
+zero coupon security|1
+(noun)|zero-coupon security|security (generic term)|certificate (generic term)
+zero hour|1
+(noun)|hour (generic term)|time of day (generic term)
+zero in|2
+(verb)|range in|home in|target (generic term)|aim (generic term)|place (generic term)|direct (generic term)|point (generic term)
+(verb)|zero|adjust (generic term)|set (generic term)|correct (generic term)
+zero point|1
+(noun)|zero|numerical quantity (generic term)
+zero tolerance|1
+(noun)|intolerance (generic term)
+zeroth|1
+(adj)|ordinal (similar term)
+zeroth law of thermodynamics|1
+(noun)|law of thermodynamics (generic term)
+zest|3
+(noun)|gusto|relish|zestfulness|enjoyment (generic term)|enthusiasm (generic term)
+(noun)|nip|piquance|piquancy|piquantness|tang|tanginess|spiciness (generic term)|spice (generic term)|spicery (generic term)
+(verb)|spice|spice up|season (generic term)|flavor (generic term)|flavour (generic term)
+zestful|1
+(adj)|yeasty|zesty|barmy|spirited (similar term)
+zestfully|1
+(adv)|zestily
+zestfulness|1
+(noun)|gusto|relish|zest|enjoyment (generic term)|enthusiasm (generic term)
+zestily|1
+(adv)|zestfully
+zestril|1
+(noun)|lisinopril|Prinival|Zestril|ACE inhibitor (generic term)|angiotensin-converting enzyme inhibitor (generic term)
+zesty|2
+(adj)|piquant|savory|savoury|spicy|tasty (similar term)
+(adj)|zestful|yeasty|barmy|spirited (similar term)
+zeta|1
+(noun)|letter (generic term)|letter of the alphabet (generic term)|alphabetic character (generic term)
+zetland|1
+(noun)|Shetland|Shetland Islands|Zetland|archipelago (generic term)
+zeugma|1
+(noun)|trope (generic term)|figure of speech (generic term)|figure (generic term)|image (generic term)
+zeus|2
+(noun)|Zeus|Greek deity (generic term)
+(noun)|Zeus|genus Zeus|fish genus (generic term)
+zeus faber|1
+(noun)|John Dory|Zeus faber|dory (generic term)
+zhou|1
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+zhou dynasty|1
+(noun)|Zhou|Zhou dynasty|Chou|Chou dynasty|Chow|Chow dynasty|dynasty (generic term)
+zhou en-lai|1
+(noun)|Zhou En-lai|Chou En-lai|revolutionist (generic term)|revolutionary (generic term)|subversive (generic term)|subverter (generic term)|communist (generic term)|commie (generic term)
+zhu jiang|1
+(noun)|Zhu Jiang|Canton River|Chu Kiang|Pearl River|river (generic term)
+zhuang|1
+(noun)|Zhuang|Tai (generic term)
+zhukov|1
+(noun)|Zhukov|Georgi Konstantinovich Zhukov|general (generic term)|full general (generic term)
+zidovudine|1
+(noun)|Retrovir|ZDV|AZT|nucleoside reverse transcriptase inhibitor (generic term)|NRTI (generic term)
+ziegfeld|1
+(noun)|Ziegfeld|Flo Ziegfeld|Florenz Ziegfeld|theatrical producer (generic term)
+ziegfeld follies|1
+(noun)|Ziegfeld Follies|follies (generic term)
+ziegler|1
+(noun)|Ziegler|Karl Waldemar Ziegler|chemist (generic term)
+zig|1
+(noun)|zigzag|zag|angular shape (generic term)|angularity (generic term)
+zigadene|1
+(noun)|death camas|liliaceous plant (generic term)
+zigadenus|1
+(noun)|Zigadenus|genus Zigadenus|liliid monocot genus (generic term)
+zigadenus elegans|1
+(noun)|alkali grass|Zigadenus elegans|death camas (generic term)|zigadene (generic term)
+zigadenus glaucus|1
+(noun)|white camas|Zigadenus glaucus|death camas (generic term)|zigadene (generic term)
+zigadenus nuttalli|1
+(noun)|poison camas|Zigadenus nuttalli|death camas (generic term)|zigadene (generic term)
+zigadenus venenosus|1
+(noun)|grassy death camas|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas (generic term)|zigadene (generic term)
+zigadenus venenosus gramineus|1
+(noun)|grassy death camas|Zigadenus venenosus|Zigadenus venenosus gramineus|death camas (generic term)|zigadene (generic term)
+ziggurat|1
+(noun)|zikkurat|zikurat|temple (generic term)
+zigzag|3
+(adj)|crooked (similar term)
+(noun)|zig|zag|angular shape (generic term)|angularity (generic term)
+(verb)|crank|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+zigzag goldenrod|1
+(noun)|broad leaved goldenrod|goldenrod (generic term)
+zikkurat|1
+(noun)|ziggurat|zikurat|temple (generic term)
+zikurat|1
+(noun)|ziggurat|zikkurat|temple (generic term)
+zilch|1
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zip|zippo|relative quantity (generic term)
+zill|1
+(noun)|cymbal (generic term)
+zillion|2
+(adj)|cardinal (similar term)
+(noun)|million|billion|trillion|jillion|large indefinite quantity (generic term)|large indefinite amount (generic term)
+zimbabwe|1
+(noun)|Zimbabwe|Republic of Zimbabwe|Rhodesia|Southern Rhodesia|African country (generic term)|African nation (generic term)
+zimbabwean|2
+(adj)|Zimbabwean|African country|African nation (related term)
+(noun)|Zimbabwean|African (generic term)
+zimbabwean dollar|1
+(noun)|Zimbabwean dollar|dollar (generic term)
+zimbalist|1
+(noun)|Zimbalist|Efrem Zimbalist|violinist (generic term)|fiddler (generic term)
+zimmer|1
+(noun)|walker|Zimmer|Zimmer frame|framework (generic term)|frame (generic term)|framing (generic term)
+zimmer frame|1
+(noun)|walker|Zimmer|Zimmer frame|framework (generic term)|frame (generic term)|framing (generic term)
+zinacef|1
+(noun)|cefuroxime|Ceftin|Zinacef|cephalosporin (generic term)|Mefoxin (generic term)
+zinc|2
+(noun)|Zn|atomic number 30|metallic element (generic term)|metal (generic term)
+(verb)|coat (generic term)|surface (generic term)
+zinc blende|1
+(noun)|blende|sphalerite|mineral (generic term)
+zinc cadmium sulfide|1
+(noun)|cadmium sulfide (generic term)
+zinc deficiency|1
+(noun)|deficiency disease (generic term)
+zinc ointment|1
+(noun)|ointment (generic term)|unction (generic term)|unguent (generic term)|balm (generic term)|salve (generic term)
+zinc oxide|1
+(noun)|flowers of zinc|philosopher's wool|philosophers' wool|oxide (generic term)
+zinc sulfate|1
+(noun)|zinc sulphate|white vitriol|zinc vitriol|sulfate (generic term)|sulphate (generic term)
+zinc sulphate|1
+(noun)|zinc sulfate|white vitriol|zinc vitriol|sulfate (generic term)|sulphate (generic term)
+zinc vitriol|1
+(noun)|zinc sulfate|zinc sulphate|white vitriol|sulfate (generic term)|sulphate (generic term)
+zinc white|1
+(noun)|pigment (generic term)
+zinfandel|2
+(noun)|Zinfandel|vinifera (generic term)|vinifera grape (generic term)|common grape vine (generic term)|Vitis vinifera (generic term)
+(noun)|red wine (generic term)
+zing|2
+(noun)|sound (generic term)
+(noun)|dynamism|pizzazz|pizzaz|oomph|activeness (generic term)|activity (generic term)
+zinger|1
+(noun)|remark (generic term)|comment (generic term)
+zingiber|1
+(noun)|Zingiber|genus Zingiber|monocot genus (generic term)|liliopsid genus (generic term)
+zingiber officinale|1
+(noun)|common ginger|Canton ginger|stem ginger|Zingiber officinale|ginger (generic term)
+zingiberaceae|1
+(noun)|Zingiberaceae|family Zingiberaceae|ginger family|monocot family (generic term)|liliopsid family (generic term)
+zinjanthropus|1
+(noun)|Zinjanthropus|genus Zinjanthropus|australopithecine (generic term)
+zinkenite|1
+(noun)|mineral (generic term)
+zinnemann|1
+(noun)|Zinnemann|Fred Zinnemann|film maker (generic term)|filmmaker (generic term)|film producer (generic term)|movie maker (generic term)
+zinnia|1
+(noun)|old maid|old maid flower|flower (generic term)
+zinnia acerosa|1
+(noun)|white zinnia|Zinnia acerosa|zinnia (generic term)|old maid (generic term)|old maid flower (generic term)
+zinnia grandiflora|1
+(noun)|little golden zinnia|Zinnia grandiflora|zinnia (generic term)|old maid (generic term)|old maid flower (generic term)
+zinnwaldite|1
+(noun)|mica (generic term)|isinglass (generic term)
+zinsser|1
+(noun)|Zinsser|Hans Zinsser|bacteriologist (generic term)
+zinzendorf|1
+(noun)|Zinzendorf|Count Nikolaus Ludwig von Zinzendorf|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+zion|3
+(noun)|Zion|Sion|hill (generic term)
+(noun)|Israel|State of Israel|Yisrael|Zion|Sion|country (generic term)|state (generic term)|land (generic term)
+(noun)|Utopia|Zion|Sion|imaginary place (generic term)|mythical place (generic term)|fictitious place (generic term)
+zion national park|1
+(noun)|Zion National Park|national park (generic term)
+zionism|2
+(noun)|Zionism|policy (generic term)
+(noun)|Zionism|Zionist movement|movement (generic term)|social movement (generic term)|front (generic term)
+zionist|3
+(adj)|Zionist|policy (related term)
+(adj)|Zionist|Jew|Hebrew|Israelite (related term)
+(noun)|Zionist|Jew (generic term)|Hebrew (generic term)|Israelite (generic term)
+zionist movement|1
+(noun)|Zionism|Zionist movement|movement (generic term)|social movement (generic term)|front (generic term)
+zip|6
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zippo|relative quantity (generic term)
+(noun)|ZIP code|ZIP|postcode|postal code|code (generic term)
+(noun)|energy|vigor|vigour|force (generic term)|forcefulness (generic term)|strength (generic term)
+(noun)|slide fastener|zipper|zip fastener|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(verb)|zip up|zipper|fasten (generic term)|fix (generic term)|secure (generic term)|unzip (antonym)
+(verb)|travel rapidly|speed|hurry|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)|speed up (related term)
+zip by|1
+(verb)|fly by|whisk by|travel by (generic term)|pass by (generic term)|surpass (generic term)|go past (generic term)|go by (generic term)|pass (generic term)
+zip code|1
+(noun)|ZIP code|ZIP|postcode|postal code|code (generic term)
+zip fastener|1
+(noun)|slide fastener|zip|zipper|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+zip gun|1
+(noun)|pistol (generic term)|handgun (generic term)|side arm (generic term)|shooting iron (generic term)
+zip up|1
+(verb)|zipper|zip|fasten (generic term)|fix (generic term)|secure (generic term)|unzip (antonym)
+ziphiidae|1
+(noun)|Ziphiidae|family Ziphiidae|Hyperodontidae|family Hyperodontidae|mammal family (generic term)
+zipper|2
+(noun)|slide fastener|zip|zip fastener|fastener (generic term)|fastening (generic term)|holdfast (generic term)|fixing (generic term)
+(verb)|zip up|zip|fasten (generic term)|fix (generic term)|secure (generic term)|unzip (antonym)
+zippo|1
+(noun)|nothing|nil|nix|nada|null|aught|cipher|cypher|goose egg|naught|zero|zilch|zip|relative quantity (generic term)
+zippy|2
+(adj)|brisk|lively|merry|rattling|snappy|spanking|energetic (similar term)
+(adj)|bouncing|bouncy|peppy|spirited|lively (similar term)
+zirbanit|1
+(noun)|Sarpanitu|Zirbanit|Zarpanit|Semitic deity (generic term)
+zircon|1
+(noun)|zirconium silicate|mineral (generic term)
+zirconia|1
+(noun)|zirconium oxide|zirconium dioxide|oxide (generic term)
+zirconium|1
+(noun)|Zr|atomic number 40|metallic element (generic term)|metal (generic term)
+zirconium dioxide|1
+(noun)|zirconium oxide|zirconia|oxide (generic term)
+zirconium oxide|1
+(noun)|zirconia|zirconium dioxide|oxide (generic term)
+zirconium silicate|1
+(noun)|zircon|mineral (generic term)
+zit|1
+(noun)|pimple|hickey|acne (generic term)
+zither|1
+(noun)|cither|zithern|stringed instrument (generic term)
+zithern|1
+(noun)|zither|cither|stringed instrument (generic term)
+ziti|1
+(noun)|pasta (generic term)|alimentary paste (generic term)
+zizania|1
+(noun)|Zizania|genus Zizania|monocot genus (generic term)|liliopsid genus (generic term)
+zizania aquatica|1
+(noun)|wild rice|Zizania aquatica|cereal (generic term)|cereal grass (generic term)
+ziziphus|1
+(noun)|Ziziphus|genus Ziziphus|dicot genus (generic term)|magnoliopsid genus (generic term)
+ziziphus jujuba|1
+(noun)|jujube|jujube bush|Christ's-thorn|Jerusalem thorn|Ziziphus jujuba|shrub (generic term)|bush (generic term)
+ziziphus lotus|1
+(noun)|lotus tree|Ziziphus lotus|shrub (generic term)|bush (generic term)
+zizz|2
+(noun)|sound (generic term)
+(noun)|nap (generic term)|catnap (generic term)|cat sleep (generic term)|forty winks (generic term)|short sleep (generic term)|snooze (generic term)
+zloty|1
+(noun)|Polish monetary unit (generic term)
+zn|1
+(noun)|zinc|Zn|atomic number 30|metallic element (generic term)|metal (generic term)
+zoanthropy|1
+(noun)|delusion (generic term)|psychotic belief (generic term)
+zoarces|1
+(noun)|Zoarces|genus Zoarces|fish genus (generic term)
+zoarces viviparus|1
+(noun)|viviparous eelpout|Zoarces viviparus|eelpout (generic term)|pout (generic term)
+zoarcidae|1
+(noun)|Zoarcidae|family Zoarcidae|fish family (generic term)
+zocor|1
+(noun)|simvastatin|Zocor|lipid-lowering medicine (generic term)|lipid-lowering medication (generic term)|statin drug (generic term)|statin (generic term)
+zodiac|2
+(noun)|region (generic term)|part (generic term)
+(noun)|diagram (generic term)
+zodiacal|1
+(adj)|region|part (related term)
+zodiacal light|1
+(noun)|reflection (generic term)|reflexion (generic term)
+zoftig|1
+(adj)|buxom|chubby|embonpoint|plump|zaftig|fat (similar term)
+zoic|1
+(adj)|organism|being (related term)
+zoisia|1
+(noun)|genus Zoysia|Zoisia|genus Zoisia|monocot genus (generic term)|liliopsid genus (generic term)
+zola|1
+(noun)|Zola|Emile Zola|novelist (generic term)
+zolaesque|1
+(adj)|Zolaesque|novelist (related term)
+zollinger-ellison syndrome|1
+(noun)|Zollinger-Ellison syndrome|syndrome (generic term)
+zoloft|1
+(noun)|sertraline|Zoloft|selective-serotonin reuptake inhibitor (generic term)|SSRI (generic term)
+zomba|1
+(noun)|Zomba|city (generic term)|metropolis (generic term)|urban center (generic term)
+zombi|5
+(noun)|zombie|zombi spirit|zombie spirit|spirit (generic term)|disembodied spirit (generic term)
+(noun)|zombie|snake god|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+(noun)|zombie|living dead|dead person (generic term)|dead soul (generic term)|deceased person (generic term)|deceased (generic term)|decedent (generic term)|departed (generic term)
+(noun)|automaton|zombie|anomaly (generic term)|unusual person (generic term)
+(noun)|zombie|highball (generic term)
+zombi spirit|1
+(noun)|zombi|zombie|zombie spirit|spirit (generic term)|disembodied spirit (generic term)
+zombie|5
+(noun)|zombi|living dead|dead person (generic term)|dead soul (generic term)|deceased person (generic term)|deceased (generic term)|decedent (generic term)|departed (generic term)
+(noun)|zombi|zombi spirit|zombie spirit|spirit (generic term)|disembodied spirit (generic term)
+(noun)|zombi|snake god|deity (generic term)|divinity (generic term)|god (generic term)|immortal (generic term)
+(noun)|automaton|zombi|anomaly (generic term)|unusual person (generic term)
+(noun)|zombi|highball (generic term)
+zombie spirit|1
+(noun)|zombi|zombie|zombi spirit|spirit (generic term)|disembodied spirit (generic term)
+zona|1
+(noun)|zone|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+zona pellucida|1
+(noun)|zone (generic term)|zona (generic term)
+zonal|2
+(adj)|zonary|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+(adj)|azonal (antonym)
+zonal pelargonium|1
+(noun)|fish geranium|bedding geranium|Pelargonium hortorum|geranium (generic term)
+zonary|1
+(adj)|zonal|structure|anatomical structure|complex body part|bodily structure|body structure (related term)
+zone|6
+(noun)|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|geographical zone|geographical area (generic term)|geographic area (generic term)|geographical region (generic term)|geographic region (generic term)
+(noun)|region (generic term)|part (generic term)
+(noun)|zona|structure (generic term)|anatomical structure (generic term)|complex body part (generic term)|bodily structure (generic term)|body structure (generic term)
+(verb)|district|regulate (generic term)|regularize (generic term)|regularise (generic term)|order (generic term)|govern (generic term)
+(verb)|partition|separate (generic term)|divide (generic term)
+zone fire|1
+(noun)|artillery fire (generic term)|cannon fire (generic term)
+zone of interior|1
+(noun)|region (generic term)
+zoning|1
+(noun)|division (generic term)|partition (generic term)|partitioning (generic term)|segmentation (generic term)|sectionalization (generic term)|sectionalisation (generic term)
+zoning board|1
+(noun)|board (generic term)
+zoning commission|1
+(noun)|committee (generic term)|commission (generic term)
+zonk out|2
+(verb)|pass out|black out|change state (generic term)|turn (generic term)
+(verb)|fall asleep (generic term)|dope off (generic term)|flake out (generic term)|drift off (generic term)|nod off (generic term)|drop off (generic term)|doze off (generic term)|drowse off (generic term)
+zonotrichia|1
+(noun)|Zonotrichia|genus Zonotrichia|bird genus (generic term)
+zonotrichia albicollis|1
+(noun)|white-throated sparrow|whitethroat|Zonotrichia albicollis|New World sparrow (generic term)
+zonotrichia leucophrys|1
+(noun)|white-crowned sparrow|Zonotrichia leucophrys|New World sparrow (generic term)
+zonula|1
+(noun)|zonule|zone (generic term)|zona (generic term)
+zonule|1
+(noun)|zonula|zone (generic term)|zona (generic term)
+zoo|1
+(noun)|menagerie|zoological garden|facility (generic term)|installation (generic term)
+zoo keeper|1
+(noun)|custodian (generic term)|keeper (generic term)|steward (generic term)
+zooerastia|1
+(noun)|bestiality|zooerasty|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+zooerasty|1
+(noun)|bestiality|zooerastia|sexual activity (generic term)|sexual practice (generic term)|sex (generic term)|sex activity (generic term)
+zooflagellate|1
+(noun)|zoomastigote|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+zooid|1
+(noun)|organism (generic term)|being (generic term)
+zoolatry|1
+(noun)|animal-worship|worship (generic term)
+zoological|2
+(adj)|biology|biological science (related term)
+(adj)|organism|being (related term)
+zoological garden|1
+(noun)|menagerie|zoo|facility (generic term)|installation (generic term)
+zoological science|1
+(noun)|zoology|biology (generic term)|biological science (generic term)
+zoologist|1
+(noun)|animal scientist|biologist (generic term)|life scientist (generic term)
+zoology|2
+(noun)|fauna|collection (generic term)|aggregation (generic term)|accumulation (generic term)|assemblage (generic term)|flora (antonym)
+(noun)|zoological science|biology (generic term)|biological science (generic term)
+zoom|5
+(noun)|rapid climb|rapid growth|rise (generic term)|rising (generic term)|ascent (generic term)|ascension (generic term)
+(noun)|soar|rise (generic term)|ascent (generic term)|ascension (generic term)|ascending (generic term)
+(verb)|zoom along|whizz|whizz along|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+(verb)|travel (generic term)|go (generic term)|move (generic term)|locomote (generic term)
+(verb)|soar|soar up|soar upwards|surge|rise (generic term)|lift (generic term)|arise (generic term)|move up (generic term)|go up (generic term)|come up (generic term)|uprise (generic term)
+zoom along|1
+(verb)|zoom|whizz|whizz along|travel rapidly (generic term)|speed (generic term)|hurry (generic term)|zip (generic term)
+zoom in|1
+(verb)|concentrate (generic term)|focus (generic term)|center (generic term)|centre (generic term)|pore (generic term)|rivet (generic term)
+zoom lens|1
+(noun)|telephoto lens|camera lens (generic term)|optical lens (generic term)
+zoomastigina|1
+(noun)|Zoomastigina|subclass Zoomastigina|class (generic term)
+zoomastigote|1
+(noun)|zooflagellate|flagellate (generic term)|flagellate protozoan (generic term)|flagellated protozoan (generic term)|mastigophoran (generic term)|mastigophore (generic term)
+zoomorphism|1
+(noun)|attribution (generic term)|ascription (generic term)
+zoonosis|1
+(noun)|zoonotic disease|animal disease (generic term)
+zoonotic|1
+(adj)|animal disease (related term)
+zoonotic disease|1
+(noun)|zoonosis|animal disease (generic term)
+zoophagous|1
+(adj)|flesh-eating|meat-eating|carnivorous (similar term)
+zoophilia|1
+(noun)|zoophilism|paraphilia (generic term)
+zoophilism|1
+(noun)|zoophilia|paraphilia (generic term)
+zoophobia|1
+(noun)|simple phobia (generic term)
+zoophyte|1
+(noun)|invertebrate (generic term)
+zooplankton|1
+(noun)|animal (generic term)|animate being (generic term)|beast (generic term)|brute (generic term)|creature (generic term)|fauna (generic term)
+zoopsia|1
+(noun)|visual hallucination (generic term)
+zoospore|1
+(noun)|spore (generic term)
+zoot suit|1
+(noun)|suit (generic term)|suit of clothes (generic term)
+zootoxin|1
+(noun)|animal toxin|toxin (generic term)
+zori|1
+(noun)|pusher|sandal (generic term)
+zoril|1
+(noun)|Ictonyx frenata|muishond (generic term)
+zoroaster|1
+(noun)|Zoroaster|Zarathustra|prophet (generic term)
+zoroastrian|2
+(adj)|Zoroastrian|prophet (related term)
+(noun)|Zoroastrian|disciple (generic term)|adherent (generic term)
+zoroastrianism|1
+(noun)|Zoroastrianism|Mazdaism|religion (generic term)|faith (generic term)|religious belief (generic term)
+zoster|1
+(noun)|herpes zoster|shingles|herpes (generic term)
+zostera|1
+(noun)|Zostera|genus Zostera|monocot genus (generic term)|liliopsid genus (generic term)
+zostera marina|1
+(noun)|eelgrass|grass wrack|sea wrack|Zostera marina|aquatic plant (generic term)|water plant (generic term)|hydrophyte (generic term)|hydrophytic plant (generic term)
+zosteraceae|1
+(noun)|Zosteraceae|family Zosteraceae|eelgrass family|monocot family (generic term)|liliopsid family (generic term)
+zovirax|1
+(noun)|acyclovir|Zovirax|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+zoysia|1
+(noun)|grass (generic term)
+zoysia japonica|1
+(noun)|Korean lawn grass|Japanese lawn grass|Zoysia japonica|zoysia (generic term)
+zoysia matrella|1
+(noun)|Manila grass|Japanese carpet grass|Zoysia matrella|zoysia (generic term)
+zoysia tenuifolia|1
+(noun)|mascarene grass|Korean velvet grass|Zoysia tenuifolia|zoysia (generic term)
+zr|1
+(noun)|zirconium|Zr|atomic number 40|metallic element (generic term)|metal (generic term)
+zsigmondy|1
+(noun)|Zsigmondy|Richard Adolph Zsigmondy|chemist (generic term)
+zu|1
+(noun)|Zu|Zubird|Semitic deity (generic term)
+zubird|1
+(noun)|Zu|Zubird|Semitic deity (generic term)
+zucchini|2
+(noun)|courgette|marrow (generic term)|marrow squash (generic term)|vegetable marrow (generic term)
+(noun)|courgette|summer squash (generic term)
+zuider zee|1
+(noun)|Zuider Zee|inlet (generic term)|recess (generic term)
+zukerman|1
+(noun)|Zukerman|Pinchas Zukerman|violinist (generic term)|fiddler (generic term)
+zulu|2
+(noun)|Zulu|African (generic term)
+(noun)|Zulu|Nguni (generic term)
+zuni|1
+(noun)|Zuni|Pueblo (generic term)
+zurich|1
+(noun)|Zurich|city (generic term)|metropolis (generic term)|urban center (generic term)
+zurvan|1
+(noun)|Zurvan|Persian deity (generic term)
+zurvanism|2
+(noun)|Zurvanism|sect (generic term)|religious sect (generic term)|religious order (generic term)
+(noun)|Zurvanism|theological doctrine (generic term)|heresy (generic term)|unorthodoxy (generic term)
+zweig|1
+(noun)|Zweig|Stefan Zweig|writer (generic term)|author (generic term)
+zwieback|1
+(noun)|rusk|Brussels biscuit|twice-baked bread|toast (generic term)
+zwingli|1
+(noun)|Zwingli|Ulrich Zwingli|Huldreich Zwingli|theologian (generic term)|theologist (generic term)|theologizer (generic term)|theologiser (generic term)
+zworykin|1
+(noun)|Zworykin|Vladimir Kosma Zworykin|physicist (generic term)
+zydeco|1
+(noun)|country music (generic term)|country and western (generic term)|C and W (generic term)
+zygnema|1
+(noun)|Zygnema|genus Zygnema|protoctist genus (generic term)
+zygnemales|1
+(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order (generic term)
+zygnemataceae|1
+(noun)|Zygnemataceae|family Zygnemataceae|protoctist family (generic term)
+zygnematales|1
+(noun)|Zygnematales|order Zygnematales|Zygnemales|order Zygnemales|animal order (generic term)
+zygocactus|1
+(noun)|Zygocactus|genus Zygocactus|caryophylloid dicot genus (generic term)
+zygocactus truncatus|1
+(noun)|crab cactus|Thanksgiving cactus|Zygocactus truncatus|Schlumbergera truncatus|cactus (generic term)
+zygodactyl|1
+(adj)|heterodactyl (antonym)
+zygodactyl foot|1
+(noun)|bird's foot (generic term)|heterodactyl foot (antonym)
+zygoma|1
+(noun)|zygomatic arch|arcus zygomaticus|bone (generic term)|os (generic term)
+zygomatic|2
+(adj)|feature|lineament (related term)
+(noun)|cheekbone|zygomatic bone|malar|malar bone|jugal bone|os zygomaticum|bone (generic term)|os (generic term)
+zygomatic arch|1
+(noun)|zygoma|arcus zygomaticus|bone (generic term)|os (generic term)
+zygomatic bone|1
+(noun)|cheekbone|zygomatic|malar|malar bone|jugal bone|os zygomaticum|bone (generic term)|os (generic term)
+zygomatic process|1
+(noun)|process (generic term)|outgrowth (generic term)|appendage (generic term)
+zygomorphic|1
+(adj)|bilaterally symmetrical|zygomorphous|actinomorphic (antonym)
+zygomorphous|1
+(adj)|zygomorphic|bilaterally symmetrical|actinomorphic (antonym)
+zygomycetes|1
+(noun)|Zygomycetes|class Zygomycetes|class (generic term)
+zygomycota|1
+(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division (generic term)
+zygomycotina|1
+(noun)|Zygomycota|subdivision Zygomycota|Zygomycotina|subdivision Zygomycotina|division (generic term)
+zygophyllaceae|1
+(noun)|Zygophyllaceae|family Zygophyllaceae|bean-caper family|rosid dicot family (generic term)
+zygophyllum|1
+(noun)|Zygophyllum|genus Zygophyllum|rosid dicot genus (generic term)
+zygophyllum fabago|1
+(noun)|bean caper|Syrian bean caper|Zygophyllum fabago|shrub (generic term)|bush (generic term)
+zygoptera|1
+(noun)|Zygoptera|suborder Zygoptera|animal order (generic term)
+zygospore|1
+(noun)|spore (generic term)
+zygote|1
+(noun)|fertilized ovum|cell (generic term)
+zygotene|1
+(noun)|phase (generic term)|stage (generic term)
+zygotic|1
+(adj)|cell (related term)
+zyloprim|1
+(noun)|allopurinol|Zyloprim|medicine (generic term)|medication (generic term)|medicament (generic term)|medicinal drug (generic term)
+zymase|1
+(noun)|enzyme (generic term)
+zymogen|1
+(noun)|proenzyme|organic compound (generic term)
+zymoid|1
+(adj)|protein|catalyst|accelerator (related term)
+zymolysis|1
+(noun)|zymosis|fermentation|fermenting|ferment|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+zymolytic|1
+(adj)|zymotic|chemical process|chemical change|chemical action (related term)
+zymosis|2
+(noun)|zymolysis|fermentation|fermenting|ferment|chemical process (generic term)|chemical change (generic term)|chemical action (generic term)
+(noun)|infection (generic term)
+zymotic|2
+(adj)|zymolytic|chemical process|chemical change|chemical action (related term)
+(adj)|infection (related term)
+zymurgy|1
+(noun)|biochemistry (generic term)